diff --git a/.changeset/README.md b/.changeset/README.md index 6203fb9..e5b6d8d 100644 --- a/.changeset/README.md +++ b/.changeset/README.md @@ -6,20 +6,3 @@ find the full documentation for it [in our repository](https://github.com/change We have a quick list of common questions to get you started engaging with this project in [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) - -## How to use Changesets - -1. **Add a changeset**: Run `pnpm changeset` to add a new changeset describing your changes -2. **Version packages**: Run `pnpm version-packages` to consume changesets and update package versions -3. **Publish packages**: Run `pnpm release` to build and publish packages to npm - -## Workflow - -When you make changes to a package: - -1. Make your changes -2. Run `pnpm changeset` and describe your changes -3. Commit the changeset file along with your changes -4. When ready to release, run `pnpm version-packages` to update versions -5. Commit the version changes -6. Run `pnpm release` to publish diff --git a/.changeset/config.json b/.changeset/config.json index fce1c26..b821332 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,5 +1,5 @@ { - "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", + "$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json", "changelog": "@changesets/cli/changelog", "commit": false, "fixed": [], diff --git a/.changeset/real-nails-shine.md b/.changeset/real-nails-shine.md deleted file mode 100644 index 6ebca28..0000000 --- a/.changeset/real-nails-shine.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@comic-vine/in-memory-store': minor -'@comic-vine/sqlite-store': minor -'@comic-vine/client': minor ---- - -Add adaptive rate limiting system diff --git a/.changeset/v2-major-release.md b/.changeset/v2-major-release.md new file mode 100644 index 0000000..cde3e55 --- /dev/null +++ b/.changeset/v2-major-release.md @@ -0,0 +1,22 @@ +--- +'comic-vine-sdk': major +--- + +Rewrite as a single-package SDK built on `@http-client-toolkit/core` for HTTP requests, with toolkit-compatible caching, deduplication, and rate limiting stores. + +**Breaking changes:** + +- Package renamed from `@comic-vine/client` to `comic-vine-sdk` +- Replaced the monorepo package layout with a single published SDK package +- HTTP layer replaced: custom Axios-based client → `@http-client-toolkit/core` (fetch-based) +- Store interfaces now use `CacheStore`, `DedupeStore`, and `RateLimitStore` from `@http-client-toolkit/core` +- Constructor accepts a single `ComicVineOptions` object with `apiKey`, `baseUrl`, `stores`, and `client` fields +- Resource properties are lazily loaded via Proxy + +**New features:** + +- Full code generation pipeline: types, resources, tests, and mock data generated from API samples +- All 19 Comic Vine resources with typed `list()` and `retrieve()` methods +- `list()` returns a dual `Promise & AsyncIterable` for automatic pagination +- Utility methods: `getAvailableResources`, `hasResource`, `clearCache`, `getCacheStats`, `getRateLimitStatus`, `resetRateLimit` +- Comprehensive build artifact tests: ESM, CJS, exports, functionality, browser bundleability, type contracts, bundle size gating diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51cee81..7d080a9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,84 +1,57 @@ -name: build +name: ci + on: - pull_request: {} - workflow_dispatch: {} + pull_request: + push: + branches: + - main + jobs: - build: + validate: runs-on: ubuntu-latest - permissions: - contents: write - outputs: - self_mutation_happened: ${{ steps.self_mutation.outputs.self_mutation_happened }} + strategy: + fail-fast: false + matrix: + node-version: + - 20.x + - 22.x + - 24.x env: CI: 'true' steps: - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.event.pull_request.head.ref }} - repository: ${{ github.event.pull_request.head.repo.full_name }} + uses: actions/checkout@v6.0.2 + - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5.0.0 + - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6.1.0 with: - node-version: 20.x - cache: 'pnpm' + node-version: ${{ matrix.node-version }} + cache: pnpm + - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Build - run: npx turbo build + run: pnpm run build + + - name: Lint + run: pnpm run lint + - name: Test - run: npx turbo test:run + run: pnpm test + - name: Test Build Artifacts - run: npx turbo test:build - - name: Lint - run: npx turbo lint - - name: Find mutations - id: self_mutation - run: |- - git add . - git diff --staged --patch --exit-code > .repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT - - name: Upload patch - if: steps.self_mutation.outputs.self_mutation_happened - uses: actions/upload-artifact@v4 - with: - name: .repo.patch - path: .repo.patch - - name: Fail build on mutation - if: steps.self_mutation.outputs.self_mutation_happened - run: |- - echo "::error::Files were changed during build (see build log). If this was triggered from a fork, you will need to update your branch." - cat .repo.patch - exit 1 - self-mutation: - needs: build - runs-on: ubuntu-latest - permissions: - contents: write - if: always() && needs.build.outputs.self_mutation_happened && !(github.event.pull_request.head.repo.full_name != github.repository) - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - token: ${{ secrets.PROJEN_GITHUB_TOKEN }} - ref: ${{ github.event.pull_request.head.ref }} - repository: ${{ github.event.pull_request.head.repo.full_name }} - - name: Download patch - uses: actions/download-artifact@v4 - with: - name: .repo.patch - path: ${{ runner.temp }} - - name: Apply patch - run: '[ -s ${{ runner.temp }}/.repo.patch ] && git apply ${{ runner.temp }}/.repo.patch || echo "Empty patch. Skipping."' - - name: Set git identity - run: |- - git config user.name "github-actions" - git config user.email "github-actions@github.com" - - name: Push changes - env: - PULL_REQUEST_REF: ${{ github.event.pull_request.head.ref }} - run: |- - git add . - git commit -s -m "chore: self mutation" - git push origin HEAD:$PULL_REQUEST_REF + run: pnpm run test:build + + - name: Verify generated code is up to date + if: matrix.node-version == '24.x' + run: | + pnpm run sdk:generate + pnpm run format + git diff --exit-code -- src/ samples/code-comments/ || { + echo "::error::Generated code is out of date. Run 'pnpm sdk:generate && pnpm format' and commit the result." + exit 1 + } diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 0000000..af9e158 --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,59 @@ +name: Deploy Docs + +on: + push: + branches: [main] + paths: + - 'docs-site/**' + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: 'pages' + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: docs-site + steps: + - name: Checkout + uses: actions/checkout@v6.0.2 + + - name: Setup pnpm + uses: pnpm/action-setup@v5.0.0 + + - name: Setup Node + uses: actions/setup-node@v6.1.0 + with: + node-version: 24 + cache: pnpm + cache-dependency-path: docs-site/pnpm-lock.yaml + + - name: Install dependencies + run: pnpm install + + - name: Build docs + run: pnpm build + + - name: Upload artifact + uses: actions/upload-pages-artifact@v4.0.0 + with: + path: docs-site/dist + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v5.0.0 diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml deleted file mode 100644 index 48679aa..0000000 --- a/.github/workflows/pull-request-lint.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: pull-request-lint -on: - pull_request_target: - types: - - labeled - - opened - - synchronize - - reopened - - ready_for_review - - edited -jobs: - validate: - name: Validate PR title - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - uses: amannn/action-semantic-pull-request@v5.0.2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - types: |- - feat - fix - chore - requireScope: false - githubBaseUrl: ${{ github.api_url }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30dd6b6..439c147 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,9 +1,15 @@ name: release + on: push: branches: - main workflow_dispatch: {} + +concurrency: + group: release-main + cancel-in-progress: false + jobs: release: runs-on: ubuntu-latest @@ -14,61 +20,118 @@ jobs: CI: 'true' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6.0.2 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} + - name: Configure git run: | - # Get author info from the most recent commit AUTHOR_NAME=$(git log -1 --pretty=format:'%an') AUTHOR_EMAIL=$(git log -1 --pretty=format:'%ae') - echo "Setting git config to: $AUTHOR_NAME <$AUTHOR_EMAIL>" git config user.name "$AUTHOR_NAME" git config user.email "$AUTHOR_EMAIL" + - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5.0.0 + - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6.1.0 with: - node-version: 20.x + node-version: 24.x cache: 'pnpm' registry-url: 'https://registry.npmjs.org' + - name: Install dependencies run: pnpm install --frozen-lockfile - - name: Build packages - run: npx turbo build + + - name: Build + run: pnpm run build + + - name: Test + run: pnpm test + - name: Test Build Artifacts - run: npx turbo test:build + run: pnpm run test:build + + - name: Check for changesets + id: changesets + run: | + CHANGESET_COUNT=$(ls .changeset/*.md 2>/dev/null | grep -v README.md | wc -l | tr -d ' ') + echo "count=$CHANGESET_COUNT" + if [ "$CHANGESET_COUNT" -gt 0 ]; then + echo "has_changesets=true" >> "$GITHUB_OUTPUT" + else + echo "has_changesets=false" >> "$GITHUB_OUTPUT" + echo "No changesets found, skipping publish" + fi + - name: Version packages + if: steps.changesets.outputs.has_changesets == 'true' run: | - # Apply version changes and commit them npx changeset version git add . - git commit -m "chore: release packages" || echo "No changes to commit" - git push origin main + git commit -m "chore: release packages" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Read release metadata + if: steps.changesets.outputs.has_changesets == 'true' + run: | + PACKAGE_VERSION=$(node -p "require('./package.json').version") + PACKAGE_NAME=$(node -p "require('./package.json').name") + echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> "$GITHUB_ENV" + echo "PACKAGE_NAME=$PACKAGE_NAME" >> "$GITHUB_ENV" + echo "RELEASE_TAG=$PACKAGE_NAME@$PACKAGE_VERSION" >> "$GITHUB_ENV" + + - name: Update npm for trusted publishing + if: steps.changesets.outputs.has_changesets == 'true' + run: npm install -g npm@latest + + - name: Check if package version already exists on npm + id: npm_package + if: steps.changesets.outputs.has_changesets == 'true' + run: | + if npm view "$PACKAGE_NAME@$PACKAGE_VERSION" version >/dev/null 2>&1; then + echo "already_published=true" >> "$GITHUB_OUTPUT" + echo "Package version already exists on npm, skipping publish" + else + echo "already_published=false" >> "$GITHUB_OUTPUT" + fi + - name: Publish packages + if: steps.changesets.outputs.has_changesets == 'true' && steps.npm_package.outputs.already_published != 'true' + run: pnpm publish --provenance --access public + + - name: Create release tag + if: steps.changesets.outputs.has_changesets == 'true' + run: git tag "$RELEASE_TAG" + + - name: Push release commit and tag atomically + if: steps.changesets.outputs.has_changesets == 'true' run: | - # Publish packages directly - pnpm release + git push --atomic origin HEAD:main "$RELEASE_TAG" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - name: Push tags + + - name: Check if GitHub release already exists + id: github_release + if: steps.changesets.outputs.has_changesets == 'true' run: | - # Push any tags created by changeset publish - git push origin --tags + if gh release view "$RELEASE_TAG" >/dev/null 2>&1; then + echo "already_exists=true" >> "$GITHUB_OUTPUT" + echo "GitHub release already exists, skipping creation" + else + echo "already_exists=false" >> "$GITHUB_OUTPUT" + fi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Create GitHub Release + if: steps.changesets.outputs.has_changesets == 'true' && steps.github_release.outputs.already_exists != 'true' run: | - # Get the version from package.json - PACKAGE_VERSION=$(node -p "require('./packages/client/package.json').version") - PACKAGE_NAME=$(node -p "require('./packages/client/package.json').name") - echo "Creating GitHub release for $PACKAGE_NAME@$PACKAGE_VERSION" - gh release create "$PACKAGE_NAME@$PACKAGE_VERSION" --title "$PACKAGE_NAME@$PACKAGE_VERSION" --generate-notes || echo "Release may already exist" + echo "Creating GitHub release for $RELEASE_TAG" + gh release create "$RELEASE_TAG" --title "$RELEASE_TAG" --generate-notes env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index 79130c8..fc2130e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ .yarn-integrity *.lcov *.log +samples/discovery-state.json *.pid *.pid.lock *.seed @@ -30,4 +31,5 @@ pids report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json test-reports yarn-debug.log* -yarn-error.log* \ No newline at end of file +yarn-error.log* +docs-site/.astro/ diff --git a/.npmrc b/.npmrc index 553c78c..ddc2154 100644 --- a/.npmrc +++ b/.npmrc @@ -1,4 +1,2 @@ fund=false -save-exact=true - -//registry.npmjs.org/:_authToken=${NPM_TOKEN} \ No newline at end of file +save-exact=true \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 79ffbb5..417ae72 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,2 @@ scripts/create-package-json.ts +samples/ diff --git a/CLAUDE.md b/CLAUDE.md index 2f6bf53..7ac8185 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -8,7 +8,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co - Always use `pnpm` instead of npm or yarn - Install dependencies: `pnpm install` -- Build all packages: `pnpm run build` +- Build: `pnpm run build` - Run tests: `pnpm run test` - Run linting: `pnpm run lint` - Fix linting issues: `pnpm run lint:fix` @@ -17,43 +17,63 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ### Development Workflow - Pre-commit checks: `pnpm run pre-commit` -- Parallel development: `pnpm run dev` +- Watch mode: `pnpm run dev` - Clean build artifacts: `pnpm run clean` -- Release workflow: `pnpm run changeset` → `pnpm run version-packages` → `pnpm run release` +- Build artifact tests: `pnpm run test:build` -## Architecture Overview +### Code Generation -This is a TypeScript monorepo for the Comic Vine API client library with the following structure: +- Generate SDK (types, resources, tests, mock data): `pnpm run sdk:generate` +- Fetch fresh API samples (requires `COMIC_VINE_API_KEY` env var): `pnpm run samples:fetch` +- After generating, run `pnpm run format` to normalize formatting -### Core Packages +## Architecture Overview -- **`packages/client`** - Main Comic Vine API client with resource classes, HTTP client, and type definitions -- **`packages/in-memory-store`** - In-memory implementations of cache, deduplication, and rate limiting stores -- **`packages/sqlite-store`** - SQLite-based persistent store implementations -- **`packages/eslint-config`** - Shared ESLint configurations -- **`packages/tsup-config`** - Shared build configurations -- **`packages/vitest-config`** - Shared test configurations +This is a single-package TypeScript library (`comic-vine-sdk`) for the Comic Vine API. HTTP, caching, deduplication, and rate limiting are delegated to `@http-client-toolkit/core`. + +### Project Structure + +- **`src/`** - All source code + - **`src/resources/`** - Resource classes (character, issue, volume, etc.) + - **`src/http-client/`** - URL builder, status codes, and toolkit adapter hooks + - **`src/types/`** - TypeScript type definitions + - **`src/errors/`** - Domain-specific error classes + - **`src/utils/`** - Utilities (case conversion, etc.) + - **`src/options/`** - Options validation with Zod +- **`build-tests/`** - Build artifact validation tests (ESM, CJS, exports, all 19 resources) +- **`scripts/`** - Code generation scripts + - **`scripts/generate-sdk.ts`** - Orchestrator entry point for generating all SDK code + - **`scripts/fetch-samples.ts`** - Fetches sample API responses (needs API key) + - **`scripts/generate-sdk/`** - Generator modules (pure functions, no I/O) +- **`samples/`** - Input data for code generation + - **`samples/config.json`** - Resource config with sample URLs + - **`samples/api-data/`** - Sample API response JSON files (38 folders) + - **`samples/code-comments/`** - Extracted property descriptions + - **`samples/documentation.html`** - Scraped Comic Vine API docs ### Key Architecture Patterns #### Resource-Based API Structure -- Each Comic Vine resource (character, issue, volume, etc.) has its own class in `packages/client/src/resources/` +- Each Comic Vine resource (character, issue, volume, etc.) has its own class in `src/resources/` - Resources inherit from `BaseResource` and implement `list()` and `retrieve()` methods - Type definitions are organized by resource with separate types for list items and detail responses -#### Store Pattern for Cross-Cutting Concerns +#### Toolkit Integration via Hooks -- **Cache Store**: Implements caching with TTL support -- **Dedupe Store**: Prevents duplicate concurrent requests -- **Rate Limit Store**: Handles API rate limiting per resource type -- Stores can be swapped between in-memory and SQLite implementations +- `@http-client-toolkit/core` provides the HTTP client with caching, deduplication, and rate limiting +- Three adapter hooks in `src/http-client/hooks.ts` connect the toolkit to Comic Vine: + - `comicVineResponseTransformer` - converts snake_case API responses to camelCase + - `comicVineResponseHandler` - maps Comic Vine status codes to domain errors + - `comicVineErrorHandler` - maps HTTP errors (401, etc.) to domain errors +- Store interfaces (`CacheStore`, `DedupeStore`, `RateLimitStore`) come from `@http-client-toolkit/core` +- Store implementations come from separate packages (`@http-client-toolkit/store-memory`, etc.) #### HTTP Client Architecture -- `HttpClient` handles all API communication with built-in retry logic +- `HttpClient` from `@http-client-toolkit/core` handles all API communication - `UrlBuilder` constructs Comic Vine API URLs with proper parameter formatting -- `HttpClientFactory` creates clients with appropriate store configurations +- Domain error classes extend `HttpClientError` from the toolkit ### TypeScript Conventions @@ -65,13 +85,28 @@ This is a TypeScript monorepo for the Comic Vine API client library with the fol ### Testing Strategy - Uses Vitest for all testing -- Comprehensive test coverage with mocked API responses in `__mocks__/` +- Comprehensive test coverage with mocked API responses in `src/__mocks__/` +- nock for HTTP request interception (works with toolkit's fetch-based client) - Each resource and utility has corresponding `.test.ts` files - Tests focus on type safety, error handling, and API contract compliance ### Build System -- Uses Turbo for monorepo management - Dual ESM/CJS builds via tsup - Automatic type generation with TypeScript -- Changesets for version management and publishing +- Output in `lib/` directory + +### Code Generation Architecture + +- `scripts/generate-sdk.ts` is the orchestrator that reads `samples/config.json` and `samples/api-data/` +- Generator modules in `scripts/generate-sdk/` are pure functions (take input, return strings/objects) +- The orchestrator handles all file I/O; generators never read or write files +- Pipeline: sample JSON → infer type graph → apply comments → apply common types → apply overrides → emit TypeScript → write to `src/` +- Key generator modules: + - `sample-inferrer.ts` — infers `InferredTypeGraph` from sample JSON (types, nullability, arrays, enums, index signatures) + - `type-emitter.ts` — walks type graph and emits TypeScript source with imports, interfaces, enums + - `comment-injector.ts` — applies JSDoc descriptions from API documentation HTML + - `common-types-generator.ts` — replaces nested types matching shared shapes (Image, Death, ApiResource, etc.) with common type imports + - `type-overrides.ts` — applies known type overrides where sample data is ambiguous (hasStaffReview, aliases) +- Also generates: resource classes, tests, mock data, barrel files, ResourceType enum +- Running `pnpm sdk:generate && pnpm format` should produce zero `git diff` on `src/` diff --git a/PRIORITY_IMPLEMENTATION_GUIDE.md b/PRIORITY_IMPLEMENTATION_GUIDE.md deleted file mode 100644 index 487cfcc..0000000 --- a/PRIORITY_IMPLEMENTATION_GUIDE.md +++ /dev/null @@ -1,963 +0,0 @@ -# Priority Rate Limiting: Implementation Guide - -> **Single source of truth for implementing priority-based rate limiting with dynamic adaptive allocation** - -## Core Principle: Real-Time Activity-Based Allocation - -**Dynamically adjust capacity allocation based on recent user activity patterns to maximize API utilization while preserving user experience.** - -## Sophisticated Implementation Strategy - -### Configuration-Driven Adaptive System - -```typescript -import { z } from 'zod'; - -const AdaptiveConfigSchema = z - .object({ - monitoringWindowMs: z - .number() - .positive() - .default(15 * 60 * 1000), // 15 minutes - highActivityThreshold: z.number().min(0).default(10), // requests per window - moderateActivityThreshold: z.number().min(0).default(3), - recalculationIntervalMs: z.number().positive().default(30000), // 30 seconds - sustainedInactivityThresholdMs: z - .number() - .positive() - .default(30 * 60 * 1000), // 30 minutes - backgroundPauseOnIncreasingTrend: z.boolean().default(true), - maxUserScaling: z.number().positive().default(2.0), // don't exceed 2x capacity - minUserReserved: z.number().min(0).default(5), // requests minimum - }) - .refine( - (data) => { - return data.moderateActivityThreshold < data.highActivityThreshold; - }, - { - message: - 'moderateActivityThreshold must be less than highActivityThreshold', - }, - ); - -interface ActivityMetrics { - recentUserRequests: number[]; // Last N minutes of user requests - recentBackgroundRequests: number[]; // Last N minutes of background requests - userActivityTrend: 'increasing' | 'stable' | 'decreasing' | 'none'; -} - -type AdaptiveConfig = z.infer; - -interface DynamicCapacityResult { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - reason: string; -} - -class AdaptiveCapacityCalculator { - public readonly config: z.infer; - - constructor(config: Partial> = {}) { - // Zod handles validation and applies defaults automatically - this.config = AdaptiveConfigSchema.parse(config); - } - - calculateDynamicCapacity( - resource: string, - totalLimit: number, - activityMetrics: ActivityMetrics, - ): DynamicCapacityResult { - const recentUserActivity = this.getRecentActivity( - activityMetrics.recentUserRequests, - ); - const activityTrend = this.calculateActivityTrend( - activityMetrics.recentUserRequests, - ); - - // Strategy 1: High Activity - Pause Background - if (recentUserActivity >= this.config.highActivityThreshold) { - const userCapacity = Math.min( - totalLimit * 0.9, - Math.floor(totalLimit * 0.5 * this.config.maxUserScaling), // 50% base * scaling factor - ); - - return { - userReserved: userCapacity, - backgroundMax: totalLimit - userCapacity, - backgroundPaused: - this.config.backgroundPauseOnIncreasingTrend && - activityTrend === 'increasing', - reason: `High user activity (${recentUserActivity} requests/${this.config.monitoringWindowMs / 60000}min) - prioritizing users`, - }; - } - - // Strategy 2: Moderate Activity - Balanced Scaling - if (recentUserActivity >= this.config.moderateActivityThreshold) { - const userMultiplier = this.getUserMultiplier( - recentUserActivity, - activityTrend, - ); - const baseUserCapacity = Math.floor(totalLimit * 0.4); // 40% base allocation - const dynamicUserCapacity = Math.min( - totalLimit * 0.7, - baseUserCapacity * userMultiplier, - ); - - return { - userReserved: dynamicUserCapacity, - backgroundMax: totalLimit - dynamicUserCapacity, - backgroundPaused: false, - reason: `Moderate user activity - dynamic scaling (${userMultiplier.toFixed(1)}x user capacity)`, - }; - } - - // Strategy 3: Low/No Activity - Background Scale Up - if (recentUserActivity === 0) { - const sustainedInactivity = this.getSustainedInactivityPeriod( - activityMetrics.recentUserRequests, - ); - - if (sustainedInactivity > this.config.sustainedInactivityThresholdMs) { - return { - userReserved: 0, // No reservation - background gets everything! - backgroundMax: totalLimit, // Full capacity available - backgroundPaused: false, - reason: `Sustained zero activity (${Math.floor(sustainedInactivity / 60000)}+ min) - full capacity to background`, - }; - } else { - return { - userReserved: this.config.minUserReserved, // Minimal safety buffer - backgroundMax: totalLimit - this.config.minUserReserved, - backgroundPaused: false, - reason: - 'Recent zero activity - background scale up with minimal user buffer', - }; - } - } - - // Strategy 4: Very Low Activity - Gradual Background Scale Up - const baseUserCapacity = Math.floor(totalLimit * 0.3); // 30% base for very low activity - return { - userReserved: Math.max(baseUserCapacity, this.config.minUserReserved), - backgroundMax: - totalLimit - Math.max(baseUserCapacity, this.config.minUserReserved), - backgroundPaused: false, - reason: `Low user activity (${recentUserActivity} requests/${this.config.monitoringWindowMs / 60000}min) - background scale up`, - }; - } - - getRecentActivity(requests: number[]): number { - const cutoff = Date.now() - this.config.monitoringWindowMs; - return requests.filter((timestamp) => timestamp > cutoff).length; - } - - calculateActivityTrend( - requests: number[], - ): 'increasing' | 'stable' | 'decreasing' | 'none' { - const now = Date.now(); - const windowSize = this.config.monitoringWindowMs / 3; // Use 1/3 of monitoring window for trend - const recent = requests.filter((t) => t > now - windowSize).length; - const previous = requests.filter( - (t) => t > now - 2 * windowSize && t <= now - windowSize, - ).length; - - if (recent === 0 && previous === 0) return 'none'; - if (recent > previous * 1.5) return 'increasing'; - if (recent < previous * 0.5) return 'decreasing'; - return 'stable'; - } - - private getUserMultiplier(activity: number, trend: string): number { - let base = Math.min( - this.config.maxUserScaling, - 1 + activity / this.config.highActivityThreshold, - ); - - // Adjust based on trend - if (trend === 'increasing') base *= 1.2; - if (trend === 'decreasing') base *= 0.8; - - return Math.max(1.0, base); - } - - private getSustainedInactivityPeriod(requests: number[]): number { - if (requests.length === 0) { - return Date.now(); // No requests ever = sustained inactivity - } - - const lastRequest = Math.max(...requests); - return Date.now() - lastRequest; - } -} -``` - -### Enhanced Rate Limiter Implementation - -```typescript -import type { - AdaptiveRateLimitStore as IAdaptiveRateLimitStore, - RequestPriority, - AdaptiveConfig, - AdaptiveConfigSchema, -} from '@comic-vine/client'; -import { z } from 'zod'; - -interface ActivityMetrics { - recentUserRequests: number[]; - recentBackgroundRequests: number[]; - userActivityTrend: 'increasing' | 'stable' | 'decreasing' | 'none'; -} - -interface DynamicCapacityResult { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - reason: string; -} - -export interface AdaptiveRateLimitStoreOptions { - adaptiveConfig?: Partial>; -} - -export class AdaptiveRateLimitStore implements IAdaptiveRateLimitStore { - private activityMetrics = new Map(); - private capacityCalculator: AdaptiveCapacityCalculator; - private lastCapacityUpdate = new Map(); - private cachedCapacity = new Map(); - - constructor(options: AdaptiveRateLimitStoreOptions = {}) { - this.capacityCalculator = new AdaptiveCapacityCalculator( - options.adaptiveConfig, - ); - } - - async canProceed( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - // Check if background requests should be paused - if (priority === 'background' && capacity.backgroundPaused) { - return false; // Hard pause for background requests - } - - // Get current usage - const currentUserRequests = this.getCurrentUsage( - metrics.recentUserRequests, - ); - const currentBackgroundRequests = this.getCurrentUsage( - metrics.recentBackgroundRequests, - ); - - if (priority === 'user') { - return currentUserRequests < capacity.userReserved; - } else { - return currentBackgroundRequests < capacity.backgroundMax; - } - } - - async record( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const metrics = this.getOrCreateActivityMetrics(resource); - const now = Date.now(); - - if (priority === 'user') { - metrics.recentUserRequests.push(now); - this.cleanupOldRequests(metrics.recentUserRequests); - } else { - metrics.recentBackgroundRequests.push(now); - this.cleanupOldRequests(metrics.recentBackgroundRequests); - } - - // Update activity trend - metrics.userActivityTrend = this.capacityCalculator.calculateActivityTrend( - metrics.recentUserRequests, - ); - } - - async getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - adaptive?: { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - recentUserActivity: number; - reason: string; - }; - }> { - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - const currentUserUsage = this.getCurrentUsage(metrics.recentUserRequests); - const currentBackgroundUsage = this.getCurrentUsage( - metrics.recentBackgroundRequests, - ); - - return { - remaining: - capacity.userReserved - - currentUserUsage + - (capacity.backgroundMax - currentBackgroundUsage), - resetTime: new Date(Date.now() + 3600000), - limit: this.getResourceLimit(resource), - adaptive: { - userReserved: capacity.userReserved, - backgroundMax: capacity.backgroundMax, - backgroundPaused: capacity.backgroundPaused, - recentUserActivity: this.capacityCalculator.getRecentActivity( - metrics.recentUserRequests, - ), - reason: capacity.reason, - }, - }; - } - - private calculateCurrentCapacity( - resource: string, - metrics: ActivityMetrics, - ): DynamicCapacityResult { - // Only recalculate based on configured interval to avoid thrashing - const lastUpdate = this.lastCapacityUpdate.get(resource) || 0; - const recalcInterval = - this.capacityCalculator.config.recalculationIntervalMs; - - if (Date.now() - lastUpdate < recalcInterval) { - return ( - this.cachedCapacity.get(resource) || this.getDefaultCapacity(resource) - ); - } - - const totalLimit = this.getResourceLimit(resource); - const capacity = this.capacityCalculator.calculateDynamicCapacity( - resource, - totalLimit, - metrics, - ); - - this.cachedCapacity.set(resource, capacity); - this.lastCapacityUpdate.set(resource, Date.now()); - - return capacity; - } - - private getOrCreateActivityMetrics(resource: string): ActivityMetrics { - if (!this.activityMetrics.has(resource)) { - this.activityMetrics.set(resource, { - recentUserRequests: [], - recentBackgroundRequests: [], - userActivityTrend: 'none', - }); - } - return this.activityMetrics.get(resource)!; - } - - private getCurrentUsage(requests: number[]): number { - const oneHourAgo = Date.now() - 3600000; // 1 hour - return requests.filter((timestamp) => timestamp > oneHourAgo).length; - } - - private cleanupOldRequests(requests: number[]): void { - const cutoff = - Date.now() - this.capacityCalculator.config.monitoringWindowMs; - while (requests.length > 0 && requests[0] < cutoff) { - requests.shift(); - } - } - - private getResourceLimit(resource: string): number { - // Default Comic Vine API limits - return 200; // requests per hour - } - - private getDefaultCapacity(resource: string): DynamicCapacityResult { - return { - userReserved: Math.floor(this.getResourceLimit(resource) * 0.3), - backgroundMax: Math.floor(this.getResourceLimit(resource) * 0.7), - backgroundPaused: false, - reason: 'Default capacity allocation', - }; - } - - // Standard RateLimitStore methods (backward compatibility) - async reset(resource: string): Promise { - this.activityMetrics.delete(resource); - this.cachedCapacity.delete(resource); - this.lastCapacityUpdate.delete(resource); - } -} -``` - -## Real-World Scenarios - -### 🌙 **Night Time: No User Activity** - -``` -Time: 2:00 AM (after 30+ minutes of zero activity) -Recent user activity: 0 requests/15min -Sustained inactivity: 45 minutes -Strategy: Full Background Scale Up - -Capacity allocation: -- User reserved: 0 requests/hour (no reservation needed!) -- Background max: 200 requests/hour (FULL API capacity!) -- Background paused: false - -Result: Maximum possible background throughput - 100% API utilization -``` - -**Early Night Transition (first 30 minutes):** - -``` -Time: 1:00 AM (only 15 minutes since last user request) -Recent user activity: 0 requests/15min -Strategy: Background Scale Up with Safety Buffer - -Capacity allocation: -- User reserved: 5 requests/hour (minimal safety buffer) -- Background max: 195 requests/hour (95% capacity) -- Background paused: false - -Result: Near-maximum background throughput with tiny safety margin -``` - -### 🌅 **Morning: Light User Activity** - -``` -Time: 8:00 AM -Recent user activity: 2 requests/15min -Trend: stable -Strategy: Gradual Background Scale Up - -Capacity allocation: -- User reserved: 80 requests/hour (40% base allocation) -- Background max: 120 requests/hour -- Background paused: false - -Result: Background gets extra capacity during low user periods -``` - -### 🌞 **Peak Hours: High User Activity** - -``` -Time: 10:00 AM -Recent user activity: 15 requests/15min -Trend: increasing -Strategy: Pause Background + User Priority - -Capacity allocation: -- User reserved: 180 requests/hour (increased from baseline!) -- Background max: 20 requests/hour (minimal) -- Background paused: true (trend is increasing) - -Result: Background requests completely paused, users get nearly full capacity -``` - -### 📈 **Sudden User Spike** - -``` -Time: 2:00 PM -Recent user activity: 25 requests/15min (sudden spike!) -Trend: increasing rapidly -Strategy: Emergency User Mode - -Capacity allocation: -- User reserved: 180 requests/hour -- Background max: 20 requests/hour -- Background paused: true - -Result: Instant adaptation to handle user surge -``` - -### 🚨 **What happens if a user request arrives during full background consumption?** - -``` -Scenario: 3:00 AM, background has consumed 180/200 requests in current hour -User request arrives for "Spider-Man comics" - -System response: -1. ✅ User request proceeds immediately (20 requests still available) -2. 📊 System detects user activity and recalculates capacity -3. ⚡ Next capacity update (within 30 seconds) will: - - Reserve capacity for future user requests - - Reduce background allocation - - Ensure user requests get priority - -Result: User never experiences delays, system adapts automatically -``` - -**Edge Case - Background at absolute limit:** - -``` -Scenario: Background has consumed all 200/200 requests in current hour -User request arrives - -System response: -1. ⏳ User request waits for next rate limit window (up to 1 hour) -2. 🔄 But system immediately starts prioritizing users for next hour -3. 📈 Background gets reduced capacity in subsequent hours - -This is extremely rare and only during sustained zero activity periods -``` - -## Implementation Roadmap - -### **Phase 1: Core Types & Interfaces** - -#### 1.1 Add Priority Types and Adaptive Interface - -**File: `packages/client/src/stores/rate-limit-store.ts`** - -```typescript -// Add new types -export type RequestPriority = 'user' | 'background'; - -export const AdaptiveConfigSchema = z - .object({ - monitoringWindowMs: z - .number() - .positive() - .default(15 * 60 * 1000), - highActivityThreshold: z.number().min(0).default(10), - moderateActivityThreshold: z.number().min(0).default(3), - recalculationIntervalMs: z.number().positive().default(30000), - sustainedInactivityThresholdMs: z - .number() - .positive() - .default(30 * 60 * 1000), - backgroundPauseOnIncreasingTrend: z.boolean().default(true), - maxUserScaling: z.number().positive().default(2.0), - minUserReserved: z.number().min(0).default(5), - }) - .refine( - (data) => { - return data.moderateActivityThreshold < data.highActivityThreshold; - }, - { - message: - 'moderateActivityThreshold must be less than highActivityThreshold', - }, - ); - -export type AdaptiveConfig = z.infer; - -// Keep existing RateLimitStore interface unchanged for backward compatibility -export interface RateLimitStore { - canProceed(resource: string): Promise; - record(resource: string): Promise; - getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - }>; - reset(resource: string): Promise; - getWaitTime(resource: string): Promise; -} - -// New interface for adaptive rate limiting stores -export interface AdaptiveRateLimitStore extends RateLimitStore { - canProceed(resource: string, priority?: RequestPriority): Promise; - record(resource: string, priority?: RequestPriority): Promise; - getStatus( - resource: string, - priority?: RequestPriority, - ): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - adaptive?: { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - recentUserActivity: number; - reason: string; - }; - }>; - getWaitTime(resource: string, priority?: RequestPriority): Promise; -} -``` - -#### 1.2 Update Request Types - -**File: `packages/client/src/types/request.ts`** - -```typescript -import type { RequestPriority } from '../stores/rate-limit-store.js'; - -export interface PriorityOptions { - /** - * Priority level for the request (affects rate limiting behavior) - * - 'user': High priority, gets reserved capacity during activity - * - 'background': Lower priority, may be throttled during high user activity - */ - priority?: RequestPriority; -} - -export interface RetrieveOptions - extends BaseOptions, - PriorityOptions {} - -export interface ListOptions - extends BaseOptions, - PriorityOptions { - // ... existing options -} -``` - -### **Phase 2: In-Memory Store Implementation** - -#### 2.1 Create Adaptive Capacity Calculator - -**File: `packages/in-memory-store/src/adaptive-capacity-calculator.ts`** - -- Implement the full `AdaptiveCapacityCalculator` class from the detailed spec above -- Include all four strategies (high activity, moderate, low/no activity, very low) -- Add comprehensive unit tests - -#### 2.2 Create New Adaptive Rate Limit Store - -**File: `packages/in-memory-store/src/adaptive-rate-limit-store.ts`** - -Also update **`packages/in-memory-store/src/index.ts`**: - -```typescript -export { AdaptiveRateLimitStore } from './adaptive-rate-limit-store.js'; -export type { AdaptiveRateLimitStoreOptions } from './adaptive-rate-limit-store.js'; -``` - -```typescript -import type { - AdaptiveRateLimitStore as IAdaptiveRateLimitStore, - RequestPriority, - AdaptiveConfig, - AdaptiveConfigSchema, -} from '@comic-vine/client'; -import { AdaptiveCapacityCalculator } from './adaptive-capacity-calculator.js'; -import { z } from 'zod'; - -export interface AdaptiveRateLimitStoreOptions { - adaptiveConfig?: Partial>; -} - -export class AdaptiveRateLimitStore implements IAdaptiveRateLimitStore { - private activityMetrics = new Map(); - private capacityCalculator: AdaptiveCapacityCalculator; - private lastCapacityUpdate = new Map(); - private cachedCapacity = new Map(); - - constructor(options: AdaptiveRateLimitStoreOptions = {}) { - this.capacityCalculator = new AdaptiveCapacityCalculator( - options.adaptiveConfig, - ); - } - - async canProceed( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - // Check if background requests should be paused - if (priority === 'background' && capacity.backgroundPaused) { - return false; // Hard pause for background requests - } - - // Get current usage - const currentUserRequests = this.getCurrentUsage( - metrics.recentUserRequests, - ); - const currentBackgroundRequests = this.getCurrentUsage( - metrics.recentBackgroundRequests, - ); - - if (priority === 'user') { - return currentUserRequests < capacity.userReserved; - } else { - return currentBackgroundRequests < capacity.backgroundMax; - } - } - - async record( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const metrics = this.getOrCreateActivityMetrics(resource); - const now = Date.now(); - - if (priority === 'user') { - metrics.recentUserRequests.push(now); - this.cleanupOldRequests(metrics.recentUserRequests); - } else { - metrics.recentBackgroundRequests.push(now); - this.cleanupOldRequests(metrics.recentBackgroundRequests); - } - - // Update activity trend - metrics.userActivityTrend = this.capacityCalculator.calculateActivityTrend( - metrics.recentUserRequests, - ); - } - - // ... implement other methods from full spec above -} - -// Export existing InMemoryRateLimitStore unchanged for backward compatibility -// (implementation remains in existing file) -``` - -### **Phase 3: SQLite Store Implementation** - -#### 3.1 Update Database Schema - -**File: `packages/sqlite-store/src/schema.ts`** - -```sql --- Add priority column to existing rate_limits table -ALTER TABLE rate_limits ADD COLUMN priority TEXT DEFAULT 'background'; - --- Add index for priority queries -CREATE INDEX IF NOT EXISTS idx_rate_limit_resource_priority_timestamp -ON rate_limits(resource, priority, timestamp); -``` - -#### 3.2 Create SQLite Adaptive Rate Limit Store - -**File: `packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.ts`** - -Also update **`packages/sqlite-store/src/index.ts`**: - -```typescript -export { SqliteAdaptiveRateLimitStore } from './sqlite-adaptive-rate-limit-store.js'; -export type { SqliteAdaptiveRateLimitStoreOptions } from './sqlite-adaptive-rate-limit-store.js'; -``` - -```typescript -import type { - AdaptiveRateLimitStore as IAdaptiveRateLimitStore, - RequestPriority, - AdaptiveConfig, - AdaptiveConfigSchema, -} from '@comic-vine/client'; -import { AdaptiveCapacityCalculator } from '@comic-vine/in-memory-store'; -import { z } from 'zod'; - -export interface SqliteAdaptiveRateLimitStoreOptions { - adaptiveConfig?: Partial>; -} - -export class SqliteAdaptiveRateLimitStore implements IAdaptiveRateLimitStore { - private capacityCalculator: AdaptiveCapacityCalculator; - // Maintain activity metrics in memory for performance - private activityMetrics = new Map(); - - constructor(options: SqliteAdaptiveRateLimitStoreOptions = {}) { - this.capacityCalculator = new AdaptiveCapacityCalculator( - options.adaptiveConfig, - ); - } - - async canProceed( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - // Load recent activity from database if not in memory - await this.ensureActivityMetrics(resource); - // Same logic as in-memory implementation - } - - async record( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - // Store to database with priority column - await this.db.run( - 'INSERT INTO rate_limits (resource, timestamp, priority) VALUES (?, ?, ?)', - [resource, Date.now(), priority], - ); - // Update in-memory metrics - } - - // ... implement other methods -} - -// Export existing SqliteRateLimitStore unchanged for backward compatibility -// (implementation remains in existing file) -``` - -### **Phase 4: HTTP Client Integration** - -#### 4.1 Update HTTP Client - -**File: `packages/client/src/http-client/http-client.ts`** - -```typescript -// Update the request flow to pass priority -async get( - url: string, - options: { signal?: AbortSignal; priority?: RequestPriority } = {} -): Promise> { - const priority = options.priority || 'background'; - const resource = this.extractResourceFromUrl(url); // Extract resource from URL - - // Pass priority to rate limiting calls - if (this.stores.rateLimit) { - const canProceed = await this.stores.rateLimit.canProceed(resource, priority); - // ... rest of rate limiting logic - await this.stores.rateLimit.record(resource, priority); - } - // ... rest of method -} -``` - -### **Phase 5: Resource API Updates** - -#### 5.1 Update Base Resource - -**File: `packages/client/src/resources/base-resource.ts`** - -- Pass through priority options from retrieve/list calls to HTTP client - -#### 5.2 Update Individual Resources - -- Update all resource classes to accept and pass through priority options -- Ensure type safety throughout the chain - -### **Phase 6: Testing & Documentation** - -#### 6.1 Comprehensive Test Suite - -**Test files are co-located with source files:** - -- **Unit tests**: Each adaptive strategy scenario - - `packages/in-memory-store/src/adaptive-capacity-calculator.test.ts` - - `packages/in-memory-store/src/in-memory-rate-limit-store.test.ts` - - `packages/sqlite-store/src/sqlite-rate-limit-store.test.ts` -- **Integration tests**: End-to-end priority behavior - - `packages/client/src/http-client/http-client.test.ts` - - `packages/client/src/resources/base-resource.test.ts` -- **Performance tests**: Verify minimal overhead when disabled -- **Edge case tests**: Concurrent requests, rapid priority changes - -#### 6.2 Update Documentation - -- **README updates**: Add priority configuration examples -- **API documentation**: Document all new options -- **Migration guide**: Help existing users adopt priority features - -### **Phase 7: Build & Release** - -#### 7.1 Build Testing - -- Test CommonJS builds -- Test ESM builds -- Verify TypeScript exports - -#### 7.2 Release Preparation - -- Update changelogs -- Version bumps (minor release) -- Final integration testing - -## **Implementation Flow** - -**Core Implementation**: Phases 1-4 (includes HTTP client interface updates in Phase 1) -**Integration & Release**: Phases 5-7 - -## **Key Implementation Notes** - -### **Backward Compatibility** - -- Original `RateLimitStore` interface remains unchanged -- Existing `InMemoryRateLimitStore` and `SqliteRateLimitStore` continue to work -- New adaptive stores are separate classes users can opt into -- All priority parameters are optional with sensible defaults - -### **Performance Considerations** - -- Simple stores have zero performance overhead (no changes) -- Adaptive stores only track metrics when used -- Minimal memory overhead with sliding window cleanup -- Configurable recalculation intervals prevent thrashing - -### **Error Handling** - -- Each store implementation is isolated (no cross-contamination) -- Clear error messages include priority context when relevant -- AbortSignal support maintained throughout - -## Super Simple Configuration - -### **Default Usage (Just Works!)** - -```typescript -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - stores: { - rateLimit: new AdaptiveRateLimitStore({ - // That's it! Great defaults included - no configuration needed - }), - }, -}); -``` - -### **Custom Tuning (Optional)** - -```typescript -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - stores: { - rateLimit: new AdaptiveRateLimitStore({ - // Only override what you want to change - adaptiveConfig: { - highActivityThreshold: 15, // Default: 10 - be more tolerant of user activity - sustainedInactivityThresholdMs: 45 * 60 * 1000, // Default: 30min - wait longer before full scale-up - minUserReserved: 10, // Default: 5 - always guarantee 10 requests for users - // All other settings use smart defaults - }, - }), - }, -}); -``` - -## Benefits of Simplified Approach - -### ✅ **Maximum Efficiency** - -- **Night time**: Background gets **200/200 requests** when users sleep (100% utilization!) -- **Low activity**: Background gets 120/200 requests during quiet periods -- **High activity**: Users get 180/200 requests during peak usage - -### ✅ **Intelligent Adaptation** - -- **Real-time monitoring**: Adjusts every 30 seconds based on activity -- **Trend awareness**: Pauses background on increasing user activity -- **Graceful scaling**: Smooth transitions between allocation strategies - -### ✅ **User Experience Protection** - -- **Instant response**: High user activity immediately pauses background -- **Always guaranteed**: Minimum user capacity even during background scale-up -- **Spike handling**: Automatic detection and response to user surges - -### ✅ **Dead Simple API** - -- **Zero configuration**: Just set `priorityMode: 'adaptive'` and it works perfectly -- **Smart defaults**: Tuned for 95% of use cases out of the box -- **Optional customization**: Override only what you need to change -- **No complex schedules**: Real-time adaptation beats time-based rules - -## 🎯 **Perfect for Your Use Case** - -**🌙 Night Mode**: Background jobs consume **all 200 requests/hour** when you're asleep -**🌞 Day Mode**: User searches get instant priority when you're actively using the app -**⚡ Adaptive**: Seamlessly transitions between modes based on real activity patterns - -The system automatically **pauses background jobs** during user activity spikes and **scales them up to full capacity** during quiet periods, giving you the absolute best of both worlds! 💯 diff --git a/README.md b/README.md index b609053..6c2f81e 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,19 @@ -# Comic Vine API Client +# Comic Vine SDK -A TypeScript client library for the Comic Vine API with built-in caching, deduplication, and rate limiting. The API provides full access to the structured-wiki content with type-safe interfaces and advanced optimization features. - -## Table of Contents - -- [Installation](#installation) -- [Comic Vine Resources](#comic-vine-resources) -- [Quick Start](#quick-start) -- [Configuration](#configuration) - - [Basic Configuration](#basic-configuration) - - [With Custom Stores](#with-custom-stores) -- [API Reference](#api-reference) - - [Resources](#resources) - - [Fetch a Single Resource](#fetch-a-single-resource) - - [Fetch a Resource List](#fetch-a-resource-list) - - [Field Selection](#field-selection) - - [Filtering](#filtering) - - [Pagination](#pagination) - - [Manual Pagination](#manual-pagination) - - [Auto Pagination](#auto-pagination) -- [Advanced Usage](#advanced-usage) -- [How It Works](#how-it-works) -- [Store Implementations](#store-implementations) -- [Examples](#examples) -- [Error Handling](#error-handling) -- [Contributing](#contributing) -- [License](#license) +A TypeScript client library for the [Comic Vine API](https://comicvine.gamespot.com/api/) with built-in caching, deduplication, and rate limiting. HTTP, caching, deduplication, and rate limiting are delegated to [`@http-client-toolkit/core`](https://github.com/AllyMurray/http-client-toolkit). ## Features -- **Type-safe API**: Full TypeScript support with detailed type definitions -- **Adaptive Rate Limiting**: Intelligent priority-based rate limiting that maximizes API utilization -- **Caching**: Configurable caching with TTL support -- **Deduplication**: Prevents duplicate concurrent requests -- **Rate limiting**: Respects API rate limits with configurable policies -- **Pagination**: Automatic pagination support for list endpoints -- **Error handling**: Comprehensive error handling with custom error types -- **Extensible**: Plugin architecture for custom stores and middleware - -## Installation - -```bash -npm install @comic-vine/client -# or -yarn add @comic-vine/client -# or -pnpm add @comic-vine/client -``` - -### Optional Store Packages - -The client works without any stores by default (no caching, deduplication, or rate limiting). Install store packages to enable these optimization features: - -```bash -# For advanced in-memory stores with LRU eviction and memory management -npm install @comic-vine/in-memory-store - -# For SQLite-based persistent stores (recommended for production) -npm install @comic-vine/sqlite-store -``` - -### TypeScript Support - -This library is written in TypeScript and provides comprehensive type definitions: - -- **Full type safety** for all Comic Vine resources and fields -- **Intelligent field selection** with automatic type narrowing -- **Auto-completion** for all methods, parameters, and response properties -- **Filter validation** with type-safe filter options per resource - -The types are generated from the actual Comic Vine API responses, ensuring accuracy and up-to-date definitions. If you encounter any type issues, please [open an issue](https://github.com/AllyMurray/comic-vine/issues/new) with the details. - -## Comic Vine Resources - -[Complete Comic Vine resources documentation](https://comicvine.gamespot.com/api/documentation) - -The library exposes an object for each Comic Vine resource. The object names are singular and expose a `retrieve()` method that maps to the singular resource endpoint and a `list()` method that maps to the plural resource endpoint. - -The following table lists all implemented resources and how the `retrieve` and `list` methods map to the Comic Vine API. Most resources are direct mappings, but `object` has been mapped to `thing` since `object` is a reserved word in JavaScript and `thing` matches the Comic Vine wiki terminology. - -| Library Resource | Retrieve Method API Endpoint | List Method API Endpoint | -| ---------------- | --------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -| character | [character](https://comicvine.gamespot.com/api/documentation#toc-0-2) | [characters](https://comicvine.gamespot.com/api/documentation#toc-0-3) | -| concept | [concept](https://comicvine.gamespot.com/api/documentation#toc-0-6) | [concepts](https://comicvine.gamespot.com/api/documentation#toc-0-7) | -| episode | [episode](https://comicvine.gamespot.com/api/documentation#toc-0-8) | [episodes](https://comicvine.gamespot.com/api/documentation#toc-0-9) | -| issue | [issue](https://comicvine.gamespot.com/api/documentation#toc-0-10) | [issues](https://comicvine.gamespot.com/api/documentation#toc-0-11) | -| location | [location](https://comicvine.gamespot.com/api/documentation#toc-0-12) | [locations](https://comicvine.gamespot.com/api/documentation#toc-0-13) | -| movie | [movie](https://comicvine.gamespot.com/api/documentation#toc-0-14) | [movies](https://comicvine.gamespot.com/api/documentation#toc-0-15) | -| origin | [origin](https://comicvine.gamespot.com/api/documentation#toc-0-18) | [origins](https://comicvine.gamespot.com/api/documentation#toc-0-19) | -| person | [person](https://comicvine.gamespot.com/api/documentation#toc-0-20) | [people](https://comicvine.gamespot.com/api/documentation#toc-0-21) | -| power | [power](https://comicvine.gamespot.com/api/documentation#toc-0-22) | [powers](https://comicvine.gamespot.com/api/documentation#toc-0-23) | -| promo | [promo](https://comicvine.gamespot.com/api/documentation#toc-0-24) | [promos](https://comicvine.gamespot.com/api/documentation#toc-0-25) | -| publisher | [publisher](https://comicvine.gamespot.com/api/documentation#toc-0-26) | [publishers](https://comicvine.gamespot.com/api/documentation#toc-0-27) | -| series | [series](https://comicvine.gamespot.com/api/documentation#toc-0-28) | [series_list](https://comicvine.gamespot.com/api/documentation#toc-0-29) | -| storyArc | [story_arc](https://comicvine.gamespot.com/api/documentation#toc-0-31) | [story_arcs](https://comicvine.gamespot.com/api/documentation#toc-0-32) | -| team | [team](https://comicvine.gamespot.com/api/documentation#toc-0-33) | [teams](https://comicvine.gamespot.com/api/documentation#toc-0-34) | -| thing | [object](https://comicvine.gamespot.com/api/documentation#toc-0-16) | [objects](https://comicvine.gamespot.com/api/documentation#toc-0-17) | -| video | [video](https://comicvine.gamespot.com/api/documentation#toc-0-36) | [videos](https://comicvine.gamespot.com/api/documentation#toc-0-37) | -| videoCategory | [video_category](https://comicvine.gamespot.com/api/documentation#toc-0-40) | [video_categories](https://comicvine.gamespot.com/api/documentation#toc-0-41) | -| videoType | [video_type](https://comicvine.gamespot.com/api/documentation#toc-0-38) | [video_types](https://comicvine.gamespot.com/api/documentation#toc-0-39) | -| volume | [volume](https://comicvine.gamespot.com/api/documentation#toc-0-42) | [volumes](https://comicvine.gamespot.com/api/documentation#toc-0-43) | +- **Type-safe API** with detailed type definitions for all 19 Comic Vine resources +- **Field selection** with automatic TypeScript type narrowing +- **Automatic pagination** via async iteration +- **Caching, deduplication, and rate limiting** via `@http-client-toolkit/core` +- **Comprehensive error handling** with domain-specific error types ## Quick Start ```typescript -import ComicVine from '@comic-vine/client'; +import ComicVine from 'comic-vine-sdk'; const client = new ComicVine({ apiKey: 'your-api-key' }); @@ -117,816 +26,36 @@ const characters = await client.character.list({ limit: 10, }); -// Get character details -const character = await client.character.retrieve(1443); -``` - -## Configuration - -### Basic Configuration - -```typescript -import ComicVine from '@comic-vine/client'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - baseUrl: 'https://comicvine.gamespot.com/api', // Default - usually not needed - client: { - defaultCacheTTL: 3600, // 1 hour cache TTL - throwOnRateLimit: true, // Throw errors on rate limits - maxWaitTime: 60000, // Max wait time for rate limits - }, -}); -``` - -#### Custom Base URL - -The `baseUrl` option allows you to customize the API endpoint. This is primarily useful for: - -- **Proxy servers**: Route requests through a CORS proxy for browser usage -- **API gateways**: Use custom API gateway endpoints -- **Testing**: Point to mock servers during development - -**Browser Usage with CORS Proxy:** - -```typescript -// The Comic Vine API doesn't support CORS for browser requests -// You'll need a proxy server to make requests from browsers -const client = new ComicVine({ - apiKey: 'your-api-key', - baseUrl: 'https://your-proxy-server.com/api/', -}); - -// Note: Never expose your API key in browser JavaScript -// The proxy should handle API key injection server-side -``` - -**Custom API Gateway:** - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - baseUrl: 'https://api.yourcompany.com/comicvine/', -}); -``` - -### With Store Packages - -To enable caching, deduplication, and rate limiting, install and configure store packages: - -#### In-Memory Stores - -```typescript -import ComicVine from '@comic-vine/client'; -import { - InMemoryCacheStore, - InMemoryDedupeStore, - InMemoryRateLimitStore, -} from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore({ - maxSize: 1000, - ttl: 300000, // 5 minutes - }), - dedupe: new InMemoryDedupeStore({ - jobTimeoutMs: 300000, // 5 minutes - }), - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 100, windowMs: 60000 }, // 100 requests per minute - }), - }, -}); -``` - -#### SQLite Stores (Persistent) - -```typescript -import ComicVine from '@comic-vine/client'; -import { - SQLiteCacheStore, - SQLiteDedupeStore, - SQLiteRateLimitStore, -} from '@comic-vine/sqlite-store'; - -// Recommended: Use shared database for all stores -import Database from 'better-sqlite3'; - -const db = new Database('./comic-vine.db'); - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new SQLiteCacheStore({ database: db }), - dedupe: new SQLiteDedupeStore({ database: db }), - rateLimit: new SQLiteRateLimitStore({ database: db }), - }, -}); -``` - -#### Adaptive Rate Limiting (Recommended) - -For intelligent API utilization that adapts to user activity patterns: - -```typescript -import ComicVine from '@comic-vine/client'; -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; -// or for persistent storage: -// import { SqliteAdaptiveRateLimitStore } from '@comic-vine/sqlite-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore({ - // Zero configuration required - great defaults included! - // Optionally customize behavior: - adaptiveConfig: { - highActivityThreshold: 10, // User requests per 15min to trigger priority mode - sustainedInactivityThresholdMs: 30 * 60 * 1000, // 30min before full background scale-up - minUserReserved: 5, // Always guarantee minimum requests for users - }, - }), - }, -}); - -// Use priority parameter for user-facing requests -const userCharacter = await client.character.retrieve(1443, { - priority: 'user', // Gets priority during high activity -}); - -// Background requests automatically get remaining capacity -const backgroundVolumes = await client.volume.list({ - priority: 'background', // May be throttled during user activity -}); -``` - -## API Reference - -### Resources - -All Comic Vine resources are available through the client: - -```typescript -// Characters -await client.character.list(options); -await client.character.retrieve(id, options); - -// Issues -await client.issue.list(options); -await client.issue.retrieve(id, options); - -// Volumes -await client.volume.list(options); -await client.volume.retrieve(id, options); - -// Publishers -await client.publisher.list(options); -await client.publisher.retrieve(id, options); - -// And many more... -``` - -All Comic Vine resources follow consistent patterns. See the TypeScript definitions in `packages/client/src/resources/` for detailed type information and available methods. - -### Fetch a Single Resource - -All resources have a `retrieve()` method that accepts an ID and optional configuration: - -```typescript -// Basic retrieve -const issue = await client.issue.retrieve(12345); - -// Retrieve with field selection (type-safe) -const issue = await client.issue.retrieve(12345, { - fieldList: ['id', 'name', 'issueNumber', 'coverDate'], -}); - -// TypeScript automatically narrows the return type to only include selected fields -console.log(issue.name); // ✅ Available - included in fieldList -console.log(issue.description); // ❌ TypeScript error - not in fieldList -``` - -### Fetch a Resource List - -All resources have a `list()` method that supports filtering, pagination, and field selection: - -```typescript -// Basic list (returns first page) -const issues = await client.issue.list(); -console.log(issues.results); // Array of issues -console.log(issues.totalCount); // Total count of all results - -// List with options -const issues = await client.issue.list({ - fieldList: ['id', 'name', 'issueNumber'], - filter: { volume: 12345 }, - limit: 50, - offset: 0, - sort: { field: 'issueNumber', direction: 'asc' }, -}); -``` - -### Field Selection - -When making requests, you often only need specific properties. Both `retrieve()` and `list()` methods accept a `fieldList` option for this purpose. - -**TypeScript Benefits:** Field selection is completely type-safe. The return type is automatically narrowed to only include the selected fields, providing accurate IntelliSense and compile-time validation. - -```typescript -// Example: Get only basic issue information -const issue = await client.issue.retrieve(12345, { - fieldList: ['id', 'name', 'issueNumber', 'coverDate', 'volume'], -}); - -// TypeScript knows exactly what fields are available -console.log(issue.id); // ✅ number -console.log(issue.name); // ✅ string -console.log(issue.issueNumber); // ✅ number -console.log(issue.description); // ❌ TypeScript error - not selected - -// Works the same way for lists -const characters = await client.character.list({ - fieldList: ['id', 'name', 'image', 'publisher'], - filter: { name: 'Spider-Man' }, -}); - -// Each character in the results only has the selected fields -characters.results.forEach((character) => { - console.log(character.name); // ✅ Available - console.log(character.description); // ❌ TypeScript error -}); -``` - -### Filtering - -```typescript -// Filter by name -const characters = await client.character.list({ - filter: { name: 'Spider-Man' }, -}); - -// Multiple filters -const issues = await client.issue.list({ - filter: { - volume: 1234, - issue_number: 1, - }, -}); - -// Date range filtering -const recentIssues = await client.issue.list({ - filter: { - date_added: '2023-01-01 00:00:00|2023-12-31 23:59:59', - }, -}); -``` - -### Pagination - -The Comic Vine API provides offset-based pagination. The client supports both manual pagination and automatic pagination through async iteration. - -#### Manual Pagination - -Control pagination explicitly using `limit` and `offset` parameters: - -```typescript -const limit = 50; -const filter = { volume: 12345 }; - -// Get the first page (issues 1-50) -const page1 = await client.issue.list({ - limit, - filter, - offset: 0, -}); -console.log(`Page 1: ${page1.results.length} issues`); -console.log(`Total available: ${page1.totalCount}`); - -// Get the second page (issues 51-100) -const page2 = await client.issue.list({ - limit, - filter, - offset: 50, -}); -console.log(`Page 2: ${page2.results.length} issues`); - -// Calculate pagination info -const totalPages = Math.ceil(page1.totalCount / limit); -console.log(`Total pages: ${totalPages}`); -``` - -#### Auto Pagination - -Use `for await...of` to automatically iterate through all results across multiple pages: - -```typescript -// Iterate through ALL issues in a volume (automatic pagination) -const filter = { volume: 12345 }; -const issueNames = []; - -for await (const issue of client.issue.list({ filter, limit: 50 })) { - issueNames.push(issue.name); - - // The loop automatically fetches new pages as needed - // No need to manage offset manually +// Auto pagination +for await (const issue of client.issue.list({ filter: { volume: 796 } })) { + console.log(issue.name); } - -console.log(`Found ${issueNames.length} total issues`); -console.log(issueNames); ``` -**Auto Pagination Features:** - -- Automatically fetches subsequent pages when current page is exhausted -- Works with any filter or field selection options -- Memory efficient - processes one item at a time -- Respects rate limits and caching automatically - -```typescript -// Complex example: Find all Spider-Man characters with auto-pagination -const spiderCharacters = []; - -for await (const character of client.character.list({ - fieldList: ['id', 'name', 'publisher', 'image'], - filter: { name: 'Spider' }, // Partial name match - limit: 100, // Larger pages for efficiency -})) { - if (character.name.toLowerCase().includes('spider')) { - spiderCharacters.push({ - id: character.id, - name: character.name, - publisher: character.publisher?.name, - }); - } -} - -console.log(`Found ${spiderCharacters.length} Spider characters`); -``` - -## Adaptive Rate Limiting - -The Comic Vine client includes an advanced adaptive rate limiting system that intelligently manages API capacity based on real-time user activity patterns. This feature maximizes API utilization while ensuring excellent user experience. - -### How Adaptive Rate Limiting Works - -The adaptive system dynamically allocates API capacity between **user requests** (interactive, time-sensitive) and **background requests** (bulk operations, scheduled tasks) based on current activity: - -**Real-Time Activity Monitoring:** - -- Tracks user activity in 15-minute windows -- Detects activity trends (increasing, stable, decreasing) -- Recalculates capacity allocation every 30 seconds - -**Four Adaptive Strategies:** +## Documentation -1. **Night Mode (Zero User Activity)**: Background gets 100% capacity (200/200 requests) -2. **Low Activity Mode**: Background gets 70% capacity, users get 30% reserved -3. **Moderate Activity Mode**: Dynamic scaling based on usage patterns -4. **High Activity Mode**: Users get priority (90% capacity), background paused +Full documentation is available at **[allymurray.github.io/comic-vine](https://allymurray.github.io/comic-vine)**, including: -### Benefits +- [Getting Started](https://allymurray.github.io/comic-vine/getting-started/introduction/) - Installation, configuration, and quick start +- [Migration Guide](https://allymurray.github.io/comic-vine/getting-started/migrating-from-v1/) - Upgrading from `@comic-vine/client` v1 to `comic-vine-sdk` v2 +- [Guides](https://allymurray.github.io/comic-vine/guides/field-selection/) - Field selection, filtering, pagination, caching, and rate limiting +- [API Reference](https://allymurray.github.io/comic-vine/api/resources/) - All 19 resources with full TypeScript interfaces +- [Examples](https://allymurray.github.io/comic-vine/examples/basic-usage/) - Basic and advanced usage patterns -**Maximum Efficiency:** +For store internals, custom implementations, and advanced caching or rate limiting behavior, see the **[HTTP Client Toolkit documentation](https://allymurray.github.io/http-client-toolkit/)**. -- **Nighttime**: Background jobs consume all 200 requests/hour when users are inactive -- **Daytime**: User requests get instant priority during peak usage -- **Adaptive**: Seamless transitions between modes based on real activity +## Code Generation -**User Experience Protection:** +Resource types, classes, tests, and mock data are generated from sample API responses. See [`scripts/README.md`](scripts/README.md) for the full pipeline documentation and architecture diagrams. -- User requests never wait during activity spikes -- Guaranteed minimum capacity even during background scale-up -- Automatic detection and response to usage surges - -### Quick Start - -**Zero Configuration (Recommended):** - -```typescript -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore({ - // Perfect defaults - no configuration needed! - }), - }, -}); - -// User-facing requests get priority -const character = await client.character.retrieve(1443, { - priority: 'user', -}); - -// Background processing gets remaining capacity -for await (const issue of client.issue.list({ priority: 'background' })) { - // Process issues in background -} -``` - -### Custom Configuration - -**Tune behavior for your specific use case:** - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore({ - adaptiveConfig: { - // Activity detection - highActivityThreshold: 15, // Default: 10 requests/15min - moderateActivityThreshold: 5, // Default: 3 requests/15min - - // Timing behavior - monitoringWindowMs: 20 * 60 * 1000, // Default: 15min - sustainedInactivityThresholdMs: 45 * 60 * 1000, // Default: 30min - recalculationIntervalMs: 60000, // Default: 30 seconds - - // Capacity limits - maxUserScaling: 1.5, // Default: 2.0 (max user capacity multiplier) - minUserReserved: 10, // Default: 5 (minimum guaranteed user requests) - - // Background behavior - backgroundPauseOnIncreasingTrend: true, // Default: true - }, - }), - }, -}); -``` - -### Real-World Scenarios - -**Scenario 1: Night Operations (2:00 AM)** - -``` -Recent user activity: 0 requests/15min -Sustained inactivity: 45+ minutes -→ User reserved: 0 requests/hour -→ Background max: 200 requests/hour (100% API capacity!) -→ Background paused: false -``` - -**Scenario 2: Morning Usage (8:00 AM)** - -``` -Recent user activity: 4 requests/15min -Trend: stable -→ User reserved: 80 requests/hour (40% base allocation) -→ Background max: 120 requests/hour -→ Background paused: false -``` - -**Scenario 3: Peak Activity (10:00 AM)** - -``` -Recent user activity: 18 requests/15min -Trend: increasing -→ User reserved: 180 requests/hour (prioritized) -→ Background max: 20 requests/hour -→ Background paused: true (trend is increasing) -``` - -### Priority Guidelines - -**Use `priority: 'user'` for:** - -- Interactive user requests (searches, detail views) -- Real-time features (autocomplete, live updates) -- Time-sensitive operations -- API requests triggered by user actions - -**Use `priority: 'background'` for:** - -- Bulk data processing -- Scheduled synchronization -- Cache warming -- Analytics and reporting -- Non-urgent batch operations - -### Monitoring and Status - -**Check adaptive status:** - -```typescript -const status = await client.stores.rateLimit.getStatus('characters'); -console.log(status.adaptive); -// { -// userReserved: 120, -// backgroundMax: 80, -// backgroundPaused: false, -// recentUserActivity: 6, -// reason: "Moderate user activity - dynamic scaling (1.3x user capacity)" -// } -``` - -### Migration from Traditional Rate Limiting - -**Existing code continues to work unchanged:** - -```typescript -// Existing code - no changes needed -const issue = await client.issue.retrieve(1); -const issues = await client.issue.list(); - -// These are treated as 'background' priority by default -// Adaptive system provides them with available capacity -``` - -**Gradually add priority where beneficial:** - -```typescript -// Add priority to user-facing requests -const userSearch = await client.character.list({ - filter: { name: searchTerm }, - priority: 'user', // Gets priority during high activity -}); - -// Background operations can specify their priority -const syncData = await client.volume.list({ - priority: 'background', // Explicitly background priority -}); -``` - -**SQLite Store Support:** - -```typescript -import { SqliteAdaptiveRateLimitStore } from '@comic-vine/sqlite-store'; - -// Persistent adaptive rate limiting across app restarts -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ - database: './comic-vine.db', - adaptiveConfig: { - // Same configuration options available - }, - }), - }, -}); -``` - -### Performance Impact - -- **Zero overhead** for traditional rate limiting users -- **Minimal overhead** when using adaptive features -- **Memory efficient** with automatic cleanup -- **Configurable recalculation intervals** prevent thrashing - -## Error Handling - -The client provides detailed error types for different scenarios: - -```typescript -import { - UnauthorizedError, - ObjectNotFoundError, - FilterError, - GenericRequestError, -} from '@comic-vine/client'; - -try { - const issue = await client.issue.retrieve(999999); -} catch (error) { - if (error instanceof UnauthorizedError) { - console.error('Invalid API key'); - } else if (error instanceof ObjectNotFoundError) { - console.error('Issue not found'); - } else if (error instanceof FilterError) { - console.error('Invalid filter parameters'); - } else if (error instanceof GenericRequestError) { - console.error('API request failed:', error.message); - } -} -``` - -## Advanced Usage - -### Custom Rate Limiting - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 200, windowMs: 60000 }, // Default: 200 requests per minute - resourceConfigs: new Map([ - ['issues', { limit: 100, windowMs: 60000 }], // Issues: 100 req/min - ['characters', { limit: 300, windowMs: 60000 }], // Characters: 300 req/min - ]), - }), - }, -}); -``` - -### Custom Caching - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore({ - maxSize: 5000, - ttl: 600000, // 10 minutes - cleanupIntervalMs: 120000, // Cleanup every 2 minutes - }), - }, -}); -``` - -### Deduplication - -```typescript -// Multiple simultaneous requests for the same resource -// will be deduplicated automatically -const [issue1, issue2, issue3] = await Promise.all([ - client.issue.retrieve(1), - client.issue.retrieve(1), // Deduplicated - client.issue.retrieve(1), // Deduplicated -]); -``` - -## How It Works - -Understanding the client's internal architecture helps you optimize performance and handle edge cases effectively. - -### Request Processing Flow - -Every API request follows a **7-step priority sequence** designed to maximize efficiency and respect API limits: - -```typescript -// Internal request flow (simplified) -async function processRequest(url) { - // 1. Cache Check (Highest Priority) - const cached = await cache.get(requestHash); - if (cached) return cached; // Immediate return - - // 2. Deduplication - const inProgress = await dedupe.waitFor(requestHash); - if (inProgress) return inProgress; // Wait for existing request - - await dedupe.register(requestHash); // Mark as in-progress - - // 3. Rate Limiting - const canProceed = await rateLimit.canProceed(resource); - if (!canProceed) { - // Either throw error or wait based on configuration - } - - // 4. Execute HTTP Request - const response = await httpClient.get(url); - - // 5. Record for Rate Limiting - await rateLimit.record(resource); - - // 6. Store in Cache - await cache.set(requestHash, response); - - // 7. Complete Deduplication - await dedupe.complete(requestHash, response); - - return response; -} -``` - -### Rate Limiting Behavior - -The client supports two distinct modes for handling rate limit violations: - -#### Throw Mode (Default) - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - client: { - throwOnRateLimit: true, // Default behavior - }, -}); - -try { - const issue = await client.issue.retrieve(1); -} catch (error) { - if (error.message.includes('Rate limit exceeded')) { - console.log('Need to wait before retrying'); - // Handle rate limit error manually - } -} -``` - -#### Wait Mode (Automatic Retry) - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - client: { - throwOnRateLimit: false, // Wait automatically - maxWaitTime: 60000, // Maximum 1 minute wait - }, -}); - -// This request will automatically wait if rate limited -const issue = await client.issue.retrieve(1); -``` - -### Key Architectural Concepts - -#### No Traditional Request Queue - -- Requests **block synchronously** rather than being queued -- When rate limited, the current request waits (or throws) immediately -- No background processing or queuing system - -#### Per-Resource Rate Limiting - -- Each resource type (issues, characters, volumes, etc.) has **independent limits** -- Uses a **sliding window algorithm** for precise rate limiting -- Limits reset gradually as old requests age out of the window - -```typescript -// Different limits per resource -const rateLimitStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 200, windowMs: 3600000 }, // 200 req/hour default - resourceConfigs: new Map([ - ['issues', { limit: 100, windowMs: 3600000 }], // 100 req/hour - ['characters', { limit: 300, windowMs: 3600000 }], // 300 req/hour - ['volumes', { limit: 50, windowMs: 3600000 }], // 50 req/hour - ]), -}); -``` - -#### Smart Request Optimization - -**Caching**: Eliminates redundant API calls - -```typescript -// Second call returns immediately from cache -const issue1 = await client.issue.retrieve(1); // API call -const issue2 = await client.issue.retrieve(1); // Cache hit -``` - -**Deduplication**: Prevents concurrent identical requests +```bash +# Generate all types, resource classes, tests, and mock data from samples +pnpm sdk:generate -```typescript -// All three requests share the same HTTP call -const [a, b, c] = await Promise.all([ - client.issue.retrieve(1), // Makes API call - client.issue.retrieve(1), // Waits for first call - client.issue.retrieve(1), // Waits for first call -]); +# Fetch fresh API samples (requires COMIC_VINE_API_KEY) +COMIC_VINE_API_KEY=your-key pnpm samples:fetch ``` -### Store Persistence Options - -#### In-Memory Stores (Fast, Non-Persistent) - -- Best for single-process applications -- Data lost on restart -- Highest performance - -#### SQLite Stores (Persistent, Cross-Process) - -- Best for multi-process applications -- Survives application restarts -- Enables cross-process coordination - -```typescript -// Persistent rate limiting across app restarts -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SQLiteRateLimitStore({ - database: './rate-limits.db', // Persistent file - defaultConfig: { limit: 200, windowMs: 3600000 }, - }), - }, -}); -``` - -## Store Implementations - -### In-Memory Stores - -- **Pros**: Fastest performance, zero setup -- **Cons**: No persistence, single-process only -- **Use cases**: Development, testing, single-instance applications - -### SQLite Stores - -- **Pros**: Persistent across restarts, cross-process support -- **Cons**: Requires file system, slightly slower than in-memory -- **Use cases**: Production applications, multi-instance deployments - -## Examples - -See the `examples/` directory for complete usage examples: - -- `rate-limited-client-usage.ts` - Rate limiting examples with per-resource configuration and error handling -- `memory-managed-cache-usage.ts` - Memory-managed caching examples with LRU eviction and statistics monitoring - ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and contribution guidelines. diff --git a/build-tests/browser-bundle.test.js b/build-tests/browser-bundle.test.js new file mode 100644 index 0000000..7d4d322 --- /dev/null +++ b/build-tests/browser-bundle.test.js @@ -0,0 +1,63 @@ +/** + * Test browser bundleability of built artifacts + * This file validates that the ESM build can be bundled for browsers + * using esbuild, catching Node-specific API usage and unresolvable imports + */ +import { build } from 'esbuild'; +import { resolve, dirname } from 'path'; +import { fileURLToPath } from 'url'; +import { readFileSync } from 'fs'; + +const __dirname = dirname(fileURLToPath(import.meta.url)); + +// Read package.json dependencies so we can externalize them. +// The SDK ships as a library — consumers bundle deps themselves. +// This test validates that *our* code introduces no Node-specific APIs. +const pkg = JSON.parse( + readFileSync(resolve(__dirname, '../package.json'), 'utf8'), +); +const external = Object.keys(pkg.dependencies || {}); + +async function testBrowserBundle() { + console.log('Testing browser bundleability...'); + + try { + const result = await build({ + entryPoints: [resolve(__dirname, '../lib/index.js')], + bundle: true, + platform: 'browser', + format: 'iife', + write: false, + logLevel: 'silent', + external, + }); + + if (!result.outputFiles || result.outputFiles.length === 0) { + throw new Error('esbuild produced no output'); + } + + if (result.errors.length > 0) { + throw new Error( + `esbuild errors: ${result.errors.map((e) => e.text).join(', ')}`, + ); + } + + console.log( + ` Bundle size: ${(result.outputFiles[0].contents.length / 1024).toFixed(1)} KB`, + ); + console.log('✅ Browser bundle test passed'); + return true; + } catch (error) { + console.error('❌ Browser bundle test failed:', error.message); + return false; + } +} + +testBrowserBundle() + .then((success) => { + process.exit(success ? 0 : 1); + }) + .catch((error) => { + console.error('❌ Browser bundle test crashed:', error); + process.exit(1); + }); diff --git a/packages/client/build-tests/cjs-require.test.cjs b/build-tests/cjs-require.test.cjs similarity index 71% rename from packages/client/build-tests/cjs-require.test.cjs rename to build-tests/cjs-require.test.cjs index 729bffb..c286aa0 100644 --- a/packages/client/build-tests/cjs-require.test.cjs +++ b/build-tests/cjs-require.test.cjs @@ -15,6 +15,24 @@ function testCJSRequire() { throw new Error('CJS export should be a constructor function'); } + if (ComicVine.default !== ComicVine) { + throw new Error('CJS default export should reference the constructor'); + } + + if (ComicVine.ComicVine !== ComicVine) { + throw new Error( + 'CJS named ComicVine export should reference the constructor', + ); + } + + if (typeof ComicVine.StatusCode?.OK !== 'number') { + throw new Error('CJS named StatusCode export should be available'); + } + + if (typeof ComicVine.ComicVineUnauthorizedError !== 'function') { + throw new Error('CJS named error exports should be available'); + } + // Test that we can create an instance const client = new ComicVine({ apiKey: 'test-key' }); diff --git a/packages/client/build-tests/esm-import.test.js b/build-tests/esm-import.test.js similarity index 100% rename from packages/client/build-tests/esm-import.test.js rename to build-tests/esm-import.test.js diff --git a/packages/client/build-tests/exports.test.cjs b/build-tests/exports.test.cjs similarity index 100% rename from packages/client/build-tests/exports.test.cjs rename to build-tests/exports.test.cjs diff --git a/build-tests/functionality.test.cjs b/build-tests/functionality.test.cjs new file mode 100644 index 0000000..683e60e --- /dev/null +++ b/build-tests/functionality.test.cjs @@ -0,0 +1,135 @@ +/** + * Test basic functionality of built artifacts + * This file validates that the built package works as expected. + * Enhanced with patterns from comic-vine-playground to test all 19 resources. + */ + +async function testFunctionality() { + console.log('Testing basic functionality...'); + + try { + // Test CJS functionality + const ComicVine = require('../lib/index.cjs'); + const client = new ComicVine({ apiKey: 'test-key' }); + + // All 19 resources that should be available + const allResources = [ + 'character', + 'concept', + 'episode', + 'issue', + 'location', + 'movie', + 'origin', + 'person', + 'power', + 'promo', + 'publisher', + 'series', + 'storyArc', + 'team', + 'thing', + 'video', + 'videoCategory', + 'videoType', + 'volume', + ]; + + // Test that all resources exist + for (const resource of allResources) { + if (!client[resource]) { + throw new Error(`Client missing resource property: ${resource}`); + } + } + + // Test that all resources have list and retrieve methods + const methods = ['list', 'retrieve']; + for (const resource of allResources) { + for (const method of methods) { + if (typeof client[resource][method] !== 'function') { + throw new Error(`Resource ${resource} missing method ${method}`); + } + } + } + + // Test client construction with various option combinations + const clientWithBaseUrl = new ComicVine({ + apiKey: 'test-key', + baseUrl: 'https://custom.api.com/', + }); + if (!clientWithBaseUrl) { + throw new Error('Failed to create client with custom baseUrl'); + } + + const clientWithStores = new ComicVine({ + apiKey: 'test-key', + stores: { + cache: { + get: () => {}, + set: () => {}, + delete: () => {}, + clear: () => {}, + }, + }, + }); + if (!clientWithStores) { + throw new Error('Failed to create client with stores'); + } + + const clientWithOptions = new ComicVine({ + apiKey: 'test-key', + client: { + defaultCacheTTL: 300, + throwOnRateLimit: false, + maxWaitTime: 30000, + }, + }); + if (!clientWithOptions) { + throw new Error('Failed to create client with client options'); + } + + const clientFull = new ComicVine({ + apiKey: 'test-key', + baseUrl: 'https://custom.api.com/', + stores: { + cache: { + get: () => {}, + set: () => {}, + delete: () => {}, + clear: () => {}, + }, + }, + client: { + defaultCacheTTL: 7200, + throwOnRateLimit: false, + maxWaitTime: 30000, + }, + }); + if (!clientFull) { + throw new Error('Failed to create client with all options'); + } + + // Verify resource count + if (allResources.length !== 19) { + throw new Error(`Expected 19 resources but found ${allResources.length}`); + } + + console.log( + `✅ Functionality test passed (${allResources.length} resources verified)`, + ); + return true; + } catch (error) { + console.error('❌ Functionality test failed:', error.message); + return false; + } +} + +// Run the test +testFunctionality() + .then((success) => { + process.exit(success ? 0 : 1); + }) + .catch((error) => { + console.error('❌ Functionality test crashed:', error); + process.exit(1); + }); diff --git a/build-tests/index.test-d.ts b/build-tests/index.test-d.ts new file mode 100644 index 0000000..5618b68 --- /dev/null +++ b/build-tests/index.test-d.ts @@ -0,0 +1,178 @@ +/** + * Type contract tests for the public API surface. + * Uses tsd to assert that exported types match expected shapes. + * A failing test here means a consumer-visible type change occurred. + */ +import { expectType, expectAssignable, expectError } from 'tsd'; +import { HttpClientError } from '@http-client-toolkit/core'; +import ComicVine, { + ComicVine as ComicVineNamed, + type ComicVineOptions, + type Response, + StatusCode, + // Error classes + GenericError, + ComicVineFilterError, + ComicVineGenericError, + ComicVineGenericRequestError, + ComicJsonpCallbackMissingError, + ComicVineObjectNotFoundError, + ComicVineSubscriberOnlyError, + ComicVineUnauthorizedError, + ComicVineUrlFormatError, + OptionsValidationError, + customError, +} from 'comic-vine-sdk'; + +// --------------------------------------------------------------------------- +// Constructor +// --------------------------------------------------------------------------- + +// Minimal valid options: apiKey is required +const client = new ComicVine({ apiKey: 'test' }); +expectType(client); + +// Named export and default export are the same class +expectType(client); + +// Full options shape +new ComicVine({ + apiKey: 'test', + baseUrl: 'https://example.com', + stores: {}, + client: { + defaultCacheTTL: 60, + throwOnRateLimit: true, + maxWaitTime: 5000, + }, +}); + +// Missing apiKey is a type error +expectError(new ComicVine({})); +expectError(new ComicVine()); + +// --------------------------------------------------------------------------- +// Resource properties (all 19) +// --------------------------------------------------------------------------- + +const resources = [ + client.character, + client.concept, + client.episode, + client.issue, + client.location, + client.movie, + client.origin, + client.person, + client.power, + client.promo, + client.publisher, + client.series, + client.storyArc, + client.team, + client.thing, + client.video, + client.videoCategory, + client.videoType, + client.volume, +] as const; + +// Each resource has list() and retrieve() methods (spot-check a few) +expectType(client.character.list); +expectType(client.issue.retrieve); + +// --------------------------------------------------------------------------- +// Resource methods — list() returns Promise & AsyncIterable +// --------------------------------------------------------------------------- + +const listResult = client.character.list(); + +// list() result is thenable (Promise-like) +expectAssignable>(listResult); + +// list() result is async-iterable +expectAssignable>(listResult); + +// --------------------------------------------------------------------------- +// Resource methods — retrieve() returns a Promise +// --------------------------------------------------------------------------- + +const retrieveResult = client.character.retrieve(1); +expectAssignable>(retrieveResult); + +// --------------------------------------------------------------------------- +// Response generic shape +// --------------------------------------------------------------------------- + +declare const response: Response; +expectType<'OK'>(response.error); +expectType(response.limit); +expectType(response.offset); +expectType(response.numberOfPageResults); +expectType(response.numberOfTotalResults); +expectType(response.statusCode); +expectType(response.results); + +// --------------------------------------------------------------------------- +// StatusCode enum values +// --------------------------------------------------------------------------- + +expectType(StatusCode.OK); +expectType(StatusCode.InvalidApiKey); +expectType(StatusCode.ObjectNotFound); +expectType(StatusCode.UrlFormatError); +expectType(StatusCode.JsonpCallbackMissing); +expectType(StatusCode.FilterError); +expectType(StatusCode.SubscriberOnlyVideo); + +// --------------------------------------------------------------------------- +// Error classes extend HttpClientError and have `help` +// --------------------------------------------------------------------------- + +const errors = [ + new GenericError('test'), + new ComicVineFilterError(), + new ComicVineGenericError('test'), + new ComicVineGenericRequestError('test'), + new ComicJsonpCallbackMissingError(), + new ComicVineObjectNotFoundError(), + new ComicVineSubscriberOnlyError(), + new ComicVineUnauthorizedError(), + new ComicVineUrlFormatError(), + new OptionsValidationError(['path'], 'message'), +] as const; + +for (const error of errors) { + expectAssignable(error); + expectType(error.help); + expectAssignable(error); +} + +// GenericError accepts optional message +new GenericError(); +new GenericError('with message'); + +// ComicVineGenericRequestError extends ComicVineGenericError +expectAssignable(new ComicVineGenericRequestError()); + +// --------------------------------------------------------------------------- +// customError() +// --------------------------------------------------------------------------- + +expectType(customError(new Error('test'))); +expectType(customError('non-error')); + +// --------------------------------------------------------------------------- +// Utility methods on ComicVine instance +// --------------------------------------------------------------------------- + +expectType>(client.getAvailableResources()); +expectType(client.hasResource('character')); +expectAssignable>(client.clearCache()); +expectAssignable>(client.resetRateLimit('character')); +expectType(client.isResourceLoaded('character')); + +const stats = client.getCacheStats(); +expectType(stats.total); +expectType(stats.loaded); +expectType>(stats.loadedResources); diff --git a/docs-site/astro.config.mjs b/docs-site/astro.config.mjs new file mode 100644 index 0000000..03c7755 --- /dev/null +++ b/docs-site/astro.config.mjs @@ -0,0 +1,84 @@ +import { defineConfig } from 'astro/config'; +import starlight from '@astrojs/starlight'; + +export default defineConfig({ + site: 'https://allymurray.github.io', + base: '/comic-vine', + integrations: [ + starlight({ + title: 'Comic Vine SDK', + customCss: ['./src/styles/custom.css'], + social: [ + { + icon: 'github', + label: 'GitHub', + href: 'https://github.com/AllyMurray/comic-vine', + }, + ], + sidebar: [ + { + label: 'Getting Started', + items: [ + { label: 'Introduction', slug: 'getting-started/introduction' }, + { label: 'Installation', slug: 'getting-started/installation' }, + { label: 'Quick Start', slug: 'getting-started/quick-start' }, + ], + }, + { + label: 'Guides', + items: [ + { label: 'Field Selection', slug: 'guides/field-selection' }, + { label: 'Filtering', slug: 'guides/filtering' }, + { label: 'Pagination', slug: 'guides/pagination' }, + { label: 'Error Handling', slug: 'guides/error-handling' }, + { label: 'Caching', slug: 'guides/caching' }, + { label: 'Rate Limiting', slug: 'guides/rate-limiting' }, + ], + }, + { + label: 'API Reference', + items: [ + { label: 'Resources', slug: 'api/resources' }, + { label: 'Configuration', slug: 'api/configuration' }, + { label: 'Errors', slug: 'api/errors' }, + { + label: 'Resources', + collapsed: true, + items: [ + { label: 'Character', slug: 'api/resources/character' }, + { label: 'Concept', slug: 'api/resources/concept' }, + { label: 'Episode', slug: 'api/resources/episode' }, + { label: 'Issue', slug: 'api/resources/issue' }, + { label: 'Location', slug: 'api/resources/location' }, + { label: 'Movie', slug: 'api/resources/movie' }, + { label: 'Origin', slug: 'api/resources/origin' }, + { label: 'Person', slug: 'api/resources/person' }, + { label: 'Power', slug: 'api/resources/power' }, + { label: 'Promo', slug: 'api/resources/promo' }, + { label: 'Publisher', slug: 'api/resources/publisher' }, + { label: 'Series', slug: 'api/resources/series' }, + { label: 'Story Arc', slug: 'api/resources/story-arc' }, + { label: 'Team', slug: 'api/resources/team' }, + { label: 'Thing', slug: 'api/resources/thing' }, + { label: 'Video', slug: 'api/resources/video' }, + { + label: 'Video Category', + slug: 'api/resources/video-category', + }, + { label: 'Video Type', slug: 'api/resources/video-type' }, + { label: 'Volume', slug: 'api/resources/volume' }, + ], + }, + ], + }, + { + label: 'Examples', + items: [ + { label: 'Basic Usage', slug: 'examples/basic-usage' }, + { label: 'Advanced Usage', slug: 'examples/advanced-usage' }, + ], + }, + ], + }), + ], +}); diff --git a/docs-site/package.json b/docs-site/package.json new file mode 100644 index 0000000..f95b1fe --- /dev/null +++ b/docs-site/package.json @@ -0,0 +1,22 @@ +{ + "name": "comic-vine-docs", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@astrojs/starlight": "^0.37.6", + "astro": "^5.17.1", + "sharp": "^0.34.2" + }, + "pnpm": { + "onlyBuiltDependencies": [ + "sharp" + ] + } +} diff --git a/docs-site/pnpm-lock.yaml b/docs-site/pnpm-lock.yaml new file mode 100644 index 0000000..d378eff --- /dev/null +++ b/docs-site/pnpm-lock.yaml @@ -0,0 +1,5789 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + .: + dependencies: + '@astrojs/starlight': + specifier: ^0.37.6 + version: 0.37.6(astro@5.17.2(rollup@4.57.1)(typescript@5.9.3)) + astro: + specifier: ^5.17.1 + version: 5.17.2(rollup@4.57.1)(typescript@5.9.3) + sharp: + specifier: ^0.34.2 + version: 0.34.5 + +packages: + '@astrojs/compiler@2.13.1': + resolution: + { + integrity: sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==, + } + + '@astrojs/internal-helpers@0.7.5': + resolution: + { + integrity: sha512-vreGnYSSKhAjFJCWAwe/CNhONvoc5lokxtRoZims+0wa3KbHBdPHSSthJsKxPd8d/aic6lWKpRTYGY/hsgK6EA==, + } + + '@astrojs/markdown-remark@6.3.10': + resolution: + { + integrity: sha512-kk4HeYR6AcnzC4QV8iSlOfh+N8TZ3MEStxPyenyCtemqn8IpEATBFMTJcfrNW32dgpt6MY3oCkMM/Tv3/I4G3A==, + } + + '@astrojs/mdx@4.3.13': + resolution: + { + integrity: sha512-IHDHVKz0JfKBy3//52JSiyWv089b7GVSChIXLrlUOoTLWowG3wr2/8hkaEgEyd/vysvNQvGk+QhysXpJW5ve6Q==, + } + engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } + peerDependencies: + astro: ^5.0.0 + + '@astrojs/prism@3.3.0': + resolution: + { + integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==, + } + engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } + + '@astrojs/sitemap@3.7.0': + resolution: + { + integrity: sha512-+qxjUrz6Jcgh+D5VE1gKUJTA3pSthuPHe6Ao5JCxok794Lewx8hBFaWHtOnN0ntb2lfOf7gvOi9TefUswQ/ZVA==, + } + + '@astrojs/starlight@0.37.6': + resolution: + { + integrity: sha512-wQrKwH431q+8FsLBnNQeG+R36TMtEGxTQ2AuiVpcx9APcazvL3n7wVW8mMmYyxX0POjTnxlcWPkdMGR3Yj1L+w==, + } + peerDependencies: + astro: ^5.5.0 + + '@astrojs/telemetry@3.3.0': + resolution: + { + integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==, + } + engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } + + '@babel/helper-string-parser@7.27.1': + resolution: + { + integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==, + } + engines: { node: '>=6.9.0' } + + '@babel/helper-validator-identifier@7.28.5': + resolution: + { + integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==, + } + engines: { node: '>=6.9.0' } + + '@babel/parser@7.29.0': + resolution: + { + integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==, + } + engines: { node: '>=6.0.0' } + hasBin: true + + '@babel/runtime@7.28.6': + resolution: + { + integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==, + } + engines: { node: '>=6.9.0' } + + '@babel/types@7.29.0': + resolution: + { + integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==, + } + engines: { node: '>=6.9.0' } + + '@capsizecss/unpack@4.0.0': + resolution: + { + integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==, + } + engines: { node: '>=18' } + + '@ctrl/tinycolor@4.2.0': + resolution: + { + integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==, + } + engines: { node: '>=14' } + + '@emnapi/runtime@1.8.1': + resolution: + { + integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==, + } + + '@esbuild/aix-ppc64@0.25.12': + resolution: + { + integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.27.3': + resolution: + { + integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.12': + resolution: + { + integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.27.3': + resolution: + { + integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.12': + resolution: + { + integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.27.3': + resolution: + { + integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.12': + resolution: + { + integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.27.3': + resolution: + { + integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.12': + resolution: + { + integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.27.3': + resolution: + { + integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.12': + resolution: + { + integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.27.3': + resolution: + { + integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.12': + resolution: + { + integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.27.3': + resolution: + { + integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.12': + resolution: + { + integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.27.3': + resolution: + { + integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.12': + resolution: + { + integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.27.3': + resolution: + { + integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.12': + resolution: + { + integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.27.3': + resolution: + { + integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.12': + resolution: + { + integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.27.3': + resolution: + { + integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.12': + resolution: + { + integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==, + } + engines: { node: '>=18' } + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.27.3': + resolution: + { + integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==, + } + engines: { node: '>=18' } + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.12': + resolution: + { + integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==, + } + engines: { node: '>=18' } + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.27.3': + resolution: + { + integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==, + } + engines: { node: '>=18' } + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.12': + resolution: + { + integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.27.3': + resolution: + { + integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.12': + resolution: + { + integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==, + } + engines: { node: '>=18' } + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.27.3': + resolution: + { + integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==, + } + engines: { node: '>=18' } + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.12': + resolution: + { + integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==, + } + engines: { node: '>=18' } + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.27.3': + resolution: + { + integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==, + } + engines: { node: '>=18' } + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.12': + resolution: + { + integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.27.3': + resolution: + { + integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.12': + resolution: + { + integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-arm64@0.27.3': + resolution: + { + integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.12': + resolution: + { + integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.3': + resolution: + { + integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.12': + resolution: + { + integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-arm64@0.27.3': + resolution: + { + integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.12': + resolution: + { + integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.3': + resolution: + { + integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.12': + resolution: + { + integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openharmony] + + '@esbuild/openharmony-arm64@0.27.3': + resolution: + { + integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: + { + integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.27.3': + resolution: + { + integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.12': + resolution: + { + integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.27.3': + resolution: + { + integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.12': + resolution: + { + integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.27.3': + resolution: + { + integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.12': + resolution: + { + integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.27.3': + resolution: + { + integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [win32] + + '@expressive-code/core@0.41.6': + resolution: + { + integrity: sha512-FvJQP+hG0jWi/FLBSmvHInDqWR7jNANp9PUDjdMqSshHb0y7sxx3vHuoOr6SgXjWw+MGLqorZyPQ0aAlHEok6g==, + } + + '@expressive-code/plugin-frames@0.41.6': + resolution: + { + integrity: sha512-d+hkSYXIQot6fmYnOmWAM+7TNWRv/dhfjMsNq+mIZz8Tb4mPHOcgcfZeEM5dV9TDL0ioQNvtcqQNuzA1sRPjxg==, + } + + '@expressive-code/plugin-shiki@0.41.6': + resolution: + { + integrity: sha512-Y6zmKBmsIUtWTzdefqlzm/h9Zz0Rc4gNdt2GTIH7fhHH2I9+lDYCa27BDwuBhjqcos6uK81Aca9dLUC4wzN+ng==, + } + + '@expressive-code/plugin-text-markers@0.41.6': + resolution: + { + integrity: sha512-PBFa1wGyYzRExMDzBmAWC6/kdfG1oLn4pLpBeTfIRrALPjcGA/59HP3e7q9J0Smk4pC7U+lWkA2LHR8FYV8U7Q==, + } + + '@img/colour@1.0.0': + resolution: + { + integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==, + } + engines: { node: '>=18' } + + '@img/sharp-darwin-arm64@0.34.5': + resolution: + { + integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.5': + resolution: + { + integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.2.4': + resolution: + { + integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==, + } + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.2.4': + resolution: + { + integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==, + } + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.2.4': + resolution: + { + integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==, + } + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-arm@1.2.4': + resolution: + { + integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==, + } + cpu: [arm] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-ppc64@1.2.4': + resolution: + { + integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==, + } + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-riscv64@1.2.4': + resolution: + { + integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==, + } + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-s390x@1.2.4': + resolution: + { + integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==, + } + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-x64@1.2.4': + resolution: + { + integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==, + } + cpu: [x64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + resolution: + { + integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==, + } + cpu: [arm64] + os: [linux] + libc: [musl] + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + resolution: + { + integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==, + } + cpu: [x64] + os: [linux] + libc: [musl] + + '@img/sharp-linux-arm64@0.34.5': + resolution: + { + integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-arm@0.34.5': + resolution: + { + integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-ppc64@0.34.5': + resolution: + { + integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-riscv64@0.34.5': + resolution: + { + integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-s390x@0.34.5': + resolution: + { + integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-x64@0.34.5': + resolution: + { + integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [x64] + os: [linux] + libc: [glibc] + + '@img/sharp-linuxmusl-arm64@0.34.5': + resolution: + { + integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [linux] + libc: [musl] + + '@img/sharp-linuxmusl-x64@0.34.5': + resolution: + { + integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [x64] + os: [linux] + libc: [musl] + + '@img/sharp-wasm32@0.34.5': + resolution: + { + integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [wasm32] + + '@img/sharp-win32-arm64@0.34.5': + resolution: + { + integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.34.5': + resolution: + { + integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.34.5': + resolution: + { + integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [x64] + os: [win32] + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: + { + integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, + } + + '@mdx-js/mdx@3.1.1': + resolution: + { + integrity: sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==, + } + + '@oslojs/encoding@1.1.0': + resolution: + { + integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==, + } + + '@pagefind/darwin-arm64@1.4.0': + resolution: + { + integrity: sha512-2vMqkbv3lbx1Awea90gTaBsvpzgRs7MuSgKDxW0m9oV1GPZCZbZBJg/qL83GIUEN2BFlY46dtUZi54pwH+/pTQ==, + } + cpu: [arm64] + os: [darwin] + + '@pagefind/darwin-x64@1.4.0': + resolution: + { + integrity: sha512-e7JPIS6L9/cJfow+/IAqknsGqEPjJnVXGjpGm25bnq+NPdoD3c/7fAwr1OXkG4Ocjx6ZGSCijXEV4ryMcH2E3A==, + } + cpu: [x64] + os: [darwin] + + '@pagefind/default-ui@1.4.0': + resolution: + { + integrity: sha512-wie82VWn3cnGEdIjh4YwNESyS1G6vRHwL6cNjy9CFgNnWW/PGRjsLq300xjVH5sfPFK3iK36UxvIBymtQIEiSQ==, + } + + '@pagefind/freebsd-x64@1.4.0': + resolution: + { + integrity: sha512-WcJVypXSZ+9HpiqZjFXMUobfFfZZ6NzIYtkhQ9eOhZrQpeY5uQFqNWLCk7w9RkMUwBv1HAMDW3YJQl/8OqsV0Q==, + } + cpu: [x64] + os: [freebsd] + + '@pagefind/linux-arm64@1.4.0': + resolution: + { + integrity: sha512-PIt8dkqt4W06KGmQjONw7EZbhDF+uXI7i0XtRLN1vjCUxM9vGPdtJc2mUyVPevjomrGz5M86M8bqTr6cgDp1Uw==, + } + cpu: [arm64] + os: [linux] + + '@pagefind/linux-x64@1.4.0': + resolution: + { + integrity: sha512-z4oddcWwQ0UHrTHR8psLnVlz6USGJ/eOlDPTDYZ4cI8TK8PgwRUPQZp9D2iJPNIPcS6Qx/E4TebjuGJOyK8Mmg==, + } + cpu: [x64] + os: [linux] + + '@pagefind/windows-x64@1.4.0': + resolution: + { + integrity: sha512-NkT+YAdgS2FPCn8mIA9bQhiBs+xmniMGq1LFPDhcFn0+2yIUEiIG06t7bsZlhdjknEQRTSdT7YitP6fC5qwP0g==, + } + cpu: [x64] + os: [win32] + + '@rollup/pluginutils@5.3.0': + resolution: + { + integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==, + } + engines: { node: '>=14.0.0' } + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.57.1': + resolution: + { + integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==, + } + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.57.1': + resolution: + { + integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==, + } + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.57.1': + resolution: + { + integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==, + } + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.57.1': + resolution: + { + integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==, + } + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.57.1': + resolution: + { + integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==, + } + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.57.1': + resolution: + { + integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==, + } + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + resolution: + { + integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==, + } + cpu: [arm] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + resolution: + { + integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==, + } + cpu: [arm] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + resolution: + { + integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==, + } + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm64-musl@4.57.1': + resolution: + { + integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==, + } + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-loong64-gnu@4.57.1': + resolution: + { + integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==, + } + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-musl@4.57.1': + resolution: + { + integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==, + } + cpu: [loong64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + resolution: + { + integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==, + } + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + resolution: + { + integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==, + } + cpu: [ppc64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + resolution: + { + integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==, + } + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + resolution: + { + integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==, + } + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + resolution: + { + integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==, + } + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-gnu@4.57.1': + resolution: + { + integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==, + } + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-musl@4.57.1': + resolution: + { + integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==, + } + cpu: [x64] + os: [linux] + libc: [musl] + + '@rollup/rollup-openbsd-x64@4.57.1': + resolution: + { + integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==, + } + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.57.1': + resolution: + { + integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==, + } + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + resolution: + { + integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==, + } + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.57.1': + resolution: + { + integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==, + } + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.57.1': + resolution: + { + integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==, + } + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.57.1': + resolution: + { + integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==, + } + cpu: [x64] + os: [win32] + + '@shikijs/core@3.22.0': + resolution: + { + integrity: sha512-iAlTtSDDbJiRpvgL5ugKEATDtHdUVkqgHDm/gbD2ZS9c88mx7G1zSYjjOxp5Qa0eaW0MAQosFRmJSk354PRoQA==, + } + + '@shikijs/engine-javascript@3.22.0': + resolution: + { + integrity: sha512-jdKhfgW9CRtj3Tor0L7+yPwdG3CgP7W+ZEqSsojrMzCjD1e0IxIbwUMDDpYlVBlC08TACg4puwFGkZfLS+56Tw==, + } + + '@shikijs/engine-oniguruma@3.22.0': + resolution: + { + integrity: sha512-DyXsOG0vGtNtl7ygvabHd7Mt5EY8gCNqR9Y7Lpbbd/PbJvgWrqaKzH1JW6H6qFkuUa8aCxoiYVv8/YfFljiQxA==, + } + + '@shikijs/langs@3.22.0': + resolution: + { + integrity: sha512-x/42TfhWmp6H00T6uwVrdTJGKgNdFbrEdhaDwSR5fd5zhQ1Q46bHq9EO61SCEWJR0HY7z2HNDMaBZp8JRmKiIA==, + } + + '@shikijs/themes@3.22.0': + resolution: + { + integrity: sha512-o+tlOKqsr6FE4+mYJG08tfCFDS+3CG20HbldXeVoyP+cYSUxDhrFf3GPjE60U55iOkkjbpY2uC3It/eeja35/g==, + } + + '@shikijs/types@3.22.0': + resolution: + { + integrity: sha512-491iAekgKDBFE67z70Ok5a8KBMsQ2IJwOWw3us/7ffQkIBCyOQfm/aNwVMBUriP02QshIfgHCBSIYAl3u2eWjg==, + } + + '@shikijs/vscode-textmate@10.0.2': + resolution: + { + integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==, + } + + '@types/debug@4.1.12': + resolution: + { + integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, + } + + '@types/estree-jsx@1.0.5': + resolution: + { + integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==, + } + + '@types/estree@1.0.8': + resolution: + { + integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, + } + + '@types/hast@3.0.4': + resolution: + { + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, + } + + '@types/js-yaml@4.0.9': + resolution: + { + integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==, + } + + '@types/mdast@4.0.4': + resolution: + { + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, + } + + '@types/mdx@2.0.13': + resolution: + { + integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==, + } + + '@types/ms@2.1.0': + resolution: + { + integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==, + } + + '@types/nlcst@2.0.3': + resolution: + { + integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==, + } + + '@types/node@17.0.45': + resolution: + { + integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==, + } + + '@types/sax@1.2.7': + resolution: + { + integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==, + } + + '@types/unist@2.0.11': + resolution: + { + integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==, + } + + '@types/unist@3.0.3': + resolution: + { + integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==, + } + + '@ungap/structured-clone@1.3.0': + resolution: + { + integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==, + } + + acorn-jsx@5.3.2: + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.15.0: + resolution: + { + integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==, + } + engines: { node: '>=0.4.0' } + hasBin: true + + ansi-align@3.0.1: + resolution: + { + integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, + } + + ansi-regex@5.0.1: + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: '>=8' } + + ansi-regex@6.2.2: + resolution: + { + integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==, + } + engines: { node: '>=12' } + + ansi-styles@6.2.3: + resolution: + { + integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==, + } + engines: { node: '>=12' } + + anymatch@3.1.3: + resolution: + { + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + } + engines: { node: '>= 8' } + + arg@5.0.2: + resolution: + { + integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, + } + + argparse@2.0.1: + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } + + aria-query@5.3.2: + resolution: + { + integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, + } + engines: { node: '>= 0.4' } + + array-iterate@2.0.1: + resolution: + { + integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==, + } + + astring@1.9.0: + resolution: + { + integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==, + } + hasBin: true + + astro-expressive-code@0.41.6: + resolution: + { + integrity: sha512-l47tb1uhmVIebHUkw+HEPtU/av0G4O8Q34g2cbkPvC7/e9ZhANcjUUciKt9Hp6gSVDdIuXBBLwJQn2LkeGMOAw==, + } + peerDependencies: + astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0 || ^6.0.0-beta + + astro@5.17.2: + resolution: + { + integrity: sha512-7jnMqGo53hOQNwo1N/wqeOvUp8wwW/p+DeerSjSkHNx8L/1mhy6P7rVo7EhdmF8DpKqw0tl/B5Fx1WcIzg1ysA==, + } + engines: + { node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0' } + hasBin: true + + axobject-query@4.1.0: + resolution: + { + integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==, + } + engines: { node: '>= 0.4' } + + bail@2.0.2: + resolution: + { + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, + } + + base-64@1.0.0: + resolution: + { + integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==, + } + + bcp-47-match@2.0.3: + resolution: + { + integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==, + } + + bcp-47@2.1.0: + resolution: + { + integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==, + } + + boolbase@1.0.0: + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } + + boxen@8.0.1: + resolution: + { + integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==, + } + engines: { node: '>=18' } + + camelcase@8.0.0: + resolution: + { + integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==, + } + engines: { node: '>=16' } + + ccount@2.0.1: + resolution: + { + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, + } + + chalk@5.6.2: + resolution: + { + integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==, + } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + + character-entities-html4@2.1.0: + resolution: + { + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, + } + + character-entities-legacy@3.0.0: + resolution: + { + integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, + } + + character-entities@2.0.2: + resolution: + { + integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, + } + + character-reference-invalid@2.0.1: + resolution: + { + integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==, + } + + chokidar@5.0.0: + resolution: + { + integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==, + } + engines: { node: '>= 20.19.0' } + + ci-info@4.4.0: + resolution: + { + integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==, + } + engines: { node: '>=8' } + + cli-boxes@3.0.0: + resolution: + { + integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, + } + engines: { node: '>=10' } + + clsx@2.1.1: + resolution: + { + integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, + } + engines: { node: '>=6' } + + collapse-white-space@2.1.0: + resolution: + { + integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==, + } + + comma-separated-tokens@2.0.3: + resolution: + { + integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, + } + + commander@11.1.0: + resolution: + { + integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==, + } + engines: { node: '>=16' } + + common-ancestor-path@1.0.1: + resolution: + { + integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==, + } + + cookie-es@1.2.2: + resolution: + { + integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==, + } + + cookie@1.1.1: + resolution: + { + integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==, + } + engines: { node: '>=18' } + + crossws@0.3.5: + resolution: + { + integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==, + } + + css-select@5.2.2: + resolution: + { + integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==, + } + + css-selector-parser@3.3.0: + resolution: + { + integrity: sha512-Y2asgMGFqJKF4fq4xHDSlFYIkeVfRsm69lQC1q9kbEsH5XtnINTMrweLkjYMeaUgiXBy/uvKeO/a1JHTNnmB2g==, + } + + css-tree@2.2.1: + resolution: + { + integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0' } + + css-tree@3.1.0: + resolution: + { + integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } + + css-what@6.2.2: + resolution: + { + integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==, + } + engines: { node: '>= 6' } + + cssesc@3.0.0: + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, + } + engines: { node: '>=4' } + hasBin: true + + csso@5.0.5: + resolution: + { + integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0' } + + debug@4.4.3: + resolution: + { + integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==, + } + engines: { node: '>=6.0' } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-named-character-reference@1.3.0: + resolution: + { + integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==, + } + + defu@6.1.4: + resolution: + { + integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==, + } + + dequal@2.0.3: + resolution: + { + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, + } + engines: { node: '>=6' } + + destr@2.0.5: + resolution: + { + integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==, + } + + detect-libc@2.1.2: + resolution: + { + integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==, + } + engines: { node: '>=8' } + + deterministic-object-hash@2.0.2: + resolution: + { + integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==, + } + engines: { node: '>=18' } + + devalue@5.6.2: + resolution: + { + integrity: sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg==, + } + + devlop@1.1.0: + resolution: + { + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, + } + + diff@8.0.3: + resolution: + { + integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==, + } + engines: { node: '>=0.3.1' } + + direction@2.0.1: + resolution: + { + integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==, + } + hasBin: true + + dlv@1.1.3: + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, + } + + dom-serializer@2.0.0: + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, + } + + domelementtype@2.3.0: + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, + } + + domhandler@5.0.3: + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, + } + engines: { node: '>= 4' } + + domutils@3.2.2: + resolution: + { + integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==, + } + + dset@3.1.4: + resolution: + { + integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==, + } + engines: { node: '>=4' } + + emoji-regex@10.6.0: + resolution: + { + integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==, + } + + emoji-regex@8.0.0: + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } + + entities@4.5.0: + resolution: + { + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, + } + engines: { node: '>=0.12' } + + entities@6.0.1: + resolution: + { + integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==, + } + engines: { node: '>=0.12' } + + es-module-lexer@1.7.0: + resolution: + { + integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==, + } + + esast-util-from-estree@2.0.0: + resolution: + { + integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==, + } + + esast-util-from-js@2.0.1: + resolution: + { + integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==, + } + + esbuild@0.25.12: + resolution: + { + integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==, + } + engines: { node: '>=18' } + hasBin: true + + esbuild@0.27.3: + resolution: + { + integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==, + } + engines: { node: '>=18' } + hasBin: true + + escape-string-regexp@5.0.0: + resolution: + { + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, + } + engines: { node: '>=12' } + + estree-util-attach-comments@3.0.0: + resolution: + { + integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==, + } + + estree-util-build-jsx@3.0.1: + resolution: + { + integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==, + } + + estree-util-is-identifier-name@3.0.0: + resolution: + { + integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==, + } + + estree-util-scope@1.0.0: + resolution: + { + integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==, + } + + estree-util-to-js@2.0.0: + resolution: + { + integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==, + } + + estree-util-visit@2.0.0: + resolution: + { + integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==, + } + + estree-walker@2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } + + estree-walker@3.0.3: + resolution: + { + integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, + } + + eventemitter3@5.0.4: + resolution: + { + integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==, + } + + expressive-code@0.41.6: + resolution: + { + integrity: sha512-W/5+IQbrpCIM5KGLjO35wlp1NCwDOOVQb+PAvzEoGkW1xjGM807ZGfBKptNWH6UECvt6qgmLyWolCMYKh7eQmA==, + } + + extend@3.0.2: + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, + } + + fdir@6.5.0: + resolution: + { + integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==, + } + engines: { node: '>=12.0.0' } + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + flattie@1.1.1: + resolution: + { + integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==, + } + engines: { node: '>=8' } + + fontace@0.4.1: + resolution: + { + integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==, + } + + fontkitten@1.0.2: + resolution: + { + integrity: sha512-piJxbLnkD9Xcyi7dWJRnqszEURixe7CrF/efBfbffe2DPyabmuIuqraruY8cXTs19QoM8VJzx47BDRVNXETM7Q==, + } + engines: { node: '>=20' } + + fsevents@2.3.3: + resolution: + { + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + + get-east-asian-width@1.4.0: + resolution: + { + integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==, + } + engines: { node: '>=18' } + + github-slugger@2.0.0: + resolution: + { + integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==, + } + + h3@1.15.5: + resolution: + { + integrity: sha512-xEyq3rSl+dhGX2Lm0+eFQIAzlDN6Fs0EcC4f7BNUmzaRX/PTzeuM+Tr2lHB8FoXggsQIeXLj8EDVgs5ywxyxmg==, + } + + hast-util-embedded@3.0.0: + resolution: + { + integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==, + } + + hast-util-format@1.1.0: + resolution: + { + integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==, + } + + hast-util-from-html@2.0.3: + resolution: + { + integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==, + } + + hast-util-from-parse5@8.0.3: + resolution: + { + integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==, + } + + hast-util-has-property@3.0.0: + resolution: + { + integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==, + } + + hast-util-is-body-ok-link@3.0.1: + resolution: + { + integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==, + } + + hast-util-is-element@3.0.0: + resolution: + { + integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==, + } + + hast-util-minify-whitespace@1.0.1: + resolution: + { + integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==, + } + + hast-util-parse-selector@4.0.0: + resolution: + { + integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, + } + + hast-util-phrasing@3.0.1: + resolution: + { + integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==, + } + + hast-util-raw@9.1.0: + resolution: + { + integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==, + } + + hast-util-select@6.0.4: + resolution: + { + integrity: sha512-RqGS1ZgI0MwxLaKLDxjprynNzINEkRHY2i8ln4DDjgv9ZhcYVIHN9rlpiYsqtFwrgpYU361SyWDQcGNIBVu3lw==, + } + + hast-util-to-estree@3.1.3: + resolution: + { + integrity: sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==, + } + + hast-util-to-html@9.0.5: + resolution: + { + integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==, + } + + hast-util-to-jsx-runtime@2.3.6: + resolution: + { + integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==, + } + + hast-util-to-parse5@8.0.1: + resolution: + { + integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==, + } + + hast-util-to-string@3.0.1: + resolution: + { + integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==, + } + + hast-util-to-text@4.0.2: + resolution: + { + integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==, + } + + hast-util-whitespace@3.0.0: + resolution: + { + integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, + } + + hastscript@9.0.1: + resolution: + { + integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==, + } + + html-escaper@3.0.3: + resolution: + { + integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==, + } + + html-void-elements@3.0.0: + resolution: + { + integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, + } + + html-whitespace-sensitive-tag-names@3.0.1: + resolution: + { + integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==, + } + + http-cache-semantics@4.2.0: + resolution: + { + integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==, + } + + i18next@23.16.8: + resolution: + { + integrity: sha512-06r/TitrM88Mg5FdUXAKL96dJMzgqLE5dv3ryBAra4KCwD9mJ4ndOTS95ZuymIGoE+2hzfdaMak2X11/es7ZWg==, + } + + import-meta-resolve@4.2.0: + resolution: + { + integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==, + } + + inline-style-parser@0.2.7: + resolution: + { + integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==, + } + + iron-webcrypto@1.2.1: + resolution: + { + integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==, + } + + is-alphabetical@2.0.1: + resolution: + { + integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==, + } + + is-alphanumerical@2.0.1: + resolution: + { + integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==, + } + + is-decimal@2.0.1: + resolution: + { + integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==, + } + + is-docker@3.0.0: + resolution: + { + integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + hasBin: true + + is-fullwidth-code-point@3.0.0: + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: '>=8' } + + is-hexadecimal@2.0.1: + resolution: + { + integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==, + } + + is-inside-container@1.0.0: + resolution: + { + integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==, + } + engines: { node: '>=14.16' } + hasBin: true + + is-plain-obj@4.1.0: + resolution: + { + integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, + } + engines: { node: '>=12' } + + is-wsl@3.1.1: + resolution: + { + integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==, + } + engines: { node: '>=16' } + + js-yaml@4.1.1: + resolution: + { + integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==, + } + hasBin: true + + kleur@3.0.3: + resolution: + { + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, + } + engines: { node: '>=6' } + + klona@2.0.6: + resolution: + { + integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==, + } + engines: { node: '>= 8' } + + longest-streak@3.1.0: + resolution: + { + integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, + } + + lru-cache@11.2.6: + resolution: + { + integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==, + } + engines: { node: 20 || >=22 } + + magic-string@0.30.21: + resolution: + { + integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==, + } + + magicast@0.5.2: + resolution: + { + integrity: sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==, + } + + markdown-extensions@2.0.0: + resolution: + { + integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==, + } + engines: { node: '>=16' } + + markdown-table@3.0.4: + resolution: + { + integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==, + } + + mdast-util-definitions@6.0.0: + resolution: + { + integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==, + } + + mdast-util-directive@3.1.0: + resolution: + { + integrity: sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==, + } + + mdast-util-find-and-replace@3.0.2: + resolution: + { + integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==, + } + + mdast-util-from-markdown@2.0.2: + resolution: + { + integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==, + } + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: + { + integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==, + } + + mdast-util-gfm-footnote@2.1.0: + resolution: + { + integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==, + } + + mdast-util-gfm-strikethrough@2.0.0: + resolution: + { + integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, + } + + mdast-util-gfm-table@2.0.0: + resolution: + { + integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, + } + + mdast-util-gfm-task-list-item@2.0.0: + resolution: + { + integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, + } + + mdast-util-gfm@3.1.0: + resolution: + { + integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==, + } + + mdast-util-mdx-expression@2.0.1: + resolution: + { + integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==, + } + + mdast-util-mdx-jsx@3.2.0: + resolution: + { + integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==, + } + + mdast-util-mdx@3.0.0: + resolution: + { + integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==, + } + + mdast-util-mdxjs-esm@2.0.1: + resolution: + { + integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==, + } + + mdast-util-phrasing@4.1.0: + resolution: + { + integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, + } + + mdast-util-to-hast@13.2.1: + resolution: + { + integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==, + } + + mdast-util-to-markdown@2.1.2: + resolution: + { + integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==, + } + + mdast-util-to-string@4.0.0: + resolution: + { + integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, + } + + mdn-data@2.0.28: + resolution: + { + integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==, + } + + mdn-data@2.12.2: + resolution: + { + integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==, + } + + micromark-core-commonmark@2.0.3: + resolution: + { + integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==, + } + + micromark-extension-directive@3.0.2: + resolution: + { + integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==, + } + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: + { + integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, + } + + micromark-extension-gfm-footnote@2.1.0: + resolution: + { + integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, + } + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: + { + integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, + } + + micromark-extension-gfm-table@2.1.1: + resolution: + { + integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==, + } + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: + { + integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, + } + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: + { + integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, + } + + micromark-extension-gfm@3.0.0: + resolution: + { + integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, + } + + micromark-extension-mdx-expression@3.0.1: + resolution: + { + integrity: sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==, + } + + micromark-extension-mdx-jsx@3.0.2: + resolution: + { + integrity: sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==, + } + + micromark-extension-mdx-md@2.0.0: + resolution: + { + integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==, + } + + micromark-extension-mdxjs-esm@3.0.0: + resolution: + { + integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==, + } + + micromark-extension-mdxjs@3.0.0: + resolution: + { + integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==, + } + + micromark-factory-destination@2.0.1: + resolution: + { + integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==, + } + + micromark-factory-label@2.0.1: + resolution: + { + integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==, + } + + micromark-factory-mdx-expression@2.0.3: + resolution: + { + integrity: sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==, + } + + micromark-factory-space@2.0.1: + resolution: + { + integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==, + } + + micromark-factory-title@2.0.1: + resolution: + { + integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==, + } + + micromark-factory-whitespace@2.0.1: + resolution: + { + integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==, + } + + micromark-util-character@2.1.1: + resolution: + { + integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==, + } + + micromark-util-chunked@2.0.1: + resolution: + { + integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==, + } + + micromark-util-classify-character@2.0.1: + resolution: + { + integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==, + } + + micromark-util-combine-extensions@2.0.1: + resolution: + { + integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==, + } + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: + { + integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==, + } + + micromark-util-decode-string@2.0.1: + resolution: + { + integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==, + } + + micromark-util-encode@2.0.1: + resolution: + { + integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==, + } + + micromark-util-events-to-acorn@2.0.3: + resolution: + { + integrity: sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==, + } + + micromark-util-html-tag-name@2.0.1: + resolution: + { + integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==, + } + + micromark-util-normalize-identifier@2.0.1: + resolution: + { + integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==, + } + + micromark-util-resolve-all@2.0.1: + resolution: + { + integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==, + } + + micromark-util-sanitize-uri@2.0.1: + resolution: + { + integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==, + } + + micromark-util-subtokenize@2.1.0: + resolution: + { + integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==, + } + + micromark-util-symbol@2.0.1: + resolution: + { + integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==, + } + + micromark-util-types@2.0.2: + resolution: + { + integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==, + } + + micromark@4.0.2: + resolution: + { + integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==, + } + + mrmime@2.0.1: + resolution: + { + integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==, + } + engines: { node: '>=10' } + + ms@2.1.3: + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } + + nanoid@3.3.11: + resolution: + { + integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + + neotraverse@0.6.18: + resolution: + { + integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==, + } + engines: { node: '>= 10' } + + nlcst-to-string@4.0.0: + resolution: + { + integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==, + } + + node-fetch-native@1.6.7: + resolution: + { + integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==, + } + + node-mock-http@1.0.4: + resolution: + { + integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==, + } + + normalize-path@3.0.0: + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: '>=0.10.0' } + + nth-check@2.1.1: + resolution: + { + integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, + } + + ofetch@1.5.1: + resolution: + { + integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==, + } + + ohash@2.0.11: + resolution: + { + integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==, + } + + oniguruma-parser@0.12.1: + resolution: + { + integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==, + } + + oniguruma-to-es@4.3.4: + resolution: + { + integrity: sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==, + } + + p-limit@6.2.0: + resolution: + { + integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==, + } + engines: { node: '>=18' } + + p-queue@8.1.1: + resolution: + { + integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==, + } + engines: { node: '>=18' } + + p-timeout@6.1.4: + resolution: + { + integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==, + } + engines: { node: '>=14.16' } + + package-manager-detector@1.6.0: + resolution: + { + integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==, + } + + pagefind@1.4.0: + resolution: + { + integrity: sha512-z2kY1mQlL4J8q5EIsQkLzQjilovKzfNVhX8De6oyE6uHpfFtyBaqUpcl/XzJC/4fjD8vBDyh1zolimIcVrCn9g==, + } + hasBin: true + + parse-entities@4.0.2: + resolution: + { + integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==, + } + + parse-latin@7.0.0: + resolution: + { + integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==, + } + + parse5@7.3.0: + resolution: + { + integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==, + } + + piccolore@0.1.3: + resolution: + { + integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==, + } + + picocolors@1.1.1: + resolution: + { + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, + } + + picomatch@2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: '>=8.6' } + + picomatch@4.0.3: + resolution: + { + integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, + } + engines: { node: '>=12' } + + postcss-nested@6.2.0: + resolution: + { + integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==, + } + engines: { node: '>=12.0' } + peerDependencies: + postcss: ^8.2.14 + + postcss-selector-parser@6.1.2: + resolution: + { + integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==, + } + engines: { node: '>=4' } + + postcss@8.5.6: + resolution: + { + integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==, + } + engines: { node: ^10 || ^12 || >=14 } + + prismjs@1.30.0: + resolution: + { + integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==, + } + engines: { node: '>=6' } + + prompts@2.4.2: + resolution: + { + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, + } + engines: { node: '>= 6' } + + property-information@7.1.0: + resolution: + { + integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==, + } + + radix3@1.1.2: + resolution: + { + integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==, + } + + readdirp@5.0.0: + resolution: + { + integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==, + } + engines: { node: '>= 20.19.0' } + + recma-build-jsx@1.0.0: + resolution: + { + integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==, + } + + recma-jsx@1.0.1: + resolution: + { + integrity: sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==, + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + recma-parse@1.0.0: + resolution: + { + integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==, + } + + recma-stringify@1.0.0: + resolution: + { + integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==, + } + + regex-recursion@6.0.2: + resolution: + { + integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==, + } + + regex-utilities@2.3.0: + resolution: + { + integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==, + } + + regex@6.1.0: + resolution: + { + integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==, + } + + rehype-expressive-code@0.41.6: + resolution: + { + integrity: sha512-aBMX8kxPtjmDSFUdZlAWJkMvsQ4ZMASfee90JWIAV8tweltXLzkWC3q++43ToTelI8ac5iC0B3/S/Cl4Ql1y2g==, + } + + rehype-format@5.0.1: + resolution: + { + integrity: sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==, + } + + rehype-parse@9.0.1: + resolution: + { + integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==, + } + + rehype-raw@7.0.0: + resolution: + { + integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, + } + + rehype-recma@1.0.0: + resolution: + { + integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==, + } + + rehype-stringify@10.0.1: + resolution: + { + integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==, + } + + rehype@13.0.2: + resolution: + { + integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==, + } + + remark-directive@3.0.1: + resolution: + { + integrity: sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A==, + } + + remark-gfm@4.0.1: + resolution: + { + integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==, + } + + remark-mdx@3.1.1: + resolution: + { + integrity: sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==, + } + + remark-parse@11.0.0: + resolution: + { + integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, + } + + remark-rehype@11.1.2: + resolution: + { + integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==, + } + + remark-smartypants@3.0.2: + resolution: + { + integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==, + } + engines: { node: '>=16.0.0' } + + remark-stringify@11.0.0: + resolution: + { + integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, + } + + retext-latin@4.0.0: + resolution: + { + integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==, + } + + retext-smartypants@6.2.0: + resolution: + { + integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==, + } + + retext-stringify@4.0.0: + resolution: + { + integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==, + } + + retext@9.0.0: + resolution: + { + integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==, + } + + rollup@4.57.1: + resolution: + { + integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==, + } + engines: { node: '>=18.0.0', npm: '>=8.0.0' } + hasBin: true + + sax@1.4.4: + resolution: + { + integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==, + } + engines: { node: '>=11.0.0' } + + semver@7.7.4: + resolution: + { + integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==, + } + engines: { node: '>=10' } + hasBin: true + + sharp@0.34.5: + resolution: + { + integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + + shiki@3.22.0: + resolution: + { + integrity: sha512-LBnhsoYEe0Eou4e1VgJACes+O6S6QC0w71fCSp5Oya79inkwkm15gQ1UF6VtQ8j/taMDh79hAB49WUk8ALQW3g==, + } + + sisteransi@1.0.5: + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, + } + + sitemap@8.0.2: + resolution: + { + integrity: sha512-LwktpJcyZDoa0IL6KT++lQ53pbSrx2c9ge41/SeLTyqy2XUNA6uR4+P9u5IVo5lPeL2arAcOKn1aZAxoYbCKlQ==, + } + engines: { node: '>=14.0.0', npm: '>=6.0.0' } + hasBin: true + + smol-toml@1.6.0: + resolution: + { + integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==, + } + engines: { node: '>= 18' } + + source-map-js@1.2.1: + resolution: + { + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, + } + engines: { node: '>=0.10.0' } + + source-map@0.7.6: + resolution: + { + integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==, + } + engines: { node: '>= 12' } + + space-separated-tokens@2.0.2: + resolution: + { + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, + } + + stream-replace-string@2.0.0: + resolution: + { + integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==, + } + + string-width@4.2.3: + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: '>=8' } + + string-width@7.2.0: + resolution: + { + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, + } + engines: { node: '>=18' } + + stringify-entities@4.0.4: + resolution: + { + integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, + } + + strip-ansi@6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: '>=8' } + + strip-ansi@7.1.2: + resolution: + { + integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==, + } + engines: { node: '>=12' } + + style-to-js@1.1.21: + resolution: + { + integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==, + } + + style-to-object@1.0.14: + resolution: + { + integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==, + } + + svgo@4.0.0: + resolution: + { + integrity: sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==, + } + engines: { node: '>=16' } + hasBin: true + + tiny-inflate@1.0.3: + resolution: + { + integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==, + } + + tinyexec@1.0.2: + resolution: + { + integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==, + } + engines: { node: '>=18' } + + tinyglobby@0.2.15: + resolution: + { + integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==, + } + engines: { node: '>=12.0.0' } + + trim-lines@3.0.1: + resolution: + { + integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, + } + + trough@2.2.0: + resolution: + { + integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, + } + + tsconfck@3.1.6: + resolution: + { + integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==, + } + engines: { node: ^18 || >=20 } + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tslib@2.8.1: + resolution: + { + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, + } + + type-fest@4.41.0: + resolution: + { + integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==, + } + engines: { node: '>=16' } + + typescript@5.9.3: + resolution: + { + integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==, + } + engines: { node: '>=14.17' } + hasBin: true + + ufo@1.6.3: + resolution: + { + integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==, + } + + ultrahtml@1.6.0: + resolution: + { + integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==, + } + + uncrypto@0.1.3: + resolution: + { + integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==, + } + + unified@11.0.5: + resolution: + { + integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, + } + + unifont@0.7.4: + resolution: + { + integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==, + } + + unist-util-find-after@5.0.0: + resolution: + { + integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, + } + + unist-util-is@6.0.1: + resolution: + { + integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==, + } + + unist-util-modify-children@4.0.0: + resolution: + { + integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==, + } + + unist-util-position-from-estree@2.0.0: + resolution: + { + integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==, + } + + unist-util-position@5.0.0: + resolution: + { + integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, + } + + unist-util-remove-position@5.0.0: + resolution: + { + integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, + } + + unist-util-stringify-position@4.0.0: + resolution: + { + integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, + } + + unist-util-visit-children@3.0.0: + resolution: + { + integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==, + } + + unist-util-visit-parents@6.0.2: + resolution: + { + integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==, + } + + unist-util-visit@5.1.0: + resolution: + { + integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==, + } + + unstorage@1.17.4: + resolution: + { + integrity: sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==, + } + peerDependencies: + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6 || ^7 || ^8 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/functions': ^2.2.12 || ^3.0.0 + '@vercel/kv': ^1 || ^2 || ^3 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' + idb-keyval: ^6.2.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.4 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@deno/kv': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/blob': + optional: true + '@vercel/functions': + optional: true + '@vercel/kv': + optional: true + aws4fetch: + optional: true + db0: + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + uploadthing: + optional: true + + util-deprecate@1.0.2: + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } + + vfile-location@5.0.3: + resolution: + { + integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==, + } + + vfile-message@4.0.3: + resolution: + { + integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==, + } + + vfile@6.0.3: + resolution: + { + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, + } + + vite@6.4.1: + resolution: + { + integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==, + } + engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitefu@1.1.1: + resolution: + { + integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==, + } + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 + peerDependenciesMeta: + vite: + optional: true + + web-namespaces@2.0.1: + resolution: + { + integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, + } + + which-pm-runs@1.1.0: + resolution: + { + integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, + } + engines: { node: '>=4' } + + widest-line@5.0.0: + resolution: + { + integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==, + } + engines: { node: '>=18' } + + wrap-ansi@9.0.2: + resolution: + { + integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==, + } + engines: { node: '>=18' } + + xxhash-wasm@1.1.0: + resolution: + { + integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==, + } + + yargs-parser@21.1.1: + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: '>=12' } + + yocto-queue@1.2.2: + resolution: + { + integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==, + } + engines: { node: '>=12.20' } + + yocto-spinner@0.2.3: + resolution: + { + integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==, + } + engines: { node: '>=18.19' } + + yoctocolors@2.1.2: + resolution: + { + integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==, + } + engines: { node: '>=18' } + + zod-to-json-schema@3.25.1: + resolution: + { + integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==, + } + peerDependencies: + zod: ^3.25 || ^4 + + zod-to-ts@1.2.0: + resolution: + { + integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==, + } + peerDependencies: + typescript: ^4.9.4 || ^5.0.2 + zod: ^3 + + zod@3.25.76: + resolution: + { + integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==, + } + + zwitch@2.0.4: + resolution: + { + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, + } + +snapshots: + '@astrojs/compiler@2.13.1': {} + + '@astrojs/internal-helpers@0.7.5': {} + + '@astrojs/markdown-remark@6.3.10': + dependencies: + '@astrojs/internal-helpers': 0.7.5 + '@astrojs/prism': 3.3.0 + github-slugger: 2.0.0 + hast-util-from-html: 2.0.3 + hast-util-to-text: 4.0.2 + import-meta-resolve: 4.2.0 + js-yaml: 4.1.1 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.1 + remark-gfm: 4.0.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + remark-smartypants: 3.0.2 + shiki: 3.22.0 + smol-toml: 1.6.0 + unified: 11.0.5 + unist-util-remove-position: 5.0.0 + unist-util-visit: 5.1.0 + unist-util-visit-parents: 6.0.2 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/mdx@4.3.13(astro@5.17.2(rollup@4.57.1)(typescript@5.9.3))': + dependencies: + '@astrojs/markdown-remark': 6.3.10 + '@mdx-js/mdx': 3.1.1 + acorn: 8.15.0 + astro: 5.17.2(rollup@4.57.1)(typescript@5.9.3) + es-module-lexer: 1.7.0 + estree-util-visit: 2.0.0 + hast-util-to-html: 9.0.5 + piccolore: 0.1.3 + rehype-raw: 7.0.0 + remark-gfm: 4.0.1 + remark-smartypants: 3.0.2 + source-map: 0.7.6 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/prism@3.3.0': + dependencies: + prismjs: 1.30.0 + + '@astrojs/sitemap@3.7.0': + dependencies: + sitemap: 8.0.2 + stream-replace-string: 2.0.0 + zod: 3.25.76 + + '@astrojs/starlight@0.37.6(astro@5.17.2(rollup@4.57.1)(typescript@5.9.3))': + dependencies: + '@astrojs/markdown-remark': 6.3.10 + '@astrojs/mdx': 4.3.13(astro@5.17.2(rollup@4.57.1)(typescript@5.9.3)) + '@astrojs/sitemap': 3.7.0 + '@pagefind/default-ui': 1.4.0 + '@types/hast': 3.0.4 + '@types/js-yaml': 4.0.9 + '@types/mdast': 4.0.4 + astro: 5.17.2(rollup@4.57.1)(typescript@5.9.3) + astro-expressive-code: 0.41.6(astro@5.17.2(rollup@4.57.1)(typescript@5.9.3)) + bcp-47: 2.1.0 + hast-util-from-html: 2.0.3 + hast-util-select: 6.0.4 + hast-util-to-string: 3.0.1 + hastscript: 9.0.1 + i18next: 23.16.8 + js-yaml: 4.1.1 + klona: 2.0.6 + magic-string: 0.30.21 + mdast-util-directive: 3.1.0 + mdast-util-to-markdown: 2.1.2 + mdast-util-to-string: 4.0.0 + pagefind: 1.4.0 + rehype: 13.0.2 + rehype-format: 5.0.1 + remark-directive: 3.0.1 + ultrahtml: 1.6.0 + unified: 11.0.5 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/telemetry@3.3.0': + dependencies: + ci-info: 4.4.0 + debug: 4.4.3 + dlv: 1.1.3 + dset: 3.1.4 + is-docker: 3.0.0 + is-wsl: 3.1.1 + which-pm-runs: 1.1.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.28.5': {} + + '@babel/parser@7.29.0': + dependencies: + '@babel/types': 7.29.0 + + '@babel/runtime@7.28.6': {} + + '@babel/types@7.29.0': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + + '@capsizecss/unpack@4.0.0': + dependencies: + fontkitten: 1.0.2 + + '@ctrl/tinycolor@4.2.0': {} + + '@emnapi/runtime@1.8.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/aix-ppc64@0.27.3': + optional: true + + '@esbuild/android-arm64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.27.3': + optional: true + + '@esbuild/android-arm@0.25.12': + optional: true + + '@esbuild/android-arm@0.27.3': + optional: true + + '@esbuild/android-x64@0.25.12': + optional: true + + '@esbuild/android-x64@0.27.3': + optional: true + + '@esbuild/darwin-arm64@0.25.12': + optional: true + + '@esbuild/darwin-arm64@0.27.3': + optional: true + + '@esbuild/darwin-x64@0.25.12': + optional: true + + '@esbuild/darwin-x64@0.27.3': + optional: true + + '@esbuild/freebsd-arm64@0.25.12': + optional: true + + '@esbuild/freebsd-arm64@0.27.3': + optional: true + + '@esbuild/freebsd-x64@0.25.12': + optional: true + + '@esbuild/freebsd-x64@0.27.3': + optional: true + + '@esbuild/linux-arm64@0.25.12': + optional: true + + '@esbuild/linux-arm64@0.27.3': + optional: true + + '@esbuild/linux-arm@0.25.12': + optional: true + + '@esbuild/linux-arm@0.27.3': + optional: true + + '@esbuild/linux-ia32@0.25.12': + optional: true + + '@esbuild/linux-ia32@0.27.3': + optional: true + + '@esbuild/linux-loong64@0.25.12': + optional: true + + '@esbuild/linux-loong64@0.27.3': + optional: true + + '@esbuild/linux-mips64el@0.25.12': + optional: true + + '@esbuild/linux-mips64el@0.27.3': + optional: true + + '@esbuild/linux-ppc64@0.25.12': + optional: true + + '@esbuild/linux-ppc64@0.27.3': + optional: true + + '@esbuild/linux-riscv64@0.25.12': + optional: true + + '@esbuild/linux-riscv64@0.27.3': + optional: true + + '@esbuild/linux-s390x@0.25.12': + optional: true + + '@esbuild/linux-s390x@0.27.3': + optional: true + + '@esbuild/linux-x64@0.25.12': + optional: true + + '@esbuild/linux-x64@0.27.3': + optional: true + + '@esbuild/netbsd-arm64@0.25.12': + optional: true + + '@esbuild/netbsd-arm64@0.27.3': + optional: true + + '@esbuild/netbsd-x64@0.25.12': + optional: true + + '@esbuild/netbsd-x64@0.27.3': + optional: true + + '@esbuild/openbsd-arm64@0.25.12': + optional: true + + '@esbuild/openbsd-arm64@0.27.3': + optional: true + + '@esbuild/openbsd-x64@0.25.12': + optional: true + + '@esbuild/openbsd-x64@0.27.3': + optional: true + + '@esbuild/openharmony-arm64@0.25.12': + optional: true + + '@esbuild/openharmony-arm64@0.27.3': + optional: true + + '@esbuild/sunos-x64@0.25.12': + optional: true + + '@esbuild/sunos-x64@0.27.3': + optional: true + + '@esbuild/win32-arm64@0.25.12': + optional: true + + '@esbuild/win32-arm64@0.27.3': + optional: true + + '@esbuild/win32-ia32@0.25.12': + optional: true + + '@esbuild/win32-ia32@0.27.3': + optional: true + + '@esbuild/win32-x64@0.25.12': + optional: true + + '@esbuild/win32-x64@0.27.3': + optional: true + + '@expressive-code/core@0.41.6': + dependencies: + '@ctrl/tinycolor': 4.2.0 + hast-util-select: 6.0.4 + hast-util-to-html: 9.0.5 + hast-util-to-text: 4.0.2 + hastscript: 9.0.1 + postcss: 8.5.6 + postcss-nested: 6.2.0(postcss@8.5.6) + unist-util-visit: 5.1.0 + unist-util-visit-parents: 6.0.2 + + '@expressive-code/plugin-frames@0.41.6': + dependencies: + '@expressive-code/core': 0.41.6 + + '@expressive-code/plugin-shiki@0.41.6': + dependencies: + '@expressive-code/core': 0.41.6 + shiki: 3.22.0 + + '@expressive-code/plugin-text-markers@0.41.6': + dependencies: + '@expressive-code/core': 0.41.6 + + '@img/colour@1.0.0': {} + + '@img/sharp-darwin-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.2.4 + optional: true + + '@img/sharp-darwin-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.2.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.2.4': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-riscv64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-s390x@1.2.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + optional: true + + '@img/sharp-linux-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.2.4 + optional: true + + '@img/sharp-linux-arm@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.4 + optional: true + + '@img/sharp-linux-ppc64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-ppc64': 1.2.4 + optional: true + + '@img/sharp-linux-riscv64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-riscv64': 1.2.4 + optional: true + + '@img/sharp-linux-s390x@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.2.4 + optional: true + + '@img/sharp-linux-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + optional: true + + '@img/sharp-wasm32@0.34.5': + dependencies: + '@emnapi/runtime': 1.8.1 + optional: true + + '@img/sharp-win32-arm64@0.34.5': + optional: true + + '@img/sharp-win32-ia32@0.34.5': + optional: true + + '@img/sharp-win32-x64@0.34.5': + optional: true + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@mdx-js/mdx@3.1.1': + dependencies: + '@types/estree': 1.0.8 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdx': 2.0.13 + acorn: 8.15.0 + collapse-white-space: 2.1.0 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-util-scope: 1.0.0 + estree-walker: 3.0.3 + hast-util-to-jsx-runtime: 2.3.6 + markdown-extensions: 2.0.0 + recma-build-jsx: 1.0.0 + recma-jsx: 1.0.1(acorn@8.15.0) + recma-stringify: 1.0.0 + rehype-recma: 1.0.0 + remark-mdx: 3.1.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + source-map: 0.7.6 + unified: 11.0.5 + unist-util-position-from-estree: 2.0.0 + unist-util-stringify-position: 4.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@oslojs/encoding@1.1.0': {} + + '@pagefind/darwin-arm64@1.4.0': + optional: true + + '@pagefind/darwin-x64@1.4.0': + optional: true + + '@pagefind/default-ui@1.4.0': {} + + '@pagefind/freebsd-x64@1.4.0': + optional: true + + '@pagefind/linux-arm64@1.4.0': + optional: true + + '@pagefind/linux-x64@1.4.0': + optional: true + + '@pagefind/windows-x64@1.4.0': + optional: true + + '@rollup/pluginutils@5.3.0(rollup@4.57.1)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.3 + optionalDependencies: + rollup: 4.57.1 + + '@rollup/rollup-android-arm-eabi@4.57.1': + optional: true + + '@rollup/rollup-android-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-x64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.57.1': + optional: true + + '@rollup/rollup-openbsd-x64@4.57.1': + optional: true + + '@rollup/rollup-openharmony-arm64@4.57.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.57.1': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.57.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.57.1': + optional: true + + '@shikijs/core@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + + '@shikijs/engine-javascript@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + oniguruma-to-es: 4.3.4 + + '@shikijs/engine-oniguruma@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + + '@shikijs/langs@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + + '@shikijs/themes@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + + '@shikijs/types@3.22.0': + dependencies: + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@10.0.2': {} + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.8 + + '@types/estree@1.0.8': {} + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/js-yaml@4.0.9': {} + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/mdx@2.0.13': {} + + '@types/ms@2.1.0': {} + + '@types/nlcst@2.0.3': + dependencies: + '@types/unist': 3.0.3 + + '@types/node@17.0.45': {} + + '@types/sax@1.2.7': + dependencies: + '@types/node': 17.0.45 + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@ungap/structured-clone@1.3.0': {} + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + ansi-align@3.0.1: + dependencies: + string-width: 4.2.3 + + ansi-regex@5.0.1: {} + + ansi-regex@6.2.2: {} + + ansi-styles@6.2.3: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + arg@5.0.2: {} + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + array-iterate@2.0.1: {} + + astring@1.9.0: {} + + astro-expressive-code@0.41.6(astro@5.17.2(rollup@4.57.1)(typescript@5.9.3)): + dependencies: + astro: 5.17.2(rollup@4.57.1)(typescript@5.9.3) + rehype-expressive-code: 0.41.6 + + astro@5.17.2(rollup@4.57.1)(typescript@5.9.3): + dependencies: + '@astrojs/compiler': 2.13.1 + '@astrojs/internal-helpers': 0.7.5 + '@astrojs/markdown-remark': 6.3.10 + '@astrojs/telemetry': 3.3.0 + '@capsizecss/unpack': 4.0.0 + '@oslojs/encoding': 1.1.0 + '@rollup/pluginutils': 5.3.0(rollup@4.57.1) + acorn: 8.15.0 + aria-query: 5.3.2 + axobject-query: 4.1.0 + boxen: 8.0.1 + ci-info: 4.4.0 + clsx: 2.1.1 + common-ancestor-path: 1.0.1 + cookie: 1.1.1 + cssesc: 3.0.0 + debug: 4.4.3 + deterministic-object-hash: 2.0.2 + devalue: 5.6.2 + diff: 8.0.3 + dlv: 1.1.3 + dset: 3.1.4 + es-module-lexer: 1.7.0 + esbuild: 0.27.3 + estree-walker: 3.0.3 + flattie: 1.1.1 + fontace: 0.4.1 + github-slugger: 2.0.0 + html-escaper: 3.0.3 + http-cache-semantics: 4.2.0 + import-meta-resolve: 4.2.0 + js-yaml: 4.1.1 + magic-string: 0.30.21 + magicast: 0.5.2 + mrmime: 2.0.1 + neotraverse: 0.6.18 + p-limit: 6.2.0 + p-queue: 8.1.1 + package-manager-detector: 1.6.0 + piccolore: 0.1.3 + picomatch: 4.0.3 + prompts: 2.4.2 + rehype: 13.0.2 + semver: 7.7.4 + shiki: 3.22.0 + smol-toml: 1.6.0 + svgo: 4.0.0 + tinyexec: 1.0.2 + tinyglobby: 0.2.15 + tsconfck: 3.1.6(typescript@5.9.3) + ultrahtml: 1.6.0 + unifont: 0.7.4 + unist-util-visit: 5.1.0 + unstorage: 1.17.4 + vfile: 6.0.3 + vite: 6.4.1 + vitefu: 1.1.1(vite@6.4.1) + xxhash-wasm: 1.1.0 + yargs-parser: 21.1.1 + yocto-spinner: 0.2.3 + zod: 3.25.76 + zod-to-json-schema: 3.25.1(zod@3.25.76) + zod-to-ts: 1.2.0(typescript@5.9.3)(zod@3.25.76) + optionalDependencies: + sharp: 0.34.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@types/node' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - aws4fetch + - db0 + - idb-keyval + - ioredis + - jiti + - less + - lightningcss + - rollup + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - typescript + - uploadthing + - yaml + + axobject-query@4.1.0: {} + + bail@2.0.2: {} + + base-64@1.0.0: {} + + bcp-47-match@2.0.3: {} + + bcp-47@2.1.0: + dependencies: + is-alphabetical: 2.0.1 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + + boolbase@1.0.0: {} + + boxen@8.0.1: + dependencies: + ansi-align: 3.0.1 + camelcase: 8.0.0 + chalk: 5.6.2 + cli-boxes: 3.0.0 + string-width: 7.2.0 + type-fest: 4.41.0 + widest-line: 5.0.0 + wrap-ansi: 9.0.2 + + camelcase@8.0.0: {} + + ccount@2.0.1: {} + + chalk@5.6.2: {} + + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + + character-entities@2.0.2: {} + + character-reference-invalid@2.0.1: {} + + chokidar@5.0.0: + dependencies: + readdirp: 5.0.0 + + ci-info@4.4.0: {} + + cli-boxes@3.0.0: {} + + clsx@2.1.1: {} + + collapse-white-space@2.1.0: {} + + comma-separated-tokens@2.0.3: {} + + commander@11.1.0: {} + + common-ancestor-path@1.0.1: {} + + cookie-es@1.2.2: {} + + cookie@1.1.1: {} + + crossws@0.3.5: + dependencies: + uncrypto: 0.1.3 + + css-select@5.2.2: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + + css-selector-parser@3.3.0: {} + + css-tree@2.2.1: + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.2.1 + + css-tree@3.1.0: + dependencies: + mdn-data: 2.12.2 + source-map-js: 1.2.1 + + css-what@6.2.2: {} + + cssesc@3.0.0: {} + + csso@5.0.5: + dependencies: + css-tree: 2.2.1 + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decode-named-character-reference@1.3.0: + dependencies: + character-entities: 2.0.2 + + defu@6.1.4: {} + + dequal@2.0.3: {} + + destr@2.0.5: {} + + detect-libc@2.1.2: {} + + deterministic-object-hash@2.0.2: + dependencies: + base-64: 1.0.0 + + devalue@5.6.2: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + diff@8.0.3: {} + + direction@2.0.1: {} + + dlv@1.1.3: {} + + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + + domelementtype@2.3.0: {} + + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + + dset@3.1.4: {} + + emoji-regex@10.6.0: {} + + emoji-regex@8.0.0: {} + + entities@4.5.0: {} + + entities@6.0.1: {} + + es-module-lexer@1.7.0: {} + + esast-util-from-estree@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + unist-util-position-from-estree: 2.0.0 + + esast-util-from-js@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + acorn: 8.15.0 + esast-util-from-estree: 2.0.0 + vfile-message: 4.0.3 + + esbuild@0.25.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 + + esbuild@0.27.3: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.3 + '@esbuild/android-arm': 0.27.3 + '@esbuild/android-arm64': 0.27.3 + '@esbuild/android-x64': 0.27.3 + '@esbuild/darwin-arm64': 0.27.3 + '@esbuild/darwin-x64': 0.27.3 + '@esbuild/freebsd-arm64': 0.27.3 + '@esbuild/freebsd-x64': 0.27.3 + '@esbuild/linux-arm': 0.27.3 + '@esbuild/linux-arm64': 0.27.3 + '@esbuild/linux-ia32': 0.27.3 + '@esbuild/linux-loong64': 0.27.3 + '@esbuild/linux-mips64el': 0.27.3 + '@esbuild/linux-ppc64': 0.27.3 + '@esbuild/linux-riscv64': 0.27.3 + '@esbuild/linux-s390x': 0.27.3 + '@esbuild/linux-x64': 0.27.3 + '@esbuild/netbsd-arm64': 0.27.3 + '@esbuild/netbsd-x64': 0.27.3 + '@esbuild/openbsd-arm64': 0.27.3 + '@esbuild/openbsd-x64': 0.27.3 + '@esbuild/openharmony-arm64': 0.27.3 + '@esbuild/sunos-x64': 0.27.3 + '@esbuild/win32-arm64': 0.27.3 + '@esbuild/win32-ia32': 0.27.3 + '@esbuild/win32-x64': 0.27.3 + + escape-string-regexp@5.0.0: {} + + estree-util-attach-comments@3.0.0: + dependencies: + '@types/estree': 1.0.8 + + estree-util-build-jsx@3.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-walker: 3.0.3 + + estree-util-is-identifier-name@3.0.0: {} + + estree-util-scope@1.0.0: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + + estree-util-to-js@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + astring: 1.9.0 + source-map: 0.7.6 + + estree-util-visit@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/unist': 3.0.3 + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.8 + + eventemitter3@5.0.4: {} + + expressive-code@0.41.6: + dependencies: + '@expressive-code/core': 0.41.6 + '@expressive-code/plugin-frames': 0.41.6 + '@expressive-code/plugin-shiki': 0.41.6 + '@expressive-code/plugin-text-markers': 0.41.6 + + extend@3.0.2: {} + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + flattie@1.1.1: {} + + fontace@0.4.1: + dependencies: + fontkitten: 1.0.2 + + fontkitten@1.0.2: + dependencies: + tiny-inflate: 1.0.3 + + fsevents@2.3.3: + optional: true + + get-east-asian-width@1.4.0: {} + + github-slugger@2.0.0: {} + + h3@1.15.5: + dependencies: + cookie-es: 1.2.2 + crossws: 0.3.5 + defu: 6.1.4 + destr: 2.0.5 + iron-webcrypto: 1.2.1 + node-mock-http: 1.0.4 + radix3: 1.1.2 + ufo: 1.6.3 + uncrypto: 0.1.3 + + hast-util-embedded@3.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-is-element: 3.0.0 + + hast-util-format@1.1.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-minify-whitespace: 1.0.1 + hast-util-phrasing: 3.0.1 + hast-util-whitespace: 3.0.0 + html-whitespace-sensitive-tag-names: 3.0.1 + unist-util-visit-parents: 6.0.2 + + hast-util-from-html@2.0.3: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.3 + parse5: 7.3.0 + vfile: 6.0.3 + vfile-message: 4.0.3 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.1.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + + hast-util-has-property@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-body-ok-link@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-element@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-minify-whitespace@1.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-is-element: 3.0.0 + hast-util-whitespace: 3.0.0 + unist-util-is: 6.0.1 + + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-phrasing@3.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-has-property: 3.0.0 + hast-util-is-body-ok-link: 3.0.1 + hast-util-is-element: 3.0.0 + + hast-util-raw@9.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + '@ungap/structured-clone': 1.3.0 + hast-util-from-parse5: 8.0.3 + hast-util-to-parse5: 8.0.1 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.1 + parse5: 7.3.0 + unist-util-position: 5.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-select@6.0.4: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + bcp-47-match: 2.0.3 + comma-separated-tokens: 2.0.3 + css-selector-parser: 3.3.0 + devlop: 1.1.0 + direction: 2.0.1 + hast-util-has-property: 3.0.0 + hast-util-to-string: 3.0.1 + hast-util-whitespace: 3.0.0 + nth-check: 2.1.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + unist-util-visit: 5.1.0 + zwitch: 2.0.4 + + hast-util-to-estree@3.1.3: + dependencies: + '@types/estree': 1.0.8 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-attach-comments: 3.0.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.21 + unist-util-position: 5.0.0 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + + hast-util-to-html@9.0.5: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.4 + zwitch: 2.0.4 + + hast-util-to-jsx-runtime@2.3.6: + dependencies: + '@types/estree': 1.0.8 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.21 + unist-util-position: 5.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + hast-util-to-parse5@8.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-to-string@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-to-text@4.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + hast-util-is-element: 3.0.0 + unist-util-find-after: 5.0.0 + + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + + html-escaper@3.0.3: {} + + html-void-elements@3.0.0: {} + + html-whitespace-sensitive-tag-names@3.0.1: {} + + http-cache-semantics@4.2.0: {} + + i18next@23.16.8: + dependencies: + '@babel/runtime': 7.28.6 + + import-meta-resolve@4.2.0: {} + + inline-style-parser@0.2.7: {} + + iron-webcrypto@1.2.1: {} + + is-alphabetical@2.0.1: {} + + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-decimal@2.0.1: {} + + is-docker@3.0.0: {} + + is-fullwidth-code-point@3.0.0: {} + + is-hexadecimal@2.0.1: {} + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-plain-obj@4.1.0: {} + + is-wsl@3.1.1: + dependencies: + is-inside-container: 1.0.0 + + js-yaml@4.1.1: + dependencies: + argparse: 2.0.1 + + kleur@3.0.3: {} + + klona@2.0.6: {} + + longest-streak@3.1.0: {} + + lru-cache@11.2.6: {} + + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magicast@0.5.2: + dependencies: + '@babel/parser': 7.29.0 + '@babel/types': 7.29.0 + source-map-js: 1.2.1 + + markdown-extensions@2.0.0: {} + + markdown-table@3.0.4: {} + + mdast-util-definitions@6.0.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + unist-util-visit: 5.1.0 + + mdast-util-directive@3.1.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-visit-parents: 6.0.2 + transitivePeerDependencies: + - supports-color + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.2.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.1 + + mdast-util-to-hast@13.2.1: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.1.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdn-data@2.0.28: {} + + mdn-data@2.12.2: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-directive@3.0.2: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + parse-entities: 4.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-expression@3.0.1: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + micromark-factory-mdx-expression: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-jsx@3.0.2: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + micromark-factory-mdx-expression: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + vfile-message: 4.0.3 + + micromark-extension-mdx-md@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-mdxjs-esm@3.0.0: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-position-from-estree: 2.0.0 + vfile-message: 4.0.3 + + micromark-extension-mdxjs@3.0.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + micromark-extension-mdx-expression: 3.0.1 + micromark-extension-mdx-jsx: 3.0.2 + micromark-extension-mdx-md: 2.0.0 + micromark-extension-mdxjs-esm: 3.0.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-mdx-expression@2.0.3: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-position-from-estree: 2.0.0 + vfile-message: 4.0.3 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.3.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-events-to-acorn@2.0.3: + dependencies: + '@types/estree': 1.0.8 + '@types/unist': 3.0.3 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + vfile-message: 4.0.3 + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.3 + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + mrmime@2.0.1: {} + + ms@2.1.3: {} + + nanoid@3.3.11: {} + + neotraverse@0.6.18: {} + + nlcst-to-string@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + + node-fetch-native@1.6.7: {} + + node-mock-http@1.0.4: {} + + normalize-path@3.0.0: {} + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + ofetch@1.5.1: + dependencies: + destr: 2.0.5 + node-fetch-native: 1.6.7 + ufo: 1.6.3 + + ohash@2.0.11: {} + + oniguruma-parser@0.12.1: {} + + oniguruma-to-es@4.3.4: + dependencies: + oniguruma-parser: 0.12.1 + regex: 6.1.0 + regex-recursion: 6.0.2 + + p-limit@6.2.0: + dependencies: + yocto-queue: 1.2.2 + + p-queue@8.1.1: + dependencies: + eventemitter3: 5.0.4 + p-timeout: 6.1.4 + + p-timeout@6.1.4: {} + + package-manager-detector@1.6.0: {} + + pagefind@1.4.0: + optionalDependencies: + '@pagefind/darwin-arm64': 1.4.0 + '@pagefind/darwin-x64': 1.4.0 + '@pagefind/freebsd-x64': 1.4.0 + '@pagefind/linux-arm64': 1.4.0 + '@pagefind/linux-x64': 1.4.0 + '@pagefind/windows-x64': 1.4.0 + + parse-entities@4.0.2: + dependencies: + '@types/unist': 2.0.11 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.3.0 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + + parse-latin@7.0.0: + dependencies: + '@types/nlcst': 2.0.3 + '@types/unist': 3.0.3 + nlcst-to-string: 4.0.0 + unist-util-modify-children: 4.0.0 + unist-util-visit-children: 3.0.0 + vfile: 6.0.3 + + parse5@7.3.0: + dependencies: + entities: 6.0.1 + + piccolore@0.1.3: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.3: {} + + postcss-nested@6.2.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prismjs@1.30.0: {} + + prompts@2.4.2: + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + + property-information@7.1.0: {} + + radix3@1.1.2: {} + + readdirp@5.0.0: {} + + recma-build-jsx@1.0.0: + dependencies: + '@types/estree': 1.0.8 + estree-util-build-jsx: 3.0.1 + vfile: 6.0.3 + + recma-jsx@1.0.1(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + estree-util-to-js: 2.0.0 + recma-parse: 1.0.0 + recma-stringify: 1.0.0 + unified: 11.0.5 + + recma-parse@1.0.0: + dependencies: + '@types/estree': 1.0.8 + esast-util-from-js: 2.0.1 + unified: 11.0.5 + vfile: 6.0.3 + + recma-stringify@1.0.0: + dependencies: + '@types/estree': 1.0.8 + estree-util-to-js: 2.0.0 + unified: 11.0.5 + vfile: 6.0.3 + + regex-recursion@6.0.2: + dependencies: + regex-utilities: 2.3.0 + + regex-utilities@2.3.0: {} + + regex@6.1.0: + dependencies: + regex-utilities: 2.3.0 + + rehype-expressive-code@0.41.6: + dependencies: + expressive-code: 0.41.6 + + rehype-format@5.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-format: 1.1.0 + + rehype-parse@9.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-from-html: 2.0.3 + unified: 11.0.5 + + rehype-raw@7.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.1.0 + vfile: 6.0.3 + + rehype-recma@1.0.0: + dependencies: + '@types/estree': 1.0.8 + '@types/hast': 3.0.4 + hast-util-to-estree: 3.1.3 + transitivePeerDependencies: + - supports-color + + rehype-stringify@10.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + unified: 11.0.5 + + rehype@13.0.2: + dependencies: + '@types/hast': 3.0.4 + rehype-parse: 9.0.1 + rehype-stringify: 10.0.1 + unified: 11.0.5 + + remark-directive@3.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-directive: 3.1.0 + micromark-extension-directive: 3.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-gfm@4.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.1.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-mdx@3.1.1: + dependencies: + mdast-util-mdx: 3.0.0 + micromark-extension-mdxjs: 3.0.0 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.2: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.1 + unified: 11.0.5 + vfile: 6.0.3 + + remark-smartypants@3.0.2: + dependencies: + retext: 9.0.0 + retext-smartypants: 6.2.0 + unified: 11.0.5 + unist-util-visit: 5.1.0 + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + + retext-latin@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + parse-latin: 7.0.0 + unified: 11.0.5 + + retext-smartypants@6.2.0: + dependencies: + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unist-util-visit: 5.1.0 + + retext-stringify@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unified: 11.0.5 + + retext@9.0.0: + dependencies: + '@types/nlcst': 2.0.3 + retext-latin: 4.0.0 + retext-stringify: 4.0.0 + unified: 11.0.5 + + rollup@4.57.1: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.57.1 + '@rollup/rollup-android-arm64': 4.57.1 + '@rollup/rollup-darwin-arm64': 4.57.1 + '@rollup/rollup-darwin-x64': 4.57.1 + '@rollup/rollup-freebsd-arm64': 4.57.1 + '@rollup/rollup-freebsd-x64': 4.57.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 + '@rollup/rollup-linux-arm64-musl': 4.57.1 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 + '@rollup/rollup-linux-loong64-musl': 4.57.1 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 + '@rollup/rollup-linux-x64-gnu': 4.57.1 + '@rollup/rollup-linux-x64-musl': 4.57.1 + '@rollup/rollup-openbsd-x64': 4.57.1 + '@rollup/rollup-openharmony-arm64': 4.57.1 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 + '@rollup/rollup-win32-x64-gnu': 4.57.1 + '@rollup/rollup-win32-x64-msvc': 4.57.1 + fsevents: 2.3.3 + + sax@1.4.4: {} + + semver@7.7.4: {} + + sharp@0.34.5: + dependencies: + '@img/colour': 1.0.0 + detect-libc: 2.1.2 + semver: 7.7.4 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.34.5 + '@img/sharp-darwin-x64': 0.34.5 + '@img/sharp-libvips-darwin-arm64': 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.2.4 + '@img/sharp-libvips-linux-arm': 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 + '@img/sharp-libvips-linux-x64': 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + '@img/sharp-linux-arm': 0.34.5 + '@img/sharp-linux-arm64': 0.34.5 + '@img/sharp-linux-ppc64': 0.34.5 + '@img/sharp-linux-riscv64': 0.34.5 + '@img/sharp-linux-s390x': 0.34.5 + '@img/sharp-linux-x64': 0.34.5 + '@img/sharp-linuxmusl-arm64': 0.34.5 + '@img/sharp-linuxmusl-x64': 0.34.5 + '@img/sharp-wasm32': 0.34.5 + '@img/sharp-win32-arm64': 0.34.5 + '@img/sharp-win32-ia32': 0.34.5 + '@img/sharp-win32-x64': 0.34.5 + + shiki@3.22.0: + dependencies: + '@shikijs/core': 3.22.0 + '@shikijs/engine-javascript': 3.22.0 + '@shikijs/engine-oniguruma': 3.22.0 + '@shikijs/langs': 3.22.0 + '@shikijs/themes': 3.22.0 + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + + sisteransi@1.0.5: {} + + sitemap@8.0.2: + dependencies: + '@types/node': 17.0.45 + '@types/sax': 1.2.7 + arg: 5.0.2 + sax: 1.4.4 + + smol-toml@1.6.0: {} + + source-map-js@1.2.1: {} + + source-map@0.7.6: {} + + space-separated-tokens@2.0.2: {} + + stream-replace-string@2.0.0: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.6.0 + get-east-asian-width: 1.4.0 + strip-ansi: 7.1.2 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.2: + dependencies: + ansi-regex: 6.2.2 + + style-to-js@1.1.21: + dependencies: + style-to-object: 1.0.14 + + style-to-object@1.0.14: + dependencies: + inline-style-parser: 0.2.7 + + svgo@4.0.0: + dependencies: + commander: 11.1.0 + css-select: 5.2.2 + css-tree: 3.1.0 + css-what: 6.2.2 + csso: 5.0.5 + picocolors: 1.1.1 + sax: 1.4.4 + + tiny-inflate@1.0.3: {} + + tinyexec@1.0.2: {} + + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + trim-lines@3.0.1: {} + + trough@2.2.0: {} + + tsconfck@3.1.6(typescript@5.9.3): + optionalDependencies: + typescript: 5.9.3 + + tslib@2.8.1: + optional: true + + type-fest@4.41.0: {} + + typescript@5.9.3: {} + + ufo@1.6.3: {} + + ultrahtml@1.6.0: {} + + uncrypto@0.1.3: {} + + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unifont@0.7.4: + dependencies: + css-tree: 3.1.0 + ofetch: 1.5.1 + ohash: 2.0.11 + + unist-util-find-after@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + + unist-util-is@6.0.1: + dependencies: + '@types/unist': 3.0.3 + + unist-util-modify-children@4.0.0: + dependencies: + '@types/unist': 3.0.3 + array-iterate: 2.0.1 + + unist-util-position-from-estree@2.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-remove-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-visit: 5.1.0 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-children@3.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.2: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + + unist-util-visit@5.1.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + unstorage@1.17.4: + dependencies: + anymatch: 3.1.3 + chokidar: 5.0.0 + destr: 2.0.5 + h3: 1.15.5 + lru-cache: 11.2.6 + node-fetch-native: 1.6.7 + ofetch: 1.5.1 + ufo: 1.6.3 + + util-deprecate@1.0.2: {} + + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile: 6.0.3 + + vfile-message@4.0.3: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.3 + + vite@6.4.1: + dependencies: + esbuild: 0.25.12 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.57.1 + tinyglobby: 0.2.15 + optionalDependencies: + fsevents: 2.3.3 + + vitefu@1.1.1(vite@6.4.1): + optionalDependencies: + vite: 6.4.1 + + web-namespaces@2.0.1: {} + + which-pm-runs@1.1.0: {} + + widest-line@5.0.0: + dependencies: + string-width: 7.2.0 + + wrap-ansi@9.0.2: + dependencies: + ansi-styles: 6.2.3 + string-width: 7.2.0 + strip-ansi: 7.1.2 + + xxhash-wasm@1.1.0: {} + + yargs-parser@21.1.1: {} + + yocto-queue@1.2.2: {} + + yocto-spinner@0.2.3: + dependencies: + yoctocolors: 2.1.2 + + yoctocolors@2.1.2: {} + + zod-to-json-schema@3.25.1(zod@3.25.76): + dependencies: + zod: 3.25.76 + + zod-to-ts@1.2.0(typescript@5.9.3)(zod@3.25.76): + dependencies: + typescript: 5.9.3 + zod: 3.25.76 + + zod@3.25.76: {} + + zwitch@2.0.4: {} diff --git a/docs-site/public/favicon.svg b/docs-site/public/favicon.svg new file mode 100644 index 0000000..5d935c9 --- /dev/null +++ b/docs-site/public/favicon.svg @@ -0,0 +1 @@ + diff --git a/docs-site/src/content.config.ts b/docs-site/src/content.config.ts new file mode 100644 index 0000000..514eb80 --- /dev/null +++ b/docs-site/src/content.config.ts @@ -0,0 +1,7 @@ +import { docsLoader } from '@astrojs/starlight/loaders'; +import { docsSchema } from '@astrojs/starlight/schema'; +import { defineCollection } from 'astro:content'; + +export const collections = { + docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), +}; diff --git a/docs-site/src/content/docs/api/configuration.mdx b/docs-site/src/content/docs/api/configuration.mdx new file mode 100644 index 0000000..11201bc --- /dev/null +++ b/docs-site/src/content/docs/api/configuration.mdx @@ -0,0 +1,144 @@ +--- +title: Configuration +description: All configuration options for the Comic Vine SDK client. +--- + +## ComicVineOptions + +The `ComicVine` constructor accepts a configuration object with the following options: + +```typescript +import ComicVine from 'comic-vine-sdk'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + baseUrl: 'https://comicvine.gamespot.com/api', + stores: { + /* ... */ + }, + client: { + /* ... */ + }, +}); +``` + +## Required Options + +### `apiKey` + +Your Comic Vine API key. Get one for free at [comicvine.gamespot.com/api](https://comicvine.gamespot.com/api/). + +```typescript +const client = new ComicVine({ + apiKey: 'your-api-key', +}); +``` + +## Optional Options + +### `baseUrl` + +Override the default API base URL. Useful for proxy servers, API gateways, or testing: + +```typescript +// Route through a CORS proxy for browser usage +const client = new ComicVine({ + apiKey: 'your-api-key', + baseUrl: 'https://your-proxy-server.com/api/', +}); + +// Point to a mock server for testing +const client = new ComicVine({ + apiKey: 'test-key', + baseUrl: 'http://localhost:3000/api/', +}); +``` + +### `stores` + +Configure cache, deduplication, and rate limit stores. Store implementations are provided by [`@http-client-toolkit`](https://github.com/AllyMurray/http-client-toolkit) packages: + +```typescript +import { + InMemoryCacheStore, + InMemoryDedupeStore, + InMemoryRateLimitStore, +} from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new InMemoryCacheStore({ maxItems: 1000 }), + dedupe: new InMemoryDedupeStore({ jobTimeoutMs: 300000 }), + rateLimit: new InMemoryRateLimitStore({ + defaultConfig: { limit: 100, windowMs: 60000 }, + }), + }, +}); +``` + +:::note[Need deeper store documentation?] +For store internals, custom store implementations, and advanced toolkit options, see the [HTTP Client Toolkit documentation](https://allymurray.github.io/http-client-toolkit/). +::: + +All stores are optional. You can use any combination: + +```typescript +// Only caching +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new InMemoryCacheStore({ maxItems: 1000 }), + }, + client: { + defaultCacheTTL: 300, // 5 minutes + }, +}); +``` + +### `client` + +Configure HTTP client behavior: + +```typescript +const client = new ComicVine({ + apiKey: 'your-api-key', + client: { + defaultCacheTTL: 3600, // Default cache TTL in seconds + throwOnRateLimit: true, // Throw errors on rate limit (default: true) + maxWaitTime: 60000, // Max wait time for rate limits in ms + }, +}); +``` + +| Option | Type | Default | Description | +| ------------------ | --------- | ------- | ------------------------------------------- | +| `defaultCacheTTL` | `number` | — | Default cache TTL in seconds | +| `throwOnRateLimit` | `boolean` | `true` | Throw errors when rate limited | +| `maxWaitTime` | `number` | — | Maximum time to wait when rate limited (ms) | + +## SQLite Store Configuration + +For persistent stores that survive application restarts: + +```typescript +import { + SQLiteCacheStore, + SQLiteDedupeStore, + SQLiteRateLimitStore, +} from '@http-client-toolkit/store-sqlite'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new SQLiteCacheStore({ database: './comic-vine.db' }), + dedupe: new SQLiteDedupeStore({ database: './comic-vine.db' }), + rateLimit: new SQLiteRateLimitStore({ database: './comic-vine.db' }), + }, +}); +``` + +## See Also + +- [Caching Guide](/comic-vine/guides/caching/) — Caching and deduplication details +- [Rate Limiting Guide](/comic-vine/guides/rate-limiting/) — Rate limiting strategies diff --git a/docs-site/src/content/docs/api/errors.mdx b/docs-site/src/content/docs/api/errors.mdx new file mode 100644 index 0000000..60e883d --- /dev/null +++ b/docs-site/src/content/docs/api/errors.mdx @@ -0,0 +1,121 @@ +--- +title: Errors +description: Complete reference for all error types thrown by the Comic Vine SDK. +--- + +All SDK errors extend `BaseError`, which extends `HttpClientError` from `@http-client-toolkit/core`. Every error includes a `message` and a `help` property with guidance for resolving the issue. + +## Error Classes + +### `UnauthorizedError` + +Thrown when the API key is invalid or missing. + +```typescript +import { UnauthorizedError } from 'comic-vine-sdk'; + +try { + const issue = await client.issue.retrieve(1); +} catch (error) { + if (error instanceof UnauthorizedError) { + console.error('Check your API key'); + } +} +``` + +### `ObjectNotFoundError` + +Thrown when the requested resource does not exist. + +```typescript +import { ObjectNotFoundError } from 'comic-vine-sdk'; + +try { + const issue = await client.issue.retrieve(999999); +} catch (error) { + if (error instanceof ObjectNotFoundError) { + console.error('Resource not found'); + } +} +``` + +### `FilterError` + +Thrown when the request contains invalid filter parameters. + +```typescript +import { FilterError } from 'comic-vine-sdk'; + +try { + const issues = await client.issue.list({ filter: { invalid: 'field' } }); +} catch (error) { + if (error instanceof FilterError) { + console.error('Invalid filter:', error.message); + } +} +``` + +### `GenericRequestError` + +Thrown for general API request failures. + +### `GenericError` + +Thrown for unexpected API errors that don't match a specific error type. + +### `SubscriberOnlyError` + +Thrown when accessing a resource that requires a subscriber account. + +### `UrlFormatError` + +Thrown when the constructed request URL is malformed. + +### `JsonpCallbackMissingError` + +Thrown when a JSONP callback parameter is missing from the request. + +### `OptionsValidationError` + +Thrown when the client configuration is invalid. This is a client-side validation error that occurs before any API call is made. + +```typescript +import { OptionsValidationError } from 'comic-vine-sdk'; + +try { + const client = new ComicVine({ apiKey: '' }); +} catch (error) { + if (error instanceof OptionsValidationError) { + console.error('Invalid configuration:', error.message); + } +} +``` + +## Error Hierarchy + +``` +HttpClientError (@http-client-toolkit/core) + └── BaseError + ├── UnauthorizedError + ├── ObjectNotFoundError + ├── FilterError + ├── GenericRequestError + ├── GenericError + ├── SubscriberOnlyError + ├── UrlFormatError + ├── JsonpCallbackMissingError + └── OptionsValidationError +``` + +## Common Error Properties + +| Property | Type | Description | +| --------- | -------- | -------------------------------- | +| `message` | `string` | Error description | +| `help` | `string` | Guidance for resolving the error | +| `name` | `string` | Error class name | +| `stack` | `string` | Stack trace | + +## See Also + +- [Error Handling Guide](/comic-vine/guides/error-handling/) — Patterns for handling errors diff --git a/docs-site/src/content/docs/api/resources.mdx b/docs-site/src/content/docs/api/resources.mdx new file mode 100644 index 0000000..b0a3ad1 --- /dev/null +++ b/docs-site/src/content/docs/api/resources.mdx @@ -0,0 +1,282 @@ +--- +title: Resources +description: Overview of all 19 Comic Vine API resources with links to detailed documentation. +--- + +import { Card, CardGrid, Aside } from '@astrojs/starlight/components'; + +The SDK exposes an object for each Comic Vine resource. Each object provides a `retrieve()` method for fetching a single item and a `list()` method for fetching paginated results. See the [official Comic Vine API documentation](https://comicvine.gamespot.com/api/documentation) for full endpoint details. + + + +## Characters & People + + + + Comic book characters (heroes, villains, etc.) + + [View reference](/comic-vine/api/resources/character/) + + + + Real-life creators (writers, artists, editors) + + [View reference](/comic-vine/api/resources/person/) + + + + Groups and teams of characters + + [View reference](/comic-vine/api/resources/team/) + + + + +## Comics & Publishing + + + + Individual comic book issues + + [View reference](/comic-vine/api/resources/issue/) + + + + Collected volumes / series runs + + [View reference](/comic-vine/api/resources/volume/) + + + + Publishing companies + + [View reference](/comic-vine/api/resources/publisher/) + + + + Cross-issue story arcs + + [View reference](/comic-vine/api/resources/story-arc/) + + + + +## Concepts & Lore + + + + Abstract concepts in the comic universe + + [View reference](/comic-vine/api/resources/concept/) + + + + Fictional and real-world locations + + [View reference](/comic-vine/api/resources/location/) + + + + Notable objects in the comic universe + + [View reference](/comic-vine/api/resources/thing/) + + + + Character origin types (Human, Alien, Robot, etc.) + + [View reference](/comic-vine/api/resources/origin/) + + + + Super powers and abilities + + [View reference](/comic-vine/api/resources/power/) + + + + +## Media + + + + Comic book movies + + [View reference](/comic-vine/api/resources/movie/) + + + + TV series + + [View reference](/comic-vine/api/resources/series/) + + + + Individual TV episodes + + [View reference](/comic-vine/api/resources/episode/) + + + + Comic Vine video content + + [View reference](/comic-vine/api/resources/video/) + + + + Video category classifications + + [View reference](/comic-vine/api/resources/video-category/) + + + + Video type classifications + + [View reference](/comic-vine/api/resources/video-type/) + + + + +## Other + + + + Promotional content on Comic Vine + + [View reference](/comic-vine/api/resources/promo/) + + + + +## Common Types + +The following shared types are referenced across multiple resource response interfaces. They represent recurring structures in the Comic Vine API. + +### `ApiResource` + +A minimal reference to another API resource. + +```typescript +interface ApiResource { + apiDetailUrl: string; + id: number; + name: string | null; +} +``` + +### `SiteResource` + +Extends `ApiResource` with a link to the Comic Vine website. + +```typescript +interface SiteResource extends ApiResource { + siteDetailUrl: string; +} +``` + +### `IssueApiResource` + +An issue reference that includes the issue number. + +```typescript +interface IssueApiResource extends ApiResource { + issueNumber: string; +} +``` + +### `IssueSiteResource` + +An issue reference with both site URL and issue number. + +```typescript +interface IssueSiteResource extends SiteResource { + issueNumber: string; +} +``` + +### `SiteResourceWithCount` + +A site resource with a count property (used in volume/series credits). + +```typescript +interface SiteResourceWithCount extends SiteResource { + count: string; +} +``` + +### `EpisodeApiResource` + +An episode reference that includes the episode number. + +```typescript +interface EpisodeApiResource extends ApiResource { + episodeNumber: string; +} +``` + +### `EpisodeSiteResource` + +An episode reference with both site URL and episode number. + +```typescript +interface EpisodeSiteResource extends SiteResource { + episodeNumber: string; +} +``` + +### `PersonCreditSiteResource` + +A person credit reference that includes their role. + +```typescript +interface PersonCreditSiteResource extends SiteResource { + role: string; +} +``` + +### `Death` + +Represents a death date with timezone information. + +```typescript +interface Death { + date: string; + timezoneType: number; + timezone: string; +} +``` + +### `AssociatedImage` + +An additional image associated with a resource. + +```typescript +interface AssociatedImage { + caption: null; + id: number; + imageTags: string; + originalUrl: string; +} +``` + +### `Image` + +The standard image object returned for most resources, containing URLs at various sizes. + +```typescript +interface Image { + iconUrl: string; + mediumUrl: string; + screenUrl: string; + screenLargeUrl: string; + smallUrl: string; + superUrl: string; + thumbUrl: string; + tinyUrl: string; + originalUrl: string; + imageTags: string; +} +``` diff --git a/docs-site/src/content/docs/api/resources/character.mdx b/docs-site/src/content/docs/api/resources/character.mdx new file mode 100644 index 0000000..e72eed3 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/character.mdx @@ -0,0 +1,180 @@ +--- +title: Character +description: API reference for the Character resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book character data from the Comic Vine API. Official API docs: [`/character`](https://comicvine.gamespot.com/api/documentation#toc-0-2) | [`/characters`](https://comicvine.gamespot.com/api/documentation#toc-0-3) + +```typescript +const character = client.character; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the character | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const character = await client.character.retrieve(1699); + + // With field selection + const character = await client.character.retrieve(1699, { + fieldList: ['id', 'name', 'realName', 'publisher'], + }); + ``` + + + + ```typescript + interface CharacterDetails { + /** List of aliases the character is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the character detail resource. */ + apiDetailUrl: string; + /** A date, if one exists, that the character was born on. Not an origin date. */ + birth: null | string; + /** List of characters that are enemies with this character. */ + characterEnemies: Array; + /** List of characters that are friends with this character. */ + characterFriends: Array; + /** Number of issues this character appears in. */ + countOfIssueAppearances: number; + /** List of the real life people who created this character. */ + creators: Array; + /** Date the character was added to Comic Vine. */ + dateAdded: Date; + /** Date the character was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the character. */ + deck: null | string; + /** Description of the character. */ + description: null | string; + /** Issue where the character made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Gender of the character. Available options are: Male, Female, Other */ + gender: number; + /** Unique ID of the character. */ + id: number; + /** Main image of the character. */ + image: Image; + issueCredits: Array; + /** List of issues this character died in. */ + issuesDiedIn: Array; + /** Movies the character was in. */ + movies: Array; + /** Name of the character. */ + name: string; + /** The origin of the character. Human, Alien, Robot ...etc */ + origin: ApiResource | null; + /** List of super powers a character has. */ + powers: Array; + /** The primary publisher a character is attached to. */ + publisher: ApiResource; + /** Real name of the character. */ + realName: null | string; + /** URL pointing to the character on Giant Bomb. */ + siteDetailUrl: string; + storyArcCredits: Array; + /** List of teams that are enemies of this character. */ + teamEnemies: Array; + /** List of teams that are friends with this character. */ + teamFriends: Array; + /** List of teams this character is a member of. */ + teams: Array; + volumeCredits: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const characters = await client.character.list({ + filter: { name: 'Batman' }, + }); + + // With auto pagination + for await (const character of client.character.list()) { + console.log(character.name); + } + ``` + + + + ```typescript + interface CharacterListItem { + /** List of aliases the character is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the character detail resource. */ + apiDetailUrl: string; + /** A date, if one exists, that the character was born on. Not an origin date. */ + birth: null | string; + /** Number of issues this character appears in. */ + countOfIssueAppearances: number; + /** Date the character was added to Comic Vine. */ + dateAdded: Date; + /** Date the character was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the character. */ + deck: null | string; + /** Description of the character. */ + description: null | string; + /** Issue where the character made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Gender of the character. Available options are: Male, Female, Other */ + gender: number; + /** Unique ID of the character. */ + id: number; + /** Main image of the character. */ + image: Image; + /** Name of the character. */ + name: string; + /** The origin of the character. Human, Alien, Robot ...etc */ + origin: ApiResource | null; + /** The primary publisher a character is attached to. */ + publisher: ApiResource; + /** Real name of the character. */ + realName: null | string; + /** URL pointing to the character on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/concept.mdx b/docs-site/src/content/docs/api/resources/concept.mdx new file mode 100644 index 0000000..e5523d4 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/concept.mdx @@ -0,0 +1,143 @@ +--- +title: Concept +description: API reference for the Concept resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book concept data from the Comic Vine API. Official API docs: [`/concept`](https://comicvine.gamespot.com/api/documentation#toc-0-6) | [`/concepts`](https://comicvine.gamespot.com/api/documentation#toc-0-7) + +```typescript +const concept = client.concept; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the concept | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const concept = await client.concept.retrieve(12345); + + // With field selection + const concept = await client.concept.retrieve(12345, { + fieldList: ['id', 'name', 'deck'], + }); + ``` + + + + ```typescript + interface ConceptDetails { + /** List of aliases the concept is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the concept detail resource. */ + apiDetailUrl: string; + countOfIsssueAppearances: number; + /** Date the concept was added to Comic Vine. */ + dateAdded: Date; + /** Date the concept was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the concept. */ + deck: string; + /** Description of the concept. */ + description: string; + /** Issue where the concept made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Unique ID of the concept. */ + id: number; + /** Main image of the concept. */ + image: Image; + issueCredits: Array; + /** Movies the concept was in. */ + movies: Array; + /** Name of the concept. */ + name: string; + /** URL pointing to the concept on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this concept appeared in comics. */ + startYear: string; + volumeCredits: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const concepts = await client.concept.list(); + + // With auto pagination + for await (const concept of client.concept.list()) { + console.log(concept.name); + } + ``` + + + + ```typescript + interface ConceptListItem { + /** List of aliases the concept is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the concept detail resource. */ + apiDetailUrl: string; + countOfIsssueAppearances: number; + /** Date the concept was added to Comic Vine. */ + dateAdded: Date; + /** Date the concept was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the concept. */ + deck: string; + /** Description of the concept. */ + description: null | string; + /** Issue where the concept made its first appearance. */ + firstAppearedInIssue: IssueApiResource | null; + /** Unique ID of the concept. */ + id: number; + /** Main image of the concept. */ + image: Image; + /** Name of the concept. */ + name: string; + /** URL pointing to the concept on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this concept appeared in comics. */ + startYear: null | string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/episode.mdx b/docs-site/src/content/docs/api/resources/episode.mdx new file mode 100644 index 0000000..51eb145 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/episode.mdx @@ -0,0 +1,161 @@ +--- +title: Episode +description: API reference for the Episode resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access TV episode data from the Comic Vine API. Official API docs: [`/episode`](https://comicvine.gamespot.com/api/documentation#toc-0-8) | [`/episodes`](https://comicvine.gamespot.com/api/documentation#toc-0-9) + +```typescript +const episode = client.episode; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the episode | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const episode = await client.episode.retrieve(12345); + + // With field selection + const episode = await client.episode.retrieve(12345, { + fieldList: ['id', 'name', 'episodeNumber', 'airDate'], + }); + ``` + + + + ```typescript + interface EpisodeDetails { + /** The air date of the episode. */ + airDate: Date | null; + /** List of aliases the episode is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the episode detail resource. */ + apiDetailUrl: string; + characterCredits: Array; + characterDiedIn: Array; + conceptCredits: Array; + /** Date the episode was added to Comic Vine. */ + dateAdded: Date; + /** Date the episode was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the episode. */ + deck: null | string; + /** Description of the episode. */ + description: null | string; + /** The number assigned to the episode within a series. */ + episodeNumber: string; + /** A list of characters in which this episode is the first appearance of the character. */ + firstAppearanceCharacters: null | unknown; + /** A list of concepts in which this episode is the first appearance of the concept. */ + firstAppearanceConcepts: null | unknown; + /** A list of locations in which this episode is the first appearance of the location. */ + firstAppearanceLocations: null | unknown; + /** A list of things in which this episode is the first appearance of the object. */ + firstAppearanceObjects: null | unknown; + /** A list of storyarcs in which this episode is the first appearance of the story arc. */ + firstAppearanceStoryarcs: null | unknown; + /** A list of teams in which this episode is the first appearance of the team. */ + firstAppearanceTeams: null | unknown; + hasStaffReview: null | false | SiteResource; + /** Unique ID of the episode. */ + id: number; + /** Main image of the episode. */ + image: Image; + locationCredits: Array; + /** Name of the episode. */ + name: string; + objectCredits: Array; + /** The series the episode belongs to. */ + series: SiteResource; + /** URL pointing to the episode on Giant Bomb. */ + siteDetailUrl: string; + storyArcCredits: Array; + teamCredits: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const episodes = await client.episode.list(); + + // With auto pagination + for await (const episode of client.episode.list()) { + console.log(episode.name); + } + ``` + + + + ```typescript + interface EpisodeListItem { + /** The air date of the episode. */ + airDate: Date | null; + /** List of aliases the episode is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the episode detail resource. */ + apiDetailUrl: string; + /** Date the episode was added to Comic Vine. */ + dateAdded: Date; + /** Date the episode was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the episode. */ + deck: null | string; + /** Description of the episode. */ + description: null | string; + episodeNumber: string; + hasStaffReview: null | false | SiteResource; + /** Unique ID of the episode. */ + id: number; + /** Main image of the episode. */ + image: Image; + /** Name of the episode. */ + name: string; + /** The series the episode belongs to. */ + series: SiteResource; + /** URL pointing to the episode on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/issue.mdx b/docs-site/src/content/docs/api/resources/issue.mdx new file mode 100644 index 0000000..9d2578a --- /dev/null +++ b/docs-site/src/content/docs/api/resources/issue.mdx @@ -0,0 +1,173 @@ +--- +title: Issue +description: API reference for the Issue resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book issue data from the Comic Vine API. Official API docs: [`/issue`](https://comicvine.gamespot.com/api/documentation#toc-0-10) | [`/issues`](https://comicvine.gamespot.com/api/documentation#toc-0-11) + +```typescript +const issue = client.issue; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the issue | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const issue = await client.issue.retrieve(6); + + // With field selection + const issue = await client.issue.retrieve(6, { + fieldList: ['id', 'name', 'issueNumber', 'coverDate'], + }); + ``` + + + + ```typescript + interface IssueDetails { + /** List of aliases the issue is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the issue detail resource. */ + apiDetailUrl: string; + associatedImages: Array; + characterCredits: Array; + characterDiedIn: Array; + conceptCredits: Array; + /** The publish date printed on the cover of an issue. */ + coverDate: Date; + /** Date the issue was added to Comic Vine. */ + dateAdded: Date; + /** Date the issue was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the issue. */ + deck: null | string; + /** Description of the issue. */ + description: null | string; + /** A list of characters in which this issue is the first appearance of the character. */ + firstAppearanceCharacters: null | unknown; + /** A list of concepts in which this issue is the first appearance of the concept. */ + firstAppearanceConcepts: null | unknown; + /** A list of locations in which this issue is the first appearance of the location. */ + firstAppearanceLocations: null | unknown; + /** A list of things in which this issue is the first appearance of the object. */ + firstAppearanceObjects: null | unknown; + /** A list of storyarcs in which this issue is the first appearance of the story arc. */ + firstAppearanceStoryarcs: null | unknown; + /** A list of teams in which this issue is the first appearance of the team. */ + firstAppearanceTeams: null | unknown; + hasStaffReview: null | false | SiteResource; + /** Unique ID of the issue. */ + id: number; + /** Main image of the issue. */ + image: Image; + /** The number assigned to the issue within the volume set. */ + issueNumber: string; + locationCredits: Array; + /** Name of the issue. */ + name: null | string; + objectCredits: Array; + personCredits: Array; + /** URL pointing to the issue on Giant Bomb. */ + siteDetailUrl: string; + /** The date the issue was first sold in stores. */ + storeDate: Date | null; + storyArcCredits: Array; + teamCredits: Array; + teamDisbandedIn: Array; + /** The volume this issue is a part of. */ + volume: SiteResource; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const issues = await client.issue.list({ + filter: { volume: 796 }, + limit: 50, + }); + + // With auto pagination + for await (const issue of client.issue.list({ filter: { volume: 796 } })) { + console.log(issue.name); + } + ``` + + + + ```typescript + interface IssueListItem { + /** List of aliases the issue is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the issue detail resource. */ + apiDetailUrl: string; + associatedImages: Array; + /** The publish date printed on the cover of an issue. */ + coverDate: Date; + /** Date the issue was added to Comic Vine. */ + dateAdded: Date; + /** Date the issue was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the issue. */ + deck: null | unknown; + /** Description of the issue. */ + description: null | string; + hasStaffReview: null | false | SiteResource; + /** Unique ID of the issue. */ + id: number; + /** Main image of the issue. */ + image: Image; + /** The number assigned to the issue within the volume set. */ + issueNumber: string; + /** Name of the issue. */ + name: null | string; + /** URL pointing to the issue on Giant Bomb. */ + siteDetailUrl: string; + /** The date the issue was first sold in stores. */ + storeDate: Date | null; + /** The volume this issue is a part of. */ + volume: SiteResource; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/location.mdx b/docs-site/src/content/docs/api/resources/location.mdx new file mode 100644 index 0000000..93b9ef5 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/location.mdx @@ -0,0 +1,146 @@ +--- +title: Location +description: API reference for the Location resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book location data from the Comic Vine API. Official API docs: [`/location`](https://comicvine.gamespot.com/api/documentation#toc-0-12) | [`/locations`](https://comicvine.gamespot.com/api/documentation#toc-0-13) + +```typescript +const location = client.location; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the location | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const location = await client.location.retrieve(12345); + + // With field selection + const location = await client.location.retrieve(12345, { + fieldList: ['id', 'name', 'deck'], + }); + ``` + + + + ```typescript + interface LocationDetails { + /** List of aliases the location is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the location detail resource. */ + apiDetailUrl: string; + /** Number of issues this location appears in. */ + countOfIssueAppearances: number; + /** Date the location was added to Comic Vine. */ + dateAdded: Date; + /** Date the location was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the location. */ + deck: string; + /** Description of the location. */ + description: string; + /** Issue where the location made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Unique ID of the location. */ + id: number; + /** Main image of the location. */ + image: Image; + issueCredits: Array; + /** Movies the location was in. */ + movies: Array; + /** Name of the location. */ + name: string; + /** URL pointing to the location on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this location appeared in comics. */ + startYear: string; + storyArcCredits: Array; + volumeCredits: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const locations = await client.location.list(); + + // With auto pagination + for await (const location of client.location.list()) { + console.log(location.name); + } + ``` + + + + ```typescript + interface LocationListItem { + /** List of aliases the location is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the location detail resource. */ + apiDetailUrl: string; + /** Number of issues this location appears in. */ + countOfIssueAppearances: number; + /** Date the location was added to Comic Vine. */ + dateAdded: Date; + /** Date the location was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the location. */ + deck: string; + /** Description of the location. */ + description: null | string; + /** Issue where the location made its first appearance. */ + firstAppearedInIssue: IssueApiResource | null; + /** Unique ID of the location. */ + id: number; + /** Main image of the location. */ + image: Image; + /** Name of the location. */ + name: string; + /** URL pointing to the location on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this location appeared in comics. */ + startYear: null | string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/movie.mdx b/docs-site/src/content/docs/api/resources/movie.mdx new file mode 100644 index 0000000..5394f19 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/movie.mdx @@ -0,0 +1,174 @@ +--- +title: Movie +description: API reference for the Movie resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book movie data from the Comic Vine API. Official API docs: [`/movie`](https://comicvine.gamespot.com/api/documentation#toc-0-14) | [`/movies`](https://comicvine.gamespot.com/api/documentation#toc-0-15) + +```typescript +const movie = client.movie; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the movie | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const movie = await client.movie.retrieve(12345); + + // With field selection + const movie = await client.movie.retrieve(12345, { + fieldList: ['id', 'name', 'releaseDate', 'rating'], + }); + ``` + + + + ```typescript + interface MovieDetails { + /** URL pointing to the movie detail resource. */ + apiDetailUrl: string; + /** The total revenue made in the box offices for this movie. */ + boxOfficeRevenue: null | string; + /** The cost of making this movie. */ + budget: string; + /** Characters related to the movie. */ + characters: Array; + /** Concepts related to the movie. */ + concepts: Array; + /** Date the movie was added to Comic Vine. */ + dateAdded: Date; + /** Date the movie was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the movie. */ + deck: string; + /** Description of the movie. */ + description: null | string; + hasStaffReview: null | false | SiteResource; + /** Unique ID of the movie. */ + id: number; + /** Main image of the movie. */ + image: Image; + /** Locations related to the movie. */ + locations: Array; + /** Name of the movie. */ + name: string; + objects: Array; + /** The producers of this movie. */ + producers: Array; + /** The rating of this movie. */ + rating: string; + /** Date of the movie. */ + releaseDate: Date; + /** The length of this movie. */ + runtime: string; + /** URL pointing to the movie on Giant Bomb. */ + siteDetailUrl: string; + studios: Array; + /** List of teams this movie is a member of. */ + teams: Array; + /** Total revenue generated by this movie. */ + totalRevenue: string; + /** Writers for this movie. */ + writers: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const movies = await client.movie.list(); + + // With auto pagination + for await (const movie of client.movie.list()) { + console.log(movie.name); + } + ``` + + + + ```typescript + interface MovieListItem { + /** URL pointing to the movie detail resource. */ + apiDetailUrl: string; + /** The total revenue made in the box offices for this movie. */ + boxOfficeRevenue: null | string; + /** The cost of making this movie. */ + budget: null | string; + /** Date the movie was added to Comic Vine. */ + dateAdded: Date; + /** Date the movie was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the movie. */ + deck: null | string; + /** Description of the movie. */ + description: null | string; + hasStaffReview: null | false | SiteResource; + /** Unique ID of the movie. */ + id: number; + /** Main image of the movie. */ + image: Image; + /** Name of the movie. */ + name: string; + /** The producers of this movie. */ + producers: Array; + /** The rating of this movie. */ + rating: null | string; + /** Date of the movie. */ + releaseDate: Date; + /** The length of this movie. */ + runtime: string; + /** URL pointing to the movie on Giant Bomb. */ + siteDetailUrl: string; + studios: Array; + /** Total revenue generated by this movie. */ + totalRevenue: null | string; + /** Writers for this movie. */ + writers: Array; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: + +:::caution[Omitted API fields] +The `distributor` field from the Comic Vine API is not included in this SDK. An exhaustive scan of all 2,982 movies in the API confirmed this field is always `null` and has no discernible type. +::: diff --git a/docs-site/src/content/docs/api/resources/origin.mdx b/docs-site/src/content/docs/api/resources/origin.mdx new file mode 100644 index 0000000..19d78e0 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/origin.mdx @@ -0,0 +1,112 @@ +--- +title: Origin +description: API reference for the Origin resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access character origin type data from the Comic Vine API (Human, Alien, Robot, etc.). Official API docs: [`/origin`](https://comicvine.gamespot.com/api/documentation#toc-0-18) | [`/origins`](https://comicvine.gamespot.com/api/documentation#toc-0-19) + +```typescript +const origin = client.origin; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the origin | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const origin = await client.origin.retrieve(1); + + // With field selection + const origin = await client.origin.retrieve(1, { + fieldList: ['id', 'name'], + }); + ``` + + + + ```typescript + interface OriginDetails { + /** URL pointing to the origin detail resource. */ + apiDetailUrl: string; + characters: Array; + characterSet: null; + /** Unique ID of the origin. */ + id: number; + /** Name of the origin. */ + name: string; + profiles: Array; + /** URL pointing to the origin on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const origins = await client.origin.list(); + + // With auto pagination + for await (const origin of client.origin.list()) { + console.log(origin.name); + } + ``` + + + + ```typescript + interface OriginListItem { + /** URL pointing to the origin detail resource. */ + apiDetailUrl: string; + /** Unique ID of the origin. */ + id: number; + /** Name of the origin. */ + name: string; + /** URL pointing to the origin on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: + +:::caution[Always-null field] +The `characterSet` field is always `null` across the entire origin dataset (a closed set of 10 entries). The `characters` property serves the purpose of listing characters with a given origin. +::: diff --git a/docs-site/src/content/docs/api/resources/person.mdx b/docs-site/src/content/docs/api/resources/person.mdx new file mode 100644 index 0000000..4a25b14 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/person.mdx @@ -0,0 +1,165 @@ +--- +title: Person +description: API reference for the Person resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access real-life creator data (writers, artists, editors) from the Comic Vine API. Official API docs: [`/person`](https://comicvine.gamespot.com/api/documentation#toc-0-20) | [`/people`](https://comicvine.gamespot.com/api/documentation#toc-0-21) + +```typescript +const person = client.person; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the person | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const person = await client.person.retrieve(12345); + + // With field selection + const person = await client.person.retrieve(12345, { + fieldList: ['id', 'name', 'country', 'birth'], + }); + ``` + + + + ```typescript + interface PersonDetails { + /** List of aliases the person is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the person detail resource. */ + apiDetailUrl: string; + /** A date, if one exists, that the person was born on. Not an origin date. */ + birth: Date | null; + countOfIsssueAppearances: unknown; + /** Country the person resides in. */ + country: null | string; + /** Comic characters this person created. */ + createdCharacters: Array; + /** Date the person was added to Comic Vine. */ + dateAdded: Date; + /** Date the person was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Date this person died on. */ + death: Death | null; + /** Brief summary of the person. */ + deck: null | string; + /** Description of the person. */ + description: null | string; + /** The email of this person. */ + email: null | string; + /** Gender of the person. Available options are: Male, Female, Other */ + gender: number; + /** City or town the person resides in. */ + hometown: null | string; + /** Unique ID of the person. */ + id: number; + /** Main image of the person. */ + image: Image; + /** List of issues this person appears in. */ + issues: Array; + /** Name of the person. */ + name: string; + /** URL pointing to the person on Giant Bomb. */ + siteDetailUrl: string; + storyArcCredits: Array; + volumeCredits: Array; + /** URL to the person website. */ + website: null | string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const people = await client.person.list(); + + // With auto pagination + for await (const person of client.person.list()) { + console.log(person.name); + } + ``` + + + + ```typescript + interface PersonListItem { + /** List of aliases the person is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the person detail resource. */ + apiDetailUrl: string; + /** A date, if one exists, that the person was born on. Not an origin date. */ + birth: Date | null; + countOfIsssueAppearances: unknown; + /** Country the person resides in. */ + country: null | string; + /** Date the person was added to Comic Vine. */ + dateAdded: Date; + /** Date the person was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Date this person died on. */ + death: Death | null; + /** Brief summary of the person. */ + deck: null | string; + /** Description of the person. */ + description: null | string; + /** The email of this person. */ + email: null | string; + /** Gender of the person. Available options are: Male, Female, Other */ + gender: number; + /** City or town the person resides in. */ + hometown: null | string; + /** Unique ID of the person. */ + id: number; + /** Main image of the person. */ + image: { [key: string]: null | string }; + /** Name of the person. */ + name: string; + /** URL pointing to the person on Giant Bomb. */ + siteDetailUrl: string; + /** URL to the person website. */ + website: null | string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/power.mdx b/docs-site/src/content/docs/api/resources/power.mdx new file mode 100644 index 0000000..bb8cec4 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/power.mdx @@ -0,0 +1,123 @@ +--- +title: Power +description: API reference for the Power resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access super power and ability data from the Comic Vine API. Official API docs: [`/power`](https://comicvine.gamespot.com/api/documentation#toc-0-22) | [`/powers`](https://comicvine.gamespot.com/api/documentation#toc-0-23) + +```typescript +const power = client.power; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the power | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const power = await client.power.retrieve(12345); + + // With field selection + const power = await client.power.retrieve(12345, { + fieldList: ['id', 'name'], + }); + ``` + + + + ```typescript + interface PowerDetails { + /** List of aliases the power is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the power detail resource. */ + apiDetailUrl: string; + /** Characters related to the power. */ + characters: Array; + /** Date the power was added to Comic Vine. */ + dateAdded: Date; + /** Date the power was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Description of the power. */ + description: null | string; + /** Unique ID of the power. */ + id: number; + /** Name of the power. */ + name: string; + /** URL pointing to the power on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const powers = await client.power.list(); + + // With auto pagination + for await (const power of client.power.list()) { + console.log(power.name); + } + ``` + + + + ```typescript + interface PowerListItem { + /** List of aliases the power is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the power detail resource. */ + apiDetailUrl: string; + /** Date the power was added to Comic Vine. */ + dateAdded: Date; + /** Date the power was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Description of the power. */ + description: null | string; + /** Unique ID of the power. */ + id: number; + /** Name of the power. */ + name: string; + /** URL pointing to the power on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/promo.mdx b/docs-site/src/content/docs/api/resources/promo.mdx new file mode 100644 index 0000000..fe86614 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/promo.mdx @@ -0,0 +1,127 @@ +--- +title: Promo +description: API reference for the Promo resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access promotional content data from the Comic Vine API. Official API docs: [`/promo`](https://comicvine.gamespot.com/api/documentation#toc-0-24) | [`/promos`](https://comicvine.gamespot.com/api/documentation#toc-0-25) + +```typescript +const promo = client.promo; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the promo | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const promo = await client.promo.retrieve(12345); + + // With field selection + const promo = await client.promo.retrieve(12345, { + fieldList: ['id', 'name', 'deck'], + }); + ``` + + + + ```typescript + interface PromoDetails { + /** URL pointing to the promo detail resource. */ + apiDetailUrl: string; + /** Date the promo was added to Comic Vine. */ + dateAdded: Date; + /** Brief summary of the promo. */ + deck: string; + guid: string; + /** Unique ID of the promo. */ + id: number; + /** Main image of the promo. */ + image: Image; + /** The link that promo points to. */ + link: string; + /** Name of the promo. */ + name: string; + /** The type of resource the promo is pointing towards. */ + resourceType: string; + /** Author of the promo. */ + user: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const promos = await client.promo.list(); + + // With auto pagination + for await (const promo of client.promo.list()) { + console.log(promo.name); + } + ``` + + + + ```typescript + interface PromoListItem { + /** URL pointing to the promo detail resource. */ + apiDetailUrl: string; + /** Date the promo was added to Comic Vine. */ + dateAdded: Date; + /** Brief summary of the promo. */ + deck: string; + guid: string; + /** Unique ID of the promo. */ + id: number; + /** Main image of the promo. */ + image: Image; + /** The link that promo points to. */ + link: string; + /** Name of the promo. */ + name: string; + /** The type of resource the promo is pointing towards. */ + resourceType: string; + /** Author of the promo. */ + user: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/publisher.mdx b/docs-site/src/content/docs/api/resources/publisher.mdx new file mode 100644 index 0000000..1010d15 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/publisher.mdx @@ -0,0 +1,157 @@ +--- +title: Publisher +description: API reference for the Publisher resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access publishing company data from the Comic Vine API. Official API docs: [`/publisher`](https://comicvine.gamespot.com/api/documentation#toc-0-26) | [`/publishers`](https://comicvine.gamespot.com/api/documentation#toc-0-27) + +```typescript +const publisher = client.publisher; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the publisher | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const publisher = await client.publisher.retrieve(31); + + // With field selection + const publisher = await client.publisher.retrieve(31, { + fieldList: ['id', 'name', 'locationCity', 'locationState'], + }); + ``` + + + + ```typescript + interface PublisherDetails { + /** List of aliases the publisher is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the publisher detail resource. */ + apiDetailUrl: string; + /** Characters related to the publisher. */ + characters: Array; + /** Date the publisher was added to Comic Vine. */ + dateAdded: Date; + /** Date the publisher was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the publisher. */ + deck: null | string; + /** Description of the publisher. */ + description: null | string; + /** Unique ID of the publisher. */ + id: number; + /** Main image of the publisher. */ + image: Image; + /** Street address of the publisher. */ + locationAddress: null | string; + /** City the publisher resides in. */ + locationCity: null | string; + /** State the publisher resides in. */ + locationState: null | string; + /** Name of the publisher. */ + name: string; + /** URL pointing to the publisher on Giant Bomb. */ + siteDetailUrl: string; + /** List of story arcs tied to this publisher. */ + storyArcs: Array; + /** List of teams this publisher is a member of. */ + teams: Array; + /** List of volumes this publisher has put out. */ + volumes: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const publishers = await client.publisher.list(); + + // With auto pagination + for await (const publisher of client.publisher.list()) { + console.log(publisher.name); + } + ``` + + + + ```typescript + interface PublisherListItem { + /** List of aliases the publisher is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the publisher detail resource. */ + apiDetailUrl: string; + /** Date the publisher was added to Comic Vine. */ + dateAdded: Date; + /** Date the publisher was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the publisher. */ + deck: null | string; + /** Description of the publisher. */ + description: null | string; + /** Unique ID of the publisher. */ + id: number; + /** Main image of the publisher. */ + image: Image; + /** Street address of the publisher. */ + locationAddress: null | string; + /** City the publisher resides in. */ + locationCity: null | string; + /** State the publisher resides in. */ + locationState: LocationState | null; + /** Name of the publisher. */ + name: string; + /** URL pointing to the publisher on Giant Bomb. */ + siteDetailUrl: string; + } + + enum LocationState { + California = 'California', + NewYork = 'New York', + LocationStateNewYork = 'New York ', + Pennsylvania = 'Pennsylvania', + } + ``` + + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/series.mdx b/docs-site/src/content/docs/api/resources/series.mdx new file mode 100644 index 0000000..60e0af6 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/series.mdx @@ -0,0 +1,137 @@ +--- +title: Series +description: API reference for the Series resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access TV series data from the Comic Vine API. Official API docs: [`/series`](https://comicvine.gamespot.com/api/documentation#toc-0-28) | [`/series_list`](https://comicvine.gamespot.com/api/documentation#toc-0-29) + +```typescript +const series = client.series; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the series | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const series = await client.series.retrieve(12345); + + // With field selection + const series = await client.series.retrieve(12345, { + fieldList: ['id', 'name', 'startYear', 'countOfEpisodes'], + }); + ``` + + + + ```typescript + interface SeriesDetails { + /** List of aliases the series is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the series detail resource. */ + apiDetailUrl: string; + /** A list of characters that appear in this series. */ + characters: Array; + /** Number of episodes included in this series. */ + countOfEpisodes: number; + /** Date the series was added to Comic Vine. */ + dateAdded: Date; + /** Date the series was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the series. */ + deck: null | string; + /** Description of the series. */ + description: string; + episodes: Array; + /** The first episode in this series. */ + firstEpisode: EpisodeApiResource; + /** Unique ID of the series. */ + id: number; + /** Main image of the series. */ + image: Image; + /** The last episode in this series. */ + lastEpisode: EpisodeApiResource; + /** Name of the series. */ + name: string; + /** The primary publisher a series is attached to. */ + publisher: ApiResource | null; + /** URL pointing to the series on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this series appeared in comics. */ + startYear: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const seriesList = await client.series.list(); + + // With auto pagination + for await (const series of client.series.list()) { + console.log(series.name); + } + ``` + + + + ```typescript + interface SeriesListItem { + aliases: null | string; + apiDetailUrl: string; + countOfEpisodes: number; + dateAdded: Date; + dateLastUpdated: Date; + deck: null | string; + description: null | string; + firstEpisode: EpisodeApiResource; + id: number; + image: Image; + lastEpisode: EpisodeApiResource; + name: string; + publisher: ApiResource | null; + siteDetailUrl: string; + startYear: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/story-arc.mdx b/docs-site/src/content/docs/api/resources/story-arc.mdx new file mode 100644 index 0000000..994a961 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/story-arc.mdx @@ -0,0 +1,148 @@ +--- +title: Story Arc +description: API reference for the Story Arc resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access cross-issue story arc data from the Comic Vine API. Official API docs: [`/story_arc`](https://comicvine.gamespot.com/api/documentation#toc-0-31) | [`/story_arcs`](https://comicvine.gamespot.com/api/documentation#toc-0-32) + +```typescript +const storyArc = client.storyArc; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the story arc | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const storyArc = await client.storyArc.retrieve(55766); + + // With field selection + const storyArc = await client.storyArc.retrieve(55766, { + fieldList: ['id', 'name', 'deck', 'publisher'], + }); + ``` + + + + ```typescript + interface StoryArcDetails { + /** List of aliases the story_arc is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the story_arc detail resource. */ + apiDetailUrl: string; + countOfIsssueAppearances: number; + /** Date the story_arc was added to Comic Vine. */ + dateAdded: Date; + /** Date the story_arc was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the story_arc. */ + deck: string; + /** Description of the story_arc. */ + description: string; + episodes: Array; + firstAppearedInEpisode: EpisodeApiResource | null; + /** Issue where the story_arc made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Unique ID of the story_arc. */ + id: number; + /** Main image of the story_arc. */ + image: Image; + /** List of issues included in this story_arc. */ + issues: Array; + /** Movies the story_arc was in. */ + movies?: Array; + /** Name of the story_arc. */ + name: string; + /** The primary publisher a story_arc is attached to. */ + publisher: SiteResource; + /** URL pointing to the story_arc on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const storyArcs = await client.storyArc.list({ + filter: { name: 'Civil War' }, + }); + + // With auto pagination + for await (const storyArc of client.storyArc.list()) { + console.log(storyArc.name); + } + ``` + + + + ```typescript + interface StoryArcListItem { + /** List of aliases the story_arc is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the story_arc detail resource. */ + apiDetailUrl: string; + countOfIsssueAppearances: number; + /** Date the story_arc was added to Comic Vine. */ + dateAdded: Date; + /** Date the story_arc was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the story_arc. */ + deck: null | string; + /** Description of the story_arc. */ + description: null | string; + firstAppearedInEpisode: EpisodeApiResource | null; + /** Issue where the story_arc made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Unique ID of the story_arc. */ + id: number; + /** Main image of the story_arc. */ + image: Image; + /** Name of the story_arc. */ + name: string; + /** The primary publisher a story_arc is attached to. */ + publisher: SiteResource; + /** URL pointing to the story_arc on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/team.mdx b/docs-site/src/content/docs/api/resources/team.mdx new file mode 100644 index 0000000..fcabc50 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/team.mdx @@ -0,0 +1,157 @@ +--- +title: Team +description: API reference for the Team resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book team data from the Comic Vine API. Official API docs: [`/team`](https://comicvine.gamespot.com/api/documentation#toc-0-33) | [`/teams`](https://comicvine.gamespot.com/api/documentation#toc-0-34) + +```typescript +const team = client.team; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the team | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const team = await client.team.retrieve(12345); + + // With field selection + const team = await client.team.retrieve(12345, { + fieldList: ['id', 'name', 'countOfTeamMembers'], + }); + ``` + + + + ```typescript + interface TeamDetails { + /** List of aliases the team is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the team detail resource. */ + apiDetailUrl: string; + /** List of characters that are enemies with this team. */ + characterEnemies: Array; + /** List of characters that are friends with this team. */ + characterFriends: Array; + /** Characters related to the team. */ + characters: Array; + countOfIsssueAppearances: number; + /** Number of team members in this team. */ + countOfTeamMembers: number; + /** Date the team was added to Comic Vine. */ + dateAdded: Date; + /** Date the team was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the team. */ + deck: string; + /** Description of the team. */ + description: string; + /** List of issues this team disbanded in. */ + disbandedInIssues: Array; + /** Issue where the team made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Unique ID of the team. */ + id: number; + /** Main image of the team. */ + image: Image; + isssuesDisbandedIn: Array; + issueCredits: Array; + /** Movies the team was in. */ + movies: Array; + /** Name of the team. */ + name: string; + /** The primary publisher a team is attached to. */ + publisher: ApiResource; + /** URL pointing to the team on Giant Bomb. */ + siteDetailUrl: string; + storyArcCredits: Array; + volumeCredits: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const teams = await client.team.list(); + + // With auto pagination + for await (const team of client.team.list()) { + console.log(team.name); + } + ``` + + + + ```typescript + interface TeamListItem { + /** List of aliases the team is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the team detail resource. */ + apiDetailUrl: string; + countOfIsssueAppearances: number; + /** Number of team members in this team. */ + countOfTeamMembers: number; + /** Date the team was added to Comic Vine. */ + dateAdded: Date; + /** Date the team was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the team. */ + deck: string; + /** Description of the team. */ + description: null | string; + /** Issue where the team made its first appearance. */ + firstAppearedInIssue: IssueApiResource; + /** Unique ID of the team. */ + id: number; + /** Main image of the team. */ + image: Image; + /** Name of the team. */ + name: string; + /** The primary publisher a team is attached to. */ + publisher: ApiResource; + /** URL pointing to the team on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/thing.mdx b/docs-site/src/content/docs/api/resources/thing.mdx new file mode 100644 index 0000000..672b257 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/thing.mdx @@ -0,0 +1,151 @@ +--- +title: Thing +description: API reference for the Thing resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem, Aside } from '@astrojs/starlight/components'; + +Access notable object data from the Comic Vine API. Official API docs: [`/object`](https://comicvine.gamespot.com/api/documentation#toc-0-16) | [`/objects`](https://comicvine.gamespot.com/api/documentation#toc-0-17) + + + +```typescript +const thing = client.thing; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the thing | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const thing = await client.thing.retrieve(12345); + + // With field selection + const thing = await client.thing.retrieve(12345, { + fieldList: ['id', 'name', 'deck', 'startYear'], + }); + ``` + + + + ```typescript + interface ThingDetails { + /** List of aliases the thing is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the thing detail resource. */ + apiDetailUrl: string; + /** Number of issues this thing appears in. */ + countOfIssueAppearances: number; + /** Date the thing was added to Comic Vine. */ + dateAdded: Date; + /** Date the thing was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the thing. */ + deck: string; + /** Description of the thing. */ + description: null | string; + /** Issue where the thing made its first appearance. */ + firstAppearedInIssue: IssueApiResource | null; + /** Unique ID of the thing. */ + id: number; + /** Main image of the thing. */ + image: Image; + issueCredits: Array; + /** Movies the thing was in. */ + movies: Array; + /** Name of the thing. */ + name: string; + /** URL pointing to the thing on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this thing appeared in comics. */ + startYear: null | string; + storyArcCredits: Array; + volumeCredits: Array; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const things = await client.thing.list(); + + // With auto pagination + for await (const thing of client.thing.list()) { + console.log(thing.name); + } + ``` + + + + ```typescript + interface ThingListItem { + /** List of aliases the thing is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the thing detail resource. */ + apiDetailUrl: string; + /** Number of issues this thing appears in. */ + countOfIssueAppearances: number; + /** Date the thing was added to Comic Vine. */ + dateAdded: Date; + /** Date the thing was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the thing. */ + deck: null | string; + /** Description of the thing. */ + description: null | string; + /** Issue where the thing made its first appearance. */ + firstAppearedInIssue: IssueApiResource | null; + /** Unique ID of the thing. */ + id: number; + /** Main image of the thing. */ + image: Image; + /** Name of the thing. */ + name: string; + /** URL pointing to the thing on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this thing appeared in comics. */ + startYear: null | string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/video-category.mdx b/docs-site/src/content/docs/api/resources/video-category.mdx new file mode 100644 index 0000000..e24ec73 --- /dev/null +++ b/docs-site/src/content/docs/api/resources/video-category.mdx @@ -0,0 +1,111 @@ +--- +title: Video Category +description: API reference for the Video Category resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access video category classification data from the Comic Vine API. Official API docs: [`/video_category`](https://comicvine.gamespot.com/api/documentation#toc-0-40) | [`/video_categories`](https://comicvine.gamespot.com/api/documentation#toc-0-41) + +```typescript +const videoCategory = client.videoCategory; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the video category | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const videoCategory = await client.videoCategory.retrieve(12345); + + // With field selection + const videoCategory = await client.videoCategory.retrieve(12345, { + fieldList: ['id', 'name', 'deck'], + }); + ``` + + + + ```typescript + interface VideoCategoryDetails { + /** URL pointing to the video_category detail resource. */ + apiDetailUrl: string; + /** Brief summary of the video_category. */ + deck: null | string; + /** Unique ID of the video_category. */ + id: number; + image: Image; + /** Name of the video_category. */ + name: string; + /** URL pointing to the video_category on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const videoCategories = await client.videoCategory.list(); + + // With auto pagination + for await (const videoCategory of client.videoCategory.list()) { + console.log(videoCategory.name); + } + ``` + + + + ```typescript + interface VideoCategoryListItem { + /** URL pointing to the video_category detail resource. */ + apiDetailUrl: string; + /** Brief summary of the video_category. */ + deck: null | string; + /** Unique ID of the video_category. */ + id: number; + image: Image; + /** Name of the video_category. */ + name: string; + /** URL pointing to the video_category on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/video-type.mdx b/docs-site/src/content/docs/api/resources/video-type.mdx new file mode 100644 index 0000000..a812eef --- /dev/null +++ b/docs-site/src/content/docs/api/resources/video-type.mdx @@ -0,0 +1,109 @@ +--- +title: Video Type +description: API reference for the Video Type resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access video type classification data from the Comic Vine API. Official API docs: [`/video_type`](https://comicvine.gamespot.com/api/documentation#toc-0-38) | [`/video_types`](https://comicvine.gamespot.com/api/documentation#toc-0-39) + +```typescript +const videoType = client.videoType; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the video type | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const videoType = await client.videoType.retrieve(12345); + + // With field selection + const videoType = await client.videoType.retrieve(12345, { + fieldList: ['id', 'name', 'deck'], + }); + ``` + + + + ```typescript + interface VideoTypeDetails { + /** URL pointing to the video_type detail resource. */ + apiDetailUrl: string; + /** Brief summary of the video_type. */ + deck: null | string; + /** Unique ID of the video_type. */ + id: number; + /** Name of the video_type. */ + name: string; + /** URL pointing to the video_type on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const videoTypes = await client.videoType.list(); + + // With auto pagination + for await (const videoType of client.videoType.list()) { + console.log(videoType.name); + } + ``` + + + + ```typescript + interface VideoTypeListItem { + /** URL pointing to the video_type detail resource. */ + apiDetailUrl: string; + /** Brief summary of the video_type. */ + deck: null | string; + /** Unique ID of the video_type. */ + id: number; + /** Name of the video_type. */ + name: string; + /** URL pointing to the video_type on Giant Bomb. */ + siteDetailUrl: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/api/resources/video.mdx b/docs-site/src/content/docs/api/resources/video.mdx new file mode 100644 index 0000000..3b8d82f --- /dev/null +++ b/docs-site/src/content/docs/api/resources/video.mdx @@ -0,0 +1,182 @@ +--- +title: Video +description: API reference for the Video resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access Comic Vine video content data from the Comic Vine API. Official API docs: [`/video`](https://comicvine.gamespot.com/api/documentation#toc-0-36) | [`/videos`](https://comicvine.gamespot.com/api/documentation#toc-0-37) + +```typescript +const video = client.video; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the video | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const video = await client.video.retrieve(12345); + + // With field selection + const video = await client.video.retrieve(12345, { + fieldList: ['id', 'name', 'deck', 'lengthSeconds'], + }); + ``` + + + + ```typescript + interface VideoDetails { + /** URL pointing to the video detail resource. */ + apiDetailUrl: string; + crew: null | string; + /** Brief summary of the video. */ + deck: string; + embedPlayer: string; + guid: string; + /** URL to the High Res version of the video. */ + highUrl: string; + hosts: null | string; + /** Unique ID of the video. */ + id: number; + /** Main image of the video. */ + image: { [key: string]: null | string }; + /** Length (in seconds) of the video. */ + lengthSeconds: number; + /** URL to the Low Res version of the video. */ + lowUrl: string; + /** Name of the video. */ + name: string; + premium: boolean; + /** Date the video was published on Comic Vine. */ + publishDate: Date; + /** URL pointing to the video on Giant Bomb. */ + siteDetailUrl: string; + /** The video's filename. */ + url: string; + /** Author of the video. */ + user: null | string; + videoCategories: Array; + videoType: string; + youtubeId: null | string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const videos = await client.video.list(); + + // With auto pagination + for await (const video of client.video.list()) { + console.log(video.name); + } + ``` + + + + ```typescript + interface VideoListItem { + /** URL pointing to the video detail resource. */ + apiDetailUrl: string; + crew: Crew | null; + /** Brief summary of the video. */ + deck: string; + embedPlayer: string; + guid: string; + /** URL to the High Res version of the video. */ + highUrl: string; + hosts: Crew | null; + /** Unique ID of the video. */ + id: number; + /** Main image of the video. */ + image: { [key: string]: null | string }; + /** Length (in seconds) of the video. */ + lengthSeconds: number; + /** URL to the Low Res version of the video. */ + lowUrl: string; + /** Name of the video. */ + name: string; + premium: boolean; + /** Date the video was published on Comic Vine. */ + publishDate: Date; + /** URL pointing to the video on Giant Bomb. */ + siteDetailUrl: string; + /** The video's filename. */ + url: string; + /** Author of the video. */ + user: Crew | null; + videoCategories: Array; + videoType: VideoType | null; + youtubeId: null | string; + } + + enum Crew { + Aclarkp = 'aclarkp', + Buddyhutton = 'buddyhutton', + Cadamien = 'cadamien', + Gmanfromheck = 'gmanfromheck', + GmanfromheckRyanerikp = 'gmanfromheck, ryanerikp', + GmanfromheckRyanerikpBuddyhutton = 'gmanfromheck, ryanerikp, buddyhutton', + Inferiorego = 'inferiorego', + Ryanerikp = 'ryanerikp', + RyanerikpBuddyhutton = 'ryanerikp, buddyhutton', + } + + enum VideoType { + Events = 'Events', + Feature = 'Feature', + FeatureEvents = 'Feature, Events', + FeatureMysteryArtChallenge = 'Feature, Mystery Art Challenge', + FeatureUnboxing = 'Feature, Unboxing', + MysteryArtChallenge = 'Mystery Art Challenge', + Review = 'Review', + Trailer = 'Trailer', + Unboxing = 'Unboxing', + } + ``` + + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: + +:::caution[Omitted API fields] +The `savedTime` and `videoShow` fields from the Comic Vine API are not included in this SDK. An exhaustive scan of all 3,119 videos in the API confirmed these fields are always `null` and have no discernible type. +::: diff --git a/docs-site/src/content/docs/api/resources/volume.mdx b/docs-site/src/content/docs/api/resources/volume.mdx new file mode 100644 index 0000000..14bc26b --- /dev/null +++ b/docs-site/src/content/docs/api/resources/volume.mdx @@ -0,0 +1,159 @@ +--- +title: Volume +description: API reference for the Volume resource in the Comic Vine SDK. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +Access comic book volume data from the Comic Vine API. Official API docs: [`/volume`](https://comicvine.gamespot.com/api/documentation#toc-0-42) | [`/volumes`](https://comicvine.gamespot.com/api/documentation#toc-0-43) + +```typescript +const volume = client.volume; +``` + +## Methods + +### `retrieve(id, options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `id` | `number` | Yes | The unique ID of the volume | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + + **Returns:** `Promise` + + + + ```typescript + const volume = await client.volume.retrieve(796); + + // With field selection + const volume = await client.volume.retrieve(796, { + fieldList: ['id', 'name', 'startYear', 'countOfIssues'], + }); + ``` + + + + ```typescript + interface VolumeDetails { + /** List of aliases the volume is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the volume detail resource. */ + apiDetailUrl: string; + /** A list of characters that appear in this volume. */ + characters?: Array; + /** A list of concepts that appear in this volume. */ + concepts?: Array; + /** Number of issues included in this volume. */ + countOfIssues: number; + /** Date the volume was added to Comic Vine. */ + dateAdded: Date; + /** Date the volume was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the volume. */ + deck: null | string; + /** Description of the volume. */ + description: null | string; + /** The first issue in this volume. */ + firstIssue: IssueApiResource; + /** Unique ID of the volume. */ + id: number; + /** Main image of the volume. */ + image: Image; + issues: Array; + /** The last issue in this volume. */ + lastIssue: IssueApiResource; + /** Name of the volume. */ + name: string; + /** List of things that appeared in this volume. */ + objects?: Array; + people: Array; + /** The primary publisher a volume is attached to. */ + publisher: ApiResource; + /** URL pointing to the volume on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this volume appeared in comics. */ + startYear: string; + } + ``` + + + +--- + +### `list(options?)` + + + + **Parameters:** + + | Name | Type | Required | Description | + | --- | --- | --- | --- | + | `options.fieldList` | `string[]` | No | Only return the specified fields | + | `options.limit` | `number` | No | Number of results to return (default: 100) | + | `options.offset` | `number` | No | Number of results to skip | + | `options.sort` | `SortOption` | No | Sort field and direction | + | `options.filter` | `object` | No | Filter results by field values | + + **Returns:** `Promise & AsyncIterable` + + + + ```typescript + const volumes = await client.volume.list({ + filter: { name: 'Amazing Spider-Man' }, + }); + + // With auto pagination + for await (const volume of client.volume.list()) { + console.log(volume.name); + } + ``` + + + + ```typescript + interface VolumeListItem { + /** List of aliases the volume is known by. A \n (newline) seperates each alias. */ + aliases: null | string; + /** URL pointing to the volume detail resource. */ + apiDetailUrl: string; + /** Number of issues included in this volume. */ + countOfIssues: number; + /** Date the volume was added to Comic Vine. */ + dateAdded: Date; + /** Date the volume was last updated on Comic Vine. */ + dateLastUpdated: Date; + /** Brief summary of the volume. */ + deck: null | string; + /** Description of the volume. */ + description: null | string; + /** The first issue in this volume. */ + firstIssue: IssueApiResource; + /** Unique ID of the volume. */ + id: number; + /** Main image of the volume. */ + image: Image; + /** The last issue in this volume. */ + lastIssue: IssueApiResource; + /** Name of the volume. */ + name: string; + /** The primary publisher a volume is attached to. */ + publisher: ApiResource; + /** URL pointing to the volume on Giant Bomb. */ + siteDetailUrl: string; + /** The first year this volume appeared in comics. */ + startYear: string; + } + ``` + + + +:::note +See [Common Types](/comic-vine/api/resources/#common-types) for shared type definitions like `Image`, `ApiResource`, and `SiteResource`. +::: diff --git a/docs-site/src/content/docs/examples/advanced-usage.mdx b/docs-site/src/content/docs/examples/advanced-usage.mdx new file mode 100644 index 0000000..3f380ec --- /dev/null +++ b/docs-site/src/content/docs/examples/advanced-usage.mdx @@ -0,0 +1,188 @@ +--- +title: Advanced Usage +description: Advanced patterns including custom rate limiting, request flow, and real-world scenarios. +--- + +## Custom Rate Limiting Per Resource + +Configure different rate limits for different resource types: + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { InMemoryRateLimitStore } from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + rateLimit: new InMemoryRateLimitStore({ + defaultConfig: { limit: 200, windowMs: 3600000 }, // 200 req/hour default + resourceConfigs: new Map([ + ['issues', { limit: 100, windowMs: 3600000 }], // 100 req/hour + ['characters', { limit: 300, windowMs: 3600000 }], // 300 req/hour + ['volumes', { limit: 50, windowMs: 3600000 }], // 50 req/hour + ]), + }), + }, +}); +``` + +## Request Processing Flow + +Every API request follows a 7-step priority sequence: + +```typescript +// Simplified internal flow +async function processRequest(url) { + // 1. Cache Check - immediate return if cached + const cached = await cache.get(requestHash); + if (cached) return cached; + + // 2. Deduplication - wait for in-progress identical request + const inProgress = await dedupe.waitFor(requestHash); + if (inProgress) return inProgress; + await dedupe.register(requestHash); + + // 3. Rate Limiting - check if request is allowed + const canProceed = await rateLimit.canProceed(resource); + if (!canProceed) { + /* throw or wait */ + } + + // 4. Execute HTTP Request + const response = await httpClient.get(url); + + // 5. Record for Rate Limiting + await rateLimit.record(resource); + + // 6. Store in Cache + await cache.set(requestHash, response); + + // 7. Complete Deduplication + await dedupe.complete(requestHash, response); + + return response; +} +``` + +## Deduplication in Practice + +Deduplication is especially useful when multiple parts of your application request the same data: + +```typescript +import { + InMemoryCacheStore, + InMemoryDedupeStore, +} from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new InMemoryCacheStore({ maxItems: 1000 }), + dedupe: new InMemoryDedupeStore({ jobTimeoutMs: 300000 }), + }, + client: { + defaultCacheTTL: 300, // 5 minutes + }, +}); + +// Multiple components requesting the same character simultaneously +// Only one HTTP request is made +const [sidebar, header, detail] = await Promise.all([ + client.character.retrieve(1443, { fieldList: ['id', 'name', 'image'] }), + client.character.retrieve(1443, { fieldList: ['id', 'name', 'image'] }), + client.character.retrieve(1443, { fieldList: ['id', 'name', 'image'] }), +]); +``` + +## Collecting All Items with Auto Pagination + +Build a complete collection by iterating through all pages: + +```typescript +// Collect all issues in a volume +const allIssues = []; + +for await (const issue of client.issue.list({ + fieldList: ['id', 'name', 'issueNumber', 'coverDate'], + filter: { volume: 796 }, + limit: 100, +})) { + allIssues.push(issue); +} + +console.log(`Collected ${allIssues.length} issues`); + +// Sort by issue number +allIssues.sort((a, b) => (a.issueNumber ?? 0) - (b.issueNumber ?? 0)); +``` + +## Adaptive Rate Limiting for Mixed Workloads + +Use priority-based rate limiting when your application has both interactive and background operations: + +```typescript +import { AdaptiveRateLimitStore } from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + rateLimit: new AdaptiveRateLimitStore(), + }, +}); + +// User-facing search gets priority +async function searchCharacters(query: string) { + return client.character.list({ + filter: { name: query }, + fieldList: ['id', 'name', 'image', 'publisher'], + priority: 'user', + limit: 20, + }); +} + +// Background sync gets remaining capacity +async function syncVolumes() { + for await (const volume of client.volume.list({ + priority: 'background', + limit: 100, + })) { + await saveToDatabase(volume); + } +} +``` + +## Persistent Stores for Production + +Use SQLite stores for data that survives restarts and works across processes: + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { + SQLiteCacheStore, + SQLiteDedupeStore, + SQLiteRateLimitStore, +} from '@http-client-toolkit/store-sqlite'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new SQLiteCacheStore({ database: './comic-vine.db' }), + dedupe: new SQLiteDedupeStore({ database: './comic-vine.db' }), + rateLimit: new SQLiteRateLimitStore({ database: './comic-vine.db' }), + }, +}); +``` + +## Browser Usage with CORS Proxy + +The Comic Vine API doesn't support CORS. Use a proxy server for browser requests: + +```typescript +const client = new ComicVine({ + apiKey: 'your-api-key', + baseUrl: 'https://your-proxy-server.com/api/', +}); + +// Note: Never expose your API key in browser JavaScript +// The proxy should handle API key injection server-side +``` diff --git a/docs-site/src/content/docs/examples/basic-usage.mdx b/docs-site/src/content/docs/examples/basic-usage.mdx new file mode 100644 index 0000000..a5c6a73 --- /dev/null +++ b/docs-site/src/content/docs/examples/basic-usage.mdx @@ -0,0 +1,107 @@ +--- +title: Basic Usage +description: Common patterns for using the Comic Vine SDK. +--- + +## Search for Characters + +```typescript +import ComicVine from 'comic-vine-sdk'; + +const client = new ComicVine({ apiKey: 'your-api-key' }); + +// Search by name +const results = await client.character.list({ + filter: { name: 'Spider-Man' }, + limit: 10, +}); + +for (const character of results.results) { + console.log(`${character.name} (ID: ${character.id})`); +} +``` + +## Get Issue Details + +```typescript +// Retrieve a specific issue with selected fields +const issue = await client.issue.retrieve(6, { + fieldList: ['id', 'name', 'issueNumber', 'coverDate', 'volume', 'image'], +}); + +console.log(`${issue.volume?.name} #${issue.issueNumber}`); +console.log(`Cover Date: ${issue.coverDate}`); +console.log(`Image: ${issue.image?.originalUrl}`); +``` + +## Browse a Volume's Issues + +```typescript +// Get all issues in a volume +const issues = await client.issue.list({ + fieldList: ['id', 'name', 'issueNumber', 'coverDate'], + filter: { volume: 796 }, + sort: { field: 'issueNumber', direction: 'asc' }, + limit: 100, +}); + +console.log(`Found ${issues.totalCount} issues`); +for (const issue of issues.results) { + console.log(`#${issue.issueNumber}: ${issue.name} (${issue.coverDate})`); +} +``` + +## List Publishers + +```typescript +const publishers = await client.publisher.list({ + fieldList: ['id', 'name', 'image'], + limit: 20, +}); + +for (const pub of publishers.results) { + console.log(pub.name); +} +``` + +## Get Character with Full Details + +```typescript +const character = await client.character.retrieve(1443); + +console.log(`Name: ${character.name}`); +console.log(`Real Name: ${character.realName}`); +console.log(`Publisher: ${character.publisher?.name}`); +console.log(`First Appeared In: ${character.firstAppearedInIssue?.name}`); +``` + +## Search Story Arcs + +```typescript +const arcs = await client.storyArc.list({ + filter: { name: 'Civil War' }, + fieldList: ['id', 'name', 'publisher'], +}); + +for (const arc of arcs.results) { + console.log(`${arc.name} (${arc.publisher?.name})`); +} +``` + +## Field Selection for Smaller Responses + +When you only need a few fields, use `fieldList` to reduce response size: + +```typescript +// Full response - all fields returned +const full = await client.character.retrieve(1443); + +// Minimal response - only selected fields +const minimal = await client.character.retrieve(1443, { + fieldList: ['id', 'name', 'image'], +}); + +// TypeScript enforces which fields are available +console.log(minimal.name); // OK +// console.log(minimal.realName); // TypeScript error +``` diff --git a/docs-site/src/content/docs/getting-started/installation.mdx b/docs-site/src/content/docs/getting-started/installation.mdx new file mode 100644 index 0000000..a035894 --- /dev/null +++ b/docs-site/src/content/docs/getting-started/installation.mdx @@ -0,0 +1,74 @@ +--- +title: Installation +description: Install the Comic Vine SDK and optional store packages. +--- + +import { Tabs, TabItem } from '@astrojs/starlight/components'; + +## Install the SDK + + + ```bash pnpm add comic-vine-sdk ``` + ```bash npm install comic-vine-sdk ``` + ```bash yarn add comic-vine-sdk ``` + + +## Optional Store Packages + +The client works without any stores by default (no caching, deduplication, or rate limiting). Install store packages from [`@http-client-toolkit`](https://github.com/AllyMurray/http-client-toolkit) to enable these features: + +### In-Memory Stores + +Best for development, testing, and single-instance applications. Fastest performance with zero setup. + + + + ```bash pnpm add @http-client-toolkit/store-memory ``` + + + ```bash npm install @http-client-toolkit/store-memory ``` + + + ```bash yarn add @http-client-toolkit/store-memory ``` + + + +### SQLite Stores + +Recommended for production. Persistent across restarts with cross-process support. + + + + ```bash pnpm add @http-client-toolkit/store-sqlite ``` + + + ```bash npm install @http-client-toolkit/store-sqlite ``` + + + ```bash yarn add @http-client-toolkit/store-sqlite ``` + + + +:::note[Need more store detail?] +For store internals, custom implementations, and advanced toolkit configuration, see the [HTTP Client Toolkit documentation](https://allymurray.github.io/http-client-toolkit/). +::: + +## TypeScript Support + +The SDK is written in TypeScript and provides comprehensive type definitions out of the box: + +- **Full type safety** for all Comic Vine resources and fields +- **Intelligent field selection** with automatic type narrowing +- **Auto-completion** for all methods, parameters, and response properties +- **Filter validation** with type-safe filter options per resource + +No additional `@types` packages are needed. Types are generated from actual Comic Vine API responses, ensuring accuracy and up-to-date definitions. + +## Requirements + +- Node.js 20 or later +- TypeScript 5.0+ (recommended, but not required) + +## Upgrading From v1 + +If you are migrating from `@comic-vine/client`, see the [v1 to v2 migration guide](/comic-vine/getting-started/migrating-from-v1/). diff --git a/docs-site/src/content/docs/getting-started/introduction.mdx b/docs-site/src/content/docs/getting-started/introduction.mdx new file mode 100644 index 0000000..cc8c6d4 --- /dev/null +++ b/docs-site/src/content/docs/getting-started/introduction.mdx @@ -0,0 +1,56 @@ +--- +title: Introduction +description: What is Comic Vine SDK and why use it. +--- + +## What is the Comic Vine API? + +[Comic Vine](https://comicvine.gamespot.com/) is the largest comic book wiki in the world. Its [API](https://comicvine.gamespot.com/api/) provides programmatic access to a vast database of comic book information including characters, issues, volumes, publishers, story arcs, and more. + +## Why Comic Vine SDK? + +The Comic Vine SDK is a TypeScript client library that makes it easy to interact with the Comic Vine API. Instead of manually constructing HTTP requests and parsing responses, you get: + +- **Type-safe interfaces** — Full TypeScript support with detailed type definitions for all resources and fields +- **Field selection with type narrowing** — Select only the fields you need, and TypeScript automatically narrows the return type +- **Automatic pagination** — Iterate through all results with `for await...of` syntax +- **Built-in optimization** — Caching, request deduplication, and adaptive rate limiting via pluggable stores +- **Comprehensive error handling** — Domain-specific error classes for every API error condition + +## Supported Resources + +The SDK covers all 19 Comic Vine API resources: + +| Resource | Description | +| --------------- | --------------------------------------------------- | +| `character` | Comic book characters (Spider-Man, Batman, etc.) | +| `concept` | Concepts and themes (Multiverse, Time Travel, etc.) | +| `episode` | TV show episodes | +| `issue` | Individual comic book issues | +| `location` | Fictional and real locations | +| `movie` | Movies based on comics | +| `origin` | Character origin types (Mutant, Human, etc.) | +| `person` | Real people (writers, artists, etc.) | +| `power` | Superpowers and abilities | +| `promo` | Promotional content | +| `publisher` | Publishing companies (Marvel, DC, etc.) | +| `series` | TV/media series | +| `storyArc` | Story arcs spanning multiple issues | +| `team` | Superhero and villain teams | +| `thing` | Objects in the comic universe | +| `video` | Video content | +| `videoCategory` | Video categories | +| `videoType` | Video types | +| `volume` | Comic book volumes/series | + +Each resource provides `retrieve()` and `list()` methods with full type safety. + +## Architecture + +The SDK delegates HTTP communication, caching, deduplication, and rate limiting to [`@http-client-toolkit/core`](https://github.com/AllyMurray/http-client-toolkit). This means you can use any compatible store implementation (in-memory, SQLite, or your own custom stores) without changing your application code. + +## Next Steps + +- [Install the SDK](/comic-vine/getting-started/installation/) +- [Quick Start guide](/comic-vine/getting-started/quick-start/) +- [Migrate from v1](/comic-vine/getting-started/migrating-from-v1/) diff --git a/docs-site/src/content/docs/getting-started/migrating-from-v1.mdx b/docs-site/src/content/docs/getting-started/migrating-from-v1.mdx new file mode 100644 index 0000000..b59ac1d --- /dev/null +++ b/docs-site/src/content/docs/getting-started/migrating-from-v1.mdx @@ -0,0 +1,146 @@ +--- +title: Migrating From v1 +description: Upgrade from @comic-vine/client v1 to comic-vine-sdk v2. +--- + +## Overview + +Comic Vine SDK v2 is a major release. The largest changes are: + +- The package name changed from `@comic-vine/client` to `comic-vine-sdk` +- The SDK moved from a multi-package setup to a single package +- The internal HTTP layer now uses `@http-client-toolkit/core` +- Store integrations now use generic toolkit store interfaces +- The client constructor now accepts a single options object +- Some generated TypeScript types are narrower and more accurate + +If you are upgrading from v1, plan for both runtime API changes and TypeScript changes. + +## 1. Update The Package Name + +Replace: + +```bash +npm install @comic-vine/client +``` + +With: + +```bash +npm install comic-vine-sdk +``` + +Update imports: + +```typescript +import ComicVine from 'comic-vine-sdk'; +``` + +## 2. Replace Old Store Packages + +v1 used Comic Vine-specific store packages. v2 uses generic packages from the `@http-client-toolkit` ecosystem. + +Replace old store packages such as: + +- `@comic-vine/in-memory-store` +- `@comic-vine/sqlite-store` + +With toolkit packages such as: + +- `@http-client-toolkit/store-memory` +- `@http-client-toolkit/store-sqlite` + +These stores are passed through the `stores` field on the client options object. + +## 3. Update Client Construction + +v2 standardizes client setup around a single `ComicVineOptions` object. + +Example: + +```typescript +import ComicVine from 'comic-vine-sdk'; + +const client = new ComicVine({ + apiKey: process.env.COMIC_VINE_API_KEY!, + baseUrl: 'https://comicvine.gamespot.com/api/', + stores: { + cache, + dedupe, + rateLimit, + }, + client: { + throwOnRateLimit: false, + maxWaitTime: 30_000, + }, +}); +``` + +In v2: + +- `apiKey` lives at the top level +- store instances live under `stores` +- HTTP client behavior lives under `client` + +## 4. Migrate To Toolkit Store Interfaces + +If you implemented custom stores in v1, you will need to migrate them to the interfaces exported by `@http-client-toolkit/core`: + +- `CacheStore` +- `DedupeStore` +- `RateLimitStore` + +Those interfaces are generic and reusable outside this SDK, but they are not drop-in compatible with the old Comic Vine-specific packages. + +## 5. Expect TypeScript Surface Changes + +v2 includes regenerated types from broader sample coverage plus explicit overrides for fields that are always `null` in the Comic Vine API. + +Notable changes: + +- `person.death` is now `Death | null` +- `person.email` is now `string | null` +- `person.hometown` is now `string | null` +- `origin.characterSet` is now `null` +- `movie.distributor` is omitted from SDK types +- `video.savedTime` is omitted from SDK types +- `video.videoShow` is omitted from SDK types + +If your v1 code depended on broad `unknown` fields or accessed always-null fields directly, TypeScript may now report errors. In most cases the fix is to remove dead field access or narrow your code to the actual typed values. + +## 6. Resource Access Is Lazy + +Resource properties such as `client.issue`, `client.character`, and `client.person` are lazily created in v2. This should be transparent for normal usage, but it is a behavioral change if you relied on eager construction side effects. + +## 7. Pagination Behavior + +`list()` in v2 returns a dual `Promise & AsyncIterable`, so you can either await the first page or iterate automatically across pages. + +Example: + +```typescript +for await (const issue of client.issue.list({ filter: { volume: 796 } })) { + console.log(issue.name); +} +``` + +If your v1 code manually paged through result sets, you may be able to simplify it. + +## Migration Checklist + +- Replace `@comic-vine/client` with `comic-vine-sdk` +- Replace old `@comic-vine/*` store packages with `@http-client-toolkit/*` +- Update client construction to the single options object +- Migrate custom stores to toolkit interfaces +- Fix any TypeScript errors caused by narrower field types +- Remove usage of fields that are no longer exposed because the API never populates them + +## Need To Support Both Versions? + +If you need a staged rollout: + +- migrate imports first +- move store wiring to the new toolkit packages +- then fix TypeScript errors from the narrower v2 type surface + +That usually gives the cleanest upgrade path. diff --git a/docs-site/src/content/docs/getting-started/quick-start.mdx b/docs-site/src/content/docs/getting-started/quick-start.mdx new file mode 100644 index 0000000..4fe7153 --- /dev/null +++ b/docs-site/src/content/docs/getting-started/quick-start.mdx @@ -0,0 +1,91 @@ +--- +title: Quick Start +description: Set up the Comic Vine SDK and make your first API requests. +--- + +## Get an API Key + +You'll need a Comic Vine API key. Register for free at [comicvine.gamespot.com/api](https://comicvine.gamespot.com/api/). + +## Create a Client + +```typescript +import ComicVine from 'comic-vine-sdk'; + +const client = new ComicVine({ apiKey: 'your-api-key' }); +``` + +## Retrieve a Resource + +Every resource has a `retrieve()` method that fetches a single item by ID: + +```typescript +// Get a specific issue +const issue = await client.issue.retrieve(1); +console.log(issue.name); + +// Get a specific character +const character = await client.character.retrieve(1443); +console.log(character.name); // "Spider-Man" +``` + +## List Resources + +Every resource has a `list()` method that returns paginated results: + +```typescript +const characters = await client.character.list({ + filter: { name: 'Spider-Man' }, + limit: 10, +}); + +console.log(characters.totalCount); // Total matching results +console.log(characters.results); // Array of characters +``` + +## Select Specific Fields + +Reduce response size and get type-safe narrowing with `fieldList`: + +```typescript +const issue = await client.issue.retrieve(12345, { + fieldList: ['id', 'name', 'issueNumber', 'coverDate'], +}); + +console.log(issue.name); // string - available +console.log(issue.issueNumber); // number - available +// issue.description // TypeScript error - not selected +``` + +## Configure with Stores + +Add caching, deduplication, and rate limiting by installing store packages: + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { + InMemoryCacheStore, + InMemoryDedupeStore, + InMemoryRateLimitStore, +} from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new InMemoryCacheStore({ + maxItems: 1000, + }), + dedupe: new InMemoryDedupeStore(), + rateLimit: new InMemoryRateLimitStore({ + defaultConfig: { limit: 100, windowMs: 60000 }, + }), + }, +}); +``` + +## Next Steps + +- [Field Selection](/comic-vine/guides/field-selection/) — Type-safe field narrowing +- [Filtering](/comic-vine/guides/filtering/) — Filter results by name, date, and more +- [Pagination](/comic-vine/guides/pagination/) — Manual and automatic pagination +- [All Resources](/comic-vine/api/resources/) — Complete resource reference diff --git a/docs-site/src/content/docs/guides/caching.mdx b/docs-site/src/content/docs/guides/caching.mdx new file mode 100644 index 0000000..e2c9264 --- /dev/null +++ b/docs-site/src/content/docs/guides/caching.mdx @@ -0,0 +1,115 @@ +--- +title: Caching +description: Configure caching and request deduplication to optimize API usage. +--- + +The SDK supports pluggable cache and deduplication stores via [`@http-client-toolkit`](https://github.com/AllyMurray/http-client-toolkit). Without stores configured, every request goes directly to the API. + +:::note[Need custom store details?] +For store internals and custom cache or deduplication implementations, see the [HTTP Client Toolkit documentation](https://allymurray.github.io/http-client-toolkit/). +::: + +## Cache Stores + +### In-Memory Cache + +Best for development, testing, and single-instance applications: + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { InMemoryCacheStore } from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new InMemoryCacheStore({ + maxItems: 5000, + cleanupIntervalMs: 120000, // Cleanup every 2 minutes + }), + }, + client: { + defaultCacheTTL: 600, // 10 minutes + }, +}); +``` + +### SQLite Cache (Persistent) + +Recommended for production. Data survives application restarts: + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { SQLiteCacheStore } from '@http-client-toolkit/store-sqlite'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new SQLiteCacheStore({ database: './comic-vine-cache.db' }), + }, +}); +``` + +## How Caching Works + +Cached responses are returned immediately without making an API call: + +```typescript +const issue1 = await client.issue.retrieve(1); // API call +const issue2 = await client.issue.retrieve(1); // Cache hit - instant return +``` + +## Deduplication + +Deduplication prevents concurrent identical requests from hitting the API multiple times. When multiple calls request the same resource simultaneously, only one HTTP request is made: + +```typescript +import { InMemoryDedupeStore } from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + dedupe: new InMemoryDedupeStore({ + jobTimeoutMs: 300000, // 5 minutes + }), + }, +}); + +// All three requests share a single HTTP call +const [a, b, c] = await Promise.all([ + client.issue.retrieve(1), // Makes API call + client.issue.retrieve(1), // Waits for first call + client.issue.retrieve(1), // Waits for first call +]); +``` + +## Combining Cache and Deduplication + +Use both stores together for maximum optimization: + +```typescript +import { + InMemoryCacheStore, + InMemoryDedupeStore, +} from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + cache: new InMemoryCacheStore({ maxItems: 1000 }), + dedupe: new InMemoryDedupeStore({ jobTimeoutMs: 300000 }), + }, + client: { + defaultCacheTTL: 300, // 5 minutes + }, +}); +``` + +## Store Comparison + +| Feature | In-Memory | SQLite | +| ------------- | ---------------------------- | -------------------------- | +| Performance | Fastest | Fast | +| Persistence | No (lost on restart) | Yes | +| Cross-process | No | Yes | +| Setup | Zero | Requires file system | +| Best for | Development, single-instance | Production, multi-instance | diff --git a/docs-site/src/content/docs/guides/error-handling.mdx b/docs-site/src/content/docs/guides/error-handling.mdx new file mode 100644 index 0000000..f77374d --- /dev/null +++ b/docs-site/src/content/docs/guides/error-handling.mdx @@ -0,0 +1,82 @@ +--- +title: Error Handling +description: Handle API errors with domain-specific error classes. +--- + +The SDK provides detailed error types for different failure scenarios. All errors extend a common base class, making it easy to catch specific errors or handle them broadly. + +## Error Types + +| Error Class | Description | +| --------------------------- | -------------------------------------- | +| `UnauthorizedError` | Invalid or missing API key | +| `ObjectNotFoundError` | Requested resource does not exist | +| `FilterError` | Invalid filter parameters | +| `GenericRequestError` | General API request failure | +| `GenericError` | Unexpected API error | +| `SubscriberOnlyError` | Resource requires a subscriber account | +| `UrlFormatError` | Malformed request URL | +| `JsonpCallbackMissingError` | JSONP callback parameter missing | +| `OptionsValidationError` | Invalid client configuration | + +## Catching Specific Errors + +```typescript +import { + UnauthorizedError, + ObjectNotFoundError, + FilterError, + GenericRequestError, +} from 'comic-vine-sdk'; + +try { + const issue = await client.issue.retrieve(999999); +} catch (error) { + if (error instanceof UnauthorizedError) { + console.error('Invalid API key'); + } else if (error instanceof ObjectNotFoundError) { + console.error('Issue not found'); + } else if (error instanceof FilterError) { + console.error('Invalid filter parameters'); + } else if (error instanceof GenericRequestError) { + console.error('API request failed:', error.message); + } +} +``` + +## Error Properties + +All SDK errors include a `help` property with guidance on resolving the issue: + +```typescript +try { + const issue = await client.issue.retrieve(999999); +} catch (error) { + if (error instanceof ObjectNotFoundError) { + console.error(error.message); // Error description + console.error(error.help); // Guidance for resolving the error + } +} +``` + +## Error Hierarchy + +All error classes extend `BaseError`, which extends `HttpClientError` from `@http-client-toolkit/core`. This means you can catch all SDK errors with a single check: + +```typescript +import { HttpClientError } from '@http-client-toolkit/core'; + +try { + const issue = await client.issue.retrieve(1); +} catch (error) { + if (error instanceof HttpClientError) { + // Any SDK or HTTP client error + console.error('SDK error:', error.message); + } +} +``` + +## See Also + +- [Errors Reference](/comic-vine/api/errors/) — Complete list of all error types +- [Configuration](/comic-vine/api/configuration/) — Rate limit error behavior options diff --git a/docs-site/src/content/docs/guides/field-selection.mdx b/docs-site/src/content/docs/guides/field-selection.mdx new file mode 100644 index 0000000..e27c720 --- /dev/null +++ b/docs-site/src/content/docs/guides/field-selection.mdx @@ -0,0 +1,46 @@ +--- +title: Field Selection +description: Use type-safe field selection to reduce response size and get automatic type narrowing. +--- + +Field selection lets you request only the properties you need from the API. This reduces response size and provides **automatic TypeScript type narrowing** — the return type only includes the fields you selected. + +## Basic Field Selection + +Both `retrieve()` and `list()` accept a `fieldList` option: + +```typescript +const issue = await client.issue.retrieve(12345, { + fieldList: ['id', 'name', 'issueNumber', 'coverDate', 'volume'], +}); + +// TypeScript knows exactly what fields are available +console.log(issue.id); // number +console.log(issue.name); // string +console.log(issue.issueNumber); // number +console.log(issue.description); // TypeScript error - not selected +``` + +## Field Selection with Lists + +Field selection works the same way for list operations: + +```typescript +const characters = await client.character.list({ + fieldList: ['id', 'name', 'image', 'publisher'], + filter: { name: 'Spider-Man' }, +}); + +characters.results.forEach((character) => { + console.log(character.name); // Available + console.log(character.image); // Available + console.log(character.description); // TypeScript error +}); +``` + +## Why Use Field Selection? + +1. **Smaller responses** — The API only returns the fields you request, reducing bandwidth +2. **Type safety** — TypeScript prevents you from accessing fields that weren't requested +3. **Better IntelliSense** — Auto-completion only shows available fields +4. **Compile-time validation** — Catch mistakes before runtime diff --git a/docs-site/src/content/docs/guides/filtering.mdx b/docs-site/src/content/docs/guides/filtering.mdx new file mode 100644 index 0000000..b7d493c --- /dev/null +++ b/docs-site/src/content/docs/guides/filtering.mdx @@ -0,0 +1,64 @@ +--- +title: Filtering +description: Filter API results by name, date, and other resource-specific fields. +--- + +The `list()` method supports filtering to narrow down results. Filters are type-safe and specific to each resource type. + +## Filter by Name + +```typescript +const characters = await client.character.list({ + filter: { name: 'Spider-Man' }, +}); +``` + +## Multiple Filters + +Combine multiple filter fields to narrow results further: + +```typescript +const issues = await client.issue.list({ + filter: { + volume: 1234, + issue_number: 1, + }, +}); +``` + +## Date Range Filtering + +Use pipe-delimited date strings for range filtering: + +```typescript +const recentIssues = await client.issue.list({ + filter: { + date_added: '2023-01-01 00:00:00|2023-12-31 23:59:59', + }, +}); +``` + +## Sorting + +Control the order of results with the `sort` option: + +```typescript +const issues = await client.issue.list({ + filter: { volume: 12345 }, + sort: { field: 'issueNumber', direction: 'asc' }, +}); +``` + +## Combining Options + +Filters work alongside field selection, pagination, and sorting: + +```typescript +const issues = await client.issue.list({ + fieldList: ['id', 'name', 'issueNumber'], + filter: { volume: 12345 }, + limit: 50, + offset: 0, + sort: { field: 'issueNumber', direction: 'asc' }, +}); +``` diff --git a/docs-site/src/content/docs/guides/pagination.mdx b/docs-site/src/content/docs/guides/pagination.mdx new file mode 100644 index 0000000..dca3c68 --- /dev/null +++ b/docs-site/src/content/docs/guides/pagination.mdx @@ -0,0 +1,85 @@ +--- +title: Pagination +description: Navigate through results with manual pagination or automatic async iteration. +--- + +The Comic Vine API uses offset-based pagination. The SDK supports both manual pagination and automatic pagination through async iteration. + +## Manual Pagination + +Control pagination explicitly using `limit` and `offset` parameters: + +```typescript +const limit = 50; +const filter = { volume: 12345 }; + +// Get the first page (items 1-50) +const page1 = await client.issue.list({ + limit, + filter, + offset: 0, +}); +console.log(`Page 1: ${page1.results.length} issues`); +console.log(`Total available: ${page1.totalCount}`); + +// Get the second page (items 51-100) +const page2 = await client.issue.list({ + limit, + filter, + offset: 50, +}); +console.log(`Page 2: ${page2.results.length} issues`); + +// Calculate pagination info +const totalPages = Math.ceil(page1.totalCount / limit); +console.log(`Total pages: ${totalPages}`); +``` + +## Auto Pagination + +Use `for await...of` to automatically iterate through all results across multiple pages: + +```typescript +const filter = { volume: 12345 }; +const issueNames = []; + +for await (const issue of client.issue.list({ filter, limit: 50 })) { + issueNames.push(issue.name); + + // The loop automatically fetches new pages as needed + // No need to manage offset manually +} + +console.log(`Found ${issueNames.length} total issues`); +``` + +## Auto Pagination with Field Selection + +Auto pagination works with all other options including field selection and filtering: + +```typescript +const spiderCharacters = []; + +for await (const character of client.character.list({ + fieldList: ['id', 'name', 'publisher', 'image'], + filter: { name: 'Spider' }, + limit: 100, +})) { + if (character.name.toLowerCase().includes('spider')) { + spiderCharacters.push({ + id: character.id, + name: character.name, + publisher: character.publisher?.name, + }); + } +} + +console.log(`Found ${spiderCharacters.length} Spider characters`); +``` + +## How Auto Pagination Works + +- Automatically fetches subsequent pages when the current page is exhausted +- Works with any filter or field selection options +- Memory efficient — processes one item at a time +- Respects rate limits and caching automatically diff --git a/docs-site/src/content/docs/guides/rate-limiting.mdx b/docs-site/src/content/docs/guides/rate-limiting.mdx new file mode 100644 index 0000000..eab838c --- /dev/null +++ b/docs-site/src/content/docs/guides/rate-limiting.mdx @@ -0,0 +1,172 @@ +--- +title: Rate Limiting +description: Configure rate limiting with traditional or adaptive strategies. +--- + +The SDK supports both traditional rate limiting and an advanced adaptive system that dynamically allocates API capacity based on real-time user activity. Rate limiting is provided by [`@http-client-toolkit`](https://github.com/AllyMurray/http-client-toolkit) store packages. + +:::note[Need advanced toolkit details?] +For adaptive store internals, custom rate limit stores, and deeper toolkit configuration, see the [HTTP Client Toolkit documentation](https://allymurray.github.io/http-client-toolkit/). +::: + +## Traditional Rate Limiting + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { InMemoryRateLimitStore } from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + rateLimit: new InMemoryRateLimitStore({ + defaultConfig: { limit: 200, windowMs: 3600000 }, // 200 req/hour + }), + }, +}); +``` + +## Adaptive Rate Limiting + +The adaptive system dynamically allocates API capacity between **user requests** (interactive, time-sensitive) and **background requests** (bulk operations, scheduled tasks): + +```typescript +import ComicVine from 'comic-vine-sdk'; +import { AdaptiveRateLimitStore } from '@http-client-toolkit/store-memory'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + rateLimit: new AdaptiveRateLimitStore(), + }, +}); + +// User-facing requests get priority +const character = await client.character.retrieve(1443, { + priority: 'user', +}); + +// Background processing gets remaining capacity +for await (const issue of client.issue.list({ priority: 'background' })) { + // Process issues in background +} +``` + +## Adaptive Strategies + +The system monitors activity in real-time and transitions between four strategies: + +| Strategy | User Activity | User Capacity | Background Capacity | +| ----------------- | ------------- | --------------- | -------------------------------- | +| Night Mode | Zero | 0% | 100% (200/200) | +| Low Activity | Low | 30% reserved | 70% | +| Moderate Activity | Moderate | Dynamic scaling | Dynamic scaling | +| High Activity | High | 90% priority | 10% (paused on increasing trend) | + +## Priority Guidelines + +Use `priority: 'user'` for: + +- Interactive user requests (searches, detail views) +- Real-time features (autocomplete, live updates) +- Time-sensitive operations + +Use `priority: 'background'` for: + +- Bulk data processing +- Scheduled synchronization +- Cache warming +- Analytics and reporting + +## Custom Configuration + +```typescript +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + rateLimit: new AdaptiveRateLimitStore({ + adaptiveConfig: { + highActivityThreshold: 15, // Requests per 15min for high activity + moderateActivityThreshold: 5, // Requests per 15min for moderate + monitoringWindowMs: 20 * 60 * 1000, // 20 minute monitoring window + sustainedInactivityThresholdMs: 45 * 60 * 1000, // 45min before full background + recalculationIntervalMs: 60000, // Recalculate every 60 seconds + maxUserScaling: 1.5, // Max user capacity multiplier + minUserReserved: 10, // Minimum guaranteed user requests + backgroundPauseOnIncreasingTrend: true, // Pause background on rising activity + }, + }), + }, +}); +``` + +## Monitoring + +Check the current adaptive status: + +```typescript +const status = await client.getRateLimitStatus('characters'); +console.log(status); +// { +// remaining: 120, +// resetTime: Date, +// limit: 200, +// } +``` + +## Persistent Rate Limiting + +Use SQLite stores for rate limiting that survives application restarts: + +```typescript +import { SqliteAdaptiveRateLimitStore } from '@http-client-toolkit/store-sqlite'; + +const client = new ComicVine({ + apiKey: 'your-api-key', + stores: { + rateLimit: new SqliteAdaptiveRateLimitStore({ + database: './comic-vine.db', + }), + }, +}); +``` + +## Migration from Traditional Rate Limiting + +Existing code works unchanged — requests without a `priority` are treated as `'background'` by default: + +```typescript +// Existing code - no changes needed +const issue = await client.issue.retrieve(1); +const issues = await client.issue.list(); + +// Gradually add priority where beneficial +const userSearch = await client.character.list({ + filter: { name: searchTerm }, + priority: 'user', +}); +``` + +## Rate Limit Behavior + +The client supports two modes for handling rate limit violations: + +### Throw Mode (Default) + +```typescript +const client = new ComicVine({ + apiKey: 'your-api-key', + client: { throwOnRateLimit: true }, +}); +``` + +### Wait Mode + +```typescript +const client = new ComicVine({ + apiKey: 'your-api-key', + client: { + throwOnRateLimit: false, + maxWaitTime: 60000, // Wait up to 1 minute + }, +}); +``` diff --git a/docs-site/src/content/docs/index.mdx b/docs-site/src/content/docs/index.mdx new file mode 100644 index 0000000..49d530b --- /dev/null +++ b/docs-site/src/content/docs/index.mdx @@ -0,0 +1,82 @@ +--- +title: Comic Vine SDK +description: A type-safe TypeScript client for the Comic Vine API with built-in caching, deduplication, and rate limiting. +template: splash +hero: + tagline: A type-safe TypeScript client for the Comic Vine API with built-in caching, deduplication, and rate limiting. + actions: + - text: Get Started + link: /comic-vine/getting-started/introduction/ + icon: right-arrow + variant: primary + - text: View on GitHub + link: https://github.com/AllyMurray/comic-vine + icon: external + variant: minimal +--- + +import { Card, CardGrid } from '@astrojs/starlight/components'; + +## Features + + + + Full TypeScript support with detailed type definitions for all 19 Comic Vine + resources. Field selection automatically narrows return types. + + + Intelligent priority-based rate limiting that maximizes API utilization by + dynamically allocating capacity between user and background requests. + + + Configurable caching with TTL support and automatic deduplication of + concurrent identical requests. Choose from in-memory or SQLite stores. + + + Iterate through all results with `for await...of` syntax. The client + automatically fetches subsequent pages as needed. + + + +## Quick Example + +```typescript +import ComicVine from 'comic-vine-sdk'; + +const client = new ComicVine({ apiKey: 'your-api-key' }); + +// Get a specific issue +const issue = await client.issue.retrieve(1); + +// Search for characters with type-safe field selection +const characters = await client.character.list({ + fieldList: ['id', 'name', 'image'], + filter: { name: 'Spider-Man' }, + limit: 10, +}); +``` + +## Next Steps + + + + Install the SDK and optional store packages for caching and rate limiting. + [Install now →](/comic-vine/getting-started/installation/) + + + Set up your first client and make API requests in minutes. [Get started + →](/comic-vine/getting-started/quick-start/) + + + Upgrading from `@comic-vine/client`? Read the v1 to v2 migration guide. + [Migrate →](/comic-vine/getting-started/migrating-from-v1/) + + + Learn about field selection, filtering, pagination, and more. [Read guides + →](/comic-vine/guides/field-selection/) + + + Explore all 19 resources, configuration options, and error types. [View + reference →](/comic-vine/api/resources/) + + diff --git a/docs-site/src/styles/custom.css b/docs-site/src/styles/custom.css new file mode 100644 index 0000000..1657a3b --- /dev/null +++ b/docs-site/src/styles/custom.css @@ -0,0 +1,27 @@ +:root { + --sl-color-accent-low: #1a3a2a; + --sl-color-accent: #3da35d; + --sl-color-accent-high: #b8e6c8; + --sl-color-white: #ffffff; + --sl-color-gray-1: #eeeeee; + --sl-color-gray-2: #c2c2c2; + --sl-color-gray-3: #8b8b8b; + --sl-color-gray-4: #585858; + --sl-color-gray-5: #383838; + --sl-color-gray-6: #272727; + --sl-color-black: #181818; +} + +:root[data-theme='light'] { + --sl-color-accent-low: #c8f0d4; + --sl-color-accent: #1e7a38; + --sl-color-accent-high: #0e3d1c; + --sl-color-white: #181818; + --sl-color-gray-1: #272727; + --sl-color-gray-2: #383838; + --sl-color-gray-3: #585858; + --sl-color-gray-4: #8b8b8b; + --sl-color-gray-5: #c2c2c2; + --sl-color-gray-6: #eeeeee; + --sl-color-black: #ffffff; +} diff --git a/docs-site/tsconfig.json b/docs-site/tsconfig.json new file mode 100644 index 0000000..bcbf8b5 --- /dev/null +++ b/docs-site/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "astro/tsconfigs/strict" +} diff --git a/eslint.config.js b/eslint.config.js index 0bf3f85..2b5de62 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,16 +1,105 @@ // @ts-check import eslint from '@eslint/js'; -import importPlugin from 'eslint-plugin-import'; -import prettierPlugin from 'eslint-plugin-prettier'; -import prettierConfig from 'eslint-config-prettier'; -import tseslint from 'typescript-eslint'; +import eslintConfigPrettier from 'eslint-config-prettier'; +import eslintPluginImport from 'eslint-plugin-import'; +import eslintPluginPrettier from 'eslint-plugin-prettier'; import globals from 'globals'; -import { baseConfig } from '@repo/eslint-config/base'; +import tseslint from 'typescript-eslint'; /** @type {import('eslint').Linter.Config[]} */ export default [ - ...baseConfig, + eslint.configs.recommended, + ...tseslint.configs.recommended, + eslintConfigPrettier, + { + languageOptions: { + globals: { + ...globals.node, + ...globals.es2022, + }, + }, + plugins: { + prettier: eslintPluginPrettier, + import: eslintPluginImport, + }, + settings: { + 'import/parsers': { + '@typescript-eslint/parser': ['.ts', '.tsx'], + }, + 'import/resolver': { + node: {}, + typescript: { + alwaysTryTypes: true, + }, + }, + }, + rules: { + 'prettier/prettier': ['error'], + 'import/no-extraneous-dependencies': [ + 'error', + { + devDependencies: [ + '**/test/**', + '**/build-tools/**', + '**/vitest.config.ts', + '**/tsup.config.ts', + '**/*.test.ts', + '**/*.test.tsx', + ], + optionalDependencies: false, + peerDependencies: true, + includeInternal: true, + }, + ], + 'import/no-unresolved': ['error'], + 'import/order': [ + 'warn', + { + groups: ['builtin', 'external'], + alphabetize: { + order: 'asc', + caseInsensitive: true, + }, + }, + ], + 'no-duplicate-imports': ['error'], + 'no-shadow': ['off'], + '@typescript-eslint/no-shadow': ['error'], + '@typescript-eslint/no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + '@typescript-eslint/array-type': [ + 'error', + { + default: 'generic', + }, + ], + }, + }, + { + files: ['**/*.ts', '**/*.tsx'], + languageOptions: { + parser: tseslint.parser, + parserOptions: { + ecmaVersion: 2018, + sourceType: 'module', + }, + }, + rules: { + '@typescript-eslint/no-require-imports': ['error'], + '@typescript-eslint/array-type': [ + 'error', + { + default: 'generic', + }, + ], + }, + }, { - ignores: ['packages/*/dist/**', 'packages/*/node_modules/**'], + ignores: ['lib/**', 'dist/**', 'node_modules/**', 'build-tests/**'], }, ]; diff --git a/examples/memory-managed-cache-usage.ts b/examples/memory-managed-cache-usage.ts deleted file mode 100644 index 02c24c8..0000000 --- a/examples/memory-managed-cache-usage.ts +++ /dev/null @@ -1,76 +0,0 @@ -import ComicVine from '@comic-vine/client'; -import { InMemoryCacheStore } from '@comic-vine/in-memory-store'; - -// Create a memory-managed cache store -const cache = new InMemoryCacheStore({ - maxSize: 1000, // Maximum 1000 cached items - ttl: 300000, // 5 minutes TTL - cleanupIntervalMs: 60000, // Cleanup every minute -}); - -// Create ComicVine client with memory-managed cache -const client = new ComicVine({ - apiKey: 'your-api-key-here', - stores: { - cache, - }, -}); - -async function demonstrateMemoryManagedCache() { - console.log('=== Memory-Managed Cache Demo ===\n'); - - // First request - will hit the API - console.log('1. First request (cache miss):'); - const start1 = Date.now(); - const issue1 = await client.issue.retrieve(1); - const time1 = Date.now() - start1; - console.log(` Retrieved issue: ${issue1.name}`); - console.log(` Time taken: ${time1}ms\n`); - - // Second request - will hit the cache - console.log('2. Second request (cache hit):'); - const start2 = Date.now(); - const issue2 = await client.issue.retrieve(1); - const time2 = Date.now() - start2; - console.log(` Retrieved issue: ${issue2.name}`); - console.log(` Time taken: ${time2}ms`); - console.log( - ` Cache speedup: ${Math.round((time1 / time2) * 100) / 100}x\n`, - ); - - // Demonstrate cache stats - console.log('3. Cache statistics:'); - console.log(` Cache stats: ${JSON.stringify(cache.getStats(), null, 2)}\n`); - - // Demonstrate memory management - console.log('4. Memory management:'); - console.log(' Filling cache to trigger LRU eviction...'); - - // Fill cache beyond max size to trigger LRU eviction - for (let i = 2; i <= 1002; i++) { - try { - await client.issue.retrieve(i); - if (i % 100 === 0) { - console.log(` Cached ${i} items...`); - } - } catch (error) { - // Some issues might not exist, continue - continue; - } - } - - console.log('\n Final cache stats:'); - console.log(` ${JSON.stringify(cache.getStats(), null, 2)}`); - - // Verify first item was evicted due to LRU - console.log('\n5. LRU eviction verification:'); - const start3 = Date.now(); - const issue3 = await client.issue.retrieve(1); // Should be cache miss again - const time3 = Date.now() - start3; - console.log(` Time for issue 1: ${time3}ms`); - console.log( - ` ${time3 > 50 ? 'Cache miss (evicted)' : 'Cache hit (still cached)'}`, - ); -} - -demonstrateMemoryManagedCache().catch(console.error); diff --git a/examples/rate-limited-client-usage.ts b/examples/rate-limited-client-usage.ts deleted file mode 100644 index e3f6216..0000000 --- a/examples/rate-limited-client-usage.ts +++ /dev/null @@ -1,200 +0,0 @@ -/** - * Example usage of the ComicVine client with integrated store support. - * This demonstrates various ways to use caching, deduplication, and rate limiting - * by injecting stores directly into the ComicVine constructor. - */ - -import ComicVine from '@comic-vine/client'; -import { InMemoryRateLimitStore } from '@comic-vine/in-memory-store'; - -// Create a rate limit store with custom configuration -const rateLimitStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 100, windowMs: 60000 }, // 100 requests per minute default - resourceConfigs: new Map([ - ['issues', { limit: 50, windowMs: 60000 }], // Issues: 50 requests per minute - ['characters', { limit: 200, windowMs: 60000 }], // Characters: 200 requests per minute - ['publishers', { limit: 30, windowMs: 60000 }], // Publishers: 30 requests per minute - ]), -}); - -// Create ComicVine client with rate limiting -const client = new ComicVine({ - apiKey: 'your-api-key-here', - stores: { - rateLimit: rateLimitStore, - }, - client: { - throwOnRateLimit: false, // Wait instead of throwing errors - maxWaitTime: 30000, // Maximum 30 seconds wait time - }, -}); - -async function demonstrateRateLimiting() { - console.log('=== Rate Limiting Demo ===\n'); - - // Demonstrate different rate limits for different resources - console.log('1. Testing different resource rate limits:'); - - // Test character requests (200 req/min limit) - console.log(' Characters (200 req/min):'); - const characterStart = Date.now(); - for (let i = 1; i <= 5; i++) { - const character = await client.character.retrieve(i); - console.log( - ` ${i}. ${character.name} (${Date.now() - characterStart}ms)`, - ); - } - - // Test issue requests (50 req/min limit) - console.log('\n Issues (50 req/min):'); - const issueStart = Date.now(); - for (let i = 1; i <= 5; i++) { - const issue = await client.issue.retrieve(i); - console.log(` ${i}. ${issue.name} (${Date.now() - issueStart}ms)`); - } - - // Test publisher requests (30 req/min limit) - console.log('\n Publishers (30 req/min):'); - const publisherStart = Date.now(); - for (let i = 1; i <= 3; i++) { - const publisher = await client.publisher.retrieve(i); - console.log( - ` ${i}. ${publisher.name} (${Date.now() - publisherStart}ms)`, - ); - } - - // Check rate limit status - console.log('\n2. Rate limit status:'); - const characterStatus = await client.getRateLimitStatus('characters'); - const issueStatus = await client.getRateLimitStatus('issues'); - const publisherStatus = await client.getRateLimitStatus('publishers'); - - console.log( - ` Characters: ${characterStatus?.remaining}/${characterStatus?.limit} remaining`, - ); - console.log( - ` Issues: ${issueStatus?.remaining}/${issueStatus?.limit} remaining`, - ); - console.log( - ` Publishers: ${publisherStatus?.remaining}/${publisherStatus?.limit} remaining`, - ); - - // Demonstrate rate limit enforcement - console.log('\n3. Testing rate limit enforcement:'); - console.log(' Making rapid requests to trigger rate limiting...'); - - const rapidStart = Date.now(); - const promises = []; - - // Make many rapid requests to trigger rate limiting - for (let i = 1; i <= 10; i++) { - promises.push( - client.issue.retrieve(i).then((issue) => ({ - id: i, - name: issue.name, - time: Date.now() - rapidStart, - })), - ); - } - - const results = await Promise.all(promises); - results.forEach((result, index) => { - console.log(` Request ${index + 1}: ${result.name} (${result.time}ms)`); - }); - - // Show final rate limit status - console.log('\n4. Final rate limit status:'); - const finalIssueStatus = await client.getRateLimitStatus('issues'); - console.log( - ` Issues: ${finalIssueStatus?.remaining}/${finalIssueStatus?.limit} remaining`, - ); - console.log( - ` Reset time: ${finalIssueStatus?.resetTime.toLocaleTimeString()}`, - ); -} - -// Example of handling rate limit errors with throwOnRateLimit: true -async function demonstrateRateLimitErrors() { - console.log('\n=== Rate Limit Error Handling Demo ===\n'); - - // Create a client that throws on rate limit - const strictClient = new ComicVine({ - apiKey: 'your-api-key-here', - stores: { - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 5, windowMs: 60000 }, // Very low limit for demo - }), - }, - client: { - throwOnRateLimit: true, // Throw errors instead of waiting - }, - }); - - console.log('Making requests with throwOnRateLimit: true...'); - - for (let i = 1; i <= 10; i++) { - try { - const issue = await strictClient.issue.retrieve(i); - console.log(`✅ Request ${i}: ${issue.name}`); - } catch (error) { - if ( - error instanceof Error && - error.message.includes('Rate limit exceeded') - ) { - console.log(`❌ Request ${i}: Rate limit exceeded`); - break; // Stop making requests - } else { - console.log(`❌ Request ${i}: Other error - ${error}`); - } - } - } -} - -// Example of custom rate limit configuration -async function demonstrateCustomRateLimit() { - console.log('\n=== Custom Rate Limit Configuration Demo ===\n'); - - // Create a client with very specific rate limits - const customClient = new ComicVine({ - apiKey: 'your-api-key-here', - stores: { - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 10, windowMs: 10000 }, // 10 requests per 10 seconds - resourceConfigs: new Map([ - ['volumes', { limit: 2, windowMs: 10000 }], // Very restrictive for volumes - ['series', { limit: 20, windowMs: 10000 }], // More permissive for series - ]), - }), - }, - client: { - throwOnRateLimit: false, - maxWaitTime: 15000, // 15 seconds max wait - }, - }); - - console.log('Testing custom rate limits:'); - - // Test volume requests (2 req/10s) - console.log(' Volumes (2 req/10s):'); - for (let i = 1; i <= 4; i++) { - const start = Date.now(); - try { - const volume = await customClient.volume.retrieve(i); - console.log(` ${i}. ${volume.name} (${Date.now() - start}ms)`); - } catch (error) { - console.log(` ${i}. Error: ${error}`); - } - } -} - -async function main() { - try { - await demonstrateRateLimiting(); - await demonstrateRateLimitErrors(); - await demonstrateCustomRateLimit(); - } catch (error) { - console.error('Demo failed:', error); - } -} - -main().catch(console.error); diff --git a/package.json b/package.json index 808564e..d9fa345 100644 --- a/package.json +++ b/package.json @@ -1,57 +1,154 @@ { - "name": "comic-vine-monorepo", - "description": "Comic Vine monorepo containing SDK and related packages", + "name": "comic-vine-sdk", + "description": "A JS/TS client for the Comic Vine API", + "version": "1.3.2", "repository": { "type": "git", - "url": "https://github.com/AllyMurray/comic-vine.git" + "url": "git+https://github.com/AllyMurray/comic-vine.git" }, "type": "module", - "private": true, "scripts": { - "build": "turbo run build", - "test": "turbo run test", - "test:build": "turbo run test:build", - "lint": "turbo run lint", - "lint:fix": "turbo run lint -- --fix", - "pre-commit": "prettier --write . && turbo run lint test --filter=...[HEAD^1]", + "build": "tsup && esbuild src/index-wrapper.cjs --bundle --platform=node --format=cjs --target=es2015 --outfile=lib/index.cjs --sourcemap --packages=external", + "test": "vitest run --dir=src", + "test:watch": "vitest --dir=src", + "test:build": "npm run build && npm run test:build:esm && npm run test:build:cjs && npm run test:build:exports && npm run test:build:functionality && npm run test:build:browser && npm run test:build:types && npm run test:build:size", + "test:build:esm": "node build-tests/esm-import.test.js", + "test:build:cjs": "node build-tests/cjs-require.test.cjs", + "test:build:exports": "node build-tests/exports.test.cjs", + "test:build:functionality": "node build-tests/functionality.test.cjs", + "test:build:browser": "node build-tests/browser-bundle.test.js", + "test:build:types": "tsd", + "test:build:size": "size-limit", + "lint": "eslint src", + "lint:fix": "eslint --fix src", "format": "prettier --write \"**/*.{ts,tsx,md}\"", - "dev": "turbo run dev --parallel", - "clean": "turbo run clean && rm -rf node_modules", + "pre-commit": "prettier --write . && eslint src && vitest run --dir=src", + "dev": "tsup --watch", + "clean": "rimraf lib dist node_modules", "prepare": "husky", - "changeset": "changeset", - "version-packages": "changeset version", - "release": "turbo run build && changeset publish" + "sdk:generate": "tsx scripts/generate-sdk.ts", + "samples:fetch": "tsx scripts/fetch-samples.ts", + "docs:dev": "pnpm --dir docs-site dev", + "docs:build": "pnpm --dir docs-site build", + "docs:preview": "pnpm --dir docs-site preview" }, "author": { "name": "Ally Murray", "email": "allymurray88@gmail.com", "organization": false }, + "dependencies": { + "@http-client-toolkit/core": "4.0.0", + "zod": "3.25.71" + }, "devDependencies": { - "@changesets/cli": "^2.27.1", + "@changesets/cli": "^2.29.8", + "@size-limit/file": "^11.0.0", + "@eslint/js": "^9.0.0", + "@http-client-toolkit/store-memory": "4.0.0", "@types/node": "20", - "commitizen": "4.3.1", + "@types/pluralize": "^0.0.33", + "change-case": "^5.0.0", + "cheerio": "^1.0.0", + "esbuild": "^0.25.0", + "eslint": "^9.0.0", + "eslint-config-prettier": "^10.1.5", + "eslint-import-resolver-node": "^0.3.9", + "eslint-import-resolver-typescript": "^4.4.4", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-prettier": "^5.5.1", + "globals": "^16.3.0", "husky": "9.1.7", + "nock": "14.0.5", + "pluralize": "^8.0.0", "prettier": "3.6.2", "rimraf": "6.0.1", - "turbo": "^2.0.0", - "typescript": "5.8.3" - }, - "pnpm": { - "overrides": { - "typescript": "5.8.3" - } + "size-limit": "^11.0.0", + "tsd": "^0.31.0", + "tsup": "8.5.0", + "tsx": "^4.0.0", + "typescript": "5.8.3", + "typescript-eslint": "^8.0.0", + "vitest": "^3.2.4" }, + "keywords": [ + "comic-metadata", + "comic-vine-api", + "comic-vine-client", + "comic-vine-javascript", + "comic-vine-js", + "comic-vine-node", + "comic-vine-nodejs", + "comic-vine-sdk", + "comic-vine-ts", + "comic-vine-typescript", + "comic-vine", + "comic", + "comicmetadata", + "comics", + "comicvine-api", + "comicvine-client", + "comicvine-javascript", + "comicvine-js", + "comicvine-node", + "comicvine-nodejs", + "comicvine-sdk", + "comicvine-ts", + "comicvine-typescript", + "comicvine", + "metadata" + ], "engines": { - "node": ">= 20.0.0" + "node": "^20.0.0 || ^22.0.0 || ^24.0.0" + }, + "main": "./lib/index.cjs", + "module": "./lib/index.js", + "types": "./lib/index.d.ts", + "exports": { + ".": { + "import": { + "types": "./lib/index.d.ts", + "default": "./lib/index.js" + }, + "require": { + "types": "./lib/index.d.ts", + "default": "./lib/index.cjs" + } + } }, + "files": [ + "lib/**" + ], + "sideEffects": false, "license": "MIT", "homepage": "https://github.com/AllyMurray/comic-vine#readme", "bugs": { "url": "https://github.com/AllyMurray/comic-vine/issues" }, + "publishConfig": { + "access": "public" + }, "packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0", - "workspaces": [ - "packages/*" + "tsd": { + "directory": "build-tests", + "compilerOptions": { + "moduleResolution": "node16", + "module": "node16" + } + }, + "size-limit": [ + { + "path": "lib/index.js", + "limit": "30 KB" + }, + { + "path": "lib/index.cjs", + "limit": "30 KB" + }, + { + "path": "lib/index.js", + "gzip": true, + "limit": "10 KB" + } ] } diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md deleted file mode 100644 index 51b74f7..0000000 --- a/packages/client/CHANGELOG.md +++ /dev/null @@ -1,58 +0,0 @@ -# @comic-vine/client - -## 0.1.2 - -### Patch Changes - -- 16cbc6b: update documentation detailing how stores work - -## 0.1.1 - -### Patch Changes - -- 6d7fcb9: update client docs - -## 0.1.0 - -### Minor Changes - -- ce26fb2: feat: introduce @comic-vine/in-memory-store and @comic-vine/sqlite-store packages - - This introduces two new packages providing optimized store implementations for caching, deduplication, and rate limiting: - - @comic-vine/in-memory-store: Advanced in-memory stores with LRU eviction and memory management - - @comic-vine/sqlite-store: SQLite-based persistent stores with cross-process support and database optimization - - Both packages provide comprehensive TypeScript support and are designed for production use. - -## 0.0.7 - -### Patch Changes - -- cea7493: update docs for monorepo - -## 0.0.6 - -### Patch Changes - -- 5fd429e: test github release - -## 0.0.5 - -### Patch Changes - -- 1d9d60f: force another release - -## 0.0.4 - -### Patch Changes - -- 4e59d64: force release - -## 0.0.3 - -### Patch Changes - -- 34bb1a2: force deployment -- 612b27b: further pipeline testing -- cac216e: another pipeline test -- 94287a5: testing release pipeline diff --git a/packages/client/README.md b/packages/client/README.md deleted file mode 100644 index 44b1c1a..0000000 --- a/packages/client/README.md +++ /dev/null @@ -1,995 +0,0 @@ -# Comic Vine Client - -[![NPM Version](https://img.shields.io/npm/v/@comic-vine/client)](https://www.npmjs.com/package/@comic-vine/client) -[![License](https://img.shields.io/npm/l/@comic-vine/client)](https://github.com/AllyMurray/comic-vine/blob/main/LICENSE) -[![Node.js Version](https://img.shields.io/node/v/@comic-vine/client)](https://nodejs.org/) -[![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue)](https://www.typescriptlang.org/) - -The Comic Vine Client provides convenient access to the [Comic Vine API][comic-vine-api] from applications written in JavaScript/TypeScript. The API provides full access to the structured-wiki content. - -## Table of Contents - -- [Requirements](#requirements) -- [Installation](#installation) -- [Quick Start](#quick-start) -- [API Key Security](#api-key-security) -- [Rate Limiting](#rate-limiting) -- [Error Handling](#error-handling) -- [Advanced Usage](#advanced-usage) -- [Comic Vine Resources](#comic-vine-resources) -- [Usage/Examples](#usageexamples) - - [Initialization](#initialization) - - [Options](#options) - - [Fetch a single resource](#fetch-a-single-resource) - - [Fetch a resource list](#fetch-a-resource-list) - - [Limit the fields in the response payload](#limit-the-fields-in-the-response-payload) - - [Pagination](#pagination) - - [Auto Pagination](#auto-pagination) -- [Authors](#authors) - -## Requirements - -- Node.js 20.0.0 or higher -- npm, yarn, or pnpm - -## Installation - -Choose your preferred package manager: - -**pnpm** - -```sh -pnpm add @comic-vine/client -``` - -**npm** - -```sh -npm install @comic-vine/client -``` - -**yarn** - -```sh -yarn add @comic-vine/client -``` - -## Quick Start - -```js -import ComicVine from '@comic-vine/client'; - -// Initialize the client -const comicVine = new ComicVine('your-api-key-here'); - -// Fetch a single publisher -const publisher = await comicVine.publisher.retrieve(1859); -console.log(publisher.name); - -// Fetch a list of issues -const issues = await comicVine.issue.list({ limit: 10 }); -console.log(issues.data.map((issue) => issue.name)); - -// Fetch with field limiting -const limitedIssue = await comicVine.issue.retrieve(1234, { - fieldList: ['id', 'name', 'description'], -}); -console.log(limitedIssue.name); -``` - -## API Key Security - -⚠️ **Important**: Never expose your API key in client-side code or commit it to version control. - -### Environment Variables (Recommended) - -**Create a .env file:** - -```bash -# .env file -COMIC_VINE_API_KEY=your-api-key-here -``` - -**Use in your application:** - -```js -import ComicVine from '@comic-vine/client'; - -const comicVine = new ComicVine(process.env.COMIC_VINE_API_KEY); -``` - -### Browser Usage - -The Comic Vine API doesn't support CORS. For browser usage, you'll need: - -- A backend proxy to make API calls -- Server-side API key storage (never send keys to the browser) - -**Example proxy setup:** - -```js -// Backend API route (Express.js example) -app.get('/api/comic-vine/publisher/:id', async (req, res) => { - try { - const comicVine = new ComicVine(process.env.COMIC_VINE_API_KEY); - const publisher = await comicVine.publisher.retrieve(req.params.id); - res.json(publisher); - } catch (error) { - res.status(500).json({ error: error.message }); - } -}); -``` - -## TypeScript Typings - -There's a good chance you may find an issue with the typings in the API response objects. They were generated using sample data from the API, if you find a problem [open an issue](https://github.com/AllyMurray/comic-vine/issues/new) detailing the problem along with the request details so I can add that request to the sample dataset. While you wait for it to be fixed add `// @ts-expect-error` above the line causing the problem. This will allow you to compile in the meantime but will flag when the problem has been fixed. - -## Rate Limiting - -The Comic Vine API implements rate limiting to ensure fair usage and API health for all users. The client provides both traditional rate limiting and an advanced **adaptive rate limiting** system for intelligent API utilization. - -### API Limits & Rate Limiting - -The Comic Vine API enforces the following limits: - -- **200 requests per resource per hour** - Official limit per user -- **Velocity detection** - Prevents too many requests per second -- **Temporary blocks** - May occur if limits are exceeded - -### Adaptive Rate Limiting (Recommended) - -The adaptive rate limiting system intelligently manages API capacity between user requests and background operations based on real-time activity patterns. This ensures maximum API utilization while protecting user experience. - -#### Quick Start with Adaptive Rate Limiting - -```typescript -import ComicVine from '@comic-vine/client'; -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore({ - // Zero configuration needed - intelligent defaults included! - }), - }, -}); - -// User-facing requests get priority during high activity -const character = await client.character.retrieve(1443, { - priority: 'user', -}); - -// Background operations get remaining capacity -const volumes = await client.volume.list({ - priority: 'background', -}); -``` - -#### How Adaptive Rate Limiting Works - -The system dynamically allocates API capacity based on recent user activity: - -**Night Mode (Zero Activity):** - -- Background operations get 100% capacity (200/200 requests) -- Perfect for scheduled data synchronization - -**Low Activity Mode:** - -- Users get 30% reserved capacity -- Background gets 70% capacity - -**High Activity Mode:** - -- Users get 90% priority capacity -- Background requests paused during increasing trends - -**Real-Time Adaptation:** - -- Monitors activity in 15-minute windows -- Recalculates every 30 seconds -- Seamless transitions between modes - -#### Priority Parameter - -Add the `priority` parameter to any request to indicate its importance: - -```typescript -// User-triggered requests (interactive, time-sensitive) -const searchResults = await client.character.list({ - filter: { name: 'Spider-Man' }, - priority: 'user', // Gets priority during high activity -}); - -const detailView = await client.issue.retrieve(12345, { - fieldList: ['id', 'name', 'description', 'image'], - priority: 'user', // Immediate processing -}); - -// Background operations (bulk processing, sync) -const allVolumes = []; -for await (const volume of client.volume.list({ - priority: 'background', // Uses available capacity -})) { - allVolumes.push(volume); -} - -const bulkCharacters = await client.character.list({ - limit: 100, - priority: 'background', // May be throttled during user activity -}); -``` - -#### Configuration Options - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore({ - adaptiveConfig: { - // Activity thresholds - highActivityThreshold: 10, // Requests/15min to trigger high activity mode - moderateActivityThreshold: 3, // Requests/15min for moderate activity - - // Timing - monitoringWindowMs: 15 * 60 * 1000, // 15 minutes activity window - sustainedInactivityThresholdMs: 30 * 60 * 1000, // 30min for full background mode - recalculationIntervalMs: 30000, // Recalculate every 30 seconds - - // Capacity limits - maxUserScaling: 2.0, // Maximum user capacity multiplier - minUserReserved: 5, // Minimum guaranteed user requests - backgroundPauseOnIncreasingTrend: true, // Pause background on user surge - }, - }), - }, -}); -``` - -#### Monitoring Adaptive Status - -```typescript -// Check current adaptive allocation -const status = await client.stores.rateLimit.getStatus('characters'); -console.log(status.adaptive); -// { -// userReserved: 120, // Capacity reserved for user requests -// backgroundMax: 80, // Maximum background capacity -// backgroundPaused: false, // Whether background is paused -// recentUserActivity: 6, // Recent user requests count -// reason: "Moderate user activity - dynamic scaling (1.3x user capacity)" -// } -``` - -### Traditional Rate Limiting - -The client also provides traditional rate limiting with two configurable behaviors: - -#### Throw on Rate Limit (Default) - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - client: { - throwOnRateLimit: true, // Default - throws error immediately - }, -}); - -try { - const issue = await client.issue.retrieve(1); -} catch (error) { - if (error.message.includes('Rate limit exceeded')) { - // Extract wait time from error message and handle manually - console.log('Rate limit hit - implement retry logic'); - } -} -``` - -#### Auto-Wait on Rate Limit - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - client: { - throwOnRateLimit: false, // Automatically wait when rate limited - maxWaitTime: 120000, // Maximum 2 minutes wait time - }, -}); - -// This request will automatically wait if rate limited -const issue = await client.issue.retrieve(1); -``` - -#### Per-Resource Rate Limiting - -Configure different limits for different resource types: - -```typescript -import { InMemoryRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 200, windowMs: 3600000 }, // 200 req/hour default - resourceConfigs: new Map([ - ['issues', { limit: 100, windowMs: 3600000 }], // Issues: 100 req/hour - ['characters', { limit: 300, windowMs: 3600000 }], // Characters: 300 req/hour - ['volumes', { limit: 50, windowMs: 3600000 }], // Volumes: 50 req/hour - ]), - }), - }, -}); -``` - -### Best Practices - -**Use built-in caching** to avoid duplicate requests: - -```typescript -import { InMemoryCacheStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore({ - maxSize: 1000, - ttl: 3600000, // 1 hour cache - }), - }, -}); - -// Second call returns immediately from cache -const publisher1 = await client.publisher.retrieve(1); // API call -const publisher2 = await client.publisher.retrieve(1); // Cache hit -``` - -**Leverage automatic deduplication** for concurrent requests: - -```typescript -import { InMemoryDedupeStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - dedupe: new InMemoryDedupeStore(), - }, -}); - -// All requests share the same HTTP call automatically -const [issue1, issue2, issue3] = await Promise.all([ - client.issue.retrieve(1), // Makes API call - client.issue.retrieve(1), // Waits for first call - client.issue.retrieve(1), // Waits for first call -]); -``` - -**Configure appropriate rate limiting**: - -```typescript -// Conservative approach - stay well under API limits -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 150, windowMs: 3600000 }, // 150 req/hour (25% buffer) - }), - }, - client: { - throwOnRateLimit: false, // Auto-wait instead of throwing - maxWaitTime: 60000, // Max 1 minute wait - }, -}); -``` - -**Use pagination efficiently**: - -```typescript -// Prefer larger page sizes to reduce request count -const issues = await client.issue.list({ limit: 100 }); // Better -// Avoid small page sizes -const issues = await client.issue.list({ limit: 10 }); // Less efficient - -// Use auto-pagination for processing all results -for await (const issue of client.issue.list()) { - console.log(issue.name); - // Automatically handles pagination and rate limiting -} -``` - -### Migration to Adaptive Rate Limiting - -**Existing code continues to work unchanged:** - -```typescript -// All existing code works without modification -const issue = await client.issue.retrieve(1); -const characters = await client.character.list(); - -// Requests without priority are treated as 'background' -// and get appropriate capacity allocation -``` - -**Gradually add priority for better optimization:** - -```typescript -// Step 1: Identify user-facing requests -const userSearch = await client.character.list({ - filter: { name: searchQuery }, - priority: 'user', // Add priority for user requests -}); - -// Step 2: Mark background operations -const syncData = await client.volume.list({ - limit: 100, - priority: 'background', // Explicit background priority -}); - -// Step 3: Use adaptive stores -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore(), // Drop-in replacement - }, -}); -``` - -**SQLite Support for Persistence:** - -```typescript -import { SqliteAdaptiveRateLimitStore } from '@comic-vine/sqlite-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ - database: './comic-vine.db', - adaptiveConfig: { - // Custom configuration options - }, - }), - }, -}); -``` - -## Error Handling - -The Comic Vine Client provides specific error types to help you handle different failure scenarios gracefully. - -### Error Types - -All errors extend the base `BaseError` class and include: - -- `message`: Human-readable error description -- `help`: Guidance on how to resolve the issue - -**Common Error Types:** - -| Error Type | When It Occurs | How to Handle | -| ------------------------------ | ----------------------- | -------------------------------- | -| `ComicVineUnauthorizedError` | Invalid API key | Check your API key | -| `ComicVineObjectNotFoundError` | Resource doesn't exist | Verify the resource ID | -| `OptionsValidationError` | Invalid request options | Check your parameters | -| `ComicVineGenericRequestError` | API request failed | Retry or check API status | -| `ComicVineSubscriberOnlyError` | Premium content access | Requires Comic Vine subscription | - -### Basic Error Handling - -**Simple try-catch:** - -```js -import ComicVine from '@comic-vine/client'; - -const comicVine = new ComicVine('your-api-key-here'); - -try { - const publisher = await comicVine.publisher.retrieve(999999); - console.log(publisher.name); -} catch (error) { - console.error('Error:', error.message); - console.error('Help:', error.help); -} -``` - -### Specific Error Handling - -**Handle different error types:** - -```js -import ComicVine, { - ComicVineUnauthorizedError, - ComicVineObjectNotFoundError, - OptionsValidationError, -} from '@comic-vine/client'; - -const comicVine = new ComicVine('your-api-key-here'); - -try { - const issue = await comicVine.issue.retrieve(999999); -} catch (error) { - if (error instanceof ComicVineUnauthorizedError) { - console.error( - 'Invalid API key. Get one from: https://comicvine.gamespot.com/api/', - ); - } else if (error instanceof ComicVineObjectNotFoundError) { - console.error('Issue not found. Please check the ID.'); - } else if (error instanceof OptionsValidationError) { - console.error('Invalid request parameters:', error.message); - } else { - console.error('Unexpected error:', error.message); - } -} -``` - -### Robust Error Handling with Retry - -**Implement retry logic for transient errors:** - -```js -async function fetchWithRetry(fetchFn, maxRetries = 3) { - for (let attempt = 1; attempt <= maxRetries; attempt++) { - try { - return await fetchFn(); - } catch (error) { - // Don't retry on client errors - if ( - error instanceof ComicVineUnauthorizedError || - error instanceof ComicVineObjectNotFoundError || - error instanceof OptionsValidationError - ) { - throw error; - } - - // Retry on server errors - if (attempt === maxRetries) { - throw error; - } - - // Wait before retrying (exponential backoff) - const delay = Math.pow(2, attempt) * 1000; - await new Promise((resolve) => setTimeout(resolve, delay)); - } - } -} - -// Usage -try { - const publisher = await fetchWithRetry(() => - comicVine.publisher.retrieve(1859), - ); - console.log(publisher.name); -} catch (error) { - console.error('Failed after retries:', error.message); -} -``` - -### Error Handling in Lists - -**Handle errors when processing multiple items:** - -```js -async function fetchMultipleIssues(ids) { - const results = []; - const errors = []; - - for (const id of ids) { - try { - const issue = await comicVine.issue.retrieve(id); - results.push({ id, issue }); - } catch (error) { - errors.push({ id, error: error.message }); - } - } - - return { results, errors }; -} - -// Usage -const { results, errors } = await fetchMultipleIssues([1, 2, 999999]); -console.log(`Successfully fetched: ${results.length}`); -console.log(`Errors: ${errors.length}`); -``` - -## Advanced Usage - -### Available Filters - -Common filter options for list methods: - -**Filter by name:** - -```js -const issues = await comicVine.issue.list({ - filter: { name: 'The Boys' }, -}); -``` - -**Filter by date range:** - -```js -const recentIssues = await comicVine.issue.list({ - filter: { - date_added: '2024-01-01 00:00:00|2024-12-31 23:59:59', - }, -}); -``` - -**Multiple filters:** - -```js -const filteredIssues = await comicVine.issue.list({ - filter: { - name: 'Spider-Man', - date_added: '2024-01-01 00:00:00|2024-12-31 23:59:59', - }, -}); -``` - -**Publisher-specific content:** - -```js -const marvelIssues = await comicVine.issue.list({ - filter: { - publisher: 'Marvel Comics', - }, - limit: 50, -}); -``` - -### Common Field Lists - -**Minimal issue data:** - -```js -const lightIssue = await comicVine.issue.retrieve(1234, { - fieldList: ['id', 'name', 'issue_number'], -}); -``` - -**Full issue details:** - -```js -const fullIssue = await comicVine.issue.retrieve(1234, { - fieldList: ['id', 'name', 'description', 'cover_date', 'image', 'volume'], -}); -``` - -**Character essentials:** - -```js -const character = await comicVine.character.retrieve(1234, { - fieldList: ['id', 'name', 'description', 'image', 'publisher', 'powers'], -}); -``` - -**Publisher overview:** - -```js -const publisher = await comicVine.publisher.retrieve(1234, { - fieldList: [ - 'id', - 'name', - 'description', - 'image', - 'date_added', - 'location_city', - ], -}); -``` - -### Sorting and Ordering - -**Sort by date (newest first):** - -```js -const recentIssues = await comicVine.issue.list({ - sort: 'date_added:desc', - limit: 10, -}); -``` - -**Sort by name:** - -```js -const sortedCharacters = await comicVine.character.list({ - sort: 'name:asc', - limit: 100, -}); -``` - -### Complex Queries - -**Combine multiple options:** - -```js -const complexQuery = await comicVine.issue.list({ - filter: { - name: 'Spider-Man', - date_added: '2024-01-01 00:00:00|2024-12-31 23:59:59', - }, - fieldList: ['id', 'name', 'issue_number', 'cover_date', 'image'], - sort: 'cover_date:desc', - limit: 25, - offset: 0, -}); -``` - -## Comic Vine Resources - -[Comic Vine resources list][comic-vine-docs] - -The library exposes an object for each Comic Vine resource, the object names are singular and expose a retrieve method that maps to the singular resource and a list method that maps to the plural resource. - -The following table lists the resources that have been implemented and how the `retrieve` and `list` methods map to the API. Most resources are a direct mapping but `object` has been mapped to `thing`, this is due to `object` being a reserved word in JS and `thing` matches the Comic Vine wiki. - -| Library resource object | Retrieve Method API Resource | List Method API Resource | -| ----------------------- | ------------------------------------- | ----------------------------------------- | -| character | [character][character-docs] | [characters][characters-docs] | -| concept | [concept][concept-docs] | [concepts][concepts-docs] | -| episode | [episode][episode-docs] | [episodes][episodes-docs] | -| issue | [issue][issue-docs] | [issues][issues-docs] | -| location | [location][location-docs] | [locations][locations-docs] | -| movie | [movie][movie-docs] | [movies][movies-docs] | -| origin | [origin][origin-docs] | [origins][origins-docs] | -| person | [person][person-docs] | [people][people-docs] | -| power | [power][power-docs] | [powers][powers-docs] | -| promo | [promo][promo-docs] | [promos][promos-docs] | -| publisher | [publisher][publisher-docs] | [publishers][publishers-docs] | -| series | [series][series-docs] | [series_list][series-list-docs] | -| storyArc | [story_arc][story-arc-docs] | [story_arcs][story-arcs-docs] | -| team | [team][team-docs] | [teams][teams-docs] | -| thing | [object][object-docs] | [objects][objects-docs] | -| video | [video][video-docs] | [videos][videos-docs] | -| videoCategory | [video_category][video-category-docs] | [video_categories][video-categories-docs] | -| videoType | [video_type][video-type-docs] | [video_types][video-types-docs] | -| volume | [volume][volume-docs] | [volumes][volumes-docs] | - -## Usage/Examples - -### Initialization - -The package needs to be configured with your API key, [Grab an API key][comic-vine-api]. Require it with the key's value: - -```js -const ComicVine = require('@comic-vine/client'); -const comicVine = new ComicVine('your-api-key-here'); - -comicVine.publisher - .retrieve(1859) - .then((publisher) => console.log(publisher.id)) - .catch((error) => console.error(error)); -``` - -Or using ES modules and `async`/`await`: - -```js -import ComicVine from '@comic-vine/client'; -const comicVine = new ComicVine('your-api-key-here'); - -(async () => { - try { - const publisher = await comicVine.publisher.retrieve(1859); - console.log(publisher.name); - } catch (error) { - console.error(error); - } -})(); -``` - -### Options - -The second parameter of the constructor accepts options to configure the library - -```js -new ComicVine('your-api-key-here', options); -``` - -### `baseUrl` - -**Type: string | undefined** - -**Default: https://comicvine.gamespot.com/api/** - -If using this package in node this should not need set, the default value will work. - -If using the package in a web browser then The Comic Vine API does not allow [cross-origin](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) requests. This option could be used to proxy the request assuming you have some safe way for the web client to fetch your api key, you don't want to send the api key to the browser in your JS bundle. - -```js -import ComicVine from '@comic-vine/client'; - -// This is just an example, to try it out you would -// have to visit (https://cors-anywhere.herokuapp.com) -// to request temporary access. -const comicVine = new ComicVine('your-api-key-here', { - baseUrl: 'https://cors-anywhere.herokuapp.com/https://www.comicvine.com/api/', -}); - -(async () => { - try { - const publisher = await comicVine.publisher.retrieve(1859); - console.log(publisher.name); - } catch (error) { - console.error(error); - } -})(); -``` - -### Fetch a single resource - -All resources have a retrieve method, the following example retrieves a publisher - -```js -import ComicVine from '@comic-vine/client'; -const comicVine = new ComicVine('your-api-key-here'); - -(async () => { - try { - const publisher = await comicVine.publisher.retrieve(1859); - console.log(publisher.name); - } catch (error) { - console.error(error); - } -})(); -``` - -### Fetch a resource list - -All resources have a list method, the following example retrieves a list of publishers - -```js -import ComicVine from '@comic-vine/client'; -const comicVine = new ComicVine('your-api-key-here'); - -(async () => { - try { - const publishers = await comicVine.publisher.list(); - console.log(publishers.data); - } catch (error) { - console.error(error); - } -})(); -``` - -### Limit the fields in the response payload - -When making a request it's likely that only certain properties are required. Both the retrieve and list methods accept options as the second parameter. This can be used to specify the field list. - -When using TypeScript this is type safe, the return type is narrowed to the field list so that intellisense only displays the properties available in the response. - -```js -import ComicVine from '@comic-vine/client'; -const comicVine = new ComicVine('your-api-key-here'); - -(async () => { - try { - const issue = await comicVine.issue.retrieve(1234, { - fieldList: ['id', 'name', 'description'], - }); - - // The id property is in the fieldList and will be available - console.log(issue.id); - - // In JS dateAdded will be undefined at runtime - // in TS the compiler will produce an error because it wasn't in the fieldList - console.log(issue.dateAdded); - - // An object containing the id, name and description properties - console.log(issue); - } catch (error) { - console.error(error); - } -})(); -``` - -### Pagination - -The Comic Vine API provides offset based pagination, this is done by providing a `limit` and `offset` in the request. The `limit` is the number of items to be returned in one page and the offset is the number of items to skip. - -To fetch a page with 50 results and then move to the next page: - -```js -import ComicVine from '@comic-vine/client'; -const comicVine = new ComicVine('your-api-key-here'); - -(async () => { - try { - const limit = 50; - const filter = { name: 'The Boys' }; - - // Retrieve the first 50 issues of The Boys (Page 1) - const issuesPage1 = await comicVine.issue.list({ limit, filter }); - console.log(`Total issues: ${issuesPage1.data.length}`); - console.log(issuesPage1.data.map((issue) => issue.name).join(', ')); - - // Retrieve the next 50 issues of The Boys (Page 2) - const issuesPage2 = await comicVine.issue.list({ - limit, - filter, - offset: 50, - }); - console.log(`Total issues: ${issuesPage2.data.length}`); - console.log(issuesPage2.data.map((issue) => issue.name).join(', ')); - } catch (error) { - console.error(error); - } -})(); -``` - -#### Auto Pagination - -This feature allows calling any list method on a resource with `for await...of` rather than having to track the offset for making subsequent requests. - -It will make the first request and return an item from that response on each iteration, when there are no more items to return it will automatically fetch the next page from the API. This will continue until all pages have been retrieved. - -```js -import ComicVine from '@comic-vine/client'; -const comicVine = new ComicVine('your-api-key-here'); - -(async () => { - try { - const listOptions = { - filter: { name: 'The Boys' }, - limit: 50, - }; - - let issueNames = []; - for await (const issue of comicVine.issue.list(listOptions)) { - issueNames.push(issue.name); - } - - console.log(`Total issues: ${issueNames.length}`); - console.log(issueNames); - } catch (error) { - console.error(error); - } -})(); -``` - -## Authors - -- [@AllyMurray](https://github.com/AllyMurray) - -[comic-vine-api]: https://comicvine.gamespot.com/api -[comic-vine-docs]: https://comicvine.gamespot.com/api/documentation -[character-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-2 -[characters-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-3 -[concept-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-6 -[concepts-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-7 -[episode-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-8 -[episodes-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-9 -[issue-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-10 -[issues-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-11 -[location-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-12 -[locations-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-13 -[movie-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-14 -[movies-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-15 -[object-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-16 -[objects-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-17 -[origin-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-18 -[origins-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-19 -[person-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-20 -[people-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-21 -[power-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-22 -[powers-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-23 -[promo-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-24 -[promos-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-25 -[publisher-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-26 -[publishers-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-27 -[series-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-28 -[series-list-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-29 -[story-arc-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-31 -[story-arcs-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-32 -[team-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-33 -[teams-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-34 -[video-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-36 -[videos-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-37 -[video-type-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-38 -[video-types-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-39 -[video-category-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-40 -[video-categories-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-41 -[volume-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-42 -[volumes-docs]: https://comicvine.gamespot.com/api/documentation#toc-0-43 diff --git a/packages/client/build-tests/functionality.test.cjs b/packages/client/build-tests/functionality.test.cjs deleted file mode 100644 index 58bdd30..0000000 --- a/packages/client/build-tests/functionality.test.cjs +++ /dev/null @@ -1,68 +0,0 @@ -/** - * Test basic functionality of built artifacts - * This file validates that the built package works as expected - */ -const { resolve } = require('path'); - -async function testFunctionality() { - console.log('Testing basic functionality...'); - - try { - // Test CJS functionality - const ComicVine = require('../lib/index.cjs'); - const client = new ComicVine({ apiKey: 'test-key' }); - - // Test that client has expected structure - if ( - !client.character || - !client.issue || - !client.volume || - !client.publisher - ) { - throw new Error('Client missing expected resource properties'); - } - - // Test that resources have expected methods - const methods = ['list', 'retrieve']; - const resources = ['character', 'issue', 'volume', 'publisher']; - - for (const resource of resources) { - for (const method of methods) { - if (typeof client[resource][method] !== 'function') { - throw new Error(`Resource ${resource} missing method ${method}`); - } - } - } - - // Test that client can be constructed with different options - const clientWithOptions = new ComicVine({ - apiKey: 'test-key', - baseUrl: 'https://custom.api.com', - client: { - defaultCacheTTL: 300, - throwOnRateLimit: false, - maxWaitTime: 30000, - }, - }); - - if (!clientWithOptions) { - throw new Error('Failed to create client with custom options'); - } - - console.log('✅ Functionality test passed'); - return true; - } catch (error) { - console.error('❌ Functionality test failed:', error.message); - return false; - } -} - -// Run the test -testFunctionality() - .then((success) => { - process.exit(success ? 0 : 1); - }) - .catch((error) => { - console.error('❌ Functionality test crashed:', error); - process.exit(1); - }); diff --git a/packages/client/eslint.config.js b/packages/client/eslint.config.js deleted file mode 100644 index 1e857bb..0000000 --- a/packages/client/eslint.config.js +++ /dev/null @@ -1,4 +0,0 @@ -import { libraryConfig } from '@repo/eslint-config/library'; - -/** @type {import('eslint').Linter.Config[]} */ -export default libraryConfig; diff --git a/packages/client/package.json b/packages/client/package.json deleted file mode 100644 index 1e802df..0000000 --- a/packages/client/package.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "name": "@comic-vine/client", - "description": "A JS/TS client for the Comic Vine API", - "repository": { - "type": "git", - "url": "git+https://github.com/AllyMurray/comic-vine.git" - }, - "scripts": { - "build": "tsup && npm run test && npm run package", - "lint": "eslint --fix src && prettier --write .", - "package": "mkdir -p dist/js && mv $(npm pack --silent) dist/js/", - "test": "vitest run --dir=src", - "test:watch": "vitest --dir=src", - "test:build": "npm run test:build:esm && npm run test:build:cjs && npm run test:build:exports && npm run test:build:functionality", - "test:build:esm": "node build-tests/esm-import.test.js", - "test:build:cjs": "node build-tests/cjs-require.test.cjs", - "test:build:exports": "node build-tests/exports.test.cjs", - "test:build:functionality": "node build-tests/functionality.test.cjs", - "dev": "tsup --watch", - "clean": "rimraf lib dist node_modules .turbo" - }, - "author": { - "name": "Ally Murray", - "email": "allymurray88@gmail.com", - "organization": false - }, - "devDependencies": { - "@repo/eslint-config": "workspace:*", - "@repo/tsup-config": "workspace:*", - "@repo/vitest-config": "workspace:*", - "@types/node": "20", - "nock": "14.0.5", - "tsup": "8.5.0", - "typescript": "5.8.3", - "vitest": "^3.2.4" - }, - "dependencies": { - "axios": "1.10.0", - "zod": "3.25.71" - }, - "keywords": [ - "comic-metadata", - "comic-vine-api", - "comic-vine-client", - "comic-vine-javascript", - "comic-vine-js", - "comic-vine-node", - "comic-vine-nodejs", - "comic-vine-sdk", - "comic-vine-ts", - "comic-vine-typescript", - "comic-vine", - "comic", - "comicmetadata", - "comics", - "comicvine-api", - "comicvine-client", - "comicvine-javascript", - "comicvine-js", - "comicvine-node", - "comicvine-nodejs", - "comicvine-sdk", - "comicvine-ts", - "comicvine-typescript", - "comicvine", - "metadata" - ], - "engines": { - "node": ">= 20.0.0" - }, - "main": "./lib/index.cjs", - "license": "MIT", - "sideEffects": false, - "files": [ - "lib/**" - ], - "homepage": "https://github.com/AllyMurray/comic-vine#readme", - "version": "0.1.2", - "bugs": { - "url": "https://github.com/AllyMurray/comic-vine/issues" - }, - "types": "./lib/index.d.ts", - "type": "module", - "module": "./lib/index.js", - "exports": { - ".": { - "import": { - "types": "./lib/index.d.ts", - "default": "./lib/index.js" - }, - "require": { - "types": "./lib/index.d.cts", - "default": "./lib/index.cjs" - } - } - }, - "publishConfig": { - "access": "public" - }, - "packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0" -} diff --git a/packages/client/src/__mocks__/api-response/person-details.json b/packages/client/src/__mocks__/api-response/person-details.json deleted file mode 100644 index 2442109..0000000 --- a/packages/client/src/__mocks__/api-response/person-details.json +++ /dev/null @@ -1,2898 +0,0 @@ -{ - "error": "OK", - "limit": 1, - "offset": 0, - "number_of_page_results": 1, - "number_of_total_results": 1, - "status_code": 1, - "results": { - "aliases": null, - "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-1280/", - "birth": "1963-10-23 00:00:00", - "count_of_isssue_appearances": null, - "country": "United States", - "created_characters": [ - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88073/", - "id": 88073, - "name": "Abatha", - "site_detail_url": "https://comicvine.gamespot.com/abatha/4005-88073/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120765/", - "id": 120765, - "name": "Crystal Gazer", - "site_detail_url": "https://comicvine.gamespot.com/crystal-gazer/4005-120765/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25376/", - "id": 25376, - "name": "Flicker", - "site_detail_url": "https://comicvine.gamespot.com/flicker/4005-25376/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21493/", - "id": 21493, - "name": "Ice King", - "site_detail_url": "https://comicvine.gamespot.com/ice-king/4005-21493/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16756/", - "id": 16756, - "name": "Nelanthe", - "site_detail_url": "https://comicvine.gamespot.com/nelanthe/4005-16756/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21492/", - "id": 21492, - "name": "Nightshade", - "site_detail_url": "https://comicvine.gamespot.com/nightshade/4005-21492/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118332/", - "id": 118332, - "name": "Se'adet", - "site_detail_url": "https://comicvine.gamespot.com/se-adet/4005-118332/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79439/", - "id": 79439, - "name": "Stalker", - "site_detail_url": "https://comicvine.gamespot.com/stalker/4005-79439/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25381/", - "id": 25381, - "name": "Troll King", - "site_detail_url": "https://comicvine.gamespot.com/troll-king/4005-25381/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88978/", - "id": 88978, - "name": "Valynn", - "site_detail_url": "https://comicvine.gamespot.com/valynn/4005-88978/" - } - ], - "date_added": "2008-06-06 11:28:11", - "date_last_updated": "2013-03-08 20:26:56", - "death": null, - "deck": null, - "description": null, - "email": null, - "gender": 1, - "hometown": null, - "id": 1280, - "image": { - "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1269916-2893.jpg", - "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1269916-2893.jpg", - "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1269916-2893.jpg", - "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1269916-2893.jpg", - "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1269916-2893.jpg", - "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1269916-2893.jpg", - "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1269916-2893.jpg", - "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1269916-2893.jpg", - "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/77/1269916-2893.jpg", - "image_tags": "All Images" - }, - "issues": [ - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882324/", - "id": 882324, - "name": "Fantastic Fools", - "site_detail_url": "https://comicvine.gamespot.com/the-robonic-stooges-2-fantastic-fools/4000-882324/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845771/", - "id": 845771, - "name": "The Imbicile Gauntlet", - "site_detail_url": "https://comicvine.gamespot.com/the-robonic-stooges-1-the-imbicile-gauntlet/4000-845771/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828093/", - "id": 828093, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-three-stooges-thru-the-ages-1/4000-828093/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820155/", - "id": 820155, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/laurel-and-hardy-christmas-follies-1/4000-820155/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819829/", - "id": 819829, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city-1-t/4000-819829/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820711/", - "id": 820711, - "name": "GN", - "site_detail_url": "https://comicvine.gamespot.com/hey-amateur-1-gn/4000-820711/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787821/", - "id": 787821, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4000-787821/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-766414/", - "id": 766414, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville-4/4000-766414/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740726/", - "id": 740726, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville-3/4000-740726/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738871/", - "id": 738871, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/laurel-and-hardey-meet-the-three-stooges-1/4000-738871/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737626/", - "id": 737626, - "name": "Book 2", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-sacrifice-1-book-2/4000-737626/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736515/", - "id": 736515, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville-2/4000-736515/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731992/", - "id": 731992, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-1-tpb/4000-731992/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729698/", - "id": 729698, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-1-hc/4000-729698/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-727537/", - "id": 727537, - "name": "Volume One", - "site_detail_url": "https://comicvine.gamespot.com/casper-the-friendly-ghost-haunted-hijinks-1-volume/4000-727537/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711379/", - "id": 711379, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville-1/4000-711379/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708187/", - "id": 708187, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-three-stooges-astronuts-1/4000-708187/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707837/", - "id": 707837, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville-fcbd-edition-1/4000-707837/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707420/", - "id": 707420, - "name": "Betrayal Part 15", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-34-betrayal-part-15/4000-707420/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701339/", - "id": 701339, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-ghostland-2/4000-701339/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693381/", - "id": 693381, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/barbarella-12/4000-693381/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689056/", - "id": 689056, - "name": "Volume 4", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4000-689056/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688257/", - "id": 688257, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/back-issue-108/4000-688257/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684792/", - "id": 684792, - "name": "Book 1", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships-1-book-1/4000-684792/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683779/", - "id": 683779, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-three-stooges-matinee-madness-1/4000-683779/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683768/", - "id": 683768, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/caspers-ghostland-100-anniversary-issue-1/4000-683768/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676586/", - "id": 676586, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/casper-and-hot-stuff-1/4000-676586/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667686/", - "id": 667686, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/image-firsts-age-of-bronze-1/4000-667686/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663536/", - "id": 663536, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/aquaman-the-legend-of-aquaman-1-tpb/4000-663536/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652122/", - "id": 652122, - "name": "HC/SC", - "site_detail_url": "https://comicvine.gamespot.com/mine-a-celebration-of-liberty-and-freedom-for-all-/4000-652122/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-641378/", - "id": 641378, - "name": "Book Fifteen", - "site_detail_url": "https://comicvine.gamespot.com/fables-the-deluxe-edition-15-book-fifteen/4000-641378/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818846/", - "id": 818846, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/oz-integral-1/4000-818846/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574890/", - "id": 574890, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/the-life-and-adventures-of-santa-claus-1-hc/4000-574890/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533015/", - "id": 533015, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/prez-the-first-teen-president-1-tpb/4000-533015/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535260/", - "id": 535260, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-deluxe-edition-1/4000-535260/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530701/", - "id": 530701, - "name": "Book Twelve", - "site_detail_url": "https://comicvine.gamespot.com/fables-the-deluxe-edition-12-book-twelve/4000-530701/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511545/", - "id": 511545, - "name": "SC", - "site_detail_url": "https://comicvine.gamespot.com/worlds-of-color-welcome-to-oz-adult-coloring-book-/4000-511545/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712283/", - "id": 712283, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-ruckkehr-ins-schlummerland-1/4000-712283/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-492242/", - "id": 492242, - "name": "TPB/HC", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-1-tpbhc/4000-492242/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487193/", - "id": 487193, - "name": "Volume 21", - "site_detail_url": "https://comicvine.gamespot.com/fables-happily-ever-after-1-volume-21/4000-487193/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482713/", - "id": 482713, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-4/4000-482713/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472937/", - "id": 472937, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-3/4000-472937/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471980/", - "id": 471980, - "name": "Volume 1", - "site_detail_url": "https://comicvine.gamespot.com/adventures-in-oz-1-volume-1/4000-471980/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610280/", - "id": 610280, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-la-ciudad-esmeralda-de-/4000-610280/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468924/", - "id": 468924, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-2/4000-468924/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-464230/", - "id": 464230, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/oz-omnibus-1-hc/4000-464230/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459659/", - "id": 459659, - "name": "Who's Afraid of the Big Bad Wolf? Chapter Two of Happily Ever After", - "site_detail_url": "https://comicvine.gamespot.com/fables-142-whos-afraid-of-the-big-bad-wolf-chapter/4000-459659/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462913/", - "id": 462913, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-1/4000-462913/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436198/", - "id": 436198, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz-5/4000-436198/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610277/", - "id": 610277, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-camino-a-oz-1/4000-610277/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448997/", - "id": 448997, - "name": "GN", - "site_detail_url": "https://comicvine.gamespot.com/legends-of-oz-dorothy-s-return-1-gn/4000-448997/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447204/", - "id": 447204, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-emerald-city-of-oz-1-hc/4000-447204/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432329/", - "id": 432329, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz-4/4000-432329/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424533/", - "id": 424533, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz-3/4000-424533/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-526853/", - "id": 526853, - "name": "Das Superteam", - "site_detail_url": "https://comicvine.gamespot.com/fables-19-das-superteam/4000-526853/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420640/", - "id": 420640, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz-2/4000-420640/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415238/", - "id": 415238, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz-1/4000-415238/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610274/", - "id": 610274, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-dorothy-y-el-mago-en-oz/4000-610274/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420229/", - "id": 420229, - "name": "Volume 4", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-betrayal-2-volume-4/4000-420229/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415246/", - "id": 415246, - "name": "Betrayal Part 14", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-33-betrayal-part-14/4000-415246/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390452/", - "id": 390452, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz-6/4000-390452/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396608/", - "id": 396608, - "name": "HC/TPB", - "site_detail_url": "https://comicvine.gamespot.com/oz-road-to-oz-1-hc-tpb/4000-396608/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384962/", - "id": 384962, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz-5/4000-384962/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395230/", - "id": 395230, - "name": "Volume 2", - "site_detail_url": "https://comicvine.gamespot.com/nexus-omnibus-2-volume-2/4000-395230/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-377056/", - "id": 377056, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz-4/4000-377056/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610272/", - "id": 610272, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-ozma-de-oz-1/4000-610272/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366192/", - "id": 366192, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz-3/4000-366192/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372431/", - "id": 372431, - "name": "The Story of the Trojan War: Betrayal Part 13", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-32-the-story-of-the-trojan-war-betra/4000-372431/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360040/", - "id": 360040, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz-2/4000-360040/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369067/", - "id": 369067, - "name": "Volume 1", - "site_detail_url": "https://comicvine.gamespot.com/nexus-omnibus-1-volume-1/4000-369067/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355905/", - "id": 355905, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz-1/4000-355905/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367749/", - "id": 367749, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-1-tpb/4000-367749/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363123/", - "id": 363123, - "name": "Fund-Razing; Flight of Fantasy; Southern Fried Simpsons", - "site_detail_url": "https://comicvine.gamespot.com/simpsons-comics-presents-bart-simpson-76-fund-razi/4000-363123/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371517/", - "id": 371517, - "name": "HC/TPB", - "site_detail_url": "https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz-1-hc-tpb/4000-371517/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342874/", - "id": 342874, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-8/4000-342874/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-375180/", - "id": 375180, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-4/4000-375180/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336600/", - "id": 336600, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-7/4000-336600/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334326/", - "id": 334326, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-6/4000-334326/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610261/", - "id": 610261, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-maravilloso-mundo-de/4000-610261/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344191/", - "id": 344191, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-3/4000-344191/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334483/", - "id": 334483, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-2/4000-334483/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316790/", - "id": 316790, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-5/4000-316790/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325108/", - "id": 325108, - "name": "The Jester and the Magic Scepter", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-1-the-jester-and-the-magic-s/4000-325108/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388977/", - "id": 388977, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/der-zauberer-von-oz-1/4000-388977/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304737/", - "id": 304737, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-3/4000-304737/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306586/", - "id": 306586, - "name": "Volume 16", - "site_detail_url": "https://comicvine.gamespot.com/fables-super-team-1-volume-16/4000-306586/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306588/", - "id": 306588, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/absolute-promethea-3/4000-306588/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308553/", - "id": 308553, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-4/4000-308553/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610207/", - "id": 610207, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-mago-de-oz-1/4000-610207/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301006/", - "id": 301006, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-2/4000-301006/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371518/", - "id": 371518, - "name": "HC/TPB", - "site_detail_url": "https://comicvine.gamespot.com/oz-ozma-of-oz-1-hc-tpb/4000-371518/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278011/", - "id": 278011, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-8/4000-278011/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294613/", - "id": 294613, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-and-the-wizard-in-oz-1/4000-294613/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272415/", - "id": 272415, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-7/4000-272415/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269814/", - "id": 269814, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-6/4000-269814/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267610/", - "id": 267610, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-5/4000-267610/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294337/", - "id": 294337, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/oz-primer-1/4000-294337/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260599/", - "id": 260599, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-4/4000-260599/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255583/", - "id": 255583, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-3/4000-255583/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259144/", - "id": 259144, - "name": "The Ascent", - "site_detail_url": "https://comicvine.gamespot.com/fables-101-the-ascent/4000-259144/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247614/", - "id": 247614, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-2/4000-247614/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240914/", - "id": 240914, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz-1/4000-240914/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254199/", - "id": 254199, - "name": "Betrayal 12", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-31-betrayal-12/4000-254199/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226222/", - "id": 226222, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-8/4000-226222/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369917/", - "id": 369917, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/oz-marvelous-land-of-oz-1-hc/4000-369917/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219573/", - "id": 219573, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-7/4000-219573/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215354/", - "id": 215354, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-6/4000-215354/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208791/", - "id": 208791, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-5/4000-208791/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219507/", - "id": 219507, - "name": "Betrayal 11", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-30-betrayal-11/4000-219507/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220211/", - "id": 220211, - "name": "Vol. 2", - "site_detail_url": "https://comicvine.gamespot.com/little-adventures-in-oz-2-vol-2/4000-220211/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-206682/", - "id": 206682, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/image-firsts-age-of-bronze-1/4000-206682/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198628/", - "id": 198628, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-4/4000-198628/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296098/", - "id": 296098, - "name": "Mara Jade - Die Hand des Imperators", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-essentials-9-mara-jade-die-hand-des-impe/4000-296098/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200988/", - "id": 200988, - "name": "The Wonderful Wizad Of OZ - part 1", - "site_detail_url": "https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc-1-the-wonderful-wizad-o/4000-200988/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194829/", - "id": 194829, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-3/4000-194829/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-188248/", - "id": 188248, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-2/4000-188248/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181099/", - "id": 181099, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-1/4000-181099/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220210/", - "id": 220210, - "name": "Vol. 1", - "site_detail_url": "https://comicvine.gamespot.com/little-adventures-in-oz-1-vol-1/4000-220210/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301288/", - "id": 301288, - "name": "The Thrawn Trilogy", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-thrawn-trilogy-1-the-thrawn-trilogy/4000-301288/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296097/", - "id": 296097, - "name": "Das letzte Kommando", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-essentials-8-das-letzte-kommando/4000-296097/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191311/", - "id": 191311, - "name": "HC", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz-1-hc/4000-191311/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165506/", - "id": 165506, - "name": "Gifts From Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-8-gifts-from-oz/4000-165506/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160727/", - "id": 160727, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-7/4000-160727/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158124/", - "id": 158124, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-6/4000-158124/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155641/", - "id": 155641, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-5/4000-155641/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153462/", - "id": 153462, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-4/4000-153462/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151831/", - "id": 151831, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-3/4000-151831/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153689/", - "id": 153689, - "name": "Betrayal 9", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-28-betrayal-9/4000-153689/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150068/", - "id": 150068, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-2/4000-150068/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145606/", - "id": 145606, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-1/4000-145606/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181451/", - "id": 181451, - "name": "Betrayal (Part 10)", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-29-betrayal-part-10/4000-181451/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176333/", - "id": 176333, - "name": "One-Shot", - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook-1-one-shot/4000-176333/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137390/", - "id": 137390, - "name": "War & Pieces, Part Three: The Fire Ship; Chapter Four: Fort Bravo!; Epilogue: Amnesty", - "site_detail_url": "https://comicvine.gamespot.com/fables-75-war-pieces-part-three-the-fire-ship-chap/4000-137390/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142868/", - "id": 142868, - "name": "Betrayal 8", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-27-betrayal-8/4000-142868/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127170/", - "id": 127170, - "name": "Volume 1", - "site_detail_url": "https://comicvine.gamespot.com/dark-horse-heroes-omnibus-1-volume-1/4000-127170/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420235/", - "id": 420235, - "name": "Volume 3", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-betrayal-1-volume-3/4000-420235/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114399/", - "id": 114399, - "name": "Betrayal 7", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-26-betrayal-7/4000-114399/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166498/", - "id": 166498, - "name": "Volume 9", - "site_detail_url": "https://comicvine.gamespot.com/fables-sons-of-empire-1-volume-9/4000-166498/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110320/", - "id": 110320, - "name": "Burning Questions", - "site_detail_url": "https://comicvine.gamespot.com/fables-59-burning-questions/4000-110320/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490027/", - "id": 490027, - "name": "Vol. 2", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-vol-2/4000-490027/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160064/", - "id": 160064, - "name": "Betrayal 6", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-25-betrayal-6/4000-160064/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160063/", - "id": 160063, - "name": "Betrayal 5", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-24-betrayal-5/4000-160063/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106891/", - "id": 106891, - "name": "The Lethal Luck Of The Magister Lad!; Little Margie In Misty Magic Land; Worlds Within Worlds; How Come Nobody Likes The First American These Days?;", - "site_detail_url": "https://comicvine.gamespot.com/tomorrow-stories-special-2-the-lethal-luck-of-the-/4000-106891/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160062/", - "id": 160062, - "name": "Betrayal 4", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-23-betrayal-4/4000-160062/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-147939/", - "id": 147939, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/adventures-in-oz-1/4000-147939/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160061/", - "id": 160061, - "name": "Betrayal 3", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-22-betrayal-3/4000-160061/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160060/", - "id": 160060, - "name": "Betrayal 2", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-21-betrayal-2/4000-160060/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105292/", - "id": 105292, - "name": "Betrayal 1", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-20-betrayal-1/4000-105292/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420236/", - "id": 420236, - "name": "Volume 2", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-sacrifice-1-volume-2/4000-420236/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105256/", - "id": 105256, - "name": "Sacrifice 10", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-19-sacrifice-10/4000-105256/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120848/", - "id": 120848, - "name": "The DC Comics Encyclopedia", - "site_detail_url": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105255/", - "id": 105255, - "name": "Sacrifice 9", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-18-sacrifice-9/4000-105255/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105254/", - "id": 105254, - "name": "Sacrifice 8", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-17-sacrifice-8/4000-105254/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105253/", - "id": 105253, - "name": "Sacrifice 7", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-16-sacrifice-7/4000-105253/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301843/", - "id": 301843, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/americas-best-comics-1-tpb/4000-301843/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252827/", - "id": 252827, - "name": "Catwoman: Crooked Little Town", - "site_detail_url": "https://comicvine.gamespot.com/catwoman-crooked-little-town-1-catwoman-crooked-li/4000-252827/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143491/", - "id": 143491, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105252/", - "id": 105252, - "name": "Sacrifice 6", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-15-sacrifice-6/4000-105252/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105251/", - "id": 105251, - "name": "Sacrifice 5", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-14-sacrifice-5/4000-105251/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78434/", - "id": 78434, - "name": "\"Hard-Loving Heroes\"", - "site_detail_url": "https://comicvine.gamespot.com/green-lantern-secret-files-3-hard-loving-heroes/4000-78434/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357459/", - "id": 357459, - "name": "Special #2", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-behind-the-scenes-1-special-2/4000-357459/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78464/", - "id": 78464, - "name": "Sacrifice 4", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-13-sacrifice-4/4000-78464/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261551/", - "id": 261551, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-23/4000-261551/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78463/", - "id": 78463, - "name": "Sacrifice 3", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-12-sacrifice-3/4000-78463/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124442/", - "id": 124442, - "name": "Volume 1", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships-1-volume-1/4000-124442/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78462/", - "id": 78462, - "name": "Sacrifice 2", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-11-sacrifice-2/4000-78462/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131886/", - "id": 131886, - "name": "Remote Control, Part 4", - "site_detail_url": "https://comicvine.gamespot.com/iron-man-40-remote-control-part-4/4000-131886/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151462/", - "id": 151462, - "name": "Filth of the City", - "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-filth-of-the-city-1-filth-of-the/4000-151462/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78461/", - "id": 78461, - "name": "Sacrifice 1", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-10-sacrifice-1/4000-78461/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78460/", - "id": 78460, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-9/4000-78460/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171670/", - "id": 171670, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/green-lanternsuperman-legend-of-the-green-flame-1/4000-171670/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78459/", - "id": 78459, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-8/4000-78459/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161064/", - "id": 161064, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-the-70-s-1/4000-161064/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78458/", - "id": 78458, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-7/4000-78458/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78457/", - "id": 78457, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-6/4000-78457/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148133/", - "id": 148133, - "name": "America's Best Comics 64 Page Giant", - "site_detail_url": "https://comicvine.gamespot.com/americas-best-comics-64-page-giant-1-americas-best/4000-148133/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77684/", - "id": 77684, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-5/4000-77684/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202029/", - "id": 202029, - "name": "House of Horror", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-special-1-house-of-horror/4000-202029/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124503/", - "id": 124503, - "name": "TPB", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command-1-tpb/4000-124503/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77683/", - "id": 77683, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-4/4000-77683/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77682/", - "id": 77682, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-3/4000-77682/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77681/", - "id": 77681, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-2/4000-77681/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77680/", - "id": 77680, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-1/4000-77680/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407134/", - "id": 407134, - "name": "Road Trip Part 1 ; Satchel of Weltschmerz - The Body Of Social Part 2", - "site_detail_url": "https://comicvine.gamespot.com/oni-double-feature-9-road-trip-part-1-satchel-of-w/4000-407134/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45256/", - "id": 45256, - "name": "Gang Buff; Original Gangster; Small Time; Worldwide Gangster Robots", - "site_detail_url": "https://comicvine.gamespot.com/gangland-3-gang-buff-original-gangster-small-time-/4000-45256/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174613/", - "id": 174613, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command-6/4000-174613/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174612/", - "id": 174612, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command-5/4000-174612/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234438/", - "id": 234438, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-bad-1/4000-234438/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174611/", - "id": 174611, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command-4/4000-174611/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174606/", - "id": 174606, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command-3/4000-174606/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174605/", - "id": 174605, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command-2/4000-174605/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201216/", - "id": 201216, - "name": "JLA Gallery", - "site_detail_url": "https://comicvine.gamespot.com/jla-gallery-1-jla-gallery/4000-201216/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52664/", - "id": 52664, - "name": "Book One", - "site_detail_url": "https://comicvine.gamespot.com/weird-war-tales-1-book-one/4000-52664/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161208/", - "id": 161208, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-the-unexplained-1/4000-161208/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-903923/", - "id": 903923, - "name": "Vol. 1", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-1-vol-1/4000-903923/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224384/", - "id": 224384, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/king-tiger-motorhead-2/4000-224384/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270441/", - "id": 270441, - "name": "Harlan Ellison's Dream Corridor Quarterly #1", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-quarterly-1-harlan-/4000-270441/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110876/", - "id": 110876, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/king-tiger-motorhead-1/4000-110876/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161210/", - "id": 161210, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-freaks-1/4000-161210/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119316/", - "id": 119316, - "name": "Side-Show Mentality", - "site_detail_url": "https://comicvine.gamespot.com/motorhead-6-side-show-mentality/4000-119316/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151363/", - "id": 151363, - "name": "Prez: Smells Like Teen President", - "site_detail_url": "https://comicvine.gamespot.com/vertigo-visions-prez-1-prez-smells-like-teen-presi/4000-151363/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443909/", - "id": 443909, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/spandex-tights-summer-fun-1/4000-443909/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249537/", - "id": 249537, - "name": "Harlan Ellison's Dream Corridor #5", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-5-harlan-ellisons-d/4000-249537/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249536/", - "id": 249536, - "name": "Harlan Ellison's Dream Corridor #4", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-4-harlan-ellisons-d/4000-249536/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249535/", - "id": 249535, - "name": "Harlan Ellison's Dream Corridor #3", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-3-harlan-ellisons-d/4000-249535/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249534/", - "id": 249534, - "name": "Harlan Ellison's Dream Corridor #2", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-harlan-ellisons-d/4000-249534/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249533/", - "id": 249533, - "name": "Harlan Ellison's Dream Corridor #1", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-1-harlan-ellisons-d/4000-249533/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270397/", - "id": 270397, - "name": "Dream Corridor Special", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-special-1-dream-cor/4000-270397/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51610/", - "id": 51610, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-6/4000-51610/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237698/", - "id": 237698, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-hoaxes-1/4000-237698/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159151/", - "id": 159151, - "name": "(various short stories)", - "site_detail_url": "https://comicvine.gamespot.com/wildstorm-rarities-1-various-short-stories/4000-159151/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39732/", - "id": 39732, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-3/4000-39732/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151182/", - "id": 151182, - "name": "Sourcebook", - "site_detail_url": "https://comicvine.gamespot.com/wetworks-sourcebook-1-sourcebook/4000-151182/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143760/", - "id": 143760, - "name": "Chapter Two", - "site_detail_url": "https://comicvine.gamespot.com/indiana-jones-and-the-golden-fleece-2-chapter-two/4000-143760/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143779/", - "id": 143779, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/out-of-the-vortex-6/4000-143779/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134522/", - "id": 134522, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-urban-legends-1/4000-134522/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136638/", - "id": 136638, - "name": "Original Graphic Novel", - "site_detail_url": "https://comicvine.gamespot.com/accidental-death-1-original-graphic-novel/4000-136638/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129610/", - "id": 129610, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/wildcats-sourcebook-2/4000-129610/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223224/", - "id": 223224, - "name": "Hero Zero", - "site_detail_url": "https://comicvine.gamespot.com/comics-greatest-world-vortex-2-hero-zero/4000-223224/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37301/", - "id": 37301, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/cheval-noir-43/4000-37301/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395876/", - "id": 395876, - "name": "Visions of Arzach", - "site_detail_url": "https://comicvine.gamespot.com/visions-of-arzach-1-visions-of-arzach/4000-395876/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331826/", - "id": 331826, - "name": "Volume 2", - "site_detail_url": "https://comicvine.gamespot.com/nexus-two-1-volume-2/4000-331826/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36346/", - "id": 36346, - "name": "Zoo-Lou vs. Editor / An Accidental Death / Nestrobber / Predator; Alec / The Selfish Giant", - "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents-67-zoo-lou-vs-editor-an-accide/4000-36346/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36219/", - "id": 36219, - "name": "Concrete; Dr. Giggles; An Accidental Death; Alec", - "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents-66-concrete-dr-giggles-an-acci/4000-36219/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129262/", - "id": 129262, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/the-blue-witch-of-oz-0/4000-129262/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36099/", - "id": 36099, - "name": "An Accidental Death; Dr. Giggles; Interact-O-Rama", - "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents-65-an-accidental-death-dr-gigg/4000-36099/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271713/", - "id": 271713, - "name": "Swimsuit Special", - "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-3-swimsuit-special/4000-271713/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35529/", - "id": 35529, - "name": "Best Friends", - "site_detail_url": "https://comicvine.gamespot.com/aquaman-5-best-friends/4000-35529/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211654/", - "id": 211654, - "name": "Within Our Reach", - "site_detail_url": "https://comicvine.gamespot.com/within-our-reach-1-within-our-reach/4000-211654/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335340/", - "id": 335340, - "name": "Swimsuit Special 1991", - "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-2-swimsuit-special/4000-335340/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154119/", - "id": 154119, - "name": "Batmobile to Vigilante I", - "site_detail_url": "https://comicvine.gamespot.com/whos-who-in-the-dc-universe-5-batmobile-to-vigilan/4000-154119/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127422/", - "id": 127422, - "name": "Alfred Pennyworth to Spider-Girl", - "site_detail_url": "https://comicvine.gamespot.com/whos-who-in-the-dc-universe-3-alfred-pennyworth-to/4000-127422/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33352/", - "id": 33352, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/elsewhere-prince-6/4000-33352/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33238/", - "id": 33238, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/elsewhere-prince-5/4000-33238/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33118/", - "id": 33118, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/elsewhere-prince-4/4000-33118/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33000/", - "id": 33000, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/elsewhere-prince-3/4000-33000/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32879/", - "id": 32879, - "name": "The Princess", - "site_detail_url": "https://comicvine.gamespot.com/the-elsewhere-prince-2-the-princess/4000-32879/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32760/", - "id": 32760, - "name": "The Jouk", - "site_detail_url": "https://comicvine.gamespot.com/the-elsewhere-prince-1-the-jouk/4000-32760/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32675/", - "id": 32675, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-48/4000-32675/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32392/", - "id": 32392, - "name": "...In Memory Yet Green...; The Thorned Path The Origin of Val Armorr, Karate Kid!; The Unique Properties of Condo Arlik", - "site_detail_url": "https://comicvine.gamespot.com/secret-origins-47-in-memory-yet-green-the-thorned-/4000-32392/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31851/", - "id": 31851, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/badger-goes-berserk-3/4000-31851/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119457/", - "id": 119457, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/secret-origins-of-the-world-s-greatest-super-heroe/4000-119457/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31033/", - "id": 31033, - "name": "Where There is a Will...!", - "site_detail_url": "https://comicvine.gamespot.com/action-comics-weekly-642-where-there-is-a-will/4000-31033/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32103/", - "id": 32103, - "name": "Ex-Machina; And in the Depths; Gifts; Silent Night; Once Christmas Eve; Should Auld Acquaintance be Forgot", - "site_detail_url": "https://comicvine.gamespot.com/christmas-with-the-super-heroes-2-ex-machina-and-i/4000-32103/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152058/", - "id": 152058, - "name": "The Legend of Aquaman", - "site_detail_url": "https://comicvine.gamespot.com/aquaman-special-1-the-legend-of-aquaman/4000-152058/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30272/", - "id": 30272, - "name": "All Together Now", - "site_detail_url": "https://comicvine.gamespot.com/secret-origins-32-all-together-now/4000-30272/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200836/", - "id": 200836, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/forgotten-forest-of-oz-1/4000-200836/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29808/", - "id": 29808, - "name": "Where the Buffalo Roam", - "site_detail_url": "https://comicvine.gamespot.com/badger-37-where-the-buffalo-roam/4000-29808/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328646/", - "id": 328646, - "name": "Phony Express", - "site_detail_url": "https://comicvine.gamespot.com/alien-worlds-1-phony-express/4000-328646/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372961/", - "id": 372961, - "name": "2nd Annual Swimsuit Issue", - "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-138-2nd-annual-swimsuit-issue/4000-372961/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28782/", - "id": 28782, - "name": "The Magic Word", - "site_detail_url": "https://comicvine.gamespot.com/badger-29-the-magic-word/4000-28782/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225939/", - "id": 225939, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-ice-king-of-oz-1/4000-225939/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376362/", - "id": 376362, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-115/4000-376362/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133968/", - "id": 133968, - "name": "Shrinking Violet to Starfinger", - "site_detail_url": "https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133968/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258307/", - "id": 258307, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-secret-island-of-oz-1/4000-258307/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140202/", - "id": 140202, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/elviras-house-of-mystery-7/4000-140202/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258302/", - "id": 258302, - "name": null, - "site_detail_url": "https://comicvine.gamespot.com/the-enchanted-apples-of-oz-1/4000-258302/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26489/", - "id": 26489, - "name": "Yo, Jimbo!", - "site_detail_url": "https://comicvine.gamespot.com/nexus-17-yo-jimbo/4000-26489/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26383/", - "id": 26383, - "name": "Into The Web", - "site_detail_url": "https://comicvine.gamespot.com/nexus-16-into-the-web/4000-26383/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26177/", - "id": 26177, - "name": "You Asked For It", - "site_detail_url": "https://comicvine.gamespot.com/nexus-15-you-asked-for-it/4000-26177/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26065/", - "id": 26065, - "name": "Killing Joke", - "site_detail_url": "https://comicvine.gamespot.com/nexus-14-killing-joke/4000-26065/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25964/", - "id": 25964, - "name": "Insomnia", - "site_detail_url": "https://comicvine.gamespot.com/nexus-13-insomnia/4000-25964/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25863/", - "id": 25863, - "name": "The Old General", - "site_detail_url": "https://comicvine.gamespot.com/nexus-12-the-old-general/4000-25863/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25769/", - "id": 25769, - "name": "Get Clausius", - "site_detail_url": "https://comicvine.gamespot.com/nexus-11-get-clausius/4000-25769/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25670/", - "id": 25670, - "name": "Talking Heads", - "site_detail_url": "https://comicvine.gamespot.com/nexus-10-talking-heads/4000-25670/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-421502/", - "id": 421502, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/creepy-146/4000-421502/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25568/", - "id": 25568, - "name": "Teen Angel", - "site_detail_url": "https://comicvine.gamespot.com/nexus-9-teen-angel/4000-25568/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25440/", - "id": 25440, - "name": "The Conqueror", - "site_detail_url": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth-4-the-conqueror/4000-25440/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25476/", - "id": 25476, - "name": "Up And Out", - "site_detail_url": "https://comicvine.gamespot.com/nexus-8-up-and-out/4000-25476/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25334/", - "id": 25334, - "name": "The Warrior!", - "site_detail_url": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth-3-the-warrior/4000-25334/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465765/", - "id": 465765, - "name": "The Potion of Kathpuur", - "site_detail_url": "https://comicvine.gamespot.com/talent-showcase-16-the-potion-of-kathpuur/4000-465765/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196228/", - "id": 196228, - "name": "The Captive!", - "site_detail_url": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth-2-the-captive/4000-196228/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205160/", - "id": 205160, - "name": "Enigmas ; The Binding Hymn of Incorruption!", - "site_detail_url": "https://comicvine.gamespot.com/starslayer-26-enigmas-the-binding-hymn-of-incorrup/4000-205160/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25244/", - "id": 25244, - "name": "Mysteries ; The Poet, the Child, and the Lover...!", - "site_detail_url": "https://comicvine.gamespot.com/starslayer-25-mysteries-the-poet-the-child-and-the/4000-25244/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25245/", - "id": 25245, - "name": "The Final Battle", - "site_detail_url": "https://comicvine.gamespot.com/warp-19-the-final-battle/4000-25245/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25130/", - "id": 25130, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/new-talent-showcase-13/4000-25130/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24978/", - "id": 24978, - "name": "My Brother's Keeper", - "site_detail_url": "https://comicvine.gamespot.com/warp-18-my-brother-s-keeper/4000-24978/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395639/", - "id": 395639, - "name": "The White Pteron", - "site_detail_url": "https://comicvine.gamespot.com/legends-of-arzach-2-the-white-pteron/4000-395639/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404129/", - "id": 404129, - "name": "", - "site_detail_url": "https://comicvine.gamespot.com/ozma-von-oz-1/4000-404129/" - } - ], - "name": "Eric Shanower", - "site_detail_url": "https://comicvine.gamespot.com/eric-shanower/4040-1280/", - "story_arc_credits": [ - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57899/", - "id": 57899, - "name": "Futures End", - "site_detail_url": "https://comicvine.gamespot.com/futures-end/4045-57899/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58021/", - "id": 58021, - "name": "The River", - "site_detail_url": "https://comicvine.gamespot.com/the-river/4045-58021/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58100/", - "id": 58100, - "name": "Godhead", - "site_detail_url": "https://comicvine.gamespot.com/godhead/4045-58100/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57992/", - "id": 57992, - "name": "Happily Ever After", - "site_detail_url": "https://comicvine.gamespot.com/happily-ever-after/4045-57992/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56755/", - "id": 56755, - "name": "The Way of the Warrior", - "site_detail_url": "https://comicvine.gamespot.com/the-way-of-the-warrior/4045-56755/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58191/", - "id": 58191, - "name": "Mega-City Manhunt", - "site_detail_url": "https://comicvine.gamespot.com/mega-city-manhunt/4045-58191/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58233/", - "id": 58233, - "name": "Smoak Signals", - "site_detail_url": "https://comicvine.gamespot.com/smoak-signals/4045-58233/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58254/", - "id": 58254, - "name": "Disco Inferno", - "site_detail_url": "https://comicvine.gamespot.com/disco-inferno/4045-58254/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58262/", - "id": 58262, - "name": "A Stand Up Guy", - "site_detail_url": "https://comicvine.gamespot.com/a-stand-up-guy/4045-58262/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55776/", - "id": 55776, - "name": "Panther's Rage", - "site_detail_url": "https://comicvine.gamespot.com/panthers-rage/4045-55776/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58331/", - "id": 58331, - "name": "Alignment: Earth", - "site_detail_url": "https://comicvine.gamespot.com/alignment-earth/4045-58331/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58396/", - "id": 58396, - "name": "Dandelion", - "site_detail_url": "https://comicvine.gamespot.com/dandelion/4045-58396/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58688/", - "id": 58688, - "name": "Die For Me", - "site_detail_url": "https://comicvine.gamespot.com/die-for-me/4045-58688/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58879/", - "id": 58879, - "name": "Civil War II", - "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii/4045-58879/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59091/", - "id": 59091, - "name": "Family Matters", - "site_detail_url": "https://comicvine.gamespot.com/family-matters/4045-59091/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59271/", - "id": 59271, - "name": "Made In Manhattan", - "site_detail_url": "https://comicvine.gamespot.com/made-in-manhattan/4045-59271/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59324/", - "id": 59324, - "name": "The Trial of the Seven Masters", - "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-the-seven-masters/4045-59324/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57882/", - "id": 57882, - "name": "Rage", - "site_detail_url": "https://comicvine.gamespot.com/rage/4045-57882/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59570/", - "id": 59570, - "name": "Raptor's Revenge", - "site_detail_url": "https://comicvine.gamespot.com/raptors-revenge/4045-59570/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59685/", - "id": 59685, - "name": "The PEOPLE vs. JUSTICE LEAGUE", - "site_detail_url": "https://comicvine.gamespot.com/the-people-vs-justice-league/4045-59685/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59605/", - "id": 59605, - "name": "Caged!", - "site_detail_url": "https://comicvine.gamespot.com/caged/4045-59605/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59627/", - "id": 59627, - "name": "The Dying Light", - "site_detail_url": "https://comicvine.gamespot.com/the-dying-light/4045-59627/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59604/", - "id": 59604, - "name": "The Search For Tony Stark", - "site_detail_url": "https://comicvine.gamespot.com/the-search-for-tony-stark/4045-59604/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59755/", - "id": 59755, - "name": "Milk Wars", - "site_detail_url": "https://comicvine.gamespot.com/milk-wars/4045-59755/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59568/", - "id": 59568, - "name": "Bad Egg", - "site_detail_url": "https://comicvine.gamespot.com/bad-egg/4045-59568/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56692/", - "id": 56692, - "name": "Knuckles Quest", - "site_detail_url": "https://comicvine.gamespot.com/knuckles-quest/4045-56692/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60278/", - "id": 60278, - "name": "Year of the Villain", - "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain/4045-60278/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60329/", - "id": 60329, - "name": "Challenge of the Ghost Riders", - "site_detail_url": "https://comicvine.gamespot.com/challenge-of-the-ghost-riders/4045-60329/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60407/", - "id": 60407, - "name": "Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz/4045-60407/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60420/", - "id": 60420, - "name": "The Pit", - "site_detail_url": "https://comicvine.gamespot.com/the-pit/4045-60420/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60551/", - "id": 60551, - "name": "Doomed", - "site_detail_url": "https://comicvine.gamespot.com/doomed/4045-60551/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60946/", - "id": 60946, - "name": "Jaspers' Warp", - "site_detail_url": "https://comicvine.gamespot.com/jaspers-warp/4045-60946/" - } - ], - "volume_credits": [ - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3289/", - "id": 3289, - "name": "Warp", - "site_detail_url": "https://comicvine.gamespot.com/warp/4050-3289/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3315/", - "id": 3315, - "name": "New Talent Showcase", - "site_detail_url": "https://comicvine.gamespot.com/new-talent-showcase/4050-3315/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3288/", - "id": 3288, - "name": "Starslayer", - "site_detail_url": "https://comicvine.gamespot.com/starslayer/4050-3288/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3440/", - "id": 3440, - "name": "Conqueror of the Barren Earth", - "site_detail_url": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth/4050-3440/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3563/", - "id": 3563, - "name": "Nexus", - "site_detail_url": "https://comicvine.gamespot.com/nexus/4050-3563/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3560/", - "id": 3560, - "name": "Badger", - "site_detail_url": "https://comicvine.gamespot.com/badger/4050-3560/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3616/", - "id": 3616, - "name": "Secret Origins", - "site_detail_url": "https://comicvine.gamespot.com/secret-origins/4050-3616/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3973/", - "id": 3973, - "name": "Action Comics Weekly", - "site_detail_url": "https://comicvine.gamespot.com/action-comics-weekly/4050-3973/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4284/", - "id": 4284, - "name": "Badger Goes Berserk", - "site_detail_url": "https://comicvine.gamespot.com/badger-goes-berserk/4050-4284/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3987/", - "id": 3987, - "name": "Christmas With the Super-Heroes", - "site_detail_url": "https://comicvine.gamespot.com/christmas-with-the-super-heroes/4050-3987/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4058/", - "id": 4058, - "name": "Marvel Comics Presents", - "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4392/", - "id": 4392, - "name": "The Elsewhere Prince", - "site_detail_url": "https://comicvine.gamespot.com/the-elsewhere-prince/4050-4392/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4539/", - "id": 4539, - "name": "Aquaman", - "site_detail_url": "https://comicvine.gamespot.com/aquaman/4050-4539/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3739/", - "id": 3739, - "name": "Dark Horse Presents", - "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents/4050-3739/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4297/", - "id": 4297, - "name": "Cheval Noir", - "site_detail_url": "https://comicvine.gamespot.com/cheval-noir/4050-4297/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5377/", - "id": 5377, - "name": "Classic Star Wars: The Early Adventures", - "site_detail_url": "https://comicvine.gamespot.com/classic-star-wars-the-early-adventures/4050-5377/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6157/", - "id": 6157, - "name": "Gangland", - "site_detail_url": "https://comicvine.gamespot.com/gangland/4050-6157/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7450/", - "id": 7450, - "name": "Weird War Tales", - "site_detail_url": "https://comicvine.gamespot.com/weird-war-tales/4050-7450/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9440/", - "id": 9440, - "name": "Age of Bronze", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze/4050-9440/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7211/", - "id": 7211, - "name": "Green Lantern Secret Files", - "site_detail_url": "https://comicvine.gamespot.com/green-lantern-secret-files/4050-7211/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18252/", - "id": 18252, - "name": "Tomorrow Stories Special", - "site_detail_url": "https://comicvine.gamespot.com/tomorrow-stories-special/4050-18252/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9723/", - "id": 9723, - "name": "Fables", - "site_detail_url": "https://comicvine.gamespot.com/fables/4050-9723/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18757/", - "id": 18757, - "name": "King Tiger & Motorhead", - "site_detail_url": "https://comicvine.gamespot.com/king-tiger-motorhead/4050-18757/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18750/", - "id": 18750, - "name": "Motorhead", - "site_detail_url": "https://comicvine.gamespot.com/motorhead/4050-18750/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20005/", - "id": 20005, - "name": "Secret Origins of the World's Greatest Super-Heroes", - "site_detail_url": "https://comicvine.gamespot.com/secret-origins-of-the-world-s-greatest-super-heroe/4050-20005/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20244/", - "id": 20244, - "name": "The DC Comics Encyclopedia", - "site_detail_url": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20750/", - "id": 20750, - "name": "Age of Bronze: A Thousand Ships", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships/4050-20750/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20766/", - "id": 20766, - "name": "Star Wars: The Last Command", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command/4050-20766/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21168/", - "id": 21168, - "name": "Dark Horse Heroes Omnibus", - "site_detail_url": "https://comicvine.gamespot.com/dark-horse-heroes-omnibus/4050-21168/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19954/", - "id": 19954, - "name": "Who's Who in the DC Universe", - "site_detail_url": "https://comicvine.gamespot.com/whos-who-in-the-dc-universe/4050-19954/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21409/", - "id": 21409, - "name": "The Blue Witch of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-blue-witch-of-oz/4050-21409/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21474/", - "id": 21474, - "name": "WildC.A.T.S Sourcebook", - "site_detail_url": "https://comicvine.gamespot.com/wildcats-sourcebook/4050-21474/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6504/", - "id": 6504, - "name": "Iron Man", - "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-6504/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18197/", - "id": 18197, - "name": "Who's Who: The Definitive Directory of the DC Universe", - "site_detail_url": "https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4050-18197/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22379/", - "id": 22379, - "name": "The Big Book of Urban Legends", - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-urban-legends/4050-22379/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22777/", - "id": 22777, - "name": "Accidental Death", - "site_detail_url": "https://comicvine.gamespot.com/accidental-death/4050-22777/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19488/", - "id": 19488, - "name": "Elvira's House of Mystery", - "site_detail_url": "https://comicvine.gamespot.com/elviras-house-of-mystery/4050-19488/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24156/", - "id": 24156, - "name": "Alan Moore: Portrait of an Extraordinary Gentleman", - "site_detail_url": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman/4050-24156/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24225/", - "id": 24225, - "name": "Indiana Jones and the Golden Fleece", - "site_detail_url": "https://comicvine.gamespot.com/indiana-jones-and-the-golden-fleece/4050-24225/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24231/", - "id": 24231, - "name": "Out of the Vortex", - "site_detail_url": "https://comicvine.gamespot.com/out-of-the-vortex/4050-24231/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24615/", - "id": 24615, - "name": "The Wonderful Wizard of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz/4050-24615/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25042/", - "id": 25042, - "name": "Adventures In Oz", - "site_detail_url": "https://comicvine.gamespot.com/adventures-in-oz/4050-25042/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25076/", - "id": 25076, - "name": "America's Best Comics 64 Page Giant", - "site_detail_url": "https://comicvine.gamespot.com/americas-best-comics-64-page-giant/4050-25076/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25648/", - "id": 25648, - "name": "Wetworks Sourcebook", - "site_detail_url": "https://comicvine.gamespot.com/wetworks-sourcebook/4050-25648/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25700/", - "id": 25700, - "name": "Vertigo Visions: Prez", - "site_detail_url": "https://comicvine.gamespot.com/vertigo-visions-prez/4050-25700/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25726/", - "id": 25726, - "name": "Transmetropolitan: Filth of the City", - "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-filth-of-the-city/4050-25726/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25772/", - "id": 25772, - "name": "Aquaman Special", - "site_detail_url": "https://comicvine.gamespot.com/aquaman-special/4050-25772/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26589/", - "id": 26589, - "name": "WildStorm Rarities", - "site_detail_url": "https://comicvine.gamespot.com/wildstorm-rarities/4050-26589/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26831/", - "id": 26831, - "name": "The Big Book of the 70's", - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-the-70s/4050-26831/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26859/", - "id": 26859, - "name": "The Big Book of the Unexplained", - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-the-unexplained/4050-26859/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26861/", - "id": 26861, - "name": "The Big Book of Freaks", - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-freaks/4050-26861/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27337/", - "id": 27337, - "name": "Fables: Sons of Empire", - "site_detail_url": "https://comicvine.gamespot.com/fables-sons-of-empire/4050-27337/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28001/", - "id": 28001, - "name": "Green Lantern/Superman: Legend of the Green Flame", - "site_detail_url": "https://comicvine.gamespot.com/green-lanternsuperman-legend-of-the-green-flame/4050-28001/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28350/", - "id": 28350, - "name": "Star Wars: The Last Command", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-command/4050-28350/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28619/", - "id": 28619, - "name": "The Wonderful Wizard of Oz Sketchbook", - "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook/4050-28619/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29301/", - "id": 29301, - "name": "The Marvelous Land of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz/4050-29301/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30926/", - "id": 30926, - "name": "Oz: The Wonderful Wizard Of Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz/4050-30926/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32017/", - "id": 32017, - "name": "The Forgotten Forest Of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-forgotten-forest-of-oz/4050-32017/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32033/", - "id": 32033, - "name": "Wonderful Wizard of Oz MGC", - "site_detail_url": "https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc/4050-32033/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32073/", - "id": 32073, - "name": "JLA Gallery", - "site_detail_url": "https://comicvine.gamespot.com/jla-gallery/4050-32073/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32201/", - "id": 32201, - "name": "Age of Bronze Special", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-special/4050-32201/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32571/", - "id": 32571, - "name": "Image Firsts: Age of Bronze", - "site_detail_url": "https://comicvine.gamespot.com/image-firsts-age-of-bronze/4050-32571/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32881/", - "id": 32881, - "name": "Within Our Reach", - "site_detail_url": "https://comicvine.gamespot.com/within-our-reach/4050-32881/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33807/", - "id": 33807, - "name": "Little Adventures in Oz", - "site_detail_url": "https://comicvine.gamespot.com/little-adventures-in-oz/4050-33807/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34224/", - "id": 34224, - "name": "Comics' Greatest World: Vortex", - "site_detail_url": "https://comicvine.gamespot.com/comics-greatest-world-vortex/4050-34224/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34077/", - "id": 34077, - "name": "The Ice King of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-ice-king-of-oz/4050-34077/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35475/", - "id": 35475, - "name": "The Big Book of Bad", - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-bad/4050-35475/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33224/", - "id": 33224, - "name": "The Big Book Of Hoaxes", - "site_detail_url": "https://comicvine.gamespot.com/the-big-book-of-hoaxes/4050-33224/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36477/", - "id": 36477, - "name": "Ozma of Oz", - "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz/4050-36477/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37552/", - "id": 37552, - "name": "Harlan Ellison's Dream Corridor", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor/4050-37552/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37940/", - "id": 37940, - "name": "Catwoman: Crooked Little Town", - "site_detail_url": "https://comicvine.gamespot.com/catwoman-crooked-little-town/4050-37940/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38458/", - "id": 38458, - "name": "The Enchanted Apples of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-enchanted-apples-of-oz/4050-38458/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38461/", - "id": 38461, - "name": "The Secret Island of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-secret-island-of-oz/4050-38461/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38942/", - "id": 38942, - "name": "Transmetropolitan", - "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan/4050-38942/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40205/", - "id": 40205, - "name": "Harlan Ellison's Dream Corridor Special", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-special/4050-40205/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40222/", - "id": 40222, - "name": "Harlan Ellison's Dream Corridor Quarterly", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-quarterly/4050-40222/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31888/", - "id": 31888, - "name": "Amazing Heroes Swimsuit Special", - "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special/4050-31888/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43157/", - "id": 43157, - "name": "Oz Primer", - "site_detail_url": "https://comicvine.gamespot.com/oz-primer/4050-43157/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43206/", - "id": 43206, - "name": "Dorothy & the Wizard in Oz", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz/4050-43206/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43296/", - "id": 43296, - "name": "Star Wars Essentials", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-essentials/4050-43296/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43861/", - "id": 43861, - "name": "Star Wars: The Thrawn Trilogy", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-thrawn-trilogy/4050-43861/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43917/", - "id": 43917, - "name": "America's Best Comics", - "site_detail_url": "https://comicvine.gamespot.com/americas-best-comics/4050-43917/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44513/", - "id": 44513, - "name": "Fables: Super Team", - "site_detail_url": "https://comicvine.gamespot.com/fables-super-team/4050-44513/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33609/", - "id": 33609, - "name": "Absolute Promethea", - "site_detail_url": "https://comicvine.gamespot.com/absolute-promethea/4050-33609/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47369/", - "id": 47369, - "name": "Dorothy of Oz Prequel", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel/4050-47369/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47704/", - "id": 47704, - "name": "Alien Worlds", - "site_detail_url": "https://comicvine.gamespot.com/alien-worlds/4050-47704/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48047/", - "id": 48047, - "name": "Nexus: Two", - "site_detail_url": "https://comicvine.gamespot.com/nexus-two/4050-48047/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51870/", - "id": 51870, - "name": "Road to Oz", - "site_detail_url": "https://comicvine.gamespot.com/road-to-oz/4050-51870/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52215/", - "id": 52215, - "name": "Age of Bronze - Behind the Scenes", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-behind-the-scenes/4050-52215/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18527/", - "id": 18527, - "name": "Bart Simpson", - "site_detail_url": "https://comicvine.gamespot.com/bart-simpson/4050-18527/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53937/", - "id": 53937, - "name": "Dorothy of Oz Prequel", - "site_detail_url": "https://comicvine.gamespot.com/dorothy-of-oz-prequel/4050-53937/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54124/", - "id": 54124, - "name": "Nexus Omnibus", - "site_detail_url": "https://comicvine.gamespot.com/nexus-omnibus/4050-54124/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54261/", - "id": 54261, - "name": "Oz: Marvelous Land of Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz-marvelous-land-of-oz/4050-54261/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54505/", - "id": 54505, - "name": "Oz: Dorothy and the Wizard in Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz/4050-54505/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54506/", - "id": 54506, - "name": "Oz: Ozma of Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz-ozma-of-oz/4050-54506/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31847/", - "id": 31847, - "name": "Amazing Heroes", - "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes/4050-31847/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58087/", - "id": 58087, - "name": "Der Zauberer von Oz", - "site_detail_url": "https://comicvine.gamespot.com/der-zauberer-von-oz/4050-58087/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59493/", - "id": 59493, - "name": "Legends of Arzach", - "site_detail_url": "https://comicvine.gamespot.com/legends-of-arzach/4050-59493/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59536/", - "id": 59536, - "name": "Visions of Arzach", - "site_detail_url": "https://comicvine.gamespot.com/visions-of-arzach/4050-59536/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44812/", - "id": 44812, - "name": "Oz: Road to Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz-road-to-oz/4050-44812/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61689/", - "id": 61689, - "name": "Ozma von Oz", - "site_detail_url": "https://comicvine.gamespot.com/ozma-von-oz/4050-61689/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19126/", - "id": 19126, - "name": "Oni Double Feature", - "site_detail_url": "https://comicvine.gamespot.com/oni-double-feature/4050-19126/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64686/", - "id": 64686, - "name": "The Emerald City of Oz", - "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz/4050-64686/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65966/", - "id": 65966, - "name": "Age of Bronze: Betrayal", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-betrayal/4050-65966/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65972/", - "id": 65972, - "name": "Age of Bronze: Sacrifice", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-sacrifice/4050-65972/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2194/", - "id": 2194, - "name": "Creepy", - "site_detail_url": "https://comicvine.gamespot.com/creepy/4050-2194/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71309/", - "id": 71309, - "name": "Spandex Tights Summer Fun", - "site_detail_url": "https://comicvine.gamespot.com/spandex-tights-summer-fun/4050-71309/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72187/", - "id": 72187, - "name": "Oz: The Emerald City Of Oz", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-emerald-city-of-oz/4050-72187/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72589/", - "id": 72589, - "name": "Legends of Oz: Dorothy's Return", - "site_detail_url": "https://comicvine.gamespot.com/legends-of-oz-dorothys-return/4050-72589/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76545/", - "id": 76545, - "name": "Little Nemo: Return to Slumberland", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland/4050-76545/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76818/", - "id": 76818, - "name": "Oz Omnibus", - "site_detail_url": "https://comicvine.gamespot.com/oz-omnibus/4050-76818/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3467/", - "id": 3467, - "name": "Talent Showcase", - "site_detail_url": "https://comicvine.gamespot.com/talent-showcase/4050-3467/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78555/", - "id": 78555, - "name": "Adventures In Oz", - "site_detail_url": "https://comicvine.gamespot.com/adventures-in-oz/4050-78555/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81598/", - "id": 81598, - "name": "Fables: Happily Ever After", - "site_detail_url": "https://comicvine.gamespot.com/fables-happily-ever-after/4050-81598/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82182/", - "id": 82182, - "name": "Harlan Ellison's Dream Corridor", - "site_detail_url": "https://comicvine.gamespot.com/harlan-ellison-s-dream-corridor/4050-82182/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82692/", - "id": 82692, - "name": "Little Nemo: Return To Slumberland", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland/4050-82692/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87457/", - "id": 87457, - "name": "Worlds of Color: Welcome to Oz Adult Coloring Book", - "site_detail_url": "https://comicvine.gamespot.com/worlds-of-color-welcome-to-oz-adult-coloring-book/4050-87457/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40871/", - "id": 40871, - "name": "Fables", - "site_detail_url": "https://comicvine.gamespot.com/fables/4050-40871/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28208/", - "id": 28208, - "name": "Fables: The Deluxe Edition", - "site_detail_url": "https://comicvine.gamespot.com/fables-the-deluxe-edition/4050-28208/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90884/", - "id": 90884, - "name": "Prez: The First Teen President", - "site_detail_url": "https://comicvine.gamespot.com/prez-the-first-teen-president/4050-90884/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91265/", - "id": 91265, - "name": "Little Nemo: Return To Slumberland Deluxe Edition", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-deluxe-edition/4050-91265/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97757/", - "id": 97757, - "name": "The Life and Adventures of Santa Claus", - "site_detail_url": "https://comicvine.gamespot.com/the-life-and-adventures-of-santa-claus/4050-97757/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103039/", - "id": 103039, - "name": "Clásicos Ilustrados Marvel. El Mago de Oz", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-mago-de-oz/4050-103039/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103048/", - "id": 103048, - "name": "Clásicos Ilustrados Marvel. El Maravilloso Mundo de Oz", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-maravilloso-mundo-de/4050-103048/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103057/", - "id": 103057, - "name": "Clásicos Ilustrados Marvel. Ozma de Oz", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-ozma-de-oz/4050-103057/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103060/", - "id": 103060, - "name": "Clásicos Ilustrados Marvel. Dorothy y el Mago en Oz", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-dorothy-y-el-mago-en-oz/4050-103060/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103062/", - "id": 103062, - "name": "Clásicos Ilustrados Marvel. El Camino a Oz", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-camino-a-oz/4050-103062/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103065/", - "id": 103065, - "name": "Clásicos Ilustrados Marvel. La Ciudad Esmeralda de Oz", - "site_detail_url": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-la-ciudad-esmeralda-de-/4050-103065/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107614/", - "id": 107614, - "name": "MINE! A Celebration of Liberty And Freedom For All Benefiting Planned Parenthood", - "site_detail_url": "https://comicvine.gamespot.com/mine-a-celebration-of-liberty-and-freedom-for-all-/4050-107614/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109306/", - "id": 109306, - "name": "Aquaman: The Legend of Aquaman", - "site_detail_url": "https://comicvine.gamespot.com/aquaman-the-legend-of-aquaman/4050-109306/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110230/", - "id": 110230, - "name": "Image Firsts: Age of Bronze", - "site_detail_url": "https://comicvine.gamespot.com/image-firsts-age-of-bronze/4050-110230/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112168/", - "id": 112168, - "name": "Casper & Hot Stuff", - "site_detail_url": "https://comicvine.gamespot.com/casper-and-hot-stuff/4050-112168/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113229/", - "id": 113229, - "name": "Casper's Ghostland", - "site_detail_url": "https://comicvine.gamespot.com/caspers-ghostland/4050-113229/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113265/", - "id": 113265, - "name": "The Three Stooges: Matinee Madness", - "site_detail_url": "https://comicvine.gamespot.com/the-three-stooges-matinee-madness/4050-113265/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113457/", - "id": 113457, - "name": "Age of Bronze: A Thousand Ships", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships/4050-113457/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26370/", - "id": 26370, - "name": "Back Issue", - "site_detail_url": "https://comicvine.gamespot.com/back-issue/4050-26370/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81966/", - "id": 81966, - "name": "Star Wars Legends Epic Collection: The New Republic", - "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4050-81966/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106664/", - "id": 106664, - "name": "Barbarella", - "site_detail_url": "https://comicvine.gamespot.com/barbarella/4050-106664/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118747/", - "id": 118747, - "name": "Casper's Spooksville FCBD Edition", - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville-fcbd-edition/4050-118747/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118874/", - "id": 118874, - "name": "The Three Stooges: AstroNuts", - "site_detail_url": "https://comicvine.gamespot.com/the-three-stooges-astronuts/4050-118874/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119637/", - "id": 119637, - "name": "Casper's Spooksville", - "site_detail_url": "https://comicvine.gamespot.com/caspers-spooksville/4050-119637/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119895/", - "id": 119895, - "name": "Little Nemo – Rückkehr ins Schlummerland", - "site_detail_url": "https://comicvine.gamespot.com/little-nemo-ruckkehr-ins-schlummerland/4050-119895/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122854/", - "id": 122854, - "name": "Casper the Friendly Ghost: Haunted Hijinks", - "site_detail_url": "https://comicvine.gamespot.com/casper-the-friendly-ghost-haunted-hijinks/4050-122854/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123282/", - "id": 123282, - "name": "Iron Man: The Mask In the Iron Man Omnibus", - "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-omnibus/4050-123282/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123871/", - "id": 123871, - "name": "Oz: The Complete Collection", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection/4050-123871/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125103/", - "id": 125103, - "name": "Age of Bronze: Sacrifice", - "site_detail_url": "https://comicvine.gamespot.com/age-of-bronze-sacrifice/4050-125103/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125331/", - "id": 125331, - "name": "Laurel & Hardey Meet The Three Stooges", - "site_detail_url": "https://comicvine.gamespot.com/laurel-and-hardey-meet-the-three-stooges/4050-125331/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129256/", - "id": 129256, - "name": "Oz: The Complete Collection – Ozma/Dorothy & The Wizard", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4050-129256/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132057/", - "id": 132057, - "name": "Oz Integral", - "site_detail_url": "https://comicvine.gamespot.com/oz-integral/4050-132057/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132322/", - "id": 132322, - "name": "Oz: The Complete Collection - Road To/Emerald City", - "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city/4050-132322/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132417/", - "id": 132417, - "name": "Laurel and Hardy: Christmas Follies", - "site_detail_url": "https://comicvine.gamespot.com/laurel-and-hardy-christmas-follies/4050-132417/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132502/", - "id": 132502, - "name": "Hey, Amateur!", - "site_detail_url": "https://comicvine.gamespot.com/hey-amateur/4050-132502/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133709/", - "id": 133709, - "name": "The Three Stooges: Thru the Ages", - "site_detail_url": "https://comicvine.gamespot.com/the-three-stooges-thru-the-ages/4050-133709/" - }, - { - "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135716/", - "id": 135716, - "name": "The Robonic Stooges", - "site_detail_url": "https://comicvine.gamespot.com/the-robonic-stooges/4050-135716/" - } - ], - "website": "http://www.ericshanower.com/es/index.shtml" - }, - "version": "1.0" -} diff --git a/packages/client/src/__mocks__/expected-responses/person-details.json b/packages/client/src/__mocks__/expected-responses/person-details.json deleted file mode 100644 index 8cc2dde..0000000 --- a/packages/client/src/__mocks__/expected-responses/person-details.json +++ /dev/null @@ -1,2889 +0,0 @@ -{ - "aliases": null, - "apiDetailUrl": "https://comicvine.gamespot.com/api/person/4040-1280/", - "birth": "1963-10-23 00:00:00", - "countOfIsssueAppearances": null, - "country": "United States", - "createdCharacters": [ - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-88073/", - "id": 88073, - "name": "Abatha", - "siteDetailUrl": "https://comicvine.gamespot.com/abatha/4005-88073/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-120765/", - "id": 120765, - "name": "Crystal Gazer", - "siteDetailUrl": "https://comicvine.gamespot.com/crystal-gazer/4005-120765/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-25376/", - "id": 25376, - "name": "Flicker", - "siteDetailUrl": "https://comicvine.gamespot.com/flicker/4005-25376/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-21493/", - "id": 21493, - "name": "Ice King", - "siteDetailUrl": "https://comicvine.gamespot.com/ice-king/4005-21493/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-16756/", - "id": 16756, - "name": "Nelanthe", - "siteDetailUrl": "https://comicvine.gamespot.com/nelanthe/4005-16756/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-21492/", - "id": 21492, - "name": "Nightshade", - "siteDetailUrl": "https://comicvine.gamespot.com/nightshade/4005-21492/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-118332/", - "id": 118332, - "name": "Se'adet", - "siteDetailUrl": "https://comicvine.gamespot.com/se-adet/4005-118332/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-79439/", - "id": 79439, - "name": "Stalker", - "siteDetailUrl": "https://comicvine.gamespot.com/stalker/4005-79439/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-25381/", - "id": 25381, - "name": "Troll King", - "siteDetailUrl": "https://comicvine.gamespot.com/troll-king/4005-25381/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-88978/", - "id": 88978, - "name": "Valynn", - "siteDetailUrl": "https://comicvine.gamespot.com/valynn/4005-88978/" - } - ], - "dateAdded": "2008-06-06 11:28:11", - "dateLastUpdated": "2013-03-08 20:26:56", - "death": null, - "deck": null, - "description": null, - "email": null, - "gender": 1, - "hometown": null, - "id": 1280, - "image": { - "iconUrl": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1269916-2893.jpg", - "mediumUrl": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1269916-2893.jpg", - "screenUrl": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1269916-2893.jpg", - "screenLargeUrl": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1269916-2893.jpg", - "smallUrl": "https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1269916-2893.jpg", - "superUrl": "https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1269916-2893.jpg", - "thumbUrl": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1269916-2893.jpg", - "tinyUrl": "https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1269916-2893.jpg", - "originalUrl": "https://comicvine.gamespot.com/a/uploads/original/0/77/1269916-2893.jpg", - "imageTags": "All Images" - }, - "issues": [ - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-882324/", - "id": 882324, - "name": "Fantastic Fools", - "siteDetailUrl": "https://comicvine.gamespot.com/the-robonic-stooges-2-fantastic-fools/4000-882324/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-845771/", - "id": 845771, - "name": "The Imbicile Gauntlet", - "siteDetailUrl": "https://comicvine.gamespot.com/the-robonic-stooges-1-the-imbicile-gauntlet/4000-845771/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-828093/", - "id": 828093, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-three-stooges-thru-the-ages-1/4000-828093/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-820155/", - "id": 820155, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/laurel-and-hardy-christmas-follies-1/4000-820155/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-819829/", - "id": 819829, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city-1-t/4000-819829/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-820711/", - "id": 820711, - "name": "GN", - "siteDetailUrl": "https://comicvine.gamespot.com/hey-amateur-1-gn/4000-820711/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-787821/", - "id": 787821, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4000-787821/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-766414/", - "id": 766414, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville-4/4000-766414/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-740726/", - "id": 740726, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville-3/4000-740726/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-738871/", - "id": 738871, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/laurel-and-hardey-meet-the-three-stooges-1/4000-738871/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-737626/", - "id": 737626, - "name": "Book 2", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-sacrifice-1-book-2/4000-737626/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-736515/", - "id": 736515, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville-2/4000-736515/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-731992/", - "id": 731992, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-complete-collection-1-tpb/4000-731992/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-729698/", - "id": 729698, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-1-hc/4000-729698/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-727537/", - "id": 727537, - "name": "Volume One", - "siteDetailUrl": "https://comicvine.gamespot.com/casper-the-friendly-ghost-haunted-hijinks-1-volume/4000-727537/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-711379/", - "id": 711379, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville-1/4000-711379/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-708187/", - "id": 708187, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-three-stooges-astronuts-1/4000-708187/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-707837/", - "id": 707837, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville-fcbd-edition-1/4000-707837/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-707420/", - "id": 707420, - "name": "Betrayal Part 15", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-34-betrayal-part-15/4000-707420/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-701339/", - "id": 701339, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-ghostland-2/4000-701339/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-693381/", - "id": 693381, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/barbarella-12/4000-693381/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-689056/", - "id": 689056, - "name": "Volume 4", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4000-689056/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-688257/", - "id": 688257, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/back-issue-108/4000-688257/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-684792/", - "id": 684792, - "name": "Book 1", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships-1-book-1/4000-684792/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-683779/", - "id": 683779, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-three-stooges-matinee-madness-1/4000-683779/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-683768/", - "id": 683768, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-ghostland-100-anniversary-issue-1/4000-683768/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-676586/", - "id": 676586, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/casper-and-hot-stuff-1/4000-676586/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-667686/", - "id": 667686, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/image-firsts-age-of-bronze-1/4000-667686/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-663536/", - "id": 663536, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-the-legend-of-aquaman-1-tpb/4000-663536/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-652122/", - "id": 652122, - "name": "HC/SC", - "siteDetailUrl": "https://comicvine.gamespot.com/mine-a-celebration-of-liberty-and-freedom-for-all-/4000-652122/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-641378/", - "id": 641378, - "name": "Book Fifteen", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-the-deluxe-edition-15-book-fifteen/4000-641378/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-818846/", - "id": 818846, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/oz-integral-1/4000-818846/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-574890/", - "id": 574890, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/the-life-and-adventures-of-santa-claus-1-hc/4000-574890/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-533015/", - "id": 533015, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/prez-the-first-teen-president-1-tpb/4000-533015/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-535260/", - "id": 535260, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-deluxe-edition-1/4000-535260/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-530701/", - "id": 530701, - "name": "Book Twelve", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-the-deluxe-edition-12-book-twelve/4000-530701/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-511545/", - "id": 511545, - "name": "SC", - "siteDetailUrl": "https://comicvine.gamespot.com/worlds-of-color-welcome-to-oz-adult-coloring-book-/4000-511545/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-712283/", - "id": 712283, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-ruckkehr-ins-schlummerland-1/4000-712283/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-492242/", - "id": 492242, - "name": "TPB/HC", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-1-tpbhc/4000-492242/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-487193/", - "id": 487193, - "name": "Volume 21", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-happily-ever-after-1-volume-21/4000-487193/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-482713/", - "id": 482713, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-4/4000-482713/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-472937/", - "id": 472937, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-3/4000-472937/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-471980/", - "id": 471980, - "name": "Volume 1", - "siteDetailUrl": "https://comicvine.gamespot.com/adventures-in-oz-1-volume-1/4000-471980/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-610280/", - "id": 610280, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-la-ciudad-esmeralda-de-/4000-610280/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-468924/", - "id": 468924, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-2/4000-468924/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-464230/", - "id": 464230, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-omnibus-1-hc/4000-464230/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-459659/", - "id": 459659, - "name": "Who's Afraid of the Big Bad Wolf? Chapter Two of Happily Ever After", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-142-whos-afraid-of-the-big-bad-wolf-chapter/4000-459659/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-462913/", - "id": 462913, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-1/4000-462913/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-436198/", - "id": 436198, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-emerald-city-of-oz-5/4000-436198/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-610277/", - "id": 610277, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-camino-a-oz-1/4000-610277/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-448997/", - "id": 448997, - "name": "GN", - "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-oz-dorothy-s-return-1-gn/4000-448997/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-447204/", - "id": 447204, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-emerald-city-of-oz-1-hc/4000-447204/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-432329/", - "id": 432329, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-emerald-city-of-oz-4/4000-432329/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-424533/", - "id": 424533, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-emerald-city-of-oz-3/4000-424533/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-526853/", - "id": 526853, - "name": "Das Superteam", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-19-das-superteam/4000-526853/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-420640/", - "id": 420640, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-emerald-city-of-oz-2/4000-420640/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-415238/", - "id": 415238, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-emerald-city-of-oz-1/4000-415238/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-610274/", - "id": 610274, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-dorothy-y-el-mago-en-oz/4000-610274/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-420229/", - "id": 420229, - "name": "Volume 4", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-betrayal-2-volume-4/4000-420229/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-415246/", - "id": 415246, - "name": "Betrayal Part 14", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-33-betrayal-part-14/4000-415246/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-390452/", - "id": 390452, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz-6/4000-390452/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-396608/", - "id": 396608, - "name": "HC/TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-road-to-oz-1-hc-tpb/4000-396608/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-384962/", - "id": 384962, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz-5/4000-384962/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-395230/", - "id": 395230, - "name": "Volume 2", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-omnibus-2-volume-2/4000-395230/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-377056/", - "id": 377056, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz-4/4000-377056/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-610272/", - "id": 610272, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-ozma-de-oz-1/4000-610272/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-366192/", - "id": 366192, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz-3/4000-366192/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-372431/", - "id": 372431, - "name": "The Story of the Trojan War: Betrayal Part 13", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-32-the-story-of-the-trojan-war-betra/4000-372431/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-360040/", - "id": 360040, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz-2/4000-360040/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-369067/", - "id": 369067, - "name": "Volume 1", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-omnibus-1-volume-1/4000-369067/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-355905/", - "id": 355905, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz-1/4000-355905/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-367749/", - "id": 367749, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-1-tpb/4000-367749/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-363123/", - "id": 363123, - "name": "Fund-Razing; Flight of Fantasy; Southern Fried Simpsons", - "siteDetailUrl": "https://comicvine.gamespot.com/simpsons-comics-presents-bart-simpson-76-fund-razi/4000-363123/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-371517/", - "id": 371517, - "name": "HC/TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz-1-hc-tpb/4000-371517/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-342874/", - "id": 342874, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-8/4000-342874/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-375180/", - "id": 375180, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-4/4000-375180/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-336600/", - "id": 336600, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-7/4000-336600/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-334326/", - "id": 334326, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-6/4000-334326/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-610261/", - "id": 610261, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-maravilloso-mundo-de/4000-610261/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-344191/", - "id": 344191, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-3/4000-344191/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-334483/", - "id": 334483, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-2/4000-334483/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-316790/", - "id": 316790, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-5/4000-316790/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-325108/", - "id": 325108, - "name": "The Jester and the Magic Scepter", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel-1-the-jester-and-the-magic-s/4000-325108/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-388977/", - "id": 388977, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/der-zauberer-von-oz-1/4000-388977/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-304737/", - "id": 304737, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-3/4000-304737/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-306586/", - "id": 306586, - "name": "Volume 16", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-super-team-1-volume-16/4000-306586/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-306588/", - "id": 306588, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/absolute-promethea-3/4000-306588/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-308553/", - "id": 308553, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-4/4000-308553/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-610207/", - "id": 610207, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-mago-de-oz-1/4000-610207/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-301006/", - "id": 301006, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-2/4000-301006/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-371518/", - "id": 371518, - "name": "HC/TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-ozma-of-oz-1-hc-tpb/4000-371518/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-278011/", - "id": 278011, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-8/4000-278011/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-294613/", - "id": 294613, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-and-the-wizard-in-oz-1/4000-294613/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-272415/", - "id": 272415, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-7/4000-272415/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-269814/", - "id": 269814, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-6/4000-269814/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-267610/", - "id": 267610, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-5/4000-267610/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-294337/", - "id": 294337, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-primer-1/4000-294337/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-260599/", - "id": 260599, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-4/4000-260599/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-255583/", - "id": 255583, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-3/4000-255583/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-259144/", - "id": 259144, - "name": "The Ascent", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-101-the-ascent/4000-259144/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-247614/", - "id": 247614, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-2/4000-247614/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-240914/", - "id": 240914, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz-1/4000-240914/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-254199/", - "id": 254199, - "name": "Betrayal 12", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-31-betrayal-12/4000-254199/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-226222/", - "id": 226222, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-8/4000-226222/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-369917/", - "id": 369917, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-marvelous-land-of-oz-1-hc/4000-369917/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-219573/", - "id": 219573, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-7/4000-219573/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-215354/", - "id": 215354, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-6/4000-215354/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-208791/", - "id": 208791, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-5/4000-208791/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-219507/", - "id": 219507, - "name": "Betrayal 11", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-30-betrayal-11/4000-219507/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-220211/", - "id": 220211, - "name": "Vol. 2", - "siteDetailUrl": "https://comicvine.gamespot.com/little-adventures-in-oz-2-vol-2/4000-220211/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-206682/", - "id": 206682, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/image-firsts-age-of-bronze-1/4000-206682/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-198628/", - "id": 198628, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-4/4000-198628/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-296098/", - "id": 296098, - "name": "Mara Jade - Die Hand des Imperators", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-essentials-9-mara-jade-die-hand-des-impe/4000-296098/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-200988/", - "id": 200988, - "name": "The Wonderful Wizad Of OZ - part 1", - "siteDetailUrl": "https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc-1-the-wonderful-wizad-o/4000-200988/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-194829/", - "id": 194829, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-3/4000-194829/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-188248/", - "id": 188248, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-2/4000-188248/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-181099/", - "id": 181099, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz-1/4000-181099/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-220210/", - "id": 220210, - "name": "Vol. 1", - "siteDetailUrl": "https://comicvine.gamespot.com/little-adventures-in-oz-1-vol-1/4000-220210/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-301288/", - "id": 301288, - "name": "The Thrawn Trilogy", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-thrawn-trilogy-1-the-thrawn-trilogy/4000-301288/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-296097/", - "id": 296097, - "name": "Das letzte Kommando", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-essentials-8-das-letzte-kommando/4000-296097/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-191311/", - "id": 191311, - "name": "HC", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz-1-hc/4000-191311/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-165506/", - "id": 165506, - "name": "Gifts From Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-8-gifts-from-oz/4000-165506/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-160727/", - "id": 160727, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-7/4000-160727/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-158124/", - "id": 158124, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-6/4000-158124/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-155641/", - "id": 155641, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-5/4000-155641/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-153462/", - "id": 153462, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-4/4000-153462/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-151831/", - "id": 151831, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-3/4000-151831/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-153689/", - "id": 153689, - "name": "Betrayal 9", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-28-betrayal-9/4000-153689/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-150068/", - "id": 150068, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-2/4000-150068/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-145606/", - "id": 145606, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-1/4000-145606/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-181451/", - "id": 181451, - "name": "Betrayal (Part 10)", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-29-betrayal-part-10/4000-181451/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-176333/", - "id": 176333, - "name": "One-Shot", - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook-1-one-shot/4000-176333/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-137390/", - "id": 137390, - "name": "War & Pieces, Part Three: The Fire Ship; Chapter Four: Fort Bravo!; Epilogue: Amnesty", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-75-war-pieces-part-three-the-fire-ship-chap/4000-137390/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-142868/", - "id": 142868, - "name": "Betrayal 8", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-27-betrayal-8/4000-142868/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-127170/", - "id": 127170, - "name": "Volume 1", - "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-heroes-omnibus-1-volume-1/4000-127170/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-420235/", - "id": 420235, - "name": "Volume 3", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-betrayal-1-volume-3/4000-420235/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114399/", - "id": 114399, - "name": "Betrayal 7", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-26-betrayal-7/4000-114399/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-166498/", - "id": 166498, - "name": "Volume 9", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-sons-of-empire-1-volume-9/4000-166498/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-110320/", - "id": 110320, - "name": "Burning Questions", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-59-burning-questions/4000-110320/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-490027/", - "id": 490027, - "name": "Vol. 2", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-vol-2/4000-490027/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-160064/", - "id": 160064, - "name": "Betrayal 6", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-25-betrayal-6/4000-160064/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-160063/", - "id": 160063, - "name": "Betrayal 5", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-24-betrayal-5/4000-160063/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-106891/", - "id": 106891, - "name": "The Lethal Luck Of The Magister Lad!; Little Margie In Misty Magic Land; Worlds Within Worlds; How Come Nobody Likes The First American These Days?;", - "siteDetailUrl": "https://comicvine.gamespot.com/tomorrow-stories-special-2-the-lethal-luck-of-the-/4000-106891/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-160062/", - "id": 160062, - "name": "Betrayal 4", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-23-betrayal-4/4000-160062/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-147939/", - "id": 147939, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/adventures-in-oz-1/4000-147939/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-160061/", - "id": 160061, - "name": "Betrayal 3", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-22-betrayal-3/4000-160061/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-160060/", - "id": 160060, - "name": "Betrayal 2", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-21-betrayal-2/4000-160060/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105292/", - "id": 105292, - "name": "Betrayal 1", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-20-betrayal-1/4000-105292/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-420236/", - "id": 420236, - "name": "Volume 2", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-sacrifice-1-volume-2/4000-420236/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105256/", - "id": 105256, - "name": "Sacrifice 10", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-19-sacrifice-10/4000-105256/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-120848/", - "id": 120848, - "name": "The DC Comics Encyclopedia", - "siteDetailUrl": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105255/", - "id": 105255, - "name": "Sacrifice 9", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-18-sacrifice-9/4000-105255/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105254/", - "id": 105254, - "name": "Sacrifice 8", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-17-sacrifice-8/4000-105254/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105253/", - "id": 105253, - "name": "Sacrifice 7", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-16-sacrifice-7/4000-105253/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-301843/", - "id": 301843, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/americas-best-comics-1-tpb/4000-301843/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-252827/", - "id": 252827, - "name": "Catwoman: Crooked Little Town", - "siteDetailUrl": "https://comicvine.gamespot.com/catwoman-crooked-little-town-1-catwoman-crooked-li/4000-252827/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-143491/", - "id": 143491, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105252/", - "id": 105252, - "name": "Sacrifice 6", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-15-sacrifice-6/4000-105252/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105251/", - "id": 105251, - "name": "Sacrifice 5", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-14-sacrifice-5/4000-105251/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78434/", - "id": 78434, - "name": "\"Hard-Loving Heroes\"", - "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-secret-files-3-hard-loving-heroes/4000-78434/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-357459/", - "id": 357459, - "name": "Special #2", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-behind-the-scenes-1-special-2/4000-357459/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78464/", - "id": 78464, - "name": "Sacrifice 4", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-13-sacrifice-4/4000-78464/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-261551/", - "id": 261551, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-23/4000-261551/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78463/", - "id": 78463, - "name": "Sacrifice 3", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-12-sacrifice-3/4000-78463/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-124442/", - "id": 124442, - "name": "Volume 1", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships-1-volume-1/4000-124442/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78462/", - "id": 78462, - "name": "Sacrifice 2", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-11-sacrifice-2/4000-78462/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-131886/", - "id": 131886, - "name": "Remote Control, Part 4", - "siteDetailUrl": "https://comicvine.gamespot.com/iron-man-40-remote-control-part-4/4000-131886/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-151462/", - "id": 151462, - "name": "Filth of the City", - "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-filth-of-the-city-1-filth-of-the/4000-151462/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78461/", - "id": 78461, - "name": "Sacrifice 1", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-10-sacrifice-1/4000-78461/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78460/", - "id": 78460, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-9/4000-78460/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-171670/", - "id": 171670, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/green-lanternsuperman-legend-of-the-green-flame-1/4000-171670/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78459/", - "id": 78459, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-8/4000-78459/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-161064/", - "id": 161064, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-the-70-s-1/4000-161064/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78458/", - "id": 78458, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-7/4000-78458/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78457/", - "id": 78457, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-6/4000-78457/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-148133/", - "id": 148133, - "name": "America's Best Comics 64 Page Giant", - "siteDetailUrl": "https://comicvine.gamespot.com/americas-best-comics-64-page-giant-1-americas-best/4000-148133/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77684/", - "id": 77684, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-5/4000-77684/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-202029/", - "id": 202029, - "name": "House of Horror", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-special-1-house-of-horror/4000-202029/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-124503/", - "id": 124503, - "name": "TPB", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command-1-tpb/4000-124503/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77683/", - "id": 77683, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-4/4000-77683/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77682/", - "id": 77682, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-3/4000-77682/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77681/", - "id": 77681, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-2/4000-77681/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77680/", - "id": 77680, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-1/4000-77680/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-407134/", - "id": 407134, - "name": "Road Trip Part 1 ; Satchel of Weltschmerz - The Body Of Social Part 2", - "siteDetailUrl": "https://comicvine.gamespot.com/oni-double-feature-9-road-trip-part-1-satchel-of-w/4000-407134/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45256/", - "id": 45256, - "name": "Gang Buff; Original Gangster; Small Time; Worldwide Gangster Robots", - "siteDetailUrl": "https://comicvine.gamespot.com/gangland-3-gang-buff-original-gangster-small-time-/4000-45256/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174613/", - "id": 174613, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command-6/4000-174613/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174612/", - "id": 174612, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command-5/4000-174612/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-234438/", - "id": 234438, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-bad-1/4000-234438/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174611/", - "id": 174611, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command-4/4000-174611/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174606/", - "id": 174606, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command-3/4000-174606/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174605/", - "id": 174605, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command-2/4000-174605/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-201216/", - "id": 201216, - "name": "JLA Gallery", - "siteDetailUrl": "https://comicvine.gamespot.com/jla-gallery-1-jla-gallery/4000-201216/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-52664/", - "id": 52664, - "name": "Book One", - "siteDetailUrl": "https://comicvine.gamespot.com/weird-war-tales-1-book-one/4000-52664/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-161208/", - "id": 161208, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-the-unexplained-1/4000-161208/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-903923/", - "id": 903923, - "name": "Vol. 1", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-1-vol-1/4000-903923/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-224384/", - "id": 224384, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/king-tiger-motorhead-2/4000-224384/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-270441/", - "id": 270441, - "name": "Harlan Ellison's Dream Corridor Quarterly #1", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-quarterly-1-harlan-/4000-270441/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-110876/", - "id": 110876, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/king-tiger-motorhead-1/4000-110876/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-161210/", - "id": 161210, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-freaks-1/4000-161210/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-119316/", - "id": 119316, - "name": "Side-Show Mentality", - "siteDetailUrl": "https://comicvine.gamespot.com/motorhead-6-side-show-mentality/4000-119316/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-151363/", - "id": 151363, - "name": "Prez: Smells Like Teen President", - "siteDetailUrl": "https://comicvine.gamespot.com/vertigo-visions-prez-1-prez-smells-like-teen-presi/4000-151363/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-443909/", - "id": 443909, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/spandex-tights-summer-fun-1/4000-443909/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249537/", - "id": 249537, - "name": "Harlan Ellison's Dream Corridor #5", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-5-harlan-ellisons-d/4000-249537/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249536/", - "id": 249536, - "name": "Harlan Ellison's Dream Corridor #4", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-4-harlan-ellisons-d/4000-249536/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249535/", - "id": 249535, - "name": "Harlan Ellison's Dream Corridor #3", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-3-harlan-ellisons-d/4000-249535/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249534/", - "id": 249534, - "name": "Harlan Ellison's Dream Corridor #2", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-harlan-ellisons-d/4000-249534/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249533/", - "id": 249533, - "name": "Harlan Ellison's Dream Corridor #1", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-1-harlan-ellisons-d/4000-249533/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-270397/", - "id": 270397, - "name": "Dream Corridor Special", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-special-1-dream-cor/4000-270397/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-51610/", - "id": 51610, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-6/4000-51610/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-237698/", - "id": 237698, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-hoaxes-1/4000-237698/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-159151/", - "id": 159151, - "name": "(various short stories)", - "siteDetailUrl": "https://comicvine.gamespot.com/wildstorm-rarities-1-various-short-stories/4000-159151/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-39732/", - "id": 39732, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-3/4000-39732/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-151182/", - "id": 151182, - "name": "Sourcebook", - "siteDetailUrl": "https://comicvine.gamespot.com/wetworks-sourcebook-1-sourcebook/4000-151182/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-143760/", - "id": 143760, - "name": "Chapter Two", - "siteDetailUrl": "https://comicvine.gamespot.com/indiana-jones-and-the-golden-fleece-2-chapter-two/4000-143760/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-143779/", - "id": 143779, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/out-of-the-vortex-6/4000-143779/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-134522/", - "id": 134522, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-urban-legends-1/4000-134522/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-136638/", - "id": 136638, - "name": "Original Graphic Novel", - "siteDetailUrl": "https://comicvine.gamespot.com/accidental-death-1-original-graphic-novel/4000-136638/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-129610/", - "id": 129610, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/wildcats-sourcebook-2/4000-129610/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-223224/", - "id": 223224, - "name": "Hero Zero", - "siteDetailUrl": "https://comicvine.gamespot.com/comics-greatest-world-vortex-2-hero-zero/4000-223224/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-37301/", - "id": 37301, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/cheval-noir-43/4000-37301/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-395876/", - "id": 395876, - "name": "Visions of Arzach", - "siteDetailUrl": "https://comicvine.gamespot.com/visions-of-arzach-1-visions-of-arzach/4000-395876/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-331826/", - "id": 331826, - "name": "Volume 2", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-two-1-volume-2/4000-331826/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-36346/", - "id": 36346, - "name": "Zoo-Lou vs. Editor / An Accidental Death / Nestrobber / Predator; Alec / The Selfish Giant", - "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents-67-zoo-lou-vs-editor-an-accide/4000-36346/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-36219/", - "id": 36219, - "name": "Concrete; Dr. Giggles; An Accidental Death; Alec", - "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents-66-concrete-dr-giggles-an-acci/4000-36219/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-129262/", - "id": 129262, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/the-blue-witch-of-oz-0/4000-129262/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-36099/", - "id": 36099, - "name": "An Accidental Death; Dr. Giggles; Interact-O-Rama", - "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents-65-an-accidental-death-dr-gigg/4000-36099/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-271713/", - "id": 271713, - "name": "Swimsuit Special", - "siteDetailUrl": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-3-swimsuit-special/4000-271713/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-35529/", - "id": 35529, - "name": "Best Friends", - "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-5-best-friends/4000-35529/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-211654/", - "id": 211654, - "name": "Within Our Reach", - "siteDetailUrl": "https://comicvine.gamespot.com/within-our-reach-1-within-our-reach/4000-211654/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-335340/", - "id": 335340, - "name": "Swimsuit Special 1991", - "siteDetailUrl": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-2-swimsuit-special/4000-335340/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-154119/", - "id": 154119, - "name": "Batmobile to Vigilante I", - "siteDetailUrl": "https://comicvine.gamespot.com/whos-who-in-the-dc-universe-5-batmobile-to-vigilan/4000-154119/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-127422/", - "id": 127422, - "name": "Alfred Pennyworth to Spider-Girl", - "siteDetailUrl": "https://comicvine.gamespot.com/whos-who-in-the-dc-universe-3-alfred-pennyworth-to/4000-127422/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33352/", - "id": 33352, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/elsewhere-prince-6/4000-33352/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33238/", - "id": 33238, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/elsewhere-prince-5/4000-33238/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33118/", - "id": 33118, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/elsewhere-prince-4/4000-33118/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33000/", - "id": 33000, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/elsewhere-prince-3/4000-33000/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-32879/", - "id": 32879, - "name": "The Princess", - "siteDetailUrl": "https://comicvine.gamespot.com/the-elsewhere-prince-2-the-princess/4000-32879/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-32760/", - "id": 32760, - "name": "The Jouk", - "siteDetailUrl": "https://comicvine.gamespot.com/the-elsewhere-prince-1-the-jouk/4000-32760/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-32675/", - "id": 32675, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/marvel-comics-presents-48/4000-32675/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-32392/", - "id": 32392, - "name": "...In Memory Yet Green...; The Thorned Path The Origin of Val Armorr, Karate Kid!; The Unique Properties of Condo Arlik", - "siteDetailUrl": "https://comicvine.gamespot.com/secret-origins-47-in-memory-yet-green-the-thorned-/4000-32392/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-31851/", - "id": 31851, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/badger-goes-berserk-3/4000-31851/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-119457/", - "id": 119457, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/secret-origins-of-the-world-s-greatest-super-heroe/4000-119457/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-31033/", - "id": 31033, - "name": "Where There is a Will...!", - "siteDetailUrl": "https://comicvine.gamespot.com/action-comics-weekly-642-where-there-is-a-will/4000-31033/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-32103/", - "id": 32103, - "name": "Ex-Machina; And in the Depths; Gifts; Silent Night; Once Christmas Eve; Should Auld Acquaintance be Forgot", - "siteDetailUrl": "https://comicvine.gamespot.com/christmas-with-the-super-heroes-2-ex-machina-and-i/4000-32103/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-152058/", - "id": 152058, - "name": "The Legend of Aquaman", - "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-special-1-the-legend-of-aquaman/4000-152058/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-30272/", - "id": 30272, - "name": "All Together Now", - "siteDetailUrl": "https://comicvine.gamespot.com/secret-origins-32-all-together-now/4000-30272/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-200836/", - "id": 200836, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/forgotten-forest-of-oz-1/4000-200836/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-29808/", - "id": 29808, - "name": "Where the Buffalo Roam", - "siteDetailUrl": "https://comicvine.gamespot.com/badger-37-where-the-buffalo-roam/4000-29808/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-328646/", - "id": 328646, - "name": "Phony Express", - "siteDetailUrl": "https://comicvine.gamespot.com/alien-worlds-1-phony-express/4000-328646/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-372961/", - "id": 372961, - "name": "2nd Annual Swimsuit Issue", - "siteDetailUrl": "https://comicvine.gamespot.com/amazing-heroes-138-2nd-annual-swimsuit-issue/4000-372961/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-28782/", - "id": 28782, - "name": "The Magic Word", - "siteDetailUrl": "https://comicvine.gamespot.com/badger-29-the-magic-word/4000-28782/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-225939/", - "id": 225939, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-ice-king-of-oz-1/4000-225939/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-376362/", - "id": 376362, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/amazing-heroes-115/4000-376362/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-133968/", - "id": 133968, - "name": "Shrinking Violet to Starfinger", - "siteDetailUrl": "https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133968/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-258307/", - "id": 258307, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-secret-island-of-oz-1/4000-258307/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-140202/", - "id": 140202, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/elviras-house-of-mystery-7/4000-140202/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-258302/", - "id": 258302, - "name": null, - "siteDetailUrl": "https://comicvine.gamespot.com/the-enchanted-apples-of-oz-1/4000-258302/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-26489/", - "id": 26489, - "name": "Yo, Jimbo!", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-17-yo-jimbo/4000-26489/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-26383/", - "id": 26383, - "name": "Into The Web", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-16-into-the-web/4000-26383/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-26177/", - "id": 26177, - "name": "You Asked For It", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-15-you-asked-for-it/4000-26177/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-26065/", - "id": 26065, - "name": "Killing Joke", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-14-killing-joke/4000-26065/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25964/", - "id": 25964, - "name": "Insomnia", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-13-insomnia/4000-25964/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25863/", - "id": 25863, - "name": "The Old General", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-12-the-old-general/4000-25863/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25769/", - "id": 25769, - "name": "Get Clausius", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-11-get-clausius/4000-25769/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25670/", - "id": 25670, - "name": "Talking Heads", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-10-talking-heads/4000-25670/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-421502/", - "id": 421502, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/creepy-146/4000-421502/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25568/", - "id": 25568, - "name": "Teen Angel", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-9-teen-angel/4000-25568/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25440/", - "id": 25440, - "name": "The Conqueror", - "siteDetailUrl": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth-4-the-conqueror/4000-25440/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25476/", - "id": 25476, - "name": "Up And Out", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-8-up-and-out/4000-25476/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25334/", - "id": 25334, - "name": "The Warrior!", - "siteDetailUrl": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth-3-the-warrior/4000-25334/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-465765/", - "id": 465765, - "name": "The Potion of Kathpuur", - "siteDetailUrl": "https://comicvine.gamespot.com/talent-showcase-16-the-potion-of-kathpuur/4000-465765/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-196228/", - "id": 196228, - "name": "The Captive!", - "siteDetailUrl": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth-2-the-captive/4000-196228/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-205160/", - "id": 205160, - "name": "Enigmas ; The Binding Hymn of Incorruption!", - "siteDetailUrl": "https://comicvine.gamespot.com/starslayer-26-enigmas-the-binding-hymn-of-incorrup/4000-205160/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25244/", - "id": 25244, - "name": "Mysteries ; The Poet, the Child, and the Lover...!", - "siteDetailUrl": "https://comicvine.gamespot.com/starslayer-25-mysteries-the-poet-the-child-and-the/4000-25244/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25245/", - "id": 25245, - "name": "The Final Battle", - "siteDetailUrl": "https://comicvine.gamespot.com/warp-19-the-final-battle/4000-25245/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-25130/", - "id": 25130, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/new-talent-showcase-13/4000-25130/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-24978/", - "id": 24978, - "name": "My Brother's Keeper", - "siteDetailUrl": "https://comicvine.gamespot.com/warp-18-my-brother-s-keeper/4000-24978/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-395639/", - "id": 395639, - "name": "The White Pteron", - "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-arzach-2-the-white-pteron/4000-395639/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-404129/", - "id": 404129, - "name": "", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-von-oz-1/4000-404129/" - } - ], - "name": "Eric Shanower", - "siteDetailUrl": "https://comicvine.gamespot.com/eric-shanower/4040-1280/", - "storyArcCredits": [ - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57899/", - "id": 57899, - "name": "Futures End", - "siteDetailUrl": "https://comicvine.gamespot.com/futures-end/4045-57899/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58021/", - "id": 58021, - "name": "The River", - "siteDetailUrl": "https://comicvine.gamespot.com/the-river/4045-58021/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58100/", - "id": 58100, - "name": "Godhead", - "siteDetailUrl": "https://comicvine.gamespot.com/godhead/4045-58100/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57992/", - "id": 57992, - "name": "Happily Ever After", - "siteDetailUrl": "https://comicvine.gamespot.com/happily-ever-after/4045-57992/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-56755/", - "id": 56755, - "name": "The Way of the Warrior", - "siteDetailUrl": "https://comicvine.gamespot.com/the-way-of-the-warrior/4045-56755/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58191/", - "id": 58191, - "name": "Mega-City Manhunt", - "siteDetailUrl": "https://comicvine.gamespot.com/mega-city-manhunt/4045-58191/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58233/", - "id": 58233, - "name": "Smoak Signals", - "siteDetailUrl": "https://comicvine.gamespot.com/smoak-signals/4045-58233/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58254/", - "id": 58254, - "name": "Disco Inferno", - "siteDetailUrl": "https://comicvine.gamespot.com/disco-inferno/4045-58254/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58262/", - "id": 58262, - "name": "A Stand Up Guy", - "siteDetailUrl": "https://comicvine.gamespot.com/a-stand-up-guy/4045-58262/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-55776/", - "id": 55776, - "name": "Panther's Rage", - "siteDetailUrl": "https://comicvine.gamespot.com/panthers-rage/4045-55776/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58331/", - "id": 58331, - "name": "Alignment: Earth", - "siteDetailUrl": "https://comicvine.gamespot.com/alignment-earth/4045-58331/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58396/", - "id": 58396, - "name": "Dandelion", - "siteDetailUrl": "https://comicvine.gamespot.com/dandelion/4045-58396/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58688/", - "id": 58688, - "name": "Die For Me", - "siteDetailUrl": "https://comicvine.gamespot.com/die-for-me/4045-58688/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58879/", - "id": 58879, - "name": "Civil War II", - "siteDetailUrl": "https://comicvine.gamespot.com/civil-war-ii/4045-58879/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59091/", - "id": 59091, - "name": "Family Matters", - "siteDetailUrl": "https://comicvine.gamespot.com/family-matters/4045-59091/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59271/", - "id": 59271, - "name": "Made In Manhattan", - "siteDetailUrl": "https://comicvine.gamespot.com/made-in-manhattan/4045-59271/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59324/", - "id": 59324, - "name": "The Trial of the Seven Masters", - "siteDetailUrl": "https://comicvine.gamespot.com/the-trial-of-the-seven-masters/4045-59324/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57882/", - "id": 57882, - "name": "Rage", - "siteDetailUrl": "https://comicvine.gamespot.com/rage/4045-57882/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59570/", - "id": 59570, - "name": "Raptor's Revenge", - "siteDetailUrl": "https://comicvine.gamespot.com/raptors-revenge/4045-59570/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59685/", - "id": 59685, - "name": "The PEOPLE vs. JUSTICE LEAGUE", - "siteDetailUrl": "https://comicvine.gamespot.com/the-people-vs-justice-league/4045-59685/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59605/", - "id": 59605, - "name": "Caged!", - "siteDetailUrl": "https://comicvine.gamespot.com/caged/4045-59605/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59627/", - "id": 59627, - "name": "The Dying Light", - "siteDetailUrl": "https://comicvine.gamespot.com/the-dying-light/4045-59627/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59604/", - "id": 59604, - "name": "The Search For Tony Stark", - "siteDetailUrl": "https://comicvine.gamespot.com/the-search-for-tony-stark/4045-59604/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59755/", - "id": 59755, - "name": "Milk Wars", - "siteDetailUrl": "https://comicvine.gamespot.com/milk-wars/4045-59755/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59568/", - "id": 59568, - "name": "Bad Egg", - "siteDetailUrl": "https://comicvine.gamespot.com/bad-egg/4045-59568/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-56692/", - "id": 56692, - "name": "Knuckles Quest", - "siteDetailUrl": "https://comicvine.gamespot.com/knuckles-quest/4045-56692/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60278/", - "id": 60278, - "name": "Year of the Villain", - "siteDetailUrl": "https://comicvine.gamespot.com/year-of-the-villain/4045-60278/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60329/", - "id": 60329, - "name": "Challenge of the Ghost Riders", - "siteDetailUrl": "https://comicvine.gamespot.com/challenge-of-the-ghost-riders/4045-60329/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60407/", - "id": 60407, - "name": "Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz/4045-60407/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60420/", - "id": 60420, - "name": "The Pit", - "siteDetailUrl": "https://comicvine.gamespot.com/the-pit/4045-60420/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60551/", - "id": 60551, - "name": "Doomed", - "siteDetailUrl": "https://comicvine.gamespot.com/doomed/4045-60551/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60946/", - "id": 60946, - "name": "Jaspers' Warp", - "siteDetailUrl": "https://comicvine.gamespot.com/jaspers-warp/4045-60946/" - } - ], - "volumeCredits": [ - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3289/", - "id": 3289, - "name": "Warp", - "siteDetailUrl": "https://comicvine.gamespot.com/warp/4050-3289/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3315/", - "id": 3315, - "name": "New Talent Showcase", - "siteDetailUrl": "https://comicvine.gamespot.com/new-talent-showcase/4050-3315/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3288/", - "id": 3288, - "name": "Starslayer", - "siteDetailUrl": "https://comicvine.gamespot.com/starslayer/4050-3288/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3440/", - "id": 3440, - "name": "Conqueror of the Barren Earth", - "siteDetailUrl": "https://comicvine.gamespot.com/conqueror-of-the-barren-earth/4050-3440/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3563/", - "id": 3563, - "name": "Nexus", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus/4050-3563/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3560/", - "id": 3560, - "name": "Badger", - "siteDetailUrl": "https://comicvine.gamespot.com/badger/4050-3560/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3616/", - "id": 3616, - "name": "Secret Origins", - "siteDetailUrl": "https://comicvine.gamespot.com/secret-origins/4050-3616/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3973/", - "id": 3973, - "name": "Action Comics Weekly", - "siteDetailUrl": "https://comicvine.gamespot.com/action-comics-weekly/4050-3973/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4284/", - "id": 4284, - "name": "Badger Goes Berserk", - "siteDetailUrl": "https://comicvine.gamespot.com/badger-goes-berserk/4050-4284/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3987/", - "id": 3987, - "name": "Christmas With the Super-Heroes", - "siteDetailUrl": "https://comicvine.gamespot.com/christmas-with-the-super-heroes/4050-3987/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4058/", - "id": 4058, - "name": "Marvel Comics Presents", - "siteDetailUrl": "https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4392/", - "id": 4392, - "name": "The Elsewhere Prince", - "siteDetailUrl": "https://comicvine.gamespot.com/the-elsewhere-prince/4050-4392/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4539/", - "id": 4539, - "name": "Aquaman", - "siteDetailUrl": "https://comicvine.gamespot.com/aquaman/4050-4539/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3739/", - "id": 3739, - "name": "Dark Horse Presents", - "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents/4050-3739/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4297/", - "id": 4297, - "name": "Cheval Noir", - "siteDetailUrl": "https://comicvine.gamespot.com/cheval-noir/4050-4297/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5377/", - "id": 5377, - "name": "Classic Star Wars: The Early Adventures", - "siteDetailUrl": "https://comicvine.gamespot.com/classic-star-wars-the-early-adventures/4050-5377/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-6157/", - "id": 6157, - "name": "Gangland", - "siteDetailUrl": "https://comicvine.gamespot.com/gangland/4050-6157/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-7450/", - "id": 7450, - "name": "Weird War Tales", - "siteDetailUrl": "https://comicvine.gamespot.com/weird-war-tales/4050-7450/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9440/", - "id": 9440, - "name": "Age of Bronze", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze/4050-9440/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-7211/", - "id": 7211, - "name": "Green Lantern Secret Files", - "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-secret-files/4050-7211/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18252/", - "id": 18252, - "name": "Tomorrow Stories Special", - "siteDetailUrl": "https://comicvine.gamespot.com/tomorrow-stories-special/4050-18252/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9723/", - "id": 9723, - "name": "Fables", - "siteDetailUrl": "https://comicvine.gamespot.com/fables/4050-9723/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18757/", - "id": 18757, - "name": "King Tiger & Motorhead", - "siteDetailUrl": "https://comicvine.gamespot.com/king-tiger-motorhead/4050-18757/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18750/", - "id": 18750, - "name": "Motorhead", - "siteDetailUrl": "https://comicvine.gamespot.com/motorhead/4050-18750/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20005/", - "id": 20005, - "name": "Secret Origins of the World's Greatest Super-Heroes", - "siteDetailUrl": "https://comicvine.gamespot.com/secret-origins-of-the-world-s-greatest-super-heroe/4050-20005/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20244/", - "id": 20244, - "name": "The DC Comics Encyclopedia", - "siteDetailUrl": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20750/", - "id": 20750, - "name": "Age of Bronze: A Thousand Ships", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships/4050-20750/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20766/", - "id": 20766, - "name": "Star Wars: The Last Command", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command/4050-20766/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21168/", - "id": 21168, - "name": "Dark Horse Heroes Omnibus", - "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-heroes-omnibus/4050-21168/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19954/", - "id": 19954, - "name": "Who's Who in the DC Universe", - "siteDetailUrl": "https://comicvine.gamespot.com/whos-who-in-the-dc-universe/4050-19954/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21409/", - "id": 21409, - "name": "The Blue Witch of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-blue-witch-of-oz/4050-21409/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21474/", - "id": 21474, - "name": "WildC.A.T.S Sourcebook", - "siteDetailUrl": "https://comicvine.gamespot.com/wildcats-sourcebook/4050-21474/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-6504/", - "id": 6504, - "name": "Iron Man", - "siteDetailUrl": "https://comicvine.gamespot.com/iron-man/4050-6504/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18197/", - "id": 18197, - "name": "Who's Who: The Definitive Directory of the DC Universe", - "siteDetailUrl": "https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4050-18197/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-22379/", - "id": 22379, - "name": "The Big Book of Urban Legends", - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-urban-legends/4050-22379/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-22777/", - "id": 22777, - "name": "Accidental Death", - "siteDetailUrl": "https://comicvine.gamespot.com/accidental-death/4050-22777/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19488/", - "id": 19488, - "name": "Elvira's House of Mystery", - "siteDetailUrl": "https://comicvine.gamespot.com/elviras-house-of-mystery/4050-19488/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24156/", - "id": 24156, - "name": "Alan Moore: Portrait of an Extraordinary Gentleman", - "siteDetailUrl": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman/4050-24156/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24225/", - "id": 24225, - "name": "Indiana Jones and the Golden Fleece", - "siteDetailUrl": "https://comicvine.gamespot.com/indiana-jones-and-the-golden-fleece/4050-24225/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24231/", - "id": 24231, - "name": "Out of the Vortex", - "siteDetailUrl": "https://comicvine.gamespot.com/out-of-the-vortex/4050-24231/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24615/", - "id": 24615, - "name": "The Wonderful Wizard of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz/4050-24615/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25042/", - "id": 25042, - "name": "Adventures In Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/adventures-in-oz/4050-25042/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25076/", - "id": 25076, - "name": "America's Best Comics 64 Page Giant", - "siteDetailUrl": "https://comicvine.gamespot.com/americas-best-comics-64-page-giant/4050-25076/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25648/", - "id": 25648, - "name": "Wetworks Sourcebook", - "siteDetailUrl": "https://comicvine.gamespot.com/wetworks-sourcebook/4050-25648/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25700/", - "id": 25700, - "name": "Vertigo Visions: Prez", - "siteDetailUrl": "https://comicvine.gamespot.com/vertigo-visions-prez/4050-25700/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25726/", - "id": 25726, - "name": "Transmetropolitan: Filth of the City", - "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-filth-of-the-city/4050-25726/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25772/", - "id": 25772, - "name": "Aquaman Special", - "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-special/4050-25772/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26589/", - "id": 26589, - "name": "WildStorm Rarities", - "siteDetailUrl": "https://comicvine.gamespot.com/wildstorm-rarities/4050-26589/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26831/", - "id": 26831, - "name": "The Big Book of the 70's", - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-the-70s/4050-26831/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26859/", - "id": 26859, - "name": "The Big Book of the Unexplained", - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-the-unexplained/4050-26859/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26861/", - "id": 26861, - "name": "The Big Book of Freaks", - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-freaks/4050-26861/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-27337/", - "id": 27337, - "name": "Fables: Sons of Empire", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-sons-of-empire/4050-27337/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28001/", - "id": 28001, - "name": "Green Lantern/Superman: Legend of the Green Flame", - "siteDetailUrl": "https://comicvine.gamespot.com/green-lanternsuperman-legend-of-the-green-flame/4050-28001/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28350/", - "id": 28350, - "name": "Star Wars: The Last Command", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-last-command/4050-28350/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28619/", - "id": 28619, - "name": "The Wonderful Wizard of Oz Sketchbook", - "siteDetailUrl": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook/4050-28619/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-29301/", - "id": 29301, - "name": "The Marvelous Land of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-marvelous-land-of-oz/4050-29301/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-30926/", - "id": 30926, - "name": "Oz: The Wonderful Wizard Of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz/4050-30926/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32017/", - "id": 32017, - "name": "The Forgotten Forest Of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-forgotten-forest-of-oz/4050-32017/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32033/", - "id": 32033, - "name": "Wonderful Wizard of Oz MGC", - "siteDetailUrl": "https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc/4050-32033/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32073/", - "id": 32073, - "name": "JLA Gallery", - "siteDetailUrl": "https://comicvine.gamespot.com/jla-gallery/4050-32073/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32201/", - "id": 32201, - "name": "Age of Bronze Special", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-special/4050-32201/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32571/", - "id": 32571, - "name": "Image Firsts: Age of Bronze", - "siteDetailUrl": "https://comicvine.gamespot.com/image-firsts-age-of-bronze/4050-32571/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32881/", - "id": 32881, - "name": "Within Our Reach", - "siteDetailUrl": "https://comicvine.gamespot.com/within-our-reach/4050-32881/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-33807/", - "id": 33807, - "name": "Little Adventures in Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/little-adventures-in-oz/4050-33807/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-34224/", - "id": 34224, - "name": "Comics' Greatest World: Vortex", - "siteDetailUrl": "https://comicvine.gamespot.com/comics-greatest-world-vortex/4050-34224/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-34077/", - "id": 34077, - "name": "The Ice King of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-ice-king-of-oz/4050-34077/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-35475/", - "id": 35475, - "name": "The Big Book of Bad", - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-bad/4050-35475/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-33224/", - "id": 33224, - "name": "The Big Book Of Hoaxes", - "siteDetailUrl": "https://comicvine.gamespot.com/the-big-book-of-hoaxes/4050-33224/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36477/", - "id": 36477, - "name": "Ozma of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-of-oz/4050-36477/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-37552/", - "id": 37552, - "name": "Harlan Ellison's Dream Corridor", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor/4050-37552/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-37940/", - "id": 37940, - "name": "Catwoman: Crooked Little Town", - "siteDetailUrl": "https://comicvine.gamespot.com/catwoman-crooked-little-town/4050-37940/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38458/", - "id": 38458, - "name": "The Enchanted Apples of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-enchanted-apples-of-oz/4050-38458/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38461/", - "id": 38461, - "name": "The Secret Island of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-secret-island-of-oz/4050-38461/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38942/", - "id": 38942, - "name": "Transmetropolitan", - "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan/4050-38942/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-40205/", - "id": 40205, - "name": "Harlan Ellison's Dream Corridor Special", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-special/4050-40205/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-40222/", - "id": 40222, - "name": "Harlan Ellison's Dream Corridor Quarterly", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-quarterly/4050-40222/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-31888/", - "id": 31888, - "name": "Amazing Heroes Swimsuit Special", - "siteDetailUrl": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special/4050-31888/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43157/", - "id": 43157, - "name": "Oz Primer", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-primer/4050-43157/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43206/", - "id": 43206, - "name": "Dorothy & the Wizard in Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz/4050-43206/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43296/", - "id": 43296, - "name": "Star Wars Essentials", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-essentials/4050-43296/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43861/", - "id": 43861, - "name": "Star Wars: The Thrawn Trilogy", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-the-thrawn-trilogy/4050-43861/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43917/", - "id": 43917, - "name": "America's Best Comics", - "siteDetailUrl": "https://comicvine.gamespot.com/americas-best-comics/4050-43917/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44513/", - "id": 44513, - "name": "Fables: Super Team", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-super-team/4050-44513/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-33609/", - "id": 33609, - "name": "Absolute Promethea", - "siteDetailUrl": "https://comicvine.gamespot.com/absolute-promethea/4050-33609/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-47369/", - "id": 47369, - "name": "Dorothy of Oz Prequel", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel/4050-47369/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-47704/", - "id": 47704, - "name": "Alien Worlds", - "siteDetailUrl": "https://comicvine.gamespot.com/alien-worlds/4050-47704/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-48047/", - "id": 48047, - "name": "Nexus: Two", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-two/4050-48047/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-51870/", - "id": 51870, - "name": "Road to Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/road-to-oz/4050-51870/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-52215/", - "id": 52215, - "name": "Age of Bronze - Behind the Scenes", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-behind-the-scenes/4050-52215/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18527/", - "id": 18527, - "name": "Bart Simpson", - "siteDetailUrl": "https://comicvine.gamespot.com/bart-simpson/4050-18527/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-53937/", - "id": 53937, - "name": "Dorothy of Oz Prequel", - "siteDetailUrl": "https://comicvine.gamespot.com/dorothy-of-oz-prequel/4050-53937/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-54124/", - "id": 54124, - "name": "Nexus Omnibus", - "siteDetailUrl": "https://comicvine.gamespot.com/nexus-omnibus/4050-54124/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-54261/", - "id": 54261, - "name": "Oz: Marvelous Land of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-marvelous-land-of-oz/4050-54261/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-54505/", - "id": 54505, - "name": "Oz: Dorothy and the Wizard in Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz/4050-54505/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-54506/", - "id": 54506, - "name": "Oz: Ozma of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-ozma-of-oz/4050-54506/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-31847/", - "id": 31847, - "name": "Amazing Heroes", - "siteDetailUrl": "https://comicvine.gamespot.com/amazing-heroes/4050-31847/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-58087/", - "id": 58087, - "name": "Der Zauberer von Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/der-zauberer-von-oz/4050-58087/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-59493/", - "id": 59493, - "name": "Legends of Arzach", - "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-arzach/4050-59493/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-59536/", - "id": 59536, - "name": "Visions of Arzach", - "siteDetailUrl": "https://comicvine.gamespot.com/visions-of-arzach/4050-59536/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44812/", - "id": 44812, - "name": "Oz: Road to Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-road-to-oz/4050-44812/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-61689/", - "id": 61689, - "name": "Ozma von Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/ozma-von-oz/4050-61689/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19126/", - "id": 19126, - "name": "Oni Double Feature", - "siteDetailUrl": "https://comicvine.gamespot.com/oni-double-feature/4050-19126/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-64686/", - "id": 64686, - "name": "The Emerald City of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/the-emerald-city-of-oz/4050-64686/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-65966/", - "id": 65966, - "name": "Age of Bronze: Betrayal", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-betrayal/4050-65966/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-65972/", - "id": 65972, - "name": "Age of Bronze: Sacrifice", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-sacrifice/4050-65972/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-2194/", - "id": 2194, - "name": "Creepy", - "siteDetailUrl": "https://comicvine.gamespot.com/creepy/4050-2194/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-71309/", - "id": 71309, - "name": "Spandex Tights Summer Fun", - "siteDetailUrl": "https://comicvine.gamespot.com/spandex-tights-summer-fun/4050-71309/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-72187/", - "id": 72187, - "name": "Oz: The Emerald City Of Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-emerald-city-of-oz/4050-72187/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-72589/", - "id": 72589, - "name": "Legends of Oz: Dorothy's Return", - "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-oz-dorothys-return/4050-72589/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-76545/", - "id": 76545, - "name": "Little Nemo: Return to Slumberland", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland/4050-76545/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-76818/", - "id": 76818, - "name": "Oz Omnibus", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-omnibus/4050-76818/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3467/", - "id": 3467, - "name": "Talent Showcase", - "siteDetailUrl": "https://comicvine.gamespot.com/talent-showcase/4050-3467/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-78555/", - "id": 78555, - "name": "Adventures In Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/adventures-in-oz/4050-78555/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-81598/", - "id": 81598, - "name": "Fables: Happily Ever After", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-happily-ever-after/4050-81598/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-82182/", - "id": 82182, - "name": "Harlan Ellison's Dream Corridor", - "siteDetailUrl": "https://comicvine.gamespot.com/harlan-ellison-s-dream-corridor/4050-82182/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-82692/", - "id": 82692, - "name": "Little Nemo: Return To Slumberland", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland/4050-82692/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-87457/", - "id": 87457, - "name": "Worlds of Color: Welcome to Oz Adult Coloring Book", - "siteDetailUrl": "https://comicvine.gamespot.com/worlds-of-color-welcome-to-oz-adult-coloring-book/4050-87457/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-40871/", - "id": 40871, - "name": "Fables", - "siteDetailUrl": "https://comicvine.gamespot.com/fables/4050-40871/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28208/", - "id": 28208, - "name": "Fables: The Deluxe Edition", - "siteDetailUrl": "https://comicvine.gamespot.com/fables-the-deluxe-edition/4050-28208/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-90884/", - "id": 90884, - "name": "Prez: The First Teen President", - "siteDetailUrl": "https://comicvine.gamespot.com/prez-the-first-teen-president/4050-90884/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91265/", - "id": 91265, - "name": "Little Nemo: Return To Slumberland Deluxe Edition", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-return-to-slumberland-deluxe-edition/4050-91265/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-97757/", - "id": 97757, - "name": "The Life and Adventures of Santa Claus", - "siteDetailUrl": "https://comicvine.gamespot.com/the-life-and-adventures-of-santa-claus/4050-97757/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103039/", - "id": 103039, - "name": "Clásicos Ilustrados Marvel. El Mago de Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-mago-de-oz/4050-103039/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103048/", - "id": 103048, - "name": "Clásicos Ilustrados Marvel. El Maravilloso Mundo de Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-maravilloso-mundo-de/4050-103048/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103057/", - "id": 103057, - "name": "Clásicos Ilustrados Marvel. Ozma de Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-ozma-de-oz/4050-103057/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103060/", - "id": 103060, - "name": "Clásicos Ilustrados Marvel. Dorothy y el Mago en Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-dorothy-y-el-mago-en-oz/4050-103060/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103062/", - "id": 103062, - "name": "Clásicos Ilustrados Marvel. El Camino a Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-camino-a-oz/4050-103062/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103065/", - "id": 103065, - "name": "Clásicos Ilustrados Marvel. La Ciudad Esmeralda de Oz", - "siteDetailUrl": "https://comicvine.gamespot.com/clasicos-ilustrados-marvel-la-ciudad-esmeralda-de-/4050-103065/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-107614/", - "id": 107614, - "name": "MINE! A Celebration of Liberty And Freedom For All Benefiting Planned Parenthood", - "siteDetailUrl": "https://comicvine.gamespot.com/mine-a-celebration-of-liberty-and-freedom-for-all-/4050-107614/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-109306/", - "id": 109306, - "name": "Aquaman: The Legend of Aquaman", - "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-the-legend-of-aquaman/4050-109306/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-110230/", - "id": 110230, - "name": "Image Firsts: Age of Bronze", - "siteDetailUrl": "https://comicvine.gamespot.com/image-firsts-age-of-bronze/4050-110230/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-112168/", - "id": 112168, - "name": "Casper & Hot Stuff", - "siteDetailUrl": "https://comicvine.gamespot.com/casper-and-hot-stuff/4050-112168/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-113229/", - "id": 113229, - "name": "Casper's Ghostland", - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-ghostland/4050-113229/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-113265/", - "id": 113265, - "name": "The Three Stooges: Matinee Madness", - "siteDetailUrl": "https://comicvine.gamespot.com/the-three-stooges-matinee-madness/4050-113265/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-113457/", - "id": 113457, - "name": "Age of Bronze: A Thousand Ships", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships/4050-113457/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26370/", - "id": 26370, - "name": "Back Issue", - "siteDetailUrl": "https://comicvine.gamespot.com/back-issue/4050-26370/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-81966/", - "id": 81966, - "name": "Star Wars Legends Epic Collection: The New Republic", - "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4050-81966/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-106664/", - "id": 106664, - "name": "Barbarella", - "siteDetailUrl": "https://comicvine.gamespot.com/barbarella/4050-106664/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-118747/", - "id": 118747, - "name": "Casper's Spooksville FCBD Edition", - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville-fcbd-edition/4050-118747/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-118874/", - "id": 118874, - "name": "The Three Stooges: AstroNuts", - "siteDetailUrl": "https://comicvine.gamespot.com/the-three-stooges-astronuts/4050-118874/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-119637/", - "id": 119637, - "name": "Casper's Spooksville", - "siteDetailUrl": "https://comicvine.gamespot.com/caspers-spooksville/4050-119637/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-119895/", - "id": 119895, - "name": "Little Nemo – Rückkehr ins Schlummerland", - "siteDetailUrl": "https://comicvine.gamespot.com/little-nemo-ruckkehr-ins-schlummerland/4050-119895/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-122854/", - "id": 122854, - "name": "Casper the Friendly Ghost: Haunted Hijinks", - "siteDetailUrl": "https://comicvine.gamespot.com/casper-the-friendly-ghost-haunted-hijinks/4050-122854/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-123282/", - "id": 123282, - "name": "Iron Man: The Mask In the Iron Man Omnibus", - "siteDetailUrl": "https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-omnibus/4050-123282/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-123871/", - "id": 123871, - "name": "Oz: The Complete Collection", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-complete-collection/4050-123871/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-125103/", - "id": 125103, - "name": "Age of Bronze: Sacrifice", - "siteDetailUrl": "https://comicvine.gamespot.com/age-of-bronze-sacrifice/4050-125103/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-125331/", - "id": 125331, - "name": "Laurel & Hardey Meet The Three Stooges", - "siteDetailUrl": "https://comicvine.gamespot.com/laurel-and-hardey-meet-the-three-stooges/4050-125331/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-129256/", - "id": 129256, - "name": "Oz: The Complete Collection – Ozma/Dorothy & The Wizard", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4050-129256/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-132057/", - "id": 132057, - "name": "Oz Integral", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-integral/4050-132057/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-132322/", - "id": 132322, - "name": "Oz: The Complete Collection - Road To/Emerald City", - "siteDetailUrl": "https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city/4050-132322/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-132417/", - "id": 132417, - "name": "Laurel and Hardy: Christmas Follies", - "siteDetailUrl": "https://comicvine.gamespot.com/laurel-and-hardy-christmas-follies/4050-132417/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-132502/", - "id": 132502, - "name": "Hey, Amateur!", - "siteDetailUrl": "https://comicvine.gamespot.com/hey-amateur/4050-132502/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-133709/", - "id": 133709, - "name": "The Three Stooges: Thru the Ages", - "siteDetailUrl": "https://comicvine.gamespot.com/the-three-stooges-thru-the-ages/4050-133709/" - }, - { - "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-135716/", - "id": 135716, - "name": "The Robonic Stooges", - "siteDetailUrl": "https://comicvine.gamespot.com/the-robonic-stooges/4050-135716/" - } - ], - "website": "http://www.ericshanower.com/es/index.shtml" -} diff --git a/packages/client/src/comic-vine-stores.test.ts b/packages/client/src/comic-vine-stores.test.ts deleted file mode 100644 index d5f0f81..0000000 --- a/packages/client/src/comic-vine-stores.test.ts +++ /dev/null @@ -1,200 +0,0 @@ -import axios, { type AxiosInstance } from 'axios'; -import { describe, it, expect, vi, beforeEach } from 'vitest'; -import { ComicVine } from './comic-vine.js'; -import { - HttpClient, - HttpClientStores, - HttpClientOptions, -} from './http-client/http-client.js'; -import { CacheStore, DedupeStore, RateLimitStore } from './stores/index.js'; - -vi.mock('axios'); - -describe('ComicVine with Stores', () => { - let comicVine: ComicVine; - let mockCache: CacheStore; - let mockDedupe: DedupeStore; - let mockRateLimit: RateLimitStore; - let axiosInstance: Partial; - - beforeEach(() => { - // Reset all mocks - vi.clearAllMocks(); - - // Create axios mock instance - axiosInstance = { - get: vi.fn().mockResolvedValue({ - data: { - statusCode: 1, - results: { id: 1, name: 'Test Issue' }, - }, - }), - }; - - // Mock axios.create to return our mock instance - vi.mocked(axios.create).mockReturnValue(axiosInstance as AxiosInstance); - - // Create mock stores - mockCache = { - get: vi.fn().mockResolvedValue(undefined), - set: vi.fn().mockResolvedValue(undefined), - delete: vi.fn().mockResolvedValue(undefined), - clear: vi.fn().mockResolvedValue(undefined), - }; - - mockDedupe = { - waitFor: vi.fn().mockResolvedValue(undefined), - register: vi.fn().mockResolvedValue('job-id'), - complete: vi.fn().mockResolvedValue(undefined), - fail: vi.fn().mockResolvedValue(undefined), - isInProgress: vi.fn().mockResolvedValue(false), - }; - - mockRateLimit = { - canProceed: vi.fn().mockResolvedValue(true), - record: vi.fn().mockResolvedValue(undefined), - getStatus: vi.fn().mockResolvedValue({ - remaining: 100, - resetTime: new Date(), - limit: 100, - }), - reset: vi.fn().mockResolvedValue(undefined), - getWaitTime: vi.fn().mockResolvedValue(0), - }; - - // Mock HttpClientFactory to create HttpClient with stores - vi.doMock('./http-client/index.js', () => ({ - HttpClientFactory: { - createClient: ( - stores: HttpClientStores, - options: HttpClientOptions, - ) => { - return new HttpClient(stores, options); - }, - createUrlBuilder: vi.fn().mockReturnValue({ - retrieve: vi.fn().mockReturnValue('http://test.com/api/character/'), - list: vi.fn().mockReturnValue('http://test.com/api/character/'), - }), - }, - })); - - comicVine = new ComicVine({ - apiKey: 'test-key', - stores: { - cache: mockCache, - dedupe: mockDedupe, - rateLimit: mockRateLimit, - }, - }); - }); - - describe('cache store integration', () => { - it('should check cache before making request', async () => { - // Mock cache to return a value - mockCache.get = vi.fn().mockResolvedValue({ - statusCode: 1, - results: { test: 'cached-value' }, - }); - - const result = await comicVine.character.retrieve(1); - - expect(mockCache.get).toHaveBeenCalledWith(expect.any(String)); - expect(axiosInstance.get).not.toHaveBeenCalled(); - expect(result).toEqual({ test: 'cached-value' }); - }); - - it('should store result in cache after successful request', async () => { - // Mock cache to return undefined (no cached value) - mockCache.get = vi.fn().mockResolvedValue(undefined); - mockCache.set = vi.fn().mockResolvedValue(undefined); - - const result = await comicVine.character.retrieve(1); - - expect(mockCache.get).toHaveBeenCalledWith(expect.any(String)); - expect(mockCache.set).toHaveBeenCalledWith( - expect.any(String), - expect.objectContaining({ - statusCode: 1, - results: { id: 1, name: 'Test Issue' }, - }), - 3600, // default TTL - ); - expect(result).toEqual({ id: 1, name: 'Test Issue' }); - }); - }); - - describe('dedupe store integration', () => { - it('should check for existing requests before making new ones', async () => { - // Mock dedupe to return undefined (no existing request) - mockDedupe.waitFor = vi.fn().mockResolvedValue(undefined); - mockDedupe.register = vi.fn().mockResolvedValue('job-id'); - - const result = await comicVine.character.retrieve(1); - - expect(mockDedupe.waitFor).toHaveBeenCalledWith(expect.any(String)); - expect(mockDedupe.register).toHaveBeenCalledWith(expect.any(String)); - expect(mockDedupe.complete).toHaveBeenCalledWith( - expect.any(String), - expect.objectContaining({ - statusCode: 1, - results: { id: 1, name: 'Test Issue' }, - }), - ); - expect(result).toEqual({ id: 1, name: 'Test Issue' }); - }); - - it('should return existing result if request is in progress', async () => { - // Mock dedupe to return an existing result - mockDedupe.waitFor = vi.fn().mockResolvedValue({ - statusCode: 1, - results: { test: 'deduped-value' }, - }); - - const result = await comicVine.character.retrieve(1); - - expect(mockDedupe.waitFor).toHaveBeenCalledWith(expect.any(String)); - expect(mockDedupe.register).not.toHaveBeenCalled(); - expect(axiosInstance.get).not.toHaveBeenCalled(); - expect(result).toEqual({ test: 'deduped-value' }); - }); - }); - - describe('rate limit store integration', () => { - it('should check rate limit before making request', async () => { - // Mock rate limit to allow request - mockRateLimit.canProceed = vi.fn().mockResolvedValue(true); - mockRateLimit.record = vi.fn().mockResolvedValue(undefined); - - const result = await comicVine.character.retrieve(1); - - expect(mockRateLimit.canProceed).toHaveBeenCalledWith('character'); - expect(mockRateLimit.record).toHaveBeenCalledWith('character'); - expect(result).toEqual({ id: 1, name: 'Test Issue' }); - }); - - it('should throw error when rate limited and throwOnRateLimit is true', async () => { - // Create client with throwOnRateLimit: true - const rateLimitedClient = new ComicVine({ - apiKey: 'test-key', - stores: { - rateLimit: mockRateLimit, - }, - client: { - throwOnRateLimit: true, - }, - }); - - // Mock rate limit to block request - mockRateLimit.canProceed = vi.fn().mockResolvedValue(false); - mockRateLimit.getWaitTime = vi.fn().mockResolvedValue(5000); - - await expect(rateLimitedClient.character.retrieve(1)).rejects.toThrow( - 'Rate limit exceeded', - ); - - expect(mockRateLimit.canProceed).toHaveBeenCalledWith('character'); - expect(mockRateLimit.getWaitTime).toHaveBeenCalledWith('character'); - expect(axiosInstance.get).not.toHaveBeenCalled(); - }); - }); -}); diff --git a/packages/client/src/comic-vine.test.ts b/packages/client/src/comic-vine.test.ts deleted file mode 100644 index dfe851c..0000000 --- a/packages/client/src/comic-vine.test.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { describe, test, expect, vi } from 'vitest'; -import { ComicVine } from './comic-vine.js'; -import * as resources from './resources/resource-list.js'; -import type { ValueOf } from './types/index.js'; - -describe('ComicVine', () => { - const mockApiKey = 'mock-api-key'; - - describe('constructor', () => { - test('should create a ComicVine instance with object-based constructor', () => { - const comicVine = new ComicVine({ apiKey: mockApiKey }); - expect(comicVine).toBeInstanceOf(ComicVine); - }); - - test('should handle baseUrl in constructor', () => { - const customBaseUrl = 'https://custom.api.com/'; - const comicVine = new ComicVine({ - apiKey: mockApiKey, - baseUrl: customBaseUrl, - }); - expect(comicVine).toBeInstanceOf(ComicVine); - }); - - test('should handle stores in constructor', () => { - const mockCache = { - get: vi.fn(), - set: vi.fn(), - delete: vi.fn(), - clear: vi.fn(), - }; - - const comicVine = new ComicVine({ - apiKey: mockApiKey, - stores: { cache: mockCache }, - }); - expect(comicVine).toBeInstanceOf(ComicVine); - }); - - test('should handle client options in constructor', () => { - const comicVine = new ComicVine({ - apiKey: mockApiKey, - client: { - defaultCacheTTL: 7200, - throwOnRateLimit: false, - maxWaitTime: 30000, - }, - }); - expect(comicVine).toBeInstanceOf(ComicVine); - }); - }); - - type ComicVineProperty = keyof ComicVine; - type ResourceClass = ValueOf; - const resourceList: Array<[ComicVineProperty, ResourceClass]> = [ - ['character', resources.Character], - ['concept', resources.Concept], - ['episode', resources.Episode], - ['issue', resources.Issue], - ['location', resources.Location], - ['movie', resources.Movie], - ['origin', resources.Origin], - ['person', resources.Person], - ['power', resources.Power], - ['promo', resources.Promo], - ['publisher', resources.Publisher], - ['series', resources.Series], - ['storyArc', resources.StoryArc], - ['team', resources.Team], - ['thing', resources.Thing], - ['videoCategory', resources.VideoCategory], - ['video', resources.Video], - ['videoType', resources.VideoType], - ['volume', resources.Volume], - ]; - - test.each(resourceList)( - `should expose an instance of %s`, - (resourceProperty, ResourceType) => { - const comicVine = new ComicVine({ apiKey: mockApiKey }); - expect(comicVine[resourceProperty]).toBeInstanceOf(ResourceType); - }, - ); -}); diff --git a/packages/client/src/http-client/http-client-factory.ts b/packages/client/src/http-client/http-client-factory.ts deleted file mode 100644 index 160ccb3..0000000 --- a/packages/client/src/http-client/http-client-factory.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { - HttpClient, - HttpClientStores, - HttpClientOptions, -} from './http-client.js'; -import { UrlBuilder } from './url-builder.js'; - -export class HttpClientFactory { - public static createClient( - stores: HttpClientStores = {}, - options: HttpClientOptions = {}, - ) { - return new HttpClient(stores, options); - } - - public static createUrlBuilder(apiKey: string, baseUrl: string) { - return new UrlBuilder(apiKey, baseUrl); - } -} diff --git a/packages/client/src/http-client/http-client.test.ts b/packages/client/src/http-client/http-client.test.ts deleted file mode 100644 index dd65686..0000000 --- a/packages/client/src/http-client/http-client.test.ts +++ /dev/null @@ -1,225 +0,0 @@ -import nock from 'nock'; -import { HttpClient } from './http-client.js'; -import { StatusCode } from './status-code.js'; -import { - ComicJsonpCallbackMissingError, - ComicVineFilterError, - ComicVineGenericRequestError, - ComicVineObjectNotFoundError, - ComicVineSubscriberOnlyError, - ComicVineUnauthorizedError, - ComicVineUrlFormatError, -} from '../errors/index.js'; - -const baseUrl = 'https://comicvine.gamespot.com/api'; - -interface SnakeCaseResponse { - error: 'OK'; - limit: number; - offset: number; - number_of_page_results: number; - number_of_total_results: number; - statusCode: StatusCode; - results: unknown; -} - -const getMockResponse = ( - overrides: Partial, -): SnakeCaseResponse => { - return { - error: 'OK', - limit: 1, - offset: 0, - number_of_page_results: 1, - number_of_total_results: 1, - statusCode: 1, - results: undefined, - ...overrides, - }; -}; - -describe('HttpClient', () => { - let httpClient: HttpClient; - beforeEach(() => { - httpClient = new HttpClient(); - }); - - test('should return a successful response', async () => { - // Arrange - const mockResponse = getMockResponse({ results: [] }); - nock(baseUrl).get('/successful-response').reply(200, mockResponse); - - // Act - const result = await httpClient.get(`${baseUrl}/successful-response`); - - // Assert - expect(result).toStrictEqual({ - error: 'OK', - limit: 1, - offset: 0, - numberOfPageResults: 1, - numberOfTotalResults: 1, - statusCode: 1, - results: [], - }); - }); - - test('should throw a ComicVineFilterError when statusCode FilterError (104) is returned', async () => { - // Arrange - const mockResponse = getMockResponse({ - statusCode: StatusCode.FilterError, - }); - nock(baseUrl).get('/filter-error').reply(200, mockResponse); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/filter-error`), - ).rejects.toThrowError(new ComicVineFilterError()); - }); - - test('should throw a ComicJsonpCallbackMissingError when statusCode JsonpCallbackMissing (103) is returned', async () => { - // Arrange - const mockResponse = getMockResponse({ - statusCode: StatusCode.JsonpCallbackMissing, - }); - nock(baseUrl).get('/jsonp-error').reply(200, mockResponse); - - // Act/Assert - await expect(httpClient.get(`${baseUrl}/jsonp-error`)).rejects.toThrowError( - new ComicJsonpCallbackMissingError(), - ); - }); - - test('should throw a ComicVineObjectNotFoundError when statusCode ObjectNotFound (101) is returned', async () => { - // Arrange - const mockResponse = getMockResponse({ - statusCode: StatusCode.ObjectNotFound, - }); - nock(baseUrl).get('/object-not-found-error').reply(200, mockResponse); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/object-not-found-error`), - ).rejects.toThrowError(new ComicVineObjectNotFoundError()); - }); - - test('should throw a ComicVineSubscriberOnlyError when statusCode SubscriberOnlyVideo (105) is returned', async () => { - // Arrange - const mockResponse = getMockResponse({ - statusCode: StatusCode.SubscriberOnlyVideo, - }); - nock(baseUrl).get('/subscriber-only-video').reply(200, mockResponse); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/subscriber-only-video`), - ).rejects.toThrowError(new ComicVineSubscriberOnlyError()); - }); - - test('should throw a ComicVineUrlFormatError when statusCode UrlFormatError (102) is returned', async () => { - // Arrange - const mockResponse = getMockResponse({ - statusCode: StatusCode.UrlFormatError, - }); - nock(baseUrl).get('/url-format-error').reply(200, mockResponse); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/url-format-error`), - ).rejects.toThrowError(new ComicVineUrlFormatError()); - }); - - test('should throw a ComicVineUnauthorizedError when http status 401 is returned', async () => { - // Arrange - nock(baseUrl).get('/unauthorized').reply(401, { - error: 'Invalid API Key', - limit: 0, - offset: 0, - number_of_page_results: 0, - number_of_total_results: 0, - status_code: 100, - results: [], - }); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/unauthorized`), - ).rejects.toThrowError(new ComicVineUnauthorizedError()); - }); - - test('should throw a ComicVineGenericRequestError when an unknown error has occurred', async () => { - // Arrange - const errorMessage = 'An unknown error has occurred'; - nock(baseUrl).get('/unknown-error').reply(500, { - message: errorMessage, - }); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/unknown-error`), - ).rejects.toThrowError( - new ComicVineGenericRequestError( - `Request failed with status code 500, ${errorMessage}`, - ), - ); - }); - - test('should throw a ComicVineGenericRequestError when an unknown error has occurred and there is no response data', async () => { - // Arrange - nock(baseUrl).get('/unknown-error').reply(500); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/unknown-error`), - ).rejects.toThrowError( - new ComicVineGenericRequestError(`Request failed with status code 500`), - ); - }); - - test('should throw a ComicVineGenericRequestError when the request fails and there is no response', async () => { - // Arrange - nock(baseUrl).get('/failed-request').replyWithError('Complete failure'); - - // Act/Assert - await expect( - httpClient.get(`${baseUrl}/failed-request`), - ).rejects.toThrowError( - new ComicVineGenericRequestError(`Complete failure`), - ); - }); - - test('should abort rate-limit wait when signal is aborted', async () => { - // Arrange: create a RateLimitStore stub that forces a wait - const rateLimitStoreStub = { - async canProceed() { - return false; - }, - async record() {}, - async getStatus() { - return { remaining: 0, resetTime: new Date(), limit: 60 }; - }, - async reset() {}, - async getWaitTime() { - return 1_000; // 1 second wait time - }, - } as const; - - const client = new HttpClient( - { rateLimit: rateLimitStoreStub }, - { - throwOnRateLimit: false, - maxWaitTime: 5_000, - }, - ); - - const controller = new AbortController(); - controller.abort(); - - // Act / Assert - await expect( - client.get(`${baseUrl}/successful-response`, { - signal: controller.signal, - }), - ).rejects.toMatchObject({ name: 'AbortError' }); - }); -}); diff --git a/packages/client/src/http-client/http-client.ts b/packages/client/src/http-client/http-client.ts deleted file mode 100644 index 1637525..0000000 --- a/packages/client/src/http-client/http-client.ts +++ /dev/null @@ -1,280 +0,0 @@ -import axios, { AxiosError, AxiosResponse } from 'axios'; -import { StatusCode } from './status-code.js'; -import { BaseError } from '../errors/base-error.js'; -import { - ComicVineFilterError, - ComicJsonpCallbackMissingError, - ComicVineObjectNotFoundError, - ComicVineUnauthorizedError, - ComicVineUrlFormatError, - ComicVineSubscriberOnlyError, - ComicVineGenericRequestError, -} from '../errors/index.js'; -import { - CacheStore, - DedupeStore, - RateLimitStore, - AdaptiveRateLimitStore, - RequestPriority, - hashRequest, -} from '../stores/index.js'; -import { Response, HttpClient as HttpClientContract } from '../types/index.js'; -import { convertSnakeCaseToCamelCase } from '../utils/case-converter.js'; - -/** - * Wait for a specified period while supporting cancellation via AbortSignal. - * - * If the signal is aborted before the timeout completes the promise rejects - * with an `Error` whose name is set to `AbortError`, mimicking DOMException in - * browser environments without depending on it. This allows callers to use a - * single `AbortController` for both the rate-limit wait *and* the subsequent - * HTTP request. - */ -function wait(ms: number, signal?: AbortSignal): Promise { - return new Promise((resolve, reject) => { - const timer = setTimeout(() => { - if (signal) { - signal.removeEventListener('abort', onAbort); - } - resolve(); - }, ms); - - function onAbort() { - clearTimeout(timer); - const err = new Error('Aborted'); - err.name = 'AbortError'; - reject(err); - } - - if (signal) { - if (signal.aborted) { - onAbort(); - } else { - signal.addEventListener('abort', onAbort, { once: true }); - } - } - }); -} - -export interface HttpClientStores { - cache?: CacheStore; - dedupe?: DedupeStore; - rateLimit?: RateLimitStore | AdaptiveRateLimitStore; -} - -export interface HttpClientOptions { - /** - * Default cache TTL in seconds - */ - defaultCacheTTL?: number; - /** - * Whether to throw errors on rate limit violations - */ - throwOnRateLimit?: boolean; - /** - * Maximum time to wait for rate limit in milliseconds - */ - maxWaitTime?: number; -} - -export class HttpClient implements HttpClientContract { - private _http; - private stores: HttpClientStores; - private options: Required; - - constructor(stores: HttpClientStores = {}, options: HttpClientOptions = {}) { - this._http = axios.create(); - this.stores = stores; - this.options = { - defaultCacheTTL: options.defaultCacheTTL ?? 3600, // 1 hour - throwOnRateLimit: options.throwOnRateLimit ?? true, - maxWaitTime: options.maxWaitTime ?? 60000, // 1 minute - }; - } - - /** - * Infer the resource name from the endpoint URL - * @param url The full URL or endpoint path - * @returns The resource name for rate limiting - */ - private inferResource(url: string): string { - // Extract the resource type from the URL - // URLs are typically like: https://comicvine.gamespot.com/api/issues/4000-123456/ - // or for list: https://comicvine.gamespot.com/api/issues/ - const match = url.match(/\/api\/([^/]+)\//); - return match ? match[1] : 'unknown'; - } - - /** - * Extract endpoint and params from URL for request hashing - * @param url The full URL - * @returns Object with endpoint and params for hashing - */ - private parseUrlForHashing(url: string): { - endpoint: string; - params: Record; - } { - const urlObj = new URL(url); - const endpoint = urlObj.pathname.replace('/api/', ''); - const params: Record = {}; - - // Convert URLSearchParams to a plain object - urlObj.searchParams.forEach((value, key) => { - params[key] = value; - }); - - return { endpoint, params }; - } - - /** - * Type guard to check if a rate limit store supports adaptive features - * @param store The rate limit store to check - * @returns True if the store is an adaptive rate limit store - */ - private isAdaptiveRateLimitStore( - store: RateLimitStore | AdaptiveRateLimitStore, - ): store is AdaptiveRateLimitStore { - // Check if the store has the adaptive-specific method signatures - return 'canProceed' in store && store.canProceed.length >= 2; - } - - private handleResponse(response: AxiosResponse>) { - switch (response.data.statusCode) { - case StatusCode.FilterError: - throw new ComicVineFilterError(); - case StatusCode.JsonpCallbackMissing: - throw new ComicJsonpCallbackMissingError(); - case StatusCode.ObjectNotFound: - throw new ComicVineObjectNotFoundError(); - case StatusCode.SubscriberOnlyVideo: - throw new ComicVineSubscriberOnlyError(); - case StatusCode.UrlFormatError: - throw new ComicVineUrlFormatError(); - default: - return response.data; - } - } - - private generateClientError(err: unknown) { - if (err instanceof BaseError) { - return err; - } - - const error = err as AxiosError<{ message?: string }>; - if (error.response?.status === 401) { - return new ComicVineUnauthorizedError(); - } - - const errorMessage = error.response?.data?.message; - return new ComicVineGenericRequestError( - `${error.message}${errorMessage ? `, ${errorMessage}` : ''}`, - ); - } - - async get( - url: string, - options: { signal?: AbortSignal; priority?: RequestPriority } = {}, - ): Promise> { - const { signal, priority = 'background' } = options; - const { endpoint, params } = this.parseUrlForHashing(url); - const hash = hashRequest(endpoint, params); - const resource = this.inferResource(url); - - try { - // 1. Cache - check for cached response - if (this.stores.cache) { - const cachedResult = await this.stores.cache.get(hash); - if (cachedResult !== undefined) { - return cachedResult as Response; - } - } - - // 2. Deduplication - check for in-progress request - if (this.stores.dedupe) { - const existingResult = await this.stores.dedupe.waitFor(hash); - if (existingResult !== undefined) { - return existingResult as Response; - } - - // Register this request as in-progress - await this.stores.dedupe.register(hash); - } - - // 3. Rate limiting - check if request can proceed - if (this.stores.rateLimit) { - // Check if the store supports adaptive rate limiting - const isAdaptive = this.isAdaptiveRateLimitStore(this.stores.rateLimit); - const canProceed = isAdaptive - ? await this.stores.rateLimit.canProceed(resource, priority) - : await this.stores.rateLimit.canProceed(resource); - - if (!canProceed) { - if (this.options.throwOnRateLimit) { - const waitTime = isAdaptive - ? await this.stores.rateLimit.getWaitTime(resource, priority) - : await this.stores.rateLimit.getWaitTime(resource); - throw new Error( - `Rate limit exceeded for resource '${resource}'. Wait ${waitTime}ms before retrying.`, - ); - } else { - // Wait for rate limit to reset - const waitTime = Math.min( - isAdaptive - ? await this.stores.rateLimit.getWaitTime(resource, priority) - : await this.stores.rateLimit.getWaitTime(resource), - this.options.maxWaitTime, - ); - if (waitTime > 0) { - await wait(waitTime, signal); - } - } - } - } - - // 4. Execute the actual HTTP request - const response = await this._http.get(url, { signal }); - const transformedData = response.data - ? convertSnakeCaseToCamelCase>(response.data) - : undefined; - - const result = this.handleResponse({ - ...response, - data: transformedData as Response, - }); - - // 5. Record the request for rate limiting - if (this.stores.rateLimit) { - const isAdaptive = this.isAdaptiveRateLimitStore(this.stores.rateLimit); - if (isAdaptive) { - await this.stores.rateLimit.record(resource, priority); - } else { - await this.stores.rateLimit.record(resource); - } - } - - // 6. Cache the result - if (this.stores.cache) { - await this.stores.cache.set(hash, result, this.options.defaultCacheTTL); - } - - // 7. Mark deduplication as complete - if (this.stores.dedupe) { - await this.stores.dedupe.complete(hash, result); - } - - return result; - } catch (error) { - // Mark deduplication as failed - if (this.stores.dedupe) { - await this.stores.dedupe.fail(hash, error as Error); - } - - // Allow callers to detect aborts distinctly – do not wrap AbortError. - if (error instanceof Error && error.name === 'AbortError') { - throw error; - } - - throw this.generateClientError(error); - } - } -} diff --git a/packages/client/src/http-client/index.ts b/packages/client/src/http-client/index.ts deleted file mode 100644 index b0b82de..0000000 --- a/packages/client/src/http-client/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './http-client-factory.js'; -export * from './http-client.js'; diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts deleted file mode 100644 index 66df534..0000000 --- a/packages/client/src/index.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { ComicVine } from './comic-vine.js'; - -export default ComicVine; - -// Named exports for better tree-shaking -export { ComicVine }; - -// Export all error types -export * from './errors/index.js'; - -// Export all types -export * from './types/index.js'; - -// Export store interfaces and utilities -export * from './stores/index.js'; - -// Re-export client options -export type { ComicVineOptions } from './comic-vine.js'; - -// CommonJS compatibility - ensure require('@comic-vine/client') works without .default -if ( - typeof module !== 'undefined' && - module.exports && - // Only mutate if the export object is mutable and `default` is not already defined. - typeof module.exports === 'object' && - !Object.prototype.hasOwnProperty.call(module.exports, 'default') -) { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore – intentional CommonJS interop assignment - module.exports = ComicVine; - // Re-add named exports for consumers relying on them - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - module.exports.default = ComicVine; - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - module.exports.ComicVine = ComicVine; -} diff --git a/packages/client/src/resources/character/character.test.ts b/packages/client/src/resources/character/character.test.ts deleted file mode 100644 index 9d0b80b..0000000 --- a/packages/client/src/resources/character/character.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Character } from './character.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Character', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Character(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Character); - }); -}); diff --git a/packages/client/src/resources/concept/concept.test.ts b/packages/client/src/resources/concept/concept.test.ts deleted file mode 100644 index 7f6fe24..0000000 --- a/packages/client/src/resources/concept/concept.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Concept } from './concept.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Concept', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Concept(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Concept); - }); -}); diff --git a/packages/client/src/resources/episode/episode.test.ts b/packages/client/src/resources/episode/episode.test.ts deleted file mode 100644 index 6fd9fec..0000000 --- a/packages/client/src/resources/episode/episode.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Episode } from './episode.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Episode', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Episode(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Episode); - }); -}); diff --git a/packages/client/src/resources/issue/issue.test.ts b/packages/client/src/resources/issue/issue.test.ts deleted file mode 100644 index fdeeca2..0000000 --- a/packages/client/src/resources/issue/issue.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Issue } from './issue.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Issue', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Issue(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Issue); - }); -}); diff --git a/packages/client/src/resources/location/location.test.ts b/packages/client/src/resources/location/location.test.ts deleted file mode 100644 index b36e93c..0000000 --- a/packages/client/src/resources/location/location.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Location } from './location.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Location', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Location(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Location); - }); -}); diff --git a/packages/client/src/resources/movie/movie.test.ts b/packages/client/src/resources/movie/movie.test.ts deleted file mode 100644 index ae09548..0000000 --- a/packages/client/src/resources/movie/movie.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Movie } from './movie.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Movie', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Movie(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Movie); - }); -}); diff --git a/packages/client/src/resources/origin/origin.test.ts b/packages/client/src/resources/origin/origin.test.ts deleted file mode 100644 index 942f2c1..0000000 --- a/packages/client/src/resources/origin/origin.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Origin } from './origin.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Origin', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Origin(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Origin); - }); -}); diff --git a/packages/client/src/resources/person/person.test.ts b/packages/client/src/resources/person/person.test.ts deleted file mode 100644 index 09c407a..0000000 --- a/packages/client/src/resources/person/person.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Person } from './person.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Person', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Person(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Person); - }); -}); diff --git a/packages/client/src/resources/power/power.test.ts b/packages/client/src/resources/power/power.test.ts deleted file mode 100644 index 5eed7d3..0000000 --- a/packages/client/src/resources/power/power.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Power } from './power.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Power', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Power(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Power); - }); -}); diff --git a/packages/client/src/resources/promo/promo.test.ts b/packages/client/src/resources/promo/promo.test.ts deleted file mode 100644 index a0c0107..0000000 --- a/packages/client/src/resources/promo/promo.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Promo } from './promo.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Promo', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Promo(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Promo); - }); -}); diff --git a/packages/client/src/resources/publisher/publisher.test.ts b/packages/client/src/resources/publisher/publisher.test.ts deleted file mode 100644 index 0ec6c64..0000000 --- a/packages/client/src/resources/publisher/publisher.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Publisher } from './publisher.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Publisher', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Publisher(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Publisher); - }); -}); diff --git a/packages/client/src/resources/series/series.test.ts b/packages/client/src/resources/series/series.test.ts deleted file mode 100644 index 2218bc5..0000000 --- a/packages/client/src/resources/series/series.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Series } from './series.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Series', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Series(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Series); - }); -}); diff --git a/packages/client/src/resources/story-arc/story-arc.test.ts b/packages/client/src/resources/story-arc/story-arc.test.ts deleted file mode 100644 index 7226f91..0000000 --- a/packages/client/src/resources/story-arc/story-arc.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { StoryArc } from './story-arc.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('StoryArc', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new StoryArc(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.StoryArc); - }); -}); diff --git a/packages/client/src/resources/team/team.test.ts b/packages/client/src/resources/team/team.test.ts deleted file mode 100644 index d1f28b9..0000000 --- a/packages/client/src/resources/team/team.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Team } from './team.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Team', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Team(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Team); - }); -}); diff --git a/packages/client/src/resources/thing/thing.test.ts b/packages/client/src/resources/thing/thing.test.ts deleted file mode 100644 index 30848e5..0000000 --- a/packages/client/src/resources/thing/thing.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Thing } from './thing.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Thing', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Thing(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Thing); - }); -}); diff --git a/packages/client/src/resources/video-category/video-category.test.ts b/packages/client/src/resources/video-category/video-category.test.ts deleted file mode 100644 index bd83716..0000000 --- a/packages/client/src/resources/video-category/video-category.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { VideoCategory } from './video-category.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('VideoCategory', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new VideoCategory(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.VideoCategory); - }); -}); diff --git a/packages/client/src/resources/video-type/video-type.test.ts b/packages/client/src/resources/video-type/video-type.test.ts deleted file mode 100644 index e118397..0000000 --- a/packages/client/src/resources/video-type/video-type.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { VideoType } from './video-type.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('VideoType', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new VideoType(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.VideoType); - }); -}); diff --git a/packages/client/src/resources/video/video.test.ts b/packages/client/src/resources/video/video.test.ts deleted file mode 100644 index ed4253f..0000000 --- a/packages/client/src/resources/video/video.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Video } from './video.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Video', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Video(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Video); - }); -}); diff --git a/packages/client/src/resources/volume/volume.test.ts b/packages/client/src/resources/volume/volume.test.ts deleted file mode 100644 index 8f12e27..0000000 --- a/packages/client/src/resources/volume/volume.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Volume } from './volume.js'; -import { HttpClientFactory } from '../../http-client/index.js'; -import { ResourceType } from '../resource-type.js'; - -describe('Volume', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); - - it('should have the correct resource type', () => { - const resource = new Volume(httpClient, urlBuilder); - expect(resource['resourceType']).toBe(ResourceType.Volume); - }); -}); diff --git a/packages/client/src/stores/adaptive-capacity-calculator.ts b/packages/client/src/stores/adaptive-capacity-calculator.ts deleted file mode 100644 index 33de974..0000000 --- a/packages/client/src/stores/adaptive-capacity-calculator.ts +++ /dev/null @@ -1,186 +0,0 @@ -import { z } from 'zod'; -import { AdaptiveConfigSchema } from './rate-limit-store.js'; - -interface ActivityMetrics { - recentUserRequests: Array; - recentBackgroundRequests: Array; - userActivityTrend: 'increasing' | 'stable' | 'decreasing' | 'none'; -} - -interface DynamicCapacityResult { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - reason: string; -} - -/** - * Calculates dynamic capacity allocation based on real-time user activity patterns - */ -export class AdaptiveCapacityCalculator { - public readonly config: z.infer; - - constructor(config: Partial> = {}) { - // Zod handles validation and applies defaults automatically - this.config = AdaptiveConfigSchema.parse(config); - } - - calculateDynamicCapacity( - resource: string, - totalLimit: number, - activityMetrics: ActivityMetrics, - ): DynamicCapacityResult { - const recentUserActivity = this.getRecentActivity( - activityMetrics.recentUserRequests, - ); - const activityTrend = this.calculateActivityTrend( - activityMetrics.recentUserRequests, - ); - - // Strategy 1: High Activity - Pause Background - if (recentUserActivity >= this.config.highActivityThreshold) { - const userCapacity = Math.min( - totalLimit * 0.9, - Math.floor(totalLimit * 0.5 * this.config.maxUserScaling), // 50% base * scaling factor - ); - - return { - userReserved: userCapacity, - backgroundMax: totalLimit - userCapacity, - backgroundPaused: - this.config.backgroundPauseOnIncreasingTrend && - activityTrend === 'increasing', - reason: `High user activity (${recentUserActivity} requests/${this.config.monitoringWindowMs / 60000}min) - prioritizing users`, - }; - } - - // Strategy 2: Moderate Activity - Balanced Scaling - if (recentUserActivity >= this.config.moderateActivityThreshold) { - const userMultiplier = this.getUserMultiplier( - recentUserActivity, - activityTrend, - ); - const baseUserCapacity = Math.floor(totalLimit * 0.4); // 40% base allocation - const dynamicUserCapacity = Math.min( - totalLimit * 0.7, - baseUserCapacity * userMultiplier, - ); - - return { - userReserved: dynamicUserCapacity, - backgroundMax: totalLimit - dynamicUserCapacity, - backgroundPaused: false, - reason: `Moderate user activity - dynamic scaling (${userMultiplier.toFixed(1)}x user capacity)`, - }; - } - - // Strategy 3: Low/No Activity - Background Scale Up - if (recentUserActivity === 0) { - // If there have never been any requests at all (fresh start), use default capacity allocation - if ( - activityMetrics.recentUserRequests.length === 0 && - activityMetrics.recentBackgroundRequests.length === 0 - ) { - const baseUserCapacity = Math.floor(totalLimit * 0.3); // 30% base for initial state - return { - userReserved: Math.max(baseUserCapacity, this.config.minUserReserved), - backgroundMax: - totalLimit - - Math.max(baseUserCapacity, this.config.minUserReserved), - backgroundPaused: false, - reason: 'Initial state - default capacity allocation', - }; - } - - // If there have never been user requests (only background), use background scale up - if (activityMetrics.recentUserRequests.length === 0) { - return { - userReserved: this.config.minUserReserved, // Minimal safety buffer - backgroundMax: totalLimit - this.config.minUserReserved, - backgroundPaused: false, - reason: - 'No user activity yet - background scale up with minimal user buffer', - }; - } - - // There have been user requests before, check for sustained inactivity - const sustainedInactivity = this.getSustainedInactivityPeriod( - activityMetrics.recentUserRequests, - ); - - if (sustainedInactivity > this.config.sustainedInactivityThresholdMs) { - return { - userReserved: 0, // No reservation - background gets everything! - backgroundMax: totalLimit, // Full capacity available - backgroundPaused: false, - reason: `Sustained zero activity (${Math.floor(sustainedInactivity / 60000)}+ min) - full capacity to background`, - }; - } else { - return { - userReserved: this.config.minUserReserved, // Minimal safety buffer - backgroundMax: totalLimit - this.config.minUserReserved, - backgroundPaused: false, - reason: - 'Recent zero activity - background scale up with minimal user buffer', - }; - } - } - - // Strategy 4: Very Low Activity - Gradual Background Scale Up - const baseUserCapacity = Math.floor(totalLimit * 0.3); // 30% base for very low activity - return { - userReserved: Math.max(baseUserCapacity, this.config.minUserReserved), - backgroundMax: - totalLimit - Math.max(baseUserCapacity, this.config.minUserReserved), - backgroundPaused: false, - reason: `Low user activity (${recentUserActivity} requests/${this.config.monitoringWindowMs / 60000}min) - background scale up`, - }; - } - - getRecentActivity(requests: Array): number { - const cutoff = Date.now() - this.config.monitoringWindowMs; - return requests.filter((timestamp) => timestamp > cutoff).length; - } - - calculateActivityTrend( - requests: Array, - ): 'increasing' | 'stable' | 'decreasing' | 'none' { - const now = Date.now(); - const windowSize = this.config.monitoringWindowMs / 3; // Use 1/3 of monitoring window for trend - const recent = requests.filter((t) => t > now - windowSize).length; - const previous = requests.filter( - (t) => t > now - 2 * windowSize && t <= now - windowSize, - ).length; - - if (recent === 0 && previous === 0) return 'none'; - if (recent > previous * 1.5) return 'increasing'; - if (recent < previous * 0.5) return 'decreasing'; - return 'stable'; - } - - private getUserMultiplier(activity: number, trend: string): number { - let base = Math.min( - this.config.maxUserScaling, - 1 + activity / this.config.highActivityThreshold, - ); - - // Adjust based on trend - if (trend === 'increasing') base *= 1.2; - if (trend === 'decreasing') base *= 0.8; - - return Math.max(1.0, base); - } - - private getSustainedInactivityPeriod(requests: Array): number { - if (requests.length === 0) { - // This should not be called when there are no requests (handled above) - return 0; - } - - const lastRequest = Math.max(...requests); - return Date.now() - lastRequest; - } -} - -// Export types for use in other modules -export type { ActivityMetrics, DynamicCapacityResult }; diff --git a/packages/client/src/stores/cache-store.ts b/packages/client/src/stores/cache-store.ts deleted file mode 100644 index 3a8a30e..0000000 --- a/packages/client/src/stores/cache-store.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * Interface for caching API responses with TTL support - */ -export interface CacheStore { - /** - * Retrieve a cached value by hash key - * @param hash The hash key of the cached item - * @returns The cached value or undefined if not found or expired - */ - get(hash: string): Promise; - - /** - * Store a value in the cache with a TTL - * @param hash The hash key for the cached item - * @param value The value to cache - * @param ttlSeconds TTL in seconds after which the item expires - */ - set(hash: string, value: T, ttlSeconds: number): Promise; - - /** - * Remove a cached item by hash key - * @param hash The hash key of the cached item - */ - delete(hash: string): Promise; - - /** - * Clear all cached items - */ - clear(): Promise; -} diff --git a/packages/client/src/stores/dedupe-store.ts b/packages/client/src/stores/dedupe-store.ts deleted file mode 100644 index d12e838..0000000 --- a/packages/client/src/stores/dedupe-store.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * Interface for deduplicating concurrent API requests - */ -export interface DedupeStore { - /** - * Wait for the result of an existing request if one is in progress - * @param hash The hash key of the request - * @returns The result if found, otherwise undefined - */ - waitFor(hash: string): Promise; - - /** - * Register a new request and get a job ID - * @param hash The hash key of the request - * @returns A unique job ID for this request - */ - register(hash: string): Promise; - - /** - * Mark a request as complete with its result - * @param hash The hash key of the request - * @param value The result of the request - */ - complete(hash: string, value: T): Promise; - - /** - * Mark a request as failed with an error - * @param hash The hash key of the request - * @param error The error that occurred - */ - fail(hash: string, error: Error): Promise; - - /** - * Check if a request is currently in progress - * @param hash The hash key of the request - * @returns True if the request is in progress - */ - isInProgress(hash: string): Promise; -} diff --git a/packages/client/src/stores/index.ts b/packages/client/src/stores/index.ts deleted file mode 100644 index d0048b4..0000000 --- a/packages/client/src/stores/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -export type { CacheStore } from './cache-store.js'; -export type { DedupeStore } from './dedupe-store.js'; -export type { - RateLimitStore, - AdaptiveRateLimitStore, - RequestPriority, - AdaptiveConfig, -} from './rate-limit-store.js'; -export { AdaptiveConfigSchema } from './rate-limit-store.js'; -export { hashRequest } from './request-hasher.js'; -export type { RateLimitConfig } from './rate-limit-config.js'; -export { DEFAULT_RATE_LIMIT } from './rate-limit-config.js'; -export { AdaptiveCapacityCalculator } from './adaptive-capacity-calculator.js'; -export type { - ActivityMetrics, - DynamicCapacityResult, -} from './adaptive-capacity-calculator.js'; diff --git a/packages/client/src/stores/rate-limit-config.ts b/packages/client/src/stores/rate-limit-config.ts deleted file mode 100644 index 150aa76..0000000 --- a/packages/client/src/stores/rate-limit-config.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Configuration for per-resource rate limiting. - * - * This interface is shared by all store implementations (e.g. in-memory, - * SQLite) so that callers can use a single canonical type. - */ -export interface RateLimitConfig { - /** Number of requests allowed per time window */ - limit: number; - /** Duration of the window in milliseconds */ - windowMs: number; -} - -/** - * Default rate-limit window: 60 requests per minute. - * - * Store implementations can reference this to avoid duplicating magic numbers. - */ -export const DEFAULT_RATE_LIMIT: RateLimitConfig = { - limit: 60, - windowMs: 60_000, -}; diff --git a/packages/client/src/stores/rate-limit-store.ts b/packages/client/src/stores/rate-limit-store.ts deleted file mode 100644 index c5d387f..0000000 --- a/packages/client/src/stores/rate-limit-store.ts +++ /dev/null @@ -1,129 +0,0 @@ -import { z } from 'zod'; - -/** - * Priority level for API requests - */ -export type RequestPriority = 'user' | 'background'; - -/** - * Adaptive configuration schema with validation and defaults - */ -export const AdaptiveConfigSchema = z - .object({ - monitoringWindowMs: z - .number() - .positive() - .default(15 * 60 * 1000), // 15 minutes - highActivityThreshold: z.number().min(0).default(10), // requests per window - moderateActivityThreshold: z.number().min(0).default(3), - recalculationIntervalMs: z.number().positive().default(30000), // 30 seconds - sustainedInactivityThresholdMs: z - .number() - .positive() - .default(30 * 60 * 1000), // 30 minutes - backgroundPauseOnIncreasingTrend: z.boolean().default(true), - maxUserScaling: z.number().positive().default(2.0), // don't exceed 2x capacity - minUserReserved: z.number().min(0).default(5), // requests minimum - }) - .refine( - (data) => { - return data.moderateActivityThreshold < data.highActivityThreshold; - }, - { - message: - 'moderateActivityThreshold must be less than highActivityThreshold', - }, - ); - -/** - * Configuration for adaptive rate limiting - */ -export type AdaptiveConfig = z.infer; - -/** - * Interface for rate limiting API requests per resource - */ -export interface RateLimitStore { - /** - * Check if a request to a resource can proceed based on rate limits - * @param resource The resource name (e.g., 'issues', 'characters') - * @returns True if the request can proceed, false if rate limited - */ - canProceed(resource: string): Promise; - - /** - * Record a request to a resource for rate limiting tracking - * @param resource The resource name (e.g., 'issues', 'characters') - */ - record(resource: string): Promise; - - /** - * Get the current rate limit status for a resource - * @param resource The resource name - * @returns Rate limit information including remaining requests and reset time - */ - getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - }>; - - /** - * Reset rate limits for a resource (useful for testing) - * @param resource The resource name - */ - reset(resource: string): Promise; - - /** - * Get the time in milliseconds until the next request can be made - * @param resource The resource name - * @returns Milliseconds to wait, or 0 if no waiting is needed - */ - getWaitTime(resource: string): Promise; -} - -/** - * Enhanced interface for adaptive rate limiting stores with priority support - */ -export interface AdaptiveRateLimitStore extends RateLimitStore { - /** - * Check if a request to a resource can proceed based on rate limits - * @param resource The resource name (e.g., 'issues', 'characters') - * @param priority The priority level of the request (defaults to 'background') - * @returns True if the request can proceed, false if rate limited - */ - canProceed(resource: string, priority?: RequestPriority): Promise; - - /** - * Record a request to a resource for rate limiting tracking - * @param resource The resource name (e.g., 'issues', 'characters') - * @param priority The priority level of the request (defaults to 'background') - */ - record(resource: string, priority?: RequestPriority): Promise; - - /** - * Get the current rate limit status for a resource - * @param resource The resource name - * @returns Rate limit information including remaining requests and reset time - */ - getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - adaptive?: { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - recentUserActivity: number; - reason: string; - }; - }>; - - /** - * Get the time in milliseconds until the next request can be made - * @param resource The resource name - * @param priority The priority level of the request (defaults to 'background') - * @returns Milliseconds to wait, or 0 if no waiting is needed - */ - getWaitTime(resource: string, priority?: RequestPriority): Promise; -} diff --git a/packages/client/src/stores/request-hasher.test.ts b/packages/client/src/stores/request-hasher.test.ts deleted file mode 100644 index 4a7840d..0000000 --- a/packages/client/src/stores/request-hasher.test.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { describe, it, expect } from 'vitest'; -import { hashRequest } from './request-hasher.js'; - -describe('hashRequest', () => { - it('should generate consistent hashes for identical inputs', () => { - const endpoint = 'issues/retrieve'; - const params = { id: 1, fieldList: ['id', 'name'] }; - - const hash1 = hashRequest(endpoint, params); - const hash2 = hashRequest(endpoint, params); - - expect(hash1).toBe(hash2); - }); - - it('should generate different hashes for different endpoints', () => { - const params = { id: 1 }; - - const hash1 = hashRequest('issues/retrieve', params); - const hash2 = hashRequest('characters/retrieve', params); - - expect(hash1).not.toBe(hash2); - }); - - it('should generate different hashes for different parameters', () => { - const endpoint = 'issues/retrieve'; - - const hash1 = hashRequest(endpoint, { id: 1 }); - const hash2 = hashRequest(endpoint, { id: 2 }); - - expect(hash1).not.toBe(hash2); - }); - - it('should handle empty parameters', () => { - const endpoint = 'issues/list'; - - const hash1 = hashRequest(endpoint, {}); - const hash2 = hashRequest(endpoint, {}); - - expect(hash1).toBe(hash2); - expect(hash1).toBeTruthy(); - }); - - it('should handle null and undefined parameters', () => { - const endpoint = 'issues/retrieve'; - - const hash1 = hashRequest(endpoint, { id: 1, name: null }); - const hash2 = hashRequest(endpoint, { id: 1, name: undefined }); - const hash3 = hashRequest(endpoint, { id: 1 }); // undefined omitted - - // null and undefined should produce different hashes - expect(hash1).not.toBe(hash2); - - // undefined and omitted should produce the same hash - expect(hash2).toBe(hash3); - }); - - it('should handle complex nested objects', () => { - const endpoint = 'issues/list'; - const params = { - filter: { name: 'Batman' }, - sort: { field: 'date_added', direction: 'desc' }, - pagination: { limit: 10, offset: 0 }, - }; - - const hash1 = hashRequest(endpoint, params); - const hash2 = hashRequest(endpoint, params); - - expect(hash1).toBe(hash2); - }); - - it('should handle parameter order independence', () => { - const endpoint = 'issues/retrieve'; - - const hash1 = hashRequest(endpoint, { id: 1, name: 'test' }); - const hash2 = hashRequest(endpoint, { name: 'test', id: 1 }); - - expect(hash1).toBe(hash2); - }); - - it('should generate SHA-256 length hashes', () => { - const hash = hashRequest('test/endpoint', { id: 1 }); - - // SHA-256 hex string should be 64 characters - expect(hash).toHaveLength(64); - expect(hash).toMatch(/^[a-f0-9]+$/); - }); - - it('should handle array parameters consistently', () => { - const endpoint = 'issues/list'; - - const hash1 = hashRequest(endpoint, { fieldList: ['id', 'name'] }); - const hash2 = hashRequest(endpoint, { fieldList: ['id', 'name'] }); - - expect(hash1).toBe(hash2); - }); - - it('should handle special characters in parameters', () => { - const endpoint = 'issues/search'; - const params = { query: 'Spider-Man: Into the Spider-Verse' }; - - const hash1 = hashRequest(endpoint, params); - const hash2 = hashRequest(endpoint, params); - - expect(hash1).toBe(hash2); - }); - - it('should treat numeric and string parameter values equivalently', () => { - const endpoint = 'issues/retrieve'; - - const hash1 = hashRequest(endpoint, { id: 10 }); - const hash2 = hashRequest(endpoint, { id: '10' }); - - expect(hash1).toBe(hash2); - }); -}); diff --git a/packages/client/src/stores/request-hasher.ts b/packages/client/src/stores/request-hasher.ts deleted file mode 100644 index c1d0b1d..0000000 --- a/packages/client/src/stores/request-hasher.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { createHash } from 'crypto'; - -/** - * Creates a consistent hash for API requests to use as cache/dedupe keys - * @param endpoint The API endpoint - * @param params The request parameters - * @returns A SHA-256 hash of the request - */ -export function hashRequest( - endpoint: string, - params: Record = {}, -): string { - const requestString = JSON.stringify({ - endpoint, - params: sortObject(params), - }); - - return createHash('sha256').update(requestString).digest('hex'); -} - -/** - * Normalises and sorts an object for hashing purposes. - * - * The ComicVine API transmits all query parameters as strings. To avoid cache - * misses caused by treating `10` and `'10'` as different values we normalise - * primitive types (number and boolean) to their string representation **before** - * sorting. `undefined` values are intentionally kept as `undefined` so that - * they are dropped by `JSON.stringify`, maintaining the existing behaviour - * where an omitted parameter and an `undefined` parameter produce the same - * hash. - */ -function sortObject(obj: unknown): unknown { - // Handle primitives first - if (obj === null) { - return null; - } - - const objType = typeof obj; - - if (objType === 'undefined' || objType === 'string') { - return obj; - } - - if (objType === 'number' || objType === 'boolean') { - // Convert to string so that 10 and '10' (or true and 'true') hash equally - return String(obj); - } - - // Recursively process arrays - if (Array.isArray(obj)) { - return obj.map(sortObject); - } - - // For objects – sort keys and recurse - const sorted: Record = {}; - const keys = Object.keys(obj as Record).sort(); - - for (const key of keys) { - const value = (obj as Record)[key]; - const normalisedValue = sortObject(value); - - // Skip keys whose value normalises to undefined so omitted & undefined match - if (normalisedValue !== undefined) { - sorted[key] = normalisedValue; - } - } - - return sorted; -} diff --git a/packages/client/src/types/http-client.ts b/packages/client/src/types/http-client.ts deleted file mode 100644 index 2a26ee0..0000000 --- a/packages/client/src/types/http-client.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { Response } from './response.js'; -import { RequestPriority } from '../stores/rate-limit-store.js'; - -export interface HttpClient { - /** - * Perform a GET request. - * - * @param url Full request URL - * @param options Optional configuration – primarily an AbortSignal so - * callers can cancel long-running or rate-limited waits. - */ - get( - url: string, - options?: { - /** - * AbortSignal that allows the caller to cancel the request, including any - * internal rate-limit wait. If the signal is aborted while waiting the - * promise rejects with an `AbortError`-like `Error` instance. - */ - signal?: AbortSignal; - /** - * Priority level for the request (affects rate limiting behavior) - */ - priority?: RequestPriority; - }, - ): Promise>; -} diff --git a/packages/client/tsconfig.dev.json b/packages/client/tsconfig.dev.json deleted file mode 100644 index 1ff37d7..0000000 --- a/packages/client/tsconfig.dev.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "compilerOptions": { - "alwaysStrict": true, - "declaration": true, - "esModuleInterop": true, - "experimentalDecorators": true, - "inlineSourceMap": true, - "inlineSources": true, - "lib": ["es2019"], - "module": "Node16", - "noEmitOnError": false, - "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, - "noImplicitReturns": true, - "noImplicitThis": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "resolveJsonModule": true, - "strict": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "stripInternal": true, - "target": "ES2020", - "skipLibCheck": true, - "types": [] - }, - "include": [ - ".projenrc.js", - "src/**/*.ts", - "test/**/*.ts", - ".projenrc.ts", - "projenrc/**/*.ts" - ], - "exclude": ["node_modules"], - "ts-node": { - "esm": true - } -} diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json deleted file mode 100644 index 9536a0f..0000000 --- a/packages/client/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "../../tsconfig.base.json" -} diff --git a/packages/client/tsup.config.ts b/packages/client/tsup.config.ts deleted file mode 100644 index 9a536e4..0000000 --- a/packages/client/tsup.config.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { defineConfig } from 'tsup'; -import { sharedTsupConfig } from '@repo/tsup-config'; - -export default defineConfig({ - ...sharedTsupConfig, - // Add package-specific overrides here if needed -}); diff --git a/packages/client/vitest.config.ts b/packages/client/vitest.config.ts deleted file mode 100644 index ddcbd82..0000000 --- a/packages/client/vitest.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from 'vitest/config'; -import { sharedVitestConfig } from '@repo/vitest-config'; - -export default defineConfig({ - ...sharedVitestConfig, - test: { - ...sharedVitestConfig.test, - // Add package-specific overrides here if needed - }, -}); diff --git a/packages/eslint-config/base.js b/packages/eslint-config/base.js deleted file mode 100644 index fc394e5..0000000 --- a/packages/eslint-config/base.js +++ /dev/null @@ -1,105 +0,0 @@ -import globals from 'globals'; -import js from '@eslint/js'; -import tseslint from 'typescript-eslint'; -import eslintConfigPrettier from 'eslint-config-prettier'; -import eslintPluginPrettier from 'eslint-plugin-prettier'; -import eslintPluginImport from 'eslint-plugin-import'; - -/** - * Base ESLint configuration for all packages - * @type {import('eslint').Linter.Config[]} - */ -export const baseConfig = [ - js.configs.recommended, - ...tseslint.configs.recommended, - eslintConfigPrettier, - { - languageOptions: { - globals: { - ...globals.node, - ...globals.es2022, - }, - }, - plugins: { - prettier: eslintPluginPrettier, - import: eslintPluginImport, - }, - settings: { - 'import/parsers': { - '@typescript-eslint/parser': ['.ts', '.tsx'], - }, - 'import/resolver': { - node: {}, - typescript: { - alwaysTryTypes: true, - }, - }, - }, - rules: { - 'prettier/prettier': ['error'], - 'import/no-extraneous-dependencies': [ - 'error', - { - devDependencies: [ - '**/test/**', - '**/build-tools/**', - '**/vitest.config.ts', - '**/tsup.config.ts', - '**/*.test.ts', - '**/*.test.tsx', - ], - optionalDependencies: false, - peerDependencies: true, - includeInternal: true, - }, - ], - 'import/no-unresolved': ['error'], - 'import/order': [ - 'warn', - { - groups: ['builtin', 'external'], - alphabetize: { - order: 'asc', - caseInsensitive: true, - }, - }, - ], - 'no-duplicate-imports': ['error'], - 'no-shadow': ['off'], - '@typescript-eslint/no-shadow': ['error'], - '@typescript-eslint/no-unused-vars': [ - 'error', - { - argsIgnorePattern: '^_', - varsIgnorePattern: '^_', - }, - ], - '@typescript-eslint/array-type': [ - 'error', - { - default: 'generic', - }, - ], - }, - }, - // Configuration for TypeScript files - { - files: ['**/*.ts', '**/*.tsx'], - languageOptions: { - parser: tseslint.parser, - parserOptions: { - ecmaVersion: 2018, - sourceType: 'module', - }, - }, - rules: { - '@typescript-eslint/no-require-imports': ['error'], - '@typescript-eslint/array-type': [ - 'error', - { - default: 'generic', - }, - ], - }, - }, -]; diff --git a/packages/eslint-config/library.js b/packages/eslint-config/library.js deleted file mode 100644 index b86b24e..0000000 --- a/packages/eslint-config/library.js +++ /dev/null @@ -1,20 +0,0 @@ -import globals from 'globals'; -import { baseConfig } from './base.js'; - -/** - * ESLint configuration for library packages - * @type {import('eslint').Linter.Config[]} - */ -export const libraryConfig = [ - ...baseConfig, - { - languageOptions: { - globals: { - ...globals.node, - }, - }, - rules: { - // Library-specific rules can be added here - }, - }, -]; diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json deleted file mode 100644 index 1c36c8b..0000000 --- a/packages/eslint-config/package.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "@repo/eslint-config", - "version": "0.0.1", - "private": true, - "type": "module", - "exports": { - "./base": "./base.js", - "./library": "./library.js" - }, - "devDependencies": { - "eslint": "9", - "eslint-config-prettier": "10.1.5", - "eslint-import-resolver-node": "0.3.9", - "eslint-import-resolver-typescript": "4.4.4", - "eslint-plugin-import": "2.32.0", - "eslint-plugin-prettier": "5.5.1", - "globals": "16.3.0", - "prettier": "3.6.2", - "typescript-eslint": "8" - } -} diff --git a/packages/in-memory-store/CHANGELOG.md b/packages/in-memory-store/CHANGELOG.md deleted file mode 100644 index 105705d..0000000 --- a/packages/in-memory-store/CHANGELOG.md +++ /dev/null @@ -1,33 +0,0 @@ -# @comic-vine/in-memory-store - -## 0.1.2 - -### Patch Changes - -- 16cbc6b: update documentation detailing how stores work -- Updated dependencies [16cbc6b] - - @comic-vine/client@0.1.2 - -## 0.1.1 - -### Patch Changes - -- Updated dependencies [6d7fcb9] - - @comic-vine/client@0.1.1 - -## 0.1.0 - -### Minor Changes - -- ce26fb2: feat: introduce @comic-vine/in-memory-store and @comic-vine/sqlite-store packages - - This introduces two new packages providing optimized store implementations for caching, deduplication, and rate limiting: - - @comic-vine/in-memory-store: Advanced in-memory stores with LRU eviction and memory management - - @comic-vine/sqlite-store: SQLite-based persistent stores with cross-process support and database optimization - - Both packages provide comprehensive TypeScript support and are designed for production use. - -### Patch Changes - -- Updated dependencies [ce26fb2] - - @comic-vine/client@0.1.0 diff --git a/packages/in-memory-store/README.md b/packages/in-memory-store/README.md deleted file mode 100644 index 6f27214..0000000 --- a/packages/in-memory-store/README.md +++ /dev/null @@ -1,415 +0,0 @@ -# @comic-vine/in-memory-store - -In-memory store implementations for Comic Vine client caching, deduplication, and rate limiting. - -## Installation - -```bash -npm install @comic-vine/in-memory-store @comic-vine/client -``` - -## Usage - -```typescript -import ComicVine from '@comic-vine/client'; -import { - InMemoryCacheStore, - InMemoryDedupeStore, - InMemoryRateLimitStore, - AdaptiveRateLimitStore, // NEW: Intelligent rate limiting -} from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore(), - dedupe: new InMemoryDedupeStore(), - rateLimit: new AdaptiveRateLimitStore(), // Recommended for optimal API usage - }, -}); - -// Use client normally - data is cached in memory with intelligent rate limiting -const issue = await client.issue.retrieve(1, { priority: 'user' }); -``` - -## Key Features - -- **High Performance**: All operations are in-memory for maximum speed -- **Object-based Configuration**: Clean, type-safe constructor parameters -- **Zero Dependencies**: No external storage requirements -- **Type Safety**: Full TypeScript support with exported option interfaces - -## Store Implementations - -### InMemoryCacheStore - -Provides in-memory caching with TTL support. - -```typescript -const cacheStore = new InMemoryCacheStore({ - maxSize: 1000, // Maximum number of entries - ttl: 300000, // 5 minutes TTL - cleanupIntervalMs: 60000, // Cleanup expired items every minute -}); -``` - -**Features:** - -- LRU eviction when max size is reached -- TTL-based expiration with automatic cleanup -- Fast O(1) get/set operations -- Memory-efficient storage - -### InMemoryDedupeStore - -Prevents duplicate concurrent requests using in-memory coordination. - -```typescript -import type { InMemoryDedupeStoreOptions } from '@comic-vine/in-memory-store'; - -const dedupeStore = new InMemoryDedupeStore({ - jobTimeoutMs: 300_000, // 5 minute timeout for jobs (default) - cleanupIntervalMs: 60_000, // Cleanup interval (default: 1 minute) -}); -``` - -**Features:** - -- Promise-based deduplication -- Automatic cleanup of expired jobs -- Error state handling and propagation -- Memory-efficient job tracking -- Configurable job timeouts and cleanup intervals - -### InMemoryRateLimitStore - -Implements sliding window rate limiting with in-memory tracking. - -```typescript -import type { InMemoryRateLimitStoreOptions } from '@comic-vine/in-memory-store'; - -const rateLimitStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 100, windowMs: 60_000 }, // Default: 100 req/min - resourceConfigs: new Map([ - ['issues', { limit: 50, windowMs: 60_000 }], // Custom per-resource limits - ['characters', { limit: 200, windowMs: 60_000 }], - ]), -}); -``` - -**Features:** - -- Sliding window algorithm -- Per-resource configuration -- Automatic cleanup of expired records -- Memory-efficient timestamp tracking -- Flexible default and per-resource configurations - -### AdaptiveRateLimitStore (Recommended) - -Advanced rate limiting with intelligent priority-based capacity allocation that adapts to real-time user activity patterns. - -```typescript -import type { AdaptiveRateLimitStoreOptions } from '@comic-vine/in-memory-store'; - -const adaptiveStore = new AdaptiveRateLimitStore({ - adaptiveConfig: { - // Activity detection - highActivityThreshold: 10, // Requests/15min to trigger priority mode - moderateActivityThreshold: 3, // Requests/15min for moderate activity - - // Timing behavior - monitoringWindowMs: 15 * 60 * 1000, // 15 minutes monitoring window - sustainedInactivityThresholdMs: 30 * 60 * 1000, // 30min for full background scale-up - recalculationIntervalMs: 30000, // Recalculate every 30 seconds - - // Capacity limits - maxUserScaling: 2.0, // Maximum user capacity multiplier - minUserReserved: 5, // Minimum guaranteed user requests - backgroundPauseOnIncreasingTrend: true, // Pause background on user surge - }, -}); -``` - -**Features:** - -- **Real-time adaptation**: Dynamically allocates capacity based on user activity patterns -- **Priority-aware**: Distinguishes between user requests and background operations -- **Four adaptive strategies**: Night mode, low activity, moderate activity, high activity -- **Zero configuration**: Works perfectly with intelligent defaults -- **Memory efficient**: In-memory activity tracking with automatic cleanup -- **Trend detection**: Recognizes increasing, stable, decreasing, or no activity trends - -**How It Works:** - -```typescript -// Night time (zero user activity for 30+ minutes) -// → Background gets 100% capacity (200/200 requests) - -// Low activity (1-2 user requests per 15 minutes) -// → Users: 30% reserved, Background: 70% capacity - -// Moderate activity (3-9 user requests per 15 minutes) -// → Dynamic scaling based on trends and activity level - -// High activity (10+ user requests per 15 minutes) -// → Users: 90% priority capacity, Background: paused during increasing trends -``` - -**Usage with Priority:** - -```typescript -import ComicVine from '@comic-vine/client'; -import { AdaptiveRateLimitStore } from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new AdaptiveRateLimitStore(), // Zero config needed! - }, -}); - -// User-facing requests get priority during high activity -const character = await client.character.retrieve(1443, { - priority: 'user', -}); - -// Background operations get remaining capacity -const volumes = await client.volume.list({ - priority: 'background', -}); - -// Check adaptive status -const status = await client.stores.rateLimit.getStatus('characters'); -console.log(status.adaptive); -// { -// userReserved: 120, -// backgroundMax: 80, -// backgroundPaused: false, -// recentUserActivity: 4, -// reason: "Moderate user activity - dynamic scaling (1.2x user capacity)" -// } -``` - -## How Stores Work Together - -The three store types work in sequence to optimize API requests: - -### Request Processing Order - -1. **Cache Store**: Checks for existing response (immediate return if found) -2. **Dedupe Store**: Prevents duplicate concurrent requests (waits for in-progress requests) -3. **Rate Limit Store**: Enforces API limits (waits or throws if limit exceeded) - -```typescript -// Example: Multiple concurrent requests for the same resource -const [a, b, c] = await Promise.all([ - client.issue.retrieve(1), // Cache miss → dedupe register → rate limit check → API call - client.issue.retrieve(1), // Cache miss → dedupe wait (shares result from first call) - client.issue.retrieve(1), // Cache miss → dedupe wait (shares result from first call) -]); - -// Subsequent calls return from cache -const d = await client.issue.retrieve(1); // Cache hit → immediate return -``` - -### Store Lifecycle - -Each store manages its own lifecycle and cleanup: - -- **Cache**: Expires entries based on TTL, evicts LRU items when full -- **Dedupe**: Times out jobs, cleans up completed requests -- **Rate Limit**: Slides time windows, removes expired request records - -### Memory Management - -All stores are designed for efficient memory usage: - -- **Cache**: LRU eviction with configurable memory limits -- **Dedupe**: Automatic cleanup of completed/failed jobs -- **Rate Limit**: Sliding window removes old timestamps automatically - -## Configuration Examples - -### Basic Setup - -```typescript -import ComicVine from '@comic-vine/client'; -import { - InMemoryCacheStore, - InMemoryDedupeStore, - AdaptiveRateLimitStore, // Recommended for intelligent rate limiting -} from '@comic-vine/in-memory-store'; - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore(), - dedupe: new InMemoryDedupeStore(), - rateLimit: new AdaptiveRateLimitStore(), // Zero configuration needed! - }, -}); -``` - -### Custom Configuration - -**With Traditional Rate Limiting:** - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore({ - maxSize: 5000, - ttl: 600_000, // 10 minutes - cleanupIntervalMs: 120_000, // 2 minutes - }), - dedupe: new InMemoryDedupeStore({ - jobTimeoutMs: 600_000, // 10 minutes - cleanupIntervalMs: 120_000, // 2 minutes - }), - rateLimit: new InMemoryRateLimitStore({ - defaultConfig: { limit: 200, windowMs: 60_000 }, // 200 requests per minute - resourceConfigs: new Map([ - ['issues', { limit: 100, windowMs: 60_000 }], - ['characters', { limit: 300, windowMs: 60_000 }], - ]), - }), - }, -}); -``` - -**With Adaptive Rate Limiting (Recommended):** - -```typescript -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new InMemoryCacheStore({ - maxSize: 5000, - ttl: 600_000, // 10 minutes - cleanupIntervalMs: 120_000, // 2 minutes - }), - dedupe: new InMemoryDedupeStore({ - jobTimeoutMs: 600_000, // 10 minutes - cleanupIntervalMs: 120_000, // 2 minutes - }), - rateLimit: new AdaptiveRateLimitStore({ - adaptiveConfig: { - // Fine-tune behavior for your use case - highActivityThreshold: 15, // Requests/15min to trigger priority mode - sustainedInactivityThresholdMs: 45 * 60 * 1000, // 45min before full background mode - maxUserScaling: 1.5, // Conservative user scaling - minUserReserved: 10, // Higher minimum for users - }, - }), - }, -}); -``` - -## TypeScript Support - -All stores export their option interfaces for type safety: - -```typescript -import type { - InMemoryCacheStoreOptions, - InMemoryDedupeStoreOptions, - InMemoryRateLimitStoreOptions, - AdaptiveRateLimitStoreOptions, // NEW: Adaptive rate limiting options -} from '@comic-vine/in-memory-store'; - -// Type-safe configuration for traditional rate limiting -const rateLimitOptions: InMemoryRateLimitStoreOptions = { - defaultConfig: { limit: 200, windowMs: 3600000 }, - resourceConfigs: new Map([['issues', { limit: 100, windowMs: 3600000 }]]), -}; - -// Type-safe configuration for adaptive rate limiting -const adaptiveOptions: AdaptiveRateLimitStoreOptions = { - adaptiveConfig: { - highActivityThreshold: 15, - sustainedInactivityThresholdMs: 45 * 60 * 1000, - maxUserScaling: 1.5, - }, -}; - -const adaptiveStore = new AdaptiveRateLimitStore(adaptiveOptions); -``` - -## Performance Characteristics - -### Memory Usage - -- **Cache**: O(n) where n is the number of cached entries -- **Dedupe**: O(m) where m is the number of active jobs -- **Rate Limit**: O(r × t) where r is resources and t is tracking window - -### Time Complexity - -- **Cache Get/Set**: O(1) average case -- **Dedupe Check**: O(1) lookup -- **Rate Limit Check**: O(log n) where n is requests in window - -## Store Comparison - -### Rate Limiting: Adaptive vs Traditional - -| Feature | Traditional Rate Limiting | Adaptive Rate Limiting | -| -------------------------- | ------------------------- | --------------------------- | -| **Configuration Required** | Yes (limits per resource) | No (intelligent defaults) | -| **API Utilization** | Fixed allocation | Dynamic (up to 100%) | -| **User Experience** | First-come-first-served | Priority during activity | -| **Background Processing** | Competes with users | Scales up when idle | -| **Activity Awareness** | No | Real-time monitoring | -| **Trend Detection** | No | Yes (increasing/decreasing) | -| **Night/Off-hours** | Wasted capacity | Full background utilization | - -**When to use Traditional Rate Limiting:** - -- Simple, predictable workloads -- No distinction between user/background requests -- Fixed capacity requirements - -**When to use Adaptive Rate Limiting (Recommended):** - -- Applications with varying user activity -- Mix of interactive and background operations -- Want to maximize API utilization -- Need responsive user experience - -### In-Memory vs SQLite Stores - -| Feature | In-Memory | SQLite | -| ----------------- | ----------- | -------------------- | -| **Performance** | Fastest | Fast | -| **Persistence** | No | Yes | -| **Memory Usage** | Higher | Lower | -| **Cross-Process** | No | Yes | -| **Setup** | Zero config | Requires file system | - -Choose in-memory stores for: - -- Single-process applications -- Maximum performance requirements -- Development and testing -- Stateless deployments - -Choose SQLite stores for: - -- Multi-process applications -- Persistent caching across restarts -- Production deployments -- Resource-constrained environments - -## API Reference - -All stores implement the same interfaces as the SQLite versions: - -- `CacheStore` -- `DedupeStore` -- `RateLimitStore` - -## License - -MIT diff --git a/packages/in-memory-store/build-tests/cjs-require.test.cjs b/packages/in-memory-store/build-tests/cjs-require.test.cjs deleted file mode 100644 index 210e5aa..0000000 --- a/packages/in-memory-store/build-tests/cjs-require.test.cjs +++ /dev/null @@ -1,85 +0,0 @@ -/** - * Test CommonJS require from built artifacts - * This file validates that the CJS build works correctly - */ -const { resolve } = require('path'); - -function testCJSRequire() { - console.log('Testing in-memory-store CJS require...'); - - try { - // Test requiring the CJS build - const { - InMemoryCacheStore, - InMemoryDedupeStore, - InMemoryRateLimitStore, - } = require('../lib/index.cjs'); - - if (typeof InMemoryCacheStore !== 'function') { - throw new Error('InMemoryCacheStore should be a constructor function'); - } - - if (typeof InMemoryDedupeStore !== 'function') { - throw new Error('InMemoryDedupeStore should be a constructor function'); - } - - if (typeof InMemoryRateLimitStore !== 'function') { - throw new Error( - 'InMemoryRateLimitStore should be a constructor function', - ); - } - - // Test that we can create instances - const cacheStore = new InMemoryCacheStore(); - const dedupeStore = new InMemoryDedupeStore(); - const rateLimitStore = new InMemoryRateLimitStore(); - - if (!cacheStore || !dedupeStore || !rateLimitStore) { - throw new Error('Failed to create store instances'); - } - - // Test that stores have required methods - const cacheStoreMethods = ['get', 'set', 'delete', 'clear']; - for (const method of cacheStoreMethods) { - if (typeof cacheStore[method] !== 'function') { - throw new Error(`InMemoryCacheStore missing method: ${method}`); - } - } - - const dedupeStoreMethods = [ - 'waitFor', - 'register', - 'complete', - 'fail', - 'isInProgress', - ]; - for (const method of dedupeStoreMethods) { - if (typeof dedupeStore[method] !== 'function') { - throw new Error(`InMemoryDedupeStore missing method: ${method}`); - } - } - - const rateLimitStoreMethods = [ - 'canProceed', - 'record', - 'getStatus', - 'reset', - 'getWaitTime', - ]; - for (const method of rateLimitStoreMethods) { - if (typeof rateLimitStore[method] !== 'function') { - throw new Error(`InMemoryRateLimitStore missing method: ${method}`); - } - } - - console.log('✅ in-memory-store CJS require test passed'); - return true; - } catch (error) { - console.error('❌ in-memory-store CJS require test failed:', error.message); - return false; - } -} - -// Run the test -const success = testCJSRequire(); -process.exit(success ? 0 : 1); diff --git a/packages/in-memory-store/build-tests/esm-import.test.js b/packages/in-memory-store/build-tests/esm-import.test.js deleted file mode 100644 index 47a91d5..0000000 --- a/packages/in-memory-store/build-tests/esm-import.test.js +++ /dev/null @@ -1,90 +0,0 @@ -/** - * Test ESM imports from built artifacts - * This file validates that the ESM build works correctly - */ -import { promises as fs } from 'fs'; -import { pathToFileURL } from 'url'; -import { resolve } from 'path'; - -async function testESMImport() { - console.log('Testing in-memory-store ESM imports...'); - - try { - // Test named imports - const { InMemoryCacheStore, InMemoryDedupeStore, InMemoryRateLimitStore } = - await import('../lib/index.js'); - - if (typeof InMemoryCacheStore !== 'function') { - throw new Error('InMemoryCacheStore should be a constructor function'); - } - - if (typeof InMemoryDedupeStore !== 'function') { - throw new Error('InMemoryDedupeStore should be a constructor function'); - } - - if (typeof InMemoryRateLimitStore !== 'function') { - throw new Error( - 'InMemoryRateLimitStore should be a constructor function', - ); - } - - // Test that we can create instances - const cacheStore = new InMemoryCacheStore(); - const dedupeStore = new InMemoryDedupeStore(); - const rateLimitStore = new InMemoryRateLimitStore(); - - if (!cacheStore || !dedupeStore || !rateLimitStore) { - throw new Error('Failed to create store instances'); - } - - // Test that stores have required methods - const cacheStoreMethods = ['get', 'set', 'delete', 'clear']; - for (const method of cacheStoreMethods) { - if (typeof cacheStore[method] !== 'function') { - throw new Error(`InMemoryCacheStore missing method: ${method}`); - } - } - - const dedupeStoreMethods = [ - 'waitFor', - 'register', - 'complete', - 'fail', - 'isInProgress', - ]; - for (const method of dedupeStoreMethods) { - if (typeof dedupeStore[method] !== 'function') { - throw new Error(`InMemoryDedupeStore missing method: ${method}`); - } - } - - const rateLimitStoreMethods = [ - 'canProceed', - 'record', - 'getStatus', - 'reset', - 'getWaitTime', - ]; - for (const method of rateLimitStoreMethods) { - if (typeof rateLimitStore[method] !== 'function') { - throw new Error(`InMemoryRateLimitStore missing method: ${method}`); - } - } - - console.log('✅ in-memory-store ESM import test passed'); - return true; - } catch (error) { - console.error('❌ in-memory-store ESM import test failed:', error.message); - return false; - } -} - -// Run the test -testESMImport() - .then((success) => { - process.exit(success ? 0 : 1); - }) - .catch((error) => { - console.error('❌ in-memory-store ESM import test crashed:', error); - process.exit(1); - }); diff --git a/packages/in-memory-store/build-tests/exports.test.cjs b/packages/in-memory-store/build-tests/exports.test.cjs deleted file mode 100644 index 699f9e5..0000000 --- a/packages/in-memory-store/build-tests/exports.test.cjs +++ /dev/null @@ -1,99 +0,0 @@ -/** - * Test package.json exports mapping - * This file validates that the exports field works correctly - */ -const { resolve } = require('path'); -const { readFileSync, existsSync } = require('fs'); - -function testExports() { - console.log('Testing in-memory-store package.json exports...'); - - try { - // Read package.json - const packagePath = resolve(__dirname, '../package.json'); - const packageJson = JSON.parse(readFileSync(packagePath, 'utf8')); - - if (!packageJson.exports) { - throw new Error('package.json missing exports field'); - } - - const exports = packageJson.exports['.']; - if (!exports) { - throw new Error('package.json missing root export'); - } - - // Check import export - if (!exports.import) { - throw new Error('package.json missing import export'); - } - - const importDefault = exports.import.default; - const importTypes = exports.import.types; - - if (!importDefault || !importTypes) { - throw new Error('package.json import export missing default or types'); - } - - // Check files exist - const importDefaultPath = resolve(__dirname, '..', importDefault); - const importTypesPath = resolve(__dirname, '..', importTypes); - - if (!existsSync(importDefaultPath)) { - throw new Error(`Import default file does not exist: ${importDefault}`); - } - - if (!existsSync(importTypesPath)) { - throw new Error(`Import types file does not exist: ${importTypes}`); - } - - // Check require export - if (!exports.require) { - throw new Error('package.json missing require export'); - } - - const requireDefault = exports.require.default; - const requireTypes = exports.require.types; - - if (!requireDefault || !requireTypes) { - throw new Error('package.json require export missing default or types'); - } - - // Check files exist - const requireDefaultPath = resolve(__dirname, '..', requireDefault); - const requireTypesPath = resolve(__dirname, '..', requireTypes); - - if (!existsSync(requireDefaultPath)) { - throw new Error(`Require default file does not exist: ${requireDefault}`); - } - - if (!existsSync(requireTypesPath)) { - throw new Error(`Require types file does not exist: ${requireTypes}`); - } - - // Check that main, module, and types fields align - if (packageJson.main !== requireDefault) { - throw new Error('package.json main field should match require.default'); - } - - if (packageJson.module !== importDefault) { - throw new Error('package.json module field should match import.default'); - } - - if (packageJson.types !== importTypes) { - throw new Error('package.json types field should match import.types'); - } - - console.log('✅ in-memory-store exports validation test passed'); - return true; - } catch (error) { - console.error( - '❌ in-memory-store exports validation test failed:', - error.message, - ); - return false; - } -} - -// Run the test -const success = testExports(); -process.exit(success ? 0 : 1); diff --git a/packages/in-memory-store/build-tests/functionality.test.cjs b/packages/in-memory-store/build-tests/functionality.test.cjs deleted file mode 100644 index f354b3d..0000000 --- a/packages/in-memory-store/build-tests/functionality.test.cjs +++ /dev/null @@ -1,98 +0,0 @@ -/** - * Test basic functionality of built artifacts - * This file validates that the built package works as expected - */ -const { resolve } = require('path'); - -async function testFunctionality() { - console.log('Testing in-memory-store basic functionality...'); - - try { - // Test CJS functionality - const { - InMemoryCacheStore, - InMemoryDedupeStore, - InMemoryRateLimitStore, - } = require('../lib/index.cjs'); - - // Test InMemoryCacheStore - const cacheStore = new InMemoryCacheStore({ maxSize: 100, ttl: 60000 }); - await cacheStore.set('test-key', 'test-value', 30000); - const cachedValue = await cacheStore.get('test-key'); - - if (cachedValue !== 'test-value') { - throw new Error('InMemoryCacheStore set/get failed'); - } - - // Test InMemoryDedupeStore - const dedupeStore = new InMemoryDedupeStore({ jobTimeoutMs: 60000 }); - const jobId = await dedupeStore.register('test-hash'); - - if (!jobId) { - throw new Error('InMemoryDedupeStore register failed'); - } - - const isInProgress = await dedupeStore.isInProgress('test-hash'); - if (!isInProgress) { - throw new Error( - 'InMemoryDedupeStore isInProgress should return true for registered job', - ); - } - - await dedupeStore.complete('test-hash', 'test-result'); - const result = await dedupeStore.waitFor('test-hash'); - - if (result !== 'test-result') { - throw new Error('InMemoryDedupeStore complete/waitFor failed'); - } - - // Test InMemoryRateLimitStore - const rateLimitStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 10, windowMs: 60000 }, - }); - - const canProceed = await rateLimitStore.canProceed('test-resource'); - if (!canProceed) { - throw new Error('InMemoryRateLimitStore should allow first request'); - } - - await rateLimitStore.record('test-resource'); - const status = await rateLimitStore.getStatus('test-resource'); - - if (!status || status.remaining !== 9) { - throw new Error('InMemoryRateLimitStore record/getStatus failed'); - } - - // Test that stores can be configured with different options - const customCacheStore = new InMemoryCacheStore({ - maxItems: 500, - maxMemoryBytes: 10 * 1024 * 1024, // 10MB - cleanupIntervalMs: 30000, - }); - - if (!customCacheStore) { - throw new Error( - 'Failed to create InMemoryCacheStore with custom options', - ); - } - - console.log('✅ in-memory-store functionality test passed'); - return true; - } catch (error) { - console.error( - '❌ in-memory-store functionality test failed:', - error.message, - ); - return false; - } -} - -// Run the test -testFunctionality() - .then((success) => { - process.exit(success ? 0 : 1); - }) - .catch((error) => { - console.error('❌ in-memory-store functionality test crashed:', error); - process.exit(1); - }); diff --git a/packages/in-memory-store/eslint.config.js b/packages/in-memory-store/eslint.config.js deleted file mode 100644 index 1e857bb..0000000 --- a/packages/in-memory-store/eslint.config.js +++ /dev/null @@ -1,4 +0,0 @@ -import { libraryConfig } from '@repo/eslint-config/library'; - -/** @type {import('eslint').Linter.Config[]} */ -export default libraryConfig; diff --git a/packages/in-memory-store/package.json b/packages/in-memory-store/package.json deleted file mode 100644 index 33bd612..0000000 --- a/packages/in-memory-store/package.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "name": "@comic-vine/in-memory-store", - "description": "In-memory store implementations for Comic Vine client caching, deduplication, and rate limiting", - "repository": { - "type": "git", - "url": "git+https://github.com/AllyMurray/comic-vine.git" - }, - "scripts": { - "build": "tsup && npm run test && npm run package", - "lint": "eslint --fix src && prettier --write .", - "package": "mkdir -p dist/js && mv $(npm pack --silent) dist/js/", - "test": "vitest run --dir=src", - "test:watch": "vitest --dir=src", - "test:build": "npm run test:build:esm && npm run test:build:cjs && npm run test:build:exports && npm run test:build:functionality", - "test:build:esm": "node build-tests/esm-import.test.js", - "test:build:cjs": "node build-tests/cjs-require.test.cjs", - "test:build:exports": "node build-tests/exports.test.cjs", - "test:build:functionality": "node build-tests/functionality.test.cjs", - "dev": "tsup --watch", - "clean": "rimraf lib dist node_modules .turbo" - }, - "author": { - "name": "Ally Murray", - "email": "allymurray88@gmail.com", - "organization": false - }, - "devDependencies": { - "@repo/eslint-config": "workspace:*", - "@repo/tsup-config": "workspace:*", - "@repo/vitest-config": "workspace:*", - "@types/node": "20", - "eslint": "9", - "eslint-config-prettier": "10.1.5", - "eslint-import-resolver-node": "0.3.9", - "eslint-import-resolver-typescript": "4.4.4", - "eslint-plugin-import": "2.32.0", - "eslint-plugin-prettier": "5.5.1", - "globals": "16.3.0", - "prettier": "3.6.2", - "rimraf": "6.0.1", - "tsup": "8.5.0", - "tsx": "4.20.3", - "typescript": "5.8.3", - "typescript-eslint": "8", - "vitest": "3.2.4" - }, - "dependencies": { - "@comic-vine/client": "workspace:*", - "fast-safe-stringify": "^2.1.1", - "zod": "^3.24.1" - }, - "keywords": [ - "comic-vine", - "comic-vine-store", - "in-memory-store", - "caching", - "deduplication", - "rate-limiting", - "comic-vine-client" - ], - "engines": { - "node": ">= 20.0.0" - }, - "main": "./lib/index.cjs", - "license": "MIT", - "sideEffects": false, - "files": [ - "lib/**" - ], - "homepage": "https://github.com/AllyMurray/comic-vine#readme", - "version": "0.1.2", - "bugs": { - "url": "https://github.com/AllyMurray/comic-vine/issues" - }, - "types": "./lib/index.d.ts", - "type": "module", - "module": "./lib/index.js", - "exports": { - ".": { - "import": { - "types": "./lib/index.d.ts", - "default": "./lib/index.js" - }, - "require": { - "types": "./lib/index.d.cts", - "default": "./lib/index.cjs" - } - } - }, - "publishConfig": { - "access": "public" - }, - "packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0" -} diff --git a/packages/in-memory-store/src/adaptive-rate-limit-store.test.ts b/packages/in-memory-store/src/adaptive-rate-limit-store.test.ts deleted file mode 100644 index 426782b..0000000 --- a/packages/in-memory-store/src/adaptive-rate-limit-store.test.ts +++ /dev/null @@ -1,330 +0,0 @@ -import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest'; -import { AdaptiveRateLimitStore } from './adaptive-rate-limit-store.js'; - -describe('AdaptiveRateLimitStore', () => { - let store: AdaptiveRateLimitStore; - const resource = 'test-resource'; - - beforeEach(() => { - store = new AdaptiveRateLimitStore(); - vi.useFakeTimers(); - vi.setSystemTime(new Date('2023-01-01T12:00:00Z')); - }); - - afterEach(() => { - vi.useRealTimers(); - }); - - describe('constructor', () => { - it('should create store with default configuration', () => { - expect(store).toBeDefined(); - }); - - it('should accept custom adaptive configuration', () => { - const customStore = new AdaptiveRateLimitStore({ - adaptiveConfig: { - highActivityThreshold: 15, - maxUserScaling: 3.0, - }, - }); - - expect(customStore).toBeDefined(); - }); - }); - - describe('canProceed and record flow', () => { - it('should allow initial requests for both priorities', async () => { - expect(await store.canProceed(resource, 'user')).toBe(true); - expect(await store.canProceed(resource, 'background')).toBe(true); - }); - - it('should track user and background requests separately', async () => { - // Record some user requests - await store.record(resource, 'user'); - await store.record(resource, 'user'); - - // Record some background requests - await store.record(resource, 'background'); - await store.record(resource, 'background'); - await store.record(resource, 'background'); - - const status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBe(2); - }); - - it('should default to background priority when not specified', async () => { - await store.record(resource); // Default to background - await store.record(resource, 'background'); // Explicit background - - const status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBe(0); // No user requests - }); - }); - - describe('adaptive capacity allocation', () => { - it('should provide more capacity to users during high activity', async () => { - // Simulate high user activity (15 requests > 10 threshold) - for (let i = 0; i < 15; i++) { - await store.record(resource, 'user'); - vi.advanceTimersByTime(30 * 1000); // 30 seconds between requests - } - - // Force recalculation by advancing time - vi.advanceTimersByTime(35 * 1000); - - const status = await store.getStatus(resource); - - expect(status.adaptive?.userReserved).toBeGreaterThan(100); // More than 50% of 200 - expect(status.adaptive?.recentUserActivity).toBe(15); - expect(status.adaptive?.reason).toContain('High user activity'); - }); - - it('should pause background requests during high user activity with increasing trend', async () => { - // Create increasing trend - more recent requests - const now = Date.now(); - - // Simulate pattern that creates increasing trend - for (let i = 0; i < 8; i++) { - vi.setSystemTime(new Date(now - (7 - i) * 60 * 1000)); // Recent requests - await store.record(resource, 'user'); - } - - // Add fewer older requests to establish increasing trend - vi.setSystemTime(new Date(now - 10 * 60 * 1000)); - await store.record(resource, 'user'); - await store.record(resource, 'user'); - - vi.setSystemTime(new Date(now)); - - // Force recalculation - vi.advanceTimersByTime(35 * 1000); - - expect(await store.canProceed(resource, 'user')).toBe(true); - expect(await store.canProceed(resource, 'background')).toBe(false); // Should be paused - - const status = await store.getStatus(resource); - expect(status.adaptive?.backgroundPaused).toBe(true); - }); - - it('should scale up background capacity during low user activity', async () => { - // No user activity, should give more to background - await store.record(resource, 'background'); - - const status = await store.getStatus(resource); - - expect(status.adaptive?.userReserved).toBeLessThan(100); // Less than 50% - expect(status.adaptive?.backgroundMax).toBeGreaterThan(100); // More than 50% - expect(status.adaptive?.reason).toContain('background scale up'); - }); - - it('should give full capacity to background after sustained inactivity', async () => { - // Simulate sustained inactivity (no recent requests) - // But record old request to avoid completely empty state - vi.setSystemTime(new Date('2023-01-01T10:00:00Z')); // 2 hours ago - await store.record(resource, 'user'); - - vi.setSystemTime(new Date('2023-01-01T12:00:00Z')); // Back to present - - // Force recalculation after sustained inactivity period - vi.advanceTimersByTime(35 * 60 * 1000); // 35 minutes - - const status = await store.getStatus(resource); - - expect(status.adaptive?.userReserved).toBe(0); - expect(status.adaptive?.backgroundMax).toBe(200); - expect(status.adaptive?.reason).toContain('full capacity to background'); - }); - }); - - describe('rate limiting enforcement', () => { - it('should reject requests when capacity is exceeded', async () => { - // Fill up user capacity - even in high activity mode, user gets max 180 out of 200 - // So recording 185 requests should exceed capacity - for (let i = 0; i < 185; i++) { - await store.record(resource, 'user'); - } - - expect(await store.canProceed(resource, 'user')).toBe(false); - }); - - it('should reject background requests when capacity is exceeded', async () => { - // With no user activity, background gets almost everything (195 out of 200) - // Recording 200 should exceed that - for (let i = 0; i < 200; i++) { - await store.record(resource, 'background'); - } - - expect(await store.canProceed(resource, 'background')).toBe(false); - }); - - it('should allow requests in different priority pools independently', async () => { - // Create store with background pause disabled to test independent pools - const noPauseStore = new AdaptiveRateLimitStore({ - adaptiveConfig: { - backgroundPauseOnIncreasingTrend: false, - }, - }); - - // Fill up user capacity (high activity gives 180 capacity) - for (let i = 0; i < 185; i++) { - await noPauseStore.record(resource, 'user'); - } - - // User requests should be blocked, but background should still work - expect(await noPauseStore.canProceed(resource, 'user')).toBe(false); - expect(await noPauseStore.canProceed(resource, 'background')).toBe(true); - }); - }); - - describe('getStatus', () => { - it('should return comprehensive status information', async () => { - await store.record(resource, 'user'); - await store.record(resource, 'background'); - - const status = await store.getStatus(resource); - - expect(status.remaining).toBeGreaterThanOrEqual(0); - expect(status.resetTime).toBeInstanceOf(Date); - expect(status.limit).toBe(200); - expect(status.adaptive).toBeDefined(); - expect(status.adaptive?.userReserved).toBeGreaterThan(0); - expect(status.adaptive?.backgroundMax).toBeGreaterThan(0); - expect(status.adaptive?.recentUserActivity).toBe(1); - expect(status.adaptive?.reason).toBeDefined(); - }); - - it('should calculate remaining capacity correctly', async () => { - // Use some capacity - await store.record(resource, 'user'); - await store.record(resource, 'user'); - await store.record(resource, 'background'); - - const status = await store.getStatus(resource); - const expectedRemaining = - status.adaptive!.userReserved - - 2 + - (status.adaptive!.backgroundMax - 1); - - expect(status.remaining).toBe(expectedRemaining); - }); - }); - - describe('getWaitTime', () => { - it('should return 0 when request can proceed', async () => { - const waitTime = await store.getWaitTime(resource, 'user'); - expect(waitTime).toBe(0); - }); - - it('should return wait time when background is paused', async () => { - // Create high activity to pause background - for (let i = 0; i < 15; i++) { - await store.record(resource, 'user'); - } - - vi.advanceTimersByTime(35 * 1000); // Force recalculation - - const waitTime = await store.getWaitTime(resource, 'background'); - expect(waitTime).toBeGreaterThan(0); - expect(waitTime).toBeLessThanOrEqual(30000); // Should be within recalc interval - }); - - it('should return time until requests age out when capacity exceeded', async () => { - // Fill up user capacity (need 185 to exceed high activity allocation) - for (let i = 0; i < 185; i++) { - await store.record(resource, 'user'); - } - - const waitTime = await store.getWaitTime(resource, 'user'); - expect(waitTime).toBeGreaterThan(0); - expect(waitTime).toBeLessThanOrEqual(15 * 60 * 1000); // Should be within monitoring window - }); - }); - - describe('reset', () => { - it('should clear all data for a resource', async () => { - await store.record(resource, 'user'); - await store.record(resource, 'background'); - - let status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBe(1); - - await store.reset(resource); - - status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBe(0); - }); - }); - - describe('capacity caching', () => { - it('should cache capacity calculations to avoid thrashing', async () => { - await store.record(resource, 'user'); - - const status1 = await store.getStatus(resource); - const status2 = await store.getStatus(resource); - - // Should return same cached result - expect(status1.adaptive?.reason).toBe(status2.adaptive?.reason); - expect(status1.adaptive?.userReserved).toBe( - status2.adaptive?.userReserved, - ); - }); - - it('should recalculate after recalculation interval', async () => { - await store.record(resource, 'user'); - const status1 = await store.getStatus(resource); - - // Add more activity - for (let i = 0; i < 10; i++) { - await store.record(resource, 'user'); - } - - // Should still return cached result - const status2 = await store.getStatus(resource); - expect(status2.adaptive?.reason).toBe(status1.adaptive?.reason); - - // Advance past recalculation interval - vi.advanceTimersByTime(35 * 1000); - - // Should now recalculate and return different result - const status3 = await store.getStatus(resource); - expect(status3.adaptive?.reason).not.toBe(status1.adaptive?.reason); - expect(status3.adaptive?.recentUserActivity).toBeGreaterThan( - status1.adaptive?.recentUserActivity, - ); - }); - }); - - describe('cleanup', () => { - it('should clean up old requests outside monitoring window', async () => { - // Record request at current time - await store.record(resource, 'user'); - - // Advance time beyond monitoring window (15 minutes default) - vi.advanceTimersByTime(20 * 60 * 1000); - - // Record another request to trigger cleanup - await store.record(resource, 'user'); - - const status = await store.getStatus(resource); - - // Should only count the recent request, old one should be cleaned up - expect(status.adaptive?.recentUserActivity).toBe(1); - }); - }); - - describe('multiple resources', () => { - it('should handle multiple resources independently', async () => { - const resource1 = 'resource1'; - const resource2 = 'resource2'; - - await store.record(resource1, 'user'); - await store.record(resource2, 'background'); - - const status1 = await store.getStatus(resource1); - const status2 = await store.getStatus(resource2); - - expect(status1.adaptive?.recentUserActivity).toBe(1); - expect(status2.adaptive?.recentUserActivity).toBe(0); - }); - }); -}); diff --git a/packages/in-memory-store/src/adaptive-rate-limit-store.ts b/packages/in-memory-store/src/adaptive-rate-limit-store.ts deleted file mode 100644 index 1509a97..0000000 --- a/packages/in-memory-store/src/adaptive-rate-limit-store.ts +++ /dev/null @@ -1,227 +0,0 @@ -import { - AdaptiveConfigSchema, - type AdaptiveRateLimitStore as IAdaptiveRateLimitStore, - type RequestPriority, - AdaptiveCapacityCalculator, - type ActivityMetrics, - type DynamicCapacityResult, -} from '@comic-vine/client'; -import { z } from 'zod'; - -export interface AdaptiveRateLimitStoreOptions { - adaptiveConfig?: Partial>; -} - -/** - * In-memory rate limiting store with adaptive priority-based capacity allocation - */ -export class AdaptiveRateLimitStore implements IAdaptiveRateLimitStore { - private activityMetrics = new Map(); - private capacityCalculator: AdaptiveCapacityCalculator; - private lastCapacityUpdate = new Map(); - private cachedCapacity = new Map(); - - constructor(options: AdaptiveRateLimitStoreOptions = {}) { - this.capacityCalculator = new AdaptiveCapacityCalculator( - options.adaptiveConfig, - ); - } - - async canProceed( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - // Check if background requests should be paused - if (priority === 'background' && capacity.backgroundPaused) { - return false; // Hard pause for background requests - } - - // Get current usage - const currentUserRequests = this.getCurrentUsage( - metrics.recentUserRequests, - ); - const currentBackgroundRequests = this.getCurrentUsage( - metrics.recentBackgroundRequests, - ); - - if (priority === 'user') { - return currentUserRequests < capacity.userReserved; - } else { - return currentBackgroundRequests < capacity.backgroundMax; - } - } - - async record( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const metrics = this.getOrCreateActivityMetrics(resource); - const now = Date.now(); - - if (priority === 'user') { - metrics.recentUserRequests.push(now); - this.cleanupOldRequests(metrics.recentUserRequests); - } else { - metrics.recentBackgroundRequests.push(now); - this.cleanupOldRequests(metrics.recentBackgroundRequests); - } - - // Update activity trend - metrics.userActivityTrend = this.capacityCalculator.calculateActivityTrend( - metrics.recentUserRequests, - ); - } - - async getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - adaptive?: { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - recentUserActivity: number; - reason: string; - }; - }> { - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - const currentUserUsage = this.getCurrentUsage(metrics.recentUserRequests); - const currentBackgroundUsage = this.getCurrentUsage( - metrics.recentBackgroundRequests, - ); - - return { - remaining: - capacity.userReserved - - currentUserUsage + - (capacity.backgroundMax - currentBackgroundUsage), - resetTime: new Date( - Date.now() + this.capacityCalculator.config.monitoringWindowMs, - ), - limit: this.getResourceLimit(resource), - adaptive: { - userReserved: capacity.userReserved, - backgroundMax: capacity.backgroundMax, - backgroundPaused: capacity.backgroundPaused, - recentUserActivity: this.capacityCalculator.getRecentActivity( - metrics.recentUserRequests, - ), - reason: capacity.reason, - }, - }; - } - - async reset(resource: string): Promise { - this.activityMetrics.delete(resource); - this.cachedCapacity.delete(resource); - this.lastCapacityUpdate.delete(resource); - } - - async getWaitTime( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - const canProceed = await this.canProceed(resource, priority); - if (canProceed) { - return 0; - } - - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - // If background is paused, wait until next recalculation - if (priority === 'background' && capacity.backgroundPaused) { - const lastUpdate = this.lastCapacityUpdate.get(resource) || 0; - const nextUpdate = - lastUpdate + this.capacityCalculator.config.recalculationIntervalMs; - return Math.max(0, nextUpdate - Date.now()); - } - - // Otherwise, wait until requests age out of the monitoring window - const monitoringWindow = this.capacityCalculator.config.monitoringWindowMs; - const requests = - priority === 'user' - ? metrics.recentUserRequests - : metrics.recentBackgroundRequests; - - if (requests.length === 0) { - return 0; - } - - // Wait until the oldest request falls out of the monitoring window - const oldestRequest = Math.min(...requests); - const waitTime = oldestRequest + monitoringWindow - Date.now(); - return Math.max(0, waitTime); - } - - private calculateCurrentCapacity( - resource: string, - metrics: ActivityMetrics, - ): DynamicCapacityResult { - // Only recalculate based on configured interval to avoid thrashing - const lastUpdate = this.lastCapacityUpdate.get(resource) || 0; - const recalcInterval = - this.capacityCalculator.config.recalculationIntervalMs; - - if (Date.now() - lastUpdate < recalcInterval) { - return ( - this.cachedCapacity.get(resource) || this.getDefaultCapacity(resource) - ); - } - - const totalLimit = this.getResourceLimit(resource); - const capacity = this.capacityCalculator.calculateDynamicCapacity( - resource, - totalLimit, - metrics, - ); - - this.cachedCapacity.set(resource, capacity); - this.lastCapacityUpdate.set(resource, Date.now()); - - return capacity; - } - - private getOrCreateActivityMetrics(resource: string): ActivityMetrics { - if (!this.activityMetrics.has(resource)) { - this.activityMetrics.set(resource, { - recentUserRequests: [], - recentBackgroundRequests: [], - userActivityTrend: 'none', - }); - } - return this.activityMetrics.get(resource)!; - } - - private getCurrentUsage(requests: Array): number { - const oneHourAgo = Date.now() - 3600000; // 1 hour = 3600000ms - return requests.filter((timestamp) => timestamp > oneHourAgo).length; - } - - private cleanupOldRequests(requests: Array): void { - const cutoff = - Date.now() - this.capacityCalculator.config.monitoringWindowMs; - while (requests.length > 0 && requests[0]! < cutoff) { - requests.shift(); - } - } - - private getResourceLimit(_resource: string): number { - // Default Comic Vine API limits - 200 requests per hour for most resources - return 200; - } - - private getDefaultCapacity(resource: string): DynamicCapacityResult { - const totalLimit = this.getResourceLimit(resource); - return { - userReserved: Math.floor(totalLimit * 0.3), - backgroundMax: Math.floor(totalLimit * 0.7), - backgroundPaused: false, - reason: 'Default capacity allocation', - }; - } -} diff --git a/packages/in-memory-store/src/in-memory-cache-store.test.ts b/packages/in-memory-store/src/in-memory-cache-store.test.ts deleted file mode 100644 index 610eead..0000000 --- a/packages/in-memory-store/src/in-memory-cache-store.test.ts +++ /dev/null @@ -1,464 +0,0 @@ -import { describe, it, expect, beforeEach, afterEach, vi as _vi } from 'vitest'; -import { InMemoryCacheStore } from './in-memory-cache-store.js'; - -describe('InMemoryCacheStore', () => { - let store: InMemoryCacheStore; - - beforeEach(() => { - store = new InMemoryCacheStore(); - }); - - afterEach(() => { - if (store) { - store.destroy(); - } - }); - - describe('basic operations', () => { - it('should set and get values', async () => { - await store.set('key1', 'value1', 60); - const value = await store.get('key1'); - expect(value).toBe('value1'); - }); - - it('should return undefined for non-existent keys', async () => { - const value = await store.get('non-existent'); - expect(value).toBeUndefined(); - }); - - it('should overwrite existing values', async () => { - await store.set('key1', 'value1', 60); - await store.set('key1', 'value2', 60); - const value = await store.get('key1'); - expect(value).toBe('value2'); - }); - - it('should delete values', async () => { - await store.set('key1', 'value1', 60); - await store.delete('key1'); - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - - it('should handle deletion of non-existent keys', async () => { - await expect(store.delete('non-existent')).resolves.not.toThrow(); - }); - - it('should clear all values', async () => { - await store.set('key1', 'value1', 60); - await store.set('key2', 'value2', 60); - await store.clear(); - - const value1 = await store.get('key1'); - const value2 = await store.get('key2'); - - expect(value1).toBeUndefined(); - expect(value2).toBeUndefined(); - }); - }); - - describe('TTL functionality', () => { - it('should expire values after TTL', async () => { - await store.set('key1', 'value1', 0.001); // 1ms TTL - - // Should be available immediately - let value = await store.get('key1'); - expect(value).toBe('value1'); - - // Wait for expiration - await new Promise((resolve) => setTimeout(resolve, 10)); - - value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - - it('should not expire values before TTL', async () => { - await store.set('key1', 'value1', 10); // 10 seconds TTL - - // Should be available after a short delay - await new Promise((resolve) => setTimeout(resolve, 10)); - - const value = await store.get('key1'); - expect(value).toBe('value1'); - }); - - it('should handle zero TTL (permanent)', async () => { - await store.set('key1', 'value1', 0); - - // Should be available (permanent storage) - const value = await store.get('key1'); - expect(value).toBe('value1'); - }); - - it('should handle negative TTL', async () => { - await store.set('key1', 'value1', -1); - - // Should be expired immediately - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - }); - - describe('data types', () => { - it('should handle string values', async () => { - await store.set('key1', 'string value', 60); - const value = await store.get('key1'); - expect(value).toBe('string value'); - }); - - it('should handle number values', async () => { - await store.set('key1', 42, 60); - const value = await store.get('key1'); - expect(value).toBe(42); - }); - - it('should handle boolean values', async () => { - await store.set('key1', true, 60); - const value = await store.get('key1'); - expect(value).toBe(true); - }); - - it('should handle object values', async () => { - const obj = { id: 1, name: 'test', nested: { value: 'nested' } }; - await store.set('key1', obj, 60); - const value = await store.get('key1'); - expect(value).toEqual(obj); - }); - - it('should handle array values', async () => { - const arr = [1, 2, 3, { id: 4 }]; - await store.set('key1', arr, 60); - const value = await store.get('key1'); - expect(value).toEqual(arr); - }); - - it('should handle null values', async () => { - await store.set('key1', null, 60); - const value = await store.get('key1'); - expect(value).toBeNull(); - }); - - it('should handle undefined values', async () => { - await store.set('key1', undefined, 60); - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - }); - - describe('statistics', () => { - it('should provide accurate statistics', async () => { - await store.set('key1', 'value1', 60); - await store.set('key2', 'value2', 60); - - const stats = store.getStats(); - expect(stats.totalItems).toBe(2); - expect(stats.memoryUsageBytes).toBeGreaterThan(0); - expect(stats.maxItems).toBe(1000); // default - expect(stats.maxMemoryBytes).toBe(50 * 1024 * 1024); // 50MB default - expect(stats.memoryUtilization).toBeGreaterThan(0); - expect(stats.itemUtilization).toBeGreaterThan(0); - }); - - it('should update statistics after operations', async () => { - let stats = store.getStats(); - expect(stats.totalItems).toBe(0); - - await store.set('key1', 'value1', 60); - stats = store.getStats(); - expect(stats.totalItems).toBe(1); - - await store.delete('key1'); - stats = store.getStats(); - expect(stats.totalItems).toBe(0); - }); - }); - - describe('cleanup', () => { - it('should automatically clean up expired items', async () => { - // Create store with very short cleanup interval - const cleanupStore = new InMemoryCacheStore({ cleanupIntervalMs: 10 }); - - await cleanupStore.set('key1', 'value1', 0.001); // 1ms TTL - - // Wait for cleanup to run - await new Promise((resolve) => setTimeout(resolve, 50)); - - const stats = cleanupStore.getStats(); - expect(stats.totalItems).toBe(0); - - cleanupStore.destroy(); - }); - - it('should not clean up unexpired items', async () => { - // Create store with very short cleanup interval - const cleanupStore = new InMemoryCacheStore({ cleanupIntervalMs: 10 }); - - await cleanupStore.set('key1', 'value1', 10); // 10 seconds TTL - - // Wait for cleanup to run - await new Promise((resolve) => setTimeout(resolve, 50)); - - const stats = cleanupStore.getStats(); - expect(stats.totalItems).toBe(1); - - cleanupStore.destroy(); - }); - }); - - describe('memory management', () => { - describe('maximum item count', () => { - it('should evict oldest items when max items exceeded', async () => { - const memoryStore = new InMemoryCacheStore({ maxItems: 3 }); - - // Add items up to the limit - await memoryStore.set('key1', 'value1', 60); - await memoryStore.set('key2', 'value2', 60); - await memoryStore.set('key3', 'value3', 60); - - expect(memoryStore.getStats().totalItems).toBe(3); - - // Add one more item, should evict the oldest - await memoryStore.set('key4', 'value4', 60); - - expect(memoryStore.getStats().totalItems).toBe(3); - expect(await memoryStore.get('key1')).toBeUndefined(); // oldest should be evicted - expect(await memoryStore.get('key2')).toBe('value2'); - expect(await memoryStore.get('key3')).toBe('value3'); - expect(await memoryStore.get('key4')).toBe('value4'); - - memoryStore.destroy(); - }); - - it('should respect LRU order for eviction', async () => { - const memoryStore = new InMemoryCacheStore({ maxItems: 3 }); - - // Add items with small delays to ensure different lastAccessed times - await memoryStore.set('key1', 'value1', 60); - await new Promise((resolve) => setTimeout(resolve, 10)); - await memoryStore.set('key2', 'value2', 60); - await new Promise((resolve) => setTimeout(resolve, 10)); - await memoryStore.set('key3', 'value3', 60); - - // Access key1 to make it more recently used - await new Promise((resolve) => setTimeout(resolve, 10)); - await memoryStore.get('key1'); - - // Add another item, key2 should be evicted (oldest after key1 access) - await new Promise((resolve) => setTimeout(resolve, 10)); - await memoryStore.set('key4', 'value4', 60); - - expect(await memoryStore.get('key1')).toBe('value1'); // recently accessed - expect(await memoryStore.get('key2')).toBeUndefined(); // should be evicted - expect(await memoryStore.get('key3')).toBe('value3'); - expect(await memoryStore.get('key4')).toBe('value4'); - - memoryStore.destroy(); - }); - }); - - describe('memory limit', () => { - it('should evict items when memory limit exceeded', async () => { - const memoryStore = new InMemoryCacheStore({ - maxMemoryBytes: 1024, // 1KB limit - evictionRatio: 0.5, // Remove 50% when limit exceeded - }); - - // Add large items that will exceed the limit - const largeValue = 'x'.repeat(500); // 500 bytes each - await memoryStore.set('key1', largeValue, 60); - await memoryStore.set('key2', largeValue, 60); - await memoryStore.set('key3', largeValue, 60); // This should trigger eviction - - const stats = memoryStore.getStats(); - expect(stats.totalItems).toBeLessThan(3); // Some items should be evicted - - memoryStore.destroy(); - }); - - it('should calculate memory utilization correctly', async () => { - const memoryStore = new InMemoryCacheStore({ maxMemoryBytes: 1024 }); - - await memoryStore.set('key1', 'small', 60); - - const stats = memoryStore.getStats(); - expect(stats.memoryUtilization).toBeGreaterThan(0); - expect(stats.memoryUtilization).toBeLessThan(1); - - memoryStore.destroy(); - }); - }); - - describe('LRU tracking', () => { - it('should track last accessed time correctly', async () => { - const memoryStore = new InMemoryCacheStore(); - - await memoryStore.set('key1', 'value1', 60); - await new Promise((resolve) => setTimeout(resolve, 10)); - await memoryStore.set('key2', 'value2', 60); - - // Access key1 to update its lastAccessed time - await new Promise((resolve) => setTimeout(resolve, 10)); - await memoryStore.get('key1'); - - const lruItems = memoryStore.getLRUItems(); - expect(lruItems).toHaveLength(2); - expect(lruItems[0].hash).toBe('key2'); // Should be oldest now - expect(lruItems[1].hash).toBe('key1'); // Should be newest - - memoryStore.destroy(); - }); - - it('should provide LRU items with correct metadata', async () => { - const memoryStore = new InMemoryCacheStore(); - - await memoryStore.set('key1', 'value1', 60); - - const lruItems = memoryStore.getLRUItems(5); - expect(lruItems).toHaveLength(1); - expect(lruItems[0].hash).toBe('key1'); - expect(lruItems[0].lastAccessed).toBeInstanceOf(Date); - expect(lruItems[0].size).toBeGreaterThan(0); - - memoryStore.destroy(); - }); - }); - }); - - describe('configuration', () => { - it('should use custom cleanup interval', async () => { - const cleanupStore = new InMemoryCacheStore({ cleanupIntervalMs: 5000 }); - - // Should have created the store without throwing - expect(cleanupStore).toBeDefined(); - - cleanupStore.destroy(); - }); - - it('should handle cleanup interval of 0 (disabled)', async () => { - const cleanupStore = new InMemoryCacheStore({ cleanupIntervalMs: 0 }); - - // Should work without automatic cleanup - await cleanupStore.set('key1', 'value1', 60); - const value = await cleanupStore.get('key1'); - expect(value).toBe('value1'); - - cleanupStore.destroy(); - }); - - it('should use custom memory limits', async () => { - const memoryStore = new InMemoryCacheStore({ - maxItems: 5, - maxMemoryBytes: 2048, - evictionRatio: 0.2, - }); - - const stats = memoryStore.getStats(); - expect(stats.maxItems).toBe(5); - expect(stats.maxMemoryBytes).toBe(2048); - - memoryStore.destroy(); - }); - - it('should handle all configuration options', async () => { - const memoryStore = new InMemoryCacheStore({ - cleanupIntervalMs: 30000, - maxItems: 100, - maxMemoryBytes: 1024 * 1024, // 1MB - evictionRatio: 0.25, - }); - - expect(memoryStore).toBeDefined(); - - const stats = memoryStore.getStats(); - expect(stats.maxItems).toBe(100); - expect(stats.maxMemoryBytes).toBe(1024 * 1024); - - memoryStore.destroy(); - }); - }); - - describe('edge cases', () => { - it('should handle very large values', async () => { - const largeValue = 'x'.repeat(1000000); // 1MB string - await store.set('large', largeValue, 60); - const value = await store.get('large'); - expect(value).toBe(largeValue); - }); - - it('should handle many concurrent operations', async () => { - const promises = []; - - // Set 100 values concurrently - for (let i = 0; i < 100; i++) { - promises.push(store.set(`key${i}`, `value${i}`, 60)); - } - - await Promise.all(promises); - - // Get all values - const getPromises = []; - for (let i = 0; i < 100; i++) { - getPromises.push(store.get(`key${i}`)); - } - - const values = await Promise.all(getPromises); - - // Check all values are correct - for (let i = 0; i < 100; i++) { - expect(values[i]).toBe(`value${i}`); - } - }); - - it('should handle special characters in keys', async () => { - const specialKey = 'key-with-特殊字符-and-émojis-🚀'; - await store.set(specialKey, 'special value', 60); - const value = await store.get(specialKey); - expect(value).toBe('special value'); - }); - - it('should handle memory calculation errors gracefully', async () => { - // Create an object that can't be JSON serialized - const circularObj = { name: 'test' }; - circularObj.self = circularObj; - - await store.set('circular', circularObj, 60); - - // Should not throw error and should use default estimate - const stats = store.getStats(); - expect(stats.memoryUsageBytes).toBeGreaterThan(0); - }); - - it('should handle eviction when cache is empty', async () => { - const memoryStore = new InMemoryCacheStore({ maxItems: 1 }); - - // This should not throw even though cache is empty - await memoryStore.set('key1', 'value1', 60); - - expect(await memoryStore.get('key1')).toBe('value1'); - - memoryStore.destroy(); - }); - }); - - describe('destroy', () => { - it('should clear all data when destroyed', async () => { - await store.set('key1', 'value1', 60); - await store.set('key2', 'value2', 60); - - store.destroy(); - - const value1 = await store.get('key1'); - const value2 = await store.get('key2'); - - expect(value1).toBeUndefined(); - expect(value2).toBeUndefined(); - }); - - it('should be safe to call destroy multiple times', () => { - expect(() => { - store.destroy(); - store.destroy(); - }).not.toThrow(); - }); - }); -}); diff --git a/packages/in-memory-store/src/in-memory-cache-store.ts b/packages/in-memory-store/src/in-memory-cache-store.ts deleted file mode 100644 index 3efb557..0000000 --- a/packages/in-memory-store/src/in-memory-cache-store.ts +++ /dev/null @@ -1,262 +0,0 @@ -import type { CacheStore } from '@comic-vine/client'; -// We use fast-safe-stringify instead of JSON.stringify so that -// 1) objects containing circular references don’t throw, and -// 2) we get a deterministic string length for accurate memory-usage -// calculations. A normal JSON.stringify would either error or -// force us to fallback to a rough 1 KB estimate, under-reporting -// large cyclic payloads. -import safeStringify from 'fast-safe-stringify'; - -interface CacheItem { - value: T; - expiresAt: number; - lastAccessed: number; - size: number; // bytes occupied by this entry -} - -export interface InMemoryCacheStoreOptions { - /** Cleanup interval in milliseconds. Set to 0 to disable automatic cleanup. Default: 60000 (1 minute) */ - cleanupIntervalMs?: number; - /** Maximum number of items to store. When exceeded, least recently used items are evicted. Default: 1000 */ - maxItems?: number; - /** Maximum memory usage in bytes (rough estimate). When exceeded, least recently used items are evicted. Default: 50MB */ - maxMemoryBytes?: number; - /** When evicting items, remove this percentage of LRU items. Default: 0.1 (10%) */ - evictionRatio?: number; -} - -export class InMemoryCacheStore implements CacheStore { - private cache = new Map>(); - private cleanupInterval?: NodeJS.Timeout; - private readonly maxItems: number; - private readonly maxMemoryBytes: number; - private readonly evictionRatio: number; - private totalSize = 0; // running total of memory usage in bytes - - constructor(options: InMemoryCacheStoreOptions = {}) { - const cleanupIntervalMs = options.cleanupIntervalMs ?? 60000; // 1 minute default - this.maxItems = options.maxItems ?? 1000; - this.maxMemoryBytes = options.maxMemoryBytes ?? 50 * 1024 * 1024; // 50MB default - this.evictionRatio = options.evictionRatio ?? 0.1; - - if (cleanupIntervalMs > 0) { - this.cleanupInterval = setInterval(() => { - this.cleanup(); - }, cleanupIntervalMs); - // Allow the Node.js process to exit naturally if this timer is the only event loop item - if (typeof this.cleanupInterval.unref === 'function') { - this.cleanupInterval.unref(); - } - } - } - - async get(hash: string): Promise { - const item = this.cache.get(hash); - - if (!item || (item.expiresAt > 0 && Date.now() > item.expiresAt)) { - this.cache.delete(hash); - return undefined; - } - - // Update last accessed time for LRU - item.lastAccessed = Date.now(); - // Re-set the item to trigger map ordering update - this.cache.set(hash, item); - return item.value; - } - - async set(hash: string, value: T, ttlSeconds: number): Promise { - const now = Date.now(); - const expiresAt = ttlSeconds === 0 ? 0 : now + ttlSeconds * 1000; - - // If replacing an existing entry, subtract its size first - const existing = this.cache.get(hash); - if (existing) { - this.totalSize -= existing.size; - } - - const entrySize = this.estimateEntrySize(hash, value); - this.totalSize += entrySize; - - this.cache.set(hash, { - value, - expiresAt, - lastAccessed: now, - size: entrySize, - }); - - // Check if we need to evict items - this.enforceMemoryLimits(); - } - - async delete(hash: string): Promise { - const existing = this.cache.get(hash); - if (existing) { - this.totalSize -= existing.size; - } - this.cache.delete(hash); - } - - async clear(): Promise { - this.cache.clear(); - this.totalSize = 0; - } - - /** - * Get statistics about cache usage - */ - getStats(): { - totalItems: number; - expired: number; - memoryUsageBytes: number; - maxItems: number; - maxMemoryBytes: number; - memoryUtilization: number; - itemUtilization: number; - } { - const now = Date.now(); - let expired = 0; - - for (const [_hash, item] of this.cache) { - if (item.expiresAt > 0 && now > item.expiresAt) { - expired++; - } - } - - // Rough estimate of memory usage - const memoryUsageBytes = this.calculateMemoryUsage(); - - return { - totalItems: this.cache.size, - expired, - memoryUsageBytes, - maxItems: this.maxItems, - maxMemoryBytes: this.maxMemoryBytes, - memoryUtilization: memoryUsageBytes / this.maxMemoryBytes, - itemUtilization: this.cache.size / this.maxItems, - }; - } - - /** - * Clean up expired cache entries - */ - cleanup(): void { - const now = Date.now(); - const toDelete: Array = []; - - for (const [hash, item] of this.cache) { - if (item.expiresAt > 0 && now > item.expiresAt) { - toDelete.push(hash); - } - } - - for (const hash of toDelete) { - const item = this.cache.get(hash); - if (item) { - this.totalSize -= item.size; - } - this.cache.delete(hash); - } - } - - /** - * Enforce memory and item count limits using LRU eviction - */ - private enforceMemoryLimits(): void { - // Check item count limit - if (this.cache.size > this.maxItems) { - this.evictLRUItems(this.cache.size - this.maxItems); - return; - } - - // Check memory usage limit - const memoryUsage = this.totalSize; - if (memoryUsage > this.maxMemoryBytes) { - const itemsToEvict = Math.max( - 1, - Math.floor(this.cache.size * this.evictionRatio), - ); - this.evictLRUItems(itemsToEvict); - } - } - - /** - * Evict the least recently used items - */ - private evictLRUItems(count: number): void { - // Sort entries by last accessed time (oldest first) - const entries = Array.from(this.cache.entries()).sort( - ([, a], [, b]) => a.lastAccessed - b.lastAccessed, - ); - - // Remove the oldest entries - for (let i = 0; i < count && i < entries.length; i++) { - const entry = entries[i]; - if (entry) { - const [key, item] = entry; - this.totalSize -= item.size; - this.cache.delete(key); - } - } - } - - /** - * Calculate rough memory usage - */ - private calculateMemoryUsage(): number { - // O(1) – maintained incrementally - return this.totalSize; - } - - /** - * Get items sorted by last accessed time (for debugging/monitoring) - */ - getLRUItems( - limit: number = 10, - ): Array<{ hash: string; lastAccessed: Date; size: number }> { - const entries = Array.from(this.cache.entries()) - .sort(([, a], [, b]) => a.lastAccessed - b.lastAccessed) - .slice(0, limit); - - return entries.map(([hash, item]) => ({ - hash, - lastAccessed: new Date(item.lastAccessed), - size: item.size, - })); - } - - /** - * Destroy the cache and cleanup resources - */ - destroy(): void { - if (this.cleanupInterval) { - clearInterval(this.cleanupInterval); - this.cleanupInterval = undefined; - } - this.cache.clear(); - this.totalSize = 0; - } - - /** - * Estimate the size in bytes of a cache entry (key + value + metadata) - */ - private estimateEntrySize(hash: string, value: unknown): number { - let size = 0; - - // Hash key size (UTF-16 => 2 bytes per char) - size += hash.length * 2; - - // Metadata size (expiresAt & lastAccessed) - size += 16; - - // Value size via safe-stringify - try { - const json = safeStringify(value) ?? ''; - size += json.length * 2; - } catch { - size += 1024; // fallback estimate - } - - return size; - } -} diff --git a/packages/in-memory-store/src/in-memory-dedupe-store.test.ts b/packages/in-memory-store/src/in-memory-dedupe-store.test.ts deleted file mode 100644 index 4be279b..0000000 --- a/packages/in-memory-store/src/in-memory-dedupe-store.test.ts +++ /dev/null @@ -1,411 +0,0 @@ -import { describe, it, expect, beforeEach, afterEach } from 'vitest'; -import { InMemoryDedupeStore } from './in-memory-dedupe-store.js'; - -describe('InMemoryDedupeStore', () => { - let store: InMemoryDedupeStore; - let unhandledRejections: Array = []; - - beforeEach(() => { - store = new InMemoryDedupeStore(); - unhandledRejections = []; - - // Catch any unhandled rejections - process.on('unhandledRejection', (error: Error) => { - if ( - error.message.includes('DedupeStore cleared') || - error.message.includes('Test error') - ) { - unhandledRejections.push(error); - } - }); - }); - - afterEach(async () => { - if (store) { - // Wait a bit to allow any pending promises to settle - await new Promise((resolve) => setTimeout(resolve, 10)); - store.destroy(); - // Wait a bit more for cleanup to complete - await new Promise((resolve) => setTimeout(resolve, 10)); - } - }); - - describe('basic operations', () => { - it('should register new jobs', async () => { - const jobId = await store.register('test-hash'); - expect(jobId).toBeTruthy(); - expect(typeof jobId).toBe('string'); - }); - - it('should return undefined for non-existent jobs', async () => { - const result = await store.waitFor('non-existent-hash'); - expect(result).toBeUndefined(); - }); - - it('should complete jobs with values', async () => { - const hash = 'test-hash'; - await store.register(hash); - await store.complete(hash, 'test-value'); - - const result = await store.waitFor(hash); - expect(result).toBe('test-value'); - }); - - it('should handle job completion with complex objects', async () => { - const hash = 'test-hash'; - const value = { id: 1, name: 'test', nested: { data: 'value' } }; - - await store.register(hash); - await store.complete(hash, value); - - const result = await store.waitFor(hash); - expect(result).toEqual(value); - }); - - it('should handle job failure', async () => { - const hash = 'test-hash'; - const error = new Error('Test error'); - - await store.register(hash); - - // Start waiting for the job before failing it - const waitPromise = store.waitFor(hash).catch(() => undefined); - - await store.fail(hash, error); - - // Failed jobs should not be available - const result = await waitPromise; - expect(result).toBeUndefined(); - }); - - it('should check if jobs are in progress', async () => { - const hash = 'test-hash'; - - let isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(false); - - await store.register(hash); - isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(true); - - await store.complete(hash, 'value'); - isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(false); - }); - }); - - describe('deduplication behavior', () => { - it('should deduplicate concurrent requests', async () => { - const hash = 'test-hash'; - const value = 'test-value'; - - // Register the job first - await store.register(hash); - - // Start multiple waitFor operations that should all wait for the same job - const promise1 = store.waitFor(hash); - const promise2 = store.waitFor(hash); - const promise3 = store.waitFor(hash); - - // Complete the job - await store.complete(hash, value); - - // All promises should resolve to the same value - const [result1, result2, result3] = await Promise.all([ - promise1, - promise2, - promise3, - ]); - expect(result1).toBe(value); - expect(result2).toBe(value); - expect(result3).toBe(value); - }); - - it('should handle multiple jobs with different hashes', async () => { - const hash1 = 'hash1'; - const hash2 = 'hash2'; - const value1 = 'value1'; - const value2 = 'value2'; - - await store.register(hash1); - await store.register(hash2); - - await store.complete(hash1, value1); - await store.complete(hash2, value2); - - const result1 = await store.waitFor(hash1); - const result2 = await store.waitFor(hash2); - - expect(result1).toBe(value1); - expect(result2).toBe(value2); - }); - - it('should clean up completed jobs', async () => { - const hash = 'test-hash'; - - await store.register(hash); - await store.complete(hash, 'value'); - - // Job should be marked as completed - const isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(false); - - // But the result should still be available - const result = await store.waitFor(hash); - expect(result).toBe('value'); - }); - - it('should clean up failed jobs', async () => { - const hash = 'test-hash'; - const error = new Error('Test error'); - - await store.register(hash); - - // Start waiting for the job before failing it - const waitPromise = store.waitFor(hash).catch(() => undefined); - - await store.fail(hash, error); - - const isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(false); - - const result = await waitPromise; - expect(result).toBeUndefined(); - }); - }); - - describe('timeout handling', () => { - it('should handle job timeouts', async () => { - const timeoutStore = new InMemoryDedupeStore({ - jobTimeoutMs: 10, - cleanupIntervalMs: 5, - }); - const hash = 'test-hash'; - - await timeoutStore.register(hash); - - // Start waiting for the job to catch the timeout rejection - const waitPromise = timeoutStore.waitFor(hash).catch(() => undefined); - - // Wait for timeout - await new Promise((resolve) => setTimeout(resolve, 50)); - - const isInProgress = await timeoutStore.isInProgress(hash); - expect(isInProgress).toBe(false); - - // Ensure the promise is handled - await waitPromise; - - timeoutStore.destroy(); - }); - - it('should not timeout jobs that complete in time', async () => { - const timeoutStore = new InMemoryDedupeStore({ jobTimeoutMs: 100 }); - const hash = 'test-hash'; - - await timeoutStore.register(hash); - await timeoutStore.complete(hash, 'value'); - - // Wait less than timeout - await new Promise((resolve) => setTimeout(resolve, 50)); - - const result = await timeoutStore.waitFor(hash); - expect(result).toBe('value'); - - timeoutStore.destroy(); - }); - - it('should handle timeout of 0 (disabled)', async () => { - const timeoutStore = new InMemoryDedupeStore({ jobTimeoutMs: 0 }); - const hash = 'test-hash'; - - await timeoutStore.register(hash); - - // Start waiting for the job to catch any potential rejections - const waitPromise = timeoutStore.waitFor(hash).catch(() => undefined); - - // Wait a bit - await new Promise((resolve) => setTimeout(resolve, 50)); - - // Should still be in progress since timeout is disabled - const isInProgress = await timeoutStore.isInProgress(hash); - expect(isInProgress).toBe(true); - - timeoutStore.destroy(); - - // Ensure the promise is handled - await waitPromise; - }); - }); - - describe('statistics', () => { - it('should provide accurate statistics', async () => { - await store.register('hash1'); - await store.register('hash2'); - - // Start waiting for jobs to catch potential rejections during cleanup - const waitPromise1 = store.waitFor('hash1').catch(() => undefined); - const waitPromise2 = store.waitFor('hash2').catch(() => undefined); - - const stats = store.getStats(); - expect(stats.activeJobs).toBe(2); - expect(stats.totalJobsProcessed).toBe(2); - - // Complete the jobs to avoid unhandled rejections - await store.complete('hash1', 'value1'); - await store.complete('hash2', 'value2'); - - // Ensure promises are handled - await Promise.all([waitPromise1, waitPromise2]); - }); - - it('should update statistics after completion', async () => { - await store.register('hash1'); - await store.complete('hash1', 'value'); - - const stats = store.getStats(); - expect(stats.activeJobs).toBe(0); - expect(stats.totalJobsProcessed).toBe(1); - }); - - it('should update statistics after failure', async () => { - await store.register('hash1'); - - // Start waiting for the job before failing it - const waitPromise = store.waitFor('hash1').catch(() => undefined); - - await store.fail('hash1', new Error('Test error')); - - // Ensure the promise is handled - await waitPromise; - - const stats = store.getStats(); - expect(stats.activeJobs).toBe(0); - expect(stats.totalJobsProcessed).toBe(1); - }); - }); - - describe('edge cases', () => { - it('should handle completing non-existent jobs', async () => { - await expect( - store.complete('non-existent', 'value'), - ).resolves.not.toThrow(); - }); - - it('should handle failing non-existent jobs', async () => { - await expect( - store.fail('non-existent', new Error('Test')), - ).resolves.not.toThrow(); - }); - - it('should handle double completion', async () => { - const hash = 'test-hash'; - await store.register(hash); - await store.complete(hash, 'value1'); - await store.complete(hash, 'value2'); - - const result = await store.waitFor(hash); - expect(result).toBe('value1'); // First completion should win - }); - - it('should handle completion after failure', async () => { - const hash = 'test-hash'; - await store.register(hash); - - // Start waiting for the job before failing it - const waitPromise = store.waitFor(hash).catch(() => undefined); - - await store.fail(hash, new Error('Test error')); - await store.complete(hash, 'value'); - - const result = await waitPromise; - expect(result).toBeUndefined(); // Should still be failed - }); - - it('should handle many concurrent jobs', async () => { - const promises: Array> = []; - - // Create 100 jobs - for (let i = 0; i < 100; i++) { - promises.push(store.register(`hash${i}`)); - } - - await Promise.all(promises); - - // Complete all jobs - const completePromises: Array> = []; - for (let i = 0; i < 100; i++) { - completePromises.push(store.complete(`hash${i}`, `value${i}`)); - } - - await Promise.all(completePromises); - - // Verify all jobs completed - const stats = store.getStats(); - expect(stats.activeJobs).toBe(0); - expect(stats.totalJobsProcessed).toBe(100); - }); - - it('should handle special characters in hash keys', async () => { - const specialHash = 'hash-with-特殊字符-and-émojis-🚀'; - await store.register(specialHash); - await store.complete(specialHash, 'special value'); - - const result = await store.waitFor(specialHash); - expect(result).toBe('special value'); - }); - - it('should handle null and undefined values', async () => { - const hash1 = 'null-hash'; - const hash2 = 'undefined-hash'; - - await store.register(hash1); - await store.register(hash2); - - await store.complete(hash1, null); - await store.complete(hash2, undefined); - - const result1 = await store.waitFor(hash1); - const result2 = await store.waitFor(hash2); - - expect(result1).toBeUndefined(); - expect(result2).toBeUndefined(); - }); - }); - - describe('destroy', () => { - it('should clear all jobs when destroyed', async () => { - await store.register('hash1'); - await store.register('hash2'); - - // Start waiting for jobs to catch the destruction rejections - const waitPromise1 = store.waitFor('hash1').catch(() => undefined); - const waitPromise2 = store.waitFor('hash2').catch(() => undefined); - - store.destroy(); - - // Ensure the promises are handled - await Promise.all([waitPromise1, waitPromise2]); - - const stats = store.getStats(); - expect(stats.activeJobs).toBe(0); - }); - - it('should be safe to call destroy multiple times', () => { - expect(() => { - store.destroy(); - store.destroy(); - }).not.toThrow(); - }); - - it('should handle operations after destroy', async () => { - store.destroy(); - - const jobId = await store.register('hash1'); - expect(jobId).toBeTruthy(); - - const result = await store.waitFor('hash1'); - expect(result).toBeUndefined(); - }); - }); -}); diff --git a/packages/in-memory-store/src/in-memory-dedupe-store.ts b/packages/in-memory-store/src/in-memory-dedupe-store.ts deleted file mode 100644 index 01719b9..0000000 --- a/packages/in-memory-store/src/in-memory-dedupe-store.ts +++ /dev/null @@ -1,239 +0,0 @@ -import { randomUUID } from 'crypto'; -import type { DedupeStore } from '@comic-vine/client'; - -// Simple deferred promise helper to avoid non-null assertions -function deferred() { - let resolve!: (value: T | PromiseLike) => void; - let reject!: (reason?: unknown) => void; - const promise = new Promise((res, rej) => { - resolve = res; - reject = rej; - }); - return { promise, resolve, reject } as const; -} - -interface DedupeJob { - jobId: string; - promise: Promise; - resolve: (value: T | undefined) => void; - reject: (reason: unknown) => void; - createdAt: number; - completed: boolean; - result?: T; - error?: Error; -} - -export interface InMemoryDedupeStoreOptions { - jobTimeoutMs?: number; - cleanupIntervalMs?: number; -} - -export class InMemoryDedupeStore implements DedupeStore { - private jobs = new Map>(); - private readonly jobTimeoutMs: number; - private cleanupInterval?: NodeJS.Timeout; - private totalJobsProcessed: number = 0; - private destroyed: boolean = false; - - constructor({ - /** Job timeout in milliseconds. Defaults to 5 minutes. */ - jobTimeoutMs = 300_000, - /** Cleanup interval in milliseconds. Defaults to 1 minute. */ - cleanupIntervalMs = 60_000, - }: InMemoryDedupeStoreOptions = {}) { - this.jobTimeoutMs = jobTimeoutMs; - - if (cleanupIntervalMs > 0) { - this.cleanupInterval = setInterval(() => { - this.cleanup(); - }, cleanupIntervalMs); - } - } - - async waitFor(hash: string): Promise { - if (this.destroyed) { - return undefined; - } - - const job = this.jobs.get(hash); - if (!job) { - return undefined; - } - - const jobTimedOut = - this.jobTimeoutMs > 0 && Date.now() - job.createdAt > this.jobTimeoutMs; - if (jobTimedOut) { - this.cleanup(); - return undefined; - } - - // If job is already completed, return the result or throw the error - if (job.completed) { - if (job.error) { - return undefined; // Return undefined for failed jobs instead of throwing - } - return job.result ?? undefined; - } - - try { - return await job.promise; - } catch { - // The job promise was rejected, return undefined for failed jobs - return undefined; - } - } - - async register(hash: string): Promise { - // Check if there's already a job for this hash - const existingJob = this.jobs.get(hash); - if (existingJob) { - // Return the existing job ID - return existingJob.jobId; - } - - // Create a new job - const jobId = randomUUID(); - const { promise, resolve, reject } = deferred(); - - const job: DedupeJob = { - jobId, - promise, - resolve, - reject, - createdAt: Date.now(), - completed: false, - }; - - this.jobs.set(hash, job); - this.totalJobsProcessed++; - return jobId; - } - - async complete(hash: string, value: T): Promise { - const job = this.jobs.get(hash); - if (job && !job.completed) { - job.completed = true; - job.result = value; - job.resolve(value); - } - } - - async fail(hash: string, error: Error): Promise { - const job = this.jobs.get(hash); - if (job && !job.completed) { - job.completed = true; - job.error = error; - job.reject(error); - } - } - - async isInProgress(hash: string): Promise { - const job = this.jobs.get(hash); - if (!job) { - return false; - } - - const isJobExpired = - this.jobTimeoutMs > 0 && Date.now() - job.createdAt > this.jobTimeoutMs; - if (isJobExpired) { - this.cleanup(); - return false; - } - - return !job.completed; - } - - /** - * Get statistics about current dedupe jobs - */ - getStats(): { - activeJobs: number; - totalJobsProcessed: number; - expiredJobs: number; - oldestJobAgeMs: number; - } { - const now = Date.now(); - let expiredJobs = 0; - let oldestJobAgeMs = 0; - let activeJobs = 0; - - for (const [_hash, job] of this.jobs) { - const ageMs = now - job.createdAt; - if (this.jobTimeoutMs > 0 && ageMs > this.jobTimeoutMs) { - expiredJobs++; - } - if (ageMs > oldestJobAgeMs) { - oldestJobAgeMs = ageMs; - } - // Only count jobs that are not completed as active - if (!job.completed) { - activeJobs++; - } - } - - return { - activeJobs, - totalJobsProcessed: this.totalJobsProcessed, - expiredJobs, - oldestJobAgeMs, - }; - } - - /** - * Clean up expired jobs - */ - cleanup(): void { - // Skip cleanup if timeout is disabled - if (this.jobTimeoutMs <= 0) { - return; - } - - const now = Date.now(); - const toDelete: Array = []; - - for (const [hash, job] of this.jobs) { - if (now - job.createdAt > this.jobTimeoutMs) { - if (!job.completed) { - // Reject the expired job - job.completed = true; - job.error = new Error( - 'Job timeout: Request took too long to complete', - ); - job.reject(job.error); - } - toDelete.push(hash); - } - } - - for (const hash of toDelete) { - this.jobs.delete(hash); - } - } - - /** - * Clear all jobs - */ - clear(): void { - // Reject all pending jobs - for (const [_hash, job] of this.jobs) { - if (!job.completed) { - job.completed = true; - job.error = new Error('DedupeStore cleared'); - job.reject(job.error); - } - } - this.jobs.clear(); - } - - /** - * Destroy the store and clean up resources - */ - destroy(): void { - if (this.cleanupInterval) { - clearInterval(this.cleanupInterval); - this.cleanupInterval = undefined; - } - this.clear(); - this.destroyed = true; - } -} diff --git a/packages/in-memory-store/src/in-memory-rate-limit-store.test.ts b/packages/in-memory-store/src/in-memory-rate-limit-store.test.ts deleted file mode 100644 index cf779fd..0000000 --- a/packages/in-memory-store/src/in-memory-rate-limit-store.test.ts +++ /dev/null @@ -1,418 +0,0 @@ -import type { RateLimitConfig } from '@comic-vine/client'; -import { describe, it, expect, beforeEach, afterEach, vi as _vi } from 'vitest'; -import { InMemoryRateLimitStore } from './in-memory-rate-limit-store.js'; - -describe('InMemoryRateLimitStore', () => { - let store: InMemoryRateLimitStore; - const defaultConfig: RateLimitConfig = { limit: 5, windowMs: 1000 }; - - beforeEach(() => { - store = new InMemoryRateLimitStore({ defaultConfig }); - }); - - afterEach(() => { - if (store) { - store.destroy(); - } - }); - - describe('basic operations', () => { - it('should allow requests within limit', async () => { - const resource = 'test-resource'; - - for (let i = 0; i < defaultConfig.limit; i++) { - const canProceed = await store.canProceed(resource); - expect(canProceed).toBe(true); - await store.record(resource); - } - }); - - it('should block requests over limit', async () => { - const resource = 'test-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - const canProceed = await store.canProceed(resource); - expect(canProceed).toBe(false); - }); - - it('should provide status information', async () => { - const resource = 'test-resource'; - - await store.record(resource); - await store.record(resource); - - const status = await store.getStatus(resource); - expect(status.remaining).toBe(defaultConfig.limit - 2); - expect(status.limit).toBe(defaultConfig.limit); - expect(status.resetTime).toBeInstanceOf(Date); - }); - - it('should calculate wait time correctly', async () => { - const resource = 'test-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - const waitTime = await store.getWaitTime(resource); - expect(waitTime).toBeGreaterThan(0); - expect(waitTime).toBeLessThanOrEqual(defaultConfig.windowMs); - }); - - it('should reset rate limits', async () => { - const resource = 'test-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - expect(await store.canProceed(resource)).toBe(false); - - await store.reset(resource); - - expect(await store.canProceed(resource)).toBe(true); - }); - }); - - describe('sliding window behavior', () => { - it('should allow requests again after window expires', async () => { - const shortWindowStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 2, windowMs: 50 }, - }); - const resource = 'test-resource'; - - try { - // Fill up the limit - await shortWindowStore.record(resource); - await shortWindowStore.record(resource); - - expect(await shortWindowStore.canProceed(resource)).toBe(false); - - // Wait for window to expire - await new Promise((resolve) => setTimeout(resolve, 100)); - - expect(await shortWindowStore.canProceed(resource)).toBe(true); - } finally { - shortWindowStore.destroy(); - } - }); - - it('should maintain sliding window correctly', async () => { - const shortWindowStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 3, windowMs: 100 }, - }); - const resource = 'test-resource'; - - try { - // Make 2 requests - await shortWindowStore.record(resource); - await shortWindowStore.record(resource); - - // Wait half the window time - await new Promise((resolve) => setTimeout(resolve, 50)); - - // Make 1 more request (should be allowed) - expect(await shortWindowStore.canProceed(resource)).toBe(true); - await shortWindowStore.record(resource); - - // Should be at limit now - expect(await shortWindowStore.canProceed(resource)).toBe(false); - - // Wait for first requests to expire - await new Promise((resolve) => setTimeout(resolve, 60)); - - // Should be able to make 2 more requests - expect(await shortWindowStore.canProceed(resource)).toBe(true); - await shortWindowStore.record(resource); - expect(await shortWindowStore.canProceed(resource)).toBe(true); - } finally { - shortWindowStore.destroy(); - } - }); - }); - - describe('resource-specific configurations', () => { - it('should use default config for unspecified resources', async () => { - const resource = 'unknown-resource'; - - const status = await store.getStatus(resource); - expect(status.limit).toBe(defaultConfig.limit); - }); - - it('should use resource-specific configs', async () => { - const resourceConfigs = new Map([ - ['special-resource', { limit: 10, windowMs: 2000 }], - ['limited-resource', { limit: 2, windowMs: 500 }], - ]); - - const configStore = new InMemoryRateLimitStore({ - defaultConfig, - resourceConfigs, - }); - - try { - // Test special resource - let status = await configStore.getStatus('special-resource'); - expect(status.limit).toBe(10); - - // Test limited resource - status = await configStore.getStatus('limited-resource'); - expect(status.limit).toBe(2); - - // Test default resource - status = await configStore.getStatus('default-resource'); - expect(status.limit).toBe(defaultConfig.limit); - } finally { - configStore.destroy(); - } - }); - - it('should apply different limits to different resources', async () => { - const resourceConfigs = new Map([ - ['high-limit', { limit: 10, windowMs: 1000 }], - ['low-limit', { limit: 2, windowMs: 1000 }], - ]); - - const configStore = new InMemoryRateLimitStore({ - defaultConfig, - resourceConfigs, - }); - - try { - // High limit resource should allow more requests - for (let i = 0; i < 10; i++) { - expect(await configStore.canProceed('high-limit')).toBe(true); - await configStore.record('high-limit'); - } - expect(await configStore.canProceed('high-limit')).toBe(false); - - // Low limit resource should block earlier - for (let i = 0; i < 2; i++) { - expect(await configStore.canProceed('low-limit')).toBe(true); - await configStore.record('low-limit'); - } - expect(await configStore.canProceed('low-limit')).toBe(false); - } finally { - configStore.destroy(); - } - }); - - it('should update resource configs dynamically', async () => { - const resource = 'dynamic-resource'; - - // Start with default config - let status = await store.getStatus(resource); - expect(status.limit).toBe(defaultConfig.limit); - - // Update config - store.setResourceConfig(resource, { limit: 20, windowMs: 5000 }); - - // Should use new config - status = await store.getStatus(resource); - expect(status.limit).toBe(20); - }); - }); - - describe('statistics', () => { - it('should provide accurate statistics', async () => { - await store.record('resource1'); - await store.record('resource1'); - await store.record('resource2'); - - const stats = store.getStats(); - expect(stats.totalResources).toBe(2); - expect(stats.totalRequests).toBe(3); - }); - - it('should update statistics correctly', async () => { - let stats = store.getStats(); - expect(stats.totalRequests).toBe(0); - - await store.record('test'); - stats = store.getStats(); - expect(stats.totalRequests).toBe(1); - - await store.reset('test'); - stats = store.getStats(); - expect(stats.totalRequests).toBe(0); - }); - }); - - describe('edge cases', () => { - it('should handle zero limit', async () => { - const zeroLimitStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 0, windowMs: 1000 }, - }); - - try { - const canProceed = await zeroLimitStore.canProceed('test'); - expect(canProceed).toBe(false); - - const waitTime = await zeroLimitStore.getWaitTime('test'); - expect(waitTime).toBeGreaterThan(0); - } finally { - zeroLimitStore.destroy(); - } - }); - - it('should handle very small window', async () => { - const smallWindowStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 5, windowMs: 1 }, - }); - - try { - await smallWindowStore.record('test'); - - // Wait for window to expire - await new Promise((resolve) => setTimeout(resolve, 10)); - - expect(await smallWindowStore.canProceed('test')).toBe(true); - } finally { - smallWindowStore.destroy(); - } - }); - - it('should handle very large window', async () => { - const largeWindowStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 1, windowMs: 86400000 }, - }); // 1 day - - try { - await largeWindowStore.record('test'); - expect(await largeWindowStore.canProceed('test')).toBe(false); - - const waitTime = await largeWindowStore.getWaitTime('test'); - expect(waitTime).toBeGreaterThan(86400000 - 1000); // Almost a full day - } finally { - largeWindowStore.destroy(); - } - }); - - it('should handle many concurrent requests', async () => { - const promises: Array> = []; - const resource = 'concurrent-test'; - - // Make many concurrent requests - for (let i = 0; i < 20; i++) { - promises.push(store.record(resource)); - } - - await Promise.all(promises); - - const status = await store.getStatus(resource); - expect(status.remaining).toBe(Math.max(0, defaultConfig.limit - 20)); - }); - - it('should handle special characters in resource names', async () => { - const specialResource = 'resource-with-特殊字符-and-émojis-🚀'; - - expect(await store.canProceed(specialResource)).toBe(true); - await store.record(specialResource); - - const status = await store.getStatus(specialResource); - expect(status.remaining).toBe(defaultConfig.limit - 1); - }); - - it('should handle reset of non-existent resource', async () => { - await expect(store.reset('non-existent')).resolves.not.toThrow(); - }); - - it('should handle status of non-existent resource', async () => { - const status = await store.getStatus('non-existent'); - expect(status.remaining).toBe(defaultConfig.limit); - expect(status.limit).toBe(defaultConfig.limit); - }); - }); - - describe('cleanup', () => { - it('should clean up expired entries', async () => { - const cleanupStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 5, windowMs: 50 }, - cleanupIntervalMs: 10, - }); - - try { - await cleanupStore.record('test'); - - // Wait for cleanup - await new Promise((resolve) => setTimeout(resolve, 100)); - - const stats = cleanupStore.getStats(); - expect(stats.totalRequests).toBe(0); - } finally { - cleanupStore.destroy(); - } - }); - - it('should not clean up active entries', async () => { - const cleanupStore = new InMemoryRateLimitStore({ - defaultConfig: { limit: 5, windowMs: 5000 }, - cleanupIntervalMs: 10, - }); - - try { - await cleanupStore.record('test'); - - // Wait for cleanup to run - await new Promise((resolve) => setTimeout(resolve, 50)); - - const stats = cleanupStore.getStats(); - expect(stats.totalRequests).toBe(1); - } finally { - cleanupStore.destroy(); - } - }); - - it('should handle cleanup interval of 0 (disabled)', async () => { - const noCleanupStore = new InMemoryRateLimitStore({ - defaultConfig, - cleanupIntervalMs: 0, - }); - - try { - await noCleanupStore.record('test'); - const status = await noCleanupStore.getStatus('test'); - expect(status.remaining).toBe(defaultConfig.limit - 1); - } finally { - noCleanupStore.destroy(); - } - }); - }); - - describe('destroy', () => { - it('should clear all data when destroyed', async () => { - await store.record('test1'); - await store.record('test2'); - - store.destroy(); - - const stats = store.getStats(); - expect(stats.totalRequests).toBe(0); - expect(stats.totalResources).toBe(0); - }); - - it('should be safe to call destroy multiple times', () => { - expect(() => { - store.destroy(); - store.destroy(); - }).not.toThrow(); - }); - - it('should handle operations after destroy', async () => { - store.destroy(); - - // Should work without throwing - expect(await store.canProceed('test')).toBe(true); - await store.record('test'); - - const status = await store.getStatus('test'); - expect(status.remaining).toBe(defaultConfig.limit - 1); - }); - }); -}); diff --git a/packages/in-memory-store/src/in-memory-rate-limit-store.ts b/packages/in-memory-store/src/in-memory-rate-limit-store.ts deleted file mode 100644 index b881505..0000000 --- a/packages/in-memory-store/src/in-memory-rate-limit-store.ts +++ /dev/null @@ -1,233 +0,0 @@ -import { - type RateLimitConfig, - type RateLimitStore, - DEFAULT_RATE_LIMIT, -} from '@comic-vine/client'; - -interface RateLimitInfo { - requests: Array; - limit: number; - windowMs: number; - resetTime: number; -} - -export interface InMemoryRateLimitStoreOptions { - defaultConfig?: RateLimitConfig; - resourceConfigs?: Map; - cleanupIntervalMs?: number; -} - -export class InMemoryRateLimitStore implements RateLimitStore { - private limits = new Map(); - private defaultConfig: RateLimitConfig; - private resourceConfigs = new Map(); - private cleanupInterval?: NodeJS.Timeout; - private totalRequests: number = 0; - - constructor({ - /** Global/default rate-limit config applied when a resource-specific override is not provided. */ - defaultConfig = DEFAULT_RATE_LIMIT, - /** Optional per-resource overrides. */ - resourceConfigs = new Map(), - /** Cleanup interval in milliseconds. Defaults to 1 minute. */ - cleanupIntervalMs = 60_000, - }: InMemoryRateLimitStoreOptions = {}) { - this.defaultConfig = defaultConfig; - this.resourceConfigs = resourceConfigs; - - if (cleanupIntervalMs > 0) { - this.cleanupInterval = setInterval(() => { - this.cleanup(); - }, cleanupIntervalMs); - } - } - - async canProceed(resource: string): Promise { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const info = this.getOrCreateRateLimitInfo(resource, config); - - this.cleanupExpiredRequests(info); - - return info.requests.length < info.limit; - } - - async record(resource: string): Promise { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const info = this.getOrCreateRateLimitInfo(resource, config); - - this.cleanupExpiredRequests(info); - - const now = Date.now(); - info.requests.push(now); - this.totalRequests++; - - // Update reset time to be one window from now - info.resetTime = now + config.windowMs; - } - - async getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - }> { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const info = this.getOrCreateRateLimitInfo(resource, config); - - this.cleanupExpiredRequests(info); - - return { - remaining: Math.max(0, info.limit - info.requests.length), - resetTime: new Date(info.resetTime), - limit: info.limit, - }; - } - - async reset(resource: string): Promise { - const info = this.limits.get(resource); - if (info) { - // Subtract the requests for this resource from total count - this.totalRequests = Math.max( - 0, - this.totalRequests - info.requests.length, - ); - } - this.limits.delete(resource); - } - - async getWaitTime(resource: string): Promise { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const info = this.getOrCreateRateLimitInfo(resource, config); - - this.cleanupExpiredRequests(info); - - // Special case: if limit is 0, always return the time until window resets - if (info.limit === 0) { - return Math.max(0, info.resetTime - Date.now()); - } - - if (info.requests.length < info.limit) { - return 0; - } - - // Find the oldest request that's still within the window - const oldestRequest = info.requests[0]; - if (oldestRequest === undefined) { - return 0; - } - const timeUntilOldestExpires = oldestRequest + config.windowMs - Date.now(); - - return Math.max(0, timeUntilOldestExpires); - } - - /** - * Set rate limit configuration for a specific resource - */ - setResourceConfig(resource: string, config: RateLimitConfig): void { - this.resourceConfigs.set(resource, config); - // Reset existing limits for this resource to apply new config - this.limits.delete(resource); - } - - /** - * Get rate limit configuration for a resource - */ - getResourceConfig(resource: string): RateLimitConfig { - return this.resourceConfigs.get(resource) || this.defaultConfig; - } - - /** - * Get statistics for all resources - */ - getStats(): { - totalResources: number; - activeResources: number; - rateLimitedResources: number; - totalRequests: number; - } { - let activeResources = 0; - let rateLimitedResources = 0; - - for (const [_resource, info] of this.limits) { - this.cleanupExpiredRequests(info); - - if (info.requests.length > 0) { - activeResources++; - if (info.requests.length >= info.limit) { - rateLimitedResources++; - } - } - } - - return { - totalResources: this.limits.size, - activeResources, - rateLimitedResources, - totalRequests: this.totalRequests, - }; - } - - /** - * Clear all rate limit data - */ - clear(): void { - this.limits.clear(); - this.totalRequests = 0; - } - - /** - * Clean up expired requests for all resources - */ - cleanup(): void { - for (const [_resource, info] of this.limits) { - this.cleanupExpiredRequests(info); - } - } - - /** - * Destroy the store and clean up resources - */ - destroy(): void { - if (this.cleanupInterval) { - clearInterval(this.cleanupInterval); - this.cleanupInterval = undefined; - } - this.clear(); - } - - private getOrCreateRateLimitInfo( - resource: string, - config: RateLimitConfig, - ): RateLimitInfo { - let info = this.limits.get(resource); - if (!info) { - info = { - requests: [], - limit: config.limit, - windowMs: config.windowMs, - resetTime: Date.now() + config.windowMs, - }; - this.limits.set(resource, info); - } - return info; - } - - private cleanupExpiredRequests(info: RateLimitInfo): void { - const now = Date.now(); - const cutoff = now - info.windowMs; - const initialLength = info.requests.length; - - // Remove requests older than the window - while (info.requests.length > 0 && info.requests[0]! < cutoff) { - info.requests.shift(); - } - - // Update total request count to reflect removed expired requests - const expiredCount = initialLength - info.requests.length; - this.totalRequests = Math.max(0, this.totalRequests - expiredCount); - - // Update reset time if no requests remain - if (info.requests.length === 0) { - info.resetTime = now + info.windowMs; - } - } -} diff --git a/packages/in-memory-store/src/index.ts b/packages/in-memory-store/src/index.ts deleted file mode 100644 index edc95c1..0000000 --- a/packages/in-memory-store/src/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -export { InMemoryCacheStore } from './in-memory-cache-store.js'; -export { InMemoryDedupeStore } from './in-memory-dedupe-store.js'; -export { InMemoryRateLimitStore } from './in-memory-rate-limit-store.js'; -export { AdaptiveRateLimitStore } from './adaptive-rate-limit-store.js'; -export type { InMemoryCacheStoreOptions } from './in-memory-cache-store.js'; -export type { InMemoryDedupeStoreOptions } from './in-memory-dedupe-store.js'; -export type { InMemoryRateLimitStoreOptions } from './in-memory-rate-limit-store.js'; -export type { AdaptiveRateLimitStoreOptions } from './adaptive-rate-limit-store.js'; -export type { RateLimitConfig } from '@comic-vine/client'; - -// Re-export the store interfaces from the client package for convenience -export type { - CacheStore, - DedupeStore, - RateLimitStore, - AdaptiveRateLimitStore as IAdaptiveRateLimitStore, - RequestPriority, - AdaptiveConfig, -} from '@comic-vine/client'; diff --git a/packages/in-memory-store/tsconfig.json b/packages/in-memory-store/tsconfig.json deleted file mode 100644 index 9536a0f..0000000 --- a/packages/in-memory-store/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "../../tsconfig.base.json" -} diff --git a/packages/in-memory-store/tsup.config.ts b/packages/in-memory-store/tsup.config.ts deleted file mode 100644 index 9a536e4..0000000 --- a/packages/in-memory-store/tsup.config.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { defineConfig } from 'tsup'; -import { sharedTsupConfig } from '@repo/tsup-config'; - -export default defineConfig({ - ...sharedTsupConfig, - // Add package-specific overrides here if needed -}); diff --git a/packages/in-memory-store/vitest.config.ts b/packages/in-memory-store/vitest.config.ts deleted file mode 100644 index e59c784..0000000 --- a/packages/in-memory-store/vitest.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { sharedVitestConfig } from '@repo/vitest-config'; -import { defineConfig } from 'vitest/config'; - -export default defineConfig({ - ...sharedVitestConfig, - test: { - ...sharedVitestConfig.test, - // Add package-specific overrides here if needed - }, -}); diff --git a/packages/sqlite-store/CHANGELOG.md b/packages/sqlite-store/CHANGELOG.md deleted file mode 100644 index f9e063c..0000000 --- a/packages/sqlite-store/CHANGELOG.md +++ /dev/null @@ -1,33 +0,0 @@ -# @comic-vine/sqlite-store - -## 0.1.2 - -### Patch Changes - -- 16cbc6b: update documentation detailing how stores work -- Updated dependencies [16cbc6b] - - @comic-vine/client@0.1.2 - -## 0.1.1 - -### Patch Changes - -- Updated dependencies [6d7fcb9] - - @comic-vine/client@0.1.1 - -## 0.1.0 - -### Minor Changes - -- ce26fb2: feat: introduce @comic-vine/in-memory-store and @comic-vine/sqlite-store packages - - This introduces two new packages providing optimized store implementations for caching, deduplication, and rate limiting: - - @comic-vine/in-memory-store: Advanced in-memory stores with LRU eviction and memory management - - @comic-vine/sqlite-store: SQLite-based persistent stores with cross-process support and database optimization - - Both packages provide comprehensive TypeScript support and are designed for production use. - -### Patch Changes - -- Updated dependencies [ce26fb2] - - @comic-vine/client@0.1.0 diff --git a/packages/sqlite-store/README.md b/packages/sqlite-store/README.md deleted file mode 100644 index 372c1b6..0000000 --- a/packages/sqlite-store/README.md +++ /dev/null @@ -1,657 +0,0 @@ -# @comic-vine/sqlite-store - -SQLite store implementations for Comic Vine client caching, deduplication, and rate limiting using Drizzle ORM. - -## Installation - -```bash -npm install @comic-vine/sqlite-store @comic-vine/client -``` - -## Usage - -```typescript -import Database from 'better-sqlite3'; -import ComicVine from '@comic-vine/client'; -import { - SQLiteCacheStore, - SQLiteDedupeStore, - SQLiteRateLimitStore, - SqliteAdaptiveRateLimitStore, // NEW: Intelligent persistent rate limiting -} from '@comic-vine/sqlite-store'; - -// Create ONE shared connection which every store will use. -const sharedDb = new Database('./comic-vine.db'); - -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new SQLiteCacheStore({ database: sharedDb }), - dedupe: new SQLiteDedupeStore({ database: sharedDb }), - rateLimit: new SqliteAdaptiveRateLimitStore({ database: sharedDb }), // Recommended - }, -}); - -// Use client normally - data persists with intelligent rate limiting -const issue = await client.issue.retrieve(1, { priority: 'user' }); -``` - -## Key Features - -- **Shared Database Support**: All stores can use the same SQLite database file/connection -- **Object-based Configuration**: Clean, type-safe constructor parameters -- **Connection Management**: Automatic handling of database connection lifecycle -- **Type Safety**: Full TypeScript support with exported option interfaces - -## Store Implementations - -### SQLiteCacheStore - -Provides persistent caching with TTL support using SQLite database. - -```typescript -import type { SQLiteCacheStoreOptions } from '@comic-vine/sqlite-store'; - -const cacheStore = new SQLiteCacheStore({ - database: './cache.db', // File path, ':memory:', or Database instance - cleanupIntervalMs: 60_000, // Cleanup expired items every minute (default) - maxEntrySizeBytes: 5 * 1024 * 1024, // 5MB max per entry (default) -}); -``` - -**Features:** - -- Persistent storage across application restarts -- TTL-based expiration with automatic cleanup -- Database-level ACID transactions -- Efficient indexing for fast lookups -- Automatic schema creation and migration -- Size limits to prevent SQLite length violations -- Shared database connection support - -### SQLiteDedupeStore - -Prevents duplicate concurrent requests using SQLite for coordination. - -```typescript -import type { SQLiteDedupeStoreOptions } from '@comic-vine/sqlite-store'; - -const dedupeStore = new SQLiteDedupeStore({ - database: './dedupe.db', // File path, ':memory:', or Database instance - jobTimeoutMs: 300_000, // 5 minute timeout for jobs (default) - cleanupIntervalMs: 60_000, // Cleanup interval (default: 1 minute) -}); -``` - -**Features:** - -- Cross-process deduplication support -- Persistent job state tracking -- Automatic cleanup of expired jobs -- Promise-based waiting with database coordination -- Error state persistence and recovery -- Configurable job timeouts and cleanup intervals - -### SQLiteRateLimitStore - -Implements sliding window rate limiting with SQLite persistence. - -```typescript -import type { SQLiteRateLimitStoreOptions } from '@comic-vine/sqlite-store'; - -const rateLimitStore = new SQLiteRateLimitStore({ - database: './rate-limits.db', // File path, ':memory:', or Database instance - defaultConfig: { limit: 100, windowMs: 60_000 }, // Default: 100 req/min - resourceConfigs: new Map([ - ['issues', { limit: 50, windowMs: 60_000 }], // Custom per-resource limits - ['characters', { limit: 200, windowMs: 60_000 }], - ]), -}); -``` - -**Features:** - -- Persistent rate limit tracking -- Per-resource configuration -- Sliding window algorithm -- Cross-process rate limit enforcement -- Automatic cleanup of expired records -- Flexible default and per-resource configurations - -### SqliteAdaptiveRateLimitStore (Recommended) - -Advanced rate limiting with intelligent priority-based capacity allocation that persists across application restarts and supports cross-process coordination. - -```typescript -import type { SqliteAdaptiveRateLimitStoreOptions } from '@comic-vine/sqlite-store'; - -const adaptiveStore = new SqliteAdaptiveRateLimitStore({ - database: './comic-vine.db', // Shared database for all stores - adaptiveConfig: { - // Activity detection - highActivityThreshold: 10, // Requests/15min to trigger priority mode - moderateActivityThreshold: 3, // Requests/15min for moderate activity - - // Timing behavior - monitoringWindowMs: 15 * 60 * 1000, // 15 minutes monitoring window - sustainedInactivityThresholdMs: 30 * 60 * 1000, // 30min for full background scale-up - recalculationIntervalMs: 30000, // Recalculate every 30 seconds - - // Capacity limits - maxUserScaling: 2.0, // Maximum user capacity multiplier - minUserReserved: 5, // Minimum guaranteed user requests - backgroundPauseOnIncreasingTrend: true, // Pause background on user surge - }, -}); -``` - -**Unique SQLite Features:** - -- **Cross-Process Coordination**: Multiple application instances share the same rate limiting state -- **Persistent Activity Tracking**: Rate limiting history survives application restarts -- **Recovery Support**: Handles application crashes gracefully with timeout recovery -- **Performance Optimized**: Hybrid approach with in-memory metrics and SQLite persistence -- **Migration Support**: Automatically upgrades database schema with priority column - -**How SQLite Adaptive Rate Limiting Works:** - -```typescript -// Process A (web server) -const webClient = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ database: sharedDb }), - }, -}); - -// Process B (background worker) - shares the same rate limiting state -const workerClient = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ database: sharedDb }), - }, -}); - -// Web server requests get priority during high activity -const userCharacter = await webClient.character.retrieve(1443, { - priority: 'user', -}); - -// Background worker respects the adaptive allocation -const backgroundVolumes = await workerClient.volume.list({ - priority: 'background', // May be throttled if web server is active -}); -``` - -**Persistence Benefits:** - -```typescript -// Application restart scenario -const client = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ - database: './comic-vine.db', - }), - }, -}); - -// Rate limiting history is preserved: -// - Recent activity patterns remain tracked -// - Capacity allocation continues from where it left off -// - No "cold start" penalty on rate limiting behavior -``` - -## How Stores Work Together - -The SQLite stores provide persistent versions of the same request optimization flow: - -### Request Processing Order - -1. **Cache Store**: Checks SQLite cache table for existing response -2. **Dedupe Store**: Uses SQLite to coordinate concurrent requests across processes -3. **Rate Limit Store**: Enforces API limits using persistent SQLite tracking - -```typescript -// Example: Cross-process request coordination -// Process A makes request -const issueA = await clientA.issue.retrieve(1); // Cache miss → dedupe register → rate limit → API call - -// Process B (same or different process) makes same request concurrently -const issueB = await clientB.issue.retrieve(1); // Cache miss → dedupe wait → shares result from Process A -``` - -### Persistence Benefits - -Unlike in-memory stores, SQLite stores survive application restarts: - -- **Cache**: Cached responses remain available after restart -- **Dedupe**: In-progress requests survive process crashes (with timeout recovery) -- **Rate Limit**: Rate limit history persists, preventing limit bypassing via restart - -### Cross-Process Coordination - -SQLite stores enable multiple processes to share the same optimization state: - -```typescript -// Multiple processes can safely share rate limits and cache -const sharedDb = new Database('./shared-stores.db'); - -// Process 1 -const client1 = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SQLiteRateLimitStore({ database: sharedDb }), - }, -}); - -// Process 2 - shares the same rate limits -const client2 = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SQLiteRateLimitStore({ database: sharedDb }), - }, -}); -``` - -## Shared Database Configuration - -**Recommended**: Use a single database for all stores to reduce file handles and improve performance: - -```typescript -import Database from 'better-sqlite3'; - -// Single database approach (recommended) -const db = new Database('./comic-vine-stores.db'); - -const stores = { - cache: new SQLiteCacheStore({ database: db }), - dedupe: new SQLiteDedupeStore({ database: db }), - rateLimit: new SqliteAdaptiveRateLimitStore({ database: db }), // Adaptive rate limiting -}; - -// The stores automatically create their own tables within the shared database -``` - -**Cross-Process Setup (Multiple Application Instances):** - -```typescript -// All processes share the same database file for coordination -const sharedDbPath = './shared-comic-vine.db'; - -// Process 1: Web Server -const webClient = new ComicVine({ - apiKey: 'your-api-key', - stores: { - cache: new SQLiteCacheStore({ database: sharedDbPath }), - rateLimit: new SqliteAdaptiveRateLimitStore({ database: sharedDbPath }), - }, -}); - -// Process 2: Background Worker -const workerClient = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ database: sharedDbPath }), - }, -}); - -// Both processes coordinate through the shared SQLite database -``` - -**Alternative**: Separate databases per store: - -```typescript -// Separate database files (alternative approach) -const stores = { - cache: new SQLiteCacheStore({ database: './cache.db' }), - dedupe: new SQLiteDedupeStore({ database: './dedupe.db' }), - rateLimit: new SQLiteRateLimitStore({ database: './rate-limits.db' }), -}; -``` - -## Database Schema - -The SQLite stores use the following schema: - -### Cache Table - -```sql -CREATE TABLE cache ( - hash TEXT PRIMARY KEY, - value BLOB NOT NULL, - expires_at INTEGER NOT NULL, - created_at INTEGER NOT NULL -); -``` - -### Dedupe Jobs Table - -```sql -CREATE TABLE dedupe_jobs ( - hash TEXT PRIMARY KEY, - job_id TEXT NOT NULL, - status TEXT NOT NULL, -- 'pending', 'completed', 'failed' - result BLOB, - error TEXT, - created_at INTEGER NOT NULL, - updated_at INTEGER NOT NULL -); -``` - -### Rate Limits Table - -**Enhanced Schema (Adaptive Rate Limiting):** - -```sql -CREATE TABLE rate_limits ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - resource TEXT NOT NULL, - timestamp INTEGER NOT NULL, - priority TEXT NOT NULL DEFAULT 'background' -- NEW: Priority tracking -); - --- Optimized indexes for adaptive rate limiting -CREATE INDEX IF NOT EXISTS idx_rate_limit_resource ON rate_limits(resource); -CREATE INDEX IF NOT EXISTS idx_rate_limit_timestamp ON rate_limits(timestamp); -CREATE INDEX IF NOT EXISTS idx_rate_limit_resource_priority_timestamp - ON rate_limits(resource, priority, timestamp); -``` - -**Legacy Schema (Traditional Rate Limiting):** - -```sql -CREATE TABLE rate_limits ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - resource TEXT NOT NULL, - timestamp INTEGER NOT NULL -); -``` - -The adaptive rate limiting store automatically migrates existing databases by adding the `priority` column with a default value of `'background'`, ensuring backward compatibility with existing rate limiting data. - -## Configuration - -### Database Paths - -- Use file paths for persistent storage: `'./my-cache.db'` -- Use `':memory:'` for in-memory databases (faster, but not persistent) -- Relative paths are resolved from the current working directory -- Pass existing `Database` instances for connection sharing - -### Performance Tuning - -```typescript -// For high-throughput applications -const sharedDb = new Database('./data/comic-vine.db'); - -const stores = { - cache: new SQLiteCacheStore({ - database: sharedDb, - cleanupIntervalMs: 300_000, // Less frequent cleanup - maxEntrySizeBytes: 10 * 1024 * 1024, // 10MB max entries - }), - dedupe: new SQLiteDedupeStore({ - database: sharedDb, - jobTimeoutMs: 600_000, // Longer timeout for slow operations - cleanupIntervalMs: 300_000, // Less frequent cleanup - }), - rateLimit: new SQLiteRateLimitStore({ - database: sharedDb, - defaultConfig: { limit: 1000, windowMs: 60_000 }, // Higher limits - }), -}; -``` - -## TypeScript Support - -All stores export their option interfaces for type safety: - -```typescript -import type { - SQLiteCacheStoreOptions, - SQLiteDedupeStoreOptions, - SQLiteRateLimitStoreOptions, - SqliteAdaptiveRateLimitStoreOptions, // NEW: Adaptive rate limiting options -} from '@comic-vine/sqlite-store'; - -// Type-safe configuration for traditional rate limiting -const rateLimitOptions: SQLiteRateLimitStoreOptions = { - database: './rate-limits.db', - defaultConfig: { limit: 200, windowMs: 3600000 }, - resourceConfigs: new Map([['issues', { limit: 100, windowMs: 3600000 }]]), -}; - -// Type-safe configuration for adaptive rate limiting -const adaptiveOptions: SqliteAdaptiveRateLimitStoreOptions = { - database: './comic-vine.db', - adaptiveConfig: { - highActivityThreshold: 15, - sustainedInactivityThresholdMs: 45 * 60 * 1000, - maxUserScaling: 1.5, - }, -}; - -const adaptiveStore = new SqliteAdaptiveRateLimitStore(adaptiveOptions); -``` - -## Deployment Considerations - -### Docker - -```dockerfile -# Ensure SQLite files are persisted -VOLUME ["/app/data"] - -# Your application -COPY . /app -WORKDIR /app - -# Use shared database path -ENV COMIC_VINE_DB_PATH=/app/data/comic-vine.db -``` - -### File Permissions - -Ensure the application has read/write permissions to the database directory: - -```bash -# Create data directory with correct permissions -mkdir -p ./data -chmod 755 ./data -``` - -### Backup and Maintenance - -```bash -# Backup shared database -cp comic-vine.db comic-vine.db.backup - -# Vacuum database to optimize performance -sqlite3 comic-vine.db "VACUUM;" - -# Check database integrity -sqlite3 comic-vine.db "PRAGMA integrity_check;" -``` - -### Production Considerations for Adaptive Rate Limiting - -**Multi-Instance Deployments:** - -```typescript -// Docker Compose setup with shared volume -// docker-compose.yml -services: - web: - build: . - volumes: - - ./data:/app/data - environment: - - COMIC_VINE_DB_PATH=/app/data/shared.db - - worker: - build: . - volumes: - - ./data:/app/data # Same shared volume - environment: - - COMIC_VINE_DB_PATH=/app/data/shared.db - -// Application code -const client = new ComicVine({ - apiKey: process.env.COMIC_VINE_API_KEY, - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ - database: process.env.COMIC_VINE_DB_PATH, - }), - }, -}); -``` - -**Load Balancer Scenarios:** - -```typescript -// Each application instance behind a load balancer -// shares the same rate limiting state through SQLite - -// Instance 1 (handles user requests) -const webInstance1 = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ - database: '/shared/comic-vine.db', - }), - }, -}); - -// Instance 2 (handles background jobs) -const backgroundInstance = new ComicVine({ - apiKey: 'your-api-key', - stores: { - rateLimit: new SqliteAdaptiveRateLimitStore({ - database: '/shared/comic-vine.db', // Same database - }), - }, -}); - -// Adaptive system coordinates across all instances -``` - -## API Reference - -All stores implement the same interfaces as the in-memory versions: - -- `CacheStore` -- `DedupeStore` -- `RateLimitStore` - -Additional methods specific to SQLite stores: - -### SQLiteCacheStore - -```typescript -// Get database statistics -const stats = await cacheStore.getStats(); -// { totalItems: 1250, expiredItems: 23, databaseSizeKB: 512 } - -// Manual cleanup -await cacheStore.cleanup(); - -// Close database connection -await cacheStore.close(); -``` - -### SQLiteDedupeStore - -```typescript -// Get job statistics -const stats = await dedupeStore.getStats(); -// { totalJobs: 15, pendingJobs: 3, completedJobs: 10, failedJobs: 2, expiredJobs: 0 } - -// Manual cleanup -await dedupeStore.cleanup(); - -// Close database connection -await dedupeStore.close(); -``` - -### SQLiteRateLimitStore - -```typescript -// Get rate limiting statistics -const stats = await rateLimitStore.getStats(); -// { totalRequests: 1543, uniqueResources: 8, rateLimitedResources: ['issues'] } - -// Configure resource-specific limits -rateLimitStore.setResourceConfig('volumes', { limit: 25, windowMs: 60000 }); - -// Manual cleanup -await rateLimitStore.cleanup(); - -// Close database connection -await rateLimitStore.close(); -``` - -### SqliteAdaptiveRateLimitStore - -```typescript -// Get comprehensive statistics including adaptive metrics -const stats = await adaptiveStore.getStats(); -// { -// totalRequests: 2157, -// uniqueResources: 12, -// rateLimitedResources: ['issues'], -// adaptiveMetrics: { -// averageUserActivity: 8.5, -// backgroundUtilization: 0.75, -// priorityModeActivations: 14 -// } -// } - -// Check current adaptive status -const status = await adaptiveStore.getStatus('characters'); -console.log(status.adaptive); -// { -// userReserved: 140, -// backgroundMax: 60, -// backgroundPaused: false, -// recentUserActivity: 7, -// reason: "Moderate user activity - dynamic scaling (1.4x user capacity)" -// } - -// Configure resource-specific traditional limits (if needed) -adaptiveStore.setResourceConfig('videos', { limit: 50, windowMs: 3600000 }); - -// Manual cleanup (cleans both priority and traditional rate limit data) -await adaptiveStore.cleanup(); - -// Close database connection -await adaptiveStore.close(); -``` - -## Performance Characteristics - -- **Persistence**: Data survives application restarts and crashes -- **Concurrency**: SQLite handles concurrent access with appropriate locking -- **Memory**: Lower memory usage compared to in-memory stores -- **Latency**: Slightly higher latency due to disk I/O -- **Scalability**: Suitable for moderate to high traffic applications - -## Use Cases - -Perfect for: - -- Production applications -- Multi-instance deployments -- Long-running processes -- Applications requiring data persistence -- Serverless environments with persistent storage -- Docker containers with volume mounts - -## Dependencies - -- `drizzle-orm`: Type-safe SQL query builder -- `better-sqlite3`: Fast SQLite3 binding for Node.js - -## License - -MIT diff --git a/packages/sqlite-store/build-tests/cjs-require.test.cjs b/packages/sqlite-store/build-tests/cjs-require.test.cjs deleted file mode 100644 index 69dff9f..0000000 --- a/packages/sqlite-store/build-tests/cjs-require.test.cjs +++ /dev/null @@ -1,94 +0,0 @@ -/** - * Test CommonJS require from built artifacts - * This file validates that the CJS build works correctly - */ -const { resolve } = require('path'); - -function testCJSRequire() { - console.log('Testing sqlite-store CJS require...'); - - try { - // Test requiring the CJS build - const { - SQLiteCacheStore, - SQLiteDedupeStore, - SQLiteRateLimitStore, - } = require('../lib/index.cjs'); - - if (typeof SQLiteCacheStore !== 'function') { - throw new Error('SQLiteCacheStore should be a constructor function'); - } - - if (typeof SQLiteDedupeStore !== 'function') { - throw new Error('SQLiteDedupeStore should be a constructor function'); - } - - if (typeof SQLiteRateLimitStore !== 'function') { - throw new Error('SQLiteRateLimitStore should be a constructor function'); - } - - // Test that we can create instances (with mock database) - const mockDb = { - prepare: () => ({ - run: () => {}, - get: () => null, - all: () => [], - finalize: () => {}, - }), - exec: () => {}, - close: () => {}, - }; - - const cacheStore = new SQLiteCacheStore({ database: mockDb }); - const dedupeStore = new SQLiteDedupeStore({ database: mockDb }); - const rateLimitStore = new SQLiteRateLimitStore({ database: mockDb }); - - if (!cacheStore || !dedupeStore || !rateLimitStore) { - throw new Error('Failed to create store instances'); - } - - // Test that stores have required methods - const cacheStoreMethods = ['get', 'set', 'delete', 'clear']; - for (const method of cacheStoreMethods) { - if (typeof cacheStore[method] !== 'function') { - throw new Error(`SQLiteCacheStore missing method: ${method}`); - } - } - - const dedupeStoreMethods = [ - 'waitFor', - 'register', - 'complete', - 'fail', - 'isInProgress', - ]; - for (const method of dedupeStoreMethods) { - if (typeof dedupeStore[method] !== 'function') { - throw new Error(`SQLiteDedupeStore missing method: ${method}`); - } - } - - const rateLimitStoreMethods = [ - 'canProceed', - 'record', - 'getStatus', - 'reset', - 'getWaitTime', - ]; - for (const method of rateLimitStoreMethods) { - if (typeof rateLimitStore[method] !== 'function') { - throw new Error(`SQLiteRateLimitStore missing method: ${method}`); - } - } - - console.log('✅ sqlite-store CJS require test passed'); - return true; - } catch (error) { - console.error('❌ sqlite-store CJS require test failed:', error.message); - return false; - } -} - -// Run the test -const success = testCJSRequire(); -process.exit(success ? 0 : 1); diff --git a/packages/sqlite-store/build-tests/esm-import.test.js b/packages/sqlite-store/build-tests/esm-import.test.js deleted file mode 100644 index 5ae688c..0000000 --- a/packages/sqlite-store/build-tests/esm-import.test.js +++ /dev/null @@ -1,99 +0,0 @@ -/** - * Test ESM imports from built artifacts - * This file validates that the ESM build works correctly - */ -import { promises as fs } from 'fs'; -import { pathToFileURL } from 'url'; -import { resolve } from 'path'; - -async function testESMImport() { - console.log('Testing sqlite-store ESM imports...'); - - try { - // Test named imports - const { SQLiteCacheStore, SQLiteDedupeStore, SQLiteRateLimitStore } = - await import('../lib/index.js'); - - if (typeof SQLiteCacheStore !== 'function') { - throw new Error('SQLiteCacheStore should be a constructor function'); - } - - if (typeof SQLiteDedupeStore !== 'function') { - throw new Error('SQLiteDedupeStore should be a constructor function'); - } - - if (typeof SQLiteRateLimitStore !== 'function') { - throw new Error('SQLiteRateLimitStore should be a constructor function'); - } - - // Test that we can create instances (with mock database) - const mockDb = { - prepare: () => ({ - run: () => {}, - get: () => null, - all: () => [], - finalize: () => {}, - }), - exec: () => {}, - close: () => {}, - }; - - const cacheStore = new SQLiteCacheStore({ database: mockDb }); - const dedupeStore = new SQLiteDedupeStore({ database: mockDb }); - const rateLimitStore = new SQLiteRateLimitStore({ database: mockDb }); - - if (!cacheStore || !dedupeStore || !rateLimitStore) { - throw new Error('Failed to create store instances'); - } - - // Test that stores have required methods - const cacheStoreMethods = ['get', 'set', 'delete', 'clear']; - for (const method of cacheStoreMethods) { - if (typeof cacheStore[method] !== 'function') { - throw new Error(`SQLiteCacheStore missing method: ${method}`); - } - } - - const dedupeStoreMethods = [ - 'waitFor', - 'register', - 'complete', - 'fail', - 'isInProgress', - ]; - for (const method of dedupeStoreMethods) { - if (typeof dedupeStore[method] !== 'function') { - throw new Error(`SQLiteDedupeStore missing method: ${method}`); - } - } - - const rateLimitStoreMethods = [ - 'canProceed', - 'record', - 'getStatus', - 'reset', - 'getWaitTime', - ]; - for (const method of rateLimitStoreMethods) { - if (typeof rateLimitStore[method] !== 'function') { - throw new Error(`SQLiteRateLimitStore missing method: ${method}`); - } - } - - console.log('✅ sqlite-store ESM import test passed'); - return true; - } catch (error) { - console.error('❌ sqlite-store ESM import test failed:', error.message); - return false; - } -} - -// Run the test -testESMImport() - .then((success) => { - process.exit(success ? 0 : 1); - }) - .catch((error) => { - console.error('❌ sqlite-store ESM import test crashed:', error); - process.exit(1); - }); diff --git a/packages/sqlite-store/build-tests/exports.test.cjs b/packages/sqlite-store/build-tests/exports.test.cjs deleted file mode 100644 index 30a630e..0000000 --- a/packages/sqlite-store/build-tests/exports.test.cjs +++ /dev/null @@ -1,99 +0,0 @@ -/** - * Test package.json exports mapping - * This file validates that the exports field works correctly - */ -const { resolve } = require('path'); -const { readFileSync, existsSync } = require('fs'); - -function testExports() { - console.log('Testing sqlite-store package.json exports...'); - - try { - // Read package.json - const packagePath = resolve(__dirname, '../package.json'); - const packageJson = JSON.parse(readFileSync(packagePath, 'utf8')); - - if (!packageJson.exports) { - throw new Error('package.json missing exports field'); - } - - const exports = packageJson.exports['.']; - if (!exports) { - throw new Error('package.json missing root export'); - } - - // Check import export - if (!exports.import) { - throw new Error('package.json missing import export'); - } - - const importDefault = exports.import.default; - const importTypes = exports.import.types; - - if (!importDefault || !importTypes) { - throw new Error('package.json import export missing default or types'); - } - - // Check files exist - const importDefaultPath = resolve(__dirname, '..', importDefault); - const importTypesPath = resolve(__dirname, '..', importTypes); - - if (!existsSync(importDefaultPath)) { - throw new Error(`Import default file does not exist: ${importDefault}`); - } - - if (!existsSync(importTypesPath)) { - throw new Error(`Import types file does not exist: ${importTypes}`); - } - - // Check require export - if (!exports.require) { - throw new Error('package.json missing require export'); - } - - const requireDefault = exports.require.default; - const requireTypes = exports.require.types; - - if (!requireDefault || !requireTypes) { - throw new Error('package.json require export missing default or types'); - } - - // Check files exist - const requireDefaultPath = resolve(__dirname, '..', requireDefault); - const requireTypesPath = resolve(__dirname, '..', requireTypes); - - if (!existsSync(requireDefaultPath)) { - throw new Error(`Require default file does not exist: ${requireDefault}`); - } - - if (!existsSync(requireTypesPath)) { - throw new Error(`Require types file does not exist: ${requireTypes}`); - } - - // Check that main, module, and types fields align - if (packageJson.main !== requireDefault) { - throw new Error('package.json main field should match require.default'); - } - - if (packageJson.module !== importDefault) { - throw new Error('package.json module field should match import.default'); - } - - if (packageJson.types !== importTypes) { - throw new Error('package.json types field should match import.types'); - } - - console.log('✅ sqlite-store exports validation test passed'); - return true; - } catch (error) { - console.error( - '❌ sqlite-store exports validation test failed:', - error.message, - ); - return false; - } -} - -// Run the test -const success = testExports(); -process.exit(success ? 0 : 1); diff --git a/packages/sqlite-store/build-tests/functionality.test.cjs b/packages/sqlite-store/build-tests/functionality.test.cjs deleted file mode 100644 index 0230bb5..0000000 --- a/packages/sqlite-store/build-tests/functionality.test.cjs +++ /dev/null @@ -1,105 +0,0 @@ -/** - * Test basic functionality of built artifacts - * This file validates that the built package works as expected - */ -const { resolve } = require('path'); - -async function testFunctionality() { - console.log('Testing sqlite-store basic functionality...'); - - try { - // Test CJS functionality - const { - SQLiteCacheStore, - SQLiteDedupeStore, - SQLiteRateLimitStore, - } = require('../lib/index.cjs'); - - // Create mock database that mimics better-sqlite3 interface - const mockDb = { - prepare: (sql) => ({ - run: () => ({ changes: 1 }), - get: () => null, - all: () => [], - raw: () => ({ - all: () => [], - }), - finalize: () => {}, - }), - exec: (sql) => {}, - close: () => {}, - }; - - // Test SQLiteCacheStore - const cacheStore = new SQLiteCacheStore({ database: mockDb }); - - // Test that we can call methods without errors - try { - await cacheStore.set('test-key', 'test-value', 30000); - await cacheStore.get('test-key'); - await cacheStore.delete('test-key'); - await cacheStore.clear(); - } catch (error) { - throw new Error(`SQLiteCacheStore method calls failed: ${error.message}`); - } - - // Test SQLiteDedupeStore - const dedupeStore = new SQLiteDedupeStore({ database: mockDb }); - - try { - const jobId = await dedupeStore.register('test-hash'); - await dedupeStore.isInProgress('test-hash'); - await dedupeStore.complete('test-hash', 'test-result'); - await dedupeStore.waitFor('test-hash'); - } catch (error) { - throw new Error( - `SQLiteDedupeStore method calls failed: ${error.message}`, - ); - } - - // Test SQLiteRateLimitStore - const rateLimitStore = new SQLiteRateLimitStore({ - database: mockDb, - defaultConfig: { limit: 10, windowMs: 60000 }, - }); - - try { - await rateLimitStore.canProceed('test-resource'); - await rateLimitStore.record('test-resource'); - await rateLimitStore.getStatus('test-resource'); - await rateLimitStore.reset('test-resource'); - await rateLimitStore.getWaitTime('test-resource'); - } catch (error) { - throw new Error( - `SQLiteRateLimitStore method calls failed: ${error.message}`, - ); - } - - // Test that stores can be configured with different options - const customCacheStore = new SQLiteCacheStore({ - database: mockDb, - tableName: 'custom_cache', - cleanupIntervalMs: 30000, - }); - - if (!customCacheStore) { - throw new Error('Failed to create SQLiteCacheStore with custom options'); - } - - console.log('✅ sqlite-store functionality test passed'); - return true; - } catch (error) { - console.error('❌ sqlite-store functionality test failed:', error.message); - return false; - } -} - -// Run the test -testFunctionality() - .then((success) => { - process.exit(success ? 0 : 1); - }) - .catch((error) => { - console.error('❌ sqlite-store functionality test crashed:', error); - process.exit(1); - }); diff --git a/packages/sqlite-store/eslint.config.js b/packages/sqlite-store/eslint.config.js deleted file mode 100644 index 1e857bb..0000000 --- a/packages/sqlite-store/eslint.config.js +++ /dev/null @@ -1,4 +0,0 @@ -import { libraryConfig } from '@repo/eslint-config/library'; - -/** @type {import('eslint').Linter.Config[]} */ -export default libraryConfig; diff --git a/packages/sqlite-store/package.json b/packages/sqlite-store/package.json deleted file mode 100644 index e002d2a..0000000 --- a/packages/sqlite-store/package.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "name": "@comic-vine/sqlite-store", - "description": "SQLite store implementations for Comic Vine client caching, deduplication, and rate limiting using Drizzle ORM", - "repository": { - "type": "git", - "url": "git+https://github.com/AllyMurray/comic-vine.git" - }, - "scripts": { - "build": "tsup && npm run test && npm run package", - "lint": "eslint --fix src && prettier --write .", - "package": "mkdir -p dist/js && mv $(npm pack --silent) dist/js/", - "test": "vitest run --dir=src", - "test:watch": "vitest --dir=src", - "test:build": "npm run test:build:esm && npm run test:build:cjs && npm run test:build:exports && npm run test:build:functionality", - "test:build:esm": "node build-tests/esm-import.test.js", - "test:build:cjs": "node build-tests/cjs-require.test.cjs", - "test:build:exports": "node build-tests/exports.test.cjs", - "test:build:functionality": "node build-tests/functionality.test.cjs", - "dev": "tsup --watch", - "clean": "rimraf lib dist node_modules .turbo" - }, - "author": { - "name": "Ally Murray", - "email": "allymurray88@gmail.com", - "organization": false - }, - "devDependencies": { - "@repo/eslint-config": "workspace:*", - "@repo/tsup-config": "workspace:*", - "@repo/vitest-config": "workspace:*", - "@types/better-sqlite3": "^7.6.13", - "@types/node": "20", - "tsup": "8.5.0", - "typescript": "5.8.3", - "vitest": "3.2.4" - }, - "dependencies": { - "@comic-vine/client": "workspace:*", - "better-sqlite3": "^12.2.0", - "drizzle-orm": "^0.33.0", - "zod": "^3.23.8" - }, - "keywords": [ - "comic-vine", - "comic-vine-store", - "sqlite-store", - "drizzle-orm", - "caching", - "deduplication", - "rate-limiting", - "comic-vine-client" - ], - "engines": { - "node": ">= 20.0.0" - }, - "main": "./lib/index.cjs", - "license": "MIT", - "sideEffects": false, - "files": [ - "lib/**" - ], - "homepage": "https://github.com/AllyMurray/comic-vine#readme", - "version": "0.1.2", - "bugs": { - "url": "https://github.com/AllyMurray/comic-vine/issues" - }, - "types": "./lib/index.d.ts", - "type": "module", - "module": "./lib/index.js", - "exports": { - ".": { - "import": { - "types": "./lib/index.d.ts", - "default": "./lib/index.js" - }, - "require": { - "types": "./lib/index.d.cts", - "default": "./lib/index.cjs" - } - } - }, - "publishConfig": { - "access": "public" - }, - "packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0" -} diff --git a/packages/sqlite-store/src/index.ts b/packages/sqlite-store/src/index.ts deleted file mode 100644 index 1610369..0000000 --- a/packages/sqlite-store/src/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -export { SQLiteCacheStore } from './sqlite-cache-store.js'; -export { SQLiteDedupeStore } from './sqlite-dedupe-store.js'; -export { SQLiteRateLimitStore } from './sqlite-rate-limit-store.js'; -export { SqliteAdaptiveRateLimitStore } from './sqlite-adaptive-rate-limit-store.js'; -export type { SQLiteCacheStoreOptions } from './sqlite-cache-store.js'; -export type { SQLiteDedupeStoreOptions } from './sqlite-dedupe-store.js'; -export type { SQLiteRateLimitStoreOptions } from './sqlite-rate-limit-store.js'; -export type { SqliteAdaptiveRateLimitStoreOptions } from './sqlite-adaptive-rate-limit-store.js'; -export type { RateLimitConfig } from '@comic-vine/client'; -export * from './schema.js'; - -// Re-export the store interfaces from the client package for convenience -export type { - CacheStore, - DedupeStore, - RateLimitStore, - AdaptiveRateLimitStore, - RequestPriority, - AdaptiveConfig, -} from '@comic-vine/client'; diff --git a/packages/sqlite-store/src/schema.test.ts b/packages/sqlite-store/src/schema.test.ts deleted file mode 100644 index 756f9eb..0000000 --- a/packages/sqlite-store/src/schema.test.ts +++ /dev/null @@ -1,375 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import Database from 'better-sqlite3'; -import { drizzle } from 'drizzle-orm/better-sqlite3'; -import { migrate as _migrate } from 'drizzle-orm/better-sqlite3/migrator'; -import { describe, it, expect, beforeEach, afterEach } from 'vitest'; -import { - cacheTable as _cacheTable, - dedupeTable as _dedupeTable, - rateLimitTable as _rateLimitTable, -} from './schema.js'; - -describe('Database Schema', () => { - let db: Database.Database; - let _drizzleDb: ReturnType; - const testDbPath = path.join(__dirname, 'test-schema.db'); - - beforeEach(() => { - // Clean up any existing test database - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - - db = new Database(testDbPath); - _drizzleDb = drizzle(db); - - // Create tables using our schema - db.exec(` - CREATE TABLE IF NOT EXISTS cache ( - hash TEXT PRIMARY KEY NOT NULL, - value TEXT NOT NULL, - expires_at INTEGER NOT NULL - ); - - CREATE INDEX IF NOT EXISTS cache_expires_at_idx ON cache (expires_at); - `); - - db.exec(` - CREATE TABLE IF NOT EXISTS dedupe_jobs ( - hash TEXT PRIMARY KEY NOT NULL, - job_id TEXT NOT NULL, - value TEXT, - status TEXT DEFAULT 'pending' NOT NULL, - created_at INTEGER DEFAULT (unixepoch()) NOT NULL, - updated_at INTEGER DEFAULT (unixepoch()) NOT NULL - ); - - CREATE INDEX IF NOT EXISTS dedupe_jobs_status_idx ON dedupe_jobs (status); - CREATE INDEX IF NOT EXISTS dedupe_jobs_created_at_idx ON dedupe_jobs (created_at); - `); - - db.exec(` - CREATE TABLE IF NOT EXISTS rate_limits ( - resource TEXT NOT NULL, - timestamp INTEGER NOT NULL, - PRIMARY KEY (resource, timestamp) - ); - - CREATE INDEX IF NOT EXISTS rate_limits_resource_idx ON rate_limits (resource); - CREATE INDEX IF NOT EXISTS rate_limits_timestamp_idx ON rate_limits (timestamp); - `); - }); - - afterEach(() => { - if (db) { - db.close(); - } - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - }); - - describe('cache table', () => { - it('should allow inserting cache entries', () => { - const stmt = db.prepare(` - INSERT INTO cache (hash, value, expires_at) - VALUES (?, ?, ?) - `); - - const result = stmt.run( - 'test-hash', - JSON.stringify({ test: 'value' }), - Date.now() + 60000, - ); - expect(result.changes).toBe(1); - }); - - it('should enforce primary key constraint', () => { - const stmt = db.prepare(` - INSERT INTO cache (hash, value, expires_at) - VALUES (?, ?, ?) - `); - - stmt.run('duplicate-hash', 'value1', Date.now() + 60000); - - expect(() => { - stmt.run('duplicate-hash', 'value2', Date.now() + 60000); - }).toThrow(); - }); - - it('should allow selecting by hash', () => { - const insertStmt = db.prepare(` - INSERT INTO cache (hash, value, expires_at) - VALUES (?, ?, ?) - `); - - const selectStmt = db.prepare(` - SELECT * FROM cache WHERE hash = ? - `); - - insertStmt.run('test-hash', 'test-value', Date.now() + 60000); - - const result = selectStmt.get('test-hash'); - expect(result).toBeDefined(); - expect(result.hash).toBe('test-hash'); - expect(result.value).toBe('test-value'); - }); - - it('should use expires_at index for cleanup queries', () => { - const expiredTime = Date.now() - 60000; - const activeTime = Date.now() + 60000; - - const stmt = db.prepare(` - INSERT INTO cache (hash, value, expires_at) - VALUES (?, ?, ?) - `); - - stmt.run('expired', 'value1', expiredTime); - stmt.run('active', 'value2', activeTime); - - const cleanupStmt = db.prepare(` - DELETE FROM cache WHERE expires_at < ? - `); - - const result = cleanupStmt.run(Date.now()); - expect(result.changes).toBe(1); - - const remaining = db.prepare('SELECT COUNT(*) as count FROM cache').get(); - expect(remaining.count).toBe(1); - }); - }); - - describe('dedupe_jobs table', () => { - it('should allow inserting dedupe jobs', () => { - const stmt = db.prepare(` - INSERT INTO dedupe_jobs (hash, job_id, status) - VALUES (?, ?, ?) - `); - - const result = stmt.run('test-hash', 'job-123', 'pending'); - expect(result.changes).toBe(1); - }); - - it('should set default status to pending', () => { - const stmt = db.prepare(` - INSERT INTO dedupe_jobs (hash, job_id) - VALUES (?, ?) - `); - - stmt.run('test-hash', 'job-123'); - - const selectStmt = db.prepare(` - SELECT status FROM dedupe_jobs WHERE hash = ? - `); - - const result = selectStmt.get('test-hash'); - expect(result.status).toBe('pending'); - }); - - it('should auto-populate timestamps', () => { - const beforeInsert = Math.floor(Date.now() / 1000); - - const stmt = db.prepare(` - INSERT INTO dedupe_jobs (hash, job_id) - VALUES (?, ?) - `); - - stmt.run('test-hash', 'job-123'); - - const afterInsert = Math.floor(Date.now() / 1000); - - const selectStmt = db.prepare(` - SELECT created_at, updated_at FROM dedupe_jobs WHERE hash = ? - `); - - const result = selectStmt.get('test-hash'); - expect(result.created_at).toBeGreaterThanOrEqual(beforeInsert); - expect(result.created_at).toBeLessThanOrEqual(afterInsert); - expect(result.updated_at).toBeGreaterThanOrEqual(beforeInsert); - expect(result.updated_at).toBeLessThanOrEqual(afterInsert); - }); - - it('should allow updating job status and value', () => { - const insertStmt = db.prepare(` - INSERT INTO dedupe_jobs (hash, job_id) - VALUES (?, ?) - `); - - insertStmt.run('test-hash', 'job-123'); - - const updateStmt = db.prepare(` - UPDATE dedupe_jobs - SET status = ?, value = ?, updated_at = unixepoch() - WHERE hash = ? - `); - - const result = updateStmt.run( - 'completed', - JSON.stringify({ result: 'success' }), - 'test-hash', - ); - expect(result.changes).toBe(1); - - const selectStmt = db.prepare(` - SELECT status, value FROM dedupe_jobs WHERE hash = ? - `); - - const job = selectStmt.get('test-hash'); - expect(job.status).toBe('completed'); - expect(job.value).toBe(JSON.stringify({ result: 'success' })); - }); - - it('should use status index for queries', () => { - const stmt = db.prepare(` - INSERT INTO dedupe_jobs (hash, job_id, status) - VALUES (?, ?, ?) - `); - - stmt.run('pending1', 'job-1', 'pending'); - stmt.run('completed1', 'job-2', 'completed'); - stmt.run('pending2', 'job-3', 'pending'); - - const selectStmt = db.prepare(` - SELECT COUNT(*) as count FROM dedupe_jobs WHERE status = ? - `); - - const pendingCount = selectStmt.get('pending'); - expect(pendingCount.count).toBe(2); - - const completedCount = selectStmt.get('completed'); - expect(completedCount.count).toBe(1); - }); - }); - - describe('rate_limits table', () => { - it('should allow inserting rate limit entries', () => { - const stmt = db.prepare(` - INSERT INTO rate_limits (resource, timestamp) - VALUES (?, ?) - `); - - const result = stmt.run('test-resource', Date.now()); - expect(result.changes).toBe(1); - }); - - it('should enforce composite primary key', () => { - const stmt = db.prepare(` - INSERT INTO rate_limits (resource, timestamp) - VALUES (?, ?) - `); - - const timestamp = Date.now(); - stmt.run('test-resource', timestamp); - - // Same resource and timestamp should fail - expect(() => { - stmt.run('test-resource', timestamp); - }).toThrow(); - - // Different timestamp should succeed - expect(() => { - stmt.run('test-resource', timestamp + 1); - }).not.toThrow(); - }); - - it('should use resource index for queries', () => { - const stmt = db.prepare(` - INSERT INTO rate_limits (resource, timestamp) - VALUES (?, ?) - `); - - const now = Date.now(); - stmt.run('resource1', now); - stmt.run('resource1', now + 1000); - stmt.run('resource2', now + 2000); - - const selectStmt = db.prepare(` - SELECT COUNT(*) as count FROM rate_limits WHERE resource = ? - `); - - const resource1Count = selectStmt.get('resource1'); - expect(resource1Count.count).toBe(2); - - const resource2Count = selectStmt.get('resource2'); - expect(resource2Count.count).toBe(1); - }); - - it('should use timestamp index for cleanup queries', () => { - const oldTime = Date.now() - 60000; - const newTime = Date.now(); - - const stmt = db.prepare(` - INSERT INTO rate_limits (resource, timestamp) - VALUES (?, ?) - `); - - stmt.run('test', oldTime); - stmt.run('test', newTime); - - const cleanupStmt = db.prepare(` - DELETE FROM rate_limits WHERE timestamp < ? - `); - - const result = cleanupStmt.run(Date.now() - 30000); - expect(result.changes).toBe(1); - - const remaining = db - .prepare('SELECT COUNT(*) as count FROM rate_limits') - .get(); - expect(remaining.count).toBe(1); - }); - }); - - describe('table constraints and data types', () => { - it('should enforce NOT NULL constraints', () => { - // Cache table - expect(() => { - db.prepare('INSERT INTO cache (hash, value) VALUES (?, ?)').run( - 'hash', - 'value', - ); - }).toThrow(); // Missing expires_at - - // Dedupe jobs table - expect(() => { - db.prepare('INSERT INTO dedupe_jobs (job_id) VALUES (?)').run('job-id'); - }).toThrow(); // Missing hash - - // Rate limits table - expect(() => { - db.prepare('INSERT INTO rate_limits (resource) VALUES (?)').run( - 'resource', - ); - }).toThrow(); // Missing timestamp - }); - - it('should handle TEXT and INTEGER data types correctly', () => { - // Test that TEXT fields accept strings - const cacheStmt = db.prepare( - 'INSERT INTO cache (hash, value, expires_at) VALUES (?, ?, ?)', - ); - cacheStmt.run('text-hash', 'text-value', 123456789); - - // Test that INTEGER fields accept numbers - const rateLimitStmt = db.prepare( - 'INSERT INTO rate_limits (resource, timestamp) VALUES (?, ?)', - ); - rateLimitStmt.run('resource', 123456789); - - // Verify data integrity - const cacheResult = db - .prepare('SELECT * FROM cache WHERE hash = ?') - .get('text-hash'); - expect(typeof cacheResult.hash).toBe('string'); - expect(typeof cacheResult.value).toBe('string'); - expect(typeof cacheResult.expires_at).toBe('number'); - - const rateLimitResult = db - .prepare('SELECT * FROM rate_limits WHERE resource = ?') - .get('resource'); - expect(typeof rateLimitResult.resource).toBe('string'); - expect(typeof rateLimitResult.timestamp).toBe('number'); - }); - }); -}); diff --git a/packages/sqlite-store/src/schema.ts b/packages/sqlite-store/src/schema.ts deleted file mode 100644 index 8eab02a..0000000 --- a/packages/sqlite-store/src/schema.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { sqliteTable, text, integer, blob } from 'drizzle-orm/sqlite-core'; - -// Cache table for storing cached API responses -export const cacheTable = sqliteTable('cache', { - hash: text('hash').primaryKey(), - value: blob('value', { mode: 'json' }).notNull(), - expiresAt: integer('expires_at').notNull(), - createdAt: integer('created_at').notNull(), -}); - -// Dedupe table for tracking in-progress requests -export const dedupeTable = sqliteTable('dedupe_jobs', { - hash: text('hash').primaryKey(), - jobId: text('job_id').notNull(), - status: text('status').notNull(), // 'pending', 'completed', 'failed' - result: blob('result', { mode: 'json' }), - error: text('error'), - createdAt: integer('created_at').notNull(), - updatedAt: integer('updated_at').notNull(), -}); - -// Rate limit table for tracking API request limits -export const rateLimitTable = sqliteTable('rate_limits', { - resource: text('resource').notNull(), - timestamp: integer('timestamp').notNull(), - id: integer('id').primaryKey({ autoIncrement: true }), -}); - -export type CacheRow = typeof cacheTable.$inferSelect; -export type DedupeRow = typeof dedupeTable.$inferSelect; -export type RateLimitRow = typeof rateLimitTable.$inferSelect; diff --git a/packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.test.ts b/packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.test.ts deleted file mode 100644 index 970d327..0000000 --- a/packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.test.ts +++ /dev/null @@ -1,369 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import type { RateLimitConfig } from '@comic-vine/client'; -import { describe, it, expect, beforeEach, afterEach } from 'vitest'; -import { SqliteAdaptiveRateLimitStore } from './sqlite-adaptive-rate-limit-store.js'; - -const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); - -describe('SqliteAdaptiveRateLimitStore', () => { - let store: SqliteAdaptiveRateLimitStore; - const testDbPath = path.join(__dirname, 'test-adaptive-rate-limit.db'); - const defaultConfig: RateLimitConfig = { limit: 200, windowMs: 3600000 }; // 1 hour - - beforeEach(() => { - // Clean up any existing test database - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - - store = new SqliteAdaptiveRateLimitStore({ - database: testDbPath, - defaultConfig, - adaptiveConfig: { - monitoringWindowMs: 1000, // 1 second for fast tests - highActivityThreshold: 5, - moderateActivityThreshold: 2, - recalculationIntervalMs: 100, // 100ms for fast tests - sustainedInactivityThresholdMs: 2000, // 2 seconds for fast tests - backgroundPauseOnIncreasingTrend: true, - maxUserScaling: 2.0, - minUserReserved: 10, - }, - }); - }); - - afterEach(async () => { - if (store) { - await store.close(); - } - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - }); - - describe('basic adaptive operations', () => { - it('should allow user and background requests within limits', async () => { - const resource = 'test-resource'; - - // Test user requests - const userCanProceed = await store.canProceed(resource, 'user'); - expect(userCanProceed).toBe(true); - await store.record(resource, 'user'); - - // Test background requests - const backgroundCanProceed = await store.canProceed( - resource, - 'background', - ); - expect(backgroundCanProceed).toBe(true); - await store.record(resource, 'background'); - }); - - it('should provide adaptive status information', async () => { - const resource = 'test-resource'; - - const status = await store.getStatus(resource, 'user'); - expect(status).toHaveProperty('remaining'); - expect(status).toHaveProperty('resetTime'); - expect(status).toHaveProperty('limit'); - expect(status).toHaveProperty('adaptive'); - expect(status.adaptive).toHaveProperty('userReserved'); - expect(status.adaptive).toHaveProperty('backgroundMax'); - expect(status.adaptive).toHaveProperty('backgroundPaused'); - expect(status.adaptive).toHaveProperty('recentUserActivity'); - expect(status.adaptive).toHaveProperty('reason'); - }); - }); - - describe('adaptive capacity allocation', () => { - it('should start with recent zero activity allocation', async () => { - const resource = 'test-resource'; - - const status = await store.getStatus(resource); - // With 0 user activity and no requests at all, it falls into "Initial state" strategy - // which uses 30% base allocation (60 requests for 200 limit) - expect(status.adaptive?.userReserved).toBe(60); // 30% of 200 = 60 - expect(status.adaptive?.backgroundMax).toBe(140); // 200 - 60 = 140 - expect(status.adaptive?.backgroundPaused).toBe(false); - expect(status.adaptive?.reason).toContain('Initial state'); - }); - - it('should adapt to moderate user activity', async () => { - const resource = 'test-resource'; - - // Simulate moderate user activity (3 requests) - for (let i = 0; i < 3; i++) { - await store.record(resource, 'user'); - } - - // Wait for recalculation - await sleep(150); - - const status = await store.getStatus(resource); - expect(status.adaptive?.userReserved).toBeGreaterThan(60); // Should get more than default - expect(status.adaptive?.backgroundMax).toBeLessThan(140); // Background gets less - expect(status.adaptive?.backgroundPaused).toBe(false); - expect(status.adaptive?.reason).toContain('dynamic scaling'); - }); - - it('should pause background on high user activity', async () => { - const resource = 'test-resource'; - - // Simulate high user activity (6 requests, above threshold of 5) - for (let i = 0; i < 6; i++) { - await store.record(resource, 'user'); - } - - // Wait for recalculation - await sleep(150); - - const status = await store.getStatus(resource); - expect(status.adaptive?.userReserved).toBeGreaterThan(100); // Users get significant capacity - expect(status.adaptive?.backgroundPaused).toBe(true); // Background should be paused - expect(status.adaptive?.reason).toContain('High user activity'); - }); - - it('should scale up background during sustained inactivity', async () => { - const resource = 'test-resource'; - - // First, establish some baseline activity that will age out - await store.record(resource, 'user'); - - // Wait for sustained inactivity threshold - await sleep(2100); // Just over 2 seconds - - // Wait for recalculation interval - await sleep(150); - - const status = await store.getStatus(resource); - expect(status.adaptive?.userReserved).toBe(0); // No user reservation - expect(status.adaptive?.backgroundMax).toBe(200); // Full capacity to background - expect(status.adaptive?.backgroundPaused).toBe(false); - expect(status.adaptive?.reason).toContain('Sustained zero activity'); - }); - }); - - describe('priority-based request handling', () => { - it('should block background requests when paused', async () => { - const resource = 'test-resource'; - - // Create high user activity to pause background - for (let i = 0; i < 6; i++) { - await store.record(resource, 'user'); - } - - // Wait for recalculation - await sleep(150); - - // Background requests should be blocked - const backgroundCanProceed = await store.canProceed( - resource, - 'background', - ); - expect(backgroundCanProceed).toBe(false); - - // User requests should still work - const userCanProceed = await store.canProceed(resource, 'user'); - expect(userCanProceed).toBe(true); - }); - - it('should handle priority-specific wait times', async () => { - const resource = 'test-resource'; - - // Create scenario where background is paused - for (let i = 0; i < 6; i++) { - await store.record(resource, 'user'); - } - - await sleep(150); - - const backgroundWaitTime = await store.getWaitTime( - resource, - 'background', - ); - expect(backgroundWaitTime).toBeGreaterThan(0); // Should have wait time - - const userWaitTime = await store.getWaitTime(resource, 'user'); - expect(userWaitTime).toBeLessThanOrEqual(backgroundWaitTime); // User should wait less - }); - }); - - describe('database persistence', () => { - it('should persist priority information in database', async () => { - const resource = 'test-resource'; - - // Record requests with different priorities - await store.record(resource, 'user'); - await store.record(resource, 'background'); - await store.record(resource, 'user'); - - // Close and recreate store to test persistence - await store.close(); - - store = new SqliteAdaptiveRateLimitStore({ - database: testDbPath, - defaultConfig, - adaptiveConfig: { - monitoringWindowMs: 1000, - recalculationIntervalMs: 100, - }, - }); - - // Should load previous activity from database - const status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBeGreaterThan(0); - }); - - it('should handle database cleanup correctly', async () => { - const resource = 'test-resource'; - - // Add some requests - for (let i = 0; i < 5; i++) { - await store.record(resource, 'user'); - await store.record(resource, 'background'); - } - - // Clear all data - await store.clear(); - - const status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBe(0); - expect(status.remaining).toBe(200); // Should be back to full capacity - }); - }); - - describe('resource configuration', () => { - it('should support per-resource rate limits', async () => { - const resource1 = 'resource-1'; - const resource2 = 'resource-2'; - - // Set different config for resource1 - const customConfig: RateLimitConfig = { limit: 100, windowMs: 1800000 }; - store.setResourceConfig(resource1, customConfig); - - const status1 = await store.getStatus(resource1); - const status2 = await store.getStatus(resource2); - - expect(status1.limit).toBe(100); - expect(status2.limit).toBe(200); // Default - }); - - it('should adapt capacity based on resource-specific limits', async () => { - const resource = 'small-resource'; - - // Set smaller limit - store.setResourceConfig(resource, { limit: 50, windowMs: 3600000 }); - - const status = await store.getStatus(resource); - expect(status.limit).toBe(50); - // With 0 activity and no requests, uses initial state strategy (30% of 50 = 15) - expect(status.adaptive?.userReserved).toBe(15); // 30% of 50 = 15 - expect(status.adaptive?.backgroundMax).toBe(35); // 50 - 15 = 35 - }); - }); - - describe('statistics and monitoring', () => { - it('should provide accurate statistics', async () => { - const resource1 = 'resource-1'; - const resource2 = 'resource-2'; - - // Add requests to multiple resources - for (let i = 0; i < 3; i++) { - await store.record(resource1, 'user'); - await store.record(resource2, 'background'); - } - - const stats = await store.getStats(); - expect(stats.totalRequests).toBe(6); - expect(stats.uniqueResources).toBe(2); - }); - - it('should identify rate-limited resources', async () => { - const resource = 'limited-resource'; - - // Set very low limit and fill it - store.setResourceConfig(resource, { limit: 2, windowMs: 3600000 }); - await store.record(resource, 'user'); - await store.record(resource, 'background'); - - const stats = await store.getStats(); - expect(stats.rateLimitedResources).toContain(resource); - }); - }); - - describe('error handling', () => { - it('should throw error when accessing destroyed store', async () => { - await store.close(); - - await expect(store.canProceed('test')).rejects.toThrow( - 'Rate limit store has been destroyed', - ); - await expect(store.record('test')).rejects.toThrow( - 'Rate limit store has been destroyed', - ); - await expect(store.getStatus('test')).rejects.toThrow( - 'Rate limit store has been destroyed', - ); - await expect(store.reset('test')).rejects.toThrow( - 'Rate limit store has been destroyed', - ); - }); - - it('should handle missing database gracefully', async () => { - // Create store with in-memory database - const memStore = new SqliteAdaptiveRateLimitStore({ - database: ':memory:', - adaptiveConfig: { - monitoringWindowMs: 1000, - }, - }); - - try { - const canProceed = await memStore.canProceed('test'); - expect(canProceed).toBe(true); - } finally { - await memStore.close(); - } - }); - }); - - describe('memory management', () => { - it('should clean up old activity metrics', async () => { - const resource = 'test-resource'; - - // Add requests and let them age out - await store.record(resource, 'user'); - - // Wait for monitoring window to expire - await sleep(1100); // Just over 1 second - - // Add another request to trigger cleanup - await store.record(resource, 'user'); - await sleep(150); // Wait for recalculation - - const status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBe(1); // Only recent request should count - }); - - it('should handle concurrent access correctly', async () => { - const resource = 'concurrent-resource'; - - // Simulate concurrent requests - const promises: Array> = []; - for (let i = 0; i < 10; i++) { - promises.push( - store.canProceed(resource, i % 2 === 0 ? 'user' : 'background'), - ); - promises.push( - store.record(resource, i % 2 === 0 ? 'user' : 'background'), - ); - } - - await Promise.all(promises); - - const status = await store.getStatus(resource); - expect(status.adaptive?.recentUserActivity).toBeGreaterThan(0); - }); - }); -}); diff --git a/packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.ts b/packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.ts deleted file mode 100644 index bfbb4a6..0000000 --- a/packages/sqlite-store/src/sqlite-adaptive-rate-limit-store.ts +++ /dev/null @@ -1,550 +0,0 @@ -import { - AdaptiveCapacityCalculator, - type AdaptiveRateLimitStore as IAdaptiveRateLimitStore, - type RequestPriority, - type AdaptiveConfigSchema, - type RateLimitConfig, - type ActivityMetrics, - type DynamicCapacityResult, -} from '@comic-vine/client'; -import Database from 'better-sqlite3'; -import { and, eq, count, sql, lt } from 'drizzle-orm'; -import { drizzle, BetterSQLite3Database } from 'drizzle-orm/better-sqlite3'; -import { z } from 'zod'; -import { rateLimitTable } from './schema.js'; - -const DEFAULT_RATE_LIMIT: RateLimitConfig = { - limit: 200, - windowMs: 3600000, // 1 hour -}; - -export interface SqliteAdaptiveRateLimitStoreOptions { - /** File path or existing `better-sqlite3` Database instance. Defaults to `':memory:'`. */ - database?: string | InstanceType; - /** Global/default rate-limit config applied when a resource-specific override is not provided. */ - defaultConfig?: RateLimitConfig; - /** Optional per-resource overrides. */ - resourceConfigs?: Map; - /** Adaptive configuration for priority-based rate limiting */ - adaptiveConfig?: Partial>; -} - -export class SqliteAdaptiveRateLimitStore implements IAdaptiveRateLimitStore { - private db: BetterSQLite3Database; - private sqlite: InstanceType; - /** Indicates whether this store manages (and should close) the SQLite connection */ - private readonly isConnectionManaged: boolean = false; - private defaultConfig: RateLimitConfig; - private resourceConfigs = new Map(); - private isDestroyed = false; - - // Adaptive rate limiting components - private capacityCalculator: AdaptiveCapacityCalculator; - private activityMetrics = new Map(); - private lastCapacityUpdate = new Map(); - private cachedCapacity = new Map(); - - constructor({ - database = ':memory:', - defaultConfig = DEFAULT_RATE_LIMIT, - resourceConfigs = new Map(), - adaptiveConfig = {}, - }: SqliteAdaptiveRateLimitStoreOptions = {}) { - // Allow callers to pass a pre-existing connection so that all stores can - // operate on the same underlying DB file. - let sqliteInstance: InstanceType; - let isConnectionManaged = false; - - if (typeof database === 'string') { - sqliteInstance = new Database(database); - isConnectionManaged = true; - } else { - sqliteInstance = database; - } - - this.sqlite = sqliteInstance; - this.isConnectionManaged = isConnectionManaged; - this.db = drizzle(sqliteInstance); - this.defaultConfig = defaultConfig; - this.resourceConfigs = resourceConfigs; - - // Initialize adaptive components - this.capacityCalculator = new AdaptiveCapacityCalculator(adaptiveConfig); - - this.initializeDatabase(); - } - - async canProceed( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - // Load activity metrics if needed - await this.ensureActivityMetrics(resource); - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - // Check if background requests should be paused - if (priority === 'background' && capacity.backgroundPaused) { - return false; // Hard pause for background requests - } - - // Get current usage for each priority - const currentUserRequests = await this.getCurrentUsage(resource, 'user'); - const currentBackgroundRequests = await this.getCurrentUsage( - resource, - 'background', - ); - - if (priority === 'user') { - return currentUserRequests < capacity.userReserved; - } else { - return currentBackgroundRequests < capacity.backgroundMax; - } - } - - async record( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const now = Date.now(); - - // Insert into database with priority using raw SQL to handle the additional column - this.db.run(sql` - INSERT INTO rate_limits (resource, timestamp, priority) - VALUES (${resource}, ${now}, ${priority}) - `); - - // Update in-memory activity metrics - const metrics = this.getOrCreateActivityMetrics(resource); - - if (priority === 'user') { - metrics.recentUserRequests.push(now); - this.cleanupOldRequests(metrics.recentUserRequests); - } else { - metrics.recentBackgroundRequests.push(now); - this.cleanupOldRequests(metrics.recentBackgroundRequests); - } - - // Update activity trend - metrics.userActivityTrend = this.capacityCalculator.calculateActivityTrend( - metrics.recentUserRequests, - ); - } - - async getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - adaptive?: { - userReserved: number; - backgroundMax: number; - backgroundPaused: boolean; - recentUserActivity: number; - reason: string; - }; - }> { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - await this.ensureActivityMetrics(resource); - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - const currentUserUsage = await this.getCurrentUsage(resource, 'user'); - const currentBackgroundUsage = await this.getCurrentUsage( - resource, - 'background', - ); - - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - - return { - remaining: - capacity.userReserved - - currentUserUsage + - (capacity.backgroundMax - currentBackgroundUsage), - resetTime: new Date(Date.now() + config.windowMs), - limit: this.getResourceLimit(resource), - adaptive: { - userReserved: capacity.userReserved, - backgroundMax: capacity.backgroundMax, - backgroundPaused: capacity.backgroundPaused, - recentUserActivity: this.capacityCalculator.getRecentActivity( - metrics.recentUserRequests, - ), - reason: capacity.reason, - }, - }; - } - - async reset(resource: string): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - // Clear database records - await this.db - .delete(rateLimitTable) - .where(eq(rateLimitTable.resource, resource)); - - // Clear in-memory metrics - this.activityMetrics.delete(resource); - this.cachedCapacity.delete(resource); - this.lastCapacityUpdate.delete(resource); - } - - async getWaitTime( - resource: string, - priority: RequestPriority = 'background', - ): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - - if (config.limit === 0) { - return config.windowMs; - } - - const canProceed = await this.canProceed(resource, priority); - if (canProceed) { - return 0; - } - - // For background requests that are paused, check back in 30 seconds - await this.ensureActivityMetrics(resource); - const metrics = this.getOrCreateActivityMetrics(resource); - const capacity = this.calculateCurrentCapacity(resource, metrics); - - if (priority === 'background' && capacity.backgroundPaused) { - return this.capacityCalculator.config.recalculationIntervalMs; - } - - // Find the oldest request in the current window for this priority - const now = Date.now(); - const windowStart = now - config.windowMs; - - const oldestResult = this.sqlite - .prepare( - ` - SELECT timestamp - FROM rate_limits - WHERE resource = ? AND COALESCE(priority, 'background') = ? AND timestamp >= ? - ORDER BY timestamp - LIMIT 1 - `, - ) - .get(resource, priority, windowStart) as - | { timestamp: number } - | undefined; - - if (!oldestResult) { - return 0; - } - - const oldestTimestamp = oldestResult.timestamp; - if (!oldestTimestamp) { - return 0; - } - - const timeUntilOldestExpires = oldestTimestamp + config.windowMs - now; - return Math.max(0, timeUntilOldestExpires); - } - - /** - * Set rate limit configuration for a specific resource - */ - setResourceConfig(resource: string, config: RateLimitConfig): void { - this.resourceConfigs.set(resource, config); - } - - /** - * Get rate limit configuration for a resource - */ - getResourceConfig(resource: string): RateLimitConfig { - return this.resourceConfigs.get(resource) || this.defaultConfig; - } - - /** - * Get statistics for all resources - */ - async getStats(): Promise<{ - totalRequests: number; - uniqueResources: number; - rateLimitedResources: Array; - }> { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const totalResult = await this.db - .select({ count: count() }) - .from(rateLimitTable); - - const resourcesResult = await this.db - .select({ resource: rateLimitTable.resource }) - .from(rateLimitTable) - .groupBy(rateLimitTable.resource); - - const uniqueResources = resourcesResult.length; - const rateLimitedResources: Array = []; - - for (const { resource } of resourcesResult) { - const canProceed = await this.canProceed(resource); - if (!canProceed) { - rateLimitedResources.push(resource); - } - } - - return { - totalRequests: (totalResult[0]?.count as number) || 0, - uniqueResources, - rateLimitedResources, - }; - } - - /** - * Clean up all rate limit data - */ - async clear(): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - await this.db.delete(rateLimitTable); - this.activityMetrics.clear(); - this.cachedCapacity.clear(); - this.lastCapacityUpdate.clear(); - } - - /** - * Clean up expired requests for all resources - */ - async cleanup(): Promise { - const now = Date.now(); - - // Find all unique resources - const resources = await this.db - .select({ resource: rateLimitTable.resource }) - .from(rateLimitTable) - .groupBy(rateLimitTable.resource); - - for (const { resource } of resources) { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const windowStart = now - config.windowMs; - await this.cleanupExpiredRequests(resource, windowStart); - } - } - - /** - * Close the database connection - */ - async close(): Promise { - this.isDestroyed = true; - - // Close only if this instance established the connection. - if (this.isConnectionManaged && typeof this.sqlite.close === 'function') { - this.sqlite.close(); - } - } - - /** - * Alias for close() to match test expectations - */ - destroy(): void { - this.close(); - } - - // Private helper methods for adaptive functionality - - private calculateCurrentCapacity( - resource: string, - metrics: ActivityMetrics, - ): DynamicCapacityResult { - // Only recalculate based on configured interval to avoid thrashing - const lastUpdate = this.lastCapacityUpdate.get(resource) || 0; - const recalcInterval = - this.capacityCalculator.config.recalculationIntervalMs; - - if (Date.now() - lastUpdate < recalcInterval) { - return ( - this.cachedCapacity.get(resource) || this.getDefaultCapacity(resource) - ); - } - - const totalLimit = this.getResourceLimit(resource); - const capacity = this.capacityCalculator.calculateDynamicCapacity( - resource, - totalLimit, - metrics, - ); - - this.cachedCapacity.set(resource, capacity); - this.lastCapacityUpdate.set(resource, Date.now()); - - return capacity; - } - - private getOrCreateActivityMetrics(resource: string): ActivityMetrics { - if (!this.activityMetrics.has(resource)) { - this.activityMetrics.set(resource, { - recentUserRequests: [], - recentBackgroundRequests: [], - userActivityTrend: 'none', - }); - } - return this.activityMetrics.get(resource)!; - } - - private async ensureActivityMetrics(resource: string): Promise { - if (this.activityMetrics.has(resource)) { - return; // Already loaded - } - - // Load recent activity from database to populate in-memory metrics - const now = Date.now(); - const windowStart = now - this.capacityCalculator.config.monitoringWindowMs; - - const recentRequests = this.sqlite - .prepare( - ` - SELECT timestamp, COALESCE(priority, 'background') as priority - FROM rate_limits - WHERE resource = ? AND timestamp >= ? - ORDER BY timestamp - `, - ) - .all(resource, windowStart) as Array<{ - timestamp: number; - priority: string; - }>; - - const metrics: ActivityMetrics = { - recentUserRequests: [], - recentBackgroundRequests: [], - userActivityTrend: 'none', - }; - - for (const request of recentRequests) { - if (request.priority === 'user') { - metrics.recentUserRequests.push(request.timestamp); - } else { - metrics.recentBackgroundRequests.push(request.timestamp); - } - } - - // Calculate trend based on loaded data - metrics.userActivityTrend = this.capacityCalculator.calculateActivityTrend( - metrics.recentUserRequests, - ); - - this.activityMetrics.set(resource, metrics); - } - - private async getCurrentUsage( - resource: string, - priority: RequestPriority, - ): Promise { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const now = Date.now(); - const windowStart = now - config.windowMs; - - await this.cleanupExpiredRequests(resource, windowStart); - - // Count current requests in window for this priority using raw SQL - const result = this.sqlite - .prepare( - ` - SELECT COUNT(*) as count - FROM rate_limits - WHERE resource = ? AND priority = ? AND timestamp >= ? - `, - ) - .get(resource, priority, windowStart) as { count: number }; - - return result.count || 0; - } - - private cleanupOldRequests(requests: Array): void { - const cutoff = - Date.now() - this.capacityCalculator.config.monitoringWindowMs; - while (requests.length > 0 && requests[0]! < cutoff) { - requests.shift(); - } - } - - private getResourceLimit(resource: string): number { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - return config.limit; - } - - private getDefaultCapacity(resource: string): DynamicCapacityResult { - const limit = this.getResourceLimit(resource); - return { - userReserved: Math.floor(limit * 0.3), - backgroundMax: Math.floor(limit * 0.7), - backgroundPaused: false, - reason: 'Default capacity allocation', - }; - } - - private async cleanupExpiredRequests( - resource: string, - windowStart: number, - ): Promise { - await this.db - .delete(rateLimitTable) - .where( - and( - eq(rateLimitTable.resource, resource), - lt(rateLimitTable.timestamp, windowStart), - ), - ); - } - - private initializeDatabase(): void { - // Create tables if they don't exist - this.db.run(sql` - CREATE TABLE IF NOT EXISTS rate_limits ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - resource TEXT NOT NULL, - timestamp INTEGER NOT NULL, - priority TEXT NOT NULL DEFAULT 'background' - ) - `); - - // Check if priority column exists, add it if not (for migration from older schema) - try { - this.db.run(sql` - ALTER TABLE rate_limits ADD COLUMN priority TEXT DEFAULT 'background' - `); - } catch { - // Column already exists, ignore error - } - - // Create index on resource for efficient lookups - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_rate_limit_resource ON rate_limits(resource) - `); - - // Create index on timestamp for efficient cleanup - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_rate_limit_timestamp ON rate_limits(timestamp) - `); - - // Create composite index for priority-based queries - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_rate_limit_resource_priority_timestamp - ON rate_limits(resource, priority, timestamp) - `); - } -} diff --git a/packages/sqlite-store/src/sqlite-cache-store.test.ts b/packages/sqlite-store/src/sqlite-cache-store.test.ts deleted file mode 100644 index 7e279d3..0000000 --- a/packages/sqlite-store/src/sqlite-cache-store.test.ts +++ /dev/null @@ -1,418 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { describe, it, expect, beforeEach, afterEach } from 'vitest'; -import { SQLiteCacheStore } from './sqlite-cache-store.js'; - -describe('SQLiteCacheStore', () => { - let store: SQLiteCacheStore; - const testDbPath = path.join(__dirname, 'test-cache.db'); - - beforeEach(() => { - // Clean up any existing test database - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - - store = new SQLiteCacheStore({ database: testDbPath }); - }); - - afterEach(() => { - if (store) { - store.destroy(); - } - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - }); - - describe('basic operations', () => { - it('should set and get values', async () => { - await store.set('key1', 'value1', 60); - const value = await store.get('key1'); - expect(value).toBe('value1'); - }); - - it('should return undefined for non-existent keys', async () => { - const value = await store.get('non-existent'); - expect(value).toBeUndefined(); - }); - - it('should overwrite existing values', async () => { - await store.set('key1', 'value1', 60); - await store.set('key1', 'value2', 60); - const value = await store.get('key1'); - expect(value).toBe('value2'); - }); - - it('should delete values', async () => { - await store.set('key1', 'value1', 60); - await store.delete('key1'); - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - - it('should handle deletion of non-existent keys', async () => { - await expect(store.delete('non-existent')).resolves.not.toThrow(); - }); - - it('should clear all values', async () => { - await store.set('key1', 'value1', 60); - await store.set('key2', 'value2', 60); - await store.clear(); - - const value1 = await store.get('key1'); - const value2 = await store.get('key2'); - - expect(value1).toBeUndefined(); - expect(value2).toBeUndefined(); - }); - }); - - describe('TTL functionality', () => { - it('should expire values after TTL', async () => { - await store.set('key1', 'value1', 0.05); // 50ms TTL - - // Should be available immediately - let value = await store.get('key1'); - expect(value).toBe('value1'); - - // Wait for expiration - await new Promise((resolve) => setTimeout(resolve, 100)); - - value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - - it('should not expire values before TTL', async () => { - await store.set('key1', 'value1', 10); // 10 seconds TTL - - // Should be available after a short delay - await new Promise((resolve) => setTimeout(resolve, 10)); - - const value = await store.get('key1'); - expect(value).toBe('value1'); - }); - - it('should handle zero TTL', async () => { - await store.set('key1', 'value1', 0); - - // Should be expired immediately - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - - it('should handle negative TTL', async () => { - await store.set('key1', 'value1', -1); - - // Should be expired immediately - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - }); - - describe('data types', () => { - it('should handle string values', async () => { - await store.set('key1', 'string value', 60); - const value = await store.get('key1'); - expect(value).toBe('string value'); - }); - - it('should handle number values', async () => { - await store.set('key1', 42, 60); - const value = await store.get('key1'); - expect(value).toBe(42); - }); - - it('should handle boolean values', async () => { - await store.set('key1', true, 60); - const value = await store.get('key1'); - expect(value).toBe(true); - }); - - it('should handle object values', async () => { - const obj = { id: 1, name: 'test', nested: { value: 'nested' } }; - await store.set('key1', obj, 60); - const value = await store.get('key1'); - expect(value).toEqual(obj); - }); - - it('should handle array values', async () => { - const arr = [1, 2, 3, { id: 4 }]; - await store.set('key1', arr, 60); - const value = await store.get('key1'); - expect(value).toEqual(arr); - }); - - it('should handle null values', async () => { - await store.set('key1', null, 60); - const value = await store.get('key1'); - expect(value).toBeNull(); - }); - - it('should handle undefined values', async () => { - await store.set('key1', undefined, 60); - const value = await store.get('key1'); - expect(value).toBeUndefined(); - }); - }); - - describe('persistence', () => { - it('should persist data across store instances', async () => { - await store.set('persistent', 'value', 60); - store.destroy(); - - // Create new store instance with same database - const newStore = new SQLiteCacheStore({ database: testDbPath }); - const value = await newStore.get('persistent'); - expect(value).toBe('value'); - - newStore.destroy(); - }); - - it('should handle database file creation', () => { - const newDbPath = path.join(__dirname, 'new-cache.db'); - - try { - expect(fs.existsSync(newDbPath)).toBe(false); - - const newStore = new SQLiteCacheStore({ database: newDbPath }); - expect(fs.existsSync(newDbPath)).toBe(true); - - newStore.destroy(); - } finally { - if (fs.existsSync(newDbPath)) { - fs.unlinkSync(newDbPath); - } - } - }); - }); - - describe('cleanup functionality', () => { - it('should automatically clean up expired items', async () => { - // Create store with very short cleanup interval - const cleanupStore = new SQLiteCacheStore({ - database: testDbPath, - cleanupIntervalMs: 10, - }); - - await cleanupStore.set('key1', 'value1', 0.001); // 1ms TTL - - // Wait for cleanup to run - await new Promise((resolve) => setTimeout(resolve, 50)); - - const value = await cleanupStore.get('key1'); - expect(value).toBeUndefined(); - - cleanupStore.destroy(); - }); - - it('should not clean up unexpired items', async () => { - // Create store with very short cleanup interval - const cleanupStore = new SQLiteCacheStore({ - database: testDbPath, - cleanupIntervalMs: 10, - }); - - await cleanupStore.set('key1', 'value1', 10); // 10 seconds TTL - - // Wait for cleanup to run - await new Promise((resolve) => setTimeout(resolve, 50)); - - const value = await cleanupStore.get('key1'); - expect(value).toBe('value1'); - - cleanupStore.destroy(); - }); - - it('should handle cleanup interval of 0 (disabled)', async () => { - const noCleanupStore = new SQLiteCacheStore({ - database: testDbPath, - cleanupIntervalMs: 0, - }); - - // Should work without automatic cleanup - await noCleanupStore.set('key1', 'value1', 60); - const value = await noCleanupStore.get('key1'); - expect(value).toBe('value1'); - - noCleanupStore.destroy(); - }); - }); - - describe('concurrent access', () => { - it('should handle many concurrent operations', async () => { - const promises: Array> = []; - - // Set 50 values concurrently - for (let i = 0; i < 50; i++) { - promises.push(store.set(`key${i}`, `value${i}`, 60)); - } - - await Promise.all(promises); - - // Get all values - const getPromises: Array> = []; - for (let i = 0; i < 50; i++) { - getPromises.push(store.get(`key${i}`)); - } - - const values = await Promise.all(getPromises); - - // Check all values are correct - for (let i = 0; i < 50; i++) { - expect(values[i]).toBe(`value${i}`); - } - }); - - it('should handle concurrent access from multiple store instances', async () => { - const store2 = new SQLiteCacheStore({ database: testDbPath }); - - try { - // Set values from both stores - await Promise.all([ - store.set('key1', 'from-store1', 60), - store2.set('key2', 'from-store2', 60), - ]); - - // Read from both stores - const value1FromStore2 = await store2.get('key1'); - const value2FromStore1 = await store.get('key2'); - - expect(value1FromStore2).toBe('from-store1'); - expect(value2FromStore1).toBe('from-store2'); - } finally { - store2.destroy(); - } - }); - }); - - describe('edge cases', () => { - it('should handle very large values', async () => { - const largeValue = 'x'.repeat(100000); // 100KB string - await store.set('large', largeValue, 60); - const value = await store.get('large'); - expect(value).toBe(largeValue); - }); - - it('should handle special characters in keys', async () => { - const specialKey = 'key-with-特殊字符-and-émojis-🚀'; - await store.set(specialKey, 'special value', 60); - const value = await store.get(specialKey); - expect(value).toBe('special value'); - }); - - it('should handle special characters in values', async () => { - const specialValue = - 'value-with-特殊字符-and-émojis-🚀-and-quotes-"test"-and-apostrophes-\'test\''; - await store.set('special', specialValue, 60); - const value = await store.get('special'); - expect(value).toBe(specialValue); - }); - - it('should handle JSON serialization errors gracefully', async () => { - // Create a circular reference - const circular: { name: string; self?: unknown } = { name: 'test' }; - circular.self = circular; // This creates the actual circular reference - - // Should handle serialization error gracefully - await expect(store.set('circular', circular, 60)).rejects.toThrow(); - }); - - it('should handle database errors gracefully', async () => { - // Close the database to simulate an error - store.destroy(); - - // Operations should fail gracefully - await expect(store.get('key')).rejects.toThrow(); - await expect(store.set('key', 'value', 60)).rejects.toThrow(); - await expect(store.delete('key')).rejects.toThrow(); - await expect(store.clear()).rejects.toThrow(); - }); - }); - - describe('destroy', () => { - it('should close database connection when destroyed', () => { - expect(() => store.destroy()).not.toThrow(); - }); - - it('should be safe to call destroy multiple times', () => { - expect(() => { - store.destroy(); - store.destroy(); - }).not.toThrow(); - }); - - it('should handle operations after destroy', async () => { - store.destroy(); - - // Should throw errors after destruction - await expect(store.get('key')).rejects.toThrow(); - await expect(store.set('key', 'value', 60)).rejects.toThrow(); - }); - }); - - describe('configuration', () => { - it('should use custom cleanup interval', () => { - const customStore = new SQLiteCacheStore({ - database: testDbPath, - cleanupIntervalMs: 5000, - }); - - // Should have created the store without throwing - expect(customStore).toBeDefined(); - - customStore.destroy(); - }); - - it('should handle in-memory database', async () => { - const memoryStore = new SQLiteCacheStore({ database: ':memory:' }); - - try { - await memoryStore.set('test', 'value', 60); - const value = await memoryStore.get('test'); - expect(value).toBe('value'); - } finally { - memoryStore.destroy(); - } - }); - }); - - describe('size guard (maxEntrySizeBytes)', () => { - it('should skip caching values that exceed maxEntrySizeBytes', async () => { - const smallLimitStore = new SQLiteCacheStore({ - database: testDbPath, - maxEntrySizeBytes: 100, // 100 bytes limit - }); - - try { - const largeValue = 'x'.repeat(200); // 200 bytes string - - await expect( - smallLimitStore.set('too-big', largeValue, 60), - ).resolves.not.toThrow(); - - const value = await smallLimitStore.get('too-big'); - expect(value).toBeUndefined(); - } finally { - smallLimitStore.destroy(); - } - }); - - it('should cache values that are within maxEntrySizeBytes', async () => { - const smallLimitStore = new SQLiteCacheStore({ - database: testDbPath, - maxEntrySizeBytes: 100, // 100 bytes limit - }); - - try { - const smallValue = 'x'.repeat(50); // 50 bytes string - - await smallLimitStore.set('fits', smallValue, 60); - const value = await smallLimitStore.get('fits'); - expect(value).toBe(smallValue); - } finally { - smallLimitStore.destroy(); - } - }); - }); -}); diff --git a/packages/sqlite-store/src/sqlite-cache-store.ts b/packages/sqlite-store/src/sqlite-cache-store.ts deleted file mode 100644 index 72cd5c1..0000000 --- a/packages/sqlite-store/src/sqlite-cache-store.ts +++ /dev/null @@ -1,263 +0,0 @@ -import type { CacheStore } from '@comic-vine/client'; -import Database from 'better-sqlite3'; -import { eq, lt, count, sql } from 'drizzle-orm'; -import { drizzle, BetterSQLite3Database } from 'drizzle-orm/better-sqlite3'; -import { cacheTable } from './schema.js'; - -export interface SQLiteCacheStoreOptions { - /** File path or existing `better-sqlite3` connection. Defaults to `':memory:'`. */ - database?: string | InstanceType; - cleanupIntervalMs?: number; - maxEntrySizeBytes?: number; -} - -export class SQLiteCacheStore implements CacheStore { - private db: BetterSQLite3Database; - private sqlite: InstanceType; - /** Indicates whether this store is responsible for managing (and therefore closing) the SQLite connection */ - private readonly isConnectionManaged: boolean = false; - private cleanupInterval?: NodeJS.Timeout; - private readonly cleanupIntervalMs: number; - /** - * Maximum allowed size (in bytes) for a single cache entry. If the serialized - * value exceeds this limit the entry will be **silently skipped** to avoid - * breaching SQLite's max length limits which could otherwise throw at write - * time. Defaults to `5 MiB`, which is well under SQLiteʼs compiled - * `SQLITE_MAX_LENGTH` (usually 1 GiB) yet large enough for typical Comic Vine - * responses. - */ - private readonly maxEntrySizeBytes: number; - private isDestroyed = false; - - constructor({ - /** File path or existing `better-sqlite3` connection. Defaults to `':memory:'`. */ - database = ':memory:', - /** Cleanup interval in milliseconds. Defaults to 1 minute. */ - cleanupIntervalMs = 60_000, - /** Maximum allowed size (in bytes) for a single cache entry. Defaults to 5 MiB. */ - maxEntrySizeBytes = 5 * 1024 * 1024, - }: SQLiteCacheStoreOptions = {}) { - // Support passing an existing `better-sqlite3` Database instance so that - // multiple stores can share the *same* file and connection. If a string - // path is provided we create the connection ourselves and therefore take - // ownership of it for later cleanup. - let sqliteInstance: InstanceType; - let isConnectionManaged = false; - - if (typeof database === 'string') { - sqliteInstance = new Database(database); - isConnectionManaged = true; - } else { - sqliteInstance = database; - } - - this.sqlite = sqliteInstance; - this.isConnectionManaged = isConnectionManaged; - this.db = drizzle(sqliteInstance); - this.cleanupIntervalMs = cleanupIntervalMs; - this.maxEntrySizeBytes = maxEntrySizeBytes; - - this.initializeDatabase(); - this.startCleanupInterval(); - } - - async get(hash: string): Promise { - if (this.isDestroyed) { - throw new Error('Cache store has been destroyed'); - } - - const result = await this.db - .select() - .from(cacheTable) - .where(eq(cacheTable.hash, hash)) - .limit(1); - - if (result.length === 0) { - return undefined; - } - - const item = result[0]; - if (!item) { - return undefined; - } - - const now = Date.now(); - - if (now >= item.expiresAt) { - await this.db.delete(cacheTable).where(eq(cacheTable.hash, hash)); - return undefined; - } - - try { - if (item.value === '__UNDEFINED__') { - return undefined; - } - return JSON.parse(item.value as string); - } catch { - // If deserialization fails, remove the corrupted item - await this.db.delete(cacheTable).where(eq(cacheTable.hash, hash)); - return undefined; - } - } - - async set(hash: string, value: T, ttlSeconds: number): Promise { - if (this.isDestroyed) { - throw new Error('Cache store has been destroyed'); - } - - const now = Date.now(); - const expiresAt = ttlSeconds <= 0 ? now : now + ttlSeconds * 1000; - - let serializedValue: string; - try { - if (value === undefined) { - serializedValue = '__UNDEFINED__'; - } else { - serializedValue = JSON.stringify(value); - } - } catch (error) { - throw new Error( - `Failed to serialize value: ${error instanceof Error ? error.message : String(error)}`, - ); - } - - // SIZE GUARD: Skip caching if the value is too large to avoid hitting - // SQLite length limits. We **silently** skip because callers shouldn't be - // penalised for large responses — they will simply be fetched again next - // time. - if (Buffer.byteLength(serializedValue, 'utf8') > this.maxEntrySizeBytes) { - return; - } - - await this.db - .insert(cacheTable) - .values({ - hash, - value: serializedValue, - expiresAt, - createdAt: now, - }) - .onConflictDoUpdate({ - target: cacheTable.hash, - set: { - value: serializedValue, - expiresAt, - createdAt: now, - }, - }); - } - - async delete(hash: string): Promise { - if (this.isDestroyed) { - throw new Error('Cache store has been destroyed'); - } - await this.db.delete(cacheTable).where(eq(cacheTable.hash, hash)); - } - - async clear(): Promise { - if (this.isDestroyed) { - throw new Error('Cache store has been destroyed'); - } - await this.db.delete(cacheTable); - } - - /** - * Get cache statistics - */ - async getStats(): Promise<{ - totalItems: number; - expiredItems: number; - databaseSizeKB: number; - }> { - const now = Date.now(); - - const totalResult = await this.db - .select({ count: count() }) - .from(cacheTable); - - const expiredResult = await this.db - .select({ count: count() }) - .from(cacheTable) - .where(lt(cacheTable.expiresAt, now)); - - // Get database size (approximate) - const pageCount = Number( - this.sqlite.pragma('page_count', { simple: true }), - ); - const pageSize = Number(this.sqlite.pragma('page_size', { simple: true })); - - // Fallback to 0 if parsing failed (NaN) - const safePageCount = Number.isFinite(pageCount) ? pageCount : 0; - const safePageSize = Number.isFinite(pageSize) ? pageSize : 0; - const databaseSizeKB = Math.round((safePageCount * safePageSize) / 1024); - - return { - databaseSizeKB, - expiredItems: expiredResult[0]?.count ?? 0, - totalItems: totalResult[0]?.count ?? 0, - }; - } - - /** - * Manually trigger cleanup of expired items - */ - async cleanup(): Promise { - const now = Date.now(); - await this.db.delete(cacheTable).where(lt(cacheTable.expiresAt, now)); - } - - /** - * Close the database connection - */ - async close(): Promise { - if (this.cleanupInterval) { - clearInterval(this.cleanupInterval); - this.cleanupInterval = undefined; - } - - this.isDestroyed = true; - - // Only close the underlying DB if **this** store manages it. - if (this.isConnectionManaged && typeof this.sqlite.close === 'function') { - this.sqlite.close(); - } - } - - /** - * Alias for close() to match test expectations - */ - destroy(): void { - this.close(); - } - - private initializeDatabase(): void { - // Create table if it doesn't exist - this.db.run(sql` - CREATE TABLE IF NOT EXISTS cache ( - hash TEXT PRIMARY KEY, - value BLOB NOT NULL, - expires_at INTEGER NOT NULL, - created_at INTEGER NOT NULL - ) - `); - - // Create index on expires_at for efficient cleanup - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_cache_expires_at ON cache(expires_at) - `); - } - - private startCleanupInterval(): void { - this.cleanupInterval = setInterval(async () => { - await this.cleanup(); - }, this.cleanupIntervalMs); - if (typeof this.cleanupInterval.unref === 'function') { - this.cleanupInterval.unref(); - } - } - - private async cleanupExpiredItems(): Promise { - const now = Date.now(); - await this.db.delete(cacheTable).where(lt(cacheTable.expiresAt, now)); - } -} diff --git a/packages/sqlite-store/src/sqlite-dedupe-store.test.ts b/packages/sqlite-store/src/sqlite-dedupe-store.test.ts deleted file mode 100644 index c0d5ee6..0000000 --- a/packages/sqlite-store/src/sqlite-dedupe-store.test.ts +++ /dev/null @@ -1,346 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { describe, it, expect, beforeEach, afterEach } from 'vitest'; -import { SQLiteDedupeStore } from './sqlite-dedupe-store.js'; - -describe('SQLiteDedupeStore', () => { - let store: SQLiteDedupeStore; - const testDbPath = path.join(__dirname, 'test-dedupe.db'); - - beforeEach(() => { - // Clean up any existing test database - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - - store = new SQLiteDedupeStore({ database: testDbPath }); - }); - - afterEach(() => { - if (store) { - store.destroy(); - } - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - }); - - describe('basic operations', () => { - it('should register new jobs', async () => { - const jobId = await store.register('test-hash'); - expect(jobId).toBeTruthy(); - expect(typeof jobId).toBe('string'); - }); - - it('should return undefined for non-existent jobs', async () => { - const result = await store.waitFor('non-existent-hash'); - expect(result).toBeUndefined(); - }); - - it('should complete jobs with values', async () => { - const hash = 'test-hash'; - await store.register(hash); - await store.complete(hash, 'test-value'); - - const result = await store.waitFor(hash); - expect(result).toBe('test-value'); - }); - - it('should handle job completion with complex objects', async () => { - const hash = 'test-hash'; - const value = { id: 1, name: 'test', nested: { data: 'value' } }; - - await store.register(hash); - await store.complete(hash, value); - - const result = await store.waitFor(hash); - expect(result).toEqual(value); - }); - - it('should handle job failure', async () => { - const hash = 'test-hash'; - const error = new Error('Test error'); - - await store.register(hash); - await store.fail(hash, error); - - // Failed jobs should not be available - const result = await store.waitFor(hash); - expect(result).toBeUndefined(); - }); - - it('should check if jobs are in progress', async () => { - const hash = 'test-hash'; - - let isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(false); - - await store.register(hash); - isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(true); - - await store.complete(hash, 'value'); - isInProgress = await store.isInProgress(hash); - expect(isInProgress).toBe(false); - }); - }); - - describe('deduplication behavior', () => { - it('should handle multiple jobs with different hashes', async () => { - const hash1 = 'hash1'; - const hash2 = 'hash2'; - const value1 = 'value1'; - const value2 = 'value2'; - - await store.register(hash1); - await store.register(hash2); - - await store.complete(hash1, value1); - await store.complete(hash2, value2); - - const result1 = await store.waitFor(hash1); - const result2 = await store.waitFor(hash2); - - expect(result1).toBe(value1); - expect(result2).toBe(value2); - }); - }); - - describe('persistence', () => { - it('should persist jobs across store instances', async () => { - const hash = 'persistent-hash'; - await store.register(hash); - await store.complete(hash, 'persistent-value'); - - store.destroy(); - - // Create new store instance with same database - const newStore = new SQLiteDedupeStore({ database: testDbPath }); - const result = await newStore.waitFor(hash); - expect(result).toBe('persistent-value'); - - newStore.destroy(); - }); - - it('should handle cross-process deduplication', async () => { - const hash = 'cross-process-hash'; - - // Store 1 registers the job - await store.register(hash); - - // Store 2 can see the job is in progress - const store2 = new SQLiteDedupeStore({ database: testDbPath }); - const isInProgress = await store2.isInProgress(hash); - expect(isInProgress).toBe(true); - - // Store 1 completes the job - await store.complete(hash, 'cross-process-value'); - - // Store 2 can get the result - const result = await store2.waitFor(hash); - expect(result).toBe('cross-process-value'); - - store2.destroy(); - }); - }); - - describe('timeout handling', () => { - it('should handle job timeouts', async () => { - const timeoutStore = new SQLiteDedupeStore({ - database: testDbPath, - timeoutMs: 10, - }); - const hash = 'test-hash'; - - await timeoutStore.register(hash); - - // Wait for timeout - await new Promise((resolve) => setTimeout(resolve, 50)); - - const isInProgress = await timeoutStore.isInProgress(hash); - expect(isInProgress).toBe(false); - - timeoutStore.destroy(); - }); - - it('should not timeout jobs that complete in time', async () => { - const timeoutStore = new SQLiteDedupeStore({ - database: testDbPath, - timeoutMs: 100, - }); - const hash = 'test-hash'; - - await timeoutStore.register(hash); - await timeoutStore.complete(hash, 'value'); - - // Wait less than timeout - await new Promise((resolve) => setTimeout(resolve, 50)); - - const result = await timeoutStore.waitFor(hash); - expect(result).toBe('value'); - - timeoutStore.destroy(); - }); - }); - - describe('cleanup functionality', () => { - it('should automatically clean up expired jobs', async () => { - const cleanupStore = new SQLiteDedupeStore({ - database: testDbPath, - timeoutMs: 50, - cleanupIntervalMs: 10, - }); - - const hash = 'cleanup-test'; - await cleanupStore.register(hash); - - // Wait for cleanup - await new Promise((resolve) => setTimeout(resolve, 100)); - - const isInProgress = await cleanupStore.isInProgress(hash); - expect(isInProgress).toBe(false); - - cleanupStore.destroy(); - }); - }); - - describe('edge cases', () => { - it('should handle completing non-existent jobs', async () => { - await expect( - store.complete('non-existent', 'value'), - ).resolves.not.toThrow(); - }); - - it('should handle failing non-existent jobs', async () => { - await expect( - store.fail('non-existent', new Error('test')), - ).resolves.not.toThrow(); - }); - - it('should handle double completion', async () => { - const hash = 'double-completion'; - await store.register(hash); - await store.complete(hash, 'value1'); - - // Second completion should not throw - await expect(store.complete(hash, 'value2')).resolves.not.toThrow(); - - const result = await store.waitFor(hash); - expect(result).toBe('value1'); // First value should be preserved - }); - - it('should handle special characters in hash keys', async () => { - const specialHash = 'hash-with-特殊字符-and-émojis-🚀'; - await store.register(specialHash); - await store.complete(specialHash, 'special value'); - - const result = await store.waitFor(specialHash); - expect(result).toBe('special value'); - }); - - it('should handle null and undefined values', async () => { - const hash1 = 'null-test'; - const hash2 = 'undefined-test'; - - await store.register(hash1); - await store.complete(hash1, null); - - await store.register(hash2); - await store.complete(hash2, undefined); - - const result1 = await store.waitFor(hash1); - const result2 = await store.waitFor(hash2); - - expect(result1).toBeUndefined(); - expect(result2).toBeUndefined(); - }); - }); - - describe('concurrent access', () => { - it('should handle many concurrent jobs', async () => { - const promises: Array> = []; - const hashes: Array = []; - - // Register many jobs concurrently - for (let i = 0; i < 20; i++) { - const hash = `concurrent-${i}`; - hashes.push(hash); - promises.push(store.register(hash)); - } - - await Promise.all(promises); - - // Complete all jobs - const completionPromises = hashes.map((hash, i) => - store.complete(hash, `value-${i}`), - ); - - await Promise.all(completionPromises); - - // Check all results - const results = await Promise.all( - hashes.map((hash) => store.waitFor(hash)), - ); - - for (let i = 0; i < 20; i++) { - expect(results[i]).toBe(`value-${i}`); - } - }); - }); - - describe('destroy', () => { - it('should close database connection when destroyed', () => { - expect(() => store.destroy()).not.toThrow(); - }); - - it('should be safe to call destroy multiple times', () => { - expect(() => { - store.destroy(); - store.destroy(); - }).not.toThrow(); - }); - - it('should handle operations after destroy', async () => { - store.destroy(); - - // Should throw errors after destruction - await expect(store.waitFor('test')).rejects.toThrow(); - await expect(store.register('test')).rejects.toThrow(); - }); - }); - - describe('configuration', () => { - it('should handle timeout of 0 (disabled)', async () => { - const noTimeoutStore = new SQLiteDedupeStore({ - database: testDbPath, - timeoutMs: 0, - }); - - const hash = 'no-timeout-test'; - await noTimeoutStore.register(hash); - - // Wait longer than normal timeout would be - await new Promise((resolve) => setTimeout(resolve, 50)); - - const isInProgress = await noTimeoutStore.isInProgress(hash); - expect(isInProgress).toBe(true); // Should still be in progress - - noTimeoutStore.destroy(); - }); - - it('should handle in-memory database', async () => { - const memoryStore = new SQLiteDedupeStore({ database: ':memory:' }); - - try { - const hash = 'memory-test'; - await memoryStore.register(hash); - await memoryStore.complete(hash, 'memory-value'); - - const result = await memoryStore.waitFor(hash); - expect(result).toBe('memory-value'); - } finally { - memoryStore.destroy(); - } - }); - }); -}); diff --git a/packages/sqlite-store/src/sqlite-dedupe-store.ts b/packages/sqlite-store/src/sqlite-dedupe-store.ts deleted file mode 100644 index e86c942..0000000 --- a/packages/sqlite-store/src/sqlite-dedupe-store.ts +++ /dev/null @@ -1,485 +0,0 @@ -import { randomUUID } from 'crypto'; -import type { DedupeStore } from '@comic-vine/client'; -import Database from 'better-sqlite3'; -import { eq, lt, count, sql, and } from 'drizzle-orm'; -import { drizzle, BetterSQLite3Database } from 'drizzle-orm/better-sqlite3'; -import { dedupeTable } from './schema.js'; - -export interface SQLiteDedupeStoreOptions { - database?: string | InstanceType; - jobTimeoutMs?: number; - timeoutMs?: number; - cleanupIntervalMs?: number; -} - -export class SQLiteDedupeStore implements DedupeStore { - private db: BetterSQLite3Database; - private sqlite: InstanceType; - /** Indicates whether this store manages (and should close) the SQLite connection */ - private readonly isConnectionManaged: boolean = false; - private jobPromises = new Map>(); - private jobResolvers = new Map< - string, - { - resolve: (value: T | undefined) => void; - reject: (reason: unknown) => void; - } - >(); - private readonly jobTimeoutMs: number; - private cleanupInterval?: NodeJS.Timeout; - private readonly cleanupIntervalMs: number; - private isDestroyed = false; - - constructor({ - /** File path or existing `better-sqlite3` Database instance. Defaults to `':memory:'`. */ - database = ':memory:', - /** Job timeout in milliseconds. Preferred over timeoutMs. */ - jobTimeoutMs, - /** Legacy alias for jobTimeoutMs. */ - timeoutMs, - /** Cleanup interval in milliseconds. Defaults to 1 minute. */ - cleanupIntervalMs = 60_000, - }: SQLiteDedupeStoreOptions = {}) { - // Support passing an existing `better-sqlite3` Database instance so that - // multiple stores can share the *same* file and connection. If a string - // path is provided we create the connection ourselves and therefore take - // ownership of it for later cleanup. - let sqliteInstance: InstanceType; - let isConnectionManaged = false; - - if (typeof database === 'string') { - sqliteInstance = new Database(database); - isConnectionManaged = true; - } else { - sqliteInstance = database; - } - - this.sqlite = sqliteInstance; - this.isConnectionManaged = isConnectionManaged; - this.db = drizzle(sqliteInstance); - this.jobTimeoutMs = timeoutMs ?? jobTimeoutMs ?? 300000; - this.cleanupIntervalMs = cleanupIntervalMs; - - this.initializeDatabase(); - this.startCleanupInterval(); - } - - private startCleanupInterval(): void { - if (this.cleanupIntervalMs > 0) { - this.cleanupInterval = setInterval(() => { - this.cleanupExpiredJobs().catch(() => { - // Ignore cleanup errors - }); - }, this.cleanupIntervalMs); - if (typeof this.cleanupInterval.unref === 'function') { - this.cleanupInterval.unref(); - } - } - } - - private async cleanupExpiredJobs(): Promise { - const noTimeoutConfigured = this.jobTimeoutMs <= 0; - if (noTimeoutConfigured) { - return; - } - - const now = Date.now(); - const expiredThreshold = now - this.jobTimeoutMs; - - // Delete expired pending jobs - await this.db - .delete(dedupeTable) - .where( - and( - eq(dedupeTable.status, 'pending'), - lt(dedupeTable.createdAt, expiredThreshold), - ), - ); - } - - async waitFor(hash: string): Promise { - if (this.isDestroyed) { - throw new Error('Dedupe store has been destroyed'); - } - - const existingPromise = this.jobPromises.get(hash); - if (existingPromise) { - return existingPromise; - } - - const result = await this.db - .select() - .from(dedupeTable) - .where(eq(dedupeTable.hash, hash)) - .limit(1); - - if (result.length === 0) { - return undefined; - } - - const job = result[0]; - if (!job) { - return undefined; - } - - // If job is already completed, return result immediately - if (job.status === 'completed') { - try { - if (job.result === '__UNDEFINED__' || job.result === '__NULL__') { - return undefined; - } else if (job.result) { - return JSON.parse(job.result as string); - } - return undefined; - } catch { - // If parse fails, return undefined instead of throwing - return undefined; - } - } - - if (job.status === 'failed') { - return undefined; - } - - // Job is pending - create promise for deduplication - const promise = new Promise((resolve, reject) => { - this.jobResolvers.set(hash, { resolve, reject }); - - if (this.jobTimeoutMs > 0) { - setTimeout(() => { - const resolver = this.jobResolvers.get(hash); - if (resolver) { - this.jobResolvers.delete(hash); - this.jobPromises.delete(hash); - - this.db - .update(dedupeTable) - .set({ - status: 'failed', - error: 'Job timed out', - updatedAt: Date.now(), - }) - .where(eq(dedupeTable.hash, hash)) - .then(() => { - resolve(undefined); // Resolve with undefined for timeout - }) - .catch(() => { - resolve(undefined); // Even if update fails, resolve with undefined - }); - } - }, this.jobTimeoutMs); - } - }); - - this.jobPromises.set(hash, promise); - return promise; - } - - async register(hash: string): Promise { - if (this.isDestroyed) { - throw new Error('Dedupe store has been destroyed'); - } - - const existingJob = await this.db - .select() - .from(dedupeTable) - .where(eq(dedupeTable.hash, hash)) - .limit(1); - - if (existingJob.length > 0) { - const job = existingJob[0]; - if (job && job.status === 'pending') { - return job.jobId; - } - } - - // Create new job - const jobId = randomUUID(); - const now = Date.now(); - - await this.db - .insert(dedupeTable) - .values({ - hash, - jobId, - status: 'pending', - createdAt: now, - updatedAt: now, - }) - .onConflictDoUpdate({ - target: dedupeTable.hash, - set: { - jobId, - status: 'pending', - updatedAt: now, - }, - }); - - return jobId; - } - - async complete(hash: string, value: T | undefined): Promise { - if (this.isDestroyed) { - throw new Error('Dedupe store has been destroyed'); - } - - // Handle different value types with proper serialization - let serializedResult: string; - if (value === undefined) { - serializedResult = '__UNDEFINED__'; - } else if (value === null) { - serializedResult = '__NULL__'; - } else { - try { - serializedResult = JSON.stringify(value); - } catch (error) { - throw new Error( - `Failed to serialize result: ${error instanceof Error ? error.message : String(error)}`, - ); - } - } - - const now = Date.now(); - - // Check if job already completed (prevent double completion) - const existingJob = await this.db - .select() - .from(dedupeTable) - .where(eq(dedupeTable.hash, hash)) - .limit(1); - - if (existingJob.length > 0 && existingJob[0]?.status === 'completed') { - // Job already completed, don't update again - return; - } - - await this.db - .update(dedupeTable) - .set({ - status: 'completed', - result: serializedResult, - updatedAt: now, - }) - .where(eq(dedupeTable.hash, hash)); - - // Resolve any waiting promises - const resolver = this.jobResolvers.get(hash); - if (resolver) { - resolver.resolve(value); - this.jobResolvers.delete(hash); - this.jobPromises.delete(hash); - } - } - - async fail(hash: string, error: Error): Promise { - if (this.isDestroyed) { - throw new Error('Dedupe store has been destroyed'); - } - - const now = Date.now(); - - await this.db - .update(dedupeTable) - .set({ - status: 'failed', - error: error.message, - updatedAt: now, - }) - .where(eq(dedupeTable.hash, hash)); - - // Reject any waiting promises - const resolver = this.jobResolvers.get(hash); - if (resolver) { - resolver.reject(error); - this.jobResolvers.delete(hash); - this.jobPromises.delete(hash); - } - } - - async isInProgress(hash: string): Promise { - if (this.isDestroyed) { - throw new Error('Dedupe store has been destroyed'); - } - - const result = await this.db - .select() - .from(dedupeTable) - .where(eq(dedupeTable.hash, hash)) - .limit(1); - - if (result.length === 0) { - return false; - } - - const job = result[0]; - if (!job) { - return false; - } - - const jobExpired = - this.jobTimeoutMs > 0 && Date.now() - job.createdAt >= this.jobTimeoutMs; - if (jobExpired) { - await this.db.delete(dedupeTable).where(eq(dedupeTable.hash, hash)); - return false; - } - - return job.status === 'pending'; - } - - async getResult(hash: string): Promise { - const result = await this.db - .select() - .from(dedupeTable) - .where(eq(dedupeTable.hash, hash)) - .limit(1); - - if (result.length === 0) { - return undefined; - } - - const job = result[0]; - if (!job) { - return undefined; - } - - const now = Date.now(); - - const isExpired = now - job.createdAt > this.jobTimeoutMs; - if (isExpired) { - await this.db.delete(dedupeTable).where(eq(dedupeTable.hash, hash)); - return undefined; - } - - if (job.status === 'completed') { - try { - if (job.result === '__UNDEFINED__') { - return undefined; - } else if (job.result === '__NULL__') { - return null as unknown as T; - } else if (job.result) { - return JSON.parse(job.result as string); - } - return undefined; - } catch { - return undefined; - } - } - - return undefined; - } - - /** - * Get statistics about dedupe jobs - */ - async getStats(): Promise<{ - totalJobs: number; - pendingJobs: number; - completedJobs: number; - failedJobs: number; - expiredJobs: number; - }> { - const now = Date.now(); - const expiredTime = now - this.jobTimeoutMs; - - const totalResult = await this.db - .select({ count: count() }) - .from(dedupeTable); - - const pendingResult = await this.db - .select({ count: count() }) - .from(dedupeTable) - .where(eq(dedupeTable.status, 'pending')); - - const completedResult = await this.db - .select({ count: count() }) - .from(dedupeTable) - .where(eq(dedupeTable.status, 'completed')); - - const failedResult = await this.db - .select({ count: count() }) - .from(dedupeTable) - .where(eq(dedupeTable.status, 'failed')); - - const expiredResult = await this.db - .select({ count: count() }) - .from(dedupeTable) - .where(lt(dedupeTable.createdAt, expiredTime)); - - return { - totalJobs: totalResult[0]?.count || 0, - pendingJobs: pendingResult[0]?.count || 0, - completedJobs: completedResult[0]?.count || 0, - failedJobs: failedResult[0]?.count || 0, - expiredJobs: expiredResult[0]?.count || 0, - }; - } - - /** - * Clean up expired jobs - */ - async cleanup(): Promise { - const now = Date.now(); - const expiredTime = now - this.jobTimeoutMs; - - await this.db - .delete(dedupeTable) - .where(lt(dedupeTable.createdAt, expiredTime)); - } - - /** - * Clear all jobs - */ - async clear(): Promise { - await this.db.delete(dedupeTable); - - this.jobPromises.clear(); - this.jobResolvers.clear(); - } - - /** - * Close the database connection - */ - async close(): Promise { - if (this.cleanupInterval) { - clearInterval(this.cleanupInterval); - this.cleanupInterval = undefined; - } - - this.jobPromises.clear(); - this.jobResolvers.clear(); - - this.isDestroyed = true; - - // Only close the underlying DB if **this** store created it. - if (this.isConnectionManaged && typeof this.sqlite.close === 'function') { - this.sqlite.close(); - } - } - - /** - * Alias for close() to match test expectations - */ - destroy(): void { - this.close(); - } - - private initializeDatabase(): void { - // Create tables if they don't exist - this.db.run(sql` - CREATE TABLE IF NOT EXISTS dedupe_jobs ( - hash TEXT PRIMARY KEY, - job_id TEXT NOT NULL, - status TEXT NOT NULL, - result BLOB, - error TEXT, - created_at INTEGER NOT NULL, - updated_at INTEGER NOT NULL - ) - `); - - // Create index on status for efficient queries - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_dedupe_status ON dedupe_jobs(status) - `); - } -} diff --git a/packages/sqlite-store/src/sqlite-rate-limit-store.test.ts b/packages/sqlite-store/src/sqlite-rate-limit-store.test.ts deleted file mode 100644 index eaf1520..0000000 --- a/packages/sqlite-store/src/sqlite-rate-limit-store.test.ts +++ /dev/null @@ -1,489 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import type { RateLimitConfig } from '@comic-vine/client'; -import { describe, it, expect, beforeEach, afterEach } from 'vitest'; -import { SQLiteRateLimitStore } from './sqlite-rate-limit-store.js'; - -describe('SQLiteRateLimitStore', () => { - let store: SQLiteRateLimitStore; - const testDbPath = path.join(__dirname, 'test-rate-limit.db'); - const defaultConfig: RateLimitConfig = { limit: 5, windowMs: 1000 }; - - beforeEach(() => { - // Clean up any existing test database - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - - store = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig, - }); - }); - - afterEach(() => { - if (store) { - store.destroy(); - } - if (fs.existsSync(testDbPath)) { - fs.unlinkSync(testDbPath); - } - }); - - describe('basic operations', () => { - it('should allow requests within limit', async () => { - const resource = 'test-resource'; - - for (let i = 0; i < defaultConfig.limit; i++) { - const canProceed = await store.canProceed(resource); - expect(canProceed).toBe(true); - await store.record(resource); - } - }); - - it('should block requests over limit', async () => { - const resource = 'test-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - const canProceed = await store.canProceed(resource); - expect(canProceed).toBe(false); - }); - - it('should provide status information', async () => { - const resource = 'test-resource'; - - await store.record(resource); - await store.record(resource); - - const status = await store.getStatus(resource); - expect(status.remaining).toBe(defaultConfig.limit - 2); - expect(status.limit).toBe(defaultConfig.limit); - expect(status.resetTime).toBeInstanceOf(Date); - }); - - it('should calculate wait time correctly', async () => { - const resource = 'test-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - const waitTime = await store.getWaitTime(resource); - expect(waitTime).toBeGreaterThan(0); - expect(waitTime).toBeLessThanOrEqual(defaultConfig.windowMs); - }); - - it('should reset rate limits', async () => { - const resource = 'test-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - expect(await store.canProceed(resource)).toBe(false); - - await store.reset(resource); - - expect(await store.canProceed(resource)).toBe(true); - }); - }); - - describe('sliding window behavior', () => { - it('should allow requests again after window expires', async () => { - const shortWindowStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 2, windowMs: 50 }, - }); - const resource = 'test-resource'; - - try { - // Fill up the limit - await shortWindowStore.record(resource); - await shortWindowStore.record(resource); - - expect(await shortWindowStore.canProceed(resource)).toBe(false); - - // Wait for window to expire - await new Promise((resolve) => setTimeout(resolve, 100)); - - expect(await shortWindowStore.canProceed(resource)).toBe(true); - } finally { - shortWindowStore.destroy(); - } - }); - - it('should maintain sliding window correctly', async () => { - const shortWindowStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 3, windowMs: 100 }, - }); - const resource = 'test-resource'; - - try { - // Make 2 requests - await shortWindowStore.record(resource); - await shortWindowStore.record(resource); - - // Wait half the window time - await new Promise((resolve) => setTimeout(resolve, 50)); - - // Make 1 more request (should be allowed) - expect(await shortWindowStore.canProceed(resource)).toBe(true); - await shortWindowStore.record(resource); - - // Should be at limit now - expect(await shortWindowStore.canProceed(resource)).toBe(false); - - // Wait for first requests to expire - await new Promise((resolve) => setTimeout(resolve, 60)); - - // Should be able to make 2 more requests - expect(await shortWindowStore.canProceed(resource)).toBe(true); - await shortWindowStore.record(resource); - expect(await shortWindowStore.canProceed(resource)).toBe(true); - } finally { - shortWindowStore.destroy(); - } - }); - }); - - describe('resource-specific configurations', () => { - it('should use default config for unspecified resources', async () => { - const resource = 'unknown-resource'; - - const status = await store.getStatus(resource); - expect(status.limit).toBe(defaultConfig.limit); - }); - - it('should use resource-specific configs', async () => { - const resourceConfigs = new Map([ - ['special-resource', { limit: 10, windowMs: 2000 }], - ['limited-resource', { limit: 2, windowMs: 500 }], - ]); - - const configStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig, - resourceConfigs, - }); - - try { - // Test special resource - let status = await configStore.getStatus('special-resource'); - expect(status.limit).toBe(10); - - // Test limited resource - status = await configStore.getStatus('limited-resource'); - expect(status.limit).toBe(2); - - // Test default resource - status = await configStore.getStatus('default-resource'); - expect(status.limit).toBe(defaultConfig.limit); - } finally { - configStore.destroy(); - } - }); - - it('should update resource configs dynamically', async () => { - const resource = 'dynamic-resource'; - - // Start with default config - let status = await store.getStatus(resource); - expect(status.limit).toBe(defaultConfig.limit); - - // Update config - store.setResourceConfig(resource, { limit: 20, windowMs: 5000 }); - - // Should use new config - status = await store.getStatus(resource); - expect(status.limit).toBe(20); - }); - }); - - describe('persistence', () => { - it('should persist rate limit data across store instances', async () => { - const resource = 'persistent-resource'; - - // Fill up the limit - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - expect(await store.canProceed(resource)).toBe(false); - - store.destroy(); - - // Create new store instance with same database - const newStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig, - }); - - // Should still be rate limited - expect(await newStore.canProceed(resource)).toBe(false); - - newStore.destroy(); - }); - - it('should handle cross-process rate limiting', async () => { - const resource = 'cross-process-resource'; - - // Fill up the limit in store 1 - for (let i = 0; i < defaultConfig.limit; i++) { - await store.record(resource); - } - - // Create store 2 with same database - const store2 = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig, - }); - const canProceed = await store2.canProceed(resource); - expect(canProceed).toBe(false); - - store2.destroy(); - }); - }); - - describe('cleanup functionality', () => { - it('should clean up expired entries when cleanup is called', async () => { - const cleanupStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 5, windowMs: 50 }, - }); - - try { - await cleanupStore.record('test'); - - // Wait for expiration - await new Promise((resolve) => setTimeout(resolve, 100)); - - // Manually trigger cleanup - await cleanupStore.cleanup(); - - const stats = await cleanupStore.getStats(); - expect(stats.totalRequests).toBe(0); - } finally { - cleanupStore.destroy(); - } - }); - - it('should not clean up active entries', async () => { - const cleanupStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 5, windowMs: 5000 }, - }); - - try { - await cleanupStore.record('test'); - - // Wait for cleanup to run - await new Promise((resolve) => setTimeout(resolve, 50)); - - const stats = await cleanupStore.getStats(); - expect(stats.totalRequests).toBe(1); - } finally { - cleanupStore.destroy(); - } - }); - }); - - describe('edge cases', () => { - it('should handle zero limit', async () => { - const zeroLimitStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 0, windowMs: 1000 }, - }); - - try { - const canProceed = await zeroLimitStore.canProceed('test'); - expect(canProceed).toBe(false); - - const waitTime = await zeroLimitStore.getWaitTime('test'); - expect(waitTime).toBeGreaterThan(0); - } finally { - zeroLimitStore.destroy(); - } - }); - - it('should handle very small window', async () => { - const smallWindowStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 5, windowMs: 1 }, - }); - - try { - await smallWindowStore.record('test'); - - // Wait for window to expire - await new Promise((resolve) => setTimeout(resolve, 10)); - - expect(await smallWindowStore.canProceed('test')).toBe(true); - } finally { - smallWindowStore.destroy(); - } - }); - - it('should handle very large window', async () => { - const largeWindowStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig: { limit: 1, windowMs: 86400000 }, // 1 day - }); - - try { - await largeWindowStore.record('test'); - expect(await largeWindowStore.canProceed('test')).toBe(false); - - const waitTime = await largeWindowStore.getWaitTime('test'); - expect(waitTime).toBeGreaterThan(86400000 - 1000); // Almost a full day - } finally { - largeWindowStore.destroy(); - } - }); - - it('should handle many concurrent requests', async () => { - const promises: Array> = []; - const resource = 'concurrent-test'; - - // Make many concurrent requests - for (let i = 0; i < 20; i++) { - promises.push(store.record(resource)); - } - - await Promise.all(promises); - - const status = await store.getStatus(resource); - expect(status.remaining).toBe(Math.max(0, defaultConfig.limit - 20)); - }); - - it('should handle special characters in resource names', async () => { - const specialResource = 'resource-with-特殊字符-and-émojis-🚀'; - - expect(await store.canProceed(specialResource)).toBe(true); - await store.record(specialResource); - - const status = await store.getStatus(specialResource); - expect(status.remaining).toBe(defaultConfig.limit - 1); - }); - - it('should handle reset of non-existent resource', async () => { - await expect(store.reset('non-existent')).resolves.not.toThrow(); - }); - - it('should handle status of non-existent resource', async () => { - const status = await store.getStatus('non-existent'); - expect(status.remaining).toBe(defaultConfig.limit); - expect(status.limit).toBe(defaultConfig.limit); - }); - }); - - describe('concurrent access', () => { - it('should handle concurrent access from multiple store instances', async () => { - const resource = 'concurrent-resource'; - - const store2 = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig, - }); - - try { - // Make requests from both stores - await store.record(resource); - await store2.record(resource); - - const status1 = await store.getStatus(resource); - const status2 = await store2.getStatus(resource); - - expect(status1.remaining).toBe(status2.remaining); - expect(status1.remaining).toBe(defaultConfig.limit - 2); - } finally { - store2.destroy(); - } - }); - }); - - describe('destroy', () => { - it('should close database connection when destroyed', () => { - expect(() => store.destroy()).not.toThrow(); - }); - - it('should be safe to call destroy multiple times', () => { - expect(() => { - store.destroy(); - store.destroy(); - }).not.toThrow(); - }); - - it('should handle operations after destroy', async () => { - store.destroy(); - - // Should throw errors after destruction - await expect(store.canProceed('test')).rejects.toThrow(); - await expect(store.record('test')).rejects.toThrow(); - await expect(store.getStatus('test')).rejects.toThrow(); - }); - }); - - describe('configuration', () => { - it('should handle cleanup interval of 0 (disabled)', async () => { - const noCleanupStore = new SQLiteRateLimitStore({ - database: testDbPath, - defaultConfig, - }); - - try { - await noCleanupStore.record('test'); - const status = await noCleanupStore.getStatus('test'); - expect(status.remaining).toBe(defaultConfig.limit - 1); - } finally { - noCleanupStore.destroy(); - } - }); - - it('should handle in-memory database', async () => { - const memoryStore = new SQLiteRateLimitStore({ - database: ':memory:', - defaultConfig, - }); - - try { - await memoryStore.record('test'); - const status = await memoryStore.getStatus('test'); - expect(status.remaining).toBe(defaultConfig.limit - 1); - } finally { - memoryStore.destroy(); - } - }); - }); - - describe('statistics', () => { - it('should provide accurate statistics', async () => { - await store.record('resource1'); - await store.record('resource1'); - await store.record('resource2'); - - const stats = await store.getStats(); - expect(stats.uniqueResources).toBe(2); - expect(stats.totalRequests).toBe(3); - }); - - it('should update statistics correctly', async () => { - let stats = await store.getStats(); - expect(stats.totalRequests).toBe(0); - - await store.record('test'); - stats = await store.getStats(); - expect(stats.totalRequests).toBe(1); - - await store.reset('test'); - stats = await store.getStats(); - expect(stats.totalRequests).toBe(0); - }); - }); -}); diff --git a/packages/sqlite-store/src/sqlite-rate-limit-store.ts b/packages/sqlite-store/src/sqlite-rate-limit-store.ts deleted file mode 100644 index 64506bb..0000000 --- a/packages/sqlite-store/src/sqlite-rate-limit-store.ts +++ /dev/null @@ -1,336 +0,0 @@ -import { - type RateLimitConfig, - type RateLimitStore, - DEFAULT_RATE_LIMIT, -} from '@comic-vine/client'; -import Database from 'better-sqlite3'; -import { and, eq, gte, count, sql, lt } from 'drizzle-orm'; -import { drizzle, BetterSQLite3Database } from 'drizzle-orm/better-sqlite3'; -import { rateLimitTable } from './schema.js'; - -export interface SQLiteRateLimitStoreOptions { - /** File path or existing `better-sqlite3` Database instance. Defaults to `':memory:'`. */ - database?: string | InstanceType; - /** Global/default rate-limit config applied when a resource-specific override is not provided. */ - defaultConfig?: RateLimitConfig; - /** Optional per-resource overrides. */ - resourceConfigs?: Map; -} - -export class SQLiteRateLimitStore implements RateLimitStore { - private db: BetterSQLite3Database; - private sqlite: InstanceType; - /** Indicates whether this store manages (and should close) the SQLite connection */ - private readonly isConnectionManaged: boolean = false; - private defaultConfig: RateLimitConfig; - private resourceConfigs = new Map(); - private isDestroyed = false; - - constructor({ - /** File path or existing `better-sqlite3` Database instance. Defaults to `':memory:'`. */ - database = ':memory:', - /** Global/default rate-limit config applied when a resource-specific override is not provided. */ - defaultConfig = DEFAULT_RATE_LIMIT, - /** Optional per-resource overrides. */ - resourceConfigs = new Map(), - }: SQLiteRateLimitStoreOptions = {}) { - // Allow callers to pass a pre-existing connection so that all stores can - // operate on the same underlying DB file. - let sqliteInstance: InstanceType; - let isConnectionManaged = false; - - if (typeof database === 'string') { - sqliteInstance = new Database(database); - isConnectionManaged = true; - } else { - sqliteInstance = database; - } - - this.sqlite = sqliteInstance; - this.isConnectionManaged = isConnectionManaged; - this.db = drizzle(sqliteInstance); - this.defaultConfig = defaultConfig; - this.resourceConfigs = resourceConfigs; - - this.initializeDatabase(); - } - - async canProceed(resource: string): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const now = Date.now(); - const windowStart = now - config.windowMs; - - await this.cleanupExpiredRequests(resource, windowStart); - - // Count current requests in window - const result = await this.db - .select({ count: count() }) - .from(rateLimitTable) - .where( - and( - eq(rateLimitTable.resource, resource), - gte(rateLimitTable.timestamp, windowStart), - ), - ); - - const currentCount = (result[0] as { count?: number })?.count || 0; - return currentCount < config.limit; - } - - async record(resource: string): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const now = Date.now(); - await this.db.insert(rateLimitTable).values({ - resource, - timestamp: now, - }); - } - - async getStatus(resource: string): Promise<{ - remaining: number; - resetTime: Date; - limit: number; - }> { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const now = Date.now(); - const windowStart = now - config.windowMs; - - await this.cleanupExpiredRequests(resource, windowStart); - - // Count current requests in the window - const result = await this.db - .select({ count: count() }) - .from(rateLimitTable) - .where( - and( - eq(rateLimitTable.resource, resource), - gte(rateLimitTable.timestamp, windowStart), - ), - ); - - const currentRequests = (result[0]?.count as number) || 0; - const remaining = Math.max(0, config.limit - currentRequests); - - const resetTime = new Date(now + config.windowMs); - - return { - remaining, - resetTime, - limit: config.limit, - }; - } - - async reset(resource: string): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - await this.db - .delete(rateLimitTable) - .where(eq(rateLimitTable.resource, resource)); - } - - async getWaitTime(resource: string): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - - if (config.limit === 0) { - return config.windowMs; - } - - const now = Date.now(); - const windowStart = now - config.windowMs; - - await this.cleanupExpiredRequests(resource, windowStart); - - // Count current requests in the window - const countResult = await this.db - .select({ count: count() }) - .from(rateLimitTable) - .where( - and( - eq(rateLimitTable.resource, resource), - gte(rateLimitTable.timestamp, windowStart), - ), - ); - - const currentRequests = (countResult[0]?.count as number) || 0; - - if (currentRequests < config.limit) { - return 0; - } - - const oldestResult = await this.db - .select({ timestamp: rateLimitTable.timestamp }) - .from(rateLimitTable) - .where( - and( - eq(rateLimitTable.resource, resource), - gte(rateLimitTable.timestamp, windowStart), - ), - ) - .orderBy(rateLimitTable.timestamp) - .limit(1); - - if (oldestResult.length === 0) { - return 0; - } - - const oldestTimestamp = oldestResult[0]?.timestamp; - if (oldestTimestamp === undefined) { - return 0; - } - - const timeUntilOldestExpires = oldestTimestamp + config.windowMs - now; - - return Math.max(0, timeUntilOldestExpires); - } - - /** - * Set rate limit configuration for a specific resource - */ - setResourceConfig(resource: string, config: RateLimitConfig): void { - this.resourceConfigs.set(resource, config); - } - - /** - * Get rate limit configuration for a resource - */ - getResourceConfig(resource: string): RateLimitConfig { - return this.resourceConfigs.get(resource) || this.defaultConfig; - } - - /** - * Get statistics for all resources - */ - async getStats(): Promise<{ - totalRequests: number; - uniqueResources: number; - rateLimitedResources: Array; - }> { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - - const totalResult = await this.db - .select({ count: count() }) - .from(rateLimitTable); - - const resourcesResult = await this.db - .select({ resource: rateLimitTable.resource }) - .from(rateLimitTable) - .groupBy(rateLimitTable.resource); - - const uniqueResources = resourcesResult.length; - const rateLimitedResources: Array = []; - - for (const { resource } of resourcesResult) { - const canProceed = await this.canProceed(resource); - if (!canProceed) { - rateLimitedResources.push(resource); - } - } - - return { - totalRequests: (totalResult[0]?.count as number) || 0, - uniqueResources, - rateLimitedResources, - }; - } - - /** - * Clean up all rate limit data - */ - async clear(): Promise { - if (this.isDestroyed) { - throw new Error('Rate limit store has been destroyed'); - } - await this.db.delete(rateLimitTable); - } - - /** - * Clean up expired requests for all resources - */ - async cleanup(): Promise { - const now = Date.now(); - - // Find all unique resources - const resources = await this.db - .select({ resource: rateLimitTable.resource }) - .from(rateLimitTable) - .groupBy(rateLimitTable.resource); - - for (const { resource } of resources) { - const config = this.resourceConfigs.get(resource) || this.defaultConfig; - const windowStart = now - config.windowMs; - await this.cleanupExpiredRequests(resource, windowStart); - } - } - - /** - * Close the database connection - */ - async close(): Promise { - this.isDestroyed = true; - - // Close only if this instance established the connection. - if (this.isConnectionManaged && typeof this.sqlite.close === 'function') { - this.sqlite.close(); - } - } - - /** - * Alias for close() to match test expectations - */ - destroy(): void { - this.close(); - } - - private async cleanupExpiredRequests( - resource: string, - windowStart: number, - ): Promise { - await this.db - .delete(rateLimitTable) - .where( - and( - eq(rateLimitTable.resource, resource), - lt(rateLimitTable.timestamp, windowStart), - ), - ); - } - - private initializeDatabase(): void { - // Create tables if they don't exist - this.db.run(sql` - CREATE TABLE IF NOT EXISTS rate_limits ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - resource TEXT NOT NULL, - timestamp INTEGER NOT NULL - ) - `); - - // Create index on resource for efficient lookups - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_rate_limit_resource ON rate_limits(resource) - `); - - // Create index on timestamp for efficient cleanup - this.db.run(sql` - CREATE INDEX IF NOT EXISTS idx_rate_limit_timestamp ON rate_limits(timestamp) - `); - } -} diff --git a/packages/sqlite-store/tsconfig.json b/packages/sqlite-store/tsconfig.json deleted file mode 100644 index 9536a0f..0000000 --- a/packages/sqlite-store/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "../../tsconfig.base.json" -} diff --git a/packages/sqlite-store/tsup.config.ts b/packages/sqlite-store/tsup.config.ts deleted file mode 100644 index 9a536e4..0000000 --- a/packages/sqlite-store/tsup.config.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { defineConfig } from 'tsup'; -import { sharedTsupConfig } from '@repo/tsup-config'; - -export default defineConfig({ - ...sharedTsupConfig, - // Add package-specific overrides here if needed -}); diff --git a/packages/sqlite-store/vitest.config.ts b/packages/sqlite-store/vitest.config.ts deleted file mode 100644 index ddcbd82..0000000 --- a/packages/sqlite-store/vitest.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from 'vitest/config'; -import { sharedVitestConfig } from '@repo/vitest-config'; - -export default defineConfig({ - ...sharedVitestConfig, - test: { - ...sharedVitestConfig.test, - // Add package-specific overrides here if needed - }, -}); diff --git a/packages/tsup-config/package.json b/packages/tsup-config/package.json deleted file mode 100644 index 2b7bfe6..0000000 --- a/packages/tsup-config/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "@repo/tsup-config", - "version": "0.0.1", - "private": true, - "type": "module", - "main": "dist/index.js", - "types": "dist/index.d.ts", - "scripts": { - "build": "tsc", - "dev": "tsc --watch", - "clean": "rimraf dist" - }, - "dependencies": { - "tsup": "8.5.0" - }, - "devDependencies": { - "typescript": "5.8.3", - "rimraf": "6.0.1" - }, - "files": [ - "dist/**" - ] -} diff --git a/packages/tsup-config/src/index.ts b/packages/tsup-config/src/index.ts deleted file mode 100644 index ab69964..0000000 --- a/packages/tsup-config/src/index.ts +++ /dev/null @@ -1,15 +0,0 @@ -export const sharedTsupConfig = { - entry: ['src/index.ts'], - format: ['cjs', 'esm'] as const, - dts: true, - splitting: false, - sourcemap: true, - clean: true, - outDir: 'lib', - treeshake: true, - minify: false, - target: 'es2015' as const, - tsconfig: './tsconfig.json', - cjsInterop: true, - skipNodeModulesBundle: true, -}; diff --git a/packages/tsup-config/tsconfig.json b/packages/tsup-config/tsconfig.json deleted file mode 100644 index 30894d5..0000000 --- a/packages/tsup-config/tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "dist", - "rootDir": "src" - }, - "include": ["src"], - "exclude": ["dist", "node_modules"] -} diff --git a/packages/vitest-config/package.json b/packages/vitest-config/package.json deleted file mode 100644 index b06ce4c..0000000 --- a/packages/vitest-config/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "@repo/vitest-config", - "version": "0.0.1", - "private": true, - "type": "module", - "main": "dist/index.js", - "types": "dist/index.d.ts", - "scripts": { - "build": "tsc", - "dev": "tsc --watch", - "clean": "rimraf dist" - }, - "dependencies": { - "vitest": "3.2.4" - }, - "devDependencies": { - "typescript": "5.8.3", - "rimraf": "6.0.1" - }, - "files": [ - "dist/**" - ] -} diff --git a/packages/vitest-config/src/index.ts b/packages/vitest-config/src/index.ts deleted file mode 100644 index 3e9a1b9..0000000 --- a/packages/vitest-config/src/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -export const sharedVitestConfig = { - test: { - globals: true, - silent: true, - // Add any other shared test configuration here - }, -}; diff --git a/packages/vitest-config/tsconfig.json b/packages/vitest-config/tsconfig.json deleted file mode 100644 index 30894d5..0000000 --- a/packages/vitest-config/tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "dist", - "rootDir": "src" - }, - "include": ["src"], - "exclude": ["dist", "node_modules"] -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3404f1e..c3189de 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,274 +4,127 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false -overrides: - typescript: 5.8.3 - importers: .: - devDependencies: - '@changesets/cli': - specifier: ^2.27.1 - version: 2.29.5 - '@types/node': - specifier: '20' - version: 20.4.7 - commitizen: - specifier: 4.3.1 - version: 4.3.1 - husky: - specifier: 9.1.7 - version: 9.1.7 - prettier: - specifier: 3.6.2 - version: 3.6.2 - rimraf: - specifier: 6.0.1 - version: 6.0.1 - turbo: - specifier: ^2.0.0 - version: 2.5.4 - typescript: - specifier: 5.8.3 - version: 5.8.3 - - packages/client: dependencies: - axios: - specifier: 1.10.0 - version: 1.10.0 + '@http-client-toolkit/core': + specifier: 4.0.0 + version: 4.0.0 zod: specifier: 3.25.71 version: 3.25.71 devDependencies: - '@repo/eslint-config': - specifier: workspace:* - version: link:../eslint-config - '@repo/tsup-config': - specifier: workspace:* - version: link:../tsup-config - '@repo/vitest-config': - specifier: workspace:* - version: link:../vitest-config - '@types/node': - specifier: '20' - version: 20.4.7 - nock: - specifier: 14.0.5 - version: 14.0.5 - tsup: - specifier: 8.5.0 - version: 8.5.0(postcss@8.5.6)(tsx@4.20.3)(typescript@5.8.3)(yaml@2.8.0) - typescript: - specifier: 5.8.3 - version: 5.8.3 - vitest: - specifier: ^3.2.4 - version: 3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) - - packages/eslint-config: - devDependencies: - eslint: - specifier: '9' - version: 9.30.1 - eslint-config-prettier: - specifier: 10.1.5 - version: 10.1.5(eslint@9.30.1) - eslint-import-resolver-node: - specifier: 0.3.9 - version: 0.3.9 - eslint-import-resolver-typescript: - specifier: 4.4.4 - version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.30.1) - eslint-plugin-import: - specifier: 2.32.0 - version: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.30.1) - eslint-plugin-prettier: - specifier: 5.5.1 - version: 5.5.1(eslint-config-prettier@10.1.5(eslint@9.30.1))(eslint@9.30.1)(prettier@3.6.2) - globals: - specifier: 16.3.0 - version: 16.3.0 - prettier: - specifier: 3.6.2 - version: 3.6.2 - typescript-eslint: - specifier: '8' - version: 8.35.1(eslint@9.30.1)(typescript@5.8.3) - - packages/in-memory-store: - dependencies: - '@comic-vine/client': - specifier: workspace:* - version: link:../client - fast-safe-stringify: - specifier: ^2.1.1 - version: 2.1.1 - zod: - specifier: ^3.24.1 - version: 3.25.71 - devDependencies: - '@repo/eslint-config': - specifier: workspace:* - version: link:../eslint-config - '@repo/tsup-config': - specifier: workspace:* - version: link:../tsup-config - '@repo/vitest-config': - specifier: workspace:* - version: link:../vitest-config + '@changesets/cli': + specifier: ^2.29.8 + version: 2.29.8(@types/node@20.19.33) + '@eslint/js': + specifier: ^9.0.0 + version: 9.39.2 + '@http-client-toolkit/store-memory': + specifier: 4.0.0 + version: 4.0.0 + '@size-limit/file': + specifier: ^11.0.0 + version: 11.2.0(size-limit@11.2.0) '@types/node': specifier: '20' - version: 20.4.7 + version: 20.19.33 + '@types/pluralize': + specifier: ^0.0.33 + version: 0.0.33 + change-case: + specifier: ^5.0.0 + version: 5.4.4 + cheerio: + specifier: ^1.0.0 + version: 1.2.0 + esbuild: + specifier: ^0.25.0 + version: 0.25.12 eslint: - specifier: '9' - version: 9.30.1 + specifier: ^9.0.0 + version: 9.39.2(jiti@2.6.1) eslint-config-prettier: - specifier: 10.1.5 - version: 10.1.5(eslint@9.30.1) + specifier: ^10.1.5 + version: 10.1.8(eslint@9.39.2(jiti@2.6.1)) eslint-import-resolver-node: - specifier: 0.3.9 + specifier: ^0.3.9 version: 0.3.9 eslint-import-resolver-typescript: - specifier: 4.4.4 - version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.30.1) + specifier: ^4.4.4 + version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)) eslint-plugin-import: - specifier: 2.32.0 - version: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.30.1) + specifier: ^2.32.0 + version: 2.32.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1)) eslint-plugin-prettier: - specifier: 5.5.1 - version: 5.5.1(eslint-config-prettier@10.1.5(eslint@9.30.1))(eslint@9.30.1)(prettier@3.6.2) + specifier: ^5.5.1 + version: 5.5.5(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(prettier@3.6.2) globals: - specifier: 16.3.0 - version: 16.3.0 + specifier: ^16.3.0 + version: 16.5.0 + husky: + specifier: 9.1.7 + version: 9.1.7 + nock: + specifier: 14.0.5 + version: 14.0.5 + pluralize: + specifier: ^8.0.0 + version: 8.0.0 prettier: specifier: 3.6.2 version: 3.6.2 rimraf: specifier: 6.0.1 version: 6.0.1 + size-limit: + specifier: ^11.0.0 + version: 11.2.0 + tsd: + specifier: ^0.31.0 + version: 0.31.2 tsup: specifier: 8.5.0 - version: 8.5.0(postcss@8.5.6)(tsx@4.20.3)(typescript@5.8.3)(yaml@2.8.0) + version: 8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.8.3)(yaml@2.8.2) tsx: - specifier: 4.20.3 - version: 4.20.3 + specifier: ^4.0.0 + version: 4.21.0 typescript: specifier: 5.8.3 version: 5.8.3 typescript-eslint: - specifier: '8' - version: 8.35.1(eslint@9.30.1)(typescript@5.8.3) - vitest: - specifier: 3.2.4 - version: 3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) - - packages/sqlite-store: - dependencies: - '@comic-vine/client': - specifier: workspace:* - version: link:../client - better-sqlite3: - specifier: ^12.2.0 - version: 12.2.0 - drizzle-orm: - specifier: ^0.33.0 - version: 0.33.0(@types/better-sqlite3@7.6.13)(better-sqlite3@12.2.0) - zod: - specifier: ^3.23.8 - version: 3.25.71 - devDependencies: - '@repo/eslint-config': - specifier: workspace:* - version: link:../eslint-config - '@repo/tsup-config': - specifier: workspace:* - version: link:../tsup-config - '@repo/vitest-config': - specifier: workspace:* - version: link:../vitest-config - '@types/better-sqlite3': - specifier: ^7.6.13 - version: 7.6.13 - '@types/node': - specifier: '20' - version: 20.4.7 - tsup: - specifier: 8.5.0 - version: 8.5.0(postcss@8.5.6)(tsx@4.20.3)(typescript@5.8.3)(yaml@2.8.0) - typescript: - specifier: 5.8.3 - version: 5.8.3 + specifier: ^8.0.0 + version: 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) vitest: - specifier: 3.2.4 - version: 3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) - - packages/tsup-config: - dependencies: - tsup: - specifier: 8.5.0 - version: 8.5.0(postcss@8.5.6)(tsx@4.20.3)(typescript@5.8.3)(yaml@2.8.0) - devDependencies: - rimraf: - specifier: 6.0.1 - version: 6.0.1 - typescript: - specifier: 5.8.3 - version: 5.8.3 - - packages/vitest-config: - dependencies: - vitest: - specifier: 3.2.4 - version: 3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) - devDependencies: - rimraf: - specifier: 6.0.1 - version: 6.0.1 - typescript: - specifier: 5.8.3 - version: 5.8.3 + specifier: ^3.2.4 + version: 3.2.4(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) packages: - '@aashutoshrathi/word-wrap@1.2.6': - resolution: - { - integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, - } - engines: { node: '>=0.10.0' } - - '@babel/code-frame@7.22.13': - resolution: - { - integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, - } - engines: { node: '>=6.9.0' } - - '@babel/helper-validator-identifier@7.22.15': + '@babel/code-frame@7.29.0': resolution: { - integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==, + integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==, } engines: { node: '>=6.9.0' } - '@babel/highlight@7.22.13': + '@babel/helper-validator-identifier@7.28.5': resolution: { - integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==, + integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==, } engines: { node: '>=6.9.0' } - '@babel/runtime@7.27.6': + '@babel/runtime@7.28.6': resolution: { - integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==, + integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==, } engines: { node: '>=6.9.0' } - '@changesets/apply-release-plan@7.0.12': + '@changesets/apply-release-plan@7.0.14': resolution: { - integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==, + integrity: sha512-ddBvf9PHdy2YY0OUiEl3TV78mH9sckndJR14QAt87KLEbIov81XO0q0QAmvooBxXlqRRP8I9B7XOzZwQG7JkWA==, } '@changesets/assemble-release-plan@6.0.9': @@ -286,17 +139,17 @@ packages: integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==, } - '@changesets/cli@2.29.5': + '@changesets/cli@2.29.8': resolution: { - integrity: sha512-0j0cPq3fgxt2dPdFsg4XvO+6L66RC0pZybT9F4dG5TBrLA3jA/1pNkdTXH9IBBVHkgsKrNKenI3n1mPyPlIydg==, + integrity: sha512-1weuGZpP63YWUYjay/E84qqwcnt5yJMM0tep10Up7Q5cS/DGe2IZ0Uj3HNMxGhCINZuR7aO9WBMdKnPit5ZDPA==, } hasBin: true - '@changesets/config@3.1.1': + '@changesets/config@3.1.2': resolution: { - integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==, + integrity: sha512-CYiRhA4bWKemdYi/uwImjPxqWNpqGPNbEBdX1BdONALFIDK7MCUj6FPkzD+z9gJcvDFUQJn9aDVf4UG7OT6Kog==, } '@changesets/errors@0.2.0': @@ -311,10 +164,10 @@ packages: integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==, } - '@changesets/get-release-plan@4.0.13': + '@changesets/get-release-plan@4.0.14': resolution: { - integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==, + integrity: sha512-yjZMHpUHgl4Xl5gRlolVuxDkm4HgSJqT93Ri1Uz8kGrQb+5iJ8dkXJ20M2j/Y4iV5QzS2c5SeTxVSKX+2eMI0g==, } '@changesets/get-version-range-type@0.4.0': @@ -335,10 +188,10 @@ packages: integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==, } - '@changesets/parse@0.4.1': + '@changesets/parse@0.4.2': resolution: { - integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==, + integrity: sha512-Uo5MC5mfg4OM0jU3up66fmSn6/NE9INK+8/Vn/7sMVcdWg46zfbvvUSjD9EMonVqPi9fbrJH9SXHn48Tr1f2yA==, } '@changesets/pre@2.0.2': @@ -347,10 +200,10 @@ packages: integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==, } - '@changesets/read@0.6.5': + '@changesets/read@0.6.6': resolution: { - integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==, + integrity: sha512-P5QaN9hJSQQKJShzzpBT13FzOSPyHbqdoIBUd2DJdgvnECCyO6LmAOWSV+O8se2TaZJVwSXjL+v9yhb+a9JeJg==, } '@changesets/should-skip-package@0.1.2': @@ -377,371 +230,570 @@ packages: integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==, } - '@commitlint/config-validator@17.6.7': + '@emnapi/core@1.8.1': resolution: { - integrity: sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ==, + integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==, } - engines: { node: '>=v14' } - '@commitlint/execute-rule@17.4.0': + '@emnapi/runtime@1.8.1': resolution: { - integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==, + integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==, } - engines: { node: '>=v14' } - '@commitlint/load@17.7.1': + '@emnapi/wasi-threads@1.1.0': resolution: { - integrity: sha512-S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ==, + integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==, } - engines: { node: '>=v14' } - '@commitlint/resolve-extends@17.6.7': + '@esbuild/aix-ppc64@0.25.12': resolution: { - integrity: sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg==, + integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==, } - engines: { node: '>=v14' } + engines: { node: '>=18' } + cpu: [ppc64] + os: [aix] - '@commitlint/types@17.4.4': + '@esbuild/aix-ppc64@0.27.3': resolution: { - integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==, + integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==, } - engines: { node: '>=v14' } + engines: { node: '>=18' } + cpu: [ppc64] + os: [aix] - '@cspotcode/source-map-support@0.8.1': + '@esbuild/android-arm64@0.25.12': resolution: { - integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, + integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==, } - engines: { node: '>=12' } + engines: { node: '>=18' } + cpu: [arm64] + os: [android] - '@emnapi/core@1.4.3': + '@esbuild/android-arm64@0.27.3': resolution: { - integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==, + integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==, } + engines: { node: '>=18' } + cpu: [arm64] + os: [android] - '@emnapi/runtime@1.4.3': + '@esbuild/android-arm@0.25.12': resolution: { - integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==, + integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==, } + engines: { node: '>=18' } + cpu: [arm] + os: [android] - '@emnapi/wasi-threads@1.0.2': + '@esbuild/android-arm@0.27.3': resolution: { - integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==, + integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==, } + engines: { node: '>=18' } + cpu: [arm] + os: [android] - '@esbuild/aix-ppc64@0.25.5': + '@esbuild/android-x64@0.25.12': resolution: { - integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==, + integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==, } engines: { node: '>=18' } - cpu: [ppc64] - os: [aix] + cpu: [x64] + os: [android] - '@esbuild/android-arm64@0.25.5': + '@esbuild/android-x64@0.27.3': resolution: { - integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==, + integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==, } engines: { node: '>=18' } - cpu: [arm64] + cpu: [x64] os: [android] - '@esbuild/android-arm@0.25.5': + '@esbuild/darwin-arm64@0.25.12': resolution: { - integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==, + integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==, } engines: { node: '>=18' } - cpu: [arm] - os: [android] + cpu: [arm64] + os: [darwin] - '@esbuild/android-x64@0.25.5': + '@esbuild/darwin-arm64@0.27.3': resolution: { - integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==, + integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==, } engines: { node: '>=18' } - cpu: [x64] - os: [android] + cpu: [arm64] + os: [darwin] - '@esbuild/darwin-arm64@0.25.5': + '@esbuild/darwin-x64@0.25.12': resolution: { - integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==, + integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==, } engines: { node: '>=18' } - cpu: [arm64] + cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.25.5': + '@esbuild/darwin-x64@0.27.3': resolution: { - integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==, + integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==, } engines: { node: '>=18' } cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.25.5': + '@esbuild/freebsd-arm64@0.25.12': resolution: { - integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==, + integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==, } engines: { node: '>=18' } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.5': + '@esbuild/freebsd-arm64@0.27.3': resolution: { - integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==, + integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.12': + resolution: + { + integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.27.3': + resolution: + { + integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==, } engines: { node: '>=18' } cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.25.5': + '@esbuild/linux-arm64@0.25.12': resolution: { - integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==, + integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==, } engines: { node: '>=18' } cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.25.5': + '@esbuild/linux-arm64@0.27.3': + resolution: + { + integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.12': + resolution: + { + integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.27.3': resolution: { - integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==, + integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==, } engines: { node: '>=18' } cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.25.5': + '@esbuild/linux-ia32@0.25.12': + resolution: + { + integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.27.3': resolution: { - integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==, + integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==, } engines: { node: '>=18' } cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.25.5': + '@esbuild/linux-loong64@0.25.12': resolution: { - integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==, + integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==, } engines: { node: '>=18' } cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.25.5': + '@esbuild/linux-loong64@0.27.3': + resolution: + { + integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==, + } + engines: { node: '>=18' } + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.12': + resolution: + { + integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==, + } + engines: { node: '>=18' } + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.27.3': resolution: { - integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==, + integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==, } engines: { node: '>=18' } cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.25.5': + '@esbuild/linux-ppc64@0.25.12': + resolution: + { + integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.27.3': resolution: { - integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==, + integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==, } engines: { node: '>=18' } cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.25.5': + '@esbuild/linux-riscv64@0.25.12': + resolution: + { + integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==, + } + engines: { node: '>=18' } + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.27.3': resolution: { - integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==, + integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==, } engines: { node: '>=18' } cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.25.5': + '@esbuild/linux-s390x@0.25.12': + resolution: + { + integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==, + } + engines: { node: '>=18' } + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.27.3': resolution: { - integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==, + integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==, } engines: { node: '>=18' } cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.25.5': + '@esbuild/linux-x64@0.25.12': + resolution: + { + integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.27.3': resolution: { - integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==, + integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==, } engines: { node: '>=18' } cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.5': + '@esbuild/netbsd-arm64@0.25.12': + resolution: + { + integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-arm64@0.27.3': resolution: { - integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==, + integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==, } engines: { node: '>=18' } cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.5': + '@esbuild/netbsd-x64@0.25.12': + resolution: + { + integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.3': resolution: { - integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==, + integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==, } engines: { node: '>=18' } cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.5': + '@esbuild/openbsd-arm64@0.25.12': + resolution: + { + integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-arm64@0.27.3': resolution: { - integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==, + integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==, } engines: { node: '>=18' } cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.5': + '@esbuild/openbsd-x64@0.25.12': resolution: { - integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==, + integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==, } engines: { node: '>=18' } cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.25.5': + '@esbuild/openbsd-x64@0.27.3': resolution: { - integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==, + integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.12': + resolution: + { + integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openharmony] + + '@esbuild/openharmony-arm64@0.27.3': + resolution: + { + integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: + { + integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.27.3': + resolution: + { + integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==, } engines: { node: '>=18' } cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.25.5': + '@esbuild/win32-arm64@0.25.12': + resolution: + { + integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.27.3': resolution: { - integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==, + integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==, } engines: { node: '>=18' } cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.25.5': + '@esbuild/win32-ia32@0.25.12': + resolution: + { + integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.27.3': resolution: { - integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==, + integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==, } engines: { node: '>=18' } cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.25.5': + '@esbuild/win32-x64@0.25.12': resolution: { - integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==, + integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==, } engines: { node: '>=18' } cpu: [x64] os: [win32] - '@eslint-community/eslint-utils@4.4.0': + '@esbuild/win32-x64@0.27.3': resolution: { - integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, + integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + engines: { node: '>=18' } + cpu: [x64] + os: [win32] - '@eslint-community/eslint-utils@4.7.0': + '@eslint-community/eslint-utils@4.9.1': resolution: { - integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==, + integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.1': + '@eslint-community/regexpp@4.12.2': resolution: { - integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==, + integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==, } engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } - '@eslint/config-array@0.21.0': + '@eslint/config-array@0.21.1': resolution: { - integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==, + integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/config-helpers@0.3.0': + '@eslint/config-helpers@0.4.2': resolution: { - integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==, + integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/core@0.14.0': + '@eslint/core@0.17.0': resolution: { - integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==, + integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/core@0.15.1': + '@eslint/eslintrc@3.3.3': resolution: { - integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==, + integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/eslintrc@3.3.1': + '@eslint/js@9.39.2': resolution: { - integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==, + integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/js@9.30.1': + '@eslint/object-schema@2.1.7': resolution: { - integrity: sha512-zXhuECFlyep42KZUhWjfvsmXGX39W8K8LFb8AWXM9gSV9dQB+MrJGLKvW6Zw0Ggnbpw0VHTtrhFXYe3Gym18jg==, + integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/object-schema@2.1.6': + '@eslint/plugin-kit@0.4.1': resolution: { - integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==, + integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@eslint/plugin-kit@0.3.3': + '@http-client-toolkit/core@4.0.0': resolution: { - integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==, + integrity: sha512-7H8Dqkefi/0RLL4NYWVRZoOpzw0IFk3yiZ6/zVb8KbiWQeTyXcVYh4syEZ7dWjWKDU3ppDrPUmBi5rJf9Y/3XQ==, } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: '>= 20.0.0' } + + '@http-client-toolkit/store-memory@4.0.0': + resolution: + { + integrity: sha512-zlj7+A9tO3El5dV8qYN0roE/Ze+V9M9pCzT76xVEB0ETEpjsc/tCvT3BPT30E5XGo3ZNJzj9BrJ4vynOgLB9mw==, + } + engines: { node: '>= 20.0.0' } '@humanfs/core@0.19.1': resolution: @@ -750,10 +802,10 @@ packages: } engines: { node: '>=18.18.0' } - '@humanfs/node@0.16.6': + '@humanfs/node@0.16.7': resolution: { - integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==, + integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==, } engines: { node: '>=18.18.0' } @@ -764,13 +816,6 @@ packages: } engines: { node: '>=12.22' } - '@humanwhocodes/retry@0.3.1': - resolution: - { - integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==, - } - engines: { node: '>=18.18' } - '@humanwhocodes/retry@0.4.3': resolution: { @@ -778,56 +823,55 @@ packages: } engines: { node: '>=18.18' } - '@isaacs/balanced-match@4.0.1': + '@inquirer/external-editor@1.0.3': resolution: { - integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==, + integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==, } - engines: { node: 20 || >=22 } + engines: { node: '>=18' } + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - '@isaacs/brace-expansion@5.0.0': + '@isaacs/cliui@9.0.0': resolution: { - integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==, + integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==, } - engines: { node: 20 || >=22 } + engines: { node: '>=18' } - '@isaacs/cliui@8.0.2': + '@jest/schemas@29.6.3': resolution: { - integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, } - engines: { node: '>=12' } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - '@jridgewell/gen-mapping@0.3.12': + '@jridgewell/gen-mapping@0.3.13': resolution: { - integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==, + integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==, } - '@jridgewell/resolve-uri@3.1.1': + '@jridgewell/resolve-uri@3.1.2': resolution: { - integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, } engines: { node: '>=6.0.0' } - '@jridgewell/sourcemap-codec@1.5.4': + '@jridgewell/sourcemap-codec@1.5.5': resolution: { - integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==, + integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, } - '@jridgewell/trace-mapping@0.3.29': + '@jridgewell/trace-mapping@0.3.31': resolution: { - integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==, - } - - '@jridgewell/trace-mapping@0.3.9': - resolution: - { - integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, + integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==, } '@manypkg/find-root@1.1.0': @@ -849,10 +893,10 @@ packages: } engines: { node: '>=18' } - '@napi-rs/wasm-runtime@0.2.11': + '@napi-rs/wasm-runtime@0.2.12': resolution: { - integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==, + integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==, } '@nodelib/fs.scandir@2.1.5': @@ -894,232 +938,263 @@ packages: integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==, } - '@pkgjs/parseargs@0.11.0': - resolution: - { - integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, - } - engines: { node: '>=14' } - - '@pkgr/core@0.2.7': + '@pkgr/core@0.2.9': resolution: { - integrity: sha512-YLT9Zo3oNPJoBjBc4q8G2mjU4tqIbf5CEOORbUUr48dCD9q3umJ3IPlVqOqDakPfd2HuwccBaqlGhN4Gmr5OWg==, + integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==, } engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } - '@rollup/rollup-android-arm-eabi@4.44.2': + '@rollup/rollup-android-arm-eabi@4.57.1': resolution: { - integrity: sha512-g0dF8P1e2QYPOj1gu7s/3LVP6kze9A7m6x0BZ9iTdXK8N5c2V7cpBKHV3/9A4Zd8xxavdhK0t4PnqjkqVmUc9Q==, + integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==, } cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.44.2': + '@rollup/rollup-android-arm64@4.57.1': resolution: { - integrity: sha512-Yt5MKrOosSbSaAK5Y4J+vSiID57sOvpBNBR6K7xAaQvk3MkcNVV0f9fE20T+41WYN8hDn6SGFlFrKudtx4EoxA==, + integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==, } cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.44.2': + '@rollup/rollup-darwin-arm64@4.57.1': resolution: { - integrity: sha512-EsnFot9ZieM35YNA26nhbLTJBHD0jTwWpPwmRVDzjylQT6gkar+zenfb8mHxWpRrbn+WytRRjE0WKsfaxBkVUA==, + integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==, } cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.44.2': + '@rollup/rollup-darwin-x64@4.57.1': resolution: { - integrity: sha512-dv/t1t1RkCvJdWWxQ2lWOO+b7cMsVw5YFaS04oHpZRWehI1h0fV1gF4wgGCTyQHHjJDfbNpwOi6PXEafRBBezw==, + integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==, } cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.44.2': + '@rollup/rollup-freebsd-arm64@4.57.1': resolution: { - integrity: sha512-W4tt4BLorKND4qeHElxDoim0+BsprFTwb+vriVQnFFtT/P6v/xO5I99xvYnVzKWrK6j7Hb0yp3x7V5LUbaeOMg==, + integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==, } cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.44.2': + '@rollup/rollup-freebsd-x64@4.57.1': resolution: { - integrity: sha512-tdT1PHopokkuBVyHjvYehnIe20fxibxFCEhQP/96MDSOcyjM/shlTkZZLOufV3qO6/FQOSiJTBebhVc12JyPTA==, + integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==, } cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.44.2': + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': resolution: { - integrity: sha512-+xmiDGGaSfIIOXMzkhJ++Oa0Gwvl9oXUeIiwarsdRXSe27HUIvjbSIpPxvnNsRebsNdUo7uAiQVgBD1hVriwSQ==, + integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==, } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.44.2': + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + resolution: + { + integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==, + } + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + resolution: + { + integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==, + } + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.57.1': resolution: { - integrity: sha512-bDHvhzOfORk3wt8yxIra8N4k/N0MnKInCW5OGZaeDYa/hMrdPaJzo7CSkjKZqX4JFUWjUGm88lI6QJLCM7lDrA==, + integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==, } - cpu: [arm] + cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.44.2': + '@rollup/rollup-linux-loong64-gnu@4.57.1': resolution: { - integrity: sha512-NMsDEsDiYghTbeZWEGnNi4F0hSbGnsuOG+VnNvxkKg0IGDvFh7UVpM/14mnMwxRxUf9AdAVJgHPvKXf6FpMB7A==, + integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==, } - cpu: [arm64] + cpu: [loong64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.44.2': + '@rollup/rollup-linux-loong64-musl@4.57.1': resolution: { - integrity: sha512-lb5bxXnxXglVq+7imxykIp5xMq+idehfl+wOgiiix0191av84OqbjUED+PRC5OA8eFJYj5xAGcpAZ0pF2MnW+A==, + integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==, } - cpu: [arm64] + cpu: [loong64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.44.2': + '@rollup/rollup-linux-ppc64-gnu@4.57.1': resolution: { - integrity: sha512-Yl5Rdpf9pIc4GW1PmkUGHdMtbx0fBLE1//SxDmuf3X0dUC57+zMepow2LK0V21661cjXdTn8hO2tXDdAWAqE5g==, + integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==, } - cpu: [loong64] + cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.44.2': + '@rollup/rollup-linux-ppc64-musl@4.57.1': resolution: { - integrity: sha512-03vUDH+w55s680YYryyr78jsO1RWU9ocRMaeV2vMniJJW/6HhoTBwyyiiTPVHNWLnhsnwcQ0oH3S9JSBEKuyqw==, + integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==, } cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.44.2': + '@rollup/rollup-linux-riscv64-gnu@4.57.1': resolution: { - integrity: sha512-iYtAqBg5eEMG4dEfVlkqo05xMOk6y/JXIToRca2bAWuqjrJYJlx/I7+Z+4hSrsWU8GdJDFPL4ktV3dy4yBSrzg==, + integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==, } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.44.2': + '@rollup/rollup-linux-riscv64-musl@4.57.1': resolution: { - integrity: sha512-e6vEbgaaqz2yEHqtkPXa28fFuBGmUJ0N2dOJK8YUfijejInt9gfCSA7YDdJ4nYlv67JfP3+PSWFX4IVw/xRIPg==, + integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==, } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.44.2': + '@rollup/rollup-linux-s390x-gnu@4.57.1': resolution: { - integrity: sha512-evFOtkmVdY3udE+0QKrV5wBx7bKI0iHz5yEVx5WqDJkxp9YQefy4Mpx3RajIVcM6o7jxTvVd/qpC1IXUhGc1Mw==, + integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==, } cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.44.2': + '@rollup/rollup-linux-x64-gnu@4.57.1': resolution: { - integrity: sha512-/bXb0bEsWMyEkIsUL2Yt5nFB5naLAwyOWMEviQfQY1x3l5WsLKgvZf66TM7UTfED6erckUVUJQ/jJ1FSpm3pRQ==, + integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==, } cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.44.2': + '@rollup/rollup-linux-x64-musl@4.57.1': resolution: { - integrity: sha512-3D3OB1vSSBXmkGEZR27uiMRNiwN08/RVAcBKwhUYPaiZ8bcvdeEwWPvbnXvvXHY+A/7xluzcN+kaiOFNiOZwWg==, + integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==, } cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.44.2': + '@rollup/rollup-openbsd-x64@4.57.1': + resolution: + { + integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==, + } + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.57.1': + resolution: + { + integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==, + } + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.57.1': resolution: { - integrity: sha512-VfU0fsMK+rwdK8mwODqYeM2hDrF2WiHaSmCBrS7gColkQft95/8tphyzv2EupVxn3iE0FI78wzffoULH1G+dkw==, + integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==, } cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.44.2': + '@rollup/rollup-win32-ia32-msvc@4.57.1': resolution: { - integrity: sha512-+qMUrkbUurpE6DVRjiJCNGZBGo9xM4Y0FXU5cjgudWqIBWbcLkjE3XprJUsOFgC6xjBClwVa9k6O3A7K3vxb5Q==, + integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==, } cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.44.2': + '@rollup/rollup-win32-x64-gnu@4.57.1': resolution: { - integrity: sha512-3+QZROYfJ25PDcxFF66UEk8jGWigHJeecZILvkPkyQN7oc5BvFo4YEXFkOs154j3FTMp9mn9Ky8RCOwastduEA==, + integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==, } cpu: [x64] os: [win32] - '@rtsao/scc@1.1.0': + '@rollup/rollup-win32-x64-msvc@4.57.1': resolution: { - integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==, + integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==, } + cpu: [x64] + os: [win32] - '@tsconfig/node10@1.0.9': + '@rtsao/scc@1.1.0': resolution: { - integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, + integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==, } - '@tsconfig/node12@1.0.11': + '@sinclair/typebox@0.27.10': resolution: { - integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, + integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==, } - '@tsconfig/node14@1.0.3': + '@size-limit/file@11.2.0': resolution: { - integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, + integrity: sha512-OZHE3putEkQ/fgzz3Tp/0hSmfVo3wyTpOJSRNm6AmcwX4Nm9YtTfbQQ/hZRwbBFR23S7x2Sd9EbqYzngKwbRoA==, } + engines: { node: ^18.0.0 || >=20.0.0 } + peerDependencies: + size-limit: 11.2.0 - '@tsconfig/node16@1.0.4': + '@tsd/typescript@5.4.5': resolution: { - integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, + integrity: sha512-saiCxzHRhUrRxQV2JhH580aQUZiKQUXI38FcAcikcfOomAil4G4lxT0RfrrKywoAYP/rqAdYXYmNRLppcd+hQQ==, } + engines: { node: '>=14.17' } - '@tybys/wasm-util@0.9.0': + '@tybys/wasm-util@0.10.1': resolution: { - integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==, + integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==, } - '@types/better-sqlite3@7.6.13': + '@types/chai@5.2.3': resolution: { - integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==, + integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==, } - '@types/chai@5.2.2': + '@types/deep-eql@4.0.2': resolution: { - integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==, + integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==, } - '@types/deep-eql@4.0.2': + '@types/eslint@7.29.0': resolution: { - integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==, + integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==, } '@types/estree@1.0.8': @@ -1140,255 +1215,273 @@ packages: integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, } + '@types/minimist@1.2.5': + resolution: + { + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, + } + '@types/node@12.20.55': resolution: { integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } - '@types/node@20.4.7': + '@types/node@20.19.33': + resolution: + { + integrity: sha512-Rs1bVAIdBs5gbTIKza/tgpMuG1k3U/UMJLWecIMxNdJFDMzcM5LOiLVRYh3PilWEYDIeUDv7bpiHPLPsbydGcw==, + } + + '@types/normalize-package-data@2.4.4': resolution: { - integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==, + integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, } - '@typescript-eslint/eslint-plugin@8.35.1': + '@types/pluralize@0.0.33': resolution: { - integrity: sha512-9XNTlo7P7RJxbVeICaIIIEipqxLKguyh+3UbXuT2XQuFp6d8VOeDEGuz5IiX0dgZo8CiI6aOFLg4e8cF71SFVg==, + integrity: sha512-JOqsl+ZoCpP4e8TDke9W79FDcSgPAR0l6pixx2JHkhnRjvShyYiAYw2LVsnA7K08Y6DeOnaU6ujmENO4os/cYg==, + } + + '@typescript-eslint/eslint-plugin@8.56.0': + resolution: + { + integrity: sha512-lRyPDLzNCuae71A3t9NEINBiTn7swyOhvUj3MyUOxb8x6g6vPEFoOU+ZRmGMusNC3X3YMhqMIX7i8ShqhT74Pw==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - '@typescript-eslint/parser': ^8.35.1 - eslint: ^8.57.0 || ^9.0.0 - typescript: 5.8.3 + '@typescript-eslint/parser': ^8.56.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.35.1': + '@typescript-eslint/parser@8.56.0': resolution: { - integrity: sha512-3MyiDfrfLeK06bi/g9DqJxP5pV74LNv4rFTyvGDmT3x2p1yp1lOd+qYZfiRPIOf/oON+WRZR5wxxuF85qOar+w==, + integrity: sha512-IgSWvLobTDOjnaxAfDTIHaECbkNlAlKv2j5SjpB2v7QHKv1FIfjwMy8FsDbVfDX/KjmCmYICcw7uGaXLhtsLNg==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: 5.8.3 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.35.1': + '@typescript-eslint/project-service@8.56.0': resolution: { - integrity: sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q==, + integrity: sha512-M3rnyL1vIQOMeWxTWIW096/TtVP+8W3p/XnaFflhmcFp+U4zlxUxWj4XwNs6HbDeTtN4yun0GNTTDBw/SvufKg==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - typescript: 5.8.3 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.35.1': + '@typescript-eslint/scope-manager@8.56.0': resolution: { - integrity: sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg==, + integrity: sha512-7UiO/XwMHquH+ZzfVCfUNkIXlp/yQjjnlYUyYz7pfvlK3/EyyN6BK+emDmGNyQLBtLGaYrTAI6KOw8tFucWL2w==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@typescript-eslint/tsconfig-utils@8.35.1': + '@typescript-eslint/tsconfig-utils@8.56.0': resolution: { - integrity: sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ==, + integrity: sha512-bSJoIIt4o3lKXD3xmDh9chZcjCz5Lk8xS7Rxn+6l5/pKrDpkCwtQNQQwZ2qRPk7TkUYhrq3WPIHXOXlbXP0itg==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - typescript: 5.8.3 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.35.1': + '@typescript-eslint/type-utils@8.56.0': resolution: { - integrity: sha512-HOrUBlfVRz5W2LIKpXzZoy6VTZzMu2n8q9C2V/cFngIC5U1nStJgv0tMV4sZPzdf4wQm9/ToWUFPMN9Vq9VJQQ==, + integrity: sha512-qX2L3HWOU2nuDs6GzglBeuFXviDODreS58tLY/BALPC7iu3Fa+J7EOTwnX9PdNBxUI7Uh0ntP0YWGnxCkXzmfA==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: 5.8.3 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.35.1': + '@typescript-eslint/types@8.56.0': resolution: { - integrity: sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ==, + integrity: sha512-DBsLPs3GsWhX5HylbP9HNG15U0bnwut55Lx12bHB9MpXxQ+R5GC8MwQe+N1UFXxAeQDvEsEDY6ZYwX03K7Z6HQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@typescript-eslint/typescript-estree@8.35.1': + '@typescript-eslint/typescript-estree@8.56.0': resolution: { - integrity: sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g==, + integrity: sha512-ex1nTUMWrseMltXUHmR2GAQ4d+WjkZCT4f+4bVsps8QEdh0vlBsaCokKTPlnqBFqqGaxilDNJG7b8dolW2m43Q==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - typescript: 5.8.3 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.35.1': + '@typescript-eslint/utils@8.56.0': resolution: { - integrity: sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ==, + integrity: sha512-RZ3Qsmi2nFGsS+n+kjLAYDPVlrzf7UhTffrDIKr+h2yzAlYP/y5ZulU0yeDEPItos2Ph46JAL5P/On3pe7kDIQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: 5.8.3 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.35.1': + '@typescript-eslint/visitor-keys@8.56.0': resolution: { - integrity: sha512-VRwixir4zBWCSTP/ljEo091lbpypz57PoeAQ9imjG+vbeof9LplljsL1mos4ccG6H9IjfrVGM359RozUnuFhpw==, + integrity: sha512-q+SL+b+05Ud6LbEE35qe4A99P+htKTKVbyiNEe45eCbJFyh/HVK9QXwlrbz+Q4L8SOW4roxSVwXYj4DMBT7Ieg==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - '@unrs/resolver-binding-android-arm-eabi@1.10.1': + '@unrs/resolver-binding-android-arm-eabi@1.11.1': resolution: { - integrity: sha512-zohDKXT1Ok0yhbVGff4YAg9HUs5ietG5GpvJBPFSApZnGe7uf2cd26DRhKZbn0Be6xHUZrSzP+RAgMmzyc71EA==, + integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==, } cpu: [arm] os: [android] - '@unrs/resolver-binding-android-arm64@1.10.1': + '@unrs/resolver-binding-android-arm64@1.11.1': resolution: { - integrity: sha512-tAN6k5UrTd4nicpA7s2PbjR/jagpDzAmvXFjbpTazUe5FRsFxVcBlS1F5Lzp5jtWU6bdiqRhSvd4X8rdpCffeA==, + integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==, } cpu: [arm64] os: [android] - '@unrs/resolver-binding-darwin-arm64@1.10.1': + '@unrs/resolver-binding-darwin-arm64@1.11.1': resolution: { - integrity: sha512-+FCsag8WkauI4dQ50XumCXdfvDCZEpMUnvZDsKMxfOisnEklpDFXc6ThY0WqybBYZbiwR5tWcFaZmI0G6b4vrg==, + integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==, } cpu: [arm64] os: [darwin] - '@unrs/resolver-binding-darwin-x64@1.10.1': + '@unrs/resolver-binding-darwin-x64@1.11.1': resolution: { - integrity: sha512-qYKGGm5wk71ONcXTMZ0+J11qQeOAPz3nw6VtqrBUUELRyXFyvK8cHhHsLBFR4GHnilc2pgY1HTB2TvdW9wO26Q==, + integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==, } cpu: [x64] os: [darwin] - '@unrs/resolver-binding-freebsd-x64@1.10.1': + '@unrs/resolver-binding-freebsd-x64@1.11.1': resolution: { - integrity: sha512-hOHMAhbvIQ63gkpgeNsXcWPSyvXH7ZEyeg254hY0Lp/hX8NdW+FsUWq73g9946Pc/BrcVI/I3C1cmZ4RCX9bNw==, + integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==, } cpu: [x64] os: [freebsd] - '@unrs/resolver-binding-linux-arm-gnueabihf@1.10.1': + '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1': resolution: { - integrity: sha512-6ds7+zzHJgTDmpe0gmFcOTvSUhG5oZukkt+cCsSb3k4Uiz2yEQB4iCRITX2hBwSW+p8gAieAfecITjgqCkswXw==, + integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==, } cpu: [arm] os: [linux] - '@unrs/resolver-binding-linux-arm-musleabihf@1.10.1': + '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1': resolution: { - integrity: sha512-P7A0G2/jW00diNJyFeq4W9/nxovD62Ay8CMP4UK9OymC7qO7rG1a8Upad68/bdfpIOn7KSp7Aj/6lEW3yyznAA==, + integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==, } cpu: [arm] os: [linux] - '@unrs/resolver-binding-linux-arm64-gnu@1.10.1': + '@unrs/resolver-binding-linux-arm64-gnu@1.11.1': resolution: { - integrity: sha512-Cg6xzdkrpltcTPO4At+A79zkC7gPDQIgosJmVV8M104ImB6KZi1MrNXgDYIAfkhUYjPzjNooEDFRAwwPadS7ZA==, + integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==, } cpu: [arm64] os: [linux] - '@unrs/resolver-binding-linux-arm64-musl@1.10.1': + '@unrs/resolver-binding-linux-arm64-musl@1.11.1': resolution: { - integrity: sha512-aNeg99bVkXa4lt+oZbjNRPC8ZpjJTKxijg/wILrJdzNyAymO2UC/HUK1UfDjt6T7U5p/mK24T3CYOi3/+YEQSA==, + integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==, } cpu: [arm64] os: [linux] - '@unrs/resolver-binding-linux-ppc64-gnu@1.10.1': + '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': resolution: { - integrity: sha512-ylz5ojeXrkPrtnzVhpCO+YegG63/aKhkoTlY8PfMfBfLaUG8v6m6iqrL7sBUKdVBgOB4kSTUPt9efQdA/Y3Z/w==, + integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==, } cpu: [ppc64] os: [linux] - '@unrs/resolver-binding-linux-riscv64-gnu@1.10.1': + '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': resolution: { - integrity: sha512-xcWyhmJfXXOxK7lvE4+rLwBq+on83svlc0AIypfe6x4sMJR+S4oD7n9OynaQShfj2SufPw2KJAotnsNb+4nN2g==, + integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==, } cpu: [riscv64] os: [linux] - '@unrs/resolver-binding-linux-riscv64-musl@1.10.1': + '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': resolution: { - integrity: sha512-mW9JZAdOCyorgi1eLJr4gX7xS67WNG9XNPYj5P8VuttK72XNsmdw9yhOO4tDANMgiLXFiSFaiL1gEpoNtRPw/A==, + integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==, } cpu: [riscv64] os: [linux] - '@unrs/resolver-binding-linux-s390x-gnu@1.10.1': + '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': resolution: { - integrity: sha512-NZGKhBy6xkJ0k09cWNZz4DnhBcGlhDd3W+j7EYoNvf5TSwj2K6kbmfqTWITEgkvjsMUjm1wsrc4IJaH6VtjyHQ==, + integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==, } cpu: [s390x] os: [linux] - '@unrs/resolver-binding-linux-x64-gnu@1.10.1': + '@unrs/resolver-binding-linux-x64-gnu@1.11.1': resolution: { - integrity: sha512-VsjgckJ0gNMw7p0d8In6uPYr+s0p16yrT2rvG4v2jUpEMYkpnfnCiALa9SWshbvlGjKQ98Q2x19agm3iFk8w8Q==, + integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==, } cpu: [x64] os: [linux] - '@unrs/resolver-binding-linux-x64-musl@1.10.1': + '@unrs/resolver-binding-linux-x64-musl@1.11.1': resolution: { - integrity: sha512-idMnajMeejnaFi0Mx9UTLSYFDAOTfAEP7VjXNgxKApso3Eu2Njs0p2V95nNIyFi4oQVGFmIuCkoznAXtF/Zbmw==, + integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==, } cpu: [x64] os: [linux] - '@unrs/resolver-binding-wasm32-wasi@1.10.1': + '@unrs/resolver-binding-wasm32-wasi@1.11.1': resolution: { - integrity: sha512-7jyhjIRNFjzlr8x5pth6Oi9hv3a7ubcVYm2GBFinkBQKcFhw4nIs5BtauSNtDW1dPIGrxF0ciynCZqzxMrYMsg==, + integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==, } engines: { node: '>=14.0.0' } cpu: [wasm32] - '@unrs/resolver-binding-win32-arm64-msvc@1.10.1': + '@unrs/resolver-binding-win32-arm64-msvc@1.11.1': resolution: { - integrity: sha512-TY79+N+Gkoo7E99K+zmsKNeiuNJYlclZJtKqsHSls8We2iGhgxtletVsiBYie93MSTDRDMI8pkBZJlIJSZPrdA==, + integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==, } cpu: [arm64] os: [win32] - '@unrs/resolver-binding-win32-ia32-msvc@1.10.1': + '@unrs/resolver-binding-win32-ia32-msvc@1.11.1': resolution: { - integrity: sha512-BAJN5PEPlEV+1m8+PCtFoKm3LQ1P57B4Z+0+efU0NzmCaGk7pUaOxuPgl+m3eufVeeNBKiPDltG0sSB9qEfCxw==, + integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==, } cpu: [ia32] os: [win32] - '@unrs/resolver-binding-win32-x64-msvc@1.10.1': + '@unrs/resolver-binding-win32-x64-msvc@1.11.1': resolution: { - integrity: sha512-2v3erKKmmCyIVvvhI2nF15qEbdBpISTq44m9pyd5gfIJB1PN94oePTLWEd82XUbIbvKhv76xTSeUQSCOGesLeg==, + integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==, } cpu: [x64] os: [win32] @@ -1451,13 +1544,6 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn-walk@8.2.0: - resolution: - { - integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, - } - engines: { node: '>=0.4.0' } - acorn@8.15.0: resolution: { @@ -1472,12 +1558,6 @@ packages: integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, } - ajv@8.12.0: - resolution: - { - integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, - } - ansi-colors@4.1.3: resolution: { @@ -1499,20 +1579,6 @@ packages: } engines: { node: '>=8' } - ansi-regex@6.0.1: - resolution: - { - integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, - } - engines: { node: '>=12' } - - ansi-styles@3.2.1: - resolution: - { - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, - } - engines: { node: '>=4' } - ansi-styles@4.3.0: resolution: { @@ -1520,12 +1586,12 @@ packages: } engines: { node: '>=8' } - ansi-styles@6.2.1: + ansi-styles@5.2.0: resolution: { - integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, } - engines: { node: '>=12' } + engines: { node: '>=10' } any-promise@1.3.0: resolution: @@ -1533,12 +1599,6 @@ packages: integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, } - arg@4.1.3: - resolution: - { - integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, - } - argparse@1.0.10: resolution: { @@ -1600,6 +1660,13 @@ packages: } engines: { node: '>= 0.4' } + arrify@1.0.1: + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, + } + engines: { node: '>=0.10.0' } + assertion-error@2.0.1: resolution: { @@ -1614,19 +1681,6 @@ packages: } engines: { node: '>= 0.4' } - asynckit@0.4.0: - resolution: - { - integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, - } - - at-least-node@1.0.0: - resolution: - { - integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, - } - engines: { node: '>= 4.0.0' } - available-typed-arrays@1.0.7: resolution: { @@ -1634,23 +1688,18 @@ packages: } engines: { node: '>= 0.4' } - axios@1.10.0: - resolution: - { - integrity: sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==, - } - balanced-match@1.0.2: resolution: { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, } - base64-js@1.5.1: + balanced-match@4.0.2: resolution: { - integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + integrity: sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==, } + engines: { node: 20 || >=22 } better-path-resolve@1.0.0: resolution: @@ -1659,36 +1708,30 @@ packages: } engines: { node: '>=4' } - better-sqlite3@12.2.0: - resolution: - { - integrity: sha512-eGbYq2CT+tos1fBwLQ/tkBt9J5M3JEHjku4hbvQUePCckkvVf14xWj+1m7dGoK81M/fOjFT7yM9UMeKT/+vFLQ==, - } - engines: { node: 20.x || 22.x || 23.x || 24.x } - - bindings@1.5.0: + boolbase@1.0.0: resolution: { - integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, } - bl@4.1.0: + brace-expansion@1.1.12: resolution: { - integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==, } - brace-expansion@1.1.11: + brace-expansion@2.0.2: resolution: { - integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==, } - brace-expansion@2.0.1: + brace-expansion@5.0.2: resolution: { - integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + integrity: sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==, } + engines: { node: 20 || >=22 } braces@3.0.3: resolution: @@ -1697,12 +1740,6 @@ packages: } engines: { node: '>=8' } - buffer@5.7.1: - resolution: - { - integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, - } - bundle-require@5.1.0: resolution: { @@ -1712,19 +1749,19 @@ packages: peerDependencies: esbuild: '>=0.18' - cac@6.7.14: + bytes-iec@3.1.1: resolution: { - integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, + integrity: sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==, } - engines: { node: '>=8' } + engines: { node: '>= 0.8' } - cachedir@2.3.0: + cac@6.7.14: resolution: { - integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==, + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, } - engines: { node: '>=6' } + engines: { node: '>=8' } call-bind-apply-helpers@1.0.2: resolution: @@ -1754,93 +1791,79 @@ packages: } engines: { node: '>=6' } - chai@5.2.0: + camelcase-keys@6.2.2: resolution: { - integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==, + integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, } - engines: { node: '>=12' } - - chalk@2.4.2: - resolution: - { - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, - } - engines: { node: '>=4' } - - chalk@4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, - } - engines: { node: '>=10' } + engines: { node: '>=8' } - chardet@0.7.0: + camelcase@5.3.1: resolution: { - integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, } + engines: { node: '>=6' } - check-error@2.1.1: + chai@5.3.3: resolution: { - integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==, + integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==, } - engines: { node: '>= 16' } + engines: { node: '>=18' } - chokidar@4.0.3: + chalk@4.1.2: resolution: { - integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, } - engines: { node: '>= 14.16.0' } + engines: { node: '>=10' } - chownr@1.1.4: + change-case@5.4.4: resolution: { - integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==, + integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==, } - ci-info@3.9.0: + chardet@2.1.1: resolution: { - integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, + integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==, } - engines: { node: '>=8' } - cli-cursor@3.1.0: + check-error@2.1.3: resolution: { - integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==, } - engines: { node: '>=8' } + engines: { node: '>= 16' } - cli-spinners@2.9.0: + cheerio-select@2.1.0: resolution: { - integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==, + integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==, } - engines: { node: '>=6' } - cli-width@3.0.0: + cheerio@1.2.0: resolution: { - integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, + integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==, } - engines: { node: '>= 10' } + engines: { node: '>=20.18.1' } - clone@1.0.4: + chokidar@4.0.3: resolution: { - integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, } - engines: { node: '>=0.8' } + engines: { node: '>= 14.16.0' } - color-convert@1.9.3: + ci-info@3.9.0: resolution: { - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, } + engines: { node: '>=8' } color-convert@2.0.1: resolution: @@ -1849,25 +1872,12 @@ packages: } engines: { node: '>=7.0.0' } - color-name@1.1.3: - resolution: - { - integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, - } - color-name@1.1.4: resolution: { integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, } - combined-stream@1.0.8: - resolution: - { - integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, - } - engines: { node: '>= 0.8' } - commander@4.1.1: resolution: { @@ -1875,14 +1885,6 @@ packages: } engines: { node: '>= 6' } - commitizen@4.3.1: - resolution: - { - integrity: sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==, - } - engines: { node: '>= 12' } - hasBin: true - concat-map@0.0.1: resolution: { @@ -1902,55 +1904,25 @@ packages: } engines: { node: ^14.18.0 || >=16.10.0 } - conventional-commit-types@3.0.0: - resolution: - { - integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==, - } - - cosmiconfig-typescript-loader@4.4.0: - resolution: - { - integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==, - } - engines: { node: '>=v14.21.3' } - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: 5.8.3 - - cosmiconfig@8.3.4: - resolution: - { - integrity: sha512-SF+2P8+o/PTV05rgsAjDzL4OFdVXAulSfC/L19VaeVT7+tpOOSscCt2QLxDZ+CLxF2WOiq6y1K5asvs8qUJT/Q==, - } - engines: { node: '>=14' } - peerDependencies: - typescript: 5.8.3 - peerDependenciesMeta: - typescript: - optional: true - - create-require@1.1.1: + cross-spawn@7.0.6: resolution: { - integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, + integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, } + engines: { node: '>= 8' } - cross-spawn@7.0.6: + css-select@5.2.2: resolution: { - integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, + integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==, } - engines: { node: '>= 8' } - cz-conventional-changelog@3.3.0: + css-what@6.2.2: resolution: { - integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==, + integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==, } - engines: { node: '>= 10' } + engines: { node: '>= 6' } data-view-buffer@1.0.2: resolution: @@ -1984,10 +1956,10 @@ packages: supports-color: optional: true - debug@4.4.1: + debug@4.4.3: resolution: { - integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==, + integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==, } engines: { node: '>=6.0' } peerDependencies: @@ -1996,18 +1968,19 @@ packages: supports-color: optional: true - decompress-response@6.0.0: + decamelize-keys@1.1.1: resolution: { - integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, + integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, } - engines: { node: '>=10' } + engines: { node: '>=0.10.0' } - dedent@0.7.0: + decamelize@1.2.0: resolution: { - integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, } + engines: { node: '>=0.10.0' } deep-eql@5.0.2: resolution: @@ -2016,25 +1989,12 @@ packages: } engines: { node: '>=6' } - deep-extend@0.6.0: - resolution: - { - integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, - } - engines: { node: '>=4.0.0' } - deep-is@0.1.4: resolution: { integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, } - defaults@1.0.4: - resolution: - { - integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, - } - define-data-property@1.1.4: resolution: { @@ -2049,146 +2009,58 @@ packages: } engines: { node: '>= 0.4' } - delayed-stream@1.0.0: + detect-indent@6.1.0: resolution: { - integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, } - engines: { node: '>=0.4.0' } + engines: { node: '>=8' } - detect-file@1.0.0: + diff-sequences@29.6.3: resolution: { - integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==, + integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, } - engines: { node: '>=0.10.0' } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - detect-indent@6.1.0: + dir-glob@3.0.1: resolution: { - integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, } engines: { node: '>=8' } - detect-libc@2.0.4: + doctrine@2.1.0: resolution: { - integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==, + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, } - engines: { node: '>=8' } + engines: { node: '>=0.10.0' } - diff@4.0.2: + dom-serializer@2.0.0: resolution: { - integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, } - engines: { node: '>=0.3.1' } - dir-glob@3.0.1: + domelementtype@2.3.0: resolution: { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, } - engines: { node: '>=8' } - doctrine@2.1.0: + domhandler@5.0.3: resolution: { - integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, } - engines: { node: '>=0.10.0' } + engines: { node: '>= 4' } - drizzle-orm@0.33.0: + domutils@3.2.2: resolution: { - integrity: sha512-SHy72R2Rdkz0LEq0PSG/IdvnT3nGiWuRk+2tXZQ90GVq/XQhpCzu/EFT3V2rox+w8MlkBQxifF8pCStNYnERfA==, + integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==, } - peerDependencies: - '@aws-sdk/client-rds-data': '>=3' - '@cloudflare/workers-types': '>=3' - '@electric-sql/pglite': '>=0.1.1' - '@libsql/client': '*' - '@neondatabase/serverless': '>=0.1' - '@op-engineering/op-sqlite': '>=2' - '@opentelemetry/api': ^1.4.1 - '@planetscale/database': '>=1' - '@prisma/client': '*' - '@tidbcloud/serverless': '*' - '@types/better-sqlite3': '*' - '@types/pg': '*' - '@types/react': '>=18' - '@types/sql.js': '*' - '@vercel/postgres': '>=0.8.0' - '@xata.io/client': '*' - better-sqlite3: '>=7' - bun-types: '*' - expo-sqlite: '>=13.2.0' - knex: '*' - kysely: '*' - mysql2: '>=2' - pg: '>=8' - postgres: '>=3' - prisma: '*' - react: '>=18' - sql.js: '>=1' - sqlite3: '>=5' - peerDependenciesMeta: - '@aws-sdk/client-rds-data': - optional: true - '@cloudflare/workers-types': - optional: true - '@electric-sql/pglite': - optional: true - '@libsql/client': - optional: true - '@neondatabase/serverless': - optional: true - '@op-engineering/op-sqlite': - optional: true - '@opentelemetry/api': - optional: true - '@planetscale/database': - optional: true - '@prisma/client': - optional: true - '@tidbcloud/serverless': - optional: true - '@types/better-sqlite3': - optional: true - '@types/pg': - optional: true - '@types/react': - optional: true - '@types/sql.js': - optional: true - '@vercel/postgres': - optional: true - '@xata.io/client': - optional: true - better-sqlite3: - optional: true - bun-types: - optional: true - expo-sqlite: - optional: true - knex: - optional: true - kysely: - optional: true - mysql2: - optional: true - pg: - optional: true - postgres: - optional: true - prisma: - optional: true - react: - optional: true - sql.js: - optional: true - sqlite3: - optional: true dunder-proto@1.0.1: resolution: @@ -2197,47 +2069,56 @@ packages: } engines: { node: '>= 0.4' } - eastasianwidth@0.2.0: + emoji-regex@8.0.0: + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } + + encoding-sniffer@0.2.1: resolution: { - integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==, } - emoji-regex@8.0.0: + enquirer@2.4.1: resolution: { - integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, } + engines: { node: '>=8.6' } - emoji-regex@9.2.2: + entities@4.5.0: resolution: { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, } + engines: { node: '>=0.12' } - end-of-stream@1.4.5: + entities@6.0.1: resolution: { - integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==, + integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==, } + engines: { node: '>=0.12' } - enquirer@2.4.1: + entities@7.0.1: resolution: { - integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, + integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==, } - engines: { node: '>=8.6' } + engines: { node: '>=0.12' } - error-ex@1.3.2: + error-ex@1.3.4: resolution: { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==, } - es-abstract@1.24.0: + es-abstract@1.24.1: resolution: { - integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==, + integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==, } engines: { node: '>= 0.4' } @@ -2289,20 +2170,21 @@ packages: } engines: { node: '>= 0.4' } - esbuild@0.25.5: + esbuild@0.25.12: resolution: { - integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==, + integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==, } engines: { node: '>=18' } hasBin: true - escape-string-regexp@1.0.5: + esbuild@0.27.3: resolution: { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==, } - engines: { node: '>=0.8.0' } + engines: { node: '>=18' } + hasBin: true escape-string-regexp@4.0.0: resolution: @@ -2311,15 +2193,22 @@ packages: } engines: { node: '>=10' } - eslint-config-prettier@10.1.5: + eslint-config-prettier@10.1.8: resolution: { - integrity: sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==, + integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==, } hasBin: true peerDependencies: eslint: '>=7.0.0' + eslint-formatter-pretty@4.1.0: + resolution: + { + integrity: sha512-IsUTtGxF1hrH6lMWiSl1WbGaiP01eT6kzywdY1U+zLc0MP+nwEnUiS9UI8IaOTUhTeQJLlCEWIbXINBH4YJbBQ==, + } + engines: { node: '>=10' } + eslint-import-context@0.1.9: resolution: { @@ -2391,10 +2280,10 @@ packages: '@typescript-eslint/parser': optional: true - eslint-plugin-prettier@5.5.1: + eslint-plugin-prettier@5.5.5: resolution: { - integrity: sha512-dobTkHT6XaEVOo8IO90Q4DOSxnm3Y151QxPJlM/vKC0bVy+d6cVWQZLlFiuZPP0wS6vZwSKeJgKkcS+KfMBlRw==, + integrity: sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==, } engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: @@ -2408,6 +2297,12 @@ packages: eslint-config-prettier: optional: true + eslint-rule-docs@1.1.235: + resolution: + { + integrity: sha512-+TQ+x4JdTnDoFEXXb3fDvfGOwnyNV7duH8fXWTPD1ieaBmB8omj7Gw/pMBBu4uI2uJCCU8APDaQJzWuXnTsH4A==, + } + eslint-scope@8.4.0: resolution: { @@ -2429,10 +2324,17 @@ packages: } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - eslint@9.30.1: + eslint-visitor-keys@5.0.0: + resolution: + { + integrity: sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==, + } + engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + + eslint@9.39.2: resolution: { - integrity: sha512-zmxXPNMOXmwm9E0yQLi5uqXHs7uq2UIiqEKo3Gq+3fwo1XrJ+hijAZImyF7hclW3E6oHz43Yk3RP8at6OTKflQ==, + integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } hasBin: true @@ -2457,10 +2359,10 @@ packages: engines: { node: '>=4' } hasBin: true - esquery@1.5.0: + esquery@1.7.0: resolution: { - integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, + integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==, } engines: { node: '>=0.10' } @@ -2491,24 +2393,10 @@ packages: } engines: { node: '>=0.10.0' } - expand-template@2.0.3: - resolution: - { - integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==, - } - engines: { node: '>=6' } - - expand-tilde@2.0.2: - resolution: - { - integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, - } - engines: { node: '>=0.10.0' } - - expect-type@1.2.1: + expect-type@1.3.0: resolution: { - integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==, + integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==, } engines: { node: '>=12.0.0' } @@ -2518,13 +2406,6 @@ packages: integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, } - external-editor@3.1.0: - resolution: - { - integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, - } - engines: { node: '>=4' } - fast-deep-equal@3.1.3: resolution: { @@ -2562,30 +2443,24 @@ packages: integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==, } - fastq@1.15.0: + fastq@1.20.1: resolution: { - integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, + integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==, } - fdir@6.4.6: + fdir@6.5.0: resolution: { - integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==, + integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==, } + engines: { node: '>=12.0.0' } peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - figures@3.2.0: - resolution: - { - integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, - } - engines: { node: '>=8' } - file-entry-cache@8.0.0: resolution: { @@ -2593,12 +2468,6 @@ packages: } engines: { node: '>=16.0.0' } - file-uri-to-path@1.0.0: - resolution: - { - integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, - } - fill-range@7.1.1: resolution: { @@ -2606,18 +2475,6 @@ packages: } engines: { node: '>=8' } - find-node-modules@2.1.3: - resolution: - { - integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==, - } - - find-root@1.1.0: - resolution: - { - integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==, - } - find-up@4.1.0: resolution: { @@ -2632,13 +2489,6 @@ packages: } engines: { node: '>=10' } - findup-sync@4.0.0: - resolution: - { - integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==, - } - engines: { node: '>= 8' } - fix-dts-default-cjs-exports@1.0.1: resolution: { @@ -2658,18 +2508,6 @@ packages: integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==, } - follow-redirects@1.15.9: - resolution: - { - integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==, - } - engines: { node: '>=4.0' } - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - for-each@0.3.5: resolution: { @@ -2684,19 +2522,6 @@ packages: } engines: { node: '>=14' } - form-data@4.0.3: - resolution: - { - integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==, - } - engines: { node: '>= 6' } - - fs-constants@1.0.0: - resolution: - { - integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, - } - fs-extra@7.0.1: resolution: { @@ -2711,19 +2536,6 @@ packages: } engines: { node: '>=6 <7 || >=8' } - fs-extra@9.1.0: - resolution: - { - integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, - } - engines: { node: '>=10' } - - fs.realpath@1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } - fsevents@2.3.3: resolution: { @@ -2751,6 +2563,13 @@ packages: integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, } + generator-function@2.0.1: + resolution: + { + integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==, + } + engines: { node: '>= 0.4' } + get-intrinsic@1.3.0: resolution: { @@ -2772,16 +2591,10 @@ packages: } engines: { node: '>= 0.4' } - get-tsconfig@4.10.1: - resolution: - { - integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==, - } - - github-from-package@0.0.0: + get-tsconfig@4.13.6: resolution: { - integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==, + integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==, } glob-parent@5.1.2: @@ -2798,49 +2611,15 @@ packages: } engines: { node: '>=10.13.0' } - glob@10.4.5: + glob@11.1.0: resolution: { - integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, - } - hasBin: true - - glob@11.0.3: - resolution: - { - integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==, + integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==, } engines: { node: 20 || >=22 } + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true - glob@7.2.3: - resolution: - { - integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, - } - deprecated: Glob versions prior to v9 are no longer supported - - global-dirs@0.1.1: - resolution: - { - integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, - } - engines: { node: '>=4' } - - global-modules@1.0.0: - resolution: - { - integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==, - } - engines: { node: '>=0.10.0' } - - global-prefix@1.0.2: - resolution: - { - integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==, - } - engines: { node: '>=0.10.0' } - globals@14.0.0: resolution: { @@ -2848,10 +2627,10 @@ packages: } engines: { node: '>=18' } - globals@16.3.0: + globals@16.5.0: resolution: { - integrity: sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==, + integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==, } engines: { node: '>=18' } @@ -2882,24 +2661,19 @@ packages: integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, } - graphemer@1.4.0: + hard-rejection@2.1.0: resolution: { - integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, - } - - has-bigints@1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, } + engines: { node: '>=6' } - has-flag@3.0.0: + has-bigints@1.1.0: resolution: { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==, } - engines: { node: '>=4' } + engines: { node: '>= 0.4' } has-flag@4.0.0: resolution: @@ -2942,17 +2716,29 @@ packages: } engines: { node: '>= 0.4' } - homedir-polyfill@1.0.3: + hosted-git-info@2.8.9: resolution: { - integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==, + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, } - engines: { node: '>=0.10.0' } - human-id@4.1.1: + hosted-git-info@4.1.0: resolution: { - integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==, + integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==, + } + engines: { node: '>=10' } + + htmlparser2@10.1.0: + resolution: + { + integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==, + } + + human-id@4.1.3: + resolution: + { + integrity: sha512-tsYlhAYpjCKa//8rXZ9DqKEawhPoSytweBC2eNvcaDK+57RZLHGqNs3PZTQO6yekLFSuvA6AlnAfrw1uBvtb+Q==, } hasBin: true @@ -2964,23 +2750,24 @@ packages: engines: { node: '>=18' } hasBin: true - iconv-lite@0.4.24: + iconv-lite@0.6.3: resolution: { - integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, } engines: { node: '>=0.10.0' } - ieee754@1.2.1: + iconv-lite@0.7.2: resolution: { - integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==, } + engines: { node: '>=0.10.0' } - ignore@5.2.4: + ignore@5.3.2: resolution: { - integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, + integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, } engines: { node: '>= 4' } @@ -2991,10 +2778,10 @@ packages: } engines: { node: '>= 4' } - import-fresh@3.3.0: + import-fresh@3.3.1: resolution: { - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==, } engines: { node: '>=6' } @@ -3005,38 +2792,26 @@ packages: } engines: { node: '>=0.8.19' } - inflight@1.0.6: - resolution: - { - integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, - } - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - - inherits@2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } - - ini@1.3.8: + indent-string@4.0.0: resolution: { - integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, } + engines: { node: '>=8' } - inquirer@8.2.5: + internal-slot@1.1.0: resolution: { - integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==, + integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==, } - engines: { node: '>=12.0.0' } + engines: { node: '>= 0.4' } - internal-slot@1.1.0: + irregular-plurals@3.5.0: resolution: { - integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==, + integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==, } - engines: { node: '>= 0.4' } + engines: { node: '>=8' } is-array-buffer@3.0.5: resolution: @@ -3127,10 +2902,10 @@ packages: } engines: { node: '>=8' } - is-generator-function@1.1.0: + is-generator-function@1.1.2: resolution: { - integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==, + integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==, } engines: { node: '>= 0.4' } @@ -3141,13 +2916,6 @@ packages: } engines: { node: '>=0.10.0' } - is-interactive@1.0.0: - resolution: - { - integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, - } - engines: { node: '>=8' } - is-map@2.0.3: resolution: { @@ -3182,6 +2950,13 @@ packages: } engines: { node: '>=0.12.0' } + is-plain-obj@1.1.0: + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: { node: '>=0.10.0' } + is-regex@1.2.1: resolution: { @@ -3238,12 +3013,6 @@ packages: } engines: { node: '>=10' } - is-utf8@0.2.1: - resolution: - { - integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, - } - is-weakmap@2.0.2: resolution: { @@ -3284,18 +3053,33 @@ packages: integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - jackspeak@3.4.3: + jackspeak@4.2.3: resolution: { - integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, + integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==, } + engines: { node: 20 || >=22 } - jackspeak@4.1.1: + jest-diff@29.7.0: resolution: { - integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==, + integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==, } - engines: { node: 20 || >=22 } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + jest-get-type@29.6.3: + resolution: + { + integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + jiti@2.6.1: + resolution: + { + integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==, + } + hasBin: true joycon@3.1.1: resolution: @@ -3316,17 +3100,17 @@ packages: integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, } - js-yaml@3.14.1: + js-yaml@3.14.2: resolution: { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==, } hasBin: true - js-yaml@4.1.0: + js-yaml@4.1.1: resolution: { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==, } hasBin: true @@ -3348,12 +3132,6 @@ packages: integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, } - json-schema-traverse@1.0.0: - resolution: - { - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, - } - json-stable-stringify-without-jsonify@1.0.1: resolution: { @@ -3379,17 +3157,18 @@ packages: integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, } - jsonfile@6.1.0: + keyv@4.5.4: resolution: { - integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, } - keyv@4.5.4: + kind-of@6.0.3: resolution: { - integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, } + engines: { node: '>=0.10.0' } levn@0.4.1: resolution: @@ -3432,30 +3211,12 @@ packages: } engines: { node: '>=10' } - lodash.isplainobject@4.0.6: - resolution: - { - integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, - } - - lodash.map@4.6.0: - resolution: - { - integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==, - } - lodash.merge@4.6.2: resolution: { integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, } - lodash.mergewith@4.6.2: - resolution: - { - integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, - } - lodash.sortby@4.7.0: resolution: { @@ -3468,18 +3229,6 @@ packages: integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, } - lodash.uniq@4.5.0: - resolution: - { - integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, - } - - lodash@4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } - log-symbols@4.1.0: resolution: { @@ -3487,43 +3236,45 @@ packages: } engines: { node: '>=10' } - longest@2.0.1: + loupe@3.2.1: resolution: { - integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==, + integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==, } - engines: { node: '>=0.10.0' } - loupe@3.1.4: + lru-cache@11.2.6: resolution: { - integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==, + integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==, } + engines: { node: 20 || >=22 } - lru-cache@10.4.3: + lru-cache@6.0.0: resolution: { - integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, } + engines: { node: '>=10' } - lru-cache@11.1.0: + magic-string@0.30.21: resolution: { - integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==, + integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==, } - engines: { node: 20 || >=22 } - magic-string@0.30.17: + map-obj@1.0.1: resolution: { - integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==, + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, } + engines: { node: '>=0.10.0' } - make-error@1.3.6: + map-obj@4.3.0: resolution: { - integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, } + engines: { node: '>=8' } math-intrinsics@1.1.0: resolution: @@ -3532,18 +3283,19 @@ packages: } engines: { node: '>= 0.4' } - merge2@1.4.1: + meow@9.0.0: resolution: { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==, } - engines: { node: '>= 8' } + engines: { node: '>=10' } - merge@2.1.1: + merge2@1.4.1: resolution: { - integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==, + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, } + engines: { node: '>= 8' } micromatch@4.0.8: resolution: @@ -3552,38 +3304,17 @@ packages: } engines: { node: '>=8.6' } - mime-db@1.52.0: - resolution: - { - integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, - } - engines: { node: '>= 0.6' } - - mime-types@2.1.35: - resolution: - { - integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, - } - engines: { node: '>= 0.6' } - - mimic-fn@2.1.0: - resolution: - { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, - } - engines: { node: '>=6' } - - mimic-response@3.1.0: + min-indent@1.0.1: resolution: { - integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, } - engines: { node: '>=10' } + engines: { node: '>=4' } - minimatch@10.0.3: + minimatch@10.2.0: resolution: { - integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==, + integrity: sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==, } engines: { node: 20 || >=22 } @@ -3600,11 +3331,12 @@ packages: } engines: { node: '>=16 || 14 >=14.17' } - minimist@1.2.7: + minimist-options@4.1.0: resolution: { - integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==, + integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, } + engines: { node: '>= 6' } minimist@1.2.8: resolution: @@ -3619,16 +3351,10 @@ packages: } engines: { node: '>=16 || 14 >=14.17' } - mkdirp-classic@0.5.3: - resolution: - { - integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==, - } - - mlly@1.7.4: + mlly@1.8.0: resolution: { - integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==, + integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==, } mri@1.2.0: @@ -3644,12 +3370,6 @@ packages: integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, } - mute-stream@0.0.8: - resolution: - { - integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, - } - mz@2.7.0: resolution: { @@ -3664,16 +3384,16 @@ packages: engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true - napi-build-utils@2.0.0: + nanospinner@1.2.2: resolution: { - integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==, + integrity: sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA==, } - napi-postinstall@0.3.0: + napi-postinstall@0.3.4: resolution: { - integrity: sha512-M7NqKyhODKV1gRLdkwE7pDsZP2/SC2a2vHkOYh9MCpKMbWVfyVfUw5MaH83Fv6XMjxr5jryUp3IDDL9rlxsTeA==, + integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==, } engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } hasBin: true @@ -3687,16 +3407,28 @@ packages: nock@14.0.5: resolution: { - integrity: sha512-R49fALR9caB6vxuSWUIaK2eBYeTloZQUFBZ4rHO+TbhMGQHtwnhdqKLYki+o+8qMgLvoBYWrp/2KzGPhxL4S6w==, + integrity: sha512-R49fALR9caB6vxuSWUIaK2eBYeTloZQUFBZ4rHO+TbhMGQHtwnhdqKLYki+o+8qMgLvoBYWrp/2KzGPhxL4S6w==, + } + engines: { node: '>=18.20.0 <20 || >=20.12.1' } + + normalize-package-data@2.5.0: + resolution: + { + integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, + } + + normalize-package-data@3.0.3: + resolution: + { + integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==, } - engines: { node: '>=18.20.0 <20 || >=20.12.1' } + engines: { node: '>=10' } - node-abi@3.75.0: + nth-check@2.1.1: resolution: { - integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==, + integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, } - engines: { node: '>=10' } object-assign@4.1.1: resolution: @@ -3747,40 +3479,13 @@ packages: } engines: { node: '>= 0.4' } - once@1.4.0: - resolution: - { - integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, - } - - onetime@5.1.2: + optionator@0.9.4: resolution: { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, - } - engines: { node: '>=6' } - - optionator@0.9.3: - resolution: - { - integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, + integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==, } engines: { node: '>= 0.8.0' } - ora@5.4.1: - resolution: - { - integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, - } - engines: { node: '>=10' } - - os-tmpdir@1.0.2: - resolution: - { - integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, - } - engines: { node: '>=0.10.0' } - outdent@0.5.0: resolution: { @@ -3875,51 +3580,48 @@ packages: } engines: { node: '>=8' } - parse-passwd@1.0.0: + parse5-htmlparser2-tree-adapter@7.1.0: resolution: { - integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==, + integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==, } - engines: { node: '>=0.10.0' } - path-exists@4.0.0: + parse5-parser-stream@7.1.2: resolution: { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==, } - engines: { node: '>=8' } - path-is-absolute@1.0.1: + parse5@7.3.0: resolution: { - integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==, } - engines: { node: '>=0.10.0' } - path-key@3.1.1: + path-exists@4.0.0: resolution: { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, } engines: { node: '>=8' } - path-parse@1.0.7: + path-key@3.1.1: resolution: { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, } + engines: { node: '>=8' } - path-scurry@1.11.1: + path-parse@1.0.7: resolution: { - integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } - engines: { node: '>=16 || 14 >=14.18' } - path-scurry@2.0.0: + path-scurry@2.0.1: resolution: { - integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==, + integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==, } engines: { node: 20 || >=22 } @@ -3956,10 +3658,10 @@ packages: } engines: { node: '>=8.6' } - picomatch@4.0.2: + picomatch@4.0.3: resolution: { - integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, + integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, } engines: { node: '>=12' } @@ -3983,6 +3685,20 @@ packages: integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==, } + plur@4.0.0: + resolution: + { + integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==, + } + engines: { node: '>=10' } + + pluralize@8.0.0: + resolution: + { + integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==, + } + engines: { node: '>=4' } + possible-typed-array-names@1.1.0: resolution: { @@ -4018,14 +3734,6 @@ packages: } engines: { node: ^10 || ^12 || >=14 } - prebuild-install@7.1.3: - resolution: - { - integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==, - } - engines: { node: '>=10' } - hasBin: true - prelude-ls@1.2.1: resolution: { @@ -4033,10 +3741,10 @@ packages: } engines: { node: '>= 0.8.0' } - prettier-linter-helpers@1.0.0: + prettier-linter-helpers@1.0.1: resolution: { - integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==, + integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==, } engines: { node: '>=6.0.0' } @@ -4056,6 +3764,13 @@ packages: engines: { node: '>=14' } hasBin: true + pretty-format@29.7.0: + resolution: + { + integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + propagate@2.0.1: resolution: { @@ -4063,43 +3778,51 @@ packages: } engines: { node: '>= 8' } - proxy-from-env@1.1.0: + punycode@2.3.1: resolution: { - integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, } + engines: { node: '>=6' } - pump@3.0.3: + quansync@0.2.11: resolution: { - integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==, + integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==, } - punycode@2.3.0: + queue-microtask@1.2.3: resolution: { - integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } - engines: { node: '>=6' } - quansync@0.2.10: + quick-lru@4.0.1: + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, + } + engines: { node: '>=8' } + + react-is@18.3.1: resolution: { - integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==, + integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==, } - queue-microtask@1.2.3: + read-pkg-up@7.0.1: resolution: { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, } + engines: { node: '>=8' } - rc@1.2.8: + read-pkg@5.2.0: resolution: { - integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, + integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, } - hasBin: true + engines: { node: '>=8' } read-yaml-file@1.1.0: resolution: @@ -4108,19 +3831,19 @@ packages: } engines: { node: '>=6' } - readable-stream@3.6.2: + readdirp@4.1.2: resolution: { - integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, } - engines: { node: '>= 6' } + engines: { node: '>= 14.18.0' } - readdirp@4.1.2: + redent@3.0.0: resolution: { - integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, } - engines: { node: '>= 14.18.0' } + engines: { node: '>=8' } reflect.getprototypeof@1.0.10: resolution: @@ -4136,20 +3859,6 @@ packages: } engines: { node: '>= 0.4' } - require-from-string@2.0.2: - resolution: - { - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, - } - engines: { node: '>=0.10.0' } - - resolve-dir@1.0.1: - resolution: - { - integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==, - } - engines: { node: '>=0.10.0' } - resolve-from@4.0.0: resolution: { @@ -4164,37 +3873,24 @@ packages: } engines: { node: '>=8' } - resolve-global@1.0.0: - resolution: - { - integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, - } - engines: { node: '>=8' } - resolve-pkg-maps@1.0.0: resolution: { integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, } - resolve@1.22.4: + resolve@1.22.11: resolution: { - integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, + integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==, } + engines: { node: '>= 0.4' } hasBin: true - restore-cursor@3.1.0: - resolution: - { - integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, - } - engines: { node: '>=8' } - - reusify@1.0.4: + reusify@1.1.0: resolution: { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, } engines: { iojs: '>=1.0.0', node: '>=0.10.0' } @@ -4206,33 +3902,20 @@ packages: engines: { node: 20 || >=22 } hasBin: true - rollup@4.44.2: + rollup@4.57.1: resolution: { - integrity: sha512-PVoapzTwSEcelaWGth3uR66u7ZRo6qhPHc0f2uRO9fX6XDVNrIiGYS0Pj9+R8yIIYSD/mCx2b16Ws9itljKSPg==, + integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==, } engines: { node: '>=18.0.0', npm: '>=8.0.0' } hasBin: true - run-async@2.4.1: - resolution: - { - integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, - } - engines: { node: '>=0.12.0' } - run-parallel@1.2.0: resolution: { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, } - rxjs@7.8.1: - resolution: - { - integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, - } - safe-array-concat@1.1.3: resolution: { @@ -4240,12 +3923,6 @@ packages: } engines: { node: '>=0.4' } - safe-buffer@5.2.1: - resolution: - { - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, - } - safe-push-apply@1.0.0: resolution: { @@ -4266,6 +3943,13 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } + semver@5.7.2: + resolution: + { + integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, + } + hasBin: true + semver@6.3.1: resolution: { @@ -4273,10 +3957,10 @@ packages: } hasBin: true - semver@7.7.2: + semver@7.7.4: resolution: { - integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, + integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==, } engines: { node: '>=10' } hasBin: true @@ -4350,12 +4034,6 @@ packages: integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, } - signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, - } - signal-exit@4.1.0: resolution: { @@ -4363,17 +4041,13 @@ packages: } engines: { node: '>=14' } - simple-concat@1.0.1: - resolution: - { - integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==, - } - - simple-get@4.0.1: + size-limit@11.2.0: resolution: { - integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==, + integrity: sha512-2kpQq2DD/pRpx3Tal/qRW1SYwcIeQ0iq8li5CJHQgOC+FtPn2BVmuDtzUCgNnpCrbgtfEHqh+iWzxK+Tq6C+RQ==, } + engines: { node: ^18.0.0 || >=20.0.0 } + hasBin: true slash@3.0.0: resolution: @@ -4395,6 +4069,7 @@ packages: integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==, } engines: { node: '>= 8' } + deprecated: The work that was done in this beta branch won't be included in future versions spawndamnit@3.0.1: resolution: @@ -4402,6 +4077,30 @@ packages: integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==, } + spdx-correct@3.2.0: + resolution: + { + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, + } + + spdx-exceptions@2.5.0: + resolution: + { + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, + } + + spdx-expression-parse@3.0.1: + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } + + spdx-license-ids@3.0.22: + resolution: + { + integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==, + } + sprintf-js@1.0.3: resolution: { @@ -4421,10 +4120,10 @@ packages: integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, } - std-env@3.9.0: + std-env@3.10.0: resolution: { - integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==, + integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==, } stop-iteration-iterator@1.1.0: @@ -4447,13 +4146,6 @@ packages: } engines: { node: '>=8' } - string-width@5.1.2: - resolution: - { - integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, - } - engines: { node: '>=12' } - string.prototype.trim@1.2.10: resolution: { @@ -4475,12 +4167,6 @@ packages: } engines: { node: '>= 0.4' } - string_decoder@1.3.0: - resolution: - { - integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, - } - strip-ansi@6.0.1: resolution: { @@ -4488,13 +4174,6 @@ packages: } engines: { node: '>=8' } - strip-ansi@7.1.0: - resolution: - { - integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, - } - engines: { node: '>=12' } - strip-bom@3.0.0: resolution: { @@ -4502,20 +4181,13 @@ packages: } engines: { node: '>=4' } - strip-bom@4.0.0: + strip-indent@3.0.0: resolution: { - integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, } engines: { node: '>=8' } - strip-json-comments@2.0.1: - resolution: - { - integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, - } - engines: { node: '>=0.10.0' } - strip-json-comments@3.1.1: resolution: { @@ -4523,31 +4195,31 @@ packages: } engines: { node: '>=8' } - strip-literal@3.0.0: + strip-literal@3.1.0: resolution: { - integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==, + integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==, } - sucrase@3.35.0: + sucrase@3.35.1: resolution: { - integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==, + integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==, } engines: { node: '>=16 || 14 >=14.17' } hasBin: true - supports-color@5.5.0: + supports-color@7.2.0: resolution: { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, } - engines: { node: '>=4' } + engines: { node: '>=8' } - supports-color@7.2.0: + supports-hyperlinks@2.3.0: resolution: { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, } engines: { node: '>=8' } @@ -4558,26 +4230,13 @@ packages: } engines: { node: '>= 0.4' } - synckit@0.11.8: + synckit@0.11.12: resolution: { - integrity: sha512-+XZ+r1XGIJGeQk3VvXhT6xx/VpbHsRzsTkGgF6E5RX9TTXD0118l87puaEBZ566FhqblC6U0d4XnubznJDm30A==, + integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==, } engines: { node: ^14.18.0 || >=16.0.0 } - tar-fs@2.1.3: - resolution: - { - integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==, - } - - tar-stream@2.2.0: - resolution: - { - integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==, - } - engines: { node: '>=6' } - term-size@2.2.1: resolution: { @@ -4598,12 +4257,6 @@ packages: integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, } - through@2.3.8: - resolution: - { - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, - } - tinybench@2.9.0: resolution: { @@ -4616,10 +4269,10 @@ packages: integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==, } - tinyglobby@0.2.14: + tinyglobby@0.2.15: resolution: { - integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==, + integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==, } engines: { node: '>=12.0.0' } @@ -4637,20 +4290,13 @@ packages: } engines: { node: '>=14.0.0' } - tinyspy@4.0.3: + tinyspy@4.0.4: resolution: { - integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==, + integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==, } engines: { node: '>=14.0.0' } - tmp@0.0.33: - resolution: - { - integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, - } - engines: { node: '>=0.6.0' } - to-regex-range@5.0.1: resolution: { @@ -4671,14 +4317,21 @@ packages: } hasBin: true - ts-api-utils@2.1.0: + trim-newlines@3.0.1: + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + } + engines: { node: '>=8' } + + ts-api-utils@2.4.0: resolution: { - integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==, + integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==, } engines: { node: '>=18.12' } peerDependencies: - typescript: 5.8.3 + typescript: '>=4.8.4' ts-interface-checker@0.1.13: resolution: @@ -4686,33 +4339,24 @@ packages: integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, } - ts-node@10.9.2: + tsconfig-paths@3.15.0: resolution: { - integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==, + integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==, } - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: 5.8.3 - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - tsconfig-paths@3.15.0: + tsd@0.31.2: resolution: { - integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==, + integrity: sha512-VplBAQwvYrHzVihtzXiUVXu5bGcr7uH1juQZ1lmKgkuGNGT+FechUCqmx9/zk7wibcqR2xaNEwCkDyKh+VVZnQ==, } + engines: { node: '>=14.16' } + hasBin: true - tslib@2.6.2: + tslib@2.8.1: resolution: { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, } tsup@8.5.0: @@ -4726,84 +4370,23 @@ packages: '@microsoft/api-extractor': ^7.36.0 '@swc/core': ^1 postcss: ^8.4.12 - typescript: 5.8.3 + typescript: '>=4.5.0' peerDependenciesMeta: '@microsoft/api-extractor': optional: true '@swc/core': optional: true postcss: - optional: true - typescript: - optional: true - - tsx@4.20.3: - resolution: - { - integrity: sha512-qjbnuR9Tr+FJOMBqJCW5ehvIo/buZq7vH7qD7JziU98h6l3qGy0a/yPFjwO+y0/T7GFpNgNAvEcPPVfyT8rrPQ==, - } - engines: { node: '>=18.0.0' } - hasBin: true - - tunnel-agent@0.6.0: - resolution: - { - integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, - } - - turbo-darwin-64@2.5.4: - resolution: - { - integrity: sha512-ah6YnH2dErojhFooxEzmvsoZQTMImaruZhFPfMKPBq8sb+hALRdvBNLqfc8NWlZq576FkfRZ/MSi4SHvVFT9PQ==, - } - cpu: [x64] - os: [darwin] - - turbo-darwin-arm64@2.5.4: - resolution: - { - integrity: sha512-2+Nx6LAyuXw2MdXb7pxqle3MYignLvS7OwtsP9SgtSBaMlnNlxl9BovzqdYAgkUW3AsYiQMJ/wBRb7d+xemM5A==, - } - cpu: [arm64] - os: [darwin] - - turbo-linux-64@2.5.4: - resolution: - { - integrity: sha512-5May2kjWbc8w4XxswGAl74GZ5eM4Gr6IiroqdLhXeXyfvWEdm2mFYCSWOzz0/z5cAgqyGidF1jt1qzUR8hTmOA==, - } - cpu: [x64] - os: [linux] - - turbo-linux-arm64@2.5.4: - resolution: - { - integrity: sha512-/2yqFaS3TbfxV3P5yG2JUI79P7OUQKOUvAnx4MV9Bdz6jqHsHwc9WZPpO4QseQm+NvmgY6ICORnoVPODxGUiJg==, - } - cpu: [arm64] - os: [linux] - - turbo-windows-64@2.5.4: - resolution: - { - integrity: sha512-EQUO4SmaCDhO6zYohxIjJpOKRN3wlfU7jMAj3CgcyTPvQR/UFLEKAYHqJOnJtymbQmiiM/ihX6c6W6Uq0yC7mA==, - } - cpu: [x64] - os: [win32] - - turbo-windows-arm64@2.5.4: - resolution: - { - integrity: sha512-oQ8RrK1VS8lrxkLriotFq+PiF7iiGgkZtfLKF4DDKsmdbPo0O9R2mQxm7jHLuXraRCuIQDWMIw6dpcr7Iykf4A==, - } - cpu: [arm64] - os: [win32] + optional: true + typescript: + optional: true - turbo@2.5.4: + tsx@4.21.0: resolution: { - integrity: sha512-kc8ZibdRcuWUG1pbYSBFWqmIjynlD8Lp7IB6U3vIzvOv9VG+6Sp8bzyeBWE3Oi8XV5KsQrznyRTBPvrf99E4mA==, + integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==, } + engines: { node: '>=18.0.0' } hasBin: true type-check@0.4.0: @@ -4813,6 +4396,13 @@ packages: } engines: { node: '>= 0.8.0' } + type-fest@0.18.1: + resolution: + { + integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, + } + engines: { node: '>=10' } + type-fest@0.21.3: resolution: { @@ -4820,6 +4410,20 @@ packages: } engines: { node: '>=10' } + type-fest@0.6.0: + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, + } + engines: { node: '>=8' } + + type-fest@0.8.1: + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, + } + engines: { node: '>=8' } + typed-array-buffer@1.0.3: resolution: { @@ -4848,15 +4452,15 @@ packages: } engines: { node: '>= 0.4' } - typescript-eslint@8.35.1: + typescript-eslint@8.56.0: resolution: { - integrity: sha512-xslJjFzhOmHYQzSB/QTeASAHbjmxOGEP6Coh93TXmUBFQoJ1VU35UHIDmG06Jd6taf3wqqC1ntBnCMeymy5Ovw==, + integrity: sha512-c7toRLrotJ9oixgdW7liukZpsnq5CZ7PuKztubGYlNppuTqhIoWfhgHo/7EU0v06gS2l/x0i2NEFK1qMIf0rIg==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: 5.8.3 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' typescript@5.8.3: resolution: @@ -4866,10 +4470,10 @@ packages: engines: { node: '>=14.17' } hasBin: true - ufo@1.6.1: + ufo@1.6.3: resolution: { - integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==, + integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==, } unbox-primitive@1.1.0: @@ -4879,42 +4483,42 @@ packages: } engines: { node: '>= 0.4' } - universalify@0.1.2: + undici-types@6.21.0: resolution: { - integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, + integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==, } - engines: { node: '>= 4.0.0' } - universalify@2.0.0: + undici@7.22.0: resolution: { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + integrity: sha512-RqslV2Us5BrllB+JeiZnK4peryVTndy9Dnqq62S3yYRRTj0tFQCwEniUy2167skdGOy3vqRzEvl1Dm4sV2ReDg==, } - engines: { node: '>= 10.0.0' } + engines: { node: '>=20.18.1' } - unrs-resolver@1.10.1: + universalify@0.1.2: resolution: { - integrity: sha512-EFrL7Hw4kmhZdwWO3dwwFJo6hO3FXuQ6Bg8BK/faHZ9m1YxqBS31BNSTxklIQkxK/4LlV8zTYnPsIRLBzTzjCA==, + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, } + engines: { node: '>= 4.0.0' } - uri-js@4.4.1: + unrs-resolver@1.11.1: resolution: { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==, } - util-deprecate@1.0.2: + uri-js@4.4.1: resolution: { - integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, } - v8-compile-cache-lib@3.0.1: + validate-npm-package-license@3.0.4: resolution: { - integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, } vite-node@3.2.4: @@ -4925,10 +4529,10 @@ packages: engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } hasBin: true - vite@7.0.2: + vite@7.3.1: resolution: { - integrity: sha512-hxdyZDY1CM6SNpKI4w4lcUc3Mtkd9ej4ECWVHSMrOdSinVc2zYOAppHeGc/hzmRo3pxM5blMzkuWHOJA/3NiFw==, + integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==, } engines: { node: ^20.19.0 || >=22.12.0 } hasBin: true @@ -4999,17 +4603,26 @@ packages: jsdom: optional: true - wcwidth@1.0.1: + webidl-conversions@4.0.2: + resolution: + { + integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==, + } + + whatwg-encoding@3.1.1: resolution: { - integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==, } + engines: { node: '>=18' } + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation - webidl-conversions@4.0.2: + whatwg-mimetype@4.0.0: resolution: { - integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==, + integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==, } + engines: { node: '>=18' } whatwg-url@7.1.0: resolution: @@ -5038,20 +4651,13 @@ packages: } engines: { node: '>= 0.4' } - which-typed-array@1.1.19: + which-typed-array@1.1.20: resolution: { - integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==, + integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==, } engines: { node: '>= 0.4' } - which@1.3.1: - resolution: - { - integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, - } - hasBin: true - which@2.0.2: resolution: { @@ -5075,40 +4681,26 @@ packages: } engines: { node: '>=0.10.0' } - wrap-ansi@7.0.0: - resolution: - { - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, - } - engines: { node: '>=10' } - - wrap-ansi@8.1.0: - resolution: - { - integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, - } - engines: { node: '>=12' } - - wrappy@1.0.2: + yallist@4.0.0: resolution: { - integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, } - yaml@2.8.0: + yaml@2.8.2: resolution: { - integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==, + integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==, } engines: { node: '>= 14.6' } hasBin: true - yn@3.1.1: + yargs-parser@20.2.9: resolution: { - integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, + integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, } - engines: { node: '>=6' } + engines: { node: '>=10' } yocto-queue@0.1.0: resolution: @@ -5124,29 +4716,19 @@ packages: } snapshots: - '@aashutoshrathi/word-wrap@1.2.6': {} - - '@babel/code-frame@7.22.13': - dependencies: - '@babel/highlight': 7.22.13 - chalk: 2.4.2 - optional: true - - '@babel/helper-validator-identifier@7.22.15': - optional: true - - '@babel/highlight@7.22.13': + '@babel/code-frame@7.29.0': dependencies: - '@babel/helper-validator-identifier': 7.22.15 - chalk: 2.4.2 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 - optional: true + picocolors: 1.1.1 + + '@babel/helper-validator-identifier@7.28.5': {} - '@babel/runtime@7.27.6': {} + '@babel/runtime@7.28.6': {} - '@changesets/apply-release-plan@7.0.12': + '@changesets/apply-release-plan@7.0.14': dependencies: - '@changesets/config': 3.1.1 + '@changesets/config': 3.1.2 '@changesets/get-version-range-type': 0.4.0 '@changesets/git': 3.0.4 '@changesets/should-skip-package': 0.1.2 @@ -5158,7 +4740,7 @@ snapshots: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 7.7.2 + semver: 7.7.4 '@changesets/assemble-release-plan@6.0.9': dependencies: @@ -5167,44 +4749,46 @@ snapshots: '@changesets/should-skip-package': 0.1.2 '@changesets/types': 6.1.0 '@manypkg/get-packages': 1.1.3 - semver: 7.7.2 + semver: 7.7.4 '@changesets/changelog-git@0.2.1': dependencies: '@changesets/types': 6.1.0 - '@changesets/cli@2.29.5': + '@changesets/cli@2.29.8(@types/node@20.19.33)': dependencies: - '@changesets/apply-release-plan': 7.0.12 + '@changesets/apply-release-plan': 7.0.14 '@changesets/assemble-release-plan': 6.0.9 '@changesets/changelog-git': 0.2.1 - '@changesets/config': 3.1.1 + '@changesets/config': 3.1.2 '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.3 - '@changesets/get-release-plan': 4.0.13 + '@changesets/get-release-plan': 4.0.14 '@changesets/git': 3.0.4 '@changesets/logger': 0.1.1 '@changesets/pre': 2.0.2 - '@changesets/read': 0.6.5 + '@changesets/read': 0.6.6 '@changesets/should-skip-package': 0.1.2 '@changesets/types': 6.1.0 '@changesets/write': 0.4.0 + '@inquirer/external-editor': 1.0.3(@types/node@20.19.33) '@manypkg/get-packages': 1.1.3 ansi-colors: 4.1.3 ci-info: 3.9.0 enquirer: 2.4.1 - external-editor: 3.1.0 fs-extra: 7.0.1 mri: 1.2.0 p-limit: 2.3.0 package-manager-detector: 0.2.11 picocolors: 1.1.1 resolve-from: 5.0.0 - semver: 7.7.2 + semver: 7.7.4 spawndamnit: 3.0.1 term-size: 2.2.1 + transitivePeerDependencies: + - '@types/node' - '@changesets/config@3.1.1': + '@changesets/config@3.1.2': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.3 @@ -5223,14 +4807,14 @@ snapshots: '@changesets/types': 6.1.0 '@manypkg/get-packages': 1.1.3 picocolors: 1.1.1 - semver: 7.7.2 + semver: 7.7.4 - '@changesets/get-release-plan@4.0.13': + '@changesets/get-release-plan@4.0.14': dependencies: '@changesets/assemble-release-plan': 6.0.9 - '@changesets/config': 3.1.1 + '@changesets/config': 3.1.2 '@changesets/pre': 2.0.2 - '@changesets/read': 0.6.5 + '@changesets/read': 0.6.6 '@changesets/types': 6.1.0 '@manypkg/get-packages': 1.1.3 @@ -5248,10 +4832,10 @@ snapshots: dependencies: picocolors: 1.1.1 - '@changesets/parse@0.4.1': + '@changesets/parse@0.4.2': dependencies: '@changesets/types': 6.1.0 - js-yaml: 3.14.1 + js-yaml: 4.1.1 '@changesets/pre@2.0.2': dependencies: @@ -5260,11 +4844,11 @@ snapshots: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - '@changesets/read@0.6.5': + '@changesets/read@0.6.6': dependencies: '@changesets/git': 3.0.4 '@changesets/logger': 0.1.1 - '@changesets/parse': 0.4.1 + '@changesets/parse': 0.4.2 '@changesets/types': 6.1.0 fs-extra: 7.0.1 p-filter: 2.1.0 @@ -5283,261 +4867,285 @@ snapshots: dependencies: '@changesets/types': 6.1.0 fs-extra: 7.0.1 - human-id: 4.1.1 + human-id: 4.1.3 prettier: 2.8.8 - '@commitlint/config-validator@17.6.7': + '@emnapi/core@1.8.1': dependencies: - '@commitlint/types': 17.4.4 - ajv: 8.12.0 + '@emnapi/wasi-threads': 1.1.0 + tslib: 2.8.1 optional: true - '@commitlint/execute-rule@17.4.0': + '@emnapi/runtime@1.8.1': + dependencies: + tslib: 2.8.1 optional: true - '@commitlint/load@17.7.1': + '@emnapi/wasi-threads@1.1.0': dependencies: - '@commitlint/config-validator': 17.6.7 - '@commitlint/execute-rule': 17.4.0 - '@commitlint/resolve-extends': 17.6.7 - '@commitlint/types': 17.4.4 - '@types/node': 20.4.7 - chalk: 4.1.2 - cosmiconfig: 8.3.4(typescript@5.8.3) - cosmiconfig-typescript-loader: 4.4.0(@types/node@20.4.7)(cosmiconfig@8.3.4(typescript@5.8.3))(ts-node@10.9.2(@types/node@20.4.7)(typescript@5.8.3))(typescript@5.8.3) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - resolve-from: 5.0.0 - ts-node: 10.9.2(@types/node@20.4.7)(typescript@5.8.3) - typescript: 5.8.3 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + tslib: 2.8.1 optional: true - '@commitlint/resolve-extends@17.6.7': - dependencies: - '@commitlint/config-validator': 17.6.7 - '@commitlint/types': 17.4.4 - import-fresh: 3.3.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - resolve-global: 1.0.0 + '@esbuild/aix-ppc64@0.25.12': optional: true - '@commitlint/types@17.4.4': - dependencies: - chalk: 4.1.2 + '@esbuild/aix-ppc64@0.27.3': optional: true - '@cspotcode/source-map-support@0.8.1': - dependencies: - '@jridgewell/trace-mapping': 0.3.9 + '@esbuild/android-arm64@0.25.12': optional: true - '@emnapi/core@1.4.3': - dependencies: - '@emnapi/wasi-threads': 1.0.2 - tslib: 2.6.2 + '@esbuild/android-arm64@0.27.3': optional: true - '@emnapi/runtime@1.4.3': - dependencies: - tslib: 2.6.2 + '@esbuild/android-arm@0.25.12': optional: true - '@emnapi/wasi-threads@1.0.2': - dependencies: - tslib: 2.6.2 + '@esbuild/android-arm@0.27.3': optional: true - '@esbuild/aix-ppc64@0.25.5': + '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/android-arm64@0.25.5': + '@esbuild/android-x64@0.27.3': optional: true - '@esbuild/android-arm@0.25.5': + '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/android-x64@0.25.5': + '@esbuild/darwin-arm64@0.27.3': optional: true - '@esbuild/darwin-arm64@0.25.5': + '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/darwin-x64@0.25.5': + '@esbuild/darwin-x64@0.27.3': optional: true - '@esbuild/freebsd-arm64@0.25.5': + '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.25.5': + '@esbuild/freebsd-arm64@0.27.3': optional: true - '@esbuild/linux-arm64@0.25.5': + '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/linux-arm@0.25.5': + '@esbuild/freebsd-x64@0.27.3': optional: true - '@esbuild/linux-ia32@0.25.5': + '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-loong64@0.25.5': + '@esbuild/linux-arm64@0.27.3': optional: true - '@esbuild/linux-mips64el@0.25.5': + '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-ppc64@0.25.5': + '@esbuild/linux-arm@0.27.3': optional: true - '@esbuild/linux-riscv64@0.25.5': + '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-s390x@0.25.5': + '@esbuild/linux-ia32@0.27.3': optional: true - '@esbuild/linux-x64@0.25.5': + '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.25.5': + '@esbuild/linux-loong64@0.27.3': optional: true - '@esbuild/netbsd-x64@0.25.5': + '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.25.5': + '@esbuild/linux-mips64el@0.27.3': optional: true - '@esbuild/openbsd-x64@0.25.5': + '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/sunos-x64@0.25.5': + '@esbuild/linux-ppc64@0.27.3': optional: true - '@esbuild/win32-arm64@0.25.5': + '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/win32-ia32@0.25.5': + '@esbuild/linux-riscv64@0.27.3': optional: true - '@esbuild/win32-x64@0.25.5': + '@esbuild/linux-s390x@0.25.12': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.30.1)': - dependencies: - eslint: 9.30.1 - eslint-visitor-keys: 3.4.3 + '@esbuild/linux-s390x@0.27.3': + optional: true + + '@esbuild/linux-x64@0.25.12': + optional: true + + '@esbuild/linux-x64@0.27.3': + optional: true + + '@esbuild/netbsd-arm64@0.25.12': + optional: true + + '@esbuild/netbsd-arm64@0.27.3': + optional: true + + '@esbuild/netbsd-x64@0.25.12': + optional: true + + '@esbuild/netbsd-x64@0.27.3': + optional: true + + '@esbuild/openbsd-arm64@0.25.12': + optional: true + + '@esbuild/openbsd-arm64@0.27.3': + optional: true + + '@esbuild/openbsd-x64@0.25.12': + optional: true + + '@esbuild/openbsd-x64@0.27.3': + optional: true + + '@esbuild/openharmony-arm64@0.25.12': + optional: true + + '@esbuild/openharmony-arm64@0.27.3': + optional: true + + '@esbuild/sunos-x64@0.25.12': + optional: true + + '@esbuild/sunos-x64@0.27.3': + optional: true + + '@esbuild/win32-arm64@0.25.12': + optional: true + + '@esbuild/win32-arm64@0.27.3': + optional: true + + '@esbuild/win32-ia32@0.25.12': + optional: true + + '@esbuild/win32-ia32@0.27.3': + optional: true + + '@esbuild/win32-x64@0.25.12': + optional: true + + '@esbuild/win32-x64@0.27.3': + optional: true - '@eslint-community/eslint-utils@4.7.0(eslint@9.30.1)': + '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))': dependencies: - eslint: 9.30.1 + eslint: 9.39.2(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.1': {} + '@eslint-community/regexpp@4.12.2': {} - '@eslint/config-array@0.21.0': + '@eslint/config-array@0.21.1': dependencies: - '@eslint/object-schema': 2.1.6 - debug: 4.4.1 + '@eslint/object-schema': 2.1.7 + debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.3.0': {} - - '@eslint/core@0.14.0': + '@eslint/config-helpers@0.4.2': dependencies: - '@types/json-schema': 7.0.15 + '@eslint/core': 0.17.0 - '@eslint/core@0.15.1': + '@eslint/core@0.17.0': dependencies: '@types/json-schema': 7.0.15 - '@eslint/eslintrc@3.3.1': + '@eslint/eslintrc@3.3.3': dependencies: ajv: 6.12.6 - debug: 4.4.1 + debug: 4.4.3 espree: 10.4.0 globals: 14.0.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.1 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - '@eslint/js@9.30.1': {} + '@eslint/js@9.39.2': {} - '@eslint/object-schema@2.1.6': {} + '@eslint/object-schema@2.1.7': {} - '@eslint/plugin-kit@0.3.3': + '@eslint/plugin-kit@0.4.1': dependencies: - '@eslint/core': 0.15.1 + '@eslint/core': 0.17.0 levn: 0.4.1 + '@http-client-toolkit/core@4.0.0': + dependencies: + zod: 3.25.71 + + '@http-client-toolkit/store-memory@4.0.0': + dependencies: + '@http-client-toolkit/core': 4.0.0 + fast-safe-stringify: 2.1.1 + zod: 3.25.71 + '@humanfs/core@0.19.1': {} - '@humanfs/node@0.16.6': + '@humanfs/node@0.16.7': dependencies: '@humanfs/core': 0.19.1 - '@humanwhocodes/retry': 0.3.1 + '@humanwhocodes/retry': 0.4.3 '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/retry@0.3.1': {} - '@humanwhocodes/retry@0.4.3': {} - '@isaacs/balanced-match@4.0.1': {} - - '@isaacs/brace-expansion@5.0.0': + '@inquirer/external-editor@1.0.3(@types/node@20.19.33)': dependencies: - '@isaacs/balanced-match': 4.0.1 + chardet: 2.1.1 + iconv-lite: 0.7.2 + optionalDependencies: + '@types/node': 20.19.33 - '@isaacs/cliui@8.0.2': - dependencies: - string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 + '@isaacs/cliui@9.0.0': {} - '@jridgewell/gen-mapping@0.3.12': + '@jest/schemas@29.6.3': dependencies: - '@jridgewell/sourcemap-codec': 1.5.4 - '@jridgewell/trace-mapping': 0.3.29 + '@sinclair/typebox': 0.27.10 - '@jridgewell/resolve-uri@3.1.1': {} + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/sourcemap-codec@1.5.4': {} + '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/trace-mapping@0.3.29': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.5.4 + '@jridgewell/sourcemap-codec@1.5.5': {} - '@jridgewell/trace-mapping@0.3.9': + '@jridgewell/trace-mapping@0.3.31': dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.5.4 - optional: true + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 '@manypkg/find-root@1.1.0': dependencies: - '@babel/runtime': 7.27.6 + '@babel/runtime': 7.28.6 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 '@manypkg/get-packages@1.1.3': dependencies: - '@babel/runtime': 7.27.6 + '@babel/runtime': 7.28.6 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -5553,11 +5161,11 @@ snapshots: outvariant: 1.4.3 strict-event-emitter: 0.5.1 - '@napi-rs/wasm-runtime@0.2.11': + '@napi-rs/wasm-runtime@0.2.12': dependencies: - '@emnapi/core': 1.4.3 - '@emnapi/runtime': 1.4.3 - '@tybys/wasm-util': 0.9.0 + '@emnapi/core': 1.8.1 + '@emnapi/runtime': 1.8.1 + '@tybys/wasm-util': 0.10.1 optional: true '@nodelib/fs.scandir@2.1.5': @@ -5570,7 +5178,7 @@ snapshots: '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + fastq: 1.20.1 '@open-draft/deferred-promise@2.2.0': {} @@ -5581,276 +5189,293 @@ snapshots: '@open-draft/until@2.1.0': {} - '@pkgjs/parseargs@0.11.0': - optional: true - - '@pkgr/core@0.2.7': {} + '@pkgr/core@0.2.9': {} - '@rollup/rollup-android-arm-eabi@4.44.2': + '@rollup/rollup-android-arm-eabi@4.57.1': optional: true - '@rollup/rollup-android-arm64@4.44.2': + '@rollup/rollup-android-arm64@4.57.1': optional: true - '@rollup/rollup-darwin-arm64@4.44.2': + '@rollup/rollup-darwin-arm64@4.57.1': optional: true - '@rollup/rollup-darwin-x64@4.44.2': + '@rollup/rollup-darwin-x64@4.57.1': optional: true - '@rollup/rollup-freebsd-arm64@4.44.2': + '@rollup/rollup-freebsd-arm64@4.57.1': optional: true - '@rollup/rollup-freebsd-x64@4.44.2': + '@rollup/rollup-freebsd-x64@4.57.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.44.2': + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.44.2': + '@rollup/rollup-linux-arm-musleabihf@4.57.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.44.2': + '@rollup/rollup-linux-arm64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.44.2': + '@rollup/rollup-linux-arm64-musl@4.57.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.44.2': + '@rollup/rollup-linux-loong64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.44.2': + '@rollup/rollup-linux-loong64-musl@4.57.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.44.2': + '@rollup/rollup-linux-ppc64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-riscv64-musl@4.44.2': + '@rollup/rollup-linux-ppc64-musl@4.57.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.44.2': + '@rollup/rollup-linux-riscv64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.44.2': + '@rollup/rollup-linux-riscv64-musl@4.57.1': optional: true - '@rollup/rollup-linux-x64-musl@4.44.2': + '@rollup/rollup-linux-s390x-gnu@4.57.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.44.2': + '@rollup/rollup-linux-x64-gnu@4.57.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.44.2': + '@rollup/rollup-linux-x64-musl@4.57.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.44.2': + '@rollup/rollup-openbsd-x64@4.57.1': optional: true - '@rtsao/scc@1.1.0': {} + '@rollup/rollup-openharmony-arm64@4.57.1': + optional: true - '@tsconfig/node10@1.0.9': + '@rollup/rollup-win32-arm64-msvc@4.57.1': optional: true - '@tsconfig/node12@1.0.11': + '@rollup/rollup-win32-ia32-msvc@4.57.1': optional: true - '@tsconfig/node14@1.0.3': + '@rollup/rollup-win32-x64-gnu@4.57.1': optional: true - '@tsconfig/node16@1.0.4': + '@rollup/rollup-win32-x64-msvc@4.57.1': optional: true - '@tybys/wasm-util@0.9.0': + '@rtsao/scc@1.1.0': {} + + '@sinclair/typebox@0.27.10': {} + + '@size-limit/file@11.2.0(size-limit@11.2.0)': dependencies: - tslib: 2.6.2 - optional: true + size-limit: 11.2.0 + + '@tsd/typescript@5.4.5': {} - '@types/better-sqlite3@7.6.13': + '@tybys/wasm-util@0.10.1': dependencies: - '@types/node': 20.4.7 + tslib: 2.8.1 + optional: true - '@types/chai@5.2.2': + '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 '@types/deep-eql@4.0.2': {} + '@types/eslint@7.29.0': + dependencies: + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + '@types/estree@1.0.8': {} '@types/json-schema@7.0.15': {} '@types/json5@0.0.29': {} + '@types/minimist@1.2.5': {} + '@types/node@12.20.55': {} - '@types/node@20.4.7': {} + '@types/node@20.19.33': + dependencies: + undici-types: 6.21.0 + + '@types/normalize-package-data@2.4.4': {} + + '@types/pluralize@0.0.33': {} - '@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint@9.30.1)(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.35.1 - '@typescript-eslint/type-utils': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - '@typescript-eslint/utils': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.35.1 - eslint: 9.30.1 - graphemer: 1.4.0 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.56.0 + '@typescript-eslint/type-utils': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/utils': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.56.0 + eslint: 9.39.2(jiti@2.6.1) ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.8.3) + ts-api-utils: 2.4.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3)': + '@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 8.35.1 - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.35.1 - debug: 4.4.1 - eslint: 9.30.1 + '@typescript-eslint/scope-manager': 8.56.0 + '@typescript-eslint/types': 8.56.0 + '@typescript-eslint/typescript-estree': 8.56.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.56.0 + debug: 4.4.3 + eslint: 9.39.2(jiti@2.6.1) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.35.1(typescript@5.8.3)': + '@typescript-eslint/project-service@8.56.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.8.3) - '@typescript-eslint/types': 8.35.1 - debug: 4.4.1 + '@typescript-eslint/tsconfig-utils': 8.56.0(typescript@5.8.3) + '@typescript-eslint/types': 8.56.0 + debug: 4.4.3 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.35.1': + '@typescript-eslint/scope-manager@8.56.0': dependencies: - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/visitor-keys': 8.35.1 + '@typescript-eslint/types': 8.56.0 + '@typescript-eslint/visitor-keys': 8.56.0 - '@typescript-eslint/tsconfig-utils@8.35.1(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.56.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.35.1(eslint@9.30.1)(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3) - '@typescript-eslint/utils': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - debug: 4.4.1 - eslint: 9.30.1 - ts-api-utils: 2.1.0(typescript@5.8.3) + '@typescript-eslint/types': 8.56.0 + '@typescript-eslint/typescript-estree': 8.56.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + debug: 4.4.3 + eslint: 9.39.2(jiti@2.6.1) + ts-api-utils: 2.4.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.35.1': {} + '@typescript-eslint/types@8.56.0': {} - '@typescript-eslint/typescript-estree@8.35.1(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.56.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/project-service': 8.35.1(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.8.3) - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/visitor-keys': 8.35.1 - debug: 4.4.1 - fast-glob: 3.3.3 - is-glob: 4.0.3 + '@typescript-eslint/project-service': 8.56.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.56.0(typescript@5.8.3) + '@typescript-eslint/types': 8.56.0 + '@typescript-eslint/visitor-keys': 8.56.0 + debug: 4.4.3 minimatch: 9.0.5 - semver: 7.7.2 - ts-api-utils: 2.1.0(typescript@5.8.3) + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.4.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.35.1(eslint@9.30.1)(typescript@5.8.3)': + '@typescript-eslint/utils@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1) - '@typescript-eslint/scope-manager': 8.35.1 - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3) - eslint: 9.30.1 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1)) + '@typescript-eslint/scope-manager': 8.56.0 + '@typescript-eslint/types': 8.56.0 + '@typescript-eslint/typescript-estree': 8.56.0(typescript@5.8.3) + eslint: 9.39.2(jiti@2.6.1) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.35.1': + '@typescript-eslint/visitor-keys@8.56.0': dependencies: - '@typescript-eslint/types': 8.35.1 - eslint-visitor-keys: 4.2.1 + '@typescript-eslint/types': 8.56.0 + eslint-visitor-keys: 5.0.0 - '@unrs/resolver-binding-android-arm-eabi@1.10.1': + '@unrs/resolver-binding-android-arm-eabi@1.11.1': optional: true - '@unrs/resolver-binding-android-arm64@1.10.1': + '@unrs/resolver-binding-android-arm64@1.11.1': optional: true - '@unrs/resolver-binding-darwin-arm64@1.10.1': + '@unrs/resolver-binding-darwin-arm64@1.11.1': optional: true - '@unrs/resolver-binding-darwin-x64@1.10.1': + '@unrs/resolver-binding-darwin-x64@1.11.1': optional: true - '@unrs/resolver-binding-freebsd-x64@1.10.1': + '@unrs/resolver-binding-freebsd-x64@1.11.1': optional: true - '@unrs/resolver-binding-linux-arm-gnueabihf@1.10.1': + '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1': optional: true - '@unrs/resolver-binding-linux-arm-musleabihf@1.10.1': + '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1': optional: true - '@unrs/resolver-binding-linux-arm64-gnu@1.10.1': + '@unrs/resolver-binding-linux-arm64-gnu@1.11.1': optional: true - '@unrs/resolver-binding-linux-arm64-musl@1.10.1': + '@unrs/resolver-binding-linux-arm64-musl@1.11.1': optional: true - '@unrs/resolver-binding-linux-ppc64-gnu@1.10.1': + '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': optional: true - '@unrs/resolver-binding-linux-riscv64-gnu@1.10.1': + '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': optional: true - '@unrs/resolver-binding-linux-riscv64-musl@1.10.1': + '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': optional: true - '@unrs/resolver-binding-linux-s390x-gnu@1.10.1': + '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': optional: true - '@unrs/resolver-binding-linux-x64-gnu@1.10.1': + '@unrs/resolver-binding-linux-x64-gnu@1.11.1': optional: true - '@unrs/resolver-binding-linux-x64-musl@1.10.1': + '@unrs/resolver-binding-linux-x64-musl@1.11.1': optional: true - '@unrs/resolver-binding-wasm32-wasi@1.10.1': + '@unrs/resolver-binding-wasm32-wasi@1.11.1': dependencies: - '@napi-rs/wasm-runtime': 0.2.11 + '@napi-rs/wasm-runtime': 0.2.12 optional: true - '@unrs/resolver-binding-win32-arm64-msvc@1.10.1': + '@unrs/resolver-binding-win32-arm64-msvc@1.11.1': optional: true - '@unrs/resolver-binding-win32-ia32-msvc@1.10.1': + '@unrs/resolver-binding-win32-ia32-msvc@1.11.1': optional: true - '@unrs/resolver-binding-win32-x64-msvc@1.10.1': + '@unrs/resolver-binding-win32-x64-msvc@1.11.1': optional: true '@vitest/expect@3.2.4': dependencies: - '@types/chai': 5.2.2 + '@types/chai': 5.2.3 '@vitest/spy': 3.2.4 '@vitest/utils': 3.2.4 - chai: 5.2.0 + chai: 5.3.3 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@7.0.2(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0))': + '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.21 optionalDependencies: - vite: 7.0.2(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.3.1(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) '@vitest/pretty-format@3.2.4': dependencies: @@ -5860,31 +5485,28 @@ snapshots: dependencies: '@vitest/utils': 3.2.4 pathe: 2.0.3 - strip-literal: 3.0.0 + strip-literal: 3.1.0 '@vitest/snapshot@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 - magic-string: 0.30.17 + magic-string: 0.30.21 pathe: 2.0.3 '@vitest/spy@3.2.4': dependencies: - tinyspy: 4.0.3 + tinyspy: 4.0.4 '@vitest/utils@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 - loupe: 3.1.4 + loupe: 3.2.1 tinyrainbow: 2.0.0 acorn-jsx@5.3.2(acorn@8.15.0): dependencies: acorn: 8.15.0 - acorn-walk@8.2.0: - optional: true - acorn@8.15.0: {} ajv@6.12.6: @@ -5894,14 +5516,6 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.12.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - optional: true - ansi-colors@4.1.3: {} ansi-escapes@4.3.2: @@ -5910,23 +5524,14 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} - - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - ansi-styles@6.2.1: {} + ansi-styles@5.2.0: {} any-promise@1.3.0: {} - arg@4.1.3: - optional: true - argparse@1.0.10: dependencies: sprintf-js: 1.0.3 @@ -5943,7 +5548,7 @@ snapshots: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 is-string: 1.1.1 @@ -5956,7 +5561,7 @@ snapshots: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 es-object-atoms: 1.1.1 es-shim-unscopables: 1.1.0 @@ -5965,14 +5570,14 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-shim-unscopables: 1.1.0 array.prototype.flatmap@1.3.3: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-shim-unscopables: 1.1.0 arraybuffer.prototype.slice@1.0.4: @@ -5980,80 +5585,58 @@ snapshots: array-buffer-byte-length: 1.0.2 call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 + arrify@1.0.1: {} + assertion-error@2.0.1: {} async-function@1.0.0: {} - asynckit@0.4.0: {} - - at-least-node@1.0.0: {} - available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.1.0 - axios@1.10.0: - dependencies: - follow-redirects: 1.15.9 - form-data: 4.0.3 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - balanced-match@1.0.2: {} - base64-js@1.5.1: {} + balanced-match@4.0.2: + dependencies: + jackspeak: 4.2.3 better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - better-sqlite3@12.2.0: - dependencies: - bindings: 1.5.0 - prebuild-install: 7.1.3 - - bindings@1.5.0: - dependencies: - file-uri-to-path: 1.0.0 - - bl@4.1.0: - dependencies: - buffer: 5.7.1 - inherits: 2.0.4 - readable-stream: 3.6.2 + boolbase@1.0.0: {} - brace-expansion@1.1.11: + brace-expansion@1.1.12: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.1: + brace-expansion@2.0.2: dependencies: balanced-match: 1.0.2 - braces@3.0.3: + brace-expansion@5.0.2: dependencies: - fill-range: 7.1.1 + balanced-match: 4.0.2 - buffer@5.7.1: + braces@3.0.3: dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 + fill-range: 7.1.1 - bundle-require@5.1.0(esbuild@0.25.5): + bundle-require@5.1.0(esbuild@0.25.12): dependencies: - esbuild: 0.25.5 + esbuild: 0.25.12 load-tsconfig: 0.2.5 - cac@6.7.14: {} + bytes-iec@3.1.1: {} - cachedir@2.3.0: {} + cac@6.7.14: {} call-bind-apply-helpers@1.0.2: dependencies: @@ -6074,133 +5657,91 @@ snapshots: callsites@3.1.0: {} - chai@5.2.0: + camelcase-keys@6.2.2: + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + + camelcase@5.3.1: {} + + chai@5.3.3: dependencies: assertion-error: 2.0.1 - check-error: 2.1.1 + check-error: 2.1.3 deep-eql: 5.0.2 - loupe: 3.1.4 + loupe: 3.2.1 pathval: 2.0.1 - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - chardet@0.7.0: {} - - check-error@2.1.1: {} - - chokidar@4.0.3: - dependencies: - readdirp: 4.1.2 + change-case@5.4.4: {} - chownr@1.1.4: {} + chardet@2.1.1: {} - ci-info@3.9.0: {} + check-error@2.1.3: {} - cli-cursor@3.1.0: + cheerio-select@2.1.0: dependencies: - restore-cursor: 3.1.0 - - cli-spinners@2.9.0: {} - - cli-width@3.0.0: {} + boolbase: 1.0.0 + css-select: 5.2.2 + css-what: 6.2.2 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.2.2 - clone@1.0.4: {} + cheerio@1.2.0: + dependencies: + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.2.2 + encoding-sniffer: 0.2.1 + htmlparser2: 10.1.0 + parse5: 7.3.0 + parse5-htmlparser2-tree-adapter: 7.1.0 + parse5-parser-stream: 7.1.2 + undici: 7.22.0 + whatwg-mimetype: 4.0.0 - color-convert@1.9.3: + chokidar@4.0.3: dependencies: - color-name: 1.1.3 + readdirp: 4.1.2 + + ci-info@3.9.0: {} color-convert@2.0.1: dependencies: color-name: 1.1.4 - color-name@1.1.3: {} - color-name@1.1.4: {} - combined-stream@1.0.8: - dependencies: - delayed-stream: 1.0.0 - commander@4.1.1: {} - commitizen@4.3.1: - dependencies: - cachedir: 2.3.0 - cz-conventional-changelog: 3.3.0 - dedent: 0.7.0 - detect-indent: 6.1.0 - find-node-modules: 2.1.3 - find-root: 1.1.0 - fs-extra: 9.1.0 - glob: 7.2.3 - inquirer: 8.2.5 - is-utf8: 0.2.1 - lodash: 4.17.21 - minimist: 1.2.7 - strip-bom: 4.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - concat-map@0.0.1: {} confbox@0.1.8: {} consola@3.4.2: {} - conventional-commit-types@3.0.0: {} - - cosmiconfig-typescript-loader@4.4.0(@types/node@20.4.7)(cosmiconfig@8.3.4(typescript@5.8.3))(ts-node@10.9.2(@types/node@20.4.7)(typescript@5.8.3))(typescript@5.8.3): - dependencies: - '@types/node': 20.4.7 - cosmiconfig: 8.3.4(typescript@5.8.3) - ts-node: 10.9.2(@types/node@20.4.7)(typescript@5.8.3) - typescript: 5.8.3 - optional: true - - cosmiconfig@8.3.4(typescript@5.8.3): - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 5.8.3 - optional: true - - create-require@1.1.1: - optional: true - cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - cz-conventional-changelog@3.3.0: + css-select@5.2.2: dependencies: - chalk: 2.4.2 - commitizen: 4.3.1 - conventional-commit-types: 3.0.0 - lodash.map: 4.6.0 - longest: 2.0.1 - word-wrap: 1.2.5 - optionalDependencies: - '@commitlint/load': 17.7.1 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + + css-what@6.2.2: {} data-view-buffer@1.0.2: dependencies: @@ -6224,26 +5765,21 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.4.1: + debug@4.4.3: dependencies: ms: 2.1.3 - decompress-response@6.0.0: + decamelize-keys@1.1.1: dependencies: - mimic-response: 3.1.0 + decamelize: 1.2.0 + map-obj: 1.0.1 - dedent@0.7.0: {} + decamelize@1.2.0: {} deep-eql@5.0.2: {} - deep-extend@0.6.0: {} - deep-is@0.1.4: {} - defaults@1.0.4: - dependencies: - clone: 1.0.4 - define-data-property@1.1.4: dependencies: es-define-property: 1.0.1 @@ -6256,16 +5792,9 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 - delayed-stream@1.0.0: {} - - detect-file@1.0.0: {} - detect-indent@6.1.0: {} - detect-libc@2.0.4: {} - - diff@4.0.2: - optional: true + diff-sequences@29.6.3: {} dir-glob@3.0.1: dependencies: @@ -6275,10 +5804,23 @@ snapshots: dependencies: esutils: 2.0.3 - drizzle-orm@0.33.0(@types/better-sqlite3@7.6.13)(better-sqlite3@12.2.0): - optionalDependencies: - '@types/better-sqlite3': 7.6.13 - better-sqlite3: 12.2.0 + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + + domelementtype@2.3.0: {} + + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 dunder-proto@1.0.1: dependencies: @@ -6286,27 +5828,29 @@ snapshots: es-errors: 1.3.0 gopd: 1.2.0 - eastasianwidth@0.2.0: {} - emoji-regex@8.0.0: {} - emoji-regex@9.2.2: {} - - end-of-stream@1.4.5: + encoding-sniffer@0.2.1: dependencies: - once: 1.4.0 + iconv-lite: 0.6.3 + whatwg-encoding: 3.1.1 enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - error-ex@1.3.2: + entities@4.5.0: {} + + entities@6.0.1: {} + + entities@7.0.1: {} + + error-ex@1.3.4: dependencies: is-arrayish: 0.2.1 - optional: true - es-abstract@1.24.0: + es-abstract@1.24.1: dependencies: array-buffer-byte-length: 1.0.2 arraybuffer.prototype.slice: 1.0.4 @@ -6361,7 +5905,7 @@ snapshots: typed-array-byte-offset: 1.0.4 typed-array-length: 1.0.7 unbox-primitive: 1.1.0 - which-typed-array: 1.1.19 + which-typed-array: 1.1.20 es-define-property@1.0.1: {} @@ -6390,84 +5934,123 @@ snapshots: is-date-object: 1.1.0 is-symbol: 1.1.1 - esbuild@0.25.5: + esbuild@0.25.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 + + esbuild@0.27.3: optionalDependencies: - '@esbuild/aix-ppc64': 0.25.5 - '@esbuild/android-arm': 0.25.5 - '@esbuild/android-arm64': 0.25.5 - '@esbuild/android-x64': 0.25.5 - '@esbuild/darwin-arm64': 0.25.5 - '@esbuild/darwin-x64': 0.25.5 - '@esbuild/freebsd-arm64': 0.25.5 - '@esbuild/freebsd-x64': 0.25.5 - '@esbuild/linux-arm': 0.25.5 - '@esbuild/linux-arm64': 0.25.5 - '@esbuild/linux-ia32': 0.25.5 - '@esbuild/linux-loong64': 0.25.5 - '@esbuild/linux-mips64el': 0.25.5 - '@esbuild/linux-ppc64': 0.25.5 - '@esbuild/linux-riscv64': 0.25.5 - '@esbuild/linux-s390x': 0.25.5 - '@esbuild/linux-x64': 0.25.5 - '@esbuild/netbsd-arm64': 0.25.5 - '@esbuild/netbsd-x64': 0.25.5 - '@esbuild/openbsd-arm64': 0.25.5 - '@esbuild/openbsd-x64': 0.25.5 - '@esbuild/sunos-x64': 0.25.5 - '@esbuild/win32-arm64': 0.25.5 - '@esbuild/win32-ia32': 0.25.5 - '@esbuild/win32-x64': 0.25.5 - - escape-string-regexp@1.0.5: {} + '@esbuild/aix-ppc64': 0.27.3 + '@esbuild/android-arm': 0.27.3 + '@esbuild/android-arm64': 0.27.3 + '@esbuild/android-x64': 0.27.3 + '@esbuild/darwin-arm64': 0.27.3 + '@esbuild/darwin-x64': 0.27.3 + '@esbuild/freebsd-arm64': 0.27.3 + '@esbuild/freebsd-x64': 0.27.3 + '@esbuild/linux-arm': 0.27.3 + '@esbuild/linux-arm64': 0.27.3 + '@esbuild/linux-ia32': 0.27.3 + '@esbuild/linux-loong64': 0.27.3 + '@esbuild/linux-mips64el': 0.27.3 + '@esbuild/linux-ppc64': 0.27.3 + '@esbuild/linux-riscv64': 0.27.3 + '@esbuild/linux-s390x': 0.27.3 + '@esbuild/linux-x64': 0.27.3 + '@esbuild/netbsd-arm64': 0.27.3 + '@esbuild/netbsd-x64': 0.27.3 + '@esbuild/openbsd-arm64': 0.27.3 + '@esbuild/openbsd-x64': 0.27.3 + '@esbuild/openharmony-arm64': 0.27.3 + '@esbuild/sunos-x64': 0.27.3 + '@esbuild/win32-arm64': 0.27.3 + '@esbuild/win32-ia32': 0.27.3 + '@esbuild/win32-x64': 0.27.3 escape-string-regexp@4.0.0: {} - eslint-config-prettier@10.1.5(eslint@9.30.1): + eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.6.1)): dependencies: - eslint: 9.30.1 + eslint: 9.39.2(jiti@2.6.1) - eslint-import-context@0.1.9(unrs-resolver@1.10.1): + eslint-formatter-pretty@4.1.0: dependencies: - get-tsconfig: 4.10.1 + '@types/eslint': 7.29.0 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + eslint-rule-docs: 1.1.235 + log-symbols: 4.1.0 + plur: 4.0.0 + string-width: 4.2.3 + supports-hyperlinks: 2.3.0 + + eslint-import-context@0.1.9(unrs-resolver@1.11.1): + dependencies: + get-tsconfig: 4.13.6 stable-hash-x: 0.2.0 optionalDependencies: - unrs-resolver: 1.10.1 + unrs-resolver: 1.11.1 eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 is-core-module: 2.16.1 - resolve: 1.22.4 + resolve: 1.22.11 transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.30.1): + eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)): dependencies: - debug: 4.4.1 - eslint: 9.30.1 - eslint-import-context: 0.1.9(unrs-resolver@1.10.1) - get-tsconfig: 4.10.1 + debug: 4.4.3 + eslint: 9.39.2(jiti@2.6.1) + eslint-import-context: 0.1.9(unrs-resolver@1.11.1) + get-tsconfig: 4.13.6 is-bun-module: 2.0.0 stable-hash-x: 0.2.0 - tinyglobby: 0.2.14 - unrs-resolver: 1.10.1 + tinyglobby: 0.2.15 + unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.30.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.30.1): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - eslint: 9.30.1 + '@typescript-eslint/parser': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + eslint: 9.39.2(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.30.1) + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.30.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -6476,9 +6059,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.30.1 + eslint: 9.39.2(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.30.1) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -6490,20 +6073,22 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.35.1(eslint@9.30.1)(typescript@5.8.3) + '@typescript-eslint/parser': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-prettier@5.5.1(eslint-config-prettier@10.1.5(eslint@9.30.1))(eslint@9.30.1)(prettier@3.6.2): + eslint-plugin-prettier@5.5.5(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(prettier@3.6.2): dependencies: - eslint: 9.30.1 + eslint: 9.39.2(jiti@2.6.1) prettier: 3.6.2 - prettier-linter-helpers: 1.0.0 - synckit: 0.11.8 + prettier-linter-helpers: 1.0.1 + synckit: 0.11.12 optionalDependencies: - eslint-config-prettier: 10.1.5(eslint@9.30.1) + eslint-config-prettier: 10.1.8(eslint@9.39.2(jiti@2.6.1)) + + eslint-rule-docs@1.1.235: {} eslint-scope@8.4.0: dependencies: @@ -6514,43 +6099,46 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.30.1: - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.30.1) - '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.21.0 - '@eslint/config-helpers': 0.3.0 - '@eslint/core': 0.14.0 - '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.30.1 - '@eslint/plugin-kit': 0.3.3 - '@humanfs/node': 0.16.6 + eslint-visitor-keys@5.0.0: {} + + eslint@9.39.2(jiti@2.6.1): + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.21.1 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 + '@eslint/eslintrc': 3.3.3 + '@eslint/js': 9.39.2 + '@eslint/plugin-kit': 0.4.1 + '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 '@types/estree': 1.0.8 - '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.1 + debug: 4.4.3 escape-string-regexp: 4.0.0 eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 - esquery: 1.5.0 + esquery: 1.7.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - ignore: 5.2.4 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 json-stable-stringify-without-jsonify: 1.0.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.6.1 transitivePeerDependencies: - supports-color @@ -6562,7 +6150,7 @@ snapshots: esprima@4.0.1: {} - esquery@1.5.0: + esquery@1.7.0: dependencies: estraverse: 5.3.0 @@ -6578,22 +6166,10 @@ snapshots: esutils@2.0.3: {} - expand-template@2.0.3: {} - - expand-tilde@2.0.2: - dependencies: - homedir-polyfill: 1.0.3 - - expect-type@1.2.1: {} + expect-type@1.3.0: {} extendable-error@0.1.7: {} - external-editor@3.1.0: - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - fast-deep-equal@3.1.3: {} fast-diff@1.3.0: {} @@ -6612,35 +6188,22 @@ snapshots: fast-safe-stringify@2.1.1: {} - fastq@1.15.0: + fastq@1.20.1: dependencies: - reusify: 1.0.4 + reusify: 1.1.0 - fdir@6.4.6(picomatch@4.0.2): + fdir@6.5.0(picomatch@4.0.3): optionalDependencies: - picomatch: 4.0.2 - - figures@3.2.0: - dependencies: - escape-string-regexp: 1.0.5 + picomatch: 4.0.3 file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 - file-uri-to-path@1.0.0: {} - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - find-node-modules@2.1.3: - dependencies: - findup-sync: 4.0.0 - merge: 2.1.1 - - find-root@1.1.0: {} - find-up@4.1.0: dependencies: locate-path: 5.0.0 @@ -6651,18 +6214,11 @@ snapshots: locate-path: 6.0.0 path-exists: 4.0.0 - findup-sync@4.0.0: - dependencies: - detect-file: 1.0.0 - is-glob: 4.0.3 - micromatch: 4.0.8 - resolve-dir: 1.0.1 - fix-dts-default-cjs-exports@1.0.1: dependencies: - magic-string: 0.30.17 - mlly: 1.7.4 - rollup: 4.44.2 + magic-string: 0.30.21 + mlly: 1.8.0 + rollup: 4.57.1 flat-cache@4.0.1: dependencies: @@ -6671,8 +6227,6 @@ snapshots: flatted@3.3.3: {} - follow-redirects@1.15.9: {} - for-each@0.3.5: dependencies: is-callable: 1.2.7 @@ -6682,16 +6236,6 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 - form-data@4.0.3: - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - es-set-tostringtag: 2.1.0 - hasown: 2.0.2 - mime-types: 2.1.35 - - fs-constants@1.0.0: {} - fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 @@ -6704,15 +6248,6 @@ snapshots: jsonfile: 4.0.0 universalify: 0.1.2 - fs-extra@9.1.0: - dependencies: - at-least-node: 1.0.0 - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - - fs.realpath@1.0.0: {} - fsevents@2.3.3: optional: true @@ -6729,6 +6264,8 @@ snapshots: functions-have-names@1.2.3: {} + generator-function@2.0.1: {} + get-intrinsic@1.3.0: dependencies: call-bind-apply-helpers: 1.0.2 @@ -6753,12 +6290,10 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 - get-tsconfig@4.10.1: + get-tsconfig@4.13.6: dependencies: resolve-pkg-maps: 1.0.0 - github-from-package@0.0.0: {} - glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -6767,55 +6302,18 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.4.5: - dependencies: - foreground-child: 3.3.1 - jackspeak: 3.4.3 - minimatch: 9.0.5 - minipass: 7.1.2 - package-json-from-dist: 1.0.1 - path-scurry: 1.11.1 - - glob@11.0.3: + glob@11.1.0: dependencies: foreground-child: 3.3.1 - jackspeak: 4.1.1 - minimatch: 10.0.3 + jackspeak: 4.2.3 + minimatch: 10.2.0 minipass: 7.1.2 package-json-from-dist: 1.0.1 - path-scurry: 2.0.0 - - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - - global-dirs@0.1.1: - dependencies: - ini: 1.3.8 - optional: true - - global-modules@1.0.0: - dependencies: - global-prefix: 1.0.2 - is-windows: 1.0.2 - resolve-dir: 1.0.1 - - global-prefix@1.0.2: - dependencies: - expand-tilde: 2.0.2 - homedir-polyfill: 1.0.3 - ini: 1.3.8 - is-windows: 1.0.2 - which: 1.3.1 + path-scurry: 2.0.1 globals@14.0.0: {} - globals@16.3.0: {} + globals@16.5.0: {} globalthis@1.0.4: dependencies: @@ -6827,7 +6325,7 @@ snapshots: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.3 - ignore: 5.2.4 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 @@ -6835,11 +6333,9 @@ snapshots: graceful-fs@4.2.11: {} - graphemer@1.4.0: {} + hard-rejection@2.1.0: {} - has-bigints@1.0.2: {} - - has-flag@3.0.0: {} + has-bigints@1.1.0: {} has-flag@4.0.0: {} @@ -6861,57 +6357,43 @@ snapshots: dependencies: function-bind: 1.1.2 - homedir-polyfill@1.0.3: + hosted-git-info@2.8.9: {} + + hosted-git-info@4.1.0: + dependencies: + lru-cache: 6.0.0 + + htmlparser2@10.1.0: dependencies: - parse-passwd: 1.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.2.2 + entities: 7.0.1 - human-id@4.1.1: {} + human-id@4.1.3: {} husky@9.1.7: {} - iconv-lite@0.4.24: + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - ieee754@1.2.1: {} + iconv-lite@0.7.2: + dependencies: + safer-buffer: 2.1.2 - ignore@5.2.4: {} + ignore@5.3.2: {} ignore@7.0.5: {} - import-fresh@3.3.0: + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 imurmurhash@0.1.4: {} - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - - inherits@2.0.4: {} - - ini@1.3.8: {} - - inquirer@8.2.5: - dependencies: - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-width: 3.0.0 - external-editor: 3.1.0 - figures: 3.2.0 - lodash: 4.17.21 - mute-stream: 0.0.8 - ora: 5.4.1 - run-async: 2.4.1 - rxjs: 7.8.1 - string-width: 4.2.3 - strip-ansi: 6.0.1 - through: 2.3.8 - wrap-ansi: 7.0.0 + indent-string@4.0.0: {} internal-slot@1.1.0: dependencies: @@ -6919,14 +6401,15 @@ snapshots: hasown: 2.0.2 side-channel: 1.1.0 + irregular-plurals@3.5.0: {} + is-array-buffer@3.0.5: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 get-intrinsic: 1.3.0 - is-arrayish@0.2.1: - optional: true + is-arrayish@0.2.1: {} is-async-function@2.1.1: dependencies: @@ -6938,7 +6421,7 @@ snapshots: is-bigint@1.1.0: dependencies: - has-bigints: 1.0.2 + has-bigints: 1.1.0 is-boolean-object@1.2.2: dependencies: @@ -6947,7 +6430,7 @@ snapshots: is-bun-module@2.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.4 is-callable@1.2.7: {} @@ -6974,9 +6457,10 @@ snapshots: is-fullwidth-code-point@3.0.0: {} - is-generator-function@1.1.0: + is-generator-function@1.1.2: dependencies: call-bound: 1.0.4 + generator-function: 2.0.1 get-proto: 1.0.1 has-tostringtag: 1.0.2 safe-regex-test: 1.1.0 @@ -6985,8 +6469,6 @@ snapshots: dependencies: is-extglob: 2.1.1 - is-interactive@1.0.0: {} - is-map@2.0.3: {} is-negative-zero@2.0.3: {} @@ -7000,6 +6482,8 @@ snapshots: is-number@7.0.0: {} + is-plain-obj@1.1.0: {} + is-regex@1.2.1: dependencies: call-bound: 1.0.4 @@ -7030,12 +6514,10 @@ snapshots: is-typed-array@1.1.15: dependencies: - which-typed-array: 1.1.19 + which-typed-array: 1.1.20 is-unicode-supported@0.1.0: {} - is-utf8@0.2.1: {} - is-weakmap@2.0.2: {} is-weakref@1.1.1: @@ -7053,42 +6535,42 @@ snapshots: isexe@2.0.0: {} - jackspeak@3.4.3: + jackspeak@4.2.3: dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 + '@isaacs/cliui': 9.0.0 - jackspeak@4.1.1: + jest-diff@29.7.0: dependencies: - '@isaacs/cliui': 8.0.2 + chalk: 4.1.2 + diff-sequences: 29.6.3 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-get-type@29.6.3: {} + + jiti@2.6.1: {} joycon@3.1.1: {} - js-tokens@4.0.0: - optional: true + js-tokens@4.0.0: {} js-tokens@9.0.1: {} - js-yaml@3.14.1: + js-yaml@3.14.2: dependencies: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: + js-yaml@4.1.1: dependencies: argparse: 2.0.1 json-buffer@3.0.1: {} - json-parse-even-better-errors@2.3.1: - optional: true + json-parse-even-better-errors@2.3.1: {} json-schema-traverse@0.4.1: {} - json-schema-traverse@1.0.0: - optional: true - json-stable-stringify-without-jsonify@1.0.1: {} json-stringify-safe@5.0.1: {} @@ -7101,16 +6583,12 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jsonfile@6.1.0: - dependencies: - universalify: 2.0.0 - optionalDependencies: - graceful-fs: 4.2.11 - keyv@4.5.4: dependencies: json-buffer: 3.0.1 + kind-of@6.0.3: {} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 @@ -7130,99 +6608,92 @@ snapshots: dependencies: p-locate: 5.0.0 - lodash.isplainobject@4.0.6: - optional: true - - lodash.map@4.6.0: {} - lodash.merge@4.6.2: {} - lodash.mergewith@4.6.2: - optional: true - lodash.sortby@4.7.0: {} lodash.startcase@4.4.0: {} - lodash.uniq@4.5.0: - optional: true - - lodash@4.17.21: {} - log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - longest@2.0.1: {} + loupe@3.2.1: {} - loupe@3.1.4: {} + lru-cache@11.2.6: {} - lru-cache@10.4.3: {} - - lru-cache@11.1.0: {} + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 - magic-string@0.30.17: + magic-string@0.30.21: dependencies: - '@jridgewell/sourcemap-codec': 1.5.4 + '@jridgewell/sourcemap-codec': 1.5.5 - make-error@1.3.6: - optional: true + map-obj@1.0.1: {} + + map-obj@4.3.0: {} math-intrinsics@1.1.0: {} - merge2@1.4.1: {} + meow@9.0.0: + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize: 1.2.0 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 - merge@2.1.1: {} + merge2@1.4.1: {} micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - mime-db@1.52.0: {} - - mime-types@2.1.35: - dependencies: - mime-db: 1.52.0 - - mimic-fn@2.1.0: {} - - mimic-response@3.1.0: {} + min-indent@1.0.1: {} - minimatch@10.0.3: + minimatch@10.2.0: dependencies: - '@isaacs/brace-expansion': 5.0.0 + brace-expansion: 5.0.2 minimatch@3.1.2: dependencies: - brace-expansion: 1.1.11 + brace-expansion: 1.1.12 minimatch@9.0.5: dependencies: - brace-expansion: 2.0.1 + brace-expansion: 2.0.2 - minimist@1.2.7: {} + minimist-options@4.1.0: + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 minimist@1.2.8: {} minipass@7.1.2: {} - mkdirp-classic@0.5.3: {} - - mlly@1.7.4: + mlly@1.8.0: dependencies: acorn: 8.15.0 pathe: 2.0.3 pkg-types: 1.3.1 - ufo: 1.6.1 + ufo: 1.6.3 mri@1.2.0: {} ms@2.1.3: {} - mute-stream@0.0.8: {} - mz@2.7.0: dependencies: any-promise: 1.3.0 @@ -7231,9 +6702,11 @@ snapshots: nanoid@3.3.11: {} - napi-build-utils@2.0.0: {} + nanospinner@1.2.2: + dependencies: + picocolors: 1.1.1 - napi-postinstall@0.3.0: {} + napi-postinstall@0.3.4: {} natural-compare@1.4.0: {} @@ -7243,9 +6716,23 @@ snapshots: json-stringify-safe: 5.0.1 propagate: 2.0.1 - node-abi@3.75.0: + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.11 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-package-data@3.0.3: + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.16.1 + semver: 7.7.4 + validate-npm-package-license: 3.0.4 + + nth-check@2.1.1: dependencies: - semver: 7.7.2 + boolbase: 1.0.0 object-assign@4.1.1: {} @@ -7266,14 +6753,14 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-object-atoms: 1.1.1 object.groupby@1.0.3: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 object.values@1.2.1: dependencies: @@ -7282,36 +6769,14 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.1.1 - once@1.4.0: + optionator@0.9.4: dependencies: - wrappy: 1.0.2 - - onetime@5.1.2: - dependencies: - mimic-fn: 2.1.0 - - optionator@0.9.3: - dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - - ora@5.4.1: - dependencies: - bl: 4.1.0 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.9.0 - is-interactive: 1.0.0 - is-unicode-supported: 0.1.0 - log-symbols: 4.1.0 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - - os-tmpdir@1.0.2: {} + word-wrap: 1.2.5 outdent@0.5.0: {} @@ -7351,7 +6816,7 @@ snapshots: package-manager-detector@0.2.11: dependencies: - quansync: 0.2.10 + quansync: 0.2.11 parent-module@1.0.1: dependencies: @@ -7359,30 +6824,33 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.22.13 - error-ex: 1.3.2 + '@babel/code-frame': 7.29.0 + error-ex: 1.3.4 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - optional: true - parse-passwd@1.0.0: {} + parse5-htmlparser2-tree-adapter@7.1.0: + dependencies: + domhandler: 5.0.3 + parse5: 7.3.0 - path-exists@4.0.0: {} + parse5-parser-stream@7.1.2: + dependencies: + parse5: 7.3.0 - path-is-absolute@1.0.1: {} + parse5@7.3.0: + dependencies: + entities: 6.0.1 + + path-exists@4.0.0: {} path-key@3.1.1: {} path-parse@1.0.7: {} - path-scurry@1.11.1: - dependencies: - lru-cache: 10.4.3 - minipass: 7.1.2 - - path-scurry@2.0.0: + path-scurry@2.0.1: dependencies: - lru-cache: 11.1.0 + lru-cache: 11.2.6 minipass: 7.1.2 path-type@4.0.0: {} @@ -7395,7 +6863,7 @@ snapshots: picomatch@2.3.1: {} - picomatch@4.0.2: {} + picomatch@4.0.3: {} pify@4.0.1: {} @@ -7404,18 +6872,25 @@ snapshots: pkg-types@1.3.1: dependencies: confbox: 0.1.8 - mlly: 1.7.4 + mlly: 1.8.0 pathe: 2.0.3 + plur@4.0.0: + dependencies: + irregular-plurals: 3.5.0 + + pluralize@8.0.0: {} + possible-typed-array-names@1.1.0: {} - postcss-load-config@6.0.1(postcss@8.5.6)(tsx@4.20.3)(yaml@2.8.0): + postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2): dependencies: lilconfig: 3.1.3 optionalDependencies: + jiti: 2.6.1 postcss: 8.5.6 - tsx: 4.20.3 - yaml: 2.8.0 + tsx: 4.21.0 + yaml: 2.8.2 postcss@8.5.6: dependencies: @@ -7423,24 +6898,9 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - prebuild-install@7.1.3: - dependencies: - detect-libc: 2.0.4 - expand-template: 2.0.3 - github-from-package: 0.0.0 - minimist: 1.2.8 - mkdirp-classic: 0.5.3 - napi-build-utils: 2.0.0 - node-abi: 3.75.0 - pump: 3.0.3 - rc: 1.2.8 - simple-get: 4.0.1 - tar-fs: 2.1.3 - tunnel-agent: 0.6.0 - prelude-ls@1.2.1: {} - prettier-linter-helpers@1.0.0: + prettier-linter-helpers@1.0.1: dependencies: fast-diff: 1.3.0 @@ -7448,48 +6908,56 @@ snapshots: prettier@3.6.2: {} + pretty-format@29.7.0: + dependencies: + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.3.1 + propagate@2.0.1: {} - proxy-from-env@1.1.0: {} + punycode@2.3.1: {} - pump@3.0.3: - dependencies: - end-of-stream: 1.4.5 - once: 1.4.0 + quansync@0.2.11: {} + + queue-microtask@1.2.3: {} - punycode@2.3.0: {} + quick-lru@4.0.1: {} - quansync@0.2.10: {} + react-is@18.3.1: {} - queue-microtask@1.2.3: {} + read-pkg-up@7.0.1: + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 - rc@1.2.8: + read-pkg@5.2.0: dependencies: - deep-extend: 0.6.0 - ini: 1.3.8 - minimist: 1.2.8 - strip-json-comments: 2.0.1 + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 - js-yaml: 3.14.1 + js-yaml: 3.14.2 pify: 4.0.1 strip-bom: 3.0.0 - readable-stream@3.6.2: - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - readdirp@4.1.2: {} + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + reflect.getprototypeof@1.0.10: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 @@ -7505,79 +6973,60 @@ snapshots: gopd: 1.2.0 set-function-name: 2.0.2 - require-from-string@2.0.2: - optional: true - - resolve-dir@1.0.1: - dependencies: - expand-tilde: 2.0.2 - global-modules: 1.0.0 - resolve-from@4.0.0: {} resolve-from@5.0.0: {} - resolve-global@1.0.0: - dependencies: - global-dirs: 0.1.1 - optional: true - resolve-pkg-maps@1.0.0: {} - resolve@1.22.4: + resolve@1.22.11: dependencies: is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - restore-cursor@3.1.0: - dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - - reusify@1.0.4: {} + reusify@1.1.0: {} rimraf@6.0.1: dependencies: - glob: 11.0.3 + glob: 11.1.0 package-json-from-dist: 1.0.1 - rollup@4.44.2: + rollup@4.57.1: dependencies: '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.44.2 - '@rollup/rollup-android-arm64': 4.44.2 - '@rollup/rollup-darwin-arm64': 4.44.2 - '@rollup/rollup-darwin-x64': 4.44.2 - '@rollup/rollup-freebsd-arm64': 4.44.2 - '@rollup/rollup-freebsd-x64': 4.44.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.44.2 - '@rollup/rollup-linux-arm-musleabihf': 4.44.2 - '@rollup/rollup-linux-arm64-gnu': 4.44.2 - '@rollup/rollup-linux-arm64-musl': 4.44.2 - '@rollup/rollup-linux-loongarch64-gnu': 4.44.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.44.2 - '@rollup/rollup-linux-riscv64-gnu': 4.44.2 - '@rollup/rollup-linux-riscv64-musl': 4.44.2 - '@rollup/rollup-linux-s390x-gnu': 4.44.2 - '@rollup/rollup-linux-x64-gnu': 4.44.2 - '@rollup/rollup-linux-x64-musl': 4.44.2 - '@rollup/rollup-win32-arm64-msvc': 4.44.2 - '@rollup/rollup-win32-ia32-msvc': 4.44.2 - '@rollup/rollup-win32-x64-msvc': 4.44.2 + '@rollup/rollup-android-arm-eabi': 4.57.1 + '@rollup/rollup-android-arm64': 4.57.1 + '@rollup/rollup-darwin-arm64': 4.57.1 + '@rollup/rollup-darwin-x64': 4.57.1 + '@rollup/rollup-freebsd-arm64': 4.57.1 + '@rollup/rollup-freebsd-x64': 4.57.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 + '@rollup/rollup-linux-arm64-musl': 4.57.1 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 + '@rollup/rollup-linux-loong64-musl': 4.57.1 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 + '@rollup/rollup-linux-x64-gnu': 4.57.1 + '@rollup/rollup-linux-x64-musl': 4.57.1 + '@rollup/rollup-openbsd-x64': 4.57.1 + '@rollup/rollup-openharmony-arm64': 4.57.1 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 + '@rollup/rollup-win32-x64-gnu': 4.57.1 + '@rollup/rollup-win32-x64-msvc': 4.57.1 fsevents: 2.3.3 - run-async@2.4.1: {} - run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - rxjs@7.8.1: - dependencies: - tslib: 2.6.2 - safe-array-concat@1.1.3: dependencies: call-bind: 1.0.8 @@ -7586,8 +7035,6 @@ snapshots: has-symbols: 1.1.0 isarray: 2.0.5 - safe-buffer@5.2.1: {} - safe-push-apply@1.0.0: dependencies: es-errors: 1.3.0 @@ -7601,9 +7048,11 @@ snapshots: safer-buffer@2.1.2: {} + semver@5.7.2: {} + semver@6.3.1: {} - semver@7.7.2: {} + semver@7.7.4: {} set-function-length@1.2.2: dependencies: @@ -7663,17 +7112,17 @@ snapshots: siginfo@2.0.0: {} - signal-exit@3.0.7: {} - signal-exit@4.1.0: {} - simple-concat@1.0.1: {} - - simple-get@4.0.1: + size-limit@11.2.0: dependencies: - decompress-response: 6.0.0 - once: 1.4.0 - simple-concat: 1.0.1 + bytes-iec: 3.1.1 + chokidar: 4.0.3 + jiti: 2.6.1 + lilconfig: 3.1.3 + nanospinner: 1.2.2 + picocolors: 1.1.1 + tinyglobby: 0.2.15 slash@3.0.0: {} @@ -7688,13 +7137,27 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.22 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.22 + + spdx-license-ids@3.0.22: {} + sprintf-js@1.0.3: {} stable-hash-x@0.2.0: {} stackback@0.0.2: {} - std-env@3.9.0: {} + std-env@3.10.0: {} stop-iteration-iterator@1.1.0: dependencies: @@ -7709,19 +7172,13 @@ snapshots: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.1.0 - string.prototype.trim@1.2.10: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-object-atoms: 1.1.1 has-property-descriptors: 1.0.2 @@ -7738,68 +7195,46 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.1.1 - string_decoder@1.3.0: - dependencies: - safe-buffer: 5.2.1 - strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - strip-ansi@7.1.0: - dependencies: - ansi-regex: 6.0.1 - strip-bom@3.0.0: {} - strip-bom@4.0.0: {} - - strip-json-comments@2.0.1: {} + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 strip-json-comments@3.1.1: {} - strip-literal@3.0.0: + strip-literal@3.1.0: dependencies: js-tokens: 9.0.1 - sucrase@3.35.0: + sucrase@3.35.1: dependencies: - '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/gen-mapping': 0.3.13 commander: 4.1.1 - glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.7 + tinyglobby: 0.2.15 ts-interface-checker: 0.1.13 - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - supports-color@7.2.0: dependencies: has-flag: 4.0.0 - supports-preserve-symlinks-flag@1.0.0: {} - - synckit@0.11.8: + supports-hyperlinks@2.3.0: dependencies: - '@pkgr/core': 0.2.7 + has-flag: 4.0.0 + supports-color: 7.2.0 - tar-fs@2.1.3: - dependencies: - chownr: 1.1.4 - mkdirp-classic: 0.5.3 - pump: 3.0.3 - tar-stream: 2.2.0 + supports-preserve-symlinks-flag@1.0.0: {} - tar-stream@2.2.0: + synckit@0.11.12: dependencies: - bl: 4.1.0 - end-of-stream: 1.4.5 - fs-constants: 1.0.0 - inherits: 2.0.4 - readable-stream: 3.6.2 + '@pkgr/core': 0.2.9 term-size@2.2.1: {} @@ -7811,26 +7246,20 @@ snapshots: dependencies: any-promise: 1.3.0 - through@2.3.8: {} - tinybench@2.9.0: {} tinyexec@0.3.2: {} - tinyglobby@0.2.14: + tinyglobby@0.2.15: dependencies: - fdir: 6.4.6(picomatch@4.0.2) - picomatch: 4.0.2 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 tinypool@1.1.1: {} tinyrainbow@2.0.0: {} - tinyspy@4.0.3: {} - - tmp@0.0.33: - dependencies: - os-tmpdir: 1.0.2 + tinyspy@4.0.4: {} to-regex-range@5.0.1: dependencies: @@ -7838,35 +7267,18 @@ snapshots: tr46@1.0.1: dependencies: - punycode: 2.3.0 + punycode: 2.3.1 tree-kill@1.2.2: {} - ts-api-utils@2.1.0(typescript@5.8.3): + trim-newlines@3.0.1: {} + + ts-api-utils@2.4.0(typescript@5.8.3): dependencies: typescript: 5.8.3 ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@types/node@20.4.7)(typescript@5.8.3): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.4.7 - acorn: 8.15.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.8.3 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optional: true - tsconfig-paths@3.15.0: dependencies: '@types/json5': 0.0.29 @@ -7874,26 +7286,37 @@ snapshots: minimist: 1.2.8 strip-bom: 3.0.0 - tslib@2.6.2: {} + tsd@0.31.2: + dependencies: + '@tsd/typescript': 5.4.5 + eslint-formatter-pretty: 4.1.0 + globby: 11.1.0 + jest-diff: 29.7.0 + meow: 9.0.0 + path-exists: 4.0.0 + read-pkg-up: 7.0.1 + + tslib@2.8.1: + optional: true - tsup@8.5.0(postcss@8.5.6)(tsx@4.20.3)(typescript@5.8.3)(yaml@2.8.0): + tsup@8.5.0(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.8.3)(yaml@2.8.2): dependencies: - bundle-require: 5.1.0(esbuild@0.25.5) + bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 chokidar: 4.0.3 consola: 3.4.2 - debug: 4.4.1 - esbuild: 0.25.5 + debug: 4.4.3 + esbuild: 0.25.12 fix-dts-default-cjs-exports: 1.0.1 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(postcss@8.5.6)(tsx@4.20.3)(yaml@2.8.0) + postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2) resolve-from: 5.0.0 - rollup: 4.44.2 + rollup: 4.57.1 source-map: 0.8.0-beta.0 - sucrase: 3.35.0 + sucrase: 3.35.1 tinyexec: 0.3.2 - tinyglobby: 0.2.14 + tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: postcss: 8.5.6 @@ -7904,50 +7327,25 @@ snapshots: - tsx - yaml - tsx@4.20.3: + tsx@4.21.0: dependencies: - esbuild: 0.25.5 - get-tsconfig: 4.10.1 + esbuild: 0.27.3 + get-tsconfig: 4.13.6 optionalDependencies: fsevents: 2.3.3 - tunnel-agent@0.6.0: - dependencies: - safe-buffer: 5.2.1 - - turbo-darwin-64@2.5.4: - optional: true - - turbo-darwin-arm64@2.5.4: - optional: true - - turbo-linux-64@2.5.4: - optional: true - - turbo-linux-arm64@2.5.4: - optional: true - - turbo-windows-64@2.5.4: - optional: true - - turbo-windows-arm64@2.5.4: - optional: true - - turbo@2.5.4: - optionalDependencies: - turbo-darwin-64: 2.5.4 - turbo-darwin-arm64: 2.5.4 - turbo-linux-64: 2.5.4 - turbo-linux-arm64: 2.5.4 - turbo-windows-64: 2.5.4 - turbo-windows-arm64: 2.5.4 - type-check@0.4.0: dependencies: prelude-ls: 1.2.1 + type-fest@0.18.1: {} + type-fest@0.21.3: {} + type-fest@0.6.0: {} + + type-fest@0.8.1: {} + typed-array-buffer@1.0.3: dependencies: call-bound: 1.0.4 @@ -7981,71 +7379,74 @@ snapshots: possible-typed-array-names: 1.1.0 reflect.getprototypeof: 1.0.10 - typescript-eslint@8.35.1(eslint@9.30.1)(typescript@5.8.3): + typescript-eslint@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1)(typescript@5.8.3))(eslint@9.30.1)(typescript@5.8.3) - '@typescript-eslint/parser': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - '@typescript-eslint/utils': 8.35.1(eslint@9.30.1)(typescript@5.8.3) - eslint: 9.30.1 + '@typescript-eslint/eslint-plugin': 8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/parser': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/typescript-estree': 8.56.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.56.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3) + eslint: 9.39.2(jiti@2.6.1) typescript: 5.8.3 transitivePeerDependencies: - supports-color typescript@5.8.3: {} - ufo@1.6.1: {} + ufo@1.6.3: {} unbox-primitive@1.1.0: dependencies: call-bound: 1.0.4 - has-bigints: 1.0.2 + has-bigints: 1.1.0 has-symbols: 1.1.0 which-boxed-primitive: 1.1.1 - universalify@0.1.2: {} + undici-types@6.21.0: {} + + undici@7.22.0: {} - universalify@2.0.0: {} + universalify@0.1.2: {} - unrs-resolver@1.10.1: + unrs-resolver@1.11.1: dependencies: - napi-postinstall: 0.3.0 + napi-postinstall: 0.3.4 optionalDependencies: - '@unrs/resolver-binding-android-arm-eabi': 1.10.1 - '@unrs/resolver-binding-android-arm64': 1.10.1 - '@unrs/resolver-binding-darwin-arm64': 1.10.1 - '@unrs/resolver-binding-darwin-x64': 1.10.1 - '@unrs/resolver-binding-freebsd-x64': 1.10.1 - '@unrs/resolver-binding-linux-arm-gnueabihf': 1.10.1 - '@unrs/resolver-binding-linux-arm-musleabihf': 1.10.1 - '@unrs/resolver-binding-linux-arm64-gnu': 1.10.1 - '@unrs/resolver-binding-linux-arm64-musl': 1.10.1 - '@unrs/resolver-binding-linux-ppc64-gnu': 1.10.1 - '@unrs/resolver-binding-linux-riscv64-gnu': 1.10.1 - '@unrs/resolver-binding-linux-riscv64-musl': 1.10.1 - '@unrs/resolver-binding-linux-s390x-gnu': 1.10.1 - '@unrs/resolver-binding-linux-x64-gnu': 1.10.1 - '@unrs/resolver-binding-linux-x64-musl': 1.10.1 - '@unrs/resolver-binding-wasm32-wasi': 1.10.1 - '@unrs/resolver-binding-win32-arm64-msvc': 1.10.1 - '@unrs/resolver-binding-win32-ia32-msvc': 1.10.1 - '@unrs/resolver-binding-win32-x64-msvc': 1.10.1 + '@unrs/resolver-binding-android-arm-eabi': 1.11.1 + '@unrs/resolver-binding-android-arm64': 1.11.1 + '@unrs/resolver-binding-darwin-arm64': 1.11.1 + '@unrs/resolver-binding-darwin-x64': 1.11.1 + '@unrs/resolver-binding-freebsd-x64': 1.11.1 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1 + '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-arm64-musl': 1.11.1 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1 + '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1 + '@unrs/resolver-binding-linux-x64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-x64-musl': 1.11.1 + '@unrs/resolver-binding-wasm32-wasi': 1.11.1 + '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1 + '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1 + '@unrs/resolver-binding-win32-x64-msvc': 1.11.1 uri-js@4.4.1: dependencies: - punycode: 2.3.0 - - util-deprecate@1.0.2: {} + punycode: 2.3.1 - v8-compile-cache-lib@3.0.1: - optional: true + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 - vite-node@3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0): + vite-node@3.2.4(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: cac: 6.7.14 - debug: 4.4.1 + debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.0.2(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.3.1(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) transitivePeerDependencies: - '@types/node' - jiti @@ -8060,47 +7461,48 @@ snapshots: - tsx - yaml - vite@7.0.2(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0): + vite@7.3.1(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: - esbuild: 0.25.5 - fdir: 6.4.6(picomatch@4.0.2) - picomatch: 4.0.2 + esbuild: 0.27.3 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.44.2 - tinyglobby: 0.2.14 + rollup: 4.57.1 + tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 20.4.7 + '@types/node': 20.19.33 fsevents: 2.3.3 - tsx: 4.20.3 - yaml: 2.8.0 + jiti: 2.6.1 + tsx: 4.21.0 + yaml: 2.8.2 - vitest@3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0): + vitest@3.2.4(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: - '@types/chai': 5.2.2 + '@types/chai': 5.2.3 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.0.2(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0)) + '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 '@vitest/spy': 3.2.4 '@vitest/utils': 3.2.4 - chai: 5.2.0 - debug: 4.4.1 - expect-type: 1.2.1 - magic-string: 0.30.17 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.3.0 + magic-string: 0.30.21 pathe: 2.0.3 - picomatch: 4.0.2 - std-env: 3.9.0 + picomatch: 4.0.3 + std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 - tinyglobby: 0.2.14 + tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.0.2(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) - vite-node: 3.2.4(@types/node@20.4.7)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.3.1(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@20.19.33)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.4.7 + '@types/node': 20.19.33 transitivePeerDependencies: - jiti - less @@ -8115,11 +7517,13 @@ snapshots: - tsx - yaml - wcwidth@1.0.1: + webidl-conversions@4.0.2: {} + + whatwg-encoding@3.1.1: dependencies: - defaults: 1.0.4 + iconv-lite: 0.6.3 - webidl-conversions@4.0.2: {} + whatwg-mimetype@4.0.0: {} whatwg-url@7.1.0: dependencies: @@ -8143,13 +7547,13 @@ snapshots: is-async-function: 2.1.1 is-date-object: 1.1.0 is-finalizationregistry: 1.1.1 - is-generator-function: 1.1.0 + is-generator-function: 1.1.2 is-regex: 1.2.1 is-weakref: 1.1.1 isarray: 2.0.5 which-boxed-primitive: 1.1.1 which-collection: 1.0.2 - which-typed-array: 1.1.19 + which-typed-array: 1.1.20 which-collection@1.0.2: dependencies: @@ -8158,7 +7562,7 @@ snapshots: is-weakmap: 2.0.2 is-weakset: 2.0.4 - which-typed-array@1.1.19: + which-typed-array@1.1.20: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 @@ -8168,10 +7572,6 @@ snapshots: gopd: 1.2.0 has-tostringtag: 1.0.2 - which@1.3.1: - dependencies: - isexe: 2.0.0 - which@2.0.2: dependencies: isexe: 2.0.0 @@ -8183,25 +7583,12 @@ snapshots: word-wrap@1.2.5: {} - wrap-ansi@7.0.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 + yallist@4.0.0: {} - wrap-ansi@8.1.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.1.0 - - wrappy@1.0.2: {} - - yaml@2.8.0: + yaml@2.8.2: optional: true - yn@3.1.1: - optional: true + yargs-parser@20.2.9: {} yocto-queue@0.1.0: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml deleted file mode 100644 index 18ec407..0000000 --- a/pnpm-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -packages: - - 'packages/*' diff --git a/packages/client/src/__mocks__/api-response/character-details.json b/samples/api-data/character-details/character-4005-1268.json similarity index 100% rename from packages/client/src/__mocks__/api-response/character-details.json rename to samples/api-data/character-details/character-4005-1268.json diff --git a/samples/api-data/character-details/character-4005-1279.json b/samples/api-data/character-details/character-4005-1279.json new file mode 100644 index 0000000..1370168 --- /dev/null +++ b/samples/api-data/character-details/character-4005-1279.json @@ -0,0 +1,92 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1279/", + "birth": null, + "character_enemies": [], + "character_friends": [], + "count_of_issue_appearances": 4, + "creators": [], + "date_added": "2008-06-06 11:26:59", + "date_last_updated": "2012-09-01 13:44:34", + "deck": null, + "description": null, + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105294/", + "id": 105294, + "name": null, + "issue_number": "5" + }, + "gender": 0, + "id": 1279, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/199572-151930-phren.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/199572-151930-phren.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/199572-151930-phren.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/199572-151930-phren.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/199572-151930-phren.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/199572-151930-phren.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/199572-151930-phren.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/199572-151930-phren.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/3664/199572-151930-phren.jpg", + "image_tags": "All Images,Phren" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309770/", + "id": 309770, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream-2-volume-2/4000-309770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114963/", + "id": 114963, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-13/4000-114963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309762/", + "id": 309762, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution-1-volume/4000-309762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105294/", + "id": 105294, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-5/4000-105294/" + } + ], + "issues_died_in": [], + "movies": [], + "name": "Phren", + "origin": null, + "powers": [], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-10/", + "id": 10, + "name": "DC Comics" + }, + "real_name": null, + "site_detail_url": "https://comicvine.gamespot.com/phren/4005-1279/", + "story_arc_credits": [], + "team_enemies": [], + "team_friends": [], + "teams": [], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11059/", + "id": 11059, + "name": "Legion of Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes/4050-11059/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/character-details/character-4005-1289.json b/samples/api-data/character-details/character-4005-1289.json new file mode 100644 index 0000000..0231f0b --- /dev/null +++ b/samples/api-data/character-details/character-4005-1289.json @@ -0,0 +1,166 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1289/", + "birth": null, + "character_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1296/", + "id": 1296, + "name": "Electrocute", + "site_detail_url": "https://comicvine.gamespot.com/electrocute/4005-1296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1288/", + "id": 1288, + "name": "Lady Killer", + "site_detail_url": "https://comicvine.gamespot.com/lady-killer/4005-1288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14073/", + "id": 14073, + "name": "Night Man", + "site_detail_url": "https://comicvine.gamespot.com/night-man/4005-14073/" + } + ], + "character_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1281/", + "id": 1281, + "name": "Tyrannosaurus", + "site_detail_url": "https://comicvine.gamespot.com/tyrannosaurus/4005-1281/" + } + ], + "count_of_issue_appearances": 6, + "creators": [], + "date_added": "2008-06-06 11:27:03", + "date_last_updated": "2011-05-05 16:43:24", + "deck": "Naiad is a member of TNTNT. She has power over water, conjuring and controlling it. Her powers are both mystical and scientific in nature.", + "description": null, + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37649/", + "id": 37649, + "name": "TNTNT", + "issue_number": "3" + }, + "gender": 2, + "id": 1289, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/282048-67056-naiad.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/282048-67056-naiad.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/282048-67056-naiad.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/282048-67056-naiad.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/282048-67056-naiad.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/282048-67056-naiad.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/282048-67056-naiad.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/282048-67056-naiad.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/3664/282048-67056-naiad.jpg", + "image_tags": "All Images,Naiad" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118312/", + "id": 118312, + "name": "Dark Destiny", + "site_detail_url": "https://comicvine.gamespot.com/the-all-new-exiles-11-dark-destiny/4000-118312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105291/", + "id": 105291, + "name": "The Subject Is... TNTNT II!", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers-24-the-subject-is-tntnt-ii/4000-105291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105289/", + "id": 105289, + "name": "Machines In Wartime!", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers-22-machines-in-wartime/4000-105289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105288/", + "id": 105288, + "name": "Life In Wartime!", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers-21-life-in-wartime/4000-105288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38774/", + "id": 38774, + "name": "Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/the-night-man-6-ghosts/4000-38774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37649/", + "id": 37649, + "name": "TNTNT", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers-3-tntnt/4000-37649/" + } + ], + "issues_died_in": [], + "movies": [], + "name": "Naiad", + "origin": { + "api_detail_url": "https://comicvine.gamespot.com/api/origin/4030-1/", + "id": 1, + "name": "Mutant" + }, + "powers": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-53/", + "id": 53, + "name": "Sub-Mariner" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-118/", + "id": 118, + "name": "Water Control" + } + ], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-447/", + "id": 447, + "name": "Malibu" + }, + "real_name": null, + "site_detail_url": "https://comicvine.gamespot.com/naiad/4005-1289/", + "story_arc_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60626/", + "id": 60626, + "name": "Impel Down Arc", + "site_detail_url": "https://comicvine.gamespot.com/impel-down-arc/4045-60626/" + } + ], + "team_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40891/", + "id": 40891, + "name": "The Strangers", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers/4060-40891/" + } + ], + "team_friends": [], + "teams": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50223/", + "id": 50223, + "name": "TNTNT", + "site_detail_url": "https://comicvine.gamespot.com/tntnt/4060-50223/" + } + ], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5154/", + "id": 5154, + "name": "The Strangers", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers/4050-5154/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/character-details/character-4005-1305.json b/samples/api-data/character-details/character-4005-1305.json new file mode 100644 index 0000000..3bdeb2e --- /dev/null +++ b/samples/api-data/character-details/character-4005-1305.json @@ -0,0 +1,454 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Balloon Pokemon\r\nPummeluff", + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1305/", + "birth": null, + "character_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57635/", + "id": 57635, + "name": "Charmander", + "site_detail_url": "https://comicvine.gamespot.com/charmander/4005-57635/" + } + ], + "character_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155625/", + "id": 155625, + "name": "Blake", + "site_detail_url": "https://comicvine.gamespot.com/blake/4005-155625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53806/", + "id": 53806, + "name": "Green", + "site_detail_url": "https://comicvine.gamespot.com/green/4005-53806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78092/", + "id": 78092, + "name": "Igglybuff", + "site_detail_url": "https://comicvine.gamespot.com/igglybuff/4005-78092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156191/", + "id": 156191, + "name": "Satoshi", + "site_detail_url": "https://comicvine.gamespot.com/satoshi/4005-156191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155626/", + "id": 155626, + "name": "Whitley", + "site_detail_url": "https://comicvine.gamespot.com/whitley/4005-155626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67878/", + "id": 67878, + "name": "Wigglytuff", + "site_detail_url": "https://comicvine.gamespot.com/wigglytuff/4005-67878/" + } + ], + "count_of_issue_appearances": 45, + "creators": [], + "date_added": "2008-06-06 11:26:25", + "date_last_updated": "2016-05-17 05:42:08", + "deck": "Jigglypuff is a normal type Pokemon, most famously noted for it's appearence in the Super Smash Bros. series of video games.", + "description": "

Jigglypuff is a normal Pokemon which is of the Balloon species, it has a Hypnotic voice. No one has ever listened to it's whole song as they fall asleep part way through.

Physical Appearance

Height: 1'8'', 0.5m

Weight: 12lbs, 5.5kg

", + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-530292/", + "id": 530292, + "name": "Volume 3", + "issue_number": "3" + }, + "gender": 0, + "id": 1305, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5212921-039jigglypuff.png", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5212921-039jigglypuff.png", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5212921-039jigglypuff.png", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5212921-039jigglypuff.png", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5212921-039jigglypuff.png", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5212921-039jigglypuff.png", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5212921-039jigglypuff.png", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5212921-039jigglypuff.png", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/11/114183/5212921-039jigglypuff.png", + "image_tags": "All Images" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716814/", + "id": 716814, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-9/4000-716814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676501/", + "id": 676501, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-black-2-and-white-2-2-volume-tw/4000-676501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622735/", + "id": 622735, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-xy-12-volume-12/4000-622735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-609162/", + "id": 609162, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-omega-ruby-alpha-sapphire-4-volume-4/4000-609162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590738/", + "id": 590738, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-xy-10-volume-10/4000-590738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574943/", + "id": 574943, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-xy-9-volume-9/4000-574943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452379/", + "id": 452379, + "name": "Volume Twenty-Two", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-22-volume-twenty-two/4000-452379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283143/", + "id": 283143, + "name": "Volume Fourteen", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-14-volume-fourteen/4000-283143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285237/", + "id": 285237, + "name": "Volume Thirteen", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-13-volume-thirteen/4000-285237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264890/", + "id": 264890, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-7-volume-seven/4000-264890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261686/", + "id": 261686, + "name": "Volume Six", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-6-volume-six/4000-261686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195528/", + "id": 195528, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-5-volume-five/4000-195528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186035/", + "id": 186035, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-4-volume-four/4000-186035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185590/", + "id": 185590, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-3-volume-three/4000-185590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185589/", + "id": 185589, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-2-volume-two/4000-185589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530288/", + "id": 530288, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-quiz-puzzle-land-pikachu-is-a-famous-detec/4000-530288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503200/", + "id": 503200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/v-jump-200803/4000-503200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-229434/", + "id": 229434, + "name": "Vol. 14", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-14-vol-14/4000-229434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530304/", + "id": 530304, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/pocket-monster-rs-1-volume-1/4000-530304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530095/", + "id": 530095, + "name": "Volume 14", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-14-volume-14/4000-530095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530302/", + "id": 530302, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-13-volume-13/4000-530302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185748/", + "id": 185748, + "name": "Vol. 6", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-6-vol-6/4000-185748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185747/", + "id": 185747, + "name": "Vol. 5", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-5-vol-5/4000-185747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185746/", + "id": 185746, + "name": "Vol. 4", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-4-vol-4/4000-185746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185745/", + "id": 185745, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-3-vol-3/4000-185745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166057/", + "id": 166057, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-353/4000-166057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530299/", + "id": 530299, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-10-volume-10/4000-530299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185744/", + "id": 185744, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-2-vol-2/4000-185744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530080/", + "id": 530080, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-7-volume-7/4000-530080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146291/", + "id": 146291, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-342/4000-146291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190177/", + "id": 190177, + "name": "The Impassable Mr. Mime", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-part-3-1-the-impassable-mr-mime/4000-190177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530079/", + "id": 530079, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-6-volume-6/4000-530079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146288/", + "id": 146288, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-339/4000-146288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530296/", + "id": 530296, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-7-volume-7/4000-530296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178750/", + "id": 178750, + "name": "I'm Your Venusaur/Clefairy in Space", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-electric-pikachu-boogaloo-1-im-your-venusa/4000-178750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530078/", + "id": 530078, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-5-volume-5/4000-530078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530295/", + "id": 530295, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-6-volume-6/4000-530295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530077/", + "id": 530077, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-4-volume-4/4000-530077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125514/", + "id": 125514, + "name": "Pikachu, I See You", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-the-electric-tale-of-pikachu-1-pikachu-i-s/4000-125514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530294/", + "id": 530294, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-5-volume-5/4000-530294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530072/", + "id": 530072, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-3-volume-3/4000-530072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530060/", + "id": 530060, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/pocket-monsters-zensho-1-volume-1/4000-530060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530293/", + "id": 530293, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-4-volume-4/4000-530293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530063/", + "id": 530063, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-adventures-2-volume-2/4000-530063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530292/", + "id": 530292, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-pocket-monsters-3-volume-3/4000-530292/" + } + ], + "issues_died_in": [], + "movies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2342/", + "id": 2342, + "name": "Pokémon: Detective Pikachu", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-detective-pikachu/4025-2342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1303/", + "id": 1303, + "name": "Pokémon: The Legend of Thunder!", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-the-legend-of-thunder/4025-1303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1229/", + "id": 1229, + "name": "Pokémon 4Ever", + "site_detail_url": "https://comicvine.gamespot.com/pokemon-4ever/4025-1229/" + } + ], + "name": "Jigglypuff", + "origin": { + "api_detail_url": "https://comicvine.gamespot.com/api/origin/4030-8/", + "id": 8, + "name": "Animal" + }, + "powers": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-4/", + "id": 4, + "name": "Agility" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-34/", + "id": 34, + "name": "Unarmed Combat" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-39/", + "id": 39, + "name": "Size Manipulation" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-57/", + "id": 57, + "name": "Sonic Scream" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-80/", + "id": 80, + "name": "Levitation" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-115/", + "id": 115, + "name": "Hypnosis" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-130/", + "id": 130, + "name": "Voice-induced Manipulation" + } + ], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-3822/", + "id": 3822, + "name": "Nintendo" + }, + "real_name": "Jigglypuff", + "site_detail_url": "https://comicvine.gamespot.com/jigglypuff/4005-1305/", + "story_arc_credits": [], + "team_enemies": [], + "team_friends": [], + "teams": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57239/", + "id": 57239, + "name": "Fairies", + "site_detail_url": "https://comicvine.gamespot.com/fairies/4060-57239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53735/", + "id": 53735, + "name": "Pokémon", + "site_detail_url": "https://comicvine.gamespot.com/pokemon/4060-53735/" + } + ], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90470/", + "id": 90470, + "name": "Pocket Monsters", + "site_detail_url": "https://comicvine.gamespot.com/pocket-monsters/4050-90470/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/character-details/character-4005-1345.json b/samples/api-data/character-details/character-4005-1345.json new file mode 100644 index 0000000..512f4e7 --- /dev/null +++ b/samples/api-data/character-details/character-4005-1345.json @@ -0,0 +1,793 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Tim Holt\nRedmask\n", + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1345/", + "birth": null, + "character_enemies": [], + "character_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47989/", + "id": 47989, + "name": "Black Phantom", + "site_detail_url": "https://comicvine.gamespot.com/black-phantom/4005-47989/" + } + ], + "count_of_issue_appearances": 118, + "creators": [], + "date_added": "2008-06-06 11:26:33", + "date_last_updated": "2011-07-12 00:55:12", + "deck": "An odd variation on the Lone Ranger theme, Tim Holt became the Red Mask in 1954.", + "description": "

History

Operating from a hidden cave, which is tended by his aide, Zut, the Red Mask uses his unusual arsenal to keep peace in the West. 
 

Weapons

A satchel-like \"war bag\" contains a lariat, bolo, boomerang, and a crossbow with a grappel bolt.  He also wears six-shooters.

", + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-208832/", + "id": 208832, + "name": "Tim Holt", + "issue_number": "14" + }, + "gender": 1, + "id": 1345, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1515402-redmask_1.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1515402-redmask_1.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1515402-redmask_1.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1515402-redmask_1.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1515402-redmask_1.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1515402-redmask_1.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1515402-redmask_1.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1515402-redmask_1.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/2/27783/1515402-redmask_1.jpg", + "image_tags": "All Images" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682295/", + "id": 682295, + "name": "The Complete Red Mask: Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-2092-the-complete-red-mask-vol/4000-682295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682294/", + "id": 682294, + "name": "The Complete Red Mask: Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-2091-the-complete-red-mask-vol/4000-682294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508806/", + "id": 508806, + "name": "The Painted Killer", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-western-adventures-17-the-painted-killer/4000-508806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474845/", + "id": 474845, + "name": "Satan's Stagecoach", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-western-adventures-1-satan-s-stagecoach/4000-474845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512926/", + "id": 512926, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lurid-little-nightmare-makers-1/4000-512926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707605/", + "id": 707605, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/western-treasury-2-volume-2/4000-707605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707604/", + "id": 707604, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/western-treasury-1-volume-1/4000-707604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192834/", + "id": 192834, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/femforce-omnibus-1-volume-1/4000-192834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170244/", + "id": 170244, + "name": "Battle For A World", + "site_detail_url": "https://comicvine.gamespot.com/sentinels-of-america-1-battle-for-a-world/4000-170244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125637/", + "id": 125637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-5/4000-125637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408911/", + "id": 408911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/great-american-western-sampler-1/4000-408911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125636/", + "id": 125636, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-4/4000-125636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125635/", + "id": 125635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-3/4000-125635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125142/", + "id": 125142, + "name": "War on the Sioux Trail", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-2-war-on-the-sioux-trail/4000-125142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123723/", + "id": 123723, + "name": "The Son of the Sheriff", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-1-the-son-of-the-sheriff/4000-123723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170214/", + "id": 170214, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/golden-age-greats-7/4000-170214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105202/", + "id": 105202, + "name": "One Slip", + "site_detail_url": "https://comicvine.gamespot.com/femforce-up-close-2-one-slip/4000-105202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-403870/", + "id": 403870, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-of-the-rio-grande-3/4000-403870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-403869/", + "id": 403869, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-of-the-rio-grande-2/4000-403869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427294/", + "id": 427294, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-western-annual-1/4000-427294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-403867/", + "id": 403867, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-of-the-rio-grande-1/4000-403867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138110/", + "id": 138110, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/black-phantom-2/4000-138110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138109/", + "id": 138109, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/black-phantom-1/4000-138109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408906/", + "id": 408906, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/great-american-western-2/4000-408906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237971/", + "id": 237971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/latigo-kid-western-1/4000-237971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27590/", + "id": 27590, + "name": "Frontier Justice!", + "site_detail_url": "https://comicvine.gamespot.com/femforce-8-frontier-justice/4000-27590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27584/", + "id": 27584, + "name": "The Good, The Bad, And The Paranormal", + "site_detail_url": "https://comicvine.gamespot.com/femforce-7-the-good-the-bad-and-the-paranormal/4000-27584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143109/", + "id": 143109, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bizarre-thrills-1/4000-143109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534500/", + "id": 534500, + "name": "Tim Holt Moter Red River-Banden ; Durango Kid i Testamentet", + "site_detail_url": "https://comicvine.gamespot.com/ranchserien-107-tim-holt-moter-red-river-banden-du/4000-534500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-526534/", + "id": 526534, + "name": "Hopalong Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/ranchserien-62-hopalong-cassidy/4000-526534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149509/", + "id": 149509, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bravados-1/4000-149509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11503/", + "id": 11503, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wild-western-action-3/4000-11503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11392/", + "id": 11392, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/blazing-six-guns-2/4000-11392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11289/", + "id": 11289, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/blazing-six-guns-1/4000-11289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885933/", + "id": 885933, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/superman-presents-worlds-finest-comic-monthly-59/4000-885933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891784/", + "id": 891784, + "name": "The Demon Superman!", + "site_detail_url": "https://comicvine.gamespot.com/superman-presents-worlds-finest-comic-monthly-58-t/4000-891784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-83979/", + "id": 83979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tomahawk-196912/4000-83979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-83975/", + "id": 83975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tomahawk-196908/4000-83975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82462/", + "id": 82462, + "name": "Captain Rumble Blasts the Scene", + "site_detail_url": "https://comicvine.gamespot.com/tip-top-comic-monthly-43-captain-rumble-blasts-the/4000-82462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164550/", + "id": 164550, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-53/4000-164550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164549/", + "id": 164549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-52/4000-164549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164548/", + "id": 164548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-51/4000-164548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164547/", + "id": 164547, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-50/4000-164547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164546/", + "id": 164546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-49/4000-164546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164544/", + "id": 164544, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-47/4000-164544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164545/", + "id": 164545, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-48/4000-164545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164543/", + "id": 164543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-46/4000-164543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506589/", + "id": 506589, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/serie-magasinet-195406-tim-holt/4000-506589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164542/", + "id": 164542, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-45/4000-164542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164541/", + "id": 164541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-44/4000-164541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164540/", + "id": 164540, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-43/4000-164540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164539/", + "id": 164539, + "name": "A Tin Soldier", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-42-a-tin-soldier/4000-164539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100228/", + "id": 100228, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/great-western-9/4000-100228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164572/", + "id": 164572, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-12/4000-164572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98494/", + "id": 98494, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-41/4000-98494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98493/", + "id": 98493, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-40/4000-98493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366073/", + "id": 366073, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/serie-magasinet-195338-tim-holt/4000-366073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366069/", + "id": 366069, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/serie-magasinet-195328-tim-holt/4000-366069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98492/", + "id": 98492, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-39/4000-98492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-801/", + "id": 801, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-11/4000-801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-748/", + "id": 748, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-38/4000-748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693/", + "id": 693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-10/4000-693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-642/", + "id": 642, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-37/4000-642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589/", + "id": 589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-9/4000-589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476/", + "id": 476, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-8/4000-476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-339/", + "id": 339, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-7/4000-339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505199/", + "id": 505199, + "name": "Tim Holt!", + "site_detail_url": "https://comicvine.gamespot.com/serie-magasinet-195301-tim-holt/4000-505199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98490/", + "id": 98490, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-33/4000-98490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137/", + "id": 137, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-6/4000-137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13/", + "id": 13, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-5/4000-13/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163983/", + "id": 163983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-4/4000-163983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163982/", + "id": 163982, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-3/4000-163982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98489/", + "id": 98489, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-30/4000-98489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203317/", + "id": 203317, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-27/4000-203317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98487/", + "id": 98487, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-26/4000-98487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98486/", + "id": 98486, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-25/4000-98486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163981/", + "id": 163981, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-west-2/4000-163981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98483/", + "id": 98483, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-21/4000-98483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98475/", + "id": 98475, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-11/4000-98475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98470/", + "id": 98470, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-holt-6/4000-98470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208834/", + "id": 208834, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/a-1-comics-19-tim-holt/4000-208834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165670/", + "id": 165670, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/a-1-comics-17-tim-holt/4000-165670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208832/", + "id": 208832, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/a-1-comics-14-tim-holt/4000-208832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742775/", + "id": 742775, + "name": "Tim Holt in Death Ride of the Iron Horse", + "site_detail_url": "https://comicvine.gamespot.com/picture-story-pocket-western-8-tim-holt-in-death-r/4000-742775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699445/", + "id": 699445, + "name": "Best of the West #1-12", + "site_detail_url": "https://comicvine.gamespot.com/classic-comics-library-5-best-of-the-west-1-12/4000-699445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698401/", + "id": 698401, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-comics-23-tim-holt/4000-698401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697549/", + "id": 697549, + "name": "Tim Holt ", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-comics-20-tim-holt/4000-697549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696732/", + "id": 696732, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-comics-15-tim-holt/4000-696732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695776/", + "id": 695776, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-comics-12-tim-holt/4000-695776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695173/", + "id": 695173, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-comics-9-tim-holt/4000-695173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682327/", + "id": 682327, + "name": "The Complete Red Mask: Volumes 1 & 2", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-20912092-the-complete-red-mask/4000-682327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680985/", + "id": 680985, + "name": "The Complete Tim Holt: Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-113-the-complete-tim-holt-volu/4000-680985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680984/", + "id": 680984, + "name": "The Complete Tim Holt: Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-112-the-complete-tim-holt-volu/4000-680984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680982/", + "id": 680982, + "name": "The Complete Tim Holt: Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-111-the-complete-tim-holt-volu/4000-680982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680981/", + "id": 680981, + "name": "The Complete Tim Holt: Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-110-the-complete-tim-holt-volu/4000-680981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680980/", + "id": 680980, + "name": "The Complete Tim Holt: Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/gwandanaland-comics-109-the-complete-tim-holt-volu/4000-680980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605806/", + "id": 605806, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/comics-library-4-tim-holt/4000-605806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605572/", + "id": 605572, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/comics-library-1-tim-holt/4000-605572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595239/", + "id": 595239, + "name": "T. O. Morrow Kills the Justice League—Today!", + "site_detail_url": "https://comicvine.gamespot.com/mighty-comic-75-t-o-morrow-kills-the-justice-leagu/4000-595239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594504/", + "id": 594504, + "name": "Winged Warriors of the Immortal Queen", + "site_detail_url": "https://comicvine.gamespot.com/mighty-comic-69-winged-warriors-of-the-immortal-qu/4000-594504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592528/", + "id": 592528, + "name": "The Fury of Egg Fu!", + "site_detail_url": "https://comicvine.gamespot.com/mighty-comic-54-the-fury-of-egg-fu/4000-592528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592347/", + "id": 592347, + "name": "I, The Bomb!", + "site_detail_url": "https://comicvine.gamespot.com/mighty-comic-53-i-the-bomb/4000-592347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538378/", + "id": 538378, + "name": "Reward for Red Mask!", + "site_detail_url": "https://comicvine.gamespot.com/red-mask-1-reward-for-red-mask/4000-538378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533751/", + "id": 533751, + "name": "Tim Holt i kamp mot apasjene", + "site_detail_url": "https://comicvine.gamespot.com/ranchserien-105-tim-holt-i-kamp-mot-apasjene/4000-533751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512585/", + "id": 512585, + "name": "Superman's Secret Master!", + "site_detail_url": "https://comicvine.gamespot.com/century-comic-93-supermans-secret-master/4000-512585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511101/", + "id": 511101, + "name": "The Ghost of Batman", + "site_detail_url": "https://comicvine.gamespot.com/century-comic-96-the-ghost-of-batman/4000-511101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507708/", + "id": 507708, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/serie-magasinet-195416-tim-holt/4000-507708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505474/", + "id": 505474, + "name": "Wanted-- The Capsule Master", + "site_detail_url": "https://comicvine.gamespot.com/hundred-comic-89-wanted-the-capsule-master/4000-505474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442281/", + "id": 442281, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/king-size-comic-34/4000-442281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442280/", + "id": 442280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/king-size-comic-26/4000-442280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244006/", + "id": 244006, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tomahawk-196810/4000-244006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209694/", + "id": 209694, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-picture-library-15-tim-holt/4000-209694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209691/", + "id": 209691, + "name": "Tin Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-picture-library-9-tin-holt/4000-209691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209239/", + "id": 209239, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-picture-library-23-tim-holt/4000-209239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209238/", + "id": 209238, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-picture-library-20-tim-holt/4000-209238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209236/", + "id": 209236, + "name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/cowboy-picture-library-12-tim-holt/4000-209236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170200/", + "id": 170200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/black-phantom-3/4000-170200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100230/", + "id": 100230, + "name": "Great Western # 9", + "site_detail_url": "https://comicvine.gamespot.com/a-1-comics-105-great-western-9/4000-100230/" + } + ], + "issues_died_in": [], + "movies": [], + "name": "Red Mask", + "origin": { + "api_detail_url": "https://comicvine.gamespot.com/api/origin/4030-4/", + "id": 4, + "name": "Human" + }, + "powers": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-108/", + "id": 108, + "name": "Marksmanship" + } + ], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-84/", + "id": 84, + "name": "Magazine Enterprises" + }, + "real_name": "Tim Holt", + "site_detail_url": "https://comicvine.gamespot.com/red-mask/4005-1345/", + "story_arc_credits": [], + "team_enemies": [], + "team_friends": [], + "teams": [], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1032/", + "id": 1032, + "name": "A-1 Comics", + "site_detail_url": "https://comicvine.gamespot.com/a-1-comics/4050-1032/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/character-details/character-4005-141840.json b/samples/api-data/character-details/character-4005-141840.json new file mode 100644 index 0000000..a5b8cd4 --- /dev/null +++ b/samples/api-data/character-details/character-4005-141840.json @@ -0,0 +1,2257 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Batman\r\nBruce Wayne", + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141840/", + "birth": null, + "character_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76369/", + "id": 76369, + "name": "Air Wave (Larry Jordan)", + "site_detail_url": "https://comicvine.gamespot.com/air-wave-larry-jordan/4005-76369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9298/", + "id": 9298, + "name": "Al Pratt", + "site_detail_url": "https://comicvine.gamespot.com/al-pratt/4005-9298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12663/", + "id": 12663, + "name": "Alan Scott", + "site_detail_url": "https://comicvine.gamespot.com/alan-scott/4005-12663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79928/", + "id": 79928, + "name": "Alec Holland", + "site_detail_url": "https://comicvine.gamespot.com/alec-holland/4005-79928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5556/", + "id": 5556, + "name": "Alfred Pennyworth", + "site_detail_url": "https://comicvine.gamespot.com/alfred-pennyworth/4005-5556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28888/", + "id": 28888, + "name": "Ambush Bug", + "site_detail_url": "https://comicvine.gamespot.com/ambush-bug/4005-28888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22707/", + "id": 22707, + "name": "Animal Man", + "site_detail_url": "https://comicvine.gamespot.com/animal-man/4005-22707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2032/", + "id": 2032, + "name": "Anthro", + "site_detail_url": "https://comicvine.gamespot.com/anthro/4005-2032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12165/", + "id": 12165, + "name": "Anti-Monitor", + "site_detail_url": "https://comicvine.gamespot.com/anti-monitor/4005-12165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1685/", + "id": 1685, + "name": "Arrowette", + "site_detail_url": "https://comicvine.gamespot.com/arrowette/4005-1685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131613/", + "id": 131613, + "name": "Avery Ho", + "site_detail_url": "https://comicvine.gamespot.com/avery-ho/4005-131613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6129/", + "id": 6129, + "name": "Bane", + "site_detail_url": "https://comicvine.gamespot.com/bane/4005-6129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5368/", + "id": 5368, + "name": "Barbara Gordon", + "site_detail_url": "https://comicvine.gamespot.com/barbara-gordon/4005-5368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22804/", + "id": 22804, + "name": "Barry Allen", + "site_detail_url": "https://comicvine.gamespot.com/barry-allen/4005-22804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1680/", + "id": 1680, + "name": "Bart Allen", + "site_detail_url": "https://comicvine.gamespot.com/bart-allen/4005-1680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3612/", + "id": 3612, + "name": "Bat Lash", + "site_detail_url": "https://comicvine.gamespot.com/bat-lash/4005-3612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1699/", + "id": 1699, + "name": "Batman", + "site_detail_url": "https://comicvine.gamespot.com/batman/4005-1699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9052/", + "id": 9052, + "name": "Batwoman", + "site_detail_url": "https://comicvine.gamespot.com/batwoman/4005-9052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3586/", + "id": 3586, + "name": "Beast Boy", + "site_detail_url": "https://comicvine.gamespot.com/beast-boy/4005-3586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3628/", + "id": 3628, + "name": "Big Barda", + "site_detail_url": "https://comicvine.gamespot.com/big-barda/4005-3628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2350/", + "id": 2350, + "name": "Billy Batson", + "site_detail_url": "https://comicvine.gamespot.com/billy-batson/4005-2350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4916/", + "id": 4916, + "name": "Black Adam", + "site_detail_url": "https://comicvine.gamespot.com/black-adam/4005-4916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166008/", + "id": 166008, + "name": "Black Arrow", + "site_detail_url": "https://comicvine.gamespot.com/black-arrow/4005-166008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1689/", + "id": 1689, + "name": "Black Canary", + "site_detail_url": "https://comicvine.gamespot.com/black-canary/4005-1689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10994/", + "id": 10994, + "name": "Black Lightning", + "site_detail_url": "https://comicvine.gamespot.com/black-lightning/4005-10994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8345/", + "id": 8345, + "name": "Black Manta", + "site_detail_url": "https://comicvine.gamespot.com/black-manta/4005-8345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4438/", + "id": 4438, + "name": "Blue Beetle (Reyes)", + "site_detail_url": "https://comicvine.gamespot.com/blue-beetle-reyes/4005-4438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83111/", + "id": 83111, + "name": "Bluebird", + "site_detail_url": "https://comicvine.gamespot.com/bluebird/4005-83111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1786/", + "id": 1786, + "name": "Booster Gold", + "site_detail_url": "https://comicvine.gamespot.com/booster-gold/4005-1786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147122/", + "id": 147122, + "name": "Caden Park", + "site_detail_url": "https://comicvine.gamespot.com/caden-park/4005-147122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2050/", + "id": 2050, + "name": "Captain Atom", + "site_detail_url": "https://comicvine.gamespot.com/captain-atom/4005-2050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29992/", + "id": 29992, + "name": "Captain Boomerang", + "site_detail_url": "https://comicvine.gamespot.com/captain-boomerang/4005-29992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33139/", + "id": 33139, + "name": "Captain Carrot", + "site_detail_url": "https://comicvine.gamespot.com/captain-carrot/4005-33139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2392/", + "id": 2392, + "name": "Captain Cold", + "site_detail_url": "https://comicvine.gamespot.com/captain-cold/4005-2392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18276/", + "id": 18276, + "name": "Carol Ferris", + "site_detail_url": "https://comicvine.gamespot.com/carol-ferris/4005-18276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65230/", + "id": 65230, + "name": "Cassandra Cain", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-cain/4005-65230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1698/", + "id": 1698, + "name": "Catwoman", + "site_detail_url": "https://comicvine.gamespot.com/catwoman/4005-1698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8664/", + "id": 8664, + "name": "Claw", + "site_detail_url": "https://comicvine.gamespot.com/claw/4005-8664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9589/", + "id": 9589, + "name": "Clayface (Karlo)", + "site_detail_url": "https://comicvine.gamespot.com/clayface-karlo/4005-9589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10186/", + "id": 10186, + "name": "Clock King", + "site_detail_url": "https://comicvine.gamespot.com/clock-king/4005-10186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149049/", + "id": 149049, + "name": "Crush", + "site_detail_url": "https://comicvine.gamespot.com/crush/4005-149049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2388/", + "id": 2388, + "name": "Cyborg", + "site_detail_url": "https://comicvine.gamespot.com/cyborg/4005-2388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12926/", + "id": 12926, + "name": "Cyborg Superman", + "site_detail_url": "https://comicvine.gamespot.com/cyborg-superman/4005-12926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3582/", + "id": 3582, + "name": "Damage", + "site_detail_url": "https://comicvine.gamespot.com/damage/4005-3582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42413/", + "id": 42413, + "name": "Damian Wayne", + "site_detail_url": "https://comicvine.gamespot.com/damian-wayne/4005-42413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18745/", + "id": 18745, + "name": "Dan Garret", + "site_detail_url": "https://comicvine.gamespot.com/dan-garret/4005-18745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55718/", + "id": 55718, + "name": "Daniel Hall", + "site_detail_url": "https://comicvine.gamespot.com/daniel-hall/4005-55718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2349/", + "id": 2349, + "name": "Darkseid", + "site_detail_url": "https://comicvine.gamespot.com/darkseid/4005-2349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3573/", + "id": 3573, + "name": "Dawn Granger", + "site_detail_url": "https://comicvine.gamespot.com/dawn-granger/4005-3573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5763/", + "id": 5763, + "name": "Deadshot", + "site_detail_url": "https://comicvine.gamespot.com/deadshot/4005-5763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3588/", + "id": 3588, + "name": "Deathstroke", + "site_detail_url": "https://comicvine.gamespot.com/deathstroke/4005-3588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11270/", + "id": 11270, + "name": "Detective Chimp", + "site_detail_url": "https://comicvine.gamespot.com/detective-chimp/4005-11270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1691/", + "id": 1691, + "name": "Dick Grayson", + "site_detail_url": "https://comicvine.gamespot.com/dick-grayson/4005-1691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149050/", + "id": 149050, + "name": "Djinn", + "site_detail_url": "https://comicvine.gamespot.com/djinn/4005-149050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34758/", + "id": 34758, + "name": "Don Hall", + "site_detail_url": "https://comicvine.gamespot.com/don-hall/4005-34758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4913/", + "id": 4913, + "name": "Donna Troy", + "site_detail_url": "https://comicvine.gamespot.com/donna-troy/4005-4913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7655/", + "id": 7655, + "name": "Dr. Light (Hoshi)", + "site_detail_url": "https://comicvine.gamespot.com/dr-light-hoshi/4005-7655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100777/", + "id": 100777, + "name": "Duke Thomas", + "site_detail_url": "https://comicvine.gamespot.com/duke-thomas/4005-100777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11983/", + "id": 11983, + "name": "Dyna-Mite", + "site_detail_url": "https://comicvine.gamespot.com/dyna-mite/4005-11983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3763/", + "id": 3763, + "name": "Eclipso", + "site_detail_url": "https://comicvine.gamespot.com/eclipso/4005-3763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2034/", + "id": 2034, + "name": "El Diablo", + "site_detail_url": "https://comicvine.gamespot.com/el-diablo/4005-2034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87910/", + "id": 87910, + "name": "Emiko Queen", + "site_detail_url": "https://comicvine.gamespot.com/emiko-queen/4005-87910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31464/", + "id": 31464, + "name": "Enchantress", + "site_detail_url": "https://comicvine.gamespot.com/enchantress/4005-31464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24090/", + "id": 24090, + "name": "Enemy Ace", + "site_detail_url": "https://comicvine.gamespot.com/enemy-ace/4005-24090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7367/", + "id": 7367, + "name": "Etrigan", + "site_detail_url": "https://comicvine.gamespot.com/etrigan/4005-7367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6577/", + "id": 6577, + "name": "Fate", + "site_detail_url": "https://comicvine.gamespot.com/fate/4005-6577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4439/", + "id": 4439, + "name": "Fire", + "site_detail_url": "https://comicvine.gamespot.com/fire/4005-4439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2353/", + "id": 2353, + "name": "Firestorm", + "site_detail_url": "https://comicvine.gamespot.com/firestorm/4005-2353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140882/", + "id": 140882, + "name": "Ghost Fist", + "site_detail_url": "https://comicvine.gamespot.com/ghost-fist/4005-140882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10882/", + "id": 10882, + "name": "Giganta", + "site_detail_url": "https://comicvine.gamespot.com/giganta/4005-10882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3629/", + "id": 3629, + "name": "Granny Goodness", + "site_detail_url": "https://comicvine.gamespot.com/granny-goodness/4005-3629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5936/", + "id": 5936, + "name": "Green Arrow", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow/4005-5936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1791/", + "id": 1791, + "name": "Guy Gardner", + "site_detail_url": "https://comicvine.gamespot.com/guy-gardner/4005-1791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11202/", + "id": 11202, + "name": "Hal Jordan", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan/4005-11202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2030/", + "id": 2030, + "name": "Hank Hall", + "site_detail_url": "https://comicvine.gamespot.com/hank-hall/4005-2030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1696/", + "id": 1696, + "name": "Harley Quinn", + "site_detail_url": "https://comicvine.gamespot.com/harley-quinn/4005-1696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5554/", + "id": 5554, + "name": "Harvey Bullock", + "site_detail_url": "https://comicvine.gamespot.com/harvey-bullock/4005-5554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6903/", + "id": 6903, + "name": "Hawkgirl", + "site_detail_url": "https://comicvine.gamespot.com/hawkgirl/4005-6903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8337/", + "id": 8337, + "name": "Hawkman", + "site_detail_url": "https://comicvine.gamespot.com/hawkman/4005-8337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5693/", + "id": 5693, + "name": "Hawkwoman", + "site_detail_url": "https://comicvine.gamespot.com/hawkwoman/4005-5693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35124/", + "id": 35124, + "name": "Herald", + "site_detail_url": "https://comicvine.gamespot.com/herald/4005-35124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4929/", + "id": 4929, + "name": "Hippolyta", + "site_detail_url": "https://comicvine.gamespot.com/hippolyta/4005-4929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3574/", + "id": 3574, + "name": "Holly Granger", + "site_detail_url": "https://comicvine.gamespot.com/holly-granger/4005-3574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22787/", + "id": 22787, + "name": "Hourman (Rex Tyler)", + "site_detail_url": "https://comicvine.gamespot.com/hourman-rex-tyler/4005-22787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2051/", + "id": 2051, + "name": "Ice", + "site_detail_url": "https://comicvine.gamespot.com/ice/4005-2051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28862/", + "id": 28862, + "name": "Immortal Man", + "site_detail_url": "https://comicvine.gamespot.com/immortal-man/4005-28862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46069/", + "id": 46069, + "name": "Iris West", + "site_detail_url": "https://comicvine.gamespot.com/iris-west/4005-46069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71494/", + "id": 71494, + "name": "Jackson Hyde", + "site_detail_url": "https://comicvine.gamespot.com/jackson-hyde/4005-71494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46070/", + "id": 46070, + "name": "Jai West", + "site_detail_url": "https://comicvine.gamespot.com/jai-west/4005-46070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3727/", + "id": 3727, + "name": "James Gordon", + "site_detail_url": "https://comicvine.gamespot.com/james-gordon/4005-3727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70633/", + "id": 70633, + "name": "James Gordon Jr.", + "site_detail_url": "https://comicvine.gamespot.com/james-gordon-jr/4005-70633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164297/", + "id": 164297, + "name": "Jarro", + "site_detail_url": "https://comicvine.gamespot.com/jarro/4005-164297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94476/", + "id": 94476, + "name": "Jason Blood ", + "site_detail_url": "https://comicvine.gamespot.com/jason-blood/4005-94476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6849/", + "id": 6849, + "name": "Jason Todd", + "site_detail_url": "https://comicvine.gamespot.com/jason-todd/4005-6849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2395/", + "id": 2395, + "name": "Jay Garrick", + "site_detail_url": "https://comicvine.gamespot.com/jay-garrick/4005-2395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34788/", + "id": 34788, + "name": "Jayna", + "site_detail_url": "https://comicvine.gamespot.com/jayna/4005-34788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9949/", + "id": 9949, + "name": "Jericho", + "site_detail_url": "https://comicvine.gamespot.com/jericho/4005-9949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9345/", + "id": 9345, + "name": "Jesse Chambers", + "site_detail_url": "https://comicvine.gamespot.com/jesse-chambers/4005-9345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89628/", + "id": 89628, + "name": "Jessica Cruz", + "site_detail_url": "https://comicvine.gamespot.com/jessica-cruz/4005-89628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3329/", + "id": 3329, + "name": "John Constantine", + "site_detail_url": "https://comicvine.gamespot.com/john-constantine/4005-3329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10451/", + "id": 10451, + "name": "John Stewart", + "site_detail_url": "https://comicvine.gamespot.com/john-stewart/4005-10451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36717/", + "id": 36717, + "name": "Johnny Quick", + "site_detail_url": "https://comicvine.gamespot.com/johnny-quick/4005-36717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5695/", + "id": 5695, + "name": "Johnny Quick", + "site_detail_url": "https://comicvine.gamespot.com/johnny-quick/4005-5695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1702/", + "id": 1702, + "name": "Joker", + "site_detail_url": "https://comicvine.gamespot.com/joker/4005-1702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81104/", + "id": 81104, + "name": "Jon Kent", + "site_detail_url": "https://comicvine.gamespot.com/jon-kent/4005-81104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3614/", + "id": 3614, + "name": "Jonah Hex", + "site_detail_url": "https://comicvine.gamespot.com/jonah-hex/4005-3614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9547/", + "id": 9547, + "name": "Katana", + "site_detail_url": "https://comicvine.gamespot.com/katana/4005-9547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6599/", + "id": 6599, + "name": "Kent Nelson", + "site_detail_url": "https://comicvine.gamespot.com/kent-nelson/4005-6599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118143/", + "id": 118143, + "name": "Khalid Nassour", + "site_detail_url": "https://comicvine.gamespot.com/khalid-nassour/4005-118143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3725/", + "id": 3725, + "name": "Killer Croc", + "site_detail_url": "https://comicvine.gamespot.com/killer-croc/4005-3725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11976/", + "id": 11976, + "name": "Klarion", + "site_detail_url": "https://comicvine.gamespot.com/klarion/4005-11976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1686/", + "id": 1686, + "name": "Kon-El", + "site_detail_url": "https://comicvine.gamespot.com/kon-el/4005-1686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8332/", + "id": 8332, + "name": "Krypto", + "site_detail_url": "https://comicvine.gamespot.com/krypto/4005-8332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40431/", + "id": 40431, + "name": "Kyle Rayner", + "site_detail_url": "https://comicvine.gamespot.com/kyle-rayner/4005-40431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41952/", + "id": 41952, + "name": "Lex Luthor", + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor/4005-41952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32525/", + "id": 32525, + "name": "Libby Lawrence", + "site_detail_url": "https://comicvine.gamespot.com/libby-lawrence/4005-32525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12525/", + "id": 12525, + "name": "Lilith Clay", + "site_detail_url": "https://comicvine.gamespot.com/lilith-clay/4005-12525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6578/", + "id": 6578, + "name": "Lobo", + "site_detail_url": "https://comicvine.gamespot.com/lobo/4005-6578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1808/", + "id": 1808, + "name": "Lois Lane", + "site_detail_url": "https://comicvine.gamespot.com/lois-lane/4005-1808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41181/", + "id": 41181, + "name": "Ma Hunkel", + "site_detail_url": "https://comicvine.gamespot.com/ma-hunkel/4005-41181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2047/", + "id": 2047, + "name": "Martian Manhunter", + "site_detail_url": "https://comicvine.gamespot.com/martian-manhunter/4005-2047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2356/", + "id": 2356, + "name": "Mary Marvel", + "site_detail_url": "https://comicvine.gamespot.com/mary-marvel/4005-2356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2379/", + "id": 2379, + "name": "Max Mercury", + "site_detail_url": "https://comicvine.gamespot.com/max-mercury/4005-2379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14654/", + "id": 14654, + "name": "Mera", + "site_detail_url": "https://comicvine.gamespot.com/mera/4005-14654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9995/", + "id": 9995, + "name": "Mercy Graves", + "site_detail_url": "https://comicvine.gamespot.com/mercy-graves/4005-9995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2384/", + "id": 2384, + "name": "Metamorpho", + "site_detail_url": "https://comicvine.gamespot.com/metamorpho/4005-2384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3616/", + "id": 3616, + "name": "Metron", + "site_detail_url": "https://comicvine.gamespot.com/metron/4005-3616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41145/", + "id": 41145, + "name": "Miss Martian", + "site_detail_url": "https://comicvine.gamespot.com/miss-martian/4005-41145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3715/", + "id": 3715, + "name": "Mr. Freeze", + "site_detail_url": "https://comicvine.gamespot.com/mr-freeze/4005-3715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5703/", + "id": 5703, + "name": "Mr. Miracle", + "site_detail_url": "https://comicvine.gamespot.com/mr-miracle/4005-5703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19179/", + "id": 19179, + "name": "Mr. Terrific", + "site_detail_url": "https://comicvine.gamespot.com/mr-terrific/4005-19179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10019/", + "id": 10019, + "name": "Natasha Irons", + "site_detail_url": "https://comicvine.gamespot.com/natasha-irons/4005-10019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49070/", + "id": 49070, + "name": "Nix Uotan", + "site_detail_url": "https://comicvine.gamespot.com/nix-uotan/4005-49070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4703/", + "id": 4703, + "name": "Owlman", + "site_detail_url": "https://comicvine.gamespot.com/owlman/4005-4703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4690/", + "id": 4690, + "name": "Parasite", + "site_detail_url": "https://comicvine.gamespot.com/parasite/4005-4690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4885/", + "id": 4885, + "name": "Penguin", + "site_detail_url": "https://comicvine.gamespot.com/penguin/4005-4885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3298/", + "id": 3298, + "name": "Phantom Stranger", + "site_detail_url": "https://comicvine.gamespot.com/phantom-stranger/4005-3298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6270/", + "id": 6270, + "name": "Plastic Man", + "site_detail_url": "https://comicvine.gamespot.com/plastic-man/4005-6270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1697/", + "id": 1697, + "name": "Poison Ivy", + "site_detail_url": "https://comicvine.gamespot.com/poison-ivy/4005-1697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4702/", + "id": 4702, + "name": "Power Ring", + "site_detail_url": "https://comicvine.gamespot.com/power-ring/4005-4702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25495/", + "id": 25495, + "name": "Psycho-Pirate", + "site_detail_url": "https://comicvine.gamespot.com/psycho-pirate/4005-25495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3584/", + "id": 3584, + "name": "Raven", + "site_detail_url": "https://comicvine.gamespot.com/raven/4005-3584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34685/", + "id": 34685, + "name": "Ray Palmer", + "site_detail_url": "https://comicvine.gamespot.com/ray-palmer/4005-34685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1688/", + "id": 1688, + "name": "Red Tornado", + "site_detail_url": "https://comicvine.gamespot.com/red-tornado/4005-1688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145503/", + "id": 145503, + "name": "Reload", + "site_detail_url": "https://comicvine.gamespot.com/reload/4005-145503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47128/", + "id": 47128, + "name": "Richard Raleigh", + "site_detail_url": "https://comicvine.gamespot.com/richard-raleigh/4005-47128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4937/", + "id": 4937, + "name": "Rip Hunter", + "site_detail_url": "https://comicvine.gamespot.com/rip-hunter/4005-4937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12890/", + "id": 12890, + "name": "Rose Wilson", + "site_detail_url": "https://comicvine.gamespot.com/rose-wilson/4005-12890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149051/", + "id": 149051, + "name": "Roundhouse", + "site_detail_url": "https://comicvine.gamespot.com/roundhouse/4005-149051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3404/", + "id": 3404, + "name": "Roy Harper", + "site_detail_url": "https://comicvine.gamespot.com/roy-harper/4005-3404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2352/", + "id": 2352, + "name": "Ryan Choi", + "site_detail_url": "https://comicvine.gamespot.com/ryan-choi/4005-2352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76170/", + "id": 76170, + "name": "Ryan Kendall", + "site_detail_url": "https://comicvine.gamespot.com/ryan-kendall/4005-76170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3604/", + "id": 3604, + "name": "Sgt. Rock", + "site_detail_url": "https://comicvine.gamespot.com/sgt-rock/4005-3604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160269/", + "id": 160269, + "name": "Shayne J'onzz", + "site_detail_url": "https://comicvine.gamespot.com/shayne-jonzz/4005-160269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84895/", + "id": 84895, + "name": "Simon Baz", + "site_detail_url": "https://comicvine.gamespot.com/simon-baz/4005-84895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79549/", + "id": 79549, + "name": "Skitter", + "site_detail_url": "https://comicvine.gamespot.com/skitter/4005-79549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8342/", + "id": 8342, + "name": "Solomon Grundy", + "site_detail_url": "https://comicvine.gamespot.com/solomon-grundy/4005-8342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74586/", + "id": 74586, + "name": "Solstice", + "site_detail_url": "https://comicvine.gamespot.com/solstice/4005-74586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2361/", + "id": 2361, + "name": "Spectre", + "site_detail_url": "https://comicvine.gamespot.com/spectre/4005-2361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2389/", + "id": 2389, + "name": "Starfire", + "site_detail_url": "https://comicvine.gamespot.com/starfire/4005-2389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23345/", + "id": 23345, + "name": "Starro", + "site_detail_url": "https://comicvine.gamespot.com/starro/4005-23345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2031/", + "id": 2031, + "name": "Steel", + "site_detail_url": "https://comicvine.gamespot.com/steel/4005-2031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6156/", + "id": 6156, + "name": "Stephanie Brown", + "site_detail_url": "https://comicvine.gamespot.com/stephanie-brown/4005-6156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15789/", + "id": 15789, + "name": "Steve Trevor", + "site_detail_url": "https://comicvine.gamespot.com/steve-trevor/4005-15789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145502/", + "id": 145502, + "name": "Stray", + "site_detail_url": "https://comicvine.gamespot.com/stray/4005-145502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40756/", + "id": 40756, + "name": "Superboy Prime", + "site_detail_url": "https://comicvine.gamespot.com/superboy-prime/4005-40756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2351/", + "id": 2351, + "name": "Supergirl", + "site_detail_url": "https://comicvine.gamespot.com/supergirl/4005-2351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1807/", + "id": 1807, + "name": "Superman", + "site_detail_url": "https://comicvine.gamespot.com/superman/4005-1807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4704/", + "id": 4704, + "name": "Superwoman", + "site_detail_url": "https://comicvine.gamespot.com/superwoman/4005-4704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15809/", + "id": 15809, + "name": "Swamp Thing", + "site_detail_url": "https://comicvine.gamespot.com/swamp-thing/4005-15809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61524/", + "id": 61524, + "name": "T.N.T.", + "site_detail_url": "https://comicvine.gamespot.com/tnt/4005-61524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2054/", + "id": 2054, + "name": "Ted Kord", + "site_detail_url": "https://comicvine.gamespot.com/ted-kord/4005-2054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11977/", + "id": 11977, + "name": "Teekl", + "site_detail_url": "https://comicvine.gamespot.com/teekl/4005-11977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2382/", + "id": 2382, + "name": "Tempest", + "site_detail_url": "https://comicvine.gamespot.com/tempest/4005-2382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5307/", + "id": 5307, + "name": "Terra", + "site_detail_url": "https://comicvine.gamespot.com/terra/4005-5307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31018/", + "id": 31018, + "name": "The Monitor", + "site_detail_url": "https://comicvine.gamespot.com/the-monitor/4005-31018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145501/", + "id": 145501, + "name": "Timber", + "site_detail_url": "https://comicvine.gamespot.com/timber/4005-145501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5692/", + "id": 5692, + "name": "Ultraman", + "site_detail_url": "https://comicvine.gamespot.com/ultraman/4005-5692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2551/", + "id": 2551, + "name": "Vixen", + "site_detail_url": "https://comicvine.gamespot.com/vixen/4005-2551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130018/", + "id": 130018, + "name": "Wallace West", + "site_detail_url": "https://comicvine.gamespot.com/wallace-west/4005-130018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23879/", + "id": 23879, + "name": "Wally West", + "site_detail_url": "https://comicvine.gamespot.com/wally-west/4005-23879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9299/", + "id": 9299, + "name": "Wesley Dodds", + "site_detail_url": "https://comicvine.gamespot.com/wesley-dodds/4005-9299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7645/", + "id": 7645, + "name": "Wildcat", + "site_detail_url": "https://comicvine.gamespot.com/wildcat/4005-7645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36516/", + "id": 36516, + "name": "William Payton", + "site_detail_url": "https://comicvine.gamespot.com/william-payton/4005-36516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10885/", + "id": 10885, + "name": "Wonder Girl", + "site_detail_url": "https://comicvine.gamespot.com/wonder-girl/4005-10885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2048/", + "id": 2048, + "name": "Wonder Woman", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman/4005-2048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155951/", + "id": 155951, + "name": "World Forger", + "site_detail_url": "https://comicvine.gamespot.com/world-forger/4005-155951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34787/", + "id": 34787, + "name": "Zan", + "site_detail_url": "https://comicvine.gamespot.com/zan/4005-34787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5691/", + "id": 5691, + "name": "Zatanna", + "site_detail_url": "https://comicvine.gamespot.com/zatanna/4005-5691/" + } + ], + "character_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88687/", + "id": 88687, + "name": "Barbatos", + "site_detail_url": "https://comicvine.gamespot.com/barbatos/4005-88687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164460/", + "id": 164460, + "name": "Darkfather", + "site_detail_url": "https://comicvine.gamespot.com/darkfather/4005-164460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2349/", + "id": 2349, + "name": "Darkseid", + "site_detail_url": "https://comicvine.gamespot.com/darkseid/4005-2349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141673/", + "id": 141673, + "name": "Dawnbreaker", + "site_detail_url": "https://comicvine.gamespot.com/dawnbreaker/4005-141673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142475/", + "id": 142475, + "name": "Devastator", + "site_detail_url": "https://comicvine.gamespot.com/devastator/4005-142475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153773/", + "id": 153773, + "name": "Grim Knight", + "site_detail_url": "https://comicvine.gamespot.com/grim-knight/4005-153773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147164/", + "id": 147164, + "name": "Infinite Woman", + "site_detail_url": "https://comicvine.gamespot.com/infinite-woman/4005-147164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166276/", + "id": 166276, + "name": "Last Sun", + "site_detail_url": "https://comicvine.gamespot.com/last-sun/4005-166276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164461/", + "id": 164461, + "name": "Mindhunter", + "site_detail_url": "https://comicvine.gamespot.com/mindhunter/4005-164461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141533/", + "id": 141533, + "name": "Murder Machine", + "site_detail_url": "https://comicvine.gamespot.com/murder-machine/4005-141533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151229/", + "id": 151229, + "name": "Perpetua", + "site_detail_url": "https://comicvine.gamespot.com/perpetua/4005-151229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140883/", + "id": 140883, + "name": "Red Death", + "site_detail_url": "https://comicvine.gamespot.com/red-death/4005-140883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164825/", + "id": 164825, + "name": "Robin King", + "site_detail_url": "https://comicvine.gamespot.com/robin-king/4005-164825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166277/", + "id": 166277, + "name": "Savior", + "site_detail_url": "https://comicvine.gamespot.com/savior/4005-166277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160223/", + "id": 160223, + "name": "Sky Tyrant", + "site_detail_url": "https://comicvine.gamespot.com/sky-tyrant/4005-160223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141985/", + "id": 141985, + "name": "The Drowned", + "site_detail_url": "https://comicvine.gamespot.com/the-drowned/4005-141985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142058/", + "id": 142058, + "name": "The Merciless", + "site_detail_url": "https://comicvine.gamespot.com/the-merciless/4005-142058/" + } + ], + "count_of_issue_appearances": 131, + "creators": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/creator/4040-3379/", + "id": 3379, + "name": "Greg Capullo", + "site_detail_url": "https://comicvine.gamespot.com/greg-capullo/4040-3379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/creator/4040-58926/", + "id": 58926, + "name": "Scott Snyder", + "site_detail_url": "https://comicvine.gamespot.com/scott-snyder/4040-58926/" + } + ], + "date_added": "2017-08-19 09:14:52", + "date_last_updated": "2021-06-28 20:33:59", + "deck": "The Batman Who Laughs is the Dark Knight of Earth -22, and the chosen herald of Barbatos. He was infected by a nanotoxin in the Joker's bloodstream upon his enemy's death, and the combination of the Joker's depravity and Bruce Wayne's tactical mind created the deadliest villain his planet had ever seen.", + "description": "

Creation

The Batman Who Laughs was created by Scott Snyder and Greg Capullo. He made his first (brief) appearance in Dark Days: The Casting.

Origin

\"No

Bruce Wayne is the Batman of Earth -22. One night, the Joker binds Batman’s hands and mouth, tells him that it is going to happen tonight. They are near an alley, where a little girl with her parents are walking down an alley. Batman tells him to stop, Joker ignores him and guns down her parents. Moreover, the girl is now “Jokerized”, which makes her laugh repeatedly. All this has caused Batman to cross the line and snap Joker’s neck. Indeed, Batman has killed the Joker, but by doing so, he has saved many people’s lives who’d die presumably.

\"No

On the contrary, when the Joker died, Bruce inhaled the nanotoxin that emitted from the joker. Bruce has alerted Clark, Dick, Jason and the others regarding the fact that he’s infected. They tell him that they’ll do whatever they can to save him. Unfortunately, it’s too late, Bruce turns his back and kills all the (former) Robins. From here on, it’s not Batman anymore, but it’s The Batman Who Laughs. Furthermore, he visits the Watchtower and kills the entire Justice League.

In Other Media

Video Games

\"Mortal
Mortal Kombat 11
  • The Batman Who Laughs appears in the DC Universe Online MMORPG, where he is the main antagonist of Part 1 of the \"Metal\" event. Like in the comics, he attempts to drag Earth into the Dark Multiverse. He returns in Part 2 as well.
  • The Batman Who Lives is featured in the Mortal Kombat 11 fighting game as a downloadable alternate skin for Noob Saibot. He was offered as part of a special DC Elseworlds DLC pack, which also featured skins based on Catwoman and Killer Croc.

Merchandise

\"DC
DC Multiverse
  • The Batman Who Laughs was featured in the HeroClix figure game.
  • Prime 1 Studio produced a statue of The Batman Who Laughs.
  • Sideshow Collectibles produced a statue of The Batman Who Laughs.
  • Diamond Select produced a statue of The Batman Who Laughs.
  • The Batman Who Laughs was featured in Diamond Select's Minimates line as a New York Comic-Con 2019 exclusive.
  • The Batman Who Laughs was featured in the Batman Miniature Game by Knight Models.
  • Quantum Mechanix produced a Q-Fig statue of The Batman Who Laughs and three of his Robins.
  • DC Collectibles produced multiple statues featuring The Batman Who Laughs.
  • Kotobukiya produced a statue of The Batman Who Laughs.
  • The Batman Who Laughs was featured in Funko's Pop! line of bobbleheads.
  • The Batman Who Laughs was featured in the DC Multiverse line from McFarlane Toys. A second, winged variant based on a variant cover from the \"Sky Tyrant\" storyline was also produced for the Merciless Collect-and-Connect wave.
", + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-608175/", + "id": 608175, + "name": null, + "issue_number": "1" + }, + "gender": 1, + "id": 141840, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/11125/111253436/6733893-8.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/11125/111253436/6733893-8.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/11125/111253436/6733893-8.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/11125/111253436/6733893-8.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/11125/111253436/6733893-8.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/11125/111253436/6733893-8.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/11125/111253436/6733893-8.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/11125/111253436/6733893-8.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/11125/111253436/6733893-8.jpg", + "image_tags": "All Images" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-946062/", + "id": 946062, + "name": " \t The Clockwork Killer, Chapter Five: The Joke's On Me", + "site_detail_url": "https://comicvine.gamespot.com/flashpoint-beyond-5-the-clockwork-killer-chapter-f/4000-946062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905299/", + "id": 905299, + "name": "Worlds Collide", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-incarnate-4-worlds-collide/4000-905299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891088/", + "id": 891088, + "name": "Foundation", + "site_detail_url": "https://comicvine.gamespot.com/batmanfortnite-foundation-1-foundation/4000-891088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878418/", + "id": 878418, + "name": "Infinite Betrayal", + "site_detail_url": "https://comicvine.gamespot.com/infinite-frontier-4-infinite-betrayal/4000-878418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886350/", + "id": 886350, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-death-metal-1-tpb/4000-886350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883420/", + "id": 883420, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/batmanfortnite-zero-point-1-hctpb/4000-883420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-867825/", + "id": 867825, + "name": "Part Six", + "site_detail_url": "https://comicvine.gamespot.com/batmanfortnite-zero-point-6-part-six/4000-867825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-862622/", + "id": 862622, + "name": "Infinite Mystery", + "site_detail_url": "https://comicvine.gamespot.com/infinite-frontier-1-infinite-mystery/4000-862622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846948/", + "id": 846948, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-the-multiverse-who-laughs-/4000-846948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-831248/", + "id": 831248, + "name": "The Cowardly Lot Part One; Demon or Detective? Part One", + "site_detail_url": "https://comicvine.gamespot.com/batman-106-the-cowardly-lot-part-one-demon-or-dete/4000-831248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841677/", + "id": 841677, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-deluxe-edition-1-hc/4000-841677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823806/", + "id": 823806, + "name": "An Anti-Crisis Part VII: A Slap In the Face; The Big Rock", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-7-an-anti-crisis-part-vii-/4000-823806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827760/", + "id": 827760, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-hawks-eternal-1-volume-4/4000-827760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823034/", + "id": 823034, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-the-last-52-war-of-the-mul/4000-823034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823032/", + "id": 823032, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/tales-from-the-dark-multiverse-dark-nights-metal-1/4000-823032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821759/", + "id": 821759, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-the-secret-origin-1/4000-821759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821189/", + "id": 821189, + "name": "An Anti-Crisis Part VI: The Truth Machine; Rock's Prayer", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-6-an-anti-crisis-part-vi-t/4000-821189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820431/", + "id": 820431, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-the-last-stories-of-the-dc/4000-820431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819285/", + "id": 819285, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-the-multiverse-who-laughs-/4000-819285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818625/", + "id": 818625, + "name": "An Anti-Crisis Part V: The Man of No Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-5-an-anti-crisis-part-v-th/4000-818625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814046/", + "id": 814046, + "name": "[Untitled]; The Weight of Leadership", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-rise-of-the-new-god-1-unti/4000-814046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-812520/", + "id": 812520, + "name": "The Robin Who Would Be King; The Quiet Ones", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-robin-king-1-the-robin-who/4000-812520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-809824/", + "id": 809824, + "name": "An Anti-Crisis Part IV: Shot In the Dark", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-4-an-anti-crisis-part-iv-s/4000-809824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-815623/", + "id": 815623, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-infectious-1-volume-3/4000-815623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804749/", + "id": 804749, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-multiverses-end-1/4000-804749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802694/", + "id": 802694, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-speed-metal-1/4000-802694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798860/", + "id": 798860, + "name": "Doom Metal Part One", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-53-doom-metal-part-one/4000-798860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797688/", + "id": 797688, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-trinity-crisis-1/4000-797688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-794384/", + "id": 794384, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-guidebook-1/4000-794384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-790343/", + "id": 790343, + "name": "An Anti-Crisis Part III: Pick Up Styx", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-3-an-anti-crisis-part-iii-/4000-790343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-786296/", + "id": 786296, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-legends-of-the-dark-knight/4000-786296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-778244/", + "id": 778244, + "name": "An Anti-Crisis Part II: Be the Fern", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-2-an-anti-crisis-part-ii-b/4000-778244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-768300/", + "id": 768300, + "name": "An Anti-Crisis Part I: It All Matters", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-1-an-anti-crisis-part-i-it/4000-768300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-774467/", + "id": 774467, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/flash-forward-1-tpb/4000-774467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-769593/", + "id": 769593, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain-the-infected-1-tpb/4000-769593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-768244/", + "id": 768244, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain-hell-arisen-1-tpb/4000-768244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743321/", + "id": 743321, + "name": "I'm the Bad Guy Finale", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-40-im-the-bad-guy-finale/4000-743321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-741794/", + "id": 741794, + "name": "Conclusion; Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain-hell-arisen-4-conclusion-epilo/4000-741794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755112/", + "id": 755112, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-who-are-the-secret-six-1-volume-1/4000-755112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-758293/", + "id": 758293, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/batman-ktory-sie-smieje-1-hc/4000-758293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738551/", + "id": 738551, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain-hell-arisen-3-part-three/4000-738551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736995/", + "id": 736995, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-pennyworth-rip-1/4000-736995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905661/", + "id": 905661, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1708/4000-905661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-734545/", + "id": 734545, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain-hell-arisen-2-part-two/4000-734545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-734533/", + "id": 734533, + "name": "Infection Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-6-infection-aftermath/4000-734533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732700/", + "id": 732700, + "name": "I'm the Bad Guy Part 2", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-38-im-the-bad-guy-part-2/4000-732700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732698/", + "id": 732698, + "name": "Death's Doorway Part One: Passengers", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-20-deaths-doorway-part-one-passengers/4000-732698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731327/", + "id": 731327, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-villain-hell-arisen-1-part-one/4000-731327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731303/", + "id": 731303, + "name": "Who Are the Secret Six? Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-5-who-are-the-secret-six-conclusion/4000-731303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730213/", + "id": 730213, + "name": "I'm the Bad Guy", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-37-im-the-bad-guy/4000-730213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730208/", + "id": 730208, + "name": "With the Winners Decided By You--The Fans!", + "site_detail_url": "https://comicvine.gamespot.com/harley-quinns-villain-of-the-year-1-with-the-winne/4000-730208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729504/", + "id": 729504, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/new-years-evil-1/4000-729504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729500/", + "id": 729500, + "name": "Death By A Thousand Cuts", + "site_detail_url": "https://comicvine.gamespot.com/the-infected-deathbringer-1-death-by-a-thousand-cu/4000-729500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728906/", + "id": 728906, + "name": "The Best Day of Her Life", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-annual-2-the-best-day-of-her-life/4000-728906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728328/", + "id": 728328, + "name": "Who's Laughing Now?", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-36-whos-laughing-now/4000-728328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728322/", + "id": 728322, + "name": "Metamorphosis", + "site_detail_url": "https://comicvine.gamespot.com/the-infected-scarab-1-metamorphosis/4000-728322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728315/", + "id": 728315, + "name": "Who Are the Secret Six? Part Four", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-4-who-are-the-secret-six-part-four/4000-728315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726007/", + "id": 726007, + "name": "Growing Pains", + "site_detail_url": "https://comicvine.gamespot.com/the-infected-king-shazam-1-growing-pains/4000-726007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725233/", + "id": 725233, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/tales-from-the-dark-multiverse-the-death-of-superm/4000-725233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723826/", + "id": 723826, + "name": "Who Are the Secret Six? Part Three", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-3-who-are-the-secret-six-part-three/4000-723826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-722996/", + "id": 722996, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/tales-from-the-dark-multiverse-batman-knightfall-1/4000-722996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720037/", + "id": 720037, + "name": "Who Are the Secret Six? Part Two", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-2-who-are-the-secret-six-part-two/4000-720037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719311/", + "id": 719311, + "name": "Only Luthor", + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor-year-of-the-villain-1-only-luthor/4000-719311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720028/", + "id": 720028, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-previews-18/4000-720028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718646/", + "id": 718646, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-the-batman-who-laughs-1-special-editio/4000-718646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717390/", + "id": 717390, + "name": "Who Are the Secret Six? Part One", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-1-who-are-the-secret-six-part-one/4000-717390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715220/", + "id": 715220, + "name": "Jarro's Tale: A Justice/Doom War Prelude", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-29-jarros-tale-a-justicedoom-war-pr/4000-715220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714615/", + "id": 714615, + "name": "The Laughing House Part 7", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-7-the-laughing-house-part-7/4000-714615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712953/", + "id": 712953, + "name": "Apex Predator Part 2", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-27-apex-predator-part-2/4000-712953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717391/", + "id": 717391, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-1-hctpb/4000-717391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711240/", + "id": 711240, + "name": "The Laughing House Part 6", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-6-the-laughing-house-part-6/4000-711240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708086/", + "id": 708086, + "name": "The Laughing House Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-5-the-laughing-house-part-5/4000-708086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707486/", + "id": 707486, + "name": "Doom; Leviathan; Justice", + "site_detail_url": "https://comicvine.gamespot.com/dcs-year-of-the-villain-special-1-doom-leviathan-j/4000-707486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709968/", + "id": 709968, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-previews-14/4000-709968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705887/", + "id": 705887, + "name": "The Laughing House Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-4-the-laughing-house-part-4/4000-705887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708093/", + "id": 708093, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-graveyard-of-gods-1-volume-2/4000-708093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704777/", + "id": 704777, + "name": "Blow Out", + "site_detail_url": "https://comicvine.gamespot.com/batgirl-33-blow-out/4000-704777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703027/", + "id": 703027, + "name": "A Grim Knight In Gotham", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-the-grim-knight-1-a-grim-kni/4000-703027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701289/", + "id": 701289, + "name": "Legion of Doom Part Four", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-18-legion-of-doom-part-four/4000-701289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700638/", + "id": 700638, + "name": "The Laughing House Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-3-the-laughing-house-part-3/4000-700638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905641/", + "id": 905641, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1656/4000-905641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701361/", + "id": 701361, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-previews-11/4000-701361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698581/", + "id": 698581, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-curse-of-brimstone-annual-1/4000-698581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697602/", + "id": 697602, + "name": "The Laughing House Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-2-the-laughing-house-part-2/4000-697602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694877/", + "id": 694877, + "name": "The Laughing House Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-who-laughs-1-the-laughing-house-part-1/4000-694877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694111/", + "id": 694111, + "name": "Legion of Doom Part Three", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-13-legion-of-doom-part-three/4000-694111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685821/", + "id": 685821, + "name": "Legion of Doom Part Two", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-8-legion-of-doom-part-two/4000-685821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684891/", + "id": 684891, + "name": "The Seventh Soldier", + "site_detail_url": "https://comicvine.gamespot.com/sideways-8-the-seventh-soldier/4000-684891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683813/", + "id": 683813, + "name": "The Totality Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-7-the-totality-conclusion/4000-683813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696204/", + "id": 696204, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/jim-lee-dc-legends-artifact-edition-1-volume-10/4000-696204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686280/", + "id": 686280, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-previews-6/4000-686280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686358/", + "id": 686358, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america-deadly-fable-1-volume-5/4000-686358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679452/", + "id": 679452, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-metal-special-2/4000-679452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675949/", + "id": 675949, + "name": "All That Remains", + "site_detail_url": "https://comicvine.gamespot.com/the-curse-of-brimstone-4-all-that-remains/4000-675949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673006/", + "id": 673006, + "name": "It's Showtime", + "site_detail_url": "https://comicvine.gamespot.com/sideways-5-its-showtime/4000-673006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672996/", + "id": 672996, + "name": "The End of Forever Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-men-3-the-end-of-forever-part-3/4000-672996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673934/", + "id": 673934, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-metal-special-1/4000-673934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665889/", + "id": 665889, + "name": "Test Run", + "site_detail_url": "https://comicvine.gamespot.com/sideways-3-test-run/4000-665889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665880/", + "id": 665880, + "name": "The End of Forever Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-men-1-the-end-of-forever-part-1/4000-665880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674103/", + "id": 674103, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-dark-knights-rising-1-hctpb/4000-674103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673094/", + "id": 673094, + "name": "Widerstand in Gotham", + "site_detail_url": "https://comicvine.gamespot.com/batman-metal-sonderband-1-widerstand-in-gotham/4000-673094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672251/", + "id": 672251, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-the-deluxe-edition-1-hc/4000-672251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664258/", + "id": 664258, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-6/4000-664258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670088/", + "id": 670088, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-days-the-road-to-metal-1-hctpb/4000-670088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661121/", + "id": 661121, + "name": "New Life and Death Part One", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america-25-new-life-and-death-pa/4000-661121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659977/", + "id": 659977, + "name": "Riders On the Razor", + "site_detail_url": "https://comicvine.gamespot.com/dark-knights-rising-the-wild-hunt-1-riders-on-the-/4000-659977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-656677/", + "id": 656677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-5/4000-656677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-654043/", + "id": 654043, + "name": "Super Sons of Tomorrow Finale: Last Minute Saved", + "site_detail_url": "https://comicvine.gamespot.com/super-sons-12-super-sons-of-tomorrow-finale-last-m/4000-654043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652604/", + "id": 652604, + "name": "Deadly Fable Part One", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america-22-deadly-fable-part-one/4000-652604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649697/", + "id": 649697, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-directors-cut-1/4000-649697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-647910/", + "id": 647910, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-4/4000-647910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638576/", + "id": 638576, + "name": "Bats Out of Hell Finale", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-33-bats-out-of-hell-finale/4000-638576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638566/", + "id": 638566, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-the-batman-who-laughs-1/4000-638566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-636345/", + "id": 636345, + "name": "Bats Out of Hell Part Three: None More Black", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps-32-bats-out/4000-636345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634517/", + "id": 634517, + "name": "Bats Out of Hell, Part Two: Countdown To Extinction", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-32-bats-out-of-hell-part-two-countd/4000-634517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634505/", + "id": 634505, + "name": "Symphony of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-devastator-1-symphony-of-destruction/4000-634505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632461/", + "id": 632461, + "name": "Bats Out of Hell Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-33-bats-out-of-hell-part-one/4000-632461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632457/", + "id": 632457, + "name": "Wrath Child", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-merciless-1-wrath-child/4000-632457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630486/", + "id": 630486, + "name": "Rime of the Ancient Mariner", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-drowned-1-rime-of-the-ancient-mariner/4000-630486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628545/", + "id": 628545, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-3/4000-628545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626255/", + "id": 626255, + "name": "Gotham Resistance Finale", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow-32-gotham-resistance-finale/4000-626255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626248/", + "id": 626248, + "name": "Fear of the Dark", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-dawnbreaker-1-fear-of-the-dark/4000-626248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625292/", + "id": 625292, + "name": "Gotham Resistance Pt. 3: Welcome To Poison Ivy's Jungle", + "site_detail_url": "https://comicvine.gamespot.com/suicide-squad-26-gotham-resistance-pt-3-welcome-to/4000-625292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625175/", + "id": 625175, + "name": "Heavy Metal", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-murder-machine-1-heavy-metal/4000-625175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622889/", + "id": 622889, + "name": "Gotham Resistance Part 2: A Ring of Fire and Fear", + "site_detail_url": "https://comicvine.gamespot.com/nightwing-29-gotham-resistance-part-2-a-ring-of-fi/4000-622889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622873/", + "id": 622873, + "name": "Ride The Lightning", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-red-death-1-ride-the-lightning/4000-622873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621603/", + "id": 621603, + "name": "Gotham Resistance Pt.1: The Riddler's Labyrinth", + "site_detail_url": "https://comicvine.gamespot.com/teen-titans-12-gotham-resistance-pt1-the-riddlers-/4000-621603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621582/", + "id": 621582, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-2/4000-621582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614971/", + "id": 614971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-metal-1/4000-614971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-608175/", + "id": 608175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-days-the-casting-1/4000-608175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709806/", + "id": 709806, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-metal-der-aufstieg-der-dunklen-ritter-1/4000-709806/" + } + ], + "issues_died_in": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-768300/", + "id": 768300, + "name": "An Anti-Crisis Part I: It All Matters", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-1-an-anti-crisis-part-i-it/4000-768300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823806/", + "id": 823806, + "name": "An Anti-Crisis Part VII: A Slap In the Face; The Big Rock", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-7-an-anti-crisis-part-vii-/4000-823806/" + } + ], + "movies": [], + "name": "Batman Who Laughs", + "origin": { + "api_detail_url": "https://comicvine.gamespot.com/api/origin/4030-4/", + "id": 4, + "name": "Human" + }, + "powers": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-4/", + "id": 4, + "name": "Agility" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-9/", + "id": 9, + "name": "Intellect" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-17/", + "id": 17, + "name": "Weapon Master" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-34/", + "id": 34, + "name": "Unarmed Combat" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-35/", + "id": 35, + "name": "Gadgets" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-58/", + "id": 58, + "name": "Escape Artist" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-77/", + "id": 77, + "name": "Reality Manpulation" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-85/", + "id": 85, + "name": "Dimensional Manipulation" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-109/", + "id": 109, + "name": "Genetic Manipulation" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-111/", + "id": 111, + "name": "Power Item" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-113/", + "id": 113, + "name": "Claws" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-124/", + "id": 124, + "name": "Cosmic Awareness" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-135/", + "id": 135, + "name": "Leadership" + } + ], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-10/", + "id": 10, + "name": "DC Comics" + }, + "real_name": "Bruce Wayne", + "site_detail_url": "https://comicvine.gamespot.com/batman-who-laughs/4005-141840/", + "story_arc_credits": [], + "team_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63877/", + "id": 63877, + "name": "Atlantis Royal Family", + "site_detail_url": "https://comicvine.gamespot.com/atlantis-royal-family/4060-63877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61230/", + "id": 61230, + "name": "Justice Incarnate", + "site_detail_url": "https://comicvine.gamespot.com/justice-incarnate/4060-61230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-31815/", + "id": 31815, + "name": "Justice League of America", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america/4060-31815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-27589/", + "id": 27589, + "name": "Justice Society of America", + "site_detail_url": "https://comicvine.gamespot.com/justice-society-of-america/4060-27589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-19240/", + "id": 19240, + "name": "Marvel Family", + "site_detail_url": "https://comicvine.gamespot.com/marvel-family/4060-19240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63175/", + "id": 63175, + "name": "The Terrifics", + "site_detail_url": "https://comicvine.gamespot.com/the-terrifics/4060-63175/" + } + ], + "team_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64281/", + "id": 64281, + "name": "Robins", + "site_detail_url": "https://comicvine.gamespot.com/robins/4060-64281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64654/", + "id": 64654, + "name": "Superiors of the Ancient House of El", + "site_detail_url": "https://comicvine.gamespot.com/superiors-of-the-ancient-house-of-el/4060-64654/" + } + ], + "teams": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43922/", + "id": 43922, + "name": "Legion of Doom", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-doom/4060-43922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-38149/", + "id": 38149, + "name": "Secret Six", + "site_detail_url": "https://comicvine.gamespot.com/secret-six/4060-38149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63197/", + "id": 63197, + "name": "The Dark Knights", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-knights/4060-63197/" + } + ], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119323/", + "id": 119323, + "name": "Batman Metal: Der Aufstieg der Dunklen Ritter", + "site_detail_url": "https://comicvine.gamespot.com/batman-metal-der-aufstieg-der-dunklen-ritter/4050-119323/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/character-details/character-4005-1443.json b/samples/api-data/character-details/character-4005-1443.json new file mode 100644 index 0000000..9f4d3f0 --- /dev/null +++ b/samples/api-data/character-details/character-4005-1443.json @@ -0,0 +1,113953 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Peter Parker\nCaptain Universe\nDusk\nHornet\nProdigy\nRicochet\nBombastic Bag-Man\nPoison\nPestilence\nSpidey\nWallcrawler\nWebslinger\nWeb-Head\nYour Friendly Neighborhood Spider-Man\nSpider-Kid\nThe Human Spider", + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1443/", + "birth": "Oct 14, 1962", + "character_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6819/", + "id": 6819, + "name": "8-Ball", + "site_detail_url": "https://comicvine.gamespot.com/8-ball/4005-6819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51481/", + "id": 51481, + "name": "A'sai", + "site_detail_url": "https://comicvine.gamespot.com/asai/4005-51481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143738/", + "id": 143738, + "name": "Aaron Davis", + "site_detail_url": "https://comicvine.gamespot.com/aaron-davis/4005-143738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4822/", + "id": 4822, + "name": "Abe Jenkins", + "site_detail_url": "https://comicvine.gamespot.com/abe-jenkins/4005-4822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113665/", + "id": 113665, + "name": "Abner Doolittle", + "site_detail_url": "https://comicvine.gamespot.com/abner-doolittle/4005-113665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15671/", + "id": 15671, + "name": "Abner Dunson", + "site_detail_url": "https://comicvine.gamespot.com/abner-dunson/4005-15671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3489/", + "id": 3489, + "name": "Abomination", + "site_detail_url": "https://comicvine.gamespot.com/abomination/4005-3489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1779/", + "id": 1779, + "name": "Absorbing Man", + "site_detail_url": "https://comicvine.gamespot.com/absorbing-man/4005-1779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86673/", + "id": 86673, + "name": "Abyss", + "site_detail_url": "https://comicvine.gamespot.com/abyss/4005-86673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154782/", + "id": 154782, + "name": "Acrobat", + "site_detail_url": "https://comicvine.gamespot.com/acrobat/4005-154782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101692/", + "id": 101692, + "name": "Adams", + "site_detail_url": "https://comicvine.gamespot.com/adams/4005-101692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9671/", + "id": 9671, + "name": "Adolf Hitler", + "site_detail_url": "https://comicvine.gamespot.com/adolf-hitler/4005-9671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3366/", + "id": 3366, + "name": "Aftershock", + "site_detail_url": "https://comicvine.gamespot.com/aftershock/4005-3366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21584/", + "id": 21584, + "name": "Agamotto", + "site_detail_url": "https://comicvine.gamespot.com/agamotto/4005-21584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147901/", + "id": 147901, + "name": "Agent Cole", + "site_detail_url": "https://comicvine.gamespot.com/agent-cole/4005-147901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143382/", + "id": 143382, + "name": "Agni, Lord of Fire", + "site_detail_url": "https://comicvine.gamespot.com/agni-lord-of-fire/4005-143382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40796/", + "id": 40796, + "name": "Agony", + "site_detail_url": "https://comicvine.gamespot.com/agony/4005-40796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74554/", + "id": 74554, + "name": "Ai Apaec", + "site_detail_url": "https://comicvine.gamespot.com/ai-apaec/4005-74554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77039/", + "id": 77039, + "name": "Airborne", + "site_detail_url": "https://comicvine.gamespot.com/airborne/4005-77039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24147/", + "id": 24147, + "name": "Akasha Martinez", + "site_detail_url": "https://comicvine.gamespot.com/akasha-martinez/4005-24147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44289/", + "id": 44289, + "name": "Akhenaten", + "site_detail_url": "https://comicvine.gamespot.com/akhenaten/4005-44289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27251/", + "id": 27251, + "name": "Alecto", + "site_detail_url": "https://comicvine.gamespot.com/alecto/4005-27251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61337/", + "id": 61337, + "name": "Alex DePaul", + "site_detail_url": "https://comicvine.gamespot.com/alex-depaul/4005-61337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26848/", + "id": 26848, + "name": "Alexi Vazhin", + "site_detail_url": "https://comicvine.gamespot.com/alexi-vazhin/4005-26848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26331/", + "id": 26331, + "name": "Alfredo Morelli", + "site_detail_url": "https://comicvine.gamespot.com/alfredo-morelli/4005-26331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14478/", + "id": 14478, + "name": "Algernon Crowe", + "site_detail_url": "https://comicvine.gamespot.com/algernon-crowe/4005-14478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6292/", + "id": 6292, + "name": "Alistair Smythe", + "site_detail_url": "https://comicvine.gamespot.com/alistair-smythe/4005-6292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156395/", + "id": 156395, + "name": "Allene Green", + "site_detail_url": "https://comicvine.gamespot.com/allene-green/4005-156395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8109/", + "id": 8109, + "name": "Alpha", + "site_detail_url": "https://comicvine.gamespot.com/alpha/4005-8109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24652/", + "id": 24652, + "name": "Alyosha Kravinoff", + "site_detail_url": "https://comicvine.gamespot.com/alyosha-kravinoff/4005-24652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136139/", + "id": 136139, + "name": "Amazing Fantasy Boy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-boy/4005-136139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147438/", + "id": 147438, + "name": "Amazing Pinhead", + "site_detail_url": "https://comicvine.gamespot.com/amazing-pinhead/4005-147438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16199/", + "id": 16199, + "name": "Ambush", + "site_detail_url": "https://comicvine.gamespot.com/ambush/4005-16199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15368/", + "id": 15368, + "name": "Amos Jardine", + "site_detail_url": "https://comicvine.gamespot.com/amos-jardine/4005-15368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3565/", + "id": 3565, + "name": "Amphibius", + "site_detail_url": "https://comicvine.gamespot.com/amphibius/4005-3565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61343/", + "id": 61343, + "name": "Ana Kravinoff", + "site_detail_url": "https://comicvine.gamespot.com/ana-kravinoff/4005-61343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19351/", + "id": 19351, + "name": "Anaconda", + "site_detail_url": "https://comicvine.gamespot.com/anaconda/4005-19351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4814/", + "id": 4814, + "name": "Andrea von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/andrea-von-strucker/4005-4814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4815/", + "id": 4815, + "name": "Andreas von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/andreas-von-strucker/4005-4815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136142/", + "id": 136142, + "name": "Andrew Carpathian", + "site_detail_url": "https://comicvine.gamespot.com/andrew-carpathian/4005-136142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15460/", + "id": 15460, + "name": "Andros", + "site_detail_url": "https://comicvine.gamespot.com/andros/4005-15460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32260/", + "id": 32260, + "name": "Angar the Screamer", + "site_detail_url": "https://comicvine.gamespot.com/angar-the-screamer/4005-32260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54524/", + "id": 54524, + "name": "Angel Face", + "site_detail_url": "https://comicvine.gamespot.com/angel-face/4005-54524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6769/", + "id": 6769, + "name": "Angelo Fortunato", + "site_detail_url": "https://comicvine.gamespot.com/angelo-fortunato/4005-6769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148099/", + "id": 148099, + "name": "Angrir", + "site_detail_url": "https://comicvine.gamespot.com/angrir/4005-148099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154719/", + "id": 154719, + "name": "Angus Munro", + "site_detail_url": "https://comicvine.gamespot.com/angus-munro/4005-154719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10964/", + "id": 10964, + "name": "Annihilus", + "site_detail_url": "https://comicvine.gamespot.com/annihilus/4005-10964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154238/", + "id": 154238, + "name": "Answer (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/answer-hobgoblin/4005-154238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46951/", + "id": 46951, + "name": "Anthro", + "site_detail_url": "https://comicvine.gamespot.com/anthro/4005-46951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154780/", + "id": 154780, + "name": "Anton DeLionatus ", + "site_detail_url": "https://comicvine.gamespot.com/anton-delionatus/4005-154780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44377/", + "id": 44377, + "name": "Antoro", + "site_detail_url": "https://comicvine.gamespot.com/antoro/4005-44377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34095/", + "id": 34095, + "name": "Anvil", + "site_detail_url": "https://comicvine.gamespot.com/anvil/4005-34095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7612/", + "id": 7612, + "name": "Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse/4005-7612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43230/", + "id": 43230, + "name": "Apox", + "site_detail_url": "https://comicvine.gamespot.com/apox/4005-43230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136140/", + "id": 136140, + "name": "April Fool", + "site_detail_url": "https://comicvine.gamespot.com/april-fool/4005-136140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5043/", + "id": 5043, + "name": "Aquarius", + "site_detail_url": "https://comicvine.gamespot.com/aquarius/4005-5043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46949/", + "id": 46949, + "name": "Arachne", + "site_detail_url": "https://comicvine.gamespot.com/arachne/4005-46949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68186/", + "id": 68186, + "name": "Arachne", + "site_detail_url": "https://comicvine.gamespot.com/arachne/4005-68186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156221/", + "id": 156221, + "name": "Arachnikid", + "site_detail_url": "https://comicvine.gamespot.com/arachnikid/4005-156221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8429/", + "id": 8429, + "name": "Arcade", + "site_detail_url": "https://comicvine.gamespot.com/arcade/4005-8429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13369/", + "id": 13369, + "name": "Arclight", + "site_detail_url": "https://comicvine.gamespot.com/arclight/4005-13369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11940/", + "id": 11940, + "name": "Ares", + "site_detail_url": "https://comicvine.gamespot.com/ares/4005-11940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4145/", + "id": 4145, + "name": "Argus", + "site_detail_url": "https://comicvine.gamespot.com/argus/4005-4145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34351/", + "id": 34351, + "name": "Arisen Tyrk", + "site_detail_url": "https://comicvine.gamespot.com/arisen-tyrk/4005-34351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32857/", + "id": 32857, + "name": "Arishem the Judge", + "site_detail_url": "https://comicvine.gamespot.com/arishem-the-judge/4005-32857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19947/", + "id": 19947, + "name": "Arkon", + "site_detail_url": "https://comicvine.gamespot.com/arkon/4005-19947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15662/", + "id": 15662, + "name": "Armada", + "site_detail_url": "https://comicvine.gamespot.com/armada/4005-15662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6800/", + "id": 6800, + "name": "Armadillo", + "site_detail_url": "https://comicvine.gamespot.com/armadillo/4005-6800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33252/", + "id": 33252, + "name": "Armand DuBroth", + "site_detail_url": "https://comicvine.gamespot.com/armand-dubroth/4005-33252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14876/", + "id": 14876, + "name": "Arnim Zola", + "site_detail_url": "https://comicvine.gamespot.com/arnim-zola/4005-14876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46706/", + "id": 46706, + "name": "Arno Stark", + "site_detail_url": "https://comicvine.gamespot.com/arno-stark/4005-46706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15302/", + "id": 15302, + "name": "Arranger", + "site_detail_url": "https://comicvine.gamespot.com/arranger/4005-15302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56297/", + "id": 56297, + "name": "Arsenal", + "site_detail_url": "https://comicvine.gamespot.com/arsenal/4005-56297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33415/", + "id": 33415, + "name": "Arthur Nagan", + "site_detail_url": "https://comicvine.gamespot.com/arthur-nagan/4005-33415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28880/", + "id": 28880, + "name": "Asp", + "site_detail_url": "https://comicvine.gamespot.com/asp/4005-28880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107710/", + "id": 107710, + "name": "Assassin-8", + "site_detail_url": "https://comicvine.gamespot.com/assassin-8/4005-107710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2095/", + "id": 2095, + "name": "Asylum", + "site_detail_url": "https://comicvine.gamespot.com/asylum/4005-2095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3277/", + "id": 3277, + "name": "Atlas", + "site_detail_url": "https://comicvine.gamespot.com/atlas/4005-3277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15779/", + "id": 15779, + "name": "Attuma", + "site_detail_url": "https://comicvine.gamespot.com/attuma/4005-15779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6294/", + "id": 6294, + "name": "Aura", + "site_detail_url": "https://comicvine.gamespot.com/aura/4005-6294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24017/", + "id": 24017, + "name": "Authority", + "site_detail_url": "https://comicvine.gamespot.com/authority/4005-24017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148105/", + "id": 148105, + "name": "Av-Rom", + "site_detail_url": "https://comicvine.gamespot.com/av-rom/4005-148105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3553/", + "id": 3553, + "name": "Avalanche", + "site_detail_url": "https://comicvine.gamespot.com/avalanche/4005-3553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4944/", + "id": 4944, + "name": "Awesome Android", + "site_detail_url": "https://comicvine.gamespot.com/awesome-android/4005-4944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155173/", + "id": 155173, + "name": "Baal", + "site_detail_url": "https://comicvine.gamespot.com/baal/4005-155173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23805/", + "id": 23805, + "name": "Badd Axe", + "site_detail_url": "https://comicvine.gamespot.com/badd-axe/4005-23805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78011/", + "id": 78011, + "name": "Badger Teeth", + "site_detail_url": "https://comicvine.gamespot.com/badger-teeth/4005-78011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29143/", + "id": 29143, + "name": "Banjo", + "site_detail_url": "https://comicvine.gamespot.com/banjo/4005-29143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3563/", + "id": 3563, + "name": "Barbarus", + "site_detail_url": "https://comicvine.gamespot.com/barbarus/4005-3563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6281/", + "id": 6281, + "name": "Baron Blood (Crichton)", + "site_detail_url": "https://comicvine.gamespot.com/baron-blood-crichton/4005-6281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14410/", + "id": 14410, + "name": "Baron Blood (Falsworth)", + "site_detail_url": "https://comicvine.gamespot.com/baron-blood-falsworth/4005-14410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52775/", + "id": 52775, + "name": "Baron Brimstone", + "site_detail_url": "https://comicvine.gamespot.com/baron-brimstone/4005-52775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3708/", + "id": 3708, + "name": "Baron Heinrich Zemo", + "site_detail_url": "https://comicvine.gamespot.com/baron-heinrich-zemo/4005-3708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3278/", + "id": 3278, + "name": "Baron Helmut Zemo", + "site_detail_url": "https://comicvine.gamespot.com/baron-helmut-zemo/4005-3278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2213/", + "id": 2213, + "name": "Baron Mordo", + "site_detail_url": "https://comicvine.gamespot.com/baron-mordo/4005-2213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4662/", + "id": 4662, + "name": "Baron von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/baron-von-strucker/4005-4662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15054/", + "id": 15054, + "name": "Baroness Zemo", + "site_detail_url": "https://comicvine.gamespot.com/baroness-zemo/4005-15054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34978/", + "id": 34978, + "name": "Bart Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/bart-hamilton/4005-34978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159294/", + "id": 159294, + "name": "Basenji", + "site_detail_url": "https://comicvine.gamespot.com/basenji/4005-159294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62734/", + "id": 62734, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-62734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14442/", + "id": 14442, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-14442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1529/", + "id": 1529, + "name": "Batroc", + "site_detail_url": "https://comicvine.gamespot.com/batroc/4005-1529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15255/", + "id": 15255, + "name": "Battlescar", + "site_detail_url": "https://comicvine.gamespot.com/battlescar/4005-15255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133144/", + "id": 133144, + "name": "Bearboarguy", + "site_detail_url": "https://comicvine.gamespot.com/bearboarguy/4005-133144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13717/", + "id": 13717, + "name": "Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/bedlam/4005-13717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148214/", + "id": 148214, + "name": "Beetle (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-hobgoblin/4005-148214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4836/", + "id": 4836, + "name": "Beetle (Lincoln)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-lincoln/4005-4836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14153/", + "id": 14153, + "name": "Belladonna", + "site_detail_url": "https://comicvine.gamespot.com/belladonna/4005-14153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9706/", + "id": 9706, + "name": "Benazir Kaur", + "site_detail_url": "https://comicvine.gamespot.com/benazir-kaur/4005-9706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9705/", + "id": 9705, + "name": "Benedict Kine", + "site_detail_url": "https://comicvine.gamespot.com/benedict-kine/4005-9705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166973/", + "id": 166973, + "name": "Benjamin Rabin", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-rabin/4005-166973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94955/", + "id": 94955, + "name": "Bertolt Hoover", + "site_detail_url": "https://comicvine.gamespot.com/bertolt-hoover/4005-94955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10300/", + "id": 10300, + "name": "Beyonder", + "site_detail_url": "https://comicvine.gamespot.com/beyonder/4005-10300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74971/", + "id": 74971, + "name": "Big Murder", + "site_detail_url": "https://comicvine.gamespot.com/big-murder/4005-74971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175603/", + "id": 175603, + "name": "Big Tow", + "site_detail_url": "https://comicvine.gamespot.com/big-tow/4005-175603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34615/", + "id": 34615, + "name": "Big Wheel", + "site_detail_url": "https://comicvine.gamespot.com/big-wheel/4005-34615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6724/", + "id": 6724, + "name": "Billy Connors", + "site_detail_url": "https://comicvine.gamespot.com/billy-connors/4005-6724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154747/", + "id": 154747, + "name": "Birthday Bandit", + "site_detail_url": "https://comicvine.gamespot.com/birthday-bandit/4005-154747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31578/", + "id": 31578, + "name": "Black Abbott", + "site_detail_url": "https://comicvine.gamespot.com/black-abbott/4005-31578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1479/", + "id": 1479, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/black-cat/4005-1479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90284/", + "id": 90284, + "name": "Black Dwarf", + "site_detail_url": "https://comicvine.gamespot.com/black-dwarf/4005-90284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21201/", + "id": 21201, + "name": "Black Fox", + "site_detail_url": "https://comicvine.gamespot.com/black-fox/4005-21201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33985/", + "id": 33985, + "name": "Black Jack Tarr", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-tarr/4005-33985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73451/", + "id": 73451, + "name": "Black Knight (Garrett)", + "site_detail_url": "https://comicvine.gamespot.com/black-knight-garrett/4005-73451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30719/", + "id": 30719, + "name": "Black Mamba", + "site_detail_url": "https://comicvine.gamespot.com/black-mamba/4005-30719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169031/", + "id": 169031, + "name": "Black Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/black-rabbit/4005-169031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8669/", + "id": 8669, + "name": "Black Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/black-tarantula/4005-8669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4568/", + "id": 4568, + "name": "Black Tom Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/black-tom-cassidy/4005-4568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14728/", + "id": 14728, + "name": "Blackheart", + "site_detail_url": "https://comicvine.gamespot.com/blackheart/4005-14728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3283/", + "id": 3283, + "name": "Blackheath", + "site_detail_url": "https://comicvine.gamespot.com/blackheath/4005-3283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39120/", + "id": 39120, + "name": "Blackie Gaxton", + "site_detail_url": "https://comicvine.gamespot.com/blackie-gaxton/4005-39120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87712/", + "id": 87712, + "name": "Blacklash", + "site_detail_url": "https://comicvine.gamespot.com/blacklash/4005-87712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11839/", + "id": 11839, + "name": "Blackout", + "site_detail_url": "https://comicvine.gamespot.com/blackout/4005-11839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136144/", + "id": 136144, + "name": "Blare", + "site_detail_url": "https://comicvine.gamespot.com/blare/4005-136144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10963/", + "id": 10963, + "name": "Blastaar", + "site_detail_url": "https://comicvine.gamespot.com/blastaar/4005-10963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58586/", + "id": 58586, + "name": "Blaze", + "site_detail_url": "https://comicvine.gamespot.com/blaze/4005-58586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55855/", + "id": 55855, + "name": "Blind Ali", + "site_detail_url": "https://comicvine.gamespot.com/blind-ali/4005-55855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58251/", + "id": 58251, + "name": "Blindside", + "site_detail_url": "https://comicvine.gamespot.com/blindside/4005-58251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27042/", + "id": 27042, + "name": "Blitz", + "site_detail_url": "https://comicvine.gamespot.com/blitz/4005-27042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41897/", + "id": 41897, + "name": "Blitzwing", + "site_detail_url": "https://comicvine.gamespot.com/blitzwing/4005-41897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4808/", + "id": 4808, + "name": "Blizzard", + "site_detail_url": "https://comicvine.gamespot.com/blizzard/4005-4808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86265/", + "id": 86265, + "name": "Blizzard (Shapanka)", + "site_detail_url": "https://comicvine.gamespot.com/blizzard-shapanka/4005-86265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3182/", + "id": 3182, + "name": "Blob", + "site_detail_url": "https://comicvine.gamespot.com/blob/4005-3182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15023/", + "id": 15023, + "name": "Blood Brothers", + "site_detail_url": "https://comicvine.gamespot.com/blood-brothers/4005-15023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15517/", + "id": 15517, + "name": "Blood Spider", + "site_detail_url": "https://comicvine.gamespot.com/blood-spider/4005-15517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28480/", + "id": 28480, + "name": "Bloodlust", + "site_detail_url": "https://comicvine.gamespot.com/bloodlust/4005-28480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15734/", + "id": 15734, + "name": "Bloodscream", + "site_detail_url": "https://comicvine.gamespot.com/bloodscream/4005-15734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28109/", + "id": 28109, + "name": "Bloodshed", + "site_detail_url": "https://comicvine.gamespot.com/bloodshed/4005-28109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175657/", + "id": 175657, + "name": "Blowhard", + "site_detail_url": "https://comicvine.gamespot.com/blowhard/4005-175657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57243/", + "id": 57243, + "name": "Blowtorch", + "site_detail_url": "https://comicvine.gamespot.com/blowtorch/4005-57243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154745/", + "id": 154745, + "name": "Bluebeard", + "site_detail_url": "https://comicvine.gamespot.com/bluebeard/4005-154745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154807/", + "id": 154807, + "name": "Bluebird", + "site_detail_url": "https://comicvine.gamespot.com/bluebird/4005-154807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60341/", + "id": 60341, + "name": "Boar", + "site_detail_url": "https://comicvine.gamespot.com/boar/4005-60341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54835/", + "id": 54835, + "name": "Bobby Carr", + "site_detail_url": "https://comicvine.gamespot.com/bobby-carr/4005-54835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15923/", + "id": 15923, + "name": "Bolivar Trask", + "site_detail_url": "https://comicvine.gamespot.com/bolivar-trask/4005-15923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11213/", + "id": 11213, + "name": "Bomblast", + "site_detail_url": "https://comicvine.gamespot.com/bomblast/4005-11213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27882/", + "id": 27882, + "name": "Bombshell", + "site_detail_url": "https://comicvine.gamespot.com/bombshell/4005-27882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73611/", + "id": 73611, + "name": "Bombshell", + "site_detail_url": "https://comicvine.gamespot.com/bombshell/4005-73611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115236/", + "id": 115236, + "name": "Bone Saw McGraw", + "site_detail_url": "https://comicvine.gamespot.com/bone-saw-mcgraw/4005-115236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6299/", + "id": 6299, + "name": "Boomerang", + "site_detail_url": "https://comicvine.gamespot.com/boomerang/4005-6299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15315/", + "id": 15315, + "name": "Boone", + "site_detail_url": "https://comicvine.gamespot.com/boone/4005-15315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108083/", + "id": 108083, + "name": "Bora", + "site_detail_url": "https://comicvine.gamespot.com/bora/4005-108083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28316/", + "id": 28316, + "name": "Bora", + "site_detail_url": "https://comicvine.gamespot.com/bora/4005-28316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34216/", + "id": 34216, + "name": "Boris Korpse", + "site_detail_url": "https://comicvine.gamespot.com/boris-korpse/4005-34216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22874/", + "id": 22874, + "name": "Bounty", + "site_detail_url": "https://comicvine.gamespot.com/bounty/4005-22874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74816/", + "id": 74816, + "name": "Bowman", + "site_detail_url": "https://comicvine.gamespot.com/bowman/4005-74816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50901/", + "id": 50901, + "name": "Brace", + "site_detail_url": "https://comicvine.gamespot.com/brace/4005-50901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143381/", + "id": 143381, + "name": "Brahma, The Creator", + "site_detail_url": "https://comicvine.gamespot.com/brahma-the-creator/4005-143381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3559/", + "id": 3559, + "name": "Brainchild", + "site_detail_url": "https://comicvine.gamespot.com/brainchild/4005-3559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27187/", + "id": 27187, + "name": "Brainstorm", + "site_detail_url": "https://comicvine.gamespot.com/brainstorm/4005-27187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15461/", + "id": 15461, + "name": "Bramer", + "site_detail_url": "https://comicvine.gamespot.com/bramer/4005-15461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76802/", + "id": 76802, + "name": "Brandon Chambers", + "site_detail_url": "https://comicvine.gamespot.com/brandon-chambers/4005-76802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74637/", + "id": 74637, + "name": "Brank", + "site_detail_url": "https://comicvine.gamespot.com/brank/4005-74637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5027/", + "id": 5027, + "name": "Brass Bishop", + "site_detail_url": "https://comicvine.gamespot.com/brass-bishop/4005-5027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29676/", + "id": 29676, + "name": "Bravo", + "site_detail_url": "https://comicvine.gamespot.com/bravo/4005-29676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113768/", + "id": 113768, + "name": "Brentano", + "site_detail_url": "https://comicvine.gamespot.com/brentano/4005-113768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140642/", + "id": 140642, + "name": "Bright Eyes", + "site_detail_url": "https://comicvine.gamespot.com/bright-eyes/4005-140642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108082/", + "id": 108082, + "name": "Brix", + "site_detail_url": "https://comicvine.gamespot.com/brix/4005-108082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34906/", + "id": 34906, + "name": "Brother Power", + "site_detail_url": "https://comicvine.gamespot.com/brother-power/4005-34906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22908/", + "id": 22908, + "name": "Brother Royal", + "site_detail_url": "https://comicvine.gamespot.com/brother-royal/4005-22908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3231/", + "id": 3231, + "name": "Brothers Grimm", + "site_detail_url": "https://comicvine.gamespot.com/brothers-grimm/4005-3231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156837/", + "id": 156837, + "name": "Bruno Grainger", + "site_detail_url": "https://comicvine.gamespot.com/bruno-grainger/4005-156837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23904/", + "id": 23904, + "name": "Buel", + "site_detail_url": "https://comicvine.gamespot.com/buel/4005-23904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76118/", + "id": 76118, + "name": "Bugeye", + "site_detail_url": "https://comicvine.gamespot.com/bugeye/4005-76118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2254/", + "id": 2254, + "name": "Bulldozer", + "site_detail_url": "https://comicvine.gamespot.com/bulldozer/4005-2254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4647/", + "id": 4647, + "name": "Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/bullseye/4005-4647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11932/", + "id": 11932, + "name": "Bushwacker", + "site_detail_url": "https://comicvine.gamespot.com/bushwacker/4005-11932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144866/", + "id": 144866, + "name": "Buzz Mason", + "site_detail_url": "https://comicvine.gamespot.com/buzz-mason/4005-144866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2157/", + "id": 2157, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4005-2157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158073/", + "id": 158073, + "name": "Cadaverous", + "site_detail_url": "https://comicvine.gamespot.com/cadaverous/4005-158073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33895/", + "id": 33895, + "name": "Caesar Cicero", + "site_detail_url": "https://comicvine.gamespot.com/caesar-cicero/4005-33895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49592/", + "id": 49592, + "name": "Caffrey", + "site_detail_url": "https://comicvine.gamespot.com/caffrey/4005-49592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176250/", + "id": 176250, + "name": "CAL", + "site_detail_url": "https://comicvine.gamespot.com/cal/4005-176250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15494/", + "id": 15494, + "name": "Calypso", + "site_detail_url": "https://comicvine.gamespot.com/calypso/4005-15494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73523/", + "id": 73523, + "name": "Camellia", + "site_detail_url": "https://comicvine.gamespot.com/camellia/4005-73523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13811/", + "id": 13811, + "name": "Cancer", + "site_detail_url": "https://comicvine.gamespot.com/cancer/4005-13811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147486/", + "id": 147486, + "name": "Captain America (HYDRA)", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-hydra/4005-147486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17645/", + "id": 17645, + "name": "Captain Power", + "site_detail_url": "https://comicvine.gamespot.com/captain-power/4005-17645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27193/", + "id": 27193, + "name": "Captain Universe", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe/4005-27193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15614/", + "id": 15614, + "name": "Cardiac", + "site_detail_url": "https://comicvine.gamespot.com/cardiac/4005-15614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59900/", + "id": 59900, + "name": "Carl Delandan", + "site_detail_url": "https://comicvine.gamespot.com/carl-delandan/4005-59900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140897/", + "id": 140897, + "name": "Carl Shuffler", + "site_detail_url": "https://comicvine.gamespot.com/carl-shuffler/4005-140897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30973/", + "id": 30973, + "name": "Carlo Zota", + "site_detail_url": "https://comicvine.gamespot.com/carlo-zota/4005-30973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29189/", + "id": 29189, + "name": "Carlos Lobo", + "site_detail_url": "https://comicvine.gamespot.com/carlos-lobo/4005-29189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55965/", + "id": 55965, + "name": "Carlton Drake", + "site_detail_url": "https://comicvine.gamespot.com/carlton-drake/4005-55965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52821/", + "id": 52821, + "name": "Carlyle", + "site_detail_url": "https://comicvine.gamespot.com/carlyle/4005-52821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1490/", + "id": 1490, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/carnage/4005-1490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13723/", + "id": 13723, + "name": "Carnivore", + "site_detail_url": "https://comicvine.gamespot.com/carnivore/4005-13723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86389/", + "id": 86389, + "name": "Carrion (Allen)", + "site_detail_url": "https://comicvine.gamespot.com/carrion-allen/4005-86389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14507/", + "id": 14507, + "name": "Carrion (McBride)", + "site_detail_url": "https://comicvine.gamespot.com/carrion-mcbride/4005-14507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86390/", + "id": 86390, + "name": "Carrion (Warren)", + "site_detail_url": "https://comicvine.gamespot.com/carrion-warren/4005-86390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57708/", + "id": 57708, + "name": "Carver", + "site_detail_url": "https://comicvine.gamespot.com/carver/4005-57708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38854/", + "id": 38854, + "name": "Cat Burglar", + "site_detail_url": "https://comicvine.gamespot.com/cat-burglar/4005-38854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14501/", + "id": 14501, + "name": "Cat-Man", + "site_detail_url": "https://comicvine.gamespot.com/cat-man/4005-14501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16127/", + "id": 16127, + "name": "Cedric Forrester", + "site_detail_url": "https://comicvine.gamespot.com/cedric-forrester/4005-16127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130308/", + "id": 130308, + "name": "Celestial Destructor", + "site_detail_url": "https://comicvine.gamespot.com/celestial-destructor/4005-130308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14757/", + "id": 14757, + "name": "Centurious", + "site_detail_url": "https://comicvine.gamespot.com/centurious/4005-14757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50738/", + "id": 50738, + "name": "Centurius", + "site_detail_url": "https://comicvine.gamespot.com/centurius/4005-50738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30990/", + "id": 30990, + "name": "Chain", + "site_detail_url": "https://comicvine.gamespot.com/chain/4005-30990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136137/", + "id": 136137, + "name": "Chairman", + "site_detail_url": "https://comicvine.gamespot.com/chairman/4005-136137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15241/", + "id": 15241, + "name": "Chakra", + "site_detail_url": "https://comicvine.gamespot.com/chakra/4005-15241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4458/", + "id": 4458, + "name": "Chameleon", + "site_detail_url": "https://comicvine.gamespot.com/chameleon/4005-4458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7911/", + "id": 7911, + "name": "Chance", + "site_detail_url": "https://comicvine.gamespot.com/chance/4005-7911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80454/", + "id": 80454, + "name": "Chaos", + "site_detail_url": "https://comicvine.gamespot.com/chaos/4005-80454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69433/", + "id": 69433, + "name": "Charlemagne", + "site_detail_url": "https://comicvine.gamespot.com/charlemagne/4005-69433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154812/", + "id": 154812, + "name": "Charles Bates", + "site_detail_url": "https://comicvine.gamespot.com/charles-bates/4005-154812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175498/", + "id": 175498, + "name": "Charles Cameo", + "site_detail_url": "https://comicvine.gamespot.com/charles-cameo/4005-175498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29677/", + "id": 29677, + "name": "Charlie", + "site_detail_url": "https://comicvine.gamespot.com/charlie/4005-29677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136192/", + "id": 136192, + "name": "Charlie Buchanan", + "site_detail_url": "https://comicvine.gamespot.com/charlie-buchanan/4005-136192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15510/", + "id": 15510, + "name": "Charlie Shaddock", + "site_detail_url": "https://comicvine.gamespot.com/charlie-shaddock/4005-15510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41413/", + "id": 41413, + "name": "Charlie Weiderman", + "site_detail_url": "https://comicvine.gamespot.com/charlie-weiderman/4005-41413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45770/", + "id": 45770, + "name": "Charlotte Witter", + "site_detail_url": "https://comicvine.gamespot.com/charlotte-witter/4005-45770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8035/", + "id": 8035, + "name": "Charnel", + "site_detail_url": "https://comicvine.gamespot.com/charnel/4005-8035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42236/", + "id": 42236, + "name": "Chemistro", + "site_detail_url": "https://comicvine.gamespot.com/chemistro/4005-42236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8677/", + "id": 8677, + "name": "Chesbro", + "site_detail_url": "https://comicvine.gamespot.com/chesbro/4005-8677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13959/", + "id": 13959, + "name": "Chondu", + "site_detail_url": "https://comicvine.gamespot.com/chondu/4005-13959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101484/", + "id": 101484, + "name": "Clash", + "site_detail_url": "https://comicvine.gamespot.com/clash/4005-101484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32564/", + "id": 32564, + "name": "Claw", + "site_detail_url": "https://comicvine.gamespot.com/claw/4005-32564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64716/", + "id": 64716, + "name": "Clay Surfer", + "site_detail_url": "https://comicvine.gamespot.com/clay-surfer/4005-64716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85179/", + "id": 85179, + "name": "Cletus Kasady", + "site_detail_url": "https://comicvine.gamespot.com/cletus-kasady/4005-85179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41198/", + "id": 41198, + "name": "Coachwhip", + "site_detail_url": "https://comicvine.gamespot.com/coachwhip/4005-41198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69046/", + "id": 69046, + "name": "Cobra", + "site_detail_url": "https://comicvine.gamespot.com/cobra/4005-69046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26244/", + "id": 26244, + "name": "Coldheart", + "site_detail_url": "https://comicvine.gamespot.com/coldheart/4005-26244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29212/", + "id": 29212, + "name": "Cole", + "site_detail_url": "https://comicvine.gamespot.com/cole/4005-29212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13987/", + "id": 13987, + "name": "Collector", + "site_detail_url": "https://comicvine.gamespot.com/collector/4005-13987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25069/", + "id": 25069, + "name": "Commanda", + "site_detail_url": "https://comicvine.gamespot.com/commanda/4005-25069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70437/", + "id": 70437, + "name": "Commander Gannon", + "site_detail_url": "https://comicvine.gamespot.com/commander-gannon/4005-70437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65682/", + "id": 65682, + "name": "Commuter", + "site_detail_url": "https://comicvine.gamespot.com/commuter/4005-65682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2186/", + "id": 2186, + "name": "Condor", + "site_detail_url": "https://comicvine.gamespot.com/condor/4005-2186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19945/", + "id": 19945, + "name": "Conquest", + "site_detail_url": "https://comicvine.gamespot.com/conquest/4005-19945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59850/", + "id": 59850, + "name": "Conserve and Protect", + "site_detail_url": "https://comicvine.gamespot.com/conserve-and-protect/4005-59850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2127/", + "id": 2127, + "name": "Constrictor", + "site_detail_url": "https://comicvine.gamespot.com/constrictor/4005-2127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147526/", + "id": 147526, + "name": "Conte Alvise Gianus", + "site_detail_url": "https://comicvine.gamespot.com/conte-alvise-gianus/4005-147526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3232/", + "id": 3232, + "name": "Controller", + "site_detail_url": "https://comicvine.gamespot.com/controller/4005-3232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23583/", + "id": 23583, + "name": "Conundrum", + "site_detail_url": "https://comicvine.gamespot.com/conundrum/4005-23583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11027/", + "id": 11027, + "name": "Copperhead", + "site_detail_url": "https://comicvine.gamespot.com/copperhead/4005-11027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14487/", + "id": 14487, + "name": "Copperhead", + "site_detail_url": "https://comicvine.gamespot.com/copperhead/4005-14487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15283/", + "id": 15283, + "name": "Corona", + "site_detail_url": "https://comicvine.gamespot.com/corona/4005-15283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13989/", + "id": 13989, + "name": "Corruptor", + "site_detail_url": "https://comicvine.gamespot.com/corruptor/4005-13989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88884/", + "id": 88884, + "name": "Corvus Glaive", + "site_detail_url": "https://comicvine.gamespot.com/corvus-glaive/4005-88884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35781/", + "id": 35781, + "name": "Cotton Mather", + "site_detail_url": "https://comicvine.gamespot.com/cotton-mather/4005-35781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22584/", + "id": 22584, + "name": "Cottonmouth", + "site_detail_url": "https://comicvine.gamespot.com/cottonmouth/4005-22584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3229/", + "id": 3229, + "name": "Count Nefaria", + "site_detail_url": "https://comicvine.gamespot.com/count-nefaria/4005-3229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86114/", + "id": 86114, + "name": "Coyote", + "site_detail_url": "https://comicvine.gamespot.com/coyote/4005-86114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86088/", + "id": 86088, + "name": "Crackers", + "site_detail_url": "https://comicvine.gamespot.com/crackers/4005-86088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55616/", + "id": 55616, + "name": "Crazy Eight", + "site_detail_url": "https://comicvine.gamespot.com/crazy-eight/4005-55616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135756/", + "id": 135756, + "name": "Cressida", + "site_detail_url": "https://comicvine.gamespot.com/cressida/4005-135756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131132/", + "id": 131132, + "name": "Crime Master (Sammy)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-sammy/4005-131132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85181/", + "id": 85181, + "name": "Crime-Master (Brant)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-brant/4005-85181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85196/", + "id": 85196, + "name": "Crime-Master (Lewis Jr.)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-lewis-jr/4005-85196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31699/", + "id": 31699, + "name": "Crime-Master (Lewis)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-lewis/4005-31699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18313/", + "id": 18313, + "name": "Crimewave", + "site_detail_url": "https://comicvine.gamespot.com/crimewave/4005-18313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14906/", + "id": 14906, + "name": "Crimson Commando", + "site_detail_url": "https://comicvine.gamespot.com/crimson-commando/4005-14906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87212/", + "id": 87212, + "name": "Crimson Dynamo (Bukharin)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-bukharin/4005-87212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7234/", + "id": 7234, + "name": "Crimson Dynamo (Vanko)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-vanko/4005-7234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100473/", + "id": 100473, + "name": "Crimson Dynamo IX ", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-ix/4005-100473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52822/", + "id": 52822, + "name": "Critical Mass", + "site_detail_url": "https://comicvine.gamespot.com/critical-mass/4005-52822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44112/", + "id": 44112, + "name": "Cross Wordo", + "site_detail_url": "https://comicvine.gamespot.com/cross-wordo/4005-44112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3225/", + "id": 3225, + "name": "Crossbones", + "site_detail_url": "https://comicvine.gamespot.com/crossbones/4005-3225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30800/", + "id": 30800, + "name": "Crossfire", + "site_detail_url": "https://comicvine.gamespot.com/crossfire/4005-30800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15452/", + "id": 15452, + "name": "Crown", + "site_detail_url": "https://comicvine.gamespot.com/crown/4005-15452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154298/", + "id": 154298, + "name": "Cruise", + "site_detail_url": "https://comicvine.gamespot.com/cruise/4005-154298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3235/", + "id": 3235, + "name": "Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crusader/4005-3235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15480/", + "id": 15480, + "name": "Crusher Hogan", + "site_detail_url": "https://comicvine.gamespot.com/crusher-hogan/4005-15480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3236/", + "id": 3236, + "name": "Cutthroat", + "site_detail_url": "https://comicvine.gamespot.com/cutthroat/4005-3236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14451/", + "id": 14451, + "name": "Cyclone", + "site_detail_url": "https://comicvine.gamespot.com/cyclone/4005-14451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87672/", + "id": 87672, + "name": "Cyclone (Gerard)", + "site_detail_url": "https://comicvine.gamespot.com/cyclone-gerard/4005-87672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16230/", + "id": 16230, + "name": "Cygnus", + "site_detail_url": "https://comicvine.gamespot.com/cygnus/4005-16230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24949/", + "id": 24949, + "name": "Cyttorak", + "site_detail_url": "https://comicvine.gamespot.com/cyttorak/4005-24949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74970/", + "id": 74970, + "name": "Czar", + "site_detail_url": "https://comicvine.gamespot.com/czar/4005-74970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154813/", + "id": 154813, + "name": "D", + "site_detail_url": "https://comicvine.gamespot.com/d/4005-154813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52865/", + "id": 52865, + "name": "D.K.", + "site_detail_url": "https://comicvine.gamespot.com/dk/4005-52865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42543/", + "id": 42543, + "name": "D'Spayre", + "site_detail_url": "https://comicvine.gamespot.com/dspayre/4005-42543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156399/", + "id": 156399, + "name": "Daarroh", + "site_detail_url": "https://comicvine.gamespot.com/daarroh/4005-156399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32261/", + "id": 32261, + "name": "Daddy Longlegs", + "site_detail_url": "https://comicvine.gamespot.com/daddy-longlegs/4005-32261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108084/", + "id": 108084, + "name": "Daemos", + "site_detail_url": "https://comicvine.gamespot.com/daemos/4005-108084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1935/", + "id": 1935, + "name": "Dagger", + "site_detail_url": "https://comicvine.gamespot.com/dagger/4005-1935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42501/", + "id": 42501, + "name": "Daken", + "site_detail_url": "https://comicvine.gamespot.com/daken/4005-42501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159293/", + "id": 159293, + "name": "Dane", + "site_detail_url": "https://comicvine.gamespot.com/dane/4005-159293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9864/", + "id": 9864, + "name": "Daniel Axum", + "site_detail_url": "https://comicvine.gamespot.com/daniel-axum/4005-9864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28756/", + "id": 28756, + "name": "Daniel Drumm", + "site_detail_url": "https://comicvine.gamespot.com/daniel-drumm/4005-28756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32257/", + "id": 32257, + "name": "Dansen Macabre", + "site_detail_url": "https://comicvine.gamespot.com/dansen-macabre/4005-32257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3422/", + "id": 3422, + "name": "Dark Beast", + "site_detail_url": "https://comicvine.gamespot.com/dark-beast/4005-3422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14713/", + "id": 14713, + "name": "Dark Dwarf", + "site_detail_url": "https://comicvine.gamespot.com/dark-dwarf/4005-14713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156223/", + "id": 156223, + "name": "Dark Matter", + "site_detail_url": "https://comicvine.gamespot.com/dark-matter/4005-156223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16025/", + "id": 16025, + "name": "Dark Rider", + "site_detail_url": "https://comicvine.gamespot.com/dark-rider/4005-16025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27416/", + "id": 27416, + "name": "Dark Thanos", + "site_detail_url": "https://comicvine.gamespot.com/dark-thanos/4005-27416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70021/", + "id": 70021, + "name": "Dark Tower", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower/4005-70021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10990/", + "id": 10990, + "name": "Darkstar (Petrovna)", + "site_detail_url": "https://comicvine.gamespot.com/darkstar-petrovna/4005-10990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34267/", + "id": 34267, + "name": "Darter", + "site_detail_url": "https://comicvine.gamespot.com/darter/4005-34267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59369/", + "id": 59369, + "name": "David Richards", + "site_detail_url": "https://comicvine.gamespot.com/david-richards/4005-59369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33854/", + "id": 33854, + "name": "Dawn Starr", + "site_detail_url": "https://comicvine.gamespot.com/dawn-starr/4005-33854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56198/", + "id": 56198, + "name": "De'Lila", + "site_detail_url": "https://comicvine.gamespot.com/delila/4005-56198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15253/", + "id": 15253, + "name": "Deadaim", + "site_detail_url": "https://comicvine.gamespot.com/deadaim/4005-15253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62482/", + "id": 62482, + "name": "Deadmaker", + "site_detail_url": "https://comicvine.gamespot.com/deadmaker/4005-62482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7606/", + "id": 7606, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4005-7606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13990/", + "id": 13990, + "name": "Death Adder", + "site_detail_url": "https://comicvine.gamespot.com/death-adder/4005-13990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26746/", + "id": 26746, + "name": "Deathgrin", + "site_detail_url": "https://comicvine.gamespot.com/deathgrin/4005-26746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47789/", + "id": 47789, + "name": "Deathshield", + "site_detail_url": "https://comicvine.gamespot.com/deathshield/4005-47789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27231/", + "id": 27231, + "name": "Deathspawn", + "site_detail_url": "https://comicvine.gamespot.com/deathspawn/4005-27231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16231/", + "id": 16231, + "name": "Deathstorm", + "site_detail_url": "https://comicvine.gamespot.com/deathstorm/4005-16231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2492/", + "id": 2492, + "name": "Deathurge", + "site_detail_url": "https://comicvine.gamespot.com/deathurge/4005-2492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14782/", + "id": 14782, + "name": "Deathwatch", + "site_detail_url": "https://comicvine.gamespot.com/deathwatch/4005-14782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13720/", + "id": 13720, + "name": "Decay", + "site_detail_url": "https://comicvine.gamespot.com/decay/4005-13720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87492/", + "id": 87492, + "name": "Dekker", + "site_detail_url": "https://comicvine.gamespot.com/dekker/4005-87492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9856/", + "id": 9856, + "name": "Delilah", + "site_detail_url": "https://comicvine.gamespot.com/delilah/4005-9856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29686/", + "id": 29686, + "name": "Delta", + "site_detail_url": "https://comicvine.gamespot.com/delta/4005-29686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15272/", + "id": 15272, + "name": "Demogoblin", + "site_detail_url": "https://comicvine.gamespot.com/demogoblin/4005-15272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136134/", + "id": 136134, + "name": "Demolition Derby", + "site_detail_url": "https://comicvine.gamespot.com/demolition-derby/4005-136134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86956/", + "id": 86956, + "name": "Derek Freeman", + "site_detail_url": "https://comicvine.gamespot.com/derek-freeman/4005-86956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113767/", + "id": 113767, + "name": "Deruge", + "site_detail_url": "https://comicvine.gamespot.com/deruge/4005-113767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11857/", + "id": 11857, + "name": "Devos The Devastator", + "site_detail_url": "https://comicvine.gamespot.com/devos-the-devastator/4005-11857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50434/", + "id": 50434, + "name": "Dexter Bennett", + "site_detail_url": "https://comicvine.gamespot.com/dexter-bennett/4005-50434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10242/", + "id": 10242, + "name": "Diablo", + "site_detail_url": "https://comicvine.gamespot.com/diablo/4005-10242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71582/", + "id": 71582, + "name": "Diamondback (Bertrand)", + "site_detail_url": "https://comicvine.gamespot.com/diamondback-bertrand/4005-71582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32497/", + "id": 32497, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/digger/4005-32497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52868/", + "id": 52868, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/digger/4005-52868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69654/", + "id": 69654, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/digger/4005-69654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15958/", + "id": 15958, + "name": "Diggers", + "site_detail_url": "https://comicvine.gamespot.com/diggers/4005-15958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10314/", + "id": 10314, + "name": "Discus", + "site_detail_url": "https://comicvine.gamespot.com/discus/4005-10314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37062/", + "id": 37062, + "name": "Disruptor", + "site_detail_url": "https://comicvine.gamespot.com/disruptor/4005-37062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175785/", + "id": 175785, + "name": "Dmitri Petrovitch", + "site_detail_url": "https://comicvine.gamespot.com/dmitri-petrovitch/4005-175785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12909/", + "id": 12909, + "name": "Doctor Bong", + "site_detail_url": "https://comicvine.gamespot.com/doctor-bong/4005-12909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4106/", + "id": 4106, + "name": "Doctor Demonicus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-demonicus/4005-4106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1468/", + "id": 1468, + "name": "Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom/4005-1468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34185/", + "id": 34185, + "name": "Doctor Faustus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-faustus/4005-34185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27188/", + "id": 27188, + "name": "Doctor Hope", + "site_detail_url": "https://comicvine.gamespot.com/doctor-hope/4005-27188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11567/", + "id": 11567, + "name": "Doctor Midas", + "site_detail_url": "https://comicvine.gamespot.com/doctor-midas/4005-11567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1485/", + "id": 1485, + "name": "Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopus/4005-1485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71685/", + "id": 71685, + "name": "Doctor Time", + "site_detail_url": "https://comicvine.gamespot.com/doctor-time/4005-71685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16077/", + "id": 16077, + "name": "Doctor Walston Kraft", + "site_detail_url": "https://comicvine.gamespot.com/doctor-walston-kraft/4005-16077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6601/", + "id": 6601, + "name": "Don Fortunato", + "site_detail_url": "https://comicvine.gamespot.com/don-fortunato/4005-6601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23903/", + "id": 23903, + "name": "Donovan Zane", + "site_detail_url": "https://comicvine.gamespot.com/donovan-zane/4005-23903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15274/", + "id": 15274, + "name": "Doppelganger", + "site_detail_url": "https://comicvine.gamespot.com/doppelganger/4005-15274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2205/", + "id": 2205, + "name": "Dormammu", + "site_detail_url": "https://comicvine.gamespot.com/dormammu/4005-2205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44483/", + "id": 44483, + "name": "Dr Dough-Naught", + "site_detail_url": "https://comicvine.gamespot.com/dr-dough-naught/4005-44483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15453/", + "id": 15453, + "name": "Dr. Andrea Janson", + "site_detail_url": "https://comicvine.gamespot.com/dr-andrea-janson/4005-15453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36013/", + "id": 36013, + "name": "Dr. Dorcas", + "site_detail_url": "https://comicvine.gamespot.com/dr-dorcas/4005-36013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175637/", + "id": 175637, + "name": "Dr. Fright", + "site_detail_url": "https://comicvine.gamespot.com/dr-fright/4005-175637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3143/", + "id": 3143, + "name": "Dr. Karl Malus", + "site_detail_url": "https://comicvine.gamespot.com/dr-karl-malus/4005-3143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26673/", + "id": 26673, + "name": "Dr. Minerva", + "site_detail_url": "https://comicvine.gamespot.com/dr-minerva/4005-26673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29924/", + "id": 29924, + "name": "Dr. Nemesis (Stockton)", + "site_detail_url": "https://comicvine.gamespot.com/dr-nemesis-stockton/4005-29924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175711/", + "id": 175711, + "name": "Dr. Noah Boddy", + "site_detail_url": "https://comicvine.gamespot.com/dr-noah-boddy/4005-175711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154253/", + "id": 154253, + "name": "Dr'zzt", + "site_detail_url": "https://comicvine.gamespot.com/drzzt/4005-154253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65186/", + "id": 65186, + "name": "Dracula", + "site_detail_url": "https://comicvine.gamespot.com/dracula/4005-65186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3372/", + "id": 3372, + "name": "Dragon King", + "site_detail_url": "https://comicvine.gamespot.com/dragon-king/4005-3372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6823/", + "id": 6823, + "name": "Dragon Man", + "site_detail_url": "https://comicvine.gamespot.com/dragon-man/4005-6823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15656/", + "id": 15656, + "name": "Dragonfly", + "site_detail_url": "https://comicvine.gamespot.com/dragonfly/4005-15656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14722/", + "id": 14722, + "name": "Dread", + "site_detail_url": "https://comicvine.gamespot.com/dread/4005-14722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16084/", + "id": 16084, + "name": "Dreadknight", + "site_detail_url": "https://comicvine.gamespot.com/dreadknight/4005-16084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59248/", + "id": 59248, + "name": "Drom The Backwards Man", + "site_detail_url": "https://comicvine.gamespot.com/drom-the-backwards-man/4005-59248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60095/", + "id": 60095, + "name": "Dryrot", + "site_detail_url": "https://comicvine.gamespot.com/dryrot/4005-60095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26129/", + "id": 26129, + "name": "Dylon Cir", + "site_detail_url": "https://comicvine.gamespot.com/dylon-cir/4005-26129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90606/", + "id": 90606, + "name": "Ebony Maw", + "site_detail_url": "https://comicvine.gamespot.com/ebony-maw/4005-90606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6733/", + "id": 6733, + "name": "Eddie Brock", + "site_detail_url": "https://comicvine.gamespot.com/eddie-brock/4005-6733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115278/", + "id": 115278, + "name": "Eddie Costanza", + "site_detail_url": "https://comicvine.gamespot.com/eddie-costanza/4005-115278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149539/", + "id": 149539, + "name": "Edgar Lascombe", + "site_detail_url": "https://comicvine.gamespot.com/edgar-lascombe/4005-149539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43354/", + "id": 43354, + "name": "Edifice Rex", + "site_detail_url": "https://comicvine.gamespot.com/edifice-rex/4005-43354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29188/", + "id": 29188, + "name": "Eduardo Lobo", + "site_detail_url": "https://comicvine.gamespot.com/eduardo-lobo/4005-29188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131442/", + "id": 131442, + "name": "Edwin Bagge", + "site_detail_url": "https://comicvine.gamespot.com/edwin-bagge/4005-131442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92362/", + "id": 92362, + "name": "Eel (Lavell)", + "site_detail_url": "https://comicvine.gamespot.com/eel-lavell/4005-92362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10312/", + "id": 10312, + "name": "Eel (Stryke)", + "site_detail_url": "https://comicvine.gamespot.com/eel-stryke/4005-10312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3797/", + "id": 3797, + "name": "Egghead", + "site_detail_url": "https://comicvine.gamespot.com/egghead/4005-3797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19936/", + "id": 19936, + "name": "Ego", + "site_detail_url": "https://comicvine.gamespot.com/ego/4005-19936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42733/", + "id": 42733, + "name": "El Dorado", + "site_detail_url": "https://comicvine.gamespot.com/el-dorado/4005-42733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138978/", + "id": 138978, + "name": "El Facóquero", + "site_detail_url": "https://comicvine.gamespot.com/el-facoquero/4005-138978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11117/", + "id": 11117, + "name": "El Toro Negro", + "site_detail_url": "https://comicvine.gamespot.com/el-toro-negro/4005-11117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15659/", + "id": 15659, + "name": "El Uno", + "site_detail_url": "https://comicvine.gamespot.com/el-uno/4005-15659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3228/", + "id": 3228, + "name": "Electro", + "site_detail_url": "https://comicvine.gamespot.com/electro/4005-3228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24827/", + "id": 24827, + "name": "Elf with a Gun", + "site_detail_url": "https://comicvine.gamespot.com/elf-with-a-gun/4005-24827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159208/", + "id": 159208, + "name": "Elias Flynn", + "site_detail_url": "https://comicvine.gamespot.com/elias-flynn/4005-159208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43228/", + "id": 43228, + "name": "Elloe", + "site_detail_url": "https://comicvine.gamespot.com/elloe/4005-43228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27421/", + "id": 27421, + "name": "Elmo Oliver", + "site_detail_url": "https://comicvine.gamespot.com/elmo-oliver/4005-27421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30030/", + "id": 30030, + "name": "Elyse Nelson", + "site_detail_url": "https://comicvine.gamespot.com/elyse-nelson/4005-30030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35363/", + "id": 35363, + "name": "Ember", + "site_detail_url": "https://comicvine.gamespot.com/ember/4005-35363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40533/", + "id": 40533, + "name": "Emil Burbank", + "site_detail_url": "https://comicvine.gamespot.com/emil-burbank/4005-40533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56682/", + "id": 56682, + "name": "Emil Gregg", + "site_detail_url": "https://comicvine.gamespot.com/emil-gregg/4005-56682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49664/", + "id": 49664, + "name": "Emperor None", + "site_detail_url": "https://comicvine.gamespot.com/emperor-none/4005-49664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7225/", + "id": 7225, + "name": "Enchantress", + "site_detail_url": "https://comicvine.gamespot.com/enchantress/4005-7225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14439/", + "id": 14439, + "name": "Enforcer (Delazny)", + "site_detail_url": "https://comicvine.gamespot.com/enforcer-delazny/4005-14439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154718/", + "id": 154718, + "name": "Ephex", + "site_detail_url": "https://comicvine.gamespot.com/ephex/4005-154718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42854/", + "id": 42854, + "name": "Equinox", + "site_detail_url": "https://comicvine.gamespot.com/equinox/4005-42854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81176/", + "id": 81176, + "name": "Erdoes", + "site_detail_url": "https://comicvine.gamespot.com/erdoes/4005-81176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15769/", + "id": 15769, + "name": "Eris", + "site_detail_url": "https://comicvine.gamespot.com/eris/4005-15769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32600/", + "id": 32600, + "name": "Ernesto Gambonno", + "site_detail_url": "https://comicvine.gamespot.com/ernesto-gambonno/4005-32600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149550/", + "id": 149550, + "name": "Ernesto Karnelli", + "site_detail_url": "https://comicvine.gamespot.com/ernesto-karnelli/4005-149550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41738/", + "id": 41738, + "name": "Ero", + "site_detail_url": "https://comicvine.gamespot.com/ero/4005-41738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46841/", + "id": 46841, + "name": "Eson the Searcher", + "site_detail_url": "https://comicvine.gamespot.com/eson-the-searcher/4005-46841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154743/", + "id": 154743, + "name": "Evil McWeevil", + "site_detail_url": "https://comicvine.gamespot.com/evil-mcweevil/4005-154743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3517/", + "id": 3517, + "name": "Executioner", + "site_detail_url": "https://comicvine.gamespot.com/executioner/4005-3517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47317/", + "id": 47317, + "name": "Exterminatrix", + "site_detail_url": "https://comicvine.gamespot.com/exterminatrix/4005-47317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71124/", + "id": 71124, + "name": "Extremist", + "site_detail_url": "https://comicvine.gamespot.com/extremist/4005-71124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81178/", + "id": 81178, + "name": "Eye Patch", + "site_detail_url": "https://comicvine.gamespot.com/eye-patch/4005-81178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32744/", + "id": 32744, + "name": "Fabian Stankowicz", + "site_detail_url": "https://comicvine.gamespot.com/fabian-stankowicz/4005-32744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26181/", + "id": 26181, + "name": "Facade", + "site_detail_url": "https://comicvine.gamespot.com/facade/4005-26181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57348/", + "id": 57348, + "name": "Faire de Lain", + "site_detail_url": "https://comicvine.gamespot.com/faire-de-lain/4005-57348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13498/", + "id": 13498, + "name": "Fancy Dan", + "site_detail_url": "https://comicvine.gamespot.com/fancy-dan/4005-13498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175660/", + "id": 175660, + "name": "Fancy Dancer", + "site_detail_url": "https://comicvine.gamespot.com/fancy-dancer/4005-175660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82516/", + "id": 82516, + "name": "Father", + "site_detail_url": "https://comicvine.gamespot.com/father/4005-82516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41199/", + "id": 41199, + "name": "Fer-de-Lance", + "site_detail_url": "https://comicvine.gamespot.com/fer-de-lance/4005-41199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8145/", + "id": 8145, + "name": "Fin Fang Foom", + "site_detail_url": "https://comicvine.gamespot.com/fin-fang-foom/4005-8145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76350/", + "id": 76350, + "name": "Finisher", + "site_detail_url": "https://comicvine.gamespot.com/finisher/4005-76350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32410/", + "id": 32410, + "name": "Fire-Arms", + "site_detail_url": "https://comicvine.gamespot.com/fire-arms/4005-32410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42145/", + "id": 42145, + "name": "Fire-Eater", + "site_detail_url": "https://comicvine.gamespot.com/fire-eater/4005-42145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16200/", + "id": 16200, + "name": "Fire-Fight", + "site_detail_url": "https://comicvine.gamespot.com/fire-fight/4005-16200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11212/", + "id": 11212, + "name": "Firearm", + "site_detail_url": "https://comicvine.gamespot.com/firearm/4005-11212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86263/", + "id": 86263, + "name": "Firebrand (Broxtel)", + "site_detail_url": "https://comicvine.gamespot.com/firebrand-broxtel/4005-86263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12622/", + "id": 12622, + "name": "Firebrand (Gilbert)", + "site_detail_url": "https://comicvine.gamespot.com/firebrand-gilbert/4005-12622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74119/", + "id": 74119, + "name": "Firebrick", + "site_detail_url": "https://comicvine.gamespot.com/firebrick/4005-74119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15225/", + "id": 15225, + "name": "Firefist", + "site_detail_url": "https://comicvine.gamespot.com/firefist/4005-15225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7108/", + "id": 7108, + "name": "Firelord", + "site_detail_url": "https://comicvine.gamespot.com/firelord/4005-7108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3282/", + "id": 3282, + "name": "Fixer", + "site_detail_url": "https://comicvine.gamespot.com/fixer/4005-3282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84945/", + "id": 84945, + "name": "Flag-Smasher (Morgenthau)", + "site_detail_url": "https://comicvine.gamespot.com/flag-smasher-morgenthau/4005-84945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23138/", + "id": 23138, + "name": "Flag-Smasher (Thierrault)", + "site_detail_url": "https://comicvine.gamespot.com/flag-smasher-thierrault/4005-23138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150046/", + "id": 150046, + "name": "Flare", + "site_detail_url": "https://comicvine.gamespot.com/flare/4005-150046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1489/", + "id": 1489, + "name": "Flash Thompson", + "site_detail_url": "https://comicvine.gamespot.com/flash-thompson/4005-1489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101693/", + "id": 101693, + "name": "Fleming", + "site_detail_url": "https://comicvine.gamespot.com/fleming/4005-101693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14445/", + "id": 14445, + "name": "Fly", + "site_detail_url": "https://comicvine.gamespot.com/fly/4005-14445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76072/", + "id": 76072, + "name": "Fly-Girl", + "site_detail_url": "https://comicvine.gamespot.com/fly-girl/4005-76072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24381/", + "id": 24381, + "name": "Flying Tiger", + "site_detail_url": "https://comicvine.gamespot.com/flying-tiger/4005-24381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15294/", + "id": 15294, + "name": "Fogg", + "site_detail_url": "https://comicvine.gamespot.com/fogg/4005-15294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3124/", + "id": 3124, + "name": "Foggy Nelson", + "site_detail_url": "https://comicvine.gamespot.com/foggy-nelson/4005-3124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81513/", + "id": 81513, + "name": "Foolkiller (Gerhardt)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-gerhardt/4005-81513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32926/", + "id": 32926, + "name": "Foolkiller (Salinger)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-salinger/4005-32926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13381/", + "id": 13381, + "name": "Foreigner", + "site_detail_url": "https://comicvine.gamespot.com/foreigner/4005-13381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36484/", + "id": 36484, + "name": "Fox", + "site_detail_url": "https://comicvine.gamespot.com/fox/4005-36484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150049/", + "id": 150049, + "name": "Foxtrot", + "site_detail_url": "https://comicvine.gamespot.com/foxtrot/4005-150049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56261/", + "id": 56261, + "name": "Fracture", + "site_detail_url": "https://comicvine.gamespot.com/fracture/4005-56261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132403/", + "id": 132403, + "name": "Francine Frye", + "site_detail_url": "https://comicvine.gamespot.com/francine-frye/4005-132403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84872/", + "id": 84872, + "name": "Francis Klum", + "site_detail_url": "https://comicvine.gamespot.com/francis-klum/4005-84872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115296/", + "id": 115296, + "name": "Francis Weasel", + "site_detail_url": "https://comicvine.gamespot.com/francis-weasel/4005-115296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150195/", + "id": 150195, + "name": "Frank Cortese", + "site_detail_url": "https://comicvine.gamespot.com/frank-cortese/4005-150195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132041/", + "id": 132041, + "name": "Frankie Bagge", + "site_detail_url": "https://comicvine.gamespot.com/frankie-bagge/4005-132041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16108/", + "id": 16108, + "name": "Frankie The Fish", + "site_detail_url": "https://comicvine.gamespot.com/frankie-the-fish/4005-16108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35112/", + "id": 35112, + "name": "Franklin Risk", + "site_detail_url": "https://comicvine.gamespot.com/franklin-risk/4005-35112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79773/", + "id": 79773, + "name": "Franz Kraus", + "site_detail_url": "https://comicvine.gamespot.com/franz-kraus/4005-79773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49968/", + "id": 49968, + "name": "Freak", + "site_detail_url": "https://comicvine.gamespot.com/freak/4005-49968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12356/", + "id": 12356, + "name": "Frederick Foswell", + "site_detail_url": "https://comicvine.gamespot.com/frederick-foswell/4005-12356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14502/", + "id": 14502, + "name": "Frog-Man", + "site_detail_url": "https://comicvine.gamespot.com/frog-man/4005-14502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14083/", + "id": 14083, + "name": "Fu Manchu", + "site_detail_url": "https://comicvine.gamespot.com/fu-manchu/4005-14083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19365/", + "id": 19365, + "name": "Fugue", + "site_detail_url": "https://comicvine.gamespot.com/fugue/4005-19365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78024/", + "id": 78024, + "name": "Fumes", + "site_detail_url": "https://comicvine.gamespot.com/fumes/4005-78024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154714/", + "id": 154714, + "name": "Funny Bunny", + "site_detail_url": "https://comicvine.gamespot.com/funny-bunny/4005-154714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20116/", + "id": 20116, + "name": "Funny Face", + "site_detail_url": "https://comicvine.gamespot.com/funny-face/4005-20116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33762/", + "id": 33762, + "name": "Fusion", + "site_detail_url": "https://comicvine.gamespot.com/fusion/4005-33762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11510/", + "id": 11510, + "name": "Future Max", + "site_detail_url": "https://comicvine.gamespot.com/future-max/4005-11510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43784/", + "id": 43784, + "name": "Gabriel Stacy", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-stacy/4005-43784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2149/", + "id": 2149, + "name": "Galactus", + "site_detail_url": "https://comicvine.gamespot.com/galactus/4005-2149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57355/", + "id": 57355, + "name": "Gale", + "site_detail_url": "https://comicvine.gamespot.com/gale/4005-57355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57356/", + "id": 57356, + "name": "Gantry", + "site_detail_url": "https://comicvine.gamespot.com/gantry/4005-57356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11542/", + "id": 11542, + "name": "Garrison Klum", + "site_detail_url": "https://comicvine.gamespot.com/garrison-klum/4005-11542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7361/", + "id": 7361, + "name": "Gatekeeper", + "site_detail_url": "https://comicvine.gamespot.com/gatekeeper/4005-7361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3564/", + "id": 3564, + "name": "Gaza", + "site_detail_url": "https://comicvine.gamespot.com/gaza/4005-3564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15673/", + "id": 15673, + "name": "Geldoff", + "site_detail_url": "https://comicvine.gamespot.com/geldoff/4005-15673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13810/", + "id": 13810, + "name": "Gemini", + "site_detail_url": "https://comicvine.gamespot.com/gemini/4005-13810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32188/", + "id": 32188, + "name": "Gen. Nguyen Ngoc Coy", + "site_detail_url": "https://comicvine.gamespot.com/gen-nguyen-ngoc-coy/4005-32188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4813/", + "id": 4813, + "name": "Genis-Vell", + "site_detail_url": "https://comicvine.gamespot.com/genis-vell/4005-4813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150252/", + "id": 150252, + "name": "George", + "site_detail_url": "https://comicvine.gamespot.com/george/4005-150252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73680/", + "id": 73680, + "name": "George Hill", + "site_detail_url": "https://comicvine.gamespot.com/george-hill/4005-73680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14491/", + "id": 14491, + "name": "Ghaur", + "site_detail_url": "https://comicvine.gamespot.com/ghaur/4005-14491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17638/", + "id": 17638, + "name": "Ghost", + "site_detail_url": "https://comicvine.gamespot.com/ghost/4005-17638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7577/", + "id": 7577, + "name": "Ghost Strike", + "site_detail_url": "https://comicvine.gamespot.com/ghost-strike/4005-7577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23687/", + "id": 23687, + "name": "Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/gibbon/4005-23687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150259/", + "id": 150259, + "name": "Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/gibbon/4005-150259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33457/", + "id": 33457, + "name": "Gideon Mace", + "site_detail_url": "https://comicvine.gamespot.com/gideon-mace/4005-33457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11609/", + "id": 11609, + "name": "Giganto", + "site_detail_url": "https://comicvine.gamespot.com/giganto/4005-11609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70817/", + "id": 70817, + "name": "Gigantor", + "site_detail_url": "https://comicvine.gamespot.com/gigantor/4005-70817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24340/", + "id": 24340, + "name": "Gigantus", + "site_detail_url": "https://comicvine.gamespot.com/gigantus/4005-24340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38667/", + "id": 38667, + "name": "Gladiator (Potter)", + "site_detail_url": "https://comicvine.gamespot.com/gladiator-potter/4005-38667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82382/", + "id": 82382, + "name": "Glenn Silas", + "site_detail_url": "https://comicvine.gamespot.com/glenn-silas/4005-82382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136118/", + "id": 136118, + "name": "Glider", + "site_detail_url": "https://comicvine.gamespot.com/glider/4005-136118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154715/", + "id": 154715, + "name": "Godmother", + "site_detail_url": "https://comicvine.gamespot.com/godmother/4005-154715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21599/", + "id": 21599, + "name": "Godzilla", + "site_detail_url": "https://comicvine.gamespot.com/godzilla/4005-21599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56541/", + "id": 56541, + "name": "Gog", + "site_detail_url": "https://comicvine.gamespot.com/gog/4005-56541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32981/", + "id": 32981, + "name": "Goldbug", + "site_detail_url": "https://comicvine.gamespot.com/goldbug/4005-32981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22525/", + "id": 22525, + "name": "Gomdulla", + "site_detail_url": "https://comicvine.gamespot.com/gomdulla/4005-22525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41547/", + "id": 41547, + "name": "Goom", + "site_detail_url": "https://comicvine.gamespot.com/goom/4005-41547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91960/", + "id": 91960, + "name": "Gordon Allsworth", + "site_detail_url": "https://comicvine.gamespot.com/gordon-allsworth/4005-91960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4423/", + "id": 4423, + "name": "Gorgeous George", + "site_detail_url": "https://comicvine.gamespot.com/gorgeous-george/4005-4423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22528/", + "id": 22528, + "name": "Gorgilla", + "site_detail_url": "https://comicvine.gamespot.com/gorgilla/4005-22528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154374/", + "id": 154374, + "name": "Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/gorgon/4005-154374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3777/", + "id": 3777, + "name": "Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/gorgon/4005-3777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78023/", + "id": 78023, + "name": "Gossip Girl", + "site_detail_url": "https://comicvine.gamespot.com/gossip-girl/4005-78023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14492/", + "id": 14492, + "name": "Grand Director", + "site_detail_url": "https://comicvine.gamespot.com/grand-director/4005-14492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105833/", + "id": 105833, + "name": "Grant Ward", + "site_detail_url": "https://comicvine.gamespot.com/grant-ward/4005-105833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56696/", + "id": 56696, + "name": "Grasp", + "site_detail_url": "https://comicvine.gamespot.com/grasp/4005-56696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13347/", + "id": 13347, + "name": "Graviton", + "site_detail_url": "https://comicvine.gamespot.com/graviton/4005-13347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10673/", + "id": 10673, + "name": "Gray Dolman", + "site_detail_url": "https://comicvine.gamespot.com/gray-dolman/4005-10673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73890/", + "id": 73890, + "name": "Green Goblin Construct", + "site_detail_url": "https://comicvine.gamespot.com/green-goblin-construct/4005-73890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15473/", + "id": 15473, + "name": "Gregor", + "site_detail_url": "https://comicvine.gamespot.com/gregor/4005-15473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6296/", + "id": 6296, + "name": "Gregory Herd", + "site_detail_url": "https://comicvine.gamespot.com/gregory-herd/4005-6296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150435/", + "id": 150435, + "name": "Grendel Symbiote", + "site_detail_url": "https://comicvine.gamespot.com/grendel-symbiote/4005-150435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6816/", + "id": 6816, + "name": "Grey Gargoyle", + "site_detail_url": "https://comicvine.gamespot.com/grey-gargoyle/4005-6816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150971/", + "id": 150971, + "name": "Griever at the End of All Things", + "site_detail_url": "https://comicvine.gamespot.com/griever-at-the-end-of-all-things/4005-150971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15386/", + "id": 15386, + "name": "Griffin", + "site_detail_url": "https://comicvine.gamespot.com/griffin/4005-15386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32502/", + "id": 32502, + "name": "Griffin (Franklin)", + "site_detail_url": "https://comicvine.gamespot.com/griffin-franklin/4005-32502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15311/", + "id": 15311, + "name": "Grim Hunter", + "site_detail_url": "https://comicvine.gamespot.com/grim-hunter/4005-15311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7227/", + "id": 7227, + "name": "Grim Reaper", + "site_detail_url": "https://comicvine.gamespot.com/grim-reaper/4005-7227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68915/", + "id": 68915, + "name": "Gripes", + "site_detail_url": "https://comicvine.gamespot.com/gripes/4005-68915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39695/", + "id": 39695, + "name": "Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/grizzly/4005-39695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2266/", + "id": 2266, + "name": "Growing Man", + "site_detail_url": "https://comicvine.gamespot.com/growing-man/4005-2266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23374/", + "id": 23374, + "name": "Guladkin", + "site_detail_url": "https://comicvine.gamespot.com/guladkin/4005-23374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30009/", + "id": 30009, + "name": "Gullivar South", + "site_detail_url": "https://comicvine.gamespot.com/gullivar-south/4005-30009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150466/", + "id": 150466, + "name": "Gun Metal", + "site_detail_url": "https://comicvine.gamespot.com/gun-metal/4005-150466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15615/", + "id": 15615, + "name": "Gunther Stein", + "site_detail_url": "https://comicvine.gamespot.com/gunther-stein/4005-15615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16120/", + "id": 16120, + "name": "Guy Jones", + "site_detail_url": "https://comicvine.gamespot.com/guy-jones/4005-16120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134389/", + "id": 134389, + "name": "Guzz", + "site_detail_url": "https://comicvine.gamespot.com/guzz/4005-134389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1480/", + "id": 1480, + "name": "Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy/4005-1480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52936/", + "id": 52936, + "name": "Gwen Stacy Clone", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy-clone/4005-52936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14783/", + "id": 14783, + "name": "Hag", + "site_detail_url": "https://comicvine.gamespot.com/hag/4005-14783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15786/", + "id": 15786, + "name": "Hairbag", + "site_detail_url": "https://comicvine.gamespot.com/hairbag/4005-15786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91541/", + "id": 91541, + "name": "Hal Goldman", + "site_detail_url": "https://comicvine.gamespot.com/hal-goldman/4005-91541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74817/", + "id": 74817, + "name": "Hammer", + "site_detail_url": "https://comicvine.gamespot.com/hammer/4005-74817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24917/", + "id": 24917, + "name": "Hammer Harrison", + "site_detail_url": "https://comicvine.gamespot.com/hammer-harrison/4005-24917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6817/", + "id": 6817, + "name": "Hammerhead", + "site_detail_url": "https://comicvine.gamespot.com/hammerhead/4005-6817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68262/", + "id": 68262, + "name": "Hangman (Krueger)", + "site_detail_url": "https://comicvine.gamespot.com/hangman-krueger/4005-68262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160068/", + "id": 160068, + "name": "Hardrock", + "site_detail_url": "https://comicvine.gamespot.com/hardrock/4005-160068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63414/", + "id": 63414, + "name": "Hardtime", + "site_detail_url": "https://comicvine.gamespot.com/hardtime/4005-63414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9733/", + "id": 9733, + "name": "Harpoon", + "site_detail_url": "https://comicvine.gamespot.com/harpoon/4005-9733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35109/", + "id": 35109, + "name": "Harry Daze", + "site_detail_url": "https://comicvine.gamespot.com/harry-daze/4005-35109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175665/", + "id": 175665, + "name": "Harvey", + "site_detail_url": "https://comicvine.gamespot.com/harvey/4005-175665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12064/", + "id": 12064, + "name": "Hate-Monger", + "site_detail_url": "https://comicvine.gamespot.com/hate-monger/4005-12064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150508/", + "id": 150508, + "name": "Hawkeye (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-doppleganger/4005-150508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78013/", + "id": 78013, + "name": "Haymaker", + "site_detail_url": "https://comicvine.gamespot.com/haymaker/4005-78013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50314/", + "id": 50314, + "name": "Hazmat", + "site_detail_url": "https://comicvine.gamespot.com/hazmat/4005-50314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150511/", + "id": 150511, + "name": "Headhunter", + "site_detail_url": "https://comicvine.gamespot.com/headhunter/4005-150511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58416/", + "id": 58416, + "name": "Headsman", + "site_detail_url": "https://comicvine.gamespot.com/headsman/4005-58416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14453/", + "id": 14453, + "name": "Hellrazor", + "site_detail_url": "https://comicvine.gamespot.com/hellrazor/4005-14453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51524/", + "id": 51524, + "name": "Herbert Landon", + "site_detail_url": "https://comicvine.gamespot.com/herbert-landon/4005-51524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13346/", + "id": 13346, + "name": "High Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/high-evolutionary/4005-13346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63147/", + "id": 63147, + "name": "Hippo", + "site_detail_url": "https://comicvine.gamespot.com/hippo/4005-63147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67438/", + "id": 67438, + "name": "Hit-Monkey", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey/4005-67438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34977/", + "id": 34977, + "name": "Hitman", + "site_detail_url": "https://comicvine.gamespot.com/hitman/4005-34977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154270/", + "id": 154270, + "name": "Hitman (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/hitman-hobgoblin/4005-154270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7605/", + "id": 7605, + "name": "Hobgoblin (Kingsley)", + "site_detail_url": "https://comicvine.gamespot.com/hobgoblin-kingsley/4005-7605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74190/", + "id": 74190, + "name": "Hobgoblin 2211", + "site_detail_url": "https://comicvine.gamespot.com/hobgoblin-2211/4005-74190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136132/", + "id": 136132, + "name": "Home Wrecker", + "site_detail_url": "https://comicvine.gamespot.com/home-wrecker/4005-136132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16208/", + "id": 16208, + "name": "Homo Arachnis", + "site_detail_url": "https://comicvine.gamespot.com/homo-arachnis/4005-16208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68914/", + "id": 68914, + "name": "Honcho", + "site_detail_url": "https://comicvine.gamespot.com/honcho/4005-68914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154746/", + "id": 154746, + "name": "Hook", + "site_detail_url": "https://comicvine.gamespot.com/hook/4005-154746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136138/", + "id": 136138, + "name": "Hotshot", + "site_detail_url": "https://comicvine.gamespot.com/hotshot/4005-136138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2267/", + "id": 2267, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4005-2267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175658/", + "id": 175658, + "name": "Hum Dinger", + "site_detail_url": "https://comicvine.gamespot.com/hum-dinger/4005-175658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10858/", + "id": 10858, + "name": "Human Cannonball", + "site_detail_url": "https://comicvine.gamespot.com/human-cannonball/4005-10858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136135/", + "id": 136135, + "name": "Human Computer", + "site_detail_url": "https://comicvine.gamespot.com/human-computer/4005-136135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30619/", + "id": 30619, + "name": "Humbug", + "site_detail_url": "https://comicvine.gamespot.com/humbug/4005-30619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11860/", + "id": 11860, + "name": "Huntara", + "site_detail_url": "https://comicvine.gamespot.com/huntara/4005-11860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35867/", + "id": 35867, + "name": "Huntsman of Zeus", + "site_detail_url": "https://comicvine.gamespot.com/huntsman-of-zeus/4005-35867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45621/", + "id": 45621, + "name": "Hybrid", + "site_detail_url": "https://comicvine.gamespot.com/hybrid/4005-45621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4457/", + "id": 4457, + "name": "Hydro-Man", + "site_detail_url": "https://comicvine.gamespot.com/hydro-man/4005-4457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6911/", + "id": 6911, + "name": "Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/hyperion/4005-6911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27983/", + "id": 27983, + "name": "Hypertron 1.0", + "site_detail_url": "https://comicvine.gamespot.com/hypertron-10/4005-27983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34474/", + "id": 34474, + "name": "Hypno-Hustler", + "site_detail_url": "https://comicvine.gamespot.com/hypno-hustler/4005-34474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62250/", + "id": 62250, + "name": "Ian Fate", + "site_detail_url": "https://comicvine.gamespot.com/ian-fate/4005-62250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152509/", + "id": 152509, + "name": "Iceman Clone", + "site_detail_url": "https://comicvine.gamespot.com/iceman-clone/4005-152509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68476/", + "id": 68476, + "name": "Igor", + "site_detail_url": "https://comicvine.gamespot.com/igor/4005-68476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34140/", + "id": 34140, + "name": "Iguana", + "site_detail_url": "https://comicvine.gamespot.com/iguana/4005-34140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7215/", + "id": 7215, + "name": "Immortus", + "site_detail_url": "https://comicvine.gamespot.com/immortus/4005-7215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31493/", + "id": 31493, + "name": "Incandescent Man", + "site_detail_url": "https://comicvine.gamespot.com/incandescent-man/4005-31493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13718/", + "id": 13718, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4005-13718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74343/", + "id": 74343, + "name": "Inorganic Technotroid", + "site_detail_url": "https://comicvine.gamespot.com/inorganic-technotroid/4005-74343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15493/", + "id": 15493, + "name": "Inspector Krahn", + "site_detail_url": "https://comicvine.gamespot.com/inspector-krahn/4005-15493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41577/", + "id": 41577, + "name": "Intello", + "site_detail_url": "https://comicvine.gamespot.com/intello/4005-41577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2190/", + "id": 2190, + "name": "Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/invisible-woman/4005-2190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176161/", + "id": 176161, + "name": "Irene", + "site_detail_url": "https://comicvine.gamespot.com/irene/4005-176161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1455/", + "id": 1455, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4005-1455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150799/", + "id": 150799, + "name": "Iron Man (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-doppelganger/4005-150799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57158/", + "id": 57158, + "name": "Iron Maniac", + "site_detail_url": "https://comicvine.gamespot.com/iron-maniac/4005-57158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6821/", + "id": 6821, + "name": "Ironclad", + "site_detail_url": "https://comicvine.gamespot.com/ironclad/4005-6821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32495/", + "id": 32495, + "name": "Isbisa", + "site_detail_url": "https://comicvine.gamespot.com/isbisa/4005-32495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18587/", + "id": 18587, + "name": "It The Living Colossus", + "site_detail_url": "https://comicvine.gamespot.com/it-the-living-colossus/4005-18587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133921/", + "id": 133921, + "name": "Itsy Bitsy", + "site_detail_url": "https://comicvine.gamespot.com/itsy-bitsy/4005-133921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69024/", + "id": 69024, + "name": "Itzpapalotl", + "site_detail_url": "https://comicvine.gamespot.com/itzpapalotl/4005-69024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70506/", + "id": 70506, + "name": "Ivan the Hunchback", + "site_detail_url": "https://comicvine.gamespot.com/ivan-the-hunchback/4005-70506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1487/", + "id": 1487, + "name": "J. Jonah Jameson", + "site_detail_url": "https://comicvine.gamespot.com/j-jonah-jameson/4005-1487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15235/", + "id": 15235, + "name": "Jack", + "site_detail_url": "https://comicvine.gamespot.com/jack/4005-15235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15250/", + "id": 15250, + "name": "Jack Morray", + "site_detail_url": "https://comicvine.gamespot.com/jack-morray/4005-15250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40901/", + "id": 40901, + "name": "Jack O'Lantern (Levins)", + "site_detail_url": "https://comicvine.gamespot.com/jack-olantern-levins/4005-40901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10974/", + "id": 10974, + "name": "Jackal", + "site_detail_url": "https://comicvine.gamespot.com/jackal/4005-10974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3116/", + "id": 3116, + "name": "Jacob Conover", + "site_detail_url": "https://comicvine.gamespot.com/jacob-conover/4005-3116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157424/", + "id": 157424, + "name": "Jacob Strauss", + "site_detail_url": "https://comicvine.gamespot.com/jacob-strauss/4005-157424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15516/", + "id": 15516, + "name": "Jagged Bow", + "site_detail_url": "https://comicvine.gamespot.com/jagged-bow/4005-15516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150965/", + "id": 150965, + "name": "Jake Martino", + "site_detail_url": "https://comicvine.gamespot.com/jake-martino/4005-150965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54123/", + "id": 54123, + "name": "Jamal Afari", + "site_detail_url": "https://comicvine.gamespot.com/jamal-afari/4005-54123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150967/", + "id": 150967, + "name": "James Harper", + "site_detail_url": "https://comicvine.gamespot.com/james-harper/4005-150967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85197/", + "id": 85197, + "name": "Janice Foswell", + "site_detail_url": "https://comicvine.gamespot.com/janice-foswell/4005-85197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35110/", + "id": 35110, + "name": "Jason Dean", + "site_detail_url": "https://comicvine.gamespot.com/jason-dean/4005-35110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24137/", + "id": 24137, + "name": "Jason Ionello", + "site_detail_url": "https://comicvine.gamespot.com/jason-ionello/4005-24137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26374/", + "id": 26374, + "name": "Jason Macendale", + "site_detail_url": "https://comicvine.gamespot.com/jason-macendale/4005-26374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95236/", + "id": 95236, + "name": "Jason Quantrell", + "site_detail_url": "https://comicvine.gamespot.com/jason-quantrell/4005-95236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82385/", + "id": 82385, + "name": "Jasper Chin", + "site_detail_url": "https://comicvine.gamespot.com/jasper-chin/4005-82385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113546/", + "id": 113546, + "name": "Jefferson Bolt", + "site_detail_url": "https://comicvine.gamespot.com/jefferson-bolt/4005-113546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92984/", + "id": 92984, + "name": "Jeffrey Haight", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-haight/4005-92984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108086/", + "id": 108086, + "name": "Jennix", + "site_detail_url": "https://comicvine.gamespot.com/jennix/4005-108086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36116/", + "id": 36116, + "name": "Jeremiah", + "site_detail_url": "https://comicvine.gamespot.com/jeremiah/4005-36116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36205/", + "id": 36205, + "name": "Jerry Morgan", + "site_detail_url": "https://comicvine.gamespot.com/jerry-morgan/4005-36205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13979/", + "id": 13979, + "name": "Jester", + "site_detail_url": "https://comicvine.gamespot.com/jester/4005-13979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1538/", + "id": 1538, + "name": "Jigsaw", + "site_detail_url": "https://comicvine.gamespot.com/jigsaw/4005-1538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80565/", + "id": 80565, + "name": "Joe Cord", + "site_detail_url": "https://comicvine.gamespot.com/joe-cord/4005-80565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12357/", + "id": 12357, + "name": "Joe Smith", + "site_detail_url": "https://comicvine.gamespot.com/joe-smith/4005-12357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151157/", + "id": 151157, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-151157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140691/", + "id": 140691, + "name": "Joey Gastone", + "site_detail_url": "https://comicvine.gamespot.com/joey-gastone/4005-140691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154265/", + "id": 154265, + "name": "John", + "site_detail_url": "https://comicvine.gamespot.com/john/4005-154265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27473/", + "id": 27473, + "name": "John Bushmaster", + "site_detail_url": "https://comicvine.gamespot.com/john-bushmaster/4005-27473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4456/", + "id": 4456, + "name": "John Jameson", + "site_detail_url": "https://comicvine.gamespot.com/john-jameson/4005-4456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50318/", + "id": 50318, + "name": "Johnny Ohm", + "site_detail_url": "https://comicvine.gamespot.com/johnny-ohm/4005-50318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1702/", + "id": 1702, + "name": "Joker", + "site_detail_url": "https://comicvine.gamespot.com/joker/4005-1702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154744/", + "id": 154744, + "name": "Jolly Roger", + "site_detail_url": "https://comicvine.gamespot.com/jolly-roger/4005-154744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28511/", + "id": 28511, + "name": "Jonas Hale", + "site_detail_url": "https://comicvine.gamespot.com/jonas-hale/4005-28511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33251/", + "id": 33251, + "name": "Jonas Harrow", + "site_detail_url": "https://comicvine.gamespot.com/jonas-harrow/4005-33251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28732/", + "id": 28732, + "name": "Jonathon Caesar", + "site_detail_url": "https://comicvine.gamespot.com/jonathon-caesar/4005-28732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25313/", + "id": 25313, + "name": "Josephine Pulaski", + "site_detail_url": "https://comicvine.gamespot.com/josephine-pulaski/4005-25313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4809/", + "id": 4809, + "name": "Joystick", + "site_detail_url": "https://comicvine.gamespot.com/joystick/4005-4809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15469/", + "id": 15469, + "name": "Judas Traveller", + "site_detail_url": "https://comicvine.gamespot.com/judas-traveller/4005-15469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1445/", + "id": 1445, + "name": "Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut/4005-1445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124918/", + "id": 124918, + "name": "Julio Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/julio-rodriguez/4005-124918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10219/", + "id": 10219, + "name": "Justin Hammer", + "site_detail_url": "https://comicvine.gamespot.com/justin-hammer/4005-10219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8667/", + "id": 8667, + "name": "Kaine", + "site_detail_url": "https://comicvine.gamespot.com/kaine/4005-8667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28505/", + "id": 28505, + "name": "Kala", + "site_detail_url": "https://comicvine.gamespot.com/kala/4005-28505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143380/", + "id": 143380, + "name": "Kali, The Black Madness", + "site_detail_url": "https://comicvine.gamespot.com/kali-the-black-madness/4005-143380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33386/", + "id": 33386, + "name": "Kaneshiro", + "site_detail_url": "https://comicvine.gamespot.com/kaneshiro/4005-33386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2264/", + "id": 2264, + "name": "Kang", + "site_detail_url": "https://comicvine.gamespot.com/kang/4005-2264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12624/", + "id": 12624, + "name": "Kangaroo", + "site_detail_url": "https://comicvine.gamespot.com/kangaroo/4005-12624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4486/", + "id": 4486, + "name": "Karen Page", + "site_detail_url": "https://comicvine.gamespot.com/karen-page/4005-4486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63764/", + "id": 63764, + "name": "Karl Coven", + "site_detail_url": "https://comicvine.gamespot.com/karl-coven/4005-63764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107639/", + "id": 107639, + "name": "Karn", + "site_detail_url": "https://comicvine.gamespot.com/karn/4005-107639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15657/", + "id": 15657, + "name": "Karsano", + "site_detail_url": "https://comicvine.gamespot.com/karsano/4005-15657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129864/", + "id": 129864, + "name": "Keemia Alvarado", + "site_detail_url": "https://comicvine.gamespot.com/keemia-alvarado/4005-129864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34107/", + "id": 34107, + "name": "Keeper Of The Flame", + "site_detail_url": "https://comicvine.gamespot.com/keeper-of-the-flame/4005-34107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63882/", + "id": 63882, + "name": "Killer Queen", + "site_detail_url": "https://comicvine.gamespot.com/killer-queen/4005-63882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12067/", + "id": 12067, + "name": "Killer Shrike", + "site_detail_url": "https://comicvine.gamespot.com/killer-shrike/4005-12067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151237/", + "id": 151237, + "name": "Killer Shrike (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/killer-shrike-hobgoblin/4005-151237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128797/", + "id": 128797, + "name": "Killer Thrill", + "site_detail_url": "https://comicvine.gamespot.com/killer-thrill/4005-128797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51052/", + "id": 51052, + "name": "Killshot", + "site_detail_url": "https://comicvine.gamespot.com/killshot/4005-51052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151238/", + "id": 151238, + "name": "Killyu", + "site_detail_url": "https://comicvine.gamespot.com/killyu/4005-151238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156992/", + "id": 156992, + "name": "Kindred", + "site_detail_url": "https://comicvine.gamespot.com/kindred/4005-156992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63883/", + "id": 63883, + "name": "King Coal", + "site_detail_url": "https://comicvine.gamespot.com/king-coal/4005-63883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11895/", + "id": 11895, + "name": "King Cobra", + "site_detail_url": "https://comicvine.gamespot.com/king-cobra/4005-11895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62056/", + "id": 62056, + "name": "King Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/king-hyperion/4005-62056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84246/", + "id": 84246, + "name": "King Korozon", + "site_detail_url": "https://comicvine.gamespot.com/king-korozon/4005-84246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169502/", + "id": 169502, + "name": "King Wild Man", + "site_detail_url": "https://comicvine.gamespot.com/king-wild-man/4005-169502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1483/", + "id": 1483, + "name": "Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/kingpin/4005-1483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3171/", + "id": 3171, + "name": "Klaw", + "site_detail_url": "https://comicvine.gamespot.com/klaw/4005-3171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15298/", + "id": 15298, + "name": "Knight", + "site_detail_url": "https://comicvine.gamespot.com/knight/4005-15298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28479/", + "id": 28479, + "name": "Knockout", + "site_detail_url": "https://comicvine.gamespot.com/knockout/4005-28479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149552/", + "id": 149552, + "name": "Knull", + "site_detail_url": "https://comicvine.gamespot.com/knull/4005-149552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42782/", + "id": 42782, + "name": "Komodo", + "site_detail_url": "https://comicvine.gamespot.com/komodo/4005-42782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151242/", + "id": 151242, + "name": "Koru Kaviti", + "site_detail_url": "https://comicvine.gamespot.com/koru-kaviti/4005-151242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85141/", + "id": 85141, + "name": "Krampus", + "site_detail_url": "https://comicvine.gamespot.com/krampus/4005-85141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13401/", + "id": 13401, + "name": "Krang", + "site_detail_url": "https://comicvine.gamespot.com/krang/4005-13401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2475/", + "id": 2475, + "name": "Kraven the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/kraven-the-hunter/4005-2475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30285/", + "id": 30285, + "name": "Kris Keating", + "site_detail_url": "https://comicvine.gamespot.com/kris-keating/4005-30285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11829/", + "id": 11829, + "name": "Kristoff Vernard", + "site_detail_url": "https://comicvine.gamespot.com/kristoff-vernard/4005-11829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40630/", + "id": 40630, + "name": "Kron Stone", + "site_detail_url": "https://comicvine.gamespot.com/kron-stone/4005-40630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27246/", + "id": 27246, + "name": "Krona", + "site_detail_url": "https://comicvine.gamespot.com/krona/4005-27246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113551/", + "id": 113551, + "name": "Kryllk the Cruel", + "site_detail_url": "https://comicvine.gamespot.com/kryllk-the-cruel/4005-113551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53329/", + "id": 53329, + "name": "Kuhul Ajaw", + "site_detail_url": "https://comicvine.gamespot.com/kuhul-ajaw/4005-53329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19942/", + "id": 19942, + "name": "Kulan Gath", + "site_detail_url": "https://comicvine.gamespot.com/kulan-gath/4005-19942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8470/", + "id": 8470, + "name": "Lady Deathstrike", + "site_detail_url": "https://comicvine.gamespot.com/lady-deathstrike/4005-8470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15649/", + "id": 15649, + "name": "Lady Octopus", + "site_detail_url": "https://comicvine.gamespot.com/lady-octopus/4005-15649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67319/", + "id": 67319, + "name": "Lady Stilt-Man", + "site_detail_url": "https://comicvine.gamespot.com/lady-stilt-man/4005-67319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21350/", + "id": 21350, + "name": "Lamia", + "site_detail_url": "https://comicvine.gamespot.com/lamia/4005-21350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136120/", + "id": 136120, + "name": "Larcenous Lil", + "site_detail_url": "https://comicvine.gamespot.com/larcenous-lil/4005-136120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76539/", + "id": 76539, + "name": "Lars", + "site_detail_url": "https://comicvine.gamespot.com/lars/4005-76539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14407/", + "id": 14407, + "name": "Lascivious", + "site_detail_url": "https://comicvine.gamespot.com/lascivious/4005-14407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58111/", + "id": 58111, + "name": "Lasher", + "site_detail_url": "https://comicvine.gamespot.com/lasher/4005-58111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15212/", + "id": 15212, + "name": "Lasher", + "site_detail_url": "https://comicvine.gamespot.com/lasher/4005-15212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156595/", + "id": 156595, + "name": "Last Son of Kraven", + "site_detail_url": "https://comicvine.gamespot.com/last-son-of-kraven/4005-156595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151428/", + "id": 151428, + "name": "Lawrence Evans", + "site_detail_url": "https://comicvine.gamespot.com/lawrence-evans/4005-151428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7617/", + "id": 7617, + "name": "Leader", + "site_detail_url": "https://comicvine.gamespot.com/leader/4005-7617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60284/", + "id": 60284, + "name": "Lectronn", + "site_detail_url": "https://comicvine.gamespot.com/lectronn/4005-60284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134714/", + "id": 134714, + "name": "Lee Price", + "site_detail_url": "https://comicvine.gamespot.com/lee-price/4005-134714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69850/", + "id": 69850, + "name": "Lefty Donovan", + "site_detail_url": "https://comicvine.gamespot.com/lefty-donovan/4005-69850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136119/", + "id": 136119, + "name": "Legal Eagle", + "site_detail_url": "https://comicvine.gamespot.com/legal-eagle/4005-136119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70820/", + "id": 70820, + "name": "Legion", + "site_detail_url": "https://comicvine.gamespot.com/legion/4005-70820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28199/", + "id": 28199, + "name": "Leila Davis", + "site_detail_url": "https://comicvine.gamespot.com/leila-davis/4005-28199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16126/", + "id": 16126, + "name": "Lenny Flynn", + "site_detail_url": "https://comicvine.gamespot.com/lenny-flynn/4005-16126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5041/", + "id": 5041, + "name": "Leo", + "site_detail_url": "https://comicvine.gamespot.com/leo/4005-5041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35788/", + "id": 35788, + "name": "Leroy Tallon", + "site_detail_url": "https://comicvine.gamespot.com/leroy-tallon/4005-35788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14456/", + "id": 14456, + "name": "Letha", + "site_detail_url": "https://comicvine.gamespot.com/letha/4005-14456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140029/", + "id": 140029, + "name": "Leviathon Mother", + "site_detail_url": "https://comicvine.gamespot.com/leviathon-mother/4005-140029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41952/", + "id": 41952, + "name": "Lex Luthor", + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor/4005-41952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13748/", + "id": 13748, + "name": "Lightbright", + "site_detail_url": "https://comicvine.gamespot.com/lightbright/4005-13748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13938/", + "id": 13938, + "name": "Lightmaster", + "site_detail_url": "https://comicvine.gamespot.com/lightmaster/4005-13938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62890/", + "id": 62890, + "name": "Lightning Fist", + "site_detail_url": "https://comicvine.gamespot.com/lightning-fist/4005-62890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41945/", + "id": 41945, + "name": "Lilith Drake", + "site_detail_url": "https://comicvine.gamespot.com/lilith-drake/4005-41945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32598/", + "id": 32598, + "name": "Live-Wire", + "site_detail_url": "https://comicvine.gamespot.com/live-wire/4005-32598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30091/", + "id": 30091, + "name": "Living Brain", + "site_detail_url": "https://comicvine.gamespot.com/living-brain/4005-30091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9904/", + "id": 9904, + "name": "Living Laser", + "site_detail_url": "https://comicvine.gamespot.com/living-laser/4005-9904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8298/", + "id": 8298, + "name": "Living Monolith", + "site_detail_url": "https://comicvine.gamespot.com/living-monolith/4005-8298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1488/", + "id": 1488, + "name": "Lizard", + "site_detail_url": "https://comicvine.gamespot.com/lizard/4005-1488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151431/", + "id": 151431, + "name": "Lizard (Creature)", + "site_detail_url": "https://comicvine.gamespot.com/lizard-creature/4005-151431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2178/", + "id": 2178, + "name": "Llyra", + "site_detail_url": "https://comicvine.gamespot.com/llyra/4005-2178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4324/", + "id": 4324, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4005-4324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113766/", + "id": 113766, + "name": "Loose-Lips Lonigan", + "site_detail_url": "https://comicvine.gamespot.com/loose-lips-lonigan/4005-113766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6297/", + "id": 6297, + "name": "Looter", + "site_detail_url": "https://comicvine.gamespot.com/looter/4005-6297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86241/", + "id": 86241, + "name": "Lord Gouzar", + "site_detail_url": "https://comicvine.gamespot.com/lord-gouzar/4005-86241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23429/", + "id": 23429, + "name": "Lord Tyger", + "site_detail_url": "https://comicvine.gamespot.com/lord-tyger/4005-23429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33968/", + "id": 33968, + "name": "Lorenzo Jacobi", + "site_detail_url": "https://comicvine.gamespot.com/lorenzo-jacobi/4005-33968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74204/", + "id": 74204, + "name": "Lori Baumgartner", + "site_detail_url": "https://comicvine.gamespot.com/lori-baumgartner/4005-74204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29631/", + "id": 29631, + "name": "Louis Baxter III", + "site_detail_url": "https://comicvine.gamespot.com/louis-baxter-iii/4005-29631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61288/", + "id": 61288, + "name": "Lucia Von Bardas", + "site_detail_url": "https://comicvine.gamespot.com/lucia-von-bardas/4005-61288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38640/", + "id": 38640, + "name": "Lucky Lobo", + "site_detail_url": "https://comicvine.gamespot.com/lucky-lobo/4005-38640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31075/", + "id": 31075, + "name": "Ludlow Grimes", + "site_detail_url": "https://comicvine.gamespot.com/ludlow-grimes/4005-31075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59271/", + "id": 59271, + "name": "Ludwig von Shtupf", + "site_detail_url": "https://comicvine.gamespot.com/ludwig-von-shtupf/4005-59271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44371/", + "id": 44371, + "name": "Luigi Gambonno", + "site_detail_url": "https://comicvine.gamespot.com/luigi-gambonno/4005-44371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176158/", + "id": 176158, + "name": "Lupin", + "site_detail_url": "https://comicvine.gamespot.com/lupin/4005-176158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3562/", + "id": 3562, + "name": "Lupo", + "site_detail_url": "https://comicvine.gamespot.com/lupo/4005-3562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46464/", + "id": 46464, + "name": "Lynn Church", + "site_detail_url": "https://comicvine.gamespot.com/lynn-church/4005-46464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3709/", + "id": 3709, + "name": "M.O.D.O.K.", + "site_detail_url": "https://comicvine.gamespot.com/modok/4005-3709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115289/", + "id": 115289, + "name": "Macauley Sharpe", + "site_detail_url": "https://comicvine.gamespot.com/macauley-sharpe/4005-115289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2495/", + "id": 2495, + "name": "Machete", + "site_detail_url": "https://comicvine.gamespot.com/machete/4005-2495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28676/", + "id": 28676, + "name": "Machinesmith", + "site_detail_url": "https://comicvine.gamespot.com/machinesmith/4005-28676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63702/", + "id": 63702, + "name": "Macho Man", + "site_detail_url": "https://comicvine.gamespot.com/macho-man/4005-63702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29213/", + "id": 29213, + "name": "Macon", + "site_detail_url": "https://comicvine.gamespot.com/macon/4005-29213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84868/", + "id": 84868, + "name": "Mad Jack", + "site_detail_url": "https://comicvine.gamespot.com/mad-jack/4005-84868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175636/", + "id": 175636, + "name": "Mad Scientist", + "site_detail_url": "https://comicvine.gamespot.com/mad-scientist/4005-175636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2131/", + "id": 2131, + "name": "Mad Thinker", + "site_detail_url": "https://comicvine.gamespot.com/mad-thinker/4005-2131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70634/", + "id": 70634, + "name": "Madame Fang", + "site_detail_url": "https://comicvine.gamespot.com/madame-fang/4005-70634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13940/", + "id": 13940, + "name": "Madame Masque", + "site_detail_url": "https://comicvine.gamespot.com/madame-masque/4005-13940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15650/", + "id": 15650, + "name": "Madame Qwa", + "site_detail_url": "https://comicvine.gamespot.com/madame-qwa/4005-15650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161903/", + "id": 161903, + "name": "Madame Swarm", + "site_detail_url": "https://comicvine.gamespot.com/madame-swarm/4005-161903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154716/", + "id": 154716, + "name": "Magic Wanda", + "site_detail_url": "https://comicvine.gamespot.com/magic-wanda/4005-154716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62572/", + "id": 62572, + "name": "Magma", + "site_detail_url": "https://comicvine.gamespot.com/magma/4005-62572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146943/", + "id": 146943, + "name": "Magna Mind", + "site_detail_url": "https://comicvine.gamespot.com/magna-mind/4005-146943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78493/", + "id": 78493, + "name": "Magnetic Man", + "site_detail_url": "https://comicvine.gamespot.com/magnetic-man/4005-78493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1441/", + "id": 1441, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4005-1441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101807/", + "id": 101807, + "name": "Maguire", + "site_detail_url": "https://comicvine.gamespot.com/maguire/4005-101807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14619/", + "id": 14619, + "name": "Magus", + "site_detail_url": "https://comicvine.gamespot.com/magus/4005-14619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65413/", + "id": 65413, + "name": "Mainframe", + "site_detail_url": "https://comicvine.gamespot.com/mainframe/4005-65413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7350/", + "id": 7350, + "name": "Mainspring", + "site_detail_url": "https://comicvine.gamespot.com/mainspring/4005-7350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79551/", + "id": 79551, + "name": "Major Love", + "site_detail_url": "https://comicvine.gamespot.com/major-love/4005-79551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154857/", + "id": 154857, + "name": "Major Toler Weil", + "site_detail_url": "https://comicvine.gamespot.com/major-toler-weil/4005-154857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14469/", + "id": 14469, + "name": "Malekith", + "site_detail_url": "https://comicvine.gamespot.com/malekith/4005-14469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136143/", + "id": 136143, + "name": "Malekyth", + "site_detail_url": "https://comicvine.gamespot.com/malekyth/4005-136143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3801/", + "id": 3801, + "name": "Man-Ape", + "site_detail_url": "https://comicvine.gamespot.com/man-ape/4005-3801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14524/", + "id": 14524, + "name": "Man-Beast", + "site_detail_url": "https://comicvine.gamespot.com/man-beast/4005-14524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13946/", + "id": 13946, + "name": "Man-Bull", + "site_detail_url": "https://comicvine.gamespot.com/man-bull/4005-13946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14575/", + "id": 14575, + "name": "Man-Killer", + "site_detail_url": "https://comicvine.gamespot.com/man-killer/4005-14575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28039/", + "id": 28039, + "name": "Man-Mountain Marko", + "site_detail_url": "https://comicvine.gamespot.com/man-mountain-marko/4005-28039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3530/", + "id": 3530, + "name": "Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/mandarin/4005-3530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6829/", + "id": 6829, + "name": "Mandrill", + "site_detail_url": "https://comicvine.gamespot.com/mandrill/4005-6829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83476/", + "id": 83476, + "name": "Mania", + "site_detail_url": "https://comicvine.gamespot.com/mania/4005-83476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46956/", + "id": 46956, + "name": "Manipulator", + "site_detail_url": "https://comicvine.gamespot.com/manipulator/4005-46956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29664/", + "id": 29664, + "name": "Manslaughter Marsdale", + "site_detail_url": "https://comicvine.gamespot.com/manslaughter-marsdale/4005-29664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13559/", + "id": 13559, + "name": "Mantis", + "site_detail_url": "https://comicvine.gamespot.com/mantis/4005-13559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143379/", + "id": 143379, + "name": "Mara, The Dreamer", + "site_detail_url": "https://comicvine.gamespot.com/mara-the-dreamer/4005-143379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31819/", + "id": 31819, + "name": "Marco Sanzionare", + "site_detail_url": "https://comicvine.gamespot.com/marco-sanzionare/4005-31819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147439/", + "id": 147439, + "name": "Marge", + "site_detail_url": "https://comicvine.gamespot.com/marge/4005-147439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24401/", + "id": 24401, + "name": "Maris Morlak", + "site_detail_url": "https://comicvine.gamespot.com/maris-morlak/4005-24401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7569/", + "id": 7569, + "name": "Martine Bancroft", + "site_detail_url": "https://comicvine.gamespot.com/martine-bancroft/4005-7569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110805/", + "id": 110805, + "name": "Mary Parker (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/mary-parker-lmd/4005-110805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34318/", + "id": 34318, + "name": "Masked Marauder", + "site_detail_url": "https://comicvine.gamespot.com/masked-marauder/4005-34318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76320/", + "id": 76320, + "name": "Massacre", + "site_detail_url": "https://comicvine.gamespot.com/massacre/4005-76320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151842/", + "id": 151842, + "name": "Massster", + "site_detail_url": "https://comicvine.gamespot.com/massster/4005-151842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15205/", + "id": 15205, + "name": "Master Man", + "site_detail_url": "https://comicvine.gamespot.com/master-man/4005-15205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10254/", + "id": 10254, + "name": "Master Mold", + "site_detail_url": "https://comicvine.gamespot.com/master-mold/4005-10254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15251/", + "id": 15251, + "name": "Master Of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/master-of-vengeance/4005-15251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6293/", + "id": 6293, + "name": "Master Programmer", + "site_detail_url": "https://comicvine.gamespot.com/master-programmer/4005-6293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15486/", + "id": 15486, + "name": "Masterblaster", + "site_detail_url": "https://comicvine.gamespot.com/masterblaster/4005-15486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175661/", + "id": 175661, + "name": "Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mastermind/4005-175661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8306/", + "id": 8306, + "name": "Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mastermind/4005-8306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154814/", + "id": 154814, + "name": "Matthew DeRoma", + "site_detail_url": "https://comicvine.gamespot.com/matthew-deroma/4005-154814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13921/", + "id": 13921, + "name": "Mauler", + "site_detail_url": "https://comicvine.gamespot.com/mauler/4005-13921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151856/", + "id": 151856, + "name": "Mauler (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/mauler-hobgoblin/4005-151856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38700/", + "id": 38700, + "name": "Max Young", + "site_detail_url": "https://comicvine.gamespot.com/max-young/4005-38700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3447/", + "id": 3447, + "name": "Maximus", + "site_detail_url": "https://comicvine.gamespot.com/maximus/4005-3447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15244/", + "id": 15244, + "name": "Medea", + "site_detail_url": "https://comicvine.gamespot.com/medea/4005-15244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140896/", + "id": 140896, + "name": "Medgar DuPaul", + "site_detail_url": "https://comicvine.gamespot.com/medgar-dupaul/4005-140896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27382/", + "id": 27382, + "name": "Megaera", + "site_detail_url": "https://comicvine.gamespot.com/megaera/4005-27382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58407/", + "id": 58407, + "name": "Megasaur", + "site_detail_url": "https://comicvine.gamespot.com/megasaur/4005-58407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4103/", + "id": 4103, + "name": "Megatron", + "site_detail_url": "https://comicvine.gamespot.com/megatron/4005-4103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58411/", + "id": 58411, + "name": "Megawatt", + "site_detail_url": "https://comicvine.gamespot.com/megawatt/4005-58411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46518/", + "id": 46518, + "name": "Meiko Yin", + "site_detail_url": "https://comicvine.gamespot.com/meiko-yin/4005-46518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33692/", + "id": 33692, + "name": "Melba Toliver", + "site_detail_url": "https://comicvine.gamespot.com/melba-toliver/4005-33692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151951/", + "id": 151951, + "name": "Melter (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/melter-hobgoblin/4005-151951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7260/", + "id": 7260, + "name": "Melter (Horgan)", + "site_detail_url": "https://comicvine.gamespot.com/melter-horgan/4005-7260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24453/", + "id": 24453, + "name": "Menace", + "site_detail_url": "https://comicvine.gamespot.com/menace/4005-24453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13922/", + "id": 13922, + "name": "Mentallo", + "site_detail_url": "https://comicvine.gamespot.com/mentallo/4005-13922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2635/", + "id": 2635, + "name": "Mephisto", + "site_detail_url": "https://comicvine.gamespot.com/mephisto/4005-2635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61936/", + "id": 61936, + "name": "Meru", + "site_detail_url": "https://comicvine.gamespot.com/meru/4005-61936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5065/", + "id": 5065, + "name": "Mesmero", + "site_detail_url": "https://comicvine.gamespot.com/mesmero/4005-5065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35111/", + "id": 35111, + "name": "Michael Lincoln", + "site_detail_url": "https://comicvine.gamespot.com/michael-lincoln/4005-35111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59300/", + "id": 59300, + "name": "Midas", + "site_detail_url": "https://comicvine.gamespot.com/midas/4005-59300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35695/", + "id": 35695, + "name": "Midnight", + "site_detail_url": "https://comicvine.gamespot.com/midnight/4005-35695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143630/", + "id": 143630, + "name": "Mighty Mouth Martin ", + "site_detail_url": "https://comicvine.gamespot.com/mighty-mouth-martin/4005-143630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44368/", + "id": 44368, + "name": "Mikaboshi", + "site_detail_url": "https://comicvine.gamespot.com/mikaboshi/4005-44368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30398/", + "id": 30398, + "name": "Mike Clemson", + "site_detail_url": "https://comicvine.gamespot.com/mike-clemson/4005-30398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68474/", + "id": 68474, + "name": "Mikhlo", + "site_detail_url": "https://comicvine.gamespot.com/mikhlo/4005-68474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74822/", + "id": 74822, + "name": "Militant", + "site_detail_url": "https://comicvine.gamespot.com/militant/4005-74822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46246/", + "id": 46246, + "name": "Mindblast", + "site_detail_url": "https://comicvine.gamespot.com/mindblast/4005-46246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60570/", + "id": 60570, + "name": "Mindstorm", + "site_detail_url": "https://comicvine.gamespot.com/mindstorm/4005-60570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36207/", + "id": 36207, + "name": "Mindworm", + "site_detail_url": "https://comicvine.gamespot.com/mindworm/4005-36207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66332/", + "id": 66332, + "name": "Mindy Williams", + "site_detail_url": "https://comicvine.gamespot.com/mindy-williams/4005-66332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14472/", + "id": 14472, + "name": "Mirage", + "site_detail_url": "https://comicvine.gamespot.com/mirage/4005-14472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16201/", + "id": 16201, + "name": "Mirrorshade", + "site_detail_url": "https://comicvine.gamespot.com/mirrorshade/4005-16201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15367/", + "id": 15367, + "name": "Miss Locke", + "site_detail_url": "https://comicvine.gamespot.com/miss-locke/4005-15367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58998/", + "id": 58998, + "name": "Mister E", + "site_detail_url": "https://comicvine.gamespot.com/mister-e/4005-58998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91171/", + "id": 91171, + "name": "Mister Kirkland", + "site_detail_url": "https://comicvine.gamespot.com/mister-kirkland/4005-91171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49969/", + "id": 49969, + "name": "Mister Negative", + "site_detail_url": "https://comicvine.gamespot.com/mister-negative/4005-49969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65590/", + "id": 65590, + "name": "Mitchell Chambers", + "site_detail_url": "https://comicvine.gamespot.com/mitchell-chambers/4005-65590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55856/", + "id": 55856, + "name": "Miz Tree", + "site_detail_url": "https://comicvine.gamespot.com/miz-tree/4005-55856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15382/", + "id": 15382, + "name": "Modular Man", + "site_detail_url": "https://comicvine.gamespot.com/modular-man/4005-15382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6755/", + "id": 6755, + "name": "Mojo", + "site_detail_url": "https://comicvine.gamespot.com/mojo/4005-6755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2481/", + "id": 2481, + "name": "Mole Man", + "site_detail_url": "https://comicvine.gamespot.com/mole-man/4005-2481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11880/", + "id": 11880, + "name": "Molecule Man", + "site_detail_url": "https://comicvine.gamespot.com/molecule-man/4005-11880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11554/", + "id": 11554, + "name": "Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/molten-man/4005-11554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25662/", + "id": 25662, + "name": "Mongoose", + "site_detail_url": "https://comicvine.gamespot.com/mongoose/4005-25662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137616/", + "id": 137616, + "name": "Monsteroso", + "site_detail_url": "https://comicvine.gamespot.com/monsteroso/4005-137616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26192/", + "id": 26192, + "name": "Monstroid", + "site_detail_url": "https://comicvine.gamespot.com/monstroid/4005-26192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6767/", + "id": 6767, + "name": "Montana", + "site_detail_url": "https://comicvine.gamespot.com/montana/4005-6767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33240/", + "id": 33240, + "name": "Moondark", + "site_detail_url": "https://comicvine.gamespot.com/moondark/4005-33240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59378/", + "id": 59378, + "name": "Moondog the Malicious", + "site_detail_url": "https://comicvine.gamespot.com/moondog-the-malicious/4005-59378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3279/", + "id": 3279, + "name": "Moonstone", + "site_detail_url": "https://comicvine.gamespot.com/moonstone/4005-3279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6722/", + "id": 6722, + "name": "Morbius", + "site_detail_url": "https://comicvine.gamespot.com/morbius/4005-6722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34868/", + "id": 34868, + "name": "Mordecai Midas", + "site_detail_url": "https://comicvine.gamespot.com/mordecai-midas/4005-34868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22583/", + "id": 22583, + "name": "Morgan", + "site_detail_url": "https://comicvine.gamespot.com/morgan/4005-22583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17613/", + "id": 17613, + "name": "Morlun", + "site_detail_url": "https://comicvine.gamespot.com/morlun/4005-17613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59864/", + "id": 59864, + "name": "Morwen", + "site_detail_url": "https://comicvine.gamespot.com/morwen/4005-59864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11915/", + "id": 11915, + "name": "Moses Magnum", + "site_detail_url": "https://comicvine.gamespot.com/moses-magnum/4005-11915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101690/", + "id": 101690, + "name": "Motta", + "site_detail_url": "https://comicvine.gamespot.com/motta/4005-101690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71705/", + "id": 71705, + "name": "Mouse", + "site_detail_url": "https://comicvine.gamespot.com/mouse/4005-71705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175666/", + "id": 175666, + "name": "Movie Menace", + "site_detail_url": "https://comicvine.gamespot.com/movie-menace/4005-175666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20119/", + "id": 20119, + "name": "Mr. Abnormal", + "site_detail_url": "https://comicvine.gamespot.com/mr-abnormal/4005-20119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30823/", + "id": 30823, + "name": "Mr. Chambers", + "site_detail_url": "https://comicvine.gamespot.com/mr-chambers/4005-30823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23692/", + "id": 23692, + "name": "Mr. Fear", + "site_detail_url": "https://comicvine.gamespot.com/mr-fear/4005-23692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90515/", + "id": 90515, + "name": "Mr. Fear (Drago)", + "site_detail_url": "https://comicvine.gamespot.com/mr-fear-drago/4005-90515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3233/", + "id": 3233, + "name": "Mr. Hyde", + "site_detail_url": "https://comicvine.gamespot.com/mr-hyde/4005-3233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175381/", + "id": 175381, + "name": "Mr. Jacks", + "site_detail_url": "https://comicvine.gamespot.com/mr-jacks/4005-175381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151992/", + "id": 151992, + "name": "Mr. Krane", + "site_detail_url": "https://comicvine.gamespot.com/mr-krane/4005-151992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175608/", + "id": 175608, + "name": "Mr. Measles", + "site_detail_url": "https://comicvine.gamespot.com/mr-measles/4005-175608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15243/", + "id": 15243, + "name": "Mr. Nacht", + "site_detail_url": "https://comicvine.gamespot.com/mr-nacht/4005-15243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18427/", + "id": 18427, + "name": "Mr. Nobody", + "site_detail_url": "https://comicvine.gamespot.com/mr-nobody/4005-18427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70859/", + "id": 70859, + "name": "Mr. Pain", + "site_detail_url": "https://comicvine.gamespot.com/mr-pain/4005-70859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3179/", + "id": 3179, + "name": "Mr. Sinister", + "site_detail_url": "https://comicvine.gamespot.com/mr-sinister/4005-3179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78010/", + "id": 78010, + "name": "Mr. Think", + "site_detail_url": "https://comicvine.gamespot.com/mr-think/4005-78010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15474/", + "id": 15474, + "name": "Mr. Thorpe", + "site_detail_url": "https://comicvine.gamespot.com/mr-thorpe/4005-15474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83138/", + "id": 83138, + "name": "Mr. Vale", + "site_detail_url": "https://comicvine.gamespot.com/mr-vale/4005-83138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126132/", + "id": 126132, + "name": "Mr. Zodiac", + "site_detail_url": "https://comicvine.gamespot.com/mr-zodiac/4005-126132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30001/", + "id": 30001, + "name": "Mrs. Muggins", + "site_detail_url": "https://comicvine.gamespot.com/mrs-muggins/4005-30001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27349/", + "id": 27349, + "name": "Ms. Fortune", + "site_detail_url": "https://comicvine.gamespot.com/ms-fortune/4005-27349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148274/", + "id": 148274, + "name": "Ms. January", + "site_detail_url": "https://comicvine.gamespot.com/ms-january/4005-148274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154774/", + "id": 154774, + "name": "Ms. Quizzler", + "site_detail_url": "https://comicvine.gamespot.com/ms-quizzler/4005-154774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57441/", + "id": 57441, + "name": "Mud-Thing", + "site_detail_url": "https://comicvine.gamespot.com/mud-thing/4005-57441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101691/", + "id": 101691, + "name": "Munch", + "site_detail_url": "https://comicvine.gamespot.com/munch/4005-101691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154720/", + "id": 154720, + "name": "Murderer by Spider", + "site_detail_url": "https://comicvine.gamespot.com/murderer-by-spider/4005-154720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52830/", + "id": 52830, + "name": "Mutilation Killer", + "site_detail_url": "https://comicvine.gamespot.com/mutilation-killer/4005-52830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4333/", + "id": 4333, + "name": "Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/mysterio/4005-4333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84871/", + "id": 84871, + "name": "Mysterio (Berkhart)", + "site_detail_url": "https://comicvine.gamespot.com/mysterio-berkhart/4005-84871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42869/", + "id": 42869, + "name": "N'astirh", + "site_detail_url": "https://comicvine.gamespot.com/nastirh/4005-42869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113709/", + "id": 113709, + "name": "N'Gama", + "site_detail_url": "https://comicvine.gamespot.com/n-gama/4005-113709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113564/", + "id": 113564, + "name": "N4256", + "site_detail_url": "https://comicvine.gamespot.com/n4256/4005-113564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107940/", + "id": 107940, + "name": "Naamurah", + "site_detail_url": "https://comicvine.gamespot.com/naamurah/4005-107940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15459/", + "id": 15459, + "name": "Nardi", + "site_detail_url": "https://comicvine.gamespot.com/nardi/4005-15459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16111/", + "id": 16111, + "name": "Nautilus", + "site_detail_url": "https://comicvine.gamespot.com/nautilus/4005-16111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83721/", + "id": 83721, + "name": "Nazum", + "site_detail_url": "https://comicvine.gamespot.com/nazum/4005-83721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14558/", + "id": 14558, + "name": "Nebula", + "site_detail_url": "https://comicvine.gamespot.com/nebula/4005-14558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29378/", + "id": 29378, + "name": "Necrodamus", + "site_detail_url": "https://comicvine.gamespot.com/necrodamus/4005-29378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71922/", + "id": 71922, + "name": "Nedrocci Tannengarden", + "site_detail_url": "https://comicvine.gamespot.com/nedrocci-tannengarden/4005-71922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13896/", + "id": 13896, + "name": "Nekra", + "site_detail_url": "https://comicvine.gamespot.com/nekra/4005-13896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15286/", + "id": 15286, + "name": "Nick Katzenberg", + "site_detail_url": "https://comicvine.gamespot.com/nick-katzenberg/4005-15286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140769/", + "id": 140769, + "name": "Nico", + "site_detail_url": "https://comicvine.gamespot.com/nico/4005-140769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5157/", + "id": 5157, + "name": "Nicolai Kutzov", + "site_detail_url": "https://comicvine.gamespot.com/nicolai-kutzov/4005-5157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151245/", + "id": 151245, + "name": "Nightcrawler Clone", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-clone/4005-151245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2646/", + "id": 2646, + "name": "Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/nightmare/4005-2646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50320/", + "id": 50320, + "name": "Niles Van Roekel", + "site_detail_url": "https://comicvine.gamespot.com/niles-van-roekel/4005-50320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3160/", + "id": 3160, + "name": "Nitro", + "site_detail_url": "https://comicvine.gamespot.com/nitro/4005-3160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43277/", + "id": 43277, + "name": "No-Name", + "site_detail_url": "https://comicvine.gamespot.com/no-name/4005-43277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11565/", + "id": 11565, + "name": "Noh-Varr", + "site_detail_url": "https://comicvine.gamespot.com/noh-varr/4005-11565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124553/", + "id": 124553, + "name": "Norma Osborn", + "site_detail_url": "https://comicvine.gamespot.com/norma-osborn/4005-124553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58812/", + "id": 58812, + "name": "Norman Osborn", + "site_detail_url": "https://comicvine.gamespot.com/norman-osborn/4005-58812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11552/", + "id": 11552, + "name": "Normie Osborn", + "site_detail_url": "https://comicvine.gamespot.com/normie-osborn/4005-11552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2105/", + "id": 2105, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4005-2105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41866/", + "id": 41866, + "name": "Nuke", + "site_detail_url": "https://comicvine.gamespot.com/nuke/4005-41866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41196/", + "id": 41196, + "name": "Occulus", + "site_detail_url": "https://comicvine.gamespot.com/occulus/4005-41196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153591/", + "id": 153591, + "name": "Odessa Drake", + "site_detail_url": "https://comicvine.gamespot.com/odessa-drake/4005-153591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62891/", + "id": 62891, + "name": "Ogre", + "site_detail_url": "https://comicvine.gamespot.com/ogre/4005-62891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15210/", + "id": 15210, + "name": "Omar", + "site_detail_url": "https://comicvine.gamespot.com/omar/4005-15210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60008/", + "id": 60008, + "name": "Omega", + "site_detail_url": "https://comicvine.gamespot.com/omega/4005-60008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9729/", + "id": 9729, + "name": "Omega Red", + "site_detail_url": "https://comicvine.gamespot.com/omega-red/4005-9729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13352/", + "id": 13352, + "name": "Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/onslaught/4005-13352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82960/", + "id": 82960, + "name": "Orb", + "site_detail_url": "https://comicvine.gamespot.com/orb/4005-82960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15358/", + "id": 15358, + "name": "Orb (Shannon)", + "site_detail_url": "https://comicvine.gamespot.com/orb-shannon/4005-15358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57357/", + "id": 57357, + "name": "Orbit", + "site_detail_url": "https://comicvine.gamespot.com/orbit/4005-57357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13400/", + "id": 13400, + "name": "Orka", + "site_detail_url": "https://comicvine.gamespot.com/orka/4005-13400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53344/", + "id": 53344, + "name": "Orwell Taylor", + "site_detail_url": "https://comicvine.gamespot.com/orwell-taylor/4005-53344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154810/", + "id": 154810, + "name": "Outrider", + "site_detail_url": "https://comicvine.gamespot.com/outrider/4005-154810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70020/", + "id": 70020, + "name": "Over-Knight", + "site_detail_url": "https://comicvine.gamespot.com/over-knight/4005-70020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156220/", + "id": 156220, + "name": "Overcharge", + "site_detail_url": "https://comicvine.gamespot.com/overcharge/4005-156220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55823/", + "id": 55823, + "name": "Overdrive", + "site_detail_url": "https://comicvine.gamespot.com/overdrive/4005-55823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20081/", + "id": 20081, + "name": "Overkiller", + "site_detail_url": "https://comicvine.gamespot.com/overkiller/4005-20081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16198/", + "id": 16198, + "name": "Oversize", + "site_detail_url": "https://comicvine.gamespot.com/oversize/4005-16198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13908/", + "id": 13908, + "name": "Owl", + "site_detail_url": "https://comicvine.gamespot.com/owl/4005-13908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38747/", + "id": 38747, + "name": "Ox", + "site_detail_url": "https://comicvine.gamespot.com/ox/4005-38747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55857/", + "id": 55857, + "name": "Oxford Blue", + "site_detail_url": "https://comicvine.gamespot.com/oxford-blue/4005-55857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54515/", + "id": 54515, + "name": "Pagon", + "site_detail_url": "https://comicvine.gamespot.com/pagon/4005-54515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52941/", + "id": 52941, + "name": "Painter of 1000 Perils", + "site_detail_url": "https://comicvine.gamespot.com/painter-of-1000-perils/4005-52941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101452/", + "id": 101452, + "name": "Panda-Mania", + "site_detail_url": "https://comicvine.gamespot.com/panda-mania/4005-101452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26399/", + "id": 26399, + "name": "Pandara", + "site_detail_url": "https://comicvine.gamespot.com/pandara/4005-26399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54836/", + "id": 54836, + "name": "Paperdoll", + "site_detail_url": "https://comicvine.gamespot.com/paperdoll/4005-54836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47642/", + "id": 47642, + "name": "Paralyzer", + "site_detail_url": "https://comicvine.gamespot.com/paralyzer/4005-47642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4690/", + "id": 4690, + "name": "Parasite", + "site_detail_url": "https://comicvine.gamespot.com/parasite/4005-4690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23412/", + "id": 23412, + "name": "Parnival Plunder", + "site_detail_url": "https://comicvine.gamespot.com/parnival-plunder/4005-23412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6740/", + "id": 6740, + "name": "Patricia Robertson", + "site_detail_url": "https://comicvine.gamespot.com/patricia-robertson/4005-6740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154264/", + "id": 154264, + "name": "Paul", + "site_detail_url": "https://comicvine.gamespot.com/paul/4005-154264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86567/", + "id": 86567, + "name": "Paul Patterson", + "site_detail_url": "https://comicvine.gamespot.com/paul-patterson/4005-86567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68475/", + "id": 68475, + "name": "Peotor", + "site_detail_url": "https://comicvine.gamespot.com/peotor/4005-68475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29758/", + "id": 29758, + "name": "Persuader", + "site_detail_url": "https://comicvine.gamespot.com/persuader/4005-29758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40791/", + "id": 40791, + "name": "Phage", + "site_detail_url": "https://comicvine.gamespot.com/phage/4005-40791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9713/", + "id": 9713, + "name": "Phantazia", + "site_detail_url": "https://comicvine.gamespot.com/phantazia/4005-9713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2246/", + "id": 2246, + "name": "Phil Urich", + "site_detail_url": "https://comicvine.gamespot.com/phil-urich/4005-2246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76801/", + "id": 76801, + "name": "Phillip Chambers", + "site_detail_url": "https://comicvine.gamespot.com/phillip-chambers/4005-76801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15248/", + "id": 15248, + "name": "Phillip Cussler", + "site_detail_url": "https://comicvine.gamespot.com/phillip-cussler/4005-15248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92318/", + "id": 92318, + "name": "Phillip DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/phillip-dewolff/4005-92318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44691/", + "id": 44691, + "name": "Phone Ranger", + "site_detail_url": "https://comicvine.gamespot.com/phone-ranger/4005-44691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136136/", + "id": 136136, + "name": "Photoman", + "site_detail_url": "https://comicvine.gamespot.com/photoman/4005-136136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11918/", + "id": 11918, + "name": "Phreak", + "site_detail_url": "https://comicvine.gamespot.com/phreak/4005-11918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68917/", + "id": 68917, + "name": "Pigeon", + "site_detail_url": "https://comicvine.gamespot.com/pigeon/4005-68917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24922/", + "id": 24922, + "name": "Pike", + "site_detail_url": "https://comicvine.gamespot.com/pike/4005-24922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2251/", + "id": 2251, + "name": "Piledriver", + "site_detail_url": "https://comicvine.gamespot.com/piledriver/4005-2251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5042/", + "id": 5042, + "name": "Pisces", + "site_detail_url": "https://comicvine.gamespot.com/pisces/4005-5042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152500/", + "id": 152500, + "name": "Pitbull", + "site_detail_url": "https://comicvine.gamespot.com/pitbull/4005-152500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56511/", + "id": 56511, + "name": "Pitt'o Nili", + "site_detail_url": "https://comicvine.gamespot.com/pitto-nili/4005-56511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152491/", + "id": 152491, + "name": "Plainsman", + "site_detail_url": "https://comicvine.gamespot.com/plainsman/4005-152491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26582/", + "id": 26582, + "name": "Platoon", + "site_detail_url": "https://comicvine.gamespot.com/platoon/4005-26582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4841/", + "id": 4841, + "name": "Polestar", + "site_detail_url": "https://comicvine.gamespot.com/polestar/4005-4841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159296/", + "id": 159296, + "name": "Poodle", + "site_detail_url": "https://comicvine.gamespot.com/poodle/4005-159296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12610/", + "id": 12610, + "name": "Porcupine", + "site_detail_url": "https://comicvine.gamespot.com/porcupine/4005-12610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32408/", + "id": 32408, + "name": "Poundcakes", + "site_detail_url": "https://comicvine.gamespot.com/poundcakes/4005-32408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6824/", + "id": 6824, + "name": "Powderkeg", + "site_detail_url": "https://comicvine.gamespot.com/powderkeg/4005-6824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11524/", + "id": 11524, + "name": "Power-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/power-skrull/4005-11524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57720/", + "id": 57720, + "name": "Powerhouse", + "site_detail_url": "https://comicvine.gamespot.com/powerhouse/4005-57720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164350/", + "id": 164350, + "name": "Precious", + "site_detail_url": "https://comicvine.gamespot.com/precious/4005-164350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73123/", + "id": 73123, + "name": "Predator", + "site_detail_url": "https://comicvine.gamespot.com/predator/4005-73123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80613/", + "id": 80613, + "name": "Primordius", + "site_detail_url": "https://comicvine.gamespot.com/primordius/4005-80613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10859/", + "id": 10859, + "name": "Princess Python", + "site_detail_url": "https://comicvine.gamespot.com/princess-python/4005-10859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81331/", + "id": 81331, + "name": "Printout Man", + "site_detail_url": "https://comicvine.gamespot.com/printout-man/4005-81331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34025/", + "id": 34025, + "name": "Pro-Rata", + "site_detail_url": "https://comicvine.gamespot.com/pro-rata/4005-34025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31354/", + "id": 31354, + "name": "Professor Mendel Stromm", + "site_detail_url": "https://comicvine.gamespot.com/professor-mendel-stromm/4005-31354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13911/", + "id": 13911, + "name": "Professor Power", + "site_detail_url": "https://comicvine.gamespot.com/professor-power/4005-13911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115284/", + "id": 115284, + "name": "Professor Squid", + "site_detail_url": "https://comicvine.gamespot.com/professor-squid/4005-115284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13735/", + "id": 13735, + "name": "Proto-Goblin", + "site_detail_url": "https://comicvine.gamespot.com/proto-goblin/4005-13735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90522/", + "id": 90522, + "name": "Proxima Midnight", + "site_detail_url": "https://comicvine.gamespot.com/proxima-midnight/4005-90522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7112/", + "id": 7112, + "name": "Psycho-Man", + "site_detail_url": "https://comicvine.gamespot.com/psycho-man/4005-7112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59453/", + "id": 59453, + "name": "Psyk-Out", + "site_detail_url": "https://comicvine.gamespot.com/psyk-out/4005-59453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27471/", + "id": 27471, + "name": "Puff Adder", + "site_detail_url": "https://comicvine.gamespot.com/puff-adder/4005-27471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27568/", + "id": 27568, + "name": "Pulse", + "site_detail_url": "https://comicvine.gamespot.com/pulse/4005-27568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15238/", + "id": 15238, + "name": "Puma", + "site_detail_url": "https://comicvine.gamespot.com/puma/4005-15238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1525/", + "id": 1525, + "name": "Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher/4005-1525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3799/", + "id": 3799, + "name": "Puppet Master", + "site_detail_url": "https://comicvine.gamespot.com/puppet-master/4005-3799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3227/", + "id": 3227, + "name": "Purple Man", + "site_detail_url": "https://comicvine.gamespot.com/purple-man/4005-3227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28209/", + "id": 28209, + "name": "Purty Larry", + "site_detail_url": "https://comicvine.gamespot.com/purty-larry/4005-28209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3554/", + "id": 3554, + "name": "Pyro", + "site_detail_url": "https://comicvine.gamespot.com/pyro/4005-3554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92280/", + "id": 92280, + "name": "Pyromania", + "site_detail_url": "https://comicvine.gamespot.com/pyromania/4005-92280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7230/", + "id": 7230, + "name": "Quasimodo", + "site_detail_url": "https://comicvine.gamespot.com/quasimodo/4005-7230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41418/", + "id": 41418, + "name": "Queen", + "site_detail_url": "https://comicvine.gamespot.com/queen/4005-41418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154749/", + "id": 154749, + "name": "Queen Bee", + "site_detail_url": "https://comicvine.gamespot.com/queen-bee/4005-154749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50406/", + "id": 50406, + "name": "Queen Cat", + "site_detail_url": "https://comicvine.gamespot.com/queen-cat/4005-50406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154722/", + "id": 154722, + "name": "Queen of Diamonds", + "site_detail_url": "https://comicvine.gamespot.com/queen-of-diamonds/4005-154722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25663/", + "id": 25663, + "name": "Quicksand", + "site_detail_url": "https://comicvine.gamespot.com/quicksand/4005-25663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56837/", + "id": 56837, + "name": "Quintronic Man", + "site_detail_url": "https://comicvine.gamespot.com/quintronic-man/4005-56837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154294/", + "id": 154294, + "name": "R.H.I.N.O.", + "site_detail_url": "https://comicvine.gamespot.com/rhino/4005-154294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22188/", + "id": 22188, + "name": "Ra'ktar", + "site_detail_url": "https://comicvine.gamespot.com/raktar/4005-22188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40816/", + "id": 40816, + "name": "Ra's al Ghul", + "site_detail_url": "https://comicvine.gamespot.com/ras-al-ghul/4005-40816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4807/", + "id": 4807, + "name": "Radioactive Man", + "site_detail_url": "https://comicvine.gamespot.com/radioactive-man/4005-4807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34116/", + "id": 34116, + "name": "Radium", + "site_detail_url": "https://comicvine.gamespot.com/radium/4005-34116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176159/", + "id": 176159, + "name": "Raffles", + "site_detail_url": "https://comicvine.gamespot.com/raffles/4005-176159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47573/", + "id": 47573, + "name": "Ragnarok", + "site_detail_url": "https://comicvine.gamespot.com/ragnarok/4005-47573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27420/", + "id": 27420, + "name": "Rags Williams", + "site_detail_url": "https://comicvine.gamespot.com/rags-williams/4005-27420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42146/", + "id": 42146, + "name": "Raja", + "site_detail_url": "https://comicvine.gamespot.com/raja/4005-42146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57966/", + "id": 57966, + "name": "Rak", + "site_detail_url": "https://comicvine.gamespot.com/rak/4005-57966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15394/", + "id": 15394, + "name": "Rakks", + "site_detail_url": "https://comicvine.gamespot.com/rakks/4005-15394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41855/", + "id": 41855, + "name": "Ramjet", + "site_detail_url": "https://comicvine.gamespot.com/ramjet/4005-41855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37901/", + "id": 37901, + "name": "Ramona", + "site_detail_url": "https://comicvine.gamespot.com/ramona/4005-37901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15416/", + "id": 15416, + "name": "Rampage", + "site_detail_url": "https://comicvine.gamespot.com/rampage/4005-15416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21418/", + "id": 21418, + "name": "Ramrod", + "site_detail_url": "https://comicvine.gamespot.com/ramrod/4005-21418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11214/", + "id": 11214, + "name": "Ramshot", + "site_detail_url": "https://comicvine.gamespot.com/ramshot/4005-11214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52524/", + "id": 52524, + "name": "Randall Crowne", + "site_detail_url": "https://comicvine.gamespot.com/randall-crowne/4005-52524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31866/", + "id": 31866, + "name": "Randolph Cherryh", + "site_detail_url": "https://comicvine.gamespot.com/randolph-cherryh/4005-31866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14458/", + "id": 14458, + "name": "Rapier", + "site_detail_url": "https://comicvine.gamespot.com/rapier/4005-14458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16088/", + "id": 16088, + "name": "Raptar", + "site_detail_url": "https://comicvine.gamespot.com/raptar/4005-16088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8668/", + "id": 8668, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-8668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63361/", + "id": 63361, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-63361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38620/", + "id": 38620, + "name": "Ratatoskr", + "site_detail_url": "https://comicvine.gamespot.com/ratatoskr/4005-38620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143378/", + "id": 143378, + "name": "Ratri, The Night", + "site_detail_url": "https://comicvine.gamespot.com/ratri-the-night/4005-143378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164605/", + "id": 164605, + "name": "Rattan", + "site_detail_url": "https://comicvine.gamespot.com/rattan/4005-164605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30721/", + "id": 30721, + "name": "Rattler", + "site_detail_url": "https://comicvine.gamespot.com/rattler/4005-30721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62889/", + "id": 62889, + "name": "Razor Wire", + "site_detail_url": "https://comicvine.gamespot.com/razor-wire/4005-62889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6057/", + "id": 6057, + "name": "Razorback", + "site_detail_url": "https://comicvine.gamespot.com/razorback/4005-6057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16110/", + "id": 16110, + "name": "Razorwire", + "site_detail_url": "https://comicvine.gamespot.com/razorwire/4005-16110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107941/", + "id": 107941, + "name": "Red Eye", + "site_detail_url": "https://comicvine.gamespot.com/red-eye/4005-107941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2473/", + "id": 2473, + "name": "Red Ghost", + "site_detail_url": "https://comicvine.gamespot.com/red-ghost/4005-2473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11367/", + "id": 11367, + "name": "Red Raven", + "site_detail_url": "https://comicvine.gamespot.com/red-raven/4005-11367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2250/", + "id": 2250, + "name": "Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/red-skull/4005-2250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77248/", + "id": 77248, + "name": "Red Skull (Malik)", + "site_detail_url": "https://comicvine.gamespot.com/red-skull-malik/4005-77248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69888/", + "id": 69888, + "name": "Red Vulture", + "site_detail_url": "https://comicvine.gamespot.com/red-vulture/4005-69888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118755/", + "id": 118755, + "name": "Regent", + "site_detail_url": "https://comicvine.gamespot.com/regent/4005-118755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91596/", + "id": 91596, + "name": "Relf", + "site_detail_url": "https://comicvine.gamespot.com/relf/4005-91596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2126/", + "id": 2126, + "name": "Rhino", + "site_detail_url": "https://comicvine.gamespot.com/rhino/4005-2126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69235/", + "id": 69235, + "name": "Rhino", + "site_detail_url": "https://comicvine.gamespot.com/rhino/4005-69235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42038/", + "id": 42038, + "name": "Ricadonna", + "site_detail_url": "https://comicvine.gamespot.com/ricadonna/4005-42038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152635/", + "id": 152635, + "name": "Richard Bloom", + "site_detail_url": "https://comicvine.gamespot.com/richard-bloom/4005-152635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110804/", + "id": 110804, + "name": "Richard Parker (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/richard-parker-lmd/4005-110804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152512/", + "id": 152512, + "name": "Rick Lawson", + "site_detail_url": "https://comicvine.gamespot.com/rick-lawson/4005-152512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3803/", + "id": 3803, + "name": "Ringmaster", + "site_detail_url": "https://comicvine.gamespot.com/ringmaster/4005-3803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154266/", + "id": 154266, + "name": "Ringo", + "site_detail_url": "https://comicvine.gamespot.com/ringo/4005-154266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40793/", + "id": 40793, + "name": "Riot", + "site_detail_url": "https://comicvine.gamespot.com/riot/4005-40793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28207/", + "id": 28207, + "name": "Ripster", + "site_detail_url": "https://comicvine.gamespot.com/ripster/4005-28207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9732/", + "id": 9732, + "name": "Riptide", + "site_detail_url": "https://comicvine.gamespot.com/riptide/4005-9732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42900/", + "id": 42900, + "name": "Rock Python", + "site_detail_url": "https://comicvine.gamespot.com/rock-python/4005-42900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14875/", + "id": 14875, + "name": "Rocket Racer", + "site_detail_url": "https://comicvine.gamespot.com/rocket-racer/4005-14875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15957/", + "id": 15957, + "name": "Roland Treece", + "site_detail_url": "https://comicvine.gamespot.com/roland-treece/4005-15957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4818/", + "id": 4818, + "name": "Ronan", + "site_detail_url": "https://comicvine.gamespot.com/ronan/4005-4818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15731/", + "id": 15731, + "name": "Roughouse", + "site_detail_url": "https://comicvine.gamespot.com/roughouse/4005-15731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154750/", + "id": 154750, + "name": "Royal Beekeeper", + "site_detail_url": "https://comicvine.gamespot.com/royal-beekeeper/4005-154750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74118/", + "id": 74118, + "name": "Royal Blue", + "site_detail_url": "https://comicvine.gamespot.com/royal-blue/4005-74118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11933/", + "id": 11933, + "name": "Ruby Thursday", + "site_detail_url": "https://comicvine.gamespot.com/ruby-thursday/4005-11933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13350/", + "id": 13350, + "name": "Ruckus", + "site_detail_url": "https://comicvine.gamespot.com/ruckus/4005-13350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159489/", + "id": 159489, + "name": "Rudolpho ", + "site_detail_url": "https://comicvine.gamespot.com/rudolpho/4005-159489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41908/", + "id": 41908, + "name": "Runabout", + "site_detail_url": "https://comicvine.gamespot.com/runabout/4005-41908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41907/", + "id": 41907, + "name": "Runamuck", + "site_detail_url": "https://comicvine.gamespot.com/runamuck/4005-41907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14977/", + "id": 14977, + "name": "Rune", + "site_detail_url": "https://comicvine.gamespot.com/rune/4005-14977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33702/", + "id": 33702, + "name": "Rupert Dockery", + "site_detail_url": "https://comicvine.gamespot.com/rupert-dockery/4005-33702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41663/", + "id": 41663, + "name": "Russian", + "site_detail_url": "https://comicvine.gamespot.com/russian/4005-41663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4563/", + "id": 4563, + "name": "Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth/4005-4563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5045/", + "id": 5045, + "name": "Sagittarius", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius/4005-5045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152646/", + "id": 152646, + "name": "Saint (Boris)", + "site_detail_url": "https://comicvine.gamespot.com/saint-boris/4005-152646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158274/", + "id": 158274, + "name": "Salmon Stunt Man", + "site_detail_url": "https://comicvine.gamespot.com/salmon-stunt-man/4005-158274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26633/", + "id": 26633, + "name": "Salomé", + "site_detail_url": "https://comicvine.gamespot.com/salome/4005-26633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148656/", + "id": 148656, + "name": "Salvo", + "site_detail_url": "https://comicvine.gamespot.com/salvo/4005-148656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70823/", + "id": 70823, + "name": "Salvo", + "site_detail_url": "https://comicvine.gamespot.com/salvo/4005-70823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15419/", + "id": 15419, + "name": "Sam Bullit", + "site_detail_url": "https://comicvine.gamespot.com/sam-bullit/4005-15419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154811/", + "id": 154811, + "name": "Samuel Fox", + "site_detail_url": "https://comicvine.gamespot.com/samuel-fox/4005-154811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3544/", + "id": 3544, + "name": "Sandman", + "site_detail_url": "https://comicvine.gamespot.com/sandman/4005-3544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14049/", + "id": 14049, + "name": "Sando", + "site_detail_url": "https://comicvine.gamespot.com/sando/4005-14049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26528/", + "id": 26528, + "name": "Sandstorm", + "site_detail_url": "https://comicvine.gamespot.com/sandstorm/4005-26528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9035/", + "id": 9035, + "name": "Sano Orii", + "site_detail_url": "https://comicvine.gamespot.com/sano-orii/4005-9035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92323/", + "id": 92323, + "name": "Santellio", + "site_detail_url": "https://comicvine.gamespot.com/santellio/4005-92323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45762/", + "id": 45762, + "name": "Sarah Stacy", + "site_detail_url": "https://comicvine.gamespot.com/sarah-stacy/4005-45762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63807/", + "id": 63807, + "name": "Sasha Kravinoff", + "site_detail_url": "https://comicvine.gamespot.com/sasha-kravinoff/4005-63807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57358/", + "id": 57358, + "name": "Satellite", + "site_detail_url": "https://comicvine.gamespot.com/satellite/4005-57358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3180/", + "id": 3180, + "name": "Sauron", + "site_detail_url": "https://comicvine.gamespot.com/sauron/4005-3180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56826/", + "id": 56826, + "name": "Savage Fin", + "site_detail_url": "https://comicvine.gamespot.com/savage-fin/4005-56826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9734/", + "id": 9734, + "name": "Scalphunter", + "site_detail_url": "https://comicvine.gamespot.com/scalphunter/4005-9734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3239/", + "id": 3239, + "name": "Scarecrow", + "site_detail_url": "https://comicvine.gamespot.com/scarecrow/4005-3239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46891/", + "id": 46891, + "name": "Scarlet Beetle", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-beetle/4005-46891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33953/", + "id": 33953, + "name": "Schizoid Man", + "site_detail_url": "https://comicvine.gamespot.com/schizoid-man/4005-33953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15312/", + "id": 15312, + "name": "Scorch", + "site_detail_url": "https://comicvine.gamespot.com/scorch/4005-15312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25579/", + "id": 25579, + "name": "Scorcher", + "site_detail_url": "https://comicvine.gamespot.com/scorcher/4005-25579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11540/", + "id": 11540, + "name": "Scorpia", + "site_detail_url": "https://comicvine.gamespot.com/scorpia/4005-11540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4484/", + "id": 4484, + "name": "Scorpion", + "site_detail_url": "https://comicvine.gamespot.com/scorpion/4005-4484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84021/", + "id": 84021, + "name": "Scorpion (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/scorpion-clone/4005-84021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14461/", + "id": 14461, + "name": "Scourge", + "site_detail_url": "https://comicvine.gamespot.com/scourge/4005-14461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9735/", + "id": 9735, + "name": "Scrambler", + "site_detail_url": "https://comicvine.gamespot.com/scrambler/4005-9735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21996/", + "id": 21996, + "name": "Scream", + "site_detail_url": "https://comicvine.gamespot.com/scream/4005-21996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16207/", + "id": 16207, + "name": "Screech", + "site_detail_url": "https://comicvine.gamespot.com/screech/4005-16207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54834/", + "id": 54834, + "name": "Screwball", + "site_detail_url": "https://comicvine.gamespot.com/screwball/4005-54834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64854/", + "id": 64854, + "name": "Scrier", + "site_detail_url": "https://comicvine.gamespot.com/scrier/4005-64854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2175/", + "id": 2175, + "name": "Sebastian Shaw", + "site_detail_url": "https://comicvine.gamespot.com/sebastian-shaw/4005-2175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171246/", + "id": 171246, + "name": "Selim", + "site_detail_url": "https://comicvine.gamespot.com/selim/4005-171246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18440/", + "id": 18440, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4005-18440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154955/", + "id": 154955, + "name": "Serpent", + "site_detail_url": "https://comicvine.gamespot.com/serpent/4005-154955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77671/", + "id": 77671, + "name": "Servicer", + "site_detail_url": "https://comicvine.gamespot.com/servicer/4005-77671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29092/", + "id": 29092, + "name": "Set", + "site_detail_url": "https://comicvine.gamespot.com/set/4005-29092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154854/", + "id": 154854, + "name": "Seth Youngblood", + "site_detail_url": "https://comicvine.gamespot.com/seth-youngblood/4005-154854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6289/", + "id": 6289, + "name": "Seward Trainer", + "site_detail_url": "https://comicvine.gamespot.com/seward-trainer/4005-6289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52940/", + "id": 52940, + "name": "Seymour O'Reilly", + "site_detail_url": "https://comicvine.gamespot.com/seymour-oreilly/4005-52940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154808/", + "id": 154808, + "name": "Seymour Simms", + "site_detail_url": "https://comicvine.gamespot.com/seymour-simms/4005-154808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17635/", + "id": 17635, + "name": "Sha Shan", + "site_detail_url": "https://comicvine.gamespot.com/sha-shan/4005-17635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11005/", + "id": 11005, + "name": "Shade", + "site_detail_url": "https://comicvine.gamespot.com/shade/4005-11005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13728/", + "id": 13728, + "name": "Shadrac", + "site_detail_url": "https://comicvine.gamespot.com/shadrac/4005-13728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123267/", + "id": 123267, + "name": "Shannon Stillwell", + "site_detail_url": "https://comicvine.gamespot.com/shannon-stillwell/4005-123267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41756/", + "id": 41756, + "name": "Shathra", + "site_detail_url": "https://comicvine.gamespot.com/shathra/4005-41756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76071/", + "id": 76071, + "name": "Shawna Tyron", + "site_detail_url": "https://comicvine.gamespot.com/shawna-tyron/4005-76071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174103/", + "id": 174103, + "name": "Shell", + "site_detail_url": "https://comicvine.gamespot.com/shell/4005-174103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171247/", + "id": 171247, + "name": "Shift", + "site_detail_url": "https://comicvine.gamespot.com/shift/4005-171247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9704/", + "id": 9704, + "name": "Shinobi Shaw", + "site_detail_url": "https://comicvine.gamespot.com/shinobi-shaw/4005-9704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30974/", + "id": 30974, + "name": "Shinsky", + "site_detail_url": "https://comicvine.gamespot.com/shinsky/4005-30974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143377/", + "id": 143377, + "name": "Shiva, The Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/shiva-the-destroyer/4005-143377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4825/", + "id": 4825, + "name": "Shocker", + "site_detail_url": "https://comicvine.gamespot.com/shocker/4005-4825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41331/", + "id": 41331, + "name": "Shockwave", + "site_detail_url": "https://comicvine.gamespot.com/shockwave/4005-41331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11951/", + "id": 11951, + "name": "Shotgun", + "site_detail_url": "https://comicvine.gamespot.com/shotgun/4005-11951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175647/", + "id": 175647, + "name": "Show-Stopper", + "site_detail_url": "https://comicvine.gamespot.com/show-stopper/4005-175647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15232/", + "id": 15232, + "name": "Shriek", + "site_detail_url": "https://comicvine.gamespot.com/shriek/4005-15232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14000/", + "id": 14000, + "name": "Shuma-Gorath", + "site_detail_url": "https://comicvine.gamespot.com/shuma-gorath/4005-14000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146950/", + "id": 146950, + "name": "SI'Ur'Boroth", + "site_detail_url": "https://comicvine.gamespot.com/siurboroth/4005-146950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13845/", + "id": 13845, + "name": "Sidewinder", + "site_detail_url": "https://comicvine.gamespot.com/sidewinder/4005-13845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58045/", + "id": 58045, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-58045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21560/", + "id": 21560, + "name": "Silver Dagger", + "site_detail_url": "https://comicvine.gamespot.com/silver-dagger/4005-21560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7608/", + "id": 7608, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable/4005-7608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3174/", + "id": 3174, + "name": "Silver Samurai", + "site_detail_url": "https://comicvine.gamespot.com/silver-samurai/4005-3174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2502/", + "id": 2502, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4005-2502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13846/", + "id": 13846, + "name": "Silvermane", + "site_detail_url": "https://comicvine.gamespot.com/silvermane/4005-13846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176160/", + "id": 176160, + "name": "Simon", + "site_detail_url": "https://comicvine.gamespot.com/simon/4005-176160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22687/", + "id": 22687, + "name": "Simon Steele", + "site_detail_url": "https://comicvine.gamespot.com/simon-steele/4005-22687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28057/", + "id": 28057, + "name": "Sin", + "site_detail_url": "https://comicvine.gamespot.com/sin/4005-28057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11206/", + "id": 11206, + "name": "Sin-Eater", + "site_detail_url": "https://comicvine.gamespot.com/sin-eater/4005-11206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152838/", + "id": 152838, + "name": "Sinister Six Skrull", + "site_detail_url": "https://comicvine.gamespot.com/sinister-six-skrull/4005-152838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51796/", + "id": 51796, + "name": "Sinister Soofi", + "site_detail_url": "https://comicvine.gamespot.com/sinister-soofi/4005-51796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23831/", + "id": 23831, + "name": "Sir", + "site_detail_url": "https://comicvine.gamespot.com/sir/4005-23831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166956/", + "id": 166956, + "name": "Skadi", + "site_detail_url": "https://comicvine.gamespot.com/skadi/4005-166956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32258/", + "id": 32258, + "name": "Skein", + "site_detail_url": "https://comicvine.gamespot.com/skein/4005-32258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29130/", + "id": 29130, + "name": "Skinhead", + "site_detail_url": "https://comicvine.gamespot.com/skinhead/4005-29130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73964/", + "id": 73964, + "name": "Skip Westcott", + "site_detail_url": "https://comicvine.gamespot.com/skip-westcott/4005-73964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167103/", + "id": 167103, + "name": "Skirn", + "site_detail_url": "https://comicvine.gamespot.com/skirn/4005-167103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94974/", + "id": 94974, + "name": "Skrull Santa", + "site_detail_url": "https://comicvine.gamespot.com/skrull-santa/4005-94974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60535/", + "id": 60535, + "name": "Skrull Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/skrull-spider-man/4005-60535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152647/", + "id": 152647, + "name": "Skull (Gleb)", + "site_detail_url": "https://comicvine.gamespot.com/skull-gleb/4005-152647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155511/", + "id": 155511, + "name": "Skull Punch", + "site_detail_url": "https://comicvine.gamespot.com/skull-punch/4005-155511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29211/", + "id": 29211, + "name": "Skullbuster", + "site_detail_url": "https://comicvine.gamespot.com/skullbuster/4005-29211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136272/", + "id": 136272, + "name": "Skyline Killer", + "site_detail_url": "https://comicvine.gamespot.com/skyline-killer/4005-136272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41836/", + "id": 41836, + "name": "Skywarp", + "site_detail_url": "https://comicvine.gamespot.com/skywarp/4005-41836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15785/", + "id": 15785, + "name": "Slab", + "site_detail_url": "https://comicvine.gamespot.com/slab/4005-15785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28208/", + "id": 28208, + "name": "Slambeaux", + "site_detail_url": "https://comicvine.gamespot.com/slambeaux/4005-28208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3230/", + "id": 3230, + "name": "Slug", + "site_detail_url": "https://comicvine.gamespot.com/slug/4005-3230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175659/", + "id": 175659, + "name": "Slum Lord", + "site_detail_url": "https://comicvine.gamespot.com/slum-lord/4005-175659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3780/", + "id": 3780, + "name": "Slyde", + "site_detail_url": "https://comicvine.gamespot.com/slyde/4005-3780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158491/", + "id": 158491, + "name": "Smash & Grab", + "site_detail_url": "https://comicvine.gamespot.com/smash-and-grab/4005-158491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154751/", + "id": 154751, + "name": "Smog Man", + "site_detail_url": "https://comicvine.gamespot.com/smog-man/4005-154751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52739/", + "id": 52739, + "name": "Smokescreen", + "site_detail_url": "https://comicvine.gamespot.com/smokescreen/4005-52739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78383/", + "id": 78383, + "name": "Snake Eyes", + "site_detail_url": "https://comicvine.gamespot.com/snake-eyes/4005-78383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24916/", + "id": 24916, + "name": "Snake Marston", + "site_detail_url": "https://comicvine.gamespot.com/snake-marston/4005-24916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16115/", + "id": 16115, + "name": "Snake Sanchus", + "site_detail_url": "https://comicvine.gamespot.com/snake-sanchus/4005-16115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46632/", + "id": 46632, + "name": "Snake Whip", + "site_detail_url": "https://comicvine.gamespot.com/snake-whip/4005-46632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16210/", + "id": 16210, + "name": "Sneak-Thief", + "site_detail_url": "https://comicvine.gamespot.com/sneak-thief/4005-16210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13849/", + "id": 13849, + "name": "Solarr", + "site_detail_url": "https://comicvine.gamespot.com/solarr/4005-13849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74164/", + "id": 74164, + "name": "Solomon Negus", + "site_detail_url": "https://comicvine.gamespot.com/solomon-negus/4005-74164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109280/", + "id": 109280, + "name": "Solus", + "site_detail_url": "https://comicvine.gamespot.com/solus/4005-109280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3281/", + "id": 3281, + "name": "Songbird", + "site_detail_url": "https://comicvine.gamespot.com/songbird/4005-3281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56697/", + "id": 56697, + "name": "Sonic", + "site_detail_url": "https://comicvine.gamespot.com/sonic/4005-56697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52937/", + "id": 52937, + "name": "Sorcerer", + "site_detail_url": "https://comicvine.gamespot.com/sorcerer/4005-52937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28315/", + "id": 28315, + "name": "Spark", + "site_detail_url": "https://comicvine.gamespot.com/spark/4005-28315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70258/", + "id": 70258, + "name": "Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/spectrum/4005-70258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2128/", + "id": 2128, + "name": "Speed Demon", + "site_detail_url": "https://comicvine.gamespot.com/speed-demon/4005-2128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17632/", + "id": 17632, + "name": "Spencer Smythe", + "site_detail_url": "https://comicvine.gamespot.com/spencer-smythe/4005-17632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2125/", + "id": 2125, + "name": "Sphinx", + "site_detail_url": "https://comicvine.gamespot.com/sphinx/4005-2125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153689/", + "id": 153689, + "name": "Spider-Amoeba", + "site_detail_url": "https://comicvine.gamespot.com/spider-amoeba/4005-153689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136156/", + "id": 136156, + "name": "Spider-Hybrid", + "site_detail_url": "https://comicvine.gamespot.com/spider-hybrid/4005-136156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55771/", + "id": 55771, + "name": "Spider-Man Robot", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-robot/4005-55771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50218/", + "id": 50218, + "name": "Spider-Mugger", + "site_detail_url": "https://comicvine.gamespot.com/spider-mugger/4005-50218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46174/", + "id": 46174, + "name": "Spider-X", + "site_detail_url": "https://comicvine.gamespot.com/spider-x/4005-46174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25666/", + "id": 25666, + "name": "Spidercide", + "site_detail_url": "https://comicvine.gamespot.com/spidercide/4005-25666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16211/", + "id": 16211, + "name": "Spoiler", + "site_detail_url": "https://comicvine.gamespot.com/spoiler/4005-16211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175605/", + "id": 175605, + "name": "Spoiler", + "site_detail_url": "https://comicvine.gamespot.com/spoiler/4005-175605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18270/", + "id": 18270, + "name": "Spot", + "site_detail_url": "https://comicvine.gamespot.com/spot/4005-18270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23023/", + "id": 23023, + "name": "Spyral", + "site_detail_url": "https://comicvine.gamespot.com/spyral/4005-23023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17624/", + "id": 17624, + "name": "Squid", + "site_detail_url": "https://comicvine.gamespot.com/squid/4005-17624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128770/", + "id": 128770, + "name": "Squish the Sogmaster", + "site_detail_url": "https://comicvine.gamespot.com/squish-the-sogmaster/4005-128770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60477/", + "id": 60477, + "name": "Stag Beetle", + "site_detail_url": "https://comicvine.gamespot.com/stag-beetle/4005-60477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136259/", + "id": 136259, + "name": "Stalker", + "site_detail_url": "https://comicvine.gamespot.com/stalker/4005-136259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157233/", + "id": 157233, + "name": "Star", + "site_detail_url": "https://comicvine.gamespot.com/star/4005-157233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153113/", + "id": 153113, + "name": "Stark Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/stark-sentinel/4005-153113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113759/", + "id": 113759, + "name": "Status Quo", + "site_detail_url": "https://comicvine.gamespot.com/status-quo/4005-113759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21195/", + "id": 21195, + "name": "Steel Serpent", + "site_detail_url": "https://comicvine.gamespot.com/steel-serpent/4005-21195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7776/", + "id": 7776, + "name": "Stegron", + "site_detail_url": "https://comicvine.gamespot.com/stegron/4005-7776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101694/", + "id": 101694, + "name": "Stewart", + "site_detail_url": "https://comicvine.gamespot.com/stewart/4005-101694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13727/", + "id": 13727, + "name": "Stewart Ward", + "site_detail_url": "https://comicvine.gamespot.com/stewart-ward/4005-13727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2129/", + "id": 2129, + "name": "Stiletto", + "site_detail_url": "https://comicvine.gamespot.com/stiletto/4005-2129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2474/", + "id": 2474, + "name": "Stilt-Man", + "site_detail_url": "https://comicvine.gamespot.com/stilt-man/4005-2474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11016/", + "id": 11016, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-11016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52944/", + "id": 52944, + "name": "Stone-Face", + "site_detail_url": "https://comicvine.gamespot.com/stone-face/4005-52944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13721/", + "id": 13721, + "name": "Stonecutter", + "site_detail_url": "https://comicvine.gamespot.com/stonecutter/4005-13721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13332/", + "id": 13332, + "name": "Stranger", + "site_detail_url": "https://comicvine.gamespot.com/stranger/4005-13332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41532/", + "id": 41532, + "name": "Street", + "site_detail_url": "https://comicvine.gamespot.com/street/4005-41532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14046/", + "id": 14046, + "name": "Strikeback", + "site_detail_url": "https://comicvine.gamespot.com/strikeback/4005-14046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154783/", + "id": 154783, + "name": "Strongman ", + "site_detail_url": "https://comicvine.gamespot.com/strongman/4005-154783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32601/", + "id": 32601, + "name": "Strongman", + "site_detail_url": "https://comicvine.gamespot.com/strongman/4005-32601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154267/", + "id": 154267, + "name": "Stu", + "site_detail_url": "https://comicvine.gamespot.com/stu/4005-154267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11116/", + "id": 11116, + "name": "Stunner", + "site_detail_url": "https://comicvine.gamespot.com/stunner/4005-11116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16212/", + "id": 16212, + "name": "Styx", + "site_detail_url": "https://comicvine.gamespot.com/styx/4005-16212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68916/", + "id": 68916, + "name": "Sugar Face", + "site_detail_url": "https://comicvine.gamespot.com/sugar-face/4005-68916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143023/", + "id": 143023, + "name": "Sultan", + "site_detail_url": "https://comicvine.gamespot.com/sultan/4005-143023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41281/", + "id": 41281, + "name": "Sundown", + "site_detail_url": "https://comicvine.gamespot.com/sundown/4005-41281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11527/", + "id": 11527, + "name": "Sunset Bain", + "site_detail_url": "https://comicvine.gamespot.com/sunset-bain/4005-11527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28509/", + "id": 28509, + "name": "Sunturion", + "site_detail_url": "https://comicvine.gamespot.com/sunturion/4005-28509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10861/", + "id": 10861, + "name": "Super-Adaptoid", + "site_detail_url": "https://comicvine.gamespot.com/super-adaptoid/4005-10861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21332/", + "id": 21332, + "name": "Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/super-skrull/4005-21332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41244/", + "id": 41244, + "name": "Supercharger", + "site_detail_url": "https://comicvine.gamespot.com/supercharger/4005-41244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25690/", + "id": 25690, + "name": "Superia", + "site_detail_url": "https://comicvine.gamespot.com/superia/4005-25690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27644/", + "id": 27644, + "name": "Surgeon General", + "site_detail_url": "https://comicvine.gamespot.com/surgeon-general/4005-27644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55858/", + "id": 55858, + "name": "Surrender Monkey", + "site_detail_url": "https://comicvine.gamespot.com/surrender-monkey/4005-55858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1945/", + "id": 1945, + "name": "Swarm", + "site_detail_url": "https://comicvine.gamespot.com/swarm/4005-1945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27512/", + "id": 27512, + "name": "Swift", + "site_detail_url": "https://comicvine.gamespot.com/swift/4005-27512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101695/", + "id": 101695, + "name": "Sylvia Grace", + "site_detail_url": "https://comicvine.gamespot.com/sylvia-grace/4005-101695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136327/", + "id": 136327, + "name": "Synario", + "site_detail_url": "https://comicvine.gamespot.com/synario/4005-136327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29014/", + "id": 29014, + "name": "T.E.S.S.-One", + "site_detail_url": "https://comicvine.gamespot.com/tess-one/4005-29014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74821/", + "id": 74821, + "name": "Tactical Force", + "site_detail_url": "https://comicvine.gamespot.com/tactical-force/4005-74821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88159/", + "id": 88159, + "name": "Talia", + "site_detail_url": "https://comicvine.gamespot.com/talia/4005-88159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26280/", + "id": 26280, + "name": "Talos", + "site_detail_url": "https://comicvine.gamespot.com/talos/4005-26280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62354/", + "id": 62354, + "name": "Tangler", + "site_detail_url": "https://comicvine.gamespot.com/tangler/4005-62354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58389/", + "id": 58389, + "name": "Tara", + "site_detail_url": "https://comicvine.gamespot.com/tara/4005-58389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1528/", + "id": 1528, + "name": "Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/tarantula/4005-1528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80466/", + "id": 80466, + "name": "Tarantula (Alvarez)", + "site_detail_url": "https://comicvine.gamespot.com/tarantula-alvarez/4005-80466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2140/", + "id": 2140, + "name": "Tarot", + "site_detail_url": "https://comicvine.gamespot.com/tarot/4005-2140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4578/", + "id": 4578, + "name": "Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster/4005-4578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13821/", + "id": 13821, + "name": "Tatterdemalion", + "site_detail_url": "https://comicvine.gamespot.com/tatterdemalion/4005-13821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87493/", + "id": 87493, + "name": "Tazer", + "site_detail_url": "https://comicvine.gamespot.com/tazer/4005-87493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29754/", + "id": 29754, + "name": "Teacher", + "site_detail_url": "https://comicvine.gamespot.com/teacher/4005-29754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42147/", + "id": 42147, + "name": "Teena", + "site_detail_url": "https://comicvine.gamespot.com/teena/4005-42147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42192/", + "id": 42192, + "name": "Tempest", + "site_detail_url": "https://comicvine.gamespot.com/tempest/4005-42192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4260/", + "id": 4260, + "name": "Temujin", + "site_detail_url": "https://comicvine.gamespot.com/temujin/4005-4260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30315/", + "id": 30315, + "name": "Tendril", + "site_detail_url": "https://comicvine.gamespot.com/tendril/4005-30315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14542/", + "id": 14542, + "name": "Terminus", + "site_detail_url": "https://comicvine.gamespot.com/terminus/4005-14542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2106/", + "id": 2106, + "name": "Terrax", + "site_detail_url": "https://comicvine.gamespot.com/terrax/4005-2106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28004/", + "id": 28004, + "name": "Terraxia", + "site_detail_url": "https://comicvine.gamespot.com/terraxia/4005-28004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136312/", + "id": 136312, + "name": "Terrier", + "site_detail_url": "https://comicvine.gamespot.com/terrier/4005-136312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151988/", + "id": 151988, + "name": "Terrier", + "site_detail_url": "https://comicvine.gamespot.com/terrier/4005-151988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101689/", + "id": 101689, + "name": "Terry Burns", + "site_detail_url": "https://comicvine.gamespot.com/terry-burns/4005-101689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147441/", + "id": 147441, + "name": "Tess", + "site_detail_url": "https://comicvine.gamespot.com/tess/4005-147441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7607/", + "id": 7607, + "name": "Thanos", + "site_detail_url": "https://comicvine.gamespot.com/thanos/4005-7607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7779/", + "id": 7779, + "name": "The Answer", + "site_detail_url": "https://comicvine.gamespot.com/the-answer/4005-7779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142477/", + "id": 142477, + "name": "The Author", + "site_detail_url": "https://comicvine.gamespot.com/the-author/4005-142477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61555/", + "id": 61555, + "name": "The Beast", + "site_detail_url": "https://comicvine.gamespot.com/the-beast/4005-61555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31573/", + "id": 31573, + "name": "The Blank", + "site_detail_url": "https://comicvine.gamespot.com/the-blank/4005-31573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55733/", + "id": 55733, + "name": "The Bookie", + "site_detail_url": "https://comicvine.gamespot.com/the-bookie/4005-55733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175704/", + "id": 175704, + "name": "The Brace", + "site_detail_url": "https://comicvine.gamespot.com/the-brace/4005-175704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35370/", + "id": 35370, + "name": "The Brute", + "site_detail_url": "https://comicvine.gamespot.com/the-brute/4005-35370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62892/", + "id": 62892, + "name": "The Bum", + "site_detail_url": "https://comicvine.gamespot.com/the-bum/4005-62892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15279/", + "id": 15279, + "name": "The Burglar", + "site_detail_url": "https://comicvine.gamespot.com/the-burglar/4005-15279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31141/", + "id": 31141, + "name": "The Chief Examiner", + "site_detail_url": "https://comicvine.gamespot.com/the-chief-examiner/4005-31141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138977/", + "id": 138977, + "name": "The Countess", + "site_detail_url": "https://comicvine.gamespot.com/the-countess/4005-138977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35147/", + "id": 35147, + "name": "The Empathoid", + "site_detail_url": "https://comicvine.gamespot.com/the-empathoid/4005-35147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35281/", + "id": 35281, + "name": "The Foe", + "site_detail_url": "https://comicvine.gamespot.com/the-foe/4005-35281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14489/", + "id": 14489, + "name": "The Fury", + "site_detail_url": "https://comicvine.gamespot.com/the-fury/4005-14489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115606/", + "id": 115606, + "name": "The Gentleman", + "site_detail_url": "https://comicvine.gamespot.com/the-gentleman/4005-115606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82746/", + "id": 82746, + "name": "The Gray-Green Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-gray-green-celestial/4005-82746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84710/", + "id": 84710, + "name": "The Guardian", + "site_detail_url": "https://comicvine.gamespot.com/the-guardian/4005-84710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41917/", + "id": 41917, + "name": "The Hood", + "site_detail_url": "https://comicvine.gamespot.com/the-hood/4005-41917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175664/", + "id": 175664, + "name": "The Inventor", + "site_detail_url": "https://comicvine.gamespot.com/the-inventor/4005-175664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59172/", + "id": 59172, + "name": "The Marquis of Death", + "site_detail_url": "https://comicvine.gamespot.com/the-marquis-of-death/4005-59172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34240/", + "id": 34240, + "name": "The Monocle", + "site_detail_url": "https://comicvine.gamespot.com/the-monocle/4005-34240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69443/", + "id": 69443, + "name": "The Occultist", + "site_detail_url": "https://comicvine.gamespot.com/the-occultist/4005-69443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175655/", + "id": 175655, + "name": "The Prankster", + "site_detail_url": "https://comicvine.gamespot.com/the-prankster/4005-175655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98159/", + "id": 98159, + "name": "The Pro", + "site_detail_url": "https://comicvine.gamespot.com/the-pro/4005-98159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158865/", + "id": 158865, + "name": "The Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/the-prodigy/4005-158865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82672/", + "id": 82672, + "name": "The Purple-Blue Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-purple-blue-celestial/4005-82672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14570/", + "id": 14570, + "name": "The Rose", + "site_detail_url": "https://comicvine.gamespot.com/the-rose/4005-14570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80579/", + "id": 80579, + "name": "The Rose (Blume)", + "site_detail_url": "https://comicvine.gamespot.com/the-rose-blume/4005-80579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58537/", + "id": 58537, + "name": "The Rose (Hayes)", + "site_detail_url": "https://comicvine.gamespot.com/the-rose-hayes/4005-58537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50991/", + "id": 50991, + "name": "The Shaker", + "site_detail_url": "https://comicvine.gamespot.com/the-shaker/4005-50991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25027/", + "id": 25027, + "name": "The Shooter", + "site_detail_url": "https://comicvine.gamespot.com/the-shooter/4005-25027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175649/", + "id": 175649, + "name": "The Sitter", + "site_detail_url": "https://comicvine.gamespot.com/the-sitter/4005-175649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15445/", + "id": 15445, + "name": "The Smasher", + "site_detail_url": "https://comicvine.gamespot.com/the-smasher/4005-15445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175653/", + "id": 175653, + "name": "The Stomper", + "site_detail_url": "https://comicvine.gamespot.com/the-stomper/4005-175653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18611/", + "id": 18611, + "name": "The Thousand", + "site_detail_url": "https://comicvine.gamespot.com/the-thousand/4005-18611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175600/", + "id": 175600, + "name": "The Thumper", + "site_detail_url": "https://comicvine.gamespot.com/the-thumper/4005-175600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83137/", + "id": 83137, + "name": "The Undertaker", + "site_detail_url": "https://comicvine.gamespot.com/the-undertaker/4005-83137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175656/", + "id": 175656, + "name": "The Uninvited", + "site_detail_url": "https://comicvine.gamespot.com/the-uninvited/4005-175656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51047/", + "id": 51047, + "name": "The Virus", + "site_detail_url": "https://comicvine.gamespot.com/the-virus/4005-51047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154752/", + "id": 154752, + "name": "The Wall", + "site_detail_url": "https://comicvine.gamespot.com/the-wall/4005-154752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46950/", + "id": 46950, + "name": "Therak", + "site_detail_url": "https://comicvine.gamespot.com/therak/4005-46950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44819/", + "id": 44819, + "name": "Thermite", + "site_detail_url": "https://comicvine.gamespot.com/thermite/4005-44819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15415/", + "id": 15415, + "name": "Thermo", + "site_detail_url": "https://comicvine.gamespot.com/thermo/4005-15415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63761/", + "id": 63761, + "name": "Thomas Agar", + "site_detail_url": "https://comicvine.gamespot.com/thomas-agar/4005-63761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161065/", + "id": 161065, + "name": "Thread", + "site_detail_url": "https://comicvine.gamespot.com/thread/4005-161065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2253/", + "id": 2253, + "name": "Thunderball", + "site_detail_url": "https://comicvine.gamespot.com/thunderball/4005-2253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41837/", + "id": 41837, + "name": "Thundercracker", + "site_detail_url": "https://comicvine.gamespot.com/thundercracker/4005-41837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175648/", + "id": 175648, + "name": "Tickler", + "site_detail_url": "https://comicvine.gamespot.com/tickler/4005-175648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6815/", + "id": 6815, + "name": "Tiger Shark", + "site_detail_url": "https://comicvine.gamespot.com/tiger-shark/4005-6815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153839/", + "id": 153839, + "name": "Tiger Shark (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/tiger-shark-hobgoblin/4005-153839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3144/", + "id": 3144, + "name": "Tinkerer", + "site_detail_url": "https://comicvine.gamespot.com/tinkerer/4005-3144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27389/", + "id": 27389, + "name": "Tisiphone", + "site_detail_url": "https://comicvine.gamespot.com/tisiphone/4005-27389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4943/", + "id": 4943, + "name": "Titania", + "site_detail_url": "https://comicvine.gamespot.com/titania/4005-4943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13823/", + "id": 13823, + "name": "Titanium Man", + "site_detail_url": "https://comicvine.gamespot.com/titanium-man/4005-13823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43275/", + "id": 43275, + "name": "Titannus", + "site_detail_url": "https://comicvine.gamespot.com/titannus/4005-43275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1470/", + "id": 1470, + "name": "Toad", + "site_detail_url": "https://comicvine.gamespot.com/toad/4005-1470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13730/", + "id": 13730, + "name": "Tokkots", + "site_detail_url": "https://comicvine.gamespot.com/tokkots/4005-13730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18609/", + "id": 18609, + "name": "Tom Cochrane", + "site_detail_url": "https://comicvine.gamespot.com/tom-cochrane/4005-18609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3161/", + "id": 3161, + "name": "Tombstone", + "site_detail_url": "https://comicvine.gamespot.com/tombstone/4005-3161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129164/", + "id": 129164, + "name": "Tomoe", + "site_detail_url": "https://comicvine.gamespot.com/tomoe/4005-129164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140641/", + "id": 140641, + "name": "Tordenkakerlakk", + "site_detail_url": "https://comicvine.gamespot.com/tordenkakerlakk/4005-140641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74558/", + "id": 74558, + "name": "Toxic Doxie", + "site_detail_url": "https://comicvine.gamespot.com/toxic-doxie/4005-74558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33412/", + "id": 33412, + "name": "Toy", + "site_detail_url": "https://comicvine.gamespot.com/toy/4005-33412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175662/", + "id": 175662, + "name": "Toymaker", + "site_detail_url": "https://comicvine.gamespot.com/toymaker/4005-175662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43579/", + "id": 43579, + "name": "Tracer", + "site_detail_url": "https://comicvine.gamespot.com/tracer/4005-43579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62041/", + "id": 62041, + "name": "Tran Coy Manh", + "site_detail_url": "https://comicvine.gamespot.com/tran-coy-manh/4005-62041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154031/", + "id": 154031, + "name": "Tranq", + "site_detail_url": "https://comicvine.gamespot.com/tranq/4005-154031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4328/", + "id": 4328, + "name": "Trapster", + "site_detail_url": "https://comicvine.gamespot.com/trapster/4005-4328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140316/", + "id": 140316, + "name": "Trapster", + "site_detail_url": "https://comicvine.gamespot.com/trapster/4005-140316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34346/", + "id": 34346, + "name": "Tri-Man", + "site_detail_url": "https://comicvine.gamespot.com/tri-man/4005-34346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28982/", + "id": 28982, + "name": "Tri-Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/tri-sentinel/4005-28982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70149/", + "id": 70149, + "name": "Trickshot", + "site_detail_url": "https://comicvine.gamespot.com/trickshot/4005-70149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136157/", + "id": 136157, + "name": "Troglodyte", + "site_detail_url": "https://comicvine.gamespot.com/troglodyte/4005-136157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14784/", + "id": 14784, + "name": "Troll", + "site_detail_url": "https://comicvine.gamespot.com/troll/4005-14784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136155/", + "id": 136155, + "name": "Trout", + "site_detail_url": "https://comicvine.gamespot.com/trout/4005-136155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154781/", + "id": 154781, + "name": "Tumbler", + "site_detail_url": "https://comicvine.gamespot.com/tumbler/4005-154781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9039/", + "id": 9039, + "name": "Turk", + "site_detail_url": "https://comicvine.gamespot.com/turk/4005-9039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14448/", + "id": 14448, + "name": "Turner D. Century", + "site_detail_url": "https://comicvine.gamespot.com/turner-d-century/4005-14448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60482/", + "id": 60482, + "name": "Turulla", + "site_detail_url": "https://comicvine.gamespot.com/turulla/4005-60482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52869/", + "id": 52869, + "name": "Twin Terror", + "site_detail_url": "https://comicvine.gamespot.com/twin-terror/4005-52869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28210/", + "id": 28210, + "name": "Twit", + "site_detail_url": "https://comicvine.gamespot.com/twit/4005-28210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40637/", + "id": 40637, + "name": "Typeface", + "site_detail_url": "https://comicvine.gamespot.com/typeface/4005-40637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1536/", + "id": 1536, + "name": "Typhoid Mary", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-mary/4005-1536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35975/", + "id": 35975, + "name": "Typhon", + "site_detail_url": "https://comicvine.gamespot.com/typhon/4005-35975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3468/", + "id": 3468, + "name": "Tyrannus", + "site_detail_url": "https://comicvine.gamespot.com/tyrannus/4005-3468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14992/", + "id": 14992, + "name": "U.S.Agent", + "site_detail_url": "https://comicvine.gamespot.com/usagent/4005-14992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52947/", + "id": 52947, + "name": "Uber-Machine", + "site_detail_url": "https://comicvine.gamespot.com/uber-machine/4005-52947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173709/", + "id": 173709, + "name": "Ultimatum ", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum/4005-173709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2242/", + "id": 2242, + "name": "Ultron", + "site_detail_url": "https://comicvine.gamespot.com/ultron/4005-2242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41916/", + "id": 41916, + "name": "Underworld", + "site_detail_url": "https://comicvine.gamespot.com/underworld/4005-41916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3438/", + "id": 3438, + "name": "Unus the Untouchable", + "site_detail_url": "https://comicvine.gamespot.com/unus-the-untouchable/4005-3438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57359/", + "id": 57359, + "name": "Vacuum", + "site_detail_url": "https://comicvine.gamespot.com/vacuum/4005-57359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60512/", + "id": 60512, + "name": "Vampiro", + "site_detail_url": "https://comicvine.gamespot.com/vampiro/4005-60512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10058/", + "id": 10058, + "name": "Vanessa Fisk", + "site_detail_url": "https://comicvine.gamespot.com/vanessa-fisk/4005-10058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13804/", + "id": 13804, + "name": "Vanguard", + "site_detail_url": "https://comicvine.gamespot.com/vanguard/4005-13804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6756/", + "id": 6756, + "name": "Vanisher", + "site_detail_url": "https://comicvine.gamespot.com/vanisher/4005-6756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6790/", + "id": 6790, + "name": "Vapor", + "site_detail_url": "https://comicvine.gamespot.com/vapor/4005-6790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6820/", + "id": 6820, + "name": "Vector", + "site_detail_url": "https://comicvine.gamespot.com/vector/4005-6820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1486/", + "id": 1486, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4005-1486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155181/", + "id": 155181, + "name": "Venom Ninja", + "site_detail_url": "https://comicvine.gamespot.com/venom-ninja/4005-155181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54514/", + "id": 54514, + "name": "Veranke", + "site_detail_url": "https://comicvine.gamespot.com/veranke/4005-54514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6818/", + "id": 6818, + "name": "Vermin", + "site_detail_url": "https://comicvine.gamespot.com/vermin/4005-6818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108085/", + "id": 108085, + "name": "Verna", + "site_detail_url": "https://comicvine.gamespot.com/verna/4005-108085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87609/", + "id": 87609, + "name": "Vernon Fury", + "site_detail_url": "https://comicvine.gamespot.com/vernon-fury/4005-87609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3561/", + "id": 3561, + "name": "Vertigo", + "site_detail_url": "https://comicvine.gamespot.com/vertigo/4005-3561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45526/", + "id": 45526, + "name": "Vic Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/vic-slaughter/4005-45526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154956/", + "id": 154956, + "name": "Victor Octavius", + "site_detail_url": "https://comicvine.gamespot.com/victor-octavius/4005-154956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53529/", + "id": 53529, + "name": "Videoman", + "site_detail_url": "https://comicvine.gamespot.com/videoman/4005-53529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3420/", + "id": 3420, + "name": "Viper", + "site_detail_url": "https://comicvine.gamespot.com/viper/4005-3420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5037/", + "id": 5037, + "name": "Virgo", + "site_detail_url": "https://comicvine.gamespot.com/virgo/4005-5037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143376/", + "id": 143376, + "name": "Vishnu, The Preserver", + "site_detail_url": "https://comicvine.gamespot.com/vishnu-the-preserver/4005-143376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74954/", + "id": 74954, + "name": "Vlad the Impaler", + "site_detail_url": "https://comicvine.gamespot.com/vlad-the-impaler/4005-74954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14536/", + "id": 14536, + "name": "Volcana", + "site_detail_url": "https://comicvine.gamespot.com/volcana/4005-14536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4459/", + "id": 4459, + "name": "Vulture", + "site_detail_url": "https://comicvine.gamespot.com/vulture/4005-4459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62054/", + "id": 62054, + "name": "Vulture (Drago)", + "site_detail_url": "https://comicvine.gamespot.com/vulture-drago/4005-62054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77250/", + "id": 77250, + "name": "Vulture (Shallot)", + "site_detail_url": "https://comicvine.gamespot.com/vulture-shallot/4005-77250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46945/", + "id": 46945, + "name": "Vulture 2099", + "site_detail_url": "https://comicvine.gamespot.com/vulture-2099/4005-46945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55860/", + "id": 55860, + "name": "Wall", + "site_detail_url": "https://comicvine.gamespot.com/wall/4005-55860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154748/", + "id": 154748, + "name": "Wallflower", + "site_detail_url": "https://comicvine.gamespot.com/wallflower/4005-154748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15282/", + "id": 15282, + "name": "Walrus", + "site_detail_url": "https://comicvine.gamespot.com/walrus/4005-15282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43751/", + "id": 43751, + "name": "Walter Declun", + "site_detail_url": "https://comicvine.gamespot.com/walter-declun/4005-43751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27513/", + "id": 27513, + "name": "Warfare", + "site_detail_url": "https://comicvine.gamespot.com/warfare/4005-27513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7506/", + "id": 7506, + "name": "Warrant", + "site_detail_url": "https://comicvine.gamespot.com/warrant/4005-7506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150759/", + "id": 150759, + "name": "Warrior Woman", + "site_detail_url": "https://comicvine.gamespot.com/warrior-woman/4005-150759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15254/", + "id": 15254, + "name": "Warzone", + "site_detail_url": "https://comicvine.gamespot.com/warzone/4005-15254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46638/", + "id": 46638, + "name": "Water Witch", + "site_detail_url": "https://comicvine.gamespot.com/water-witch/4005-46638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23004/", + "id": 23004, + "name": "Web-Man", + "site_detail_url": "https://comicvine.gamespot.com/web-man/4005-23004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136117/", + "id": 136117, + "name": "Webber", + "site_detail_url": "https://comicvine.gamespot.com/webber/4005-136117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154753/", + "id": 154753, + "name": "Webby-Two", + "site_detail_url": "https://comicvine.gamespot.com/webby-two/4005-154753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13313/", + "id": 13313, + "name": "Wendigo", + "site_detail_url": "https://comicvine.gamespot.com/wendigo/4005-13313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4984/", + "id": 4984, + "name": "Werewolf By Night", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night/4005-4984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12709/", + "id": 12709, + "name": "Whiplash (Scarlotti)", + "site_detail_url": "https://comicvine.gamespot.com/whiplash-scarlotti/4005-12709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19835/", + "id": 19835, + "name": "Whiplash (Vanko)", + "site_detail_url": "https://comicvine.gamespot.com/whiplash-vanko/4005-19835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6828/", + "id": 6828, + "name": "Whirlwind", + "site_detail_url": "https://comicvine.gamespot.com/whirlwind/4005-6828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27567/", + "id": 27567, + "name": "Whisper", + "site_detail_url": "https://comicvine.gamespot.com/whisper/4005-27567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154809/", + "id": 154809, + "name": "Whisperer", + "site_detail_url": "https://comicvine.gamespot.com/whisperer/4005-154809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27884/", + "id": 27884, + "name": "White Dragon", + "site_detail_url": "https://comicvine.gamespot.com/white-dragon/4005-27884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52948/", + "id": 52948, + "name": "White Ninja", + "site_detail_url": "https://comicvine.gamespot.com/white-ninja/4005-52948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15281/", + "id": 15281, + "name": "White Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/white-rabbit/4005-15281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26180/", + "id": 26180, + "name": "Whiteout", + "site_detail_url": "https://comicvine.gamespot.com/whiteout/4005-26180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15245/", + "id": 15245, + "name": "Wild Whip", + "site_detail_url": "https://comicvine.gamespot.com/wild-whip/4005-15245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20024/", + "id": 20024, + "name": "Wildstreak", + "site_detail_url": "https://comicvine.gamespot.com/wildstreak/4005-20024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15406/", + "id": 15406, + "name": "Will o' the Wisp", + "site_detail_url": "https://comicvine.gamespot.com/will-o-the-wisp/4005-15406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154856/", + "id": 154856, + "name": "William", + "site_detail_url": "https://comicvine.gamespot.com/william/4005-154856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70676/", + "id": 70676, + "name": "William Nguyen", + "site_detail_url": "https://comicvine.gamespot.com/william-nguyen/4005-70676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29338/", + "id": 29338, + "name": "Winston Shepherd", + "site_detail_url": "https://comicvine.gamespot.com/winston-shepherd/4005-29338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154858/", + "id": 154858, + "name": "Winston Walker", + "site_detail_url": "https://comicvine.gamespot.com/winston-walker/4005-154858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3287/", + "id": 3287, + "name": "Wizard", + "site_detail_url": "https://comicvine.gamespot.com/wizard/4005-3287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150968/", + "id": 150968, + "name": "Wolverine Clone", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-clone/4005-150968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1465/", + "id": 1465, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4005-1465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14517/", + "id": 14517, + "name": "Woodgod", + "site_detail_url": "https://comicvine.gamespot.com/woodgod/4005-14517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26179/", + "id": 26179, + "name": "Worm", + "site_detail_url": "https://comicvine.gamespot.com/worm/4005-26179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2252/", + "id": 2252, + "name": "Wrecker", + "site_detail_url": "https://comicvine.gamespot.com/wrecker/4005-2252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74071/", + "id": 74071, + "name": "X", + "site_detail_url": "https://comicvine.gamespot.com/x/4005-74071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6822/", + "id": 6822, + "name": "X-Ray", + "site_detail_url": "https://comicvine.gamespot.com/x-ray/4005-6822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13502/", + "id": 13502, + "name": "Xandu", + "site_detail_url": "https://comicvine.gamespot.com/xandu/4005-13502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30416/", + "id": 30416, + "name": "Xanja", + "site_detail_url": "https://comicvine.gamespot.com/xanja/4005-30416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52800/", + "id": 52800, + "name": "XP-2000", + "site_detail_url": "https://comicvine.gamespot.com/xp-2000/4005-52800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60373/", + "id": 60373, + "name": "Xraven", + "site_detail_url": "https://comicvine.gamespot.com/xraven/4005-60373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15388/", + "id": 15388, + "name": "Yama Dharma", + "site_detail_url": "https://comicvine.gamespot.com/yama-dharma/4005-15388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11366/", + "id": 11366, + "name": "Yandroth", + "site_detail_url": "https://comicvine.gamespot.com/yandroth/4005-11366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15654/", + "id": 15654, + "name": "Yano", + "site_detail_url": "https://comicvine.gamespot.com/yano/4005-15654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19397/", + "id": 19397, + "name": "Yelena Belova", + "site_detail_url": "https://comicvine.gamespot.com/yelena-belova/4005-19397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14525/", + "id": 14525, + "name": "Yellow Claw", + "site_detail_url": "https://comicvine.gamespot.com/yellow-claw/4005-14525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175652/", + "id": 175652, + "name": "Yeti", + "site_detail_url": "https://comicvine.gamespot.com/yeti/4005-175652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11531/", + "id": 11531, + "name": "Yith", + "site_detail_url": "https://comicvine.gamespot.com/yith/4005-11531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10267/", + "id": 10267, + "name": "Ymir", + "site_detail_url": "https://comicvine.gamespot.com/ymir/4005-10267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59208/", + "id": 59208, + "name": "Zabo", + "site_detail_url": "https://comicvine.gamespot.com/zabo/4005-59208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13994/", + "id": 13994, + "name": "Zarathos", + "site_detail_url": "https://comicvine.gamespot.com/zarathos/4005-13994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9479/", + "id": 9479, + "name": "Zarrko the Tomorrow Man", + "site_detail_url": "https://comicvine.gamespot.com/zarrko-the-tomorrow-man/4005-9479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54083/", + "id": 54083, + "name": "Zeitgeist", + "site_detail_url": "https://comicvine.gamespot.com/zeitgeist/4005-54083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131667/", + "id": 131667, + "name": "Zhang", + "site_detail_url": "https://comicvine.gamespot.com/zhang/4005-131667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13812/", + "id": 13812, + "name": "Zzzax", + "site_detail_url": "https://comicvine.gamespot.com/zzzax/4005-13812/" + } + ], + "character_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85093/", + "id": 85093, + "name": "'Spinner", + "site_detail_url": "https://comicvine.gamespot.com/spinner/4005-85093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3322/", + "id": 3322, + "name": "3-D Man (Garrett, Jr.)", + "site_detail_url": "https://comicvine.gamespot.com/3-d-man-garrett-jr/4005-3322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7261/", + "id": 7261, + "name": "Aarkus", + "site_detail_url": "https://comicvine.gamespot.com/aarkus/4005-7261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27268/", + "id": 27268, + "name": "Abe Brown", + "site_detail_url": "https://comicvine.gamespot.com/abe-brown/4005-27268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4822/", + "id": 4822, + "name": "Abe Jenkins", + "site_detail_url": "https://comicvine.gamespot.com/abe-jenkins/4005-4822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4441/", + "id": 4441, + "name": "Abigail Brand", + "site_detail_url": "https://comicvine.gamespot.com/abigail-brand/4005-4441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39241/", + "id": 39241, + "name": "Abraham Whistler", + "site_detail_url": "https://comicvine.gamespot.com/abraham-whistler/4005-39241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86673/", + "id": 86673, + "name": "Abyss", + "site_detail_url": "https://comicvine.gamespot.com/abyss/4005-86673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24384/", + "id": 24384, + "name": "Access", + "site_detail_url": "https://comicvine.gamespot.com/access/4005-24384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44830/", + "id": 44830, + "name": "Ace Spencer", + "site_detail_url": "https://comicvine.gamespot.com/ace-spencer/4005-44830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58954/", + "id": 58954, + "name": "Adam K'ad-Mon", + "site_detail_url": "https://comicvine.gamespot.com/adam-kad-mon/4005-58954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6805/", + "id": 6805, + "name": "Adam Warlock", + "site_detail_url": "https://comicvine.gamespot.com/adam-warlock/4005-6805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51085/", + "id": 51085, + "name": "Agent Smith", + "site_detail_url": "https://comicvine.gamespot.com/agent-smith/4005-51085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20610/", + "id": 20610, + "name": "Ahura", + "site_detail_url": "https://comicvine.gamespot.com/ahura/4005-20610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77812/", + "id": 77812, + "name": "Alana Jobson", + "site_detail_url": "https://comicvine.gamespot.com/alana-jobson/4005-77812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18569/", + "id": 18569, + "name": "Albion", + "site_detail_url": "https://comicvine.gamespot.com/albion/4005-18569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99405/", + "id": 99405, + "name": "Alex", + "site_detail_url": "https://comicvine.gamespot.com/alex/4005-99405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21198/", + "id": 21198, + "name": "Alex Power", + "site_detail_url": "https://comicvine.gamespot.com/alex-power/4005-21198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65797/", + "id": 65797, + "name": "Alexa Reilly", + "site_detail_url": "https://comicvine.gamespot.com/alexa-reilly/4005-65797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4337/", + "id": 4337, + "name": "Alicia Masters", + "site_detail_url": "https://comicvine.gamespot.com/alicia-masters/4005-4337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84443/", + "id": 84443, + "name": "Alpha", + "site_detail_url": "https://comicvine.gamespot.com/alpha/4005-84443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43587/", + "id": 43587, + "name": "Amadeus Cho", + "site_detail_url": "https://comicvine.gamespot.com/amadeus-cho/4005-43587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66173/", + "id": 66173, + "name": "Amanda Reilly", + "site_detail_url": "https://comicvine.gamespot.com/amanda-reilly/4005-66173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29103/", + "id": 29103, + "name": "Amanda Robertson", + "site_detail_url": "https://comicvine.gamespot.com/amanda-robertson/4005-29103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99957/", + "id": 99957, + "name": "Amber Grant", + "site_detail_url": "https://comicvine.gamespot.com/amber-grant/4005-99957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26182/", + "id": 26182, + "name": "Amy Powell", + "site_detail_url": "https://comicvine.gamespot.com/amy-powell/4005-26182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65796/", + "id": 65796, + "name": "Amy Reilly", + "site_detail_url": "https://comicvine.gamespot.com/amy-reilly/4005-65796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34015/", + "id": 34015, + "name": "Anansi", + "site_detail_url": "https://comicvine.gamespot.com/anansi/4005-34015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12913/", + "id": 12913, + "name": "Anarchist", + "site_detail_url": "https://comicvine.gamespot.com/anarchist/4005-12913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2212/", + "id": 2212, + "name": "Ancient One", + "site_detail_url": "https://comicvine.gamespot.com/ancient-one/4005-2212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90267/", + "id": 90267, + "name": "Andi Benton", + "site_detail_url": "https://comicvine.gamespot.com/andi-benton/4005-90267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92277/", + "id": 92277, + "name": "Andrew Davis", + "site_detail_url": "https://comicvine.gamespot.com/andrew-davis/4005-92277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80472/", + "id": 80472, + "name": "Andrew Pauncholito", + "site_detail_url": "https://comicvine.gamespot.com/andrew-pauncholito/4005-80472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2112/", + "id": 2112, + "name": "Angel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-2112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36389/", + "id": 36389, + "name": "Angel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-36389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11761/", + "id": 11761, + "name": "Angela", + "site_detail_url": "https://comicvine.gamespot.com/angela/4005-11761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1925/", + "id": 1925, + "name": "Angela Del Toro", + "site_detail_url": "https://comicvine.gamespot.com/angela-del-toro/4005-1925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6290/", + "id": 6290, + "name": "Angela Yin", + "site_detail_url": "https://comicvine.gamespot.com/angela-yin/4005-6290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164699/", + "id": 164699, + "name": "Angelina", + "site_detail_url": "https://comicvine.gamespot.com/angelina/4005-164699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57287/", + "id": 57287, + "name": "Ann MacIntosh", + "site_detail_url": "https://comicvine.gamespot.com/ann-macintosh/4005-57287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17636/", + "id": 17636, + "name": "Ann Weying", + "site_detail_url": "https://comicvine.gamespot.com/ann-weying/4005-17636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88149/", + "id": 88149, + "name": "Anna Maria Marconi", + "site_detail_url": "https://comicvine.gamespot.com/anna-maria-marconi/4005-88149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33193/", + "id": 33193, + "name": "Anna May Watson", + "site_detail_url": "https://comicvine.gamespot.com/anna-may-watson/4005-33193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84330/", + "id": 84330, + "name": "Anna Parker", + "site_detail_url": "https://comicvine.gamespot.com/anna-parker/4005-84330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83080/", + "id": 83080, + "name": "Annabelle Adams", + "site_detail_url": "https://comicvine.gamespot.com/annabelle-adams/4005-83080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87572/", + "id": 87572, + "name": "Annabelle Riggs", + "site_detail_url": "https://comicvine.gamespot.com/annabelle-riggs/4005-87572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15668/", + "id": 15668, + "name": "Annex", + "site_detail_url": "https://comicvine.gamespot.com/annex/4005-15668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70006/", + "id": 70006, + "name": "Annie", + "site_detail_url": "https://comicvine.gamespot.com/annie/4005-70006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20577/", + "id": 20577, + "name": "Ant-Man (Lang)", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-lang/4005-20577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173759/", + "id": 173759, + "name": "Anti-Venom", + "site_detail_url": "https://comicvine.gamespot.com/anti-venom/4005-173759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24592/", + "id": 24592, + "name": "Aquarian", + "site_detail_url": "https://comicvine.gamespot.com/aquarian/4005-24592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75124/", + "id": 75124, + "name": "Arachnoman", + "site_detail_url": "https://comicvine.gamespot.com/arachnoman/4005-75124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112217/", + "id": 112217, + "name": "Arácnido Jr.", + "site_detail_url": "https://comicvine.gamespot.com/aracnido-jr/4005-112217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11940/", + "id": 11940, + "name": "Ares", + "site_detail_url": "https://comicvine.gamespot.com/ares/4005-11940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13737/", + "id": 13737, + "name": "Arthur Stacy", + "site_detail_url": "https://comicvine.gamespot.com/arthur-stacy/4005-13737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10574/", + "id": 10574, + "name": "Artie Maddicks", + "site_detail_url": "https://comicvine.gamespot.com/artie-maddicks/4005-10574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18578/", + "id": 18578, + "name": "Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/ashcan/4005-18578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57101/", + "id": 57101, + "name": "Ashley Barton", + "site_detail_url": "https://comicvine.gamespot.com/ashley-barton/4005-57101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75710/", + "id": 75710, + "name": "Assault", + "site_detail_url": "https://comicvine.gamespot.com/assault/4005-75710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3277/", + "id": 3277, + "name": "Atlas", + "site_detail_url": "https://comicvine.gamespot.com/atlas/4005-3277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34348/", + "id": 34348, + "name": "Atleza", + "site_detail_url": "https://comicvine.gamespot.com/atleza/4005-34348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1780/", + "id": 1780, + "name": "Aunt May", + "site_detail_url": "https://comicvine.gamespot.com/aunt-may/4005-1780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3189/", + "id": 3189, + "name": "Aurora", + "site_detail_url": "https://comicvine.gamespot.com/aurora/4005-3189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80709/", + "id": 80709, + "name": "Ava Ayala", + "site_detail_url": "https://comicvine.gamespot.com/ava-ayala/4005-80709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25978/", + "id": 25978, + "name": "Backlash", + "site_detail_url": "https://comicvine.gamespot.com/backlash/4005-25978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5187/", + "id": 5187, + "name": "Badrock", + "site_detail_url": "https://comicvine.gamespot.com/badrock/4005-5187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7201/", + "id": 7201, + "name": "Balder", + "site_detail_url": "https://comicvine.gamespot.com/balder/4005-7201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9708/", + "id": 9708, + "name": "Banshee", + "site_detail_url": "https://comicvine.gamespot.com/banshee/4005-9708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56661/", + "id": 56661, + "name": "Barack Obama", + "site_detail_url": "https://comicvine.gamespot.com/barack-obama/4005-56661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140822/", + "id": 140822, + "name": "Barbara Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/barbara-rodriguez/4005-140822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33643/", + "id": 33643, + "name": "Barney Bushkin", + "site_detail_url": "https://comicvine.gamespot.com/barney-bushkin/4005-33643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22804/", + "id": 22804, + "name": "Barry Allen", + "site_detail_url": "https://comicvine.gamespot.com/barry-allen/4005-22804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67135/", + "id": 67135, + "name": "Barry McCormick", + "site_detail_url": "https://comicvine.gamespot.com/barry-mccormick/4005-67135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1699/", + "id": 1699, + "name": "Batman", + "site_detail_url": "https://comicvine.gamespot.com/batman/4005-1699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144654/", + "id": 144654, + "name": "Bats", + "site_detail_url": "https://comicvine.gamespot.com/bats/4005-144654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13744/", + "id": 13744, + "name": "Battlestar", + "site_detail_url": "https://comicvine.gamespot.com/battlestar/4005-13744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24214/", + "id": 24214, + "name": "Batwing", + "site_detail_url": "https://comicvine.gamespot.com/batwing/4005-24214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5023/", + "id": 5023, + "name": "Baymax", + "site_detail_url": "https://comicvine.gamespot.com/baymax/4005-5023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3188/", + "id": 3188, + "name": "Beak", + "site_detail_url": "https://comicvine.gamespot.com/beak/4005-3188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1462/", + "id": 1462, + "name": "Beast", + "site_detail_url": "https://comicvine.gamespot.com/beast/4005-1462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74603/", + "id": 74603, + "name": "Bella Fishbach", + "site_detail_url": "https://comicvine.gamespot.com/bella-fishbach/4005-74603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46523/", + "id": 46523, + "name": "Ben Parker", + "site_detail_url": "https://comicvine.gamespot.com/ben-parker/4005-46523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6286/", + "id": 6286, + "name": "Ben Reilly", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly/4005-6286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97407/", + "id": 97407, + "name": "Ben Simmons", + "site_detail_url": "https://comicvine.gamespot.com/ben-simmons/4005-97407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4799/", + "id": 4799, + "name": "Ben Urich", + "site_detail_url": "https://comicvine.gamespot.com/ben-urich/4005-4799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68177/", + "id": 68177, + "name": "Bentley 23", + "site_detail_url": "https://comicvine.gamespot.com/bentley-23/4005-68177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33411/", + "id": 33411, + "name": "Bernie Rosenthal", + "site_detail_url": "https://comicvine.gamespot.com/bernie-rosenthal/4005-33411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6139/", + "id": 6139, + "name": "Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/beta-ray-bill/4005-6139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3176/", + "id": 3176, + "name": "Betsy Braddock", + "site_detail_url": "https://comicvine.gamespot.com/betsy-braddock/4005-3176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2484/", + "id": 2484, + "name": "Betty Brant", + "site_detail_url": "https://comicvine.gamespot.com/betty-brant/4005-2484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12908/", + "id": 12908, + "name": "Beverly Switzler", + "site_detail_url": "https://comicvine.gamespot.com/beverly-switzler/4005-12908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10300/", + "id": 10300, + "name": "Beyonder", + "site_detail_url": "https://comicvine.gamespot.com/beyonder/4005-10300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49967/", + "id": 49967, + "name": "Bill Hollister", + "site_detail_url": "https://comicvine.gamespot.com/bill-hollister/4005-49967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6724/", + "id": 6724, + "name": "Billy Connors", + "site_detail_url": "https://comicvine.gamespot.com/billy-connors/4005-6724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15644/", + "id": 15644, + "name": "Billy Walters", + "site_detail_url": "https://comicvine.gamespot.com/billy-walters/4005-15644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1503/", + "id": 1503, + "name": "Bishop", + "site_detail_url": "https://comicvine.gamespot.com/bishop/4005-1503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63879/", + "id": 63879, + "name": "Black Bee", + "site_detail_url": "https://comicvine.gamespot.com/black-bee/4005-63879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4329/", + "id": 4329, + "name": "Black Bolt", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt/4005-4329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1689/", + "id": 1689, + "name": "Black Canary", + "site_detail_url": "https://comicvine.gamespot.com/black-canary/4005-1689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1479/", + "id": 1479, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/black-cat/4005-1479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21201/", + "id": 21201, + "name": "Black Fox", + "site_detail_url": "https://comicvine.gamespot.com/black-fox/4005-21201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3470/", + "id": 3470, + "name": "Black Goliath", + "site_detail_url": "https://comicvine.gamespot.com/black-goliath/4005-3470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3172/", + "id": 3172, + "name": "Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/black-knight/4005-3172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42513/", + "id": 42513, + "name": "Black Marvel", + "site_detail_url": "https://comicvine.gamespot.com/black-marvel/4005-42513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1477/", + "id": 1477, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4005-1477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48313/", + "id": 48313, + "name": "Black Power Ranger", + "site_detail_url": "https://comicvine.gamespot.com/black-power-ranger/4005-48313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3200/", + "id": 3200, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4005-3200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75700/", + "id": 75700, + "name": "Black Widow (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-clone/4005-75700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33456/", + "id": 33456, + "name": "Blackbyrd", + "site_detail_url": "https://comicvine.gamespot.com/blackbyrd/4005-33456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7570/", + "id": 7570, + "name": "Blade", + "site_detail_url": "https://comicvine.gamespot.com/blade/4005-7570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75715/", + "id": 75715, + "name": "Blazeye", + "site_detail_url": "https://comicvine.gamespot.com/blazeye/4005-75715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41879/", + "id": 41879, + "name": "Blazing Skull", + "site_detail_url": "https://comicvine.gamespot.com/blazing-skull/4005-41879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12548/", + "id": 12548, + "name": "Blink", + "site_detail_url": "https://comicvine.gamespot.com/blink/4005-12548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46075/", + "id": 46075, + "name": "Blue Power Ranger", + "site_detail_url": "https://comicvine.gamespot.com/blue-power-ranger/4005-46075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10318/", + "id": 10318, + "name": "Bob Diamond", + "site_detail_url": "https://comicvine.gamespot.com/bob-diamond/4005-10318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34963/", + "id": 34963, + "name": "Bobby Sue Hollis", + "site_detail_url": "https://comicvine.gamespot.com/bobby-sue-hollis/4005-34963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126648/", + "id": 126648, + "name": "Boilermaker", + "site_detail_url": "https://comicvine.gamespot.com/boilermaker/4005-126648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73611/", + "id": 73611, + "name": "Bombshell", + "site_detail_url": "https://comicvine.gamespot.com/bombshell/4005-73611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2159/", + "id": 2159, + "name": "Boom-Boom", + "site_detail_url": "https://comicvine.gamespot.com/boom-boom/4005-2159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6299/", + "id": 6299, + "name": "Boomerang", + "site_detail_url": "https://comicvine.gamespot.com/boomerang/4005-6299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176249/", + "id": 176249, + "name": "Bootsie", + "site_detail_url": "https://comicvine.gamespot.com/bootsie/4005-176249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22874/", + "id": 22874, + "name": "Bounty", + "site_detail_url": "https://comicvine.gamespot.com/bounty/4005-22874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164885/", + "id": 164885, + "name": "Brandy Selby", + "site_detail_url": "https://comicvine.gamespot.com/brandy-selby/4005-164885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30145/", + "id": 30145, + "name": "Bright Sword", + "site_detail_url": "https://comicvine.gamespot.com/bright-sword/4005-30145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146839/", + "id": 146839, + "name": "Bruce", + "site_detail_url": "https://comicvine.gamespot.com/bruce/4005-146839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40470/", + "id": 40470, + "name": "Bucky Barnes", + "site_detail_url": "https://comicvine.gamespot.com/bucky-barnes/4005-40470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30511/", + "id": 30511, + "name": "Bumblebee", + "site_detail_url": "https://comicvine.gamespot.com/bumblebee/4005-30511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23474/", + "id": 23474, + "name": "Burnout", + "site_detail_url": "https://comicvine.gamespot.com/burnout/4005-23474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71686/", + "id": 71686, + "name": "Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/butterfly/4005-71686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8674/", + "id": 8674, + "name": "Buzz", + "site_detail_url": "https://comicvine.gamespot.com/buzz/4005-8674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2157/", + "id": 2157, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4005-2157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30144/", + "id": 30144, + "name": "Caduceus", + "site_detail_url": "https://comicvine.gamespot.com/caduceus/4005-30144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23578/", + "id": 23578, + "name": "Caitlin Fairchild", + "site_detail_url": "https://comicvine.gamespot.com/caitlin-fairchild/4005-23578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15292/", + "id": 15292, + "name": "Calculus", + "site_detail_url": "https://comicvine.gamespot.com/calculus/4005-15292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15494/", + "id": 15494, + "name": "Calypso", + "site_detail_url": "https://comicvine.gamespot.com/calypso/4005-15494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137493/", + "id": 137493, + "name": "Camper van Helsing", + "site_detail_url": "https://comicvine.gamespot.com/camper-van-helsing/4005-137493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30336/", + "id": 30336, + "name": "Candi", + "site_detail_url": "https://comicvine.gamespot.com/candi/4005-30336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1496/", + "id": 1496, + "name": "Cannonball", + "site_detail_url": "https://comicvine.gamespot.com/cannonball/4005-1496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1442/", + "id": 1442, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4005-1442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7477/", + "id": 7477, + "name": "Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain/4005-7477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1472/", + "id": 1472, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4005-1472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91954/", + "id": 91954, + "name": "Captain Quaid", + "site_detail_url": "https://comicvine.gamespot.com/captain-quaid/4005-91954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27193/", + "id": 27193, + "name": "Captain Universe", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe/4005-27193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176050/", + "id": 176050, + "name": "Captain Wally", + "site_detail_url": "https://comicvine.gamespot.com/captain-wally/4005-176050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27189/", + "id": 27189, + "name": "Captain Zero", + "site_detail_url": "https://comicvine.gamespot.com/captain-zero/4005-27189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15614/", + "id": 15614, + "name": "Cardiac", + "site_detail_url": "https://comicvine.gamespot.com/cardiac/4005-15614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49654/", + "id": 49654, + "name": "Carlie Cooper", + "site_detail_url": "https://comicvine.gamespot.com/carlie-cooper/4005-49654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40706/", + "id": 40706, + "name": "Carmilla Black", + "site_detail_url": "https://comicvine.gamespot.com/carmilla-black/4005-40706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21561/", + "id": 21561, + "name": "Carol Danvers", + "site_detail_url": "https://comicvine.gamespot.com/carol-danvers/4005-21561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65683/", + "id": 65683, + "name": "Caryn Earle", + "site_detail_url": "https://comicvine.gamespot.com/caryn-earle/4005-65683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115181/", + "id": 115181, + "name": "Cassandra Briar", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-briar/4005-115181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40516/", + "id": 40516, + "name": "Cassie Lang", + "site_detail_url": "https://comicvine.gamespot.com/cassie-lang/4005-40516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41121/", + "id": 41121, + "name": "Cerebella", + "site_detail_url": "https://comicvine.gamespot.com/cerebella/4005-41121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41318/", + "id": 41318, + "name": "Cerebra", + "site_detail_url": "https://comicvine.gamespot.com/cerebra/4005-41318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2244/", + "id": 2244, + "name": "Chamber", + "site_detail_url": "https://comicvine.gamespot.com/chamber/4005-2244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69433/", + "id": 69433, + "name": "Charlemagne", + "site_detail_url": "https://comicvine.gamespot.com/charlemagne/4005-69433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143621/", + "id": 143621, + "name": "Charlie Murphy", + "site_detail_url": "https://comicvine.gamespot.com/charlie-murphy/4005-143621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24653/", + "id": 24653, + "name": "Charlie Snow", + "site_detail_url": "https://comicvine.gamespot.com/charlie-snow/4005-24653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41413/", + "id": 41413, + "name": "Charlie Weiderman", + "site_detail_url": "https://comicvine.gamespot.com/charlie-weiderman/4005-41413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1938/", + "id": 1938, + "name": "Chase Stein", + "site_detail_url": "https://comicvine.gamespot.com/chase-stein/4005-1938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63803/", + "id": 63803, + "name": "Chat", + "site_detail_url": "https://comicvine.gamespot.com/chat/4005-63803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7628/", + "id": 7628, + "name": "Chili Storm", + "site_detail_url": "https://comicvine.gamespot.com/chili-storm/4005-7628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162727/", + "id": 162727, + "name": "Chloe Robertson", + "site_detail_url": "https://comicvine.gamespot.com/chloe-robertson/4005-162727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40905/", + "id": 40905, + "name": "Christine Palmer", + "site_detail_url": "https://comicvine.gamespot.com/christine-palmer/4005-40905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24537/", + "id": 24537, + "name": "Chtylok", + "site_detail_url": "https://comicvine.gamespot.com/chtylok/4005-24537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33006/", + "id": 33006, + "name": "Cissy Ironwood", + "site_detail_url": "https://comicvine.gamespot.com/cissy-ironwood/4005-33006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101484/", + "id": 101484, + "name": "Clash", + "site_detail_url": "https://comicvine.gamespot.com/clash/4005-101484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7524/", + "id": 7524, + "name": "Clay Quartermain", + "site_detail_url": "https://comicvine.gamespot.com/clay-quartermain/4005-7524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2216/", + "id": 2216, + "name": "Clea", + "site_detail_url": "https://comicvine.gamespot.com/clea/4005-2216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1474/", + "id": 1474, + "name": "Cloak", + "site_detail_url": "https://comicvine.gamespot.com/cloak/4005-1474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16103/", + "id": 16103, + "name": "Cole Cooper", + "site_detail_url": "https://comicvine.gamespot.com/cole-cooper/4005-16103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1494/", + "id": 1494, + "name": "Colleen Wing", + "site_detail_url": "https://comicvine.gamespot.com/colleen-wing/4005-1494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1460/", + "id": 1460, + "name": "Colossus", + "site_detail_url": "https://comicvine.gamespot.com/colossus/4005-1460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46121/", + "id": 46121, + "name": "Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crusader/4005-46121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15480/", + "id": 15480, + "name": "Crusher Hogan", + "site_detail_url": "https://comicvine.gamespot.com/crusher-hogan/4005-15480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2115/", + "id": 2115, + "name": "Crystal", + "site_detail_url": "https://comicvine.gamespot.com/crystal/4005-2115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161378/", + "id": 161378, + "name": "Cyborg X", + "site_detail_url": "https://comicvine.gamespot.com/cyborg-x/4005-161378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1459/", + "id": 1459, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4005-1459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29015/", + "id": 29015, + "name": "Cynthia Bernhammer", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-bernhammer/4005-29015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14559/", + "id": 14559, + "name": "Cypher", + "site_detail_url": "https://comicvine.gamespot.com/cypher/4005-14559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52865/", + "id": 52865, + "name": "D.K.", + "site_detail_url": "https://comicvine.gamespot.com/dk/4005-52865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1935/", + "id": 1935, + "name": "Dagger", + "site_detail_url": "https://comicvine.gamespot.com/dagger/4005-1935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12595/", + "id": 12595, + "name": "Dakimh", + "site_detail_url": "https://comicvine.gamespot.com/dakimh/4005-12595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3128/", + "id": 3128, + "name": "Dakota North", + "site_detail_url": "https://comicvine.gamespot.com/dakota-north/4005-3128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50739/", + "id": 50739, + "name": "Danielle Cage", + "site_detail_url": "https://comicvine.gamespot.com/danielle-cage/4005-50739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88024/", + "id": 88024, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4005-88024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24694/", + "id": 24694, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4005-24694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59892/", + "id": 59892, + "name": "Dark Mairi", + "site_detail_url": "https://comicvine.gamespot.com/dark-mairi/4005-59892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8676/", + "id": 8676, + "name": "Darkdevil", + "site_detail_url": "https://comicvine.gamespot.com/darkdevil/4005-8676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2111/", + "id": 2111, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk/4005-2111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58543/", + "id": 58543, + "name": "Daydreamer", + "site_detail_url": "https://comicvine.gamespot.com/daydreamer/4005-58543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1498/", + "id": 1498, + "name": "Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/dazzler/4005-1498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7606/", + "id": 7606, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4005-7606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12620/", + "id": 12620, + "name": "Death", + "site_detail_url": "https://comicvine.gamespot.com/death/4005-12620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7231/", + "id": 7231, + "name": "Deathcry", + "site_detail_url": "https://comicvine.gamespot.com/deathcry/4005-7231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7258/", + "id": 7258, + "name": "Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/deathlok/4005-7258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42905/", + "id": 42905, + "name": "Deathlok (Collins)", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-collins/4005-42905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146838/", + "id": 146838, + "name": "Deborah", + "site_detail_url": "https://comicvine.gamespot.com/deborah/4005-146838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33026/", + "id": 33026, + "name": "Debra Whitman", + "site_detail_url": "https://comicvine.gamespot.com/debra-whitman/4005-33026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9856/", + "id": 9856, + "name": "Delilah", + "site_detail_url": "https://comicvine.gamespot.com/delilah/4005-9856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58040/", + "id": 58040, + "name": "Dementia", + "site_detail_url": "https://comicvine.gamespot.com/dementia/4005-58040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19960/", + "id": 19960, + "name": "Demolition Man", + "site_detail_url": "https://comicvine.gamespot.com/demolition-man/4005-19960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11546/", + "id": 11546, + "name": "Desiree Winthrop", + "site_detail_url": "https://comicvine.gamespot.com/desiree-winthrop/4005-11546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16097/", + "id": 16097, + "name": "Detective Marcella Cellanos", + "site_detail_url": "https://comicvine.gamespot.com/detective-marcella-cellanos/4005-16097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144700/", + "id": 144700, + "name": "Detective Simons", + "site_detail_url": "https://comicvine.gamespot.com/detective-simons/4005-144700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2172/", + "id": 2172, + "name": "Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/devil-dinosaur/4005-2172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138980/", + "id": 138980, + "name": "Devil Spider", + "site_detail_url": "https://comicvine.gamespot.com/devil-spider/4005-138980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13992/", + "id": 13992, + "name": "Devil-Slayer", + "site_detail_url": "https://comicvine.gamespot.com/devil-slayer/4005-13992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11556/", + "id": 11556, + "name": "Devon Lewis", + "site_detail_url": "https://comicvine.gamespot.com/devon-lewis/4005-11556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75711/", + "id": 75711, + "name": "Diamond Hammer", + "site_detail_url": "https://comicvine.gamespot.com/diamond-hammer/4005-75711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16121/", + "id": 16121, + "name": "Dilbert Trilby", + "site_detail_url": "https://comicvine.gamespot.com/dilbert-trilby/4005-16121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49503/", + "id": 49503, + "name": "Doc Magus", + "site_detail_url": "https://comicvine.gamespot.com/doc-magus/4005-49503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4315/", + "id": 4315, + "name": "Doc Samson", + "site_detail_url": "https://comicvine.gamespot.com/doc-samson/4005-4315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29227/", + "id": 29227, + "name": "Doc Savage", + "site_detail_url": "https://comicvine.gamespot.com/doc-savage/4005-29227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1468/", + "id": 1468, + "name": "Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom/4005-1468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10302/", + "id": 10302, + "name": "Doctor Druid", + "site_detail_url": "https://comicvine.gamespot.com/doctor-druid/4005-10302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16080/", + "id": 16080, + "name": "Doctor Jacob Weisenthal", + "site_detail_url": "https://comicvine.gamespot.com/doctor-jacob-weisenthal/4005-16080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1485/", + "id": 1485, + "name": "Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopus/4005-1485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150711/", + "id": 150711, + "name": "Doctor Steven", + "site_detail_url": "https://comicvine.gamespot.com/doctor-steven/4005-150711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1456/", + "id": 1456, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4005-1456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10280/", + "id": 10280, + "name": "Doctor Voodoo", + "site_detail_url": "https://comicvine.gamespot.com/doctor-voodoo/4005-10280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28466/", + "id": 28466, + "name": "Dominic Fortune", + "site_detail_url": "https://comicvine.gamespot.com/dominic-fortune/4005-28466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2161/", + "id": 2161, + "name": "Domino", + "site_detail_url": "https://comicvine.gamespot.com/domino/4005-2161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83466/", + "id": 83466, + "name": "Donald Meland", + "site_detail_url": "https://comicvine.gamespot.com/donald-meland/4005-83466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11484/", + "id": 11484, + "name": "Doop", + "site_detail_url": "https://comicvine.gamespot.com/doop/4005-11484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89831/", + "id": 89831, + "name": "Doraemon", + "site_detail_url": "https://comicvine.gamespot.com/doraemon/4005-89831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24143/", + "id": 24143, + "name": "Dr. Ashley Kafka", + "site_detail_url": "https://comicvine.gamespot.com/dr-ashley-kafka/4005-24143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38641/", + "id": 38641, + "name": "Dr. Bromwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-bromwell/4005-38641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23172/", + "id": 23172, + "name": "Dr. Cobbwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-cobbwell/4005-23172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15669/", + "id": 15669, + "name": "Dr. Hillman Barto", + "site_detail_url": "https://comicvine.gamespot.com/dr-hillman-barto/4005-15669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6823/", + "id": 6823, + "name": "Dragon Man", + "site_detail_url": "https://comicvine.gamespot.com/dragon-man/4005-6823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6807/", + "id": 6807, + "name": "Drax the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/drax-the-destroyer/4005-6807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60095/", + "id": 60095, + "name": "Dryrot", + "site_detail_url": "https://comicvine.gamespot.com/dryrot/4005-60095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3526/", + "id": 3526, + "name": "Dum Dum Dugan", + "site_detail_url": "https://comicvine.gamespot.com/dum-dum-dugan/4005-3526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4805/", + "id": 4805, + "name": "Dusk", + "site_detail_url": "https://comicvine.gamespot.com/dusk/4005-4805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157159/", + "id": 157159, + "name": "Dylan Brock", + "site_detail_url": "https://comicvine.gamespot.com/dylan-brock/4005-157159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14048/", + "id": 14048, + "name": "Easy Reader", + "site_detail_url": "https://comicvine.gamespot.com/easy-reader/4005-14048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9038/", + "id": 9038, + "name": "Echo", + "site_detail_url": "https://comicvine.gamespot.com/echo/4005-9038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6733/", + "id": 6733, + "name": "Eddie Brock", + "site_detail_url": "https://comicvine.gamespot.com/eddie-brock/4005-6733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43412/", + "id": 43412, + "name": "El Guapo", + "site_detail_url": "https://comicvine.gamespot.com/el-guapo/4005-43412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41881/", + "id": 41881, + "name": "El Muerto", + "site_detail_url": "https://comicvine.gamespot.com/el-muerto/4005-41881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1802/", + "id": 1802, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4005-1802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60282/", + "id": 60282, + "name": "Elephant Steve", + "site_detail_url": "https://comicvine.gamespot.com/elephant-steve/4005-60282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160858/", + "id": 160858, + "name": "Elizabeth Nikos", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-nikos/4005-160858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79465/", + "id": 79465, + "name": "Elizabeth Tyne", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-tyne/4005-79465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36081/", + "id": 36081, + "name": "Ellen Brandt", + "site_detail_url": "https://comicvine.gamespot.com/ellen-brandt/4005-36081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23423/", + "id": 23423, + "name": "Ellen Hibbert", + "site_detail_url": "https://comicvine.gamespot.com/ellen-hibbert/4005-23423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105092/", + "id": 105092, + "name": "Ellie Camacho", + "site_detail_url": "https://comicvine.gamespot.com/ellie-camacho/4005-105092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35787/", + "id": 35787, + "name": "Emerson Bale", + "site_detail_url": "https://comicvine.gamespot.com/emerson-bale/4005-35787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1457/", + "id": 1457, + "name": "Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost/4005-1457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157255/", + "id": 157255, + "name": "Emma Hernandez", + "site_detail_url": "https://comicvine.gamespot.com/emma-hernandez/4005-157255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28244/", + "id": 28244, + "name": "Ent", + "site_detail_url": "https://comicvine.gamespot.com/ent/4005-28244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65618/", + "id": 65618, + "name": "Ernie Popchik", + "site_detail_url": "https://comicvine.gamespot.com/ernie-popchik/4005-65618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40868/", + "id": 40868, + "name": "Ernst", + "site_detail_url": "https://comicvine.gamespot.com/ernst/4005-40868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1776/", + "id": 1776, + "name": "Ethan Edwards", + "site_detail_url": "https://comicvine.gamespot.com/ethan-edwards/4005-1776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29339/", + "id": 29339, + "name": "Evan Swann", + "site_detail_url": "https://comicvine.gamespot.com/evan-swann/4005-29339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86671/", + "id": 86671, + "name": "Ex Nihilo", + "site_detail_url": "https://comicvine.gamespot.com/ex-nihilo/4005-86671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86296/", + "id": 86296, + "name": "Eye Boy", + "site_detail_url": "https://comicvine.gamespot.com/eye-boy/4005-86296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17615/", + "id": 17615, + "name": "Ezekiel", + "site_detail_url": "https://comicvine.gamespot.com/ezekiel/4005-17615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1451/", + "id": 1451, + "name": "Falcon", + "site_detail_url": "https://comicvine.gamespot.com/falcon/4005-1451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3512/", + "id": 3512, + "name": "Fandral", + "site_detail_url": "https://comicvine.gamespot.com/fandral/4005-3512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175604/", + "id": 175604, + "name": "Fargo North, Decoder", + "site_detail_url": "https://comicvine.gamespot.com/fargo-north-decoder/4005-175604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85095/", + "id": 85095, + "name": "Father Spider", + "site_detail_url": "https://comicvine.gamespot.com/father-spider/4005-85095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49501/", + "id": 49501, + "name": "Felicity Hardy", + "site_detail_url": "https://comicvine.gamespot.com/felicity-hardy/4005-49501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150020/", + "id": 150020, + "name": "Fenton", + "site_detail_url": "https://comicvine.gamespot.com/fenton/4005-150020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2160/", + "id": 2160, + "name": "Feral", + "site_detail_url": "https://comicvine.gamespot.com/feral/4005-2160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156624/", + "id": 156624, + "name": "Fernande", + "site_detail_url": "https://comicvine.gamespot.com/fernande/4005-156624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126646/", + "id": 126646, + "name": "Fi", + "site_detail_url": "https://comicvine.gamespot.com/fi/4005-126646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69912/", + "id": 69912, + "name": "Finesse", + "site_detail_url": "https://comicvine.gamespot.com/finesse/4005-69912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3323/", + "id": 3323, + "name": "Firebird", + "site_detail_url": "https://comicvine.gamespot.com/firebird/4005-3323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7108/", + "id": 7108, + "name": "Firelord", + "site_detail_url": "https://comicvine.gamespot.com/firelord/4005-7108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2101/", + "id": 2101, + "name": "Firestar", + "site_detail_url": "https://comicvine.gamespot.com/firestar/4005-2101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23072/", + "id": 23072, + "name": "Fireworks", + "site_detail_url": "https://comicvine.gamespot.com/fireworks/4005-23072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1489/", + "id": 1489, + "name": "Flash Thompson", + "site_detail_url": "https://comicvine.gamespot.com/flash-thompson/4005-1489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77788/", + "id": 77788, + "name": "Flo Steinberg", + "site_detail_url": "https://comicvine.gamespot.com/flo-steinberg/4005-77788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71566/", + "id": 71566, + "name": "Flux", + "site_detail_url": "https://comicvine.gamespot.com/flux/4005-71566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3124/", + "id": 3124, + "name": "Foggy Nelson", + "site_detail_url": "https://comicvine.gamespot.com/foggy-nelson/4005-3124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32926/", + "id": 32926, + "name": "Foolkiller (Salinger)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-salinger/4005-32926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4279/", + "id": 4279, + "name": "Forge", + "site_detail_url": "https://comicvine.gamespot.com/forge/4005-4279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4399/", + "id": 4399, + "name": "Frank Drake", + "site_detail_url": "https://comicvine.gamespot.com/frank-drake/4005-4399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16075/", + "id": 16075, + "name": "Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/frankenstein/4005-16075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11605/", + "id": 11605, + "name": "Frankie Raye", + "site_detail_url": "https://comicvine.gamespot.com/frankie-raye/4005-11605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2469/", + "id": 2469, + "name": "Franklin Richards", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards/4005-2469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35427/", + "id": 35427, + "name": "Fredzilla", + "site_detail_url": "https://comicvine.gamespot.com/fredzilla/4005-35427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41826/", + "id": 41826, + "name": "Freedom Ring", + "site_detail_url": "https://comicvine.gamespot.com/freedom-ring/4005-41826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23472/", + "id": 23472, + "name": "Freefall", + "site_detail_url": "https://comicvine.gamespot.com/freefall/4005-23472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33150/", + "id": 33150, + "name": "Freya", + "site_detail_url": "https://comicvine.gamespot.com/freya/4005-33150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34529/", + "id": 34529, + "name": "Frog-Man", + "site_detail_url": "https://comicvine.gamespot.com/frog-man/4005-34529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11510/", + "id": 11510, + "name": "Future Max", + "site_detail_url": "https://comicvine.gamespot.com/future-max/4005-11510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15313/", + "id": 15313, + "name": "Gabrielle Greer", + "site_detail_url": "https://comicvine.gamespot.com/gabrielle-greer/4005-15313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1499/", + "id": 1499, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4005-1499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6806/", + "id": 6806, + "name": "Gamora", + "site_detail_url": "https://comicvine.gamespot.com/gamora/4005-6806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80351/", + "id": 80351, + "name": "Ganke Lee", + "site_detail_url": "https://comicvine.gamespot.com/ganke-lee/4005-80351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161228/", + "id": 161228, + "name": "Garden-Spider", + "site_detail_url": "https://comicvine.gamespot.com/garden-spider/4005-161228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7114/", + "id": 7114, + "name": "Gargoyle", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle/4005-7114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26923/", + "id": 26923, + "name": "Garrison Kane", + "site_detail_url": "https://comicvine.gamespot.com/garrison-kane/4005-26923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7361/", + "id": 7361, + "name": "Gatekeeper", + "site_detail_url": "https://comicvine.gamespot.com/gatekeeper/4005-7361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42785/", + "id": 42785, + "name": "Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/gauntlet/4005-42785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7411/", + "id": 7411, + "name": "Gears", + "site_detail_url": "https://comicvine.gamespot.com/gears/4005-7411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30143/", + "id": 30143, + "name": "Genii", + "site_detail_url": "https://comicvine.gamespot.com/genii/4005-30143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4813/", + "id": 4813, + "name": "Genis-Vell", + "site_detail_url": "https://comicvine.gamespot.com/genis-vell/4005-4813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2479/", + "id": 2479, + "name": "George Stacy", + "site_detail_url": "https://comicvine.gamespot.com/george-stacy/4005-2479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30116/", + "id": 30116, + "name": "Gerbil", + "site_detail_url": "https://comicvine.gamespot.com/gerbil/4005-30116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57863/", + "id": 57863, + "name": "Gerry Drew", + "site_detail_url": "https://comicvine.gamespot.com/gerry-drew/4005-57863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1939/", + "id": 1939, + "name": "Gertrude Yorkes", + "site_detail_url": "https://comicvine.gamespot.com/gertrude-yorkes/4005-1939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6108/", + "id": 6108, + "name": "Ghost Rider (Blaze)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-blaze/4005-6108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14719/", + "id": 14719, + "name": "Ghost Rider (Ketch)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-ketch/4005-14719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94992/", + "id": 94992, + "name": "Ghost Rider (Reyes)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-reyes/4005-94992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23687/", + "id": 23687, + "name": "Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/gibbon/4005-23687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4653/", + "id": 4653, + "name": "Gladiator", + "site_detail_url": "https://comicvine.gamespot.com/gladiator/4005-4653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38667/", + "id": 38667, + "name": "Gladiator (Potter)", + "site_detail_url": "https://comicvine.gamespot.com/gladiator-potter/4005-38667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40586/", + "id": 40586, + "name": "Glob Herman", + "site_detail_url": "https://comicvine.gamespot.com/glob-herman/4005-40586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6830/", + "id": 6830, + "name": "Glory Grant", + "site_detail_url": "https://comicvine.gamespot.com/glory-grant/4005-6830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56541/", + "id": 56541, + "name": "Gog", + "site_detail_url": "https://comicvine.gamespot.com/gog/4005-56541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4330/", + "id": 4330, + "name": "Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/gorgon/4005-4330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54441/", + "id": 54441, + "name": "Gorilla Girl", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-girl/4005-54441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13960/", + "id": 13960, + "name": "Gorilla-Man", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-man/4005-13960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82052/", + "id": 82052, + "name": "Grady Scraps", + "site_detail_url": "https://comicvine.gamespot.com/grady-scraps/4005-82052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40452/", + "id": 40452, + "name": "Gravity", + "site_detail_url": "https://comicvine.gamespot.com/gravity/4005-40452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5936/", + "id": 5936, + "name": "Green Arrow", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow/4005-5936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39695/", + "id": 39695, + "name": "Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/grizzly/4005-39695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24341/", + "id": 24341, + "name": "Groot", + "site_detail_url": "https://comicvine.gamespot.com/groot/4005-24341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75016/", + "id": 75016, + "name": "Gruenhilda", + "site_detail_url": "https://comicvine.gamespot.com/gruenhilda/4005-75016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23471/", + "id": 23471, + "name": "Grunge", + "site_detail_url": "https://comicvine.gamespot.com/grunge/4005-23471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5047/", + "id": 5047, + "name": "Guardian", + "site_detail_url": "https://comicvine.gamespot.com/guardian/4005-5047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53454/", + "id": 53454, + "name": "Gunplay", + "site_detail_url": "https://comicvine.gamespot.com/gunplay/4005-53454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63870/", + "id": 63870, + "name": "Gus Beezer", + "site_detail_url": "https://comicvine.gamespot.com/gus-beezer/4005-63870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1480/", + "id": 1480, + "name": "Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy/4005-1480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52936/", + "id": 52936, + "name": "Gwen Stacy Clone", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy-clone/4005-52936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125054/", + "id": 125054, + "name": "Gwenpool", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool/4005-125054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23720/", + "id": 23720, + "name": "H.E.R.B.I.E.", + "site_detail_url": "https://comicvine.gamespot.com/herbie/4005-23720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11202/", + "id": 11202, + "name": "Hal Jordan", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan/4005-11202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2247/", + "id": 2247, + "name": "Hank Pym", + "site_detail_url": "https://comicvine.gamespot.com/hank-pym/4005-2247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12710/", + "id": 12710, + "name": "Hannibal King", + "site_detail_url": "https://comicvine.gamespot.com/hannibal-king/4005-12710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4262/", + "id": 4262, + "name": "Happy Hogan", + "site_detail_url": "https://comicvine.gamespot.com/happy-hogan/4005-4262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75713/", + "id": 75713, + "name": "Hardnose", + "site_detail_url": "https://comicvine.gamespot.com/hardnose/4005-75713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167812/", + "id": 167812, + "name": "Harley Keener", + "site_detail_url": "https://comicvine.gamespot.com/harley-keener/4005-167812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2478/", + "id": 2478, + "name": "Harry Osborn", + "site_detail_url": "https://comicvine.gamespot.com/harry-osborn/4005-2478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15112/", + "id": 15112, + "name": "Harvest", + "site_detail_url": "https://comicvine.gamespot.com/harvest/4005-15112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3546/", + "id": 3546, + "name": "Havok", + "site_detail_url": "https://comicvine.gamespot.com/havok/4005-3546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1475/", + "id": 1475, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4005-1475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69914/", + "id": 69914, + "name": "Hazmat", + "site_detail_url": "https://comicvine.gamespot.com/hazmat/4005-69914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9846/", + "id": 9846, + "name": "Heather McDaniel Hudson", + "site_detail_url": "https://comicvine.gamespot.com/heather-mcdaniel-hudson/4005-9846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5009/", + "id": 5009, + "name": "Heather McNeil Hudson", + "site_detail_url": "https://comicvine.gamespot.com/heather-mcneil-hudson/4005-5009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46892/", + "id": 46892, + "name": "Hebe", + "site_detail_url": "https://comicvine.gamespot.com/hebe/4005-46892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128515/", + "id": 128515, + "name": "Hector Baez", + "site_detail_url": "https://comicvine.gamespot.com/hector-baez/4005-128515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3508/", + "id": 3508, + "name": "Heimdall", + "site_detail_url": "https://comicvine.gamespot.com/heimdall/4005-3508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13738/", + "id": 13738, + "name": "Helen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/helen-stacy/4005-13738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3316/", + "id": 3316, + "name": "Hellcat", + "site_detail_url": "https://comicvine.gamespot.com/hellcat/4005-3316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42198/", + "id": 42198, + "name": "Hellcow", + "site_detail_url": "https://comicvine.gamespot.com/hellcow/4005-42198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40454/", + "id": 40454, + "name": "Hellion", + "site_detail_url": "https://comicvine.gamespot.com/hellion/4005-40454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14695/", + "id": 14695, + "name": "Hellstorm", + "site_detail_url": "https://comicvine.gamespot.com/hellstorm/4005-14695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103660/", + "id": 103660, + "name": "Henry Hayes", + "site_detail_url": "https://comicvine.gamespot.com/henry-hayes/4005-103660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2503/", + "id": 2503, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4005-2503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30148/", + "id": 30148, + "name": "Highnote", + "site_detail_url": "https://comicvine.gamespot.com/highnote/4005-30148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33091/", + "id": 33091, + "name": "Hildegarde", + "site_detail_url": "https://comicvine.gamespot.com/hildegarde/4005-33091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13387/", + "id": 13387, + "name": "Hindsight", + "site_detail_url": "https://comicvine.gamespot.com/hindsight/4005-13387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5022/", + "id": 5022, + "name": "Hiro", + "site_detail_url": "https://comicvine.gamespot.com/hiro/4005-5022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67438/", + "id": 67438, + "name": "Hit-Monkey", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey/4005-67438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3511/", + "id": 3511, + "name": "Hogun", + "site_detail_url": "https://comicvine.gamespot.com/hogun/4005-3511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5024/", + "id": 5024, + "name": "Honey Lemon", + "site_detail_url": "https://comicvine.gamespot.com/honey-lemon/4005-5024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7332/", + "id": 7332, + "name": "Hope", + "site_detail_url": "https://comicvine.gamespot.com/hope/4005-7332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23424/", + "id": 23424, + "name": "Hope Hibbert", + "site_detail_url": "https://comicvine.gamespot.com/hope-hibbert/4005-23424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4803/", + "id": 4803, + "name": "Hornet", + "site_detail_url": "https://comicvine.gamespot.com/hornet/4005-4803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6803/", + "id": 6803, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4005-6803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2267/", + "id": 2267, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4005-2267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2259/", + "id": 2259, + "name": "Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/hulkling/4005-2259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60463/", + "id": 60463, + "name": "Human Fly", + "site_detail_url": "https://comicvine.gamespot.com/human-fly/4005-60463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2120/", + "id": 2120, + "name": "Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/human-torch/4005-2120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81271/", + "id": 81271, + "name": "Human Torch (Mangaverse)", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-mangaverse/4005-81271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60714/", + "id": 60714, + "name": "Human Torch 2099", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-2099/4005-60714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83465/", + "id": 83465, + "name": "Hummingbird", + "site_detail_url": "https://comicvine.gamespot.com/hummingbird/4005-83465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3426/", + "id": 3426, + "name": "Husk", + "site_detail_url": "https://comicvine.gamespot.com/husk/4005-3426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24129/", + "id": 24129, + "name": "Hybrid", + "site_detail_url": "https://comicvine.gamespot.com/hybrid/4005-24129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75714/", + "id": 75714, + "name": "Hyperia", + "site_detail_url": "https://comicvine.gamespot.com/hyperia/4005-75714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6911/", + "id": 6911, + "name": "Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/hyperion/4005-6911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1464/", + "id": 1464, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4005-1464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92143/", + "id": 92143, + "name": "Identity Girl", + "site_detail_url": "https://comicvine.gamespot.com/identity-girl/4005-92143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13967/", + "id": 13967, + "name": "Ikaris", + "site_detail_url": "https://comicvine.gamespot.com/ikaris/4005-13967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7590/", + "id": 7590, + "name": "Impossible Man", + "site_detail_url": "https://comicvine.gamespot.com/impossible-man/4005-7590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100364/", + "id": 100364, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4005-100364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5210/", + "id": 5210, + "name": "Invincible", + "site_detail_url": "https://comicvine.gamespot.com/invincible/4005-5210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2190/", + "id": 2190, + "name": "Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/invisible-woman/4005-2190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1492/", + "id": 1492, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4005-1492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2263/", + "id": 2263, + "name": "Iron Lad", + "site_detail_url": "https://comicvine.gamespot.com/iron-lad/4005-2263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1455/", + "id": 1455, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4005-1455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129909/", + "id": 129909, + "name": "Ironheart", + "site_detail_url": "https://comicvine.gamespot.com/ironheart/4005-129909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93082/", + "id": 93082, + "name": "Ivory Honeyshot", + "site_detail_url": "https://comicvine.gamespot.com/ivory-honeyshot/4005-93082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175620/", + "id": 175620, + "name": "J. Arthur Crank", + "site_detail_url": "https://comicvine.gamespot.com/j-arthur-crank/4005-175620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1487/", + "id": 1487, + "name": "J. Jonah Jameson", + "site_detail_url": "https://comicvine.gamespot.com/j-jonah-jameson/4005-1487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58595/", + "id": 58595, + "name": "J. Jonah Jameson, Sr.", + "site_detail_url": "https://comicvine.gamespot.com/j-jonah-jameson-sr/4005-58595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7618/", + "id": 7618, + "name": "Jack Monroe", + "site_detail_url": "https://comicvine.gamespot.com/jack-monroe/4005-7618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7213/", + "id": 7213, + "name": "Jack of Hearts", + "site_detail_url": "https://comicvine.gamespot.com/jack-of-hearts/4005-7213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3134/", + "id": 3134, + "name": "Jack Power", + "site_detail_url": "https://comicvine.gamespot.com/jack-power/4005-3134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49559/", + "id": 49559, + "name": "Jackpot", + "site_detail_url": "https://comicvine.gamespot.com/jackpot/4005-49559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12337/", + "id": 12337, + "name": "Jane Foster", + "site_detail_url": "https://comicvine.gamespot.com/jane-foster/4005-12337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1781/", + "id": 1781, + "name": "Jarvis", + "site_detail_url": "https://comicvine.gamespot.com/jarvis/4005-1781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126272/", + "id": 126272, + "name": "Jasmine", + "site_detail_url": "https://comicvine.gamespot.com/jasmine/4005-126272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10433/", + "id": 10433, + "name": "Jay Leno", + "site_detail_url": "https://comicvine.gamespot.com/jay-leno/4005-10433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7409/", + "id": 7409, + "name": "Jazz", + "site_detail_url": "https://comicvine.gamespot.com/jazz/4005-7409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2471/", + "id": 2471, + "name": "Jean DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/jean-dewolff/4005-2471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3552/", + "id": 3552, + "name": "Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey/4005-3552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157242/", + "id": 157242, + "name": "Jeff the Baby Land Shark", + "site_detail_url": "https://comicvine.gamespot.com/jeff-the-baby-land-shark/4005-157242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86502/", + "id": 86502, + "name": "Jefferson Davis", + "site_detail_url": "https://comicvine.gamespot.com/jefferson-davis/4005-86502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92984/", + "id": 92984, + "name": "Jeffrey Haight", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-haight/4005-92984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59117/", + "id": 59117, + "name": "Jeffrey Piper", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-piper/4005-59117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105831/", + "id": 105831, + "name": "Jemma Simmons", + "site_detail_url": "https://comicvine.gamespot.com/jemma-simmons/4005-105831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11006/", + "id": 11006, + "name": "Jennifer Hardesty", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-hardesty/4005-11006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8139/", + "id": 8139, + "name": "Jennifer Kale", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-kale/4005-8139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14051/", + "id": 14051, + "name": "Jennifer Of The Jungle", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-of-the-jungle/4005-14051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124495/", + "id": 124495, + "name": "Jerry Fortunov", + "site_detail_url": "https://comicvine.gamespot.com/jerry-fortunov/4005-124495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134587/", + "id": 134587, + "name": "Jerry Salteres", + "site_detail_url": "https://comicvine.gamespot.com/jerry-salteres/4005-134587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18615/", + "id": 18615, + "name": "Jess Patton", + "site_detail_url": "https://comicvine.gamespot.com/jess-patton/4005-18615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11553/", + "id": 11553, + "name": "Jessica Carradine", + "site_detail_url": "https://comicvine.gamespot.com/jessica-carradine/4005-11553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2265/", + "id": 2265, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4005-2265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15446/", + "id": 15446, + "name": "Jill Stacy", + "site_detail_url": "https://comicvine.gamespot.com/jill-stacy/4005-15446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63880/", + "id": 63880, + "name": "Jillian Blythe", + "site_detail_url": "https://comicvine.gamespot.com/jillian-blythe/4005-63880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175618/", + "id": 175618, + "name": "Jim Broderick", + "site_detail_url": "https://comicvine.gamespot.com/jim-broderick/4005-175618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12605/", + "id": 12605, + "name": "Jim Hammond", + "site_detail_url": "https://comicvine.gamespot.com/jim-hammond/4005-12605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32654/", + "id": 32654, + "name": "Jimmy", + "site_detail_url": "https://comicvine.gamespot.com/jimmy/4005-32654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69059/", + "id": 69059, + "name": "Jimmy Hudson", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-hudson/4005-69059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17621/", + "id": 17621, + "name": "Jimmy-6", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-6/4005-17621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3318/", + "id": 3318, + "name": "Jocasta", + "site_detail_url": "https://comicvine.gamespot.com/jocasta/4005-3318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151157/", + "id": 151157, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-151157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6727/", + "id": 6727, + "name": "John Anderson", + "site_detail_url": "https://comicvine.gamespot.com/john-anderson/4005-6727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4456/", + "id": 4456, + "name": "John Jameson", + "site_detail_url": "https://comicvine.gamespot.com/john-jameson/4005-4456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167806/", + "id": 167806, + "name": "Jonesy", + "site_detail_url": "https://comicvine.gamespot.com/jonesy/4005-167806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25313/", + "id": 25313, + "name": "Josephine Pulaski", + "site_detail_url": "https://comicvine.gamespot.com/josephine-pulaski/4005-25313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15268/", + "id": 15268, + "name": "Joy Mercado", + "site_detail_url": "https://comicvine.gamespot.com/joy-mercado/4005-15268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4562/", + "id": 4562, + "name": "Jubilee", + "site_detail_url": "https://comicvine.gamespot.com/jubilee/4005-4562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140312/", + "id": 140312, + "name": "Judge", + "site_detail_url": "https://comicvine.gamespot.com/judge/4005-140312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91609/", + "id": 91609, + "name": "Judith Klemmer", + "site_detail_url": "https://comicvine.gamespot.com/judith-klemmer/4005-91609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16197/", + "id": 16197, + "name": "Julia Carpenter", + "site_detail_url": "https://comicvine.gamespot.com/julia-carpenter/4005-16197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3133/", + "id": 3133, + "name": "Julie Power", + "site_detail_url": "https://comicvine.gamespot.com/julie-power/4005-3133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52687/", + "id": 52687, + "name": "Julius Rassitano", + "site_detail_url": "https://comicvine.gamespot.com/julius-rassitano/4005-52687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30151/", + "id": 30151, + "name": "Juniper", + "site_detail_url": "https://comicvine.gamespot.com/juniper/4005-30151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4811/", + "id": 4811, + "name": "Justice", + "site_detail_url": "https://comicvine.gamespot.com/justice/4005-4811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33655/", + "id": 33655, + "name": "K. J. Clayton", + "site_detail_url": "https://comicvine.gamespot.com/k-j-clayton/4005-33655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3558/", + "id": 3558, + "name": "Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar/4005-3558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8667/", + "id": 8667, + "name": "Kaine", + "site_detail_url": "https://comicvine.gamespot.com/kaine/4005-8667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28991/", + "id": 28991, + "name": "Kaluu", + "site_detail_url": "https://comicvine.gamespot.com/kaluu/4005-28991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94118/", + "id": 94118, + "name": "Kamala Khan", + "site_detail_url": "https://comicvine.gamespot.com/kamala-khan/4005-94118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66089/", + "id": 66089, + "name": "Kamen Rider", + "site_detail_url": "https://comicvine.gamespot.com/kamen-rider/4005-66089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4486/", + "id": 4486, + "name": "Karen Page", + "site_detail_url": "https://comicvine.gamespot.com/karen-page/4005-4486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9849/", + "id": 9849, + "name": "Karma", + "site_detail_url": "https://comicvine.gamespot.com/karma/4005-9849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107639/", + "id": 107639, + "name": "Karn", + "site_detail_url": "https://comicvine.gamespot.com/karn/4005-107639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10975/", + "id": 10975, + "name": "Karnak", + "site_detail_url": "https://comicvine.gamespot.com/karnak/4005-10975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1943/", + "id": 1943, + "name": "Karolina Dean", + "site_detail_url": "https://comicvine.gamespot.com/karolina-dean/4005-1943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2269/", + "id": 2269, + "name": "Kat Farrell", + "site_detail_url": "https://comicvine.gamespot.com/kat-farrell/4005-2269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2262/", + "id": 2262, + "name": "Kate Bishop", + "site_detail_url": "https://comicvine.gamespot.com/kate-bishop/4005-2262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15249/", + "id": 15249, + "name": "Kate Cushing", + "site_detail_url": "https://comicvine.gamespot.com/kate-cushing/4005-15249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31645/", + "id": 31645, + "name": "Kate Waynesboro", + "site_detail_url": "https://comicvine.gamespot.com/kate-waynesboro/4005-31645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2191/", + "id": 2191, + "name": "Katie Power", + "site_detail_url": "https://comicvine.gamespot.com/katie-power/4005-2191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30150/", + "id": 30150, + "name": "Katos", + "site_detail_url": "https://comicvine.gamespot.com/katos/4005-30150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6291/", + "id": 6291, + "name": "Ken Ellis", + "site_detail_url": "https://comicvine.gamespot.com/ken-ellis/4005-6291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10230/", + "id": 10230, + "name": "Kevin Masterson", + "site_detail_url": "https://comicvine.gamespot.com/kevin-masterson/4005-10230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7238/", + "id": 7238, + "name": "Kid Colt", + "site_detail_url": "https://comicvine.gamespot.com/kid-colt/4005-7238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134907/", + "id": 134907, + "name": "Kid Kaiju", + "site_detail_url": "https://comicvine.gamespot.com/kid-kaiju/4005-134907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7233/", + "id": 7233, + "name": "Killraven", + "site_detail_url": "https://comicvine.gamespot.com/killraven/4005-7233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3548/", + "id": 3548, + "name": "Kitty Pryde", + "site_detail_url": "https://comicvine.gamespot.com/kitty-pryde/4005-3548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119130/", + "id": 119130, + "name": "Koi Boi", + "site_detail_url": "https://comicvine.gamespot.com/koi-boi/4005-119130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1686/", + "id": 1686, + "name": "Kon-El", + "site_detail_url": "https://comicvine.gamespot.com/kon-el/4005-1686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12490/", + "id": 12490, + "name": "Kong", + "site_detail_url": "https://comicvine.gamespot.com/kong/4005-12490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71353/", + "id": 71353, + "name": "Korr", + "site_detail_url": "https://comicvine.gamespot.com/korr/4005-71353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2475/", + "id": 2475, + "name": "Kraven the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/kraven-the-hunter/4005-2475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23102/", + "id": 23102, + "name": "Kree Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/kree-giant-man/4005-23102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15287/", + "id": 15287, + "name": "Kristy Watson", + "site_detail_url": "https://comicvine.gamespot.com/kristy-watson/4005-15287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133958/", + "id": 133958, + "name": "Kushala", + "site_detail_url": "https://comicvine.gamespot.com/kushala/4005-133958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149058/", + "id": 149058, + "name": "Lacey", + "site_detail_url": "https://comicvine.gamespot.com/lacey/4005-149058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109604/", + "id": 109604, + "name": "Lady Spider", + "site_detail_url": "https://comicvine.gamespot.com/lady-spider/4005-109604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37730/", + "id": 37730, + "name": "Lady Tuvia", + "site_detail_url": "https://comicvine.gamespot.com/lady-tuvia/4005-37730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15634/", + "id": 15634, + "name": "Lana", + "site_detail_url": "https://comicvine.gamespot.com/lana/4005-15634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15266/", + "id": 15266, + "name": "Lance Bannon", + "site_detail_url": "https://comicvine.gamespot.com/lance-bannon/4005-15266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35621/", + "id": 35621, + "name": "Leap-Frog", + "site_detail_url": "https://comicvine.gamespot.com/leap-frog/4005-35621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60284/", + "id": 60284, + "name": "Lectronn", + "site_detail_url": "https://comicvine.gamespot.com/lectronn/4005-60284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3193/", + "id": 3193, + "name": "Leech", + "site_detail_url": "https://comicvine.gamespot.com/leech/4005-3193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105832/", + "id": 105832, + "name": "Leo Fitz", + "site_detail_url": "https://comicvine.gamespot.com/leo-fitz/4005-105832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45743/", + "id": 45743, + "name": "Leo Zelinsky", + "site_detail_url": "https://comicvine.gamespot.com/leo-zelinsky/4005-45743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92271/", + "id": 92271, + "name": "Li Ling Potter", + "site_detail_url": "https://comicvine.gamespot.com/li-ling-potter/4005-92271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125322/", + "id": 125322, + "name": "Lien Tang", + "site_detail_url": "https://comicvine.gamespot.com/lien-tang/4005-125322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11110/", + "id": 11110, + "name": "Lieutenant William Lamont", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-william-lamont/4005-11110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6144/", + "id": 6144, + "name": "Lilandra", + "site_detail_url": "https://comicvine.gamespot.com/lilandra/4005-6144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27269/", + "id": 27269, + "name": "Lin Sun", + "site_detail_url": "https://comicvine.gamespot.com/lin-sun/4005-27269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30091/", + "id": 30091, + "name": "Living Brain", + "site_detail_url": "https://comicvine.gamespot.com/living-brain/4005-30091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3315/", + "id": 3315, + "name": "Living Lightning", + "site_detail_url": "https://comicvine.gamespot.com/living-lightning/4005-3315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13939/", + "id": 13939, + "name": "Living Mummy", + "site_detail_url": "https://comicvine.gamespot.com/living-mummy/4005-13939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15408/", + "id": 15408, + "name": "Liz Allan", + "site_detail_url": "https://comicvine.gamespot.com/liz-allan/4005-15408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1488/", + "id": 1488, + "name": "Lizard", + "site_detail_url": "https://comicvine.gamespot.com/lizard/4005-1488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4444/", + "id": 4444, + "name": "Lockheed", + "site_detail_url": "https://comicvine.gamespot.com/lockheed/4005-4444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3534/", + "id": 3534, + "name": "Lockjaw", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw/4005-3534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4324/", + "id": 4324, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4005-4324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33111/", + "id": 33111, + "name": "Lonesome Pinky", + "site_detail_url": "https://comicvine.gamespot.com/lonesome-pinky/4005-33111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85096/", + "id": 85096, + "name": "Longlegs Secundus", + "site_detail_url": "https://comicvine.gamespot.com/longlegs-secundus/4005-85096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6757/", + "id": 6757, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/longshot/4005-6757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161175/", + "id": 161175, + "name": "Lord Spider", + "site_detail_url": "https://comicvine.gamespot.com/lord-spider/4005-161175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23477/", + "id": 23477, + "name": "Lou Snider", + "site_detail_url": "https://comicvine.gamespot.com/lou-snider/4005-23477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19364/", + "id": 19364, + "name": "Lt. Tara Curson", + "site_detail_url": "https://comicvine.gamespot.com/lt-tara-curson/4005-19364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1450/", + "id": 1450, + "name": "Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage/4005-1450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10962/", + "id": 10962, + "name": "Luna", + "site_detail_url": "https://comicvine.gamespot.com/luna/4005-10962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86392/", + "id": 86392, + "name": "Luther Manning", + "site_detail_url": "https://comicvine.gamespot.com/luther-manning/4005-86392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11892/", + "id": 11892, + "name": "Lyja", + "site_detail_url": "https://comicvine.gamespot.com/lyja/4005-11892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45193/", + "id": 45193, + "name": "Lyla", + "site_detail_url": "https://comicvine.gamespot.com/lyla/4005-45193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154762/", + "id": 154762, + "name": "Mac Porter", + "site_detail_url": "https://comicvine.gamespot.com/mac-porter/4005-154762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7242/", + "id": 7242, + "name": "Machine Man", + "site_detail_url": "https://comicvine.gamespot.com/machine-man/4005-7242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10670/", + "id": 10670, + "name": "Madame Web", + "site_detail_url": "https://comicvine.gamespot.com/madame-web/4005-10670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7910/", + "id": 7910, + "name": "Madrox", + "site_detail_url": "https://comicvine.gamespot.com/madrox/4005-7910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7251/", + "id": 7251, + "name": "Magdalene", + "site_detail_url": "https://comicvine.gamespot.com/magdalene/4005-7251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27190/", + "id": 27190, + "name": "Maggie Lorca", + "site_detail_url": "https://comicvine.gamespot.com/maggie-lorca/4005-27190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8303/", + "id": 8303, + "name": "Magik", + "site_detail_url": "https://comicvine.gamespot.com/magik/4005-8303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4558/", + "id": 4558, + "name": "Magma", + "site_detail_url": "https://comicvine.gamespot.com/magma/4005-4558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78493/", + "id": 78493, + "name": "Magnetic Man", + "site_detail_url": "https://comicvine.gamespot.com/magnetic-man/4005-78493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1441/", + "id": 1441, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4005-1441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9366/", + "id": 9366, + "name": "Major Mapleleaf", + "site_detail_url": "https://comicvine.gamespot.com/major-mapleleaf/4005-9366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75712/", + "id": 75712, + "name": "Makina", + "site_detail_url": "https://comicvine.gamespot.com/makina/4005-75712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4988/", + "id": 4988, + "name": "Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/man-thing/4005-4988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83476/", + "id": 83476, + "name": "Mania", + "site_detail_url": "https://comicvine.gamespot.com/mania/4005-83476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62072/", + "id": 62072, + "name": "Manifold", + "site_detail_url": "https://comicvine.gamespot.com/manifold/4005-62072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61756/", + "id": 61756, + "name": "Manphibian", + "site_detail_url": "https://comicvine.gamespot.com/manphibian/4005-61756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3324/", + "id": 3324, + "name": "Mantis", + "site_detail_url": "https://comicvine.gamespot.com/mantis/4005-3324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172703/", + "id": 172703, + "name": "Marcus Momplaisir", + "site_detail_url": "https://comicvine.gamespot.com/marcus-momplaisir/4005-172703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16095/", + "id": 16095, + "name": "Marcus Stone", + "site_detail_url": "https://comicvine.gamespot.com/marcus-stone/4005-16095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15364/", + "id": 15364, + "name": "Marcy Kane", + "site_detail_url": "https://comicvine.gamespot.com/marcy-kane/4005-15364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40824/", + "id": 40824, + "name": "Maria Hill", + "site_detail_url": "https://comicvine.gamespot.com/maria-hill/4005-40824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111540/", + "id": 111540, + "name": "Marioac", + "site_detail_url": "https://comicvine.gamespot.com/marioac/4005-111540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10671/", + "id": 10671, + "name": "Marla Jameson", + "site_detail_url": "https://comicvine.gamespot.com/marla-jameson/4005-10671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12600/", + "id": 12600, + "name": "Marrina", + "site_detail_url": "https://comicvine.gamespot.com/marrina/4005-12600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13726/", + "id": 13726, + "name": "Marrow", + "site_detail_url": "https://comicvine.gamespot.com/marrow/4005-13726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11536/", + "id": 11536, + "name": "Martha Connors", + "site_detail_url": "https://comicvine.gamespot.com/martha-connors/4005-11536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26160/", + "id": 26160, + "name": "Martha McBride", + "site_detail_url": "https://comicvine.gamespot.com/martha-mcbride/4005-26160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15267/", + "id": 15267, + "name": "Martha Robertson", + "site_detail_url": "https://comicvine.gamespot.com/martha-robertson/4005-15267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7569/", + "id": 7569, + "name": "Martine Bancroft", + "site_detail_url": "https://comicvine.gamespot.com/martine-bancroft/4005-7569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2167/", + "id": 2167, + "name": "Martinex", + "site_detail_url": "https://comicvine.gamespot.com/martinex/4005-2167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69420/", + "id": 69420, + "name": "Mary Beck", + "site_detail_url": "https://comicvine.gamespot.com/mary-beck/4005-69420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13380/", + "id": 13380, + "name": "Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane/4005-13380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15262/", + "id": 15262, + "name": "Mary Parker", + "site_detail_url": "https://comicvine.gamespot.com/mary-parker/4005-15262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110805/", + "id": 110805, + "name": "Mary Parker (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/mary-parker-lmd/4005-110805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124916/", + "id": 124916, + "name": "Masacre", + "site_detail_url": "https://comicvine.gamespot.com/masacre/4005-124916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52672/", + "id": 52672, + "name": "Masked Marvel", + "site_detail_url": "https://comicvine.gamespot.com/masked-marvel/4005-52672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7252/", + "id": 7252, + "name": "Masque", + "site_detail_url": "https://comicvine.gamespot.com/masque/4005-7252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60776/", + "id": 60776, + "name": "Master Izo", + "site_detail_url": "https://comicvine.gamespot.com/master-izo/4005-60776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156502/", + "id": 156502, + "name": "Master Matrix", + "site_detail_url": "https://comicvine.gamespot.com/master-matrix/4005-156502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135308/", + "id": 135308, + "name": "Mateo Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/mateo-rodriguez/4005-135308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41988/", + "id": 41988, + "name": "Mattie Franklin", + "site_detail_url": "https://comicvine.gamespot.com/mattie-franklin/4005-41988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74419/", + "id": 74419, + "name": "Max Modell", + "site_detail_url": "https://comicvine.gamespot.com/max-modell/4005-74419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25215/", + "id": 25215, + "name": "Maxie Shiffman", + "site_detail_url": "https://comicvine.gamespot.com/maxie-shiffman/4005-25215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173218/", + "id": 173218, + "name": "Maxine Danger", + "site_detail_url": "https://comicvine.gamespot.com/maxine-danger/4005-173218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7548/", + "id": 7548, + "name": "Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/mayhem/4005-7548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61776/", + "id": 61776, + "name": "Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/mayhem/4005-61776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4327/", + "id": 4327, + "name": "Medusa", + "site_detail_url": "https://comicvine.gamespot.com/medusa/4005-4327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7604/", + "id": 7604, + "name": "Meggan", + "site_detail_url": "https://comicvine.gamespot.com/meggan/4005-7604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46518/", + "id": 46518, + "name": "Meiko Yin", + "site_detail_url": "https://comicvine.gamespot.com/meiko-yin/4005-46518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105830/", + "id": 105830, + "name": "Melinda May", + "site_detail_url": "https://comicvine.gamespot.com/melinda-may/4005-105830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113562/", + "id": 113562, + "name": "Melinda Morrison", + "site_detail_url": "https://comicvine.gamespot.com/melinda-morrison/4005-113562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15490/", + "id": 15490, + "name": "Melvin Gooner", + "site_detail_url": "https://comicvine.gamespot.com/melvin-gooner/4005-15490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15653/", + "id": 15653, + "name": "Merideth Campbell", + "site_detail_url": "https://comicvine.gamespot.com/merideth-campbell/4005-15653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33892/", + "id": 33892, + "name": "Meteor Man", + "site_detail_url": "https://comicvine.gamespot.com/meteor-man/4005-33892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69913/", + "id": 69913, + "name": "Mettle", + "site_detail_url": "https://comicvine.gamespot.com/mettle/4005-69913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15378/", + "id": 15378, + "name": "Mia Carrera", + "site_detail_url": "https://comicvine.gamespot.com/mia-carrera/4005-15378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57017/", + "id": 57017, + "name": "Mia Flores", + "site_detail_url": "https://comicvine.gamespot.com/mia-flores/4005-57017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62208/", + "id": 62208, + "name": "Michele Gonzales", + "site_detail_url": "https://comicvine.gamespot.com/michele-gonzales/4005-62208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166017/", + "id": 166017, + "name": "Michelle Jones", + "site_detail_url": "https://comicvine.gamespot.com/michelle-jones/4005-166017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71351/", + "id": 71351, + "name": "Mik", + "site_detail_url": "https://comicvine.gamespot.com/mik/4005-71351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79420/", + "id": 79420, + "name": "Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales/4005-79420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9033/", + "id": 9033, + "name": "Milla Donovan", + "site_detail_url": "https://comicvine.gamespot.com/milla-donovan/4005-9033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12546/", + "id": 12546, + "name": "Mimic", + "site_detail_url": "https://comicvine.gamespot.com/mimic/4005-12546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135307/", + "id": 135307, + "name": "Min Wei", + "site_detail_url": "https://comicvine.gamespot.com/min-wei/4005-135307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133960/", + "id": 133960, + "name": "Mindful One", + "site_detail_url": "https://comicvine.gamespot.com/mindful-one/4005-133960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30146/", + "id": 30146, + "name": "Mindsinger", + "site_detail_url": "https://comicvine.gamespot.com/mindsinger/4005-30146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23587/", + "id": 23587, + "name": "Mindy Brown", + "site_detail_url": "https://comicvine.gamespot.com/mindy-brown/4005-23587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126651/", + "id": 126651, + "name": "Mints", + "site_detail_url": "https://comicvine.gamespot.com/mints/4005-126651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104785/", + "id": 104785, + "name": "Miss Kay", + "site_detail_url": "https://comicvine.gamespot.com/miss-kay/4005-104785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1491/", + "id": 1491, + "name": "Misty Knight", + "site_detail_url": "https://comicvine.gamespot.com/misty-knight/4005-1491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2497/", + "id": 2497, + "name": "Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird/4005-2497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8304/", + "id": 8304, + "name": "Moira MacTaggert", + "site_detail_url": "https://comicvine.gamespot.com/moira-mactaggert/4005-8304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1936/", + "id": 1936, + "name": "Molly Hayes", + "site_detail_url": "https://comicvine.gamespot.com/molly-hayes/4005-1936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11554/", + "id": 11554, + "name": "Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/molten-man/4005-11554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69702/", + "id": 69702, + "name": "Monica Chang", + "site_detail_url": "https://comicvine.gamespot.com/monica-chang/4005-69702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7224/", + "id": 7224, + "name": "Moon Boy", + "site_detail_url": "https://comicvine.gamespot.com/moon-boy/4005-7224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124409/", + "id": 124409, + "name": "Moon Girl", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl/4005-124409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1493/", + "id": 1493, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4005-1493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7214/", + "id": 7214, + "name": "Moondragon", + "site_detail_url": "https://comicvine.gamespot.com/moondragon/4005-7214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41157/", + "id": 41157, + "name": "Moonstalker", + "site_detail_url": "https://comicvine.gamespot.com/moonstalker/4005-41157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1463/", + "id": 1463, + "name": "Moonstar", + "site_detail_url": "https://comicvine.gamespot.com/moonstar/4005-1463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6722/", + "id": 6722, + "name": "Morbius", + "site_detail_url": "https://comicvine.gamespot.com/morbius/4005-6722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12547/", + "id": 12547, + "name": "Morph", + "site_detail_url": "https://comicvine.gamespot.com/morph/4005-12547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33175/", + "id": 33175, + "name": "Morris Sloan", + "site_detail_url": "https://comicvine.gamespot.com/morris-sloan/4005-33175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130737/", + "id": 130737, + "name": "Mosaic", + "site_detail_url": "https://comicvine.gamespot.com/mosaic/4005-130737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155168/", + "id": 155168, + "name": "Mosquito Man", + "site_detail_url": "https://comicvine.gamespot.com/mosquito-man/4005-155168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28287/", + "id": 28287, + "name": "Mother Inferior", + "site_detail_url": "https://comicvine.gamespot.com/mother-inferior/4005-28287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52689/", + "id": 52689, + "name": "Mother Majowski", + "site_detail_url": "https://comicvine.gamespot.com/mother-majowski/4005-52689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166299/", + "id": 166299, + "name": "Mr. Aziz", + "site_detail_url": "https://comicvine.gamespot.com/mr-aziz/4005-166299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69421/", + "id": 69421, + "name": "Mr. Beck", + "site_detail_url": "https://comicvine.gamespot.com/mr-beck/4005-69421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166295/", + "id": 166295, + "name": "Mr. Ditkovich", + "site_detail_url": "https://comicvine.gamespot.com/mr-ditkovich/4005-166295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2151/", + "id": 2151, + "name": "Mr. Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/mr-fantastic/4005-2151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2486/", + "id": 2486, + "name": "Mr. Immortal", + "site_detail_url": "https://comicvine.gamespot.com/mr-immortal/4005-2486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30001/", + "id": 30001, + "name": "Mrs. Muggins", + "site_detail_url": "https://comicvine.gamespot.com/mrs-muggins/4005-30001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78932/", + "id": 78932, + "name": "Ms America", + "site_detail_url": "https://comicvine.gamespot.com/ms-america/4005-78932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61996/", + "id": 61996, + "name": "Ms. Lion", + "site_detail_url": "https://comicvine.gamespot.com/ms-lion/4005-61996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85284/", + "id": 85284, + "name": "Ms. Thing", + "site_detail_url": "https://comicvine.gamespot.com/ms-thing/4005-85284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60343/", + "id": 60343, + "name": "Muck Monster", + "site_detail_url": "https://comicvine.gamespot.com/muck-monster/4005-60343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169030/", + "id": 169030, + "name": "Musty the Mustang", + "site_detail_url": "https://comicvine.gamespot.com/musty-the-mustang/4005-169030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40676/", + "id": 40676, + "name": "Mutant 2099", + "site_detail_url": "https://comicvine.gamespot.com/mutant-2099/4005-40676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129406/", + "id": 129406, + "name": "Nadia van Dyne", + "site_detail_url": "https://comicvine.gamespot.com/nadia-van-dyne/4005-129406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1476/", + "id": 1476, + "name": "Namor", + "site_detail_url": "https://comicvine.gamespot.com/namor/4005-1476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72634/", + "id": 72634, + "name": "Namora", + "site_detail_url": "https://comicvine.gamespot.com/namora/4005-72634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2113/", + "id": 2113, + "name": "Namorita", + "site_detail_url": "https://comicvine.gamespot.com/namorita/4005-2113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164823/", + "id": 164823, + "name": "Nana", + "site_detail_url": "https://comicvine.gamespot.com/nana/4005-164823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13739/", + "id": 13739, + "name": "Nancy Stacy", + "site_detail_url": "https://comicvine.gamespot.com/nancy-stacy/4005-13739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29012/", + "id": 29012, + "name": "Nathan Lubensky", + "site_detail_url": "https://comicvine.gamespot.com/nathan-lubensky/4005-29012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14558/", + "id": 14558, + "name": "Nebula", + "site_detail_url": "https://comicvine.gamespot.com/nebula/4005-14558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12354/", + "id": 12354, + "name": "Ned Leeds", + "site_detail_url": "https://comicvine.gamespot.com/ned-leeds/4005-12354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41178/", + "id": 41178, + "name": "Negasonic Teenage Warhead", + "site_detail_url": "https://comicvine.gamespot.com/negasonic-teenage-warhead/4005-41178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6728/", + "id": 6728, + "name": "Neil Garrett", + "site_detail_url": "https://comicvine.gamespot.com/neil-garrett/4005-6728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44692/", + "id": 44692, + "name": "Network", + "site_detail_url": "https://comicvine.gamespot.com/network/4005-44692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21607/", + "id": 21607, + "name": "NFL Superpro", + "site_detail_url": "https://comicvine.gamespot.com/nfl-superpro/4005-21607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3202/", + "id": 3202, + "name": "Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury/4005-3202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80752/", + "id": 80752, + "name": "Nick Fury Jr.", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-jr/4005-80752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1940/", + "id": 1940, + "name": "Nico Minoru", + "site_detail_url": "https://comicvine.gamespot.com/nico-minoru/4005-1940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2098/", + "id": 2098, + "name": "Night Thrasher", + "site_detail_url": "https://comicvine.gamespot.com/night-thrasher/4005-2098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1461/", + "id": 1461, + "name": "Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler/4005-1461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4832/", + "id": 4832, + "name": "Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/nighthawk/4005-4832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88156/", + "id": 88156, + "name": "Nightmask", + "site_detail_url": "https://comicvine.gamespot.com/nightmask/4005-88156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7505/", + "id": 7505, + "name": "Nightwatch", + "site_detail_url": "https://comicvine.gamespot.com/nightwatch/4005-7505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13897/", + "id": 13897, + "name": "Nikki", + "site_detail_url": "https://comicvine.gamespot.com/nikki/4005-13897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133959/", + "id": 133959, + "name": "Nina the Conjuror", + "site_detail_url": "https://comicvine.gamespot.com/nina-the-conjuror/4005-133959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56975/", + "id": 56975, + "name": "Noble Kale", + "site_detail_url": "https://comicvine.gamespot.com/noble-kale/4005-56975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4565/", + "id": 4565, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-4565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52814/", + "id": 52814, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-52814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11565/", + "id": 11565, + "name": "Noh-Varr", + "site_detail_url": "https://comicvine.gamespot.com/noh-varr/4005-11565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58731/", + "id": 58731, + "name": "Norah Winters", + "site_detail_url": "https://comicvine.gamespot.com/norah-winters/4005-58731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11552/", + "id": 11552, + "name": "Normie Osborn", + "site_detail_url": "https://comicvine.gamespot.com/normie-osborn/4005-11552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3190/", + "id": 3190, + "name": "Northstar", + "site_detail_url": "https://comicvine.gamespot.com/northstar/4005-3190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32607/", + "id": 32607, + "name": "Nose Norton", + "site_detail_url": "https://comicvine.gamespot.com/nose-norton/4005-32607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2105/", + "id": 2105, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4005-2105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85092/", + "id": 85092, + "name": "Nurotox", + "site_detail_url": "https://comicvine.gamespot.com/nurotox/4005-85092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3507/", + "id": 3507, + "name": "Odin", + "site_detail_url": "https://comicvine.gamespot.com/odin/4005-3507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19918/", + "id": 19918, + "name": "Okoye", + "site_detail_url": "https://comicvine.gamespot.com/okoye/4005-19918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40610/", + "id": 40610, + "name": "Old Lace", + "site_detail_url": "https://comicvine.gamespot.com/old-lace/4005-40610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44473/", + "id": 44473, + "name": "One-Above-All", + "site_detail_url": "https://comicvine.gamespot.com/one-above-all/4005-44473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84678/", + "id": 84678, + "name": "Onome", + "site_detail_url": "https://comicvine.gamespot.com/onome/4005-84678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6467/", + "id": 6467, + "name": "Optimus Prime", + "site_detail_url": "https://comicvine.gamespot.com/optimus-prime/4005-6467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153111/", + "id": 153111, + "name": "Orb Weaver", + "site_detail_url": "https://comicvine.gamespot.com/orb-weaver/4005-153111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12912/", + "id": 12912, + "name": "Orphan", + "site_detail_url": "https://comicvine.gamespot.com/orphan/4005-12912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15483/", + "id": 15483, + "name": "Oscar McDonnell", + "site_detail_url": "https://comicvine.gamespot.com/oscar-mcdonnell/4005-15483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55823/", + "id": 55823, + "name": "Overdrive", + "site_detail_url": "https://comicvine.gamespot.com/overdrive/4005-55823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13908/", + "id": 13908, + "name": "Owl", + "site_detail_url": "https://comicvine.gamespot.com/owl/4005-13908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126649/", + "id": 126649, + "name": "Paintball", + "site_detail_url": "https://comicvine.gamespot.com/paintball/4005-126649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10584/", + "id": 10584, + "name": "Paladin", + "site_detail_url": "https://comicvine.gamespot.com/paladin/4005-10584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6740/", + "id": 6740, + "name": "Patricia Robertson", + "site_detail_url": "https://comicvine.gamespot.com/patricia-robertson/4005-6740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25581/", + "id": 25581, + "name": "Patrick Mulligan", + "site_detail_url": "https://comicvine.gamespot.com/patrick-mulligan/4005-25581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2258/", + "id": 2258, + "name": "Patriot", + "site_detail_url": "https://comicvine.gamespot.com/patriot/4005-2258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57903/", + "id": 57903, + "name": "Paul Anselm", + "site_detail_url": "https://comicvine.gamespot.com/paul-anselm/4005-57903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15447/", + "id": 15447, + "name": "Paul Stacy", + "site_detail_url": "https://comicvine.gamespot.com/paul-stacy/4005-15447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14052/", + "id": 14052, + "name": "Paul The Gorilla", + "site_detail_url": "https://comicvine.gamespot.com/paul-the-gorilla/4005-14052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72885/", + "id": 72885, + "name": "Pavitr Prabhakar", + "site_detail_url": "https://comicvine.gamespot.com/pavitr-prabhakar/4005-72885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35979/", + "id": 35979, + "name": "Peggy Carter", + "site_detail_url": "https://comicvine.gamespot.com/peggy-carter/4005-35979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111755/", + "id": 111755, + "name": "Peggy Rae", + "site_detail_url": "https://comicvine.gamespot.com/peggy-rae/4005-111755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4263/", + "id": 4263, + "name": "Pepper Potts", + "site_detail_url": "https://comicvine.gamespot.com/pepper-potts/4005-4263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48165/", + "id": 48165, + "name": "Pester", + "site_detail_url": "https://comicvine.gamespot.com/pester/4005-48165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124552/", + "id": 124552, + "name": "Petra Parker", + "site_detail_url": "https://comicvine.gamespot.com/petra-parker/4005-124552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11490/", + "id": 11490, + "name": "Phat", + "site_detail_url": "https://comicvine.gamespot.com/phat/4005-11490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70860/", + "id": 70860, + "name": "Phil Coulson", + "site_detail_url": "https://comicvine.gamespot.com/phil-coulson/4005-70860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25574/", + "id": 25574, + "name": "Phil Sheldon", + "site_detail_url": "https://comicvine.gamespot.com/phil-sheldon/4005-25574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2246/", + "id": 2246, + "name": "Phil Urich", + "site_detail_url": "https://comicvine.gamespot.com/phil-urich/4005-2246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34056/", + "id": 34056, + "name": "Phillip Chang", + "site_detail_url": "https://comicvine.gamespot.com/phillip-chang/4005-34056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40922/", + "id": 40922, + "name": "Phyla-Vell", + "site_detail_url": "https://comicvine.gamespot.com/phyla-vell/4005-40922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46151/", + "id": 46151, + "name": "Pink Power Ranger", + "site_detail_url": "https://comicvine.gamespot.com/pink-power-ranger/4005-46151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15463/", + "id": 15463, + "name": "Poison", + "site_detail_url": "https://comicvine.gamespot.com/poison/4005-15463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1473/", + "id": 1473, + "name": "Polaris", + "site_detail_url": "https://comicvine.gamespot.com/polaris/4005-1473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7464/", + "id": 7464, + "name": "Powdered Toast Man", + "site_detail_url": "https://comicvine.gamespot.com/powdered-toast-man/4005-7464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71023/", + "id": 71023, + "name": "Power Man (Alvarez)", + "site_detail_url": "https://comicvine.gamespot.com/power-man-alvarez/4005-71023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2901/", + "id": 2901, + "name": "Prime", + "site_detail_url": "https://comicvine.gamespot.com/prime/4005-2901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4804/", + "id": 4804, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/prodigy/4005-4804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81160/", + "id": 81160, + "name": "Professor Toshiro Mikashi", + "site_detail_url": "https://comicvine.gamespot.com/professor-toshiro-mikashi/4005-81160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1505/", + "id": 1505, + "name": "Professor X", + "site_detail_url": "https://comicvine.gamespot.com/professor-x/4005-1505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41833/", + "id": 41833, + "name": "Prowl", + "site_detail_url": "https://comicvine.gamespot.com/prowl/4005-41833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14874/", + "id": 14874, + "name": "Prowler", + "site_detail_url": "https://comicvine.gamespot.com/prowler/4005-14874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154292/", + "id": 154292, + "name": "Prowler (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/prowler-clone/4005-154292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126650/", + "id": 126650, + "name": "Psi", + "site_detail_url": "https://comicvine.gamespot.com/psi/4005-126650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85094/", + "id": 85094, + "name": "Psider-Man", + "site_detail_url": "https://comicvine.gamespot.com/psider-man/4005-85094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7333/", + "id": 7333, + "name": "Psimon", + "site_detail_url": "https://comicvine.gamespot.com/psimon/4005-7333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40717/", + "id": 40717, + "name": "Puck", + "site_detail_url": "https://comicvine.gamespot.com/puck/4005-40717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5010/", + "id": 5010, + "name": "Puck", + "site_detail_url": "https://comicvine.gamespot.com/puck/4005-5010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15238/", + "id": 15238, + "name": "Puma", + "site_detail_url": "https://comicvine.gamespot.com/puma/4005-15238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1525/", + "id": 1525, + "name": "Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher/4005-1525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43174/", + "id": 43174, + "name": "Quake", + "site_detail_url": "https://comicvine.gamespot.com/quake/4005-43174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3319/", + "id": 3319, + "name": "Quasar", + "site_detail_url": "https://comicvine.gamespot.com/quasar/4005-3319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50406/", + "id": 50406, + "name": "Queen Cat", + "site_detail_url": "https://comicvine.gamespot.com/queen-cat/4005-50406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40583/", + "id": 40583, + "name": "Quentin Quire", + "site_detail_url": "https://comicvine.gamespot.com/quentin-quire/4005-40583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1467/", + "id": 1467, + "name": "Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver/4005-1467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79900/", + "id": 79900, + "name": "Rachel Alves", + "site_detail_url": "https://comicvine.gamespot.com/rachel-alves/4005-79900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30397/", + "id": 30397, + "name": "Rachel Carpenter", + "site_detail_url": "https://comicvine.gamespot.com/rachel-carpenter/4005-30397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36086/", + "id": 36086, + "name": "Rafael Scarfe", + "site_detail_url": "https://comicvine.gamespot.com/rafael-scarfe/4005-36086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2097/", + "id": 2097, + "name": "Rage", + "site_detail_url": "https://comicvine.gamespot.com/rage/4005-2097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23473/", + "id": 23473, + "name": "Rainmaker", + "site_detail_url": "https://comicvine.gamespot.com/rainmaker/4005-23473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113576/", + "id": 113576, + "name": "Ramon Grant", + "site_detail_url": "https://comicvine.gamespot.com/ramon-grant/4005-113576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52524/", + "id": 52524, + "name": "Randall Crowne", + "site_detail_url": "https://comicvine.gamespot.com/randall-crowne/4005-52524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17620/", + "id": 17620, + "name": "Randy Robertson", + "site_detail_url": "https://comicvine.gamespot.com/randy-robertson/4005-17620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48484/", + "id": 48484, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-48484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7408/", + "id": 7408, + "name": "Ratchet", + "site_detail_url": "https://comicvine.gamespot.com/ratchet/4005-7408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23036/", + "id": 23036, + "name": "Raymond Warren", + "site_detail_url": "https://comicvine.gamespot.com/raymond-warren/4005-23036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6057/", + "id": 6057, + "name": "Razorback", + "site_detail_url": "https://comicvine.gamespot.com/razorback/4005-6057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107115/", + "id": 107115, + "name": "Reader", + "site_detail_url": "https://comicvine.gamespot.com/reader/4005-107115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49904/", + "id": 49904, + "name": "Red 9", + "site_detail_url": "https://comicvine.gamespot.com/red-9/4005-49904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45922/", + "id": 45922, + "name": "Red Power Ranger", + "site_detail_url": "https://comicvine.gamespot.com/red-power-ranger/4005-45922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53152/", + "id": 53152, + "name": "Red Queen", + "site_detail_url": "https://comicvine.gamespot.com/red-queen/4005-53152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2439/", + "id": 2439, + "name": "Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/red-sonja/4005-2439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149059/", + "id": 149059, + "name": "Reese", + "site_detail_url": "https://comicvine.gamespot.com/reese/4005-149059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7465/", + "id": 7465, + "name": "Ren Hoek", + "site_detail_url": "https://comicvine.gamespot.com/ren-hoek/4005-7465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60768/", + "id": 60768, + "name": "Reptil", + "site_detail_url": "https://comicvine.gamespot.com/reptil/4005-60768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126273/", + "id": 126273, + "name": "Rhonda Fleming", + "site_detail_url": "https://comicvine.gamespot.com/rhonda-fleming/4005-126273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15261/", + "id": 15261, + "name": "Richard Parker", + "site_detail_url": "https://comicvine.gamespot.com/richard-parker/4005-15261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110804/", + "id": 110804, + "name": "Richard Parker (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/richard-parker-lmd/4005-110804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71218/", + "id": 71218, + "name": "Richie Parker", + "site_detail_url": "https://comicvine.gamespot.com/richie-parker/4005-71218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2248/", + "id": 2248, + "name": "Rick Jones", + "site_detail_url": "https://comicvine.gamespot.com/rick-jones/4005-2248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28110/", + "id": 28110, + "name": "Ricky Dichinson", + "site_detail_url": "https://comicvine.gamespot.com/ricky-dichinson/4005-28110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2245/", + "id": 2245, + "name": "Ricochet", + "site_detail_url": "https://comicvine.gamespot.com/ricochet/4005-2245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10988/", + "id": 10988, + "name": "Rictor", + "site_detail_url": "https://comicvine.gamespot.com/rictor/4005-10988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52669/", + "id": 52669, + "name": "Rigger Ruiz", + "site_detail_url": "https://comicvine.gamespot.com/rigger-ruiz/4005-52669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4234/", + "id": 4234, + "name": "Rio Morales", + "site_detail_url": "https://comicvine.gamespot.com/rio-morales/4005-4234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175607/", + "id": 175607, + "name": "Rita Moreno", + "site_detail_url": "https://comicvine.gamespot.com/rita-moreno/4005-175607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134712/", + "id": 134712, + "name": "Ro Bloodroot", + "site_detail_url": "https://comicvine.gamespot.com/ro-bloodroot/4005-134712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1782/", + "id": 1782, + "name": "Robbie Robertson", + "site_detail_url": "https://comicvine.gamespot.com/robbie-robertson/4005-1782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15448/", + "id": 15448, + "name": "Robin Vega", + "site_detail_url": "https://comicvine.gamespot.com/robin-vega/4005-15448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84636/", + "id": 84636, + "name": "Robyn Hood", + "site_detail_url": "https://comicvine.gamespot.com/robyn-hood/4005-84636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32814/", + "id": 32814, + "name": "Rocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon/4005-32814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14875/", + "id": 14875, + "name": "Rocket Racer", + "site_detail_url": "https://comicvine.gamespot.com/rocket-racer/4005-14875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40456/", + "id": 40456, + "name": "Rockslide", + "site_detail_url": "https://comicvine.gamespot.com/rockslide/4005-40456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140682/", + "id": 140682, + "name": "Roger Harrington", + "site_detail_url": "https://comicvine.gamespot.com/roger-harrington/4005-140682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15365/", + "id": 15365, + "name": "Roger Hochberg", + "site_detail_url": "https://comicvine.gamespot.com/roger-hochberg/4005-15365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1446/", + "id": 1446, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4005-1446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2189/", + "id": 2189, + "name": "Rom", + "site_detail_url": "https://comicvine.gamespot.com/rom/4005-2189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166297/", + "id": 166297, + "name": "Rosalie Octavius", + "site_detail_url": "https://comicvine.gamespot.com/rosalie-octavius/4005-166297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126652/", + "id": 126652, + "name": "Rotatory", + "site_detail_url": "https://comicvine.gamespot.com/rotatory/4005-126652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74118/", + "id": 74118, + "name": "Royal Blue", + "site_detail_url": "https://comicvine.gamespot.com/royal-blue/4005-74118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38122/", + "id": 38122, + "name": "Rozalyn Backus", + "site_detail_url": "https://comicvine.gamespot.com/rozalyn-backus/4005-38122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147353/", + "id": 147353, + "name": "Rubylyn Bato", + "site_detail_url": "https://comicvine.gamespot.com/rubylyn-bato/4005-147353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157059/", + "id": 157059, + "name": "Rumor", + "site_detail_url": "https://comicvine.gamespot.com/rumor/4005-157059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13376/", + "id": 13376, + "name": "Rusty Collins", + "site_detail_url": "https://comicvine.gamespot.com/rusty-collins/4005-13376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42683/", + "id": 42683, + "name": "Ryu", + "site_detail_url": "https://comicvine.gamespot.com/ryu/4005-42683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28468/", + "id": 28468, + "name": "Sabbath Raven", + "site_detail_url": "https://comicvine.gamespot.com/sabbath-raven/4005-28468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5001/", + "id": 5001, + "name": "Sabra", + "site_detail_url": "https://comicvine.gamespot.com/sabra/4005-5001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82238/", + "id": 82238, + "name": "Sajani", + "site_detail_url": "https://comicvine.gamespot.com/sajani/4005-82238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42977/", + "id": 42977, + "name": "Sally Avril", + "site_detail_url": "https://comicvine.gamespot.com/sally-avril/4005-42977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40659/", + "id": 40659, + "name": "Sally Floyd", + "site_detail_url": "https://comicvine.gamespot.com/sally-floyd/4005-40659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82858/", + "id": 82858, + "name": "Sam Alexander", + "site_detail_url": "https://comicvine.gamespot.com/sam-alexander/4005-82858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175610/", + "id": 175610, + "name": "Sam the Robot", + "site_detail_url": "https://comicvine.gamespot.com/sam-the-robot/4005-175610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3544/", + "id": 3544, + "name": "Sandman", + "site_detail_url": "https://comicvine.gamespot.com/sandman/4005-3544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33846/", + "id": 33846, + "name": "Sandy Jones", + "site_detail_url": "https://comicvine.gamespot.com/sandy-jones/4005-33846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86441/", + "id": 86441, + "name": "Sandy Kintzler", + "site_detail_url": "https://comicvine.gamespot.com/sandy-kintzler/4005-86441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22143/", + "id": 22143, + "name": "Santa Claus", + "site_detail_url": "https://comicvine.gamespot.com/santa-claus/4005-22143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79707/", + "id": 79707, + "name": "Sara Bailey", + "site_detail_url": "https://comicvine.gamespot.com/sara-bailey/4005-79707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45762/", + "id": 45762, + "name": "Sarah Stacy", + "site_detail_url": "https://comicvine.gamespot.com/sarah-stacy/4005-45762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1478/", + "id": 1478, + "name": "Sasquatch", + "site_detail_url": "https://comicvine.gamespot.com/sasquatch/4005-1478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13783/", + "id": 13783, + "name": "Satana", + "site_detail_url": "https://comicvine.gamespot.com/satana/4005-13783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9456/", + "id": 9456, + "name": "Savage Steel", + "site_detail_url": "https://comicvine.gamespot.com/savage-steel/4005-9456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1466/", + "id": 1466, + "name": "Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch/4005-1466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33953/", + "id": 33953, + "name": "Schizoid Man", + "site_detail_url": "https://comicvine.gamespot.com/schizoid-man/4005-33953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10467/", + "id": 10467, + "name": "Scorn", + "site_detail_url": "https://comicvine.gamespot.com/scorn/4005-10467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84021/", + "id": 84021, + "name": "Scorpion (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/scorpion-clone/4005-84021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54834/", + "id": 54834, + "name": "Screwball", + "site_detail_url": "https://comicvine.gamespot.com/screwball/4005-54834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93081/", + "id": 93081, + "name": "Screwbeard", + "site_detail_url": "https://comicvine.gamespot.com/screwbeard/4005-93081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30147/", + "id": 30147, + "name": "Sea Witch", + "site_detail_url": "https://comicvine.gamespot.com/sea-witch/4005-30147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161233/", + "id": 161233, + "name": "Sea-Spider", + "site_detail_url": "https://comicvine.gamespot.com/sea-spider/4005-161233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1454/", + "id": 1454, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4005-1454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42522/", + "id": 42522, + "name": "Sepulchre", + "site_detail_url": "https://comicvine.gamespot.com/sepulchre/4005-42522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15660/", + "id": 15660, + "name": "Sergeant Tork", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-tork/4005-15660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2118/", + "id": 2118, + "name": "Sersi", + "site_detail_url": "https://comicvine.gamespot.com/sersi/4005-2118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52940/", + "id": 52940, + "name": "Seymour O'Reilly", + "site_detail_url": "https://comicvine.gamespot.com/seymour-oreilly/4005-52940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17635/", + "id": 17635, + "name": "Sha Shan", + "site_detail_url": "https://comicvine.gamespot.com/sha-shan/4005-17635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5017/", + "id": 5017, + "name": "Shaman", + "site_detail_url": "https://comicvine.gamespot.com/shaman/4005-5017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12716/", + "id": 12716, + "name": "Shang-Chi", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi/4005-12716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4579/", + "id": 4579, + "name": "Shanna", + "site_detail_url": "https://comicvine.gamespot.com/shanna/4005-4579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58041/", + "id": 58041, + "name": "Shard", + "site_detail_url": "https://comicvine.gamespot.com/shard/4005-58041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156862/", + "id": 156862, + "name": "Shari Sebbens", + "site_detail_url": "https://comicvine.gamespot.com/shari-sebbens/4005-156862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86424/", + "id": 86424, + "name": "Shark-Girl", + "site_detail_url": "https://comicvine.gamespot.com/shark-girl/4005-86424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63859/", + "id": 63859, + "name": "Sharon Banks", + "site_detail_url": "https://comicvine.gamespot.com/sharon-banks/4005-63859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38227/", + "id": 38227, + "name": "Sharon Carter", + "site_detail_url": "https://comicvine.gamespot.com/sharon-carter/4005-38227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20604/", + "id": 20604, + "name": "Sharon Ventura", + "site_detail_url": "https://comicvine.gamespot.com/sharon-ventura/4005-20604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2156/", + "id": 2156, + "name": "Shatterstar", + "site_detail_url": "https://comicvine.gamespot.com/shatterstar/4005-2156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1449/", + "id": 1449, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4005-1449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97443/", + "id": 97443, + "name": "Shiklah", + "site_detail_url": "https://comicvine.gamespot.com/shiklah/4005-97443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138651/", + "id": 138651, + "name": "Shine", + "site_detail_url": "https://comicvine.gamespot.com/shine/4005-138651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23829/", + "id": 23829, + "name": "Shirley Lewis", + "site_detail_url": "https://comicvine.gamespot.com/shirley-lewis/4005-23829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15451/", + "id": 15451, + "name": "SHOC", + "site_detail_url": "https://comicvine.gamespot.com/shoc/4005-15451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11951/", + "id": 11951, + "name": "Shotgun", + "site_detail_url": "https://comicvine.gamespot.com/shotgun/4005-11951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13844/", + "id": 13844, + "name": "Shroud", + "site_detail_url": "https://comicvine.gamespot.com/shroud/4005-13844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58997/", + "id": 58997, + "name": "Shuri", + "site_detail_url": "https://comicvine.gamespot.com/shuri/4005-58997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7200/", + "id": 7200, + "name": "Sif", + "site_detail_url": "https://comicvine.gamespot.com/sif/4005-7200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2119/", + "id": 2119, + "name": "Silhouette", + "site_detail_url": "https://comicvine.gamespot.com/silhouette/4005-2119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101483/", + "id": 101483, + "name": "Silk", + "site_detail_url": "https://comicvine.gamespot.com/silk/4005-101483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7608/", + "id": 7608, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable/4005-7608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2502/", + "id": 2502, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4005-2502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11341/", + "id": 11341, + "name": "Silverclaw", + "site_detail_url": "https://comicvine.gamespot.com/silverclaw/4005-11341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35959/", + "id": 35959, + "name": "Simon Stroud", + "site_detail_url": "https://comicvine.gamespot.com/simon-stroud/4005-35959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3181/", + "id": 3181, + "name": "Siryn", + "site_detail_url": "https://comicvine.gamespot.com/siryn/4005-3181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165193/", + "id": 165193, + "name": "Sister Dagger", + "site_detail_url": "https://comicvine.gamespot.com/sister-dagger/4005-165193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48518/", + "id": 48518, + "name": "Skaar", + "site_detail_url": "https://comicvine.gamespot.com/skaar/4005-48518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3194/", + "id": 3194, + "name": "Skids", + "site_detail_url": "https://comicvine.gamespot.com/skids/4005-3194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10566/", + "id": 10566, + "name": "Skin", + "site_detail_url": "https://comicvine.gamespot.com/skin/4005-10566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18614/", + "id": 18614, + "name": "Skye", + "site_detail_url": "https://comicvine.gamespot.com/skye/4005-18614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42983/", + "id": 42983, + "name": "Slapstick", + "site_detail_url": "https://comicvine.gamespot.com/slapstick/4005-42983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7601/", + "id": 7601, + "name": "Sleepwalker", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker/4005-7601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54525/", + "id": 54525, + "name": "Slingshot", + "site_detail_url": "https://comicvine.gamespot.com/slingshot/4005-54525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6091/", + "id": 6091, + "name": "Smasher", + "site_detail_url": "https://comicvine.gamespot.com/smasher/4005-6091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86443/", + "id": 86443, + "name": "Smasher (Kane)", + "site_detail_url": "https://comicvine.gamespot.com/smasher-kane/4005-86443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31074/", + "id": 31074, + "name": "Smithville Thunderbolt", + "site_detail_url": "https://comicvine.gamespot.com/smithville-thunderbolt/4005-31074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8474/", + "id": 8474, + "name": "Snowbird", + "site_detail_url": "https://comicvine.gamespot.com/snowbird/4005-8474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15485/", + "id": 15485, + "name": "Solo", + "site_detail_url": "https://comicvine.gamespot.com/solo/4005-15485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3281/", + "id": 3281, + "name": "Songbird", + "site_detail_url": "https://comicvine.gamespot.com/songbird/4005-3281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108612/", + "id": 108612, + "name": "SP//dr", + "site_detail_url": "https://comicvine.gamespot.com/sp-dr/4005-108612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11337/", + "id": 11337, + "name": "Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/spectrum/4005-11337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40518/", + "id": 40518, + "name": "Speed", + "site_detail_url": "https://comicvine.gamespot.com/speed/4005-40518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2104/", + "id": 2104, + "name": "Speedball", + "site_detail_url": "https://comicvine.gamespot.com/speedball/4005-2104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161232/", + "id": 161232, + "name": "Spidair", + "site_detail_url": "https://comicvine.gamespot.com/spidair/4005-161232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170174/", + "id": 170174, + "name": "Spider-Bot", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot/4005-170174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46768/", + "id": 46768, + "name": "Spider-Boy", + "site_detail_url": "https://comicvine.gamespot.com/spider-boy/4005-46768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152682/", + "id": 152682, + "name": "Spider-Byte", + "site_detail_url": "https://comicvine.gamespot.com/spider-byte/4005-152682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80841/", + "id": 80841, + "name": "Spider-Cat", + "site_detail_url": "https://comicvine.gamespot.com/spider-cat/4005-80841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40598/", + "id": 40598, + "name": "Spider-Girl (Corazón)", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-corazon/4005-40598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3365/", + "id": 3365, + "name": "Spider-Girl (Parker)", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-parker/4005-3365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8682/", + "id": 8682, + "name": "Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham/4005-8682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153690/", + "id": 153690, + "name": "Spider-Horse", + "site_detail_url": "https://comicvine.gamespot.com/spider-horse/4005-153690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154892/", + "id": 154892, + "name": "Spider-Kid", + "site_detail_url": "https://comicvine.gamespot.com/spider-kid/4005-154892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40524/", + "id": 40524, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099/4005-40524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55133/", + "id": 55133, + "name": "Spider-Man 2211", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2211/4005-55133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108636/", + "id": 108636, + "name": "Spider-Man J", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-j/4005-108636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162256/", + "id": 162256, + "name": "Spider-Man Noir", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir/4005-162256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85091/", + "id": 85091, + "name": "Spider-Mech", + "site_detail_url": "https://comicvine.gamespot.com/spider-mech/4005-85091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161174/", + "id": 161174, + "name": "Spider-Monster", + "site_detail_url": "https://comicvine.gamespot.com/spider-monster/4005-161174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150279/", + "id": 150279, + "name": "Spider-Punk", + "site_detail_url": "https://comicvine.gamespot.com/spider-punk/4005-150279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161229/", + "id": 161229, + "name": "Spider-Requiem", + "site_detail_url": "https://comicvine.gamespot.com/spider-requiem/4005-161229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161234/", + "id": 161234, + "name": "Spider-Sting", + "site_detail_url": "https://comicvine.gamespot.com/spider-sting/4005-161234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108360/", + "id": 108360, + "name": "Spider-UK", + "site_detail_url": "https://comicvine.gamespot.com/spider-uk/4005-108360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1453/", + "id": 1453, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4005-1453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160036/", + "id": 160036, + "name": "Spider-Zero", + "site_detail_url": "https://comicvine.gamespot.com/spider-zero/4005-160036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118754/", + "id": 118754, + "name": "Spiderling", + "site_detail_url": "https://comicvine.gamespot.com/spiderling/4005-118754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153257/", + "id": 153257, + "name": "Spiders-Man", + "site_detail_url": "https://comicvine.gamespot.com/spiders-man/4005-153257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56835/", + "id": 56835, + "name": "Spindrifter", + "site_detail_url": "https://comicvine.gamespot.com/spindrifter/4005-56835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127979/", + "id": 127979, + "name": "Spirit Animal", + "site_detail_url": "https://comicvine.gamespot.com/spirit-animal/4005-127979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7586/", + "id": 7586, + "name": "Spitfire", + "site_detail_url": "https://comicvine.gamespot.com/spitfire/4005-7586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30149/", + "id": 30149, + "name": "Splice", + "site_detail_url": "https://comicvine.gamespot.com/splice/4005-30149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86297/", + "id": 86297, + "name": "Sprite", + "site_detail_url": "https://comicvine.gamespot.com/sprite/4005-86297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159299/", + "id": 159299, + "name": "Spyder Knight", + "site_detail_url": "https://comicvine.gamespot.com/spyder-knight/4005-159299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2488/", + "id": 2488, + "name": "Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/squirrel-girl/4005-2488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3115/", + "id": 3115, + "name": "Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee/4005-3115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74301/", + "id": 74301, + "name": "Stanley Osborn", + "site_detail_url": "https://comicvine.gamespot.com/stanley-osborn/4005-74301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30118/", + "id": 30118, + "name": "Star Brand", + "site_detail_url": "https://comicvine.gamespot.com/star-brand/4005-30118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10957/", + "id": 10957, + "name": "Star-Lord", + "site_detail_url": "https://comicvine.gamespot.com/star-lord/4005-10957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7257/", + "id": 7257, + "name": "Starfox", + "site_detail_url": "https://comicvine.gamespot.com/starfox/4005-7257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2168/", + "id": 2168, + "name": "Starhawk", + "site_detail_url": "https://comicvine.gamespot.com/starhawk/4005-2168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156715/", + "id": 156715, + "name": "Starling", + "site_detail_url": "https://comicvine.gamespot.com/starling/4005-156715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18429/", + "id": 18429, + "name": "Steel Spider", + "site_detail_url": "https://comicvine.gamespot.com/steel-spider/4005-18429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59967/", + "id": 59967, + "name": "Stephen Colbert", + "site_detail_url": "https://comicvine.gamespot.com/stephen-colbert/4005-59967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15376/", + "id": 15376, + "name": "Steve Hopkins", + "site_detail_url": "https://comicvine.gamespot.com/steve-hopkins/4005-15376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7463/", + "id": 7463, + "name": "Stimpy", + "site_detail_url": "https://comicvine.gamespot.com/stimpy/4005-7463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3320/", + "id": 3320, + "name": "Stingray", + "site_detail_url": "https://comicvine.gamespot.com/stingray/4005-3320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1444/", + "id": 1444, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4005-1444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69915/", + "id": 69915, + "name": "Striker", + "site_detail_url": "https://comicvine.gamespot.com/striker/4005-69915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7599/", + "id": 7599, + "name": "Strong Guy", + "site_detail_url": "https://comicvine.gamespot.com/strong-guy/4005-7599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91202/", + "id": 91202, + "name": "Sun Girl", + "site_detail_url": "https://comicvine.gamespot.com/sun-girl/4005-91202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161235/", + "id": 161235, + "name": "Sun-Spider", + "site_detail_url": "https://comicvine.gamespot.com/sun-spider/4005-161235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3175/", + "id": 3175, + "name": "Sunfire", + "site_detail_url": "https://comicvine.gamespot.com/sunfire/4005-3175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15324/", + "id": 15324, + "name": "Sunpyre", + "site_detail_url": "https://comicvine.gamespot.com/sunpyre/4005-15324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4644/", + "id": 4644, + "name": "Sunspot", + "site_detail_url": "https://comicvine.gamespot.com/sunspot/4005-4644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77432/", + "id": 77432, + "name": "Superego, the Living Atom", + "site_detail_url": "https://comicvine.gamespot.com/superego-the-living-atom/4005-77432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1807/", + "id": 1807, + "name": "Superman", + "site_detail_url": "https://comicvine.gamespot.com/superman/4005-1807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3795/", + "id": 3795, + "name": "Swordsman", + "site_detail_url": "https://comicvine.gamespot.com/swordsman/4005-3795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121890/", + "id": 121890, + "name": "Synapse", + "site_detail_url": "https://comicvine.gamespot.com/synapse/4005-121890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10576/", + "id": 10576, + "name": "Synch", + "site_detail_url": "https://comicvine.gamespot.com/synch/4005-10576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24920/", + "id": 24920, + "name": "Taboo", + "site_detail_url": "https://comicvine.gamespot.com/taboo/4005-24920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111897/", + "id": 111897, + "name": "Takuya Yamashiro", + "site_detail_url": "https://comicvine.gamespot.com/takuya-yamashiro/4005-111897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13820/", + "id": 13820, + "name": "Talisman", + "site_detail_url": "https://comicvine.gamespot.com/talisman/4005-13820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26280/", + "id": 26280, + "name": "Talos", + "site_detail_url": "https://comicvine.gamespot.com/talos/4005-26280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88135/", + "id": 88135, + "name": "Tamara Devoux", + "site_detail_url": "https://comicvine.gamespot.com/tamara-devoux/4005-88135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4824/", + "id": 4824, + "name": "Tamara Rahn", + "site_detail_url": "https://comicvine.gamespot.com/tamara-rahn/4005-4824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32648/", + "id": 32648, + "name": "Tanya Anderssen", + "site_detail_url": "https://comicvine.gamespot.com/tanya-anderssen/4005-32648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58389/", + "id": 58389, + "name": "Tara", + "site_detail_url": "https://comicvine.gamespot.com/tara/4005-58389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62560/", + "id": 62560, + "name": "Taran", + "site_detail_url": "https://comicvine.gamespot.com/taran/4005-62560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51543/", + "id": 51543, + "name": "Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/tarantula/4005-51543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80465/", + "id": 80465, + "name": "Tarantula (Vasquez)", + "site_detail_url": "https://comicvine.gamespot.com/tarantula-vasquez/4005-80465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166298/", + "id": 166298, + "name": "Ted Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/ted-hoffman/4005-166298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90348/", + "id": 90348, + "name": "Teresa Parker", + "site_detail_url": "https://comicvine.gamespot.com/teresa-parker/4005-90348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115896/", + "id": 115896, + "name": "Terri Kidder", + "site_detail_url": "https://comicvine.gamespot.com/terri-kidder/4005-115896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13750/", + "id": 13750, + "name": "Terror Inc", + "site_detail_url": "https://comicvine.gamespot.com/terror-inc/4005-13750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17640/", + "id": 17640, + "name": "Terry Kwan", + "site_detail_url": "https://comicvine.gamespot.com/terry-kwan/4005-17640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14936/", + "id": 14936, + "name": "Texas Jack", + "site_detail_url": "https://comicvine.gamespot.com/texas-jack/4005-14936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16114/", + "id": 16114, + "name": "The Bobster", + "site_detail_url": "https://comicvine.gamespot.com/the-bobster/4005-16114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20114/", + "id": 20114, + "name": "The Buzz", + "site_detail_url": "https://comicvine.gamespot.com/the-buzz/4005-20114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126647/", + "id": 126647, + "name": "The Hypst'r", + "site_detail_url": "https://comicvine.gamespot.com/the-hypstr/4005-126647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177723/", + "id": 177723, + "name": "The Imagined", + "site_detail_url": "https://comicvine.gamespot.com/the-imagined/4005-177723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89638/", + "id": 89638, + "name": "The Other", + "site_detail_url": "https://comicvine.gamespot.com/the-other/4005-89638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80579/", + "id": 80579, + "name": "The Rose (Blume)", + "site_detail_url": "https://comicvine.gamespot.com/the-rose-blume/4005-80579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161230/", + "id": 161230, + "name": "The Spinster", + "site_detail_url": "https://comicvine.gamespot.com/the-spinster/4005-161230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2114/", + "id": 2114, + "name": "Thing", + "site_detail_url": "https://comicvine.gamespot.com/thing/4005-2114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2268/", + "id": 2268, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4005-2268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30596/", + "id": 30596, + "name": "Throg", + "site_detail_url": "https://comicvine.gamespot.com/throg/4005-30596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2174/", + "id": 2174, + "name": "Thunderbird", + "site_detail_url": "https://comicvine.gamespot.com/thunderbird/4005-2174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3457/", + "id": 3457, + "name": "Thunderbolt Ross", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolt-ross/4005-3457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42778/", + "id": 42778, + "name": "Thunderclap", + "site_detail_url": "https://comicvine.gamespot.com/thunderclap/4005-42778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7611/", + "id": 7611, + "name": "Thunderstrike", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike/4005-7611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7235/", + "id": 7235, + "name": "Thundra", + "site_detail_url": "https://comicvine.gamespot.com/thundra/4005-7235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86070/", + "id": 86070, + "name": "Tiberius Stone", + "site_detail_url": "https://comicvine.gamespot.com/tiberius-stone/4005-86070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84484/", + "id": 84484, + "name": "Tiffany LeBeck", + "site_detail_url": "https://comicvine.gamespot.com/tiffany-lebeck/4005-84484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21188/", + "id": 21188, + "name": "Tigra", + "site_detail_url": "https://comicvine.gamespot.com/tigra/4005-21188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58826/", + "id": 58826, + "name": "Time Traveler", + "site_detail_url": "https://comicvine.gamespot.com/time-traveler/4005-58826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13386/", + "id": 13386, + "name": "Timeslip", + "site_detail_url": "https://comicvine.gamespot.com/timeslip/4005-13386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80478/", + "id": 80478, + "name": "Timothy Harrison", + "site_detail_url": "https://comicvine.gamespot.com/timothy-harrison/4005-80478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12233/", + "id": 12233, + "name": "Tiny", + "site_detail_url": "https://comicvine.gamespot.com/tiny/4005-12233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134713/", + "id": 134713, + "name": "Titanya Vaetilda Vinnsuvius", + "site_detail_url": "https://comicvine.gamespot.com/titanya-vaetilda-vinnsuvius/4005-134713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63765/", + "id": 63765, + "name": "Tlaango", + "site_detail_url": "https://comicvine.gamespot.com/tlaango/4005-63765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56253/", + "id": 56253, + "name": "Toby", + "site_detail_url": "https://comicvine.gamespot.com/toby/4005-56253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71350/", + "id": 71350, + "name": "Tong", + "site_detail_url": "https://comicvine.gamespot.com/tong/4005-71350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13329/", + "id": 13329, + "name": "Toni Harris", + "site_detail_url": "https://comicvine.gamespot.com/toni-harris/4005-13329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123931/", + "id": 123931, + "name": "Toni Ho", + "site_detail_url": "https://comicvine.gamespot.com/toni-ho/4005-123931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60395/", + "id": 60395, + "name": "Tonya Barton-Parker", + "site_detail_url": "https://comicvine.gamespot.com/tonya-barton-parker/4005-60395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11835/", + "id": 11835, + "name": "Toro", + "site_detail_url": "https://comicvine.gamespot.com/toro/4005-11835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40783/", + "id": 40783, + "name": "Toxin", + "site_detail_url": "https://comicvine.gamespot.com/toxin/4005-40783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72484/", + "id": 72484, + "name": "Transonic", + "site_detail_url": "https://comicvine.gamespot.com/transonic/4005-72484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11428/", + "id": 11428, + "name": "Triton", + "site_detail_url": "https://comicvine.gamespot.com/triton/4005-11428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85358/", + "id": 85358, + "name": "Turbine", + "site_detail_url": "https://comicvine.gamespot.com/turbine/4005-85358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2103/", + "id": 2103, + "name": "Turbo", + "site_detail_url": "https://comicvine.gamespot.com/turbo/4005-2103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71352/", + "id": 71352, + "name": "Turg", + "site_detail_url": "https://comicvine.gamespot.com/turg/4005-71352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7240/", + "id": 7240, + "name": "Two-Gun Kid", + "site_detail_url": "https://comicvine.gamespot.com/two-gun-kid/4005-7240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40637/", + "id": 40637, + "name": "Typeface", + "site_detail_url": "https://comicvine.gamespot.com/typeface/4005-40637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12911/", + "id": 12911, + "name": "U-Go Girl", + "site_detail_url": "https://comicvine.gamespot.com/u-go-girl/4005-12911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14992/", + "id": 14992, + "name": "U.S.Agent", + "site_detail_url": "https://comicvine.gamespot.com/usagent/4005-14992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74602/", + "id": 74602, + "name": "Uatu Jackson", + "site_detail_url": "https://comicvine.gamespot.com/uatu-jackson/4005-74602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93079/", + "id": 93079, + "name": "Ud", + "site_detail_url": "https://comicvine.gamespot.com/ud/4005-93079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40827/", + "id": 40827, + "name": "Ultragirl", + "site_detail_url": "https://comicvine.gamespot.com/ultragirl/4005-40827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45948/", + "id": 45948, + "name": "Ultraman", + "site_detail_url": "https://comicvine.gamespot.com/ultraman/4005-45948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3114/", + "id": 3114, + "name": "Uncle Ben", + "site_detail_url": "https://comicvine.gamespot.com/uncle-ben/4005-3114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3223/", + "id": 3223, + "name": "Union Jack", + "site_detail_url": "https://comicvine.gamespot.com/union-jack/4005-3223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2153/", + "id": 2153, + "name": "Uranian", + "site_detail_url": "https://comicvine.gamespot.com/uranian/4005-2153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154542/", + "id": 154542, + "name": "Urzuul", + "site_detail_url": "https://comicvine.gamespot.com/urzuul/4005-154542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161231/", + "id": 161231, + "name": "V", + "site_detail_url": "https://comicvine.gamespot.com/v/4005-161231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30417/", + "id": 30417, + "name": "Vaalu", + "site_detail_url": "https://comicvine.gamespot.com/vaalu/4005-30417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2470/", + "id": 2470, + "name": "Valeria Richards", + "site_detail_url": "https://comicvine.gamespot.com/valeria-richards/4005-2470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14860/", + "id": 14860, + "name": "Valerie Cooper", + "site_detail_url": "https://comicvine.gamespot.com/valerie-cooper/4005-14860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154366/", + "id": 154366, + "name": "Valerie the Librarian", + "site_detail_url": "https://comicvine.gamespot.com/valerie-the-librarian/4005-154366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6809/", + "id": 6809, + "name": "Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie/4005-6809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10058/", + "id": 10058, + "name": "Vanessa Fisk", + "site_detail_url": "https://comicvine.gamespot.com/vanessa-fisk/4005-10058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30142/", + "id": 30142, + "name": "Varua", + "site_detail_url": "https://comicvine.gamespot.com/varua/4005-30142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69916/", + "id": 69916, + "name": "Veil", + "site_detail_url": "https://comicvine.gamespot.com/veil/4005-69916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72741/", + "id": 72741, + "name": "Velocidad", + "site_detail_url": "https://comicvine.gamespot.com/velocidad/4005-72741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14759/", + "id": 14759, + "name": "Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/vengeance/4005-14759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1486/", + "id": 1486, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4005-1486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155181/", + "id": 155181, + "name": "Venom Ninja", + "site_detail_url": "https://comicvine.gamespot.com/venom-ninja/4005-155181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12632/", + "id": 12632, + "name": "Venus", + "site_detail_url": "https://comicvine.gamespot.com/venus/4005-12632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11479/", + "id": 11479, + "name": "Venus Dee Milo", + "site_detail_url": "https://comicvine.gamespot.com/venus-dee-milo/4005-11479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15374/", + "id": 15374, + "name": "Vera Cantor", + "site_detail_url": "https://comicvine.gamespot.com/vera-cantor/4005-15374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135309/", + "id": 135309, + "name": "Veronica Diaz", + "site_detail_url": "https://comicvine.gamespot.com/veronica-diaz/4005-135309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27095/", + "id": 27095, + "name": "Vicary", + "site_detail_url": "https://comicvine.gamespot.com/vicary/4005-27095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101686/", + "id": 101686, + "name": "Vickie Danner", + "site_detail_url": "https://comicvine.gamespot.com/vickie-danner/4005-101686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1937/", + "id": 1937, + "name": "Victor Mancha", + "site_detail_url": "https://comicvine.gamespot.com/victor-mancha/4005-1937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59261/", + "id": 59261, + "name": "Victoria Hand", + "site_detail_url": "https://comicvine.gamespot.com/victoria-hand/4005-59261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157011/", + "id": 157011, + "name": "Victorious", + "site_detail_url": "https://comicvine.gamespot.com/victorious/4005-157011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53529/", + "id": 53529, + "name": "Videoman", + "site_detail_url": "https://comicvine.gamespot.com/videoman/4005-53529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76997/", + "id": 76997, + "name": "Vil", + "site_detail_url": "https://comicvine.gamespot.com/vil/4005-76997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51904/", + "id": 51904, + "name": "Vin Gonzales", + "site_detail_url": "https://comicvine.gamespot.com/vin-gonzales/4005-51904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55179/", + "id": 55179, + "name": "Virginia Dare", + "site_detail_url": "https://comicvine.gamespot.com/virginia-dare/4005-55179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68724/", + "id": 68724, + "name": "Virginia Hunter", + "site_detail_url": "https://comicvine.gamespot.com/virginia-hunter/4005-68724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1504/", + "id": 1504, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4005-1504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124054/", + "id": 124054, + "name": "Viv", + "site_detail_url": "https://comicvine.gamespot.com/viv/4005-124054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11491/", + "id": 11491, + "name": "Vivisector", + "site_detail_url": "https://comicvine.gamespot.com/vivisector/4005-11491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14536/", + "id": 14536, + "name": "Volcana", + "site_detail_url": "https://comicvine.gamespot.com/volcana/4005-14536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3513/", + "id": 3513, + "name": "Volstagg", + "site_detail_url": "https://comicvine.gamespot.com/volstagg/4005-3513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58039/", + "id": 58039, + "name": "Vortex", + "site_detail_url": "https://comicvine.gamespot.com/vortex/4005-58039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145052/", + "id": 145052, + "name": "Voyager", + "site_detail_url": "https://comicvine.gamespot.com/voyager/4005-145052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83467/", + "id": 83467, + "name": "Wally Layton", + "site_detail_url": "https://comicvine.gamespot.com/wally-layton/4005-83467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23879/", + "id": 23879, + "name": "Wally West", + "site_detail_url": "https://comicvine.gamespot.com/wally-west/4005-23879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78257/", + "id": 78257, + "name": "Walter Coleman", + "site_detail_url": "https://comicvine.gamespot.com/walter-coleman/4005-78257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1926/", + "id": 1926, + "name": "War Machine", + "site_detail_url": "https://comicvine.gamespot.com/war-machine/4005-1926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80590/", + "id": 80590, + "name": "Warbird", + "site_detail_url": "https://comicvine.gamespot.com/warbird/4005-80590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7223/", + "id": 7223, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4005-7223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2158/", + "id": 2158, + "name": "Warpath", + "site_detail_url": "https://comicvine.gamespot.com/warpath/4005-2158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57495/", + "id": 57495, + "name": "Wasabi No-Ginger", + "site_detail_url": "https://comicvine.gamespot.com/wasabi-no-ginger/4005-57495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1502/", + "id": 1502, + "name": "Wasp", + "site_detail_url": "https://comicvine.gamespot.com/wasp/4005-1502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7120/", + "id": 7120, + "name": "Watcher", + "site_detail_url": "https://comicvine.gamespot.com/watcher/4005-7120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161173/", + "id": 161173, + "name": "Web-Slinger", + "site_detail_url": "https://comicvine.gamespot.com/web-slinger/4005-161173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176248/", + "id": 176248, + "name": "WEB-STER", + "site_detail_url": "https://comicvine.gamespot.com/web-ster/4005-176248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179222/", + "id": 179222, + "name": "Web-Weaver", + "site_detail_url": "https://comicvine.gamespot.com/web-weaver/4005-179222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4984/", + "id": 4984, + "name": "Werewolf By Night", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night/4005-4984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57325/", + "id": 57325, + "name": "Wesley Cassady", + "site_detail_url": "https://comicvine.gamespot.com/wesley-cassady/4005-57325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64450/", + "id": 64450, + "name": "White Tiger", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger/4005-64450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34207/", + "id": 34207, + "name": "White Tiger", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger/4005-34207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161236/", + "id": 161236, + "name": "White Widow", + "site_detail_url": "https://comicvine.gamespot.com/white-widow/4005-161236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40505/", + "id": 40505, + "name": "Wiccan", + "site_detail_url": "https://comicvine.gamespot.com/wiccan/4005-40505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9476/", + "id": 9476, + "name": "Wild Child", + "site_detail_url": "https://comicvine.gamespot.com/wild-child/4005-9476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57767/", + "id": 57767, + "name": "Wild Thing", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing/4005-57767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70676/", + "id": 70676, + "name": "William Nguyen", + "site_detail_url": "https://comicvine.gamespot.com/william-nguyen/4005-70676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15288/", + "id": 15288, + "name": "Willie Lumpkin", + "site_detail_url": "https://comicvine.gamespot.com/willie-lumpkin/4005-15288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22598/", + "id": 22598, + "name": "Windshear", + "site_detail_url": "https://comicvine.gamespot.com/windshear/4005-22598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4557/", + "id": 4557, + "name": "Wolfsbane", + "site_detail_url": "https://comicvine.gamespot.com/wolfsbane/4005-4557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1440/", + "id": 1440, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4005-1440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82303/", + "id": 82303, + "name": "Wolverine (Counter-Earth)", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-counter-earth/4005-82303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1465/", + "id": 1465, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4005-1465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2048/", + "id": 2048, + "name": "Wonder Woman", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman/4005-2048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2215/", + "id": 2215, + "name": "Wong", + "site_detail_url": "https://comicvine.gamespot.com/wong/4005-2215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34973/", + "id": 34973, + "name": "Wraith (DeWolff)", + "site_detail_url": "https://comicvine.gamespot.com/wraith-dewolff/4005-34973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76706/", + "id": 76706, + "name": "Wraith (Watanabe)", + "site_detail_url": "https://comicvine.gamespot.com/wraith-watanabe/4005-76706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76996/", + "id": 76996, + "name": "Wu", + "site_detail_url": "https://comicvine.gamespot.com/wu/4005-76996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10275/", + "id": 10275, + "name": "Wyatt Wingfoot", + "site_detail_url": "https://comicvine.gamespot.com/wyatt-wingfoot/4005-10275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3560/", + "id": 3560, + "name": "X-23", + "site_detail_url": "https://comicvine.gamespot.com/x-23/4005-3560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15051/", + "id": 15051, + "name": "X-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-man/4005-15051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1944/", + "id": 1944, + "name": "Xavin", + "site_detail_url": "https://comicvine.gamespot.com/xavin/4005-1944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52800/", + "id": 52800, + "name": "XP-2000", + "site_detail_url": "https://comicvine.gamespot.com/xp-2000/4005-52800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60373/", + "id": 60373, + "name": "Xraven", + "site_detail_url": "https://comicvine.gamespot.com/xraven/4005-60373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134455/", + "id": 134455, + "name": "Yao Wu", + "site_detail_url": "https://comicvine.gamespot.com/yao-wu/4005-134455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1501/", + "id": 1501, + "name": "Yellowjacket (DeMara)", + "site_detail_url": "https://comicvine.gamespot.com/yellowjacket-demara/4005-1501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2170/", + "id": 2170, + "name": "Yondu", + "site_detail_url": "https://comicvine.gamespot.com/yondu/4005-2170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3537/", + "id": 3537, + "name": "Zabu", + "site_detail_url": "https://comicvine.gamespot.com/zabu/4005-3537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178302/", + "id": 178302, + "name": "Zarina Zahari", + "site_detail_url": "https://comicvine.gamespot.com/zarina-zahari/4005-178302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13798/", + "id": 13798, + "name": "Zuras", + "site_detail_url": "https://comicvine.gamespot.com/zuras/4005-13798/" + } + ], + "count_of_issue_appearances": 16347, + "creators": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/creator/4040-40467/", + "id": 40467, + "name": "Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee/4040-40467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/creator/4040-4026/", + "id": 4026, + "name": "Steve Ditko", + "site_detail_url": "https://comicvine.gamespot.com/steve-ditko/4040-4026/" + } + ], + "date_added": "2008-06-06 11:27:11", + "date_last_updated": "2022-01-29 12:11:43", + "deck": "Peter Parker was bitten by a radioactive spider as a teenager, granting him spider-like powers. After the death of his Uncle Ben, Peter learned that \"with great power, comes great responsibility.\" Swearing to always protect the innocent from harm, Peter Parker became Spider-Man.", + "description": "

Origin

\"Birth
Birth of Spider-Man

Peter Benjamin Parker was born to C.I.A. agents Richard and Mary Parker, who were killed when Peter was very young. After the death of his parents, Peter was raised by his Uncle Ben and Aunt May in a modest house in Forest Hills, New York. While still in High School, Peter attended a science exhibition about radiology where he was bitten by a radioactive spider, granting him the proportionate strength and agility of a spider as well as a \" Spider-Sense\" that warns him of nearby danger. In order to test his new abilities – and earn some cash, Peter participated in a wrestling challenge against Crusher Hogan. He easily won the challenge and also gained the attention of the media. Afterward while backstage, Peter saw a burglar run past him but did nothing to stop him as it wasn’t his problem. Later that night when Peter arrived home, he was told by a policeman that his Uncle Ben had been murdered by someone who broke into their house. The cop mentioned they had tracked the killer to a warehouse. In his anger, Peter put on his wrestling costume and went after the murderer himself. After arriving at the warehouse and easily defeating Uncle Ben’s killer, Peter saw that it was the same burglar he didn’t stop at the arena… thus learning that \"with great power comes great responsibility\".

Creation

\"Spidey's
Spidey's First Appearance

In 1962, Marvel Comics editor and head writer Stan Lee was looking for a new superhero idea. He decided to create Spider-Man as a character with whom teens could identify, as there was a recent surge in teenage demand for comics. Lee was supposedly inspired by the concept of Spider-Man after observing a spider climb up a wall. Lee had to convince publisher Martin Goodman to introduce Spider-Man in the last issue of the canceled series Amazing Adult Fantasy, which was renamed Amazing Fantasy for that issue (#15, Aug. 1962). Lee then approached legendary artist Jack Kirby for an initial character design. However, Lee was dissatisfied with Kirby’s attempt as the character turned out to be too heroic and Spider-Man was supposed to be a teenage boy. Lee then turned to Steve Ditko who developed the now iconic look of Spider-Man. Spider-Man is one of the first characters whose problems made him feel more real, as people could relate more to him.

Character Evolution

Peter Parker originally decided to use his powers to make money but after Uncle Ben's death, he decided to use his powers for good. In many ways, this makes Spider-Man less of the 'boy scout' character people think; the fact that he used his powers to have fun in the first place is something people can relate to. Initially, Peter Parker is shy and timid, but the Spider-Man alter-ego was a form of liberation and heroism, and he used it to gain confidence. However, he found the moral urge later, though some of his confidence and liberation remains, making him a sarcastic wise-guy.

He has an extremely powerful moral urge for good which is so strong that it made him stop working for the Pro-Registration side despite having his mentor and friends on the said side.

He also has a very compassionate disposition that it can be said that he isn't just the most compassionate in the Marvel Universe but also one of the most compassionate periods.

One thing he is well known for is his humor something that has been known to greatly irritate his enemies and has sometimes even let him win the fight. Furthermore, The combination of moral obligation, compassion, and humor makes him one of the most trustworthy, good people to hang out with.

The time between Spider-Man capturing the burglar that killed Uncle Ben and him becoming a superhero was told over 30 years after his origin when the Amazing Fantasy series was continued in 1995 by writer Kurt Busiek (#16-18, Dec. 1995 – Mar. 1996). After catching the burglar that killed Ben, Peter had given up being Spider-Man as it reminded him of his irresponsible behavior that ultimately led to his uncle’s death. Even though Maxie Shiffman, the agent he had hired when he was a costumed wrestler, was putting out ads to track down Spider-Man, Peter didn’t want anything to do with that life. Ben had been the only earner in the family and after his death, Peter and his Aunt May were struggling for money. A salesman tried to con May into buying furniture that Ben had apparently left a deposit on before his death. Although the salesman had seemed genuine at the time, Peter caught Mr. Vale pulling the same stunt on an old widower when he was swinging through the city in his Spider-Man costume to clear his head. Spider-Man followed Mr. Vale to a warehouse where he discovered a whole gang of organized criminals led by The Undertaker. Spider-Man challenged the gang and soon had them rounded up for the police. Chronologically this was the first time Spider-Man had been threatened with a gun. More significantly, during the fight, he discovered his Spider-Sense for the first time. Capturing these criminals lead Peter to believe that this is how he has to make up for Uncle Ben’s death, by using his powers to help others.

\"Spider-Man's
Spider-Man's first encounter with a 'super'

Spider-Man became a force for good, from stopping muggings to rescuing workers at a construction site. These heroic activities also gained him positive media attention but he still didn’t want to get back in show business. Even after Shiffman told him they could make millions, Peter chose responsibility for money. His heroism had also earned Spider-Man a certain fan named Flash Thompson. Spider-Man soon encountered another teenager with superpowers of her own and he and Joey Pulaski became friends. However, it turned out that Joey was working for The Kingpin and the friends inevitably clashed, resulting in Joey’s defeat and arrest. Although portrayed as just a misguided kid, chronologically Joey Pulaski was the first super-powered being Spider-Man had encountered.

After defeating Joey Spider-Man’s fame rose further. One day after seeing his aunt continue to struggle with the household finances, Peter finally decided he had to bring in some money. He contacted Maxie Shiffman who booked him an interview on a TV show. Spider-Man was given the slot of astronaut John Jameson much to the vexation of his father, publicist J. Jonah Jameson. As the host began to introducing the show’s guests he was attacked by the super-powered villain Supercharger, who announced he will kill everyone in the audience to prove how dangerous super-powered beings were. Spider-Man had never encountered a super villain before and thought real superheroes should deal with this. He attempted to call The Fantastic Four but after Supercharger attacked someone in the audience, Spider-Man stepped in and defeated his first super villain. “because that’s what superheroes do”.

Major Story Arcs

Becoming a Hero

\"Peter
Peter mourning Uncle Ben's Death

Peter's first super-villain confrontation was with a communist spy called the Chameleon who could disguise himself as anyone. He attempted to disguise himself as Spider-Man and steal some important documents but he was defeated by the debuting hero, restoring his good name. Peter went on to get a job at the Daily Bugle as a photographer, selling photos to J. Jonah Jameson even though they were usually used against him. He eventually fought his second super villain, The Vulture. Due to his inexperience, Spider-Man was defeated but when the villain got cocky, Spider-Man used a gadget of his own to defeat The Vulture. Spider-Man then had his first confrontation with his most dangerous villain yet, the tentacled madman known as Doctor Octopus. Spider-Man was defeated by the more powerful Doctor Octopus in their initial encounter which caused Peter to doubt himself for the first time. He was encouraged by a speech given by the Human Torch to keep on fighting. Spider-Man managed to defeat the villain by knocking him out with one punch to the jaw since Ock's powers came only from his tentacles. He would follow up this victory by fighting the shape-shifting Sandman, the lethal Lizard, who is actually Peter's mentor and friend Curt Connors, the Enforcers, Electro, Mysterio, Kraven the Hunter, Doctor Doom, and his soon-to-be arch-nemesis the Green Goblin.

After being defeated on two more occasions by Spider-Man, Doctor Octopus became more determined to defeat his foe and formed the Sinister Six, a group consisting of five other villains who all share the same grudge against the young hero. Ock had each villain face Spider-Man individually so that every member could reap the glory of Spider-Man's death, but he secretly devised this plan to ensure the other villains' defeat each time. After rendering Spider-Man tired, Otto lured him to a fight by kidnapping Aunt May and Betty Brant. Despite everything, Spider-Man came out victorious and saved the two hostages. On his high school graduation, Spider-Man battled the Molten Man, who would turn out to be the stepbrother of Liz Allen. During his early career, Spider-Man would frequently team up with other heroes such as Daredevil, the X-Men, the Fantastic Four, and the Human Torch in particular. Peter and Betty broke up after her brother was killed. She couldn't bear the thought of losing another loved one as she feared that Peter would die while taking pictures of Spider-Man. She later settled in with Ned Leeds.

College Years

After graduating from High School, Peter Parker enrolled at ESU ( Empire State University) where Flash introduced him to Harry Osborn and Gwen Stacy. During this time, Aunt May suffered from a serious heart attack. Peter would constantly blow his friends off and they saw this as an insult. Eventually, their relationship would get better as Peter became more involved with his peers. He and Harry became best friends and roommates. Peter also started dating Gwen Stacy. He would also meet Anna Watson's niece Mary Jane. Although he was attracted to Mary Jane, Peter decided to settle with Gwen because MJ was too much of a \"party girl\" for him. Peter loves Gwen, but their relationship was strained a bit by him constantly leaving to fight crime. Their relationship was saved by Gwen's father, Police Captain George Stacy, an ally of Spider-Man, who approved of Peter dating his daughter. Gwen's father was later killed during a battle between Spider-Man and Doctor Octopus after he was crushed by falling debris while saving a child. In his dying breath, George called Spider-Man \"Peter\", revealing that he had always known about his dual identity and urged him to take care of Gwen. George's death caused a strain in the couple's relationship because Gwen blamed Spider-Man for her loss. She left Peter for some time to live with her uncle in London.

Arch-Nemesis: Green Goblin

After suffering numerous defeats at the hands of Spider-Man, the Green Goblin vowed to destroy his foe once and for all. Using a special gas that blocks Peter's Spider-Sense, the Goblin followed Peter around and discovered his secret identity. Now knowing Peter was Spider-Man, the Green Goblin kidnapped him, and although he has the chance to kill Peter, the Goblin instead revealed his own secret identity. He was Norman Osborn, a ruthless businessman who was also Harry's father. Norman released Spider-Man from his restraints to defeat him in combat and prove his superiority. The Web-Slinger managed to defeat him and knocked him into some chemicals, resulting in Norman having amnesia and no recollection of both his and Peter's alternate egos.

Spider-Man also fought the Rhino, Shocker, and the Scorpion. At one point, Peter felt that he was unable to carry the burden of being Spider-Man any longer and considered retiring from super-heroics. When the Kingpin of Crime made his move to take over the city, Peter knew that it was still his responsibility to protect the innocent and so he defeated this crime-lord and returned to crime-fighting.

Death of Gwen Stacy and the Aftermath

\"One
One of Spider-Man's defining moments

At the end of the Silver Age, Norman Osborn's memories began to flood back. He decided to hurt Peter as much as possible as the Green Goblin. He kidnapped Gwen Stacy and held her hostage at the Brooklyn Bridge. Spider-Man went to save Gwen and, despite being ill at the time, managed to defeat the Goblin. The Goblin threw Gwen off the bridge and, although Peter caught her by attaching a web line to her leg as she fell, the drop caused her neck to snap. As Spider-Man held Gwen's dead body, he vowed to kill the Goblin. Gwen's death has affected Peter his entire career and is a big part of his character, as was Uncle Ben's death. He tracked the Goblin down to one of his warehouses. He brutally pummeled the Goblin in a fit of rage but managed to stop himself from committing murder. In one last attempt to achieve victory, Norman sent his Goblin Glider to impale Spider-Man from behind. Peter ducks and the Goblin is apparently killed from being impaled by his own glider. Mary Jane consoled Peter on the death of Gwen and the two started to date. Peter eventually proposed to her, but she refused and ended up breaking up with him. At this time Miles Warren, a college professor obsessed with Gwen became the deranged villain known as the Jackal. He hired the Punisher to kill Spider-Man and he also made copies of both Gwen and Peter. The Peter copy escaped and Gwen's copy eventually went back to Miles. Harry Osborn followed in the footsteps of his father and became the next Green Goblin. He blamed Peter for his father's death. Harry later lost his memory after a fight with Spider-Man. Harry's psychologist, Bart Hamilton attempted to take up the mantle of the Goblin himself but was killed by his own bomb while fighting Peter.

Secret Wars and the Symbiote

\"Black
Black Suit

The Beyonder transported Spider-Man along with other heroes and villains to Battleworld to take place in the Secret Wars, an intergalactic battle between the world’s greatest heroes and villains. During the battle, Spider-Man’s suit was badly damaged and he needed a new one. Peter came upon a strange machine that produced a black substance that slithered over him and covered his entire body. This new black and white costume, similar to Arachne's costume, replaced his old costume. Once the heroes won the battle, they were all transported back to Earth and Spider-Man kept on wearing the suit because it enhanced his strength, speed, and agility. He would start experiencing odd signs of fatigue and became even more concerned when he discovered that the suit produced organic webbing. He took the suit to Reed Richards who told him that it's actually a living alien symbiote, which can only survive by bonding to a host and draining their life-force away. Reed used a sonic emitter to separate Peter from the suit. Spider-Man was now without a costume and Johnny Storm, as part of a practical joke, gave Peter an old Fantastic Four costume with a paper bag for a mask and dubbed him the Bombastic Bag-Man. Admiring the black suit's design, Spider-Man's then-girlfriend and crime-fighting partner the Black Cat made him a cloth version of the black costume which he would start using for a time. The symbiote made its way back to Peter and attempted to permanently bond with him, but Peter used the sounds of a church bell to seemingly destroy the suit. It survived and found a host in Eddie Brock to become one of Spider-Man's deadliest and most recurring foes, Venom.

Death of Jean DeWolff

A close friend of Peter's, Jean DeWolff was killed by a criminal called the Sin-Eater. Spider-Man became determined to capture him before anyone else was hurt and so he teamed up with Daredevil, who also held a grudge against the criminal. After an encounter with Sin-Eater that left an innocent bystander harmed, Peter was drawn closer to the dark side. After saving Betty Brant from the criminal, Spider-Man was tempted to kill him but was stopped by Daredevil. The two heroes captured and unmasked the criminal and in the process formed a bond of friendship and trust between each other.

Marriage

\"Peter
Peter Weds Mary Jane

Sometime later, Spider-Man revealed his identity to the Black Cat who would end up breaking up with him. She was unable to bear the fact that Spider-Man liked to live a civilian life as Peter Parker instead of staying in costume. Mary Jane would return to New York and she visited Peter in his apartment. Meanwhile, the Puma had tracked down Spider-Man but Peter sensed his presence using his spider-sense.

Fearing for MJ's safety, Peter pushes her out of the apartment so that he could fight the Puma as Spider-Man without revealing his identity to her. MJ heard the sounds of battle. After Peter defeated Puma, MJ confessed to him that she cannot handle the danger he puts himself in. She tells him that she has always known his secret identity. Black Cat appears to reconcile with Peter which caused MJ to run away crying. She considered leaving town again but she then decided to confront Peter. They became very close and they would tell each other everything. They were hiding from their true feelings and Peter proposed to MJ. Although she initially refused, after making amends with her sister, MJ returned to Peter and accepted his proposal. Despite knowing that they are still too young and Peter's double life may make things difficult, Peter and Mary Jane tied the knot.

Kraven's Last Hunt

\"Kraven's
Kraven's Last Hunt

Peter's life did not get any easier after his wedding. As soon as he returned from his honeymoon, he was attacked by Kraven the Hunter in one of the most traumatizing events in both Peter and MJ's lives. Kraven was seeking to regain the honor that his family had lost and to do so, he must prove his superiority over his greatest foe, Spider-Man. After ambushing him, Kraven shot Peter in the head with a rifle and buried him on his grounds. Kraven donned a black Spider-Man costume and became a merciless vigilante. He even defeated Vermin, a villain Spider-Man could not defeat on his own. After two weeks, it was revealed that Spider-Man was actually alive and Kraven shot him with a tranquilizer. Peter eventually made his way to Kraven's estate and brutally pummeled the hunter. Kraven was unconcerned as he has proven his superiority over his foe before and so he set the Vermin free. After Spider-Man left Kraven to capture Vermin, Kraven killed himself.

Birth of Venom and Carnage

\"Spidey
Spidey versus Carnage and Venom

The reporter Eddie Brock had accused the Sin-Eater as one man. He then became very angry with Spider-Man, when the web-slinger unmasked Sin-Eater and it turned out to be a different person. This caused Brock professional humiliation and the loss of his job. When Eddie bonded with the symbiote and became Venom, Eddie launched several attacks on Peter's life, even scaring MJ. Peter stopped wearing the black suit following MJ's request. Eddie's symbiote had an offspring that bonded with Cletus Kasady, a psychotic murderer, to become Carnage. Venom and Spider-Man were forced to team-up to defeat this new foe. Sometime later, Peter and Eddie formed a truce, promising never to interfere with each other's lives ever again.

Death of Harry Osborn

Harry Osborn's memories of being the Green Goblin came flooding back and he attempted to ruin Peter's life one more time. Before destroying a building that contained Peter, MJ, and his son Normie, Harry regained his sanity and managed to save them. Immediately after doing so, he died from being poisoned by the Goblin Formula.

Maximum Carnage

After Harry's death, Peter decided to retire from super-heroics. After Carnage formed a team of other psychopaths and went on a bloody rampage around New York, Spider-Man was forced to team-up with his old foe Venom again. The two of them, along with other heroes, managed to stop them.

Peter's Parents

Peter's parents suddenly appeared in his life, claiming to have been abducted by communists. He had learned to love his \"parents\" and even revealed to them his secret identity. They turned out to be robots invented by the Chameleon to infiltrate Peter's life, discover his connections to Spider-Man and then kill him. The robot that masqueraded as Peter's father Richard was perfectly willing to accomplish his task and kill Peter, but the Mary robot had learned to love Peter and saw him as a good person. Richard turned into a vicious engine of destruction. Before Richard could finish Peter off, Mary killed him using an electric cable. In return, she was killed by the Vulture who was conspiring with the Chameleon. An enraged Spider-Man completely pummeled the Vulture but was stopped by the cries of his dying \"mother\". She told Peter in her last moments that despite everything, she still loved him. Spider-Man vowed to track down the Chameleon and make him suffer, which he eventually did after fighting through many assassins sent by the communist. Peter ultimately spared an emotionally broken Chameleon and left him for the authorities.

The Clone Saga

\"Scarlet
Scarlet Spider

In the Clone Saga, a controversial story arc, the long-lost Jackal-made copy of Peter Parker returns. For years he was believed to have died after his initial encounter with the real Peter Parker. The clone, who is now calling himself Ben Reilly spent years traveling the world as he knew there was no place for him in New York City again. When his aunt May was believed to be dying, Ben returned to New York and eventually met Peter Parker. At first, the two fought and Peter saw Ben as a threat, but later on, the two of them worked together, with Ben even taken over as Spider-man for some time when it was believed that Peter had lost his powers. It was also during this time that aunt May seemingly died of old age. Before she passed away, she told Peter that she had known about him being Spider-man for some time now. Years later, it would be revealed that it was not aunt May that had died, but a stand-in that was the work of Norman Osborn. Peter remained out of super-heroin for some time, until his powers seemingly returned and he and the Scarlet Spider fought side by side for some time. The story arc lasted for two years and ended with the death of Ben Reilly at the hands of a returning Norman Osborn who was revealed to be alive and has been pulling strings from the moment he was believed to have died. On that day, Peter felt to have lost a brother. Although Norman Osborn was defeated, it was far from the last thing that was heard from him. With his powers fully returned, Peter resumed his work as the Amazing Spider-Man once again.

The Identity Crisis

After this saga, the Identity Crisis story takes place in which Spider-Man is accused by a returned Norman Osborn of murder and a bounty is put on his head. This is done by Norman Osborn, who had cleared his name as a criminal when he proclaimed that he was not really the Green Goblin, but was set up by this criminal. He had taken over the Daily Bugle and put a price on Spider-Man's head in the newspaper. This lead to a variate of bounty-hunters to attack Spider-Man. Feeling it to dangerous for himself and his loved ones to remain the hero he is, Peter retires from being Spider-Man and forms four different identities which he uses to keep on helping people and in the meantime clear his name. Eventually, Peter's name was cleared and he returned to being Spider-Man.

Gathering of the Five

It seemed that Spider-man was finally back on track, with his name cleared and his life finally looking a bit better than it had in recent months. Norman Osborn however kept being a disturbing presence to Peter and Mary Jane. He started a ritual known as the Gathering of the Five, with one person getting Ultimate power, one got death, one got insanity, and so on. Norman thought he gained power, but it turned out that it was insanity that he got. He attacked and kidnapped Peter. While he was captive, Peter got the shock of a lifetime. His aunt May was standing in front of him, alive and well. After Spider-man broke free and defeated Norman Osborn, seemingly for good, as he was taken to a mental hospital, Peter learned that it was in fact aunt May he found. Not a clone, not a hoax. Norman had apparently kidnapped May years ago and had an actress surgically look like aunt May and play her part while she was dying. This was why 'aunt May' knew about Peter being Spider-Man, she was hired by Norman Osborn to play her! Reed Richards of the Fantastic Four assured Peter it was his aunt. Peter saw this as a sign and stopped being Spider-Man altogether, finally living a good life with his aunt May and his wife Mary-Jane.

A New Chapter in Life and a New Spider-Woman

\"Peter
Peter discovers the identity of the new Spider-Woman

After Peter had his aunt returned, he decided to stop being Spider-man for good. He started living in a new apartment with his aunt May and wife Mary-Jane. All of New York was wondering where Spider-Man could have gone after his seemingly final battle with the Green Goblin. He would not even react to messages send by Peter's good friend the Human Torch. Peter had found a job at a science-center where he did good work and stayed out of the superhero life, although it turned out that was harder than it seemed. It was at this time that a seemingly new Spider-Man appeared on the scene. It turned out that this was Mattie Franklin, a participant in the Gathering of the Five, who got the gift of Power. She acted as Spider-man and later as Spider-Woman when Peter finally accepted that he was needed as Spider-man and returned to life as a superhero.

All seemed to go well again until Mary-Jane, who had started acting again, was threatened by a stalker. It started with phone-calls, but when Mary-Jane took a plane, it exploded in mid-air and seemingly killed Mary-Jane. Peter, firstly stricken with grief, did not believe she had died. He knew it must have had something to do with the stalker, and Peter started a crusade to find out the truth. This brought him to Latveria and in a fight against the Hulk among others. Eventually, Peter learned that it was indeed the stalker that had faked Mary-Jane's death and had held her captive during it all. The stalker was a mutant that absorbed all of Peter's memories when he was saved by him during one of Spider-man's fights on the streets of New York. The Stalker needed Mary-Jan for himself because of it and he felled he knew her. Spider-man managed to save Mary-Jane and defeat the Stalker. Mary-Jane however was traumatized by the experience and needed time off from her life as the wife of a superhero. The two parted ways for some time.

A Death in the Family

Norman Osborn broke out of jail and managed to clear his name of being the Green Goblin. After failing to convert Peter into his heir, he started to provoke Peter into killing him in a story called A Death in the Family. Norman was sick of his life and wanted to die at the hands of Spider-man. He tried to get Peter so mad that he would do this. First by releasing footage of Gwen's death to the media, claiming that Gwen's death was the result of Spider-Man's selfish actions. To make matters worse, Norman forced a drunken Flash Thompson to have a car accident, causing him to go into a coma. Spider-Man and the Green Goblin meet up in one of Osborn's warehouses where Spider-Man defeats the Goblin. Although he urged him to finish him off, Peter refused to play the Goblin's game and proposed a truce. Norman accepts, but as he returns to one of his offices, he puts a gun in his mouth. He is however to afraid to pull the trigger.

Ezekiel

\"Spider-man
Spider-man and Ezekiel

Spider-man meets a strange individual named Ezekiel, who knows that he is truly Peter Parker, and warns him of a powerful enemy who will try to kill him, known as Morlun. Peter follows Ezekiel and tries to find out why he knows so much about him. Ezekiel tells Spider-man that he is part of a \"Spider-Totem\", which is why his enemies all are animals as well (Rhino, Lizard, Doctor Octopus, Vulture). Spider-man does not care much about these strange stories but is happy with the help that Ezekiel provides when he finally encounters Morlun. He barely defeats Morlun and struggles back home after the fight. He lands on his bed, with a torn-up Spider-man costume and falls asleep. It is at this time that aunt May enters the room and sees Peter as Spider-Man. The secret is finally out! Aunt May walks away and uses a full day to comprehend the facts before she finally confronts Peter with it. Peter tried to talk his way out of it but finally sees that it is no use and then told his aunt May about why he became Spider-Man. It was during this time that Peter and Mary-Jane again renewed their relationship and their marriage vows. Marry-Jane returned to live with Peter and the two were a happy couple once more.

New Avengers

\"Spider-man
Spider-man Joins The New Avengers

During a riot at the Raft prison, orchestrated by Electro, Spider-Man teams up with other heroes to subdue the inmates. Since the original Avengers have disbanded, Iron Man and Captain America decided to form a new team of Avengers consisting of the heroes involved in stopping the riot, including Spider-Man.

As an Avenger, Peter has become more acquainted with the superhero community including the Fantastic Four, Hank Pym, and Doctor Strange. He trusted his fellow teammates to the point of revealing his secret identity to them. He also started working for Tony Stark at Stark Industries. When aunt May's house is destroyed by an old school-friend of Peter who had gotten superpowers, Peter, Mary-Jane, and his aunt are invited by Tony Stark, aka Iron Man, to start living in Avengers Tower. Peter and his family are doubtful at first but eventually accept as a new chapter in their life begins. Peter fought the good fight with the Avengers while aunt May started a somewhat romantic relationship with the Avengers' butler Jarvis.

The Other

\"Spidey
Spidey faces Morlun

Peter discovers that he is suffering from an unknown disease that is killing him. He seeks the help of the Marvel Universe's best scientists but none of them could help him so he decides to accept the inevitable. He is later attacked by the powerful Morlun, and after a brutal fight, the totem eater rips off Peter's eye, eats it, and continues to beat Spider-Man to his apparent death. After his body is sent to the hospital, Morlun attempts to consume him, but after an intervention from Mary Jane, whom Morlun was about to kill, Spider-Man's form suddenly changed. His eyes glow red, his teeth become razor sharp and two poison stingers sprout from his arms. Peter attacks Morlun, stabs him in the shoulder with one of his stingers, and bites him in the neck. He then apparently dies in MJ's arms. He finds himself face to face with a Spider monster who tells Peter that he has to either accept his spider side and evolve or die. Spider-Man embraces his \"other\" and recovers. He reunites with his friends and family and reveals that he has received new powers.

Civil War

During the Civil War, Spider-Man joins Iron Man's team ( and gets given an iron spider suit ) and dons a new Iron Spider costume. He supported the SHRA to the point where he even revealed his identity to the public, but as a result, his life was ruined as he is fired from his job, his old friends turn their backs on him and his loved ones become targeted by his enemies since they now know Spider-Man's secret identity. Eventually, he discovers the rogue heroes' mistreatment by the government and realizes that he sided with the wrong team so he betrays Iron Man and joins Captain America's Secret Avengers, He disregarded his suit that tony start had given him as it was prone to be hacked, and he did not want to be seen using technology tony stark had made, he reverted back to his original outfit.

Back In Black

\"Back
Back In Black

After the war, Peter remains a fugitive and his Aunt May is shot by a sniper hired by the Kingpin. Peter finds himself in a place he has never been to before. He dons his black costume and goes on a rampage to find his aunt's shooter. May has fallen into a coma and is in critical condition. Eventually, Peter discovers that the Kingpin is the man responsible and tracks the crime-lord to Riker's Island Prison. He savagely beats Fisk to a bloody pulp but decides to leave him with his humiliating defeat as it's worse than death for Fisk. Peter warns the other inmates to stay away from his family and tells Fisk that when May dies, Peter will come back and finish him. Since Spider-Man is a fugitive, he is unable to get proper help for May and is forced to commit felonies to try and save her, before realizing that he has finally become what he has spent his life fighting, a criminal.

One More Day & Brand New Day

\"Peter
Peter and Mary Jane during One More Day

Peter becomes desperate to save May. He makes a deal with Mephisto who offers to save his aunt and restore the secrecy of his identity in exchange for erasing Peter's marriage to MJ. Mephisto gives the couple One More Day to decide (hence the title of the story) and Peter reluctantly agrees. He then wakes up in the house of May who is alive and well with no recollection of the deal. This marks the beginning of the Brand New Day era, in which Harry Osborn is alive and Spider-Man meets new friends and foes. He fights new villains including Mister Negative, Screwball, the Spider-Mugger, Menace who is the girlfriend of Harry, Kraven's daughter Ana Kravinoff in the story Kraven's First Hunt, the New Vulture in 24/7, teams-up with Anti-Venom to fight Norman Osborn's Thunderbolts in New Ways to Die and is accused of murder during the Character Assassination story. When the Secret Invasion took place, Spider-Man helped his fellow heroes in fighting off the invading Skrulls.

Dark Reign

After the Skrull invasion, the Dark Reign took hold. Norman Osborn was seen as a hero and became the leader of the world's national security, hunting down the heroes. Spider-Man attempted to stop him by infiltrating Stark Tower during the American Son story. He fought Osborn once more when he is placed on Osborn's list and managed to broadcast on the internet a video of Osborn conducting horrible experiments. He then joined Captain America in intercepting Osborn's Siege on Asgard, ending his Dark Reign. The aftermath marked the dawn of the Heroic Age in which Spidey became a member of the newly formed Avengers.

American Son

\"Spidey
Spidey Faces The Dark Avengers

With help from the Invisible Woman and some of her husband's technology, Spider-Man kidnaps and imprisons Mac Gargan, (they ambushed him in an alleyway, caught him in an invisible force-field, all while Bullseye picks and eats a bogey) then poses as him to infiltrate Avengers Tower, donning a special suit made by Reed Richards, allowing him to appear as Mac Gargan with the Venom symbiote. Norman has revealed a nefarious plot to his Avengers involving his son Harry entitled \"American Son\". While alone, Spider-Man was ambushed by Daken, who claims that Peter smells too clean for Gargan. Daken attacks and uses his pheromones to shut down Peter's senses, however, Peter focuses on his spider-sense alone, and eventually defeats Daken by throwing him into an electrical machine that electrocutes and knocks out Daken. However, Harry reveals Spider-Man's disguise in front of Osborn's Avengers,(even though Norman had known it all along, and only wanted to ensure he had his son's trust) and he was held captive and tortured by Bullseye. Identity intact thanks to his unstabilized mask, he escaped (subduing Norman and Bullseye in succession out of anger). Unfortunately, Spider-Man was weakened by captivity, saved from Norman by a guilt-ridden and angry Harry, who now knew the truth about his father's relationship with Lily Hollister (Harry's girlfriend,) and began using the American Son Armor to beat up Norman. Peter watched the Osborns fight until Menace became involved, whom he incapacitated. With Harry victorious, Spider-Man convinced him not to kill Norman as it was exactly what the madman wanted.

Gauntlet & Grim Hunt

\"Grim
Grim Hunt

Spider-man fights classic foes during the Gauntlet story. A plot orchestrated by the Kravinoff Family who intended to recover Kraven the Hunter, something they managed to accomplish in the Grim Hunt.

During Grim Hunt, Peter is already weakened and exhausted from his \"gauntlet\". After a loud knocking at his apartment door and he opens it only to see his estranged clone Kaine, beaten and bloodied. Before passing out, Kaine reveals to Peter that the \"Spiders\" are being hunted. A loud explosion is heard nearby his apartment and Peter goes to check it out only to see Arachne fighting off Ana and Alyosha Kravinoff. Peter, being weakened by the swine flu, struggles to put up a fight and manages to impale Alyosha on a broken pipe, gaining him time to retrieve Arachne and to escape. After retreating to Mattie Franklin's apartment, they are approached by a dead Ezekiel. He then tells Spider-Man and Arachne that they have to save Arana from the clutches of the Kravinoff's. As they finally reach her, they become outnumbered and defeated and Arachne and Arana are captured. Kaine eventually arrives to help out but was too late to make a difference. He tries to warn Peter from following Ezekiel but Peter lashes out in anger and the two set off to find Kraven's base.

When they finally reach the base, Chameleon reveals himself as being disguised as Ezekiel the entire time. Spider-man then gets ambushed and killed by the Kravinoff's. With Kraven finally back from the dead, he shows his anger at Sasha by confirming that the blood was not that of the real Spider-Man but of his clone Kaine. When Peter awakens, he finds Kaine's body in a coffin with a note reading \"Hunt me\" and his black costume lying beside the coffin. Spider-Man begins to hunt the Kravinoff's one by one, first taking out Chameleon and nearly killing Vladimir with a giant tombstone before dodging a point-blank shot from Alyosha's rifle. Spider-man than appears on the roof of the mansion and attacks Sasha, leaving the mark of Kaine on her face (using his finger's abilities to rip the skin off of her face) in revenge for the death of his clone and \"brother\". Spider-Man and Kraven then proceed to engage into battle and the fight proves to be completely one-sided as Peter goes all out with the intentions of killing Kraven for the murders of his friends. As he is about to deliver the killing blow to Kraven with his own spear, Arachne (As the new Madame Web) appears and shows Spider-man a grim future that would follow if he decided to murder Kraven. Spider-Man lets Kraven live and tells him that it's his second and last chance to live.

They were still defeated by Spider-Man, Arachne, and Arana. Peter reconciles with Mary Jane in OMIT and protects Norman Osborn's newborn baby from Doctor Octopus during a story called Origin of the Species. The baby is revealed to be Harry's.

Big Time

\"Big
Big Time

The Big Time story arc mainly deals with Peter's luck getting better after going through much turmoil. As Spider-Man, Peter has become a much more respected member of the Super-Hero community. Additionally, thanks to Marla Jameson, Peter has become a think tank scientist at Horizon Labs under the employ of known scientist Max Modell. Roderick Kingsley is murdered by a crazed Phil Urich who takes up the mantle of the Hobgoblin. He takes on the mission Kingpin initially assigned to Kingsley, which involved stealing a metal called reverbium from Horizon Labs. On Peter's first day at Horizon Labs, the lab is attacked by the new Hobgoblin who is using new weapons. After a fight with Spider-Man, Phil steals the reverbium and delivers it to Kingpin who allows Phil to work for him. Spider-Man designs himself a new Stealth Suit (Which has the ability to turn invisible.) to overcome Phil's Goblin Laugh which incapacitated him in their previous encounter. Along with the Black Cat, he attempts to take down Kingpin and Hobgoblin and steal back the reverbium. At Fisk Towers, Spider-Man and the Black Cat fight the Hobgoblin, Kingpin, and his Hand Ninjas. The reverbium is destroyed along with Fisk Towers, and Hobgoblin and Kingpin escape. But despite everything, Peter is now living a life with his dignity intact. He now has a new girlfriend, a new apartment, and a proud Aunt May and Jay Sr. Part 2 Alistair Smythe and his Spider-Slayers are back and taking aim at Mayor J. Jonah Jameson and his astronaut son John once again. Smythe returns Mac Gargan to his Scorpion identity and attacks the launch site where John is flying the Vertex shuttle into orbit which will meet up with a Horizon Labs space station. Spider-Man appears and web lines to a shuttle that just took off. Smythe has locked down the controls and rigged its booster rockets to explode before it leaves the atmosphere.

To make matters worse, the evolved Scorpion appears to kill Spider-Man. But with secret help from Otto Octavius Spider-Man saves John. He gets help from the New Avengers in defending Jonah but Smythe sends his Insect Army after Jonah's loved ones. But Spidey and his friends cannot hurt the Insect Army, they can barely even touch them, as Smythe gave them their own spider-sense. Peter with the help of Max Modell creates the spider-sense disruptor. He is given the detonator and must be far from the center of the \"explosion\" or his sense might be also caught in. But during the second fight against the Scorpion, Scorpion destroys the detonator, and Spider-Man must do it manually. And when he detonates it he is caught in the epicenter. The Insect Army has lost the spider-sense, but so has Spider-Man. After Spider-Man defeats the Scorpion, he goes to check on the others but Smythe suddenly appears and Spider-Man had not seen it coming due to not having spider-sense, but Marla Jameson did. She jumps right in front of Jonah, and saves him but scarifies her own life in the process. Spider-Man then defeats Smythe and for the first time, Jonah refuses to blame Spider-Man and blames himself instead.

Following Marla's funeral, Peter has a horrible nightmare that causes him to question his methods of dealing with criminals. People around him are dying because criminals keep on coming back. After waking up, a shaken Spider-Man decides that things will not remain as they are and vows that, whenever he is around and wherever he is, no one dies.

Spider-Island

\"Welcome
Welcome To Spider-Island

Peter is shown to be learning the 'Way of the Spider', from Shang-Chi, and also seen neutralizing a couple of robberies. Jackal is revealed to be working on a scheme, recruiting several spider-powered criminals for some kind of project. Later, Peter and Carlie Cooper are talking when Carlie reveals she has spider-powers. When news of several hundreds of New Yorkers having manifested spider-powers reaches them, Carlie web swings away to help. Peter then pretends to be another random spider-powered New Yorker and defends New York against the spider-powered villains, along with the Avengers. Anti-Venom is seen curing people of their spider-powers, as he showed the ability to do so in New Ways to Die. Jackal is seen working on the Spider-King, filled with tiny embryos. Horizon Labs and Mr. Fantastic work on finding a cure while the Avengers keep Manhattan quarantined to stop the virus from spreading. While at a lab, Peter and Carlie are attacked by Chance, Scorcher, and White Rabbit, who also have spider powers. Peter manages to defeat them using his training from Shang-Chi. Jackal has the battle taped and gives it to Tarantula to study, as he will soon be 'tested'. Reed Richards finally develops a vaccine that stops people from gaining spider powers but cannot cure those already infected. J. Jonah Jameson discovers that he, too, has gained spider powers. Anti-Venom continues curing people, however, Madame Web faints from the massive excess of spiders accessing the 'web of life'. Carlie meets up with Spider-Man when they attempt to take down Shocker, who has grown 6 extra arms. After taking off his mask, they find that his face is slowly mutating into a spider's face, and his body is doing the same. Carlie starts to mutate as well. The Spider-Queen tells Jackal that the people of New York will soon become spiders, and she will own New York.

Reed and Horizon finally develop a cure to the virus, based on Anti-Venom's symbiotic abilities, able to kill the virus and reverse the mutation, turning the spiders into normal people again. However, the Spider-Queen sends Tarantula to poison the serum; Peter fights him off, and Reed and Horizon manage to give Peter back his spider-sense. Peter, with his full power, defeats Tarantula and throws him into a pool of the serum. The serum cures Tarantula of his degeneration and even the Spider-Queen's mind control; the healthy Kaine offers to help Peter. Madame Web and Spider-Queen are both reconnected to the Web. Spider-Queen thus becomes a Spider-Goddess.

Spider-Queen has now evolved into a massive, spider-like monster, drawing strength from all infected New Yorkers. Mary Jane realizes that, because of her long relationship with Peter, she has some immunity against the disease, gaining spider-powers but not the subsequent mutations. Peter gives Kaine the Stealth Suit (immune to the Queen's sonic attacks) and Kaine goes to attack the Queen. Peter and Mary Jane gather several Autobots, outfitting each with several doses of the cure, making them go out to cure people. Peter then connects with the antennae on top of the Empire State Building, curing many people at once, while Mary Jane fights off the spider-like creatures attacking them. Kaine jumps inside the Queen's mouth, killing her by reflecting her sonic scream on her insides. The Jackal uses a disguise to get samples of the Queen's bone marrow for future experiments.

The following day, Peter learns from Doctor Strange that the psychic blindspot put in place to defend his secret identity has been destroyed, because of a viral video of spider-powered Peter defending people. Carlie deduces who Peter is and promptly breaks up with him for lying to her. Mary Jane admits her love for Peter, and Peter administers an antidote to her. The two look up at the Empire State Building, which is projecting a red and blue light, thanking Spider-Man for his heroic deeds.

Ends of the Earth

\"Mind
Mind Controlled Avengers

Doc Ock knows that he is soon going to die. Before his death, he wants to be remembered as the man who saved the world by stopping the Greenhouse effect. Spider-man doesn't believe Octavius, however, so he gathers the Avengers in order to discover Ock's true plan and put a stop to it. Unknown to Spider-Man, Doctor Octopus was well prepared for the fight and the Sinister Six subdue the Avengers. Doc Ock is about to kill Spider-Man, but Silver Sable comes to the rescue. She saves Peter and the Black Widow, and they set off to Octavius' manufacturing plants. There they encounter the Sandman, but they manage to beat him. Doc Ock asked the nations to capture Spider-Man (his position enabled him to do so) and he also called on many villains to take down Spider-Man. Parker knows that he can't stop Otto alone, so he asks other heroes to destroys Ock's facilities. When Spider-Man, Black Widow, and Silver Sable reach the main base in Romania, Doctor Octopus activates his satellites, and every area that faces the sun explodes. It later turns out that this was only an illusion created by Mysterio, rather than reality. Spider-Man captures Mysterio and finds out that Doc Ock is hiding in Guatemala, but after Pete, Silver, and Natasha arrive at the site they're attacked by a group of mind-controlled Avengers. Spider-Man, Black Widow, and Silver Sable gain an edge because the mind-controlled Avengers are unable to fight as well as they would normally, and the Avengers are able to return to their senses thanks to Mysterio's technology.

Black Widow was knocked out during the fight, however. Doctor Octopus launched several missiles so the Red Hulk, Iron Man, and Thor try to put an end to it. Mysterio reveals that Octavius' base is underwater, so Spider-Man and Sable resolve to put an end to Otto's plot once and for all. They, unfortunately, meet Rhino on their way, and he catches Sable and begins choking her in the water. With her final breath, Silver tells Peter to leave her and stop Otto. Spider-man is desperate to help her, but he knows that he's running out of time and is left with no choice. Spider-Man finally finds and battles Octavius, but he is eventually caught in the Doc's metal tentacles. With Parker trapped, Octavius reveals that his plan is to scar the earth, to be worse than Hitler and the other monsters, and in that way be remembered. Octopus removes his armor in order to activate his master plan, but Spider-Man tells Doc Ock that he had made an error in allowing himself to be distracted just long enough for Peter to break free. Spider-Man saves both Doctor Octopus and the world, but at the cost of Silver Sable's life.

No Turning Back

It's been three weeks since spider-man foiled Doc Ock's plan and now Peter is invited to MJ's, which is Mary Jane's Club, but he is still under the weather because he was not able to prevent Silver Sable's death, but while Peter is \"having fun\" at the party Carlie calls and tells Spider-man to come to meet her at the cemetery. Spider-Man arrives and Carlie tells him that the groundskeeper saw a pale man digging the grave of Billie Connors with his bare hands and then vanishing into the dark with the body. Spider-Man instantly realized that this pale powerful man was Morbius and he goes to face him at Horizon labs. Spider-Man, disgusted by Morbius' actions, starts to attack him but eventually stops when Michael explains that the reason he dug up the grave was to find a cure for the Lizard, and he tells Peter that he has already accomplished his goal. Spider-Man, hearing this, plans an attack on the Lizard and confronts him in the sewers and fights him for a long period of time, but finally, Morbius and Spider-Man stab the Lizard with enough hypodermic harpoons for Max to bring Connor's back. But the Lizard is still in control, even in Kurt's body.

The Lizard awakens Morbius' violent vampire side, with the smell of blood. And while Spider-Man was distracted by Morbius, Connors created the new serum that will turn him into the Lizard again, but this serum turns everyone into lizards except Connors himself, so while testing this serum Connors turns the entire Horizon Labs crew into Lizards. When he finally created the serum for himself, it turned him into a new version of the Lizard. When Spider-Man comes after capturing Morbius, Carlie tells him what has happened. Spidey creates a new cure and a battle ensures between Spider-Man and the Lizard. When Spider-Man stabs the Lizard with a harpoon filled with the cure, nothing happens, the cure doesn't work. Only at the end, we see that the cure has actually worked, and now Connors' mind is secretly in control of the Lizard's body.

Alpha

A teen outcast Andy Maguire went on a trip from his school to Horizon Labs, where Peter Parker was holding an experiment. Tiberius Stone, not liking Peter, sabotages the experiment, and Andy is hit with a ray of Peter Particles. Soon after he discovers he has super-powers. When he is examined by top greatest superhuman specialists, Reed Richards, Tony Stark, Henry Pym, and Hank McCoy, they discover that he has energy projection, flight, super speed, super strength, and force field, but his limitation is he can control only one power at a time. Reed tells Peter that he had discovered these particles, but didn't publish his work, because he considered the particles too powerful and dangerous.

He then assigns Alpha as Spider-Man's sidekick. Alpha is however very careless and eventually quits working with Spider-Man and goes solo. Spider-Man decides then that there should be Alpha no more! Soon when the earth is under attack from Terminus, Alpha is called by Captain America to fight him. During the fight, Alpha behaves most irresponsible and almost destroys planes flying in the air. Though Alpha defeats Terminus, Peter observes that Terminus' staff can redirect Alpha energy. Then Spider-Man calls Alpha for another \"analysis\" and uses the tech acquired from the Terminus to strip Andy of his Alpha power, leaving him as nobody again.

Dying Wish

Using a modified Octo-bot, Octavius successfully transfers his consciousnesses into Spider-Man, leaving him with Peter's memories and body and Peter Parker in Doctor Octopus's dying one. After leaving Peter for dead Otto begins to take on Spider-Man's life as his own. Peter eventually took control of the golden Octo-bot and using one of Doc Ock's own contingency plans had Scorpion, Hydro-Man and Trapster free himself from the S.H.I.E.L.D. prison The Raft. It was then that Peter tried to redo the body switch with Ock who had taken precautions to keep that from happening. Peter instead had Otto relive all of Peter's memories showing Dr. Octopus how much he had wasted his life. As a result of Peter's personality grafted to his own, Dr. Octopus decided to continue on as Spider-Man and make up for his past mistakes as the Superior Spider-man.

Superior Spider-Man

\"SPIDEY
SPIDEY IS THAT YOU!?

However, Parker still existed within Doctor Octopus's mind in the memories that he absorbed. The consciousness intent on stopping the villain and reclaiming his life tries to influence Octavius but fails to do so in any more than the slightest of ways. Parker's remnant also inadvertently causes Otto to share Peter's genuine love for Mary Jane Watson, and so pushes her away for her own safety. After Otto used a brain scanner to treat a young girl's brain injury, he decided to use the device on himself to discover Parker's presence within his mind. A mental battle ensues between himself and Parker, which Otto seemingly wins, erasing Peter's memories.

After Octavius tries to retrieve some of Parker’s memories in an attempt to solve a reverbium related problem, Peter's consciousness begins to re-emerge, having somehow escaped the mind-purge. When Otto is possessed by the Venom Symbiote and is unable to free himself of it, Peter's consciousness again emerges and breaks the Symbiote's hold over Dr. Octopus, enabling Flash Thompson to call it back to him.

Peter Parker's re-emerged consciousness begins to explore his Mindscape, discovering the world is now a large empty space, with only the very few key memories left. Recalling that he's more than Peter Parker, he is Spider-Man, he declares that Otto had made a big mistake in leaving the memories that define him and promises to find a way to regain control of his body. Continuing to explore the Mindscape for clues into reclaiming his body from Doctor Octopus, he makes a note that only 31 pieces of his memories are left and wonders what he can do with them. Just then, he stumbles upon the memory of his fight with the Green Goblin at the Brooklyn Bridge, wonders why Doctor Octopus is probing into this. Deciding to delve into Doctor Octopus's memories for a way out, he is overwhelmed by the number of memories and struggles to hold on. He sees a bright light and witnesses the moment of Otto Octavius's birth. Peter Parker's consciousness struggles to fight against the deluge of Doctor Octopus' memories, but it proves too much and he convinces himself that he is Doctor Octopus merging with Otto's memories.

Spider-Verse

While adjusting to his new status quo, especially his position as the CEO of his very own company, Peter learned of the existence of Cindy Moon, a second person to have been bit by the same radioactive spider which granted Peter his powers. Spider-Man tracked her down and freed her from a bunker owned by the late Ezekiel Simms, where Cindy had spent over a decade in voluntary confinement shortly after getting her powers, in order to avoid drawing attention. While Peter notified Cindy that Morlun was dead, he had, in fact, survived his last encounter against Spider-Man.

\"Web
Web Warriors

Not long after rescuing Cindy, who went on to adopt her own superheroic identity as Silk, Spider-Man was approached by a contingent of spider-people from all over the Multiverse that banded together to fight the Inheritors, a group of psychic vampires and family of Morlun that had begun to hunt down the spider-totems of other realities. During a mission to gather more recruits in 2099 A.D., the Spider-Army stumbled upon another party of spider-people led by Otto Octavius, or rather a version of him from the recent past who had been plucked out of time.

The combined Spider-Army were forced to retreat to Earth-3145 after their safe zone in Earth-13 had been compromised by the Inheritors, namely Morlun, his brother Jennix, and his father and leader of the Inheritors, Solus. With the help of Spider-Woman, who had previously infiltrated the Inheritor's base on Earth-001, the Spider-Army learned of a prophecy in which the Inheritors planned to sacrifice three key spiders: the Other, the Bride, and the Scion. These individuals were Kaine Parker, Cindy Moon, and Benjy Parker of Earth-982, respectively.

With the help of even more recruits from other realities and even a deviant Inheritor named Karn, the Spider-Army, including a version of Gwen Stacy with spider-powers known as \"Spider-Gwen,\" launched one final attack on the Inheritors' home of Earth-001. The ritual was stopped, and the Inheritors were exiled with no means to return home to the radioactive wasteland that had become the world of Earth-3145.

With the Inheritors neutralized, most of the spider-totems were sent home. Spider-Man and a few others stayed on Earth-001 for a little while longer to defeat the time-displaced Octavius, who had gone rogue after learning that Parker would eventually regain control of his body. Octavius was defeated and returned to the time he had come from, losing the memory of the recent events in the process. With no more problems to confront, Spider-Man and the rest of the spiders were sent back home.

Rise and Fall of Parker Industries

Unbeknownst to anyone, Otto Octavius had created a digital back-up of his own mind which ended up inhabiting the metallic body of Parker Industries' robotic assistant, the Living Brain. Over the course of the following months, Octavius routinely hacked into the systems of the market share to manipulate its numbers in the favor of Parker Industries.

\"Web-Ware\"
Web-Ware

As a consequence of this, the company managed to expand into a global conglomerate with numerous bases in different countries, with the company's trademark invention being a mobile device called the Webware. This change in Peter's life impacted his superheroic alter ego as well. Spider-Man officially became the mascot of Parker Industries under the guise of being Peter's bodyguard.

One of Peter's biggest challenges during his tenure as a billionaire C.E.O was the emergence of a mysterious biotech company, operating out of the Transamerica Pyramid, called New U. Peter discovered it was a front for the operations of the Jackal, who claimed to have found a way to bring people back from the dead using cloning technology. In an attempt to persuade Peter to put Parker Industries' resources to help his plan, the Jackal resurrected numerous of his late friends and foes, including Gwen Stacy. In a turn of events, the Jackal was revealed to be Ben Reilly, who had been brought to life by the original Jackal before taking his place.

The Jackal's plan eventually fell apart following the triggering of cellular decay in the clones created by New U, which led to the release of the Carrion Virus worldwide. The crisis was adverted when Spider-Man had his Webware transmit an audio frequency in a global scale which halted the cellular degeneration but not before most of the clones died. The Jackal, is a clone himself, was left for dead, though he secretly escaped and returned to the mantle of the Scarlet Spider.

Afterward, Peter teamed-up again with Teresa Durand, a CIA agent with whom Peter had already joined forces in a mission at least a year ago during which she was seemingly brainwashed by the Kingpin and Mentallo to believe she was Peter's long-lost sister. Teresa sought Peter's help when on the run from a government organization called the Gray Blade.

Hydra's take-over of the United States of America temporarily put a halt to Peter and Teresa's escapades. Numerous headquarters of Parker Industries around the globe were then targeted by the forces of the terrorist organization, namely a unit led by one of Hydra's latest additions, the duplicate of Doctor Octopus, who had gained a physical body through the Jackal's cloning technology.

In a last-ditch effort to prevent the resources of Parker Industries from falling in the hands of Octavius and Hydra, Parker had his employees obliterate all systems of the company, running Parker Industries into the ground. He later fought alongside the rest of America's superheroes that assembled in Washington, D.C. to retake the United States from Hydra's control.

Despite having his civilian reputation smeared due to his company's collapse, Peter quickly got back on his feet. After beginning a short-lived relationship with Parker Industries' former S.H.I.E.L.D. liaison Mockingbird, Peter was hired by Robbie Robertson as the editor for the Daily Bugle's science section.

Before Peter recovered himself, however, his adventure with Teresa continued, who discovered that she truly was Mary and Richard Parker's daughter, and shared this information with Peter.

Not long after Peter had decided to reveal his secret identity to Jameson, Jonah was kidnapped by Norman Osborn, and accidentally let it slip that Peter was Spider-Man. In addition to having regained his powers, Osborn had bonded with the Carnage Symbiote, giving birth to the Red Goblin.

Peter failed to take down Osborn despite the help from his allies, and was overpowered in battle even after Eddie Brock had lent him his symbiote. Peter only managed to defeat Osborn in a fight after tricking him into rejecting the symbiote, having claimed that any credit for his defeat would go to the Carnage symbiote and not Osborn himself. Unfortunately, the process of defeating Osborn cost the life of Spider-Man's biggest fan, Flash Thompson, who had recently become the superhero Agent Anti-Venom.

Kindred Rising

Following Osborn's defeat, Peter's life was presented with several tribulations. After becoming Mayor of NYC, Kingpin became publicly accepting of Spider-Man while condemning all other vigilantes in order to isolate the Web-Slinger from his super hero peers. In his civilian identity, Peter was accused of plagiarizing his doctoral dissertation from Octavius. Unable to defend himself without exposing his secret identity, Peter had his credentials revoked, causing him to be fired from the Daily Bugle.

On the other hand, Peter became romantically involved again with Mary Jane, and was given an opportunity to re-apply for his doctoral thesis on the recommendation of Dr. Curt Connors, leading Peter to re-enroll at the Empire State University to earn his college degree himself. Peter also moved into a shared apartment with Randy Robertson and Frederick Myers, the alter-ego of the super villain Boomerang, with whom Peter eventually developed a friendship both as Parker and Spider-Man.

During this time, Peter became the target of fixation of a mysterious supernatural entity that dubbed himself \"Kindred\" to hide his true identity, that of Harry Osborn, somehow turned into a demonic creature consumed by the belief that Peter had to repent for his sins and the misery he brought on his loved ones.

As Kindred, Harry pulled the strings of Peter's life to ensure no harm befell him until they could meet directly, while also forcing him and Mary Jane apart by employing Mysterio to have her career make her move to the West coast to film for some months. Kindred only presented himself to Peter in nebulous nightmares to further his psychological torment, leaving him with the uneasy sensation that somebody was lurking.

Due to Octavius' reckless experimentations with the Inheritor's technology, the totem-hunting family broke free from their prison, with Morlun personally going after Peter. Spider-Man was successful in defeating Morlun with the help of J. Jonah Jameson and the NYPD, and managed to join the reassembled Spider-Army in the final confrontation against the Inheritors that saw the defeat of the hunter family.

Peter's next big challenge presented itself when Kraven the Hunter hurtled him into a hunting contest alongside various animal-themed villains held in Central Park. Accompanied by a younger clone of himself he deemed his \"son,\" Kraven's ultimate goal was to goad Spider-Man into killing him, since only dying by the Web-Slinger's had would break his undead curse. During their final confrontation, Spider-Man convinced Kraven that true strength of character was best shown through compassion and mercy. Kraven called off the hunt and donned Spider-Man's costume to die in battle against his son. Since embracing Peter's ideals turned him into Spider-Man in spirit and because his death was deliberate, therefore by his own hand, the curse allowed Kraven to remain dead.

Shortly afterward, Peter became tangled in a conflict between Venom and the resurgent Carnage, who had become the herald of the Symbiote God Knull and embarked in a journey to retrieve symbiote remnants of people, dead or alive, who had been bound to a symbiote, in order to awaken Knull from his slumber. Spider-Man helped Venom's efforts to stop Kasady, most notably protecting Brock's son Dylan and Normie Osborn from Norman Osborn, who still believed himself to be Cletus Kasady and had been bonded to a copy of the Carnage symbiote by the real Kasady and turned into a pawn. Dark Carnage's reign of terror was stopped by Venom when he murdered Kasady to save Dylan's life, albeit causing himself to absorb Kasady's composite symbiote, awakening Knull.

Kindred would finally interact directly with Peter, setting the stage by resurrecting Stanley Carter, the Sin-Eater, and sending him on a campaign of vicious vigilantism, using new abilities to strip both the powers and wickedness off super villains, leaving them with a deep repentance. Under Kindred's orders, Sin-Eater targeted the restored Norman Osborn, the new director of the Ravencroft Institute. Initially conflicted, Peter chose to save Osborn, who became the Green Goblin again to fight in his escaping Sin-Eater. With help from his spider hero friends in The Order, Peter brought Osborn to an escape pod but Osborn's antagonism caused Peter to reconsider and abandoned Norman Osborn to Sin-Eater's mercy.

With Sin-Eater purifying Osborn, Kindred had the collected sins absorbed go out to possess and corrupt the Order. Managing to evade his possessed allies, Spider-Man sought Doctor Strange's help, later using a mystic artifact to locate Kindred's home at the Osborn family cemetery. Kindred staged the corpses of lost loved ones in a macabre scene, expressing his intentions to Peter, and eventually revealing himself as Harry. Kindred continuously killed and resurrected Peter as a direct torture, then forcing him to sit at a dinner alongside Mary Jane to repent for his perceived sins, including what Peter didn't remember that allegedly turned Harry into Kindred. The event was interrupted by Norman, who allied himself with Kingpin to capture Harry in a Darkforce cage.

While Spider-Man was liberated from Kindred's clutches, Peter was shaken to his core and knew that his and Mary Jane's ordeal with Kindred wasn't truly done. While drained emotionally, Mary Jane would give him an improvised therapy session to alleviate some hurt, regaining some hope in himself.

After Peter accepted Norah's TNM job offer, granting Spider-Man a new suit enhancing his physical attributes, Spider-Man and Boomerang continued collecting Tablet fragments and moved to secure the final piece. Rescuing an abducted Randy and Janice, Spider-Man aided Robbie and Tombstone with The Syndicate in taking down Madame Masque and Crime Master. With help from his New Avengers colleagues and Black Cat delivering Fisk's fragments, Spider-Man passed the final fragment's curse test, but Fred betrayed him with help from his cohorts. Felicia returned Peter to his ruined apartment to rest, later reading Fred's note explaining his long con before the others informed him that Fisk instead revived his son, The Rose. Quitting TNM and donating his pay to Aunt May's FEAST shelter, Peter met with Betty returned home from Europe, surprised by her advanced pregnancy.

Personality

Whether a law is right or wrong, moral or immoral, is an idea, a personal philosophy... but it always seems that fights over ideas skip over the barrier into the real world and become battles of real violence.
--Spider-Man (Peter Parker)

Spider-Man is commonly seen as a brave and righteous hero with an indomitable sense of justice and responsibility. Shaken by his uncle's tragic death, Spider-Man's vow of responsibility has led him to a path of heroism and humanitarian service. There are times when Spider-Man's sense of responsibility can be almost overbearing; this was evidently noted by Luke Cage when he felt embarrassed about Electro causing the Raft breakout, despite the fact he had nothing to do with it. This combined with his strong moral compass in the face of adversity and sharp wit makes him one of the most iconic and enduring heroes in the Marvel Universe.

One of Spider-Man's most prominent traits is his sense of humor. He at times is seen as the class clown in every group he is in. Even in the face of certain death, Spider-Man invariably cracks a joke, to the annoyance of both friends and foes. His reasons for this vary: either he wants to relieve the stress of a situation, or simply because he wants to hide how scared he really is during a crisis. Also, he does this to get on the nerves of his opponents, since he knows that if they are angry, that they would normally lose themselves and be vulnerable to a superior skilled opponent. It is generally agreed, however, that whenever a life is in danger, he will stop telling jokes and take the current situation with the utmost seriousness.

Behind this humorous facade, however, is a wounded soul that has gone through much suffering. While Spider-Man is in combat, occasionally another person dies, leaving him depressed for having failed in his responsibility. Guilt over the loss of his Uncle Ben continues to be the primary motivating factor in his super-heroics and his life in general. Peter is quick to assume guilt and responsibility for anything bad that happens in his presence or that can, in some way, relate back to him. For instance, he assumed responsibility for Electro's mass breakout at the Raft and Norman Osborn's Initiative because they were \"his\" villains.

Death, in particular, is difficult for Peter to reconcile with, leading him to make dramatic and unrealistic proclamations, such as his \"Nobody dies!\" credo after Marla Madison's passing. Peter has developed post-traumatic stress disorder, particularly related to Norman Osborn's murder of Gwen Stacy and Flash Thompson, which was exacerbated by Kindred repeatedly killing and resurrecting him. Peter also deeply hates symbiotes and blames himself for everyone who has died at the hands of Venom, Carnage, and other symbiotes due to having brought the Venom symbiote to Earth.

Spider-Man is also traditionally a loner. Due to his individualistic style, having been a social outcast in his youth, Spider-Man finds it hard to work in teams. However, this has gradually lessened over the years, to the point Spider-Man has worked actively with the Avengers.

Peter is also a strong-willed hero, whatever obstacles that come his way, if it's relationships, being misunderstood, or someone dying in his watch, he always gets back up. His indomitable will and don't give up attitude usually pushed him to do amazing feats like supporting the weight of a jet[344] and beating up Firelord. Despite being a hero, Spider-Man is nerdy, awkward, and shy. These traits have faded through the years as Parker grew up and gained confidence, but elements of the awkward teenage nerd still remain in his personality.

Spider-Man's righteousness complimented Daredevil's maturity as a crime-fighter during the The Death of Jean DeWolff, leading to an enduring friendship. Peter also made close ties with the Fantastic Four at the very start of his career, which stands greater than ever today, like a family rendering aid to each other unconditionally.Spider-Man has bonded with the New Avengers of whom he is a founding member, trusting them so much that he would reveal his identity to them. Of the two previously mentioned teams, Spidey is closest to the Human Torch, playing pranks on one another or seeking solace respectively, and Wolverine, respectively. Peter is also quite close to the X-Men, able to sympathize with the public scorn that mutants often face,[351] and once joining their faculty - though he was quick to call them out on being prejudicial against non-mutants. Spider-Man has also developed a strong friendship with Deadpool, despite annoying each other with their morals and jokes.

Personal Data

Characteristics

  • Height: 5'10\"
  • Weight: 167 lbs. 11.93 stones 75.75kg
  • Eye Color: Hazel
  • Hair Color: Brown

Status

  • Identity: Secret
  • Place of Birth: Forest Hills, New York
  • Citizenship: U.S.A.
  • Education: College graduate (biophysics major), doctorate studies in biochemistry (incomplete)
  • Occupation: Freelance photographer, former assistant high school coach, former science teacher, scientific researcher, Horizon Labs employee
  • Known Relatives: Richard Parker (father, deceased), Mary Parker (mother, deceased), Benjamin Parker (uncle, deceased), May Parker (aunt), Will Fitzpatrick (grandfather), Amy Reilly (cousin), Amanda Reilly (cousin), Alexa Reilly (cousin), Benjamin Reilly (Scarlet Spider, clone, deceased), Kaine (clone), Spidercide (clone).

Powers and Abilities

\"Spider-Man\"
Spider-Man

Spider-Man possesses the proportionate powers of a spider, granted to him from an irradiated Common House Spider (Achaearanea Tepidariorum) which bit Peter Parker that was apparently already mutated from prior exposure to certain frequencies of radiation and received a final, lethal dose during Parker's attendance of the exhibition.

The radioactive, complex mutagenic enzymes in the spider's blood that were transferred at the time of the bite triggered numerous body-wide mutagenic changes within Parker, granting him superhuman strength, speed, toughened flesh, and numerous arachnid-like abilities. Like many superhuman powers, the effectiveness of Spider-Man's abilities varies based on the author and the needs of the story.

Spider-Sense

Spider-Man has many abilities but the most amazing of all is his uncanny Spider-Sense. It is a tingling sensation on the back of his skull that acts as a \"sixth sense\" and it manifests when he is around or targeted by incoming dangers. It's a precognition ability that is pheromone-based and is similar to Daredevil's radar sense, increasing his reaction time and awareness. The spider-sense can manifest when Peter's secret identity is about to be compromised. It also manifests when he encounters someone who might pose a threat to him or to someone he cares about. For example, when Peter saw his roommate Michele Gonzales with one of her clients, his spider-sense warned him that the client was actually a thug who was participating in a super-villain gladiatorial contest. While the spider-sense cannot discern the specific nature of the impending threat, he can identify which direction it is coming from and the severity of the danger by the intensity of the spider-sense. Sometimes it becomes strong enough to be painful. When Spider-Man is blinded, the Spider-Sense works as another set of eyes to avoid bumping into objects. When Daken used his pheromones on Spider-Man, Peter closed his eyes and relied only on his spider-sense to defeat his foe because the pheromones corrupted his sight. A similar situation happened when Peter fought the new Vulture who blinded him with acid in the eyes. Spider-Man relied on this ability to survive this fight. Of course, his Spider-Sense is a great help when he faces people in the dark. This has been proven in his fight with Iron Fist. The spider-sense can lose its effectiveness when Peter is too distracted, tired, or when he chooses to ignore it although it's difficult to do so because it is heavily linked to his reflexes. There were also times that his spider-sense wasn't very effective due to Spidey's previous lack of formal training, but this has since has been largely rectified since learning the Way of the Spider. Under extreme circumstances, such as fighting in the dark or against powerful characters, Spidey has often used his spectacular spider-sense in a more effective and better way. The Spider-Sense also gave him his own free-style form of combat, allowing him to go head-to-head with the best martial artists in the Marvel Universe and his H2H skill has improved significantly since merging his Way of the Spider training with his Spider-Sense. Furthermore, the Spider-Sense also allows Spider-Man to detect certain radio frequencies on which his spider tracers' signals are based upon. During Spider-Man's first encounter with the Chameleon, the villain used a certain radio frequency to send a message to Spider-Man via his spider-sense. The Spider-Sense, combined with his speed and reflexes allows Spider-Man to dodge almost all conventional attacks. Due to the similar nature of their powers, Spider-Man is unable to sense other \"Spiders\", such as Ben Reilly, Ezekiel, and Kaine. During the Big Time story, Spider-Man used a device to block Alistair Smythe's minions' enhanced senses but also disabled his own Spider-Sense. After the events of Spider-Island, Peter regained this ability.

Superhuman Strength

Spider-Man has the proportionate strength of a spider, thus allowing him to press 10 tons without effort and much more when under stress. His attacks are so strong; they could kill a normal person- Spider-Man has to pull his punches or kicks when not fighting foes with similar or higher strength levels to avoid fatalities. His strength also extends to his feet, allowing him to leap great lengths and attain a height of much greater than three stories with one powerful jump. Spidey's strength has made him capable of going toe-to-toe with opponents including Doctor Octopus, Venom, and Rhino. He has even held his own against powerful heroes such as Iron Man and the Hulk. It's also shown that Spider-Man can break free from Doctor Octopus's nearly indestructible arms albeit with much effort, although this was due to the Sinister Six suit enhancing his strength. Spidey's strength and durability also give him incredible stamina allowing him to exert himself beyond the limits of humans as his body produces fewer fatigue toxins. He was able to fight Morlun continually for many hours and has stated an ability to hold his breath for at least twice as long as non-enhanced humans. After his encounter with the Queen, Spider-Man's strength had been increased to the point where he has become able to lift over 15 tons without effort and after the Other story arc he was able to lift at least 20 tons without effort. During that time, he wore an Iron Spider costume designed for him by Tony Stark which increased his strength further allowing him to lift over 25 tons without effort. He has stopped wearing the Iron Spider costume after the Civil War and his enhanced strength was erased by Mephisto after the One More Day storyline. Spider-man's best strength feats tend to come during periods of emotional duress- for example in a fight with Iron Man 2020, where when a boy was injured mid-fight, an enraged Spider-Man jumped up to his flying height and hit him with such force the foe was sent flying hundreds of feet into a building, which was destroyed on impact. Another instance was when he lifted a segment of the Daily Bugle after the building was attacked by the Green Goblin. In both cases, he didn't have any enhancements from the Queen or the Other.

Superhuman Speed, Agility, Flexibility, and Reflexes

Spider-Man possesses the uncanny speed, agility, and reflexes of a spider. He can move at a speed that surpasses that of the finest human athletes. This is particularly evident over short distances. He has frequently speed-blitzed many foes- including those with enhanced speed and reflexes, moving so fast that he leaves blurring after images. He has been described as moving with the speed of machine-gun fire, moving faster than the eye can follow, and moved so fast that Daredevil (who has enhanced reflexes and senses) could barely register him, and was unable to react to a punch he was knew Spider-Man was going to land. Over longer distances, his speed seems less pronounced, but he was still able to outrun Kraven and his cheetahs (both of whom can run at over 60 mph) and has easily outrun speeding cars. However, this could be due to his preference for Web-Slinging over longer distances than due to an inability to maintain higher levels of speed over longer distances. Spider-Man can easily perform the most complicated acrobatic moves as his body is extremely flexible, giving him agility, balance, and bodily coordination that surpass those of the finest human athletes. Spider-Man is considered the best when it comes to balancing in the Marvel Universe, as he possesses excellent equilibrium allowing him to balance himself on any object. Even some of the most agile street-level heroes like Captain America, Daredevil, and Wolverine are nowhere near Spider-Man's level of speed and agility. Spider-Man's reflexes are forty times greater than peak level humans, and when combined with his Spider-Sense, speed and agility, enable him to dodge bullets and other conventional projectiles with ease. During the Grim Hunt storyline, he even dodged sniper rifle fire at point-blank range after the bullet had been fired.

Superhuman Durability

Spider-Man also has incredible durability to blunt trauma as his body is much tougher than that of a normal person. He can withstand such levels of damage and punishment that would kill non-super-powered individuals. For example, he has frequently taken blows from characters with high levels of superhuman strength (Hulk, Venom, Rhino, Puma, Green Goblin, etc) without sustaining significant injury. He has also survived the force of having a building collapse on him multiple times. This durability extends to falling from great heights. For example, he was once knocked through three buildings by Mr. Negative before falling multiple stories to the ground, yet still remained conscious. His durability to blunt trauma also extends to explosive forces, and he has taken explosions with the force of a hand grenade and recovered nearly instantly in a recent fight with the Juggernaut. In the Sins Past Storyline, he tanked a building destroying explosion but was significantly weakened afterward. The toughness of Spider-Man is such that he often rolls with the blows of punches thrown by non-powered foes to avoid injuring them- when he once decided to tense his abdominal muscles against the blows of a trained boxer, the boxer broke his wrists. Scorpion once described Spider-Man's body \"as being as hard as concrete\".

However, Spider-Man's durability isn't nearly as formidable against penetrative forces. He can be hurt by knives and bullets much in the same way that normal humans can and has been rendered unconscious by a tracking bullet that pierced his shoulder. Normal bullets also tend to cause Spider-Man problems as well. When he lost his Spider-Sense and faced a villain known as Massacre who utilized multiple weaponry and traps, Spider-Man decided to make a bulletproof suit from tech at Horizon labs. However, if injured by such forces, his healing factor allows him to heal much faster than normal humans can.

Wall Crawling

Spider-Man's exposure to the mutated spider venom induced a mutagenic, cerebellum-wide alteration of his engrams resulting in the ability to mentally control the flux of inter-atomic attraction (electrostatic force) between molecular boundary layers. This overcomes the outer electron shell's normal behavior of mutual repulsion with other outer electron shells and permits the tremendous potential for electron attraction to prevail. The mentally controlled sub-atomic particle responsible for this has yet to be identified. This ability to affect the attraction between surfaces is so far limited to Spider-Man's body (especially concentrated in his hands and feet) and another object, with an upper limit of several tons per finger. Limits to this ability seem to be psychosomatic, and the full nature of this ability has yet to be established. Spider-man utilizes this ability in his locomotion across New York but also has the ability to use it offensively, in a manner resembling the Mark of Kaine. Spider-Man rarely uses this ability though, due to its brutal and disfiguring effects. It also works differently, ripping off layers of skin and muscle, rather than burning it as Kaine does via the HCL secreted through his palms.

Organic Webbing

There are different areas in different comic book universes where Spider-Man has organic webbing, which is often shown as being stronger and more long-lasting than his synthetic variants. Spider-Man has organic webbing from the movies (of course) and 616 (end of civil war, back in black, etc.) Spider-Man also has organic webbing in the 2099 universe. It seems the strength of his webbing relates directly to his health.

Superhuman Stamina

Spider-Man's advanced musculature produces fewer fatigue toxins during physical activity than an ordinary human. This allows him to exert himself physically for much longer periods of time before fatigue begins to impair him. At his peak, Spider-Man can physically exert himself at his peak capacity for many hours before the build-up of fatigue toxins in his blood begins to impair him. He once fought Morlun for many hours continuously and has stated an ability to hold his breath for at least twice as long as non-enhanced humans.

Regenerative Healing Factor

Spider-Man has a limited healing factor. While not on Wolverine's level, it is sufficiently powerful enough to recover from severe injuries from broken bones and large amounts of tissue damage in a matter of days. After getting his powers, he soon found that his eyesight was repaired, discarding his glasses. During a battle with a villain called the Masked Marauder, Spider-Man is rendered completely blind, however, after about 2 days his sight was perfect, albeit sensitive for about a day after. In another instance, he suffered multiple broken bones, trauma, and blood loss when he was defeated by the Rhino but was fine in the next issue.

Foreign Chemical Resistance

Due to his accelerated metabolism, Spider-Man has a higher tolerance for drugs and diseases than normal humans, and he can recover from the effects of larger doses rapidly. During an encounter with the Swarm, Spider-Man was incapacitated by thousands of bee stings but recovered in less than 24 hours. In another example, he was able to recover from the effects of gases nearly instantly. His resistance and recovery time to other toxins and diseases varies but is typically significantly higher than normal. Spider-Man's unique physiology even allowed him to recover from the effects of vampirism. Spider-Man was able to recover completely from acid being spat into his eyes by the new Vulture; Jimmy Natale, although the extent of the damage may have been restricted due to his superhuman durability. However, Spider-Man has normal human tolerance for alcoholic beverages.

Superhuman Sight

Spider-Man also seems to have at least some degree of Super-Human sight, at least in order to assist his Superhuman speed, reflexes, and agility. Ever since obtaining his powers, he has not needed his glasses and has frequently pulled off impressive aiming feats with his webbing, although this is assisted with his Spider-Sense. Perhaps most impressively, during Spider-Island, a depowered Hercules with Spider-Man's power-set said he could see bullets in slow motion.

Skills

On top of his spider-given powers, Peter is of genius level intelligence. It has even been stated that Peter scored as high on some of the same testing scores as Reed Richards did when he was Peter's age. He is especially gifted in the sciences such as mechanics, biology, and physics. This has become particularly apparent during his time working at Horizon Labs, where he was able to create a device to drain Alpha of his powers in less than 24 hours.

He has built many devices in his career as Spider-Man and is a skilled photographer and teacher. He has developed a unique style of combat over the years. Spider-Man, even before his training from Shang-Chi, has gone toe to toe with even the best marvel fighters. His spider-sense alone is like a close combat expert and combined with Spider-Man's reflexes and physical attributes, make it very difficult for Street-levelers to defeat him when he is not holding back.

Upon approaching the Spider-Island arc, Peter felt vulnerable with the lack of his spider-sense. He began training under Shang Chi to create his own unique martial arts style to make up for his lack of spider sense called the \"Way of the Spider\". It was then revealed that Shang Chi was instructed by the new Madam Web (Julia Carpenter the former Arachne and Spider-Woman) to secretly prepare Peter for a future threat (Spider-Island). This style consists of among other things, hitting pressure points with Spider Strength, and striking with Spider Speed. This new martial art has considerably improved Spider-Man's H2H capabilities, and so far he has stalemated Julia Carpenter and effortlessly defeated 3 spider-powered individuals in a few seconds during Spider-Island. When he regained his Spider-Sense, he defeated a mutated Kaine who was considerably stronger and quicker than him and effortlessly trumped a mind-controlled Spider-Woman, in a handful of blows and kicks.

Weapons and Equipment

Web-Shooters

\"Spidey's
Spidey's web-shooters broken down

Perhaps, Spider-Man's most famous piece of equipment is his self-built web-shooters which allow him to shoot sticky ropes of webbing which he uses to swing from building to building. They are a pair of special wrist devices of Peter's own design that contain a material that mixes with air to web-like material. They can be used in many different ways by varying the pressure and adjusting the nozzles of the spinnerets. They can take the form of strong thin lines, fine quick spreading lines, or as a thick adhesive liquid. Spider-Man can either use the webbing as web-gloves to protect his hands, as a Web-Parachute, an air-proof Web-Dome, a Web-Shield that offers protection from bullets and energy blasts, as small \"web-bullets\" that bounce off opponents, use the webbing to ensnare an opponent, tie foes up with a rope and hang them upside down from vertical poles, pulling his foes towards him, or shoot them in any direction he chooses Spider-Man's primary means of transportation is by the use of his webbing to swing around the city. He shoots a strand of webbing to a high location, like the edge of a building, and pushes his body towards any direction he chooses while holding on to the web, allowing him to traverse at an accelerated speed. This artificial webbing lasts for an hour before fading away. More recently he has evolved biological web shooters that spray webbing from his forearms but this power has been erased by Mephisto after the One More Day storyline.

Utility Belt

Spider-Man wears a belt under his costume that contains a built-in Spider-Signal. He uses it as either an unconventional light source or as a way to intimidate lesser villains. The belt also contains spare web cartridges, tracers, the camera, and his mask when not in costume.

Camera

Spider-Man possesses his father's automatic camera which zones in on the spider symbol on Spider-Man's chest. It takes photos whenever movement is made in front of it. He would place the camera in a certain spot and springs into action in front of it, allowing him to take photos of himself. As Spider-Man he uses the camera to capture his heroic exploits to then sell the photos to the Daily Bugle.

Spider-Tracer

The Spider-Tracer is a typical tracker that is shaped liked a spider and is aerodynamic for flight. The tracers are very small so it will not be noticed when attached to a person. The tracers contain a special radio frequency that his Spider-Sense can detect. He usually uses the tracers to track objects or people via his Spider-Sense within a 100-mile radius. Spider-Man fires the tracers at high velocity using his web-shooters and he has them coated with webbing in order for them to be firmly attached to their target. Since Peter lost his Spider-Sense, the use of the Spider-Tracers is rendered obsolete since he can only track them using his enhanced senses.

Mask

The white areas in Spider-Mans eye cut-outs on his mask are really clever plastic lenses of the two-way mirror type. He can see out very clearly, but no one can see in. Therefore, he can never be recognized by the color of his eyes. These ingenious plastic lenses also protect his eyes from dust, dirt, and the glare of the sun. Spider-Man's colorful head-mask conceals his facial features and expressions and also effectively muffles his voice, making it unrecognizable. When using the Iron Spider-Man suit, it changed his voice in many ways. When Spider-Man became an Avenger, a special comm-link was outfitted into his mask allowing him to communicate with his fellow Avengers as well as others.

Spider-Mobile

The Spider-Mobile would first appear in The Amazing Spider-Man #130 in 1974. Spider-Man would be approached by Corona Motors who offers him a non-polluting vehicle which they wanted him to promote. However, Peter turned it down and approaches his friend Johnny Storm to create their own vehicle. They customized a dune buggy to have web-launchers and a spider-signal. It could also be disguised as a regular car so that no one would suspect that he was Spider-Man. Spider-Man would put it into action but it is quickly wrecked because Mysterio tricked Peter into driving it off a pier. Later the Tinkerer would be able to recover the wrecked dune buggy and re-modify it to be able to drive up walls and to drive itself. The Tinkerer sent it to fight Spider-Man, in which he would barely defeat his own car.

Equipment since working at Horizon Labs

At Horizons Labs, the combination of a well-paying job and access to numerous tech has allowed Peter to expand on the equipment he uses. So far he has developed a Spider-Glider, Thermodynamic Foam, Cryo Pellets, voice-activated web-shooters, and various types of webbing, including magnetic and acidic variants. Many of the equipment have a usage in day-to-day usage as well- for example, the cryo pellet technology was used to help keep organs and limbs viable for longer periods of time. The Thermodynamic foam also has used in the stopping and prevention of fires.

Spider-bots

Dock ock created specific spectators who keep watch of new york, saving spider-mans the trouble to patrol.

Costumes

Spider-Man has changed his costume many times but would always return to his classic and most well-known look which has varied sometimes. He has had many memorable costumes, including the Black & White symbiote suite, the Red & Gold Iron Spider suit, the Identity Crisis costumes, the Scarlet Spider costume, the White & Blue Armored Spider suit, the Bag-Man costume, and recently he has started wearing a black & green costume. You can view several of Spider-Man's costumes in his costume gallery.

It is Spider-Man's original and main look that has defined Spider-Man since his first appearance. Although it has seen many variations, it has remained one of Spider-Man's essential traits. During Spidey's early appearances, the costume was black & red with blue shadings. In later issues, the colors change and they become red & blue with black shading but some artists use the black color to give the character more depth. Also, Spider-Man was portrayed having webbing underneath his armpits that extended from his wrist to his waist. Over time, the under-arm webbing has shrunk and some artists decided to draw Spidey without the webbing although it still appeared in some modern appearances.

Black Suit

\"Black
Black Suit

Spider-Man discovered the symbiote costume during the Secret Wars and it became his primary costume until he discovered that it was an alien feeding on him. With it, he had an unlimited supply of webbing, and the suit could mimic his civilian clothing. It didn't, contrary to popular belief, enhance his powers. After meeting with Mr. Fantastic, he decided it must be destroyed and would later get rid of it using the sounds of a church bell. It would later bond with Eddie Brock to form the deadly villain known as Venom. The Black Cat would later give Spidey a cloth version of the black suit which he would start wearing for a time, switching between it and the red & blue costume. After the Kraven's last Hunt story and the appearance of Venom for the first time, Mary Jane urged Peter to stop wearing the costume because it reminded her of those traumatizing events. During the Back In Black story, after Aunt May was shot by a sniper, a darkness filled Spider-Man's heart like never before. He wore the black costume to show this dark side, becoming much more ruthless towards enemies (using torture for example). Peter attempted to infiltrate Stark Tower to stop Norman Osborn, he used a black costume made of unstable molecules to disguise himself as the Venom. During the Grim Hunt story, after Kraven was recovered, he presented Peter with a black costume as a calling card after the Kravinoffs killed Peter's \"brother\" Kaine. He once again wore this costume and became aggressive towards the villains, vowing to hunt them all down. He was about to kill Kraven with a spear until he was convinced otherwise by Arachne and Arana. The black suit represents Spider-Man's dark side.

Iron Spider suit

See: Iron Spider Costume

\"Iron
Iron Spider

After the \" Other\" story arc, Tony Stark designed for Peter a specialized Red & Gold costume that is similar to Tony Stark's Iron Man costume. It was designated as Spider-Man Armored Fighting suit Version 1.1 which was made of a liquid nano-fiber. It provided Peter with the added functions of a short-ranged gliding function, increased strength, heat-resistant Kevlar microfiber that provided resistance to small-caliber bullets, built-in fire, police and emergency scanners, visual amplifications such as infrared and ultraviolet, carbon filter in the mouth to prevent inhalation of airborne toxins, and a short-range GPS microwave communication system. All of which are controlled in the computerized control system in the titanium chest piece in the costume. Another very useful addition was a stealth mode which allowed Spider-Man to blend with the environment or even disappear completely in some backgrounds. Along with this came the customization option to instantly switch between any former style he's worn (Spidey suit, black suit, normal clothes, etc); all on the same suit. It also contained three retractable spider legs called \"waldoes\" which can be used as offensive weapons. Spidey wore this costume before and during the Civil War but Tony, in order to keep an eye on Peter, had the costume feed him with information about Peter, notably the Spider-Sense. When Peter revealed that he was going to switch sides and fought Iron Man, the latter used a voice-activated override which incapacitated Peter for a while. He had already known about this and used his computer expertise to disable the override and managed to defeat Iron Man with a surprise attack. He then discarded the costume and returned to wear his original costume when he joined Captain America's team during the Civil War. The members of the initiative team known as the Scarlet Spiders would start wearing costumes of similar design and functions.

Spider Armor

See: Spider-Armor

\"Spiderman
Spiderman armor

While in an ESU laboratory, Peter invented a white & blue suit that was made of steel plates that were from a pseudo-metallic composition using a modified webbing formula. He used this costume during the \"My enemy's enemy\" story where he fought Blood Rose, Gauntlet, and the heavily armed New Enforcers. The costume was destroyed by acid during the battle and was never rebuilt. Despite providing Spider-Man with increased durability and strength, it slowed down his movements.

Insulated Costume

\"Spidey's
Spidey's insulated suit

When fighting Electro, Spidey had to modify his costume to defeat his foe. He once made a costume from a rubber air mattress that made victory over Electro possible. On another occasion, when Electro's powers were amplified, Spider-Man used an improved version of the insulated costume that was resistant to Electro's attacks. With the help of X-Man, Spider-Man once again defeated Electro.

Bombastic Bag-Man costume

\"Pete
Pete wearing his Bombastic Bag-Man suit

After Peter was separated from the symbiote by Mr. Fantastic, he was left without a costume, and as part of a practical joke; the Human Torch gave him an old Fantastic Four costume with a paper bag for his head, dubbing him the Bombastic Bag-Man. When he was accused of murder, Spidey would use this moniker on another occasion to prevent others from identifying him but this time he only wore a Paper-Bag mask while only wearing orange pants.

Green Goblin costume

During the Goblin Heir story, in an attempt to have Peter become his heir, Norman Osborn brainwashes Peter into going on a rampage wearing a Green Goblin costume. Peter would burn down Stacy's house and attack his friend but was totally unaware of these activities.

Scarlet Spider costume

\"Scarlet
Scarlet Spider-man suit

When Ben Reilly appeared in Peter's life, he donned a new costume and dubbed himself the Scarlet Spider. He wore a blue hooded sweatshirt with a large spider symbol over a red Spider-Man costume with the web-shooters shown on the outside. Peter wore it shortly when Ben took his place in prison.

Stealth Costume

\"Spidey's
Spidey's stealth costume

During the Big Time storyline, in an attempt to defeat the new and improved Hobgoblin, Peter creates a stealth suit. He is able to do this through his new job at Horizon Labs. The Stealth Suit warps light and sound to become invisible and totally silent, it is also impervious to sonic attacks. He also created special lenses so that he can be seen by people if needs be. The lighting on the suit can change between green, orange, and blue. Orange is for the secondary mode which disrupts sonic frequencies from infrasonic to ultrasonic but is visible. Blue is in normal mode which can be seen and heard. However, a side effect of this costume is that while he can be impervious to sonic attacks, it also prevents him from hearing others. For example, while fighting the Hobgoblin and the Kingpin, Spider-Man was unable to hear the Cat's cries for help.

Future Foundation Costume

\"Spidey's
Spidey's costume upon joining The Future Foundation

When Peter joined The Future Foundation he was given a new costume by Sue Storm. The suit is made of third-generation unstable molecules. It has basic default settings however, by concentrating Peter can change the suit's designs and color. Spidey, Ben, Sue, and Reed will work along with other members of The Future Foundation to protect the Marvel Universe from its greatest future threats.

New armored costume

\"Spidey's
Spidey's new threads

To fight the deranged villain known as Massacre, Peter built himself a dark-colored bulletproof armored costume that deflects bullets and equipped himself with magnetic webbing that can be used to disable the radio frequencies of Massacre's charges. It is also lightweight but needs to recharge after a certain period of usage. Peter has also incorporated technology in improving road safety.

The Spider Suit

\"The
The Spider Suit

When on a counter Earth, Peter Parker temporarily used his evil/good doppelganger's uniform. It was a look at the classic Spider-Man suit, red & blue, however with a modern twist. The Spider suit had web shooters built into the wrist bands/arms and also featured a cape for mobility. This was used when Peter Parker's counterpart was badly wounded and needed Peter, Amazing Spider-Man, to fight crime in New York for a short time while Peter, the Amazing Spider, healed up. In the end, Peter Parker found out that his counterpart was actually draining the abilities of other Spider-Men and soon took the permanent role as the Amazing Spider.

The Sinister Six Armor

See: Spider-Armor MK III

\"Spidey's
Spidey's Sinister Six armor

During the recent Ends of the Earth Storyline, Spider-Man wore a new suit of armor designed to counter the abilities of the Sinister Six. It provided him with extra physical protection to withstand hits more blows from The Rhino as well as an immunity to Electro's Attacks. The helmet had audio sensors that could identify The Chameleon by the sound of his heartbeat and special vision modes to allow him to see through Mysterio's illusions as well as to track the particle of sand that holds Sandman's consciousness. The gauntlets were designed to shoot larger amounts of webbing than the traditional web-shooters as well as switching between his normal webbing and the new magnetic webbing. It also seems to enhance his physical strength.

Superior Spider-Man

\"Superior
Superior Spider-man

When Ock took over spider-mans body, he decided t be a better and 'superior' spider-man. So, he had made an advanced armor of the normal spider-man suit. Spider-man has adamantium webbing, high sensors in his eyes, claws on both his hands and legs and his other inventions are yet to be seen.

Alternate Versions

1602

For full arc, summary see: 1602

Peter Parquagh is the apprentice of Sir Nicholas Fury, the royal spymaster. He is bitten by an unusual spider, and later assumes the identity of the Spider. A time rift causes some of Marvel's most well-known heroes to come into existence over three hundred years early, in 1602.

Age of Apocalypse

For a full arc, summary see: Age of Apocalypse

Peter Parker is executed due to his friendship with, and potential as an ally for, Gwen Stacy, who is a rebel.

Amalgam

For a full arc, summary see: Amalgam

Spider-Man is amalgamated with Superboy, forming the character Spider-Boy, whose civilian identity is Peter Ross.

Bullet Points

For a full summary see: Bullet Points

\"Peter
Peter as the Hulk

Parker grows up without the influence of Uncle Ben and becomes a moody and rebellious teenager. While cutting school he is accidentally exposed to a massive dose of Gamma radiation from a Gamma bomb, transforming him into the Hulk.

The title of Spider-Man itself was taken up by Bruce Banner, who was bitten by a radioactive spider he was experimenting with.

Parker himself is killed later in the story during a confrontation with Galactus.

Chapter One

For a full summary see: Chapter One

Spider-Man's origins are retold and altered slightly.

Counter-Earth

For a full summary see: Counter-Earth

The Peter Parker of Counter-Earth died after suffering from radiation exposure.

Deadpool Kills the Marvel Universe

For a full summary see: Deadpool Kills the Marvel Universe

Spider-Man fights Deadpool and is killed when Deadpool shoots him through the head.

Punisher Kills the Marvel Universe

For a full summary see: Punisher Kills the Marvel Universe

Spider-Man battled Venom in New York's sewers when they were lured into the Punisher's trap. They are both heavily injured and Punisher proceeded to shoot Spider-Man with a shotgun, killing him.

Earth-15

Spider is a less than sane version of Spider-Man originating from Earth-15 that bonded with the Carnage symbiote, and he is a psychopathic killer. He was sentenced to 67 consecutive life sentences in prison.

Eventually, he got unhinged in time and placed on the Weapon X team by the Timebroker, because the original Weapon X members were killed. He was generally rude and very much disliked the team leader, Sabretooth.

Earth-691

Spider-Man is a time-traveler and associate of Killraven. He joins Killraven in turning back a second Martian invasion and is killed in the fighting.

Earth X

For a full arc, summary see: Earth X

In this universe, Parker is not a superhero and eventually becomes a police officer. A mysterious figure is known as The Spiders Man also appears.

Earth Z

This version of Spider-Man is killed when the Sandman mistakes him for the zombified version of himself.

Elseworlds

For a full arc, summary see: Elseworlds

In this crossover series with DC, Spider-Man fights alongside both Superman and Batman.

Exiles

Parker appears in numerous alternate realities visited by the Exiles. In some of these realities, he is a psychotic killer, a member of the Fantastic Five, a mutant, and an abused child.

House of M

For a full arc, summary see: House of M

\"House
House of M

In the alternate, mutant-ruled reality created by Scarlet Witch, Peter Parker is still Spider-Man. Apparently, a mutant, Parker leads a comfortable life under the mutant regime; he is powerful and wealthy, married to Gwen Stacy and raising their son Richie, and enjoys the care of both Aunt May and Uncle Ben. His life falls apart when his publicist J. Jonah Jameson reveals that he is not a natural-born mutant.

When his memories of the Earth-616 are restored, Peter joins with the rest of the heroes to help set reality right. However, he is left deeply shaken and upset over having to leave behind his wife and son, who cease to exist when reality is restored to normal.

Identity Crisis

For a full arc, summary see: Identity Crisis

In this universe, Peter's Uncle Ben does not die. Instead, he encourages Peter - otherwise known as the Amazing Spider - to create a machine that allows him to absorb the powers of counterparts from other realities, killing them in the process. Using this device, Peter becomes the most powerful person on Earth and capable of defeating the likes of Thanos. When 616 Spider-Man enters the Amazing Spider's reality, he tries to absorb Spider-Man's powers as well but is ultimately defeated when his Uncle Ben accidentally attaches the power-absorbing machine to him.

India

Spider-Man is transplanted to India, where his origin is retold in this new setting. His civilian identity is Pavitr Prabhakar.

Marvel Adventures

Spider-Man's origin remains the same, but his supporting cast is altered. He also tends to be more concerned with street-level crime than supervillains. He dates a mutant named Chat.

Marvel Zombies

For a full arc, summary see: Marvel Zombies

\"Zombie
Zombie Spider-Man

Spider-Man is zombified by Captain America. Unlike many of his zombie compatriots, Spider-Man is consumed with guilt over his need to eat flesh, though he is unable to prevent himself from satiating his hunger. He later eats Galactus and becomes one of The Galactus, a number of heroes who obtain Galactus' powers due to consuming him. When his hunger begins to fade he turns on his fellow zombies and later travels to Earth Z, where he kills the Sinister Six. He makes attempts to find a cure and succeeds, filling Sandman with nanobots and using him to wipe out all zombies, including himself.

MC2

For a full summary see: MC2

Parker's daughter May is returned to him and Mary Jane, but he continues as Spider-Man. He loses a leg fighting the Green Goblin, gives up on superheroes, and joins the police. He has trouble dealing with his daughter taking up the family business as Spider-Girl, though he supports her and occasionally aids her as Spider-Man. He and Mary Jane have one other child, Benjy.

Mutant X

Man-Spider possesses six arms and was briefly replaced by a clone. He is later killed.

Noir

For more information see: Spider-Man Noir

In the 1930s, Spider-Man gains strange powers from the Spider God and decides to use them to take down Norman Osborn and his crime syndicate, who were responsible for the murder of Uncle Ben.

Old Man Logan

For a full arc, summary see: Old Man Logan

Spider-Man is killed in a fight between heroes and villains that left the villains victorious. He had a daughter with an unidentified woman, and his daughter later went on to marry Hawkeye and they had a daughter named Ashley.

Pestilence

Spider-Man is a Horseman of the Apocalypse, specifically Pestilence. He possesses six arms, as well as poisonous fangs. He is also a cannibal.

Powerless

For a full arc, summary see: Powerless

Parker does not have superpowers in this universe. He was bitten by a radioactive spider, but it caused his hand to atrophy. He gains the nickname \"Spider-Man\" on the internet.

Reign

Having retired from super heroics, Parker is brought back into the game by the reappearance of a number of his villains. He uncovers a plot by Venom to take over the city.

Rise of the Imperfect

On Earth-50701 Spider-Man is abducted by an alien scientist and injected with a mysterious drug that corrupts him and causes him to attack fellow abductee The Thing. He is attacked by the Human Torch and Storm, both also corrupted, and in the scuffle is wounded, causing him to bleed the drug out of his system, returning him to normal. He is returned home and later joins other heroes in fighting the scientist's Imperfects and their invasion attempts.

Spider-Man Unlimited

Spider-Man fakes his own death after being blamed for the disappearance of John Jameson. He travels to Counter-Earth and joins Jameson as a member of the resistance against the High Evolutionary.

Ultimate

\"Ultimate
Ultimate Spider-Man

In this modernized retelling of Spider-Man's story set in the Ultimate Marvel Universe, high schooler Peter Parker is bitten by a genetically engineered test subject and gains spider powers. The series offers an updated take on Spider-Man's story, and also offers modernized reimaginings of many of his villains, such as Green Goblin, Doctor Octopus, Venom, Electro, and more. Also present are new versions of much of his supporting cast, like Aunt May, Mary Jane, Gwen Stacy, and J. Jonah Jameson.

Parker later dies following a final battle with the Green Goblin, and the mantle of Spider-Man is taken up by a young boy named Miles Morales.

What If?

Parker appears in numerous What If? universes. Among these are realities in which he is a member of the Fantastic Four; in which he was not bitten by the spider but some other supporting cast member was; in which he chose not to go into superheroes; in which he joins with Wolverine and takes up black ops work; and in which he becomes a mutated spider creature.

X-Men Forever

Following the faked deaths of the X-Men, Spider-Man meets and fights crime alongside Rogue for an evening. He later helps the team defeat some Sentinels, and is determined to be trustworthy, with the team willing to entrust the secret of their continued survival to him.

Other Media

Television

Spider-Man (1967)

\"1967
1967 Animated Spider-Man

The first time that Marvel would have Spider-Man as a cartoon character. This version of the Spider-Man series debuted on ABC on September 9, 1967, and lasted up until June 14, 1970. This story is about Peter Parker, a science student at a New York City university, while witnessing a radiology experiment that would be bitten on his hand by a radioactive spider. He then starts to find that he has amazing powers. He realizes that he has the spider's leaping, wall-crawling, spider sense, increased endurance, and super strength. He made himself a red and blue outfit and mask and produces a web-spinning fluid enabling him to swing from the buildings above the streets of Manhattan. Peter's first enemy would be the person who had killed his Uncle Ben. Uncle Ben would be killed by a burglar, a criminal that had run past Peter earlier at the television studio. Peter didn't really care at the time and didn't help the police. This lead to Uncle Ben's death. Angry and upset, Peter sought his Uncle's murderer and webs him. After this tragedy, Peter would become a costumed crime-fighter protecting New York.

Peter Parker would be voiced by Bernard Cowan, Spider-Man would be voiced by Paul Soles, Len Carlson voiced Captain Stacy, Peg Dixon voiced Betty Brant, and Paul Kligman voiced J. Jonah Jameson.

This series would also be well known for its theme song. It was performed by a vocal group with lyrics written by Paul Francis Webster and quick-tempo instrumentals performed by Bob Harris, published by Buddah Music, Inc. Lyrics \"Spider-Man. Spider-Man. Does whatever a spider can. Spins a web, any size. Catches thieves- just like flies. Look out! Here comes the Spider-Man! Is he strong? Listen, bud. He's got radioactive blood. Can he swing, from a thread? Take a look overhead. Hey, there! There goes the Spider-Man! In the chill of night, at the scene of a crime. Like a streak of light, he arrives just in time! Spider-Man. Spider-Man. Friendly Neighborhood Spider-Man. Wealth and fame? He's ignored. Action is his reward. To him, life is a great big bang-up. Wherever there's a hang-up, you'll find the Spider-Man!\"

Spider-Man (1978)

\"Japanese
Japanese Spider-Man

The Toei Company had made a television series based on Marvel's famous hero as a tokusatsu in Japan. Even though the powers and costume are the same; the man behind the mask was a young motorcycle rider named Takuya Yamashiro who instead of getting bitten by a radioactive spider follows his archaeologist father and discovers a UFO called \"Marveller\" from the planet \"Spider\". When his father was killed exploring the ship, Takuya meets the lone survivor from Spider. It gives him a bracelet that not only grants him the same costume and the same powers as the American version but it also allows him to summon a giant robot (which looks an awful lot like a Power Ranger zord) to fight the evil of Professor Monster and his monstrous minions. The series lasted 41 episodes and is available in streaming video on Marvel's website.

Spider-Man (1981)

\"No

This series debuted September 12, 1981, and ended on September 11, 1982. This was the second animated production of Spider-Man after its original series that started in 1967. This series was produced by the newly formed Marvel Productions, having risen from the ashes of DePatie-Freleng Enterprises. The company that had produced the 1978 New Fantastic Four and 1979 Spider-Woman animated series. This version's character design would be later used for the series Spider-Man And His Amazing Friends series and would have some of the same people play as the same characters. The character designs for the series were based on the classic style of Spider-Man artist John Romita and were very similar to the visual look of the comics from the mid-60s to the early 80s. This series tells the life of Peter Parker a college student who lives a life as Peter and Spider-Man. They also used the same characters as before, such as Peter's Aunt May, J. Jonah Jameson: Editor of the Daily Bugle, Betty Brant: Jameson's secretary and classic damsel in distress, and later on during the series, Robbie Robertson, Jameson's assistant. Spidey also faces some of his usual foes such as Green Goblin, Doctor Octopus, Mysterio, and the Chameleon. This also included a six-part story arc where Spidey goes up against Doctor Doom throughout the series. Spidey was voiced by Ted Schwartz in this series.

Spider-Man And His Amazing Friends (1981)

\"No

Spider-Man And His Amazing Friends series debuted on NBC on September 12, 1981, and lasted through September 10, 1983. This would be the third animated adventure for Spidey which would end up being more popular than its previous series Spider-Man, which ended the same year this new show would start. After Spider-Man in 1981, NBC wanted to take Spider-Man on a different route that would appeal to more audiences. In this series, Marvel adds X-Men's Iceman and adds a new superhero named Firestar. She gave Peter Parker a room that turned into a secret superhero hi-tech headquarters. This would change the title of the show to Spider-Man And His Amazing Friends. This series would add new villains only for this show and also have superhero team-ups throughout the series. They would fight some old enemies such as Doctor Octopus, Scorpion, Green Goblin, Kraven the Hunter, Swarm, Chameleon, Electro, Mysterio, the Kingpin of Crime, Shocker, Sandman, Beetle, and other Marvel enemies such as Doctor Doom, Magneto, Loki, Mordred, the Red Skull, and the Juggernaut. The Spider-Friends would also team-up with superheroes such as Sunfire, Captain America, Shanna the She-Devil, Namor the Submariner, Doctor Strange, The Hulk, Thor, the third Black Knight, and the X-Men. For the second season of this show the title would be changed to \"The Incredible Hulk And The Amazing Spider-Man.\" This second would be for an hour show that would feature 30 minutes of Spidey and friends and 30 minutes of Hulk. The third season of this show would then be reversed to \"The Amazing Spider-Man and The Incredible Hulk.\" This would be the last season and would also still revolve around Spider-Man and his friends. Spider-Man was voiced by Dan Gilvezan.

Spider-Man: The Animated Series (1994)

\"Spider-Man:
Spider-Man: The Animated Series

This animated series debuted on Fox on February 4, 1994, and lasted through January 31, 1998. The cartoon revolved around a 19-year-old Peter Parker (voiced by Christopher Daniel Barnes) in his first year at Empire State University. The story begins with Peter already having his Spider powers and is a part-time photographer for the Daily Bugle. Spider-Man would battle many classic villains and newer villains such as Green Goblin (Norman and Harry Osborn), Hobgoblin, the Chameleon, the Lizard, the Scorpion, Doctor Octopus, Mysterio, Rhino, the Kingpin of Crime, the Shocker, Vulture, Venom, and Carnage. Peter would eventually get into a romantic relationship with Felicia Hardy/Black Cat and eventually fall for Mary Jane Watson. Although Gwen Stacy was never in the series, Marvel gave us a little teaser in the series finale story arc, having Spider-Man go to an alternate universe and meeting Gwen Stacy herself. A very important story arc in this series began as the finale of Season 3 in the episode entitled \"Turning Point.\" In which the Green Goblin kidnaps Mary Jane and throws her off the George Washington Bridge, similar to the story arc \"The Night Gwen Stacy Died.\" However, with the heavy censorship in the 1990s not allowing television to have heavy violence, death being a part of it. Marvel decided to have Mary Jane and the Green Goblin fall into an inter-dimension vortex instead. Season 4 was mostly about the guilt that Spider-Man has to carry for losing Mary Jane. He tries to rebound with the Black Cat, but Mary Jane eventually mysteriously returns to life. Season 5 starts off with the much-anticipated Wedding of Peter Parker and Mary Jane Watson-Parker. With season 5 being the last season, Marvel dropped a bomb on us by revealing that Mary Jane was actually a clone created by Dr. Miles Warren.

\"Spider-Man:
Spider-Man: The Animated Series

To make matters worst, the Mary Jane clone was water-based and was made for Hydro-Man. Next, Marvel did a tribute to the Secret Wars. Madame Webb was going to help Spider-Man find the real Mary Jane, who was still alive somewhere. As Spider-Man continued his search for Mary Jane, Madame Web and the Beyonder set up a chain of events where Spider-Man faced different versions of himself from different universes. One was him, where he is a rich multi-millionaire, and wears a metallic Spider-Suit, and has publicly made his identity known to the world. This version was made to mirror Marvel's popular superhero multi-billionaire, Tony Stark, a.k.a. Iron Man. Spider-Man in another reality he went to, found out he was married to a woman he never met in his life, Gwen Stacey. Gwen had never appeared in the series until now. Gwen revealed information of another Parker alternate reality. This one was strongly grieving the death of Aunt May, he cut his hair, died it blonde, and went out as Spider-Man. However, he met a foe he could not beat, the Carnage symbiote. The symbiote felt the pain of Ben Reilly as he changed his name to negate any Parker ties. The symbiote and Reilly bond to become Spider-Carnage. All of the different Spider-Man realities, including the real Spider-Man, battled Spider- Carnage. They could not defeat him, however. When he sees Gwen Stacey, his love of killing is put on hold, since he has romantic feelings for Gwen he has never gotten over. He thus realized what he had become, and committed suicide. After all was said and done, one Spider-Man had to take him with him to his reality. This one is our world. He is astounded at the fact of being an international symbol in our world, and before he leaves, he meets with the man who created him, Stan Lee.

Spider-Man Unlimited (1999)

\"Spider-Man
Spider-Man Unlimited

This series debuted on Fox on October 2, 1999, and lasted through March 31, 2001. Spider-Man, in this series, was voiced by Rino Romano (making him the only voice actor to play both Spider-Man and Batman, the most-recognized characters from both DC and Marvel). This animated series was supposed to be the continuation of Spider-Man: The Animated Series show from 1994. This series would also take part in the future. The series starts off at the Polaris One site where JJJ's son, John Jameson is talking to the public. About 6 months ago, through an advanced space warp drive engine, the man-made probe called Alita projected itself to the far side of the sun where Alita recorded an exact duplicate of Earth. An Earth-like planet in the same orbit on the other side of the sun. John continues to talk about the probe being destroyed. Since then, people question should there be a man-made mission to go to \" Counter Earth\". He goes on to say that there should be one to find out what was responsible for this and there should be an investigation. Peter then leaves to change into costume because his spider-sense is tingling. He sees Venom and Carnage and confronts them. The spaceship is readying for take-off and Spidey battles Venom and Carnage while wondering what they are doing and why were they trying to stow away on the spaceship. Venom restrains Spidey and Carnage tells him that nothing will get in the way of them going to \"Counter Earth\" and joining the Synoptic. Spider-Man gets kicked off the flight and gets blamed for what happens to John during his mission. Six months later, they launch the Solaris II rescue mission to go to \"Counter Earth\". The Webslinger appears with his new suit featuring nano technology \"borrowed\" from the lab of Reed Richards. Microscopic robots cover his entire body with anti-symbiote devices. He is stopped by Nick Fury who gives Spidey a chance to redeem himself by taking the space shuttle to \"Counter Earth\", so he can go rescue John Jameson.

Once on \"Counter Earth\", after almost being burned up on entry, Peter is under arrest and is sought out by Lord Tyger and the High Evolutionary. Spidey meets the people who are chasing him, known as the Knights of Wondergore. Lord Tyger introduces himself and the rest of the Knights of Wondergore; Ursula, Lady Vermin, and Sir Ram. While being chased throughout the city, he realizes that there is a high-tech society where humanoid animals have taken over and the normal people live in the overpopulated slums. He was captured and told of what happened by the High Evolutionary who came from another planet to seek a place where petty humans squabbles; greed, selfishness, violence, and hatred was no more. He built his paradise with many experiments, using animals that he now calls Beastials. They are under the leadership of the High Evolutionary, are stronger, faster, and free of the primitive human mind. Spider-Man was rescued by the resistance who had been told that the war lasted for 50 years. Spidey finds John in the resistance deciding to stay until the humans are free of the High Evolutionary's oppression. Peter blends in with the humans to see what the \"Counter Earth\" world was like. After saving Shane Yamada-Jones from the robots, Naoko, Shane's mother, a doctor, helps Peter. He takes him into their home, providing Peter pays rent, giving him two weeks rent free for saving Shane's life. This series doesn't last long. Only thirteen episodes were broadcast ending with a cliffhanger. Six more episodes were made for the second season but were never aired.

Spider-Man: The New Animated Series (2003)

\"Spider-Man:
Spider-Man: The New Animated Series

This series debuted on MTV and aired from July 11, 2003, through September 12, 2003. The series would continue where the successful live-action feature film left off. The series starts with Peter already having his spider powers and follows his superhero adventures and his friends, Harry Osborn and Mary Jane Watson during their first year of college at Empire State University.

Peter must juggle academics, a job as a Web designer/photographer for the Daily Bugle, and on-again / off-again relationships with various women, all the while fighting to protect the world from super-villains. This series is the shortest of all the Spider-man cartoon shows, having only 13 episodes. He was voiced by Neil Patrick Harris.

The Spectacular Spider-Man (2008)

\"Spectacular
Spectacular Spider-Man

This series debuted on March 8, 2008, and is still in continuation, airing on the CW 4Kids at 10:00 a.m on Saturday mornings. This series would also make the 10th television series about Spider-Man. This series starts with Spider-Man (voiced by Josh Keaton) talking about how he spent his summer vacation and introducing himself as the Spectacular Spider-Man. The day before school starts he wants his piece of the action. He ends up stopping Flint Marko and Alex O' Hirn. Spidey says that this was his third time stopping them and he pulls out his new device, the spider-signal. Norman Osborn acquires a new enemy in The Vulture. Before he became The Vulture, he was a man who worked for Oscorp and created an invention known as the tech. flight. He demands that Norman publicly apologizes to him for stealing his inventions and to say that it was all his idea. Norman won't apologize stating that no one would believe that he had created it. But all is not lost, as he is soon saved by Your Friendly Neighborhood Spider-Man. The series artwork was created by Sean \"Cheeks\" Galloway. The same person is responsible for some character design work for the Hellboy animated movies. The character designs resemble those of The Batman TV series, as they have been designed by the same people who worked on that show. This series is supposed to be like the 1960's version of Spider-Man. It doesn't start off like all of the other incarnations of Spider-Man, starting off with Peter getting bitten by a radioactive spider but with a twist. Peter just starts his junior year of high school and gets pushed around by jocks. He made friends in Harry Osborn and Gwen Stacy. Gwen Stacy is also Peters's intellectual equal, getting a job working for Doctor Connors. Gwen and Peter also see their old friend Eddie Brock who Peters calls bro because their parents were best friends. Both Eddie's and Peter's parents died in a plane crash.

Ever since then, Eddie and Peter have had a close friendship. Peter betrays Doctor Connors's trust by taking pictures of Spider-Man and Doctor Connors as the Lizard. This puts a strain on their friendship and their \"brotherhood\". Eddie knows about Gwen liking him but after all the things that he did wrong, it was the final straw when Peter goes to the prom with Mary Jane. This series is full of twists and turns. It ends its first season with Eddie being taken over by the symbiote and turning into Venom. After almost being beaten by Venom, he saves Gwen and continues to have a Thanksgiving dinner. Aunt May has come out of hospital after recovering from a heart attack, Peter cooks the thanksgiving dinner, Gwen brings over her family dinner and they all enjoy a nice meal. Peter washes the dishes and goes outside thanking Gwen for what she has done and for always being there. As Gwen is about to leave, she runs back, taking the advice MJ gave her, and gives Peter a kiss. Peter then realizes what Venom was talking about when he said that he is going to take away the person who means the most to him.

The Avengers: Earth's Mightiest Heroes (2012)

\"Spider-Man
Spider-Man in The Avengers: Earth's Mightiest Heroes

Spider-Man first appears in the episode Along Came A spider where he helps Captain America fight the serpent society He next appears in New Avengers where he leads the New lineup of Avengers against Kang...after the victory and return of the Original Avengers, he officially becomes a member (although a reserve one). The last time he appeared was Avengers Assemble amongst the rest of Earth's heroes fighting The Heralds of Galactus.

Ultimate Spider-Man (2012)

\"A
A banner from the third season

In this new series, Spider-Man is voiced by Drake Bell (who played a spoof of the character in the parody film \"Superhero Movie\"). At the start of the show, Peter is recruited by Nick Fury to join the SHIELD organization in order to learn how to become a better hero. The series highlights the more technological side of the character and showcases various gadgets and vehicles such as the Iron Spider suit. He leads a team of teenage heroes consisting of Nova, White Tiger, Power Man, and Iron Fist, while other characters like Amadeus Cho, Agent Venom, and Ka-Zar appear as the series progresses. Alternate versions of Spider-Man like Miles Morales, Spider-Ham, and Spider-Man 2099 all made their animated debuts in the third season.

Marvel Disk Wars: The Avengers (2014)

\"Marvel
Marvel Disk Wars

Spider-Man is featured in the anime series, voiced by Shinji Kawada. In the series, Peter Parker is a young Stark Industries scientist, and one of the few heroes to avoid being trapped in the DISKs. He aids the children in their fight against Loki and the other villains.

Spider-Man also appears in the second Avengers anime, Marvel Future Avengers (2017), voiced by Shinji Kawada in the Japanese version and Robbie Daymond in the English dub.

Spider-Man (2017)

\"Marvel's
Marvel's Spider-Man

Spider-Man stars in the new series, which is a back-to-basics approach focused on a teenage Peter Parker in his early days as Spider-Man. Spider-Man is voiced by Robbie Daymond in this version.

Set during Peter Parker's first year with powers, the series draws from multiple sources, including the modern comics (such as the Spider-Island storyline). Early on, Peter is accepted into Horizon High, an extremely prestigious scientific school run by Max Modell. He encounters several of his future foes in the school and battles his familiar cast of villains like the Green Goblin, the Vulture, the Jackal, and Doctor Octopus. He also meets and teams up with several members of the Avengers, such as Iron Man, Hulk, and Black Widow.

The series also notably features Gwen Stacy, Miles Morales, and Anya Corazon as Peter's classmates and friends at Horizon High. They gradually gain powers of their own throughout the series, eventually becoming partners of sorts.

What If...? (2021)

\"Zombie
Zombie Hunter Spider-Man

Spider-Man appears in the Disney+ series What If...?, voiced by Hudson Thames. He first appears in the episode \"What If... Zombies!?\" where he is one of the few surviving superheroes after the world is ravaged by a zombie virus. Donning the Cloak of Levitation (taken from the zombified Doctor Strange), he helps rescue other survivors and helps the Wasp, Winter Soldier and others as they try to find a way to stop the plague.

Film

Raimi Trilogy

\"Tobey
Tobey Maguire as Spider-Man

Following decades of false starts and numerous unused scripts, Spider-Man finally made it to the big screen in the year 2000. Spider-Man (2002), Spider-Man 2 (2004) and Spider-Man 3 (2007) comprised a trilogy of films starring Tobey Maguire as the title character, with Sam Raimi directing each installment. The trilogy featured a large host of characters from the comics, including Kirsten Dunst as Mary Jane Watson, James Franco as Harry Osborn, Willem Dafoe as Norman Osborn/Green Goblin, J.K. Simmons as J. Jonah Jameson, Alfred Molina as Otto Octavius/Doc Ock, Thomas Haden Church as Flint Marko/Sandman, Topher Grace as Eddie Brock/Venom, Rosemary Harris as Aunt May, Cliff Robertson as Uncle Ben, Dylan Baker as Dr. Curt Connors, Elizabeth Banks as Betty Brant and Bryce Dallas Howard as Gwen Stacy.

Raimi was also initially slated to direct a fourth Spider-Man film, with a release date of May 6, 2011. The ill-fated movie was intended to continue with the same cast and crew with plot-lines established in the first three films. The disagreement between Raimi and producers Laura Ziskin and Avi Arad over the script -- and over the choice of villains in particular --, as well as concerns with the rising cost of production (Raimi and series star Tobey Maguire would have claimed a large portion of any film royalties), led to a cancellation of that film's production. Instead, the Sony-owned Columbia Pictures decided on a reboot of the franchise.

The Amazing Spider-Man

\"Andrew
Andrew Garfield as Spider-Man

In 2012, the 50th anniversary of Spider-Man and 10 years since the first Spider-Man movie, a reboot of the Spider-Man movie franchise was launched. The Amazing Spider-Man saw then-unknown British actor Andrew Garfield step into the role, with a supporting cast that included Emma Stone as Gwen Stacy, Rhys Ifans as Curst Connors/The Lizard, Dennis Leary as Captain George Stacy, Sally Field as Aunt May, and Martin Sheen as Uncle Ben. Directed by Marc Webb, the film was the first Spider-Man movie to be filmed in 3D and featured a new, heavily modified costume design that proved to be highly controversial among the fans.

The film was a hit at the box office, and as a result, The Amazing Spider-Man 2 was released in 2014. The film featured the return of most of the original cast, as well as new faces like Jamie Foxx as Max Dillon/Electro, Dane DeHaan as Harry Osborn/Green Goblin, and Paul Giamatti as Aleksei Sytsevich/The Rhino. While the movie was a modest financial success, it was heavily panned by critics and made less at the box office than its predecessor. Despite plans for a third movie and a host of spin-offs (including a solo Venom movie, a female-led team movie featuring characters like Silver Sable, Black Cat, Spider-Gwen, Stunner, and Lightbrght, and a Sinister Six movie) , the decision was made to discontinue the franchise.

MCU

\"Tom
Tom Holland as Spider-Man in Infinity War

Following the disappointing response to The Amazing Spider-Man 2, it was announced that Sony would be partnering with Marvel studios to incorporate the Spider-Man franchise into the Marvel Cinematic Universe. The rebooted Spider-Man debuted in Captain America: Civil War, before being spun off into his own movie in 2017, with Peter portrayed by Tom Holland.

In the Civil War, Spider-Man is introduced as a young vigilante operating out of Queens. Tony Stark tracks down Peter and recruits him to help stop Captain America's team of fugitive heroes before the situation can escalate any further. During the battle, Spider-Man faces off against the Falcon and the Winter Soldier but is thwarted by Falcon's Redwing drone. He later fights against Captain America but is outsmarted and defeated by the veteran hero's superior tactical abilities. Spider-Man plays a major role in taking down Giant-Man, allowing Iron Man and War Machine to finish him off. However, Peter is injured in the process, causing Iron Man to send him back home.

Following this, Holland reprised his role in Spider-Man: Homecoming, a 2017 co-production between Marvel Studios and Sony. The film also starred Michael Keaton as Adrian Toomes/Vulture, Marissa Tomei as Aunt May, Jacob Batalon as Ned Lee, Zendaya as MJ, Laura Harrier as Liz Allan, Bokeem Woodbine as Herman Schultz/Shocker, Michael Chernus as Phineas Mason/Tinkerer, Tony Revolori as Flash Thompson, Jon Favreau as Harold \"Happy\" Hogan and Robert Downey, Jr. as Tony Stark.

Holland also reprises his role in the third Avengers film, Avengers: Infinity War, where he joins the heroes in the fight against Thanos. He is first seen in action leaving a school bus during a field trip when he sees Thanos' forces invading New York before proceeding to help Stark, Doctor Strange, and Wong in fighting off Cull Obsidian and Ebony Maw from kidnapping Strange. However, the Black Order succeeds in capturing Strange, leaving Parker and Stark to get inside the ship which the two Black Order members used to travel to Earth in order to rescue Strange. The two Avengers were able to send Maw into outer space and rescued Strange from being tortured when he refused to give up the Time Stone. The trio decides to head to Titan in order to deal with Thanos themselves only to meet Star-Lord, Mantis, and Drax the Destroyer of the Guardians of the Galaxy who also went to Titan to fight Thanos and rescue Gamora. Thanos then arrives on Titan to attain the Time Stone from Strange which leads to him and the team having a fearsome battle and ends with Thanos being mentally incapacitated by Mantis while the others try to take off Thanos' Infinity Gauntlet from his hand. However, this plan fails after Quill attacks Thanos when he learns the former was responsible for Gamora's death which lets Thanos break away from being mentally incapacitated.

After Thanos gets the Time and Soul Stones, Parker turns to ash and dies while begging for his life in Stark's arms after Thanos erases half of the universe's inhabitants from existence with a snap of his fingers.

Tom Holland again reprises his role in Avengers: Endgame, where Spider-Man is resurrected after the Hulk uses the Infinity Stones to undo Thanos' decimation.

Spider-Man: Far From Home, subsequently deals with the fallout of Endgame as Peter tries to come to terms with the death of Tony Stark. While on a class trip to Europe, he encounters a new superhero called Mysterio, and partners with him to battle a group of entities called the Elementals. However, he soon discovers Mysterio is not what he seems, leading to a battle for the fate of London.

Holland again reprises his role in a third solo film, Spider-Man: No Way Home, which sees Spider-Man dealing with villains from other realities after a spell from Doctor Strange accidentally brings them from the Multiverse.

Spider-Verse

\"Into
Into the Spider-Verse

In 2018, an animated film called Spider-Man: Into the Spider-Verse was released by Sony. The film follows the origin of Miles Morales (voiced by Shameik Moore), who becomes the new Spider-Man after his world's Peter Parker (voiced by Chris Pine) is killed by the Kingpin. However, Miles soon encounters an alternate universe version of Peter Parker (voiced by Jake Johnson) who comes from a timeline where he and Mary Jane got a divorce following the death of Aunt May. Together, the two Spider-Men team-up with other alternate Spider heroes to save reality.

The movie's cast also included Hailee Steinfeld as Spider-Gwen, Liev Schreiber as the Kingpin, Mahershala Ali as the Prowler, Nicolas Cage as Spider-Man Noir, John Mulaney as Spider-Ham, Kimiko Glenn as Peni Parker, Lily Tomlin as Aunt May, Kathryn Hahn as Doctor Octopus, Zoe Kravitz as Mary Jane, Brian Tyree Henry as Jefferson Davis, Krondon as Tombstone and Oscar Isaac as Spider-Man 2099.

The film was a success and was met with much acclaim, and even won an Academy Award for Best Animated Film.

For a list of all Spider-Movies visit this link.

Novels

Spider-Man

\"No

It begins with an orphan named Peter Parker, raised by his beloved Aunt May and Uncle Ben in Queens, New York. A quiet student, he works diligently at his studies and pines for the beautiful Mary Jane Watson. But this ordinary teenage boy is about to have his life turned upside down, when he is bitten by a genetically altered spider. Suddenly, he finds himself possessed of spectacular powers. He is now and forever Spider-Man!

Follow Spider-Man’s action-packed journey, from his struggle to harness the extraordinary gifts that will prove to be both blessing and curse, to his fight to save innocent lives while the media tears him to pieces. It all leads up to his ultimate battle high above New York streets, against the death-dealing madman known as the Green Goblin. While the city watches helplessly and countless lives hang in the balance, Spider-Man confronts his archnemesis, and the Goblin puts Spider-Man’s vow to fight crime to the ultimate test...

  • Written By: Peter David
  • Publisher: Del Rey (March, 2002)
  • ISBN-10: 0345450051
  • ISBN-13: 978-0345450050

Spider-Man 2

\"No

The amazing adventures of one of the greatest superheroes of all time continue in Spider-Man 2.

Two years have passed, and Peter Parker struggles to cope with the demands of life as a college student, a Daily Bugle photographer, and a crime-fighting superhero. But it hasn’t gotten any easier. Condemned by the press, tormented by secrets he can never reveal, forced to give up the girl of his dreams—at times the lonely burden of Spider-Man seems almost too great to bear... and the temptation to give up grows stronger by the hour.

Enter the archfiend Doc Ock, armed with a lethal invention powerful enough to destroy half the city. If Spider-Man tries to stop Doc Ock, he’ll be placing the lives of those closest to him in mortal danger. If he doesn’t, it could be the end of the Big Apple. With millions of lives hanging in the balance, high about Manhattan’s glittering skyline, Spider-Man confronts his destiny, his fiercest enemy, and himself.

  • Written By: Peter David
  • Publisher: Del Rey (May, 2004)
  • ISBN-10: 0345470540
  • ISBN-13: 978-0345470546

Spider-Man 3

\"No

How long can any man fight the darkness before he finds it in himself? Peter Parker has finally managed to strike a balance between his devotion to M.J. and his duties as a Super Hero. But there is a storm brewing on the horizon. When his suit suddenly changes, turning jet-black and enhancing his powers, it transforms Peter as well, bringing out the dark, vengeful side of his personality that he is struggling to control. Under the influence of the suit, Peter becomes overconfident and starts to neglect the people who care about him most. Forced to choose between the seductive power of the new suit and the compassionate hero he used to be, Peter must overcome his personal demons as two of the most feared villains yet -- Sandman and Venom -- gather unparalleled power and a thirst for retribution to threaten Peter and everyone he loves.

  • Written By: Peter David
  • Publisher: Pocket Star (March, 2007)
  • ISBN-10: 1416527214
  • ISBN-13: 978-1416527213

Spider-Man: Carnage in New York

\"No

The Amazing Spider-Man must go head to head with his most dangerous enemy: the psychotic murderer known as Carnage! A vicious serial killer named Cletus Kasady has had his body chemistry altered by an alien creature. Now, Kasady can transform himself into Carnage, who, along with his lethal, living costume, lives for chaos and random acts of senseless, brutal murder! Carnage has been returned to New York in chains, the subject of a daring attempt to reverse the effects of his metamorphosis. When the interference of a deranged scientist causes the experiment to go horribly wrong. Carnage is set loose upon the city once again! It's up to Spider-Man to stop his deadliest foe before he unleashes... Carnage In New York.

  • Written By: David Michelinie & Dean Wesley Smith
  • Publisher: Berkley (August, 1995)
  • ISBN-10: 0425167038
  • ISBN-13: 978-0425167038

Spider-Man: Doom's Day Book One - Rampage (The Incredible Hulk)

\"No

Book one of the Spider-Man Team-Up trilogy, book two teams up with the Iron Man and book three follows our friendly neighborhood Spider-Man's team-up with the Fantastic Four.

  • Written By: Danny Fingeroth & Eric Fein
  • Publisher: Berkley (September, 1996)
  • ISBN-10: 1572971649
  • ISBN-13: 978-1572971646

Spider-Man: Doom's Day Book Two - Sabotage (Iron Man)

\"No

Book two of the Spider-Man Team-Up trilogy, book one teamed up with the Incredible Hulk and book three follows our friendly neighborhood Spider-Man's team-up with the Fantastic Four.

  • Written By: Pierce Askegren & Danny Fingeroth
  • Publisher: GP Putnam (March, 1997)
  • ISBN-10: 1572972351
  • ISBN-13: 978-1572972353

Spider-Man: Doom's Day Book Three - Wreckage (The Fantastic Four)

\"No

Dr. Doom has broken Dr. Octopus out of prison as the final mover in the latest plan for world conquest. Using Ock's expertise to help him draw on the arcane energies of the Negative Zone, Doom has found a way to wield absolute power. Now the only thing standing between Doom and his goals are Spider-Man and the Fantastic Four--and one of the F.F. is already Doom's prisoner!

  • Written By: Eric Fein & Pierce Askegren
  • Publisher: Boulevard Books (November, 1997)
  • ISBN-10: 1572973110
  • ISBN-13: 978-1572973114

Spider-Man: Down These Mean Streets

\"No

Triple X, a brand-new designer drug with devastating side effects, sweeps through the streets of New York, high school science teacher Peter Parker--and his alter ego Spider-Man--begins to suspect the drug may have originated with one of his most diabolical enemies, intent on destroying the arachnid superhero for all time.

  • Written By: Keith R.A. DeCandido
  • Publisher: Pocket Star Books (2005)
  • ISBN-10: 1416511288
  • ISBN-13: 978-1416511281

Spider-Man: Drowned in Thunder

\"No

J. Jonah Jameson, publisher of the Daily Bugle, has denounced Spider-Man from the beginning, convincing New Yorkers to see him as a criminal and a menace. But when a robot attack on Manhattan injures Peter Parker's students and Jameson blames Spider-Man, their feud takes on a new, personal dimension.

As the embittered webslinger faces further robot attacks, each deadlier than the last, his spider-sense warns that Jameson himself is behind them, possibly colluding with Electro, Alistaire Smythe, or another of Spider-Man's mortal foes. Convinced that his worst critic has become a mortal enemy, Spider-Man declares war on Jameson -- a war the publisher is eager to wage. But in their relentless pursuit of victory, they both risk losing everything that matters to them -- and may both fall victim to the cataclysmic secret behind the robots.

  • Written By: Christopher L. Bennett
  • Publisher: Pocket Star (December, 2007)
  • ISBN-10: 1416510729
  • ISBN-13: 978-1416510727

Spider-Man: Emerald Mystery

\"No

Something is turning ordinary people into zombie like bank robbers. One of which is a friend of Mary Jane. In Spider-Man’s search for answers, he comes across the aid of Private Detective Barb Lightner, whose partner was killed over a mysterious trinket. These events lead to a new crime boss calling himself the ‘The Jewel’. How he is connected to all this is discovered as the detective and superhero pool their resources to find answers.

  • Written By: Dean Wesley Smith
  • Publisher: Berkley (October, 2000)
  • ISBN-10: 0425170373
  • ISBN-13: 978-0425170373

Spider-Man: Goblin Moon

\"No

Spider-Man versus his most implacable enemy! Norman Osborn is a respected businessman, the owner of several companies, including the New York Daily Bugle. He is also secretly the super-villain known as the Green Goblin--a foe who has turned Spider-Man's life upside down more than once, and one who knows that Spider-Man is really Peter Parker! Osborn's latest scheme is his most ambitious yet: to make himself mayor of New York. But where many see that as a laudable goal, Spider-Man knows that Osborn's goal is nothing less than absolute power. Spider-Man can defeat the Green Goblin, but Osborn refuses to act himself, preferring to remain above the fray and let the mercenaries known as the Rat Pack do his dirty work. The wall-crawler must find a way to stop Osborn's machinations before it's too late!

  • Written By: Kurt Busiek & Nathan Archer
  • Publisher: Berkley (July, 2000)
  • ISBN-10: 0425174034
  • ISBN-13: 978-0425174036

Spider-Man: Goblin's Revenge

\"No

A deadly serum that causes anyone it touches to go violently insane has been stolen. Spider-Man must find the culprit before the serum is used to wreak havoc on the city. As if that weren't enough, someone has freed Carnage, the psychotic, super-powered serial killer, from prison-- and he's gunning for Spidey!

But even these crises pale in comparison to the revelation that is rocking Spider-Man to his very soul: the return of the Green Goblin, a foe Spidey thought was dead twice over. And the Goblin is determined to drive Spider-Man over the edge...

Two deadly enemies, brought together in an electrifying adventure that could mean the end of the amazing Spider-Man!

  • Written By: Dean Wesley Smith
  • Publisher: Berkley (October, 1996)
  • ISBN-10: 157297172X
  • ISBN-13: 978-1572971721

Spider-Man: Requiem

\"No

A previously unknown translation of an ancient grimoire, the Darkhold, has been unearthed by archaeologists in South America. But this chilling discovery will have far-reaching effects. Halfway across the globe, the Darkhold is relentlessly pursued by the Cabal of Scrier, an organization devoted to achieving ultimate power through whatever means necessary. And it is through their actions that a darkness from beyond the grave will return to haunt the Spectacular Spider-Man in the form of one of the most frightening and dangerous foes he's ever encountered....

  • Written By: Jeff Mariotte
  • Publisher: Pocket Star (October, 2008)
  • ISBN-10: 1416510788
  • ISBN-13: 978-1416510789

Spider-Man: Revenge of the Sinister Six

\"No

Peter Parker, the amazing Spider-Man, has made an astonishing discovery-he has a sister! Unfortunately, a manipulative super-villain known as the Gentleman-who had a hand in the deaths of Peter's parents-has somehow brainwashed her into becoming the deadly supervilainess known as Pity! Together with Doctor Octopus, Electro, the Vulture, and Mysterio, they've formed the newest incarnation of the super-villain group dedicated to destroy Spider-Man, the Sinister Six! But there is something more than just the death of Spider-Man on the Sinister Six's agenda; something that has caused Col. Sean Morgan and his high-tech anti-espionage agents of S.A.F.E. to become involved. Spider-Man teams up with Morgan to stop the Sinister Six before they can put their world-threatening plan in motion, and to save his sister before it's too late!

  • Written By: Adam-Troy Castro
  • Publisher: Ibooks (April, 2002)
  • ISBN-10: 0743444639
  • ISBN-13: 978-0743444637

Spider-Man Super Thriller (1): Midnight Justice

\"No

Spider-Man faces the fight of his life when the nightmare creature known as Venom targets both the web-slinger and his alter-ego Peter Parker for destruction!

The deadly alien symbiote and its human host, Eddie Brock, collectively known as Venom, harbor a growing hatred for Spider-Man that violently explodes when Parker and Spider-Man are credited with helping clean up crime in the subways. But these tunnels are the domain of Venom, and the clean-up is his doing. The credit should rightly go to him!

Venom challenges Spider-Man to a deadly midnight showdown at Manhattan's criminal court building in the middle of the worst snowstorm of the century. It's a brutal, no-holds-barred contest, in which all the advantages seem to lie with Venom. Spider-Man and guest star the Human Torch must bag the crazed villain, or go down in the attempt!

  • Written By: Martin Delrio
  • Publisher: Pocket (April, 1996)
  • ISBN-10: 0671568515
  • ISBN-13: 978-0671568511

Spider-Man Super Thriller (2): Deadly Cure

\"No

A scientist finds a way to create perfect humans, heal the lame abd cure the sick. Dr. Aron Esterhazy's new formula can even turn ordinary people into superbeings. Everyone who find out about it wants it--but who will control it?

  • Written By: Bill McCay
  • Publisher: Pocket (August, 1996)
  • ISBN-10: 0671003208
  • ISBN-13: 978-0671003203

Spider-Man Super Thriller (3): Global War

\"No

When Spider-Man tries to stop what looks like a simple robbery, he discovers that it's really the start of a sinister plot created by his archenemy, Dr. Octopus. Dr. Octopus is in control of a pair of unstoppable nuclear missiles that he plans to use to take over the world. Teaming up with Captain America, Spider-Man must race against time to stop World War III!

  • Written By: Martin Delrio
  • Publisher: Pocket (January, 1997)
  • ISBN-10: 0671007998
  • ISBN-13: 978-0671007997

Spider-Man Super Thriller (4): Lizard's Rage

\"No

For Spider-Man, what begins as a quiet patrol turns into a life-and-death struggle against two of his deadliest enemies--Lizard and Morbius, the Living Vampire. Both villains are after Eileen McKay, a scientist whose experiments could either cure Morbius of his vampire curse, or help Lizard create an army of humanoid reptiles to take over the world. Trapped between a savage Lizard and a bloodthirsty Morbius, Spidey is in for the fight of his life!

  • Written By: Neal Barrett
  • Publisher: Pocket (February, 1997)
  • ISBN-10: 067100798X
  • ISBN-13: 978-0671007980

Spider-Man Super Thriller (8): Warrior's Revenge

\"No

Bruce Banner--the Incredible Hulk--and his wife, Betty, travel to New York to meet an old friend. There, they discover that their friend is a target for assassination by the notorious Super-Skrull, an alien possessing all the powers of the Fantastic Four. Teaming-up with the amazing Spider-Man, the Hulk must stop the shapeshifting villain from carrying out his mission.

  • Written By: Neal Barrett
  • Publisher: Pocket (August, 1997)
  • ISBN-10: 0671008005
  • ISBN-13: 978-0671008000

Spider-Man: The Darkest Hours

\"No

Peter Parker's life has hit a peaceful stretch. No evildoers have tried to flatten him in weeks, his marriage to Mary Jane is stronger than ever, and he's enjoying his job as a high school science teacher. Life is good.

Naturally, that doesn't last.

When Peter learns that his old enemy the Rhino is on a rampage in Times Square, he suits up as Spider-Man to stop the destructive villain in his tracks. But he's unexpectedly foiled in his attempts by the Black Cat, a former ally and old flame. The Cat informs Peter that the Rhino is just a distraction -- the real threat comes from a group of Ancients, members of the same race as the being called Morlun, who Spidey defeated in battle years earlier. The Ancients are now looking to exact revenge -- and hope to steal Spider-Man's life force in the process.

To defeat such powerful beings, Spider-Man is going to need all the help he can get, especially from the Black Cat. But what will Mary Jane Parker have to say about that? Peter isn't sure which is worse -- the Ancients trying to drain his life force, or the wrath of a jealous wife....

  • Written By: Jim Butcher
  • Publisher: Pocket Star (June, 2006)
  • ISBN-10: 1416510680
  • ISBN-13: 978-1416510680

Spider-Man: The Gathering of the Sinister Six

\"No

At the behest of a deadly benefactor known only as the Gentleman, the Chameleon must assemble a new Sinister Six: Dr. Octopus, the Vulture, Electro, Mysterio, and the Gentleman's mysterious ward, Pity. But Mysterio, the master of illusion, has a plan of his own! A number of Hollywood people has been targeted for murder, and the Webhead must halt Mysterio's deadly rampage before more lives are claimed.

Part one of the Sinister Six trilogy.

  • Written By: Adam-Troy Castro
  • Publisher: Berkley (March, 1999)
  • ISBN-10: 0425167747
  • ISBN-13: 978-0425167748

Spider-Man: The Lizard Sanction

\"No

The deadly Lizard is on a rampage through the Florida Everglades, as he seeks a cure for his hideous condition-- the result of an experiment gone horribly wrong. A heartbeat away is the alien symbiote known as Venom, targeting the Lizard for death, and he won't let anyone stand in his way.

Peter Parker, the amazing Spider-Man, is also in Florida to cover the next space shuttle launch for the Daily Bugle. Disaster strikes when he discovers that his two lethal foes are running wild through the Everglades, just as the launch is sabotaged by a group of sinister mercenaries!

Why is Venom hunting the Lizard? And who are the mercenaries about to wreak havoc in southern Florida? What is their connection to the Lizard's search for a cure?

This triple threat presents Spider-Man with the challenge of his life as he desperately battles against time, the heat, and the savage trail of the Lizard and Venom!

  • Written By: Diane Duane
  • Publisher: Putnam Adult (October, 1995)
  • ISBN-10: 0399141057
  • ISBN-13: 978-0399141058

Spider-Man: The Octopus Agenda

\"No

Spider-Man and his arch-enemy, Venom, must put aside their differences and join forces to stop the ruthless Dr. Octopus, the mastermind of an insidious plot to take over the world.

  • Written By: Diane Duane
  • Publisher: Berkley (August, 1997)
  • ISBN-10: 1572972793
  • ISBN-13: 978-1572972797

Spider-Man: The Secret of the Sinister Six (a.k.a. Spider-Man: The Sinister Six Combo)

\"No

Mass-market edition of a brand new novel which follows super hero Spider-Man as he tries to put a stop to The Gentleman's (the leader of the Sinister Six) plan to destroy all the financial markets in the world. Spider-Man battles the most dangerous Sinister Six line-up ever: Doctor Octopus, Electro, Mysterio, the Vulture, the tragic but deadly Pity, and the group's mysterious leader, the Gentleman - a villain who had a hand in the deaths of Spider-Man's parents! But what neither Spider-Man nor his enemies know is that the Gentleman is about to set his master plan into motion: destroying all the financial markets in the world and make himself the richest man in the world. As for the villainess Pity, Spider-Man has become convinced that she is his long-lost sister. But to get Pity to reject her life of crime and break free of the Gentleman's control, he needs conclusive proof - proof that only the X-Man known as Wolverine has. But time is running out for Spider-Man, for Pity and for the world.

  • Written By: Adam-Troy Castro
  • Publisher: Ibooks (February, 2003)
  • ISBN-10: 074345832X
  • ISBN-13: 978-0743458320

Spider-Man: The Venom Factor

\"No
In a Manhattan warehouse, an innocent man has been murdered during a mysterious crime. Evidence points to the involvement of Venom-- the alien symbiote who is obsessed with Spider-Man's destruction. Yet Venom has always safeguarded innocent lives--- has he gone completely around the bend, or is there another suspect?Spider-Man thinks there is more to the crime than meets the eye. The spectre of the Hobgoblin, one of Spider-Man's nastiest villains, falls on a series of thefts, and leads the web-slinger to a deadly secret that may cause New York's destruction. Spider-Man must outsmart two of his most lethal foes to save the city-- but even more danger awaits him!
  • Written By: Diane Duane
  • Publisher: Berkley (November, 1995)
  • ISBN-10: 1572970383
  • ISBN-13: 978-1572970380

Spider-Man: Valley of the Lizard

\"No

Spider-Man pursues the Lizard from the concrete canyons of New York to the lush jungles of Mexico. Once there, he discovers the Lizard is not only formulating a new plan to wipe out all humans, but he now has an army of reptilian creatures to carry out his orders!

  • Written By: John Vornholt
  • Publisher: Berkley (February, 1998)
  • ISBN-10: 1572973331
  • ISBN-13: 978-1572973336

Spider-Man: Venom's Wrath

\"No
Ann Weying, ex-wife to Eddie Brock--aka the super-villain Venom--has been kidnapped, along with Daily Bugle editor Robbie Robertson and a police captain. Spider-Man must work with the NYPD to find the kidnappers before Venom carves a bloody swath through New York City to find his beloved!
  • ----------
  • Daily Bugle editor Robbie Roberston, a police captain, and Ann Weying have been kidnapped. With the help of the NYPD, Spider-Man is in a desperate race to find the kidnappers before Venom carves a swath through looking for his ex-wife Ann Weying.
  • Written By: Keith R.A. DeCandido & Jose R. Nieto
  • Publisher: Berkley (October, 1998)
  • ISBN-10: 0425165744
  • ISBN-13: 978-0425165744

Spider-Man: Wanted: Dead or Alive

\"No

While trying to stop a robbery, Spider-Man is blamed for the accidental shooting of an innocent bystander. This makes the web-slinger the perfect target for anti-super hero mayoral candidate Brian Timilty. However, Timilty is secretly the pawn of Tyler Stewart, a wealthy businessman seeking to take over New York's crime syndicates. Wanted by police and forced into hiding, Spider-Man must find a way to clear his name without being shot on sight. And that's when Electro and Rhino--two of his deadliest foes--arrive on the scene to complicate matters.

  • Written By: Craig Shaw Gardner
  • Publisher: Berkley (April, 2002)
  • ISBN-10: 0425169308
  • ISBN-13: 978-0425169308

The Ultimate Spider-Man

\"No

Beginning with a novella by Spider-Man's co-creator Stan Lee and veteran Marvel writer Peter David retelling the wall-crawler's origin, this exciting new anthology has original, never-before-told stories featuring one of the world's most enduring heroes.

From Tom De Haven and Dean Wesley Smith's look at Spidey's early career, to David Michelinie's portrait of a dying reporter who wants his last story to be the revelation of Spider-Man's true identity, to Lawrence Watt-Evan's tale of a bot whose web-slinger hero-worship leads to tragedy, plus stories by Craig Shaw Gardner, Ann Nocenti, Robert L. Washington III, Greg Cox, Christopher Golden, and many more-- here are spectaclar new tales of Spider-Man adventure!

Each story has a new or classic illustration by a Spider-Man artist from old favorites to today's hot talents, including Steve Ditko, John Romita, Bob McLeod, Ron Lim, Mark Bagley and Rick Leonardi.

  • Written By: Various, Anthology
  • Publisher: Berkley (February, 1996)
  • ISBN-10: 1572971037
  • ISBN-13: 978-1572971035

Untold Tales of Spider-Man

\"No

Anthology

  • Written By: Various, Anthology
  • Publisher: Berkley (October, 1997)
  • ISBN-10: 1572972947
  • ISBN-13: 978-1572972940

X-Men & Spider-Man: Time's Arrow Book 1 - The Past

\"No

The all-new team-up trilogy.
Spider-Man: Marvel's most popular hero.
X-Men: Marvel's most popular super-team.

  • Written By: Tom Defalco
  • Publisher: Berkey (July, 1998)
  • ISBN-10: 0425164527
  • ISBN-13: 978-0425164525

X-Men & Spider-Man: Time's Arrow Book 2 - The Present

\"No

The X-Men and Spider-Man must join forces to stop destroying the multiverse in an adventure through the past, present, and future. Dinosaurs, knights, gunslingers, World War II heroes, old-friends-turned-enemies, and future versions of themselves await them...

  • Written By: Tom Defalco
  • Publisher: Berkley (August, 1998)
  • ISBN-10: 0425164152
  • ISBN-13: 978-0425164150

X-Men & Spider-Man: Time's Arrow Book 3 - The Future

\"No

Kang's machinations have led to timelines collapsing at a great rate--the X-Men and Spider-Man must take the battle to the Conqueror if they are to keep him from becoming the master of time. But in order to find Kang, they must face alternate futures that may be more than they can bear.

  • Written By: Tom Defalco
  • Publisher: Berkley (September, 1998)
  • ISBN-10: 0425165000
  • ISBN-13: 978-0425165003

Video Games

In 1982, Parker Brothers published the first Spider-Man game for the Atari 2600 titled Spider-Man. The game involves climbing a skyscraper, rescuing hostages, and defusing bombs set by the Green Goblin. The 1990s saw a flood of Spider-Man Video Games. The first game of the decade released was The Amazing Spider-Man, a puzzle action game released for Amiga, PC: DOS, Commodore 64, and Atari ST. Another game, also titled The Amazing Spider-Man was released in 1990 for the Game Boy. The Game Boy titles spawned two sequels: The Amazing Spider-Man 2 and The Amazing Spider-Man 3: Invasion of the Spider-Slayers.

\"Marvel
Marvel vs. Capcom

In 1991, Sega released the first Spider-Man arcade game titled Spider-Man: The Video Game. Sega also released The Amazing Spider-Man vs. The Kingpin the same year. The Nintendo home consoles were late to the Spider-Man party, but they saw many Spider-Man titles themselves. The first was Spider-Man: Return of the Sinister Six, released in 1992 and considered by some to be one of the worst Spider-Man games of all time. Not all Spider-Man titles followed original storylines. In 1994, Spider-Man and Venom: Maximum Carnage was released for the Super Nintendo and the Sega Genesis. The game closely followed the Maximum Carnage Story Arc. 1995 gave us Spider-Man and Venom: Separation Anxiety, which was released on the Sega Genesis, the Super Nintendo, and the PC. That same year, Spider-Man: The Animated Series was released for the Genesis and the Super Nintendo; it followed the storyline of the series, with most of the characters being represented the way they were in the cartoon. The next Spider-Man game, Spider-Man: Web of Fire, was released for the Sega 32X. This game is one of the rarest and most valuable Spider-Man games to date. For the next couple of years, no game completely dedicated to Spider-Man was released. However, in 1995 he made his fighting game debut in Capcom's Marvel Super Heroes arcade game (which was later ported to the Sony PlayStation and Sega Saturn). He returned for the 1997 sequel Marvel Super Heroes vs. Street Fighter (which later ported to the Sony PlayStation and Sega Saturn) and its 1998 followup, Marvel vs. Capcom: Clash of Super Heroes (which was later ported to the Sega Dreamcast and Sony PlayStation).

\"X-Men:
X-Men: Mutant Academy 2

Not until 2000 would Spider-Man return in his own game. Spider-Man made his triumphant video game return in 2000, with not one, but two games, as a character in a fighting game and a special guest appearance that year. Spider-Man for the Game Boy Color was published by Activision and met with moderate success. Later that year Spider-Man, developed by Neversoft, for the PlayStation was released. The game was met with critical and commercial success. The game was ported over to the Nintendo 64 the following year but lacked the full motion cut scenes due to the hardware of the system. Spider-Man was also one of the playable characters in the arcade game Marvel vs. Capcom 2: New Age of Heroes (which later was released on the Sega Dreamcast, Sony PlayStation 2, Xbox). In September of that year, Spider-Man made a special appearance in Tony Hawk's Pro Skater 2 as a hidden character. In 2001, sequels to the successful Activision titles were released. Spider-Man 2: Enter Electro for the PlayStation and Spider-Man 2: Sinister Six for the Gameboy Color. Spider-Man made an early appearance on Nintendo's new handheld system, the Gameboy Advance with Spider-Man: Mysterio's Menace. Spider-Man was also featured as a guest character in the fighting game X-Men: Mutant Academy 2.

\"Spider-Man
Spider-Man 2

With the release of the Spider-Man films, the Spider-Man video games followed suit. Spider-Man: The Game was released in unison with the film in 2002. It was released on the PlayStation 2, the Nintendo GameCube, the Gameboy Advance, the Xbox, and the PC. The game broke many sales records at the time. When Spider-Man 2 was released in June 2004, Spider-Man 2: The Game was released the day before. The game saw release on the same consoles as Spider-Man: The Game did, in addition to the Nintendo DS and Sony PSP. 2005 saw a comic-related Spider-Man game hit the market; Ultimate Spider-Man followed many of the comic story arcs and allowed the player to switch between Spider-Man and Venom. Spider-Man, voiced by Quinton Flynn, appears as one of the main characters in Marvel: Ultimate Alliance and he has special conversations with Mysterio, Lizard and Scorpion, and Dark Spider-Man. His simulator disk has him saving Dum Dum Dugan from the Scorpion and A.I.M in the Omega Base. His costumes are his classic, symbiote, Scarlet Spider, and Stark Armor costumes. Spider-Man's latest film, Spider-Man 3 also saw the same video game treatment as its prequels. Spider-Man 3 was released on more consoles than any game before it. The game was available for the Xbox 360, PlayStation 2 and 3, Nintendo Wii, Gameboy Advance, Nintendo DS, the Sony PSP, and PC. Spider-Man: Friend or Foe was released in October 2007 for Xbox 360, Wii, Playstation 2, PC, PSP, and Nintendo DS. This Spider-Man game features the villains from the Spider-Man films, but with a humorous twist.

In 2008, Spider-Man: Web of Shadows was released. It contained an original storyline not related to the movies, in which players switch between Spidey's Black costume and his classic Red & Blue attire. Player's can dictate Spider-Man's actions, as he can be Heroic or Villainous, as related to his dependence on the symbiote. Many characters appear including Venom, Kingpin, Wolverine, Luke Cage, Mary Jane, and others. It also has 4 different endings based on the path the player chooses. The consoles for this game are PS2, PS3, PC, Wii, Xbox, Xbox 360, PSP. Note: The PSP & PS2 versions of the game are very different from that of the PS3, Wii, Xbox 360, and PC versions. Spider-Man, voiced by Benjamin Diskin appears in Marvel: Ultimate Alliance 2 and is also one of the main characters. In the Pro-Registration story, he can wear his Iron Spider costume.

Spidey's next video game adventure was released on September 7th, 2010, in the form of Spider-Man: Shattered Dimensions. In this game, you can play as four distinct Spider-Men in four different universes, in search of the shattered pieces of a legendary tablet. The game sometimes features sequences where the player is in the first person and has to use the analog stick to win the fight, much like in some boxing games. The first dimension is the Amazing Universe (Earth 616), the world of regular comics Spider-Man that we know and love, voiced by Neil Patrick Harris. He uses mainly far-range combat to defeat his enemies, it is known he faces Sandman in this dimension. The second is the Noir Universe, which takes place in the 1940s, in a darker, stealthier, and grittier setting, where stealth and timing are crucial. In this dimension, Spider-Man Faces Hammerhead, Green Goblin, and the Vulture. The third is 2099, taking place mostly in the skies, with many free falling levels. In this dimension, Spider-Man faces the Hobgoblin with a new, more advanced look. The final dimension is the Ultimate Universe, where Spider-Man has somehow been reunited with the Venom symbiote as his \"gift\" from Madame Webb. He battles Deadpool and many other bosses with symbiote tendrils and many more attacks. Carnage is the main boss of this dimension. In the end, you battle an immensely empowered god-level Mysterio.

\"Spidey
Spidey in action

Spider-Man once again featured as a playable fighter in the 2011 release of Marvel vs. Capcom 3: Fate of Two Worlds and its updated release of Ultimate Marvel vs. Capcom 3 and versions of the game would be released on the PlayStation 3, PlayStation Vita, and Xbox 360. October 2011 also saw the release of the next Spider-Man video game adventure with Spider-Man: Edge of Time, developed by Activision and Beenox, the latter being given free rein after the success of Shattered Dimensions, which bears a similar gameplay concept. The game involves Peter Parker and his future counterpart Miguel O'Hara. A new villain created for the game, Walker Sloan, has created a time machine in order to go back in time and start Alchemex, the company which Miguel works for, now was established in his own views in the seventies. Miguel proceeds to stop him but is caught in the portal after Sloan has entered and somehow becomes a \"viewer\" in the events. This gives him the ability to communicate with Peter Parker, who now works for Alechemex in this time altered universe, and everything he does directly affects the year 2099. Both briefly navigate their own timelines until circumstances force them to switch, now residing in timelines alien to them they traverse obstacles in order to get home through the temporal portal and solve the dystopian effects of the timeline corruption. The two work together to prevent Peter's death at the hands of Anti-Venom, save Mary Jane from multiple dangers, and even take on the CEO of Alchemex. Currently, Beenox has been given rights to the creation of all future Spider-Man games.

\"The
The Amazing Spider-Man 2 suit for Avengers Alliance

Spider-Man is an unlockable character in the Facebook game Marvel: Avengers Alliance. As an Infiltrator, he gains the Combat Awareness buff after attacking Tacticians. He has tremendous agility and an appropriate repertoire of powers, including web-based attacks and his Spider-Sense. He starts with his traditional red & blue costume, but players can purchase the black costume to fight as an ebony Infiltrator or a nefarious Bruiser. By unlocking Spider-Man players also gain access to the bonus missions in Chapter 3 of the single-player campaign.

In 2012 a tie-in to The Amazing Spider-Man movie, titled The Amazing Spider-Man, was released on June 26th. Spider-Man also featured as a playable character in the fighting game Marvel vs. Capcom Origins which was a compilation of the arcade games Marvel Super Heroes and Marvel vs. Capcom: Clash of Super-Heroes. The game was released in September 2012 on the PlayStation 3 Network and Xbox 360 Xbox Live Arcade services.

In 2014 a tie-in to The Amazing Spider-Man 2 movie was released, titled The Amazing Spider-Man 2, and was on April 29th.

\"Disney
Disney Infinity

Spider-Man is a playable character in Marvel Heroes as well as Disney Infinity: Marvel Super Heroes.

For the next few years, Spider-Man vanished from console games but appeared in various mobile app games. He was the star of the Spider-Man Unlimited app game, which stars multiple versions of Spider-Man and his cast from throughout history. He was also featured in Marvel Avengers Alliance 2 and Marvel Future Fight and Marvel Puzzle Quest.

Spider-Man was featured in the Marvel Contest of Champions, a mobile fighting game. Spider-Man eventually joined the Avengers Academy mobile app game alongside several other Spider-related characters as part of a \"Spider-Verse\" event. He returned to consoles as well in Lego Marvel Avengers as part of a Spider-Man DLC pack.

\"Spider-Man
Spider-Man returns to consoles

In 2016, it was announced that Insomniac would be producing the first new Spider-Man console game since The Amazing Spider-Man 2, aiming for a 2018 release date. Dubbed Marvel's Spider-Man, the game features Spider-Man (voiced by Yuri Lowenthal) battling against foes like the Kingpin and Mister Negative.

In 2017, Spider-Man returned to the Marvel vs. Capcom series for Marvel vs. Capcom: Infinite, now voiced by Robbie Daymond. He gained a new Hyper Combo in this entry.

In 2019, Spider-Man was playable in Marvel Ultimate Alliance 3: The Black Order, with Yuri Lowenthal reprising his role.

Live

\"From
From Universal Studios (left) and Disneyland (right)
  • In 1987, Marvel staged a recreation of Spider-Man's wedding to Mary Jane at Shea Stadium.
  • In 2003, a live stunt show starring Spider-Man toured the United States.
  • Spider-Man also appears in the traveling Marvel Universe LIVE! stage show. Both his costume and characterization were heavily based on the character's depiction in The Amazing Spider-Man and The Amazing Spider-Man 2.
  • Spider-Man is also featured as a costumed character in both Disney and Universal Studios' parks.

Turn Off the Dark

\"Spider-Man:
Spider-Man: The Musical

In 2010, a stage musical entitled Spider-Man: Turn Off the Dark opened on Broadway, with music by Bono and the edge and writing by Julie Taymor. The musical was wrought with problems from the very beginning, with multiple injuries happening to actors on the set, and a total cost of 75 million dollars for the production. After opening for previews, the show received many terrible reviews and was temporarily shut down for rewrites.

To help with the rewrites, the production brought in Roberto Aguirre-Sacasa, a playwright as well as a comic writer, having had a short run on Spectacular Spider-Man in 2006. After opening for a second time, the show once again received poor reviews, being called one of the worst Broadway shows of all time by New York Times critic Ben Brantley.

However, despite the bad publicity, the musical has been rather successful on Broadway, bringing in a gross of about $100,000 to $300,000 per week. The producers are currently planning for productions of the show in London, England as well as Hamburg, Germany.

Spider-Man also appears in the traveling Marvel Universe LIVE! stage show. Both his costume and characterization were heavily based on the character's depiction in The Amazing Spider-Man and The Amazing Spider-Man 2.

Spider-Man is also featured as a costumed character in both Disney and Universal Studios' parks.

Merchandise

Being Marvel's most popular and recognizable media, Spider-Man has been immortalized in countless pieces of merchandise.

Early pieces

\"An
An early Spider-Man action figure from Mego (via the Mego Museum)
  • Spider-Man was featured in products from Mego throughout the 1970s in a variety of sizes. He was easily Mego's best-selling Marvel character, with only the Hulk coming close to his profitability.
  • Spider-Man was featured in Mego's Pocket Heroes and Die-Cast Heroes lines.
  • Mego produced playsets and vehicles for Spider-Man, such
  • In the 1980s, Spider-Man was featured in Mattel's Secret Wars line. He was featured in both his classic costume and his black Symbiote costume.

ToyBiz, Hasbro, and Marvel Select

\"Marvel
Marvel Legends
  • ToyBiz took over the Marvel license in the '90s and produced numerous Spider-Man lines, including ones for his animated TV series.
  • A particular oddity was the Spider-Man Adventure Hero line, which featured Spider-Man in a variety of relatively mundane activities, such as fishing, camping, and playing basketball.
  • Spider-Man was the subject of the Spider-Man Classics series, which proved to be a massive game-changer for the industry, eventually spawning the iconic Marvel Legends line.
  • Spider-Man was also featured in the Marvel Legends series, though rather infrequently since he was already the subject of its sister line, Spider-Man classics. He was featured in the Sentinel Build-a-Figure wave, as well as in the \"Spider-Man vs. Sinister 6\" and \"Spider-Man vs. Fearsome Foes\" box sets.
  • After taking over the line from ToyBiz, Hasbro continued the Spider-Man Classics line for a time before ending it.
  • Hasbro also produced the Spider-Man Origins line.
  • Spider-Man has been featured numerous times in Hasbro's Marvel Super Hero Squad line.
  • Spider-Man has been featured numerous times in Hasbro's Marvel Legends series. He first appeared in the Movie Sandman Build-a-Figure wave in both his outfit from the first movie and his black costume from Spider-Man 3. He was next featured in the Arnim Zola Build-a-Figure series, this time sporting his Big Time costume. The movie version of Spider-Man from The Amazing Spider-Man 2 was then featured in the Ultimate Green Goblin Build-a-Figure wave. A classic version of Spider-Man was later featured in the Hobgoblin Build-a-Figure wave, nicknamed \"Pizza Spidey\" by fans due to the presence of a slice of pizza. The Ultimate version of Spider-Man was then featured in the Space Venom Build-a-Figure series. The Symbiote version of Spider-Man then appeared in the Sandman Build-a-Figure wave. A Spider-Man: Homecoming-themed wave was then launched, with Vulture's wings as the \"Build-a-Vehicle\" this time. The line featured the movie version of Spider-Man in his costume and his homemade suit, as well as Cosmic Spider-Man. Spider-Man has also been featured in several two-packs and box sets, including a Captain America: Civil War-themed set that included Iron Man and Captain America, and a two-pack with Ultimate Vulture. Subsequent waves were also released, including one for the Spider-Man: Far From Home film.
  • Spider-Man has been featured multiple times in the Titan Heroes line.
  • Spider-Man has been featured in the Marvel Universe line.
  • Spider-Man has also been featured in the Marvel Mashers line.
  • Diamond Collectibles has been released a number of Spider-Man figures for the Marvel Select line. They initially released an Ultimate Spider-Man figure, and subsequently released a Symbiote-suit Spider-Man, Iron Spider, Zombie Spider-Man, a classic Spider-Man, a Spider-Man from The Amazing Spider-Man (with unmasked and metallic variants), an Amazing Spider-Man 2 figure (with an unmasked variant), a Spectacular Spider-Man, and a Spider-Man: Homecoming Spider-Man figure.
  • Diamond Select also produced a retro, Mego-style figure of Spider-Man.
  • Hasbro launched a Marvel Legends Retro collection loosely inspired by ToyBiz's old Spider-Man: The Animated Series line, complete with variants of Spider-Man like his cyborg incarnation from the \"Revenge of the Sinister Six\" storyline.

Movie Merchandise

\"Renditions
Renditions of the various cinematic Spider-Men from Hot Toys
  • ToyBiz released lines for the first two live-action Spider-Man movies.
  • After taking over the Spider-Man license from ToyBiz, Hasbro produced lines for all the subsequent Spider-Man movies.
  • Hot Toys has produced figures of Spider-Man from Spider-Man 3, The Amazing Spider-Man, The Amazing Spider-Man 2, and Spider-Man: Homecoming, featuring the likenesses of Tobey Maguire, Andrew Garfield, and Tom Holland.
  • Diamond Collectibles released Marvel Select figures of Spider-Man based on his appearances in The Amazing Spider-Man, The Amazing Spider-Man 2, and Spider-Man: Homecoming.
  • Mafex produced Spider-Man figures for The Amazing Spider-Man, The Amazing Spider-Man 2 and Spider-Man: Homecoming.
  • Good Smile released figures of Spider-Man for the Figma line.

Other

\"Spider-Man
Spider-Man figures from other companies
  • Kaiyodo has produced figures of Spider-Man for lines like Revoltech.
  • Bandai has produced Spider-Man figures for various lines, including the Manga Realization line and the toy line based on Marvel Disk Wars. Along with sub brands like SH.Figuarts which has produced Spider-Man figures based on recent games and movies.
  • In the 1970s, a number of Spider-Man figures for the Spider-Man live-action show were produced in Japan.
  • Spider-Man has been based in numerous Lego sets based on the cartoons and movies, including Spider-Man: Homecoming, Ultimate Spider-Man, and Captain America: Civil War.
  • Spider-Man has been featured in Square Enix's Play Arts Kai line.
  • Funko has done numerous Spider-Man figures for the POP line of bobbleheads.
  • RE:EDIT Produced an Iron-Spider figure.

Statues

\"By
By Diamond Select and Kotobukiya
  • Bowen Designs has produced numerous Spider-Man statues, busts, and mini-busts.
  • Diamond Select produced Spider-Man statues as well.
  • Kotobukiya has produced Spider-Man statues, including a wave of Spider-Verse-themed statues for the ARTFX+ line.
  • Sideshow Collectibles has produced Spider-Man busts and statues.
  • Iron Studios has produced Spider-Man statues.
  • Dark Horse has produced statues of Spider-Man.
", + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105342/", + "id": 105342, + "name": null, + "issue_number": "15" + }, + "gender": 1, + "id": 1443, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/12/124259/8126579-amazing_spider-man_vol_5_54_stormbreakers_variant_textless.jpg", + "image_tags": "All Images" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949643/", + "id": 949643, + "name": "End of the Spider-Verse Part One: The One and Only-ish", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-end-of-the-spider-verse-part-one-the-/4000-949643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949637/", + "id": 949637, + "name": "Predator or Prey; Counterfeit Catwalk; Syllie Spider by P.T. Parker", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse-5-predator-or-prey-counterfei/4000-949637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949590/", + "id": 949590, + "name": "70 Years Dumb!", + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-28-70-years-dumb/4000-949590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949133/", + "id": 949133, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-10/4000-949133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-948102/", + "id": 948102, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/axe-judgment-day-5/4000-948102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-946710/", + "id": 946710, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-9/4000-946710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-946212/", + "id": 946212, + "name": "Hell in a Handbasket Part 4", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four-4-hell-in-a-handbasket-part-4/4000-946212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-946192/", + "id": 946192, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/all-out-avengers-1/4000-946192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-945215/", + "id": 945215, + "name": "Just Some Guy; Sinister 60th; Spider-Man vs. Conspirition; The Kid's Got a Good Eye; In the Flesh; Slaves of the Witch-Queen; You Get It; With Great Power...", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-1000-just-some-guy-sinister-60th-s/4000-945215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-943907/", + "id": 943907, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-8/4000-943907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-942718/", + "id": 942718, + "name": "Gig of Nightmares; The Spider and the Dragon; A Single Thread; Mini Marvels", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse-2-gig-of-nightmares-the-spide/4000-942718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-942717/", + "id": 942717, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fortnite-x-marvel-zero-war-3/4000-942717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-942705/", + "id": 942705, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-92-house-of-xcii-4/4000-942705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-941564/", + "id": 941564, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/giant-size-gwen-stacy-1/4000-941564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-941553/", + "id": 941553, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-7/4000-941553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-940237/", + "id": 940237, + "name": "Hell in a Handbasket Part 3", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four-3-hell-in-a-handbasket-part-3/4000-940237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-940234/", + "id": 940234, + "name": "Something Wicked This Way Comes; The Hero Within; Spider-Rex!; My Dame... My Destiny", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse-1-something-wicked-this-way-c/4000-940234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-939095/", + "id": 939095, + "name": "The Cage Opens", + "site_detail_url": "https://comicvine.gamespot.com/venom-9-the-cage-opens/4000-939095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-939085/", + "id": 939085, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-6/4000-939085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-937734/", + "id": 937734, + "name": "Part Twelve: \"What Happens Now\"", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-12-part-twelve-what-happens-now/4000-937734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-937728/", + "id": 937728, + "name": "Hell in a Handbasket Part 2", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four-2-hell-in-a-handbasket-part-2/4000-937728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-935767/", + "id": 935767, + "name": "The Red Fist Saga Part 1; The Island", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-1-the-red-fist-saga-part-1-the-island/4000-935767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-935755/", + "id": 935755, + "name": "Time Flies When You're a Mutant", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hellfire-gala-1-time-flies-when-youre-a-muta/4000-935755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-934990/", + "id": 934990, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-5/4000-934990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-944159/", + "id": 944159, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ziggy-pig-and-silly-seal-infinity-comic-2/4000-944159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-941428/", + "id": 941428, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-family-of-origin-1-tpb/4000-941428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-940871/", + "id": 940871, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-meow-infinity-comic-12/4000-940871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-933093/", + "id": 933093, + "name": "Sins of Omission", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-3-sins-of-omission/4000-933093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-933086/", + "id": 933086, + "name": "What Fresh Hell", + "site_detail_url": "https://comicvine.gamespot.com/iron-manhellcat-annual-1-what-fresh-hell/4000-933086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931638/", + "id": 931638, + "name": "Hell in a Handbasket Part 1", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four-1-hell-in-a-handbasket-part-1/4000-931638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931629/", + "id": 931629, + "name": "Empire of the Spider - Part 2", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-39-empire-of-the-spider-p/4000-931629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931626/", + "id": 931626, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-4/4000-931626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-929651/", + "id": 929651, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fortnite-x-marvel-zero-war-1/4000-929651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-929647/", + "id": 929647, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-3/4000-929647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-942570/", + "id": 942570, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/back-issue-136/4000-942570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-928435/", + "id": 928435, + "name": "Empire of the Spider - Part 1", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-38-empire-of-the-spider-p/4000-928435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926175/", + "id": 926175, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-2/4000-926175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-924794/", + "id": 924794, + "name": "Banner of War Part Two of Five; If This Be Mercy!; Thor's Wedding", + "site_detail_url": "https://comicvine.gamespot.com/thor-25-banner-of-war-part-two-of-five-if-this-be-/4000-924794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922409/", + "id": 922409, + "name": "Anubis Rex; So White. Yet, So Dark.; The End", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-black-white-and-blood-1-anubis-rex-so-/4000-922409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922401/", + "id": 922401, + "name": "Blood and Monsters Finale", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-12-blood-and-monsters-finale/4000-922401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-932238/", + "id": 932238, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-pride-1/4000-932238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931499/", + "id": 931499, + "name": "Hellfire Gala Guide 2022", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-gala-guide-2022-1-hellfire-gala-guide-202/4000-931499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-938034/", + "id": 938034, + "name": " Joyride ", + "site_detail_url": "https://comicvine.gamespot.com/alligator-loki-infinity-comic-7-joyride/4000-938034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931125/", + "id": 931125, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-samurai-2-volume-2/4000-931125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-919313/", + "id": 919313, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-1/4000-919313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-919029/", + "id": 919029, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/hulk-grand-design-madness-1/4000-919029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-914654/", + "id": 914654, + "name": "The Next Big Thing Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-6-the-next-big-thing-conclusion/4000-914654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-923564/", + "id": 923564, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-and-his-amazing-friends-1/4000-923564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922407/", + "id": 922407, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2022-spider-manvenom-1/4000-922407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913173/", + "id": 913173, + "name": "Beyond Chapter Nineteen", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-93-beyond-chapter-nineteen/4000-913173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913166/", + "id": 913166, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-ages-6/4000-913166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913164/", + "id": 913164, + "name": "Smashtronaut! Part Five", + "site_detail_url": "https://comicvine.gamespot.com/hulk-5-smashtronaut-part-five/4000-913164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-911318/", + "id": 911318, + "name": "What if the Watcher had Never Interfered?", + "site_detail_url": "https://comicvine.gamespot.com/reckoning-war-trial-of-the-watcher-1-what-if-the-w/4000-911318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-911317/", + "id": 911317, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-92bey/4000-911317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-910496/", + "id": 910496, + "name": "Beyond Chapter Eighteen", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-92-beyond-chapter-eighteen/4000-910496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-909681/", + "id": 909681, + "name": "Beyond Chapter Seventeen", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-91-beyond-chapter-seventeen/4000-909681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-918745/", + "id": 918745, + "name": "Another ReVOLTing Issue!", + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-25-another-revolting-issue/4000-918745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917232/", + "id": 917232, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-meow-infinity-comic-4/4000-917232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917130/", + "id": 917130, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/imposible-patrulla-x-125/4000-917130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-914548/", + "id": 914548, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-and-his-amazing-friends-team-spidey-does-it/4000-914548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-924048/", + "id": 924048, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-1-tpb/4000-924048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913509/", + "id": 913509, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-meow-infinity-comic-3/4000-913509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-909677/", + "id": 909677, + "name": "Truth & Consequences", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-x-men-2-truth-and-consequences/4000-909677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-908682/", + "id": 908682, + "name": "Beyond Chapter Sixteen", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-90-beyond-chapter-sixteen/4000-908682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-908677/", + "id": 908677, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-ages-5/4000-908677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-907437/", + "id": 907437, + "name": "Smashtronaut! Part Four", + "site_detail_url": "https://comicvine.gamespot.com/hulk-4-smashtronaut-part-four/4000-907437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-907435/", + "id": 907435, + "name": "God of Hammers Part 4", + "site_detail_url": "https://comicvine.gamespot.com/thor-22-god-of-hammers-part-4/4000-907435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-907431/", + "id": 907431, + "name": "Beyond Chapter Fifteen", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-89-beyond-chapter-fifteen/4000-907431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-906628/", + "id": 906628, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-88bey/4000-906628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905794/", + "id": 905794, + "name": "The Day of Reckoning", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-reckoning-war-alpha-1-the-day-of-re/4000-905794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905792/", + "id": 905792, + "name": "Web of Blood Part One", + "site_detail_url": "https://comicvine.gamespot.com/savage-spider-man-1-web-of-blood-part-one/4000-905792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905705/", + "id": 905705, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on-6/4000-905705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-912771/", + "id": 912771, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-peter-milligan-blood-of-apocalypse-1-volu/4000-912771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-912061/", + "id": 912061, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-meow-infinity-comic-2/4000-912061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-910610/", + "id": 910610, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-eternal-flame-1-volume-9/4000-910610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-910395/", + "id": 910395, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-gerry-duggan-1-vol-1/4000-910395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-910003/", + "id": 910003, + "name": "Small Bot, Big Dreams", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-12-small-bot-big-dreams/4000-910003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931103/", + "id": 931103, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-to-heaven-through-hell-2/4000-931103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-929106/", + "id": 929106, + "name": "X-Men 6", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-387-x-men-6/4000-929106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-924784/", + "id": 924784, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-the-defilement-of-all-things-by-th/4000-924784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921292/", + "id": 921292, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-companion-1-tpb/4000-921292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-918520/", + "id": 918520, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-unlimited-infinity-comic-2/4000-918520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917412/", + "id": 917412, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-unlimited-infinity-comic-1/4000-917412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904770/", + "id": 904770, + "name": "Beyond Chapter Thirteen", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-87-beyond-chapter-thirteen/4000-904770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904764/", + "id": 904764, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-and-black-cat-beyond-1/4000-904764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-903845/", + "id": 903845, + "name": "Beyond Chapter Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-86-beyond-chapter-twelve/4000-903845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-902679/", + "id": 902679, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-ages-4/4000-902679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901413/", + "id": 901413, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-omega-1/4000-901413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901342/", + "id": 901342, + "name": "Beyond Chapter Ten", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-84-beyond-chapter-ten/4000-901342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900388/", + "id": 900388, + "name": "Beyond Chapter Nine", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-83-beyond-chapter-nine/4000-900388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-909197/", + "id": 909197, + "name": "Volume 23", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-23-volum/4000-909197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-908921/", + "id": 908921, + "name": "A Nice, Quiet Loki Holiday", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-11-a-nice-quiet-loki-hol/4000-908921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-907087/", + "id": 907087, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-samurai-1-volume-1/4000-907087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-906742/", + "id": 906742, + "name": "Life's A Krakoan Beach", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-10-lifes-a-krakoan-beach/4000-906742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921430/", + "id": 921430, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-the-reality-war-1-v/4000-921430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920938/", + "id": 920938, + "name": "Beyond segunda y tercera parte", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-196-beyond-segunda-y-tercer/4000-920938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901350/", + "id": 901350, + "name": "Whatever Happened to Captain Krakoa?", + "site_detail_url": "https://comicvine.gamespot.com/x-men-6-whatever-happened-to-captain-krakoa/4000-901350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899199/", + "id": 899199, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on-5/4000-899199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899180/", + "id": 899180, + "name": "Tensile Strength", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-spider-man-1-tensile-strength/4000-899180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899171/", + "id": 899171, + "name": "Beyond Chapter Eight", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-82-beyond-chapter-eight/4000-899171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897332/", + "id": 897332, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-80bey/4000-897332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896132/", + "id": 896132, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-spider-man-1/4000-896132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896126/", + "id": 896126, + "name": "Lockdown Part 6", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-36-lockdown-part-6/4000-896126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896091/", + "id": 896091, + "name": "Beyond Chapter Six", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-80-beyond-chapter-six/4000-896091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905077/", + "id": 905077, + "name": "A Slippery Symbiote Situation", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-8-a-slippery-symbiote-si/4000-905077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904190/", + "id": 904190, + "name": "A Dog Gone Adventure", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-7-a-dog-gone-adventure/4000-904190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904096/", + "id": 904096, + "name": "Get Jameson!", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-6-get-jameson/4000-904096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904095/", + "id": 904095, + "name": "Backup", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-5-backup/4000-904095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-934937/", + "id": 934937, + "name": "Vol. 1: The War in Siancong", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-the-war-in-siancong-1-vol-1-the-war-in/4000-934937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-929549/", + "id": 929549, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-big-brain-play-1-tpb/4000-929549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-929524/", + "id": 929524, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-black-white-and-blood-1-tpb/4000-929524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-928653/", + "id": 928653, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-apocrypha-1-volume-11/4000-928653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917985/", + "id": 917985, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-shang-chi-vs-the-marvel-universe-1-tpb/4000-917985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895336/", + "id": 895336, + "name": "Beyond Chapter Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-79-beyond-chapter-five/4000-895336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895280/", + "id": 895280, + "name": "Smashtronaut! Part One", + "site_detail_url": "https://comicvine.gamespot.com/hulk-1-smashtronaut-part-one/4000-895280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894377/", + "id": 894377, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-fantastic-four-anniversary-tribute-1/4000-894377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894143/", + "id": 894143, + "name": "Vs. the Marvel Universe Finale", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-6-vs-the-marvel-universe-finale/4000-894143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894140/", + "id": 894140, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-ages-3/4000-894140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894107/", + "id": 894107, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on-4/4000-894107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893909/", + "id": 893909, + "name": "Beyond Chapter Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-78-beyond-chapter-four/4000-893909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892243/", + "id": 892243, + "name": "Chapter 4: Enslaved", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-4-chapter-4-enslaved/4000-892243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897145/", + "id": 897145, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/how-to-read-comics-the-marvel-way-1/4000-897145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926790/", + "id": 926790, + "name": "Kampf um 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-7-kampf-um-2099/4000-926790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904093/", + "id": 904093, + "name": "No Brain, No Gain!", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-3-no-brain-no-gain/4000-904093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904092/", + "id": 904092, + "name": "Love Language ", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-2-love-language/4000-904092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904091/", + "id": 904091, + "name": "The Sandwich That Saved Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic-1-the-sandwich-that-save/4000-904091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891570/", + "id": 891570, + "name": "Lockdown Part 5", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-35-lockdown-part-5/4000-891570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891568/", + "id": 891568, + "name": "Beyond Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-77-beyond-chapter-three/4000-891568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-890608/", + "id": 890608, + "name": "There Are Monsters On Yancy Street", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-37-there-are-monsters-on-yancy-stre/4000-890608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889482/", + "id": 889482, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-crossroads-4/4000-889482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889481/", + "id": 889481, + "name": "Vs. the Marvel Universe Part 5", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-5-vs-the-marvel-universe-part-5/4000-889481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889467/", + "id": 889467, + "name": "Beyond Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-76-beyond-chapter-two/4000-889467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-888646/", + "id": 888646, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-ages-2/4000-888646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-888643/", + "id": 888643, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on-3/4000-888643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-888642/", + "id": 888642, + "name": "Beyond Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-75-beyond-chapter-one/4000-888642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895688/", + "id": 895688, + "name": "Jeffsgiving", + "site_detail_url": "https://comicvine.gamespot.com/its-jeff-infinity-comic-12-jeffsgiving/4000-895688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892498/", + "id": 892498, + "name": "A Far Stretch", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvels-infinity-comic-8-a-far-s/4000-892498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892255/", + "id": 892255, + "name": "Volume 22", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-this-flame-this-fur/4000-892255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892253/", + "id": 892253, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/carnage-black-white-and-blood-1-tpb/4000-892253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892252/", + "id": 892252, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/america-chavez-made-in-the-usa-1-tpb/4000-892252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-935252/", + "id": 935252, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/sinister-war-1/4000-935252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-914732/", + "id": 914732, + "name": "Volume 15", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-what-cost-victo/4000-914732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-914401/", + "id": 914401, + "name": "Volume 26", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-lifetheft-1-vol/4000-914401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886975/", + "id": 886975, + "name": "The Secret Lives of Savages Part Two", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-5-the-secret-lives-of-savages-/4000-886975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886973/", + "id": 886973, + "name": "Part Five: \"I Might Know a Guy\"", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-5-part-five-i-might-know-a-guy/4000-886973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886962/", + "id": 886962, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/darkhold-alpha-1/4000-886962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886944/", + "id": 886944, + "name": " What Cost Victory?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-74-what-cost-victory/4000-886944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886933/", + "id": 886933, + "name": "Chapter 3: Choices", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-3-chapter-3-choices/4000-886933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885614/", + "id": 885614, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-crossroads-3/4000-885614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884900/", + "id": 884900, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-5/4000-884900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884863/", + "id": 884863, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-35/4000-884863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884103/", + "id": 884103, + "name": "Chapter Twenty-Four: The Defilement of All Things By the Cannibal-Sorcerer Kulan Gath Part One", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-24-chapter-twenty-four-the-defilem/4000-884103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884073/", + "id": 884073, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on-2/4000-884073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884071/", + "id": 884071, + "name": "Sins of Our Fathers", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-73-sins-of-our-fathers/4000-884071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884065/", + "id": 884065, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-marvel-tales-1/4000-884065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882903/", + "id": 882903, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-4/4000-882903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882902/", + "id": 882902, + "name": "Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war-4-conclusion/4000-882902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882900/", + "id": 882900, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dark-ages-1/4000-882900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882887/", + "id": 882887, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-fallout-4-facsimile-edition-1/4000-882887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891280/", + "id": 891280, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spine-tingling-spider-man-infinity-comic-1/4000-891280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-890995/", + "id": 890995, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-the-death-o/4000-890995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889544/", + "id": 889544, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow-1-tpb/4000-889544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889541/", + "id": 889541, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike-1-tpb/4000-889541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889351/", + "id": 889351, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-meow-1-hc/4000-889351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-888891/", + "id": 888891, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-origins-4/4000-888891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891874/", + "id": 891874, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-great-power-1-tpb/4000-891874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885528/", + "id": 885528, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-1/4000-885528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884408/", + "id": 884408, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-great-power-no-responsibility-1-gn/4000-884408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882080/", + "id": 882080, + "name": "Revelations Part Two of Three", + "site_detail_url": "https://comicvine.gamespot.com/thor-16-revelations-part-two-of-three/4000-882080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882079/", + "id": 882079, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-crossroads-2/4000-882079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882077/", + "id": 882077, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-annual-1/4000-882077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882076/", + "id": 882076, + "name": "The Secret Lives of Savages", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-4-the-secret-lives-of-savages/4000-882076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882075/", + "id": 882075, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-identity-1/4000-882075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882053/", + "id": 882053, + "name": "Sinister War Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-72-sinister-war-part-2/4000-882053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882050/", + "id": 882050, + "name": "Chapter 2: Tribes", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-2-chapter-2-tribes/4000-882050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-880933/", + "id": 880933, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war-3-part-three/4000-880933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-880930/", + "id": 880930, + "name": "Part Four: \"Ohio's Fine\"", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-4-part-four-ohios-fine/4000-880930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878827/", + "id": 878827, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow-5/4000-878827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878824/", + "id": 878824, + "name": "The '80s", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-life-story-3-the-80s/4000-878824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878797/", + "id": 878797, + "name": "Lockdown Part 3", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-33-lockdown-part-3/4000-878797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878795/", + "id": 878795, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on-1/4000-878795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878794/", + "id": 878794, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/america-chavez-made-in-the-usa-5/4000-878794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-877070/", + "id": 877070, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-3/4000-877070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-877068/", + "id": 877068, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war-2-part-two/4000-877068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-877067/", + "id": 877067, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/silk-5/4000-877067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-877062/", + "id": 877062, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-black-white-and-blood-1/4000-877062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-886872/", + "id": 886872, + "name": "The Game Night Covenant Agenda Complex: Part 1 of WHO KNOWS?!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvels-infinity-comic-5-the-gam/4000-886872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885082/", + "id": 885082, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-king-in-black-1-volume-4/4000-885082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884063/", + "id": 884063, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/911-20th-anniversary-tribute-the-four-fives-1/4000-884063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883365/", + "id": 883365, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-6-volume-6/4000-883365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883357/", + "id": 883357, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-americas-mightiest-heroes-companion-/4000-883357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883352/", + "id": 883352, + "name": "Volume 14", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-chameleon-consp/4000-883352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883326/", + "id": 883326, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/what-if-the-original-marvel-series-omnibus-1-volum/4000-883326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883305/", + "id": 883305, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-omnibus-5-volume-five/4000-883305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885212/", + "id": 885212, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-infinity-comic-primer-1/4000-885212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885205/", + "id": 885205, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-infinity-comic-primer-1/4000-885205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885204/", + "id": 885204, + "name": "Chapter Five: The Unexpected Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-infinity-comic-5-chapte/4000-885204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885203/", + "id": 885203, + "name": "Chapter Four: The Fantasy Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-infinity-comic-4-chapte/4000-885203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885202/", + "id": 885202, + "name": "Chapter Three: The Hurtful Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-infinity-comic-3-chapte/4000-885202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885201/", + "id": 885201, + "name": "Chapter Two: The Jealousy Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-infinity-comic-2-chapte/4000-885201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885200/", + "id": 885200, + "name": "Chapter One: The Boyfriend Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-infinity-comic-1-chapte/4000-885200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885199/", + "id": 885199, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-infinity-comic-primer-1/4000-885199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885183/", + "id": 885183, + "name": "Sorry, Cap!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvels-infinity-comic-1-sorry-c/4000-885183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885166/", + "id": 885166, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-prelude-infinity-comic-1/4000-885166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926787/", + "id": 926787, + "name": "Blutrote Symbiose", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-6-blutrote-symbiose/4000-926787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-907536/", + "id": 907536, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-spectacular-spider-man-4-vo/4000-907536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892633/", + "id": 892633, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-chillers-1-tpb/4000-892633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-874762/", + "id": 874762, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-crossroads-1/4000-874762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-874641/", + "id": 874641, + "name": "Lockdown Part 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-32-lockdown-part-2/4000-874641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-874544/", + "id": 874544, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike-5/4000-874544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-874540/", + "id": 874540, + "name": "Sinister War Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-71-sinister-war-part-1/4000-874540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-874518/", + "id": 874518, + "name": "Chapter 1: Arrival", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-1-chapter-1-arrival/4000-874518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-874464/", + "id": 874464, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-14/4000-874464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-871608/", + "id": 871608, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow-4/4000-871608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-871607/", + "id": 871607, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war-1-part-one/4000-871607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-868604/", + "id": 868604, + "name": "Infinite Destinies; Infinite Fury Part IV", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-annual-2-infinite-destinies-inf/4000-868604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-868603/", + "id": 868603, + "name": "Prelude to Sinister War", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-70-prelude-to-sinister-war/4000-868603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-881495/", + "id": 881495, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-doctor-strange-1-tpb/4000-881495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-879512/", + "id": 879512, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-kings-ransom-1-/4000-879512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878291/", + "id": 878291, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/curse-of-the-man-thing-1-tpb/4000-878291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-878286/", + "id": 878286, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-omnibus-2-volume-two/4000-878286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-885857/", + "id": 885857, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-5/4000-885857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-866595/", + "id": 866595, + "name": "Conclusion; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-amazing-spider-man-chameleon-conspiracy/4000-866595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-866588/", + "id": 866588, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike-4/4000-866588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-863933/", + "id": 863933, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-2/4000-863933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-863929/", + "id": 863929, + "name": "The Man Who Rebooted the World", + "site_detail_url": "https://comicvine.gamespot.com/heroes-return-1-the-man-who-rebooted-the-world/4000-863929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-863924/", + "id": 863924, + "name": "Chameleon Conspiracy Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-69-chameleon-conspiracy-par/4000-863924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-861680/", + "id": 861680, + "name": "[Untitled]; Mini Marvels", + "site_detail_url": "https://comicvine.gamespot.com/venom-35-untitled-mini-marvels/4000-861680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-858879/", + "id": 858879, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow-3/4000-858879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-858874/", + "id": 858874, + "name": "Chameleon Conspiracy Part 2; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-68-chameleon-conspiracy-par/4000-858874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-858801/", + "id": 858801, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-1/4000-858801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-857657/", + "id": 857657, + "name": "Big Brain Play Part Three", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-3-big-brain-play-part-three/4000-857657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-857649/", + "id": 857649, + "name": "Chameleon Conspiracy Part 1; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-67-chameleon-conspiracy-par/4000-857649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-873375/", + "id": 873375, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-comic-book-history-of-animation-true-toon-tale/4000-873375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-873330/", + "id": 873330, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-4/4000-873330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-871792/", + "id": 871792, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-she-hulk-1-tpb/4000-871792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-871751/", + "id": 871751, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-1-tpb/4000-871751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-869599/", + "id": 869599, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black-1-tpb/4000-869599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-868558/", + "id": 868558, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1768/4000-868558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-864658/", + "id": 864658, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-samurai-2-volume-2/4000-864658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883148/", + "id": 883148, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-origins-3/4000-883148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-876183/", + "id": 876183, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-gwenom-vs-carnage-1-tpb/4000-876183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-876028/", + "id": 876028, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-heroes-return-the-complete-collecti/4000-876028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-855630/", + "id": 855630, + "name": "The Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-26-the-clone-saga/4000-855630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-855588/", + "id": 855588, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-12/4000-855588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851312/", + "id": 851312, + "name": "Vs. the Marvel Universe Part 1", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-1-vs-the-marvel-universe-part-1/4000-851312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851302/", + "id": 851302, + "name": "Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-66-tangled-web/4000-851302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848856/", + "id": 848856, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow-2/4000-848856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848854/", + "id": 848854, + "name": "Destiny Calls", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-peter-parker-the-amazing-shutterbug-/4000-848854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848852/", + "id": 848852, + "name": "Invaders From the Negative Zone; Welcome Home, Soldier", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-2-invaders-from-the-negative-zone-we/4000-848852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848850/", + "id": 848850, + "name": "Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-amazing-spider-man-kings-ransom-1-concl/4000-848850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848847/", + "id": 848847, + "name": "The Gilded City Part 2", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-6-the-gilded-city-part-2/4000-848847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847518/", + "id": 847518, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-man-thing-1/4000-847518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847509/", + "id": 847509, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/carnage-black-white-and-blood-3/4000-847509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847507/", + "id": 847507, + "name": "King's Ransom Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-65-kings-ransom-part-three/4000-847507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-864587/", + "id": 864587, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/silk-out-of-the-spider-verse-2-volume-2/4000-864587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-864583/", + "id": 864583, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-end-1-tpb/4000-864583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-861150/", + "id": 861150, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-summer-preview-2021/4000-861150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-858900/", + "id": 858900, + "name": "Volume 1: With Great Power...", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-the-amazing-spider-man-1/4000-858900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-858675/", + "id": 858675, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1764/4000-858675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-857853/", + "id": 857853, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-snapshots-1-tpb/4000-857853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-866890/", + "id": 866890, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/science-comics-spiders-worldwide-webs-1-gn/4000-866890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-866717/", + "id": 866717, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-1-tpb/4000-866717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-866415/", + "id": 866415, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-3/4000-866415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846092/", + "id": 846092, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-curse-of-the-man-thing-1/4000-846092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846090/", + "id": 846090, + "name": "Chapter Twenty: \"The Clothes Do Not Maketh the Spider-Man\"", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-20-chapter-twenty-the-clothes-do-n/4000-846090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846088/", + "id": 846088, + "name": "The Clone Saga; Big-Time Buzzkill", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-25-the-clone-saga-big-tim/4000-846088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846087/", + "id": 846087, + "name": "Part One: \"...the Birth of Madness\"", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-1-part-one-the-birth-of-madness/4000-846087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844969/", + "id": 844969, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/carnage-black-white-and-blood-2/4000-844969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844965/", + "id": 844965, + "name": "King's Ransom Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-64-kings-ransom-part-two/4000-844965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842968/", + "id": 842968, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow-1/4000-842968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842966/", + "id": 842966, + "name": "Big Brain Play Part Two", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-2-big-brain-play-part-two/4000-842966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842960/", + "id": 842960, + "name": "Friends & Enemies", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-30-friends-and-enemies/4000-842960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842959/", + "id": 842959, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-heart-of-the-hawk-1/4000-842959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842208/", + "id": 842208, + "name": "Rise", + "site_detail_url": "https://comicvine.gamespot.com/venom-34-rise/4000-842208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842204/", + "id": 842204, + "name": "Chapter Five: Dawn", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-5-chapter-five-dawn/4000-842204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842201/", + "id": 842201, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike-3/4000-842201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842199/", + "id": 842199, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/america-chavez-made-in-the-usa-2/4000-842199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842198/", + "id": 842198, + "name": "King's Ransom Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-63-kings-ransom-part-one/4000-842198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-856179/", + "id": 856179, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-by-peter-david-omnibus-3-vol-3/4000-856179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-856178/", + "id": 856178, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-shang-chi-1-tpb/4000-856178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-856177/", + "id": 856177, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1-tpb/4000-856177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-856173/", + "id": 856173, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-shattered-web-1/4000-856173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-855587/", + "id": 855587, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1762/4000-855587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851640/", + "id": 851640, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-savage-omnibus-1-hc/4000-851640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851632/", + "id": 851632, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-brother-voodoo-1-volume-1/4000-851632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851438/", + "id": 851438, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-spider-man-and-the-x-men-1-tpb/4000-851438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848885/", + "id": 848885, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/morbius-epic-collection-the-end-of-a-living-vampir/4000-848885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848880/", + "id": 848880, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-loki-1-tpb/4000-848880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848876/", + "id": 848876, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-the-complete-co/4000-848876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847603/", + "id": 847603, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-michelinie-and-mcfarlane-1-hc/4000-847603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921116/", + "id": 921116, + "name": "El asombroso Spiderman: Matanza máxima", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-105-el-asombroso-spiderman-matanza-m/4000-921116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921114/", + "id": 921114, + "name": "El asombroso Spiderman: El nacimiento de matanza", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-103-el-asombroso-spiderman-el-nacimi/4000-921114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921075/", + "id": 921075, + "name": "1981-1982", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-las-tiras-de-prensa-3-1981-/4000-921075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920937/", + "id": 920937, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hc-what-if-spiderman-la-sombra-de-la-ar/4000-920937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840958/", + "id": 840958, + "name": "The Sword and the Spirit Part Five", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black-5-the-sword-and-/4000-840958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839791/", + "id": 839791, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/carnage-black-white-and-blood-1/4000-839791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839788/", + "id": 839788, + "name": "Wag the Gog", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-62-wag-the-gog/4000-839788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838884/", + "id": 838884, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-6/4000-838884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838866/", + "id": 838866, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-spider-man-1/4000-838866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838588/", + "id": 838588, + "name": "Mistakes Were Made", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-27-mistakes-were-made/4000-838588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-836303/", + "id": 836303, + "name": "Chapter One: Big Brain Play", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-1-chapter-one-big-brain-play/4000-836303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-836300/", + "id": 836300, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-nerdy-30-1/4000-836300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-836297/", + "id": 836297, + "name": "Let's Try Something New!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-61-lets-try-something-new/4000-836297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832860/", + "id": 832860, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike-2/4000-832860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832858/", + "id": 832858, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/america-chavez-made-in-the-usa-1/4000-832858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845175/", + "id": 845175, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/man-thing-by-steve-gerber-the-complete-collection-/4000-845175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845162/", + "id": 845162, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-omnibus-1-volume-1/4000-845162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-843375/", + "id": 843375, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/the-alex-ross-marvel-comics-poster-book-1-sc/4000-843375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-843374/", + "id": 843374, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/x-menavengers-onslaught-3-volume-3/4000-843374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842247/", + "id": 842247, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-complete-collection-3-vol-3/4000-842247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-852409/", + "id": 852409, + "name": "Stars, Stripes, and Spiders!; Life Model Doggie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-classic-spider-man-3-stars-stripes-a/4000-852409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848820/", + "id": 848820, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-2/4000-848820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846096/", + "id": 846096, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/champions-worlds-collide-1-tpb/4000-846096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830032/", + "id": 830032, + "name": "The Sword and the Spirit Part Four", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black-4-the-sword-and-/4000-830032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830025/", + "id": 830025, + "name": "What's Your Story?", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-marvels-snapshots-1-whats-your-stor/4000-830025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830021/", + "id": 830021, + "name": "No Exit", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-60-no-exit/4000-830021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828857/", + "id": 828857, + "name": "Chapter Four: Lightning", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-4-chapter-four-lightning/4000-828857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828192/", + "id": 828192, + "name": "Soul Bound", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-29-soul-bound/4000-828192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828188/", + "id": 828188, + "name": "Negative Space Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-59-negative-space-part-2/4000-828188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827531/", + "id": 827531, + "name": "Agents Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom-33-agents-venom/4000-827531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827521/", + "id": 827521, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike-1/4000-827521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827514/", + "id": 827514, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-101-facsimile-edition-1/4000-827514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839825/", + "id": 839825, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno-omnibus-1-hc/4000-839825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839156/", + "id": 839156, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut-no-stopping-now-1-tpb/4000-839156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837521/", + "id": 837521, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-todd-mcfarlane-the-complete-collecti/4000-837521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837517/", + "id": 837517, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-last-remains-companion-1-tpb/4000-837517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832898/", + "id": 832898, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-the-fate-of-the-phoenix-1-vo/4000-832898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832888/", + "id": 832888, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-last-remains-1-/4000-832888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-833012/", + "id": 833012, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-samurai-1-volume-1/4000-833012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922694/", + "id": 922694, + "name": "Spiderman: Planos aberrantes", + "site_detail_url": "https://comicvine.gamespot.com/instantanea-marvels-6-spiderman-planos-aberrantes/4000-922694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-843366/", + "id": 843366, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/john-romitas-the-amazing-spider-man-artisan-editio/4000-843366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841025/", + "id": 841025, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-earths-mightiest-martial-artist-1-tpb/4000-841025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840898/", + "id": 840898, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-1/4000-840898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826552/", + "id": 826552, + "name": "Negative Space Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-58-negative-space-part-one/4000-826552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825507/", + "id": 825507, + "name": "Chapter Three: Thunder", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-3-chapter-three-thunder/4000-825507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824446/", + "id": 824446, + "name": "Last Remains Post-Mortem, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-57-last-remains-post-mortem/4000-824446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824035/", + "id": 824035, + "name": "The Other Side", + "site_detail_url": "https://comicvine.gamespot.com/venom-32-the-other-side/4000-824035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824033/", + "id": 824033, + "name": "The Sword and the Spirit Part Three", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black-3-the-sword-and-/4000-824033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824023/", + "id": 824023, + "name": "Last Remains Post-Mortem, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-56-last-remains-post-mortem/4000-824023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830061/", + "id": 830061, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-bloodline-1-tpb/4000-830061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828993/", + "id": 828993, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-howard-the-duck-1-volume-1/4000-828993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828991/", + "id": 828991, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-truthdare-1-volume-5/4000-828991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828344/", + "id": 828344, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-villains-on-the-run-1/4000-828344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827699/", + "id": 827699, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-last-hunt-marvel-select-1-hc/4000-827699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827697/", + "id": 827697, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/morbius-preludes-and-nightmares-1-tpb/4000-827697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827693/", + "id": 827693, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection-1-tpb/4000-827693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827691/", + "id": 827691, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-spider-woman-2-volume-2/4000-827691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926786/", + "id": 926786, + "name": "Beutejagd", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4-beutejagd/4000-926786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832394/", + "id": 832394, + "name": "Part Four: Saturday Morning Funhouse", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-history-of-animation-4-part-four-saturd/4000-832394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823342/", + "id": 823342, + "name": "Last Remains Part Six", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-55-last-remains-part-six/4000-823342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822349/", + "id": 822349, + "name": "Chapter Two: Fall", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-2-chapter-two-fall/4000-822349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822346/", + "id": 822346, + "name": "Fallen Order Part Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-54lr-fallen-order-part-five/4000-822346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821501/", + "id": 821501, + "name": "The Sword and the Spirit Part Two", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black-2-the-sword-and-/4000-821501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820751/", + "id": 820751, + "name": "Thirty-Two Seconds", + "site_detail_url": "https://comicvine.gamespot.com/venom-31-thirty-two-seconds/4000-820751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820749/", + "id": 820749, + "name": "Bloodline Part V", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-5-bloodline-part-v/4000-820749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820741/", + "id": 820741, + "name": "Last Remains Part Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-54-last-remains-part-five/4000-820741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820024/", + "id": 820024, + "name": "Chapter One: Reign", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-1-chapter-one-reign/4000-820024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826443/", + "id": 826443, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1745/4000-826443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825589/", + "id": 825589, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-venom-screen-comix-1-volume-one/4000-825589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824519/", + "id": 824519, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-captain-marvel-1-tpb/4000-824519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824516/", + "id": 824516, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-all-dressed-up-1-volume-3/4000-824516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824088/", + "id": 824088, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-omnibus-1-volume-1/4000-824088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824087/", + "id": 824087, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade-omnibus-1-hc/4000-824087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824037/", + "id": 824037, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-marvel-tales-1/4000-824037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846078/", + "id": 846078, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-origins-2/4000-846078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827640/", + "id": 827640, + "name": "Book 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-avengers-the-living-nightmare-1-book/4000-827640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819496/", + "id": 819496, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-black-cat-1/4000-819496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819487/", + "id": 819487, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-2/4000-819487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819481/", + "id": 819481, + "name": "Fallen Order Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-53lr-fallen-order-part-four/4000-819481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819124/", + "id": 819124, + "name": "The Sword and the Spirit Part One", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black-1-the-sword-and-/4000-819124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819120/", + "id": 819120, + "name": "Stuck In the Past", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut-3-stuck-in-the-past/4000-819120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819115/", + "id": 819115, + "name": "Last Remains Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-53-last-remains-part-four/4000-819115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819091/", + "id": 819091, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-monsterworld-1/4000-819091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817713/", + "id": 817713, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection-4/4000-817713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817708/", + "id": 817708, + "name": "Last Remains Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-52-last-remains-part-three/4000-817708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816461/", + "id": 816461, + "name": "Fallen Order Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-51lr-fallen-order-part-two/4000-816461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822557/", + "id": 822557, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-wanda-and-vision-1-tpb/4000-822557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822555/", + "id": 822555, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-freefall-1-tpb/4000-822555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822276/", + "id": 822276, + "name": "The Living Nightmare - Part Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-avengers-12-the-living-nightmare-par/4000-822276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821559/", + "id": 821559, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-omnibus-1-volume-1/4000-821559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821523/", + "id": 821523, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-x-1-tpb/4000-821523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820816/", + "id": 820816, + "name": "Volume 19", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-thor-war-1-volume-19/4000-820816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820809/", + "id": 820809, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-green-goblin-re/4000-820809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820739/", + "id": 820739, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/heroes-at-home-1-gn/4000-820739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820571/", + "id": 820571, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-winter-preview-2020/4000-820571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820570/", + "id": 820570, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1738/4000-820570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820110/", + "id": 820110, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-philosophy-of-spider-man-1-hc/4000-820110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827638/", + "id": 827638, + "name": "With Great Power...; The Mad Titan", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-origins-1-with-great-power-the-mad-t/4000-827638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827137/", + "id": 827137, + "name": "Tome of Iron Dracula", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-chillers-4-tome-of-iron-dracula/4000-827137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823371/", + "id": 823371, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-into-the-spider-verse-poster-book-1-sc/4000-823371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814495/", + "id": 814495, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/strange-academy-4/4000-814495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814486/", + "id": 814486, + "name": "Last Remains Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-51-last-remains-part-two/4000-814486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813460/", + "id": 813460, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-taskmaster-1/4000-813460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813289/", + "id": 813289, + "name": "Venom Beyond Part 4", + "site_detail_url": "https://comicvine.gamespot.com/venom-29-venom-beyond-part-4/4000-813289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813286/", + "id": 813286, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-x-6/4000-813286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813278/", + "id": 813278, + "name": "Truth/Dare Part 3", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-23-truthdare-part-3/4000-813278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813276/", + "id": 813276, + "name": "Fallen Order", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-50lr-fallen-order/4000-813276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810739/", + "id": 810739, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-and-the-amazing-spider-/4000-810739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810729/", + "id": 810729, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection-3/4000-810729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810722/", + "id": 810722, + "name": "Last Remains Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-50-last-remains-part-one/4000-810722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807611/", + "id": 807611, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/original-marvel-zombies-marvel-tales-1/4000-807611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807605/", + "id": 807605, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-10-facsimile-edition-1/4000-807605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807575/", + "id": 807575, + "name": "Dutch Angels", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-marvels-snapshots-1-dutch-angels/4000-807575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807566/", + "id": 807566, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-49/4000-807566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819828/", + "id": 819828, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-empyre-1-volume-6/4000-819828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819824/", + "id": 819824, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jonathan-hickman-the-complete-collecti/4000-819824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819093/", + "id": 819093, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/stormbreakers-2020-sketchbook-1/4000-819093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816815/", + "id": 816815, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/venomnibus-3-volume-3/4000-816815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816798/", + "id": 816798, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/venom-epic-collection-symbiosis-1-volume-1/4000-816798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816761/", + "id": 816761, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-deadpool-and-wolverine-1-tpb/4000-816761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816734/", + "id": 816734, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-sins-rising-1-v/4000-816734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816435/", + "id": 816435, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-adam-kubert-1-hc/4000-816435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926785/", + "id": 926785, + "name": "Stich der Vergangenheit", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-stich-der-vergangenheit/4000-926785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820715/", + "id": 820715, + "name": "Book Five", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-shock-to-the-system-1-boo/4000-820715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820713/", + "id": 820713, + "name": "The Strange Case of Dr. Spider-Man and Mr. Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-chillers-3-the-strange-case-of-dr-sp/4000-820713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-805094/", + "id": 805094, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection-2/4000-805094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803651/", + "id": 803651, + "name": "Venom Beyond Part 3", + "site_detail_url": "https://comicvine.gamespot.com/venom-28-venom-beyond-part-3/4000-803651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803647/", + "id": 803647, + "name": "Bloodline Part IV", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4-bloodline-part-iv/4000-803647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-799944/", + "id": 799944, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-sins-of-norman-osborn-1/4000-799944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797981/", + "id": 797981, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-fallout-fantastic-four-1/4000-797981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797980/", + "id": 797980, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-aftermath-avengers-1/4000-797980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797978/", + "id": 797978, + "name": "Sins Rising Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-48-sins-rising-part-four/4000-797978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797244/", + "id": 797244, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection-1/4000-797244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797242/", + "id": 797242, + "name": "War Games", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-23-war-games/4000-797242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797241/", + "id": 797241, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-6/4000-797241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814565/", + "id": 814565, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-mondo-poster-book-1-sc/4000-814565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810763/", + "id": 810763, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-venom-1-tpb/4000-810763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810747/", + "id": 810747, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-omnibus-1-hc/4000-810747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810520/", + "id": 810520, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-greatest-comics-100-comics-that-built-a-uni/4000-810520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807668/", + "id": 807668, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-road-to-venom-1-tpb/4000-807668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802984/", + "id": 802984, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-4/4000-802984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796299/", + "id": 796299, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020-6/4000-796299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796293/", + "id": 796293, + "name": "Sins Rising Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-47-sins-rising-part-three/4000-796293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-791920/", + "id": 791920, + "name": "Sins Rising Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-46-sins-rising-part-two/4000-791920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787351/", + "id": 787351, + "name": "You Had One Job", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-22-you-had-one-job/4000-787351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787349/", + "id": 787349, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-handbook-1/4000-787349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-786283/", + "id": 786283, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-15/4000-786283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803822/", + "id": 803822, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-gauntlet-the-complete-colle/4000-803822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803675/", + "id": 803675, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-ben-reilly-omnibus-2-volume-2/4000-803675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803671/", + "id": 803671, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-omnibus-1-hc/4000-803671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-801567/", + "id": 801567, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-women-1-tpb/4000-801567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-801566/", + "id": 801566, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-1-tpb/4000-801566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-800469/", + "id": 800469, + "name": "Volume 22", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-22-volum/4000-800469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-799924/", + "id": 799924, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/snow-day-for-groot-1-hc/4000-799924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-799762/", + "id": 799762, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798048/", + "id": 798048, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-storybook-collection-1-hc/4000-798048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798009/", + "id": 798009, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/star-comics-top-dog-the-complete-collection-1-tpb/4000-798009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797284/", + "id": 797284, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-on-the-run-1-volume-2/4000-797284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797283/", + "id": 797283, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-threats-and-men/4000-797283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797281/", + "id": 797281, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-omnibus-1-hc/4000-797281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797280/", + "id": 797280, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-black-widow-strikes-omnibus-1-hc/4000-797280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797279/", + "id": 797279, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-j-michael-straczynski-2-/4000-797279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797275/", + "id": 797275, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-captain-britain-1/4000-797275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797174/", + "id": 797174, + "name": "2020 - 2021", + "site_detail_url": "https://comicvine.gamespot.com/the-overstreet-comic-book-price-guide-50-2020-2021/4000-797174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-805293/", + "id": 805293, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-secret-thing-1-tpb/4000-805293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-784415/", + "id": 784415, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-5/4000-784415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-784405/", + "id": 784405, + "name": "Sins Rising Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-45-sins-rising-part-one/4000-784405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-781430/", + "id": 781430, + "name": "Truth/Dare Part 1", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-21-truthdare-part-1/4000-781430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-781429/", + "id": 781429, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-sins-rising-prelude-1/4000-781429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-779006/", + "id": 779006, + "name": "Living History", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-21-living-history/4000-779006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-779002/", + "id": 779002, + "name": "The Age of Khonshu Part Two: The Fist of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/avengers-34-the-age-of-khonshu-part-two-the-fist-o/4000-779002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-779001/", + "id": 779001, + "name": "Beware the Rising", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-44-beware-the-rising/4000-779001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-775011/", + "id": 775011, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-x-4/4000-775011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796425/", + "id": 796425, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-world-hive-1-tpb/4000-796425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-795943/", + "id": 795943, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-ham-1-tpb/4000-795943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-794929/", + "id": 794929, + "name": "Torment, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-facsimile-edition-1-torment-part-1/4000-794929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-792450/", + "id": 792450, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-1-volume-2/4000-792450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-792449/", + "id": 792449, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-aporkalypse-now-1-tpb/4000-792449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787816/", + "id": 787816, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/morbius-old-wounds-1-tpb/4000-787816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787807/", + "id": 787807, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-last-avenger-1-volume-3/4000-787807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-769754/", + "id": 769754, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-5/4000-769754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-769750/", + "id": 769750, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/captain-america-marvels-snapshots-1/4000-769750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-779387/", + "id": 779387, + "name": "Family Matters", + "site_detail_url": "https://comicvine.gamespot.com/savage-dragon-250-family-matters/4000-779387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-776098/", + "id": 776098, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vault-of-heroes-captain-america-1-tpb/4000-776098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-775031/", + "id": 775031, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-poster-book-1-sc/4000-775031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-774139/", + "id": 774139, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/jack-kirby-the-epic-life-of-the-king-of-comics-1-g/4000-774139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926784/", + "id": 926784, + "name": "Tödliche Spiele", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2-todliche-spiele/4000-926784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-790057/", + "id": 790057, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/constitution-illustrated-1-gn/4000-790057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-785939/", + "id": 785939, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-spider-zero-1-tpb/4000-785939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-785937/", + "id": 785937, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-meets-the-marvel-universe-1-tpb/4000-785937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-785758/", + "id": 785758, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-captain-america-1-tpb/4000-785758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-785731/", + "id": 785731, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-5-volume-5/4000-785731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-784874/", + "id": 784874, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-3/4000-784874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-772347/", + "id": 772347, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-marvel-select-1-hc/4000-772347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-772344/", + "id": 772344, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-spectacular-spider-man-3-vo/4000-772344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-772337/", + "id": 772337, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-5/4000-772337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763572/", + "id": 763572, + "name": "True Companions Part Three; The Sins of...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-43-true-companions-part-thr/4000-763572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-760763/", + "id": 760763, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-variant-covers-1/4000-760763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-770321/", + "id": 770321, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-omnibus-1-hc/4000-770321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-770155/", + "id": 770155, + "name": "Book 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-venom-1-book-4/4000-770155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-766408/", + "id": 766408, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/sensational-she-hulk-by-john-byrne-omnibus-1-hc/4000-766408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-914873/", + "id": 914873, + "name": "Sternfinsternis", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-2-sternfinsternis/4000-914873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763306/", + "id": 763306, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-weddings-1/4000-763306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763305/", + "id": 763305, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spideys-totally-tiny-adventure-1/4000-763305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763304/", + "id": 763304, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-the-avengers-1/4000-763304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763081/", + "id": 763081, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/bring-on-the-bad-guys-the-variant-covers-1/4000-763081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763063/", + "id": 763063, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-and-mary-jane-the-variant-c/4000-763063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-762411/", + "id": 762411, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-4/4000-762411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-762410/", + "id": 762410, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-freefall-5/4000-762410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-760803/", + "id": 760803, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-subterranean-wars-1/4000-760803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759381/", + "id": 759381, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venomized-the-variant-covers-1/4000-759381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759380/", + "id": 759380, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/carnage-ized-the-variant-covers-1/4000-759380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921074/", + "id": 921074, + "name": "1979-1981", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-las-tiras-de-prensa-2-1979-/4000-921074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921073/", + "id": 921073, + "name": "1977-1979", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-las-tiras-de-prensa-1-1977-/4000-921073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-781609/", + "id": 781609, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2020-spider-manvenom-1/4000-781609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743447/", + "id": 743447, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/road-to-empyre-the-kreeskrull-war-1/4000-743447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743441/", + "id": 743441, + "name": "The Thoughtful Man", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-33-the-thoughtful-man/4000-743441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743438/", + "id": 743438, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-marvels-snapshots-1/4000-743438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743435/", + "id": 743435, + "name": "True Companions Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-42-true-companions-part-two/4000-743435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742379/", + "id": 742379, + "name": "At the End of All Things Part 2", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie-jane-foster-9-at-the-end-of-all-things-pa/4000-742379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742374/", + "id": 742374, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/morbius-5/4000-742374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742373/", + "id": 742373, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-x-3/4000-742373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742362/", + "id": 742362, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-mary-jane-6/4000-742362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740829/", + "id": 740829, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-4/4000-740829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740824/", + "id": 740824, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-4/4000-740824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740820/", + "id": 740820, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-3/4000-740820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740811/", + "id": 740811, + "name": "World Hive Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-3-world-hive-part-3/4000-740811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740810/", + "id": 740810, + "name": "True Companions Part One; The Sins of the Lethal Legion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-41-true-companions-part-one/4000-740810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740770/", + "id": 740770, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-hulking-1/4000-740770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739566/", + "id": 739566, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-6/4000-739566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739562/", + "id": 739562, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-1/4000-739562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755868/", + "id": 755868, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-villainous-venom-battles-spider-man-1/4000-755868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755866/", + "id": 755866, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vibranium-vendetta-1/4000-755866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755864/", + "id": 755864, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assault-on-armor-city-1/4000-755864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755773/", + "id": 755773, + "name": "Vol. 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-the-complete-collection-4-vol-4/4000-755773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755772/", + "id": 755772, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-variant-covers-1/4000-755772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755771/", + "id": 755771, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-action-figure-variant-covers-1/4000-755771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-751961/", + "id": 751961, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-2099-1-volume-7/4000-751961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-748554/", + "id": 748554, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-mary-jane-down-in-flames-up-in-smoke-1-vol/4000-748554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-745819/", + "id": 745819, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble-1-tpb/4000-745819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-745817/", + "id": 745817, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-black-widow-1-tpb/4000-745817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-772714/", + "id": 772714, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-classic-avengers-starring-iron-man-1/4000-772714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-756653/", + "id": 756653, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-companion-1-tpb/4000-756653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-744573/", + "id": 744573, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mephisto-speak-of-the-devil-1-tpb/4000-744573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-744570/", + "id": 744570, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-full-circle-1-hc/4000-744570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743109/", + "id": 743109, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-33/4000-743109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738621/", + "id": 738621, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/tarot-3/4000-738621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738618/", + "id": 738618, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-3/4000-738618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738613/", + "id": 738613, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-blind-spot-4/4000-738613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738604/", + "id": 738604, + "name": "The Hanging Judge Part 2 of 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-daily-bugle-2-the-hanging-judge/4000-738604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738603/", + "id": 738603, + "name": "Breaking News Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-40-breaking-news-part-three/4000-738603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737764/", + "id": 737764, + "name": "At the End of All Things Part 1", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie-jane-foster-8-at-the-end-of-all-things-pa/4000-737764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737760/", + "id": 737760, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-1/4000-737760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737169/", + "id": 737169, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-3/4000-737169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737164/", + "id": 737164, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/morbius-4/4000-737164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737163/", + "id": 737163, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-x-2/4000-737163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737162/", + "id": 737162, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-2/4000-737162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737157/", + "id": 737157, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy-1/4000-737157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737153/", + "id": 737153, + "name": "Breaking News Part Two; The Sins of Overdrive", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-39-breaking-news-part-two-t/4000-737153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736497/", + "id": 736497, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-5/4000-736497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736496/", + "id": 736496, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble-4/4000-736496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736495/", + "id": 736495, + "name": "Chapter Zero", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-0-chapter-zero/4000-736495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736490/", + "id": 736490, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-great-power-1/4000-736490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743987/", + "id": 743987, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-house-of-x-and-powers-of-x-2/4000-743987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742431/", + "id": 742431, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-messiah-complex-1-tpb/4000-742431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-741760/", + "id": 741760, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-spring-preview-2020/4000-741760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740891/", + "id": 740891, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-treasury-edition-1-/4000-740891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740887/", + "id": 740887, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-marvel-team-up-1-tpb/4000-740887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740253/", + "id": 740253, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vault-of-heroes-thor-1-tpb/4000-740253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739614/", + "id": 739614, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-classic-omnibus-1-volume-1/4000-739614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739613/", + "id": 739613, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1000-collection-1-hc/4000-739613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739693/", + "id": 739693, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1707/4000-739693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926783/", + "id": 926783, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-926783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735531/", + "id": 735531, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/tarot-2/4000-735531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735525/", + "id": 735525, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-blind-spot-2/4000-735525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735523/", + "id": 735523, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-freefall-2/4000-735523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735519/", + "id": 735519, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-end-1/4000-735519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735513/", + "id": 735513, + "name": "The Hanging Judge Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-daily-bugle-1-the-hanging-judge/4000-735513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735476/", + "id": 735476, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-2/4000-735476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735401/", + "id": 735401, + "name": "The Boneyard Hop!", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-347-facsimile-edition-1-the-bon/4000-735401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-734635/", + "id": 734635, + "name": "Breaking News Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-38-breaking-news-part-one/4000-734635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733830/", + "id": 733830, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-the-end-1/4000-733830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733825/", + "id": 733825, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-1/4000-733825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732893/", + "id": 732893, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-2/4000-732893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732886/", + "id": 732886, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/morbius-3/4000-732886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732873/", + "id": 732873, + "name": "Time, For A Change", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-37-time-for-a-change/4000-732873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732872/", + "id": 732872, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-mary-jane-4/4000-732872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731977/", + "id": 731977, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble-3/4000-731977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731969/", + "id": 731969, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-green-goblin-/4000-731969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738067/", + "id": 738067, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-the-complete-collec/4000-738067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738066/", + "id": 738066, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster-anything-you-can-do-1-tpb/4000-738066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738065/", + "id": 738065, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/tales-through-the-marvel-universe-1-tpb/4000-738065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738064/", + "id": 738064, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity-1-tpb/4000-738064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738062/", + "id": 738062, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-strikes-back-1-tpb/4000-738062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737194/", + "id": 737194, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-great-responsibility-1-tpb/4000-737194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737189/", + "id": 737189, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-the-secret-of-t/4000-737189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736928/", + "id": 736928, + "name": "Book 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-bad-luck-1-book-3/4000-736928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736694/", + "id": 736694, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-apocalypse-the-twelve-omnibus-1-hc/4000-736694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736688/", + "id": 736688, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-dog-days-are-over-1-volume-1/4000-736688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736188/", + "id": 736188, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/secret-reverse-1-volume-1/4000-736188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736184/", + "id": 736184, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-x-shonen-jump-super-collaboration-1/4000-736184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-902363/", + "id": 902363, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-leyendas-de-marvel-1/4000-902363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-741395/", + "id": 741395, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-2/4000-741395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739023/", + "id": 739023, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-epic-collection-curiouser-and-curiouser-/4000-739023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739021/", + "id": 739021, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/blade-by-marc-guggenheim-the-complete-collection-1/4000-739021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731666/", + "id": 731666, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/incoming-1/4000-731666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731526/", + "id": 731526, + "name": "Bloodlines Part III", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-bloodlines-part-iii/4000-731526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731520/", + "id": 731520, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity-5/4000-731520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731517/", + "id": 731517, + "name": "Dead In the Water Part VI", + "site_detail_url": "https://comicvine.gamespot.com/invaders-12-dead-in-the-water-part-vi/4000-731517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731516/", + "id": 731516, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-6/4000-731516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731503/", + "id": 731503, + "name": "Time After Time", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-36-time-after-time/4000-731503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730349/", + "id": 730349, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-1/4000-730349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730340/", + "id": 730340, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/morbius-2/4000-730340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730335/", + "id": 730335, + "name": "A Night Off", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-14-a-night-off/4000-730335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730326/", + "id": 730326, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-mary-jane-3/4000-730326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729685/", + "id": 729685, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble-2/4000-729685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729672/", + "id": 729672, + "name": "Doom's Day", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-35-dooms-day/4000-729672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735592/", + "id": 735592, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-the-complete-collection-3-vol-3/4000-735592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735589/", + "id": 735589, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-script-book-1-hc/4000-735589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735587/", + "id": 735587, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-hostile-takeovers/4000-735587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-735584/", + "id": 735584, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-avengers-1-tpb/4000-735584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-734685/", + "id": 734685, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-the-complete-collection/4000-734685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-734201/", + "id": 734201, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-collection-11-volume-11/4000-734201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733877/", + "id": 733877, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-by-peter-david-omnibus-1-vol-1/4000-733877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733876/", + "id": 733876, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/crazy-1-tpb/4000-733876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733873/", + "id": 733873, + "name": "Volume 25", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-maximum-car/4000-733873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733870/", + "id": 733870, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-miles-morales-1-tpb/4000-733870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733869/", + "id": 733869, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-lethal-protectors-1-tpb/4000-733869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733094/", + "id": 733094, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-collection-10-volume-10/4000-733094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733093/", + "id": 733093, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-collection-9-volume-9/4000-733093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733092/", + "id": 733092, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-collection-8-volume-8/4000-733092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732935/", + "id": 732935, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-breakout-marvel-select-1-hc/4000-732935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732928/", + "id": 732928, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-vs-deadpool-1-tpb/4000-732928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732927/", + "id": 732927, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-1-tpb/4000-732927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731989/", + "id": 731989, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-marvel-spider-man-1-tpb/4000-731989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731986/", + "id": 731986, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-grand-theft-marvel-1-volume-1/4000-731986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731984/", + "id": 731984, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-absolute-carnag/4000-731984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-914336/", + "id": 914336, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kampf-um-new-york-1/4000-914336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-767765/", + "id": 767765, + "name": "El trono de acero; Somos Hulk", + "site_detail_url": "https://comicvine.gamespot.com/el-alucinate-hulk-90-el-trono-de-acero-somos-hulk/4000-767765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737671/", + "id": 737671, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-classics-avengers-featuring-doctor-s/4000-737671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736927/", + "id": 736927, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-1/4000-736927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-736926/", + "id": 736926, + "name": "Book 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-avengers-the-fear-eaters-1-book-3/4000-736926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728429/", + "id": 728429, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-2/4000-728429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728427/", + "id": 728427, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity-4/4000-728427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728413/", + "id": 728413, + "name": "Target: Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-34-target-doom/4000-728413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728410/", + "id": 728410, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-captain-marvel-1/4000-728410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728409/", + "id": 728409, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-5/4000-728409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-727260/", + "id": 727260, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-5/4000-727260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-727255/", + "id": 727255, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/black-cat-annual-1/4000-727255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726213/", + "id": 726213, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble-1/4000-726213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726200/", + "id": 726200, + "name": "Point Blank", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-33-point-blank/4000-726200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731730/", + "id": 731730, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-collection-9-volume-9/4000-731730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731728/", + "id": 731728, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-collection-7-volume-7/4000-731728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731601/", + "id": 731601, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-collection-4-volume-4/4000-731601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731542/", + "id": 731542, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-summers-and-winter-1-tpb/4000-731542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731540/", + "id": 731540, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-origins-myth-and-magic-1-volume-2/4000-731540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731537/", + "id": 731537, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-yancy-street-legends-/4000-731537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731536/", + "id": 731536, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-strike-force-the-art-of-the-game-1-hc/4000-731536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731164/", + "id": 731164, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-classic-spider-man-2/4000-731164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730358/", + "id": 730358, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/tigra-the-complete-collection-1-tpb/4000-730358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730354/", + "id": 730354, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-ed-mcguinness-deadpool/4000-730354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729699/", + "id": 729699, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-lo-this-monster-1-tpb/4000-729699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729697/", + "id": 729697, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/ditko-is-amazing-1-hc/4000-729697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732165/", + "id": 732165, + "name": "Dinastía de X 2", + "site_detail_url": "https://comicvine.gamespot.com/imposible-patrulla-x-92-dinastia-de-x-2/4000-732165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725261/", + "id": 725261, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-19/4000-725261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725252/", + "id": 725252, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection-1/4000-725252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725248/", + "id": 725248, + "name": "You Say You Want A Revolution", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-13-you-say-you-wa/4000-725248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725116/", + "id": 725116, + "name": "Four Astronauts Walk into a Rocket", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-grand-design-1-four-astronauts-walk/4000-725116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723863/", + "id": 723863, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity-3/4000-723863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723856/", + "id": 723856, + "name": "Dog Days Are Over", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-3-dog-days-are-over/4000-723856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723851/", + "id": 723851, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-full-circle-1/4000-723851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723850/", + "id": 723850, + "name": "Running Late", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-32-running-late/4000-723850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723849/", + "id": 723849, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-mary-jane-1/4000-723849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723118/", + "id": 723118, + "name": "Bloodline Part II", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2-bloodline-part-ii/4000-723118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723116/", + "id": 723116, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-ghost-rider-1/4000-723116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723114/", + "id": 723114, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-4/4000-723114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723112/", + "id": 723112, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/crazy-1/4000-723112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723104/", + "id": 723104, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-avengers-1/4000-723104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723103/", + "id": 723103, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-4/4000-723103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721792/", + "id": 721792, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-pyro-1/4000-721792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721778/", + "id": 721778, + "name": "Absolute Carnage Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-31-absolute-carnage-part-tw/4000-721778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721777/", + "id": 721777, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-15-facsimile-edition-1/4000-721777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721156/", + "id": 721156, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1001/4000-721156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721144/", + "id": 721144, + "name": "We Are Hulk", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-immortal-hulk-1-we-are-hulk/4000-721144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728993/", + "id": 728993, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classic-the-complete-collection-2-volume-2/4000-728993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728990/", + "id": 728990, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-team-up-1-tpb/4000-728990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-728986/", + "id": 728986, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-radioactive-1-tpb/4000-728986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-727516/", + "id": 727516, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return-1/4000-727516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-727275/", + "id": 727275, + "name": "Volume 21", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-21-volum/4000-727275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726536/", + "id": 726536, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-collection-6-volume-6/4000-726536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726219/", + "id": 726219, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-joe-kelly-the-complete-collection-1-vo/4000-726219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-926210/", + "id": 926210, + "name": "Linea di sangue", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-linea-di-sangue/4000-926210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-788962/", + "id": 788962, + "name": "The Living Nightmare - Part Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-avengers-11-the-living-nightmare-par/4000-788962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740342/", + "id": 740342, + "name": "Cable & Masacre 2", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-97-cable-and-masacre-2/4000-740342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-734243/", + "id": 734243, + "name": "House of X 2", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-357-house-of-x-2/4000-734243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731165/", + "id": 731165, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-12/4000-731165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720181/", + "id": 720181, + "name": "Acts of Evil!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-annual-1-acts-of-evil/4000-720181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720165/", + "id": 720165, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity-2/4000-720165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720162/", + "id": 720162, + "name": "Candy Store", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-2-candy-store/4000-720162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720156/", + "id": 720156, + "name": "Absolute Carnage Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-30-absolute-carnage-part-on/4000-720156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719442/", + "id": 719442, + "name": "Bloodline", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-bloodline/4000-719442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719438/", + "id": 719438, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-3/4000-719438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719437/", + "id": 719437, + "name": "Shot Across the Bow", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-12-shot-across-th/4000-719437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719430/", + "id": 719430, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-3/4000-719430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718771/", + "id": 718771, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-18/4000-718771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718761/", + "id": 718761, + "name": "Celebration; The Secret Origin of Starling!", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-10-celebration-the-secret/4000-718761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718749/", + "id": 718749, + "name": "Through Hell Part 1", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-11-through-hell-part-1/4000-718749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718746/", + "id": 718746, + "name": "Arrivals/Departures", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-29-arrivalsdepartures/4000-718746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718744/", + "id": 718744, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-vs-deadpool-2/4000-718744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718122/", + "id": 718122, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-going-big-1/4000-718122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725270/", + "id": 725270, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-the-complete-collection-2-vol-2/4000-725270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725266/", + "id": 725266, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-1-tpb/4000-725266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725265/", + "id": 725265, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-gwen-stacy-1-tpb/4000-725265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725264/", + "id": 725264, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-thanos-1-tpb/4000-725264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725263/", + "id": 725263, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-iron-man-1-tpb/4000-725263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-724079/", + "id": 724079, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-halloween-comicfest-0/4000-724079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723762/", + "id": 723762, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/write-your-own-marvel-1-sc/4000-723762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723759/", + "id": 723759, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-1-tpb/4000-723759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723755/", + "id": 723755, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-a-woman-called-widow-1-v/4000-723755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723754/", + "id": 723754, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-behind-the-scen/4000-723754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723126/", + "id": 723126, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-1-tpb/4000-723126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723123/", + "id": 723123, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/how-to-paint-characters-the-marvel-studios-way-1-h/4000-723123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723122/", + "id": 723122, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey-by-daniel-way-bullets-and-bananas-1-tpb/4000-723122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-722962/", + "id": 722962, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-from-amazing-to-spectacular-the/4000-722962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-722887/", + "id": 722887, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-john-byrne-artist-select-series-1-h/4000-722887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721801/", + "id": 721801, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-power-and-responsibility-marve/4000-721801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721800/", + "id": 721800, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-unexpected-thing-1-/4000-721800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721799/", + "id": 721799, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-sara-pichelli-1-sc/4000-721799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721797/", + "id": 721797, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-80-for-80-1-hc/4000-721797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721263/", + "id": 721263, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-book-expand-your-knowledge-of-a-vast-co/4000-721263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721175/", + "id": 721175, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-the-art-of-the-movie-1-hc/4000-721175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721173/", + "id": 721173, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-rob-liefeld-omnibus-1-hc/4000-721173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721171/", + "id": 721171, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/man-wolf-the-complete-collection-1-tpb/4000-721171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721168/", + "id": 721168, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history-1-tpb/4000-721168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-762354/", + "id": 762354, + "name": "The Living Nightmare - Part One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-avengers-10-the-living-nightmare-par/4000-762354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726665/", + "id": 726665, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-11/4000-726665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-724721/", + "id": 724721, + "name": "Book 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-spider-chase-1-book-2/4000-724721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720029/", + "id": 720029, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-27/4000-720029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717540/", + "id": 717540, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1000/4000-717540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717529/", + "id": 717529, + "name": "Chapter Six: All My Enemies", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-6-chapter-six-all-my-enemies/4000-717529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717524/", + "id": 717524, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-fall-2019-magazine-1/4000-717524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717522/", + "id": 717522, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity-1/4000-717522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717518/", + "id": 717518, + "name": "Friendly Neighborhood Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-11-friendly-neigh/4000-717518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717512/", + "id": 717512, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-venom-3d-1/4000-717512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717511/", + "id": 717511, + "name": "Who Run the World? Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-28-who-run-the-world-part-t/4000-717511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717509/", + "id": 717509, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-lethal-protectors-1/4000-717509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717508/", + "id": 717508, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-2/4000-717508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716965/", + "id": 716965, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-6/4000-716965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716958/", + "id": 716958, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-1/4000-716958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716950/", + "id": 716950, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-vs-deadpool-1/4000-716950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716377/", + "id": 716377, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-5/4000-716377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716360/", + "id": 716360, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-strikes-back-1/4000-716360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716358/", + "id": 716358, + "name": "Feast or Famine: Part Four", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-10-feast-or-famin/4000-716358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716350/", + "id": 716350, + "name": "Who Run the World? Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-27-who-run-the-world-part-t/4000-716350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715317/", + "id": 715317, + "name": "Burn Job; With No Power!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-self-improvement-1-burn/4000-715317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715306/", + "id": 715306, + "name": "The Uncanny Life of Moira X", + "site_detail_url": "https://comicvine.gamespot.com/house-of-x-2-the-uncanny-life-of-moira-x/4000-715306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715302/", + "id": 715302, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history-6/4000-715302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715296/", + "id": 715296, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-1/4000-715296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720189/", + "id": 720189, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-postcard-book-1-hc/4000-720189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-720182/", + "id": 720182, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-spectacular-foes-1-vo/4000-720182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718782/", + "id": 718782, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-spider-mandaredevil-1-tpb/4000-718782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718778/", + "id": 718778, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-many-hosts-of-carnage-1-tpb/4000-718778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718775/", + "id": 718775, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-esad-ribic-1-sc/4000-718775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718144/", + "id": 718144, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-john-byrne-omnibus-1-hc/4000-718144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718141/", + "id": 718141, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-joe-quesada-1-hc/4000-718141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718014/", + "id": 718014, + "name": "Volume II", + "site_detail_url": "https://comicvine.gamespot.com/spawn-vault-edition-2-volume-ii/4000-718014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732567/", + "id": 732567, + "name": "The Fear Eaters - Part Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-avengers-9-the-fear-eaters-part-thre/4000-732567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723548/", + "id": 723548, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-10/4000-723548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717593/", + "id": 717593, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/alter-ego-160/4000-717593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714678/", + "id": 714678, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-planet-of-the-symb/4000-714678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714663/", + "id": 714663, + "name": "Feast or Famine: Part Three", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-9-feast-or-famine/4000-714663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714248/", + "id": 714248, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-separation-anxiety/4000-714248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714231/", + "id": 714231, + "name": "Who Run the World?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-26-who-run-the-world/4000-714231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713869/", + "id": 713869, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-savage-rebirth-1/4000-713869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713868/", + "id": 713868, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-maximum-carnage-1/4000-713868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713867/", + "id": 713867, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-9/4000-713867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713864/", + "id": 713864, + "name": "Chapter Five: Civic Engagement", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-5-chapter-five-civic-engagem/4000-713864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713860/", + "id": 713860, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-5/4000-713860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713522/", + "id": 713522, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-venom-vs-carnage-1/4000-713522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713521/", + "id": 713521, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-carnage-1/4000-713521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713520/", + "id": 713520, + "name": "War's End", + "site_detail_url": "https://comicvine.gamespot.com/thor-15-wars-end/4000-713520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713519/", + "id": 713519, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-4/4000-713519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713456/", + "id": 713456, + "name": "Team-Up; Robo-Helpers", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-25-team-up-robo-helpers/4000-713456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713084/", + "id": 713084, + "name": "This Land is My Land", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-carnage-usa-1-this/4000-713084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713080/", + "id": 713080, + "name": "You Can't Stop the Beat", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-ghost-spider-10-you-cant-stop-the-beat/4000-713080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713073/", + "id": 713073, + "name": "The Sting", + "site_detail_url": "https://comicvine.gamespot.com/the-magnificent-ms-marvel-annual-1-the-sting/4000-713073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717542/", + "id": 717542, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-postcard-book-1-hc/4000-717542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717539/", + "id": 717539, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-the-complete-co/4000-717539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716977/", + "id": 716977, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-strikeforce-1-tpb/4000-716977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716379/", + "id": 716379, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-1-tpb/4000-716379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716355/", + "id": 716355, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-10s-legends-and-legacy-1-tpb/4000-716355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716351/", + "id": 716351, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-hunted-1-volume-4/4000-716351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-738200/", + "id": 738200, + "name": "Déclarer la paix", + "site_detail_url": "https://comicvine.gamespot.com/x-men-7-declarer-la-paix/4000-738200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721475/", + "id": 721475, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-9/4000-721475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712557/", + "id": 712557, + "name": "Chapter Six: The Storm of Thors", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-6-chapter-six-the-storm-of-thors/4000-712557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712556/", + "id": 712556, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-vs-mysterio-1/4000-712556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712551/", + "id": 712551, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-8/4000-712551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712546/", + "id": 712546, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reptilian-rage-1/4000-712546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712545/", + "id": 712545, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1/4000-712545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712530/", + "id": 712530, + "name": "Feast or Famine: Part Two", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-8-feast-or-famine/4000-712530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712524/", + "id": 712524, + "name": "One-On-One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-24-one-on-one/4000-712524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711967/", + "id": 711967, + "name": "Why We Fight Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-spider-man-and-the-league-of-rea/4000-711967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711962/", + "id": 711962, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-the-wedding-/4000-711962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711961/", + "id": 711961, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-spidey-fight/4000-711961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711950/", + "id": 711950, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-4/4000-711950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711949/", + "id": 711949, + "name": "Book Four: The Day She Died", + "site_detail_url": "https://comicvine.gamespot.com/marvels-annotated-4-book-four-the-day-she-died/4000-711949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711948/", + "id": 711948, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-1-facsimile-edition-1/4000-711948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711941/", + "id": 711941, + "name": "Strange Trip Part 2", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-7-strange-trip-part-2/4000-711941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711817/", + "id": 711817, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-8/4000-711817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711336/", + "id": 711336, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-vs-hulk-1/4000-711336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711335/", + "id": 711335, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-morbius-1/4000-711335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711334/", + "id": 711334, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-sinister-secret-of-spider-mans-/4000-711334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711333/", + "id": 711333, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-3/4000-711333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711329/", + "id": 711329, + "name": "Chapter Four: Brothers In Arms", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-4-chapter-four-brothers-in-a/4000-711329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711316/", + "id": 711316, + "name": "Feast or Famine: Part One", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-7-feast-or-famine/4000-711316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711312/", + "id": 711312, + "name": "Hunted Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-23-hunted-epilogue/4000-711312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710700/", + "id": 710700, + "name": "Chapter Five: The World Tree Is Burning", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-5-chapter-five-the-world-tree-is/4000-710700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710698/", + "id": 710698, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-armor-1/4000-710698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710697/", + "id": 710697, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-new-spider-man-1/4000-710697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710696/", + "id": 710696, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-1/4000-710696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710693/", + "id": 710693, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-start-here-sampler-1/4000-710693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710686/", + "id": 710686, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-3/4000-710686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714672/", + "id": 714672, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-complete-collection-2-vol-2/4000-714672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714668/", + "id": 714668, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-monster-sized-edition-1-hc/4000-714668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714203/", + "id": 714203, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-classic-hulk-1/4000-714203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713945/", + "id": 713945, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-its-always-darkest-before-th/4000-713945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713942/", + "id": 713942, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/thanos-by-donny-cates-1-hc/4000-713942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713516/", + "id": 713516, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-eventpool-1-volume-9/4000-713516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713509/", + "id": 713509, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-j-scott-campbell-the-complete-cov/4000-713509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713503/", + "id": 713503, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-secrets-and-rumor/4000-713503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713502/", + "id": 713502, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-00s-hitting-the-headlines-1-/4000-713502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713060/", + "id": 713060, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-the-x-men-clear-and-present-dangers-/4000-713060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737995/", + "id": 737995, + "name": "Hombre de Hielo 3", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hombre-de-hielo-3-hombre-de-hielo-3/4000-737995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717828/", + "id": 717828, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-8/4000-717828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712246/", + "id": 712246, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-24/4000-712246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710123/", + "id": 710123, + "name": "Why We Fight Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-spider-man-and-the-league-of-rea/4000-710123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710112/", + "id": 710112, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-3/4000-710112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710100/", + "id": 710100, + "name": "Hunted Part 6", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-22-hunted-part-6/4000-710100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709738/", + "id": 709738, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-strikeforce-the-land-of-giants-1/4000-709738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709732/", + "id": 709732, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-what-if-s/4000-709732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709714/", + "id": 709714, + "name": "The Man In the Mountain", + "site_detail_url": "https://comicvine.gamespot.com/avengers-19-the-man-in-the-mountain/4000-709714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709712/", + "id": 709712, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-1-facsimile-edition-1/4000-709712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709219/", + "id": 709219, + "name": "Why We Fight Part 1 of 3", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-spider-man-and-the-league-of-rea/4000-709219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709218/", + "id": 709218, + "name": "Chapter Four: The Stand At the Black Bridge", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-4-chapter-four-the-stand-at-the-/4000-709218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709209/", + "id": 709209, + "name": "Chapter Three: Our Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-3-chapter-three-our-secret-w/4000-709209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709199/", + "id": 709199, + "name": "Know Fear Part 5", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-5-know-fear-part-5/4000-709199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709195/", + "id": 709195, + "name": "Hunted Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-21-hunted-part-5/4000-709195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708143/", + "id": 708143, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-2/4000-708143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708139/", + "id": 708139, + "name": "The Manipulator, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-50-the-manipulator-part-3/4000-708139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708133/", + "id": 708133, + "name": "Spider-Bite", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-6-spider-bite/4000-708133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707848/", + "id": 707848, + "name": "[Untitled]; Friendly Neighborhood Rivalry!", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2019-spider-manvenom-1-untitle/4000-707848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707534/", + "id": 707534, + "name": "Chapter Three: The Quest For Thor", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-3-chapter-three-the-quest-for-th/4000-707534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707528/", + "id": 707528, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-the-incre/4000-707528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707517/", + "id": 707517, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-2/4000-707517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707503/", + "id": 707503, + "name": "Hunted; Mother", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-20hu-hunted-mother/4000-707503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712564/", + "id": 712564, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-dark-phoenix-saga-1-tpb/4000-712564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712542/", + "id": 712542, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-the-complete-collection-1-tpb/4000-712542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712540/", + "id": 712540, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-bad-dream-1-volume-7/4000-712540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712535/", + "id": 712535, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-the-world-outside-your-window-1-hctp/4000-712535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711952/", + "id": 711952, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-metamorphosis-1-tpb/4000-711952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711939/", + "id": 711939, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-gauntlet-the-complete-colle/4000-711939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711938/", + "id": 711938, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-the-goblin-live/4000-711938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711737/", + "id": 711737, + "name": "Book 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-a-new-beginning-1-book-1/4000-711737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711330/", + "id": 711330, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-real-thing-1-tpb/4000-711330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711326/", + "id": 711326, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-spider-man-1/4000-711326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711325/", + "id": 711325, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-humberto-ramos-spider-/4000-711325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711324/", + "id": 711324, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-spectacular-spider-man-2-vo/4000-711324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710692/", + "id": 710692, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-prelude-1-tpb/4000-710692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710685/", + "id": 710685, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-1-tpb/4000-710685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710684/", + "id": 710684, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-punisher-by-garth-ennis-the-complet/4000-710684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710683/", + "id": 710683, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-skottie-young-1-hc/4000-710683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710677/", + "id": 710677, + "name": "Volume 20", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-purgatory-and-paradise-1/4000-710677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710675/", + "id": 710675, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-agony-and-ecstasy-1-tpb/4000-710675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710669/", + "id": 710669, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-sinister-intentions-1/4000-710669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716737/", + "id": 716737, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-7/4000-716737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713394/", + "id": 713394, + "name": "Die 1960er: Aufbruch in eine neue Zeit", + "site_detail_url": "https://comicvine.gamespot.com/80-jahre-marvel-3-die-1960er-aufbruch-in-eine-neue/4000-713394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706960/", + "id": 706960, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-prelude-2/4000-706960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706955/", + "id": 706955, + "name": "Power & Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-42-power-and-responsi/4000-706955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706952/", + "id": 706952, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-4/4000-706952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706940/", + "id": 706940, + "name": "Hunted Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-20-hunted-part-4/4000-706940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706427/", + "id": 706427, + "name": "Chapter Two: The Midgard Massacre", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-2-chapter-two-the-midgard-massac/4000-706427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706425/", + "id": 706425, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-thanos-the-final-battle-1/4000-706425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706418/", + "id": 706418, + "name": "Chapter Two: Our Fathers' Way", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-2-chapter-two-our-fathers-wa/4000-706418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706411/", + "id": 706411, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-2/4000-706411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706402/", + "id": 706402, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-252-facsimile-edition-1/4000-706402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706401/", + "id": 706401, + "name": "Hunted", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-19hu-hunted/4000-706401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706391/", + "id": 706391, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-7/4000-706391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705936/", + "id": 705936, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-43/4000-705936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705933/", + "id": 705933, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-ronin-1/4000-705933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705932/", + "id": 705932, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-1/4000-705932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705927/", + "id": 705927, + "name": "The Manipulator, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-49-the-manipulator-part-2/4000-705927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705919/", + "id": 705919, + "name": "Not Running", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-5-not-running/4000-705919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705912/", + "id": 705912, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/asgardians-of-the-galaxy-8/4000-705912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705911/", + "id": 705911, + "name": "Hunted Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-19-hunted-part-3/4000-705911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705490/", + "id": 705490, + "name": "Chapter One: The Last Realm Standing", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-1-chapter-one-the-last-realm-sta/4000-705490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705487/", + "id": 705487, + "name": "Cosmic Battle on the Edge of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-thanos-vs-the-marvel-unive/4000-705487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705480/", + "id": 705480, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-1/4000-705480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705479/", + "id": 705479, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-web-design/4000-705479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705471/", + "id": 705471, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history-2/4000-705471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705462/", + "id": 705462, + "name": "Hunted", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18hu-hunted/4000-705462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710116/", + "id": 710116, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-mysterio-1-tpb/4000-710116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709979/", + "id": 709979, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-classic-spider-man-1/4000-709979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709724/", + "id": 709724, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-inner-demons-1-volum/4000-709724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709196/", + "id": 709196, + "name": "Volume 19", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-assassin-nation/4000-709196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708313/", + "id": 708313, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-gratis-comic-tag-2019-1/4000-708313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708131/", + "id": 708131, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-80s-awesome-evolutions-1-tpb/4000-708131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708127/", + "id": 708127, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-j-michael-straczynski-1-/4000-708127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707504/", + "id": 707504, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-lifetime-achiev/4000-707504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921123/", + "id": 921123, + "name": "El asombroso Spiderman: El superhéroe cósmico no mutante", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-95-el-asombroso-spiderman-el-superhe/4000-921123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920935/", + "id": 920935, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hc-spiderman-el-alma-del-cazador-1/4000-920935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883304/", + "id": 883304, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-omnibus-4-volume-four/4000-883304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714567/", + "id": 714567, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-6/4000-714567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712571/", + "id": 712571, + "name": "SC/HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-verrat-1-schc/4000-712571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704828/", + "id": 704828, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-prelude-1/4000-704828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704827/", + "id": 704827, + "name": "The Manipulator, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-48-the-manipulator-part-1/4000-704827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704818/", + "id": 704818, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-3/4000-704818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704802/", + "id": 704802, + "name": "Hunted Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18-hunted-part-2/4000-704802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703952/", + "id": 703952, + "name": "Chapter One: The War At Home", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-1-chapter-one-the-war-at-hom/4000-703952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703945/", + "id": 703945, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war-1/4000-703945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703939/", + "id": 703939, + "name": "Mother of Exiles: Part Four", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-4-mother-of-exile/4000-703939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703064/", + "id": 703064, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-47/4000-703064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703044/", + "id": 703044, + "name": "Hunted Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-17-hunted-part-1/4000-703044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702470/", + "id": 702470, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-spider-sen/4000-702470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702466/", + "id": 702466, + "name": "We Only Meet At Funerals", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-14-we-only-meet-at-funerals/4000-702466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702460/", + "id": 702460, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history-1/4000-702460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702453/", + "id": 702453, + "name": "Hunted", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16hu-hunted/4000-702453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732544/", + "id": 732544, + "name": "Pizza", + "site_detail_url": "https://comicvine.gamespot.com/the-beano-3982-pizza/4000-732544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706961/", + "id": 706961, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-light-in-the-darkness-1-tpb/4000-706961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706417/", + "id": 706417, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-vs-venom-2099-1-tpb/4000-706417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705928/", + "id": 705928, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-road-trip-1-volume-8/4000-705928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705920/", + "id": 705920, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/iceman-amazing-friends-1-volume-3/4000-705920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705915/", + "id": 705915, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-the-complete-collection-1-tpb/4000-705915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705869/", + "id": 705869, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-encyclopedia-new-edition-1-hc/4000-705869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705484/", + "id": 705484, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spidey-freshman-year-1-tpb/4000-705484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705478/", + "id": 705478, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-endgame-prelude-1-tpb/4000-705478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701927/", + "id": 701927, + "name": "Hunted Prelude", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-hunted-prelude/4000-701927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701325/", + "id": 701325, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-earths-mightiest-her/4000-701325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701316/", + "id": 701316, + "name": "Avengers: Endgame Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-untitled-prelude-3-avengers-endga/4000-701316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701310/", + "id": 701310, + "name": "Mother of Exiles: Part Three", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-3-mother-of-exile/4000-701310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701307/", + "id": 701307, + "name": "So Bright This Star", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-1-facsimile-edition-1-so-bright-this-star/4000-701307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700691/", + "id": 700691, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-41/4000-700691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700685/", + "id": 700685, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-46/4000-700685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700674/", + "id": 700674, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-black-widow-1/4000-700674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700673/", + "id": 700673, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-web-of-int/4000-700673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700658/", + "id": 700658, + "name": "Family Matters Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-15-family-matters-part-two/4000-700658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700152/", + "id": 700152, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-spider-man-and-ms-ma/4000-700152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700151/", + "id": 700151, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-ms-marvel-1/4000-700151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704835/", + "id": 704835, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-with-great-power-1-tpb/4000-704835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704833/", + "id": 704833, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-magazine-1/4000-704833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704821/", + "id": 704821, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-of-super-heroes-1-sc/4000-704821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704811/", + "id": 704811, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-minibus-3-volume-3/4000-704811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704803/", + "id": 704803, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-new-ways-to-live-1-tpb/4000-704803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704158/", + "id": 704158, + "name": "Tome 4. Inhumains vs X-Men", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-x-men-4-tome-4-inhumains-vs-x-men/4000-704158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703961/", + "id": 703961, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-onslaught-aftermath-1-tpb/4000-703961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931914/", + "id": 931914, + "name": "Il furto part 2: Finale; Ai confini di Spider-Geddon: Jimster e T-Bird; Controlli", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-718-il-furto-part-2-finale-ai-confini-/4000-931914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703054/", + "id": 703054, + "name": "Volume 14", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-return-of-the-ghost-1-vol/4000-703054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703052/", + "id": 703052, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-heroes-return-the-complete-collecti/4000-703052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703049/", + "id": 703049, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-60s-spider-man-meets-the-mar/4000-703049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703048/", + "id": 703048, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-companion-1-tpb/4000-703048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702465/", + "id": 702465, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-fourever-1-volume-1/4000-702465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743378/", + "id": 743378, + "name": "Immunisée", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-4-immunisee/4000-743378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711194/", + "id": 711194, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-collection-spider-man-1/4000-711194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711010/", + "id": 711010, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-5/4000-711010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699412/", + "id": 699412, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-conan-the-barbarian-walked-/4000-699412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699408/", + "id": 699408, + "name": "Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-45-road-trip/4000-699408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699401/", + "id": 699401, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-20th-6/4000-699401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699389/", + "id": 699389, + "name": "Family Matters Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-14-family-matters-part-one/4000-699389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698612/", + "id": 698612, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-14-facsimile-edition-1/4000-698612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698604/", + "id": 698604, + "name": "Mother of Exiles: Part Two", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-2-mother-of-exile/4000-698604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697643/", + "id": 697643, + "name": "Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-44-road-trip/4000-697643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697624/", + "id": 697624, + "name": "Lifetime Achievement Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-13-lifetime-achievement-par/4000-697624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696953/", + "id": 696953, + "name": "Spider-Geddon Part 4: Like Stars From the Sky", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-ghost-spider-4-spider-geddon-part-4-li/4000-696953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696948/", + "id": 696948, + "name": "Avengers: Endgame Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-untitled-prelude-2-avengers-endga/4000-696948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696943/", + "id": 696943, + "name": "Mother of Exiles: Part One; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-1-mother-of-exile/4000-696943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696360/", + "id": 696360, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-across-the/4000-696360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701952/", + "id": 701952, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-1-tpb/4000-701952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701941/", + "id": 701941, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-punisher-by-peyer-and-gutierrez-tax/4000-701941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701299/", + "id": 701299, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-friends-and-foe/4000-701299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700683/", + "id": 700683, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-1-tpb/4000-700683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700678/", + "id": 700678, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-spider-ged/4000-700678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700154/", + "id": 700154, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/venomnibus-2-volume-2/4000-700154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700140/", + "id": 700140, + "name": "Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-deluxe-edition-1-infinity-ga/4000-700140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708985/", + "id": 708985, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-4/4000-708985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697838/", + "id": 697838, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-18/4000-697838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695921/", + "id": 695921, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-5/4000-695921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695665/", + "id": 695665, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-frightful-four-1/4000-695665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695660/", + "id": 695660, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-5/4000-695660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695655/", + "id": 695655, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/seasons-beatings-1/4000-695655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695644/", + "id": 695644, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-frost-giants-among-us/4000-695644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695623/", + "id": 695623, + "name": "Lifetime Achievement Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-12-lifetime-achievement-par/4000-695623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695159/", + "id": 695159, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-dragon-man-1/4000-695159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694930/", + "id": 694930, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-iron-fist-1/4000-694930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694923/", + "id": 694923, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-girls-3/4000-694923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694922/", + "id": 694922, + "name": "Breathe", + "site_detail_url": "https://comicvine.gamespot.com/spider-force-3-breathe/4000-694922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694919/", + "id": 694919, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-313/4000-694919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694917/", + "id": 694917, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-1/4000-694917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694912/", + "id": 694912, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-wedding-special-1/4000-694912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694901/", + "id": 694901, + "name": "Lifetime Achievement Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-11-lifetime-achievement-par/4000-694901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694144/", + "id": 694144, + "name": "Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-43-road-trip/4000-694144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694143/", + "id": 694143, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-handbook-1/4000-694143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694139/", + "id": 694139, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/merry-x-men-holiday-special-1/4000-694139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694137/", + "id": 694137, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-untitled-prelude-1/4000-694137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699403/", + "id": 699403, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-time-and-again-1-tpb/4000-699403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699392/", + "id": 699392, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-monica-rambeau-1-tpb/4000-699392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697839/", + "id": 697839, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-19/4000-697839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697649/", + "id": 697649, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-the-complete-collection-1-vol-1/4000-697649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697640/", + "id": 697640, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-11-volume-11/4000-697640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696951/", + "id": 696951, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-epic-collection-this-woman-this-warrior-/4000-696951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696949/", + "id": 696949, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-1-tpb/4000-696949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696947/", + "id": 696947, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-4-volume-4/4000-696947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696883/", + "id": 696883, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/alter-ego-156/4000-696883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-737996/", + "id": 737996, + "name": "Instinto asesino", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-domino-1-instinto-asesino/4000-737996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708983/", + "id": 708983, + "name": "Volume 5: 1985-1986", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-708983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707385/", + "id": 707385, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-3/4000-707385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696366/", + "id": 696366, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-ben-reilly-omnibus-1-volume-1/4000-696366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696365/", + "id": 696365, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-edge-of-spider-geddon-1-tpb/4000-696365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696353/", + "id": 696353, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-tomorrows-heroes-omnibus-1/4000-696353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695871/", + "id": 695871, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17/4000-695871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695151/", + "id": 695151, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-16/4000-695151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693473/", + "id": 693473, + "name": "Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-42-road-trip/4000-693473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693471/", + "id": 693471, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-girls-2/4000-693471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693461/", + "id": 693461, + "name": "Irreplaceable", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-4-irreplaceable/4000-693461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693454/", + "id": 693454, + "name": "Heist Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-10-heist-part-three/4000-693454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692566/", + "id": 692566, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-carnage-born-1/4000-692566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692558/", + "id": 692558, + "name": "In Gog We Trust!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-enter-the-spider-verse-1-in-gog-we-trus/4000-692558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692557/", + "id": 692557, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-4/4000-692557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692556/", + "id": 692556, + "name": "Scream", + "site_detail_url": "https://comicvine.gamespot.com/spider-force-2-scream/4000-692556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692549/", + "id": 692549, + "name": "Ice Age", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-37-ice-age/4000-692549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692090/", + "id": 692090, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/vault-of-spiders-2/4000-692090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692078/", + "id": 692078, + "name": "Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-41-road-trip/4000-692078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692075/", + "id": 692075, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-312/4000-692075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692072/", + "id": 692072, + "name": "The Peacekeepers", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-marvel-prelude-1-the-peacekeepers/4000-692072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692068/", + "id": 692068, + "name": "Family Reunion", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-3-family-reunion/4000-692068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692056/", + "id": 692056, + "name": "Heist Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-9-heist-part-two/4000-692056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691396/", + "id": 691396, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-x-men-1/4000-691396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691391/", + "id": 691391, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-3/4000-691391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691387/", + "id": 691387, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-mealti/4000-691387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691380/", + "id": 691380, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/iceman-3/4000-691380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695661/", + "id": 695661, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-companion-1-tpb/4000-695661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695645/", + "id": 695645, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-frank-miller-omnibus-1-hc/4000-695645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695642/", + "id": 695642, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-daredevil-by-bendis-jenkins-gale-an/4000-695642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695626/", + "id": 695626, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-carol-danvers-the-ms-marvel-years-3/4000-695626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695583/", + "id": 695583, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-into-the-spider-verse-the-official-movi/4000-695583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695582/", + "id": 695582, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-into-the-spider-verse-the-art-of-the-mo/4000-695582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707817/", + "id": 707817, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/le-journal-de-mickey-3469/4000-707817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694925/", + "id": 694925, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-demolition-days-1-tpb/4000-694925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694916/", + "id": 694916, + "name": "Volume 20", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-20-volum/4000-694916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694915/", + "id": 694915, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-punisher-by-garth-ennis-the-complet/4000-694915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694902/", + "id": 694902, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-9-volume-9/4000-694902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694863/", + "id": 694863, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-contest-of-champions-the-art-of-the-battler/4000-694863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694138/", + "id": 694138, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-john-byrne-omnibus-2-volume-2/4000-694138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694134/", + "id": 694134, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/jeph-loeb-and-tim-sale-yellow-blue-gray-and-white-/4000-694134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694126/", + "id": 694126, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-1-tpb/4000-694126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694125/", + "id": 694125, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-omnibus-1-hc/4000-694125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704968/", + "id": 704968, + "name": "Cross Time Capers!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-9-cross-time-capers/4000-704968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703260/", + "id": 703260, + "name": "Vicolo cieco", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-371-vicolo-cieco/4000-703260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702760/", + "id": 702760, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-2/4000-702760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695152/", + "id": 695152, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-13/4000-695152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695150/", + "id": 695150, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-15/4000-695150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692672/", + "id": 692672, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-9/4000-692672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692671/", + "id": 692671, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-8/4000-692671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691824/", + "id": 691824, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14/4000-691824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691157/", + "id": 691157, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-12/4000-691157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690820/", + "id": 690820, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/vault-of-spiders-1/4000-690820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690818/", + "id": 690818, + "name": "15 Minutes", + "site_detail_url": "https://comicvine.gamespot.com/spider-force-1-15-minutes/4000-690818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689880/", + "id": 689880, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-the-silver-surfer-possessed/4000-689880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689879/", + "id": 689879, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-kraven-the-hunter-had-kille/4000-689879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689875/", + "id": 689875, + "name": "Spider-Geddon Part 1: Uncharted", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-ghost-spider-1-spider-geddon-part-1-un/4000-689875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689874/", + "id": 689874, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-girls-1/4000-689874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689873/", + "id": 689873, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-2/4000-689873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689867/", + "id": 689867, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-hallow/4000-689867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689858/", + "id": 689858, + "name": "Heist Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-8-heist-part-one/4000-689858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689063/", + "id": 689063, + "name": "What If Marvel Comics Went Metal? With Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/what-if-ghost-rider-1-what-if-marvel-comics-went-m/4000-689063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689061/", + "id": 689061, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-annual-1/4000-689061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689058/", + "id": 689058, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-the-alien-costume-had-posse/4000-689058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689051/", + "id": 689051, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-311/4000-689051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689048/", + "id": 689048, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombie-1/4000-689048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688331/", + "id": 688331, + "name": "Peter Parker Became The Punisher?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-the-punisher-1-peter-parker-became-the-pun/4000-688331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688329/", + "id": 688329, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-37/4000-688329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688328/", + "id": 688328, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-spider-man-had-rescued-gwen/4000-688328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688325/", + "id": 688325, + "name": "My Two Dads, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-40-my-two-dads-part-4/4000-688325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688324/", + "id": 688324, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-1/4000-688324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688309/", + "id": 688309, + "name": "A Trivial Pursuit Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-7-a-trivial-pursuit-part-tw/4000-688309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687029/", + "id": 687029, + "name": "Flash Thompson Became Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-1-flash-thompson-became-spider-/4000-687029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687026/", + "id": 687026, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-spider-man-1/4000-687026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687025/", + "id": 687025, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-jane-foster-had-found-the-h/4000-687025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687013/", + "id": 687013, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-sleepwalker-1/4000-687013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693479/", + "id": 693479, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-marauders-1-tpb/4000-693479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693474/", + "id": 693474, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-my-two-dads-1-volume-7/4000-693474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693455/", + "id": 693455, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-back-to-basics-/4000-693455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693312/", + "id": 693312, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man-1/4000-693312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692559/", + "id": 692559, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-1-tpb/4000-692559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692551/", + "id": 692551, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-coming-hom/4000-692551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692539/", + "id": 692539, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-are-you-okay-an/4000-692539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692087/", + "id": 692087, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-squirrels-fall-like-d/4000-692087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692082/", + "id": 692082, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-men-1-tpb/4000-692082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692081/", + "id": 692081, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-gwen-1-tpb/4000-692081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692080/", + "id": 692080, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-miles-morales-1-tpb/4000-692080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692079/", + "id": 692079, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-fearsome-foes-1-tpb/4000-692079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692073/", + "id": 692073, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-remastered-edition-1-tpb/4000-692073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691385/", + "id": 691385, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-by-joe-quesada-omnibus-1-hc/4000-691385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691379/", + "id": 691379, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/domino-killer-instinct-1-volume-1/4000-691379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691287/", + "id": 691287, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13/4000-691287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690934/", + "id": 690934, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-killt-schon-wieder-das-marvel-universum-1/4000-690934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703255/", + "id": 703255, + "name": "Il segreto di Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-369-il-segreto-di-iron-man/4000-703255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686397/", + "id": 686397, + "name": "Claws!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-hellcat-1-claws/4000-686397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686393/", + "id": 686393, + "name": "My Two Dads, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-39-my-two-dads-part-3/4000-686393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686392/", + "id": 686392, + "name": "New Players; Check In", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-0-new-players-check-in/4000-686392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686389/", + "id": 686389, + "name": "Finale", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-310-finale/4000-686389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686384/", + "id": 686384, + "name": "Being Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-10-being-fantastic/4000-686384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686377/", + "id": 686377, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-geddon-4/4000-686377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686370/", + "id": 686370, + "name": "A Trivial Pursuit Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-6-a-trivial-pursuit-part-on/4000-686370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685864/", + "id": 685864, + "name": "The Punisher Strikes Twice", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-the-fir/4000-685864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685851/", + "id": 685851, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-first-/4000-685851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685842/", + "id": 685842, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-geddon-3/4000-685842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685834/", + "id": 685834, + "name": "Weird Science", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-23-weird-scienc/4000-685834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685832/", + "id": 685832, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-annual-1/4000-685832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684916/", + "id": 684916, + "name": "Cracked Hourglass - Part Two", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-309-cracke/4000-684916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684909/", + "id": 684909, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-3/4000-684909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684905/", + "id": 684905, + "name": "Fourever Part Two: Where We Make Out Stand", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2-fourever-part-two-where-we-make-o/4000-684905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684899/", + "id": 684899, + "name": "Back To Basics Part Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-5-back-to-basics-part-five/4000-684899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683841/", + "id": 683841, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-20th-anniversary-dar/4000-683841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683835/", + "id": 683835, + "name": "My Two Dads, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-38-my-two-dads-part-2/4000-683835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683825/", + "id": 683825, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-3/4000-683825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690815/", + "id": 690815, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-the-complete-collection-1-vol-1/4000-690815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690812/", + "id": 690812, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-blind-spot-1-tpb/4000-690812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690365/", + "id": 690365, + "name": "Hero Or Menace?", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-spider-man-halloween-comicfest-1-hero/4000-690365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689881/", + "id": 689881, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/wakanda-forever-1-tpb/4000-689881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689866/", + "id": 689866, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-to-wakanda-and-beyond/4000-689866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689862/", + "id": 689862, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-1-hc/4000-689862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688559/", + "id": 688559, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-688559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689055/", + "id": 689055, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-maniron-man-marvel-team-up-1-tpb/4000-689055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688335/", + "id": 688335, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-magneto-war-1-tpb/4000-688335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688323/", + "id": 688323, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/quasar-cosmos-in-collision-1-tpb/4000-688323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688142/", + "id": 688142, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1634/4000-688142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687022/", + "id": 687022, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-tomb-of-dracula-the-complete-collection-2-volu/4000-687022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687015/", + "id": 687015, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-cinematic-universe-the-marvel-comics-om/4000-687015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686781/", + "id": 686781, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvelocity-the-marvel-comics-art-of-alex-ross-1-h/4000-686781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743232/", + "id": 743232, + "name": "Macht’s noch einmal... X-Men !", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-3-machts-noch-einmal-x-men/4000-743232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703254/", + "id": 703254, + "name": "Il ritorno dei New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-368-il-ritorno-dei-new-avengers/4000-703254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688491/", + "id": 688491, + "name": "No More Jokes", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-11-no-more-jokes/4000-688491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685126/", + "id": 685126, + "name": "Spidey vs. Deadpool!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-10-spidey-vs-deadpool/4000-685126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682659/", + "id": 682659, + "name": "Being Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-9-being-fantastic/4000-682659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682658/", + "id": 682658, + "name": "Blind Spot: Chapter 3; Blind Spot: Chapter 4", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-2-blind-spot-chapter-3-blind-spot-ch/4000-682658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680730/", + "id": 680730, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-inferno-1/4000-680730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680718/", + "id": 680718, + "name": "Back To Basics Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-4-back-to-basics-part-four/4000-680718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680001/", + "id": 680001, + "name": "Cracked Hourglass - Part One", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-308-cracke/4000-680001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679996/", + "id": 679996, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-2/4000-679996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679816/", + "id": 679816, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-6/4000-679816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679421/", + "id": 679421, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-35/4000-679421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679418/", + "id": 679418, + "name": "My Two Dads, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-37-my-two-dads-part-1/4000-679418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679413/", + "id": 679413, + "name": "Logan's Secret", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-4-logans-secr/4000-679413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679404/", + "id": 679404, + "name": "Weird Science", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-22-weird-scienc/4000-679404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679403/", + "id": 679403, + "name": "Back To Basics Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-3-back-to-basics-part-three/4000-679403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-678540/", + "id": 678540, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-5/4000-678540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-678514/", + "id": 678514, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mad-magazine-3/4000-678514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685833/", + "id": 685833, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-red-goblin-1-hctpb/4000-685833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685713/", + "id": 685713, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/chief-wiggums-felonious-funnies-1/4000-685713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684928/", + "id": 684928, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-tooth-and-claw-1-tpb/4000-684928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684927/", + "id": 684927, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-planet-of-the-symbiotes-1-tpb/4000-684927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684925/", + "id": 684925, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-adventures-1-tpb/4000-684925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684911/", + "id": 684911, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-daredevil-by-smith-and-quesada-guar/4000-684911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683836/", + "id": 683836, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-venom-omnibus-1-hc/4000-683836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683828/", + "id": 683828, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-trilogy-omnibus-alpha-1-hc/4000-683828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683824/", + "id": 683824, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-venom-1/4000-683824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-934005/", + "id": 934005, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-strike-force-prequel-1/4000-934005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825575/", + "id": 825575, + "name": "Nivel de alerta rojo", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-143-nivel-de-alerta-rojo/4000-825575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-744295/", + "id": 744295, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-die-dark-phoenix-saga-1/4000-744295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694049/", + "id": 694049, + "name": "Deadpool Beginnings", + "site_detail_url": "https://comicvine.gamespot.com/the-all-killer-no-filler-deadpool-collection-1-dea/4000-694049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682968/", + "id": 682968, + "name": "Edge of Venomverse Begins!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-9-edge-of-venomverse-be/4000-682968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680166/", + "id": 680166, + "name": "The Hunt Begins! Venom is the Prey!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-7-the-hunt-begins-venom/4000-680166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677982/", + "id": 677982, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-new-fantastic-four-1/4000-677982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677981/", + "id": 677981, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-what-if-1/4000-677981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677961/", + "id": 677961, + "name": "Back To Basics Part Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-2-back-to-basics-part-two/4000-677961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677468/", + "id": 677468, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-4/4000-677468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677294/", + "id": 677294, + "name": "The Greatest Fight Of Your Life", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-36-the-greatest-fight-of-your-l/4000-677294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677290/", + "id": 677290, + "name": "No More - Part Four", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-307-no-mor/4000-677290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677286/", + "id": 677286, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-ms-marvel-and-the-tel/4000-677286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677282/", + "id": 677282, + "name": "Blind Spot: Chapter 1; Blind Spot: Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-1-blind-spot-chapter-1-blind-spot-ch/4000-677282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677280/", + "id": 677280, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-5/4000-677280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676715/", + "id": 676715, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-34/4000-676715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676700/", + "id": 676700, + "name": "The Database ", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-3-the-databas/4000-676700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676694/", + "id": 676694, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/daredevil-605/4000-676694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676691/", + "id": 676691, + "name": "Weird Science", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-21-weird-scienc/4000-676691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676689/", + "id": 676689, + "name": "Back To Basics Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-1-back-to-basics-part-one/4000-676689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675993/", + "id": 675993, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-wedding-of-sue-a/4000-675993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675987/", + "id": 675987, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-35/4000-675987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688558/", + "id": 688558, + "name": "Steve Ditko Tribute Issue", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8-steve-ditko-tribute-i/4000-688558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682663/", + "id": 682663, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-darkness-and-light-1-tpb/4000-682663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682656/", + "id": 682656, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-behold-galactus-1-hctpb/4000-682656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682647/", + "id": 682647, + "name": "Volume 18", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-venom-1-volume-/4000-682647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680729/", + "id": 680729, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-whos-a-good-boy-1-tpb/4000-680729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680005/", + "id": 680005, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-and-the-human-torch-by-dan-slott-1-tpb/4000-680005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680002/", + "id": 680002, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-amazing-fa/4000-680002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679994/", + "id": 679994, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-human-torch-and-the-thing-strange-tales-the-co/4000-679994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679888/", + "id": 679888, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-digest-8/4000-679888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679660/", + "id": 679660, + "name": "Herz der Finsternis", + "site_detail_url": "https://comicvine.gamespot.com/venom-2-herz-der-finsternis/4000-679660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679419/", + "id": 679419, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-last-hunt-deluxe-edition-1-hc/4000-679419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679414/", + "id": 679414, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-epic-collection-cry-monster-1-vo/4000-679414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825574/", + "id": 825574, + "name": "Venom Inc. Partes 1-6", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-142-venom-inc-partes-1-6/4000-825574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709769/", + "id": 709769, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/mein-erster-comic-1-spider-man/4000-709769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700301/", + "id": 700301, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-the-complete-collection-2-vol-/4000-700301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-678528/", + "id": 678528, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-carol-danvers-the-ms-marvel-years-2/4000-678528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-678502/", + "id": 678502, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/batman-66-omnibus-1-hc/4000-678502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677570/", + "id": 677570, + "name": "Venom is on the Prowl!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-6-venom-is-on-the-prowl/4000-677570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676463/", + "id": 676463, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-676463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675152/", + "id": 675152, + "name": "Coming Home - Part One", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-306-coming/4000-675152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675143/", + "id": 675143, + "name": "Chasing Your Monster", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-7-chasing-your-monster/4000-675143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675142/", + "id": 675142, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-webs-and-arrows-and-a/4000-675142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675133/", + "id": 675133, + "name": "Chapter One: A Strange Little Birdie", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-wakanda-forever-1-chapter-one-a/4000-675133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674141/", + "id": 674141, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-astonishing-ant-man-incredible-/4000-674141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674135/", + "id": 674135, + "name": "Paper Trail; Whatever Happened To the Spider-Man For All Seasons", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-annual-1-p/4000-674135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674120/", + "id": 674120, + "name": "Weird Science", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-20-weird-scienc/4000-674120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674119/", + "id": 674119, + "name": "There For You", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-801-there-for-you/4000-674119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673037/", + "id": 673037, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ant-man-and-the-wasp-til-death-do-u/4000-673037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673036/", + "id": 673036, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ant-man-and-the-wasp-on-the-trail-o/4000-673036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673032/", + "id": 673032, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-34/4000-673032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673028/", + "id": 673028, + "name": "No More - Part Two", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-305-no-mor/4000-673028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673019/", + "id": 673019, + "name": "Angry Powered Parents on a Submarine", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-2-angry-power/4000-673019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668788/", + "id": 668788, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomized-5/4000-668788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668783/", + "id": 668783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-240/4000-668783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677984/", + "id": 677984, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venomized-1-tpb/4000-677984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677295/", + "id": 677295, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-wlmd-1-volume-6/4000-677295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676690/", + "id": 676690, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-behind-the-scenes-edition-1/4000-676690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675979/", + "id": 675979, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-omnibus-2-volume-2/4000-675979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675861/", + "id": 675861, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-3/4000-675861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825573/", + "id": 825573, + "name": "La carrera de las armas Partes 1-3", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-141-la-carrera-de-las-armas/4000-825573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704115/", + "id": 704115, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-x-men-1/4000-704115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703280/", + "id": 703280, + "name": "Inmune", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-lobezna-4-inmune/4000-703280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687268/", + "id": 687268, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-complete-collection-1-vol-1/4000-687268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679787/", + "id": 679787, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/john-byrnes-x-men-artifact-edition-1-volume-8/4000-679787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674549/", + "id": 674549, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-history-of-comics-comics-for-all-1-volu/4000-674549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674335/", + "id": 674335, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-674335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672502/", + "id": 672502, + "name": "Spider-Slam!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3-spider-slam/4000-672502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671336/", + "id": 671336, + "name": "Punisher: War Criminal Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-225-punisher-war-criminal-part-two/4000-671336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671333/", + "id": 671333, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-the-spider-doctor-1/4000-671333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671326/", + "id": 671326, + "name": "Parker Summer Vacation", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-19-parker-summe/4000-671326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671325/", + "id": 671325, + "name": "Go Down Swinging Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-800-go-down-swinging-part-4/4000-671325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670755/", + "id": 670755, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-33/4000-670755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670742/", + "id": 670742, + "name": "Strange Way To Go Finale", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-390-strange-way-to-go-finale/4000-670742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670112/", + "id": 670112, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/daredevil-602/4000-670112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669458/", + "id": 669458, + "name": "Oldies Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-32-oldies-part-3/4000-669458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669456/", + "id": 669456, + "name": "No More - Part One", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-304-no-mor/4000-669456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669451/", + "id": 669451, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-1/4000-669451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669448/", + "id": 669448, + "name": "Killer Instinct Part Two: Topaz", + "site_detail_url": "https://comicvine.gamespot.com/domino-2-killer-instinct-part-two-topaz/4000-669448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667665/", + "id": 667665, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomized-4/4000-667665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667662/", + "id": 667662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-infinity-war-1/4000-667662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667661/", + "id": 667661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-infinity-incoming-1/4000-667661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667659/", + "id": 667659, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thanos-annual-1/4000-667659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667653/", + "id": 667653, + "name": "Amazing Fantasy - Part Three", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-303-amazin/4000-667653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-666817/", + "id": 666817, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomized-3/4000-666817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-666808/", + "id": 666808, + "name": "Spider-Man and the Stolen Vibranium", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-1-spider-man-and-the-/4000-666808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-666800/", + "id": 666800, + "name": "No Surrender Part 15", + "site_detail_url": "https://comicvine.gamespot.com/avengers-689-no-surrender-part-15/4000-666800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-666799/", + "id": 666799, + "name": "Fast Times At Midtown High Part Three", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-18-fast-times-a/4000-666799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-666798/", + "id": 666798, + "name": "Go Down Swinging Part 3: The Ties That Bind", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-799-go-down-swinging-part-3/4000-666798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665924/", + "id": 665924, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-infinity-gauntlet-1/4000-665924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665920/", + "id": 665920, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-31/4000-665920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665903/", + "id": 665903, + "name": "No Surrender Part 14", + "site_detail_url": "https://comicvine.gamespot.com/avengers-688-no-surrender-part-14/4000-665903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664930/", + "id": 664930, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomized-1/4000-664930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664915/", + "id": 664915, + "name": "Fate of the Four Part 5: Doom's Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-5-fate-of-the-four-part-5-dooms-/4000-664915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664905/", + "id": 664905, + "name": "Go Down Swinging Part 2: The Rope-A-Dope", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-798-go-down-swinging-part-2/4000-664905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675139/", + "id": 675139, + "name": "Volume 21", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-new-fantastic-f/4000-675139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675135/", + "id": 675135, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-surrender-1-hctpb/4000-675135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674121/", + "id": 674121, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-8-volume-8/4000-674121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674000/", + "id": 674000, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-2/4000-674000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-673013/", + "id": 673013, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dakota-north-design-for-dying-1-tpb/4000-673013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672288/", + "id": 672288, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-omnibus-1-hc/4000-672288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672118/", + "id": 672118, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out-1/4000-672118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825572/", + "id": 825572, + "name": "El más buscado", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-140-el-mas-buscado/4000-825572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695503/", + "id": 695503, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-bob-layton-artist-select-series-1-hc/4000-695503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683218/", + "id": 683218, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-4-volume-4/4000-683218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680257/", + "id": 680257, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/venomnibus-1-volume-1/4000-680257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671546/", + "id": 671546, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-671546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669947/", + "id": 669947, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-1/4000-669947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669077/", + "id": 669077, + "name": "Free Comic Book Day 2018 (Amazing Spider-Man/Guardians of the Galaxy)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2018-amazing-spider-manguardia/4000-669077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668790/", + "id": 668790, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-return-omnibus-1-hc/4000-668790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668784/", + "id": 668784, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-free-falling-1-gn/4000-668784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668776/", + "id": 668776, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-companion-2-volume-2/4000-668776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668774/", + "id": 668774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-deadpool-again-1/4000-668774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664314/", + "id": 664314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-homecoming-1/4000-664314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664309/", + "id": 664309, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-30/4000-664309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664308/", + "id": 664308, + "name": "Amazing Fantasy - Part Two", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-302-amazin/4000-664308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664300/", + "id": 664300, + "name": "The Big Goodbye", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-18-the-big-goodbye/4000-664300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664297/", + "id": 664297, + "name": "Mayor Fisk Conclusion; They Also Serve", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-600-mayor-fisk-conclusion-they-also-serv/4000-664297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663591/", + "id": 663591, + "name": "Flashpoint", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-flashpoint-1-flashpoint/4000-663591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663590/", + "id": 663590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-dark-origin-1/4000-663590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663565/", + "id": 663565, + "name": "Fast Times At Midtown High Part Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-17-fast-times-a/4000-663565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663252/", + "id": 663252, + "name": "Part 1: Darksoul Drifting", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-lethal-protector-1-part-1-dar/4000-663252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663251/", + "id": 663251, + "name": "Carnage, Part Three: Savage Grace!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-carnage-1-carnage-part-three-/4000-663251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662753/", + "id": 662753, + "name": "Oldies Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-29-oldies-part-2/4000-662753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662751/", + "id": 662751, + "name": "Amazing Fantasy - Part One", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-301-amazin/4000-662751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662747/", + "id": 662747, + "name": "Fate of the Four Part 4: Forward", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-4-fate-of-the-four-part-4-forwar/4000-662747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662745/", + "id": 662745, + "name": "Vampires In Brooklyn Part 1", + "site_detail_url": "https://comicvine.gamespot.com/falcon-6-vampires-in-brooklyn-part-1/4000-662745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662737/", + "id": 662737, + "name": "No Surrender Part 10", + "site_detail_url": "https://comicvine.gamespot.com/avengers-684-no-surrender-part-10/4000-662737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662100/", + "id": 662100, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-vs-spider-man-1/4000-662100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662099/", + "id": 662099, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-symbiosis-1/4000-662099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662080/", + "id": 662080, + "name": "Go Down Swinging Part 1: The Loose Thread", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-797-go-down-swinging-part-1/4000-662080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671343/", + "id": 671343, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-amazing-immortal-man-and-other-blood/4000-671343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671338/", + "id": 671338, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-thanos-quest-1-volum/4000-671338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671327/", + "id": 671327, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-eight-years-lat/4000-671327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670105/", + "id": 670105, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-spider-man-no-m/4000-670105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669465/", + "id": 669465, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-3-volume/4000-669465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669453/", + "id": 669453, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-3-volume-3/4000-669453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-669443/", + "id": 669443, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-venom-inc-1-tpb/4000-669443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921115/", + "id": 921115, + "name": "El asombroso Spiderman: La leyenda empieza de nuevo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-89-el-asombroso-spiderman-la-leyenda/4000-921115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920942/", + "id": 920942, + "name": "Las historias jamás contadas de Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-86-las-historias-jamas-contadas-de-s/4000-920942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825571/", + "id": 825571, + "name": "La caída de Parker Partes 1-3", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-139-la-caida-de-parker-part/4000-825571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702912/", + "id": 702912, + "name": "Mojo in Mondovisione : la vendetta", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-58-mojo-in-mondovisione-la-vend/4000-702912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702791/", + "id": 702791, + "name": "Mojo in Mondovisione!", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-335-mojo-in-mondovisione/4000-702791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694659/", + "id": 694659, + "name": "Deadpool Kills The Marvel Universe / Deadpool Killustrated", + "site_detail_url": "https://comicvine.gamespot.com/the-all-killer-no-filler-deadpool-collection-64-de/4000-694659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668344/", + "id": 668344, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-45/4000-668344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665537/", + "id": 665537, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-unleashed-13/4000-665537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667658/", + "id": 667658, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-the-complete-collection-1-vol-/4000-667658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667644/", + "id": 667644, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-return-of-the-purple-man-1-volume-3/4000-667644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667635/", + "id": 667635, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/carnage-omnibus-1-hc/4000-667635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665921/", + "id": 665921, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-arms-race-1-volume-5/4000-665921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665919/", + "id": 665919, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-most-wante/4000-665919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665904/", + "id": 665904, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-avengersdefenders-war/4000-665904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664909/", + "id": 664909, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mighty-origins-1-tpb/4000-664909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664713/", + "id": 664713, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-1-vol-1/4000-664713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661164/", + "id": 661164, + "name": "Lost In the Plot Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool-25-lost-in-the-plot-part/4000-661164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661162/", + "id": 661162, + "name": "Thanos Wins Part 4", + "site_detail_url": "https://comicvine.gamespot.com/thanos-16-thanos-wins-part-4/4000-661162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661160/", + "id": 661160, + "name": "Area 14 Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-28-area-14-part-2/4000-661160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661158/", + "id": 661158, + "name": "Most Wanted Part 4: Showdown", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-300-most-w/4000-661158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660659/", + "id": 660659, + "name": "Kingpins of New York Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-10-kingpins-of-new-york-part-5/4000-660659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660657/", + "id": 660657, + "name": "Mayor Fisk Part 5", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-599-mayor-fisk-part-5/4000-660657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660651/", + "id": 660651, + "name": "Threat Level: Red Part 3: Higher Priorities", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-796-threat-level-red-part-3/4000-660651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660006/", + "id": 660006, + "name": "Fast Times At Midtown High Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-16-fast-times-a/4000-660006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660005/", + "id": 660005, + "name": "Bury the Ledes; Spider-Sense and Sensibility", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-annual-42-bury-the-ledes-spider/4000-660005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659857/", + "id": 659857, + "name": "Landmark Final Issue!", + "site_detail_url": "https://comicvine.gamespot.com/mad-550-landmark-final-issue/4000-659857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658732/", + "id": 658732, + "name": "Area 14 Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-27-area-14-part-1/4000-658732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658715/", + "id": 658715, + "name": "Threat Level: Red Part 2: The Favor", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-795-threat-level-red-part-2/4000-658715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688466/", + "id": 688466, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-688466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688465/", + "id": 688465, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-43/4000-688465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825570/", + "id": 825570, + "name": "No es cosa de risa", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-138-no-es-cosa-de-risa/4000-825570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-744924/", + "id": 744924, + "name": "Tod aus dem All", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-5-tod-aus-dem-all/4000-744924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705956/", + "id": 705956, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-the-complete-collection-2-vol-2/4000-705956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679158/", + "id": 679158, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/jim-starlins-marvel-cosmic-artifact-edition-1-volu/4000-679158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668442/", + "id": 668442, + "name": "Mondiale", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-1-mondiale/4000-668442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667874/", + "id": 667874, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-geteiltes-leid-1/4000-667874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663796/", + "id": 663796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-3/4000-663796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663774/", + "id": 663774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-4/4000-663774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663206/", + "id": 663206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-42/4000-663206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661710/", + "id": 661710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-41/4000-661710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664318/", + "id": 664318, + "name": "Volume 0", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-homecoming-1-volume-0/4000-664318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664316/", + "id": 664316, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-blood-debt-1-volume-13/4000-664316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664311/", + "id": 664311, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thing-project-pegasus-1-tpb/4000-664311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663584/", + "id": 663584, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-ii-1-tpb/4000-663584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662748/", + "id": 662748, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu-epic-collection-weapon-of-the-so/4000-662748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662740/", + "id": 662740, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-runaways-and-reversals-1-tpb/4000-662740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662097/", + "id": 662097, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-by-joe-kelly-and-ed-mcguinness-/4000-662097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662092/", + "id": 662092, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-by-brian-michael-bendis-and-alex-malee/4000-662092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662086/", + "id": 662086, + "name": "Volume 0", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-minibus-0-volume-0/4000-662086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-656695/", + "id": 656695, + "name": "8 Years Later Part Three", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-15-8-years-late/4000-656695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-655497/", + "id": 655497, + "name": "Threat Level: Red Part 1: Last Chance", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-794-threat-level-red-part-1/4000-655497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-654059/", + "id": 654059, + "name": "Most Wanted Part 3: Desperate Measures", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-299-most-w/4000-654059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-654047/", + "id": 654047, + "name": "Part Six", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-venom-inc-omega-1-part-six/4000-654047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652644/", + "id": 652644, + "name": "Venom Inc. Part Five", + "site_detail_url": "https://comicvine.gamespot.com/venom-160-venom-inc-part-five/4000-652644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652641/", + "id": 652641, + "name": "Oldies Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-26-oldies-part-1/4000-652641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652625/", + "id": 652625, + "name": "Mayor Fisk Part 3", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-597-mayor-fisk-part-3/4000-652625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652621/", + "id": 652621, + "name": "No Surrender Part 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-675-no-surrender-part-1/4000-652621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-651101/", + "id": 651101, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-2/4000-651101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825569/", + "id": 825569, + "name": "Witsi Witsi; No es cosa de risa", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-137-witsi-witsi-no-es-cosa-/4000-825569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660576/", + "id": 660576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-40/4000-660576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659060/", + "id": 659060, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-unleashed-11/4000-659060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659047/", + "id": 659047, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-39/4000-659047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662194/", + "id": 662194, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposible-patrulla-x-69/4000-662194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660013/", + "id": 660013, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-mike-murdock-must-die-1-/4000-660013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659059/", + "id": 659059, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-1-v/4000-659059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659057/", + "id": 659057, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-shadowland-omnibus-1-hc/4000-659057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-659045/", + "id": 659045, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-3-volume-3/4000-659045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658852/", + "id": 658852, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-ii-4/4000-658852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658724/", + "id": 658724, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-once-and-future-kings-1-tpb/4000-658724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658717/", + "id": 658717, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-champions-worlds-collide-1-tpb/4000-658717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649744/", + "id": 649744, + "name": "Part Five", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-ii-5-part-five/4000-649744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649743/", + "id": 649743, + "name": "Arms Race Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-25-arms-race-part-3/4000-649743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649723/", + "id": 649723, + "name": "8 Years Later Part Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-14-8-years-late/4000-649723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649722/", + "id": 649722, + "name": "Venom Inc. Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-793-venom-inc-part-four/4000-649722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-647952/", + "id": 647952, + "name": "Most Wanted Part 2: Escape Plans", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-298-most-w/4000-647952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-647947/", + "id": 647947, + "name": "Fate of the Four Part 1: Fast Burn; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-1-fate-of-the-four-part-1-fast-b/4000-647947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-647842/", + "id": 647842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-1/4000-647842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-646179/", + "id": 646179, + "name": "Venom Inc. Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-792-venom-inc-part-two/4000-646179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-644509/", + "id": 644509, + "name": "Emancipation; Lockjaw: Canine Master of Time and Space in A Christmas Peril", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-once-and-future-kings-5-emancipation-lock/4000-644509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-644497/", + "id": 644497, + "name": "Worlds Collide: Part Five", + "site_detail_url": "https://comicvine.gamespot.com/avengers-674-worlds-collide-part-five/4000-644497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-644495/", + "id": 644495, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-venom-inc-alpha-1-part-one/4000-644495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663773/", + "id": 663773, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-3/4000-663773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-912115/", + "id": 912115, + "name": "Finstere Rückkehr", + "site_detail_url": "https://comicvine.gamespot.com/venom-1-finstere-ruckkehr/4000-912115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825568/", + "id": 825568, + "name": "Chapucero, Sastre ... ¡Soldado!; Riesgo de Huida; Mi Cena con Jonah; Spiderlucha", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-136-chapucero-sastre-soldad/4000-825568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704110/", + "id": 704110, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-resurrxion-4/4000-704110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701991/", + "id": 701991, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-3/4000-701991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-654579/", + "id": 654579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-38/4000-654579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658851/", + "id": 658851, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-ii-3/4000-658851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-656720/", + "id": 656720, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-blood-in-the-water-1-volume/4000-656720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-655518/", + "id": 655518, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-mojo-worldwide-1-volume-3/4000-655518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-655498/", + "id": 655498, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-7-volume-7/4000-655498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-653012/", + "id": 653012, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-the-complete-collect/4000-653012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-650927/", + "id": 650927, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-serious-business-1-volume-4/4000-650927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-641416/", + "id": 641416, + "name": "Arms Race Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-24-arms-race-part-2/4000-641416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-641397/", + "id": 641397, + "name": "8 Years Later Part One; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-13-8-years-late/4000-641397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638607/", + "id": 638607, + "name": "Part Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-ii-4-part-four/4000-638607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638604/", + "id": 638604, + "name": "Most Wanted Part 1: Find A Way; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-297-most-w/4000-638604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638603/", + "id": 638603, + "name": "Forbush Man Returns", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-14-forbush-man-returns/4000-638603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638591/", + "id": 638591, + "name": "Worlds Collide: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/champions-14-worlds-collide-part-4/4000-638591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638587/", + "id": 638587, + "name": "Fall of Parker Part 3 -- Back To Ground", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-791-fall-of-parker-part-3-b/4000-638587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-636387/", + "id": 636387, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-26/4000-636387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-636383/", + "id": 636383, + "name": "Arms Race Part 1; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-23-arms-race-part-1-untitled/4000-636383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634541/", + "id": 634541, + "name": "My Dinner With Jonah!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-6-my-dinne/4000-634541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634536/", + "id": 634536, + "name": "Whatever A Spider Can; Lockjaw: Canine Master of Time and Space in Cosmic Rube", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-once-and-future-kings-4-whatever-a-spider/4000-634536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634525/", + "id": 634525, + "name": "Worlds Collide: Part Three", + "site_detail_url": "https://comicvine.gamespot.com/avengers-673-worlds-collide-part-three/4000-634525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688464/", + "id": 688464, + "name": "Monsters in Manhattan!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-37-monsters-in-manhatta/4000-688464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825567/", + "id": 825567, + "name": "El Tiempo Vuela y En el Crepúsculo", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-135-el-tiempo-vuela-y-en-el/4000-825567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704109/", + "id": 704109, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-resurrxion-3/4000-704109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701995/", + "id": 701995, + "name": "VvX: Consecuencias", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-equipo-extincion-3-vvx-co/4000-701995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667892/", + "id": 667892, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-spider-man-rinnovare-le-promesse-1/4000-667892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-648823/", + "id": 648823, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-36/4000-648823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-646078/", + "id": 646078, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-35/4000-646078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668713/", + "id": 668713, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-gratis-comic-tag-2017-1/4000-668713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658850/", + "id": 658850, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-ii-2/4000-658850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649752/", + "id": 649752, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venomverse-1-tpb/4000-649752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649748/", + "id": 649748, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-god-quarry-1-volume-2/4000-649748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649734/", + "id": 649734, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-the-complete-collection-1-tpb/4000-649734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649730/", + "id": 649730, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-lords-of-fear-1-tpb/4000-649730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-648877/", + "id": 648877, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-brand-new-day-the-complete-/4000-648877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-647937/", + "id": 647937, + "name": "Volume 20: Ultimate Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-20-volume-20-ultimate-deadpool/4000-647937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-647694/", + "id": 647694, + "name": "Birth of the Graphic Novel", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-history-of-comics-1-birth-of-the-graphi/4000-647694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-646193/", + "id": 646193, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-into-the-t/4000-646193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-646190/", + "id": 646190, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-good-the-b/4000-646190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-644520/", + "id": 644520, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classic-omnibus-1-hc/4000-644520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632508/", + "id": 632508, + "name": "Cannonball Run Part 1: Hey, Bugface, Where Are You?; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/usavengers-11-cannonball-run-part-1-hey-bugface-wh/4000-632508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632488/", + "id": 632488, + "name": "Fall of Parker Part 2 -- Breaking Point", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-790-fall-of-parker-part-2-b/4000-632488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630540/", + "id": 630540, + "name": "Mojo Worldwide Part 3", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-14-mojo-worldwide-part-3/4000-630540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630533/", + "id": 630533, + "name": "Gwenom Part 1; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-25-gwenom-part-1-untitled/4000-630533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630531/", + "id": 630531, + "name": "Flight Risk", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-5-flight-r/4000-630531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630524/", + "id": 630524, + "name": "The Search For Tony Stark Part One; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-593-the-search-for-tony-stark-/4000-630524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628645/", + "id": 628645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-digest-3/4000-628645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628601/", + "id": 628601, + "name": "Mojo Worldwide Part 2; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-13-mojo-worldwide-part-2-untitled/4000-628601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628584/", + "id": 628584, + "name": "Band of Brothers; Pier Pressure", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-once-and-future-kings-3-band-of-brothers-/4000-628584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628576/", + "id": 628576, + "name": "The Curse of the Green Goblin Part 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-12-the-curse-of/4000-628576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628575/", + "id": 628575, + "name": "Fall of Parker Part 1 - Top To Bottom; [Untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-789-fall-of-parker-part-1-t/4000-628575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626304/", + "id": 626304, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomverse-5/4000-626304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626296/", + "id": 626296, + "name": "It's A Murder, Murder, Murder, Murder WOrld", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-22-its-a-murder-murder-murder-m/4000-626296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626276/", + "id": 626276, + "name": "Worlds Collide: Part One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-672-worlds-collide-part-one/4000-626276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825566/", + "id": 825566, + "name": "Imperio Secreto y Demonio Personal", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-134-imperio-secreto-y-demon/4000-825566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705035/", + "id": 705035, + "name": "Zu neuen Ufern", + "site_detail_url": "https://comicvine.gamespot.com/x-men-4-zu-neuen-ufern/4000-705035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704108/", + "id": 704108, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-resurrxion-2/4000-704108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703214/", + "id": 703214, + "name": "Sacrificio", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-347-sacrificio/4000-703214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-642204/", + "id": 642204, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-34/4000-642204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-637529/", + "id": 637529, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-33/4000-637529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-643048/", + "id": 643048, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-apocalypse-termination-1-tpb/4000-643048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-643035/", + "id": 643035, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-larger-than-life-1-tpb/4000-643035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-643027/", + "id": 643027, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-the-venom-exper/4000-643027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-643026/", + "id": 643026, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-immune-1-volume-4/4000-643026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-641403/", + "id": 641403, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/generations-1-hctpb/4000-641403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-641402/", + "id": 641402, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-time-afte/4000-641402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638662/", + "id": 638662, + "name": "Radioactive Woman: The Movie!", + "site_detail_url": "https://comicvine.gamespot.com/simpsons-comics-241-radioactive-woman-the-movie/4000-638662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638613/", + "id": 638613, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-carnage-unleashed-1-tpb/4000-638613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-638588/", + "id": 638588, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unleashed-secret-empire-1-volume-2/4000-638588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635490/", + "id": 635490, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thanos-marvel-legacy-primer-pages-1/4000-635490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635481/", + "id": 635481, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-marvel-legacy-p/4000-635481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635166/", + "id": 635166, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-ii-1/4000-635166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635154/", + "id": 635154, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-9/4000-635154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635153/", + "id": 635153, + "name": "El caso Osborn Partes 2-4", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-133-el-caso-osborn-partes-2/4000-635153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634935/", + "id": 634935, + "name": "Buscando a Namor", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-escuadron-supremo-3-buscando-a-namor/4000-634935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634902/", + "id": 634902, + "name": "Después de la escuela", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hc-spidey-2-despues-de-la-escuela/4000-634902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-634544/", + "id": 634544, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-clone-saga-omnibus-2-vol-2/4000-634544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625331/", + "id": 625331, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomverse-4/4000-625331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625307/", + "id": 625307, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/generations-sam-wilson-captain-america-and-steve-r/4000-625307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625306/", + "id": 625306, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/generations-miles-morales-spider-man-and-peter-par/4000-625306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622948/", + "id": 622948, + "name": "...Tinkerer Tailored: Soldier Guy!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-4-tinkerer/4000-622948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622934/", + "id": 622934, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-11/4000-622934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622932/", + "id": 622932, + "name": "The Curse of the Green Goblin Part 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-11-the-curse-of/4000-622932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621683/", + "id": 621683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomverse-2/4000-621683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621656/", + "id": 621656, + "name": "Personal Demon", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-32-personal-demon/4000-621656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619645/", + "id": 619645, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venomverse-war-stories-1/4000-619645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619644/", + "id": 619644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venomverse-1/4000-619644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619643/", + "id": 619643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-hulk-champions-of-the-universe-1/4000-619643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619637/", + "id": 619637, + "name": "One Night In Madripoor Makes Spider-Man Humble", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-21-one-night-in-madripoor-makes/4000-619637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703213/", + "id": 703213, + "name": "Pronte a morire", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-346-pronte-a-morire/4000-703213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703212/", + "id": 703212, + "name": "Missione sopravvivere", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-345-missione-sopravvivere/4000-703212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-633335/", + "id": 633335, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-32/4000-633335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-633339/", + "id": 633339, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-marvel-legacy-primer-pag/4000-633339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632509/", + "id": 632509, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-land-before-crime-1-volume-2/4000-632509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632503/", + "id": 632503, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-1-hctpb/4000-632503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-632342/", + "id": 632342, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/the-unquotable-trump-1-gn/4000-632342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-631216/", + "id": 631216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-marvel-legacy-primer-pages-1/4000-631216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-631069/", + "id": 631069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-frank-miller-el-universo-marvel-segun-fr/4000-631069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-629380/", + "id": 629380, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-complete-coll/4000-629380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-629103/", + "id": 629103, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-85/4000-629103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628834/", + "id": 628834, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-marvel-legacy-primer-pages-1/4000-628834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626994/", + "id": 626994, + "name": "Hasta que la muerte nos separe... Parte 4", + "site_detail_url": "https://comicvine.gamespot.com/masacre-20-hasta-que-la-muerte-nos-separe-parte-4/4000-626994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626988/", + "id": 626988, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-8/4000-626988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626979/", + "id": 626979, + "name": "El caso Osborn Parte 1", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-132-el-caso-osborn-parte-1/4000-626979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626305/", + "id": 626305, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-1-volume/4000-626305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626299/", + "id": 626299, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/thor-heroes-return-omnibus-1-volume-one/4000-626299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626283/", + "id": 626283, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/hulk-world-war-hulk-omnibus-1-hc/4000-626283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-617855/", + "id": 617855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thanos-10/4000-617855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-617849/", + "id": 617849, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-10/4000-617849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-616200/", + "id": 616200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-9/4000-616200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-616198/", + "id": 616198, + "name": "Fisk-y Business", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-3-fisk-y-b/4000-616198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615031/", + "id": 615031, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-ii-2-part-two/4000-615031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615014/", + "id": 615014, + "name": "A Day In the Life of An Osborn", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-10-a-day-in-the/4000-615014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614980/", + "id": 614980, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-547/4000-614980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-613783/", + "id": 613783, + "name": "Secret Empire Part Three: End of An Empire", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-31-secret-empire-part-three/4000-613783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612066/", + "id": 612066, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-digest-2/4000-612066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612055/", + "id": 612055, + "name": "Chapter 5 & 6", + "site_detail_url": "https://comicvine.gamespot.com/vision-directors-cut-3-chapter-5-and-6/4000-612055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612051/", + "id": 612051, + "name": "No Laughing Matter Part Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-20-no-laughing-matter-part-two/4000-612051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-627043/", + "id": 627043, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-30/4000-627043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-627042/", + "id": 627042, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-29/4000-627042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620427/", + "id": 620427, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-15/4000-620427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625679/", + "id": 625679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-marvel-legacy-primer-pages-1/4000-625679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625676/", + "id": 625676, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-marvel-legacy-primer-pages-1/4000-625676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625326/", + "id": 625326, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-itsy-bitsy-1-volume-3/4000-625326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625325/", + "id": 625325, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-daily-bugle-1-tpb/4000-625325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625324/", + "id": 625324, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-back-to-future-shock-1-volume-7/4000-625324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-623743/", + "id": 623743, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-despicable-deadpool-marvel-legacy-primer-pages/4000-623743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-623735/", + "id": 623735, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-marvel-legacy-primer-pages-/4000-623735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622972/", + "id": 622972, + "name": "IT Happens!; A Fungus Among Us; Curse of the Cat Lady;", + "site_detail_url": "https://comicvine.gamespot.com/bart-simpsons-treehouse-of-horror-23-it-happens-a-/4000-622972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622940/", + "id": 622940, + "name": "Vol. 4", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-the-complete-collection-4-vol-4/4000-622940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622936/", + "id": 622936, + "name": "Volume 14", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-heart-of-darkness-1-volu/4000-622936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622546/", + "id": 622546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-marvel-legacy-primer-pages-1/4000-622546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622538/", + "id": 622538, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-marvel-legacy-primer-pages-1/4000-622538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621985/", + "id": 621985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imperio-secreto-1/4000-621985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621982/", + "id": 621982, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hc-spiderman-la-ultima-caceria-de-krave/4000-621982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621669/", + "id": 621669, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-two-in-one-2-volume-2/4000-621669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621657/", + "id": 621657, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-complete-coll/4000-621657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620866/", + "id": 620866, + "name": "Hasta que la muerte nos separe... Partes 1 y 2", + "site_detail_url": "https://comicvine.gamespot.com/masacre-19-hasta-que-la-muerte-nos-separe-partes-1/4000-620866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620844/", + "id": 620844, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-7/4000-620844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620843/", + "id": 620843, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-131/4000-620843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619730/", + "id": 619730, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-2-volume-2/4000-619730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619634/", + "id": 619634, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-back-to-the-war-omnibus-1-hc/4000-619634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-609356/", + "id": 609356, + "name": "Sister Act!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-2-sister-a/4000-609356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-609345/", + "id": 609345, + "name": "Part II", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again-2-part-ii/4000-609345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-609335/", + "id": 609335, + "name": "The Venom Experiment", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-9-the-venom-exp/4000-609335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-608256/", + "id": 608256, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-ii-1-part-one/4000-608256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-608237/", + "id": 608237, + "name": "Secret Empire Part Two: Master Planning", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-30-secret-empire-part-two-m/4000-608237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606645/", + "id": 606645, + "name": "Torment Part One of Five", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-1-torment-part-one-of-fi/4000-606645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606644/", + "id": 606644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-brand-new-da/4000-606644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606643/", + "id": 606643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-amazing-fantasy-starring-spider-man/4000-606643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606639/", + "id": 606639, + "name": "Master Plan; Duel To the Death With the Vulture!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-master-plan-1-master-plan-duel-to-the-d/4000-606639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606637/", + "id": 606637, + "name": "No Laughing Matter", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-19-no-laughing-matter/4000-606637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606632/", + "id": 606632, + "name": "The New Sinister Six Part Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-606632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685209/", + "id": 685209, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black-1/4000-685209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685017/", + "id": 685017, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/deadpool-affentheater-1/4000-685017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-618937/", + "id": 618937, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-28/4000-618937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615762/", + "id": 615762, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-27/4000-615762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612760/", + "id": 612760, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-26/4000-612760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-629353/", + "id": 629353, + "name": "VvX", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-equipo-extincion-2-vvx/4000-629353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625684/", + "id": 625684, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2/4000-625684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619751/", + "id": 619751, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-83/4000-619751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-617852/", + "id": 617852, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin-1-tpb/4000-617852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-617838/", + "id": 617838, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-the-punisher-1-tpb/4000-617838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-616188/", + "id": 616188, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-till-death-do-us-1-volume/4000-616188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615972/", + "id": 615972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-6/4000-615972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615916/", + "id": 615916, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-130/4000-615916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615021/", + "id": 615021, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-by-abnett-and-lanning-the-complete/4000-615021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614703/", + "id": 614703, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/sif-journey-into-mystery-the-complete-collection-1/4000-614703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-613795/", + "id": 613795, + "name": "Volume 17", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-17-volume-17/4000-613795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-613785/", + "id": 613785, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-end-of-the-line-1-volum/4000-613785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605138/", + "id": 605138, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-peter-parker-the-spectacular-spider/4000-605138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605137/", + "id": 605137, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-miles-morales-spider-man-1/4000-605137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605136/", + "id": 605136, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-1/4000-605136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605105/", + "id": 605105, + "name": "Secret Empire Part One: Rightful Ruler", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-29-secret-empire-part-one-r/4000-605105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603138/", + "id": 603138, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-24/4000-603138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603132/", + "id": 603132, + "name": "[Untitled]; Spider-Fight", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-1-untitled/4000-603132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601784/", + "id": 601784, + "name": "The Venom Solution", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-8-the-venom-sol/4000-601784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601783/", + "id": 601783, + "name": "Immune Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-21-immune-part-3-of-3/4000-601783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599919/", + "id": 599919, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-digest-1/4000-599919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599875/", + "id": 599875, + "name": "Itsy Bitsy Part 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-18-itsy-bitsy-part-5/4000-599875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599868/", + "id": 599868, + "name": "The New Sinister Six Part One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-599868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599857/", + "id": 599857, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-8/4000-599857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599855/", + "id": 599855, + "name": "The Osborn Identity Part Four: One-On-One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-28-the-osborn-identity-part/4000-599855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688463/", + "id": 688463, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-25/4000-688463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-904388/", + "id": 904388, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comix-nr-53/4000-904388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702746/", + "id": 702746, + "name": "La via del male", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-326-la-via-del-male/4000-702746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-607208/", + "id": 607208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-24/4000-607208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-631087/", + "id": 631087, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-vvx-vs-1/4000-631087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-616058/", + "id": 616058, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-invencible-iron-man-80/4000-616058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615971/", + "id": 615971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-5/4000-615971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615915/", + "id": 615915, + "name": "Los muertos viven: La conspiración del clon Omega", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-129-los-muertos-viven-la-conspiracion-de/4000-615915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610540/", + "id": 610540, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-unity-red-skull-1-volume-4/4000-610540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610535/", + "id": 610535, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-thats-not-funny-1-tpb/4000-610535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610524/", + "id": 610524, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-x-men-ivx-1-volume-4/4000-610524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-609336/", + "id": 609336, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-6-volume-6/4000-609336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-608250/", + "id": 608250, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-battleground-1-tpb/4000-608250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-608249/", + "id": 608249, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-608249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606638/", + "id": 606638, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-homecoming-the-art-of-the-movie-1-hc/4000-606638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606633/", + "id": 606633, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-1-hctpb/4000-606633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606630/", + "id": 606630, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-spectacular-spider-man-1-vo/4000-606630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606620/", + "id": 606620, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-bucky-reborn-1-vol/4000-606620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606618/", + "id": 606618, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jonathan-hickman-omnibus-1-volume-1/4000-606618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-597189/", + "id": 597189, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-8/4000-597189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595685/", + "id": 595685, + "name": "Purple Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-20-purple-conclusion/4000-595685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594959/", + "id": 594959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-7/4000-594959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594956/", + "id": 594956, + "name": "School Daze Part 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-7-school-daze-p/4000-594956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594955/", + "id": 594955, + "name": "The Osborn identity Part Three: A Private War", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-27-the-osborn-identity-part/4000-594955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594954/", + "id": 594954, + "name": "Immune Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-20-immune-part-2-of-3/4000-594954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594541/", + "id": 594541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2017-secret-empire-1/4000-594541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594125/", + "id": 594125, + "name": "Itsy Bitsy Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-17-itsy-bitsy-part-4/4000-594125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-762730/", + "id": 762730, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-762730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605837/", + "id": 605837, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-10/4000-605837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603685/", + "id": 603685, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-12/4000-603685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603684/", + "id": 603684, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-23/4000-603684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-600750/", + "id": 600750, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-22/4000-600750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-600075/", + "id": 600075, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-unleashed-2/4000-600075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-631086/", + "id": 631086, + "name": "Segunda Parte", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-vvx-los-vengadores-vs-la-patrulla-x-/4000-631086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-631085/", + "id": 631085, + "name": "Primera Parte", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-vvx-los-vengadores-vs-la-patrulla-x-/4000-631085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620495/", + "id": 620495, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-homecoming-fight-or-flight-1/4000-620495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619797/", + "id": 619797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-3/4000-619797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619796/", + "id": 619796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-2/4000-619796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619749/", + "id": 619749, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-81/4000-619749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615970/", + "id": 615970, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-4/4000-615970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615914/", + "id": 615914, + "name": "Los muertos viven: La conspiración del clon 5", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-128-los-muertos-viven-la-conspiracion-de/4000-615914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605129/", + "id": 605129, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-webspinners-the-complete-collection-1-t/4000-605129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605125/", + "id": 605125, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/prowler-the-clone-conspiracy-1-tpb/4000-605125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603139/", + "id": 603139, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-strange-the-way-to-dusty-death-1-/4000-603139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603117/", + "id": 603117, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unleashed-kang-war-one-1-volume-1/4000-603117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-602185/", + "id": 602185, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-omnibus-1-hc/4000-602185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601874/", + "id": 601874, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-inside-the-world-of-your-friendly-neigh/4000-601874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601858/", + "id": 601858, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-book-of-marvel-spider-man-1-hc/4000-601858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601810/", + "id": 601810, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/venom-homecoming-1-volume-1/4000-601810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601803/", + "id": 601803, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-brand-new-day-the-complete-/4000-601803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601796/", + "id": 601796, + "name": "Volume 19", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-19-volum/4000-601796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601785/", + "id": 601785, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-brawl-in-the-fa/4000-601785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-600566/", + "id": 600566, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-omnibus-2-volume-2/4000-600566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599877/", + "id": 599877, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-homecoming-prelude-1-tpb/4000-599877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599876/", + "id": 599876, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-side-pieces-1-volume-2/4000-599876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599874/", + "id": 599874, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-amazing-origins-1-gn/4000-599874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599869/", + "id": 599869, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-599869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599861/", + "id": 599861, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-spider-man-1/4000-599861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599856/", + "id": 599856, + "name": "Volume 17", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-kravens-last-hu/4000-599856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593394/", + "id": 593394, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-all-different-marvel-reading-chronology-1/4000-593394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593275/", + "id": 593275, + "name": "War In Heaven", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2-6-war-in-heaven/4000-593275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592617/", + "id": 592617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-6/4000-592617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592610/", + "id": 592610, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-19/4000-592610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592609/", + "id": 592609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-0/4000-592609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592597/", + "id": 592597, + "name": "Dream On; But Are They Ready For... Taserface!", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-dream-on-1-dream-on-but-ar/4000-592597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592595/", + "id": 592595, + "name": "'Til Death Do Us... Part 6", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-29-til-death-do-us-part-6/4000-592595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591756/", + "id": 591756, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-7/4000-591756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591754/", + "id": 591754, + "name": "Bullet to the Brain", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-the-punisher-1-bullet-to-the-brain/4000-591754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591753/", + "id": 591753, + "name": "'Til Death Do Us... Part 5", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-10-til-death-do-u/4000-591753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591747/", + "id": 591747, + "name": "School Daze Part 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-6-school-daze-p/4000-591747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591745/", + "id": 591745, + "name": "The Osborn identity Part Two: Fight Or Flight", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-26-the-osborn-identity-part/4000-591745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590806/", + "id": 590806, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-homecoming-prelude-2/4000-590806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590805/", + "id": 590805, + "name": "'Til Death Do Us... Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-16-til-death-do-us-part-4/4000-590805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590799/", + "id": 590799, + "name": "Force of Nature", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-590799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590790/", + "id": 590790, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers-15/4000-590790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590787/", + "id": 590787, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-6/4000-590787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590785/", + "id": 590785, + "name": "Immune Part 1 of 3", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-19-immune-part-1-of-3/4000-590785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847595/", + "id": 847595, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/flint-comix-and-entertainment-87/4000-847595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-741091/", + "id": 741091, + "name": "Avventure definitive", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-6-avventure-definitive/4000-741091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-600073/", + "id": 600073, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-21/4000-600073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595638/", + "id": 595638, + "name": "The Clone Conspiracy Begins!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-20-the-clone-conspiracy/4000-595638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619795/", + "id": 619795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-1/4000-619795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619748/", + "id": 619748, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-80/4000-619748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-616933/", + "id": 616933, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/la-extraordinaria-patrulla-x-18/4000-616933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615969/", + "id": 615969, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-3/4000-615969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612318/", + "id": 612318, + "name": "Peter Parker, El Espectacular Spiderman: La Caza de la Araña", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-80-peter-parker-el-esp/4000-612318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-598615/", + "id": 598615, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-finding-namor-1-volume-3/4000-598615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-598393/", + "id": 598393, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-allan-heinberg-and-jim-cheung-th/4000-598393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-598391/", + "id": 598391, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-7-volume-s/4000-598391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-598366/", + "id": 598366, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-four-1-tpb/4000-598366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-597202/", + "id": 597202, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-todd-dezago-and-mike-wieringo-1-tpb/4000-597202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595702/", + "id": 595702, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-the-vulture-1-tpb/4000-595702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595684/", + "id": 595684, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-omnibus-3-volume-three/4000-595684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595434/", + "id": 595434, + "name": "Los muertos viven: La conspiración del clon 4", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-127-los-muertos-viven-la-conspiracion-de/4000-595434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594957/", + "id": 594957, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-5-volume-5/4000-594957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594118/", + "id": 594118, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-594118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594105/", + "id": 594105, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-the-goblins-las/4000-594105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589837/", + "id": 589837, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-17/4000-589837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589825/", + "id": 589825, + "name": "'Til Death Do Us... Part 3", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-9-til-death-do-us/4000-589825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588572/", + "id": 588572, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/prowler-6/4000-588572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588567/", + "id": 588567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-5/4000-588567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588555/", + "id": 588555, + "name": "Brawl In the Family: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-5-brawl-in-the-/4000-588555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587710/", + "id": 587710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-special-edition-5/4000-587710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587423/", + "id": 587423, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-5/4000-587423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587421/", + "id": 587421, + "name": "Maximum Effort", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-21-maximum-effort/4000-587421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587417/", + "id": 587417, + "name": "Sitting In A Tree Part 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-14-sitting-in-a-tree-part-5/4000-587417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587408/", + "id": 587408, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-18/4000-587408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587400/", + "id": 587400, + "name": "Part One: \"Bug Hunt\"; Police & Thieves; Spider-Man Tsum-Up!; Mutts Ado About Nothing", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-25-part-one-bug-hunt-police/4000-587400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585096/", + "id": 585096, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool-13/4000-585096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585093/", + "id": 585093, + "name": "'Til Death Do Us... Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-15-til-death-do-us-part-2/4000-585093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585086/", + "id": 585086, + "name": "Episode Six: Native Son", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-6-episode-six-native-son/4000-585086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585079/", + "id": 585079, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-1mu/4000-585079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585078/", + "id": 585078, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-6/4000-585078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583847/", + "id": 583847, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-special-edition-4/4000-583847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583730/", + "id": 583730, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-homecoming-prelude-1/4000-583730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583724/", + "id": 583724, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-4/4000-583724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583716/", + "id": 583716, + "name": "'Til Death Do Us... Part 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-28-til-death-do-us-part-1/4000-583716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583715/", + "id": 583715, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy-omega-1/4000-583715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583712/", + "id": 583712, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-5/4000-583712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921219/", + "id": 921219, + "name": "El asombroso Spiderman 10: El otro, segunda parte", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-25-el-asombroso-spiderman-10-el-otro-s/4000-921219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592189/", + "id": 592189, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-18/4000-592189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615968/", + "id": 615968, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-2/4000-615968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612014/", + "id": 612014, + "name": "Volume 4: 1983-1984", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-612014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599655/", + "id": 599655, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hc-spiderman-azul-1/4000-599655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595433/", + "id": 595433, + "name": "Los muertos viven: La conspiración del clon 3", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-126-los-muertos-viven-la-conspiracion-de/4000-595433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593297/", + "id": 593297, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/splitting-image-80-page-giant-1/4000-593297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593279/", + "id": 593279, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-firestar-1-tpb/4000-593279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593272/", + "id": 593272, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-prelude-1-tpb/4000-593272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592619/", + "id": 592619, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-1-tpb/4000-592619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592612/", + "id": 592612, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friendly-neighborhood-spider-man-by-pet/4000-592612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592611/", + "id": 592611, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-4-volume-four/4000-592611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592599/", + "id": 592599, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-592599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592591/", + "id": 592591, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/cage-1-tpb/4000-592591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591759/", + "id": 591759, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-classic-in-the-year-3000-3/4000-591759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-591746/", + "id": 591746, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-clone-conspiracy-1-hctpb/4000-591746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590800/", + "id": 590800, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4000-590800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590789/", + "id": 590789, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-justice-is-served-/4000-590789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583723/", + "id": 583723, + "name": "Beached", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-583723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582549/", + "id": 582549, + "name": "As the World Burns", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-20-as-the-world-burns/4000-582549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582545/", + "id": 582545, + "name": "Itsy Bitsy Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-14-itsy-bitsy-part-4/4000-582545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582544/", + "id": 582544, + "name": "Sitting In A Tree Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-17-sitting-in-a-tree-part-4/4000-582544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582539/", + "id": 582539, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/prowler-5/4000-582539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582537/", + "id": 582537, + "name": "Episode Five: Invisible Man", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-5-episode-five-invisible-man/4000-582537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582516/", + "id": 582516, + "name": "Night of the Jackals", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-24-night-of-the-jackals/4000-582516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581575/", + "id": 581575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-4/4000-581575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581567/", + "id": 581567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-17/4000-581567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581562/", + "id": 581562, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-3/4000-581562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581555/", + "id": 581555, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-1mu/4000-581555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581550/", + "id": 581550, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy-5/4000-581550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581548/", + "id": 581548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-19/4000-581548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-580765/", + "id": 580765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-17/4000-580765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-580740/", + "id": 580740, + "name": "Brawl In the Family: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-4-brawl-in-the-/4000-580740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-579412/", + "id": 579412, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-special-edition-2/4000-579412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-579318/", + "id": 579318, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-2/4000-579318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-579305/", + "id": 579305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-4/4000-579305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704991/", + "id": 704991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-future-fight-an-eye-on-the-future-1/4000-704991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593566/", + "id": 593566, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-19/4000-593566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590404/", + "id": 590404, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17/4000-590404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588243/", + "id": 588243, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-16/4000-588243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587530/", + "id": 587530, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends-8/4000-587530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615967/", + "id": 615967, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-spiderman-renueva-tus-votos-1/4000-615967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599651/", + "id": 599651, + "name": "Primer día", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-hc-spidey-1-primer-dia/4000-599651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595432/", + "id": 595432, + "name": "Los muertos viven: La conspiración del clon 2", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-125-los-muertos-viven-la-conspiracion-de/4000-595432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589841/", + "id": 589841, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-second-genesis-1-volume-5/4000-589841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589836/", + "id": 589836, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-miles-morales-2-volume-2/4000-589836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588581/", + "id": 588581, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/x-force-epic-collection-under-the-gun-1-volume-1/4000-588581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588569/", + "id": 588569, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-book-of-changes-1-tpb/4000-588569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588560/", + "id": 588560, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-too-soon-1-tpb/4000-588560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587424/", + "id": 587424, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-the-marvel-universe-1-tpb/4000-587424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585087/", + "id": 585087, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-epic-collection-renewal-1-volume-1/4000-585087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585076/", + "id": 585076, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-lost-and-found-1-tpb/4000-585076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583943/", + "id": 583943, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-583943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583933/", + "id": 583933, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-omnibus-1-volume-1/4000-583933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583739/", + "id": 583739, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-complete-tales-from-the-con-1-tpb/4000-583739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578473/", + "id": 578473, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-1mu/4000-578473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578469/", + "id": 578469, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/prowler-4/4000-578469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578467/", + "id": 578467, + "name": "Double Agent Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-578467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578461/", + "id": 578461, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-578461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578459/", + "id": 578459, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-x-men-18/4000-578459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578450/", + "id": 578450, + "name": "Minor Mobsters, Major Monsters", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1mu-minor-mobsters-major-monsters/4000-578450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576642/", + "id": 576642, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-3/4000-576642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576638/", + "id": 576638, + "name": "$kullocracy Part Two", + "site_detail_url": "https://comicvine.gamespot.com/usavengers-2-kullocracy-part-two/4000-576638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576630/", + "id": 576630, + "name": "Episode Four: Parable of the Talents", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-4-episode-four-parable-of-the-talents/4000-576630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576629/", + "id": 576629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-1/4000-576629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576619/", + "id": 576619, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy-4/4000-576619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576618/", + "id": 576618, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-18/4000-576618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576617/", + "id": 576617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cage-4/4000-576617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576614/", + "id": 576614, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-31/4000-576614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576613/", + "id": 576613, + "name": "The Moment You Know", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-23-the-moment-you-know/4000-576613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575886/", + "id": 575886, + "name": "Lights Out", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-19-lights-out/4000-575886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575885/", + "id": 575885, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-16/4000-575885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575883/", + "id": 575883, + "name": "Itsy Bitsy Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-13-itsy-bitsy-part-3/4000-575883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575868/", + "id": 575868, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-16/4000-575868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575856/", + "id": 575856, + "name": "Brawl in the Family: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-brawl-in-the-/4000-575856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574859/", + "id": 574859, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-3/4000-574859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-564007/", + "id": 564007, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-free-previews-monsters-unleashed-1/4000-564007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-741090/", + "id": 741090, + "name": "La vendetta della Confraternita", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-5-la-vendetta-della-conf/4000-741090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587526/", + "id": 587526, + "name": "Shush!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-15-shush/4000-587526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581626/", + "id": 581626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends-7/4000-581626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612315/", + "id": 612315, + "name": "La Telaraña de Spiderman 1: Ley y orden", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-77-la-telarana-de-spid/4000-612315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595431/", + "id": 595431, + "name": "Los muertos viven: La conspiración del clon 1", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-124-los-muertos-viven-la-conspiracion-de/4000-595431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582523/", + "id": 582523, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black-1-tpb/4000-582523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581766/", + "id": 581766, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-581766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581559/", + "id": 581559, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-civil-war-ii-1-v/4000-581559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-580743/", + "id": 580743, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-shadows-and-light-1-tpb/4000-580743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-579451/", + "id": 579451, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-1-volume-1/4000-579451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-579309/", + "id": 579309, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-1-hc/4000-579309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-571683/", + "id": 571683, + "name": "The Spider-Man/Deadpool Ho-Ho-Holiday Special!", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-12-the-spider-mandeadpool-ho-ho/4000-571683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-571672/", + "id": 571672, + "name": "Agent Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-571672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-571662/", + "id": 571662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-too-soon-3/4000-571662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569348/", + "id": 569348, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-14/4000-569348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569340/", + "id": 569340, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-sweet-christmas-annual-1/4000-569340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569333/", + "id": 569333, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-2/4000-569333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569327/", + "id": 569327, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-16/4000-569327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569323/", + "id": 569323, + "name": "Seeing Red", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-22-seeing-red/4000-569323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566726/", + "id": 566726, + "name": "The Mighty Mewnir", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-15-the-mighty-mewnir/4000-566726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566717/", + "id": 566717, + "name": "Episode Three: Parable of the Sower", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-3-episode-three-parable-of-the-sower/4000-566717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566706/", + "id": 566706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black-5/4000-566706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566703/", + "id": 566703, + "name": "Brawl In the Family: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-2-brawl-in-the-/4000-566703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-563725/", + "id": 563725, + "name": "That's Not Funny!", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-1-thats-not-funny/4000-563725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-563719/", + "id": 563719, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy-3/4000-563719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-563716/", + "id": 563716, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2/4000-563716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587525/", + "id": 587525, + "name": "Masked Mayhem!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14-masked-mayhem/4000-587525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581715/", + "id": 581715, + "name": "Part Eight", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-581715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703198/", + "id": 703198, + "name": "Wolverine VS Vecchio Logan", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-336-wolverine-vs-vecchio-logan/4000-703198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688462/", + "id": 688462, + "name": "Power Play!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-12-power-play/4000-688462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-581619/", + "id": 581619, + "name": "The Stonishing Spider-Man vs. The Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13-the-stonishing-spide/4000-581619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595430/", + "id": 595430, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-123/4000-595430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578466/", + "id": 578466, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tsum-tsum-takeover-1-tpb/4000-578466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578362/", + "id": 578362, + "name": "Zodiac Triumphant!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-11-zodiac-triumphant/4000-578362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576814/", + "id": 576814, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-special-edition-1/4000-576814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576170/", + "id": 576170, + "name": "New Year's Retribution", + "site_detail_url": "https://comicvine.gamespot.com/marvel-new-years-eve-special-infinite-comic-1-new-/4000-576170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575869/", + "id": 575869, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-road-to-annihilation-1-vol/4000-575869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575857/", + "id": 575857, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-4-volume-4/4000-575857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575774/", + "id": 575774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-free-preview-1/4000-575774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575563/", + "id": 575563, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-575563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575549/", + "id": 575549, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-1-volume-1/4000-575549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574869/", + "id": 574869, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-574869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-562596/", + "id": 562596, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-14/4000-562596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-562592/", + "id": 562592, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black-4/4000-562592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558979/", + "id": 558979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-1/4000-558979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558972/", + "id": 558972, + "name": "The Smartest There Is! Part One: Marvel Now Or Never!", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-13-the-smartest-there/4000-558972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558970/", + "id": 558970, + "name": "Lizards", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-558970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558953/", + "id": 558953, + "name": "Mask of Death; Neon Dragon; Whose Crime Is It, Anyway?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-1-mask-of-death-neon/4000-558953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558408/", + "id": 558408, + "name": "Live Another Day", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-21-live-another-day/4000-558408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557376/", + "id": 557376, + "name": "Change Partners!", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-11-change-partners/4000-557376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557354/", + "id": 557354, + "name": "Brawl in the Family: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-1-brawl-in-the-/4000-557354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556480/", + "id": 556480, + "name": "Spidey No More!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-12-spidey-no-more/4000-556480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556467/", + "id": 556467, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-556467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703197/", + "id": 703197, + "name": "Ragni e ghiottoni", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-335-ragni-e-ghiottoni/4000-703197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575026/", + "id": 575026, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-10/4000-575026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-571686/", + "id": 571686, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spidey-after-school-special-1-volume-2/4000-571686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-570027/", + "id": 570027, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-great-responsib/4000-570027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566938/", + "id": 566938, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno-crossovers-1-tpb/4000-566938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566936/", + "id": 566936, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-of-the-spider-verse-spiders-vs-1-volu/4000-566936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-566715/", + "id": 566715, + "name": "Volume 18", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-18-volum/4000-566715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-563730/", + "id": 563730, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-lonely-are-the-hunted-1-volu/4000-563730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556765/", + "id": 556765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-halloween-comicfest-1/4000-556765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-555776/", + "id": 555776, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-free-previews-2016-2/4000-555776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-555545/", + "id": 555545, + "name": "Spring", + "site_detail_url": "https://comicvine.gamespot.com/vision-12-spring/4000-555545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-555539/", + "id": 555539, + "name": "Itsy Bitsy Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-10-itsy-bitsy-part-2/4000-555539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-555536/", + "id": 555536, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/prowler-1/4000-555536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-555530/", + "id": 555530, + "name": "Iron Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-555530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553951/", + "id": 553951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-kingpin-4/4000-553951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553945/", + "id": 553945, + "name": "Spider-Man's Superior", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-20-spider-mans-superior/4000-553945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553011/", + "id": 553011, + "name": "Howard's End", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-11-howards-end/4000-553011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553001/", + "id": 553001, + "name": "Dead No More Part One: The Land of the Living; The Night I Died", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy-1-dead-no-more-part-one-the-l/4000-553001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552171/", + "id": 552171, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-12/4000-552171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552170/", + "id": 552170, + "name": "Missing Out", + "site_detail_url": "https://comicvine.gamespot.com/spidey-11-missing-out/4000-552170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552157/", + "id": 552157, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black-1/4000-552157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552152/", + "id": 552152, + "name": "Before Dead No More Part Four: Change of Heart; The Clone Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-19-before-dead-no-more-part/4000-552152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569441/", + "id": 569441, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-9/4000-569441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-559169/", + "id": 559169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8/4000-559169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-629352/", + "id": 629352, + "name": "Regénesis", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-equipo-extincion-1-regene/4000-629352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606346/", + "id": 606346, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/agentes-de-shield-21/4000-606346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-562609/", + "id": 562609, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-enemies-and-allies-1-volume-2/4000-562609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-562598/", + "id": 562598, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-iron-fist-and-the-heroes-for-hire-1-volu/4000-562598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558956/", + "id": 558956, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-legacy-of-a-legend-1-tpb/4000-558956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558954/", + "id": 558954, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide-3-volume-3/4000-558954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558603/", + "id": 558603, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-good-night-and-good-duck-1-volume-/4000-558603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557359/", + "id": 557359, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-choosing-sides-1-tpb/4000-557359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556721/", + "id": 556721, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-omnibus-1-volume-1/4000-556721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556469/", + "id": 556469, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-1-tpb/4000-556469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551326/", + "id": 551326, + "name": "Tangled States Part Five: Democracy", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-11-tangled-states-part-five-democracy/4000-551326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551318/", + "id": 551318, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-11/4000-551318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551317/", + "id": 551317, + "name": "Itsy Bitsy Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-9-itsy-bitsy-part-1/4000-551317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551302/", + "id": 551302, + "name": "Deadpool and His Insufferable Pals; Nü Flesh", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual-1-deadpool-and-his-insufferable-pa/4000-551302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551298/", + "id": 551298, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers-5/4000-551298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550372/", + "id": 550372, + "name": "You and I Were Born For Better Things", + "site_detail_url": "https://comicvine.gamespot.com/vision-11-you-and-i-were-born-for-better-things/4000-550372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550371/", + "id": 550371, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-12/4000-550371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550364/", + "id": 550364, + "name": "Miles From Home", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-550364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550351/", + "id": 550351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-5/4000-550351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550344/", + "id": 550344, + "name": "Before Dead No More Part Three: Full Otto", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18-before-dead-no-more-part/4000-550344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-549524/", + "id": 549524, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-8/4000-549524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-549512/", + "id": 549512, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-4/4000-549512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548585/", + "id": 548585, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-11/4000-548585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548584/", + "id": 548584, + "name": "Bad Reputation", + "site_detail_url": "https://comicvine.gamespot.com/spidey-10-bad-reputation/4000-548584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-569483/", + "id": 569483, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-316/4000-569483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557518/", + "id": 557518, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-6/4000-557518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693611/", + "id": 693611, + "name": "Zwei vom selben Schlag", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-1-zwei-vom-selben-schlag/4000-693611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557519/", + "id": 557519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-7/4000-557519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-606345/", + "id": 606345, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/agentes-de-shield-20/4000-606345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557468/", + "id": 557468, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-1/4000-557468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-554624/", + "id": 554624, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-earths-mightiest-hero-2-volume-2/4000-554624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553967/", + "id": 553967, + "name": "That's Not Funny!", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-infinite-comic-1-thats-not-funny/4000-553967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553942/", + "id": 553942, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/all-new-inhumans-skyspears-1-volume-2/4000-553942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553410/", + "id": 553410, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance-rise-of-the-midnight-sons-1-t/4000-553410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553012/", + "id": 553012, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-universe-according-to-hembeck-1-tpb/4000-553012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552429/", + "id": 552429, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-clone-saga-omnibus-1-vol-1/4000-552429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552173/", + "id": 552173, + "name": "OGN", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-beats-up-the-marvel-u/4000-552173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552155/", + "id": 552155, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-doctor-strange-1/4000-552155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547297/", + "id": 547297, + "name": "Don't Do the Crime", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-13-dont-do-the-crime/4000-547297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547291/", + "id": 547291, + "name": "Understanding the Alien Heart", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-6-understanding-the-alien-heart/4000-547291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547280/", + "id": 547280, + "name": "...Hell If I Know...", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-10-hell-if-i-know/4000-547280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547268/", + "id": 547268, + "name": "Before Dead No More Part Two: Spark of Life", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-17-before-dead-no-more-part/4000-547268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-546069/", + "id": 546069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-11/4000-546069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-546060/", + "id": 546060, + "name": "Hydra Attacks - Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-546060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-546052/", + "id": 546052, + "name": "Lonely At the Top: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-8-lonely-at-the-top-part-3/4000-546052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-546051/", + "id": 546051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers-4/4000-546051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544999/", + "id": 544999, + "name": "Tangled States Part Four: Monarchy", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-10-tangled-states-part-four-monarchy/4000-544999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544983/", + "id": 544983, + "name": "Friends and Foes", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-gods-of-war-3-friends-and-foes/4000-544983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544981/", + "id": 544981, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-3/4000-544981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543757/", + "id": 543757, + "name": "Isn't It Bromantic? Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-8-isnt-it-bromantic-conclusion/4000-543757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543745/", + "id": 543745, + "name": "Before Dead No More Part One: Whatever the Cost", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-before-dead-no-more-part/4000-543745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543743/", + "id": 543743, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-all-different-avengers-annual-1/4000-543743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543742/", + "id": 543742, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-all-different-avengers-13/4000-543742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543741/", + "id": 543741, + "name": "Under New Management Episode Two: The Third Faction", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-8-under-new-management-episode-tw/4000-543741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543739/", + "id": 543739, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-accused-1/4000-543739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542631/", + "id": 542631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-10/4000-542631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542630/", + "id": 542630, + "name": "To Catch A Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-9-to-catch-a-spider/4000-542630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542622/", + "id": 542622, + "name": "Part 1: Here Comes the Tsum!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tsum-tsum-1-part-1-here-comes-the-tsum/4000-542622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552172/", + "id": 552172, + "name": "Ham-ilton Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-10-ham-ilton-pa/4000-552172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708258/", + "id": 708258, + "name": "Berserker", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan-1-berserker/4000-708258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703588/", + "id": 703588, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-all-new-x-men-7/4000-703588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553424/", + "id": 553424, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulks-2/4000-553424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553421/", + "id": 553421, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-553421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553420/", + "id": 553420, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-553420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553419/", + "id": 553419, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3/4000-553419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-617058/", + "id": 617058, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-66/4000-617058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-582265/", + "id": 582265, + "name": "Electrovers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-3-electrovers/4000-582265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552339/", + "id": 552339, + "name": "L'amour vache", + "site_detail_url": "https://comicvine.gamespot.com/all-new-deadpool-4-lamour-vache/4000-552339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551543/", + "id": 551543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-free-previews-2016-1/4000-551543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551315/", + "id": 551315, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-citizen-of-earth-1-tpb/4000-551315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551308/", + "id": 551308, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-doctor-strange-1-tpb/4000-551308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550358/", + "id": 550358, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/gamora-guardian-of-the-galaxy-1-tpb/4000-550358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550345/", + "id": 550345, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-the-spider-fly-effect-/4000-550345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-549657/", + "id": 549657, + "name": "¡¿Atrapados por el asombroso Spiderman?!", + "site_detail_url": "https://comicvine.gamespot.com/agentes-de-shield-19-atrapados-por-el-asombroso-sp/4000-549657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-549521/", + "id": 549521, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-by-carl-potts-and-jim-lee-1-t/4000-549521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-549515/", + "id": 549515, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-supersonic-1-volume-2/4000-549515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548823/", + "id": 548823, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-spectacular-1-tpb/4000-548823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548817/", + "id": 548817, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-secret-defenders-1-tpb/4000-548817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548583/", + "id": 548583, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-miles-morales-1-volume-1/4000-548583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541226/", + "id": 541226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-10/4000-541226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541221/", + "id": 541221, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-the-dark-kin/4000-541221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541210/", + "id": 541210, + "name": "Hydra Attacks", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-541210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541199/", + "id": 541199, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-4/4000-541199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541194/", + "id": 541194, + "name": "Amazing Grace Part Six: Lead Me Home", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-amazing-grace-part-six-l/4000-541194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540083/", + "id": 540083, + "name": "\"Convention Chaos\" or \"When Cometh the Plutocracy!\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-7-convention-chaos-or-when-come/4000-540083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540072/", + "id": 540072, + "name": "Earth's Fightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-10-earths-fightiest-heroes/4000-540072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539260/", + "id": 539260, + "name": "Tangled States Part Three: Brave New World", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-9-tangled-states-part-three-brave-new/4000-539260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539249/", + "id": 539249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-6/4000-539249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539248/", + "id": 539248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan-8/4000-539248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539238/", + "id": 539238, + "name": "Blind Man's Bluff Part II", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-9-blind-mans-bluff-part-ii/4000-539238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539235/", + "id": 539235, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-2/4000-539235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539234/", + "id": 539234, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-3/4000-539234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539232/", + "id": 539232, + "name": "Under New Management Episode One: Whose Side Are You On?", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-7-under-new-management-episode-on/4000-539232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538521/", + "id": 538521, + "name": "Blackout!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-8-blackout/4000-538521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538518/", + "id": 538518, + "name": "Citizen of Earth", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-5-citizen-of-earth/4000-538518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538500/", + "id": 538500, + "name": "Power Play Conclusion: Suit Yourself", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-15-power-play-conclusion-su/4000-538500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551324/", + "id": 551324, + "name": "Ham-ilton Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-9-ham-ilton-par/4000-551324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550538/", + "id": 550538, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-6/4000-550538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550478/", + "id": 550478, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-8/4000-550478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548835/", + "id": 548835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-september-infinite-comic-1/4000-548835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553418/", + "id": 553418, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-553418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612311/", + "id": 612311, + "name": "Peter Parker, El Espectacular Spiderman: Punto de ruptura", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-74-peter-parker-el-esp/4000-612311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610918/", + "id": 610918, + "name": "El Espectacular Spiderman: Integral", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-64-el-espectacular-spi/4000-610918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552338/", + "id": 552338, + "name": "La fin d'une erreur", + "site_detail_url": "https://comicvine.gamespot.com/all-new-deadpool-3-la-fin-dune-erreur/4000-552338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547295/", + "id": 547295, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-isnt-it-bromantic-1-volume-1/4000-547295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547290/", + "id": 547290, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-too-1-tpb/4000-547290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547286/", + "id": 547286, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4000-547286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-547283/", + "id": 547283, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-avenger-1-tpb/4000-547283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-546050/", + "id": 546050, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-amazing-grace-1-tpb/4000-546050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544609/", + "id": 544609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-invencible-iron-man-69/4000-544609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544608/", + "id": 544608, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/inhumanos-26/4000-544608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543758/", + "id": 543758, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spidey-first-day-1-volume-1/4000-543758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542918/", + "id": 542918, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-65/4000-542918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542705/", + "id": 542705, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-absolutely-everything-you-need-to-know-1-hc/4000-542705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542629/", + "id": 542629, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-todd-mcfarlane-omnibus-1-hc/4000-542629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542624/", + "id": 542624, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird-bobbi-morse-agent-of-shield-1-tpb/4000-542624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537958/", + "id": 537958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-9/4000-537958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537952/", + "id": 537952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-web-warriors-1/4000-537952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537946/", + "id": 537946, + "name": "Number One on the Maul Sheet!", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-6-number-one-on-the-maul-sheet/4000-537946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537944/", + "id": 537944, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-annual-1/4000-537944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537934/", + "id": 537934, + "name": "Lonely At the Top: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-6-lonely-at-the-top-part-1/4000-537934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537929/", + "id": 537929, + "name": "Chapters Seven & Eight", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-the-spider-fly-effect-/4000-537929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537253/", + "id": 537253, + "name": "Tangled States Part Two: Technocracy", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-8-tangled-states-part-two-technocracy/4000-537253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537236/", + "id": 537236, + "name": "Part Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4000-537236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537231/", + "id": 537231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-v-gambit-1/4000-537231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537230/", + "id": 537230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-choosing-sides-1/4000-537230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535363/", + "id": 535363, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-7/4000-535363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535358/", + "id": 535358, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nova-8/4000-535358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535347/", + "id": 535347, + "name": "Power Play Part 3: Avengers Assembled", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-14-power-play-part-3-avenge/4000-535347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534299/", + "id": 534299, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-8/4000-534299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534291/", + "id": 534291, + "name": "Beverly", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-8-beverly/4000-534291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534280/", + "id": 534280, + "name": "Gods and Monsters", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-gods-of-war-1-gods-and-monsters/4000-534280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534279/", + "id": 534279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-1/4000-534279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534276/", + "id": 534276, + "name": "The Coulson Protocols Episode Six: Unintended Consequences", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-6-the-coulson-protocols-episode-s/4000-534276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533030/", + "id": 533030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-10/4000-533030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533028/", + "id": 533028, + "name": "Civil Disturbance", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-9-civil-disturbance/4000-533028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533027/", + "id": 533027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-1/4000-533027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533026/", + "id": 533026, + "name": "Power Play Part 2: Civil War Reenactment", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-13-power-play-part-2-civil-/4000-533026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544111/", + "id": 544111, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-544111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544995/", + "id": 544995, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-7/4000-544995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-543907/", + "id": 543907, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-6/4000-543907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-546355/", + "id": 546355, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-41/4000-546355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552337/", + "id": 552337, + "name": "La traque au détraqué", + "site_detail_url": "https://comicvine.gamespot.com/all-new-deadpool-2-la-traque-au-detraque/4000-552337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551959/", + "id": 551959, + "name": "Union imparfaite", + "site_detail_url": "https://comicvine.gamespot.com/all-new-avengers-2-union-imparfaite/4000-551959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542500/", + "id": 542500, + "name": "Volume 3: 1981-1982", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-542500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541069/", + "id": 541069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4000-541069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540757/", + "id": 540757, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-invencible-iron-man-68/4000-540757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540362/", + "id": 540362, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-brand-new-day-the-complete-/4000-540362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540093/", + "id": 540093, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-trial-of-gambit-1-tpb/4000-540093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540091/", + "id": 540091, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-and-the-great-lakes-a/4000-540091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540077/", + "id": 540077, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-avenger-1-tpb/4000-540077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540066/", + "id": 540066, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-the-coulson-protocols-1-volume-1/4000-540066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539751/", + "id": 539751, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-john-byrne-omnibus-1-hc/4000-539751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539627/", + "id": 539627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/inhumanos-25/4000-539627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539253/", + "id": 539253, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-totally-awesome-hulk-cho-time-1-volume-1/4000-539253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538663/", + "id": 538663, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-worldwide-2-volume-2/4000-538663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538501/", + "id": 538501, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-time-runs-out-1-hc/4000-538501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-531899/", + "id": 531899, + "name": "Isn't It Bromantic? Part Five", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-5-isnt-it-bromantic-part-five/4000-531899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-531889/", + "id": 531889, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4000-531889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-531873/", + "id": 531873, + "name": "Amazing Grace Part Five: Flesh and Heart Shall Fail.", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-15-amazing-grace-part-five-/4000-531873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530740/", + "id": 530740, + "name": "Making the Grade", + "site_detail_url": "https://comicvine.gamespot.com/spidey-6-making-the-grade/4000-530740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529669/", + "id": 529669, + "name": "Tangled States Part One: Anarchy", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-7-tangled-states-part-one-anarchy/4000-529669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529646/", + "id": 529646, + "name": "The Coulson Protocols Episode Five: Shanghaied", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-5-the-coulson-protocols-episode-f/4000-529646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529169/", + "id": 529169, + "name": "Steve Rogers Captain America; The Amazing Spider-Man Up & About", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2016-captain-america-1-steve-r/4000-529169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-528509/", + "id": 528509, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-7/4000-528509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-528500/", + "id": 528500, + "name": "Chapter Five & Six", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-the-spider-fly-effect-/4000-528500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-528499/", + "id": 528499, + "name": "Power Play Part 1: The Stark Contrast", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-12-power-play-part-1-the-st/4000-528499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539258/", + "id": 539258, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-5/4000-539258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538661/", + "id": 538661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-4/4000-538661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539590/", + "id": 539590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-39/4000-539590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539589/", + "id": 539589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-40/4000-539589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535010/", + "id": 535010, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-37/4000-535010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552336/", + "id": 552336, + "name": "Sumus Omnes Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/all-new-deadpool-1-sumus-omnes-deadpool/4000-552336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541068/", + "id": 541068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-541068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539512/", + "id": 539512, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/agentes-de-shield-16/4000-539512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537330/", + "id": 537330, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-116/4000-537330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537229/", + "id": 537229, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/carnage-classic-1-tpb/4000-537229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535364/", + "id": 535364, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spidey-all-new-marvel-treasury-edition-1-volume-1/4000-535364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534292/", + "id": 534292, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-man-or-monster-1-v/4000-534292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534286/", + "id": 534286, + "name": "Volume 16: Killogy", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-16-volume-16-killogy/4000-534286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534281/", + "id": 534281, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-young-marvel-by-skottie-young-1/4000-534281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533502/", + "id": 533502, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-master-of-kung-fu-omnibus-1-volume-1/4000-533502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533045/", + "id": 533045, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-painted-comics-1-hc/4000-533045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533041/", + "id": 533041, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-marvel-treasury-edition-slipcase-1-hc/4000-533041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533040/", + "id": 533040, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-classic-omnibus-1-hc/4000-533040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-533035/", + "id": 533035, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-last-days-of-the-marvel-universe-1-hc/4000-533035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527162/", + "id": 527162, + "name": "The Amazing", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-1-the-amazing/4000-527162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527154/", + "id": 527154, + "name": "Dead Ends", + "site_detail_url": "https://comicvine.gamespot.com/spidey-5-dead-ends/4000-527154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527146/", + "id": 527146, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4000-527146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527131/", + "id": 527131, + "name": "Scorpio Rising Part 3: Signs From Above", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-11-scorpio-rising-part-3-si/4000-527131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-526067/", + "id": 526067, + "name": "Isn't It Bromantic? Part Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-4-isnt-it-bromantic-part-four/4000-526067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-525042/", + "id": 525042, + "name": "Nobody Knows Nothing", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-6-nobody-knows-nothing/4000-525042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-525038/", + "id": 525038, + "name": "Doomsday Off!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-4-doomsday-off/4000-525038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-525020/", + "id": 525020, + "name": "Chapter Three & Four", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-the-spider-fly-effect-/4000-525020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-525019/", + "id": 525019, + "name": "Scorpio Rising Part 2: Power Play", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-10-scorpio-rising-part-2-po/4000-525019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-525017/", + "id": 525017, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-inhumans-6/4000-525017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523270/", + "id": 523270, + "name": "P vs. NP", + "site_detail_url": "https://comicvine.gamespot.com/vision-6-p-vs-np/4000-523270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523266/", + "id": 523266, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-9/4000-523266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523258/", + "id": 523258, + "name": "Avengers Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-civil-w/4000-523258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523256/", + "id": 523256, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-8/4000-523256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538068/", + "id": 538068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-3/4000-538068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535516/", + "id": 535516, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-2/4000-535516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-534534/", + "id": 534534, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-1/4000-534534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705353/", + "id": 705353, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-apocalypse-zeit-der-apokalypse-3/4000-705353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704328/", + "id": 704328, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-29/4000-704328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539591/", + "id": 539591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-38/4000-539591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664039/", + "id": 664039, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-4-volume-4/4000-664039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544519/", + "id": 544519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-leyendas-del-clan-arana-1/4000-544519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541090/", + "id": 541090, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-62/4000-541090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537329/", + "id": 537329, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-115/4000-537329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-532159/", + "id": 532159, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-daily-bugle-newspaper-1/4000-532159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-531900/", + "id": 531900, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-tombstone-1-tpb/4000-531900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530736/", + "id": 530736, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/silk-sinister-1-volume-1/4000-530736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530729/", + "id": 530729, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-duck-hunt-1-volume-1/4000-530729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-530721/", + "id": 530721, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/all-new-inhumans-global-outreach-1-volume-1/4000-530721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529670/", + "id": 529670, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-of-the-spider-verse-electroverse-1-vo/4000-529670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529663/", + "id": 529663, + "name": "Volume 0", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-dont-call-it-a-team-up-1-volume/4000-529663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529662/", + "id": 529662, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-greater-power-1-volume-1/4000-529662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529619/", + "id": 529619, + "name": "Vol. 5", + "site_detail_url": "https://comicvine.gamespot.com/batman-66-5-vol-5/4000-529619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529226/", + "id": 529226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-gratis-comic-tag-2016-1/4000-529226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529150/", + "id": 529150, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-free-comic-book-day-france-1/4000-529150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527676/", + "id": 527676, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-34/4000-527676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524367/", + "id": 524367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-33/4000-524367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-522432/", + "id": 522432, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4000-522432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-522424/", + "id": 522424, + "name": "Amazing Grace Part Four: Within the Veil", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-14-amazing-grace-part-four-/4000-522424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-522422/", + "id": 522422, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-all-different-marvel-universe-1/4000-522422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-521348/", + "id": 521348, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-5/4000-521348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-520194/", + "id": 520194, + "name": "Skyspears Part 1", + "site_detail_url": "https://comicvine.gamespot.com/all-new-inhumans-5-skyspears-part-1/4000-520194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-518867/", + "id": 518867, + "name": "Isn't It Bromantic? Part Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-3-isnt-it-bromantic-part-three/4000-518867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-518866/", + "id": 518866, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-8/4000-518866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-518851/", + "id": 518851, + "name": "Scorpio Rising Part 1: One-Way Trip", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-9-scorpio-rising-part-1-one/4000-518851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-517835/", + "id": 517835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4000-517835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-517830/", + "id": 517830, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-7/4000-517830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-517823/", + "id": 517823, + "name": "Chapters One & Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-the-spider-fly-effect-/4000-517823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540445/", + "id": 540445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-307/4000-540445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-529004/", + "id": 529004, + "name": "Chapter Eight", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-529004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921218/", + "id": 921218, + "name": "El asombroso Spiderman 5: El libro de Ezequiel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-16-el-asombroso-spiderman-5-el-libro-d/4000-921218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921084/", + "id": 921084, + "name": "El asombroso Spiderman 3: Vida y muerte de las arañas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-10-el-asombroso-spiderman-3-vida-y-mue/4000-921084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921080/", + "id": 921080, + "name": "El asombroso Spiderman 2: Hasta que las estrellas se congelen", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-6-el-asombroso-spiderman-2-hasta-que-l/4000-921080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921079/", + "id": 921079, + "name": "El asombroso Spiderman 1: Vuelta a casa", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-3-el-asombroso-spiderman-1-vuelta-a-ca/4000-921079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920940/", + "id": 920940, + "name": "El asombroso Spiderman 6: Pecados del pasado", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-18-el-asombroso-spiderman-6-pecados-de/4000-920940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920939/", + "id": 920939, + "name": "El asombroso Spiderman 4: Feliz cumpleaños", + "site_detail_url": "https://comicvine.gamespot.com/marvel-saga-12-el-asombroso-spiderman-4-feliz-cump/4000-920939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704326/", + "id": 704326, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-28/4000-704326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703587/", + "id": 703587, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-all-new-x-men-6/4000-703587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612306/", + "id": 612306, + "name": "Masacre de Joe Kelly 2", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-70-masacre-de-joe-kell/4000-612306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542976/", + "id": 542976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-kingpin-todos-los-hombres-del-rey-1/4000-542976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527152/", + "id": 527152, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-the-complete-collection-1/4000-527152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-525030/", + "id": 525030, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-1/4000-525030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524390/", + "id": 524390, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-22/4000-524390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523259/", + "id": 523259, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-john-byrne-omnibus-1-volume-1/4000-523259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523251/", + "id": 523251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-civil-war-1/4000-523251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523247/", + "id": 523247, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-worldwide-1-volume-1/4000-523247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523246/", + "id": 523246, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2-volume-2/4000-523246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516960/", + "id": 516960, + "name": "The Spider-Verse Part Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-4/4000-516960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516947/", + "id": 516947, + "name": "Amazing Grace Part Three: Dangers, Toils and Snares", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-13-amazing-grace-part-three/4000-516947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516097/", + "id": 516097, + "name": "Electroverse Part IV: Resistance", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-4-electroverse-part-iv-resistance/4000-516097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516076/", + "id": 516076, + "name": "The Dark Kingdom Part 3: Black & White", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-8-the-dark-kingdom-part-3-b/4000-516076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514452/", + "id": 514452, + "name": "Isn't It Bromantic? Part Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-2-isnt-it-bromantic-part-two/4000-514452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514427/", + "id": 514427, + "name": "The Coulson Protocols Episode Two: Dangerous Liaisons", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-2-the-coulson-protocols-episode-t/4000-514427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513657/", + "id": 513657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-3/4000-513657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513656/", + "id": 513656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-513656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513654/", + "id": 513654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-and-groot-2/4000-513654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513647/", + "id": 513647, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx-1-hctpb/4000-513647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513638/", + "id": 513638, + "name": "The Dark Kingdom Part 2: Opposing Forces", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-7-the-dark-kingdom-part-2-o/4000-513638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-526461/", + "id": 526461, + "name": "Chapter Seven", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-526461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-523513/", + "id": 523513, + "name": "Chapter Six", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-523513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704310/", + "id": 704310, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-27/4000-704310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-522712/", + "id": 522712, + "name": "The Return of the Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-april-infinite-comic-1-the-retur/4000-522712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612305/", + "id": 612305, + "name": "El asombroso Spiderman de Roger Stern y John Romita Jr. - Edición Definitiva", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-69-el-asombroso-spider/4000-612305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610337/", + "id": 610337, + "name": "El Invencible Iron Man 2: La Furia del Dragón", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-59-el-invencible-iron-/4000-610337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552391/", + "id": 552391, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-37/4000-552391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539874/", + "id": 539874, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-36/4000-539874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539584/", + "id": 539584, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardianes-de-la-galaxia-36/4000-539584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538610/", + "id": 538610, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-mundo-de-batalla-7/4000-538610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538265/", + "id": 538265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-9/4000-538265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537327/", + "id": 537327, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-113/4000-537327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-532439/", + "id": 532439, + "name": "Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-sonderband-1-spider-verse/4000-532439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524365/", + "id": 524365, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-31/4000-524365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524364/", + "id": 524364, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-30/4000-524364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-522545/", + "id": 522545, + "name": "Volume Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-6-volume-s/4000-522545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-520209/", + "id": 520209, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-1-hc/4000-520209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-520197/", + "id": 520197, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-omnibus-2-volume-2/4000-520197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-518868/", + "id": 518868, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thor-corps-1-tpb/4000-518868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512641/", + "id": 512641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-deadpool-the-variants-1/4000-512641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512430/", + "id": 512430, + "name": "The Spider-Verse Part Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-3/4000-512430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510958/", + "id": 510958, + "name": "Electroverse Part III: Capacity", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-3-electroverse-part-iii-capacity/4000-510958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510952/", + "id": 510952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-3/4000-510952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510951/", + "id": 510951, + "name": "Beyond", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-9-beyond/4000-510951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510604/", + "id": 510604, + "name": "Amazing Grace Part Two: My Heart To Fear", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-12-amazing-grace-part-two-m/4000-510604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510503/", + "id": 510503, + "name": "Isn't It Bromantic? Part One", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-1-isnt-it-bromantic-part-one/4000-510503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510502/", + "id": 510502, + "name": "Greater Power Part Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-4-greater-power-part-four/4000-510502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510105/", + "id": 510105, + "name": "Enter the Sandman", + "site_detail_url": "https://comicvine.gamespot.com/spidey-2-enter-the-sandman/4000-510105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-509696/", + "id": 509696, + "name": "The Dark Kingdom Part 1: Turnabout", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-6-the-dark-kingdom-part-1-t/4000-509696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540446/", + "id": 540446, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-304/4000-540446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-520426/", + "id": 520426, + "name": "Chapter Five", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-520426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-517961/", + "id": 517961, + "name": "Chapter Four", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-517961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704517/", + "id": 704517, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-30/4000-704517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704297/", + "id": 704297, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-26/4000-704297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703187/", + "id": 703187, + "name": "Vecchio Logan (Secret Wars) 3", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-325-vecchio-logan-secret-wars-3/4000-703187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539622/", + "id": 539622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/inhumanos-20/4000-539622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539508/", + "id": 539508, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/agentes-de-shield-12/4000-539508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537187/", + "id": 537187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-increible-hulk-45/4000-537187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524368/", + "id": 524368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-22/4000-524368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524363/", + "id": 524363, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-29/4000-524363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524362/", + "id": 524362, + "name": "With Friends Like These...", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-28-with-friends-like-th/4000-524362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516964/", + "id": 516964, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/siege-battleworld-1-tpb/4000-516964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516951/", + "id": 516951, + "name": "Volume 15: All the Rest", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-15-volume-15-all-the-rest/4000-516951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516088/", + "id": 516088, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/punisher-vs-the-marvel-universe-1-tpb/4000-516088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516080/", + "id": 516080, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-warzones-1-tpb/4000-516080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514448/", + "id": 514448, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-journalbattleworld-1-tpb/4000-514448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514442/", + "id": 514442, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-daredevil-10-volume-10/4000-514442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514432/", + "id": 514432, + "name": "Volume 21", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-return-of-t/4000-514432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513658/", + "id": 513658, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-omnibus-1-hc/4000-513658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513651/", + "id": 513651, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-deadpool-and-wolverine-1-tpb/4000-513651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511992/", + "id": 511992, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-31/4000-511992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508894/", + "id": 508894, + "name": "The Spider-Verse Part Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-2/4000-508894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508883/", + "id": 508883, + "name": "Set In Stone", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-5-set-in-stone/4000-508883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508478/", + "id": 508478, + "name": "Main Title", + "site_detail_url": "https://comicvine.gamespot.com/batman-66-30-main-title/4000-508478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508443/", + "id": 508443, + "name": "Electroverse Part II: Charge", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-2-electroverse-part-ii-charge/4000-508443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508440/", + "id": 508440, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-end-5/4000-508440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508436/", + "id": 508436, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-2/4000-508436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508423/", + "id": 508423, + "name": "Amazing Grace Part One: A Wretch Like Me", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-11-amazing-grace-part-one-a/4000-508423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508410/", + "id": 508410, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-537/4000-508410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507781/", + "id": 507781, + "name": "Greater Power Part Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-3-greater-power-part-three/4000-507781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507766/", + "id": 507766, + "name": "High Priority", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-4-high-priority/4000-507766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507187/", + "id": 507187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-1/4000-507187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516296/", + "id": 516296, + "name": "Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-516296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514672/", + "id": 514672, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-february-infinite-comic-1/4000-514672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513809/", + "id": 513809, + "name": "Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-513809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704291/", + "id": 704291, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-25/4000-704291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-562220/", + "id": 562220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-1/4000-562220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512038/", + "id": 512038, + "name": "Circus of Crime", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-27-circus-of-crime/4000-512038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539873/", + "id": 539873, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-34/4000-539873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539621/", + "id": 539621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/inhumanos-19/4000-539621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512438/", + "id": 512438, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-1-tpb/4000-512438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511990/", + "id": 511990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-30/4000-511990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511724/", + "id": 511724, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-maninhumansall-new-captain-america-/4000-511724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510943/", + "id": 510943, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/guardians-team-up-unlikely-story-1-volume-2/4000-510943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510939/", + "id": 510939, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-flashbacks-1-tpb/4000-510939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510501/", + "id": 510501, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-and-avengers-1/4000-510501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510495/", + "id": 510495, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-secret-secret-wars-1-tpb/4000-510495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510490/", + "id": 510490, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-deadpool-1/4000-510490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510489/", + "id": 510489, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-volume-1/4000-510489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506661/", + "id": 506661, + "name": "Active Mission: Kingslayer", + "site_detail_url": "https://comicvine.gamespot.com/shield-12-active-mission-kingslayer/4000-506661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506658/", + "id": 506658, + "name": "The Spider-Verse Part One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-1/4000-506658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506652/", + "id": 506652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/groot-6/4000-506652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506182/", + "id": 506182, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-1/4000-506182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506180/", + "id": 506180, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-too-1/4000-506180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505531/", + "id": 505531, + "name": "Electroverse Part One: Static; Steampunk'd", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-1-electroverse-part-one-static-steamp/4000-505531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504948/", + "id": 504948, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-0/4000-504948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504929/", + "id": 504929, + "name": "Friendly Fire", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-3-friendly-fire/4000-504929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511725/", + "id": 511725, + "name": "Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-511725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688461/", + "id": 688461, + "name": "Hunger Games!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-26-hunger-games/4000-688461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510368/", + "id": 510368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-20/4000-510368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510359/", + "id": 510359, + "name": "Hammer-Time!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-25-hammer-time/4000-510359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-509161/", + "id": 509161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-20/4000-509161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635579/", + "id": 635579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-24/4000-635579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539872/", + "id": 539872, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-33/4000-539872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512068/", + "id": 512068, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-3/4000-512068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511989/", + "id": 511989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-29/4000-511989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511937/", + "id": 511937, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-the-gift-1-volume-12/4000-511937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510423/", + "id": 510423, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-manthor-4/4000-510423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-509704/", + "id": 509704, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-alias-4-volume-4/4000-509704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508906/", + "id": 508906, + "name": "Volume 2: 1979-1981", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-508906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508624/", + "id": 508624, + "name": "Volume 17", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-17-volum/4000-508624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508424/", + "id": 508424, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-renew-your-vows-warzones-1-/4000-508424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507463/", + "id": 507463, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-6/4000-507463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507186/", + "id": 507186, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-warzones-1-tpb/4000-507186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507178/", + "id": 507178, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-4-volume-4/4000-507178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507176/", + "id": 507176, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-3-volume-3/4000-507176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507053/", + "id": 507053, + "name": "Volume 0", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-most-wanted-1-volume-0/4000-507053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-507049/", + "id": 507049, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-autobiography-of-matt-murdock-1-volu/4000-507049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504679/", + "id": 504679, + "name": "Doom Everlasting", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriorsav/4000-504679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504348/", + "id": 504348, + "name": "The Green Goblin Stole the Infinity Gauntlet?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-dark-reign-1-the-green-goblin-sto/4000-504348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504346/", + "id": 504346, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-2/4000-504346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504319/", + "id": 504319, + "name": "Before the Storm", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-3001-5-before-the-storm/4000-504319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503568/", + "id": 503568, + "name": "Tried To Free Thanos?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-guardians-of-the-galaxy-1-tried-t/4000-503568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503562/", + "id": 503562, + "name": "\"...That Time I Teamed Up With the Howling Commandos!\"", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-1/4000-503562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503554/", + "id": 503554, + "name": "Water Proof", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2-water-proof/4000-503554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502874/", + "id": 502874, + "name": "An Imperfect Union", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-1-an-imperfect-union/4000-502874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502873/", + "id": 502873, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-1/4000-502873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502872/", + "id": 502872, + "name": "Greater Power Part One", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-1-greater-power-part-one/4000-502872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502132/", + "id": 502132, + "name": "Part Five: The Grand Finale; The Long Row!", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-5-part-five-the-grand-finale-the-lon/4000-502132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502130/", + "id": 502130, + "name": "We Raise Them Up...Just So We Can Pull Them Down.", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-6-we-raise-them-upjust-so-we-can-pull-/4000-502130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502124/", + "id": 502124, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-spectacular-1/4000-502124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502123/", + "id": 502123, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-contest-of-champions-1/4000-502123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502108/", + "id": 502108, + "name": "Worldwide", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-worldwide/4000-502108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704988/", + "id": 704988, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-die-x-men-1/4000-704988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702331/", + "id": 702331, + "name": "La scuola è finita", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-44-la-scuola-e-finita/4000-702331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698554/", + "id": 698554, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-1/4000-698554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505249/", + "id": 505249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-22/4000-505249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612302/", + "id": 612302, + "name": "Marvel 75 Años: La Era Moderna", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-66-marvel-75-anos-la-e/4000-612302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539871/", + "id": 539871, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-32/4000-539871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538606/", + "id": 538606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-mundo-de-batalla-3/4000-538606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511986/", + "id": 511986, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-28/4000-511986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506651/", + "id": 506651, + "name": "Volume 14: Suicide Kings", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-14-volume-14-suicide-kings/4000-506651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506174/", + "id": 506174, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-battleworld-1-tpb/4000-506174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505972/", + "id": 505972, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-warzones-1-tpb/4000-505972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505611/", + "id": 505611, + "name": "HC/SC", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantastic-incredible-a-marvelous-memoir-1-/4000-505611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504930/", + "id": 504930, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-kurt-busiek-and-george-perez-omnibus-2/4000-504930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501754/", + "id": 501754, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-unbeatable-squirrel-girl-1/4000-501754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501619/", + "id": 501619, + "name": "Active Mission: The Duck Called H.O.W.A.R.D.", + "site_detail_url": "https://comicvine.gamespot.com/shield-10-active-mission-the-duck-called-howard/4000-501619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501030/", + "id": 501030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-silk-1/4000-501030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501027/", + "id": 501027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-1/4000-501027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500307/", + "id": 500307, + "name": "Part Four: Intelligent Design", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-4-part-four-intelligent-design/4000-500307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499743/", + "id": 499743, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx-4/4000-499743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499740/", + "id": 499740, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-4/4000-499740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499739/", + "id": 499739, + "name": "I'll Always Be There For You.", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-5-ill-always-be/4000-499739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499045/", + "id": 499045, + "name": "Part Three: Goblin Knight In Shining Armor; The Enemy Within!", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-3-part-three-goblin-knight-in-shinin/4000-499045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499038/", + "id": 499038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/groot-4/4000-499038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499037/", + "id": 499037, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/future-imperfect-5/4000-499037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506350/", + "id": 506350, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-24/4000-506350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739943/", + "id": 739943, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/eppo-stripblad-201523/4000-739943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505487/", + "id": 505487, + "name": "Main Title Part 2", + "site_detail_url": "https://comicvine.gamespot.com/batman-66-73-main-title-part-2/4000-505487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505745/", + "id": 505745, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-23/4000-505745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505163/", + "id": 505163, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-22/4000-505163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703148/", + "id": 703148, + "name": "Nightcrawler 2 : Cuore di tenebra", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-237-nightcrawler-2-cuore-di-tenebra/4000-703148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702327/", + "id": 702327, + "name": "Sfida tra cervelloni", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-43-sfida-tra-cervelloni/4000-702327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635526/", + "id": 635526, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-22/4000-635526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544647/", + "id": 544647, + "name": "Futuro Imperfecto", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-2099-2-futuro-imperfecto/4000-544647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541774/", + "id": 541774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-94/4000-541774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539870/", + "id": 539870, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-31/4000-539870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538845/", + "id": 538845, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-56/4000-538845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511988/", + "id": 511988, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-27/4000-511988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510420/", + "id": 510420, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-manthor-2/4000-510420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504589/", + "id": 504589, + "name": "Volume 0", + "site_detail_url": "https://comicvine.gamespot.com/silk-the-life-and-times-of-cindy-moon-1-volume-0/4000-504589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504338/", + "id": 504338, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/guardians-team-up-guardians-assemble-1-volume-1/4000-504338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503447/", + "id": 503447, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/capitana-britania-y-los-defensores-1/4000-503447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503446/", + "id": 503446, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-4/4000-503446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503445/", + "id": 503445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-3/4000-503445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502867/", + "id": 502867, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-defenders-5-volume-5/4000-502867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502859/", + "id": 502859, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/damage-control-the-complete-collection-1-tpb/4000-502859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502246/", + "id": 502246, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-encyclopedia-1-hc/4000-502246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502138/", + "id": 502138, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-omnibus-1-hc/4000-502138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502129/", + "id": 502129, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/shield-the-complete-collection-1-hc/4000-502129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502111/", + "id": 502111, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-age-of-ultron-1-sc/4000-502111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502110/", + "id": 502110, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-more-bullying-1-tpb/4000-502110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498392/", + "id": 498392, + "name": "That Time I Teamed Up With... The Iron Patriot?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-1/4000-498392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498385/", + "id": 498385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-secret-secret-wars-4/4000-498385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498384/", + "id": 498384, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-3/4000-498384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497959/", + "id": 497959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-4/4000-497959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497958/", + "id": 497958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-6/4000-497958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497957/", + "id": 497957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-secret-love-1/4000-497957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497935/", + "id": 497935, + "name": "\"Daddy has to Go Away for a While\"", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-4-daddy-has-to-/4000-497935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497402/", + "id": 497402, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-8/4000-497402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497388/", + "id": 497388, + "name": "Super Hero Battle For the Fate of the New York and Possibly the World", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-5-super-hero-battle-for-the-fate-o/4000-497388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497384/", + "id": 497384, + "name": "Spiral Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-201-spiral-conclusion/4000-497384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496891/", + "id": 496891, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-end-4/4000-496891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496890/", + "id": 496890, + "name": "Part Two: You Say You Want Evolution; Avengers At the Gate!", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-2-part-two-you-say-you-want-evolutio/4000-496890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496883/", + "id": 496883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-team-up-9/4000-496883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496880/", + "id": 496880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx-3/4000-496880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496877/", + "id": 496877, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2/4000-496877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496873/", + "id": 496873, + "name": "Calling a Family Meeting", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-calling-a-fam/4000-496873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504511/", + "id": 504511, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-21/4000-504511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503793/", + "id": 503793, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-20/4000-503793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503033/", + "id": 503033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-19/4000-503033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502291/", + "id": 502291, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-18/4000-502291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500626/", + "id": 500626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-x-men-axis-4/4000-500626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538844/", + "id": 538844, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-55/4000-538844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513261/", + "id": 513261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-22/4000-513261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511984/", + "id": 511984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-26/4000-511984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511169/", + "id": 511169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-die-x-men-sonderband-6/4000-511169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501617/", + "id": 501617, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/monster-of-frankenstein-1-tpb/4000-501617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501023/", + "id": 501023, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-what-the-duck-1-tpb/4000-501023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501015/", + "id": 501015, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-spiral-1-volume-5/4000-501015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500359/", + "id": 500359, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/step-aside-pops-a-hark-a-vagrant-collection-1-hc/4000-500359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499377/", + "id": 499377, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-mundo-de-batalla-1/4000-499377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499373/", + "id": 499373, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-1/4000-499373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498727/", + "id": 498727, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17/4000-498727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498476/", + "id": 498476, + "name": "International Heroes", + "site_detail_url": "https://comicvine.gamespot.com/back-issue-83-international-heroes/4000-498476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497685/", + "id": 497685, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-16/4000-497685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497588/", + "id": 497588, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-x-men-axis-3/4000-497588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496394/", + "id": 496394, + "name": "\"That Time I Teamed Up With Captain America and Wolverine\"", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-9/4000-496394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496388/", + "id": 496388, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-secret-secret-wars-3/4000-496388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495279/", + "id": 495279, + "name": "The Death of Everything That Ever Was or Will Be", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-13-the-death-of-everything-that-ever/4000-495279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495266/", + "id": 495266, + "name": "Theirs is a Land With a Wall Around It...", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-the-mighty-defenders-1-theirs-/4000-495266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494330/", + "id": 494330, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-3/4000-494330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494329/", + "id": 494329, + "name": "Part One: Altered States; Mayday Parker: Spider-Woman in... \"Shattered!\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-1-part-one-altered-states-mayday-par/4000-494329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494317/", + "id": 494317, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1/4000-494317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494316/", + "id": 494316, + "name": "Part 2: \"Because We Said So, That's Why.\"", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-2-part-2-becaus/4000-494316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493804/", + "id": 493804, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-7/4000-493804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493803/", + "id": 493803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-end-3/4000-493803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493799/", + "id": 493799, + "name": "Who Killed Tony Stark?; The Smashing Cure", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-journal-3-who-killed-tony-stark-the-sm/4000-493799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493798/", + "id": 493798, + "name": "All the Angels Sing, All the Devils Dance", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-4-all-the-angels-sing-all-the-devils-d/4000-493798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493791/", + "id": 493791, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx-2/4000-493791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493788/", + "id": 493788, + "name": "Spiral Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-191-spiral-part-four/4000-493788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501755/", + "id": 501755, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-17/4000-501755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688460/", + "id": 688460, + "name": "Spider Versus Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-18-spider-versus-spider/4000-688460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-501151/", + "id": 501151, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-16/4000-501151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500529/", + "id": 500529, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-15/4000-500529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696551/", + "id": 696551, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx-1/4000-696551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499894/", + "id": 499894, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-14/4000-499894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704420/", + "id": 704420, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-24/4000-704420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702324/", + "id": 702324, + "name": "La tela si stringe", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-42-la-tela-si-stringe/4000-702324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702323/", + "id": 702323, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-41/4000-702323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499173/", + "id": 499173, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-13/4000-499173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573409/", + "id": 573409, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-39/4000-573409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511981/", + "id": 511981, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-25/4000-511981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503913/", + "id": 503913, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-neuen-x-men-25/4000-503913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499983/", + "id": 499983, + "name": "Chapitre 4 : L'affrontement final", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-x-men-axis-4-chapitre-4-laffrontement/4000-499983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499656/", + "id": 499656, + "name": "Guerre à la terreur", + "site_detail_url": "https://comicvine.gamespot.com/x-men-26-guerre-a-la-terreur/4000-499656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498272/", + "id": 498272, + "name": "Band 1", + "site_detail_url": "https://comicvine.gamespot.com/axis-sonderband-1-band-1/4000-498272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497965/", + "id": 497965, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-menavengers-onslaught-omnibus-1-hc/4000-497965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497961/", + "id": 497961, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-omnibus-1-volume-1/4000-497961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497952/", + "id": 497952, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-2/4000-497952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497949/", + "id": 497949, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1990s-omnibus-1-hc/4000-497949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497587/", + "id": 497587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-x-men-axis-2/4000-497587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497386/", + "id": 497386, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-typhoids-kiss-1-tpb/4000-497386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497385/", + "id": 497385, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-by-christopher-priest-the-complete-c/4000-497385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493046/", + "id": 493046, + "name": "...That Time I Took Over Spider-Man's Lame Comic Book and made It Awwwesssome!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-8/4000-493046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493041/", + "id": 493041, + "name": "Dr. Strange in a Dr. Strange Land", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-4-dr-strange-in-a-dr-strange-land/4000-493041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493032/", + "id": 493032, + "name": "Part 1: A Stranger Came to Town", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-vs-marvel-zombies-1-part-1-a-strange/4000-493032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-492216/", + "id": 492216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-s-secret-secret-wars-2/4000-492216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-491531/", + "id": 491531, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-end-2/4000-491531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-491530/", + "id": 491530, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-2/4000-491530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-491526/", + "id": 491526, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-5/4000-491526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-491510/", + "id": 491510, + "name": "Sorry, We're Closed", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-mighty-avengers-9-sorry-we/4000-491510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490887/", + "id": 490887, + "name": "The Eye of Doom", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-3-the-eye-of-doom/4000-490887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490881/", + "id": 490881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx-1/4000-490881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490876/", + "id": 490876, + "name": "Part 1: Why We Can't Have Nice Things", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-renew-your-vows-1-part-1-wh/4000-490876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490875/", + "id": 490875, + "name": "Spiral Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18-1-spiral-part-three/4000-490875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498381/", + "id": 498381, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-graveyard-shift-1-volume-4/4000-498381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498600/", + "id": 498600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-12/4000-498600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498081/", + "id": 498081, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-11/4000-498081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496590/", + "id": 496590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-15/4000-496590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497553/", + "id": 497553, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-10/4000-497553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497012/", + "id": 497012, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-9/4000-497012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704419/", + "id": 704419, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-23/4000-704419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702320/", + "id": 702320, + "name": "Primo giorno di scuola", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-40-primo-giorno-di-scuola/4000-702320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601216/", + "id": 601216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-26/4000-601216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573408/", + "id": 573408, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-38/4000-573408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544648/", + "id": 544648, + "name": "Universo Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderwoman-1-universo-spiderman/4000-544648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541771/", + "id": 541771, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-91/4000-541771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513251/", + "id": 513251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-20/4000-513251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511976/", + "id": 511976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-24/4000-511976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499982/", + "id": 499982, + "name": "Chapitre 3 : Nouveau désordre mondial", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-x-men-axis-3-chapitre-3-nouveau-desor/4000-499982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496395/", + "id": 496395, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-the-ultimate-spider-man-ultimate-col/4000-496395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496083/", + "id": 496083, + "name": "Vol. 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time-the-complete-collectio/4000-496083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495807/", + "id": 495807, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-x-men-1-tpb/4000-495807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495594/", + "id": 495594, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-spider-verse-1-volume-2/4000-495594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494943/", + "id": 494943, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-spider-verse-1-volume-3/4000-494943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494321/", + "id": 494321, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/king-size-kirby-1-hc/4000-494321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494320/", + "id": 494320, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-epic-collection-the-fury-of-iron-fist-1-/4000-494320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493817/", + "id": 493817, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/mike-zecks-classic-marvel-stories-artists-edition-/4000-493817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493800/", + "id": 493800, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/shield-perfect-bullets-1-volume-1/4000-493800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489905/", + "id": 489905, + "name": "...That Time I Teamed Up With Stan The Janitor!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-7/4000-489905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489329/", + "id": 489329, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/Ultimate%20End-1/4000-489329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489327/", + "id": 489327, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/Spider-Verse-1/4000-489327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489326/", + "id": 489326, + "name": "Soldier Supreme; M.O.D.O.K. Madness", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-battleworld-1-soldier-supreme-m-o-d-o-/4000-489326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489320/", + "id": 489320, + "name": "Born One Morning and the Sun didn't Shine", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard-14-born-one-morning-and-the-s/4000-489320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489316/", + "id": 489316, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-s-secret-secret-wars-1/4000-489316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-488657/", + "id": 488657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-4/4000-488657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-488648/", + "id": 488648, + "name": "Nothing's Gonna Touch You In These Golden Years; Double's Jeopardy", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-3-nothings-gonna-touch-you-in-thes/4000-488648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-488644/", + "id": 488644, + "name": "Bad News and Worse News", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-8-bad-news-and/4000-488644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487848/", + "id": 487848, + "name": "Madness In America!!", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-5-madness-in-america/4000-487848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487843/", + "id": 487843, + "name": "The End Times", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-1-the-end-times/4000-487843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487835/", + "id": 487835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-team-up-5/4000-487835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487829/", + "id": 487829, + "name": "The Graveyard Shift Part Three: Trade Secrets", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18-the-graveyard-shift-part/4000-487829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487828/", + "id": 487828, + "name": "Inhuman Error: Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/all-new-captain-america-special-1-inhuman-error-pa/4000-487828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487501/", + "id": 487501, + "name": "Secret Wars #0; Attack on Avengers", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2015-secret-wars-0-secret-wars/4000-487501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496532/", + "id": 496532, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-8/4000-496532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495477/", + "id": 495477, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14/4000-495477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496002/", + "id": 496002, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-7/4000-496002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494051/", + "id": 494051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13/4000-494051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495386/", + "id": 495386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-6/4000-495386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495385/", + "id": 495385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-5/4000-495385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495384/", + "id": 495384, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-4/4000-495384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495383/", + "id": 495383, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-3/4000-495383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495382/", + "id": 495382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-2/4000-495382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495381/", + "id": 495381, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-1/4000-495381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493442/", + "id": 493442, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-493442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-491746/", + "id": 491746, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-11/4000-491746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573407/", + "id": 573407, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-37/4000-573407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513250/", + "id": 513250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-19/4000-513250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499981/", + "id": 499981, + "name": "Chapitre 2 : Inversion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-x-men-axis-2-chapitre-2-inversion/4000-499981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499654/", + "id": 499654, + "name": "L'aventure ultime", + "site_detail_url": "https://comicvine.gamespot.com/x-men-24-laventure-ultime/4000-499654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498711/", + "id": 498711, + "name": "Spiderman 34: Spidermen", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-85-spiderman-34-spidermen/4000-498711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493042/", + "id": 493042, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-the-complete-collection-1-vol-1/4000-493042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-492214/", + "id": 492214, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-open-for-busin/4000-492214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-491161/", + "id": 491161, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-not-brand-echh-1-volume-1/4000-491161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490911/", + "id": 490911, + "name": "Volume 1: 1977-1979", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-490911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490884/", + "id": 490884, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-hem-1/4000-490884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490878/", + "id": 490878, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-1-tpb/4000-490878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487220/", + "id": 487220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-miles-morales-ultimate-spider-man-1/4000-487220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487217/", + "id": 487217, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men-6/4000-487217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487215/", + "id": 487215, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-3/4000-487215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487205/", + "id": 487205, + "name": "...That Time I Teamed Up With the Hulk!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-6/4000-487205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487203/", + "id": 487203, + "name": "The End is Fourever (Part 4); Rekindled; The Real Real; Trash Man!; Time and Tide", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-645-the-end-is-fourever-part-4-reki/4000-487203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486725/", + "id": 486725, + "name": "Inhuman Error: Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-special-1-inhuman-error-part-2-of-3/4000-486725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486718/", + "id": 486718, + "name": "Chapter Four", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-4-chapter-four/4000-486718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486716/", + "id": 486716, + "name": "Spiral Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-17-1-spiral-part-two/4000-486716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486156/", + "id": 486156, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-house-of-m-1/4000-486156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486153/", + "id": 486153, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men-5/4000-486153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486146/", + "id": 486146, + "name": "Kick 'Splode", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-7-kick-splode/4000-486146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486144/", + "id": 486144, + "name": "Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-3-chapter-three/4000-486144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-485519/", + "id": 485519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-11/4000-485519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-485513/", + "id": 485513, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-2/4000-485513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-485511/", + "id": 485511, + "name": "The Aristocrats; Shiklah's Catching Up; The Family S.H.I.E.L.D.; What Do We Want? Apocalypse! When Do We Want It? Now!; The Twhipster and the Quipster Battle the Hipsters!; All About the Benjamins; Parents: The Meeting", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-45-the-aristocrats-shiklahs-catching-up-t/4000-485511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-485505/", + "id": 485505, + "name": "Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-2-chapter-two/4000-485505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-484906/", + "id": 484906, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-zombies-1/4000-484906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-484890/", + "id": 484890, + "name": "Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-1-chapter-one/4000-484890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-484888/", + "id": 484888, + "name": "The Graveyard Shift Part Two: Trust Issues", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-17-the-graveyard-shift-part/4000-484888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-484802/", + "id": 484802, + "name": "OGN", + "site_detail_url": "https://comicvine.gamespot.com/avengers-rage-of-ultron-1-ogn/4000-484802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490518/", + "id": 490518, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-10/4000-490518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702317/", + "id": 702317, + "name": "Addio Logan", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-38-addio-logan/4000-702317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-635162/", + "id": 635162, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-17/4000-635162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601214/", + "id": 601214, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-24/4000-601214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573406/", + "id": 573406, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-36/4000-573406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558788/", + "id": 558788, + "name": "Duende", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-y-patrulla-x-axis-compendio-2-duende/4000-558788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539499/", + "id": 539499, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/agentes-de-shield-3/4000-539499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513249/", + "id": 513249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-18/4000-513249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511973/", + "id": 511973, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-22/4000-511973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499653/", + "id": 499653, + "name": "Le mutant oméga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-23-le-mutant-omega/4000-499653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490159/", + "id": 490159, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-40th-anniversary-1-hc/4000-490159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489908/", + "id": 489908, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-reborn-1-volume-2/4000-489908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489314/", + "id": 489314, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/axis-revolutions-1-tpb/4000-489314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487591/", + "id": 487591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-75-ans-de-super-heros-fcbd-france-2015-1/4000-487591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-483354/", + "id": 483354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-5/4000-483354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482693/", + "id": 482693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-2/4000-482693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482682/", + "id": 482682, + "name": "Not In Continuity", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-6-not-in-conti/4000-482682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482679/", + "id": 482679, + "name": "Spiral Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-1-spiral-part-one/4000-482679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482165/", + "id": 482165, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men-4/4000-482165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482157/", + "id": 482157, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-1/4000-482157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482155/", + "id": 482155, + "name": "Back in Blue (Part 4): The End is Fourever (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-644-back-in-blue-part-4-the-end-is-/4000-482155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482152/", + "id": 482152, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-3/4000-482152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482151/", + "id": 482151, + "name": "Inhuman Error: Part 1 of 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-special-1-inhuman-error-par/4000-482151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482150/", + "id": 482150, + "name": "The Graveyard Shift Part One: The Late, Late Mr. Parker", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-the-graveyard-shift-part/4000-482150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-481607/", + "id": 481607, + "name": "Guardians of the Galaxy Meet the Avengers Part One", + "site_detail_url": "https://comicvine.gamespot.com/guardians-team-up-1-guardians-of-the-galaxy-meet-t/4000-481607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-481605/", + "id": 481605, + "name": "It All Comes Crashing Down", + "site_detail_url": "https://comicvine.gamespot.com/avengers-42-it-all-comes-crashing-down/4000-481605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540447/", + "id": 540447, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-290/4000-540447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486925/", + "id": 486925, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8/4000-486925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601213/", + "id": 601213, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-23/4000-601213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573405/", + "id": 573405, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-35/4000-573405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539611/", + "id": 539611, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/inhumanos-10/4000-539611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513248/", + "id": 513248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-17/4000-513248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511971/", + "id": 511971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-21/4000-511971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503908/", + "id": 503908, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-neuen-x-men-21/4000-503908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503865/", + "id": 503865, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-x-men-3/4000-503865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487443/", + "id": 487443, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-1-hc/4000-487443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487435/", + "id": 487435, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-by-aaron-deodato-1-tpb/4000-487435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487416/", + "id": 487416, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-edge-of-spider-verse-1-tpb/4000-487416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486880/", + "id": 486880, + "name": "Book 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-alien-costume-/4000-486880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486428/", + "id": 486428, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-back-in-blue-1-volume-3/4000-486428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-485943/", + "id": 485943, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-vibranium-collection-1-hc/4000-485943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480681/", + "id": 480681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men-3/4000-480681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480678/", + "id": 480678, + "name": "Active Mission: Home Invasion", + "site_detail_url": "https://comicvine.gamespot.com/shield-3-active-mission-home-invasion/4000-480678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480674/", + "id": 480674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-4/4000-480674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480672/", + "id": 480672, + "name": "Back in Blue (Part 3): The End is Fourever (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-643-back-in-blue-part-3-the-end-is-/4000-480672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480668/", + "id": 480668, + "name": "Spider-Verse Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-15-spider-verse-epilogue/4000-480668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479982/", + "id": 479982, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/silk-1/4000-479982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479969/", + "id": 479969, + "name": "We Are From Beyond", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-5-we-are-from-/4000-479969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479263/", + "id": 479263, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-4/4000-479263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479254/", + "id": 479254, + "name": "Spider-Verse Part Six: Web Warriors", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-14-spider-verse-part-six-we/4000-479254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479253/", + "id": 479253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-36/4000-479253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486864/", + "id": 486864, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-7/4000-486864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-486863/", + "id": 486863, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-6/4000-486863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628018/", + "id": 628018, + "name": "La Edad Heroica", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-los-vengadores-1-la-edad-heroica/4000-628018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541767/", + "id": 541767, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-87/4000-541767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538838/", + "id": 538838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-49/4000-538838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513247/", + "id": 513247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-16/4000-513247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511970/", + "id": 511970, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-20/4000-511970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510275/", + "id": 510275, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-2/4000-510275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-483684/", + "id": 483684, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-1/4000-483684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-483670/", + "id": 483670, + "name": "Volume 22", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-round-robin-1-v/4000-483670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-483056/", + "id": 483056, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-the-ultimate-adventure-1-volume-6/4000-483056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482903/", + "id": 482903, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-3-volume-3/4000-482903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-481878/", + "id": 481878, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-s-the-avengers-age-of-ultron-prelude-1-tpb/4000-481878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477856/", + "id": 477856, + "name": "Thor Vs. Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor-4-thor-vs-thor/4000-477856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477855/", + "id": 477855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men-2/4000-477855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477854/", + "id": 477854, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-8/4000-477854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477850/", + "id": 477850, + "name": "...That Time I Teamed Up With (well, you know who).", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-3/4000-477850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477849/", + "id": 477849, + "name": "Part 11: Escapes", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-11-part-11-escapes/4000-477849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476795/", + "id": 476795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-3/4000-476795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476793/", + "id": 476793, + "name": "The Hero", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spiders-3-the-hero/4000-476793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476786/", + "id": 476786, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-23/4000-476786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476785/", + "id": 476785, + "name": "Back in Blue (Part 2): The End is Fourever (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-642-back-in-blue-part-2-the-end-is-/4000-476785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476783/", + "id": 476783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-s-art-of-war-4/4000-476783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476779/", + "id": 476779, + "name": "Spider-Verse Part 5: Spider-Men: No More", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-13-spider-verse-part-5-spid/4000-476779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475945/", + "id": 475945, + "name": "It's Showtime; Anansi: A Spider In Sheep's Clothing; With Great Power Comes No Future; El Espíritu de las Calles; It's the Little Things", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-2-its-showtime-anansi-a-spider-in-she/4000-475945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475464/", + "id": 475464, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-1/4000-475464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475452/", + "id": 475452, + "name": "Straight Shooter; Quotient; Friends On the Web; Weird", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-more-bullying-1-straight-shooter-quoti/4000-475452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475450/", + "id": 475450, + "name": "Spider-Verse Part Four: Anywhere But Here", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-12-spider-verse-part-four-a/4000-475450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482858/", + "id": 482858, + "name": "Chapter Six", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-infinite-comic-6-chapter-six/4000-482858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482856/", + "id": 482856, + "name": "Chapter Four", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-infinite-comic-4-chapter-four/4000-482856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704396/", + "id": 704396, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-18/4000-704396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482855/", + "id": 482855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-482855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482854/", + "id": 482854, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-482854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610324/", + "id": 610324, + "name": "Veneno: Integral", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-46-veneno-integral/4000-610324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552388/", + "id": 552388, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-34/4000-552388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541766/", + "id": 541766, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-86/4000-541766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513246/", + "id": 513246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-15/4000-513246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511968/", + "id": 511968, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-19/4000-511968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500630/", + "id": 500630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-sundenfall-2/4000-500630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498703/", + "id": 498703, + "name": "X-Men 15: Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-77-x-men-15-ultimatum/4000-498703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498702/", + "id": 498702, + "name": "Fantastic Four 9: Cubo Cósmico", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-76-fantastic-four-9-cubo-co/4000-498702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-481020/", + "id": 481020, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-1-hc/4000-481020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480172/", + "id": 480172, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-west-case-scenario-1-volume-2/4000-480172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480166/", + "id": 480166, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-1-hc/4000-480166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479513/", + "id": 479513, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-24/4000-479513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479396/", + "id": 479396, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-6-volume-6/4000-479396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478762/", + "id": 478762, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-omnibus-1-hc/4000-478762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478755/", + "id": 478755, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-matt-fraction-omnibus-1-hc/4000-478755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472904/", + "id": 472904, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-s-art-of-war-3/4000-472904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480800/", + "id": 480800, + "name": "Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-infinite-comic-3-chapter-three/4000-480800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480799/", + "id": 480799, + "name": "Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-infinite-comic-2-chapter-two/4000-480799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480798/", + "id": 480798, + "name": "Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-infinite-comic-1-chapter-one/4000-480798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478772/", + "id": 478772, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-478772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703164/", + "id": 703164, + "name": "1 mese per morire", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-302-1-mese-per-morire/4000-703164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482853/", + "id": 482853, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3/4000-482853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474633/", + "id": 474633, + "name": "Chapter XXV: The Super-Saver Club Card", + "site_detail_url": "https://comicvine.gamespot.com/nova-25-chapter-xxv-the-super-saver-club-card/4000-474633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474632/", + "id": 474632, + "name": "You Can't Win Part 2", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-28-you-can-t-win-part-2/4000-474632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474631/", + "id": 474631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-2/4000-474631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474629/", + "id": 474629, + "name": "Good Sons Like You...", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard-9-good-sons-like-you/4000-474629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474622/", + "id": 474622, + "name": "The Avengers/Avengers War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-3-the-avengers/4000-474622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474621/", + "id": 474621, + "name": "Book Three: New World Disorder: Chapter 3 - Grinding Halt", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-9-book-three-new-world-disorde/4000-474621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473649/", + "id": 473649, + "name": "Part 10: The Dark Queen", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-10-part-10-the-dark-queen/4000-473649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473647/", + "id": 473647, + "name": "Back in Blue (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-14-back-in-blue-part-1/4000-473647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473639/", + "id": 473639, + "name": "Book Three: New World Disorder: Chapter 2 - Why They Sting", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-8-book-three-new-world-disorde/4000-473639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472912/", + "id": 472912, + "name": "Too Many Spider-Men; A Spider In the Dark", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-team-up-2-too-many-spider-men-a-spide/4000-472912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472911/", + "id": 472911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men-1/4000-472911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472901/", + "id": 472901, + "name": "Book Three: New World Disorder: Chapter 1 - End the Line", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-7-book-three-new-world-disorde/4000-472901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472898/", + "id": 472898, + "name": "I Can't Help Myself; The A-May-zing Spider-Aunt; The Quiet Room", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-1-i-can-t-help-mysel/4000-472898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472897/", + "id": 472897, + "name": "Spider-Verse Part 3: Higher Ground", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-11-spider-verse-part-3-high/4000-472897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612266/", + "id": 612266, + "name": "El Asombroso Spiderman: La identidad del Duende", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-58-el-asombroso-spider/4000-612266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552387/", + "id": 552387, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-33/4000-552387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500629/", + "id": 500629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-sundenfall-1/4000-500629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498701/", + "id": 498701, + "name": "X-Men 14: Apocalipsis", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-75-x-men-14-apocalipsis/4000-498701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497675/", + "id": 497675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-18/4000-497675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496704/", + "id": 496704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-496704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478156/", + "id": 478156, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-death-of-wolverine-1-volum/4000-478156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478138/", + "id": 478138, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-ones-with-deadpool-1-tpb/4000-478138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478064/", + "id": 478064, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time-the-complete-collectio/4000-478064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477169/", + "id": 477169, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-companion-1-hc/4000-477169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477114/", + "id": 477114, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-5-volume-f/4000-477114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476394/", + "id": 476394, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-476394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475651/", + "id": 475651, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-spider-verse-prelude-1-volu/4000-475651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471323/", + "id": 471323, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-6/4000-471323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471320/", + "id": 471320, + "name": "Chapter XXIV: Stupidity Tries", + "site_detail_url": "https://comicvine.gamespot.com/nova-24-chapter-xxiv-stupidity-tries/4000-471320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471319/", + "id": 471319, + "name": "Always and Forever: Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-12-always-and-forever-part-3-of-3/4000-471319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471317/", + "id": 471317, + "name": "...That Time I Teamed Up With Captain America!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-1/4000-471317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471313/", + "id": 471313, + "name": "Fa$t Money", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-2-fa-t-money/4000-471313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470434/", + "id": 470434, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-1/4000-470434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470422/", + "id": 470422, + "name": "Somalia", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-12-somalia/4000-470422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470419/", + "id": 470419, + "name": "Book Two: Inversion: Chapter 3 - Awakened Like Us", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-6-book-two-inversion-chapter-3/4000-470419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470417/", + "id": 470417, + "name": "Origin Sites", + "site_detail_url": "https://comicvine.gamespot.com/avengers-38-origin-sites/4000-470417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470416/", + "id": 470416, + "name": "Spider-Verse Part 2: Superior Force", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-10-spider-verse-part-2-supe/4000-470416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469844/", + "id": 469844, + "name": "The Goddess of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-2-the-goddess-of-thunder/4000-469844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469842/", + "id": 469842, + "name": "Enter the Spider-Verse; Spider Clan: The Many; Steampunk Lady Spider; Penelope Parker", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-1-enter-the-spider-verse-spider-clan-/4000-469842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469838/", + "id": 469838, + "name": "Chapter XXIII: Wouldn't Mama Be Proud", + "site_detail_url": "https://comicvine.gamespot.com/nova-23-chapter-xxiii-wouldnt-mama-be-proud/4000-469838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469836/", + "id": 469836, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-7/4000-469836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469829/", + "id": 469829, + "name": "We Take Care of Our Own", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-1-we-take-care/4000-469829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469826/", + "id": 469826, + "name": "Book Two: Inversion: Chapter 2 - Something Clearly Went Wrong", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-5-book-two-inversion-chapter-2/4000-469826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469497/", + "id": 469497, + "name": "The Power of Positive Thinking; The Luck of the Parkers", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-team-up-1-the-power-of-positive-think/4000-469497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469490/", + "id": 469490, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-art-of-war-2/4000-469490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469488/", + "id": 469488, + "name": "Book Two: Inversion: Chapter 1 - Altered Beast", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis-4-book-two-inversion-chapter-1/4000-469488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469487/", + "id": 469487, + "name": "Spider-Verse Part 1: The Gathering; The Feast", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-9-spider-verse-part-1-the-g/4000-469487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476393/", + "id": 476393, + "name": "Goblin Nation Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-33-goblin-nation-conclu/4000-476393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552386/", + "id": 552386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-32/4000-552386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503904/", + "id": 503904, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-neuen-x-men-17/4000-503904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474812/", + "id": 474812, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-x-men-world-war-wendigo-1-volume-2/4000-474812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474033/", + "id": 474033, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1980-s-3-volume-3/4000-474033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473208/", + "id": 473208, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-original-sin-not-your-father-s-ave/4000-473208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468916/", + "id": 468916, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-11/4000-468916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468915/", + "id": 468915, + "name": "The Iron Octopus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-31-the-iron-octopus/4000-468915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468911/", + "id": 468911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-75th-anniversary-celebration-1/4000-468911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468907/", + "id": 468907, + "name": "East of Eden (Part 4)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-12-east-of-eden-part-4/4000-468907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468902/", + "id": 468902, + "name": "With Great Hate; Hoary Hosts of Hate", + "site_detail_url": "https://comicvine.gamespot.com/axis-revolutions-1-with-great-hate-hoary-hosts-of-/4000-468902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468459/", + "id": 468459, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/axis-hobgoblin-1/4000-468459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468455/", + "id": 468455, + "name": "Ms.Adventures In Babysitting; Edge of Spider-Verse: My Brother's Keeper", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-8-msadventures-in-babysitti/4000-468455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468082/", + "id": 468082, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-6/4000-468082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468078/", + "id": 468078, + "name": "East of Eden (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-11-east-of-eden-part-3/4000-468078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467653/", + "id": 467653, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-7/4000-467653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467646/", + "id": 467646, + "name": "Ms. Marvel Team-Up; Edge of Spider-Verse: Web of Fear", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-7-ms-marvel-team-up-edge-of/4000-467646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467032/", + "id": 467032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-25/4000-467032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451941/", + "id": 451941, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-special-edition-1/4000-451941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476392/", + "id": 476392, + "name": "Vengeance of the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-30-vengeance-of-the-gob/4000-476392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470599/", + "id": 470599, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/brutus-790/4000-470599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612265/", + "id": 612265, + "name": "El Asombroso Spiderman: La era del traje negro", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-57-el-asombroso-spider/4000-612265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610321/", + "id": 610321, + "name": "Thor 4: Señor de Asgard", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-43-thor-4-senor-de-asg/4000-610321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-601208/", + "id": 601208, + "name": "Di passati e futuri", + "site_detail_url": "https://comicvine.gamespot.com/i-nuovissimi-x-men-18-di-passati-e-futuri/4000-601208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552385/", + "id": 552385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-31/4000-552385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497667/", + "id": 497667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-16/4000-497667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471579/", + "id": 471579, + "name": "Volume 1.1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-learning-to-crawl-1-1-volume-1-/4000-471579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471519/", + "id": 471519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-12/4000-471519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471518/", + "id": 471518, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-11/4000-471518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471517/", + "id": 471517, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-10/4000-471517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471516/", + "id": 471516, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-9/4000-471516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469734/", + "id": 469734, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-the-ultimate-spider-man-revival-1-vo/4000-469734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469682/", + "id": 469682, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-hickman-omnibus-2-volume-2/4000-469682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466338/", + "id": 466338, + "name": "I Am Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-30-i-am-spider-man/4000-466338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466322/", + "id": 466322, + "name": "Learning To Crawl: Part Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-5-learning-to-crawl-part-/4000-466322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465850/", + "id": 465850, + "name": "Edge of Spider-Verse Prologue - Part 2", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-33-edge-of-spider-verse-prolog/4000-465850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465846/", + "id": 465846, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-5/4000-465846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465842/", + "id": 465842, + "name": "Gwen Stacy: Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse-2-gwen-stacy-spider-woman/4000-465842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465836/", + "id": 465836, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-32/4000-465836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-464979/", + "id": 464979, + "name": "Spider-Man: Noir", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse-1-spider-man-noir/4000-464979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-464973/", + "id": 464973, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-6/4000-464973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463990/", + "id": 463990, + "name": "The One Who Watches", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-8-the-one-who-watches/4000-463990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463982/", + "id": 463982, + "name": "The Tomorrow Soldier Part 3", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-24-the-tomorrow-soldier-part-3/4000-463982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470122/", + "id": 470122, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-thor-loki-the-tenth-realm-1-tpb/4000-470122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476390/", + "id": 476390, + "name": "Goblin War", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-28-goblin-war/4000-476390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702305/", + "id": 702305, + "name": "Risorge Fenice !", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-31-risorge-fenice/4000-702305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476391/", + "id": 476391, + "name": "Goblin Nation Begins!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-29-goblin-nation-begins/4000-476391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610320/", + "id": 610320, + "name": "La Telaraña de Spiderman: Integral", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-42-la-telarana-de-spid/4000-610320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-578904/", + "id": 578904, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-negocios-familiares-1/4000-578904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552384/", + "id": 552384, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-30/4000-552384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498693/", + "id": 498693, + "name": "X-Men 11: Fénix", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-67-x-men-11-fenix/4000-498693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469279/", + "id": 469279, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-1-hc/4000-469279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469258/", + "id": 469258, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-cable-omnibus-1-hc/4000-469258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-469072/", + "id": 469072, + "name": "The War Begins", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-1-halloween-comicf/4000-469072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468643/", + "id": 468643, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-100th-anniversary-1-tpb/4000-468643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468352/", + "id": 468352, + "name": "Utopia", + "site_detail_url": "https://comicvine.gamespot.com/grandi-eventi-marvel-8-utopia/4000-468352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468301/", + "id": 468301, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-ms-marvel-1-volume-1/4000-468301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468279/", + "id": 468279, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-parker-luck-1-volume-1/4000-468279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468260/", + "id": 468260, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-newspaper-strips-2-volume-2/4000-468260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468247/", + "id": 468247, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-the-complete-collection-3-vol-3/4000-468247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468031/", + "id": 468031, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-1-hc/4000-468031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467951/", + "id": 467951, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-ff-strangest-ever-1-tpb/4000-467951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467943/", + "id": 467943, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-law-and-disorder-1-volume-1/4000-467943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467934/", + "id": 467934, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvels-companion-1-tpb/4000-467934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467224/", + "id": 467224, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-epic-collection-bad-moon-rising-1-volu/4000-467224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467141/", + "id": 467141, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/udons-art-of-capcom-complete-edition-1-hc/4000-467141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463490/", + "id": 463490, + "name": "One Month To Die: The Last Wolverine Story Conclusion; That Which Didn't Happen; Guernica", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-12-one-month-to-die-the-last-wolverine-s/4000-463490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463488/", + "id": 463488, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-29/4000-463488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463477/", + "id": 463477, + "name": "Learning To Crawl: Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-4-learning-to-crawl-part-/4000-463477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463476/", + "id": 463476, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-31/4000-463476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462259/", + "id": 462259, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-ff-6/4000-462259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462256/", + "id": 462256, + "name": "Nick Fury vs. The World", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-7-nick-fury-vs-the-world/4000-462256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462242/", + "id": 462242, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-5/4000-462242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461740/", + "id": 461740, + "name": "Edge of Spider-Verse Prologue - Part 1; Spider-Sanction", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-32-edge-of-spider-verse-prolog/4000-461740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461729/", + "id": 461729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-4/4000-461729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-624683/", + "id": 624683, + "name": "El mañana muere hoy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-lobezno-5-el-manana-muere-hoy/4000-624683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552383/", + "id": 552383, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-29/4000-552383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513241/", + "id": 513241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-10/4000-513241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498692/", + "id": 498692, + "name": "Spiderman 31: La muerte de Spiderman. El día después", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-66-spiderman-31-la-muerte-d/4000-498692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468197/", + "id": 468197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-17/4000-468197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-467321/", + "id": 467321, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-2015-1/4000-467321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466509/", + "id": 466509, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-great-power/4000-466509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466501/", + "id": 466501, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-7-volum/4000-466501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466455/", + "id": 466455, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-230-longshot/4000-466455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465335/", + "id": 465335, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-one-down-1-volume-5/4000-465335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465164/", + "id": 465164, + "name": "ne m'oubliez pas", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-15-ne-moubliez-pas/4000-465164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460318/", + "id": 460318, + "name": "Home Sick Hulk", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-28-home-sick-hulk/4000-460318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460316/", + "id": 460316, + "name": "Checkmate; Young Avengers: Hidden In Plain Sight Part Four of Five; Catharsis", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-4-checkmate-young-avengers-hidden-in/4000-460316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460310/", + "id": 460310, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-6/4000-460310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460309/", + "id": 460309, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-4/4000-460309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459684/", + "id": 459684, + "name": "Stuck, Part 1 of 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-ff-4-stuck-part-1-of-2/4000-459684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459677/", + "id": 459677, + "name": "Open your Eye", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-6-open-your-eye/4000-459677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459174/", + "id": 459174, + "name": "Thor & Loki: The Tenth Realm, Part One of Five", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-5-1-thor-loki-the-tenth-realm-part-on/4000-459174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459162/", + "id": 459162, + "name": "Learning To Crawl: Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-3-learning-to-crawl-part-/4000-459162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459159/", + "id": 459159, + "name": "Great Power Part 8 of 8", + "site_detail_url": "https://comicvine.gamespot.com/100th-anniversary-special-spider-man-1-great-power/4000-459159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-458704/", + "id": 458704, + "name": "The Secret History of Colonel Nicholas J. Fury", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-5-the-secret-history-of-colonel-nicho/4000-458704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476421/", + "id": 476421, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulks-5/4000-476421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821473/", + "id": 821473, + "name": "All-New Marvel Now! Prologo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-106-all-new-marvel-now-prologo/4000-821473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478164/", + "id": 478164, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-162/4000-478164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552382/", + "id": 552382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-28/4000-552382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513240/", + "id": 513240, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-9/4000-513240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498690/", + "id": 498690, + "name": "Spiderman 30: La Muerte De Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-64-spiderman-30-la-muerte-d/4000-498690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465161/", + "id": 465161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-3/4000-465161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463712/", + "id": 463712, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-the-pulse-the-complete-collection-1-/4000-463712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463084/", + "id": 463084, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-society-of-serpent/4000-463084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462574/", + "id": 462574, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/yellow-blue-and-gray-1-hc/4000-462574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462502/", + "id": 462502, + "name": "Nick Fury vs The World", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-special-edition-7-nick-fury-vs-the-wo/4000-462502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462359/", + "id": 462359, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/la-asombrosa-patrulla-x-7/4000-462359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462358/", + "id": 462358, + "name": "Ragnarok now!", + "site_detail_url": "https://comicvine.gamespot.com/incredibili-avengers-16-ragnarok-now/4000-462358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461741/", + "id": 461741, + "name": "OGN", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-revelation-1-ogn/4000-461741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461369/", + "id": 461369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-14/4000-461369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461091/", + "id": 461091, + "name": "Gestern gibt es nicht", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-3-gestern-gibt-es-nicht/4000-461091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460072/", + "id": 460072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/a-x-3/4000-460072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457651/", + "id": 457651, + "name": "Snow Day", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-27-snow-day/4000-457651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457650/", + "id": 457650, + "name": "The Green Goblin; Kraven the Hunter; Mysterio; Return of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spectacular-1-the-green-goblin-kraven-t/4000-457650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457641/", + "id": 457641, + "name": "The Fateful Four (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-6-the-fateful-four-part-1/4000-457641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457637/", + "id": 457637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-3/4000-457637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456551/", + "id": 456551, + "name": "Chapter XVIII: Dia De Los Muertos", + "site_detail_url": "https://comicvine.gamespot.com/nova-18-chapter-xviii-dia-de-los-muertos/4000-456551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456537/", + "id": 456537, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-528/4000-456537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456028/", + "id": 456028, + "name": "Terminus; Hidden In Plain Sight Part One of Five; Lockjaw: Buried Memory", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-1-terminus-hidden-in-plain-sight-par/4000-456028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456025/", + "id": 456025, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-11/4000-456025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456018/", + "id": 456018, + "name": "Learning To Crawl: Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-2-learning-to-crawl-part-/4000-456018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455494/", + "id": 455494, + "name": "Trust No One, Not Even Yourself", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-3-trust-no-one-not-even-yourself/4000-455494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455491/", + "id": 455491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-2/4000-455491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463703/", + "id": 463703, + "name": "The Arms of the Octopus Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-22-the-arms-of-the-octo/4000-463703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706484/", + "id": 706484, + "name": "O Espetacular Homem-Aranha: O Nascimento de Venom", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-10-o-es/4000-706484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-552381/", + "id": 552381, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-27/4000-552381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498688/", + "id": 498688, + "name": "Spiderman 29: La Muerte De Spiderman: Prólogo", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-62-spiderman-29-la-muerte-d/4000-498688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472433/", + "id": 472433, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-jason-aaron-the-complete-collection-3/4000-472433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462357/", + "id": 462357, + "name": "A un passo dall'apocalisse", + "site_detail_url": "https://comicvine.gamespot.com/incredibili-avengers-15-a-un-passo-dallapocalisse/4000-462357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461312/", + "id": 461312, + "name": "Book 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-alien-costume-/4000-461312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461285/", + "id": 461285, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-the-crime-of-the-c/4000-461285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461272/", + "id": 461272, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-family-bonding-1-volume-2/4000-461272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460713/", + "id": 460713, + "name": "Volume 20", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-into-the-time-strea/4000-460713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460456/", + "id": 460456, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-8/4000-460456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460455/", + "id": 460455, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-7/4000-460455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460454/", + "id": 460454, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-6/4000-460454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460453/", + "id": 460453, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-5/4000-460453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460067/", + "id": 460067, + "name": "L'incredibile X-Force : Deatlok", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-best-59-lincredibile-x-force-deatlok/4000-460067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459918/", + "id": 459918, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-cosmic-team-up-1-tpb/4000-459918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-458963/", + "id": 458963, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-omnibus-1-hc/4000-458963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-458834/", + "id": 458834, + "name": "The Secret History of Colonel Nicholas J. Fury", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-special-edition-5-the-secret-history-/4000-458834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-458718/", + "id": 458718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/la-nueva-patrulla-x-15/4000-458718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454108/", + "id": 454108, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-26/4000-454108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454106/", + "id": 454106, + "name": "Damnation and Redemption", + "site_detail_url": "https://comicvine.gamespot.com/thanos-annual-1-damnation-and-redemption/4000-454106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454104/", + "id": 454104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-10/4000-454104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454099/", + "id": 454099, + "name": "Behind the Mask; The Vulture; Dr. Octopus; The Sandman", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-1-behind-the-mask-the-vultur/4000-454099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454095/", + "id": 454095, + "name": "The Honeymoon is Over", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-29-the-honeymoon-is-over/4000-454095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453417/", + "id": 453417, + "name": "Bomb Full of Secrets", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-2-bomb-full-of-secrets/4000-453417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453412/", + "id": 453412, + "name": "Spideypool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual-2-spideypool/4000-453412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453409/", + "id": 453409, + "name": "No Goats, No Glory", + "site_detail_url": "https://comicvine.gamespot.com/amazing-x-men-7-no-goats-no-glory/4000-453409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453408/", + "id": 453408, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2/4000-453408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452320/", + "id": 452320, + "name": "The Zealous Advocate", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-4-the-zealous-advocate/4000-452320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452317/", + "id": 452317, + "name": "No One is Watching", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-1-no-one-is-watching/4000-452317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452314/", + "id": 452314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-1/4000-452314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452307/", + "id": 452307, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-1/4000-452307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452306/", + "id": 452306, + "name": "Learning To Crawl Part One: The Show Must Go On", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-1-learning-to-crawl-part-/4000-452306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456868/", + "id": 456868, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-1/4000-456868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-458013/", + "id": 458013, + "name": "The Black Cat is Back!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-19-the-black-cat-is-bac/4000-458013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840278/", + "id": 840278, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-live-prelude-1/4000-840278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452073/", + "id": 452073, + "name": "Business Opportunities", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-free-comic-book-day-1-business-oppo/4000-452073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614363/", + "id": 614363, + "name": "Vida en el pabellón de perros rabiosos", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-spider-man-6-vida-en-el-pabellon-de-/4000-614363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614362/", + "id": 614362, + "name": "Una gran responsabilidad", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-spider-man-5-una-gran-responsabilida/4000-614362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612262/", + "id": 612262, + "name": "Secret Wars II: Círculo cerrado", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-54-secret-wars-ii-circ/4000-612262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499943/", + "id": 499943, + "name": "La Profecía del Fin del Mundo", + "site_detail_url": "https://comicvine.gamespot.com/hulk-rojo-5-la-profecia-del-fin-del-mundo/4000-499943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498686/", + "id": 498686, + "name": "Spiderman 28: El Nuevo Doctor Muerte", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-60-spiderman-28-el-nuevo-do/4000-498686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498685/", + "id": 498685, + "name": "Spiderman 27: El Misterio Del Enemigo Definitivo", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-59-spiderman-27-el-misterio/4000-498685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466448/", + "id": 466448, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-101/4000-466448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459320/", + "id": 459320, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-14/4000-459320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457977/", + "id": 457977, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-age-of-ultron-1-tpb/4000-457977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456867/", + "id": 456867, + "name": "Primo sangue", + "site_detail_url": "https://comicvine.gamespot.com/incredibili-avengers-14-primo-sangue/4000-456867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456829/", + "id": 456829, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-goblin-nation-1-volume-6/4000-456829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456828/", + "id": 456828, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/galactus-the-devourer-1-tpb/4000-456828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455826/", + "id": 455826, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-omnibus-1-h/4000-455826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455816/", + "id": 455816, + "name": "Trust No One, Not Even Yourself", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-special-edition-3-trust-no-one-not-ev/4000-455816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455815/", + "id": 455815, + "name": "Bomb Full of Secrets", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-special-edition-2-bomb-full-of-secret/4000-455815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455660/", + "id": 455660, + "name": "Imperial", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-new-x-men-3-imperial/4000-455660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455646/", + "id": 455646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-gold-la-crociata-dellifinito-1/4000-455646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455640/", + "id": 455640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-avengers-1/4000-455640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451764/", + "id": 451764, + "name": "Lucky To Be Alive; Recapturing That Old Spark; Crossed Paths; How My Stuff Works; Homecoming, Sort Of; Kaine; Learning To Crawl: Awazing Reality", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-lucky-to-be-alive-recaptu/4000-451764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451094/", + "id": 451094, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/what-if-age-of-ultron-4/4000-451094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451091/", + "id": 451091, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-team-up-12/4000-451091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451088/", + "id": 451088, + "name": "Who Is the Watcher?", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-0-who-is-the-watcher/4000-451088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451087/", + "id": 451087, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-25/4000-451087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450554/", + "id": 450554, + "name": "Goblin Nation Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-31-goblin-nation-conclusion/4000-450554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450083/", + "id": 450083, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/what-if-age-of-ultron-2/4000-450083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450081/", + "id": 450081, + "name": "A Grizzly Situation / The Superior Looter", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-11-a-grizzly-situa/4000-450081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450068/", + "id": 450068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-25/4000-450068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449598/", + "id": 449598, + "name": "The Kids Are All Fight Part 3", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-3-the-kids-are-all-fight-part-3/4000-449598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449370/", + "id": 449370, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-200/4000-449370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456123/", + "id": 456123, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-32/4000-456123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453660/", + "id": 453660, + "name": "Battle of the Spider-Men!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17-battle-of-the-spider/4000-453660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452796/", + "id": 452796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-57/4000-452796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-477955/", + "id": 477955, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-platinum-the-definitive-x-men-1/4000-477955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614361/", + "id": 614361, + "name": "La venganza de los Seis Siniestros", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-spider-man-4-la-venganza-de-los-seis/4000-614361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614360/", + "id": 614360, + "name": "Submundo", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-spider-man-3-submundo/4000-614360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612261/", + "id": 612261, + "name": "Secret Wars II: ¿Quién es el Todopoderoso?", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-53-secret-wars-ii-quie/4000-612261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498683/", + "id": 498683, + "name": "Spiderman 26: Camaleones", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-57-spiderman-26-camaleones/4000-498683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455900/", + "id": 455900, + "name": "Ultimate Comics: Cataclismo", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-25-ultimate-comics-cataclismo/4000-455900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454366/", + "id": 454366, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-6-volum/4000-454366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453665/", + "id": 453665, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-15/4000-453665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453662/", + "id": 453662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nous-sommes-les-x-men-1/4000-453662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453661/", + "id": 453661, + "name": "Les origines", + "site_detail_url": "https://comicvine.gamespot.com/marvel-select-x-men-1-les-origines/4000-453661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453655/", + "id": 453655, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-hulk-transforme-1-tpb/4000-453655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453654/", + "id": 453654, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-1-tpb/4000-453654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453652/", + "id": 453652, + "name": "Volume 15", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-ghosts-of-t/4000-453652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453651/", + "id": 453651, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/a-x-a-x-outstanding-1-volume-3/4000-453651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453641/", + "id": 453641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-5/4000-453641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453120/", + "id": 453120, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-peter-parker-the-one-and-only-1/4000-453120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453115/", + "id": 453115, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-2-vo/4000-453115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453114/", + "id": 453114, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-daredevil-8-volume-8/4000-453114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453062/", + "id": 453062, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-giorni-di-un-futuro-passato-1/4000-453062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453060/", + "id": 453060, + "name": "Zukunft ist Vergangenheit", + "site_detail_url": "https://comicvine.gamespot.com/x-men-zukunft-ist-vergangenheit-1-zukunft-ist-verg/4000-453060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452540/", + "id": 452540, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-adamantium-collection-1-hc/4000-452540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452445/", + "id": 452445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-4/4000-452445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452444/", + "id": 452444, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-3/4000-452444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452443/", + "id": 452443, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-2/4000-452443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452442/", + "id": 452442, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-who-am-i-1/4000-452442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452061/", + "id": 452061, + "name": "Welcome to the Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-free-comic-book-day-1-welc/4000-452061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448978/", + "id": 448978, + "name": "Goblin Nation Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-30-goblin-nation-part-4-of-5/4000-448978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448002/", + "id": 448002, + "name": "Filling In: Driven; Trial and Terror!; The Superior Adventures of the Speed Demon!", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-10-filling-in-driv/4000-448002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451700/", + "id": 451700, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-31/4000-451700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451695/", + "id": 451695, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulks-1/4000-451695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453033/", + "id": 453033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/le-journal-de-mickey-3229/4000-453033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-709799/", + "id": 709799, + "name": "ça colle et ça moule les bollocks !", + "site_detail_url": "https://comicvine.gamespot.com/sticky-pants-1-ca-colle-et-ca-moule-les-bollocks/4000-709799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448979/", + "id": 448979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-team-up-11/4000-448979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448972/", + "id": 448972, + "name": "Awesome", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-24-awesome/4000-448972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447997/", + "id": 447997, + "name": "Transform Four of Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-hulk-4-transform-four-of-four/4000-447997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614359/", + "id": 614359, + "name": "Percepciones", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-spider-man-2-percepciones/4000-614359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614358/", + "id": 614358, + "name": "Tormento", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-spider-man-1-tormento/4000-614358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589990/", + "id": 589990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-gold-el-asombroso-spiderman-poder-y-respons/4000-589990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541726/", + "id": 541726, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-76/4000-541726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497731/", + "id": 497731, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-11/4000-497731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459962/", + "id": 459962, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-fight-night-1-tpb/4000-459962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452222/", + "id": 452222, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/le-journal-de-mickey-3228/4000-452222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452017/", + "id": 452017, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-the-complete-collection-2-vol-2/4000-452017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451339/", + "id": 451339, + "name": "Volume 16", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-16-volum/4000-451339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450782/", + "id": 450782, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-newspaper-strips-1-volume-1/4000-450782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450781/", + "id": 450781, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-omnibus-2-volume-2/4000-450781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450291/", + "id": 450291, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hulk-agents-of-s-m-a-s-h-1-tpb/4000-450291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450289/", + "id": 450289, + "name": "Volume 18", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-fall-from-grace-1-volume/4000-450289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450193/", + "id": 450193, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-cinematic-infinite-comic-1/4000-450193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450155/", + "id": 450155, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-character-encyclopedia-1-hc/4000-450155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449746/", + "id": 449746, + "name": "OGN", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-business-ogn-1-ogn/4000-449746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446492/", + "id": 446492, + "name": "Ragnarok Now", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-17-ragnarok-now/4000-446492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446490/", + "id": 446490, + "name": "Goblin Nation Part 2", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-28-goblin-nation-part-2/4000-446490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445184/", + "id": 445184, + "name": ".NOW Goblin Nation Part One", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-27-now-goblin-nation-part-one/4000-445184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444532/", + "id": 444532, + "name": "99 Problems... Five of Five", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-5-99-problems-five-of-fi/4000-444532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450317/", + "id": 450317, + "name": "Wrath of the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14-wrath-of-the-spider/4000-450317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449510/", + "id": 449510, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-30/4000-449510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449291/", + "id": 449291, + "name": "The Astonishing Spider-Man Wants You to Join the Spider-Army!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13-the-astonishing-spid/4000-449291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450287/", + "id": 450287, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-2-prelude-1-tpb/4000-450287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449848/", + "id": 449848, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-firsts-1-tpb/4000-449848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446485/", + "id": 446485, + "name": "Damage", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-23-damage/4000-446485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445175/", + "id": 445175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-movie-adaptation-2/4000-445175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612260/", + "id": 612260, + "name": "Peter Parker, El Espectacular Spiderman: Noches de Nueva York", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-52-peter-parker-el-esp/4000-612260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610314/", + "id": 610314, + "name": "Peter Parker: Spiderman 3: Una muerte en la familia", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-35-peter-parker-spider/4000-610314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498679/", + "id": 498679, + "name": "Spiderman 25: El Mundo Según Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-53-spiderman-25-el-mundo-se/4000-498679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457489/", + "id": 457489, + "name": "Spiderman [White Knight]", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chess-collection-1-spiderman-white-knight/4000-457489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455662/", + "id": 455662, + "name": "Sombra Vermelha", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-x-1-sombra-vermelha/4000-455662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451363/", + "id": 451363, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-roger-stern-omnibus-1-hc/4000-451363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449289/", + "id": 449289, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-ragnarok-now-1-volume-3/4000-449289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446095/", + "id": 446095, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-by-kieron-gillen-1-volume-1/4000-446095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445315/", + "id": 445315, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-1-vo/4000-445315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443987/", + "id": 443987, + "name": "The Goblin War", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-26-the-goblin-war/4000-443987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442175/", + "id": 442175, + "name": "Darkest Hours, Part 4 of 4: Before The Dawn", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-25-darkest-hours-part-4-of-4-b/4000-442175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442167/", + "id": 442167, + "name": "The Fantastic Four Are Doomed! Part Four: Four To the Fourth Power!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-16-the-fantastic-four-are-doomed-pa/4000-442167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441423/", + "id": 441423, + "name": "The Amazing Spider-Man + Psyclocke; Captain America + Cyclops: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/a-x-16-the-amazing-spider-man-psyclocke-captain-am/4000-441423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441417/", + "id": 441417, + "name": "99 Problems... Four of Five: Most Dangerous Players", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-4-99-problems-four-of-fi/4000-441417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437492/", + "id": 437492, + "name": "Part Four", + "site_detail_url": "https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-4-part-four/4000-437492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446749/", + "id": 446749, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-29/4000-446749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449902/", + "id": 449902, + "name": "Пределы Земли. Часть 3. Песочница; Пределы Земли. Часть 4. Глобальная угроза!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-27-priediely-ziemli-chas/4000-449902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445396/", + "id": 445396, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-54/4000-445396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449283/", + "id": 449283, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-jason-aaron-the-complete-collection-2/4000-449283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449073/", + "id": 449073, + "name": "AVX", + "site_detail_url": "https://comicvine.gamespot.com/marvel-omnibus-31-avx/4000-449073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449070/", + "id": 449070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-uncanny-avengers-1/4000-449070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447795/", + "id": 447795, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-dark-nights-1-tpb/4000-447795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447243/", + "id": 447243, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-days-of-future-past-1-hc/4000-447243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444883/", + "id": 444883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-new-marvel-now-previews-3/4000-444883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443978/", + "id": 443978, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-movie-adaptation-1/4000-443978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442925/", + "id": 442925, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-22-guardians-of-the-galaxy/4000-442925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498678/", + "id": 498678, + "name": "Spiderman 24: Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-52-spiderman-24-ultimatum/4000-498678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498280/", + "id": 498280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-5/4000-498280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497655/", + "id": 497655, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-7/4000-497655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446628/", + "id": 446628, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/superior-foes-of-spider-man-getting-the-band-back-/4000-446628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435573/", + "id": 435573, + "name": "Frost Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-700-1-frost-part-one/4000-435573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444187/", + "id": 444187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-28/4000-444187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446186/", + "id": 446186, + "name": "Пределы Земли. Часть 1. Мой мир в огне; Пределы Земли. Часть 2. Самые сильные герои", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-26-priediely-ziemli-chas/4000-446186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446185/", + "id": 446185, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-24/4000-446185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446184/", + "id": 446184, + "name": "Демон. Часть 2. Уязвимость; Мстители Ежегодник", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-24-diemon-chast-2-u/4000-446184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444633/", + "id": 444633, + "name": "la main des arbitres", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-8-la-main-des-arbitres/4000-444633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446624/", + "id": 446624, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-behind-the-scenes-beyond-th/4000-446624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446584/", + "id": 446584, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-12/4000-446584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445811/", + "id": 445811, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-dawn-s-early-light/4000-445811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445308/", + "id": 445308, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-2-volume-2/4000-445308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444762/", + "id": 444762, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-hands-on-a-dead-body-1-volume-2/4000-444762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444759/", + "id": 444759, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-1-volume-1/4000-444759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441672/", + "id": 441672, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-7/4000-441672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437496/", + "id": 437496, + "name": "Failure To Reform!", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-team-up-8-failure-to-reform/4000-437496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437484/", + "id": 437484, + "name": "Spider-Man & The Human Torch Save the Universe; What Would Spider-Man Do?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-700-5-spider-man-the-human-/4000-437484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437483/", + "id": 437483, + "name": "The Black Lodge Part Two: Voluntary Discharge; Three O'Clock High", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-700-4-the-black-lodge-part-/4000-437483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436202/", + "id": 436202, + "name": "Strange", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-21-strange/4000-436202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436197/", + "id": 436197, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-2-part-two/4000-436197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436191/", + "id": 436191, + "name": "The Black Lodge Part One: Convalescence; Cat & Mouse", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-700-3-the-black-lodge-part-/4000-436191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436190/", + "id": 436190, + "name": "Frost Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-700-2-frost-part-two/4000-436190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435586/", + "id": 435586, + "name": "99 Problems... Three of Five: Combat", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-3-99-problems-three-of-f/4000-435586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435581/", + "id": 435581, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hulk-agents-of-s-m-a-s-h-3/4000-435581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628796/", + "id": 628796, + "name": "Marvel Origins: The 60s", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-classic-1-m/4000-628796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498676/", + "id": 498676, + "name": "Spiderman 23: La Guerra De Los Simbiontes", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-50-spiderman-23-la-guerra-d/4000-498676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444317/", + "id": 444317, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/warlock-by-jim-starlin-the-complete-collection-1-t/4000-444317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443383/", + "id": 443383, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-1-/4000-443383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435067/", + "id": 435067, + "name": "The Day Nor The Hour", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-14-the-day-nor-the-hour/4000-435067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435061/", + "id": 435061, + "name": "Chapter Ten: Land and Launch; Adventure Time; A Sneak Peek at Nova #1000", + "site_detail_url": "https://comicvine.gamespot.com/nova-10-chapter-ten-land-and-launch-adventure-time/4000-435061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432333/", + "id": 432333, + "name": "99 Problems... Two of Five", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-2-99-problems-two-of-fiv/4000-432333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443332/", + "id": 443332, + "name": "Mind War!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8-mind-war/4000-443332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441598/", + "id": 441598, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-27/4000-441598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442662/", + "id": 442662, + "name": "Мститель Человек-Паук. Часть 3; Мститель Человек-Паук. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-25-mstitiel-chieloviek-p/4000-442662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442602/", + "id": 442602, + "name": "Демон. Часть 1. Зверь внутри; Новые Мстители Ежегодник", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-23-diemon-chast-1-z/4000-442602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441325/", + "id": 441325, + "name": "X-termination 2/2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-7-x-termination-22/4000-441325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436007/", + "id": 436007, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulks-23/4000-436007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444654/", + "id": 444654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-6/4000-444654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444003/", + "id": 444003, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/john-romita-s-amazing-spider-man-artist-s-edition-/4000-444003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443378/", + "id": 443378, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-5-volum/4000-443378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442432/", + "id": 442432, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-necessary-evil-1-volume-4/4000-442432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442259/", + "id": 442259, + "name": "WHAT IF? AVX", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-20-what-if-avx/4000-442259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441671/", + "id": 441671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-6/4000-441671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435059/", + "id": 435059, + "name": "Me Time", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-20-me-time/4000-435059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435051/", + "id": 435051, + "name": "Madcapped", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual-1-madcapped/4000-435051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433849/", + "id": 433849, + "name": "Hostage Crisis", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-annual-1-hostage-crisis/4000-433849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498674/", + "id": 498674, + "name": "Spiderman 22: Asombrosos Amigos", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-48-spiderman-22-asombrosos-/4000-498674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497729/", + "id": 497729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-9/4000-497729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-440816/", + "id": 440816, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-joe-kelly-omnibus-1-hc/4000-440816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439290/", + "id": 439290, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kills-the-marvel-universe-1/4000-439290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436501/", + "id": 436501, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-final-threat-1-volume/4000-436501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435863/", + "id": 435863, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus-2-volume-2/4000-435863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431444/", + "id": 431444, + "name": "Spidey Still Standing", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-20-spidey-still-standing/4000-431444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497683/", + "id": 497683, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/was-ware-wenn-avx-1-sc/4000-497683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436476/", + "id": 436476, + "name": "Мститель Человек-Паук. Часть 1; Мститель Человек-Паук. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-24-mstitiel-chieloviek-p/4000-436476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436474/", + "id": 436474, + "name": "Страх во плоти. Послесловие: Капитан Америка; Страх во плоти. Послесловие: Железный Человек; Страх во плоти. Послесловие: Тор", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-22-strakh-vo-ploti-/4000-436474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435791/", + "id": 435791, + "name": "X-termination 1/2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-6-x-termination-12/4000-435791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-434171/", + "id": 434171, + "name": "Deadshot!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4-deadshot/4000-434171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-440799/", + "id": 440799, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-12/4000-440799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439292/", + "id": 439292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-1/4000-439292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-438646/", + "id": 438646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-2/4000-438646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-438634/", + "id": 438634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-3/4000-438634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-438630/", + "id": 438630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-288/4000-438630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-438114/", + "id": 438114, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gathering-of-five-1-tpb/4000-438114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436661/", + "id": 436661, + "name": "AVENGERS LA CROCIATA DEI BAMBINI", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-best-1-avengers-la-crociata-dei-bambini/4000-436661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436514/", + "id": 436514, + "name": "Patrulla-X Vs. Vengadores Oscuros: Utopía", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-1-patrulla-x-vs-vengadores-oscuros-u/4000-436514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436500/", + "id": 436500, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-2-v/4000-436500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435873/", + "id": 435873, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-jason-aaron-the-complete-collection-1/4000-435873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435864/", + "id": 435864, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/nova-classic-2-volume-2/4000-435864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433750/", + "id": 433750, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1-sc/4000-433750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430762/", + "id": 430762, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superior-carnage-4/4000-430762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430758/", + "id": 430758, + "name": "Now What?!; Marvelpocalypse Now!; The Puppet's Master!; X The Academy or School of Hard X; One for the Team; Cap-Fished; From Asgard with Love; Ladies Who Brunch; Who Watches The Watcher?; Intervention; The Ego-Stroking End!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-what-1-now-what-marvelpocalypse-now-the/4000-430758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428863/", + "id": 428863, + "name": "Venomous", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-19-venomous/4000-428863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427690/", + "id": 427690, + "name": "99 Problems... One of Five", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-1-99-problems-one-of-fiv/4000-427690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427685/", + "id": 427685, + "name": "A Man Named Buggit, Part Two: What A Night", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-dark-nights-5-a-man-named-buggit-part-tw/4000-427685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498889/", + "id": 498889, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos-34/4000-498889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498672/", + "id": 498672, + "name": "Spiderman 21: Muerte De Un Duende", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-46-spiderman-21-muerte-de-u/4000-498672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435778/", + "id": 435778, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-mark-of-the-tarantula-1-tpb/4000-435778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435247/", + "id": 435247, + "name": "Book 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-absolute-vision-1-book-1/4000-435247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433432/", + "id": 433432, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/hulk-by-jeph-loeb-1-vol-1/4000-433432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432502/", + "id": 432502, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1980s-1-volume-1/4000-432502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432501/", + "id": 432501, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-1-vol-1/4000-432501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425940/", + "id": 425940, + "name": "Smack to the Future", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-18-smack-to-the-future/4000-425940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425937/", + "id": 425937, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-8/4000-425937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424538/", + "id": 424538, + "name": "A New Sheriff In Town", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-3-a-new-sheriff-in/4000-424538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433971/", + "id": 433971, + "name": "Мстители: кто они?; Мстители, к бою!", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-21-mstitieli-kto-oni-mstitiel/4000-433971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433970/", + "id": 433970, + "name": "Страх во плоти. Часть 6. Милость; Страх во плоти. Часть 7. День Тора", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-21-strakh-vo-ploti-/4000-433970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433354/", + "id": 433354, + "name": "Massacre is Back!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3-massacre-is-back/4000-433354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431133/", + "id": 431133, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-50/4000-431133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431081/", + "id": 431081, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-431081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427978/", + "id": 427978, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-24/4000-427978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625901/", + "id": 625901, + "name": "Spider-Man: Blue", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-25-spider-m/4000-625901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437071/", + "id": 437071, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-287/4000-437071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435777/", + "id": 435777, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-wolverine-by-wells-and-madureira-1-/4000-435777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435219/", + "id": 435219, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time-the-complete-collectio/4000-435219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435187/", + "id": 435187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-11/4000-435187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435180/", + "id": 435180, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-avengers-vs-x-men-1/4000-435180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435159/", + "id": 435159, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-2/4000-435159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-434072/", + "id": 434072, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-the-man-called-morbius-/4000-434072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-434071/", + "id": 434071, + "name": "Volume 20", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-cosmic-adventur/4000-434071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433960/", + "id": 433960, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/a-x-a-x-amazing-1-volume-2/4000-433960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433525/", + "id": 433525, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-gold-l-ere-d-apocalypse-4/4000-433525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433288/", + "id": 433288, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-1/4000-433288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432503/", + "id": 432503, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thanos-redemption-1-tpb/4000-432503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432321/", + "id": 432321, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d-1-tpb/4000-432321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426884/", + "id": 426884, + "name": "Freaky", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-18-freaky/4000-426884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426881/", + "id": 426881, + "name": "Into the Grave Part 2", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-22-into-the-grave-part-2/4000-426881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-539698/", + "id": 539698, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-5/4000-539698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498670/", + "id": 498670, + "name": "Spiderman 20: Caballeros", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-44-spiderman-20-caballeros/4000-498670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442990/", + "id": 442990, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/paper-dreams-collected-art-by-ben-dunn-1-sc/4000-442990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430961/", + "id": 430961, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-vs-x-men-7/4000-430961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430914/", + "id": 430914, + "name": "Volume 16", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-war-of-the-pantheons-1-volume/4000-430914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430912/", + "id": 430912, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-life-in-the-mad-dog-ward-1-/4000-430912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-429005/", + "id": 429005, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-the-complete-collection-1-vol-1/4000-429005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423679/", + "id": 423679, + "name": "Mission 008: The Cathedral", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-8-mission-008-the-cathedral/4000-423679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428585/", + "id": 428585, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-428585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427171/", + "id": 427171, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-49/4000-427171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432524/", + "id": 432524, + "name": "Страх во плоти. Часть 6. Родные и обреченные; Страх во плоти. Часть 5. Если я выберусь отсюда", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-20-strakh-vo-ploti-/4000-432524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432523/", + "id": 432523, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-20/4000-432523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425311/", + "id": 425311, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-23/4000-425311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449374/", + "id": 449374, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-adventures-halloween-comicfest/4000-449374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431729/", + "id": 431729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-1/4000-431729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431728/", + "id": 431728, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/os-vingadores-1/4000-431728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430966/", + "id": 430966, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-10/4000-430966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430956/", + "id": 430956, + "name": "Avengers VS X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-absolute-avengers-vs-x-men-1-avengers-vs-x-/4000-430956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-429003/", + "id": 429003, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prelude-to-infinity-1-volume-3/4000-429003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428962/", + "id": 428962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-98/4000-428962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427869/", + "id": 427869, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-hickman-omnibus-1-volume-1/4000-427869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-421692/", + "id": 421692, + "name": "Field Trip", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-17-field-trip/4000-421692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498668/", + "id": 498668, + "name": "Spiderman 19: La Saga Del Clon", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-42-spiderman-19-la-saga-del/4000-498668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450818/", + "id": 450818, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-26/4000-450818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426985/", + "id": 426985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-vs-x-men-6/4000-426985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426111/", + "id": 426111, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-the-enemy-within-1-volume/4000-426111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426110/", + "id": 426110, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-inhumans-the-origin-of-the-inhumans-1-tpb/4000-426110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425196/", + "id": 425196, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-iron-man-first-sign-1-tpb/4000-425196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415241/", + "id": 415241, + "name": "The Superior Foes of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-1-the-superior-foe/4000-415241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425306/", + "id": 425306, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-99/4000-425306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424421/", + "id": 424421, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-52/4000-424421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424078/", + "id": 424078, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-48/4000-424078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426961/", + "id": 426961, + "name": "Страх во плоти. Часть 5. Драка; Страх во плоти. Часть 4. Туман войны", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-19-strakh-vo-ploti-/4000-426961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423949/", + "id": 423949, + "name": "Behold The Spider-Goblin", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-98-behold-the-spider-go/4000-423949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422661/", + "id": 422661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-22/4000-422661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-440798/", + "id": 440798, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/a-x-1/4000-440798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430965/", + "id": 430965, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-09/4000-430965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427166/", + "id": 427166, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-marvel-little-x-men-little-avengers-big-trou/4000-427166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427165/", + "id": 427165, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx-1-tpb/4000-427165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-427158/", + "id": 427158, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-4-volum/4000-427158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426634/", + "id": 426634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-19/4000-426634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425302/", + "id": 425302, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-1-volume-1/4000-425302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425300/", + "id": 425300, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-kurt-busiek-and-sean-chen-omnibus-1-hc/4000-425300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425193/", + "id": 425193, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-9-volume-9/4000-425193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424694/", + "id": 424694, + "name": "Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-1-age-of-ultron/4000-424694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424643/", + "id": 424643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-4/4000-424643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424627/", + "id": 424627, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-aftermath-1-tpb/4000-424627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419975/", + "id": 419975, + "name": "Part 4 of 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx-4-part-4-of-4/4000-419975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418995/", + "id": 418995, + "name": "Part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx-3-part-3-of-4/4000-418995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418820/", + "id": 418820, + "name": "Back in Black", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-16-back-in-black/4000-418820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417849/", + "id": 417849, + "name": "Part 2 of 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx-2-part-2-of-4/4000-417849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415244/", + "id": 415244, + "name": "Part 1 of 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx-1-part-1-of-4/4000-415244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498666/", + "id": 498666, + "name": "Spiderman 18: Masacre", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-40-spiderman-18-masacre/4000-498666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498664/", + "id": 498664, + "name": "Spiderman 17: Marta Plateada", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-38-spiderman-17-marta-plate/4000-498664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497733/", + "id": 497733, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-manhulk-1/4000-497733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497726/", + "id": 497726, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-7/4000-497726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422598/", + "id": 422598, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-vs-x-men-5/4000-422598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420637/", + "id": 420637, + "name": "Punching Cancer", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-5-punching-cancer/4000-420637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413662/", + "id": 413662, + "name": "Exclusive", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-15-exclusive/4000-413662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410321/", + "id": 410321, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-6/4000-410321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422111/", + "id": 422111, + "name": "War Of The Hobgoblins", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-97-war-of-the-hobgoblin/4000-422111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420543/", + "id": 420543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-47/4000-420543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423779/", + "id": 423779, + "name": "Страх во плоти. Часть 4. Миры в огне; Страх во плоти. Часть 3. Клятвопреступник", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-18-strakh-vo-ploti-/4000-423779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423780/", + "id": 423780, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-18/4000-423780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408994/", + "id": 408994, + "name": "Part Eight", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-end-of-days-8-part-eight/4000-408994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420576/", + "id": 420576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-96/4000-420576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418265/", + "id": 418265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-21/4000-418265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408988/", + "id": 408988, + "name": "Book Nine", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-9-book-nine/4000-408988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430964/", + "id": 430964, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-08/4000-430964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425800/", + "id": 425800, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-425800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423959/", + "id": 423959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-16/4000-423959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422852/", + "id": 422852, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor-omnibus-2-volume-two/4000-422852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422833/", + "id": 422833, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-soul-hunter-1-volume-2/4000-422833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422696/", + "id": 422696, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-a-troubled-mind-1-volume-2/4000-422696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422116/", + "id": 422116, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-138/4000-422116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-421833/", + "id": 421833, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/alpha-big-time-1-tpb/4000-421833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-421280/", + "id": 421280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-105/4000-421280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420920/", + "id": 420920, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/venom-toxin-with-a-vengeance-1-volume-5/4000-420920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420914/", + "id": 420914, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-4-volume-f/4000-420914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420226/", + "id": 420226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-17/4000-420226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411824/", + "id": 411824, + "name": "Book Ten", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-10-book-ten/4000-411824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410589/", + "id": 410589, + "name": "Neue Einigkeit", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-1-neue-einigkeit/4000-410589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610307/", + "id": 610307, + "name": "Peter Parker: Spiderman 2: A lo mejor el año que viene", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-28-peter-parker-spider/4000-610307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498662/", + "id": 498662, + "name": "Spiderman 16: Guerreros", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-36-spiderman-16-guerreros/4000-498662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418266/", + "id": 418266, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-95/4000-418266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416776/", + "id": 416776, + "name": "Un Vent Nouveau", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-1-un-vent-nouveau/4000-416776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416022/", + "id": 416022, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-50/4000-416022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416021/", + "id": 416021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-46/4000-416021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404700/", + "id": 404700, + "name": "Why I Hate Gym", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-14-why-i-hate-gym/4000-404700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414571/", + "id": 414571, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-die-racher-5/4000-414571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415611/", + "id": 415611, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-omnibus-1-hc/4000-415611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419111/", + "id": 419111, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-you-cant-go-home-again-1-volume-2/4000-419111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416783/", + "id": 416783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-416783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450810/", + "id": 450810, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-18/4000-450810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418927/", + "id": 418927, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-die-x-men-sonderband-1/4000-418927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410597/", + "id": 410597, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-111/4000-410597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416020/", + "id": 416020, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-94/4000-416020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-412388/", + "id": 412388, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-20/4000-412388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417944/", + "id": 417944, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-220/4000-417944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417239/", + "id": 417239, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thor-gods-gladiators-and-the-guardians-of-the-gala/4000-417239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417231/", + "id": 417231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-spider-man-1/4000-417231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417228/", + "id": 417228, + "name": "...Ultimate Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-ultimate-spider-man-1-ultimate/4000-417228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417226/", + "id": 417226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-ultimate-spider-man-premiere-1/4000-417226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417202/", + "id": 417202, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/essential-captain-america-7-volume-seven/4000-417202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417057/", + "id": 417057, + "name": "Don't Rain On My Parade!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-share-your-universe-sampler-1-don-t-rain-on/4000-417057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416887/", + "id": 416887, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-104/4000-416887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444209/", + "id": 444209, + "name": "Avengers vs X-Men libro 2", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-7-avengers-vs-x-men-libro-2/4000-444209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416778/", + "id": 416778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-2/4000-416778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413469/", + "id": 413469, + "name": "Scar Strangled Banner", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-93-scar-strangled-banne/4000-413469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409531/", + "id": 409531, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-49/4000-409531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430963/", + "id": 430963, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-07/4000-430963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420225/", + "id": 420225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-16/4000-420225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420223/", + "id": 420223, + "name": "Страх во плоти. Часть 2. Достойные; Страх во плоти. Часть 1. Город света, город камня", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-16-strakh-vo-ploti-/4000-420223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419106/", + "id": 419106, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/infinity-incoming-1-tpb/4000-419106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417217/", + "id": 417217, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-superiority-complex-1-volume-3/4000-417217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417213/", + "id": 417213, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-little-hits-1-volume-2/4000-417213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415610/", + "id": 415610, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-masters-of-evil-1-tpb/4000-415610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415609/", + "id": 415609, + "name": "End of Days", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-end-of-days-1-end-of-days/4000-415609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406973/", + "id": 406973, + "name": "The Final Hour", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-190-the-final-hour/4000-406973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400152/", + "id": 400152, + "name": "Troubled Mind, Part Three: Gray Matters", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-9-troubled-mind-part-three-gra/4000-400152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541716/", + "id": 541716, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-66/4000-541716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540200/", + "id": 540200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-29/4000-540200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498660/", + "id": 498660, + "name": "Spiderman 15: El Duende", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-34-spiderman-15-el-duende/4000-498660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450806/", + "id": 450806, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-14/4000-450806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414129/", + "id": 414129, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-from-the-marvel-uk-vaults-1-tpb/4000-414129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402182/", + "id": 402182, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-killt-das-marvel-universum-1/4000-402182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398988/", + "id": 398988, + "name": "Flight of the Iron-Spider", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-13-flight-of-the-iron-spider/4000-398988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397550/", + "id": 397550, + "name": "Troubled Mind, Part Two: Proof Positive", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-8-troubled-mind-part-two-proof/4000-397550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395704/", + "id": 395704, + "name": "Troubled Mind, Part One: Right-Hand Man", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-7-troubled-mind-part-one-right/4000-395704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395701/", + "id": 395701, + "name": "Drinking Game", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-7-drinking-game/4000-395701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378726/", + "id": 378726, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-6-volume-6/4000-378726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450807/", + "id": 450807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-15/4000-450807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402560/", + "id": 402560, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-110/4000-402560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410066/", + "id": 410066, + "name": "The Lizard Triumphant", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-92-the-lizard-triumphan/4000-410066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-405531/", + "id": 405531, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-19/4000-405531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411633/", + "id": 411633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-138/4000-411633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407091/", + "id": 407091, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-6/4000-407091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410920/", + "id": 410920, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-wolverine-digest-1-tpb/4000-410920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410502/", + "id": 410502, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-103/4000-410502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409752/", + "id": 409752, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/incredibili-avengers-2/4000-409752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400282/", + "id": 400282, + "name": "Carnage in the USA", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-89-carnage-in-the-usa/4000-400282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406561/", + "id": 406561, + "name": "Revenge of the Reptile", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-91-revenge-of-the-repti/4000-406561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409104/", + "id": 409104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-12/4000-409104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847306/", + "id": 847306, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-6/4000-847306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448283/", + "id": 448283, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-2/4000-448283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430962/", + "id": 430962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-06/4000-430962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414101/", + "id": 414101, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-5-volume-fi/4000-414101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410921/", + "id": 410921, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-cuts-1-tpb/4000-410921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410916/", + "id": 410916, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/essential-wolverine-7-volume-7/4000-410916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410131/", + "id": 410131, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-9/4000-410131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409535/", + "id": 409535, + "name": "Остров Пауков. Питер Паркер, заурядный Человек-Паук; Остров Пауков. Арахнотопия", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-17-ostrov-paukov-pitier-/4000-409535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409534/", + "id": 409534, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-15/4000-409534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409533/", + "id": 409533, + "name": "Страх во плоти. Часть 1. Змей; Почини меня. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-15-strakh-vo-ploti-/4000-409533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397546/", + "id": 397546, + "name": "Agents of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-189-agents-of-thunder/4000-397546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396425/", + "id": 396425, + "name": "Bad Dreams", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-19-bad-dreams/4000-396425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610305/", + "id": 610305, + "name": "Partrull-X: Los años perdidos", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-26-partrull-x-los-anos/4000-610305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540199/", + "id": 540199, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-28/4000-540199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538813/", + "id": 538813, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-27/4000-538813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498658/", + "id": 498658, + "name": "Spiderman 14: Superestrellas", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-32-spiderman-14-superestrel/4000-498658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451433/", + "id": 451433, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-451433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450803/", + "id": 450803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-11/4000-450803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408215/", + "id": 408215, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-vs-x-men-2/4000-408215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402621/", + "id": 402621, + "name": "Agent of S.H.I.E.L.D. ", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-agent-of-shield-1-agent-of-shi/4000-402621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402500/", + "id": 402500, + "name": "Avengers vs. X-Men: Konsequenzen", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-104-avengers-vs-x-men-konsequenzen/4000-402500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402289/", + "id": 402289, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-omnibus-1-volume-1/4000-402289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395252/", + "id": 395252, + "name": "Space Oddities; With Great Power Comes Many Responisbilities", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-12-space-oddities-with-great-p/4000-395252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394712/", + "id": 394712, + "name": "Joking Hazard", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-6-joking-hazard/4000-394712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390453/", + "id": 390453, + "name": "Emotional Triggers", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-5-emotional-triggers/4000-390453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390451/", + "id": 390451, + "name": "Route 616 Part 1", + "site_detail_url": "https://comicvine.gamespot.com/red-she-hulk-63-route-616-part-1/4000-390451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-405730/", + "id": 405730, + "name": "L'intégrale 1981", + "site_detail_url": "https://comicvine.gamespot.com/marvel-classic-x-men-1-l-integrale-1981/4000-405730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-405398/", + "id": 405398, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1352/4000-405398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401582/", + "id": 401582, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1351/4000-401582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400953/", + "id": 400953, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1350/4000-400953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402050/", + "id": 402050, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-die-racher-4/4000-402050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397683/", + "id": 397683, + "name": "Почини меня. Часть 2. Божественное число; Страх во плоти: Книга Черепа", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-14-pochini-mienia-c/4000-397683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397681/", + "id": 397681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-14/4000-397681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406370/", + "id": 406370, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/le-grandi-parodie-marvel-1/4000-406370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401631/", + "id": 401631, + "name": "Spidey vs. The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-90-spidey-vs-the-avenge/4000-401631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399456/", + "id": 399456, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-18/4000-399456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404920/", + "id": 404920, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-stronger-than-monsters-1-volu/4000-404920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404916/", + "id": 404916, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/ff-by-jonathan-hickman-4-volume-four/4000-404916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402960/", + "id": 402960, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-136-1/4000-402960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417484/", + "id": 417484, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-05/4000-417484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402559/", + "id": 402559, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-109/4000-402559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407175/", + "id": 407175, + "name": "Enter The Warzone", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone-1-enter-the-warzone/4000-407175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401691/", + "id": 401691, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-1/4000-401691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401368/", + "id": 401368, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-companion-1-hc/4000-401368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715140/", + "id": 715140, + "name": "Rocked by the Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-254-rocked-by-th/4000-715140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401369/", + "id": 401369, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-threats-menaces-1-volume-3/4000-401369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401363/", + "id": 401363, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-3-volum/4000-401363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408124/", + "id": 408124, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-137/4000-408124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408121/", + "id": 408121, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-137/4000-408121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407177/", + "id": 407177, + "name": "My Own Worst Enemy", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-my-own-worst-enemy-1-my-own-wo/4000-407177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404917/", + "id": 404917, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/a-x-a-x-awesome-1-volume-1/4000-404917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394706/", + "id": 394706, + "name": "Agents of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-188-agents-of-thunder/4000-394706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558842/", + "id": 558842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-reunios-8/4000-558842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541714/", + "id": 541714, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-64/4000-541714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540198/", + "id": 540198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-27/4000-540198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538812/", + "id": 538812, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-26/4000-538812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498882/", + "id": 498882, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos-27/4000-498882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498655/", + "id": 498655, + "name": "Spiderman 13: Matanza", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-29-spiderman-13-matanza/4000-498655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402581/", + "id": 402581, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-5/4000-402581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399174/", + "id": 399174, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-34/4000-399174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399173/", + "id": 399173, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-vs-x-men-1/4000-399173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399120/", + "id": 399120, + "name": "HC\\TPB", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-the-red-shadow-1-hc-tpb/4000-399120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397757/", + "id": 397757, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/venom-devil-s-pack-1-volume-4/4000-397757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397746/", + "id": 397746, + "name": "Avengers World", + "site_detail_url": "https://comicvine.gamespot.com/avengers-avengers-world-1-avengers-world/4000-397746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388560/", + "id": 388560, + "name": "Tutor Power!; If They Don't Win, It's a Pain", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-11-tutor-power-if-they-don-t-w/4000-388560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387262/", + "id": 387262, + "name": "The Aggressive Approach", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-4-the-aggressive-approach/4000-387262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386136/", + "id": 386136, + "name": "With Friends Like These; The Last American Dream", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earth-s-mightiest-heroes-11-with-friends-/4000-386136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397682/", + "id": 397682, + "name": "Почини меня. Часть 1; Железная Вдова", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-13-pochini-mienia-c/4000-397682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397680/", + "id": 397680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-13/4000-397680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397678/", + "id": 397678, + "name": "Возвращение Анти-Венома. Часть 2. День откровений; Заражение. От стены к стене; Перекрестки; Никогда тебя не оставлю", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-15-vozvrashchieniie-anti/4000-397678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388561/", + "id": 388561, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone-5/4000-388561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384964/", + "id": 384964, + "name": "Everything You Know is Wrong", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-3-everything-you-know-is-wrong/4000-384964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407497/", + "id": 407497, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-7/4000-407497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399148/", + "id": 399148, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-136/4000-399148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397675/", + "id": 397675, + "name": "Ends Of The Earth", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-88-ends-of-the-earth/4000-397675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396027/", + "id": 396027, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-17/4000-396027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391843/", + "id": 391843, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-39/4000-391843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715443/", + "id": 715443, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-253/4000-715443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398225/", + "id": 398225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1348/4000-398225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384955/", + "id": 384955, + "name": "Part Five", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-end-of-days-5-part-five/4000-384955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417494/", + "id": 417494, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-04/4000-417494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402558/", + "id": 402558, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-108/4000-402558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407275/", + "id": 407275, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-5/4000-407275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397413/", + "id": 397413, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1347/4000-397413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395476/", + "id": 395476, + "name": "Ends of the Earth, Part 1: My World On Fire; Ends of the Earth (Part 2): Earth's Mightiest; The Killing Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-87-ends-of-the-earth-pa/4000-395476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395268/", + "id": 395268, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-46/4000-395268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396439/", + "id": 396439, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-vs-1-tpb/4000-396439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402203/", + "id": 402203, + "name": "Die Zukunft", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-14-die-zukunft/4000-402203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398911/", + "id": 398911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/grandi-eventi-marvel-1/4000-398911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396176/", + "id": 396176, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/imposibles-vengadores-2/4000-396176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408696/", + "id": 408696, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ff-5/4000-408696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407272/", + "id": 407272, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-4/4000-407272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396121/", + "id": 396121, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1346/4000-396121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420696/", + "id": 420696, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-creator-2/4000-420696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397752/", + "id": 397752, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020-1-tpb/4000-397752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396607/", + "id": 396607, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-iron-man-digest-1-volume-1/4000-396607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395905/", + "id": 395905, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus-1-volume-1/4000-395905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394505/", + "id": 394505, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-6/4000-394505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392572/", + "id": 392572, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-134/4000-392572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391825/", + "id": 391825, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-6/4000-391825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387585/", + "id": 387585, + "name": "The 50 Worst Things About Cartoons", + "site_detail_url": "https://comicvine.gamespot.com/mad-520-the-50-worst-things-about-cartoons/4000-387585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387256/", + "id": 387256, + "name": "The World Is A Dangerous Place", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-187-the-world-is-a-dangerous-place/4000-387256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385033/", + "id": 385033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-11/4000-385033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384967/", + "id": 384967, + "name": "Day One", + "site_detail_url": "https://comicvine.gamespot.com/venom-31-day-one/4000-384967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541713/", + "id": 541713, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-63/4000-541713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540197/", + "id": 540197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-26/4000-540197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513286/", + "id": 513286, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/defensores-9/4000-513286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499575/", + "id": 499575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-increible-hulk-10/4000-499575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498881/", + "id": 498881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos-26/4000-498881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498653/", + "id": 498653, + "name": "Spiderman 12: Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-27-spiderman-12-hollywood/4000-498653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498652/", + "id": 498652, + "name": "Fantastic Four 4: El Cruce", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-26-fantastic-four-4-el-cruc/4000-498652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450468/", + "id": 450468, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-omnibus-uncanny-x-force-1/4000-450468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392556/", + "id": 392556, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-my-life-as-a-weapon-1-volume-1/4000-392556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391252/", + "id": 391252, + "name": "Dying Wish", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-dying-wish-1-dying-wish/4000-391252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387644/", + "id": 387644, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-5-volume-5/4000-387644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387638/", + "id": 387638, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-avengers-vs-thanos-1-tpb/4000-387638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381416/", + "id": 381416, + "name": "Xtreme Krhyme Crew; The Power of Truth", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-10-xtreme-krhyme-crew-the-powe/4000-381416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378894/", + "id": 378894, + "name": "Part 4: The Last Avenger", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-4-part-4-the-last-/4000-378894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378893/", + "id": 378893, + "name": "The Leader's Legions!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-1/4000-378893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376023/", + "id": 376023, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-6/4000-376023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402049/", + "id": 402049, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-die-racher-3/4000-402049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395412/", + "id": 395412, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-weaponized-1-volume-11/4000-395412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392838/", + "id": 392838, + "name": "Issue #12", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-12-issue-12/4000-392838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715442/", + "id": 715442, + "name": "Revenge of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-252-revenge-of-t/4000-715442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407270/", + "id": 407270, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-3/4000-407270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396122/", + "id": 396122, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1345/4000-396122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392815/", + "id": 392815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-86/4000-392815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389755/", + "id": 389755, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-16/4000-389755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-405698/", + "id": 405698, + "name": "In una terra selvaggia", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gli-anni-perduti-ultimate-collection-1-in-un/4000-405698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407251/", + "id": 407251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-2/4000-407251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395034/", + "id": 395034, + "name": "Volume 15", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-15-volum/4000-395034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395393/", + "id": 395393, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-1/4000-395393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392771/", + "id": 392771, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1343/4000-392771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389098/", + "id": 389098, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-85/4000-389098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387666/", + "id": 387666, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-45/4000-387666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402557/", + "id": 402557, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-107/4000-402557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384963/", + "id": 384963, + "name": "Mutiny", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-37-mutiny/4000-384963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378896/", + "id": 378896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone-3/4000-378896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715441/", + "id": 715441, + "name": "The Menace of Madame Masque!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-251-the-menace-o/4000-715441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391683/", + "id": 391683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1342/4000-391683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847230/", + "id": 847230, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-5/4000-847230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444208/", + "id": 444208, + "name": "Avengers vs X-Men libro 1", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-6-avengers-vs-x-men-libro-1/4000-444208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417507/", + "id": 417507, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2013-03/4000-417507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402499/", + "id": 402499, + "name": "Avengers: Legenden", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-103-avengers-legenden/4000-402499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395419/", + "id": 395419, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-1-tpb/4000-395419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395413/", + "id": 395413, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1-tpb/4000-395413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395037/", + "id": 395037, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-by-rick-remender-3-volume-three/4000-395037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392851/", + "id": 392851, + "name": "Учитель на замену. Часть 2; Заражение. Великая ответственность; Возвращение Анти-Венома. Часть 1. Призрак Джины ДеВольф; Заражение. Из ниоткуда", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-14-uchitiel-na-zamienu-c/4000-392851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392570/", + "id": 392570, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-133/4000-392570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392555/", + "id": 392555, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-tomorrows-avengers-2-volum/4000-392555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391848/", + "id": 391848, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-5/4000-391848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391542/", + "id": 391542, + "name": "Vingadores vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-vs-x-men-0-vingadores-vs-x-men/4000-391542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391541/", + "id": 391541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-33/4000-391541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390604/", + "id": 390604, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/glenn-fabry-sketchbook-1-sc/4000-390604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387762/", + "id": 387762, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-5/4000-387762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383652/", + "id": 383652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-273/4000-383652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382809/", + "id": 382809, + "name": "The Peter Principle", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-2-the-peter-principle/4000-382809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381413/", + "id": 381413, + "name": "Deadpool Killed the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-killustrated-1-deadpool-killed-the-marvel/4000-381413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381409/", + "id": 381409, + "name": "Planet of the Beasts!; The New Deal?!", + "site_detail_url": "https://comicvine.gamespot.com/a-x-4-planet-of-the-beasts-the-new-deal/4000-381409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380582/", + "id": 380582, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/alpha-big-time-1/4000-380582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380349/", + "id": 380349, + "name": "Faith in Monsters", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-11-faith-in-monsters/4000-380349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378897/", + "id": 378897, + "name": "Grandfather Clock", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-36-grandfather-clock/4000-378897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378868/", + "id": 378868, + "name": "Hero or Menace?", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-1-hero-or-menace/4000-378868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376664/", + "id": 376664, + "name": "Midnight Son", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-1-midnight-son/4000-376664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-570060/", + "id": 570060, + "name": "La gran evasión", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-6-la-gran-evasion/4000-570060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558840/", + "id": 558840, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-reunios-6/4000-558840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542787/", + "id": 542787, + "name": "El Efecto Omega", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-punisher-el-castigador-2-el-efecto-omeg/4000-542787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513283/", + "id": 513283, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/defensores-8/4000-513283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498880/", + "id": 498880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos-25/4000-498880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498651/", + "id": 498651, + "name": "Spiderman 11: Gatas y Reyes", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-25-spiderman-11-gatas-y-rey/4000-498651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498650/", + "id": 498650, + "name": "X-Men 6: Blockbuster", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-24-x-men-6-blockbuster/4000-498650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402042/", + "id": 402042, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-23/4000-402042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387065/", + "id": 387065, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-1-volume-1/4000-387065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386487/", + "id": 386487, + "name": "Issue #11", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-11-issue-11/4000-386487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386450/", + "id": 386450, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-island-of-death-1-tpb/4000-386450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386289/", + "id": 386289, + "name": "Фантастическое путешествие. Часть 2; Учитель на замену. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-13-2-1/4000-386289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376022/", + "id": 376022, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-5/4000-376022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373298/", + "id": 373298, + "name": "Taking it to the House", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-black-widow-640-taking-it-to-t/4000-373298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372567/", + "id": 372567, + "name": "Simon Says, Pie!; I Battled Gardoom--A Really Big Monster!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-9-simon-says-pie-i-battled-gar/4000-372567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389753/", + "id": 389753, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-15/4000-389753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388932/", + "id": 388932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1341/4000-388932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388846/", + "id": 388846, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-northstar-1-volume-10/4000-388846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386882/", + "id": 386882, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-84/4000-386882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376342/", + "id": 376342, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-38/4000-376342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387760/", + "id": 387760, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1340/4000-387760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387645/", + "id": 387645, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-the-good-the-green-and-the-ugl/4000-387645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402580/", + "id": 402580, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-4/4000-402580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715375/", + "id": 715375, + "name": "In the Clutches of the Chameleon!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-250-in-the-clutc/4000-715375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387665/", + "id": 387665, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-44/4000-387665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387567/", + "id": 387567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1339/4000-387567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386459/", + "id": 386459, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-2-volum/4000-386459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386456/", + "id": 386456, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-team-up-4-volume-4/4000-386456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386453/", + "id": 386453, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-life-after-death-1-volume-1/4000-386453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386448/", + "id": 386448, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-black-widow-1-tpb/4000-386448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383936/", + "id": 383936, + "name": "Countdown To Destruction", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-83-countdown-to-destruc/4000-383936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402556/", + "id": 402556, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-106/4000-402556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416850/", + "id": 416850, + "name": "Tod Eines Kobolds", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-20-tod-eines-kobolds/4000-416850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386343/", + "id": 386343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1338/4000-386343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386078/", + "id": 386078, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/x-force-omnibus-1-volume-1/4000-386078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386075/", + "id": 386075, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection-1/4000-386075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437062/", + "id": 437062, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-278/4000-437062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388849/", + "id": 388849, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-5-volume-5/4000-388849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386333/", + "id": 386333, + "name": "Новый Человек-Паук. Часть 5; Человек-Паук. Спецвыпуск", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-12--5-/4000-386333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382808/", + "id": 382808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone-4/4000-382808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380723/", + "id": 380723, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-4/4000-380723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379663/", + "id": 379663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-215/4000-379663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-377652/", + "id": 377652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-132/4000-377652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-374689/", + "id": 374689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-15-1/4000-374689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373805/", + "id": 373805, + "name": "Dying Wish: Suicide Run; Spider-Dreams; Date Night", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-700-dying-wish-suicide-run-/4000-373805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373306/", + "id": 373306, + "name": "Tomorrow Will Rise", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-35-tomorrow-will-rise/4000-373306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373217/", + "id": 373217, + "name": "We Were Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2-we-were-avengers/4000-373217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373216/", + "id": 373216, + "name": "Six Days in the Life Of", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-6-six-days-in-the-life-of/4000-373216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372452/", + "id": 372452, + "name": "Enter: Morbius - The Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-699-1-enter-morbius-the-liv/4000-372452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371257/", + "id": 371257, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-15/4000-371257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371256/", + "id": 371256, + "name": "Dying Wish: Outside the Box", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-699-dying-wish-outside-the-/4000-371256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371103/", + "id": 371103, + "name": "Avengers World", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1-avengers-world/4000-371103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612252/", + "id": 612252, + "name": "El asombroso Spiderman de Roger Stern y John Romita Jr.", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-44-el-asombroso-spider/4000-612252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558839/", + "id": 558839, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-reunios-5/4000-558839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541711/", + "id": 541711, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-61/4000-541711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540195/", + "id": 540195, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-24/4000-540195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538256/", + "id": 538256, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-5/4000-538256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498649/", + "id": 498649, + "name": "Spiderman 10: Los Seis Siniestros", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-23-spiderman-10-los-seis-si/4000-498649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402076/", + "id": 402076, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-2/4000-402076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379554/", + "id": 379554, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-man-dance-with-the-devil-1-tpb/4000-379554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376021/", + "id": 376021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-4/4000-376021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370579/", + "id": 370579, + "name": "Dragon Me Down!; Four Seasons", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-8-dragon-me-down-four-seasons/4000-370579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369093/", + "id": 369093, + "name": "The End", + "site_detail_url": "https://comicvine.gamespot.com/avengers-34-the-end/4000-369093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369012/", + "id": 369012, + "name": "Agent of S.H.I.E.L.D. Part 1", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-1-agent-of-s-h-i-e-l-d-part-1/4000-369012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366194/", + "id": 366194, + "name": "Rock the Microverse", + "site_detail_url": "https://comicvine.gamespot.com/avengers-33-rock-the-microverse/4000-366194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383937/", + "id": 383937, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulks-11/4000-383937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386846/", + "id": 386846, + "name": "Новый железный век", + "site_detail_url": "https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-10-wikiissue/4000-386846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386486/", + "id": 386486, + "name": "Issue #10", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-10-issue-10/4000-386486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716100/", + "id": 716100, + "name": "Daredevil The Man Without Fear!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-249-daredevil-th/4000-716100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366376/", + "id": 366376, + "name": "Avengers Vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1-avengers-vs-x-men/4000-366376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369718/", + "id": 369718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-144/4000-369718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384663/", + "id": 384663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1335/4000-384663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383934/", + "id": 383934, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-81/4000-383934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381074/", + "id": 381074, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-captain-marvel-1-tpb/4000-381074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369727/", + "id": 369727, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-die-x-men-5/4000-369727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402555/", + "id": 402555, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-105/4000-402555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378922/", + "id": 378922, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/gil-kane-amazing-spider-man-artist-edition-1-hc/4000-378922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367811/", + "id": 367811, + "name": "War Drumm", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-33-war-drumm/4000-367811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366197/", + "id": 366197, + "name": "A Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-32-a-tangled-web/4000-366197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716109/", + "id": 716109, + "name": "The Absorbing Man Means Evil!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-248-the-absorbin/4000-716109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389750/", + "id": 389750, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-13/4000-389750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373934/", + "id": 373934, + "name": "Fear Itself: Day one; My friends can beat up your friends: part 3; Spider-Man Noir: part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-80-fear-itself-day-one-/4000-373934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447351/", + "id": 447351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-12/4000-447351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437061/", + "id": 437061, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-277/4000-437061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386288/", + "id": 386288, + "name": "Питер Паркер: Фантастический Человек-Паук; Фантастическое путешествие. Часть 1; Чертовски плохое обслуживание. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-12--1-2/4000-386288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383514/", + "id": 383514, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/the-absolute-ultimate-gutters-omnibus-3-volume-thr/4000-383514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383487/", + "id": 383487, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-the-end-is-the-beginning-1-tpb/4000-383487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383485/", + "id": 383485, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-consequences-1-tpb/4000-383485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381075/", + "id": 381075, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-end-1-tpb/4000-381075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379445/", + "id": 379445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-31/4000-379445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379432/", + "id": 379432, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-133/4000-379432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379428/", + "id": 379428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-133/4000-379428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379427/", + "id": 379427, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-98/4000-379427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379160/", + "id": 379160, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/nova-classic-1-volume-1/4000-379160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378724/", + "id": 378724, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-4-volume-4/4000-378724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370568/", + "id": 370568, + "name": "The Evil Inside Us All...", + "site_detail_url": "https://comicvine.gamespot.com/venom-27-1-the-evil-inside-us-all/4000-370568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370565/", + "id": 370565, + "name": "Synthetic Dawn", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-34-synthetic-dawn/4000-370565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370564/", + "id": 370564, + "name": "The End", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-34-the-end/4000-370564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370249/", + "id": 370249, + "name": "Skullduggery", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-2-skullduggery/4000-370249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369103/", + "id": 369103, + "name": "Dying Wish Prelude: Day in the Life", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-698-dying-wish-prelude-day-/4000-369103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367813/", + "id": 367813, + "name": "You Can't Go Home Again, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-6-you-cant-go-home-again-part-1/4000-367813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367808/", + "id": 367808, + "name": "Danger Zone, Part Three: War of the Goblins", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-697-danger-zone-part-three-/4000-367808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367700/", + "id": 367700, + "name": "Science Bros!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-9-science-bros/4000-367700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367696/", + "id": 367696, + "name": "Unstable", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-1-unstable/4000-367696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366188/", + "id": 366188, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-14/4000-366188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366187/", + "id": 366187, + "name": "The Impossible End", + "site_detail_url": "https://comicvine.gamespot.com/defenders-12-the-impossible-end/4000-366187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610300/", + "id": 610300, + "name": "Universo X", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-21-universo-x/4000-610300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558838/", + "id": 558838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-reunios-4/4000-558838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541710/", + "id": 541710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-60/4000-541710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538808/", + "id": 538808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-22/4000-538808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498646/", + "id": 498646, + "name": "Spiderman 9: Irresponsable", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-20-spiderman-9-irresponsabl/4000-498646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480987/", + "id": 480987, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/la-nueva-patrulla-x-20/4000-480987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390031/", + "id": 390031, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-danger-zone-1-hc-tpb/4000-390031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363160/", + "id": 363160, + "name": "Wake-Up Call; There's a Ghost in My Locker!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-7-wake-up-call-there-s-a-ghost/4000-363160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363151/", + "id": 363151, + "name": "Inner Space", + "site_detail_url": "https://comicvine.gamespot.com/avengers-32-inner-space/4000-363151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360932/", + "id": 360932, + "name": "End Times", + "site_detail_url": "https://comicvine.gamespot.com/avengers-31-end-times/4000-360932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457255/", + "id": 457255, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-patrick-brown-video-game-art-character-/4000-457255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397951/", + "id": 397951, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-in-pursuit-of-flight-1-volume-1/4000-397951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716108/", + "id": 716108, + "name": "Legion of Losers", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-247-legion-of-lo/4000-716108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362201/", + "id": 362201, + "name": "The End Times Begin", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-31-the-end-times-begin/4000-362201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390112/", + "id": 390112, + "name": "X-O Manowar 9", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1332-x-o-manowar-9/4000-390112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373826/", + "id": 373826, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1331/4000-373826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372244/", + "id": 372244, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-79/4000-372244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345209/", + "id": 345209, + "name": "Amazing Spider-Man: Trouble on the Horizon", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-trouble-on-the-horizon-1-amazin/4000-345209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367279/", + "id": 367279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-die-x-men-4/4000-367279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402579/", + "id": 402579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-3/4000-402579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372564/", + "id": 372564, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-4-volume-4/4000-372564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373931/", + "id": 373931, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-12/4000-373931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846962/", + "id": 846962, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-4/4000-846962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444857/", + "id": 444857, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-10/4000-444857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444732/", + "id": 444732, + "name": "Marvel Omnibus: Avengers vs X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-omnibus-avengers-vs-x-men-1-marvel-omnibus-/4000-444732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380820/", + "id": 380820, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-2/4000-380820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380819/", + "id": 380819, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1/4000-380819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372764/", + "id": 372764, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-8/4000-372764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372761/", + "id": 372761, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-130/4000-372761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372508/", + "id": 372508, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-132/4000-372508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372243/", + "id": 372243, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-78/4000-372243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369717/", + "id": 369717, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-143/4000-369717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369710/", + "id": 369710, + "name": "Si j'avais des griffes", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-6-si-javais-des-griffes/4000-369710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369703/", + "id": 369703, + "name": "Mirroirs Abandonnés", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-6-mirroirs-abandonnes/4000-369703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366815/", + "id": 366815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-extra-2/4000-366815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366795/", + "id": 366795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-2/4000-366795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364163/", + "id": 364163, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-annual-1/4000-364163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364133/", + "id": 364133, + "name": "More Pencils, More Books, More Teachers' Dirty Looks", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-19-more-pencils-more-books/4000-364133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363162/", + "id": 363162, + "name": "The Rise of the Descendants", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-33-the-rise-of-the-descendants/4000-363162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363161/", + "id": 363161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone-1/4000-363161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363149/", + "id": 363149, + "name": "Danger Zone Part Two: Key To the Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-696-danger-zone-part-two-ke/4000-363149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362255/", + "id": 362255, + "name": "Marvelous Meadows", + "site_detail_url": "https://comicvine.gamespot.com/a-babies-vs-x-babies-1-marvelous-meadows/4000-362255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362221/", + "id": 362221, + "name": "Nothing Stops Justice!", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-182-nothing-stops-justice/4000-362221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362182/", + "id": 362182, + "name": "Clash with a Titan", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-8-clash-with-a-titan/4000-362182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360933/", + "id": 360933, + "name": "Part 1: Powerless", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-1-part-1-powerless/4000-360933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360928/", + "id": 360928, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-13/4000-360928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360039/", + "id": 360039, + "name": "Danger Zone, Part One: Warning Signs", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-695-danger-zone-part-one-wa/4000-360039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360038/", + "id": 360038, + "name": "Death From Above", + "site_detail_url": "https://comicvine.gamespot.com/defenders-11-death-from-above/4000-360038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359916/", + "id": 359916, + "name": "Round 12", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-12-round-12/4000-359916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-637522/", + "id": 637522, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-worlds-greatest-super-hero-1-tpb/4000-637522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541709/", + "id": 541709, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-59/4000-541709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538255/", + "id": 538255, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-4/4000-538255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538254/", + "id": 538254, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-3/4000-538254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498877/", + "id": 498877, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos-22/4000-498877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475302/", + "id": 475302, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-curse-is-broken-1-volume-6/4000-475302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474323/", + "id": 474323, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/extremely-moronic-mad-1-tpb/4000-474323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411572/", + "id": 411572, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/hero-initiative-fantastic-four-1-sc/4000-411572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407090/", + "id": 407090, + "name": "Tercera Génesis", + "site_detail_url": "https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes-1-tercera-genesis/4000-407090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386458/", + "id": 386458, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-1-volum/4000-386458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376026/", + "id": 376026, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vvx-vs-2/4000-376026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370578/", + "id": 370578, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda-1-tpb/4000-370578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366475/", + "id": 366475, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-savage-six-1-tpb/4000-366475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358884/", + "id": 358884, + "name": "Training Wheels; And Sometimes You Get What You Need!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-6-training-wheels-and-sometime/4000-358884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-353154/", + "id": 353154, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-2/4000-353154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402047/", + "id": 402047, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-die-racher-1/4000-402047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386485/", + "id": 386485, + "name": "Мстители будущего. Часть 6; Одержимость. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-9-6-6/4000-386485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386287/", + "id": 386287, + "name": "Вечный огонь; Чертовски плохое обслуживание. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-11-1/4000-386287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371681/", + "id": 371681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-2012-christmas-special-1/4000-371681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358932/", + "id": 358932, + "name": "Alpha, Part 3: Final Grade", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-694-alpha-part-3-final-grad/4000-358932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716107/", + "id": 716107, + "name": "Fantastic Friends!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-246-fantastic-fr/4000-716107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372242/", + "id": 372242, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-77/4000-372242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369918/", + "id": 369918, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-by-rick-remender-2-volume-two/4000-369918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366843/", + "id": 366843, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-142/4000-366843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-368293/", + "id": 368293, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-1-hc/4000-368293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362554/", + "id": 362554, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-11/4000-362554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355887/", + "id": 355887, + "name": "Alpha, Part 2: That Something Special", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-693-alpha-part-2-that-somet/4000-355887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-744294/", + "id": 744294, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/x-men-dein-freund-und-helfer-1/4000-744294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462180/", + "id": 462180, + "name": "Marvels", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-13-marvels/4000-462180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444856/", + "id": 444856, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-9/4000-444856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391858/", + "id": 391858, + "name": "Dein Freund und Helfer", + "site_detail_url": "https://comicvine.gamespot.com/x-men-paperbacks-2-dein-freund-und-helfer/4000-391858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387072/", + "id": 387072, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-carnage-usa-1-tpb/4000-387072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386622/", + "id": 386622, + "name": "Тор: Первая гроза. Часть 3. Финал", + "site_detail_url": "https://comicvine.gamespot.com/tor-mega-komiks-8-3/4000-386622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386398/", + "id": 386398, + "name": "Иллюзионист", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-8-wikiissue/4000-386398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372759/", + "id": 372759, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-e-gli-x-men-7/4000-372759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372517/", + "id": 372517, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-269/4000-372517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372516/", + "id": 372516, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-crossover-78/4000-372516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372515/", + "id": 372515, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-129/4000-372515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372241/", + "id": 372241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-76/4000-372241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370953/", + "id": 370953, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-131/4000-370953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364655/", + "id": 364655, + "name": "Instants Gelés", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-5-instants-geles/4000-364655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364653/", + "id": 364653, + "name": "Et ce fût la Guerre", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-5-et-ce-fut-la-guerre/4000-364653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363539/", + "id": 363539, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-5/4000-363539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363535/", + "id": 363535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1/4000-363535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362855/", + "id": 362855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-20/4000-362855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359254/", + "id": 359254, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-final-threat-1/4000-359254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358975/", + "id": 358975, + "name": "You Are Whatever You Want to Be", + "site_detail_url": "https://comicvine.gamespot.com/ff-22-you-are-whatever-you-want-to-be/4000-358975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357711/", + "id": 357711, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-5/4000-357711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357707/", + "id": 357707, + "name": "Ready! Aim...", + "site_detail_url": "https://comicvine.gamespot.com/avengers-30-ready-aim/4000-357707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356768/", + "id": 356768, + "name": "The Wizard", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-610-the-wizard/4000-356768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356765/", + "id": 356765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-12/4000-356765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356764/", + "id": 356764, + "name": "Round 11", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-11-round-11/4000-356764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356683/", + "id": 356683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-20/4000-356683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-354856/", + "id": 354856, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-6/4000-354856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716106/", + "id": 716106, + "name": "Where Crawls the Lizard?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-245-where-crawls/4000-716106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541708/", + "id": 541708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-58/4000-541708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540192/", + "id": 540192, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-21/4000-540192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538806/", + "id": 538806, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-20/4000-538806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538253/", + "id": 538253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-2/4000-538253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498642/", + "id": 498642, + "name": "Spiderman 8: Veneno", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-16-spiderman-8-veneno/4000-498642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418286/", + "id": 418286, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-1-tpb/4000-418286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-361085/", + "id": 361085, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-5-volume-5/4000-361085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358883/", + "id": 358883, + "name": "The Finals Countdown; Nothing Can Stop... the Trapster?1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-5-the-finals-countdown-nothing/4000-358883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357736/", + "id": 357736, + "name": "The Serpent Crown", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-5/4000-357736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-353151/", + "id": 353151, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-1/4000-353151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-348063/", + "id": 348063, + "name": "Old Haunts", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-156-1-old-haunts/4000-348063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386484/", + "id": 386484, + "name": "Мстители будущего. Часть 5; Одержимость. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-8-5-5/4000-386484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386286/", + "id": 386286, + "name": "Еще одна передряга. Часть 5; Еще одна передряга. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-10-5-6/4000-386286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408694/", + "id": 408694, + "name": "Was Geschah mit Johnny Storm?", + "site_detail_url": "https://comicvine.gamespot.com/ff-3-was-geschah-mit-johnny-storm/4000-408694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352573/", + "id": 352573, + "name": "Alpha, Part 1: Point of Origin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-692-alpha-part-1-point-of-o/4000-352573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388798/", + "id": 388798, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-nothing-can-stop-the-juggernaut-1-hc/4000-388798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-351057/", + "id": 351057, + "name": "No Turning Back, Part 4: Human Error", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-691-no-turning-back-part-4-/4000-351057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402578/", + "id": 402578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-2/4000-402578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441301/", + "id": 441301, + "name": "Final Exam", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-1-final-exam/4000-441301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402552/", + "id": 402552, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-102/4000-402552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716105/", + "id": 716105, + "name": "Spidey Meets The Mandarin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-244-spidey-meets/4000-716105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362553/", + "id": 362553, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-10/4000-362553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-393856/", + "id": 393856, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vs-capcom-official-complete-works-1/4000-393856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447350/", + "id": 447350, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-11/4000-447350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447349/", + "id": 447349, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-10/4000-447349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447348/", + "id": 447348, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-9/4000-447348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447347/", + "id": 447347, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-8/4000-447347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426413/", + "id": 426413, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/man-thing-omnibus-1-hc/4000-426413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410798/", + "id": 410798, + "name": "Book Six", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-410798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388148/", + "id": 388148, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zomnibus-1-hc/4000-388148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379837/", + "id": 379837, + "name": "Schatten der Vergangenheit", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-2-schatten-der-vergangenheit/4000-379837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373091/", + "id": 373091, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse-the-x-terminated-1-tpb/4000-373091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372513/", + "id": 372513, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-211/4000-372513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372511/", + "id": 372511, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-268/4000-372511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363468/", + "id": 363468, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-130/4000-363468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362560/", + "id": 362560, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-75/4000-362560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359962/", + "id": 359962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-and-ultimate-spider-man-1/4000-359962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357326/", + "id": 357326, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-517/4000-357326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357112/", + "id": 357112, + "name": "Rien d'Impossible", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-4-rien-dimpossible/4000-357112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356679/", + "id": 356679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-4/4000-356679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-354168/", + "id": 354168, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-11/4000-354168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-354132/", + "id": 354132, + "name": "Brooklyn Avengers, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-129-2-brooklyn-avengers-part-two/4000-354132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-354106/", + "id": 354106, + "name": "Ronance", + "site_detail_url": "https://comicvine.gamespot.com/ff-21-ronance/4000-354106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352701/", + "id": 352701, + "name": "...Someone is Killing the Brooklyn Avengers, Part One", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-129-1-someone-is-killing-the-bro/4000-352701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352647/", + "id": 352647, + "name": "Monsters of Evil, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/venom-23-monsters-of-evil-part-1/4000-352647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-351095/", + "id": 351095, + "name": "Monsters! Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-33-2-monsters-part-two/4000-351095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-351068/", + "id": 351068, + "name": "Round 10", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-10-round-10/4000-351068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349678/", + "id": 349678, + "name": "Father's Day", + "site_detail_url": "https://comicvine.gamespot.com/venom-22-fathers-day/4000-349678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349675/", + "id": 349675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-4/4000-349675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349649/", + "id": 349649, + "name": "Monsters! Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-33-1-monsters-part-one/4000-349649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349646/", + "id": 349646, + "name": "The God Ship", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-609-the-god-ship/4000-349646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349642/", + "id": 349642, + "name": "Outer Space Antics", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-6-outer-space-antics/4000-349642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349639/", + "id": 349639, + "name": "Part II: Avengers: Assassinated", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-2-part-ii-aveng/4000-349639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-348057/", + "id": 348057, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-10/4000-348057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-348054/", + "id": 348054, + "name": "Round 9", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-9-round-9/4000-348054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347750/", + "id": 347750, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-19/4000-347750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347746/", + "id": 347746, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-5/4000-347746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347745/", + "id": 347745, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/la-imposible-patrulla-x-5/4000-347745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558835/", + "id": 558835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-reunios-1/4000-558835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541707/", + "id": 541707, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-57/4000-541707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540191/", + "id": 540191, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-20/4000-540191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538805/", + "id": 538805, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-19/4000-538805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538251/", + "id": 538251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-1/4000-538251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514568/", + "id": 514568, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-el-dia-despues-4/4000-514568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498640/", + "id": 498640, + "name": "Spiderman 7: Escrutinio Público", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-14-spiderman-7-escrutinio-p/4000-498640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-434951/", + "id": 434951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-a-era-do-apocalipse-4/4000-434951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359181/", + "id": 359181, + "name": "Omega Effect", + "site_detail_url": "https://comicvine.gamespot.com/punisher-by-greg-rucka-2-omega-effect/4000-359181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358882/", + "id": 358882, + "name": "Take Me Out At the Ball Game; Don't Rain on My Parade!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-4-take-me-out-at-the-ball-game/4000-358882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355536/", + "id": 355536, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-5/4000-355536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347224/", + "id": 347224, + "name": "No Turning Back, Part 3: Natural State", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-690-no-turning-back-part-3-/4000-347224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370885/", + "id": 370885, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-lizard-no-turning-back-1-tp/4000-370885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716104/", + "id": 716104, + "name": "Who's After Spidey?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-243-whos-after-s/4000-716104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359212/", + "id": 359212, + "name": "Omega Effect", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-3-omega-effect/4000-359212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402551/", + "id": 402551, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-101/4000-402551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355048/", + "id": 355048, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-9/4000-355048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383513/", + "id": 383513, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/the-absolute-ultimate-gutters-omnibus-2-volume-two/4000-383513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344049/", + "id": 344049, + "name": "No Turning Back, Part Two: Cold Blooded", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-689-no-turning-back-part-tw/4000-344049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846720/", + "id": 846720, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-3/4000-846720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450021/", + "id": 450021, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-sinister-six-1-hc/4000-450021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447346/", + "id": 447346, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-7/4000-447346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447343/", + "id": 447343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-4/4000-447343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437407/", + "id": 437407, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chronicle-1-hc/4000-437407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402496/", + "id": 402496, + "name": "Avengers: X-Sanction", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-100-avengers-x-sanction/4000-402496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-393908/", + "id": 393908, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-presents-batman-1/4000-393908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391546/", + "id": 391546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-universe-3/4000-391546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386483/", + "id": 386483, + "name": "Мстители будущего. Часть 4; Одержимость. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-7-4-4/4000-386483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386395/", + "id": 386395, + "name": "Issue #6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-6-issue-6/4000-386395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386285/", + "id": 386285, + "name": "Еще одна передряга. Часть 3; Еще одна передряга. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-9-3-4/4000-386285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362853/", + "id": 362853, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-18/4000-362853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362558/", + "id": 362558, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-73/4000-362558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362557/", + "id": 362557, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-72/4000-362557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355485/", + "id": 355485, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-129/4000-355485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347231/", + "id": 347231, + "name": "A Rampaging Hulk, Defeated?", + "site_detail_url": "https://comicvine.gamespot.com/avengers-28-a-rampaging-hulk-defeated/4000-347231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347211/", + "id": 347211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-52/4000-347211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-346240/", + "id": 346240, + "name": "Round 8", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-8-round-8/4000-346240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-346238/", + "id": 346238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-1/4000-346238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345394/", + "id": 345394, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-9/4000-345394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345383/", + "id": 345383, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-3/4000-345383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344114/", + "id": 344114, + "name": "Round 7", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-7-round-7/4000-344114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343196/", + "id": 343196, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/la-imposible-patrulla-x-4/4000-343196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619086/", + "id": 619086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-hulk-and-masacre-guerra-de-identidades-1/4000-619086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544534/", + "id": 544534, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-los-vengadores-sancion-x-1/4000-544534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541706/", + "id": 541706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-56/4000-541706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538804/", + "id": 538804, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-18/4000-538804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513933/", + "id": 513933, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thor-16/4000-513933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498638/", + "id": 498638, + "name": "Spiderman 6: Encuentros Extraños", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-12-spiderman-6-encuentros-e/4000-498638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463729/", + "id": 463729, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-operation-zero-tolerance-1-hc/4000-463729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358881/", + "id": 358881, + "name": "That's All Folks!; Art for Pete's Sake", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-3-that-s-all-folks-art-for-pet/4000-358881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357735/", + "id": 357735, + "name": "Did You Hear the One About the Scorpio?", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earth-s-mightiest-heroes-3-did-you-hear-t/4000-357735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355535/", + "id": 355535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-4/4000-355535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-351476/", + "id": 351476, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-next-chapter-3-volume-three/4000-351476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-351474/", + "id": 351474, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-regression-1-tpb/4000-351474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341180/", + "id": 341180, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-movie-2/4000-341180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-339739/", + "id": 339739, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-movie-1/4000-339739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715440/", + "id": 715440, + "name": "The Red Ghost's Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-242-the-red-ghos/4000-715440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420574/", + "id": 420574, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-71/4000-420574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386482/", + "id": 386482, + "name": "Мстители будущего. Часть 3; Одержимость. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-6-3-3/4000-386482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342871/", + "id": 342871, + "name": "No Turning Back, Part One: The Win Column", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-688-no-turning-back-part-on/4000-342871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380260/", + "id": 380260, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderband-x-23-2/4000-380260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343211/", + "id": 343211, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-35-magneto/4000-343211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411508/", + "id": 411508, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/das-marvel-universum-gegen-wolverine-1/4000-411508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362556/", + "id": 362556, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-70/4000-362556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355049/", + "id": 355049, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-8/4000-355049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352254/", + "id": 352254, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-warlock-1-volume-1/4000-352254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402577/", + "id": 402577, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-der-avenger-1/4000-402577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-340254/", + "id": 340254, + "name": "Ends of the Earth, Part 6: Everyone Dies", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-687-ends-of-the-earth-part-/4000-340254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402550/", + "id": 402550, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-100/4000-402550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386394/", + "id": 386394, + "name": "Issue #5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-5-issue-5/4000-386394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716103/", + "id": 716103, + "name": "Magneto Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-241-magneto-stri/4000-716103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-351473/", + "id": 351473, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket-1-tpb/4000-351473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416849/", + "id": 416849, + "name": "Ultimative Helden", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-19-ultimative-helden/4000-416849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386329/", + "id": 386329, + "name": "Смерть Человека-Паука. Часть 4; Смерть Человека-Паука. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-8--4-5/4000-386329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355925/", + "id": 355925, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-38/4000-355925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447342/", + "id": 447342, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-3/4000-447342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447341/", + "id": 447341, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-2/4000-447341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447340/", + "id": 447340, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1/4000-447340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437056/", + "id": 437056, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-272/4000-437056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386284/", + "id": 386284, + "name": "Еще одна передряга. Часть 1; Еще одна передряга. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-8-1-2/4000-386284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380863/", + "id": 380863, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-15-spider-man-1/4000-380863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362852/", + "id": 362852, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-17/4000-362852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-348324/", + "id": 348324, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-69/4000-348324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-348187/", + "id": 348187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-35/4000-348187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347042/", + "id": 347042, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-516/4000-347042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342839/", + "id": 342839, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-2/4000-342839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341838/", + "id": 341838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-51/4000-341838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341809/", + "id": 341809, + "name": "Ends of the Earth; Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-8-ends-of-the-earth-epilogue/4000-341809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341733/", + "id": 341733, + "name": "A Phoenix Rises In K'un Lun", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-27-a-phoenix-rises-in-kun-lun/4000-341733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337983/", + "id": 337983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-1/4000-337983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-576280/", + "id": 576280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/primera-temporada-spiderman-1/4000-576280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541705/", + "id": 541705, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-55/4000-541705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540189/", + "id": 540189, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-18/4000-540189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538803/", + "id": 538803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-17/4000-538803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513932/", + "id": 513932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thor-15/4000-513932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498636/", + "id": 498636, + "name": "Spiderman 5: Legado", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-10-spiderman-5-legado/4000-498636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355710/", + "id": 355710, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/red-hulk-haunted-1-tpb/4000-355710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355534/", + "id": 355534, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-3/4000-355534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344848/", + "id": 344848, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hulk-heart-of-the-atom-1-tpb/4000-344848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336601/", + "id": 336601, + "name": "Notes From the Underground!; Look Ma, No Webs!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-2-notes-from-the-underground-l/4000-336601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336589/", + "id": 336589, + "name": "Ends of the Earth, Part Five: From the Ashes of Defeat", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-686-ends-of-the-earth-part-/4000-336589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334214/", + "id": 334214, + "name": "Ends of the Earth, Part Four: Global Menace", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-685-ends-of-the-earth-part-/4000-334214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386481/", + "id": 386481, + "name": "Мстители будущего. Часть 2; Одержимость. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-5-2-2/4000-386481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386283/", + "id": 386283, + "name": "Никто не должен умирать. Часть 2. Решение; Светлая полоса; Тупик", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-7-2/4000-386283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363170/", + "id": 363170, + "name": "Eric Powell", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-28-eric-powell/4000-363170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355050/", + "id": 355050, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-7/4000-355050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347600/", + "id": 347600, + "name": "Ends of the Earth", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-ends-of-the-earth-1-ends-of-the-earth/4000-347600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347046/", + "id": 347046, + "name": "Book Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-347046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344743/", + "id": 344743, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-68/4000-344743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335914/", + "id": 335914, + "name": "Hell Night", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-13-hell-night/4000-335914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402549/", + "id": 402549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-99/4000-402549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395033/", + "id": 395033, + "name": "Volume Fourteen", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-14-volum/4000-395033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-346115/", + "id": 346115, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-5-volume-5/4000-346115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-346112/", + "id": 346112, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/essential-web-of-spider-man-2-volume-two/4000-346112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386393/", + "id": 386393, + "name": "Issue #4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-4-issue-4/4000-386393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386408/", + "id": 386408, + "name": "Новый Человек-Паук", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spetsialniy-vypusk-4--/4000-386408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386327/", + "id": 386327, + "name": "Смерть Человека-Паука. Часть 2; Смерть Человека-Паука. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-7--2-3/4000-386327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345543/", + "id": 345543, + "name": "Spider-Man: Return of the Burglar", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-return-of-the-burglar-1-spider-man-retu/4000-345543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345160/", + "id": 345160, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1307/4000-345160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344748/", + "id": 344748, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/punisher-by-rick-remender-omnibus-1-hc/4000-344748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342368/", + "id": 342368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-67/4000-342368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824166/", + "id": 824166, + "name": "Spider Island", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-spider-island/4000-824166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402495/", + "id": 402495, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-99-silver-surfer/4000-402495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362851/", + "id": 362851, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-16/4000-362851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347037/", + "id": 347037, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-the-terrorism-myth-1-hc-tpb/4000-347037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345542/", + "id": 345542, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-4-volume-four/4000-345542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337500/", + "id": 337500, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-29/4000-337500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337499/", + "id": 337499, + "name": "Got Hope?", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-11-got-hope/4000-337499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337485/", + "id": 337485, + "name": "Spider Who?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-39-spider-who/4000-337485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336585/", + "id": 336585, + "name": "Sacred Ground", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-27-sacred-ground/4000-336585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336045/", + "id": 336045, + "name": "Round 4", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-4-round-4/4000-336045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335956/", + "id": 335956, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-ends-of-the-earth-1/4000-335956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335954/", + "id": 335954, + "name": "Captain America vs. Gambit; The Amazing Spider-Man vs. Colossus", + "site_detail_url": "https://comicvine.gamespot.com/avx-vs-2-captain-america-vs-gambit-the-amazing-spi/4000-335954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335951/", + "id": 335951, + "name": "The Fantastic Four - Origin Story", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-605-1-the-fantastic-four-origin-sto/4000-335951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335915/", + "id": 335915, + "name": "Savage Six, Part 1: Public Enemies", + "site_detail_url": "https://comicvine.gamespot.com/venom-18-savage-six-part-1-public-enemies/4000-335915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335249/", + "id": 335249, + "name": "Wadjetmacallit?!", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-7-wadjetmacallit/4000-335249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335236/", + "id": 335236, + "name": "Avengers vs. X-Men ... vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-10-avengers-vs-x-men-vs-x-/4000-335236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334213/", + "id": 334213, + "name": "Lawyers in Love", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-12-lawyers-in-love/4000-334213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334169/", + "id": 334169, + "name": "Round 3", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-3-round-3/4000-334169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334167/", + "id": 334167, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-28/4000-334167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595429/", + "id": 595429, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-compendio-1/4000-595429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541704/", + "id": 541704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-54/4000-541704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540188/", + "id": 540188, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-17/4000-540188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538802/", + "id": 538802, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-16/4000-538802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514575/", + "id": 514575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-primera-linea-7/4000-514575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514564/", + "id": 514564, + "name": "Los Dignos", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-especial-6-los-dignos/4000-514564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514235/", + "id": 514235, + "name": "Libro Séptimo", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-7-libro-septimo/4000-514235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498610/", + "id": 498610, + "name": "Spiderman 4: Problemas Por Duplicado", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-8-spiderman-4-problemas-por/4000-498610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394394/", + "id": 394394, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-2-volume-2/4000-394394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342229/", + "id": 342229, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-by-brian-michael-bendis/4000-342229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342227/", + "id": 342227, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-graphic-novels-1-hc/4000-342227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342225/", + "id": 342225, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-11-volume-11/4000-342225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341954/", + "id": 341954, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-crime-and-punishment-1-hc/4000-341954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341610/", + "id": 341610, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-my-friends-can-beat-up-your-fr/4000-341610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341202/", + "id": 341202, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-spiderhunt-1-tpb/4000-341202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-333461/", + "id": 333461, + "name": "Cake!; ...Ultimate Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-1-cake-ultimate-peter-parker/4000-333461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329224/", + "id": 329224, + "name": "Part Five: The Dawn's Early Fright!", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa-5-part-five-the-dawns-early-fright/4000-329224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327550/", + "id": 327550, + "name": "Prologue", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-infinite-1-prologue/4000-327550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326871/", + "id": 326871, + "name": "Haunted, Pt. 1; The Objective", + "site_detail_url": "https://comicvine.gamespot.com/hulk-50-haunted-pt-1-the-objective/4000-326871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386480/", + "id": 386480, + "name": "Мстители будущего. Часть 1; Одержимость. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-4-1-1/4000-386480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716101/", + "id": 716101, + "name": "Stomped By Sandman!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-239-stomped-by-s/4000-716101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343691/", + "id": 343691, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1306/4000-343691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402956/", + "id": 402956, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-8/4000-402956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342788/", + "id": 342788, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1305/4000-342788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342367/", + "id": 342367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-66/4000-342367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-339665/", + "id": 339665, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-33/4000-339665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336947/", + "id": 336947, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-6/4000-336947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331959/", + "id": 331959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-137/4000-331959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331858/", + "id": 331858, + "name": "Ends of the Earth, Part Three: Sand Trap", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-684-ends-of-the-earth-part-/4000-331858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342230/", + "id": 342230, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-omnibus-1-volume-one/4000-342230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342228/", + "id": 342228, + "name": "Spider-Man: Perceptions", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-perceptions-1-spider-man-perceptions/4000-342228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342226/", + "id": 342226, + "name": "Marvel Universe Avengers: Spider-Man and the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-spider-man-and-the-avenge/4000-342226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342037/", + "id": 342037, + "name": "Devil and the Details", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-2-devil-and-the-details/4000-342037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341724/", + "id": 341724, + "name": "Carnage USA", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa-1-carnage-usa/4000-341724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341611/", + "id": 341611, + "name": "Battle Scars", + "site_detail_url": "https://comicvine.gamespot.com/battle-scars-1-battle-scars/4000-341611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341471/", + "id": 341471, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1304/4000-341471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386392/", + "id": 386392, + "name": "Issue #3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-3-issue-3/4000-386392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716102/", + "id": 716102, + "name": "Kraven the Hunter Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-240-kraven-the-h/4000-716102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716099/", + "id": 716099, + "name": "Spidey Meets the Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-238-spidey-meets/4000-716099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341698/", + "id": 341698, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-2-volume-two/4000-341698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-340774/", + "id": 340774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1303/4000-340774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-339666/", + "id": 339666, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-65/4000-339666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386326/", + "id": 386326, + "name": "Смерть Человека-Паука. Прелюдия; Смерть Человека-Паука. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-6--1/4000-386326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326838/", + "id": 326838, + "name": "Ends of the Earth, Part Two: Earth's Mightiest", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-683-ends-of-the-earth-part-/4000-326838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408693/", + "id": 408693, + "name": "Der Supremor-Same", + "site_detail_url": "https://comicvine.gamespot.com/ff-2-der-supremor-same/4000-408693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846443/", + "id": 846443, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-2/4000-846443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658039/", + "id": 658039, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monthly-heros-201206/4000-658039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437055/", + "id": 437055, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-271/4000-437055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437054/", + "id": 437054, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-270/4000-437054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386282/", + "id": 386282, + "name": "Никто не должен умирать. Часть 1. Пробуждение; Перерождение; Нью-Йорк. Прощальная ночь Норы", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-6-1-/4000-386282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384426/", + "id": 384426, + "name": "Convention Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-tape-sdcc-2012-1-convention-edition/4000-384426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362850/", + "id": 362850, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-15/4000-362850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345523/", + "id": 345523, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/ff-by-jonathan-hickman-3-volume-three/4000-345523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344546/", + "id": 344546, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-fearless-1-hc-tpb/4000-344546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343405/", + "id": 343405, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-126/4000-343405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341653/", + "id": 341653, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time-ultimate-collection-1-/4000-341653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341123/", + "id": 341123, + "name": "No Turning Back Part I/Sabretooth Reborn", + "site_detail_url": "https://comicvine.gamespot.com/the-summer-of-spider-man-sampler-1-no-turning-back/4000-341123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-333449/", + "id": 333449, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-11/4000-333449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-333394/", + "id": 333394, + "name": "The Roommate Experiment", + "site_detail_url": "https://comicvine.gamespot.com/ff-17-the-roommate-experiment/4000-333394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-333393/", + "id": 333393, + "name": "The Omega Effect, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-11-the-omega-effect-part-3/4000-333393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-332029/", + "id": 332029, + "name": "Day of the Phoenix. Dark Night of the Soul", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-9-day-of-the-phoenix-dark-/4000-332029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331952/", + "id": 331952, + "name": "Round 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-2-round-2/4000-331952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331948/", + "id": 331948, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-25/4000-331948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331857/", + "id": 331857, + "name": "The Omega Effect, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-10-the-omega-effect-part-2/4000-331857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329220/", + "id": 329220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-24/4000-329220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329216/", + "id": 329216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-10/4000-329216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329213/", + "id": 329213, + "name": "The Omega Effect, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-6-the-omega-effect-part-1/4000-329213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326865/", + "id": 326865, + "name": "Home Again", + "site_detail_url": "https://comicvine.gamespot.com/venom-15-home-again/4000-326865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326860/", + "id": 326860, + "name": "Round 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-1-round-1/4000-326860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610293/", + "id": 610293, + "name": "Peter Parker: Spiderman 1: Los días de nuestra vida", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-14-peter-parker-spider/4000-610293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541703/", + "id": 541703, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-53/4000-541703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540187/", + "id": 540187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-16/4000-540187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538801/", + "id": 538801, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-15/4000-538801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514234/", + "id": 514234, + "name": "Libro Sexto", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-6-libro-sexto/4000-514234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498608/", + "id": 498608, + "name": "Spiderman 3: Un Mundo Compartido", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-6-spiderman-3-un-mundo-comp/4000-498608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341615/", + "id": 341615, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1970s-3-volume-three/4000-341615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341554/", + "id": 341554, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-by-fraction-and-coipel-2-volume-tw/4000-341554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336524/", + "id": 336524, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-identity-crisis-1-tpb/4000-336524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335287/", + "id": 335287, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-pardoned-1-tpb/4000-335287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335286/", + "id": 335286, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-classic-1-volume-1/4000-335286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325030/", + "id": 325030, + "name": "If You Can't Beat 'Em!; The Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-24-if-you-cant-beat-e/4000-325030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322746/", + "id": 322746, + "name": "Ends of the Earth, Part One: My World On Fire", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-682-ends-of-the-earth-part-/4000-322746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321366/", + "id": 321366, + "name": "Oh Say Can You Scream!", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa-4-oh-say-can-you-scream/4000-321366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321336/", + "id": 321336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-24/4000-321336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341614/", + "id": 341614, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-brubaker-and-lark-ultimate-collection/4000-341614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-338303/", + "id": 338303, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1302/4000-338303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397679/", + "id": 397679, + "name": "Остров Пауков. Единственный и неповторимый; Остров Пауков. Человек-Паук-Нью-Йорк", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-16-ostrov-paukov-iedinst/4000-397679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386479/", + "id": 386479, + "name": "Новые Мстители: Финал", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-3-wikiissue/4000-386479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386281/", + "id": 386281, + "name": "Месть Паука-Убийцы. Часть 3. Жертва; Точка кипения", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-5--3/4000-386281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341557/", + "id": 341557, + "name": "Venom: Circle of Four", + "site_detail_url": "https://comicvine.gamespot.com/venom-circle-of-four-1-venom-circle-of-four/4000-341557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341553/", + "id": 341553, + "name": "Marvel Universe Spider-Man: Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-spider-man-amazing-fantasy-1-marve/4000-341553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341552/", + "id": 341552, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-no-more-heroes-1-hc-tpb/4000-341552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337093/", + "id": 337093, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1301/4000-337093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336911/", + "id": 336911, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-many-faces-of-henry-pym-1-tpb/4000-336911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335384/", + "id": 335384, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-64/4000-335384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-333798/", + "id": 333798, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-5/4000-333798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331958/", + "id": 331958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-136/4000-331958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716098/", + "id": 716098, + "name": "The Green Goblin Returns!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-237-the-green-go/4000-716098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341550/", + "id": 341550, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-by-bendis-and-maleev-2-volume-two/4000-341550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341462/", + "id": 341462, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-3-volume-3/4000-341462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336386/", + "id": 336386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1300/4000-336386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402548/", + "id": 402548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-98/4000-402548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402547/", + "id": 402547, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-97/4000-402547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402546/", + "id": 402546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-96/4000-402546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335638/", + "id": 335638, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-335638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386391/", + "id": 386391, + "name": "Issue #2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-2-issue-2/4000-386391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335386/", + "id": 335386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-35/4000-335386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420578/", + "id": 420578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-63/4000-420578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342277/", + "id": 342277, + "name": "Volume Twelve", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-12-volume-twelve/4000-342277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341547/", + "id": 341547, + "name": "Thing: The Serpent Crown Affair", + "site_detail_url": "https://comicvine.gamespot.com/thing-the-serpent-crown-affair-1-thing-the-serpent/4000-341547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341468/", + "id": 341468, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-3-volume-three/4000-341468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336505/", + "id": 336505, + "name": "Premiere HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-private-war-of-dr-doom-1-premiere-hc/4000-336505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335771/", + "id": 335771, + "name": "Vampirella 21", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1299-vampirella-21/4000-335771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331977/", + "id": 331977, + "name": "Spider-Man: Season One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-season-one-1-spider-man-season-one/4000-331977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386325/", + "id": 386325, + "name": "Школа супергероев. Часть 3; Школа супергероев. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-5-3-4/4000-386325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335388/", + "id": 335388, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-platinum-the-definitive-spider-man-1/4000-335388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319360/", + "id": 319360, + "name": "Horizon, We Have a Problem", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-681-horizon-we-have-a-probl/4000-319360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409220/", + "id": 409220, + "name": "Band Sechs", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-nackte-angst-6-band-sechs/4000-409220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335587/", + "id": 335587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2012-spider-man-season-one-1/4000-335587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334862/", + "id": 334862, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2012-avengers-age-of-ultron-po/4000-334862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331712/", + "id": 331712, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-34/4000-331712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341326/", + "id": 341326, + "name": "Avengers: X-Sanction", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-sanction-1-avengers-x-sanction/4000-341326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341303/", + "id": 341303, + "name": "Amazing Spider-Man: Secret Origins", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-secret-origins-1-amazing-spider/4000-341303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336525/", + "id": 336525, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-serpent-crown-1-hc/4000-336525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336506/", + "id": 336506, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-3-volume-three/4000-336506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334650/", + "id": 334650, + "name": "Smallville Season 11", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1298-smallville-season-11/4000-334650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402565/", + "id": 402565, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-36/4000-402565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343406/", + "id": 343406, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-125/4000-343406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343404/", + "id": 343404, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-125/4000-343404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343272/", + "id": 343272, + "name": "La Saga de l'Ange noir (2/4)", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-15-la-saga-de-lange-noir-24/4000-343272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343051/", + "id": 343051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-206/4000-343051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334147/", + "id": 334147, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-32/4000-334147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331874/", + "id": 331874, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-premiere-comic-1/4000-331874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324984/", + "id": 324984, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-23-untitled/4000-324984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324964/", + "id": 324964, + "name": "One Step Beyond", + "site_detail_url": "https://comicvine.gamespot.com/ff-16-one-step-beyond/4000-324964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324958/", + "id": 324958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-5/4000-324958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324947/", + "id": 324947, + "name": "Lost Weekend, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-23-lost-weekend-pt-3/4000-324947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322757/", + "id": 322757, + "name": "Last Ride", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-fearless-11-last-ride/4000-322757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322751/", + "id": 322751, + "name": "Sundown", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-sanction-4-sundown/4000-322751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322747/", + "id": 322747, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-9/4000-322747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321320/", + "id": 321320, + "name": "The Terrorism Myth, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-635-the-terrorism-myth-part-t/4000-321320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321304/", + "id": 321304, + "name": "Assembling", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-1-assembling/4000-321304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321300/", + "id": 321300, + "name": "The Great and Powerful Osborn!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-24-the-great-and-powerful-osborn/4000-321300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321298/", + "id": 321298, + "name": "Forever, Part Five", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-604-forever-part-five/4000-321298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319377/", + "id": 319377, + "name": "Awakenings", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-fearless-10-awakenings/4000-319377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319366/", + "id": 319366, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-9/4000-319366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319362/", + "id": 319362, + "name": "The Longest Winter, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-3-the-longest-winter-part-3/4000-319362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317958/", + "id": 317958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-14/4000-317958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541702/", + "id": 541702, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-52/4000-541702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540186/", + "id": 540186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-15/4000-540186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538800/", + "id": 538800, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-14/4000-538800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514233/", + "id": 514233, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-5/4000-514233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498606/", + "id": 498606, + "name": "The Ultimates 1: Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-4-the-ultimates-1-vengadore/4000-498606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498605/", + "id": 498605, + "name": "Spiderman 2: Curva de Aprendizaje", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-3-spiderman-2-curva-de-apre/4000-498605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402813/", + "id": 402813, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-1/4000-402813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-339939/", + "id": 339939, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-parallel-lives-1/4000-339939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336470/", + "id": 336470, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-captain-america-6-volume-6/4000-336470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336399/", + "id": 336399, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-hidden-years-1-volume-1/4000-336399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-332740/", + "id": 332740, + "name": "Book Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-332740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331993/", + "id": 331993, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-legion-of-the-unliving-1-tpb/4000-331993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329636/", + "id": 329636, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-hooky-1/4000-329636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317063/", + "id": 317063, + "name": "There Can Be Only One!; Control Freak!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-23-there-can-be-only-/4000-317063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315104/", + "id": 315104, + "name": "Die Free or Live!", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa-3-die-free-or-live/4000-315104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317747/", + "id": 317747, + "name": "Road Trip... In Space!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-680-road-trip-in-space/4000-317747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386478/", + "id": 386478, + "name": "Осада. Часть 3; Осада. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-2-3-4/4000-386478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716097/", + "id": 716097, + "name": "The Sinister Six Strikes", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-236-the-sinister/4000-716097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420579/", + "id": 420579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-62/4000-420579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336420/", + "id": 336420, + "name": "Amazing Spider-Man: Flying Blind", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-flying-blind-1-amazing-spider-m/4000-336420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334146/", + "id": 334146, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-31/4000-334146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-333952/", + "id": 333952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1297/4000-333952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327555/", + "id": 327555, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-4/4000-327555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336300/", + "id": 336300, + "name": "Ultimate Comics Avengers by Mark Millar Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-by-mark-millar-omnibus-1-/4000-336300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336187/", + "id": 336187, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-home-front-1-hc-tpb/4000-336187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336183/", + "id": 336183, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-omnibus-2-volume-two/4000-336183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-332969/", + "id": 332969, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1296/4000-332969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-332760/", + "id": 332760, + "name": "Untold Tales of Spider-Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-omnibus-1-untold-tales-/4000-332760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315750/", + "id": 315750, + "name": "Morbid Curiosity", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-6791-morbid-curiosity/4000-315750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402545/", + "id": 402545, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-95/4000-402545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334153/", + "id": 334153, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-61/4000-334153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331292/", + "id": 331292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1295/4000-331292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329769/", + "id": 329769, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-8-volume-8/4000-329769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329745/", + "id": 329745, + "name": "It's Coming", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-its-coming-1-its-coming/4000-329745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-323431/", + "id": 323431, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-33/4000-323431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386367/", + "id": 386367, + "name": "Issue #1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-priklyucheniya-1-issue-1/4000-386367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386324/", + "id": 386324, + "name": "Школа супергероев. Часть 1; Школа супергероев. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-4-1-2/4000-386324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716096/", + "id": 716096, + "name": "Can Spidey Stop Hydro-Man?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-235-can-spidey-s/4000-716096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387652/", + "id": 387652, + "name": "World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-1-world-war-hulk/4000-387652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328104/", + "id": 328104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1294/4000-328104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380295/", + "id": 380295, + "name": "Nye Avengers!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-spesialalbum-3-nye-avengers/4000-380295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379687/", + "id": 379687, + "name": "Krieg der Magier", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-1-krieg-der-magier/4000-379687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343392/", + "id": 343392, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-89/4000-343392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-332004/", + "id": 332004, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mythos-1-hctpb/4000-332004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327194/", + "id": 327194, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-assemble-1-tpb/4000-327194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317930/", + "id": 317930, + "name": "The New Avengers versus Authority", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-22-the-new-avengers-versus-authority/4000-317930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317926/", + "id": 317926, + "name": "The One Where Power Pack Shows Up", + "site_detail_url": "https://comicvine.gamespot.com/ff-15-the-one-where-power-pack-shows-up/4000-317926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316798/", + "id": 316798, + "name": "Meet The New Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-7-meet-the-new-spider-m/4000-316798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316707/", + "id": 316707, + "name": "Dead, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-51-dead-part-two/4000-316707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316684/", + "id": 316684, + "name": "Circle of Four, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/venom-13-3-circle-of-four-part-4/4000-316684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316680/", + "id": 316680, + "name": "Forever, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-603-forever-part-4/4000-316680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315829/", + "id": 315829, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-21/4000-315829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315803/", + "id": 315803, + "name": "Hey! Don’t Point That Thing At Me!", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-4-hey-dont-point-that-thing-at/4000-315803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315093/", + "id": 315093, + "name": "Lost Weekend, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-21-lost-weekend-pt-1/4000-315093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313898/", + "id": 313898, + "name": "I Killed Tomorrow, Part 2 of 2: A Date With Predestiny", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-679-i-killed-tomorrow-part-/4000-313898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313883/", + "id": 313883, + "name": "Noon", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-sanction-3-noon/4000-313883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612250/", + "id": 612250, + "name": "Marvel 1602", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-42-marvel-1602/4000-612250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612249/", + "id": 612249, + "name": "Spiderman: El Libro de Ezequiel", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-41-spiderman-el-libro-/4000-612249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551704/", + "id": 551704, + "name": "La llegada del nuevo Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-consecuencias-2-la-llegada-del-nue/4000-551704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551703/", + "id": 551703, + "name": "Spiderman Nunca Más", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-consecuencias-1-spiderman-nunca-ma/4000-551703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541701/", + "id": 541701, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-51/4000-541701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540185/", + "id": 540185, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-14/4000-540185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538799/", + "id": 538799, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-13/4000-538799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514232/", + "id": 514232, + "name": "Libro Cuarto", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-4-libro-cuarto/4000-514232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499940/", + "id": 499940, + "name": "Planeta Hulk Rojo", + "site_detail_url": "https://comicvine.gamespot.com/hulk-rojo-2-planeta-hulk-rojo/4000-499940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498603/", + "id": 498603, + "name": "Spiderman 1: Poder y Responsabilidad", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-1-spiderman-1-poder-y-respo/4000-498603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402055/", + "id": 402055, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-3/4000-402055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329026/", + "id": 329026, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-the-great-escape-1-tpb/4000-329026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329016/", + "id": 329016, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/shattered-heroes-1-hc/4000-329016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328737/", + "id": 328737, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-evil-deadpool-1-volume-10/4000-328737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324362/", + "id": 324362, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-goodbye-chinatown-1-hc-tpb/4000-324362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321759/", + "id": 321759, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-1-hc-tpb/4000-321759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312808/", + "id": 312808, + "name": "Fight Club; Dumb Luck", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-22-fight-club-dumb-lu/4000-312808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310914/", + "id": 310914, + "name": "Red, White and Die!", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa-2-red-white-and-die/4000-310914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309573/", + "id": 309573, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/avengers-annual-1-part-two/4000-309573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386477/", + "id": 386477, + "name": "Осада. Часть 1; Осада. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-1-1-2/4000-386477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386279/", + "id": 386279, + "name": "Высокие ставки. Часть 3; Высокие ставки. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-3-3-4/4000-386279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325758/", + "id": 325758, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1293/4000-325758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-323419/", + "id": 323419, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-60/4000-323419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319575/", + "id": 319575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-28/4000-319575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319574/", + "id": 319574, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-3/4000-319574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321790/", + "id": 321790, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-new-warriors-the-hero-killers-1/4000-321790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324322/", + "id": 324322, + "name": "Incredible Hulks: World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-world-war-hulks-1-incredible-hulk/4000-324322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324116/", + "id": 324116, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1292/4000-324116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-323989/", + "id": 323989, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spider-man-1-hc-tpb/4000-323989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-323686/", + "id": 323686, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall-1-tpb/4000-323686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343216/", + "id": 343216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderband-die-neue-x-force-2/4000-343216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311767/", + "id": 311767, + "name": "I Killed Tomorrow, Part 1: Schrödinger's Catastrophe", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-678-i-killed-tomorrow-part-/4000-311767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716095/", + "id": 716095, + "name": "The Amazing Venom?!?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-234-the-amazing-/4000-716095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402564/", + "id": 402564, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-35/4000-402564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322462/", + "id": 322462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1291/4000-322462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321786/", + "id": 321786, + "name": "Journey Into Mystery: Fear Itself Fallout", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-fear-itself-fallout-1-journey/4000-321786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321756/", + "id": 321756, + "name": "Avengers by Brian Michael Bendis: The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age-1-/4000-321756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319678/", + "id": 319678, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-32/4000-319678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319595/", + "id": 319595, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-59/4000-319595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402544/", + "id": 402544, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-94/4000-402544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310913/", + "id": 310913, + "name": "The Devil and the Details, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-677-the-devil-and-the-detai/4000-310913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416848/", + "id": 416848, + "name": "Die Klon-Saga 2 (von 2)", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-18-die-klon-saga-2-von-2/4000-416848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321576/", + "id": 321576, + "name": "Fear Itself: Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-invincible-iron-man-1-fear-itself-invi/4000-321576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321572/", + "id": 321572, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-avengers-academy-1-hc-tpb/4000-321572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-320265/", + "id": 320265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1290/4000-320265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386323/", + "id": 386323, + "name": "Город, где разбиваются сердца; Специальный юбилейный выпуск!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-3-wikiiss/4000-386323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846191/", + "id": 846191, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-1/4000-846191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731821/", + "id": 731821, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-18/4000-731821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437051/", + "id": 437051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-267/4000-437051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344575/", + "id": 344575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-imposibles-x-force-2/4000-344575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324013/", + "id": 324013, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-united-1-tpb/4000-324013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321569/", + "id": 321569, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ultimate-collecti/4000-321569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319346/", + "id": 319346, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-123/4000-319346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312793/", + "id": 312793, + "name": "Deadpool: The Musical", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-49-1-deadpool-the-musical/4000-312793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312722/", + "id": 312722, + "name": "Forever, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-602-forever-part-3/4000-312722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312033/", + "id": 312033, + "name": "Membership Madness", + "site_detail_url": "https://comicvine.gamespot.com/defenders-tournament-of-heroes-1-membership-madnes/4000-312033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311838/", + "id": 311838, + "name": "Meet The New Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-6-meet-the-new-spider-m/4000-311838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311835/", + "id": 311835, + "name": "Red Dead!", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-3-red-dead/4000-311835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311671/", + "id": 311671, + "name": "Devil and the Details Part 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-8-devil-and-the-details-part-2/4000-311671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311669/", + "id": 311669, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-9/4000-311669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311038/", + "id": 311038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-20/4000-311038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310812/", + "id": 310812, + "name": "Life After Death", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-1-life-after-death/4000-310812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551769/", + "id": 551769, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-13/4000-551769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544726/", + "id": 544726, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spidermaniron-man-el-regreso-de-matanza/4000-544726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541700/", + "id": 541700, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-50/4000-541700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540184/", + "id": 540184, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-13/4000-540184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538798/", + "id": 538798, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-12/4000-538798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514560/", + "id": 514560, + "name": "Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-especial-2-spiderman/4000-514560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-320865/", + "id": 320865, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-big-three-1-tpb/4000-320865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319594/", + "id": 319594, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-58/4000-319594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318576/", + "id": 318576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1289/4000-318576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317023/", + "id": 317023, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/quasar-classic-1-volume-one/4000-317023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316044/", + "id": 316044, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-by-brian-michael-bendis/4000-316044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316040/", + "id": 316040, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-dan-jurgens-3-volume-three/4000-316040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315553/", + "id": 315553, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-next-chapter-2-volume-two/4000-315553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-314187/", + "id": 314187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-2/4000-314187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-314094/", + "id": 314094, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-fall-of-the-hulks-1-hc/4000-314094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308675/", + "id": 308675, + "name": "Gods and Mutants!; Face Off", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-21-gods-and-mutants-f/4000-308675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308544/", + "id": 308544, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall-4/4000-308544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306628/", + "id": 306628, + "name": "This Land is My Land", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa-1-this-land-is-my-land/4000-306628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386278/", + "id": 386278, + "name": "Смертельная зависть; Последний урок; Жало, которое невозможно вынуть", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-2-wikiissue/4000-386278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716013/", + "id": 716013, + "name": "Swarm Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-233-swarm-strike/4000-716013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317176/", + "id": 317176, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1288/4000-317176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317032/", + "id": 317032, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-classic-2-volume-two/4000-317032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317024/", + "id": 317024, + "name": "Spider-Man Fights Substance Abuse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fights-substance-abuse-1-spider-man-fig/4000-317024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317022/", + "id": 317022, + "name": "Marvel Adventures Spider-Man: Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-tangled-web-1-marvel-/4000-317022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317020/", + "id": 317020, + "name": "Iron Man 2.0: Asymmetry", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-20-asymmetry-1-iron-man-20-asymmetry/4000-317020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319610/", + "id": 319610, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderband-age-of-x-2/4000-319610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435363/", + "id": 435363, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-87/4000-435363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319593/", + "id": 319593, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/The%20Astonishing%20Spider-Man-57/4000-319593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317178/", + "id": 317178, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1287/4000-317178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316042/", + "id": 316042, + "name": "Spider-Man: Spider-Island Companion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-island-companion-1-spider-man-sp/4000-316042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316041/", + "id": 316041, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-deadpool-fearsome-four-1-hc-tpb/4000-316041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316038/", + "id": 316038, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-omnibus-1-volume-one/4000-316038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386322/", + "id": 386322, + "name": "Порочная любовь. Часть 5; Порочная любовь. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-2-5-6/4000-386322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402543/", + "id": 402543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-93/4000-402543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305690/", + "id": 305690, + "name": "Great Heights, Part Two: Partners in Crime", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-675-great-heights-part-two-/4000-305690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408692/", + "id": 408692, + "name": "Fantastischer Neuanfang", + "site_detail_url": "https://comicvine.gamespot.com/ff-1-fantastischer-neuanfang/4000-408692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716094/", + "id": 716094, + "name": "The Power of Thor!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-232-the-power-of/4000-716094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444994/", + "id": 444994, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/john-romita-s-amazing-spider-man-artist-s-edition-/4000-444994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443695/", + "id": 443695, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-2011/4000-443695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380095/", + "id": 380095, + "name": "Mann Eller Myte?", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-spesialalbum-2-mann-eller-myte/4000-380095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343394/", + "id": 343394, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-hors-serie-1-x-factor/4000-343394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326414/", + "id": 326414, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-program-1/4000-326414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319662/", + "id": 319662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-26/4000-319662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319592/", + "id": 319592, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-56/4000-319592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317034/", + "id": 317034, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ff-1-hc-tpb/4000-317034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-314093/", + "id": 314093, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-heroes-for-hire-1-hc-tpb/4000-314093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309981/", + "id": 309981, + "name": "The Heroic Age Starts Here", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-1-the-heroic-age-starts-here/4000-309981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308929/", + "id": 308929, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-513/4000-308929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308696/", + "id": 308696, + "name": "The Mighty Tanarus: Part 2, The Walk", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-9-the-mighty-tanarus-part-2-the-wa/4000-308696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307697/", + "id": 307697, + "name": "Forever, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-601-forever-part-2/4000-307697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306728/", + "id": 306728, + "name": "Chapter Four: All Together Now", + "site_detail_url": "https://comicvine.gamespot.com/shield-4-chapter-four-all-together-now/4000-306728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306727/", + "id": 306727, + "name": "The Palmer Addley Infection, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-20-11-the-palmer-addley-infection-part-3/4000-306727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306639/", + "id": 306639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-19/4000-306639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306478/", + "id": 306478, + "name": "Midnight", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-sanction-1-midnight/4000-306478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305789/", + "id": 305789, + "name": "Road Trip, Part One", + "site_detail_url": "https://comicvine.gamespot.com/venom-10-road-trip-part-one/4000-305789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305691/", + "id": 305691, + "name": "More!", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-2-more/4000-305691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305671/", + "id": 305671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-8/4000-305671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-631270/", + "id": 631270, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-spiderman-un-dia-mas-1/4000-631270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612244/", + "id": 612244, + "name": "Spiderman: Feliz cumpleaños", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-36-spiderman-feliz-cum/4000-612244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551768/", + "id": 551768, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-12/4000-551768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541699/", + "id": 541699, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-49/4000-541699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540183/", + "id": 540183, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-12/4000-540183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538797/", + "id": 538797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-11/4000-538797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514221/", + "id": 514221, + "name": "Libro Segundo", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-2-libro-segundo/4000-514221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446173/", + "id": 446173, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-history-of-comics-1/4000-446173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312160/", + "id": 312160, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-point-one-ii-1-tpb/4000-312160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312132/", + "id": 312132, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1970s-1-volume-one/4000-312132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312120/", + "id": 312120, + "name": "Volume Six", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-6-volume-six/4000-312120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311298/", + "id": 311298, + "name": "TPB/HC", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-spider-island-1-tpb-hc/4000-311298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311042/", + "id": 311042, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-311042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309610/", + "id": 309610, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-masques-1-hc/4000-309610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304589/", + "id": 304589, + "name": "The Sandstorm; Jungle Evil!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-20-the-sandstorm-jung/4000-304589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303548/", + "id": 303548, + "name": "Childhood's End", + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall-3-childhoods-end/4000-303548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301055/", + "id": 301055, + "name": "Chapter 43: The Agenda Objective Domination Symposium of Blood", + "site_detail_url": "https://comicvine.gamespot.com/shame-itself-1-chapter-43-the-agenda-objective-dom/4000-301055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386277/", + "id": 386277, + "name": "Большие разборки; Американский герой", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-1-wikiissue/4000-386277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313542/", + "id": 313542, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/ff-by-jonathan-hickman-2-volume-two/4000-313542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313515/", + "id": 313515, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-solo-avengers-classic-1-volume-one/4000-313515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306931/", + "id": 306931, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-132/4000-306931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319591/", + "id": 319591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-55/4000-319591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312424/", + "id": 312424, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/x-23-chaos-theory-1-volume-2/4000-312424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386321/", + "id": 386321, + "name": "Порочная любовь. Часть 3; Порочная любовь. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-1-3-4/4000-386321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402563/", + "id": 402563, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-34/4000-402563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402542/", + "id": 402542, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-92/4000-402542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716093/", + "id": 716093, + "name": "Spidey Tackles the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-231-spidey-tackl/4000-716093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310926/", + "id": 310926, + "name": "Fear Itself: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-avengers-1-fear-itself-avengers/4000-310926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363171/", + "id": 363171, + "name": "Ron Garney", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-27-ron-garney/4000-363171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319590/", + "id": 319590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-54/4000-319590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315683/", + "id": 315683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1281/4000-315683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309600/", + "id": 309600, + "name": "Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-1-fear-itself/4000-309600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731820/", + "id": 731820, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-17/4000-731820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447361/", + "id": 447361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-about-super-heroes-1/4000-447361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435376/", + "id": 435376, + "name": "Surpreendentes X-Men: Incontralàvel", + "site_detail_url": "https://comicvine.gamespot.com/supreendentes-x-men-3-surpreendentes-x-men-incontr/4000-435376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-412664/", + "id": 412664, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderband-daken-dark-wolverine-4/4000-412664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402492/", + "id": 402492, + "name": "Carnage: Familienfehde", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-96-carnage-familienfehde/4000-402492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379558/", + "id": 379558, + "name": "History of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-1-history-of-the-ma/4000-379558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366845/", + "id": 366845, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-3-volume-three/4000-366845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362845/", + "id": 362845, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-10/4000-362845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322059/", + "id": 322059, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-2/4000-322059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319677/", + "id": 319677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-30/4000-319677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319638/", + "id": 319638, + "name": "Age of X Part. 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-75-age-of-x-part-2/4000-319638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318951/", + "id": 318951, + "name": "Nation Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-11-nation-deathlok/4000-318951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312121/", + "id": 312121, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-journey-into-mystery-1-tpb/4000-312121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310920/", + "id": 310920, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-two-in-one-4-volume-4/4000-310920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308624/", + "id": 308624, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-8/4000-308624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304470/", + "id": 304470, + "name": "Goodbye Chinatown, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-19-goodbye-chinatown-part-three/4000-304470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303673/", + "id": 303673, + "name": "Avengers Origins: Scarlet Witch & Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-scarlet-witch-quicksilver-1-aveng/4000-303673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303552/", + "id": 303552, + "name": "The Mighty Tanarus: Part 1, Lost", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-8-the-mighty-tanarus-part-1-lost/4000-303552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303357/", + "id": 303357, + "name": "Forever, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-600-forever-part-1/4000-303357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302678/", + "id": 302678, + "name": "Avengers Assemble!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-19-avengers-assemble/4000-302678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302650/", + "id": 302650, + "name": "Great Heights, Part One: Trust Issues", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-674-great-heights-part-one-/4000-302650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301666/", + "id": 301666, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/battle-scars-1/4000-301666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301654/", + "id": 301654, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-7-2-thor/4000-301654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301508/", + "id": 301508, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-1/4000-301508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301079/", + "id": 301079, + "name": "Chaos Theory, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/x-23-16-chaos-theory-part-4/4000-301079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301042/", + "id": 301042, + "name": "Spider-Island, Epilogue: The Naked City", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-673-spider-island-epilogue-/4000-301042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300975/", + "id": 300975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-7/4000-300975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551767/", + "id": 551767, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-11/4000-551767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544718/", + "id": 544718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-tierra-de-sombras-luchadores-callejeros/4000-544718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541698/", + "id": 541698, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-48/4000-541698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540182/", + "id": 540182, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-11/4000-540182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538796/", + "id": 538796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-10/4000-538796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514220/", + "id": 514220, + "name": "Libro Primero", + "site_detail_url": "https://comicvine.gamespot.com/miedo-encarnado-1-libro-primero/4000-514220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407875/", + "id": 407875, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-the-ultimate-guide-to-earth-s-mightie/4000-407875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308851/", + "id": 308851, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hulk-by-john-byrne-and-ron-garney-1-tpb/4000-308851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307909/", + "id": 307909, + "name": "Siege Oversized Hardcover Edition", + "site_detail_url": "https://comicvine.gamespot.com/siege-oversized-hardcover-edition-1-siege-oversize/4000-307909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307711/", + "id": 307711, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-omnibus-1-hc/4000-307711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307684/", + "id": 307684, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-through-the-decades-1-tpb/4000-307684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307678/", + "id": 307678, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-sins-of-the-past-1-hc/4000-307678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299921/", + "id": 299921, + "name": "Going Cosmic; The Hundred-Story Hunt", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-19-going-cosmic-the-h/4000-299921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299804/", + "id": 299804, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall-2/4000-299804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341205/", + "id": 341205, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-1-tpb/4000-341205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341204/", + "id": 341204, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-1-tpb/4000-341204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299744/", + "id": 299744, + "name": "Spider-Island, Part Six: Boss Battle", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-672-spider-island-part-six-/4000-299744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716092/", + "id": 716092, + "name": "The Menace of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-230-the-menace-o/4000-716092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308170/", + "id": 308170, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-1-tpb/4000-308170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435361/", + "id": 435361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-85/4000-435361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298471/", + "id": 298471, + "name": "Who are the Avengers?", + "site_detail_url": "https://comicvine.gamespot.com/avengers-18-who-are-the-avengers/4000-298471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307713/", + "id": 307713, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-by-bendis-and-maleev-1-volume-one/4000-307713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402554/", + "id": 402554, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-104/4000-402554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402541/", + "id": 402541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-91/4000-402541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294956/", + "id": 294956, + "name": "Spider-Island, Part Five: A New Hope", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-671-spider-island-part-five/4000-294956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319589/", + "id": 319589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-53/4000-319589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319588/", + "id": 319588, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-52/4000-319588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409215/", + "id": 409215, + "name": "Band Eins", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-nackte-angst-1-band-eins/4000-409215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401112/", + "id": 401112, + "name": "Preparations for War", + "site_detail_url": "https://comicvine.gamespot.com/hasbro-thanos-warlock-1-preparations-for-war/4000-401112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383346/", + "id": 383346, + "name": "Супергерой. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-214-2/4000-383346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383345/", + "id": 383345, + "name": "Супергерой. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-213-1/4000-383345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382510/", + "id": 382510, + "name": "С Днем рождения, Человек-Паук! Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-229--4/4000-382510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362844/", + "id": 362844, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-9/4000-362844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362499/", + "id": 362499, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324808/", + "id": 324808, + "name": "Saving the Day", + "site_detail_url": "https://comicvine.gamespot.com/avengers-saving-the-day-1-saving-the-day/4000-324808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319659/", + "id": 319659, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-24/4000-319659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318950/", + "id": 318950, + "name": "Euphorie", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-10-euphorie/4000-318950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315474/", + "id": 315474, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-9/4000-315474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307553/", + "id": 307553, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-200/4000-307553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299749/", + "id": 299749, + "name": "Intelligence", + "site_detail_url": "https://comicvine.gamespot.com/ff-11-intelligence/4000-299749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299745/", + "id": 299745, + "name": "Endings", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-20-endings/4000-299745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298263/", + "id": 298263, + "name": "The Walls Come Tumbling Down...", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-629-the-walls-come-tumbling-d/4000-298263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297691/", + "id": 297691, + "name": "Into the Infinite!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps-5-into-the-infinite/4000-297691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297673/", + "id": 297673, + "name": "Mercy", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-509-mercy/4000-297673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297580/", + "id": 297580, + "name": "Speedball in \"Hope Like Fire,\" Part 7; \"The Chosen,\" Part 3; \"Another Moment With ... J. Jonah Jameson\"; The Citizens of Broxton, OK in \"Home Front Lines\"", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-home-front-7-speedball-in-hope-lik/4000-297580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297217/", + "id": 297217, + "name": "Thor's Day", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-7-thors-day/4000-297217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295041/", + "id": 295041, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-17/4000-295041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294897/", + "id": 294897, + "name": "What I Need", + "site_detail_url": "https://comicvine.gamespot.com/ff-10-what-i-need/4000-294897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294198/", + "id": 294198, + "name": "Chaos Theory, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/x-23-15-chaos-theory-part-3/4000-294198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294192/", + "id": 294192, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-6/4000-294192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716091/", + "id": 716091, + "name": "Battle in the Skies!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-229-battle-in-th/4000-716091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595428/", + "id": 595428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-el-corazon-de-la-arana-1/4000-595428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551766/", + "id": 551766, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-10/4000-551766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541697/", + "id": 541697, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-47/4000-541697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540181/", + "id": 540181, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-10/4000-540181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538795/", + "id": 538795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-9/4000-538795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383512/", + "id": 383512, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/the-absolute-ultimate-gutters-omnibus-1-volume-one/4000-383512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304733/", + "id": 304733, + "name": "Cold Hearted Christmas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-magazine-2011-2-cold-hearted-christ/4000-304733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304663/", + "id": 304663, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-marvel-team-up-by-claremont-byrne-1-tpb/4000-304663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303672/", + "id": 303672, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-fal/4000-303672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303671/", + "id": 303671, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/thor-heaven-and-earth-1-hc/4000-303671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303502/", + "id": 303502, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps-1-tpb/4000-303502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301801/", + "id": 301801, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-heart-of-the-monster-1-tpb/4000-301801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299817/", + "id": 299817, + "name": "Goblin Ball; Rent Strike", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-18-goblin-ball-rent-s/4000-299817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293582/", + "id": 293582, + "name": "Earthfall", + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall-1-earthfall/4000-293582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293399/", + "id": 293399, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-cloak-dagger-2-part-2/4000-293399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290910/", + "id": 290910, + "name": "Visionaries, The Punisher Strikes Twice, Shadows of Evils Past, Now Strikes the Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-emergence-of-evil-jackal-hobgoblin-1/4000-290910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139983/", + "id": 139983, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-origin-of-the-hobgoblin/4000-139983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293619/", + "id": 293619, + "name": "Spider-Island Part Four: Spiders, Spiders Everywhere", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-670-spider-island-part-four/4000-293619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402957/", + "id": 402957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-7/4000-402957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293355/", + "id": 293355, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-7/4000-293355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402562/", + "id": 402562, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-33/4000-402562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292609/", + "id": 292609, + "name": "Spider-Island, Part Three: Arachnotopia", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-669-spider-island-part-thre/4000-292609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402553/", + "id": 402553, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-103/4000-402553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402540/", + "id": 402540, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-90/4000-402540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319587/", + "id": 319587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-51/4000-319587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716090/", + "id": 716090, + "name": "The Lizard Lashes Out!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-228-the-lizard-l/4000-716090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302181/", + "id": 302181, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus-1-volume-one/4000-302181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307842/", + "id": 307842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1272/4000-307842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819013/", + "id": 819013, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-142/4000-819013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462370/", + "id": 462370, + "name": "The Amazing Spider-Man: Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-21-the-amaz/4000-462370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383344/", + "id": 383344, + "name": "Человек-Паук и Люди Икс: Выходной Питера Паркера", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-212--/4000-383344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383343/", + "id": 383343, + "name": "Человек-Паук и Чудище", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-211--/4000-383343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382512/", + "id": 382512, + "name": "С Днем рождения, Человек-Паук! Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-227--2/4000-382512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382511/", + "id": 382511, + "name": "С Днем рождения, Человек-Паук! Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-228--3/4000-382511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362498/", + "id": 362498, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319675/", + "id": 319675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-28/4000-319675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318949/", + "id": 318949, + "name": "Secrets", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-9-secrets/4000-318949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315473/", + "id": 315473, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-8/4000-315473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312547/", + "id": 312547, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-special-24/4000-312547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302779/", + "id": 302779, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-wolverine-1-hc-tpb/4000-302779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302722/", + "id": 302722, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-199/4000-302722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293633/", + "id": 293633, + "name": "Osborn Rises", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-16-1-osborn-rises/4000-293633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293581/", + "id": 293581, + "name": "Burn It Down", + "site_detail_url": "https://comicvine.gamespot.com/ff-9-burn-it-down/4000-293581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293452/", + "id": 293452, + "name": "End of A Circle", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-163-1-end-of-a-circle/4000-293452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293383/", + "id": 293383, + "name": "Assault on Valhalla!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps-4-assault-on-valhalla/4000-293383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293354/", + "id": 293354, + "name": "Fear Itself, part 5 Love is a Battlefield", + "site_detail_url": "https://comicvine.gamespot.com/avengers-17-fear-itself-part-5-love-is-a-battlefie/4000-293354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292618/", + "id": 292618, + "name": "Fear Itself, part 3 Enter: Daredevil !", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-16-fear-itself-part-3-enter-daredevil/4000-292618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292590/", + "id": 292590, + "name": "Blood-Tied & Doomed", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-6-blood-tied-doomed/4000-292590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291697/", + "id": 291697, + "name": "The Revengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual-1-the-revengers/4000-291697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291179/", + "id": 291179, + "name": "Chaos Theory, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/x-23-14-chaos-theory-part-2/4000-291179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291146/", + "id": 291146, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-5/4000-291146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612239/", + "id": 612239, + "name": "Spiderman: Vida y muerte de las arañas", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-31-spiderman-vida-y-mu/4000-612239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544833/", + "id": 544833, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spidermanlos-4-fantasticos-valores-fami/4000-544833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544832/", + "id": 544832, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-punisher-vs-universo-marvel-1/4000-544832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540180/", + "id": 540180, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-9/4000-540180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538794/", + "id": 538794, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-8/4000-538794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300963/", + "id": 300963, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-300963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300936/", + "id": 300936, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-deadly-foes-of-spider-man-1-tpb/4000-300936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300930/", + "id": 300930, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-big-break-1-hc-tpb/4000-300930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297582/", + "id": 297582, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-1-tpb/4000-297582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297558/", + "id": 297558, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-ultimate-colle/4000-297558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295213/", + "id": 295213, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1960s-1-tpb/4000-295213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292136/", + "id": 292136, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-fellowship-of-fear-1/4000-292136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290665/", + "id": 290665, + "name": "Spider-Island Part Two: Peter Parker The Unspectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-668-spider-island-part-two-/4000-290665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290625/", + "id": 290625, + "name": "Part One: Deadlier Than The Male", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-deadly-hands-of-kung-fu-1-part-one-d/4000-290625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288832/", + "id": 288832, + "name": "Ask Me Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/thor-heaven-earth-3-ask-me-tomorrow/4000-288832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288773/", + "id": 288773, + "name": "Six-To-One-Shot!; Bird of The Feather", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-17-six-to-one-shot-bi/4000-288773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287075/", + "id": 287075, + "name": "Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-wolverine-3-part-3/4000-287075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286181/", + "id": 286181, + "name": "Out of the Picture; What I Did For Love, A Spider-Island Prelude", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-deadly-foes-1-out-of-the-picture-wha/4000-286181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283867/", + "id": 283867, + "name": "Blowing In The Wind", + "site_detail_url": "https://comicvine.gamespot.com/thor-heaven-earth-2-blowing-in-the-wind/4000-283867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283008/", + "id": 283008, + "name": "Chapter Four of Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fallout-4-chapter-four-of-six/4000-283008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307841/", + "id": 307841, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1271/4000-307841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290942/", + "id": 290942, + "name": "Youth in Revolt Part Four", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-youth-in-revolt-4-youth-in-revolt-part/4000-290942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716089/", + "id": 716089, + "name": "Spectacular Spidey Action!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-227-spectacular-/4000-716089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307840/", + "id": 307840, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1270/4000-307840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299502/", + "id": 299502, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-avenging-spider-man-1/4000-299502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297574/", + "id": 297574, + "name": "Ultimate Comics Spider-Man: Death of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-1-u/4000-297574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319586/", + "id": 319586, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-49/4000-319586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297782/", + "id": 297782, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-37/4000-297782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309871/", + "id": 309871, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-24/4000-309871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307839/", + "id": 307839, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1269/4000-307839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295699/", + "id": 295699, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-jason-aaron-omnibus-1-volume-one/4000-295699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295690/", + "id": 295690, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-89/4000-295690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285544/", + "id": 285544, + "name": "Spider-Island Part One: The Amazing Spider-Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-667-spider-island-part-one-/4000-285544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416847/", + "id": 416847, + "name": "Die Klon-Saga 1 (von 2)", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-17-die-klon-saga-1-von-2/4000-416847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294315/", + "id": 294315, + "name": "Amazing Spider-Man: The Return of Anti-Venom", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-return-of-anti-venom-1-amaz/4000-294315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294313/", + "id": 294313, + "name": "Planet Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/red-hulk-planet-red-hulk-1-planet-red-hulk/4000-294313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818916/", + "id": 818916, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-141/4000-818916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383342/", + "id": 383342, + "name": "Человек-Паук и Фантастическая Четверка", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-210--/4000-383342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383341/", + "id": 383341, + "name": "Запретная любовь. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-209-2/4000-383341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382514/", + "id": 382514, + "name": "Герои не плачут", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-225-wikiissue/4000-382514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382513/", + "id": 382513, + "name": "С Днем рождения, Человек-Паук! Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-226--1/4000-382513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379917/", + "id": 379917, + "name": "Flukten", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-spesialalbum-1-flukten/4000-379917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362842/", + "id": 362842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-7/4000-362842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362497/", + "id": 362497, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318948/", + "id": 318948, + "name": "Servir et Proteger", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-8-servir-et-proteger/4000-318948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315472/", + "id": 315472, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-7/4000-315472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300756/", + "id": 300756, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/season-one-guide-1/4000-300756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293853/", + "id": 293853, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-198/4000-293853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291101/", + "id": 291101, + "name": "Infested", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-infested-1-infested/4000-291101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288488/", + "id": 288488, + "name": "Betrayal In The Bermuda Triangle, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-16-betrayal-in-the-bermuda-triangle-part-1/4000-288488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288455/", + "id": 288455, + "name": "Ascension", + "site_detail_url": "https://comicvine.gamespot.com/ff-8-ascension/4000-288455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287763/", + "id": 287763, + "name": "Overcome", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-fearsome-four-3-overcome/4000-287763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286934/", + "id": 286934, + "name": "Fear Itself, part 4 Master man Mayhem !", + "site_detail_url": "https://comicvine.gamespot.com/avengers-16-fear-itself-part-4-master-man-mayhem/4000-286934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286911/", + "id": 286911, + "name": "Fog of War", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-507-fog-of-war/4000-286911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285550/", + "id": 285550, + "name": "Fear Itself, part 2", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-15-fear-itself-part-2/4000-285550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285335/", + "id": 285335, + "name": "Brawl", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-5-brawl/4000-285335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283916/", + "id": 283916, + "name": "Chaos Theory, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/x-23-13-chaos-theory-part-1/4000-283916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283184/", + "id": 283184, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-4/4000-283184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551765/", + "id": 551765, + "name": "La muerte de Spiderman: Preludio", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-9-la-muerte-de-spiderman/4000-551765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551757/", + "id": 551757, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-muerte-2/4000-551757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540179/", + "id": 540179, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-8/4000-540179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538793/", + "id": 538793, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-7/4000-538793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-524825/", + "id": 524825, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-joe-kubert-1-hc/4000-524825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293610/", + "id": 293610, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-vengeance-of-venom-1-tpb/4000-293610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290092/", + "id": 290092, + "name": "Magically Suspicious", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-16-magically-suspicio/4000-290092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281154/", + "id": 281154, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-wolverine-2-part-2/4000-281154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280882/", + "id": 280882, + "name": "Stars, Stripes And Spiders!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-16-stars-stripes-an/4000-280882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280828/", + "id": 280828, + "name": "Chapter Two of Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fallout-2-chapter-two-of-six/4000-280828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279785/", + "id": 279785, + "name": "Art Class", + "site_detail_url": "https://comicvine.gamespot.com/hulk-sized-mini-hulks-1-art-class/4000-279785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319585/", + "id": 319585, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-48/4000-319585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715470/", + "id": 715470, + "name": "The Osborn Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-226-the-osborn-u/4000-715470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497272/", + "id": 497272, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-47/4000-497272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293860/", + "id": 293860, + "name": "Volume Six", + "site_detail_url": "https://comicvine.gamespot.com/essential-defenders-6-volume-six/4000-293860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293648/", + "id": 293648, + "name": "Captain Britain: The Siege of Camelot", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-the-siege-of-camelot-1-captain-bri/4000-293648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281822/", + "id": 281822, + "name": "Spider-Island Prologue: The One And Only", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-666-spider-island-prologue-/4000-281822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293645/", + "id": 293645, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-rick-remender-1-volume-one/4000-293645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297781/", + "id": 297781, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-36/4000-297781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319584/", + "id": 319584, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-46/4000-319584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293588/", + "id": 293588, + "name": "Marvel Adventures Avengers: Thor/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-thorcaptain-america-1-m/4000-293588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293541/", + "id": 293541, + "name": "Evolutionary War Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/evolutionary-war-omnibus-1-evolutionary-war-omnibu/4000-293541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287537/", + "id": 287537, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-23/4000-287537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402561/", + "id": 402561, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-32/4000-402561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278710/", + "id": 278710, + "name": "Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-665-crossroads/4000-278710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295689/", + "id": 295689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-88/4000-295689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292544/", + "id": 292544, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-7-volume-7/4000-292544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715469/", + "id": 715469, + "name": "The Kingpin Strikes", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-225-the-kingpin-/4000-715469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293493/", + "id": 293493, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-worlds-greatest-comics-magazine-1-h/4000-293493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818801/", + "id": 818801, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-140/4000-818801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446830/", + "id": 446830, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vingadores-anual-3/4000-446830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437044/", + "id": 437044, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-261/4000-437044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437043/", + "id": 437043, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-260/4000-437043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383339/", + "id": 383339, + "name": "На перепутье. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-207-2/4000-383339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382516/", + "id": 382516, + "name": "Пустой человек", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-223-wikiissue/4000-382516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382515/", + "id": 382515, + "name": "Ловушка для героя. Часть 1. Проблемы Гарри", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-224-1/4000-382515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362496/", + "id": 362496, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-346971/", + "id": 346971, + "name": "Surpreendentes Homem-Aranha & Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-3-surpreendentes-homem-aranh/4000-346971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-338333/", + "id": 338333, + "name": "Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/orbit-stan-lee-1-stan-lee/4000-338333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307131/", + "id": 307131, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-117/4000-307131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293867/", + "id": 293867, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-death-of-spider/4000-293867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290680/", + "id": 290680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-197/4000-290680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281845/", + "id": 281845, + "name": "Father's Day", + "site_detail_url": "https://comicvine.gamespot.com/venom-5-fathers-day/4000-281845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281836/", + "id": 281836, + "name": "The Secret Origins of the Hammer-Wielders Revealed", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-worthy-1-the-secret-origins-of-the/4000-281836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280826/", + "id": 280826, + "name": "Enemies of the State", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps-2-enemies-of-the-state/4000-280826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280616/", + "id": 280616, + "name": "Stranger Bedfellows", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-fearsome-four-2-stranger-bedfellows/4000-280616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280332/", + "id": 280332, + "name": "Fear Itself, part 3 Rumble in the Jungle !", + "site_detail_url": "https://comicvine.gamespot.com/avengers-15-fear-itself-part-3-rumble-in-the-jungl/4000-280332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278718/", + "id": 278718, + "name": "Day Three", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spider-man-3-day-three/4000-278718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278714/", + "id": 278714, + "name": "Fear Itself, part 1", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-14-fear-itself-part-1/4000-278714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277536/", + "id": 277536, + "name": "Worlds on Fire", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-4-worlds-on-fire/4000-277536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275726/", + "id": 275726, + "name": "Death of Spider-Man: Part 5 of 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-160-death-of-spider-man-part-5/4000-275726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630994/", + "id": 630994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-spiderman-de-vuelta-al-negro-1/4000-630994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612231/", + "id": 612231, + "name": "Spiderman: Hasta que las estrellas se congelen", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-26-spiderman-hasta-que/4000-612231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551756/", + "id": 551756, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-muerte-1/4000-551756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540178/", + "id": 540178, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-7/4000-540178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538792/", + "id": 538792, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-6/4000-538792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373978/", + "id": 373978, + "name": "Nannies and Nazis", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-nannies-and-nazis-1-nannies-and-nazis/4000-373978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371271/", + "id": 371271, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/invincible-compendium-1-volume-1/4000-371271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319583/", + "id": 319583, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-45/4000-319583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293491/", + "id": 293491, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-family-values-1-tpb/4000-293491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293488/", + "id": 293488, + "name": "Invincible Iron Man: Unfixable", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-unfixable-1-invincible-iron-ma/4000-293488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293486/", + "id": 293486, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/green-goblin-a-lighter-shade-of-green-1-tpb/4000-293486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293337/", + "id": 293337, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/essential-web-of-spider-man-1-volume-one/4000-293337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293335/", + "id": 293335, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-next-chapter-1-volume-one/4000-293335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292766/", + "id": 292766, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-2-volume-2/4000-292766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292763/", + "id": 292763, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-arcade-death-game-1-tpb/4000-292763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291033/", + "id": 291033, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-fantastic-spider-man-1-hc-t/4000-291033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277974/", + "id": 277974, + "name": "Learning To Fly", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-8-learning-to-fly/4000-277974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277680/", + "id": 277680, + "name": "Council of Doom!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-15-council-of-doom/4000-277680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276683/", + "id": 276683, + "name": "Identity Wars, Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-annual-1-identity-wars-part-3-of-/4000-276683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276682/", + "id": 276682, + "name": "Part 1: A Fall of Angels", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-wolverine-1-part-1-a-fall-of-an/4000-276682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275725/", + "id": 275725, + "name": "Family Feud, Pt. 5", + "site_detail_url": "https://comicvine.gamespot.com/carnage-5-family-feud-pt-5/4000-275725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273114/", + "id": 273114, + "name": "Back In Time", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-15-back-in-time/4000-273114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272360/", + "id": 272360, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-to-serve-and-protect-1-tpb/4000-272360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276636/", + "id": 276636, + "name": "The Return of Anti-Venom, Part 2: Revelation Day; Infested, Stage 5: Wall-to-Wall", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-664-the-return-of-anti-veno/4000-276636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293334/", + "id": 293334, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/ff-by-jonathan-hickman-1-volume-one/4000-293334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289470/", + "id": 289470, + "name": "Silver Surfer: Devolution", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-devolution-1-silver-surfer-devolutio/4000-289470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289469/", + "id": 289469, + "name": "Carnage: Family Feud HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/carnage-family-feud-1-carnage-family-feud-hctpb/4000-289469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272434/", + "id": 272434, + "name": "Planet Red Hulk, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/hulk-34-planet-red-hulk-pt-1/4000-272434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715461/", + "id": 715461, + "name": "The Osborn Identity", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-224-the-osborn-i/4000-715461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319582/", + "id": 319582, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-319582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297779/", + "id": 297779, + "name": "A New Epic SIEGE Begins Here", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-34-a-new-epic-siege-begins-he/4000-297779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292765/", + "id": 292765, + "name": "Marvel Adventures Spider-Man: Friendly Neighborhood", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-friendly-neighborhood/4000-292765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285704/", + "id": 285704, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-22/4000-285704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417630/", + "id": 417630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2011-08/4000-417630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295688/", + "id": 295688, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-87/4000-295688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387330/", + "id": 387330, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-crossovers-omnibus-1-hc/4000-387330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291030/", + "id": 291030, + "name": "Spider-Man/Hulk/Deadpool: Identity Wars", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhulkdeadpool-identity-wars-1-spider-manh/4000-291030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319581/", + "id": 319581, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-43/4000-319581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818598/", + "id": 818598, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-139/4000-818598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443587/", + "id": 443587, + "name": "X-Men: Utopia", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-leggende-marvel-16-x-men-utopia/4000-443587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443585/", + "id": 443585, + "name": "X-Men Inarrestabili", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-leggende-marvel-15-x-men-inarrestabil/4000-443585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383338/", + "id": 383338, + "name": "На перепутье. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-206-1/4000-383338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383337/", + "id": 383337, + "name": "Питер Паркер в новом мире. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-205-6/4000-383337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382518/", + "id": 382518, + "name": "Незапланированная остановка. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-221-1/4000-382518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382517/", + "id": 382517, + "name": "Незапланированная остановка. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-222-2/4000-382517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373925/", + "id": 373925, + "name": "Can't Get the Service", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-manghost-rider-motorstorm-1-cant-ge/4000-373925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362495/", + "id": 362495, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319672/", + "id": 319672, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-25/4000-319672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319671/", + "id": 319671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-24/4000-319671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310006/", + "id": 310006, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/flint-comix-entertainment-28/4000-310006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307130/", + "id": 307130, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-116/4000-307130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289926/", + "id": 289926, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-david-michelinie-and-todd-ma/4000-289926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285151/", + "id": 285151, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-dark-reign-1-hc/4000-285151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284166/", + "id": 284166, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-5/4000-284166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276657/", + "id": 276657, + "name": "The Same Coin...", + "site_detail_url": "https://comicvine.gamespot.com/venom-4-the-same-coin/4000-276657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276606/", + "id": 276606, + "name": "...The Sound of War", + "site_detail_url": "https://comicvine.gamespot.com/ff-5-the-sound-of-war/4000-276606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276171/", + "id": 276171, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-last-stand-1/4000-276171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275854/", + "id": 275854, + "name": "HC/SC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-x-1-hcsc/4000-275854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275661/", + "id": 275661, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-5/4000-275661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274483/", + "id": 274483, + "name": "Fear Itself, part 2 Red Hulk Smassssh !", + "site_detail_url": "https://comicvine.gamespot.com/avengers-14-fear-itself-part-2-red-hulk-smassssh/4000-274483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273112/", + "id": 273112, + "name": "Death of Spider-Man: Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-159-death-of-spider-man-part-4/4000-273112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273108/", + "id": 273108, + "name": "Day Two", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spider-man-2-day-two/4000-273108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273089/", + "id": 273089, + "name": "Infinity, part 5", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-13-infinity-part-5/4000-273089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272432/", + "id": 272432, + "name": "Neighborhood, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-8-neighborhood-part-3/4000-272432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272428/", + "id": 272428, + "name": "The Return of Anti-Venom, Part 1: The Ghost of Jean Dewolff; Infested Stage 4: Out of Nowhere; Thanks... But No Thanks", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-663-the-return-of-anti-veno/4000-272428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551764/", + "id": 551764, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-8/4000-551764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540177/", + "id": 540177, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-6/4000-540177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538791/", + "id": 538791, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-5/4000-538791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413350/", + "id": 413350, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-spotlight-1/4000-413350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293162/", + "id": 293162, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-death-of-jean-dewolff-1-tpb/4000-293162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286202/", + "id": 286202, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-286202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286197/", + "id": 286197, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wolverine-vs-the-x-men-1-hctpb/4000-286197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285576/", + "id": 285576, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-am-i-an-avenger-1-tpb/4000-285576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284853/", + "id": 284853, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-point-one-1-tpb/4000-284853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284404/", + "id": 284404, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-scar-tissue-1-volume-12/4000-284404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278722/", + "id": 278722, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-daily-bugle-1/4000-278722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275019/", + "id": 275019, + "name": "The Illusionist", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-14-the-illusionist/4000-275019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271872/", + "id": 271872, + "name": "Out of Time!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-14-out-of-time/4000-271872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271744/", + "id": 271744, + "name": "The Raven's Nest", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-7-the-ravens-nest/4000-271744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269578/", + "id": 269578, + "name": "Spidey Sunday Spectacular!; Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/spidey-sunday-spectacular-1-spidey-sunday-spectacu/4000-269578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269530/", + "id": 269530, + "name": "Identity Wars, Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual-1-identity-wars-part-2-of-3/4000-269530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355434/", + "id": 355434, + "name": "Moon Madness", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-223-moon-madness/4000-355434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291027/", + "id": 291027, + "name": "Astonishing Spider-Man and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-and-wolverine-1-astonishing/4000-291027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286201/", + "id": 286201, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/essential-spectacular-spider-man-5-volume-five/4000-286201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271547/", + "id": 271547, + "name": "The Substitute Part 2; Infested Stage 3: Great Responsibility; Magnetic Man In The Choice", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-662-the-substitute-part-2-i/4000-271547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390192/", + "id": 390192, + "name": "A Game Of Thrones", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1257-a-game-of-thrones/4000-390192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319580/", + "id": 319580, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-42/4000-319580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285720/", + "id": 285720, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-flashpoint-1/4000-285720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270462/", + "id": 270462, + "name": "The Substitute Part 1; Just Another Day", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-661-the-substitute-part-1-j/4000-270462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390193/", + "id": 390193, + "name": "DC Retroactive: Superman-The 80's", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1256-dc-retroactive-superman-the-8/4000-390193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380208/", + "id": 380208, + "name": "I'll Never Let You Go", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-12-ill-never-let-you-go/4000-380208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293167/", + "id": 293167, + "name": "Dark Avengers Hardcover", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-hardcover-1-dark-avengers-hardcover/4000-293167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290870/", + "id": 290870, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-2-volume-two/4000-290870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281446/", + "id": 281446, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-man-without-fear-urban-jungle-1-/4000-281446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295687/", + "id": 295687, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-86/4000-295687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269832/", + "id": 269832, + "name": "Fantastic Voyage, Part 2; Infested, Stage 2: Great Power; Can't Get the Service, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-660-fantastic-voyage-part-2/4000-269832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-346969/", + "id": 346969, + "name": "Surpreendentes Homem-Aranha & Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-1-surpreendentes-homem-aranh/4000-346969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355433/", + "id": 355433, + "name": "Blind Justice", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-222-blind-justic/4000-355433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319579/", + "id": 319579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-41/4000-319579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281445/", + "id": 281445, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-captain-america-1-tpb/4000-281445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281336/", + "id": 281336, + "name": "Heroes for Hire: Control", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-control-1-heroes-for-hire-control/4000-281336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818258/", + "id": 818258, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-138/4000-818258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382520/", + "id": 382520, + "name": "Сезон охоты. Часть 1; Тайна Букмекера", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-219-1/4000-382520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382519/", + "id": 382519, + "name": "Сезон охоты. Часть 2; День рождения", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-220-2/4000-382519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362494/", + "id": 362494, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294505/", + "id": 294505, + "name": "Save Our Strength", + "site_detail_url": "https://comicvine.gamespot.com/williams-sonoma-spider-man-the-avengers-1-save-our/4000-294505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285569/", + "id": 285569, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-unleashed-1-hc/4000-285569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284165/", + "id": 284165, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-4/4000-284165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281335/", + "id": 281335, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-hail-hydra-1-tpb/4000-281335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272281/", + "id": 272281, + "name": "A True Friend", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-unleashed-4-a-true-friend/4000-272281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271611/", + "id": 271611, + "name": "Web of Death!", + "site_detail_url": "https://comicvine.gamespot.com/venom-3-web-of-death/4000-271611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271610/", + "id": 271610, + "name": "The Beating of Drums...", + "site_detail_url": "https://comicvine.gamespot.com/ff-4-the-beating-of-drums/4000-271610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271596/", + "id": 271596, + "name": "Gone", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-9-1-gone/4000-271596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271595/", + "id": 271595, + "name": "Another Fine Mess, Part Six", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-6-another-fine-me/4000-271595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270513/", + "id": 270513, + "name": "Neighborhood, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-7-neighborhood-part-2/4000-270513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270491/", + "id": 270491, + "name": "Fear Itself, part 1 The Gods of Fear", + "site_detail_url": "https://comicvine.gamespot.com/avengers-13-fear-itself-part-1-the-gods-of-fear/4000-270491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270467/", + "id": 270467, + "name": "Death of Spider-Man, Part Three of Five", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-158-death-of-spider-man-part-t/4000-270467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270466/", + "id": 270466, + "name": "Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-4-part-4/4000-270466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270410/", + "id": 270410, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-4/4000-270410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269835/", + "id": 269835, + "name": "Infinity, Part 4 Secrets", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-12-infinity-part-4-secrets/4000-269835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269820/", + "id": 269820, + "name": "Whatever Happened To All Those Reeds?", + "site_detail_url": "https://comicvine.gamespot.com/ff-3-whatever-happened-to-all-those-reeds/4000-269820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269682/", + "id": 269682, + "name": "Part 5", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-hail-hydra-5-part-5/4000-269682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269529/", + "id": 269529, + "name": "Heart Of A Hero", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-supreme-4-heart-of-a-hero/4000-269529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269526/", + "id": 269526, + "name": "Neighborhood", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-6-neighborhood/4000-269526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269489/", + "id": 269489, + "name": "Spider-Man: Day One", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spider-man-1-spider-man-day-one/4000-269489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269480/", + "id": 269480, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-1/4000-269480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269476/", + "id": 269476, + "name": "The Worthy", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-2-the-worthy/4000-269476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612227/", + "id": 612227, + "name": "Viuda Negra: Red de intrigas", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-22-viuda-negra-red-de-/4000-612227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540176/", + "id": 540176, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-5/4000-540176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538790/", + "id": 538790, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-4/4000-538790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420577/", + "id": 420577, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-x-1-hc-tpb/4000-420577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277587/", + "id": 277587, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-pet-avengers-1-tpb/4000-277587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277454/", + "id": 277454, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thor-gods-on-earth-1-tpb/4000-277454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271871/", + "id": 271871, + "name": "The Raptor of the Baskervilles", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-13-the-raptor-of-the-/4000-271871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269031/", + "id": 269031, + "name": "#Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-6-hobgoblin/4000-269031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268767/", + "id": 268767, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-1000/4000-268767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268233/", + "id": 268233, + "name": "Family Feud, Pt. 4", + "site_detail_url": "https://comicvine.gamespot.com/carnage-4-family-feud-pt-4/4000-268233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267578/", + "id": 267578, + "name": "Identity Wars, Part 1 of 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-38-identity-wars-par/4000-267578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380207/", + "id": 380207, + "name": "Thanks... But No Thanks", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-11-thanks-but-no-thanks/4000-380207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278684/", + "id": 278684, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-original-clone-saga-1-tpb/4000-278684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278682/", + "id": 278682, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-10-volume-10/4000-278682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269011/", + "id": 269011, + "name": "Fantastic Voyage, Part 1; Infested, Stage 1: Bug Time; Can't Get The Service, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-659-fantastic-voyage-part-1/4000-269011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319651/", + "id": 319651, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-18/4000-319651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319578/", + "id": 319578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-40/4000-319578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278675/", + "id": 278675, + "name": "Ultimate Comics Spider-Man: Death of Spider-Man Prelude", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-pre/4000-278675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278181/", + "id": 278181, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/impossible-man-1-tpb/4000-278181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273267/", + "id": 273267, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-20/4000-273267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388122/", + "id": 388122, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-mgc-1/4000-388122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435354/", + "id": 435354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-79/4000-435354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715467/", + "id": 715467, + "name": "Show Time", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-221-show-time/4000-715467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-282616/", + "id": 282616, + "name": "Uncanny X-Force: Deathlok Nation", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-deathlok-nation-1-uncanny-x-force-/4000-282616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281331/", + "id": 281331, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-ultimate-colle/4000-281331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277577/", + "id": 277577, + "name": "Ultimatum Companion", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-companion-1-ultimatum-companion/4000-277577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268231/", + "id": 268231, + "name": "Peter Parker: The Fantastic Spider-Man; Marvel Team-Up Featuring The Amazing Spider-Man & Ghost Rider- Can't Get The Service", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-658-peter-parker-the-fantas/4000-268231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295686/", + "id": 295686, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-85/4000-295686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319577/", + "id": 319577, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-39/4000-319577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817973/", + "id": 817973, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-137/4000-817973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732105/", + "id": 732105, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-the-new-avengers-1/4000-732105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383333/", + "id": 383333, + "name": "Питер Паркер в новом мире. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-201-2/4000-383333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382522/", + "id": 382522, + "name": "Семейные узы. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-217-1/4000-382522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382521/", + "id": 382521, + "name": "Семейные узы. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-218-2/4000-382521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362493/", + "id": 362493, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4000-362493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324467/", + "id": 324467, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-84/4000-324467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287493/", + "id": 287493, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-3/4000-287493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281916/", + "id": 281916, + "name": "Fear Itself: Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spotlight-1-fear-itself-spotlight/4000-281916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277921/", + "id": 277921, + "name": "The Challenge of Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-33-the-challenge-of-doctor-do/4000-277921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277453/", + "id": 277453, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-fighting-avenger-1/4000-277453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277205/", + "id": 277205, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thor-thunderstrike-1-tpb/4000-277205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277204/", + "id": 277204, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/osborn-evil-incarcerated-1-tpb/4000-277204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275714/", + "id": 275714, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-6-volume-6/4000-275714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273913/", + "id": 273913, + "name": "Wolverine Waffe X - Die Zukunft Stirbt Heute", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-56-wolverine-waffe-x-die-zukunft-stirbt/4000-273913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271186/", + "id": 271186, + "name": "50 Worst Things About Facebook", + "site_detail_url": "https://comicvine.gamespot.com/mad-509-50-worst-things-about-facebook/4000-271186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269063/", + "id": 269063, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/venom-2/4000-269063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269048/", + "id": 269048, + "name": "The Storm and The Sacrifice", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-5-the-storm-and-the-sacrifice/4000-269048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268982/", + "id": 268982, + "name": "It Came from Outer Space (Knight) !", + "site_detail_url": "https://comicvine.gamespot.com/avengers-12-1-it-came-from-outer-space-knight/4000-268982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268964/", + "id": 268964, + "name": "Doom Nation", + "site_detail_url": "https://comicvine.gamespot.com/ff-2-doom-nation/4000-268964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268932/", + "id": 268932, + "name": "To Serve & Protect, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/x-men-10-to-serve-protect-part-4/4000-268932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268708/", + "id": 268708, + "name": "Who Will Wield the Gauntlet?", + "site_detail_url": "https://comicvine.gamespot.com/avengers-12-who-will-wield-the-gauntlet/4000-268708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268662/", + "id": 268662, + "name": "Put Away Childish Things", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-12-put-away-childish-things/4000-268662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268355/", + "id": 268355, + "name": "Journey Into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-622-journey-into-mystery/4000-268355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268348/", + "id": 268348, + "name": "Death of Spider-Man, Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-157-death-of-spider-man-chapte/4000-268348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268333/", + "id": 268333, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-3-part-three/4000-268333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268258/", + "id": 268258, + "name": "Infinity, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-11-infinity-part-3/4000-268258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267534/", + "id": 267534, + "name": "The Serpent", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-1-the-serpent/4000-267534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267533/", + "id": 267533, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-5/4000-267533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-610281/", + "id": 610281, + "name": "Patrulla-X 1: La guerra de Magneto", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-2-patrulla-x-1-la-guer/4000-610281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551763/", + "id": 551763, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-7/4000-551763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540175/", + "id": 540175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-4/4000-540175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538789/", + "id": 538789, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-3/4000-538789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277202/", + "id": 277202, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-team-up-bffs-1-volume-3/4000-277202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275146/", + "id": 275146, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-youth-in-revolt-1-tpb/4000-275146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275028/", + "id": 275028, + "name": "Ultimate Comics Doomsday ", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-doomsday-1-ultimate-comics-doomsda/4000-275028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274798/", + "id": 274798, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hobgoblin-lives-1-tpb/4000-274798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267439/", + "id": 267439, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-12/4000-267439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266612/", + "id": 266612, + "name": "Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-reborn-3-chapter-three/4000-266612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540454/", + "id": 540454, + "name": "End of Days", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-220-end-of-days/4000-540454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380206/", + "id": 380206, + "name": "The Choice", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-10-the-choice/4000-380206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319576/", + "id": 319576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-38/4000-319576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275140/", + "id": 275140, + "name": "Invincible Iron Man: My Monsters", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-my-monsters-1-invincible-iron-/4000-275140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270760/", + "id": 270760, + "name": "Mutant Deathmatch/Dangerous Liasons/Disaster at Darkmoor Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-35-mutant-deathmatchdangerous-liason/4000-270760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380205/", + "id": 380205, + "name": "Just Another Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-9-just-another-day/4000-380205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275027/", + "id": 275027, + "name": "Thor: The World Eaters", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-world-eaters-1-thor-the-world-eaters/4000-275027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295685/", + "id": 295685, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-84/4000-295685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497268/", + "id": 497268, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-37/4000-497268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274799/", + "id": 274799, + "name": "Amazing Spider-Man: Matters of Life and Death", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-matters-of-life-and-death-1-ama/4000-274799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274005/", + "id": 274005, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-korvac-saga-1-tpb/4000-274005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273569/", + "id": 273569, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-we-are-the-avengers-1-tpb/4000-273569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270061/", + "id": 270061, + "name": "The Worthy: Titania", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-worthy-3-the-worthy-titania/4000-270061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269984/", + "id": 269984, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics-1-tpb/4000-269984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716088/", + "id": 716088, + "name": "Twilight of the Gods", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-219-twilight-of-/4000-716088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356739/", + "id": 356739, + "name": "Can't Get The Service - Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-8-cant-get-the-service-part-3/4000-356739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273563/", + "id": 273563, + "name": "Thor/Iron Man: God Complex", + "site_detail_url": "https://comicvine.gamespot.com/thoriron-man-god-complex-1-thoriron-man-god-comple/4000-273563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817570/", + "id": 817570, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-136/4000-817570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402932/", + "id": 402932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-13/4000-402932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383332/", + "id": 383332, + "name": "Питер Паркер в новом мире. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-200-1/4000-383332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383331/", + "id": 383331, + "name": "Реквием. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-199-3/4000-383331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382526/", + "id": 382526, + "name": "Секретное вторжение. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-214-3/4000-382526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382525/", + "id": 382525, + "name": "История двух Джекпот! Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-215-1/4000-382525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382523/", + "id": 382523, + "name": "История двух Джекпот! Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-216-2/4000-382523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379971/", + "id": 379971, + "name": "Marvel Mix-Tape", + "site_detail_url": "https://comicvine.gamespot.com/mix-tape-1-marvel-mix-tape/4000-379971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379933/", + "id": 379933, + "name": "Powerless", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-mgc-1-powerless/4000-379933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297463/", + "id": 297463, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-21/4000-297463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289797/", + "id": 289797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-30/4000-289797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289736/", + "id": 289736, + "name": "Untergang der Hulks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-8-untergang-der-hulks/4000-289736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284163/", + "id": 284163, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2/4000-284163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275135/", + "id": 275135, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-man-out-of-time-1-hc-tpb/4000-275135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274797/", + "id": 274797, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-extremist-1-tpb/4000-274797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274621/", + "id": 274621, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thorspider-man-1-tpb/4000-274621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273573/", + "id": 273573, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/trouble-1-hctpb/4000-273573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271881/", + "id": 271881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-15/4000-271881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271832/", + "id": 271832, + "name": "The Race to Save Ronin", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-32-the-race-to-save-ronin/4000-271832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269621/", + "id": 269621, + "name": "The Way of the Spider", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2011-spider-man-1-the-way-of-t/4000-269621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267435/", + "id": 267435, + "name": "You're Hired!; The Girl's All Right With Me...; Lock and/or Key", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-youre-hired-1-youre-hired-the-girls-all/4000-267435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267133/", + "id": 267133, + "name": "Team-Up Finale", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-team-up-883-team-up-finale/4000-267133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267124/", + "id": 267124, + "name": "Urban Jungle, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-man-without-fear-516-urban-jungl/4000-267124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267093/", + "id": 267093, + "name": "Torch Song", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-657-torch-song/4000-267093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267092/", + "id": 267092, + "name": "Thunderstruck", + "site_detail_url": "https://comicvine.gamespot.com/avengers-11-thunderstruck/4000-267092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267087/", + "id": 267087, + "name": "Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-universe-1-chapter-1/4000-267087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266662/", + "id": 266662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vampires-poster-book-1/4000-266662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266640/", + "id": 266640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thor-620-1/4000-266640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266507/", + "id": 266507, + "name": "Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-doom-4-part-4/4000-266507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266505/", + "id": 266505, + "name": "Deathlok Nation: Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-6-deathlok-nation-chapter-2/4000-266505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266503/", + "id": 266503, + "name": "Another Fine Mess, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-5-another-fine-me/4000-266503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266502/", + "id": 266502, + "name": "To Serve & Protect, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/x-men-9-to-serve-protect-part-3/4000-266502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266491/", + "id": 266491, + "name": "The Club", + "site_detail_url": "https://comicvine.gamespot.com/ff-1-the-club/4000-266491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266487/", + "id": 266487, + "name": "Death of Spider-Man, Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-156-death-of-spider-man-chapte/4000-266487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266017/", + "id": 266017, + "name": "When Fall The Mighty!", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-4-when-fall-the-mighty/4000-266017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266014/", + "id": 266014, + "name": "No One Dies, Part 2: Resolve", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-656-no-one-dies-part-2-reso/4000-266014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266009/", + "id": 266009, + "name": "The God Number", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-502-the-god-number/4000-266009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266001/", + "id": 266001, + "name": "Growing Up", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-11-growing-up/4000-266001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265514/", + "id": 265514, + "name": "Death of Spider-Man: Prologue", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-155-death-of-spider-man-prolog/4000-265514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265509/", + "id": 265509, + "name": "Infinity, Part 2 Meet the New Team?!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-10-infinity-part-2-meet-the-new-team/4000-265509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264592/", + "id": 264592, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-216/4000-264592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558786/", + "id": 558786, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/visionarios-marvel-stan-lee-1/4000-558786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551754/", + "id": 551754, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-misterio-1/4000-551754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394383/", + "id": 394383, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-5-volume-5/4000-394383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291432/", + "id": 291432, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-3/4000-291432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291357/", + "id": 291357, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-2/4000-291357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270245/", + "id": 270245, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-avengers-1-tpb/4000-270245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265634/", + "id": 265634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-11/4000-265634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263855/", + "id": 263855, + "name": "What If Venom Possessed Deadpool?", + "site_detail_url": "https://comicvine.gamespot.com/venomdeadpool-what-if-1-what-if-venom-possessed-de/4000-263855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263599/", + "id": 263599, + "name": "Three, Epilogue: Month of Mourning", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-588-three-epilogue-month-of-mournin/4000-263599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261240/", + "id": 261240, + "name": "Family Feud, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/carnage-3-family-feud-pt-3/4000-261240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497269/", + "id": 497269, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-36/4000-497269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370158/", + "id": 370158, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-les-grandes-sagas-spider-man-1-spider-man/4000-370158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273105/", + "id": 273105, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/x-men-omnibus-2-volume-two/4000-273105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273102/", + "id": 273102, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/sensational-she-hulk-by-john-byrne-1-volume-one/4000-273102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269672/", + "id": 269672, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-4-volume-4/4000-269672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263708/", + "id": 263708, + "name": "No One Dies Part One of Two: Awakening", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-655-no-one-dies-part-one-of/4000-263708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300589/", + "id": 300589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-29/4000-300589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270805/", + "id": 270805, + "name": "Gods and Monsters/Disaster at Darkmoor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-34-gods-and-monstersdisaster-at-dark/4000-270805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281161/", + "id": 281161, + "name": "Can't Get The Service - Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-7-cant-get-the-service-part-2/4000-281161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272868/", + "id": 272868, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-classic-1-volume-one/4000-272868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272861/", + "id": 272861, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-new-york-stories-1-tpb/4000-272861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-262872/", + "id": 262872, + "name": "Flashpoint", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-654-1-flashpoint/4000-262872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716087/", + "id": 716087, + "name": "Days of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-218-days-of-the-/4000-716087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410698/", + "id": 410698, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-american-son-1/4000-410698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261239/", + "id": 261239, + "name": "Revenge of the Spider-Slayer, Part 3: Self Inflicted Wounds", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-654-revenge-of-the-spider-s/4000-261239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385961/", + "id": 385961, + "name": "Том 2. История Часового", + "site_detail_url": "https://comicvine.gamespot.com/noviye-mstiteli-2-2/4000-385961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385875/", + "id": 385875, + "name": "Том 2. Признание", + "site_detail_url": "https://comicvine.gamespot.com/udivitelniy-chelovek-pauk-2-2/4000-385875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281160/", + "id": 281160, + "name": "Can't Get The Service", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-6-cant-get-the-service/4000-281160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270244/", + "id": 270244, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-power-man-1-hc-tpb/4000-270244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270101/", + "id": 270101, + "name": "Avengers Prime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime-1-avengers-prime/4000-270101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259998/", + "id": 259998, + "name": "Revenge of The Spider-Slayer, Part 2: All You Love Will Die", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-653-revenge-of-the-spider-s/4000-259998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817317/", + "id": 817317, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-135/4000-817317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437039/", + "id": 437039, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-256/4000-437039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383330/", + "id": 383330, + "name": "Реквием. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-198-2/4000-383330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383329/", + "id": 383329, + "name": "Реквием. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-197-1/4000-383329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382528/", + "id": 382528, + "name": "Секретное вторжение. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-212-1/4000-382528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382527/", + "id": 382527, + "name": "Секретное вторжение. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-213-2/4000-382527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318690/", + "id": 318690, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine-5/4000-318690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297462/", + "id": 297462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-20/4000-297462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284162/", + "id": 284162, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-284162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270759/", + "id": 270759, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-blade-vs-the-avengers-1-t/4000-270759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269638/", + "id": 269638, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-sensational-1-tpb/4000-269638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269091/", + "id": 269091, + "name": "The Madness of the Molecule Man", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-31-the-madness-of-the-molecul/4000-269091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264296/", + "id": 264296, + "name": "God Complex, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/iron-manthor-4-god-complex-part-4/4000-264296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263760/", + "id": 263760, + "name": "Death of Spider-Man: Prelude", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-154-death-of-spider-man-prelud/4000-263760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263758/", + "id": 263758, + "name": "Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-doom-3-part-3/4000-263758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263757/", + "id": 263757, + "name": "To Serve & Protect, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-8-to-serve-protect-part-2/4000-263757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263743/", + "id": 263743, + "name": "Fix Me", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-501-fix-me/4000-263743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263715/", + "id": 263715, + "name": "Absolute Power", + "site_detail_url": "https://comicvine.gamespot.com/avengers-10-absolute-power/4000-263715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-262615/", + "id": 262615, + "name": "Deathlok Nation, Part One", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-5-deathlok-nation-part-one/4000-262615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-262495/", + "id": 262495, + "name": "Silver Surfer: Devolution", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-1-silver-surfer-devolution/4000-262495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261313/", + "id": 261313, + "name": "Infinity, Part 1 Fury from the Past!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-9-infinity-part-1-fury-from-the-past/4000-261313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261260/", + "id": 261260, + "name": "Happy", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-5-1-happy/4000-261260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261244/", + "id": 261244, + "name": "Death of Spider-Man: Prelude", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-153-death-of-spider-man-prelud/4000-261244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-618402/", + "id": 618402, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks-heroes-1/4000-618402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612221/", + "id": 612221, + "name": "Spiderman: La muerte de los Stacy", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-16-spiderman-la-muerte/4000-612221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551762/", + "id": 551762, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-6/4000-551762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454444/", + "id": 454444, + "name": "Thor 1: En Busca de los Dioses", + "site_detail_url": "https://comicvine.gamespot.com/coleccion-extra-superheroes-1-thor-1-en-busca-de-l/4000-454444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362278/", + "id": 362278, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/transformers-the-idw-collection-3-volume-three/4000-362278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299690/", + "id": 299690, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-0/4000-299690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291431/", + "id": 291431, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-2/4000-291431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291356/", + "id": 291356, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-1/4000-291356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267812/", + "id": 267812, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-lost-gods-1-tpb/4000-267812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267661/", + "id": 267661, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/age-of-heroes-1-tpb/4000-267661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267561/", + "id": 267561, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-classic-3-volume-3/4000-267561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267449/", + "id": 267449, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thor-first-thunder-1-tpb/4000-267449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264800/", + "id": 264800, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wolverine-goes-to-hell-1-hc/4000-264800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260095/", + "id": 260095, + "name": "A Certain Point Of View", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-3-a-certain-point-of-view/4000-260095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259827/", + "id": 259827, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-10/4000-259827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259408/", + "id": 259408, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-pet-avengers-4/4000-259408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259137/", + "id": 259137, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-152/4000-259137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270097/", + "id": 270097, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-legacy-of-captain-america-1-tp/4000-270097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268507/", + "id": 268507, + "name": "Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1241-fear-itself/4000-268507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267392/", + "id": 267392, + "name": "The Death of the Illuminati!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-15-the-death-of-the-illu/4000-267392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716086/", + "id": 716086, + "name": "Rumble in the Jungle", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-217-rumble-in-th/4000-716086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270055/", + "id": 270055, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/klaws-of-the-panther-1-tpb/4000-270055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258417/", + "id": 258417, + "name": "Revenge of the Spider-Slayer, Part One: Army of Insects; Lock And/Or Key", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-652-revenge-of-the-spider-s/4000-258417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293120/", + "id": 293120, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-siege-4/4000-293120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289796/", + "id": 289796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-29/4000-289796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295799/", + "id": 295799, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-35/4000-295799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295683/", + "id": 295683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-82/4000-295683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385917/", + "id": 385917, + "name": "Том 4. Гвен Стэйси", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-i-mary-jane-4-4/4000-385917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385870/", + "id": 385870, + "name": "Спасти тетю Мэй!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-1-wikiissue/4000-385870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435351/", + "id": 435351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-76/4000-435351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402524/", + "id": 402524, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/das-marvel-universum-gegen-den-punisher-1/4000-402524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267559/", + "id": 267559, + "name": "Shadowland: Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-moon-knight-1-shadowland-moon-knight/4000-267559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416846/", + "id": 416846, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-16-deadpool/4000-416846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715651/", + "id": 715651, + "name": "The Spectacular Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-216-the-spectacu/4000-715651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273271/", + "id": 273271, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-16/4000-273271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267384/", + "id": 267384, + "name": "The Bridge!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-14-the-bridge/4000-267384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265155/", + "id": 265155, + "name": "The Thanos Imperative", + "site_detail_url": "https://comicvine.gamespot.com/thanos-imperative-1-the-thanos-imperative/4000-265155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264614/", + "id": 264614, + "name": "Volume Thirteen", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-13-volum/4000-264614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816884/", + "id": 816884, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-134/4000-816884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437038/", + "id": 437038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-255/4000-437038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435379/", + "id": 435379, + "name": "X-Men Sombrios", + "site_detail_url": "https://comicvine.gamespot.com/reinado-sombrio-especial-1-x-men-sombrios/4000-435379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383328/", + "id": 383328, + "name": "Здравствуйте, Доктор!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-196-wikiissu/4000-383328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383327/", + "id": 383327, + "name": "Спасти Питера Паркера", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-195-wikiissu/4000-383327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382530/", + "id": 382530, + "name": "Новые способы умереть. Часть 5. Легкая мишень", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-210-5/4000-382530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382529/", + "id": 382529, + "name": "Новые способы умереть. Часть 6. Оружие саморазрушения", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-211-6/4000-382529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313296/", + "id": 313296, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-search-for-the-scar/4000-313296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272895/", + "id": 272895, + "name": "X-Men: With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/x-men-with-great-power-1-x-men-with-great-power/4000-272895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271880/", + "id": 271880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-14/4000-271880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270058/", + "id": 270058, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-ii-1-volume-2/4000-270058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270056/", + "id": 270056, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-extended-family-1-tpb/4000-270056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268628/", + "id": 268628, + "name": "SPIDER-MAN vs THE PUNISHER!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-19-spider-man-vs-the-pu/4000-268628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267918/", + "id": 267918, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-dark-avengers-1-tpb/4000-267918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267560/", + "id": 267560, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thor-bringers-of-the-storm-1-tpb/4000-267560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267450/", + "id": 267450, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-daniel-way-ultimate-collection-1-tpb/4000-267450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263176/", + "id": 263176, + "name": "The Power of the Dark Avengers!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-15-the-power-of-the-dark-avengers/4000-263176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259141/", + "id": 259141, + "name": "To Serve & Protect, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-7-to-serve-protect-part-1/4000-259141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259139/", + "id": 259139, + "name": "Date Night!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-8-date-night/4000-259139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259136/", + "id": 259136, + "name": "To Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-9-to-infinity/4000-259136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259135/", + "id": 259135, + "name": "The End Is Here", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-5-the-end-is-here/4000-259135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259131/", + "id": 259131, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-doom-2-part-2/4000-259131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258593/", + "id": 258593, + "name": "Asgard, Thine... Midgard, Mine!", + "site_detail_url": "https://comicvine.gamespot.com/thor-first-thunder-5-asgard-thine-midgard-mine/4000-258593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258423/", + "id": 258423, + "name": "The New Iron Age", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-500-the-new-iron-age/4000-258423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255931/", + "id": 255931, + "name": "Terminated", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-dead-avengers-3-terminated/4000-255931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254667/", + "id": 254667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-4/4000-254667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254666/", + "id": 254666, + "name": "Brothers in Arms", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime-5-brothers-in-arms/4000-254666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551710/", + "id": 551710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-enemigo-1/4000-551710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291430/", + "id": 291430, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-1/4000-291430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267234/", + "id": 267234, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-1-hctpb/4000-267234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266790/", + "id": 266790, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-animal-magnetism-1-tpb/4000-266790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263350/", + "id": 263350, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-patriot-1-tpb/4000-263350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263342/", + "id": 263342, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time-1-hctpb/4000-263342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-262282/", + "id": 262282, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-vs-capcom-fate-of-two-worlds-3/4000-262282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258940/", + "id": 258940, + "name": "Enter the Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/klaws-of-the-panther-4-enter-the-black-widow/4000-258940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254668/", + "id": 254668, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/bullseye-perfect-game-2-part-2/4000-254668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-253761/", + "id": 253761, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-9/4000-253761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-253760/", + "id": 253760, + "name": "Death Be Not Proud...", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-2-death-be-not-proud/4000-253760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-253596/", + "id": 253596, + "name": "What if Norman Osborn won the Siege of Asgard?, What if the Watcher Killed Galactus?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-200-what-if-norman-osborn-won-the-siege-of/4000-253596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252993/", + "id": 252993, + "name": "Family Feud, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/carnage-2-family-feud-pt-2/4000-252993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251863/", + "id": 251863, + "name": "What If Tony Stark Had Become Doctor Doom?; What if the Venom Symbiote Possessed Deadpool? Part One of Four: Chapter One: 1985 The Man with the M.O.D.O.K. Butt", + "site_detail_url": "https://comicvine.gamespot.com/what-if-iron-man-demon-in-an-armor-1-what-if-tony-/4000-251863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-250713/", + "id": 250713, + "name": "What If? Dark Reign; What if Venom Possessed Deadpool? Chapter Four", + "site_detail_url": "https://comicvine.gamespot.com/what-if-dark-reign-1-what-if-dark-reign-what-if-ve/4000-250713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249296/", + "id": 249296, + "name": "What if Spider-Man Killed Kraven The Hunter?; What if Venom Possessed Deadpool? Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-1-what-if-spider-man-killed-kra/4000-249296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248584/", + "id": 248584, + "name": "Strange Days", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-korvac-saga-1-strange-days/4000-248584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248524/", + "id": 248524, + "name": "Like A Streak of Light!; Closure, part 2; The Darkest Depths; The Smashy Adventures of the Hulk", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger-4-like-a-streak-of-light-closure-p/4000-248524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248509/", + "id": 248509, + "name": "Wolverine: Father; What if Venom Possessed Deadpool? Chapter Two: 1993 Straight Outta Secret Wars XII", + "site_detail_url": "https://comicvine.gamespot.com/what-if-wolverine-father-1-wolverine-father-what-i/4000-248509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248437/", + "id": 248437, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/shadowland-after-the-fall-1/4000-248437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311132/", + "id": 311132, + "name": "A Meal To Die For", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-a-meal-to-die-for-1-a-meal-to-die-for/4000-311132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303271/", + "id": 303271, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-street-heroes-1-hc-tpb/4000-303271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260075/", + "id": 260075, + "name": "One Shot", + "site_detail_url": "https://comicvine.gamespot.com/february-2011-sneak-peeks-1-one-shot/4000-260075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266235/", + "id": 266235, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-daredevil-1-hc-tpb/4000-266235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-245820/", + "id": 245820, + "name": "X-Force : A Force To Be Reckoned With HC", + "site_detail_url": "https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with-1-x-force-a-f/4000-245820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295682/", + "id": 295682, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-81/4000-295682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435197/", + "id": 435197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-75/4000-435197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345145/", + "id": 345145, + "name": "Strange Days", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-215-strange-days/4000-345145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266689/", + "id": 266689, + "name": "Atlantis Attacks Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/atlantis-attacks-omnibus-1-atlantis-attacks-omnibu/4000-266689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266236/", + "id": 266236, + "name": "Shadowland", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-1-shadowland/4000-266236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265751/", + "id": 265751, + "name": "Captain America Lives Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-lives-omnibus-1-captain-america-li/4000-265751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263851/", + "id": 263851, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-omnibus-1-hc/4000-263851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385960/", + "id": 385960, + "name": "Том 1. Побег", + "site_detail_url": "https://comicvine.gamespot.com/noviye-mstiteli-1-1/4000-385960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385874/", + "id": 385874, + "name": "Том 1. Тайна суперспособностей", + "site_detail_url": "https://comicvine.gamespot.com/udivitelniy-chelovek-pauk-1-1/4000-385874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385616/", + "id": 385616, + "name": "Том 8. Черная Кошка", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-8-8/4000-385616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-245497/", + "id": 245497, + "name": "Civil War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men-1-civil-war-x-men/4000-245497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816618/", + "id": 816618, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-133/4000-816618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383326/", + "id": 383326, + "name": "Финальная схватка", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-194-wikiissu/4000-383326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383325/", + "id": 383325, + "name": "Один день с Росомахой", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-193-wikiissu/4000-383325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382532/", + "id": 382532, + "name": "Новые способы умереть. Часть 3. Смертельное лекарство", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-208-3/4000-382532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382531/", + "id": 382531, + "name": "Новые способы умереть. Часть 4. Ответная атака", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-209-4/4000-382531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267447/", + "id": 267447, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-quest-for-odin-1-hc/4000-267447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266225/", + "id": 266225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine-4/4000-266225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255922/", + "id": 255922, + "name": "Big Time Part 4; The Sting That Never Goes Away", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-651-big-time-part-4-the-sti/4000-255922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252999/", + "id": 252999, + "name": "Another Fine Mess, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-4-another-fine-me/4000-252999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252756/", + "id": 252756, + "name": "X-Dudes! Part Two; Gold, Guns, Girls; Shells; Judgment", + "site_detail_url": "https://comicvine.gamespot.com/x-men-to-serve-and-protect-2-x-dudes-part-two-gold/4000-252756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252734/", + "id": 252734, + "name": "Revelations", + "site_detail_url": "https://comicvine.gamespot.com/avengers-8-revelations/4000-252734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251567/", + "id": 251567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-151/4000-251567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251476/", + "id": 251476, + "name": "Hot for Teacher!", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-2-hot-for-teacher/4000-251476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251086/", + "id": 251086, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-doom-1-part-1/4000-251086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249434/", + "id": 249434, + "name": "One Flew Over the Watcher's Nest", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-ii-3-one-flew-over-the-watchers-nest/4000-249434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249378/", + "id": 249378, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-pet-avengers-3/4000-249378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249331/", + "id": 249331, + "name": "Captain America: Man Out Of Time", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-man-out-of-time-2-captain-america-/4000-249331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249258/", + "id": 249258, + "name": "Big Time; The Final Lesson", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-650-big-time-the-final-less/4000-249258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248493/", + "id": 248493, + "name": "The Nanny Cometh!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-7-the-nanny-cometh/4000-248493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247541/", + "id": 247541, + "name": "One Shot", + "site_detail_url": "https://comicvine.gamespot.com/december-2010-sneak-peeks-1-one-shot/4000-247541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247456/", + "id": 247456, + "name": "Are You For Hire?", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-1-are-you-for-hire/4000-247456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612217/", + "id": 612217, + "name": "Secret Wars: La batalla final", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-12-secret-wars-la-bata/4000-612217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612216/", + "id": 612216, + "name": "Secret Wars: La llegada del Todopoderoso", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-11-secret-wars-la-lleg/4000-612216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551761/", + "id": 551761, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-5/4000-551761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-519014/", + "id": 519014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/asedio-infiltrados-4/4000-519014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454201/", + "id": 454201, + "name": "Imparable", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-4-imparable/4000-454201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442062/", + "id": 442062, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-61/4000-442062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291324/", + "id": 291324, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-61/4000-291324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276316/", + "id": 276316, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-worldfantastick-four-1-hc/4000-276316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265179/", + "id": 265179, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-1-volume-1/4000-265179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263850/", + "id": 263850, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four-1-hctpb/4000-263850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263171/", + "id": 263171, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-women-of-marvel-1-tpb/4000-263171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261667/", + "id": 261667, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-7-volume-7/4000-261667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260054/", + "id": 260054, + "name": "Book Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-260054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247321/", + "id": 247321, + "name": "Chapter 5", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-5-chapter-5/4000-247321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246865/", + "id": 246865, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-4/4000-246865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246855/", + "id": 246855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-8/4000-246855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246618/", + "id": 246618, + "name": "Music Of The Spheres", + "site_detail_url": "https://comicvine.gamespot.com/klaws-of-the-panther-3-music-of-the-spheres/4000-246618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-245075/", + "id": 245075, + "name": "Family Values; Four Shadowing", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-1-family-values-four-shadowing/4000-245075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-242908/", + "id": 242908, + "name": "Like A Streak of Light!; Closure, Part 2; The Darkest Depths; The Smashy Adventures of Hulk", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger-3-like-a-streak-of-light-closure-p/4000-242908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-242262/", + "id": 242262, + "name": "Big Time", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-648-big-time/4000-242262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241075/", + "id": 241075, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-7/4000-241075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168483/", + "id": 168483, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-war-and-remembrance-1-tpb/4000-168483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281158/", + "id": 281158, + "name": "Lock And/Or Key - Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-4-lock-andor-key-part-2/4000-281158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261477/", + "id": 261477, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-1-volume-one/4000-261477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261471/", + "id": 261471, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-spectacular-1-tpb/4000-261471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345144/", + "id": 345144, + "name": "Terror at Tintagel", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-214-terror-at-ti/4000-345144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281157/", + "id": 281157, + "name": "Lock And/Or Key", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-big-time-3-lock-andor-key/4000-281157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295681/", + "id": 295681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-80/4000-295681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261687/", + "id": 261687, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-citizen-kang-1-tpb/4000-261687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258519/", + "id": 258519, + "name": "Amazing Spider-Man: Origin of the Species", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-origin-of-the-species-1-amazing/4000-258519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816460/", + "id": 816460, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-132/4000-816460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383324/", + "id": 383324, + "name": "Настоящий воин", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-192-wikiissu/4000-383324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383323/", + "id": 383323, + "name": "Судью на мыло!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-191-wikiissu/4000-383323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382534/", + "id": 382534, + "name": "Новые способы умереть. Часть 1. Месть", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-206-1/4000-382534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382533/", + "id": 382533, + "name": "Новые способы умереть. Часть 2. Превосходство Озборна", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-207-2/4000-382533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307121/", + "id": 307121, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-107/4000-307121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297098/", + "id": 297098, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-35/4000-297098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297097/", + "id": 297097, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-34/4000-297097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297096/", + "id": 297096, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-28/4000-297096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292377/", + "id": 292377, + "name": "Marvel Zombies 5", + "site_detail_url": "https://comicvine.gamespot.com/max-39-marvel-zombies-5/4000-292377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286295/", + "id": 286295, + "name": "Shadowland", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-9-shadowland/4000-286295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271879/", + "id": 271879, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-13/4000-271879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266643/", + "id": 266643, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-1-hc/4000-266643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264457/", + "id": 264457, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-scourge-of-the-underworld-1-tpb/4000-264457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261692/", + "id": 261692, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2-back-in-action-1-vol-1/4000-261692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260030/", + "id": 260030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/george-perez-storyteller-2/4000-260030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259743/", + "id": 259743, + "name": "Captain America 70th Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-70th-anniversary-magazine-20-capta/4000-259743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255165/", + "id": 255165, + "name": "Cry Demon!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-27-cry-demon/4000-255165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246845/", + "id": 246845, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-spotlight-1/4000-246845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246589/", + "id": 246589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-pet-avengers-2/4000-246589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246471/", + "id": 246471, + "name": "Kill To Be You", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-649-kill-to-be-you/4000-246471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246470/", + "id": 246470, + "name": "Spidey's 150th Anniversay Special", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-150-spideys-150th-anniversay-s/4000-246470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244976/", + "id": 244976, + "name": "Nothing At All; At The Crossroads of the World, In The City That Never Sleeps, On The Eve of Destruction; A Fate Worse Than Dying", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-chaos-king-1-nothing-at-all-at-the-cross/4000-244976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244901/", + "id": 244901, + "name": "The Chaos Races On", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-dead-avengers-1-the-chaos-races-on/4000-244901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244860/", + "id": 244860, + "name": "Old Scores", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-150-old-scores/4000-244860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244839/", + "id": 244839, + "name": "Infinity Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-7-infinity-quest/4000-244839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244837/", + "id": 244837, + "name": "Part 1; The Prime of Miss June Covington", + "site_detail_url": "https://comicvine.gamespot.com/evil-incarcerated-osborn-1-part-1-the-prime-of-mis/4000-244837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-242246/", + "id": 242246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-6/4000-242246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-242038/", + "id": 242038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-3/4000-242038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241132/", + "id": 241132, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-ii-2/4000-241132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240986/", + "id": 240986, + "name": "Wolverine Goes To Hell, Part 3; Scorched Earth, Chapter Three: Old Wounds", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-3-wolverine-goes-to-hell-part-3-scorched/4000-240986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-624491/", + "id": 624491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-civil-war-spiderman-1/4000-624491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622318/", + "id": 622318, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-evolucion-1/4000-622318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-618401/", + "id": 618401, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/asedio-campo-de-batalla-1/4000-618401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551711/", + "id": 551711, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-enemigo-2/4000-551711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442061/", + "id": 442061, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-60/4000-442061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394393/", + "id": 394393, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-1-volume-1/4000-394393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291323/", + "id": 291323, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-60/4000-291323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258520/", + "id": 258520, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/one-month-to-live-1-hctpb/4000-258520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256145/", + "id": 256145, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-black-cat-1-tpb/4000-256145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255850/", + "id": 255850, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/atlas-return-of-the-three-dimensional-man-1-tpb/4000-255850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249239/", + "id": 249239, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-moon-knight-killed-not-dead-1-volume-/4000-249239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248623/", + "id": 248623, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-the-new-prince-of-power-1-tpb/4000-248623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240123/", + "id": 240123, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-3/4000-240123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239851/", + "id": 239851, + "name": "Three, Part Two: Congratulations, Mister Grimm. You`re Handsome Again!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-584-three-part-two-congratulations-/4000-239851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239071/", + "id": 239071, + "name": "Family Feud, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/carnage-1-family-feud-pt-1/4000-239071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238448/", + "id": 238448, + "name": "Post-Mortem; Closure part 1; The Journal of Edwin Jarvis; Pie of the Tiger", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger-2-post-mortem-closure-part-1-the-j/4000-238448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238178/", + "id": 238178, + "name": "Chapter 4", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-4-chapter-4/4000-238178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237205/", + "id": 237205, + "name": "Imbalanced", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-spider-man-1-imbalanced/4000-237205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540456/", + "id": 540456, + "name": "Big Lizard on Campus", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-213-big-lizard-o/4000-540456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256148/", + "id": 256148, + "name": "X-Force: Cable and the New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-force-cable-and-the-new-mutants-1-x-force-cable-/4000-256148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255965/", + "id": 255965, + "name": "Civil War: The Underside", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-underside-1-civil-war-the-underside/4000-255965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255940/", + "id": 255940, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-1-volume-one/4000-255940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239885/", + "id": 239885, + "name": "Origin of the Species, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-646-origin-of-the-species-p/4000-239885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255756/", + "id": 255756, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-1-hc-tpb/4000-255756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255846/", + "id": 255846, + "name": "Marvels: Eye of the Camera", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera-1-marvels-eye-of-the-cam/4000-255846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238243/", + "id": 238243, + "name": "Origin of the Species, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-645-origin-of-the-species-p/4000-238243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295680/", + "id": 295680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-79/4000-295680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263593/", + "id": 263593, + "name": "Spider-Man: Viaggio in Italia", + "site_detail_url": "https://comicvine.gamespot.com/il-giornalino-201050-spider-man-viaggio-in-italia/4000-263593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248756/", + "id": 248756, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-27/4000-248756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248754/", + "id": 248754, + "name": "Mystic War!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-26-mystic-war/4000-248754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716012/", + "id": 716012, + "name": "Web 'n' Arrows", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-212-web-n-arrows/4000-716012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246656/", + "id": 246656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-26/4000-246656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385948/", + "id": 385948, + "name": "Зловещая шестерка", + "site_detail_url": "https://comicvine.gamespot.com/zloveschaya-shestyorka-1-wikiissue/4000-385948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240897/", + "id": 240897, + "name": "Another Door; Honor Thy Father; Stand Off; Norah's Last Night In NYC; J. Jonah Jameson - The Musical; American Hero; You Again", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-647-another-door-honor-thy-/4000-240897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-816073/", + "id": 816073, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-131/4000-816073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446824/", + "id": 446824, + "name": "A Lista", + "site_detail_url": "https://comicvine.gamespot.com/reinado-sombrio-especial-2-a-lista/4000-446824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383322/", + "id": 383322, + "name": "Признание Эммы Фрост", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-190-wikiissu/4000-383322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382536/", + "id": 382536, + "name": "Первая охота Крэйвен. Часть 2. Кризис личности!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-204-2/4000-382536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382535/", + "id": 382535, + "name": "Первая охота Крэйвен. Часть 3. Наследие", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-205-3/4000-382535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355527/", + "id": 355527, + "name": "It's an Amazing Life", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-29-its-an-amazing-life/4000-355527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307503/", + "id": 307503, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-defenders-2-volume-2/4000-307503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240290/", + "id": 240290, + "name": "One Shot", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-vampires-mdcu-1-one-shot/4000-240290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239993/", + "id": 239993, + "name": "Family Values", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four-4-family-values/4000-239993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239951/", + "id": 239951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-15/4000-239951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239856/", + "id": 239856, + "name": "Next Avengers, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/avengers-6-next-avengers-part-6/4000-239856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239035/", + "id": 239035, + "name": "Shadowland: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-511-shadowland-part-4/4000-239035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238578/", + "id": 238578, + "name": "Dear Logan; The Fabulous Frog-Man!; Silver Surfer; A Distraction; Dazzler in The After-Party; Red Skull; Spider-Man; A Civilized-Thing; Meanwhile... In The Park!!", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-ii-1-dear-logan-the-fabulous-frog-ma/4000-238578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238232/", + "id": 238232, + "name": "Magic Gone Berserk(er)!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-5-magic-gone-berserker/4000-238232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237208/", + "id": 237208, + "name": "The End is Nigh", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-1-the-end-is-nigh/4000-237208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551760/", + "id": 551760, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-4/4000-551760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300041/", + "id": 300041, + "name": "Un Momento de Silencio", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-19-un-momento-de-silencio/4000-300041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247810/", + "id": 247810, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-osborn-identity-1-tpb/4000-247810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246605/", + "id": 246605, + "name": "Book Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-246605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-243329/", + "id": 243329, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengersx-men-maximum-security-1-tpb/4000-243329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237207/", + "id": 237207, + "name": "Human Slavery For Beginners; Fear and Mister Dayton", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-back-in-quack-1-human-slavery-for-begin/4000-237207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235694/", + "id": 235694, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-6/4000-235694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235503/", + "id": 235503, + "name": "Eclipsed", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-moon-knight-2-eclipsed/4000-235503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234876/", + "id": 234876, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-2/4000-234876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234873/", + "id": 234873, + "name": "War in the Neighborhood", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-power-man-2-war-in-the-neighborhood/4000-234873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234657/", + "id": 234657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-super-heroes-1/4000-234657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233867/", + "id": 233867, + "name": "Origin of the Species, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-642-origin-of-the-species-p/4000-233867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232570/", + "id": 232570, + "name": "Chapter 3", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-3-chapter-3/4000-232570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232568/", + "id": 232568, + "name": "Homecoming; The Books of the Iron Fist; Welcome Home, Squirrel Girl!; Gnu Recruit", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger-1-homecoming-the-books-of-the-iron/4000-232568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248406/", + "id": 248406, + "name": "Ultimate Comics Spider-Man: Chameleons", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-chameleons-1-ultimate-c/4000-248406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540457/", + "id": 540457, + "name": "Son and Moon", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-211-son-and-moon/4000-540457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246609/", + "id": 246609, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234649/", + "id": 234649, + "name": "Part 4: Gods & Monsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-4-part-4-gods-mons/4000-234649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385916/", + "id": 385916, + "name": "Том 3. Свидание с супергероем", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-i-mary-jane-3-3/4000-385916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385881/", + "id": 385881, + "name": "Том 5. Месть Гоблина", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-izbrannoye-5-5/4000-385881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385615/", + "id": 385615, + "name": "Том 7. Безответственность", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-7-7/4000-385615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289794/", + "id": 289794, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-27/4000-289794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295679/", + "id": 295679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-78/4000-295679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244845/", + "id": 244845, + "name": "Amazing Spider-Man: One Moment in Time", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-one-moment-in-time-1-amazing-sp/4000-244845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265662/", + "id": 265662, + "name": "Thor by J. Michael Straczynski Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-j-michael-straczynski-omnibus-1-thor-by-j-/4000-265662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-243330/", + "id": 243330, + "name": "The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-1-the-heroic-age/4000-243330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232537/", + "id": 232537, + "name": "Part 3: Partner In Crime", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-3-part-3-partner-i/4000-232537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-815815/", + "id": 815815, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-130/4000-815815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726196/", + "id": 726196, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-1/4000-726196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443027/", + "id": 443027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-cable-masacre-2/4000-443027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402929/", + "id": 402929, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-10/4000-402929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383321/", + "id": 383321, + "name": "Не всем дано быть полицейским", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-189-wikiissu/4000-383321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383320/", + "id": 383320, + "name": "Кто следил?", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-188-wikiissu/4000-383320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382490/", + "id": 382490, + "name": "Трехсторонний конфликт", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-202-wikiissue/4000-382490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382489/", + "id": 382489, + "name": "Первая охота Крэйвен. Часть 1. Раздавить Паука!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-203-1/4000-382489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244450/", + "id": 244450, + "name": "Book Five", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-243645/", + "id": 243645, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-the-last-stand-1-tpb/4000-243645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-243328/", + "id": 243328, + "name": "Sneek Peeks - Amazing Spider-Man #648; Osbourn #1; Spider-Girl #1; Thunderstrike #1; She-Hulks #1; Captain America: Man Out of Time #1; Warriors Three #1; Iron Man/Thor #1; Generation Hope #1", + "site_detail_url": "https://comicvine.gamespot.com/november-2010-sneak-peeks-1-sneek-peeks-amazing-sp/4000-243328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238479/", + "id": 238479, + "name": "The Trophy Hunters, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-4-the-trophy/4000-238479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236703/", + "id": 236703, + "name": "The Return of the Three Dimensional Man, Pt. 6 / The Return of the Three Dimensional Man, Pt. 7 / The Return of the Three Dimensional Man, Pt. 8", + "site_detail_url": "https://comicvine.gamespot.com/atlas-5-the-return-of-the-three-dimensional-man-pt/4000-236703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236697/", + "id": 236697, + "name": "Week Five", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-one-month-to-live-5-week-five/4000-236697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236285/", + "id": 236285, + "name": "Origin of the Species, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-644-origin-of-the-species-p/4000-236285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235439/", + "id": 235439, + "name": "Tainted Love Part 6 of 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-14-tainted-love-part-6-of-6/4000-235439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235387/", + "id": 235387, + "name": "Battle for the Future", + "site_detail_url": "https://comicvine.gamespot.com/avengers-5-battle-for-the-future/4000-235387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234856/", + "id": 234856, + "name": "The EX-Terminators Part 2; Arms Against A Sea of Troubles", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-12-the-ex-terminators-part-2-arm/4000-234856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234685/", + "id": 234685, + "name": "Bizarre Love Triangle", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four-3-bizarre-love-triangle/4000-234685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234676/", + "id": 234676, + "name": "Origin of the Species, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-643-origin-of-the-species-p/4000-234676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234675/", + "id": 234675, + "name": "Another Fine Mess, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-3-another-fine-me/4000-234675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234264/", + "id": 234264, + "name": "Week Two", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-one-month-to-live-2-week-two/4000-234264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233761/", + "id": 233761, + "name": "The Ancient One Throws Down!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-4-the-ancient-one-throws-down/4000-233761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232947/", + "id": 232947, + "name": "Week One", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-one-month-to-live-1-week-one/4000-232947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232535/", + "id": 232535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-2/4000-232535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-624364/", + "id": 624364, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-civil-war-1/4000-624364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612211/", + "id": 612211, + "name": "Spiderman: Integral Frank Miller", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-6-spiderman-integral-f/4000-612211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595427/", + "id": 595427, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tormenta-temporal-2009-2099-1/4000-595427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545091/", + "id": 545091, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-la-saga-del-clon-1/4000-545091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-541399/", + "id": 541399, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-noir-los-ojos-sin-rostro-1/4000-541399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241163/", + "id": 241163, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-world-war-hulks-1-hc/4000-241163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241160/", + "id": 241160, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-forever-1-hc-tpb/4000-241160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241083/", + "id": 241083, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-1-hc/4000-241083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239295/", + "id": 239295, + "name": "Tomorrow Dies Today", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-tomorrow-dies-today-1-tomorrow-/4000-239295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232053/", + "id": 232053, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-5/4000-232053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231684/", + "id": 231684, + "name": "The End of Spidergirl!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-end-1-the-end-of-spidergirl/4000-231684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231669/", + "id": 231669, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-mystery-2/4000-231669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230719/", + "id": 230719, + "name": "For Thanos!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-1-for-thanos/4000-230719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230364/", + "id": 230364, + "name": "Extra Life", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-power-man-1-extra-life/4000-230364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228974/", + "id": 228974, + "name": "The Invisible Hand!; The Final Battle!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-4-the-invisible-hand-the-f/4000-228974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228973/", + "id": 228973, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-imperative-3/4000-228973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227712/", + "id": 227712, + "name": "Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-2-chapter-2/4000-227712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540458/", + "id": 540458, + "name": "Power Cut", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-210-power-cut/4000-540458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-242811/", + "id": 242811, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-3-volume-3/4000-242811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241155/", + "id": 241155, + "name": "Secret Warriors: Last Ride of the Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-last-ride-of-the-howling-commandos/4000-241155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239857/", + "id": 239857, + "name": "Spider-Man Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-1-spider-man-saga/4000-239857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258538/", + "id": 258538, + "name": "Ghost Rider by Jason Aaron Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-by-jason-aaron-omnibus-1-ghost-rider-b/4000-258538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240122/", + "id": 240122, + "name": "Amazing Spider-Man: Grim Hunt", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-grim-hunt-1-amazing-spider-man-/4000-240122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239815/", + "id": 239815, + "name": "World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-world-war-hulks-1-world-war-hulks/4000-239815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239679/", + "id": 239679, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-ghost-rider-4-volume-4/4000-239679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230329/", + "id": 230329, + "name": "Part 2: Warrior of Heaven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-2-part-2-warrior-o/4000-230329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248757/", + "id": 248757, + "name": "The Dark Avengers Must Battle... The Hordes of Hellfire!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-24-the-dark-avengers-must-bat/4000-248757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295796/", + "id": 295796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-32/4000-295796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295678/", + "id": 295678, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-77/4000-295678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411424/", + "id": 411424, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-15-silver-sable/4000-411424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716085/", + "id": 716085, + "name": "When Titans Clash", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-209-when-titans-/4000-716085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227821/", + "id": 227821, + "name": "Part 1: Last Gun on Earth", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-1-part-1-last-gun-/4000-227821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-815675/", + "id": 815675, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-129/4000-815675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807584/", + "id": 807584, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-11/4000-807584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442282/", + "id": 442282, + "name": "Nacidos... ¡Para morir!", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-exiliados-23-nacidos-para-morir/4000-442282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385974/", + "id": 385974, + "name": "Секретная война", + "site_detail_url": "https://comicvine.gamespot.com/sekretnaya-voyna-1-wikiissue/4000-385974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385946/", + "id": 385946, + "name": "Абсолютная сила", + "site_detail_url": "https://comicvine.gamespot.com/absolyutnaya-sila-1-wikiissue/4000-385946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385159/", + "id": 385159, + "name": "Утопия. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-196-3/4000-385159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383319/", + "id": 383319, + "name": "Выбор", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-187-wikiissu/4000-383319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383318/", + "id": 383318, + "name": "Глушилка!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-186-wikiissu/4000-383318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382492/", + "id": 382492, + "name": "Другой Человек-Паук", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-200--/4000-382492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382491/", + "id": 382491, + "name": "Значит, заходит Человек-Паук в бар, и...", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-201--/4000-382491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355523/", + "id": 355523, + "name": "The Rules of the Game/Graduation Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-26-the-rules-of-the-gamegraduation-d/4000-355523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292192/", + "id": 292192, + "name": "Spider-Man - Augen ohne Gesicht", + "site_detail_url": "https://comicvine.gamespot.com/marvel-noir-6-spider-man-augen-ohne-gesicht/4000-292192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291786/", + "id": 291786, + "name": "Marvels im Focus der Kamera", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-88-marvels-im-focus-der-kamera/4000-291786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266652/", + "id": 266652, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fantastic-four-1-hc/4000-266652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-262940/", + "id": 262940, + "name": "Another Fine Mess Part One", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-directors-cut-1-a/4000-262940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246658/", + "id": 246658, + "name": "The Thousand Deaths of the Fantastic Four!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-10-the-thousand-deaths-o/4000-246658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241158/", + "id": 241158, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-1-tpb/4000-241158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241089/", + "id": 241089, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end-1-hctpb/4000-241089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241087/", + "id": 241087, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/doomwar-1-hc/4000-241087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240131/", + "id": 240131, + "name": "Crime and Punishment", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-crime-and-punishment-1-cr/4000-240131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238082/", + "id": 238082, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-second-coming-revelations-1-hctpb/4000-238082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233834/", + "id": 233834, + "name": "One Moment in Time Chapter Four: Something Blue", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-641-one-moment-in-time-chap/4000-233834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232785/", + "id": 232785, + "name": "The Trophy Hunters, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-3-the-trophy/4000-232785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232017/", + "id": 232017, + "name": "America Slayed", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-4-america/4000-232017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231595/", + "id": 231595, + "name": "Only the Good Die Young", + "site_detail_url": "https://comicvine.gamespot.com/avengers-4-only-the-good-die-young/4000-231595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230325/", + "id": 230325, + "name": "Mary Jane Watson & The Black Cat Are The Ex-Terminators part 1; Jackpot in Double-Edged Sword", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-11-mary-jane-watson-the-black-ca/4000-230325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230322/", + "id": 230322, + "name": "Yeah, It's On!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-3-yeah-its-on/4000-230322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230259/", + "id": 230259, + "name": "One Moment in Time Chapter Three: Something Borrowed", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-640-one-moment-in-time-chap/4000-230259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-229060/", + "id": 229060, + "name": "Tainted Love: Part 5 of 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-13-tainted-love-part-5-of-6/4000-229060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228986/", + "id": 228986, + "name": "Sons of Wrath; Act 3: Slave to Memory", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-611-sons-of-wrath-act-3-slave-/4000-228986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227832/", + "id": 227832, + "name": "Symbiosis", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four-2-symbiosis/4000-227832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-624326/", + "id": 624326, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-civil-war-preludio-1/4000-624326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612206/", + "id": 612206, + "name": "La Patrulla-X: La saga de Fénix Oscura", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-4-la-patrulla-x-la-sag/4000-612206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-612203/", + "id": 612203, + "name": "Spiderman: Vuelta a casa", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-marvel-heroes-1-spiderman-vuelta-a-c/4000-612203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575020/", + "id": 575020, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-oscura-1/4000-575020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551759/", + "id": 551759, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-3/4000-551759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300040/", + "id": 300040, + "name": "¡Justicia Ciega!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-18-justicia-ciega/4000-300040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290862/", + "id": 290862, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-33/4000-290862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287318/", + "id": 287318, + "name": "Die Liste 2", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-special-7-die-liste-2/4000-287318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248783/", + "id": 248783, + "name": "THE MIGHTY AVENGERS and THE INHUMANS", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-14-the-mighty-avengers-/4000-248783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248781/", + "id": 248781, + "name": "Fists of Fury!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-22-fists-of-fury/4000-248781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237420/", + "id": 237420, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-luke-cage-town-without-pity-1-tpb/4000-237420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236006/", + "id": 236006, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fever-1-tpb/4000-236006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232983/", + "id": 232983, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-232983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227711/", + "id": 227711, + "name": "Doomwar, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/doomwar-6-doomwar-conclusion/4000-227711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227374/", + "id": 227374, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-4/4000-227374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227335/", + "id": 227335, + "name": "Identity Theft, Parts 1 and 2", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-5-identity-theft-parts-1-and-2/4000-227335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227103/", + "id": 227103, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks-spider-man-vs-thor-2-part-2/4000-227103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226893/", + "id": 226893, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-mystery-1/4000-226893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225780/", + "id": 225780, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/age-of-heroes-3/4000-225780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224825/", + "id": 224825, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks-spider-man-vs-thor-1-part-1/4000-224825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223400/", + "id": 223400, + "name": "Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-1-chapter-1/4000-223400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261470/", + "id": 261470, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-amazing-1-tpb/4000-261470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334840/", + "id": 334840, + "name": "Il Guanto dell'Infinito", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-80-il-guanto-dellinfinit/4000-334840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237421/", + "id": 237421, + "name": "Civil War: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-avengers-1-civil-war-avengers/4000-237421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237408/", + "id": 237408, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-3-book-thre/4000-237408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226655/", + "id": 226655, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-ultimate-guide-1-hc/4000-226655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248761/", + "id": 248761, + "name": "Secrets from Beyond the Grave!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-21-secrets-from-beyond-/4000-248761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248760/", + "id": 248760, + "name": "Who Are the Dark Avengers?", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-23-who-are-the-dark-avengers/4000-248760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248759/", + "id": 248759, + "name": "The Funeral of the Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-9-the-funeral-of-the-inv/4000-248759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716084/", + "id": 716084, + "name": "Ultron Reborn", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-208-ultron-rebor/4000-716084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264613/", + "id": 264613, + "name": "Volume Twelve", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-12-volum/4000-264613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256639/", + "id": 256639, + "name": "The FINAL BATTLE!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-22-the-final-battle/4000-256639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246608/", + "id": 246608, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236460/", + "id": 236460, + "name": "Spider-Man: The Gauntlet: Lizard", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-lizard-1-spider-man-the-ga/4000-236460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235302/", + "id": 235302, + "name": "Siege: Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/siege-mighty-avengers-1-siege-mighty-avengers/4000-235302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289793/", + "id": 289793, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-26/4000-289793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295795/", + "id": 295795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-31/4000-295795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235301/", + "id": 235301, + "name": "Siege: Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/siege-dark-avengers-1-siege-dark-avengers/4000-235301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248779/", + "id": 248779, + "name": "The Skrull God!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-13-the-skrull-god/4000-248779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248762/", + "id": 248762, + "name": "Shock Tactics!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-20-shock-tactics/4000-248762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-815484/", + "id": 815484, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-128/4000-815484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385157/", + "id": 385157, + "name": "Утопия. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-194-1/4000-385157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383317/", + "id": 383317, + "name": "Плащ и Кинжал", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-185-wikiissu/4000-383317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383316/", + "id": 383316, + "name": "Почему я пропустил уроки?", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-184-wikiissu/4000-383316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382494/", + "id": 382494, + "name": "Питер Паркер - Папарацци. Часть 2. Абсолютное безуми", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-198--2/4000-382494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382493/", + "id": 382493, + "name": "Питер Паркер - папарацци. Часть 3. Последний снимок", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-199--3/4000-382493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306225/", + "id": 306225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-164/4000-306225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270630/", + "id": 270630, + "name": "Dark Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-dark-phoenix-saga-complete-collection-1-dark/4000-270630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236768/", + "id": 236768, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-4-volume-4/4000-236768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235152/", + "id": 235152, + "name": "Book 5", + "site_detail_url": "https://comicvine.gamespot.com/exiles-ultimate-collection-5-book-5/4000-235152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233511/", + "id": 233511, + "name": "New Avengers: Siege", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-siege-1-new-avengers-siege/4000-233511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227715/", + "id": 227715, + "name": "One Moment in Time Chapter Two: Something New", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-639-one-moment-in-time-chap/4000-227715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227333/", + "id": 227333, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-magazine-1/4000-227333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227102/", + "id": 227102, + "name": "The Trophy Hunters, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-2-the-trophy/4000-227102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226907/", + "id": 226907, + "name": "Tomorrow Dies Today, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-15-tomorrow-dies-today-conclusi/4000-226907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226227/", + "id": 226227, + "name": "Side Effects", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-3-side-ef/4000-226227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226220/", + "id": 226220, + "name": "The Extremist, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-10-the-extremist-part-3/4000-226220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225782/", + "id": 225782, + "name": "All Eyes on Cage!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-2-all-eyes-on-cage/4000-225782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225675/", + "id": 225675, + "name": "One Moment In Time Chapter One: Something Old", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-638-one-moment-in-time-chap/4000-225675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225674/", + "id": 225674, + "name": "Menace from Beyond Time", + "site_detail_url": "https://comicvine.gamespot.com/avengers-3-menace-from-beyond-time/4000-225674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224649/", + "id": 224649, + "name": "Another Fine Mess, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-2-another-fine-me/4000-224649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224565/", + "id": 224565, + "name": "The Grim Hunt, Conclusion; Hunting the Hunter Part Four: Burning Bright", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-637-the-grim-hunt-conclusio/4000-224565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224512/", + "id": 224512, + "name": "A Night on the Town !", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2-3-a-night-on-the-town/4000-224512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223500/", + "id": 223500, + "name": "Crisis on Campus", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four-1-crisis-on-campus/4000-223500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223380/", + "id": 223380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-1/4000-223380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223277/", + "id": 223277, + "name": "The Grim Hunt, Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-636-the-grim-hunt-chapter-t/4000-223277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-393582/", + "id": 393582, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/udon-s-art-of-capcom-2-volume-2/4000-393582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291319/", + "id": 291319, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-56/4000-291319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287317/", + "id": 287317, + "name": "Die Liste (1 von 2)", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-special-6-die-liste-1-von-2/4000-287317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246731/", + "id": 246731, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-agent-of-sword-1-hctpb/4000-246731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221891/", + "id": 221891, + "name": "X-Men a Go-Go!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-saga-1-x-men-a-go-go/4000-221891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221877/", + "id": 221877, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-ham-special-25th-anniversary-is/4000-221877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221150/", + "id": 221150, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-3/4000-221150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220723/", + "id": 220723, + "name": "Spider-Girls Gone Wild! Part Four", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-4-spider-girls-gone-wild-part-four/4000-220723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219600/", + "id": 219600, + "name": "... Who Neds Gravity?; Heroic Rage; The Young Masters; Semper Fidelis", + "site_detail_url": "https://comicvine.gamespot.com/age-of-heroes-2-who-neds-gravity-heroic-rage-the-y/4000-219600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218749/", + "id": 218749, + "name": "Part Three: The Dead Web", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fever-3-part-three-the-dead-web/4000-218749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218554/", + "id": 218554, + "name": "Collision", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-the-moon-knight-9-collision/4000-218554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217880/", + "id": 217880, + "name": "In the Shadow of Death", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-2-in-the-shadow-of-death/4000-217880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716083/", + "id": 716083, + "name": "Octavius Max", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-207-octavius-max/4000-716083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232116/", + "id": 232116, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-230/4000-232116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219571/", + "id": 219571, + "name": "Unbound", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-610-unbound/4000-219571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300391/", + "id": 300391, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-115/4000-300391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389709/", + "id": 389709, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-18/4000-389709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418057/", + "id": 418057, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-1-tpb/4000-418057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232338/", + "id": 232338, + "name": "Scandalous!", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-17-scandalous/4000-232338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295676/", + "id": 295676, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-75/4000-295676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231136/", + "id": 231136, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/siege-avengers-the-initiative-1-hc-tpb/4000-231136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716082/", + "id": 716082, + "name": "Mean Streets", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-206-mean-streets/4000-716082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231133/", + "id": 231133, + "name": "Spider-Man: The Gauntlet: Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-juggernaut-hardcover-1-spi/4000-231133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-815268/", + "id": 815268, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-127/4000-815268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692298/", + "id": 692298, + "name": "TPB/HC", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-1-tpbhc/4000-692298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383315/", + "id": 383315, + "name": "Похищенная", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-183-wikiissu/4000-383315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383314/", + "id": 383314, + "name": "Чувство ответственности", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-182-wikiissu/4000-383314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383313/", + "id": 383313, + "name": "Перехитрить Сверхмозга", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-181-wikiissu/4000-383313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382496/", + "id": 382496, + "name": "Урод третий", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-196-wikiissue/4000-382496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382495/", + "id": 382495, + "name": "Питер Паркер - папарацци. Часть 1.Эксклюзивный $нимок", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-197--1/4000-382495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355521/", + "id": 355521, + "name": "Crouching Spider/Hidden Army", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-24-crouching-spiderhidden-army/4000-355521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307146/", + "id": 307146, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-104/4000-307146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284148/", + "id": 284148, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-20/4000-284148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266224/", + "id": 266224, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine-3/4000-266224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234899/", + "id": 234899, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno-crossovers-1-hc/4000-234899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232980/", + "id": 232980, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-3-volume-t/4000-232980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231976/", + "id": 231976, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2-ultimate-collection-1-tpb/4000-231976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228231/", + "id": 228231, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-the-savage-she-hulks-1-tpb/4000-228231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222364/", + "id": 222364, + "name": "The Other Son", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-2-the-oth/4000-222364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222261/", + "id": 222261, + "name": "Six Weeks Later", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2-2-six-weeks-later/4000-222261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221958/", + "id": 221958, + "name": "Gonna Leave Me Wasting Away...", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-luke-cage-3-gonna-leave-me-wasting-aw/4000-221958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220843/", + "id": 220843, + "name": "Tomorrow Dies Today, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-14-tomorrow-dies-today-part-4/4000-220843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220746/", + "id": 220746, + "name": "Crime and Punishment Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers-10-crime-and-punishment-part-4/4000-220746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220585/", + "id": 220585, + "name": "Wonder Man Attacks?!!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2-wonder-man-attacks/4000-220585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220583/", + "id": 220583, + "name": "The Grim Hunt, Chapter Two; Hunting the Hunter Part Two: A Prophecy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-635-the-grim-hunt-chapter-t/4000-220583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219572/", + "id": 219572, + "name": "The Extremist Part 2", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-9-the-extremist-part-2/4000-219572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219565/", + "id": 219565, + "name": "The Trophy Hunters, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-1-the-trophy/4000-219565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219558/", + "id": 219558, + "name": "Possession", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-1-possession/4000-219558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219556/", + "id": 219556, + "name": "The Grim Hunt, Chapter One; Hunting the Hunter, Part One: Adrift; Spidey Sundays", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-634-the-grim-hunt-chapter-o/4000-219556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218355/", + "id": 218355, + "name": "Tainted Love: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-11-tainted-love-part-3/4000-218355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217927/", + "id": 217927, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-mgc-546/4000-217927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-630991/", + "id": 630991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-spiderman-el-otro-1/4000-630991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574821/", + "id": 574821, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-senor-negativo-1/4000-574821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-551758/", + "id": 551758, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-2/4000-551758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295876/", + "id": 295876, + "name": "¡Spiderman y los 4 Fantásticos!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-17-spiderman-y-los-4-fant/4000-295876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295857/", + "id": 295857, + "name": "Cara a cara con el clon", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-7-cara-a-cara-con-el/4000-295857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291318/", + "id": 291318, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-55/4000-291318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235283/", + "id": 235283, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/siege-x-men-1-hctpb/4000-235283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224540/", + "id": 224540, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-vs-1-hctpb/4000-224540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216556/", + "id": 216556, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-2/4000-216556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216451/", + "id": 216451, + "name": "Spider-Girls Gone Wild! Part Three", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-3-spider-girls-gone-wild-part-three/4000-216451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216176/", + "id": 216176, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-imperative-ignition-1/4000-216176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216118/", + "id": 216118, + "name": "The Spider And The Shield!; Make Mine Marvel!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-37-the-spider-and-th/4000-216118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214896/", + "id": 214896, + "name": "Thumb On The Pulse; A Date With The Doctor; Diplomatic Incident; New York State Of Mind", + "site_detail_url": "https://comicvine.gamespot.com/age-of-heroes-1-thumb-on-the-pulse-a-date-with-the/4000-214896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214878/", + "id": 214878, + "name": "Galacta [or, \"The World-Eater's Daughter\"]", + "site_detail_url": "https://comicvine.gamespot.com/galacta-daughter-of-galactus-1-galacta-or-the-worl/4000-214878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213843/", + "id": 213843, + "name": "Unexpected Host", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-forever-3-unexpected-host/4000-213843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213629/", + "id": 213629, + "name": "The Curse Of The Yellow Claw; Desperate Measures; One Night Only; Worst There Is; Birthday Boy; Puny Little Man; Hunger", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-900-the-curse-of-the-yellow-claw-despera/4000-213629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213493/", + "id": 213493, + "name": "Whatever Happened to the Hood?", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-finale-1-whatever-happened-to-the-hoo/4000-213493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212092/", + "id": 212092, + "name": "Part Two: Strange Spiders", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fever-2-part-two-strange-spiders/4000-212092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212049/", + "id": 212049, + "name": "The Root Of All Annoyance; Memories; All the World's A Stage", + "site_detail_url": "https://comicvine.gamespot.com/many-loves-of-the-amazing-spider-man-1-the-root-of/4000-212049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385915/", + "id": 385915, + "name": "Том 2. Школьный бал", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-i-mary-jane-2-2/4000-385915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385880/", + "id": 385880, + "name": "Том 4. Человек-Паук и Дардевил", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-izbrannoye-4-4-/4000-385880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235163/", + "id": 235163, + "name": "Siege: Battlefield", + "site_detail_url": "https://comicvine.gamespot.com/siege-battlefield-1-siege-battlefield/4000-235163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385943/", + "id": 385943, + "name": "1602", + "site_detail_url": "https://comicvine.gamespot.com/1602-1-1602/4000-385943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297093/", + "id": 297093, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-16/4000-297093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256642/", + "id": 256642, + "name": "The FALL Of SHIELD!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-20-the-fall-of-shield/4000-256642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230949/", + "id": 230949, + "name": "Siege: Embedded", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded-1-siege-embedded/4000-230949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213441/", + "id": 213441, + "name": "Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/hulk-22-dogs-of-war/4000-213441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385879/", + "id": 385879, + "name": "Том 3. История Ящера", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-izbrannoye-3-3/4000-385879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385551/", + "id": 385551, + "name": "Том 6. Блокбастер", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-luchshiye-syuzhety-6-6/4000-385551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417690/", + "id": 417690, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2010-07/4000-417690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716081/", + "id": 716081, + "name": "Sandman Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-205-sandman-stri/4000-716081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231116/", + "id": 231116, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege-1-siege/4000-231116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228286/", + "id": 228286, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-ultimate-collection-1-tpb/4000-228286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228108/", + "id": 228108, + "name": "Silver Surfer: Rebirth of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-rebirth-of-thanos-1-silver-surfer-re/4000-228108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289792/", + "id": 289792, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-25/4000-289792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385614/", + "id": 385614, + "name": "Том 6. Наследие", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-6-6/4000-385614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295794/", + "id": 295794, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-30/4000-295794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216200/", + "id": 216200, + "name": "The Future Foundation", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-579-the-future-foundation/4000-216200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297092/", + "id": 297092, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-15/4000-297092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224982/", + "id": 224982, + "name": "Vengeance of Moon Knight: Shock and Awe", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-moon-knight-shock-and-awe-1-vengeance/4000-224982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814674/", + "id": 814674, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-126/4000-814674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425190/", + "id": 425190, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-s-siege-1-tpb/4000-425190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383312/", + "id": 383312, + "name": "Экскурсия класса мисс Исааксон", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-180-wikiissu/4000-383312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383311/", + "id": 383311, + "name": "Кукольный отряд!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-179-wikiissu/4000-383311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382498/", + "id": 382498, + "name": "Последний зимний день", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-194-wikiissue/4000-382498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382497/", + "id": 382497, + "name": "Конец зимы", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-195-wikiissue/4000-382497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291784/", + "id": 291784, + "name": "Captain America Reborn", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-86-captain-america-reborn/4000-291784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244430/", + "id": 244430, + "name": "Book Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231868/", + "id": 231868, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-1-tpb/4000-231868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219553/", + "id": 219553, + "name": "Shed Part Four", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-633-shed-part-four/4000-219553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216695/", + "id": 216695, + "name": "Part Four", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy-4-part-four/4000-216695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216275/", + "id": 216275, + "name": "Tomorrow Dies Today, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-13-tomorrow-dies-today-part-3/4000-216275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216005/", + "id": 216005, + "name": "Shed Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-632-shed-part-three/4000-216005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214935/", + "id": 214935, + "name": "Patriot Act", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-1-patriot/4000-214935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214880/", + "id": 214880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics-1/4000-214880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214810/", + "id": 214810, + "name": "Next Avengers: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1-next-avengers-part-1/4000-214810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214699/", + "id": 214699, + "name": "In Which We Are Introduced To Certain Of Our Players...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-mgc-1-in-which-we-are-introduced-to-ce/4000-214699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213799/", + "id": 213799, + "name": "The Extremist, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-8-the-extremist-part-1/4000-213799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213496/", + "id": 213496, + "name": "Tainted Love: Part 2 of 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-10-tainted-love-part-2-of-6/4000-213496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213458/", + "id": 213458, + "name": "Siege: Embedded, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded-4-siege-embedded-part-four/4000-213458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213457/", + "id": 213457, + "name": "Shed Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-631-shed-part-two/4000-213457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213449/", + "id": 213449, + "name": "The Fallen", + "site_detail_url": "https://comicvine.gamespot.com/siege-4-the-fallen/4000-213449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212014/", + "id": 212014, + "name": "Another Fine Mess, Part One", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-1-another-fine-me/4000-212014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211974/", + "id": 211974, + "name": "Shed Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-630-shed-part-one/4000-211974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207310/", + "id": 207310, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine-1/4000-207310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-575107/", + "id": 575107, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-spiderman-oscuro-1/4000-575107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545093/", + "id": 545093, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-reinado-oscuro-la-lista-1/4000-545093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258714/", + "id": 258714, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-dan-jurgens-and-john-romita-jr-3-volume-3/4000-258714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244342/", + "id": 244342, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus-by-ed-brubaker-2-volume-two/4000-244342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240156/", + "id": 240156, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-x-force-1-volume-4/4000-240156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232051/", + "id": 232051, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-1-tpb/4000-232051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231809/", + "id": 231809, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vision-and-the-scarlet-witch-a-year-in-th/4000-231809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227377/", + "id": 227377, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-danny-ketch-classic-2-volume-two/4000-227377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211668/", + "id": 211668, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-1/4000-211668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211117/", + "id": 211117, + "name": "Spider-Girls Gone Wild! Part Two", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-2-spider-girls-gone-wild-part-two/4000-211117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210889/", + "id": 210889, + "name": "All the Pretty Little Hulkpools!", + "site_detail_url": "https://comicvine.gamespot.com/hulked-out-heroes-2-all-the-pretty-little-hulkpool/4000-210889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208680/", + "id": 208680, + "name": "The Savage Sex, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-the-savage-she-hulks-2-the-savag/4000-208680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208663/", + "id": 208663, + "name": "Earth's Mightiest Super Heroes, Pt. 4; My Dinner With Gorilla Man", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-atlas-4-earths-mightiest-super-heroes-/4000-208663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207760/", + "id": 207760, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-origin-of-the-hunter-1/4000-207760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204625/", + "id": 204625, + "name": "Part One: Insecticide", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fever-1-part-one-insecticide/4000-204625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201709/", + "id": 201709, + "name": "Whatever A Spider Can, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-21-whatever-a-spider-can-part-three/4000-201709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716080/", + "id": 716080, + "name": "Smash & Grab", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-204-smash-and-gr/4000-716080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297091/", + "id": 297091, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14/4000-297091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246607/", + "id": 246607, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232337/", + "id": 232337, + "name": "Spider-Man Vs. The Sinister Six (Plus One...)", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-16-spider-man-vs-the-si/4000-232337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223684/", + "id": 223684, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-2-book-two/4000-223684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222978/", + "id": 222978, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-secret-wars-1-tpb/4000-222978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-434910/", + "id": 434910, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-67/4000-434910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222243/", + "id": 222243, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-monkey-business-1-volume-4/4000-222243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219893/", + "id": 219893, + "name": "American Eagle to Uranus", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-up/4000-219893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417710/", + "id": 417710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2010-06/4000-417710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295793/", + "id": 295793, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-29/4000-295793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295674/", + "id": 295674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-73/4000-295674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297090/", + "id": 297090, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13/4000-297090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385914/", + "id": 385914, + "name": "Том 1. В кругу друзей", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-i-mary-jane-1-1/4000-385914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385620/", + "id": 385620, + "name": "Битва чемпионов", + "site_detail_url": "https://comicvine.gamespot.com/bitva-chempionov-1-wikiissue/4000-385620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716079/", + "id": 716079, + "name": "Armour-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-203-armour-geddo/4000-716079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814527/", + "id": 814527, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-125/4000-814527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443688/", + "id": 443688, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-presents-jackpot-1-tpb/4000-443688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383310/", + "id": 383310, + "name": "Три желания!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-178-wikiissu/4000-383310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383309/", + "id": 383309, + "name": "В плену любви!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-177-wikiissu/4000-383309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382500/", + "id": 382500, + "name": "Сожженный!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-192-wikiissue/4000-382500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382499/", + "id": 382499, + "name": "Снег в апреле!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-193-wikiissue/4000-382499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355519/", + "id": 355519, + "name": "Live and Dangerous!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-22-live-and-dangerous/4000-355519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342690/", + "id": 342690, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spawn-origins-collection-deluxe-edition-1-volume-1/4000-342690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275713/", + "id": 275713, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-5-volume-5/4000-275713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223844/", + "id": 223844, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-ultimate-collection-1-tpb/4000-223844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222980/", + "id": 222980, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii-1-volume-2/4000-222980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222329/", + "id": 222329, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-contest-1-hctpb/4000-222329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213072/", + "id": 213072, + "name": "The Hammer Falls, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-35-the-hammer-falls-conclu/4000-213072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211684/", + "id": 211684, + "name": "Civil War 1", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-mgc-1-civil-war-1/4000-211684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210241/", + "id": 210241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/siege-secret-warriors-1/4000-210241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210222/", + "id": 210222, + "name": "With Greater Power", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-629-with-greater-power/4000-210222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210217/", + "id": 210217, + "name": "WWJVDD (What Would Janet Van Dyne Do?)", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-36-wwjvdd-what-would-janet-van/4000-210217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210216/", + "id": 210216, + "name": "A New Dawn...", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-64-a-new-dawn/4000-210216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208808/", + "id": 208808, + "name": "Breakout!, Part One", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-mgc-1-breakout-part-one/4000-208808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208752/", + "id": 208752, + "name": "Forbush Man: Forbush Kills!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-who-wont-wield-the-shield-1-forbus/4000-208752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208685/", + "id": 208685, + "name": "Tainted Love: Part 1 of 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-9-tainted-love-part-1-of-6/4000-208685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208661/", + "id": 208661, + "name": "2nd Coming - Revelations", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-204-2nd-coming-revelations/4000-208661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208654/", + "id": 208654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/siege-spider-man-1/4000-208654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208548/", + "id": 208548, + "name": "Vengeance is Mine", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-628-vengeance-is-mine/4000-208548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207651/", + "id": 207651, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy-3-part-three/4000-207651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207345/", + "id": 207345, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-3-part-three/4000-207345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-206819/", + "id": 206819, + "name": "Gauntlet Origins: Kraven; Here Comes Wild Card; Fashion Spread", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-7-gauntlet-origins-kraven-here-c/4000-206819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204632/", + "id": 204632, + "name": "Town Without Pity", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-luke-cage-1-town-without-pity/4000-204632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-570055/", + "id": 570055, + "name": "Pro Patria Mori", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-1-pro-patria-mori/4000-570055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-412394/", + "id": 412394, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-complete-invincible-library-2-vol-2/4000-412394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298045/", + "id": 298045, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spiderman-1/4000-298045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295875/", + "id": 295875, + "name": "¡La serpiente se alza!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-16-la-serpiente-se-alza/4000-295875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292979/", + "id": 292979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-zodiaco-1/4000-292979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291316/", + "id": 291316, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-53/4000-291316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-229935/", + "id": 229935, + "name": "volume 2", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-fall-of-the-hulks-1-volume-2/4000-229935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223755/", + "id": 223755, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-assault-on-new-olympus-1-hctpb/4000-223755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222331/", + "id": 222331, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-death-of-captain-marvel-1-hctpb/4000-222331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222241/", + "id": 222241, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-real-clone-saga-1-hctpb/4000-222241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216448/", + "id": 216448, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-spider-man-1-hc-tpb/4000-216448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212439/", + "id": 212439, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men-1-hc-tpb/4000-212439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202663/", + "id": 202663, + "name": "The She-Hulk Story That's A Riff On Christmas Carol; Ladies' Night", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-sensational-1-the-she-hulk-story-thats-a-/4000-202663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201940/", + "id": 201940, + "name": "Final Issue!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-61-final-issue/4000-201940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201849/", + "id": 201849, + "name": "Spider-Girls Gone Wild! Part One", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-1-spider-girls-gone-wild-part-one/4000-201849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201338/", + "id": 201338, + "name": "Part Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-secret-wars-4-part-four/4000-201338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200995/", + "id": 200995, + "name": "Earth's Mightiest Super Heroes, Pt. 3; Hey, Venus!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-atlas-3-earths-mightiest-super-heroes-/4000-200995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200993/", + "id": 200993, + "name": "Agent Of S.W.O.R.D., Part 7", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-7-agent-of-sword-part-7/4000-200993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200990/", + "id": 200990, + "name": "Shock and Awe: Chapter 6: Knight Falls", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-the-moon-knight-6-shock-and-awe-chapt/4000-200990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200191/", + "id": 200191, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/breaking-into-comics-the-marvel-way-1/4000-200191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297089/", + "id": 297089, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-297089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256638/", + "id": 256638, + "name": "The FALL Of IRON MAN!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-18-the-fall-of-iron-man/4000-256638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216539/", + "id": 216539, + "name": "Identity Theft, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-15-identity-theft-part-/4000-216539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216449/", + "id": 216449, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-216449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216424/", + "id": 216424, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-assemble-1-hc/4000-216424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201038/", + "id": 201038, + "name": "Endgame; Big, Red, and Deadly!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-608-endgame-big-red-and-deadly/4000-201038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216551/", + "id": 216551, + "name": "Spider-Man: The Gauntlet: Vulture and Morbius", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-vulture-and-morbius-hardco/4000-216551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212305/", + "id": 212305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-grim-hunt-the-kraven-saga-1/4000-212305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289791/", + "id": 289791, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-24/4000-289791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540459/", + "id": 540459, + "name": "Armour Wars", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-202-armour-wars/4000-540459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297088/", + "id": 297088, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-11/4000-297088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295673/", + "id": 295673, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-72/4000-295673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213811/", + "id": 213811, + "name": "Identity Theft, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-14-identity-theft-part-/4000-213811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385613/", + "id": 385613, + "name": "Том 5. Самозванец", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-5-5/4000-385613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385878/", + "id": 385878, + "name": "Том 2. Обратный отсчет!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-izbrannoye-2-2/4000-385878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385622/", + "id": 385622, + "name": "Гражданская Война", + "site_detail_url": "https://comicvine.gamespot.com/grazhdanskaya-voyna-1-wikiissue/4000-385622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921216/", + "id": 921216, + "name": "Spiderman: Integral Frank Miller", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-6-spiderman-integral-frank-miller/4000-921216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814400/", + "id": 814400, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-124/4000-814400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383308/", + "id": 383308, + "name": "Сержант Фьюри и его Воющие Коммандо!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-176-wikiissu/4000-383308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383307/", + "id": 383307, + "name": "Ты сведешь меня с ума!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-175-wikiissu/4000-383307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382501/", + "id": 382501, + "name": "Безумный!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-191-wikiissue/4000-382501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284133/", + "id": 284133, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-5/4000-284133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252045/", + "id": 252045, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-4/4000-252045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251564/", + "id": 251564, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-6/4000-251564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218835/", + "id": 218835, + "name": "House Of M: No More Mutants", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-no-more-mutants-1-house-of-m-no-more-mu/4000-218835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212706/", + "id": 212706, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-i-am-an-avenger-1-volume-1/4000-212706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207323/", + "id": 207323, + "name": "The New Avengers #1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-80-the-new-avengers-1/4000-207323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202575/", + "id": 202575, + "name": "Something Can Stop the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-627-something-can-stop-the-/4000-202575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201706/", + "id": 201706, + "name": "The Sting", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-626-the-sting/4000-201706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201704/", + "id": 201704, + "name": "Avengers Uncaged!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-63-avengers-uncaged/4000-201704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201700/", + "id": 201700, + "name": "The Hammer Falls, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-34-the-hammer-falls-part-2/4000-201700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201041/", + "id": 201041, + "name": "Fall Of An Avenger, Part One; Greek Tragedy", + "site_detail_url": "https://comicvine.gamespot.com/hercules-fall-of-an-avenger-1-fall-of-an-avenger-p/4000-201041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200765/", + "id": 200765, + "name": "Endangered Species", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-625-endangered-species/4000-200765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200744/", + "id": 200744, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/siege-3-untitled/4000-200744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200172/", + "id": 200172, + "name": "Crossroads Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-8-crossroads-part-2/4000-200172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200043/", + "id": 200043, + "name": "Gauntlet Origins: Lizard, A Matter of Trust, Shed: Prologue", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-6-gauntlet-origins-lizard-a-matt/4000-200043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199902/", + "id": 199902, + "name": "Scavenging Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-624-scavenging-part-two/4000-199902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198697/", + "id": 198697, + "name": "Scavenging, Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-623-scavenging-part-one/4000-198697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197797/", + "id": 197797, + "name": "Assault On New Olympus, Finale: Everybody Dies; Godmarked, Pt. 5: To Battle A God", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-141-assault-on-new-olympus-fin/4000-197797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622289/", + "id": 622289, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/maestros-marvel-john-romita-jr-1/4000-622289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454032/", + "id": 454032, + "name": "Invincible", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-2-invincible/4000-454032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-434908/", + "id": 434908, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-65/4000-434908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292835/", + "id": 292835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-52/4000-292835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-229847/", + "id": 229847, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-guardian-devil-1-hctpb/4000-229847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216431/", + "id": 216431, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-invasion-1-tpb/4000-216431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213521/", + "id": 213521, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/punisher-dead-end-1-volume-2/4000-213521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213087/", + "id": 213087, + "name": "Back to the War; American Dream: The Difference; The Game", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-1-back-to-the-war-american/4000-213087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212988/", + "id": 212988, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-classic-2-volume-2/4000-212988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212731/", + "id": 212731, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-best-you-can-be-1-volume-9/4000-212731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198626/", + "id": 198626, + "name": "I've Got A Badge!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-60-ive-got-a-badge/4000-198626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198261/", + "id": 198261, + "name": "Whatever A Spider Can, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-20-whatever-a-spider-can-part-two/4000-198261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197512/", + "id": 197512, + "name": "Whatever A Spider Can, Part One", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-19-whatever-a-spider-can-part-one/4000-197512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197479/", + "id": 197479, + "name": "Earth's Mightiest Super Heroes, Part 2; S(take)out!", + "site_detail_url": "https://comicvine.gamespot.com/avengersatlas-2-earths-mightiest-super-heroes-part/4000-197479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196741/", + "id": 196741, + "name": "Part Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-secret-wars-3-part-three/4000-196741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196589/", + "id": 196589, + "name": "Shock and Awe: Chapter 5: Past is Prologue", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-the-moon-knight-5-shock-and-awe-chapt/4000-196589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196462/", + "id": 196462, + "name": "Mysterioso, Part 3: Smoke & Mirrors", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-620-mysterioso-part-3-smoke/4000-196462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195402/", + "id": 195402, + "name": "A Chemical Romance; Super Boys!; Beauty & the Beast: An Epilogue; Animalia", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heartbreakers-1-a-chemical-romance-super-bo/4000-195402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297087/", + "id": 297087, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-10/4000-297087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260028/", + "id": 260028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-romita-legacy-1/4000-260028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256636/", + "id": 256636, + "name": "100 Page Special", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-17-100-page-special/4000-256636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212034/", + "id": 212034, + "name": "Identity Theft, Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-13-identity-theft-part-/4000-212034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715655/", + "id": 715655, + "name": "Fright at the Museum", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-201-fright-at-th/4000-715655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197521/", + "id": 197521, + "name": "Man With A Plan", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-607-man-with-a-plan/4000-197521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297086/", + "id": 297086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-9/4000-297086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209108/", + "id": 209108, + "name": "Spider-Man: The Gauntlet: Rhino and Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-rhino-and-mysterio-hardcov/4000-209108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207757/", + "id": 207757, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-12/4000-207757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295672/", + "id": 295672, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-71/4000-295672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385877/", + "id": 385877, + "name": "Том 1. Голод", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-izbrannoye-1-1/4000-385877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385625/", + "id": 385625, + "name": "День М", + "site_detail_url": "https://comicvine.gamespot.com/den-m-1-wikiissue/4000-385625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385621/", + "id": 385621, + "name": "Вызов бесконечности", + "site_detail_url": "https://comicvine.gamespot.com/vyzov-beskonechnosti-1-wikiissue/4000-385621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205723/", + "id": 205723, + "name": "'Losing Face' or 'Boom and Doom'", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-11-losing-face-or-boom-/4000-205723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204863/", + "id": 204863, + "name": "Book 4", + "site_detail_url": "https://comicvine.gamespot.com/exiles-ultimate-collection-4-book-4/4000-204863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814159/", + "id": 814159, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-123/4000-814159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424948/", + "id": 424948, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-the-siege-of-camelot-1-tpb/4000-424948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383306/", + "id": 383306, + "name": "Расплата!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-174-wikiissu/4000-383306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383305/", + "id": 383305, + "name": "Почтовый блюз", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-173-wikiissu/4000-383305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382504/", + "id": 382504, + "name": "Угроза... Угрозы!!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-188-wikiissue/4000-382504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382503/", + "id": 382503, + "name": "Да придет Угроза!!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-189-wikiissue/4000-382503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318693/", + "id": 318693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine-special-edition-1/4000-318693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306220/", + "id": 306220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-159/4000-306220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275712/", + "id": 275712, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-4-volume-4/4000-275712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252041/", + "id": 252041, + "name": "The Hero Killer!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-3-the-hero-killer/4000-252041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244788/", + "id": 244788, + "name": "The Gods Go To War!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-7-the-gods-go-to-war/4000-244788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213929/", + "id": 213929, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-peter-parker-vs-the-x/4000-213929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198524/", + "id": 198524, + "name": "The Clone Saga, Part Six", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga-6-the-clone-saga-part-si/4000-198524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198501/", + "id": 198501, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy-2-part-two/4000-198501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198263/", + "id": 198263, + "name": "[untitled]; Protector", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-50-untitled-protector/4000-198263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198259/", + "id": 198259, + "name": "Avenger: Dead or Alive!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-62-avenger-dead-or-alive/4000-198259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198252/", + "id": 198252, + "name": "It Is The Life; Stages of Grief", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-622-it-is-the-life-stages-o/4000-198252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197798/", + "id": 197798, + "name": "The Web Complete: Chapter 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1602-5-the-web-complete-chapter-5/4000-197798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197540/", + "id": 197540, + "name": "Closing The Book", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera-6-closing-the-book/4000-197540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197359/", + "id": 197359, + "name": "Gauntlet Origins: Vulture, The Spectacular Spider-Girl: Choosing Sides, Ben Reily: Nobody", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-5-gauntlet-origins-vulture-the-s/4000-197359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197355/", + "id": 197355, + "name": "The Void Rising", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-14-the-void-rising/4000-197355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197353/", + "id": 197353, + "name": "Out For Blood", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-621-out-for-blood/4000-197353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196740/", + "id": 196740, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-2-part-two/4000-196740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196592/", + "id": 196592, + "name": "Crossroads Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-7-crossroads-part-1/4000-196592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195362/", + "id": 195362, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/siege-2-untitled/4000-195362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715372/", + "id": 715372, + "name": "Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-200-lethal-prote/4000-715372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298381/", + "id": 298381, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-requiem-2/4000-298381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297085/", + "id": 297085, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8/4000-297085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295874/", + "id": 295874, + "name": "¡Los cazadores y los cazados!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-15-los-cazadores-y-los-ca/4000-295874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252914/", + "id": 252914, + "name": "Target: ECHO!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-16-target-echo/4000-252914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209111/", + "id": 209111, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-209111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205719/", + "id": 205719, + "name": "The Private Life of Peter Parker - Part X", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-10-the-private-life-of-/4000-205719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205179/", + "id": 205179, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-games-villains-play-1-volume-12/4000-205179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204640/", + "id": 204640, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-power-loss-1-volume-12/4000-204640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202822/", + "id": 202822, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-1-volume-1/4000-202822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200024/", + "id": 200024, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/hulk-hulk-no-more-1-volume-3/4000-200024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194828/", + "id": 194828, + "name": "Meet Pete", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-59-meet-pete/4000-194828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194624/", + "id": 194624, + "name": "One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/siege-storming-asgard-heroes-villains-1-one-shot/4000-194624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193704/", + "id": 193704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/doctor-voodoo-avenger-of-the-supernatural-4/4000-193704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193350/", + "id": 193350, + "name": "Assault On New Olympus, Pt. 3: The Fourth Extinction / Godmarked, Pt. 4: Oh Hades…It Is On!", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-140-assault-on-new-olympus-pt-/4000-193350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193348/", + "id": 193348, + "name": "Earth's Mightiest Super Heroes, Pt. 1; Defenders Of The Deep", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-atlas-1-earths-mightiest-super-heroes-/4000-193348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192763/", + "id": 192763, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-secret-wars-2-part-two/4000-192763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189507/", + "id": 189507, + "name": "Assault On New Olympus, Pt. 2: Faithbomb / Godmarked, Pt. 3: Jimmy & The Atlasnauts", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-139-assault-on-new-olympus-pt-/4000-189507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186664/", + "id": 186664, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual-3-untitled/4000-186664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285154/", + "id": 285154, + "name": "Voume 2", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-1-voume-2/4000-285154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294047/", + "id": 294047, + "name": "Daredevil/Echo: Parts of a Hole", + "site_detail_url": "https://comicvine.gamespot.com/daredevilecho-parts-of-a-hole-1-daredevilecho-part/4000-294047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205718/", + "id": 205718, + "name": "The Private Life of Peter Parker - Part IX", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-9-the-private-life-of-p/4000-205718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204761/", + "id": 204761, + "name": "The New World According to Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-the-new-world-according/4000-204761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193351/", + "id": 193351, + "name": "Father's Day", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-606-fathers-day/4000-193351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300386/", + "id": 300386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-110/4000-300386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297084/", + "id": 297084, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-7/4000-297084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201070/", + "id": 201070, + "name": "Here Comes Wild Card!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-11-here-comes-wild-card/4000-201070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289790/", + "id": 289790, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-23/4000-289790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295671/", + "id": 295671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-70/4000-295671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716078/", + "id": 716078, + "name": "Captured!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-199-captured/4000-716078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225095/", + "id": 225095, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/petey-1/4000-225095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416845/", + "id": 416845, + "name": "Krieger", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-14-krieger/4000-416845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385612/", + "id": 385612, + "name": "Том 4. Возвращение Зеленого Гоблина!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-4-4/4000-385612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297083/", + "id": 297083, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-6/4000-297083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203406/", + "id": 203406, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-omnibus-1-volume-1/4000-203406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199358/", + "id": 199358, + "name": "Spider-Man: American Son", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-american-son-1-spider-man-american-son/4000-199358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205717/", + "id": 205717, + "name": "The Private Life of Peter Parker - Part VIII", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-8-the-private-life-of-p/4000-205717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-814006/", + "id": 814006, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-122/4000-814006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444945/", + "id": 444945, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-12/4000-444945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383304/", + "id": 383304, + "name": "Неожиданный улов!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-172-wikiissu/4000-383304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383303/", + "id": 383303, + "name": "Леди и Тигра", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-171-wikiissu/4000-383303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383302/", + "id": 383302, + "name": "Нежданный гость! (или \"Лучше не зли папу!\")", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-170-wikiissu/4000-383302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382506/", + "id": 382506, + "name": "Кровные узы", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-186-wikiissue/4000-382506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382505/", + "id": 382505, + "name": "Кто эта девушка?!?", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-187-wikiissue/4000-382505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244344/", + "id": 244344, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203177/", + "id": 203177, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings-1-tpb/4000-203177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203152/", + "id": 203152, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-and-spider-man-1-tpb/4000-203152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202003/", + "id": 202003, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn-1-hc-tpb/4000-202003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194835/", + "id": 194835, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy-1-part-one/4000-194835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194831/", + "id": 194831, + "name": "The Clone Saga, Part Five", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga-5-the-clone-saga-part-fi/4000-194831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194589/", + "id": 194589, + "name": "Part Six", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn-6-part-six/4000-194589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194422/", + "id": 194422, + "name": "Mysterioso, Part 2: Re-Appearing Act", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-619-mysterioso-part-2-re-ap/4000-194422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194421/", + "id": 194421, + "name": "Cap Sez: Join the Siege!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-61-cap-sez-join-the-siege/4000-194421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194269/", + "id": 194269, + "name": "Gauntlet Origins:Mysterio; The Spectacular Spidergirl in They First Make Mad; Hammerhead in Western Promises", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-4-gauntlet-originsmysterio-the-s/4000-194269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194241/", + "id": 194241, + "name": "The Web Complete: Chapter 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1602-4-the-web-complete-chapter-4/4000-194241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193352/", + "id": 193352, + "name": "Mysterioso, Part 1: Un-Murder Incorporated", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-618-mysterioso-part-1-un-mu/4000-193352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192312/", + "id": 192312, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-9/4000-192312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192294/", + "id": 192294, + "name": "Rage Of The Rhino; The Walk", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-617-rage-of-the-rhino-the-w/4000-192294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191459/", + "id": 191459, + "name": "The New World According To Peter Parker. Part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-6-the-new-world-according-to-p/4000-191459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191273/", + "id": 191273, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-1-part-one/4000-191273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173404/", + "id": 173404, + "name": "Mark Buckingham", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-22-mark-buckingham/4000-173404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291647/", + "id": 291647, + "name": "Secretos y Mentiras", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-los-nuevos-vengadores-3-secretos-y-m/4000-291647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291313/", + "id": 291313, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-50/4000-291313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207654/", + "id": 207654, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-son-of-banner-1-volume-1/4000-207654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201717/", + "id": 201717, + "name": "Volume 1: The Prince", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-dark-wolverine-1-volume-1-the-prince/4000-201717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199292/", + "id": 199292, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-in-search-of-galactus-1-hc/4000-199292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198689/", + "id": 198689, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-visionaries-alan-davis-2-volume-2/4000-198689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197509/", + "id": 197509, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-1-hctpb/4000-197509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191212/", + "id": 191212, + "name": "Wanted", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-58-wanted/4000-191212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190503/", + "id": 190503, + "name": "Siege Prologue", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-siege-1-siege-prologue/4000-190503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186692/", + "id": 186692, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-secret-wars-1-part-one/4000-186692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223973/", + "id": 223973, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-223/4000-223973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200261/", + "id": 200261, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-korvac-saga-1-hc-tpb/4000-200261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198492/", + "id": 198492, + "name": "House Of M: Wolverine, Iron Man & Hulk", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-wolverine-iron-man-hulk-1-house-of-m-wo/4000-198492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716077/", + "id": 716077, + "name": "Training Day", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-198-training-day/4000-716077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297082/", + "id": 297082, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-297082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202011/", + "id": 202011, + "name": "Spider-Man: The Gauntlet: Electro and Sandman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-electro-and-sandman-1-spid/4000-202011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220394/", + "id": 220394, + "name": "Iron Man: The Ultimate Guide To The Armored Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-ultimate-guide-to-the-armored-super-h/4000-220394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295791/", + "id": 295791, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-27/4000-295791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197055/", + "id": 197055, + "name": "A Matter of Trust!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-10-a-matter-of-trust/4000-197055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189516/", + "id": 189516, + "name": "All Hope Lies in Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-574-all-hope-lies-in-doom/4000-189516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200110/", + "id": 200110, + "name": "TPB/HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-1-tpbhc/4000-200110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199872/", + "id": 199872, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/essential-daredevil-5-volume-5/4000-199872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205716/", + "id": 205716, + "name": "The Private Life of Peter Parker - Part VII", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-7-the-private-life-of-p/4000-205716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297081/", + "id": 297081, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-297081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196454/", + "id": 196454, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-x-marks-the-spot-1-volume-3/4000-196454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813868/", + "id": 813868, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-121/4000-813868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383301/", + "id": 383301, + "name": "Силач", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-169-wikiissu/4000-383301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383300/", + "id": 383300, + "name": "Мстители на ферме!!!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-168-wikiissu/4000-383300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382508/", + "id": 382508, + "name": "Новый день", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-184-wikiissue/4000-382508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382507/", + "id": 382507, + "name": "Искупление", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-185-wikiissue/4000-382507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331640/", + "id": 331640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad-annual-2011/4000-331640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295731/", + "id": 295731, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-30/4000-295731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244369/", + "id": 244369, + "name": "World War Hulk Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-5-world-war-hulk-conclu/4000-244369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200233/", + "id": 200233, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-1-book-one/4000-200233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199300/", + "id": 199300, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-lone-stranger-1-tpb/4000-199300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189584/", + "id": 189584, + "name": "Gwen Stacy Survived The House of M?; Spiderman Intervened For the Scarlet Witch?; Say What?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-house-of-m-1-gwen-stacy-survive/4000-189584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189508/", + "id": 189508, + "name": "Luke Cage: Hero Retired?!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-60-luke-cage-hero-retired/4000-189508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189487/", + "id": 189487, + "name": "Keemia's Castle, Part 2: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-616-keemias-castle-part-2-c/4000-189487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189470/", + "id": 189470, + "name": "The Web Complete: Chapter 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1602-3-the-web-complete-chapter-3/4000-189470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-188266/", + "id": 188266, + "name": "The Clone Saga, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga-4-the-clone-saga-part-fo/4000-188266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187607/", + "id": 187607, + "name": "Keemia's Castle, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-615-keemias-castle-part-1/4000-187607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186674/", + "id": 186674, + "name": "Journey To The Center Of The Goblin, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men-2-journey-to-the-center-of-the-goblin-p/4000-186674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186660/", + "id": 186660, + "name": "Gauntlet Origins: Rhino, The Spectacular Spider-Girl in Whom Gods Destroy, Aunt May & J.Jonah Jameson, Sr. in Love And Marriage", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-3-gauntlet-origins-rhino-the-spe/4000-186660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186659/", + "id": 186659, + "name": "Power To The People, Part 3: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-614-power-to-the-people-par/4000-186659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186112/", + "id": 186112, + "name": "Meeting Of The Minds", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-alpha-1-meeting-of-the-minds/4000-186112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186107/", + "id": 186107, + "name": "The New World According To Peter Parker. Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-5-the-new-world-according-to-p/4000-186107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186068/", + "id": 186068, + "name": "What If The Skrulls Succeeded In Their Secret Invasion ? / What If The Secret Invasion Remained Secret? / Say What? Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-invasion-1-what-if-the-skrulls-succ/4000-186068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300039/", + "id": 300039, + "name": "¡Olores y Sentidos!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-14-olores-y-sentidos/4000-300039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298380/", + "id": 298380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-requiem-1/4000-298380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291652/", + "id": 291652, + "name": "Desde el cielo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-the-pulse-1-desde-el-cielo/4000-291652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291651/", + "id": 291651, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-spiderman-nuevos-vengadores-1/4000-291651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258715/", + "id": 258715, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-dan-jurgens-and-john-romita-jr-4-volume-4/4000-258715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237657/", + "id": 237657, + "name": "Volume 22", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimatum-1-volume-22/4000-237657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205861/", + "id": 205861, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/hulk-visionaries-peter-david-7-volume-seven/4000-205861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199302/", + "id": 199302, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-road-to-reborn-1-tpb/4000-199302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185427/", + "id": 185427, + "name": "The Silencer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-57-the-silencer/4000-185427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184944/", + "id": 184944, + "name": "Spider Showdown!", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-59-spider-showdown/4000-184944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184806/", + "id": 184806, + "name": "Assault On New Olympus, Pt. 1: Playing Gods / Godmarked, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-138-assault-on-new-olympus-pt-/4000-184806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183670/", + "id": 183670, + "name": "#8 Kill Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-amazing-spider-man-1-8-kill-sp/4000-183670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-182686/", + "id": 182686, + "name": "Shock And Awe, Chapter 3: The Bushman Cometh", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-the-moon-knight-3-shock-and-awe-chapt/4000-182686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716076/", + "id": 716076, + "name": "Monster Mash", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-197-monster-mash/4000-716076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205715/", + "id": 205715, + "name": "The Private Life of Peter Parker - Part VI", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-6-the-private-life-of-p/4000-205715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394803/", + "id": 394803, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fairy-tales-1-tpb/4000-394803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297080/", + "id": 297080, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3/4000-297080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-229063/", + "id": 229063, + "name": "World War Hulk part four", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-4-world-war-hulk-part-f/4000-229063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411429/", + "id": 411429, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-3/4000-411429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417632/", + "id": 417632, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-sense-spider-man-sandman-strikes-1/4000-417632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289789/", + "id": 289789, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-22/4000-289789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205714/", + "id": 205714, + "name": "The Private Life of Peter Parker - Part V", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-5-the-private-life-of-p/4000-205714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204468/", + "id": 204468, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-return-of-the-black-cat-1-hc/4000-204468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199163/", + "id": 199163, + "name": "Spider-Man: Election Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-election-day-1-spider-man-election-day/4000-199163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295669/", + "id": 295669, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-68/4000-295669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716075/", + "id": 716075, + "name": "Winter Blunderland", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-196-winter-blund/4000-716075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297079/", + "id": 297079, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-297079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191937/", + "id": 191937, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-7-volume-7/4000-191937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191688/", + "id": 191688, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/siege-prelude-1-tpb/4000-191688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813696/", + "id": 813696, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-120/4000-813696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-741068/", + "id": 741068, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/alias-ultimate-collection-2-volume-2/4000-741068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383299/", + "id": 383299, + "name": "Незаменимый!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-167-wikiissu/4000-383299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382509/", + "id": 382509, + "name": "Новое направление", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-183-wikiissue/4000-382509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382465/", + "id": 382465, + "name": "История любви", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-182-wikiissue/4000-382465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381571/", + "id": 381571, + "name": "DC Comics Year By Year", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-year-by-year-1-dc-comics-year-by-year/4000-381571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381241/", + "id": 381241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-54/4000-381241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355511/", + "id": 355511, + "name": "Savage Safari!/Forewarned is Four Armed! (a.k.a. Armed and Dangerous)", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-17-savage-safariforewarned-is-four-a/4000-355511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298262/", + "id": 298262, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-1/4000-298262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297095/", + "id": 297095, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-25/4000-297095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297094/", + "id": 297094, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17/4000-297094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295730/", + "id": 295730, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-29/4000-295730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294025/", + "id": 294025, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus-by-brian-michael-bendis-and-alex/4000-294025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292187/", + "id": 292187, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-noir-1-spider-man/4000-292187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292160/", + "id": 292160, + "name": "Spider-Man & Friends", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-11-spider-man-friends/4000-292160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292126/", + "id": 292126, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-marvel-team-up-2/4000-292126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292125/", + "id": 292125, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-marvel-team-up-1/4000-292125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291242/", + "id": 291242, + "name": "El día de la guerra", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-exiliados-22-el-dia-de-la-guerra/4000-291242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287707/", + "id": 287707, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-70-ultimatum/4000-287707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273901/", + "id": 273901, + "name": "Die Rächer und die Invaders", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-46-die-racher-und-die-invaders/4000-273901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273899/", + "id": 273899, + "name": "Die Rächer und die Invaders", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-44-die-racher-und-die-invaders/4000-273899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273897/", + "id": 273897, + "name": "Venom - Dark Origin", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-43-venom-dark-origin/4000-273897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273896/", + "id": 273896, + "name": "Marvel 1985", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-42-marvel-1985/4000-273896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252912/", + "id": 252912, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-13/4000-252912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248409/", + "id": 248409, + "name": "Civil War: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-spider-man-1-civil-war-spider-man/4000-248409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203580/", + "id": 203580, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-and-the-avengers-1-tp/4000-203580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195783/", + "id": 195783, + "name": "Choosing Sides!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-9-choosing-sides/4000-195783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191896/", + "id": 191896, + "name": "Dark Reign: The List", + "site_detail_url": "https://comicvine.gamespot.com/list-1-dark-reign-the-list/4000-191896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189773/", + "id": 189773, + "name": "Volume 14", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-thwip-1-volume-14/4000-189773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185027/", + "id": 185027, + "name": "The Clone Saga, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga-3-the-clone-saga-part-th/4000-185027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184820/", + "id": 184820, + "name": "The Amazing Spider-Date", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-47-the-amazing-spider-date/4000-184820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184775/", + "id": 184775, + "name": "Gauntlet Origins: Electro, The Spectacular Spider-Girl: Like A Fury Scorned, His Honor, The Mayor: The Irritable J. Jonah Jameson", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-2-gauntlet-origins-electro-the-s/4000-184775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184769/", + "id": 184769, + "name": "Power To The People, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-613-power-to-the-people-par/4000-184769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184039/", + "id": 184039, + "name": "The Web Complete: Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1602-2-the-web-complete-chapter-2/4000-184039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183671/", + "id": 183671, + "name": "Power To The People, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-612-power-to-the-people-par/4000-183671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-182579/", + "id": 182579, + "name": "This Man, This Expletive Deleted", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-611-this-man-this-expletive/4000-182579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181818/", + "id": 181818, + "name": "Oni", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-3-oni/4000-181818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181678/", + "id": 181678, + "name": "Apes Vs. Zombies!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-evil-evolution-1-apes-vs-zombies/4000-181678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181637/", + "id": 181637, + "name": "The New World According To Peter Parker Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-4-the-new-world-according-to-p/4000-181637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181089/", + "id": 181089, + "name": "Prologue / Godmarked, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/assault-on-new-olympus-prologue-1-prologue-godmark/4000-181089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181081/", + "id": 181081, + "name": "Who Was Ben Reilly?, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-610-who-was-ben-reilly-part/4000-181081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307505/", + "id": 307505, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield-2-vol/4000-307505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298207/", + "id": 298207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-33/4000-298207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290747/", + "id": 290747, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-48/4000-290747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288943/", + "id": 288943, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-increible-hulk-15/4000-288943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212759/", + "id": 212759, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-dark-reign-1-volume-7/4000-212759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212701/", + "id": 212701, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return-1-hc-tpb/4000-212701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207630/", + "id": 207630, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-mighty-thorcules-1-hctpb/4000-207630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192526/", + "id": 192526, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-6-volume-6/4000-192526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190502/", + "id": 190502, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-dark-reign-1-tpb/4000-190502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189657/", + "id": 189657, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-war-of-the-marvels-1-volume-8/4000-189657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186931/", + "id": 186931, + "name": "One Shot", + "site_detail_url": "https://comicvine.gamespot.com/marvel-70th-anniversary-frame-art-1-one-shot/4000-186931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179942/", + "id": 179942, + "name": "Vigilantes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-56-vigilantes/4000-179942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179033/", + "id": 179033, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-58/4000-179033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190476/", + "id": 190476, + "name": "Book 3", + "site_detail_url": "https://comicvine.gamespot.com/exiles-ultimate-collection-3-book-3/4000-190476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205713/", + "id": 205713, + "name": "The Private Life of Peter Parker - Part IV", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-4-the-private-life-of-p/4000-205713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221061/", + "id": 221061, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-221061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179104/", + "id": 179104, + "name": "Atonement", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-137-atonement/4000-179104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716074/", + "id": 716074, + "name": "Growin' Up", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-195-growin-up/4000-716074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295790/", + "id": 295790, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-26/4000-295790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295668/", + "id": 295668, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-67/4000-295668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205712/", + "id": 205712, + "name": "The Private Life of Peter Parker - Part III", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-3-the-private-life-of-p/4000-205712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204292/", + "id": 204292, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-red-headed-stranger-1-hc-tpb/4000-204292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203176/", + "id": 203176, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-underside-1-tpb/4000-203176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192871/", + "id": 192871, + "name": "X-Men/Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-menspider-man-1-x-menspider-man/4000-192871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384660/", + "id": 384660, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/drawing-down-the-moon-the-art-of-charles-vess-1-hc/4000-384660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383205/", + "id": 383205, + "name": "Тихие ночи", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-166-wikiissu/4000-383205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383204/", + "id": 383204, + "name": "Пит против Пита", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-165-wikiissu/4000-383204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382467/", + "id": 382467, + "name": "Война симбиотов. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-180-5/4000-382467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382466/", + "id": 382466, + "name": "Война симбиотов. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-181-6/4000-382466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355473/", + "id": 355473, + "name": "The Quest/The End of All Things", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-16-the-questthe-end-of-all-things/4000-355473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300559/", + "id": 300559, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-96/4000-300559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300035/", + "id": 300035, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-96/4000-300035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295729/", + "id": 295729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-28/4000-295729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295448/", + "id": 295448, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-119/4000-295448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291781/", + "id": 291781, + "name": "X-Men: Origins", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-83-x-men-origins/4000-291781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249316/", + "id": 249316, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-march-on-ultimatum-1-hctpb/4000-249316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244368/", + "id": 244368, + "name": "World War Hulk part three", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-3-world-war-hulk-part-t/4000-244368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196061/", + "id": 196061, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-root-of-all-annoyance-1/4000-196061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192311/", + "id": 192311, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-8/4000-192311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191515/", + "id": 191515, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-tales-of-weapon-x-1-tpb/4000-191515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189949/", + "id": 189949, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-sinister-spider-man-1-tpb/4000-189949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189634/", + "id": 189634, + "name": "Brian Michael Bendis: Ten Years At Marvel", + "site_detail_url": "https://comicvine.gamespot.com/brian-michael-bendis-ten-years-at-marvel-1-brian-m/4000-189634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189519/", + "id": 189519, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-3-volume-three/4000-189519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179955/", + "id": 179955, + "name": "Holiday Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-spectacular-1-holiday-spectacular/4000-179955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179918/", + "id": 179918, + "name": "The Clone Saga, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga-2-the-clone-saga-part-tw/4000-179918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176849/", + "id": 176849, + "name": "What Are Friends For?", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-137-what-are-friends-for/4000-176849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176842/", + "id": 176842, + "name": "One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-hulk-1-one-shot/4000-176842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176838/", + "id": 176838, + "name": "Who Was Ben Reilly?, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-609-who-was-ben-reilly-part/4000-176838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176118/", + "id": 176118, + "name": "Kaine In Echoes", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-1-kaine-in-echoes/4000-176118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175654/", + "id": 175654, + "name": "The Web Complete: Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1602-1-the-web-complete-chapter-1/4000-175654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175288/", + "id": 175288, + "name": "The New World According to Peter Parker Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-3-the-new-world-according-to-p/4000-175288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175232/", + "id": 175232, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-2/4000-175232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174819/", + "id": 174819, + "name": "Who Was Ben Reilly?, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-608-who-was-ben-reilly-part/4000-174819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298206/", + "id": 298206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-32/4000-298206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295873/", + "id": 295873, + "name": "¡Juego de poder!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-13-juego-de-poder/4000-295873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292972/", + "id": 292972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-los-4-fantasticos-1/4000-292972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291646/", + "id": 291646, + "name": "¿Quien es el Vigía?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-los-nuevos-vengadores-2-quien-es-el-/4000-291646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291310/", + "id": 291310, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-47/4000-291310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204638/", + "id": 204638, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-search-for-the-sorcerer-supreme-1-vol/4000-204638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174433/", + "id": 174433, + "name": "Why I Was Late For Class", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-55-why-i-was-late-for/4000-174433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173435/", + "id": 173435, + "name": "The Avengers Dismembered", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return-5-the-avengers-dismembered/4000-173435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172561/", + "id": 172561, + "name": "Hulk Smash People Eaters!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return-4-hulk-smash-people-eaters/4000-172561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172381/", + "id": 172381, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-57-untitled/4000-172381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171555/", + "id": 171555, + "name": "Snikt Goes Splat!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return-3-snikt-goes-splat/4000-171555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170929/", + "id": 170929, + "name": "Stage Illusions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-15-stage-illusions/4000-170929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170311/", + "id": 170311, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-avengers-1-untitled/4000-170311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169517/", + "id": 169517, + "name": "With Great Hunger, There Must Also Come Great Hunger!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return-1-with-great-hunger-there-mu/4000-169517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169211/", + "id": 169211, + "name": "Want You To Want Me: Part 1: The Complete Idiot's Guide to Metaphors", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-15-want-you-to-want-me-part-1-the-complet/4000-169211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428637/", + "id": 428637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-69/4000-428637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716073/", + "id": 716073, + "name": "Guilt Trip", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-194-guilt-trip/4000-716073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428589/", + "id": 428589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-68/4000-428589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244367/", + "id": 244367, + "name": "World War Hulk part two", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-2-world-war-hulk-part-t/4000-244367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223072/", + "id": 223072, + "name": "The Death of Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/death-of-captain-america-omnibus-1-the-death-of-ca/4000-223072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211114/", + "id": 211114, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-211114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205711/", + "id": 205711, + "name": "The Private Life of Peter Parker - Part II", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-2-the-private-life-of-p/4000-205711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287706/", + "id": 287706, + "name": "Ultimative Katastrophen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-69-ultimative-katastroph/4000-287706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289788/", + "id": 289788, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-21/4000-289788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295667/", + "id": 295667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-66/4000-295667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428588/", + "id": 428588, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-67/4000-428588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246739/", + "id": 246739, + "name": "X-Men Legacy: Salvage", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-salvage-1-x-men-legacy-salvage/4000-246739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184220/", + "id": 184220, + "name": "They First Make Mad!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-8-they-first-make-mad/4000-184220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-182904/", + "id": 182904, + "name": "Wolverine: Supereroi Made in Italy", + "site_detail_url": "https://comicvine.gamespot.com/100-anni-di-fumetto-italiano-7-wolverine-supereroi/4000-182904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716072/", + "id": 716072, + "name": "Family Crisis", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-193-family-crisi/4000-716072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211530/", + "id": 211530, + "name": "Marvel Zombies 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-3-1-marvel-zombies-3/4000-211530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184083/", + "id": 184083, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-a-chemical-romance-1/4000-184083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181370/", + "id": 181370, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-walter-simonson-3-vol-3/4000-181370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437022/", + "id": 437022, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-239/4000-437022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383203/", + "id": 383203, + "name": "Зловещее шестнадцатилетие", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-164-wikiissu/4000-383203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383202/", + "id": 383202, + "name": "Игра в героя", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-163-wikiissu/4000-383202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382469/", + "id": 382469, + "name": "Война симбиотов. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-178-3/4000-382469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382468/", + "id": 382468, + "name": "Война симбиотов. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-179-4/4000-382468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306218/", + "id": 306218, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-154/4000-306218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300558/", + "id": 300558, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-95/4000-300558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295728/", + "id": 295728, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-27/4000-295728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295447/", + "id": 295447, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-118/4000-295447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289054/", + "id": 289054, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-3/4000-289054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273900/", + "id": 273900, + "name": "Spider-Man und die X-Men", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-45-spider-man-und-die-x-men/4000-273900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251491/", + "id": 251491, + "name": "Mission Of Vengeance!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-160-mission-of-vengeance/4000-251491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244343/", + "id": 244343, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232218/", + "id": 232218, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-deathlok-1-volume-1/4000-232218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215100/", + "id": 215100, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-2009-2099-1-hc/4000-215100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204291/", + "id": 204291, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-died-in-your-arms-tonight-1-hctpb/4000-204291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186229/", + "id": 186229, + "name": "Utopia", + "site_detail_url": "https://comicvine.gamespot.com/avengersx-men-utopia-1-utopia/4000-186229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174144/", + "id": 174144, + "name": "Remote Control", + "site_detail_url": "https://comicvine.gamespot.com/punisher-annual-1-remote-control/4000-174144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173682/", + "id": 173682, + "name": "Code Red, Pt. 2: Collision", + "site_detail_url": "https://comicvine.gamespot.com/hulk-15-code-red-pt-2-collision/4000-173682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173423/", + "id": 173423, + "name": "Long-Term Arrangement, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-607-long-term-arrangement-p/4000-173423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172577/", + "id": 172577, + "name": "The Gauntlet Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-menamazing-spider-man-the-gauntlet-s/4000-172577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172378/", + "id": 172378, + "name": "Long Term Arrangement", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-606-long-term-arrangement/4000-172378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171645/", + "id": 171645, + "name": "“Red Headed Stranger” Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-605-red-headed-stranger-epi/4000-171645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170719/", + "id": 170719, + "name": "Red-Headed Stranger: The Ancient Gallery", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-604-red-headed-stranger-the/4000-170719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169645/", + "id": 169645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-1/4000-169645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169284/", + "id": 169284, + "name": "The New World According To Peter Parker Part Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-2-the-new-world-according-to-p/4000-169284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169213/", + "id": 169213, + "name": "Closure", + "site_detail_url": "https://comicvine.gamespot.com/exiles-6-closure/4000-169213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154038/", + "id": 154038, + "name": "Number Four", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-comics-4-number-four/4000-154038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148443/", + "id": 148443, + "name": "The Clone Saga, Part One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga-1-the-clone-saga-part-on/4000-148443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622317/", + "id": 622317, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-1/4000-622317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285252/", + "id": 285252, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-7/4000-285252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228822/", + "id": 228822, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-inhumans-1-volume-one/4000-228822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216669/", + "id": 216669, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-short-halloween-1-hctpb/4000-216669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194953/", + "id": 194953, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-requiem-1-hctpb/4000-194953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183108/", + "id": 183108, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-1-hctpb/4000-183108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175475/", + "id": 175475, + "name": "Volume Ten", + "site_detail_url": "https://comicvine.gamespot.com/official-index-to-the-marvel-universe-10-volume-te/4000-175475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168307/", + "id": 168307, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-56-untitled/4000-168307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168305/", + "id": 168305, + "name": "Taken For A Ride", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-54-taken-for-a-ride/4000-168305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167442/", + "id": 167442, + "name": "Negative Reinforcement", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-mister-negative-3-negative-reinforcemen/4000-167442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167376/", + "id": 167376, + "name": "Part 5 of 5", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings-5-part-5-of-5/4000-167376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167367/", + "id": 167367, + "name": "Don't Follow The Leader", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-39-dont-follow-the-lead/4000-167367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166815/", + "id": 166815, + "name": "The New World According to Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-1-the-new-world-according-to-p/4000-166815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166138/", + "id": 166138, + "name": "Head Trip, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-2-head-trip-part-2/4000-166138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428587/", + "id": 428587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-66/4000-428587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184337/", + "id": 184337, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-1-ultimatum/4000-184337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203882/", + "id": 203882, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-invasion-1-volume-10/4000-203882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198661/", + "id": 198661, + "name": "Spider-Man: Death and Dating", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-and-dating-1-spider-man-death-and/4000-198661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716071/", + "id": 716071, + "name": "The Fast Lane", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-192-the-fast-lan/4000-716071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426227/", + "id": 426227, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-65/4000-426227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385611/", + "id": 385611, + "name": "Том 3. Доктор Октопус", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-3-3/4000-385611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295666/", + "id": 295666, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-65/4000-295666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203175/", + "id": 203175, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-fantastic-four-1-tpb/4000-203175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217055/", + "id": 217055, + "name": "The Marvel Encyclopedia the Definitive Guide to the Characters of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-encyclopedia-the-definitive-guide-to-th/4000-217055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807583/", + "id": 807583, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-10/4000-807583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383201/", + "id": 383201, + "name": "Двое против одного", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-162-wikiissu/4000-383201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383200/", + "id": 383200, + "name": "...не верь газетам!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-161-wikiissu/4000-383200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382471/", + "id": 382471, + "name": "Война симбиотов. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-176-1/4000-382471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382470/", + "id": 382470, + "name": "Война симбиотов. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-177-2/4000-382470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300459/", + "id": 300459, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legado-46/4000-300459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295726/", + "id": 295726, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-26/4000-295726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295446/", + "id": 295446, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-117/4000-295446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291991/", + "id": 291991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-54/4000-291991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244366/", + "id": 244366, + "name": "World War Hulk begins!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-1-world-war-hulk-begins/4000-244366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218058/", + "id": 218058, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-73/4000-218058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178421/", + "id": 178421, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-omnibus-1-hc/4000-178421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168315/", + "id": 168315, + "name": "Timestorm, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-4-timestorm-part-4/4000-168315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168304/", + "id": 168304, + "name": "Banner's Back", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-601-banners-back/4000-168304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167368/", + "id": 167368, + "name": "Red-Headed Stranger, Part 3: Deconstructing Peter", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-603-red-headed-stranger-par/4000-167368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166887/", + "id": 166887, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-project-1-part-one/4000-166887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166836/", + "id": 166836, + "name": "War Of The Marvels, Part. 2: Tactical Dispositions", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-43-war-of-the-marvels-part-2-tactical-di/4000-166836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166792/", + "id": 166792, + "name": "Red-Headed Stranger: Tenth of September", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-602-red-headed-stranger-ten/4000-166792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166136/", + "id": 166136, + "name": "Red-Headed Stranger, Part 1: No Place Like Home; The Best Version Of Myself", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-601-red-headed-stranger-par/4000-166136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574754/", + "id": 574754, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-reinado-oscuro-0/4000-574754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497263/", + "id": 497263, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-64/4000-497263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298205/", + "id": 298205, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-31/4000-298205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295872/", + "id": 295872, + "name": "La Academia de Asesinos", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-12-la-academia-de-asesino/4000-295872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291645/", + "id": 291645, + "name": "Fuga", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-los-nuevos-vengadores-1-fuga/4000-291645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291308/", + "id": 291308, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-45/4000-291308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264393/", + "id": 264393, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-182/4000-264393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-229295/", + "id": 229295, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/pet-avengers-classic-1-tpb/4000-229295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201172/", + "id": 201172, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-dan-jurgens-and-john-romita-jr-1-volume-1/4000-201172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189774/", + "id": 189774, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-master-of-doom-1-hc/4000-189774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165857/", + "id": 165857, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-goblin-legacy-1/4000-165857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165577/", + "id": 165577, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-55-untitled/4000-165577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165188/", + "id": 165188, + "name": "A Sense of Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-53-a-sense-of-respons/4000-165188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165068/", + "id": 165068, + "name": "Seeing Red; A Hulk of Many Colors; She-Hulk Weapon of A.R.M.O.R.", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-600-seeing-red-a-hulk-of-many-colo/4000-165068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164960/", + "id": 164960, + "name": "War Of The Marvels, Part 1: First Engagement", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-42-war-of-the-marvels-part-1-first-engag/4000-164960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164774/", + "id": 164774, + "name": "Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings-4-part-4-of-5/4000-164774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164589/", + "id": 164589, + "name": "Ms. Isaacson's Third Grade Field Trip", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-38-ms-isaacsons-third-g/4000-164589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164128/", + "id": 164128, + "name": "Battle For Chinatown", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-mister-negative-2-battle-for-chinatown/4000-164128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163700/", + "id": 163700, + "name": "Life Model Doggie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-13-life-model-doggi/4000-163700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163541/", + "id": 163541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-41/4000-163541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163378/", + "id": 163378, + "name": "Peter Parker Must Die", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-36-peter-parker-must/4000-163378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162737/", + "id": 162737, + "name": "Dark Reflection; The Spectacular Spider-Girl; Walking The Talk; Why Not Have Spider-Man Lose Control Of His Spider-Sense?", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-8-dark-reflection-the-sp/4000-162737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166528/", + "id": 166528, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-215/4000-166528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716070/", + "id": 716070, + "name": "The Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-191-the-last-sta/4000-716070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295269/", + "id": 295269, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-191/4000-295269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426036/", + "id": 426036, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-63/4000-426036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252645/", + "id": 252645, + "name": "New Story! The MIGHTY AVENGERS Are Born!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-9-new-story-the-mighty-avenge/4000-252645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224974/", + "id": 224974, + "name": "A New Light", + "site_detail_url": "https://comicvine.gamespot.com/guiding-light-1-a-new-light/4000-224974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178293/", + "id": 178293, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-sting-of-the-widow-1-hc/4000-178293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175022/", + "id": 175022, + "name": "Like A Fury Scorned!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-6-like-a-fury-scorned/4000-175022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287705/", + "id": 287705, + "name": "Beziehungen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-68-beziehungen/4000-287705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246587/", + "id": 246587, + "name": "Marvel Superhero Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-superhero-team-up-1-marvel-superhero-team-u/4000-246587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225797/", + "id": 225797, + "name": "Ape-okolips Now!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-prime-eight-3-ape-okolips-now/4000-225797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192101/", + "id": 192101, + "name": "Ultimatum: Spider-Man HC", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-spider-man-1-ultimatum-spider-man-hc/4000-192101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416844/", + "id": 416844, + "name": "Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-13-hobgoblin/4000-416844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430397/", + "id": 430397, + "name": "Descartes & Sartre!", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-8-descartes-sartre/4000-430397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716069/", + "id": 716069, + "name": "Urban Knights", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-190-urban-knight/4000-716069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426035/", + "id": 426035, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-62/4000-426035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205708/", + "id": 205708, + "name": "The Private Life of Peter Parker - Part I", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-digital-1-the-private-life-of-p/4000-205708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191699/", + "id": 191699, + "name": "Amazing Spider-Man: 24/7", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-247-1-amazing-spider-man-247/4000-191699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191145/", + "id": 191145, + "name": "Marvel Zombies vs. Army Of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-1-marvel-zombie/4000-191145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183608/", + "id": 183608, + "name": "Moon Knight Saga", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-saga-1-moon-knight-saga/4000-183608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183023/", + "id": 183023, + "name": "Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-sinister-six-1-sinister-six/4000-183023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173689/", + "id": 173689, + "name": "Book 2", + "site_detail_url": "https://comicvine.gamespot.com/exiles-ultimate-collection-2-book-2/4000-173689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172999/", + "id": 172999, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-human-torch-1-hc/4000-172999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384017/", + "id": 384017, + "name": "Реквием", + "site_detail_url": "https://comicvine.gamespot.com/fantasticheskaya-chetvyorka-162-wikiissue/4000-384017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383199/", + "id": 383199, + "name": "Части головоломки", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-160-wikiissu/4000-383199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383198/", + "id": 383198, + "name": "Заговор Ордена Змей", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-159-wikiissu/4000-383198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382473/", + "id": 382473, + "name": "Критики бывают разные...", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-174-wikiissue/4000-382473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382472/", + "id": 382472, + "name": "Шокирующая история", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-175-wikiissue/4000-382472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355506/", + "id": 355506, + "name": "Like a Moth to a Flame/Heavy Hangs the Head", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-12-like-a-moth-to-a-flameheavy-hangs/4000-355506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295445/", + "id": 295445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-116/4000-295445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291990/", + "id": 291990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-53/4000-291990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289787/", + "id": 289787, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-20/4000-289787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283209/", + "id": 283209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-x-men-spiderman-1/4000-283209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207655/", + "id": 207655, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-evolution-starts-here-1-tpb/4000-207655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192310/", + "id": 192310, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-7/4000-192310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189763/", + "id": 189763, + "name": "TPB/HC", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-earth-s-mightiest-1-tpb-hc/4000-189763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186619/", + "id": 186619, + "name": "Dark Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-dark-avengers-assemble-1-dark-avenge/4000-186619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184207/", + "id": 184207, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-team-up-3-volume-3/4000-184207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174132/", + "id": 174132, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-manmary-janeyou-just-hit-the-jackpot-1-tpb/4000-174132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165471/", + "id": 165471, + "name": "Doom's Master, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-569-doom-s-master-part-4/4000-165471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165423/", + "id": 165423, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-spider-man-requiem-2-part-two/4000-165423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164777/", + "id": 164777, + "name": "Last Legs; Identity Crisis; My Brother's Son; If I Was Spider-Man...; The Blessing; Fight At The Museum; Violent Visions", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-600-last-legs-identity-cris/4000-164777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164067/", + "id": 164067, + "name": "Timestorm, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-3-timestorm-part-3/4000-164067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164006/", + "id": 164006, + "name": "American Son: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-599-american-son-conclusion/4000-164006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298337/", + "id": 298337, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-21/4000-298337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292719/", + "id": 292719, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-guerreros-3-volume-3/4000-292719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289827/", + "id": 289827, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-primera-linea-5/4000-289827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289815/", + "id": 289815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-8/4000-289815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172521/", + "id": 172521, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dr-doom-and-the-masters-of-evil-1-tpb/4000-172521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171724/", + "id": 171724, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-shattering-1-tpb/4000-171724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171720/", + "id": 171720, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-classic-1-volume-1/4000-171720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170154/", + "id": 170154, + "name": "Ape-okolips Now!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-prime-eight-1-ape-okolips-now/4000-170154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162625/", + "id": 162625, + "name": "No Substitute", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-52-no-substitute/4000-162625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162247/", + "id": 162247, + "name": "Women Love Him, Men Want To Be Him", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-sinister-spider-man-1-women-love-him-me/4000-162247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162083/", + "id": 162083, + "name": "The Last Full Measure", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-12-the-last-full-measure/4000-162083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161003/", + "id": 161003, + "name": "Doll Winners Squad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-37-doll-winners-squad/4000-161003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160990/", + "id": 160990, + "name": "Just An Old Sweet Song; Into The fire; Loa And order;", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-7-just-an-old-sweet-song/4000-160990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160540/", + "id": 160540, + "name": "The Last Stand of Mr. Negative", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-mister-negative-1-the-last-stand-of-mr-/4000-160540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159239/", + "id": 159239, + "name": "Part 3 of 5", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings-3-part-3-of-5/4000-159239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430393/", + "id": 430393, + "name": "Self-Help for Stupid, Ugly Losers! (Freud, Jung and Joseph Campbell)", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-4-self-help-for-stupid-ugly-lo/4000-430393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170720/", + "id": 170720, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-216/4000-170720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424861/", + "id": 424861, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-61/4000-424861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169678/", + "id": 169678, + "name": "New Avengers: Power", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-power-1-new-avengers-power/4000-169678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716068/", + "id": 716068, + "name": "Police and Thieves", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-189-police-and-t/4000-716068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295664/", + "id": 295664, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-63/4000-295664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175021/", + "id": 175021, + "name": "Angels And Devils", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-5-angels-and-devils/4000-175021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424065/", + "id": 424065, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-60/4000-424065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255944/", + "id": 255944, + "name": "The WRATH of CAPTAIN AMERICA!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-84-the-wrath-of-captain/4000-255944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198660/", + "id": 198660, + "name": "Spider-Man: Crime and Punisher", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-crime-and-punisher-1-spider-man-crime-a/4000-198660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166262/", + "id": 166262, + "name": "Fantastic Four: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-fantastic-four-requiem-1-fantastic-four-/4000-166262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828278/", + "id": 828278, + "name": "L'alliance avec Ironman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-8-lalliance-avec-ir/4000-828278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383197/", + "id": 383197, + "name": "Морской бой", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-158-wikiissu/4000-383197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383196/", + "id": 383196, + "name": "Кошачья драка!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-157-wikiissu/4000-383196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382475/", + "id": 382475, + "name": "Удивительные друзья. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-172-2/4000-382475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382474/", + "id": 382474, + "name": "Удивительные друзья. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-173-3/4000-382474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337691/", + "id": 337691, + "name": "Marvel 1602", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-21-marvel-1602/4000-337691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295725/", + "id": 295725, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-25/4000-295725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295444/", + "id": 295444, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-115/4000-295444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290278/", + "id": 290278, + "name": "Die fünf Albträume 2", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2-die-funf-albtraume-2/4000-290278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264411/", + "id": 264411, + "name": "When Gods Clash!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-180-when-gods-clash/4000-264411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232118/", + "id": 232118, + "name": "Volume Eleven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-11-volum/4000-232118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203577/", + "id": 203577, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-animal-attack-1-volum/4000-203577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202611/", + "id": 202611, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders-1-tpb/4000-202611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201635/", + "id": 201635, + "name": "The Last Knights Of Wundagore, Part One; From Russia... With Hate!; You Can't Eat Just Once!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-triple-action-3-the-last-knights-of-wundago/4000-201635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200647/", + "id": 200647, + "name": "Book Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles-4-book-four/4000-200647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198659/", + "id": 198659, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-ties-1-tpb/4000-198659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191366/", + "id": 191366, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-classic-1-tpb/4000-191366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167069/", + "id": 167069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/devil-hulk-152/4000-167069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161824/", + "id": 161824, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-54-untitled/4000-161824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161727/", + "id": 161727, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-40/4000-161727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161624/", + "id": 161624, + "name": "For the Sake of Mischief", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-zodiac-1-for-the-sake-of-mischief/4000-161624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161518/", + "id": 161518, + "name": "Utopia Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengersuncanny-x-men-utopia-1-utopia-chapter/4000-161518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161499/", + "id": 161499, + "name": "American Son, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-598-american-son-part-4/4000-161499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160414/", + "id": 160414, + "name": "Part One", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-spider-man-requiem-1-part-one/4000-160414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159759/", + "id": 159759, + "name": "American Son Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-597-american-son-part-3/4000-159759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159720/", + "id": 159720, + "name": "A Mile In My Moccasins Part 2; One-Percenter Part 2", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-74-a-mile-in-my-moccasins-part-2-one-per/4000-159720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159389/", + "id": 159389, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-spider-man-one-shot-1/4000-159389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159270/", + "id": 159270, + "name": "Public Exposure, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-5-public-exposure-pt-1/4000-159270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159240/", + "id": 159240, + "name": "American Son Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-596-american-son-part-2/4000-159240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298204/", + "id": 298204, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-30/4000-298204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295871/", + "id": 295871, + "name": "¡Karma... Posee a la Gente!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-11-karma-posee-a-la-gente/4000-295871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290848/", + "id": 290848, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-19/4000-290848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203181/", + "id": 203181, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-the-last-stand-1-volume-2/4000-203181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187200/", + "id": 187200, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-fighting-chance-acceptance-1-tpb/4000-187200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187198/", + "id": 187198, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-fighting-chance-denial-1-tpb/4000-187198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185385/", + "id": 185385, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus-by-ed-brubaker-1-volume-one/4000-185385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162565/", + "id": 162565, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/official-index-to-the-marvel-universe-7-volume-sev/4000-162565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159873/", + "id": 159873, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-short-halloween-1/4000-159873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159556/", + "id": 159556, + "name": "This Man - This Monkey!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-grunt-line-1-this-man-this-monkey/4000-159556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158696/", + "id": 158696, + "name": "Royal Allies", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-11-royal-allies/4000-158696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158364/", + "id": 158364, + "name": "Which Wish?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-36-which-wish/4000-158364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157943/", + "id": 157943, + "name": "PVP (Pete Vs. Pete)", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-51-pvp-pete-vs-pete/4000-157943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157850/", + "id": 157850, + "name": "Exit Interview; Who Killed Gwen Reilly?; Litter Bugged Out!; Between Flights", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-6-exit-interview-who-kil/4000-157850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157784/", + "id": 157784, + "name": "Taking the Fall", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-5-taking-the-fall/4000-157784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156683/", + "id": 156683, + "name": "The Dragon's Corridor, Pt. 3 / Inside America", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-4-the-dragon-s-corridor-pt-3-insid/4000-156683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156678/", + "id": 156678, + "name": "24/7 Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-593-247-part-two/4000-156678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156652/", + "id": 156652, + "name": "Die Hard the Hunter; Endless Stolen Sky, Part 4; Demons; Crashing Weddings", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-tales-4-die-hard-the-hunter-endless-st/4000-156652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286200/", + "id": 286200, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/essential-spectacular-spider-man-4-volume-four/4000-286200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205553/", + "id": 205553, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-punisher-war-journal-1-tpb/4000-205553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203100/", + "id": 203100, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-heroes-for-hire-1-tpb/4000-203100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716067/", + "id": 716067, + "name": "Public Enemy", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-188-public-enemy/4000-716067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424064/", + "id": 424064, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-59/4000-424064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256647/", + "id": 256647, + "name": "The FINAL BATTLE!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-7-the-final-battle/4000-256647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224211/", + "id": 224211, + "name": "1985 Trade Paperback", + "site_detail_url": "https://comicvine.gamespot.com/1985-1-1985-trade-paperback/4000-224211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175490/", + "id": 175490, + "name": "Venom: Dark Origin", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin-1-venom-dark-origin/4000-175490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175020/", + "id": 175020, + "name": "There's A New Spider-Girl In Town!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-4-theres-a-new-spider-girl/4000-175020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168470/", + "id": 168470, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-two-in-one-3-volume-3/4000-168470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295663/", + "id": 295663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-62/4000-295663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424063/", + "id": 424063, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-58/4000-424063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255942/", + "id": 255942, + "name": "The HULK Battles The RED KING!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-83-the-hulk-battles-the/4000-255942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240155/", + "id": 240155, + "name": "Hulk: Red & Green", + "site_detail_url": "https://comicvine.gamespot.com/hulk-red-green-1-hulk-red-green/4000-240155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163617/", + "id": 163617, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-70th-anniversary-collection-1-tpb/4000-163617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893854/", + "id": 893854, + "name": "Ultimatum 1/3", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-41-ultimatum-13/4000-893854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716066/", + "id": 716066, + "name": "Frightful", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-187-frightful/4000-716066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431169/", + "id": 431169, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-marko-djurdjevic-1-hc/4000-431169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383194/", + "id": 383194, + "name": "На предельной скорости!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-156-wikiissu/4000-383194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383193/", + "id": 383193, + "name": "Был бы у меня такой молот...", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-155-wikiissu/4000-383193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382477/", + "id": 382477, + "name": "Смерть Гоблина. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-170-6/4000-382477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382476/", + "id": 382476, + "name": "Удивительные друзья. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-171-1/4000-382476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301019/", + "id": 301019, + "name": "The World's Most Unlikeable Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/the-irredeemable-ant-man-1-the-worlds-most-unlikea/4000-301019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295724/", + "id": 295724, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-24/4000-295724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295443/", + "id": 295443, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-114/4000-295443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291779/", + "id": 291779, + "name": "Marvel Mythos", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-81-marvel-mythos/4000-291779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284135/", + "id": 284135, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-7/4000-284135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233715/", + "id": 233715, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-233715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199542/", + "id": 199542, + "name": "Bad Sports; A Mountain From An Anthill!: Surprise!!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-triple-action-2-bad-sports-a-mountain-from-/4000-199542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192309/", + "id": 192309, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-6/4000-192309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185468/", + "id": 185468, + "name": "Ultimates Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-omnibus-1-ultimates-omnibus/4000-185468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172975/", + "id": 172975, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-maybreak-1-volume-5/4000-172975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165510/", + "id": 165510, + "name": "The Ugly Truth", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-5-the-ugly-truth/4000-165510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158802/", + "id": 158802, + "name": "American Son, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-595-american-son-part-1/4000-158802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158700/", + "id": 158700, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-53-untitled/4000-158700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158680/", + "id": 158680, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles-3-book-three/4000-158680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157851/", + "id": 157851, + "name": "The Bridge, Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-fantastic-four-3-the-bridge-chapter-thr/4000-157851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157778/", + "id": 157778, + "name": "24/7 Finale", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-594-247-finale/4000-157778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157769/", + "id": 157769, + "name": "Timestorm, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-2-timestorm-part-2/4000-157769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157737/", + "id": 157737, + "name": "Days Gone By; Sentinel Of Liberty; Passing The Torch", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-50-days-gone-by-sentinel-of-libert/4000-157737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157332/", + "id": 157332, + "name": "A Mile In My Moccasins, Part 1 / One-Percenter, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-73-a-mile-in-my-moccasins-part-1-one-per/4000-157332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298336/", + "id": 298336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-20/4000-298336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297901/", + "id": 297901, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-17/4000-297901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297562/", + "id": 297562, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-3-2/4000-297562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291649/", + "id": 291649, + "name": "El Último Asalto", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-marvel-knights-spiderman-2-el-ultimo/4000-291649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285251/", + "id": 285251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-6/4000-285251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233678/", + "id": 233678, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-warlock-2-volume-2/4000-233678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178295/", + "id": 178295, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars-1/4000-178295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157043/", + "id": 157043, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-132-ultimatum/4000-157043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156399/", + "id": 156399, + "name": "Past Tense", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-10-past-tense/4000-156399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156363/", + "id": 156363, + "name": "Lover's Leaper", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-35-lovers-leaper/4000-156363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155711/", + "id": 155711, + "name": "With Great Ape Power...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-amazing-spider-monkey-special-1-with-g/4000-155711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155633/", + "id": 155633, + "name": "Sinister Six(Teenth); Nightmare Commute!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-50-sinister-sixteenth/4000-155633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155160/", + "id": 155160, + "name": "Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings-1-part-1-of-5/4000-155160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154515/", + "id": 154515, + "name": "Assisted Living; D-Man in Slum City Warriors; American Eagle in Just A Little Old Fashioned Justice; Hawkeye And The Curse Of The Crimson Crown", + "site_detail_url": "https://comicvine.gamespot.com/marvel-assistant-sized-spectacular-1-assisted-livi/4000-154515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423867/", + "id": 423867, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-57/4000-423867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170729/", + "id": 170729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-214/4000-170729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-206589/", + "id": 206589, + "name": "The Strange Bonds of Strange People", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-tales-the-thing-1-the-strange-bonds-of/4000-206589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198664/", + "id": 198664, + "name": "Spider-Man: New Ways to Die", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-new-ways-to-die-1-spider-man-new-ways-t/4000-198664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287703/", + "id": 287703, + "name": "Krieg der Symbionten", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-66-krieg-der-symbionten/4000-287703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295662/", + "id": 295662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-61/4000-295662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716065/", + "id": 716065, + "name": "Night of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-186-night-of-the/4000-716065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255941/", + "id": 255941, + "name": "Attack of The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-82-attack-of-the-punish/4000-255941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189716/", + "id": 189716, + "name": "Secret Wars II Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-omnibus-1-secret-wars-ii-omnibus/4000-189716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175024/", + "id": 175024, + "name": "Into The Fire", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-3-into-the-fire/4000-175024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170734/", + "id": 170734, + "name": "Avengers: The Initiative: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion-1-avengers/4000-170734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164373/", + "id": 164373, + "name": "Prey For Life...", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-56-prey-for-life/4000-164373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213954/", + "id": 213954, + "name": "Sentry: Age of the Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry-age-of-the-sentry-1-sentry-age-of-the-sentr/4000-213954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472718/", + "id": 472718, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-doctor-strange-4-volume-4/4000-472718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383192/", + "id": 383192, + "name": "С приветом из Латверии!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-154-wikiissu/4000-383192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383191/", + "id": 383191, + "name": "Атакует... Рой!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-153-wikiissu/4000-383191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383190/", + "id": 383190, + "name": "Школа испытаний", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-152-wikiissu/4000-383190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382479/", + "id": 382479, + "name": "Смерть Гоблина. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-168-4/4000-382479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382478/", + "id": 382478, + "name": "Смерть Гоблина. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-169-5/4000-382478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295723/", + "id": 295723, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-23/4000-295723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295442/", + "id": 295442, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-113/4000-295442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249310/", + "id": 249310, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/punisher-year-one-1-tpb/4000-249310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203779/", + "id": 203779, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-the-times-they-are-a-ch/4000-203779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200655/", + "id": 200655, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles-2-book-two/4000-200655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199359/", + "id": 199359, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-origins-1-tpb/4000-199359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172739/", + "id": 172739, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-classic-1-volume-1/4000-172739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155748/", + "id": 155748, + "name": "24/7 Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-592-247-part-one/4000-155748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155737/", + "id": 155737, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-52-untitled/4000-155737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155455/", + "id": 155455, + "name": "Face Front Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-591-face-front-part-2/4000-155455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155239/", + "id": 155239, + "name": "Timestorm, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-1-timestorm-part-1/4000-155239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154458/", + "id": 154458, + "name": "The Bridge, Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-fantastic-four-2-the-bridge-chapter-two/4000-154458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154426/", + "id": 154426, + "name": "Face Front Part One: Together For The First Time Again", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-590-face-front-part-one-tog/4000-154426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298203/", + "id": 298203, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-29/4000-298203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297561/", + "id": 297561, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-3-1/4000-297561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295870/", + "id": 295870, + "name": "Spiderman y la Viuda Negra", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-10-spiderman-y-la-viuda-n/4000-295870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232259/", + "id": 232259, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-9-volume-9/4000-232259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186411/", + "id": 186411, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-worlds-apart-1-hctpb/4000-186411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169904/", + "id": 169904, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-classics-25/4000-169904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156184/", + "id": 156184, + "name": "Who is Gwen Reilly?; Relevant Experience; Treasure Hunted; No More Hay", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-5-who-is-gwen-reilly-rel/4000-156184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155491/", + "id": 155491, + "name": "The Way Things Are...", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2009-avengers-1-the-way-things/4000-155491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154583/", + "id": 154583, + "name": "Bad Day At The Banana Factory; Charles Darwin Presents: The Awesome Origin Of The Species!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-speedball-special-1-bad-day-at-the-ban/4000-154583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154516/", + "id": 154516, + "name": "Yesterday Gambit", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-9-yesterday-gambit/4000-154516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154288/", + "id": 154288, + "name": "Playing Hero", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-49-playing-hero/4000-154288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153886/", + "id": 153886, + "name": "Sgt. Fury and His Howling Commandos!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-34-sgt-fury-and-his-how/4000-153886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153668/", + "id": 153668, + "name": "With Great Responsibility Comes Great Power - Character Assassination: Coda; Nice Things; Loose Ends", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-extra-3-with-great-responsi/4000-153668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153665/", + "id": 153665, + "name": "Never Say Die!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-30-never-say-die/4000-153665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203582/", + "id": 203582, + "name": "Bringers of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thor-1-bringers-of-the-storm/4000-203582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164374/", + "id": 164374, + "name": "Wanted... Dead or Alive!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-55-wanted-dead-or-alive/4000-164374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716064/", + "id": 716064, + "name": "Wing Dings!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-185-wing-dings/4000-716064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335565/", + "id": 335565, + "name": "Book 2", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-secret-invasion-2-book-2/4000-335565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287702/", + "id": 287702, + "name": "Krieg der Symbionten", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-65-krieg-der-symbionten/4000-287702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422915/", + "id": 422915, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-54/4000-422915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175019/", + "id": 175019, + "name": "Who Killed Gwen Reilly?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-2-who-killed-gwen-reilly/4000-175019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173687/", + "id": 173687, + "name": "Book 1", + "site_detail_url": "https://comicvine.gamespot.com/exiles-ultimate-collection-1-book-1/4000-173687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169725/", + "id": 169725, + "name": "Mighty Avengers: Secret Invasion, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-two-1-mighty-/4000-169725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295661/", + "id": 295661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-60/4000-295661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289785/", + "id": 289785, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-18/4000-289785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260778/", + "id": 260778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends-31/4000-260778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443465/", + "id": 443465, + "name": "Gli Incredibili X-Men", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-10-gli-incredibili-x-men/4000-443465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383189/", + "id": 383189, + "name": "Хорошо, сынок!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-151-wikiissu/4000-383189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382481/", + "id": 382481, + "name": "Смерть Гоблина. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-166-2/4000-382481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382480/", + "id": 382480, + "name": "Смерть Гоблина. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-167-3/4000-382480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331639/", + "id": 331639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad-annual-2010/4000-331639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295722/", + "id": 295722, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-22/4000-295722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295441/", + "id": 295441, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-112/4000-295441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280461/", + "id": 280461, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-women-1-tpb/4000-280461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251493/", + "id": 251493, + "name": "Death In Japan!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-164-death-in-japan/4000-251493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224086/", + "id": 224086, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-3-who-killed-the-scarlet-witch-1-tpb/4000-224086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179762/", + "id": 179762, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-2-volume-t/4000-179762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160882/", + "id": 160882, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-9-volume-9/4000-160882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159322/", + "id": 159322, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-poster-book-1/4000-159322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159285/", + "id": 159285, + "name": "A Time To Die", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-4-a-time-to-die/4000-159285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157308/", + "id": 157308, + "name": "The Buddy System; Walk Tall; Best Of Show", + "site_detail_url": "https://comicvine.gamespot.com/marvel-triple-action-1-the-buddy-system-walk-tall-/4000-157308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156794/", + "id": 156794, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-500/4000-156794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153967/", + "id": 153967, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-51/4000-153967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153955/", + "id": 153955, + "name": "Marked", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-589-marked/4000-153955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153874/", + "id": 153874, + "name": "One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-human-torch-in-bahia-de-los-muertos/4000-153874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153667/", + "id": 153667, + "name": "Character Assassination, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-588-character-assassination/4000-153667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153066/", + "id": 153066, + "name": "Return of the King, Part One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-116-return-of-the-king-part-one/4000-153066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298335/", + "id": 298335, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-19/4000-298335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291315/", + "id": 291315, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-52/4000-291315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222752/", + "id": 222752, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-1-volume-one/4000-222752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153074/", + "id": 153074, + "name": "The Mutant Hunter", + "site_detail_url": "https://comicvine.gamespot.com/x-menspider-man-4-the-mutant-hunter/4000-153074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152928/", + "id": 152928, + "name": "A Matter Of Trust; Career Paths!; Canine Commotion; The Secret Origin Of Swiney Girl!; In The Grip Of The Goblin", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-4-a-matter-of-trust-care/4000-152928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152571/", + "id": 152571, + "name": "Two For One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-48-two-for-one/4000-152571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152481/", + "id": 152481, + "name": "You're Driving Me Crazy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-33-youre-driving-me-cra/4000-152481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151957/", + "id": 151957, + "name": "The End Of Mays", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-29-the-end-of-mays/4000-151957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716063/", + "id": 716063, + "name": "Friend or Foe?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-184-friend-or-fo/4000-716063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164375/", + "id": 164375, + "name": "Spider-Man Vs Captain America!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-53-spider-man-vs-captai/4000-164375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156156/", + "id": 156156, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-212/4000-156156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363457/", + "id": 363457, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-platinum-the-definitive-wolverine-1-wolveri/4000-363457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172978/", + "id": 172978, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-amazing-spider-man-1-tpb/4000-172978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167612/", + "id": 167612, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/x-men-omnibus-1-volume-one/4000-167612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337554/", + "id": 337554, + "name": "Guerra Segreta", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-5-guerra-segreta/4000-337554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422715/", + "id": 422715, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-52/4000-422715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287701/", + "id": 287701, + "name": "Erstaunliche Feinde", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-64-erstaunliche-feinde/4000-287701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264490/", + "id": 264490, + "name": "Mutant Versus Mutant!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-176-mutant-versus-mutant/4000-264490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198663/", + "id": 198663, + "name": "Spider-Man: Kraven's First Hunt", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-first-hunt-1-spider-man-kravens/4000-198663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175004/", + "id": 175004, + "name": "Who Is Gwen Reilly?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-1-who-is-gwen-reilly/4000-175004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169711/", + "id": 169711, + "name": "Mighty Avengers: Secret Invasion, Book One", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one-1-mighty-/4000-169711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220328/", + "id": 220328, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-files-1/4000-220328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-337551/", + "id": 337551, + "name": "Spider-Man Soltanto un altro giorno", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-4-spider-man-soltanto-un/4000-337551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295660/", + "id": 295660, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-59/4000-295660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716062/", + "id": 716062, + "name": "This Man, This Monster!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-183-this-man-thi/4000-716062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209220/", + "id": 209220, + "name": "Marvel Zombies 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-1-marvel-zombies-2/4000-209220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335770/", + "id": 335770, + "name": "Spder-Man Back in Black", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-3-spder-man-back-in-blac/4000-335770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443461/", + "id": 443461, + "name": "Wolverine: Nemico pubblico", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-6-wolverine-nemico-pubbl/4000-443461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422703/", + "id": 422703, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-51/4000-422703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383188/", + "id": 383188, + "name": "Напарник", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-150-wikiissu/4000-383188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383187/", + "id": 383187, + "name": "Возвращение Галактуса", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-149-wikiissu/4000-383187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382483/", + "id": 382483, + "name": "Разговор", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-164-wikiissue/4000-382483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382482/", + "id": 382482, + "name": "Смерть Гоблина. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-165-1/4000-382482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298952/", + "id": 298952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-53/4000-298952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295721/", + "id": 295721, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-21/4000-295721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295440/", + "id": 295440, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-111/4000-295440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263479/", + "id": 263479, + "name": "(211-2) Platinum", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-211-211-2-platinum/4000-263479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255156/", + "id": 255156, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-3/4000-255156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211377/", + "id": 211377, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-1-hc/4000-211377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203576/", + "id": 203576, + "name": "Volume 12", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-jumping-to-conclusion/4000-203576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192308/", + "id": 192308, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-5/4000-192308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190607/", + "id": 190607, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled-iron-man-thor-and-captain-am/4000-190607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181919/", + "id": 181919, + "name": "The Invincible Iron Man: The Five Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-the-five-nightmares-1-the-invi/4000-181919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176292/", + "id": 176292, + "name": "Avengers: Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/avengers-hawkeye-1-avengers-hawkeye/4000-176292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175652/", + "id": 175652, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-the-wonder-years-1-volume-3/4000-175652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171719/", + "id": 171719, + "name": "Secret Invasion: New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-new-warriors-1-secret-invasion-new/4000-171719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155705/", + "id": 155705, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-classic-x-men-3-volume-3/4000-155705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153917/", + "id": 153917, + "name": "Who Wants To Watch Watchmen?", + "site_detail_url": "https://comicvine.gamespot.com/mad-499-who-wants-to-watch-watchmen/4000-153917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152815/", + "id": 152815, + "name": "Deep Wounds", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera-4-deep-wounds/4000-152815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152792/", + "id": 152792, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-131-ultimatum/4000-152792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152604/", + "id": 152604, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-50-untitled/4000-152604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152412/", + "id": 152412, + "name": "Last Stand of the Spirits of Vengeance, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-32-last-stand-of-the-spirits-of-vengea/4000-152412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152355/", + "id": 152355, + "name": "Begin Again", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-18-begin-again/4000-152355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152231/", + "id": 152231, + "name": "Character Assassination, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-587-character-assassination/4000-152231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151879/", + "id": 151879, + "name": "Monsters Myths And Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tv-galactus-the-real-story-1-monsters-myths/4000-151879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151826/", + "id": 151826, + "name": "Character Assassination, Interlude", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-586-character-assassination/4000-151826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151129/", + "id": 151129, + "name": "Character Assassination, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-585-character-assassination/4000-151129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298202/", + "id": 298202, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-28/4000-298202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295869/", + "id": 295869, + "name": "No Es Manera DeTratar A Una Dama", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-9-no-es-manera-detratar-a/4000-295869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291314/", + "id": 291314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-51/4000-291314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290349/", + "id": 290349, + "name": "Ojo de Halcón", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-6-ojo-de-halcon/4000-290349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285153/", + "id": 285153, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-assemble-1-volume-1/4000-285153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246529/", + "id": 246529, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-secret-invasion-1-tpb/4000-246529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237656/", + "id": 237656, + "name": "Volume 21", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-war-of-the-symbiotes-1-volume-/4000-237656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200235/", + "id": 200235, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-x-menfantastic-four-1-hctpb/4000-200235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198669/", + "id": 198669, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-3-volume-3/4000-198669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153520/", + "id": 153520, + "name": "The Death Of The Sentry", + "site_detail_url": "https://comicvine.gamespot.com/the-age-of-the-sentry-6-the-death-of-the-sentry/4000-153520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151824/", + "id": 151824, + "name": "Cry, D'Spayre", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-8-cry-d-spayre/4000-151824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150767/", + "id": 150767, + "name": "Black And White, A Night Out With Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-extra-2-black-and-white-a-n/4000-150767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150621/", + "id": 150621, + "name": "The Big Payoff?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-32-the-big-payoff/4000-150621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150053/", + "id": 150053, + "name": "... Everything You Read...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-47-everything-you-rea/4000-150053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150037/", + "id": 150037, + "name": "Grim, Be My Goblin!; Li'l Benjy - The SPectacular Spider-Baby: Cool Cake!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-28-grim-be-my-goblin-lil-b/4000-150037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149801/", + "id": 149801, + "name": "Living In Darkness, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/punisher-1-living-in-darkness-part-1/4000-149801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335453/", + "id": 335453, + "name": "La Morte di Capitan America", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-2-la-morte-di-capitan-am/4000-335453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220393/", + "id": 220393, + "name": "Wolverine: Inside The World Of The Living Weapon", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-inside-the-world-of-the-living-weapon-1-/4000-220393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399460/", + "id": 399460, + "name": "Unaufhaltsam", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-paperbacks-4-unaufhaltsam/4000-399460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224903/", + "id": 224903, + "name": "Bobby And Sam In Mojoworld, Part 4: Crashing Weddings", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-tales-mojoworld-4-bobby-and-sam-in-moj/4000-224903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169668/", + "id": 169668, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-secret-invasion-1-book-one/4000-169668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166834/", + "id": 166834, + "name": "Saga", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-saga-1-saga/4000-166834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312111/", + "id": 312111, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-1-civil-war/4000-312111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385610/", + "id": 385610, + "name": "Том 2. Тяжело в учениии", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-2-2/4000-385610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716061/", + "id": 716061, + "name": "This Man, This Monster!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-182-this-man-thi/4000-716061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422677/", + "id": 422677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-50/4000-422677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385918/", + "id": 385918, + "name": "Человек-Паук и Росомаха", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-i-rosomakha-spetsialnoye-isdaniye-1-/4000-385918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172997/", + "id": 172997, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-1-tpb/4000-172997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172448/", + "id": 172448, + "name": "Captain Britain and MI:13 : Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-mi13-secret-invasion-1-captain/4000-172448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287700/", + "id": 287700, + "name": "Erstaunliche Freunde", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-63-erstaunliche-freunde/4000-287700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295659/", + "id": 295659, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-58/4000-295659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289784/", + "id": 289784, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-17/4000-289784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150597/", + "id": 150597, + "name": "Mr. & Mrs. Thing", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-563-mr-mrs-thing/4000-150597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411423/", + "id": 411423, + "name": "Superstars", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-12-superstars/4000-411423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149803/", + "id": 149803, + "name": "Mind On Fire, Part 2: Burning Questions", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-582-mind-on-fire-part-2-bur/4000-149803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422670/", + "id": 422670, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-49/4000-422670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255157/", + "id": 255157, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-2/4000-255157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203179/", + "id": 203179, + "name": "Fantastic Four: World's Greatest", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-worlds-greatest-1-fantastic-four-wo/4000-203179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742452/", + "id": 742452, + "name": "Potere Assoluto 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-50-potere-assoluto-2/4000-742452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385112/", + "id": 385112, + "name": "Ослепленные светом. Часть 2; Когда исчезли мутанты. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-156-2-1/4000-385112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383186/", + "id": 383186, + "name": "Кто хочет стать (другим) супергероем?", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-148-wikiissu/4000-383186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383185/", + "id": 383185, + "name": "Во власти ненависти!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-147-wikiissu/4000-383185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382485/", + "id": 382485, + "name": "Последние Рыцари. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-162-4/4000-382485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382484/", + "id": 382484, + "name": "Последние Рыцари. Заключение", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-163-wikiissue/4000-382484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355496/", + "id": 355496, + "name": "Let Them Eat Cake!/Welcome to the Jungle!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-6-let-them-eat-cakewelcome-to-the-ju/4000-355496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300554/", + "id": 300554, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-87/4000-300554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295439/", + "id": 295439, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-110/4000-295439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288618/", + "id": 288618, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-50/4000-288618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264497/", + "id": 264497, + "name": "The Wedding Of Storm And The Black Panther!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-175-the-wedding-of-storm-and-the-b/4000-264497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212761/", + "id": 212761, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-ascension-1-volume-6/4000-212761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204677/", + "id": 204677, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-lady-bullseye-1-tpb/4000-204677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201985/", + "id": 201985, + "name": "Torna Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/il-giornalino-200912-torna-spider-man/4000-201985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151924/", + "id": 151924, + "name": "Blood and Iron. Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-20-blood-and-iron-conclusion/4000-151924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150993/", + "id": 150993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-dark-reign-1/4000-150993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150692/", + "id": 150692, + "name": "Shadows Within", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera-3-shadows-within/4000-150692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150690/", + "id": 150690, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-130-ultimatum/4000-150690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150658/", + "id": 150658, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-49-untitled/4000-150658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150521/", + "id": 150521, + "name": "America The Beautiful", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-america-the-beautif/4000-150521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150515/", + "id": 150515, + "name": "Character Assassination, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-584-character-assassination/4000-150515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150512/", + "id": 150512, + "name": "The Smartest Man in the Room", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-21-the-smartest-man-in-the-roo/4000-150512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149908/", + "id": 149908, + "name": "Platonic", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-583-platonic/4000-149908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149838/", + "id": 149838, + "name": "Fear and Mr. Parker", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fear-itself-1-fear-and-mr-parker/4000-149838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-485939/", + "id": 485939, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/army-of-darkness-the-long-road-home-1-tpb/4000-485939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298334/", + "id": 298334, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-18/4000-298334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296055/", + "id": 296055, + "name": "Con amigos como estos", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-family-2-con-amigos-como-estos/4000-296055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289809/", + "id": 289809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-2/4000-289809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149482/", + "id": 149482, + "name": "What If...Doctor Doom Kept The Beyonder's Power; What If The Runaways Became The Young Avengers, Part 5 (of 5)", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars-1-what-ifdoctor-doom-kept-the-/4000-149482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149359/", + "id": 149359, + "name": "The Funeral Of The Invisible Woman: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-562-the-funeral-of-the-invisible-wo/4000-149359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149316/", + "id": 149316, + "name": "The Punch; Common Ground!; The Amazing Spider-Ma'am; Bridge And Tunnel; Best Of Enemies!", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-3-the-punch-common-groun/4000-149316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149289/", + "id": 149289, + "name": "Should Old Acquaintance Be Forgot", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-7-should-old-acquaintance-be-for/4000-149289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149171/", + "id": 149171, + "name": "Good Things Come To Those Who Bait?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-31-good-things-come-to-/4000-149171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148697/", + "id": 148697, + "name": "What If Mary Jane had been shot instead of Aunt May?; What If The Runaways Became The Young Avengers?, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-back-in-black-1-what-if-mary-ja/4000-148697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148090/", + "id": 148090, + "name": "Silent Nights", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-46-silent-nights/4000-148090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-147292/", + "id": 147292, + "name": "New Fantastic Four; The Mini Marvels Present... World War Hulk: Final Showdown; What if the Runaways Became the Toung Avengers, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/what-if-newer-fantastic-four-1-new-fantastic-four-/4000-147292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145746/", + "id": 145746, + "name": "Last Hunts", + "site_detail_url": "https://comicvine.gamespot.com/x-menspider-man-2-last-hunts/4000-145746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145540/", + "id": 145540, + "name": "Who's Been Sleeping In My Head?!; Flight Slight!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-27-whos-been-sleeping-in-m/4000-145540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145487/", + "id": 145487, + "name": "What If...Iron Man Had Died?; What If The Runaways Became The Young Avengers?, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/what-if-fallen-son-1-what-ifiron-man-had-died-what/4000-145487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144410/", + "id": 144410, + "name": "What If... Scarlet Witch Ended The \"House Of M\" By Saying \"No More Powers\"?; What If... Runaways Became The Young Avengers? Part 1 Of 5", + "site_detail_url": "https://comicvine.gamespot.com/what-if-house-of-m-1-what-if-scarlet-witch-ended-t/4000-144410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716060/", + "id": 716060, + "name": "Space Race!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-181-space-race/4000-716060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153172/", + "id": 153172, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-210/4000-153172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-421397/", + "id": 421397, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-48/4000-421397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172976/", + "id": 172976, + "name": "Secret Invasion: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-captain-marvel-1-secret-invasion-c/4000-172976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287699/", + "id": 287699, + "name": "Erstaunliche Freunde", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-62-erstaunliche-freunde/4000-287699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295785/", + "id": 295785, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-21/4000-295785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295658/", + "id": 295658, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-57/4000-295658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225102/", + "id": 225102, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/presidents-day-celebration-1/4000-225102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716059/", + "id": 716059, + "name": "The Good, the Bad and the Spider", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-180-the-good-the/4000-716059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-421093/", + "id": 421093, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-47/4000-421093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255164/", + "id": 255164, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-1/4000-255164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187188/", + "id": 187188, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/infinity-crusade-2-volume-2/4000-187188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172944/", + "id": 172944, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-1-secret-invasion/4000-172944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827486/", + "id": 827486, + "name": "Dans les griffes de Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-1-dans-les-griffes-/4000-827486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385111/", + "id": 385111, + "name": "Ослепленные светом. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-155-1/4000-385111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383184/", + "id": 383184, + "name": "Новые Мстители", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-146-wikiissu/4000-383184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383183/", + "id": 383183, + "name": "В джунглях Ваканды!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-145-wikiissu/4000-383183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382487/", + "id": 382487, + "name": "Последние Рыцари. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-160-2/4000-382487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382486/", + "id": 382486, + "name": "Последние Рыцари. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-161-3/4000-382486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295720/", + "id": 295720, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-20/4000-295720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295719/", + "id": 295719, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-19/4000-295719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295438/", + "id": 295438, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-109/4000-295438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288617/", + "id": 288617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-49/4000-288617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264504/", + "id": 264504, + "name": "The X-Traitor!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-174-the-x-traitor/4000-264504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256072/", + "id": 256072, + "name": "A New Story Begins... SHE-HULK Under Fire!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-78-a-new-story-begins-s/4000-256072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226251/", + "id": 226251, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/eternals-to-slay-a-god-1-tpb/4000-226251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203969/", + "id": 203969, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-hulk-and-iron-man-tri/4000-203969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203768/", + "id": 203768, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-the-new-recruits-1-volu/4000-203768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192307/", + "id": 192307, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-4/4000-192307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153916/", + "id": 153916, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-498/4000-153916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152978/", + "id": 152978, + "name": "Conspicuous Invasion", + "site_detail_url": "https://comicvine.gamespot.com/mini-marvels-secret-invasion-1-conspicuous-invasio/4000-152978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150006/", + "id": 150006, + "name": "Chapter 5", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin-5-chapter-5/4000-150006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149937/", + "id": 149937, + "name": "Making Sense Of The World", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera-2-making-sense-of-the-wo/4000-149937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148888/", + "id": 148888, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-129-ultimatum/4000-148888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148641/", + "id": 148641, + "name": "Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-48-dark-reign/4000-148641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148638/", + "id": 148638, + "name": "Secret Agent Danvers, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-34-secret-agent-danvers-part-3/4000-148638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-147327/", + "id": 147327, + "name": "Mind On Fire, Part One: The Trouble With Harry", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-581-mind-on-fire-part-one-t/4000-147327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146906/", + "id": 146906, + "name": "Jagannatha", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-219-jagannatha/4000-146906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146825/", + "id": 146825, + "name": "Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-20-epilogue/4000-146825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145935/", + "id": 145935, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-5/4000-145935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145545/", + "id": 145545, + "name": "Fill in the Blank", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-580-fill-in-the-blank/4000-145545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144913/", + "id": 144913, + "name": "Mysteries Of The Vestibule!", + "site_detail_url": "https://comicvine.gamespot.com/eternals-6-mysteries-of-the-vestibule/4000-144913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144886/", + "id": 144886, + "name": "Just One Little Thing", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera-1-just-one-little-thing/4000-144886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428792/", + "id": 428792, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ruins-1/4000-428792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298201/", + "id": 298201, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-27/4000-298201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295868/", + "id": 295868, + "name": "¡Miedo!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-8-miedo/4000-295868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291648/", + "id": 291648, + "name": "Entre Los Muertos", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-marvel-knights-spiderman-1-entre-los/4000-291648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289808/", + "id": 289808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-1/4000-289808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205177/", + "id": 205177, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-season-of-the-serpent-1-volume-10/4000-205177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185463/", + "id": 185463, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-home-invasion-1-tpb/4000-185463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185211/", + "id": 185211, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-5-volume-5/4000-185211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146803/", + "id": 146803, + "name": "A Very Strange Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-5-a-very-strange-da/4000-146803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142791/", + "id": 142791, + "name": "The Lady & The Tigra", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-30-the-lady-the-tigra/4000-142791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142782/", + "id": 142782, + "name": "Pieces Of The Puzzle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-45-pieces-of-the-puzz/4000-142782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142564/", + "id": 142564, + "name": "Man on Fire", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-6-man-on-fire/4000-142564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142044/", + "id": 142044, + "name": "The Replacement!; Li'l Benjy The Spectacular Spider-Baby in \"Christmas Crisis!\"", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-26-the-replacement-lil-ben/4000-142044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141605/", + "id": 141605, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-3-2-part-two/4000-141605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141555/", + "id": 141555, + "name": "The Strangest Teens Of All", + "site_detail_url": "https://comicvine.gamespot.com/x-menspider-man-1-the-strangest-teens-of-all/4000-141555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273892/", + "id": 273892, + "name": "Spider-Man - Mit Grosser Kraft...", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-38-spider-man-mit-grosser-kraft/4000-273892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420976/", + "id": 420976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-46/4000-420976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187678/", + "id": 187678, + "name": "Vol. 0", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne-0-vol-0/4000-187678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174246/", + "id": 174246, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/x-men-complete-onslaught-epic-4-volume-4/4000-174246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287698/", + "id": 287698, + "name": "Tod eines Kobolds", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-61-tod-eines-kobolds/4000-287698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716058/", + "id": 716058, + "name": "A Time to Live, a Time to Die", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-179-a-time-to-li/4000-716058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172998/", + "id": 172998, + "name": "Secret Wars Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-omnibus-1-secret-wars-omnibus/4000-172998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295657/", + "id": 295657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-56/4000-295657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289783/", + "id": 289783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-16/4000-289783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420975/", + "id": 420975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-45/4000-420975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893851/", + "id": 893851, + "name": "Sexe, mensonges & DVD (2)", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-38-sexe-mensonges-and-dvd-2/4000-893851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840350/", + "id": 840350, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-236/4000-840350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-755758/", + "id": 755758, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-amazing-friends-1-tpb/4000-755758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742450/", + "id": 742450, + "name": "Potere Assoluto 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-49-potere-assoluto-1/4000-742450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383182/", + "id": 383182, + "name": "Гостья из России!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-144-wikiissu/4000-383182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383181/", + "id": 383181, + "name": "Повелитель муравьев", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-143-wikiissu/4000-383181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382488/", + "id": 382488, + "name": "Последние Рыцари. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-159-1/4000-382488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382326/", + "id": 382326, + "name": "Сага о клонах. Эпилог", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-158-wikiissue/4000-382326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-340550/", + "id": 340550, + "name": "An Army of One", + "site_detail_url": "https://comicvine.gamespot.com/aafes-7th-edition-7-an-army-of-one/4000-340550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298379/", + "id": 298379, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-0/4000-298379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297442/", + "id": 297442, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-100/4000-297442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295840/", + "id": 295840, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-la-politica-en-los-comics-marvel-1/4000-295840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295718/", + "id": 295718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-18/4000-295718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295437/", + "id": 295437, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-108/4000-295437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291650/", + "id": 291650, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-secret-war-1/4000-291650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291639/", + "id": 291639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-dinastia-de-m-1/4000-291639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291234/", + "id": 291234, + "name": "Los Nuevos Exiliados", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-17-los-nuevos-exiliados/4000-291234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288656/", + "id": 288656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-espectacular-spiderman-21/4000-288656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277049/", + "id": 277049, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-165/4000-277049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275711/", + "id": 275711, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-3-volume-3/4000-275711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273908/", + "id": 273908, + "name": "Spider-Man - Die Wahre Klon-Saga", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-52-spider-man-die-wahre-klon-saga/4000-273908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209211/", + "id": 209211, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-dead-days-1-hctpb/4000-209211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205709/", + "id": 205709, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mini-marvels-ultimate-collection-1-tpb/4000-205709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193788/", + "id": 193788, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-first-to-last-1-hc/4000-193788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172974/", + "id": 172974, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-brand-new-may-1-volume-4/4000-172974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160956/", + "id": 160956, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-9-marvel-heroes/4000-160956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159198/", + "id": 159198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bbdo-campbells-diversity-ultimate-spider-manultima/4000-159198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155752/", + "id": 155752, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/apes-babes-the-art-of-frank-cho-1-book-one/4000-155752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148627/", + "id": 148627, + "name": "It Gets Worse...", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-2-it-gets-worse/4000-148627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146802/", + "id": 146802, + "name": "V-S Day", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-19-v-s-day/4000-146802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144346/", + "id": 144346, + "name": "Chapter Five: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-5-chapter-five-dark-rei/4000-144346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144345/", + "id": 144345, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-47-untitled/4000-144345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144233/", + "id": 144233, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-8/4000-144233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143285/", + "id": 143285, + "name": "War of the Symbiotes, Part 6: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-128-war-of-the-symbiotes-part-/4000-143285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142594/", + "id": 142594, + "name": "Unscheduled Stop Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-578-unscheduled-stop-part-1/4000-142594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142122/", + "id": 142122, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-4/4000-142122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142050/", + "id": 142050, + "name": "The Ties That Bond", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin-4-the-ties-that-bond/4000-142050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141999/", + "id": 141999, + "name": "Old Huntin' Buddies; A Bookie Minute Mystery", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-577-old-huntin-buddies-a-bo/4000-141999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141556/", + "id": 141556, + "name": "The Five Nightmares, Epilogue: Clifton Pollard", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-7-the-five-nightmares-epil/4000-141556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141535/", + "id": 141535, + "name": "Family Ties, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-576-family-ties-part-2/4000-141535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141520/", + "id": 141520, + "name": "Three Kings", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-1-three-kings/4000-141520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511461/", + "id": 511461, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-silver-surfer-1-tpb/4000-511461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473071/", + "id": 473071, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-saga-2-volume-two/4000-473071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447126/", + "id": 447126, + "name": "Volumen 2", + "site_detail_url": "https://comicvine.gamespot.com/omnibus-house-of-m-2-volumen-2/4000-447126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198668/", + "id": 198668, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-2-volume-2/4000-198668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187175/", + "id": 187175, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/infinity-crusade-1-volume-1/4000-187175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186300/", + "id": 186300, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-2-vol-2/4000-186300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145938/", + "id": 145938, + "name": "The Birth Of...The Gibbon!; To Stalk A Spider!; The Final Chapter!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-0-the-birth-ofthe-gibbon-to-stalk-a-sp/4000-145938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141377/", + "id": 141377, + "name": "The Long Road...; Those Who Never Return; The Spectacular Rider-Man: They Call The Doctor... Octopus", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-2-the-long-road-those-wh/4000-141377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141253/", + "id": 141253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-annual-3/4000-141253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141191/", + "id": 141191, + "name": "Book Four: 100 Monkeys!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-4-book-four-100-monkeys/4000-141191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141146/", + "id": 141146, + "name": "Klaw's Good 'Ol Fashioned Country Revival", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-4-klaws-good-ol-fas/4000-141146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141145/", + "id": 141145, + "name": "The All-Father Is All-Bother: (aka Wingmen Assemble!!)", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-29-the-all-father-is-al/4000-141145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140176/", + "id": 140176, + "name": "Evil on a Grander Scale", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-44-evil-on-a-grander-/4000-140176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140146/", + "id": 140146, + "name": "Maybreak!; The Rescue", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-25-maybreak-the-rescue/4000-140146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140126/", + "id": 140126, + "name": "Prisoners of War", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-5-prisoners-of-war/4000-140126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355440/", + "id": 355440, + "name": "Time Quest", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-178-time-quest/4000-355440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420974/", + "id": 420974, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-420974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385609/", + "id": 385609, + "name": "Том 1. Сила и ответственность", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-luchshiye-syuzhety-1-1/4000-385609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295784/", + "id": 295784, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-20/4000-295784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295656/", + "id": 295656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-55/4000-295656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420973/", + "id": 420973, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-43/4000-420973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355443/", + "id": 355443, + "name": "The Sands of Time", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-177-the-sands-of/4000-355443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170676/", + "id": 170676, + "name": "Avengers: The Initiative : Killed in Action", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-killed-in-action-1-avenger/4000-170676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383113/", + "id": 383113, + "name": "С Новым годом, Вирджиния!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-142-wikiissu/4000-383113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383112/", + "id": 383112, + "name": "Возвращение Молнии", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-141-wikiissu/4000-383112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382325/", + "id": 382325, + "name": "Сага о клонах. Часть 8", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-157-8/4000-382325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382324/", + "id": 382324, + "name": "Сага о клонах. Часть 7", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-156-7/4000-382324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355461/", + "id": 355461, + "name": "Neighborhood Threat!/Safe From Harm", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-2-neighborhood-threatsafe-from-harm/4000-355461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297441/", + "id": 297441, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-99/4000-297441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295717/", + "id": 295717, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-17/4000-295717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295436/", + "id": 295436, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-107/4000-295436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292124/", + "id": 292124, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-cable-masacre-1/4000-292124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288616/", + "id": 288616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-48/4000-288616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235557/", + "id": 235557, + "name": "Vol. 19", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-absolute-power-1-vol-19/4000-235557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204065/", + "id": 204065, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-tales-to-astonish-1-volume-/4000-204065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203574/", + "id": 203574, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-animal-instinct-1-vol/4000-203574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192306/", + "id": 192306, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-3/4000-192306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163390/", + "id": 163390, + "name": "A Tale Of Two Jackpots", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-35-a-tale-of-two-jac/4000-163390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153211/", + "id": 153211, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-8-marvel-heroes/4000-153211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151912/", + "id": 151912, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-yearbook-1/4000-151912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141332/", + "id": 141332, + "name": "Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-575-family-ties/4000-141332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141322/", + "id": 141322, + "name": "'Nuff Said!", + "site_detail_url": "https://comicvine.gamespot.com/1985-6-nuff-said/4000-141322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140880/", + "id": 140880, + "name": "Flashbacks", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-574-flashbacks/4000-140880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140858/", + "id": 140858, + "name": "What Happens In Vegas; Hell hath no fury...", + "site_detail_url": "https://comicvine.gamespot.com/hulk-7-what-happens-in-vegas-hell-hath-no-fury/4000-140858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140851/", + "id": 140851, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-7/4000-140851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140830/", + "id": 140830, + "name": "Running the Asylum, Pt. 4", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-125-running-the-asylum-pt-4/4000-140830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140828/", + "id": 140828, + "name": "War of the Symbiotes, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-127-war-of-the-symbiotes-part-/4000-140828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140827/", + "id": 140827, + "name": "Brand New Secret Invasion, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man-3-brand-new/4000-140827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140814/", + "id": 140814, + "name": "Lady Bullseye, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-112-lady-bullseye-part-two/4000-140814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140549/", + "id": 140549, + "name": "Chapter Four: The Fall of Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-4-chapter-four-the-fall/4000-140549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140548/", + "id": 140548, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-19-untitled/4000-140548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140465/", + "id": 140465, + "name": "New Ways To Die Part Six: Weapons of Self Destruction; Lo There Shall Come, This Man... This Candidate!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-573-new-ways-to-die-part-si/4000-140465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140136/", + "id": 140136, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-3/4000-140136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139694/", + "id": 139694, + "name": "The Sleep of The Damned!", + "site_detail_url": "https://comicvine.gamespot.com/eternals-5-the-sleep-of-the-damned/4000-139694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139672/", + "id": 139672, + "name": "Chapter 3", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin-3-chapter-3/4000-139672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298200/", + "id": 298200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-26/4000-298200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295867/", + "id": 295867, + "name": "¡Asesinato en Cathedral Canyon!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-7-asesinato-en-cathedral-/4000-295867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187001/", + "id": 187001, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-longshot-1-hctpb/4000-187001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184077/", + "id": 184077, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-frank-miller-and-klaus-janson-1-volum/4000-184077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183107/", + "id": 183107, + "name": "X-Men: Messiah CompleX", + "site_detail_url": "https://comicvine.gamespot.com/x-men-messiah-complex-1-x-men-messiah-complex/4000-183107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165615/", + "id": 165615, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-a-new-goblin-1-tpb/4000-165615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139485/", + "id": 139485, + "name": "You Can't Eat Just Once", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-3-you-cant-eat-just/4000-139485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139253/", + "id": 139253, + "name": "Power, Man.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-28-power-man/4000-139253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139088/", + "id": 139088, + "name": "See No Evil!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-2-see-no-evil/4000-139088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138796/", + "id": 138796, + "name": "Incredible Hulk #108 / World War Hulk #2", + "site_detail_url": "https://comicvine.gamespot.com/hulk-chronicles-wwh-3-incredible-hulk-108-world-wa/4000-138796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138428/", + "id": 138428, + "name": "My Enemy Myself!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-24-my-enemy-myself/4000-138428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138387/", + "id": 138387, + "name": "A Whale of a Tale", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-43-a-whale-of-a-tale/4000-138387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137380/", + "id": 137380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-beast-1/4000-137380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137290/", + "id": 137290, + "name": "Apes of Wrath!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-1-apes-of-wrath/4000-137290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420972/", + "id": 420972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-42/4000-420972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189006/", + "id": 189006, + "name": "Hulk: Heart of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/hulk-heart-of-the-atom-1-hulk-heart-of-the-atom/4000-189006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169708/", + "id": 169708, + "name": "Mighty Avengers: Venom Bomb", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-venom-bomb-1-mighty-avengers-venom/4000-169708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224880/", + "id": 224880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/monsters-myths-and-marvels-3/4000-224880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716057/", + "id": 716057, + "name": "Timely Intervention", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-176-timely-inter/4000-716057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420971/", + "id": 420971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-41/4000-420971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295655/", + "id": 295655, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-54/4000-295655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289782/", + "id": 289782, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-15/4000-289782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448633/", + "id": 448633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-25/4000-448633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424949/", + "id": 424949, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-the-lion-and-the-spider-1-tpb/4000-424949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385104/", + "id": 385104, + "name": "Завтра. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-149-2/4000-385104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385103/", + "id": 385103, + "name": "Завтра. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-148-1/4000-385103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383111/", + "id": 383111, + "name": "Когда боги против тебя", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-140-wikiissu/4000-383111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383110/", + "id": 383110, + "name": "Однажды ненастной ночью...", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-139-wikiissu/4000-383110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382323/", + "id": 382323, + "name": "Сага о клонах. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-155-6/4000-382323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382322/", + "id": 382322, + "name": "Сага о клонах. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-154-5/4000-382322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324541/", + "id": 324541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-71/4000-324541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297440/", + "id": 297440, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-98/4000-297440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295716/", + "id": 295716, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-16/4000-295716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295435/", + "id": 295435, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-106/4000-295435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291980/", + "id": 291980, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-43/4000-291980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287697/", + "id": 287697, + "name": "Tod eines Kobolds", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-60-tod-eines-kobolds/4000-287697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285662/", + "id": 285662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/blade-2/4000-285662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283141/", + "id": 283141, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-un-gran-poder-1/4000-283141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200201/", + "id": 200201, + "name": "JLA / Avengers", + "site_detail_url": "https://comicvine.gamespot.com/jla-avengers-1-jla-avengers/4000-200201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153210/", + "id": 153210, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-7-marvel-heroes/4000-153210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139397/", + "id": 139397, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-fourultimate-x-men-annual-1/4000-139397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139385/", + "id": 139385, + "name": "Brand New Secret Invasion, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man-2-brand-new/4000-139385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139384/", + "id": 139384, + "name": "War of the Symbiotes - Part 4.", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-126-war-of-the-symbiotes-part-/4000-139384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139377/", + "id": 139377, + "name": "The Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/1985-5-the-odyssey/4000-139377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139334/", + "id": 139334, + "name": "House Of M", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-45-house-of-m/4000-139334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139000/", + "id": 139000, + "name": "New Ways to Die, Part Five: Easy Target", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-572-new-ways-to-die-part-fi/4000-139000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138995/", + "id": 138995, + "name": "4X", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-16-4x/4000-138995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138637/", + "id": 138637, + "name": "Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-origins-4-part-4/4000-138637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138255/", + "id": 138255, + "name": "New Ways To Die, Part Four: Opposites Attack", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-571-new-ways-to-die-part-fo/4000-138255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138234/", + "id": 138234, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-6/4000-138234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137375/", + "id": 137375, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-2/4000-137375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137372/", + "id": 137372, + "name": "Scavengers", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-annual-1-scavengers/4000-137372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137353/", + "id": 137353, + "name": "Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin-2-chapter-2/4000-137353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137326/", + "id": 137326, + "name": "New Ways To Die, Part Three: The Killer Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-570-new-ways-to-die-part-th/4000-137326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291413/", + "id": 291413, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-las-historias-jamas-contadas-1/4000-291413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291297/", + "id": 291297, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-34/4000-291297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162315/", + "id": 162315, + "name": "Volume 2: Ages of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-apocalypse-2-volume-2-ages-of-apocalypse/4000-162315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141680/", + "id": 141680, + "name": "Ursus The Ultra-Bear!; The Secret Of Area B", + "site_detail_url": "https://comicvine.gamespot.com/the-age-of-the-sentry-2-ursus-the-ultra-bear-the-s/4000-141680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138825/", + "id": 138825, + "name": "Bad Sports", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-2-bad-sports/4000-138825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138639/", + "id": 138639, + "name": "Soul Awakening, Part 4: Cry For Freedom!", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-10-soul-awakening-part-4-cry-for-freedo/4000-138639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137573/", + "id": 137573, + "name": "World War Hulk #1 / Incredible Hulk #107", + "site_detail_url": "https://comicvine.gamespot.com/hulk-chronicles-wwh-2-world-war-hulk-1-incredible-/4000-137573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136848/", + "id": 136848, + "name": "Avengers Assemble -- Soooo-Wheeee!! And Some Other Small Problems", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-27-avengers-assemble-so/4000-136848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136209/", + "id": 136209, + "name": "Soul Awakening, Part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-9-soul-awakening-part-3-of-4/4000-136209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136208/", + "id": 136208, + "name": "CatFight!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-42-catfight/4000-136208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135960/", + "id": 135960, + "name": "48 Hours; The Amazing Ape-Rachnid Spider-Monkey!: The Final Chapter!; Family Ties; Aunt May, Agent of F.E.A.S.T., in Birthday Girl; Venom", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-1-48-hours-the-amazing-a/4000-135960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135379/", + "id": 135379, + "name": "Did Someone Say CLONES?!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-23-did-someone-say-clones/4000-135379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135111/", + "id": 135111, + "name": "Un-Enchanted Evening; Take A Seat; Street Monsters; Paperboy Showdown", + "site_detail_url": "https://comicvine.gamespot.com/king-size-spider-man-summer-special-1-un-enchanted/4000-135111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135073/", + "id": 135073, + "name": "Chapter Two: Run. As fast as you can.", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-2-chapter-two-run-as-fa/4000-135073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135067/", + "id": 135067, + "name": "Hell on the Helicarrier", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-4-hell-on-the-helicarrier/4000-135067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420969/", + "id": 420969, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-40/4000-420969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216679/", + "id": 216679, + "name": "Spider-Man: With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-1-spider-man-with-grea/4000-216679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151428/", + "id": 151428, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-151428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295285/", + "id": 295285, + "name": "Symbiote Saga", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-175-symbiote-sag/4000-295285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420968/", + "id": 420968, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-39/4000-420968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289097/", + "id": 289097, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-43/4000-289097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295783/", + "id": 295783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-19/4000-295783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295654/", + "id": 295654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-53/4000-295654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199301/", + "id": 199301, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-1-tpb/4000-199301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411422/", + "id": 411422, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-11-carnage/4000-411422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135077/", + "id": 135077, + "name": "Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin-1-chapter-1/4000-135077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742449/", + "id": 742449, + "name": "Apocalisse 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-48-apocalisse-2/4000-742449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716056/", + "id": 716056, + "name": "Apocalypto Now!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-174-apocalypto-n/4000-716056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472746/", + "id": 472746, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-horror-2-volume-two/4000-472746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420955/", + "id": 420955, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-38/4000-420955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388141/", + "id": 388141, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-1-tpb/4000-388141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383987/", + "id": 383987, + "name": "Хуже некуда", + "site_detail_url": "https://comicvine.gamespot.com/fantasticheskaya-chetvyorka-139-wikiissue/4000-383987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383109/", + "id": 383109, + "name": "Новые Повелители Зла!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-138-wikiissu/4000-383109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383108/", + "id": 383108, + "name": "Бой за Асгард", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-137-wikiissu/4000-383108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382321/", + "id": 382321, + "name": "Сага о клонах. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-153-4/4000-382321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382320/", + "id": 382320, + "name": "Сага о клонах. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-152-3/4000-382320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307104/", + "id": 307104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-82/4000-307104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297439/", + "id": 297439, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-97/4000-297439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295715/", + "id": 295715, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-15/4000-295715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295434/", + "id": 295434, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-105/4000-295434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291979/", + "id": 291979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-42/4000-291979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264550/", + "id": 264550, + "name": "Dumm-TV und Matte Scheiben", + "site_detail_url": "https://comicvine.gamespot.com/mad-120-dumm-tv-und-matte-scheiben/4000-264550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203767/", + "id": 203767, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-weirder-and-wilder-1-vo/4000-203767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198667/", + "id": 198667, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-volume-1-1-volume-1/4000-198667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192305/", + "id": 192305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-2/4000-192305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151478/", + "id": 151478, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-6-marvel-heroes/4000-151478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139697/", + "id": 139697, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/march-on-ultimatum-saga-1/4000-139697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136560/", + "id": 136560, + "name": "War of the Symbiotes, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-125-war-of-the-symbiotes-part-/4000-136560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136526/", + "id": 136526, + "name": "New Ways To Die, Part Two: The Osborn Supremacy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-569-new-ways-to-die-part-tw/4000-136526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136022/", + "id": 136022, + "name": "New Ways To Die, Part One: Back With Vengeance; Fifth Stage", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-568-new-ways-to-die-part-on/4000-136022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135454/", + "id": 135454, + "name": "Kraven's First Hunt, Part 3: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-567-kravens-first-hunt-part/4000-135454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135430/", + "id": 135430, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-5/4000-135430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135084/", + "id": 135084, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-1/4000-135084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298199/", + "id": 298199, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-25/4000-298199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295866/", + "id": 295866, + "name": "Para Que Yo Viva... ¡Mi Amor Debe Morir!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-6-para-que-yo-viva-mi-amo/4000-295866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291296/", + "id": 291296, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-33/4000-291296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284110/", + "id": 284110, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-13/4000-284110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237655/", + "id": 237655, + "name": "Volume 20", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-his-amazing-friends-1-volu/4000-237655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232249/", + "id": 232249, + "name": "Volume Eleven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-11-volume-el/4000-232249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174653/", + "id": 174653, + "name": "The Need For Speed Stampede!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-41-the-need-for-speed/4000-174653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135021/", + "id": 135021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-5/4000-135021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134597/", + "id": 134597, + "name": "Death of a Wise Guy; Birthday Boy; The Spartacus Gambit - Character Assassination: Interlude", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-extra-1-death-of-a-wise-guy/4000-134597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134207/", + "id": 134207, + "name": "Best Of Show", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes-1-best-of-show/4000-134207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133978/", + "id": 133978, + "name": "Paradigm Shift", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-26-paradigm-shift/4000-133978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133919/", + "id": 133919, + "name": "Are You My Mummy?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-13-are-you-my-mummy/4000-133919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133045/", + "id": 133045, + "name": "Deadly Crossroad!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-22-deadly-crossroad/4000-133045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132207/", + "id": 132207, + "name": "Homefront", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-3-homefront/4000-132207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216549/", + "id": 216549, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-itsy-bitsy-battles-1-tpb/4000-216549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174133/", + "id": 174133, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/x-men-complete-onslaught-epic-3-volume-3/4000-174133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300368/", + "id": 300368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-92/4000-300368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420945/", + "id": 420945, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-37/4000-420945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287696/", + "id": 287696, + "name": "Das Gespräch", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-59-das-gesprach/4000-287696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295653/", + "id": 295653, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-52/4000-295653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716055/", + "id": 716055, + "name": "Present Danger!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-173-present-dang/4000-716055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249312/", + "id": 249312, + "name": "Ultimate Power", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-1-ultimate-power/4000-249312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164376/", + "id": 164376, + "name": "Spider-Man's Incredible New Costume!!!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-36-spider-mans-incredib/4000-164376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798203/", + "id": 798203, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-2-volume-2/4000-798203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382313/", + "id": 382313, + "name": "Сага о клонах. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-150-1/4000-382313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300552/", + "id": 300552, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-81/4000-300552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299683/", + "id": 299683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-zeit-der-apokalypse-4/4000-299683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297438/", + "id": 297438, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-96/4000-297438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295714/", + "id": 295714, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-14/4000-295714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295433/", + "id": 295433, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-104/4000-295433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289096/", + "id": 289096, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-42/4000-289096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284022/", + "id": 284022, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-40/4000-284022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-282897/", + "id": 282897, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-cult-comics-spiderman-red-sonja-1/4000-282897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264533/", + "id": 264533, + "name": "Gambit Versus Rogue To the Death!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-168-gambit-versus-rogue-to-the-dea/4000-264533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264440/", + "id": 264440, + "name": "Mads Clown Wars", + "site_detail_url": "https://comicvine.gamespot.com/mad-119-mads-clown-wars/4000-264440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235556/", + "id": 235556, + "name": "Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-apocalypse-1-apocalypse/4000-235556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203572/", + "id": 203572, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-identity-crisis-1-vol/4000-203572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171901/", + "id": 171901, + "name": "HC\\TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kraven-s-last-hunt-1-hc-tpb/4000-171901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151477/", + "id": 151477, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-5-marvel-heroes/4000-151477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134993/", + "id": 134993, + "name": "Lava Man Attack!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-14-lava-man-attack/4000-134993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134599/", + "id": 134599, + "name": "War of the Symbiotes, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-124-war-of-the-symbiotes-part-/4000-134599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134201/", + "id": 134201, + "name": "Absolute Power, Part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-96-absolute-power-part-3-of-4/4000-134201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134085/", + "id": 134085, + "name": "The Only Good Skrull", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-15-the-only-good-skrull/4000-134085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134066/", + "id": 134066, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-43-untitled/4000-134066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133680/", + "id": 133680, + "name": "Kraven's First Hunt, Part Two: Identity Crisis!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-566-kravens-first-hunt-part/4000-133680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132937/", + "id": 132937, + "name": "Kraven's First Hunt Part One: To Squash A Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-565-kravens-first-hunt-part/4000-132937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132217/", + "id": 132217, + "name": "Threeway Collision!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-564-threeway-collision/4000-132217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132215/", + "id": 132215, + "name": "Chapter One: The End of the World", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-1-chapter-one-the-end-o/4000-132215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298154/", + "id": 298154, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-5/4000-298154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296054/", + "id": 296054, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-family-1/4000-296054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292924/", + "id": 292924, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/punisher-diario-de-guerra-11/4000-292924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291364/", + "id": 291364, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-poderosos-vengadores-7/4000-291364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290837/", + "id": 290837, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-8/4000-290837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154059/", + "id": 154059, + "name": "The Guy Who Turns Into The Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-9-the-guy-who-turns-into-the-hul/4000-154059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134000/", + "id": 134000, + "name": "If I Had a Hammer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-40-if-i-had-a-hammer/4000-134000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133997/", + "id": 133997, + "name": "Who Wants To Be A (Different) Super Hero?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-25-who-wants-to-be-a-di/4000-133997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133276/", + "id": 133276, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/hulk-raging-thunder-1/4000-133276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132156/", + "id": 132156, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-4/4000-132156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131467/", + "id": 131467, + "name": "Who's That Girl?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-21-whos-that-girl/4000-131467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131439/", + "id": 131439, + "name": "Farewell; In Plain Sight; Seems Like Old Times; Master of the Cube; The Resistance", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-who-do-you-trust-1-farewell-in-pla/4000-131439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131324/", + "id": 131324, + "name": "Battlefield Brooklyn", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-2-battlefield-brooklyn/4000-131324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137832/", + "id": 137832, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-your-universe-saga-1/4000-137832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716054/", + "id": 716054, + "name": "Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-172-identity-cri/4000-716054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420936/", + "id": 420936, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-35/4000-420936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267203/", + "id": 267203, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-man-thing-2/4000-267203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140395/", + "id": 140395, + "name": "Volume Ten", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-10-volum/4000-140395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287695/", + "id": 287695, + "name": "Ultimative Helden", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-58-ultimative-helden/4000-287695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295652/", + "id": 295652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-51/4000-295652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289781/", + "id": 289781, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-14/4000-289781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420932/", + "id": 420932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-34/4000-420932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187095/", + "id": 187095, + "name": "Silver Surfer: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-requiem-1-silver-surfer-requiem/4000-187095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383105/", + "id": 383105, + "name": "Агенты Атласа", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-134-wikiissu/4000-383105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383104/", + "id": 383104, + "name": "Лед и пламя!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-133-wikiissu/4000-383104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382312/", + "id": 382312, + "name": "На улицах Нью-Йорка. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-149--2/4000-382312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382311/", + "id": 382311, + "name": "На улицах Нью-Йорка. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-148--1/4000-382311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311366/", + "id": 311366, + "name": "Fireline", + "site_detail_url": "https://comicvine.gamespot.com/aafes-6th-edition-6-fireline/4000-311366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298306/", + "id": 298306, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-84/4000-298306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295713/", + "id": 295713, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-13/4000-295713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295432/", + "id": 295432, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-103/4000-295432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289095/", + "id": 289095, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-41/4000-289095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284021/", + "id": 284021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-39/4000-284021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283236/", + "id": 283236, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-stan-lee-visita-el-universo-marvel-1/4000-283236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277010/", + "id": 277010, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-160/4000-277010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233665/", + "id": 233665, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-x-men-7-volume-7/4000-233665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220989/", + "id": 220989, + "name": "Marvel Chronicle: A Year by Year History", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chronicle-a-year-by-year-history-1-marvel-c/4000-220989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192304/", + "id": 192304, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-1/4000-192304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190635/", + "id": 190635, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus-by-brian-michael-bendis-and-alex/4000-190635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180737/", + "id": 180737, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-walter-simonson-2-vol-2/4000-180737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151476/", + "id": 151476, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-4-marvel-heroes/4000-151476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149190/", + "id": 149190, + "name": "Lee Weeks", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-17-lee-weeks/4000-149190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132614/", + "id": 132614, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-6-hawkeye/4000-132614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131870/", + "id": 131870, + "name": "War of the Symbiotes, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-123-war-of-the-symbiotes-part-/4000-131870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131808/", + "id": 131808, + "name": "The Empire", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-42-the-empire/4000-131808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131511/", + "id": 131511, + "name": "So Spider-Man Walks Into A Bar AND...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-563-so-spider-man-walks-int/4000-131511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131395/", + "id": 131395, + "name": "The Other Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-562-the-other-spider-man/4000-131395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131323/", + "id": 131323, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-origins-1-part-1/4000-131323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131321/", + "id": 131321, + "name": "Peter Parker: Paparazzi, Part 3 of 3: Photo Finished", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-561-peter-parker-paparazzi-/4000-131321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130518/", + "id": 130518, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-14-untitled/4000-130518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298198/", + "id": 298198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-24/4000-298198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295865/", + "id": 295865, + "name": "¡El Azote del Látigo!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-5-el-azote-del-latigo/4000-295865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290836/", + "id": 290836, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-7/4000-290836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283981/", + "id": 283981, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/asombroso-spiderman-un-nuevo-dia-0/4000-283981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213810/", + "id": 213810, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-hunterhunted-1-volume-3/4000-213810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133998/", + "id": 133998, + "name": "Model Student", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-39-model-student/4000-133998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133905/", + "id": 133905, + "name": "Don't Be Hatin'", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-24-dont-be-hatin/4000-133905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130330/", + "id": 130330, + "name": "A Brand New May!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-20-a-brand-new-may/4000-130330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129590/", + "id": 129590, + "name": "Old Soldiers, New Wars", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-1-old-soldiers-new-wars/4000-129590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716053/", + "id": 716053, + "name": "Emerald Night", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-171-emerald-nigh/4000-716053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459410/", + "id": 459410, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-the-kids-are-all-right-1-hc/4000-459410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420897/", + "id": 420897, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-33/4000-420897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300578/", + "id": 300578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-18/4000-300578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246312/", + "id": 246312, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-omnibus-1-hc/4000-246312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169589/", + "id": 169589, + "name": "New Avengers: The Trust", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-trust-1-new-avengers-the-trust/4000-169589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287694/", + "id": 287694, + "name": "Ultimative Helden", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-57-ultimative-helden/4000-287694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130638/", + "id": 130638, + "name": "World's Greatest, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-557-world-s-greatest-part-4/4000-130638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295651/", + "id": 295651, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-50/4000-295651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931911/", + "id": 931911, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-489/4000-931911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715379/", + "id": 715379, + "name": "Green Day", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-170-green-day/4000-715379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420892/", + "id": 420892, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-32/4000-420892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256627/", + "id": 256627, + "name": "Out of Order/Peace in Our Time/New Kid in Town", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-70-out-of-orderpeace-in/4000-256627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217587/", + "id": 217587, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-1-hc/4000-217587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192864/", + "id": 192864, + "name": "The Death of Captain America: The Death of the Dream", + "site_detail_url": "https://comicvine.gamespot.com/death-of-captain-america-the-death-of-the-dream-1-/4000-192864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208089/", + "id": 208089, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/essential-defenders-4-volume-four/4000-208089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134003/", + "id": 134003, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-directors-cut-1-secret-invasion/4000-134003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385522/", + "id": 385522, + "name": "Иллюминаты. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-106-3/4000-385522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383394/", + "id": 383394, + "name": "Черная Королева. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-48-5/4000-383394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383103/", + "id": 383103, + "name": "Возвращение Электро!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-132-wikiissu/4000-383103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383102/", + "id": 383102, + "name": "Вторжение. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-131-4/4000-383102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382310/", + "id": 382310, + "name": "Морбиус. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-147-2/4000-382310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382309/", + "id": 382309, + "name": "Морбиус. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-146-1/4000-382309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298305/", + "id": 298305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-83/4000-298305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297435/", + "id": 297435, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-94/4000-297435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295712/", + "id": 295712, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-12/4000-295712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295431/", + "id": 295431, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-102/4000-295431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291976/", + "id": 291976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-39/4000-291976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268928/", + "id": 268928, + "name": "A Look Back", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-marvel-knights-10th-anniversary-1/4000-268928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267105/", + "id": 267105, + "name": "Book One: Old Soldiers, New Wars", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders-1-director-s-cut-1-book-one-old-/4000-267105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192126/", + "id": 192126, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-hulk-vs-the-marvel-universe-1-tpb/4000-192126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189770/", + "id": 189770, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-lost-adventures-1/4000-189770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186276/", + "id": 186276, + "name": "Unstoppable", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-unstoppable-1-unstoppable/4000-186276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151475/", + "id": 151475, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-3-marvel-heroes/4000-151475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149191/", + "id": 149191, + "name": "John Romita Jr", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-18-john-romita-jr/4000-149191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134559/", + "id": 134559, + "name": "Paperboy Blues; Cereal Quest; Paperboy Showdown; Hulk Date; Round Trip; Rally the Troops; Passing the Torch; The Iron Avengers", + "site_detail_url": "https://comicvine.gamespot.com/mini-marvels-rock-paper-scissors-1-paperboy-blues-/4000-134559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130997/", + "id": 130997, + "name": "The Worst Day In Peter Parker's Life", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-122-the-worst-day-in-peter-par/4000-130997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130973/", + "id": 130973, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-41-untitled/4000-130973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130969/", + "id": 130969, + "name": "Gone", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-astonishing-x-men-1-gone/4000-130969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130591/", + "id": 130591, + "name": "Peter Parker: Paparazzi Part Two: Flat Out Crazy!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-560-peter-parker-paparazzi-/4000-130591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130428/", + "id": 130428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-11/4000-130428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130329/", + "id": 130329, + "name": "Peter Parker, Paparazzi: The Money Shot", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-559-peter-parker-paparazzi-/4000-130329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129657/", + "id": 129657, + "name": "Freak The Third", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-558-freak-the-third/4000-129657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129598/", + "id": 129598, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-2/4000-129598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447125/", + "id": 447125, + "name": "Volumen 1", + "site_detail_url": "https://comicvine.gamespot.com/omnibus-house-of-m-1-volumen-1/4000-447125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290835/", + "id": 290835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-6/4000-290835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290834/", + "id": 290834, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-5/4000-290834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133996/", + "id": 133996, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-23-new-avengers/4000-133996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133993/", + "id": 133993, + "name": "There's No Bee in Team", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-38-theres-no-bee-in-t/4000-133993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127854/", + "id": 127854, + "name": "Along Came A Spider!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-classic-11-along-came-a-spider/4000-127854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127128/", + "id": 127128, + "name": "There Can Only Be ONE!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-19-there-can-only-be-one/4000-127128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126500/", + "id": 126500, + "name": "With Friends Like These (and others)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-8-with-friends-like-these-and-ot/4000-126500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931912/", + "id": 931912, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-488/4000-931912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420886/", + "id": 420886, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-31/4000-420886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300365/", + "id": 300365, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-89/4000-300365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716010/", + "id": 716010, + "name": "The Ultron Supremacy!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-169-the-ultron-s/4000-716010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207568/", + "id": 207568, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-damage-control-1-tpb/4000-207568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418048/", + "id": 418048, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2008-03/4000-418048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221688/", + "id": 221688, + "name": "Hulk: The Incredible Guide", + "site_detail_url": "https://comicvine.gamespot.com/hulk-the-incredible-guide-1-hulk-the-incredible-gu/4000-221688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127123/", + "id": 127123, + "name": "World's Greatest, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-556-world-s-greatest-part-3/4000-127123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295650/", + "id": 295650, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-49/4000-295650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420878/", + "id": 420878, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-30/4000-420878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223419/", + "id": 223419, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-omnibus-1-volume-one/4000-223419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411421/", + "id": 411421, + "name": "Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-10-hollywood/4000-411421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186465/", + "id": 186465, + "name": "World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-1-world-war-hulk/4000-186465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-799675/", + "id": 799675, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-9/4000-799675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-767933/", + "id": 767933, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/mythos-1-hc/4000-767933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383101/", + "id": 383101, + "name": "Вторжение. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-130-3/4000-383101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383100/", + "id": 383100, + "name": "Вторжение. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-129-2/4000-383100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382308/", + "id": 382308, + "name": "Дэдпул. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-145-4/4000-382308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382307/", + "id": 382307, + "name": "Дэдпул. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-144-3/4000-382307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306201/", + "id": 306201, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-137/4000-306201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299361/", + "id": 299361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-2/4000-299361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298304/", + "id": 298304, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-81/4000-298304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295711/", + "id": 295711, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-11/4000-295711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295430/", + "id": 295430, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-101/4000-295430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203751/", + "id": 203751, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-mighty-marvels-1-volume/4000-203751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194425/", + "id": 194425, + "name": "Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-swing-shift-directors-cut-1-directors-c/4000-194425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186305/", + "id": 186305, + "name": "Book 1", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-ultimate-collection-1-book-1/4000-186305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172946/", + "id": 172946, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-mind-games-1-volume-3/4000-172946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132378/", + "id": 132378, + "name": "The Eyes of the Fulcrum!", + "site_detail_url": "https://comicvine.gamespot.com/eternals-1-the-eyes-of-the-fulcrum/4000-132378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131871/", + "id": 131871, + "name": "All Possible Worlds", + "site_detail_url": "https://comicvine.gamespot.com/hero-initiative-mike-wieringo-book-what-if-this-wa/4000-131871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129066/", + "id": 129066, + "name": "Apocalypse, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-93-apocalypse-conclusion/4000-129066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128792/", + "id": 128792, + "name": "Omega Red", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-121-omega-red/4000-128792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128383/", + "id": 128383, + "name": "Four Cubed, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-53-four-cubed-part-4/4000-128383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127621/", + "id": 127621, + "name": "The Complete Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition-/4000-127621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127548/", + "id": 127548, + "name": "Dead of Winter", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-557-dead-of-winter/4000-127548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127141/", + "id": 127141, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-10/4000-127141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127108/", + "id": 127108, + "name": "The Last Nameless Day", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-556-the-last-nameless-day/4000-127108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126383/", + "id": 126383, + "name": "Sometimes it Snows in April - Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-555-sometimes-it-snows-in-a/4000-126383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126370/", + "id": 126370, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-1/4000-126370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125626/", + "id": 125626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-9/4000-125626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298197/", + "id": 298197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-23/4000-298197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298151/", + "id": 298151, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-2/4000-298151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295864/", + "id": 295864, + "name": "¡Tigra, Tigra, Ardiente Brillo!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-4-tigra-tigra-ardiente-br/4000-295864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213945/", + "id": 213945, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-who-do-you-trust-1-tpb/4000-213945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162956/", + "id": 162956, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-complete-onslaught-epic-2-volume-2/4000-162956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133995/", + "id": 133995, + "name": "Wakanda Wild Side!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-22-wakanda-wild-side/4000-133995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130773/", + "id": 130773, + "name": "THIS HOSTAGE EARTH!; Into the Great Wide Open; The Mole Man of the Ants!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-classic-12-this-hostage-earth-into-the-gr/4000-130773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130579/", + "id": 130579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/michael-turner-sketchbook-2008/4000-130579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127866/", + "id": 127866, + "name": "School of Hard Knocks", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-37-school-of-hard-kno/4000-127866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126014/", + "id": 126014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-3/4000-126014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125195/", + "id": 125195, + "name": "My Ally, My Enemy!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-18-my-ally-my-enemy/4000-125195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124689/", + "id": 124689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-saga-1/4000-124689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715233/", + "id": 715233, + "name": "From Russia with Hate", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-168-from-russia-/4000-715233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420874/", + "id": 420874, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-29/4000-420874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-207570/", + "id": 207570, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-incredible-herc-1-tpb/4000-207570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287693/", + "id": 287693, + "name": "Ultimative Helden", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-56-ultimative-helden/4000-287693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420600/", + "id": 420600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-28/4000-420600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295649/", + "id": 295649, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-48/4000-295649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289780/", + "id": 289780, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-13/4000-289780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413260/", + "id": 413260, + "name": "Going Underground", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-167-going-underg/4000-413260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383978/", + "id": 383978, + "name": "Новая жизнь Бена Грима", + "site_detail_url": "https://comicvine.gamespot.com/fantasticheskaya-chetvyorka-130-wikiissue/4000-383978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383099/", + "id": 383099, + "name": "Вторжение. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-128-1/4000-383099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383098/", + "id": 383098, + "name": "Звезда бейсбола!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-127-wikiissu/4000-383098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382306/", + "id": 382306, + "name": "Дэдпул. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-143-2/4000-382306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382305/", + "id": 382305, + "name": "Дэдпул. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-142-1/4000-382305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300548/", + "id": 300548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-77/4000-300548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298303/", + "id": 298303, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-80/4000-298303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295710/", + "id": 295710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-10/4000-295710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295429/", + "id": 295429, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-100/4000-295429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289865/", + "id": 289865, + "name": "Specie in Extinzione", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-215-specie-in-extinzione/4000-289865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276983/", + "id": 276983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-157/4000-276983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268941/", + "id": 268941, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-hulk-and-spider-man-1/4000-268941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251896/", + "id": 251896, + "name": "The Silver Samurai!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-151-the-silver-samurai/4000-251896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212987/", + "id": 212987, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-illuminati-1-hctpb/4000-212987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186637/", + "id": 186637, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-x-men-1-tpb/4000-186637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151433/", + "id": 151433, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-1-marvel-heroes/4000-151433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131096/", + "id": 131096, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-nearly-complete-essential-hembeck-archives-omn/4000-131096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130474/", + "id": 130474, + "name": "The Ultimate Spider-Man 100 Project", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-spider-man-100-project-1-the-ultimate/4000-130474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126245/", + "id": 126245, + "name": "Montana", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash-damage-control-3-montana/4000-126245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126056/", + "id": 126056, + "name": "Four Cubed, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-52-four-cubed-part-3/4000-126056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125977/", + "id": 125977, + "name": "Spider-Man and His Amazing Friends: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-120-spider-man-and-his-amazing/4000-125977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125665/", + "id": 125665, + "name": "Burned!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-554-burned/4000-125665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125190/", + "id": 125190, + "name": "Freak-Out!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-553-freak-out/4000-125190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125180/", + "id": 125180, + "name": "Time Is on No One's Side", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-10-time-is-on-no-one-s-side/4000-125180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124674/", + "id": 124674, + "name": "Just Blame Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-552-just-blame-spider-man/4000-124674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497266/", + "id": 497266, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-27/4000-497266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295835/", + "id": 295835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-cuentos-de-hadas-1/4000-295835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251487/", + "id": 251487, + "name": "Lair Of The N'Garai", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-150-lair-of-the-ngarai/4000-251487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204680/", + "id": 204680, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-hell-to-pay-2-volume-2/4000-204680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193372/", + "id": 193372, + "name": "Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-planet-hulk-1-planet-hulk/4000-193372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176179/", + "id": 176179, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-back-in-black-1-hctpb/4000-176179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162314/", + "id": 162314, + "name": "Volume 1: The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-apocalypse-1-volume-1-the-twelve/4000-162314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133994/", + "id": 133994, + "name": "From Russia... With Hate!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-21-from-russia-with-hat/4000-133994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129067/", + "id": 129067, + "name": "Vanguard Chapter 8-Who is Trenton Craft?/Machine Man-Imitation Skin/Cyclops and Wolverine-The Rabbit Hunt/Weapon Omega Part 8 of 12", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-8-vanguard-chapter-8-who-is/4000-129067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129009/", + "id": 129009, + "name": "(200-2) Platinum", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-200-200-2-platinum/4000-129009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127865/", + "id": 127865, + "name": "The Good Son", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-36-the-good-son/4000-127865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126501/", + "id": 126501, + "name": "Looter's Quest", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-7-looters-quest/4000-126501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124225/", + "id": 124225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-5/4000-124225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124054/", + "id": 124054, + "name": "A Star is Born", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-2-a-star-is-born/4000-124054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123004/", + "id": 123004, + "name": "A Matter of Trust!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-17-a-matter-of-trust/4000-123004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122417/", + "id": 122417, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-1/4000-122417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497265/", + "id": 497265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-26/4000-497265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413259/", + "id": 413259, + "name": "Electric Crazyland", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-166-electric-cra/4000-413259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295648/", + "id": 295648, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-47/4000-295648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170500/", + "id": 170500, + "name": "Avengers: The Initiative: Basic Training", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-basic-training-1-avengers-/4000-170500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497264/", + "id": 497264, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-25/4000-497264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213822/", + "id": 213822, + "name": "Secret Invasion: The Infiltration", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-the-infiltration-1-secret-invasion/4000-213822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446349/", + "id": 446349, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-35/4000-446349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383097/", + "id": 383097, + "name": "Второй шанс!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-126-wikiissu/4000-383097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383096/", + "id": 383096, + "name": "...бой с Гидроменом!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-125-wikiissu/4000-383096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382304/", + "id": 382304, + "name": "Серебристый Соболь. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-141-5/4000-382304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382303/", + "id": 382303, + "name": "Серебристый Соболь. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-140-4/4000-382303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300172/", + "id": 300172, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-135/4000-300172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298302/", + "id": 298302, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-79/4000-298302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295709/", + "id": 295709, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-9/4000-295709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295428/", + "id": 295428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-99/4000-295428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275710/", + "id": 275710, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-2-volume-2/4000-275710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268835/", + "id": 268835, + "name": "Marvel Adventures: Iron Man Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-special-edition-1-marve/4000-268835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264833/", + "id": 264833, + "name": "The Final Battle!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-163-the-final-battle/4000-264833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203742/", + "id": 203742, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-some-assembling-require/4000-203742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203560/", + "id": 203560, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-fiercest-foes-1-volum/4000-203560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171946/", + "id": 171946, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-midnight-sun-1-tpb/4000-171946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154959/", + "id": 154959, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-9-volume-9/4000-154959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128424/", + "id": 128424, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders-sketchbook-1/4000-128424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128419/", + "id": 128419, + "name": "Mike Allred", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-16-mike-allred/4000-128419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126013/", + "id": 126013, + "name": "The Buddy System", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class-1-the-buddy-system/4000-126013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124233/", + "id": 124233, + "name": "The Little House I Used To Live In", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash-damage-control-2-the-lit/4000-124233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124232/", + "id": 124232, + "name": "Black to the Future", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-annual-1-black-to-the-future/4000-124232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124082/", + "id": 124082, + "name": "Spider-Man & his Amazing Friends: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-119-spider-man-his-amazing-fri/4000-124082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123541/", + "id": 123541, + "name": "Symbiosis Mitosis", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-50-symbiosis-mitosis/4000-123541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123416/", + "id": 123416, + "name": "Apocalypse, Part 2 (of 4)", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-91-apocalypse-part-2-of-4/4000-123416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123372/", + "id": 123372, + "name": "Lo, There Shall Come A MENACE!!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-551-lo-there-shall-come-a-m/4000-123372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122929/", + "id": 122929, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-8/4000-122929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122774/", + "id": 122774, + "name": "The Breakup", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-38-the-breakup/4000-122774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122068/", + "id": 122068, + "name": "The Venom Bomb, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-8-the-venom-bomb-pt-2/4000-122068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121581/", + "id": 121581, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-7/4000-121581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431782/", + "id": 431782, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-red-sonja-1-hc-tpb/4000-431782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298196/", + "id": 298196, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-22/4000-298196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296053/", + "id": 296053, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-especial-1/4000-296053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295863/", + "id": 295863, + "name": "¡Ni Todos Tus Poderes Podrán Salvarte!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-3-ni-todos-tus-poderes-po/4000-295863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133589/", + "id": 133589, + "name": "A Mountain From An Anthill", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-20-a-mountain-from-an-a/4000-133589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127864/", + "id": 127864, + "name": "The Side-Kick", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-35-the-side-kick/4000-127864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123918/", + "id": 123918, + "name": "Ultimate Secrets", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-secrets-1-ultimate-secrets/4000-123918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122073/", + "id": 122073, + "name": "The Spider Who Went Into The Cold", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-vs-wolverine-1-the-spider-who-w/4000-122073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122072/", + "id": 122072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-1/4000-122072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121948/", + "id": 121948, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-4/4000-121948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121661/", + "id": 121661, + "name": "Broken Bonds", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-16-broken-bonds/4000-121661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496040/", + "id": 496040, + "name": "Lance ton Kangourang! (45)", + "site_detail_url": "https://comicvine.gamespot.com/pif-gadget-2540-lance-ton-kangourang-45/4000-496040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413258/", + "id": 413258, + "name": "Tentacles of Terror!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-165-tentacles-of/4000-413258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209182/", + "id": 209182, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-strange-tales-1-volume-1/4000-209182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216554/", + "id": 216554, + "name": "Spider-Man: Reign", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reign-1-spider-man-reign/4000-216554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135803/", + "id": 135803, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-24/4000-135803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287692/", + "id": 287692, + "name": "Klon-Saga", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-55-klon-saga/4000-287692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416858/", + "id": 416858, + "name": "Zündstoff", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-7-zundstoff/4000-416858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295647/", + "id": 295647, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-46/4000-295647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289779/", + "id": 289779, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-12/4000-289779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170819/", + "id": 170819, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-back-in-black-1-hc-tpb/4000-170819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416843/", + "id": 416843, + "name": "Die Ultimativen Sechs", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-9-die-ultimativen-sechs/4000-416843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497262/", + "id": 497262, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-23/4000-497262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413257/", + "id": 413257, + "name": "Army of One!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-164-army-of-one/4000-413257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383095/", + "id": 383095, + "name": "...меж двух огней!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-124-wikiissu/4000-383095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383094/", + "id": 383094, + "name": "Вихрь!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-123-wikiissu/4000-383094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382302/", + "id": 382302, + "name": "Серебристый Соболь. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-139-3/4000-382302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382301/", + "id": 382301, + "name": "Серебристый Соболь. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-138-2/4000-382301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300440/", + "id": 300440, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legado-27/4000-300440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298301/", + "id": 298301, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-78/4000-298301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297430/", + "id": 297430, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-89/4000-297430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295708/", + "id": 295708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-8/4000-295708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295427/", + "id": 295427, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-98/4000-295427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289854/", + "id": 289854, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-213/4000-289854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284015/", + "id": 284015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-34/4000-284015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264835/", + "id": 264835, + "name": "Magneto: Ruler Of The World!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-162-magneto-ruler-of-the-world/4000-264835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216548/", + "id": 216548, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-untold-team-ups-1-tpb/4000-216548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159959/", + "id": 159959, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-saga-1-volume-1/4000-159959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122778/", + "id": 122778, + "name": "The Menace of...Menace!!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-550-the-menace-ofmenace/4000-122778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122408/", + "id": 122408, + "name": "Who's That Girl?!?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-549-whos-that-girl/4000-122408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122005/", + "id": 122005, + "name": "Whatever Happened To All The Fun In The World?", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash-damage-control-1-whateve/4000-122005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121883/", + "id": 121883, + "name": "Blood Ties", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-548-blood-ties/4000-121883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121876/", + "id": 121876, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-3-2/4000-121876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121612/", + "id": 121612, + "name": "Crimes of the Heart", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-547-crimes-of-the-heart/4000-121612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120267/", + "id": 120267, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-6/4000-120267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291289/", + "id": 291289, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-26/4000-291289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-282914/", + "id": 282914, + "name": "Sol de medianoche", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-el-caballero-luna-2-sol-de-medianoche/4000-282914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185207/", + "id": 185207, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war-1-tpb/4000-185207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132126/", + "id": 132126, + "name": "Walk Tall", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-19-walk-tall/4000-132126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126498/", + "id": 126498, + "name": "It's Not Easy Being Green; Endangered; Who Was That Goblin I Saw You With?; \"Have Yourself a Sandman Little Christmas!; Vanishing Spots", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-6-its-not-easy-being-green-endan/4000-126498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120840/", + "id": 120840, + "name": "The Un-Natural", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-34-the-un-natural/4000-120840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120636/", + "id": 120636, + "name": "Gossip Girls", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-avengers-1-gossip-girls/4000-120636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120542/", + "id": 120542, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-3-untitled/4000-120542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120241/", + "id": 120241, + "name": "The Stranger; What If Captain America Led All The Heroes Against Registration?; What If Iron Man Lost The Civil War?;", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war-1-the-stranger-what-if-captain-a/4000-120241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120156/", + "id": 120156, + "name": "Dark Destiny!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-15-dark-destiny/4000-120156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202844/", + "id": 202844, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-classic-1-hctpb/4000-202844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497261/", + "id": 497261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-22/4000-497261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413256/", + "id": 413256, + "name": "London Crawling", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-163-london-crawl/4000-413256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295779/", + "id": 295779, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-15/4000-295779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295646/", + "id": 295646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-45/4000-295646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497260/", + "id": 497260, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-21/4000-497260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383093/", + "id": 383093, + "name": "Каменный гость!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-122-wikiissu/4000-383093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383092/", + "id": 383092, + "name": "Уничтожить Человека-Паука!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-121--/4000-383092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382300/", + "id": 382300, + "name": "Серебристый Соболь. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-137-1/4000-382300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382299/", + "id": 382299, + "name": "Идеальное свидание. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-136-2/4000-382299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298300/", + "id": 298300, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-77/4000-298300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295707/", + "id": 295707, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-7/4000-295707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295426/", + "id": 295426, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-97/4000-295426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259710/", + "id": 259710, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end-1-tpb/4000-259710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251894/", + "id": 251894, + "name": "Bad Luck Wolverine... Here Comes The Black Cat!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-147-bad-luck-wolverine-here/4000-251894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237653/", + "id": 237653, + "name": "Volume 19", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-death-of-a-goblin-1-volume-19/4000-237653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233670/", + "id": 233670, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-6-volume-6/4000-233670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187161/", + "id": 187161, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-1-house-of-m/4000-187161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122202/", + "id": 122202, + "name": "The Trust, Pt. 7", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual-2-the-trust-pt-7/4000-122202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122064/", + "id": 122064, + "name": "Spider-Man and his Amazing Friends, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-118-spider-man-and-his-amazing/4000-122064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121086/", + "id": 121086, + "name": "Brand New Day; Park Avenue Interlude; The Astonishing Aunt May!; Harry and the Hollisters", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-546-brand-new-day-park-aven/4000-121086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120659/", + "id": 120659, + "name": "Death of a Goblin, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-117-death-of-a-goblin-part-6/4000-120659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120626/", + "id": 120626, + "name": "Part 9 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-9-part-9-of-9/4000-120626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120278/", + "id": 120278, + "name": "Piece of Cake; Merry Christmas; Secret Santa; The Meaning of Christmas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-2007-piece-of-cake-merry-ch/4000-120278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120158/", + "id": 120158, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-manred-sonja-5/4000-120158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119888/", + "id": 119888, + "name": "The Trust, Pt. 6", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-37-the-trust-pt-6/4000-119888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119688/", + "id": 119688, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-5/4000-119688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-588344/", + "id": 588344, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-black-and-blue-1-tpb/4000-588344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468593/", + "id": 468593, + "name": "Man and Machine", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-transformers-1-man-and-machine/4000-468593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394141/", + "id": 394141, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/beyond-1/4000-394141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298195/", + "id": 298195, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-21/4000-298195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296052/", + "id": 296052, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-lobezno-la-materia-de-las-leyendas-1/4000-296052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292423/", + "id": 292423, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-oscura-1/4000-292423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175927/", + "id": 175927, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blinded-by-the-light-1-tpb/4000-175927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175729/", + "id": 175729, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-4-volume-4/4000-175729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127863/", + "id": 127863, + "name": "The Tenant; Mini Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-33-the-tenant-mini-ma/4000-127863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121069/", + "id": 121069, + "name": "The Long Road Home", + "site_detail_url": "https://comicvine.gamespot.com/army-of-darkness-5-the-long-road-home/4000-121069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120235/", + "id": 120235, + "name": "What If Annihilation Reached Earth?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-annihilation-1-what-if-annihilation-reache/4000-120235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119352/", + "id": 119352, + "name": "Doom, Where's My Car?!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-12-doom-wheres-my/4000-119352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119219/", + "id": 119219, + "name": "World War Hulk: Aftersmash; The Mini Marvels Present... World War Hulk: Rally the Troops", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash-1-world-war-hulk-aftersm/4000-119219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118796/", + "id": 118796, + "name": "Big Game; The Goblin's Always Greener; The Spider and the Sorceror; Enter... Elektra!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-5-big-game-the-goblins-always-gr/4000-118796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118645/", + "id": 118645, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-2-untitled/4000-118645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118465/", + "id": 118465, + "name": "With the Gods Against Us; Mini Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-18-with-the-gods-agains/4000-118465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198503/", + "id": 198503, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-young-avengers/4000-198503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273887/", + "id": 273887, + "name": "Moon Knight - Mitternachtssonne", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-33-moon-knight-mitternachtssonne/4000-273887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413255/", + "id": 413255, + "name": "Local Hero", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-162-local-hero/4000-413255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264851/", + "id": 264851, + "name": "Guest Starring The New Avengers!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-160-guest-starring-the-new-avenger/4000-264851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221057/", + "id": 221057, + "name": "House Of M", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-20-house-of-m/4000-221057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411604/", + "id": 411604, + "name": "The art of John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masters-the-art-of-john-byrne-1-the-art-of-/4000-411604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287691/", + "id": 287691, + "name": "Klon-Saga", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-54-klon-saga/4000-287691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295645/", + "id": 295645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-44/4000-295645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289778/", + "id": 289778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-11/4000-289778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200196/", + "id": 200196, + "name": "VS. The Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-the-marvel-universe-1-vs-the-marvel-un/4000-200196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164631/", + "id": 164631, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-19/4000-164631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162206/", + "id": 162206, + "name": "Volume 2: Grand Theft America", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2-2-volume-2-grand-theft-america/4000-162206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413254/", + "id": 413254, + "name": "Duel in the Sun", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-161-duel-in-the-/4000-413254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383091/", + "id": 383091, + "name": "Командный вид спорта!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-120-wikiissu/4000-383091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383090/", + "id": 383090, + "name": "Охота на Человека-Паука!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-119--/4000-383090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382298/", + "id": 382298, + "name": "Идеальное свидание. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-135-1/4000-382298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382297/", + "id": 382297, + "name": "Другой. Часть 12. Новая жизнь", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-134-12/4000-382297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315629/", + "id": 315629, + "name": "Marvel Super Heroes Secret Wars TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-1-marvel-super-heroes-secret-wars-tpb/4000-315629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298299/", + "id": 298299, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-76/4000-298299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297428/", + "id": 297428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-87/4000-297428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295706/", + "id": 295706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-6/4000-295706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295425/", + "id": 295425, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-96/4000-295425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292362/", + "id": 292362, + "name": "Marvel Zombies 2", + "site_detail_url": "https://comicvine.gamespot.com/max-25-marvel-zombies-2/4000-292362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292358/", + "id": 292358, + "name": "Marvel Zombies: Army of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/max-21-marvel-zombies-army-of-darkness/4000-292358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292308/", + "id": 292308, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-3/4000-292308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291847/", + "id": 291847, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-gold-thanos-la-saga-del-infinito-4/4000-291847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291846/", + "id": 291846, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-gold-thanos-la-saga-del-infinito-3/4000-291846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288991/", + "id": 288991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/estela-plateada-requiem-1/4000-288991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286356/", + "id": 286356, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-26/4000-286356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285564/", + "id": 285564, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-armored-avenger-1-tpb/4000-285564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231799/", + "id": 231799, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-faith-in-monsters-1-v/4000-231799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225130/", + "id": 225130, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-extended-cut-1/4000-225130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203579/", + "id": 203579, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-forces-of-nature-1-vo/4000-203579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173360/", + "id": 173360, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/rough-stuff-7/4000-173360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159958/", + "id": 159958, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-doctor-strange-3-volume-3/4000-159958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129330/", + "id": 129330, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-485/4000-129330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126735/", + "id": 126735, + "name": "The Other", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-other-1-the-other/4000-126735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126733/", + "id": 126733, + "name": "One More Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-one-more-day-1-one-more-day/4000-126733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120557/", + "id": 120557, + "name": "One More Day, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-545-one-more-day-part-4/4000-120557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119687/", + "id": 119687, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-4/4000-119687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118748/", + "id": 118748, + "name": "Death of a Goblin, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-116-death-of-a-goblin-part-5/4000-118748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118022/", + "id": 118022, + "name": "Hunter/Hunted", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-13-hunterhunted/4000-118022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118020/", + "id": 118020, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-manred-sonja-4/4000-118020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117782/", + "id": 117782, + "name": "I Am Here", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-1-i-am-here/4000-117782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117753/", + "id": 117753, + "name": "The Trust, Pt. 5", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-36-the-trust-pt-5/4000-117753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117746/", + "id": 117746, + "name": "The Incredible Hulk/The Sentry", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-5-the-incredible-hulkthe-sentry/4000-117746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593391/", + "id": 593391, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-10th-anniversary-collectio/4000-593391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593390/", + "id": 593390, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-8-volume-8/4000-593390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285972/", + "id": 285972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-7/4000-285972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285945/", + "id": 285945, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-edicion-especial-7/4000-285945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241032/", + "id": 241032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/horrorhound-6/4000-241032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132047/", + "id": 132047, + "name": "It Was A Dark and Stormy Night...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-17-it-was-a-dark-and-st/4000-132047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115812/", + "id": 115812, + "name": "What if the Hulk Died and Caiera Lived?; Peaceful Planet; What if Bruce Banner Had Landed on Sakaar Instead of the Hulk?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-planet-hulk-1-what-if-the-hulk-died-and-ca/4000-115812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115602/", + "id": 115602, + "name": "I, Hobgoblin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-13-i-hobgoblin/4000-115602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115600/", + "id": 115600, + "name": "The Hills Are Alive With The Sound Of Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-4-the-hills-are-alive-with-/4000-115600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115540/", + "id": 115540, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-1-untitled/4000-115540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115413/", + "id": 115413, + "name": "Submerged", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-32-submerged/4000-115413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121745/", + "id": 121745, + "name": "2008 Preview Spectacular!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-196-2008-preview-specta/4000-121745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164630/", + "id": 164630, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-18/4000-164630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300575/", + "id": 300575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-15/4000-300575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295644/", + "id": 295644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-43/4000-295644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204043/", + "id": 204043, + "name": "Marvel Adventures Fantastic Four: The Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-the-silver-surfer/4000-204043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164629/", + "id": 164629, + "name": "Faster Than A Speeding Wall-Crawler", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17-faster-than-a-speedi/4000-164629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413253/", + "id": 413253, + "name": "Rome, Broken City!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-160-rome-broken-/4000-413253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168868/", + "id": 168868, + "name": "New Avengers: Revolution", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-revolution-1-new-avengers-revolution/4000-168868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822629/", + "id": 822629, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mad-for-decades-50-years-of-forgettable-humor-from/4000-822629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383088/", + "id": 383088, + "name": "С Новым годом, Джона!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-118-wikiissu/4000-383088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383087/", + "id": 383087, + "name": "Смертельный трюк... в цирке зла!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-117-wikiissu/4000-383087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382296/", + "id": 382296, + "name": "Другой. Часть 11. Предначертанное", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-133-11/4000-382296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382295/", + "id": 382295, + "name": "Другой. Часть 10. Добыча пиратов", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-132-10/4000-382295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300543/", + "id": 300543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-72/4000-300543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298298/", + "id": 298298, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-75/4000-298298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297427/", + "id": 297427, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-86/4000-297427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295705/", + "id": 295705, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-5/4000-295705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295424/", + "id": 295424, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-95/4000-295424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291969/", + "id": 291969, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-32/4000-291969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291769/", + "id": 291769, + "name": "Fallen Son: Der Tod des Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-71-fallen-son-der-tod-des-captain-/4000-291769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204048/", + "id": 204048, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-misunderstood-monster-1-vol/4000-204048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172945/", + "id": 172945, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-comes-the-carnage-1-volume-2/4000-172945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127432/", + "id": 127432, + "name": "Daredevil by Frank Miller Omnibus Companion", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-frank-miller-omnibus-companion-1-dare/4000-127432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119681/", + "id": 119681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-3/4000-119681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118735/", + "id": 118735, + "name": "One More Day, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-41-one-more-day-part-3/4000-118735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117827/", + "id": 117827, + "name": "Triple Threat", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-7-triple-threat/4000-117827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117689/", + "id": 117689, + "name": "Part Two", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-first-death-2-part-/4000-117689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116459/", + "id": 116459, + "name": "Part 8 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-8-part-8-of-9/4000-116459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115811/", + "id": 115811, + "name": "Death of a Goblin, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-115-death-of-a-goblin-part-4/4000-115811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115598/", + "id": 115598, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengerstransformers-4/4000-115598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115426/", + "id": 115426, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-manred-sonja-3/4000-115426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396594/", + "id": 396594, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-the-1960s-1990s-handbook-1-tpb/4000-396594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298194/", + "id": 298194, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-20/4000-298194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295862/", + "id": 295862, + "name": "¡Doble pelibro en el Daily Bugle!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-2-doble-pelibro-en-el-dai/4000-295862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285633/", + "id": 285633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-x-men-19/4000-285633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285585/", + "id": 285585, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-namor-15/4000-285585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285250/", + "id": 285250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-5/4000-285250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216664/", + "id": 216664, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales-1-tpb/4000-216664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121526/", + "id": 121526, + "name": "Fired", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-31-fired/4000-121526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114888/", + "id": 114888, + "name": "Even A Hawkeye Can Cry", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-16-even-a-hawkeye-can-c/4000-114888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114426/", + "id": 114426, + "name": "Only The Innocent Must Die!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-12-only-the-innocent-must-/4000-114426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164628/", + "id": 164628, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-16/4000-164628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198665/", + "id": 198665, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-presents-wild-thing-crash-course-1-tpb/4000-198665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149480/", + "id": 149480, + "name": "The Best of 2007! : Marvel: Their Biggest Year Ever!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-195-the-best-of-2007-ma/4000-149480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287690/", + "id": 287690, + "name": "Klon-Saga", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-53-klon-saga/4000-287690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140394/", + "id": 140394, + "name": "Volume Nine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-9-volume/4000-140394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413252/", + "id": 413252, + "name": "Battle in Berlin", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-159-battle-in-be/4000-413252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164627/", + "id": 164627, + "name": "Is It A Bird? Is It A Plane? No It's...", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-15-is-it-a-bird-is-it-a/4000-164627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295643/", + "id": 295643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-42/4000-295643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424950/", + "id": 424950, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-a-hero-reborn-1-tpb/4000-424950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410701/", + "id": 410701, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-strips-gesamtausgabe-2/4000-410701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383086/", + "id": 383086, + "name": "День Венома", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-116-wikiissu/4000-383086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383085/", + "id": 383085, + "name": "Песочный Человек идет в магазин!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-115-wikiissu/4000-383085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382294/", + "id": 382294, + "name": "Другой. Часть 9. Эволюция", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-131-9/4000-382294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382293/", + "id": 382293, + "name": "Другой. Часть 8. Последствия", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-130-8/4000-382293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298297/", + "id": 298297, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-74/4000-298297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297426/", + "id": 297426, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-85/4000-297426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295423/", + "id": 295423, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-94/4000-295423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291968/", + "id": 291968, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-31/4000-291968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289777/", + "id": 289777, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-10/4000-289777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285661/", + "id": 285661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/blade-1/4000-285661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275708/", + "id": 275708, + "name": "Breakout", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-1-breakout/4000-275708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203741/", + "id": 203741, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-the-dream-team-1-volume/4000-203741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185614/", + "id": 185614, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-four-the-hard-way-1-tpb/4000-185614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149187/", + "id": 149187, + "name": "Frank Cho", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-14-frank-cho/4000-149187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121512/", + "id": 121512, + "name": "The Black", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-the-black-1-the-black/4000-121512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115394/", + "id": 115394, + "name": "One More Day, Part 2: The Other Side of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-24-one-more-day-p/4000-115394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114981/", + "id": 114981, + "name": "Death of a Goblin, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-114-death-of-a-goblin-part-3/4000-114981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114892/", + "id": 114892, + "name": "The End Is The Beginning", + "site_detail_url": "https://comicvine.gamespot.com/the-irredeemable-ant-man-12-the-end-is-the-beginni/4000-114892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114729/", + "id": 114729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-manred-sonja-2/4000-114729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114624/", + "id": 114624, + "name": "Let the Worlds Within and the Worlds Without Tremble in Their Orbits", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-4-let-the-worlds-within-and-the-wor/4000-114624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114549/", + "id": 114549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengerstransformers-3/4000-114549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114394/", + "id": 114394, + "name": "The Trust, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-34-the-trust-pt-3/4000-114394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114203/", + "id": 114203, + "name": "Warbound, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-110-warbound-part-5/4000-114203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114199/", + "id": 114199, + "name": "One More Day, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-544-one-more-day-part-1/4000-114199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113764/", + "id": 113764, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-2/4000-113764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106521/", + "id": 106521, + "name": "Death of a Goblin: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-113-death-of-a-goblin-part-2/4000-106521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-595258/", + "id": 595258, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-secret-lives-1-volume-9/4000-595258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298193/", + "id": 298193, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-19/4000-298193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290825/", + "id": 290825, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-16/4000-290825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286082/", + "id": 286082, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-25/4000-286082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286080/", + "id": 286080, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-24/4000-286080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286079/", + "id": 286079, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-23/4000-286079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286078/", + "id": 286078, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-22/4000-286078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246735/", + "id": 246735, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-still-friends-1-volume-/4000-246735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164626/", + "id": 164626, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14/4000-164626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119915/", + "id": 119915, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-194/4000-119915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114573/", + "id": 114573, + "name": "What You Wish For", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales-4-what-you-wish-for/4000-114573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114211/", + "id": 114211, + "name": "Tales of the Puppet Master; The Producers; The Real Thing; Green Grows the Goblin!; Terror in the Skies", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-4-tales-of-the-puppet-master-the/4000-114211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114153/", + "id": 114153, + "name": "Bringers of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-15-bringers-of-the-stor/4000-114153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113976/", + "id": 113976, + "name": "World's End", + "site_detail_url": "https://comicvine.gamespot.com/the-last-fantastic-four-story-1-worlds-end/4000-113976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113613/", + "id": 113613, + "name": "Sub-Mariner!; Crack in the Armor!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-classic-3-sub-mariner-crack-in-the-armor/4000-113613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113431/", + "id": 113431, + "name": "The Bough Breaks", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-11-the-bough-breaks/4000-113431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113135/", + "id": 113135, + "name": "Whirlwind Tour", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-30-whirlwind-tour/4000-113135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413251/", + "id": 413251, + "name": "The Paris Connection!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-158-the-paris-co/4000-413251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164625/", + "id": 164625, + "name": "Secrets Of The Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13-secrets-of-the-black/4000-164625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140390/", + "id": 140390, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-7-volume-seven/4000-140390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295778/", + "id": 295778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-14/4000-295778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295642/", + "id": 295642, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-41/4000-295642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216550/", + "id": 216550, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-silver-rage-1-tp/4000-216550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238234/", + "id": 238234, + "name": "The Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-vault-a-museum-in-a-book-1-the-marvel-v/4000-238234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413250/", + "id": 413250, + "name": "Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-157-family-ties/4000-413250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263354/", + "id": 263354, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/blade-sins-of-the-father-1-volume-2/4000-263354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164471/", + "id": 164471, + "name": "Countdown To Destruction!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-12-countdown-to-destruc/4000-164471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406276/", + "id": 406276, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-defenders-war-1-hc/4000-406276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383084/", + "id": 383084, + "name": "Война Гоблинов", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-114-wikiissu/4000-383084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383083/", + "id": 383083, + "name": "Жертвы моды!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-113-wikiissu/4000-383083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382292/", + "id": 382292, + "name": "Другой. Часть 7. Неизбежность", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-129-7/4000-382292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382291/", + "id": 382291, + "name": "Другой. Часть 6. Подведение итогов", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-128-6/4000-382291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-369694/", + "id": 369694, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-1-hctpb/4000-369694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306198/", + "id": 306198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-129/4000-306198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298296/", + "id": 298296, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-73/4000-298296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295422/", + "id": 295422, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-93/4000-295422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285965/", + "id": 285965, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-7/4000-285965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189772/", + "id": 189772, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-omnibus-1-volume-1/4000-189772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159887/", + "id": 159887, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-daredevil-4-volume-4/4000-159887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116027/", + "id": 116027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-192/4000-116027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114412/", + "id": 114412, + "name": "Part 7 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-7-part-7-of-9/4000-114412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114283/", + "id": 114283, + "name": "Another Me, Another U.", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-21-another-me-another-u/4000-114283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113975/", + "id": 113975, + "name": "Part Four: Agnus Dei", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-requiem-4-part-four-agnus-dei/4000-113975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113968/", + "id": 113968, + "name": "Absolutely No Way To Win", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-30-absolutely-no-way-to-win/4000-113968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113758/", + "id": 113758, + "name": "The Book Of Peter", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-40-the-book-of-peter/4000-113758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113757/", + "id": 113757, + "name": "Back In Black (Part 5 of 5): An Incident on the Fourth Floor", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-543-back-in-black-part-5-of/4000-113757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113577/", + "id": 113577, + "name": "Without Fear: Part One Of Six", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-100-without-fear-part-one-of-six/4000-113577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113551/", + "id": 113551, + "name": "Death of a Goblin, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-112-death-of-a-goblin-part-1/4000-113551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113549/", + "id": 113549, + "name": "Fighting Words", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-23-fighting-words/4000-113549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113247/", + "id": 113247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengerstransformers-2/4000-113247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112986/", + "id": 112986, + "name": "Warbound, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-109-warbound-part-4/4000-112986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112960/", + "id": 112960, + "name": "The Trust, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-33-the-trust-pt-2/4000-112960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112404/", + "id": 112404, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-manred-sonja-1/4000-112404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111693/", + "id": 111693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-1/4000-111693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109761/", + "id": 109761, + "name": "Quest for Magik, Conclusion; Endangered Species, Chapter 8", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-41-quest-for-magik-conclusion-endangered/4000-109761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298192/", + "id": 298192, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-18/4000-298192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295861/", + "id": 295861, + "name": "Los Señores de la luz y la Oscuridad", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-1-los-senores-de-la-luz-y/4000-295861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290719/", + "id": 290719, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-21/4000-290719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286077/", + "id": 286077, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-21/4000-286077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286076/", + "id": 286076, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-20/4000-286076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286075/", + "id": 286075, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-19/4000-286075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286073/", + "id": 286073, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-18/4000-286073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285383/", + "id": 285383, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-de-todd-mcfarl/4000-285383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283115/", + "id": 283115, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-reino-1/4000-283115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187093/", + "id": 187093, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-a-heros-compulsion-1-tpb/4000-187093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181313/", + "id": 181313, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-1-hc/4000-181313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157636/", + "id": 157636, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-white-and-blue-1-tpb/4000-157636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114655/", + "id": 114655, + "name": "Vanguard 1 of 12 The Two John Does; The Girl Who Could Be You; Unfriendly Neighborhood; Weapon Omega; To Love a Man, Not a Monster", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-1-vanguard-1-of-12-the-two-/4000-114655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113656/", + "id": 113656, + "name": "The Next Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-20-the-next-thing/4000-113656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113539/", + "id": 113539, + "name": "Eclipse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales-3-eclipse/4000-113539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113362/", + "id": 113362, + "name": "Rock and Roll", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-29-rock-and-roll/4000-113362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113227/", + "id": 113227, + "name": "Pop", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-4-pop/4000-113227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111607/", + "id": 111607, + "name": "Comes The Carnage!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-10-comes-the-carnage/4000-111607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111498/", + "id": 111498, + "name": "The Stalking Dead", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-5-the-stalking-/4000-111498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110754/", + "id": 110754, + "name": "The New Silver Age", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-3-the-new-silver/4000-110754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237652/", + "id": 237652, + "name": "Ultimate Knights", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-knights-1-ultimate-kn/4000-237652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164409/", + "id": 164409, + "name": "Better The Devil You Know...", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-11-better-the-devil-you/4000-164409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287689/", + "id": 287689, + "name": "Klon-Saga", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-52-klon-saga/4000-287689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413249/", + "id": 413249, + "name": "Once an Avenger...", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-156-once-an-aven/4000-413249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295641/", + "id": 295641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-40/4000-295641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289776/", + "id": 289776, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-9/4000-289776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416842/", + "id": 416842, + "name": "Könige & Katzen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-8-konige-katzen/4000-416842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216546/", + "id": 216546, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-back-in-black-1-tpb/4000-216546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164408/", + "id": 164408, + "name": "On The Prowl...", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-10-on-the-prowl/4000-164408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-905750/", + "id": 905750, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-featuring-the-silver-surfer-mag/4000-905750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383082/", + "id": 383082, + "name": "Великанша бьет!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-112-wikiissu/4000-383082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383081/", + "id": 383081, + "name": "Эго, влюбленная планета", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-111-wikiissu/4000-383081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382290/", + "id": 382290, + "name": "Другой. Часть 5. Отступление", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-127-5/4000-382290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382289/", + "id": 382289, + "name": "Другой. Часть 4. Сделка", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-126-4/4000-382289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324549/", + "id": 324549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-64/4000-324549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312295/", + "id": 312295, + "name": "Spaghetti-Spesial", + "site_detail_url": "https://comicvine.gamespot.com/m-200709-spaghetti-spesial/4000-312295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295421/", + "id": 295421, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-92/4000-295421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251864/", + "id": 251864, + "name": "Head-To-Head With The Gorgon -- To The Death!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-142-head-to-head-with-the-g/4000-251864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222462/", + "id": 222462, + "name": "One More Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-47-one-more-day/4000-222462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203737/", + "id": 203737, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-secret-identity-1-vol/4000-203737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129325/", + "id": 129325, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-481/4000-129325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119912/", + "id": 119912, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-190/4000-119912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113624/", + "id": 113624, + "name": "Predator/Prey", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-22-predatorprey/4000-113624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111930/", + "id": 111930, + "name": "The Last Temptation of Eddie Brock (part 2 of 2)", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-39-the-last-temptation-/4000-111930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111719/", + "id": 111719, + "name": "The Talk", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-111-the-talk/4000-111719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111670/", + "id": 111670, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-2/4000-111670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111663/", + "id": 111663, + "name": "Green Zone", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-4-green-zone/4000-111663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111511/", + "id": 111511, + "name": "The Trust, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-32-the-trust-pt-1/4000-111511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111357/", + "id": 111357, + "name": "Part 6 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-6-part-6-of-9/4000-111357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111244/", + "id": 111244, + "name": "Man and Machine, Part One", + "site_detail_url": "https://comicvine.gamespot.com/new-avengerstransformers-1-man-and-machine-part-on/4000-111244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298191/", + "id": 298191, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-17/4000-298191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295858/", + "id": 295858, + "name": "El secreto de Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-8-el-secreto-de-pete/4000-295858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290718/", + "id": 290718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-20/4000-290718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286072/", + "id": 286072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-17/4000-286072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286071/", + "id": 286071, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-16/4000-286071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286070/", + "id": 286070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-15/4000-286070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286068/", + "id": 286068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-14/4000-286068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141478/", + "id": 141478, + "name": "Hulk Smash Everyone!", + "site_detail_url": "https://comicvine.gamespot.com/hulk-and-power-pack-4-hulk-smash-everyone/4000-141478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127860/", + "id": 127860, + "name": "I--Hate--Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-28-i-hate-spider-man/4000-127860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113655/", + "id": 113655, + "name": "The Thoughtful Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-19-the-thoughtful-thing/4000-113655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112288/", + "id": 112288, + "name": "What If?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-25-what-if/4000-112288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111353/", + "id": 111353, + "name": "The Avenging Seven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-14-the-avenging-seven/4000-111353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111102/", + "id": 111102, + "name": "The Spirits of Friendship", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales-2-the-spirits-of-friendship/4000-111102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110443/", + "id": 110443, + "name": "Specimen 297!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-9-specimen-297/4000-110443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110316/", + "id": 110316, + "name": "Electrical Problems; Scorpion in...Namesake; What If Spider-Man Joined the Fantastic Four; Spider-Man J in The Bigger They Are; Mini Marvels presents Hulk Date", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-3-electrical-problems-scorpion-i/4000-110316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109445/", + "id": 109445, + "name": "The New Silver Age", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-2-the-new-silver/4000-109445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181817/", + "id": 181817, + "name": "Volume 2: Life and Death Matters", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-life-and-death-matters-1-volume-2-life-an/4000-181817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413248/", + "id": 413248, + "name": "Wall of Sound", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-155-wall-of-soun/4000-413248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135922/", + "id": 135922, + "name": "Hydra Attacks", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-9-hydra-attacks/4000-135922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237644/", + "id": 237644, + "name": "Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hobgoblin-1-hobgoblin/4000-237644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168856/", + "id": 168856, + "name": "New Avengers: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-civil-war-1-new-avengers-civil-war/4000-168856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295640/", + "id": 295640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-39/4000-295640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176171/", + "id": 176171, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-my-fair-super-hero-1-tpb/4000-176171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135834/", + "id": 135834, + "name": "New Era, New Adventure, New Avengers Begins", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8-new-era-new-adventure/4000-135834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436993/", + "id": 436993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-211/4000-436993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413247/", + "id": 413247, + "name": "Dark of the Moon", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-154-dark-of-the-/4000-413247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383080/", + "id": 383080, + "name": "Братство Верховных Змей", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-110-wikiissu/4000-383080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382288/", + "id": 382288, + "name": "Другой. Часть 3. Ярость", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-125-3/4000-382288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382287/", + "id": 382287, + "name": "Другой. Часть 2. Протест", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-124-2/4000-382287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312170/", + "id": 312170, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/m-200708/4000-312170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298294/", + "id": 298294, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-71/4000-298294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298293/", + "id": 298293, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-70/4000-298293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295420/", + "id": 295420, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-91/4000-295420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276861/", + "id": 276861, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-148/4000-276861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265716/", + "id": 265716, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/invincible-ultimate-collection-3-volume-3/4000-265716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235710/", + "id": 235710, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hulk-and-power-pack-pack-smash-1-tpb/4000-235710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168659/", + "id": 168659, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-2-volume-2/4000-168659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157131/", + "id": 157131, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-two-in-one-2-volume-2/4000-157131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132592/", + "id": 132592, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-companion-1-tpb/4000-132592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129323/", + "id": 129323, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-480/4000-129323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126651/", + "id": 126651, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-3-minute-sketchbook-1-volume-1/4000-126651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111929/", + "id": 111929, + "name": "Back In Black (Part 4 of 5)", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-542-back-in-black-part-4-of/4000-111929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111251/", + "id": 111251, + "name": "Acceptance", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-5-acceptan/4000-111251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111133/", + "id": 111133, + "name": "Part Two: Sanctus", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-requiem-2-part-two-sanctus/4000-111133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111032/", + "id": 111032, + "name": "Blinded by the Light, Part 1 of 4; Endangered Species, Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-200-blinded-by-the-light-part-1-of-4-endange/4000-111032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110675/", + "id": 110675, + "name": "Ultimate Knights: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-110-ultimate-knights-conclusio/4000-110675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110673/", + "id": 110673, + "name": "The Last Temptation of Eddie Brock", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-38-the-last-temptation-/4000-110673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110667/", + "id": 110667, + "name": "World War Hulk, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-19-world-war-hulk-part-1/4000-110667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110490/", + "id": 110490, + "name": "Web", + "site_detail_url": "https://comicvine.gamespot.com/blade-10-web/4000-110490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110473/", + "id": 110473, + "name": "Gravity Depravity!; Bully Breakdown!; Monkey Talk!; Build a Better 'Bot!; Frank Smash!", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-world-be-warned-1-gravity-deprav/4000-110473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110441/", + "id": 110441, + "name": "Consuming Passion", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-21-consuming-pass/4000-110441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110437/", + "id": 110437, + "name": "Revolution, Pt. 5", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-31-revolution-pt-5/4000-110437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110435/", + "id": 110435, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-1/4000-110435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110271/", + "id": 110271, + "name": "Bug Hunt", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-3-bug-hunt/4000-110271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573387/", + "id": 573387, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-18/4000-573387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298190/", + "id": 298190, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-16/4000-298190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295856/", + "id": 295856, + "name": "El regreso del Duende Verde", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-6-el-regreso-del-due/4000-295856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286067/", + "id": 286067, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-13/4000-286067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286066/", + "id": 286066, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-12/4000-286066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286065/", + "id": 286065, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-11/4000-286065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286063/", + "id": 286063, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-10/4000-286063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285967/", + "id": 285967, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2/4000-285967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285940/", + "id": 285940, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-edicion-especial-2/4000-285940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285382/", + "id": 285382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-de-todd-mcfarl/4000-285382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233357/", + "id": 233357, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-mighty-thor-6-volume-6/4000-233357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181945/", + "id": 181945, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-event-horizon-1-tpb/4000-181945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127859/", + "id": 127859, + "name": "But Seriously, Folks...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-27-but-seriously-folk/4000-127859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113654/", + "id": 113654, + "name": "The Nearness Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-18-the-nearness-thing/4000-113654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111891/", + "id": 111891, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-marvel-adventures-avengers-1-untitled/4000-111891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111443/", + "id": 111443, + "name": "Attack of the 50 Foot Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-13-attack-of-the-50-foo/4000-111443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110516/", + "id": 110516, + "name": "Stop! Gamma Time!", + "site_detail_url": "https://comicvine.gamespot.com/hulk-and-power-pack-3-stop-gamma-time/4000-110516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110059/", + "id": 110059, + "name": "Off The Beaten Path", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales-1-off-the-beaten-path/4000-110059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109832/", + "id": 109832, + "name": "Sandman: Year One; Leah", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-annual-1-sandman-/4000-109832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109448/", + "id": 109448, + "name": "The Closet", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-8-the-closet/4000-109448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109272/", + "id": 109272, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-dead-days-1/4000-109272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155448/", + "id": 155448, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-spider-woman-2-volume-2/4000-155448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135833/", + "id": 135833, + "name": "Skin Deep The Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-7-skin-deep-the-conclus/4000-135833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112181/", + "id": 112181, + "name": "From Bad To Worse", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-29-from-bad-to-worse/4000-112181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287169/", + "id": 287169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-1048/4000-287169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287688/", + "id": 287688, + "name": "Ränkespiele", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-51-rankespiele/4000-287688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295639/", + "id": 295639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-38/4000-295639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289775/", + "id": 289775, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-8/4000-289775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413246/", + "id": 413246, + "name": "The Hunted", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-153-the-hunted/4000-413246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135832/", + "id": 135832, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-6/4000-135832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-350153/", + "id": 350153, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-europa-1/4000-350153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171461/", + "id": 171461, + "name": "Civil War: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-iron-man-1-civil-war-iron-man/4000-171461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159903/", + "id": 159903, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/essential-defenders-3-volume-three/4000-159903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383078/", + "id": 383078, + "name": "Коварный замысел", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-108-wikiissu/4000-383078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383077/", + "id": 383077, + "name": "Возвращение Локи", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-107-wikiissu/4000-383077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382286/", + "id": 382286, + "name": "Другой. Часть 1. Шок", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-123-1/4000-382286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382285/", + "id": 382285, + "name": "Все рушится", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-122-wikiissue/4000-382285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312065/", + "id": 312065, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/m-200707/4000-312065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300006/", + "id": 300006, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-67/4000-300006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298292/", + "id": 298292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-69/4000-298292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295419/", + "id": 295419, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-90/4000-295419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292751/", + "id": 292751, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pantera-negra-2/4000-292751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286003/", + "id": 286003, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-10/4000-286003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285957/", + "id": 285957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2/4000-285957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285949/", + "id": 285949, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-primera-linea-1/4000-285949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238589/", + "id": 238589, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/exiles-bump-in-the-night-1-volume-9/4000-238589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222767/", + "id": 222767, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points-1-tpb/4000-222767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166027/", + "id": 166027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/complete-normalman-1/4000-166027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111034/", + "id": 111034, + "name": "Hell Of A Mess", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-28-hell-of-a-mess/4000-111034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110668/", + "id": 110668, + "name": "Depression", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-4-depressi/4000-110668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110053/", + "id": 110053, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-illuminati-3-untitled/4000-110053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109619/", + "id": 109619, + "name": "Ultimate Knights, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-109-ultimate-knights-part-4/4000-109619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109267/", + "id": 109267, + "name": "Revolution, Pt. 4", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-30-revolution-pt-4/4000-109267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108959/", + "id": 108959, + "name": "Running Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-20-running-out-of/4000-108959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573386/", + "id": 573386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-17/4000-573386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413351/", + "id": 413351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-movie-prequel-1/4000-413351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298189/", + "id": 298189, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-15/4000-298189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295855/", + "id": 295855, + "name": "En los tentáculos del Dr. Octupus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-5-en-los-tentaculos-/4000-295855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295854/", + "id": 295854, + "name": "La amenaza del Duende Verde", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-4-la-amenaza-del-due/4000-295854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290716/", + "id": 290716, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-18/4000-290716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286054/", + "id": 286054, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-9/4000-286054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286053/", + "id": 286053, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-8/4000-286053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286052/", + "id": 286052, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-7/4000-286052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286050/", + "id": 286050, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-6/4000-286050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286046/", + "id": 286046, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-3/4000-286046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285966/", + "id": 285966, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1/4000-285966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285939/", + "id": 285939, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-edicion-especial-1/4000-285939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285376/", + "id": 285376, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-el-hambre-1/4000-285376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285249/", + "id": 285249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-4/4000-285249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170029/", + "id": 170029, + "name": "Summer Blockbuster Issue", + "site_detail_url": "https://comicvine.gamespot.com/mad-classics-15-summer-blockbuster-issue/4000-170029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130578/", + "id": 130578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/michael-turner-sketchbook-2007/4000-130578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127858/", + "id": 127858, + "name": "Reading, Writing and a Robot", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-26-reading-writing-an/4000-127858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119909/", + "id": 119909, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-188/4000-119909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113653/", + "id": 113653, + "name": "The Guarded Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-17-the-guarded-thing/4000-113653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111416/", + "id": 111416, + "name": "Ego: The Loving Planet", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-12-ego-the-loving-plane/4000-111416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110677/", + "id": 110677, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mythos-spider-man-1/4000-110677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110601/", + "id": 110601, + "name": "My Fair Super Hero, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-5-my-fair-super-hero-conclusion/4000-110601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108537/", + "id": 108537, + "name": "Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-7-revenge/4000-108537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108524/", + "id": 108524, + "name": "The Arrival", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-1-the-arrival/4000-108524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108333/", + "id": 108333, + "name": "Undone; Building a Better Lizard; Goblin in the Middle; The Boneyard Hop!; Spider-Man J in: The Deadly Swarm of Wasperus!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-2-undone-building-a-better-lizar/4000-108333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135831/", + "id": 135831, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-135831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413245/", + "id": 413245, + "name": "Miami Blues!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-152-miami-blues/4000-413245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236877/", + "id": 236877, + "name": "Public Scrutiny", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-public-scrutiny-1-public-scrut/4000-236877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287687/", + "id": 287687, + "name": "Morbius", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-50-morbius/4000-287687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256214/", + "id": 256214, + "name": "I Just KILLED - SPIDERMAN... Whos NEXT?", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-56-i-just-killed-spider/4000-256214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135830/", + "id": 135830, + "name": "Skin Deep Begins", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4-skin-deep-begins/4000-135830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295638/", + "id": 295638, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-37/4000-295638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416841/", + "id": 416841, + "name": "Ohne Verantwortung", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-7-ohne-verantwortung/4000-416841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228402/", + "id": 228402, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-omnibus-1-volume-one/4000-228402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840144/", + "id": 840144, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-216/4000-840144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436991/", + "id": 436991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-209/4000-436991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383076/", + "id": 383076, + "name": "Джаггернаут!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-106-wikiissu/4000-383076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383075/", + "id": 383075, + "name": "Уфошники!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-105-wikiissu/4000-383075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382284/", + "id": 382284, + "name": "Крайние меры", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-121-wikiissue/4000-382284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382283/", + "id": 382283, + "name": "Живые мишени", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-120-wikiissue/4000-382283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300431/", + "id": 300431, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legado-18/4000-300431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299385/", + "id": 299385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-8/4000-299385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298291/", + "id": 298291, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-68/4000-298291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295418/", + "id": 295418, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-89/4000-295418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285956/", + "id": 285956, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1/4000-285956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223683/", + "id": 223683, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-omnibus-2-volume-two/4000-223683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203740/", + "id": 203740, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-bizarre-adventures-1-vo/4000-203740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190496/", + "id": 190496, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-civil-war-1-tpb/4000-190496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172771/", + "id": 172771, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-whatever-happened-to-the-daugh/4000-172771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129319/", + "id": 129319, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-478/4000-129319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129075/", + "id": 129075, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-marvel-universe-1-tpb/4000-129075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127434/", + "id": 127434, + "name": "Anger", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-2-anger/4000-127434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126742/", + "id": 126742, + "name": "A Hero's Compulsion, Part 6: Payback", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-6-a-heros-compulsion-part-6-payback/4000-126742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122119/", + "id": 122119, + "name": "The Destruction of the Ultimate Universe", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-sampler-1-the-destruction-of-the-u/4000-122119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121176/", + "id": 121176, + "name": "Swing Shift", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2007-spider-man-1-swing-shift/4000-121176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110596/", + "id": 110596, + "name": "Back In Black (Part 3 of 5)", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-541-back-in-black-part-3-of/4000-110596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109269/", + "id": 109269, + "name": "Part 5 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-5-part-5-of-9/4000-109269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109262/", + "id": 109262, + "name": "Two Plus Two, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-27-two-plus-two-part-2/4000-109262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108583/", + "id": 108583, + "name": "The Strange Case of... Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-37-the-strange-case-of-/4000-108583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108563/", + "id": 108563, + "name": "Ultimate Knights, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-108-ultimate-knights-part-3/4000-108563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108360/", + "id": 108360, + "name": "Revolution, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-29-revolution-pt-3/4000-108360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107997/", + "id": 107997, + "name": "Marvel Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-2-marvel-team-u/4000-107997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107993/", + "id": 107993, + "name": "Sandblasted: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-19-sandblasted-co/4000-107993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107208/", + "id": 107208, + "name": "Part 4 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-4-part-4-of-9/4000-107208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573385/", + "id": 573385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-16/4000-573385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298188/", + "id": 298188, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-14/4000-298188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295853/", + "id": 295853, + "name": "La última cacería de Kraven", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-3-la-ultima-caceria-/4000-295853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295852/", + "id": 295852, + "name": "El ataque de El Lagarto", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-2-el-ataque-de-el-la/4000-295852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286049/", + "id": 286049, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-5/4000-286049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286048/", + "id": 286048, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-4/4000-286048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286045/", + "id": 286045, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-2/4000-286045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285377/", + "id": 285377, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-la-muerte-de-j/4000-285377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263353/", + "id": 263353, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/blade-undead-again-1-volume-1/4000-263353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246734/", + "id": 246734, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-my-secret-life-1-volume/4000-246734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225960/", + "id": 225960, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-peter-parker-spider-man-1-tpb/4000-225960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113652/", + "id": 113652, + "name": "The Simple Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-16-the-simple-thing/4000-113652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111414/", + "id": 111414, + "name": "Sons Of The Serpent", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-11-sons-of-the-serpent/4000-111414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108966/", + "id": 108966, + "name": "To Have And To Hold", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-annual-1-to-have-and-to/4000-108966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108843/", + "id": 108843, + "name": "Three Rings... Of Danger", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-25-three-rings-of-dan/4000-108843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106959/", + "id": 106959, + "name": "Whatever Happened to the Daughter of Spider-Man? Part 6: The Hobgoblin and the Hostage!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-6-whatever-happened-to-the/4000-106959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106909/", + "id": 106909, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-confession-1/4000-106909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106791/", + "id": 106791, + "name": "Earth's Mightiest Zero", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-1-earths-mighti/4000-106791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413244/", + "id": 413244, + "name": "Lesser of Two Evils", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-151-lesser-of-tw/4000-413244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171452/", + "id": 171452, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-civil-war-1-civil-war/4000-171452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135829/", + "id": 135829, + "name": "All Out War", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3-all-out-war/4000-135829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171451/", + "id": 171451, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fantastic-four-1-tpb/4000-171451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300571/", + "id": 300571, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sonderheft-11/4000-300571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300352/", + "id": 300352, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-76/4000-300352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254194/", + "id": 254194, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-war-crimes-1-tpb/4000-254194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170811/", + "id": 170811, + "name": "Civil War: Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-amazing-spider-man-1-civil-war-amazing-s/4000-170811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109598/", + "id": 109598, + "name": "Independence Day", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-2-13-independence-day/4000-109598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287686/", + "id": 287686, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-49-deadpool/4000-287686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256215/", + "id": 256215, + "name": "BEYOND! A New SAGA Begins!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-55-beyond-a-new-saga-be/4000-256215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295637/", + "id": 295637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-36/4000-295637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289774/", + "id": 289774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-7/4000-289774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106792/", + "id": 106792, + "name": "C'mon, Suzie, Don't Leave Us Hangin / If This Be...Anniversary! / A Day At The Races", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-543-c-mon-suzie-don-t-leave-us-hang/4000-106792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413243/", + "id": 413243, + "name": "Growing Pains!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-150-growing-pain/4000-413243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280474/", + "id": 280474, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-roger-stern-1-tpb/4000-280474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234902/", + "id": 234902, + "name": "Civil War: Front Line, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-book-two-1-civil-war-front-li/4000-234902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222986/", + "id": 222986, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-omnibus-1-volume-one/4000-222986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172619/", + "id": 172619, + "name": "Sensational Spider-Man: Feral", + "site_detail_url": "https://comicvine.gamespot.com/sensational-spider-man-feral-1-sensational-spider-/4000-172619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167631/", + "id": 167631, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1-civil-war/4000-167631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135824/", + "id": 135824, + "name": "In The Hands Of U-Foes", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2-in-the-hands-of-u-foe/4000-135824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135801/", + "id": 135801, + "name": "Breakout: Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-1-breakout-part-1-of-5/4000-135801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-786042/", + "id": 786042, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-big-city-super-heroes-1-/4000-786042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384785/", + "id": 384785, + "name": "Вечер встреч. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-112-2/4000-384785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383074/", + "id": 383074, + "name": "Локи и Крушитель", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-104-wikiissu/4000-383074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383073/", + "id": 383073, + "name": "Повелители Зла, или Заговор трусливых гениев", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-103-wikiissu/4000-383073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382282/", + "id": 382282, + "name": "Неожиданные последствия", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-119-wikiissue/4000-382282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382281/", + "id": 382281, + "name": "Акты агрессии", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-118-wikiissue/4000-382281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324551/", + "id": 324551, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-62/4000-324551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300536/", + "id": 300536, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-65/4000-300536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298290/", + "id": 298290, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-67/4000-298290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297419/", + "id": 297419, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-78/4000-297419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295417/", + "id": 295417, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-88/4000-295417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291104/", + "id": 291104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-200705/4000-291104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286000/", + "id": 286000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-9/4000-286000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285960/", + "id": 285960, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2/4000-285960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283122/", + "id": 283122, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-salvaje-1/4000-283122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275914/", + "id": 275914, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-145/4000-275914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260060/", + "id": 260060, + "name": "Spinner-Man", + "site_detail_url": "https://comicvine.gamespot.com/mad-104-spinner-man/4000-260060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216857/", + "id": 216857, + "name": "Civil War - Fallen Son", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-43-civil-war-fallen-son/4000-216857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204068/", + "id": 204068, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men-universe-1-tpb/4000-204068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203578/", + "id": 203578, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-the-black-costume-1-v/4000-203578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167091/", + "id": 167091, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/essential-fantastic-four-6-volume-6/4000-167091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154949/", + "id": 154949, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-8-volume-8/4000-154949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141507/", + "id": 141507, + "name": "Targets of Opportunity", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points-5-targets-of-opportunity/4000-141507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132276/", + "id": 132276, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-kids-7/4000-132276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126739/", + "id": 126739, + "name": "A Hero's Compulsion, Part 5: New Powers", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-5-a-heros-compulsion-part-5-new-powers/4000-126739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111267/", + "id": 111267, + "name": "Back In Black (Part 2 of 5)", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-540-back-in-black-part-2-of/4000-111267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109835/", + "id": 109835, + "name": "Death of the Dream (Part 2 of 6)", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-26-death-of-the-dream-part-2-of-6/4000-109835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107616/", + "id": 107616, + "name": "Ultimate Knights, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-107-ultimate-knights-part-2/4000-107616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107593/", + "id": 107593, + "name": "The Strange Case of... Part 2 (of 3)", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-36-the-strange-case-of-/4000-107593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106902/", + "id": 106902, + "name": "Revolution, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-28-revolution-pt-2/4000-106902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106822/", + "id": 106822, + "name": "Ultimate Knights: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-106-ultimate-knights-part-1/4000-106822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106810/", + "id": 106810, + "name": "Sandblasted Part 2", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-18-sandblasted-pa/4000-106810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573384/", + "id": 573384, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-15/4000-573384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573383/", + "id": 573383, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-14/4000-573383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298187/", + "id": 298187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-13/4000-298187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295851/", + "id": 295851, + "name": "El traje maldito", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-los-imprescindibles-1-el-traje-maldito/4000-295851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291279/", + "id": 291279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-16/4000-291279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286044/", + "id": 286044, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-ultimate-spiderman-1/4000-286044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285381/", + "id": 285381, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-de-todd-mcfarl/4000-285381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240203/", + "id": 240203, + "name": "Volume 14", + "site_detail_url": "https://comicvine.gamespot.com/exiles-the-new-exiles-1-volume-14/4000-240203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205174/", + "id": 205174, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-duty-calls-1-volume-8/4000-205174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170028/", + "id": 170028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-classics-14/4000-170028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164280/", + "id": 164280, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-birth-of-venom-1-tpb/4000-164280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127857/", + "id": 127857, + "name": "Breaking Up is Venomous To Do!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-24-breaking-up-is-ven/4000-127857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113844/", + "id": 113844, + "name": "Homesick; Catfight; Sand Blasted; He Who Laughs Last...!; A New Assassin From Beast Road", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-1-homesick-catfight-sand-blasted/4000-113844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113651/", + "id": 113651, + "name": "The Goodbye Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-15-the-goodbye-thing/4000-113651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111723/", + "id": 111723, + "name": "I Was a Pre-Teen Super-Villain!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-4-i-was-a-pre-teen-super/4000-111723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111413/", + "id": 111413, + "name": "Medieval Women", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-10-medieval-women/4000-111413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108458/", + "id": 108458, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-back-in-black-handbook-1/4000-108458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106558/", + "id": 106558, + "name": "Whatever Happened to the Daughter of Spider-Man? part 5: Priorities!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-5-whatever-happened-to-the/4000-106558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355432/", + "id": 355432, + "name": "Legacy of the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-149-legacy-of-th/4000-355432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297075/", + "id": 297075, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-150/4000-297075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237651/", + "id": 237651, + "name": "Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-clone-saga-1-clone-saga/4000-237651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234901/", + "id": 234901, + "name": "Civil War: Front Line, Book One", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-book-one-1-civil-war-front-li/4000-234901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172612/", + "id": 172612, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-mystery-date-1-vo/4000-172612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295636/", + "id": 295636, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-35/4000-295636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237593/", + "id": 237593, + "name": "Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-six-1-ultimate-six/4000-237593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-850406/", + "id": 850406, + "name": "Le costume maléfique", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-1-le-costume-malefi/4000-850406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798202/", + "id": 798202, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-1-volume-1/4000-798202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436989/", + "id": 436989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-207/4000-436989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410700/", + "id": 410700, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-strips-gesamtausgabe-1/4000-410700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384784/", + "id": 384784, + "name": "Вечер встреч. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-111-1/4000-384784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383071/", + "id": 383071, + "name": "Морской переполох", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-101-wikiissu/4000-383071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382280/", + "id": 382280, + "name": "Тревожное утро", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-117-wikiissue/4000-382280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382279/", + "id": 382279, + "name": "Неуязвимый. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-116-4/4000-382279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382254/", + "id": 382254, + "name": "Воины. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-93-6/4000-382254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367780/", + "id": 367780, + "name": "Fashion Victims!, The Replacements, Microscopic!, The Dance", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-magazine-1-fashion-victims-the-/4000-367780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302513/", + "id": 302513, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-captain-america-1-tpb/4000-302513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300535/", + "id": 300535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-64/4000-300535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298289/", + "id": 298289, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-66/4000-298289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295416/", + "id": 295416, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-87/4000-295416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291765/", + "id": 291765, + "name": "Civil War: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-67-civil-war-front-line/4000-291765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285959/", + "id": 285959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1/4000-285959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284004/", + "id": 284004, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-23/4000-284004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178425/", + "id": 178425, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-1-volume-o/4000-178425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152574/", + "id": 152574, + "name": "Family Matters", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-2-family-matters/4000-152574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141506/", + "id": 141506, + "name": "The Ripples Continue...", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points-4-the-ripples-continue/4000-141506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141310/", + "id": 141310, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-8-volume-8/4000-141310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119908/", + "id": 119908, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-186/4000-119908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118528/", + "id": 118528, + "name": "The End - Part 6/6", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end-6-the-end-part-66/4000-118528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108968/", + "id": 108968, + "name": "Embedded, Part 11", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-11-embedded-part-11/4000-108968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107995/", + "id": 107995, + "name": "The Deal, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-14-the-deal-part-2/4000-107995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107203/", + "id": 107203, + "name": "Back In Black (Part 1 of 5)", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-539-back-in-black-part-1-of/4000-107203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106708/", + "id": 106708, + "name": "War Crimes, Part 3: Thunder And Lightning", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-25-war-crimes-part-3-thunder-and-lig/4000-106708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106633/", + "id": 106633, + "name": "Small Wake for a Tall Man", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-4-small-wake-for-a-tall-man/4000-106633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106468/", + "id": 106468, + "name": "The Strange Case of... [part one]", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-35-the-strange-case-of-/4000-106468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106365/", + "id": 106365, + "name": "Sandblasted: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-17-sandblasted-pa/4000-106365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106364/", + "id": 106364, + "name": "Revolution, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-27-revolution-pt-1/4000-106364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106363/", + "id": 106363, + "name": "Clone Saga: Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-105-clone-saga-epilogue/4000-106363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298186/", + "id": 298186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-12/4000-298186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295634/", + "id": 295634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-33/4000-295634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294024/", + "id": 294024, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-frank-miller-and-klaus-janson-omnibus/4000-294024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291278/", + "id": 291278, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-15/4000-291278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290343/", + "id": 290343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-12/4000-290343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228269/", + "id": 228269, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-3-volume-3/4000-228269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165616/", + "id": 165616, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-of-the-sandman-1-tpb/4000-165616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141073/", + "id": 141073, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-6/4000-141073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133202/", + "id": 133202, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-laws-of-attraction-1-volume-4/4000-133202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127856/", + "id": 127856, + "name": "Dust-Up In Aisle Seven!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-23-dust-up-in-aisle-s/4000-127856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115544/", + "id": 115544, + "name": "What Happened to the Daughter of Spider-Man? Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-4-what-happened-to-the-dau/4000-115544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111722/", + "id": 111722, + "name": "Project: Run Away! Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-3-project-run-away-part-/4000-111722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111412/", + "id": 111412, + "name": "A Not-So-Beautiful Mind", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-9-a-not-so-beautiful-mi/4000-111412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106010/", + "id": 106010, + "name": "The Secret Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-14-the-secret-thing/4000-106010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413242/", + "id": 413242, + "name": "Carnage at Coney Island!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-148-carnage-at-c/4000-413242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297074/", + "id": 297074, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-149/4000-297074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256175/", + "id": 256175, + "name": "GHOST RIDER A New Saga BEGINS!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-53-ghost-rider-a-new-sa/4000-256175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107416/", + "id": 107416, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-battle-damage-report-1/4000-107416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220426/", + "id": 220426, + "name": "The Amazing Spider-Man: The Ultimate Guide", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-ultimate-guidethe-amazing-spider-ma/4000-220426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287685/", + "id": 287685, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-48-deadpool/4000-287685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237629/", + "id": 237629, + "name": "Superstars", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-superstars-1-superstars/4000-237629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295774/", + "id": 295774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-10/4000-295774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295635/", + "id": 295635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-34/4000-295635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289773/", + "id": 289773, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-6/4000-289773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416840/", + "id": 416840, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-6-venom/4000-416840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413241/", + "id": 413241, + "name": "Central Park Alamo", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-147-central-park/4000-413241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839380/", + "id": 839380, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200701/4000-839380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820216/", + "id": 820216, + "name": "Mr. Parker drar til Washington", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200701-mr-parker-drar-til-washington/4000-820216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451320/", + "id": 451320, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-riot-at-rykers-i/4000-451320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383070/", + "id": 383070, + "name": "Замена", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-100-wikiissu/4000-383070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383069/", + "id": 383069, + "name": "Друг познается в беде", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-99-wikiissue/4000-383069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382278/", + "id": 382278, + "name": "Неуязвимый. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-115-3/4000-382278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382277/", + "id": 382277, + "name": "Неуязвимый. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-114-2/4000-382277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298288/", + "id": 298288, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-65/4000-298288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295415/", + "id": 295415, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-86/4000-295415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291960/", + "id": 291960, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-23/4000-291960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291106/", + "id": 291106, + "name": "Book 'em, Rufus!", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-200703-book-em-rufus/4000-291106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289483/", + "id": 289483, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-201/4000-289483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285998/", + "id": 285998, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-8/4000-285998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284003/", + "id": 284003, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-22/4000-284003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275912/", + "id": 275912, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-143/4000-275912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203145/", + "id": 203145, + "name": "WIZARD XTRA!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-xtra-1-wizard-xtra/4000-203145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173691/", + "id": 173691, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-team-up-1-tpb/4000-173691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151943/", + "id": 151943, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/essential-spectacular-spider-man-3-volume-three/4000-151943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141505/", + "id": 141505, + "name": "What Goes Up Must Come Down", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points-3-what-goes-up-must-come-down/4000-141505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140345/", + "id": 140345, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/champions-classic-2-volume-two/4000-140345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132607/", + "id": 132607, + "name": "The Collective", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-collective-1-the-collective/4000-132607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126738/", + "id": 126738, + "name": "A Hero's Compulsion, Part 3: Families", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-3-a-heros-compulsion-part-3-families/4000-126738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118529/", + "id": 118529, + "name": "The End - Part 5/6", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end-5-the-end-part-56/4000-118529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113628/", + "id": 113628, + "name": "Nothing Can Stop The Rhino!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-34-nothing-can-stop-the/4000-113628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106931/", + "id": 106931, + "name": "Book 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reign-4-book-4/4000-106931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106627/", + "id": 106627, + "name": "The War at Home, Part 7", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-538-the-war-at-home-part-7/4000-106627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106327/", + "id": 106327, + "name": "How I Won the War part 3: Mutually Assured Destruction", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-3-how-i-won-the-war-part-3-mu/4000-106327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106255/", + "id": 106255, + "name": "Taking Wing: Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-16-taking-wing-co/4000-106255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106252/", + "id": 106252, + "name": "Clone Saga: Part 8", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-104-clone-saga-part-8/4000-106252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594854/", + "id": 594854, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-the-marvel-universe-1-hc/4000-594854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573382/", + "id": 573382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-13/4000-573382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298185/", + "id": 298185, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-11/4000-298185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297486/", + "id": 297486, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-15/4000-297486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291258/", + "id": 291258, + "name": "Mala sangre", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-thunderbolts-3-mala-sangre/4000-291258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290342/", + "id": 290342, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-11/4000-290342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189766/", + "id": 189766, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-freedom-ring-1-volume-4/4000-189766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139723/", + "id": 139723, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-silver-surfer-1/4000-139723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115543/", + "id": 115543, + "name": "Whatever Happened to the Daughter of Spider-Man? Part 3: A Bitter Frost", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-3-whatever-happened-to-the/4000-115543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114569/", + "id": 114569, + "name": "Part 3 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-3-part-3-of-9/4000-114569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111721/", + "id": 111721, + "name": "The New Kid, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-2-the-new-kid-part-2/4000-111721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106983/", + "id": 106983, + "name": "The Parker Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-13-the-parker-thing/4000-106983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106454/", + "id": 106454, + "name": "Taking Wing - Part 2", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-15-taking-wing-pa/4000-106454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106261/", + "id": 106261, + "name": "World War G", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-22-world-war-g/4000-106261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106004/", + "id": 106004, + "name": "Loki Laughs Last", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-8-loki-laughs-last/4000-106004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399450/", + "id": 399450, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hors-serie-27/4000-399450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297073/", + "id": 297073, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-148/4000-297073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256176/", + "id": 256176, + "name": "SHE-HULK Returns In A New Story!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-52-she-hulk-returns-in-/4000-256176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203190/", + "id": 203190, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-execute-program-1-volume-2/4000-203190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439284/", + "id": 439284, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-24/4000-439284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413240/", + "id": 413240, + "name": "Something Sinister This Way Comes!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-146-something-si/4000-413240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107860/", + "id": 107860, + "name": "Marvel Legacy: The 1990s Handbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-4-marvel-legacy-the-1990s-handbook/4000-107860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439283/", + "id": 439283, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-23/4000-439283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222794/", + "id": 222794, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-annuals-volume-one-2-volume-two/4000-222794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193513/", + "id": 193513, + "name": "The Road to Civil War", + "site_detail_url": "https://comicvine.gamespot.com/the-road-to-civil-war-1-the-road-to-civil-war/4000-193513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154672/", + "id": 154672, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-ms-marvel-1-volume-1/4000-154672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106400/", + "id": 106400, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reign-3-book-three/4000-106400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439281/", + "id": 439281, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-22/4000-439281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424951/", + "id": 424951, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-birth-of-a-legend-1-tpb/4000-424951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383068/", + "id": 383068, + "name": "Кошачьи шалости", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-98-wikiissue/4000-383068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383067/", + "id": 383067, + "name": "Погоня за призраком!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-97-wikiissue/4000-383067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382276/", + "id": 382276, + "name": "Неуязвимый. Часть", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-113-wikiissue/4000-382276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382275/", + "id": 382275, + "name": "Голубоглазое чудо. Окончание", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-112-wikiissue/4000-382275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298287/", + "id": 298287, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-64/4000-298287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295414/", + "id": 295414, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-85/4000-295414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291959/", + "id": 291959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-22/4000-291959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217744/", + "id": 217744, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-2-volume-two/4000-217744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216545/", + "id": 216545, + "name": "Death of the Stacys", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-of-the-stacys-1-death-of-the-stac/4000-216545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203739/", + "id": 203739, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-mischief-1-volume-2/4000-203739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203736/", + "id": 203736, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-monsters-on-the-prowl/4000-203736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154671/", + "id": 154671, + "name": "2007 Preview Issue", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-184-2007-preview-issue/4000-154671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151297/", + "id": 151297, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/essential-defenders-2-volume-two/4000-151297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148358/", + "id": 148358, + "name": "What If Legion Had Killed Xavier and Magneto?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-x-men-age-of-apocalypse-1-what-if-legion-h/4000-148358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141504/", + "id": 141504, + "name": "Trajectories in Flight", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points-2-trajectories-in-flight/4000-141504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113627/", + "id": 113627, + "name": "Wounds", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-33-wounds/4000-113627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113596/", + "id": 113596, + "name": "Clone Saga: Part 7", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-103-clone-saga-part-7/4000-113596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111333/", + "id": 111333, + "name": "The Observer Effect", + "site_detail_url": "https://comicvine.gamespot.com/beyond-6-the-observer-effect/4000-111333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108957/", + "id": 108957, + "name": "Rubicon", + "site_detail_url": "https://comicvine.gamespot.com/iron-mancaptain-america-casualties-of-war-1-rubico/4000-108957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108948/", + "id": 108948, + "name": "Embedded, Part 9 / The Accused, Part 9 / Sleeper Cell, Part 7", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-9-embedded-part-9-the-accused/4000-108948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108550/", + "id": 108550, + "name": "How I Won The War Part 2: Dead Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-2-how-i-won-the-war-part-2-de/4000-108550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106348/", + "id": 106348, + "name": "A Hero's Compulsion, Part 2: Claws", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-2-a-heros-compulsion-part-2-claws/4000-106348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106104/", + "id": 106104, + "name": "The War at Home, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-537-the-war-at-home-part-6/4000-106104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573381/", + "id": 573381, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-12/4000-573381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298184/", + "id": 298184, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-10/4000-298184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295633/", + "id": 295633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-32/4000-295633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290710/", + "id": 290710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-13/4000-290710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279024/", + "id": 279024, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-john-buscema-1-hctpb/4000-279024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208695/", + "id": 208695, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/defenders-indefensible-1-tpb/4000-208695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186647/", + "id": 186647, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-black-cat-claws-1-hctpb/4000-186647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186402/", + "id": 186402, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-and-endings-1-hctpb/4000-186402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175593/", + "id": 175593, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-3-volume-3/4000-175593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149202/", + "id": 149202, + "name": "Elemental Evil; Nothing Gained; The Date; Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-featuring-spider-clan-1-elementa/4000-149202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129355/", + "id": 129355, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-spider-man-1/4000-129355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127855/", + "id": 127855, + "name": "Fashion Victims!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-21-fashion-victims/4000-127855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115542/", + "id": 115542, + "name": "Whatever Happened to the Daughter of Spider-Man? Part 2: Rocked by Reverb!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-2-whatever-happened-to-the/4000-115542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114568/", + "id": 114568, + "name": "Part 2 of 9", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-2-part-2-of-9/4000-114568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113650/", + "id": 113650, + "name": "The Flirting Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-12-the-flirting-thing/4000-113650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111692/", + "id": 111692, + "name": "The New Kid, Part 1: Everything Old Is Young Again...; Civil Wards Part 1; A New Light", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-1-the-new-kid-part-1-eve/4000-111692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111546/", + "id": 111546, + "name": "Death of Ashley J Williams Part 2", + "site_detail_url": "https://comicvine.gamespot.com/army-of-darkness-13-death-of-ashley-j-williams-par/4000-111546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111406/", + "id": 111406, + "name": "Like A Juggernaut!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-7-like-a-juggernaut/4000-111406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105387/", + "id": 105387, + "name": "Taking Wing - Part 1", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-14-taking-wing-pa/4000-105387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439280/", + "id": 439280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-21/4000-439280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273876/", + "id": 273876, + "name": "Spider-Man - Das Regime", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-31-spider-man-das-regime/4000-273876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413239/", + "id": 413239, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-145/4000-413239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297072/", + "id": 297072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-147/4000-297072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256177/", + "id": 256177, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-51/4000-256177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106020/", + "id": 106020, + "name": "Captains Courageous / The Decision", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-return-1-captains-courageous-the-dec/4000-106020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422021/", + "id": 422021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-20/4000-422021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287684/", + "id": 287684, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-47-silver-sable/4000-287684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422020/", + "id": 422020, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-19/4000-422020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295772/", + "id": 295772, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-8/4000-295772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289772/", + "id": 289772, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-5/4000-289772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237627/", + "id": 237627, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-carnage-1-carnage/4000-237627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413238/", + "id": 413238, + "name": "Judgement Day", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-144-judgement-da/4000-413238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106449/", + "id": 106449, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reign-2-book-two/4000-106449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444776/", + "id": 444776, + "name": "Spider-Man vs. Sandman and Venom Digest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-1-spider-man-vs-sandm/4000-444776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444254/", + "id": 444254, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-4/4000-444254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443184/", + "id": 443184, + "name": "Game Over, Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-1-game-over-green-goblin/4000-443184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383066/", + "id": 383066, + "name": "Неравный обмен", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-96-wikiissue/4000-383066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383065/", + "id": 383065, + "name": "Идеальный снимок", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-95-wikiissue/4000-383065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382274/", + "id": 382274, + "name": "Голубоглазое чудо. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-111-5/4000-382274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382272/", + "id": 382272, + "name": "Голубоглазое чудо. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-110-4/4000-382272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-374767/", + "id": 374767, + "name": "Marvel Spotlight: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-spider-man-one-more-daybrand-new-/4000-374767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300000/", + "id": 300000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-61/4000-300000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298815/", + "id": 298815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universo-marvel-22/4000-298815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298813/", + "id": 298813, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universo-marvel-16/4000-298813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298286/", + "id": 298286, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-63/4000-298286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295413/", + "id": 295413, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-84/4000-295413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295298/", + "id": 295298, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-le-storie-indimenticabili-1/4000-295298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292354/", + "id": 292354, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/max-17-marvel-zombies/4000-292354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292267/", + "id": 292267, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-18/4000-292267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292169/", + "id": 292169, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-20-civil-war/4000-292169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292076/", + "id": 292076, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-made-in-italy-1/4000-292076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292033/", + "id": 292033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-6/4000-292033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289686/", + "id": 289686, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-86/4000-289686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285996/", + "id": 285996, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-7/4000-285996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284001/", + "id": 284001, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-20/4000-284001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234306/", + "id": 234306, + "name": "Inside Brand New Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-the-amazing-spider-man-1-inside-b/4000-234306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201964/", + "id": 201964, + "name": "Spider-Man: Tenetevi Forte, Arriva il Fenomeno!", + "site_detail_url": "https://comicvine.gamespot.com/il-giornalino-200722-spider-man-tenetevi-forte-arr/4000-201964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201962/", + "id": 201962, + "name": "Esclusivo! Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/il-giornalino-200720-esclusivo-spider-man/4000-201962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198295/", + "id": 198295, + "name": "Die Größten Spinnereien", + "site_detail_url": "https://comicvine.gamespot.com/mad-special-15-die-groten-spinnereien/4000-198295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173353/", + "id": 173353, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/rough-stuff-3/4000-173353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155829/", + "id": 155829, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/essential-captain-america-3-volume-three/4000-155829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154674/", + "id": 154674, + "name": "The Best of 2006", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-183-the-best-of-2006/4000-154674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149185/", + "id": 149185, + "name": "Michael Golden", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-12-michael-golden/4000-149185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149184/", + "id": 149184, + "name": "Charles Vess", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-11-charles-vess/4000-149184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142763/", + "id": 142763, + "name": "What If Spider-Man Had Rejected The Spider - Poison Selves", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-the-other-1-what-if-spider-man-/4000-142763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142096/", + "id": 142096, + "name": "Giant-Sized Thing, Vol 2", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-giant-sized-thing-2-giant-size/4000-142096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141489/", + "id": 141489, + "name": "Bullet Points", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points-1-bullet-points/4000-141489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140587/", + "id": 140587, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-heroes-3-volume-three/4000-140587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139136/", + "id": 139136, + "name": "What if Wolverine was never deprogrammed? Bite the hand that feeds", + "site_detail_url": "https://comicvine.gamespot.com/what-if-wolverine-enemy-of-the-state-1-what-if-wol/4000-139136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129037/", + "id": 129037, + "name": "What if The Scarlet Witch Hadn't Acted Alone?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-featuring-avengers-disassembled-1-what-if-/4000-129037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126693/", + "id": 126693, + "name": "A Hero's Compulsion, Part 1: Obsessed", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-1-a-heros-compulsion-part-1-obsessed/4000-126693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111399/", + "id": 111399, + "name": "Civil War, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-14-civil-war-part-2/4000-111399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110140/", + "id": 110140, + "name": "The Husband or the Spider?", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-32-the-husband-or-the-s/4000-110140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108549/", + "id": 108549, + "name": "How I Won The War Part 1: Bring On The Bad Guys", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-1-how-i-won-the-war-part-1-br/4000-108549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106626/", + "id": 106626, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-7-untitled/4000-106626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106133/", + "id": 106133, + "name": "Clone Saga part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-102-clone-saga-part-6/4000-106133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106012/", + "id": 106012, + "name": "Midnight Sun, Chapter 1: The Woodwork", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-7-midnight-sun-chapter-1-the-woodwork/4000-106012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593389/", + "id": 593389, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-7-volume-7/4000-593389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573380/", + "id": 573380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-11/4000-573380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-522548/", + "id": 522548, + "name": "The Power of Reading", + "site_detail_url": "https://comicvine.gamespot.com/target-presents-reading-to-the-rescue-4-the-power-/4000-522548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511333/", + "id": 511333, + "name": "Het Werd Tijd", + "site_detail_url": "https://comicvine.gamespot.com/soeperman-1-het-werd-tijd/4000-511333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298321/", + "id": 298321, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-5/4000-298321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298183/", + "id": 298183, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-9/4000-298183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297484/", + "id": 297484, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-14/4000-297484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291275/", + "id": 291275, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-12/4000-291275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285622/", + "id": 285622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-x-men-8/4000-285622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285380/", + "id": 285380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-3/4000-285380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246733/", + "id": 246733, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-new-girl-1-volume-2/4000-246733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139724/", + "id": 139724, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-doctor-doom-1/4000-139724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139636/", + "id": 139636, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-doctor-strange-1/4000-139636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120890/", + "id": 120890, + "name": "Titannus Lives!, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-25-titannus-lives-part-2/4000-120890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111405/", + "id": 111405, + "name": "The U-Foes!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-6-the-u-foes/4000-111405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108842/", + "id": 108842, + "name": "Monster Mash", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-20-monster-mash/4000-108842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107834/", + "id": 107834, + "name": "Whatever Happened To The Daughter Of Spider-Man? Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-1-whatever-happened-to-the/4000-107834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107015/", + "id": 107015, + "name": "The MJ Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-11-the-mj-thing/4000-107015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256179/", + "id": 256179, + "name": "The SECRET Of TITANNUS!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-49-the-secret-of-titann/4000-256179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256178/", + "id": 256178, + "name": "100 PAGE SPECIAL!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-50-100-page-special/4000-256178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422019/", + "id": 422019, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-18/4000-422019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295632/", + "id": 295632, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-31/4000-295632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422018/", + "id": 422018, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-17/4000-422018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416839/", + "id": 416839, + "name": "Unter Falschem Verdacht", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-5-unter-falschem-verdach/4000-416839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413237/", + "id": 413237, + "name": "Pete's Dragon", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-143-petes-dragon/4000-413237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237648/", + "id": 237648, + "name": "Warriors", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-warriors-1-warriors/4000-237648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106466/", + "id": 106466, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reign-1-book-one/4000-106466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422016/", + "id": 422016, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-16/4000-422016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761575/", + "id": 761575, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-power-pack-assemble-1-tpb/4000-761575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436985/", + "id": 436985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-203/4000-436985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385478/", + "id": 385478, + "name": "День \"М\". Часть 8", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-68-8/4000-385478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385477/", + "id": 385477, + "name": "День \"М\". Часть 7", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-67-7/4000-385477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383036/", + "id": 383036, + "name": "Возвращение Франкенштейна", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-94-wikiissue/4000-383036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383035/", + "id": 383035, + "name": "Угроза с острова монстров!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-93-wikiissue/4000-383035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382271/", + "id": 382271, + "name": "Голубоглазое чудо. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-109-3/4000-382271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382270/", + "id": 382270, + "name": "Голубоглазое чудо. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-108-2/4000-382270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307103/", + "id": 307103, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-60/4000-307103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298285/", + "id": 298285, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-62/4000-298285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295412/", + "id": 295412, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-83/4000-295412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291957/", + "id": 291957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-20/4000-291957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288630/", + "id": 288630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/diezmados-el-vastago-de-m-1/4000-288630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235546/", + "id": 235546, + "name": "Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-phoenix-1-phoenix/4000-235546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217596/", + "id": 217596, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-1-volume-one/4000-217596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203433/", + "id": 203433, + "name": "Avengers Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled-1-avengers-disassembled/4000-203433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200194/", + "id": 200194, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-galactic-storm-2-volume-2/4000-200194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195015/", + "id": 195015, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/runaways-2-volume-2/4000-195015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154850/", + "id": 154850, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-7-volume-7/4000-154850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140389/", + "id": 140389, + "name": "Volume Six", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-6-volume-six/4000-140389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119906/", + "id": 119906, + "name": "Dead Sexy", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-182-dead-sexy/4000-119906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118525/", + "id": 118525, + "name": "The End - Part 2/6", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end-2-the-end-part-26/4000-118525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113629/", + "id": 113629, + "name": "The Deadly Foes of Peter Parker Part Three of Three", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-31-the-deadly-foes-of-p/4000-113629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111013/", + "id": 111013, + "name": "CLONE SAGA: PART 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-101-clone-saga-part-5/4000-111013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108891/", + "id": 108891, + "name": "The Drums of War (Part 2 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-23-the-drums-of-war-part-2-of-3/4000-108891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108773/", + "id": 108773, + "name": "Civil War, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-13-civil-war-part-1/4000-108773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107250/", + "id": 107250, + "name": "Mind Field", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-13-mind-field/4000-107250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107009/", + "id": 107009, + "name": "Switching Sides / Conscientious Objector / Choosing Sides / Non-Human-Americans / A New Light", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-choosing-sides-1-switching-sides-conscie/4000-107009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107000/", + "id": 107000, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-6-untitled/4000-107000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106138/", + "id": 106138, + "name": "The War at Home, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-536-the-war-at-home-part-5/4000-106138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105386/", + "id": 105386, + "name": "I Hate A Mystery 3/3", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-13-i-hate-a-myste/4000-105386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622316/", + "id": 622316, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spiderman-3/4000-622316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622314/", + "id": 622314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spiderman-1/4000-622314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-594868/", + "id": 594868, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-betrayed-1-volume-7/4000-594868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573379/", + "id": 573379, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-10/4000-573379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298182/", + "id": 298182, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-8/4000-298182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290708/", + "id": 290708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-11/4000-290708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290339/", + "id": 290339, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-8/4000-290339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285621/", + "id": 285621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-x-men-7/4000-285621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285369/", + "id": 285369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-2/4000-285369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285367/", + "id": 285367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-marvels-1/4000-285367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139774/", + "id": 139774, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-the-amazing-spider-man-1/4000-139774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119069/", + "id": 119069, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-black-and-blue-and-read-all-over-1/4000-119069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113649/", + "id": 113649, + "name": "The Right Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-10-the-right-thing/4000-113649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111404/", + "id": 111404, + "name": "The Trickster and the Wrecker", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-5-the-trickster-and-the/4000-111404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108310/", + "id": 108310, + "name": "Freedom Ring, Part 5; Titannus Lives!, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-24-freedom-ring-part-5-titannus-liv/4000-108310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108235/", + "id": 108235, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-19/4000-108235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297070/", + "id": 297070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-145/4000-297070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236774/", + "id": 236774, + "name": "Legacy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-legacy-1-legacy/4000-236774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422015/", + "id": 422015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-15/4000-422015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235748/", + "id": 235748, + "name": "New Universal", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-3-new-universal/4000-235748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186088/", + "id": 186088, + "name": "Black Panther: The Bride", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-bride-1-black-panther-the-bride/4000-186088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299727/", + "id": 299727, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-2/4000-299727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439249/", + "id": 439249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-14/4000-439249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413236/", + "id": 413236, + "name": "Trick or Treat", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-142-trick-or-tre/4000-413236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287683/", + "id": 287683, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-46-silver-sable/4000-287683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439247/", + "id": 439247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-13/4000-439247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295631/", + "id": 295631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-30/4000-295631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289771/", + "id": 289771, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-4/4000-289771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279506/", + "id": 279506, + "name": "Tales from the Clerks (The Ominbus Collection)", + "site_detail_url": "https://comicvine.gamespot.com/tales-from-the-clerks-the-ominbus-collection-1-tal/4000-279506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422014/", + "id": 422014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-12/4000-422014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840137/", + "id": 840137, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-209/4000-840137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742418/", + "id": 742418, + "name": "Tutto in una notte 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-35-tutto-in-una-notte-1/4000-742418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433767/", + "id": 433767, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-i-personaggi-e-il-loro-universo-1/4000-433767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385476/", + "id": 385476, + "name": "День \"М\". Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-66-6/4000-385476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385475/", + "id": 385475, + "name": "День \"М\". Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-65-5/4000-385475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383560/", + "id": 383560, + "name": "All Aboard!", + "site_detail_url": "https://comicvine.gamespot.com/amtrak-presents-all-aboard-1-all-aboard/4000-383560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383034/", + "id": 383034, + "name": "Дракон из космоса!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-92-wikiissue/4000-383034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383033/", + "id": 383033, + "name": "Чудище!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-91-wikiissue/4000-383033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382269/", + "id": 382269, + "name": "Голубоглазое чудо. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-107-1/4000-382269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382268/", + "id": 382268, + "name": "Последняя битва. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-106-4/4000-382268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298284/", + "id": 298284, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-61/4000-298284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297069/", + "id": 297069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-144/4000-297069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295411/", + "id": 295411, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-82/4000-295411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285994/", + "id": 285994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-6/4000-285994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256180/", + "id": 256180, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-48/4000-256180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203738/", + "id": 203738, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-heroes-assembled-1-volu/4000-203738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113626/", + "id": 113626, + "name": "The Deadly Foes of Peter Parker Part Two of Three", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-30-the-deadly-foes-of-p/4000-113626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108886/", + "id": 108886, + "name": "Some Words Can Never Be Taken Back", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-540-some-words-can-never-be-taken-b/4000-108886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108776/", + "id": 108776, + "name": "Embedded, Part 6 / The Accused, Part 6 / Sleeper Cell, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-6-embedded-part-6-the-accused/4000-108776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108678/", + "id": 108678, + "name": "Payback", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-46-payback/4000-108678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108513/", + "id": 108513, + "name": "Splinter Group", + "site_detail_url": "https://comicvine.gamespot.com/blade-1-splinter-group/4000-108513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108386/", + "id": 108386, + "name": "Execute Program, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-12-execute-program-part-6/4000-108386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108321/", + "id": 108321, + "name": "The 1980s Handbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-3-the-1980s-handbook/4000-108321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108039/", + "id": 108039, + "name": "New Avengers: Disassembled, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-24-new-avengers-disassembled-part/4000-108039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107592/", + "id": 107592, + "name": "Clone Saga - Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-100-clone-saga-part-4/4000-107592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107443/", + "id": 107443, + "name": "The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-2-12-the-avengers/4000-107443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106999/", + "id": 106999, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-5-untitled/4000-106999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105556/", + "id": 105556, + "name": "The War at Home, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-535-the-war-at-home-part-4/4000-105556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105385/", + "id": 105385, + "name": "I Hate A Mystery 2/3", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-12-i-hate-a-myste/4000-105385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573684/", + "id": 573684, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-55/4000-573684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573378/", + "id": 573378, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-9/4000-573378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298320/", + "id": 298320, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-4/4000-298320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298181/", + "id": 298181, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-7/4000-298181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297483/", + "id": 297483, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-13/4000-297483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291273/", + "id": 291273, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-10/4000-291273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290338/", + "id": 290338, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-7/4000-290338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286109/", + "id": 286109, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-x-men-18/4000-286109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285620/", + "id": 285620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-x-men-6/4000-285620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285379/", + "id": 285379, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-2/4000-285379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246732/", + "id": 246732, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-super-crush-1-tpb/4000-246732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221933/", + "id": 221933, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/runaways-parental-guidance-1-volume-6/4000-221933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216691/", + "id": 216691, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/hulk-visionaries-peter-david-3-volume-3/4000-216691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163758/", + "id": 163758, + "name": "Revealed at Last! Everything you need to know about Spider-Girl!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl-0-revealed-at-last-everyth/4000-163758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158095/", + "id": 158095, + "name": "Opposites Attack; Spidy And His Amazing Co-Workers; Castles In The Air; Nothing Ventured; Hydra And Go-Seek!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-featuring-amazing-friends-1-oppo/4000-158095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140393/", + "id": 140393, + "name": "Volume Eight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-8-volume/4000-140393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127555/", + "id": 127555, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/sentry-reborn-1-tpb/4000-127555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124266/", + "id": 124266, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-18/4000-124266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120880/", + "id": 120880, + "name": "Freedom Ring, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-23-freedom-ring-part-4/4000-120880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113648/", + "id": 113648, + "name": "The Gwen Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-9-the-gwen-thing/4000-113648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107248/", + "id": 107248, + "name": "6 Shots to the Heart", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-11-6-shots-to-the-heart/4000-107248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106762/", + "id": 106762, + "name": "The Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-4-the-masters-of-evil/4000-106762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106744/", + "id": 106744, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-annual-2/4000-106744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439246/", + "id": 439246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-11/4000-439246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465981/", + "id": 465981, + "name": "To Baldly Go!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-141-to-baldly-go/4000-465981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232970/", + "id": 232970, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-fear-1-volume-3/4000-232970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439245/", + "id": 439245, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-10/4000-439245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289071/", + "id": 289071, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-17/4000-289071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163041/", + "id": 163041, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-thor-3-volume-3/4000-163041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422013/", + "id": 422013, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-9/4000-422013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295630/", + "id": 295630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-29/4000-295630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439244/", + "id": 439244, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-8/4000-439244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413235/", + "id": 413235, + "name": "Hunted!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-140-hunted/4000-413235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256181/", + "id": 256181, + "name": "The NEW Story Begins BLADE!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-47-the-new-story-begins/4000-256181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439243/", + "id": 439243, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-7/4000-439243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383029/", + "id": 383029, + "name": "Проклятие ночного оборотня", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-90-wikiissue/4000-383029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383028/", + "id": 383028, + "name": "Я, Ящер!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-89-wikiissue/4000-383028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382267/", + "id": 382267, + "name": "Последняя битва. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-105-3/4000-382267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382266/", + "id": 382266, + "name": "Последняя битва. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-104-2/4000-382266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345135/", + "id": 345135, + "name": "The Replacements", + "site_detail_url": "https://comicvine.gamespot.com/marvel-halloween-ashcan-2006-the-replacements/4000-345135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298283/", + "id": 298283, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-60/4000-298283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297068/", + "id": 297068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-143/4000-297068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295410/", + "id": 295410, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-81/4000-295410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288603/", + "id": 288603, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-35/4000-288603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235667/", + "id": 235667, + "name": "Civil Wardrobe", + "site_detail_url": "https://comicvine.gamespot.com/civil-wardrobe-1-civil-wardrobe/4000-235667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203735/", + "id": 203735, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-concrete-jungle-1-vol/4000-203735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200240/", + "id": 200240, + "name": "Cable and Deadpool: The Human Race", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-the-human-race-1-cable-and-dead/4000-200240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186400/", + "id": 186400, + "name": "Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-agent-of-shield-1-agent-of-shield/4000-186400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185336/", + "id": 185336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-posterbook-1/4000-185336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172607/", + "id": 172607, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-derailed-1-volume/4000-172607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155832/", + "id": 155832, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-hulk-4-volume-4/4000-155832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119632/", + "id": 119632, + "name": "Ed Brubaker & Billy Tan", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-ed-brubaker-billy-tan-1-ed-brubak/4000-119632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110139/", + "id": 110139, + "name": "The Deadly Foes of Peter Parker, Part One of Three", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-29-the-deadly-foes-of-p/4000-110139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108696/", + "id": 108696, + "name": "Embedded, Part 5 / The Accused, Part 5 / Sleeper Cell, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-5-embedded-part-5-the-accused/4000-108696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108695/", + "id": 108695, + "name": "Taking It To The Streets, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-1-taking-it-to-the-streets-part-1/4000-108695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108617/", + "id": 108617, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/claws-1-part-1/4000-108617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108385/", + "id": 108385, + "name": "Execute Program, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-11-execute-program-part-5/4000-108385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107843/", + "id": 107843, + "name": "Clone Saga Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-98-clone-saga-part-2/4000-107843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107591/", + "id": 107591, + "name": "Clone Saga Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-99-clone-saga-part-3/4000-107591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106038/", + "id": 106038, + "name": "The New Exiles (part 1 of 2)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-85-the-new-exiles-part-1-of-2/4000-106038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105682/", + "id": 105682, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-4-untitled/4000-105682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105384/", + "id": 105384, + "name": "I Hate A Mystery 1/3", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-11-i-hate-a-myste/4000-105384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573683/", + "id": 573683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-54/4000-573683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298180/", + "id": 298180, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-6/4000-298180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291272/", + "id": 291272, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-9/4000-291272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285619/", + "id": 285619, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-x-men-5/4000-285619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285253/", + "id": 285253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-1602-1/4000-285253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285248/", + "id": 285248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-3/4000-285248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283147/", + "id": 283147, + "name": "El Mal Que Hacen los Hombres", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-y-la-gata-negra-1-el-mal-que-/4000-283147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276203/", + "id": 276203, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thing-idol-of-millions-1-tpb/4000-276203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259819/", + "id": 259819, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-life-fantastic-1-tpb/4000-259819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124265/", + "id": 124265, + "name": "Hair of the Dog that Bit Ya", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-17-hair-of-the-dog-th/4000-124265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117324/", + "id": 117324, + "name": "If Death Be My Destiny!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-100-if-death-be-my-destiny/4000-117324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111726/", + "id": 111726, + "name": "Conquered! Part 2: Pack to the Future", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-power-pack-assemble-4-conquered-part-/4000-111726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111403/", + "id": 111403, + "name": "Finding Zemo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-3-finding-zemo/4000-111403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108847/", + "id": 108847, + "name": "Whose Side Are You On?", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-files-1-whose-side-are-you-on/4000-108847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106982/", + "id": 106982, + "name": "The Single Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-8-the-single-thing/4000-106982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237609/", + "id": 237609, + "name": "Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hollywood-1-hollywood/4000-237609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133266/", + "id": 133266, + "name": "Ultimate Power", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-1-ultimate-power/4000-133266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439242/", + "id": 439242, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-6/4000-439242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258518/", + "id": 258518, + "name": "New Mangaverse: The Rings of Fate", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-1-new-mangaverse-/4000-258518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187684/", + "id": 187684, + "name": "Vol. 6", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne-6-vol-6/4000-187684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300344/", + "id": 300344, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-68/4000-300344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439241/", + "id": 439241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-5/4000-439241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287682/", + "id": 287682, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-45-silver-sable/4000-287682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716052/", + "id": 716052, + "name": "Three Times Trouble!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-139-three-times-/4000-716052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237650/", + "id": 237650, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-deadpool-1-deadpool/4000-237650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295770/", + "id": 295770, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-6/4000-295770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295629/", + "id": 295629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-28/4000-295629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289770/", + "id": 289770, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-3/4000-289770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439240/", + "id": 439240, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-4/4000-439240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416838/", + "id": 416838, + "name": "Das Vermächtnis", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-4-das-vermachtnis/4000-416838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236884/", + "id": 236884, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-venom-1-venom/4000-236884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439239/", + "id": 439239, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-3/4000-439239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436957/", + "id": 436957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-200/4000-436957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385471/", + "id": 385471, + "name": "День \"М\". Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-61-1/4000-385471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383027/", + "id": 383027, + "name": "Как Человек-Паук приручил щупальца!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-88--/4000-383027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383026/", + "id": 383026, + "name": "Черная Кошка?!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-87-wikiissue/4000-383026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382265/", + "id": 382265, + "name": "Последняя битва. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-103-1/4000-382265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382264/", + "id": 382264, + "name": "Веном: На продажу! Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-102-4/4000-382264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300529/", + "id": 300529, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-57/4000-300529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300156/", + "id": 300156, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-116/4000-300156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298282/", + "id": 298282, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-59/4000-298282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297067/", + "id": 297067, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-142/4000-297067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295409/", + "id": 295409, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-80/4000-295409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285993/", + "id": 285993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-5/4000-285993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259372/", + "id": 259372, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-ultimate-collection-1-tpb/4000-259372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239431/", + "id": 239431, + "name": "Hannah Montana", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-200609-hannah-montana/4000-239431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181943/", + "id": 181943, + "name": "Decimation: Son of M", + "site_detail_url": "https://comicvine.gamespot.com/decimation-son-of-m-1-decimation-son-of-m/4000-181943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174441/", + "id": 174441, + "name": "Super Teams", + "site_detail_url": "https://comicvine.gamespot.com/the-jack-kirby-collector-47-super-teams/4000-174441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168841/", + "id": 168841, + "name": "New Avengers: Secrets and Lies", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-secrets-and-lies-1-new-avengers-secre/4000-168841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142219/", + "id": 142219, + "name": "Actor Comics Presents", + "site_detail_url": "https://comicvine.gamespot.com/actor-comics-presents-1-actor-comics-presents/4000-142219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142103/", + "id": 142103, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-team-up-2-volume-2/4000-142103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138254/", + "id": 138254, + "name": "X-Men: The Characters and Their Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1-x-men-th/4000-138254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125785/", + "id": 125785, + "name": "Brain Drain", + "site_detail_url": "https://comicvine.gamespot.com/teacherscountoffice-max-custom-comic-1-brain-drain/4000-125785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119900/", + "id": 119900, + "name": "Exposed!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-179-exposed/4000-119900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113625/", + "id": 113625, + "name": "My Science Teacher is Spider-Man!!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-28-my-science-teacher-i/4000-113625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113595/", + "id": 113595, + "name": "Clone Saga: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-97-clone-saga-part-1/4000-113595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108781/", + "id": 108781, + "name": "Decisions Made", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-539-decisions-made/4000-108781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108675/", + "id": 108675, + "name": "Bride Of The Panther, Part 5: Here Come A Storm", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-18-bride-of-the-panther-part-5-here-/4000-108675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108350/", + "id": 108350, + "name": "Execute Program, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-10-execute-program-part-4/4000-108350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105624/", + "id": 105624, + "name": "Whose Side Are You On?", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-3-whose-side-are-you-on/4000-105624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105614/", + "id": 105614, + "name": "The War at Home, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-534-the-war-at-home-part-3/4000-105614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105383/", + "id": 105383, + "name": "Jumping The Tracks 3/3", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-10-jumping-the-tr/4000-105383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573682/", + "id": 573682, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-53/4000-573682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573377/", + "id": 573377, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-8/4000-573377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498252/", + "id": 498252, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-inevitable-1-tpb/4000-498252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409877/", + "id": 409877, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-league-of-losers-1-volume-3/4000-409877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298179/", + "id": 298179, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-5/4000-298179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291271/", + "id": 291271, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-8/4000-291271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285378/", + "id": 285378, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-essentials-spiderman-1/4000-285378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283996/", + "id": 283996, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-15/4000-283996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185313/", + "id": 185313, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-1-volume-1/4000-185313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142902/", + "id": 142902, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cavewoman-jungle-jam-1/4000-142902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124263/", + "id": 124263, + "name": "I, Reptile", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-16-i-reptile/4000-124263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120997/", + "id": 120997, + "name": "Sergio Aragonés", + "site_detail_url": "https://comicvine.gamespot.com/solo-11-sergio-aragones/4000-120997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117321/", + "id": 117321, + "name": "Family Ties!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-99-family-ties/4000-117321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111725/", + "id": 111725, + "name": "Conquered! Part 1: In A New York Minute...", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-power-pack-assemble-3-conquered-part-/4000-111725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111402/", + "id": 111402, + "name": "The Leader Has A Big Head", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-2-the-leader-has-a-big-/4000-111402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109928/", + "id": 109928, + "name": "Freedom Ring, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-21-freedom-ring-part-2/4000-109928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106981/", + "id": 106981, + "name": "The Origin Thing, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-7-the-origin-thing-part/4000-106981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106733/", + "id": 106733, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-hulk-1/4000-106733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226157/", + "id": 226157, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/essential-luke-cage-power-man-2-volume-two/4000-226157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-439238/", + "id": 439238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-2/4000-439238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716051/", + "id": 716051, + "name": "Raw Power!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-138-raw-power/4000-716051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107246/", + "id": 107246, + "name": "The Big Reveal / My Dinner With Jonah", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-9-the-big-reveal-my-dinner-with-jonah/4000-107246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422012/", + "id": 422012, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series-1/4000-422012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280733/", + "id": 280733, + "name": "Spider-Man Visionaries: Kurt Busiek", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-kurt-busiek-1-spider-man-vi/4000-280733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295628/", + "id": 295628, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-27/4000-295628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716050/", + "id": 716050, + "name": "Bitter Victory", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-137-bitter-victo/4000-716050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383025/", + "id": 383025, + "name": "Шалости Хамелеона!!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-86-wikiissue/4000-383025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383024/", + "id": 383024, + "name": "Кошмар на улице Спайди!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-85-wikiissue/4000-383024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382262/", + "id": 382262, + "name": "Веном: На продажу! Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-101-3/4000-382262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382261/", + "id": 382261, + "name": "Веном: На продажу! Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-100-2/4000-382261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300528/", + "id": 300528, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-56/4000-300528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298281/", + "id": 298281, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-58/4000-298281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297066/", + "id": 297066, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-141/4000-297066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295408/", + "id": 295408, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-79/4000-295408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129302/", + "id": 129302, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-468/4000-129302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113594/", + "id": 113594, + "name": "Morbius: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-96-morbius-part-2/4000-113594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111732/", + "id": 111732, + "name": "Frightful: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-32-frightful-part-3/4000-111732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109582/", + "id": 109582, + "name": "Feral, Part 5: The Rock Of Life", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-27-feral-part-5-the-roc/4000-109582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107893/", + "id": 107893, + "name": "New Avengers: Disassembled, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-21-new-avengers-disassembled-part/4000-107893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107001/", + "id": 107001, + "name": "The Collective, Pt. 4", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-20-the-collective-pt-4/4000-107001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106956/", + "id": 106956, + "name": "Last Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-8-last-hand/4000-106956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106253/", + "id": 106253, + "name": "Taking Civil Liberties", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-103-taking-civil-liberties/4000-106253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106137/", + "id": 106137, + "name": "The Night The War Came Home, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-533-the-night-the-war-came-/4000-106137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106097/", + "id": 106097, + "name": "Collision Course", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-8-collision-course/4000-106097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105570/", + "id": 105570, + "name": "Captain America Goes Underground", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2-captain-america-goes-underground/4000-105570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105382/", + "id": 105382, + "name": "Jumping the Tracks 2/3", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-9-jumping-the-tra/4000-105382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105343/", + "id": 105343, + "name": "Family Matters (Part 4); Masked Marvel", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-12-family-matters-part-4-masked-mar/4000-105343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573681/", + "id": 573681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-52/4000-573681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573376/", + "id": 573376, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-7/4000-573376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298178/", + "id": 298178, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-4/4000-298178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291270/", + "id": 291270, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-7/4000-291270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186415/", + "id": 186415, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-blood-of-apocalypse-1-tpb/4000-186415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117320/", + "id": 117320, + "name": "Sacrifices Must Be Made", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-98-sacrifices-must-be-made/4000-117320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111401/", + "id": 111401, + "name": "The Replacements", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-1-the-replacements/4000-111401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108899/", + "id": 108899, + "name": "Freedom Ring, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-20-freedom-ring-part-1/4000-108899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106942/", + "id": 106942, + "name": "The Origin Thing, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-6-the-origin-thing-part/4000-106942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106183/", + "id": 106183, + "name": "How Spider-Man Learned to Stop Worrying and Learned to Love the Arms!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-15-how-spider-man-lea/4000-106183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107245/", + "id": 107245, + "name": "Civil Union", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-8-civil-union/4000-107245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171951/", + "id": 171951, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-0-civil-war/4000-171951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287681/", + "id": 287681, + "name": "Krieger", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-44-krieger/4000-287681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716049/", + "id": 716049, + "name": "Friend of Foe!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-136-friend-of-fo/4000-716049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295769/", + "id": 295769, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-5/4000-295769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295627/", + "id": 295627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-26/4000-295627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289769/", + "id": 289769, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-2/4000-289769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256184/", + "id": 256184, + "name": "The DEFENDERS REBORN!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-44-the-defenders-reborn/4000-256184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187097/", + "id": 187097, + "name": "Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-1-infinity-gauntlet/4000-187097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259704/", + "id": 259704, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spider-man-5-volume-five/4000-259704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383023/", + "id": 383023, + "name": "Безумные игрушки!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-84-wikiissue/4000-383023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383022/", + "id": 383022, + "name": "В ловушке Мистерио!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-83-wikiissue/4000-383022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382260/", + "id": 382260, + "name": "Веном: На продажу! Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-99-1/4000-382260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382259/", + "id": 382259, + "name": "До последнего дыхания. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-98-4/4000-382259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378750/", + "id": 378750, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-72/4000-378750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298279/", + "id": 298279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-56/4000-298279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297065/", + "id": 297065, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-140/4000-297065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295407/", + "id": 295407, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-78/4000-295407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291952/", + "id": 291952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-15/4000-291952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289719/", + "id": 289719, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-4/4000-289719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285991/", + "id": 285991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-4/4000-285991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275807/", + "id": 275807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-135/4000-275807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203734/", + "id": 203734, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-doom-with-a-view-1-vo/4000-203734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142746/", + "id": 142746, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-classic-x-men-2-volume-2/4000-142746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134183/", + "id": 134183, + "name": "America Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-2-11-america-strikes-back/4000-134183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118401/", + "id": 118401, + "name": "Celebrating the ART of Creating Comics!", + "site_detail_url": "https://comicvine.gamespot.com/rough-stuff-1-celebrating-the-art-of-creating-comi/4000-118401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114320/", + "id": 114320, + "name": "Heroes and Villains and Bride of the Lizard", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-15-heroes-and-villains-and-br/4000-114320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113593/", + "id": 113593, + "name": "Morbius: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-95-morbius-part-1/4000-113593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110528/", + "id": 110528, + "name": "Bride Of The Panther, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-16-bride-of-the-panther-part-3/4000-110528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109562/", + "id": 109562, + "name": "Deadpool: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-94-deadpool-part-4/4000-109562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108689/", + "id": 108689, + "name": "The Rings Of Fate Finale: Assuming Control", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-5-the-rings-of-fa/4000-108689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108531/", + "id": 108531, + "name": "Feral, Part 4: The Beasts Within", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-26-feral-part-4-the-bea/4000-108531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108482/", + "id": 108482, + "name": "The War at Home, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-532-the-war-at-home-part-1/4000-108482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108311/", + "id": 108311, + "name": "Execute Program, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-8-execute-program-part-2/4000-108311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107958/", + "id": 107958, + "name": "Embedded, Part 2 / The Accused, Part 2 / The Program", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-2-embedded-part-2-the-accused/4000-107958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106974/", + "id": 106974, + "name": "Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-42-vendetta/4000-106974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106844/", + "id": 106844, + "name": "Embedded, Part 1 / The Accused, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-1-embedded-part-1-the-accused/4000-106844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106211/", + "id": 106211, + "name": "The Blood of Apocalypse Part 5: the Battle of East River / Riddles of the Sphinx Part 5", + "site_detail_url": "https://comicvine.gamespot.com/x-men-186-the-blood-of-apocalypse-part-5-the-battl/4000-106211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106196/", + "id": 106196, + "name": "The Collective, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-19-the-collective-pt-3/4000-106196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105525/", + "id": 105525, + "name": "Things Turn Ugly", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1-things-turn-ugly/4000-105525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105381/", + "id": 105381, + "name": "Jumping The Tracks 1/3", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-8-jumping-the-tra/4000-105381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573680/", + "id": 573680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-51/4000-573680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573375/", + "id": 573375, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-6/4000-573375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298177/", + "id": 298177, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-3/4000-298177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295837/", + "id": 295837, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-dinastia-de-m-1/4000-295837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291269/", + "id": 291269, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-6/4000-291269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290703/", + "id": 290703, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-6/4000-290703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-282901/", + "id": 282901, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-1602-un-nuevo-mundo-1/4000-282901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171668/", + "id": 171668, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-right-of-power-1-volume-3/4000-171668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121236/", + "id": 121236, + "name": "The Black Cat?!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-14-the-black-cat/4000-121236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115539/", + "id": 115539, + "name": "Part 5 of 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-5-part-5-of-5/4000-115539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113647/", + "id": 113647, + "name": "The Unexpected Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-5-the-unexpected-thing/4000-113647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113611/", + "id": 113611, + "name": "Adventure the Fourth: The Endless Nightmare of Leonard Samson, Part 1 / A Cold Winter Comin'", + "site_detail_url": "https://comicvine.gamespot.com/doc-samson-4-adventure-the-fourth-the-endless-nigh/4000-113611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217491/", + "id": 217491, + "name": "Earth X", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-1-earth-x/4000-217491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716048/", + "id": 716048, + "name": "Big Trouble", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-135-big-trouble/4000-716048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256185/", + "id": 256185, + "name": "The BEAST!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-43-the-beast/4000-256185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295626/", + "id": 295626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-25/4000-295626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416837/", + "id": 416837, + "name": "Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-3-double-trouble/4000-416837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436954/", + "id": 436954, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-197/4000-436954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383021/", + "id": 383021, + "name": "Обратный отсчет!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-82-wikiissue/4000-383021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383020/", + "id": 383020, + "name": "Час пик!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-81-wikiissue/4000-383020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382257/", + "id": 382257, + "name": "До последнего дыхания. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-96-2/4000-382257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378749/", + "id": 378749, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-71/4000-378749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298278/", + "id": 298278, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-55/4000-298278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297064/", + "id": 297064, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-139/4000-297064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295406/", + "id": 295406, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-77/4000-295406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291951/", + "id": 291951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-14/4000-291951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289718/", + "id": 289718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-3/4000-289718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285989/", + "id": 285989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-3/4000-285989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283994/", + "id": 283994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-13/4000-283994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258711/", + "id": 258711, + "name": "Ultimate Annuals Return", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-34-ultimate-annuals-return/4000-258711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142095/", + "id": 142095, + "name": "Giant-Sized Thing, Vol 1", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-giant-sized-thing-1-giant-size/4000-142095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133313/", + "id": 133313, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-frightful-1-volume-6/4000-133313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132594/", + "id": 132594, + "name": "Opening Shot Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-opening-shot-sketchbook-1-opening-shot-s/4000-132594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130607/", + "id": 130607, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invincible-33/4000-130607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122702/", + "id": 122702, + "name": "The Anti-Mask", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-inevitable-5-the-anti-mask/4000-122702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113518/", + "id": 113518, + "name": "Mr. Parker Goes To Washington, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-531-mr-parker-goes-to-washi/4000-113518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109557/", + "id": 109557, + "name": "Deadpool: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-93-deadpool-part-3/4000-109557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108688/", + "id": 108688, + "name": "The Rings Of Fate Part Four: Raising The Flag", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-4-the-rings-of-fa/4000-108688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106954/", + "id": 106954, + "name": "...There Goes The Neighborhood!", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-6-there-goes-the-neighborhood/4000-106954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106728/", + "id": 106728, + "name": "Feral, Part 3: Hunter's Moon", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-25-feral-part-3-hunters/4000-106728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106582/", + "id": 106582, + "name": "Happily Ever After", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual-1-happily-ever-after/4000-106582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106195/", + "id": 106195, + "name": "The Collective, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-18-the-collective-pt-2/4000-106195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106030/", + "id": 106030, + "name": "World Tour: Future Imperfect (part I of II)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-79-world-tour-future-imperfect-part-i-of-ii/4000-106030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105389/", + "id": 105389, + "name": "Masks 2/2", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-7-masks-22/4000-105389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716044/", + "id": 716044, + "name": "Sentinel at Liberty", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-134-sentinel-at-/4000-716044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622315/", + "id": 622315, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spiderman-2/4000-622315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573679/", + "id": 573679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-50/4000-573679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573374/", + "id": 573374, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-5/4000-573374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298870/", + "id": 298870, + "name": "Giro", + "site_detail_url": "https://comicvine.gamespot.com/veneno-4-giro/4000-298870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298176/", + "id": 298176, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-2/4000-298176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285614/", + "id": 285614, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-47/4000-285614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285426/", + "id": 285426, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-hulk-36/4000-285426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167686/", + "id": 167686, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-omnibus-1-volume-1/4000-167686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159841/", + "id": 159841, + "name": "The Hunter Revealed", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-arana-special-1-the-hunter-revealed/4000-159841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115538/", + "id": 115538, + "name": "Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-4-part-4-of-5/4000-115538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106966/", + "id": 106966, + "name": "The Fantasy Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-4-the-fantasy-thing/4000-106966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106184/", + "id": 106184, + "name": "The Chameleon Caper", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-13-the-chameleon-cape/4000-106184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237649/", + "id": 237649, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-silver-sable-1-silver-sable/4000-237649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256186/", + "id": 256186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-42/4000-256186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287680/", + "id": 287680, + "name": "Ein wenig Glück?", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-43-ein-wenig-gluck/4000-287680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295768/", + "id": 295768, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-4/4000-295768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295625/", + "id": 295625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-24/4000-295625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383019/", + "id": 383019, + "name": "Охота на Стервятника!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-80-wikiissue/4000-383019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383014/", + "id": 383014, + "name": "Шедевр в опасности!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-79-wikiissue/4000-383014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382256/", + "id": 382256, + "name": "До последнего дыхания. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-95-1/4000-382256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382255/", + "id": 382255, + "name": "Воины. Часть 7", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-94-7/4000-382255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-378744/", + "id": 378744, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-69/4000-378744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355447/", + "id": 355447, + "name": "To Fight the Fury", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-133-to-fight-the/4000-355447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298277/", + "id": 298277, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-54/4000-298277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297063/", + "id": 297063, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-138/4000-297063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295405/", + "id": 295405, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-76/4000-295405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291950/", + "id": 291950, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-13/4000-291950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289768/", + "id": 289768, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/im-netz-von-spider-man-1/4000-289768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283993/", + "id": 283993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-12/4000-283993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227376/", + "id": 227376, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez-2-volume-t/4000-227376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195196/", + "id": 195196, + "name": "Bosom Buddies", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-bosom-buddies-1-bosom-buddies/4000-195196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150574/", + "id": 150574, + "name": "Underworld (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/underworld-2-underworld-part-2/4000-150574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133306/", + "id": 133306, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-crossover-1-volume-5/4000-133306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132709/", + "id": 132709, + "name": "HC/SC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-black-cat-the-evil-that-men-do-/4000-132709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127613/", + "id": 127613, + "name": "Adventures in the Mulletverse", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe-star-brand-1-adve/4000-127613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119896/", + "id": 119896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-175/4000-119896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114317/", + "id": 114317, + "name": "Without a Trace and S.C.U.D.S", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-14-without-a-trace-and-scuds/4000-114317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113517/", + "id": 113517, + "name": "Mr. Parker Goes To Washington, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-530-mr-parker-goes-to-washi/4000-113517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109188/", + "id": 109188, + "name": "Deadpool: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-92-deadpool-part-2/4000-109188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109187/", + "id": 109187, + "name": "Deadpool: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-91-deadpool-part-1/4000-109187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108686/", + "id": 108686, + "name": "The Rings Of Fate Part Three: Moths To A Flame", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-3-the-rings-of-fa/4000-108686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108475/", + "id": 108475, + "name": "The Hammer Falls, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-536-the-hammer-falls-part-1/4000-108475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106696/", + "id": 106696, + "name": "Feral, Part 2: Cat Scratch Fever", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-24-feral-part-2-cat-scr/4000-106696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105956/", + "id": 105956, + "name": "The Collective, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-17-the-collective-pt-1/4000-105956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105388/", + "id": 105388, + "name": "Masks 1/2", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-6-masks-12/4000-105388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105322/", + "id": 105322, + "name": "Family Matters (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-11-family-matters-part-3/4000-105322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573678/", + "id": 573678, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-49/4000-573678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573326/", + "id": 573326, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-4/4000-573326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347366/", + "id": 347366, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/i-heart-marvel-web-of-romance-1/4000-347366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298175/", + "id": 298175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-1/4000-298175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288634/", + "id": 288634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dinastia-de-m-1/4000-288634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285613/", + "id": 285613, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-46/4000-285613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221795/", + "id": 221795, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/runaways-escape-to-new-york-1-volume-5/4000-221795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135114/", + "id": 135114, + "name": "Moment of Clarity", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-ms-marvel-1-moment-of-clarity/4000-135114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115537/", + "id": 115537, + "name": "Part 3 of 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-3-part-3-of-5/4000-115537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106965/", + "id": 106965, + "name": "The Hurtful Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-3-the-hurtful-thing/4000-106965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106160/", + "id": 106160, + "name": "Nightmare on Spidey Street!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-12-nightmare-on-spide/4000-106160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236890/", + "id": 236890, + "name": "Irresponsible", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-irresponsible-1-irresponsible/4000-236890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187116/", + "id": 187116, + "name": "Infinity War", + "site_detail_url": "https://comicvine.gamespot.com/infinity-war-1-infinity-war/4000-187116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715679/", + "id": 715679, + "name": "Strange Days!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-132-strange-days/4000-715679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166673/", + "id": 166673, + "name": "Rebirth of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-rebirth-of-thanos-1-rebirth-of-thano/4000-166673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287679/", + "id": 287679, + "name": "Krieger", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-42-krieger/4000-287679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295624/", + "id": 295624, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-23/4000-295624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256235/", + "id": 256235, + "name": "Spider-Man: Revenge of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin-1-spider-ma/4000-256235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251844/", + "id": 251844, + "name": "This Sucker is 76 Pages For Only £2.50... ... Guess That's Why They Cheaped Out On The Rope!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-123-this-sucker-is-76-pages/4000-251844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383008/", + "id": 383008, + "name": "Короткое замыкание!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-78-wikiissue/4000-383008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383007/", + "id": 383007, + "name": "Гуманоид Гум!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-77-wikiissue/4000-383007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382253/", + "id": 382253, + "name": "Воины. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-92-5/4000-382253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298276/", + "id": 298276, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-53/4000-298276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297062/", + "id": 297062, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-137/4000-297062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295404/", + "id": 295404, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-75/4000-295404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291759/", + "id": 291759, + "name": "Spider-Man: House of M", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-61-spider-man-house-of-m/4000-291759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289716/", + "id": 289716, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-1/4000-289716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275802/", + "id": 275802, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-132/4000-275802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149197/", + "id": 149197, + "name": "Time Trouble", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-american-armed-forces-exclusive-3/4000-149197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142090/", + "id": 142090, + "name": "Hate the French!", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-5-hate-the-french/4000-142090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119895/", + "id": 119895, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-174/4000-119895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113592/", + "id": 113592, + "name": "Silver Sable: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-90-silver-sable-part-5/4000-113592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108685/", + "id": 108685, + "name": "The Rings Of Fate Part Two: Trial By Fire", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-2-the-rings-of-fa/4000-108685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107485/", + "id": 107485, + "name": "Date Night, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-67-date-night-part-2/4000-107485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106921/", + "id": 106921, + "name": "Mr. Parker Goes To Washington, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-529-mr-parker-goes-to-washi/4000-106921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106729/", + "id": 106729, + "name": "Feral, Part 1: Cold Blooded", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-23-feral-part-1-cold-bl/4000-106729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106412/", + "id": 106412, + "name": "Living Legends", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-25-living-legends/4000-106412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105380/", + "id": 105380, + "name": "Web Log", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-5-web-log/4000-105380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573677/", + "id": 573677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-48/4000-573677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573325/", + "id": 573325, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-3/4000-573325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298174/", + "id": 298174, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-47/4000-298174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291224/", + "id": 291224, + "name": "Instintos antinaturales", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-7-instintos-antinaturales/4000-291224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285612/", + "id": 285612, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-45/4000-285612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189760/", + "id": 189760, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-1-hctpb/4000-189760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135805/", + "id": 135805, + "name": "The Other - Evolve Or Die, Part 11 of 12: Destiny's Child", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-22-the-other-evolve-or-d/4000-135805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133204/", + "id": 133204, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-time-trials-1-volume-3/4000-133204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120327/", + "id": 120327, + "name": "One In Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-6-one-in-/4000-120327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117314/", + "id": 117314, + "name": "Old Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-94-old-soldiers/4000-117314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115536/", + "id": 115536, + "name": "Part 2 of 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2-part-2-of-5/4000-115536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113516/", + "id": 113516, + "name": "The Other - Evolve Or Die, Part 12 of 12: Post Mortem", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-528-the-other-evolve-or-die/4000-113516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106964/", + "id": 106964, + "name": "The Jealousy Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-2-the-jealousy-thing/4000-106964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106370/", + "id": 106370, + "name": "Gene Pool", + "site_detail_url": "https://comicvine.gamespot.com/son-of-m-2-gene-pool/4000-106370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106018/", + "id": 106018, + "name": "They Call Him Mad!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-11-they-call-him-mad/4000-106018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105379/", + "id": 105379, + "name": "The Other - Evolve Or Die, Part 10 of 12: Pirate Booty", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-4-the-other-evolv/4000-105379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716043/", + "id": 716043, + "name": "Metal Mayhem!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-131-metal-mayhem/4000-716043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917839/", + "id": 917839, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-18/4000-917839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155295/", + "id": 155295, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-moon-knight-1-volume-1/4000-155295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295767/", + "id": 295767, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-3/4000-295767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295623/", + "id": 295623, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-22/4000-295623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715378/", + "id": 715378, + "name": "Dark Domain", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-130-dark-domain/4000-715378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200198/", + "id": 200198, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m-1-tpb/4000-200198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383006/", + "id": 383006, + "name": "Зловещая Шестерка. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-76-2/4000-383006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383005/", + "id": 383005, + "name": "Зловещая Шестерка. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-75-1/4000-383005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382251/", + "id": 382251, + "name": "Воины. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-91-4/4000-382251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382250/", + "id": 382250, + "name": "Воины. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-90-3/4000-382250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298275/", + "id": 298275, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-52/4000-298275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297061/", + "id": 297061, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-136/4000-297061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295403/", + "id": 295403, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-74/4000-295403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291948/", + "id": 291948, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-11/4000-291948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285986/", + "id": 285986, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-2/4000-285986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235669/", + "id": 235669, + "name": "House of M: World of M Featuring Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-world-of-m-featuring-wolverine-1-house-/4000-235669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204764/", + "id": 204764, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-murdock-papers-1-volume-13/4000-204764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189771/", + "id": 189771, + "name": "World of M featuring Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-world-of-m-featuring-wolverine-1-world-o/4000-189771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186528/", + "id": 186528, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m-1-volume-4/4000-186528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151836/", + "id": 151836, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/essential-spectacular-spider-man-2-volume-two/4000-151836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150315/", + "id": 150315, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-5-volume-5/4000-150315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149346/", + "id": 149346, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-nova-1-volume-1/4000-149346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114318/", + "id": 114318, + "name": "Dinner at MacArthur's Cafe and 24 Hour Bug", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-13-dinner-at-macarthurs-cafe-/4000-114318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113591/", + "id": 113591, + "name": "Silver Sable: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-89-silver-sable-part-4/4000-113591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111429/", + "id": 111429, + "name": "The Murdock Papers: Part Six", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-81-the-murdock-papers-part-six/4000-111429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108615/", + "id": 108615, + "name": "The Rings Of Fate Part One: Blow By Blow", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-1-the-rings-of-fa/4000-108615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108318/", + "id": 108318, + "name": "Secrets & Lies, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-15-secrets-lies-pt-2/4000-108318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107484/", + "id": 107484, + "name": "Date Night, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-66-date-night-part-1/4000-107484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106411/", + "id": 106411, + "name": "Sticky Situations", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-24-sticky-situations/4000-106411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106061/", + "id": 106061, + "name": "East Coast/West Coast, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/runaways-12-east-coastwest-coast-part-4/4000-106061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105855/", + "id": 105855, + "name": "Fear Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-13-fear-part-3/4000-105855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573676/", + "id": 573676, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-47/4000-573676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573324/", + "id": 573324, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-2/4000-573324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298173/", + "id": 298173, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-46/4000-298173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291265/", + "id": 291265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-2/4000-291265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285611/", + "id": 285611, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-44/4000-285611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181638/", + "id": 181638, + "name": "My Dinner With Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-special-1-my-dinner-with-doom/4000-181638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135804/", + "id": 135804, + "name": "The Other - Evolve Or Die, Part 8 of 12: Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-21-the-other-evolve-or-d/4000-135804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121703/", + "id": 121703, + "name": "Make Mine Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-10-make-mine-mysterio/4000-121703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117284/", + "id": 117284, + "name": "Something Osborn This Way Comes!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-93-something-osborn-this-way-comes/4000-117284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115533/", + "id": 115533, + "name": "Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-1-part-1-of-5/4000-115533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113515/", + "id": 113515, + "name": "The Other - Evolve Or Die, Part 9 of 12: Evolution", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-527-the-other-evolve-or-die/4000-113515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106826/", + "id": 106826, + "name": "League Of Losers, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-15-league-of-losers-part-1/4000-106826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106360/", + "id": 106360, + "name": "One Day In The Life Of Pietro Maximoff... Homo Sapiens", + "site_detail_url": "https://comicvine.gamespot.com/son-of-m-1-one-day-in-the-life-of-pietro-maximoff-/4000-106360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105377/", + "id": 105377, + "name": "The Other - Evolve Or Die, Part 7 of 12: Bowing to the Inevitable", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-3-the-other-evolv/4000-105377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103301/", + "id": 103301, + "name": "Trickle Down", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-5-trickle/4000-103301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77956/", + "id": 77956, + "name": "A Study In Scarlet", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-4-a-study/4000-77956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256069/", + "id": 256069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-39/4000-256069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716042/", + "id": 716042, + "name": "Gods and Monsters", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-129-gods-and-mon/4000-716042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416836/", + "id": 416836, + "name": "Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-2-kingpin/4000-416836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279415/", + "id": 279415, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-roy-thomas-1-hctpb/4000-279415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733419/", + "id": 733419, + "name": "Roll of the Dice", + "site_detail_url": "https://comicvine.gamespot.com/playmates-toys-1-roll-of-the-dice/4000-733419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383004/", + "id": 383004, + "name": "Рождение супергероя", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-74-wikiissue/4000-383004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383003/", + "id": 383003, + "name": "Ветер перемен", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-73-wikiissue/4000-383003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382249/", + "id": 382249, + "name": "Воины. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-89-2/4000-382249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382248/", + "id": 382248, + "name": "Воины. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-88-1/4000-382248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298274/", + "id": 298274, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-51/4000-298274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297060/", + "id": 297060, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-135/4000-297060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295402/", + "id": 295402, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-73/4000-295402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202218/", + "id": 202218, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-1-house-of-m/4000-202218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149149/", + "id": 149149, + "name": "Arthur Adams", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-6-arthur-adams/4000-149149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132605/", + "id": 132605, + "name": "The Sentry", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-sentry-1-the-sentry/4000-132605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114390/", + "id": 114390, + "name": "Origins & Endings, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-37-origins-endings-pt-2/4000-114390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113590/", + "id": 113590, + "name": "Silver Sable: Part 3; Visions, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-88-silver-sable-part-3-visions/4000-113590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113589/", + "id": 113589, + "name": "Silver Sable: Part 2; Visions, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-87-silver-sable-part-2-visions/4000-113589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111757/", + "id": 111757, + "name": "Tomb of Namor: Part 3; Visions, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-26-tomb-of-namor-part-3-vi/4000-111757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108424/", + "id": 108424, + "name": "The 1960s Handbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-1-the-1960s-handbook/4000-108424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108317/", + "id": 108317, + "name": "Secrets & Lies, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-14-secrets-lies-pt-1/4000-108317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107080/", + "id": 107080, + "name": "Time Of Her Life", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-3-time-of-her-life/4000-107080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106060/", + "id": 106060, + "name": "East Coast/West Coast, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/runaways-11-east-coastwest-coast-part-3/4000-106060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105983/", + "id": 105983, + "name": "World Tour: New Universe (part II of III)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-73-world-tour-new-universe-part-ii-of-iii/4000-105983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573675/", + "id": 573675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-46/4000-573675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573323/", + "id": 573323, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-team-up-1/4000-573323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298172/", + "id": 298172, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-45/4000-298172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291264/", + "id": 291264, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-1/4000-291264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286025/", + "id": 286025, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-los-4-fantasticos-11/4000-286025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285610/", + "id": 285610, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-43/4000-285610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285422/", + "id": 285422, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-hulk-33/4000-285422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283139/", + "id": 283139, + "name": "Más Vale Malo Conocido...", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spiderman-toxin-1-mas-vale-malo-conocid/4000-283139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175572/", + "id": 175572, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-2-volume-2/4000-175572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167595/", + "id": 167595, + "name": "Volume 10", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-new-avengers-1-volume-10/4000-167595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166264/", + "id": 166264, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-silver-sable-1-tpb/4000-166264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150718/", + "id": 150718, + "name": "The Life Fantastic; Bedlam at the Baxter Building!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-wedding-special-1-the-life-fant/4000-150718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135800/", + "id": 135800, + "name": "The Other - Evolve Or Die, Part 5 of 12: Retreat", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-20-the-other-evolve-or-d/4000-135800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130811/", + "id": 130811, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world-5/4000-130811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121702/", + "id": 121702, + "name": "Doom with a View!; Franklin Richards, Son of a Genius: Weather or Not!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-9-doom-with-a-view-fr/4000-121702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120889/", + "id": 120889, + "name": "Spider-Man Meets Invincible", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-14-spider-man-meets-invincible/4000-120889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118217/", + "id": 118217, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-days-of-future-now-1-tpb/4000-118217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113514/", + "id": 113514, + "name": "The Other - Evolve Or Die, Part 6 of 12: Reckoning", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-526-the-other-evolve-or-die/4000-113514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110485/", + "id": 110485, + "name": "Mastermind Excello/Heavy on Action - Light on Plot/The Man with the X-Ray Eyes/The Winning Hand/Monstro/You Say You Want An Evolution/Heartbreak Kid/Happy Ending/Positron/I Was the Guy in Spider-Man Armpit!", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-15-mastermind-excelloheavy-on-acti/4000-110485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105376/", + "id": 105376, + "name": "The Other - Evolve Or Die, Part 4 of 12: Bargaining", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-2-the-other-evolv/4000-105376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716041/", + "id": 716041, + "name": "The Mephisto Element", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-128-the-mephisto/4000-716041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256188/", + "id": 256188, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-38/4000-256188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287678/", + "id": 287678, + "name": "Krieger", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-41-krieger/4000-287678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295622/", + "id": 295622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-21/4000-295622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172597/", + "id": 172597, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/g-l-a-misassembled-1-tpb/4000-172597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716040/", + "id": 716040, + "name": "Snatched!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-127-snatched/4000-716040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383406/", + "id": 383406, + "name": "Парижские тайны. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-60-4/4000-383406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383002/", + "id": 383002, + "name": "Вне времени!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-72-wikiissue/4000-383002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383001/", + "id": 383001, + "name": "В подземелье Морлоков!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-71-wikiissue/4000-383001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382247/", + "id": 382247, + "name": "Разрыв", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-87-wikiissue/4000-382247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382246/", + "id": 382246, + "name": "Хобгоблин. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-86-6/4000-382246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312701/", + "id": 312701, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/alias-omnibus-1-hc/4000-312701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311045/", + "id": 311045, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/frank-cho-women-selected-drawings-illustrations-1-/4000-311045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303146/", + "id": 303146, + "name": "Civil War #1", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-directors-cut-1-civil-war-1/4000-303146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299639/", + "id": 299639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-dark-phoenix-saga-1/4000-299639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298823/", + "id": 298823, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universo-marvel-29/4000-298823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298273/", + "id": 298273, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-50/4000-298273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297059/", + "id": 297059, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-134/4000-297059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295935/", + "id": 295935, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-13/4000-295935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295932/", + "id": 295932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-10/4000-295932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295929/", + "id": 295929, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-7/4000-295929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295401/", + "id": 295401, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-72/4000-295401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292264/", + "id": 292264, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-15/4000-292264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292260/", + "id": 292260, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-12/4000-292260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292253/", + "id": 292253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-5/4000-292253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292251/", + "id": 292251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-3/4000-292251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292250/", + "id": 292250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-2/4000-292250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291946/", + "id": 291946, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-9/4000-291946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291233/", + "id": 291233, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-16/4000-291233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291232/", + "id": 291232, + "name": "Gira mundial", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-15-gira-mundial/4000-291232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291231/", + "id": 291231, + "name": "Viajeros del tiempo", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-14-viajeros-del-tiempo/4000-291231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291230/", + "id": 291230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-13/4000-291230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291229/", + "id": 291229, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-12/4000-291229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291227/", + "id": 291227, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-10/4000-291227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289753/", + "id": 289753, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hulka-4/4000-289753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288652/", + "id": 288652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/el-arte-marvel-de-lopez-espi-1/4000-288652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285984/", + "id": 285984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-1/4000-285984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273855/", + "id": 273855, + "name": "Wolverine/Spider-Man - Powerless", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-14-wolverine-spider-man-powerless/4000-273855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246195/", + "id": 246195, + "name": "King of the Monsters!", + "site_detail_url": "https://comicvine.gamespot.com/essential-godzilla-king-of-the-monsters-1-king-of-/4000-246195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203733/", + "id": 203733, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-power-struggle-1-volu/4000-203733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185464/", + "id": 185464, + "name": "New X-Men Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-omnibus-1-new-x-men-omnibus/4000-185464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185343/", + "id": 185343, + "name": "The Dark Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga-1-the-dark-phoenix-sag/4000-185343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183796/", + "id": 183796, + "name": "The MoleMan's Christmas; Yes, Virginia, There is a Santron; Christmas Day in Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-2005-the-molemans-christmas/4000-183796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179077/", + "id": 179077, + "name": "Marvel contro DC: Scontro di Eroi", + "site_detail_url": "https://comicvine.gamespot.com/oscar-bestsellers-1575-marvel-contro-dc-scontro-di/4000-179077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149183/", + "id": 149183, + "name": "Kevin Maguire", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-10-kevin-maguire/4000-149183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149150/", + "id": 149150, + "name": "John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-7-john-byrne/4000-149150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145360/", + "id": 145360, + "name": "Collecting Amazing Spider-Man 529-532", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-amazing-spider-man-decisions-1-collectin/4000-145360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142790/", + "id": 142790, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-two-in-one-1-volume-1/4000-142790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140999/", + "id": 140999, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-3-volume-3/4000-140999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140997/", + "id": 140997, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-2-volume-2/4000-140997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134208/", + "id": 134208, + "name": "Mike Wieringo", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-9-mike-wieringo/4000-134208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119891/", + "id": 119891, + "name": "Best of 2005", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-171-best-of-2005/4000-119891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114519/", + "id": 114519, + "name": "Origins & Endings, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-36-origins-endings-pt-1/4000-114519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114316/", + "id": 114316, + "name": "Amends; Private Conversation", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-12-amends-private-conversatio/4000-114316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113588/", + "id": 113588, + "name": "Silver Sable: Part 1; Visions, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-86-silver-sable-part-1-visions/4000-113588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113587/", + "id": 113587, + "name": "Warriors: Part 7", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-85-warriors-part-7/4000-113587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108316/", + "id": 108316, + "name": "Ronin, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-13-ronin-pt-3/4000-108316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106827/", + "id": 106827, + "name": "Fun 'N' Games, Part 1: Money Changes Everything", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-1-fun-n-games-part-1-money-changes-every/4000-106827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106325/", + "id": 106325, + "name": "Does Anyone Remember The Squadron Sinister?", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-15-does-anyone-remember-the-squad/4000-106325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106059/", + "id": 106059, + "name": "East Coast/West Coast, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/runaways-10-east-coastwest-coast-part-2/4000-106059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105854/", + "id": 105854, + "name": "Fear Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-12-fear-part-2/4000-105854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593388/", + "id": 593388, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-6-volume-6/4000-593388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593386/", + "id": 593386, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-5-volume-5/4000-593386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573674/", + "id": 573674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-45/4000-573674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-554606/", + "id": 554606, + "name": "Die Fantastischen Vier", + "site_detail_url": "https://comicvine.gamespot.com/klassiker-der-comic-literatur-4-die-fantastischen-/4000-554606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505305/", + "id": 505305, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world-1-tpb/4000-505305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480822/", + "id": 480822, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-spider-man-1/4000-480822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466962/", + "id": 466962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-morphs-doctor-octopus-1/4000-466962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466836/", + "id": 466836, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-morphs-wolverine-1/4000-466836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298171/", + "id": 298171, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-44/4000-298171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292898/", + "id": 292898, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-20/4000-292898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291223/", + "id": 291223, + "name": "Legado", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-6-legado/4000-291223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285609/", + "id": 285609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-42/4000-285609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285467/", + "id": 285467, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-84/4000-285467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285421/", + "id": 285421, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-hulk-32/4000-285421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237733/", + "id": 237733, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/exiles-a-world-apart-1-volume-2/4000-237733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223764/", + "id": 223764, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-master-of-the-ring-1-volume-2/4000-223764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223685/", + "id": 223685, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/gravity-big-city-super-hero-1-tpb/4000-223685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184559/", + "id": 184559, + "name": "Part 4", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-days-of-future-now-4-part-4/4000-184559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165786/", + "id": 165786, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-black-cat-1-tpb/4000-165786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135799/", + "id": 135799, + "name": "The Other - Evolve Or Die, Part 2 of 12: Denial", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-19-the-other-evolve-or-d/4000-135799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131120/", + "id": 131120, + "name": "\"The Pawns and the Power\"", + "site_detail_url": "https://comicvine.gamespot.com/mega-morphs-4-the-pawns-and-the-power/4000-131120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130810/", + "id": 130810, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world-4/4000-130810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130731/", + "id": 130731, + "name": "\"It's Dormammu's World--You're Just Living in It!\"", + "site_detail_url": "https://comicvine.gamespot.com/defenders-4-its-dormammus-world-youre-just-living-/4000-130731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122443/", + "id": 122443, + "name": "The Sentry, Act Two: The Watchtower", + "site_detail_url": "https://comicvine.gamespot.com/sentry-2-the-sentry-act-two-the-watchtower/4000-122443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121700/", + "id": 121700, + "name": "Rush Hour!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-8-rush-hour/4000-121700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120888/", + "id": 120888, + "name": "Titannus War, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-13-titannus-war-part-3/4000-120888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117282/", + "id": 117282, + "name": "The Shocking Secret of the Spider Shoppe", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-91-the-shocking-secret-of-the-spider-s/4000-117282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117220/", + "id": 117220, + "name": "Play to Win Part Two; Power Corrupted Part Two", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-14-play-to-win-part-two-power-corr/4000-117220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117219/", + "id": 117219, + "name": "Play to Win Part One; Power Corrupted Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-13-play-to-win-part-one-power-corr/4000-117219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113513/", + "id": 113513, + "name": "The Other - Evolve Or Die, Part 3 of 12: Rage", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-525-the-other-evolve-or-die/4000-113513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107122/", + "id": 107122, + "name": "Chewed Up And Spit Out", + "site_detail_url": "https://comicvine.gamespot.com/gravity-5-chewed-up-and-spit-out/4000-107122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106911/", + "id": 106911, + "name": "The Boyfriend Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-1-the-boyfriend-thing/4000-106911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106680/", + "id": 106680, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4000-106680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105375/", + "id": 105375, + "name": "The Other - Evolve Or Die, Part 1 of 12: Shock", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-1-the-other-evolv/4000-105375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256068/", + "id": 256068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-37/4000-256068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175488/", + "id": 175488, + "name": "Venom vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/venom-vs-carnage-1-venom-vs-carnage/4000-175488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155296/", + "id": 155296, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-spider-woman-1-volume-1/4000-155296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716039/", + "id": 716039, + "name": "Battle Stations!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-126-battle-stati/4000-716039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295766/", + "id": 295766, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-2/4000-295766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295621/", + "id": 295621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-20/4000-295621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238391/", + "id": 238391, + "name": "Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/exiles-out-of-time-1-out-of-time/4000-238391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186703/", + "id": 186703, + "name": "Marvel Knights Spider-Man: Wild Blue Yonder", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-wild-blue-yonder-1-marve/4000-186703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176068/", + "id": 176068, + "name": "Toxin: The Devil You Know", + "site_detail_url": "https://comicvine.gamespot.com/toxin-the-devil-you-know-1-toxin-the-devil-you-kno/4000-176068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840126/", + "id": 840126, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-198/4000-840126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-484645/", + "id": 484645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-other-sketchbook-1/4000-484645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-438951/", + "id": 438951, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown-classic-1-tpb/4000-438951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384476/", + "id": 384476, + "name": "Rough Cut", + "site_detail_url": "https://comicvine.gamespot.com/sentry-1-rough-cut-1-rough-cut/4000-384476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383405/", + "id": 383405, + "name": "Парижские тайны. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-59-3/4000-383405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382993/", + "id": 382993, + "name": "Камень, звезды и паутина!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-70-wikiissue/4000-382993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382992/", + "id": 382992, + "name": "Коварный план Хамелеона!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-69-wikiissue/4000-382992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382245/", + "id": 382245, + "name": "Хобгоблин. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-85-5/4000-382245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382244/", + "id": 382244, + "name": "Хобгоблин. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-84-4/4000-382244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298272/", + "id": 298272, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-49/4000-298272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297058/", + "id": 297058, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-133/4000-297058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297057/", + "id": 297057, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-132/4000-297057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295400/", + "id": 295400, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-71/4000-295400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287635/", + "id": 287635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-22/4000-287635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285597/", + "id": 285597, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-20/4000-285597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189758/", + "id": 189758, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/megamorphs-1-tpb/4000-189758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171583/", + "id": 171583, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-modern-marvels-1-volume-2/4000-171583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130755/", + "id": 130755, + "name": "Rise Of The Imperfects, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-6-rise-of-the-imperf/4000-130755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119890/", + "id": 119890, + "name": "Ultimate Marvel Fan Q&A", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-170-ultimate-marvel-fan/4000-119890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116548/", + "id": 116548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m-5/4000-116548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113586/", + "id": 113586, + "name": "Warriors: Part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-84-warriors-part-6/4000-113586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108315/", + "id": 108315, + "name": "Ronin, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-12-ronin-pt-2/4000-108315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106867/", + "id": 106867, + "name": "Secret War Book 5", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-5-secret-war-book-5/4000-106867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106321/", + "id": 106321, + "name": "Made Perfect", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-14-made-perfect/4000-106321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106320/", + "id": 106320, + "name": "Ditch", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-13-ditch/4000-106320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104868/", + "id": 104868, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-8/4000-104868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573673/", + "id": 573673, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-44/4000-573673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298170/", + "id": 298170, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-43/4000-298170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292897/", + "id": 292897, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-19/4000-292897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291428/", + "id": 291428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-85/4000-291428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286015/", + "id": 286015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-los-4-fantasticos-4/4000-286015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285608/", + "id": 285608, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-41/4000-285608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285466/", + "id": 285466, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-83/4000-285466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157715/", + "id": 157715, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-silver-surfer-1-volume-1/4000-157715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131083/", + "id": 131083, + "name": "\"Red Rampage\"", + "site_detail_url": "https://comicvine.gamespot.com/mega-morphs-3-red-rampage/4000-131083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130809/", + "id": 130809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world-3/4000-130809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122436/", + "id": 122436, + "name": "The Sentry, Act One: Under the Eye of the Clock", + "site_detail_url": "https://comicvine.gamespot.com/sentry-1-the-sentry-act-one-under-the-eye-of-the-c/4000-122436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120887/", + "id": 120887, + "name": "Titannus War, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-12-titannus-war-part-2/4000-120887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117278/", + "id": 117278, + "name": "Spider-Girl Interrupted!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-90-spider-girl-interrupted/4000-117278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106017/", + "id": 106017, + "name": "Vulture Hunt", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-7-vulture-hunt/4000-106017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716038/", + "id": 716038, + "name": "Hunted!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-125-hunted/4000-716038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295620/", + "id": 295620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-19/4000-295620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256048/", + "id": 256048, + "name": "Guest-Starring ICEMAN & ANGEL!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-36-guest-starring-icema/4000-256048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715373/", + "id": 715373, + "name": "Trick or Treat", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-124-trick-or-tre/4000-715373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256189/", + "id": 256189, + "name": "The Challenge of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-35-the-challenge-of-spi/4000-256189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186653/", + "id": 186653, + "name": "Spectacular Spider-Man: The Final Curtain", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-the-final-curtain-1-spectac/4000-186653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824518/", + "id": 824518, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-1-tpb/4000-824518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383404/", + "id": 383404, + "name": "Парижские тайны. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-58-2/4000-383404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383403/", + "id": 383403, + "name": "Парижские тайны. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-57-1/4000-383403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383402/", + "id": 383402, + "name": "Грехи прошлого. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-56-6/4000-383402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382991/", + "id": 382991, + "name": "В погоне за Жуком!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-68-wikiissue/4000-382991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382990/", + "id": 382990, + "name": "А вот и Скорпион!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-67-wikiissue/4000-382990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382242/", + "id": 382242, + "name": "Хобгоблин. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-83-3/4000-382242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382241/", + "id": 382241, + "name": "Хобгоблин. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-82-2/4000-382241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298271/", + "id": 298271, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-48/4000-298271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297056/", + "id": 297056, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-131/4000-297056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295399/", + "id": 295399, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-70/4000-295399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294048/", + "id": 294048, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-mark-millar-ultimate-collection-1-hc/4000-294048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291944/", + "id": 291944, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-7/4000-291944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287677/", + "id": 287677, + "name": "Hobogoblin", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-40-hobogoblin/4000-287677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287634/", + "id": 287634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-21/4000-287634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285596/", + "id": 285596, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-19/4000-285596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283987/", + "id": 283987, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-6/4000-283987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279030/", + "id": 279030, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-john-romita-jr-1-hc/4000-279030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184240/", + "id": 184240, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-werewolf-by-night-1-vol-1/4000-184240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154844/", + "id": 154844, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-6-volume-6/4000-154844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153492/", + "id": 153492, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-ghost-rider-1-volume-1/4000-153492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141218/", + "id": 141218, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-7-volume-7/4000-141218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133293/", + "id": 133293, + "name": "Sins Remembered", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-sins-remembered-1-sins-reme/4000-133293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130754/", + "id": 130754, + "name": "Rise Of The Imperfects, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-5-rise-of-the-imperf/4000-130754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119910/", + "id": 119910, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-169/4000-119910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119606/", + "id": 119606, + "name": "Wild Blue Yonder, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-18-wild-blue-yonder-part/4000-119606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119333/", + "id": 119333, + "name": "The Razor's Edge", + "site_detail_url": "https://comicvine.gamespot.com/toxin-6-the-razor-s-edge/4000-119333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116549/", + "id": 116549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m-4/4000-116549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114315/", + "id": 114315, + "name": "Place Your Bets and This Looks Like a Job For...!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-11-place-your-bets-and-this-l/4000-114315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113585/", + "id": 113585, + "name": "Warriors: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-83-warriors-part-5/4000-113585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113584/", + "id": 113584, + "name": "Warriors: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-82-warriors-part-4/4000-113584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113512/", + "id": 113512, + "name": "All Fall Down", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-524-all-fall-down/4000-113512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108314/", + "id": 108314, + "name": "Ronin, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-11-ronin-pt-1/4000-108314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105853/", + "id": 105853, + "name": "Fear Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-11-fear-part-1/4000-105853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105310/", + "id": 105310, + "name": "Secret Identities (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-8-secret-identities-part-2/4000-105310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104867/", + "id": 104867, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-7/4000-104867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573672/", + "id": 573672, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-43/4000-573672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298169/", + "id": 298169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-42/4000-298169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292896/", + "id": 292896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-18/4000-292896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291427/", + "id": 291427, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-84/4000-291427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285607/", + "id": 285607, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-40/4000-285607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285465/", + "id": 285465, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-82/4000-285465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285247/", + "id": 285247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-2/4000-285247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220424/", + "id": 220424, + "name": "Avengers: The Ultimate Guide", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-ultimate-guide-1-avengers-the-ultimat/4000-220424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216699/", + "id": 216699, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/hulk-visionaries-peter-david-2-volume-2/4000-216699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131082/", + "id": 131082, + "name": "\"200 Tons of Doom\"", + "site_detail_url": "https://comicvine.gamespot.com/mega-morphs-2-200-tons-of-doom/4000-131082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130808/", + "id": 130808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world-2/4000-130808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130796/", + "id": 130796, + "name": "Mega Morphs", + "site_detail_url": "https://comicvine.gamespot.com/mega-morphs-1-mega-morphs/4000-130796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121357/", + "id": 121357, + "name": "Picture-Perfect Peril!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-6-picture-perfect-per/4000-121357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120886/", + "id": 120886, + "name": "Titannus War, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-11-titannus-war-part-1/4000-120886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118225/", + "id": 118225, + "name": "Part 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout-5-part-5/4000-118225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111384/", + "id": 111384, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world-1/4000-111384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107120/", + "id": 107120, + "name": "What Goes Up", + "site_detail_url": "https://comicvine.gamespot.com/gravity-3-what-goes-up/4000-107120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294010/", + "id": 294010, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/hercules-the-new-labors-of-hercules-1-tpb/4000-294010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173945/", + "id": 173945, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing-1-tpb/4000-173945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287676/", + "id": 287676, + "name": "Hobogoblin", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-39-hobogoblin/4000-287676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716037/", + "id": 716037, + "name": "Riders in the Storm!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-123-riders-in-th/4000-716037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295765/", + "id": 295765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-und-die-neuen-racher-1/4000-295765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295619/", + "id": 295619, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-18/4000-295619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840124/", + "id": 840124, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-196/4000-840124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383401/", + "id": 383401, + "name": "Грехи прошлого. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-55-5/4000-383401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383400/", + "id": 383400, + "name": "Грехи прошлого. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-54-4/4000-383400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382989/", + "id": 382989, + "name": "Ответный удар!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-66-wikiissue/4000-382989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382988/", + "id": 382988, + "name": "Позор Человеку-Пауку?!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-65--/4000-382988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382240/", + "id": 382240, + "name": "Хобгоблин. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-81-1/4000-382240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382239/", + "id": 382239, + "name": "Стрэндж. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-80-2/4000-382239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345134/", + "id": 345134, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-halloween-ashcan-2005-spider-man/4000-345134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300518/", + "id": 300518, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-46/4000-300518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298270/", + "id": 298270, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-47/4000-298270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297055/", + "id": 297055, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-130/4000-297055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295398/", + "id": 295398, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-69/4000-295398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291943/", + "id": 291943, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-6/4000-291943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287633/", + "id": 287633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-20/4000-287633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285595/", + "id": 285595, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-18/4000-285595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283986/", + "id": 283986, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-5/4000-283986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151227/", + "id": 151227, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-daredevil-3-volume-3/4000-151227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142518/", + "id": 142518, + "name": "Safety Heroes", + "site_detail_url": "https://comicvine.gamespot.com/home-depot-safety-heroes-1-safety-heroes/4000-142518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130753/", + "id": 130753, + "name": "Rise Of The Imperfects, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-4-rise-of-the-imperf/4000-130753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119889/", + "id": 119889, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-168/4000-119889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119605/", + "id": 119605, + "name": "Wild Blue Yonder, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-17-wild-blue-yonder-part/4000-119605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119335/", + "id": 119335, + "name": "Good Luck, Mulligan, Thanks for the Formaldehyde", + "site_detail_url": "https://comicvine.gamespot.com/toxin-5-good-luck-mulligan-thanks-for-the-formalde/4000-119335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116547/", + "id": 116547, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m-3/4000-116547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115271/", + "id": 115271, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-10-house-of-m/4000-115271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114510/", + "id": 114510, + "name": "Agent Of S.H.I.E.L.D., Part 6", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-31-agent-of-shield-part-6/4000-114510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113583/", + "id": 113583, + "name": "Warriors: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-81-warriors-part-3/4000-113583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113582/", + "id": 113582, + "name": "Warriors: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-80-warriors-part-2/4000-113582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113511/", + "id": 113511, + "name": "Extreme Measures", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-523-extreme-measures/4000-113511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111753/", + "id": 111753, + "name": "Crossover: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-22-crossover-part-2/4000-111753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110330/", + "id": 110330, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-annual-1/4000-110330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108312/", + "id": 108312, + "name": "The Sentry conclusion", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-10-the-sentry-conclusion/4000-108312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105309/", + "id": 105309, + "name": "Secret Identities (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-7-secret-identities-part-1/4000-105309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104866/", + "id": 104866, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-6/4000-104866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104865/", + "id": 104865, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-5/4000-104865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99223/", + "id": 99223, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-11-house-of-m/4000-99223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592820/", + "id": 592820, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-turning-point-1-volume-4/4000-592820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573671/", + "id": 573671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-42/4000-573671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298168/", + "id": 298168, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-41/4000-298168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292895/", + "id": 292895, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-17/4000-292895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285606/", + "id": 285606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-39/4000-285606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285464/", + "id": 285464, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-81/4000-285464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223856/", + "id": 223856, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/arana-in-the-beginning-1-tpb/4000-223856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121353/", + "id": 121353, + "name": "Power Struggle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-5-power-struggle/4000-121353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120885/", + "id": 120885, + "name": "Master Of The Ring, Part 5 & 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-10-master-of-the-ring-part-5-6/4000-120885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118224/", + "id": 118224, + "name": "Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout-4-part-4/4000-118224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116250/", + "id": 116250, + "name": "The New Labors of Hercules, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/hercules-5-the-new-labors-of-hercules-part-5/4000-116250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114178/", + "id": 114178, + "name": "The New Labors of Hercules, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/hercules-4-the-new-labors-of-hercules-part-4/4000-114178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716036/", + "id": 716036, + "name": "Don't Look Behind You...", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-122-dont-look-be/4000-716036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287675/", + "id": 287675, + "name": "Hobogoblin", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-38-hobogoblin/4000-287675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295618/", + "id": 295618, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-17/4000-295618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913879/", + "id": 913879, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-11/4000-913879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383399/", + "id": 383399, + "name": "Грехи прошлого. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-53-3/4000-383399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383398/", + "id": 383398, + "name": "Грехи прошлого. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-52-2/4000-383398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382987/", + "id": 382987, + "name": "Возвращение Зеленого Гоблина!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-64-wikiissue/4000-382987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382986/", + "id": 382986, + "name": "Встреча с Дардевилом!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-63-wikiissue/4000-382986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382238/", + "id": 382238, + "name": "Стрэндж. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-79-1/4000-382238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382237/", + "id": 382237, + "name": "Знаменитость. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-78-2/4000-382237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300517/", + "id": 300517, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-45/4000-300517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298269/", + "id": 298269, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-46/4000-298269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297054/", + "id": 297054, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-129/4000-297054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295397/", + "id": 295397, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-68/4000-295397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291942/", + "id": 291942, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-5/4000-291942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287632/", + "id": 287632, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-19/4000-287632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285594/", + "id": 285594, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-17/4000-285594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275781/", + "id": 275781, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-125/4000-275781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202252/", + "id": 202252, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill-1-tpb/4000-202252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142088/", + "id": 142088, + "name": "Self-Help for Stupid Ugly Losers", + "site_detail_url": "https://comicvine.gamespot.com/action-philosophers-3-self-help-for-stupid-ugly-lo/4000-142088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130752/", + "id": 130752, + "name": "Rise Of The Imperfects, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-3-rise-of-the-imperf/4000-130752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119604/", + "id": 119604, + "name": "Wild Blue Yonder, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-16-wild-blue-yonder-part/4000-119604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116546/", + "id": 116546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m-2/4000-116546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114314/", + "id": 114314, + "name": "Banner Weblines and Love Cycle [Obsess, Distress, Repeat]", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-10-banner-weblines-and-love-c/4000-114314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113581/", + "id": 113581, + "name": "Warriors: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-79-warriors-part-1/4000-113581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113510/", + "id": 113510, + "name": "Moving Targets", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-522-moving-targets/4000-113510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108309/", + "id": 108309, + "name": "The Sentry part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-9-the-sentry-part-3/4000-108309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106394/", + "id": 106394, + "name": "Enema of the State part 3: House of Mmmm", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-17-enema-of-the-state-part-3-house-/4000-106394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716035/", + "id": 716035, + "name": "Brutal Breakout!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-121-brutal-break/4000-716035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573670/", + "id": 573670, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-41/4000-573670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298167/", + "id": 298167, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-40/4000-298167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292894/", + "id": 292894, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-16/4000-292894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290784/", + "id": 290784, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-4-fantasticos-24/4000-290784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285463/", + "id": 285463, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-80/4000-285463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118223/", + "id": 118223, + "name": "Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout-3-part-3/4000-118223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105976/", + "id": 105976, + "name": "Goom Got Game!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-4-goom-got-game/4000-105976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287674/", + "id": 287674, + "name": "Hobogoblin", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-37-hobogoblin/4000-287674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295617/", + "id": 295617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-16/4000-295617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715377/", + "id": 715377, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-120/4000-715377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149315/", + "id": 149315, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-fantastic-four-4-volume-4/4000-149315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913878/", + "id": 913878, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-10/4000-913878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817174/", + "id": 817174, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-marvel-knights-collection-4-volume-4/4000-817174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383397/", + "id": 383397, + "name": "Грехи прошлого. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-51-1/4000-383397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383396/", + "id": 383396, + "name": "Партия в покер", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-50-wikiissue/4000-383396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382985/", + "id": 382985, + "name": "Крэйвен-Охотник", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-62--/4000-382985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382984/", + "id": 382984, + "name": "Коварный замысел Зеленого Гоблина!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-61-wikiissue/4000-382984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382236/", + "id": 382236, + "name": "Знаменитость. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-77-1/4000-382236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382235/", + "id": 382235, + "name": "А вы в это верите?! Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-76-2/4000-382235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298268/", + "id": 298268, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-45/4000-298268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298267/", + "id": 298267, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-44/4000-298267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297053/", + "id": 297053, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-128/4000-297053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295396/", + "id": 295396, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-67/4000-295396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291755/", + "id": 291755, + "name": "Daredevil: Der König von Hell's Kitchen", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-57-daredevil-der-konig-von-hell-s-/4000-291755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287631/", + "id": 287631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-18/4000-287631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285605/", + "id": 285605, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-38/4000-285605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285593/", + "id": 285593, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-16/4000-285593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283984/", + "id": 283984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-3/4000-283984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279036/", + "id": 279036, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-john-romita-sr-1-hctpb/4000-279036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275778/", + "id": 275778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-124/4000-275778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203732/", + "id": 203732, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-the-sinister-six-1-vo/4000-203732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134551/", + "id": 134551, + "name": "Featuring Captain Britain, Psylocke & Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-6-featuring-captain-britain-psyl/4000-134551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130750/", + "id": 130750, + "name": "Rise Of The Imperfects, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-2-rise-of-the-imperf/4000-130750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123213/", + "id": 123213, + "name": "The Death and Life of Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill-6-the-death/4000-123213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119887/", + "id": 119887, + "name": "Summer's Sexiest Superbabes", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-166-summers-sexiest-sup/4000-119887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119603/", + "id": 119603, + "name": "Wild Blue Yonder, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-15-wild-blue-yonder-part/4000-119603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119330/", + "id": 119330, + "name": "The Answer, My Friend", + "site_detail_url": "https://comicvine.gamespot.com/toxin-3-the-answer-my-friend/4000-119330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116494/", + "id": 116494, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m-1/4000-116494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113580/", + "id": 113580, + "name": "Dumped", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-78-dumped/4000-113580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113509/", + "id": 113509, + "name": "Unintended Consequences", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-521-unintended-consequences/4000-113509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111421/", + "id": 111421, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing-5/4000-111421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111420/", + "id": 111420, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing-4/4000-111420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111419/", + "id": 111419, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing-3/4000-111419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111418/", + "id": 111418, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing-2/4000-111418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111385/", + "id": 111385, + "name": "Who will be the... Last Hero Standing", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing-1-who-will-be-the-last-hero-sta/4000-111385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108308/", + "id": 108308, + "name": "Alien Agenda", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-8-alien-agenda/4000-108308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104861/", + "id": 104861, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-1/4000-104861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587692/", + "id": 587692, + "name": "Año Uno", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spidermandoctor-octopus-1-ano-uno/4000-587692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573669/", + "id": 573669, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-40/4000-573669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298166/", + "id": 298166, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-39/4000-298166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292893/", + "id": 292893, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-15/4000-292893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285604/", + "id": 285604, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-37/4000-285604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285462/", + "id": 285462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-79/4000-285462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120932/", + "id": 120932, + "name": "The Sinister Six, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-3-the-sinister-six-pa/4000-120932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118222/", + "id": 118222, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout-2-part-2/4000-118222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716019/", + "id": 716019, + "name": "To Save Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-119-to-save-tomo/4000-716019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165923/", + "id": 165923, + "name": "One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-house-of-m-1-one-shot/4000-165923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287673/", + "id": 287673, + "name": "Gespräche", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-36-gesprache/4000-287673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295616/", + "id": 295616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-15/4000-295616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913877/", + "id": 913877, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-9/4000-913877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840121/", + "id": 840121, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-193/4000-840121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383395/", + "id": 383395, + "name": "Черная Королева. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-49-6/4000-383395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382983/", + "id": 382983, + "name": "Мистерио: вызов Человеку-Пауку!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-60--/4000-382983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382982/", + "id": 382982, + "name": "Без маски!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-59-wikiissue/4000-382982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382234/", + "id": 382234, + "name": "А вы в это верите?! Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-75-1/4000-382234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382233/", + "id": 382233, + "name": "Наказание", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-74-wikiissue/4000-382233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300515/", + "id": 300515, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-43/4000-300515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297052/", + "id": 297052, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-127/4000-297052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295395/", + "id": 295395, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-66/4000-295395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287630/", + "id": 287630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-17/4000-287630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285592/", + "id": 285592, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-15/4000-285592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283983/", + "id": 283983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-2/4000-283983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151278/", + "id": 151278, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/essential-defenders-1-volume-one/4000-151278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130743/", + "id": 130743, + "name": "Rise Of The Imperfects, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects-1-rise-of-the-imperf/4000-130743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129289/", + "id": 129289, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-455/4000-129289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114313/", + "id": 114313, + "name": "You're Rubber, I'm Glue and Amnesiac", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-9-youre-rubber-im-glue-and-am/4000-114313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113579/", + "id": 113579, + "name": "Hobgoblin: Part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-77-hobgoblin-part-6/4000-113579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113508/", + "id": 113508, + "name": "Acts Of Aggression", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-520-acts-of-aggression/4000-113508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106392/", + "id": 106392, + "name": "Enema of the State part 1: Killer Clowns", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-15-enema-of-the-state-part-1-ki/4000-106392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105424/", + "id": 105424, + "name": "Timebreakers, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/exiles-64-timebreakers-part-3/4000-105424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104440/", + "id": 104440, + "name": "Wild Blue Yonder, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-14-wild-blue-yonder-part/4000-104440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103524/", + "id": 103524, + "name": "Together Again", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhuman-torch-5-together-again/4000-103524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103517/", + "id": 103517, + "name": "Dismembership Drive", + "site_detail_url": "https://comicvine.gamespot.com/gla-2-dismembership-drive/4000-103517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587689/", + "id": 587689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spidermanlobezno-powerless-1/4000-587689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573668/", + "id": 573668, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-39/4000-573668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298165/", + "id": 298165, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-38/4000-298165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292892/", + "id": 292892, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-14/4000-292892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285603/", + "id": 285603, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-36/4000-285603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285461/", + "id": 285461, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-78/4000-285461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285405/", + "id": 285405, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-dr-extrano-18/4000-285405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200639/", + "id": 200639, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-the-golden-child-1-volume-1/4000-200639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120931/", + "id": 120931, + "name": "The Sinister Six, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-2-the-sinister-six-pa/4000-120931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120881/", + "id": 120881, + "name": "Master Of The Ring, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-7-master-of-the-ring-part-1/4000-120881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118068/", + "id": 118068, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout-1-part-1/4000-118068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114175/", + "id": 114175, + "name": "The New Labors", + "site_detail_url": "https://comicvine.gamespot.com/hercules-1-the-new-labors/4000-114175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107923/", + "id": 107923, + "name": "The Homecoming Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming-4-the-homecoming-thing/4000-107923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106141/", + "id": 106141, + "name": "Between Life and Death", + "site_detail_url": "https://comicvine.gamespot.com/arana-heart-of-the-spider-4-between-life-and-death/4000-106141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101149/", + "id": 101149, + "name": "Rescue Me!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-85-rescue-me/4000-101149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716017/", + "id": 716017, + "name": "Venom's Back!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-118-venoms-back/4000-716017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259699/", + "id": 259699, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spider-man-4-volume-four/4000-259699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237591/", + "id": 237591, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-new-invaders-to-end-all-wars-1-tpb/4000-237591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171582/", + "id": 171582, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-one-step-forward-1-volume-1/4000-171582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287672/", + "id": 287672, + "name": "Der innere Schweinehund", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-35-der-innere-schweinehu/4000-287672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295615/", + "id": 295615, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-14/4000-295615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716014/", + "id": 716014, + "name": "To Catch A Thief", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-117-to-catch-a-t/4000-716014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186702/", + "id": 186702, + "name": "Marvel Knights Spider-Man: The Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-the-last-stand-1-marvel-/4000-186702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913876/", + "id": 913876, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-8/4000-913876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-873642/", + "id": 873642, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-a-little-help-from-my-friends-1/4000-873642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840120/", + "id": 840120, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-192/4000-840120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383393/", + "id": 383393, + "name": "Черная Королева. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-47-4/4000-383393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383392/", + "id": 383392, + "name": "Черная Королева. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-46-3/4000-383392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382981/", + "id": 382981, + "name": "Возвращение Доктора Октопуса!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-58-wikiissue/4000-382981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382980/", + "id": 382980, + "name": "Громилы!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-57-wikiissue/4000-382980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382232/", + "id": 382232, + "name": "Карнаж. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-73-5/4000-382232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382231/", + "id": 382231, + "name": "Карнаж. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-72-4/4000-382231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300514/", + "id": 300514, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-42/4000-300514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298265/", + "id": 298265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-42/4000-298265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297051/", + "id": 297051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-126/4000-297051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295394/", + "id": 295394, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-65/4000-295394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287629/", + "id": 287629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-16/4000-287629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285591/", + "id": 285591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-14/4000-285591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269200/", + "id": 269200, + "name": "Marvel Adventures: Spider-man and Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-and-fantastic-four-1-/4000-269200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189479/", + "id": 189479, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-marvel-1-tpb/4000-189479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127751/", + "id": 127751, + "name": "Cruel and Unusual (Part 3 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/the-new-invaders-9-cruel-and-unusual-part-3-of-3/4000-127751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113507/", + "id": 113507, + "name": "Moving Up", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-519-moving-up/4000-113507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113181/", + "id": 113181, + "name": "Hobgoblin: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-76-hobgoblin-part-5/4000-113181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108307/", + "id": 108307, + "name": "The Sentry part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-7-the-sentry-part-1/4000-108307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108306/", + "id": 108306, + "name": "Breakout, Pt. 6", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-6-breakout-pt-6/4000-108306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105930/", + "id": 105930, + "name": "The Strange Case of Pat Mulligan and Mr. Hyde", + "site_detail_url": "https://comicvine.gamespot.com/toxin-1-the-strange-case-of-pat-mulligan-and-mr-hy/4000-105930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105423/", + "id": 105423, + "name": "Timebreakers, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/exiles-63-timebreakers-part-2/4000-105423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-104439/", + "id": 104439, + "name": "Wild Blue Yonder, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-13-wild-blue-yonder-part/4000-104439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103523/", + "id": 103523, + "name": "Cat's Paws", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhuman-torch-4-cats-paws/4000-103523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101143/", + "id": 101143, + "name": "The Final Curtain", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-27-the-final-curtain/4000-101143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101051/", + "id": 101051, + "name": "Timebreakers, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/exiles-62-timebreakers-part-1/4000-101051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100979/", + "id": 100979, + "name": "Hobgoblin: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-75-hobgoblin-part-4/4000-100979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573667/", + "id": 573667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-38/4000-573667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298164/", + "id": 298164, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-37/4000-298164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297472/", + "id": 297472, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-5/4000-297472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292891/", + "id": 292891, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-13/4000-292891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285602/", + "id": 285602, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-35/4000-285602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285460/", + "id": 285460, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-77/4000-285460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170921/", + "id": 170921, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-from-the-files-of-nick-fury-1/4000-170921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130883/", + "id": 130883, + "name": "The Menace of Monster Isle!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-special-1-the-menace-of-monster/4000-130883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115601/", + "id": 115601, + "name": "Here Comes Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-1-here-comes-spider-m/4000-115601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113506/", + "id": 113506, + "name": "Skin Deep, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-518-skin-deep-part-4/4000-113506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107922/", + "id": 107922, + "name": "The Regret Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming-3-the-regret-thing/4000-107922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105633/", + "id": 105633, + "name": "Golden Child, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-6-golden-child-part-6/4000-105633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220423/", + "id": 220423, + "name": "Fantastic Four: The Ultimate Guide", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-ultimate-guide-1-fantastic-four/4000-220423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715466/", + "id": 715466, + "name": "Shock Tactics", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-116-shock-tactic/4000-715466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287671/", + "id": 287671, + "name": "Arrest", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-34-arrest/4000-287671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295614/", + "id": 295614, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-13/4000-295614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259583/", + "id": 259583, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-fantastic-four-1-volume-one/4000-259583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913875/", + "id": 913875, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-7/4000-913875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383391/", + "id": 383391, + "name": "Черная Королева. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-45-2/4000-383391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383390/", + "id": 383390, + "name": "Черная Королева. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-44-1/4000-383390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382979/", + "id": 382979, + "name": "Меня зовут Электро!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-56-wikiissue/4000-382979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382978/", + "id": 382978, + "name": "Смертельно опасный оживший мозг!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-55-wikiissue/4000-382978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382230/", + "id": 382230, + "name": "Карнаж. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-71-3/4000-382230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382229/", + "id": 382229, + "name": "Карнаж. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-70-2/4000-382229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298264/", + "id": 298264, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-41/4000-298264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297050/", + "id": 297050, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-125/4000-297050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295393/", + "id": 295393, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-64/4000-295393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287628/", + "id": 287628, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-15/4000-287628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285590/", + "id": 285590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-13/4000-285590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279053/", + "id": 279053, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-steve-ditko-1-hctpb/4000-279053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149195/", + "id": 149195, + "name": "Special Guests", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-american-armed-forces-exclusive-1/4000-149195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119886/", + "id": 119886, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-163/4000-119886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114312/", + "id": 114312, + "name": "Fanboyz and Everything", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-8-fanboyz-and-everything/4000-114312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108305/", + "id": 108305, + "name": "Breakout, Pt. 5", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-5-breakout-pt-5/4000-108305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106866/", + "id": 106866, + "name": "Secret War Book 4", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-4-secret-war-book-4/4000-106866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103522/", + "id": 103522, + "name": "Auto Motives", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhuman-torch-3-auto-motives/4000-103522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101142/", + "id": 101142, + "name": "Sins Remembered: Sarah's Story, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-26-sins-remembered-sarahs-s/4000-101142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100978/", + "id": 100978, + "name": "Hobgoblin: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-74-hobgoblin-part-3/4000-100978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100977/", + "id": 100977, + "name": "Hobgoblin: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-73-hobgoblin-part-2/4000-100977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99718/", + "id": 99718, + "name": "The Last Stand, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-12-the-last-stand-part-4/4000-99718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99218/", + "id": 99218, + "name": "City of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-6-city-of-heroes/4000-99218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573666/", + "id": 573666, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-37/4000-573666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298163/", + "id": 298163, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-36/4000-298163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297471/", + "id": 297471, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-4/4000-297471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292890/", + "id": 292890, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-12/4000-292890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291221/", + "id": 291221, + "name": "Yo Vigilo el Muelle", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-4-yo-vigilo-el-muelle/4000-291221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285601/", + "id": 285601, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-34/4000-285601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285459/", + "id": 285459, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-76/4000-285459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256232/", + "id": 256232, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one-1-tpb/4000-256232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195980/", + "id": 195980, + "name": "Teamwork", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-3-teamwork/4000-195980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140392/", + "id": 140392, + "name": "Volume Seven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-7-volume/4000-140392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113505/", + "id": 113505, + "name": "Skin Deep, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-517-skin-deep-part-3/4000-113505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107921/", + "id": 107921, + "name": "The Friendship Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming-2-the-friendship-thing/4000-107921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105632/", + "id": 105632, + "name": "Golden Child, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-5-golden-child-part-5/4000-105632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101147/", + "id": 101147, + "name": "Kill Phil!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-83-kill-phil/4000-101147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381707/", + "id": 381707, + "name": "Spidey's Worst Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-115-spideys-wors/4000-381707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140391/", + "id": 140391, + "name": "Volume Six", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-6-volume/4000-140391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287670/", + "id": 287670, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-33-carnage/4000-287670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295613/", + "id": 295613, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-12/4000-295613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465980/", + "id": 465980, + "name": "Blast to the Past", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-114-blast-to-the/4000-465980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913873/", + "id": 913873, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-6/4000-913873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825532/", + "id": 825532, + "name": "2005 Kids' Choice Awards", + "site_detail_url": "https://comicvine.gamespot.com/nickelodeon-magazine-200504-2005-kids-choice-award/4000-825532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384309/", + "id": 384309, + "name": "Venom & Hercules", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-0-venom-hercules/4000-384309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383389/", + "id": 383389, + "name": "Полеты во сне и наяву", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-43-wikiissue/4000-383389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383388/", + "id": 383388, + "name": "Ящер. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-42-3/4000-383388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382977/", + "id": 382977, + "name": "Стервятник возвращается!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-54-wikiissue/4000-382977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382976/", + "id": 382976, + "name": "Один на один с Ящером!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-53-wikiissue/4000-382976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382228/", + "id": 382228, + "name": "Карнаж. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-69-1/4000-382228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382227/", + "id": 382227, + "name": "Блокбастер. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-68-6/4000-382227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297049/", + "id": 297049, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-124/4000-297049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295392/", + "id": 295392, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-63/4000-295392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294046/", + "id": 294046, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-golden-age-1-volume-11/4000-294046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287627/", + "id": 287627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-14/4000-287627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285589/", + "id": 285589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-12/4000-285589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280251/", + "id": 280251, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fourspider-man-classic-1-tpb/4000-280251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210390/", + "id": 210390, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-18/4000-210390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168832/", + "id": 168832, + "name": "Breakout", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-breakout-1-breakout/4000-168832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167617/", + "id": 167617, + "name": "Superhuman Law", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-superhuman-law-1-superhuman-law/4000-167617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108304/", + "id": 108304, + "name": "Breakout, Pt. 4", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-4-breakout-pt-4/4000-108304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103521/", + "id": 103521, + "name": "Catch You on the Flipside", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhuman-torch-2-catch-you-on-the-flipside/4000-103521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101141/", + "id": 101141, + "name": "Sins Remembered: Sarah's Story, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-25-sins-remembered-sarahs-s/4000-101141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101048/", + "id": 101048, + "name": "A Tooth For A Tooth", + "site_detail_url": "https://comicvine.gamespot.com/exiles-59-a-tooth-for-a-tooth/4000-101048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100976/", + "id": 100976, + "name": "Hobgoblin: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-72-hobgoblin-part-1/4000-100976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99717/", + "id": 99717, + "name": "The Last Stand, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-11-the-last-stand-part-3/4000-99717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99192/", + "id": 99192, + "name": "Some Disassembly Required", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-12-some-disassembly-required/4000-99192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592819/", + "id": 592819, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-avenging-allies-1-volume-3/4000-592819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587686/", + "id": 587686, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-spidermanlobezno-la-materia-de-las-leye/4000-587686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573665/", + "id": 573665, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-36/4000-573665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298162/", + "id": 298162, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-35/4000-298162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297470/", + "id": 297470, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-3/4000-297470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292889/", + "id": 292889, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-11/4000-292889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285600/", + "id": 285600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-33/4000-285600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285458/", + "id": 285458, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-75/4000-285458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285246/", + "id": 285246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-el-asombroso-spiderman-1/4000-285246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255729/", + "id": 255729, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-why-not-1-tpb/4000-255729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241152/", + "id": 241152, + "name": "Where Flies the Beetle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-20-where-flies-the-beetle/4000-241152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241151/", + "id": 241151, + "name": "The Coming of the Scorpion", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-19-the-coming-of-the-scorpio/4000-241151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113504/", + "id": 113504, + "name": "Skin Deep, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-516-skin-deep-part-2/4000-113504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106912/", + "id": 106912, + "name": "The Cheating Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming-1-the-cheating-thing/4000-106912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101146/", + "id": 101146, + "name": "You Only Hurt--!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-82-you-only-hurt-/4000-101146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101140/", + "id": 101140, + "name": "Sins Remembered: Sarah's Story, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-24-sins-remembered-sarahs-s/4000-101140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167592/", + "id": 167592, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-sins-past-1-volume-8/4000-167592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715465/", + "id": 715465, + "name": "Terror from the Deep!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-113-terror-from-/4000-715465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226156/", + "id": 226156, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/essential-luke-cage-power-man-1-volume-one/4000-226156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287669/", + "id": 287669, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-32-carnage/4000-287669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295612/", + "id": 295612, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-11/4000-295612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101139/", + "id": 101139, + "name": "Sins Remembered: Sarah's Story, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-23-sins-remembered-sarahs-s/4000-101139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383387/", + "id": 383387, + "name": "Ящер. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-41-2/4000-383387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383386/", + "id": 383386, + "name": "Ящер. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-40-1/4000-383386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382975/", + "id": 382975, + "name": "Скрытая угроза: Доктор Дум!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-52-wikiissue/4000-382975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382974/", + "id": 382974, + "name": "Ничто не остановит Песочного Человека!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-51-wikiissue/4000-382974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382226/", + "id": 382226, + "name": "Блокбастер. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-67-5/4000-382226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382225/", + "id": 382225, + "name": "Блокбастер. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-66-4/4000-382225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297048/", + "id": 297048, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-123/4000-297048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295391/", + "id": 295391, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-62/4000-295391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287626/", + "id": 287626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-13/4000-287626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285588/", + "id": 285588, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-11/4000-285588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123207/", + "id": 123207, + "name": "The Saga of Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill-1-the-saga-/4000-123207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120032/", + "id": 120032, + "name": "The Read Menace!", + "site_detail_url": "https://comicvine.gamespot.com/the-simpsons-futurama-crossover-crisis-ii-2-the-re/4000-120032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119883/", + "id": 119883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-161/4000-119883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114311/", + "id": 114311, + "name": "The Cubicle and Hang Tight", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-7-the-cubicle-and-hang-tight/4000-114311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103520/", + "id": 103520, + "name": "Picture Perfect", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhuman-torch-1-picture-perfect/4000-103520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101409/", + "id": 101409, + "name": "Breakout, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-3-breakout-pt-3/4000-101409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100975/", + "id": 100975, + "name": "Strange: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-71-strange-part-2/4000-100975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99468/", + "id": 99468, + "name": "Golden Age, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-69-golden-age-part-4/4000-99468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97649/", + "id": 97649, + "name": "The Last Stand, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-10-the-last-stand-part-2/4000-97649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573664/", + "id": 573664, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-35/4000-573664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298161/", + "id": 298161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-34/4000-298161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297469/", + "id": 297469, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-2/4000-297469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292888/", + "id": 292888, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-10/4000-292888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285599/", + "id": 285599, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-32/4000-285599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285457/", + "id": 285457, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-74/4000-285457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285411/", + "id": 285411, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-hulk-22/4000-285411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241150/", + "id": 241150, + "name": "Spidey Strikes Back!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-18-spidey-strikes-back/4000-241150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241149/", + "id": 241149, + "name": "The End of Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-17-the-end-of-spider-man/4000-241149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235528/", + "id": 235528, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/what-if-aunt-may-had-died-instead-of-uncle-ben-1/4000-235528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228235/", + "id": 228235, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-daredevil-3-volume-3/4000-228235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189515/", + "id": 189515, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/what-if-karen-page-had-lived-1/4000-189515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130898/", + "id": 130898, + "name": "Storm - Change The Weather", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-team-up-5-storm-change-the-w/4000-130898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113503/", + "id": 113503, + "name": "Skin Deep, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-515-skin-deep-part-1/4000-113503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113502/", + "id": 113502, + "name": "Sins Past, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-514-sins-past-part-6/4000-113502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101145/", + "id": 101145, + "name": "I Scorn the Body Electric!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-81-i-scorn-the-body-electric/4000-101145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715463/", + "id": 715463, + "name": "At the Mercy of the Mandarin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-112-at-the-mercy/4000-715463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287668/", + "id": 287668, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-31-carnage/4000-287668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295611/", + "id": 295611, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-10/4000-295611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99113/", + "id": 99113, + "name": "Bump In The Night, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/exiles-56-bump-in-the-night-part-2/4000-99113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715236/", + "id": 715236, + "name": "Surfing to the Stars!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-111-surfing-to-t/4000-715236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186695/", + "id": 186695, + "name": "Marvel Knights Spider-Man: Venomous", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-venomous-1-marvel-knight/4000-186695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913871/", + "id": 913871, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-4/4000-913871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-871791/", + "id": 871791, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-weddings-1-tpb/4000-871791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840116/", + "id": 840116, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-188/4000-840116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383716/", + "id": 383716, + "name": "Паучье чутье. Часть 2; Лучше не вспоминать", + "site_detail_url": "https://comicvine.gamespot.com/fantasticheskaya-chetvyorka-51-2/4000-383716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383385/", + "id": 383385, + "name": "Обратный отсчет. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-39-5/4000-383385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383384/", + "id": 383384, + "name": "Обратный отсчет. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-38-4/4000-383384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382973/", + "id": 382973, + "name": "Человек-Паук против Доктора Октопуса", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-50--/4000-382973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382972/", + "id": 382972, + "name": "Смертный бой со Стервятником; Жуткая угроза от Ужасного Тинкерера!", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-49-wikiissue/4000-382972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382224/", + "id": 382224, + "name": "Блокбастер. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-65-3/4000-382224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382223/", + "id": 382223, + "name": "Блокбастер. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-64-2/4000-382223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300510/", + "id": 300510, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-38/4000-300510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297047/", + "id": 297047, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-122/4000-297047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295390/", + "id": 295390, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-61/4000-295390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287625/", + "id": 287625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-12/4000-287625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285587/", + "id": 285587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-10/4000-285587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279049/", + "id": 279049, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-stan-lee-1-hctpb/4000-279049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151369/", + "id": 151369, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/essential-spectacular-spider-man-1-volume-one/4000-151369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119882/", + "id": 119882, + "name": "Inside the Batman Movie", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-160-inside-the-batman-m/4000-119882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101408/", + "id": 101408, + "name": "Breakout, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-2-breakout-pt-2/4000-101408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101138/", + "id": 101138, + "name": "The Infernal Triangle", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-22-the-infernal-triangle/4000-101138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100974/", + "id": 100974, + "name": "Strange", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-70-strange/4000-100974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99215/", + "id": 99215, + "name": "Heavy Burdens", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-3-heavy-burdens/4000-99215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99112/", + "id": 99112, + "name": "Bump In The Night, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/exiles-55-bump-in-the-night-part-1/4000-99112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97648/", + "id": 97648, + "name": "The Last Stand, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-9-the-last-stand-part-1/4000-97648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96792/", + "id": 96792, + "name": "Skeeter", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-10-skeeter/4000-96792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-573663/", + "id": 573663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-34/4000-573663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298160/", + "id": 298160, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-33/4000-298160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297468/", + "id": 297468, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-1/4000-297468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292887/", + "id": 292887, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-9/4000-292887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285598/", + "id": 285598, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-spiderman-31/4000-285598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285456/", + "id": 285456, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-73/4000-285456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274080/", + "id": 274080, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming-1-tpb/4000-274080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241147/", + "id": 241147, + "name": "Return of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-16-return-of-the-green-gobli/4000-241147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241146/", + "id": 241146, + "name": "Duel With Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-15-duel-with-daredevil/4000-241146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232246/", + "id": 232246, + "name": "Volume 8", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-8-volume-8/4000-232246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222334/", + "id": 222334, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-directors-cut-1/4000-222334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175521/", + "id": 175521, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-1-volume-1/4000-175521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165783/", + "id": 165783, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout-1-tpb/4000-165783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158094/", + "id": 158094, + "name": "Old Enemies Never Die; Tangled Webs; If He Should Punch Me; Spider-Man 2099; The Devil And Mrs. Parker; To Serve And Protect", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-1-old-enemies-never-die-tangled-/4000-158094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130896/", + "id": 130896, + "name": "Thor - Out Of Time", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-team-up-4-thor-out-of-time/4000-130896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130874/", + "id": 130874, + "name": "Shadowcat - Down With The Monsters!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-team-up-3-shadowcat-down-wit/4000-130874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124231/", + "id": 124231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/whahuh-1/4000-124231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113501/", + "id": 113501, + "name": "Sins Past, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-513-sins-past-part-5/4000-113501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105568/", + "id": 105568, + "name": "Golden Child, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-2-golden-child-part-2/4000-105568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105549/", + "id": 105549, + "name": "Golden Child, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-1-golden-child-part-1/4000-105549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101144/", + "id": 101144, + "name": "Secrets Kill!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-80-secrets-kill/4000-101144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99686/", + "id": 99686, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/powerless-6/4000-99686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167594/", + "id": 167594, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-skin-deep-1-volume-9/4000-167594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413353/", + "id": 413353, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doctor-octopus-mini-reprint-1/4000-413353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715376/", + "id": 715376, + "name": "At the Mercy of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-110-at-the-mercy/4000-715376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295610/", + "id": 295610, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-9/4000-295610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840115/", + "id": 840115, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-187/4000-840115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416835/", + "id": 416835, + "name": "Lektionen Fürs Leben", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-1-lektionen-furs-leben/4000-416835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384506/", + "id": 384506, + "name": "Reading to the Rescue: Assignment Impossible", + "site_detail_url": "https://comicvine.gamespot.com/target-presents-reading-to-the-rescue-2-reading-to/4000-384506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384437/", + "id": 384437, + "name": "Out of Time!", + "site_detail_url": "https://comicvine.gamespot.com/target-presents-reading-to-the-rescue-3-out-of-tim/4000-384437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383715/", + "id": 383715, + "name": "Паучье чутье. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/fantasticheskaya-chetvyorka-50-1/4000-383715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383383/", + "id": 383383, + "name": "Обратный отсчет. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-37-3/4000-383383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383382/", + "id": 383382, + "name": "Обратный отсчет. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-36-2/4000-383382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382971/", + "id": 382971, + "name": "Книга Изекиля. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-48-3/4000-382971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382970/", + "id": 382970, + "name": "Книга Изекиля. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-47-2/4000-382970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382222/", + "id": 382222, + "name": "Блокбастер. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-63-1/4000-382222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382221/", + "id": 382221, + "name": "Черная Кошка. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-62-5/4000-382221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312447/", + "id": 312447, + "name": "Spider-Man and the Fantastic Four in Hard Choices", + "site_detail_url": "https://comicvine.gamespot.com/elks-custom-comic-book-1-1-spider-man-and-the-fant/4000-312447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307102/", + "id": 307102, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-37/4000-307102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298871/", + "id": 298871, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/veneno-matanza-el-nacimiento-1/4000-298871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297046/", + "id": 297046, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-121/4000-297046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296051/", + "id": 296051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-lobezno-1/4000-296051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295389/", + "id": 295389, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-60/4000-295389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292072/", + "id": 292072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends-12/4000-292072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292029/", + "id": 292029, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-2/4000-292029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292028/", + "id": 292028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-1/4000-292028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291226/", + "id": 291226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-exiliados-9/4000-291226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289659/", + "id": 289659, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-35/4000-289659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289655/", + "id": 289655, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-31/4000-289655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287624/", + "id": 287624, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-11/4000-287624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285981/", + "id": 285981, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/clasicos-del-comic-spiderman-1/4000-285981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285586/", + "id": 285586, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-peter-parker-spiderman-9/4000-285586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283175/", + "id": 283175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-vengadoresinvasores-2/4000-283175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283174/", + "id": 283174, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-vengadoresinvasores-1/4000-283174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273867/", + "id": 273867, + "name": "Spider-Man/Black Cat - Das Böse in Dir", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-24-spider-man-black-cat-das-bose-in-dir/4000-273867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273866/", + "id": 273866, + "name": "1602 - Die Neue Welt", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-23-1602-die-neue-welt/4000-273866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273862/", + "id": 273862, + "name": "Spider-Man/Toxin - Der Teufel, Den du Kennst", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-20-spider-man-toxin-der-teufel-den-du-k/4000-273862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268516/", + "id": 268516, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-classic-marvel-figurine-collection-1-spider-ma/4000-268516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235705/", + "id": 235705, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/powerless-1-tpb/4000-235705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233671/", + "id": 233671, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-5-volume-5/4000-233671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174247/", + "id": 174247, + "name": "Wolverine; Black Shadow White Shadow; Life's End", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-wolverine-2-wolverine-black/4000-174247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171164/", + "id": 171164, + "name": "Marvels: L'Era degli Eroi", + "site_detail_url": "https://comicvine.gamespot.com/i-classici-del-fumetto-de-la-repubblica-serie-oro-/4000-171164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154747/", + "id": 154747, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-5-volume-5/4000-154747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140992/", + "id": 140992, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-1-volume-1/4000-140992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120068/", + "id": 120068, + "name": "Jonah's Holiday Carol / An X-Men X-Mas / The True Meaning of...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-2004-jonah-s-holiday-carol-/4000-120068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111704/", + "id": 111704, + "name": "When Plaque Attacks!", + "site_detail_url": "https://comicvine.gamespot.com/heroes-vs-plaque-1-when-plaque-attacks/4000-111704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101407/", + "id": 101407, + "name": "Breakout, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-1-breakout-pt-1/4000-101407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100973/", + "id": 100973, + "name": "Meet Me", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-69-meet-me/4000-100973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100972/", + "id": 100972, + "name": "Popular", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-68-popular/4000-100972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99256/", + "id": 99256, + "name": "The Agony of Defeat and Thug #1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-6-the-agony-of-defeat-and-thu/4000-99256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97345/", + "id": 97345, + "name": "Venomous, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-8-venomous-part-4/4000-97345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97339/", + "id": 97339, + "name": "Read 'Em an' Weep", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-21-read-em-an-weep/4000-97339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384515/", + "id": 384515, + "name": "The Ultimate Encyclopedia of Comic-Book Icons and Hollywood Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-superhero-book-1-the-ultimate-encyclopedia-of-/4000-384515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347697/", + "id": 347697, + "name": "JLA/Avengers: The Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/jlaavengers-the-collectors-edition-1-jlaavengers-t/4000-347697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241145/", + "id": 241145, + "name": "Kraven The Hunter", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-14-kraven-the-hunter/4000-241145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241144/", + "id": 241144, + "name": "The Grotesque Adventure of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-13-the-grotesque-adventure-o/4000-241144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185134/", + "id": 185134, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-like-father-like-daughter-1-volume-2/4000-185134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130901/", + "id": 130901, + "name": "Captain America - Stars And Stripes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-team-up-2-captain-america-st/4000-130901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118702/", + "id": 118702, + "name": "Do the Right Thing", + "site_detail_url": "https://comicvine.gamespot.com/venom-vs-carnage-4-do-the-right-thing/4000-118702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116493/", + "id": 116493, + "name": "Destiny", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one-5-destiny/4000-116493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113500/", + "id": 113500, + "name": "Sins Past, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-512-sins-past-part-4/4000-113500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99685/", + "id": 99685, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/powerless-5/4000-99685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93546/", + "id": 93546, + "name": "When Destiny Calls!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-79-when-destiny-calls/4000-93546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187280/", + "id": 187280, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-disassembled-1-tpb/4000-187280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716005/", + "id": 716005, + "name": "The Hunt Is On!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-109-the-hunt-is-/4000-716005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186652/", + "id": 186652, + "name": "Spectacular Spider-Man: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-disassembled-1-spectacular-/4000-186652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295609/", + "id": 295609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-8/4000-295609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-913870/", + "id": 913870, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rampage-2/4000-913870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715643/", + "id": 715643, + "name": "The Sting of the Scorpion!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-108-the-sting-of/4000-715643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383381/", + "id": 383381, + "name": "Обратный отсчет. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-35-1/4000-383381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383380/", + "id": 383380, + "name": "Голод. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-34-5/4000-383380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382731/", + "id": 382731, + "name": "Книга Изекиля. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-46-1/4000-382731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382730/", + "id": 382730, + "name": "Чутье", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-45-wikiissue/4000-382730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382220/", + "id": 382220, + "name": "Черная Кошка. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-61-4/4000-382220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382219/", + "id": 382219, + "name": "Черная Кошка. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-60-3/4000-382219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298253/", + "id": 298253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-36/4000-298253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297045/", + "id": 297045, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-120/4000-297045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295388/", + "id": 295388, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-59/4000-295388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292071/", + "id": 292071, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends-11/4000-292071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287667/", + "id": 287667, + "name": "Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-30-hollywood/4000-287667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287623/", + "id": 287623, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-10/4000-287623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275733/", + "id": 275733, + "name": "X-Treme X-Men 33", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-116-x-treme-x-men-33/4000-275733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265030/", + "id": 265030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-119/4000-265030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248736/", + "id": 248736, + "name": "Verstrahlung MADe in Springfield!", + "site_detail_url": "https://comicvine.gamespot.com/mad-75-verstrahlung-made-in-springfield/4000-248736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220033/", + "id": 220033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-comic-zone-2/4000-220033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155667/", + "id": 155667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-158/4000-155667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130315/", + "id": 130315, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-448/4000-130315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101195/", + "id": 101195, + "name": "Chaos (Part 4)", + "site_detail_url": "https://comicvine.gamespot.com/avengers-503-chaos-part-4/4000-101195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101095/", + "id": 101095, + "name": "Sofa So Good", + "site_detail_url": "https://comicvine.gamespot.com/simpsons-comics-101-sofa-so-good/4000-101095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97338/", + "id": 97338, + "name": "Changes, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-20-changes-part-4/4000-97338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96927/", + "id": 96927, + "name": "Venomous, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-7-venomous-part-3/4000-96927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95691/", + "id": 95691, + "name": "Jump the Shark", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-67-jump-the-shark/4000-95691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95690/", + "id": 95690, + "name": "Even We Don't Believe This", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-66-even-we-dont-believe-this/4000-95690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241143/", + "id": 241143, + "name": "The Menace of Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-12-the-menace-of-mysterio/4000-241143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204696/", + "id": 204696, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-twist-1/4000-204696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172918/", + "id": 172918, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/black-panther-2099-1/4000-172918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141438/", + "id": 141438, + "name": "Unmasked By Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-11-unmasked-by-doctor-octopu/4000-141438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130899/", + "id": 130899, + "name": "Fantastic Four - The Chameleon Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-team-up-1-fantastic-four-the/4000-130899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119880/", + "id": 119880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-157/4000-119880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116492/", + "id": 116492, + "name": "Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one-4-part-4/4000-116492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116491/", + "id": 116491, + "name": "Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one-3-part-3/4000-116491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113499/", + "id": 113499, + "name": "Sins Past, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-511-sins-past-part-3/4000-113499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101773/", + "id": 101773, + "name": "Twist, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/venom-18-twist-part-5/4000-101773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99684/", + "id": 99684, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/powerless-4/4000-99684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99235/", + "id": 99235, + "name": "The Trust Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-4-the-trust-thing/4000-99235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295608/", + "id": 295608, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-7/4000-295608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716004/", + "id": 716004, + "name": "Crushed by the Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-107-crushed-by-t/4000-716004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132597/", + "id": 132597, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-encyclopedia-6-fantastic-four/4000-132597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383379/", + "id": 383379, + "name": "Голод. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-33-4/4000-383379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383378/", + "id": 383378, + "name": "Голод. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-32-3/4000-383378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382729/", + "id": 382729, + "name": "Секреты фотосъемки. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-44-5/4000-382729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382728/", + "id": 382728, + "name": "Секреты фотосъемки. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-43-4/4000-382728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382218/", + "id": 382218, + "name": "Черная Кошка. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-59-2/4000-382218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382217/", + "id": 382217, + "name": "Черная Кошка. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-58-1/4000-382217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298252/", + "id": 298252, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-35/4000-298252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297044/", + "id": 297044, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-119/4000-297044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297043/", + "id": 297043, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-118/4000-297043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295387/", + "id": 295387, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-58/4000-295387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294045/", + "id": 294045, + "name": "The Widow", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-widow-1-the-widow/4000-294045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287622/", + "id": 287622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-9/4000-287622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258712/", + "id": 258712, + "name": "New Avengers #1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-13-new-avengers-1/4000-258712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233663/", + "id": 233663, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-x-men-4-volume-four/4000-233663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232968/", + "id": 232968, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-thin-air-1-volume-1/4000-232968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166888/", + "id": 166888, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-single-green-female-1-volume-1/4000-166888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142722/", + "id": 142722, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/essential-super-villain-team-up-1-volume-one/4000-142722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99295/", + "id": 99295, + "name": "Thin Air Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-5-thin-air-part-5/4000-99295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99255/", + "id": 99255, + "name": "Retraction; Facing Down the Darkness", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-5-retraction-facing-down-the-/4000-99255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97337/", + "id": 97337, + "name": "Changes, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-19-changes-part-3/4000-97337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96926/", + "id": 96926, + "name": "Venomous, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-6-venomous-part-2/4000-96926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94295/", + "id": 94295, + "name": "The Universe", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-65-the-universe/4000-94295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93551/", + "id": 93551, + "name": "Detention", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-65-detention/4000-93551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90340/", + "id": 90340, + "name": "Chaos (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/avengers-502-chaos-part-3/4000-90340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241142/", + "id": 241142, + "name": "The Return Of Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-10-the-return-of-doctor-octo/4000-241142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141393/", + "id": 141393, + "name": "The Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-9-the-enforcers/4000-141393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117107/", + "id": 117107, + "name": "A Taste for Treachery!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-77-a-taste-for-treachery/4000-117107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113498/", + "id": 113498, + "name": "Sins Past, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-510-sins-past-part-2/4000-113498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105922/", + "id": 105922, + "name": "Cops and Monsters", + "site_detail_url": "https://comicvine.gamespot.com/venom-vs-carnage-2-cops-and-monsters/4000-105922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101772/", + "id": 101772, + "name": "Twist, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/venom-17-twist-part-4/4000-101772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99683/", + "id": 99683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/powerless-3/4000-99683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99234/", + "id": 99234, + "name": "The Loyalty Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-3-the-loyalty-thing/4000-99234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167591/", + "id": 167591, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-book-of-ezekiel-1-volum/4000-167591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716003/", + "id": 716003, + "name": "Lizard Let Loose!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-106-lizard-let-l/4000-716003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287666/", + "id": 287666, + "name": "Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-29-hollywood/4000-287666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186694/", + "id": 186694, + "name": "Marvel Knights Spider-Man: Down Among the Dead Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-down-among-the-dead-men-/4000-186694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295607/", + "id": 295607, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-6/4000-295607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807582/", + "id": 807582, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-4/4000-807582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383377/", + "id": 383377, + "name": "Голод. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-31-2/4000-383377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383376/", + "id": 383376, + "name": "Голод. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-30-1/4000-383376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382726/", + "id": 382726, + "name": "Секреты фотосъемки. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-42-3/4000-382726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382725/", + "id": 382725, + "name": "Секреты фотосъемки. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-41-2/4000-382725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382216/", + "id": 382216, + "name": "Интриги. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-57-3/4000-382216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382215/", + "id": 382215, + "name": "Интриги. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-56-2/4000-382215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298357/", + "id": 298357, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-20/4000-298357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297042/", + "id": 297042, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-117/4000-297042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295386/", + "id": 295386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-57/4000-295386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287621/", + "id": 287621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-8/4000-287621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233668/", + "id": 233668, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-4-volume-4/4000-233668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186651/", + "id": 186651, + "name": "Spectacular Spider-Man: Here There Be Monsters", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-here-there-be-monsters-1-sp/4000-186651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172398/", + "id": 172398, + "name": "L'Uomo Ragno", + "site_detail_url": "https://comicvine.gamespot.com/i-classici-del-fumetto-di-repubblica-3-luomo-ragno/4000-172398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155294/", + "id": 155294, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-iron-fist-1-volume-1/4000-155294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130312/", + "id": 130312, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-446/4000-130312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110260/", + "id": 110260, + "name": "Carnage: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-63-carnage-part-4/4000-110260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106865/", + "id": 106865, + "name": "Secret War Book 3", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-3-secret-war-book-3/4000-106865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97336/", + "id": 97336, + "name": "Changes, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-18-changes-part-2/4000-97336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96925/", + "id": 96925, + "name": "Venomous, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-5-venomous-part-1/4000-96925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93550/", + "id": 93550, + "name": "Carnage: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-64-carnage-part-5/4000-93550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90339/", + "id": 90339, + "name": "Chaos (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/avengers-501-chaos-part-2/4000-90339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232245/", + "id": 232245, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-7-volume-7/4000-232245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129450/", + "id": 129450, + "name": "The Man Called ELECTRO!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-8-the-man-called-electro/4000-129450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129349/", + "id": 129349, + "name": "The Terrible Threat Of The Living Brain!; Spider-Man Tackles the Torch!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-7-the-terrible-threat-of-the/4000-129349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117104/", + "id": 117104, + "name": "Keeping the Faith", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-76-keeping-the-faith/4000-117104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105908/", + "id": 105908, + "name": "Baby Please Don't Go", + "site_detail_url": "https://comicvine.gamespot.com/venom-vs-carnage-1-baby-please-don-t-go/4000-105908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101771/", + "id": 101771, + "name": "Twist, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/venom-16-twist-part-3/4000-101771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99233/", + "id": 99233, + "name": "The Money Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-2-the-money-thing/4000-99233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716002/", + "id": 716002, + "name": "Doomsday for Spidey!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-105-doomsday-for/4000-716002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295606/", + "id": 295606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-5/4000-295606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715683/", + "id": 715683, + "name": "Rhino Hunt!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-104-rhino-hunt/4000-715683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840110/", + "id": 840110, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-183/4000-840110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383375/", + "id": 383375, + "name": "Возрождение. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-29-2/4000-383375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383374/", + "id": 383374, + "name": "Возрождение. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-28-1/4000-383374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382724/", + "id": 382724, + "name": "Секреты фотосъемки. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-40-1/4000-382724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382723/", + "id": 382723, + "name": "Соседи", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-39-wikiissue/4000-382723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382208/", + "id": 382208, + "name": "Интриги. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-55-1/4000-382208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382146/", + "id": 382146, + "name": "Ultimate Six. Часть 7", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-54-ultimate-six-7/4000-382146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343369/", + "id": 343369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/even-more-fund-comics-1/4000-343369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298356/", + "id": 298356, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-19/4000-298356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298248/", + "id": 298248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-32/4000-298248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297041/", + "id": 297041, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-116/4000-297041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295385/", + "id": 295385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-56/4000-295385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292336/", + "id": 292336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-200409/4000-292336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287620/", + "id": 287620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-7/4000-287620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248370/", + "id": 248370, + "name": "Yu-Gi-ins-Klo!", + "site_detail_url": "https://comicvine.gamespot.com/mad-72-yu-gi-ins-klo/4000-248370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150314/", + "id": 150314, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-4-volume-4/4000-150314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130310/", + "id": 130310, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-445/4000-130310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110259/", + "id": 110259, + "name": "Carnage: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-62-carnage-part-3/4000-110259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110226/", + "id": 110226, + "name": "Carnage: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-61-carnage-part-2/4000-110226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99294/", + "id": 99294, + "name": "Thin Air Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-4-thin-air-part-4/4000-99294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99254/", + "id": 99254, + "name": "Love Withdrawl and The Old Ways", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-4-love-withdrawl-and-the-old-/4000-99254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99094/", + "id": 99094, + "name": "Super Patriot (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-29-super-patriot-part-1/4000-99094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97335/", + "id": 97335, + "name": "Changes, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-17-changes-part-1/4000-97335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96924/", + "id": 96924, + "name": "Down Among The Dead Men, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-4-down-among-the-dead-me/4000-96924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-666504/", + "id": 666504, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/rat-man-color-special-1/4000-666504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129347/", + "id": 129347, + "name": "The Return of the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-6-the-return-of-the-vulture/4000-129347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129278/", + "id": 129278, + "name": "Face-To-Face with the Lizard!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-5-face-to-face-with-the-liza/4000-129278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117103/", + "id": 117103, + "name": "Team Spider", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-75-team-spider/4000-117103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116490/", + "id": 116490, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one-2-part-2/4000-116490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116454/", + "id": 116454, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one-1-part-1/4000-116454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113497/", + "id": 113497, + "name": "Sins Past, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-509-sins-past-part-1/4000-113497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99681/", + "id": 99681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/powerless-1/4000-99681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99232/", + "id": 99232, + "name": "The Real Thing", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-1-the-real-thing/4000-99232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99115/", + "id": 99115, + "name": "Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/identity-disc-1-pt-1/4000-99115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715682/", + "id": 715682, + "name": "Stop the Sandman", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-103-stop-the-san/4000-715682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204695/", + "id": 204695, + "name": "Venom: Run", + "site_detail_url": "https://comicvine.gamespot.com/venom-run-1-venom-run/4000-204695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287665/", + "id": 287665, + "name": "Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-28-hollywood/4000-287665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295605/", + "id": 295605, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4/4000-295605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256060/", + "id": 256060, + "name": "SPIDER-MAN and DAREDEVIL the First Battle!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-19-spider-man-and-dared/4000-256060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259711/", + "id": 259711, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-hereafter-1-volume-4/4000-259711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-863404/", + "id": 863404, + "name": "Mighty Spidey", + "site_detail_url": "https://comicvine.gamespot.com/nickelodeon-magazine-200408-mighty-spidey/4000-863404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840109/", + "id": 840109, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-182/4000-840109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742176/", + "id": 742176, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-21/4000-742176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383453/", + "id": 383453, + "name": "Человек-Паук 2: Спецвыпуск", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-2-spetsvypusk-1--2/4000-383453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383373/", + "id": 383373, + "name": "Правила игры. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-27-3/4000-383373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383372/", + "id": 383372, + "name": "Правила игры. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-26-2/4000-383372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382722/", + "id": 382722, + "name": "Пришествие хаоса. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-38-2/4000-382722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382721/", + "id": 382721, + "name": "Пришествие хаоса. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-37-1/4000-382721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382148/", + "id": 382148, + "name": "Ultimate Six. Часть 5", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-52-ultimate-six-5/4000-382148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382147/", + "id": 382147, + "name": "Ultimate Six. Часть 6", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-53-ultimate-six-6/4000-382147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304352/", + "id": 304352, + "name": "Sins Past Part One", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-509-directors-cut-1-sins-past-p/4000-304352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300505/", + "id": 300505, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-32/4000-300505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298249/", + "id": 298249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-31/4000-298249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297040/", + "id": 297040, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-115/4000-297040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291749/", + "id": 291749, + "name": "Todd McFarlane Spider-Man Band 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-51-todd-mcfarlane-spider-man-band-/4000-291749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291748/", + "id": 291748, + "name": "Todd McFarlane Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-50-todd-mcfarlane-spider-man/4000-291748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287619/", + "id": 287619, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-6/4000-287619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275724/", + "id": 275724, + "name": "X-Treme X-Men 29", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-112-x-treme-x-men-29/4000-275724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154745/", + "id": 154745, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-4-volume-4/4000-154745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141195/", + "id": 141195, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-6-volume-6/4000-141195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130307/", + "id": 130307, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-444/4000-130307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119879/", + "id": 119879, + "name": "Soulfire #1", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-154-soulfire-1/4000-119879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108082/", + "id": 108082, + "name": "Carnage: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-60-carnage-part-1/4000-108082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97334/", + "id": 97334, + "name": "Under My Skin, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-16-under-my-skin-part-2/4000-97334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96985/", + "id": 96985, + "name": "Under My Skin, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-15-under-my-skin-part-1/4000-96985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96923/", + "id": 96923, + "name": "Down Among The Dead Men, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-3-down-among-the-dead-me/4000-96923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96786/", + "id": 96786, + "name": "Web of Lies", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-4-web-of-lies/4000-96786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129277/", + "id": 129277, + "name": "Marked For Destruction By Dr. Doom!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-4-marked-for-destruction-by-/4000-129277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129271/", + "id": 129271, + "name": "Nothing Can Stop the Sandman!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-3-nothing-can-stop-the-sandm/4000-129271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117105/", + "id": 117105, + "name": "Buried Alive!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-74-buried-alive/4000-117105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113496/", + "id": 113496, + "name": "The Book Of Ezekiel: Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-508-the-book-of-ezekiel-cha/4000-113496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113495/", + "id": 113495, + "name": "The Book Of Ezekiel: Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-507-the-book-of-ezekiel-cha/4000-113495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96954/", + "id": 96954, + "name": "Twist, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/venom-15-twist-part-2/4000-96954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96953/", + "id": 96953, + "name": "Twist, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/venom-14-twist-part-1/4000-96953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715680/", + "id": 715680, + "name": "Robot Rampage!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-102-robot-rampag/4000-715680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166261/", + "id": 166261, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-son-of-the-goblin-1-tpb/4000-166261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287664/", + "id": 287664, + "name": "Frauengeschichten", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-27-frauengeschichten/4000-287664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295604/", + "id": 295604, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3/4000-295604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715678/", + "id": 715678, + "name": "Night of the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-101-night-of-the/4000-715678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840108/", + "id": 840108, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-181/4000-840108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742173/", + "id": 742173, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-20/4000-742173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385335/", + "id": 385335, + "name": "Человек-Паук, Каратель и Дардевил. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-9--2/4000-385335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383371/", + "id": 383371, + "name": "Правила игры. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-25-1/4000-383371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383370/", + "id": 383370, + "name": "У каждого своя цель", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-24-wikiissue/4000-383370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382719/", + "id": 382719, + "name": "Хотите новые брюки?", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-36-wikiissue/4000-382719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382718/", + "id": 382718, + "name": "Суббота в парке с Мэй", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-35-wikiissue/4000-382718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382150/", + "id": 382150, + "name": "Ultimate Six. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-50-ultimate-six-3/4000-382150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382149/", + "id": 382149, + "name": "Ultimate Six. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-51-ultimate-six-4/4000-382149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300504/", + "id": 300504, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-31/4000-300504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298247/", + "id": 298247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-30/4000-298247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297039/", + "id": 297039, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-114/4000-297039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295383/", + "id": 295383, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-54/4000-295383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294044/", + "id": 294044, + "name": "Volume 9", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-king-of-hells-kitchen-1-volume-9/4000-294044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287618/", + "id": 287618, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-5/4000-287618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-245081/", + "id": 245081, + "name": "Shrek! Lass Nach!", + "site_detail_url": "https://comicvine.gamespot.com/mad-70-shrek-lass-nach/4000-245081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-173373/", + "id": 173373, + "name": "Comics In Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/back-issue-5-comics-in-hollywood/4000-173373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149146/", + "id": 149146, + "name": "Bruce Timm", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-3-bruce-timm/4000-149146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139109/", + "id": 139109, + "name": "Spider Sense Part 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-513-spider-sense-part-2/4000-139109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127437/", + "id": 127437, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-5-volume-5/4000-127437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119875/", + "id": 119875, + "name": "Giant Summer Preview", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-153-giant-summer-previe/4000-119875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108086/", + "id": 108086, + "name": "Hollywood: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-58-hollywood-part-5/4000-108086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108083/", + "id": 108083, + "name": "Hollywood: Part 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-59-hollywood-part-6/4000-108083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106864/", + "id": 106864, + "name": "Secret War Book 2", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-2-secret-war-book-2/4000-106864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99293/", + "id": 99293, + "name": "Thin Air Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-3-thin-air-part-3/4000-99293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99253/", + "id": 99253, + "name": "Preventive Medicine and 6th", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-3-preventive-medicine-and-6th/4000-99253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96984/", + "id": 96984, + "name": "Here There Be Monsters", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-14-here-there-be-monsters/4000-96984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96922/", + "id": 96922, + "name": "Down Among The Dead Men, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-2-down-among-the-dead-me/4000-96922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96785/", + "id": 96785, + "name": "Dead Certain", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-3-dead-certain/4000-96785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93410/", + "id": 93410, + "name": "The King of Hell's Kitchen: Part 5", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-60-the-king-of-hells-kitchen-part-5/4000-93410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129270/", + "id": 129270, + "name": "Spider-Man versus Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-2-spider-man-versus-doctor-o/4000-129270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117100/", + "id": 117100, + "name": "The Games Villains Play!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-72-the-games-villains-play/4000-117100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113494/", + "id": 113494, + "name": "The Book Of Ezekiel: Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-506-the-book-of-ezekiel-cha/4000-113494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259633/", + "id": 259633, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spider-man-3-volume-three/4000-259633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295284/", + "id": 295284, + "name": "Rampage in the City", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-100-rampage-in-t/4000-295284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256062/", + "id": 256062, + "name": "THE PUNISHER strikes... And looks WHO's in his SIGHTS!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-17-the-punisher-strikes/4000-256062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287663/", + "id": 287663, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-26-black-cat/4000-287663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256231/", + "id": 256231, + "name": "Spider-Man/Doctor Octopus: Out of Reach", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach-1-spider-man/4000-256231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295603/", + "id": 295603, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4000-295603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715235/", + "id": 715235, + "name": "Return of a Monster!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-99-return-of-a-m/4000-715235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742402/", + "id": 742402, + "name": "Blockbuster 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-19-blockbuster-2/4000-742402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385334/", + "id": 385334, + "name": "Человек-Паук, Каратель и Дардевил. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-8--1/4000-385334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385333/", + "id": 385333, + "name": "Человек-Паук и Каратель", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-7--/4000-385333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383369/", + "id": 383369, + "name": "Еще один сумасшедший понедельник", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-23-wikiissue/4000-383369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383368/", + "id": 383368, + "name": "И тут начались мои неприятности... Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-22-2/4000-383368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382717/", + "id": 382717, + "name": "Что скрывают легенды. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-34-4/4000-382717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382716/", + "id": 382716, + "name": "Что скрывают легенды. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-33-3/4000-382716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382152/", + "id": 382152, + "name": "Ultimate Six. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-48-ultimate-six-1/4000-382152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382151/", + "id": 382151, + "name": "Ultimate Six. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-49-ultimate-six-2/4000-382151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300503/", + "id": 300503, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-30/4000-300503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297038/", + "id": 297038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-113/4000-297038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295382/", + "id": 295382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-53/4000-295382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287617/", + "id": 287617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-4/4000-287617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275659/", + "id": 275659, + "name": "X-Treme X-Men 27", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-110-x-treme-x-men-27/4000-275659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266697/", + "id": 266697, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-8/4000-266697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198137/", + "id": 198137, + "name": "Spider Man", + "site_detail_url": "https://comicvine.gamespot.com/mad-special-8-spider-man/4000-198137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196062/", + "id": 196062, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2-the-movie-1/4000-196062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150469/", + "id": 150469, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-daredevil-2-volume-2/4000-150469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139108/", + "id": 139108, + "name": "Spider Sense Part 1", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-512-spider-sense-part-1/4000-139108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119878/", + "id": 119878, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-152/4000-119878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116279/", + "id": 116279, + "name": "Chapter 7", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-7-chapter-7/4000-116279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108085/", + "id": 108085, + "name": "Hollywood: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-56-hollywood-part-3/4000-108085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108084/", + "id": 108084, + "name": "Hollywood: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-57-hollywood-part-4/4000-108084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96983/", + "id": 96983, + "name": "The Lizard's Tale Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-13-the-lizards-tale-part-3/4000-96983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96921/", + "id": 96921, + "name": "Down Among The Dead Men, Part One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-1-down-among-the-dead-me/4000-96921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94006/", + "id": 94006, + "name": "In Which We Discover The Way Of The World...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-8-in-which-we-discover-the-way-of-the-/4000-94006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93409/", + "id": 93409, + "name": "The King of Hell's Kitchen: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-59-the-king-of-hells-kitchen-part-4/4000-93409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92798/", + "id": 92798, + "name": "A Blink in Time (part 3 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-45-a-blink-in-time-part-3-of-3/4000-92798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287616/", + "id": 287616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-3/4000-287616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129215/", + "id": 129215, + "name": "Duel to the Death with the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-1-duel-to-the-death-with-the/4000-129215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117091/", + "id": 117091, + "name": "Eye of the Beholder", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-71-eye-of-the-beholder/4000-117091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113493/", + "id": 113493, + "name": "Vibes", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-505-vibes/4000-113493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96951/", + "id": 96951, + "name": "Patterns, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/venom-12-patterns-part-2/4000-96951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187680/", + "id": 187680, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne-2-vol-2/4000-187680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167544/", + "id": 167544, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-happy-birthday-1-volume-6/4000-167544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287662/", + "id": 287662, + "name": "Wahre Helden", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-25-wahre-helden/4000-287662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715640/", + "id": 715640, + "name": "Ultimatum!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-98-ultimatum/4000-715640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236903/", + "id": 236903, + "name": "Cats and Kings", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-cats-and-kings-1-cats-and-king/4000-236903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763474/", + "id": 763474, + "name": "Spider-Man 2", + "site_detail_url": "https://comicvine.gamespot.com/filmspecial-19-spider-man-2/4000-763474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424625/", + "id": 424625, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/thanos-epiphany-1-volume-1/4000-424625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385770/", + "id": 385770, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-51/4000-385770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385332/", + "id": 385332, + "name": "Человек-Паук и Железный Человек. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-6--2/4000-385332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385331/", + "id": 385331, + "name": "Человек-Паук и Железный Человек. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-5--1/4000-385331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383367/", + "id": 383367, + "name": "И тут начались мои неприятности... Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-21-1/4000-383367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383366/", + "id": 383366, + "name": "Важный ответ", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-20-wikiissue/4000-383366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382715/", + "id": 382715, + "name": "Что скрывают легенды. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-32-2/4000-382715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382714/", + "id": 382714, + "name": "Что скрывают легенды. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-31-1/4000-382714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382157/", + "id": 382157, + "name": "Искушение", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-43-wikiissue/4000-382157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382154/", + "id": 382154, + "name": "Вина", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-46-wikiissue/4000-382154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382153/", + "id": 382153, + "name": "Последствия", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-47-wikiissue/4000-382153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300502/", + "id": 300502, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-29/4000-300502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295602/", + "id": 295602, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-295602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295381/", + "id": 295381, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-52/4000-295381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288587/", + "id": 288587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-19/4000-288587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275631/", + "id": 275631, + "name": "X-Treme X-Men 26", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-109-x-treme-x-men-26/4000-275631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186650/", + "id": 186650, + "name": "Spectacular Spider-Man: Countdown", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-countdown-1-spectacular-spi/4000-186650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174131/", + "id": 174131, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-of-captain-stacy-1-tpb/4000-174131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130884/", + "id": 130884, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach-5/4000-130884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119873/", + "id": 119873, + "name": "25 Greatest Comic Movie Moments", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-151-25-greatest-comic-m/4000-119873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108077/", + "id": 108077, + "name": "Hollywood: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-55-hollywood-part-2/4000-108077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108075/", + "id": 108075, + "name": "Hollywood: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-54-hollywood-part-1/4000-108075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99292/", + "id": 99292, + "name": "Thin Air Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-2-thin-air-part-2/4000-99292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99252/", + "id": 99252, + "name": "Tests / Making Contributions", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-2-tests-making-contributions/4000-99252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96982/", + "id": 96982, + "name": "The Lizard's Tale Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-12-the-lizards-tale-part-2/4000-96982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96981/", + "id": 96981, + "name": "The Lizard's Tale Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-11-the-lizards-tale-part-1/4000-96981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92797/", + "id": 92797, + "name": "A Blink In Time (Part 2 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-44-a-blink-in-time-part-2-of-3/4000-92797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592818/", + "id": 592818, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-legacy-1-volume-1/4000-592818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287615/", + "id": 287615, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-2/4000-287615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256233/", + "id": 256233, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-1-tpb/4000-256233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231241/", + "id": 231241, + "name": "Back From the Dead", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-3-back-from-the-dead/4000-231241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116489/", + "id": 116489, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-5/4000-116489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113492/", + "id": 113492, + "name": "The Coming Of Chaos", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-504-the-coming-of-chaos/4000-113492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96950/", + "id": 96950, + "name": "Patterns, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/venom-11-patterns-part-1/4000-96950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390751/", + "id": 390751, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-le-secret-du-verre-1/4000-390751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287661/", + "id": 287661, + "name": "Gefeuert", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-24-gefeuert/4000-287661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715677/", + "id": 715677, + "name": "Out of Sight!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-97-out-of-sight/4000-715677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-742401/", + "id": 742401, + "name": "Blockbuster 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-18-blockbuster-1/4000-742401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385330/", + "id": 385330, + "name": "Человек-Паук и Халк. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-komanda-4--2/4000-385330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384543/", + "id": 384543, + "name": "Блокбастер. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-38-4/4000-384543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383365/", + "id": 383365, + "name": "Важный вопрос", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-19-wikiissue/4000-383365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383364/", + "id": 383364, + "name": "Смерть в семье. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-18-4/4000-383364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382713/", + "id": 382713, + "name": "С Днем рождения, Человек-Паук. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-30--4/4000-382713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382712/", + "id": 382712, + "name": "С Днем рождения, Человек-Паук. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-29--3/4000-382712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382156/", + "id": 382156, + "name": "Помощь", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-44-wikiissue/4000-382156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382155/", + "id": 382155, + "name": "Укрощенный", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-45-wikiissue/4000-382155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297036/", + "id": 297036, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-111/4000-297036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295380/", + "id": 295380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-51/4000-295380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266696/", + "id": 266696, + "name": "Marvel Knights' Spider-Man #1 Debuts", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-6-marvel-knights-spider-man-1-debu/4000-266696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166067/", + "id": 166067, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-362/4000-166067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152905/", + "id": 152905, + "name": "Out Of Reach", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach-4-out-of-rea/4000-152905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119871/", + "id": 119871, + "name": "Jumbo 150th Issue", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-150-jumbo-150th-issue/4000-119871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108076/", + "id": 108076, + "name": "Daughters", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-53-daughters/4000-108076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99291/", + "id": 99291, + "name": "Thin Air Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-1-thin-air-part-1/4000-99291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96980/", + "id": 96980, + "name": "Countdown Part 5 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-10-countdown-part-5-of-5/4000-96980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94005/", + "id": 94005, + "name": "In Which Many Patterns May Be Discerned, By Those With Eyes To See Them...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-7-in-which-many-patterns-may-be-discer/4000-94005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92796/", + "id": 92796, + "name": "A Blink in Time (part 1 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-43-a-blink-in-time-part-1-of-3/4000-92796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287614/", + "id": 287614, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-spektakulare-spider-man-1/4000-287614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119870/", + "id": 119870, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-149/4000-119870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117090/", + "id": 117090, + "name": "Those Who Hunt Monsters!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-69-those-who-hunt-monsters/4000-117090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116488/", + "id": 116488, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-4/4000-116488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113491/", + "id": 113491, + "name": "Chasing A Dark Shadow", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-503-chasing-a-dark-shadow/4000-113491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96949/", + "id": 96949, + "name": "Run Part Five", + "site_detail_url": "https://comicvine.gamespot.com/venom-10-run-part-five/4000-96949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715676/", + "id": 715676, + "name": "Caged!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-96-caged/4000-715676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118139/", + "id": 118139, + "name": "Marvel Knights", + "site_detail_url": "https://comicvine.gamespot.com/marvel-encyclopedia-5-marvel-knights/4000-118139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384542/", + "id": 384542, + "name": "Блокбастер. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-37-3/4000-384542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384541/", + "id": 384541, + "name": "Блокбастер. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-36-2/4000-384541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383363/", + "id": 383363, + "name": "Смерть в семье. Часть 3", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-17-3/4000-383363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383362/", + "id": 383362, + "name": "Смерть в семье. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-16-2/4000-383362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382711/", + "id": 382711, + "name": "С Днем рождения, Человек-Паук. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-28--2/4000-382711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382710/", + "id": 382710, + "name": "С Днем рождения, Человек-Паук. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-27--1/4000-382710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382158/", + "id": 382158, + "name": "Письмо", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-42-wikiissue/4000-382158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300500/", + "id": 300500, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-27/4000-300500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297035/", + "id": 297035, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-110/4000-297035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295379/", + "id": 295379, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-50/4000-295379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288586/", + "id": 288586, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-18/4000-288586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281001/", + "id": 281001, + "name": "Nuova Serie n.41", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-165-nuova-serie-n41/4000-281001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280738/", + "id": 280738, + "name": "Spider-Man and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legends-4-spider-man-and-wolverine/4000-280738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280736/", + "id": 280736, + "name": "Book Three: Todd McFarlane", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legends-3-book-three-todd-mcfarlane/4000-280736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235443/", + "id": 235443, + "name": "Blockbuster", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-blockbuster-1-blockbuster/4000-235443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230944/", + "id": 230944, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-5/4000-230944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186649/", + "id": 186649, + "name": "Spectacular Spider-Man: The Hunger", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-the-hunger-1-spectacular-sp/4000-186649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153197/", + "id": 153197, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-punisher-1-volume-1/4000-153197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141056/", + "id": 141056, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach-3/4000-141056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124569/", + "id": 124569, + "name": "Hunger!", + "site_detail_url": "https://comicvine.gamespot.com/thanos-4-hunger/4000-124569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116278/", + "id": 116278, + "name": "Chapter 6", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-6-chapter-6/4000-116278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108074/", + "id": 108074, + "name": "Cat Fight", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-52-cat-fight/4000-108074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99251/", + "id": 99251, + "name": "Human Interest and Slyde into Destiny", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-1-human-interest-and-slyde-in/4000-99251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96979/", + "id": 96979, + "name": "Countdown Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-9-countdown-part-4-of-5/4000-96979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94004/", + "id": 94004, + "name": "Alarums And Excursions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-6-alarums-and-excursions/4000-94004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93406/", + "id": 93406, + "name": "The King of Hell's Kitchen: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-56-the-king-of-hells-kitchen-part-1/4000-93406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92793/", + "id": 92793, + "name": "King Hyperion (part 3 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-40-king-hyperion-part-3-of-3/4000-92793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451637/", + "id": 451637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-124/4000-451637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238437/", + "id": 238437, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/exiles-unnatural-instincts-1-volume-5/4000-238437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165280/", + "id": 165280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvelous-adventures-of-gus-beezer-gus-beezer-spid/4000-165280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117074/", + "id": 117074, + "name": "Monsters!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-67-monsters/4000-117074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116487/", + "id": 116487, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-3/4000-116487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113241/", + "id": 113241, + "name": "You Want Pants With That?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-502-you-want-pants-with-tha/4000-113241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418280/", + "id": 418280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2004-02/4000-418280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287659/", + "id": 287659, + "name": "Versuchungen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-22-versuchungen/4000-287659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715675/", + "id": 715675, + "name": "Secrets!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-95-secrets/4000-715675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391602/", + "id": 391602, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-confederacy-of-dunces-1-volume-6/4000-391602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390748/", + "id": 390748, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uomo-ragno-il-segreto-del-vetro-1/4000-390748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384540/", + "id": 384540, + "name": "Блокбастер. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/lyudi-iks-35-1/4000-384540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383361/", + "id": 383361, + "name": "Смерть в семье. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-15-1/4000-383361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383360/", + "id": 383360, + "name": "Пятнадцать минут позора. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-14-2/4000-383360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382708/", + "id": 382708, + "name": "Внутренний переворот", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-26-wikiissue/4000-382708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382707/", + "id": 382707, + "name": "Неожиданные последствия", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-25-wikiissue/4000-382707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382159/", + "id": 382159, + "name": "Средняя тяжесть", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-41-wikiissue/4000-382159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300499/", + "id": 300499, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-26/4000-300499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295378/", + "id": 295378, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-49/4000-295378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292886/", + "id": 292886, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-38/4000-292886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291746/", + "id": 291746, + "name": "Marvel: Das Ende", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-48-marvel-das-ende/4000-291746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287579/", + "id": 287579, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-38/4000-287579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228234/", + "id": 228234, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-daredevil-2-volume-2/4000-228234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152907/", + "id": 152907, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach-2/4000-152907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140396/", + "id": 140396, + "name": "Volume Five", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-5-volume/4000-140396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119869/", + "id": 119869, + "name": "Giant 2004 Preview", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-148-giant-2004-preview/4000-119869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116276/", + "id": 116276, + "name": "Chapter 5", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-5-chapter-5/4000-116276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108073/", + "id": 108073, + "name": "Shadow Puppets", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-51-shadow-puppets/4000-108073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106375/", + "id": 106375, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-50-black-cat/4000-106375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96978/", + "id": 96978, + "name": "Countdown Part 3 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-8-countdown-part-3-of-5/4000-96978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95793/", + "id": 95793, + "name": "Thug, Part 7", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-7-thug-part-7/4000-95793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94003/", + "id": 94003, + "name": "In Which A Treacherous Course Is Plotted", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-5-in-which-a-treacherous-course-is-plo/4000-94003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92792/", + "id": 92792, + "name": "King Hyperion (part 2 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-39-king-hyperion-part-2-of-3/4000-92792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92791/", + "id": 92791, + "name": "King Hyperion, Part One", + "site_detail_url": "https://comicvine.gamespot.com/exiles-38-king-hyperion-part-one/4000-92791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90004/", + "id": 90004, + "name": "Confederacy Of Dunces Part 5", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-37-confederacy-of-dunces-part-5/4000-90004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272336/", + "id": 272336, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-circle-of-friends-1-tpb/4000-272336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117069/", + "id": 117069, + "name": "If This Be Victory", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-66-if-this-be-victory/4000-117069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116486/", + "id": 116486, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-2/4000-116486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113490/", + "id": 113490, + "name": "Saturday in the Park With May", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-501-saturday-in-the-park-wi/4000-113490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106524/", + "id": 106524, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-avengers-/4000-106524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106523/", + "id": 106523, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-spider-ma/4000-106523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287658/", + "id": 287658, + "name": "Party-Time", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-21-party-time/4000-287658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715674/", + "id": 715674, + "name": "Storm Clouds Brewing!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-94-storm-clouds-/4000-715674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-390750/", + "id": 390750, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/uomo-ragno-il-segreto-del-vetro-1/4000-390750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384508/", + "id": 384508, + "name": "Reading to the Rescue!", + "site_detail_url": "https://comicvine.gamespot.com/target-presents-reading-to-the-rescue-1-reading-to/4000-384508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384163/", + "id": 384163, + "name": "The Ultimate Guide to Characters, Graphic Novels, Writers, and Artists in the Comic Book Universe", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-encyclopedia-1-the-ultimate-guide-to-ch/4000-384163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383359/", + "id": 383359, + "name": "Пятнадцать минут позора. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-13-1/4000-383359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383358/", + "id": 383358, + "name": "Неприятная миссия", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-12-wikiissue/4000-383358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382706/", + "id": 382706, + "name": "Свести счеты", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-24-wikiissue/4000-382706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382705/", + "id": 382705, + "name": "Части и кусочки", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-23-wikiissue/4000-382705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382162/", + "id": 382162, + "name": "Тишина", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-38-wikiissue/4000-382162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382161/", + "id": 382161, + "name": "Гордость отца", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-39-wikiissue/4000-382161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297375/", + "id": 297375, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-37/4000-297375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297033/", + "id": 297033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-108/4000-297033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295377/", + "id": 295377, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-48/4000-295377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293224/", + "id": 293224, + "name": "Confederacy of Dunces", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-marvel-knightstrade-paperback-6-confe/4000-293224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292885/", + "id": 292885, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-37/4000-292885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291582/", + "id": 291582, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apresenta-12/4000-291582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291580/", + "id": 291580, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apresenta-10/4000-291580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287578/", + "id": 287578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-37/4000-287578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273857/", + "id": 273857, + "name": "Spider-Man/Doktor Octopus - Das Erste Jahr", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-16-spider-man-doktor-octopus-das-erste-/4000-273857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238551/", + "id": 238551, + "name": "Volume 7", + "site_detail_url": "https://comicvine.gamespot.com/exiles-a-blink-in-time-1-volume-7/4000-238551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230117/", + "id": 230117, + "name": "Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/x-men-days-of-future-past-1-days-of-future-past/4000-230117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216547/", + "id": 216547, + "name": "Spider-Man: Blue", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-1-spider-man-blue/4000-216547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170618/", + "id": 170618, + "name": "L'Uomo Ragno: Identità Segreta", + "site_detail_url": "https://comicvine.gamespot.com/i-classici-del-fumetto-de-la-repubblica-serie-oro-/4000-170618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152906/", + "id": 152906, + "name": "Out Of Reach", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach-1-out-of-rea/4000-152906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142517/", + "id": 142517, + "name": "Healthy Heroes", + "site_detail_url": "https://comicvine.gamespot.com/healthy-heroes-1-healthy-heroes/4000-142517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135850/", + "id": 135850, + "name": "CD-Rom Collection", + "site_detail_url": "https://comicvine.gamespot.com/40-years-of-the-amazing-spider-man-1-cd-rom-collec/4000-135850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119868/", + "id": 119868, + "name": "Giant Year-End Special Issue!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-147-giant-year-end-spec/4000-119868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116274/", + "id": 116274, + "name": "Chapter 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-4-chapter-4/4000-116274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110206/", + "id": 110206, + "name": "Hero", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-49-hero/4000-110206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99771/", + "id": 99771, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/trouble-5/4000-99771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96977/", + "id": 96977, + "name": "Countdown Part 2 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-7-countdown-part-2-of-5/4000-96977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96976/", + "id": 96976, + "name": "Countdown Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-6-countdown-part-1-of-5/4000-96976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94002/", + "id": 94002, + "name": "In Which Much Is Explained And Things Do Not Always Work Out For The Best.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-4-in-which-much-is-explained-and-thing/4000-94002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90003/", + "id": 90003, + "name": "Confederacy Of Dunces Part 4", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-36-confederacy-of-dunces-part-4/4000-90003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90002/", + "id": 90002, + "name": "Confederacy Of Dunces Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-35-confederacy-of-dunces-part-3/4000-90002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468582/", + "id": 468582, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-4-volume-4/4000-468582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414970/", + "id": 414970, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-3-volume-3/4000-414970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297032/", + "id": 297032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-107/4000-297032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116457/", + "id": 116457, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-1/4000-116457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107505/", + "id": 107505, + "name": "Happy Birthday, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-500-happy-birthday-part-3/4000-107505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105427/", + "id": 105427, + "name": "The Brave... and the Bold", + "site_detail_url": "https://comicvine.gamespot.com/jlaavengers-4-the-brave-and-the-bold/4000-105427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167543/", + "id": 167543, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-unintended-consequences-1-v/4000-167543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715673/", + "id": 715673, + "name": "The Dweller in the Dark", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-93-the-dweller-i/4000-715673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140397/", + "id": 140397, + "name": "Volume Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-4-volume/4000-140397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297031/", + "id": 297031, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-106/4000-297031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140583/", + "id": 140583, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-2-volume-two/4000-140583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448648/", + "id": 448648, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-8/4000-448648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383357/", + "id": 383357, + "name": "Кодовое имя: Джон Хэнкок", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-11-wikiissue/4000-383357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382698/", + "id": 382698, + "name": "Узнать секрет", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-22-wikiissue/4000-382698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382697/", + "id": 382697, + "name": "Землекоп", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-21-wikiissue/4000-382697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382164/", + "id": 382164, + "name": "Наследие", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-36-wikiissue/4000-382164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382163/", + "id": 382163, + "name": "Сегодня", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-37-wikiissue/4000-382163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295376/", + "id": 295376, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-47/4000-295376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292884/", + "id": 292884, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-36/4000-292884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291745/", + "id": 291745, + "name": "Die Spider-Man Akten II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-47-die-spider-man-akten-ii/4000-291745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287657/", + "id": 287657, + "name": "Von Mann zu Mann", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-20-von-mann-zu-mann/4000-287657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287577/", + "id": 287577, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-36/4000-287577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251987/", + "id": 251987, + "name": "Sabretooth; The Rematch!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-gambit-93-sabretooth-the-rematch/4000-251987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228233/", + "id": 228233, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-daredevil-1-volume-1/4000-228233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199553/", + "id": 199553, + "name": "Paperboy Showdown", + "site_detail_url": "https://comicvine.gamespot.com/spidey-the-mini-marvels-halloween-2003-ashcan-1-pa/4000-199553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124492/", + "id": 124492, + "name": "Epiphany!", + "site_detail_url": "https://comicvine.gamespot.com/thanos-1-epiphany/4000-124492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123508/", + "id": 123508, + "name": "Cap Lives, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-19-cap-lives-part-3/4000-123508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119867/", + "id": 119867, + "name": "Holiday Must-Haves!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-146-holiday-must-haves/4000-119867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116271/", + "id": 116271, + "name": "Chapter 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-3-chapter-3/4000-116271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113489/", + "id": 113489, + "name": "Happy Birthday, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-58-happy-birthday-part-2/4000-113489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110207/", + "id": 110207, + "name": "Suspended", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-48-suspended/4000-110207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110197/", + "id": 110197, + "name": "Suspended: Men of Influence", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-47-suspended-men-of-influence/4000-110197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96975/", + "id": 96975, + "name": "The Hunger Part 5 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-5-the-hunger-part-5-of-5/4000-96975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95792/", + "id": 95792, + "name": "Thug, Part 6", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-6-thug-part-6/4000-95792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95791/", + "id": 95791, + "name": "Thug, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-5-thug-part-5/4000-95791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94001/", + "id": 94001, + "name": "In Which There Is Much To Be Learned And The Queen Is Given A Gift.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-3-in-which-there-is-much-to-be-learned/4000-94001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90001/", + "id": 90001, + "name": "Confederacy Of Dunces Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-34-confederacy-of-dunces-part-2/4000-90001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90000/", + "id": 90000, + "name": "Confederacy Of Dunces, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-33-confederacy-of-dunces-part-1/4000-90000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175548/", + "id": 175548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-4/4000-175548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715665/", + "id": 715665, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-92/4000-715665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136882/", + "id": 136882, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-encyclopedia-4-spider-man/4000-136882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383356/", + "id": 383356, + "name": "Операция \"Октопус\"", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-10-wikiissue/4000-383356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382696/", + "id": 382696, + "name": "Неудачное предприятие", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-20-wikiissue/4000-382696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382695/", + "id": 382695, + "name": "Плохая связь", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-19-wikiissue/4000-382695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382166/", + "id": 382166, + "name": "Происхождение", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-34-wikiissue/4000-382166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382165/", + "id": 382165, + "name": "Наследство", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-35-wikiissue/4000-382165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298236/", + "id": 298236, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-22/4000-298236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297030/", + "id": 297030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-105/4000-297030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295375/", + "id": 295375, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-46/4000-295375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292883/", + "id": 292883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-35/4000-292883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287576/", + "id": 287576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-35/4000-287576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154744/", + "id": 154744, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-3-volume-3/4000-154744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130303/", + "id": 130303, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-435/4000-130303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119866/", + "id": 119866, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-145/4000-119866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116269/", + "id": 116269, + "name": "Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-2-chapter-2/4000-116269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116253/", + "id": 116253, + "name": "Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six-1-chapter-1/4000-116253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113488/", + "id": 113488, + "name": "Happy Birthday, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-57-happy-birthday-part-1/4000-113488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110199/", + "id": 110199, + "name": "Guilt", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-45-guilt/4000-110199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110198/", + "id": 110198, + "name": "Afterwards...", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-46-afterwards/4000-110198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108659/", + "id": 108659, + "name": "Back From The Dead Part Two", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-14-back-from-the-dead-part-two/4000-108659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105516/", + "id": 105516, + "name": "Blockbuster: Part 4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-37-blockbuster-part-4/4000-105516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96974/", + "id": 96974, + "name": "The Hunger Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-4-the-hunger-part-4-of-5/4000-96974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95790/", + "id": 95790, + "name": "Thug, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-4-thug-part-4/4000-95790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94000/", + "id": 94000, + "name": "In Which Things Begin To Change...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-2-in-which-things-begin-to-change/4000-94000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93999/", + "id": 93999, + "name": "In which we are Introduced to some of our Featured Players", + "site_detail_url": "https://comicvine.gamespot.com/1602-1-in-which-we-are-introduced-to-some-of-our-f/4000-93999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-93978/", + "id": 93978, + "name": "Strange Adventures", + "site_detail_url": "https://comicvine.gamespot.com/jlaavengers-3-strange-adventures/4000-93978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454414/", + "id": 454414, + "name": "...Finales", + "site_detail_url": "https://comicvine.gamespot.com/coleccionable-x-men-la-era-de-apocalipsis-12-final/4000-454414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186658/", + "id": 186658, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-senseless-violence-1-tpb/4000-186658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175546/", + "id": 175546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-3/4000-175546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146004/", + "id": 146004, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-special-a-1/4000-146004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117063/", + "id": 117063, + "name": "If This Be My Destiny!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-63-if-this-be-my-destiny/4000-117063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715664/", + "id": 715664, + "name": "Bid for Freedom!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-91-bid-for-freed/4000-715664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287656/", + "id": 287656, + "name": "Alpträume", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-19-alptraume/4000-287656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140398/", + "id": 140398, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-3-volume/4000-140398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383355/", + "id": 383355, + "name": "Зловещие клоуны", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-9-wikiissue/4000-383355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382694/", + "id": 382694, + "name": "История паука", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-18-wikiissue/4000-382694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382693/", + "id": 382693, + "name": "Жизнь и смерть пауков", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-17-wikiissue/4000-382693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382168/", + "id": 382168, + "name": "Черный фургон", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-32-wikiissue/4000-382168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382167/", + "id": 382167, + "name": "Обычный парень", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-33-wikiissue/4000-382167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358687/", + "id": 358687, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/mythology-the-dc-comics-art-of-alex-ross-1-hc/4000-358687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303730/", + "id": 303730, + "name": "Fear Pressure!", + "site_detail_url": "https://comicvine.gamespot.com/prevent-child-abuse-america-presents-amazing-spide/4000-303730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297029/", + "id": 297029, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-104/4000-297029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295374/", + "id": 295374, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-45/4000-295374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292882/", + "id": 292882, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-34/4000-292882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291744/", + "id": 291744, + "name": "Daredevil: Ende Eines Helden", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-46-daredevil-ende-eines-helden/4000-291744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287575/", + "id": 287575, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-34/4000-287575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190611/", + "id": 190611, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-coven-1-volume-2/4000-190611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141672/", + "id": 141672, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-human-torch-1-volume-1/4000-141672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140582/", + "id": 140582, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers-1-volume-one/4000-140582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113487/", + "id": 113487, + "name": "The Revolution Within", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-56-the-revolution-within/4000-113487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110200/", + "id": 110200, + "name": "Tampered", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-44-tampered/4000-110200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108657/", + "id": 108657, + "name": "Back From The Dead Part One", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-13-back-from-the-dead-part-one/4000-108657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105514/", + "id": 105514, + "name": "Blockbuster: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-36-blockbuster-part-3/4000-105514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96973/", + "id": 96973, + "name": "The Hunger Part 3 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-3-the-hunger-part-3-of-5/4000-96973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95789/", + "id": 95789, + "name": "Thug, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-3-thug-part-3/4000-95789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175543/", + "id": 175543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-2/4000-175543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90014/", + "id": 90014, + "name": "Getting even more!", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-81-getting-even-more/4000-90014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715663/", + "id": 715663, + "name": "Gang War!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-90-gang-war/4000-715663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383354/", + "id": 383354, + "name": "Снежный день", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-8-wikiissue/4000-383354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382692/", + "id": 382692, + "name": "Неестественные враги", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-16-wikiissue/4000-382692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382691/", + "id": 382691, + "name": "Пока не погаснут звезды", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-15-wikiissue/4000-382691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382170/", + "id": 382170, + "name": "Самозванец", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-30-wikiissue/4000-382170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382169/", + "id": 382169, + "name": "Скорая помощь", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-31-wikiissue/4000-382169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298232/", + "id": 298232, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-19/4000-298232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297028/", + "id": 297028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-103/4000-297028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292881/", + "id": 292881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-33/4000-292881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287574/", + "id": 287574, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-33/4000-287574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275427/", + "id": 275427, + "name": "X-Treme X-Men 18", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-101-x-treme-x-men-18/4000-275427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166065/", + "id": 166065, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-361/4000-166065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159644/", + "id": 159644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-200307/4000-159644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113486/", + "id": 113486, + "name": "Unintended Consequences", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-55-unintended-consequences/4000-113486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110476/", + "id": 110476, + "name": "Wizard Zero", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-0-wizard-zero/4000-110476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110201/", + "id": 110201, + "name": "Help", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-43-help/4000-110201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105513/", + "id": 105513, + "name": "Blockbuster: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-35-blockbuster-part-2/4000-105513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96972/", + "id": 96972, + "name": "The Hunger Part 2 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-2-the-hunger-part-2-of-5/4000-96972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96971/", + "id": 96971, + "name": "The Hunger Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-1-the-hunger-part-1-of-5/4000-96971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95788/", + "id": 95788, + "name": "Sharks & Little Fishes", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-2-sharks-little-fishes/4000-95788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238397/", + "id": 238397, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/exiles-legacy-1-volume-4/4000-238397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175541/", + "id": 175541, + "name": "Stuff of Legends", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-1-stuff-of-leg/4000-175541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117061/", + "id": 117061, + "name": "Marked For Death!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-61-marked-for-death/4000-117061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90351/", + "id": 90351, + "name": "Reborn: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-57-reborn-part-2/4000-90351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90013/", + "id": 90013, + "name": "Getting Even", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-80-getting-even/4000-90013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715662/", + "id": 715662, + "name": "Outta This World!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-89-outta-this-wo/4000-715662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140399/", + "id": 140399, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-2-volume/4000-140399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167541/", + "id": 167541, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-life-and-death-of-spiders-1/4000-167541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287655/", + "id": 287655, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-18-venom/4000-287655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383353/", + "id": 383353, + "name": "Бешеные деньги", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-7-wikiissue/4000-383353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382690/", + "id": 382690, + "name": "Люди и щупальца", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-14-wikiissue/4000-382690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382689/", + "id": 382689, + "name": "Холодные руки", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-13-wikiissue/4000-382689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382171/", + "id": 382171, + "name": "Неудачный день", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-29-wikiissue/4000-382171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382117/", + "id": 382117, + "name": "Вне закона", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-28-wikiissue/4000-382117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298231/", + "id": 298231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-18/4000-298231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297368/", + "id": 297368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-30/4000-297368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297027/", + "id": 297027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-102/4000-297027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295372/", + "id": 295372, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-43/4000-295372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292880/", + "id": 292880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-32/4000-292880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287573/", + "id": 287573, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-32/4000-287573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280734/", + "id": 280734, + "name": "Spider-Man Visionaries: Todd McFarlane", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-todd-mcfarlane-1-spider-man/4000-280734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275422/", + "id": 275422, + "name": "X-Treme X-Men 17", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-100-x-treme-x-men-17/4000-275422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228380/", + "id": 228380, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-silver-surfer-2-volume-2/4000-228380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119854/", + "id": 119854, + "name": "50 Best Comic Movies", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-143-50-best-comic-movie/4000-119854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113485/", + "id": 113485, + "name": "The Balancing Of Karmic Accounts", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-54-the-balancing-of-karmic-/4000-113485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110202/", + "id": 110202, + "name": "Temptations", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-42-temptations/4000-110202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110007/", + "id": 110007, + "name": "The Cure", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end-6-the-cure/4000-110007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105784/", + "id": 105784, + "name": "The Secret Origin of Jessica Jones Part 2", + "site_detail_url": "https://comicvine.gamespot.com/alias-23-the-secret-origin-of-jessica-jones-part-2/4000-105784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105512/", + "id": 105512, + "name": "Blockbuster: Part One", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-34-blockbuster-part-one/4000-105512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95787/", + "id": 95787, + "name": "All The King's Men", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-1-all-the-kings-men/4000-95787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152543/", + "id": 152543, + "name": "Tango'd Web", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-10-tangod-web/4000-152543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117052/", + "id": 117052, + "name": "Legacy!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-60-legacy/4000-117052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90350/", + "id": 90350, + "name": "Reborn", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-56-reborn/4000-90350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80597/", + "id": 80597, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-11/4000-80597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715661/", + "id": 715661, + "name": "Payback!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-88-payback/4000-715661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109909/", + "id": 109909, + "name": "Average Bear", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-40-average-bear/4000-109909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140400/", + "id": 140400, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-1-volume/4000-140400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280735/", + "id": 280735, + "name": "Book Two: Todd McFarlane", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legends-2-book-two-todd-mcfarlane/4000-280735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715660/", + "id": 715660, + "name": "Shocked, Stunned and Sunk!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-87-shocked-stunn/4000-715660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826735/", + "id": 826735, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-arthur-adams-1-volume-3/4000-826735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383352/", + "id": 383352, + "name": "Герои не плачут", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-6-wikiissue/4000-383352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382688/", + "id": 382688, + "name": "Странный поворот событий", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-12-wikiissue/4000-382688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382687/", + "id": 382687, + "name": "Воспоминания", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-11-wikiissue/4000-382687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382119/", + "id": 382119, + "name": "Человек-Паук спасает Мэри Джейн?", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-26--/4000-382119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382118/", + "id": 382118, + "name": "Круги", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-27-wikiissue/4000-382118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300492/", + "id": 300492, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-19/4000-300492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299958/", + "id": 299958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-19/4000-299958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298230/", + "id": 298230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-17/4000-298230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297367/", + "id": 297367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-29/4000-297367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297026/", + "id": 297026, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-101/4000-297026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295371/", + "id": 295371, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-42/4000-295371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292879/", + "id": 292879, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-31/4000-292879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287653/", + "id": 287653, + "name": "Venom!", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-17-venom/4000-287653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287572/", + "id": 287572, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-31/4000-287572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256234/", + "id": 256234, + "name": "Spider-Man: Legend of the Spider-Clan", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan-1-spider-man-/4000-256234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133143/", + "id": 133143, + "name": "Epic", + "site_detail_url": "https://comicvine.gamespot.com/marville-7-epic/4000-133143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119853/", + "id": 119853, + "name": "Super Summer Preview", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-142-super-summer-previe/4000-119853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113484/", + "id": 113484, + "name": "Parts And Pieces", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-53-parts-and-pieces/4000-113484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110203/", + "id": 110203, + "name": "The Letter", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-41-the-letter/4000-110203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110006/", + "id": 110006, + "name": "Omnipotence", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end-5-omnipotence/4000-110006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105783/", + "id": 105783, + "name": "The Secret Origin of Jessica Jones Part 1", + "site_detail_url": "https://comicvine.gamespot.com/alias-22-the-secret-origin-of-jessica-jones-part-1/4000-105783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239429/", + "id": 239429, + "name": "Finding Nemo", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-200306-finding-nemo/4000-239429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186657/", + "id": 186657, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-trials-and-tribulations-1-/4000-186657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117053/", + "id": 117053, + "name": "Proof of Life!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-59-proof-of-life/4000-117053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90349/", + "id": 90349, + "name": "Rules of the Game: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-55-rules-of-the-game-part-/4000-90349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109908/", + "id": 109908, + "name": "Therapy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-39-therapy/4000-109908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715659/", + "id": 715659, + "name": "Running Late, Running Scared!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-86-running-late-/4000-715659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383351/", + "id": 383351, + "name": "Когда твои же глаза против тебя...", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-5-wikiissue/4000-383351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382686/", + "id": 382686, + "name": "Щекотливые вопросы", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-10-wikiissue/4000-382686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382685/", + "id": 382685, + "name": "Между тем...", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-9-wikiissue/4000-382685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382120/", + "id": 382120, + "name": "Ультиматум", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-25-wikiissue/4000-382120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300491/", + "id": 300491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-18/4000-300491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298229/", + "id": 298229, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-16/4000-298229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295370/", + "id": 295370, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-41/4000-295370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292878/", + "id": 292878, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-30/4000-292878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287652/", + "id": 287652, + "name": "Der Arm des Gesetzes", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-16-der-arm-des-gesetzes/4000-287652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287571/", + "id": 287571, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-30/4000-287571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197769/", + "id": 197769, + "name": "Der Unglaubliche Hulk", + "site_detail_url": "https://comicvine.gamespot.com/mad-special-6-der-unglaubliche-hulk/4000-197769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130296/", + "id": 130296, + "name": "We Mutate X-Men 2", + "site_detail_url": "https://comicvine.gamespot.com/mad-430-we-mutate-x-men-2/4000-130296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113483/", + "id": 113483, + "name": "Dig This", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-52-dig-this/4000-113483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110005/", + "id": 110005, + "name": "Contamination", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end-4-contamination/4000-110005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110004/", + "id": 110004, + "name": "Extinction", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end-3-extinction/4000-110004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92779/", + "id": 92779, + "name": "Hard choices (part 1 of 2)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-26-hard-choices-part-1-of-2/4000-92779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92778/", + "id": 92778, + "name": "With an Iron Fist (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-25-with-an-iron-fist-part-3/4000-92778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268929/", + "id": 268929, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-adventures-of-gus-beezer-hulk-1/4000-268929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166135/", + "id": 166135, + "name": "The Amazing Gus Beezer!", + "site_detail_url": "https://comicvine.gamespot.com/marvelous-adventures-of-gus-beezer-spider-man-1-th/4000-166135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119387/", + "id": 119387, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spidey-and-the-mini-marvels-1/4000-119387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117051/", + "id": 117051, + "name": "Daddy's Girl!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-58-daddys-girl/4000-117051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109907/", + "id": 109907, + "name": "Father's Pride", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-38-fathers-pride/4000-109907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90348/", + "id": 90348, + "name": "Rules of the Game: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-54-rules-of-the-game-part-/4000-90348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80595/", + "id": 80595, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-9/4000-80595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259632/", + "id": 259632, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spider-man-2-volume-two/4000-259632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255959/", + "id": 255959, + "name": "In The Clutchers Of DOCTOR OCTOPUS!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-3-in-the-clutchers-of-d/4000-255959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287651/", + "id": 287651, + "name": "Kleine und große Katastrophen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-15-kleine-und-groe-katas/4000-287651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715658/", + "id": 715658, + "name": "To Squash a Spider", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-85-to-squash-a-s/4000-715658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129356/", + "id": 129356, + "name": "Hulk: The Incredible Guide", + "site_detail_url": "https://comicvine.gamespot.com/hulk-the-incredible-guide-1-hulk-the-incredible-gu/4000-129356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383350/", + "id": 383350, + "name": "Может, в следующем году", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-4-wikiissue/4000-383350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382122/", + "id": 382122, + "name": "Возвращение Зеленого Гоблина", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-23-wikiissue/4000-382122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382121/", + "id": 382121, + "name": "Ответственность", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-24-wikiissue/4000-382121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298228/", + "id": 298228, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-15/4000-298228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297024/", + "id": 297024, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-99/4000-297024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295369/", + "id": 295369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-40/4000-295369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292877/", + "id": 292877, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-29/4000-292877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291741/", + "id": 291741, + "name": "Infinity Abyss: Universum am Abgrund", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-43-infinity-abyss-universum-am-abg/4000-291741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287570/", + "id": 287570, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-29/4000-287570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275416/", + "id": 275416, + "name": "X-Treme X-Men 14", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-97-x-treme-x-men-14/4000-275416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166064/", + "id": 166064, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-360/4000-166064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154668/", + "id": 154668, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-2-volume-2/4000-154668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113482/", + "id": 113482, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-51-digger/4000-113482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109997/", + "id": 109997, + "name": "Predestination", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end-1-predestination/4000-109997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109905/", + "id": 109905, + "name": "Still", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-37-still/4000-109905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92777/", + "id": 92777, + "name": "With an iron fist (part 2)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-24-with-an-iron-fist-part-2/4000-92777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92776/", + "id": 92776, + "name": "With an iron fist (part 1)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-23-with-an-iron-fist-part-1/4000-92776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117050/", + "id": 117050, + "name": "Call of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-57-call-of-thunder/4000-117050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108694/", + "id": 108694, + "name": "Part Five: Redemption", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan-5-part-five-r/4000-108694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90347/", + "id": 90347, + "name": "Rules of the Game", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-53-rules-of-the-game/4000-90347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287650/", + "id": 287650, + "name": "Bittere Erfahrungen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-14-bittere-erfahrungen/4000-287650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715657/", + "id": 715657, + "name": "Star Struck!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-84-star-struck/4000-715657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382684/", + "id": 382684, + "name": "Признание", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-8-wikiissue/4000-382684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382124/", + "id": 382124, + "name": "Битва", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-21-wikiissue/4000-382124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382123/", + "id": 382123, + "name": "Охота", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-22-wikiissue/4000-382123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317039/", + "id": 317039, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-85/4000-317039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300489/", + "id": 300489, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-16/4000-300489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298227/", + "id": 298227, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-14/4000-298227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297023/", + "id": 297023, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-98/4000-297023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295368/", + "id": 295368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-39/4000-295368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292876/", + "id": 292876, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-28/4000-292876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287569/", + "id": 287569, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-28/4000-287569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275365/", + "id": 275365, + "name": "X-Treme X-Men 13", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-96-x-treme-x-men-13/4000-275365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251978/", + "id": 251978, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-gambit-84/4000-251978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249580/", + "id": 249580, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-how-to-lose-1-tpb/4000-249580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171168/", + "id": 171168, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-color-classics-7/4000-171168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133144/", + "id": 133144, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marville-6/4000-133144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113481/", + "id": 113481, + "name": "Doomed Affairs", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-50-doomed-affairs/4000-113481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109904/", + "id": 109904, + "name": "Today", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-36-today/4000-109904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77960/", + "id": 77960, + "name": "All of Me", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-6-all-of-me/4000-77960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167540/", + "id": 167540, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-until-the-stars-turn-cold-1/4000-167540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117048/", + "id": 117048, + "name": "Rising Storm!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-55-rising-storm/4000-117048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108693/", + "id": 108693, + "name": "Part Four: Consequences", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan-4-part-four-c/4000-108693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108322/", + "id": 108322, + "name": "Dark and Scary Things, Hard Day's Fight, Something in the Air", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited-41-dark-and-scary-things-hard-days/4000-108322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90346/", + "id": 90346, + "name": "Everybody's Workin' for the Weekend", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-52-everybodys-workin-for-t/4000-90346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114271/", + "id": 114271, + "name": "The System", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-22-the-system/4000-114271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715656/", + "id": 715656, + "name": "Entranced!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-83-entranced/4000-715656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383349/", + "id": 383349, + "name": "Ничто не вечно", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-3-wikiissue/4000-383349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382683/", + "id": 382683, + "name": "Интерлюдия", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-7-wikiissue/4000-382683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382125/", + "id": 382125, + "name": "Важное дело", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-20-wikiissue/4000-382125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298226/", + "id": 298226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-13/4000-298226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295367/", + "id": 295367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-38/4000-295367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292875/", + "id": 292875, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-27/4000-292875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287568/", + "id": 287568, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-27/4000-287568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275364/", + "id": 275364, + "name": "X-Treme X-Men 12", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-95-x-treme-x-men-12/4000-275364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255924/", + "id": 255924, + "name": "FIRST COLLECTORS' ITEM ISSUE!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-1-first-collectors-item/4000-255924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119850/", + "id": 119850, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-138/4000-119850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113480/", + "id": 113480, + "name": "Bad Connections", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-49-bad-connections/4000-113480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108170/", + "id": 108170, + "name": "Legacy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-35-legacy/4000-108170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108169/", + "id": 108169, + "name": "Inheritance", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-34-inheritance/4000-108169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-92774/", + "id": 92774, + "name": "Legacy: part two", + "site_detail_url": "https://comicvine.gamespot.com/exiles-21-legacy-part-two/4000-92774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258523/", + "id": 258523, + "name": "Ultimate Daredevil & Elektra", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-daredevil-and-elektra-1-ultimate-daredevi/4000-258523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117047/", + "id": 117047, + "name": "Season of the Serpent", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-54-season-of-the-serpent/4000-117047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114270/", + "id": 114270, + "name": "T'was the Fight Before Christmas", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-21-twas-the-fight-before-c/4000-114270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108692/", + "id": 108692, + "name": "Part Three: Choices", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan-3-part-three-/4000-108692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-90345/", + "id": 90345, + "name": "Just Another Manic Monday", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-51-just-another-manic-mond/4000-90345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80594/", + "id": 80594, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-8/4000-80594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297021/", + "id": 297021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-96/4000-297021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715654/", + "id": 715654, + "name": "Big Game!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-82-big-game/4000-715654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251976/", + "id": 251976, + "name": "Thief Of Time!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-gambit-82-thief-of-time/4000-251976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759452/", + "id": 759452, + "name": "¡Héroe local!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-34-heroe-local/4000-759452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383348/", + "id": 383348, + "name": "Ошибка Человека-Паука", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-2--/4000-383348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382682/", + "id": 382682, + "name": "Развязка", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-6-wikiissue/4000-382682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382160/", + "id": 382160, + "name": "Терапия", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-40-wikiissue/4000-382160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382127/", + "id": 382127, + "name": "Выгодная ситуация", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-18-wikiissue/4000-382127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382126/", + "id": 382126, + "name": "Круговорот", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-19-wikiissue/4000-382126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300488/", + "id": 300488, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-15/4000-300488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300487/", + "id": 300487, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-14/4000-300487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295366/", + "id": 295366, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-37/4000-295366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294041/", + "id": 294041, + "name": "Out", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-out-1-out/4000-294041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292874/", + "id": 292874, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-26/4000-292874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287567/", + "id": 287567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-26/4000-287567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126751/", + "id": 126751, + "name": "Black And White, Part 2 - Stimey Goes Down For The Long Nap", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-52-black-and-white-part-2-stimey-goe/4000-126751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113479/", + "id": 113479, + "name": "A Spider's Tale", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-48-a-spider-s-tale/4000-113479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108168/", + "id": 108168, + "name": "Origins", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-33-origins/4000-108168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108167/", + "id": 108167, + "name": "Just a Guy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-32-just-a-guy/4000-108167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105372/", + "id": 105372, + "name": "Legacy: part one", + "site_detail_url": "https://comicvine.gamespot.com/exiles-20-legacy-part-one/4000-105372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126864/", + "id": 126864, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-get-kraven-6/4000-126864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113661/", + "id": 113661, + "name": "And Here My Troubles Begin...", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-50-and-here-my-troubles-be/4000-113661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108691/", + "id": 108691, + "name": "Part Two: Darkness Of The Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan-2-part-two-da/4000-108691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80593/", + "id": 80593, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-7/4000-80593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411372/", + "id": 411372, + "name": "Wie het laatsts lacht... / De Hel Breekt Los", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-246-wie-het-laatsts-lacht-de-hel-breekt-l/4000-411372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759451/", + "id": 759451, + "name": "¡El héroe y el holocausto!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-33-el-heroe-y-el/4000-759451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759449/", + "id": 759449, + "name": "Sin furia", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-32-sin-furia/4000-759449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759448/", + "id": 759448, + "name": "Ace", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-31-ace/4000-759448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759363/", + "id": 759363, + "name": "¡El enemigo interior!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-30-el-enemigo-in/4000-759363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383347/", + "id": 383347, + "name": "Три сотни", + "site_detail_url": "https://comicvine.gamespot.com/piter-parker-chelovek-pauk-1-wikiissue/4000-383347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382681/", + "id": 382681, + "name": "Исчезновение", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-5-wikiissue/4000-382681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382129/", + "id": 382129, + "name": "Противоборство", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-16-wikiissue/4000-382129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382128/", + "id": 382128, + "name": "Крэйвен-охотник", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-17--/4000-382128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-353321/", + "id": 353321, + "name": "Marcado por la muerte", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-coleccionable-dan-defensor-2-marcado-por/4000-353321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344389/", + "id": 344389, + "name": "De repente... ¡el monstruo!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-especiales-5-de-repente-e/4000-344389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298224/", + "id": 298224, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-11/4000-298224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298223/", + "id": 298223, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-10/4000-298223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297025/", + "id": 297025, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-100/4000-297025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297020/", + "id": 297020, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-95/4000-297020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297019/", + "id": 297019, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-94/4000-297019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295365/", + "id": 295365, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-36/4000-295365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290519/", + "id": 290519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/las-aventuras-de-spiderman-2/4000-290519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287708/", + "id": 287708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-special-1/4000-287708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280893/", + "id": 280893, + "name": "Nuova Serie n.27", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-151-nuova-serie-n27/4000-280893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276369/", + "id": 276369, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thanos-infinity-abyss-1-tpb/4000-276369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273847/", + "id": 273847, + "name": "1602 - Buch 2", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-7-1602-buch-2/4000-273847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273844/", + "id": 273844, + "name": "Spider-Man & Wolverine - Projekt Prometheus", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-4-spider-man-wolverine-projekt-promethe/4000-273844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239488/", + "id": 239488, + "name": "The Art of Carlos Diez", + "site_detail_url": "https://comicvine.gamespot.com/art-fantastix-13-the-art-of-carlos-diez/4000-239488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233662/", + "id": 233662, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-x-men-3-volume-three/4000-233662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223689/", + "id": 223689, + "name": "vol.4 DC/Marvel", + "site_detail_url": "https://comicvine.gamespot.com/dcmarvel-crossover-classics-4-vol4-dcmarvel/4000-223689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186656/", + "id": 186656, + "name": "Peter Parker: Spider-Man: Return of the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-return-of-the-goblin-1-pet/4000-186656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149145/", + "id": 149145, + "name": "George Pérez", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-2-george-perez/4000-149145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149144/", + "id": 149144, + "name": "Alan Davis", + "site_detail_url": "https://comicvine.gamespot.com/modern-masters-1-alan-davis/4000-149144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143491/", + "id": 143491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113478/", + "id": 113478, + "name": "The Life & Death Of Spiders", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-47-the-life-death-of-spider/4000-113478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108166/", + "id": 108166, + "name": "Black Van", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-31-black-van/4000-108166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108165/", + "id": 108165, + "name": "Emergency", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-30-emergency/4000-108165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468569/", + "id": 468569, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-3-volume-3/4000-468569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414969/", + "id": 414969, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-2-volume-2/4000-414969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239169/", + "id": 239169, + "name": "The Art of Fastner & Larson", + "site_detail_url": "https://comicvine.gamespot.com/art-fantastix-8-the-art-of-fastner-larson/4000-239169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114268/", + "id": 114268, + "name": "Call of the Wild", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-19-call-of-the-wild/4000-114268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113660/", + "id": 113660, + "name": "The Big Answer", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-49-the-big-answer/4000-113660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108616/", + "id": 108616, + "name": "Spider Sense Tingling", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan-1-spider-sens/4000-108616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108163/", + "id": 108163, + "name": "Sidetracked", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-28-sidetracked/4000-108163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80592/", + "id": 80592, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-6/4000-80592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-766303/", + "id": 766303, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-beano-3152/4000-766303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759362/", + "id": 759362, + "name": "Compulsión", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-29-compulsion/4000-759362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759360/", + "id": 759360, + "name": "Unos barrotes no son una cárcel ...", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-28-unos-barrotes/4000-759360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759359/", + "id": 759359, + "name": "¡Hasta que la muerte nos separe!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-27-hasta-que-la-/4000-759359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759358/", + "id": 759358, + "name": "Ruptura", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-26-ruptura/4000-759358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759357/", + "id": 759357, + "name": "Confesiones", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-25-confesiones/4000-759357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759356/", + "id": 759356, + "name": "Recordando el pasado", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-24-recordando-el/4000-759356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759355/", + "id": 759355, + "name": "¡La última respuesta!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-23-la-ultima-res/4000-759355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759353/", + "id": 759353, + "name": "¡Cuidado con las garras de ... Puma!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-22-cuidado-con-l/4000-759353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382680/", + "id": 382680, + "name": "Все проигрывают", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-4-wikiissue/4000-382680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382130/", + "id": 382130, + "name": "Доктор Октопус", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-15-wikiissue/4000-382130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297018/", + "id": 297018, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-93/4000-297018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295364/", + "id": 295364, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-35/4000-295364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239297/", + "id": 239297, + "name": "Der Goldene Alfred 2002!", + "site_detail_url": "https://comicvine.gamespot.com/mad-51-der-goldene-alfred-2002/4000-239297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133148/", + "id": 133148, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marville-2/4000-133148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130292/", + "id": 130292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-424/4000-130292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113477/", + "id": 113477, + "name": "Unnatural Enemies", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-46-unnatural-enemies/4000-113477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108164/", + "id": 108164, + "name": "Stolen Identity", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-29-stolen-identity/4000-108164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117031/", + "id": 117031, + "name": "Dearest May", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-51-dearest-may/4000-117031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114267/", + "id": 114267, + "name": "Alphabet City", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-18-alphabet-city/4000-114267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113659/", + "id": 113659, + "name": "The Big Question", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-48-the-big-question/4000-113659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-759352/", + "id": 759352, + "name": "¡Una noche movida en la morgue!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-21-una-noche-mov/4000-759352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382679/", + "id": 382679, + "name": "Душевный разговор", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-3-wikiissue/4000-382679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382132/", + "id": 382132, + "name": "Не на жизнь, а на смерть", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-13-wikiissue/4000-382132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382131/", + "id": 382131, + "name": "Исповедь", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-14-wikiissue/4000-382131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297017/", + "id": 297017, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-92/4000-297017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295363/", + "id": 295363, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-34/4000-295363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-288578/", + "id": 288578, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-ultimativen-x-men-10/4000-288578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276371/", + "id": 276371, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-kang-dynasty-1-tpb/4000-276371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239172/", + "id": 239172, + "name": "Warum Gratulieren Alle so Artig?", + "site_detail_url": "https://comicvine.gamespot.com/mad-50-warum-gratulieren-alle-so-artig/4000-239172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113476/", + "id": 113476, + "name": "Until The Stars Turn Cold", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-45-until-the-stars-turn-col/4000-113476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108162/", + "id": 108162, + "name": "Illegal", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-27-illegal/4000-108162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108161/", + "id": 108161, + "name": "Circles", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-26-circles/4000-108161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108026/", + "id": 108026, + "name": "Vertical Challenge", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-16-vertical-challenge/4000-108026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77959/", + "id": 77959, + "name": "If I Had You", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-5-if-i-had-you/4000-77959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169131/", + "id": 169131, + "name": "Neighbors", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandaredevil-1-neighbors/4000-169131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117029/", + "id": 117029, + "name": "Forgiveness", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-50-forgiveness/4000-117029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77964/", + "id": 77964, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life-4-untitled/4000-77964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77955/", + "id": 77955, + "name": "Hate Crimes", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-3-hate-cr/4000-77955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715653/", + "id": 715653, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-80/4000-715653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220991/", + "id": 220991, + "name": "Marvel: The Characters And Their Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-characters-and-their-universe-1-marvel-/4000-220991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111424/", + "id": 111424, + "name": "Marvel Encyclopedia", + "site_detail_url": "https://comicvine.gamespot.com/marvel-encyclopedia-1-marvel-encyclopedia/4000-111424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837522/", + "id": 837522, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life-1-tpb/4000-837522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382678/", + "id": 382678, + "name": "Возвращение домой", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-2-wikiissue/4000-382678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382134/", + "id": 382134, + "name": "Хуже не бывает", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-11-wikiissue/4000-382134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382133/", + "id": 382133, + "name": "Открытие", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-12-wikiissue/4000-382133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-338568/", + "id": 338568, + "name": "The Treasures Of The Golden Key Comics", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-artist-22-the-treasures-of-the-golden-k/4000-338568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298218/", + "id": 298218, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-7/4000-298218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297016/", + "id": 297016, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-91/4000-297016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295362/", + "id": 295362, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-33/4000-295362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287646/", + "id": 287646, + "name": "Tiefschläge", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-10-tiefschlage/4000-287646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275284/", + "id": 275284, + "name": "X-Treme X-Men 7", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-90-x-treme-x-men-7/4000-275284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239044/", + "id": 239044, + "name": "Mads Horrorshow!", + "site_detail_url": "https://comicvine.gamespot.com/mad-49-mads-horrorshow/4000-239044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175994/", + "id": 175994, + "name": "Fantastici Quattro: la Sfida del Dottor Destino", + "site_detail_url": "https://comicvine.gamespot.com/oscar-bestsellers-1277-fantastici-quattro-la-sfida/4000-175994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142753/", + "id": 142753, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-daredevil-1-volume-1/4000-142753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128903/", + "id": 128903, + "name": "Becoming Heroes 3: Green With Envy", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-69-becoming-heroes-3-green-with-envy/4000-128903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113658/", + "id": 113658, + "name": "A Death in the Family Part 4", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-47-a-death-in-the-family-p/4000-113658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113475/", + "id": 113475, + "name": "Arms And The Men", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-44-arms-and-the-men/4000-113475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78321/", + "id": 78321, + "name": "Rewards & Punishment", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss-6-rewards-punishment/4000-78321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78320/", + "id": 78320, + "name": "Errors in Judgment", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss-5-errors-in-judgment/4000-78320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77958/", + "id": 77958, + "name": "Autumn in New York", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-4-autumn-in-new-york/4000-77958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74732/", + "id": 74732, + "name": "Plasmids", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-25-plasmids/4000-74732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167479/", + "id": 167479, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-revelations-1-volume-2/4000-167479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117028/", + "id": 117028, + "name": "A Dish Served Cold!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-49-a-dish-served-cold/4000-117028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77963/", + "id": 77963, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life-3-untitled/4000-77963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77954/", + "id": 77954, + "name": "A Ruse By Any Other Name...", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-2-a-ruse-/4000-77954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382677/", + "id": 382677, + "name": "День вопросов и превращений", + "site_detail_url": "https://comicvine.gamespot.com/noviye-priklyucheniya-cheloveka-pauka-1-wikiissue/4000-382677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382136/", + "id": 382136, + "name": "Поиски работы", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-9-wikiissue/4000-382136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382135/", + "id": 382135, + "name": "Знакомьтесь, Громилы", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-10-wikiissue/4000-382135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298217/", + "id": 298217, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-6/4000-298217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297015/", + "id": 297015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-90/4000-297015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166062/", + "id": 166062, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-358/4000-166062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119845/", + "id": 119845, + "name": "Inside Marvel Films", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-132-inside-marvel-films/4000-119845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113657/", + "id": 113657, + "name": "A Death in the Family Part 3", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-46-a-death-in-the-family-p/4000-113657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113474/", + "id": 113474, + "name": "Cold Arms", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-43-cold-arms/4000-113474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99297/", + "id": 99297, + "name": "With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/thor-51-with-great-power/4000-99297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-88708/", + "id": 88708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-35/4000-88708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78319/", + "id": 78319, + "name": "Breakdown!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss-4-breakdown/4000-78319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78318/", + "id": 78318, + "name": "Memory Disorders", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss-3-memory-disorders/4000-78318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78213/", + "id": 78213, + "name": "Out Of Order", + "site_detail_url": "https://comicvine.gamespot.com/the-order-6-out-of-order/4000-78213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77957/", + "id": 77957, + "name": "Anything Goes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-3-anything-goes/4000-77957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74731/", + "id": 74731, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-24-ultimatum/4000-74731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126734/", + "id": 126734, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-get-kraven-1/4000-126734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105770/", + "id": 105770, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/alias-10-untitled/4000-105770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78229/", + "id": 78229, + "name": "Through A Mother's Eyes", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-48-through-a-mothers-eyes/4000-78229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77962/", + "id": 77962, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life-2-untitled/4000-77962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77953/", + "id": 77953, + "name": "What's New Pussy Cat?", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-1-whats-n/4000-77953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715652/", + "id": 715652, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-79/4000-715652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114264/", + "id": 114264, + "name": "The Collaborator", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-15-the-collaborator/4000-114264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382137/", + "id": 382137, + "name": "Разоблачение", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-8-wikiissue/4000-382137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300481/", + "id": 300481, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-8/4000-300481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298215/", + "id": 298215, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-5/4000-298215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297014/", + "id": 297014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-89/4000-297014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295360/", + "id": 295360, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-31/4000-295360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202340/", + "id": 202340, + "name": "The Last Titan", + "site_detail_url": "https://comicvine.gamespot.com/hulk-the-end-1-the-last-titan/4000-202340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163543/", + "id": 163543, + "name": "Sweet Charity", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-sweet-charity-1-sweet-charity/4000-163543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-162203/", + "id": 162203, + "name": "Super Human", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-1-super-human/4000-162203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114347/", + "id": 114347, + "name": "Let's Fall in Love", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-2-lets-fall-in-love/4000-114347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113473/", + "id": 113473, + "name": "A Strange Turn of Events", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-42-a-strange-turn-of-events/4000-113473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80610/", + "id": 80610, + "name": "A Death in the Family Part 2", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-45-a-death-in-the-family-p/4000-80610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78317/", + "id": 78317, + "name": "Paranoids and Nihilists", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss-2-paranoids-and-nihilists/4000-78317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78316/", + "id": 78316, + "name": "A Mad Calling", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss-1-a-mad-calling/4000-78316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78212/", + "id": 78212, + "name": "Blinded By Science", + "site_detail_url": "https://comicvine.gamespot.com/the-order-5-blinded-by-science/4000-78212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74730/", + "id": 74730, + "name": "Responsible", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-23-responsible/4000-74730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-559533/", + "id": 559533, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-marketplace-92/4000-559533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473381/", + "id": 473381, + "name": "Spider-Man, Storm, Cage vs. Smokescreen", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-storm-and-luke-cage-1-spider-man-storm-/4000-473381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136028/", + "id": 136028, + "name": "the Sound of the Arena", + "site_detail_url": "https://comicvine.gamespot.com/cable-105-the-sound-of-the-arena/4000-136028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131897/", + "id": 131897, + "name": "Book of the Ten Rings, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-55-book-of-the-ten-rings-part-3/4000-131897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114263/", + "id": 114263, + "name": "The Last Shoot", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-14-the-last-shoot/4000-114263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103526/", + "id": 103526, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/deadline-2-part-2/4000-103526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78228/", + "id": 78228, + "name": "Gods and Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-47-gods-and-men/4000-78228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78170/", + "id": 78170, + "name": "Enemy of the State II, Part 4 - 60 Minutes", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-44-enemy-of-the-state-ii-part-4-60-m/4000-78170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77961/", + "id": 77961, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life-1-untitled/4000-77961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69350/", + "id": 69350, + "name": "Spider-Man & Shang-Chi, Master of Kung Fu! Part Two of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-16-spider-man-shang-chi-ma/4000-69350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715650/", + "id": 715650, + "name": "Public Enemy Number One!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-78-public-enemy-/4000-715650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-938140/", + "id": 938140, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-comics-since-1945-1/4000-938140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448718/", + "id": 448718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-hombres-x-92/4000-448718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383452/", + "id": 383452, + "name": "Человек-Паук: Спецвыпуск", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-spetsvypusk-1--/4000-383452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382138/", + "id": 382138, + "name": "Час супергероя!", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-7-wikiissue/4000-382138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345690/", + "id": 345690, + "name": "El retorno de Felicia Hardy", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-9-el-retorno-de-/4000-345690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345689/", + "id": 345689, + "name": "Esperando al Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-8-esperando-al-d/4000-345689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345688/", + "id": 345688, + "name": "¿Donde diablos está \"nose\" Norton?", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-6-donde-diablos-/4000-345688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345687/", + "id": 345687, + "name": "¡Ha llegado la hora de la venganza!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-7-ha-llegado-la-/4000-345687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345686/", + "id": 345686, + "name": "Pistolas asesinas", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-5-pistolas-asesi/4000-345686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345684/", + "id": 345684, + "name": "¡Llega Bumerang!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-4-llega-bumerang/4000-345684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-338565/", + "id": 338565, + "name": "In Easy Company With The Kuberts", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-artist-20-in-easy-company-with-the-kube/4000-338565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298213/", + "id": 298213, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-4/4000-298213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297013/", + "id": 297013, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-88/4000-297013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295359/", + "id": 295359, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-30/4000-295359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238498/", + "id": 238498, + "name": "Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/mad-46-spiderman/4000-238498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186655/", + "id": 186655, + "name": "Peter Parker: Spider-Man: One Small Break", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-one-small-break-1-peter-pa/4000-186655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166061/", + "id": 166061, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-357/4000-166061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155977/", + "id": 155977, + "name": "By Fire Born, Part IV of V", + "site_detail_url": "https://comicvine.gamespot.com/thor-49-by-fire-born-part-iv-of-v/4000-155977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150219/", + "id": 150219, + "name": "Love Lisa", + "site_detail_url": "https://comicvine.gamespot.com/muties-4-love-lisa/4000-150219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150065/", + "id": 150065, + "name": "The Rocket's Red Glare", + "site_detail_url": "https://comicvine.gamespot.com/morlocks-2-the-rockets-red-glare/4000-150065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132453/", + "id": 132453, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/nuff-said-1-tpb/4000-132453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119843/", + "id": 119843, + "name": "Biggest Summer Preview Ever!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-130-biggest-summer-prev/4000-119843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114448/", + "id": 114448, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-super-special-1/4000-114448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114345/", + "id": 114345, + "name": "My Funny Valentine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue-1-my-funny-valentine/4000-114345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113472/", + "id": 113472, + "name": "Looking Back", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-41-looking-back/4000-113472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109984/", + "id": 109984, + "name": "The Secret Is Out", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-33-the-secret-is-out/4000-109984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105365/", + "id": 105365, + "name": "Another rooster in the henhouse (part 2 of 2)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-13-another-rooster-in-the-henhouse-part-2-o/4000-105365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84921/", + "id": 84921, + "name": "World Tour: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-18-world-tour-part-3/4000-84921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80609/", + "id": 80609, + "name": "A Death in the Family Part 1", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-44-a-death-in-the-family-p/4000-80609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80570/", + "id": 80570, + "name": "Getaways", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-32-getaways/4000-80570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78330/", + "id": 78330, + "name": "All Hell", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-126-all-hell/4000-78330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74729/", + "id": 74729, + "name": "Reflections Of. . .", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-22-reflections-of/4000-74729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119696/", + "id": 119696, + "name": "The Amazingly Convoluted, Emotionally Overwrought Adventures of the Megalomaniacal Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-megalomaniacal-spider-man-1-the-amazingly-conv/4000-119696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80588/", + "id": 80588, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-2/4000-80588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78227/", + "id": 78227, + "name": "Suddenly... the Scarlet Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-46-suddenly-the-scarlet-spider/4000-78227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69349/", + "id": 69349, + "name": "Spider-Man & Shang-Chi, Master of Kung Fu! Part One of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-15-spider-man-shang-chi-ma/4000-69349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68520/", + "id": 68520, + "name": "Fifteen Minutes of Shame Part 2", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-43-fifteen-minutes-of-sham/4000-68520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68519/", + "id": 68519, + "name": "Fifteen Minutes of Shame Part 1", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-42-fifteen-minutes-of-sham/4000-68519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114262/", + "id": 114262, + "name": "Double Shots", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-13-double-shots/4000-114262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-854237/", + "id": 854237, + "name": "Visionen von Frank Miller (Band 4): Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-sonderband-4-visionen-von-frank-mi/4000-854237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840083/", + "id": 840083, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-157/4000-840083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449471/", + "id": 449471, + "name": "Universe X Tomo 1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-la-era-de-apocalypse-1-universe-x-tomo-1/4000-449471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382139/", + "id": 382139, + "name": "Уроки жизни", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-6-wikiissue/4000-382139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345685/", + "id": 345685, + "name": "Trampa mortal", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-2-trampa-mortal/4000-345685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345683/", + "id": 345683, + "name": "Capa y Puñal", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-3-capa-y-punal/4000-345683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345682/", + "id": 345682, + "name": "¡Viejas alas de la muerte!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-1-viejas-alas-de/4000-345682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345681/", + "id": 345681, + "name": "Bajo la máscara de Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-coleccionable-volumen-1-0-bajo-la-mascar/4000-345681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298211/", + "id": 298211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-3/4000-298211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297012/", + "id": 297012, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-87/4000-297012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295358/", + "id": 295358, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-29/4000-295358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287644/", + "id": 287644, + "name": "Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-8-doctor-octopus/4000-287644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259444/", + "id": 259444, + "name": "Doctor Strange: A Separate Reality", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-a-separate-reality-1-doctor-strange/4000-259444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219735/", + "id": 219735, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-official-movie-adaptation-1/4000-219735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170031/", + "id": 170031, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-xl-15/4000-170031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130286/", + "id": 130286, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-418/4000-130286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113471/", + "id": 113471, + "name": "Sensitive Issues", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-40-sensitive-issues/4000-113471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105364/", + "id": 105364, + "name": "Another Rooster in the Henhouse, Pt. 1", + "site_detail_url": "https://comicvine.gamespot.com/exiles-12-another-rooster-in-the-henhouse-pt-1/4000-105364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74728/", + "id": 74728, + "name": "Hunted", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-21-hunted/4000-74728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74727/", + "id": 74727, + "name": "Live", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-20-live/4000-74727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66280/", + "id": 66280, + "name": "Out", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-32-out/4000-66280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453516/", + "id": 453516, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hinter-der-maske-von-spider-man-1/4000-453516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80587/", + "id": 80587, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-1/4000-80587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78226/", + "id": 78226, + "name": "Secret Lives!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-45-secret-lives/4000-78226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69348/", + "id": 69348, + "name": "Spider-Man & Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-14-spider-man-black-widow/4000-69348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114261/", + "id": 114261, + "name": "I was a Teenage Frog-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-12-i-was-a-teenage-frog-ma/4000-114261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715649/", + "id": 715649, + "name": "High Impact!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-77-high-impact/4000-715649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840082/", + "id": 840082, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-156/4000-840082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763470/", + "id": 763470, + "name": "Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/filmspecial-15-spiderman/4000-763470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382140/", + "id": 382140, + "name": "Суперсила", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-5-wikiissue/4000-382140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298209/", + "id": 298209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-2/4000-298209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297011/", + "id": 297011, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-86/4000-297011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295357/", + "id": 295357, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-28/4000-295357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142026/", + "id": 142026, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-team-up-1-volume-1/4000-142026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119841/", + "id": 119841, + "name": "Homer Smash!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-128-homer-smash/4000-119841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113470/", + "id": 113470, + "name": "Meanwhile...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-39-meanwhile/4000-113470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74606/", + "id": 74606, + "name": "A World Apart (Part 3 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-10-a-world-apart-part-3-of-3/4000-74606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68518/", + "id": 68518, + "name": "Mission: Uncomfortable", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-41-mission-uncomfortable/4000-68518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51630/", + "id": 51630, + "name": "Piece Of Work", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-19-piece-of-work/4000-51630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220108/", + "id": 220108, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-amazing-spider-man-1-tpb/4000-220108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114260/", + "id": 114260, + "name": "Open All Night", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-11-open-all-night/4000-114260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80586/", + "id": 80586, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-0/4000-80586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78225/", + "id": 78225, + "name": "Cry Uncle!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-44-cry-uncle/4000-78225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69347/", + "id": 69347, + "name": "Spider-Man & Doctor Strange Part Two of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-13-spider-man-doctor-stran/4000-69347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259630/", + "id": 259630, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spider-man-1-volume-one/4000-259630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256666/", + "id": 256666, + "name": "Marvel Mangaverse, Volume One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-volume-one-1-marvel-mangaverse-v/4000-256666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-745397/", + "id": 745397, + "name": "Senza limiti", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-il-punitore-1-senza-limiti/4000-745397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382141/", + "id": 382141, + "name": "Кумир", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-4-wikiissue/4000-382141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347588/", + "id": 347588, + "name": "Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-coming-home-1-coming-home/4000-347588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300477/", + "id": 300477, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-4/4000-300477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298208/", + "id": 298208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-1/4000-298208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297349/", + "id": 297349, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-12/4000-297349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297010/", + "id": 297010, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-85/4000-297010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295356/", + "id": 295356, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-27/4000-295356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287643/", + "id": 287643, + "name": "Der große Kampf", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-7-der-groe-kampf/4000-287643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265069/", + "id": 265069, + "name": "The World Devourer... Galactus!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-85-the-world-devourer-galactus/4000-265069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154663/", + "id": 154663, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover-1-volume-1/4000-154663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107785/", + "id": 107785, + "name": "Big", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-2-big/4000-107785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105362/", + "id": 105362, + "name": "A World Apart (part 2 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-9-a-world-apart-part-2-of-3/4000-105362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77495/", + "id": 77495, + "name": "Prisoners: A Love Story", + "site_detail_url": "https://comicvine.gamespot.com/avengers-51-prisoners-a-love-story/4000-77495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68517/", + "id": 68517, + "name": "Codename: John Hancock", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-40-codename-john-hancock/4000-68517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51629/", + "id": 51629, + "name": "The Cycle", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-18-the-cycle/4000-51629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468581/", + "id": 468581, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-2-volume-2/4000-468581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468568/", + "id": 468568, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-1-volume-1/4000-468568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158826/", + "id": 158826, + "name": "Spider Scroll", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-spider-man-1-spider-scroll/4000-158826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128972/", + "id": 128972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-eternity-twilight-1/4000-128972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78224/", + "id": 78224, + "name": "A Separate Peace", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-43-a-separate-peace/4000-78224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78223/", + "id": 78223, + "name": "Mother's Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-42-mothers-day/4000-78223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69346/", + "id": 69346, + "name": "Spider-Man & Doctor Strange Part One of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-12-spider-man-and-doctor-s/4000-69346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197123/", + "id": 197123, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-firsts-1/4000-197123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114259/", + "id": 114259, + "name": "Ray of Light", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-10-ray-of-light/4000-114259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264562/", + "id": 264562, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-howard-the-duck-1/4000-264562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382142/", + "id": 382142, + "name": "Боль", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-3-wikiissue/4000-382142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300476/", + "id": 300476, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-3/4000-300476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295355/", + "id": 295355, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-26/4000-295355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186381/", + "id": 186381, + "name": "Avengers/Defenders War", + "site_detail_url": "https://comicvine.gamespot.com/avengersdefenders-war-1-avengersdefenders-war/4000-186381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148099/", + "id": 148099, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/mad-about-super-heroes-1-vol-1/4000-148099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119855/", + "id": 119855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-126/4000-119855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105361/", + "id": 105361, + "name": "A World Apart (part 1 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/exiles-8-a-world-apart-part-1-of-3/4000-105361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68516/", + "id": 68516, + "name": "Operation: Octopus", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-39-operation-octopus/4000-68516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51628/", + "id": 51628, + "name": "Taking Advantage", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-17-taking-advantage/4000-51628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347818/", + "id": 347818, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-army-of-one-1-volume-2/4000-347818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145258/", + "id": 145258, + "name": "Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-heralds-3-chapter-three/4000-145258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78222/", + "id": 78222, + "name": "Funeral For A Fiend", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-41-funeral-for-a-fiend/4000-78222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69345/", + "id": 69345, + "name": "Spider-Man & X-Men: Peter Parker's Day Off", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-11-spider-man-x-men-peter-/4000-69345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68515/", + "id": 68515, + "name": "Make Mime Marvel!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-38-make-mime-marvel/4000-68515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114258/", + "id": 114258, + "name": "Gentlemen's Agreement: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-9-gentlemens-agreement-par/4000-114258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382143/", + "id": 382143, + "name": "Бессилие. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-2-2/4000-382143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-304113/", + "id": 304113, + "name": "Paperboy Blues", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-mini-marvels-starring-spidey-1-paperboy/4000-304113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295354/", + "id": 295354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-25/4000-295354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287642/", + "id": 287642, + "name": "Entdeckungen", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-6-entdeckungen/4000-287642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192520/", + "id": 192520, + "name": "The Life and Death of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-life-and-death-of-captain-marvel-1-the-life-an/4000-192520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142792/", + "id": 142792, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-ant-man-1-volume-1/4000-142792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141113/", + "id": 141113, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-5-volume-5/4000-141113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119844/", + "id": 119844, + "name": "Giant 2002 Preview", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-125-giant-2002-preview/4000-119844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113469/", + "id": 113469, + "name": "The Conversation", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-38-the-conversation/4000-113469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108330/", + "id": 108330, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-millennial-visions-1/4000-108330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108261/", + "id": 108261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-millennial-visions-1/4000-108261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66249/", + "id": 66249, + "name": "Silent Night, Silent Morning; Keep In Mind; To The Core; Relic; A Moment Of Silence; Stars And Stripes Forever", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-50-silent-night-silent-morning-kee/4000-66249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52121/", + "id": 52121, + "name": "Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-50-anniversary/4000-52121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51627/", + "id": 51627, + "name": "Kraven The Hunter", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-16-kraven-the-hunter/4000-51627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269240/", + "id": 269240, + "name": "It's Good To Be King", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-2001-1-its-good-to-be-king/4000-269240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145257/", + "id": 145257, + "name": "Chapter Two", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-heralds-2-chapter-two/4000-145257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116509/", + "id": 116509, + "name": "A Death In the Family!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-40-a-death-in-the-family/4000-116509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55333/", + "id": 55333, + "name": "Spider-Man & The Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-10-spider-man-the-man-thin/4000-55333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398223/", + "id": 398223, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hors-serie-5/4000-398223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114257/", + "id": 114257, + "name": "Gentlemen's Agreement: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-8-gentlemens-agreement-par/4000-114257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411771/", + "id": 411771, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fox-kids-mix-200204/4000-411771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715648/", + "id": 715648, + "name": "Hunting Season", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-75-hunting-seaso/4000-715648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411528/", + "id": 411528, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fox-kids-mix-200201/4000-411528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415948/", + "id": 415948, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-ultimate-marvel-spectacular-1/4000-415948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382104/", + "id": 382104, + "name": "Бессилие. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/chelovek-pauk-1-1/4000-382104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299256/", + "id": 299256, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-54/4000-299256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298221/", + "id": 298221, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-9/4000-298221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298220/", + "id": 298220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-8/4000-298220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297006/", + "id": 297006, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-81/4000-297006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295353/", + "id": 295353, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-24/4000-295353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289640/", + "id": 289640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-16/4000-289640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289629/", + "id": 289629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-5/4000-289629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289628/", + "id": 289628, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-4/4000-289628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289627/", + "id": 289627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-3/4000-289627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251974/", + "id": 251974, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-gambit-80/4000-251974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239561/", + "id": 239561, + "name": "The Art of Lorenzo Sperlonga", + "site_detail_url": "https://comicvine.gamespot.com/art-fantastix-11-the-art-of-lorenzo-sperlonga/4000-239561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223688/", + "id": 223688, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dcmarvel-crossover-classics-3/4000-223688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201347/", + "id": 201347, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-spesial-album-1/4000-201347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187399/", + "id": 187399, + "name": "Victor Von Doom, Emperor of Earth!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172625/", + "id": 172625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-12/4000-172625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135888/", + "id": 135888, + "name": "Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-1-captain-britain/4000-135888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113468/", + "id": 113468, + "name": "Interlude", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-37-interlude/4000-113468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68514/", + "id": 68514, + "name": "Snow Day", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-37-snow-day/4000-68514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52120/", + "id": 52120, + "name": "Dark Victory", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-49-dark-victory/4000-52120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51626/", + "id": 51626, + "name": "Confrontations", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-15-confrontations/4000-51626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414968/", + "id": 414968, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-1-volume-1/4000-414968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222109/", + "id": 222109, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-justice-like-lightning-1-tpb/4000-222109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116508/", + "id": 116508, + "name": "Duty Calls!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-39-duty-calls/4000-116508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114070/", + "id": 114070, + "name": "Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-heralds-1-chapter-one/4000-114070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68513/", + "id": 68513, + "name": "The Big Score", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-36-the-big-score/4000-68513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55332/", + "id": 55332, + "name": "Spider-Man & The Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-9-spider-man-the-fantastic/4000-55332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-405025/", + "id": 405025, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bluntman-chronic-trade-paperback-1/4000-405025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114256/", + "id": 114256, + "name": "Gentlemen's Agreement: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-7-gentlemens-agreement-par/4000-114256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225119/", + "id": 225119, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-123/4000-225119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297005/", + "id": 297005, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-80/4000-297005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295352/", + "id": 295352, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-23/4000-295352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287641/", + "id": 287641, + "name": "Die Vollstrecker", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-5-die-vollstrecker/4000-287641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236772/", + "id": 236772, + "name": "Learning Curve", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-learning-curve-1-learning-curv/4000-236772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221330/", + "id": 221330, + "name": "#1", + "site_detail_url": "https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-10-1/4000-221330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139721/", + "id": 139721, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/essential-doctor-strange-1-volume-one/4000-139721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133637/", + "id": 133637, + "name": "#9-6", + "site_detail_url": "https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-5-9-6/4000-133637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133635/", + "id": 133635, + "name": "#17-14", + "site_detail_url": "https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-3-17-14/4000-133635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133634/", + "id": 133634, + "name": "#21-18", + "site_detail_url": "https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-2-21-18/4000-133634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130133/", + "id": 130133, + "name": "#25-22", + "site_detail_url": "https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-1-25-22/4000-130133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126724/", + "id": 126724, + "name": "Wolverine: Origin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-must-haves-1-wolverine-origin/4000-126724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113467/", + "id": 113467, + "name": "\"The Black Issue\"", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-36-the-black-issue/4000-113467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69357/", + "id": 69357, + "name": "Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-14-doctor-octopus/4000-69357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-53498/", + "id": 53498, + "name": "Head to Head", + "site_detail_url": "https://comicvine.gamespot.com/defenders-10-head-to-head/4000-53498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116507/", + "id": 116507, + "name": "A New Lease on Life", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-38-a-new-lease-on-life/4000-116507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114255/", + "id": 114255, + "name": "Cornucopia", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-6-cornucopia/4000-114255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69356/", + "id": 69356, + "name": "Confessions", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-13-confessions/4000-69356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55331/", + "id": 55331, + "name": "Spider-Man & The Punisher & Daredevil Part Two of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-8-spider-man-the-punisher-/4000-55331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715647/", + "id": 715647, + "name": "Trouble in the 'Hood", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-74-trouble-in-th/4000-715647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670285/", + "id": 670285, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-1-tpb/4000-670285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362929/", + "id": 362929, + "name": "Spider-Man / Marrow", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-28-spider-man-marrow/4000-362929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299012/", + "id": 299012, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-95/4000-299012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297004/", + "id": 297004, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-79/4000-297004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295351/", + "id": 295351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-22/4000-295351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291732/", + "id": 291732, + "name": "Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-34-marvels/4000-291732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119842/", + "id": 119842, + "name": "Fathom's Back", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-122-fathoms-back/4000-119842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113466/", + "id": 113466, + "name": "Coming Out", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-35-coming-out/4000-113466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78235/", + "id": 78235, + "name": "Beyond Redemption!", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-56-beyond-redemption/4000-78235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69372/", + "id": 69372, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/universe-x-x/4000-69372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68512/", + "id": 68512, + "name": "Heroes Don't Cry", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-35-heroes-dont-cry/4000-68512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-53497/", + "id": 53497, + "name": "While You Were Out...", + "site_detail_url": "https://comicvine.gamespot.com/defenders-9-while-you-were-out/4000-53497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185458/", + "id": 185458, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-sentry-1-tpb/4000-185458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116505/", + "id": 116505, + "name": "Betrayed!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-37-betrayed/4000-116505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114254/", + "id": 114254, + "name": "Rhinoplasty", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-5-rhinoplasty/4000-114254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68511/", + "id": 68511, + "name": "If Thine Eyes Offend Thee...", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-34-if-thine-eyes-offend-th/4000-68511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66269/", + "id": 66269, + "name": "Playing to the Camera Part Two: A Fellow of Infinite Jest", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-21-playing-to-the-camera-part-two-a-fell/4000-66269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55330/", + "id": 55330, + "name": "Spider-Man & The Punisher & Daredevil Part One of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-7-spider-man-the-punisher-/4000-55330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840048/", + "id": 840048, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-149/4000-840048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309318/", + "id": 309318, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-15/4000-309318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297003/", + "id": 297003, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-78/4000-297003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295350/", + "id": 295350, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-21/4000-295350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287640/", + "id": 287640, + "name": "Erste Heldentaten", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-4-erste-heldentaten/4000-287640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275205/", + "id": 275205, + "name": "X-Men Revolution 11", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-78-x-men-revolution-11/4000-275205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113465/", + "id": 113465, + "name": "Meltdown", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-34-meltdown/4000-113465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78236/", + "id": 78236, + "name": "Storm Clouds Gathering", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-57-storm-clouds-gathering/4000-78236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69355/", + "id": 69355, + "name": "Battle Royal", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-12-battle-royal/4000-69355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121746/", + "id": 121746, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-120/4000-121746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116504/", + "id": 116504, + "name": "Getting Involved", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-36-getting-involved/4000-116504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68510/", + "id": 68510, + "name": "Maybe Next Year", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-33-maybe-next-year/4000-68510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66268/", + "id": 66268, + "name": "Playing to the Camera Part One: Redsuit Lawsuit", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-20-playing-to-the-camera-part-one-redsui/4000-66268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55329/", + "id": 55329, + "name": "Spider-Man & The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-6-spider-man-the-punisher/4000-55329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715646/", + "id": 715646, + "name": "Castaway", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-73-castaway/4000-715646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300285/", + "id": 300285, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-9/4000-300285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324772/", + "id": 324772, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-28/4000-324772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309317/", + "id": 309317, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-14/4000-309317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297002/", + "id": 297002, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-77/4000-297002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295349/", + "id": 295349, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-20/4000-295349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275201/", + "id": 275201, + "name": "X-Men Revolution 9", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-76-x-men-revolution-9/4000-275201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113464/", + "id": 113464, + "name": "All Fall Down", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-33-all-fall-down/4000-113464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69371/", + "id": 69371, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-12/4000-69371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69354/", + "id": 69354, + "name": "Discovery", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-11-discovery/4000-69354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50744/", + "id": 50744, + "name": "Sins of the Father", + "site_detail_url": "https://comicvine.gamespot.com/exiles-2-sins-of-the-father/4000-50744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108758/", + "id": 108758, + "name": "Line of Fire", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-35-line-of-fire/4000-108758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68509/", + "id": 68509, + "name": "Never Forever", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-32-never-forever/4000-68509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68398/", + "id": 68398, + "name": "Does Whatever a Spider Can", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-2-does-whatever-a-spider-can/4000-68398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55328/", + "id": 55328, + "name": "Spider-Man & Iron Man Part Two of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-5-spider-man-iron-man-part/4000-55328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51616/", + "id": 51616, + "name": "The Coming of the Thousand: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-3-the-coming-of-the-thousa/4000-51616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287639/", + "id": 287639, + "name": "Lektionen fürs Leben", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-3-lektionen-furs-leben/4000-287639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259582/", + "id": 259582, + "name": "Fantastic Four: Flesh and Stone", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-flesh-and-stone-1-fantastic-four-fl/4000-259582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110557/", + "id": 110557, + "name": "Marvel: The Characters And Their Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-characters-and-their-universe-1-marvel-/4000-110557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715645/", + "id": 715645, + "name": "Long Live the King!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-72-long-live-the/4000-715645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448691/", + "id": 448691, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-hombres-x-67/4000-448691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-353416/", + "id": 353416, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/daredevilspider-man-1-tpb/4000-353416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309316/", + "id": 309316, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-13/4000-309316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297001/", + "id": 297001, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-76/4000-297001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295348/", + "id": 295348, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-19/4000-295348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280477/", + "id": 280477, + "name": "Spider-Man Visionaries: John Romita", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-john-romita-1-spider-man-vi/4000-280477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275189/", + "id": 275189, + "name": "X-Men Revolution 8", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-75-x-men-revolution-8/4000-275189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235815/", + "id": 235815, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/capcom-design-works-1/4000-235815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119839/", + "id": 119839, + "name": "Ultimate First Look", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-119-ultimate-first-look/4000-119839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113463/", + "id": 113463, + "name": "The Long, Dark Pizza of the Soul", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-32-the-long-dark-pizza-of-t/4000-113463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69370/", + "id": 69370, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-11/4000-69370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69353/", + "id": 69353, + "name": "The Worst Thing", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-10-the-worst-thing/4000-69353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68508/", + "id": 68508, + "name": "One Small Break", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-31-one-small-break/4000-68508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55327/", + "id": 55327, + "name": "Spider-Man & Iron Man Part One of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-4-spider-man-iron-man-part/4000-55327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51758/", + "id": 51758, + "name": "Overkill", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-34-overkill/4000-51758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51615/", + "id": 51615, + "name": "The Coming of the Thousand: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-2-the-coming-of-the-thousa/4000-51615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436891/", + "id": 436891, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-138/4000-436891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297000/", + "id": 297000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-75/4000-297000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295347/", + "id": 295347, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-18/4000-295347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225118/", + "id": 225118, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-118/4000-225118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113462/", + "id": 113462, + "name": "Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-31-coming-home/4000-113462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69369/", + "id": 69369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-10/4000-69369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69352/", + "id": 69352, + "name": "Meet The Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-9-meet-the-enforcers/4000-69352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50801/", + "id": 50801, + "name": "No More Tomorrows", + "site_detail_url": "https://comicvine.gamespot.com/avengers-42-no-more-tomorrows/4000-50801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68507/", + "id": 68507, + "name": "Three Hundred", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-30-three-hundred/4000-68507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55326/", + "id": 55326, + "name": "Spider-Man & Hulk Part Two of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-3-spider-man-hulk-part-two/4000-55326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51757/", + "id": 51757, + "name": "Too Many Spiders", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-33-too-many-spiders/4000-51757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715644/", + "id": 715644, + "name": "The Terrible Toymaker!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-71-the-terrible-/4000-715644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436890/", + "id": 436890, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-137/4000-436890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309314/", + "id": 309314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-11/4000-309314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296999/", + "id": 296999, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-74/4000-296999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295346/", + "id": 295346, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-17/4000-295346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287638/", + "id": 287638, + "name": "Wachstumsprobleme", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-2-wachstumsprobleme/4000-287638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269228/", + "id": 269228, + "name": "The Key", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-annual-2001-1-the-key/4000-269228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264956/", + "id": 264956, + "name": "Legion Of The Damned!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-74-legion-of-the-damned/4000-264956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233951/", + "id": 233951, + "name": "Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-dogs-of-war-1-dogs-of-war/4000-233951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186654/", + "id": 186654, + "name": "Peter Parker: Spider-Man: A Day in the Life", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-a-day-in-the-life-1-peter-/4000-186654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160840/", + "id": 160840, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-117/4000-160840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113461/", + "id": 113461, + "name": "Transformations, Literal & Otherwise", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-30-transformations-literal-/4000-113461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69368/", + "id": 69368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-9/4000-69368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69351/", + "id": 69351, + "name": "Working Stiff", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-8-working-stiff/4000-69351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49449/", + "id": 49449, + "name": "The End", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-32-the-end/4000-49449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160826/", + "id": 160826, + "name": "A Taste Of Infinity", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-lifeline-3-a-taste-of-infinity/4000-160826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143313/", + "id": 143313, + "name": "Passages", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-2001-1-passages/4000-143313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113460/", + "id": 113460, + "name": "Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-29-mary-jane/4000-113460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68506/", + "id": 68506, + "name": "Destinations", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-29-destinations/4000-68506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-55325/", + "id": 55325, + "name": "Spider-Man & Hulk Part One of Two", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-2-spider-man-hulk-part-one/4000-55325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51756/", + "id": 51756, + "name": "The Steel Spider", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-32-the-steel-spider/4000-51756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51614/", + "id": 51614, + "name": "The Coming of the Thousand", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web-1-the-coming-of-the-thousa/4000-51614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-903346/", + "id": 903346, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-buyers-guide-1436/4000-903346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362932/", + "id": 362932, + "name": "The Punisher / Painkiller Jane / Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-25-the-punisher-painkiller-jan/4000-362932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309313/", + "id": 309313, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-10/4000-309313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296998/", + "id": 296998, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-73/4000-296998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275187/", + "id": 275187, + "name": "X-Men Revolution 6", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-73-x-men-revolution-6/4000-275187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119836/", + "id": 119836, + "name": "JLA/Avengers", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-116-jlaavengers/4000-119836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69367/", + "id": 69367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-8/4000-69367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66264/", + "id": 66264, + "name": "Wake Up Part One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-16-wake-up-part-one/4000-66264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52112/", + "id": 52112, + "name": "Marooned", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-41-marooned/4000-52112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51625/", + "id": 51625, + "name": "Secret Identity", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-7-secret-identity/4000-51625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292852/", + "id": 292852, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-4/4000-292852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160825/", + "id": 160825, + "name": "Snakes In The Grass", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-lifeline-2-snakes-in-the-grass/4000-160825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160824/", + "id": 160824, + "name": "Pieces Of Fate", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-lifeline-1-pieces-of-fate/4000-160824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113552/", + "id": 113552, + "name": "Spider-Man & Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-1-spider-man-wolverine/4000-113552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113459/", + "id": 113459, + "name": "Distractions", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-28-distractions/4000-113459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68505/", + "id": 68505, + "name": "Field of Dream", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-28-field-of-dream/4000-68505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300280/", + "id": 300280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-4/4000-300280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715639/", + "id": 715639, + "name": "Life Begins at Eighty!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-70-life-begins-a/4000-715639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309312/", + "id": 309312, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-9/4000-309312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296997/", + "id": 296997, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-72/4000-296997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295345/", + "id": 295345, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-15/4000-295345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287637/", + "id": 287637, + "name": "Ohnmächtig", + "site_detail_url": "https://comicvine.gamespot.com/der-ultimative-spider-man-1-ohnmachtig/4000-287637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201510/", + "id": 201510, + "name": "Wolverine: Son of Canada", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-son-of-canada-1-wolverine-son-of-canada/4000-201510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187369/", + "id": 187369, + "name": "When Strike These Sentinels!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169134/", + "id": 169134, + "name": "Things Get Worse", + "site_detail_url": "https://comicvine.gamespot.com/daredevilspider-man-4-things-get-worse/4000-169134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166058/", + "id": 166058, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-354/4000-166058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150313/", + "id": 150313, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-3-volume-3/4000-150313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125067/", + "id": 125067, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-omnibus-1/4000-125067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69366/", + "id": 69366, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-7/4000-69366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51624/", + "id": 51624, + "name": "Big Time Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-6-big-time-super-hero/4000-51624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451613/", + "id": 451613, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-100/4000-451613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113458/", + "id": 113458, + "name": "The Stray", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-27-the-stray/4000-113458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68504/", + "id": 68504, + "name": "Getting Ahead", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-27-getting-ahead/4000-68504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419325/", + "id": 419325, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-2001-02/4000-419325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300104/", + "id": 300104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-50/4000-300104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299004/", + "id": 299004, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-87/4000-299004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296996/", + "id": 296996, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-71/4000-296996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275183/", + "id": 275183, + "name": "X-Men Revolution 4", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-71-x-men-revolution-4/4000-275183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254407/", + "id": 254407, + "name": "Earth X", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-1-earth-x/4000-254407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169135/", + "id": 169135, + "name": "Bad Boys Don't Cry", + "site_detail_url": "https://comicvine.gamespot.com/daredevilspider-man-3-bad-boys-dont-cry/4000-169135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159170/", + "id": 159170, + "name": "Qeelocke's Really Big New York Adventure!", + "site_detail_url": "https://comicvine.gamespot.com/gen-13fantastic-four-1-qeelockes-really-big-new-yo/4000-159170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141614/", + "id": 141614, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/essential-fantastic-four-3-volume-3/4000-141614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132393/", + "id": 132393, + "name": "False Truths!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mysterio-manifesto-3-false-truths/4000-132393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51623/", + "id": 51623, + "name": "Life Lessons", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-5-life-lessons/4000-51623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122439/", + "id": 122439, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/sentryspider-man-1/4000-122439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122438/", + "id": 122438, + "name": "The Truth", + "site_detail_url": "https://comicvine.gamespot.com/sentrythe-void-1-the-truth/4000-122438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122435/", + "id": 122435, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/sentryhulk-1/4000-122435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113457/", + "id": 113457, + "name": "The Mask", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-26-the-mask/4000-113457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68503/", + "id": 68503, + "name": "Police Story", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-26-police-story/4000-68503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715638/", + "id": 715638, + "name": "Planet of the Vampires", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-69-planet-of-the/4000-715638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828574/", + "id": 828574, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-1/4000-828574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309309/", + "id": 309309, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-7/4000-309309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296995/", + "id": 296995, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-70/4000-296995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295344/", + "id": 295344, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-13/4000-295344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292850/", + "id": 292850, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-2/4000-292850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220425/", + "id": 220425, + "name": "Spider-Man: The Ultimate Guide", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-ultimate-guidethe-amazing-spider-ma/4000-220425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169136/", + "id": 169136, + "name": "The Sting", + "site_detail_url": "https://comicvine.gamespot.com/daredevilspider-man-2-the-sting/4000-169136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134197/", + "id": 134197, + "name": "Camelot Lost", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-1-camelot-lost/4000-134197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132392/", + "id": 132392, + "name": "Even the Dead can lie!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mysterio-manifesto-2-even-the-dead-/4000-132392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123573/", + "id": 123573, + "name": "Bad to the Bone", + "site_detail_url": "https://comicvine.gamespot.com/spideymarrow-1-bad-to-the-bone/4000-123573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51622/", + "id": 51622, + "name": "With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-4-with-great-power/4000-51622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132391/", + "id": 132391, + "name": "Jack's Back", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mysterio-manifesto-1-jacks-back/4000-132391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113456/", + "id": 113456, + "name": "Darkness Calling", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-25-darkness-calling/4000-113456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68502/", + "id": 68502, + "name": "Trick of the Light", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-25-trick-of-the-light/4000-68502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68437/", + "id": 68437, + "name": "The Betrayal", + "site_detail_url": "https://comicvine.gamespot.com/sentry-5-the-betrayal/4000-68437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49404/", + "id": 49404, + "name": "Unfinished Business", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-28-unfinished-business/4000-49404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148445/", + "id": 148445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-morgan-conquest-1/4000-148445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840039/", + "id": 840039, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-140/4000-840039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359027/", + "id": 359027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-15/4000-359027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-353155/", + "id": 353155, + "name": "... y los hombres le llamaran ... ¡el Buey!", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-daredevil-3-y-los-hombres-le-lla/4000-353155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344393/", + "id": 344393, + "name": "¡... ser un Vengador", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-especiales-1-ser-un-venga/4000-344393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344392/", + "id": 344392, + "name": "¡El duende vive!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-especiales-2-el-duende-vi/4000-344392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344391/", + "id": 344391, + "name": "¡Los padres de Peter Parker!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-especiales-3-los-padres-d/4000-344391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296994/", + "id": 296994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-69/4000-296994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296993/", + "id": 296993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-68/4000-296993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295343/", + "id": 295343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-12/4000-295343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287552/", + "id": 287552, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-11/4000-287552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275178/", + "id": 275178, + "name": "X-Men Revolution 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-69-x-men-revolution-2/4000-275178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236773/", + "id": 236773, + "name": "Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-double-trouble-1-double-troubl/4000-236773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236771/", + "id": 236771, + "name": "Power and Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-power-and-responsibility-1-pow/4000-236771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181501/", + "id": 181501, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-clear-and-present-dangers-1/4000-181501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169132/", + "id": 169132, + "name": "Unusual Suspects", + "site_detail_url": "https://comicvine.gamespot.com/daredevilspider-man-1-unusual-suspects/4000-169132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141112/", + "id": 141112, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man-4-volume-4/4000-141112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122495/", + "id": 122495, + "name": "Whatever The Cost", + "site_detail_url": "https://comicvine.gamespot.com/maximum-security-3-whatever-the-cost/4000-122495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69363/", + "id": 69363, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-4/4000-69363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51621/", + "id": 51621, + "name": "Wannabe", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-3-wannabe/4000-51621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47464/", + "id": 47464, + "name": "There's No Business...", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-37-theres-no-business/4000-47464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269239/", + "id": 269239, + "name": "No Sleep 'Til Brooklyn!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-annual-2000-1-no-sleep-til/4000-269239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144664/", + "id": 144664, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-spidey-1/4000-144664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124157/", + "id": 124157, + "name": "Surrender to the Dark!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin-3-surrender/4000-124157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113455/", + "id": 113455, + "name": "Distinguished Gentleman from New York Part Three: Failure is Not an Option", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-24-distinguished-gentleman-/4000-113455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68436/", + "id": 68436, + "name": "The Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/sentry-4-the-conspiracy/4000-68436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51224/", + "id": 51224, + "name": "Right Underneath It", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-157-right-underneath-it/4000-51224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49403/", + "id": 49403, + "name": "Endgame", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-27-endgame/4000-49403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715637/", + "id": 715637, + "name": "The Goblin Who Stole Christmas", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-68-the-goblin-wh/4000-715637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385753/", + "id": 385753, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-34/4000-385753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359026/", + "id": 359026, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-14/4000-359026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311239/", + "id": 311239, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/generacion-mutante-8/4000-311239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300101/", + "id": 300101, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-47/4000-300101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296992/", + "id": 296992, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-67/4000-296992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295342/", + "id": 295342, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-11/4000-295342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193680/", + "id": 193680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-111/4000-193680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122425/", + "id": 122425, + "name": "Illegal Aliens", + "site_detail_url": "https://comicvine.gamespot.com/maximum-security-1-illegal-aliens/4000-122425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68501/", + "id": 68501, + "name": "Warning Signs", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-24-warning-signs/4000-68501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51620/", + "id": 51620, + "name": "Growing Pains", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-2-growing-pains/4000-51620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47463/", + "id": 47463, + "name": "Day of the Dark Sun", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-36-day-of-the-dark-sun/4000-47463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287611/", + "id": 287611, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-sensationelle-spider-man-29/4000-287611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124045/", + "id": 124045, + "name": "Lives in the Balance!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin-2-lives-in-/4000-124045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113454/", + "id": 113454, + "name": "How Many Times?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-23-how-many-times/4000-113454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68435/", + "id": 68435, + "name": "The Photograph", + "site_detail_url": "https://comicvine.gamespot.com/sentry-3-the-photograph/4000-68435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51223/", + "id": 51223, + "name": "Going Underground", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-156-going-underground/4000-51223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49402/", + "id": 49402, + "name": "Passages", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-26-passages/4000-49402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47794/", + "id": 47794, + "name": "From the Abyss...", + "site_detail_url": "https://comicvine.gamespot.com/darkdevil-1-from-the-abyss/4000-47794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715636/", + "id": 715636, + "name": "Titanic!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-67-titanic/4000-715636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359025/", + "id": 359025, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-13/4000-359025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311238/", + "id": 311238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/generacion-mutante-7/4000-311238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296991/", + "id": 296991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-66/4000-296991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295341/", + "id": 295341, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-10/4000-295341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193679/", + "id": 193679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-110/4000-193679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174451/", + "id": 174451, + "name": "Twilight Years", + "site_detail_url": "https://comicvine.gamespot.com/the-jack-kirby-collector-30-twilight-years/4000-174451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133206/", + "id": 133206, + "name": "Murder By Spider", + "site_detail_url": "https://comicvine.gamespot.com/backpack-marvels-spider-man-1-murder-by-spider/4000-133206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69361/", + "id": 69361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-2/4000-69361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68500/", + "id": 68500, + "name": "Read 'em and Weep", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-23-read-em-and-weep/4000-68500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66910/", + "id": 66910, + "name": "Follow The Leader", + "site_detail_url": "https://comicvine.gamespot.com/gambit-22-follow-the-leader/4000-66910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195914/", + "id": 195914, + "name": "Deja Vu All Over Again", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-and-destiny-3-deja-vu-all-over-ag/4000-195914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124017/", + "id": 124017, + "name": "Madness Takes Its Toll!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin-1-madness-t/4000-124017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113453/", + "id": 113453, + "name": "The Distinguished Gentlemen from New York", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-22-the-distinguished-gentle/4000-113453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68499/", + "id": 68499, + "name": "Days of Our Lives", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-22-days-of-our-lives/4000-68499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68434/", + "id": 68434, + "name": "Act 2: The Unicorn", + "site_detail_url": "https://comicvine.gamespot.com/sentry-2-act-2-the-unicorn/4000-68434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715475/", + "id": 715475, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-66/4000-715475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296990/", + "id": 296990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-65/4000-296990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359024/", + "id": 359024, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-12/4000-359024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295340/", + "id": 295340, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-9/4000-295340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275175/", + "id": 275175, + "name": "X-Men Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-66-x-men-universe/4000-275175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273382/", + "id": 273382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-3/4000-273382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273380/", + "id": 273380, + "name": "Pomp & Pagentry", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-1-pomp-pagentry/4000-273380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-258497/", + "id": 258497, + "name": "L'Uomo Ragno: Nascita di un Eroe", + "site_detail_url": "https://comicvine.gamespot.com/oscar-bestsellers-1100-luomo-ragno-nascita-di-un-e/4000-258497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69360/", + "id": 69360, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-1/4000-69360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51619/", + "id": 51619, + "name": "Powerless", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-1-powerless/4000-51619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195913/", + "id": 195913, + "name": "The Camera Doesn't Lie", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-and-destiny-2-the-camera-doesnt-l/4000-195913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113452/", + "id": 113452, + "name": "Slayers to the Left of Me...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-21-slayers-to-the-left-of-m/4000-113452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68498/", + "id": 68498, + "name": "A Day in the Life", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-21-a-day-in-the-life/4000-68498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49400/", + "id": 49400, + "name": "Dragonfist", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-24-dragonfist/4000-49400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715474/", + "id": 715474, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-65/4000-715474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296989/", + "id": 296989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-64/4000-296989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436881/", + "id": 436881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-128/4000-436881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324778/", + "id": 324778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-22/4000-324778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311235/", + "id": 311235, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/generacion-mutante-5/4000-311235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300271/", + "id": 300271, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-44/4000-300271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295339/", + "id": 295339, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-8/4000-295339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119834/", + "id": 119834, + "name": "Get Smart!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-108-get-smart/4000-119834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195911/", + "id": 195911, + "name": "Focus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-and-destiny-1-focus/4000-195911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113451/", + "id": 113451, + "name": "Set Up!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-20-set-up/4000-113451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70476/", + "id": 70476, + "name": "Dark Destiny", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-hidden-years-9-dark-destiny/4000-70476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68497/", + "id": 68497, + "name": "The Best Medicine", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-20-the-best-medicine/4000-68497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715460/", + "id": 715460, + "name": "Birth of the Man-Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-64-birth-of-the-/4000-715460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715234/", + "id": 715234, + "name": "Overload!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-63-overload/4000-715234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311233/", + "id": 311233, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/generacion-mutante-4/4000-311233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309302/", + "id": 309302, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/super-herois-premium-x-men-1-x-men/4000-309302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296988/", + "id": 296988, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-63/4000-296988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295338/", + "id": 295338, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-7/4000-295338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291726/", + "id": 291726, + "name": "Die Fantastischen Vier III", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-28-die-fantastischen-vier-iii/4000-291726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275173/", + "id": 275173, + "name": "X-Men Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-64-x-men-universe/4000-275173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146295/", + "id": 146295, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-346/4000-146295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113450/", + "id": 113450, + "name": "Mirror Mirror", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-19-mirror-mirror/4000-113450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68496/", + "id": 68496, + "name": "The Box", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-19-the-box/4000-68496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49398/", + "id": 49398, + "name": "Dance Fever", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-22-dance-fever/4000-49398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296987/", + "id": 296987, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-62/4000-296987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715453/", + "id": 715453, + "name": "The Leveller", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-62-the-leveller/4000-715453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714375/", + "id": 714375, + "name": "Backlash/Spider-Man ; Batman/Spawn", + "site_detail_url": "https://comicvine.gamespot.com/gigant-200001-backlashspider-man-batmanspawn/4000-714375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383844/", + "id": 383844, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-57/4000-383844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-324779/", + "id": 324779, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-21/4000-324779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295337/", + "id": 295337, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-6/4000-295337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264864/", + "id": 264864, + "name": "The Prime Sentinels!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-62-the-prime-sentinels/4000-264864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131863/", + "id": 131863, + "name": "No One Here Gets Out Alive", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-punisher-1-no-one-here-gets-out-aliv/4000-131863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113449/", + "id": 113449, + "name": "Homeward Bound", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18-homeward-bound/4000-113449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68495/", + "id": 68495, + "name": "The Curse of Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-18-the-curse-of-spider-man/4000-68495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49397/", + "id": 49397, + "name": "Earthshaker", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-21-earthshaker/4000-49397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117435/", + "id": 117435, + "name": "Hero of the People! Part 2", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-18-hero-of-the-peo/4000-117435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715452/", + "id": 715452, + "name": "Project Proteus!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-61-project-prote/4000-715452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448658/", + "id": 448658, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-hombres-x-37/4000-448658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383843/", + "id": 383843, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-56/4000-383843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359019/", + "id": 359019, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-8/4000-359019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296986/", + "id": 296986, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-61/4000-296986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291725/", + "id": 291725, + "name": "Spider-Man: Die ersten Jahre III", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-27-spider-man-die-ersten-jahre-iii/4000-291725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119829/", + "id": 119829, + "name": "The Greatest Issue Ever!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-105-the-greatest-issue-/4000-119829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66296/", + "id": 66296, + "name": "Issue X", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-x-issue-x/4000-66296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50788/", + "id": 50788, + "name": "A Dream of Bitter Ash", + "site_detail_url": "https://comicvine.gamespot.com/avengers-29-a-dream-of-bitter-ash/4000-50788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287605/", + "id": 287605, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-sensationelle-spider-man-23/4000-287605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117434/", + "id": 117434, + "name": "Hero of the People", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-17-hero-of-the-peo/4000-117434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113448/", + "id": 113448, + "name": "Dust in the Wind", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-17-dust-in-the-wind/4000-113448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68494/", + "id": 68494, + "name": "Night of the Hunters", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-17-night-of-the-hunters/4000-68494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47882/", + "id": 47882, + "name": "Once A Goblin - - !", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-20-once-a-goblin/4000-47882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715439/", + "id": 715439, + "name": "Terrigan's Curse!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-60-terrigans-cur/4000-715439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268917/", + "id": 268917, + "name": "Six Fabulous Decades of the World's Most Accurate Comics", + "site_detail_url": "https://comicvine.gamespot.com/the-history-of-marvels-comics-1-six-fabulous-decad/4000-268917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137487/", + "id": 137487, + "name": "The Menace of Spider Man", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-spider-man-1-1-the-menace-of-spider/4000-137487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383842/", + "id": 383842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-55/4000-383842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359017/", + "id": 359017, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-7/4000-359017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296985/", + "id": 296985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-60/4000-296985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295336/", + "id": 295336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4/4000-295336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219407/", + "id": 219407, + "name": "Duel at Dawn", + "site_detail_url": "https://comicvine.gamespot.com/blade-6-duel-at-dawn/4000-219407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146292/", + "id": 146292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-343/4000-146292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95862/", + "id": 95862, + "name": "Human error", + "site_detail_url": "https://comicvine.gamespot.com/warlock-8-human-error/4000-95862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82320/", + "id": 82320, + "name": "Welcome to my Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-11-welcome-to-my-nightmare/4000-82320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75669/", + "id": 75669, + "name": "Beyond Reason's Edge", + "site_detail_url": "https://comicvine.gamespot.com/thor-23-beyond-reasons-edge/4000-75669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65818/", + "id": 65818, + "name": "Hello, Old Friend", + "site_detail_url": "https://comicvine.gamespot.com/bishop-the-last-x-man-8-hello-old-friend/4000-65818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48485/", + "id": 48485, + "name": "Rite Of Passage", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-8-rite-of-passage/4000-48485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46498/", + "id": 46498, + "name": "Legacy", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-18-legacy/4000-46498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425794/", + "id": 425794, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-doctor-octopus-1-tpb/4000-425794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287604/", + "id": 287604, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-sensationelle-spider-man-22/4000-287604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117433/", + "id": 117433, + "name": "Blackout: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-16-blackout-part-2/4000-117433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113447/", + "id": 113447, + "name": "Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-coming-home/4000-113447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68493/", + "id": 68493, + "name": "Venom VS Sandman", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-16-venom-vs-sandman/4000-68493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47881/", + "id": 47881, + "name": "Fantasies", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-19-fantasies/4000-47881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715438/", + "id": 715438, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-59/4000-715438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316820/", + "id": 316820, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-49/4000-316820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296984/", + "id": 296984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-59/4000-296984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91362/", + "id": 91362, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-5/4000-91362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91361/", + "id": 91361, + "name": "Tentacles of Death!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-4-tentacles-of-death/4000-91361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66295/", + "id": 66295, + "name": "Chapter Twelve", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-12-chapter-twelve/4000-66295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46497/", + "id": 46497, + "name": "Uptown", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-17-uptown/4000-46497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287603/", + "id": 287603, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-sensationelle-spider-man-21/4000-287603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143312/", + "id": 143312, + "name": "Old Aquaintances", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-2000-1-old-aquaintan/4000-143312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117432/", + "id": 117432, + "name": "Blackout", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-15-blackout/4000-117432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117431/", + "id": 117431, + "name": "The Time Before: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-14-the-time-before/4000-117431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113446/", + "id": 113446, + "name": "We're All Doomed... Again!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-15-we-re-all-doomed-again/4000-113446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82318/", + "id": 82318, + "name": "Break of Hearts", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-9-break-of-hearts/4000-82318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68492/", + "id": 68492, + "name": "Bring Me The Head Of Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-15-bring-me-the-head-of-sp/4000-68492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47880/", + "id": 47880, + "name": "Raptor's Regret", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-18-raptors-regret/4000-47880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46305/", + "id": 46305, + "name": "How Is Your Justice Best Served?", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-36-how-is-your-justice-best-served/4000-46305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715437/", + "id": 715437, + "name": "Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-58-savage-land/4000-715437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383840/", + "id": 383840, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-53/4000-383840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359015/", + "id": 359015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-5/4000-359015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325024/", + "id": 325024, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-19/4000-325024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296983/", + "id": 296983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-58/4000-296983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210024/", + "id": 210024, + "name": "Duel of the Undead!", + "site_detail_url": "https://comicvine.gamespot.com/blade-4-duel-of-the-undead/4000-210024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193677/", + "id": 193677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-102/4000-193677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146291/", + "id": 146291, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-342/4000-146291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95860/", + "id": 95860, + "name": "Split Personalities", + "site_detail_url": "https://comicvine.gamespot.com/warlock-6-split-personalities/4000-95860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66294/", + "id": 66294, + "name": "Chapter Eleven", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-11-chapter-eleven/4000-66294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65816/", + "id": 65816, + "name": "The Kith Trilogy, Part 3 - The Battle Of Evermore", + "site_detail_url": "https://comicvine.gamespot.com/bishop-the-last-x-man-6-the-kith-trilogy-part-3-th/4000-65816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65655/", + "id": 65655, + "name": "The Ages of Apocalypse: False Hoods", + "site_detail_url": "https://comicvine.gamespot.com/cable-77-the-ages-of-apocalypse-false-hoods/4000-65655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51215/", + "id": 51215, + "name": "Ages of Apocalypse - Same As It Never Was", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-148-ages-of-apocalypse-same-as-it-never-/4000-51215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46309/", + "id": 46309, + "name": "Say -- What?!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-27-say-what/4000-46309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113445/", + "id": 113445, + "name": "A Surfeit of Spiders", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-14-a-surfeit-of-spiders/4000-113445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68491/", + "id": 68491, + "name": "Denial", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-14-denial/4000-68491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47879/", + "id": 47879, + "name": "Once A Web-Swinger....", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-17-once-a-web-swinger/4000-47879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715436/", + "id": 715436, + "name": "Rampage!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-57-rampage/4000-715436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174448/", + "id": 174448, + "name": "The Kirby Influence", + "site_detail_url": "https://comicvine.gamespot.com/the-jack-kirby-collector-27-the-kirby-influence/4000-174448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136073/", + "id": 136073, + "name": "Out of the Loop", + "site_detail_url": "https://comicvine.gamespot.com/x-man-60-out-of-the-loop/4000-136073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120141/", + "id": 120141, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ant-mans-big-christmas-1/4000-120141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91360/", + "id": 91360, + "name": "Enter The Brute!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-3-enter-the-brute/4000-91360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50784/", + "id": 50784, + "name": "The Ninth Day", + "site_detail_url": "https://comicvine.gamespot.com/avengers-25-the-ninth-day/4000-50784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46282/", + "id": 46282, + "name": "The Wake Up Call", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-17-the-wake-up-call/4000-46282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46267/", + "id": 46267, + "name": "The Robot who would be King", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing-5-the-robot-who-would-be-king/4000-46267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451606/", + "id": 451606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-93/4000-451606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117430/", + "id": 117430, + "name": "The Time Before", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-13-the-time-before/4000-117430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113444/", + "id": 113444, + "name": "Time Enough..?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-13-time-enough/4000-113444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107040/", + "id": 107040, + "name": "Under the Surface; Physician, Heal Thyself?", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-2000-1-under-the-surface-physician-he/4000-107040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66900/", + "id": 66900, + "name": "The Sunset Dawn -Book 1: The Time Trap", + "site_detail_url": "https://comicvine.gamespot.com/gambit-12-the-sunset-dawn-book-1-the-time-trap/4000-66900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51038/", + "id": 51038, + "name": "Ultimate Fury", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-24-ultimate-fury/4000-51038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47878/", + "id": 47878, + "name": "The Question", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-16-the-question/4000-47878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46230/", + "id": 46230, + "name": "Making Your Mark", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-34-making-your-mark/4000-46230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715435/", + "id": 715435, + "name": "Killer Punch!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-56-killer-punch/4000-715435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-397331/", + "id": 397331, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/os-fabulosos-x-men-49/4000-397331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415126/", + "id": 415126, + "name": "X-Men True Friends", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-special-39-x-men-true-friends/4000-415126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362940/", + "id": 362940, + "name": "Spider-Man / Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-17-spider-man-thunderbolts/4000-362940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358697/", + "id": 358697, + "name": "To Trap a Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-activision-1-to-trap-a-spider/4000-358697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296982/", + "id": 296982, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-57/4000-296982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291120/", + "id": 291120, + "name": "Softcover", + "site_detail_url": "https://comicvine.gamespot.com/superheroes-the-heroic-visions-of-boris-vallejo-an/4000-291120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284458/", + "id": 284458, + "name": "Making Comics", + "site_detail_url": "https://comicvine.gamespot.com/making-comics-1-making-comics/4000-284458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280257/", + "id": 280257, + "name": "...inarrestabile", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-115-inarrestabile/4000-280257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275138/", + "id": 275138, + "name": "I Nuovi Satiri", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-57-i-nuovi-satiri/4000-275138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264832/", + "id": 264832, + "name": "Gambit Versus Magneto - With Rogue Caught In The Middle!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-55-gambit-versus-magneto-with-rogu/4000-264832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197697/", + "id": 197697, + "name": "Chaos, Part 3; Wierder And Wierder", + "site_detail_url": "https://comicvine.gamespot.com/blade-2-chaos-part-3-wierder-and-wierder/4000-197697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193675/", + "id": 193675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-100/4000-193675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132413/", + "id": 132413, + "name": "A World Untamed", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-doomsday-1-a-world-untamed/4000-132413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99851/", + "id": 99851, + "name": "Seeds of Change", + "site_detail_url": "https://comicvine.gamespot.com/domination-factor-avengers-36-seeds-of-change/4000-99851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95859/", + "id": 95859, + "name": "Will!", + "site_detail_url": "https://comicvine.gamespot.com/warlock-5-will/4000-95859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91359/", + "id": 91359, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-2/4000-91359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-83124/", + "id": 83124, + "name": "Artie and Leech's Day Off!", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-59-artie-and-leechs-day-off/4000-83124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75666/", + "id": 75666, + "name": "Deviant Life", + "site_detail_url": "https://comicvine.gamespot.com/thor-19-deviant-life/4000-75666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68490/", + "id": 68490, + "name": "Living in Oblivion!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-13-living-in-oblivion/4000-68490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66293/", + "id": 66293, + "name": "Chapter Ten", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-10-chapter-ten/4000-66293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50783/", + "id": 50783, + "name": "Harsh Judgements", + "site_detail_url": "https://comicvine.gamespot.com/avengers-24-harsh-judgements/4000-50783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50742/", + "id": 50742, + "name": "Sending in the Clowns: Chapter X Verse Three", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-36-sending-in-the-clowns-chapter-x-verse-/4000-50742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46494/", + "id": 46494, + "name": "Turbulence", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-14-turbulence/4000-46494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46235/", + "id": 46235, + "name": "God and Man", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-16-god-and-man/4000-46235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362919/", + "id": 362919, + "name": "Superman gegen Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/dc-marvel-classics-1-superman-gegen-spider-man/4000-362919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202258/", + "id": 202258, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-wolverine-special-edition-1/4000-202258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124309/", + "id": 124309, + "name": "Once More The Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-hidden-years-1-once-more-the-savage-land/4000-124309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117429/", + "id": 117429, + "name": "Perchance To Dream", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-12-perchance-to-dr/4000-117429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113443/", + "id": 113443, + "name": "Another Return of the Sinister Six! and Let There Be Light!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-12-another-return-of-the-si/4000-113443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78495/", + "id": 78495, + "name": "The Death-Trap of Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-112-the-death-trap-of-doctor-doom/4000-78495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68489/", + "id": 68489, + "name": "Another Return of the Sinister Six/Each Day a Grain of Sand Through Life's Hourglass", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-12-another-return-of-the-s/4000-68489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715434/", + "id": 715434, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-55/4000-715434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-924309/", + "id": 924309, + "name": "Calendario Uomo Ragno 2000", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-37-calendario-uomo-ragno-2000/4000-924309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291925/", + "id": 291925, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-reborn-30/4000-291925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291722/", + "id": 291722, + "name": "Spider-Man: Die ersten Jahre II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-24-spider-man-die-ersten-jahre-ii/4000-291722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264830/", + "id": 264830, + "name": "Aftermath!", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-54-aftermath/4000-264830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263480/", + "id": 263480, + "name": "Wizard 2000", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-2000-wizard-2000/4000-263480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-208855/", + "id": 208855, + "name": "Chaos, Part 1; The Dead Walk/Part 2; Questions", + "site_detail_url": "https://comicvine.gamespot.com/blade-1-chaos-part-1-the-dead-walkpart-2-questions/4000-208855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91358/", + "id": 91358, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-1/4000-91358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66887/", + "id": 66887, + "name": "Truth or Consequences", + "site_detail_url": "https://comicvine.gamespot.com/galactus-the-devourer-4-truth-or-consequences/4000-66887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46149/", + "id": 46149, + "name": "Parts of a Hole Part 1: Murdock's Law", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-9-parts-of-a-hole-part-1-murdocks-law/4000-46149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117427/", + "id": 117427, + "name": "Off The Deep End", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-11-off-the-deep-en/4000-117427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115161/", + "id": 115161, + "name": "Eight Is Enough", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut-the-eighth-day-1-eight-is-enough/4000-115161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113442/", + "id": 113442, + "name": "Bright Lights... Bigger City", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-11-bright-lights-bigger-cit/4000-113442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66898/", + "id": 66898, + "name": "Waiting For The Princess", + "site_detail_url": "https://comicvine.gamespot.com/gambit-10-waiting-for-the-princess/4000-66898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51036/", + "id": 51036, + "name": "The Eighth Day, Part 2 - The Thrill of the Chase", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-22-the-eighth-day-part-2-the-thrill-of-th/4000-51036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46127/", + "id": 46127, + "name": "Victory!", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-ii-5-victory/4000-46127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46123/", + "id": 46123, + "name": "Blood Sports", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-32-blood-sports/4000-46123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46099/", + "id": 46099, + "name": "Final Cut", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-ii-4-final-cut/4000-46099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46092/", + "id": 46092, + "name": "Defeated By Kaine", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-14-defeated-by-kaine/4000-46092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715374/", + "id": 715374, + "name": "The Amazing Spider-Legion!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-54-the-amazing-s/4000-715374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294518/", + "id": 294518, + "name": "Pelear y volar!", + "site_detail_url": "https://comicvine.gamespot.com/los-hombres-x-21-pelear-y-volar/4000-294518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359010/", + "id": 359010, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-1/4000-359010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300261/", + "id": 300261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-34/4000-300261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291924/", + "id": 291924, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-reborn-29/4000-291924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291721/", + "id": 291721, + "name": "Spider-Man: Verschwörung", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-23-spider-man-verschworung/4000-291721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275132/", + "id": 275132, + "name": "Goblin nella Notte", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-55-goblin-nella-notte/4000-275132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193674/", + "id": 193674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-99/4000-193674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132385/", + "id": 132385, + "name": "Behind the Curtain", + "site_detail_url": "https://comicvine.gamespot.com/x-man-57-behind-the-curtain/4000-132385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99250/", + "id": 99250, + "name": "Raising Hell's Children, Part 3 - The Final Cut", + "site_detail_url": "https://comicvine.gamespot.com/slingers-12-raising-hells-children-part-3-the-fina/4000-99250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96145/", + "id": 96145, + "name": "The Destiny War!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-forever-11-the-destiny-war/4000-96145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68488/", + "id": 68488, + "name": "An Exemplary Day!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-11-an-exemplary-day/4000-68488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66886/", + "id": 66886, + "name": "Denial", + "site_detail_url": "https://comicvine.gamespot.com/galactus-the-devourer-3-denial/4000-66886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66291/", + "id": 66291, + "name": "Chapter Eight", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-8-chapter-eight/4000-66291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65814/", + "id": 65814, + "name": "Wish You Were Here", + "site_detail_url": "https://comicvine.gamespot.com/bishop-the-last-x-man-2-wish-you-were-here/4000-65814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50740/", + "id": 50740, + "name": "Sending In The Clowns: Chapter X Verse One", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-34-sending-in-the-clowns-chapter-x-verse-/4000-50740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46125/", + "id": 46125, + "name": "Skull Session", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-23-skull-session/4000-46125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46118/", + "id": 46118, + "name": "Claiming the crown", + "site_detail_url": "https://comicvine.gamespot.com/x-men-true-friends-3-claiming-the-crown/4000-46118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113441/", + "id": 113441, + "name": "And Then There Were...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-10-and-then-there-were/4000-113441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75632/", + "id": 75632, + "name": "The Show Must Go On", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-10-the-show-must-g/4000-75632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68487/", + "id": 68487, + "name": "Venom Triumphant!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-10-venom-triumphant/4000-68487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46057/", + "id": 46057, + "name": "\"Culling The Herd\"", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-ii-3-culling-the-herd/4000-46057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715354/", + "id": 715354, + "name": "Dracula Lives!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-53-dracula-lives/4000-715354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46082/", + "id": 46082, + "name": "The End of Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-12-the-end-of-spider-man/4000-46082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300260/", + "id": 300260, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-33/4000-300260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268921/", + "id": 268921, + "name": "Good Intentions", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-12-good-intentions/4000-268921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141464/", + "id": 141464, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-fantastic-four-2-volume-2/4000-141464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132384/", + "id": 132384, + "name": "Greyville", + "site_detail_url": "https://comicvine.gamespot.com/x-man-56-greyville/4000-132384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82313/", + "id": 82313, + "name": "a rag, a bone and a hank of hair", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-4-a-rag-a-bone-and-a-hank-of-hair/4000-82313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66885/", + "id": 66885, + "name": "Red Shift", + "site_detail_url": "https://comicvine.gamespot.com/galactus-the-devourer-2-red-shift/4000-66885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46081/", + "id": 46081, + "name": "Lost Hope!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-22-lost-hope/4000-46081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139640/", + "id": 139640, + "name": "Misery", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-annual-1999-1-misery/4000-139640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113440/", + "id": 113440, + "name": "The List", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-9-the-list/4000-113440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75631/", + "id": 75631, + "name": "The Bridge: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-9-the-bridge-part-/4000-75631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68486/", + "id": 68486, + "name": "Shadows of the Past", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-9-shadows-of-the-past/4000-68486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46012/", + "id": 46012, + "name": "The Gathering", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-ii-1-the-gathering/4000-46012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46004/", + "id": 46004, + "name": "Duel With Darkdevil", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-12-duel-with-darkdevil/4000-46004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715353/", + "id": 715353, + "name": "Doctor Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-52-doctor-carnag/4000-715353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411275/", + "id": 411275, + "name": "Als de dag van toen", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-206-als-de-dag-van-toen/4000-411275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46036/", + "id": 46036, + "name": "The Big Man and the Little Lady", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-11-the-big-man-and-the-litt/4000-46036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294486/", + "id": 294486, + "name": "Conociendo al enemigo", + "site_detail_url": "https://comicvine.gamespot.com/los-hombres-x-17-conociendo-al-enemigo/4000-294486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715352/", + "id": 715352, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-51/4000-715352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362942/", + "id": 362942, + "name": "Spider-Man / Gen 13", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-15-spider-man-gen-13/4000-362942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325028/", + "id": 325028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-16/4000-325028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300086/", + "id": 300086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-32/4000-300086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291718/", + "id": 291718, + "name": "The Infinity Gauntlet: Die ewige Fehde!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-20-the-infinity-gauntlet-die-ewige/4000-291718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126199/", + "id": 126199, + "name": "Lo, there shall come a Spider", + "site_detail_url": "https://comicvine.gamespot.com/nova-5-lo-there-shall-come-a-spider/4000-126199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66289/", + "id": 66289, + "name": "Chapter Six", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-6-chapter-six/4000-66289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46005/", + "id": 46005, + "name": "Once Upon a Time", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-12-once-upon-a-time/4000-46005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269238/", + "id": 269238, + "name": "Song of the Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-annual-1999-1-song-of-the-/4000-269238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113439/", + "id": 113439, + "name": "The Man Behind the Curtain!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-8-the-man-behind-the-curtai/4000-113439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75630/", + "id": 75630, + "name": "The Bridge: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-8-the-bridge-part-/4000-75630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68485/", + "id": 68485, + "name": "Blood Feud", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-8-blood-feud/4000-68485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45957/", + "id": 45957, + "name": "Slayers, Spiders and Torches-- Oh My!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-11-slayers-spiders-and-torches-oh-my/4000-45957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45989/", + "id": 45989, + "name": "Goblin Redux", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-10-goblin-redux/4000-45989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295283/", + "id": 295283, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-50/4000-295283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385745/", + "id": 385745, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-26/4000-385745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300085/", + "id": 300085, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-31/4000-300085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-193673/", + "id": 193673, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-96/4000-193673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82311/", + "id": 82311, + "name": "Suffer the little children", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-2-suffer-the-little-children/4000-82311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113438/", + "id": 113438, + "name": "The Perfect World Part 1 Heroes and Villains", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-7-the-perfect-world-part-1-/4000-113438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75629/", + "id": 75629, + "name": "The Bridge", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-7-the-bridge/4000-75629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68484/", + "id": 68484, + "name": "Creatures of the Night", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-7-creatures-of-the-night/4000-68484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45922/", + "id": 45922, + "name": "Father's Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-10-father-s-day/4000-45922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45944/", + "id": 45944, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-9/4000-45944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715351/", + "id": 715351, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-49/4000-715351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325029/", + "id": 325029, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-extra-15/4000-325029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313835/", + "id": 313835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-40/4000-313835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111966/", + "id": 111966, + "name": "Double Lives", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-vs-superman-1-double-lives/4000-111966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82310/", + "id": 82310, + "name": "Spider spider", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-1-spider-spider/4000-82310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143311/", + "id": 143311, + "name": "World Enough & Time", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-99-1-world-enough-ti/4000-143311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113437/", + "id": 113437, + "name": "Truth be Told (...or not)", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-6-truth-be-told-or-not/4000-113437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75628/", + "id": 75628, + "name": "With Everything to Lose", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-6-with-everything-/4000-75628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68483/", + "id": 68483, + "name": "The Whys Have It!", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-6-the-whys-have-it/4000-68483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45877/", + "id": 45877, + "name": "Training Matters", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-9-training-matters/4000-45877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45905/", + "id": 45905, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-8/4000-45905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715350/", + "id": 715350, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-48/4000-715350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300083/", + "id": 300083, + "name": "Nord & Sud", + "site_detail_url": "https://comicvine.gamespot.com/x-men-29-nord-and-sud/4000-300083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291716/", + "id": 291716, + "name": "Spider-Man: Die ersten Jahre", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-18-spider-man-die-ersten-jahre/4000-291716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-205562/", + "id": 205562, + "name": "Web of Intrigue", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-web-of-intrigue-1-web-of-intrigue/4000-205562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129434/", + "id": 129434, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-382/4000-129434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119838/", + "id": 119838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-94/4000-119838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66286/", + "id": 66286, + "name": "Chapter Three", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-3-chapter-three/4000-66286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66257/", + "id": 66257, + "name": "Guardian Devil Part 8: The Devil's Deliverance", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-8-guardian-devil-part-8-the-devils-deliv/4000-66257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65788/", + "id": 65788, + "name": "Back From the Dead?!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-89-back-from-the-dead/4000-65788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287593/", + "id": 287593, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-sensationelle-spider-man-11/4000-287593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113436/", + "id": 113436, + "name": "...And Then There Was One!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-5-and-then-there-was-one/4000-113436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75627/", + "id": 75627, + "name": "Broken!", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-5-broken/4000-75627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68482/", + "id": 68482, + "name": "The Trouble With Girls", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-5-the-trouble-with-girls/4000-68482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45833/", + "id": 45833, + "name": "Two Of A Kind", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-8-two-of-a-kind/4000-45833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45859/", + "id": 45859, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-7/4000-45859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45815/", + "id": 45815, + "name": "Where Walks the Lizard / I am the living Sandman / On wings of evil", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-0-where-walks-the-lizard-i-/4000-45815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715349/", + "id": 715349, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-47/4000-715349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396257/", + "id": 396257, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/os-fabulosos-x-men-41/4000-396257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-393977/", + "id": 393977, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-127/4000-393977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373088/", + "id": 373088, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-visionaries-1-tpb/4000-373088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318633/", + "id": 318633, + "name": "¡El Rino desencadenado!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-5-el-rino-desencadenado/4000-318633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300082/", + "id": 300082, + "name": "Les Leçons de la vie", + "site_detail_url": "https://comicvine.gamespot.com/x-men-28-les-lecons-de-la-vie/4000-300082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280067/", + "id": 280067, + "name": "Psico guerra 1 di 2", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-107-psico-guerra-1-di-2/4000-280067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275123/", + "id": 275123, + "name": "X-Men Universe: La città dei bambini perduti", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-49-x-men-universe-la-citta-dei-bambin/4000-275123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125695/", + "id": 125695, + "name": "Starting Over", + "site_detail_url": "https://comicvine.gamespot.com/nova-1-starting-over/4000-125695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119832/", + "id": 119832, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-93/4000-119832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111017/", + "id": 111017, + "name": "The Keys to the Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-1999-1-the-keys-to-the-kingdom/4000-111017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74573/", + "id": 74573, + "name": "Uninvited Guests", + "site_detail_url": "https://comicvine.gamespot.com/x-man-51-uninvited-guests/4000-74573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50775/", + "id": 50775, + "name": "Mistaken Identity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-16-mistaken-identity/4000-50775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119746/", + "id": 119746, + "name": "All told in the Mighty Marvel manner!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-island-adventures-1-all-told-in-/4000-119746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113435/", + "id": 113435, + "name": "Betrayals", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-4-betrayals/4000-113435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75626/", + "id": 75626, + "name": "Out of the Blue (Into the Fire)", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-4-out-of-the-blue-/4000-75626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68481/", + "id": 68481, + "name": "Beneath It All", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-4-beneath-it-all/4000-68481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45784/", + "id": 45784, + "name": "Secrets", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-7-secrets/4000-45784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45811/", + "id": 45811, + "name": "Clash", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-6-clash/4000-45811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715348/", + "id": 715348, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-46/4000-715348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-857936/", + "id": 857936, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-death-of-gwen-stacy-1-t/4000-857936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318634/", + "id": 318634, + "name": "¡Nace un superheroe!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-4-nace-un-superheroe/4000-318634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316701/", + "id": 316701, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-37/4000-316701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275122/", + "id": 275122, + "name": "X-Men Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-48-x-men-universe/4000-275122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170730/", + "id": 170730, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-92/4000-170730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99243/", + "id": 99243, + "name": "Good-Bye to the Golden Age", + "site_detail_url": "https://comicvine.gamespot.com/slingers-5-good-bye-to-the-golden-age/4000-99243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45787/", + "id": 45787, + "name": "The Season of the Witch", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-7-the-season-of-the-witch/4000-45787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45773/", + "id": 45773, + "name": "Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-1-chapter-one/4000-45773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451903/", + "id": 451903, + "name": "The amazing Spider-Man und Superman", + "site_detail_url": "https://comicvine.gamespot.com/dc-marvel-classics-2-the-amazing-spider-man-und-su/4000-451903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113434/", + "id": 113434, + "name": "Off to a Flying Start!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-3-off-to-a-flying-start/4000-113434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75625/", + "id": 75625, + "name": "Wake Up Call!", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-3-wake-up-call/4000-75625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68480/", + "id": 68480, + "name": "Eyewitness", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-3-eyewitness/4000-68480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45735/", + "id": 45735, + "name": "Look Out For Ladyhawk", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-6-look-out-for-ladyhawk/4000-45735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45761/", + "id": 45761, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-5/4000-45761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715347/", + "id": 715347, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-45/4000-715347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-607250/", + "id": 607250, + "name": "Io, il Clone!", + "site_detail_url": "https://comicvine.gamespot.com/rat-man-collection-11-io-il-clone/4000-607250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362945/", + "id": 362945, + "name": "The Amazing Spider-Man und Superman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-12-the-amazing-spider-man-und-/4000-362945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318635/", + "id": 318635, + "name": "¡Los cuernos del Rino!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-3-los-cuernos-del-rino/4000-318635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300253/", + "id": 300253, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-26/4000-300253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99242/", + "id": 99242, + "name": "The Black Marvel Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/slingers-4-the-black-marvel-strikes/4000-99242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45737/", + "id": 45737, + "name": "The Trial of the Brute!", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-6-the-trial-of-the-brute/4000-45737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45724/", + "id": 45724, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-0/4000-45724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113433/", + "id": 113433, + "name": "I Can't... (and I Don't Want To) ...But I Must!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2-i-can-t-and-i-don-t-want-/4000-113433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75624/", + "id": 75624, + "name": "In the Nightmare Factory", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-2-in-the-nightmare/4000-75624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68479/", + "id": 68479, + "name": "Plaything Of The Gods", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-2-plaything-of-the-gods/4000-68479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45679/", + "id": 45679, + "name": "A Touch Of Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-5-a-touch-of-venom/4000-45679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45703/", + "id": 45703, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-4/4000-45703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715346/", + "id": 715346, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-44/4000-715346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318636/", + "id": 318636, + "name": "¡El Fin del Duende Verde!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-2-el-fin-del-duende-verde/4000-318636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291712/", + "id": 291712, + "name": "Spider-Man gegen Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-14-spider-man-gegen-venom/4000-291712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99241/", + "id": 99241, + "name": "With Friends Like These...", + "site_detail_url": "https://comicvine.gamespot.com/slingers-3-with-friends-like-these/4000-99241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45683/", + "id": 45683, + "name": "Goblins in the Night", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-5-goblins-in-the-night/4000-45683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45665/", + "id": 45665, + "name": ". . . And the Home of the Brave!", + "site_detail_url": "https://comicvine.gamespot.com/thor-8-and-the-home-of-the-brave/4000-45665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113432/", + "id": 113432, + "name": "Where R U Spider-Man??? and Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-where-r-u-spider-man-and-/4000-113432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-75623/", + "id": 75623, + "name": "Crash and Burn; The Kiss", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man-1-crash-and-burn-t/4000-75623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68478/", + "id": 68478, + "name": "Power Without Responsibility!; Memories", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-1-power-without-responsibi/4000-68478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45618/", + "id": 45618, + "name": "Deadly Is The Dragon King", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-4-deadly-is-the-dragon-king/4000-45618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715345/", + "id": 715345, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-43/4000-715345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45646/", + "id": 45646, + "name": "First Fall", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-3-first-fall/4000-45646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670284/", + "id": 670284, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-a-fresh-start-1-tpb/4000-670284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383839/", + "id": 383839, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-52/4000-383839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345556/", + "id": 345556, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-16/4000-345556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318560/", + "id": 318560, + "name": "¡Qué verde era mi Duende!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-1-que-verde-era-mi-duende/4000-318560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300251/", + "id": 300251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-24/4000-300251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300078/", + "id": 300078, + "name": "La nouvelle se propage", + "site_detail_url": "https://comicvine.gamespot.com/x-men-24-la-nouvelle-se-propage/4000-300078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289038/", + "id": 289038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-9/4000-289038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275107/", + "id": 275107, + "name": "X-Men Universe: Lacrime Amare", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-45-x-men-universe-lacrime-amare/4000-275107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252096/", + "id": 252096, + "name": "Fight To The Death!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-unleashed-36-fight-to-the-death/4000-252096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252095/", + "id": 252095, + "name": "Wild Frontier!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-unleashed-35-wild-frontier/4000-252095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252094/", + "id": 252094, + "name": "Along Came A Spider...", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-unleashed-34-along-came-a-spider/4000-252094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179083/", + "id": 179083, + "name": "L'Uomo Ragno: I Tentacoli del dr. Octopus", + "site_detail_url": "https://comicvine.gamespot.com/oscar-bestsellers-1436-luomo-ragno-i-tentacoli-del/4000-179083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179076/", + "id": 179076, + "name": "L'Uomo Ragno contro Goblin", + "site_detail_url": "https://comicvine.gamespot.com/oscar-bestsellers-1230-luomo-ragno-contro-goblin/4000-179076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148170/", + "id": 148170, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-toy-fair-special-1/4000-148170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142466/", + "id": 142466, + "name": "Billy The Marlin", + "site_detail_url": "https://comicvine.gamespot.com/billy-the-marlin-1-billy-the-marlin/4000-142466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119827/", + "id": 119827, + "name": "Best Wizard Ever...Honest!", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-89-best-wizard-everhone/4000-119827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99240/", + "id": 99240, + "name": "Hooligans", + "site_detail_url": "https://comicvine.gamespot.com/slingers-2-hooligans/4000-99240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-622636/", + "id": 622636, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-edderkoppen-1/4000-622636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451599/", + "id": 451599, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-86/4000-451599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99239/", + "id": 99239, + "name": "So Whose Idea Was This Anyway?", + "site_detail_url": "https://comicvine.gamespot.com/slingers-1-so-whose-idea-was-this-anyway/4000-99239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45526/", + "id": 45526, + "name": "Fun 'N Games With The Fantastic Five", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-3-fun-n-games-with-the-fantastic-five/4000-45526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249043/", + "id": 249043, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-sketchbook-1/4000-249043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715344/", + "id": 715344, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-42/4000-715344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45558/", + "id": 45558, + "name": "Masks", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-2-masks/4000-45558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45554/", + "id": 45554, + "name": "Bitter Lesson", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one-1-bitter-lesson/4000-45554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396252/", + "id": 396252, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/os-fabulosos-x-men-36/4000-396252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300077/", + "id": 300077, + "name": "Flashback", + "site_detail_url": "https://comicvine.gamespot.com/x-men-23-flashback/4000-300077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290433/", + "id": 290433, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-1/4000-290433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123893/", + "id": 123893, + "name": "The Most Supernatural Superheroes Of Them All", + "site_detail_url": "https://comicvine.gamespot.com/the-supernaturals-1-the-most-supernatural-superher/4000-123893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50770/", + "id": 50770, + "name": "Always an Avenger", + "site_detail_url": "https://comicvine.gamespot.com/avengers-11-always-an-avenger/4000-50770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45544/", + "id": 45544, + "name": "Guardian Devil Part 2: The Unexamined Life", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-2-guardian-devil-part-2-the-unexamined-l/4000-45544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64477/", + "id": 64477, + "name": "The Final Chapter, Part 1 of 4: And Who Shall Claim A Kingly Crown", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-441-the-final-chapter-part-/4000-64477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45467/", + "id": 45467, + "name": "Bedeviled", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-2-bedeviled/4000-45467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45440/", + "id": 45440, + "name": "Starring Secret Wars 25 Years Later...", + "site_detail_url": "https://comicvine.gamespot.com/what-if-114-starring-secret-wars-25-years-later/4000-45440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45428/", + "id": 45428, + "name": "The Final Chapter (Part 3): The Triumph of the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-263-the-final-chapter-p/4000-45428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715343/", + "id": 715343, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-41/4000-715343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396251/", + "id": 396251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/os-fabulosos-x-men-35/4000-396251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146279/", + "id": 146279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-330/4000-146279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141387/", + "id": 141387, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers-1-volume-1/4000-141387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108916/", + "id": 108916, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/timeslip-the-collection-1/4000-108916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57306/", + "id": 57306, + "name": "Poisoned Souls", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-22-poisoned-souls/4000-57306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50769/", + "id": 50769, + "name": "Pomp & Pageantry", + "site_detail_url": "https://comicvine.gamespot.com/avengers-10-pomp-pageantry/4000-50769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45504/", + "id": 45504, + "name": "The Final Chapter, Part 4: I Killed Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-98-the-final-chapter-part-4-i-killed-sp/4000-45504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45453/", + "id": 45453, + "name": "Heroes", + "site_detail_url": "https://comicvine.gamespot.com/thor-5-heroes/4000-45453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45441/", + "id": 45441, + "name": "The Final Chapter, Part 2: Let the Heavens Tremble At the Power of the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-97-the-final-chapter-part-2-let-the-hea/4000-45441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45427/", + "id": 45427, + "name": "The Gathering of Five Part 5: Gifts", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-33-the-gathering-of-fiv/4000-45427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269237/", + "id": 269237, + "name": "The Night They Killed Big Bear...", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-elektra-annual-98-1-the-ni/4000-269237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68476/", + "id": 68476, + "name": "Legacy...In Black and White!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-0-legacyin-black-and-white/4000-68476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64476/", + "id": 64476, + "name": "The Gathering of Five, Part Two: A Hot Time in the Old Town", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-440-the-gathering-of-five-p/4000-64476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45395/", + "id": 45395, + "name": "Choices", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-1-choices/4000-45395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45364/", + "id": 45364, + "name": "The Gathering of Five (Part Four): A Day In the Life", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-262-the-gathering-of-fi/4000-45364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151025/", + "id": 151025, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/encyclopaedia-deadpoolica-1/4000-151025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715342/", + "id": 715342, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-40/4000-715342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300075/", + "id": 300075, + "name": "Victimes de guerres", + "site_detail_url": "https://comicvine.gamespot.com/x-men-21-victimes-de-guerres/4000-300075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66407/", + "id": 66407, + "name": "Tying the Knot", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-125-tying-the-knot/4000-66407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45399/", + "id": 45399, + "name": "In The End...As In The Beginning!", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-1-in-the-endas-in-the-beginning/4000-45399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45363/", + "id": 45363, + "name": "The Gathering of Five Part 1: Acquisitons", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-32-the-gathering-of-fiv/4000-45363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45291/", + "id": 45291, + "name": "The Gathering Of Five, Part Three: Web of Despair", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-96-the-gathering-of-five-part-three-web/4000-45291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715341/", + "id": 715341, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-39/4000-715341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64475/", + "id": 64475, + "name": "There Once Was A Spider..!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-439-there-once-was-a-spider/4000-64475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64474/", + "id": 64474, + "name": "Seeing Is Disbelieving!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-438-seeing-is-disbelieving/4000-64474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45290/", + "id": 45290, + "name": "Goblins At The Gate (Part 3): Bad Business", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-261-goblins-at-the-gate/4000-45290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45356/", + "id": 45356, + "name": "A Day In The Life", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-9-a-day-in-the-life/4000-45356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715340/", + "id": 715340, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-38/4000-715340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797852/", + "id": 797852, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-versus-dc-serie-tres-1/4000-797852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381779/", + "id": 381779, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-35/4000-381779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165785/", + "id": 165785, + "name": "Spider-Man: Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-identity-crisis-1-spider-man-identity-c/4000-165785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45311/", + "id": 45311, + "name": "Bodyguards", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-iron-age-2-bodyguards/4000-45311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45307/", + "id": 45307, + "name": "Brave Old World", + "site_detail_url": "https://comicvine.gamespot.com/what-if-112-brave-old-world/4000-45307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45289/", + "id": 45289, + "name": "More Than a Feelin'", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-31-more-than-a-feelin/4000-45289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45204/", + "id": 45204, + "name": "Freefall", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-95-freefall/4000-45204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451597/", + "id": 451597, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-84/4000-451597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446691/", + "id": 446691, + "name": "Batman e Homem-Aranha", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-homem-aranha-1-batman-e-homem-aranha/4000-446691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64473/", + "id": 64473, + "name": "I, Monster!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-437-i-monster/4000-64473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45203/", + "id": 45203, + "name": "Goblins At The Gate Part 2: Spider in the Middle", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-260-goblins-at-the-gate/4000-45203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152728/", + "id": 152728, + "name": "The Lone and Level Sands", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-467-the-lone-and-level-sands/4000-152728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715339/", + "id": 715339, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-37/4000-715339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413273/", + "id": 413273, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-mysteries-1/4000-413273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259703/", + "id": 259703, + "name": "Days Of Future Past / Mind Out Of Time!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectible-classics-x-men-2-days-of-future/4000-259703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227425/", + "id": 227425, + "name": "Between A Rock And A Hard Place", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-17-between-a-rock-and-a-hard-pla/4000-227425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204281/", + "id": 204281, + "name": "Made Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-made-men-1-made-men/4000-204281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64663/", + "id": 64663, + "name": "Who Was Joey Z?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-94-who-was-joey-z/4000-64663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57305/", + "id": 57305, + "name": "A Real Boy", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-21-a-real-boy/4000-57305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45217/", + "id": 45217, + "name": "Wolverine: Horseman of War", + "site_detail_url": "https://comicvine.gamespot.com/what-if-111-wolverine-horseman-of-war/4000-45217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45202/", + "id": 45202, + "name": "Cat & Mouse", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-30-cat-mouse/4000-45202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65777/", + "id": 65777, + "name": "Stormfront", + "site_detail_url": "https://comicvine.gamespot.com/x-men-77-stormfront/4000-65777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64472/", + "id": 64472, + "name": "My Enemies -- Unmasked!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-436-my-enemies-unmasked/4000-64472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45115/", + "id": 45115, + "name": "Goblins at the Gate Part 1 - Survivor of the Big Lie", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-259-goblins-at-the-gate/4000-45115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45176/", + "id": 45176, + "name": "Seize the child", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-7-seize-the-child/4000-45176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715338/", + "id": 715338, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-36/4000-715338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-942898/", + "id": 942898, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-6/4000-942898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381777/", + "id": 381777, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-33/4000-381777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362949/", + "id": 362949, + "name": "Die Macht des Access (1)", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-8-die-macht-des-access-1/4000-362949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-296961/", + "id": 296961, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-36/4000-296961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292203/", + "id": 292203, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-select-5/4000-292203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266892/", + "id": 266892, + "name": "Avengers Vol. 3 1998 Rough Cut", + "site_detail_url": "https://comicvine.gamespot.com/avengers-rough-cut-1-avengers-vol-3-1998-rough-cut/4000-266892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143310/", + "id": 143310, + "name": "Duel With Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-98-1-duel-with-devil/4000-143310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132824/", + "id": 132824, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/battlebooks-spider-man-1-spider-man/4000-132824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99148/", + "id": 99148, + "name": "Where All Will Come Home & other stories", + "site_detail_url": "https://comicvine.gamespot.com/shadows-and-light-3-where-all-will-come-home-other/4000-99148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45116/", + "id": 45116, + "name": "Reborn Again", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-93-reborn-again/4000-45116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45114/", + "id": 45114, + "name": "Back On His Game", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-29-back-on-his-game/4000-45114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451596/", + "id": 451596, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-83/4000-451596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45034/", + "id": 45034, + "name": "Stuck In The Middle With You!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-92-stuck-in-the-middle-with-you/4000-45034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45033/", + "id": 45033, + "name": "Man of the People, Identity Crisis (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-258-man-of-the-people-i/4000-45033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45032/", + "id": 45032, + "name": "Hornet's Nest", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-28-hornets-nest/4000-45032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139757/", + "id": 139757, + "name": "Kaine Versus The Rhino!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-35-kaine-versus-the-rhi/4000-139757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715337/", + "id": 715337, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-35/4000-715337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279571/", + "id": 279571, + "name": "Marrow colpisce!", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-96-marrow-colpisce/4000-279571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209055/", + "id": 209055, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-30/4000-209055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126670/", + "id": 126670, + "name": "Wizard ½: The Devil Discussed", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-12-wizard-12-the-devil-discussed/4000-126670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64471/", + "id": 64471, + "name": "Fun'N Games with the Four Star Squad", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-435-fun-n-games-with-the-fo/4000-64471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44946/", + "id": 44946, + "name": "Undercover", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-91-undercover/4000-44946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44945/", + "id": 44945, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-257-prodigy/4000-44945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44944/", + "id": 44944, + "name": "Inventing the Hornet!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-27-inventing-the-hornet/4000-44944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715336/", + "id": 715336, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-34/4000-715336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381775/", + "id": 381775, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-31/4000-381775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313948/", + "id": 313948, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-26/4000-313948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300070/", + "id": 300070, + "name": "Frères ennemis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-16-freres-ennemis/4000-300070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279570/", + "id": 279570, + "name": "Flashback", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-95-flashback/4000-279570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158925/", + "id": 158925, + "name": "Drawn Swords, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/wetworks-40-drawn-swords-part-1/4000-158925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125442/", + "id": 125442, + "name": "Expressway to Hell; Desiring Martine; In Stone", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-dark-corners-1-expressway-to-hell-de/4000-125442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64470/", + "id": 64470, + "name": "'Round and 'Round with Ricochet!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-434-round-and-round-with-ri/4000-64470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57304/", + "id": 57304, + "name": "A Long Way Till Dawn", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-20-a-long-way-till-dawn/4000-57304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50763/", + "id": 50763, + "name": "Too Many Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-4-too-many-avengers/4000-50763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45048/", + "id": 45048, + "name": "Nowhere to Run, Nowhere to Hide", + "site_detail_url": "https://comicvine.gamespot.com/x-man-38-nowhere-to-run-nowhere-to-hide/4000-45048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44952/", + "id": 44952, + "name": "What If the Avengers Battled the Carnage Cosmic?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-108-what-if-the-avengers-battled-the-carna/4000-44952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44866/", + "id": 44866, + "name": "It Started On Yancy Street... Again!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-90-it-started-on-yancy-street-again/4000-44866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44865/", + "id": 44865, + "name": "Through the Looking Glass", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-256-through-the-looking/4000-44865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44864/", + "id": 44864, + "name": "Signs Of The Times", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-26-signs-of-the-times/4000-44864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715335/", + "id": 715335, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-33/4000-715335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436852/", + "id": 436852, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-99/4000-436852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381774/", + "id": 381774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-30/4000-381774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313947/", + "id": 313947, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-25/4000-313947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248360/", + "id": 248360, + "name": "First Contact", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-13-first-contact/4000-248360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209056/", + "id": 209056, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-28/4000-209056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99147/", + "id": 99147, + "name": "Reflactions & other stories", + "site_detail_url": "https://comicvine.gamespot.com/shadows-and-light-2-reflactions-other-stories/4000-99147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64469/", + "id": 64469, + "name": "Nowhere to Hyde!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-433-nowhere-to-hyde/4000-64469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44878/", + "id": 44878, + "name": "Breaking Point", + "site_detail_url": "https://comicvine.gamespot.com/x-man-37-breaking-point/4000-44878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44774/", + "id": 44774, + "name": "Spider-Hunt Part 3: Spider, Spider", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-89-spider-hunt-part-3-spider-spider/4000-44774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44773/", + "id": 44773, + "name": "Spider-Hunt Part 4: Something Goblin This Way Comes...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-255-spider-hunt-part-4-/4000-44773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44772/", + "id": 44772, + "name": "Spider-Hunt Part 1: Into The Dance!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-25-spider-hunt-part-1-i/4000-44772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715334/", + "id": 715334, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-32/4000-715334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139732/", + "id": 139732, + "name": "The Legend Reborn!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-31-the-legend-reborn/4000-139732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381773/", + "id": 381773, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-29/4000-381773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300068/", + "id": 300068, + "name": "Aprés l'Orage", + "site_detail_url": "https://comicvine.gamespot.com/x-men-14-apres-lorage/4000-300068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64468/", + "id": 64468, + "name": "Spider-Hunt Part 2: The Hunted", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-432-spider-hunt-part-2-the-/4000-64468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44832/", + "id": 44832, + "name": "Falling Star", + "site_detail_url": "https://comicvine.gamespot.com/x-man-36-falling-star/4000-44832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44770/", + "id": 44770, + "name": "Sun-Walkers!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-7-sun-walkers/4000-44770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64467/", + "id": 64467, + "name": "The Carnage Cosmic", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-431-the-carnage-cosmic/4000-64467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44682/", + "id": 44682, + "name": "Who Did Joey Z?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-88-who-did-joey-z/4000-44682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44681/", + "id": 44681, + "name": "Angst!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-254-angst/4000-44681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44680/", + "id": 44680, + "name": "A Christmas Story", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-24-a-christmas-story/4000-44680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715333/", + "id": 715333, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-31/4000-715333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139733/", + "id": 139733, + "name": "The New Doctor Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-30-the-new-doctor-octop/4000-139733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226969/", + "id": 226969, + "name": "The Price of Admission", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-11-the-price-of-admission/4000-226969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113555/", + "id": 113555, + "name": "Where Monsters Dwell", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-19-where-monsters-dwell/4000-113555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50760/", + "id": 50760, + "name": "Once an Avenger...", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1-once-an-avenger/4000-50760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44732/", + "id": 44732, + "name": "Be it ever so humble...", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2-be-it-ever-so-humble/4000-44732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44688/", + "id": 44688, + "name": "Media Blitz", + "site_detail_url": "https://comicvine.gamespot.com/x-man-35-media-blitz/4000-44688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44687/", + "id": 44687, + "name": "LEGACY... IN BLACK AND WHITE", + "site_detail_url": "https://comicvine.gamespot.com/what-if-105-legacy-in-black-and-white/4000-44687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44678/", + "id": 44678, + "name": "Wreck and Roll!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-6-wreck-and-roll/4000-44678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195706/", + "id": 195706, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-strange-encounters-1/4000-195706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110960/", + "id": 110960, + "name": "The Learning Curve", + "site_detail_url": "https://comicvine.gamespot.com/slingers-0-the-learning-curve/4000-110960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64466/", + "id": 64466, + "name": "Savage Rebirth!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-430-savage-rebirth/4000-64466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44576/", + "id": 44576, + "name": "Heroes' Reward", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-10-heroes-reward/4000-44576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44568/", + "id": 44568, + "name": "The Spirit is Willing: The Flesh...", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-23-the-spirit-is-willin/4000-44568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-414936/", + "id": 414936, + "name": "Stormfront, deel 1.", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-special-30-stormfront-deel-1/4000-414936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715232/", + "id": 715232, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-30/4000-715232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139734/", + "id": 139734, + "name": "To Battle The New Warriors!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-29-to-battle-the-new-wa/4000-139734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384469/", + "id": 384469, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/bring-back-the-bad-guys-1-tpb/4000-384469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381767/", + "id": 381767, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-27/4000-381767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291707/", + "id": 291707, + "name": "Marvel Super Heroes: Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-9-marvel-super-heroes-secret-wars/4000-291707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291706/", + "id": 291706, + "name": "Spider-Man: Abgründe", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-8-spider-man-abgrunde/4000-291706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291705/", + "id": 291705, + "name": "Spider-Man: Verlorene Jahre", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-7-spider-man-verlorene-jahre/4000-291705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291704/", + "id": 291704, + "name": "Spider-Man: Wahre Monster", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-6-spider-man-wahre-monster/4000-291704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291702/", + "id": 291702, + "name": "Spider-Man: Qualen", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-4-spider-man-qualen/4000-291702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291700/", + "id": 291700, + "name": "Spider-Man: Kravens letzte Jagd", + "site_detail_url": "https://comicvine.gamespot.com/marvel-exklusiv-2-spider-man-kravens-letzte-jagd/4000-291700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281080/", + "id": 281080, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-jack-kirby-collector-18/4000-281080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224730/", + "id": 224730, + "name": "L'Uomo Ragno: La Sfida di Venom", + "site_detail_url": "https://comicvine.gamespot.com/oscar-bestsellers-1331-luomo-ragno-la-sfida-di-ven/4000-224730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180546/", + "id": 180546, + "name": "SM vs DD", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-doctor-doom-1-sm-vs-dd/4000-180546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178809/", + "id": 178809, + "name": "What Counts In The End", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-finale-3-what-counts-in-the-end/4000-178809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160797/", + "id": 160797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-spider-man-special-edition-1/4000-160797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160795/", + "id": 160795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-presents-the-legacy-of-spider-man-special-e/4000-160795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160700/", + "id": 160700, + "name": "Bad Day At The Bugle", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-venom-agenda-1-bad-day-at-the-bugle/4000-160700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149875/", + "id": 149875, + "name": "Spider-Man One Half", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-12-spider-man-one-half/4000-149875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44570/", + "id": 44570, + "name": "Enemies... A Love Story?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-87-enemies-a-love-story/4000-44570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44569/", + "id": 44569, + "name": "Son of the Hunter, part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-253-son-of-the-hunter-p/4000-44569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44565/", + "id": 44565, + "name": "Need to Know", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-5-need-to-know/4000-44565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614199/", + "id": 614199, + "name": "Batman & Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/batman-special-28-batman-and-spiderman/4000-614199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468802/", + "id": 468802, + "name": "Father's Day is Every Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fathers-day-is-every-day-1-fathers-day-/4000-468802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44455/", + "id": 44455, + "name": "Fourth & Goal", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return-4-fourth-goal/4000-44455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44454/", + "id": 44454, + "name": "Third Dimension", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return-3-third-dimension/4000-44454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44451/", + "id": 44451, + "name": "Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return-2-second-coming/4000-44451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44398/", + "id": 44398, + "name": "The Politics of Magic", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-22-the-politics-of-magi/4000-44398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44392/", + "id": 44392, + "name": "The Judgment", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return-1-the-judgment/4000-44392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-903340/", + "id": 903340, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-buyers-guide-1258/4000-903340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345143/", + "id": 345143, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-29/4000-345143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139735/", + "id": 139735, + "name": "Mary Jane, Run! I Can't Stop Myself... I Have To Kill You!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-28-mary-jane-run-i-cant/4000-139735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275040/", + "id": 275040, + "name": "Fratello contro Fratello", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-32-fratello-contro-fratello/4000-275040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178808/", + "id": 178808, + "name": "Slaughter on Fifth Avenue", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-finale-2-slaughter-on-fifth-avenue/4000-178808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64465/", + "id": 64465, + "name": "The Price!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-429-the-price/4000-64465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44426/", + "id": 44426, + "name": "With Great Power Comes Great Coincidence", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-11-with-great-power-comes-great-coinciden/4000-44426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44410/", + "id": 44410, + "name": "No Time Like the Present!", + "site_detail_url": "https://comicvine.gamespot.com/unlimited-access-1-no-time-like-the-present/4000-44410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44400/", + "id": 44400, + "name": "The Span Of Years", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-86-the-span-of-years/4000-44400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44399/", + "id": 44399, + "name": "Son of the Hunter, part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-252-son-of-the-hunter-p/4000-44399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44395/", + "id": 44395, + "name": "Suspended Sentence", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-4-suspended-sentence/4000-44395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44309/", + "id": 44309, + "name": "Songbird: Alone!", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-8-songbird-alone/4000-44309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44301/", + "id": 44301, + "name": "Opening Doors", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-21-opening-doors/4000-44301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715231/", + "id": 715231, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-28/4000-715231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-684388/", + "id": 684388, + "name": "Spindelmannen moter Framtidens Spindel!", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199706-spindelmannen-moter-framtidens-/4000-684388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139765/", + "id": 139765, + "name": "In The Shadow Of D'Spayre!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-27-in-the-shadow-of-dsp/4000-139765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381765/", + "id": 381765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-25/4000-381765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209049/", + "id": 209049, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-23/4000-209049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178807/", + "id": 178807, + "name": "The Spider Strategem", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-finale-1-the-spider-strategem/4000-178807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140971/", + "id": 140971, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-2-volume-2/4000-140971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64464/", + "id": 64464, + "name": "A Farewell to Arms", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-428-a-farewell-to-arms/4000-64464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57303/", + "id": 57303, + "name": "All My Pasts Remembered!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-18-all-my-pasts-remembered/4000-57303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44303/", + "id": 44303, + "name": "Little Lies", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-85-little-lies/4000-44303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44302/", + "id": 44302, + "name": "Son of the Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-251-son-of-the-hunter/4000-44302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44298/", + "id": 44298, + "name": "Power Vacuum!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-3-power-vacuum/4000-44298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44200/", + "id": 44200, + "name": "Bad Men on Campus!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-25-bad-men-on-campus/4000-44200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44192/", + "id": 44192, + "name": "Akasha Triumphant", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-20-akasha-triumphant/4000-44192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345142/", + "id": 345142, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-27/4000-345142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411252/", + "id": 411252, + "name": "Het verhaal van het jaar!", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-184-het-verhaal-van-het-jaar/4000-411252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139736/", + "id": 139736, + "name": "The Final Chapter Of Maximum Clonage!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-26-the-final-chapter-of/4000-139736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715230/", + "id": 715230, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-26/4000-715230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196305/", + "id": 196305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-22/4000-196305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127558/", + "id": 127558, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revelations-1/4000-127558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96292/", + "id": 96292, + "name": "The Messiah Syndrome", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-132-the-messiah-syndrome/4000-96292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-73738/", + "id": 73738, + "name": "Final Judgment!", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-513-final-judgment/4000-73738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64662/", + "id": 64662, + "name": "Nothing Stops the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-84-nothing-stops-the-juggernaut/4000-64662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64463/", + "id": 64463, + "name": "The Doctor is In!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-427-the-doctor-is-in/4000-64463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44193/", + "id": 44193, + "name": "Citizen Osborn!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-250-citizen-osborn/4000-44193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44190/", + "id": 44190, + "name": "Greece Is the Word", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-2-greece-is-the-word/4000-44190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44095/", + "id": 44095, + "name": "What Would Spidey Do?!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-24-what-would-spidey-do/4000-44095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44087/", + "id": 44087, + "name": "The Return", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-19-the-return/4000-44087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411251/", + "id": 411251, + "name": "De jongen die de toekomst zag!", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-183-de-jongen-die-de-toekomst-zag/4000-411251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139737/", + "id": 139737, + "name": "The Ultimate Spider-Saga! Maximum Clonage!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-25-the-ultimate-spider-/4000-139737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396090/", + "id": 396090, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/os-fabulosos-x-men-21/4000-396090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295282/", + "id": 295282, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-25/4000-295282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804876/", + "id": 804876, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/cracked-collectors-edition-112/4000-804876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698672/", + "id": 698672, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-e-batman-1/4000-698672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381760/", + "id": 381760, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-23/4000-381760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313940/", + "id": 313940, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-18/4000-313940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279535/", + "id": 279535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-87/4000-279535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226956/", + "id": 226956, + "name": "Up From The Ashes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-6-up-from-the-ashes/4000-226956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64661/", + "id": 64661, + "name": "Vertigo", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-83-vertigo/4000-64661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64462/", + "id": 64462, + "name": "Only the Evil Return!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-426-only-the-evil-return/4000-64462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44096/", + "id": 44096, + "name": "The Greatest Secret in the Marvel Universe Revealed!", + "site_detail_url": "https://comicvine.gamespot.com/what-if-100-the-greatest-secret-in-the-marvel-univ/4000-44096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44088/", + "id": 44088, + "name": "Into the Light", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-249-into-the-light/4000-44088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44085/", + "id": 44085, + "name": "D.E.A.D. to Rights!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-1-dead-to-rights/4000-44085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43982/", + "id": 43982, + "name": "In the Shadow of the Crime-Master", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-23-in-the-shadow-of-the/4000-43982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43976/", + "id": 43976, + "name": "Powerless And Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-18-powerless-and-respon/4000-43976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139738/", + "id": 139738, + "name": "If Spidey Joins The Jackal... He's Gonna Get Punished!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-24-if-spidey-joins-the-/4000-139738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715229/", + "id": 715229, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-24/4000-715229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425796/", + "id": 425796, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-first-strikes-1-tpb/4000-425796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381756/", + "id": 381756, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-22/4000-381756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-227104/", + "id": 227104, + "name": "A Little Knowledge", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-5-a-little-knowledge/4000-227104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119817/", + "id": 119817, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-72/4000-119817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64660/", + "id": 64660, + "name": "You've Got To Have Friends (Of Humanity?)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-82-youve-got-to-have-friends-of-humanit/4000-64660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64461/", + "id": 64461, + "name": "The Chump, The Challenge And The Champion!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-425-the-chump-the-challenge/4000-64461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57302/", + "id": 57302, + "name": "I, Robot Master!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-17-i-robot-master/4000-57302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44006/", + "id": 44006, + "name": "The Story of the Year!", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-346-the-story-of-the-year/4000-44006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43983/", + "id": 43983, + "name": "The Men Behind The Mask", + "site_detail_url": "https://comicvine.gamespot.com/what-if-99-the-men-behind-the-mask/4000-43983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43977/", + "id": 43977, + "name": "From the Shadows", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-248-from-the-shadows/4000-43977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43885/", + "id": 43885, + "name": "Danger", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man--1-danger/4000-43885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43879/", + "id": 43879, + "name": "The pre-powered Peter Parker in here there be Monsters!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-1-the-pre-powered-peter/4000-43879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139739/", + "id": 139739, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-23/4000-139739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715228/", + "id": 715228, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-23/4000-715228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900586/", + "id": 900586, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-oro-11/4000-900586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313938/", + "id": 313938, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-16/4000-313938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143309/", + "id": 143309, + "name": "...Before The Dawn", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-97-1-before-the-dawn/4000-143309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101785/", + "id": 101785, + "name": "Where Have All The Heroes Gone?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man--1-where-have-all-the-heroe/4000-101785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68477/", + "id": 68477, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man--1/4000-68477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43915/", + "id": 43915, + "name": "The Boy Who Saw Tomorrow !", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men--1-the-boy-who-saw-tomorrow/4000-43915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43886/", + "id": 43886, + "name": "What If Starring Bishop The Man From the Future!", + "site_detail_url": "https://comicvine.gamespot.com/what-if--1-what-if-starring-bishop-the-man-from-th/4000-43886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43880/", + "id": 43880, + "name": "That Thompson Boy!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-1-that-thompson-boy/4000-43880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305566/", + "id": 305566, + "name": "It's Always Darkest...", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-97-1-its-always-darkest/4000-305566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43782/", + "id": 43782, + "name": "The Spider & The Scarecrow", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-22-the-spider-the-scare/4000-43782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43775/", + "id": 43775, + "name": "Helpless!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-17-helpless/4000-43775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139740/", + "id": 139740, + "name": "The Truth is Out There!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-22-the-truth-is-out-the/4000-139740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715227/", + "id": 715227, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-22/4000-715227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386949/", + "id": 386949, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amalgama-3/4000-386949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381617/", + "id": 381617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-20/4000-381617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181104/", + "id": 181104, + "name": "Dead Men Walking", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-97-1-dead-men-walking/4000-181104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121291/", + "id": 121291, + "name": "The Black Cat's path", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-origins-10-the-black-cats-path/4000-121291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96289/", + "id": 96289, + "name": "Of Time And Truth", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-129-of-time-and-truth/4000-96289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64659/", + "id": 64659, + "name": "Shadow Of The Cat", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-81-shadow-of-the-cat/4000-64659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64460/", + "id": 64460, + "name": "Then Came...Elektra", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-424-then-cameelektra/4000-64460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43777/", + "id": 43777, + "name": "Old Scores", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-7-old-scores/4000-43777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43776/", + "id": 43776, + "name": "Mad Jack", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-247-mad-jack/4000-43776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51702/", + "id": 51702, + "name": "Part 4: Sirens", + "site_detail_url": "https://comicvine.gamespot.com/code-of-honor-4-part-4-sirens/4000-51702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43694/", + "id": 43694, + "name": "Menace!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-21-menace/4000-43694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43687/", + "id": 43687, + "name": "Paralyzed!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-16-paralyzed/4000-43687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139741/", + "id": 139741, + "name": "Opening Statements", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-21-opening-statements/4000-139741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715226/", + "id": 715226, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-21/4000-715226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712149/", + "id": 712149, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-1/4000-712149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381616/", + "id": 381616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-19/4000-381616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362920/", + "id": 362920, + "name": "Spider-Man / Batman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-dc-crossover-1-spider-man-batman/4000-362920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226909/", + "id": 226909, + "name": "The Name of the Game", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-2-the-name-of-the-game/4000-226909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121631/", + "id": 121631, + "name": "Trial And Error!", + "site_detail_url": "https://comicvine.gamespot.com/venom-on-trial-3-trial-and-error/4000-121631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96288/", + "id": 96288, + "name": "Beneath The Silver Skin", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-128-beneath-the-silver-skin/4000-96288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64658/", + "id": 64658, + "name": "Blood Simple", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-80-blood-simple/4000-64658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64459/", + "id": 64459, + "name": "Choices", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-423-choices/4000-64459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57301/", + "id": 57301, + "name": "One Knight in Latveria!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-16-one-knight-in-latveria/4000-57301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43688/", + "id": 43688, + "name": "The Legion of Losers!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-246-the-legion-of-loser/4000-43688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170625/", + "id": 170625, + "name": "Legami di Sangue!", + "site_detail_url": "https://comicvine.gamespot.com/rat-man-collection-1-legami-di-sangue/4000-170625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139742/", + "id": 139742, + "name": "The Return of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-20-the-return-of-the-gr/4000-139742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43594/", + "id": 43594, + "name": "Down to Earth", + "site_detail_url": "https://comicvine.gamespot.com/x-man-26-down-to-earth/4000-43594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43592/", + "id": 43592, + "name": "Wings of Hatred", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-20-wings-of-hatred/4000-43592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43591/", + "id": 43591, + "name": "Justice... Like Lightning!", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-1-justice-like-lightning/4000-43591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43584/", + "id": 43584, + "name": "Secrets", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hobgoblin-lives-3-secrets/4000-43584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43582/", + "id": 43582, + "name": "Inundated!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-15-inundated/4000-43582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715117/", + "id": 715117, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-20/4000-715117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139743/", + "id": 139743, + "name": "Crossfire, Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-19-crossfire-part-one/4000-139743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381615/", + "id": 381615, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-18/4000-381615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200815/", + "id": 200815, + "name": "Aces & Eights", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-dead-mans-hand-1-aces-eights/4000-200815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127462/", + "id": 127462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-16/4000-127462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121614/", + "id": 121614, + "name": "Disorder In The Court!", + "site_detail_url": "https://comicvine.gamespot.com/venom-on-trial-2-disorder-in-the-court/4000-121614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64657/", + "id": 64657, + "name": "After The Fall", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-79-after-the-fall/4000-64657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64458/", + "id": 64458, + "name": "Exposed Wiring", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-422-exposed-wiring/4000-64458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43583/", + "id": 43583, + "name": "Kravinov's Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-245-kravinovs-revenge/4000-43583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125586/", + "id": 125586, + "name": "Apples & Origins", + "site_detail_url": "https://comicvine.gamespot.com/bug-1-apples-origins/4000-125586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107398/", + "id": 107398, + "name": "Dead Man Walking", + "site_detail_url": "https://comicvine.gamespot.com/punisher-17-dead-man-walking/4000-107398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51700/", + "id": 51700, + "name": "Part 2: Verdicts", + "site_detail_url": "https://comicvine.gamespot.com/code-of-honor-2-part-2-verdicts/4000-51700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43493/", + "id": 43493, + "name": "Eight Arms to Hold You", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-19-eight-arms-to-hold-y/4000-43493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43486/", + "id": 43486, + "name": "Higher Ground", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-14-higher-ground/4000-43486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715116/", + "id": 715116, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-19/4000-715116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139744/", + "id": 139744, + "name": "Lives Unlived", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-18-lives-unlived/4000-139744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845545/", + "id": 845545, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-19/4000-845545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202257/", + "id": 202257, + "name": "My Fair Spidey; Love Hurts; Atom-Age Amore; The Greatest Gift; The Way", + "site_detail_url": "https://comicvine.gamespot.com/marvel-valentines-day-special-1-my-fair-spidey-lov/4000-202257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197056/", + "id": 197056, + "name": "Crossing Over, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-badrock-1a-crossing-over-part-1/4000-197056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135774/", + "id": 135774, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-origins-7-original-sin/4000-135774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130186/", + "id": 130186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-355/4000-130186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121028/", + "id": 121028, + "name": "Crossing Over, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-badrock-1b-crossing-over-part-2/4000-121028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114727/", + "id": 114727, + "name": "Unions: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-12-unions-part-2/4000-114727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64656/", + "id": 64656, + "name": "The Love Of A Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-78-the-love-of-a-woman/4000-64656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64457/", + "id": 64457, + "name": "Enter: The Dragonfly!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-421-enter-the-dragonfly/4000-64457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43488/", + "id": 43488, + "name": "Breaking and Entering", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-6-breaking-and-entering/4000-43488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43487/", + "id": 43487, + "name": "Backlash", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-244-backlash/4000-43487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109110/", + "id": 109110, + "name": "T'was The Night Before Christmas", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-420-twas-the-night-before-c/4000-109110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43397/", + "id": 43397, + "name": "First Noel", + "site_detail_url": "https://comicvine.gamespot.com/x-man-24-first-noel/4000-43397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43395/", + "id": 43395, + "name": "Unseen Dangers", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-18-unseen-dangers/4000-43395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43389/", + "id": 43389, + "name": "Back in Business", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hobgoblin-lives-2-back-in-business/4000-43389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43387/", + "id": 43387, + "name": "A Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-13-a-savage-land/4000-43387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43379/", + "id": 43379, + "name": "Deadline!", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-3-deadline/4000-43379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715115/", + "id": 715115, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-18/4000-715115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411244/", + "id": 411244, + "name": "Luchtgevecht!", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-176-luchtgevecht/4000-411244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107397/", + "id": 107397, + "name": "Total X-Tinction Part 5: Dead To Rights", + "site_detail_url": "https://comicvine.gamespot.com/punisher-16-total-x-tinction-part-5-dead-to-rights/4000-107397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139745/", + "id": 139745, + "name": "Unholy Alliances!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-17-unholy-alliances/4000-139745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381613/", + "id": 381613, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-16/4000-381613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169250/", + "id": 169250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/osborn-journals-1/4000-169250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114726/", + "id": 114726, + "name": "Unions", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-11-unions/4000-114726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64655/", + "id": 64655, + "name": "The Vampire's Kiss", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-77-the-vampires-kiss/4000-64655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57300/", + "id": 57300, + "name": "Facing The Void", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-15-facing-the-void/4000-57300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43388/", + "id": 43388, + "name": "Who Am I?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-243-who-am-i/4000-43388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172358/", + "id": 172358, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-101-ways-to-end-the-clone-saga-1/4000-172358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51699/", + "id": 51699, + "name": "Part 1: Guns", + "site_detail_url": "https://comicvine.gamespot.com/code-of-honor-1-part-1-guns/4000-51699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43283/", + "id": 43283, + "name": "Spidey Battles Hawkeye the Marksman!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-17-spidey-battles-hawke/4000-43283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43278/", + "id": 43278, + "name": "Victims", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hobgoblin-lives-1-victims/4000-43278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43276/", + "id": 43276, + "name": "A Matter Of Respect", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-12-a-matter-of-respect/4000-43276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43269/", + "id": 43269, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-2/4000-43269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715118/", + "id": 715118, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-17/4000-715118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417705/", + "id": 417705, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-96-1-tpb/4000-417705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139746/", + "id": 139746, + "name": "Spider, Spider, Who's Got the Spider?", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-16-spider-spider-whos-g/4000-139746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384396/", + "id": 384396, + "name": "Promotional", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-origins-1-promotional/4000-384396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166513/", + "id": 166513, + "name": "New Age Dawning", + "site_detail_url": "https://comicvine.gamespot.com/batmanspider-man-1-new-age-dawning/4000-166513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152366/", + "id": 152366, + "name": "What Power is This?", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-505-what-power-is-this/4000-152366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138233/", + "id": 138233, + "name": "Hewoes", + "site_detail_url": "https://comicvine.gamespot.com/hewoes-1-hewoes/4000-138233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130184/", + "id": 130184, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-353/4000-130184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120919/", + "id": 120919, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-mankingpin-to-the-death-1/4000-120919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114725/", + "id": 114725, + "name": "To Catch a Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-10-to-catch-a-spider/4000-114725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64654/", + "id": 64654, + "name": "SHOC", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-76-shoc/4000-64654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64456/", + "id": 64456, + "name": "The Bite of the Black Tarantula is Always -- Fatal!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-419-the-bite-of-the-black-t/4000-64456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43277/", + "id": 43277, + "name": "Facedancing", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-242-facedancing/4000-43277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305538/", + "id": 305538, + "name": "A Night On the Town!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-96-1-a-night-on-the-tow/4000-305538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43089/", + "id": 43089, + "name": "The Boy Next Door", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-16-the-boy-next-door/4000-43089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43081/", + "id": 43081, + "name": "Revelations, Part 2 of 4: Deadly Diversions", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-11-revelations-part-2-o/4000-43081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43073/", + "id": 43073, + "name": "Front Page: A Daily Bugle Report", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-1-front-page-a-daily-bugle-report/4000-43073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715104/", + "id": 715104, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-16/4000-715104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411242/", + "id": 411242, + "name": "Ken uw vijand", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-174-ken-uw-vijand/4000-411242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139747/", + "id": 139747, + "name": "Schemes & Dreams: For Future Screams", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-15-schemes-and-dreams-f/4000-139747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845544/", + "id": 845544, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-18/4000-845544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381611/", + "id": 381611, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-14/4000-381611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160839/", + "id": 160839, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-64/4000-160839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143308/", + "id": 143308, + "name": "Heart & Soul", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-96-1-heart-soul/4000-143308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114723/", + "id": 114723, + "name": "Where Demons Ride!", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-9-where-demons-ride/4000-114723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64653/", + "id": 64653, + "name": "Revelations Part 4: Night of the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-75-revelations-part-4-night-of-the-gobl/4000-64653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64455/", + "id": 64455, + "name": "Revelations, Part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-418-revelations-part-3-of-4/4000-64455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43105/", + "id": 43105, + "name": "Fight and Flight!", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-339-fight-and-flight/4000-43105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43083/", + "id": 43083, + "name": "Crescent City Memories", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-5-crescent-city-memories/4000-43083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43082/", + "id": 43082, + "name": "A New Day Dawning", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-241-a-new-day-dawning/4000-43082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43065/", + "id": 43065, + "name": "The Crossing!", + "site_detail_url": "https://comicvine.gamespot.com/dcmarvel-all-access-1-the-crossing/4000-43065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77951/", + "id": 77951, + "name": "Global Swarming", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-10-global-swarming/4000-77951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42992/", + "id": 42992, + "name": "The Battle For the Daily Bugle!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-15-the-battle-for-the-d/4000-42992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715103/", + "id": 715103, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-15/4000-715103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139748/", + "id": 139748, + "name": "The Gift", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-14-the-gift/4000-139748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691969/", + "id": 691969, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-and-batman-1/4000-691969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381610/", + "id": 381610, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-13/4000-381610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166452/", + "id": 166452, + "name": "Spider-Man and Daredevil Greatest Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-daredevil-greatest-team-ups-1-spide/4000-166452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159171/", + "id": 159171, + "name": "Crossed Generations", + "site_detail_url": "https://comicvine.gamespot.com/spider-mangen-13-1-crossed-generations/4000-159171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153415/", + "id": 153415, + "name": "Kraven's First Hunt", + "site_detail_url": "https://comicvine.gamespot.com/sensational-spider-man-annual-96-1-kravens-first-h/4000-153415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151351/", + "id": 151351, + "name": "Instinct (Part Two)", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-3-instinct-part-two/4000-151351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146261/", + "id": 146261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-312/4000-146261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141628/", + "id": 141628, + "name": "Savage Dragon / Destroyer Duck", + "site_detail_url": "https://comicvine.gamespot.com/savage-dragon-destroyer-duck-1-savage-dragon-destr/4000-141628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114719/", + "id": 114719, + "name": "Time Has Come Today Kingpin's Return", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-8-time-has-come-today/4000-114719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107693/", + "id": 107693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cyber-force-28/4000-107693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64652/", + "id": 64652, + "name": "Last Of The Heroes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-74-last-of-the-heroes/4000-64652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64454/", + "id": 64454, + "name": "Secrets!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-417-secrets/4000-64454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57299/", + "id": 57299, + "name": "Game's End", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-14-games-end/4000-57299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42987/", + "id": 42987, + "name": "Revelations, Part 1 of 4: Walking Into Spiderwebs", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-240-revelations-part-1-/4000-42987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77950/", + "id": 77950, + "name": "Swarmed!", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-9-swarmed/4000-77950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42886/", + "id": 42886, + "name": "The Only Thing Right", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-14-the-only-thing-right/4000-42886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715102/", + "id": 715102, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-14/4000-715102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139749/", + "id": 139749, + "name": "Truths & Deceptions", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-13-truths-and-deception/4000-139749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715053/", + "id": 715053, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-13/4000-715053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381609/", + "id": 381609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-12/4000-381609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267152/", + "id": 267152, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amalgam-age-of-comics-the-marvel-comics-collec/4000-267152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218573/", + "id": 218573, + "name": "Tarzan of the Apes Battles the Stone Pharaoh", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-127-tarzan-of-the-apes-battles-the-st/4000-218573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160838/", + "id": 160838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-62/4000-160838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157289/", + "id": 157289, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-and-legends-1996/4000-157289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114718/", + "id": 114718, + "name": "Crimetown, U.S.A.", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-7-crimetown-usa/4000-114718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108418/", + "id": 108418, + "name": "The Road Block", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-416-the-road-block/4000-108418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64651/", + "id": 64651, + "name": "Legacy", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-73-legacy/4000-64651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42904/", + "id": 42904, + "name": "Know Thy Enemy", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-337-know-thy-enemy/4000-42904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200223/", + "id": 200223, + "name": "DC vs. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/dc-vs-marvel-1-dc-vs-marvel/4000-200223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77949/", + "id": 77949, + "name": "The Usual Suspects", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-8-the-usual-suspects/4000-77949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64650/", + "id": 64650, + "name": "Onslaught Impact 2: The World's Gone Mad!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-72-onslaught-impact-2-the-worlds-gone-m/4000-64650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42799/", + "id": 42799, + "name": "Without Warning", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-13-without-warning/4000-42799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139750/", + "id": 139750, + "name": "End Hunt", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-12-end-hunt/4000-139750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295281/", + "id": 295281, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-12/4000-295281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845543/", + "id": 845543, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-17/4000-845543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146259/", + "id": 146259, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-310/4000-146259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114714/", + "id": 114714, + "name": "Puppets", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-6-puppets/4000-114714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64453/", + "id": 64453, + "name": "Onslaught Impact 2: The Sentinels Take Manhattan! - Siege", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-415-onslaught-impact-2-the-/4000-64453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77948/", + "id": 77948, + "name": "High Drama", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-7-high-drama/4000-77948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42703/", + "id": 42703, + "name": "The Secrets of Betty Brant!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-12-the-secrets-of-betty/4000-42703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139751/", + "id": 139751, + "name": "The Hunting", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-11-the-hunting/4000-139751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295280/", + "id": 295280, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-11/4000-295280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436832/", + "id": 436832, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-79/4000-436832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381606/", + "id": 381606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-10/4000-381606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255718/", + "id": 255718, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-8/4000-255718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159413/", + "id": 159413, + "name": "Modesty Blaise in Honeygun", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-125-modesty-blaise-in-honeygun/4000-159413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114713/", + "id": 114713, + "name": "Rhino's Revenge", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-5-rhinos-revenge/4000-114713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109399/", + "id": 109399, + "name": "Little Deaths", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-237-little-deaths/4000-109399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64649/", + "id": 64649, + "name": "The Promise", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-71-the-promise/4000-64649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64452/", + "id": 64452, + "name": "From Darkness Strikes -- Delilah!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-414-from-darkness-strikes-d/4000-64452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57298/", + "id": 57298, + "name": "The Sting Of Conscience!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-13-the-sting-of-conscience/4000-57298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42704/", + "id": 42704, + "name": "Arachnamorphosis", + "site_detail_url": "https://comicvine.gamespot.com/what-if-88-arachnamorphosis/4000-42704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77947/", + "id": 77947, + "name": "The Ultimate Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-6-the-ultimate-responsi/4000-77947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42605/", + "id": 42605, + "name": "Shock Follows Shock", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-11-shock-follows-shock/4000-42605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139752/", + "id": 139752, + "name": "A Time to Live!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-10-a-time-to-live/4000-139752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295279/", + "id": 295279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-10/4000-295279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-938084/", + "id": 938084, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-saga-of-the-alien-costume-1/4000-938084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218570/", + "id": 218570, + "name": "Sky Masters of the Space Force", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-124-sky-masters-of-the-space-force/4000-218570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114711/", + "id": 114711, + "name": "The Vulture's Rage", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-4-the-vultures-rage/4000-114711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109398/", + "id": 109398, + "name": "Free Will", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-236-free-will/4000-109398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74533/", + "id": 74533, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-347/4000-74533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64648/", + "id": 64648, + "name": "Above It All", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-70-above-it-all/4000-64648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64451/", + "id": 64451, + "name": "Bug Story", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-413-bug-story/4000-64451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42601/", + "id": 42601, + "name": "Charming Devils", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-354-charming-devils/4000-42601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42599/", + "id": 42599, + "name": "History Repeats Itself", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-400-history-repeats-itself/4000-42599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77946/", + "id": 77946, + "name": "Blood Brothers, Part 5 of 6: Collisions With the Past", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-5-blood-brothers-part-5/4000-77946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42497/", + "id": 42497, + "name": "Call Her...Commanda!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-10-call-hercommanda/4000-42497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139753/", + "id": 139753, + "name": "Tentacles", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-9-tentacles/4000-139753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295278/", + "id": 295278, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-9/4000-295278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845542/", + "id": 845542, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-16/4000-845542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255723/", + "id": 255723, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-6/4000-255723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218347/", + "id": 218347, + "name": "The Phantom", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-123-the-phantom/4000-218347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192292/", + "id": 192292, + "name": "Sergio Aragones Massacres Marvel", + "site_detail_url": "https://comicvine.gamespot.com/sergio-aragones-massacres-marvel-1-sergio-aragones/4000-192292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121394/", + "id": 121394, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legacy-of-evil-1/4000-121394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114705/", + "id": 114705, + "name": "Sinister Intentions!", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-3-sinister-intentions/4000-114705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113519/", + "id": 113519, + "name": "It Begins With A Bang Not A Whimper!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-69-it-begins-with-a-bang-not-a-whimper/4000-113519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109397/", + "id": 109397, + "name": "Puppets", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-235-puppets/4000-109397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96930/", + "id": 96930, + "name": "Child's Play", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-the-x-men-3-childs-play/4000-96930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64450/", + "id": 64450, + "name": "Blood Brothers, Part 6 of 6", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-412-blood-brothers-part-6-o/4000-64450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42498/", + "id": 42498, + "name": "What if Scarlet Spider killed Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-86-what-if-scarlet-spider-killed-spider-ma/4000-42498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105978/", + "id": 105978, + "name": "Round Four", + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-4-round-four/4000-105978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77945/", + "id": 77945, + "name": "Blood Brothers, Part 1 of 6: Leap of Faith", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-4-blood-brothers-part-1/4000-77945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42401/", + "id": 42401, + "name": "Cry...Lizard!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-9-crylizard/4000-42401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139754/", + "id": 139754, + "name": "Back From the Edge, Part 3: Deadmen", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-8-back-from-the-edge-pa/4000-139754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-429675/", + "id": 429675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/le-journal-de-mickey-2291/4000-429675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295277/", + "id": 295277, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-8/4000-295277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255722/", + "id": 255722, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision-5/4000-255722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218345/", + "id": 218345, + "name": "Buz Sawyer ; Gasoline Alley", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-122-buz-sawyer-gasoline-alley/4000-218345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139755/", + "id": 139755, + "name": "Back From the Edge, Part 1: Outcasts!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-7-back-from-the-edge-pa/4000-139755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114704/", + "id": 114704, + "name": "When the Hammer Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-2-when-the-hammer-str/4000-114704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113554/", + "id": 113554, + "name": "Who Did Spider-Man Murder?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-12-who-did-spider-man-murder/4000-113554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65629/", + "id": 65629, + "name": "Blood Brothers, Part 4 of 6: Leap of Faith", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-234-blood-brothers-part/4000-65629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64647/", + "id": 64647, + "name": "Blood Brothers, Part 3 of 6 Into the Depths", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-68-blood-brothers-part-3-of-6-into-the-/4000-64647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64449/", + "id": 64449, + "name": "Blood Brothers, Part 2 of 6- Targets!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-411-blood-brothers-part-2-o/4000-64449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77944/", + "id": 77944, + "name": "Web of Carnage, Part 1 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-3-web-of-carnage-part-1/4000-77944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64448/", + "id": 64448, + "name": "Web of Carnage, Part 2 of 4: And Now -- Spider Carnage", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-410-web-of-carnage-part-2-o/4000-64448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42305/", + "id": 42305, + "name": "Harry's Story", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-8-harrys-story/4000-42305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295276/", + "id": 295276, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-7/4000-295276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139668/", + "id": 139668, + "name": "Higher Ground", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-6-higher-ground/4000-139668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381602/", + "id": 381602, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-6/4000-381602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218344/", + "id": 218344, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-121/4000-218344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114623/", + "id": 114623, + "name": "Shot in the Dark", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-1-shot-in-the-dark/4000-114623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111182/", + "id": 111182, + "name": "Big Trouble", + "site_detail_url": "https://comicvine.gamespot.com/spider-boy-1-big-trouble/4000-111182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111127/", + "id": 111127, + "name": "Doomed!", + "site_detail_url": "https://comicvine.gamespot.com/x-patrol-1-doomed/4000-111127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65628/", + "id": 65628, + "name": "Web of Carnage, Part 4 of 4: Inner Demons", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-233-web-of-carnage-part/4000-65628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64646/", + "id": 64646, + "name": "Web of Carnage, Part 3 of 4 Who Am I?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-67-web-of-carnage-part-3-of-4-who-am-i/4000-64646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273699/", + "id": 273699, + "name": "Zero", + "site_detail_url": "https://comicvine.gamespot.com/the-phoenix-resurrection-0-zero/4000-273699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170666/", + "id": 170666, + "name": "Speciale Origini!", + "site_detail_url": "https://comicvine.gamespot.com/rat-man-0-speciale-origini/4000-170666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105511/", + "id": 105511, + "name": "Round Two", + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-2-round-two/4000-105511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42210/", + "id": 42210, + "name": "On the Trail of the Amazing Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-7-on-the-trail-of-the-a/4000-42210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295275/", + "id": 295275, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-6/4000-295275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139644/", + "id": 139644, + "name": "Breakdown", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-5-breakdown/4000-139644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-938083/", + "id": 938083, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-spider-man-and-the-mark-of-the-man/4000-938083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845541/", + "id": 845541, + "name": " ", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-15/4000-845541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435932/", + "id": 435932, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-51-excalibur/4000-435932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381601/", + "id": 381601, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-5/4000-381601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294074/", + "id": 294074, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-306/4000-294074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218209/", + "id": 218209, + "name": "Modesty Blaise : The Maori Contract", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-120-modesty-blaise-the-maori-contract/4000-218209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165787/", + "id": 165787, + "name": "Spider-Man and Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-uncanny-x-men-1-spider-man-and-unca/4000-165787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125771/", + "id": 125771, + "name": "To End The Begin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-final-adventure-4-to-end-the-begin/4000-125771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119033/", + "id": 119033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/extreme-previews-96-1/4000-119033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107018/", + "id": 107018, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/battlezones-dream-team-2-1/4000-107018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65627/", + "id": 65627, + "name": "A Show of Force, of Clones, Bones and Doc Ock!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-232-a-show-of-force-of-/4000-65627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64645/", + "id": 64645, + "name": "The Return of Kaine, Part 4 of 4 End Game", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-66-the-return-of-kaine-part-4-of-4-end-/4000-64645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42201/", + "id": 42201, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-18-the-amazing-spider-man/4000-42201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148446/", + "id": 148446, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-timeslide-1/4000-148446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42099/", + "id": 42099, + "name": "Double Jeopardy", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-6-double-jeopardy/4000-42099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295274/", + "id": 295274, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-5/4000-295274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139643/", + "id": 139643, + "name": "The Monster Within", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-4-the-monster-within/4000-139643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381600/", + "id": 381600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-4/4000-381600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218049/", + "id": 218049, + "name": "The Drums of Phantom Head", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-119-the-drums-of-phantom-head/4000-218049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125770/", + "id": 125770, + "name": "Skin Deep", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-final-adventure-3-skin-deep/4000-125770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114654/", + "id": 114654, + "name": "Jungle Stalkings", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-15-jungle-stalkings/4000-114654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97653/", + "id": 97653, + "name": "Nightmare in Scarlet, Part 3: Red Reign", + "site_detail_url": "https://comicvine.gamespot.com/web-of-scarlet-spider-4-nightmare-in-scarlet-part-/4000-97653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42100/", + "id": 42100, + "name": "The Man in the Million-Dollar Mask: What if J. Jonah Jameson adopted Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-82-the-man-in-the-million-dollar-mask-what/4000-42100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124299/", + "id": 124299, + "name": "The Double and The Parker Legacy", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-lost-years-0-the-double-and-the-par/4000-124299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77941/", + "id": 77941, + "name": "Ultimate Commitment", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-0-ultimate-commitment/4000-77941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41991/", + "id": 41991, + "name": "Vulture on the Wing!", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-5-vulture-on-the-wing/4000-41991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295273/", + "id": 295273, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-4/4000-295273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139642/", + "id": 139642, + "name": "Mother Love... Mother Hate!", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-3-mother-love-mother-ha/4000-139642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379549/", + "id": 379549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-54/4000-379549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316389/", + "id": 316389, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/last-avengers-story-1-tpb/4000-316389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292086/", + "id": 292086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-1/4000-292086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266055/", + "id": 266055, + "name": "Showdown of the Century", + "site_detail_url": "https://comicvine.gamespot.com/cracked-super-11-showdown-of-the-century/4000-266055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218048/", + "id": 218048, + "name": "Circea", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-118-circea/4000-218048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202842/", + "id": 202842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hot-shots-spider-man-1/4000-202842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197051/", + "id": 197051, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultraforce-spider-man-1b/4000-197051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194022/", + "id": 194022, + "name": "KISS", + "site_detail_url": "https://comicvine.gamespot.com/kissnation-1-kiss/4000-194022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170759/", + "id": 170759, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-53/4000-170759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167037/", + "id": 167037, + "name": "Spider-Man's Greatest Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-greatest-team-ups-1-spider-mans-greate/4000-167037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125769/", + "id": 125769, + "name": "The Thin Line", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-final-adventure-2-the-thin-line/4000-125769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119965/", + "id": 119965, + "name": "Not a Creature Was Stirring / Unto Others / Hark! The Herald! / Ambush at Angel Rock / Humbug", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-1996-not-a-creature-was-sti/4000-119965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119327/", + "id": 119327, + "name": "Courtroom Sequence", + "site_detail_url": "https://comicvine.gamespot.com/savage-hulk-1-courtroom-sequence/4000-119327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114653/", + "id": 114653, + "name": "Ock Rocks/Into the Mystic", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-14-ock-rocksinto-the-mystic/4000-114653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65625/", + "id": 65625, + "name": "Brother's Keeper", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-230-brother-s-keeper/4000-65625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57297/", + "id": 57297, + "name": "The Skull Jackets", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-11-the-skull-jackets/4000-57297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41984/", + "id": 41984, + "name": "Amazing Adventures", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-17-amazing-adventures/4000-41984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219686/", + "id": 219686, + "name": "A Matter of Faith", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-holiday-special-1-a-matter-of-faith/4000-219686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117446/", + "id": 117446, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-last-avengers-story-2/4000-117446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41774/", + "id": 41774, + "name": "The Measure of A Man", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-4-the-measure-of-a-man/4000-41774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41773/", + "id": 41773, + "name": "Double or Nothing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-1-double-or-nothing/4000-41773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295272/", + "id": 295272, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-3/4000-295272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139641/", + "id": 139641, + "name": "Behind the Walls", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-2-behind-the-walls/4000-139641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845534/", + "id": 845534, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-14/4000-845534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381598/", + "id": 381598, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wiz-2/4000-381598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294072/", + "id": 294072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-304/4000-294072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218047/", + "id": 218047, + "name": "Alley Oop Faces His Worst Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-117-alley-oop-faces-his-worst-nightma/4000-218047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125747/", + "id": 125747, + "name": "Destiny's Web", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-final-adventure-1-destinys-web/4000-125747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125022/", + "id": 125022, + "name": "Mad for Madripoor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-swimsuit-special-4-mad-for-madripoor/4000-125022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114652/", + "id": 114652, + "name": "Day of the Chameleon", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-13-day-of-the-chameleon/4000-114652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109872/", + "id": 109872, + "name": "Marvel Riot", + "site_detail_url": "https://comicvine.gamespot.com/marvel-riot-1-marvel-riot/4000-109872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108452/", + "id": 108452, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-phoenix-resurrection-red-shift-0/4000-108452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41765/", + "id": 41765, + "name": "An Amazing World", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-16-an-amazing-world/4000-41765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589161/", + "id": 589161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-78/4000-589161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120918/", + "id": 120918, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-parker-years-1/4000-120918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118062/", + "id": 118062, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-meets-spider-man-1/4000-118062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110386/", + "id": 110386, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kills-the-marvel-universe-1-gn/4000-110386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78466/", + "id": 78466, + "name": "Virtual Mortality, Part 2: Violated By The Virtual", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-scarlet-spider-1-virtual-mortality-par/4000-78466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41645/", + "id": 41645, + "name": "Sand Blasted", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-3-sand-blasted/4000-41645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295271/", + "id": 295271, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-2/4000-295271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417704/", + "id": 417704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-marvel-1995/4000-417704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139626/", + "id": 139626, + "name": "An Obituary for Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-1-an-obituary-for-octop/4000-139626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381597/", + "id": 381597, + "name": "Wiz", + "site_detail_url": "https://comicvine.gamespot.com/wiz-1-wiz/4000-381597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319844/", + "id": 319844, + "name": "Uomo Ragno - X-Force - Ghost", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-3-uomo-ragno-x-force-ghost/4000-319844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295270/", + "id": 295270, + "name": "Kraven the Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-adventures-1-kraven-the-hun/4000-295270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217583/", + "id": 217583, + "name": "The Amazing Spider-Man in Fearless Vampire Player", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-116-the-amazing-spider-man-in-fearles/4000-217583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217581/", + "id": 217581, + "name": "Modesty Blaise in Ripper Jax", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-115-modesty-blaise-in-ripper-jax/4000-217581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124975/", + "id": 124975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mutants-vs-ultras-first-encounters-1/4000-124975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114651/", + "id": 114651, + "name": "Takin' It to the Streets", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-12-takin-it-to-the-streets/4000-114651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108245/", + "id": 108245, + "name": "Wave of Mutilation Part 2; Red Shift Chapter 7", + "site_detail_url": "https://comicvine.gamespot.com/ultraforce-2-wave-of-mutilation-part-2-red-shift-c/4000-108245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107561/", + "id": 107561, + "name": "...And You Make Your Choice; Red Shift Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/prime-2-and-you-make-your-choice-red-shift-chapter/4000-107561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139552/", + "id": 139552, + "name": "Planet of the Symbiotes, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-super-special-1-planet-of-the-sy/4000-139552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65624/", + "id": 65624, + "name": "The Greatest Responsibility, Part 3 of 3: No More The Hero!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-229-the-greatest-respon/4000-65624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65554/", + "id": 65554, + "name": "Time Bomb (Part 2): By My Hand, Mary Jane Must Die!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-129-time-bomb-part-2-by-my-hand-/4000-65554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64642/", + "id": 64642, + "name": "The Greatest Responsibility, Part 2 of 3: Squeeze Play!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-63-the-greatest-responsibility-part-2-o/4000-64642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64444/", + "id": 64444, + "name": "The Greatest Responsibility, Part 1 of 3: Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-406-the-greatest-responsibi/4000-64444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41517/", + "id": 41517, + "name": "Castles In The Air", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-2-castles-in-the-air/4000-41517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217580/", + "id": 217580, + "name": "Buz Sawyer", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-114-buz-sawyer/4000-217580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160835/", + "id": 160835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-50/4000-160835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114649/", + "id": 114649, + "name": "The Hobgoblin: Bad Luck & Trouble!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-11-the-hobgoblin-bad-luck-tr/4000-114649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107560/", + "id": 107560, + "name": "A Matter of Soul", + "site_detail_url": "https://comicvine.gamespot.com/prime-1-a-matter-of-soul/4000-107560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74526/", + "id": 74526, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-340/4000-74526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41518/", + "id": 41518, + "name": "What if the New Fantastic Four Had Remained a Team?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-78-what-if-the-new-fantastic-four-had-rema/4000-41518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239412/", + "id": 239412, + "name": "Spiderman!", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-199509-2-spiderman/4000-239412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140414/", + "id": 140414, + "name": "Planet of the Symbiotes, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-super-special-1-planet-of-t/4000-140414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65623/", + "id": 65623, + "name": "Time Bomb Part 1: Run For Your Life!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-228-time-bomb-part-1-ru/4000-65623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65553/", + "id": 65553, + "name": "Exiled (Part 1): Who Will wear The Webs?", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-128-exiled-part-1-who-will-wear-/4000-65553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64641/", + "id": 64641, + "name": "Exiled, Part 3 of 4: Look Down", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-62-exiled-part-3-of-4-look-down/4000-64641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64443/", + "id": 64443, + "name": "Exiled, Part 2 of 4: Wired for Death", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-405-exiled-part-2-of-4-wire/4000-64443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41388/", + "id": 41388, + "name": "To Serve And Protect", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-1-to-serve-and-protect/4000-41388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845531/", + "id": 845531, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-13/4000-845531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382457/", + "id": 382457, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/facteur-x-37/4000-382457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379548/", + "id": 379548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-52/4000-379548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239410/", + "id": 239410, + "name": "Summer Movie Special!", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-199509-summer-movie-special/4000-239410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217410/", + "id": 217410, + "name": "Steve Canyon : Dreams of Flight", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-113-steve-canyon-dreams-of-flight/4000-217410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172301/", + "id": 172301, + "name": "Wonder Years", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-marvels-wonder-years-2-wonder-years/4000-172301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134665/", + "id": 134665, + "name": "Disordered Minds", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-batman-1-disordered-minds/4000-134665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120140/", + "id": 120140, + "name": "The Nanosecond the Earth Stood Still", + "site_detail_url": "https://comicvine.gamespot.com/black-september-the-nanosecond-the-earth-stood-sti/4000-120140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114648/", + "id": 114648, + "name": "The Alien Costume Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-10-the-alien-costume-part-3/4000-114648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107457/", + "id": 107457, + "name": "What's A Hero Anyway?", + "site_detail_url": "https://comicvine.gamespot.com/prime-infinity-what-s-a-hero-anyway/4000-107457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41406/", + "id": 41406, + "name": "Women In Flight", + "site_detail_url": "https://comicvine.gamespot.com/ruins-2-women-in-flight/4000-41406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196059/", + "id": 196059, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-jackal-files-1/4000-196059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190632/", + "id": 190632, + "name": "Maximum Clonage Conclusion: The End of the Beginning", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-clonage-omega-1-maximum-clonage/4000-190632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190583/", + "id": 190583, + "name": "Maximum Clonage Part 1: ...And the Jackel Cries, \"Death!\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-clonage-1-maximum-clonage-part-/4000-190583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135337/", + "id": 135337, + "name": "Planet of the Symbiotes, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/venom-super-special-1-planet-of-the-symbiotes-part/4000-135337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109299/", + "id": 109299, + "name": "Maximum Clonage Part 5: If Death Be My Destiny", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-227-maximum-clonage-par/4000-109299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65552/", + "id": 65552, + "name": "Maximum Clonage (Part 2): The Last Temptation Of Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-127-maximum-clonage-part-2-the-l/4000-65552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64640/", + "id": 64640, + "name": "Maximum Clonage, Part 4 of 6: Heading Towards Omega", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-61-maximum-clonage-part-4-of-6-heading-/4000-64640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64442/", + "id": 64442, + "name": "Maximum Clonage, Part 3 of 6: War of the Spider-Men!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-404-maximum-clonage-part-3-/4000-64442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-341692/", + "id": 341692, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spirou-2990/4000-341692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294068/", + "id": 294068, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-300/4000-294068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217409/", + "id": 217409, + "name": "Buz Sawyer", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-112-buz-sawyer/4000-217409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114647/", + "id": 114647, + "name": "The Alien Costume Part 2: Paint It Black!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-9-the-alien-costume-part-2-p/4000-114647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41259/", + "id": 41259, + "name": "What If Peter Parker Had to Destroy Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/what-if-76-what-if-peter-parker-had-to-destroy-spi/4000-41259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140411/", + "id": 140411, + "name": "Planet of the Symbiotes, Part 2: Lurkers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-super-special-1-planet-of-the-symbiotes/4000-140411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65621/", + "id": 65621, + "name": "The Trial of Peter Parker, Part 4 of 4: The Final Verdict", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-226-the-trial-of-peter-/4000-65621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65551/", + "id": 65551, + "name": "The Trial of Peter Parker (Part 1): Opening Statements", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-126-the-trial-of-peter-parker-pa/4000-65551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64639/", + "id": 64639, + "name": "The Trial of Peter Parker, Part 3 of 4: The Face of Kaine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-60-the-trial-of-peter-parker-part-3-of-/4000-64639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64441/", + "id": 64441, + "name": "The Trial of Peter Parker, Part 2 of 4: Savage Judgement!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-403-the-trial-of-peter-park/4000-64441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382456/", + "id": 382456, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/facteur-x-36/4000-382456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379547/", + "id": 379547, + "name": "The New Dark Night", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-51-the-new-dark-night/4000-379547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293884/", + "id": 293884, + "name": "l'Uomo Ragno - X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-16-luomo-ragno-x-factor/4000-293884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217407/", + "id": 217407, + "name": "Krazy Kat", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-111-krazy-kat/4000-217407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131272/", + "id": 131272, + "name": "Reset", + "site_detail_url": "https://comicvine.gamespot.com/double-edge-1-reset/4000-131272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121504/", + "id": 121504, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dream-team-1/4000-121504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117815/", + "id": 117815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/prime-vs-the-incredible-hulk-0/4000-117815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114646/", + "id": 114646, + "name": "The Alien Costume", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-8-the-alien-costume/4000-114646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41119/", + "id": 41119, + "name": "What if Blink of Generation X had Not Died?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-75-what-if-blink-of-generation-x-had-not-d/4000-41119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111213/", + "id": 111213, + "name": "Crossfire: Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-402-crossfire-part-one/4000-111213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110899/", + "id": 110899, + "name": "Planet of the Symbiotes Chapter One: The Far Cry!; Street Fear; Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-super-special-1-planet-of-the-s/4000-110899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65620/", + "id": 65620, + "name": "The Return of the Green Goblin; He Was Such a Nice Boy...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-225-the-return-of-the-g/4000-65620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65550/", + "id": 65550, + "name": "Lives Unlived; Shining Armor", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-125-lives-unlived-shining-armor/4000-65550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64638/", + "id": 64638, + "name": "Crossfire, Part Two: The Future is Now", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-59-crossfire-part-two-the-future-is-now/4000-64638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293883/", + "id": 293883, + "name": "l'Uomo Ragno - Bestia - Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-15-luomo-ragno-bestia-hobgoblin/4000-293883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217179/", + "id": 217179, + "name": "Modesty Blaise : The Aristo", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-110-modesty-blaise-the-aristo/4000-217179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166480/", + "id": 166480, + "name": "Spider-Man: Clone Genesis", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-clone-genesis-1-spider-man-clone-genesi/4000-166480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114644/", + "id": 114644, + "name": "Doctor Octopus Armed and Dangerous", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-7-doctor-octopus-armed-and-d/4000-114644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107500/", + "id": 107500, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/black-september-preview-book-1/4000-107500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125693/", + "id": 125693, + "name": "A Farewell To Arms!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus-3-a-farewell-to-/4000-125693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65619/", + "id": 65619, + "name": "The Mark of Kaine Part 4: The Assassin With My Face", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-224-the-mark-of-kaine-p/4000-65619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65549/", + "id": 65549, + "name": "The Mark of Kaine, Part 1: Walls", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-124-the-mark-of-kaine-part-1-wal/4000-65549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64637/", + "id": 64637, + "name": "The Mark of Kaine, Part Three of Five - Spider, Spider, Who's Got The Spider?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-58-the-mark-of-kaine-part-three-of-five/4000-64637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64440/", + "id": 64440, + "name": "The Mark of Kaine, Part Two of Five: Down in the Darkness", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-401-the-mark-of-kaine-part-/4000-64440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57296/", + "id": 57296, + "name": "The Mark of Kaine, Part Five of Five: The Sinister Six Strike!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-9-the-mark-of-kaine-part-five/4000-57296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388674/", + "id": 388674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-79/4000-388674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293882/", + "id": 293882, + "name": "l'Uomo Ragno - Sabretooth - pubisher", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-14-luomo-ragno-sabretooth-pubishe/4000-293882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217176/", + "id": 217176, + "name": "Phantom Cowboy", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-109-phantom-cowboy/4000-217176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201538/", + "id": 201538, + "name": "Life's End", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-spider-man-1-lifes-end/4000-201538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145600/", + "id": 145600, + "name": "Issue #1", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-powers-unlimited-1-issue-1/4000-145600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141650/", + "id": 141650, + "name": "Portraits of a Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvels-portraits-3-portraits-of-a-universe/4000-141650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114639/", + "id": 114639, + "name": "Kraven the Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-6-kraven-the-hunter/4000-114639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40864/", + "id": 40864, + "name": "Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/x-universe-1-last-stand/4000-40864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-589154/", + "id": 589154, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-71/4000-589154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125692/", + "id": 125692, + "name": "Armed and Dangerous", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus-2-armed-and-dang/4000-125692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65618/", + "id": 65618, + "name": "Aftershocks Part 2- Schemes And Dreams: For Future Screams; The Parker Legacy, Part Three of Three: The Beginning", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-223-aftershocks-part-2-/4000-65618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65548/", + "id": 65548, + "name": "Players and Pawns, Part 2: True Lies", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-123-players-and-pawns-part-2-tru/4000-65548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64636/", + "id": 64636, + "name": "Aftershocks", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-57-aftershocks/4000-64636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64439/", + "id": 64439, + "name": "A Death in the Family", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-400-a-death-in-the-family/4000-64439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40723/", + "id": 40723, + "name": "Real Heroes!", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-7-real-heroes/4000-40723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388671/", + "id": 388671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-78/4000-388671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217170/", + "id": 217170, + "name": "Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-108-flash-gordon/4000-217170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166252/", + "id": 166252, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-12/4000-166252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137379/", + "id": 137379, + "name": "From the Inside Out", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-power-of-terror-4-from-the-inside-o/4000-137379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114640/", + "id": 114640, + "name": "The Menace of Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-5-the-menace-of-mysterio/4000-114640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91571/", + "id": 91571, + "name": "A Hawk Supreme (Part 3): Glory!", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-50-a-hawk-supreme-part-3-glory/4000-91571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68473/", + "id": 68473, + "name": "Once More Into The Fray", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-35-once-more-into-t/4000-68473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64981/", + "id": 64981, + "name": "Fire Of Freedom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-4-fire-of-freedom/4000-64981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40734/", + "id": 40734, + "name": "What If Spider-Man Became a Murderer?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-72-what-if-spider-man-became-a-murderer/4000-40734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211817/", + "id": 211817, + "name": "Puppet", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-journal-1-puppet/4000-211817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125633/", + "id": 125633, + "name": "Eight Arms Beyond the Grave", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus-1-eight-arms-bey/4000-125633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118602/", + "id": 118602, + "name": "The Mightiest Marvels", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-6-the-mightiest-marvels/4000-118602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108737/", + "id": 108737, + "name": "Going Out of Business Sale", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-29-going-out-of-business-sale/4000-108737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65617/", + "id": 65617, + "name": "Players and Pawns Part 1: False Truths", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-222-players-and-pawns-p/4000-65617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65547/", + "id": 65547, + "name": "Smoke and Mirrors, Part 1: The Call", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-122-smoke-and-mirrors-part-1-the/4000-65547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379545/", + "id": 379545, + "name": "Marvel Goes to the Movies", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-49-marvel-goes-to-the-movies/4000-379545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216992/", + "id": 216992, + "name": "Gasoline Alley", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-107-gasoline-alley/4000-216992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166251/", + "id": 166251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-11/4000-166251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141649/", + "id": 141649, + "name": "Portraits of a Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvels-portraits-1-portraits-of-a-universe/4000-141649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137378/", + "id": 137378, + "name": "Division of Power", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-power-of-terror-3-division-of-power/4000-137378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114638/", + "id": 114638, + "name": "Return of the Spider-Slayers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-4-return-of-the-spider-slaye/4000-114638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64978/", + "id": 64978, + "name": "Stolen Lives", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-3-stolen-lives/4000-64978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64635/", + "id": 64635, + "name": "Smoke and Mirrors, Part 3 of 3: Truths & Deceptions", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-56-smoke-and-mirrors-part-3-of-3-truths/4000-64635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64438/", + "id": 64438, + "name": "Smoke and Mirrors, Part 2 of 3: The Jackal Reborn!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-399-smoke-and-mirrors-part-/4000-64438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40596/", + "id": 40596, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine-6/4000-40596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40595/", + "id": 40595, + "name": "Dead on Arrival", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-25-dead-on-arrival/4000-40595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216991/", + "id": 216991, + "name": "The Amazing Spider-Man : The Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-106-the-amazing-spider-man-the-kingpi/4000-216991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166250/", + "id": 166250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-10/4000-166250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158495/", + "id": 158495, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-42/4000-158495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137377/", + "id": 137377, + "name": "Warzone", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-power-of-terror-2-warzone/4000-137377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114637/", + "id": 114637, + "name": "The Spider-Slayer", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-3-the-spider-slayer/4000-114637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65616/", + "id": 65616, + "name": "Web of Death, 4 of 4: A Time to Die!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-221-web-of-death-4-of-4/4000-65616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64975/", + "id": 64975, + "name": "Targets", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-2-targets/4000-64975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64437/", + "id": 64437, + "name": "Web of Death, Part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-398-web-of-death-part-3-of-/4000-64437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57295/", + "id": 57295, + "name": "Behind The Terror", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-8-behind-the-terror/4000-57295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40462/", + "id": 40462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine-5/4000-40462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78416/", + "id": 78416, + "name": "Part 2: Lost Souls", + "site_detail_url": "https://comicvine.gamespot.com/venom-separation-anxiety-2-part-2-lost-souls/4000-78416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415946/", + "id": 415946, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/sensational-spider-man-wizard-mini-comic-3/4000-415946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379546/", + "id": 379546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-48/4000-379546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373053/", + "id": 373053, + "name": "Age of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvels-portraits-2-age-of-heroes/4000-373053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310866/", + "id": 310866, + "name": "Adventures in Comics Collecting! Starring Captain Woodchuck", + "site_detail_url": "https://comicvine.gamespot.com/adventures-in-comics-collecting-starring-captain-w/4000-310866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269989/", + "id": 269989, + "name": "1995", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-report-5-1995/4000-269989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202027/", + "id": 202027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-how-to-beat-the-bullyjubilee-peer-press/4000-202027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174145/", + "id": 174145, + "name": "The Secret Origin of KISS; The Marvel/KISS Connection; Blood on the Plates; KISS VS. The Dark Lord.", + "site_detail_url": "https://comicvine.gamespot.com/kiss-classics-1-the-secret-origin-of-kiss-the-marv/4000-174145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167079/", + "id": 167079, + "name": "Spider-Man: Invasion of the Spider-Slayers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-invasion-of-the-spider-slayers-1-spider/4000-167079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167039/", + "id": 167039, + "name": "Spider-Man's Greatest Villains", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-greatest-villains-1-spider-mans-greate/4000-167039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166451/", + "id": 166451, + "name": "Spider-Man vs. Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-green-goblin-1-spider-man-vs-green-g/4000-166451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153038/", + "id": 153038, + "name": "Post Mortem", + "site_detail_url": "https://comicvine.gamespot.com/punisher-year-one-2-post-mortem/4000-153038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137376/", + "id": 137376, + "name": "Beneficial Alliances", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-power-of-terror-1-beneficial-allian/4000-137376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134448/", + "id": 134448, + "name": "Mirrors; Midsummer Knights 2099; Old Red-Eyes is Back", + "site_detail_url": "https://comicvine.gamespot.com/2099-unlimited-7-mirrors-midsummer-knights-2099-ol/4000-134448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127419/", + "id": 127419, + "name": "Battle Royal!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project-6-battle-royal/4000-127419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114636/", + "id": 114636, + "name": "The Sting of the Scorpion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-2-the-sting-of-the-scorpion/4000-114636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70492/", + "id": 70492, + "name": "Book 2 of 5", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-ultra-collection-2-book-2-of-5/4000-70492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66565/", + "id": 66565, + "name": "Ashes to Ashes", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-29-ashes-to-ashes/4000-66565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65615/", + "id": 65615, + "name": "Web of Death Part 2: A Time to Live!; Scoop!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-220-web-of-death-part-2/4000-65615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65545/", + "id": 65545, + "name": "Web of Life, Part 1: Lure of the Spider", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-120-web-of-life-part-1-lure-of-t/4000-65545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64972/", + "id": 64972, + "name": "Power Meetings", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-1-power-meetings/4000-64972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64633/", + "id": 64633, + "name": "Web of Life, Part 2 of 4: Snared", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-54-web-of-life-part-2-of-4-snared/4000-64633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64436/", + "id": 64436, + "name": "Web of Death, Part 1 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-397-web-of-death-part-1-of-/4000-64436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40326/", + "id": 40326, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine-4/4000-40326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413352/", + "id": 413352, + "name": "The Bug Stops Here / No Job Too Big", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-bug-stops-here-1-the-bug-stops-here-no-/4000-413352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345164/", + "id": 345164, + "name": "The Task and the Terror", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-peter-pan-peanut-butter-4-the-task-and-/4000-345164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345163/", + "id": 345163, + "name": "Like a Volt from the Blue", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-peter-pan-peanut-butter-3-like-a-volt-f/4000-345163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345162/", + "id": 345162, + "name": "The Scorpion Sanction", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-peter-pan-peanut-butter-2-the-scorpion-/4000-345162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345161/", + "id": 345161, + "name": "The Vulture's nest", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-peter-pan-peanut-butter-1-the-vultures-/4000-345161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300408/", + "id": 300408, + "name": "Spider-Man: When Heroes Clash", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-2-2-spi/4000-300408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78415/", + "id": 78415, + "name": "Part 1: Apart", + "site_detail_url": "https://comicvine.gamespot.com/venom-separation-anxiety-1-part-1-apart/4000-78415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40110/", + "id": 40110, + "name": "An Eye Like Mars, To Threaten And Command", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-55-an-eye-like-mars-to-thr/4000-40110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169029/", + "id": 169029, + "name": "Marvel 1994-The Year In Review", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review-6-marvel-1994-the-year-in-re/4000-169029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216990/", + "id": 216990, + "name": "Tarzan", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-104-tarzan/4000-216990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166249/", + "id": 166249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-9/4000-166249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166248/", + "id": 166248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-8/4000-166248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119964/", + "id": 119964, + "name": "Catastrophe On 34th St. / A Midnight Clear / Losin' The Blues / The Eternal Game / Star Of The Show / The Night Before X-Mas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-1994-catastrophe-on-34th-st/4000-119964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114620/", + "id": 114620, + "name": "Night of the Lizard", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures-1-night-of-the-lizard/4000-114620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65614/", + "id": 65614, + "name": "Back from the Edge, Part 4 of 4: Two of a Kind", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-219-back-from-the-edge-/4000-65614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64435/", + "id": 64435, + "name": "Back from the Edge, Part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-396-back-from-the-edge-part/4000-64435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57125/", + "id": 57125, + "name": "Arachnicide", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project-5-arachnicide/4000-57125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57052/", + "id": 57052, + "name": "Blood of the Hunted Part 4", + "site_detail_url": "https://comicvine.gamespot.com/solo-4-blood-of-the-hunted-part-4/4000-57052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40088/", + "id": 40088, + "name": "What If... Captain America Were Revived Today? Part 2", + "site_detail_url": "https://comicvine.gamespot.com/what-if-68-what-if-captain-america-were-revived-to/4000-40088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40085/", + "id": 40085, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine-3/4000-40085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39969/", + "id": 39969, + "name": "The Spiders From Mars", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-54-the-spiders-from-mars/4000-39969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294057/", + "id": 294057, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-294/4000-294057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216537/", + "id": 216537, + "name": "Their Favorite Foes!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-103-their-favorite-foes/4000-216537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166479/", + "id": 166479, + "name": "The Very Best of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/very-best-of-spider-man-1-the-very-best-of-spider-/4000-166479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166247/", + "id": 166247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-7/4000-166247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115457/", + "id": 115457, + "name": "Spider-man's Gonna Find Out The Secret Of Arachnis....The Hard Way", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project-4-spider-mans-gonn/4000-115457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94407/", + "id": 94407, + "name": "Crucible of Power, Part Four: Passing of a Hero", + "site_detail_url": "https://comicvine.gamespot.com/annex-4-crucible-of-power-part-four-passing-of-a-h/4000-94407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70246/", + "id": 70246, + "name": "Basic Arithmetic", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-53-basic-arithmetic/4000-70246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68468/", + "id": 68468, + "name": "Regretful Decisions", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-30-regretful-decisi/4000-68468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65612/", + "id": 65612, + "name": "Back From The Edge Part 2: When Monsters Roam!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-218-back-from-the-edge-/4000-65612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65132/", + "id": 65132, + "name": "With Foes Like These...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-291-with-foes-like-these/4000-65132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65123/", + "id": 65123, + "name": "Approaching Dusk", + "site_detail_url": "https://comicvine.gamespot.com/the-prowler-1-approaching-dusk/4000-65123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64434/", + "id": 64434, + "name": "Back From The Edge Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-395-back-from-the-edge-part/4000-64434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57294/", + "id": 57294, + "name": "Second Rate Choices; A Conflict of Interests!; To Protect and Serve", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-7-second-rate-choices-a-confl/4000-57294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57051/", + "id": 57051, + "name": "Blood of the Hunted Part 3", + "site_detail_url": "https://comicvine.gamespot.com/solo-3-blood-of-the-hunted-part-3/4000-57051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39945/", + "id": 39945, + "name": "What If... Captain America Were Revived Today? Part 1 A Fighting Chance", + "site_detail_url": "https://comicvine.gamespot.com/what-if-67-what-if-captain-america-were-revived-to/4000-39945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39942/", + "id": 39942, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine-2/4000-39942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293875/", + "id": 293875, + "name": "Gli uccisori di eroi 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-7-gli-uccisori-di-eroi-2/4000-293875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274662/", + "id": 274662, + "name": "Sabotaggio", + "site_detail_url": "https://comicvine.gamespot.com/x-force-2-sabotaggio/4000-274662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216536/", + "id": 216536, + "name": "Tarzan : One Down ; Steve Canyon : In Search of Summer", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-102-tarzan-one-down-steve-canyon-in-s/4000-216536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166246/", + "id": 166246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-6/4000-166246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111981/", + "id": 111981, + "name": "Chimera Lost - Part 4", + "site_detail_url": "https://comicvine.gamespot.com/felicia-hardy-the-black-cat-4-chimera-lost-part-4/4000-111981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94406/", + "id": 94406, + "name": "Crucible of Power, Part Three: Ascent", + "site_detail_url": "https://comicvine.gamespot.com/annex-3-crucible-of-power-part-three-ascent/4000-94406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65611/", + "id": 65611, + "name": "Power and Responsibility, Part 4- Higher Ground", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-217-power-and-responsib/4000-65611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65542/", + "id": 65542, + "name": "Power and Responsibility, Part 1: Shadow Rising", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-117-power-and-responsibility-par/4000-65542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65130/", + "id": 65130, + "name": "The Fury of X-Factor!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-290-the-fury-of-x-factor/4000-65130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64630/", + "id": 64630, + "name": "Power and Responsibility, Part 3: A Heart Beat Away!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-51-power-and-responsibility-part-3-a-he/4000-64630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64433/", + "id": 64433, + "name": "Power and Responsibility, Part 2- Breakdown!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-394-power-and-responsibilit/4000-64433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57131/", + "id": 57131, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-web-of-doom-3/4000-57131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57124/", + "id": 57124, + "name": "The Jury Is In And The Verdict For Spider-Man Is... ...Death!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project-3-the-jury-is-in-a/4000-57124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57050/", + "id": 57050, + "name": "Blood of the Hunted Part 2", + "site_detail_url": "https://comicvine.gamespot.com/solo-2-blood-of-the-hunted-part-2/4000-57050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39800/", + "id": 39800, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine-1/4000-39800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39787/", + "id": 39787, + "name": "Baron Ground", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-432-baron-ground/4000-39787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281065/", + "id": 281065, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-jack-kirby-collector-1/4000-281065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39704/", + "id": 39704, + "name": "Shrieking, Part Four: Mother Love...Mother Hate!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-393-shrieking-part-four-mot/4000-39704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293951/", + "id": 293951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-292/4000-293951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293874/", + "id": 293874, + "name": "Gli uccisori di eroi 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-6-gli-uccisori-di-eroi-1/4000-293874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166245/", + "id": 166245, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-5/4000-166245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70411/", + "id": 70411, + "name": "Catfight!", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-classic-5-catfight/4000-70411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65610/", + "id": 65610, + "name": "The Predator and the Prey, Part Two: Time is on NO Side!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-216-the-predator-and-th/4000-65610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65127/", + "id": 65127, + "name": "When Warriors Clash", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-289-when-warriors-clash/4000-65127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64629/", + "id": 64629, + "name": "Son of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-50-son-of-the-hunter/4000-64629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57130/", + "id": 57130, + "name": "Caught!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-web-of-doom-2-caught/4000-57130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57123/", + "id": 57123, + "name": "The Diggers Strike!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project-2-the-diggers-stri/4000-57123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57049/", + "id": 57049, + "name": "Blood of the Hunted Part 1", + "site_detail_url": "https://comicvine.gamespot.com/solo-1-blood-of-the-hunted-part-1/4000-57049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48960/", + "id": 48960, + "name": "The Shape Of Things That Came", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-unlimited-7-the-shape-of-things-tha/4000-48960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39654/", + "id": 39654, + "name": "Live and Let Die, Part Four: Crescendo", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-116-live-and-let-die-part-four-c/4000-39654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39498/", + "id": 39498, + "name": "Peter Parker No More!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-392-peter-parker-no-more/4000-39498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38400/", + "id": 38400, + "name": "Wrath of a Woman Scorned; Future History Part III;", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-annual-4-wrath-of-a-woman-/4000-38400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294274/", + "id": 294274, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-book-whos-who-1/4000-294274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216312/", + "id": 216312, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-100/4000-216312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171590/", + "id": 171590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/san-diego-comic-con-comics-3/4000-171590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170751/", + "id": 170751, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-36/4000-170751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166241/", + "id": 166241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-4/4000-166241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166066/", + "id": 166066, + "name": "Lest No Bridge Be Unburned", + "site_detail_url": "https://comicvine.gamespot.com/normalman-megaton-man-special-1-lest-no-bridge-be-/4000-166066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94404/", + "id": 94404, + "name": "Crucible of Power, Part One: Enemy Unknown", + "site_detail_url": "https://comicvine.gamespot.com/annex-1-crucible-of-power-part-one-enemy-unknown/4000-94404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70410/", + "id": 70410, + "name": "102 Uses for a Dead Cat", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-classic-4-102-uses-for-a-dead-cat/4000-70410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65609/", + "id": 65609, + "name": "The Predator and the Prey, Part One: The Monster Within", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-215-the-predator-and-th/4000-65609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65125/", + "id": 65125, + "name": "The Sinister Syndicate!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-288-the-sinister-syndicate/4000-65125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57293/", + "id": 57293, + "name": "By Myself Betrayed!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-6-by-myself-betrayed/4000-57293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57129/", + "id": 57129, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-web-of-doom-1/4000-57129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57122/", + "id": 57122, + "name": "Styx And Stone May Break Your Bones But The Jury Will Destroy You!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project-1-styx-and-stone-m/4000-57122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39514/", + "id": 39514, + "name": "What If Iron Man went public?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-64-what-if-iron-man-went-public/4000-39514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39513/", + "id": 39513, + "name": "Live and Let Die, Part Three: Shellshocked!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-115-live-and-let-die-part-three-/4000-39513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39511/", + "id": 39511, + "name": "Cold Hearts", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-49-cold-hearts/4000-39511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39508/", + "id": 39508, + "name": "A Tiny Little War", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-18-a-tiny-little-war/4000-39508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39505/", + "id": 39505, + "name": "Origins", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-160-origins/4000-39505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39424/", + "id": 39424, + "name": "Shrieking, Part Two: The Burning Fuse", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-391-shrieking-part-two-the-/4000-39424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39369/", + "id": 39369, + "name": "Amid the Encircling Gloom; Future History (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/galactic-guardians-1-amid-the-encircling-gloom-fut/4000-39369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436807/", + "id": 436807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-54/4000-436807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293872/", + "id": 293872, + "name": "Sovrani del dolore 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-miniserie-4-sovrani-del-dolore-1/4000-293872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214809/", + "id": 214809, + "name": "Modesty Blaise", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-99-modesty-blaise/4000-214809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166432/", + "id": 166432, + "name": "Spider-Man: Round Robin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-round-robin-1-spider-man-round-robin/4000-166432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166244/", + "id": 166244, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-3/4000-166244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111968/", + "id": 111968, + "name": "Chimera Lost - Part 1 (Sharp Turns)", + "site_detail_url": "https://comicvine.gamespot.com/felicia-hardy-the-black-cat-1-chimera-lost-part-1-/4000-111968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107475/", + "id": 107475, + "name": "Pariah Part 4: Bad Turn", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-68-pariah-part-4-bad-turn/4000-107475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65608/", + "id": 65608, + "name": "Bloody Justice", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-214-bloody-justice/4000-65608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65121/", + "id": 65121, + "name": "Savage is the Sable!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-287-savage-is-the-sable/4000-65121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57134/", + "id": 57134, + "name": "Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames-3-part-3/4000-57134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39381/", + "id": 39381, + "name": "Live and Let Die, Part Two: Who Among Us?", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-114-live-and-let-die-part-two-wh/4000-39381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39379/", + "id": 39379, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-16/4000-39379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39378/", + "id": 39378, + "name": "Demons of our Past", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-48-demons-of-our-past/4000-39378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39374/", + "id": 39374, + "name": "\"The Long Goodbye\"", + "site_detail_url": "https://comicvine.gamespot.com/quasar-60-the-long-goodbye/4000-39374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39373/", + "id": 39373, + "name": "Dance of the Hunter III - Alliance", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-23-dance-of-the-hunter-/4000-39373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39283/", + "id": 39283, + "name": "Shrieking, Part One: Behind the Walls", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-390-shrieking-part-one-behi/4000-39283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-340828/", + "id": 340828, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spirou-2931/4000-340828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900576/", + "id": 900576, + "name": "Torment", + "site_detail_url": "https://comicvine.gamespot.com/marvel-oro-1-torment/4000-900576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318832/", + "id": 318832, + "name": "Monstruos cotidianos", + "site_detail_url": "https://comicvine.gamespot.com/marvels-2-monstruos-cotidianos/4000-318832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214808/", + "id": 214808, + "name": "Alley Oop Face to Face with ... The Cardiff Giant!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-98-alley-oop-face-to-face-with-the-ca/4000-214808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157263/", + "id": 157263, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-137/4000-157263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77999/", + "id": 77999, + "name": "Shriek, Rattle, and Roll", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-10-shriek-rattle-and-roll/4000-77999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77439/", + "id": 77439, + "name": "Pariah Part Three", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-67-pariah-part-three/4000-77439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68463/", + "id": 68463, + "name": "Reunions", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-25-reunions/4000-68463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65607/", + "id": 65607, + "name": "Typhoid Attack, Part One of Two", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-213-typhoid-attack-part/4000-65607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65120/", + "id": 65120, + "name": "If This Be Justice", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-286-if-this-be-justice/4000-65120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57133/", + "id": 57133, + "name": "Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames-2-part-2/4000-57133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39233/", + "id": 39233, + "name": "Live and Let Die, Part One: Darkness Descends", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-113-live-and-let-die-part-one-da/4000-39233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39231/", + "id": 39231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-15/4000-39231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39230/", + "id": 39230, + "name": "Old Habits", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-47-old-habits/4000-39230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39229/", + "id": 39229, + "name": "Down To Earth: 1", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-93-down-to-earth-1/4000-39229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39224/", + "id": 39224, + "name": "Dance of the Hunter II - Deceptions", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-22-dance-of-the-hunter-/4000-39224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39221/", + "id": 39221, + "name": "We Are Gathered Here", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-418-we-are-gathered-here/4000-39221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39141/", + "id": 39141, + "name": "The Deadly Past (Part 4): Two Million Ways To Die", + "site_detail_url": "https://comicvine.gamespot.com/the-shroud-4-the-deadly-past-part-4-two-million-wa/4000-39141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38408/", + "id": 38408, + "name": "Cycles & Circles", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-14-cycles-circle/4000-38408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57128/", + "id": 57128, + "name": "Mutanthood's End", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda-3-mutanthoods-end/4000-57128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39131/", + "id": 39131, + "name": "The Faceless Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-389-the-faceless-man/4000-39131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39092/", + "id": 39092, + "name": "What If Spider-man's Parents Destroyed His Family?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-61-what-if-spider-mans-parents-destroyed-h/4000-39092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216309/", + "id": 216309, + "name": "The Phantom : The Dragon of the Great Swamp", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-97-the-phantom-the-dragon-of-the-grea/4000-216309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166243/", + "id": 166243, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-2/4000-166243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164406/", + "id": 164406, + "name": "Break-Out At Burger World!", + "site_detail_url": "https://comicvine.gamespot.com/beavis-butt-head-3-break-out-at-burger-world/4000-164406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157262/", + "id": 157262, + "name": "New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-136-new-warriors/4000-157262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65606/", + "id": 65606, + "name": "Rain dance", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-212-rain-dance/4000-65606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65118/", + "id": 65118, + "name": "The Rules of the Game!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-285-the-rules-of-the-game/4000-65118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64432/", + "id": 64432, + "name": "Carnage is Back", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-28-carnage-is-back/4000-64432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57292/", + "id": 57292, + "name": "Estranged Tales", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-5-estranged-tales/4000-57292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57132/", + "id": 57132, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames-1-part-1/4000-57132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47731/", + "id": 47731, + "name": "Raiders of the Lost Temple!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classic-95-raiders-of-the-lost-temple/4000-47731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39091/", + "id": 39091, + "name": "Pursuit, Part Three: Trail's End", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-112-pursuit-part-three-trail-s-e/4000-39091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39089/", + "id": 39089, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-14/4000-39089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39088/", + "id": 39088, + "name": "Directions", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-46-directions/4000-39088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-39083/", + "id": 39083, + "name": "Dance of the Hunter I - Stalkers", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-21-dance-of-the-hunter-/4000-39083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57127/", + "id": 57127, + "name": "Caught In The Act", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda-2-caught-in-the-act/4000-57127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38989/", + "id": 38989, + "name": "The Sadness Of Truth", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-388-the-sadness-of-truth/4000-38989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828534/", + "id": 828534, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/vinetas-4/4000-828534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278076/", + "id": 278076, + "name": "Cavalieri di Madripoor", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-45-cavalieri-di-madripoor/4000-278076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216307/", + "id": 216307, + "name": "The Amazing Spider-Man in Mutant Agenda", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-96-the-amazing-spider-man-in-mutant-a/4000-216307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157261/", + "id": 157261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-135/4000-157261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95445/", + "id": 95445, + "name": "Life On The Edge", + "site_detail_url": "https://comicvine.gamespot.com/nightwatch-1-life-on-the-edge/4000-95445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66463/", + "id": 66463, + "name": "Under Fire, Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-48-under-fire-part-2-of-3/4000-66463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65605/", + "id": 65605, + "name": "Face Value", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-211-face-value/4000-65605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65116/", + "id": 65116, + "name": "Unmasked!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-284-unmasked/4000-65116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47730/", + "id": 47730, + "name": "An Age Undreamed Of", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classic-94-an-age-undreamed-of/4000-47730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38981/", + "id": 38981, + "name": "Loose Ends!", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-7-loose-ends/4000-38981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38951/", + "id": 38951, + "name": "Scales of Justice (The Savaging, Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-111-scales-of-justice-the-savagi/4000-38951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38949/", + "id": 38949, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-13/4000-38949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38948/", + "id": 38948, + "name": "The Dream Before", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-45-the-dream-before/4000-38948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38942/", + "id": 38942, + "name": "The Day She Died", + "site_detail_url": "https://comicvine.gamespot.com/marvels-4-the-day-she-died/4000-38942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38853/", + "id": 38853, + "name": "The Deadly Past (Part 2): Death Sting", + "site_detail_url": "https://comicvine.gamespot.com/the-shroud-2-the-deadly-past-part-2-death-sting/4000-38853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57126/", + "id": 57126, + "name": "Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda-1-part-1/4000-57126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38852/", + "id": 38852, + "name": "The Thief Of Years", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-387-the-thief-of-years/4000-38852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38791/", + "id": 38791, + "name": "Tree Of Knowledge - Part 1", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-326-tree-of-knowledge-part-1/4000-38791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216181/", + "id": 216181, + "name": "Defrosting Joel ; a Gasoline Alley Adventure", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-95-defrosting-joel-a-gasoline-alley-a/4000-216181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150232/", + "id": 150232, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-1/4000-150232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145990/", + "id": 145990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-134/4000-145990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121193/", + "id": 121193, + "name": "Psychic Consequences", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-19-psychic-consequences/4000-121193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65604/", + "id": 65604, + "name": "Crashing!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-210-crashing/4000-65604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65113/", + "id": 65113, + "name": "Death Duel in the Sky!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-283-death-duel-in-the-sky/4000-65113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38843/", + "id": 38843, + "name": "The Hidden War!", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-6-the-hidden-war/4000-38843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38809/", + "id": 38809, + "name": "The Savaging, Part 1: Final Sanction", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-110-the-savaging-part-1-final-sa/4000-38809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38807/", + "id": 38807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-12/4000-38807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38806/", + "id": 38806, + "name": "The Anniversary Syndrome", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-44-the-anniversary-syndrome/4000-38806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38799/", + "id": 38799, + "name": "Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/marvels-3-judgment-day/4000-38799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38712/", + "id": 38712, + "name": "The Deadly Past (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/the-shroud-1-the-deadly-past-part-1/4000-38712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19373/", + "id": 19373, + "name": "Corrupting influences", + "site_detail_url": "https://comicvine.gamespot.com/nova-3-corrupting-influences/4000-19373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196060/", + "id": 196060, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda-0/4000-196060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38702/", + "id": 38702, + "name": "The Wings Of Age!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-386-the-wings-of-age/4000-38702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38665/", + "id": 38665, + "name": "What If the Punisher Had Killed Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-58-what-if-the-punisher-had-killed-spider-/4000-38665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-322175/", + "id": 322175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/complete-frank-miller-spider-man-1/4000-322175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216180/", + "id": 216180, + "name": "Steve Canyon", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-94-steve-canyon/4000-216180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-181498/", + "id": 181498, + "name": "Avengers Log", + "site_detail_url": "https://comicvine.gamespot.com/avengers-log-1-avengers-log/4000-181498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136871/", + "id": 136871, + "name": "Nightmare at the Dream Factory", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-29-nightmare-at-the-dream-factory/4000-136871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116006/", + "id": 116006, + "name": "Speaking Without Concern", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-1-speaking-without-concern/4000-116006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65603/", + "id": 65603, + "name": "Foreign Objects; Fateful Distractions;", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-209-foreign-objects-fat/4000-65603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65111/", + "id": 65111, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-282/4000-65111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57291/", + "id": 57291, + "name": "\"The Man Who Would Be Spider-Man!\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-4-the-man-who-would-be-spider/4000-57291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38695/", + "id": 38695, + "name": "Busted", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-5-busted/4000-38695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38664/", + "id": 38664, + "name": "A Shock to the System", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-109-a-shock-to-the-system/4000-38664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38662/", + "id": 38662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-11/4000-38662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38661/", + "id": 38661, + "name": "Media Blitz!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-43-media-blitz/4000-38661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38654/", + "id": 38654, + "name": "Monsters", + "site_detail_url": "https://comicvine.gamespot.com/marvels-2-monsters/4000-38654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119962/", + "id": 119962, + "name": "Hopes and Fears; Down Time; The Gift of the Marvelites; Mud Pi; Harvey Teabiscuit's Yule Log; Free Will", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-1993-hopes-and-fears-down-t/4000-119962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57659/", + "id": 57659, + "name": "Part 3: Necromancer", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-madness-3-part-3-necromancer/4000-57659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38563/", + "id": 38563, + "name": "Trial By Jury - Part 3: Rough Justice", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-385-trial-by-jury-part-3-ro/4000-38563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38510/", + "id": 38510, + "name": "Speed-Lines", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-11-speed-lines/4000-38510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407525/", + "id": 407525, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/like-a-volt-from-the-blue-1/4000-407525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-256217/", + "id": 256217, + "name": "Spider-Man: Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-carnage-1-spider-man-maximum-ca/4000-256217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432256/", + "id": 432256, + "name": "Es Kam aus Weltraumtiefen", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-comic-taschenbuch-20-es-kam-aus-we/4000-432256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392499/", + "id": 392499, + "name": "The Heartless Man", + "site_detail_url": "https://comicvine.gamespot.com/pro-action-spider-man-giveaway-1-the-heartless-man/4000-392499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-371075/", + "id": 371075, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/acid-head-arnie-1/4000-371075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355768/", + "id": 355768, + "name": "Volume 1: The Dark Book", + "site_detail_url": "https://comicvine.gamespot.com/wizard-press-collectors-library-series-1-volume-1-/4000-355768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315921/", + "id": 315921, + "name": "Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-extra-omnibus-1-maximum-carnage/4000-315921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269988/", + "id": 269988, + "name": "1994", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-report-4-1994/4000-269988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236861/", + "id": 236861, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/overkill-45/4000-236861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216179/", + "id": 216179, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-93-the-amazing-spider-man/4000-216179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202025/", + "id": 202025, + "name": "Blowing Smoke", + "site_detail_url": "https://comicvine.gamespot.com/real-heroes-4-blowing-smoke/4000-202025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166434/", + "id": 166434, + "name": "Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/maximum-carnage-1-maximum-carnage/4000-166434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157259/", + "id": 157259, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-132/4000-157259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136870/", + "id": 136870, + "name": "Life is a Tale Told By a Maniac", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-28-life-is-a-tale-told-by-a-maniac/4000-136870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130401/", + "id": 130401, + "name": "Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/mad-special-96-super-heroes/4000-130401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117804/", + "id": 117804, + "name": "The Spider and the Bat", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-dracula-1-the-spider-and-the-bat/4000-117804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65602/", + "id": 65602, + "name": "Fear Eats The Soul", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-208-fear-eats-the-soul/4000-65602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65109/", + "id": 65109, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-281/4000-65109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52037/", + "id": 52037, + "name": "The Fatal Cure!", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-32-the-fatal-cure/4000-52037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38555/", + "id": 38555, + "name": "Evil Woman!", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-4-evil-woman/4000-38555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38541/", + "id": 38541, + "name": "Siege of Darkness, Part 15 Sacrifice Supreme", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-61-siege-of-darkne/4000-38541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38516/", + "id": 38516, + "name": "The Eye of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-108-the-eye-of-the-storm/4000-38516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38514/", + "id": 38514, + "name": "The Man Called Electro", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-10-the-man-called-electro/4000-38514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38513/", + "id": 38513, + "name": "Lock and Load!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-42-lock-and-load/4000-38513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454220/", + "id": 454220, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-55/4000-454220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94946/", + "id": 94946, + "name": "Re-disunited", + "site_detail_url": "https://comicvine.gamespot.com/lethal-foes-of-spider-man-4-re-disunited/4000-94946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65601/", + "id": 65601, + "name": "Screaming Crimson!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-207-screaming-crimson/4000-65601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57658/", + "id": 57658, + "name": "Part 2: Paranoia", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-madness-2-part-2-paranoia/4000-57658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38309/", + "id": 38309, + "name": "Trial By Jury - Part 2: Dreams of Innocence", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-384-trial-by-jury-part-2-dr/4000-38309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922356/", + "id": 922356, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/advance-comics-60/4000-922356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683135/", + "id": 683135, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/star-magazine-oro-7/4000-683135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496217/", + "id": 496217, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199312/4000-496217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496216/", + "id": 496216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199310/4000-496216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436802/", + "id": 436802, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-49/4000-436802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379540/", + "id": 379540, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-39/4000-379540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169030/", + "id": 169030, + "name": "Marvel Year-In-Review ‘93", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review-5-marvel-year-in-review-93/4000-169030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-161260/", + "id": 161260, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hero-illustrated-6/4000-161260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95216/", + "id": 95216, + "name": "The End of a Vampire", + "site_detail_url": "https://comicvine.gamespot.com/morbius-revisited-5-the-end-of-a-vampire/4000-95216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65107/", + "id": 65107, + "name": "The Hero and the Holocaust", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-280-the-hero-and-the-holocaust/4000-65107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38267/", + "id": 38267, + "name": "The Coming Storm", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-107-the-coming-storm/4000-38267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38265/", + "id": 38265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-9/4000-38265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38264/", + "id": 38264, + "name": "Storm Warnings!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-41-storm-warnings/4000-38264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38256/", + "id": 38256, + "name": "Black Sheep", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-57-black-sheep/4000-38256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38245/", + "id": 38245, + "name": "Faith!", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-127-faith/4000-38245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239408/", + "id": 239408, + "name": "The Addams Family!", + "site_detail_url": "https://comicvine.gamespot.com/disney-adventures-199311-the-addams-family/4000-239408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108716/", + "id": 108716, + "name": "Prophet and Loss", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-13-prophet-and-loss/4000-108716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94945/", + "id": 94945, + "name": "Power Struggle", + "site_detail_url": "https://comicvine.gamespot.com/lethal-foes-of-spider-man-3-power-struggle/4000-94945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65600/", + "id": 65600, + "name": "Death by Tombstone, Conclusion- Fatal Desire!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-206-death-by-tombstone-/4000-65600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38152/", + "id": 38152, + "name": "Trial By Jury - Part 1: Judgement Night", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-383-trial-by-jury-part-1-ju/4000-38152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691760/", + "id": 691760, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/clasicos-marvel-dc-1/4000-691760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157257/", + "id": 157257, + "name": "Exclusive MARVELS Preview: The Secret Origin...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-130-exclusive-marvels-preview-the-secre/4000-157257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150229/", + "id": 150229, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-anniversary-magazine-1/4000-150229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68457/", + "id": 68457, + "name": "Recouping Losses / A New Beginning", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-18-recouping-losses/4000-68457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65105/", + "id": 65105, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-279/4000-65105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57359/", + "id": 57359, + "name": "Ravaged By Reality", + "site_detail_url": "https://comicvine.gamespot.com/thor-corps-3-ravaged-by-reality/4000-57359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57290/", + "id": 57290, + "name": "An Obituary for Octopus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-3-an-obituary-for-octopus/4000-57290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52035/", + "id": 52035, + "name": "Shadow of the Past", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-30-shadow-of-the-past/4000-52035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38110/", + "id": 38110, + "name": "What If The Avengers Lost Operation: Galactic Storm?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-55-what-if-the-avengers-lost-operation-gal/4000-38110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38109/", + "id": 38109, + "name": "Crisis of Conscience (Part 3 of 3): Judgement Day", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-106-crisis-of-conscience-part-3-/4000-38109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38107/", + "id": 38107, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-8/4000-38107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38106/", + "id": 38106, + "name": "Light the Night, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-40-light-the-night-conclusion/4000-38106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38098/", + "id": 38098, + "name": "Rapture", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade-6-rapture/4000-38098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38097/", + "id": 38097, + "name": "Liberation Day; Ulysses, Part 5: Dead Heat", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-411-liberation-day-ulysses-par/4000-38097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94944/", + "id": 94944, + "name": "Hate Is a Many Splendored Thing", + "site_detail_url": "https://comicvine.gamespot.com/lethal-foes-of-spider-man-2-hate-is-a-many-splendo/4000-94944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65599/", + "id": 65599, + "name": "Death by Tombstone, Part Two: Search and Destroy", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-205-death-by-tombstone-/4000-65599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37988/", + "id": 37988, + "name": "Emerald Rage!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-382-emerald-rage/4000-37988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37955/", + "id": 37955, + "name": "She Should Have Died Hereafter", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-8-she-should-have-died-hereafter/4000-37955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215873/", + "id": 215873, + "name": "Flash Gordon : The Space Kids", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-91-flash-gordon-the-space-kids/4000-215873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199549/", + "id": 199549, + "name": "These Great Powers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-halloween-special-edition-1-these-great/4000-199549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199548/", + "id": 199548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-halloween-special-edition-2/4000-199548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138245/", + "id": 138245, + "name": "Spider-Ham 2099", + "site_detail_url": "https://comicvine.gamespot.com/what-the--26-spider-ham-2099/4000-138245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119803/", + "id": 119803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-26/4000-119803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95199/", + "id": 95199, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/meteor-man-3/4000-95199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68456/", + "id": 68456, + "name": "Enlightened Allies", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-17-enlightened-alli/4000-68456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66511/", + "id": 66511, + "name": "Sins of Spider-X", + "site_detail_url": "https://comicvine.gamespot.com/midnight-sons-unlimited-3-sins-of-spider-x/4000-66511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65103/", + "id": 65103, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-278/4000-65103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57358/", + "id": 57358, + "name": "Gather Chaos - - !", + "site_detail_url": "https://comicvine.gamespot.com/thor-corps-2-gather-chaos-/4000-57358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37960/", + "id": 37960, + "name": "Crisis of Conscience (Part 2 of 3): Soul Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-105-crisis-of-conscience-part-2-/4000-37960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37959/", + "id": 37959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-7/4000-37959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37958/", + "id": 37958, + "name": "Light the Night, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-39-light-the-night-part-2/4000-37958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37950/", + "id": 37950, + "name": "Holy War!", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade-5-holy-war/4000-37950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36679/", + "id": 36679, + "name": "Volume 25 The Fantastic Four V", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-25-volume-25-the-fantastic-four/4000-36679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94943/", + "id": 94943, + "name": "Deadly Reunion", + "site_detail_url": "https://comicvine.gamespot.com/lethal-foes-of-spider-man-1-deadly-reunion/4000-94943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37804/", + "id": 37804, + "name": "The Queen, My Lord, Is Dead", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-7-the-queen-my-lord-is-dead/4000-37804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37789/", + "id": 37789, + "name": "Samson Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-381-samson-unleashed/4000-37789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496215/", + "id": 496215, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199309/4000-496215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65598/", + "id": 65598, + "name": "Death by Tombstone, Part 1: Takeover", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-204-death-by-tombstone-/4000-65598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65102/", + "id": 65102, + "name": "After The Fox", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-277-after-the-fox/4000-65102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37952/", + "id": 37952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-138/4000-37952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37826/", + "id": 37826, + "name": "Pip, King of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/warlock-and-the-infinity-watch-20-pip-king-of-the-/4000-37826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37812/", + "id": 37812, + "name": "What If... Iron Man of 2020 had been stranded in the past? Rick Jones remained the Hulk? Spider-Man killed the Lizard?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-53-what-if-iron-man-of-2020-had-been-stran/4000-37812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37811/", + "id": 37811, + "name": "Crisis of Conscience (Part 1 of 3)", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-104-crisis-of-conscience-part-1-/4000-37811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37808/", + "id": 37808, + "name": "Grip of Doom!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-6-grip-of-doom/4000-37808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37807/", + "id": 37807, + "name": "Light the Night, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-38-light-the-night-part-1/4000-37807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37797/", + "id": 37797, + "name": "Mortal Sins", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade-4-mortal-sins/4000-37797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36670/", + "id": 36670, + "name": "Emergence", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-13-emergence/4000-36670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37665/", + "id": 37665, + "name": "The Winds of Watoomb", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-6-the-winds-of-watoomb/4000-37665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682897/", + "id": 682897, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/star-magazine-oro-6/4000-682897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496213/", + "id": 496213, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199308/4000-496213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313724/", + "id": 313724, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-53/4000-313724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215872/", + "id": 215872, + "name": "Slim on the Job at the Gasoline Alley Garage!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-90-slim-on-the-job-at-the-gasoline-al/4000-215872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-115929/", + "id": 115929, + "name": "Hidden Depths, Part 3: Doing the Nasty", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-24-hidden-depths-part-3-doing-the-nasty/4000-115929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95152/", + "id": 95152, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterpieces-4/4000-95152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91551/", + "id": 91551, + "name": "The Evil Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-30-the-evil-unleashed/4000-91551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65597/", + "id": 65597, + "name": "Maximum Carnage, Part 13: War of the Heart", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-203-maximum-carnage-par/4000-65597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65100/", + "id": 65100, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-276/4000-65100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57289/", + "id": 57289, + "name": "Maximum Carnage, Part 14: The Awesome Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-2-maximum-carnage-part-14-the/4000-57289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37703/", + "id": 37703, + "name": "Maximum Carnage, Part 11: Soldiers of Hope", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-380-maximum-carnage-part-11/4000-37703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37673/", + "id": 37673, + "name": "What If Doom became Sorcerer Supreme?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-52-what-if-doom-became-sorcerer-supreme/4000-37673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37672/", + "id": 37672, + "name": "Maximum Carnage, Part 10: Sin City", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-103-maximum-carnage-part-10-sin-/4000-37672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37669/", + "id": 37669, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-5/4000-37669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37668/", + "id": 37668, + "name": "Maximum Carnage, Part 12: The Light!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-37-maximum-carnage-part-12-the-light/4000-37668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36656/", + "id": 36656, + "name": "There Is No Future -- Only the Past Happening Again and Again", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-annual-3-there-is-no-futur/4000-36656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57646/", + "id": 57646, + "name": "Part 6: 'Frisco KILL!", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-6-part-6-frisco-kill/4000-57646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496212/", + "id": 496212, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199307/4000-496212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215871/", + "id": 215871, + "name": "Tarzan : The Dinosaurs of Pal-Ul-Don!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-89-tarzan-the-dinosaurs-of-pal-ul-don/4000-215871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157254/", + "id": 157254, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-126/4000-157254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150318/", + "id": 150318, + "name": "Big Fun on Monster Island", + "site_detail_url": "https://comicvine.gamespot.com/marvel-swimsuit-special-2-big-fun-on-monster-islan/4000-150318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138244/", + "id": 138244, + "name": "The X-Men Classic", + "site_detail_url": "https://comicvine.gamespot.com/what-the--25-the-x-men-classic/4000-138244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-86097/", + "id": 86097, + "name": "Fall Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-15-fall-special/4000-86097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77556/", + "id": 77556, + "name": "Chaos In The Courtroom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-378-chaos-in-the-courtroom/4000-77556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65596/", + "id": 65596, + "name": "Maximum Carnage, Part 9: The Turning Point", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-202-maximum-carnage-par/4000-65596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65098/", + "id": 65098, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-275/4000-65098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37565/", + "id": 37565, + "name": "Maximum Carnage, Part 7: The Gathering Storm", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-379-maximum-carnage-part-7-/4000-37565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37559/", + "id": 37559, + "name": "Things Past", + "site_detail_url": "https://comicvine.gamespot.com/warlock-chronicles-1-things-past/4000-37559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37550/", + "id": 37550, + "name": "Servant of Dormammu", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-55-servant-of-dorm/4000-37550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37530/", + "id": 37530, + "name": "Maximum Carnage, Part 6: Sinking Fast", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-102-maximum-carnage-part-6-sinki/4000-37530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37528/", + "id": 37528, + "name": "Blessed Obedience", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-464-blessed-obedience/4000-37528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37527/", + "id": 37527, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-4/4000-37527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37526/", + "id": 37526, + "name": "Maximum Carnage, Part 8: Hate is in the Air", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-36-maximum-carnage-part-8-hate-is-in-th/4000-37526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37517/", + "id": 37517, + "name": "Enlightenment!", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade-2-enlightenment/4000-37517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505416/", + "id": 505416, + "name": "El Universo según Thanos: Éxodo", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-18-el-universo-segun-thanos-exod/4000-505416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57645/", + "id": 57645, + "name": "Part 5: Symbiocide", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-5-part-5-symbiocide/4000-57645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417928/", + "id": 417928, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-super-7/4000-417928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496210/", + "id": 496210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199306/4000-496210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313722/", + "id": 313722, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-51/4000-313722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166115/", + "id": 166115, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-carnage-1-tpb/4000-166115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157253/", + "id": 157253, + "name": "2009: Hunt for Magneto Contest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-125-2009-hunt-for-magneto-contest/4000-157253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108552/", + "id": 108552, + "name": "Epiphany", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade-1-epiphany/4000-108552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108126/", + "id": 108126, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-punisher-sabretooth-designer-genes-1/4000-108126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95150/", + "id": 95150, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterpieces-2/4000-95150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77998/", + "id": 77998, + "name": "The Origin of the Cadre", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-9-the-origin-of-the-cadre/4000-77998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77554/", + "id": 77554, + "name": "If This Be War", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-377-if-this-be-war/4000-77554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65595/", + "id": 65595, + "name": "Maximum Carnage, Part 5: Over the Line", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-201-maximum-carnage-par/4000-65595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65095/", + "id": 65095, + "name": "Wrath of the Hobgoblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-274-wrath-of-the-hobgoblin/4000-65095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37416/", + "id": 37416, + "name": "Maximum Carnage, Part 3: Demons on Broadway", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-378-maximum-carnage-part-3-/4000-37416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37378/", + "id": 37378, + "name": "Maximum Carnage, Part 2: Darklight", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-101-maximum-carnage-part-2-darkl/4000-37378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37375/", + "id": 37375, + "name": "Duel To The Death With The Vulture/The Uncanny Threat Of The Terrible Tinkerer", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-3-duel-to-the-death-with-the-v/4000-37375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37374/", + "id": 37374, + "name": "Maximum Carnage, Part 4: Team Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-35-maximum-carnage-part-4-team-venom/4000-37374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37356/", + "id": 37356, + "name": "The Return of the Brass Bishop!", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-121-the-return-of-the-brass-bishop/4000-37356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505415/", + "id": 505415, + "name": "El Universo según Thanos: Génesis", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-17-el-universo-segun-thanos-gene/4000-505415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103925/", + "id": 103925, + "name": "Forces Of Darkness, Forces Of Light (Part 4)", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-annual-3-forces-of-darkness-force/4000-103925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65594/", + "id": 65594, + "name": "Best of Enemies", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-200-best-of-enemies/4000-65594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57644/", + "id": 57644, + "name": "Part 4: Deadly Birth!", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-4-part-4-deadly-birth/4000-57644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37272/", + "id": 37272, + "name": "Dust to Dust", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-377-dust-to-dust/4000-37272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496209/", + "id": 496209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199305/4000-496209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379532/", + "id": 379532, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-33/4000-379532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293810/", + "id": 293810, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-280/4000-293810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157214/", + "id": 157214, + "name": "The Infinity Crusade", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-124-the-infinity-crusade/4000-157214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122930/", + "id": 122930, + "name": "Virtual Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing-2-virtual-mayhem/4000-122930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95589/", + "id": 95589, + "name": "Amazing Spider-Man Vs. Powdered Toast Man", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-and-stimpy-show-6-amazing-spider-man-vs-po/4000-95589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95149/", + "id": 95149, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterpieces-1/4000-95149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91548/", + "id": 91548, + "name": "Shattered Fates (Part 2): The Future Is Prologue", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-27-shattered-fates-part-2-the-future-is-p/4000-91548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77553/", + "id": 77553, + "name": "To A Future Darkly!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-376-to-a-future-darkly/4000-77553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65094/", + "id": 65094, + "name": "All My Pasts Remembered!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-273-all-my-pasts-remembered/4000-65094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64431/", + "id": 64431, + "name": "Prepare Yourself for...Annex!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-27-prepare-yourself-/4000-64431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57288/", + "id": 57288, + "name": "Maximum Carnage, Part 1: Begins Here", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited-1-maximum-carnage-part-1-begi/4000-57288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37242/", + "id": 37242, + "name": "What If the Silver Surfer possessed the Infinity Gauntlet?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-49-what-if-the-silver-surfer-possessed-the/4000-37242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37241/", + "id": 37241, + "name": "My Enemy's Enemy, Part 4: Total War", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-100-my-enemys-enemy-part-4-total/4000-37241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37238/", + "id": 37238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-2/4000-37238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37237/", + "id": 37237, + "name": "Vengeance, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-34-vengeance-conclusion/4000-37237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37209/", + "id": 37209, + "name": "Crossing Over", + "site_detail_url": "https://comicvine.gamespot.com/spawn-10-crossing-over/4000-37209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108710/", + "id": 108710, + "name": "Downtown Is Deadly", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-6-downtown-is-deadly/4000-108710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57643/", + "id": 57643, + "name": "Part 3: A Verdict of Violence", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-3-part-3-a-verdict-of-viole/4000-57643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37134/", + "id": 37134, + "name": "Guilt By Association", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-376-guilt-by-association/4000-37134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682773/", + "id": 682773, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/star-magazine-oro-5/4000-682773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496207/", + "id": 496207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199304/4000-496207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379530/", + "id": 379530, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-32/4000-379530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334959/", + "id": 334959, + "name": "Superman Tribute Edition", + "site_detail_url": "https://comicvine.gamespot.com/wizard-superman-tribute-edition-1-superman-tribute/4000-334959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122761/", + "id": 122761, + "name": "Where the Wild Things are.....", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing-1-where-the-wild-things-are/4000-122761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122679/", + "id": 122679, + "name": "Part Two: Ignorant Armies", + "site_detail_url": "https://comicvine.gamespot.com/mys-tech-wars-2-part-two-ignorant-armies/4000-122679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77552/", + "id": 77552, + "name": "Doom!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-375-doom/4000-77552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70230/", + "id": 70230, + "name": "Forces of Darkness, Forces of Light - Act Three: Braking the Back of Love", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-34-forces-of-darkness-forces-of-l/4000-70230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65593/", + "id": 65593, + "name": "Fallen Heroes!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-199-fallen-heroes/4000-65593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65092/", + "id": 65092, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-272/4000-65092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37103/", + "id": 37103, + "name": "My Enemy's Enemy, Part 3: The Swords are Drawn", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-99-my-enemys-enemy-part-3-the-sw/4000-37103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37100/", + "id": 37100, + "name": "SPIDER-MAN!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics-1-spider-man/4000-37100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-37099/", + "id": 37099, + "name": "Vengeance, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-33-vengeance-part-2/4000-37099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77551/", + "id": 77551, + "name": "Secret Defenders", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-374-secret-defenders/4000-77551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64599/", + "id": 64599, + "name": "The Bride Of Venom", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-375-the-bride-of-venom/4000-64599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57642/", + "id": 57642, + "name": "Part 2: War and Pieces", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-2-part-2-war-and-pieces/4000-57642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36977/", + "id": 36977, + "name": "A Gathering of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders-1-a-gathering-of-heroes/4000-36977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496206/", + "id": 496206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199303/4000-496206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388463/", + "id": 388463, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-53/4000-388463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321994/", + "id": 321994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-an-index-of-the-power-comics-1/4000-321994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234627/", + "id": 234627, + "name": "Daredevil: The Fall of The Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-fall-of-the-kingpin-1-daredevil-the-/4000-234627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214807/", + "id": 214807, + "name": "George Herriman's Krazy Kat : a Komiks Klassic", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-85-george-herrimans-krazy-kat-a-komik/4000-214807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126386/", + "id": 126386, + "name": "Crawl-Space! part four", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-pendragon-9-crawl-space-part-four/4000-126386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106440/", + "id": 106440, + "name": "Vengeance, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-32-vengeance-part-1/4000-106440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70229/", + "id": 70229, + "name": "Forces of Darkness, Forces of Light, Act 2 - The Soul Canyons", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-33-forces-of-darkness-forces-of-l/4000-70229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65592/", + "id": 65592, + "name": "Castles in the Air!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-198-castles-in-the-air/4000-65592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65091/", + "id": 65091, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-271/4000-65091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52027/", + "id": 52027, + "name": "Mindfield! (Part 4): Beyond Life And Death", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-22-mindfield-part-4-beyond-life-and-de/4000-52027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36985/", + "id": 36985, + "name": "What If Magneto Took Over the United States?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-47-what-if-magneto-took-over-the-united-st/4000-36985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36984/", + "id": 36984, + "name": "My Enemy's Enemy, Part 2: Uneasy Alliances...", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-98-my-enemys-enemy-part-2-uneasy/4000-36984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77550/", + "id": 77550, + "name": "Shattered Lives", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-373-shattered-lives/4000-77550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64598/", + "id": 64598, + "name": "Murder on Parade", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-374-murder-on-parade/4000-64598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57641/", + "id": 57641, + "name": "Part 1: Darksoul Drifting", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-1-part-1-darksoul-drifting/4000-57641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496204/", + "id": 496204, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199302/4000-496204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215741/", + "id": 215741, + "name": "The Phantom : The Spawn of the Hun", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-84-the-phantom-the-spawn-of-the-hun/4000-215741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189708/", + "id": 189708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-31/4000-189708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160830/", + "id": 160830, + "name": "The Guide to Comics", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-18-the-guide-to-comics/4000-160830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126384/", + "id": 126384, + "name": "Crawl-Space! part three", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-pendragon-8-crawl-space-part-three/4000-126384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117652/", + "id": 117652, + "name": "The Ashes Fall", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-18-the-ashes-fall/4000-117652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-70228/", + "id": 70228, + "name": "Forces Of Darkness, Forces Of Light, Act 1 - Crawling To The Shadows", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-32-forces-of-darkness-forces-of-l/4000-70228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65591/", + "id": 65591, + "name": "Power Play!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-197-power-play/4000-65591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65089/", + "id": 65089, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-270/4000-65089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52026/", + "id": 52026, + "name": "Mindfield! (Part 3): Mistaken Identities", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-21-mindfield-part-3-mistaken-identitie/4000-52026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36871/", + "id": 36871, + "name": "My Enemy's Enemy, Part 1: Opening Volley", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-97-my-enemys-enemy-part-1-openin/4000-36871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36869/", + "id": 36869, + "name": "Return to the Mad Dog Wars, Conclusion: Trust", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-31-return-to-the-mad-dog-wars-conclusio/4000-36869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36862/", + "id": 36862, + "name": "The Legacy Quest Scenario", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-47-the-legacy-quest-scena/4000-36862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136899/", + "id": 136899, + "name": "No More The Hero!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-372-no-more-the-hero/4000-136899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64597/", + "id": 64597, + "name": "The Bedlam Perspective", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-373-the-bedlam-perspective/4000-64597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399794/", + "id": 399794, + "name": "Spider-Man: Cierpienie", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-1-1-93-spider-man-cierpienie/4000-399794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496203/", + "id": 496203, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199301/4000-496203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386898/", + "id": 386898, + "name": "Field of Screams!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-deadball-5-field-of-screams/4000-386898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373989/", + "id": 373989, + "name": "Lunacy in Latveria", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-4-lunacy-in-latveria/4000-373989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359354/", + "id": 359354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-force-3/4000-359354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345702/", + "id": 345702, + "name": "Spideran: nacimiento de un clasico", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-1-spideran-nacimiento-de-un-clas/4000-345702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317595/", + "id": 317595, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/web-van-spiderman-omnibus-8/4000-317595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300413/", + "id": 300413, + "name": "Carnage on Campus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-1-1-car/4000-300413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300412/", + "id": 300412, + "name": "Danger on the Docks", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-1-2-dan/4000-300412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300411/", + "id": 300411, + "name": "The Incredible Hulk: Mayhem at the Mount", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-1-3-the/4000-300411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300410/", + "id": 300410, + "name": "Lunacy in Latveria", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-1-4-lun/4000-300410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266886/", + "id": 266886, + "name": "How the Phantom Saved the Earth", + "site_detail_url": "https://comicvine.gamespot.com/the-phantom-1051-how-the-phantom-saved-the-earth/4000-266886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220505/", + "id": 220505, + "name": "The Phantom", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-105-the-phantom/4000-220505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215067/", + "id": 215067, + "name": "Tarzan Locked in Deadly Combat with ... The beast of Opar!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-83-tarzan-locked-in-deadly-combat-wit/4000-215067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210215/", + "id": 210215, + "name": "Bloom County", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-10-bloom-county/4000-210215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210214/", + "id": 210214, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-9/4000-210214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210213/", + "id": 210213, + "name": "Steve Canyon", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-8-steve-canyon/4000-210213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209898/", + "id": 209898, + "name": "Gasoline Alley", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-7-gasoline-alley/4000-209898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166939/", + "id": 166939, + "name": "Spider-Man: Cosmic Adventures", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-cosmic-adventures-1-spider-man-cosmic-a/4000-166939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166433/", + "id": 166433, + "name": "Spider-Man: Venom Returns", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-venom-returns-1-spider-man-venom-return/4000-166433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145989/", + "id": 145989, + "name": "Tenth Anniversary Issue", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-120-tenth-anniversary-issue/4000-145989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140692/", + "id": 140692, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/overkill-19/4000-140692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136862/", + "id": 136862, + "name": "Explosion!", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-17-explosion/4000-136862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127461/", + "id": 127461, + "name": "Marvel Year-In-Review ‘92", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review-4-marvel-year-in-review-92/4000-127461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126368/", + "id": 126368, + "name": "Crawl-Space! part two", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-pendragon-7-crawl-space-part-two/4000-126368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108237/", + "id": 108237, + "name": "Zounds O' silence/Present Tense/The Big X-Mas Blackout/The Spirit Of The Season/Revisionist History/ Yule Memory/Holiday On Ice/The Rapt Lamp", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-1992-zounds-o-silencepresen/4000-108237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66525/", + "id": 66525, + "name": "Spirits of Venom Part 4: Last Rites", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riderblaze-spirits-of-vengeance-6-spirits-of/4000-66525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65590/", + "id": 65590, + "name": "The Death of Vermin, Part 3 - Faces", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-196-the-death-of-vermin/4000-65590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65087/", + "id": 65087, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-269/4000-65087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64596/", + "id": 64596, + "name": "Arachnophobia Too", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-372-arachnophobia-too/4000-64596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36770/", + "id": 36770, + "name": "What If Barbara Ketch Had Become Ghost Rider?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-45-what-if-barbara-ketch-had-become-ghost-/4000-36770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36768/", + "id": 36768, + "name": "Spirts of Venom, Part 3- Enemies: A Hate Story", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-96-spirts-of-venom-part-3-enemie/4000-36768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36767/", + "id": 36767, + "name": "Final Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-457-final-gauntlet/4000-36767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36766/", + "id": 36766, + "name": "Return to the Mad Dog Ward, Part 2: Brainstorm!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-30-return-to-the-mad-dog-ward-part-2-br/4000-36766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36764/", + "id": 36764, + "name": "Prisoners", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-76-prisoners/4000-36764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36558/", + "id": 36558, + "name": "Dreaming with the Enemy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-120-dreaming-with-the-enemy/4000-36558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131350/", + "id": 131350, + "name": "The Trial of Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-edition-1-the-trial-of-venom/4000-131350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64595/", + "id": 64595, + "name": "One Clue Over the Cukoo's Nest", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-371-one-clue-over-the-cukoo/4000-64595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36535/", + "id": 36535, + "name": "The Appeal", + "site_detail_url": "https://comicvine.gamespot.com/warlock-and-the-infinity-watch-11-the-appeal/4000-36535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900315/", + "id": 900315, + "name": "Midnight schlägt zu", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-56-midnight-schlagt-zu/4000-900315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899759/", + "id": 899759, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-54/4000-899759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899565/", + "id": 899565, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-53/4000-899565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496141/", + "id": 496141, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199212/4000-496141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373907/", + "id": 373907, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-30-x-men/4000-373907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215065/", + "id": 215065, + "name": "The Amazing Spider-Man Helpless Against the Powers of ... Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-82-the-amazing-spider-man-helpless-ag/4000-215065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138243/", + "id": 138243, + "name": "The Infinity Mitten", + "site_detail_url": "https://comicvine.gamespot.com/what-the--24-the-infinity-mitten/4000-138243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126366/", + "id": 126366, + "name": "Crawl-Space!", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-pendragon-6-crawl-space/4000-126366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66524/", + "id": 66524, + "name": "Spirits of Venom Part 2: Chasing Shadows", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riderblaze-spirits-of-vengeance-5-spirits-of/4000-66524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65589/", + "id": 65589, + "name": "The Death of Vermin, Part 2 - Masquerade", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-195-the-death-of-vermin/4000-65589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64594/", + "id": 64594, + "name": "Life Stings", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-370-life-stings/4000-64594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36525/", + "id": 36525, + "name": "What If Venom Had Possessed the Punisher?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-44-what-if-venom-had-possessed-the-punishe/4000-36525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36524/", + "id": 36524, + "name": "Spirts of Venom, Part 1: Storm Shadows", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-95-spirts-of-venom-part-1-storm-/4000-36524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36522/", + "id": 36522, + "name": "Return to the Mad Dog Ward, Part 1: Hope and Other Liars", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-29-return-to-the-mad-dog-ward-part-1-ho/4000-36522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36521/", + "id": 36521, + "name": "Trigger Happy!", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-2-trigger-happy/4000-36521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36517/", + "id": 36517, + "name": "Bad Medicine", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-4-bad-medicine/4000-36517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35181/", + "id": 35181, + "name": "Volume 22 Amazing Spider-Man V", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-22-volume-22-amazing-spider-man/4000-35181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222325/", + "id": 222325, + "name": "A Gasoline Alley Adventure ... Rufus and the Pool Sharps", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-81-a-gasoline-alley-adventure-rufus-a/4000-222325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107620/", + "id": 107620, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-1-spider-man-2099/4000-107620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64593/", + "id": 64593, + "name": "Electric Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-369-electric-doom/4000-64593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496140/", + "id": 496140, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199211/4000-496140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359353/", + "id": 359353, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-force-2/4000-359353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131213/", + "id": 131213, + "name": "Sabotage", + "site_detail_url": "https://comicvine.gamespot.com/x-force-and-spider-man-1-sabotage/4000-131213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91542/", + "id": 91542, + "name": "Return To Forever (Part 1): Buried Vengence", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-21-return-to-forever-part-1-buried-vengen/4000-91542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65588/", + "id": 65588, + "name": "The Death of Vermin, Part One: October Moon", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-194-the-death-of-vermin/4000-65588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65083/", + "id": 65083, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-267/4000-65083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64592/", + "id": 64592, + "name": "On Razored Wings", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-368-on-razored-wings/4000-64592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36411/", + "id": 36411, + "name": "Target Two", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-94-target-two/4000-36411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36409/", + "id": 36409, + "name": "There's Something About a Gun! Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-28-theres-something-about-a-gun-part-2/4000-36409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36407/", + "id": 36407, + "name": "The Totally Awesome Origin Of Slapstick!", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-1-the-totally-awesome-origin-of-slapstic/4000-36407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36403/", + "id": 36403, + "name": "Some of Your Blood", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-3-some-of-your-blood/4000-36403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35179/", + "id": 35179, + "name": "Volume 21 The Fantastic Four IV", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-21-volume-21-the-fantastic-four/4000-35179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64591/", + "id": 64591, + "name": "Skullduggery", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-367-skullduggery/4000-64591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36288/", + "id": 36288, + "name": "What If Spider-Man had Kept his Six Arms", + "site_detail_url": "https://comicvine.gamespot.com/what-if-42-what-if-spider-man-had-kept-his-six-arm/4000-36288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496139/", + "id": 496139, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199210/4000-496139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231966/", + "id": 231966, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/warlock-6/4000-231966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215066/", + "id": 215066, + "name": "Russ Manning Art : Buy This Issue", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-80-russ-manning-art-buy-this-issue/4000-215066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157251/", + "id": 157251, + "name": "2099", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-117-2099/4000-157251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65587/", + "id": 65587, + "name": "Eye of the Puma, Part Three: Over The Edge", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-193-eye-of-the-puma-par/4000-65587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65081/", + "id": 65081, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-266/4000-65081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52022/", + "id": 52022, + "name": "Portals Of Power (Part 3): Doorway To Doom", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-17-portals-of-power-part-3-doorway-to-/4000-52022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36305/", + "id": 36305, + "name": "Portals Of Power (Part 2): Sleepwalker's Rage", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-20-portals-of-power-part-2-sleepwalkers-r/4000-36305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36287/", + "id": 36287, + "name": "The Test", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-93-the-test/4000-36287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36284/", + "id": 36284, + "name": "There's Something About a Gun! Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-27-theres-something-about-a-gun-part-1/4000-36284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36280/", + "id": 36280, + "name": "Welcome to the Jungle", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-2-welcome-to-the-jungle/4000-36280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35185/", + "id": 35185, + "name": "Twice Upon a Time", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-25-twice-upon-a-time/4000-35185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35172/", + "id": 35172, + "name": "The Hammer, The Cross and The Eye", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-annual-17-the-hammer-the-cross-and/4000-35172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107452/", + "id": 107452, + "name": "System Bytes Part 1: Byte by Byte; Vengeance Routine; Icecapade; Top Ten Villains!", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-annual-5-system-bytes-part-1-byte-by-/4000-107452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36144/", + "id": 36144, + "name": "Skullwork", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-366-skullwork/4000-36144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496138/", + "id": 496138, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199209/4000-496138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425559/", + "id": 425559, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-she-hulk-1-tpb/4000-425559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-382568/", + "id": 382568, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nintendo-power-40/4000-382568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313334/", + "id": 313334, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-force-4/4000-313334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138241/", + "id": 138241, + "name": "Weapon X, Lies and Videotape", + "site_detail_url": "https://comicvine.gamespot.com/what-the-21-weapon-x-lies-and-videotape/4000-138241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136857/", + "id": 136857, + "name": "Into Infinity", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-13-into-infinity/4000-136857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114278/", + "id": 114278, + "name": "Webs And Fear And Sorrow", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-86-webs-and-fear-and-sorrow/4000-114278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107806/", + "id": 107806, + "name": "My Dinner with Doom?", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-4-my-dinner-with-do/4000-107806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65586/", + "id": 65586, + "name": "Eye of the Puma, Part Two: The Summit", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-192-eye-of-the-puma-par/4000-65586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65080/", + "id": 65080, + "name": "The Parents of Peter Parker, Part two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-265-the-parents-of-peter-parker-part-/4000-65080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64628/", + "id": 64628, + "name": "With Great Responsibility...!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-26-with-great-responsibility/4000-64628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57732/", + "id": 57732, + "name": "Along Came a Spider!", + "site_detail_url": "https://comicvine.gamespot.com/warlock-5-along-came-a-spider/4000-57732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36175/", + "id": 36175, + "name": "Portals Of Power (Part 1): The Mutant Agenda", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-19-portals-of-power-part-1-the-mutant-age/4000-36175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36161/", + "id": 36161, + "name": "Foreign Affairs", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-92-foreign-affairs/4000-36161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36155/", + "id": 36155, + "name": "Rise of the Midnight Sons Part 3", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-1-rise-of-the-midnight-/4000-36155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64627/", + "id": 64627, + "name": "Why Me?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-25-why-me/4000-64627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64498/", + "id": 64498, + "name": "Fathers and Sins", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-365-fathers-and-sins/4000-64498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36022/", + "id": 36022, + "name": "The Litter", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-53-the-litter/4000-36022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496137/", + "id": 496137, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199208/4000-496137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313333/", + "id": 313333, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-force-3/4000-313333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180862/", + "id": 180862, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-soul-of-the-hunter-1/4000-180862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153170/", + "id": 153170, + "name": "Assault On Armor City Part 1: Search; Deadly Foes Of Darkhawk; The Fishing Trip; Dawn Of The Darkhawk Revisted; The Cabal", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-annual-1-assault-on-armor-city-part-1-sea/4000-153170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138240/", + "id": 138240, + "name": "The Infinity Wart Saga Part 1", + "site_detail_url": "https://comicvine.gamespot.com/what-the--20-the-infinity-wart-saga-part-1/4000-138240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114277/", + "id": 114277, + "name": "Death Has Eight Legs", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-85-death-has-eight-legs/4000-114277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65585/", + "id": 65585, + "name": "Eye of the Puma, Part One: The Valley", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-191-eye-of-the-puma-par/4000-65585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65078/", + "id": 65078, + "name": "The Parents of Peter Parker, Part One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-264-the-parents-of-peter-parker-part-/4000-65078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36033/", + "id": 36033, + "name": "Making Amends Meet", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-91-making-amends-meet/4000-36033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-36025/", + "id": 36025, + "name": "Nefarious Rhapsodies", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-war-3-nefarious-rhapsodies/4000-36025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64497/", + "id": 64497, + "name": "The Pain of Fast Air", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-364-the-pain-of-fast-air/4000-64497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838483/", + "id": 838483, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/gente-menuda-140/4000-838483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-682387/", + "id": 682387, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/star-magazine-oro-3/4000-682387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496136/", + "id": 496136, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199207/4000-496136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214957/", + "id": 214957, + "name": "Steve Canyon", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-77-steve-canyon/4000-214957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157244/", + "id": 157244, + "name": "Spider-Man's 30th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-114-spider-mans-30th-anniversary/4000-157244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138239/", + "id": 138239, + "name": "Discharm School", + "site_detail_url": "https://comicvine.gamespot.com/what-the--19-discharm-school/4000-138239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129085/", + "id": 129085, + "name": "Take a Wakanda Wild Side!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-swimsuit-special-1-take-a-wakanda-wild-side/4000-129085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114276/", + "id": 114276, + "name": "Along Came A Spider...", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-84-along-came-a-spider/4000-114276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65584/", + "id": 65584, + "name": "The Horns of a Dilemma", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-190-the-horns-of-a-dile/4000-65584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65076/", + "id": 65076, + "name": "Spider in the Middle!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-263-spider-in-the-middle/4000-65076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64626/", + "id": 64626, + "name": "Double Infinity", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-24-double-infinity/4000-64626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35916/", + "id": 35916, + "name": "The Spider's Thread", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-90-the-spider-s-thread/4000-35916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35907/", + "id": 35907, + "name": "Ethereal Revisionism", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-war-2-ethereal-revisionism/4000-35907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35903/", + "id": 35903, + "name": "Emergency Procedure", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-306-emergency-procedure/4000-35903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118524/", + "id": 118524, + "name": "Don't Drink The Water", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-51-dont-drink-the-water/4000-118524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103924/", + "id": 103924, + "name": "Questions of Power: Hero Killers (Part 4)", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-annual-2-questions-of-power-hero-/4000-103924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68443/", + "id": 68443, + "name": "Personal Stakes", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-1-personal-stakes/4000-68443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65583/", + "id": 65583, + "name": "The Osborn Legacy", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-189-the-osborn-legacy/4000-65583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64496/", + "id": 64496, + "name": "Carnage, Part Three: Savage Grace!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-363-carnage-part-three-sava/4000-64496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35783/", + "id": 35783, + "name": "Chthonic Maneuvers", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-war-1-chthonic-maneuvers/4000-35783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496135/", + "id": 496135, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199206/4000-496135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334816/", + "id": 334816, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-161/4000-334816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189707/", + "id": 189707, + "name": "Batman Returns", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-27-batman-returns/4000-189707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159411/", + "id": 159411, + "name": "Doctor Strange & The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-76-doctor-strange-the-amazing-spider-/4000-159411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-154405/", + "id": 154405, + "name": "Quest For The Shield", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-quest-for-the-shield-1-que/4000-154405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114275/", + "id": 114275, + "name": "The Hyena's Last Laugh", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-83-the-hyenas-last-laugh/4000-114275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77997/", + "id": 77997, + "name": "The Dark at the End of the Tunnel (The Hero Killers Part 3); First Kill: Part 3; The Security Gauntlet; Down Memory Lane; Evil's Light Part 3: Charge of the Light Brigade", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-8-the-dark-at-the-end-of-/4000-77997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65073/", + "id": 65073, + "name": "Nightmare in New Mexico!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-262-nightmare-in-new-mexico/4000-65073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64625/", + "id": 64625, + "name": "Revenge of the Sinister Six, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-23-revenge-of-the-sinister-six-conclusi/4000-64625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64430/", + "id": 64430, + "name": "The Hero Killers Part One: Fortune and Steel; First Kill! Part One; The Wronged Man; Making the Grade; Evil's Light, Part One: Now Strikes the Lightmaster", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-26-the-hero-killers-/4000-64430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35792/", + "id": 35792, + "name": "The Name of the Rose, Part 6: A Rose By Any Other Name", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-89-the-name-of-the-rose-part-6-a/4000-35792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35790/", + "id": 35790, + "name": "Secret Agendas!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-448-secret-agendas/4000-35790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35780/", + "id": 35780, + "name": "Under the Knife", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-305-under-the-knife/4000-35780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35777/", + "id": 35777, + "name": "After the Storm", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-401-after-the-storm/4000-35777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35171/", + "id": 35171, + "name": "Down And Downer (The Hero Killers Part Two) - First Kill (Part Two) - Sons Of The Tiger - Ten Most Embarrassing Moments - Evil's Light Part One: The Hunt Begins", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-12-down-and-down/4000-35171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65582/", + "id": 65582, + "name": "Funeral Arrangements, Part Three: Final Judgement", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-188-funeral-arrangement/4000-65582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64495/", + "id": 64495, + "name": "Carnage, Part Two: Savage Alliance!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-362-carnage-part-two-savage/4000-64495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35685/", + "id": 35685, + "name": "Strange Alliances", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-447-strange-alliances/4000-35685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-940988/", + "id": 940988, + "name": "L'Uomo Ragno: Hooky", + "site_detail_url": "https://comicvine.gamespot.com/best-comics-3-luomo-ragno-hooky/4000-940988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496079/", + "id": 496079, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199205/4000-496079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293766/", + "id": 293766, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-271/4000-293766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215740/", + "id": 215740, + "name": "The Phantom", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-75-the-phantom/4000-215740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138238/", + "id": 138238, + "name": "What if... Charlie America Landed on - Finnigan's Island?", + "site_detail_url": "https://comicvine.gamespot.com/what-the--18-what-if-charlie-america-landed-on-fin/4000-138238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114884/", + "id": 114884, + "name": "2020 Vision - The Wild Hunt - part four", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-ii-4-2020-vision-the-wild-hunt-part-fo/4000-114884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65072/", + "id": 65072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-261/4000-65072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64624/", + "id": 64624, + "name": "Revenge of the Sinister Six, Part Five", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-22-revenge-of-the-sinister-six-part-fiv/4000-64624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35688/", + "id": 35688, + "name": "What If Wolverine and his X-Vampires had Conquered the World?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-37-what-if-wolverine-and-his-x-vampires-ha/4000-35688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35687/", + "id": 35687, + "name": "The Name of the Rose, Part 5: The King Makers", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-88-the-name-of-the-rose-part-5-t/4000-35687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505413/", + "id": 505413, + "name": "Jaulas", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-16-jaulas/4000-505413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65581/", + "id": 65581, + "name": "Funeral Arrangements, Part Two: Desperate Measures", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-187-funeral-arrangement/4000-65581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-681852/", + "id": 681852, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/star-magazine-oro-2/4000-681852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496078/", + "id": 496078, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199204/4000-496078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214956/", + "id": 214956, + "name": "B.C.", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-74-bc/4000-214956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189713/", + "id": 189713, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-25/4000-189713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157245/", + "id": 157245, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-111/4000-157245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65071/", + "id": 65071, + "name": "Confessions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-260-confessions/4000-65071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64623/", + "id": 64623, + "name": "Revenge of the Sinister Six, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-21-revenge-of-the-sinister-six-part-fou/4000-64623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64494/", + "id": 64494, + "name": "Carnage, Part One: Savage Genesis!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-361-carnage-part-one-savage/4000-64494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35585/", + "id": 35585, + "name": "What if the Cosmic Avengers and the Guardians of the Galaxy had been Defeated by Korvac?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-36-what-if-the-cosmic-avengers-and-the-gua/4000-35585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35584/", + "id": 35584, + "name": "The Name of the Rose, Part 4: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-87-the-name-of-the-rose-part-4-t/4000-35584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114497/", + "id": 114497, + "name": "Here Comes the Wild Blood!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-362-here-comes-the-wild-blood/4000-114497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-73805/", + "id": 73805, + "name": "The Big Rub Out", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-she-hulk-37-the-big-rub-out/4000-73805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65580/", + "id": 65580, + "name": "Funeral Arrangements, Part One: Settling Scores", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-186-funeral-arrangement/4000-65580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496077/", + "id": 496077, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199203/4000-496077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65070/", + "id": 65070, + "name": "Secrets!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-259-secrets/4000-65070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64622/", + "id": 64622, + "name": "Revenge of the Sinister Six, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-20-revenge-of-the-sinister-six-part-thr/4000-64622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64493/", + "id": 64493, + "name": "Death Toy!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-360-death-toy/4000-64493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35493/", + "id": 35493, + "name": "Heart Of The Hawk (Part 4): Journey", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-13-heart-of-the-hawk-part-4-journey/4000-35493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35482/", + "id": 35482, + "name": "What if the Fantastic Five Invaded the Negative Zone?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-35-what-if-the-fantastic-five-invaded-the-/4000-35482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35481/", + "id": 35481, + "name": "The Name of the Rose, Part 3: The Dark Within", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-86-the-name-of-the-rose-part-3-t/4000-35481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35368/", + "id": 35368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-99/4000-35368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220213/", + "id": 220213, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fear-itself-1-gn/4000-220213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35385/", + "id": 35385, + "name": "Judgment", + "site_detail_url": "https://comicvine.gamespot.com/warlock-and-the-infinity-watch-1-judgment/4000-35385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35376/", + "id": 35376, + "name": "What if No One Was Watching the Watcher?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-34-what-if-no-one-was-watching-the-watcher/4000-35376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171748/", + "id": 171748, + "name": "Spider-Man: Torment", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-torment-1-spider-man-torment/4000-171748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496076/", + "id": 496076, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199202/4000-496076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65579/", + "id": 65579, + "name": "Another Fine Mess!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-185-another-fine-mess/4000-65579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65069/", + "id": 65069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-258/4000-65069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64621/", + "id": 64621, + "name": "Revenge of the Sinister Six, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-19-revenge-of-the-sinister-six-part-two/4000-64621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64492/", + "id": 64492, + "name": "Toy Death!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-359-toy-death/4000-64492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35375/", + "id": 35375, + "name": "The Name of the Rose, Part 2: Three the Hard Way", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-85-the-name-of-the-rose-part-2-t/4000-35375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195705/", + "id": 195705, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandr-strange-the-way-to-dusty-death-1-gn/4000-195705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496075/", + "id": 496075, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199201/4000-496075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386901/", + "id": 386901, + "name": "Chaos in Calgary", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-chaos-in-calgary-4-chaos-in/4000-386901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345678/", + "id": 345678, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-assassin-nation-plot-1-tpb/4000-345678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335828/", + "id": 335828, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/comics-to-color-2-the-amazing-spider-man/4000-335828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226991/", + "id": 226991, + "name": "Hit and Run", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-hit-and-run-3-hit-and-run/4000-226991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225063/", + "id": 225063, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectors-edition-1/4000-225063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223355/", + "id": 223355, + "name": "The New Fantastic Four In Monsters Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-monsters-unleashed-1-the-new-fantas/4000-223355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-215739/", + "id": 215739, + "name": "Mary Jane Parker vs. Dr. Doom", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-71-mary-jane-parker-vs-dr-doom/4000-215739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150227/", + "id": 150227, + "name": "Marvel 1991 –– The Year In Review", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review-3-marvel-1991-the-year-in-re/4000-150227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148169/", + "id": 148169, + "name": "Drawing a Blank!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-battles-ignorance-1-drawing/4000-148169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146032/", + "id": 146032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-blockbuster-6/4000-146032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127450/", + "id": 127450, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-108/4000-127450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113267/", + "id": 113267, + "name": "Round Robin: The Sidekick's Revenge! Part Six: Out on a Limb", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-358-round-robin-the-sidekic/4000-113267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113266/", + "id": 113266, + "name": "Round Robin: The Sidekick's Revenge! Part Five: A Bagel With Nova!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-357-round-robin-the-sidekic/4000-113266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65578/", + "id": 65578, + "name": "The Child Within: Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-184-the-child-within-af/4000-65578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65068/", + "id": 65068, + "name": "Shadow of Evils Past!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-257-shadow-of-evils-past/4000-65068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64620/", + "id": 64620, + "name": "Revenge of the Sinister Six, Part One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-18-revenge-of-the-sinister-six-part-one/4000-64620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35272/", + "id": 35272, + "name": "The Name of the Rose, Part 1: Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-84-the-name-of-the-rose-part-1-f/4000-35272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35266/", + "id": 35266, + "name": "Calling All Lasers", + "site_detail_url": "https://comicvine.gamespot.com/quasar-30-calling-all-lasers/4000-35266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35256/", + "id": 35256, + "name": "Last Rites Part 4", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-300-last-rites-part-4/4000-35256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160694/", + "id": 160694, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-4-volume-4/4000-160694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496038/", + "id": 496038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199112/4000-496038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211654/", + "id": 211654, + "name": "Within Our Reach", + "site_detail_url": "https://comicvine.gamespot.com/within-our-reach-1-within-our-reach/4000-211654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184321/", + "id": 184321, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-maste/4000-184321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180622/", + "id": 180622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/eureka-199104/4000-180622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150226/", + "id": 150226, + "name": "Marvel: 1990 The Year In Review", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review-2-marvel-1990-the-year-in-re/4000-150226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145986/", + "id": 145986, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-97-darkhawk/4000-145986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140757/", + "id": 140757, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-107/4000-140757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65577/", + "id": 65577, + "name": "The Child Within, Part Six: Into the Dawn", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-183-the-child-within-pa/4000-65577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65067/", + "id": 65067, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-256/4000-65067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64619/", + "id": 64619, + "name": "No One Gets Outta Here Alive!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-17-no-one-gets-outta-here-alive/4000-64619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35047/", + "id": 35047, + "name": "Round Robin: The Sidekick's Revenge! Part Four: After Midnight!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-356-round-robin-the-sidekic/4000-35047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35029/", + "id": 35029, + "name": "Heart Of The Hawk (Part 1): Eyewitness", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-10-heart-of-the-hawk-part-1-eyewitness/4000-35029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35015/", + "id": 35015, + "name": "Entrepreneurs", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-83-entrepreneurs/4000-35015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35002/", + "id": 35002, + "name": "Torn", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-33-torn/4000-35002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-35000/", + "id": 35000, + "name": "The Final Confrontation", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-6-the-final-confrontation/4000-35000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34993/", + "id": 34993, + "name": "Round Robin: The Sidekick's Revenge! Part Three: Total Eclipse of The Moon.. Knight!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-355-round-robin-the-sidekic/4000-34993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34938/", + "id": 34938, + "name": "Seven (and a Half) Scents; Bring Me the Head of the Beast!; Chase in the Dark; Truth or Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-91-seven-and-a-half-scents-/4000-34938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33695/", + "id": 33695, + "name": "Volume 19 The Silver Surfer II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-19-volume-19-the-silver-surfer-/4000-33695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186080/", + "id": 186080, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-3-volume-3/4000-186080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496037/", + "id": 496037, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199111/4000-496037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273837/", + "id": 273837, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-marvel-20/4000-273837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138236/", + "id": 138236, + "name": "The Strange Young Fighting Frogs", + "site_detail_url": "https://comicvine.gamespot.com/what-the--15-the-strange-young-fighting-frogs/4000-138236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65576/", + "id": 65576, + "name": "The Child Within, Part Five: Reckonings", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-182-the-child-within-pa/4000-65576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65066/", + "id": 65066, + "name": "Screams of the Trapster; Shock Therapy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-255-screams-of-the-trapster-shock-the/4000-65066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64618/", + "id": 64618, + "name": "Sabotage X-Over, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-16-sabotage-x-over-part-1/4000-64618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52011/", + "id": 52011, + "name": "Web Of Confusion (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-6-web-of-confusion-part-2/4000-52011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34930/", + "id": 34930, + "name": "Round Robin: The Sidekick's Revenge! Part Two: Wilde at Heart!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-354-round-robin-the-sidekic/4000-34930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34910/", + "id": 34910, + "name": "Honor Among Psychotics", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-9-honor-among-psychotics/4000-34910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34899/", + "id": 34899, + "name": "Sabotage X-Over, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/x-force-4-sabotage-x-over-part-2/4000-34899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34897/", + "id": 34897, + "name": "What if Spider-Man Had Kept His Cosmic Powers", + "site_detail_url": "https://comicvine.gamespot.com/what-if-31-what-if-spider-man-had-kept-his-cosmic-/4000-34897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34896/", + "id": 34896, + "name": "Pumping Up!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-82-pumping-up/4000-34896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34882/", + "id": 34882, + "name": "Half Life", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-32-half-life/4000-34882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34871/", + "id": 34871, + "name": "Round Robin: The Sidekick's Revenge! Part One: When Midnight Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-353-round-robin-the-sidekic/4000-34871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34777/", + "id": 34777, + "name": "The Universe According To Thanos, Part Two: Exodus", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-56-the-universe-according-to-thanos-/4000-34777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160818/", + "id": 160818, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-2-volume-2/4000-160818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496036/", + "id": 496036, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199110/4000-496036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293761/", + "id": 293761, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-266/4000-293761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269985/", + "id": 269985, + "name": "1991", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-report-1-1991/4000-269985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157246/", + "id": 157246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-105/4000-157246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-122582/", + "id": 122582, + "name": "You Bet Your Life", + "site_detail_url": "https://comicvine.gamespot.com/nfl-superpro-1-you-bet-your-life/4000-122582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-86090/", + "id": 86090, + "name": "Three Strikes, Yer Out/ Leftovers /The Coming Of Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-8-three-strikes-yer-out-leftov/4000-86090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65575/", + "id": 65575, + "name": "The Child Within, Part Four: Guilt", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-181-the-child-within-pa/4000-65575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65065/", + "id": 65065, + "name": "If An Eye Offend Thee...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-254-if-an-eye-offend-thee/4000-65065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64617/", + "id": 64617, + "name": "The Mutant Factor", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-15-the-mutant-factor/4000-64617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52010/", + "id": 52010, + "name": "Web Of Confusion (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-5-web-of-confusion-part-1/4000-52010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34794/", + "id": 34794, + "name": "Lodestone!", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-8-lodestone/4000-34794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34783/", + "id": 34783, + "name": "Battlecry", + "site_detail_url": "https://comicvine.gamespot.com/x-force-3-battlecry/4000-34783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34780/", + "id": 34780, + "name": "Living In Fear", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-81-living-in-fear/4000-34780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34764/", + "id": 34764, + "name": "Cosmic Battle on the Edge of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-4-cosmic-battle-on-the-edge-/4000-34764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34755/", + "id": 34755, + "name": "Death Walk", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-352-death-walk/4000-34755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455366/", + "id": 455366, + "name": "Wieviel Kostet der Kobold im Fenster?", + "site_detail_url": "https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-19-wieviel-kostet-der-kob/4000-455366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453767/", + "id": 453767, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/longshot-1/4000-453767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34695/", + "id": 34695, + "name": "The Universe According To Thanos, Part One: Genesis", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-55-the-universe-according-to-thanos-/4000-34695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34671/", + "id": 34671, + "name": "Trapped In A Time Warp!", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-33-trapped-in-a-ti/4000-34671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34660/", + "id": 34660, + "name": "Cages", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-54-cages/4000-34660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34641/", + "id": 34641, + "name": "Cleanliness is Next to Godliness", + "site_detail_url": "https://comicvine.gamespot.com/damage-control-4-cleanliness-is-next-to-godliness/4000-34641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111581/", + "id": 111581, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-1-volume-1/4000-111581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496035/", + "id": 496035, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199109/4000-496035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277826/", + "id": 277826, + "name": "I Predatori del tempo Perduto", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-14-i-predatori-del-tempo-per/4000-277826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180621/", + "id": 180621, + "name": "Avventura Classic", + "site_detail_url": "https://comicvine.gamespot.com/eureka-199103-avventura-classic/4000-180621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170721/", + "id": 170721, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wizard-the-comics-magazine-1/4000-170721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157248/", + "id": 157248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-104/4000-157248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138250/", + "id": 138250, + "name": "Tangled", + "site_detail_url": "https://comicvine.gamespot.com/what-the--14-tangled/4000-138250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77996/", + "id": 77996, + "name": "The Vibranium Vendetta (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-7-the-vibranium-vendetta-/4000-77996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66432/", + "id": 66432, + "name": "You've Got To Have Faith", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-17-youve-got-to-have-faith/4000-66432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65574/", + "id": 65574, + "name": "Shame", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-180-shame/4000-65574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65064/", + "id": 65064, + "name": "Vampire at Large!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-253-vampire-at-large/4000-65064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64616/", + "id": 64616, + "name": "Sub-City, Part 2 of 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-14-sub-city-part-2-of-2/4000-64616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64429/", + "id": 64429, + "name": "The Vibranium Vendetta Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-25-the-vibranium-ven/4000-64429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47594/", + "id": 47594, + "name": "Temptations / Tears of a Clown", + "site_detail_url": "https://comicvine.gamespot.com/the-original-ghost-rider-rides-again-3-temptations/4000-47594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34694/", + "id": 34694, + "name": "First Scent; Fire in the Hole; Professor!; Speedball", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-85-first-scent-fire-in-the-/4000-34694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34673/", + "id": 34673, + "name": "Sacrifice", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-7-sacrifice/4000-34673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34662/", + "id": 34662, + "name": "This Blood Is My Blood", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-80-this-blood-is-my-blood/4000-34662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34647/", + "id": 34647, + "name": "Preparations For War", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-3-preparations-for-war/4000-34647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34638/", + "id": 34638, + "name": "Three Faces Of Evil!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-351-three-faces-of-evil/4000-34638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33691/", + "id": 33691, + "name": "Volume 17 Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-17-volume-17-daredevil/4000-33691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34564/", + "id": 34564, + "name": "While the City Screams!", + "site_detail_url": "https://comicvine.gamespot.com/deadly-foes-of-spider-man-4-while-the-city-screams/4000-34564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34557/", + "id": 34557, + "name": "SILVER-TONGUED DEVIL", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-32-silver-tongued-/4000-34557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34547/", + "id": 34547, + "name": "What if Captain America Had Led An Army of Super Soldiers in World War II?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-28-what-if-captain-america-had-led-an-army/4000-34547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34543/", + "id": 34543, + "name": "The Hero In Absence", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-52-the-hero-in-absence/4000-34543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34520/", + "id": 34520, + "name": "Doom Service!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-350-doom-service/4000-34520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496034/", + "id": 496034, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199108/4000-496034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293753/", + "id": 293753, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-264/4000-293753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277705/", + "id": 277705, + "name": "Il Retaggio dei Dannati", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-13-il-retaggio-dei-dannati/4000-277705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66431/", + "id": 66431, + "name": "Changes", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-16-changes/4000-66431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65573/", + "id": 65573, + "name": "Wounds", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-179-wounds/4000-65573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65063/", + "id": 65063, + "name": "A Monster Called... Morbius!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-252-a-monster-called-morbius/4000-65063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64615/", + "id": 64615, + "name": "Sub-City, Part 1 of 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-13-sub-city-part-1-of-2/4000-64615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34546/", + "id": 34546, + "name": "First Blood", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-79-first-blood/4000-34546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34529/", + "id": 34529, + "name": "From Bad to Worse", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-2-from-bad-to-worse/4000-34529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33689/", + "id": 33689, + "name": "Volume 16 Amazing Spider-Man IV", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-16-volume-16-amazing-spider-man/4000-33689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457768/", + "id": 457768, + "name": "Die Spinne ist Spider-Man: Im Reich der Nebelgeister", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-exklusiv-13-die-spinne-ist-spider-man/4000-457768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34455/", + "id": 34455, + "name": "Shattered Dreams", + "site_detail_url": "https://comicvine.gamespot.com/deadly-foes-of-spider-man-3-shattered-dreams/4000-34455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34415/", + "id": 34415, + "name": "God", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-1-god/4000-34415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34414/", + "id": 34414, + "name": "Green Canard", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-383-green-canard/4000-34414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34408/", + "id": 34408, + "name": "Edifice Wrecks", + "site_detail_url": "https://comicvine.gamespot.com/damage-control-2-edifice-wrecks/4000-34408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34405/", + "id": 34405, + "name": "Man of Steal!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-349-man-of-steal/4000-34405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-73799/", + "id": 73799, + "name": "\"The Fourth Wall--And Beyond!\"", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-she-hulk-29-the-fourth-wall-and-be/4000-73799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159397/", + "id": 159397, + "name": "Judge Dredd", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-66-judge-dredd/4000-159397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496033/", + "id": 496033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199107/4000-496033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220687/", + "id": 220687, + "name": "Batman: The Mad Hatter, part 3 (Series Finale)", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-65-batman-the-mad-hatter-part-3-serie/4000-220687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157210/", + "id": 157210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-102/4000-157210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103923/", + "id": 103923, + "name": "Errant Knights", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-annual-1-errant-knights/4000-103923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65572/", + "id": 65572, + "name": "Up From The Depths", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-178-up-from-the-depths/4000-65572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65062/", + "id": 65062, + "name": "The Spider or the Man?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-251-the-spider-or-the-man/4000-65062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64614/", + "id": 64614, + "name": "Perceptions, Part 5 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-12-perceptions-part-5-of-5/4000-64614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34431/", + "id": 34431, + "name": "Toast of the Town...", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-78-toast-of-the-town/4000-34431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34412/", + "id": 34412, + "name": "42 Days", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-8-42-days/4000-34412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132450/", + "id": 132450, + "name": "The Heat Is On...", + "site_detail_url": "https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-18-th/4000-132450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52006/", + "id": 52006, + "name": "To Sleep Perchance to Scream!", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-1-to-sleep-perchance-to-scream/4000-52006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34330/", + "id": 34330, + "name": "The Price of Justice", + "site_detail_url": "https://comicvine.gamespot.com/deadly-foes-of-spider-man-2-the-price-of-justice/4000-34330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34293/", + "id": 34293, + "name": "The Sure Thing", + "site_detail_url": "https://comicvine.gamespot.com/damage-control-1-the-sure-thing/4000-34293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34291/", + "id": 34291, + "name": "Life Of The Party!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-333-life-of-the-party/4000-34291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34290/", + "id": 34290, + "name": "Righteous Sand", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-348-righteous-sand/4000-34290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496032/", + "id": 496032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199106/4000-496032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379746/", + "id": 379746, + "name": "Ground Zero", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-ground-zero-1-ground-zero/4000-379746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218207/", + "id": 218207, + "name": "The Mad Hatter, part 1", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-63-the-mad-hatter-part-1/4000-218207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189727/", + "id": 189727, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-19/4000-189727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180620/", + "id": 180620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/eureka-199102/4000-180620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157209/", + "id": 157209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-101/4000-157209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65571/", + "id": 65571, + "name": "For The Life Of Corona!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-177-for-the-life-of-cor/4000-65571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65060/", + "id": 65060, + "name": "Karma! She Possesses People!/While The City Sleeps", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-250-karma-she-possesses-peoplewhile-t/4000-65060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64613/", + "id": 64613, + "name": "Perceptions, Part 4 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-11-perceptions-part-4-of-5/4000-64613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34324/", + "id": 34324, + "name": "Savage Steel", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-4-savage-steel/4000-34324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34315/", + "id": 34315, + "name": "What if the Punisher Had Killed Daredevil?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-26-what-if-the-punisher-had-killed-daredev/4000-34315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34314/", + "id": 34314, + "name": "Home Is Where The Terror Is", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-77-home-is-where-the-terror-is/4000-34314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34310/", + "id": 34310, + "name": "The Stillness Of The Earth", + "site_detail_url": "https://comicvine.gamespot.com/quasar-23-the-stillness-of-the-earth/4000-34310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34302/", + "id": 34302, + "name": "Murder by Friend!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-57-murder-by-friend/4000-34302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34233/", + "id": 34233, + "name": "Punishment and Crime", + "site_detail_url": "https://comicvine.gamespot.com/deadly-foes-of-spider-man-1-punishment-and-crime/4000-34233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34193/", + "id": 34193, + "name": "The Many Faces of Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-332-the-many-faces-of-doom/4000-34193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34192/", + "id": 34192, + "name": "The Boneyard Hop!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-347-the-boneyard-hop/4000-34192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496031/", + "id": 496031, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199105/4000-496031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214603/", + "id": 214603, + "name": "Ft. the Riddler, part 3. W/ Latigo", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-62-ft-the-riddler-part-3-w-latigo/4000-214603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157208/", + "id": 157208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-100/4000-157208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138252/", + "id": 138252, + "name": "Moanin' the Bavarian", + "site_detail_url": "https://comicvine.gamespot.com/what-the--12-moanin-the-bavarian/4000-138252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65570/", + "id": 65570, + "name": "Who--Or What--Is Corona?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-176-who-or-what-is-coro/4000-65570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65058/", + "id": 65058, + "name": "Mayhem is...the Men-Fish", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-249-mayhem-isthe-men-fish/4000-65058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64612/", + "id": 64612, + "name": "Perceptions, Part 3 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-10-perceptions-part-3-of-5/4000-64612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34226/", + "id": 34226, + "name": "Power Play", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-3-power-play/4000-34226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34216/", + "id": 34216, + "name": "What If Set Had Come to Earth?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-25-what-if-set-had-come-to-earth/4000-34216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34215/", + "id": 34215, + "name": "Art's Desire", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-76-art-s-desire/4000-34215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34206/", + "id": 34206, + "name": "Forever Yesterday, Part 1 - Days Of Present Past", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-11-forever-yesterday-part-1-days-/4000-34206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33688/", + "id": 33688, + "name": "The Vibranium Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-11-the-vibranium/4000-33688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455365/", + "id": 455365, + "name": "Am Anfang war das Chaos", + "site_detail_url": "https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-18-am-anfang-war-das-chao/4000-455365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34086/", + "id": 34086, + "name": "Elliptical Pursuit!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-346-elliptical-pursuit/4000-34086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496030/", + "id": 496030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199104/4000-496030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277698/", + "id": 277698, + "name": "Follia", + "site_detail_url": "https://comicvine.gamespot.com/gli-incredibili-x-men-10-follia/4000-277698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213794/", + "id": 213794, + "name": "Ft. the Riddler, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-61-ft-the-riddler-part-2/4000-213794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157207/", + "id": 157207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-99/4000-157207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132449/", + "id": 132449, + "name": "The Devil You Know", + "site_detail_url": "https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-17-th/4000-132449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65569/", + "id": 65569, + "name": "Spouse Trap", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-175-spouse-trap/4000-65569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65056/", + "id": 65056, + "name": "The Hunters and the Hunted Part II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-248-the-hunters-and-the-hunted-part-i/4000-65056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64611/", + "id": 64611, + "name": "Perceptions, Part 2 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-9-perceptions-part-2-of-5/4000-64611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34145/", + "id": 34145, + "name": "Weapon X Part 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-75-weapon-x-part-4/4000-34145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34124/", + "id": 34124, + "name": "Goblin's Prey!", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-2-goblins-prey/4000-34124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34113/", + "id": 34113, + "name": "What if Wolverine was Lord of the Vampires?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-24-what-if-wolverine-was-lord-of-the-vampi/4000-34113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34112/", + "id": 34112, + "name": "Art Attack, Part 3: Cold Hands, Warm Art", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-75-art-attack-part-3-cold-hands-/4000-34112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34100/", + "id": 34100, + "name": "Crimes of the Pride!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-56-crimes-of-the-pride/4000-34100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33984/", + "id": 33984, + "name": "In A Strange Land", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-330-in-a-strange-land/4000-33984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33983/", + "id": 33983, + "name": "Gun From The Heart!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-345-gun-from-the-heart/4000-33983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496029/", + "id": 496029, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199103/4000-496029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281797/", + "id": 281797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-relief-comic-1/4000-281797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180619/", + "id": 180619, + "name": "Avventura Classic", + "site_detail_url": "https://comicvine.gamespot.com/eureka-199101-avventura-classic/4000-180619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138248/", + "id": 138248, + "name": "Okay, So It's Not Such A Wonderful Life", + "site_detail_url": "https://comicvine.gamespot.com/what-the--11-okay-so-its-not-such-a-wonderful-life/4000-138248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65568/", + "id": 65568, + "name": "Dedication (Or, J. Jonah Goes To Pieces!)", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-174-dedication-or-j-jon/4000-65568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65054/", + "id": 65054, + "name": "The Hunters and the Hunted", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-247-the-hunters-and-the-hunted/4000-65054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64610/", + "id": 64610, + "name": "Perceptions, Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-8-perceptions-part-1-of-5/4000-64610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34008/", + "id": 34008, + "name": "Art Attack, Part 2: Art And Soul", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-74-art-attack-part-2-art-and-sou/4000-34008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436771/", + "id": 436771, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-16/4000-436771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33866/", + "id": 33866, + "name": "Hearts and Powers", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-344-hearts-and-powers/4000-33866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159395/", + "id": 159395, + "name": "Ft. Robin, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-59-ft-robin-part-4/4000-159395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496028/", + "id": 496028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199102/4000-496028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217995/", + "id": 217995, + "name": "The Incandescent Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-246-the-incandescent-man/4000-217995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159394/", + "id": 159394, + "name": "Ft. Robin, part 3, plus the TMNT!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-58-ft-robin-part-3-plus-the-tmnt/4000-159394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132448/", + "id": 132448, + "name": "Thrones, Dominions, and Powers", + "site_detail_url": "https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-16-th/4000-132448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65567/", + "id": 65567, + "name": "Creatures Stirring", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-173-creatures-stirring/4000-65567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64609/", + "id": 64609, + "name": "Masques: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-7-masques-part-2/4000-64609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-34092/", + "id": 34092, + "name": "Eggs got Legs!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-349-eggs-got-legs/4000-34092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33894/", + "id": 33894, + "name": "Art Attack, Part 1: Head Quest", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-73-art-attack-part-1-head-quest/4000-33894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33891/", + "id": 33891, + "name": "The Soul World", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-46-the-soul-world/4000-33891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33867/", + "id": 33867, + "name": "Starting Line-Up", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-329-starting-line-up/4000-33867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436770/", + "id": 436770, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-15/4000-436770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33795/", + "id": 33795, + "name": "What if the Amazing Spider-Man had Married the Black Cat?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-21-what-if-the-amazing-spider-man-had-marr/4000-33795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33768/", + "id": 33768, + "name": "Powerless Part 3: War Garden", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-343-powerless-part-3-war-ga/4000-33768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214471/", + "id": 214471, + "name": "Ft. Robin, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-57-ft-robin-part-2/4000-214471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496027/", + "id": 496027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199101/4000-496027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384386/", + "id": 384386, + "name": "Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-poster-book-1-poster-book/4000-384386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383544/", + "id": 383544, + "name": "Riot at Robotowrld", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-nacme-series-riot-at-robotw/4000-383544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335340/", + "id": 335340, + "name": "Swimsuit Special 1991", + "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-2-swimsuit-special/4000-335340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293748/", + "id": 293748, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-260/4000-293748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223946/", + "id": 223946, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/adventures-in-reading-starring-the-amazing-spider-/4000-223946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223686/", + "id": 223686, + "name": "The Marvel/DC Collection", + "site_detail_url": "https://comicvine.gamespot.com/dcmarvel-crossover-classics-1-the-marveldc-collect/4000-223686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221852/", + "id": 221852, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-battles-the-myth-monster-1/4000-221852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220984/", + "id": 220984, + "name": "Marvel: Five Fabulous Decades Of The World’s Greatest Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-five-fabulous-decades-of-the-worlds-greates/4000-220984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214955/", + "id": 214955, + "name": "Gasoline Alley", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-69-gasoline-alley/4000-214955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214604/", + "id": 214604, + "name": "Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-68-flash-gordon/4000-214604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214470/", + "id": 214470, + "name": "Ft. Robin, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-56-ft-robin-part-1/4000-214470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-184317/", + "id": 184317, + "name": "The Swimsuit Issue", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-swimsuit-issue-1-the-swimsuit-i/4000-184317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157206/", + "id": 157206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-96/4000-157206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156712/", + "id": 156712, + "name": "Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-korvac-saga-1-korvac-saga/4000-156712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-118717/", + "id": 118717, + "name": "A Miracle a Few Blocks Down From 32nd Street / A Christmas Coda / Midnight Drear / Twas a Midwinter's Night / Precious Gifts / Ghosts of Christmas Past / It Came and Went on a Midnight Clear / A Spider-Man Carol", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special-1991-a-miracle-a-few-blocks/4000-118717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65566/", + "id": 65566, + "name": "Savage Showdown", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-172-savage-showdown/4000-65566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65051/", + "id": 65051, + "name": "Down Deep in the Darkness Lurk...Morlocks!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-245-down-deep-in-the-darkness-lurkmor/4000-65051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64608/", + "id": 64608, + "name": "Masques: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-6-masques-part-1/4000-64608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33989/", + "id": 33989, + "name": "Where Monsters Dwell!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-348-where-monsters-dwell/4000-33989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33794/", + "id": 33794, + "name": "The Reckoning", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-72-the-reckoning/4000-33794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33781/", + "id": 33781, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-67/4000-33781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436769/", + "id": 436769, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-14/4000-436769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33553/", + "id": 33553, + "name": "What if the Amazing Spider-Man had Not Married Mary Jane?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-20-what-if-the-amazing-spider-man-had-not-/4000-33553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33550/", + "id": 33550, + "name": "The Homecoming!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-427-the-homecoming/4000-33550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33524/", + "id": 33524, + "name": "Powerless Part 2: The Jonah Trade!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-342-powerless-part-2-the-jo/4000-33524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214468/", + "id": 214468, + "name": "ft. Two-Face, pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-55-ft-two-face-pt-3/4000-214468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897118/", + "id": 897118, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/kelloggs-frosted-flakes-presents-spider-man-and-to/4000-897118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496000/", + "id": 496000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199012/4000-496000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213793/", + "id": 213793, + "name": "Two-Face, pt. 2, Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-54-two-face-pt-2-flash-gordon/4000-213793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157241/", + "id": 157241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-95/4000-157241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134782/", + "id": 134782, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-maste/4000-134782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65565/", + "id": 65565, + "name": "Ordeal!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-171-ordeal/4000-65565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65049/", + "id": 65049, + "name": "Meeting of the Minds", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-244-meeting-of-the-minds/4000-65049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64607/", + "id": 64607, + "name": "Torment, Part 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-5-torment-part-5/4000-64607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33871/", + "id": 33871, + "name": "Big Trouble on Little Earth!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-347-big-trouble-on-little-earth/4000-33871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33552/", + "id": 33552, + "name": "Fortune's Fury", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-71-fortunes-fury/4000-33552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33535/", + "id": 33535, + "name": "Number One with a Bullet", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-21-number-one-with-a-bull/4000-33535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436768/", + "id": 436768, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-13/4000-436768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33417/", + "id": 33417, + "name": "Powerless Part 1: With(out) Great Power", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-341-powerless-part-1-with-o/4000-33417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495999/", + "id": 495999, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199011/4000-495999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281305/", + "id": 281305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-258/4000-281305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169007/", + "id": 169007, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-94/4000-169007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159408/", + "id": 159408, + "name": "Modesty Blaise", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-53-modesty-blaise/4000-159408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65564/", + "id": 65564, + "name": "The Final Calculation", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-170-the-final-calculati/4000-65564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65047/", + "id": 65047, + "name": "Serpents and Senses!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-243-serpents-and-senses/4000-65047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64606/", + "id": 64606, + "name": "Torment, Part 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4-torment-part-4/4000-64606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33445/", + "id": 33445, + "name": "What if the Vision had Conquered the World?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-19-what-if-the-vision-had-conquered-the-wo/4000-33445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33444/", + "id": 33444, + "name": "Are you ready for Spider-Hulk?!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-70-are-you-ready-for-spider-hulk/4000-33444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33429/", + "id": 33429, + "name": "By the Numbers", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-20-by-the-numbers/4000-33429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33424/", + "id": 33424, + "name": "The Calling", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-2-the-calling/4000-33424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33306/", + "id": 33306, + "name": "Female Trouble!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-340-female-trouble/4000-33306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495998/", + "id": 495998, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199010/4000-495998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373897/", + "id": 373897, + "name": "Tiny Toon Adventures", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-15-tiny-toon-adventures/4000-373897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334774/", + "id": 334774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-141/4000-334774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281304/", + "id": 281304, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-257/4000-281304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212481/", + "id": 212481, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-52/4000-212481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169008/", + "id": 169008, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-93/4000-169008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130153/", + "id": 130153, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-298/4000-130153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114141/", + "id": 114141, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fred-hembeck-sells-the-marvel-universe-1/4000-114141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-86086/", + "id": 86086, + "name": "Mindstorm; Sheer Heart Attack; Scout's Motto; Ember When; This Is Our Story; Shadow Of A Doubt;", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-4-mindstorm-sheer-heart-attack/4000-86086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65563/", + "id": 65563, + "name": "The Outlaw Trail", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-169-the-outlaw-trail/4000-65563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65045/", + "id": 65045, + "name": "Shoot Out Over Center Ring!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-242-shoot-out-over-center-ring/4000-65045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64605/", + "id": 64605, + "name": "Torment, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-torment-part-3/4000-64605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33335/", + "id": 33335, + "name": "A Subtle Shade Of Green", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-69-a-subtle-shade-of-green/4000-33335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33318/", + "id": 33318, + "name": "Broadway Knights", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-19-broadway-knights/4000-33318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57806/", + "id": 57806, + "name": "Book Two: The Animal Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-saga-2-book-two-the-animal-unleashed/4000-57806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884905/", + "id": 884905, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/letonnant-spider-man-la-rondelle-de-troie-1/4000-884905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-769006/", + "id": 769006, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/star-magazine-1/4000-769006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495997/", + "id": 495997, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199009/4000-495997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159392/", + "id": 159392, + "name": "Trial of the Joker, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-51-trial-of-the-joker-part-1/4000-159392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127448/", + "id": 127448, + "name": "Armor Wars II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-92-armor-wars-ii/4000-127448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65562/", + "id": 65562, + "name": "Sleeping Dogs", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-168-sleeping-dogs/4000-65562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65042/", + "id": 65042, + "name": "The Ties That Bind!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-241-the-ties-that-bind/4000-65042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64604/", + "id": 64604, + "name": "Torment, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2-torment-part-2/4000-64604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33251/", + "id": 33251, + "name": "The Killing Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-339-the-killing-cure/4000-33251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33214/", + "id": 33214, + "name": "What If Kraven the Hunter had killed Spiderman?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-17-what-if-kraven-the-hunter-had-killed-sp/4000-33214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33213/", + "id": 33213, + "name": "Tombstone Territory", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-68-tombstone-territory/4000-33213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33186/", + "id": 33186, + "name": "Death From Above", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-338-death-from-above/4000-33186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32223/", + "id": 32223, + "name": "Volume 13 The Fantastic Four III", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-13-volume-13-the-fantastic-four/4000-32223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30634/", + "id": 30634, + "name": "Volume 9 The Avengers II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-9-volume-9-the-avengers-ii/4000-30634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436765/", + "id": 436765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-10/4000-436765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107610/", + "id": 107610, + "name": "Days of Future Present Part 4: You Must Remember This", + "site_detail_url": "https://comicvine.gamespot.com/x-men-annual-14-days-of-future-present-part-4-you-/4000-107610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495996/", + "id": 495996, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199008/4000-495996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145985/", + "id": 145985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-91/4000-145985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112516/", + "id": 112516, + "name": "Quark Enterprises", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-24-quark-enterprises/4000-112516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77995/", + "id": 77995, + "name": "Up from Slavery!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-6-up-from-slavery/4000-77995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65561/", + "id": 65561, + "name": "A Misty Kind of Memory", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-167-a-misty-kind-of-mem/4000-65561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65040/", + "id": 65040, + "name": "Death on the Air", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-240-death-on-the-air/4000-65040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64603/", + "id": 64603, + "name": "Torment, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-torment-part-1/4000-64603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33131/", + "id": 33131, + "name": "Rites and Wrongs", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-337-rites-and-wrongs/4000-33131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33119/", + "id": 33119, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-impossible-man-summer-vacation-spectacular-1/4000-33119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33100/", + "id": 33100, + "name": "With Friends Like These", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-67-with-friends-like-these/4000-33100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33070/", + "id": 33070, + "name": "The Wagers of Sin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-336-the-wagers-of-sin/4000-33070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32216/", + "id": 32216, + "name": "\"Into The Microverse\"(Spidey's Totally Tiny Adventure Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-10-into-the-micr/4000-32216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457769/", + "id": 457769, + "name": "Die Spinne: Mein Leben mit Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-exklusiv-9-die-spinne-mein-leben-mit-/4000-457769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366616/", + "id": 366616, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-wolverine-1/4000-366616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33193/", + "id": 33193, + "name": "The Mysterious Seekers!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-342-the-mysterious-seekers/4000-33193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495995/", + "id": 495995, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199007/4000-495995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228382/", + "id": 228382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-marvel-5/4000-228382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189705/", + "id": 189705, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-spectacular-2/4000-189705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169016/", + "id": 169016, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-90/4000-169016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65560/", + "id": 65560, + "name": "The deadly lads from Liverpool", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-166-the-deadly-lads-fro/4000-65560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65038/", + "id": 65038, + "name": "Night of the Griffin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-239-night-of-the-griffin/4000-65038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48872/", + "id": 48872, + "name": "Return of the Forbush-Man", + "site_detail_url": "https://comicvine.gamespot.com/what-the--8-return-of-the-forbush-man/4000-48872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33012/", + "id": 33012, + "name": "Shocks", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-335-shocks/4000-33012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32984/", + "id": 32984, + "name": "What if the Fantastic Four had Lost the Trial of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/what-if-15-what-if-the-fantastic-four-had-lost-the/4000-32984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32983/", + "id": 32983, + "name": "Friends And Enemies", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-66-friends-and-enemies/4000-32983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32956/", + "id": 32956, + "name": "Secrets, Puzzles and Little Fears", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-334-secrets-puzzles-and-lit/4000-32956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32862/", + "id": 32862, + "name": "The Last Act Of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-65-the-last-act-of-vengeance/4000-32862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32838/", + "id": 32838, + "name": "Taserface!", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-1-taserface/4000-32838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32832/", + "id": 32832, + "name": "A Vengeful God!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-318-a-vengeful-god/4000-32832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803952/", + "id": 803952, + "name": "Spider-Man Człowiek-Pająk: Wróg publiczny?; Niełatwo być Spiderem!; Mały wielbiciel Spider-Mana!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-spider-man-czlowiek-pajak-wrog-public/4000-803952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495994/", + "id": 495994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199006/4000-495994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172208/", + "id": 172208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-89/4000-172208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65559/", + "id": 65559, + "name": "Knight and Fogg", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-165-knight-and-fogg/4000-65559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65036/", + "id": 65036, + "name": "'Tis Better to Give! Part II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-238-tis-better-to-give-part-ii/4000-65036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32830/", + "id": 32830, + "name": "Stalking Feat", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-333-stalking-feat/4000-32830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32742/", + "id": 32742, + "name": "Once More With Feeling", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-64-once-more-with-feeling/4000-32742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32722/", + "id": 32722, + "name": "Business as Usual", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-317-business-as-usual/4000-32722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495993/", + "id": 495993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199005/4000-495993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313663/", + "id": 313663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-14/4000-313663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113926/", + "id": 113926, + "name": "Sunday In The Park With Venom!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-332-sunday-in-the-park-with/4000-113926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110288/", + "id": 110288, + "name": "'Tis Better to Give!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-237-tis-better-to-give/4000-110288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65558/", + "id": 65558, + "name": "Bugged", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-164-bugged/4000-65558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32773/", + "id": 32773, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-50/4000-32773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32743/", + "id": 32743, + "name": "What if Professor X had Become the Juggernaut?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-13-what-if-professor-x-had-become-the-jugg/4000-32743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32729/", + "id": 32729, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-49/4000-32729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65557/", + "id": 65557, + "name": "The Carrion Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-163-the-carrion-cure/4000-65557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65033/", + "id": 65033, + "name": "The Lords of Light and Darkness!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-236-the-lords-of-light-and-darkness/4000-65033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32624/", + "id": 32624, + "name": "Spiders and Stars", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-316-spiders-and-stars/4000-32624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-918544/", + "id": 918544, + "name": "Sampler", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-the-incredible-librarian-adventu/4000-918544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495992/", + "id": 495992, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199004/4000-495992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189714/", + "id": 189714, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-12/4000-189714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48871/", + "id": 48871, + "name": "Us Against Them!", + "site_detail_url": "https://comicvine.gamespot.com/what-the--7-us-against-them/4000-48871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32675/", + "id": 32675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-48/4000-32675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32648/", + "id": 32648, + "name": "Clouds From A Distant Storm", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-63-clouds-from-a-distant-storm/4000-32648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32645/", + "id": 32645, + "name": "The Lesson?", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-36-the-lesson/4000-32645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32632/", + "id": 32632, + "name": "If I had the Wings of an Angel...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-50-if-i-had-the-wings-of-an-angel/4000-32632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32622/", + "id": 32622, + "name": "The Death Standard", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-331-the-death-standard/4000-32622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65556/", + "id": 65556, + "name": "The Demon and the Dead Man", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-162-the-demon-and-the-d/4000-65556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32529/", + "id": 32529, + "name": "Still Life With Metal", + "site_detail_url": "https://comicvine.gamespot.com/quasar-8-still-life-with-metal/4000-32529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32515/", + "id": 32515, + "name": "Doomsday Plus One!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-315-doomsday-plus-one/4000-32515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495991/", + "id": 495991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199003/4000-495991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157240/", + "id": 157240, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-86/4000-157240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65031/", + "id": 65031, + "name": "The Lords of Light and Darkness!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-235-the-lords-of-light-and-darkness/4000-65031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32538/", + "id": 32538, + "name": "What If the Fantastic Four All Had the Same Power?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-11-what-if-the-fantastic-four-all-had-the-/4000-32538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32537/", + "id": 32537, + "name": "All That Gitters", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-62-all-that-gitters/4000-32537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32513/", + "id": 32513, + "name": "The Powder Chase", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-330-the-powder-chase/4000-32513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32444/", + "id": 32444, + "name": "The Vampiric Verses Part 1 of 5", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-14-the-vampiric-ve/4000-32444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32430/", + "id": 32430, + "name": "Terminus Rising", + "site_detail_url": "https://comicvine.gamespot.com/quasar-7-terminus-rising/4000-32430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495990/", + "id": 495990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199002/4000-495990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157239/", + "id": 157239, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-85/4000-157239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113559/", + "id": 113559, + "name": "What If the Punisher's Family Had Not Been Killed in Central Park?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-10-what-if-the-punishers-family-had-not-be/4000-113559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65555/", + "id": 65555, + "name": "Pardoned!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-161-pardoned/4000-65555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65029/", + "id": 65029, + "name": "And Then The X-Men!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-234-and-then-the-x-men/4000-65029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47431/", + "id": 47431, + "name": "Elegy", + "site_detail_url": "https://comicvine.gamespot.com/classic-x-men-44-elegy/4000-47431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32437/", + "id": 32437, + "name": "Dragon In The Dark", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-61-dragon-in-the-dark/4000-32437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32429/", + "id": 32429, + "name": "Headlines!", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-15-headlines/4000-32429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32414/", + "id": 32414, + "name": "Along Came a Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-314-along-came-a-spider/4000-32414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32412/", + "id": 32412, + "name": "Power Prey", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-329-power-prey/4000-32412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431166/", + "id": 431166, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-death-of-jean-dewolff-1/4000-431166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251050/", + "id": 251050, + "name": "OGN", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spirits-of-the-earth-1-ogn/4000-251050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495989/", + "id": 495989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-199001/4000-495989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431779/", + "id": 431779, + "name": "Götzendämmerung", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-comic-taschenbuch-9-gotzendammerun/4000-431779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430870/", + "id": 430870, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-emperor-doom-1-tpb/4000-430870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386904/", + "id": 386904, + "name": "Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-skating-on-thin-ice-double-/4000-386904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383543/", + "id": 383543, + "name": "Managing Materials", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-managing-materials-1-managi/4000-383543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345704/", + "id": 345704, + "name": "Los seis Siniestros", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-10-los-seis-siniestros/4000-345704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-317459/", + "id": 317459, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/web-van-spiderman-omnibus-5/4000-317459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-278081/", + "id": 278081, + "name": "La terra selvaggia", + "site_detail_url": "https://comicvine.gamespot.com/speciale-x-men-2-la-terra-selvaggia/4000-278081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233936/", + "id": 233936, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-79/4000-233936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231925/", + "id": 231925, + "name": "Skating on Thin Ice!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-skating-on-thin-ice-1-skati/4000-231925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171667/", + "id": 171667, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/adventures-in-reading-starring-the-amazing-spider-/4000-171667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166761/", + "id": 166761, + "name": "The Enslavers", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-the-enslavers-1-the-enslavers/4000-166761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135700/", + "id": 135700, + "name": "Homework for Spidey", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-new-mutants-1-homework-for-spid/4000-135700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117805/", + "id": 117805, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-venom-1/4000-117805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113265/", + "id": 113265, + "name": "Shaw's Gambit", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-328-shaws-gambit/4000-113265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65026/", + "id": 65026, + "name": "Along Came A Spider...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-233-along-came-a-spider/4000-65026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32338/", + "id": 32338, + "name": "The Harder They Fall", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-60-the-harder-they-fall/4000-32338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32334/", + "id": 32334, + "name": "The Fear and the Fury (or The Metal in Men's Souls)", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-160-the-fear-and-the-fu/4000-32334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32329/", + "id": 32329, + "name": "Blind Faith", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-14-blind-faith/4000-32329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32082/", + "id": 32082, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-39/4000-32082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30617/", + "id": 30617, + "name": "A Friend In Need...", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual-5-a-friend-in-need/4000-30617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326640/", + "id": 326640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-presents-12/4000-326640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32075/", + "id": 32075, + "name": "With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-59-with-great-power/4000-32075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65025/", + "id": 65025, + "name": "Critical Mass!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-232-critical-mass/4000-65025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495913/", + "id": 495913, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198912/4000-495913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387834/", + "id": 387834, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-14/4000-387834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311434/", + "id": 311434, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/factor-x-24/4000-311434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172206/", + "id": 172206, + "name": "What Is Critical Mass?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-83-what-is-critical-mass/4000-172206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150225/", + "id": 150225, + "name": "Marvel: 1989 The Year In Review", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review-1-marvel-1989-the-year-in-re/4000-150225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65023/", + "id": 65023, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-231/4000-65023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47428/", + "id": 47428, + "name": "The Dark Phoenix Saga Part 7", + "site_detail_url": "https://comicvine.gamespot.com/classic-x-men-41-the-dark-phoenix-saga-part-7/4000-47428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32071/", + "id": 32071, + "name": "These Shattered Senses (or A Tale of the Brothers Grimm)", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-159-these-shattered-sen/4000-32071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32053/", + "id": 32053, + "name": "Cunning Attractions", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-327-cunning-attractions/4000-32053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32019/", + "id": 32019, + "name": "Rematch", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-58-rematch/4000-32019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-32014/", + "id": 32014, + "name": "The Paste and the Power (or a Very Sticky Situation)", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-158-the-paste-and-the-p/4000-32014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31991/", + "id": 31991, + "name": "Gravity Storm!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-326-gravity-storm/4000-31991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47900/", + "id": 47900, + "name": "Death at the Hands of Morbius -- the Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-10-death-at-the-ha/4000-47900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47899/", + "id": 47899, + "name": "That was Then... This is Now", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-9-that-was-then-th/4000-47899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31941/", + "id": 31941, + "name": "Finale in Red", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-325-finale-in-red/4000-31941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31916/", + "id": 31916, + "name": "Twos Day", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-324-twos-day/4000-31916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31866/", + "id": 31866, + "name": "The Cross-Time Caper, Part 3: Too many heroes", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-14-the-cross-time-caper-part-3-too-many-/4000-31866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31860/", + "id": 31860, + "name": "Assault Rivals", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-323-assault-rivals/4000-31860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30615/", + "id": 30615, + "name": "War Zone: New York", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-5-war-zone-new-york/4000-30615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31936/", + "id": 31936, + "name": "Flesh And Blood", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-57-flesh-and-blood/4000-31936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838344/", + "id": 838344, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/gente-menuda-1/4000-838344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65021/", + "id": 65021, + "name": "Bewitched, Bothered and Be-Dazzled!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-230-bewitched-bothered-and-be-dazzled/4000-65021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495912/", + "id": 495912, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198911/4000-495912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311433/", + "id": 311433, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/factor-x-23/4000-311433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280852/", + "id": 280852, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-249/4000-280852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65019/", + "id": 65019, + "name": "My Friend, My Foe!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-229-my-friend-my-foe/4000-65019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31937/", + "id": 31937, + "name": "What If The X-Men Lost Inferno?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-6-what-if-the-x-men-lost-inferno/4000-31937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31933/", + "id": 31933, + "name": "Shakedown", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-157-shakedown/4000-31933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31887/", + "id": 31887, + "name": "What If the Vision Had Destroyed the Avengers?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-5-what-if-the-vision-had-destroyed-the-ave/4000-31887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31886/", + "id": 31886, + "name": "Skin-deep", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-56-skin-deep/4000-31886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31883/", + "id": 31883, + "name": "The Search For Robbie Robertson", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-156-the-search-for-robb/4000-31883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31872/", + "id": 31872, + "name": "Renovation", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-47-renovation/4000-31872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30691/", + "id": 30691, + "name": "For Crown and Conquest", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-22-for-crown-and-conquest/4000-30691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31804/", + "id": 31804, + "name": "Ceremony", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-322-ceremony/4000-31804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31783/", + "id": 31783, + "name": "What If the Alien Costume Had Possessed Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-4-what-if-the-alien-costume-had-possessed-/4000-31783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31756/", + "id": 31756, + "name": "Under War", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-321-under-war/4000-31756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30616/", + "id": 30616, + "name": "Here Be Monsters", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-annual-5-here-be-monsters/4000-30616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495911/", + "id": 495911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198910/4000-495911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466888/", + "id": 466888, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thor-10/4000-466888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313649/", + "id": 313649, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-8/4000-313649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311432/", + "id": 311432, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/factor-x-22/4000-311432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65018/", + "id": 65018, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-228/4000-65018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31782/", + "id": 31782, + "name": "Showdown", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-55-showdown/4000-31782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31779/", + "id": 31779, + "name": "Crash Out", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-155-crash-out/4000-31779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30666/", + "id": 30666, + "name": "Volume 10 Amazing Spider-Man III", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-10-volume-10-amazing-spider-man/4000-30666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31698/", + "id": 31698, + "name": "License Invoked", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-320-license-invoked/4000-31698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31646/", + "id": 31646, + "name": "The Scorpion's Tail Of Woe!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-319-the-scorpions-tail-of-w/4000-31646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30692/", + "id": 30692, + "name": "Abominations", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-23-abominations/4000-30692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30632/", + "id": 30632, + "name": "The Serpent In The Shadow", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-9-the-serpent-in/4000-30632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-788516/", + "id": 788516, + "name": "Year's Best 1989", + "site_detail_url": "https://comicvine.gamespot.com/cracked-collectors-edition-80-years-best-1989/4000-788516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495910/", + "id": 495910, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198909/4000-495910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364826/", + "id": 364826, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-annual-1990/4000-364826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358635/", + "id": 358635, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/longshot-1-tpb/4000-358635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311431/", + "id": 311431, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/factor-x-21/4000-311431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-280838/", + "id": 280838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-247/4000-280838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65016/", + "id": 65016, + "name": "When Iceman Attacks", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-227-when-iceman-attacks/4000-65016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31672/", + "id": 31672, + "name": "The Wolves Of War", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-54-the-wolves-of-war/4000-31672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31668/", + "id": 31668, + "name": "Claws", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-154-claws/4000-31668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31650/", + "id": 31650, + "name": "Blackheart!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-270-blackheart/4000-31650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31645/", + "id": 31645, + "name": "Dark Reflections", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-74-dark-reflections/4000-31645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31533/", + "id": 31533, + "name": "Sting Your Partner!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-318-sting-your-partner/4000-31533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30596/", + "id": 30596, + "name": "How Sharper Than A Serpent's Tooth", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-annual-2-how-sharper-than-a-serpents/4000-30596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495909/", + "id": 495909, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198908/4000-495909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-311430/", + "id": 311430, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/factor-x-20/4000-311430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200103/", + "id": 200103, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-170/4000-200103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65014/", + "id": 65014, + "name": "To Smash The Spider!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-226-to-smash-the-spider/4000-65014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31557/", + "id": 31557, + "name": "What If Daredevil Killed the Kingpin?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-2-what-if-daredevil-killed-the-kingpin/4000-31557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31555/", + "id": 31555, + "name": "Wolves In The Night", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-53-wolves-in-the-night/4000-31555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31552/", + "id": 31552, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-153-siege/4000-31552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31152/", + "id": 31152, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-45/4000-31152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31444/", + "id": 31444, + "name": "My Guest-Star,...My Enemy", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-she-hulk-3-my-guest-starmy-enemy/4000-31444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31429/", + "id": 31429, + "name": "The Sand And The Fury!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-317-the-sand-and-the-fury/4000-31429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495907/", + "id": 495907, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198907/4000-495907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138246/", + "id": 138246, + "name": "Wake Up and Shoot the Coffee", + "site_detail_url": "https://comicvine.gamespot.com/what-the--5-wake-up-and-shoot-the-coffee/4000-138246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65012/", + "id": 65012, + "name": "And Death Shall Come!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-225-and-death-shall-come/4000-65012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31454/", + "id": 31454, + "name": "What If the Avengers Lost the Evolutionary War?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-1-what-if-the-avengers-lost-the-evolutiona/4000-31454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31452/", + "id": 31452, + "name": "Chains", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-52-chains/4000-31452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31448/", + "id": 31448, + "name": "A Wolf's Tale", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-152-a-wolfs-tale/4000-31448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31438/", + "id": 31438, + "name": "Hunter's Moon", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight-2-hunters-moon/4000-31438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31316/", + "id": 31316, + "name": "Dead Meat", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-316-dead-meat/4000-31316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495906/", + "id": 495906, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198906/4000-495906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329734/", + "id": 329734, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-bumper-comic-holiday-special-1989/4000-329734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65010/", + "id": 65010, + "name": "Doc Ock Lives!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-224-doc-ock-lives/4000-65010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31342/", + "id": 31342, + "name": "The Crimelord Of New York", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-51-the-crimelord-of-new-york/4000-31342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31336/", + "id": 31336, + "name": "Lock-Up", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-151-lock-up/4000-31336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66340/", + "id": 66340, + "name": "Excalibur's New York Adventure", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-8-excaliburs-new-york-adventure/4000-66340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31211/", + "id": 31211, + "name": "A Restoration Comedy", + "site_detail_url": "https://comicvine.gamespot.com/damage-control-1-a-restoration-comedy/4000-31211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31207/", + "id": 31207, + "name": "A Matter Of Life And Debt", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-315-a-matter-of-life-and-de/4000-31207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495905/", + "id": 495905, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198905/4000-495905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466749/", + "id": 466749, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-112/4000-466749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167456/", + "id": 167456, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-parallel-lives-1/4000-167456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65008/", + "id": 65008, + "name": "The Arms of Doctor Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-223-the-arms-of-doctor-octopus/4000-65008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31231/", + "id": 31231, + "name": "1000 Words", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-50-1000-words/4000-31231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31225/", + "id": 31225, + "name": "Guilty!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-150-guilty/4000-31225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31094/", + "id": 31094, + "name": "Down and Out in Forest Hills", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-314-down-and-out-in-forest-/4000-31094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495904/", + "id": 495904, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198904/4000-495904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171789/", + "id": 171789, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-73/4000-171789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65006/", + "id": 65006, + "name": "Delusions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-222-delusions/4000-65006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31118/", + "id": 31118, + "name": "Corner Business", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-49-corner-business/4000-31118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31113/", + "id": 31113, + "name": "What About Carrion?!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-149-what-about-carrion/4000-31113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113269/", + "id": 113269, + "name": "Slithereens", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-313-slithereens/4000-113269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31007/", + "id": 31007, + "name": "Eyes Of The Demon", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-48-eyes-of-the-demon/4000-31007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495903/", + "id": 495903, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198903/4000-495903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65004/", + "id": 65004, + "name": "Crime and Punishment!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-221-crime-and-punishment/4000-65004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-31001/", + "id": 31001, + "name": "Night of the Living Ned", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-148-night-of-the-living/4000-31001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30906/", + "id": 30906, + "name": "The Face In The Mirror", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-47-the-face-in-the-mirror/4000-30906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30883/", + "id": 30883, + "name": "The Goblin War", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-312-the-goblin-war/4000-30883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495902/", + "id": 495902, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198902/4000-495902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466746/", + "id": 466746, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-109/4000-466746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430424/", + "id": 430424, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1989-01/4000-430424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171788/", + "id": 171788, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-71/4000-171788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65002/", + "id": 65002, + "name": "Stalkers In the Shadows", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-220-stalkers-in-the-shadows/4000-65002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47417/", + "id": 47417, + "name": "He Only Laughs When I Hurt!", + "site_detail_url": "https://comicvine.gamespot.com/classic-x-men-30-he-only-laughs-when-i-hurt/4000-47417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30901/", + "id": 30901, + "name": "When the Bugle Blows", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-147-when-the-bugle-blow/4000-30901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30894/", + "id": 30894, + "name": "Windfall!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-42-windfall/4000-30894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30773/", + "id": 30773, + "name": "Mysteries of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-311-mysteries-of-the-dead/4000-30773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495901/", + "id": 495901, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198901/4000-495901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431733/", + "id": 431733, + "name": "Alptraum-Nächte in Chicago", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-comic-taschenbuch-3-alptraum-nacht/4000-431733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316469/", + "id": 316469, + "name": "Nothing Can Stop the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-nothing-can-stop-the-ju/4000-316469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219397/", + "id": 219397, + "name": "GN", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-cloak-and-dagger-and-power-pa/4000-219397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169716/", + "id": 169716, + "name": "The Triumph of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-universe-1-the-triumph-of-the-green-/4000-169716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128898/", + "id": 128898, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-trial-of-galactus-1-tpb/4000-128898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116592/", + "id": 116592, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/doctor-dooms-revenge-1/4000-116592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110292/", + "id": 110292, + "name": "Listen - Stop me if you’ve heard this before, but this one will kill you !", + "site_detail_url": "https://comicvine.gamespot.com/classic-x-men-29-listen-stop-me-if-youve-heard-thi/4000-110292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84692/", + "id": 84692, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198901/4000-84692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65001/", + "id": 65001, + "name": "One For Those Long Gone!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-219-one-for-those-long-gone/4000-65001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57121/", + "id": 57121, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-13/4000-57121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30798/", + "id": 30798, + "name": "The Power Of Hate... Hate!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-46-the-power-of-hate-hate/4000-30798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30792/", + "id": 30792, + "name": "Demon Night", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-146-demon-night/4000-30792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30449/", + "id": 30449, + "name": "DEATH from ABOVE!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-45-death-from-above/4000-30449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30424/", + "id": 30424, + "name": "Disaster!!!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-298-disaster/4000-30424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30423/", + "id": 30423, + "name": "Shrike Force!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-310-shrike-force/4000-30423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495230/", + "id": 495230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198812/4000-495230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379528/", + "id": 379528, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-6/4000-379528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64999/", + "id": 64999, + "name": "Man-Hunt!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-218-man-hunt/4000-64999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30567/", + "id": 30567, + "name": "Search", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-superman-449-search/4000-30567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30444/", + "id": 30444, + "name": "The Boomerang Returns", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-145-the-boomerang-retur/4000-30444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30434/", + "id": 30434, + "name": "Perchance to Dream", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-41-perchance-to-dream/4000-30434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30358/", + "id": 30358, + "name": "Styx and Stone", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-309-styx-and-stone/4000-30358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30307/", + "id": 30307, + "name": "Love Is The Spell, The Spell Is Death!", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-1-love-is-the-spel/4000-30307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30301/", + "id": 30301, + "name": "Dread", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-308-dread/4000-30301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29040/", + "id": 29040, + "name": "Return to Sender", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-8-return-to-send/4000-29040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495229/", + "id": 495229, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198811/4000-495229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64997/", + "id": 64997, + "name": "Big Apple Battleground!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-217-big-apple-battleground/4000-64997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57120/", + "id": 57120, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-12/4000-57120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48869/", + "id": 48869, + "name": "The Fall ON The Mutants, Chapter 2 : Mutant Beach Party !", + "site_detail_url": "https://comicvine.gamespot.com/what-the--4-the-fall-on-the-mutants-chapter-2-muta/4000-48869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30327/", + "id": 30327, + "name": "Reunion", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-44-reunion/4000-30327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30321/", + "id": 30321, + "name": "An Ill Wind...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-144-an-ill-wind/4000-30321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30310/", + "id": 30310, + "name": "Warzone", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-349-warzone/4000-30310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77994/", + "id": 77994, + "name": "Sweet Poison", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-4-sweet-poison/4000-77994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30230/", + "id": 30230, + "name": "The Thief Who Stole Himself", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-307-the-thief-who-stole-him/4000-30230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30173/", + "id": 30173, + "name": "Humbugger", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-306-humbugger/4000-30173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495228/", + "id": 495228, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198810/4000-495228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64994/", + "id": 64994, + "name": "The Hitman's Back In Town!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-216-the-hitmans-back-in-town/4000-64994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30858/", + "id": 30858, + "name": "Battle Ground Earth", + "site_detail_url": "https://comicvine.gamespot.com/invasion-2-battle-ground-earth/4000-30858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30195/", + "id": 30195, + "name": "Autodafe or... \"Nobody Expects the Spanish Inquisition\"", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-43-autodafe-or-nobody-expects-th/4000-30195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30189/", + "id": 30189, + "name": "Deadline in Dallas", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-143-deadline-in-dallas/4000-30189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29036/", + "id": 29036, + "name": "Volume 5 Amazing Spider-Man II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-5-volume-5-amazing-spider-man-i/4000-29036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64428/", + "id": 64428, + "name": "Drug War Rages", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-22-drug-war-rages/4000-64428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30101/", + "id": 30101, + "name": "Westward Woe", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-305-westward-woe/4000-30101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30048/", + "id": 30048, + "name": "California Schemin'", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-304-california-schemin/4000-30048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495227/", + "id": 495227, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198809/4000-495227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364825/", + "id": 364825, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-annual-1989/4000-364825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277693/", + "id": 277693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-238/4000-277693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64992/", + "id": 64992, + "name": "Let The Punisher Fit The Crime!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-215-let-the-punisher-fit-the-crime/4000-64992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57119/", + "id": 57119, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-11/4000-57119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48867/", + "id": 48867, + "name": "Superbman Vs The Fantastical Four - My Badguy... My Enemy !", + "site_detail_url": "https://comicvine.gamespot.com/what-the--2-superbman-vs-the-fantastical-four-my-b/4000-48867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30072/", + "id": 30072, + "name": "Pressure", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-42-pressure/4000-30072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30064/", + "id": 30064, + "name": "Will", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-142-will/4000-30064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-30057/", + "id": 30057, + "name": "Fallout!", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-234-fallout/4000-30057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29034/", + "id": 29034, + "name": "Volume 4 The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-4-volume-4-the-avengers/4000-29034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29950/", + "id": 29950, + "name": "Silver Mirrors!", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-14-silver-mirrors/4000-29950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29943/", + "id": 29943, + "name": "Whys and Wherefores", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-346-whys-and-wherefores/4000-29943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29936/", + "id": 29936, + "name": "Dock Savage", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-303-dock-savage/4000-29936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495224/", + "id": 495224, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198808/4000-495224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373903/", + "id": 373903, + "name": "Animated Superman & live-action Superboy", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-5-animated-superman-live-action-super/4000-373903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109298/", + "id": 109298, + "name": "The Tombstone Testament!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-141-the-tombstone-testa/4000-109298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64990/", + "id": 64990, + "name": "..And the Nightcrawler Came Prowling", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-214-and-the-nightcrawler-came-prowlin/4000-64990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-48866/", + "id": 48866, + "name": "Accounts Overdrawn--Checks Returned for Lack of Funds; Bower Brats Meet Clunk and Dagnabbit; When Titans Bunch!; Secret Wars III", + "site_detail_url": "https://comicvine.gamespot.com/what-the--1-accounts-overdrawn-checks-returned-for/4000-48866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29955/", + "id": 29955, + "name": "That Old Time Religion", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-41-that-old-time-religion/4000-29955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29819/", + "id": 29819, + "name": "Chaos in Kansas", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-302-chaos-in-kansas/4000-29819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495223/", + "id": 495223, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198807/4000-495223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189710/", + "id": 189710, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-4/4000-189710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171567/", + "id": 171567, + "name": "The Evolutionary War", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-64-the-evolutionary-war/4000-171567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74466/", + "id": 74466, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-280/4000-74466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64989/", + "id": 64989, + "name": "Death-Camp At the Edge of the World!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-213-death-camp-at-the-edge-of-the-wor/4000-64989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57118/", + "id": 57118, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-10/4000-57118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29840/", + "id": 29840, + "name": "All You Need Is Love", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-40-all-you-need-is-love/4000-29840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29833/", + "id": 29833, + "name": "Kill Zone", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-140-kill-zone/4000-29833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29715/", + "id": 29715, + "name": "Grave Memory", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-139-grave-memory/4000-29715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29701/", + "id": 29701, + "name": "The Sable Gauntlet!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-301-the-sable-gauntlet/4000-29701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495221/", + "id": 495221, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198806/4000-495221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64987/", + "id": 64987, + "name": "To Sow the Seeds of Death's Day!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-212-to-sow-the-seeds-of-deaths-day/4000-64987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29720/", + "id": 29720, + "name": "Petty Crimes", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-39-petty-crimes/4000-29720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29598/", + "id": 29598, + "name": "Night of the Flag!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-138-night-of-the-flag/4000-29598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29584/", + "id": 29584, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-300-venom/4000-29584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495219/", + "id": 495219, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198805/4000-495219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-272004/", + "id": 272004, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-235/4000-272004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64984/", + "id": 64984, + "name": "Shoot-Out in Central Park!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-211-shoot-out-in-central-park/4000-64984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57117/", + "id": 57117, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-9/4000-57117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29605/", + "id": 29605, + "name": "Moving Up", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-38-moving-up/4000-29605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29602/", + "id": 29602, + "name": "The Madness Of Mongoose!", + "site_detail_url": "https://comicvine.gamespot.com/thor-391-the-madness-of-mongoose/4000-29602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29490/", + "id": 29490, + "name": "Nowhere to Run, Nowhere to Hide!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-137-nowhere-to-run-nowh/4000-29490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29485/", + "id": 29485, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-37/4000-29485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29476/", + "id": 29476, + "name": "Survival of the Hittest", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-299-survival-of-the-hittest/4000-29476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495216/", + "id": 495216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198804/4000-495216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392508/", + "id": 392508, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/itchy-planet-2/4000-392508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217658/", + "id": 217658, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/star-comics-magazine-9/4000-217658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64982/", + "id": 64982, + "name": "Spdey Goes Toe-To-Toe With The Tarantula!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-210-spdey-goes-toe-to-toe-with-the-ta/4000-64982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29495/", + "id": 29495, + "name": "When Strikers the Slasher", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-37-when-strikers-the-slasher/4000-29495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29489/", + "id": 29489, + "name": "When Arrows Fail/A Love That Never Dies", + "site_detail_url": "https://comicvine.gamespot.com/solo-avengers-5-when-arrows-faila-love-that-never-/4000-29489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57035/", + "id": 57035, + "name": "Illegal Weapons", + "site_detail_url": "https://comicvine.gamespot.com/sledge-hammer-2-illegal-weapons/4000-57035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29378/", + "id": 29378, + "name": "Sin-Ister", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-136-sin-ister/4000-29378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29365/", + "id": 29365, + "name": "Chance Encounter", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-298-chance-encounter/4000-29365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495214/", + "id": 495214, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198803/4000-495214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373904/", + "id": 373904, + "name": "Spider-Man's Amazing Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-2-spider-mans-amazing-anniversary/4000-373904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64979/", + "id": 64979, + "name": "The Punisher Strikes Twice!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-209-the-punisher-strikes-twice/4000-64979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57116/", + "id": 57116, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-8/4000-57116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29385/", + "id": 29385, + "name": "Phreak-Out In Times Square", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-36-phreak-out-in-times-square/4000-29385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455357/", + "id": 455357, + "name": "Caliban aus der Unterwelt", + "site_detail_url": "https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-10-caliban-aus-der-unterw/4000-455357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29269/", + "id": 29269, + "name": "Sin-Thesis", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-135-sin-thesis/4000-29269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29256/", + "id": 29256, + "name": "I'll Take Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-297-ill-take-manhattan/4000-29256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495212/", + "id": 495212, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198802/4000-495212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64976/", + "id": 64976, + "name": "Sword of the She-Devil!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-208-sword-of-the-she-devil/4000-64976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57104/", + "id": 57104, + "name": "Nightmare!", + "site_detail_url": "https://comicvine.gamespot.com/spellbound-2-nightmare/4000-57104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29274/", + "id": 29274, + "name": "You Can Go Home Again!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-35-you-can-go-home-again/4000-29274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64973/", + "id": 64973, + "name": "Fire in the Night!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-207-fire-in-the-night/4000-64973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29152/", + "id": 29152, + "name": "Sin-Cere", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-134-sin-cere/4000-29152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29150/", + "id": 29150, + "name": "Triangle", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-7-triangle/4000-29150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29137/", + "id": 29137, + "name": "Force of Arms", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-296-force-of-arms/4000-29137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495210/", + "id": 495210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198801/4000-495210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431731/", + "id": 431731, + "name": "Geheimstufe 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-comic-taschenbuch-1-geheimstufe-1/4000-431731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394495/", + "id": 394495, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/raccolta-luomo-ragno-1/4000-394495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373888/", + "id": 373888, + "name": "Superman", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-1-superman/4000-373888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274086/", + "id": 274086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/humor-a-tope-33/4000-274086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230299/", + "id": 230299, + "name": "The Phantom", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-88-the-phantom/4000-230299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222070/", + "id": 222070, + "name": "Modesty Blaise : Black Queen's Pawn", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-92-modesty-blaise-black-queens-pawn/4000-222070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57115/", + "id": 57115, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-7/4000-57115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29159/", + "id": 29159, + "name": "Fourth and Eternity", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-34-fourth-and-eternity/4000-29159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108698/", + "id": 108698, + "name": "Spider-Man Secrets", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-3-spider-man-secrets/4000-108698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95183/", + "id": 95183, + "name": "BOOK XXV:", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64971/", + "id": 64971, + "name": "When Walks the Living Monolith!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-206-when-walks-the-living-monolith/4000-64971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28931/", + "id": 28931, + "name": "I Am Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-133-i-am-spider/4000-28931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28919/", + "id": 28919, + "name": "Mad Dogs", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-295-mad-dogs/4000-28919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495106/", + "id": 495106, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198712/4000-495106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-212027/", + "id": 212027, + "name": "The End of Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-23-the-end-of-spider-man/4000-212027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171245/", + "id": 171245, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-57/4000-171245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28936/", + "id": 28936, + "name": "What's The Matter With Mommy?", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-33-whats-the-matter-with-mommy/4000-28936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64970/", + "id": 64970, + "name": "Night of the Living God!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-205-night-of-the-living-god/4000-64970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495105/", + "id": 495105, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198711/4000-495105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166072/", + "id": 166072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-6/4000-166072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28819/", + "id": 28819, + "name": "Kraven's Last Hunt, Part Four: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-32-kraven-s-last-hunt-part-four-/4000-28819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28806/", + "id": 28806, + "name": "Special Effects!", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-33-special-effects/4000-28806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28805/", + "id": 28805, + "name": "Ascending", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-132-ascending/4000-28805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28795/", + "id": 28795, + "name": "Thunder", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-294-thunder/4000-28795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27587/", + "id": 27587, + "name": "The Honeymoon", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-7-the-honeymoon/4000-27587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27558/", + "id": 27558, + "name": "Volume 1 Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-1-volume-1-amazing-spider-man/4000-27558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-457764/", + "id": 457764, + "name": "Die Spinne: Der Kampf der Hexenmeister", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-exklusiv-1-die-spinne-der-kampf-der-h/4000-457764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64969/", + "id": 64969, + "name": "The Measure of a Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-204-the-measure-of-a-man/4000-64969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95181/", + "id": 95181, + "name": "BOOK XXIII:", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495104/", + "id": 495104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198710/4000-495104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28701/", + "id": 28701, + "name": "Kraven's Last Hunt, Part One: The Coffin", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-31-kraven-s-last-hunt-part-one-t/4000-28701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28691/", + "id": 28691, + "name": "Descent", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-131-descent/4000-28691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28682/", + "id": 28682, + "name": "Part 2: Crawling", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-293-part-2-crawling/4000-28682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95180/", + "id": 95180, + "name": "BOOK XXII:", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28579/", + "id": 28579, + "name": "The Wages of Sin", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-30-the-wages-of-sin/4000-28579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28569/", + "id": 28569, + "name": "24 Hours", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-130-24-hours/4000-28569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28560/", + "id": 28560, + "name": "Growing Pains", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-292-growing-pains/4000-28560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270134/", + "id": 270134, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thundercats-28/4000-270134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495103/", + "id": 495103, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198709/4000-495103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170863/", + "id": 170863, + "name": "The Wedding of the Year", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-54-the-wedding-of-the-year/4000-170863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166071/", + "id": 166071, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-5/4000-166071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64968/", + "id": 64968, + "name": "At Kraven's Command!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-203-at-kravens-command/4000-64968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28575/", + "id": 28575, + "name": "The Secret Love", + "site_detail_url": "https://comicvine.gamespot.com/thor-383-the-secret-love/4000-28575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27607/", + "id": 27607, + "name": "The Wedding", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-21-the-wedding/4000-27607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28471/", + "id": 28471, + "name": "Mask", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-29-mask/4000-28471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28462/", + "id": 28462, + "name": "Foreign Affairs", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-129-foreign-affairs/4000-28462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28453/", + "id": 28453, + "name": "Dark Journey", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-291-dark-journey/4000-28453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495102/", + "id": 495102, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198708/4000-495102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334000/", + "id": 334000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-103/4000-334000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266343/", + "id": 266343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-229/4000-266343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64967/", + "id": 64967, + "name": "Murder World", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-202-murder-world/4000-64967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455356/", + "id": 455356, + "name": "Die Botschaft aus der Zukunft", + "site_detail_url": "https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-9-die-botschaft-aus-der-z/4000-455356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28342/", + "id": 28342, + "name": "Spider Hunt", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-128-spider-hunt/4000-28342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28332/", + "id": 28332, + "name": "The Big Question", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-290-the-big-question/4000-28332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495101/", + "id": 495101, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198707/4000-495101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224206/", + "id": 224206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/acme-comics-8/4000-224206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64966/", + "id": 64966, + "name": "Introducing, Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-201-introducing-captain-britain/4000-64966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57112/", + "id": 57112, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-4/4000-57112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28352/", + "id": 28352, + "name": "Torch Bearing", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-28-torch-bearing/4000-28352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28341/", + "id": 28341, + "name": "Shadows on the Soul!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-33-shadows-on-the-soul/4000-28341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366811/", + "id": 366811, + "name": "\"With Foes Like These...\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1987s-with-foes-like-these/4000-366811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28218/", + "id": 28218, + "name": "The Hobgoblin Revealed!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-289-the-hobgoblin-revealed/4000-28218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495100/", + "id": 495100, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198706/4000-495100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114773/", + "id": 114773, + "name": "\"When Titans Plug!\"", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-annual-3-when-titans-plug/4000-114773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95177/", + "id": 95177, + "name": "BOOK XIX: THE OLD ORDER CHANGETH!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64965/", + "id": 64965, + "name": "Night of the Bend Sinister", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-200-night-of-the-bend-sinister/4000-64965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28235/", + "id": 28235, + "name": "Scared to Succeed!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-27-scared-to-succeed/4000-28235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28228/", + "id": 28228, + "name": "Among Us Lurks a Lizard", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-127-among-us-lurks-a-li/4000-28228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95176/", + "id": 95176, + "name": "BOOK XVIII: THE TRIUMPH AND THE TRAGEDY!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28108/", + "id": 28108, + "name": "Gang War Rages On", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-288-gang-war-rages-on/4000-28108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-931910/", + "id": 931910, + "name": "Il signore dei 1000 anelli; La \"possessione\" di Franklin Richards", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-1-il-signore-dei-1000-anelli-la-posses/4000-931910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495099/", + "id": 495099, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198705/4000-495099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315155/", + "id": 315155, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-41/4000-315155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315154/", + "id": 315154, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-42/4000-315154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169927/", + "id": 169927, + "name": "Which New Universe Star Will Die?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-50-which-new-universe-star-will-die/4000-169927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64964/", + "id": 64964, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-199/4000-64964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57111/", + "id": 57111, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-3/4000-57111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28125/", + "id": 28125, + "name": "Nothing to Fear", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-26-nothing-to-fear/4000-28125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28118/", + "id": 28118, + "name": "Sudden Impact", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-126-sudden-impact/4000-28118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28117/", + "id": 28117, + "name": "Is This The Way The World Ends?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-32-is-this-the-way-the-world-ends/4000-28117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28007/", + "id": 28007, + "name": "...And There Shall Come a Reckoning", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-287-and-there-shall-come-a-/4000-28007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376362/", + "id": 376362, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-heroes-115/4000-376362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495098/", + "id": 495098, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198704/4000-495098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169701/", + "id": 169701, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-49/4000-169701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64963/", + "id": 64963, + "name": "If Death Be My Destiny; Clobberin' Time", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-198-if-death-be-my-destiny-clobberin-/4000-64963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28024/", + "id": 28024, + "name": "Beware the Stalker from the Stars!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-25-beware-the-stalker-from-the-s/4000-28024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28018/", + "id": 28018, + "name": "Obsession!", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-29-obsession/4000-28018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-28017/", + "id": 28017, + "name": "Wrecking Havoc!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-125-wrecking-havoc/4000-28017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27893/", + "id": 27893, + "name": "Thy Father's Son", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-286-thy-fathers-son/4000-27893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761975/", + "id": 761975, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-53/4000-761975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495097/", + "id": 495097, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198703/4000-495097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313182/", + "id": 313182, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-mutantes-16/4000-313182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313181/", + "id": 313181, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-mutantes-15/4000-313181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64962/", + "id": 64962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-197/4000-64962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57110/", + "id": 57110, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-2/4000-57110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27913/", + "id": 27913, + "name": "High $takes", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-24-high-takes/4000-27913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27907/", + "id": 27907, + "name": "When Strikes The Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-124-when-strikes-the-oc/4000-27907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114552/", + "id": 114552, + "name": "High Tide", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-wolverine-1-high-tide/4000-114552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95173/", + "id": 95173, + "name": "BOOK XV: Avengers A 'Borning!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27790/", + "id": 27790, + "name": "The Best Man", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-299-the-best-man/4000-27790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27783/", + "id": 27783, + "name": "The Arranger Must Die", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-285-the-arranger-must-die/4000-27783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251274/", + "id": 251274, + "name": "Spider-Man and Zoids 51", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-51-spider-man-and-zoids-51/4000-251274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251273/", + "id": 251273, + "name": "Spider-Man and Zoids 50", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-50-spider-man-and-zoids-50/4000-251273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251272/", + "id": 251272, + "name": "Spider-Man and Zoids 49", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-49-spider-man-and-zoids-49/4000-251272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495096/", + "id": 495096, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198702/4000-495096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157228/", + "id": 157228, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-47/4000-157228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64961/", + "id": 64961, + "name": "All This, and the QE2!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-196-all-this-and-the-qe2/4000-64961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27804/", + "id": 27804, + "name": "Slip Slydin' Away!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-23-slip-slydin-away/4000-27804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27800/", + "id": 27800, + "name": "With Friends Like These...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-123-with-friends-like-t/4000-27800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251271/", + "id": 251271, + "name": "Spider-Man and Zoids 48", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-48-spider-man-and-zoids-48/4000-251271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27671/", + "id": 27671, + "name": "...And Who Shall Stand Against Them...?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-284-and-who-shall-stand-aga/4000-27671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251270/", + "id": 251270, + "name": "Spider-Man and Zoids 47", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-47-spider-man-and-zoids-47/4000-251270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251258/", + "id": 251258, + "name": "Spider-Man and Zoids 46", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-46-spider-man-and-zoids-46/4000-251258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251257/", + "id": 251257, + "name": "Spider-Man and Zoids 45", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-45-spider-man-and-zoids-45/4000-251257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251256/", + "id": 251256, + "name": "Spider-Man and Zoids 44", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-44-spider-man-and-zoids-44/4000-251256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761983/", + "id": 761983, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-presents-super-heroes-1/4000-761983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495095/", + "id": 495095, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198701/4000-495095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424097/", + "id": 424097, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/cartoon-aid-1/4000-424097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224921/", + "id": 224921, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4/4000-224921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224920/", + "id": 224920, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3/4000-224920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224919/", + "id": 224919, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4000-224919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224918/", + "id": 224918, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-224918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211874/", + "id": 211874, + "name": "Bloom County", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-22-bloom-county/4000-211874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211873/", + "id": 211873, + "name": "Steve Canyon : The Baker Street Adventure", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-21-steve-canyon-the-baker-street-adve/4000-211873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211367/", + "id": 211367, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-19-the-amazing-spider-man/4000-211367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211366/", + "id": 211366, + "name": "Hagar the Horrible", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-18-hagar-the-horrible/4000-211366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-197667/", + "id": 197667, + "name": "Volume one", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-marvel-comics-1-volume-one/4000-197667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192272/", + "id": 192272, + "name": "Who Cares?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-national-committee-for-prevention-of-ch/4000-192272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95172/", + "id": 95172, + "name": "BOOK XIV: CONFRONTATIONS!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64960/", + "id": 64960, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-195/4000-64960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57109/", + "id": 57109, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine-1/4000-57109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27692/", + "id": 27692, + "name": "Profit of Doom", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-22-profit-of-doom/4000-27692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27686/", + "id": 27686, + "name": "Father's Night Out", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-122-fathers-night-out/4000-27686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27608/", + "id": 27608, + "name": "Emperor Doom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-27-emperor-doom/4000-27608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455355/", + "id": 455355, + "name": "Wolverines Solo", + "site_detail_url": "https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-8-wolverines-solo/4000-455355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27481/", + "id": 27481, + "name": "With Foes Like These...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-283-with-foes-like-these/4000-27481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251255/", + "id": 251255, + "name": "Spider-Man and Zoids 43", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-43-spider-man-and-zoids-43/4000-251255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251254/", + "id": 251254, + "name": "Spider-Man and Zoids 42", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-42-spider-man-and-zoids-42/4000-251254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251242/", + "id": 251242, + "name": "Spider-Man and Zoids 41", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-41-spider-man-and-zoids-41/4000-251242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251241/", + "id": 251241, + "name": "Spider-Man and Zoids 40", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-40-spider-man-and-zoids-40/4000-251241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761972/", + "id": 761972, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-50/4000-761972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495094/", + "id": 495094, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198612/4000-495094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441911/", + "id": 441911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1986-12/4000-441911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95171/", + "id": 95171, + "name": "BOOK XIII: EVIL DARED!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64959/", + "id": 64959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-194/4000-64959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27502/", + "id": 27502, + "name": "The Enemy Unknown!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-21-the-enemy-unknown/4000-27502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27497/", + "id": 27497, + "name": "Eye Witness!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-121-eye-witness/4000-27497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112515/", + "id": 112515, + "name": "Man Of The Year", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-20-man-of-the-year/4000-112515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27375/", + "id": 27375, + "name": "The Fury of X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-282-the-fury-of-x-factor/4000-27375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251240/", + "id": 251240, + "name": "Spider-Man and Zoids 39", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-39-spider-man-and-zoids-39/4000-251240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251239/", + "id": 251239, + "name": "Spider-Man and Zoids 38", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-38-spider-man-and-zoids-38/4000-251239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95170/", + "id": 95170, + "name": "Book XII: A Legend Reborn", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251238/", + "id": 251238, + "name": "Spider-Man and Zoids 37", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-37-spider-man-and-zoids-37/4000-251238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251227/", + "id": 251227, + "name": "Spider-Man and Zoids 36", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-36-spider-man-and-zoids-36/4000-251227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495093/", + "id": 495093, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198611/4000-495093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441913/", + "id": 441913, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1986-11/4000-441913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251226/", + "id": 251226, + "name": "Spider-Man and Zoids 35", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-35-spider-man-and-zoids-35/4000-251226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157224/", + "id": 157224, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-44/4000-157224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64958/", + "id": 64958, + "name": "Some Say Spidey Will Die By Fire... ...Some Say By Ice!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-193-some-say-spidey-will-die-by-fire-/4000-64958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27397/", + "id": 27397, + "name": "Little Wars!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-20-little-wars/4000-27397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27392/", + "id": 27392, + "name": "A House is Not a Home", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-120-a-house-is-not-a-ho/4000-27392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217540/", + "id": 217540, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/top-dog-10/4000-217540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27270/", + "id": 27270, + "name": "When Warriors Clash", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-281-when-warriors-clash/4000-27270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251225/", + "id": 251225, + "name": "Spider-Man and Zoids 34", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-34-spider-man-and-zoids-34/4000-251225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251224/", + "id": 251224, + "name": "Spider-Man and Zoids 33", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-33-spider-man-and-zoids-33/4000-251224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251223/", + "id": 251223, + "name": "Spider-Man and Zoids 32", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-32-spider-man-and-zoids-32/4000-251223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251210/", + "id": 251210, + "name": "Spider-Man and Zoids 31", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-31-spider-man-and-zoids-31/4000-251210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495092/", + "id": 495092, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198610/4000-495092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109297/", + "id": 109297, + "name": "Catfight", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-119-catfight/4000-109297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95169/", + "id": 95169, + "name": "Book XI: Days of Power!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64956/", + "id": 64956, + "name": "The Goblin's Last Stand!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-192-the-goblins-last-stand/4000-64956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27288/", + "id": 27288, + "name": "Humbug!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-19-humbug/4000-27288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26301/", + "id": 26301, + "name": "Ace II", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-6-ace-ii/4000-26301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455353/", + "id": 455353, + "name": "An die Vergangenheit", + "site_detail_url": "https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-6-an-die-vergangenheit/4000-455353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27174/", + "id": 27174, + "name": "Introducing the Sinister Syndicate", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-280-introducing-the-siniste/4000-27174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251209/", + "id": 251209, + "name": "Spider-Man and Zoids 30", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-30-spider-man-and-zoids-30/4000-251209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251208/", + "id": 251208, + "name": "Spider-Man and Zoids 29", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-29-spider-man-and-zoids-29/4000-251208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251207/", + "id": 251207, + "name": "Spider-Man and Zoids 28", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-28-spider-man-and-zoids-28/4000-251207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251206/", + "id": 251206, + "name": "Spider-Man and Zoids 27", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-27-spider-man-and-zoids-27/4000-251206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495091/", + "id": 495091, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198609/4000-495091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364824/", + "id": 364824, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-annual-1987/4000-364824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157222/", + "id": 157222, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-42/4000-157222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95168/", + "id": 95168, + "name": "BOOK X: TO STAND UNITED", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-86082/", + "id": 86082, + "name": "HARDBALL", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-125-hardball/4000-86082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77993/", + "id": 77993, + "name": "Wake Me Up I Gotta Be Dreaming; You're Lying, Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-2-wake-me-up-i-gotta-be-d/4000-77993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74451/", + "id": 74451, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-265/4000-74451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64954/", + "id": 64954, + "name": "And Now the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-191-and-now-the-goblin/4000-64954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27191/", + "id": 27191, + "name": "The Longest Road", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-18-the-longest-road/4000-27191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27187/", + "id": 27187, + "name": "Ashes to Ashes", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-118-ashes-to-ashes/4000-27187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27096/", + "id": 27096, + "name": "Pride of the Regiment", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers-11-pride-of-the-regiment/4000-27096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27094/", + "id": 27094, + "name": "A Taxing Time", + "site_detail_url": "https://comicvine.gamespot.com/the-vision-and-the-scarlet-witch-11-a-taxing-time/4000-27094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27076/", + "id": 27076, + "name": "Savage is the Sable", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-279-savage-is-the-sable/4000-27076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251094/", + "id": 251094, + "name": "Spider-Man and Zoids 26", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-26-spider-man-and-zoids-26/4000-251094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95167/", + "id": 95167, + "name": "BOOK IX: Look To the Skies...!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251193/", + "id": 251193, + "name": "Spider-Man and Zoids 25", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-25-spider-man-and-zoids-25/4000-251193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251192/", + "id": 251192, + "name": "Spider-Man and Zoids 24", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-24-spider-man-and-zoids-24/4000-251192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114772/", + "id": 114772, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-annual-2/4000-114772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251191/", + "id": 251191, + "name": "Spider-Man and Zoids 23", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-23-spider-man-and-zoids-23/4000-251191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251190/", + "id": 251190, + "name": "Spider-Man and Zoids 22", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-22-spider-man-and-zoids-22/4000-251190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-879272/", + "id": 879272, + "name": "La vengeance du Monolithe Vivant", + "site_detail_url": "https://comicvine.gamespot.com/top-bd-11-la-vengeance-du-monolithe-vivant/4000-879272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495090/", + "id": 495090, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198608/4000-495090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157221/", + "id": 157221, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-41/4000-157221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141647/", + "id": 141647, + "name": "Marvel Team-Up #81 - #98", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-marvel-team-up-5-marv/4000-141647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27095/", + "id": 27095, + "name": "The Magma Solution", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-17-the-magma-solution/4000-27095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27090/", + "id": 27090, + "name": "Dinner Hour", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-117-dinner-hour/4000-27090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26982/", + "id": 26982, + "name": "If This Be Justice", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-278-if-this-be-justice/4000-26982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109645/", + "id": 109645, + "name": "Sif To Sunspot", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-12-si/4000-109645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251189/", + "id": 251189, + "name": "Spider-Man and Zoids 21", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-21-spider-man-and-zoids-21/4000-251189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251176/", + "id": 251176, + "name": "Spider-Man and Zoids 20", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-20-spider-man-and-zoids-20/4000-251176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251175/", + "id": 251175, + "name": "Spider-Man and Zoids 19", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-19-spider-man-and-zoids-19/4000-251175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251174/", + "id": 251174, + "name": "Spider-Man and Zoids 18", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-18-spider-man-and-zoids-18/4000-251174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495089/", + "id": 495089, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198607/4000-495089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217612/", + "id": 217612, + "name": "From the Depths of Defeat!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-189-from-the-depths-of-defeat/4000-217612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95166/", + "id": 95166, + "name": "BOOK VIII: FATEFUL ENCOUNTERS!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26999/", + "id": 26999, + "name": "Underworld!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-16-underworld/4000-26999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26994/", + "id": 26994, + "name": "102 Uses for a Dead Cat", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-116-102-uses-for-a-dead/4000-26994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26991/", + "id": 26991, + "name": "Cars", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-27-cars/4000-26991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366810/", + "id": 366810, + "name": "Summer 1986", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1986s-summer-1986/4000-366810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26884/", + "id": 26884, + "name": "The Rules of the Game", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-277-the-rules-of-the-game/4000-26884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251173/", + "id": 251173, + "name": "Spider-Man and Zoids 17", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-17-spider-man-and-zoids-17/4000-251173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251172/", + "id": 251172, + "name": "Spider-Man and Zoids 16", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-16-spider-man-and-zoids-16/4000-251172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251160/", + "id": 251160, + "name": "Spider-Man and Zoids 15", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-15-spider-man-and-zoids-15/4000-251160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95165/", + "id": 95165, + "name": "BOOK VII: THE TIES THAT BIND!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251159/", + "id": 251159, + "name": "Spider-Man and Zoids 14", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-14-spider-man-and-zoids-14/4000-251159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495088/", + "id": 495088, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198606/4000-495088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64949/", + "id": 64949, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-188/4000-64949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26904/", + "id": 26904, + "name": "Fox Hunt", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-15-fox-hunt/4000-26904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26898/", + "id": 26898, + "name": "Things Fall Apart", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-115-things-fall-apart/4000-26898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466588/", + "id": 466588, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-76/4000-466588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251158/", + "id": 251158, + "name": "Spider-Man and Zoids 13", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-13-spider-man-and-zoids-13/4000-251158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26783/", + "id": 26783, + "name": "Unmasked!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-276-unmasked/4000-26783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251156/", + "id": 251156, + "name": "Spider-Man and Zoids 12", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-12-spider-man-and-zoids-12/4000-251156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251155/", + "id": 251155, + "name": "Spider-Man and Zoids 11", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-11-spider-man-and-zoids-11/4000-251155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251143/", + "id": 251143, + "name": "Spider-Man and Zoids 10", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-10-spider-man-and-zoids-10/4000-251143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251142/", + "id": 251142, + "name": "Spider-Man and Zoids 9", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-9-spider-man-and-zoids-9/4000-251142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761966/", + "id": 761966, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-44/4000-761966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495087/", + "id": 495087, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198605/4000-495087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64947/", + "id": 64947, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-187/4000-64947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26806/", + "id": 26806, + "name": "All That Glitters...", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-14-all-that-glitters/4000-26806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26796/", + "id": 26796, + "name": "The Key", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-114-the-key/4000-26796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26692/", + "id": 26692, + "name": "The Choice and the Challenge", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-275-the-choice-and-the-chal/4000-26692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251141/", + "id": 251141, + "name": "Spider-Man and Zoids 8", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-8-spider-man-and-zoids-8/4000-251141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251140/", + "id": 251140, + "name": "Spider-Man and Zoids 7", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-7-spider-man-and-zoids-7/4000-251140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251139/", + "id": 251139, + "name": "Spider-Man and Zoids 6", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-6-spider-man-and-zoids-6/4000-251139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251111/", + "id": 251111, + "name": "Spider-Man and Zoids 5", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-5-spider-man-and-zoids-5/4000-251111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495086/", + "id": 495086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198604/4000-495086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64945/", + "id": 64945, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-186/4000-64945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26712/", + "id": 26712, + "name": "Point Of View", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-13-point-of-view/4000-26712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26707/", + "id": 26707, + "name": "Mayhem!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-113-mayhem/4000-26707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26703/", + "id": 26703, + "name": "The Great Goo-Gam Treasue Hunt!", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-21-the-great-goo-gam-treasue-hunt/4000-26703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466591/", + "id": 466591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-73/4000-466591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26598/", + "id": 26598, + "name": "Full Circle", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-288-full-circle/4000-26598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26592/", + "id": 26592, + "name": "Lo, There Shall Come a Champion", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-274-lo-there-shall-come-a-c/4000-26592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251110/", + "id": 251110, + "name": "Spider-Man and Zoids 4", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-4-spider-man-and-zoids-4/4000-251110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251109/", + "id": 251109, + "name": "Spider-Man and Zoids 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-3-spider-man-and-zoids-3/4000-251109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251108/", + "id": 251108, + "name": "Spider-Man and Zoids 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-2-spider-man-and-zoids-2/4000-251108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251107/", + "id": 251107, + "name": "Spider-Man and Zoids 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-zoids-1-spider-man-and-zoids-1/4000-251107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495085/", + "id": 495085, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198603/4000-495085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406262/", + "id": 406262, + "name": "Secret Wars II Special 1", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-special-1-secret-wars-ii-special-1/4000-406262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145980/", + "id": 145980, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-36/4000-145980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64942/", + "id": 64942, + "name": "Spidey Smashes Out!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-185-spidey-smashes-out/4000-64942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57523/", + "id": 57523, + "name": "God In Man, Man In God", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-9-god-in-man-man-in-god/4000-57523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26615/", + "id": 26615, + "name": "Law And Order", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-12-law-and-order/4000-26615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26608/", + "id": 26608, + "name": "You Better Watch Out...You Never make a Sound!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-112-you-better-watch-ou/4000-26608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95161/", + "id": 95161, + "name": "BOOK III: A GATHERING OF DOOMS!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26514/", + "id": 26514, + "name": "...And Then the Gods Cried.", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-111-and-then-the-gods-c/4000-26514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26495/", + "id": 26495, + "name": "To Challenge the Beyonder", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-273-to-challenge-the-beyond/4000-26495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495084/", + "id": 495084, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198602/4000-495084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145979/", + "id": 145979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-35/4000-145979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64941/", + "id": 64941, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-184/4000-64941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57522/", + "id": 57522, + "name": "Betrayal!", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-8-betrayal/4000-57522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26521/", + "id": 26521, + "name": "Have You Seen...That Vigilante Man!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-11-have-you-seenthat-vigilante-m/4000-26521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95160/", + "id": 95160, + "name": "BOOK II : TRANSFORMATION AND REBIRTH!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26409/", + "id": 26409, + "name": "All My Sins Remembered", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-110-all-my-sins-remembe/4000-26409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26387/", + "id": 26387, + "name": "Make Way For Slyde", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-272-make-way-for-slyde/4000-26387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761962/", + "id": 761962, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-40/4000-761962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495083/", + "id": 495083, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198601/4000-495083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-376868/", + "id": 376868, + "name": "Suddenly, 50 years later...", + "site_detail_url": "https://comicvine.gamespot.com/fifty-who-made-dc-great-1-suddenly-50-years-later/4000-376868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221785/", + "id": 221785, + "name": "Is This the End of Flash Gordon?", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-86-is-this-the-end-of-flash-gordon/4000-221785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221063/", + "id": 221063, + "name": "The Origin of Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-87-the-origin-of-daredevil/4000-221063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211364/", + "id": 211364, + "name": "Dick Moores", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-17-dick-moores/4000-211364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57521/", + "id": 57521, + "name": "Charge Of The Dark Brigade !", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-7-charge-of-the-dark-brigade/4000-57521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26415/", + "id": 26415, + "name": "There, But For Fortune!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-10-there-but-for-fortune/4000-26415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26325/", + "id": 26325, + "name": "The Amazing Spider-Man: Hooky", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-22-the-amazing-spider-man-hoo/4000-26325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26233/", + "id": 26233, + "name": "Can't Give It All Away!", + "site_detail_url": "https://comicvine.gamespot.com/longshot-4-cant-give-it-all-away/4000-26233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26205/", + "id": 26205, + "name": "He Who Is Without Sin", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-109-he-who-is-without-s/4000-26205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26183/", + "id": 26183, + "name": "Whatever Happened to Crusher Hogan?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-271-whatever-happened-to-cr/4000-26183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495006/", + "id": 495006, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198512/4000-495006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281063/", + "id": 281063, + "name": "Special", + "site_detail_url": "https://comicvine.gamespot.com/transformers-collected-comics-2-special/4000-281063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-95159/", + "id": 95159, + "name": "BOOK I: The Saga Begins...!", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64937/", + "id": 64937, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-182/4000-64937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26212/", + "id": 26212, + "name": "The Twilight Heroes", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-9-the-twilight-heroes/4000-26212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466573/", + "id": 466573, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-70/4000-466573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26117/", + "id": 26117, + "name": "Just Let Me Die", + "site_detail_url": "https://comicvine.gamespot.com/longshot-3-just-let-me-die/4000-26117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26099/", + "id": 26099, + "name": "Sin of Pride", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-108-sin-of-pride/4000-26099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26076/", + "id": 26076, + "name": "Lost and Found", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-3-lost-and-found/4000-26076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26071/", + "id": 26071, + "name": "The Hero and the Holocaust", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-270-the-hero-and-the-holoca/4000-26071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327805/", + "id": 327805, + "name": "In the Shadow of Evils Past!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-660-in-the-shadow-of-evils-past/4000-327805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761960/", + "id": 761960, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-38/4000-761960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495005/", + "id": 495005, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198511/4000-495005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145976/", + "id": 145976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-32/4000-145976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64935/", + "id": 64935, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-181/4000-64935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64427/", + "id": 64427, + "name": "Fun 'N' Games", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-19-fun-n-games/4000-64427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26107/", + "id": 26107, + "name": "Local Super Hero!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-8-local-super-hero/4000-26107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26074/", + "id": 26074, + "name": "Working", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-311-working/4000-26074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25091/", + "id": 25091, + "name": "Ace", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-5-ace/4000-25091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465806/", + "id": 465806, + "name": "\"United We Fall\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1985w-united-we-fall/4000-465806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451526/", + "id": 451526, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-13/4000-451526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25993/", + "id": 25993, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-107-original-sin/4000-25993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25971/", + "id": 25971, + "name": "Burn, Spider, Burn", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-269-burn-spider-burn/4000-25971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327804/", + "id": 327804, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-659/4000-327804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327802/", + "id": 327802, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-656/4000-327802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495004/", + "id": 495004, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198510/4000-495004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124314/", + "id": 124314, + "name": "All About Nightcrawler in the Mutant Report!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-31-all-about-nightcrawler-in-the-mutant/4000-124314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117738/", + "id": 117738, + "name": "Revenge of The Living Monolith", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-17-revenge-of-the-living-mono/4000-117738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64933/", + "id": 64933, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-180/4000-64933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26001/", + "id": 26001, + "name": "Welcome to my nightmare", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-7-welcome-to-my-nightmare/4000-26001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465432/", + "id": 465432, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-189-le-journal-de-spider-man/4000-465432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25866/", + "id": 25866, + "name": "This Gold is Mine", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-268-this-gold-is-mine/4000-25866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327801/", + "id": 327801, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-655/4000-327801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327800/", + "id": 327800, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-654/4000-327800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327799/", + "id": 327799, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-653/4000-327799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57517/", + "id": 57517, + "name": "This World is Mine", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-3-this-world-is-mine/4000-57517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327798/", + "id": 327798, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-652/4000-327798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495003/", + "id": 495003, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198509/4000-495003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265742/", + "id": 265742, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/cracked-214/4000-265742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145975/", + "id": 145975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-30/4000-145975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77992/", + "id": 77992, + "name": "Give Me a Hand, Future Max!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual-1-give-me-a-hand-future-m/4000-77992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64931/", + "id": 64931, + "name": "\"Spidy Saves The Day!\" Featuring The End of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-179-spidy-saves-the-day-featuring-the/4000-64931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25897/", + "id": 25897, + "name": "Gold Rush", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-6-gold-rush/4000-25897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25890/", + "id": 25890, + "name": "No Fury", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-106-no-fury/4000-25890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25882/", + "id": 25882, + "name": "Night of the Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-22-night-of-the-octopus/4000-25882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466570/", + "id": 466570, + "name": "Guerres Secretes", + "site_detail_url": "https://comicvine.gamespot.com/spidey-67-guerres-secretes/4000-466570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451524/", + "id": 451524, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-11/4000-451524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327797/", + "id": 327797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-651/4000-327797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25775/", + "id": 25775, + "name": "The Commuter Cometh", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-267-the-commuter-cometh/4000-25775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105303/", + "id": 105303, + "name": "I'll Take Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-2-ill-take-manhattan/4000-105303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495002/", + "id": 495002, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198508/4000-495002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145974/", + "id": 145974, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-29/4000-145974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64929/", + "id": 64929, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-178/4000-64929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25802/", + "id": 25802, + "name": "The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-5-the-enemy-within/4000-25802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25796/", + "id": 25796, + "name": "United We Fall", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-105-united-we-fall/4000-25796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25776/", + "id": 25776, + "name": "Pyrrhic Victory!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-258-pyrrhic-victory/4000-25776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466569/", + "id": 466569, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-66/4000-466569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451523/", + "id": 451523, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-10/4000-451523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25673/", + "id": 25673, + "name": "Jump For My Love, or Spring is in the Air", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-266-jump-for-my-love-or-spr/4000-25673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495001/", + "id": 495001, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198507/4000-495001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145973/", + "id": 145973, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-28/4000-145973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133255/", + "id": 133255, + "name": "Amazing Spider-Man #138-155 and Giant-Size Spider-Man #1-6", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-amazing-spider-ma/4000-133255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114771/", + "id": 114771, + "name": "\"Information, Please...!\" or .... When Destiny Calls!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-annual-1-information-please-or-when-des/4000-114771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25702/", + "id": 25702, + "name": "Arms and the Man!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-4-arms-and-the-man/4000-25702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25692/", + "id": 25692, + "name": "The Last Race", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-104-the-last-race/4000-25692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25689/", + "id": 25689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-177/4000-25689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25603/", + "id": 25603, + "name": "Iron Bars Do Not A Prison Make...", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-3-iron-bars-do-not-a-prison-make/4000-25603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25574/", + "id": 25574, + "name": "After the Fox", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-265-after-the-fox/4000-25574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495000/", + "id": 495000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198506/4000-495000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315361/", + "id": 315361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-4/4000-315361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145972/", + "id": 145972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-27/4000-145972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25597/", + "id": 25597, + "name": "Compulsion", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-103-compulsion/4000-25597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25591/", + "id": 25591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-176/4000-25591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25479/", + "id": 25479, + "name": "Red 9 and Red Tape", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-264-red-9-and-red-tape/4000-25479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327815/", + "id": 327815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-636/4000-327815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327812/", + "id": 327812, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-634/4000-327812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494999/", + "id": 494999, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198505/4000-494999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145971/", + "id": 145971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-26/4000-145971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25501/", + "id": 25501, + "name": "Treasures!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-2-treasures/4000-25501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25492/", + "id": 25492, + "name": "Killer Shrike", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-102-killer-shrike/4000-25492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25490/", + "id": 25490, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-175/4000-25490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25407/", + "id": 25407, + "name": "'Til Death Do Us Part!", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-1-til-death-do-us-part/4000-25407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352895/", + "id": 352895, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-1/4000-352895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327888/", + "id": 327888, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-632/4000-327888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494998/", + "id": 494998, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198504/4000-494998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315363/", + "id": 315363, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/patrulla-x-2/4000-315363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145970/", + "id": 145970, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-25/4000-145970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57515/", + "id": 57515, + "name": "Nothing to Fear", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-12-nothing-to-fear/4000-57515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25396/", + "id": 25396, + "name": "Echoes...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-101-echoes/4000-25396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25395/", + "id": 25395, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-174/4000-25395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25379/", + "id": 25379, + "name": "The Spectacular Spider-Kid!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-263-the-spectacular-spider-/4000-25379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25268/", + "id": 25268, + "name": "'Tis Better To Give!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-150-tis-better-to-give/4000-25268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-368597/", + "id": 368597, + "name": "ROTJ 90", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-jedi-90-rotj-90/4000-368597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303917/", + "id": 303917, + "name": "ROTJ 89", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-jedi-89-rotj-89/4000-303917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761956/", + "id": 761956, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-34/4000-761956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494997/", + "id": 494997, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198503/4000-494997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133251/", + "id": 133251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-amazing-spider-ma/4000-133251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112034/", + "id": 112034, + "name": "Trade Secret", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-262-trade-secret/4000-112034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57514/", + "id": 57514, + "name": "...And Dust to Dust!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-11-and-dust-to-dus/4000-57514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25301/", + "id": 25301, + "name": "Raiders of the Lost Temple !", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-191-raiders-of-the-lost-temple/4000-25301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25294/", + "id": 25294, + "name": "Breakin", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-100-breakin/4000-25294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25292/", + "id": 25292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-173/4000-25292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494996/", + "id": 494996, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198502/4000-494996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435885/", + "id": 435885, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-7-x-men/4000-435885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358814/", + "id": 358814, + "name": "Spider-Man et Havok", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-10-spider-man-et-havok/4000-358814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133250/", + "id": 133250, + "name": "Amazing Fantasy #15; Amazing Spider-Man #1-29", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-amazing-spider-ma/4000-133250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57513/", + "id": 57513, + "name": "Death to the Beyonder", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-10-death-to-the-be/4000-57513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25279/", + "id": 25279, + "name": "An Age Undreamed Of", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-190-an-age-undreamed-of/4000-25279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25270/", + "id": 25270, + "name": "Man and Dragon Man", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-7-man-and-dragon-man/4000-25270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25269/", + "id": 25269, + "name": "Spider On The Spot !", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-99-spider-on-the-spot/4000-25269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25267/", + "id": 25267, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-172/4000-25267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25250/", + "id": 25250, + "name": "The Sins of My Father", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-261-the-sins-of-my-father/4000-25250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25194/", + "id": 25194, + "name": "Who Killed Sgt. Fluffy This Time?", + "site_detail_url": "https://comicvine.gamespot.com/normalman-7-who-killed-sgt-fluffy-this-time/4000-25194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451517/", + "id": 451517, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-4/4000-451517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25170/", + "id": 25170, + "name": "The Incandescent Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-149-the-incandescent-man/4000-25170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494995/", + "id": 494995, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198501/4000-494995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234407/", + "id": 234407, + "name": "Modesty Blaise in Guido the Jinx Part Two", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-101-modesty-blaise-in-guido-the-jinx-/4000-234407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211197/", + "id": 211197, + "name": "Gasoline Alley", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-16-gasoline-alley/4000-211197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211196/", + "id": 211196, + "name": "Latigo", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-15-latigo/4000-211196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210534/", + "id": 210534, + "name": "Hagar the Horrible", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-12-hagar-the-horrible/4000-210534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210520/", + "id": 210520, + "name": "Secret Agent X-9", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-11-secret-agent-x-9/4000-210520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159405/", + "id": 159405, + "name": "Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-13-flash-gordon/4000-159405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57512/", + "id": 57512, + "name": "Assault on Galactus!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-9-assault-on-galac/4000-57512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57422/", + "id": 57422, + "name": "Prisoner Of War!", + "site_detail_url": "https://comicvine.gamespot.com/the-transformers-3-prisoner-of-war/4000-57422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25173/", + "id": 25173, + "name": "Mysterio Times Two!", + "site_detail_url": "https://comicvine.gamespot.com/questprobe-2-mysterio-times-two/4000-25173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25172/", + "id": 25172, + "name": "Secrets", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-6-secrets/4000-25172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25171/", + "id": 25171, + "name": "True Confessions", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-98-true-confessions/4000-25171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25169/", + "id": 25169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-171/4000-25169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25154/", + "id": 25154, + "name": "The Challenge of Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-260-the-challenge-of-hobgob/4000-25154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25002/", + "id": 25002, + "name": "A Child Shall Lead them!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-148-a-child-shall-lead-them/4000-25002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24981/", + "id": 24981, + "name": "All My Pasts Remembered!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-259-all-my-pasts-remembered/4000-24981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327868/", + "id": 327868, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-614/4000-327868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327867/", + "id": 327867, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-613/4000-327867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494994/", + "id": 494994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198412/4000-494994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358607/", + "id": 358607, + "name": "Spider-Man et Tigra", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-9-spider-man-et-tigra/4000-358607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171913/", + "id": 171913, + "name": "Prisoner of War!; part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-transformers-6-prisoner-of-war-part-2/4000-171913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64426/", + "id": 64426, + "name": "The Scorpion Takes a Bride!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-18-the-scorpion-take/4000-64426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57511/", + "id": 57511, + "name": "Invasion!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-8-invasion/4000-57511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25007/", + "id": 25007, + "name": "Total War, Part 10: The Beginning of the End of the World!", + "site_detail_url": "https://comicvine.gamespot.com/rom-61-total-war-part-10-the-beginning-of-the-end-/4000-25007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25004/", + "id": 25004, + "name": "Hermit-Age!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-97-hermit-age/4000-25004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25001/", + "id": 25001, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-170/4000-25001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24897/", + "id": 24897, + "name": "A Debt Repaid...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-147-a-debt-repaid/4000-24897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171911/", + "id": 171911, + "name": "Prisoner of War!; part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-transformers-5-prisoner-of-war-part-1/4000-171911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327862/", + "id": 327862, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-609/4000-327862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327861/", + "id": 327861, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-608/4000-327861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494993/", + "id": 494993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198411/4000-494993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145966/", + "id": 145966, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-20/4000-145966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57510/", + "id": 57510, + "name": "Berserker!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-7-berserker/4000-57510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24921/", + "id": 24921, + "name": "Memory Lane", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-4-memory-lane/4000-24921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24901/", + "id": 24901, + "name": "The Twain Shall Meet!", + "site_detail_url": "https://comicvine.gamespot.com/prince-namor-the-sub-mariner-3-the-twain-shall-mee/4000-24901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24899/", + "id": 24899, + "name": "The Final Answer", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-96-the-final-answer/4000-24899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24896/", + "id": 24896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-169/4000-24896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24880/", + "id": 24880, + "name": "The Sinister Secret of Spider-Man's New Costume!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-258-the-sinister-secret-of-/4000-24880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24803/", + "id": 24803, + "name": "The Dagger At the End of the Tunnel", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-95-the-dagger-at-the-en/4000-24803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24797/", + "id": 24797, + "name": "Hero Worship!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-146-hero-worship/4000-24797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24789/", + "id": 24789, + "name": "Days of Rage!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-300-days-of-rage/4000-24789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23785/", + "id": 23785, + "name": "The Collected Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-7-the-collected-spider-man/4000-23785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327860/", + "id": 327860, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-607/4000-327860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494992/", + "id": 494992, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198410/4000-494992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358210/", + "id": 358210, + "name": "Spider-Man et Capitaine Britain", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-8-spider-man-et-capitaine-britain/4000-358210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145965/", + "id": 145965, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-19/4000-145965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57509/", + "id": 57509, + "name": "A Little Death...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-6-a-little-death/4000-57509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24796/", + "id": 24796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-168/4000-24796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24792/", + "id": 24792, + "name": "When Giants Walk The Earth!", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-annual-7-when-giants-walk-the-earth/4000-24792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24777/", + "id": 24777, + "name": "Beware the Claws of Puma!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-257-beware-the-claws-of-pum/4000-24777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225156/", + "id": 225156, + "name": "Secrets; Runaway", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-1-secrets-runaway/4000-225156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24704/", + "id": 24704, + "name": "How Ya Gonna Keep 'Em Down At The Morgue After They've Seen N.Y.C.?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-94-how-ya-gonna-keep-em/4000-24704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24698/", + "id": 24698, + "name": "Hometown Boy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-145-hometown-boy/4000-24698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327856/", + "id": 327856, + "name": "Here Come the Heroes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-603-here-come-the-heroes/4000-327856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327854/", + "id": 327854, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-601/4000-327854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327853/", + "id": 327853, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-600/4000-327853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883525/", + "id": 883525, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-computer-fun-2-book-two/4000-883525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-883524/", + "id": 883524, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-computer-fun-1-book-one/4000-883524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494991/", + "id": 494991, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198409/4000-494991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64924/", + "id": 64924, + "name": "The Wondrous Worlds of Doctor Strange!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-167-the-wondrous-worlds-of-doctor-str/4000-64924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57508/", + "id": 57508, + "name": "The Battle of Four Armies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-5-the-battle-of-fo/4000-57508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24687/", + "id": 24687, + "name": "Introducing...Puma!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-256-introducingpuma/4000-24687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24621/", + "id": 24621, + "name": "What If Spider-Man's Uncle Ben Had Lived?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-46-what-if-spider-mans-uncle-ben-had-lived/4000-24621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24615/", + "id": 24615, + "name": "A Hot Time In The Morgue Tonight", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-93-a-hot-time-in-the-mo/4000-24615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24608/", + "id": 24608, + "name": "My Sword I Lay Down!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-144-my-sword-i-lay-down/4000-24608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494990/", + "id": 494990, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198408/4000-494990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358031/", + "id": 358031, + "name": "Spider-Man et Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-7-spider-man-et-iron-fist/4000-358031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145963/", + "id": 145963, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-17/4000-145963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57507/", + "id": 57507, + "name": "Situation: Hopeless", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-4-situation-hopele/4000-57507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24607/", + "id": 24607, + "name": "The Menace of the Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-166-the-menace-of-the-molten-man/4000-24607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24593/", + "id": 24593, + "name": "Even a Ghost Can Fear the Night!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-255-even-a-ghost-can-fear-t/4000-24593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209897/", + "id": 209897, + "name": "Latigo", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-6-latigo/4000-209897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24513/", + "id": 24513, + "name": "And The Answer Is...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-92-and-the-answer-is/4000-24513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24508/", + "id": 24508, + "name": "Shifts & Planes!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-143-shifts-planes/4000-24508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327326/", + "id": 327326, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thing-is-big-ben-18/4000-327326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761952/", + "id": 761952, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-30/4000-761952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494989/", + "id": 494989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198407/4000-494989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327846/", + "id": 327846, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-593/4000-327846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145962/", + "id": 145962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-16/4000-145962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57506/", + "id": 57506, + "name": "The Crisis Within", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-3-the-crisis-withi/4000-57506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24507/", + "id": 24507, + "name": "Bring Back My Goblin to Me", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-165-bring-back-my-goblin-to-me/4000-24507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24496/", + "id": 24496, + "name": "With Great Power...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-254-with-great-power/4000-24496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366807/", + "id": 366807, + "name": "Heroes and Villains", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1984s-heroes-and-villains/4000-366807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209896/", + "id": 209896, + "name": "Hagar the Horrible", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-5-hagar-the-horrible/4000-209896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24415/", + "id": 24415, + "name": "If It Wasn't For Bad Luck...", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-91-if-it-wasnt-for-bad-/4000-24415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24412/", + "id": 24412, + "name": "Foiled!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-142-foiled/4000-24412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422011/", + "id": 422011, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-589/4000-422011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494988/", + "id": 494988, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198406/4000-494988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357960/", + "id": 357960, + "name": "Spider-Man et Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-6-spider-man-et-ms-marvel/4000-357960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57505/", + "id": 57505, + "name": "Prisoners of War!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-2-prisoners-of-war/4000-57505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24411/", + "id": 24411, + "name": "The Man in the Crime-Master's Mask", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-164-the-man-in-the-crime-masters-mask/4000-24411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24396/", + "id": 24396, + "name": "By Myself Betrayed!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-253-by-myself-betrayed/4000-24396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24318/", + "id": 24318, + "name": "Where, Oh Where Has My Spider-Man Gone?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-90-where-oh-where-has-m/4000-24318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24313/", + "id": 24313, + "name": "Blind Justice!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-141-blind-justice/4000-24313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761951/", + "id": 761951, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-29/4000-761951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494987/", + "id": 494987, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198405/4000-494987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357881/", + "id": 357881, + "name": "Spider-Man avec Yellow Jacket et la Guepe", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-5-spider-man-avec-yellow-jacket-et-l/4000-357881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209109/", + "id": 209109, + "name": "Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/comics-review-4-star-wars/4000-209109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-57504/", + "id": 57504, + "name": "The War Begins", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-1-the-war-begins/4000-57504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24312/", + "id": 24312, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-163/4000-24312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24297/", + "id": 24297, + "name": "Homecoming!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-252-homecoming/4000-24297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24217/", + "id": 24217, + "name": "What if Captain America Were Revived Today?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-44-what-if-captain-america-were-revived-to/4000-24217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24209/", + "id": 24209, + "name": "Where Were You When the Lights Went Out?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-140-where-were-you-when-the-lights-/4000-24209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327918/", + "id": 327918, + "name": "The Hatred of the Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-578-the-hatred-/4000-327918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494986/", + "id": 494986, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198404/4000-494986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217561/", + "id": 217561, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-fumetti-book-1/4000-217561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24212/", + "id": 24212, + "name": "Power Search!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-89-power-search/4000-24212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24208/", + "id": 24208, + "name": "Spider-Man Goes Mad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-162-spider-man-goes-mad/4000-24208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24191/", + "id": 24191, + "name": "Endings", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-251-endings/4000-24191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24103/", + "id": 24103, + "name": "Everybody Loves Somebody Sometime", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-139-everybody-loves-somebody-someti/4000-24103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327917/", + "id": 327917, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-577/4000-327917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327916/", + "id": 327916, + "name": "The Morlocks", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-576-the-morlock/4000-327916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327915/", + "id": 327915, + "name": "The Kid Who Collects Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-575-the-kid-who/4000-327915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327914/", + "id": 327914, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-574/4000-327914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494985/", + "id": 494985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198403/4000-494985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357762/", + "id": 357762, + "name": "Spider-Man et Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-4-spider-man-et-ghost-rider/4000-357762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160823/", + "id": 160823, + "name": "1: The Blind Leading The Blind, 2: Ashes To Ashes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-daredevil-special-edition-1-1-the-b/4000-160823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145958/", + "id": 145958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-12/4000-145958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24108/", + "id": 24108, + "name": "Hyde And Seek", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-88-hyde-and-seek/4000-24108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24102/", + "id": 24102, + "name": "The Goblin and the Gangsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-161-the-goblin-and-the-gangsters/4000-24102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24086/", + "id": 24086, + "name": "Confessions", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-250-confessions/4000-24086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327913/", + "id": 327913, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-573/4000-327913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23986/", + "id": 23986, + "name": "Starting Over!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-138-starting-over/4000-23986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327912/", + "id": 327912, + "name": "Spider-Sleuth", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-572-spider-sleu/4000-327912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327911/", + "id": 327911, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-571/4000-327911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327910/", + "id": 327910, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-570/4000-327910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494984/", + "id": 494984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198402/4000-494984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327909/", + "id": 327909, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-569/4000-327909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23989/", + "id": 23989, + "name": "Mistaken Identities", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-87-mistaken-identities/4000-23989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23985/", + "id": 23985, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-160/4000-23985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23969/", + "id": 23969, + "name": "Secrets", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-249-secrets/4000-23969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23882/", + "id": 23882, + "name": "Twinkle, Twinkle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-137-twinkle-twinkle/4000-23882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23862/", + "id": 23862, + "name": "And He Strikes Like A Thunderball; The Kid Who Collects Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-248-and-he-strikes-like-a-t/4000-23862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327908/", + "id": 327908, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-568/4000-327908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327907/", + "id": 327907, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-567/4000-327907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327906/", + "id": 327906, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-566/4000-327906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327905/", + "id": 327905, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-565/4000-327905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494983/", + "id": 494983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198401/4000-494983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210550/", + "id": 210550, + "name": "The Amazing Spider-Man : Spidey's Origin", + "site_detail_url": "https://comicvine.gamespot.com/comics-revue-14-the-amazing-spider-man-spideys-ori/4000-210550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202289/", + "id": 202289, + "name": "A St★r is Born", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-quik-bunny-1-a-str-is-born/4000-202289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23903/", + "id": 23903, + "name": "Murmer of the Heart..!", + "site_detail_url": "https://comicvine.gamespot.com/jack-of-hearts-1-murmer-of-the-heart/4000-23903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23890/", + "id": 23890, + "name": "Bugs!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-86-bugs/4000-23890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23881/", + "id": 23881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-159/4000-23881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-570178/", + "id": 570178, + "name": "Der Tod des Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/epic-comic-collection-1-der-tod-des-captain-marvel/4000-570178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466568/", + "id": 466568, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-47/4000-466568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366809/", + "id": 366809, + "name": "The Hunters and the Hunted!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1983w-the-hunters-and-the-hunte/4000-366809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23744/", + "id": 23744, + "name": "What if the Invisible Girl Had Died?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-42-what-if-the-invisible-girl-had-died/4000-23744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23739/", + "id": 23739, + "name": "The Hatred Of The Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-85-the-hatred-of-the-ho/4000-23739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23733/", + "id": 23733, + "name": "Webs", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-136-webs/4000-23733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327904/", + "id": 327904, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-564/4000-327904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327903/", + "id": 327903, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-563/4000-327903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327902/", + "id": 327902, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-562/4000-327902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327901/", + "id": 327901, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-561/4000-327901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494815/", + "id": 494815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198312/4000-494815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398232/", + "id": 398232, + "name": "Arcade's Grote Moordspel", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-1-arcade-s-grote-moordspel/4000-398232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357609/", + "id": 357609, + "name": "Spider-Man et Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-3-spider-man-et-daredevil/4000-357609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23741/", + "id": 23741, + "name": "Mindscape", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-6-mindscape/4000-23741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23732/", + "id": 23732, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-158/4000-23732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23726/", + "id": 23726, + "name": "Till Death Do Us Part...", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-4-till-death-do-us-part/4000-23726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23715/", + "id": 23715, + "name": "Interruptions", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-247-interruptions/4000-23715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22738/", + "id": 22738, + "name": "Heroes and Villains", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-17-heroes-and-villai/4000-22738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466567/", + "id": 466567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-46/4000-466567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327900/", + "id": 327900, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-560/4000-327900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23635/", + "id": 23635, + "name": "Down Deep in Darkness!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-135-down-deep-in-darkness/4000-23635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327899/", + "id": 327899, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-559/4000-327899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327898/", + "id": 327898, + "name": "The Hunt for the Hobgoblin ; The Fantastic Four Face Annihilus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-558-the-hunt-fo/4000-327898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327897/", + "id": 327897, + "name": "The Kingpin Conflict!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-557-the-kingpin/4000-327897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327896/", + "id": 327896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-556/4000-327896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494814/", + "id": 494814, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198311/4000-494814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413358/", + "id": 413358, + "name": "Christmas in Dallas", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-christmas-in-dallas-dallas-times-herald/4000-413358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325782/", + "id": 325782, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-58/4000-325782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145954/", + "id": 145954, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-8/4000-145954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84683/", + "id": 84683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198311/4000-84683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64919/", + "id": 64919, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-157/4000-64919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23646/", + "id": 23646, + "name": "With Friends Like These...", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-5-with-friends-like-these/4000-23646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23644/", + "id": 23644, + "name": "\"My Baby's Been Kidnapped!\"", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-84-my-baby-s-been-kidna/4000-23644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23615/", + "id": 23615, + "name": "Meltdowns and Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-237-meltdowns-and-mayhem/4000-23615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23614/", + "id": 23614, + "name": "The Daydreamers", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-246-the-daydreamers/4000-23614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466566/", + "id": 466566, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-45/4000-466566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23548/", + "id": 23548, + "name": "The Boys Night Out!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-134-the-boys-night-out/4000-23548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23534/", + "id": 23534, + "name": "Chapter One: The Priest", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-1-chapter-one-the-priest/4000-23534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22723/", + "id": 22723, + "name": "The Hunters and the Hunted!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-6-the-hunters-and-the-hunted/4000-22723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327894/", + "id": 327894, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-555/4000-327894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327893/", + "id": 327893, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-554/4000-327893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327892/", + "id": 327892, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-553/4000-327892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494813/", + "id": 494813, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198310/4000-494813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357393/", + "id": 357393, + "name": "Spider-Man et la Torche Humaine", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-2-spider-man-et-la-torche-humaine/4000-357393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325781/", + "id": 325781, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-57/4000-325781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84682/", + "id": 84682, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198310/4000-84682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68389/", + "id": 68389, + "name": "S: Shi'Ar to Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-10-s-/4000-68389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23552/", + "id": 23552, + "name": "Delusions", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-83-delusions/4000-23552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23547/", + "id": 23547, + "name": "The End of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-156-the-end-of-spider-man/4000-23547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23532/", + "id": 23532, + "name": "I Want to be a Avenger!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-236-i-want-to-be-a-avenger/4000-23532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23531/", + "id": 23531, + "name": "Sacrifice Play", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-245-sacrifice-play/4000-23531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366806/", + "id": 366806, + "name": "Summer 1983", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1983s-summer-1983/4000-366806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23459/", + "id": 23459, + "name": "The World According to... Faustus!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-133-the-world-according-to-faustus/4000-23459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494812/", + "id": 494812, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198309/4000-494812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84681/", + "id": 84681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198309/4000-84681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64914/", + "id": 64914, + "name": "The Return of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-155-the-return-of-the-green-goblin/4000-64914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23465/", + "id": 23465, + "name": "Crime & Punishment", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-82-crime-punishment/4000-23465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23442/", + "id": 23442, + "name": "Havoc on the Homefront!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-235-havoc-on-the-homefront/4000-23442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23441/", + "id": 23441, + "name": "Ordeals", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-244-ordeals/4000-23441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23379/", + "id": 23379, + "name": "The Common Denominator!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-132-the-common-denominator/4000-23379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23377/", + "id": 23377, + "name": "Editori-Al; Widow; With Friends Like These, Chapter 2; How Fear Came", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-10-editori-al-widow-with-friends-li/4000-23377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494811/", + "id": 494811, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198308/4000-494811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357299/", + "id": 357299, + "name": "Spider-Man et la Torche Humaine", + "site_detail_url": "https://comicvine.gamespot.com/equipe-marvel-1-spider-man-et-la-torche-humaine/4000-357299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305503/", + "id": 305503, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-55/4000-305503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84680/", + "id": 84680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198308/4000-84680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23383/", + "id": 23383, + "name": "Stalkers In The Shadows", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-81-stalkers-in-the-shad/4000-23383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23378/", + "id": 23378, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-154/4000-23378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23362/", + "id": 23362, + "name": "Options!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-243-options/4000-23362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23361/", + "id": 23361, + "name": "Tundra!", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-1-tundra/4000-23361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23297/", + "id": 23297, + "name": "The Best Things In Life Are Free... But Everything Else Costs Money!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-131-the-best-things-in-life-are-fre/4000-23297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494810/", + "id": 494810, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198307/4000-494810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145951/", + "id": 145951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-4/4000-145951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84679/", + "id": 84679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198307/4000-84679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64908/", + "id": 64908, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-153/4000-64908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23303/", + "id": 23303, + "name": "I Cover the Waterfront!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-80-i-cover-the-waterfro/4000-23303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23280/", + "id": 23280, + "name": "Confrontations", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-242-confrontations/4000-23280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23209/", + "id": 23209, + "name": "Till Death Do Us Part!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-130-till-death-do-us-part/4000-23209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-877076/", + "id": 877076, + "name": "La mort de Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/top-bd-2-la-mort-de-captain-marvel/4000-877076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494809/", + "id": 494809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198306/4000-494809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114774/", + "id": 114774, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-3/4000-114774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84678/", + "id": 84678, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198306/4000-84678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23216/", + "id": 23216, + "name": "Lifeline", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-50-lifeline/4000-23216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23215/", + "id": 23215, + "name": "The Final Battle", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-79-the-final-battle/4000-23215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23210/", + "id": 23210, + "name": "So This Is...The End!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-100-so-this-isthe-end/4000-23210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23208/", + "id": 23208, + "name": "The Grotesque Adventure of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-152-the-grotesque-adventure-of-the-gr/4000-23208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23192/", + "id": 23192, + "name": "In the Beginning...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-241-in-the-beginning/4000-23192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23176/", + "id": 23176, + "name": "The Future is Forever", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-300-the-future-is-forever/4000-23176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23126/", + "id": 23126, + "name": "And Much to Ponder Before the Dawn...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-129-and-much-to-ponder-before-the-d/4000-23126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761947/", + "id": 761947, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-23-24/4000-761947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494808/", + "id": 494808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198305/4000-494808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84677/", + "id": 84677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198305/4000-84677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23142/", + "id": 23142, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/warlock-6/4000-23142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23135/", + "id": 23135, + "name": "The Long Goodbye", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-78-the-long-goodbye/4000-23135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23125/", + "id": 23125, + "name": "The Menace of Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-151-the-menace-of-mysterio/4000-23125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23109/", + "id": 23109, + "name": "Wings of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-240-wings-of-vengeance/4000-23109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466560/", + "id": 466560, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-39/4000-466560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23038/", + "id": 23038, + "name": "Sweet Temptation!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-128-sweet-temptation/4000-23038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23021/", + "id": 23021, + "name": "Now Strikes the Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-239-now-strikes-the-hobgobl/4000-23021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494807/", + "id": 494807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198304/4000-494807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138211/", + "id": 138211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevils-4/4000-138211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84676/", + "id": 84676, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198304/4000-84676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24207/", + "id": 24207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-savage-25/4000-24207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23060/", + "id": 23060, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/warlock-5/4000-23060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23047/", + "id": 23047, + "name": "Relapse times two!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-77-relapse-times-two/4000-23047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23037/", + "id": 23037, + "name": "The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-150-the-sinister-six/4000-23037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23035/", + "id": 23035, + "name": "Blackout!", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-169-blackout/4000-23035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466559/", + "id": 466559, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-38/4000-466559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466558/", + "id": 466558, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-37/4000-466558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22966/", + "id": 22966, + "name": "At Death's Door!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-76-at-deaths-door/4000-22966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22956/", + "id": 22956, + "name": "Small Miracles", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-127-small-miracles/4000-22956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494806/", + "id": 494806, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198303/4000-494806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189725/", + "id": 189725, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-8/4000-189725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138202/", + "id": 138202, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevils-3/4000-138202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94437/", + "id": 94437, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/blip-2/4000-94437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84675/", + "id": 84675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198303/4000-84675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-24099/", + "id": 24099, + "name": "\"On Death and Dying\"", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-savage-24-on-death-and-dying/4000-24099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22955/", + "id": 22955, + "name": "Unmasked by Dr. Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-149-unmasked-by-dr-octopus/4000-22955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22939/", + "id": 22939, + "name": "Shadow of Evils Past", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-238-shadow-of-evils-past/4000-22939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22868/", + "id": 22868, + "name": "A Firm Offer!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-126-a-firm-offer/4000-22868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494805/", + "id": 494805, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198302/4000-494805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138114/", + "id": 138114, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevils-2/4000-138114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84674/", + "id": 84674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198302/4000-84674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22878/", + "id": 22878, + "name": "Ferae Naturae", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-75-ferae-naturae/4000-22878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22869/", + "id": 22869, + "name": "Visiting Hours", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-96-visiting-hours/4000-22869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22867/", + "id": 22867, + "name": "Turning Point", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-148-turning-point/4000-22867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22852/", + "id": 22852, + "name": "High & Mighty", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-237-high-mighty/4000-22852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22797/", + "id": 22797, + "name": "Yesterday And Today!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-125-yesterday-and-today/4000-22797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22795/", + "id": 22795, + "name": "Editori-Al; Switch Witch; The Showdown", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-6-editori-al-switch-witch-the-showd/4000-22795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22792/", + "id": 22792, + "name": "Everybody Loves A Parade, Right?", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-279-everybody-loves-a-parade-r/4000-22792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22789/", + "id": 22789, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-250-x-factor/4000-22789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494804/", + "id": 494804, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198301/4000-494804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315072/", + "id": 315072, + "name": "The Dallas Ballet Nutcracker", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fire-star-and-iceman-at-the-dallas-ball/4000-315072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291183/", + "id": 291183, + "name": "Chaos On Campus", + "site_detail_url": "https://comicvine.gamespot.com/special-edition-spider-man-vs-the-hulk-1-chaos-on-/4000-291183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225158/", + "id": 225158, + "name": "Danger in Denver!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fire-star-and-iceman-1-danger-in-denver/4000-225158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222240/", + "id": 222240, + "name": "Danger in Dallas!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-dallas-cowboys-danger-in-dallas/4000-222240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217546/", + "id": 217546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-no-prize-book-1/4000-217546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169712/", + "id": 169712, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-team-up-thrillers-1/4000-169712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138106/", + "id": 138106, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/daredevils-1/4000-138106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22805/", + "id": 22805, + "name": "Fantasia", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-74-fantasia/4000-22805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22796/", + "id": 22796, + "name": "The Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-147-the-enforcers/4000-22796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22781/", + "id": 22781, + "name": "Death Knell", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-236-death-knell/4000-22781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465788/", + "id": 465788, + "name": "Spider-Man: Threat or Menace?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1982w-spider-man-threat-or-mena/4000-465788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22676/", + "id": 22676, + "name": "The Ties That Bind!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-124-the-ties-that-bind/4000-22676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22673/", + "id": 22673, + "name": "Amnesty!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-278-amnesty/4000-22673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22659/", + "id": 22659, + "name": "Look Out, There's a Monster Coming!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-235-look-out-theres-a-monst/4000-22659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761946/", + "id": 761946, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-22/4000-761946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-23729/", + "id": 23729, + "name": "It's A Jungle Out There!", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-savage-21-its-a-jungle-out-there/4000-23729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22683/", + "id": 22683, + "name": "Spider In The Middle", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-73-spider-in-the-middle/4000-22683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22675/", + "id": 22675, + "name": "The Man Called Electro", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-146-the-man-called-electro/4000-22675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22599/", + "id": 22599, + "name": "Rivers of Blood", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-123-rivers-of-blood/4000-22599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22593/", + "id": 22593, + "name": "What Friends Are For!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-277-what-friends-are-for/4000-22593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22581/", + "id": 22581, + "name": "Now Shall Will-O'-the-Wisp Have His Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-234-now-shall-will-o-the-wi/4000-22581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21796/", + "id": 21796, + "name": "Serpent Rising", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-5-serpent-rising/4000-21796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494803/", + "id": 494803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198212/4000-494803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108345/", + "id": 108345, + "name": "Alison Blaire This Is Your Life!", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-21-alison-blaire-this-is-your-life/4000-108345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22608/", + "id": 22608, + "name": "Waiting For Doctor Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-72-waiting-for-doctor-o/4000-22608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22598/", + "id": 22598, + "name": "The Terrible Threat of the Living Brain", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-145-the-terrible-threat-of-the-living/4000-22598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22585/", + "id": 22585, + "name": "Yesterday's Shadows!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-275-yesterdays-shadows/4000-22585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21812/", + "id": 21812, + "name": "Who's That Lady?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-16-whos-that-lady/4000-21812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22525/", + "id": 22525, + "name": "A Simple Twist Of...Fate", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-122-a-simple-twist-offate/4000-22525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22506/", + "id": 22506, + "name": "Where the @$%# is Nose Norton?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-233-where-the-is-nose-norto/4000-22506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327935/", + "id": 327935, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-502/4000-327935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327934/", + "id": 327934, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-501/4000-327934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327933/", + "id": 327933, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-500/4000-327933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465190/", + "id": 465190, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-154-le-journal-de-spider-man/4000-465190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494802/", + "id": 494802, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198211/4000-494802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22533/", + "id": 22533, + "name": "With This Gun ... I Thee Kill!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-71-with-this-gun-i-thee/4000-22533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22524/", + "id": 22524, + "name": "The Return of the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-144-the-return-of-the-vulture/4000-22524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22521/", + "id": 22521, + "name": "The Day the Earth Turned Green!; Unus Unchained!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-annual-11-the-day-the-earth-tu/4000-22521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22519/", + "id": 22519, + "name": "Tears of a Clown!", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-73-tears-of-a-clown/4000-22519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22516/", + "id": 22516, + "name": "To Have Loved... And Lost!", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-55-to-have-loved-and-lost/4000-22516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21801/", + "id": 21801, + "name": "And they shall call him... Champion !", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-annual-7-and-they-shall-call-him/4000-21801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22451/", + "id": 22451, + "name": "Look Before You Leap!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-121-look-before-you-leap/4000-22451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22435/", + "id": 22435, + "name": "Hyde...in Plain Sight!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-232-hydein-plain-sight/4000-22435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494801/", + "id": 494801, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198210/4000-494801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22459/", + "id": 22459, + "name": "The Great Cloak & Dagger Hunt", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-70-the-great-cloak-dagg/4000-22459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22450/", + "id": 22450, + "name": "Face-to-Face With the Lizard", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-143-face-to-face-with-the-lizard/4000-22450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112838/", + "id": 112838, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/what-if-34/4000-112838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22381/", + "id": 22381, + "name": "Old Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-120-old-soldiers/4000-22381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22364/", + "id": 22364, + "name": "Caught in the Act...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-231-caught-in-the-act/4000-22364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494800/", + "id": 494800, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198209/4000-494800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-761942/", + "id": 761942, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-feature-18/4000-761942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22389/", + "id": 22389, + "name": "In Darkness Seldom Seen!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-69-in-darkness-seldom-s/4000-22389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22382/", + "id": 22382, + "name": "Eyes of the Sorcerer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-90-eyes-of-the-sorcerer/4000-22382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22380/", + "id": 22380, + "name": "Marked For Destruction By Dr. Doom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-142-marked-for-destruction-by-dr-doom/4000-22380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22307/", + "id": 22307, + "name": "Time, Run Like A Freight Train...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-119-time-run-like-a-freight-train/4000-22307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22303/", + "id": 22303, + "name": "Editori-Al; Into the Land of Death; Swashbucklers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-3-editori-al-into-the-land-of-death/4000-22303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22293/", + "id": 22293, + "name": "...New Blood!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-221-new-blood/4000-22293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22292/", + "id": 22292, + "name": "To Fight The Unbeatable Foe!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-230-to-fight-the-unbeatable/4000-22292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494799/", + "id": 494799, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198208/4000-494799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202019/", + "id": 202019, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/fantacos-chronicles-5-spider-man/4000-202019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130059/", + "id": 130059, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-232/4000-130059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22315/", + "id": 22315, + "name": "Hell Hath No Fury like a Robot Scorned!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-68-hell-hath-no-fury-li/4000-22315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22306/", + "id": 22306, + "name": "Nothing Can Stop the Sandman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-141-nothing-can-stop-the-sandman/4000-22306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22304/", + "id": 22304, + "name": "And the Game Begins", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-contest-of-champions-2-and-the-g/4000-22304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22298/", + "id": 22298, + "name": "Vengeance Cries the Valkyrie!", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-109-vengeance-cries-the-valkyrie/4000-22298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366805/", + "id": 366805, + "name": "Summer 1982", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1982s-summer-1982/4000-366805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22236/", + "id": 22236, + "name": "Meeting of the Minds", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-118-meeting-of-the-minds/4000-22236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22230/", + "id": 22230, + "name": "Shall Earth Endure?", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-243-shall-earth-endure/4000-22230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22221/", + "id": 22221, + "name": "Nothing Can Stop The Juggernaut!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-229-nothing-can-stop-the-ju/4000-22221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494798/", + "id": 494798, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198207/4000-494798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494797/", + "id": 494797, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198206/4000-494797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22244/", + "id": 22244, + "name": "Boomerang, the Killer who keeps coming back!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-67-boomerang-the-killer/4000-22244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22235/", + "id": 22235, + "name": "Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-140-doctor-octopus/4000-22235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22234/", + "id": 22234, + "name": "A Gathering of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-contest-of-champions-1-a-gatheri/4000-22234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22227/", + "id": 22227, + "name": "The Wasteland!", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-108-the-wasteland/4000-22227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22168/", + "id": 22168, + "name": "Scents & Senses!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-117-scents-senses/4000-22168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22165/", + "id": 22165, + "name": "Editori-Al; To Sacrifice My Soul; Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-2-editori-al-to-sacrifice-my-soul-a/4000-22165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22159/", + "id": 22159, + "name": "Terrax the Untamed", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-242-terrax-the-untamed/4000-22159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22152/", + "id": 22152, + "name": "Murder By Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-228-murder-by-spider/4000-22152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494796/", + "id": 494796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198205/4000-494796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114149/", + "id": 114149, + "name": "When Titans Chuckle!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-roast-1-when-titans-chuckle/4000-114149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22176/", + "id": 22176, + "name": "Electro is back", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-66-electro-is-back/4000-22176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22167/", + "id": 22167, + "name": "Duel to the Death With the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-139-duel-to-the-death-with-the-vultur/4000-22167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22158/", + "id": 22158, + "name": "On Death and Dying...", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-107-on-death-and-dying/4000-22158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22089/", + "id": 22089, + "name": "Time Runs Like Sand!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-86-time-runs-like-sand/4000-22089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22088/", + "id": 22088, + "name": "Between Sword and Hammer!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-116-between-sword-and-hammer/4000-22088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22072/", + "id": 22072, + "name": "Goin' Straight!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-227-goin-straight/4000-22072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328021/", + "id": 328021, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-477/4000-328021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325161/", + "id": 325161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-59/4000-325161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494794/", + "id": 494794, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198204/4000-494794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22096/", + "id": 22096, + "name": "The Heart is a Lonely Hunter", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-65-the-heart-is-a-lonel/4000-22096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22087/", + "id": 22087, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-138/4000-22087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21782/", + "id": 21782, + "name": "The Death of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-1-the-death-of-captain-marvel/4000-21782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22013/", + "id": 22013, + "name": "Pin Up; Fast Descent Into Hell; Editori-Al; Snow", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-1-pin-up-fast-descent-into-hell-edi/4000-22013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22000/", + "id": 22000, + "name": "\"But the Cat Came Back...\"", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-226-but-the-cat-came-back/4000-22000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494792/", + "id": 494792, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198203/4000-494792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84663/", + "id": 84663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198203/4000-84663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67542/", + "id": 67542, + "name": "The Trapster And The Tiger; Fargo's Brother; Look Out From Leap Frog", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-57-the-trapster-and-the-tiger/4000-67542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22024/", + "id": 22024, + "name": "Cloak and Dagger!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-64-cloak-and-dagger/4000-22024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22016/", + "id": 22016, + "name": "Dichotomies!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-115-dichotomies/4000-22016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-22015/", + "id": 22015, + "name": "Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-137-spider-man/4000-22015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21953/", + "id": 21953, + "name": "What if Wolverine had Killed the Hulk? \\ What if the Fantastic Four had Never Been?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-31-what-if-wolverine-had-killed-the-hulk-w/4000-21953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21945/", + "id": 21945, + "name": "Firebug!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-63-firebug/4000-21945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21936/", + "id": 21936, + "name": "The Heat in Harlem!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-114-the-heat-in-harlem/4000-21936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494791/", + "id": 494791, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198202/4000-494791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84662/", + "id": 84662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198202/4000-84662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21935/", + "id": 21935, + "name": "Arm-in-Arm-in-Arm-in-Arm-in-Arm-in-Arm With Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-136-arm-in-arm-in-arm-in-arm-in-arm-i/4000-21935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21922/", + "id": 21922, + "name": "Flight From Thunderhead!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-266-flight-from-thunderhead/4000-21922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21919/", + "id": 21919, + "name": "Fools...Like Us!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-225-fools-like-us/4000-21919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21872/", + "id": 21872, + "name": "Gold Fever!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-62-gold-fever/4000-21872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21863/", + "id": 21863, + "name": "The Resurection of Edward Lansky", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-113-the-resurection-of-edward-lansk/4000-21863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21849/", + "id": 21849, + "name": "\"Let Fly These Aged Wings!\"", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-224-let-fly-these-aged-wing/4000-21849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494790/", + "id": 494790, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198201/4000-494790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433581/", + "id": 433581, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/strange-special-jeux-1/4000-433581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358696/", + "id": 358696, + "name": "Southwest Showdown!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-southwest-sho/4000-358696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358695/", + "id": 358695, + "name": "Chaos on Kansas City!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-chaos-on-kans/4000-358695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-358694/", + "id": 358694, + "name": "The Colorado Caper!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-the-colorado-/4000-358694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345541/", + "id": 345541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fandom-confidential-1/4000-345541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325545/", + "id": 325545, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-36/4000-325545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305761/", + "id": 305761, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nova-48/4000-305761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214389/", + "id": 214389, + "name": "Comics Scene Issue #1", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-1-comics-scene-issue-1/4000-214389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160964/", + "id": 160964, + "name": "The Great Rodeo Robbery", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-the-great-rod/4000-160964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141651/", + "id": 141651, + "name": "Crazy", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-82-crazy/4000-141651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136279/", + "id": 136279, + "name": "Crisis At Cape Canaveral!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-crisis-at-cape-canaveral/4000-136279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84661/", + "id": 84661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198201/4000-84661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67541/", + "id": 67541, + "name": "Meet Captain Britain; The Halloween Party; Blizzard's Ice Age", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-56-meet-captain-britain-the-h/4000-67541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21862/", + "id": 21862, + "name": "Hammerhead Is Out", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-135-hammerhead-is-out/4000-21862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21851/", + "id": 21851, + "name": "Thunderhead!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-265-thunderhead/4000-21851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-608431/", + "id": 608431, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-and-spider-man-1/4000-608431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-520941/", + "id": 520941, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/3d-man-spider-man-et-les-4-fantastiques-1/4000-520941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504868/", + "id": 504868, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-y-spider-man-1/4000-504868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504703/", + "id": 504703, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-y-el-asombroso-hombre-arana-1/4000-504703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-464315/", + "id": 464315, + "name": "Winter 1981", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1981w-winter-1981/4000-464315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413356/", + "id": 413356, + "name": "Kraven the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-spider-woman-7-11-giveaway-1-kraven/4000-413356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-156077/", + "id": 156077, + "name": "The Triumph Of The Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-1-the-triumph-o/4000-156077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-125901/", + "id": 125901, + "name": "Smokescreen", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-storm-and-power-man-1-smokescreen/4000-125901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21747/", + "id": 21747, + "name": "By the Light of the Silvery Moonstone....!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-61-by-the-light-of-the-/4000-21747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21737/", + "id": 21737, + "name": "A King Comes Riding", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-112-a-king-comes-riding/4000-21737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21726/", + "id": 21726, + "name": "Mind Games!", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-102-mind-games/4000-21726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21719/", + "id": 21719, + "name": "Night of the Ape!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-223-night-of-the-ape/4000-21719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21680/", + "id": 21680, + "name": "What If Spider-Man's Clone Lived?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-30-what-if-spider-mans-clone-lived/4000-21680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20919/", + "id": 20919, + "name": "Spider-Man: Threat or Menace?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-15-spider-man-threat/4000-20919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494652/", + "id": 494652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198112/4000-494652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84660/", + "id": 84660, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198112/4000-84660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21736/", + "id": 21736, + "name": "The Ghost That Haunted Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-134-the-ghost-that-haunted-octopus/4000-21736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21676/", + "id": 21676, + "name": "Beetlemania!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-60-beetlemania/4000-21676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21667/", + "id": 21667, + "name": "Of Spiders and Serpents!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-111-of-spiders-and-serpents/4000-21667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21653/", + "id": 21653, + "name": "Faster Than the Eye!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-222-faster-than-the-eye/4000-21653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494651/", + "id": 494651, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198111/4000-494651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325544/", + "id": 325544, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/titans-35/4000-325544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67540/", + "id": 67540, + "name": "The Dinosaur Man; The Fan; The Kingpin's Back In Down", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-55-the-dinosaur-man-the-fan-t/4000-67540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64905/", + "id": 64905, + "name": "On A Clear Day, You Can See...The Mirage!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-133-on-a-clear-day-you-can-seethe-mir/4000-64905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21615/", + "id": 21615, + "name": "What if the Avengers Defeated Everybody?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-29-what-if-the-avengers-defeated-everybody/4000-21615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21609/", + "id": 21609, + "name": "I Want Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-59-i-want-spider-man/4000-21609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21600/", + "id": 21600, + "name": "Magma Force!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-110-magma-force/4000-21600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21583/", + "id": 21583, + "name": "Blues For Lonesome Pinky!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-221-blues-for-lonesome-pink/4000-21583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170304/", + "id": 170304, + "name": "L'Uomo Ragno e il Fantastico Fachiro", + "site_detail_url": "https://comicvine.gamespot.com/corriere-dei-piccoli-198144-luomo-ragno-e-il-fanta/4000-170304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494650/", + "id": 494650, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198110/4000-494650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170300/", + "id": 170300, + "name": "Il Poster di Mazinga", + "site_detail_url": "https://comicvine.gamespot.com/corriere-dei-piccoli-198140-il-poster-di-mazinga/4000-170300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327993/", + "id": 327993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-450/4000-327993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217315/", + "id": 217315, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-79/4000-217315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84658/", + "id": 84658, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198110/4000-84658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64903/", + "id": 64903, + "name": "Whodunit", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-132-whodunit/4000-64903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21606/", + "id": 21606, + "name": "The Thing From Outer Space!", + "site_detail_url": "https://comicvine.gamespot.com/rom-23-the-thing-from-outer-space/4000-21606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366803/", + "id": 366803, + "name": "All They Want To Do is Kill You, Spider-Man...", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1981s-all-they-want-to-do-is-ki/4000-366803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21528/", + "id": 21528, + "name": "Ring Out The Old, Ring in The New!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-58-ring-out-the-old-rin/4000-21528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21518/", + "id": 21518, + "name": "Critical Mass!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-109-critical-mass/4000-21518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21504/", + "id": 21504, + "name": "A Coffin For Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-220-a-coffin-for-spider-man/4000-21504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170299/", + "id": 170299, + "name": "Tom e Jerry", + "site_detail_url": "https://comicvine.gamespot.com/corriere-dei-piccoli-198139-tom-e-jerry/4000-170299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-339907/", + "id": 339907, + "name": "Screen Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/look-in-198139-screen-super-heroes/4000-339907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170298/", + "id": 170298, + "name": "Click! L'Uomo Ragno Contro Electro", + "site_detail_url": "https://comicvine.gamespot.com/corriere-dei-piccoli-198138-click-luomo-ragno-cont/4000-170298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494649/", + "id": 494649, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198109/4000-494649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67539/", + "id": 67539, + "name": "How Time Flies; The Stand-In; Medusa On The Run", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-54-how-time-flies-the-stand-i/4000-67539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64901/", + "id": 64901, + "name": "The Sandman Always Strikes Twice", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-131-the-sandman-always-strikes-twice/4000-64901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20901/", + "id": 20901, + "name": "Dark Side of the Moon", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-3-dark-side-of-t/4000-20901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21456/", + "id": 21456, + "name": "These Wings Enslaved!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-57-these-wings-enslaved/4000-21456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21446/", + "id": 21446, + "name": "Something Wicked This Way Kills!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-108-something-wicked-this-way-kills/4000-21446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21432/", + "id": 21432, + "name": "Peter Parker -- Criminal!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-219-peter-parker-criminal/4000-21432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170281/", + "id": 170281, + "name": "L'Uomo Ragno", + "site_detail_url": "https://comicvine.gamespot.com/corriere-dei-piccoli-198135-luomo-ragno/4000-170281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494648/", + "id": 494648, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198108/4000-494648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84656/", + "id": 84656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198108/4000-84656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64899/", + "id": 64899, + "name": "The Longest Hundred Yards!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-130-the-longest-hundred-yards/4000-64899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20904/", + "id": 20904, + "name": "Pawns of the Purple Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-4-pawns-of-the-purple-man/4000-20904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-616605/", + "id": 616605, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-e-luomo-ragno-1/4000-616605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21393/", + "id": 21393, + "name": "What If Phoenix Had Not Died?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-27-what-if-phoenix-had-not-died/4000-21393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21389/", + "id": 21389, + "name": "The Peril... and the Pumpkin?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-56-the-peril-and-the-pu/4000-21389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21380/", + "id": 21380, + "name": "This Rumor of Revolution!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-107-this-rumor-of-revolution/4000-21380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21366/", + "id": 21366, + "name": "Eye of the Beholder", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-218-eye-of-the-beholder/4000-21366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494647/", + "id": 494647, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198107/4000-494647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140620/", + "id": 140620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dc-and-marvel-present-superman-and-spider-man-1/4000-140620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84655/", + "id": 84655, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198107/4000-84655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67538/", + "id": 67538, + "name": "Doctor Doom Meets Prince Namor; The New Job; The Meteor Man", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-53-doctor-doom-meets-prince-n/4000-67538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64897/", + "id": 64897, + "name": "Shattered By the Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-129-shattered-by-the-shocker/4000-64897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21365/", + "id": 21365, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spirit-30/4000-21365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-607417/", + "id": 607417, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-and-spider-man-1/4000-607417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109296/", + "id": 109296, + "name": "The Big Blow Out", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-55-the-big-blow-out/4000-109296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21306/", + "id": 21306, + "name": "A Savage Sting Has...The Scorpion!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-106-a-savage-sting-hasthe-scorpion/4000-21306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21291/", + "id": 21291, + "name": "Here's Mud in Your Eye!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-217-heres-mud-in-your-eye/4000-21291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494646/", + "id": 494646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198106/4000-494646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64895/", + "id": 64895, + "name": "Skirmish Beneath the Streets!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-128-skirmish-beneath-the-streets/4000-64895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21307/", + "id": 21307, + "name": "The Big Top Bandits", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-76-the-big-top-bandits/4000-21307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21255/", + "id": 21255, + "name": "To Save the Smuggler!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-54-to-save-the-smuggler/4000-21255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21232/", + "id": 21232, + "name": "Marathon", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-216-marathon/4000-21232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328057/", + "id": 328057, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-hulk-team-up-428/4000-328057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494645/", + "id": 494645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198105/4000-494645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67537/", + "id": 67537, + "name": "Mystery of the Mole Machine; The Real Spidey; The Big Freeze", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-52-mystery-of-the-mole-machin/4000-67537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64893/", + "id": 64893, + "name": "Spider-Man......or Spider-Clone?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-127-spider-manor-spider-clone/4000-64893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21197/", + "id": 21197, + "name": "What if Captain America Were Elected President?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-26-what-if-captain-america-were-elected-pr/4000-21197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21192/", + "id": 21192, + "name": "Toys of the Terrible Tinkerer", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-53-toys-of-the-terrible/4000-21192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21167/", + "id": 21167, + "name": "By My Powers Shall I Be Vanquished!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-215-by-my-powers-shall-i-be/4000-21167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494643/", + "id": 494643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198104/4000-494643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217343/", + "id": 217343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-73/4000-217343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64891/", + "id": 64891, + "name": "Even if I live, I Die!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-126-even-if-i-live-i-die/4000-64891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21171/", + "id": 21171, + "name": "Where Demons Fear to Dwell!", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-2-where-demons-fear-to-dwell/4000-21171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21122/", + "id": 21122, + "name": "The Day of the Hero Killers!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-52-the-day-of-the-hero-/4000-21122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21115/", + "id": 21115, + "name": "The Assassin Academy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-103-the-assassin-academy/4000-21115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21114/", + "id": 21114, + "name": "Jackal, Jackal... Who's Got the Jackal?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-125-jackal-jackal-whos-got-the-jackal/4000-21114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21113/", + "id": 21113, + "name": "The Big Time", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-11-the-big-time/4000-21113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21106/", + "id": 21106, + "name": "So Bright This Star", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-1-so-bright-this-star/4000-21106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21100/", + "id": 21100, + "name": "Then Shall We Both Be Betrayed!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-214-then-shall-we-both-be-b/4000-21100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494641/", + "id": 494641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198103/4000-494641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67536/", + "id": 67536, + "name": "The Ringer's Big Rip-Off; The movie Menace; Master Plan of The Thinker", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-51-the-ringers-big-rip-off-th/4000-67536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21052/", + "id": 21052, + "name": "Aliens and Illusions!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-51-aliens-and-illusions/4000-21052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21042/", + "id": 21042, + "name": "Samson and Delilah!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-102-samson-and-delilah/4000-21042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827818/", + "id": 827818, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-stars-5/4000-827818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827817/", + "id": 827817, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-stars-4/4000-827817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827727/", + "id": 827727, + "name": "No. 6", + "site_detail_url": "https://comicvine.gamespot.com/popcorn-6-no-6/4000-827727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494639/", + "id": 494639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198102/4000-494639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21041/", + "id": 21041, + "name": "The Tarantula is a Very Deadly Beast", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-124-the-tarantula-is-a-very-deadly-be/4000-21041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-21028/", + "id": 21028, + "name": "All They Want to Do is Kill You, Spider-Man...", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-213-all-they-want-to-do-is-/4000-21028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20988/", + "id": 20988, + "name": "Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-141-days-of-future-past/4000-20988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20983/", + "id": 20983, + "name": "Alone Against the Aliens!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-50-alone-against-the-al/4000-20983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20975/", + "id": 20975, + "name": "To Judge a Nighthawk!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-101-to-judge-a-nighthawk/4000-20975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20961/", + "id": 20961, + "name": "The Coming of Hydroman!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-212-the-coming-of-hydroman/4000-20961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359470/", + "id": 359470, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-winter-special-1980/4000-359470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447863/", + "id": 447863, + "name": "Special Origines", + "site_detail_url": "https://comicvine.gamespot.com/strange-133bis-special-origines/4000-447863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494637/", + "id": 494637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198101/4000-494637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347983/", + "id": 347983, + "name": "The Amazing Spider-Man: In the Clutches of Doc Ock!", + "site_detail_url": "https://comicvine.gamespot.com/bubble-funnies-1-the-amazing-spider-man-in-the-clu/4000-347983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291182/", + "id": 291182, + "name": "Pipeline to Peril!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-pipeline-to-p/4000-291182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218997/", + "id": 218997, + "name": "The Mystery of the Power Crown!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-captain-america-the-incredible-hulk-and/4000-218997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84659/", + "id": 84659, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198111/4000-84659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84657/", + "id": 84657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198109/4000-84657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84654/", + "id": 84654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198106/4000-84654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67535/", + "id": 67535, + "name": "Rhino's Day In Court; The Fortune Tellers; A Man With Thousand Faces", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-50-rhinos-day-in-court-the-fo/4000-67535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66606/", + "id": 66606, + "name": "The Surfer and the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/fantasy-masterpieces-14-the-surfer-and-the-spider/4000-66606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20974/", + "id": 20974, + "name": "Scorpion... Where is Thy Sting?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-123-scorpion-where-is-thy-sting/4000-20974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20925/", + "id": 20925, + "name": "Spider-Man and Superman The Heroes and the Holocaust!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-28-spider-man-and-superman/4000-20925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407252/", + "id": 407252, + "name": "Acme and Dingo Childre's Boots: Absorbing Man breaks Loose", + "site_detail_url": "https://comicvine.gamespot.com/exclusive-collectors-edition-spider-man-0-acme-and/4000-407252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20883/", + "id": 20883, + "name": "What if Spider-Man had Rescued Gwen Stacy?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-24-what-if-spider-man-had-rescued-gwen-sta/4000-20883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20877/", + "id": 20877, + "name": "Enter: The Smuggler!; .. The White Tiger", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-49-enter-the-smuggler-t/4000-20877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20866/", + "id": 20866, + "name": "...The Reason is Karma!; Cry... Vengeance!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-100-the-reason-is-karma-cry-vengean/4000-20866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20851/", + "id": 20851, + "name": "The Spider and the Sea-Scourge!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-211-the-spider-and-the-sea-/4000-20851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827726/", + "id": 827726, + "name": "No. 5", + "site_detail_url": "https://comicvine.gamespot.com/popcorn-5-no-5/4000-827726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494635/", + "id": 494635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198012/4000-494635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64886/", + "id": 64886, + "name": "Gwen Stacy Is Alive...And, Well...?!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-122-gwen-stacy-is-aliveand-well/4000-64886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20807/", + "id": 20807, + "name": "Double Defeat!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-48-double-defeat/4000-20807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20799/", + "id": 20799, + "name": "and Machine Man Makes 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-99-and-machine-man-makes-3/4000-20799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20787/", + "id": 20787, + "name": "The Prophecy of Madame Web!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-210-the-prophecy-of-madame-/4000-20787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494633/", + "id": 494633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198011/4000-494633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67534/", + "id": 67534, + "name": "Spidey For President; Fargo's Problem; The Rocket Racer", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-49-spidey-for-president-fargo/4000-67534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64884/", + "id": 64884, + "name": "The Delusion Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-121-the-delusion-conspiracy/4000-64884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20800/", + "id": 20800, + "name": "Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-69-homecoming/4000-20800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20036/", + "id": 20036, + "name": "Mayhem in Middle America!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-3-mayhem-in-middle-america/4000-20036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20750/", + "id": 20750, + "name": "What if the Hulk had become a Barbarian?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-23-what-if-the-hulk-had-become-a-barbarian/4000-20750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20745/", + "id": 20745, + "name": "A Night on the Prowl!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-47-a-night-on-the-prowl/4000-20745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20736/", + "id": 20736, + "name": "Spiderman & Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-98-spiderman-black-widow/4000-20736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20731/", + "id": 20731, + "name": "The Changelings!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-252-the-changelings/4000-20731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20722/", + "id": 20722, + "name": "To Salvage My Honor!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-209-to-salvage-my-honor/4000-20722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20047/", + "id": 20047, + "name": "The Bend Sinister", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-14-the-bend-sinister/4000-20047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494631/", + "id": 494631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198010/4000-494631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64882/", + "id": 64882, + "name": "...And The Wind Cries: Cyclone", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-120-and-the-wind-cries-cyclone/4000-64882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20751/", + "id": 20751, + "name": "Elegy", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-138-elegy/4000-20751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20724/", + "id": 20724, + "name": "Cap For President!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-250-cap-for-president/4000-20724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20721/", + "id": 20721, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures-11/4000-20721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366801/", + "id": 366801, + "name": "The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1980s-the-sinister-six/4000-366801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20676/", + "id": 20676, + "name": "Deadly is the Cobra!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-46-deadly-is-the-cobra/4000-20676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20654/", + "id": 20654, + "name": "Fusion!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-208-fusion/4000-20654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494629/", + "id": 494629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198009/4000-494629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67533/", + "id": 67533, + "name": "The Roots of Evil; Impossible Airport 1980; Happy Halloween From The Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-48-the-roots-of-evil-impossib/4000-67533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64880/", + "id": 64880, + "name": "Dead Man's Bluff!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-119-dead-mans-bluff/4000-64880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20606/", + "id": 20606, + "name": "Wings of Fire, Wings of Fear", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-45-wings-of-fire-wings-/4000-20606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20596/", + "id": 20596, + "name": "Spiderman & Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-96-spiderman-howard-the-duck/4000-20596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20583/", + "id": 20583, + "name": "Mesmero's Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-207-mesmeros-revenge/4000-20583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494627/", + "id": 494627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198008/4000-494627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217311/", + "id": 217311, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-65/4000-217311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110314/", + "id": 110314, + "name": "The Man's Name Appears To Be...Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-118-the-mans-name-appears-to-bemyster/4000-110314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66618/", + "id": 66618, + "name": "Completing Our First Year!", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-12-completing-our-first-yea/4000-66618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20607/", + "id": 20607, + "name": "Spider-Man is Dead..and I Killed Him", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-29-spider-man-is-dead-and-i-killed-hi/4000-20607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20034/", + "id": 20034, + "name": "Vengence Is Mine . . . Sayeth the Sword!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-2-vengence-is-mi/4000-20034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20546/", + "id": 20546, + "name": "Dark Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-135-dark-phoenix/4000-20546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20541/", + "id": 20541, + "name": "The Vengeance Gambit!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-44-the-vengeance-gambit/4000-20541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20534/", + "id": 20534, + "name": "...and No Birds Sing!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-95-and-no-birds-sing/4000-20534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20520/", + "id": 20520, + "name": "\"A Method in His Madness!\"", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-206-a-method-in-his-madness/4000-20520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494625/", + "id": 494625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198007/4000-494625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84643/", + "id": 84643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198007/4000-84643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67532/", + "id": 67532, + "name": "Wanted: Web-Head!; Surprise; Two Against The Top", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-47-wanted-web-head-surprise-t/4000-67532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64878/", + "id": 64878, + "name": "...And One Will Fall!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-117-and-one-will-fall/4000-64878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20542/", + "id": 20542, + "name": "That Scotty Should Not Die!", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-28-that-scotty-should-not-die/4000-20542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20476/", + "id": 20476, + "name": "What if Invisible Girl of the Fantastic Four Married the Sub-Marriner", + "site_detail_url": "https://comicvine.gamespot.com/what-if-21-what-if-invisible-girl-of-the-fantastic/4000-20476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20469/", + "id": 20469, + "name": "Pretty Poison", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-43-pretty-poison/4000-20469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20460/", + "id": 20460, + "name": "Darkness, Darkness...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-94-darkness-darkness/4000-20460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20455/", + "id": 20455, + "name": "How Green My Garden Grows!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-248-how-green-my-garden-grows/4000-20455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20446/", + "id": 20446, + "name": "The Terrible Toll Of The Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-196-the-terrible-toll-of-the-taskmast/4000-20446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20445/", + "id": 20445, + "name": "...In Love and War!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-205-in-love-and-war/4000-20445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328086/", + "id": 328086, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-hulk-weekly-382/4000-328086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328085/", + "id": 328085, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-hulk-weekly-381/4000-328085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827723/", + "id": 827723, + "name": "No. 2", + "site_detail_url": "https://comicvine.gamespot.com/popcorn-2-no-2/4000-827723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494623/", + "id": 494623, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198006/4000-494623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190796/", + "id": 190796, + "name": "First Blood; Wanted ... Cyclops; Enter Rampage", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-362-first-blood-wanted-cyclops/4000-190796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100757/", + "id": 100757, + "name": "The Name is ... Yellowjacket!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-action-20-the-name-is-yellowjacket/4000-100757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84642/", + "id": 84642, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198006/4000-84642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66616/", + "id": 66616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-10/4000-66616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64876/", + "id": 64876, + "name": "Day Of The Grizzly!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-116-day-of-the-grizzly/4000-64876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20054/", + "id": 20054, + "name": "At the 1980 Winter Olympics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-25-at-the-1980-winter-olym/4000-20054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20398/", + "id": 20398, + "name": "Give Me Liberty or Give Me Death!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-42-give-me-liberty-or-g/4000-20398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20385/", + "id": 20385, + "name": "When A Spider-Man Comes Calling!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-218-when-a-spider-man-comes-calling/4000-20385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20379/", + "id": 20379, + "name": "The Black Cat Always Lands on Her Feet!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-204-the-black-cat-always-la/4000-20379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-681230/", + "id": 681230, + "name": "¡Contra el Doctor Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-2-contra-el-doctor-pulpo/4000-681230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494621/", + "id": 494621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198005/4000-494621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100756/", + "id": 100756, + "name": "Even An Android Can Cry", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-action-19-even-an-android-can-cry/4000-100756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84641/", + "id": 84641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198005/4000-84641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67531/", + "id": 67531, + "name": "Mary Jane Makes A Movie; The Gas Problem; Winter Games 1980", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-46-mary-jane-makes-a-movie-th/4000-67531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66615/", + "id": 66615, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-9/4000-66615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64874/", + "id": 64874, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-115/4000-64874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20399/", + "id": 20399, + "name": "The Blades of the Grinder!", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-26-the-blades-of-the-grinder/4000-20399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20391/", + "id": 20391, + "name": "Rags To Riches!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-93-rags-to-riches/4000-20391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680258/", + "id": 680258, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-1/4000-680258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20332/", + "id": 20332, + "name": "What If The Avengers Had Fought the Kree-Skrull War Without Rick Jones?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-20-what-if-the-avengers-had-fought-the-kre/4000-20332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20317/", + "id": 20317, + "name": "Fear", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-92-fear/4000-20317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20302/", + "id": 20302, + "name": "Bewitched, Bothered and Be-Dazzled!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-203-bewitched-bothered-and-/4000-20302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827722/", + "id": 827722, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/popcorn-1-vol-1/4000-827722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494618/", + "id": 494618, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198004/4000-494618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84640/", + "id": 84640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198004/4000-84640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66614/", + "id": 66614, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-8/4000-66614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64872/", + "id": 64872, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-114/4000-64872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20326/", + "id": 20326, + "name": "Meteor Madness!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-41-meteor-madness/4000-20326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20247/", + "id": 20247, + "name": "Carnival Of Souls!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-91-carnival-of-souls/4000-20247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20233/", + "id": 20233, + "name": "One For Those Long Gone!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-202-one-for-those-long-gone/4000-20233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494616/", + "id": 494616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198003/4000-494616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84639/", + "id": 84639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198003/4000-84639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67530/", + "id": 67530, + "name": "The Sunshine Machine; Gone Bananas; Spidey Gets The Runaround", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-45-the-sunshine-machine-gone-/4000-67530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64870/", + "id": 64870, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-113/4000-64870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20254/", + "id": 20254, + "name": "The Terrible Turnabout!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-40-the-terrible-turnabo/4000-20254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20248/", + "id": 20248, + "name": "The Coming of Her!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-61-the-coming-of-her/4000-20248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20185/", + "id": 20185, + "name": "What if Spider-Man had Never Become a Crimefighter?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-19-what-if-spider-man-had-never-become-a-c/4000-20185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20171/", + "id": 20171, + "name": "Death Rides the Air Waves!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-90-death-rides-the-air-waves/4000-20171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20158/", + "id": 20158, + "name": "Man-Hunt!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-201-man-hunt/4000-20158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251073/", + "id": 251073, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-weekly-50/4000-251073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251072/", + "id": 251072, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-weekly-49/4000-251072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494614/", + "id": 494614, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198002/4000-494614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84638/", + "id": 84638, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198002/4000-84638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66612/", + "id": 66612, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-6/4000-66612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64868/", + "id": 64868, + "name": "Shoot-Out In Central Park", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-112-shoot-out-in-central-park/4000-64868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20180/", + "id": 20180, + "name": "Scourge of the Schizoid Man!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-39-scourge-of-the-schiz/4000-20180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20104/", + "id": 20104, + "name": "Shoot Out Over Center Ring!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-89-shoot-out-over-center-ring/4000-20104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20091/", + "id": 20091, + "name": "The Spider and the Burglar...A Sequel", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-200-the-spider-and-the-burg/4000-20091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251071/", + "id": 251071, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-weekly-48/4000-251071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251070/", + "id": 251070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-weekly-47/4000-251070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494613/", + "id": 494613, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-198001/4000-494613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391572/", + "id": 391572, + "name": "\"Together against the Kingpin!\"", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-and-spider-woman-1-together/4000-391572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383567/", + "id": 383567, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-john-byrne-1-volume-one/4000-383567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-347018/", + "id": 347018, + "name": "Contest of Champions", + "site_detail_url": "https://comicvine.gamespot.com/especial-verano-1-contest-of-champions/4000-347018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328283/", + "id": 328283, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-210/4000-328283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328169/", + "id": 328169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-weekly-375/4000-328169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291181/", + "id": 291181, + "name": "...What Price A Life?", + "site_detail_url": "https://comicvine.gamespot.com/special-edition-spider-man-and-the-hulk-1-what-pri/4000-291181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224964/", + "id": 224964, + "name": "In The Grip Of The Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/exclusive-collectors-edition-spider-man-1-in-the-g/4000-224964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217305/", + "id": 217305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-58/4000-217305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165757/", + "id": 165757, + "name": "Aku Island Treasure Race", + "site_detail_url": "https://comicvine.gamespot.com/bugs-bunny-216-aku-island-treasure-race/4000-165757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130049/", + "id": 130049, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-212/4000-130049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84637/", + "id": 84637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-198001/4000-84637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67529/", + "id": 67529, + "name": "Time For Trouble; The Wizard of Odd; No News Is Bad News", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-44-time-for-trouble-the-wizar/4000-67529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66611/", + "id": 66611, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-5/4000-66611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64866/", + "id": 64866, + "name": "Danger is a Man Called Tarantula!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-111-danger-is-a-man-called-tarantula/4000-64866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20110/", + "id": 20110, + "name": "Curse of the Living Vampire!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-38-curse-of-the-living-/4000-20110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20056/", + "id": 20056, + "name": "A Friend In Need; The Tomorrow War; Time Bomb; The Doomsday Gambit; Joyride Into Jeopardy;", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-27-a-friend-in-need-the-to/4000-20056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366800/", + "id": 366800, + "name": "What if Someone Else had Become THe Amazing Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1979w-what-if-someone-else-had-/4000-366800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20005/", + "id": 20005, + "name": "What if Dr. Strange were a disciple of Dormammu?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-18-what-if-dr-strange-were-a-disciple-of-d/4000-20005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-20000/", + "id": 20000, + "name": "Into the Hive!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-37-into-the-hive/4000-20000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19991/", + "id": 19991, + "name": "A Child is Waiting", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-88-a-child-is-waiting/4000-19991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19976/", + "id": 19976, + "name": "Now You See Me! Now You Die!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-199-now-you-see-me-now-you-/4000-19976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19113/", + "id": 19113, + "name": "Cat's Paw!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-14-cats-paw/4000-19113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19111/", + "id": 19111, + "name": "The Arms of Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-13-the-arms-of-docto/4000-19111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19082/", + "id": 19082, + "name": "And Men Shall Call Him Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual-1-and-men-shall-/4000-19082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494516/", + "id": 494516, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197912/4000-494516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84636/", + "id": 84636, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197912/4000-84636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64864/", + "id": 64864, + "name": "The Molten Man Breaks Out!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-110-the-molten-man-breaks-out/4000-64864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19931/", + "id": 19931, + "name": "Tangled Webs", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-20-tangled-webs/4000-19931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19925/", + "id": 19925, + "name": "The Razor's Edge!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-87-the-razors-edge/4000-19925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19913/", + "id": 19913, + "name": "Mysterio is Deadlier By the Dozen!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-198-mysterio-is-deadlier-by/4000-19913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893068/", + "id": 893068, + "name": "Spiderman 4", + "site_detail_url": "https://comicvine.gamespot.com/antologia-del-comic-17-spiderman-4/4000-893068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494515/", + "id": 494515, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197911/4000-494515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466622/", + "id": 466622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-4/4000-466622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84635/", + "id": 84635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197911/4000-84635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67528/", + "id": 67528, + "name": "Spidey Meets Daredevil; The Flight of Human Kite; Auto Show 1979", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-43-spidey-meets-daredevil-the/4000-67528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66609/", + "id": 66609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-3/4000-66609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64862/", + "id": 64862, + "name": "The Master Plan of the Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-109-the-master-plan-of-the-molten-man/4000-64862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19930/", + "id": 19930, + "name": "Enter: Swarm!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-36-enter-swarm/4000-19930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19851/", + "id": 19851, + "name": "Story of The Year", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-86-story-of-the-year/4000-19851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19836/", + "id": 19836, + "name": "The Kingpin's Midnight Massacre!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-197-the-kingpins-midnight-m/4000-19836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277759/", + "id": 277759, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hulk-comic-33/4000-277759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494514/", + "id": 494514, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197910/4000-494514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-271922/", + "id": 271922, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hulk-comic-31/4000-271922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130047/", + "id": 130047, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-210/4000-130047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66608/", + "id": 66608, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-2/4000-66608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64860/", + "id": 64860, + "name": "My Uncle...My Enemy?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-108-my-unclemy-enemy/4000-64860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19858/", + "id": 19858, + "name": "Who Dares Enter the Labyrinth?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-35-who-dares-enter-the-/4000-19858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19085/", + "id": 19085, + "name": "Murder in Cathedral Canyon!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-2-murder-in-cathedral-canyon/4000-19085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366799/", + "id": 366799, + "name": "To Sow the Seeds of Death's Day!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1979s-to-sow-the-seeds-of-death/4000-366799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19784/", + "id": 19784, + "name": "The Woman Who Never Was!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-85-the-woman-who-never-was/4000-19784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19773/", + "id": 19773, + "name": "Requiem!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-196-requiem/4000-19773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494513/", + "id": 494513, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197909/4000-494513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67527/", + "id": 67527, + "name": "Kingpin For President; By The Book; Blackout", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-42-kingpin-for-president-by-t/4000-67527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66607/", + "id": 66607, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine-1/4000-66607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64858/", + "id": 64858, + "name": "Betrayed!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-107-betrayed/4000-64858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19789/", + "id": 19789, + "name": "Lizards on a Hot Tin Roof!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-34-lizards-on-a-hot-tin/4000-19789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19777/", + "id": 19777, + "name": "In the Hands of Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-160-in-the-hands-of-bullseye/4000-19777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19775/", + "id": 19775, + "name": "From the Ashes...", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-237-from-the-ashes/4000-19775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19712/", + "id": 19712, + "name": "Catch A Falling Hero", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-84-catch-a-falling-hero/4000-19712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19698/", + "id": 19698, + "name": "Nine Lives Has the Black Cat!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-195-nine-lives-has-the-blac/4000-19698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494512/", + "id": 494512, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197908/4000-494512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466621/", + "id": 466621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-3/4000-466621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109470/", + "id": 109470, + "name": "The Punisher Strikes Twice!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-106-the-punisher-strikes-twice/4000-109470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19726/", + "id": 19726, + "name": "He Only Laughs When I Hurt!", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-124-he-only-laughs-when-i-hurt/4000-19726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19719/", + "id": 19719, + "name": "Night of the Iguana!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-33-night-of-the-iguana/4000-19719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19658/", + "id": 19658, + "name": "What If Someone Else Had Become Nova?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-15-what-if-someone-else-had-become-nova/4000-19658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19648/", + "id": 19648, + "name": "Slaughter on 10th Avenue!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-83-slaughter-on-10th-avenue/4000-19648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19634/", + "id": 19634, + "name": "Never Let the Black Cat Cross Your Path!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-194-never-let-the-black-cat/4000-19634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494511/", + "id": 494511, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197907/4000-494511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169440/", + "id": 169440, + "name": "07-1979", + "site_detail_url": "https://comicvine.gamespot.com/eureka-197907-07-1979/4000-169440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123628/", + "id": 123628, + "name": "Listen-Stop Me If You've Heard It, But This One Will KILL You!", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-123-listen-stop-me-if-youve-heard-it-but/4000-123628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74073/", + "id": 74073, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-special-28/4000-74073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67526/", + "id": 67526, + "name": "Introducing...Nova; Machine Man Gets Framed", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-41-introducingnova-machine-ma/4000-67526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64855/", + "id": 64855, + "name": "The Vulture Hangs High!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-105-the-vulture-hangs-high/4000-64855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19653/", + "id": 19653, + "name": "A Zoo Story!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-32-a-zoo-story/4000-19653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19641/", + "id": 19641, + "name": "And Lo, A Child Shall Lead Them", + "site_detail_url": "https://comicvine.gamespot.com/godzilla-24-and-lo-a-child-shall-lead-them/4000-19641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19587/", + "id": 19587, + "name": "Till Death Do Us Part!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-31-till-death-do-us-par/4000-19587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19580/", + "id": 19580, + "name": "No Way to Treat a Lady", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-82-no-way-to-treat-a-lady/4000-19580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19574/", + "id": 19574, + "name": "Might of the Monocle!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-207-might-of-the-monocle/4000-19574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19568/", + "id": 19568, + "name": "The Wings of the Fearsome Fly!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-193-the-wings-of-the-fearso/4000-19568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494510/", + "id": 494510, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197906/4000-494510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466620/", + "id": 466620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-2/4000-466620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84630/", + "id": 84630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197906/4000-84630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64853/", + "id": 64853, + "name": "The Dark Wings Of Death!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-104-the-dark-wings-of-death/4000-64853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19519/", + "id": 19519, + "name": "Secret As the Grave!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-30-secret-as-the-grave/4000-19519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19513/", + "id": 19513, + "name": "Last Rites", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-81-last-rites/4000-19513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19497/", + "id": 19497, + "name": "24 Hours Till Doomsday!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-192-24-hours-till-doomsday/4000-19497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494509/", + "id": 494509, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197905/4000-494509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84629/", + "id": 84629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197905/4000-84629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67525/", + "id": 67525, + "name": "Spider-Man Meets Toymaker; Lights! Camera! Oops!; Up a Tree", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-40-spider-man-meets-toymaker-/4000-67525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64851/", + "id": 64851, + "name": "The Kangaroo Bounces Back", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-103-the-kangaroo-bounces-back/4000-64851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466557/", + "id": 466557, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-1/4000-466557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19448/", + "id": 19448, + "name": "Dust to Dust", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-29-dust-to-dust/4000-19448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19440/", + "id": 19440, + "name": "A Sorceror Possessed!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-80-a-sorceror-possessed/4000-19440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19422/", + "id": 19422, + "name": "Wanted For Murder: Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-191-wanted-for-murder-spide/4000-19422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494502/", + "id": 494502, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197904/4000-494502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328178/", + "id": 328178, + "name": "Cyclone Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comic-319-cyclone-strikes/4000-328178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84628/", + "id": 84628, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197904/4000-84628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64849/", + "id": 64849, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-102/4000-64849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19381/", + "id": 19381, + "name": "Ashes to Ashes", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-28-ashes-to-ashes/4000-19381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19374/", + "id": 19374, + "name": "Sword of the She-Devil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-79-sword-of-the-she-devil/4000-19374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19366/", + "id": 19366, + "name": "The Andromeda Attack!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-204-the-andromeda-attack/4000-19366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19358/", + "id": 19358, + "name": "In Search of the Man-Wolf!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-190-in-search-of-the-man-wo/4000-19358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494498/", + "id": 494498, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197903/4000-494498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325351/", + "id": 325351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hembeck-the-best-of-dateline-1/4000-325351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180630/", + "id": 180630, + "name": "L'Uomo Ragno Colpisce Ancora", + "site_detail_url": "https://comicvine.gamespot.com/eureka-197903-luomo-ragno-colpisce-ancora/4000-180630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172414/", + "id": 172414, + "name": "L'Uomo Ragno Colpisce Ancora", + "site_detail_url": "https://comicvine.gamespot.com/superfumetti-13-luomo-ragno-colpisce-ancora/4000-172414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84627/", + "id": 84627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197903/4000-84627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67524/", + "id": 67524, + "name": "Who Will Get the Cosmic Cube?", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-39-who-will-get-the-cosmic-cu/4000-67524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64847/", + "id": 64847, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-101/4000-64847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19310/", + "id": 19310, + "name": "The Blind Leading the Blind!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-27-the-blind-leading-th/4000-19310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19302/", + "id": 19302, + "name": "Claws!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-78-claws/4000-19302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494497/", + "id": 494497, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197902/4000-494497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84626/", + "id": 84626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197902/4000-84626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19316/", + "id": 19316, + "name": "What If Conan The Barbarian Walked The Earth Today?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-13-what-if-conan-the-barbarian-walked-the-/4000-19316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19301/", + "id": 19301, + "name": "...Just a Man Called Cage!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-100-just-a-man-called-cage/4000-19301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19284/", + "id": 19284, + "name": "Mayhem By Moonlight!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-189-mayhem-by-moonlight/4000-19284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19205/", + "id": 19205, + "name": "Mine Eyes Have Seen the Glory!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-26-mine-eyes-have-seen-/4000-19205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19200/", + "id": 19200, + "name": "If I'm To Live, My Love Must Die", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-77-if-im-to-live-my-love-must-die/4000-19200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19190/", + "id": 19190, + "name": "There's One Iron Man Too Many!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-202-theres-one-iron-man-too-many/4000-19190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19182/", + "id": 19182, + "name": "The Jigsaw is Up!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-188-the-jigsaw-is-up/4000-19182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494495/", + "id": 494495, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197901/4000-494495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383545/", + "id": 383545, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-hc/4000-383545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269807/", + "id": 269807, + "name": "-", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-master-of-the-mystic-arts-1--/4000-269807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249092/", + "id": 249092, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-summer-special-1/4000-249092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-225161/", + "id": 225161, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-puzzles-and-games-1/4000-225161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224088/", + "id": 224088, + "name": "Exclusive Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-exclusive-collectors-edit/4000-224088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217198/", + "id": 217198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-16/4000-217198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178068/", + "id": 178068, + "name": "The Gamma Gambit!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-manthe-incredible-hulk-1-the-ga/4000-178068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175499/", + "id": 175499, + "name": "Il Superlibro Tutto a Colori dei Fumetti in TV", + "site_detail_url": "https://comicvine.gamespot.com/il-super-supergulp-1-il-superlibro-tutto-a-colori-/4000-175499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84625/", + "id": 84625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197901/4000-84625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-74390/", + "id": 74390, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-204/4000-74390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67523/", + "id": 67523, + "name": "Don't Take The A Train", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-38-dont-take-the-a-train/4000-67523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64836/", + "id": 64836, + "name": "The Goblin's Last Stand!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-99-the-goblins-last-stand/4000-64836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19127/", + "id": 19127, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-22/4000-19127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19054/", + "id": 19054, + "name": "Carrion, My Wayward Son!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-25-carrion-my-wayward-s/4000-19054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19048/", + "id": 19048, + "name": "If Not For Love", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-76-if-not-for-love/4000-19048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19028/", + "id": 19028, + "name": "The Power of Electro!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-187-the-power-of-electro/4000-19028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494493/", + "id": 494493, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197812/4000-494493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217197/", + "id": 217197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-15/4000-217197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84624/", + "id": 84624, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197812/4000-84624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19047/", + "id": 19047, + "name": "The Night Gwen Stacy Died", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-98-the-night-gwen-stacy-died/4000-19047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-19033/", + "id": 19033, + "name": "The Dream Weaver!", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-32-the-dream-weaver/4000-19033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18107/", + "id": 18107, + "name": "The Gentleman's Name is... Hulk!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-12-the-gentleman-s-n/4000-18107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18971/", + "id": 18971, + "name": "The Smoke of that Great Burning", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-75-the-smoke-of-that-great-burning/4000-18971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18954/", + "id": 18954, + "name": "Chaos is--The Chameleon!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-186-chaos-is-the-chameleon/4000-18954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494491/", + "id": 494491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197811/4000-494491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893030/", + "id": 893030, + "name": "Spiderman 3", + "site_detail_url": "https://comicvine.gamespot.com/antologia-del-comic-13-spiderman-3/4000-893030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893022/", + "id": 893022, + "name": "Spiderman 2", + "site_detail_url": "https://comicvine.gamespot.com/antologia-del-comic-12-spiderman-2/4000-893022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893010/", + "id": 893010, + "name": "Spiderman 1", + "site_detail_url": "https://comicvine.gamespot.com/antologia-del-comic-9-spiderman-1/4000-893010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84623/", + "id": 84623, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197811/4000-84623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67522/", + "id": 67522, + "name": "The Slum Lord; Pumping Vitamins; The Sands of Crime", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-37-the-slum-lord-pumping-vita/4000-67522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64842/", + "id": 64842, + "name": "Countdown to Chaos!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-97-countdown-to-chaos/4000-64842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18978/", + "id": 18978, + "name": "Spider-Man Night Fever!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-24-spider-man-night-fev/4000-18978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18904/", + "id": 18904, + "name": "Live From New York", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-74-live-from-new-york/4000-18904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18884/", + "id": 18884, + "name": "Spider, Spider, Burning Bright!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-185-spider-spider-burning-b/4000-18884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494487/", + "id": 494487, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197810/4000-494487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236268/", + "id": 236268, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-comics-journal-42/4000-236268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217195/", + "id": 217195, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-13/4000-217195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64840/", + "id": 64840, + "name": "The Deadly Designs of the Disruptor!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-96-the-deadly-designs-of-the-disrupto/4000-64840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-50933/", + "id": 50933, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197810/4000-50933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18910/", + "id": 18910, + "name": "Guess Who's Buried in Grant's Tomb!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-23-guess-whos-buried-in/4000-18910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18824/", + "id": 18824, + "name": "A Fluttering of Wings Most Foul!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-73-a-fluttering-of-wings-most-foul/4000-18824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18808/", + "id": 18808, + "name": "White Dragon! Red Death!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-184-white-dragon-red-death/4000-18808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494485/", + "id": 494485, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197809/4000-494485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364827/", + "id": 364827, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-annual-1979/4000-364827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217225/", + "id": 217225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-42/4000-217225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217194/", + "id": 217194, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-12/4000-217194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84622/", + "id": 84622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197809/4000-84622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67521/", + "id": 67521, + "name": "Leaping Lizards; Ghosts And Goblins; The Plantman And The Garden of Eden", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-36-leaping-lizards-ghosts-and/4000-67521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67520/", + "id": 67520, + "name": "Shanna's New York Adventure; The Godmother; The Perfect Plan of Night Flyer", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-35-shannas-new-york-adventure/4000-67520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64838/", + "id": 64838, + "name": "Suddenly...The Smasher!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-95-suddenlythe-smasher/4000-64838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18831/", + "id": 18831, + "name": "By the Light of the Silvery Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-22-by-the-light-of-the-/4000-18831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18745/", + "id": 18745, + "name": "Crack of the Whip!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-72-crack-of-the-whip/4000-18745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18730/", + "id": 18730, + "name": "Dollar Bill's Documentary Disaster Part 1: Membership Madness!", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-62-dollar-bills-documentary-disaster/4000-18730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18726/", + "id": 18726, + "name": "...And Where the Big Wheel Stops, Nobody Knows!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-183-and-where-the-big-wheel/4000-18726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494484/", + "id": 494484, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197808/4000-494484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465131/", + "id": 465131, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-104-le-journal-de-spider-man/4000-465131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236106/", + "id": 236106, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-comics-journal-41/4000-236106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84621/", + "id": 84621, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197808/4000-84621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64834/", + "id": 64834, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-94/4000-64834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18756/", + "id": 18756, + "name": "What if Jane Foster had found the hammer of Thor?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-10-what-if-jane-foster-had-found-the-hamme/4000-18756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18751/", + "id": 18751, + "name": "Still Crazy After All These Years!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-21-still-crazy-after-al/4000-18751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18665/", + "id": 18665, + "name": "Deathgarden", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-71-deathgarden/4000-18665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18648/", + "id": 18648, + "name": "The Rocket Racer's Back in Town!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-182-the-rocket-racers-back-/4000-18648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494483/", + "id": 494483, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197807/4000-494483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224053/", + "id": 224053, + "name": "Enter The Hulk", + "site_detail_url": "https://comicvine.gamespot.com/rampage-monthly-1-enter-the-hulk/4000-224053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217192/", + "id": 217192, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-10/4000-217192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109294/", + "id": 109294, + "name": "Where Were You When the Lights Went Out", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-20-where-were-you-when-/4000-109294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84620/", + "id": 84620, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197807/4000-84620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64832/", + "id": 64832, + "name": "Hammerhead!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-93-hammerhead/4000-64832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18655/", + "id": 18655, + "name": "Life, Liberty, and the Pursuit of Lunatik!", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-61-life-liberty-and-the-pursuit-of-l/4000-18655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18586/", + "id": 18586, + "name": "Whom Gods Destroy!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-70-whom-gods-destroy/4000-18586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18568/", + "id": 18568, + "name": "Flashback!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-181-flashback/4000-18568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494482/", + "id": 494482, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197806/4000-494482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217222/", + "id": 217222, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-39/4000-217222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217191/", + "id": 217191, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-9/4000-217191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180625/", + "id": 180625, + "name": "L'Uomo Ragno in Strip", + "site_detail_url": "https://comicvine.gamespot.com/eureka-197806-luomo-ragno-in-strip/4000-180625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167148/", + "id": 167148, + "name": "Grandi Storie del Ring: Benvenuti - Monzon", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-5-grandi-storie-del-ring-benvenuti-monzo/4000-167148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84619/", + "id": 84619, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197806/4000-84619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64831/", + "id": 64831, + "name": "They Call The Doctor...Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-92-they-call-the-doctoroctopus/4000-64831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18593/", + "id": 18593, + "name": "Again, The Enforcers!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-19-again-the-enforcers/4000-18593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18515/", + "id": 18515, + "name": "...Like a Diamond in the Sky!", + "site_detail_url": "https://comicvine.gamespot.com/thor-271-like-a-diamond-in-the-sky/4000-18515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18511/", + "id": 18511, + "name": "My Friend, My Foe?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-18-my-friend-my-foe/4000-18511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18503/", + "id": 18503, + "name": "Night of the Living God", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-69-night-of-the-living-god/4000-18503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18487/", + "id": 18487, + "name": "Who Was That Goblin I Saw You With?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-180-who-was-that-goblin-i-s/4000-18487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167144/", + "id": 167144, + "name": "Argentina 78: il Brasile", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-1-argentina-78-il-brasile/4000-167144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167143/", + "id": 167143, + "name": "Argentina 78: L'Italia", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-0-argentina-78-litalia/4000-167143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494481/", + "id": 494481, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197805/4000-494481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217190/", + "id": 217190, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-8/4000-217190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84618/", + "id": 84618, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197805/4000-84618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67519/", + "id": 67519, + "name": "They came From Outer Space", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-34-they-came-from-outer-space/4000-67519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64829/", + "id": 64829, + "name": "Spidey Cops Out!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-91-spidey-cops-out/4000-64829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18429/", + "id": 18429, + "name": "Whatever Happened To The Iceman?", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-17-whatever-happened-to/4000-18429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18422/", + "id": 18422, + "name": "The Measure Of A Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-68-the-measure-of-a-man/4000-18422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18402/", + "id": 18402, + "name": "The Goblin's Always Greener...!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-179-the-goblins-always-gree/4000-18402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494480/", + "id": 494480, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197804/4000-494480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217189/", + "id": 217189, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-7/4000-217189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172412/", + "id": 172412, + "name": "L'Uomo Ragno", + "site_detail_url": "https://comicvine.gamespot.com/superfumetti-9-luomo-ragno/4000-172412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84617/", + "id": 84617, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197804/4000-84617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67518/", + "id": 67518, + "name": "The Hulk's Carnival Crackup; Here Comes The Kangaroo; The Grand Garbage Can", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-33-the-hulks-carnival-crackup/4000-67518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64827/", + "id": 64827, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-90/4000-64827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18434/", + "id": 18434, + "name": "What If The World Knew That Daredevil Is Blind?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-8-what-if-the-world-knew-that-daredevil-is/4000-18434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18333/", + "id": 18333, + "name": "Tigra, Tigra, Burning Bright!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-67-tigra-tigra-burning-bright/4000-18333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18318/", + "id": 18318, + "name": "Green Grows the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-178-green-grows-the-goblin/4000-18318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494479/", + "id": 494479, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197803/4000-494479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837451/", + "id": 837451, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-1/4000-837451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239300/", + "id": 239300, + "name": "The Wrong Time", + "site_detail_url": "https://comicvine.gamespot.com/new-terrytoons-49-the-wrong-time/4000-239300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84616/", + "id": 84616, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197803/4000-84616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67517/", + "id": 67517, + "name": "And Along Came... The Spider-Woman; The Secret Mission; Side-by-Side with Captain Britain!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-32-and-along-came-the-spider-/4000-67517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64825/", + "id": 64825, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-89/4000-64825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18341/", + "id": 18341, + "name": "The Beetle and the Badge!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-16-the-beetle-and-the-b/4000-18341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18262/", + "id": 18262, + "name": "The Final Rage!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-15-the-final-rage/4000-18262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494478/", + "id": 494478, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197802/4000-494478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217187/", + "id": 217187, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-5/4000-217187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84615/", + "id": 84615, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197802/4000-84615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67516/", + "id": 67516, + "name": "Star Jaws", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-31-star-jaws/4000-67516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64823/", + "id": 64823, + "name": "Enter...Dr. Strange!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-88-enterdr-strange/4000-64823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18266/", + "id": 18266, + "name": "What if Someone Else besides Spider-Man had been Bitten by the Radioactive Spider?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-7-what-if-someone-else-besides-spider-man-/4000-18266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18256/", + "id": 18256, + "name": "Murder-World", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-66-murder-world/4000-18256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18239/", + "id": 18239, + "name": "First Blood!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-168-first-blood/4000-18239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18238/", + "id": 18238, + "name": "Goblin in the Middle", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-177-goblin-in-the-middle/4000-18238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538941/", + "id": 538941, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spidey-super-stories-1/4000-538941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18181/", + "id": 18181, + "name": "Killing Me Softly With His Hate!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-14-killing-me-softly-wi/4000-18181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18173/", + "id": 18173, + "name": "Introducing, Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-65-introducing-captain-britain/4000-18173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18155/", + "id": 18155, + "name": "He Who Laughs Last...!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-176-he-who-laughs-last/4000-18155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897948/", + "id": 897948, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/pow-biff-pops-1/4000-897948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-494477/", + "id": 494477, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/edderkoppen-197801/4000-494477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409449/", + "id": 409449, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/how-to-draw-comics-the-marvel-way-1/4000-409449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269968/", + "id": 269968, + "name": "-", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-superhero-battles-1--/4000-269968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217186/", + "id": 217186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-4/4000-217186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217168/", + "id": 217168, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/foom-22/4000-217168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-180626/", + "id": 180626, + "name": "SuperGulp!", + "site_detail_url": "https://comicvine.gamespot.com/eureka-197807-supergulp/4000-180626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167165/", + "id": 167165, + "name": "Superposter: Paolo Pulici", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-24-superposter-paolo-pulici/4000-167165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167164/", + "id": 167164, + "name": "Stenmark, Re degli Slalom", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-22-stenmark-re-degli-slalom/4000-167164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167163/", + "id": 167163, + "name": "Formula 1: Mario Andretti Campione del Mondo", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-21-formula-1-mario-andretti-campione-del/4000-167163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84614/", + "id": 84614, + "name": "Spindeln kommer tillbaka!", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-197801-spindeln-kommer-tillbaka/4000-84614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67515/", + "id": 67515, + "name": "Day of The Hunter; Big Tow; White House Rip-off", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-30-day-of-the-hunter-big-tow-/4000-67515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64821/", + "id": 64821, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-87/4000-64821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18112/", + "id": 18112, + "name": "The Astonishing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-18-the-astonishing-spider-/4000-18112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471629/", + "id": 471629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-joined-the-fantastic-four-1/4000-471629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18059/", + "id": 18059, + "name": "The Coming of Razorback!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-13-the-coming-of-razorb/4000-18059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18051/", + "id": 18051, + "name": "If Death Be My Destiny...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-64-if-death-be-my-destiny/4000-18051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18033/", + "id": 18033, + "name": "Big Apple Battleground!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-175-big-apple-battleground/4000-18033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267967/", + "id": 267967, + "name": "End Game!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-253-end-game/4000-267967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267968/", + "id": 267968, + "name": "How Shall I Kill You?", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-252-how-shall/4000-267968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328194/", + "id": 328194, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-254/4000-328194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67514/", + "id": 67514, + "name": "Blah Sunday; Spiders From Mars; The Magic of Mu", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-29-blah-sunday-spiders-from-m/4000-67514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64820/", + "id": 64820, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-86/4000-64820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-18063/", + "id": 18063, + "name": "What if the Fantastic Four had different powers?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-6-what-if-the-fantastic-four-had-different/4000-18063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267969/", + "id": 267969, + "name": "Murderworld!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-251-murderwor/4000-267969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17979/", + "id": 17979, + "name": "Brother Power, Sister Sun!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-12-brother-power-sister/4000-17979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17974/", + "id": 17974, + "name": "The Fury before the storm!", + "site_detail_url": "https://comicvine.gamespot.com/nova-15-the-fury-before-the-storm/4000-17974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17970/", + "id": 17970, + "name": "Night of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-63-night-of-the-dragon/4000-17970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17952/", + "id": 17952, + "name": "The Hitman's Back in Town!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-174-the-hitmans-back-in-tow/4000-17952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267970/", + "id": 267970, + "name": "Terror in the Tunnel of Death!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-250-terror-in/4000-267970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267971/", + "id": 267971, + "name": "Havoc on the High Iron!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-249-havoc-on-/4000-267971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267972/", + "id": 267972, + "name": "The Final Deadly Showdown!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-248-the-final/4000-267972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249082/", + "id": 249082, + "name": "The Devil and the Deep!!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-247-the-devil/4000-249082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217184/", + "id": 217184, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-2/4000-217184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67513/", + "id": 67513, + "name": "The Great Spidey Trial", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-28-the-great-spidey-trial/4000-67513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64818/", + "id": 64818, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-85/4000-64818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17889/", + "id": 17889, + "name": "A Life Too Far!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-11-a-life-too-far/4000-17889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17880/", + "id": 17880, + "name": "All This, And The QE2!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-62-all-this-and-the-qe2/4000-17880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17862/", + "id": 17862, + "name": "If You Can't Stand The Heat...!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-173-if-you-cant-stand-the-h/4000-17862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249081/", + "id": 249081, + "name": "Tunnels of Terror!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-246-tunnels-o/4000-249081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249080/", + "id": 249080, + "name": "While London Gapes in Horror!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-245-while-lon/4000-249080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248994/", + "id": 248994, + "name": "Dogfight with Death!!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-244-dogfight-/4000-248994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248991/", + "id": 248991, + "name": "When Slaymaster Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-243-when-slay/4000-248991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217183/", + "id": 217183, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz-1/4000-217183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67512/", + "id": 67512, + "name": "Peril of The Plantman; Spidey Meets Thor", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-27-peril-of-the-plantman-spid/4000-67512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64816/", + "id": 64816, + "name": "The Spider Slayer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-84-the-spider-slayer/4000-64816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17866/", + "id": 17866, + "name": "Defender of The Realm!", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-52-defender-of-the-realm/4000-17866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17795/", + "id": 17795, + "name": "Showdown!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-10-showdown/4000-17795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17787/", + "id": 17787, + "name": "Not All Thy Powers Can Save Thee!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-61-not-all-thy-powers-can-save-thee/4000-17787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17767/", + "id": 17767, + "name": "The Fiend From the Fire!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-172-the-fiend-from-the-fire/4000-17767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-359497/", + "id": 359497, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/complete-fantastic-four-1/4000-359497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248989/", + "id": 248989, + "name": "Hell Island Climax!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-242-hell-isla/4000-248989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248988/", + "id": 248988, + "name": "…A Madman’s Whim!!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-241-a-madmans/4000-248988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248986/", + "id": 248986, + "name": "To Shrink in Fear!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-240-to-shrink/4000-248986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248985/", + "id": 248985, + "name": "Five Tickets to Terror!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-239-five-tick/4000-248985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67511/", + "id": 67511, + "name": "When Monsters Walked The earth", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-26-when-monsters-walked-the-e/4000-67511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17786/", + "id": 17786, + "name": "Beauty and the Brute", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-83-beauty-and-the-brute/4000-17786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17779/", + "id": 17779, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-human-fly-1/4000-17779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17010/", + "id": 17010, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-super-special-1/4000-17010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248983/", + "id": 248983, + "name": "Doom at Darkmoor!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-238-doom-at-d/4000-248983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217212/", + "id": 217212, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-28/4000-217212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17707/", + "id": 17707, + "name": "What if the Invaders had stayed together after World War Two?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-4-what-if-the-invaders-had-stayed-together/4000-17707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17700/", + "id": 17700, + "name": "... LIKE A TIGER IN THE NIGHT!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-9-like-a-tiger-in-the-n/4000-17700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17693/", + "id": 17693, + "name": "A Matter of Love and Death!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-60-a-matter-of-love-and-death/4000-17693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17672/", + "id": 17672, + "name": "Photon is Another Name For...?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-171-photon-is-another-name-/4000-17672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17035/", + "id": 17035, + "name": "Spawn of the Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-11-spawn-of-the-spid/4000-17035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248982/", + "id": 248982, + "name": "When Terror Reigns!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-237-when-terr/4000-248982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248981/", + "id": 248981, + "name": "Wrath of the Black Baron!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-236-wrath-of-/4000-248981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248979/", + "id": 248979, + "name": "Nightmare Castle!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-235-nightmare/4000-248979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248977/", + "id": 248977, + "name": "When the Star-Creature Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-234-when-the-/4000-248977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67510/", + "id": 67510, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-25/4000-67510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64809/", + "id": 64809, + "name": "Beware the Power of... Gog!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-82-beware-the-power-of-gog/4000-64809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17696/", + "id": 17696, + "name": "Who is the man called Photon?", + "site_detail_url": "https://comicvine.gamespot.com/nova-12-who-is-the-man-called-photon/4000-17696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17615/", + "id": 17615, + "name": "...And Only One Shall Survive!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-8-and-only-one-shall-su/4000-17615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17605/", + "id": 17605, + "name": "Some Say Spidey Will Die By Fire...Some Say By Ice!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-59-some-say-spidey-will-die-by-fire/4000-17605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17588/", + "id": 17588, + "name": "Madness is All in the Mind!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-170-madness-is-all-in-the-m/4000-17588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248975/", + "id": 248975, + "name": "The Monster from the Murk?!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-233-the-monst/4000-248975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248973/", + "id": 248973, + "name": "Death Duel!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-232-death-due/4000-248973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248971/", + "id": 248971, + "name": "Sea Fury!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-captain-britain-231-sea-fury/4000-248971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328307/", + "id": 328307, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-230/4000-328307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67509/", + "id": 67509, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-24/4000-67509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64807/", + "id": 64807, + "name": "Walk the Savage Land!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-81-walk-the-savage-land/4000-64807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17520/", + "id": 17520, + "name": "Cry Mayhem..Cry Morbius!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-7-cry-mayhemcry-morbius/4000-17520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17512/", + "id": 17512, + "name": "Panic on Pier One!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-58-panic-on-pier-one/4000-17512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17491/", + "id": 17491, + "name": "Confrontation", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-169-confrontation/4000-17491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328306/", + "id": 328306, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-229/4000-328306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392712/", + "id": 392712, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/magazineland-usa-1/4000-392712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217163/", + "id": 217163, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/foom-18/4000-217163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67508/", + "id": 67508, + "name": "The Amazing Shrinking Spidey", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-23-the-amazing-shrinking-spid/4000-67508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64805/", + "id": 64805, + "name": "A Day in the Life of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-80-a-day-in-the-life-of-spider-man/4000-64805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17446/", + "id": 17446, + "name": "Escape into Oblivion!", + "site_detail_url": "https://comicvine.gamespot.com/thor-259-escape-into-oblivion/4000-17446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17445/", + "id": 17445, + "name": "The Power to Purge!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-6-the-power-to-purge/4000-17445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17436/", + "id": 17436, + "name": "When Slays the Silver Samurai!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-57-when-slays-the-silver-samurai/4000-17436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17421/", + "id": 17421, + "name": "Murder on the Wind!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-168-murder-on-the-wind/4000-17421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64803/", + "id": 64803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-79/4000-64803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17437/", + "id": 17437, + "name": "Day of the Demolisher!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-27-day-of-the-demolisher/4000-17437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17015/", + "id": 17015, + "name": "Death Watch!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-annual-2-death-watch/4000-17015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17366/", + "id": 17366, + "name": "Spider-Kill!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-5-spider-kill/4000-17366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17357/", + "id": 17357, + "name": "Double Danger At The Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-56-double-danger-at-the-daily-bugle/4000-17357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17341/", + "id": 17341, + "name": "Who Remembers Scorpio?", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-46-who-remembers-scorpio/4000-17341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17335/", + "id": 17335, + "name": "Stalked By the Spider-Slayer!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-167-stalked-by-the-spider-s/4000-17335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96017/", + "id": 96017, + "name": "Shrink Pink", + "site_detail_url": "https://comicvine.gamespot.com/pink-panther-42-shrink-pink/4000-96017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67507/", + "id": 67507, + "name": "Gone With The Windbag!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-22-gone-with-the-windbag/4000-67507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64801/", + "id": 64801, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-78/4000-64801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17030/", + "id": 17030, + "name": "The Final Threat", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-annual-7-the-final-threat/4000-17030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17283/", + "id": 17283, + "name": "The Vulture Is A Bird Of Prey!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-4-the-vulture-is-a-bird/4000-17283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17274/", + "id": 17274, + "name": "Spider, Spider, On The Moon!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-55-spider-spider-on-the-moon/4000-17274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17258/", + "id": 17258, + "name": "War of the Reptile-Men!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-166-war-of-the-reptile-men/4000-17258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135879/", + "id": 135879, + "name": "The Fall of the Fourth Reich?", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-24-the-fall-of-the-fourth-reich/4000-135879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135864/", + "id": 135864, + "name": "Mayhem at Midnight", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-22-mayhem-at-midnight/4000-135864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64799/", + "id": 64799, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-77/4000-64799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17290/", + "id": 17290, + "name": "Swan Song of the Living Dead Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-10-swan-song-of-the-living-dead-du/4000-17290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17266/", + "id": 17266, + "name": "\"Hyde and Go Seek\", Sayeth the Cobra", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-143-hyde-and-go-seek-sayeth-the-cobra/4000-17266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17204/", + "id": 17204, + "name": "...And There Was Lightmaster", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-3-and-there-was-lightma/4000-17204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17182/", + "id": 17182, + "name": "A Robinson Crusoe In The Negative Zone!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-179-a-robinson-crusoe-in-the-negati/4000-17182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67506/", + "id": 67506, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-21/4000-67506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64797/", + "id": 64797, + "name": "Trap For A Terrorist!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-76-trap-for-a-terrorist/4000-64797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17208/", + "id": 17208, + "name": "What if Spider-Man joined the Fantastic Four?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-1-what-if-spider-man-joined-the-fantastic-/4000-17208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17195/", + "id": 17195, + "name": "Spider In The Middle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-54-spider-in-the-middle/4000-17195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17171/", + "id": 17171, + "name": "Stegron Stalks The City!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-165-stegron-stalks-the-city/4000-17171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17119/", + "id": 17119, + "name": "Kraven is the Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-2-kraven-is-the-hunter/4000-17119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17108/", + "id": 17108, + "name": "Nightmare In New Mexico", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-53-nightmare-in-new-mexico/4000-17108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17089/", + "id": 17089, + "name": "Deadline!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-164-deadline/4000-17089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415186/", + "id": 415186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superhero-women-1/4000-415186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223710/", + "id": 223710, + "name": "The Mighty Marvel Superheroes’ Cookbook", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-presents-the-mighty-marvel-superheroes-co/4000-223710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-217206/", + "id": 217206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-22/4000-217206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167153/", + "id": 167153, + "name": "Sara Simeoni sempre più in Alto", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-10-sara-simeoni-sempre-piu-in-alto/4000-167153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167152/", + "id": 167152, + "name": "Il Campionato del Mondo in Sintesi", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-9-il-campionato-del-mondo-in-sintesi/4000-167152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64795/", + "id": 64795, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-75/4000-64795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17111/", + "id": 17111, + "name": "This Woman, This Warrior!", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-1-this-woman-this-warrior/4000-17111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-17037/", + "id": 17037, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-14/4000-17037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620896/", + "id": 620896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-en-spinneman-1/4000-620896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-512195/", + "id": 512195, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supermann-og-edderkoppen-1/4000-512195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-452197/", + "id": 452197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/newton-four-in-one-1/4000-452197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16976/", + "id": 16976, + "name": "Twice Stings the Tarantula!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-1-twice-stings-the-tara/4000-16976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16968/", + "id": 16968, + "name": "Danger: Demon On A Rampage", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-52-danger-demon-on-a-rampage/4000-16968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16943/", + "id": 16943, + "name": "All the Kingpin's Men!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-163-all-the-kingpins-men/4000-16943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15915/", + "id": 15915, + "name": "The Lords of Light and Darkness!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual-1-the-lords-of-light-and-dar/4000-15915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328275/", + "id": 328275, + "name": "Return of he Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-202-return-of-he-s/4000-328275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328274/", + "id": 328274, + "name": "The Death of Peter Parker!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-201-the-death-of-p/4000-328274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328272/", + "id": 328272, + "name": "Vengeance of the Vulture!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-199-vengeance-of-t/4000-328272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67505/", + "id": 67505, + "name": "Day of The Ray!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-20-day-of-the-ray/4000-67505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64793/", + "id": 64793, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-74/4000-64793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16977/", + "id": 16977, + "name": "Pawns of Attuma!", + "site_detail_url": "https://comicvine.gamespot.com/super-villain-team-up-9-pawns-of-attuma/4000-16977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16884/", + "id": 16884, + "name": "Through the Rat Hole -- Into the Cat's Lair!", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown-5-through-the-rat-hole-into-the-/4000-16884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16880/", + "id": 16880, + "name": "The Trial of the Wraith", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-51-the-trial-of-the-wraith/4000-16880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16868/", + "id": 16868, + "name": "Threads of Evil... Web of Hate", + "site_detail_url": "https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-30-threads-of-evil-web/4000-16868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16860/", + "id": 16860, + "name": "Let The Punisher Fit The Crime!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-162-let-the-punisher-fit-th/4000-16860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15930/", + "id": 15930, + "name": "Step Into My Parlor...said the Spider to the Fly", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-10-step-into-my-parl/4000-15930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127491/", + "id": 127491, + "name": "Hour of the Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-4-hour-of-the-hurricane/4000-127491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64791/", + "id": 64791, + "name": "When Iceman Attacks!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-73-when-iceman-attacks/4000-64791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16788/", + "id": 16788, + "name": "The Mystery of the Wraith!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-50-the-mystery-of-the-wraith/4000-16788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16760/", + "id": 16760, + "name": "...And The Nightcrawler Came Prowling, Prowling", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-161-and-the-nightcrawler-ca/4000-16760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216977/", + "id": 216977, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine-20/4000-216977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67504/", + "id": 67504, + "name": "Deadly Is The Doctor Called Doom", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-19-deadly-is-the-doctor-calle/4000-67504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64789/", + "id": 64789, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-72/4000-64789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16804/", + "id": 16804, + "name": "Mike Murdock Must Die!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventure-6-mike-murdock-must-die/4000-16804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16792/", + "id": 16792, + "name": "Chemistro!", + "site_detail_url": "https://comicvine.gamespot.com/power-man-36-chemistro/4000-16792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16779/", + "id": 16779, + "name": "Like Tigers in the Night", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-8-like-tigers-in-the-night/4000-16779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16690/", + "id": 16690, + "name": "Madness is all in the Mind!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-49-madness-is-all-in-the-mind/4000-16690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16673/", + "id": 16673, + "name": "At Last: The Decision!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-151-at-last-the-decision/4000-16673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16672/", + "id": 16672, + "name": "My Killer, The Car!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-160-my-killer-the-car/4000-16672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550129/", + "id": 550129, + "name": "Spider-Man Zaps Mr. Zodiac", + "site_detail_url": "https://comicvine.gamespot.com/western-publishings-big-little-books-5779-2-spider/4000-550129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328377/", + "id": 328377, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-186/4000-328377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64787/", + "id": 64787, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-71/4000-64787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16607/", + "id": 16607, + "name": "A Fine Night for Dying", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-48-a-fine-night-for-dying/4000-16607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16583/", + "id": 16583, + "name": "Arm-in-Arm-in-Arm-in-Arm-in-Arm-in-Arm With Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-159-arm-in-arm-in-arm-in-ar/4000-16583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328372/", + "id": 328372, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-182/4000-328372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67503/", + "id": 67503, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-18/4000-67503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64785/", + "id": 64785, + "name": "Doc Ock Lives", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-70-doc-ock-lives/4000-64785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16515/", + "id": 16515, + "name": "This City -- Afire!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-17-this-city-afire/4000-16515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16514/", + "id": 16514, + "name": "I Have To Fight The Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-47-i-have-to-fight-the-basilisk/4000-16514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16494/", + "id": 16494, + "name": "Hammerhead is Out!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-158-hammerhead-is-out/4000-16494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67502/", + "id": 67502, + "name": "A Bicentennial Adventure", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-17-a-bicentennial-adventure/4000-67502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64783/", + "id": 64783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-69/4000-64783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16500/", + "id": 16500, + "name": "What is Happening?", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-135-what-is-happening/4000-16500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16427/", + "id": 16427, + "name": "Am I Now Or Have I Ever Been?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-46-am-i-now-or-have-i-ever-been/4000-16427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16416/", + "id": 16416, + "name": "The Salvation Run!", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-18-the-salvation-run/4000-16416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16405/", + "id": 16405, + "name": "The Ghost That Haunted Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-157-the-ghost-that-haunted-/4000-16405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64781/", + "id": 64781, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-68/4000-64781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16347/", + "id": 16347, + "name": "Future-Shock!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-45-future-shock/4000-16347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16330/", + "id": 16330, + "name": "On A Clear Day You Can See...The Mirage!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-156-on-a-clear-day-you-can-/4000-16330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64779/", + "id": 64779, + "name": "Beware the Black Widow!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-67-beware-the-black-widow/4000-64779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16267/", + "id": 16267, + "name": "Death In The Year Before Yesterday", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-44-death-in-the-year-before-yesterd/4000-16267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16243/", + "id": 16243, + "name": "Whodunit!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-155-whodunit/4000-16243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67501/", + "id": 67501, + "name": "Spider-Man Meets Kid Colt", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-16-spider-man-meets-kid-colt/4000-67501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64777/", + "id": 64777, + "name": "The Secret of the Schemer!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-66-the-secret-of-the-schemer/4000-64777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16173/", + "id": 16173, + "name": "A Past Gone Mad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-43-a-past-gone-mad/4000-16173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16164/", + "id": 16164, + "name": "To Storm the Gates of Hell", + "site_detail_url": "https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-22-to-storm-the-gates-/4000-16164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16156/", + "id": 16156, + "name": "The Sandman Always Strikes Twice", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-154-the-sandman-always-stri/4000-16156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64775/", + "id": 64775, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-65/4000-64775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16090/", + "id": 16090, + "name": "Visions of Hate!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-42-visions-of-hate/4000-16090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16075/", + "id": 16075, + "name": "And When I Died", + "site_detail_url": "https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-21-and-when-i-died/4000-16075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16069/", + "id": 16069, + "name": "The Longest Hundred Yards!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-153-the-longest-hundred-yar/4000-16069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328566/", + "id": 328566, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-157/4000-328566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328565/", + "id": 328565, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-156/4000-328565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328338/", + "id": 328338, + "name": "The Mark of the Living Vampire!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-158-the-mar/4000-328338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105398/", + "id": 105398, + "name": "Claws!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-144-claws/4000-105398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-67500/", + "id": 67500, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-15/4000-67500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328564/", + "id": 328564, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-155/4000-328564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-190789/", + "id": 190789, + "name": "The Galactic Vampires!; Heart of the Gem!; While Egghead Watches!", + "site_detail_url": "https://comicvine.gamespot.com/the-super-heroes-48-the-galactic-vampires-heart-of/4000-190789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16023/", + "id": 16023, + "name": "Howard the Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-1-howard-the-barbarian/4000-16023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-16011/", + "id": 16011, + "name": "A Witch In Time!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-41-a-witch-in-time/4000-16011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15991/", + "id": 15991, + "name": "Shattered By the Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-152-shattered-by-the-shocke/4000-15991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327070/", + "id": 327070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-super-heroes-47/4000-327070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411725/", + "id": 411725, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-comics-strength-and-fitness-book-1/4000-411725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328561/", + "id": 328561, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-152/4000-328561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355567/", + "id": 355567, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/durfal-1/4000-355567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-279220/", + "id": 279220, + "name": "Pull of the Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-vs-the-prodigy-1-pull-of-th/4000-279220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269299/", + "id": 269299, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-comics-index-1-the-amazing-spider-man/4000-269299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167150/", + "id": 167150, + "name": "Connors Campione di Potenza", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-7-connors-campione-di-potenza/4000-167150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142469/", + "id": 142469, + "name": "Bring On The Bad Guys", + "site_detail_url": "https://comicvine.gamespot.com/bring-on-the-bad-guys-origins-of-the-marvel-comics/4000-142469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-112157/", + "id": 112157, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superman-vs-the-amazing-spider-man-1/4000-112157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64773/", + "id": 64773, + "name": "The Schemer!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-64-the-schemer/4000-64773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15936/", + "id": 15936, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-13/4000-15936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15935/", + "id": 15935, + "name": "The Duck and the Defenders", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-12-the-duck-and-the-defend/4000-15935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15928/", + "id": 15928, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-9/4000-15928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417916/", + "id": 417916, + "name": "T'was The Night Before Christmas; Spidey Goes Mad!; Jingle Bombs!; Heaven Is A Very Small Place!; Eternity! Eternity!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-8-twas-the-night-before-ch/4000-417916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15874/", + "id": 15874, + "name": "Murder's Better the Second Time Around!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-40-murders-better-the-second-time-a/4000-15874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15863/", + "id": 15863, + "name": "The End of a Vampire!", + "site_detail_url": "https://comicvine.gamespot.com/adventure-into-fear-31-the-end-of-a-vampire/4000-15863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15855/", + "id": 15855, + "name": "Skirmish Beneath the Streets!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-151-skirmish-beneath-the-st/4000-15855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328559/", + "id": 328559, + "name": "Squash! Goes the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-150-squash-goes-the-spide/4000-328559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327066/", + "id": 327066, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-super-heroes-40/4000-327066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15882/", + "id": 15882, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-14/4000-15882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15791/", + "id": 15791, + "name": "Any Number Can Slay!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-39-any-number-can-slay/4000-15791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15772/", + "id": 15772, + "name": "Spider-Man...or Spider-Clone?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-150-spider-manor-spider-clo/4000-15772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328553/", + "id": 328553, + "name": "The Final Hunt", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-146-the-final-hunt/4000-328553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691759/", + "id": 691759, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-giant-100-page-special-1/4000-691759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-101437/", + "id": 101437, + "name": "Let There Be Chaos!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spectacular-19-let-there-be-chaos/4000-101437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64771/", + "id": 64771, + "name": "And Then Came Electro!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-63-and-then-came-electro/4000-64771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15694/", + "id": 15694, + "name": "Night of the Griffin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-38-night-of-the-griffin/4000-15694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15689/", + "id": 15689, + "name": "Pop Goes the Cosmos!", + "site_detail_url": "https://comicvine.gamespot.com/man-thing-22-pop-goes-the-cosmos/4000-15689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15668/", + "id": 15668, + "name": "Even If I Live, I Die", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-149-even-if-i-live-i-die/4000-15668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328547/", + "id": 328547, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-140/4000-328547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328546/", + "id": 328546, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-139/4000-328546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64769/", + "id": 64769, + "name": "The Coming Of The Kangaroo!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-62-the-coming-of-the-kangaroo/4000-64769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15909/", + "id": 15909, + "name": "The Web and The Flame", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-6-the-web-and-the-flame/4000-15909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15702/", + "id": 15702, + "name": "Spidey and the Sandman", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-13-spidey-and-the-sandman/4000-15702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15593/", + "id": 15593, + "name": "Snow Death!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-37-snow-death/4000-15593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15572/", + "id": 15572, + "name": "Jackal, Jackal...Who's Got the Jackal?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-148-jackal-jackalwhos-got-t/4000-15572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129951/", + "id": 129951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-177/4000-129951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15600/", + "id": 15600, + "name": "The Law of the Claw", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-12-the-law-of-the-claw/4000-15600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15576/", + "id": 15576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/creatures-on-the-loose-37/4000-15576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15491/", + "id": 15491, + "name": "Once Upon a Time, In a Castle...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-36-once-upon-a-time-in-a-castle/4000-15491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15488/", + "id": 15488, + "name": "The Nightmare Box", + "site_detail_url": "https://comicvine.gamespot.com/man-thing-20-the-nightmare-box/4000-15488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15469/", + "id": 15469, + "name": "The Tarantula is a Very Deadly Beast!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-147-the-tarantula-is-a-very/4000-15469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64765/", + "id": 64765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-60/4000-64765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15501/", + "id": 15501, + "name": "Slayers From the Sea!", + "site_detail_url": "https://comicvine.gamespot.com/super-villain-team-up-1-slayers-from-the-sea/4000-15501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15499/", + "id": 15499, + "name": "Spider-Woman?", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-11-spider-woman/4000-15499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15364/", + "id": 15364, + "name": "Scorpion...Where is Thy Sting?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-146-scorpionwhere-is-thy-st/4000-15364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15395/", + "id": 15395, + "name": "Green Grows the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-10-green-grows-the-goblin/4000-15395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15378/", + "id": 15378, + "name": "Beware the Path of the Monster!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-5-beware-the-path-of-the-mon/4000-15378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15283/", + "id": 15283, + "name": "Beware the Death Crusade!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-34-beware-the-death-crusade/4000-15283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15259/", + "id": 15259, + "name": "Gwen Stacy is Alive...and, Well...?!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-145-gwen-stacy-is-aliveand-/4000-15259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328530/", + "id": 328530, + "name": "Target: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-123-target-spider-man/4000-328530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328529/", + "id": 328529, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-122/4000-328529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328528/", + "id": 328528, + "name": "When Iceman Attacks!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-121-when-iceman-attacks/4000-328528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64763/", + "id": 64763, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-59/4000-64763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15290/", + "id": 15290, + "name": "The Day of Doom", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-9-the-day-of-doom/4000-15290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15275/", + "id": 15275, + "name": "To Bestride the World!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-super-villain-team-up-2-to-bestride-the/4000-15275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328527/", + "id": 328527, + "name": "To Smash the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-120-to-smash-the-spider/4000-328527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15191/", + "id": 15191, + "name": "Anybody Here Know a Guy Named Meteor Man?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-33-anybody-here-know-a-guy-named-me/4000-15191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15170/", + "id": 15170, + "name": "The Delusion Conspiracy!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-144-the-delusion-conspiracy/4000-15170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328526/", + "id": 328526, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-119/4000-328526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251250/", + "id": 251250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-88/4000-251250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223046/", + "id": 223046, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-138/4000-223046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328525/", + "id": 328525, + "name": "Spider-Man the Killer!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-118-spider-man-the-killer/4000-328525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223044/", + "id": 223044, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-137/4000-223044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328524/", + "id": 328524, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-117/4000-328524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251248/", + "id": 251248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-86/4000-251248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328523/", + "id": 328523, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-116/4000-328523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15197/", + "id": 15197, + "name": "Power of the People", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-8-power-of-the-people/4000-15197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15182/", + "id": 15182, + "name": "Never Bug a Giant!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-marvel-triple-action-1-never-bug-a-gian/4000-15182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111360/", + "id": 111360, + "name": "...And the Wind Cries: Cyclone!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-143-and-the-wind-cries-cycl/4000-111360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328522/", + "id": 328522, + "name": "Terror at 10,000 Feet!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-115-terror-at-10000-feet/4000-328522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328518/", + "id": 328518, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-112/4000-328518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144086/", + "id": 144086, + "name": "The Vanisher Shows Up", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-7-the-vanisher-shows-up/4000-144086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121299/", + "id": 121299, + "name": "To Sow the Seeds of Death's Day!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-4-to-sow-the-seeds-of-deaths/4000-121299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110313/", + "id": 110313, + "name": "In the Blaze of Battle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-58-in-the-blaze-of-battle/4000-110313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113536/", + "id": 113536, + "name": "For A Few Fists More!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-31-for-a-few-fists-more/4000-113536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110162/", + "id": 110162, + "name": "Midgard Aflame!", + "site_detail_url": "https://comicvine.gamespot.com/thor-233-midgard-aflame/4000-110162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15137/", + "id": 15137, + "name": "Dead Man's Bluff", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-142-dead-mans-bluff/4000-15137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328517/", + "id": 328517, + "name": "Unmasked at Last!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-111-unmasked-at-last/4000-328517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328516/", + "id": 328516, + "name": "The Black Widow Wins!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-110-the-black-widow-wins/4000-328516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328515/", + "id": 328515, + "name": "Beware the Black Widow!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-109-beware-the-black-wido/4000-328515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328514/", + "id": 328514, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-108/4000-328514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144085/", + "id": 144085, + "name": "Webbing In a Winter Wonderland", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-6-webbing-in-a-winter-wonderl/4000-144085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328511/", + "id": 328511, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-105/4000-328511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328510/", + "id": 328510, + "name": "The Coming of the Schemer!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-104-the-coming-of-the-sch/4000-328510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15075/", + "id": 15075, + "name": "The Wings and the Web-Slinger", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-5-the-wings-and-the-web-sling/4000-15075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15067/", + "id": 15067, + "name": "All that Glitters is Not Gold!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-30-all-that-glitters-is-not-gold/4000-15067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15066/", + "id": 15066, + "name": "The Lizard Lives", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-57-the-lizard-lives/4000-15066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-15046/", + "id": 15046, + "name": "The Man's Name Appears to Be Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-141-the-mans-name-appears-t/4000-15046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265145/", + "id": 265145, + "name": "The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-special-edition-featuring-the-spectacular-s/4000-265145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167147/", + "id": 167147, + "name": "Motociclismo: Baker contro Roberts", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-4-motociclismo-baker-contro-roberts/4000-167147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14988/", + "id": 14988, + "name": "Spidey: Beware of the Hair", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-4-spidey-beware-of-the-hair/4000-14988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14966/", + "id": 14966, + "name": "Spider-Man & Doc Savage - The Yesterday Connection (Part 1 / Part 2 : The Secret Out Of Time / Part 3 : Tomorrow Is Too Late / Part 4 : Other People, Other Times / Part 5 : The Future Is Now", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-3-spider-man-doc-savage-the-/4000-14966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14957/", + "id": 14957, + "name": "The Name of the Game is Death!", + "site_detail_url": "https://comicvine.gamespot.com/creatures-on-the-loose-33-the-name-of-the-game-is-/4000-14957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14952/", + "id": 14952, + "name": "...And One Will Fall!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-140-and-one-will-fall/4000-14952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14857/", + "id": 14857, + "name": "The Big Top Bust?", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-3-the-big-top-bust/4000-14857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14848/", + "id": 14848, + "name": "The City Stealers!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-28-the-city-stealers/4000-14848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14847/", + "id": 14847, + "name": "Death Without Warning", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-56-death-without-warning/4000-14847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14827/", + "id": 14827, + "name": "Day of the Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-139-day-of-the-grizzly/4000-14827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14770/", + "id": 14770, + "name": "A Friend in Need!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-27-a-friend-in-need/4000-14770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14775/", + "id": 14775, + "name": "In the Hands of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-2-in-the-hands-of-the-hunter/4000-14775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14769/", + "id": 14769, + "name": "If This Be Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-55-if-this-be-bedlam/4000-14769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14749/", + "id": 14749, + "name": "Moon Of The Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/creatures-on-the-loose-32-moon-of-the-hunter/4000-14749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14745/", + "id": 14745, + "name": "Madness Means the Mindworm", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-138-madness-means-the-mindw/4000-14745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14665/", + "id": 14665, + "name": "Masterstroke!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-2-masterstroke/4000-14665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14686/", + "id": 14686, + "name": "Spider-Man Is Born!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories-1-spider-man-is-born/4000-14686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14675/", + "id": 14675, + "name": "The Web Closes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-54-the-web-closes/4000-14675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14660/", + "id": 14660, + "name": "...Where Bound'ries Decay", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-4-where-boundries-decay/4000-14660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14652/", + "id": 14652, + "name": "Death-Trap Times Three!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-137-death-trap-times-three/4000-14652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14595/", + "id": 14595, + "name": "Three Into Two Won't Go!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-25-three-into-two-wont-go/4000-14595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14594/", + "id": 14594, + "name": "Spider-Man: Wanted", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-53-spider-man-wanted/4000-14594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14573/", + "id": 14573, + "name": "The Beast Within!", + "site_detail_url": "https://comicvine.gamespot.com/creatures-on-the-loose-31-the-beast-within/4000-14573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14569/", + "id": 14569, + "name": "The Green Goblin Lives Again", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-136-the-green-goblin-lives-/4000-14569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251185/", + "id": 251185, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-49/4000-251185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251184/", + "id": 251184, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-48/4000-251184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251183/", + "id": 251183, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-47/4000-251183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222707/", + "id": 222707, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-96/4000-222707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14500/", + "id": 14500, + "name": "Moondog Is Another Name For Murder!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-24-moondog-is-another-name-for-murd/4000-14500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14499/", + "id": 14499, + "name": "Mission: Crush the Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-52-mission-crush-the-kingpin/4000-14499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14486/", + "id": 14486, + "name": "A Separate Reality", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-2-a-separate-reality/4000-14486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14480/", + "id": 14480, + "name": "Shoot-Out in Central Park", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-135-shoot-out-in-central-pa/4000-14480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14421/", + "id": 14421, + "name": "Ship of Fiends!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man-1-ship-of-fiends/4000-14421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222706/", + "id": 222706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-95/4000-222706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222705/", + "id": 222705, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-94/4000-222705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14432/", + "id": 14432, + "name": "The Night of the Frozen Inferno", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-23-the-night-of-the-frozen-inferno/4000-14432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14408/", + "id": 14408, + "name": "Danger is a Man Called Tarantula!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-134-danger-is-a-man-called-/4000-14408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14347/", + "id": 14347, + "name": "The Messiah Machine!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-22-the-messiah-machine/4000-14347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179277/", + "id": 179277, + "name": "Man-Wolf At Midnight!", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-super-heroes-1-man-wolf-at-midnight/4000-179277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14346/", + "id": 14346, + "name": "Crisis on Campus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-51-crisis-on-campus/4000-14346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14328/", + "id": 14328, + "name": "The Molten Man Breaks Out", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-133-the-molten-man-breaks-o/4000-14328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14275/", + "id": 14275, + "name": "The Spider and the Sorcerer!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-21-the-spider-and-the-sorcerer/4000-14275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14255/", + "id": 14255, + "name": "The Master Plan of the Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-132-the-master-plan-of-the-/4000-14255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14203/", + "id": 14203, + "name": "Dinosaurs On Broadway!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-20-dinosaurs-on-broadway/4000-14203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14202/", + "id": 14202, + "name": "To Squash a Spider!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-50-to-squash-a-spider/4000-14202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14188/", + "id": 14188, + "name": "My Uncle...My Enemy?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-131-my-unclemy-enemy/4000-14188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14140/", + "id": 14140, + "name": "Two Worlds ... and Dark Destiny", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-69-two-worlds-and-dark-destiny/4000-14140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14135/", + "id": 14135, + "name": "The Coming of... Stegron the Dinosaur Man!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-19-the-coming-of-stegron-the-dinosa/4000-14135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14117/", + "id": 14117, + "name": "Betrayed", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-130-betrayed/4000-14117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328447/", + "id": 328447, + "name": "The Spider and the Savage!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-53-the-spider-and-the-sav/4000-328447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105443/", + "id": 105443, + "name": "The Punisher Strikes Twice", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-129-the-punisher-strikes-tw/4000-105443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14065/", + "id": 14065, + "name": "The Madness of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-49-the-madness-of-mysterio/4000-14065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14057/", + "id": 14057, + "name": "Morbius the Living Vampire!", + "site_detail_url": "https://comicvine.gamespot.com/adventure-into-fear-20-morbius-the-living-vampire/4000-14057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-14003/", + "id": 14003, + "name": "On the Brink of Madness!", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-68-on-the-brink-of-madness/4000-14003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13999/", + "id": 13999, + "name": "Chaos at the Earth's Core!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-17-chaos-at-the-earths-core/4000-13999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-384298/", + "id": 384298, + "name": "The Mark of the Man-Wolf!", + "site_detail_url": "https://comicvine.gamespot.com/book-and-record-set-pr-10-the-mark-of-the-man-wolf/4000-384298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269971/", + "id": 269971, + "name": "Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics-by-stan-lee-1-origins-of-/4000-269971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-148428/", + "id": 148428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/aurora-comic-scenes-2/4000-148428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142591/", + "id": 142591, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-special-giant-superhero-holiday-gr/4000-142591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13978/", + "id": 13978, + "name": "The Vulture Hangs High", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-128-the-vulture-hangs-high/4000-13978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13920/", + "id": 13920, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition-1/4000-13920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13915/", + "id": 13915, + "name": "To The Death!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-118-to-the-death/4000-13915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13891/", + "id": 13891, + "name": "Beware The Basilisk My Son!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-16-beware-the-basilisk-my-son/4000-13891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13890/", + "id": 13890, + "name": "The Impossible Escape", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-48-the-impossible-escape/4000-13890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13875/", + "id": 13875, + "name": "The Dark Wings of Death", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-127-the-dark-wings-of-death/4000-13875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13805/", + "id": 13805, + "name": "If An Eye Offend Thee...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-15-if-an-eye-offend-thee/4000-13805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251104/", + "id": 251104, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-8/4000-251104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13804/", + "id": 13804, + "name": "The Vulture's Prey", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-47-the-vultures-prey/4000-13804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13783/", + "id": 13783, + "name": "The Kangaroo Bounces Back", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-126-the-kangaroo-bounces-ba/4000-13783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13706/", + "id": 13706, + "name": "Mayhem is... The Men-Fish!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-14-mayhem-is-the-men-fish/4000-13706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13705/", + "id": 13705, + "name": "Wings in the Night", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-46-wings-in-the-night/4000-13705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13682/", + "id": 13682, + "name": "Wolfhunt", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-125-wolfhunt/4000-13682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13589/", + "id": 13589, + "name": "The Granite Sky!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-13-the-granite-sky/4000-13589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13572/", + "id": 13572, + "name": "The Came Ramrod!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-103-the-came-ramrod/4000-13572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13588/", + "id": 13588, + "name": "Make Way for Medusa", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-45-make-way-for-medusa/4000-13588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13564/", + "id": 13564, + "name": "The Mark of the Man-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-124-the-mark-of-the-man-wol/4000-13564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13487/", + "id": 13487, + "name": "Wolf at Bay", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-12-wolf-at-bay/4000-13487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13477/", + "id": 13477, + "name": "From here to infinity!", + "site_detail_url": "https://comicvine.gamespot.com/adventure-into-fear-15-from-here-to-infinity/4000-13477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328417/", + "id": 328417, + "name": "If This Be My Destiny...!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-25-if-this-be-my-destiny/4000-328417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13500/", + "id": 13500, + "name": "Along Came A Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-83-along-came-a-spider/4000-13500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13486/", + "id": 13486, + "name": "What a Tangled Web We Weave", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-44-what-a-tangled-web-we-weave/4000-13486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13479/", + "id": 13479, + "name": "Chemistro", + "site_detail_url": "https://comicvine.gamespot.com/hero-for-hire-12-chemistro/4000-13479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13467/", + "id": 13467, + "name": "Just a Man Called Cage", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-123-just-a-man-called-cage/4000-13467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13395/", + "id": 13395, + "name": "Doomsday Gambit!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-11-doomsday-gambit/4000-13395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328416/", + "id": 328416, + "name": "The Claws of the Cat!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-24-the-claws-of-the-cat/4000-328416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328415/", + "id": 328415, + "name": "Magic War!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-23-magic-war/4000-328415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328414/", + "id": 328414, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-22/4000-328414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328413/", + "id": 328413, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-21/4000-328413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13377/", + "id": 13377, + "name": "The Goblin's Last Stand!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-122-the-goblins-last-stand/4000-13377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12781/", + "id": 12781, + "name": "The Goblin Lives", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-9-the-goblin-lives/4000-12781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328412/", + "id": 328412, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-20/4000-328412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13285/", + "id": 13285, + "name": "Time Bomb!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-10-time-bomb/4000-13285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328411/", + "id": 328411, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-19/4000-328411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328410/", + "id": 328410, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-18/4000-328410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328409/", + "id": 328409, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-17/4000-328409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328408/", + "id": 328408, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-16/4000-328408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77798/", + "id": 77798, + "name": "The Origin Of The Fantastical Four!", + "site_detail_url": "https://comicvine.gamespot.com/crazy-3-the-origin-of-the-fantastical-four/4000-77798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13284/", + "id": 13284, + "name": "O, Bitter Victory", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-43-o-bitter-victory/4000-13284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13264/", + "id": 13264, + "name": "Gog Cometh", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-tales-18-gog-cometh/4000-13264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13263/", + "id": 13263, + "name": "The Night Gwen Stacy Died", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-121-the-night-gwen-stacy-di/4000-13263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13186/", + "id": 13186, + "name": "The Tomorrow War!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-9-the-tomorrow-war/4000-13186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328406/", + "id": 328406, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-14/4000-328406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328405/", + "id": 328405, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-13/4000-328405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328404/", + "id": 328404, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-12/4000-328404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13169/", + "id": 13169, + "name": "The Fight and the Fury", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-120-the-fight-and-the-fury/4000-13169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13118/", + "id": 13118, + "name": "The Man-Killer Moves at Midnight!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-8-the-man-killer-moves-at-midnight/4000-13118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13106/", + "id": 13106, + "name": "Thundra at Dawn", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-133-thundra-at-dawn/4000-13106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328403/", + "id": 328403, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-11/4000-328403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328402/", + "id": 328402, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-10/4000-328402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328401/", + "id": 328401, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-9/4000-328401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328400/", + "id": 328400, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-8/4000-328400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77797/", + "id": 77797, + "name": "The Human Scorch Has To... Meet The Family!", + "site_detail_url": "https://comicvine.gamespot.com/crazy-2-the-human-scorch-has-to-meet-the-family/4000-77797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13117/", + "id": 13117, + "name": "The Brand of the Brainwasher", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-42-the-brand-of-the-brainwasher/4000-13117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13096/", + "id": 13096, + "name": "The Gentleman's Name is Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-119-the-gentlemans-name-is-/4000-13096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328399/", + "id": 328399, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-7/4000-328399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13017/", + "id": 13017, + "name": "A Hitch in Time!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-7-a-hitch-in-time/4000-13017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328398/", + "id": 328398, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-6/4000-328398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328397/", + "id": 328397, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-5/4000-328397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328396/", + "id": 328396, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-4/4000-328396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328395/", + "id": 328395, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-3/4000-328395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-49365/", + "id": 49365, + "name": "Blechhula!", + "site_detail_url": "https://comicvine.gamespot.com/spoof-4-blechhula/4000-49365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13007/", + "id": 13007, + "name": "Bedlam at the Baxter Building", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-10-bedlam-at-the-baxter-buil/4000-13007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12999/", + "id": 12999, + "name": "Countdown to Chaos", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-118-countdown-to-chaos/4000-12999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328394/", + "id": 328394, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-2/4000-328394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328393/", + "id": 328393, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-1/4000-328393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221015/", + "id": 221015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-19/4000-221015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221014/", + "id": 221014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-18/4000-221014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12933/", + "id": 12933, + "name": "Disaster", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-41-disaster/4000-12933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12914/", + "id": 12914, + "name": "The Deadly Designs of the Disruptor", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-117-the-deadly-designs-of-t/4000-12914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-13298/", + "id": 13298, + "name": "Morbius", + "site_detail_url": "https://comicvine.gamespot.com/vampire-tales-1-morbius/4000-13298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12840/", + "id": 12840, + "name": "...As Those Who Will Not See!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-6-as-those-who-will-not-see/4000-12840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221013/", + "id": 221013, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-17/4000-221013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-221011/", + "id": 221011, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-16/4000-221011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220757/", + "id": 220757, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-15/4000-220757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220756/", + "id": 220756, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-14/4000-220756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176943/", + "id": 176943, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/foom-3/4000-176943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12822/", + "id": 12822, + "name": "Suddenly the Smasher", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-116-suddenly-the-smasher/4000-12822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220755/", + "id": 220755, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-13/4000-220755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220754/", + "id": 220754, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-12/4000-220754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220753/", + "id": 220753, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-11/4000-220753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220443/", + "id": 220443, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-10/4000-220443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220442/", + "id": 220442, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-9/4000-220442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12747/", + "id": 12747, + "name": "Doc Ock Wins!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-40-doc-ock-wins/4000-12747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12728/", + "id": 12728, + "name": "The Last Battle!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-115-the-last-battle/4000-12728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12658/", + "id": 12658, + "name": "A Passion of the Mind!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-5-a-passion-of-the-mind/4000-12658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220441/", + "id": 220441, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-8/4000-220441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220440/", + "id": 220440, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-7/4000-220440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220439/", + "id": 220439, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-6/4000-220439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220317/", + "id": 220317, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-5/4000-220317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12657/", + "id": 12657, + "name": "The Tentacles and the Trap!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-39-the-tentacles-and-the-trap/4000-12657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12640/", + "id": 12640, + "name": "Gang War, Schmang War. What I Want to Know is...Who the Heck is Hammerhead?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-114-gang-war-schmang-war-wh/4000-12640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220316/", + "id": 220316, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-4/4000-220316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220315/", + "id": 220315, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-3/4000-220315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220314/", + "id": 220314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-2/4000-220314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220313/", + "id": 220313, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-1/4000-220313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12582/", + "id": 12582, + "name": "Enter: Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-38-enter-doctor-octopus/4000-12582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12563/", + "id": 12563, + "name": "They Call the Doctor...Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-113-they-call-the-doctoroct/4000-12563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12489/", + "id": 12489, + "name": "And Then-- The X-Men!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-4-and-then-the-x-men/4000-12489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363880/", + "id": 363880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-1973/4000-363880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12488/", + "id": 12488, + "name": "To Die a Hero!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-37-to-die-a-hero/4000-12488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12473/", + "id": 12473, + "name": "Spidey Cops Out", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-112-spidey-cops-out/4000-12473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12423/", + "id": 12423, + "name": "In the Clutches of the Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-36-in-the-clutches-of-the-kingpin/4000-12423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12412/", + "id": 12412, + "name": "Terror in the Night!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-152-terror-in-the-night/4000-12412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12409/", + "id": 12409, + "name": "To Stalk a Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-111-to-stalk-a-spider/4000-12409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12345/", + "id": 12345, + "name": "The Power To Purge!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-3-the-power-to-purge/4000-12345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12339/", + "id": 12339, + "name": "The World, My Jury!", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-153-the-world-my-jury/4000-12339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12343/", + "id": 12343, + "name": "The Incredible Shrinking Doom !", + "site_detail_url": "https://comicvine.gamespot.com/marvel-feature-4-the-incredible-shrinking-doom/4000-12343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12332/", + "id": 12332, + "name": "The Birth of ...the Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-110-the-birth-of-the-gibbon/4000-12332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12267/", + "id": 12267, + "name": "But Who Will Judge the Hulk?", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-152-but-who-will-judge-the-hul/4000-12267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12271/", + "id": 12271, + "name": "From the Depths of Defeat!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-35-from-the-depths-of-defeat/4000-12271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12258/", + "id": 12258, + "name": "Enter: Dr. Strange", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-109-enter-dr-strange/4000-12258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12196/", + "id": 12196, + "name": "And Spidey Makes Four!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-2-and-spidey-makes-four/4000-12196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12195/", + "id": 12195, + "name": "The Wings of the Vulture!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-34-the-wings-of-the-vulture/4000-12195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12182/", + "id": 12182, + "name": "Vengeance From Vietnam!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-108-vengeance-from-vietnam/4000-12182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12133/", + "id": 12133, + "name": "Re-Enter The Mimic!", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-75-re-enter-the-mimic/4000-12133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12117/", + "id": 12117, + "name": "Spidey Smashes Thru!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-107-spidey-smashes-thru/4000-12117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12058/", + "id": 12058, + "name": "Have Yourself a Sandman Little Christmas!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-1-have-yourself-a-sandman-little-ch/4000-12058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-12047/", + "id": 12047, + "name": "Squash Goes the Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-106-squash-goes-the-spider/4000-12047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11996/", + "id": 11996, + "name": "Spidey Smashes Out", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-33-spidey-smashes-out/4000-11996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11987/", + "id": 11987, + "name": "The Spider Slayer", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-105-the-spider-slayer/4000-11987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167176/", + "id": 167176, + "name": "La Storia di Thor", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-18-la-storia-di-thor/4000-167176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11924/", + "id": 11924, + "name": "Enter Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual-3-enter-spider-man/4000-11924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11917/", + "id": 11917, + "name": "Along Came a Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-annual-5-along-came-a-spider-man/4000-11917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11916/", + "id": 11916, + "name": "The Beauty and the Brute", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-104-the-beauty-and-the-brut/4000-11916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11838/", + "id": 11838, + "name": "Walk the Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-103-walk-the-savage-land/4000-11838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11811/", + "id": 11811, + "name": "The Sinister Shocker", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-8-the-sinister-shock/4000-11811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11782/", + "id": 11782, + "name": "The Alien, The Ally, and...Armageddon!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-116-the-alien-the-ally-andarmageddo/4000-11782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11790/", + "id": 11790, + "name": "Rhino on the Rampage", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-32-rhino-on-the-rampage/4000-11790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11776/", + "id": 11776, + "name": "Vampire at Large!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-102-vampire-at-large/4000-11776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-72573/", + "id": 72573, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/serie-pressen-197101/4000-72573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11717/", + "id": 11717, + "name": "A Monster Called Morbius", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-101-a-monster-called-morbiu/4000-11717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-342115/", + "id": 342115, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tv21-joe-90-103/4000-342115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-330478/", + "id": 330478, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tv21-annual-1972/4000-330478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11657/", + "id": 11657, + "name": "The Spider Or The Man?", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-100-the-spider-or-the-man/4000-11657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11609/", + "id": 11609, + "name": "...Under the Name of Ritual", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-40-under-the-name-of-ritual/4000-11609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11597/", + "id": 11597, + "name": "A Day in the Life of... Featuring", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-99-a-day-in-the-life-of-fea/4000-11597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11549/", + "id": 11549, + "name": "Once Upon a Time, There Was a Robot", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-31-once-upon-a-time-there-was-a-robot/4000-11549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11538/", + "id": 11538, + "name": "The Goblin's Last Gasp", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-98-the-goblins-last-gasp/4000-11538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11489/", + "id": 11489, + "name": "The Thing Runs Amok!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-111-the-thing-runs-amok/4000-11489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123956/", + "id": 123956, + "name": "A Blind Man Shall Lead Them", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-comics-31-a-blind-man-shall-lead-/4000-123956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11488/", + "id": 11488, + "name": "...And So Enters the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-77-and-so-enters-the-amazing-spider-man/4000-11488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11486/", + "id": 11486, + "name": "It Happens in Harlem!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-138-it-happens-in-harlem/4000-11486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11483/", + "id": 11483, + "name": "In the Grip of the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-97-in-the-grip-of-the-gobli/4000-11483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11426/", + "id": 11426, + "name": "To Stalk The Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-137-to-stalk-the-spider-man/4000-11426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11424/", + "id": 11424, + "name": "...And Now, the Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-96-and-now-the-goblin/4000-11424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-605673/", + "id": 605673, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bessatsu-shonen-magazine-197104/4000-605673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11384/", + "id": 11384, + "name": "To Kill a Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-30-to-kill-a-spider-man/4000-11384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11374/", + "id": 11374, + "name": "Trap For a Terrorist", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-95-trap-for-a-terrorist/4000-11374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11329/", + "id": 11329, + "name": "If This Be Justice", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-3-if-this-be-justice/4000-11329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11320/", + "id": 11320, + "name": "On Wings of Death", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-94-on-wings-of-death/4000-11320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11273/", + "id": 11273, + "name": "The World Is Not For Burning", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-85-the-world-is-not-for-burning/4000-11273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11271/", + "id": 11271, + "name": "The Lady and the Prowler", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-93-the-lady-and-the-prowler/4000-11271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11224/", + "id": 11224, + "name": "How Green Was My Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-29-how-green-was-my-goblin/4000-11224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11214/", + "id": 11214, + "name": "When Iceman Attacks", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-92-when-iceman-attacks/4000-11214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917466/", + "id": 917466, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-17/4000-917466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11150/", + "id": 11150, + "name": "To Smash the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-91-to-smash-the-spider/4000-11150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11125/", + "id": 11125, + "name": "Spider-Man vs The Chameleon", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-7-spider-man-vs-the-/4000-11125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11094/", + "id": 11094, + "name": "Pawns of the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures-3-pawns-of-the-mandarin/4000-11094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917465/", + "id": 917465, + "name": "Ritorno all'attacco; L'incantesimo del fuoco e del ghiaccio", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-16-ritorno-allattacco-lincantesimo-del/4000-917465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917464/", + "id": 917464, + "name": "La fine dell'Uomo Ragno; Sulla pista dell'Uomo Ragno; Il cavaliere nero", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-15-la-fine-delluomo-ragno-sulla-pista-/4000-917464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11096/", + "id": 11096, + "name": "Hostage!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-82-hostage/4000-11096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11095/", + "id": 11095, + "name": "And Death Shall Come", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-90-and-death-shall-come/4000-11095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917463/", + "id": 917463, + "name": "I sinistri sei!; Sovrapposizione (III)", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-14-i-sinistri-sei-sovrapposizione-iii/4000-917463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917462/", + "id": 917462, + "name": "In lotta contro Devil; Il ritorno Goblin!; Sovrapposizione (II)", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-13-in-lotta-contro-devil-il-ritorno-go/4000-917462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383876/", + "id": 383876, + "name": "Les Super-Héros de Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/strange-10-les-super-heros-de-stan-lee/4000-383876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11059/", + "id": 11059, + "name": "The Molten Man Regrets", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-28-the-molten-man-regrets/4000-11059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11050/", + "id": 11050, + "name": "Up Against the Wall!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-130-up-against-the-wall/4000-11050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11047/", + "id": 11047, + "name": "Doc Ock Lives!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-89-doc-ock-lives/4000-11047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383875/", + "id": 383875, + "name": "Les Super-Héros de Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/strange-9-les-super-heros-de-stan-lee/4000-383875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-628207/", + "id": 628207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bessatsu-shonen-magazine-197009/4000-628207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-11001/", + "id": 11001, + "name": "The Arms of Doctor Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-88-the-arms-of-doctor-octop/4000-11001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10946/", + "id": 10946, + "name": "Beware the Inhumans!; The Sting of The Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures-1-beware-the-inhumans-the-sting/4000-10946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334110/", + "id": 334110, + "name": "Il Cervello vivente", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-8-il-cervello-vivente/4000-334110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10947/", + "id": 10947, + "name": "Unmasked at Last!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-87-unmasked-at-last/4000-10947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620231/", + "id": 620231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bessatsu-shonen-magazine-197007/4000-620231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10904/", + "id": 10904, + "name": "The Thrill of the Hunt", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-27-the-thrill-of-the-hunt/4000-10904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10895/", + "id": 10895, + "name": "Beware the Black Widow!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-86-beware-the-black-widow/4000-10895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334107/", + "id": 334107, + "name": "Il Dottor Destino", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-5-il-dottor-destino/4000-334107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334106/", + "id": 334106, + "name": "L'inarrestabile Uomo Sabbia", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-4-linarrestabile-uomo-sabbia/4000-334106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383872/", + "id": 383872, + "name": "Les Super-Héros de Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/strange-6-les-super-heros-de-stan-lee/4000-383872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-620230/", + "id": 620230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bessatsu-shonen-magazine-197006/4000-620230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10852/", + "id": 10852, + "name": "The Secret of the Schemer", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-85-the-secret-of-the-scheme/4000-10852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329936/", + "id": 329936, + "name": "Lo strano Dr Octopus", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-3-lo-strano-dr-octopus/4000-329936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329500/", + "id": 329500, + "name": "L'Avvoltoio", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-2-lavvoltoio/4000-329500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10808/", + "id": 10808, + "name": "The Final Chapter", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-26-the-final-chapter/4000-10808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10799/", + "id": 10799, + "name": "The Kingpin Strikes Back!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-84-the-kingpin-strikes-back/4000-10799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329254/", + "id": 329254, + "name": "L'Uomo Ragno", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-1-luomo-ragno/4000-329254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10764/", + "id": 10764, + "name": "The Flame and the Fury!", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-15-the-flame-and-the-fury/4000-10764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10753/", + "id": 10753, + "name": "The Coming of… the Schemer!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-83-the-coming-of-the-scheme/4000-10753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10719/", + "id": 10719, + "name": "The Surfer and the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-14-the-surfer-and-the-spider/4000-10719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10716/", + "id": 10716, + "name": "Man on a Rampage", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-25-man-on-a-rampage/4000-10716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10707/", + "id": 10707, + "name": "And Then Came Electro!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-82-and-then-came-electro/4000-10707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10662/", + "id": 10662, + "name": "The Coming of the Kangaroo!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-81-the-coming-of-the-kangar/4000-10662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10616/", + "id": 10616, + "name": "On The Trail of...the Chameleon!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-80-on-the-trail-ofthe-chame/4000-10616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-353189/", + "id": 353189, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/durfal-classics-20/4000-353189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334109/", + "id": 334109, + "name": "Il ritorno dell'Avvoltoio", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-7-il-ritorno-dellavvoltoio/4000-334109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175498/", + "id": 175498, + "name": "Antognoni: Un Campionato per Tornare Grande", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-23-antognoni-un-campionato-per-tornare-g/4000-175498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167162/", + "id": 167162, + "name": "Superposter: Calendario della Serie A", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-20-superposter-calendario-della-serie-a/4000-167162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167160/", + "id": 167160, + "name": "Formula 1: Appuntamento a Monza", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-17-formula-1-appuntamento-a-monza/4000-167160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167159/", + "id": 167159, + "name": "Giordano: sarà l'anno del Boom?", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-16-giordano-sara-lanno-del-boom/4000-167159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167158/", + "id": 167158, + "name": "La Storia di Doc Justice", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-15-la-storia-di-doc-justice/4000-167158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167157/", + "id": 167157, + "name": "\"Serie A\": Tutte le Squadre, una per una", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-14-serie-a-tutte-le-squadre-una-per-una/4000-167157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167156/", + "id": 167156, + "name": "Il Kilometro Lanciato: con gli Sci a 200 all'ora", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-13-il-kilometro-lanciato-con-gli-sci-a-2/4000-167156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167154/", + "id": 167154, + "name": "Bud Spencer: dallo Sport al Cinema", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-11-bud-spencer-dallo-sport-al-cinema/4000-167154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167151/", + "id": 167151, + "name": "Mennea Campione di Razza", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-8-mennea-campione-di-razza/4000-167151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167149/", + "id": 167149, + "name": "Panatta: Campione a Corrente Alternata", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-6-panatta-campione-a-corrente-alternata/4000-167149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167146/", + "id": 167146, + "name": "Brabham Alfa Romeo BT 46", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-3-brabham-alfa-romeo-bt-46/4000-167146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167145/", + "id": 167145, + "name": "Argentina 78: la Germania Ovest", + "site_detail_url": "https://comicvine.gamespot.com/supergulp-2-argentina-78-la-germania-ovest/4000-167145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10626/", + "id": 10626, + "name": "If This Be My Destiny...", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-24-if-this-be-my-destiny/4000-10626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10566/", + "id": 10566, + "name": "To Prowl No More!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-79-to-prowl-no-more/4000-10566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10518/", + "id": 10518, + "name": "The Claws of the Cat", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-23-the-claws-of-the-cat/4000-10518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10506/", + "id": 10506, + "name": "The Night of the Prowler!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-78-the-night-of-the-prowler/4000-10506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10484/", + "id": 10484, + "name": "The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-6-the-sinister-six/4000-10484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10461/", + "id": 10461, + "name": "In the Blaze of Battle!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-77-in-the-blaze-of-battle/4000-10461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10399/", + "id": 10399, + "name": "The Lizard Lives!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-76-the-lizard-lives/4000-10399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10410/", + "id": 10410, + "name": "Bring Back My Goblin to Me", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-22-bring-back-my-goblin-to-me/4000-10410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331370/", + "id": 331370, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-annual-1970/4000-331370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331369/", + "id": 331369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-annual-1969/4000-331369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10352/", + "id": 10352, + "name": "Death Without Warning!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-75-death-without-warning/4000-10352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10312/", + "id": 10312, + "name": "The Man in the Crime-Master's Mask", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-21-the-man-in-the-crime-masters-mask/4000-10312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10307/", + "id": 10307, + "name": "Call Him... Fear!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-54-call-him-fear/4000-10307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10302/", + "id": 10302, + "name": "If This Be Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-74-if-this-be-bedlam/4000-10302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10268/", + "id": 10268, + "name": "Burn, Namor... Burn!", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-14-burn-namor-burn/4000-10268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10257/", + "id": 10257, + "name": "The Web Closes!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-73-the-web-closes/4000-10257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10211/", + "id": 10211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-13/4000-10211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10209/", + "id": 10209, + "name": "Captured by J. Jonah Jameson", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-20-captured-by-j-jonah-jameson/4000-10209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10198/", + "id": 10198, + "name": "Rocked by the Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-72-rocked-by-the-shocker/4000-10198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10152/", + "id": 10152, + "name": "The Wondrous World of Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-179-the-wondrous-world-of-doctor-st/4000-10152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10146/", + "id": 10146, + "name": "The Speedster and the Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-71-the-speedster-and-the-sp/4000-10146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10102/", + "id": 10102, + "name": "Spider-Man Goes Mad!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-19-spider-man-goes-mad/4000-10102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10091/", + "id": 10091, + "name": "Spider-Man Wanted!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-70-spider-man-wanted/4000-10091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10050/", + "id": 10050, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-12/4000-10050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-10038/", + "id": 10038, + "name": "Mission: Crush The Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-69-mission-crush-the-kingpi/4000-10038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9997/", + "id": 9997, + "name": "The Goblin and the Gangsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-18-the-goblin-and-the-gangsters/4000-9997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9987/", + "id": 9987, + "name": "... Till Death Do Us Part", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-60-till-death-do-us-part/4000-9987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9986/", + "id": 9986, + "name": "Crisis on the Campus!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-68-crisis-on-the-campus/4000-9986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186111/", + "id": 186111, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-11/4000-186111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113995/", + "id": 113995, + "name": "The Name Is... Yellowjacket", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-59-the-name-is-yellowjacket/4000-113995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109504/", + "id": 109504, + "name": "To Squash A Spider!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-67-to-squash-a-spider/4000-109504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166098/", + "id": 166098, + "name": "The Goblin Lives!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-magazine-2-the-goblin-l/4000-166098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113994/", + "id": 113994, + "name": "Even An Android Can Cry", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-58-even-an-android-can-cry/4000-113994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111514/", + "id": 111514, + "name": "At Long Last...The Parents of Peter Parker!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-5-at-long-lastthe-pa/4000-111514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110291/", + "id": 110291, + "name": "The Clown, and His Masters of Menace", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-17-the-clown-and-his-masters-of-menac/4000-110291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109503/", + "id": 109503, + "name": "The Madness of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-66-the-madness-of-mysterio/4000-109503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186109/", + "id": 186109, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-10/4000-186109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109502/", + "id": 109502, + "name": "The Impossible Escape!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-65-the-impossible-escape/4000-109502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318410/", + "id": 318410, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/smash-138/4000-318410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255600/", + "id": 255600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/smash-137/4000-255600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331368/", + "id": 331368, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-annual-1968/4000-331368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124563/", + "id": 124563, + "name": "And Time, The Rushing River...!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-annual-2-and-time-the-rushing-river/4000-124563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110290/", + "id": 110290, + "name": "Where Flies the Beetle...!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-16-where-flies-the-beetle/4000-110290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109501/", + "id": 109501, + "name": "The Vulture's Prey", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-64-the-vultures-prey/4000-109501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186108/", + "id": 186108, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-9/4000-186108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109500/", + "id": 109500, + "name": "Wings in the Night!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-63-wings-in-the-night/4000-109500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662638/", + "id": 662638, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-80/4000-662638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166097/", + "id": 166097, + "name": "Lo, This Monster!", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-magazine-1-lo-this-mons/4000-166097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110289/", + "id": 110289, + "name": "The Coming of the Scorpion!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-15-the-coming-of-the-scorpion/4000-110289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109499/", + "id": 109499, + "name": "Make Way For---Medusa!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-62-make-way-for-medusa/4000-109499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247220/", + "id": 247220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-75/4000-247220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109467/", + "id": 109467, + "name": "What a Tangled Web We Weave ...!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-61-what-a-tangled-web-we-we/4000-109467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247219/", + "id": 247219, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-69/4000-247219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-166074/", + "id": 166074, + "name": "The Reprehensible Riddle of the Sorceror!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-14-the-reprehensible-riddle-of/4000-166074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109468/", + "id": 109468, + "name": "Spidey Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-14-spidey-strikes-back/4000-109468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109466/", + "id": 109466, + "name": "O Bitter Victory!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-60-o-bitter-victory/4000-109466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136901/", + "id": 136901, + "name": "Giant Guest Star Bonanza!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-73-giant-guest-star-bonanza/4000-136901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419564/", + "id": 419564, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-summer-special-1/4000-419564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109464/", + "id": 109464, + "name": "The Brand of the Brainwasher!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-59-the-brand-of-the-brainwa/4000-109464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109465/", + "id": 109465, + "name": "The End of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-13-the-end-of-spider-man/4000-109465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109460/", + "id": 109460, + "name": "To Kill A Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-58-to-kill-a-spider-man/4000-109460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9938/", + "id": 9938, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-6/4000-9938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9934/", + "id": 9934, + "name": "The Coming of Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-57-the-coming-of-ka-zar/4000-9934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-277660/", + "id": 277660, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-53/4000-277660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331361/", + "id": 331361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/smash-pow-its-fantastic-summer-special-1968/4000-331361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325462/", + "id": 325462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-83/4000-325462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-163903/", + "id": 163903, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/castle-of-frankenstein-12/4000-163903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9882/", + "id": 9882, + "name": "The Return of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-12-the-return-of-the-green-goblin/4000-9882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9876/", + "id": 9876, + "name": "Disaster", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-56-disaster/4000-9876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897106/", + "id": 897106, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/captain-action-and-action-boy-1/4000-897106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9813/", + "id": 9813, + "name": "Doc Ock Wins!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-55-doc-ock-wins/4000-9813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9756/", + "id": 9756, + "name": "Duel with Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-11-duel-with-daredevil/4000-9756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9751/", + "id": 9751, + "name": "The Tentacles And The Trap!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-54-the-tentacles-and-the-tr/4000-9751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9714/", + "id": 9714, + "name": "The Web And The Flame!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-4-the-web-and-the-fl/4000-9714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9682/", + "id": 9682, + "name": "Enter: Dr. Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-53-enter-dr-octopus/4000-9682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9619/", + "id": 9619, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-2/4000-9619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363877/", + "id": 363877, + "name": "Marvel Storybook Annual", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-1968-marvel-storybook-annual/4000-363877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9618/", + "id": 9618, + "name": "Kraven the Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-10-kraven-the-hunter/4000-9618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9610/", + "id": 9610, + "name": "To Die A Hero!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-52-to-die-a-hero/4000-9610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9552/", + "id": 9552, + "name": "In The Clutches Of...The Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-51-in-the-clutches-ofthe-ki/4000-9552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9565/", + "id": 9565, + "name": "Along Came a Spider...", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-35-along-came-a-spider/4000-9565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9483/", + "id": 9483, + "name": "Spider-Man No More!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-50-spider-man-no-more/4000-9483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9487/", + "id": 9487, + "name": "The Grotesque Adventure of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-9-the-grotesque-adventure-of-the-gree/4000-9487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-471644/", + "id": 471644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-21/4000-471644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9423/", + "id": 9423, + "name": "From the Depths of Defeat!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-49-from-the-depths-of-defea/4000-9423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373569/", + "id": 373569, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-18/4000-373569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373210/", + "id": 373210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-16/4000-373210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111072/", + "id": 111072, + "name": "The Tribunal!", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-156-the-tribunal/4000-111072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9358/", + "id": 9358, + "name": "The Menace of...Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-8-the-menace-ofmysterio/4000-9358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9353/", + "id": 9353, + "name": "The Wings of the Vulture!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-48-the-wings-of-the-vulture/4000-9353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9292/", + "id": 9292, + "name": "Mike Murdock Must Die!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-27-mike-murdock-must-die/4000-9292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9290/", + "id": 9290, + "name": "In the Hands of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-47-in-the-hands-of-the-hunt/4000-9290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401818/", + "id": 401818, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-7/4000-401818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9228/", + "id": 9228, + "name": "The Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-7-the-enforcers/4000-9228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9223/", + "id": 9223, + "name": "The Sinister Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-46-the-sinister-shocker/4000-9223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9150/", + "id": 9150, + "name": "Spidey Smashes Out!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-45-spidey-smashes-out/4000-9150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290028/", + "id": 290028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-2/4000-290028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352225/", + "id": 352225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/pow-1/4000-352225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130529/", + "id": 130529, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/americas-best-tv-comics-1/4000-130529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9092/", + "id": 9092, + "name": "The Man Called Electro!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-6-the-man-called-electro/4000-9092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9087/", + "id": 9087, + "name": "Where Crawls the Lizard!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-44-where-crawls-the-lizard/4000-9087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9025/", + "id": 9025, + "name": "Re-enter: the Mimic!", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-27-re-enter-the-mimic/4000-9025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-9014/", + "id": 9014, + "name": "Rhino on the Rampage!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-43-rhino-on-the-rampage/4000-9014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8945/", + "id": 8945, + "name": "The Terrible Threat of the Living Brain", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-5-the-terrible-threat-of-the-living-b/4000-8945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8940/", + "id": 8940, + "name": "The Birth of a Super-Hero!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-42-the-birth-of-a-super-her/4000-8940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8905/", + "id": 8905, + "name": "To Become An Avenger; Turning Point; Unmasked by Dr. Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-3-to-become-an-aveng/4000-8905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8873/", + "id": 8873, + "name": "The Horns of the Rhino!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-41-the-horns-of-the-rhino/4000-8873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8812/", + "id": 8812, + "name": "The Return of the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-4-the-return-of-the-vulture/4000-8812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8807/", + "id": 8807, + "name": "Spidey Saves the Day!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-40-spidey-saves-the-day/4000-8807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8729/", + "id": 8729, + "name": "How Green Was My Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-39-how-green-was-my-goblin/4000-8729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8668/", + "id": 8668, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-3/4000-8668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8663/", + "id": 8663, + "name": "Just a Guy Named Joe!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-38-just-a-guy-named-joe/4000-8663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8612/", + "id": 8612, + "name": "None Are So Blind!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-17-none-are-so-blind/4000-8612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8610/", + "id": 8610, + "name": "Once Upon A Time...There Was A Robot!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-37-once-upon-a-timethere-wa/4000-8610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8545/", + "id": 8545, + "name": "Enter... Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-16-enter-spider-man/4000-8545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8543/", + "id": 8543, + "name": "When Falls the Meteor!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-36-when-falls-the-meteor/4000-8543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8487/", + "id": 8487, + "name": "The Molten Man Regrets..!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-35-the-molten-man-regrets/4000-8487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8425/", + "id": 8425, + "name": "The Thrill Of The Hunt!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-34-the-thrill-of-the-hunt/4000-8425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8364/", + "id": 8364, + "name": "The Final Chapter", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-33-the-final-chapter/4000-8364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823887/", + "id": 823887, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mini-books-the-amazing-spider-man/4000-823887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8305/", + "id": 8305, + "name": "Man on a Rampage!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-32-man-on-a-rampage/4000-8305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8228/", + "id": 8228, + "name": "If This Be My Destiny", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-31-if-this-be-my-destiny/4000-8228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8161/", + "id": 8161, + "name": "The Claws of the Cat!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-30-the-claws-of-the-cat/4000-8161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8100/", + "id": 8100, + "name": "Never Step on a Scorpion!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-29-never-step-on-a-scorpion/4000-8100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7504/", + "id": 7504, + "name": "Bedlam At The Baxter Building!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-3-bedlam-at-the-baxter-build/4000-7504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7502/", + "id": 7502, + "name": "The Wondrous Worlds of Dr. Strange!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-2-the-wondrous-world/4000-7502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-8028/", + "id": 8028, + "name": "The Menace of the Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-28-the-menace-of-the-molten/4000-8028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7958/", + "id": 7958, + "name": "Bring Back My Goblin to Me!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-27-bring-back-my-goblin-to-/4000-7958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107547/", + "id": 107547, + "name": "The Man In The Crime-Master's Mask", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-26-the-man-in-the-crime-mas/4000-107547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7834/", + "id": 7834, + "name": "Captured By J. Jonah Jameson", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-25-captured-by-j-jonah-jame/4000-7834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7773/", + "id": 7773, + "name": "Spider-Man Goes Mad!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-24-spider-man-goes-mad/4000-7773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123928/", + "id": 123928, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectors-item-classics-2/4000-123928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7723/", + "id": 7723, + "name": "The Goblin and the Gangsters", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-23-the-goblin-and-the-gangs/4000-7723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7667/", + "id": 7667, + "name": "The Frightful Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-36-the-frightful-four/4000-7667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7665/", + "id": 7665, + "name": "Preeeeeesenting...the Clown, and His Masters of Menace!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-22-preeeeeesentingthe-clown/4000-7665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7607/", + "id": 7607, + "name": "Where Flies the Beetle", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-21-where-flies-the-beetle/4000-7607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123906/", + "id": 123906, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectors-item-classics-1/4000-123906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7610/", + "id": 7610, + "name": "Calamity on Campus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-35-calamity-on-campus/4000-7610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7550/", + "id": 7550, + "name": "The Coming of the Scorpion! (or \"Spidey Battles Scorpey!\")", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-20-the-coming-of-the-scorpi/4000-7550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7482/", + "id": 7482, + "name": "The Mighty Avengers Meet Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-11-the-mighty-avengers-meet-spider-ma/4000-7482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7481/", + "id": 7481, + "name": "Spidey Strikes Back!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-19-spidey-strikes-back/4000-7481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7422/", + "id": 7422, + "name": "The End of Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-18-the-end-of-spider-man/4000-7422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7370/", + "id": 7370, + "name": "The Return of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-17-the-return-of-the-green-/4000-7370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7309/", + "id": 7309, + "name": "Enter: The Hulk!", + "site_detail_url": "https://comicvine.gamespot.com/tales-to-astonish-59-enter-the-hulk/4000-7309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7301/", + "id": 7301, + "name": "Duel with Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-16-duel-with-daredevil/4000-7301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6837/", + "id": 6837, + "name": "The Sinister Six!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual-1-the-sinister-six/4000-6837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7253/", + "id": 7253, + "name": "Kraven The Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-15-kraven-the-hunter/4000-7253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7206/", + "id": 7206, + "name": "On The Trail Of The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/tales-to-astonish-57-on-the-trail-of-the-amazing-s/4000-7206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7198/", + "id": 7198, + "name": "The Grotesque Adventure of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-14-the-grotesque-adventure-/4000-7198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7156/", + "id": 7156, + "name": "The Menace of Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-13-the-menace-of-mysterio/4000-7156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7105/", + "id": 7105, + "name": "Unmasked by Dr. Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-12-unmasked-by-dr-octopus/4000-7105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110948/", + "id": 110948, + "name": "The Torch Goes Wild!; Beyond The Purple Veil", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-119-the-torch-goes-wild-beyond-the-p/4000-110948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7067/", + "id": 7067, + "name": "The Origin of Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-1-the-origin-of-daredevil/4000-7067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7066/", + "id": 7066, + "name": "Turning Point", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-11-turning-point/4000-7066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-7024/", + "id": 7024, + "name": "The Enforcers!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-10-the-enforcers/4000-7024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6985/", + "id": 6985, + "name": "The Man Called Electro", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-9-the-man-called-electro/4000-6985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6938/", + "id": 6938, + "name": "The Avengers Meet Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-3-the-avengers-meet-sub-mariner/4000-6938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6937/", + "id": 6937, + "name": "The Terrible Threat Of The Living Brain; Spider-Man Tackles The Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-8-the-terrible-threat-of-th/4000-6937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-119574/", + "id": 119574, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-1/4000-119574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110872/", + "id": 110872, + "name": "The Sandman Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-115-the-sandman-strikes/4000-110872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105844/", + "id": 105844, + "name": "The Return Of The Vulture", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-7-the-return-of-the-vulture/4000-105844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6778/", + "id": 6778, + "name": "Face-To-Face With The Lizard", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-6-face-to-face-with-the-liz/4000-6778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6240/", + "id": 6240, + "name": "On the Trail of the Amazing Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-annual-2-on-the-trail-of-the-amazing/4000-6240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6734/", + "id": 6734, + "name": "Marked For Destruction By Dr. Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-5-marked-for-destruction-by/4000-6734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6685/", + "id": 6685, + "name": "The Amazing Spider-Man #4 Nothing Can Stop The Sandman", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-4-the-amazing-spider-man-4-/4000-6685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6595/", + "id": 6595, + "name": "Spider-Man Versus Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-3-spider-man-versus-doctor-/4000-6595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6239/", + "id": 6239, + "name": "The Undersea Legions of Sub-Mariner!; The Fabulous Fantastic Four Meet Spider-Man!; The Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-1-the-undersea-legions-of-su/4000-6239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6503/", + "id": 6503, + "name": "Duel To The Death With The Vulture; The Uncanny Threat Of The Terrible Tinkerer", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2-duel-to-the-death-with-th/4000-6503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-6422/", + "id": 6422, + "name": "Spider-Man; Spider-Man Vs. The Chameleon", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1-spider-man-spider-man-vs-/4000-6422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105342/", + "id": 105342, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-15/4000-105342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949862/", + "id": 949862, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/eks-almanah-226/4000-949862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949703/", + "id": 949703, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/eks-almanah-225/4000-949703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949554/", + "id": 949554, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/eks-almanah-223/4000-949554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949414/", + "id": 949414, + "name": "Spajdermen", + "site_detail_url": "https://comicvine.gamespot.com/eks-almanah-222-spajdermen/4000-949414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-949200/", + "id": 949200, + "name": "Covek-Pauk", + "site_detail_url": "https://comicvine.gamespot.com/eks-almanah-220-covek-pauk/4000-949200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-941608/", + "id": 941608, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-morbius-1/4000-941608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921201/", + "id": 921201, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doom-control-4/4000-921201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921200/", + "id": 921200, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doom-control-3/4000-921200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921199/", + "id": 921199, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doom-control-2/4000-921199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921198/", + "id": 921198, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doom-control-1/4000-921198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-921197/", + "id": 921197, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doom-control-0/4000-921197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920420/", + "id": 920420, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/special-dc-4/4000-920420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-919220/", + "id": 919220, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/donald-duck-superhelden-special-1/4000-919220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-918691/", + "id": 918691, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-sandblasted-25/4000-918691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917976/", + "id": 917976, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-story-book-annual-1/4000-917976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-917248/", + "id": 917248, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-annual-1984/4000-917248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-916440/", + "id": 916440, + "name": "Arcade’s Revenge", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-and-the-x-men-1-arcades-rev/4000-916440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-902266/", + "id": 902266, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-69/4000-902266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-902134/", + "id": 902134, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-68/4000-902134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901816/", + "id": 901816, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-66/4000-901816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901627/", + "id": 901627, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-65/4000-901627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901421/", + "id": 901421, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-64/4000-901421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901253/", + "id": 901253, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-63/4000-901253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-901029/", + "id": 901029, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-62/4000-901029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900812/", + "id": 900812, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-61/4000-900812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900643/", + "id": 900643, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-60/4000-900643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900594/", + "id": 900594, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-59/4000-900594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900497/", + "id": 900497, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-58/4000-900497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900408/", + "id": 900408, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-57/4000-900408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899943/", + "id": 899943, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-55/4000-899943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899352/", + "id": 899352, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-52/4000-899352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899208/", + "id": 899208, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-51/4000-899208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899187/", + "id": 899187, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-50/4000-899187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899074/", + "id": 899074, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-49/4000-899074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899012/", + "id": 899012, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-48/4000-899012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-898825/", + "id": 898825, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-47/4000-898825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-898731/", + "id": 898731, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-46/4000-898731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-898632/", + "id": 898632, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-45/4000-898632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-898451/", + "id": 898451, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-44/4000-898451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-898288/", + "id": 898288, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-43/4000-898288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-898131/", + "id": 898131, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-42/4000-898131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897978/", + "id": 897978, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-41/4000-897978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897734/", + "id": 897734, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-40/4000-897734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897600/", + "id": 897600, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-39/4000-897600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897404/", + "id": 897404, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-38/4000-897404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897182/", + "id": 897182, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-37/4000-897182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896983/", + "id": 896983, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-36/4000-896983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896822/", + "id": 896822, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-35/4000-896822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896661/", + "id": 896661, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-34/4000-896661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896583/", + "id": 896583, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-33/4000-896583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896395/", + "id": 896395, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-32/4000-896395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-896157/", + "id": 896157, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-31/4000-896157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895999/", + "id": 895999, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-30/4000-895999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895796/", + "id": 895796, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-29/4000-895796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895729/", + "id": 895729, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-28/4000-895729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895639/", + "id": 895639, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-27/4000-895639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895577/", + "id": 895577, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-26/4000-895577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895349/", + "id": 895349, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-24/4000-895349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895210/", + "id": 895210, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-23/4000-895210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-895107/", + "id": 895107, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-22/4000-895107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894779/", + "id": 894779, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-21/4000-894779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894565/", + "id": 894565, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-20/4000-894565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-894151/", + "id": 894151, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-19/4000-894151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893956/", + "id": 893956, + "name": "Die Augen des Zauberers", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-18-die-augen-des-zauberers/4000-893956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893766/", + "id": 893766, + "name": "Damen behandelt man nicht so!", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-17-damen-behandelt-man-nicht-so/4000-893766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893645/", + "id": 893645, + "name": "Im Licht des silbernen Mondsteins...!", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-16-im-licht-des-silbernen-mondsteins/4000-893645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893466/", + "id": 893466, + "name": "Wer strolcht da in der Nacht?", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-15-wer-strolcht-da-in-der-nacht/4000-893466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893302/", + "id": 893302, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-14/4000-893302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893149/", + "id": 893149, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-13/4000-893149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892970/", + "id": 892970, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-12/4000-892970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892908/", + "id": 892908, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-11/4000-892908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892746/", + "id": 892746, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-10/4000-892746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892537/", + "id": 892537, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-9/4000-892537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892458/", + "id": 892458, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-8/4000-892458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-892165/", + "id": 892165, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-7/4000-892165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891971/", + "id": 891971, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-6/4000-891971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891877/", + "id": 891877, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-5/4000-891877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891781/", + "id": 891781, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-4/4000-891781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891778/", + "id": 891778, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/telejunior-1/4000-891778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891629/", + "id": 891629, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-3/4000-891629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891386/", + "id": 891386, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-1/4000-891386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891308/", + "id": 891308, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-2/4000-891308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-891154/", + "id": 891154, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-special-199602/4000-891154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-884965/", + "id": 884965, + "name": "Passé Présent", + "site_detail_url": "https://comicvine.gamespot.com/top-bd-44-passe-present/4000-884965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882159/", + "id": 882159, + "name": "Spider-Man Esprits de la Terre", + "site_detail_url": "https://comicvine.gamespot.com/top-bd-23-spider-man-esprits-de-la-terre/4000-882159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-853367/", + "id": 853367, + "name": "Le Secret de Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-8-le-secret-de-pete/4000-853367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-852331/", + "id": 852331, + "name": "Face-A-Face Avec Le Clone", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-7-face-a-face-avec-/4000-852331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851711/", + "id": 851711, + "name": "Le Retour du Bouffon Vert", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-6-le-retour-du-bouf/4000-851711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851604/", + "id": 851604, + "name": "Dans Les Tentacules D'Octopus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-5-dans-les-tentacul/4000-851604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851424/", + "id": 851424, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-4/4000-851424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851229/", + "id": 851229, + "name": "La dernier Chasse en Kraven", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-3-la-dernier-chasse/4000-851229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-851088/", + "id": 851088, + "name": "L'attaque du Lezard", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-les-incontournables-2-lattaque-du-lezar/4000-851088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-849792/", + "id": 849792, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-16/4000-849792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-849043/", + "id": 849043, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-15/4000-849043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848866/", + "id": 848866, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-53/4000-848866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848865/", + "id": 848865, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-14/4000-848865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848797/", + "id": 848797, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-267/4000-848797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848790/", + "id": 848790, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-266/4000-848790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848787/", + "id": 848787, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-265/4000-848787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848777/", + "id": 848777, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-264/4000-848777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848764/", + "id": 848764, + "name": "Tank Girl!", + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-50-tank-girl/4000-848764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848763/", + "id": 848763, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-13/4000-848763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848670/", + "id": 848670, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-263/4000-848670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848669/", + "id": 848669, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-262/4000-848669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848668/", + "id": 848668, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-261/4000-848668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848660/", + "id": 848660, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-297/4000-848660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848659/", + "id": 848659, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-258/4000-848659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848658/", + "id": 848658, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-259/4000-848658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848657/", + "id": 848657, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-260/4000-848657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848611/", + "id": 848611, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-12/4000-848611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848562/", + "id": 848562, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-11/4000-848562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848302/", + "id": 848302, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-10/4000-848302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-848030/", + "id": 848030, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-9/4000-848030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847524/", + "id": 847524, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comics-scene-42/4000-847524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847523/", + "id": 847523, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-8/4000-847523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847456/", + "id": 847456, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-283/4000-847456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847454/", + "id": 847454, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-291/4000-847454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847440/", + "id": 847440, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe-7/4000-847440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847439/", + "id": 847439, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-257/4000-847439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847433/", + "id": 847433, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-285/4000-847433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-847338/", + "id": 847338, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-269/4000-847338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-846190/", + "id": 846190, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200913/4000-846190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845970/", + "id": 845970, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200912/4000-845970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845467/", + "id": 845467, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200911/4000-845467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845277/", + "id": 845277, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200910/4000-845277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845149/", + "id": 845149, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200909/4000-845149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-845038/", + "id": 845038, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200908/4000-845038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844947/", + "id": 844947, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200907/4000-844947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844803/", + "id": 844803, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200906/4000-844803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844666/", + "id": 844666, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200905/4000-844666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844481/", + "id": 844481, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200904/4000-844481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-844246/", + "id": 844246, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200903/4000-844246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-843821/", + "id": 843821, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200902/4000-843821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-843314/", + "id": 843314, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200901/4000-843314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-843052/", + "id": 843052, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200813/4000-843052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842826/", + "id": 842826, + "name": "Electrofest!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200812-electrofest/4000-842826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842597/", + "id": 842597, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200811/4000-842597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842297/", + "id": 842297, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200810/4000-842297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842222/", + "id": 842222, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200809/4000-842222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842133/", + "id": 842133, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200808/4000-842133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-842064/", + "id": 842064, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200807/4000-842064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841940/", + "id": 841940, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200806/4000-841940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841794/", + "id": 841794, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200805/4000-841794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841648/", + "id": 841648, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200804/4000-841648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841477/", + "id": 841477, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200803/4000-841477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-841244/", + "id": 841244, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200802/4000-841244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840996/", + "id": 840996, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200801/4000-840996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840834/", + "id": 840834, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200711/4000-840834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840700/", + "id": 840700, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200710/4000-840700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840610/", + "id": 840610, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200709/4000-840610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840379/", + "id": 840379, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200708/4000-840379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-840079/", + "id": 840079, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200707/4000-840079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839942/", + "id": 839942, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200706/4000-839942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839781/", + "id": 839781, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200705/4000-839781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839649/", + "id": 839649, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200704/4000-839649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839541/", + "id": 839541, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200703/4000-839541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839443/", + "id": 839443, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kidz-200702/4000-839443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839276/", + "id": 839276, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-36/4000-839276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-839126/", + "id": 839126, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-35/4000-839126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838263/", + "id": 838263, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-34/4000-838263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-838059/", + "id": 838059, + "name": "American Son", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-33-american-son/4000-838059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837999/", + "id": 837999, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-32/4000-837999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837813/", + "id": 837813, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-31/4000-837813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837754/", + "id": 837754, + "name": "Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-30-dark-reign/4000-837754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837650/", + "id": 837650, + "name": "Timestorm", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-29-timestorm/4000-837650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837559/", + "id": 837559, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-28/4000-837559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-837480/", + "id": 837480, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-27/4000-837480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-836807/", + "id": 836807, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-26/4000-836807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-836457/", + "id": 836457, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-25/4000-836457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-836209/", + "id": 836209, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-24/4000-836209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-835810/", + "id": 835810, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-23/4000-835810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-834770/", + "id": 834770, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-22/4000-834770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-834075/", + "id": 834075, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-21/4000-834075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-833575/", + "id": 833575, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-20/4000-833575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832994/", + "id": 832994, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-19/4000-832994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-832872/", + "id": 832872, + "name": "Venom Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-18-venom-carnage/4000-832872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-831941/", + "id": 831941, + "name": "The Pulse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-17-the-pulse/4000-831941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-831683/", + "id": 831683, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-16/4000-831683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-831224/", + "id": 831224, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-15/4000-831224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830772/", + "id": 830772, + "name": " Spider-Man 2: Le film", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-14-spider-man-2-le-film/4000-830772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830236/", + "id": 830236, + "name": "La légende du clan de l'Araignée", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-13-la-legende-du-clan-de-lar/4000-830236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-830044/", + "id": 830044, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-12/4000-830044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-829770/", + "id": 829770, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-11/4000-829770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-829639/", + "id": 829639, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-10/4000-829639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-829472/", + "id": 829472, + "name": "Question d'honneur", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-9-question-dhonneur/4000-829472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-829301/", + "id": 829301, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-8/4000-829301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-829066/", + "id": 829066, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-7/4000-829066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828958/", + "id": 828958, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-6/4000-828958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828846/", + "id": 828846, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-5/4000-828846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828751/", + "id": 828751, + "name": "La Grande Illusion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-4-la-grande-illusion/4000-828751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828729/", + "id": 828729, + "name": "Spider-Man: Ligne de vie", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-3-spider-man-ligne-de-vie/4000-828729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828684/", + "id": 828684, + "name": "Daredevil/Spider-Man: Unusual suspects", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hors-serie-2-daredevilspider-man-unusua/4000-828684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828393/", + "id": 828393, + "name": "L'enfer de Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-10-lenfer-de-ghost-/4000-828393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828324/", + "id": 828324, + "name": "La légende de Captain América", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-9-la-legende-de-cap/4000-828324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-828153/", + "id": 828153, + "name": "Rencontre avec les vengeurs", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-7-rencontre-avec-le/4000-828153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827977/", + "id": 827977, + "name": "Sur les pas des X-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-6-sur-les-pas-des-x/4000-827977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827895/", + "id": 827895, + "name": "L'épopée des Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-5-lepopee-des-fanta/4000-827895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827758/", + "id": 827758, + "name": "Femmes fatales", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-4-femmes-fatales/4000-827758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827677/", + "id": 827677, + "name": "La colère de Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-3-la-colere-de-hulk/4000-827677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-827637/", + "id": 827637, + "name": "La justice selon Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-et-les-heros-marvel-2-la-justice-selon-/4000-827637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826573/", + "id": 826573, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-12/4000-826573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826472/", + "id": 826472, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-11/4000-826472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826413/", + "id": 826413, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-10/4000-826413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826363/", + "id": 826363, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-9/4000-826363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826236/", + "id": 826236, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-8/4000-826236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825953/", + "id": 825953, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-7/4000-825953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825603/", + "id": 825603, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-6/4000-825603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825546/", + "id": 825546, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-5/4000-825546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825461/", + "id": 825461, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-4/4000-825461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-825136/", + "id": 825136, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3/4000-825136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824466/", + "id": 824466, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4000-824466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824118/", + "id": 824118, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200903/4000-824118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-824060/", + "id": 824060, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200902/4000-824060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823994/", + "id": 823994, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-forum-40/4000-823994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823992/", + "id": 823992, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200901/4000-823992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823899/", + "id": 823899, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200812/4000-823899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823830/", + "id": 823830, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200811/4000-823830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823735/", + "id": 823735, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200810/4000-823735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823599/", + "id": 823599, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200809/4000-823599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823426/", + "id": 823426, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200808/4000-823426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823364/", + "id": 823364, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200807/4000-823364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823296/", + "id": 823296, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200806/4000-823296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823186/", + "id": 823186, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200805/4000-823186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-823062/", + "id": 823062, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200804/4000-823062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822958/", + "id": 822958, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200803/4000-822958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822901/", + "id": 822901, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200802/4000-822901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822709/", + "id": 822709, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200801/4000-822709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822537/", + "id": 822537, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200712/4000-822537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-822291/", + "id": 822291, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200711/4000-822291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821773/", + "id": 821773, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200710/4000-821773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821568/", + "id": 821568, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200709/4000-821568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821440/", + "id": 821440, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200708/4000-821440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821299/", + "id": 821299, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200707/4000-821299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821128/", + "id": 821128, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200706/4000-821128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820780/", + "id": 820780, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/larsons-gale-verden-julespesial-2013/4000-820780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820693/", + "id": 820693, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200705-civil-war/4000-820693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820585/", + "id": 820585, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200704-civil-war/4000-820585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820523/", + "id": 820523, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200703/4000-820523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-820275/", + "id": 820275, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200702/4000-820275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819896/", + "id": 819896, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-149/4000-819896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819838/", + "id": 819838, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-148/4000-819838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819726/", + "id": 819726, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-16/4000-819726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819460/", + "id": 819460, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-147/4000-819460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819405/", + "id": 819405, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-14/4000-819405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819333/", + "id": 819333, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-146/4000-819333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819235/", + "id": 819235, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-145/4000-819235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819167/", + "id": 819167, + "name": "Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-144-fear-itself/4000-819167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819128/", + "id": 819128, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-143/4000-819128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818359/", + "id": 818359, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-5/4000-818359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817885/", + "id": 817885, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3/4000-817885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817646/", + "id": 817646, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4000-817646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-817530/", + "id": 817530, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1/4000-817530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813591/", + "id": 813591, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200612/4000-813591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813427/", + "id": 813427, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200611/4000-813427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813262/", + "id": 813262, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200610/4000-813262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-813036/", + "id": 813036, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200609/4000-813036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-812494/", + "id": 812494, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200608/4000-812494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-811891/", + "id": 811891, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200607/4000-811891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-811476/", + "id": 811476, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200606/4000-811476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-811164/", + "id": 811164, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200605/4000-811164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810744/", + "id": 810744, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200604/4000-810744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810534/", + "id": 810534, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200603/4000-810534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-810183/", + "id": 810183, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200602/4000-810183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-809740/", + "id": 809740, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200601/4000-809740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-809196/", + "id": 809196, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200512/4000-809196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-808518/", + "id": 808518, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200511/4000-808518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-808312/", + "id": 808312, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200510/4000-808312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807650/", + "id": 807650, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200509/4000-807650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807439/", + "id": 807439, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200508/4000-807439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-807164/", + "id": 807164, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200507/4000-807164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-806775/", + "id": 806775, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200506/4000-806775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-806441/", + "id": 806441, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200505/4000-806441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-805908/", + "id": 805908, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200504/4000-805908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-805387/", + "id": 805387, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200503/4000-805387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-805204/", + "id": 805204, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200502/4000-805204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804987/", + "id": 804987, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200501/4000-804987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804797/", + "id": 804797, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200412/4000-804797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804714/", + "id": 804714, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200411/4000-804714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804427/", + "id": 804427, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200410/4000-804427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804289/", + "id": 804289, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200409/4000-804289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804282/", + "id": 804282, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/comic-box-51/4000-804282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-804159/", + "id": 804159, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200408/4000-804159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803976/", + "id": 803976, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200407/4000-803976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-803657/", + "id": 803657, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200406/4000-803657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802964/", + "id": 802964, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200405/4000-802964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802960/", + "id": 802960, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-4/4000-802960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802665/", + "id": 802665, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200404/4000-802665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802520/", + "id": 802520, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200403/4000-802520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-802039/", + "id": 802039, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200402/4000-802039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-801552/", + "id": 801552, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200401/4000-801552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-800463/", + "id": 800463, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200312/4000-800463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-799862/", + "id": 799862, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200311/4000-799862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-799291/", + "id": 799291, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200310/4000-799291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798846/", + "id": 798846, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200309/4000-798846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798774/", + "id": 798774, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200308/4000-798774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798771/", + "id": 798771, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-2/4000-798771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798625/", + "id": 798625, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200307/4000-798625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798170/", + "id": 798170, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200306/4000-798170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-798007/", + "id": 798007, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200305/4000-798007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797957/", + "id": 797957, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200304/4000-797957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797855/", + "id": 797855, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200303/4000-797855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797703/", + "id": 797703, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200302/4000-797703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797473/", + "id": 797473, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200301/4000-797473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797407/", + "id": 797407, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200212/4000-797407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797258/", + "id": 797258, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200211/4000-797258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797254/", + "id": 797254, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvel-serie-dois-1/4000-797254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797226/", + "id": 797226, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200210/4000-797226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797130/", + "id": 797130, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200209/4000-797130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797049/", + "id": 797049, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200208/4000-797049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796898/", + "id": 796898, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200207/4000-796898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796763/", + "id": 796763, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200206/4000-796763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796668/", + "id": 796668, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200205/4000-796668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796646/", + "id": 796646, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200204/4000-796646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796397/", + "id": 796397, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200203/4000-796397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796234/", + "id": 796234, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200202/4000-796234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-796034/", + "id": 796034, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200201/4000-796034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-795886/", + "id": 795886, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200113/4000-795886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-795844/", + "id": 795844, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200112/4000-795844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-795413/", + "id": 795413, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200111/4000-795413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-795113/", + "id": 795113, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200110/4000-795113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-795020/", + "id": 795020, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200109/4000-795020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-794907/", + "id": 794907, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200108/4000-794907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-794735/", + "id": 794735, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200107/4000-794735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-794531/", + "id": 794531, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200106/4000-794531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-793683/", + "id": 793683, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200105/4000-793683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-793162/", + "id": 793162, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200104/4000-793162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-792570/", + "id": 792570, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200103/4000-792570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-792326/", + "id": 792326, + "name": "When Evil Reigns Down on Bangkok", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-experience-1-when-evil-reigns-down-on-b/4000-792326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-791909/", + "id": 791909, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200102/4000-791909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-791541/", + "id": 791541, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200101/4000-791541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-790268/", + "id": 790268, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200013/4000-790268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-789844/", + "id": 789844, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200012/4000-789844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-789364/", + "id": 789364, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200011/4000-789364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-788975/", + "id": 788975, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200010/4000-788975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-788667/", + "id": 788667, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200009/4000-788667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787952/", + "id": 787952, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200008/4000-787952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787359/", + "id": 787359, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200007/4000-787359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-786560/", + "id": 786560, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200006/4000-786560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-786027/", + "id": 786027, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200005/4000-786027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-785073/", + "id": 785073, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200004/4000-785073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-784957/", + "id": 784957, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200003/4000-784957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-784817/", + "id": 784817, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200002/4000-784817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-784481/", + "id": 784481, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-200001/4000-784481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-783202/", + "id": 783202, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-199907/4000-783202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-782747/", + "id": 782747, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-199906/4000-782747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-782378/", + "id": 782378, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-man-199905/4000-782378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-781668/", + "id": 781668, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-annual-1978/4000-781668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765408/", + "id": 765408, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-41/4000-765408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765407/", + "id": 765407, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-40/4000-765407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765406/", + "id": 765406, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-39/4000-765406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765405/", + "id": 765405, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-38/4000-765405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765404/", + "id": 765404, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-37/4000-765404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765403/", + "id": 765403, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-36/4000-765403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765402/", + "id": 765402, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-35/4000-765402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765401/", + "id": 765401, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-34/4000-765401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765400/", + "id": 765400, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-33/4000-765400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765399/", + "id": 765399, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-32/4000-765399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765398/", + "id": 765398, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-31/4000-765398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765397/", + "id": 765397, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-30/4000-765397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765396/", + "id": 765396, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-29/4000-765396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765395/", + "id": 765395, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-28/4000-765395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765394/", + "id": 765394, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-27/4000-765394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765393/", + "id": 765393, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-26/4000-765393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765392/", + "id": 765392, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-25/4000-765392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765391/", + "id": 765391, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-24/4000-765391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765390/", + "id": 765390, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-23/4000-765390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765389/", + "id": 765389, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-22/4000-765389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765388/", + "id": 765388, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-21/4000-765388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765387/", + "id": 765387, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-20/4000-765387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765386/", + "id": 765386, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-19/4000-765386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765385/", + "id": 765385, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-18/4000-765385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765384/", + "id": 765384, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-17/4000-765384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765383/", + "id": 765383, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-16/4000-765383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765382/", + "id": 765382, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-15/4000-765382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765381/", + "id": 765381, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-14/4000-765381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765380/", + "id": 765380, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-13/4000-765380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765379/", + "id": 765379, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-12/4000-765379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765378/", + "id": 765378, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-11/4000-765378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765377/", + "id": 765377, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-10/4000-765377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765376/", + "id": 765376, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-9/4000-765376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765375/", + "id": 765375, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-8/4000-765375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765374/", + "id": 765374, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-7/4000-765374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765373/", + "id": 765373, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-6/4000-765373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765372/", + "id": 765372, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-5/4000-765372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765371/", + "id": 765371, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-4/4000-765371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765370/", + "id": 765370, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-3/4000-765370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765369/", + "id": 765369, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-2/4000-765369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-765368/", + "id": 765368, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spiderman-special-1/4000-765368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-764586/", + "id": 764586, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/superman-en-spider-man-1/4000-764586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-763679/", + "id": 763679, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/crossover-3/4000-763679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-757955/", + "id": 757955, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-classic-1/4000-757955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733119/", + "id": 733119, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-the-new-avengers-11/4000-733119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-733037/", + "id": 733037, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-the-new-avengers-10/4000-733037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732915/", + "id": 732915, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-the-new-avengers-9/4000-732915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-732551/", + "id": 732551, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-the-new-avengers-4/4000-732551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730995/", + "id": 730995, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200504/4000-730995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730581/", + "id": 730581, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200503/4000-730581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730460/", + "id": 730460, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200502/4000-730460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730368/", + "id": 730368, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200501/4000-730368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730224/", + "id": 730224, + "name": "Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200404-ultimate-spider-man/4000-730224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730089/", + "id": 730089, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200403/4000-730089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729945/", + "id": 729945, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200401/4000-729945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-729575/", + "id": 729575, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-200103/4000-729575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-726095/", + "id": 726095, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-15/4000-726095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725892/", + "id": 725892, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-14/4000-725892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725729/", + "id": 725729, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-13/4000-725729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725453/", + "id": 725453, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-10/4000-725453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-725363/", + "id": 725363, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-9/4000-725363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-724616/", + "id": 724616, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-5/4000-724616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-724387/", + "id": 724387, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-4/4000-724387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-724156/", + "id": 724156, + "name": "Avengers Invaders", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hors-serie-3-avengers-invaders/4000-724156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-723942/", + "id": 723942, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/salvaje-lobezno-32/4000-723942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721816/", + "id": 721816, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-hors-serie-20-siege/4000-721816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721399/", + "id": 721399, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-hors-serie-18/4000-721399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721122/", + "id": 721122, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-hors-serie-15/4000-721122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719742/", + "id": 719742, + "name": "Spider-Man: Big Time Deel 2", + "site_detail_url": "https://comicvine.gamespot.com/humo-presenteert-7-spider-man-big-time-deel-2/4000-719742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719509/", + "id": 719509, + "name": "The Avengers: Vers bloed", + "site_detail_url": "https://comicvine.gamespot.com/humo-presenteert-3-the-avengers-vers-bloed/4000-719509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-719358/", + "id": 719358, + "name": "Spider-Man: Big Time", + "site_detail_url": "https://comicvine.gamespot.com/humo-presenteert-2-spider-man-big-time/4000-719358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-718603/", + "id": 718603, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/le-journal-de-mickey-2634/4000-718603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717638/", + "id": 717638, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-o-que-aconteceria-se-peter-parker-nao/4000-717638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717027/", + "id": 717027, + "name": "O Homem-Aranha - A essência do Medo", + "site_detail_url": "https://comicvine.gamespot.com/graphic-marvel-16-o-homem-aranha-a-essencia-do-med/4000-717027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-716022/", + "id": 716022, + "name": "Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/gigant-200307-ultimate-spider-man/4000-716022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715387/", + "id": 715387, + "name": "Ultimate Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/gigant-200304-ultimate-marvel-team-up/4000-715387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715285/", + "id": 715285, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-85/4000-715285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-715165/", + "id": 715165, + "name": "Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/gigant-200302-ultimate-spider-man/4000-715165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714926/", + "id": 714926, + "name": "Orka", + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-82-orka/4000-714926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714865/", + "id": 714865, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-81/4000-714865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714838/", + "id": 714838, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/gigant-200202/4000-714838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714401/", + "id": 714401, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-75/4000-714401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714218/", + "id": 714218, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-71/4000-714218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714132/", + "id": 714132, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/die-fantastischen-vier-10/4000-714132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-713122/", + "id": 713122, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-59/4000-713122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712737/", + "id": 712737, + "name": "Spindelns strid mot Hulk", + "site_detail_url": "https://comicvine.gamespot.com/atlantic-special-9-spindelns-strid-mot-hulk/4000-712737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712596/", + "id": 712596, + "name": "Spindeln i team med Straffaren", + "site_detail_url": "https://comicvine.gamespot.com/atlantic-special-6-spindeln-i-team-med-straffaren/4000-712596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712388/", + "id": 712388, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-50/4000-712388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712269/", + "id": 712269, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/almanaque-do-capitao-america-49/4000-712269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712158/", + "id": 712158, + "name": "Spindeln i Photons vald", + "site_detail_url": "https://comicvine.gamespot.com/atlantic-special-2-spindeln-i-photons-vald/4000-712158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-712106/", + "id": 712106, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvel-9/4000-712106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-711794/", + "id": 711794, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvel-7/4000-711794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710372/", + "id": 710372, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/os-vingadores-1/4000-710372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708937/", + "id": 708937, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvel-2/4000-708937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708199/", + "id": 708199, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-versus-marvel-1/4000-708199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707773/", + "id": 707773, + "name": "Homem-Aranha: Azul", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-25-home/4000-707773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707542/", + "id": 707542, + "name": "O Espetacular Homem-Aranha: Revelações & Até Que as Estrelas Esfriem", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-22-o-es/4000-707542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707367/", + "id": 707367, + "name": "O Espetacular Homem-Aranha: De Volta ao Lar", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-21-o-es/4000-707367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-707237/", + "id": 707237, + "name": "Ultimate Homem-Aranha: Poder e Responsabilidade", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-20-ulti/4000-707237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706718/", + "id": 706718, + "name": "Marvels", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-13-marv/4000-706718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706466/", + "id": 706466, + "name": "O Espetacular Homem-Aranha: A Última Caçada de Kraven", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-9-o-esp/4000-706466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706264/", + "id": 706264, + "name": "Guerras Secretas: Parte 2", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-7-guerr/4000-706264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-706101/", + "id": 706101, + "name": "Guerras Secretas: Parte 1", + "site_detail_url": "https://comicvine.gamespot.com/a-colecao-oficial-de-graphic-novels-marvel-6-guerr/4000-706101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704915/", + "id": 704915, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-20/4000-704915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704896/", + "id": 704896, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-19/4000-704896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704557/", + "id": 704557, + "name": "Irreconheciveis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-16-irreconheciveis/4000-704557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704498/", + "id": 704498, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-17/4000-704498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704331/", + "id": 704331, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-16/4000-704331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704217/", + "id": 704217, + "name": "Restos Mortais ", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-15-restos-mortais/4000-704217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704215/", + "id": 704215, + "name": "El Legado de Osborn!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-559-el-legado-de-osborn/4000-704215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704214/", + "id": 704214, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-558/4000-704214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704213/", + "id": 704213, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-557/4000-704213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704212/", + "id": 704212, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-556/4000-704212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704136/", + "id": 704136, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-555/4000-704136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704135/", + "id": 704135, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-554/4000-704135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704134/", + "id": 704134, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-553/4000-704134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704133/", + "id": 704133, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-552/4000-704133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704132/", + "id": 704132, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-551/4000-704132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704091/", + "id": 704091, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-14/4000-704091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704089/", + "id": 704089, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-550/4000-704089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704088/", + "id": 704088, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-549/4000-704088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704087/", + "id": 704087, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-548/4000-704087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704086/", + "id": 704086, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-547/4000-704086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704085/", + "id": 704085, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-546/4000-704085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704069/", + "id": 704069, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-13/4000-704069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704068/", + "id": 704068, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-545/4000-704068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704067/", + "id": 704067, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-544/4000-704067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704066/", + "id": 704066, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-543/4000-704066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704065/", + "id": 704065, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-542/4000-704065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704064/", + "id": 704064, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-541/4000-704064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703834/", + "id": 703834, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-540/4000-703834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703833/", + "id": 703833, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-539/4000-703833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703832/", + "id": 703832, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-538/4000-703832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703831/", + "id": 703831, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-537/4000-703831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703830/", + "id": 703830, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-536/4000-703830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703659/", + "id": 703659, + "name": "Tratamento de Choque", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-12-tratamento-de-choque/4000-703659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703658/", + "id": 703658, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-535/4000-703658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703657/", + "id": 703657, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-534/4000-703657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703656/", + "id": 703656, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-533/4000-703656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703655/", + "id": 703655, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-532/4000-703655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703654/", + "id": 703654, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-531/4000-703654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703277/", + "id": 703277, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-530/4000-703277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703276/", + "id": 703276, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-529/4000-703276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703275/", + "id": 703275, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-528/4000-703275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703274/", + "id": 703274, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-527/4000-703274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703273/", + "id": 703273, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-526/4000-703273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703258/", + "id": 703258, + "name": "Cacciatori e cacciati", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-370-cacciatori-e-cacciati/4000-703258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702992/", + "id": 702992, + "name": "Infierno Subterraneo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-525-infierno-subterraneo/4000-702992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702991/", + "id": 702991, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-524/4000-702991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702990/", + "id": 702990, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-523/4000-702990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702989/", + "id": 702989, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-522/4000-702989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702988/", + "id": 702988, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-521/4000-702988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702987/", + "id": 702987, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-520/4000-702987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702986/", + "id": 702986, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-519/4000-702986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702985/", + "id": 702985, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-518/4000-702985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702815/", + "id": 702815, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-517/4000-702815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702814/", + "id": 702814, + "name": "Venom Vive!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-516-venom-vive/4000-702814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702733/", + "id": 702733, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-515/4000-702733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702732/", + "id": 702732, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-514/4000-702732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702731/", + "id": 702731, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-513/4000-702731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702730/", + "id": 702730, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-512/4000-702730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702729/", + "id": 702729, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-511/4000-702729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702629/", + "id": 702629, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-510/4000-702629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702628/", + "id": 702628, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-509/4000-702628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702627/", + "id": 702627, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-508/4000-702627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702626/", + "id": 702626, + "name": "Sin Poderes!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-507-sin-poderes/4000-702626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702625/", + "id": 702625, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-506/4000-702625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702554/", + "id": 702554, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-505/4000-702554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702553/", + "id": 702553, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-504/4000-702553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702552/", + "id": 702552, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-503/4000-702552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702551/", + "id": 702551, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-502/4000-702551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702550/", + "id": 702550, + "name": "El Ejecutor Debe Morir!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-501-el-ejecutor-debe-mor/4000-702550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702172/", + "id": 702172, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-500/4000-702172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702171/", + "id": 702171, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-499/4000-702171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702170/", + "id": 702170, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-498/4000-702170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702169/", + "id": 702169, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-497/4000-702169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702168/", + "id": 702168, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-496/4000-702168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702067/", + "id": 702067, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-495/4000-702067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702066/", + "id": 702066, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-494/4000-702066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702065/", + "id": 702065, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-493/4000-702065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702064/", + "id": 702064, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-492/4000-702064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702063/", + "id": 702063, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-491/4000-702063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702019/", + "id": 702019, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-490/4000-702019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702018/", + "id": 702018, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-489/4000-702018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702017/", + "id": 702017, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-488/4000-702017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702016/", + "id": 702016, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-487/4000-702016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702015/", + "id": 702015, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-486/4000-702015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702014/", + "id": 702014, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-485/4000-702014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702013/", + "id": 702013, + "name": "¡Mira! ¡Nada Ni Nadie Puede Detenerlo! ¡Y Ahora Puede Volar!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-484-mira-nada-ni-nadie-p/4000-702013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702012/", + "id": 702012, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-483/4000-702012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702011/", + "id": 702011, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-482/4000-702011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702010/", + "id": 702010, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-481/4000-702010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701501/", + "id": 701501, + "name": "De Volta as Raizes", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-10-de-volta-as-raizes/4000-701501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701494/", + "id": 701494, + "name": "Se Escuchan Sus Pisadas... Se Ven Sus Huellas... Él es ¡El Grizzly!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-480-se-escuchan-sus-pisa/4000-701494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701493/", + "id": 701493, + "name": "Su Nombre es Banjo ¡Y Odia que lo Molesten!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-479-su-nombre-es-banjo-y/4000-701493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701492/", + "id": 701492, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-478/4000-701492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701491/", + "id": 701491, + "name": "El Atacante Identificado: Dientes de Sable", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-477-el-atacante-identifi/4000-701491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701490/", + "id": 701490, + "name": "Ceremonia!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-476-ceremonia/4000-701490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701458/", + "id": 701458, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-475/4000-701458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701457/", + "id": 701457, + "name": "Crisis!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-474-crisis/4000-701457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701456/", + "id": 701456, + "name": "El Paladin", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-473-el-paladin/4000-701456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701455/", + "id": 701455, + "name": "El Camaleon", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-472-el-camaleon/4000-701455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701454/", + "id": 701454, + "name": "¡Lobos en la Noche!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-471-lobos-en-la-noche/4000-701454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701383/", + "id": 701383, + "name": "La Arena y la Furia", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-470-la-arena-y-la-furia/4000-701383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701382/", + "id": 701382, + "name": "¡Condena Infernal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-469-condena-infernal/4000-701382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701381/", + "id": 701381, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-468/4000-701381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701380/", + "id": 701380, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-467/4000-701380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-701379/", + "id": 701379, + "name": "¡Cuestión de Vida y Deuda!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-466-cuestion-de-vida-y-d/4000-701379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700842/", + "id": 700842, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-9/4000-700842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700836/", + "id": 700836, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-465/4000-700836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700835/", + "id": 700835, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-464/4000-700835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700834/", + "id": 700834, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-463/4000-700834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700833/", + "id": 700833, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-462/4000-700833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700832/", + "id": 700832, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-461/4000-700832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700348/", + "id": 700348, + "name": "¡Demonio Nocturno!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-460-demonio-nocturno/4000-700348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700347/", + "id": 700347, + "name": "¡El Poder del Odio!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-459-el-poder-del-odio/4000-700347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700346/", + "id": 700346, + "name": "¡La Fuerza de el Azor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-458-la-fuerza-de-el-azor/4000-700346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700345/", + "id": 700345, + "name": "¡Vientos de Muerte!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-457-vientos-de-muerte/4000-700345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700344/", + "id": 700344, + "name": "¡Terror!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-456-terror/4000-700344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700315/", + "id": 700315, + "name": "Zona de Guerra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-455-zona-de-guerra/4000-700315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700314/", + "id": 700314, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-454/4000-700314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700313/", + "id": 700313, + "name": "Tombstone!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-453-tombstone/4000-700313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700312/", + "id": 700312, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-452/4000-700312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-700311/", + "id": 700311, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-451/4000-700311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699981/", + "id": 699981, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-8/4000-699981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699978/", + "id": 699978, + "name": "¡Auto de Fe!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-450-auto-de-fe/4000-699978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699977/", + "id": 699977, + "name": " ¡Esa Antigua Religión!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-449-esa-antigua-religion/4000-699977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699976/", + "id": 699976, + "name": "¡Todo lo que Necesitas es Amor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-448-todo-lo-que-necesita/4000-699976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699970/", + "id": 699970, + "name": "¡Regresa Sable!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-447-regresa-sable/4000-699970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699968/", + "id": 699968, + "name": "¡Extraña Misión!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-446-extrana-mision/4000-699968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699803/", + "id": 699803, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-7/4000-699803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699796/", + "id": 699796, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-445-venom/4000-699796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699795/", + "id": 699795, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-444/4000-699795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699794/", + "id": 699794, + "name": "¡Cuando Ataca el Azote!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-443-cuando-ataca-el-azot/4000-699794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699793/", + "id": 699793, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-442/4000-699793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699792/", + "id": 699792, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-441/4000-699792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699702/", + "id": 699702, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-6/4000-699702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699698/", + "id": 699698, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-440/4000-699698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699697/", + "id": 699697, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-439/4000-699697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699696/", + "id": 699696, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-438/4000-699696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699695/", + "id": 699695, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-437/4000-699695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699694/", + "id": 699694, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-436/4000-699694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699306/", + "id": 699306, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-435/4000-699306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699305/", + "id": 699305, + "name": "El Ataud", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-434-el-ataud/4000-699305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699304/", + "id": 699304, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-433/4000-699304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699303/", + "id": 699303, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-432/4000-699303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699302/", + "id": 699302, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-431/4000-699302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699147/", + "id": 699147, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-430/4000-699147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699146/", + "id": 699146, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-429/4000-699146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699145/", + "id": 699145, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-428/4000-699145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699144/", + "id": 699144, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-427/4000-699144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699143/", + "id": 699143, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-426/4000-699143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699071/", + "id": 699071, + "name": "Pesadilla Sobre Manhattan!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-425-pesadilla-sobre-manh/4000-699071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699070/", + "id": 699070, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-424/4000-699070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699069/", + "id": 699069, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-423/4000-699069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699068/", + "id": 699068, + "name": "El Azar", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-422-el-azar/4000-699068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699067/", + "id": 699067, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-421/4000-699067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699050/", + "id": 699050, + "name": "Edderkoppen mod Photon", + "site_detail_url": "https://comicvine.gamespot.com/super-special-2-edderkoppen-mod-photon/4000-699050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699017/", + "id": 699017, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-5/4000-699017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699009/", + "id": 699009, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-420/4000-699009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699008/", + "id": 699008, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-419/4000-699008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699007/", + "id": 699007, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-418/4000-699007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699006/", + "id": 699006, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-417/4000-699006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-699004/", + "id": 699004, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-416/4000-699004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698880/", + "id": 698880, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-4/4000-698880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698873/", + "id": 698873, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-415/4000-698873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698872/", + "id": 698872, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-414/4000-698872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698871/", + "id": 698871, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-413/4000-698871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698870/", + "id": 698870, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-412/4000-698870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698869/", + "id": 698869, + "name": "La Mujer Arana", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-411-la-mujer-arana/4000-698869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698785/", + "id": 698785, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-3/4000-698785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698779/", + "id": 698779, + "name": "La Flama Regresa!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-410-la-flama-regresa/4000-698779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698778/", + "id": 698778, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-409/4000-698778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698777/", + "id": 698777, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-408/4000-698777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698776/", + "id": 698776, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-407/4000-698776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698775/", + "id": 698775, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-406/4000-698775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698725/", + "id": 698725, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-aranhaverso-2/4000-698725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698724/", + "id": 698724, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-405/4000-698724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698723/", + "id": 698723, + "name": "Guerra de Pandillas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-404-guerra-de-pandillas/4000-698723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698722/", + "id": 698722, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-403/4000-698722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698721/", + "id": 698721, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-402/4000-698721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698720/", + "id": 698720, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-401/4000-698720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698559/", + "id": 698559, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-400/4000-698559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698558/", + "id": 698558, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-399/4000-698558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698557/", + "id": 698557, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-398/4000-698557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698556/", + "id": 698556, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-397/4000-698556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698555/", + "id": 698555, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-396/4000-698555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698473/", + "id": 698473, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-395/4000-698473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698472/", + "id": 698472, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-394/4000-698472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698471/", + "id": 698471, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-393/4000-698471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698470/", + "id": 698470, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-392/4000-698470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698469/", + "id": 698469, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-391/4000-698469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698397/", + "id": 698397, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-390/4000-698397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698396/", + "id": 698396, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-389/4000-698396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698395/", + "id": 698395, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-388/4000-698395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698394/", + "id": 698394, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-387/4000-698394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-698393/", + "id": 698393, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-386/4000-698393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697867/", + "id": 697867, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-385/4000-697867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697866/", + "id": 697866, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-384/4000-697866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697865/", + "id": 697865, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-383/4000-697865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697864/", + "id": 697864, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-382/4000-697864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697863/", + "id": 697863, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-381/4000-697863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697801/", + "id": 697801, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-380/4000-697801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697800/", + "id": 697800, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-379/4000-697800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697799/", + "id": 697799, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-378/4000-697799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697798/", + "id": 697798, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-377/4000-697798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697797/", + "id": 697797, + "name": "El Puma", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-376-el-puma/4000-697797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697749/", + "id": 697749, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/daredevil-1/4000-697749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697737/", + "id": 697737, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-375/4000-697737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697736/", + "id": 697736, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-374/4000-697736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697735/", + "id": 697735, + "name": "La Rosa! ", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-373-la-rosa/4000-697735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697734/", + "id": 697734, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-372/4000-697734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697733/", + "id": 697733, + "name": "Finales!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-371-finales/4000-697733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697541/", + "id": 697541, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-370/4000-697541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697538/", + "id": 697538, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-369/4000-697538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697532/", + "id": 697532, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-368/4000-697532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697529/", + "id": 697529, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-367/4000-697529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697526/", + "id": 697526, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-366/4000-697526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697398/", + "id": 697398, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-365/4000-697398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697397/", + "id": 697397, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-364/4000-697397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697396/", + "id": 697396, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-363/4000-697396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697395/", + "id": 697395, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-362/4000-697395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697393/", + "id": 697393, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-361/4000-697393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697119/", + "id": 697119, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-360/4000-697119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697118/", + "id": 697118, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-359/4000-697118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697117/", + "id": 697117, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-358/4000-697117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697116/", + "id": 697116, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-357/4000-697116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-697115/", + "id": 697115, + "name": "Ataca el Devorador!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-356-ataca-el-devorador/4000-697115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696984/", + "id": 696984, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-355/4000-696984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696983/", + "id": 696983, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-354/4000-696983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696982/", + "id": 696982, + "name": "La Avispa!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-353-la-avispa/4000-696982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696981/", + "id": 696981, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-352/4000-696981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696980/", + "id": 696980, + "name": "Tu Sigues!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-351-tu-sigues/4000-696980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696850/", + "id": 696850, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-350/4000-696850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696849/", + "id": 696849, + "name": "Ecos...", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-349-ecos/4000-696849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696848/", + "id": 696848, + "name": "¡Y la Batalla Continúa!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-348-y-la-batalla-continu/4000-696848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696847/", + "id": 696847, + "name": "¡Rompimiento!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-347-rompimiento/4000-696847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696846/", + "id": 696846, + "name": "¡El Araña y la Mancha!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-346-el-arana-y-la-mancha/4000-696846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696729/", + "id": 696729, + "name": " ¡Confesiones!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-345-confesiones/4000-696729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696728/", + "id": 696728, + "name": "¡El Ermitaño!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-344-el-ermitano/4000-696728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696712/", + "id": 696712, + "name": "¡La Respuesta Final!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-343-la-respuesta-final/4000-696712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696711/", + "id": 696711, + "name": "¡La Daga al Final del Tunel!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-342-la-daga-al-final-del/4000-696711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696710/", + "id": 696710, + "name": "¡El Nuevo Agente de el Rey!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-341-el-nuevo-agente-de-e/4000-696710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696707/", + "id": 696707, + "name": "¡La Cosa Está que Arde en la Vieja Morgue!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-340-la-cosa-esta-que-ard/4000-696707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696706/", + "id": 696706, + "name": "Y la Respuesta Es ...", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-339-y-la-respuesta-es/4000-696706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696636/", + "id": 696636, + "name": "Si no Fuera por la Mala Suerte...", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-338-si-no-fuera-por-la-m/4000-696636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696635/", + "id": 696635, + "name": "¿Dónde Podrá Estar el Araña?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-337-donde-podra-estar-el/4000-696635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696634/", + "id": 696634, + "name": "¡En Busca del Poder!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-336-en-busca-del-poder/4000-696634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696550/", + "id": 696550, + "name": "¡La Venganza de Mister Hyde!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-335-la-venganza-de-miste/4000-696550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696549/", + "id": 696549, + "name": "¡Identidades Equivocadas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-334-identidades-equivoca/4000-696549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696548/", + "id": 696548, + "name": "¡La Furia de el Nuevo Duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-333-la-furia-de-el-nuevo/4000-696548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696547/", + "id": 696547, + "name": "¡Cuando Golpea es como un Trueno!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-332-cuando-golpea-es-com/4000-696547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696546/", + "id": 696546, + "name": "¡Interrupciones!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-331-interrupciones/4000-696546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696420/", + "id": 696420, + "name": "¡Los Soñadores!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-330-los-sonadores/4000-696420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696419/", + "id": 696419, + "name": "¡Juego de Sacrificio!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-329-juego-de-sacrificio/4000-696419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696418/", + "id": 696418, + "name": "¡Pruebas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-328-pruebas/4000-696418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696417/", + "id": 696417, + "name": "¡Opciones!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-327-opciones/4000-696417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-696416/", + "id": 696416, + "name": "¡Confrontaciones!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-326-confrontaciones/4000-696416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695785/", + "id": 695785, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-10/4000-695785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695773/", + "id": 695773, + "name": "¡Alas de Venganza! (segunda parte)", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-325-alas-de-venganza-seg/4000-695773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695772/", + "id": 695772, + "name": "¡Alas de Venganza!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-324-alas-de-venganza/4000-695772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695771/", + "id": 695771, + "name": "¡Ahora Ataca el Nuevo Duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-323-ahora-ataca-el-nuevo/4000-695771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695770/", + "id": 695770, + "name": "¡Sombras de un Pasado Maligno!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-322-sombras-de-un-pasado/4000-695770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695769/", + "id": 695769, + "name": "¡Grande y Poderoso!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-321-grande-y-poderoso/4000-695769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695734/", + "id": 695734, + "name": "¡Doble Muerte!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-320-doble-muerte/4000-695734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695733/", + "id": 695733, + "name": "¡Cuidado, Aquí Viene un Monstruo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-319-cuidado-aqui-viene-u/4000-695733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695732/", + "id": 695732, + "name": "¡Fuego Fatuo Cobrará Venganza!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-318-fuego-fatuo-cobrara-/4000-695732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695731/", + "id": 695731, + "name": "¿Dónde Está Nariz Norton?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-317-donde-esta-nariz-nor/4000-695731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695730/", + "id": 695730, + "name": "¡Hyde a Plena Vista!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-316-hyde-a-plena-vista/4000-695730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695483/", + "id": 695483, + "name": "¡Atrapado!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-315-atrapado/4000-695483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695482/", + "id": 695482, + "name": "¡El Enemigo Invencible!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-314-el-enemigo-invencibl/4000-695482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695481/", + "id": 695481, + "name": "¡Nada Detiene a Leviatán!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-313-nada-detiene-a-levia/4000-695481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695480/", + "id": 695480, + "name": "¡Asesinato por Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-312-asesinato-por-arana/4000-695480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695479/", + "id": 695479, + "name": "¡La Enmienda de la Gata Negra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-311-la-enmienda-de-la-ga/4000-695479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695170/", + "id": 695170, + "name": "¡Regresó la Gata Negra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-310-regreso-la-gata-negr/4000-695170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695169/", + "id": 695169, + "name": "¡Los Tontos Mueren!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-309-los-tontos-mueren/4000-695169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695168/", + "id": 695168, + "name": "¡La Llegada de una Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-308-la-llegada-de-una-ar/4000-695168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695166/", + "id": 695166, + "name": "¡Dame Libertad o Dame Muerte!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-307-dame-libertad-o-dame/4000-695166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695165/", + "id": 695165, + "name": "¡Deja Volar esas Viejas Alas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-306-deja-volar-esas-viej/4000-695165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695133/", + "id": 695133, + "name": "¡La Noche del Simio!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-305-la-noche-del-simio/4000-695133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695132/", + "id": 695132, + "name": "¡Más Rápido que el Ojo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-304-mas-rapido-que-el-oj/4000-695132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695131/", + "id": 695131, + "name": "¡Blues para el Solitario Pinky!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-303-blues-para-el-solita/4000-695131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695130/", + "id": 695130, + "name": "¡Un Ataúd para el Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-302-un-ataud-para-el-ara/4000-695130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695129/", + "id": 695129, + "name": "Peter Parker... ¡Criminal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-301-peter-parker-crimina/4000-695129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695102/", + "id": 695102, + "name": "¡Mi Bebé Ha Sido Secuestrado!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-300-mi-bebe-ha-sido-secu/4000-695102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695101/", + "id": 695101, + "name": "¡Nace una Leyenda!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-299-nace-una-leyenda/4000-695101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695100/", + "id": 695100, + "name": "¡Ilusiones!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-298-ilusiones/4000-695100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695099/", + "id": 695099, + "name": "¡Crimen y Castigo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-297-crimen-y-castigo/4000-695099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695098/", + "id": 695098, + "name": "¡Cazando en las Sombras!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-296-cazando-en-las-sombr/4000-695098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695073/", + "id": 695073, + "name": " ¡Yo Cubro los Muelles!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-295-yo-cubro-los-muelles/4000-695073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695072/", + "id": 695072, + "name": "¡La Batalla Final!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-294-la-batalla-final/4000-695072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695071/", + "id": 695071, + "name": "¡El Largo Camino!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-293-el-largo-camino/4000-695071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695070/", + "id": 695070, + "name": "¡Regresión!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-292-regresion/4000-695070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695009/", + "id": 695009, + "name": "¡El Umbral de la Muerte", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-291-el-umbral-de-la-muer/4000-695009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694987/", + "id": 694987, + "name": "¿Quién Sobrevivirá?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-290-quien-sobrevivira/4000-694987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694986/", + "id": 694986, + "name": "¡Ferrae Naturae!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-289-ferrae-naturae/4000-694986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694985/", + "id": 694985, + "name": "¡Fantasía!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-288-fantasia/4000-694985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694984/", + "id": 694984, + "name": "¡Entre el Buho y el Pulpo! ", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-287-entre-el-buho-y-el-p/4000-694984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694983/", + "id": 694983, + "name": "¡La Espera del Doctor Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-286-la-espera-del-doctor/4000-694983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694792/", + "id": 694792, + "name": "Deadpool: The Good, the Bad and the Ugly", + "site_detail_url": "https://comicvine.gamespot.com/the-all-killer-no-filler-deadpool-collection-71-de/4000-694792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694790/", + "id": 694790, + "name": "¡Con esta Arma Has de Morir!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-285-con-esta-arma-has-de/4000-694790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694789/", + "id": 694789, + "name": "¡La Cacería de Capa y Daga!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-284-la-caceria-de-capa-y/4000-694789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694788/", + "id": 694788, + "name": "¡El Regreso de Capa y Daga!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-283-el-regreso-de-capa-y/4000-694788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694787/", + "id": 694787, + "name": "¡No Hay Infierno como el de el Profesor Strom!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-282-no-hay-infierno-como/4000-694787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694786/", + "id": 694786, + "name": "¡Boomerang, la Vuelta del Asesino!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-281-boomerang-la-vuelta-/4000-694786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694705/", + "id": 694705, + "name": "¡Electro Será Libre!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-280-electro-sera-libre/4000-694705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694704/", + "id": 694704, + "name": "¡Caza sin Gloria!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-279-caza-sin-gloria/4000-694704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694703/", + "id": 694703, + "name": "¡Capa y Daga!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-278-capa-y-daga/4000-694703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694702/", + "id": 694702, + "name": "¡El Incendiario!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-277-el-incendiario/4000-694702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694701/", + "id": 694701, + "name": "¡Fiebre de Oro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-276-fiebre-de-oro/4000-694701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694658/", + "id": 694658, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-275/4000-694658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694657/", + "id": 694657, + "name": "¡Triste Victoria!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-274-triste-victoria/4000-694657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694656/", + "id": 694656, + "name": "¡Se Busca a el Hombre Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-273-se-busca-a-el-hombre/4000-694656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694655/", + "id": 694655, + "name": "¡Adiós a lo Viejo, que Llega lo Nuevo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-272-adios-a-lo-viejo-que/4000-694655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694654/", + "id": 694654, + "name": "¡Estás Alas Esclavizadas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-271-estas-alas-esclaviza/4000-694654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694407/", + "id": 694407, + "name": "Lest We Forget!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-amazing-spider-man-1-lest-we-f/4000-694407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694395/", + "id": 694395, + "name": "El Peligro de ... ¿La Calabaza?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-270-el-peligro-de-la-cal/4000-694395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694394/", + "id": 694394, + "name": "¡El Gran Apagón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-269-el-gran-apagon/4000-694394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694393/", + "id": 694393, + "name": "¡Salvar al Contrabandista!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-268-salvar-al-contraband/4000-694393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694392/", + "id": 694392, + "name": "¡Juguetes del Terrible Inventor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-267-juguetes-del-terribl/4000-694392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694391/", + "id": 694391, + "name": "¡El Día del Asesino de Héroes!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-266-el-dia-del-asesino-d/4000-694391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694358/", + "id": 694358, + "name": "¡Crisis Extraterrestre!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-265-crisis-extraterrestr/4000-694358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694357/", + "id": 694357, + "name": "¡Dilema!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-264-dilema/4000-694357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694356/", + "id": 694356, + "name": "¡Llega el Contrabandista!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-263-llega-el-contrabandi/4000-694356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694355/", + "id": 694355, + "name": "¡Doble Derrota!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-262-doble-derrota/4000-694355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694354/", + "id": 694354, + "name": "¡Una Noche al Acecho!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-261-una-noche-al-acecho/4000-694354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694271/", + "id": 694271, + "name": "¡Mortal como la Cobra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-260-mortal-como-la-cobra/4000-694271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694270/", + "id": 694270, + "name": "¡Alas de Fuego, Alas de Miedo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-259-alas-de-fuego-alas-d/4000-694270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694269/", + "id": 694269, + "name": "¡Lindo Veneno!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-258-lindo-veneno/4000-694269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694268/", + "id": 694268, + "name": "¡Lindo Veneno!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-257-lindo-veneno/4000-694268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694267/", + "id": 694267, + "name": "¡Locura Meteórica!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-256-locura-meteorica/4000-694267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694210/", + "id": 694210, + "name": "¡Macabra Metamorfosis!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-255-macabra-metamorfosis/4000-694210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694209/", + "id": 694209, + "name": "¡La Maldición del Esquizoide!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-254-la-maldicion-del-esq/4000-694209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694208/", + "id": 694208, + "name": "¡La Maldición del Vampiro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-253-la-maldicion-del-vam/4000-694208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694207/", + "id": 694207, + "name": "¡La Colmena Mortal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-252-la-colmena-mortal/4000-694207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694206/", + "id": 694206, + "name": "¡Ataca el Enjambre!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-251-ataca-el-enjambre/4000-694206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694048/", + "id": 694048, + "name": "¡Laberinto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-250-laberinto/4000-694048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694047/", + "id": 694047, + "name": "¡Lagartos Sobre el Tejado Caliente!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-249-lagartos-sobre-el-te/4000-694047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694025/", + "id": 694025, + "name": "¡La Noche de la Iguana!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-248-la-noche-de-la-iguan/4000-694025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694024/", + "id": 694024, + "name": "¡Una Historia Salvaje!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-247-una-historia-salvaje/4000-694024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694023/", + "id": 694023, + "name": "¡Hasta que la Muerte nos Separe!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-246-hasta-que-la-muerte-/4000-694023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693891/", + "id": 693891, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-5/4000-693891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693890/", + "id": 693890, + "name": "¡En Secreto, como en la Tumba!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-245-en-secreto-como-en-l/4000-693890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693889/", + "id": 693889, + "name": "¡... Y Polvo Serás!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-244-y-polvo-seras/4000-693889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693888/", + "id": 693888, + "name": "¡Polvo eres...!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-243-polvo-eres/4000-693888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693887/", + "id": 693887, + "name": "¡Un Ciego Guía a los Ciegos!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-242-un-ciego-guia-a-los-/4000-693887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693886/", + "id": 693886, + "name": "¡Mis Ojos Han Visto la Gloria!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-241-mis-ojos-han-visto-l/4000-693886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693761/", + "id": 693761, + "name": "Jagd auf Slapstick", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-4-jagd-auf-slapstick/4000-693761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693760/", + "id": 693760, + "name": "¡Carroña, Mi Errante Hijo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-240-carrona-mi-errante-h/4000-693760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693759/", + "id": 693759, + "name": "¡Fiebre de el Hombre Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-239-fiebre-de-el-hombre-/4000-693759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693758/", + "id": 693758, + "name": "¿Quién Está Enterrado en la Tumba de Grant?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-238-quien-esta-enterrado/4000-693758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693757/", + "id": 693757, + "name": "¡De la Noche Surge... El Caballero Lunar!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-237-de-la-noche-surge-el/4000-693757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693756/", + "id": 693756, + "name": "¡Años Después Continúa la Locura! ", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-236-anos-despues-continu/4000-693756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693755/", + "id": 693755, + "name": "¿Dónde Estabas cuando la Luz se Apagó?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-235-donde-estabas-cuando/4000-693755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693711/", + "id": 693711, + "name": "Ziemlich nicht so beste Freunde", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-3-ziemlich-nicht-so-beste-freun/4000-693711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693710/", + "id": 693710, + "name": "¡De Nuevo, los Truhanes!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-234-de-nuevo-los-truhane/4000-693710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693709/", + "id": 693709, + "name": "¡Mi Amigo, Mi Enemigo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-233-mi-amigo-mi-enemigo/4000-693709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693708/", + "id": 693708, + "name": "¿Dónde Quedó el Hombre de Hielo?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-232-donde-quedo-el-hombr/4000-693708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693690/", + "id": 693690, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/giant-team-up-annual-1-spider-man/4000-693690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693669/", + "id": 693669, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-2/4000-693669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693668/", + "id": 693668, + "name": "¡Entre el Honor y el Deber!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-231-entre-el-honor-y-el-/4000-693668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693610/", + "id": 693610, + "name": "¡La Furia Final!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-230-la-furia-final/4000-693610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693609/", + "id": 693609, + "name": "¡Mátame Suavemente con tu Odio!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-229-matame-suavemente-co/4000-693609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693608/", + "id": 693608, + "name": "¡La Llegada de el jabalí!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-228-la-llegada-de-el-jab/4000-693608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693607/", + "id": 693607, + "name": "¡Hermano Poder, Hermana Sol!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-227-hermano-poder-herman/4000-693607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693606/", + "id": 693606, + "name": "¡Cuestión de Vida o Muerte!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-226-cuestion-de-vida-o-m/4000-693606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693531/", + "id": 693531, + "name": "¡El Tigre en una Telaraña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-225-el-tigre-en-una-tela/4000-693531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693530/", + "id": 693530, + "name": "¡Un Tigre en la Noche!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-224-un-tigre-en-la-noche/4000-693530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693529/", + "id": 693529, + "name": "¡Únicamente Uno Vivirá!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-223-unicamente-uno-vivir/4000-693529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693528/", + "id": 693528, + "name": "¡El Retorno del Vampiro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-222-el-retorno-del-vampi/4000-693528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693408/", + "id": 693408, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-1/4000-693408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693352/", + "id": 693352, + "name": "¡El Poder de Morbius!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-221-el-poder-de-morbius/4000-693352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693265/", + "id": 693265, + "name": "¡Matar a el Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-220-matar-a-el-arana/4000-693265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693264/", + "id": 693264, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-219/4000-693264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693262/", + "id": 693262, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-218/4000-693262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693261/", + "id": 693261, + "name": "¡La Tarántula Pica Dos Veces!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-217-la-tarantula-pica-do/4000-693261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693260/", + "id": 693260, + "name": "¡La Tarántula Pica Dos Veces!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-216-la-tarantula-pica-do/4000-693260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693224/", + "id": 693224, + "name": "¡Metamorfosis Fatal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-215-metamorfosis-fatal/4000-693224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693223/", + "id": 693223, + "name": "¡Surgirá del Fango!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-214-surgira-del-fango/4000-693223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693222/", + "id": 693222, + "name": "¡Maratón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-213-maraton/4000-693222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693221/", + "id": 693221, + "name": "¡Por mis Poderes Seré Vencido!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-212-por-mis-poderes-sere/4000-693221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693220/", + "id": 693220, + "name": "¡Ambos Seremos Traicionados!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-211-ambos-seremos-traici/4000-693220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692326/", + "id": 692326, + "name": "¡Sólo Desean Matarte, Hombre Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-210-solo-desean-matarte-/4000-692326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692325/", + "id": 692325, + "name": "¡La Llegada de Hidromán!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-209-la-llegada-de-hidrom/4000-692325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692324/", + "id": 692324, + "name": "¡El Araña Contra Namor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-208-el-arana-contra-namo/4000-692324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692323/", + "id": 692323, + "name": "¡La Profecía de Madame Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-207-la-profecia-de-madam/4000-692323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692322/", + "id": 692322, + "name": "¡Para Salvar mi Honor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-206-para-salvar-mi-honor/4000-692322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692245/", + "id": 692245, + "name": "¡Fusión!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-205-fusion/4000-692245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692244/", + "id": 692244, + "name": "¡Mésmero y su Fatal Venganza!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-204-mesmero-y-su-fatal-v/4000-692244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692243/", + "id": 692243, + "name": "¡Un Método en su Locura!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-203-un-metodo-en-su-locu/4000-692243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692242/", + "id": 692242, + "name": "¡En la Guerra y en el Amor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-202-en-la-guerra-y-en-el/4000-692242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692241/", + "id": 692241, + "name": "¡Noche Oscura, Gata Negra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-201-noche-oscura-gata-ne/4000-692241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692187/", + "id": 692187, + "name": "¡Bajo el Hechizo de Dazzler!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-200-bajo-el-hechizo-de-d/4000-692187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692186/", + "id": 692186, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-199/4000-692186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692185/", + "id": 692185, + "name": "¡Cacería!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-198-caceria/4000-692185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692184/", + "id": 692184, + "name": "¡Detrás de la Presa!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-197-detras-de-la-presa/4000-692184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692183/", + "id": 692183, + "name": "¡El Araña y el Ladrón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-196-el-arana-y-el-ladron/4000-692183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692144/", + "id": 692144, + "name": "¡Veme Ahora, y Muere Después!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-195-veme-ahora-y-muere-d/4000-692144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692143/", + "id": 692143, + "name": "¡Misterio es más Mortal por Docena!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-194-misterio-es-mas-mort/4000-692143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692142/", + "id": 692142, + "name": "¡El Rey Ataca a la Medianoche!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-193-el-rey-ataca-a-la-me/4000-692142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692141/", + "id": 692141, + "name": "¡Réquiem!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-192-requiem/4000-692141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691981/", + "id": 691981, + "name": "¡Las Nueve Vidas de la Gata Negra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-191-las-nueve-vidas-de-l/4000-691981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691842/", + "id": 691842, + "name": "¡Que Nunca Cruce tu Camino la Gata Negra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-190-que-nunca-cruce-tu-c/4000-691842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691841/", + "id": 691841, + "name": "¡Sobre las Alas de la Mosca!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-189-sobre-las-alas-de-la/4000-691841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691840/", + "id": 691840, + "name": "¡24 Horas para Morir!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-188-24-horas-para-morir/4000-691840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691839/", + "id": 691839, + "name": "¡Buscado por Homicidio!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-187-buscado-por-homicidi/4000-691839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691838/", + "id": 691838, + "name": " ¡En Busca de el Hombre Lobo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-186-en-busca-de-el-hombr/4000-691838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691735/", + "id": 691735, + "name": "¡Caos Bajo la Luz de la Luna!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-185-caos-bajo-la-luz-de-/4000-691735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691734/", + "id": 691734, + "name": "¡Ataca el Rompecabezas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-184-ataca-el-rompecabeza/4000-691734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691733/", + "id": 691733, + "name": "¡El Poder de Electro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-183-el-poder-de-electro/4000-691733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691732/", + "id": 691732, + "name": "¡Caos es el Camaleón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-182-caos-es-el-camaleon/4000-691732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691731/", + "id": 691731, + "name": "¡Una Araña en lo Alto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-181-una-arana-en-lo-alto/4000-691731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691681/", + "id": 691681, + "name": "¡Draǵon Blanco, Muerte Roja!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-180-dragon-blanco-muerte/4000-691681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691680/", + "id": 691680, + "name": "¡Dónde el Disco Para, Nadie Sabe que Pasará!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-179-donde-el-disco-para-/4000-691680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691679/", + "id": 691679, + "name": "¡Otra Vez en Nueva York el Cohete!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-178-otra-vez-en-nueva-yo/4000-691679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691678/", + "id": 691678, + "name": "¡Memorias!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-177-memorias/4000-691678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691677/", + "id": 691677, + "name": "¿Quién Era el Duende con el que te Ví?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-176-quien-era-el-duende-/4000-691677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691597/", + "id": 691597, + "name": "¡El Duende Siempre Verde!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-175-el-duende-siempre-ve/4000-691597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691596/", + "id": 691596, + "name": "¡Verde Surge el duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-174-verde-surge-el-duend/4000-691596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691595/", + "id": 691595, + "name": "¡La Amenaza Verde!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-173-la-amenaza-verde/4000-691595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691594/", + "id": 691594, + "name": "¡El Que Ríe al Último!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-172-el-que-rie-al-ultimo/4000-691594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691593/", + "id": 691593, + "name": "¡Batalla en Nueva York!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-171-batalla-en-nueva-yor/4000-691593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691523/", + "id": 691523, + "name": "¡Ataca el Mecánico!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-170-ataca-el-mecanico/4000-691523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691522/", + "id": 691522, + "name": "¡El Demonio de Fuego!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-169-el-demonio-de-fuego/4000-691522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691521/", + "id": 691521, + "name": "¡El Demonio de Fuego!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-168-el-demonio-de-fuego/4000-691521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691520/", + "id": 691520, + "name": "Fotón es el Otro Nombre de ...", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-167-foton-es-el-otro-nom/4000-691520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691460/", + "id": 691460, + "name": "¡La Locura está en la Mente", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-166-la-locura-esta-en-la/4000-691460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691255/", + "id": 691255, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-165/4000-691255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691254/", + "id": 691254, + "name": "¡Muerte en el Viento!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-164-muerte-en-el-viento/4000-691254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691221/", + "id": 691221, + "name": "¡Amenaza el Matarañas!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-163-amenaza-el-mataranas/4000-691221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691208/", + "id": 691208, + "name": "¡La Guerra de los Reptiles!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-162-la-guerra-de-los-rep/4000-691208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691207/", + "id": 691207, + "name": "¡Stegrón Acecha en la Ciudad!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-161-stegron-acecha-en-la/4000-691207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691132/", + "id": 691132, + "name": "¡Línea Mortal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-160-linea-mortal/4000-691132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691131/", + "id": 691131, + "name": "¡Todos los Pillos de el Rey!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-159-todos-los-pillos-de-/4000-691131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691130/", + "id": 691130, + "name": "¡Venganza del Pasado!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-158-venganza-del-pasado/4000-691130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691129/", + "id": 691129, + "name": "¡Merodeador Nocturno Llega al Acecho!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-157-merodeador-nocturno-/4000-691129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691128/", + "id": 691128, + "name": " ¡Mi Auto, Mi Asesino!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-156-mi-auto-mi-asesino/4000-691128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691043/", + "id": 691043, + "name": "¡El Fantasma que Persigue a el Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-155-el-fantasma-que-pers/4000-691043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691042/", + "id": 691042, + "name": "¡El Fantasma que Persigue a el Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-154-el-fantasma-que-pers/4000-691042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691041/", + "id": 691041, + "name": "¡El Fantasma que Persigue a el Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-153-el-fantasma-que-pers/4000-691041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691040/", + "id": 691040, + "name": "¡En un Día Claro Puedes Ver a Espejismo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-152-en-un-dia-claro-pued/4000-691040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691039/", + "id": 691039, + "name": "¿Quién Fue?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-151-quien-fue/4000-691039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691002/", + "id": 691002, + "name": "¡El Arenero Ataca Dos Veces!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-150-el-arenero-ataca-dos/4000-691002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691001/", + "id": 691001, + "name": "¡Cien Yardas Mortales!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-149-cien-yardas-mortales/4000-691001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691000/", + "id": 691000, + "name": "¡Despedazado por Impacto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-148-despedazado-por-impa/4000-691000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690999/", + "id": 690999, + "name": "¡Contienda Bajo las Calles!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-147-contienda-bajo-las-c/4000-690999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690998/", + "id": 690998, + "name": "¿Hombre Araña o Doble Araña?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-146-hombre-arana-o-doble/4000-690998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690933/", + "id": 690933, + "name": "¡Aunque Viva, Moriré!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-145-aunque-viva-morire/4000-690933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690932/", + "id": 690932, + "name": "Chacal, Chacal... ¿Quién es el Chacal?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-144-chacal-chacal-quien-/4000-690932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690931/", + "id": 690931, + "name": "¡Tarántula, Bestia Mortal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-143-tarantula-bestia-mor/4000-690931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690930/", + "id": 690930, + "name": "Escorpión ¿Dónde Está tu Aguijón?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-142-escorpion-donde-esta/4000-690930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690929/", + "id": 690929, + "name": "¡Gwen Stacey no Ha Muerto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-141-gwen-stacey-no-ha-mu/4000-690929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690843/", + "id": 690843, + "name": "¡Conspiración! ", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-140-conspiracion/4000-690843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690842/", + "id": 690842, + "name": "¡La Amenaza de Ciclón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-139-la-amenaza-de-ciclon/4000-690842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690841/", + "id": 690841, + "name": "¡Broma de un Hombre Muerto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-138-broma-de-un-hombre-m/4000-690841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690713/", + "id": 690713, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-137/4000-690713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690712/", + "id": 690712, + "name": "¡Y Uno Debe Caer!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-136-y-uno-debe-caer/4000-690712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690456/", + "id": 690456, + "name": "¡El Día de Grizzly!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-135-el-dia-de-grizzly/4000-690456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690455/", + "id": 690455, + "name": "¡La Locura de el Gusano Cerabral!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-134-la-locura-de-el-gusa/4000-690455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690454/", + "id": 690454, + "name": "¡El Duende Verde Ataca!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-133-el-duende-verde-atac/4000-690454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690453/", + "id": 690453, + "name": "¡El Duende Verde Vive de Nuevo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-132-el-duende-verde-vive/4000-690453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690452/", + "id": 690452, + "name": "¡Tiroteo en Central Park!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-131-tiroteo-en-central-p/4000-690452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690396/", + "id": 690396, + "name": "¡El Peligro de una Tarántula!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-130-el-peligro-de-una-ta/4000-690396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690395/", + "id": 690395, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-129/4000-690395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690394/", + "id": 690394, + "name": "¡El Plan Maestro de el Hombre de Oro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-128-el-plan-maestro-de-e/4000-690394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690392/", + "id": 690392, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-127/4000-690392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690391/", + "id": 690391, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-126/4000-690391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690319/", + "id": 690319, + "name": "¡El Matón Ataca Dos Veces!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-125-el-maton-ataca-dos-v/4000-690319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690318/", + "id": 690318, + "name": "¡El Buitre Vuela Alto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-124-el-buitre-vuela-alto/4000-690318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690317/", + "id": 690317, + "name": "¡Las Oscuras Alas de la Muerte!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-123-las-oscuras-alas-de-/4000-690317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690316/", + "id": 690316, + "name": "¡El Canguro Vuelve a Atacar!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-122-el-canguro-vuelve-a-/4000-690316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690315/", + "id": 690315, + "name": "¡La Cacería de el Lobo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-121-la-caceria-de-el-lob/4000-690315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690249/", + "id": 690249, + "name": "¡La Marca de el Hombre Lobo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-120-la-marca-de-el-hombr/4000-690249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690248/", + "id": 690248, + "name": "¡Un Hombre Llamado Cage!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-119-un-hombre-llamado-ca/4000-690248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690247/", + "id": 690247, + "name": "¡El Último Desafió de el Duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-118-el-ultimo-desafio-de/4000-690247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690246/", + "id": 690246, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-117/4000-690246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690245/", + "id": 690245, + "name": "¡Furia Mortal!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-116-furia-mortal/4000-690245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690129/", + "id": 690129, + "name": "¡Su Nombre es Hulk!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-115-su-nombre-es-hulk/4000-690129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690128/", + "id": 690128, + "name": "¡El Caos se Acerca!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-114-el-caos-se-acerca/4000-690128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690127/", + "id": 690127, + "name": "¡Los Mortales Planes de el Disruptor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-113-los-mortales-planes-/4000-690127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690126/", + "id": 690126, + "name": "¡El Destructor!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-112-el-destructor/4000-690126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690125/", + "id": 690125, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-111/4000-690125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690012/", + "id": 690012, + "name": "¿Quién es el Martillo?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-110-quien-es-el-martillo/4000-690012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690011/", + "id": 690011, + "name": "¡Lo Llaman el Doctor Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-109-lo-llaman-el-doctor-/4000-690011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690010/", + "id": 690010, + "name": "¡Renuncia el Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-108-renuncia-el-arana/4000-690010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690009/", + "id": 690009, + "name": "¡Cazando a el Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-107-cazando-a-el-arana/4000-690009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-690008/", + "id": 690008, + "name": "¡El Origen de el Gibón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-106-el-origen-de-el-gibo/4000-690008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689797/", + "id": 689797, + "name": "¡Ahora, el Doctor Centella!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-105-ahora-el-doctor-cent/4000-689797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689787/", + "id": 689787, + "name": "¡Venganza Desde Vietnam!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-104-venganza-desde-vietn/4000-689787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689786/", + "id": 689786, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-103/4000-689786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689785/", + "id": 689785, + "name": "¡Aplastmos a el Araña!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-102-aplastmos-a-el-arana/4000-689785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689784/", + "id": 689784, + "name": "¡La Araña Asesina!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-101-la-arana-asesina/4000-689784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689643/", + "id": 689643, + "name": "¡La Bella y la Bestia!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-100-la-bella-y-la-bestia/4000-689643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689642/", + "id": 689642, + "name": "¡El Poder de Gog!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-99-el-poder-de-gog/4000-689642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689641/", + "id": 689641, + "name": "¡En la Tierra Salvaje!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-98-en-la-tierra-salvaje/4000-689641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689640/", + "id": 689640, + "name": "¡La Maldición y la Cura!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-97-la-maldicion-y-la-cur/4000-689640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689639/", + "id": 689639, + "name": "¡La Noche de el Vampiro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-96-la-noche-de-el-vampir/4000-689639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689511/", + "id": 689511, + "name": "¡Un Monstruo Llamado Morbius!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-95-un-monstruo-llamado-m/4000-689511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689510/", + "id": 689510, + "name": "¿Hombre o Araña?", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-94-hombre-o-arana/4000-689510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689509/", + "id": 689509, + "name": "¡Un Día en la Vida!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-93-un-dia-en-la-vida/4000-689509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689508/", + "id": 689508, + "name": "¡El Último Día de el Duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-92-el-ultimo-dia-de-el-d/4000-689508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689507/", + "id": 689507, + "name": "¡En Manos de el Duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-91-en-manos-de-el-duende/4000-689507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689341/", + "id": 689341, + "name": " ¡Regresa el Duende!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-90-regresa-el-duende/4000-689341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689339/", + "id": 689339, + "name": "¡Trampa para un Terrorista!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-89-trampa-para-un-terror/4000-689339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689338/", + "id": 689338, + "name": "¡En Alas de la Muerte!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-88-en-alas-de-la-muerte/4000-689338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689337/", + "id": 689337, + "name": "¡La Dama y el Merodeador!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-87-la-dama-y-el-merodead/4000-689337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689336/", + "id": 689336, + "name": "¡Cuando Ataca el Hombre de Hielo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-86-cuando-ataca-el-hombr/4000-689336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689292/", + "id": 689292, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-85/4000-689292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689291/", + "id": 689291, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-84/4000-689291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689290/", + "id": 689290, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-83/4000-689290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689289/", + "id": 689289, + "name": "Doctor Pulpo!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-82-doctor-pulpo/4000-689289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689288/", + "id": 689288, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-81/4000-689288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689183/", + "id": 689183, + "name": "¡Cuidado con la Viuda Negra!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-80-cuidado-con-la-viuda-/4000-689183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689182/", + "id": 689182, + "name": "¡El Secreto de el Estratega!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-79-el-secreto-de-el-estr/4000-689182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689181/", + "id": 689181, + "name": "¡El Rey Vuelve a Atacar!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-78-el-rey-vuelve-a-ataca/4000-689181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689180/", + "id": 689180, + "name": "¡El Estratega!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-77-el-estratega/4000-689180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689179/", + "id": 689179, + "name": "¡Ahí Viene Electro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-76-ahi-viene-electro/4000-689179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689138/", + "id": 689138, + "name": "¡La Llegada de Canguro!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-75-la-llegada-de-canguro/4000-689138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689137/", + "id": 689137, + "name": "¡Tras el Rastro de el Camaleón!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-74-tras-el-rastro-de-el-/4000-689137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689136/", + "id": 689136, + "name": "Merodear... ¡Nunca Más!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-73-merodear-nunca-mas/4000-689136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689135/", + "id": 689135, + "name": "¡La Noche de el Merodeador!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-72-la-noche-de-el-merode/4000-689135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-689134/", + "id": 689134, + "name": "¡En el Fragor de la Batalla!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-71-en-el-fragor-de-la-ba/4000-689134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688909/", + "id": 688909, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-70/4000-688909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688908/", + "id": 688908, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-69/4000-688908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688907/", + "id": 688907, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-68/4000-688907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688905/", + "id": 688905, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-67/4000-688905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688904/", + "id": 688904, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-66/4000-688904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688771/", + "id": 688771, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-65/4000-688771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688769/", + "id": 688769, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-63/4000-688769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688768/", + "id": 688768, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-62/4000-688768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688767/", + "id": 688767, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-61/4000-688767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688596/", + "id": 688596, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-60/4000-688596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688595/", + "id": 688595, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-59/4000-688595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688594/", + "id": 688594, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-58/4000-688594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688593/", + "id": 688593, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-57/4000-688593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688592/", + "id": 688592, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-56/4000-688592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688534/", + "id": 688534, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-55/4000-688534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688533/", + "id": 688533, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-54/4000-688533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688532/", + "id": 688532, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-53/4000-688532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688531/", + "id": 688531, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-52/4000-688531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688530/", + "id": 688530, + "name": "Kazar", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-51-kazar/4000-688530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688447/", + "id": 688447, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-50/4000-688447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688446/", + "id": 688446, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-49/4000-688446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688445/", + "id": 688445, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-48/4000-688445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688444/", + "id": 688444, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-47/4000-688444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688443/", + "id": 688443, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-46/4000-688443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688403/", + "id": 688403, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-45/4000-688403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688364/", + "id": 688364, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-44/4000-688364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-688231/", + "id": 688231, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-43/4000-688231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687996/", + "id": 687996, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-42/4000-687996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687889/", + "id": 687889, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-41/4000-687889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687183/", + "id": 687183, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-40/4000-687183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687148/", + "id": 687148, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-39/4000-687148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-687112/", + "id": 687112, + "name": "Lagarto!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-38-lagarto/4000-687112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686901/", + "id": 686901, + "name": "El Rino", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-37-el-rino/4000-686901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686736/", + "id": 686736, + "name": "El Nacimiento de un Superheroe!!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-36-el-nacimiento-de-un-s/4000-686736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686682/", + "id": 686682, + "name": "Rino", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-35-rino/4000-686682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686681/", + "id": 686681, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-34/4000-686681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686680/", + "id": 686680, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-33/4000-686680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686679/", + "id": 686679, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-32/4000-686679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686678/", + "id": 686678, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-31/4000-686678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686627/", + "id": 686627, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-30/4000-686627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686626/", + "id": 686626, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-29/4000-686626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686625/", + "id": 686625, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-28/4000-686625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686624/", + "id": 686624, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-27/4000-686624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686623/", + "id": 686623, + "name": "El Arana enloquence!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-26-el-arana-enloquence/4000-686623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686567/", + "id": 686567, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-25/4000-686567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686566/", + "id": 686566, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-24/4000-686566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686565/", + "id": 686565, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-23/4000-686565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686564/", + "id": 686564, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-22/4000-686564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686480/", + "id": 686480, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-21/4000-686480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686423/", + "id": 686423, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-20/4000-686423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686253/", + "id": 686253, + "name": "El Escorpion", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-19-el-escorpion/4000-686253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686156/", + "id": 686156, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-18/4000-686156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686035/", + "id": 686035, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-17/4000-686035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-686000/", + "id": 686000, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-16/4000-686000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685977/", + "id": 685977, + "name": "¡Duelo con Diabólico!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-15-duelo-con-diabolico/4000-685977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685960/", + "id": 685960, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/super-noveles-2/4000-685960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685942/", + "id": 685942, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199905/4000-685942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685932/", + "id": 685932, + "name": "Kraven el Cazador! ", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-14-kraven-el-cazador/4000-685932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685896/", + "id": 685896, + "name": "¡La Grotesca Aventura del Duende Verde!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-13-la-grotesca-aventura-/4000-685896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685784/", + "id": 685784, + "name": "Spindeln", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199903-spindeln/4000-685784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685775/", + "id": 685775, + "name": "¡La Amenaza de Misterio!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-12-la-amenaza-de-misteri/4000-685775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685586/", + "id": 685586, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199902/4000-685586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685577/", + "id": 685577, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-11/4000-685577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685479/", + "id": 685479, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-10/4000-685479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685478/", + "id": 685478, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-9/4000-685478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685477/", + "id": 685477, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-8/4000-685477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685476/", + "id": 685476, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-7/4000-685476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685348/", + "id": 685348, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-6/4000-685348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685214/", + "id": 685214, + "name": "X-Men Spindel Mannen", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199805-x-men-spindel-mannen/4000-685214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685205/", + "id": 685205, + "name": "El Lagarto", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-5-el-lagarto/4000-685205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-685119/", + "id": 685119, + "name": "Spindelmannen mot Venom ; Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199804-spindelmannen-mot-venom-wolveri/4000-685119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-683601/", + "id": 683601, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-4/4000-683601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-681548/", + "id": 681548, + "name": "Promossi e bocciati", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-lucca-1-promossi-e-bocciati/4000-681548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-681547/", + "id": 681547, + "name": "¡Nada Detiene al Arenero!", + "site_detail_url": "https://comicvine.gamespot.com/el-asombroso-hombre-arana-3-nada-detiene-al-arener/4000-681547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679658/", + "id": 679658, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-13/4000-679658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679657/", + "id": 679657, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-12/4000-679657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679602/", + "id": 679602, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-11/4000-679602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-679600/", + "id": 679600, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/venom-9/4000-679600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-678144/", + "id": 678144, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199501/4000-678144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-677717/", + "id": 677717, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199404-venom/4000-677717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676921/", + "id": 676921, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/les-chefs-doeuvre-de-la-bande-dessinee-1/4000-676921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-675900/", + "id": 675900, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/robbedoes-2990/4000-675900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674433/", + "id": 674433, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199302/4000-674433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-674244/", + "id": 674244, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/robbedoes-2931/4000-674244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671787/", + "id": 671787, + "name": "Virus Virulent ", + "site_detail_url": "https://comicvine.gamespot.com/super-heros-41-virus-virulent/4000-671787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670996/", + "id": 670996, + "name": "Spindelmannen", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-199203-spindelmannen/4000-670996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668629/", + "id": 668629, + "name": "La Mort du Chasseur", + "site_detail_url": "https://comicvine.gamespot.com/super-heros-9-la-mort-du-chasseur/4000-668629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-668318/", + "id": 668318, + "name": "La Mort du Chasseur", + "site_detail_url": "https://comicvine.gamespot.com/super-heros-7-la-mort-du-chasseur/4000-668318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667806/", + "id": 667806, + "name": "La Mort du Chasseur", + "site_detail_url": "https://comicvine.gamespot.com/super-heros-5-la-mort-du-chasseur/4000-667806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667177/", + "id": 667177, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/super-heros-2-spider-man/4000-667177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-665421/", + "id": 665421, + "name": "Spider-Man y la Vision", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-10-spider-man-y-la-vision/4000-665421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664841/", + "id": 664841, + "name": "Spider Man y la Antorcha Humana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-6-spider-man-y-la-antorcha-h/4000-664841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664623/", + "id": 664623, + "name": "O Homem-Aranha - Marandi", + "site_detail_url": "https://comicvine.gamespot.com/graphic-novel-4-o-homem-aranha-marandi/4000-664623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664621/", + "id": 664621, + "name": "A Morte do Capitão Marvel", + "site_detail_url": "https://comicvine.gamespot.com/graphic-novel-3-a-morte-do-capitao-marvel/4000-664621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664458/", + "id": 664458, + "name": "Spider man y la Antorcha Humana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-2-spider-man-y-la-antorcha-h/4000-664458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664024/", + "id": 664024, + "name": "O Homem-Aranha: Espiritos da Terra", + "site_detail_url": "https://comicvine.gamespot.com/graphic-marvel-10-o-homem-aranha-espiritos-da-terr/4000-664024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-664021/", + "id": 664021, + "name": "A Vinganca do Monolito Vivo", + "site_detail_url": "https://comicvine.gamespot.com/graphic-marvel-3-a-vinganca-do-monolito-vivo/4000-664021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663736/", + "id": 663736, + "name": "Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-1-dazzler/4000-663736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663678/", + "id": 663678, + "name": "Spidrman y Bestia", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-126-spidrman-y-bestia/4000-663678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663459/", + "id": 663459, + "name": "Spider-Man y la Mujer Invisible", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-124-spider-man-y-la-mujer-in/4000-663459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663458/", + "id": 663458, + "name": "Spider-Man y La Pantera Negra", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-123-spider-man-y-la-pantera-/4000-663458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663289/", + "id": 663289, + "name": "Spider-Man y Kung-Fu", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-113-spider-man-y-kung-fu/4000-663289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663127/", + "id": 663127, + "name": "Spider-Man y Kung-Fu", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-109-spider-man-y-kung-fu/4000-663127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663126/", + "id": 663126, + "name": "Spider-Man y Satana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-108-spider-man-y-satana/4000-663126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663125/", + "id": 663125, + "name": "Spider Man y Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-107-spider-man-y-red-sonja/4000-663125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662939/", + "id": 662939, + "name": "Spider-Man y Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-105-spider-man-y-ms-marvel/4000-662939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662908/", + "id": 662908, + "name": "Spider-Man y Dan Defensor", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-99-spider-man-y-dan-defensor/4000-662908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662907/", + "id": 662907, + "name": "Spider-Man y el Halcon", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-98-spider-man-y-el-halcon/4000-662907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662906/", + "id": 662906, + "name": "Spider-Man y Thor", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-97-spider-man-y-thor/4000-662906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662872/", + "id": 662872, + "name": "Homem-Aranha contraio Dragao", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-391-homem-aranha-contraio-draga/4000-662872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662863/", + "id": 662863, + "name": "Spider-Man y la Tigra", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-92-spider-man-y-la-tigra/4000-662863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662862/", + "id": 662862, + "name": "Spider-Man y el Capitan Britania", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-91-spider-man-y-el-capitan-b/4000-662862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662829/", + "id": 662829, + "name": "Spider-Man y Puno de Hierro", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-90-spider-man-y-puno-de-hier/4000-662829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662828/", + "id": 662828, + "name": "pider-Man y la Antorcha Humana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-89-pider-man-y-la-antorcha-h/4000-662828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662827/", + "id": 662827, + "name": "Superman y la Antorcha Humana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-88-superman-y-la-antorcha-hu/4000-662827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662632/", + "id": 662632, + "name": "The Champions", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-85-the-champions/4000-662632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662403/", + "id": 662403, + "name": "Matt Dillon", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-372-matt-dillon/4000-662403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662393/", + "id": 662393, + "name": "Spider-Man y la Masa", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-72-spider-man-y-la-masa/4000-662393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662392/", + "id": 662392, + "name": "Spider-Man y el Capitan America", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-71-spider-man-y-el-capitan-a/4000-662392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662376/", + "id": 662376, + "name": "Fantasma", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-370-fantasma/4000-662376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662375/", + "id": 662375, + "name": "a sombra do gaviao", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-369-a-sombra-do-gaviao/4000-662375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662374/", + "id": 662374, + "name": "Garth em O navio fantasma", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-368-garth-em-o-navio-fantasma/4000-662374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662373/", + "id": 662373, + "name": "Warlord ; Tarzan ; Starhawks ; Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-367-warlord-tarzan-starhawks-fl/4000-662373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662372/", + "id": 662372, + "name": "O Vale dos Cavalos Salvegas ; Tarzan ; Starhawks ; Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-366-o-vale-dos-cavalos-salvegas/4000-662372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662328/", + "id": 662328, + "name": "Spider-Man y el Doctor Extrano", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-63-spider-man-y-el-doctor-ex/4000-662328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662327/", + "id": 662327, + "name": "Spider-Man y el Hombre de Hierro", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-62-spider-man-y-el-hombre-de/4000-662327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662326/", + "id": 662326, + "name": "Spider-Man y la Cosa", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-61-spider-man-y-la-cosa/4000-662326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662220/", + "id": 662220, + "name": "Kerry Drake A Mensagem", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-364-kerry-drake-a-mensagem/4000-662220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662219/", + "id": 662219, + "name": "Mandrake ; Tarzan ; Starhawks ; Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-363-mandrake-tarzan-starhawks-f/4000-662219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662218/", + "id": 662218, + "name": "Thorgal", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-362-thorgal/4000-662218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662217/", + "id": 662217, + "name": "Matt Marriott ; Tarzan ; Starhawks ; Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-361-matt-marriott-tarzan-starha/4000-662217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662211/", + "id": 662211, + "name": "Spider-Man y Dragon Lunar", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-60-spider-man-y-dragon-lunar/4000-662211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-662007/", + "id": 662007, + "name": "El Motorista Fantasma", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-53-el-motorista-fantasma/4000-662007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661979/", + "id": 661979, + "name": "Spider-Man y la Vision", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-48-spider-man-y-la-vision/4000-661979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661577/", + "id": 661577, + "name": "Spider-Man y El Hombre Cosa", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-38-spider-man-y-el-hombre-co/4000-661577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661576/", + "id": 661576, + "name": "Spider-Man y El Castigoda", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-37-spider-man-y-el-castigoda/4000-661576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661575/", + "id": 661575, + "name": "Spider-Man y Doc Savage", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-36-spider-man-y-doc-savage/4000-661575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661546/", + "id": 661546, + "name": "Spider-Man y el Hombre Lobo", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-33-spider-man-y-el-hombre-lo/4000-661546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661545/", + "id": 661545, + "name": "Spider-Man y la Antorcha Humana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-32-spider-man-y-la-antorcha-/4000-661545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661544/", + "id": 661544, + "name": "Spider-Man y Kung-Fu", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-31-spider-man-y-kung-fu/4000-661544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661518/", + "id": 661518, + "name": "Spider-Man y Dracula", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-30-spider-man-y-dracula/4000-661518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661517/", + "id": 661517, + "name": "Spider-Man y Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-29-spider-man-y-frankenstein/4000-661517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661515/", + "id": 661515, + "name": "Spider-Man y el Angel", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-27-spider-man-y-el-angel/4000-661515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660989/", + "id": 660989, + "name": "Spider-Man y la Masa", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-13-spider-man-y-la-masa/4000-660989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660988/", + "id": 660988, + "name": "Antorcha Humana y el Hombre de Hielo", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-12-antorcha-humana-y-el-homb/4000-660988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660987/", + "id": 660987, + "name": "Spider-Man y el Capitan Marvel", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-11-spider-man-y-el-capitan-m/4000-660987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660886/", + "id": 660886, + "name": "Spider-Man y el Motorista Fantasma", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-10-spider-man-y-el-motorista/4000-660886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660885/", + "id": 660885, + "name": "Spider-Man y la Antorcha Humana", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-9-spider-man-y-la-antorcha-h/4000-660885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660884/", + "id": 660884, + "name": "Spider-Man y el Capitan America", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-8-spider-man-y-el-capitan-am/4000-660884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660883/", + "id": 660883, + "name": "Spider-Man y el Hombre Lobo", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-7-spider-man-y-el-hombre-lob/4000-660883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660882/", + "id": 660882, + "name": "Spider-Man y Thor", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-6-spider-man-y-thor/4000-660882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660805/", + "id": 660805, + "name": "Spider-Man y el Hombre de Hierro", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-5-spider-man-y-el-hombre-de-/4000-660805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660804/", + "id": 660804, + "name": "Spider-Man Mister Fantastico", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-presenta-4-spider-man-mister-fantasti/4000-660804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660608/", + "id": 660608, + "name": "Homem Aranha ; Yalek", + "site_detail_url": "https://comicvine.gamespot.com/mundo-de-aventuras-300-homem-aranha-yalek/4000-660608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619746/", + "id": 619746, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-78/4000-619746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615696/", + "id": 615696, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/all-american-comics-35-ghost-rider/4000-615696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615695/", + "id": 615695, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/all-american-comics-34-ghost-rider/4000-615695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615354/", + "id": 615354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-american-comics-11/4000-615354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615308/", + "id": 615308, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-american-comics-10/4000-615308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-615307/", + "id": 615307, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/all-american-comics-9/4000-615307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-614095/", + "id": 614095, + "name": "Spider-Man en Batman Special", + "site_detail_url": "https://comicvine.gamespot.com/batman-special-25-spider-man-en-batman-special/4000-614095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-585239/", + "id": 585239, + "name": "Supermann og Edderkoppen", + "site_detail_url": "https://comicvine.gamespot.com/supermannedderkoppen-arsalbum-1987-supermann-og-ed/4000-585239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-557247/", + "id": 557247, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvels-universum-198711-avengers/4000-557247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556351/", + "id": 556351, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/klassiker-der-comic-literatur-15-spider-man/4000-556351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545217/", + "id": 545217, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-28/4000-545217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545216/", + "id": 545216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-27/4000-545216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545215/", + "id": 545215, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-26/4000-545215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545214/", + "id": 545214, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-25/4000-545214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545213/", + "id": 545213, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-24/4000-545213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545212/", + "id": 545212, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-23/4000-545212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545211/", + "id": 545211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-21/4000-545211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545210/", + "id": 545210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-20/4000-545210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545209/", + "id": 545209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-19/4000-545209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545208/", + "id": 545208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-18/4000-545208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-545201/", + "id": 545201, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-17/4000-545201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540443/", + "id": 540443, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-292/4000-540443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537772/", + "id": 537772, + "name": "Protettore letale 2", + "site_detail_url": "https://comicvine.gamespot.com/venom-2-protettore-letale-2/4000-537772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-531031/", + "id": 531031, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-36/4000-531031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-531030/", + "id": 531030, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-35/4000-531030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-518951/", + "id": 518951, + "name": "SC/HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-babys-1-schc/4000-518951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513252/", + "id": 513252, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/podersos-vengadores-21/4000-513252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-505122/", + "id": 505122, + "name": "Mysterious Doings", + "site_detail_url": "https://comicvine.gamespot.com/pro-action-spider-man-giveaway-3-mysterious-doings/4000-505122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499648/", + "id": 499648, + "name": "La tête des les étoiles", + "site_detail_url": "https://comicvine.gamespot.com/x-men-18-la-tete-des-les-etoiles/4000-499648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498588/", + "id": 498588, + "name": "Heisse Wut, Kaltes Herz", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-2-heisse-wut-kaltes-herz/4000-498588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498510/", + "id": 498510, + "name": "SC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-klassiker-fantastic-four-1-sc/4000-498510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497682/", + "id": 497682, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-25/4000-497682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497678/", + "id": 497678, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-21/4000-497678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497599/", + "id": 497599, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-die-racher-6/4000-497599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-496017/", + "id": 496017, + "name": "The Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-101-the-kingpin/4000-496017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482842/", + "id": 482842, + "name": "Vol. 57 - Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-45-vol-57-sec/4000-482842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482589/", + "id": 482589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/herois-renascem-o-retorno-4/4000-482589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482537/", + "id": 482537, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/herois-renascem-o-retorno-3/4000-482537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482453/", + "id": 482453, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jumbo-comics-album-1/4000-482453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-481093/", + "id": 481093, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/zahadny-spider-man-25/4000-481093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480910/", + "id": 480910, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/zahadny-spider-man-24/4000-480910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480809/", + "id": 480809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/zahadny-spider-man-23/4000-480809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480595/", + "id": 480595, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/zahadny-spider-man-22/4000-480595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480547/", + "id": 480547, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/zahadny-spider-man-20/4000-480547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-480066/", + "id": 480066, + "name": "Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/sinister-tales-105-quicksilver/4000-480066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476462/", + "id": 476462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-7/4000-476462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476455/", + "id": 476455, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-281/4000-476455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476454/", + "id": 476454, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-280/4000-476454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476453/", + "id": 476453, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-279/4000-476453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476452/", + "id": 476452, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-278/4000-476452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476451/", + "id": 476451, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-270/4000-476451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476450/", + "id": 476450, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-256/4000-476450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476449/", + "id": 476449, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-magazine-255/4000-476449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476398/", + "id": 476398, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-7/4000-476398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476397/", + "id": 476397, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-6/4000-476397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476395/", + "id": 476395, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-4/4000-476395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476389/", + "id": 476389, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-27/4000-476389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476388/", + "id": 476388, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-26/4000-476388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476386/", + "id": 476386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-24/4000-476386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-474158/", + "id": 474158, + "name": "The Lizard Lives!", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-unknown-125-the-lizard-lives/4000-474158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472081/", + "id": 472081, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-199903/4000-472081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472080/", + "id": 472080, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-199902/4000-472080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472079/", + "id": 472079, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-199904/4000-472079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472077/", + "id": 472077, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spindelmannen-199011/4000-472077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466833/", + "id": 466833, + "name": "Spider-Man Freres Ennemis", + "site_detail_url": "https://comicvine.gamespot.com/un-recit-complet-marvel-50-spider-man-freres-ennem/4000-466833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466822/", + "id": 466822, + "name": "Outre Monde", + "site_detail_url": "https://comicvine.gamespot.com/un-recit-complet-marvel-39-outre-monde/4000-466822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466818/", + "id": 466818, + "name": "Le Defi de Thanos", + "site_detail_url": "https://comicvine.gamespot.com/un-recit-complet-marvel-34-le-defi-de-thanos/4000-466818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466817/", + "id": 466817, + "name": "Le Defi de Thanos", + "site_detail_url": "https://comicvine.gamespot.com/un-recit-complet-marvel-33-le-defi-de-thanos/4000-466817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466809/", + "id": 466809, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/un-recit-complet-marvel-25-venom/4000-466809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466787/", + "id": 466787, + "name": "Le Tournoi des Champions", + "site_detail_url": "https://comicvine.gamespot.com/un-recit-complet-marvel-3-le-tournoi-des-champions/4000-466787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466693/", + "id": 466693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-107/4000-466693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466692/", + "id": 466692, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-106/4000-466692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466689/", + "id": 466689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-103/4000-466689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466687/", + "id": 466687, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-101/4000-466687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466686/", + "id": 466686, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-100/4000-466686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466684/", + "id": 466684, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-98/4000-466684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466674/", + "id": 466674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-64/4000-466674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466664/", + "id": 466664, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-54/4000-466664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466661/", + "id": 466661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-51/4000-466661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466660/", + "id": 466660, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-50/4000-466660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466659/", + "id": 466659, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-49/4000-466659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466657/", + "id": 466657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-36/4000-466657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466656/", + "id": 466656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-35/4000-466656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466655/", + "id": 466655, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-34/4000-466655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466654/", + "id": 466654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-33/4000-466654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466653/", + "id": 466653, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-32/4000-466653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466652/", + "id": 466652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-31/4000-466652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466651/", + "id": 466651, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-30/4000-466651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466650/", + "id": 466650, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-29/4000-466650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466649/", + "id": 466649, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-28/4000-466649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466648/", + "id": 466648, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-27/4000-466648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466647/", + "id": 466647, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-26/4000-466647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466646/", + "id": 466646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-25/4000-466646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466645/", + "id": 466645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-24/4000-466645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466644/", + "id": 466644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-23/4000-466644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466642/", + "id": 466642, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-22/4000-466642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466641/", + "id": 466641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-21/4000-466641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466640/", + "id": 466640, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-20/4000-466640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466639/", + "id": 466639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-19/4000-466639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466638/", + "id": 466638, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-18/4000-466638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466637/", + "id": 466637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-17/4000-466637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466636/", + "id": 466636, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-16/4000-466636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466635/", + "id": 466635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-15/4000-466635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466634/", + "id": 466634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-14/4000-466634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466633/", + "id": 466633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-13/4000-466633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466632/", + "id": 466632, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-12/4000-466632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466631/", + "id": 466631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-11/4000-466631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466630/", + "id": 466630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-10/4000-466630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466627/", + "id": 466627, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-9/4000-466627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466626/", + "id": 466626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-8/4000-466626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466625/", + "id": 466625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-7/4000-466625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466624/", + "id": 466624, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-6/4000-466624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466623/", + "id": 466623, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-5/4000-466623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466571/", + "id": 466571, + "name": "Guerres Secretes", + "site_detail_url": "https://comicvine.gamespot.com/spidey-68-guerres-secretes/4000-466571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-466470/", + "id": 466470, + "name": "Vol. 25 - Spider-Man - Blue", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-34-vol-25-spi/4000-466470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465946/", + "id": 465946, + "name": "Masterstroke!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-4-masterstroke/4000-465946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465945/", + "id": 465945, + "name": "The Coming of Stegron the Dinosaur Man!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-pocket-book-3-the-coming-of-stegron-the/4000-465945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465600/", + "id": 465600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-648/4000-465600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465189/", + "id": 465189, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-145-le-journal-de-spider-man/4000-465189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465185/", + "id": 465185, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-140-le-journal-de-spider-man/4000-465185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465184/", + "id": 465184, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-139-le-journal-de-spider-man/4000-465184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465183/", + "id": 465183, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-138-le-journal-de-spider-man/4000-465183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465182/", + "id": 465182, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-137-le-journal-de-spider-man/4000-465182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465145/", + "id": 465145, + "name": "Le journal de Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/strange-115-le-journal-de-spider-man/4000-465145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463830/", + "id": 463830, + "name": "Vol. 42 - Avengers - Ausbruch!", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-33-vol-42-ave/4000-463830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-463829/", + "id": 463829, + "name": "Vol. 37 - She-Hulk - Weiblich, ledig, grün sucht...", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-35-vol-37-she/4000-463829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462149/", + "id": 462149, + "name": "The Amazing Spiderman: Birth of Venom", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-9-the-amazi/4000-462149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460829/", + "id": 460829, + "name": "Vol. 49 - Civil War", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-30-vol-49-civ/4000-460829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-458034/", + "id": 458034, + "name": "The Brand of the Brainwasher", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-110-the-brand-of-the-brainwasher/4000-458034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453705/", + "id": 453705, + "name": "The Amazing Spider-Man: Green Grows the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-38-the-amazing-spider-man-green-/4000-453705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453704/", + "id": 453704, + "name": "The Amazing Spider-Man: War of The Reptile-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-37-the-amazing-spider-man-war-of/4000-453704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453703/", + "id": 453703, + "name": "The Amazing Spider-Man: Shattered by the Shocker", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-36-the-amazing-spider-man-shatte/4000-453703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453702/", + "id": 453702, + "name": "Amazing Spider-Man:The Delusion Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-35-amazing-spider-man-the-delusi/4000-453702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453507/", + "id": 453507, + "name": "The Amazing Spider-Man: The Green Goblin Lives Again", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-34-the-amazing-spider-man-the-gr/4000-453507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453506/", + "id": 453506, + "name": "The Amazing Spider-Man: The Punisher Strikes Twice", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-33-the-amazing-spider-man-the-pu/4000-453506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453505/", + "id": 453505, + "name": "The Amazing Spider-Man: The Night Gwen Stacy Died", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-32-the-amazing-spider-man-the-ni/4000-453505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453504/", + "id": 453504, + "name": "The Amazing Spider-Man: Countdown to Chaos!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-31-the-amazing-spider-man-countd/4000-453504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453503/", + "id": 453503, + "name": "The Amazing Spider-Man: The Spider Slayer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-30-the-amazing-spider-man-the-sp/4000-453503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453502/", + "id": 453502, + "name": "The Amazing Spider-Man: In The Grip of the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-29-the-amazing-spider-man-in-the/4000-453502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453316/", + "id": 453316, + "name": "The Amazing Spider-Man: The Death Of Captain Stacy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-28-the-amazing-spider-man-the-de/4000-453316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453315/", + "id": 453315, + "name": "The Amazing Spider-Man: Night Of The Prowler", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-27-the-amazing-spider-man-night-/4000-453315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453313/", + "id": 453313, + "name": "The Amazing Spider-Man: To Crush The Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-26-the-amazing-spider-man-to-cru/4000-453313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453311/", + "id": 453311, + "name": "The Amazing Spider-Man: The Madness of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-25-the-amazing-spider-man-the-ma/4000-453311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453289/", + "id": 453289, + "name": "The Amazing Spider-Man: To Kill A Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-24-the-amazing-spider-man-to-kil/4000-453289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453286/", + "id": 453286, + "name": "The Amazing Spider-Man: The Wings of the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-23-the-amazing-spider-man-the-wi/4000-453286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453283/", + "id": 453283, + "name": "The Amazing Spider-Man: The End of the Green Goblin!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-22-the-amazing-spider-man-the-en/4000-453283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453278/", + "id": 453278, + "name": "Fantastic Four: The Flames of Battle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-21-fantastic-four-the-flames-of-/4000-453278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453267/", + "id": 453267, + "name": "Fantastic Four: Where Stalks The Sandman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-20-fantastic-four-where-stalks-t/4000-453267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453258/", + "id": 453258, + "name": "Fantastic Four: The Coming of Galactus!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-18-fantastic-four-the-coming-of-/4000-453258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453255/", + "id": 453255, + "name": "The Uncanny X-Men: Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-7-the-uncanny-x-men-days-of-futu/4000-453255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453152/", + "id": 453152, + "name": "The Uncanny X-Men: Dark Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-6-the-uncanny-x-men-dark-phoenix/4000-453152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453110/", + "id": 453110, + "name": "The Uncanny X-Men: Legacy of the Lost", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-14-the-uncanny-x-men-legacy-of-t/4000-453110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453061/", + "id": 453061, + "name": "X-Men: Hidden Years: Destroy All Mutants", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-4-x-men-hidden-years-destroy-all/4000-453061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451662/", + "id": 451662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/projekt-x-x-men-149/4000-451662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450817/", + "id": 450817, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-25/4000-450817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450816/", + "id": 450816, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-24/4000-450816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450815/", + "id": 450815, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-23/4000-450815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450814/", + "id": 450814, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-22/4000-450814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450813/", + "id": 450813, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-21/4000-450813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450811/", + "id": 450811, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-19/4000-450811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450809/", + "id": 450809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-17/4000-450809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450808/", + "id": 450808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-16/4000-450808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450805/", + "id": 450805, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-13/4000-450805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450804/", + "id": 450804, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fact-files-12/4000-450804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450720/", + "id": 450720, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/not-dawn-sketchbook-2007-1/4000-450720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449383/", + "id": 449383, + "name": "Vol. 34 - Heldenfall", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-5-vol-34-held/4000-449383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447791/", + "id": 447791, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-28/4000-447791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447693/", + "id": 447693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-27/4000-447693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447649/", + "id": 447649, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-26/4000-447649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447392/", + "id": 447392, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-25/4000-447392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447314/", + "id": 447314, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-24/4000-447314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447261/", + "id": 447261, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-23/4000-447261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447115/", + "id": 447115, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-22/4000-447115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446894/", + "id": 446894, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-21/4000-446894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446796/", + "id": 446796, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-20/4000-446796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446689/", + "id": 446689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-19/4000-446689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446605/", + "id": 446605, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-18/4000-446605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446418/", + "id": 446418, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-17/4000-446418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446338/", + "id": 446338, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-16/4000-446338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446165/", + "id": 446165, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-15/4000-446165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446122/", + "id": 446122, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-14/4000-446122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446032/", + "id": 446032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-13/4000-446032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445990/", + "id": 445990, + "name": "Vol. 12 - Marvels", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-18-vol-12-mar/4000-445990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445974/", + "id": 445974, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-12/4000-445974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445762/", + "id": 445762, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-11/4000-445762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445699/", + "id": 445699, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-10/4000-445699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445674/", + "id": 445674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-9/4000-445674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445576/", + "id": 445576, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-8/4000-445576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445411/", + "id": 445411, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-7/4000-445411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445398/", + "id": 445398, + "name": "Vol. 41 - House of M", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-20-vol-41-hou/4000-445398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444748/", + "id": 444748, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-6/4000-444748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444380/", + "id": 444380, + "name": "Spidey & Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine-5-spidey-venom/4000-444380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444371/", + "id": 444371, + "name": "Utopia : capìtulo uno", + "site_detail_url": "https://comicvine.gamespot.com/utopia-1-utopia-capitulo-uno/4000-444371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444212/", + "id": 444212, + "name": "X-tinción Mutante Vol. 1: House Of M", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-10-x-tincion-mutante-vol-1-house/4000-444212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443646/", + "id": 443646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-3/4000-443646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443372/", + "id": 443372, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-2/4000-443372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441934/", + "id": 441934, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1985-01/4000-441934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441928/", + "id": 441928, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1985-07/4000-441928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441927/", + "id": 441927, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1985-08/4000-441927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441925/", + "id": 441925, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1985-10/4000-441925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441923/", + "id": 441923, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ryhma-x-1985-12/4000-441923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-438605/", + "id": 438605, + "name": "Vol. 33 - Secret War", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-10-vol-33-sec/4000-438605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437609/", + "id": 437609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lego-marvel-super-heroes-5/4000-437609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437608/", + "id": 437608, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lego-marvel-super-heroes-7/4000-437608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435984/", + "id": 435984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/maiores-classicos-dos-x-men-4/4000-435984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435945/", + "id": 435945, + "name": "Homem-Aranha", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-62-homem-aranha/4000-435945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435942/", + "id": 435942, + "name": "Homem-Aranha & Justiceiro", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-59-homem-aranha-and-justicei/4000-435942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435938/", + "id": 435938, + "name": "Homem-Aranha: Funeral Para Octopus", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-56-homem-aranha-funeral-para/4000-435938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435930/", + "id": 435930, + "name": "Homem-Aranha", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-49-homem-aranha/4000-435930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435923/", + "id": 435923, + "name": "O Novo Quarteto Fantastico", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-45-o-novo-quarteto-fantastic/4000-435923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435922/", + "id": 435922, + "name": "Homem-Aranha versus Vingadores", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-44-homem-aranha-versus-vinga/4000-435922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435910/", + "id": 435910, + "name": "Homem-Aranha versus Homem de Ferro", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-32-homem-aranha-versus-homem/4000-435910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435901/", + "id": 435901, + "name": "Homem-Aranha", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-23-homem-aranha/4000-435901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435897/", + "id": 435897, + "name": "Quarteto Fantastico: Caos!", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-19-quarteto-fantastico-caos/4000-435897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435896/", + "id": 435896, + "name": "Homem-Aranha", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-18-homem-aranha/4000-435896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435882/", + "id": 435882, + "name": "Homem Arana X-Men", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-4-homem-arana-x-men/4000-435882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435880/", + "id": 435880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-2/4000-435880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435879/", + "id": 435879, + "name": "Vingadores", + "site_detail_url": "https://comicvine.gamespot.com/grandes-herois-marvel-1-vingadores/4000-435879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435268/", + "id": 435268, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-5/4000-435268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435173/", + "id": 435173, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-hors-serie-4/4000-435173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435170/", + "id": 435170, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-hors-serie-1/4000-435170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433721/", + "id": 433721, + "name": "Guerres Secretes", + "site_detail_url": "https://comicvine.gamespot.com/strange-special-jeux-4-guerres-secretes/4000-433721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433717/", + "id": 433717, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-82/4000-433717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-431788/", + "id": 431788, + "name": "Vol. 21 - Spider-Man - Heimkehr", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-1-vol-21-spid/4000-431788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423948/", + "id": 423948, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-stars-2/4000-423948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423817/", + "id": 423817, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comic-stars-1/4000-423817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420135/", + "id": 420135, + "name": "Speciale Marvel", + "site_detail_url": "https://comicvine.gamespot.com/wow-nuova-serie-4-speciale-marvel/4000-420135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-412155/", + "id": 412155, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-sonderband-50-jahre-1/4000-412155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411440/", + "id": 411440, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-doom-1/4000-411440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411436/", + "id": 411436, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-mystery-1/4000-411436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411435/", + "id": 411435, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy-1/4000-411435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411425/", + "id": 411425, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-3-1/4000-411425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410690/", + "id": 410690, + "name": "Mit Grosser Kraft", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tv-comics-ultimate-spider-man-1-mit-grosser/4000-410690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410599/", + "id": 410599, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-season-one-1/4000-410599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-409473/", + "id": 409473, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-nackte-angst-1/4000-409473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406599/", + "id": 406599, + "name": "Avengers Origins", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-1-avengers-origins/4000-406599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-406553/", + "id": 406553, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-avengers-von-bendis-dell-otto/4000-406553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404825/", + "id": 404825, + "name": "The Avengers: The Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pocketbook-2-the-avengers-the-korvac-saga/4000-404825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402811/", + "id": 402811, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-5/4000-402811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402810/", + "id": 402810, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-4/4000-402810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402809/", + "id": 402809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-3/4000-402809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402807/", + "id": 402807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-1/4000-402807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402803/", + "id": 402803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fallout-1/4000-402803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402766/", + "id": 402766, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-siege-avengers-finale-1/4000-402766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402765/", + "id": 402765, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-siege-die-helden-von-siege-1/4000-402765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402506/", + "id": 402506, + "name": "Fear Itself: Nackte Angst", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-39-fear-itself-nackte-angst/4000-402506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402187/", + "id": 402187, + "name": "Spider-Man und die Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-59-spider-man-und-die-fantastic-four/4000-402187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402186/", + "id": 402186, + "name": "Astonishing Spider-Man/Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-62-astonishing-spider-man-wolverine/4000-402186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402183/", + "id": 402183, + "name": "Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-67-spider-men/4000-402183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400805/", + "id": 400805, + "name": "Rocked by the Shocker", + "site_detail_url": "https://comicvine.gamespot.com/sinister-tales-106-rocked-by-the-shocker/4000-400805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400804/", + "id": 400804, + "name": "Spider-Man Wanted", + "site_detail_url": "https://comicvine.gamespot.com/sinister-tales-104-spider-man-wanted/4000-400804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400802/", + "id": 400802, + "name": "The Vulture's Prey", + "site_detail_url": "https://comicvine.gamespot.com/sinister-tales-99-the-vulture-s-prey/4000-400802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400801/", + "id": 400801, + "name": "Wings in the Night!", + "site_detail_url": "https://comicvine.gamespot.com/sinister-tales-98-wings-in-the-night/4000-400801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400769/", + "id": 400769, + "name": "Spidey Battles Daredevil!", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-tales-90-spidey-battles-daredevil/4000-400769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400759/", + "id": 400759, + "name": "The Madness of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-tales-74-the-madness-of-mysterio/4000-400759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400739/", + "id": 400739, + "name": "Spidey Battles Daredevil!", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-tales-28-spidey-battles-daredevil/4000-400739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400734/", + "id": 400734, + "name": "The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-tales-21-the-sinister-six/4000-400734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-400441/", + "id": 400441, + "name": "In the Blaze of Battle!", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-unknown-126-in-the-blaze-of-battle/4000-400441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399711/", + "id": 399711, + "name": "Spelletjes", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-49-spelletjes/4000-399711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399710/", + "id": 399710, + "name": "Andere Tijden, Gelijke Gewoonten", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-48-andere-tijden-gelijke-gewoonten/4000-399710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399675/", + "id": 399675, + "name": "The Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/amazing-stories-of-suspense-58-the-enforcers/4000-399675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399524/", + "id": 399524, + "name": "Creepy Worlds", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-103-creepy-worlds/4000-399524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399424/", + "id": 399424, + "name": "Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-132-mysterio/4000-399424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-399410/", + "id": 399410, + "name": "Creepy Worlds", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-71-creepy-worlds/4000-399410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398323/", + "id": 398323, + "name": "Woede!", + "site_detail_url": "https://comicvine.gamespot.com/x-mannen-10-woede/4000-398323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395103/", + "id": 395103, + "name": "L'Uomo Ragno", + "site_detail_url": "https://comicvine.gamespot.com/raccolta-super-eroi-7-luomo-ragno/4000-395103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392007/", + "id": 392007, + "name": "Shock del Futuro 3", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-9-shock-del-futuro-3/4000-392007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-391815/", + "id": 391815, + "name": "Spiderman: la Ultima Caceria de Kraven", + "site_detail_url": "https://comicvine.gamespot.com/obras-maestras-37-spiderman-la-ultima-caceria-de-k/4000-391815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389708/", + "id": 389708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-33/4000-389708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389707/", + "id": 389707, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-32/4000-389707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389706/", + "id": 389706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-31/4000-389706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389705/", + "id": 389705, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-30/4000-389705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-389704/", + "id": 389704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-19/4000-389704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388175/", + "id": 388175, + "name": "Spider-Man Torment", + "site_detail_url": "https://comicvine.gamespot.com/obras-maestras-16-spider-man-torment/4000-388175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388140/", + "id": 388140, + "name": "DC Gegen Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/dc-gegen-marvel-sonderband-2-dc-gegen-marvel-comic/4000-388140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387399/", + "id": 387399, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-classic-marvel-figurine-special-5-spider-man/4000-387399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386542/", + "id": 386542, + "name": "Spiderman : La Saga del Traje Alienigena", + "site_detail_url": "https://comicvine.gamespot.com/obras-maestras-5-spiderman-la-saga-del-traje-alien/4000-386542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-385772/", + "id": 385772, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-52/4000-385772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-383935/", + "id": 383935, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-82/4000-383935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381247/", + "id": 381247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-60/4000-381247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381246/", + "id": 381246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-59/4000-381246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381245/", + "id": 381245, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-58/4000-381245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381244/", + "id": 381244, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-57/4000-381244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381243/", + "id": 381243, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-56/4000-381243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381242/", + "id": 381242, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-55/4000-381242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381240/", + "id": 381240, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-53/4000-381240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381239/", + "id": 381239, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-52/4000-381239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381238/", + "id": 381238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-51/4000-381238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381237/", + "id": 381237, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-50/4000-381237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381236/", + "id": 381236, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-49/4000-381236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381234/", + "id": 381234, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-48/4000-381234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381233/", + "id": 381233, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-47/4000-381233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381232/", + "id": 381232, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-46/4000-381232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381231/", + "id": 381231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-45/4000-381231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381230/", + "id": 381230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-44/4000-381230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381229/", + "id": 381229, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-43/4000-381229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381228/", + "id": 381228, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-42/4000-381228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381227/", + "id": 381227, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-41/4000-381227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381226/", + "id": 381226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-40/4000-381226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381225/", + "id": 381225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-39/4000-381225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381224/", + "id": 381224, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-38/4000-381224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381223/", + "id": 381223, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-37/4000-381223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381222/", + "id": 381222, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-36/4000-381222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381221/", + "id": 381221, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-35/4000-381221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381220/", + "id": 381220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-34/4000-381220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381219/", + "id": 381219, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-33/4000-381219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381212/", + "id": 381212, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-32/4000-381212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381211/", + "id": 381211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-31/4000-381211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381210/", + "id": 381210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-30/4000-381210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381209/", + "id": 381209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-29/4000-381209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381208/", + "id": 381208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-28/4000-381208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381207/", + "id": 381207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-27/4000-381207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381206/", + "id": 381206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-26/4000-381206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381205/", + "id": 381205, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-25/4000-381205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381204/", + "id": 381204, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-24/4000-381204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381203/", + "id": 381203, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-23/4000-381203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381202/", + "id": 381202, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-22/4000-381202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381201/", + "id": 381201, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-21/4000-381201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381200/", + "id": 381200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-20/4000-381200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381199/", + "id": 381199, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-19/4000-381199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381198/", + "id": 381198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-18/4000-381198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381197/", + "id": 381197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-17/4000-381197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381177/", + "id": 381177, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-16/4000-381177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381176/", + "id": 381176, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-15/4000-381176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381175/", + "id": 381175, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-14/4000-381175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381174/", + "id": 381174, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-13/4000-381174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381173/", + "id": 381173, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-12/4000-381173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381172/", + "id": 381172, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-11/4000-381172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381171/", + "id": 381171, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-10/4000-381171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381170/", + "id": 381170, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-9/4000-381170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381169/", + "id": 381169, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-8/4000-381169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381168/", + "id": 381168, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-7/4000-381168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381167/", + "id": 381167, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-6/4000-381167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381166/", + "id": 381166, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-5/4000-381166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381165/", + "id": 381165, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-4/4000-381165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381164/", + "id": 381164, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-3/4000-381164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381163/", + "id": 381163, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-2/4000-381163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381162/", + "id": 381162, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-heroes-villains-collection-1/4000-381162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-379456/", + "id": 379456, + "name": "Batman & Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/dc-marvel-16-batman-spider-man/4000-379456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-375994/", + "id": 375994, + "name": "Spider-Man et L'Homme -Chose", + "site_detail_url": "https://comicvine.gamespot.com/eclipso-70-spider-man-et-lhomme-chose/4000-375994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-375353/", + "id": 375353, + "name": "Access der Wachter 1 von 3", + "site_detail_url": "https://comicvine.gamespot.com/dc-marvel-8-access-der-wachter-1-von-3/4000-375353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-375148/", + "id": 375148, + "name": "La Boite a Cauchemars", + "site_detail_url": "https://comicvine.gamespot.com/eclipso-67-la-boite-a-cauchemars/4000-375148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-373935/", + "id": 373935, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-42/4000-373935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-370917/", + "id": 370917, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/superhelden-agenda-3/4000-370917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367008/", + "id": 367008, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spawn-10/4000-367008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366808/", + "id": 366808, + "name": "Summer 1985", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1985s-summer-1985/4000-366808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366802/", + "id": 366802, + "name": "The Book of the Vishanti", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-1980w-the-book-of-the-vishanti/4000-366802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-364377/", + "id": 364377, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spirou-3466/4000-364377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363883/", + "id": 363883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-1976/4000-363883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363881/", + "id": 363881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-1974/4000-363881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-363878/", + "id": 363878, + "name": "Marvel Comic Annual", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-1970-marvel-comic-annual/4000-363878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352927/", + "id": 352927, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thing-is-big-ben-15/4000-352927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352921/", + "id": 352921, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thing-is-big-ben-10/4000-352921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-352920/", + "id": 352920, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/thing-is-big-ben-9/4000-352920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345711/", + "id": 345711, + "name": "¡Lucha contra ... Daredevil!", + "site_detail_url": "https://comicvine.gamespot.com/classic-spiderman-9-lucha-contra-daredevil/4000-345711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345159/", + "id": 345159, + "name": "Spidey's Worst Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-201-spidey-s-worst-nightmar/4000-345159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344379/", + "id": 344379, + "name": "¡La noche de os simios!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-84-la-noche-de-os-simios/4000-344379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344377/", + "id": 344377, + "name": "¡Tienes barro en el ojo!", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-82-tienes-barro-en-el-ojo/4000-344377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344147/", + "id": 344147, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-3/4000-344147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344144/", + "id": 344144, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spiderman-6/4000-344144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343428/", + "id": 343428, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/biblioteca-marvel-hulk-7/4000-343428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334114/", + "id": 334114, + "name": "Goblin il Maligno", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-12-goblin-il-maligno/4000-334114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334113/", + "id": 334113, + "name": "La sfida di Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-11-la-sfida-di-mysterio/4000-334113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334112/", + "id": 334112, + "name": "La minaccia del Dr Octopus", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-10-la-minaccia-del-dr-octopus/4000-334112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334111/", + "id": 334111, + "name": "Un Uomo chiamato Electro", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-9-un-uomo-chiamato-electro/4000-334111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-334108/", + "id": 334108, + "name": "Il mistero di Lizard", + "site_detail_url": "https://comicvine.gamespot.com/luomo-ragno-6-il-mistero-di-lizard/4000-334108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-332070/", + "id": 332070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/tim-sale-pin-ups-1/4000-332070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331609/", + "id": 331609, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1985/4000-331609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331608/", + "id": 331608, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1984/4000-331608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331607/", + "id": 331607, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1983/4000-331607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331606/", + "id": 331606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1982/4000-331606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331605/", + "id": 331605, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1981/4000-331605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331604/", + "id": 331604, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1980/4000-331604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331603/", + "id": 331603, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1979/4000-331603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331602/", + "id": 331602, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1978/4000-331602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331601/", + "id": 331601, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1977/4000-331601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331600/", + "id": 331600, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1976/4000-331600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-331599/", + "id": 331599, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual-1975/4000-331599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-330825/", + "id": 330825, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-5/4000-330825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-330821/", + "id": 330821, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-spinne-1/4000-330821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-330622/", + "id": 330622, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/die-racher-10/4000-330622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329759/", + "id": 329759, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/look-in-television-annual-1983/4000-329759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328563/", + "id": 328563, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-154/4000-328563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328562/", + "id": 328562, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-153/4000-328562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328560/", + "id": 328560, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-151/4000-328560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328555/", + "id": 328555, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-148/4000-328555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328554/", + "id": 328554, + "name": "War of the Giants!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-147-war-of-the-giants/4000-328554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328552/", + "id": 328552, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-145/4000-328552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328551/", + "id": 328551, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-144/4000-328551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328550/", + "id": 328550, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-143/4000-328550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328549/", + "id": 328549, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-142/4000-328549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328548/", + "id": 328548, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-141/4000-328548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328545/", + "id": 328545, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-138/4000-328545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328544/", + "id": 328544, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-137/4000-328544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328543/", + "id": 328543, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-136/4000-328543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328542/", + "id": 328542, + "name": "Panic in the Prison!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-135-panic-in-the-prison/4000-328542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328541/", + "id": 328541, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-134/4000-328541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328540/", + "id": 328540, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-133/4000-328540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328539/", + "id": 328539, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-132/4000-328539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328538/", + "id": 328538, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-131/4000-328538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328537/", + "id": 328537, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-130/4000-328537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328536/", + "id": 328536, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-129/4000-328536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328535/", + "id": 328535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-128/4000-328535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328534/", + "id": 328534, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-127/4000-328534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328533/", + "id": 328533, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-126/4000-328533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328532/", + "id": 328532, + "name": "Spidey's Origin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-125-spideys-origin/4000-328532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328531/", + "id": 328531, + "name": "The Prowler!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-124-the-prowler/4000-328531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328521/", + "id": 328521, + "name": "The Arms of Doctor Octopus!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-114-the-arms-of-doctor-oc/4000-328521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328520/", + "id": 328520, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-113/4000-328520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328513/", + "id": 328513, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-107/4000-328513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328512/", + "id": 328512, + "name": "The Kingpin Strikes Back!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-106-the-kingpin-strikes-b/4000-328512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328509/", + "id": 328509, + "name": "Spidey Goes Wild!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-103-spidey-goes-wild/4000-328509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328508/", + "id": 328508, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-102/4000-328508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328507/", + "id": 328507, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-101/4000-328507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328506/", + "id": 328506, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-100/4000-328506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328505/", + "id": 328505, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-99/4000-328505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328503/", + "id": 328503, + "name": "The Prowler Strikes at Midnight!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-98-the-prowler-strikes-at/4000-328503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328502/", + "id": 328502, + "name": "To Prowl no More!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-97-to-prowl-no-more/4000-328502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328501/", + "id": 328501, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-96/4000-328501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328500/", + "id": 328500, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-95/4000-328500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328499/", + "id": 328499, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-94/4000-328499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328498/", + "id": 328498, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-93/4000-328498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328497/", + "id": 328497, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-92/4000-328497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328496/", + "id": 328496, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-91/4000-328496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328493/", + "id": 328493, + "name": "The Fantastic Secret of the Petrified Tablet!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-89-the-fantastic-secret-o/4000-328493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328491/", + "id": 328491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-88/4000-328491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328489/", + "id": 328489, + "name": "Web of Sudden Death!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-87-web-of-sudden-death/4000-328489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328487/", + "id": 328487, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-86/4000-328487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328485/", + "id": 328485, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-85/4000-328485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328483/", + "id": 328483, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-84/4000-328483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328481/", + "id": 328481, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-83/4000-328481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328480/", + "id": 328480, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-82/4000-328480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328478/", + "id": 328478, + "name": "Wanted Dead or Alive!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-81-wanted-dead-or-alive/4000-328478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328474/", + "id": 328474, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-80/4000-328474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328473/", + "id": 328473, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-79/4000-328473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328472/", + "id": 328472, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-78/4000-328472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328471/", + "id": 328471, + "name": "Crisis on the Campus!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-77-crisis-on-the-campus/4000-328471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328470/", + "id": 328470, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-76/4000-328470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328469/", + "id": 328469, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-75/4000-328469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328468/", + "id": 328468, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-74/4000-328468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328467/", + "id": 328467, + "name": "The Green Goblin's Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-73-the-green-goblins-reve/4000-328467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328466/", + "id": 328466, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-72/4000-328466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328465/", + "id": 328465, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-71/4000-328465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328464/", + "id": 328464, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-70/4000-328464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328463/", + "id": 328463, + "name": "The Madness of Mysterio!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-69-the-madness-of-mysteri/4000-328463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328462/", + "id": 328462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-68/4000-328462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328461/", + "id": 328461, + "name": "Escape Impossible!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-67-escape-impossible/4000-328461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328460/", + "id": 328460, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-66/4000-328460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328459/", + "id": 328459, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-65/4000-328459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328458/", + "id": 328458, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-64/4000-328458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328457/", + "id": 328457, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-63/4000-328457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328456/", + "id": 328456, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-62/4000-328456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328455/", + "id": 328455, + "name": "Death Is the Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-61-death-is-the-kingpin/4000-328455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328454/", + "id": 328454, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-60/4000-328454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328453/", + "id": 328453, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-59/4000-328453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328452/", + "id": 328452, + "name": "Slaves of the Kingpin!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-58-slaves-of-the-kingpin/4000-328452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328451/", + "id": 328451, + "name": "The Brand of the Brainwasher!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-57-the-brand-of-the-brain/4000-328451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328450/", + "id": 328450, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-56/4000-328450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328449/", + "id": 328449, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-55/4000-328449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328448/", + "id": 328448, + "name": "To Crush a Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-54-to-crush-a-spider-man/4000-328448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328446/", + "id": 328446, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-52/4000-328446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328445/", + "id": 328445, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-51/4000-328445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328444/", + "id": 328444, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-50/4000-328444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328443/", + "id": 328443, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-49/4000-328443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328442/", + "id": 328442, + "name": "The Tentacles and the Trap!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-48-the-tentacles-and-the-/4000-328442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328441/", + "id": 328441, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-47/4000-328441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328440/", + "id": 328440, + "name": "To Die a Hero!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-46-to-die-a-hero/4000-328440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328437/", + "id": 328437, + "name": "Spider-Man No More!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-44-spider-man-no-more/4000-328437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328436/", + "id": 328436, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-43/4000-328436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328434/", + "id": 328434, + "name": "The WIngs of the Vulture!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-42-the-wings-of-the-vultu/4000-328434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328433/", + "id": 328433, + "name": "At the Hands of the Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-41-at-the-hands-of-the-hu/4000-328433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328432/", + "id": 328432, + "name": "The SInister Shocker!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-40-the-sinister-shocker/4000-328432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328431/", + "id": 328431, + "name": "Spidey Smashes Out!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-39-spidey-smashes-out/4000-328431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328430/", + "id": 328430, + "name": "Where Crawls the Lizard!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-38-where-crawls-the-lizar/4000-328430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328429/", + "id": 328429, + "name": "Rhino on the Rampage!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-37-rhino-on-the-rampage/4000-328429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328428/", + "id": 328428, + "name": "The Birth of a Super-Hero?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-36-the-birth-of-a-super-h/4000-328428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328427/", + "id": 328427, + "name": "The Horns of the Rhino!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-35-the-horns-of-the-rhino/4000-328427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328426/", + "id": 328426, + "name": "Spidey Saves the Day!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-34-spidey-saves-the-day/4000-328426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328425/", + "id": 328425, + "name": "The Green Goblin Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-33-the-green-goblin-strik/4000-328425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328424/", + "id": 328424, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-32/4000-328424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328423/", + "id": 328423, + "name": "\"Once Upon a Time ... There Was a Robot\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-31-once-upon-a-time-there/4000-328423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328422/", + "id": 328422, + "name": "When Falls the Meteor!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-30-when-falls-the-meteor/4000-328422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328421/", + "id": 328421, + "name": "Molten Man Returns!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-29-molten-man-returns/4000-328421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328420/", + "id": 328420, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-28/4000-328420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328419/", + "id": 328419, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-27/4000-328419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328418/", + "id": 328418, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-26/4000-328418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328407/", + "id": 328407, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-weekly-15/4000-328407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328392/", + "id": 328392, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-198/4000-328392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328391/", + "id": 328391, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-197/4000-328391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328388/", + "id": 328388, + "name": "When the Scorpion Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-195-when-th/4000-328388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328387/", + "id": 328387, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-194/4000-328387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328386/", + "id": 328386, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-193/4000-328386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328385/", + "id": 328385, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-192/4000-328385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328384/", + "id": 328384, + "name": "Mysterio Means Madness!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-191-mysteri/4000-328384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328382/", + "id": 328382, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-190/4000-328382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328380/", + "id": 328380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-189/4000-328380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328379/", + "id": 328379, + "name": "Day of the Grizzly!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-188-day-of-/4000-328379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328378/", + "id": 328378, + "name": "The Mystery of the Mindworm!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-187-the-mys/4000-328378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328376/", + "id": 328376, + "name": "Th Green Goblin Lives!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-185-th-gree/4000-328376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328374/", + "id": 328374, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-184/4000-328374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328373/", + "id": 328373, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-183/4000-328373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328371/", + "id": 328371, + "name": "The Molten Man Strikes Again!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-181-the-mol/4000-328371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328367/", + "id": 328367, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-180/4000-328367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328365/", + "id": 328365, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-179/4000-328365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328364/", + "id": 328364, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-178/4000-328364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328362/", + "id": 328362, + "name": "The Shadow of the Vulture", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-177-the-sha/4000-328362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328361/", + "id": 328361, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-176/4000-328361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328360/", + "id": 328360, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-175/4000-328360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328359/", + "id": 328359, + "name": "The Man-Wolf Strikes Again!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-174-the-man/4000-328359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328356/", + "id": 328356, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-173/4000-328356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328355/", + "id": 328355, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-172/4000-328355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328354/", + "id": 328354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-171/4000-328354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328352/", + "id": 328352, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-170/4000-328352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328351/", + "id": 328351, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-169/4000-328351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328350/", + "id": 328350, + "name": "Spidey vs: The Hulk!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-168-spidey-/4000-328350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328349/", + "id": 328349, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-167/4000-328349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328348/", + "id": 328348, + "name": "Designs of the Disruptor!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-166-designs/4000-328348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328347/", + "id": 328347, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-165/4000-328347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328346/", + "id": 328346, + "name": "Final Clash!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-164-final-c/4000-328346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328344/", + "id": 328344, + "name": "Gang War!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-163-gang-wa/4000-328344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328343/", + "id": 328343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-162/4000-328343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328342/", + "id": 328342, + "name": "Spidey Cops Out!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-161-spidey-/4000-328342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328340/", + "id": 328340, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-160/4000-328340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328339/", + "id": 328339, + "name": "The Ape and the Arachnid!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-with-the-super-heroes-159-the-ape/4000-328339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328305/", + "id": 328305, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-228/4000-328305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328304/", + "id": 328304, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-227/4000-328304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328302/", + "id": 328302, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-226/4000-328302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328301/", + "id": 328301, + "name": "Death at 20,000 Feet!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-225-death-at-20000/4000-328301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328298/", + "id": 328298, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-223/4000-328298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328297/", + "id": 328297, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-222/4000-328297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328296/", + "id": 328296, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-221/4000-328296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328295/", + "id": 328295, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-220/4000-328295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328294/", + "id": 328294, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-219/4000-328294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328293/", + "id": 328293, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-218/4000-328293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328292/", + "id": 328292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-217/4000-328292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328291/", + "id": 328291, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-216/4000-328291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328290/", + "id": 328290, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-215/4000-328290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328287/", + "id": 328287, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-214/4000-328287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328286/", + "id": 328286, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-213/4000-328286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328285/", + "id": 328285, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-212/4000-328285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328284/", + "id": 328284, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-211/4000-328284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328282/", + "id": 328282, + "name": "Whodunit!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-209-whodunit/4000-328282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328281/", + "id": 328281, + "name": "Wrath of the Sandman! ", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-208-wrath-of-the-s/4000-328281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328280/", + "id": 328280, + "name": "When the Sandman Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-207-when-the-sandm/4000-328280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328279/", + "id": 328279, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-206/4000-328279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328278/", + "id": 328278, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-205/4000-328278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328277/", + "id": 328277, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-204/4000-328277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328276/", + "id": 328276, + "name": "Death Trap!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-203-death-trap/4000-328276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328273/", + "id": 328273, + "name": "Coils of the Spider Slayer!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-and-the-titans-200-coils-of-the-s/4000-328273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328251/", + "id": 328251, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-310/4000-328251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328250/", + "id": 328250, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-309/4000-328250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328249/", + "id": 328249, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-308/4000-328249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328248/", + "id": 328248, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-307/4000-328248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328247/", + "id": 328247, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-306/4000-328247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328246/", + "id": 328246, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-305/4000-328246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328245/", + "id": 328245, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-304/4000-328245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328244/", + "id": 328244, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-303/4000-328244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328243/", + "id": 328243, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-302/4000-328243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328242/", + "id": 328242, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-301/4000-328242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328241/", + "id": 328241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-300/4000-328241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328240/", + "id": 328240, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-299/4000-328240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328239/", + "id": 328239, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-298/4000-328239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328238/", + "id": 328238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-297/4000-328238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328237/", + "id": 328237, + "name": "Horror on the High Seas!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-296-horror-on-the-high-seas/4000-328237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328236/", + "id": 328236, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-295/4000-328236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328235/", + "id": 328235, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-294/4000-328235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328234/", + "id": 328234, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-293/4000-328234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328233/", + "id": 328233, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-292/4000-328233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328232/", + "id": 328232, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-291/4000-328232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328231/", + "id": 328231, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-290/4000-328231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328230/", + "id": 328230, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-289/4000-328230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328229/", + "id": 328229, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-288/4000-328229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328228/", + "id": 328228, + "name": "Guns of the Mob!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-287-guns-of-the-mob/4000-328228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328227/", + "id": 328227, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-286/4000-328227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328226/", + "id": 328226, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-285/4000-328226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328225/", + "id": 328225, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-284/4000-328225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328223/", + "id": 328223, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-283/4000-328223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328222/", + "id": 328222, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-282/4000-328222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328221/", + "id": 328221, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-281/4000-328221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328220/", + "id": 328220, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-280/4000-328220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328219/", + "id": 328219, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-279/4000-328219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328218/", + "id": 328218, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-278/4000-328218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328217/", + "id": 328217, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-277/4000-328217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328216/", + "id": 328216, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-276/4000-328216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328215/", + "id": 328215, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-275/4000-328215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328214/", + "id": 328214, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-274/4000-328214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328213/", + "id": 328213, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-273/4000-328213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328212/", + "id": 328212, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-272/4000-328212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328211/", + "id": 328211, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-271/4000-328211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328210/", + "id": 328210, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-270/4000-328210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328209/", + "id": 328209, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-269/4000-328209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328208/", + "id": 328208, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-268/4000-328208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328207/", + "id": 328207, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-267/4000-328207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328206/", + "id": 328206, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-266/4000-328206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328205/", + "id": 328205, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-265/4000-328205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328204/", + "id": 328204, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-264/4000-328204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328203/", + "id": 328203, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-263/4000-328203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328202/", + "id": 328202, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-262/4000-328202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328201/", + "id": 328201, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-261/4000-328201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328200/", + "id": 328200, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-260/4000-328200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328199/", + "id": 328199, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-259/4000-328199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328198/", + "id": 328198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-258/4000-328198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328197/", + "id": 328197, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-257/4000-328197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328196/", + "id": 328196, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-256/4000-328196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328195/", + "id": 328195, + "name": "Menace of Morbius!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-255-menace-of-morbius/4000-328195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328070/", + "id": 328070, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-hulk-team-up-441/4000-328070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328069/", + "id": 328069, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-hulk-team-up-440/4000-328069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328043/", + "id": 328043, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-499/4000-328043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328042/", + "id": 328042, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-498/4000-328042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328041/", + "id": 328041, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-497/4000-328041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328040/", + "id": 328040, + "name": "Hellpit", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-496-hellpit/4000-328040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328039/", + "id": 328039, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-495/4000-328039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328038/", + "id": 328038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-494/4000-328038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328037/", + "id": 328037, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-493/4000-328037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328036/", + "id": 328036, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-492/4000-328036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328035/", + "id": 328035, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-491/4000-328035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328034/", + "id": 328034, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-490/4000-328034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328033/", + "id": 328033, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-489/4000-328033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328032/", + "id": 328032, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-488/4000-328032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328031/", + "id": 328031, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-487/4000-328031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328030/", + "id": 328030, + "name": "What if Spider-Man's Clone Lived?", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-486-what-if-spider-mans-/4000-328030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328029/", + "id": 328029, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-485/4000-328029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328028/", + "id": 328028, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-484/4000-328028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328027/", + "id": 328027, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-483/4000-328027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328026/", + "id": 328026, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-482/4000-328026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328025/", + "id": 328025, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-481-cloak-and-dagger/4000-328025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328024/", + "id": 328024, + "name": "Murder by Spider!", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-480-murder-by-spider/4000-328024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328023/", + "id": 328023, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-479/4000-328023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328022/", + "id": 328022, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-478/4000-328022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328020/", + "id": 328020, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-476/4000-328020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328019/", + "id": 328019, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-475/4000-328019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328018/", + "id": 328018, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-474/4000-328018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328017/", + "id": 328017, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-473/4000-328017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328016/", + "id": 328016, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-472/4000-328016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328015/", + "id": 328015, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-471/4000-328015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328014/", + "id": 328014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-470/4000-328014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328013/", + "id": 328013, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-469/4000-328013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328012/", + "id": 328012, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-468/4000-328012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328011/", + "id": 328011, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-467/4000-328011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328010/", + "id": 328010, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-466/4000-328010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328009/", + "id": 328009, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-465/4000-328009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328008/", + "id": 328008, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-464/4000-328008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328006/", + "id": 328006, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-463/4000-328006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328005/", + "id": 328005, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-462/4000-328005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328004/", + "id": 328004, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-461/4000-328004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328003/", + "id": 328003, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-460/4000-328003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328002/", + "id": 328002, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-459/4000-328002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328001/", + "id": 328001, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-458/4000-328001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-328000/", + "id": 328000, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-457/4000-328000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327999/", + "id": 327999, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-456/4000-327999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327998/", + "id": 327998, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-455/4000-327998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327997/", + "id": 327997, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-454/4000-327997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327996/", + "id": 327996, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-453/4000-327996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327995/", + "id": 327995, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-452/4000-327995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327994/", + "id": 327994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/super-spider-man-tv-comic-451/4000-327994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327984/", + "id": 327984, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-552/4000-327984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327983/", + "id": 327983, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-551/4000-327983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327982/", + "id": 327982, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-550/4000-327982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327981/", + "id": 327981, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-549/4000-327981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327980/", + "id": 327980, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-548/4000-327980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327979/", + "id": 327979, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-547/4000-327979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327978/", + "id": 327978, + "name": "Confrontations", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-546-confrontations/4000-327978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327977/", + "id": 327977, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-545/4000-327977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327976/", + "id": 327976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-544/4000-327976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327975/", + "id": 327975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-543/4000-327975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327974/", + "id": 327974, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-542/4000-327974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327973/", + "id": 327973, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-541/4000-327973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327972/", + "id": 327972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-540/4000-327972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327971/", + "id": 327971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-539/4000-327971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327970/", + "id": 327970, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-538/4000-327970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327969/", + "id": 327969, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-537/4000-327969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327968/", + "id": 327968, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-536/4000-327968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327967/", + "id": 327967, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-535/4000-327967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327966/", + "id": 327966, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-534/4000-327966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327965/", + "id": 327965, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-533/4000-327965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327964/", + "id": 327964, + "name": "Wings of Vengeance!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-532-wings-of-vengeance/4000-327964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327963/", + "id": 327963, + "name": "The Vulture Returns!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-531-the-vulture-returns/4000-327963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327962/", + "id": 327962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-530/4000-327962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327961/", + "id": 327961, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-529/4000-327961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327960/", + "id": 327960, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-528/4000-327960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327959/", + "id": 327959, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-527/4000-327959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327958/", + "id": 327958, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-526/4000-327958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327957/", + "id": 327957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-525/4000-327957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327956/", + "id": 327956, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-524/4000-327956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327955/", + "id": 327955, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-523/4000-327955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327954/", + "id": 327954, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-522/4000-327954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327953/", + "id": 327953, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-521/4000-327953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327952/", + "id": 327952, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-520/4000-327952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327951/", + "id": 327951, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-519/4000-327951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327950/", + "id": 327950, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-518/4000-327950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327949/", + "id": 327949, + "name": "The Return of the Black Cat!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-517-the-return-of-the-black-cat/4000-327949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327948/", + "id": 327948, + "name": "Spider Madness!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-516-spider-madness/4000-327948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327947/", + "id": 327947, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-514/4000-327947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327946/", + "id": 327946, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-513/4000-327946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327945/", + "id": 327945, + "name": "Death of a Spider!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-512-death-of-a-spider/4000-327945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327944/", + "id": 327944, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-511/4000-327944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327943/", + "id": 327943, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-510/4000-327943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327942/", + "id": 327942, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-509/4000-327942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327941/", + "id": 327941, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-508/4000-327941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327940/", + "id": 327940, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-507/4000-327940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327939/", + "id": 327939, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-506/4000-327939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327938/", + "id": 327938, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-505/4000-327938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327937/", + "id": 327937, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-504/4000-327937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327936/", + "id": 327936, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-503/4000-327936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327932/", + "id": 327932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-515/4000-327932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327889/", + "id": 327889, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-633/4000-327889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327887/", + "id": 327887, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-631/4000-327887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327886/", + "id": 327886, + "name": "Shocker on the Streets", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-630-shocker-on-the-streets/4000-327886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327885/", + "id": 327885, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-629/4000-327885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327884/", + "id": 327884, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-628/4000-327884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327883/", + "id": 327883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-627/4000-327883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327881/", + "id": 327881, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-626/4000-327881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327880/", + "id": 327880, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-625/4000-327880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327879/", + "id": 327879, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-624/4000-327879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327878/", + "id": 327878, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-623/4000-327878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327877/", + "id": 327877, + "name": "Car-nage!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-622-car-nage/4000-327877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327876/", + "id": 327876, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-621/4000-327876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327875/", + "id": 327875, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-620/4000-327875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327873/", + "id": 327873, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-619/4000-327873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327872/", + "id": 327872, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-618/4000-327872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327871/", + "id": 327871, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-617/4000-327871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327870/", + "id": 327870, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-616/4000-327870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327869/", + "id": 327869, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-615/4000-327869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327866/", + "id": 327866, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-612/4000-327866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327864/", + "id": 327864, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-611/4000-327864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327863/", + "id": 327863, + "name": "Death Line", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-610-death-line/4000-327863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327859/", + "id": 327859, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-606/4000-327859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327858/", + "id": 327858, + "name": "Under Fire!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-605-under-fire/4000-327858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327857/", + "id": 327857, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-604/4000-327857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327855/", + "id": 327855, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-602/4000-327855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327852/", + "id": 327852, + "name": "Bless the Beasts & Children", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-599-bless-the-beasts-and-children/4000-327852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327851/", + "id": 327851, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-598/4000-327851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327850/", + "id": 327850, + "name": "Everybody Loves Somebody Sometime", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-597-everybody-loves-somebody-sometime/4000-327850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327849/", + "id": 327849, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-596/4000-327849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327848/", + "id": 327848, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-595/4000-327848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327847/", + "id": 327847, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-594/4000-327847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327845/", + "id": 327845, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-592/4000-327845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327844/", + "id": 327844, + "name": "Endings!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-591-endings/4000-327844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327843/", + "id": 327843, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-590/4000-327843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327842/", + "id": 327842, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-588/4000-327842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327841/", + "id": 327841, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-587/4000-327841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327840/", + "id": 327840, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-586/4000-327840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327839/", + "id": 327839, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-585/4000-327839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327838/", + "id": 327838, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-584/4000-327838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327837/", + "id": 327837, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-583/4000-327837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327836/", + "id": 327836, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-582/4000-327836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327835/", + "id": 327835, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-581/4000-327835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327834/", + "id": 327834, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-580/4000-327834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327833/", + "id": 327833, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-579/4000-327833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327826/", + "id": 327826, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-649/4000-327826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327825/", + "id": 327825, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-647/4000-327825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327824/", + "id": 327824, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-646/4000-327824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327823/", + "id": 327823, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-645/4000-327823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327822/", + "id": 327822, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-643/4000-327822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327821/", + "id": 327821, + "name": "A Day at the Circus of Crime Part One", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-642-a-day-at-the-circus-of-cr/4000-327821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327820/", + "id": 327820, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-641/4000-327820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327819/", + "id": 327819, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-640/4000-327819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327818/", + "id": 327818, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-639/4000-327818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327816/", + "id": 327816, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-637/4000-327816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327814/", + "id": 327814, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-man-comic-650/4000-327814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327811/", + "id": 327811, + "name": "Santa Claus the Movie", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-666-santa-claus-the-movie/4000-327811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327810/", + "id": 327810, + "name": "Flight to Danger", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-665-flight-to-danger/4000-327810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327809/", + "id": 327809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-664/4000-327809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327808/", + "id": 327808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-663/4000-327808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327807/", + "id": 327807, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-662/4000-327807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327806/", + "id": 327806, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-661/4000-327806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-327803/", + "id": 327803, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spidey-comic-658/4000-327803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325591/", + "id": 325591, + "name": "The Web Closes!", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-unknown-123-the-web-closes/4000-325591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325521/", + "id": 325521, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-111/4000-325521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325520/", + "id": 325520, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-112/4000-325520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-325519/", + "id": 325519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/creepy-worlds-104/4000-325519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318675/", + "id": 318675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-de-john-romita-62/4000-318675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306112/", + "id": 306112, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nova-223/4000-306112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-305868/", + "id": 305868, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/nova-80/4000-305868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298936/", + "id": 298936, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-36/4000-298936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298933/", + "id": 298933, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-33/4000-298933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298932/", + "id": 298932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-32/4000-298932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298929/", + "id": 298929, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-29/4000-298929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298928/", + "id": 298928, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-28/4000-298928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298926/", + "id": 298926, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-26/4000-298926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298925/", + "id": 298925, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-25/4000-298925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298922/", + "id": 298922, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-22/4000-298922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298808/", + "id": 298808, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universo-marvel-8/4000-298808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298806/", + "id": 298806, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universo-marvel-5/4000-298806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298805/", + "id": 298805, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/universo-marvel-4/4000-298805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295968/", + "id": 295968, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-46/4000-295968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295955/", + "id": 295955, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-33/4000-295955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295927/", + "id": 295927, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-5/4000-295927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295894/", + "id": 295894, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-37/4000-295894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295893/", + "id": 295893, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-36/4000-295893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295891/", + "id": 295891, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-34/4000-295891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295704/", + "id": 295704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-4/4000-295704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295703/", + "id": 295703, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-3/4000-295703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295702/", + "id": 295702, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-2/4000-295702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-295701/", + "id": 295701, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazin-1/4000-295701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292374/", + "id": 292374, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/max-36/4000-292374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292339/", + "id": 292339, + "name": "Spider-Man: Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/max-2-spider-man-kingpin/4000-292339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292310/", + "id": 292310, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-5/4000-292310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292292/", + "id": 292292, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-top-8/4000-292292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292266/", + "id": 292266, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-17/4000-292266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292265/", + "id": 292265, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-16/4000-292265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292259/", + "id": 292259, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-11/4000-292259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292183/", + "id": 292183, + "name": "Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-34-dark-reign/4000-292183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292152/", + "id": 292152, + "name": "Marvel Mangaverse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-3-marvel-mangaverse/4000-292152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292151/", + "id": 292151, + "name": "Spider-Man: Klassik Marvel Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-2-spider-man-klassik-marvel/4000-292151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292150/", + "id": 292150, + "name": "Marvel Mangaverse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monster-edition-1-marvel-mangaverse/4000-292150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292102/", + "id": 292102, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mega-24/4000-292102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292039/", + "id": 292039, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spider-man-12/4000-292039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291594/", + "id": 291594, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apresenta-31/4000-291594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291590/", + "id": 291590, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apresenta-25/4000-291590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291589/", + "id": 291589, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apresenta-21/4000-291589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290518/", + "id": 290518, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/las-aventuras-de-spiderman-1/4000-290518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289711/", + "id": 289711, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-kids-8/4000-289711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289708/", + "id": 289708, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-kids-5/4000-289708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289706/", + "id": 289706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-kids-3/4000-289706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289705/", + "id": 289705, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-kids-2/4000-289705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289704/", + "id": 289704, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-kids-1/4000-289704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289696/", + "id": 289696, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-97/4000-289696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289695/", + "id": 289695, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-96/4000-289695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289694/", + "id": 289694, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-95/4000-289694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289693/", + "id": 289693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-94/4000-289693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289692/", + "id": 289692, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-92/4000-289692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289691/", + "id": 289691, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-91/4000-289691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289690/", + "id": 289690, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-90/4000-289690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289689/", + "id": 289689, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-89/4000-289689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289688/", + "id": 289688, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-88/4000-289688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289685/", + "id": 289685, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-85/4000-289685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289684/", + "id": 289684, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-84/4000-289684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289683/", + "id": 289683, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-83/4000-289683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289682/", + "id": 289682, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-82/4000-289682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289681/", + "id": 289681, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-81/4000-289681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289680/", + "id": 289680, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-79/4000-289680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289679/", + "id": 289679, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-78/4000-289679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289678/", + "id": 289678, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-77/4000-289678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289677/", + "id": 289677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-76/4000-289677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289676/", + "id": 289676, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-75/4000-289676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289675/", + "id": 289675, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-74/4000-289675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289674/", + "id": 289674, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-73/4000-289674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289673/", + "id": 289673, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-72/4000-289673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289672/", + "id": 289672, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-71/4000-289672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289671/", + "id": 289671, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-70/4000-289671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289670/", + "id": 289670, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-69/4000-289670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289669/", + "id": 289669, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-68/4000-289669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289668/", + "id": 289668, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-67/4000-289668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289667/", + "id": 289667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-66/4000-289667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289666/", + "id": 289666, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-65/4000-289666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289664/", + "id": 289664, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-46/4000-289664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289663/", + "id": 289663, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-39/4000-289663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289662/", + "id": 289662, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-38/4000-289662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289661/", + "id": 289661, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-37/4000-289661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289660/", + "id": 289660, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-36/4000-289660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289658/", + "id": 289658, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-34/4000-289658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289657/", + "id": 289657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-33/4000-289657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289656/", + "id": 289656, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-32/4000-289656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289654/", + "id": 289654, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-30/4000-289654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289653/", + "id": 289653, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-29/4000-289653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289652/", + "id": 289652, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-28/4000-289652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289651/", + "id": 289651, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-27/4000-289651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289650/", + "id": 289650, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-26/4000-289650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289649/", + "id": 289649, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-25/4000-289649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289648/", + "id": 289648, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-24/4000-289648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289647/", + "id": 289647, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-23/4000-289647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289646/", + "id": 289646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-22/4000-289646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289645/", + "id": 289645, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-21/4000-289645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289644/", + "id": 289644, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-20/4000-289644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289643/", + "id": 289643, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-19/4000-289643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289642/", + "id": 289642, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-18/4000-289642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289641/", + "id": 289641, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-17/4000-289641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289639/", + "id": 289639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-15/4000-289639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289638/", + "id": 289638, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-14/4000-289638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289637/", + "id": 289637, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-13/4000-289637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289636/", + "id": 289636, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-12/4000-289636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289635/", + "id": 289635, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-11/4000-289635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289634/", + "id": 289634, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-10/4000-289634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289633/", + "id": 289633, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-9/4000-289633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289632/", + "id": 289632, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-8/4000-289632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289631/", + "id": 289631, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-7/4000-289631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289630/", + "id": 289630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-6/4000-289630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289626/", + "id": 289626, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-2/4000-289626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289625/", + "id": 289625, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/homem-aranha-1/4000-289625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289336/", + "id": 289336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/comic-shop-news-172/4000-289336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287551/", + "id": 287551, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-10/4000-287551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-287542/", + "id": 287542, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man-1/4000-287542/" + } + ], + "issues_died_in": [], + "movies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2619/", + "id": 2619, + "name": "Spider-Man: No Way Home", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-no-way-home/4025-2619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2555/", + "id": 2555, + "name": "Venom: Let There Be Carnage", + "site_detail_url": "https://comicvine.gamespot.com/venom-let-there-be-carnage/4025-2555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2709/", + "id": 2709, + "name": "Lego Marvel Avengers: Climate Conundrum", + "site_detail_url": "https://comicvine.gamespot.com/lego-marvel-avengers-climate-conundrum/4025-2709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2708/", + "id": 2708, + "name": "Lego Marvel Spider-Man: Vexed by Venom", + "site_detail_url": "https://comicvine.gamespot.com/lego-marvel-spider-man-vexed-by-venom/4025-2708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2367/", + "id": 2367, + "name": "Spider-Man: Far From Home", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home/4025-2367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2360/", + "id": 2360, + "name": "Avengers: Endgame", + "site_detail_url": "https://comicvine.gamespot.com/avengers-endgame/4025-2360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2329/", + "id": 2329, + "name": "Spider-Man: Into the Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-into-the-spider-verse/4025-2329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2297/", + "id": 2297, + "name": "Avengers: Infinity War", + "site_detail_url": "https://comicvine.gamespot.com/avengers-infinity-war/4025-2297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2239/", + "id": 2239, + "name": "Spider-Man Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-homecoming/4025-2239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2143/", + "id": 2143, + "name": "Captain America: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-civil-war/4025-2143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1651/", + "id": 1651, + "name": "The Amazing Spider-Man 2", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2/4025-1651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1933/", + "id": 1933, + "name": "LEGO Marvel Super Heroes: Maximum Overload", + "site_detail_url": "https://comicvine.gamespot.com/lego-marvel-super-heroes-maximum-overload/4025-1933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1945/", + "id": 1945, + "name": "Phineas and Ferb: Mission Marvel", + "site_detail_url": "https://comicvine.gamespot.com/phineas-and-ferb-mission-marvel/4025-1945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-2369/", + "id": 2369, + "name": "Jay & Silent Bob's Super Groovy Cartoon Movie", + "site_detail_url": "https://comicvine.gamespot.com/jay-and-silent-bobs-super-groovy-cartoon-movie/4025-2369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1213/", + "id": 1213, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4025-1213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1941/", + "id": 1941, + "name": "With Great Power: The Stan Lee Story", + "site_detail_url": "https://comicvine.gamespot.com/with-great-power-the-stan-lee-story/4025-1941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-733/", + "id": 733, + "name": "Iron Man 2", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2/4025-733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-54/", + "id": 54, + "name": "Spider-Man 3", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3/4025-54/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1155/", + "id": 1155, + "name": "Spider-Man: The Venom Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-venom-saga/4025-1155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-42/", + "id": 42, + "name": "Spider-Man 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2/4025-42/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1154/", + "id": 1154, + "name": "Spider-Man vs. Doc Ock", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-doc-ock/4025-1154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-662/", + "id": 662, + "name": "Daredevil VS Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-vs-spider-man/4025-662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1153/", + "id": 1153, + "name": "Spider-Man: The Return of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-return-of-the-green-goblin/4025-1153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-34/", + "id": 34, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4025-34/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-1152/", + "id": 1152, + "name": "Spider-Man: The Ultimate Villain Showdown", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-ultimate-villain-showdown/4025-1152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-695/", + "id": 695, + "name": "Spider-Man Blade the Vampire Hunter", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blade-the-vampire-hunter/4025-695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-828/", + "id": 828, + "name": "Spider Man: The Dragon's Challenge", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-dragons-challenge/4025-828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-829/", + "id": 829, + "name": "Spider-Man Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-strikes-back/4025-829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/movie/4025-831/", + "id": 831, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4025-831/" + } + ], + "name": "Spider-Man", + "origin": { + "api_detail_url": "https://comicvine.gamespot.com/api/origin/4030-4/", + "id": 4, + "name": "Human" + }, + "powers": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-2/", + "id": 2, + "name": "Super Strength" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-3/", + "id": 3, + "name": "Super Speed" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-4/", + "id": 4, + "name": "Agility" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-5/", + "id": 5, + "name": "Stamina" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-9/", + "id": 9, + "name": "Intellect" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-15/", + "id": 15, + "name": "Healing" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-28/", + "id": 28, + "name": "Feral" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-35/", + "id": 35, + "name": "Gadgets" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-38/", + "id": 38, + "name": "Siphon Abilities" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-54/", + "id": 54, + "name": "Wall Clinger" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-61/", + "id": 61, + "name": "Danger Sense" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-133/", + "id": 133, + "name": "Berserker Strength" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-138/", + "id": 138, + "name": "Webslinger" + } + ], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-31/", + "id": 31, + "name": "Marvel" + }, + "real_name": "Peter Benjamin Parker", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4005-1443/", + "story_arc_credits": [], + "team_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13497/", + "id": 13497, + "name": "A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/aim/4060-13497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63342/", + "id": 63342, + "name": "A.R.E.S.", + "site_detail_url": "https://comicvine.gamespot.com/ares/4060-63342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62840/", + "id": 62840, + "name": "Agence Byzantine", + "site_detail_url": "https://comicvine.gamespot.com/agence-byzantine/4060-62840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-2508/", + "id": 2508, + "name": "Ani-Men", + "site_detail_url": "https://comicvine.gamespot.com/ani-men/4060-2508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56192/", + "id": 56192, + "name": "Arcane Order Of The Night", + "site_detail_url": "https://comicvine.gamespot.com/arcane-order-of-the-night/4060-56192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63086/", + "id": 63086, + "name": "Atlas Foundation", + "site_detail_url": "https://comicvine.gamespot.com/atlas-foundation/4060-63086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43805/", + "id": 43805, + "name": "Avant Guard", + "site_detail_url": "https://comicvine.gamespot.com/avant-guard/4060-43805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56193/", + "id": 56193, + "name": "Bedrocks", + "site_detail_url": "https://comicvine.gamespot.com/bedrocks/4060-56193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65053/", + "id": 65053, + "name": "Beyond Corporation", + "site_detail_url": "https://comicvine.gamespot.com/beyond-corporation/4060-65053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63373/", + "id": 63373, + "name": "Black Cat's Gang", + "site_detail_url": "https://comicvine.gamespot.com/black-cats-gang/4060-63373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59877/", + "id": 59877, + "name": "Black Order", + "site_detail_url": "https://comicvine.gamespot.com/black-order/4060-59877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57889/", + "id": 57889, + "name": "Bombshells", + "site_detail_url": "https://comicvine.gamespot.com/bombshells/4060-57889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56051/", + "id": 56051, + "name": "Cabal", + "site_detail_url": "https://comicvine.gamespot.com/cabal/4060-56051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7115/", + "id": 7115, + "name": "Cabal of Scrier", + "site_detail_url": "https://comicvine.gamespot.com/cabal-of-scrier/4060-7115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55941/", + "id": 55941, + "name": "Cadre", + "site_detail_url": "https://comicvine.gamespot.com/cadre/4060-55941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60367/", + "id": 60367, + "name": "Celestial Order of the Si-Fan", + "site_detail_url": "https://comicvine.gamespot.com/celestial-order-of-the-si-fan/4060-60367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55946/", + "id": 55946, + "name": "Cell-12", + "site_detail_url": "https://comicvine.gamespot.com/cell-12/4060-55946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56689/", + "id": 56689, + "name": "Chess Set", + "site_detail_url": "https://comicvine.gamespot.com/chess-set/4060-56689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23035/", + "id": 23035, + "name": "Circus of Crime", + "site_detail_url": "https://comicvine.gamespot.com/circus-of-crime/4060-23035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61457/", + "id": 61457, + "name": "City Stealers", + "site_detail_url": "https://comicvine.gamespot.com/city-stealers/4060-61457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58709/", + "id": 58709, + "name": "Cult of Kali", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-kali/4060-58709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63994/", + "id": 63994, + "name": "Cyber-Hunters", + "site_detail_url": "https://comicvine.gamespot.com/cyber-hunters/4060-63994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40822/", + "id": 40822, + "name": "Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle/4060-40822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55990/", + "id": 55990, + "name": "Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers/4060-55990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64545/", + "id": 64545, + "name": "Doom's Brigade", + "site_detail_url": "https://comicvine.gamespot.com/dooms-brigade/4060-64545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55702/", + "id": 55702, + "name": "Enclave", + "site_detail_url": "https://comicvine.gamespot.com/enclave/4060-55702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-32265/", + "id": 32265, + "name": "Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/enforcers/4060-32265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42127/", + "id": 42127, + "name": "Exemplars", + "site_detail_url": "https://comicvine.gamespot.com/exemplars/4060-42127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60086/", + "id": 60086, + "name": "Exterminators", + "site_detail_url": "https://comicvine.gamespot.com/exterminators/4060-60086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60781/", + "id": 60781, + "name": "Extreme Emergency Team", + "site_detail_url": "https://comicvine.gamespot.com/extreme-emergency-team/4060-60781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-28478/", + "id": 28478, + "name": "Femme Fatales", + "site_detail_url": "https://comicvine.gamespot.com/femme-fatales/4060-28478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56064/", + "id": 56064, + "name": "Foreigner's Death Squad", + "site_detail_url": "https://comicvine.gamespot.com/foreigners-death-squad/4060-56064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40563/", + "id": 40563, + "name": "Friends of Humanity", + "site_detail_url": "https://comicvine.gamespot.com/friends-of-humanity/4060-40563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11439/", + "id": 11439, + "name": "Frightful Four", + "site_detail_url": "https://comicvine.gamespot.com/frightful-four/4060-11439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57548/", + "id": 57548, + "name": "Goblin Cult", + "site_detail_url": "https://comicvine.gamespot.com/goblin-cult/4060-57548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55788/", + "id": 55788, + "name": "Hammer Industries", + "site_detail_url": "https://comicvine.gamespot.com/hammer-industries/4060-55788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62713/", + "id": 62713, + "name": "Hateful Hexad", + "site_detail_url": "https://comicvine.gamespot.com/hateful-hexad/4060-62713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-17793/", + "id": 17793, + "name": "Headmen", + "site_detail_url": "https://comicvine.gamespot.com/headmen/4060-17793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60033/", + "id": 60033, + "name": "House of Magnus", + "site_detail_url": "https://comicvine.gamespot.com/house-of-magnus/4060-60033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3480/", + "id": 3480, + "name": "HYDRA", + "site_detail_url": "https://comicvine.gamespot.com/hydra/4060-3480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59893/", + "id": 59893, + "name": "Imperial Police Force", + "site_detail_url": "https://comicvine.gamespot.com/imperial-police-force/4060-59893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62224/", + "id": 62224, + "name": "Infinity War Doppelgangers", + "site_detail_url": "https://comicvine.gamespot.com/infinity-war-doppelgangers/4060-62224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61151/", + "id": 61151, + "name": "Inheritors", + "site_detail_url": "https://comicvine.gamespot.com/inheritors/4060-61151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60486/", + "id": 60486, + "name": "Iron Force", + "site_detail_url": "https://comicvine.gamespot.com/iron-force/4060-60486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57327/", + "id": 57327, + "name": "Kravinoff family", + "site_detail_url": "https://comicvine.gamespot.com/kravinoff-family/4060-57327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7588/", + "id": 7588, + "name": "Kree", + "site_detail_url": "https://comicvine.gamespot.com/kree/4060-7588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52900/", + "id": 52900, + "name": "Legion of Losers", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-losers/4060-52900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40788/", + "id": 40788, + "name": "Life Foundation", + "site_detail_url": "https://comicvine.gamespot.com/life-foundation/4060-40788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26082/", + "id": 26082, + "name": "Maggia", + "site_detail_url": "https://comicvine.gamespot.com/maggia/4060-26082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60148/", + "id": 60148, + "name": "Men-Fish", + "site_detail_url": "https://comicvine.gamespot.com/men-fish/4060-60148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49867/", + "id": 49867, + "name": "Nazis", + "site_detail_url": "https://comicvine.gamespot.com/nazis/4060-49867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51749/", + "id": 51749, + "name": "New Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/new-enforcers/4060-51749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62772/", + "id": 62772, + "name": "New U Technologies", + "site_detail_url": "https://comicvine.gamespot.com/new-u-technologies/4060-62772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56259/", + "id": 56259, + "name": "Praetorian Guard", + "site_detail_url": "https://comicvine.gamespot.com/praetorian-guard/4060-56259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65359/", + "id": 65359, + "name": "Purrfect Purrloiners", + "site_detail_url": "https://comicvine.gamespot.com/purrfect-purrloiners/4060-65359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63187/", + "id": 63187, + "name": "Red Hand Gang", + "site_detail_url": "https://comicvine.gamespot.com/red-hand-gang/4060-63187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63693/", + "id": 63693, + "name": "Repo Squad", + "site_detail_url": "https://comicvine.gamespot.com/repo-squad/4060-63693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56010/", + "id": 56010, + "name": "Roxxon", + "site_detail_url": "https://comicvine.gamespot.com/roxxon/4060-56010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41180/", + "id": 41180, + "name": "Savage Land Mutates", + "site_detail_url": "https://comicvine.gamespot.com/savage-land-mutates/4060-41180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61235/", + "id": 61235, + "name": "Save Our Society Foundation", + "site_detail_url": "https://comicvine.gamespot.com/save-our-society-foundation/4060-61235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15136/", + "id": 15136, + "name": "Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire/4060-15136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-28980/", + "id": 28980, + "name": "Serpent Society", + "site_detail_url": "https://comicvine.gamespot.com/serpent-society/4060-28980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54260/", + "id": 54260, + "name": "Shadaloo", + "site_detail_url": "https://comicvine.gamespot.com/shadaloo/4060-54260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56690/", + "id": 56690, + "name": "Shadowforce Alpha", + "site_detail_url": "https://comicvine.gamespot.com/shadowforce-alpha/4060-56690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40429/", + "id": 40429, + "name": "Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/sinister-six/4060-40429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40477/", + "id": 40477, + "name": "Sinister Syndicate", + "site_detail_url": "https://comicvine.gamespot.com/sinister-syndicate/4060-40477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53126/", + "id": 53126, + "name": "Sisterhood of the Wasps", + "site_detail_url": "https://comicvine.gamespot.com/sisterhood-of-the-wasps/4060-53126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40668/", + "id": 40668, + "name": "Skrulls", + "site_detail_url": "https://comicvine.gamespot.com/skrulls/4060-40668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56121/", + "id": 56121, + "name": "Spider-Squad", + "site_detail_url": "https://comicvine.gamespot.com/spider-squad/4060-56121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59730/", + "id": 59730, + "name": "Styx And Stone", + "site_detail_url": "https://comicvine.gamespot.com/styx-and-stone/4060-59730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56880/", + "id": 56880, + "name": "Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/symbiotes/4060-56880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47476/", + "id": 47476, + "name": "Team Carnage", + "site_detail_url": "https://comicvine.gamespot.com/team-carnage/4060-47476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56187/", + "id": 56187, + "name": "The False Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-false-heroes/4060-56187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55703/", + "id": 55703, + "name": "The Five Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/the-five-symbiotes/4060-55703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-1800/", + "id": 1800, + "name": "The Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-hand/4060-1800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50312/", + "id": 50312, + "name": "The Imperfects", + "site_detail_url": "https://comicvine.gamespot.com/the-imperfects/4060-50312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42781/", + "id": 42781, + "name": "The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/the-initiative/4060-42781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56281/", + "id": 56281, + "name": "The Inner Demons", + "site_detail_url": "https://comicvine.gamespot.com/the-inner-demons/4060-56281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-22911/", + "id": 22911, + "name": "The Jury", + "site_detail_url": "https://comicvine.gamespot.com/the-jury/4060-22911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63326/", + "id": 63326, + "name": "The Lords of Light and Darkness", + "site_detail_url": "https://comicvine.gamespot.com/the-lords-of-light-and-darkness/4060-63326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55805/", + "id": 55805, + "name": "The Seekers", + "site_detail_url": "https://comicvine.gamespot.com/the-seekers/4060-55805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60132/", + "id": 60132, + "name": "The Universal Church of Immortus", + "site_detail_url": "https://comicvine.gamespot.com/the-universal-church-of-immortus/4060-60132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64022/", + "id": 64022, + "name": "The Vermin", + "site_detail_url": "https://comicvine.gamespot.com/the-vermin/4060-64022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65170/", + "id": 65170, + "name": "The Warforce", + "site_detail_url": "https://comicvine.gamespot.com/the-warforce/4060-65170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23977/", + "id": 23977, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4060-23977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59699/", + "id": 59699, + "name": "Triad Brothers", + "site_detail_url": "https://comicvine.gamespot.com/triad-brothers/4060-59699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40826/", + "id": 40826, + "name": "Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six/4060-40826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60387/", + "id": 60387, + "name": "Vizier's Guard", + "site_detail_url": "https://comicvine.gamespot.com/viziers-guard/4060-60387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63898/", + "id": 63898, + "name": "Vulture Fliers", + "site_detail_url": "https://comicvine.gamespot.com/vulture-fliers/4060-63898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63733/", + "id": 63733, + "name": "War Goblins", + "site_detail_url": "https://comicvine.gamespot.com/war-goblins/4060-63733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47411/", + "id": 47411, + "name": "Warheads", + "site_detail_url": "https://comicvine.gamespot.com/warheads/4060-47411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18519/", + "id": 18519, + "name": "Wrecking Crew", + "site_detail_url": "https://comicvine.gamespot.com/wrecking-crew/4060-18519/" + } + ], + "team_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40959/", + "id": 40959, + "name": "Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas/4060-40959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14616/", + "id": 14616, + "name": "Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight/4060-14616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56190/", + "id": 56190, + "name": "Anti-Vivisectionists", + "site_detail_url": "https://comicvine.gamespot.com/anti-vivisectionists/4060-56190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40489/", + "id": 40489, + "name": "Autobots", + "site_detail_url": "https://comicvine.gamespot.com/autobots/4060-40489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40484/", + "id": 40484, + "name": "Big Hero 6", + "site_detail_url": "https://comicvine.gamespot.com/big-hero-6/4060-40484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43574/", + "id": 43574, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4060-43574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-9483/", + "id": 9483, + "name": "Code: Blue", + "site_detail_url": "https://comicvine.gamespot.com/code-blue/4060-9483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14864/", + "id": 14864, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4060-14864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-19986/", + "id": 19986, + "name": "Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles/4060-19986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3804/", + "id": 3804, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4060-3804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40400/", + "id": 40400, + "name": "Gen 13", + "site_detail_url": "https://comicvine.gamespot.com/gen-13/4060-40400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60008/", + "id": 60008, + "name": "Horizon Labs", + "site_detail_url": "https://comicvine.gamespot.com/horizon-labs/4060-60008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-25623/", + "id": 25623, + "name": "Infinity Watch", + "site_detail_url": "https://comicvine.gamespot.com/infinity-watch/4060-25623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56984/", + "id": 56984, + "name": "Metahumes", + "site_detail_url": "https://comicvine.gamespot.com/metahumes/4060-56984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11896/", + "id": 11896, + "name": "New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors/4060-11896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40523/", + "id": 40523, + "name": "Nightstalkers", + "site_detail_url": "https://comicvine.gamespot.com/nightstalkers/4060-40523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42568/", + "id": 42568, + "name": "Outlaws", + "site_detail_url": "https://comicvine.gamespot.com/outlaws/4060-42568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40498/", + "id": 40498, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4060-40498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40440/", + "id": 40440, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4060-40440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60211/", + "id": 60211, + "name": "S.M.A.S.H.", + "site_detail_url": "https://comicvine.gamespot.com/s-m-a-s-h/4060-60211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41664/", + "id": 41664, + "name": "Santerians", + "site_detail_url": "https://comicvine.gamespot.com/santerians/4060-41664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44648/", + "id": 44648, + "name": "Scarlet Spiders", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spiders/4060-44648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43529/", + "id": 43529, + "name": "Slingers", + "site_detail_url": "https://comicvine.gamespot.com/slingers/4060-43529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63603/", + "id": 63603, + "name": "The Iron Rangers", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-rangers/4060-63603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53813/", + "id": 53813, + "name": "The Misfits", + "site_detail_url": "https://comicvine.gamespot.com/the-misfits/4060-53813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64716/", + "id": 64716, + "name": "The Order", + "site_detail_url": "https://comicvine.gamespot.com/the-order/4060-64716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45685/", + "id": 45685, + "name": "The Six", + "site_detail_url": "https://comicvine.gamespot.com/the-six/4060-45685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15595/", + "id": 15595, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4060-15595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3173/", + "id": 3173, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4060-3173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11485/", + "id": 11485, + "name": "X-Statix", + "site_detail_url": "https://comicvine.gamespot.com/x-statix/4060-11485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40426/", + "id": 40426, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4060-40426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41156/", + "id": 41156, + "name": "Young Gods", + "site_detail_url": "https://comicvine.gamespot.com/young-gods/4060-41156/" + } + ], + "teams": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57091/", + "id": 57091, + "name": "Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/amazing-friends/4060-57091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3806/", + "id": 3806, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4060-3806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59251/", + "id": 59251, + "name": "Avengers Unity Squad", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unity-squad/4060-59251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57959/", + "id": 57959, + "name": "Bannervengers", + "site_detail_url": "https://comicvine.gamespot.com/bannervengers/4060-57959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62241/", + "id": 62241, + "name": "Brooklyn Avengers", + "site_detail_url": "https://comicvine.gamespot.com/brooklyn-avengers/4060-62241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58650/", + "id": 58650, + "name": "Confederacy of Dunces", + "site_detail_url": "https://comicvine.gamespot.com/confederacy-of-dunces/4060-58650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59306/", + "id": 59306, + "name": "Cosmic Champions", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-champions/4060-59306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40822/", + "id": 40822, + "name": "Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle/4060-40822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56979/", + "id": 56979, + "name": "Daily Globe", + "site_detail_url": "https://comicvine.gamespot.com/daily-globe/4060-56979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65086/", + "id": 65086, + "name": "Darkhold Defenders", + "site_detail_url": "https://comicvine.gamespot.com/darkhold-defenders/4060-65086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26333/", + "id": 26333, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4060-26333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18424/", + "id": 18424, + "name": "Fantastic Five", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-five/4060-18424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3804/", + "id": 3804, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4060-3804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11439/", + "id": 11439, + "name": "Frightful Four", + "site_detail_url": "https://comicvine.gamespot.com/frightful-four/4060-11439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56561/", + "id": 56561, + "name": "Front Line", + "site_detail_url": "https://comicvine.gamespot.com/front-line/4060-56561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57552/", + "id": 57552, + "name": "Future Foundation", + "site_detail_url": "https://comicvine.gamespot.com/future-foundation/4060-57552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59305/", + "id": 59305, + "name": "Galactic Alliance of Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/galactic-alliance-of-spider-men/4060-59305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56236/", + "id": 56236, + "name": "GARID", + "site_detail_url": "https://comicvine.gamespot.com/garid/4060-56236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56621/", + "id": 56621, + "name": "Holy Guard", + "site_detail_url": "https://comicvine.gamespot.com/holy-guard/4060-56621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60008/", + "id": 60008, + "name": "Horizon Labs", + "site_detail_url": "https://comicvine.gamespot.com/horizon-labs/4060-60008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40423/", + "id": 40423, + "name": "Horsemen of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/horsemen-of-apocalypse/4060-40423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60268/", + "id": 60268, + "name": "League of Realms ", + "site_detail_url": "https://comicvine.gamespot.com/league-of-realms/4060-60268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65030/", + "id": 65030, + "name": "Marvel Balls", + "site_detail_url": "https://comicvine.gamespot.com/marvel-balls/4060-65030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15411/", + "id": 15411, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies/4060-15411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42520/", + "id": 42520, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4060-42520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56839/", + "id": 56839, + "name": "New Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four/4060-56839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58700/", + "id": 58700, + "name": "Oscorp Industries", + "site_detail_url": "https://comicvine.gamespot.com/oscorp-industries/4060-58700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58900/", + "id": 58900, + "name": "Outlaw Avengers", + "site_detail_url": "https://comicvine.gamespot.com/outlaw-avengers/4060-58900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42568/", + "id": 42568, + "name": "Outlaws", + "site_detail_url": "https://comicvine.gamespot.com/outlaws/4060-42568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62748/", + "id": 62748, + "name": "Parker Industries", + "site_detail_url": "https://comicvine.gamespot.com/parker-industries/4060-62748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3775/", + "id": 3775, + "name": "S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/shield/4060-3775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57020/", + "id": 57020, + "name": "Secret Defenders", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders/4060-57020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40429/", + "id": 40429, + "name": "Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/sinister-six/4060-40429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63798/", + "id": 63798, + "name": "Spider-Force", + "site_detail_url": "https://comicvine.gamespot.com/spider-force/4060-63798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57010/", + "id": 57010, + "name": "Super Hero Squad", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad/4060-57010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56143/", + "id": 56143, + "name": "Team Venom", + "site_detail_url": "https://comicvine.gamespot.com/team-venom/4060-56143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57511/", + "id": 57511, + "name": "The Electric Company", + "site_detail_url": "https://comicvine.gamespot.com/the-electric-company/4060-57511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57937/", + "id": 57937, + "name": "The Lucky Seven", + "site_detail_url": "https://comicvine.gamespot.com/the-lucky-seven/4060-57937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63287/", + "id": 63287, + "name": "The Resistance", + "site_detail_url": "https://comicvine.gamespot.com/the-resistance/4060-63287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56186/", + "id": 56186, + "name": "The Vi-Locks", + "site_detail_url": "https://comicvine.gamespot.com/the-vi-locks/4060-56186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43062/", + "id": 43062, + "name": "Ultimate Knights", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-knights/4060-43062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40826/", + "id": 40826, + "name": "Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six/4060-40826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57676/", + "id": 57676, + "name": "Ultimate Warriors", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-warriors/4060-57676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64922/", + "id": 64922, + "name": "W.E.B.", + "site_detail_url": "https://comicvine.gamespot.com/web/4060-64922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50418/", + "id": 50418, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4060-50418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61785/", + "id": 61785, + "name": "Web Warriors", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors/4060-61785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11879/", + "id": 11879, + "name": "Wild Pack", + "site_detail_url": "https://comicvine.gamespot.com/wild-pack/4060-11879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3173/", + "id": 3173, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4060-3173/" + } + ], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42224/", + "id": 42224, + "name": "Der Erstaunliche Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/der-erstaunliche-spider-man/4050-42224/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/character-list-item/characters.json b/samples/api-data/character-list-item/characters.json new file mode 100644 index 0000000..5029ffd --- /dev/null +++ b/samples/api-data/character-list-item/characters.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":151969,"status_code":1,"results":[{"aliases":"Garth Ranzz\nLightning Boy\nProty\nLive Wire\nStarfinger\nLightning Man","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1253/","birth":null,"count_of_issue_appearances":982,"date_added":"2008-06-06 11:27:37","date_last_updated":"2021-04-02 20:00:03","deck":"Garth Ranzz is one of the three original members/founders of the Legion of Super-Heroes. Empowered with the ability to control electricity, he is called Lightning Lad. Garth is the older twin brother of fellow Legionnaire Lightning Lass, and the younger brother of Lightning Lord.","description":"

Origin

\"Original
Original Lightning Boy

Garth Ranzz was born on the agricultural world of Winath with his twin, Ayla. Garth, Ayla, and their older brother Mekt were joy riding when their ship lost power and came down on the world of Korbal. They devised a scheme to recharge their ship's energy cells using the electrical energy of Korbal's lightning beasts. They underestimated the beasts' power and were all bathed in bio-electric energy. After their return with new found powers, Mekt disappeared. Garth left home to look for his brother. On his journey he helped two other super powered teenagers foil the assassination of philanthropist R.J. Brande. Brande suggested they form a team - the Legion of Super-Heroes. Garth assumed the name Lightning Boy initially, but switched to Lightning Lad.

Creation

Lightning Lad was created by Otto Binder and Al Plastino

Character Evolution

Original Continuity: New Earth

\"Lightning
Lightning Lad (New Earth)

He was one of the first Legionnaires to be killed when he sacrificed his life to save Saturn Girl, taking a blast from Zaryan the Conqueror's ship. He was resurrected by Proty, the shape shifting pet of Chameleon Boy, who sacrificed his life to revive Garth in a lightning ceremony. Later, Garth lost his right arm to a giant space whale, and had to get a cybernetic replacement. Years later, his parents were killed in a space cruiser accident. His years on the Legion weren't all bad. He formed close friendships with Cosmic Boy and Sun Boy and he and Saturn Girl became one of the Legion's earliest couples following his resurrection. His sister joined the Legion as well. Though Garth lost his arm, it was eventually restored. After several years of dating, Lightning Lad proposed to Saturn Girl and she accepted.

Reboot: Earth-247

\"Live
Live Wire (Earth-247)

In his search for his brother Mekt he had been branded a runaway due to only being 14, which was a minor on Winath. When his sister arrived to join the Legion as Winath's official representative, Garth quit in shame. He went on to work for the industrialist Leland McCauley on his Workforce team. Garth had hoped to make some money to look for his brother, but quit the team soon after due to McCauley's lack of morals. Despite aiding the Legion against Daxamite terrorists, Garth was still not allowed to rejoin, so he went off again to find his brother. When he found Mekt, his mind had snapped, and he was a deadly criminal. Mekt abducted Garth and shot his right arm off. After recovering from his battle with Mekt and gaining a cybernetic arm, Garth worked with a newly formed Espionage Squad to uncover the corruption of President Chu. She was impeached, and Brande was made president in her place. His first act as President was to eliminate the membership restrictions on the Legion, finally allowing Garth to rejoin.

Threeboot: Earth-Prime

\"Lightning
Lightning Lad (Earth-Prime)

On Earth-Prime, Garth Ranzz was Lightning Lad once more and one of the founders of the Legion of Super-Heroes. They were now a teen youth movement and Garth coined their first battle cry: \"Eat it, Grandpa!\" He was dating Saturn Girl, and said that the only way to successfully date a telepath was to be \"way honest.\" He was instrumental in gaining legal status for the Legion, but forgot to read the fine print in the agreement - the U.P. now had the right to use the Legion's image in any way they wished. When Cosmic Boy disappeared after the Dominators attempted to take over Earth, a public election was held for Legion leadership. Supergirl was elected with Lightning Lad her deputy. She soon left for the 21st century and Garth became the team leader. Garth was quickly overwhelmed with the responsibilities of leadership, especially dealing with the various organizations of the United Planets. This put a strain in he and Saturn Girl's relationship which led her to have a psychic affair. She confessed the indiscretion and Garth broke up with her.

Retroboot: New Earth

\"Lightning
Lightning Lad (New Earth)

Infinite Crisis restored the original Legion continuity from before Five Years Later. Garth was once again married to Saturn Girl and a father to twin sons, though he ultimately rejoined the Legion when Earth-Man began an anti-alien campaign on Earth. The Legion founders went to the Batcave to find proof that Superman was actually a Kryptonian and not an Earthling like Earth-Man was leading the people to believe, but Garth and the others were captured. Eventually he was freed and Earth-Man was defeated. After Saturn Girl's homeworld of Titan was destroyed and their twin boys were kidnapped but recovered from a servant of Darkseid, Garth and Imra decide to take a leave of absence from the Legion to spend time with their boys.

Post-Flashpoint: Earth-0

\"Lightning
Lightning Man (Earth-0)

Following the conclusion of Flashpoint, the various timelines were united and rebooted once again. The Legion's timeline changed slightly where they still reached out to a young Clark Kent long before he became Superman, but they Legion grew up along with Clark and have changed their names to reflect their age. Imra changed her name to Saturn Woman and her along with Saturn Girl (Now Saturn Woman) and Cosmic Boy (Now Cosmic Man) reunited with an adult Clark Kent in an effort to stop the Anti-Superman army from destroying the original rocket that took Clark to Earth. They succeeded in saving the rocket and keeping he timeline intact. During the battle, Garth's right arm was apparently destroyed off-panel. The wires seen in its place indicate that he had already replaced it with a cybernetic arm akin to the Earth-247 version.

DC Rebirth

Lightning Lad reappears once again as a founding member of the Legion Of Superheroes

Major Story Arcs

Original Continuity: New Earth

Married Life

\"Garth
Garth x Imra

The duo were married and were forced to leave the Legion by its own by-laws, but this was shortly thereafter vetoed and the couple returned to active duty. Garth was even elected leader at one point, but the stress became too much and he resigned before the end of his term. Imra became pregnant and gave birth to a healthy baby boy, Graym Ranzz. Wanting to spend more time with his young family, Garth resigned with his fellow Legion founders from the team. Though it was a horror to learn that the villainous Validus was actually his son's twin, thrust through time and manipulated by Darkseid, the boy was eventually restored and returned to the Ranzzes. Even after Saturn Girl returned to active duty, Garth remained at home with his sons.

Five Years Later

\"Garth
Garth Ranzz (Five Years Later)

Following the five years later after the Magic Wars, Garth had relocated his family to Winath. There they established the Lightning Plantation and became a successful farming and shipping collective. Tragedy struck when Garth's son Garridan, the former Validus, began infecting Winathians with a deadly plague. His son had to be taken off-world to the planet Quarantine and could only visit wearing a special suit. The disease also caused Garth to walk with a limp. However, good news soon followed. Imra became pregnant again with twins and the Legion of Super-Heroes was reforming. Though the Ranzzes didn't join back up, they did assist their old teammates from time to time and Garth even gave them an old storage facility on Talus to use as a headquarters.

Who is Gath?

\"The
The mind of Proty

Shortly after his daughters Dacey and Dorritt were born, his sister Ayla stumbled upon a secret that Garth had been keeping: he wasn't Garth at all, but Proty. Proty's consciousness had been transferred into Garth's body and was the cause of Lightning Lad's resurrection. Being a former telepath as Proty, Garth was able to protect his thoughts from his telepathic wife about the matter. Garth assisted Legionnaires past and present in hunting down Glorith and Mordru to save Cosmic Boy. Zero Hour then happened and Garth and the other Legionnaires sacrificed themselves to save the timestream and create a new reality.

Reboot: Earth-247

The Death of Garth

When half the Legion was stuck in the 20th century, Brande personally asked Garth to become Legion leader. Live Wire wasn't comfortable with the idea and shortly thereafter hosted a leadership election for a replacement. Once the team was reunited, he began a relationship with Saturn Girl and ultimately proposed. Garth and Imra were one of several Legionnaires lost in a spatial rift. Saturn Girl's manipulation of the team put a strain on their relationship. Live Wire sacrificed himself fighting their former teammate, Element Lad, who had spent billions of years becoming a mad god.

Garth's Body Restored

Garth's spirit, however, was stored in the living crystals of Element Lad's corpse, and he was able to return to the Legion - but in Element Lad's body. This caused a lot of anxiety among the Legion, but eventually his friends came to accept Garth. When Earth-247 was destroyed in Infinite Crisis, Garth and his team survived because they had been lost in the timestream. Garth's original body was eventually restored when the Brainiac 5 of New Earth used a special lightning rod to help Garth transmute himself to normal. He then rejoined his team as they pushed into the multiverse as the new Wanderers.

Powers & Abilities

Electricity Control

\"Lightning
Lightning Powers

Lightning Lad has the ability to generate electricity and direct bolts of electricity accurately. Lightning Lad can use his power destructively, such as to short-circuit electrical items, split boulders, burn objects with precision or shatter walls. He can also reduce the force of his bolts so that they will only stun. He can send his electricity through conductive metals. He has a degree of immunity to electrical charge; in fact, they give him more strength to use his power. In some instances he has a robotic right arm that is powered by his lightning power.

Equipment

As a member of the Legion of Super-Heroes, Lightning Lad possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

Silver Age: Lightning Man

In the original debut of the Legion of Supervillians, this team came from a time when the Legion of Superheroes had reach adulthood. Among the members it also was Lightning Man, an adult version of Garth. Superboy and later Superman would meet several times this possible future for the Legion. The concept would be revisited after Flashpoint. (Note:This Lightning man must not to be confused with an alternate identity of Superman, also used in the Silver Age).

Five Years Later / Batch SW6

\"Live
Live Wire (Batch SW6)

Months beforehand, young counterparts from the Legion's early days surfaced among Dominator experiments on Earth. A young Lightning Lad, complete with restored arm, was among their number and had the hotshot personality of the original Garth. His team went on to become the Legionnaires of New Earth and Garth took on the name Live Wire. Live Wire ultimately merged with the elder Lightning Lad during Zero Hour.

Other Media

Television

DC Animated Universe

\"Lightning
Lightning Lad on JLU

Lightning Lad had small, non-speaking roles in the Legion's appearances on both Superman: the Animated Series and Justice League Unlimited.

The Superman episode \"New Kids in Town\" featured him as one of several Legionnaires back in the 30th century. The JLU episode \"Far From Home\" featured Garth as one of many Legionnaires possessed by the Emerald Eye and willing to attack Supergirl. He, along with the rest of the Legion, was ultimately freed.

Superman & The Legion of Super-Heroes

\"Lightning
Lightning Lad on Legion

Lightning Lad was a main character on the two seasons of the animated Legion of Super-Heroes show. He had an origin similar to the comic books, though this time his sister Ayla didn't survive the attack by the lightning beasts as children. This same event also left Garth with a lightning bolt scar over one eye, which lit up when he used his powers. During the two seasons of the show, Garth had a flirtation with Saturn Girl but never properly developed a romance. He often butted heads with fellow co-founder Cosmic Boy on issues and Saturn Girl specifically. He appeared in every episode of season one and all but \"Cry Wolf\", \"Unnatural Alliances\", and \"Trials\" in season two.

In season one, Garth joined the Legion of Super-Villains to be with his brother Mekt and leave behind his immature Legion teammates but quickly learned the team wasn't for him. In season two, Garth lost his arm to his brother and Imperiex and was given a cybernetic one. On the same adventure, Garth was able to reconstitute his sister, who had been existing as a lightning cloud since her disappearance.

Smallville

\"Lightning
Lightning Lad on Smallville

Garth was one of the founding Legionnaires who traveled to 20th century Smallville in the same-titled show, episode called \"Legion.\" He acted and appeared to be the youngest of the founding Legionnaires. Lightning Lad was there alongside Cosmic Boy and Saturn Girl to ward off the Persuader and help stop Brainiac by any means necessary, including killing Brainiac's host. Clark taught the Legionnaires that killing was never the answer and they decide to adopt a no killing policy in their Legion Constitution upon successfully capturing Brainiac without injuring its host. Garth and the others then returned to the future. Garth was portrayed by Calum Worthy.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114594/","id":114594,"name":"The Legion of Super-Heroes","issue_number":"247"},"gender":1,"id":1253,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68065/7666828-lightninglad05.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68065/7666828-lightninglad05.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68065/7666828-lightninglad05.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68065/7666828-lightninglad05.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68065/7666828-lightninglad05.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68065/7666828-lightninglad05.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68065/7666828-lightninglad05.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68065/7666828-lightninglad05.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68065/7666828-lightninglad05.jpg","image_tags":"All Images"},"name":"Lightning Lad","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Garth Ranzz","site_detail_url":"https://comicvine.gamespot.com/lightning-lad/4005-1253/"},{"aliases":"Nura Nal\nDreamy\nDreamer\nMiss Terious\nNura Nal-Dox\nNura Schappin\nHigh Seer of Naltor","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1254/","birth":null,"count_of_issue_appearances":424,"date_added":"2008-06-06 11:27:38","date_last_updated":"2021-12-29 23:12:15","deck":"Nura Nal is from the planet Naltor, where all of the inhabitants have the ability to see into the future, though Nura's precognitive ability is the strongest of her race. As Dream Girl, she is a longtime member of the Legion of Super-Heroes.","description":"

Origin

\"Dream
Dream Girl (original costume)

Nura Nal was born on Naltor in the thirtieth century. Naltor's native denizens are genetically inclined to be precognitives, with the ability to see into the future. At a young age, Nura became recognized as the most powerful precog among her people, more able to dream with peculiar accuracy, or see a few moments into the future while awake, than any other. Nura's exceptional beauty often hid the fact that she was also exceptionally bright, and once she reached adulthood, she had already mastered advanced Naltorian science, putting her among the galaxy's intellectual elite. Nura eventually left Naltor to act on one her visions in which she foresaw the death of several members of the Legion of Super-Heroes on a mission in space. Determined to prevent their deaths, she introduced herself to the Legion using the code name of Dream Girl.

Creation

Dream Girl was created in 1964 by writer Edmond Hamilton and artist John Forte, first appearing in Adventure Comics #310. She became the sixth female member of the Legion of Super-Heroes and their 20th member overall. As her code name would suggest, Dream Girl was portrayed as the most glamorous member of the Legion, and she was envisioned as a Marilyn Monroe-like beauty complete with platinum-blonde hair, revealing silver costumes, high heels, and a star-shaped birthmark on her right cheek. Despite her looks, Dream Girl was also conceived to be one of the Legion's most intelligent and capable members.

Character Evolution

Original Continuity: New Earth

\"Dream
Dream Girl (classic 70's costume)

Nura knew from her vision that several of the Legionnaires would face death in an explosion in space if they remained members of the team. At one of the Legion's open try-outs, Nura introduced herself as Dream Girl, gaining the attention of the male Legionnaires and the ire of the female Legionnaires. One Legionnaire fell in love with her at first sight, Star Boy. The male Legionnaires voted her in to the team. Immediately, Dream Girl studied the Legion Constitution, to discover ways to expel the doomed Legionnaires from the team. One by one, she sabotaged them, including Lightning Lass, who had her electrical powers seemingly removed by Nura's Naltorian science. The vision Nura had, turned out to be a vision of a test the Legion was doing with crash test dummies that looked like the Legionnaires. Dream Girl also revealed that Lightning Lass' powers had changed from electrical control to the nullification of gravity.

Once the truth of Dream Girl's scheme came out, the Legionnaires invited Dream Girl to stay on the team because she had their best interests in mind. Dream Girl declined the invitation, deciding instead to get more training in her abilities. Dream Girl joined the Legion of Substitute Heroes so she would have time to practice and perfect her visions. Later, after Star Boy lost his kryptonian-level powers, and followed her to the Substitute Legion and started their romance. Finally, when it appeared that Supergirl and Superboy were leaving the Legion of Super-Heroes, Star Boy and Dream Girl rejoined the team.

With her stunning pinup-girl looks and figure, a flirty swimsuit-like costume (which she wore even prior to the Legion's sexy-costume era of the 70's), and boldly confident personality, the male Legionnaires completely stopped noticing the other female members on the team, and the female Legionnaires soon grew jealous and resentful. Never one to back down from a challenge, Dream Girl made an effort to reach out to her female teammates, gradually winning them over and befriending them with her natural charm and charisma.

Reboot: Earth-247

\"Dream
Dream Girl (Earth-247)

Nura claimed that her name was Nura Schappin, changing her surname to Nal because, as she put it, \"It just says I'm from Naltor y'know.\" She also claimed to have been the first precognitive to be born on Naltor in seven generations, a claim that was later contradicted by other post-Zero Hour Legion stories. For most of this continuity's duration, Nura was not a Legionnaire, although she was still Star Boy's girlfriend. Additionally, she suffered from narcolepsy, falling unconscious whenever she had a vision. She was no longer the sister of Mysa, who was completely unrelated to her in this continuity. Eventually, Nura gained Legion membership under the codename Dreamer. Unlike other continuities her Legion costume featured a cape, as well as a diamond-shaped \"cleavage window\" in the front.

Threeboot: Earth-Prime

\"Dream
Dream Girl (Earth-Prime)

Dream Girl had a more disconnected and \"spaced out\" personality in this continuity, since her precognition often interfered with her perception of current reality and she had trouble differentiating between the two. She wore a midriff-baring costume with a silver top and black leggings. In her first action as a Legionnaire she stopped an assassination attempt on the United Planets delegates by a spy. Brainiac 5 had compiled data for three days and sent Dream Girl, Karate Kid, and Element Lad to stop the assassin. The Legionnaires looked like they were beaten, until Karate Kid woke Dream Girl from a daydream and she took down the assassin down with ease, saying that she thought they had already defeated him. Afterwards, Brainiac 5 announced that Dream Girl's precog power frustrated him to no end because there was no rationality to it and it was not scientific. Dream Girl then interrupted Brainy, talking about a conversation they had not had yet, frustrating him even further. Later, Dream Girl, Karate Kid, Shadow Lass and Brainiac 5 were all sent to Dream Girl's home planet of Naltor to investigate why no one under the age of 18 was able to sleep.

Brainiac 5 eventually realized that he was in love with her, right before she was killed in the battle that destroyed most of the Legion Headquarters. He stopped her soul from escaping, and she went to live only in Brainiac's mind while he tried to figure out a way to restore her body.

Retroboot: New Earth

\"Dream
Dream Girl (current continuity)

With the \"retroboot,\" Dream Girl and the Legion returned to being very much like the original team prior to the Five Year Gap, with a few differences. At the beginning of the story arc several members of the Legion (including the original Dream Girl in her classic silver costume) mysteriously appeared in the 21st century. Other Legionnaires were scattered and trapped in different places throughout the universe. Dream Girl was captured and imprisoned by the nightmarish villain Dr. Destiny in Arkham Asylum, where her precognitive powers were manipulated into giving her horrific illusions. She was rescued by the Justice Society and Justice League, and was reunited with her longtime love Thom Kallor (formerly Star Boy), who had been flung back in time to become the new Starman. In this revised history the relationship between the two was more tragic, since Starman suffered mental damage after being hurtled back through time unprepared. She felt terribly for him and believed that the 21st-century methods of treating his mental illness were barbaric. Dream Girl has since established a connection to the realm of 'The Dreaming,' further enhancing her precognitive powers. She also correctly predicted the threat of Superboy-Prime in Final Crisis: Legion of Three Worlds, the recent storyline which united all three versions of the Legion together. After the war with New Krypton in the 21st century, Dream Girl was able to bring Star Boy back home to the 31st century to get him the medical treatment he needed.

Major Story Arcs

Original Continuity: New Earth

Romance with Star Boy

Though Nura continued to receive constant attention from the unattached male Legionnaires (and even some of the attached ones), Star Boy (Thom Kallor) was the one who eventually managed to capture her heart. Nura became very close to him and she was romantically involved with Star Boy for many years. Dream Girl spent several years as someone who needed to be rescued, partly due to her effective but non-combative power. Not wanting to be a liability she trained intensively in hand-to-hand combat in order to better serve the team on the field. She was a quick study and became a highly skilled martial artist, second on the team in unarmed combat to only Karate Kid. Her precognitive power to foresee an opponent's moves before they even made them further enhanced her effectiveness as a fighter.

Leaving The Legion

At one point Nura took a temporary leave from the team, since she believed she had initially joined under false pretenses. She had foreseen the deaths of some Legionnaires while dreaming and proceeded to get those Legionnaires expelled from the Legion in order to save their lives. During this time she joined the Legion of Substitute Heroes until she reunited with Star Boy, who had been previously expelled from the Legion for accidentally killing Nura's former lover, a Naltorian named Kenz Nahor, in self-defense after Nahor attempted to kill Star Boy out of jealousy.

Leader of the Legion

Dream Girl soon rejoined the Legion and continued serving as a highly valued member. After Lightning Lad's term as Legion leader went horribly awry, the team decided it was time to elect a new leader, and Dream Girl announced that she was officially running for the position. The other candidates initially scoffed at the idea of the Legion's glamor girl winning the job, until they realized to their dismay that she would not have announced her candidacy had she not already foreseen herself winning. Sure enough, Dream Girl was elected leader, becoming only the second female Legionnaire ever to do so (after Saturn Girl).

Shortly after she assumed leadership the Legion was faced with one of the most dire challenges in their history -- the Great Darkness Saga. The ancient super-villain Darkseid attempted to conquer the whole of the United Planets. He very nearly succeeded, but the Legion, with Dream Girl's able leadership, finally managed to thwart him after an epic and costly struggle. During this time Nura's sister, Mysa Nal, arrived to aid the team with her mastery of the magical arts. Afterwards Mysa became a Legionnaire, calling herself the White Witch.

Though Dream Girl again ran for leader the following term, she lost out to Element Lad. Star Boy made no effort to hide his satisfaction about this result. During her stint as leader, their relationship had suffered. After Star Boy left the team to become planetary champion of his home planet, Xanthu.

The Universo Project

Dream Girl became one of the first Legion members to demonstrate sufficient willpower to utilize her Legion Flight Ring on an object other than herself, effectively giving her the ability of telekinesis. She later was one of four Legionnaires singled out by Universo as the most dangerous obstacles in his attempt to take over the Earth (along with Saturn Girl, Brainiac 5, and Chameleon Boy). The four were captured and held prisoner with their memories suppressed. Saturn Girl eventually regained her memory and helped her teammates engineer an escape, after which they turned the tables on Universo. It was assumed that they were isolated as the most dangerous because they were the smartest Legionnaires, but it also could have been that those four had the most resistance to Universo's mind control -- even more than the Legion's (then current) telepath, Tellus.

Mind-controlled by Atmos

When the ruler of Xanthu (Star Boy's home planet) asked Thom to be their resident hero since their champion Atmos had gone missing, Star Boy reluctantly had to take his leave from the Legion and Nura. While Star Boy was away, Atmos turned up during a Legion mission and Nura inexplicably found herself intensely attracted to him. To the surprise of her teammates, she broke up her long-distance relationship with Star Boy and jumped into a romance with Atmos. The truth later became apparent to her that Atmos was somehow using his mental powers to take over her emotions and sap her will. Furious at being so manipulated, she used her own formidable willpower to slowly build up a tolerance to Atmos' mind-sapping powers. She kept this a secret from her erstwhile lover until one night when Atmos had fallen asleep. She regained enough control over herself to activate her Legion flight ring alarm and knocked Atmos out cold with one punch the moment he woke up. Free of Atmos' influence, Nura immediately went back to her true love Thom.

Five Years Later

\"High
High Seer (Five Years Later)

After the devastation of the Magic Wars, Legion continuity was re-started after the period known as the Five Year Gap. The galactic economy had collapsed and Earth's government became very hostile towards the Legion. Nura left the team and made her return to Naltor to become its High Seer. She steered Naltor successfully through the troubled times, and under her leadership her world became one of the most stable economies in the United Planets. But Nura felt alone and missed Star Boy terribly, so she went through a series of relationships with several men during this time. In early 2996, after a flash of light that seemed to indicate some sort of time flux, Dream Girl joined her former teammates on Earth, and just before the destruction of the time line, she shared a kiss with her old flame Star Boy before they were wiped out of existence due to the Zero Hour event.

Threeboot: Earth-Prime

Guiding the Legion

On Naltor, the Legionnaires brought a crazed teen before the high council and Dream Girl demanded to know what was being done to fix the problem. She also explained that without dreams, Naltorians could not interpret their visions and would eventually lose their precognitive abilities. The high council of Nltro claimed that the lack of sleep was a disease and not to worry, since it would work itself out. After it was discovered that it was actually the adults committing the crime against the children, Brainiac 5 took off, leaving the other three Legionnaires to fight the Precommandos (Precog Cops). The cops lay a beating on Karate Kid and Shadow Lass, until Dream Girl distracted the police so that they focused their attention solely on her. Taking advantage of the distraction, her teammates took the cops down. Dream Girl knew that more precogs were on the way, but she also knew that there was something the high council did not want the kids to see. She tried to get Karate Kid to knock her out but he refused, so Shadow Lass blindsided her with a mean right hand. Dream Girl then viewed the Destruction of the Universe by an unknown enemy and his army. When she woke up she said one word... 'Brainy'. Dream Girl lead the team to the public service broadcaster where they found Brainy \"attacking the problem\" as he put. It came down to Dream Girl having to choose either to let the youth know what she saw and how little time they had left, or security and comfort. She chose the former.

Relationship with Brainiac 5

When the team returned to Legion headquarters, Brainiac 5 explained to Dream Girl how all it would take was one person, one casualty to have the willpower to break destiny; that the universe was more unpredictable than they gave it credit for and her visions did not have to be infallible. Dream Girl told him he would feel differently once they were married.

Foreseeing Her Own Death

After this the Legion's true enemy was revealed: The terrorist group called Terra Firma, lead by the super-powered Elysion and Lemnos. Terra Firma attacked the planet Helegyn. During this attack Dream girl had a vision but could not see past one hour; after that, all she saw was black. After Elysion was captured, Dream Girl took out her frustrations on him. As she did so, Dream Girl expressed faith, something unheard of for precogs. Brainiac 5 and Dream Girl had a romantic moment while he tried to figure out her problem. Then Terra Firma made their move, just as Dream Girl had foreseen. They suicide-bombed Legion Tower and the plaza where teens had gathered to support the Legion. Brainiac 5 and Dream Girl headed there. Elysion escaped and, using his earth-controlling powers, brought down Legion Tower on top of everyone around. Amid the chaos, the answer to Dream Girl's problem was answered... she could not see past her own death. Dream Girl was crushed in the rubble of Legion Tower.

Return to Life

After she died, Brainiac 5 activated his force field around her dug-out body, which was still in remarkably good condition despite its physical death. Later it was revealed that Brainiac 5 had placed Dream Girl's body in stasis and was using a captured Lemnos try to bring her back to life. At the end of the story arc, he was shown to be successful: Nura's consciousness was transferred into a newly cloned version of her original body with her powers and sight fully restored. In the final issue of this continuity, the happy pair announced to the rest of the team their plans to get married.

Retroboot: New Earth

The New 52

The efforts of DC to revitalize its titles led to the New 52 reboot of the universe, in which all DC titles were relaunched simultaneously. The Legion of Super Heroes reverted to a close analogue of their original continuity prior to any of reboots, but it remains to be seen the extent of any changes between the old series and new. Dream Girl and Star Boy are once again an official couple, though she also appears to have a strong relationship with Brainiac 5.

Powers & Abilities

Precognition

Dream Girl has the ability to see the future in dreams and visions. This is a power shared by all natives of her home planet Naltor, but Nura's ability to do so is considered to be among the strongest of her race. In addition to the long-range precognition of her dreams, Dream Girl also has the power of short term precognition when in a conscious state, allowing her to see a few seconds into the future at any given moment.

Unarmed Combat

Because of her passive power, Dream Girl's early portrayal was a damsel-in-distress who could be easily defeated and captured by enemies, obliging her teammates to rescue her. She resolved to change this and spent long hours with the Legion's ultimate martial arts master, Karate Kid, who gave her extensive training in hand-to-hand combat. She quickly became one of his most gifted students, to the point where she is now the second-most skilled martial artist on the team. Her fighting ability is greatly enhanced by her power to see seconds into the future, which allows her to predict her opponent's moves even before they make them and map out a battle before it actually begins. This makes her a very formidable tactician, and she is able to successfully combat enemies physically far stronger than her, such as the Persuader.

Intellect

Nura also possesses a genius-level intellect, and has mastered the highly advanced principles of Naltorian Science. She is one of the few Legionnaires to have received a compliment from Brainiac 5 for intellectual prowess. Because of her great intellect she was chosen for capture by the villain Universo, since he regarded her as one of the Legion's four biggest threats to his domination of Earth (the others being Saturn Girl, Chameleon Boy, and Brainiac 5).

Equipment

As a member of the Legion of Super-Heroes, Dream Girl possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring. Dream Girl has also employed the ring in various ways unknown to other Legionnaires. Using her great willpower, Nura has used the flight ring to levitate and move other nearby objects as though she has telekinesis.

Other Versions

Five Years Later: Batch SW6

\"Dream
Dream Girl (Batch SW6)

The devastation of the Magic Wars caused original Legion continuity to jump ahead five years in what is now known as the Five Year Gap. Afterward, a duplicate teenage Legion team mysteriously appeared, known as \"Batch SW6\" because they were believed to be Dominator-created clones of the original team. They were later revealed to be time-paradox duplicates of the original Legion, rather than clones. They operated separately from the original Legion and formed their own team, the Legionnaires, and starred in their own series with that title. All of the Legionnaires except for Cosmic Boy, Saturn Girl, Live Wire and Invisible Kid seemed to think that Dream Girl was part of the team the entire time...but she wasn't and her existence, which remained stable until she joined with her adult counterpart and disappeared at the end of the universe, was a blip in time caused by Zero Hour.

Superboy's Legion

\"Dream
Dream Girl (Superboy's Legion)

Dream Girl appeared as a member of the Legion in Superboy's Legion, an Elseworlds story. She closely resembled the original character in the classic silver one-piece costume, though she wore her hair in a distinctly 1970's \"Farrah Flip\" hairstyle.

Other Media

Television

\"Dream
Dream Girl (Superman: The Animated Series)

Superman: The Animated Series

The first animated version of Dream Girl appeared in the episode New Kids in Town, though it was only a non-speaking cameo role. In this episode she wore a costume very similar to her original bathing-suit costume from comic book continuity.

Legion of Super-Heroes Animated Series

\"Dream
Dream Girl (Legion of Super-Heroes Animated Series)

Ten years later, Dream Girl was a major character in the second season of the Legion of Super-Heroes animated series, in the episode In Your Dreams. She was voiced by actress Tara Platt. She had the trademark star-shaped birthmark on her cheek and wore a costume similar to her classic silver one-piece from comic book continuity. For the first time, she wore her long-time Legion symbol (a \"thought balloon\" logo) on the chest of her costume.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114753/","id":114753,"name":"The Menace of Dream Girl!","issue_number":"317"},"gender":2,"id":1254,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182612-dream%20girl.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182612-dream%20girl.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182612-dream%20girl.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182612-dream%20girl.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182612-dream%20girl.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182612-dream%20girl.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182612-dream%20girl.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182612-dream%20girl.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182612-dream%20girl.jpg","image_tags":"All Images"},"name":"Dream Girl","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Nura Nal","site_detail_url":"https://comicvine.gamespot.com/dream-girl/4005-1254/"},{"aliases":"Querl Dox\nBrainiac 5.1\nBrainy\nBrainiac \nB-5\nBrainy-Boy\nDox\nDr. Dox\n","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1255/","birth":null,"count_of_issue_appearances":1068,"date_added":"2008-06-06 11:27:37","date_last_updated":"2020-11-19 15:25:09","deck":"Brainiac 5 is a long-standing member of the Legion of Super-Heroes with a 12th level intelligence and force-field belt. He is an expert on the science of time-travel (and many other things).","description":"

Current Events

Brainiac 5 is presently starring in the ongoing Legion of Superheroes series since the rebooted DC universe in the new 52. The Legion is presently fighting a Daxamite and a group of Controllers on the planet of Panoptes.

Origin

\"Original
Original Brainiac 5

In the 30th Century, Querl Dox was born on Colu, a direct descendant of the original Brainiac and Vril Dox II. After centuries of disuse, the title \"Brainiac\" was taken by Querl's father, and eventually was given to Querl at the age of twelve. He was the fifth to ever hold the title. Making many breakthroughs in the science of time travel during university as a young boy thanks to his mentor Circadia Senius, Querl was invited to join the Time Institute in Metropolis on Earth. He became close friends with fellow time genius, Rond Vidar. He invented the Time Bubble, which became the primary mode of time travel for the Legion of Super-Heroes. While using a Time Viewer to see the dawn of time, the Green Lantern Corps attacked him, but he was saved by the newly formed Legion of Super-Heroes. Impressed by the team, and using his code-name of Brainiac 5, he tried out and joined the Legion alongside Supergirl. He went on to collaborate with the first Invisible Kid, Lyle Norg, to invent the Legion Flight Rings.

Creation

Brainiac 5 was created by Jerry Siegel and Jim Mooney.

Character Evolution

Original Continuity: New Earth

\"Brainiac
Brainiac 5 (New Earth)

Brainiac 5 is usually portrayed as being anti-social, cold towards others, aloof and self-involved. The reasoning for this is his heightened intelligence which always surpasses those around him, making it difficult for him to relate communication his point to others. Through sensible, appropriate dialogue, Brainiac 5 found he had to \"dumb down\" his conversations so his peers could understand his ramblings. Still Brainiac 5 has shown a dedicated valor to his friends and the Legion, he has enjoyed being the resident brainchild on the team. Brainiac 5's career has had its ups and downs. He invented the robot, Computo, which rebelled and caused trouble for the Legion, including cause the death of one of Triplicate Girl's bodies.

Legion 5 Years Later

Brainiac 5 was recruited by Reep Daggle when he restarted the Legion. Brainiac 5 ran the medical lab for this Legion and helped the members with problems which happened to them. He helped Timber Wolf regain part human form. He also help Celestic to understand her power.

Reboot: Earth-247

\"Brainiac
Brainiac 5 / 5.1 (Earth-247)

The Querl Dox of Earth-247 was awarded the title of Brainiac. Before Querl, his mother, a famous scientist for Colu, held the title. She abandoned Querl on his day of birth and he inherited her research. He was speaking by the time he was an infant and functionally working as a scientist by a toddler. Querl's research conflicted with Colu's and he was sent to do research for R.J. Brande. Querl destroyed several of Brande's labs, and when Brande could no longer afford to keep him on staff, Brande sent him to work at the Time Institute on Talus. While there, he met Rond Vidar. Querl received a draft notice from Colu to join the Legion of Super-Heroes. He was so wrapped up in his work, that he ignored it. Once he was noticed as missing, he was brought into the Legion.

Joining the Legion as Brainiac 5, he was instrumental in many cases. He saved the Earth from the White Triangle, healed Triad, cured Andromeda's lead poisoning, and created the anti-gravity metal that was used in the Legion Flight Rings. He developed a crush on Andromeda, but after she was seemingly killed, he threw himself into his work. He made some new discoveries, and used them to travel back in time to save the hero, Valor. He was arrested by the United Planets, however, because time travel was illegal. He was pardoned when R.J. Brande became President and legalized time travel. Brainy and a group of Legionnaires were exiled to the 20th Century by the Emerald Eye. With his technological sources limited, the Legionnaires were trapped for several months.

Threeboot: Earth-Prime

\"Brainiac
Brainiac 5 (Earth-Prime)

On Earth-Prime, Brainiac 5 is an influential figure with leadership designs that include usurping leadership of the United Planets. Early on Brainiac 5 comes into conflict with Legion leader Cosmic Boy about the way he has been leading the team. Brainiac 5 is visited by Lemnos and is the only Legionnaire to later recall his face. Brainiac 5 broadcasts a conversation between Cosmic Boy and Sun Boy, causing a fight between the Legionnaires on his side and Cosmic Boy's supporters. Cosmic Boy is called back to his home planet and Brainiac 5 assumes leadership of the Legion. They reconciled later and moved forward as allies. Dream Girl was killed during a Terra Firma attack and Brainiac 5 recovered her body and became obsessed with finding a way to resurrect her. He captured Lemnos to try and revive her, but the experiment destroyed her physical body. It did however leave her consciousness alive in Brainiac 5's dreams.

Later, Brainy's intellect turned the tide in the battle with the Dominators. Brainy constructed a \"bomb\" , which was really a Phantom Zone projector, which Mon-el flew into the core of the Dominion Homeworld. He also created an anti-lead serum for Mon-El. Brainiac 5 invented a Chronexus that could view the past, and even open temporary time travel portals. With the help of Evolvo Lad, he used the Chronexus to send Supergirl back to the 21st Century. After Cosmic Boy's disappearance, he manipulated events that resulted in the arrest of Mekt Ranzz, boosting Timber Wolf's powers, and the recruitment of possible Legionnaire E.R.G. 1. Still, his ultimate goal was to bring Dream Girl back to life. Brainiac 5 spent more and more time sleeping to be with her. After a time, he proposed in the dream realm. After inventing a machine that could upload the Legionnaires' minds into an information-based reality and being forced to recreate their bodies, he created a body for Dream Girl as well, downloading her consciousness from his mind into the new body. He then invited the Legion to attend their wedding.

Retroboot: New Earth

\"Brainiac
Brainiac 5 (New Earth)

The event known as Infinite Crisis brought together the Legions of all three continuities. Afterward, the current Legion of Super-Heroes has returned to being a close approximation of the original Pre-Crisis team prior to the Five Year Later. Due to the removal of the original Supergirl and the retcon addition of the latest Kara Zor-El, Brainiac 5's past was changed. He joined the Legion as before, but without Supergirl accompanying him. Brainiac 5 would later meet the current Kara Zor-El when she was stranded weeks later in the future. He was against the idea of letting her stay. She spent an extended period of time with the team, most notably when Satan Girl attacked Earth. The two teamed up to defeat her, sparking a young romance, before Kara returned home. During this period, Brainiac 5 intentionally rigged the founding Legionnaires' time bubble to visit Superboy rather than Superman. This resulted in Superboy's historic joining of the Legion of Super-Heroes.

Rejoining the Legion after the Magic Wars, Brainy used his knowledge to help protect the galaxy once more by organizing several secret missions among the Legionnaires to help protect time. He sent a team back to the 21st Century with lightning rods to retrieve the essence of Bart Allen after his death as a secret weapon for the future. He also had arranged for Starman, Thom Kallor, to place Superboy's (Kon-El) body in the Kryptonian chrysalis in the 21st Century to be resurrected in the 31st.

Later, Earth Man caused a wave of xenophobia to spread on Earth. Brainy sent a Time Bubble to retrieve Superman for assistance. Deported due to his heritage, Brainy took over leadership of Colu to deter the United Planets from going to war with Earth. Superman finally arrived in the 31st Century months later, and helped defeat Earth Man's Justice League. When Superboy-Prime and the Legion of Super-Villains went on a rampage, Brainiac Five was used his previous contingencies of Superboy and Kid Flash to help turn the tide. He also recruited the Legion of Earth-247 and Earth-Prime to help. The Legionnaires eventually defeated the villains, though Earth-Man was forced by the government to join the Legion. Brainy made a special flight ring to keep Earth-Man under control but eventually awarded him a standard one. Presently, Brainiac 5 is investigating the mysterious Harmonia Li, a self proclaimed student of time travel and immortal.

Major Story Arcs

Original Continuity: New Earth

A insane Brainiac 5

The computer tyrants of Colu, in the humanoid form known as Pulsar Stargrave, claimed to be his real father, and caused Brainy to go mad for a time. Stargrave used Brainy to frame Ultra Boy for the murder of An Ryd, but this was cleared up when Chameleon Boy discovered that Stargrave was the true culprit. Still mad, Brainiac 5 accidentally created the vastly powerful Infinite Man. Then he used the Miracle Machine to create the unstoppable Omega, which destroyed Legion Headquarters.

Matter-Eater Lad saved the day, but it drove him crazy as well. Both Legionnaires were admitted into psychiatric care. Brainiac 5 was temporarily released to help the Legion of Substitute Heroes defeat the League of Super-Assassins. With the aid of Saturn Girl, she was able to purge Brainy's mind of the madness. He later went on to cure Matter-Eater Lad, as well as Danielle Foccart, the sister of the second Invisible Kid. After many years of Legion service, Brainy was forced to resign due to insubordination for his conspiracy within the Legion to kill the Time Trapper.

Five years later

\"Brainiac
Brainiac 5 (Five Years Later)

After the Magic Wars, Brainiac 5 was still a top scientist assisting the United Planets. When Glorith defeated the Time Trapper and took his place in history, one of the biggest side-effects was that Supergirl was erased from the Legion's history and replaced with Laurel Gand. Laurel stayed on with the Legion continuously, unlike Supergirl, and she and Brainy enjoyed a lengthy and healthy romance when they were young. However, he began to neglect her because he could not justify ignoring his responsibilities for romantic pursuits. In this new history, after the conspiracy to defeat Glorith and his subsequent expulsion from the Legion, he left Earth for Colu without consulting Laurel and their relationship ended.

Zero Hour

Brainiac 5 traveled to Winath to help try to find a cure for the Validus plague. He then rejoined the Legion when they reformed after facing Roxxas the Butcher. Although both he and Laurel had rejoined, he felt uncomfortable around her, because she had found love with Brainy's best friend, Rond Vidar. An incident with Glorith left Brainiac 5's body aged, causing him to have to wear a special suit to allow mobility. He later went into hiding with the team when they were framed for aiding the Khunds. Brainiac 5 was wiped out of existence by the time fluctuations of Zero Hour, along with an SW6 'time clone' who had surfaced months prior among the Legionnaires.

Reboot: Earth-247

Brainiac 5 becomes Brainiac 5.1

After returning to the 30th Century, Brainy and others helped Andromeda investigate an anomaly in space. Once out of the anomaly, Brainy found himself changed. His personality was more friendly and there were grafts on his face that controlled his force field. Gates jokingly renamed him Brainiac 5.1, a name that stuck for a short time. After an attack on Earth by the Blight, Brainy was one of ten Legionnaires who were lost in a rift in space. After a year in the \"Second Galaxy\", Brainy was able to use Shikari's pathfinding abilities to lead them home. Once home, they were soon threatened by Robotica, a collective of artificial intelligence. Brainiac 5 learned that this collective was engineered by Computo, whom he had created while in the 20th century. Computo had survived through the ages and considered itself to be Brainy's progeny. Later, Brainiac 5 and the other Legionnaires barely survived the destruction of Earth-247 during the Infinite Crisis. They were brought to New Earth by that Earth's Brainiac 5. After the Legions of Three Worlds defeated Superboy-Prime and the Legion of Super-Villains, Brainy and the other Legionnaires from Earth-247 chose to explore the multiverse as the \"New Wanderers\".

Powers and Abilities

Intellect

\"12th
12th Level Intelligence

While the population of 20th century Earth has a 6th level intelligence, and average Coluans have a 10th level intelligence, Brainiac 5 has a 12th level intelligence. Hence, Brainiac 5 is known as the smartest person in the universe.

He is able to create very advanced technology such as time machines (such as the Time Cube, Time Spheres and Chronexus), Flight Rings, artificial intelligences, and Force Shields. Brainy is also knowledgeable with medical technology as well, having invented the anti-lead serum for Mon-El and curing Matter-Eater Lad of his madness. Each level of intelligence represents a separate thought track, allowing him to think about or solve twelve equations simultaneously. His brain processes formulas at the speed of a computer.

While physical combat is not something he excels at, he has been known to use his body physics in combat to defend himself or incapacitate opponents. His advanced intellect presents a challenge when people try to affect him with mental abilities - he just thinks faster than they do. He has been known to learn new languages in just hours of listening to conversation.While it is not often illustrated, he excels at using technology in all forms (he is one of the Legion's best pilots), or finding weak spots in other people technology. With his powerful mind he can regulate his body's automatic nervous features with ease.

Equipment

Brainiac 5 has several other equipment items at his disposal. Brainiac's personal force field belt is nearly impenetrable when it is active. One version of his force field belt is used by Booster Gold. In some iterations, like the Brainiac 5 of Earth-247, this force field is actually internalized. As a Legionnaire, he is equipped with a Legion flight ring which allows him to fly. It can also be used as a long-range communication and tracking device.

As a member of the Legion of Super-Heroes, Brainiac 5 possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring. In the postboot reality, he had a utility belt which provided rations, a transuit, and telepathic ear plugs.

Other Versions

Five Years Later / Batch SW6

\"Brainiac
Brainiac 5 (Batch SW6)

During the Dominators' subjugation of Earth, the members of their highly classified \"Batch SW6\" escaped captivity. Originally, Batch SW6 appeared to be a group of teenage Legionnaire clones, created from samples apparently taken just prior to Ferro Lad 's death at the hands of the Sun-Eater. Later, they were revealed to be time-paradox duplicates, every bit as legitimate as their older counterparts. After Earth was destroyed in a disaster reminiscent of the destruction of Krypton over a millennium earlier, a few dozen surviving cities and their inhabitants reconstituted their world as New Earth. The SW6 Legionnaires including their version of Brainiac 5 remained on New Earth.

Other Media

Television

Superman: The Animated Series

Brainiac 5 is one of many Legionnaires depicted in the 30th century during the 90s Superman cartoon episode \"New Kids in Town.\" His features and coloring have been altered to more closely resemble the animated counterpart of Brainiac.

Justice League Unlimited

\"Brainiac
Brainiac 5 (JLU)

The previous Brainiac 5 returned later in JLU in the episode \"Far From Home.\" Brainy, alongside Bouncing Boy, were the only Legionnaires left to defeat the Fatal Five. Knowing they were outnumbered, Brainy recruited three heroes from the past who history showed as having an undocumented adventure in the future. Among their number was Supergirl, who Brainy quickly found himself physically attracted to. They bonded over technology, something Kara had missed on the backwards Earth of her time. Brainy and Kara were instrumental in defeating the Fatal Five and saving the day. Later, when the heroes of the past prepared to return home, Supergirl decided to stay with Brainiac 5 in the 30th century. He was voiced by Matt Czurchy.

Superman & the Legion of Super-Heroes

\"Brainiac
Brainiac 5 (S&LSH)

Brainiac 5 was a main character in both seasons of the Legion's own cartoon. This version and all of Colu were depicted as robotic lifeforms who could transform themselves into an armored state and create techno-organic energy weapons. This abilities replaced Brainy's force field belt in this universe. This Brainiac 5 was one of the Legionnaires to travel to the past to recruit a young Superman, the start of Brainy's lengthy admiration of the Boy of Steel. He was instrumental in the first season in defeating several threats and especially coordinating the Legion's efforts on missions.

During the second season two years in the future, Brainiac 5 has upgraded his look and travels to the 41st century to help save history. He brings Superman back onto the team and ultimately reveals to Kal-el his connection to the villainous Brainiac, causing a rift between the two friends. Determined to not become like his ancestor, Brainy accessed a part of his programming that was from the original Brainiac in order to increase his own knowledge. This backfired as it allowed Brainiac to slowly corrupt Brainiac 5, ultimately turning him into his host for his return. The entire Legion assembled and it was Superman who helped free Brainiac 5 from his ancestor's control. The resulting purge of Brainiac's programming converted Brainiac 5 into a human being for the first time. Ashamed of his actions and wishing to learn about his new found humanity, Brainy left the Legion in the serie's finale.

Smallville

In the episode entitled \"Legion,\" the Legion founders travel to the past to defeat Brainiac. Once they have collected Brainiac's mind and plan to return to the future, Saturn Girl remarked that she hoped \"Brainiac 5\" would be better behaved. It is implied that Brainy would now be a robotic or artificial construct with the original Brainiac's schematic.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114604/","id":114604,"name":"The War Between Supergirl and The Supermen Emergency Squad! / Supergirl's Three Super Girl-Friends!","issue_number":"276"},"gender":1,"id":1255,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68065/7675236-b511.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68065/7675236-b511.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68065/7675236-b511.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68065/7675236-b511.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68065/7675236-b511.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68065/7675236-b511.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68065/7675236-b511.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68065/7675236-b511.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68065/7675236-b511.jpg","image_tags":"All Images"},"name":"Brainiac 5","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Querl Dox","site_detail_url":"https://comicvine.gamespot.com/brainiac-5/4005-1255/"},{"aliases":"Lyle Norg\nBrainiac 6","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1256/","birth":null,"count_of_issue_appearances":409,"date_added":"2008-06-06 11:27:34","date_last_updated":"2020-02-12 18:19:27","deck":"He is a member of the Legion of Super-Heroes, a super group based in the 30th and 31st centuries of the DC Universe. He's a genius in biochemistry and designed a serum to give him the ability to turn invisible.","description":"

This page is for the original Invisible Kid, Lyle Norg.

For the current Invisible Kid, see: Jacques Foccart

Origin

\"Lyle
Lyle Norg

Lyle Norg was a a genius and prodigy in biochemistry. He created a serum that allowed him to turn invisible, and earned a place in the Legion of Super-Heroes as one of its earliest members shortly after Colossal Boy and Chameleon Boy. A dedicated member, Lyle often engaged in regular exercise and combat training to make his contributions to the Legion greater. Though he often served covertly in the background, Lyle's peers recognized his accomplishments and he was eventually elected the Legion's fourth leader in the team's fifth term.

Creation

Lyle Norg was created by Jerry Siegel and Jim Mooney. Lyle was the first election where the readers were able to vote for Legion leader and Lyle's success is largely attributed to the readership wanting to see him get more to do. Earth-247 Lyle was later revealed as gay, though this was only hinted at during his publication.

Character Evolution

Original Continuity: New Earth

\"Invisible
Invisible Kid (Pre-Crisis)

Lyle was instrumental in helping the Legion win back Earth from its possession by Universo. Following his stint as leader, Lyle began to aid Legion cadet Chemical King in the use of his powers and the two became fast friends. After several years of service, Lyle began to be haunted by a ephemeral girl named Myla. Despite her intangibility, the two got along well and Lyle became romantically interested in her.

Reboot: Earth-247

\"Invisible
Invisible Kid (Earth-247)

The rebooted Lyle Norg was born on Earth-247 to scientist parents who often spent long periods of time away from home. As a result, young Lyle was predominantly raised by the Foccart family. A child prodigy, Lyle became interested in chemistry at an early age thanks to the Foccarts. Initially, he only created and patented things like new flavors of ice cream, but soon became more complex with his creations. His greatest invention was a serum that bent light around his body and clothing, rendering him invisible at will. EarthGov became interested in Lyle's discovery and enlisted him to do some investigative work for them. He was joined by the powerless Jacques Foccart, whom Lyle considered a brother, and the young woman who would one day become the villainous Charma. Lyle's knowledge of the Durlan language and close friendship with Chameleon suggests that he spent time on Durla during these days. On his last mission, Lyle was tricked into stealing his own formula. Jacques consumed it, but unlike Lyle he appeared to simply fade from existence. Disgusted, Lyle quit EarthGov and was instead drafted by Earth into the Legion of Super-Heroes.

Threeboot: Earth-Prime

\"Invisible
Invisible Kid (Earth-Prime)

Lyle was a child prodigy in this reality who was asked by his father and the government to create an invisibility serum. Upon learning that his father had planned to give it away for military use, Lyle decided to inject himself with the only sample so that it could never fall upon abusive hands. He lied about injecting himself, claiming instead the serum never worked. Lyle then contacted his colleague, Brainiac 5 of the Legion of Super-Heroes, for help in escaping from his parents who had registered him on public service. Lyle and Brainy had previously collaborated on the Legion flight rings. Brainy sponsored Lyle for Legion membership and he was accepted as Invisible Kid. At odds with his parents for running away, especially his military father, Lyle would later reconcile with the Norgs.

Retroboot: New Earth

\"Invisible
Invisible Kid (New Earth)

The events of Infinite Crisis brought together the Legions of all three continuities. Afterward, the current Legion of Super-Heroes returned to being a close approximation of the original Pre-Crisis team, once again set on New Earth. Thus, Lyle Norg was deceased again. A statue continued to stand in his honor in the Legion's memorial room. Invisible Kid II, also back in continuity, served still on the Legion in Lyle's honor.

Major Story Arcs

Original Continuity: New Earth

The Death of Lyle Norg

\"The
The death of Invisible Kid

When the villain Validus attacked Legion Headquarters to steal a device, Lyle was on invisible guard. He destroyed the device to prevent it from falling into enemy hands, but in the process was caught and crushed by Validus, killing Lyle. Myla then appeared to the Legion, revealing herself a ghost and promising to take care of Lyle in the afterlife. He was mourned by the Legion, especially Chemical King and Brainiac 5. Following Lyle's death, his serum was protected by Brainy and was later used in a time of crisis to give powers to Jacques Foccart, who would go on to become Lyle's successor as Invisible Kid.

Reboot: Earth-247

Legion Espionage Squad

\"Charma
Charma and his brother Jacques

Lyle was a stalwart member of the team and founder of the Legion Espionage Squad to do undercover work. He was instrumental in helping Cosmic Boy reveal that President Jeanne Chu was the mastermind behind the Braal-Titan War and helped Chameleon adapt to life on Earth. He even aided Cham in giving secret admirer gifts to Spark, who mistook them as being from Invisible Kid. When half the Legion was trapped in the 20th century, Lyle remained in the 30th and was elected leader by the membership. Though he didn't want the job, Lyle proved adept at handling it. Months later, when the Legion was reunited, Lyle stepped down from leadership for private reasons and gave the job to Saturn Girl. Lyle was later captured by his old teammate Charma, seeking revenge on him. Lyle was freed by an unknown force, which he suspected may have been his lost \"brother,\" Jacques.

The Blight

\"The
The Blight

When the Blight invaded Earth, Lyle was deemed a threat and had a choke-weed used on him that took him underground and used him as a living battery. He would have died if not for the Legion's timely defeat of the Blight. The team was later disbanded and Lyle began covertly working with R.J. Brande to assemble Legion World. Lyle helped found the reformed team and served with them until they were lost in the timestream and Earth-247 was destroyed. He and his teammates are now part of the new Wanderers of the multiverse.

Threeboot: Earth-Prime

Leader of The Legion Espionage Squad

\"Giselle
Giselle (Gazaelle)

Lyle and the Legion helped the Wanderers fight the Dominators when the aliens invaded Earth. During the battle, Lyle's flight ring blew up, and he lost his arm. He received an arm graft for a short period of time before a proper arm could be regrown for him. He developed feelings for time-lost member Supergirl, who didn't reciprocate and ultimately left the team. On a mission to Triton, Lyle developed feelings for a local girl named Giselle who had been ridiculed by her people, but was afraid to show himself to her. To investigate matters that didn't fall under the Legion's proper jurisdiction, Lyle formed the top-secret Legion Espionage Squad and served as its leader. Eventually, Giselle joined the Legion as Gazelle. Lyle, still hiding from his crush, used virtual reality to make himself appear older and buffer than he truly was. Gazelle was fond of this form, but when Lyle's ruse was uncovered she didn't seem to mind the real Lyle either.

Powers and Abilities

Invisibility

Invisible Kid developed and consumed a serum that allowed him to turn any or all parts of his body invisible at will. In the post-boot reality, he could make others invisible though it took extreme concentration.

Equipment

\"Legion
Legion Flight Ring

As a member of the Legion of Super-Heroes, Invisible Kid possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

Five Years Later: Batch SW6

\"Invisible
Invisible Kid (Batch SW6)

At least a decade later, following the Five Year Later of the Magic Wars. The Dominators located time-displaced copies of the Legion of Super-Heroes from their younger days, including Invisible Kid. They were dubbed Batch SW6. The team in fact only had memories up until Invisible Kid's time as leader, so the young Lyle became the defacto leader again and aided them in their survival on a dystopian Earth. These young Legionnaires eventually met up with their adult counterparts and Lyle was surprised to learn that he had died. He later met his parents, 17 years older than he remembered and who were ecstatic to see their son alive again. These young heroes went on to become the Legionnaires of New Earth, where Lyle protested another stint as leader and helped nominate Cosmic Boy. Lyle served as a Legionnaire until Zero Hour, where he and several other scientists discovered that the timestream was collapsing on their reality. Lyle was one of many causalities before this continuity was wiped from existence, having faded away in-between issues.

Other Media

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114602/","id":114602,"name":"Hercules in the 20th Century!","issue_number":"267"},"gender":1,"id":1256,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5298427-image.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5298427-image.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5298427-image.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5298427-image.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5298427-image.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5298427-image.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5298427-image.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5298427-image.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5298427-image.png","image_tags":"All Images"},"name":"Invisible Kid","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Lyle Norg","site_detail_url":"https://comicvine.gamespot.com/invisible-kid/4005-1256/"},{"aliases":"Tinya Wazzo\nTinya Wazzo-Nah\nPhantom Woman\nPhase\nApparition","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1257/","birth":null,"count_of_issue_appearances":717,"date_added":"2008-06-06 11:27:38","date_last_updated":"2020-10-09 07:42:05","deck":"Tinya Wazzo is a native of the extra-dimensional planet Bgztl, giving her the power to phase through solid objects. She is the only member of her race with the ability to pass through the Phantom Zone and onto Earth. She is a long-time member of the Legion of Super-Heroes under the code name Phantom Girl.","description":"

Origin

\"Original
Original Phantom Girl

Tinya Wazzo was born in the 30th century on the extra-dimensional world of Bgztl. While its people are able to pass through walls and other solid objects at will, she was the only member of her race with the ability to pass fully through the Phantom Zone and onto Earth, which shared dimensional space with Bgztl. After the death of her father and disagreements with her mother, Tinya was looking for an escape and found it on a newscast of the newly formed Legion of Super-Heroes. Tinya left her mother Winema and brother Gyma behind and smuggled herself onto Earth with all of her savings. After doing so, Tinya impressed the Legion by showing them how easily their defenses could be breached by a phantom and imploring them to induct her. She was promptly made a member and given the codename Phantom Girl.

Creation

Phantom Girl was created in 1961 by writer Jerry Siegel (the co-creator of Superman) and artist Jim Mooney. She was the second character to be recruited by the Legion of Super-Heroes following its three founding members, making her the third female member of the Legion and its fifth member overall.

Character Evolution

Original Continuity: New Earth

\"Phantom
Phantom Girl: Classic 70's costume

Tinya was sworn in alongside Luornu Durgo (Triplicate Girl) and the two became friends as well as the Legion's first recruits following the three founding members. As a Legionnaire, Tinya's unique phasing abilities made her a crucial contact between Earth and the Phantom Zone. Tinya and Jo Nah (Ultra Boy) became one of the earliest Legion couples. Tinya was so taken with Jo that she was willing to aid him even when it was thought he had betrayed the Legion. The two have since formed of the Legion's most enduring couples. Phantom Girl became a founding member of the Legion Espionage Squad and became best friends with Tasmia Mallor (Shadow Lass), and Tinya and Jo would often double-date with Tasmia and her boyfriend Mon-el. After an incident when Ultra Boy was thought dead, Tinya mourned greatly. She was later ecstatic to discover he was alive but had simply had amnesia. Tinya eventually became the most senior Legionnaire, and has served in the Legion without any absences longer than anyone else in history. As a founder of the Legion Espionage Squad, Tinya displayed remarkable leadership qualities. Despite this, she remained the longest-serving Legionnaire never to be elected as Legion leader (until very recently).

Phantom Girl's original costume consisted of white tights and a cape, with a stylized black 'P' on her chest. Like many Legionnaires she underwent a sexy makeover in the 1970's, losing the cape and wearing a white jumpsuit with wide sleeves, bell-bottom pants, bare shoulders, and revealing rectangular openings down the front of her chest. This \"portholes & bell-bottoms\" costume became her signature look, and is the basis for her current costume.

Reboot: Earth-247

\"Apparition:
Apparition: Earth-247

After the event called Zero Hour, Legion history was completely rebooted, with this reality later designated as Earth-247. Tinya was again one of the earliest Legion recruits, though in this continuity she took the code name Apparition rather than Phantom Girl. Bgztl was now an actual planet in the United Planets, rather than a dimensional neighbor, and Tinya's mother, Winema, served as Bgztl's ambassador. Tinya lived with her mother on Earth with no family, having been born to her mother and a drifter. Tinya and Winema were both unaware her father was a Carggite and that Tinya was as well. When she was born and Winema was asleep, he stole two of the three Tinya bodies and sold them off to the Luck Lords. Ignorant of this, Tinya was raised with all the spoils of Winema's career. Apparition joined the Legion after she helped foil an assassination plot at a UP conference, the first recruit alongside Triad. While a Legionnaire, she often argued with her mother. This was especially so when Tinya started to fall in love with the unbecoming Ultra Boy of the Workforce. The two dated in secret and professed their love to each other just as a Daxamite terrorist fried them with heat vision, killing Tinya. She was buried on Earth and mourned by the Legion, Ultra Boy, and her mother.

Apparition wore a costume similar to Phantom Girl's original outfit, but with a thick black stripe down the middle rather than a 'P' on her chest. This costume, as well as the Apparition code name, was derived from the \"Batch SW6\" duplicate of Tinya (see Alternate Versions below), who appeared towards the end of original continuity.

Threeboot: Earth Prime

\"Phantom
Phantom Girl: Earth-Prime

Legion history was rebooted yet again, in a continuity that became known as the \"Threeboot.\" This reality was later designated as Earth-Prime. Tinya Wazzo again went by the Phantom Girl codename and was a member of the Legion. She was a fan of old Earth comic books and had the biggest collection among the heroes. Bgtzl was now a world that was slightly out of phase with Earth and her phasing ability was actually her transporting herself between the planets. She was able to pass back and forth these worlds at will and could often be seen in both, regardless of what she might be doing in one. This led to strange situations and misunderstandings with her teammates. A friend and teammate, Karate Kid, had shown interest in Tinya. But when he finally got the courage to profess his feelings to Phantom Girl, he discovered that she was already in a relationship with a boy from her own dimension who was ironically breaking up with Tinya at the time. Phantom Girl became a member of the Legion's Espionage Squad and assisted covertly on many stealth missions, and was also instrumental in entering the Phantom Zone to help rescue Mon-El. Phantom Girl and Ultra Boy never became an item in this continuity.

The Earth-Prime Phantom Girl had a darker skin tone than her predecessors and brown eyes instead of the usual blue, giving her a more exotic look. She wore a sexy white costume with revealing oval-shaped openings on her arms, thighs, and midriff, and one large oval opening on her chest (reminiscent of Power Girl's famous cleavage window).

Retroboot: New Earth

\"Current
Current Phantom Girl (New Earth)

The events of Infinite Crisis brought together the Legions of all three continuities. Afterward, the current Legion of Super-Heroes returned to being a close approximation of the original Pre-Crisis team, once again set on New Earth. Phantom Girl's history was now unaltered from before the Five Years Later. Phantom Girl remains the longest consecutively-serving Legionnaire and is still in a close relationship with Ultra Boy. At long last, Phantom Girl was finally elected by readers to serve as leader of the Legion.

Phantom Girl's current costume is a reworked version of her classic \"portholes & bell-bottoms\" costume from the 70's, though it is now sleeveless and more form-fitting.

Major Story Arcs

Original Continuity: New Earth

Five Years Later

Following the cataclysmic events of the Magic Wars, Legion continuity jumped ahead five years in what is known as the \"Five Year Gap.\" Ultra Boy finally proposed to Tinya, after which she boarded a shuttle to Bgztl to shop for a wedding dress. But a mechanical error tragically caused the ship to explode, apparently killing Phantom Girl.

Her death would leave Ultra Boy in mourning for years. She was once thought to have survived the explosion by being hurled backwards in time (see Alternate Versions below), though this turned out to be a duplicate of Tinya rather than Tinya herself. When original Legion continuity was eventually wiped out by Zero Hour, the Time Trapper fetched Tinya from the moment just before her death to say one last good-bye to Ultra Boy before the timeline collapsed.

Reboot: Earth-247

Return as a Ghost

\"Tinya
Tinya returns as a ghost (Earth-247)

Though Tinya's physical body had been killed by the Daxamite assassin, her spirit ultimately survived, with her energies tethered to Ultra Boy. Only Jo and her mother could initially see her, but soon Saturn Girl detected her and clued the rest of the Legionnaires in telepathically. While stranded in the 20th century, an encounter with Deadman and a mystic entity made Apparition's spirit visible to all onlookers. Shortly thereafter, Tinya and Jo were secretly married. While in the past, Apparition encountered the heroine Phase. The pair were absorbed into their touchstones when they came near each other and learned Phase was actually one of Tinya's missing bodies, having been lost in time after being sold into slavery. Pulling together to save Ultra Boy, the girls merged for the first time and Apparition was restored to a physical form. Apparition then returned with the Legion to the 30th century and reunited with her mother.

Pregnancy

Tinya was on a mission in deep space when the Blight attacked, crippling space travel and forcing Tinya to spend a month in a shuttle just to return to Earth. There, she found Ultra Boy had been blighted and aided the Legion in freeing Earth. Subsequently, Ultra Boy and several other Legionnaires were lost in a spatial rift and presumed dead. The Legion disbanded and Apparition, discovering she was pregnant after Jo had \"died,\" fled to his homeworld of Rimbor to start a new life. Her Bgztlian pregnancy lasted a year, where she came under the protection of Timber Wolf and his Wolf Pack gang.

She had a healthy phase birth on the day the lost Legionnaires were revealed to be alive. Apparition resolved to rejoin the Legion with her newborn son, Cub, and Timber Wolf accompanied her to protect her. She learned that Ultra Boy had an affair with Saturn Girl during their year of being lost in space, but ultimately forgave him. The pair dealt with their son's rapid aging until Earth-247 was destroyed, leaving Apparition and her Legion the sole survivors as they were lost in the timestream. Tinya was equipped with a utility belt with rations and a transuit that allowed her to breathe in space.

The Missing Body

\"Phase
Phase and Apparition reunited (Earth-247)

Late in Earth-247 continuity, it was revealed that Tinya's father was actually a Carggite (teammate Triplicate Girl's race), with the ability to split into three separate bodies, and Tinya had inherited this ability at birth. However, her father was also an chronic gambler who owed a fortune in gambling debts, so when Tinya was just a baby, he made a deal with the mysterious Luck Lords to sell off two of her bodies in order to pay off his debts. Her mother Winema never knew that Tinya's father was a Carggite and never knew about Tinya's other two bodies. One of Tinya's bodies was sold into slavery and her fate remained unknown. The other missing body later turned up in the 20th century in the form of Tinya's \"cousin,\" Enya Wazzo aka Phase (see Alternate Versions, below). Tinya traveled back in time to be reunited with Enya and upon meeting, they merged back into a single body and returned to the 30th century.

Threeboot: Earth Prime

Projectra's Betrayal

\"Attacked
Attacked by Projectra (Earth-Prime)

Phantom Girl developed a close bond with fellow Legionnaire Princess Projectra, who in Threeboot continuity was a selfish and troubled aristocrat. Tinya helped Projectra cope with the recent death of her parents by reading her ancient comic books from the 20th century, and politely tolerated Projectra's bratty and abusive behavior towards her. Tinya's closeness to Projectra enabled her to learn that Projectra secretly blamed the Legion for her parents' death and the loss of her family fortune. Upon further investigation, Tinya discovered that Projectra was plotting to destroy the Legion in revenge. But before Tinya could alert the Legion, Projectra found her out and savagely attacked her. Tinya initially defended herself by entering her phased state, but Projectra used her powers of illusion to trick Tinya into becoming tangible again and then beat Tinya nearly to death.

Her comatose, disfigured body was discovered just in time by Timber Wolf, who activated Tinya's alarm beacon. Tinya was brought to the Legion infirmary, where she began to recover, but Projectra then used her powers to alter Tinya's memories before she could tell the Legion what had happened. This plotline was left unresolved when Threeboot continuity was ended by Infinite Crisis.

Personal Information

  • Civilian Name: Tinya Wazzo
  • Occupation: Legionnaire
  • Base: Legion World, U.P. Space
  • Height: 5ft 6in
  • Weight: 131 lbs
  • Eyes: Blue
  • Hair: Black

Powers and Abilities

Intangibility

Phantom Girl has the ability to turn intangible by shifting her existence partially or fully into the extra-dimensional space known as the Phantom Zone. When fully phasing out of reality, Tinya is able to enter the Phantom Zone of her own accord. She has also shown the ability to draw people into the Phantom Zone with her. Tinya is the only member of her race known to be able to phase herself completely through the Phantom Zone and onto Earth, which shares extra-dimensional space with her home planet of Bgztl.

While phased, Phantom Girl is immune to physical harm, can maneuver through solid objects, and float weightlessly like a ghost under her own power. Phantom Girl has demonstrated the ability to phase with split-second timing as well as the ability to phase certain parts of her body selectively, feats very few Bgztlians can accomplish. In her \"ghost\" incarnation she has demonstrated the ability to disrupt the workings of electronic devices by moving through them while half-phased.

Hand-to-Hand Combat

Phantom Girl has mastered a Bgztlian form of martial arts that takes full advantage of her ability to phase in and out of tangibility during combat. Her skill at striking opponents while solid and becoming intangible when they attack has made her a formidable fighter. By partially materializing a portion of herself (usually her arm/fist) inside her opponent's body she can also deliver a severe shock to their system, though she rarely resorts to this form of attack.

Equipment

As a member of the Legion of Super Heroes, Phantom Girl possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

20th Century: Phase

For further details: Phase

\"Phase
Phase (Enya Wazzo)

After Tinya Wazzo apparently died when her starship exploded (following the Five Year Gap), she seemingly reappeared in the 20th century, but with no memories of her life in the 30th century. She joined that era's team known as L.E.G.I.O.N. and adopted the codename of Phase. It was later revealed in Earth-247 continuity that the original Tinya was half-Carggite (Triplicate Girl's race), meaning that she could split into three separate bodies but had lost the ability because one of her bodies was missing in the timestream. Phase, also known as Enya Wazzo and originally believed to be Tinya's time-lost cousin, turned out to be that missing body. Upon learning of this, the 30th-century Tinya traveled back in time to find Enya. After finally being reunited, their two bodies merged back into one being and returned to the 30th century.

Five Years Later: Batch SW6

\"Apparition
Apparition (Batch SW6)

After the Five Year Gap, duplicate teenaged versions of the Legion mysteriously appeared, initially known as \"Batch SW6\" since they were believed to be clones of the original team created by the Dominators prior to the death of Ferro Lad. Batch SW6 were later revealed to be time-paradox duplicates of the original Legion, rather than clones. They formed their own team and operated separately from the original Legion, calling themselves the Legionnaires and starring in their own series with that title. The Tinya Wazzo of SW6 initially called herself Phantom Girl and wore the original \"P\" costume. But she soon decided to differentiate herself from the original Tinya by changing her codename to Apparition, and adopted a black and white costume that became the prototype for the Earth-247 Apparition costume. As with her original counterpart, the SW6 Tinya was in a committed relationship with the SW6 version of Ultra Boy. The timeline of the SW6 duplicates was eventually wiped out by the Zero Hour event.

Elseworlds: Superboy's Legion

\"Phantom
Phantom Girl (Superboy's Legion)

Phantom Girl appeared as a member of the Legion in Superboy's Legion, an Elseworlds story. In this reality Tinya's mother Winema was the queen of their homeworld of Bgztl, making Tinya a princess. In appearance she closely resembled the Phantom Girl of original continuity and wore the original white costume with a stylized \"P\" on the chest. Series artist Alan Davis drew her without pupils, giving her character a slightly more alien appearance.

Other Media

Television

Superman: The Animated Series

\"Phantom
Phantom Girl (Superman: The Animated Series)

Phantom Girl had a cameo in the episode New Kids in Town, as one of several Legionnaires stationed in the 30th century. Her costume was patterned after her Apparition uniform from Earth-247 continuity. She did not have a speaking role.

Justice League Unlimited

\"Phantom
Phantom Girl (Justice League Unlimited)

The same Phantom Girl, but now in her original \"P\" costume, later appeared in the JLU episode Far From Home. She was one of many Legionnaires who became possessed by the power of the Emerald Eye, wielded by the villainous Emerald Empress. Phantom Girl had only one line (voiced by Jennifer Hale), honoring the heroes of the past as honorary Legionnaires.

Legion of Super-Heroes Animated Series

\"Phantom
Phantom Girl (LOSH animated series)

Phantom Girl finally appeared as a main character in the Legion's own animated series. She was voiced by Heather Hogan. This version of Phantom Girl was one of the youngest of the group and desperate to prove herself to the rest of the team. Her mother was president of the United Planets, which Tinya hated. Tinya's powers now allowed her to phase other objects from a distance. She was one of the biggest cheerleaders of the team and a bit of a princess. She wore a black and white costume patterned after her Earth-247 Apparition costume, but with a stylized 'ghost' logo on her chest.

In Season One, she stood against the Fatal Five in Man of Tomorrow. She warded off the villainous Scavengers in Legacy and attended the Intergalactic Games in Champions. She helped against Phantom Zone invaders in Phantoms and was instrumental in getting the Sorcerers' World to deal with a rogue magician in Child's Play. Although paired with Ultra Boy in Sundown, a romance between the two was never explored. By Season Two, Phantom Girl had formed a close friendship with Timber Wolf. He found her in debris during Man from the Edge of Tomorrow, Part 2 and she was willing to turn against the Legion to protect him in Cry Wolf. She returned to the Sorcerer's World to defeat Mordru in Trials.

Popular Recognition

Citing the revealing 'peekaboo' design of her costumes, Phantom Girl was ranked 96th in Comic Buyer's Guide's 100 Sexiest Women in Comics list. She was one of five Legionnaires to make the list (along with teammates Shadow Lass, Duplicate Girl, Lightning Lass, and Saturn Girl).

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114604/","id":114604,"name":"The War Between Supergirl and The Supermen Emergency Squad! / Supergirl's Three Super Girl-Friends!","issue_number":"276"},"gender":2,"id":1257,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7607006-phantomgirl1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7607006-phantomgirl1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7607006-phantomgirl1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7607006-phantomgirl1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7607006-phantomgirl1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7607006-phantomgirl1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7607006-phantomgirl1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7607006-phantomgirl1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7607006-phantomgirl1.jpg","image_tags":"All Images"},"name":"Phantom Girl","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Tinya Wazzo","site_detail_url":"https://comicvine.gamespot.com/phantom-girl/4005-1257/"},{"aliases":"Dirk Morgna\nSun Man\nInferno\nPh'yr","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1259/","birth":null,"count_of_issue_appearances":606,"date_added":"2008-06-06 11:27:35","date_last_updated":"2021-08-14 00:36:39","deck":"A member of the Legion of Super-Heroes, who taps into solar energy to produce whatever degree of flame or luminance he wishes.","description":"

Origin

\"Original
Original Star Boy

Dirk Morgna's mother died during child birth and Dirk was raised by his distant, business-minded father Derek Morgna. Dirk's father owned a nuclear power plant and Dirk worked as an assistant there as an adolescent. One of the scientists, Dr. Zaxton Regulus, was working on a machine when there was an accident, which resulted in the death of worker Zarl Hedricks. Dr. Zaxton was blamed for the accident and was dismissed. Angered, Dr, Zaxton blamed Dirk for the accident as he was the one who was sent to deliver supplies to him. In a rage, the doctor threw Dirk into an atomic reactor and left him to die. Dirk instead gained special powers due to his unique genetics and used them to help escape. For the adulation, Dirk took on the name Sun Boy and applied for the Legion, but was rejected in favor of Brainiac 5 and Supergirl for that year's membership slots. He was accepted the next year when he developed his powers of heat generation.

Creation

Sun Boy was created by by Jerry Siegel and Jim Mooney.

Character Evolution

Original Continuity: New Earth

\"Sun
Sun Boy (New Earth)

As Sun Boy, Dirk had a dramatic Legion career. Early on he lost his powers and was sidelined, but they recovered. He became space happy on an extended mission in space where he was leader and locked up his teammates, who eventually saved him. Dirk was hit in the head during a press event and suffered amnesia just as Dr. Regulus returned to seek revenge. Dirk regained his memories in time to defeat his rival, doing so again years later when he returned after Dirk's 11 solar year (17-18 years) birthday party. His powers were instrumental in weakening the Servants of Darkness in the Great Darkness Saga but Darkseid continuously knocked him out. During an encounter with the Emerald Empress, she broke Dirk's jaw for his back-talking. He recovered shortly thereafter. Dirk, notorious for quick relationships, had a steady one for a period of time then with Gigi Cusimano, an old friend of Dirk's buddy Colossal Boy. However Dirk ended that relationship as well.

Five Years Later: Glorithverse

\"Dirk
Dirk Morgna, sell-out.

During the off-panel period of time known as the Five Year Later, Dirk became the leader of Legion and after a series of defections, he left the group. He was then hired by Earthgov as a public relations liaison and used his popularity to get the public's opinion, putting him in at odds with his previous teammates. His work at keeping the image of a Dominator controled EarthGov, justifying events as the arrest of teammate Brekk Bannin, the incident with the assassin Roxxas, the death of Blok, the cleaning of image of Dominion agents, the killing of the Tornado Twins put a heavy strain on his will.

Reboot: Earth-247

\"Dirk
Dirk Morgna (Earth-247)

On Earth-247, Dirk Morgna once again was blamed for Dr. Regulus' firing and was left in an atomic reactor to die which gave him super-powers. However this Dirk's luminance could not be controlled, which caused him to go under scientific quarantine to protect others. Dirk became frustrated by his months in isolation and escaped to find his father, who had let him be admitted to such a place. During the confrontation with his father, the Legion arrived with a tromium-lined transuit. The suit muted Dirk's brightness and permitted him to interact with others again.

Dirk assisted the Legion on an assignment when Dr. Regulus took over one of Leland McCauley's factories. The battle exposed Dirk to more radiation, which cured him of his powers. Dirk then became the owner of the Magnoball team the Lodestones. He was shortly thereafter possessed by a fire elemental, turning Dirk into a fiery monster named Ph'yr of the Elements of Disaster. Dirk was one of the hosts to usurp control and survive, though this left Dirk with infrared vision. This led Dirk to be the first to spot the anti-energy cloud that went on to become Wildfire. Dirk, as well as the rest of Earth-247, was destroyed during Infinite Crisis. But as the timeline was later restore, it is probable that this version also has survived.

Threeboot: Earth-Prime

\"Sun
Sun Boy (Earth-Prime)

On Earth-Prime, Dirk Morgna was once again a member of the Legion, now a youth rights movement. Dirk's parents were some of the few adults who supported the Legion enthusiastically, much to Dirk's embarrassment. Dirk was often a field leader among the Legion and had an over-confident, assertive personality that butted heads with Cosmic Boy's leadership constantly. He previously had a relationship with Light Lass, which was short lived. Feeling stifled by his parents and never getting the opportunity in the Legion to properly come to his own as a leader, Sun Boy resigned from the team to lead a group of meta=humans called Terra Firma, who had been manipulated by the villainous Lemnos.

Retroboot: New Earth

\"Sun
Sun Boy (New Earth)

Infinite Crisis restored the original Legion to continuity before the Five Year Later, leaving Dirk once more alive and an active member of the Legion. He was kidnapped while Earth-Man's Justice League took over Earth and was hooked to a machine that drew his power so that the yellow sun of Earth could be turned red. He was eventually freed, but the experience left him drained physically and emotionally. Dirk sequestered himself from his teammates and initially refused to assist them when Superboy-Prime and the Legion of Super-Villains went on a rampage. Two other Legions were recruited to assist and Earth Prime's Sun Boy was killed, which this Dirk felt. His counterpart's death pained him and reignited Dirk's fighting spirit. He aided the Legion in the villains' defeat and rejoined them properly.

After recover his temple, Dirk joined Polar Boy in his homep planet to deal with the Polar King, where they discovered than the legion of Super-villians could have their own Spy Squad.

The Legion later was forced into fighting a Daxamite and a group of Controllers on the planet of Panoptes and they were eventually successful after the intervention of Element Lad.

Major Story Arcs

The many deaths of Sun Boy

The Death of Glorithverse Sun Boy

\"Death
Death and undeath

When Earthgov is exposed to be under the control of Dominators, Dirk is branded a traitor to Earth and his teammates. Finally, with a broken spirit, Dirk tries to recover his heroic spirit, but then gets exposed to a fatal does of radiation when a power-sphere explodes during the destruction of the Moon. Scarred by the radiation he was put on one of the several subterranean chambers where the Batch SW6 was found, but his pain, phisycal and emotional, persisted. Finally he gets mercy killed by his lover, Circe.

However, this was not his final appearance. When a wave of undead soldiers from Mordru attacked the United Planets, the body of Dirk, along with the several teammates was revived. After the defeat of Mordru and the return to death, his body was possessed by his also revived former teammate, Wildfire, who used his body to help him sustain his energy form. Thsi secret would be revealed only when the reality collapsed during the event Zero Hour.

The Death of Earth-Prime Sun Boy

\"Superboy-Prime
Superboy-Prime kills Dirk

His time with Terra Firma proved difficult as its members refused to fully reform from their criminal ways. Ultimately, Dirk's conscience got the best of him and he personally saw to it that all his teammates were jailed. Defeated but still willing to fight the good fight, Dirk returned to the Legion and insisted they even put it to a vote to see if they wanted him back. The team voted Sun Boy back in just in time for Dirk and his Legion to team with two others to save the Legion of New Earth. During this battle, Superboy-Prime froze Sun Boy with his freezing breath and then shattered him, killing him. He was later resurrected as a member of the Black Lantern Corps but died again.

The Death of Original/Retroboot Sun Boy

\"Debris
Debris kills Sun Boy.

Sun Boy was one of the earliest victim of the last attack of the Fatal Five against the Legion. When The Fatal Five cut the quantum relay than helped spaceships to travel, the Phantom Girl's team crashes on a non-Interlac speaking alien world. Sun Boy guidied their ship to a safe landing, but it crashed and the debris killed Dirk, by smashing his head. To add insult to injury, the inhabitants of that world, later discovered to be a Promethian Giant, eated Dirk's body, leaving nothing to bury on Shangalla, where he was later memorialized.

Powers and Abilities

\"Overloads
Overloads star level tolerance

Fire Control

Dirk Morgna has the ability to tap into internalized solar power, allowing him to project luminance and heat to whatever degree he desires. He is able to project light bright enough to lead to permanent blindness and that could be seen from miles away in space. He can concoct heat within seconds that can melt through steel or be tossed as fireballs, as well as absorb energy to grant him Super strength & durability. In the postboot reality, Dirk also had infrared vision and could detect heat patterns. Some of his feats include:

Equipment

As a member of the Legion of Super-Heroes, Sun Boy possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

Five Years Later: Batch SW6

\"Inferno
Inferno (Batch SW6)

Before the death of Dirk, members of the Dominator's Batch SW6 escaped captivity. There were shown as being time-displaced Legionnaires from the team's fifth year with Dirk among their number. The Batch SW6 duplicates survived the destruction of Earth and became the Legionnaires of New Earth. This Dirk took the codename Inferno. He was best friends with Live Wire and had a habit of womanizing and belittling others. He was one of the Legionnaires who drove Cera Kesh to be the new Emerald Empress and he had a romance with a mermaid named Keiki. When all the other Legionnaires without adult counterparts began to vanish when the timeline was collapsing, Dirk questioned as to why he was immune with his counterpart deceased. Wildfire confronted him and revealed he had taken the elder Dirk's body. The pair then merged together with the other Legionnaires to reboot their collapsing timeline during Zero Hour.

Smallville: The comic series

An alternate version of Sun Boy also appeared as member of the Legion of Super-Heroes in the comic-only published series based on the tv series Smallville.

Elseworlds: Superboy's Legion

Sun Boy also appeared as one of the earlier several super-heroes who joined Kal Brande's Legion. He joined along with Colossal Boy and he showed to be more agressive than his main template.

Other Media

Television

Superman & the Legion of Super-Heroes

\"Sun
Sun Boy (S&LSH)

Dirk appeared as Sun Boy, a member of the Legion yet again, in the Legion's two season cartoons. This version was depicted with long hair and inflamed eyes. He had no lines throughout the run of the show and was often depicted as a trusted assistant to Cosmic Boy, causing him to be absent like Cosmic Boy for much of the first season. He made his first appearance as a cameo on a vidscreen during \"Timber Wolf\" and aided the Legion in protecting Earth's atmosphere in \"The Substitutes.\" He fought against the Sun Eater in the two part \"Sundown.\" In the second season, Dirk was one of many Legionnaires captured on Takron-Galtos but later released in the second part of \"Man from the Edge of Tomorrow.\" He sat as jury at Timber Wolf's trial and ultimately hunted him down in \"Cry Wolf.\" He was depicted as one of the original Legionnaires in \"In the Beginning\" and fought against Brainiac in the two part \"Dark Victory.\"

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114604/","id":114604,"name":"The War Between Supergirl and The Supermen Emergency Squad! / Supergirl's Three Super Girl-Friends!","issue_number":"276"},"gender":1,"id":1259,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182622-sun%20boy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182622-sun%20boy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182622-sun%20boy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182622-sun%20boy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182622-sun%20boy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182622-sun%20boy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182622-sun%20boy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182622-sun%20boy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182622-sun%20boy.jpg","image_tags":"All Images"},"name":"Sun Boy","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-6/","id":6,"name":"Radiation"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Dirk Morgna","site_detail_url":"https://comicvine.gamespot.com/sun-boy/4005-1259/"},{"aliases":"Starman\nStar Boy\nSir Prize\n","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1260/","birth":null,"count_of_issue_appearances":617,"date_added":"2008-06-06 11:27:34","date_last_updated":"2021-10-31 19:19:04","deck":"Member of the Legion of Super-Heroes able to induce mass and gravity. Former member of the Justice Society of America.","description":"

Current Events

Nothing appearing currently.

Origin

\"Original
Original Star Boy

Thom was born on a orbital satellite over the planet Xanthu in the 30th century. His parents were astronomers and Thom was born with the meta ability to control gravity. After crashing his parents' space cruiser through the tail of a comet, Thom also gained abilities that rivaled that of ancient Kryptonians. Feeling heroic, he adopted the name Star Boy and joined the Legion of Super-Heroes.

Creation

Starman was created by Otto Binder and George Papp.

Character Evolution

Original Continuity: New Earth

\"Star
Star Boy (Pre-Crisis)

Early on, Thom traveled to the 20th century to visit Superboy but was blackmailed into being Lana Lang's boyfriend to make the Boy of Steel jealous. Her ruse failed quickly. While his Kryptonian powers faded and failed him soon after, the Legion elected to keep him after he recovered from his injuries and perfected his mass shifting. Star Boy fell in love with a beautiful new recruit named Dream Girl. Dreamy joined the Legion under false pretenses and ultimately resigned, but Thom still had feelings for her. Dreamy's biggest fan, Kenz Nuhor, was rejected by her because she reciprocated Star Boy's love and so Kenz set out to kill Star Boy. He lured Thom into a trap and would have killed him had Star Boy not shot and killed Kenz in self defense. Having violated the Legion code against killing, a trial was held and Star Boy was found guilty and expelled from the Legion.

Reboot: Earth-247

\"Star
Star Boy (Earth-247)

On Earth-247, Thom Kallor was one of the few denizens of Xanthu to be born with a superpower. He was recruited quickly by the government as an adolescent to be a part of the Uncanny Amazers and was up for the title of Planetary Champion when the Legion of Super-Heroes was founded. Thom was not Xanthu's initial pick as draftee into the Legion, but upon Kid Quantum's death they opted for Star Boy to be their new representative. As Thom prepared to set off for Earth, a mourning Kid Quantum II rigged Thom's space cruiser so that he couldn't turn its music off. This distraction caused Thom to crash, where he spent several weeks in a body cast recovering. During that time, he was nursed with some exotic whale that sped up his recovery but also granted him Kryptonian-like powers which he discovered upon properly joining the Legion of Super-Heroes.

Threeboot: Earth-Prime

\"Star
Star Boy (Earth-Prime)

The Star Boy of Earth Prime differed from other realities in that he was of African descent. His origin otherwise was never specified to be any different. He was still from the planet Xanthu. Thom was a member of the Legion again and a big supporter and defendant of initial leader Cosmic Boy. Dream Girl had expressed interest in him before her death, though it was never stated Thom reciprocated. He sided with Cosmic Boy when the Legion stood divided between Cos and Brainiac 5 but pulled together with the rest of his team to defeat Terra Firma. He traveled to Winath months later to search for the missing Cosmic Boy and instead found Lightning Lord, who was charged with the war crimes previously placed on Cos. Wielding the power of gravity like Thom did made him instrumental to several of the Legion's later victories, especially when guided by Brainiac 5's precise calculations. He was often paired with Light Lass for the most dynamic results.

Retroboot: New Earth

\"Starman
Starman (New Earth)

Infinite Crisis restored an analogue of the original Legion to continuity. Following the Magic Wars, Star Boy rejoined the team and was one of several Legionnaires who assisted Brainiac 5 on a covert mission to the 21st century. While traveling through time, Star Boy became unhinged and came to reside on Earth-22, the Kingdom Come reality. He later used his powers on his costume again to travel to New Earth proper. Shortly upon arriving, Thom discovered that the ancient medicine of that era wasn't enough to keep his schizophrenia in check and he had to cope with his mental illness. This made him lucid enough that he forgot his initial mission, instead taking on the name \"Danny Blaine\" from a Xanthu pulp hero and deciding to defend Opal City like the Starmen before him. He even took on their codename.

Homeless, he was quickly taken in by Opal's Sunshine Sanitarium to help with his mental confusion. It was there he fell in love with sloppy joes. Shortly thereafter, his heroic efforts in Opal caught the attention of the reformed Justice Society of America and Thom was recruited. He left the JSA after participating in the Lightning Saga crosover then digging up the body of Connor Kent.

Major Story Arcs

Original Continuity: New Earth

Star Boy x Dream Girl

Upon his expulsion, Thom was met by Dream Girl and recruited into the Legion of Substitute Heroes. The pair later left the Subs and donned suits of armor to hide their identities as they joined the Legion as Superboy and Supergirl's replacements, per their request. Following Thom's adventure as Sir Prize, the Legion elected to bring Star Boy and Dream Girl back onto the team despite their past actions. Star Boy served on the Legion for many years and continued his relationship with Dream Girl, even during a strained part of their relationship years later when Dream Girl was elected Legion leader. She eventually offered Thom the job of her deputy leader so they could spend more time together, which he only begrudgingly accepted because her term was almost over. On a mission to Xanthu and following a rough patch with Dreamy, Thom was commanded by his people's government to serve as their new planetary champion. Star Boy accepted the position and resigned from the Legion to care for his homeworld. He warded off Atmos in battle several times to keep the title, though he lost Dream Girl to the other hero.

Five Years Later

Star Boy rejoined the Legion following the Magic Wars but only served for a short time. With the Legion falling on dark times, Thom returned to Xanthu. He fell in love with and later married Yvyya, the owner of the Naltorian Dreamers batball team. Thom retired from heroics and became their coach, though he did come out of retirement during Zero Hour. With his timeline collapsing, Star Boy joined his past teammates in helping to rescue Cosmic Boy and ultimately sacrificed himself to reboot the universe.

Reboot: Earth-247

Star Boy in the 21st century

As a Legionnaire, Star Boy was inducted with the draft dodging Gates and was often scrutinized by Leviathan, who felt responsible for the death of Thom's predecessor and refused to let Thom end up like Kid Quantum. Star Boy helped assemble the Fatal Five and was one of many Legionnaires spared being trapped in the 20th century. When the Legion held open auditions for the first time, Star Boy was on the judging panel and it was there he met his future girlfriend, Dreamer. Thom was smitten with her and they began to date shortly thereafter. He returned to Xanthu several times to both cement his position in the Legion and to help ward off an invasion. He was distraught when Xanthu ceded from the United Planets to the Allied Planets and refused a call to return home with the other Xanthian Legionnaires. One visit to Xanthu also led him to team up with Jack Knight, a time-lost hero named Starman. Thom then learned of his destiny to one day be the Starman of the 21st century.

Robotica Invaded

\"Star
Star Boy vs Robotica

Eventually, Thom's Kryptonian superpowers began to haywire. Due to his liability in the field, Star Boy was sidelined. These powers ultimately faded and Thom returned to active duty in time to be captured during the Blight Invasion. He was later freed but elected to leave the Legion when Dreamer began having nightmares. They traveled to Xanthu and worked with the Khunds to fine-tune both Dreamer and Thom's powers. Instead of just inducing mass, Star Boy learned how to decrease it as well. When Robotica invaded Xanthu, Star Boy ultimately stayed behind with former teammate XS when the planet was evacuated. They were saved from their exile weeks later by a reformed Legion, which Thom rejoined and later Dreamer joined as well. Thom was spared from the destruction of Earth-247 because the Legion had been lost in the timestream on an adventure. He pushed into the Multiverse with his Legion to become the new Wanderers.

Retroboot: New Earth

Starman carry out R.J. Brande's Last Will and Testament

\"Starman
Starman in the past

Shortly thereafter, Thom's dreams became haunted and it led him on the trail of Dream Girl, who had been captured by Dr. Destiny. Freeing Nura, Thom was reminded of his original mission in the past. He rejoined with the other Legionnaires and they successfully used lightning rods to gather the essence of the deceased Bart Allen. When the other Legionnaires returned home, Thom remained in the past with the Justice Society to aid Brainiac 5 in one other contingency. Thom took a job as a grave digger and dug up the body of Conner Kent and took it to a rejuvenation chamber in the Fortress of Solitude which would resurrect the hero over the span of a 1,000 years. All the while, he continued to act as Starman and assisted the JSA with threats such as Gog and the new Injustice Society. Gog even restored Thom's sanity for a time. Already in the 21st century, he became a de facto member of the Legion on a mission in the past to carry out R.J. Brande's Last Will and Testament, protecting the bottled cities Brainiac had stolen. With his last mission in the past finally complete, Starman was presumed to return to the future.

Powers and Abilities

Gravity Control

Star Boy possesses the ability to control the gravitational force of an object. He does so by borrowing the gravity from stars and redirecting this force onto a designated area. He can sink cities and pinpoint it to objects smaller than pebbles. He is capable of drawing enough mass to create a black hole by recreating the weight of a collapsing star. Thom wears a suit crafted together by three different Brainiac 5's that is a map of the multiverse. It is fine tuned so that Thom's mass induction ability when properly applied can create small wormholes into these realities or transport himself. It is a skill he has yet to refine.

Kryptonian

Previously, after crashing through a comet tail, he gained the powers of a Kryptonian as well as the ability to breathe fire. In the postboot, he also gained electrical vision. In both iterations, these abilities were only temporary.

Equipment

As a member of the Legion of Super-Heroes, Star Boy possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

Five Years Later / Batch SW6

\"Star
Star Boy (Batch SW6)

Zero Hour created a blip which added a young Star Boy to the SW6, time-displaced Legionnaires team. Thom merged with this young counterpart as part of his sacrifice.

Superboy's Legion

Star Boy is a member of the Legion.

Other Media

Television

Superman & the Legion of Super-Heroes

\"Star
Star Boy - animated

Star Boy was one of many Legionnaires in the Legion's cartoon, which was broadcast for two seasons. He represented the Earth-Prime version of the character and possessed general gravity powers, able to make things heavy or lightweight. In the first season, he joined the Legion alongside Matter-Eater Lad in the episode \"The Substitutes.\" He assisted the Legion and Fatal Five in defeating the Sun-Eater in both parts of \"Sundown.\" He had no lines in the first season but was voiced by Bumper Robinson when he was upgraded to a recurring character in season two.

He was captured on Takron-Galtos, but ultimately freed in part two of \"Man From the Edge of Tomorrow\" and was a jury member in Timber Wolf's trial in \"Cry Wolf.\" His first speaking role was protecting Imperiex's creator in \"Unnatural Alliances.\" He fought Mordru in \"Trials\" and the Dark Circle in \"Dream On\", having speaking parts in both. After being knocked unconscious by a possessed Brainiac 5, Star Boy stood with the Legion against Brainiac in \"Dark Victory.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114603/","id":114603,"name":"Lana Lang and the Legion of Super-Heroes!","issue_number":"282"},"gender":1,"id":1260,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68065/8224022-starboy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68065/8224022-starboy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68065/8224022-starboy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68065/8224022-starboy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68065/8224022-starboy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68065/8224022-starboy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68065/8224022-starboy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68065/8224022-starboy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68065/8224022-starboy.jpg","image_tags":"All Images"},"name":"Thom Kallor","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Thom Kallor","site_detail_url":"https://comicvine.gamespot.com/thom-kallor/4005-1260/"},{"aliases":"Tasmia Mallor\nUmbra\nShady\nShadow Woman","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1261/","birth":null,"count_of_issue_appearances":528,"date_added":"2008-06-06 11:27:36","date_last_updated":"2019-12-18 10:44:32","deck":"Tasmia Mallor is the champion of her homeworld of Talok VIII and has the power to project and control darkness. As Shadow Lass, she is a long-time member of the Legion of Super-Heroes.","description":"

Current Events

Shadow Lass currently stars in the ongoing Legion of Super-Heroes series since the DC Universe was rebooted with the new 52. Tasmia and her teammates are presently fighting a villainous Daxamite and a group of Controllers on the planet of Panoptes. She was particularly vital in subduing the Daxamite while Mon-El battled him directly, as she provided confusion in the form of darkness to which Mon-El was relatively accustomed (as their previous relationship hinted at).

Origin

\"Tasmia
Tasmia Mallor (Original Appearance)

Tasmia Mallor is the latest in a line of hereditary shadow champions of her desert homeworld of Talok VIII, as were her ancestors before her for the past thousand years. Tasmia possesses the blue skin and pointed ears typical of her race, and as the Talokian champion she has the power to create and manipulate darkness. Tasmia is well adapted to the harsh desert terrain of Talok VIII and has kept very true to her people's beliefs and rituals, training hard from an early age to assert her family's power and status among her people.

She and her younger cousin Grev Mallor received their powers from their ancestors, whose spirits reside in a mysterious and forbidden cave beneath the surface of the planet. When they entered the cavern their ancestors spoke to them, casting a pitch black cloud which acted on their genetic heritage and unleashed their powers. Tasmia's 20th-century ancestors Lydea Mallor (Darkstar) and Lyrissa Mallor were also shadow champions, as well as members of the interstellar police force called L.E.G.I.O.N. As Shadow Lass, Tasmia has continued that tradition as a member of the 30th-century Legion of Super-Heroes.

Creation

Shadow Lass was created in 1968 by writer Jim Shooter and Curt Swan. She became the Legion's eighth female member and the 24th Legionnaire overall. Though her 20th century Talokian ancestors Lydea and Lyrissa predate her in DC's timeline by a thousand years, Shadow Lass was the first of her race to actually make an appearance in comics.

Character Evolution

Original Continuity: New Earth

\"Classic
Classic Shadow Lass (1970's outfit)

When the team of super-villains known as the Fatal Five attacked and conquered Talok VIII, Tasmia was off-world and unable to defend her people. But she seized the opportunity to request the aid of the Legion of Super-Heroes and led them to her homeworld. The Legion made Tasmia a temporary Legionnaire during the ensuing battle, and together they defeated the Fatal Five. Afterward Tasmia was offered full membership into the Legion and she accepted, taking the code name of Shadow Lass. She became the first Legionnaire in history to win membership directly through battle. Tasmia's cousin Grev, who also wielded the shadow power thanks to his bloodline, went on to join the Legion Academy as Shadow Kid, though he was aware that he could never join the team while Tasmia was an active member, due to a Legion rule prohibiting members with the same powers. Both cousins hoped that Grev's training at the Academy would give him the skills necessary to protect their homeworld during Tasmia's absence.

Tasmia's first costume in original continuity was essentially a dark blue bathing suit with a cape. Like many Legionnaires she underwent a sexy makeover in the 1970's, adopting a revealing black bikini-like outfit with gold accessories -- a tiara, bracelets, and an \"S\"-shaped logo just below her navel.

Five Year Gap: New Earth

\"Tasmia
Tasmia Mallor Gand (Five Years Later)

Tasmia went on to wander the galaxy with her husband Lar Gand. Their marriage was rocky for many years despite their strong feelings for each other and Tasmia went into mourning when Gand died. Tasmia resigns from the Legion, returning home to become a nun, she spend years in isolation. Her mourning came to end when Gand returned from dead. He was briefly inhabited by the Time Trapper's essence, but return normal. The couple is reunited, then the timestream changed by come events of the Zero Hour. Time changed as young Lar Gand (Valor) made his way to Earth and had heroic adventures there before being put into the Phantom Zone. When young Lar dies in the past, this cause Mon-El in future and Shadow Lass to forget one another, but she felt still felt some toward to Gand even if he didn't feel the same toward her. Later when people started vanishing due to Zero Hour, a fate she and Gand avoided by using each other as anchors to reality. But when a stray blast during the battle against Mordru and Glorith soon afterward made it too painful to concentrate on staying extant, she vanished and Valor shortly followed.

In the 1980's Shadow Lass's costume became more conservative, consisting of black tights and a cape, though still with a hint of sexiness due to a revealing 'cleavage window' on her chest.

Reboot: Earth-247

\"Umbra
Umbra (Earth-147)

Tasmia Mallor was the latest in a long line of Shadow Champions of Talok VIII. At birth she was taken from her mother, the then-current Champion, in a bid to ensure that no single accident or attack could ever claim both of them, and saw her only seven times during her lifetime, all at solemn ceremonies in which they were forbidden to speak. As she grew up, she was raised by priests and was trained in combat and drilled in the order of her bloodline. She loved it. Finally, one day, her mother was killed in battle and she was brought before the leaders of Talok VIII's twelve tribes - the only time they would ever congregate peacefully - before entering the Shadow Cave, where she met the spirits of her mother and the other prior Champions. After they chastised her for never wondering how her mother died, she took to heart their counsel to protect Talok VIII (but not their warning against egocentrism) and they told her to Go In Power. On leaving the cave, she found the inhabitants of Talok VIII on their knees, waiting for a sign - which she provided when she let the Shadows loose. After that, she became the Champion, using her position to give orders to leaders and priests, all in maintenance of the Old Ways.

This lasted until the ship came. The United Planets ship came in peace, proselytizing the benefits of U.P. membership. Sent to greet the \"invaders,\" she understood none of it , and she set about dismantling the \"hideous\" ship and crew. Despite their best efforts, she caused an explosion that caused the ship's landing gear to collapse. After that, the priests (who had already been harboring doubts about the \"zealot\") kept her drugged until UP entry negotiations were complete. Profoundly disturbed by the cultural influx and Talok's \"captitulance,\"she was eventually \"dismissed\" and told to study the galaxy to \"open her mind.\"

Umbra's costume drew on the character's earlier and sexier 1970's look, consisting of a skimpy black bikini with a revealing open 'slash' pattern, long black boots and gloves, and a cape. Curiously, she also wore a metal codpiece on the crotch of her costume.

Threeboot: Earth-Prime

\"Shadow
Shadow Lass (Earth-Prime)

Legion continuity was rebooted yet again (referred to by fans as the \"threeboot\") in a new reality, officially designated as Earth-Prime. Not much was revealed about Tasmia's past in the continuity, except that she loved being in the Legion of Super-Heroes. She was dating Ultra Boy and asked Karate Kid to help him when Ultra Boy had trouble with controlling his powers. She had mistakenly thought that Ultra Boy was interested in Supergirl. When she and other Legionnaires visited her homeworld of Talok VIII, they were surprised of the favor that she demanded of her people, including a large banquet in her honor. She explained that it was because that she didn't want to look aloof (by not accepting such gifts). She had a friendly rivalry with her brother Grev Mallor.

The Earth-Prime Shadow Lass wore a variation of the character's black tights and cape costume from the 1980's, though the cleavage window was replaced with an even more revealing open V-neck that plunged all the way to her navel.

Retroboot: New Earth

\"Shadow
Shadow Lass (Retroboot)

Tasmia storyline picks up before Five Year Later, she is among the group of Legionnaires who help Superman defeat the villainous Justice League of Earth. During the Justice League of Earth's xenophobic reign, Night Girl and Shadow Lass worked with Timber Wolf and Lightning Lass to help thousands of extraterrestrials escape Earth to their home planets via an \"underground\" interstellar portal zone. Shady also debuts a reworked version of her classic 1970's bikini in the Action Comics arc, and uses her shadow-casting powers in tandem with Night Girl's only-in-darkness super strength. Shadow Lass along with fellow Legionnaires Phantom Girl and Lightning Lass, rescue Mon-El from the Phantom Zone, where he had been imprisoned by Earth Man and the villainous Justice League of Earth. Upon leaving the Zone, Mon-El once again suffers the effects of lead poisoning, but as in the past, is inoculated with an antidote created by Brainiac 5.

Major Story Arcs

Original Continuity: New Earth

Romance and Tragedy

Shortly after joining the Legion, Shadow Lass became romantically involved with a teammate, the Daxamite Mon-El (also known as Lar Gand). The two went on to become one of the Legion's most enduring couples. Eventually they married after Mon-El was mortally wounded fighting the Time Trapper as part of a major conspiracy to avenge Superboy's death at the Trapper's hands. Mon-El recovered, but the marriage was rocky for many years despite their strong feelings for each other.

Mon-El was later killed in action, and Shadow Lass went into mourning. Her grief was brought to an end after Mon-El seemingly returned from the dead. However, it turned out that he was now inhabited by the Time Trapper's essence. A cataclysmic battle then erased the Trapper from existence and completely rewrote reality, causing Shadow Lass to lose her husband yet again.

Reboot: Earth-247

Legion Lost

\"A
A colder Umbra

Tasmia eventually made her way to Earth, and entered the Legion tryouts and was accepted as Umbra, although her curt attitude irritated Sensor. As part of the Legion, she fought Mordru, and later played a key part in saving Wildfire - despite, after her initial fierce compassion, being disgusted at the thought of the forcible integration of his two original souls. Far later, the Blight enslaved most of Earth, including all but a few of the Legionnaires. Umbra was not among these escapees. When she was freed, she began to have a mental breakdown, prompted not only by the fact of her enslavement and what she'd been forced to do, but by the fact that the Blight's touching of her mind had meant that she'd enjoyed it. Shortly thereafter, she became one of the Legionnaires lost through a space rift and catapulted into another galaxy. There, she became harder and colder than ever in lieu of breaking down completely and showing the fear that now guided her, while the voices of her ancestors from the shadow became faint and hard to understand.

Then Saturn Girl tried to telepathically calm her, and it all went wrong - a telepathic matrix over a whole planet interfered with her powers, and the result left Saturn Girl in a coma, a shadow-creature fueled by Umbra and Saturn Girl's combined pain and fear loose on the ship - and an Umbra completely without pain or anxiety, leaving only anger and arrogant self-confidence. She went down to the planet, where she began to fight Singularity (a Superman-like being), for whom the telepathic illusion which had caused the trouble was being maintained (to keep him from causing trouble on his race's real planet). When Ultra Boy and Monstress went down to get her, she began to fight them too. Finally, she was knocked out by Singularity while the Legion, having captured the shadow-creature and realized what it was, knocked out the illusion causing Singularity to go looking for his original planet. Then Brainiac 5 managed to restore Umbra and Saturn Girl's minds, and Umbra finally broke down in a crying heap.

Return Home

After this she finally began to heal from everything that had happened to her - until, after they managed to return to UP space, her power mysteriously cut out. To find out what had happened, she finally returned to Talok VIII for the first time since her dismissal. There she found a planet completely cloaked in shadow, and a shadow which knocked her out. Shadow Maven, one of the priests who had trained her, found her and told her that after her loss in the rift, they had believed her dead and managed to empower her \"distant cousin Grev\" with the shadows through the use of technology, and had him cloak the planet completely, withdrawing from the United Planets.

Angry at the thought that just as she had accepted the galaxy Talok had turned away from it, she went to confront Grev. The shadow gradually leeched back to her, until she split open the suit Grev used to control the shadow - and found a withered corpse inside, as he had been unable to withstand being a conduit for the Shadow, while the suit ran on its last programmed directives. She cast the shadow-cloak from the planet, and spent some time there before returning to the Legion.

Retroboot: New Earth

Affair with Earth-Man

At the start of current continuity Shadow Lass appeared to have broken up with Mon-El, with no reason truly given. Tasmia's close friend Phantom Girl later caught Tasmia in bed with the reformed xenophobe Earth-Man. When Tasmia found out that Mon-El was chosen to be a Green Lantern, she felt a bit uneasy about it. However Mon-El told her that even though his part of the Corp, the Legion and Earth will always be his family. Earth-Man was later killed in action, and by the end of the latest Legion title it appeared that Tasmia and Mon-El were taking steps to patch up their relationship.

Powers and Abilities

Darkness Manipulation

\"Darkness
Darkness Manipulation

Shadow Lass is able to tap into an unknown and ancient connection to the source of darkness in the universe. She received the gift when she visited the ancient spirits of her ancestral caves. The intense darkness that she creates can engulf large areas of space almost instantly, causing an absolute absence of light which very few (like Sensor Girl) can penetrate with their vision. Shadow Lass is able to control the shape of her darkness, from a large amorphous cloud to a tight beam of concentrated shadows. Those trapped within her darkness become disoriented and deprived of their senses, driving many enemies to the point of experiencing rampant fear and helplessness. Shadow Lass is completely immune to the effects of the darkness she generates and is able to see perfectly through it.

Unarmed Combat

Shadow Lass is a superb athlete and hand-to-hand combatant who learned great fighting skill from her native people as their chosen champion. After joining the Legion, Tasmia's fighting skill grew even more formidable after she trained with martial arts master Karate Kid and other Legionnaires.

Equipment

As a member of the Legion of Super-Heroes, Shadow Lass possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

Elseworlds: Superboy's Legion

\"Shadow
Shadow Lass (Superboy's Legion)

Shadow Lass appeared as a member of Legion in Superboy's Legion, an Elseworlds story. In this reality it was revealed that her darkness powers were magic-based. Shadow Lass wore a skimpy costume reminiscent of her 1970's bikini-like uniform from original continuity. Series artist Alan Davis drew her with no pupils to add to her exotic appearance.

Other Media

Animation

Justice League Unlimited

\"Animated
Animated Shadow Lass

An animated version of Shadow Lass had a non-speaking appearance in the episode Far From Home, which featured several members of the JLU traveling to the 31st century and encountering the Legion of Super-Heroes. Her costume was a more modest version of the 1970's bikini-like uniform that she wore in original comic book continuity.

Popular Recognition

Citing her exotic blue skin and penchant for revealing outfits, Shadow Lass was ranked 18th in Comic Buyer's Guide's 100 Sexiest Women in Comics list. She was the sexiest of five Legionnaires to make the list, beating out teammates Duplicate Girl, Lightning Lass, Saturn Girl, and Phantom Girl.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114927/","id":114927,"name":"Escape of the Fatal Five!; Mocked By The Master!","issue_number":"365"},"gender":2,"id":1261,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182609-shadow%20lass.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182609-shadow%20lass.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182609-shadow%20lass.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182609-shadow%20lass.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182609-shadow%20lass.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182609-shadow%20lass.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182609-shadow%20lass.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182609-shadow%20lass.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182609-shadow%20lass.jpg","image_tags":"All Images"},"name":"Shadow Lass","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Tasmia Mallor","site_detail_url":"https://comicvine.gamespot.com/shadow-lass/4005-1261/"},{"aliases":"Luornu Durgo\nLu\nTriplicate Girl\nDuo Damsel\nUna\nTriad\nDuplicate Damsel\nLelith","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1262/","birth":null,"count_of_issue_appearances":602,"date_added":"2008-06-06 11:27:37","date_last_updated":"2020-09-17 10:05:39","deck":"Luornu Durgo is a native of Cargg, a planet with three suns, which gives her the ability to split into three identical bodies. As Triplicate Girl, she became one of the first members of the Legion of Super-Heroes. Luornu recently gained the ability to split into a virtually endless number of bodies and now calls herself Duplicate Girl.","description":"

Origin

\"Original
Original Triplicate Girl

Luornu Durgo was born on Cargg, a planet with three suns, which grants its Carggite inhabitants the ability to split themselves into three identical bodies. She left her homeworld after hearing of tryouts for the Legion of Super-Heroes, and she had each of her bodies demonstrate her power to the Legion's three founders (Cosmic Boy, Saturn Girl, and Lightning Lad) separately. Luornu then surprised them when they gathered to find they had each been approached by the same girl simultaneously. This convinced them to make her their first new Legionnaire recruit, and she joined the team under the code name Triplicate Girl.

Creation

Triplicate Girl (now Duplicate Girl) was created in 1961 by writer Jerry Siegel (the co-creator of Superman) and artist Jim Mooney. She became the very first Legion recruit following its three founding members, making her the fourth Legionnaire overall and the Legion's second female member (after founding member Saturn Girl).

Character Evolution

Original Continuity: New Earth

\"Duo
Duo Damsel (New Earth)

Luornu was the fourth hero to join the Legion of Super-Heroes, and she quickly developed a heavy crush on Superboy. After successfully completing many missions as Triplicate Girl, she suffered tragedy when Brainiac 5's robot Computo went rogue and killed one of her three bodies. To the surprise of the Legionnaires and in defiance of traditional Carggite physiology, Luornu's other two bodies managed to survived the loss of the third. She adopted the codename Duo Damsel, with the ability to split into two forms. She spent time in the 20th century hiding with other Legionnaires from the powerful sorcerer Mordru. It was during this adventure that Luornu finally accepted that Superboy would never return her affections and started dating Bouncing Boy (Chuck Taine), who harbored a crush on Luornu. Chuck and Luornu became one of the Legion's most enduring couples and eventually the Legion's first married couple.

Triplicate Girl's first costume was a purple miniskirt with an orange belt and cape, a color combination the character has retained throughout her history (though the purple has varied in hue from lavender to dark blue, depending on the era and continuity). After she lost her third body and became Duo Damsel, the orange and purple in her costume was split down the middle and when she split into two bodies, one wore purple and the other orange. Like many Legionnaires, Luornu underwent a sexy makeover in the 1970's, wearing what was essentially a half-purple half-orange bathing suit with perforated thigh-high yellow boots and a yellow cape. In the 1980's her costume changed to full body tights and the boots and cape were abandoned.

Reboot: Earth-247

\"Triad
Triad (Earth-247)

After the events of Zero Hour, a new Legion continuity was formed on Earth-247. Luornu was a native of Cargg once again, a planet where everyone could split into three identical duplicates with identical personalities. However, Luornu was unique among Carggites in that each of her duplicates exhibited distinctly different personalities. Unfortunately Luornu suffered an unhappy home life; at a young age she was abandoned by her father and her mother became an alcoholic. Luornu was then raised by her grandmother who encouraged the differences between the Luornu's separated bodies. But after her grandmother passed away, Luornu fell into the custody of a Carggite government that frowned upon non-synchronized behavior. Lu was placed in a special institution, almost like an insane asylum, to 'deprogram' the individuality out of Lu's selves. Feeling tortured, she managed to escape and came across the third richest sentient in the world, R.J. Brande. Brande took pity on Luornu and took her in. He gave her a job as his secretary and legally adopted her as his foster daughter.

Threeboot: Earth-Prime

\"Triplicate
Triplicate Girl (Earth-Prime)

The Earth-Prime version of Luornu Durgo hailed from the planet of Cargg and was the planet's only survivor following a nuclear war. Plagued with amnesia, she woke up to a post-apocalyptic landscape, leaving no one behind but wild animals. When confronted against a hungry creature, Luornu found herself able to duplicate herself, a natural defense for natives of her homeworld. After she caused the animal to flee, she decided to repopulate the planet with her doppelgangers. Her various bodies each studied different trades from literature she found and with her numbers were able to quickly rebuild her world. Luornu reached the limit of clones she could make and populated Cargg, sometimes combining together to amass the knowledge of every clone and spread it evenly.

Retroboot: New Earth

\"Duplicate
Duplicate Girl/Damsel (New Earth)

The \"Retroboot\" returned the Legion to a close approximation of the original team prior to the Five Year Gap. Luornu was once again Duo Damsel and wore her classic DD costume. During the Lightning Saga, one of Duo Damsel's two bodies traveled to the 21st century to join Karate Kid on an assignment. Because her other body was still in the 31st century she couldn't duplicate, so while on the mission she called herself \"Una.\" Tragically, both Una and Karate Kid were killed in action in the 21st century. But when Una died, Luornu's single remaining body in the 31st century somehow received a major power upgrade, gaining the ability to split into any number of bodies. Luornu changed her name to Duplicate Damsel and later to Duplicate Girl. She and her husband Bouncing Boy joined the battle against Superboy-Prime the Legion of Super-Villains, she had just returned from their third honeymoon at the back beaches of Ventura. So far, Luornu has opted to remain an instructor at the Legion Academy rather than rejoin the Legion with her greatly enhanced powers.

As Duplicate Girl, Luornu has gone back to a variation of her sexy 70's-era Duo Damsel costume from original continuity, though the briefs have become a miniskirt, her gloves are now shoulder length, and she no longer wears a cape.

Major Story Arcs

Original Continuity: New Earth

Lelith

On an early mission as Duo Damsel, Luornu's second body traveled to the planet Ikros, where she met and fell in love with a hero named Nam'Lor. While on the planet, Luornu's separated body somehow became corrupted and evil, and she began calling herself \"Lelith.\" In a demonstration of her ruthlessness, Lelith ordered Nam'Lor to kill Bouncing Boy (who harbored a crush on Luornu but was not yet her boyfriend). Nam'Lor refused to do so and finally determined that his own 'Hyber-Aura' (which was the source of his powers) had adversely affected Luornu's mind and caused her to become evil, so he abandoned her. The effect of his hyber-aura wore off and Lelith became Luornu again. But when she left Ikros and merged back into one body, Luornu found that Lelith's mind was still present and sealed off from her own mind, and she had to fight to expel the evil from her second body. This incident marked the first time that one of Luornu's separated bodies developed an adverse personality.

Marriage to Bouncing Boy

\"Luornu's
Luornu's wedding

When Bouncing Boy lost his powers (temporarily as it turned out), he decided to propose marriage to Luornu, they became the Legion's first married couple. At the wedding, Luornu's second body was kidnapped by Starfinger and she temporarily lost her duplication power due to the villain coveting it for himself. But his plan was foiled by the Legion and Luornu's two selves were reunited. After the ceremony, both Chuck and Lu resigned from active duty and became Legion reservists (due to Legion bylaws, married Legionnaires could not serve full-time). But after Chuck's powers returned, he and Luornu often returned to duty to help the Legion on missions. Luornu also joined the Legion Espionage Squad, a special branch of the Legion that handled covert missions. She also decided to become teacher along with her husband and ran the Legion Academy, a school designed to train prospective Legion members. They enjoyed running the Academy so much that when the Legion Constitution changed its bylaws to allow married couples, they opted to remain reserves.

Losing Another Body

Years later, Luornu and Chuck helped form a new Legion of Substitute Heroes with the retired Cosmic Boy and Night Girl. When the Superboy from the Pocket Universe was killed by the Time Trapper, Duo Damsel was devastated, realizing that she still loved him. She joined a conspiracy with other Legion members, including Saturn Girl, Brainiac 5 and Mon-El, to made a pact to break the Legion code and kill the Time Trapper. In the ensuing battle, Duo Damsel lost another duplicate (the one that wore purple) and was left powerless with a single body. She continued on as an instructor at the Legion Academy but decided her fighting days were behind her after losing two of her selves, rejecting Brainiac 5's gift of a force field belt so that she could continue being a heroine.

Five Years Later

\"Luornu
Luornu Durgo (Five Years Later)

The Legion Academy become the United Planets Military Academy after the Legion disbanded due to the devastation caused by the Magic Wars. Luornu and Chuck remained instructors with several of their former students despite the change. When the Legion re-formed, the two continued to assist their friends where they could, but were usually busy with other duties in assisting the U.P. militia. One day, Luornu was kidnapped in the middle of the night and Chuck had to go to the Legion for help. Several others had gone missing too -- all Legionnaires who had been party to the conspiracy to kill the Time Trapper years ago. Glorith, who had reshaped the timeline with herself as the Time Trapper, was now the villain the Legion had conspired to kill in this continuity. They had unknowingly failed; Glorith using her age-altering powers to restore herself as well as Luornu's kidnapped second body, which now acted as her faithful servant. But Luornu was eventually set free, thanks to her second body turning on Glorith. During this adventure, Luornu also discovered that she now had force field powers -- the belt Brainy had given her years ago had internalized its power within her physiology just to be safe. Luornu returned home with her second body and a new super power. She still opted to remain with the U.P. militia. But shortly afterward, this continuity was wiped out by the Zero Hour event.

Reboot: Earth-247

Joining the Legion

After billionaire R. J. Brande was rescued from an attempted robbery by three super-powered teenagers, he was inspired to finance a team of super-heroes called the Legion, and asked Luorno to use her duplication talent and track down each of his rescuers. Luornu did so, and then aided the teens by helping to clear the United Planet assembly hall during a terrorist attack. Luornu's actions that day inspired the three founding Legionnaires (Saturn Girl, Live Wire, and Cosmic Boy) to invite her to be their first recruit. Luornu took the code name of Triad and became a stalwart member, serving consistently with the team save for a period of time where she had to recover from wounds dealt to her by members of the bigoted White Triangle terrorist group. When several Legionnaires became stranded in the 20th century, Triad was willing became stranded with them so the two teams of Legionnaires could meet up in order to bring Cosmic Boy important medical equipment to save his life. She returned with the stranded Legionnaires and served until the team was disbanded by the government after a Stargate tragedy cost half the team.

Running R.J. Brande's Business

\"Luornu
Luornu as head of R.J. Brande's business

During the year without a Legion, R.J. Brande had to go into hiding while Luornu took over his business. She handled the responsibility surprisingly well and helped cover for R.J. as he secretly set out to build Legion World and organize the future of his team of heroes. When Legionnaires thought dead resurfaced later from a lost galaxy, Triad was quick to come to their aid and reorganized the Legion of Super-Heroes along with the others. Due to her great multitasking ability, she often took charge of Legion World's communication hub. She continued to serve with the team until the end of Earth-247, where the Legionnaires were lost in the timestream. Following an adventure where the Legions of three different worlds came together, Triad and her fellow Legionnaires decided to venture into the Multiverse as the new Wanderers to help others without a time or home.

Threeboot: Earth-Prime

Joining the Legion

In time, Cargg was visited by members of the Legion of Super-Heroes. Three clones, combining into one, decided to leave with them, to investigate the United Planets and the Legion as well. They took the codename Triplicate Girl. She was a member of the Legion for a year, enjoying adventures and trying new things, before she returned to her home planet. However, when Triplicate Girl reached Cargg, her other selves found her too unfamiliar. They refused to assimilate with Triplicate Girl, making her feel lost. She returned to the Legion, serving stalwartly and dating Element Lad until she and Karate Kid were approached in the middle of a mission by persons unknown. They pleaded the two heroes to come with them quickly, weighing their work in their own time with the peril their visitors faced. Whatever it was, Triplicate Girl and Karate Kid agreed to go with their visitors. The storyline was never resolved before the title was canceled.Triplicate Girl showed a great deal of loyalty to the Legion's first leader, Cosmic Boy. She had gone on dates with various Legionnaires, including Sun Boy, Element Lad, and Ultra Boy, simply to divine information from them for Cos.

Powers and Abilities

Duplication

\"Luornu
Luornu using her duplication powers

Triplicate Girl (Original Continuity): As Triplicate Girl, Luornu had the natural Carggite ability to split herself into three identical bodies. When she assimilated back together, she gained the knowledge that each body had experienced while separated. Though her three bodies were shown to bicker on occasion, they were generally portrayed as being completely harmonious with each other.

Duo Damsel (Original Continuity): After one of her bodies was murdered by Computo, Luornu could only split into two identical bodies. To reflect this loss, she changed her name to Duo Damsel and her costume's orange/purple color scheme became split down the middle. Her ability to survive and fully operate despite the loss of her third body was considered unique among her race and she retained full membership in the Legion.

Una (Original Continuity): Near the end of original Legion continuity, Luornu's second body was destroyed in a battle with one the Legion's greatest enemies, the Time Trapper. Though once again she defied the odds and survived the loss of yet another body, with only one body remaining she was essentially powerless. She changed her code name to Una and resigned from active duty.

Triad (Earth-247): Unlike other incarnations, the reboot (Earth-247) Triad's bodies manifested three separate and distinct personalities who shared a mental and physical link, which was considered highly unusual among Carggites. One personality was her \"normal\" self, the second was aggressive and extroverted, and the third was shy and introverted. Because of her separate personalities she preferred to remain in triplicated form. At one point each body also manifested very different physical characteristics to reflect their different personalities (though they still had the same facial features): The aggressive one became unusually tall and strong, the shy one became much smaller and faster, and the \"normal\" personality remained the same size.

Triplicate Girl (Earth-Prime): The \"threeboot\" Luornu was different from other incarnations, in that while on her home planet of Cargg she could apparently create an unlimited number of duplicates. However, she could not duplicate once off the planet. Eventually three of her bodies decided to combine into one body and leave the planet, since in this manner she could still split into three separate bodies while away from Cargg. The result was that this Luornu essentially had the same powers as the Triplicate Girl of original continuity, despite a notably different origin. However, the vast number of Luornu duplicates still remaining on Cargg rejected assimilation with the Triplicate Girl Luornus when they tried to return home, leaving Triplicate Girl on her own and completely isolated from her native Carggite bodies.

Duplicate Girl/Damsel (Retroboot): Luornu finally received a major power upgrade in current Legion continuity. She now has the power to split herself into an apparently endless number of identical bodies no matter where she is. It is not yet known if there is any upper limit to her duplication ability. To reflect her newfound power she changed her code name to Duplicate Damsel and then to Duplicate Girl, though she has gone back to wearing a variation of her classic 1970's Duo Damsel costume.

Unarmed Combat

In all of her forms, Luornu has mastered a specialized Carggite form of martial arts called Trijitsu, which was developed by her people to take full advantage of three forms fighting simultaneously. Now that she can create an unlimited number of duplicates as Duplicate Girl, Lournu can fight like a virtual army acting in concert, making her a truly formidable opponent.

Equipment

As a member of the Legion of Super-Heroes, Duplicate Girl possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Physical Characteristics

Height: 5' 6\"

Weight: 130 lbs

Eyes: Brown (left), Violet (right)

Hair: Brown

Other Versions

Five Years Later: Batch SW6

\"Triad
Triad (Batch SW6)

After the Five Year Gap, a younger version of Luornu mysteriously appeared, along with younger versions of all the Legion characters. They were initially called \"Batch SW6\" since they were believed to be Dominator-created clones of the early Legion. Unlike the current Luornu, who was now Duo Damsel, this younger Luornu still had her third body and the codename Triplicate Girl. It was later revealed that Batch SW6 were time-paradox duplicates of the Legion, rather than clones. The younger Luornu and her teammates went on to become the protectors of New Earth, calling themselves the Legionnaires and starring in their own series with that title. To further differentiate herself from the original Luornu, the SW6 Luornu changed her codename to Triad (a name that carried over to Reboot continuity) and changed her costume. She served with the team until Zero Hour, when the elder Luornu and Triad merged together to help right the timestream and create a new future alongside their respective teammates (this new future became the Earth-247 Reboot reality).

Triplicate

\"Triplicate\" was a Bizarro version of the character, with the dubious power to split herself into three different pieces of her body.

Legion of Super-Heroes in the 31st Century

Triplicate Girl appeared in several issues Legion of Super-Heroes in the 31st Century.

Multiple Maid/Myriad

In a DC/Marvel crossover series, Multiple Maid was an amalgamation of Triplicate Girl and the Marvel character Multiple Man, who also has the power of duplication. She was a member of the Legion of Galactic Guardians 2099. She later became known as Myriad.

Castles In the Air

\"Luornu:
Luornu: Castles In the Air

Lournu and her two duplicate bodies appeared as a trio of priestesses in the Elseworlds story Castles in the Air, published in Legionnaires Annual #1. In this reality, the Legion became a futuristic version of Camelot and the Knights of the Round Table. The three Luornus wore medieval-style robes patterned after the Earth-247 Triad costume, but rather than being identical, each of the three robes featured a different design.

Superboy's Legion

\"Triplicate
Triplicate Girl: Superboy's Legion

Triplicate Girl appeared as a member of the Legion in Superboy's Legion, an Elseworlds reality in which Superboy arrived on Earth in the 30th century, rather than the 20th. This reality's Luornu closely resembled the original version of Triplicate Girl and wore a variation of the original purple miniskirt & orange cape costume.

Other Media

Television

Superman: The Animated Series

Triplicate Girl, wearing her Earth-247 Triad costume, was depicted among several Legionnaires in the 30th century in the Superman: The Animated Series episode New Kids in Town. She only had a cameo appearance with no lines.

Legion of Super-Heroes Animated Series

\"Triplicate
Triplicate Girl (LSH Animated Series)

Triplicate Girl appeared as a regular character in the Legion of Super-Heroes animated series. She was voiced by actress Kari Wahlgren. Unlike the comic book version, animated Triplicate Girl had hair that was three different colors -- orange, purple, and white -- and when she triplicated, each separate body had one of the three colors, with a matching costume. During the first season, she became Bouncing Boy's biggest cheerleader and was overjoyed when he was elected leader.

In the second season, her white third body was 'erased' due to a temporal accident on an adventure in the 40th century. Luornu took the loss of her third body hard, even brushing aside concern from Bouncing Boy at times. Luornu changed her code name to Duo Damsel and her appearance changed to reflect her mourning. The white in her hair and costume became black. Later that season the time stream was corrected and the white third body returned, to the delight of the other two.

Popular Recognition

Citing her ability to create an instant \"threesome\" (or more) for any romantic partner, Duplicate Girl (in her Triplicate Girl incarnation) was ranked 33rd in Comic Buyer's Guide's 100 Sexiest Women in Comics. She was the second-sexiest Legionnaire to appear on the list, after Shadow Lass.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114604/","id":114604,"name":"The War Between Supergirl and The Supermen Emergency Squad! / Supergirl's Three Super Girl-Friends!","issue_number":"276"},"gender":2,"id":1262,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7570981-triplicate.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7570981-triplicate.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7570981-triplicate.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7570981-triplicate.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7570981-triplicate.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7570981-triplicate.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7570981-triplicate.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7570981-triplicate.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7570981-triplicate.jpg","image_tags":"All Images"},"name":"Duplicate Girl","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Luornu Durgo","site_detail_url":"https://comicvine.gamespot.com/duplicate-girl/4005-1262/"},{"aliases":"Jan Arrah\nMystery Lad\nElement Man\nAlchemist\nStarfinger\nProgenitor","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1263/","birth":null,"count_of_issue_appearances":556,"date_added":"2008-06-06 11:27:34","date_last_updated":"2021-04-18 16:39:37","deck":"Able to transmute elements by touch, Element Lad is the last survivor of his race and a member of the Legion of Super-Heroes.","description":"

Current Events

Element Lad is presently starring in the ongoing Legion of Superheroes series since the rebooted DC universe in the new 52. The Legion is presently fighting a Daxamite and a group of Controllers on the planet of Panoptes.

Origin

\"Original
Original Element Lad

He was briefly known as Mystery Lad as the Legionnaires tried to guess his superpower. Jan was the last survivor of Trom, as the other Trommites had been massacred by the space pirate Roxxas in revenge for their refusal to transmute valuable elements for him. How a band of pirates was able to systematically massacre an entire planet of people with element-transmutation powers remains still unclear, but could be due to the Trommites spiritual and pacifist ways. Jan survived this genocide because he had been in space at the time.

Creation

Element Lad created by Edmond Hamilton and John Forte

Character Evolution

Original Continuity: New Earth

\"Element
Element Lad (Pre-Crisis)

With the aid of the Legion, Roxxas was brought to justice and Jan joined the Legion, using the code-name Element Lad. Jan has always been one of the most powerful members of the Legion, yet one of the most withdrawn. His mental discipline, which guarded him from accidentally killing people with a stray thought, allowed few people to get close to him. This changed when he met the Science Police liaison to the Legion, Shvaughn Erin. Their relationship grew at a pivotal time in Jan's Legion career. After serving as the team's deputy leader, he was appointed to the post by Lightning Lad, who resigned. He was angered to lose the ensuing election to Dream Girl, (coming in second for the fourth time) but bounced back after that to win two full terms for himself. Jan and Shvaughn made a good team. They worked together to investigate suspicious things surrounding the Legionnaire Shrinking Violet and eventually uncovered the fact that she'd been replace by a Durlan spy.

Reboot: Earth-247

\"Alchemist
Alchemist (Earth-247)

Young Jan’s eagerness to help actually saves his life. Once again, Roxxas the butcher leads a band of his merry men to wipe out Trom, but this time there are a few differences. This version of Roxxas is a rabid xenophobe, who believes that his people are superior to all other races, and are perfectly justified in destroying their lives and cultures to protect their uniqueness. Another important catch: Roxxas comes from Daxam, and he and his posse have the full powers of Mon-El. Using their combined heat vision, the Daxamites burn the whole planet, killing every last Trommite … except for the one who happened to travel with R.J. Brande to help with his Stargate project.

Young Jan is instrumental in the defeat of the Daxamites, empowering the Stargate that teleports them to a red sun system, where they wait powerless to be picked up by the authorities. Joining the team, Jan at first doesn’t choose a code-name: Element Lad, but he still has the same sense of honor and the spiritual bent that we have come to know. When the entire team is lost in the timestream, Jan stands up for himself and his teammates against the rude nature of Brainiac 5.

Threeboot: Earth-Prime

\"Element
Element Lad (Earth-Prime)

In Mark Waid and Barry Kitson's reboot of the 31st century, Element Lad was once again a core member of the Legion of Super-Heroes. His power included transmutation of elements through touch, although the transmuted objects would revert back to their original chemical compositions after a minute. Jan's reasons for joining the Legion were that he saw them as a nexus of great change, something all Trommites would have appreciated. Chameleon mentioned that Element Lad was the sole survivor of his planet, Trom, although that was never elaborated on.

Some of the Legionnaires, Element Lad included, aided Brainiac 5 in his resurrection attempt on Dream Girl, although Jan was personally against the idea. The attempt seemed to have failed when Dream Girl's body disappeared, and Element Lad unsuccessfully tried to convince Brainiac to let her go. This version of Jan Arrah has been shown to be greatly fascinated of change, and also displayed a strong dislike for physical violence.

Retroboot: New Earth

\"Element
Element Lad (New Earth)

The events of Infinite Crisis brought together the Legions of all three continuities. Afterward, the current Legion of Super-Heroes returned to being a close approximation of the original Pre-Crisis team, once again set on New Earth. Element Lad's history was now unaltered from before the Five Years Later. It's revealed that New Earth's Element Lad is undercover as Smallville high's science teacher. The purpose of this is unknown but he teaches Simon Valentine and Connor Kent. He is joined in the 21st century by Tellus.

Major Story Arcs

Original Continuity: New Earth

Five Years Later

\"Jon
Jon Arrah (Five Years Later)

Five years after the Magic Wars, Earth had fallen under the covert control of the Dominators, and had withdrawn from the United Planets. It is revealed that Shvaughn had been born as a male named Sean, and had taken a futuristic sex-change drug called ProFem in order to secure Element Lad's love. With ProFem no longer available in the tough economical times, Shvaughn reverts back to Sean; Jan is unfazed, saying \"Look, it doesn't matter. Don't you understand ... ? Anything we ever shared physically ... it was in spite of the ProFem, not because of it ... !\" Whether Jan is gay or bisexual in the New 52 reality is yet to be revealed.

Reboot: Earth-247

Jan Transmuted Himself

Element Lad continued to explore the limits of his abilities, even successfully transmuting himself. He discovered this somewhat by accident with the sorcerer Mordru turned him to crystal. Though his awareness was expanded, he found it more difficult to change other objects unless he first changed himself to a similar substance. The transformation made Jan's mind somewhat unstable for a while.

Legion Lost

Following the Blight's attack on Earth, Element Lad was one of ten Legionnaires who disappeared into a rift in space. The rift transported them into a void. He was the first to awake and transformed himself into Tromium crystal in order to survive. He gathered up the Legionnaires and sheathed them in Tromium as well, which had the effect of time-stasis.

Enter Progenitor

Recording his thoughts in memory crystals, he calculated a way to move the Outpost back to ordinary space. He was successful, but the Legion re-entered space in another galaxy, far from home. Jan himself entered the same galaxy, but billions of years in its past, while the universe was in its infancy. The Tromium made him immortal, and he drifted for billions of years, completely alone, watching stars and planets come into being. When planets began to bear life, he used his powers to accelerate their evolution. His tinkering gave rise to many races, including the Progeny and the Kwai. He eventually became known as the Progenitor and created for himself a home world called the Rosette. By this point, there was very little of the boy who was Jan Arrah. The Progenitor acted like a god, ordering the Progeny to \"delete\" any life forms which he considered \"variants.\" Eventually his timeline caught up to that of his fellow Legionnaires. They had been fighting the Progeny and finally met the aliens' master. Jan barely remembered them.

The Death of Progenitor

When he learned that they intended to return to their home galaxy, the Progenitor hatched a plan to follow them. He intended to remake that galaxy, too. He told the Legionnaires that he also intended to destroy all life in this Second Galaxy before he left. Of course, his former teammates could not allow either of these things. When they opposed the Progenitor, he killed Monstress. To defeat him, the Legion managed to release the Omniphagos, a being that the Progenitor intended to use to erase all life. It took all the Progenitor's powers to subdue the creature. Meantime, the Legionnaires made it through a space warp home. They lost another one of their number, Live Wire, who sacrificed himself to overload the Omniphagos with electricity.

Live Wire is Element Lad

Back home, Element Lad was memorialized on Trom with the memory crystals that remained from the Second Galaxy. In time, something miraculous happened—Live Wire emerged from the crystals, his mind imprinted on the former crystalline body of Element Lad! With the help of the Brainiac 5 of Earth-0, Live Wire eventually recovered enough to change his own form back to normal.

Threeboot: Earth-Prime

The Death of Element Lad

Like every active Legionnaire of his world and Earth-247, Element Lad was transported to the 31st century New Earth, to help the present Legion combat Superboy-Prime, and the Legion of Super-Villains. When Sun Boy was murdered by Superboy-Prime on New Earth, Element Lad decided to put his qualms about violence aside to avenge his friend. He managed, notably enough, to create Kryptonite that Superboy-Prime showed to be vulnerable against (he had earlier been immune to the radioactive substance, due to Kryptonians only being affected by Kryptonite from their respective universes). In his rampage, Prime responded by launching one of the Kryptonite rocks through Element Lad's torso, killing him. A while after Prime was defeated, Brainiac 5 of New Earth explained that the reason Prime was vulnerable to Jan's Kryptonite, was that Element Lad and his Legion were from the reality of Earth-Prime themselves.

During the events of Legion of Three Worlds, the Element Lad native to the New Earth universe (supposedly the same as the original, pre-Crisis version of him) had been reported as missing. The Legion had not heard from him since the start of Earth-Man's xenophobic campaign.

Black Lantern Element Lad

Element Lad was one of many people who Superboy-Prime had killed, he travel from the future to Earth-Prime to kill Prime.

Powers & Abilities

Transmute

Element Lad have the ability to transmute substances on the atomic level. This a native ability to their home world, Trom. The Element Lad of Earth-Prime's transformations only lasted 60 seconds, and he had to be in contact with the material.

Divine Powers

The Element Lad of Earth-247 he had also learned how to change his own chemical make-up. As the Progenitor, he lived over billions of years, in the Second Galaxy. In this time, he learned to use his abilities to actually create (or destroy) life, making him near-omnipotent.

Equipment

As a member of the Legion of Super-Heroes, Element Lad possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.The utility belt houses rations and a transuit that allows Element Lad to travel in space.

Other Versions

Five Years Later: Batch SW6

\"Alchemist
Alchemist (Batch SW6)

At the same time, the Dominators' highly classified \"Batch SW6\" escapes captivity. Originally, Batch SW6 appears to be a group of teenage Legionnaire clones, created from samples apparently taken just prior to Ferro Lad's death at the hands of the Sun-Eater. Later, they are revealed to be time-paradox duplicates. After Earth is destroyed in a disaster reminiscent of the destruction of Krypton over a millennium earlier, a few dozen surviving cities and their inhabitants reconstitute their world as New Earth. The SW6 Legionnaires remain, and their version of Element Lad assumes the code-name Alchemist.

Elseworlds: Superboy's Legion

Element Lad appeared as a member of the Legion in Superboy's Legion, an Elseworlds story.

Other Media

Television

Superman & The Legion of Super-Heroes Animated Series

Element Lad made cameo appearances in the Legion of Super Heroes animated series.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114661/","id":114661,"name":"The Confession of Superboy!","issue_number":"307"},"gender":1,"id":1263,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68065/7853800-elementlad10.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68065/7853800-elementlad10.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68065/7853800-elementlad10.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68065/7853800-elementlad10.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68065/7853800-elementlad10.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68065/7853800-elementlad10.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68065/7853800-elementlad10.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68065/7853800-elementlad10.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68065/7853800-elementlad10.jpg","image_tags":"All Images"},"name":"Element Lad","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Jan Arrah","site_detail_url":"https://comicvine.gamespot.com/element-lad/4005-1263/"},{"aliases":"Cos\nLodestone\nPolestar\nRokk Krinn\nRokk Risk Krinn\nTime Trapper\nCosmic Man","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1264/","birth":null,"count_of_issue_appearances":1112,"date_added":"2008-06-06 11:27:37","date_last_updated":"2021-08-08 06:31:46","deck":"Cosmic Boy is a native of Braal with the ability to control electromagnetic fields. He is a founding member of the Legion of Super-Heroes.","description":"

Current Events

Cosmic Boy is presently starring in the ongoing Legion of Superheroes series since the rebooted DC universe in the new 52. The Legion is presently fighting a Daxamite and a group of Controllers on the planet of Panoptes.

Origin

\"Rokk
Rokk Krinn

His parents struggling for work on the impoverished, metallic world of Braal, Rokk Krinn left at the age of 15 for the mother world of Earth to find work to assist his family. Following his flight, Krinn helped save billionaire R.J. Brande from an assassination attempt along with Garth Ranzz and Imra Ardeen. Brande was impressed by the youth and offered them work founding a team of young super-heroes. Rokk accepted and became Cosmic Boy, the team's first leader.

Creation

Cosmic Boy was created by Otto Binder and Al Plastino.

Character Evolution

Silver Age

\"Cosmic
Cosmic Boy (Silver Age)

During his tenure as leader the Legion's first year, he took the team from a trio of nobodies to an 18-member team of intergalactic heroes. Saturn Girl was elected his replacement. He served with the Legion for years, dedicated and being a figurehead as a founding member and the first leader even when just another active member. During his early years with the team, a romance blossomed between he and Legion of Substitute Heroes member Night Girl and Cosmic Boy made enough money to move his family to Earth.

Years later, a firebomb went off in the neighborhood where Rokk's parents lived. His whole family was hospitalized and his mother later died. This led Cosmic Boy to almost violate the Legion code of killing when he found the bombers, but he spared them. This event also encouraged his younger brother, Pol, to join the Legion Academy as Magnetic Kid. When he agreed with his fellow founders that they were getting old and it was time they resigned so the Legion got new blood, Cosmic Boy was pushing for his brother to be elected to the team in his place. Magnetic Kid became his replacement and Cosmic Boy enjoyed life as a reservist with Night Girl, traveling to the 20th century for a vacation. He would go on to found a second Legion of Substitute-Heroes with Night Girl and the Legion Academy instructors and mourned his brother when he sacrificed himself during the Magic Wars.

Five Years Later

\"Time
Time Trapper/Polestar (Five Years Later)

During the Five Years Later after the Magic Wars, Cosmic Boy married Night Girl. His homeworld of Braal went to war with Imsk and he enlisted, alongside several childhood friends and former Legionnaires. At the battle of Venado Bay, Cosmic Boy was caught in an explosion that cost him his magnetic powers and left him disoriented. He stumbled into an Imsk camp thinking it was a Braalian one and would have been killed if not for Shrinking Violet stopping her troops. The disoriented Rokk, realizing now where he was, lashed out at Vi and left her scarred over one eye. He was never aware that it was Vi he had done that too until years later. Once the war was over, Cosmic Boy returned to the battered world of Braal. Lydda became pregnant and he found a chance to take his young family off-world when Reep Daggle implored him to help him re-found the Legion. The Krinns traveled to the Winath Plantation to make this happen.

Five Years Later / Batch SW6

\"Cosmic
Cosmic Boy (Batch SW6)

A younger version of Rokk was found with several other young Legionnaires, called Batch SW6. Originally believing themselves just to be clones. It was later revealed that Val was time-paradox duplicates of his older counterpart self. The younger Cosmic Boy had the same magnetic powers and superb leadership abilities. He was named to lead the New Earth team of Legionnaires just as he had the original team. He was badly injured by a stray bolt from Live Wire, and was still recuperating, leaving vice-chairperson Computo in charge. The SW6 Cosmic Boy was one of few Legionnaires to notice when the \"crisis in time\" took hold. He, Saturn Girl and Live Wire traveled into the past to investigate their origins and wound up fighting alongside the 20th century's heroes during that \"Zero Hour.\" They returned to the 30th century believing they had stopped the menace, but soon learned that they must reemerge with their older counterparts in order to repair the time stream. In true heroic fashion, Rokk joined hands with his older counterpart, and his best friends (both versions) and bid their reality farewell.

Reboot / Earth-247

\"Cosmic
Cosmic Boy (Earth-247)

Rokk Krinn's magnetic skills were discovered early and he became Braal's greatest and youngest professional Magno Ball player. This enabled him to support his poor family. Rokk's fans gave him the nickname \"Cosmic Boy.\" While on a promotional tour, Rokk, along with Imra Ardeen and Garth Ranzz , prevented the assassination of interplanetary entrepreneur R.J. Brande. Impressed by the teens' bravery, R.J. convinced them to form the Legion of Super-Heroes. Rokk used Cosmic Boy as his codename and was unofficially the team's first leader. The government eventually tried to replace him with Leviathan, but Leviathan saw Cos was the better man for the job and stepped down. He served as team leader the Legion's first year and was instrumental in revealing President Chu to be a traitor to the United Planets. He called for a leadership election soon after and Shrinking Violet was his replacement.

Threeboot / Earth-Prime

\"Cosmic
Cosmic Boy (Earth-Prime)

Cosmic Boy was once again a founder of the Legion of Super-Heroes though this time the movement was more about youth rights and rebellion. His past was unknown, though his family still existed on Braal and seemed complacent with Rokk's involvement with the Legion. As the team's first leader, Cosmic Boy often had to appease the United Planets while also spreading their movement to gather more Legionnaire fans and supporters. Several Legionnaires became loyal to Cos' hardwork while others began to be persuaded by Brainiac 5, who thought he could do a better job. Eventually, the two sides came to blows until the leaders came to an agreement. Cos' homeworld of Braal was about to undergo quarantine and ordered all natives to return within 24 hours. Cos begrudgingly left the team, but ultimately returned at the last moment to save the day. Brainiac 5 relented leadership.

Retroboot / New Earth

\"Cosmic
Cosmic Boy (New Earth)

Infinite Crisis restored the original Legion continuity, from before the Five Years Later. Cosmic Boy had rejoined the team following the Magic Wars and during the crisis of Earth-Man's Justice League taking over Earth became the leader again. He was captured at the Batcave with the other founders but ultimately released. At some point, Cos ended his relationship with Night Girl so that he could concentrate solely on the Legion and take care of the team so others, like the married Ranzzes, wouldn't have to worry. Cos, as leader, continued to deal with politics following Earth's bout of xenophobia and the Titanian refugees after Titan was destroyed. The pressure reminded Cos how much he disliked the politics of being Legion leader and he posted a call for a new leader election.

Post-Flashpoint / Earth 0

\"Cosmic
Cosmic Man (Earth 0)

Following the conclusion of Flashpoint, the various timelines were united and rebooted once again. The Legion's timeline changed slightly where they still reached out to a young Clark Kent long before he became Superman, but they Legion grew up along with Clark and have changed their names to reflect their age. Imra changed her name to Saturn Woman and her along with Lighting Lad (Now Lightning Man) and Saturn Girl (Now Saturn Woman) reunited with an adult Clark Kent in an effort to stop the Anti-Superman army from destroying the original rocket that took Clark to Earth. They succeeded in saving the rocket and keeping he timeline intact.

Major Story Arcs

Silver Age:

The Great Darkness Saga

Cosmic Boy leads a squad of Legionnaires consisting of Wildfire, Superboy, Phantom Girl and the newest Invisible Kid. Once they arrive their attacked by their shadowy foes who continues talking about the coming darkness while casually battling the assembled squad before retreating with the wand. Cosmic Boy then gathers his squad and races to London to prevent the ancient sword Excalibur from being stolen but Cosmic Boy alongside Phantom Girl and Superboy are sent flying as Invisible Kid and Wildfire fail to prevent the newest shadow minion's escape with the sword. The squad then scrambles to prevent the theft of an ancient orb, but they fail but manage to capture one of \"The Masters\" shadow servants. Following several missions by three teams of Legionnaires Cosmic Boy calls to the worried Saturn Girl, but is attacked mid-call causing Saturn Girl to rush to his aid to find the captured servant to be the attacker.After a short battle however the two are defeated and only saved by Lightning Lad's arrival knocking out the monster.

Cosmic Boy alongside Saturn Girl and Lightning Lad are the Legionnaires to discover the identities of three of the shadow servants being Lydea Mallor, Superman and a Guardian of the Universe. Learning this prompts Cosmic Boy to send out a general alert to all Legionnaires. Cosmic Boy then takes part in the battle against the Daxamites under the control of Darkseid, being part of the team to distract him as Element Lad added lead into the atmosphere to activate their vulnerability. He later joins his teammates in an effort to capture the weakened Darkseid, but they fail as he flees. However following Darkseid's defeat he suffers another loss as a terrorist detonates a bomb in the city doing much damage, including to Cosmic Boy's home forcing his entire family to be hospitalized and leading to the death of his mother.

Legionnaires 3

Cosmic Boy was visiting the now newly retired Lightning Lad, Saturn Girl and his god son Graym. It just happened to be the weekend in which the Legion's greatest foe attacked kidnapping Graym and delivering the challenge that only the three Legionnaires can battle him this time or he the child dies. Cosmic Boy then prepares to aid in the rescue of his godson visiting Metropolis University to request a leave of absence from coaching the Mangaball team. The three then head to Legion ally, Rond Vidar explaining the situation in confidence to gain a time machine but refuses prompting Saturn Girl to incapacitate him. Cosmic Boy then uses a distorter to assume the appearance of Rond leading them to a time cube as an officer attempts to stop them forcing Cosmic Boy to use his powers on him as he alongside his two friends activate the time cube.

The three then arrive at the the end of time, with the Time Trapper personally allowing a gap in the time barrier so the three can enter. The three then begin to battle the Trapper's minions in their efforts to kill the Legionnaires,but are captured by the surprise his minions are human bombs which releases nerve gas knocking them out and bringing them to his stronghold.Lightning Lad is then separated as Saturn Girl and Cosmic Boy escape battling Trapper's minions through out the citadel and gaining his aide Otok as a guide. He leads the two to Graym as they realize that he is well taken care of that Lightning Lad has been the true target. However the hour glass runs out before the Time Trapper can break Lightning Lad's sanity, as a result he sends all of them home to a point just shortly after they left.

Five Years Later:

The New Time Trapper

Cosmic Boy was the easy choice when the team reformed to lead again. Even though he was powerless, the other Legionnaires looked to him. Cosmic Boy and the Legion helped free Earth from the Dominators and saved Earth's populace when the planet exploded. A younger counterpart of Cosmic Boy, as well as the Legion from their early years, were discovered and went on to become the Legionnaires of New Earth. Brainiac 5 eventually created gauntlets for Cosmic Boy that would replicate his powers; however they slowly modified his personality and drove him mad. Shrinking Violet stepped in as leader. Going by Polestar now, he left the team to single-handedly rebuild Earth. He was subdued, but then captured by Glorith and Mordru during the Legion's last hours before Zero Hour. The whole Legion, past and present, rallied to save Rokk. and he managed to escape, but was lost in a library where time past differently. For hundreds of years, he lived in this library and studied the art of time manipulation. He ended up becoming the Legion's oldest foe, the Time Trapper. The Time Trapper freed his past self just as reality was coming to an end. Cosmic Boy merged with his SW6 counterpart, alongside the other Legion founders, as the last beings in the universe in order to reset time.

Reboot / Earth-247:

Trapped In The 20th Century

While Legionnaires like XS harbored a crush on Cosmic Boy, his eyes were set on Saturn Girl despite her fondness for Live Wire. She was his heart's desire and after an explosion left he and Imra stranded in the 20th century, the two began a romance much to the ire of Garth's sister, Spark. he enjoyed spending time with the heroes of legend he had grown up with during the team's exile. Cosmic Boy was left mentally comatose after Imra's mind was attacked by Dr. Psycho while he was linked, though he was ultimately revived by Saturn Girl's heightened powers. Unfortunately, she had just been subconsciously manipulating his body. Once she realized this, he was revived properly and in shame Imra ended their relationship and admitted she still had feelings for Garth. He hid his hurt and resolved to reunite Garth and Imra, which he did when their team returned to the 30th century.

The New Wanderers

Following the Blight invasion of Earth and half the team being thought for dead, the Legion was disbanded. Cosmic Boy secretly served R.J. Brande as a mercenary Legionnaire while Brande prepared Legion World and the reformation of a new Legion. When the Legionnaires thought lost returned and the team reformed, Cos became defacto leader. He helped end Ra's al Ghul's reign as secret president of the United Planets before calling for a new leader. Impressed by Kid Quantum II during the Ra's battle, he nominated her as his replacement and the Legion voted her in. After the incident, the two began a flirtation that became a romance. When Superboy was a member of the team, Cos rode him hard because he felt Kon wasn't living up to the legacy of Superman. Eventually, Earth-247 was destroyed and Cos and his Legionnaires were spared because they were lost in the timestream. After assisting two other Legions in defeating Superboy-Prime, he and Kid Quantum led their Legion into the multiverse to become the new Wanderers.

Threeboot / Earth-Prime:

Cosmic Boy Leaves The Team

When Supergirl joined the team, he was instrumental in helping her realize she wasn't dreaming and the two had a brief romance. Cosmic Boy was captured and tortured by Dominators, but it was all part of a plan to trick them into going to a wrong location. Cosmic Boy's last and most controversial move as leader was ordering the dying Mon-El to take a bomb to the heart of the Dominator planet and destroy it. In actuality, the bomb was a phantom zone projector that locked the Dominators away from Earth. Cos kept this a secret from even his close friends to prevent anyone freeing them. Sending a noble hero to his \"death\" as well as exterminating an entire race was poorly received by the Legionnaires and the public alike. A public leader election for the Legion was called and Supergirl replaced him. A trio of heroes from the Knights Tempus of the 41st century then appeared to Cosmic Boy. They told him that he was regarded in history as one of the greatest heroes ever and they invited him to join their team. Cos accepted and left the Legion. He never returned, though his war crimes were eventually pinned on Lightning Lord.

Powers and Abilities

Magnetism

\"Magnetic
Magnetic Powers

Cosmic Boy's superpower is super-magnetism. He can manipulate, repel or attract metal objects of varying sizes. Naturally, the more metal is in an object the easier it is for him to affect magnetically. Cosmic Boy has been shown to pull large iron meteors and satellites down from space with minimal effort. He can use his magnetic power on rocks that contain iron ore to pull or use them as projectiles. He can also magnetize metal objects so that they become magnets themselves and make them stick to other metal objects. His power cannot affect non-magnetic metals, such as aluminum and gold, or organic substances like wood or flesh. His control is such that he can manipulate electronic records or the iron in blood. He has been known to use a uniform with ferrous fibers so he can fly with his own powers, but usually relies on a Legion flight ring.

Equipment

Legion Flight Ring

\"Fight
Fight Ring

As a member of the Legion of Super-Heroes, Cosmic Boy possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Other Versions

Other Media

Television

Superman: The Animated Series

\"Cosmic
Cosmic Boy (Superman The Animated Series

Cosmic Boy was one of three Legionnaires who traveled to the 20th century to stop Brainiac from altering time in the episode \"New Kids in Town.\" He appeared to be the leader yet again and was voiced by Chad Lowe.

Justice League Unlimited

Following the same continuity as the Superman cartoon, Cos was still a Legionnaire but had been possessed by the Emerald Eye alongside much of his team in the episode \"Far From Home.\" He was later freed and welcomed Supergirl into their ranks. He had no speaking lines.

Superman & The Legion of Super-Heroes

\"Cosmic
Cosmic Boy (Superman & The Legion of Super-Heroes)

Cosmic Boy was a frequent supporting character in the two seasons of the Legion cartoon. Only name-dropped in the first episode, he made a cameo in the second before making regular speaking appearances at the end of the first season, starting with \"Chain of Command.\" This Cosmic Boy was a Legion founder and the first leader of the team as well. He was overprotective of Saturn Girl, which caused he and Lightning Lad to clash. When a re-election was called, Cos expected to win again but was a good sport when the title randomly went to Bouncing Boy. He was one of many Legionnaires who assembled the Fatal Five and stood against the Sun-Eater in \"Sundown.\"

During the second season, two years had passed and Cos is once again leader. He was injured in battle against the Legion of Super-Villains in \"Man From the Edge of Tomorrow\" but quickly recovered. He led a hunt against Timber Wolf in \"Cry Wolf\" when Wolf was suspected of violating Legion code. He protested Karate Kid's membership and fought Grimbor in \"Karate Kid\" and joined with his fellow founders in saving R.J. Brande in \"In the Beginning.\" He rallied the Legionnaires and made a stand against Khund cyborgs and Brainiac with the team in \"Dark Victory.\" Throughout the two seasons of the show, he was voiced by Wil Wheaton.

Smallville

\"Cosmic
Cosmic Boy (Smallville)

Cosmic Boy appeared in the live-action Smallville television show, portrayed by Ryan Kennedy. Alongside the other founding Legionnaires, they traveled to 21st century Smallville to stop Brainiac in the episode \"Legion.\" The Legionnaires had planned to kill Brainiac's host, Chloe, but Clark taught them the value of never going down that road. When they are able to capture Brainiac without killing, Cosmic Boy resolved that the Legion would take up a code against killing. Cosmic Boy later returned to Smallville in the episode \"Doomsday\" to warn Clark against confronting Doomsday, as history showed Clark will be killed by him. He gave Clark a special flight ring and encouraged him to send Doomsday to the 31st century, where the Legion was in full force and waiting for him.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114594/","id":114594,"name":"The Legion of Super-Heroes","issue_number":"247"},"gender":1,"id":1264,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182637-cosmic%20boy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182637-cosmic%20boy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182637-cosmic%20boy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182637-cosmic%20boy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182637-cosmic%20boy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182637-cosmic%20boy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182637-cosmic%20boy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182637-cosmic%20boy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182637-cosmic%20boy.jpg","image_tags":"All Images"},"name":"Cosmic Boy","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Rokk Krinn","site_detail_url":"https://comicvine.gamespot.com/cosmic-boy/4005-1264/"},{"aliases":"Lalo Muldron\nMicro","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1265/","birth":null,"count_of_issue_appearances":26,"date_added":"2008-06-06 11:27:16","date_last_updated":"2016-11-22 09:55:29","deck":"Lalo Muldron was a native of Imsk and a member of the Legion of Super-Villains with the ability to shrink to microscopic size.","description":"

Creation

Micro Lad was created by writer Jim Shooter and penciler Mike Grell. Her first apperance was in the pages of Superboy # 212; Last Fight for A Legionnaire.

History

Lalo Muldroon was a native of the planet Imsk, with the ability to shrink himself to microscopic size.

Micro Lad foolishly tried to take Shrinking Violet's place on the Legion of Super-Heroes and was rejected. Severely angered, he joined the Legion of Super-Rejects only to be defeated by the LOSH and sent back to Imsk.

On Imsk, Lalo joined with an Imskian liberation movement who kidnapped Shrinking Violet and replaced her with a Durlan named Yera so that they could extract information from Violet's brain. Once Yera was discovered by the Legion, Micro Lad was once again defeated and this time imprisoned in a sens-tank.

Micro Lad somehow escaped though, and joined the Legion of Super-Villains on many of their failed missions before being killed by his fellow Legionnaire Akka.

Reboot: Earth-247

It's Legion Membership Drive Time! Some Legionnaires go to Imsk to recruit a new member from their world. Three Imskians, including Shrinking Violet, compete for the Legion membership. In the course of the competition, another Imskian competitor, Ion is mysteriously killed. In the course of the Legion's investigation, they and Violet determine that the third competitor, Micro, is the killer.

Violet and the Legionnaires expose Micro and his crime to the other Imskians, at which Micro attempts to escape by shrinking out of sight. But while this tactic works well enough against Phantom Girl and Spark, it's much less effective when you're on an entire planet full of beings who can do the exactsame thing, especially when one of them is the aforementioned Violet.

Powers and Abilities

Size Manipulation

As with all natives of the planet of Imsk, Micro Lad has the ability to shrink to drastically smaller proportions. He can easily shrink all the way down to microscopic size, and can even achieve sub-atomic size when necessary. He employs his shrinking ability in a variety of effective ways, though the most common is that of stealth as it renders him very difficult to detect by enemies. For this reason she became a founding member of the Legion Espionage Squad.

Attributes

Marital Status: single

Known Relatives: none

Group affiliation: Heroes of Lallor

Base Of Operations: 30th century

Height: 6‘2” Weight: 200 lbs Age: In his twenties

Eyes: Blue Hair: brown

Appearance

Micro Lad is a petite, fit, and muscular athletic man with red curly hair, and has green eyes. He wears a green costume that leaves his face and hands bare. His boots, wrists, torso, and trunk are black with yellow.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-123853/","id":123853,"name":"Last Fight For A Legionnaire","issue_number":"212"},"gender":1,"id":1265,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68065/2019808-microlad03.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68065/2019808-microlad03.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68065/2019808-microlad03.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68065/2019808-microlad03.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68065/2019808-microlad03.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68065/2019808-microlad03.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68065/2019808-microlad03.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68065/2019808-microlad03.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68065/2019808-microlad03.jpg","image_tags":"All Images"},"name":"Micro Lad","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Lalo Muldron","site_detail_url":"https://comicvine.gamespot.com/micro-lad/4005-1265/"},{"aliases":"Jo Nah\nGary Crane\nUltra Man\nEmerald Dragon\nUniverse Boy","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1267/","birth":null,"count_of_issue_appearances":776,"date_added":"2008-06-06 11:27:36","date_last_updated":"2021-07-26 08:25:22","deck":"Ultra Boy is a member and former leader of The Legion Of Super-Heroes. Having most of Superboy's powers, but using them one at a time only. His Penetra Vision can see thru lead. (unlike X-Ray vision.) His invulnerability Has shown to be more adaptable than either that of Superboy or Mon-El.","description":"

Current Events

Ultra Boy is presently starring in the ongoing Legion of Superheroes series since the rebooted DC universe in the new 52. The Legion is presently fighting a Daxamite and a group of Controllers on the planet of Panoptes.

Origin

Jo Nah (his real name was derived from the biblical figure Jonah by his creators) was a young man born on the seedy world of Rimbor. He used to run with a gang called the Emerald Dragons. Jo was traveling in his space-speedster when he was swallowed by an energy-beast. Fortunately, a Galactic Patrol Cruiser saw this and rescued him by slicing the creature open with a ray. Jo escaped, but his body was charged by the radiation of the monster. He discovered that he could see through anything, even lead. Later, he found that the energy could be used for many different powers, but he could only use it for one super-power at a time. He decided to use these abilities to help law enforcement, earning him the name UItra Boy and a recommendation to join the Legion of Super-Heroes. As part of his initiation, Jo traveled with Marla Latham to the 20th century to learn Superboy's secret identity. Upon success, Ultra Boy was inducted into the team.

Creation

Ultra Boy was created by Jerry Siegel and Curt Swan.

Character Evolution

Silver Age

\"Ultra
Ultra Boy (Silver Age)

As a Legionnaire, Ultra Boy proved to be one of their cleverest members. He purposefully planted a criminal record for himself to be expelled by the Legion, so that he could gain the trust of space thieves and then turn around and bring them into custody. Legionnaire Phantom Girl was his biggest defender. The two began a long-term romance shortly thereafter. Ultra Boy often worked alongside Mon-El and Superboy as the Legion's \"big three\" for their power levels and Jo was once possessed by the spirit of Nero because of it. Years later, Ultra Boy served two terms as Legion leader. Following his stint as leader, Ultra Boy was on the run a second time when he was framed in the murder of his ex-girlfriend, An Ryd. Jo managed to find the real killer, Pulsar Stargrave, but was defeated and believed dead at the hands of the villain. In actuality, Jo had been blown through time. He made his way to the 20th century and attempted to contact Superboy, but the merged the heroes' minds together. They became Reflecto and returned to the 30th century, where the Legion learned of this revelation and returned to the past to save Ultra Boy and Superboy. He campaigned for a third term as Legion leader but became the deputy to Dream Girl. Their leadership styles were incompatible and he resigned from the position.

Five Years Later

\"Jo
Jo Nah (Five Years Later)

Following the Magic Wars, Ultra Boy proposed to Phantom Girl. On the eve of their wedding, her shuttle was destroyed by Glorith and Phantom Girl was believed dead. In mourning, Jo quit the Legion and returned to his homeworld of Rimbor where he founded a smuggling ring. This got the attention of the Dominators, who sent assassins to kill him. They destroyed his home and ring, but Ultra Boy survived and defeated them. He rejoined his former comrades and helped form a new Legion of Super-Heroes on Winath. During a battle with Roxxas, Ultra Boy was struck with a bomb that hurled him once more through time. Stranded centuries in the past, Jo used his wits to build a shuttle that took him to Earth, specifically ancient Egypt. There he was seduced by a Lord of Chaos and ultimately saved and returned home by the Lord of Order Nabu. Jo rejoined the Legion, helping liberate Earth from the Dominators and meeting a younger version of himself among the time-displaced Batch SW6 Legionnaires. The sight of seeing a young Ultra Boy and Phantom Girl together upset the elder Jo. The younger version kept the codename Ultra Boy and helped form a new Legion on New Earth upon Earth's destruction.

Five Years Later / Batch SW6

\"Ultra
Ultra Boy (Bath SW6)

When Earth fell under the covert control of the Dominators, and withdrew from the United Planets. A few years later, the members of the Dominators' highly classified \"Batch SW6\" escaped captivity. Originally, Batch SW6 appeared to be a group of teenage Legionnaire clones, created from samples apparently taken just prior to Ferro Lad's death at the hands of the Sun-Eater. Later, they were revealed to be time-paradox duplicates, every bit as legitimate as their older counterparts. After Earth was destroyed in a disaster reminiscent of the destruction of Krypton over a millennium earlier, few dozen surviving cities and their inhabitants reconstituted their world as New Earth.

Reboot / Earth-247

\"Ultra
Ultra Boy (Earth-247)

On Earth-247, Jo Nah was once again from seedy Rimbor and a member of the Emerald Dragon street gang. When he flew his space cruiser into a space whale, he was trapped for weeks. The only way for Jo to survive was to eat the meat of the beast, which gave Jo super-powers and allowed him to escape. Once free, Jo decided to try to become a hero. He was enlisted by an Earthman by the name of Leland McCauley to become a member of his Workforce, rivals to the Legion. Despite this status, Ultra Boy became fascinated with Legion member Apparition. After recruiting Live Wire for the Workforce, Jo and Tinya began to date to the disdain of her mother, Winema. During a battle against the White Triangle, Apparition was incinerated in Ultra Boy's invulnerable arms. In mourning, Jo quit the Workforce and aided the Legion covertly before becoming a Legionnaire himself. Days into his Legion membership, Ultra Boy became ill and began having hallucinations. He discovered that Apparition's spirit had survived, tethered to Ultra Boy. She was only visible to Jo and Winema Wazzo, causing other Legionnaires to think Ultra Boy strange and speaking to himself.

Threeboot / Earth-Prime

\"Ultra
Ultra Boy (Earth-Prime)

On Earth-Prime, Ultra Boy was once more a member of the Legion of Super-Heroes which was now a youth rights movement. While his past was unknown, Ultra Boy's mantras were well spoken. He liked to have fun, be a super-hero, and didn't see the harm in things unless they would pose a danger to others. He formerly had a relationship with Light Lass and tried to sleep with Triplicate Girl until he found out he was being strung along for information. He dated Shadow Lass for a time before they decided to part ways and was being trained by Karate Kid to help him focus his many super-powers. This iteration of Ultra Boy and Phantom Girl were never showed to be romantically linked and hardly ever interacted.

Retroboot / New Earth

\"Ultra
Ultra Boy (New Earth)

Infinite Crisis restored the original Legion to continuity, from before the Five Year Gap event. Due to this, Phantom Girl is alive and she and Ultra Boy are still long-standing members of the Legion of Super-Heroes. Both were captured early on during Earth-Man's takeover of Earth but were eventually freed.

Major Story Arcs

Five Years Later

Jo as Emerald Dragon

\"Emerald
Emerald Dragon

The elder Jo Nah assisted the Khunds in fighting Mordru and learned from Glorith that Phantom Girl may not have been killed but sent through time before leaving again for Rimbor. While on the run, the Legion also travel to Rimbor, where they are captured by Jo in his new guise as the Emerald Dragon and freed by him to help defeat several gangs. A reunion with Mon-el has the Daxamite recall that he worked in the 20th century with a hero named Phase who reminded him of Phantom Girl. Jo took a time bubble to the past to save his girlfriend, only to discover instead that Phase was actually Tinya's cousin, Ella. Defeated, Jo returned to the future just in time for Zero Hour to wipe his reality away. Before it did, Jo merged with his younger counterpart alongside other Legionnaires to reset their timeline.

Reboot / Earth-247

Ultra Boy kissed Saturn Girl

When Ultra Boy and several Legionnaires were stranded in the 20th century, a team up with Deadman left Apparition visible for all to see. Though her intangibility put a strain on their relationship at times, Ultra Boy still loved her and to cement this fact the two were married in a secret ceremony in the past. After merging with Phase, Apparition was restored to physicality and the Ultra lovebirds returned to the 30th century. They were separated twice thereafter, once when Apparition was off-world and Ultra Boy was possessed during the Blight Invasion and again when Ultra Boy is lost in another galaxy with a team of Legionnaires. Ultra Boy initially believed Apparition was lost with him, but he and the Legion soon learned that Tinya was merely a telepathic illusion made by Saturn Girl to keep the powerful Ultra Boy in-line. During a confrontation on the matter, the despondent Ultra Boy kissed Saturn Girl as he felt a familiar connection after weeks of her roleplaying Jo's wife.

Ultra Boy's meets his baby son Cub

Upon his return to his own galaxy after a year lost in space, Ultra Boy assisted the Legionnaires in reforming the team and taking down the corrupt government of Ra's Al Ghul. He was reunited weeks later with Apparition, finding that she now had an infant - Ultra Boy's son, named Cub. During their time apart, Tinya had been watched over by Timber Wolf and Wolf's closeness to Jo's family left the two at odds with each other. Jo's son was also rapidly aging, though this matter was never resolved before Infinite Crisis wiped Earth-247 away. While his son didn't survive, the Legion did as they were lost in the timestream. Ultra Boy joined his teammates on pushing into the Multiverse to become the new Wanderers.

Threeboot / Earth-Prime

Jo makes a connection with Saturn Girl

While on Rimbor with a team of Legionnaires, Ultra Boy's presence attracted the attention of the Science Police and he revealed that they were after him for vehicular manslaughter. During this adventure, a connection was made between Jo and Saturn Girl, whose boyfriend was neglecting her at the time. When he later confronted her about it, the two had a brief moment of intimacy psychically. Before anything physical could happen, they were interrupted by Invisible Kid and Saturn Girl rejected Ultra Boy's further advances.

Powers and Abilities

Ultra Powers

\"Ultra
Ultra Powers

Ultra Boy can utilize the energy in his body in a variety of ways, but only one at a time. Such uses are:

Ultra-strength - He is strong enough to toss an object to the \"far corner of the universe\", bust planet sized asteroids with his fists, & sling a ship at hyper-light speeds to break through a dimension therefore returning to Earth. Ultra boy can be thought of as either just below or (more commonly) equal to Superboy, though there exists an instance where he dominates & hogties (to unconsciousness) the Kryptonian in solo combat & required 5 legionnaires to restrain him. Ultra-boy can break inertion, but as with Superboy it depends on the thickness of the metal.

Ultra-speed - When using this power he can move, think and run faster than the eye can follow. Has can keep up with the likes of Daxamites/Kryptonians, but given he lacks their durability for such speeds it's often in short bursts.

Ultra-flight -He is able to fly without a Legion flight ring and maneuver just as easily.

Ultra-invulnerability - When using this power he is impervious to harm by nuclear forces. He has withstood punches/blitzes from Daxamites, tanked 1/4 of a planet busting blast, withstood a planet-busting assault, passed through a solar flare with no burns, took the destructive force of a star, survived the full force of the star crusher cannon (known as the most dangerous weapon in 10 solars systems. The Crystal used to power it was later used to constrict the entire Earth with Gigantic chains), and tank blasts from the Pulsar Stargrave. If propelled at sufficient force he can use his body like a human missile.

Ultra-vision - He has several different vision powers. Penetra-vision is strong enough that Jo can see through lead. The heat of his flash-vision is strong enough to melt the same material, as well as evaporate tidal waves & melt enough metal to fill up a volcano. Telescopic, or macro, vision allows Ultra Boy to see over vast distances.

Equipment

As a member of the Legion of Super-Heroes, Ultra Boy possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring. His ring is modified to detect changes in his strength and durability and adjust its flight governors accordingly.

Physical Characteristics

Height: 6'0

Weight: 190 lbs

Eyes: Brown

Hair: Brown

Other Versions

Other Media

Television

\"Ultra
Ultra Boy in the Justice League Unlimited

DC Animated Universe

Ultra Boy appeared as a member of the Legion of Super-Heroes in both Superman: The Animated Series and Justice League Unlimited. On Superman, he made a cameo in the episode \"New Kids in Town\" as one of many Legionnaires in the 30th century. In the JLU episode \"Far From Home,\" he was among the Legionnaires possessed by the Emerald Eye that attacked Supergirl and were ultimately freed. He had no speaking parts.

Superman & the Legion of Super-Heroes

\"Ultra
Ultra Boy in the Legion of Super-Heroes

Jo Nah appeared as a supporting character during the first and second seasons of the Legion's animated series. He first appeared in the season one episode \"Champions\" as one of several individuals participating in the Galactic Games alongside Lightning Lad. He aided them in defeating the Fatal Five and was voiced by James Arnold Taylor. This was Jo's first and only speaking role. He would later reappear in part two of \"Sundown\" as an emissary from Rimbor to help the Legion defeat the Sun-Eater, but did not join the team. Late in season two, Ultra Boy was suddenly depicted as a Legionnaire through cameos in the episodes \"In the Beginning\" and the two-part \"Dark Victory.\"

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114631/","id":114631,"name":"The Boy With Ultra-Powers!","issue_number":"98"},"gender":1,"id":1267,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182611-ultra%20boy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182611-ultra%20boy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182611-ultra%20boy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182611-ultra%20boy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182611-ultra%20boy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182611-ultra%20boy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182611-ultra%20boy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182611-ultra%20boy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182611-ultra%20boy.jpg","image_tags":"All Images"},"name":"Ultra Boy","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Jo Nah","site_detail_url":"https://comicvine.gamespot.com/ultra-boy/4005-1267/"},{"aliases":"Praetor Lemnos","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1268/","birth":null,"count_of_issue_appearances":15,"date_added":"2008-06-06 11:27:03","date_last_updated":"2012-09-01 13:44:33","deck":"Praetor Lemnos is an enemy of the Legion of Super-Heroes and a man capable of altering the memories of anyone he wishes.","description":"

Origin

Lemnos was born at some point in the 30th century, somewhere in the United Planets. A psionic handicap he had would make his brain emit a quantum frequency that changes other individuals' chemicals and electrons related to memory. Hence, he could be in a crowd and be recorded by any electronic device, and after leaving, any memory or trace of him ever being there (or even existing for that matter) would disappear just within a few minutes. He claimed to Brainiac 5 the at he had to stay within his parents' line of sight so they wouldn't forget to feed him.

As it is next to impossible to remain completely undetected from everything in the 30th/31st centuries, the Science Police found enough traces of to track him down and capture him. They were desperate to find out how he had been able to stay hidden for so long, but unluckily enough for them, had already gained control over his ability. Such control that what used to be a handicap was now what could be called a superpower. With this, could easily manipulate the memories of anyone or anything, meaning he could trick an interrogator to believe he was alone in the interrogation room, for instance.

Rather than allowing himself to become some sort of lab rat for the Science Police, used his ability to spy on them, gathering as much valuable information as possible. Below their [the Science Police] noses, he was able to work behind the scenes to build his own technoempire. He figured that a man with his ability could anything without taking the responsibility or consequences for it...and hence become incredibly rich (stated by Brainiac 5 as being rumored to be the wealthiest individual in the known universe) and also shape every governmental decision to match his agenda.

Lemnos has one thing in common with the Legion of Super-Heroes - they both believe that the United Planets is a too slow and dull society for its own good. Which is why he supports the Legion in secret and has manipulated the outcome of numerous government decisions to help their cause. But for Lemnos, the peaceful \"rebellion\" of the Legion wasn't enough. He would take stronger actions to \"help\" the United Planets...even if it meant shocking them out of dormancy by declaring war. War was something could start by manipulating the outcast of the galaxy...the children of exiled criminals, leaved for dead by the UP. They became his army, and they were lead by some of the most powerful beings among them, called Terra Firma.

Lemnos's plan would have worked perfectly if it had not been for Dream Girl, who, during a precognitive vision, predicted that Lemnos (although his name was not known at the time) would have a connection to upcoming wars. Brainiac 5 was able to extract the image from her mind and upload it to his computer systems, although on a search, he couldn’t find any information whatsoever about him.

Praetor Lemnos’s first target in the United Planets was planet Orando, the economic centre. Lemnos’s armies were successful in destroying the planet and its inhabitants, leaving only Princess Projectra, who was on Earth at the time. Not long after, when Brainaic 5 was still trying to figure out who the mysterious warstarter was, Lemnos himself walked into Brainiac’s lab and introduced himself, and told about his origins and agenda. Including telling him that the next target was planet Colu, Brainiac’s homeworld. Brainiac refused to cooperate with him, leading Lemnos to walk out and erase Brainiac’s memories about their meeting. Brainiac though, had already sent a digital message to himself saying “COLU IS NEXT”, that he received a while later (leading him, Chameleon, Saturn Girl and Light Lass to go to Colu).

On planet Colu, Lemnos had already devastated the planet – but not the same way as Orando, by military force. On Colu, he had instead forced complete amnesia upon the population, rendering the scientific centre of the United Planet useless. Even though it was too late for the Legion to save Colu, Light Lass noticed that Chameleon’s antennae (which only appears when he is scanning a new lifeform) appeared for no apparent reason. She figured someone not visible was around them, and she destroyed the area by creating a massive anti-gravity field, forcing Lemnos to reveal his existence if he was to survive. escaped, but not before Brainiac 5 regained his memories and Saturn Girl seeing him (hence being able to shield every Legionnaire from memory manipulation).

Elysion, one of the members of Terra Firma, was captured by the Legion after a battle on planet Helegyn. Thanks to him, Saturn Girl could find out where Lemnos’s base world was, and hence the Legion set an investigation team to go there.

After a long battle (with reinforcements from the rest of the Legion), Lemnos’s armies along with Terra Firma were defeated. would have escaped if it hadn’t been for Brainiac 5, who opened a portal and stunned him with a seemingly powerful weapon. Lemnos is currently held in stasis by Brainiac 5.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-103849/","id":103849,"name":"Tomorrow's Heroes Today!","issue_number":"2"},"gender":1,"id":1268,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/198707-191798-lemnos.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/198707-191798-lemnos.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/198707-191798-lemnos.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/198707-191798-lemnos.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/198707-191798-lemnos.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/198707-191798-lemnos.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/198707-191798-lemnos.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/198707-191798-lemnos.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/198707-191798-lemnos.jpg","image_tags":"All Images,Praetor Lemnos"},"name":"Lemnos","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Praetor Lemnos","site_detail_url":"https://comicvine.gamespot.com/lemnos/4005-1268/"},{"aliases":"Karate King\nTrident\nVal Armorr\nWes Holloway","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1269/","birth":null,"count_of_issue_appearances":442,"date_added":"2008-06-06 11:27:37","date_last_updated":"2022-08-16 10:40:48","deck":"Karate Kid, also known as Val Armorr, has mastered every single form of unarmed combat in the 31st Century.","description":"

This page is for the original Karate Kid, Val Armorr.

For the Karate Kid II, see: Myg

Origin

When the Japanese superhero The White Crane killed Black Dragon in battle, he decided to raise the crimelord's orphaned son as his own. Retiring from his superhero career, he became known as The Sensei. Residing in the 31st century in the Japanese sector of a united Earth, The Sensei trained Val Armorr in all Martial Arts techniques as well as peaceful creative practices such as meditation, sculpting, and painting. Val became a master of all martial arts forms taught to him, many having their origins on different worlds. He left his Sensei in search of new forms of fighting to master. In his travels he developed his own style known as Super-Karate. When Val returned to Earth, he found that the Legion of Super-Heroes was in need of new recruits to help fight a creature of great power known as Sun Eater. He applied for the Legion and although he had no superhuman powers, he was accepted when he challenged Superboy to single combat. His skill, strength, and speed impressed Superboy greatly.

Creation

Karate Kid was created by Jim Shooter and Curt Swan. DC Comics granted Columbia Pictures permission to use the \"Karate Kid\" name for the movie series starring Ralph Macchio and Pat Morita. However, these films did not bear any significant resemblance to the comics version of the character. There is a thank you to DC Comics for allowing the use of the name at the end of the credits.

Character Evolution

Silver Age

\"Karate
Karate Kid (Silver Age)

Val fell in with his fellow Legion recruit Princess Projectra, he follow Projectra to her homeworld of Orando. Where Val is set on a quest goes back to the 20th Century Earth by the king to win the princess' hand in marriage. While in the past, he meets and befriends schoolteacher Iris Jacobs, and encounters teen heroes Superboy and Robin. He battles numerous villains, including Nemesis Kid, Major Disaster and the Lord of Time. Eventually, he returns to the 30th century, just in time to assist his fellow Legionnaires during the Earthwar. He took a leave of absence and spent nearly a year proving his worth to her father, King Voxv. When he returned, he put delivered the ultimate proof of his worth by saving the King himself from the new Black Dragon, Sadaharu. After this, Val marries Princess Projectra and retires from the Legion with her to Orando. . But he and the Princess, now Queen, were taken prisoners by the Legion of Super-Villians. He was able to escape and help the other Legionaries who were captured also. At the end of their escape Val sacrificed himself to save his love, her world and end the villains plot to destroy the Legion.

Five Years Later

\"Karate
Karate Kid (Five Years Later)

Mordru rise an army of living dead, which include a undead Karate Kid. Jeckie was forced to sent him back to land of dead.

Five Years Later / Batch SW6

\"Karate
Karate Kid (Batch SW6)

A younger version of Val is found with several other young Legionnaires, called Batch SW6. Originally believing themselves just to be clones. It was later revealed that Val was time-paradox duplicates of his older counterpart self. Val is killed in the explosion of the Dominion underground chambers during the effort to rescue the resistance troops, together with the SW6 Princess Projectra and Chameleon Boy.

Reboot / Earth-247

\"Karate
Karate Kid (Earth-247)

Val Armorr is one of the greatest martial arts of the thirtieth century, he has dedicated his life in mastering as many different forms of fighting as he can. Val joined Leland McCauley's Workforce as Karate Kid to have the opportunity to travel to different planets and learn new disciplines. Despite the knowledge that McCauley's values were far different from his own. He was able to live with those differences, until McCauley attempted to profit from an anomaly in space. Which to Val it represented something purely beautiful, like divine creation. Unable to reconcile his employment with his conscience any longer, he destroyed McCauley's anomaly-tapping machine and fled with McCauley's men chased him. He asked for the Legion's protection and they provided it. Legion works out a deal with McCauley in which he renounced any claim against Val and he became a member of the Legion.

Threeboot / Earth Prime

\"Karate
Karate Kid (Earth Prime)

Val never known who his parents, he was raised by various martial arts teachers who trained him since his birth. He became a master of many varied disciplines of martial arts, he is one the Legion's most skilled fighter. He also taught the other members of the Legion of Super-Heroes various self-defence techniques and trained Ultra Boy how to better control his powers. He started dating Shadow Lass, who possesses a similar warrior spirit, but they broke up. He had feeling for Phantom Girl, but she was two places at once didn't notice his infatuating for her. He and Light Lass became close after spending the night with one another. When planet Velmar V is overtook by the Peril Men, the Science Police' s intervened with Val and group of Legionnaires. They are captured and the Legion attempted a rescue. While there Karate Kid and Triplicate Girl are recruited for a strange mission by visitors from another time. Karate Kid and Triplicate Girl left with these strangers and Val leaves behind a sign reading \"OKKK.\"

Retroboot / New Earth

\"Karate
Karate Kid (New Earth)

Val reappeared in the 21th Century as the villain Trident working for Solomon Grundy, he Black Lightning and was defeated. Black Lightning revealed Trident as Val Armorr and under the control of a robotic Starro, Black Lightning takes Val to Batman in the Batcave. Val wakes up and fights Batman, during the fight, Superman's files are shown listing Val as a Class 15 fighter and Batman as a Class 12. Val is stopped when blasted by Black Lightning while Batman distracts him. Karate Kid and Starman are two of seven Legionnaires currently in the present. Starman mentions that Val once died, which is consistent with the character's pre-Crisis history. When being interrogated by Batman, Karate Kid is still disoriented and identifies himself as \"Wes Holloway, a member of the Trident Guild.\" After the remaining Legionnaires are found, they use Lightning Rod to bring back Flash and his family to Earth. While the rest of the Legion returns to the 31st Century, Karate Kid and and one of Triplicate Girl's bodies stay behind on a secret mission. Val dies from the \"Morticoccus\" virus during this mission.

Rebirth/Resurrection

\"Karate
Karate Kid's Return

Months after the events of Legion of Three Worlds, Karate Kid mysteriously reappeared outside of the Legion Academy and reunited with Sensor Girl, who had sensed his return. Later he goes with Sensor Girl on a mission to stop the Fatal Five.

Legion Of Super Heroes (2019-present series)

Karate Kid makes his first full appearance in the first issue, facing off against Mordru and his group of criminals. He now sports a bald head and has more Asian characteristics than previous incarnations.

Major Story Arcs

Silver Age

The Death of Karate Kid

\"Karate
Karate Kid (Silver Age) dies

When Orando is attacked by the Legion of Super-Villains, Val battles Nemesis Kid in single combat. Nemesis Kid copies Val Karate skills and use against him and nearly beats to dead. Val wanted to continue to fight so that he could die in battle — the ultimate honor by his cultural standards. But at Projectra's urging, Val instead used his remaining strength to destroy the power source for the machines that were moving Orando into a strange dimension. In revenge, Projectra killed Nemesis Kid soon afterward. A memorial to Val was built on Shanghalla.

After Val death, Timber Wolf learned that he was the heir to Karate Kid's estate. He and the Sensei traveled to the planet Lythyl to honor Val's last wishes. There they met a young man named Myg, who possessed superior martial arts skills, like his predecessor Val. Myg eventually came to Earth where he entered the Legion Academy and became the Karate Kid II. He also became a member of the second Legion of Substitute Heroes while training in the Legion Academy.

Earth-247

Val Goes to Steeple

After the Legion disbanded, Val chose to study the Haplashar pacifists on the planet Steeple. What he did not foresee, that this world would be cut off from the rest of the galaxy for ten years because of black hole activity. As they were preparing to leave, Steeple came under attack by Nadir. Ferro took a critical blow from Nadir and Val was forced to choose to stay on Steeple to tend to Ferro's health. They missed the window and were stranded on Steeple. When Brainiac 5 finally found a moment, he set about trying to establish a stargate to retrieve Val and Ferro from Steeple. This plan succeeded and they were rescued by Shikari and Sensor while the Legion's is battle with Universo, they helped turn the tide of battle. Afterwards, Val escorted Universo to Steeple, where the Halpashar agreed to watch over the villain (now forced into a sort of \"mental coma\").

Karate Kid meets Karate Kid

Earth-247 Karate Kid and Legion battle a hundreds members Fate Five from other dimension, after the battle Legion seemed to fade from existence. He reappeared back on Earth-247 fighting the coming crisis on Earth. The Earth-Prime Karate Kid somehow returned to the team, he and his team are pull to New Earth where they help that world Legion to fight against Superboy Prime and his Legion of Super-Villains. He meets his counterpart from Earth-247 during a fight, after battle he and his are sent to their Earth. Earth-247 Karate Kid and other Legionnaire under the guidance of Shikari go back into void. They takes the name \" the Wanderers\" and decides to travel the Multiverse to look for survivors from the various alternate universes that were destroyed.

New Earth

The Death of Karate Kid

\"Karate
Karate Kid (New Earth) dies

As the Legion returned to their own time after the Lightning Saga, Val was told by Sensor Girl that he had to remain behind in the 21st century. He was alone though, because one of Triplicate Girl's bodies, calling herself \"Una,\" stayed with him. The two visit Barbara Gordon, where it was revealed that Val was dying. They are sent to see a Mr. Orr, who declared that he had the answers that they sought. Upon arriving at Orr's compound Karate Kid briefly battled Equus, until Orr arrived on the scene and told them that Karate Kid's illness was similar to the OMAC virus. Under the order of Desaad (a lackey of Darkseid), Orr told them to visit Buddy Blank in Colorado. Equus and a misunderstanding with the cops and Supergirl delayed the trip. Val then met Buddy Blank and his grandson, who took them to see Brother Eye. The entity scanned Val, informing him that he was infected by the \"Morticoccus\" virus, and directed the group to what was once Blüdhaven. Brother Eye had detected a similar strain there. In Blüdhaven, the group encountered the Atomic Knights and Firestorm. When Val's sickness reaches a breaking point, Brother Eye freed itself, and traveled to Blüdhaven, and turned it into its new base, and used the Atomic Knights and Firestorm as power sources. He was later transported to Apokolips, as Brother Eye intended to assimilate the Morticoccus during Apokolips' assimilation. As the attempts failed, Brother Eye was forced to assimilate Una instead, having her carry Val inside himself for vivisection.

As Brother Eye was defeated, both Val and Una were freed, but Val was now grievously wounded, with Una pleading for his life as the other assembled heroes considered the idea of killing him before the virus spread. When the group arrived on another of the 52 Earths, Val is taken to Project Cadmus and died as Dubbilex examined him. During the autopsy, the Morticoccus was released, and spread its infection into the air. Because of assimilating Val's 31st-century blood, it was practically immune to any form of treatment.The bodies of Val and Una were eventually discovered by the Gotham City Police Department on New Earth, and Superman and the visiting Lightning Lad mourned their passing. It was later revealed that their bodies were planted there by the Time Trapper.

Powers and Abilities

Super Strength

Val is immensely strong for a normal human, able to defeat Daxamites and Kryptonians at times.

Super Speed

He is very fast, able to dodge lightning and lasers.

Unarmed Combat

Karate Kid has no super powers, yet he is master of every form of martial arts to have been developed up to the 30th Century. He also possesses the ability to sense the weakest spot in an object. His skill in hand-to-hand combat is seemingly superhuman, allowing him to simulate super-strength blows. His prowess was so high that he was able to take on Superboy when he auditioned for the Legion of Superheroes. Val Armorr is the youngest warrior ever to earn the title Samurai. The computer in the Fortress of Solitude has him ranked as a class 15 whereas Batman is only ranked as a class 12. Although this rating was given by Superman, who Batman loved to prove wrong.

Weapon Master

Val is also very skilled with melee weapons but does not like to use them.

Intellect

Karate Kid's training included mental discipline which makes him more resistant to mind control, as well as giving him a limited control of his body's functions, such as being able to control vomiting or being nauseous.

Equipment

As a member of the Legion of Super-Heroes, Karate Kid possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Physical Characteristics

Height: 5'8\"

Weight: 160 lbs.

Eyes: Brown

Hair: Brown

Eternal Champion?

\"No

Karate Kid has died and been resurrected many times. His wife, Princess Projectra, who has psychic and mystical powers, has referred to him as an \"Eternal Champion\". After his last death, she said that she was just waiting for him to be reborn again, like the last time. This aspect of his character has not been fully explored, and is still a mystery.

In the 2995 Legion of Super-Heroes Sourcebook, this Haiku was printed under his profile and offered some hint of his ability to be reborn:

\"Karate Kid\"

Seek the fatal flaw; Each vessel has its weakness, Even endless sleep. -- Q.D.

Other Versions

Superboy's Legion

Karate Kid is a member of this Legion.

Legion of Super-Heroes in the 31th Century

Karate Kid is a member of this Legion.

Other Media

Animation

\"Karate
Karate Kid (S&LSH)

Superman & Legion of Super-Heroes

Karate Kid appeared in the the Season 2 episode titled after him of Legion of Super heroes. He is pretty much influenced by the Karate Kid original movie trilogy Daniel LaRusso (played by Ralph Machio) . He was voiced by Keith Ferguson.

Justice League Adventures: Trapped in Time

\"No

Karate Kid appear in the is a direct-to-video animated film JLA Adventures: Trapped in Time. Due to unforeseen circumstances, Val and his companion, aspiring legionnaire Dawnstar travel through time to stop the machinations of Lex Luthor and the Legion of Doom, joining the Justice League.

This version of Karate Kid, unlike other, showed paranormal abilities, such as being able to perceive stress points, fracture planes, or weaknesses in objects as well a Ki based attacks in addition to his fighting skills. The visual design of Karate Kid is heavily influenced by the Superfriends character Samurai. He is voiced by Dante Basco.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114855/","id":114855,"name":"One of Us is a Traitor!","issue_number":"346"},"gender":1,"id":1269,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7961192-rco044_1620748743.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7961192-rco044_1620748743.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7961192-rco044_1620748743.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7961192-rco044_1620748743.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7961192-rco044_1620748743.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7961192-rco044_1620748743.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7961192-rco044_1620748743.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7961192-rco044_1620748743.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7961192-rco044_1620748743.jpg","image_tags":"All Images"},"name":"Karate Kid","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Val Armorr","site_detail_url":"https://comicvine.gamespot.com/karate-kid/4005-1269/"},{"aliases":"Gim Allon\nMicro Lad\nLeviathan","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1271/","birth":null,"count_of_issue_appearances":609,"date_added":"2008-06-06 11:27:35","date_last_updated":"2021-03-18 05:49:29","deck":"Colossal Boy is a member of the Legion of Super-Heroes who can increase his size and strength to gigantic levels.","description":"

Origin

\"Colossal
Colossal Boy by George Perez

Gim Allon was born the only son to Wynn and Marte Allon of Earth. He was raised in a patriotic and Jewish family. As a young man, Gim enrolled in the Science Police Training Academy to become a member of the Science Police. While on vacation on Mars with fellow cadet and childhood friend Gigi Cusimano, a strange meteor crashed into the soil near him. The meteor's radiation altered his body's RNA, giving him the power to grow to giant sizes at will. For a short time he used this power to aid him as a Science Police cadet, nearly apprehending the villain who would go on to be the second Starfinger, but his parents encouraged him to pursue justice in other avenues. He joined the Legion of Super-Heroes as an early recruit, alongside fellow applicant Chameleon Boy, whom Gim gave his codename as the other boy reminded him of a chameleon that Gim had as a boy for a pet. The pair were sworn in together and Gim took the name Colossal Boy, Cham and Gim remained good friends throughout their careers and Gim also later became close friends with fellow Earthling, Sun Boy.

Creation

Colossal Boy was created by Jerry Siegel and Jim Mooney.

Character Evolution

Original Continuity: New Earth

\"Colossal
Colossal Boy (Pre-Crisis)

Gim's tenure with the Legion was one of the most unbroken of any Legionnaires. At one point, his mother was turned to glass and Gim was blackmailed into flubbing a mission, which earned him additional training in the Legion Academy for a time until his mother was saved. Marte, Gim's mother, was eventually elected President of Earth and during her tenure she was notorious for supporting the Legion and allowing the United Planets to assist them where they could. Gim had a crush on fellow member Shrinking Violet that was not reciprocated, then one day the two began to find a new-found connection and enjoyed a romance. Caught in a whirlwind relationship and delighted to have Vi finally reciprocate, the two Legionnaires soon eloped and were married.

Outside of fearing his mother's wraith for not having a traditional marriage, Gim was the happiest he could recall. Shortly thereafter though, it was revealed that Shrinking Violet had actually been replaced by a Durlan actress named Yera. Yera had been hired to infiltrate the Legion and it was she, not Shrinking Violet, who had fallen in love with Colossal Boy. Despite the deception, Yera had been duped into the infiltration and Gim quickly accepted the fact that it was Yera he had come to love so quickly, not Shrinking Violet. She offered Gim divorce, but he refused.

Reboot: Earth-247

\"Leviathan
Leviathan (Earth-247)

Gim Allon's origin during the new, rebooted universe was similar to before with one exception: he was now a denizen of Mars. He was still raised by Jewish parents and was childhood friends with Gigi. She was still present when he received his powers, this time from a meteor that crashed on Mars while Gim and Gigi were in pursuit of a criminal. Becoming a full fledged officer of the Science Police on Mars, Gim was actually reluctant unlike his previous counterpart to get pulled from S.P. duty to become Mars' official draftee into the new Legion of Super-Heroes as Leviathan. Due to his Science Police training, he was named Legion leader on his first day over founder Cosmic Boy. A \"yes man,\" Gim didn't argue even when he could sense the disdain the founding Legionnaires had for him.

On his first mission as both Legionnaire and leader, fellow draftee Kid Quantum was killed by the villain Tangleweb. This caused Gim to resign as both leader and Legionnaire in shame, though Cosmic Boy insisted he stay on the Legion, as well as hold a grudge against Tangleweb. He eventually apprehended the villain and served as Legion deputy leader for the team's first year. He had a crush on teammate Kinetix, much to the dismay of Shrinking Violet who in this reality had an unrequited crush on Gim. He was hard on fellow Legionnaire Star Boy, likely because he was Xanthu's replacement for the deceased Kid Quantum who died on Gim's watch. During a battle with Dr. Regulus early in the Legion's second year, Leviathan uprooted a dangerous gas main and blasted it point blank at the villain to stop him. The ensuing radiation poisoning killed the villain, but Gim as well. He died telling Shrinking Violet that dying in the line of duty had always been his heart's desire. He was buried on Mars at a traditional Jewish service.

Threeboot: Earth-Prime

\"Micro
Micro Lad (Earth-Prime)

In this reality, Gim Allon was from Earth but has different ancestry. He was born to a race of giants and had a genetic mutation which allowed him to shrink to a 6' height. This ability allowed Gim to interact with the average height Earthlings, whom he fell in love with, and where he learned of and eventually joined the Legionnaire movement. Gim took the codename Micro Lad due to his shrinking ability, though most Legionnaires called him Colossal Boy due to the fact it seemed to them that growing to his 'normal height' was actually the super power. Sometimes considered to be a little on the dim side, Colossal Boy was still a great friend and regarded highly by many Legionnaires.

He even allowed the Legion to stay at his giant-sized house for a time. He was romantically interested in Atom Girl, aka Shrinking Violet. His fondness for calling the Legionnaires \"little people\" was a cause of turmoil for his friendship with the size-conscious girl.

Retroboot: New Earth

\"Colossal
Colossal Boy (New Earth)

A close analogue to the pre-boot Legion of Super-Heroes was restored to continuity following Infinite Crisis. All events of Gim Allon's life are the same as before the \"Five Years Later\" storyline. Gim has remained one of the Legion's longest serving members and is still married to Yera, now going by the codename Chameleon Girl and heroing herself. He was one of the few Legionnaires left on Earth during Earth Man's takeover due to his Earthling heritage and was instrumental in defeating Earth Man and saving Superman. Due to Earth Man's imprisoning of best friend Sun Boy and attacking his wife, Gim had reservations about Earth Man joining the Legion but eventually warmed up to him.

Major Story Arcs

Original Continuity: New Earth

Five Years Later

\"Gim
Gim (Five Years Later)

Gim's tenure with the Legion continued until the team was disbanded years later after Magic Wars. Afterwards, Gim rejoined the Science Police and would eventually be promoted to Chief. He stayed with the Science Police even after the Legion reformed, though assisted them when needed.

Powers and Abilities

Size Manipulation

Gim Allon has the ability to enlarge his body proportionately, effectively growing to sizes from his normal height to heights of ten or twenty five feet, for example. The precise limitations on this power have not been established, nor the exact extent to which his strength increases with size, an apparent side effect of the growth. When Gim loses consciousness, he is returned to his normal size. In the threeboot continuity, Gim was actually from a race of giants and his ability was that he could shrink to a 6' height rather than the other way around. Gim's baseline height was never stated, but he could now only size-shift between these two dimensions instead of having an untold upper limit.

Equipment

As a Legionnaire, Gim has completed personal combat training and wears the Legion flight ring to fly. The ring also serves as a communication and projection tool. With his additional combat training from his studies with the Science Police, he is one of the most skilled hand-to-hand combatants in the LSH and familiar with law protocol.

Other Versions

Five Years Later / Batch SW6

\"Leviathan
Leviathan (Batch SW6)

Shortly thereafter, duplicates of the Legionnaires from their early days surfaced as part of a Dominator experiment, including one of Colossal Boy. This young hero and his team went on to become the Legionnaires of New Earth, with the younger Gim taking the codename Leviathan. Leviathan had a crush on Gossamer instead of Shrinking Violet this time. When Legionnaires past and present confronted Glorith and Mordru to save Cosmic Boy, Gim and the younger Leviathan responded to the call. During this encounter, Leviathan was aged to dust by Glorith. As a result of Leviathan's death, the elder Gim Allon faded from existence, confirming a timeline link between the Legionnaires and the adult Legion.

Other Media

Television

Justice League Unlimited

\"Colossal
Colossal Boy on JLU

Gim appeared as Colossal Boy and as a Legionnaire in the Justice League Unlimited episode \"Far From Home.\" He had no speaking lines and was one of many Legionnaires possessed by the Emerald Eye.

Superman & the Legion of Super-Heroes

In the Legion cartoon, he was a supporting character and often appeared in the background or with few speaking roles. He made sizable contributions to missions in the first season episodes \"Lightning Storm\" and \"Chain of Command\" where he was voiced by James Arnold Taylor. During the second season he had no speaking roles and often served under Cosmic Boy. He was one of the Legionnaires who chased Timber Wolf in the episode \"Cry Wolf\" and was the first to be digitized by Brainiac in \"Dark Victory.\" He was later restored and continued to serve with the Legion.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114602/","id":114602,"name":"Hercules in the 20th Century!","issue_number":"267"},"gender":1,"id":1271,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182639-colossal%20boy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182639-colossal%20boy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182639-colossal%20boy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182639-colossal%20boy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182639-colossal%20boy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182639-colossal%20boy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182639-colossal%20boy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182639-colossal%20boy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182639-colossal%20boy.jpg","image_tags":"All Images"},"name":"Colossal Boy","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-6/","id":6,"name":"Radiation"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Gim Allon","site_detail_url":"https://comicvine.gamespot.com/colossal-boy/4005-1271/"},{"aliases":"Im\nImra Ardeen\nImra Ardeen-Ranzz\nSaturn Woman","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1273/","birth":null,"count_of_issue_appearances":1186,"date_added":"2008-06-06 11:27:38","date_last_updated":"2021-08-08 06:34:17","deck":"Imra Ardeen is a founding member of the Legion of Super-Heroes in the 30th and 31st centuries under the code name Saturn Girl. Though all of the inhabitants of her homeworld of Titan are telepaths, Imra's telepathy ranks among the strongest of her race. Saturn Girl is the first ever female character to lead a super-team in comic book history.","description":"

Origin

\"No

Imra Ardeen was born on Titan (the largest moon of the planet Saturn) in the 30th century. All of the native inhabitants of Titan have the power of telepathy. From an early age Imra's telepathic ability was revealed to be among the strongest of her race. Due to her great talent, in her teen years Imra traveled to Earth and began training to be a Science Police officer. But fate intervened when she joined two other super-powered teens, Garth Ranzz and Rokk Krinn (later known as Lightning Lad and Cosmic Boy), in stopping an assassination attempt on billionaire R.J. Brande. Inspired by their heroism as well as the legacy of the 20th-century superhero Superboy, Brande bankrolled the three teens and they became the founding members of the team known as the Legion of Super-Heroes. Taking the code name of Saturn Girl, Imra has gone on to become one of the greatest and most dedicated Legionnaires in the team's history.

Creation

Saturn Girl was created by Otto Binder and Al Plastino in 1958 and first appeared in Adventure Comics #247, the issue that introduced the Legion of Super-Heroes. She was one of the three founding members of the Legion as well as the team's first female member. In her first appearance she wore a yellow and green costume, but this color scheme was quickly abandoned in favor of her now-iconic red uniform. Her Legion uniforms have since always remained predominantly red or pink, depending on the era and continuity.

Character Evolution

Original Continuity: New Earth

\"Saturn
Saturn Girl (New Earth): 1970's costume

Saturn Girl served with distinction as Legion membership continued to grow. When Saturn Girl learned that a Legionnaire was fated to die on a mission, she used her mental powers to influence the team to elect her as team leader. In so doing, she had the authority to bench the rest of the team and sacrifice her own life to spare those of her teammates. But Lightning Lad, who had feelings for Saturn Girl, defied her orders and sacrificed his own life to save her. Grief-stricken by Lightning Lad's death, Saturn Girl then tried sacrifice her own life again in order to bring him back to life, but this time her telepathic friend Proty took her place. Saturn Girl and Lightning Lad then declared their love for each other. Despite learning that Saturn Girl had rigged the election, her teammates continued to support her as leader of the Legion. She had a celebrated first year as Legion leader and even won a challenge the next year to legitimately earn a second term; a first in Legion history. Saturn Girl served stalwartly on the Legion, dedicating her life to the team even after her stint as leader ended. She and Lightning Lad dated for several years, even staging a fake marriage for a Legion mission before he proposed actual marriage.

Saturn Girl spent most of original continuity in her trademark 'red skirt' costume, featuring a white front with a yellow Saturn logo on her chest. Like many Legionnaires she underwent a sexy makeover during the 1970's, wearing a daring pink bikini-like outfit with long pink boots and gloves and the Saturn logo on her navel where the bikini top and bottom joined. In the 1980's she switched back to her more modest red skirt costume, which lasted until the end of original continuity.

Reboot: Earth-247

\"Saturn
Saturn Girl (Earth-247)

As a child, Imra Ardeen displayed top-level telepathic abilities and was taken from her family at the age of five to begin years of intense mental training with the best minds of Titan. Her younger sister, Jancel, would resent Imra for this and viewed it as special treatment despite the fact Imra initially hated it. Imra became very disciplined and excelled at all she did, earning the rank of a tenth level telepath and being so strong that her mentor, Aven, installed mental blocks to dampen Imra's power. She was fast-tracked to become a Science Police officer and was assigned to Earth despite the stigma against telepaths there. En route, she and two bystanders saved the life of R.J. Brande. Brande wanted Imra and the boys to help him form a new symbol for unity: the Legion of Super-Heroes.

In Earth-247 reality, Saturn Girl wore a jumpsuit rather than a skirt, and pink replaced red in her uniform.

Threeboot: Earth-Prime

\"Saturn
Saturn Girl (Earth-Prime)

In the 31st century of Earth Prime, Titanians only communicated telepathically and have lost their vocal cords to evolution. In any situation where telepathy is useless and Imra was rendered mute. Like other counterparts, she founded the Legion of Super-Heroes alongside Rokk Krinn and Garth Ranzz. Her mother was now a councilwoman in the United Planets and one of the few Legion supporters. When the Legion was dealing with the phantom Mon-El, Imra was able to hear his cries for help via telepathy, making her instrumental in locating him. Her relationship with Lightning Lad was greatly strained when Garth became the leader of the Legion. After heading several missions where he wouldn't respond to her calls for help and due to a strain in their personal lives, Saturn Girl found comfort mentally with Ultra Boy.

Though nothing physical ever happened between the two, they came very close psychically and Imra felt guilty. She confessed what had transpired between her and Ultra Boy to Garth and he ended their relationship. Saturn Girl and her fellow Legionnaires assisted two other Legions team on the New Earth with stopping Superboy-Prime and his Legion of Super-Villains. After the battle her and her team returned to her home reality.

In Earth-Prime reality, Saturn Girl wore red-and-white tights in a pattern that mimicked her famous 1970's \"pink bikini\" costume from original continuity.

Retroboot: New Earth

\"Saturn
Saturn Girl (New Earth)

After the latest Legion reboot, the team returned to being a close proximity to how they were in original continuity prior to the Five Year Gap. Saturn Girl has been back with the Legion since the Universo Project and, thanks to the threat of Earth-Man, she has been reunited with Cosmic Boy and Lightning Lad. The three Legion founders snuck inside the historic Batcave to try and find proof of Superman's existence when they were captured by Earth-Man and his xenophobic League of Earth. After Earth-Man was defeated, Imra and her companions were freed, and restored order on Earth so outsiders could return. Sometime later, Imra and the Legion had to face the threat of Superboy-Prime and the Legion of Super-Villains. The Legion was overwhelmed by their enemies, forcing Brainiac 5 to call in the Legions from Earth-247 and Earth-Prime realities in order to assist. Together, the three Saturn Girls were instrumental in eventually defeating Superboy-Prime.

The retroboot Saturn Girl's costume is a pantsuit version of her classic red skirt costume from original continuity.

Major Story Arcs

Original Continuity: New Earth

Married Life

\"Leaving
Leaving the Legion

Imra turned her love down, citing a rule in the Legion Constitution that married members must resign and not being able to leave the team behind just yet. Upon consulting with her mentors back on Titan, Imra realized she was foolish and she really did love Garth more than anything in the universe. They were married and resigned by their own laws from the team. For several months, Garth and the newly minted Imra Ardeen-Ranzz were simple civilians. During an event called the Earth War, reserve members like Saturn Girl and Lightning Lad were called into duty. Following the success of their efforts, the Legion voted to repeal the rule against married members and Saturn Girl and her husband reported back for active duty.

Pregnancy

\"Imra
Imra with her son Graym

Shortly thereafter, Imra discovered that she was pregnant. Since Winathians like her husband are known for their twin births, Imra was expecting twins herself. She continued to serve on the Legion during her pregnancy, participating on several missions and even going into labor during a battle against the villainous Tyr. Saturn Girl delivered a healthy baby boy on Medicus One. The boy was named Graym, and Imra curiously noted that she thought she had heard two babies thoughts inside her at some point, but she must have been mistaken. Eventually, the Legion founders accepted that the team could stand on its own two feet and they resigned to enter civilian life. Saturn Girl had an unconventional replacement in mind: Queen Projectra disguised as the new heroine, Sensor Girl.

Soon, the villainous Validus attempted to steal Imra's son Graym. Through the adventure, Saturn Girl learned that Validus was actually Graym's twin and her child, plucked from the womb and then mutated and hurled through time by the evil Darkseid. Darkseid restored Validus to his infant stage and Saturn Girl later expressed her gratitude to the evil Lord of Apokalips.

The Universo Project

\"Dream
Dream Girl & Saturn Girl imprisoned by Universo

In the Universo Project, Saturn Girl awoke on a strange world with several other individuals. Everyone on the island acted like mind-controlled workers and Saturn Girl discovered that they were being help prisoner and she was the only one to break the mind control. She freed several Legionnaires who in turn went on to free the entire planet Earth from the hypnotic control of the villainous Universo. Saturn Girl had saved the world once again, deciding that the only reward that she wanted was the chance to rejoin the Legion. She became an active Legionnaire again while Garth stayed at home with the children. When Superboy died, she plotted a conspiracy with those that were close to him to kill the Time Trapper for it. In the attack, Saturn Girl's mental powers were reflected and the heat of the output burned her hair.

Five Years Later

\"Imra
Imra Ranzz (Five Years Later)

Saturn Girl ultimately retired during the Five Years Later, following the Magic Wars. During those off-panel years, she and her boys moved to Garth's homeworld of Winath. There, they established the Ranzz plantation and a lucrative shipping and farming business to outside worlds. This continued for several years, Imra eventually becoming pregnant a second time with twins as the business boomed. Even when the Legion reformed, the pregnant Saturn Girl was able to resist and remained with her family. She and her husband assisted their old teammates when they could, even allowing the Plantation to serve as the newly reformed team's first unofficial base of operations.

Eventually, the Legion moved out and Imra gave birth to Dacey and Dorritt Ranzz. The expanded Ranzz family was short lived. The Zero Hour event came scant months later, wiping out Saturn Girl's reality. She was one of the last survivors, ultimately merging with a time displaced copy of herself and the other Legion founders to stabilize and create a new reality.

Reboot: Earth-247

Science Police Officer Imra

\"Science
Science Police

Imra accepted, leaving the Science Police. As Saturn Girl, her powers were tested in confrontations with the foreign mind of the Composite Man, which was so overwhelming it left Imra in a catatonic state for a time. She was the only Legionnaire fully able to resist the Emerald Eye of Ekron and was among the Legionnaires trapped in the 20th century. There, she began to fall in love with co-founder Cosmic Boy, especially after he was mentally crippled by being linked with her during an attack by Dr. Psycho. This same incident freed Imra's mental blocks and gave her full access to her telepathy. With Cosmic Boy down, Saturn Girl became acting leader. Eventually, Cos awoke due to Saturn Girl subconsciously animating his mind with her increased powers, going so far as to have him propose.

Once she recognized that it was all a projection, Cos returned to his vegetative state but was properly revived. Feeling ashamed and recognizing that she loved other co-founder Live Wire, Saturn Girl ended things with Cos. Imra and Live Wire were properly reunited in the 30th century and began to date. During this time, Saturn Girl was promoted to Legion leader. Live Wire proposed to her right before the Blight invasion of Earth and she accepted.

Legion Lost

\"Legionnaires
Legionnaires distrust Imra

Following the Blight invasion, Saturn Girl and several other Legionnaires were lost in a strange galaxy. On their own, Saturn Girl did her best to rally the team and went too far in her attempts. To calm the raging Ultra Boy, she created a telepathic illusion that his wife Apparition was with the team. When she was knocked out in battle, her subconscious projections returned and she tricked the other lost Legionnaires into thinking rescue had come. When she was properly put under for medical attention, the illusions faded. The Legionnaires felt betrayed by Saturn Girl's deceptions, even Live Wire pulling away from her. Though initially mad with Saturn Girl, Ultra Boy recognized his last few months with his wife were actually with Saturn Girl and in melancholy kissed Imra. They attempted to keep this a secret and shortly thereafter the team was in a deadly confrontation with the time-tossed Element Lad. Though Live Wire made the ultimate sacrifice, the Legionnaires and Saturn Girl were finally able to return home.

Returned Home

\"Legion
Legion of Three Worlds

Back in United Planet space, Saturn Girl aided her friends in reforming the Legion of Super-Heroes on the new artificial planetoid Legion World. She slowly began to rebuild trust in her teammates and continued to have strange feelings for Ultra Boy, who eventually declared things could never happen between them. It should have been a happy day when Saturn Girl and Cosmic Boy discovered that Live Wire was actually still alive in the lost universe, however he was trapped in the body of the deranged Element Lad and the change was hard for Saturn Girl to accept. It took time, but eventually she and Live Wire properly reconciled, just in time for the whole Legion to be whisked into the timestream once again as their reality of Earth-247 was destroyed in the events of Final Crisis. Alongside her fellow Legionnaires, Saturn Girl assisted the two Legions of other worlds in stopping Superboy-Prime and went on to form a new group of Wanderers to aid those lost in the Multiverse like they were.

Retroboot: New Earth

Imra's Search For Her Sons

\"The
The fight for her sons

Shortly afterwards she paid a visit to her homeworld of Titan and her mentor Aven to help gather her private thoughts. During the visit, a blast of chronal energy from the new Time Institute began to tear Titan apart. Imra searched for her sons whom she had brought with her, locating them only to see them spirited away in a flash of light. She commandeered a Time Bubble to travel back to the moment they vanished and try to read their minds to figure where they had gone. Her homeworld was destroyed shortly thereafter. Imra eventually found her kids, rescuing them with Lightning Lad and Lightning Lass from a zealot of Darkseid. Following the incident, she and Lightning Lad took a leave of absence from the Legion to spend time with their sons.

Powers & Abilities

Telepathy

\"Saturn
Saturn Girl projecting mind bolts

Saturn Girl is one of the most powerful telepaths in the DC Universe. Her telepathy is considered tenth level by her people, the highest ranking. With her telepathic powers Saturn Girl can read, receive, and broadcast thoughts at will. She can even manipulate the information another's brain receives to make them believe intensely realistic illusions. Imra's mind can project powerful telepathic force bolts which can mentally stun, injure, or even kill beings as formidable as Daxamites. She can also create astral projections of herself and others. She has the ability to use her mind as a psi-link, allowing her to connect with others and allow them to communicate with one another.

She has been able to mentally search areas as large as a continent to locate specific minds. Her mental powers evolved, allowing her to possess the ability of telekinesis. She has shown the ability to move large objects with her mind (though her Legion Flight Ring may be a required aid to this power).

Intellect

Imra is considered to be one of the most intelligent Legionnaires as well as one of the most highly educated. She has a keen understanding of science and technology and possesses great intuition on a social and personal level. Due to her superior intellect as well as her mental powers, she was one of the four Legionnaires deemed by Universo to be the greatest threat to his plans for the domination of Earth, and was also the first to break free from his mind control.

Equipment

\"Legion
Legion Flight Ring

As a member of the Legion of Super-Heroes, Saturn Girl possesses a Legion Flight Ring. The ring gives its wearer the ability to fly, the speed and range of which is determined by the wearer's willpower. It also acts as a long-range communicator (enabling constant vocal contact with other Legionnaires, even across vast distances of space), a signal device, and a navigational compass, all powered by a micro-computer built inside the ring.

Physical Characteristics

\"Saturn
Saturn Girl

Height: 5'10\"

Weight: 140 lbs

Eyes: Blue

Hair: Blonde

Other Versions

Silver Age: Saturn Woman

In the original debut of the Legion of Supervillians, this team came from a time when the Legion of Superheroes had reached adulthood. Among the members was Saturn Woman, an adult version of Imra. Superboy (Kal-El) and later Superman would meet several times this possible future for the Legion. The concept would be revisited after Flashpoint.

Five Years Later: Batch SW6

\"Saturn
Saturn Girl (Batch SW6)

A younger version of Saturn Girl was found with several other young Legionnaires, called Batch SW6. Originally believing themselves just to be clones. It was later revealed that Saturn Girl was time-paradox duplicates of her older counterpart self. She, Cosmic Boy and Live Wire traveled into the past to investigate their origins and wound up fighting alongside the 20th century's heroes during Zero Hour. They returned to the 30th century believing they had stopped the menace, but soon learned that they must re-merge with their older counterparts in order to repair the time stream. In true heroic fashion, Imra joined hands with her older counterpart, and her best friends (both versions) and bid their reality farewell.

Superboy's Legion

In this Elseworlds series, Saturn Girl is once again a founding member of Legion and very similar to the Saturn Girl of main reality. The biggest difference is that she is dating Cosmic Boy rather than Lightning Lad.

The Dark Knight Strikes Again

\"The
The Dark Knight Strikes Agian

In this Elseworlds story that took place in the 21st century, an unusual (and implied ancestral) version of Saturn Girl appeared in the form of a young precognitive girl who is befriended by Catgirl. This girl could see very far into the future and went by the name Saturn Girl \"on account of she's not born yet.\" It is possible that this girl wound up being one of the mentally-enhanced people of Earth chosen to populate Saturn Girl's future homeworld of Titan, and therefore may be one of Imra's ancestors. Though she wore Saturn Girl's trademark red skirt costume, she had huge pink eyes and black hair instead of blonde.

Post-Flashpoint: Earth 0

\"Saturn
Saturn Woman (Earth 0)

In the Earth-0 Legion timeline, the three founding Legionnaires still reached out to a young Clark Kent long before he became Superman, but unlike in main reality, this Legion grew to adulthood along with Clark and eventually changed their names to reflect their adult age. Imra changed her name to Saturn Woman, and alongside Lighting Man (the former Lightning Lad) and Cosmic Man (the former Cosmic Boy), they reunited with an adult Clark Kent (as Superman) in an effort to stop the Anti-Superman army from going back in time to destroy the original rocket that first brought the infant Clark Kent to Earth. They succeeded in saving the rocket and keeping their timeline intact.

Though Saturn Woman's costume was similar to the red and white tights she wore in Threeboot continuity, she added a red cape for the first time in the character's history.

Other Media

Television

Superman: The Animated Series

\"Saturn
Saturn Girl and her teammate from Legion of Super heroes

Saturn Girl appeared twice in DC's Animated Universe. She first appeared in the Superman: The Animated Series episode \"New Kids in Town.\" She was voiced by Melissa Joan Hart. She and several of her Legion teammates were hunting the legendary Brainiac through time. With the help of young Clark Kent, they manage to defeat Brainiac. Saturn Girl wiped Clark's memories of the event and the Legion returned home.

Justice League Unlimited

\"Saturn
Saturn Girl on screen in JLU

In the \"Far From Home\" episode of Justice League Unlimited, the previous Saturn Girl was among the Legionnaires who had been kidnapped and brainwashed by the Fatal Five and the Emerald Eye. She is freed with her teammates thanks to the efforts of Brainiac 5 and Supergirl. She had no lines in this episode.

Superman & the Legion of Super-Heroes

\"Superman
Superman & The Legion of Super-Heroes

Saturn Girl was a main character in the Legion of Super-Heroes animated series. She was voiced by Kari Wahlgren. In addition to her telepathy, this Saturn Girl was a formidable hand-to-hand combatant and possessed telekinesis. She was a regular character in the first season, appearing in every episode save for \"Champions.\" She was among the team that recruited Superman and she had a crush on Lightning Lad. She had a fear of roller coasters. In the second season, Saturn Girl's role was reduced as she was placed in a telepathic coma in the season opener \"Man at the Edge of Tomorrow.\" She would recover in time to recall the Legion's foundation and save R.J. Brande again in \"In the Beginning.\" She was an instrumental communication line in the defeat of Brainiac in the two-part \"Dark Victory\" which wrapped the show.

Teen Titans Go!

\"Saturn
Saturn Girl from Teen Titans Go!

In the episode title, \"My Name is Jose\" the Teen Titans got tired of their old powers because they were not cool enough so, they ask Raven to use her magic to give them new powers. Beast Boy got Saturn Girl's powers. He is able to sense danger, know other people's thoughts, and read their emotions. At first he struggle with his new power, but he masters them at the end of the episode.

Justice League Vs. The Fatal Five

\"Saturn
Saturn Girl from Justice League Vs. The Fatal Five Movie

Saturn Girl will make an appearance in the movie, Justice League Vs. The Fatal Five. As of yet, not much is known about the plot of the movie; however, from a clip released by DC we see her using her tele powers to take down some villains. It is safe to surmise that she will be more than a cameo in the movie as she is the team's leader. The movie is being produce by Bruce Timm whose resume includes Justice League, Justice League Unlimited, Batman: The Animated Series, Superman: The animated Series, etc. It is worthy to note that this movie takes place in the same universe with Timm's previously mentioned works.

Smallville

\"Alexz
Alexz Johnson as Saturn Girl

Saturn Girl, along with fellow founding Legion members Cosmic Boy and Lightning Lad, appeared in an episode of Smallville entitled \"Legion.\" She was played by actress Alexz Johnson. In this portrayal she wore a red jacket and pants combined with a white top featuring the Saturn logo. She and her teammates saved a young Clark Kent from the Persuader, an old Legion enemy and a member of the Fatal Five, who had traveled back in time in order to kill Clark. This Saturn Girl typically placed two fingers to her forehead whilst utilizing her telepathic abilities. Following their apprehension of Brainiac, she returned with her teammates to the future with the promise that \"Brainiac 5\" would be better behaved than the original.

Supergirl

\"Amy
Amy Jackson as Saturn Girl in Supergirl

Irma Ardeen debuted in Season 3 episode \"Wake Up\". She is the wife of Mon-El and a member of the Legion of Super-Heroes. However,Mon-El and her seems to have broken up because she felt that he did not really love her. Mon-El is still hangs up on Supergirl, so Saturn Girl gave him an ultimatum to either go back to the future with her or stay in the present with Supergirl. Mon-El decided to stay in the present.

Films

\"Lego\" Justice League: Cosmic Clash

\"Saturn
Saturn Girl in \"LEGO \"Justice League: Cosmic Clash

Saturn Girl (With Cosmic Boy and Lightning Lad) appear in the movie. She is voiced by Kari Wahlgren. When Superman gets misplace in time, he finds himself in the future. Thanks to Superman, Brainiac is able to claim the future and have Superman as his lackey. Saturn Girl, Cosmic Boy, and Lighting Lad create a resistance against Brainiac. After Brainiac's defeat, Superman and Batman are sent back to the past.

Video Games

Injustice 2

\"No

Saturn Girl makes a cameo in the popular game, Injustice 2. In Brainiac's ladder ending, it is revealed that Brainiac Five went back in time in order to stop Brainiac and to restore his world's reputation. When the Legion of Super Heroes find out out they were upset with him. Saturn Girl was one of the heroes who were understandably upset with him. Saturn girl is seen sitting alongside her teammates, Lightning Boy and Cosmic Boy.

Popular Recognition

Saturn Girl, pictured in her pink bikini costume, was ranked #50 in Comic Buyer's Guide's 100 Sexiest Women in Comics. She was one of five Legionnaires to make the list (along with teammates Shadow Lass, Duplicate Girl, Lightning Lass, and Phantom Girl).

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114594/","id":114594,"name":"The Legion of Super-Heroes","issue_number":"247"},"gender":2,"id":1273,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7182635-saturn%20girl.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7182635-saturn%20girl.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7182635-saturn%20girl.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7182635-saturn%20girl.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7182635-saturn%20girl.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7182635-saturn%20girl.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7182635-saturn%20girl.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7182635-saturn%20girl.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7182635-saturn%20girl.jpg","image_tags":"All Images"},"name":"Saturn Girl","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Imra Ardeen-Ranzz","site_detail_url":"https://comicvine.gamespot.com/saturn-girl/4005-1273/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1274/","birth":null,"count_of_issue_appearances":8,"date_added":"2008-06-06 11:27:07","date_last_updated":"2012-09-01 13:44:34","deck":"Elysion was the leader of Terra Firma and is an enemy of the Legion of Super-Heroes.","description":"

Origin


Elysion was born sometime in the late 30th century, on an exile planet where the United Planets used to send their criminals. The population of the planet was left by the UP to die there, but that didn't go as expected. Most of the population, including Elysion, were superpowered, and this fit Praetor Lemnos's agenda perfectly. Lemnos united the people and used them as an invasion army to direct at the United Planets, with a small group of the most powerful individuals, as the leaders and terraformers, the Terra Firma. Elysion became the Terra Firma's psychotic field leader.

Elysion, with his ability to telekinetically manipulate rocks and planetary matter, easily became one of the Lemnos's mosts dangerous soldiers. Going from planet to planet to terraform them, i.e. preparing them for invasion, the Terra Firma encountered Lightning Lad and Saturn Girl of the Legion of Super-Heroes, along with Brin Londo, on Rimworld 19. After an inevitable battle, where it looked like the Legionnaires had lost, Lightning Lad used an electrical attack on Elysion and his rock pillars to surprise them and win. Defeated, Elysion along with the rest of Terra Firma, returned to their homeworld.

Next time Terra Firma ran into the Legion, it was on planet Helegyn. Even though most Terra Firma members could escape, Elysion was tricked by Shadow Lass and Element Lad to go to the dark and cold side of the planet, where he easily could be taken down. Brought to the Legion Headquarters, Elysion had powerdampers placed on him, and he was interrogated by Saturn Girl to find out where their base world was. Later, he was escorted by Invisible Kid to one of the towers in the Legion HQ to be contained for the time being. However, when Lemnos awoke several sleeper agents, suicide attackers, on the Legion Plaza, one of them found his way into the tower and could free Elysion, leading Elysion to go on a destructive rampage through Metropolis. Only through the combined efforts of Invisible Kid, Brainiac 5 and Atom Girl, could he be stopped and imprisoned again. But not before the Legion Headquarters was destroyed by him and Dream Girl being killed by the rubble.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105294/","id":105294,"name":null,"issue_number":"5"},"gender":1,"id":1274,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/28079/873063-elysion__03__by_barry_kitson__004__01.png","image_tags":"All Images,Comic Artwork,Elysion,Submissions"},"name":"Elysion","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/elysion/4005-1274/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1275/","birth":null,"count_of_issue_appearances":2,"date_added":"2008-06-06 11:26:51","date_last_updated":"2016-10-14 04:55:48","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105295/","id":105295,"name":null,"issue_number":"6"},"gender":1,"id":1275,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/199540-76512-bodger.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/199540-76512-bodger.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/199540-76512-bodger.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/199540-76512-bodger.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/199540-76512-bodger.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/199540-76512-bodger.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/199540-76512-bodger.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/199540-76512-bodger.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/199540-76512-bodger.jpg","image_tags":"All Images,Bodger"},"name":"Bodger","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Bodger","site_detail_url":"https://comicvine.gamespot.com/bodger/4005-1275/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1276/","birth":null,"count_of_issue_appearances":2,"date_added":"2008-06-06 11:26:52","date_last_updated":"2016-10-14 22:41:46","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105295/","id":105295,"name":null,"issue_number":"6"},"gender":1,"id":1276,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/199539-136750-bonce.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/199539-136750-bonce.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/199539-136750-bonce.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/199539-136750-bonce.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/199539-136750-bonce.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/199539-136750-bonce.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/199539-136750-bonce.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/199539-136750-bonce.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/199539-136750-bonce.jpg","image_tags":"All Images,Bonce"},"name":"Bonce","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Bonce","site_detail_url":"https://comicvine.gamespot.com/bonce/4005-1276/"},{"aliases":"Barneydd","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1277/","birth":null,"count_of_issue_appearances":131,"date_added":"2008-06-06 11:27:04","date_last_updated":"2016-04-14 11:04:43","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-196053/","id":196053,"name":null,"issue_number":"2377"},"gender":1,"id":1277,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/5151799-croppedimage318436-louiscrombintera.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/5151799-croppedimage318436-louiscrombintera.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/5151799-croppedimage318436-louiscrombintera.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/5151799-croppedimage318436-louiscrombintera.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/5151799-croppedimage318436-louiscrombintera.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/5151799-croppedimage318436-louiscrombintera.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/5151799-croppedimage318436-louiscrombintera.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/5151799-croppedimage318436-louiscrombintera.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/5151799-croppedimage318436-louiscrombintera.png","image_tags":"All Images"},"name":"Barney","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-8/","id":8,"name":"Animal"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/barney/4005-1277/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1278/","birth":null,"count_of_issue_appearances":10,"date_added":"2008-06-06 11:27:18","date_last_updated":"2012-09-01 15:29:09","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105294/","id":105294,"name":null,"issue_number":"5"},"gender":2,"id":1278,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/199570-18186-zepha.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/199570-18186-zepha.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/199570-18186-zepha.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/199570-18186-zepha.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/199570-18186-zepha.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/199570-18186-zepha.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/199570-18186-zepha.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/199570-18186-zepha.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/199570-18186-zepha.jpg","image_tags":"All Images,Zepha"},"name":"Zepha","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/zepha/4005-1278/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1279/","birth":null,"count_of_issue_appearances":4,"date_added":"2008-06-06 11:26:59","date_last_updated":"2012-09-01 13:44:34","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105294/","id":105294,"name":null,"issue_number":"5"},"gender":0,"id":1279,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/199572-151930-phren.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/199572-151930-phren.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/199572-151930-phren.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/199572-151930-phren.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/199572-151930-phren.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/199572-151930-phren.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/199572-151930-phren.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/199572-151930-phren.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/199572-151930-phren.jpg","image_tags":"All Images,Phren"},"name":"Phren","origin":null,"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/phren/4005-1279/"},{"aliases":"Tyrannosaur","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1281/","birth":null,"count_of_issue_appearances":8,"date_added":"2008-06-06 11:26:31","date_last_updated":"2011-05-05 16:44:03","deck":"Tyrannosaurus is the leader of TNTNT.","description":"

Probably the most mutated of all the members of TNTNT, he gained incredible strength and durability after undergoing J.D. Hunt's experiments. His hardened skin combined with his near impenetrable costume makes him virtually impossible to hurt.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37649/","id":37649,"name":"TNTNT","issue_number":"3"},"gender":1,"id":1281,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/287556-134181-tyrannosaurus.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/287556-134181-tyrannosaurus.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/287556-134181-tyrannosaurus.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/287556-134181-tyrannosaurus.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/287556-134181-tyrannosaurus.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/287556-134181-tyrannosaurus.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/287556-134181-tyrannosaurus.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/287556-134181-tyrannosaurus.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/287556-134181-tyrannosaurus.jpg","image_tags":"All Images,Tyrannosaurus"},"name":"Tyrannosaurus","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/tyrannosaurus/4005-1281/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1282/","birth":null,"count_of_issue_appearances":4,"date_added":"2008-06-06 11:26:40","date_last_updated":"2011-05-05 16:46:58","deck":"Neuronne has the ability to disrupt the electrical impulses between a brain's synapses. She is a member of TNTNT.","description":"

Neuronne's history is a mystery, but what is known is that unlike the other members of TNTNT, she has her abilities since birth. Thus, when J.D. Hunt increased her abilities, to her, it really didn't seem that big a deal. She simply enjoyed the freedom and her ability to travel the world unimpeded.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37649/","id":37649,"name":"TNTNT","issue_number":"3"},"gender":2,"id":1282,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/282186-29190-neuronne.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/282186-29190-neuronne.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/282186-29190-neuronne.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/282186-29190-neuronne.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/282186-29190-neuronne.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/282186-29190-neuronne.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/282186-29190-neuronne.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/282186-29190-neuronne.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/282186-29190-neuronne.jpg","image_tags":"All Images,Neuronne"},"name":"Neuronne","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/neuronne/4005-1282/"},{"aliases":"Paul Ntumbo","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1283/","birth":null,"count_of_issue_appearances":3,"date_added":"2008-06-06 11:26:35","date_last_updated":"2011-05-05 16:50:49","deck":"Taboo has the powers of the jungle, faster than a cheetah and stronger than an ape.","description":"

History

Paul Ntumbo was born in a tribe in the jungles of Africa where his grandfather never strayed from their old ways. Paul left the jungles in pursuit for a modern life. At the age of 25, Paul returned to the jungles to visit his grandfather when he found the tribe's shaman killing his grandfather for a perceived slight. The shaman then cursed Paul, changing him into a creature called Taboo.

He used his abilities as Taboo to try to amass an empire, but the police were always searching for him. Paul fled from Africa and went to Andorra where he came into conflict with Yrial and Lady Killer of The Strangers. After a battle, Taboo wanted revenge and sought out the help of TNTNT to battle the Strangers. Taboo joins TNTNT and meets defeat again.

Powers

Paul Ntumbo was cursed with the powers of the animals and plant-life in the jungle. His body would transform into Taboo, a creature that was strong and fast but also based on rage and instinct. He could be as strong as an ape, as fast as a cheetah, and be as poisonous as some plants in the jungle

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105290/","id":105290,"name":"The Subject Is... Taboo!","issue_number":"23"},"gender":1,"id":1283,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/304394-105724-taboo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/304394-105724-taboo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/304394-105724-taboo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/304394-105724-taboo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/304394-105724-taboo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/304394-105724-taboo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/304394-105724-taboo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/304394-105724-taboo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/304394-105724-taboo.jpg","image_tags":"All Images,Taboo"},"name":"Taboo","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Paul Ntumbo","site_detail_url":"https://comicvine.gamespot.com/taboo/4005-1283/"},{"aliases":"Beanpole","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1284/","birth":null,"count_of_issue_appearances":45,"date_added":"2008-06-06 11:27:30","date_last_updated":"2011-09-05 20:12:09","deck":"Yrial is a native of a mysterious culture that resides on an island in the sky. She came down to Earth to investigate the Jumpstart and became a member of the Strangers.","description":"

 

\"Yrial\"
Yrial

Almost nothing is known about Yrial's origins at this time except that her powers appears to be those of a shaman. Her people live on a island floating two and one-half miles above the Earth, hidden within a cloud. They made every effort to keep mankind from learning about them - until Yrial took it upon herself to investigate the Jumpstart which created the Strangers. As a result, her people \"punished\" her by banishing her to Earth, and punishment is exactly how she regards every minutes of it.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":2,"id":1284,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/472073-yrial.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/472073-yrial.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/472073-yrial.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/472073-yrial.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/472073-yrial.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/472073-yrial.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/472073-yrial.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/472073-yrial.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/472073-yrial.jpg","image_tags":"All Images,Art,Yrial"},"name":"Yrial","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/yrial/4005-1284/"},{"aliases":"Leon Balford","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1285/","birth":null,"count_of_issue_appearances":48,"date_added":"2008-06-06 11:26:45","date_last_updated":"2017-08-06 17:58:34","deck":"Zip Zap uses his super speed as a member of the Strangers.","description":"
\"Zip-Zap\"
Zip-Zap

Leon Balford was portrayed as the typical urban kid stereotype. He was present on the cable car that was struck by lightning, which gave him along with approximately fifty other people ultra powers. He joined the Strangers, which was a group of random passengers that were present on the cable car who banded together to fight evil and find out the source of their powers.

The Strangers originally thought that what hit the cable car was a bolt of lightning but they later find out that it was a Jumpstart, one of the bursts of energy emitted by the Entity from the moon.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":1,"id":1285,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5994349-img_7409.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5994349-img_7409.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5994349-img_7409.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5994349-img_7409.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5994349-img_7409.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5994349-img_7409.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5994349-img_7409.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5994349-img_7409.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5994349-img_7409.jpg","image_tags":"All Images"},"name":"Zip Zap","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Leon Balford","site_detail_url":"https://comicvine.gamespot.com/zip-zap/4005-1285/"},{"aliases":"Hugh Fox","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1286/","birth":null,"count_of_issue_appearances":47,"date_added":"2008-06-06 11:26:50","date_last_updated":"2017-08-06 17:56:32","deck":null,"description":"

Hugh Fox was a football and baseball star in high school, but lacked the grades to pursue higher education. He was killing time with his friend Bob Hardin when the Jumpstart hit and gave him the ability to explode shrapnel from his body without harming himself. At first the explosions were massive and unfocused, but now he's rapidly learning to control them. Hugh tends to see himself as a group leader, which brings him into conflict with the rest of The Strangers, who don't.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":1,"id":1286,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/50736/952854-grenade.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/50736/952854-grenade.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/50736/952854-grenade.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/50736/952854-grenade.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/50736/952854-grenade.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/50736/952854-grenade.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/50736/952854-grenade.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/50736/952854-grenade.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/50736/952854-grenade.jpg","image_tags":"All Images"},"name":"Grenade","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Hugh Fox","site_detail_url":"https://comicvine.gamespot.com/grenade/4005-1286/"},{"aliases":"Dave \nCastiglione","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1287/","birth":null,"count_of_issue_appearances":41,"date_added":"2008-06-06 11:27:01","date_last_updated":"2017-08-06 17:55:35","deck":"Spectral is one of the first openly gay characters in comic books. His powers were related to each color in the visible light spectrum.","description":"

\"Spectral\"
Spectral
Powers

Spectral has the power to surround himself in a sheath of flame, with different colors giving him a different ability.

Red - berserker strength

Orange - fire and heat generation

Yellow - flight and wind bursts

Green - healing, plant control

Blue - water control and ability to survive underwater, unassisted

Indigo - the ability to survive, unassisted, in space as well as those within in close proximity

Violet - invulnerability
 
Dave Castiglione runs an Italian bakery in San Francisco's North Beach which has been in his family for three generations. Not even his new powers can keep him from making sure his customers get their daily bread ! When the Jumpstart hit Dave , he gained a spectrum of ultranormal abilites, The powers in his spectrum come in seven forms, each marked by a flame of a different color--so he could be the most powerful Stranger of them all !

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":1,"id":1287,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/50736/952836-spectral.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/50736/952836-spectral.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/50736/952836-spectral.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/50736/952836-spectral.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/50736/952836-spectral.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/50736/952836-spectral.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/50736/952836-spectral.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/50736/952836-spectral.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/50736/952836-spectral.jpg","image_tags":"All Images"},"name":"Spectral","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Dave Castiglione","site_detail_url":"https://comicvine.gamespot.com/spectral/4005-1287/"},{"aliases":"Elena LaBrava","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1288/","birth":null,"count_of_issue_appearances":54,"date_added":"2008-06-06 11:27:04","date_last_updated":"2017-08-06 18:00:19","deck":"Lady Killer is a member of the Strangers. Her ability is unerring aim.","description":"

Elena LaBrava is a thriving fashion designer who takes the San Francisco cable car every morning for inspiration. One morning, the cable car she is riding is struck with a mysterious lightning bolt that imbues her with ultra power. The ability she gains is perfect aim; she can always hit her target with anything she can throw.

On the same day she gained her abilities, she also met other similarly-powered people that were all determined to find out where their powers came from. They called themselves the Strangers, with Lady Killer taking charge of the team's image and direction.

Throughout the team's run Elena functions as their sole financial backer and unoffical leader.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":2,"id":1288,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5994353-img_7380.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5994353-img_7380.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5994353-img_7380.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5994353-img_7380.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5994353-img_7380.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5994353-img_7380.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5994353-img_7380.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5994353-img_7380.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5994353-img_7380.jpg","image_tags":"All Images"},"name":"Lady Killer","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Elena LaBrava","site_detail_url":"https://comicvine.gamespot.com/lady-killer/4005-1288/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1289/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:27:03","date_last_updated":"2011-05-05 16:43:24","deck":"Naiad is a member of TNTNT. She has power over water, conjuring and controlling it. Her powers are both mystical and scientific in nature.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37649/","id":37649,"name":"TNTNT","issue_number":"3"},"gender":2,"id":1289,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/282048-67056-naiad.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/282048-67056-naiad.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/282048-67056-naiad.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/282048-67056-naiad.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/282048-67056-naiad.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/282048-67056-naiad.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/282048-67056-naiad.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/282048-67056-naiad.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/282048-67056-naiad.jpg","image_tags":"All Images,Naiad"},"name":"Naiad","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/naiad/4005-1289/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1290/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:26:54","date_last_updated":"2011-05-05 16:44:48","deck":"Tugun is a member of TNTNT.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37649/","id":37649,"name":"TNTNT","issue_number":"3"},"gender":1,"id":1290,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/282193-62440-tugun.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/282193-62440-tugun.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/282193-62440-tugun.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/282193-62440-tugun.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/282193-62440-tugun.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/282193-62440-tugun.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/282193-62440-tugun.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/282193-62440-tugun.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/282193-62440-tugun.jpg","image_tags":"All Images,Tugun"},"name":"Tugun","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/tugun/4005-1290/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1291/","birth":null,"count_of_issue_appearances":28,"date_added":"2008-06-06 11:26:54","date_last_updated":"2012-08-27 03:58:20","deck":"J.D. Hunt is a businessman that has a strong disdain for the Strangers.","description":"

The owner and founder of NuWare, J.D. Hunt has as many enemies as he does money. Through his company, J.D. Hunt has created the largest supplier of wetware technology available on the planet. With wetware bio-enhancements, you too can be an ultra ...for a very large price. Hunt located NuWare in San Francisco for two reasons: the Bay Area is the center point of all the leading biotech firms, and Hunt had too many enemies back in his home state of Texas.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37354/","id":37354,"name":"Jumpstart!","issue_number":"1"},"gender":1,"id":1291,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/282420-195897-j-d-hunt.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/282420-195897-j-d-hunt.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/282420-195897-j-d-hunt.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/282420-195897-j-d-hunt.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/282420-195897-j-d-hunt.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/282420-195897-j-d-hunt.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/282420-195897-j-d-hunt.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/282420-195897-j-d-hunt.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/282420-195897-j-d-hunt.jpg","image_tags":"All Images,J.D. Hunt"},"name":"J.D. Hunt","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/jd-hunt/4005-1291/"},{"aliases":"Gaius Julius Hunt","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1292/","birth":null,"count_of_issue_appearances":9,"date_added":"2008-06-06 11:25:52","date_last_updated":"2021-05-21 11:04:47","deck":"Guy Hunt is the son of J.D. Hunt, the president of NuWare.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-38080/","id":38080,"name":"Mangled!","issue_number":"2"},"gender":1,"id":1292,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11149/111492655/7978926-guyhunt93060.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11149/111492655/7978926-guyhunt93060.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11149/111492655/7978926-guyhunt93060.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11149/111492655/7978926-guyhunt93060.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11149/111492655/7978926-guyhunt93060.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11149/111492655/7978926-guyhunt93060.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11149/111492655/7978926-guyhunt93060.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11149/111492655/7978926-guyhunt93060.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11149/111492655/7978926-guyhunt93060.jpg","image_tags":"All Images"},"name":"Guy Hunt","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Gaius Julius Hunt","site_detail_url":"https://comicvine.gamespot.com/guy-hunt/4005-1292/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1294/","birth":null,"count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:01","date_last_updated":"2011-05-05 16:54:06","deck":"Doctor Horla works in La Clinique Du Parsival, a confidential medical clinic in Andorra. He is hired to help care for and cure Atom Bob of the Strangers.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105290/","id":105290,"name":"The Subject Is... Taboo!","issue_number":"23"},"gender":1,"id":1294,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/304392-60462-dr-horla.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/304392-60462-dr-horla.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/304392-60462-dr-horla.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/304392-60462-dr-horla.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/304392-60462-dr-horla.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/304392-60462-dr-horla.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/304392-60462-dr-horla.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/304392-60462-dr-horla.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/304392-60462-dr-horla.jpg","image_tags":"All Images,Doctor Horla"},"name":"Dr. Horla","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/dr-horla/4005-1294/"},{"aliases":"Theoderic\nKing of the Visigoths","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1295/","birth":null,"count_of_issue_appearances":15,"date_added":"2008-06-06 11:26:45","date_last_updated":"2021-08-16 21:13:00","deck":"Teknight is a robot inhabited by the soul of an ancient warrior and a former king of Gaul.","description":"

In the the year 451, Attila the Hun swept into Gaul, where he confronted by the Romans and the Visigoths. The Visigoth king, Theoderic, had the superior army--so Attila resorted to sorcery. The wizard Boneyard killed Theoderic with the Sword of Fangs, Theoderic 's spirit, stunned by this sudden reversal, was unable to leave Earth. Then in 1993, J.D. Hunt built a suit of battle armor based on Theoderic 's armor ...and Theoderic's spirit returned with a vengeance!

He is based on the real Theodoric I , king of the visigoths who fought with the Hunnish king Attila in the battle of Chalons in 451. Theodoric died in the battle historically and his effort contributed to the victory of the roman-goth army and the continuation of christian Europe.

\"Theoderic\"
Theoderic
","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39361/","id":39361,"name":"Chalk ","issue_number":"10"},"gender":1,"id":1295,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/298490-57236-teknight.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/298490-57236-teknight.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/298490-57236-teknight.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/298490-57236-teknight.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/298490-57236-teknight.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/298490-57236-teknight.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/298490-57236-teknight.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/298490-57236-teknight.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/298490-57236-teknight.jpg","image_tags":"All Images,Teknight"},"name":"Teknight","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-5/","id":5,"name":"Robot"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Theoderic","site_detail_url":"https://comicvine.gamespot.com/teknight/4005-1295/"},{"aliases":"Candy","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1296/","birth":null,"count_of_issue_appearances":47,"date_added":"2008-06-06 11:27:09","date_last_updated":"2021-05-12 15:05:08","deck":"Electrocute is an android that gained sentience and the power to generate electricity.","description":"

History

Originally designed as a pleasure android, Candy was given sentience when she was struck on a cable car along with the other members of the Strangers. Along with consciousness, she gained the ability to generate electricity, along with abilities given to her robotic form, strength and durability. However we never saw her use of physical force, she uses only electricity.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":2,"id":1296,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5994054-img_7386.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5994054-img_7386.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5994054-img_7386.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5994054-img_7386.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5994054-img_7386.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5994054-img_7386.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5994054-img_7386.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5994054-img_7386.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5994054-img_7386.jpg","image_tags":"All Images"},"name":"Electrocute","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-5/","id":5,"name":"Robot"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Candy","site_detail_url":"https://comicvine.gamespot.com/electrocute/4005-1296/"},{"aliases":"Mr. Duck","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1297/","birth":null,"count_of_issue_appearances":4,"date_added":"2008-06-06 11:26:49","date_last_updated":"2011-05-05 16:44:55","deck":"Waddell is an employee of J.D. Hunt and one of his premiere scientists at NuWare Labs. He was in charge of creating Candy, a highly functional android that became ElectroCute of the Strangers.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37508/","id":37508,"name":"Hey! Hugh! Get Off'a McCloud!","issue_number":"2"},"gender":1,"id":1297,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/303417-93312-waddell.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/303417-93312-waddell.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/303417-93312-waddell.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/303417-93312-waddell.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/303417-93312-waddell.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/303417-93312-waddell.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/303417-93312-waddell.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/303417-93312-waddell.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/303417-93312-waddell.jpg","image_tags":"All Images,Waddell"},"name":"Waddell","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/waddell/4005-1297/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1300/","birth":null,"count_of_issue_appearances":1,"date_added":"2008-06-06 11:26:10","date_last_updated":"2011-05-05 16:53:39","deck":"Beater is an ultra with super strength. He is friends with M.C. Zed and gained his abilities during the Jumpstart, the same phenomena that also created the Strangers.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105287/","id":105287,"name":"The Name Of The Game Is Fear!","issue_number":"20"},"gender":1,"id":1300,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/303348-113298-beater.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/303348-113298-beater.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/303348-113298-beater.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/303348-113298-beater.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/303348-113298-beater.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/303348-113298-beater.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/303348-113298-beater.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/303348-113298-beater.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/303348-113298-beater.jpg","image_tags":"All Images,Beater"},"name":"Beater","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/beater/4005-1300/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1301/","birth":null,"count_of_issue_appearances":1,"date_added":"2008-06-06 11:26:51","date_last_updated":"2011-05-05 16:57:06","deck":"M.C. Zed an ultra that can project blasts of sound waves. He gained his abilities due to the Jumpstart, which gave the Strangers their powers as well.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105287/","id":105287,"name":"The Name Of The Game Is Fear!","issue_number":"20"},"gender":1,"id":1301,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/303335-172216-m-c-zed.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/303335-172216-m-c-zed.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/303335-172216-m-c-zed.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/303335-172216-m-c-zed.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/303335-172216-m-c-zed.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/303335-172216-m-c-zed.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/303335-172216-m-c-zed.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/303335-172216-m-c-zed.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/303335-172216-m-c-zed.jpg","image_tags":"All Images,M.C. Zed"},"name":"M.C. Zed","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/mc-zed/4005-1301/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1304/","birth":null,"count_of_issue_appearances":18,"date_added":"2008-06-06 11:26:49","date_last_updated":"2017-03-23 10:29:52","deck":"Rafferty is a serial killer that only kills people with ultra powers.","description":"

 

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39065/","id":39065,"name":"kirby","issue_number":"8"},"gender":1,"id":1304,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1198364-72287_5154_105285_1_strangers_the_super.jpg","image_tags":"All Images"},"name":"Rafferty","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Rafferty","site_detail_url":"https://comicvine.gamespot.com/rafferty/4005-1304/"},{"aliases":"Balloon Pokemon\r\nPummeluff","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1305/","birth":null,"count_of_issue_appearances":45,"date_added":"2008-06-06 11:26:25","date_last_updated":"2016-05-17 05:42:08","deck":"Jigglypuff is a normal type Pokemon, most famously noted for it's appearence in the Super Smash Bros. series of video games.","description":"

Jigglypuff is a normal Pokemon which is of the Balloon species, it has a Hypnotic voice. No one has ever listened to it's whole song as they fall asleep part way through.

Physical Appearance

Height: 1'8'', 0.5m

Weight: 12lbs, 5.5kg

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-530292/","id":530292,"name":"Volume 3","issue_number":"3"},"gender":0,"id":1305,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5212921-039jigglypuff.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5212921-039jigglypuff.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5212921-039jigglypuff.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5212921-039jigglypuff.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5212921-039jigglypuff.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5212921-039jigglypuff.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5212921-039jigglypuff.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5212921-039jigglypuff.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/5212921-039jigglypuff.png","image_tags":"All Images"},"name":"Jigglypuff","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-8/","id":8,"name":"Animal"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-3822/","id":3822,"name":"Nintendo"},"real_name":"Jigglypuff","site_detail_url":"https://comicvine.gamespot.com/jigglypuff/4005-1305/"},{"aliases":"Bob Hardin\nThe Pilgrim","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1306/","birth":null,"count_of_issue_appearances":42,"date_added":"2008-06-06 11:27:03","date_last_updated":"2011-06-08 09:53:09","deck":"Atom Bob is the idealistic member of the Strangers, but the temptation of power was too much for him. He became a secret villain known as Pilgrim.","description":"

History

 
Atom Bob was one of the fifty some people present on a cable car that was struck with a burst of energy from The Entity on The Moon, which imbued all of the passengers with superpowers. Bob Hardin was on the cable car with his friend who later came to use the moniker Grenade. They both joined the group of ultras known as The Strangers. Atom Bob was arguably one of the most powerful members, but his control over his power was tenuous at best . This later drove him to become the villain known as Pilgrim. 
 

Powers

 
He had the ability to change things. Originally this was changing one object into another (sucha as baseballs to apples), but he later learned that he could also manipulate intangible things as well (love to hate, etc).","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-232330/","id":232330,"name":"Countdown To Ultraverse","issue_number":"1"},"gender":1,"id":1306,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/281956-39602-the-pilgrim.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/281956-39602-the-pilgrim.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/281956-39602-the-pilgrim.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/281956-39602-the-pilgrim.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/281956-39602-the-pilgrim.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/281956-39602-the-pilgrim.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/281956-39602-the-pilgrim.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/281956-39602-the-pilgrim.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/281956-39602-the-pilgrim.jpg","image_tags":"All Images,Atom Bob"},"name":"Atom Bob","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":"Bob Hardin","site_detail_url":"https://comicvine.gamespot.com/atom-bob/4005-1306/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1307/","birth":null,"count_of_issue_appearances":7,"date_added":"2008-06-06 11:26:48","date_last_updated":"2011-05-05 16:42:34","deck":"Byter is the lacky of the Pilgrim, an ultra intent on destroying the Strangers.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39496/","id":39496,"name":"Homeboy!","issue_number":"15"},"gender":1,"id":1307,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/296737-174134-byter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/296737-174134-byter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/296737-174134-byter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/296737-174134-byter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/296737-174134-byter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/296737-174134-byter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/296737-174134-byter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/296737-174134-byter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/296737-174134-byter.jpg","image_tags":"All Images,Byter"},"name":"Byter","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/byter/4005-1307/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1308/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:26:50","date_last_updated":"2011-05-05 16:43:48","deck":"Like Brazen, Gangsta channels the power of Ra, the Sun god of Egyptian mythology.","description":"
Gangsta can channel the sun god, Ra, magic and wears an ankh. He is a good person.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39496/","id":39496,"name":"Homeboy!","issue_number":"15"},"gender":1,"id":1308,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/296719-14188-gangsta.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/296719-14188-gangsta.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/296719-14188-gangsta.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/296719-14188-gangsta.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/296719-14188-gangsta.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/296719-14188-gangsta.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/296719-14188-gangsta.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/296719-14188-gangsta.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/296719-14188-gangsta.jpg","image_tags":"All Images,Gangsta"},"name":"Gangsta","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/gangsta/4005-1308/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1309/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:26:21","date_last_updated":"2011-05-05 16:43:54","deck":"Brazen is the partner of Gangsta and they share their special ability to channel the powers of Ra, the sun god.","description":"

Brazen is the partner of Gangsta, a gang leader and enforcer. They have the ability to channel the powers of Ra, the sun god. They have a limit, however: Gangsta can only use his special powers during the day and Brazen can only use them at night. They also serve as energy sources for each other, so if Gangsta is defeated at night, Brazen won't be able to access her abilities.

Brazen was approached by Pilgrim to join his gang and defeat The Strangers, thought they only met defeat. She has not been seen since their defeat.

It has been revealed that Brazen is the mother of Zip Zap, the super-fast member of the Strangers.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39496/","id":39496,"name":"Homeboy!","issue_number":"15"},"gender":2,"id":1309,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/296720-120725-brazen.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/296720-120725-brazen.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/296720-120725-brazen.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/296720-120725-brazen.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/296720-120725-brazen.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/296720-120725-brazen.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/296720-120725-brazen.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/296720-120725-brazen.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/296720-120725-brazen.jpg","image_tags":"All Images,Brazen"},"name":"Brazen","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/brazen/4005-1309/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1310/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:26:08","date_last_updated":"2011-05-05 16:44:25","deck":"Generator X can generate anything: magnetism, emotions, lightning.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39640/","id":39640,"name":"Party Time!","issue_number":"16"},"gender":1,"id":1310,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/298160-123325-generator-x.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/298160-123325-generator-x.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/298160-123325-generator-x.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/298160-123325-generator-x.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/298160-123325-generator-x.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/298160-123325-generator-x.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/298160-123325-generator-x.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/298160-123325-generator-x.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/298160-123325-generator-x.jpg","image_tags":"All Images,Generator X"},"name":"Generator X","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/generator-x/4005-1310/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1311/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:26:20","date_last_updated":"2011-05-05 16:43:26","deck":"Lightshow uses her light-based abilities to take down the Strangers.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39640/","id":39640,"name":"Party Time!","issue_number":"16"},"gender":2,"id":1311,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/296725-13052-lightshow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/296725-13052-lightshow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/296725-13052-lightshow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/296725-13052-lightshow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/296725-13052-lightshow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/296725-13052-lightshow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/296725-13052-lightshow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/296725-13052-lightshow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/296725-13052-lightshow.jpg","image_tags":"All Images,Lightshow"},"name":"Lightshow","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/lightshow/4005-1311/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1312/","birth":null,"count_of_issue_appearances":6,"date_added":"2008-06-06 11:26:46","date_last_updated":"2011-05-05 16:43:34","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39640/","id":39640,"name":"Party Time!","issue_number":"16"},"gender":0,"id":1312,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/1402759-rodent1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/1402759-rodent1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/1402759-rodent1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/1402759-rodent1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/1402759-rodent1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/1402759-rodent1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/1402759-rodent1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/1402759-rodent1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/1402759-rodent1.jpg","image_tags":"All Images,Furries,Rodent"},"name":"Rodent","origin":null,"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-447/","id":447,"name":"Malibu"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/rodent/4005-1312/"},{"aliases":"Facemysta","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1313/","birth":null,"count_of_issue_appearances":4,"date_added":"2008-06-06 11:26:25","date_last_updated":"2011-05-05 16:50:07","deck":"Evil genius and enemy of Mysta of the Moon.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-34701/","id":34701,"name":"Gay Decievers","issue_number":"6"},"gender":1,"id":1313,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"The Face","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/the-face/4005-1313/"},{"aliases":"Auro \nLord Of Jupiter ","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1314/","birth":null,"count_of_issue_appearances":31,"date_added":"2008-06-06 11:26:52","date_last_updated":"2011-11-21 04:44:11","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-152725/","id":152725,"name":"Women Warriors Of The Moon","issue_number":"1"},"gender":1,"id":1314,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1443775-auro_lord_of_jupiter_fiction_house.jpg","image_tags":"All Images"},"name":"Auro","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/auro/4005-1314/"},{"aliases":"Gale Allen \nGirl Squadron ","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1315/","birth":null,"count_of_issue_appearances":51,"date_added":"2008-06-06 11:26:39","date_last_updated":"2011-11-21 04:44:11","deck":"Gale Allen & Her Girl Squadron","description":"

Gale Allen was the leader of the Girl Squadron, who with space ship, ray guns and high heels battled space villains & monsters from Mercury to Pluto.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-152733/","id":152733,"name":"Space Islands Of Destruction","issue_number":"4"},"gender":2,"id":1315,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/828336-gale_allen.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/828336-gale_allen.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/828336-gale_allen.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/828336-gale_allen.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/828336-gale_allen.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/828336-gale_allen.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/828336-gale_allen.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/828336-gale_allen.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/828336-gale_allen.jpg","image_tags":"All Images"},"name":"Gale Allen","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/gale-allen/4005-1315/"},{"aliases":"Marcia Reynolds","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1316/","birth":null,"count_of_issue_appearances":30,"date_added":"2008-06-06 11:26:31","date_last_updated":"2015-07-24 09:21:04","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-170926/","id":170926,"name":"Death Rays from the Sun","issue_number":"43"},"gender":2,"id":1316,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111149159/4641095-4130604136_2e6fa7ee8a_b.jpg","image_tags":"All Images"},"name":"Futura","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":"Marcia Reynolds","site_detail_url":"https://comicvine.gamespot.com/futura/4005-1316/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1317/","birth":null,"count_of_issue_appearances":25,"date_added":"2008-06-06 11:25:40","date_last_updated":"2011-05-05 16:38:01","deck":"Main character of \"The Lost World\".","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-162803/","id":162803,"name":"The Green Legions Of Xalan","issue_number":"21"},"gender":1,"id":1317,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1600437-huntbowman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1600437-huntbowman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1600437-huntbowman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1600437-huntbowman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1600437-huntbowman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1600437-huntbowman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1600437-huntbowman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1600437-huntbowman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1600437-huntbowman.jpg","image_tags":"All Images"},"name":"Hunt Bowman","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/hunt-bowman/4005-1317/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1318/","birth":null,"count_of_issue_appearances":4,"date_added":"2008-06-06 11:26:50","date_last_updated":"2015-07-11 16:15:33","deck":"Queen Lyssa was the female companion to Hunt Bowman in the Lost World title published in the Golden Age Comic Book, Planet Comics by Fiction House. Some stories were later re-printed by AC Comics.","description":"
\"No

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-162803/","id":162803,"name":"The Green Legions Of Xalan","issue_number":"21"},"gender":2,"id":1318,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111149159/4674705-48a.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111149159/4674705-48a.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111149159/4674705-48a.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111149159/4674705-48a.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111149159/4674705-48a.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111149159/4674705-48a.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111149159/4674705-48a.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111149159/4674705-48a.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111149159/4674705-48a.jpg","image_tags":"All Images"},"name":"Lyssa","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"real_name":"Queen Lyssa","site_detail_url":"https://comicvine.gamespot.com/lyssa/4005-1318/"},{"aliases":"Captain Science","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1320/","birth":null,"count_of_issue_appearances":16,"date_added":"2008-06-06 11:26:33","date_last_updated":"2013-01-19 08:50:21","deck":"\"By Space this will not stand!\"","description":"

This tall strong-jawed space ace created by Wally Wood traveled though space and time dropping green badies in their tracks.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105244/","id":105244,"name":"Stormy Tempest","issue_number":"2"},"gender":1,"id":1320,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1061291-captainscience_0.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1061291-captainscience_0.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1061291-captainscience_0.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1061291-captainscience_0.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1061291-captainscience_0.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1061291-captainscience_0.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1061291-captainscience_0.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1061291-captainscience_0.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1061291-captainscience_0.jpg","image_tags":"All Images"},"name":"Captain Science","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-126/","id":126,"name":"Youthful"},"real_name":"Gordon Dane","site_detail_url":"https://comicvine.gamespot.com/captain-science/4005-1320/"},{"aliases":"Ana Thane\nTechnician 3A","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1321/","birth":null,"count_of_issue_appearances":55,"date_added":"2008-06-06 11:27:00","date_last_updated":"2013-02-20 01:05:15","deck":"Mysta of the Moon really was from the moon. A mysterious goddess-like figure who advised and controlled the universe from her headquarters on the moon.","description":"

Appearing regularly in Planet Comics during the late 1940's. In her 1945 origin story, she is the \"sole possessor of the scientific knowledge of the universe.\" The story goes, she was given that knowledge by a scientist, Dr. Kort, in his moon laboratory. The good doctor then conveniently died, leaving Mysta alone on the moon. There, accompanied only by her faithful robot who obeys her telepathic commands, she attempts to bring peace and culture to the universe.

At first Mysta was drawn by artist Fran Hopper as a blonde, but later artists gave her silver hair, as benefited her association with our silvery satellite.

By 1948, Mysta had left the moon for the Earth and a more traditional superhero situation. Posing as \"technician grade three\" Ana Thane, Mysta was now working for the Safety Council, saving the planet.

Created by...

Ross Gallun.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-152783/","id":152783,"name":null,"issue_number":"35"},"gender":2,"id":1321,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1598037-mysta_4.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1598037-mysta_4.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1598037-mysta_4.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1598037-mysta_4.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1598037-mysta_4.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1598037-mysta_4.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1598037-mysta_4.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1598037-mysta_4.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1598037-mysta_4.jpg","image_tags":"All Images,gallery"},"name":"Mysta of the Moon","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/mysta-of-the-moon/4005-1321/"},{"aliases":"Bron II","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1323/","birth":null,"count_of_issue_appearances":9,"date_added":"2008-06-06 11:26:20","date_last_updated":"2015-06-23 14:23:57","deck":null,"description":"

Bron is the Robot companion of Mysta of the Moon.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-152783/","id":152783,"name":null,"issue_number":"35"},"gender":0,"id":1323,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1189068-bron.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1189068-bron.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1189068-bron.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1189068-bron.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1189068-bron.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1189068-bron.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1189068-bron.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1189068-bron.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1189068-bron.jpg","image_tags":"All Images"},"name":"Bron","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-5/","id":5,"name":"Robot"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/bron/4005-1323/"},{"aliases":"Cal Martin\nTech Carson","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1324/","birth":null,"count_of_issue_appearances":48,"date_added":"2008-06-06 11:26:30","date_last_updated":"2021-06-25 04:13:40","deck":"Rocket man is an inventor who created a jetpak, and made one for his fiance, and together, they fight crime and nazis over europe.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-155125/","id":155125,"name":"Scoop Comics","issue_number":"1"},"gender":1,"id":1324,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11131/111318833/8040986-rocketman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11131/111318833/8040986-rocketman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11131/111318833/8040986-rocketman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11131/111318833/8040986-rocketman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11131/111318833/8040986-rocketman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11131/111318833/8040986-rocketman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11131/111318833/8040986-rocketman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11131/111318833/8040986-rocketman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11131/111318833/8040986-rocketman.jpg","image_tags":"All Images"},"name":"Rocketman","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1884/","id":1884,"name":"Harry A. Chesler/Dynamic"},"real_name":"Cal Martin","site_detail_url":"https://comicvine.gamespot.com/rocketman/4005-1324/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1327/","birth":null,"count_of_issue_appearances":96,"date_added":"2008-06-06 11:26:46","date_last_updated":"2012-08-07 17:21:51","deck":"Chase Yale, war correspondent, assumed the role of Commando Yank because he didn't think reporting on the war was doing enough to further his country's cause. \n","description":"

While covering World War II, Chase Yale has a knack for uncovering late-breaking events with serious ramifications.  Since these are best dealt with covertly, he becomes the masked hero Commando Yank. 
 
Although possessing no superpowers, Commando Yank is an excellent fighter. 
 
After the war, Chase works as a \"roving telecaster.\"

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-143893/","id":143893,"name":"The Voice","issue_number":"6"},"gender":1,"id":1327,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/160996-35616-commando-yank.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/160996-35616-commando-yank.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/160996-35616-commando-yank.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1867/160996-35616-commando-yank.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/160996-35616-commando-yank.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/160996-35616-commando-yank.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/160996-35616-commando-yank.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/160996-35616-commando-yank.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/160996-35616-commando-yank.jpg","image_tags":"All Images,gallery"},"name":"Commando Yank","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"real_name":"Chase Yale","site_detail_url":"https://comicvine.gamespot.com/commando-yank/4005-1327/"},{"aliases":"Jack Weston\nJack Burton\nThe One Man Army","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1329/","birth":null,"count_of_issue_appearances":85,"date_added":"2008-06-06 11:25:40","date_last_updated":"2022-01-25 09:36:33","deck":"Army Private Jack Weston puts on a patriotic costume to fight the enemies of America in the 1940s with nothing more than his natural agility and quick wits.","description":"

The Fawcett Years

\"Minute
Minute Man

Jack Weston longed for being more useful to than a normal army private. While being stationed at the army’s , Jack trains himself to the pinnacle of human perfection. Donning a patriotic costume, Jack becomes “A One Man Army” to fight enemy agents as Minute Man. His identity as an undercover patriot is known to General Milton, who sends Jack on unsanctioned missions.

DC: A Life Too Short

\"Minute
Minute Man and Starman

In Post-Crisis on Infinite Earths, Jack Weston continued to be one of the Mystery Men of World War II. He was among a small group of heroes of the 1940s called upon by the wizard Shazam to aid in his fight against his daughter Blaze and the Seven Deadly Enemies of Man. Blaze was defeated and Shazam contained the Seven within ridiculous containment shells. Little was seen of Jack Weston as Minute Man after that, however, we know he survived the War as he appeared in Fawcett City. Well into his golden years, Jack, along with Jim Barr and Alan Armstrong, appeared on Whiz Radio to reiterate a battle with Captain Nazi towards the end of WWII.

Jack was still involved in governmental affairs when Jim Barr sought him out to help clear his name. Old newsreel footage turned up implicating Bulletman conspiring with Nazis in sinking the Normandie ocean liner in . Jim was actually on a secret assignment in with the golden age Starman when Normandie had sunk. Jim sought out Jack, who issued the assignment, in hopes he would be released from his oath of secrecy. This would enable him to reveal details of his secret mission in order to establish his alibi. Jack was supposedly shot by Neo-Nazi, thus preventing this from happening. However, Jim was cleared of charges despite this when the true saboteur, Laslo the Poser, stepped up and told the truth.

Death

Jack, along with his children and grandchildren, are killed their sleep by an unknown assassin at their home in Clearwater, Florida. As Minute Man, Jack was one of three patriotic superhero bloodlines (alongside of Mr. America and General Glory) wiped out by the efforts of Vandal Savage and the Fourth Reich. Savage was attempting to stop the regular occurrence of relatives assuming the patriotic identities of their loved ones.

Skills and Abilities

With no super-abilities, Jack possessed the peak physical strength and endurance of a man of his age that participates in regular intense exercise. He’s a combat veteran with superb hand-to-hand combat skills with a vast knowledge of military weaponry. Jack is also a skilled tactician, strategist and well versed in espionage. His governmental connections provide him with certain degree of access to a variety of resources at his fingertips.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-136958/","id":136958,"name":null,"issue_number":"11"},"gender":1,"id":1329,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/8345193-minuteman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/8345193-minuteman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/8345193-minuteman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/8345193-minuteman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/8345193-minuteman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/8345193-minuteman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/8345193-minuteman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/8345193-minuteman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/8345193-minuteman.jpg","image_tags":"All Images"},"name":"Minute Man","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Jack Weston","site_detail_url":"https://comicvine.gamespot.com/minute-man/4005-1329/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1331/","birth":null,"count_of_issue_appearances":4,"date_added":"2008-06-06 11:25:18","date_last_updated":"2011-05-05 16:45:41","deck":"The side-kick of the Deacon","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-157034/","id":157034,"name":null,"issue_number":"10"},"gender":1,"id":1331,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1187225-mickey_mathews_child_3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1187225-mickey_mathews_child_3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1187225-mickey_mathews_child_3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1187225-mickey_mathews_child_3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1187225-mickey_mathews_child_3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1187225-mickey_mathews_child_3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1187225-mickey_mathews_child_3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1187225-mickey_mathews_child_3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1187225-mickey_mathews_child_3.jpg","image_tags":"All Images"},"name":"Mickey Matthews","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1885/","id":1885,"name":"Holyoke"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/mickey-matthews/4005-1331/"},{"aliases":"Richard Spencer\nBlack Ace\nEspionage","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1332/","birth":null,"count_of_issue_appearances":62,"date_added":"2008-06-06 11:26:57","date_last_updated":"2018-10-16 23:42:30","deck":"The Comic's first super spy, and one of the first characters created by Will Eisner","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-235869/","id":235869,"name":null,"issue_number":"13"},"gender":1,"id":1332,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1448347-black_x.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1448347-black_x.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1448347-black_x.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1448347-black_x.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1448347-black_x.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1448347-black_x.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1448347-black_x.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1448347-black_x.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1448347-black_x.jpg","image_tags":"All Images"},"name":"Black X","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-15/","id":15,"name":"Quality Comics"},"real_name":"Richard Spencer","site_detail_url":"https://comicvine.gamespot.com/black-x/4005-1332/"},{"aliases":"Manhunter\nDan Richards","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1333/","birth":null,"count_of_issue_appearances":123,"date_added":"2008-06-06 11:26:18","date_last_updated":"2016-05-20 10:18:22","deck":"The first costumed Manhunter originally from Quality Comics and later acquired by DC Comics in 1956.","description":"

Disambiguation

This page is for the 1st Manhunter, Dan Richards.

Major Story Arcs

Quality Comics' costumed Manhunter debuted in Police Comics #8 which was written by Tex Blaisdell and drawn by Alex Kotzky. Dan Richards had graduated at the bottom of his Police Academy class while his friend, Jim, had graduated with top honors. When Jim refused to kill for a corrupt politician, Jim was framed for murder. Richards became the Manhunter to prove Jim's innocence and capture the real killer. The Manhunter solved the case and captured the real murderer based on secret files he had gathered on known criminals. Richards continued being the Manhunter whenever the authorities were unable to solve mysteries or capture criminals.

The Manhunter had a dog as a partner named Thor, the Thunderdog, that was always nearby when Richards walked his patrol as a policeman. Thor would join the Manhunter when he blew a supersonic whistle that was inaudible to human ears. Thor was an excellent tracker and attack dog. The Manhunter worked briefly with the All-Star Squadron then later joined the Freedom Fighters. The Manhunter met another costumed hero of the same name, Paul Kirk, when both were members of the All-Star Squadron. Both Manhunters later worked together with the Young All-Stars. The Manhunter continued his crime-fighting career at least into the 1950s. At some point, Richards retired from being the Manhunter.

Richards eventually learned about the ancient sect of Manhunters but not about their evil, murderous plans. Believing the Manhunters to be a force for good, Richards convinced his granddaughter, Marcie Cooper, to join them. During the Millennium event, Richards learned of the evil nature of the Manhunters when Marcie appeared as the Harlequin and attacked him and Molly Mayne Scott. Richards and Molly Scott escaped from the Harlequin but Molly was injured in the process. Richards took Molly to a hospital where she recovered from her injuries.

Later, the Harlequin was defeated by Jade and Obsidian assisted by Richards. The Harlequin was eventually killed in a confrontation between Infinity, Inc and Injustice, Unlimited. A few years later, Richards was murdered by Mark Shaw also known as the Manhunter and the Privateer. Shaw was deranged, assumed the identity of a killer known as Dumas and was killing other Manhunters such as Richards.

Powers/Abilities:

Though he had no superpowers,Manhunter was trained well as a fighter and a gymnast. He was naturally strong, tough and agile. Criminals feared his physical abilities as well as his amazing detective skills. Criminals also feared his dog Thor.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-136261/","id":136261,"name":null,"issue_number":"8"},"gender":1,"id":1333,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/103698-98139-manhunter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/103698-98139-manhunter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/103698-98139-manhunter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/103698-98139-manhunter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/103698-98139-manhunter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/103698-98139-manhunter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/103698-98139-manhunter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/103698-98139-manhunter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/103698-98139-manhunter.jpg","image_tags":"All Images,Manhunter"},"name":"Dan Richards","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Donald Richards","site_detail_url":"https://comicvine.gamespot.com/dan-richards/4005-1333/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1334/","birth":null,"count_of_issue_appearances":1,"date_added":"2008-06-06 11:25:28","date_last_updated":"2011-05-05 16:55:47","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105215/","id":105215,"name":null,"issue_number":"30"},"gender":2,"id":1334,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Shanghai Lil","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/shanghai-lil/4005-1334/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1336/","birth":null,"count_of_issue_appearances":13,"date_added":"2008-06-06 11:26:00","date_last_updated":"2016-04-13 14:12:31","deck":"1st. app; Topolino Più #6.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-176423/","id":176423,"name":"Topolino e le rane saltatrici","issue_number":"1468"},"gender":2,"id":1336,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/5150310-croppedimage318436-zenobiaintera.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/5150310-croppedimage318436-zenobiaintera.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/5150310-croppedimage318436-zenobiaintera.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/5150310-croppedimage318436-zenobiaintera.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/5150310-croppedimage318436-zenobiaintera.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/5150310-croppedimage318436-zenobiaintera.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/5150310-croppedimage318436-zenobiaintera.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/5150310-croppedimage318436-zenobiaintera.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/5150310-croppedimage318436-zenobiaintera.png","image_tags":"All Images"},"name":"Zenobia","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-8/","id":8,"name":"Animal"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/zenobia/4005-1336/"},{"aliases":"Susan Kent\nBulletgirl","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1337/","birth":null,"count_of_issue_appearances":172,"date_added":"2008-06-06 11:27:23","date_last_updated":"2021-05-09 08:16:40","deck":"Susan Kent was the girlfriend of Jim Barr. When she discovered he was Bulletman, she wanted in on the action. Jim constructed a gravity regulator helmet to match his and made Susan his crime fighting partner, Bulletgirl.","description":"

Background

Bulletgirl was originally a character from Fawcett comics. When DC acquired the Fawcett characters, Bulletman and Bulletgirl were among them. She was incorporated to the pre-crisis universe of earth-S and later became one of the golden age heroes from the main universe, but always keeping an strong connection to Bulletman and Captain Marvel world, also originally Fawcett properties.

History

The Fawcett Years

\"Bulletgirl\"
Bulletgirl

Susan Kent was the daughter of police officer Sgt. Kent, who often worked with forensic scientist Jim Barr. She started out as Jim’s lab assistant and later his girlfriend. It wasn’t long before Susan discovered Jim’s alter ego as Bulletman and wanted to share in his adventures. Jim manufactured another gravity regulator helmet for her, which enabled her to become his partner Bulletgirl. As Bulletman and Bulletgirl, the two made a formidable fighting team and were often known as the “Flying Detectives”. The two would go on to fight such villains as the Black Rat, the Black Spider, Dr. Riddle, the Murder Prophet, the Weeper, and the common gang of Nazi saboteurs. The duo would eventually add Bulletboy and Bulletdog (their pet) to the Bullet Family.

As Bulletgirl, Susan was a founding member of the Crime Crusader Club along with Bulletman, Minute Man and Captain Marvel Jr.

DC: Her Life and Times

Before Crisis on Infinite Earths, Bulletman and Bulletgirl lived on Earth-S in the DC Universe along with the other Fawcett heroes. During this time, Bulletgirl was part of the Squadron of Justice (along with Bulletman, Spy Smasher, Ibis, Mr. Scarlet and Pinky), which would meet the Justice League of America (Earth-1) and the Justice Society of America (Earth-2) in what was called a \"Crisis on Multiple Earths\". The three teams fought King Kull and villains from all three Earths.

In Post-COIE, Susan Kent continued to be one of the Mystery Men of World War II along with her boyfriend Jim Barr. Susan was among a small group of heroes of the 1940s called upon by the wizard Shazam to aid in his fight against his daughter Blaze and the Seven Deadly Enemies of Man. Blaze was defeated and Shazam contained the Seven within ridiculous containment shells. It is yet to be mentioned if Bulletgirl was a part of the All Star Squadron during WWII or part of another team (Crime Crusader Club) combining all former Fawcett heroes

Susan married Jim Barr and later gave birth to their daughter, Deanna. Susan’s final fate is still unclear. She either died (of old age most likely) or is retired now.

She met Alix Harrower (Bulleteer) at a superhero convention in Bulleteer #3. She criticizes Alix for her revealing costume.

Skills and Abilities

Susan Kent injected herself with the same serum developed by Jim Barr (Bulletman), granting her super strength and a certain degree of invulnerability, allowing her to perform the same power stunts Bulletman does (Master Comics #13 1941).

Equipment

Gravity Regulator Helmet

Abilities:

Flight – The helmet allows the wearer to defy gravity and directional maneuverability even at sonic speeds.

Deflection – An invisible electromagnetic field emitted from the helmet repels approaching objects (such as bullets) from striking the wearer.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-131876/","id":131876,"name":"Here Comes Bulletman","issue_number":"1"},"gender":2,"id":1337,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68435/1941212-america_s_greatest_comics_07___085_bulletgirl.jpg","image_tags":"All Images"},"name":"Bulletgirl","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"real_name":"Susan Kent","site_detail_url":"https://comicvine.gamespot.com/bulletgirl/4005-1337/"},{"aliases":"Laura Wright\nSandra Knight\nBlue Bulleteer\nPhantom Lady\nNightfall","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1338/","birth":"Dec 4, 1920","count_of_issue_appearances":228,"date_added":"2008-06-06 11:27:34","date_last_updated":"2014-02-15 17:57:17","deck":"The seductive magics of the character named Nightveil were created and published by AC Comics, who are famed for their good girl art. She is a founding member of the all-female superhero team, FemForce.","description":"

Origin

Laura Wright was born on December 4, 1920. She began her crime-fighting as the masked Blue Bulleteer using a pair of revolvers as her main weapon. In the 1960's she became the pupil of the wizard Azagoth. He took her to another dimension called Limbo for her magic training. She later reappeared on earth as Nightveil, with her youth regained and ready to fight crime again.

Creation

The story of Nightveil's creation is a complicated one. In the early 1970's, AC Comics began using the Golden Age character of Phantom Lady (aka Sandra Knight) in their titles, believing that the character was now in the Public Domain. They starting out by reprinting her Fox Feature era issues from the 1950's, and eventually began featuring Phantom Lady in their own original stories. However, DC Comics had claimed ownership of the Phantom Lady, stating they had purchased the copyrights of Golden Age Quality Comics characters, including Phantom Lady, Human Bomb, Doll Man and others.

Not wanting to engage in a lawsuit with the larger publisher, AC rewrote their version of the Phantom Lady, changing her name to the Blue Bulleteer and giving her pistols as weapons. They further decided to modernize her character by placing her in the extra-dimensional plane of Limbo with a magical mentor named Azagoth, while decades passed in our world. Laura emerged from Limbo in modern times with new powers and a new identity, calling herself Nightveil, and has since adapted to the current time period.

As it turns out, the copyright to some of Phantom Lady's earlier appearances are now in the Public Domain, while DC continues to maintain that the original Golden Age version published by Quality Comics is owned by their company (this version can be easily distinguished from the Public Domain version since she wears a yellow and green costume, rather than red and blue).

Powers and Paraphernalia

Nightveil wields formidable magical powers including teleportation, levitation, and retrocognition, to name a few. Her powers are connected to her Cloak of Darkness, an inherently evil magical artifact. While this makes her arguably among the most powerful beings on earth, Laura must constantly struggle to keep the evil influence of her Cloak in check. She is at times insecure in her own ability to do so and is disturbed by the possibility that the Cloak may already be corrupting her in some way. Because of this, she has developed a brooding personality and her FemForce teammates often have difficulty relating to her. She spends much of her time in solitude in her private sanctum, located somewhere in the Everglades. She is responsible for bringing Thunderfox, originally a fictional character, to life.

Laura seems to maintain the athleticism and agility from her earlier days as the Blue Bulleteer, but now tends to avoid hand-to-hand combat. How much of her previous fighting proficiency remains is uncertain.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-143109/","id":143109,"name":null,"issue_number":"1"},"gender":2,"id":1338,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/282077-166974-nightveil.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/282077-166974-nightveil.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/282077-166974-nightveil.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/282077-166974-nightveil.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/282077-166974-nightveil.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/282077-166974-nightveil.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/282077-166974-nightveil.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/282077-166974-nightveil.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/282077-166974-nightveil.jpg","image_tags":"All Images,Nightveil /Blue Bulleteer"},"name":"Nightveil","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":"Laura Wright","site_detail_url":"https://comicvine.gamespot.com/nightveil/4005-1338/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1339/","birth":null,"count_of_issue_appearances":2,"date_added":"2008-06-06 11:27:10","date_last_updated":"2011-05-05 16:50:13","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105202/","id":105202,"name":"One Slip","issue_number":"2"},"gender":2,"id":1339,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Queen Reina","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/queen-reina/4005-1339/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1340/","birth":null,"count_of_issue_appearances":12,"date_added":"2008-06-06 11:26:36","date_last_updated":"2011-05-05 16:40:31","deck":null,"description":"

Proxima is an alien from planet Rur, like her archenemy Stardust. She was first seen as leader of Rur's military forces in a war between Rur and Earth. She performed and authorized numerous atrocities, leading to her loss of support by her own people. She was dishonorably discharged and exiled, succeeded by FemParagon. Her successor is equally fierce but seen as less bloodthirsty. In exile, Proxima joined Fearforce, a rival organization to Femforce.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105202/","id":105202,"name":"One Slip","issue_number":"2"},"gender":2,"id":1340,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/37015/799210-proxima1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/37015/799210-proxima1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/37015/799210-proxima1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/37015/799210-proxima1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/37015/799210-proxima1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/37015/799210-proxima1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/37015/799210-proxima1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/37015/799210-proxima1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/37015/799210-proxima1.jpg","image_tags":"All Images"},"name":"Proxima","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/proxima/4005-1340/"},{"aliases":"Dr. Carol Heisler\r\nMadame Grande\r\nThe 50 Ft. Woman","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1341/","birth":null,"count_of_issue_appearances":36,"date_added":"2008-06-06 11:27:34","date_last_updated":"2016-08-04 11:39:23","deck":"Garganta is a member of the all-female team, FemForce, though she was originally targeted by the team member Ms. Victory. Originally she remained 50 ft tall but she has learned to control her size and can now exceed 200 ft.","description":"

History

\"No

Dr. Carol Heisler was researching a cure for arthritis when she mutated herself to a size-changer who grows to giant heights. The transformations initially left her in a confused state of mind , leading to unwitting rampages. She eventually gained better control of her powers and can grow to greater heights by sheer force of will. She has also transformed into a giant whale like creature in the past. She also has telepathic powers which once sent her into a rampage when she read the mind of a man who killed baby seals.

Since gaining control of her powers Carol has been a supporting member of the Femforce. Although she is not a full time member she helps them whenever possible. She prefers to continue her research rather than be a superhero.

Many times Carol fights to save animals and the environment.

Powers

Garganta has the power to grow tall and has been able to go up to around 200ft tall, at one point she was stuck at a height of 50ft tall but now has full control over her powers through practice.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-97162/","id":97162,"name":"Up From The Ashes Rises...Death!","issue_number":"30"},"gender":2,"id":1341,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/282069-110534-garganta.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/282069-110534-garganta.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/282069-110534-garganta.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/282069-110534-garganta.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/282069-110534-garganta.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/282069-110534-garganta.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/282069-110534-garganta.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/282069-110534-garganta.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/282069-110534-garganta.jpg","image_tags":"AC Comics,All Images,Garganta"},"name":"Garganta","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":"Carol Heisler","site_detail_url":"https://comicvine.gamespot.com/garganta/4005-1341/"},{"aliases":"Joan Wayne\nMiss Victory\nVicky\nRad\n","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1342/","birth":null,"count_of_issue_appearances":223,"date_added":"2008-06-06 11:27:38","date_last_updated":"2013-08-15 01:51:21","deck":"Miss Victory is most-famed as being a central member of FemForce, a team of all-female superheroes published by AC Comics in the 80s .","description":"

Origin

It all started in 1941, when we asked Joan (a Washington DC secretary) to be part of a research team. She was the assistant of Dr. Mark Benton at the Colorado Project. The objective sought by the team, under the governance of president Franklin D. Roosevelt, was to find a way to improve human abilities. They were asked to create the perfect soldier. The research progressed well until the moment when Pearl Harbor was bombed by the Japanese military, December 7. The war was truly present for the Americans and Roosevelt wanted to find a way to win.
 
Dr. Benton had created a chemical compound, the V-45. With this experimental vitamin they hoped to produce a \"fighting\" machine with accelerated cellular regeneration. Eager to have concret results, the president asked Dr. Benton to make test directly on humans. This request was out of his personal values and he refused to proceed. He was then replaced by Joan Wayne at the head of the project. Her assistant was Octavia Howard.
 
\"Barton
Barton as test subject
One of their first human subject was the government agent Dan Barton, who was already involved on a mission with Senator Wright. He wore the Black Commando name and tried to stop some Nazi saboteurs.  During a mission to save the life of the president, he decided to take the compound V-45 (without permission) to have superhuman strength. The expected effect was achieved, but at the same time Barton has become mad.  
 
Despite several attemps, Joan Wayne could'nt make a compound without adverse side effects. Then one day she made the V-47, which worked perfectly on her body chemistry. Addition to the super strength, the V-47 allows her to restore her youth for periods of time. With this new powers, she left her works as a scientist. She became a super agent for the government of the United States, under the name of Miss Victory. 

Its only two years later she gathered a team of super woman, called FemForce. The original members, with her as Miss Victory (and leader), was Blue Bulleteer, She-Cat and Rio Rita

Rad

Without meaning to, just thinking about him, Nightveil freed  Black Commando from his restraints 40 years later. Having learned he missed the last 40 years, he wants revenge of Joan Wayne.

\"Rad's
Rad's fighting
He took advantage of a moment or she was in her natural form (old and without power) to force her to take the unstable V-45 drug. That drug, somehow, makes people causing anti-social and cause many relational conflicts. Under this, Joan Wayne became Rad. She has the same power but a very unpleasant personality and intentions unhealthy. For exemple, she likes to see She-Cat suffer instead of helping, as before. Her first goal, in this state, was to disband the FemForce team. 
  
Somehow, Nightveil is then indirectly responsible for the arrival of Rad. 

Not wanting anymore of her leader role, and as the Government considered it a mental aberration, Joan \"Rad\" has been replaced by Colt, a former agent. The FF headquarters has also been moved on Jungle Island, a wild life reserve controlled by Tara Fremont, near Florida.  
 
Given the great loyalty shown by Joan Wayne over the years, the Government takes times to allow her regain her senses. If that moment never comes, they plan to create a new Miss Victory.  Regarding the team, they have not yet decided what they would do. 
  

Rad, still Rad

Several weeks passed and Miss Victory is always Rad. Her attitude is increasingly negative, she cares only for her little person. She is often the cause of various problems that often leads to physical confrontations (including a brawl in a nightclub). She always wins out however, with her superhuman strength. She is often really too strong for everyone in fact. 
 
Colt, the new leader of the team's, wants to recovers the real Joan. Despite her efforts, it did not work. Then Colt and Rad were then involved in few events in Orlando caused by Dr. Pretorius. This man wants eliminate Rad and he's ready to do anything to that. After the altercation, the Doctor's plan did not work. But Rad has not been able to save the life of a child due to negligence on her part.   
 
When government members were informed of events, they have judged Rad inapt and dangerous. Rad/Joan possesses state secrets of the highest importance and they do not want them falling into the wrong hands. After the testimony of Captain Kelly on the issue, they took a decision: Rad must be put under arrest. If necessary, they are ready to kill her.  Captain Kelly does not share this view but this does not make a difference. Kelly made an anonymous call to the leader of FemForce, Colt, to tell her about the intentions of the State. Colt believes this anonymous man and organizes an outing to recover Rad. 
 
While all this happening in her back, Rad has found the Octavia Howard formula, who helps rejuvenate. She targets some elderly rich and socially known and sells this product at high prices. This is an immediate success, Rad has more and more customers and hopes to become very rich.
 

Many attackers, one target

The strike force of the current members of FemForce is perhaps not sufficient to confront Rad. Rad is physically stronger than any member, even Thunderfox. Stardust therefore call for reinforcements:  Paragon,  Scarlet Scorpion, D-Man and Astron. Three teams went searching through the city. Several battles were fought against Rad. Though weakened, she still has the upper hand. But Paragon was finally able to knock her out with the help of  She-Cat. Rad is then securely attached while they wait than the effect of her vitamin disappears.
 
\"Temporarily
Temporarily confined
Two days later Rad reverts to her true form, old, without power. But her personality is Rad or Joan? FemForce takes the risk of giving her the right vitamin, the V-47, hoping the return of Ms. Victory. Another failure...  Rad regains her power to tear away her steel containment's and escapes, smashing through a brick wall, taking care to stun everyone in the passage.  
 
A few days later, Miss Victory arrived at HQ FemForce, a bottle of champagne in hand. Members of FF are wild with joy, they find the real Joan yet. Probably than the V-45 has finally made its effect, with some delay. So they drink to celebrate this long-awaited return. Trickery. Rad was only \"disguised\" as Ms. Victory and her champagne was in fact the product of rejuvenation. Each member of the team rejuvenate and become teenagers. Rad left by breaking another brick wall. 
 
The FemForce teenage heroines want their revenge and are always looking for a way to put Rad out of the circulation. But T.C. Fremont prohibits them from doing anything whatsoever in their condition. They are confined to the HQ.     

For Rad, this was not the end of clashes.  General Robert Gordon, the new FemForce head (at Pentagon) clandestinely hires a group of super-mercenaries to bring her down once and for all, in exchange for a lot of money. Among the villains, there was Rip-Jaw, Valkoray, Lonestar, Kallima, Shred and Frosbite. After several more battles, Rad is weakened but strong enough to come out on top again. Is anyone going to stop her? Who? When?
 

Wonder Woman comparison

Miss Victory has often been compared to Wonder Woman. The two have already been secretary at Washington DC, military, they wear a outfit in the colors of their country and have similar powers. One may ask, who's first appeared? Well, it's Ms. Victory in August 1941. Wonder Woman was created in January 1942.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-181680/","id":181680,"name":"Captain Fearless","issue_number":"1"},"gender":2,"id":1342,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/93246-135281-ms-victory.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/93246-135281-ms-victory.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/93246-135281-ms-victory.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/93246-135281-ms-victory.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/93246-135281-ms-victory.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/93246-135281-ms-victory.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/93246-135281-ms-victory.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/93246-135281-ms-victory.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/93246-135281-ms-victory.jpg","image_tags":"All Images,Ms. Victory"},"name":"Ms. Victory","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1885/","id":1885,"name":"Holyoke"},"real_name":"Joan Wayne","site_detail_url":"https://comicvine.gamespot.com/ms-victory/4005-1342/"},{"aliases":"Nancy Arazello","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1343/","birth":null,"count_of_issue_appearances":44,"date_added":"2008-06-06 11:27:28","date_last_updated":"2013-08-23 19:27:49","deck":"The high flying silver haired beauty named Dragonfly was a normal woman at first, later transformed by a mystic rite into a powerhouse vixen. Like most of FemForce Dragonfly is an original character to AC Comics.","description":"

Origin of character

\"Enter
Enter Dragonfly, circa 1985!
The 1985 debut of the comic book character Nancy Arazello who is the human name of Dragonfly, a member of their all-female superhero team, FemForce, both AC Comics creations by writer and artist Bill Black, and later done by Rik Levins. As Levin develops the character he portrays the human subconscious of Nancy as what truly creates the alter-ego which surfaces as Dragonfly. Tied deeply into what Nancy wishes herself to become.  She was referred by Scarlet Scorpion after the two fought together, however the concept of Dragonfly being a loner, she doesn't feel comfortable if groups. She was portrayed as being nervous when she joined the more experienced FemForce members in their all female group. She is later depicted has having emotional conflict with remaining in her Dragonfly form, realizing she enjoyed remaining in the powerful body. Also she has recently been written to portray a narcissistic and materialistic demeanor, leaving her human persona of Nancy to not resurface.
 
 

History

 
\"John
John Howard Gallegher, the original Dragonfly
During the 1940's, a dedicated student of the occult John Howard Gallegher performed a mystic ritual to open a dimensional gateway allowing an insect deity named Zzarra which gave him super human powers. He would have a brief stint as a costumed post wartime masked man going by the name Dragonfly, battling a few villains before he mysteriously disappeared. As time goes on a young Engineer Kenneth Francis Burton Jr. spends years learning all he can about the mysterious Gallegher, who had died in 1957.  Burton would eventually learn the secrets of the incantations which Gallegher had discovered  in hopes of gaining the same magical super powers.  However, while he is performing the ceremony at his factory, his fiancee Nancy Arazello also an engineer, suddenly walks into the lab at his warehouse just as the bolt of transformative magics are blasted by Zzarra and receives the full force of the unleashed supernatural powers. 
 
\"Kenneth
Kenneth examines Nancy's transformation
As both Ken and Nancy, now in an altered meta-human state, try to make better scene of the situation. Ken begins to explain to Nancy that he had for sometime been investigating the stories behind the original Dragonfly, learning that he gained his abilities though the ancient rituals of the insect deity Zzarra, in hopes of gaining the same powers. However since Nancy had walked into the spell blast and received its magical properties instead, she had now become the new Dragonfly. Ken next runs tests on her new body's properties discovering she obtained super-strength, near invulnerability due to a telekinetic ability, and can fly at amazing speeds. Nancy next goes to visit her sister and letting her in on her new transformation, discussing Ken's treatments and experiments. This however does not sit well with her sister as she tells Nancy that its strange behavior from her paramour. Excusing his actions by rationalizing his behavior and the reasons why he ran the tests on her, Nancy flies off to check back up with Ken at his warehouse.
 
While returning to the warehouse and testing out her powers in the cityscape she flies into a psycho called Skyjack who is being paid to use a helicopter to blast a local skyscraper from being constructed. He shoots off his missiles at the building while construction crews are working on the skyscraper. Dragonfly realizes she can use her telekinesis to hold the skyscraper up until she can rescue all the workers, but the helicopter pilot sees her and shoots her in the back with a barrage of machine-gun fire. Hit and hurt by the bullets and unable to keep aloft or continue lifting the building telekinetically due to her wounds, she falls and lets go of her mental hold on the falling structure and the workers. When Skyjack lands his helicopter and dismounts to finish the job and shoot Dragonfly her telekinetic abilities kick in again, coating her in a protective field and the bullets bounce harmlessly off. Managing to escape, Nancy realizes the limits to her new body and its abilities.
 
\"The
The scorpion, the dragon
Not too long after this encounter Nancy decides to stay in her Dragonfly body and goes with her sister on a shopping spree, hoping to distress and enjoy her new shapely attributes of this body. Talking to her sister further about how she is enjoying the feeling of this powerful new form, and her fears of being hurt after being shot during the previous outing. They walk into an army of giant insects marching downtown and causing destruction of property and endangering people. For an instant Nancy pulls back from the situation until someone is killed and she jumps fully into the battle with the bugs. Being hurt by one of the giant insects she gains assistance from another costumed hero named the Scarlett Scorpion who also happenstances into the scenario. The two defeat the mutated insects and exchange a bit of dialogue, including the Scorpion asking her out.
 
Soon after in her alter-ego as Dragonfly she encounters the man sized insect man going by the name  Mantis Man, who is really biologist Dr. Manning. As Mantis Man, Manning has strength rivaling Dragonfly's superhuman new body, taking vicious blows at her she escapes before he captures her. Mantis Man has a previous encounter earlier on in the career with her predecessor Gallegher, the first Dragonfly, becoming the hateful arch enemy of his. Not surfacing for many years Gallegher was assumed dead, hence the need for the new female version, Nancy becoming the new Dragonfly. Mantis Man than lures Dragonfly into a trap, and attacks her believing her to be his long lost enemy. She is not the same of course, but he beats her up anyway. After being beaten nearly to a pulp, she decides to change to her alter ego, thus causing the customary explosion to occur which startles Mantis Man into releasing her. She immediately tries to change back to Dragonfly but somehow cannot when suddenly another Dragonfly appears, looking like her long lost predecessor.  However he is not the real Dragonfly but another vigilante named Masquerader in disguise. Utilizing a smoke bomb he blinds Mantis Man he rescues Nancy and takes her away to a safe place. Recovering from the intense beating at the villains claws she transforms back into her  Dragonfly body again, returning to defeat Mantis Man once and for all.
 
\"Awaken
Awaken to the unknown
Betrayed, she was than murdered while in her human identity as Nancy Arazello, she awakens into an apparent \"limbo\" of sorts, a plane in between living and not living. A seemingly unknown agent acting as a guide takes her along a the plane and explains to her how to travel to other planes when going through any of the portals. Entering one of these portals she discovers that she no longer retains her superhuman abilities, now simply a normal human being still in her Dragonfly costume. Trying to gain her bearings in this different dimensional plane a group of reptilian looking barbarians than appear and find Nancy alone in a ruined city and accost her, Rough housing her and unable to defend herself without her powers, she is abducted and her life is threatened. Meanwhile on Earth a friend of hers over hears Ken, Nancy's current boyfriend, admit he killed Nancy acting in his alter-ego of  Psiborg

Powers

\"Strength
Strength of a goddess
When Nancy was mystically changed into the form of Dragonfly she acquired several special superhuman abilities while in this form. Reverting back to Nancy would lead her to lose these new traits while in a human form.  First of all she is able to fly, the speeds and altitudes that she is able to reach have not been tested or studied to any extent. Her transformed physical form is also incredibly stronger, now possessing super strength and can comfortably lift and press several tons of weight. Lastly she and is seemingly nearly invulnerable thanks to a change in her brain structure, causing heightened telekinetic abilities that somehow automatically forms a force field around her body.
\"On
On wings of gossamer
Dragonfly can also utilize her telekinetic ability to physically move all sorts of objects or people around, but this is at the expense of depleting her force field. Since gaining the ability to transform into a different body, her physical appearance have also than changed. When in her Dragonfly state she is taller, much more muscular, with white long hair and green pupils with no iris's. When she shifts into to this state she is also able to summon up her costume instantly.
 

Appearance

 
\"In
In one shape or another
Due to Dragonfly/Nancy Arazello's mystical \"body swapping\" power, she now inhabits two totally different sets of female humanoid forms. The first is the actual human body of Nancy Arazello and is a brunette with brown eyes, 5'6 in height, and has a petite frame and has no actual meta-human powers, save transforming into her other body. This second body is the one which has the set of superhuman attributes, having white long hair, green pupils with no iris, tall and muscular reaching 6' in height, a true amazon.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-123620/","id":123620,"name":null,"issue_number":"4"},"gender":2,"id":1343,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/1429612-dragonfly.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/1429612-dragonfly.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/1429612-dragonfly.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/1429612-dragonfly.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/1429612-dragonfly.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/1429612-dragonfly.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/1429612-dragonfly.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/1429612-dragonfly.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/1429612-dragonfly.jpg","image_tags":"All Images"},"name":"Dragonfly","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-335/","id":335,"name":"AC Comics"},"real_name":"Nancy Arazello","site_detail_url":"https://comicvine.gamespot.com/dragonfly/4005-1343/"},{"aliases":"Tim Holt\nRedmask\n","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1345/","birth":null,"count_of_issue_appearances":118,"date_added":"2008-06-06 11:26:33","date_last_updated":"2011-07-12 00:55:12","deck":"An odd variation on the Lone Ranger theme, Tim Holt became the Red Mask in 1954.","description":"

History

Operating from a hidden cave, which is tended by his aide, Zut, the Red Mask uses his unusual arsenal to keep peace in the West. 
 

Weapons

A satchel-like \"war bag\" contains a lariat, bolo, boomerang, and a crossbow with a grappel bolt.  He also wears six-shooters.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-208832/","id":208832,"name":"Tim Holt","issue_number":"14"},"gender":1,"id":1345,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1515402-redmask_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1515402-redmask_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1515402-redmask_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1515402-redmask_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1515402-redmask_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1515402-redmask_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1515402-redmask_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1515402-redmask_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1515402-redmask_1.jpg","image_tags":"All Images"},"name":"Red Mask","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","id":84,"name":"Magazine Enterprises"},"real_name":"Tim Holt","site_detail_url":"https://comicvine.gamespot.com/red-mask/4005-1345/"},{"aliases":"Steve","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1346/","birth":null,"count_of_issue_appearances":142,"date_added":"2008-06-06 11:26:20","date_last_updated":"2012-08-20 21:18:15","deck":"Who was that masked man? No, not the Ranger, the other one!","description":"

To most people saddle tramp / ranch hand Steve (last name unknown as he gave a different one in every town he visited*) was just an another wandering cowpoke, however when the innocent were in danger he would don a black hat, suit of clothes, and mask and ride out as the Durango Kid.

While not as well known today, save for a small group of fans, The Durango Kid was a character played exclusively by Charles Starrett in a series of 68 B-movies produced from 1940 to 1952, and noted for their stunt work (aided in some cases by also speeding up the film.)

The Durango Kid also appeared in a comic book series starting in 1948 which benefited from the early comic artwork of Frank Frazetta.     
 
Later in the series it is revealed that he is the ancestor  of the other feature of the comic Dan Brand The White Indian, and while never stated as such we can then assume that his last name must also be Brand.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-243732/","id":243732,"name":"The Durango Kid","issue_number":"1"},"gender":1,"id":1346,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1510434-durango_kid_0.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1510434-durango_kid_0.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1510434-durango_kid_0.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1510434-durango_kid_0.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1510434-durango_kid_0.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1510434-durango_kid_0.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1510434-durango_kid_0.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1510434-durango_kid_0.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1510434-durango_kid_0.jpg","image_tags":"All Images"},"name":"Durango Kid","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","id":84,"name":"Magazine Enterprises"},"real_name":"Steve Brand","site_detail_url":"https://comicvine.gamespot.com/durango-kid/4005-1346/"},{"aliases":"Ghita","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1348/","birth":null,"count_of_issue_appearances":70,"date_added":"2008-06-06 11:27:03","date_last_updated":"2013-03-20 12:05:56","deck":"A character created by Frank Thorne.","description":"

Ghita of Alizarr is a barbarian warrior like Red Sonja ( Frank Thorne drew Red Sonja comics for Marvel in the seventies), but her adventures have a sexual nature.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105144/","id":105144,"name":null,"issue_number":"7"},"gender":2,"id":1348,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/349792-69331-ghita-of-alizarr.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/349792-69331-ghita-of-alizarr.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/349792-69331-ghita-of-alizarr.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/349792-69331-ghita-of-alizarr.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/349792-69331-ghita-of-alizarr.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/349792-69331-ghita-of-alizarr.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/349792-69331-ghita-of-alizarr.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/349792-69331-ghita-of-alizarr.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/349792-69331-ghita-of-alizarr.jpg","image_tags":"All Images,gallery"},"name":"Ghita of Alizarr","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-823/","id":823,"name":"Eros Comix"},"real_name":"Ghita","site_detail_url":"https://comicvine.gamespot.com/ghita-of-alizarr/4005-1348/"},{"aliases":"Joe the Condor\r\nG-2\r\nJoe Asakura\r\nDirk Daring\r\nJoe Thax","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1353/","birth":null,"count_of_issue_appearances":44,"date_added":"2008-06-06 11:27:13","date_last_updated":"2022-02-12 01:06:32","deck":"Jason is one of the superhero team, The G-force.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116998/","id":116998,"name":"G Force to the Rescue!","issue_number":"1"},"gender":1,"id":1353,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25835/591349-bp07_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25835/591349-bp07_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25835/591349-bp07_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25835/591349-bp07_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25835/591349-bp07_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25835/591349-bp07_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25835/591349-bp07_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25835/591349-bp07_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25835/591349-bp07_.jpg","image_tags":"All Images,Jason (Comics)"},"name":"Jason","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/jason/4005-1353/"},{"aliases":"Jinpei G4 Jimmy the Falcon PeeWee Mickey Dugan","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1354/","birth":null,"count_of_issue_appearances":41,"date_added":"2008-06-06 11:27:09","date_last_updated":"2022-02-12 01:06:44","deck":"keyop is the littlest and weakest, but one of the great heroes for the G-force team.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116998/","id":116998,"name":"G Force to the Rescue!","issue_number":"1"},"gender":1,"id":1354,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25835/591356-battle_of_the_planets_09___under_a_blood_red_sky_02___03.jpg","image_tags":"All Images,Keypop (Comics)"},"name":"Keyop","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/keyop/4005-1354/"},{"aliases":"Ken Washio \nG-1 \nAce Goodheart \nHunter Harris \nKen the Eagle\n","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1355/","birth":null,"count_of_issue_appearances":52,"date_added":"2008-06-06 11:27:12","date_last_updated":"2022-02-12 01:06:46","deck":"Mark is the Leader of the G-force team.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116998/","id":116998,"name":"G Force to the Rescue!","issue_number":"1"},"gender":1,"id":1355,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1614861-1920ken_the_eagle_action_new_psd_jpgcopy.jpg","image_tags":"All Images,Mark"},"name":"Mark","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/mark/4005-1355/"},{"aliases":"Jun the Swan\nG-3 Agatha June Jun Kelly Jennar\nG-2","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1356/","birth":null,"count_of_issue_appearances":47,"date_added":"2008-06-06 11:27:22","date_last_updated":"2022-02-12 01:06:47","deck":"Princess is the female member of the science ninja team known as G-Force. She holds the rank of G-3, is code-named the Swan, and is the demolitions expert on the team.","description":"

Battle of the Planets

\"Princess
Princess in civilian clothes

Princess (occasionally referred to as Jun, her name in the original Japanese animation Gatchaman) has spent her entire life under the care of Director Anderson, the father figure and chief of the team, G-Force. As a young child, Princess was sent to learn meditation in the small village of Danya located within the Himalayan Mountains. She spent six months there, learning under the tutelage of her sensei, Madiana. Since then she's received extensive combat training as a ninja and ,along with the other members of her team, is unmatched in fighting skill against any opponent.

In the present, Princess is sixteen years old. She's been a target of romantic interest from her teammates, Mark and Jason, and acts as a big sister to Keyop. She frequents a bar called Club J, though it's not made clear whether she actually works there. (In the animated version of Battle of the Planets, she owns a bar named Snack Jun.) Of the five G-Force team members, she is ranked third behind Mark and Jason, and her bird designation is a swan. With the other four she becomes part of their ultimate attack, the Whirlwind Pyramid.

Equipment

\"Enjoy
Enjoy the view. It may be your last...

Princess wears a wrist bracelet which enables her to transform by shouting, \"Transmute!\" Her clothes are replaced by a pink mini-skirt uniform with white gloves, boots, and a cape, and a helmet with a long visor made to resemble a bird's bill. Attached to her belt is her weapon of choice: an explosive yo-yo. Its unique design includes a long spike capable of penetrating metal armor. She throws it with unerring accuracy and can choose to either use it as a blunt force weapon or detonate it to destroy more dangerous targets.

She is extremely proficient at riding motorcycles and often uses a technologically advanced version that can transform into a jet-ski. The upper half can hinge open to reveal a large double-barreled blaster weapon.

Crossovers

Princess has teamed up with Cheetara when the team landed on Thundara to help the Thundercats against Spectra.

Also, Princess was found to be a desirable host for the Witchblade , and it fed off both her hate and her innate power until her teammates managed to rescue her from its control.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116998/","id":116998,"name":"G Force to the Rescue!","issue_number":"1"},"gender":2,"id":1356,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25835/591408-princess5.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25835/591408-princess5.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25835/591408-princess5.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25835/591408-princess5.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25835/591408-princess5.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25835/591408-princess5.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25835/591408-princess5.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25835/591408-princess5.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25835/591408-princess5.jpg","image_tags":"All Images,Princess (Comics)"},"name":"Princess","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/princess/4005-1356/"},{"aliases":"Ryu Nakanishi Tiny Harper Hoot Owel Hootie G5 Ollie Keewani Rocky the Owl\nTiny ","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1357/","birth":null,"count_of_issue_appearances":41,"date_added":"2008-06-06 11:26:58","date_last_updated":"2022-02-12 01:06:26","deck":"Tiny is one of the strongest G-force team.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116998/","id":116998,"name":"G Force to the Rescue!","issue_number":"1"},"gender":1,"id":1357,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25835/591372-battle_of_the_planets_10___aftermath___00___fc.jpg","image_tags":"All Images,Tiny (Comics)"},"name":"Tiny","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/tiny/4005-1357/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1358/","birth":null,"count_of_issue_appearances":17,"date_added":"2008-06-06 11:25:28","date_last_updated":"2022-02-12 01:06:48","deck":"Anderson is the Chief of Security of the International Science Organization (ISO) and creator of G-Force. He is Governing Board Member of United Global Alliance (UGA) and uses G-Force to protect Earth from the threat of Spectra led by Zoltar and the Luminous One.","description":"

Anderson is Chief of Security of the International Science Organization, ISO, and the Governing Board Member of the United Global Alliance (UGA). His code name is Chief.

In a letter to United Global President Frances Kane, Chief Anderson outlined his reasons for the creation and deployment of G-Force referencing \"The Spectran Threat\", an alien organization intent on the destruction of Earth. The entirety of the report goes on to outline the capabilities of the G-Force Team, their special abilities, equipment and vehicles and how Anderson intends to use them to destroy the threat of Spectra. Making reference to the now ended Chaos Republic Front War, Anderson is now turning the attention of ISO to spying on and confronting the forces of Spectra.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105111/","id":105111,"name":null,"issue_number":"½"},"gender":1,"id":1358,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/696939-anderson.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/696939-anderson.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/696939-anderson.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/696939-anderson.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/696939-anderson.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/696939-anderson.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/696939-anderson.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/696939-anderson.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/696939-anderson.jpg","image_tags":"All Images,Director Anderson"},"name":"Director Anderson","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":"Anderson","site_detail_url":"https://comicvine.gamespot.com/director-anderson/4005-1358/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1359/","birth":null,"count_of_issue_appearances":13,"date_added":"2008-06-06 11:26:45","date_last_updated":"2011-10-07 09:20:10","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105111/","id":105111,"name":null,"issue_number":"½"},"gender":0,"id":1359,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/55747/2033209-general_andreas_tomak.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/55747/2033209-general_andreas_tomak.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/55747/2033209-general_andreas_tomak.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/55747/2033209-general_andreas_tomak.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/55747/2033209-general_andreas_tomak.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/55747/2033209-general_andreas_tomak.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/55747/2033209-general_andreas_tomak.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/55747/2033209-general_andreas_tomak.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/55747/2033209-general_andreas_tomak.jpg","image_tags":"All Images,G-Force"},"name":"General Andreas Tomak","origin":null,"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-606/","id":606,"name":"Top Cow"},"real_name":"Andreas Tomak","site_detail_url":"https://comicvine.gamespot.com/general-andreas-tomak/4005-1359/"},{"aliases":"Berg Kattse\r\nGalactor\r\nLukan\r\nSolaris","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1360/","birth":null,"count_of_issue_appearances":27,"date_added":"2008-06-06 11:26:49","date_last_updated":"2022-02-12 01:06:49","deck":"Zoltar leads the Alien forces to invade earth, but failed the attempt in the battle with Earth's heroes, The G- Force","description":"

Zoltar was the main villain of the series \"Battle of the Planets\", an American loose adaptation of the Japanese \"Gatchaman\". He was based on Berg Katse, a Gatchaman villain. However the two characters have significant differences. Berg was a high-ranking member of terrorist group Galactor, trying to take over the natural resources of Earth. He appeared to be a normal human but was the result of genetic engineering, fusing together two fraternal twins while in the womb of their mother. As a result Berg was born with both male and female components. His body switched genders numerous times in his life. The process was involuntary in his childhood and teenage years. He learned to control it in adulthood and used both his male and female form as part of a series of disguises. He believed himself to be a superior being. He committed suicide when he discovered his creator Sosai X, an alien, had only created him as a convenient tool and others viewed him as a freak of nature.

In the American adaptation, Zoltar was himself an alien from planet Spectra instead of a human. His planet was invading Earth and did not employ human operatives. His female-half was changed to be a separate character, his sister Mala Latroz. Latroz being an anagram of Zoltar.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116998/","id":116998,"name":"G Force to the Rescue!","issue_number":"1"},"gender":1,"id":1360,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/1035735-zoltar.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/1035735-zoltar.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/1035735-zoltar.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/1035735-zoltar.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/1035735-zoltar.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/1035735-zoltar.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/1035735-zoltar.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/1035735-zoltar.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/1035735-zoltar.jpg","image_tags":"All Images,Artwork,Zoltar"},"name":"Zoltar","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-6371/","id":6371,"name":"Tatsunoko Production"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/zoltar/4005-1360/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1363/","birth":"Sep 14, 1914","count_of_issue_appearances":2,"date_added":"2008-06-06 11:25:56","date_last_updated":"2011-11-22 23:05:08","deck":"Clayton Moore = The Lone Ranger","description":"
\"No

While this beloved actor starred in many Western films and numerous cliffhanger serials, including The Perils of Nyoka, he will best be remembered forever for one role. For many years he played along with his Native American co-star Jay Silverheels, aka Tonto, in The Lone Ranger television show. The most amazing note about the Lone Ranger is that in all his years of fighting crime, he never killed anyone. He was an expert shooter and was able to just wound and not kill.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105071/","id":105071,"name":"The Dangerous Return, Adventure in Burma","issue_number":"25"},"gender":1,"id":1363,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/108995/2097784-clayton_moore_2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/108995/2097784-clayton_moore_2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/108995/2097784-clayton_moore_2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/108995/2097784-clayton_moore_2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/108995/2097784-clayton_moore_2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/108995/2097784-clayton_moore_2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/108995/2097784-clayton_moore_2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/108995/2097784-clayton_moore_2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/108995/2097784-clayton_moore_2.jpg","image_tags":"All Images"},"name":"Clayton Moore","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-159/","id":159,"name":"Non-Fictional"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/clayton-moore/4005-1363/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1364/","birth":"Jul 9, 1917","count_of_issue_appearances":1,"date_added":"2008-06-06 11:26:40","date_last_updated":"2011-11-22 15:25:05","deck":"Kay was a very lovely brown-haired, blue-eyed actress in the 1940's.","description":"
\"No

Kay starred in three Republic Pictures cfliffhanger serials in the 1940's: The Perils of Nyoka, Haunted Harbor and Daredevils of the West, the best known of these being The Perils of Nyoka. Sadly enough, Kay retired way too early from acting to suit her fans in 1945, at the young age of 28. Prior to her brief acting career she had displayed her natural beauty as a model in the 1930's, appearing on the cover of magazines such as Ladies' Home Journal, Life, Look and Redbook. Toward the the end of her life Kay lived in Camden, Maine. She died January 12, 1995 at a hospital in Rockport, Maine.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105071/","id":105071,"name":"The Dangerous Return, Adventure in Burma","issue_number":"25"},"gender":2,"id":1364,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/108995/2097266-cliffhanger_heroines___aldridge__kay___pin_up_1.jpg","image_tags":"All Images"},"name":"Kay Aldridge","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-159/","id":159,"name":"Non-Fictional"},"real_name":"Katharine Gratten Aldridge","site_detail_url":"https://comicvine.gamespot.com/kay-aldridge/4005-1364/"},{"aliases":"The Jungle Girl","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1365/","birth":null,"count_of_issue_appearances":296,"date_added":"2008-06-06 11:27:09","date_last_updated":"2021-12-26 16:36:35","deck":"Nyoka is a lovely white girl who faces countless dangers in the jungle.","description":"
\"No

Nyoka's appearances in the Master Comics title must have been well received, for soon Fawcett Publications gave the heroine her own comicbook. The art in the Fawcett run is superior art, especially in the early issues. The stories are excellent with much action and many thrills. While the Fawcett issues hail from the Golden Age of Comics and are prior to the Comics Code Authority censorship which began in the mid-1950's, there really are not that many bondage covers here. While there is a fair amount of bondage within the stories and Nyoka faces death door multiple times in many issues, this lovely girl is not the traditional Golden Age helpless female. Nyoka shows an unreal amount of resourcefulness and finds ways to get herself out of some of the worst jams one can imagine.

Apparently the Nyoka comicbook was popular, as Republic Pictures made two separate cliffhanger serials based upon the jungle heroine. The first one, Jungle Girl, was produced in 1941 and stars Frances Gifford as Nyoka. It is an excellent serial in it's own right, well above average by the way, but it cannot begin compare to the sequel. The 1942 Republic cliffhanger serial called The Perils of Nyoka is a masterpiece! This writer has over 100 cliffhanger serials in his personal collection and considers The Perils of Nyoka, aka Nyoka and the Tigermen, to be the best serial ever released! Lovely Kay Aldridge stars as Nyoka, with Lorna Gray taking the part of her rival and nemesis, Vultura. Clayton Moore of The Longer Ranger fame gets to act of Nyoka's main assistant and Charles Middleton from the Flash Gordon serials gets the part of Vultura's main ally. Not only are the actors and actresses cast perfectly here, but the chapter cliffhanger endings are quite frankly \"as good as it gets\". While many serials have a few cliffhanger endings that are exceptional, this 15-part serial is lucky enough to have every single cliffhanger as well above average and the vast majority of them are exceptional! Truth be told, there are so many first-rate cliffhanger endings in this serial, that it is almost an impossible task to choose which one is the best of all. As if anything else is needed to make this serial a classic, it is loaded with catfights! There are at least four separate fights between Nyoka and Vultura in this serial. One of the differences between the two Nyoka serials is that the 1941 version looks more like sub-Saharan Africa and the 1942 version reminds one more of North Africa locations. There also is a difference in the quality of the prints. While the 1941 serial is in relatively nice shape, the 1942 version looks even better.

The 1941 cliffhanger serial gave Nyoka the name of Nyoka Meredith. However, the 1942 film changed her name to Nyoka Gordon. The Fawcett comic decided to go with the Gordon name, as it refers to her father as Dr. Gordon.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-257470/","id":257470,"name":null,"issue_number":"1"},"gender":2,"id":1365,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11115/111152996/4264732-cliphrd02h.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11115/111152996/4264732-cliphrd02h.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11115/111152996/4264732-cliphrd02h.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11115/111152996/4264732-cliphrd02h.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11115/111152996/4264732-cliphrd02h.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11115/111152996/4264732-cliphrd02h.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11115/111152996/4264732-cliphrd02h.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11115/111152996/4264732-cliphrd02h.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11115/111152996/4264732-cliphrd02h.jpg","image_tags":"All Images"},"name":"Nyoka","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"real_name":"Nyoka Meredith/Nyoka Gordon","site_detail_url":"https://comicvine.gamespot.com/nyoka/4005-1365/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1366/","birth":null,"count_of_issue_appearances":122,"date_added":"2008-06-06 11:26:28","date_last_updated":"2016-04-13 15:47:31","deck":"Friend of Donald when he was a kid.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-196053/","id":196053,"name":null,"issue_number":"2377"},"gender":2,"id":1366,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/5150412-croppedimage318436-bettylouintera.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/5150412-croppedimage318436-bettylouintera.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/5150412-croppedimage318436-bettylouintera.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/5150412-croppedimage318436-bettylouintera.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/5150412-croppedimage318436-bettylouintera.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/5150412-croppedimage318436-bettylouintera.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/5150412-croppedimage318436-bettylouintera.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/5150412-croppedimage318436-bettylouintera.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/5150412-croppedimage318436-bettylouintera.png","image_tags":"All Images"},"name":"Betty Lou","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-8/","id":8,"name":"Animal"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/betty-lou/4005-1366/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1367/","birth":null,"count_of_issue_appearances":2,"date_added":"2008-06-06 11:26:56","date_last_updated":"2014-03-02 07:36:40","deck":"Mighty warrior in the service of the Witch Queen Alorana.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-132990/","id":132990,"name":"Sinbad and the Eyes of Fire: Part One","issue_number":"1"},"gender":2,"id":1367,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/110802/3673470-natsuki.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/110802/3673470-natsuki.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/110802/3673470-natsuki.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/110802/3673470-natsuki.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/110802/3673470-natsuki.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/110802/3673470-natsuki.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/110802/3673470-natsuki.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/110802/3673470-natsuki.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/110802/3673470-natsuki.jpg","image_tags":"All Images"},"name":"Natsuki","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1986/","id":1986,"name":"Zenescope Entertainment"},"real_name":"Natsuki","site_detail_url":"https://comicvine.gamespot.com/natsuki/4005-1367/"},{"aliases":"General Sherman","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1369/","birth":null,"count_of_issue_appearances":19,"date_added":"2008-06-06 11:25:28","date_last_updated":"2014-02-22 15:12:07","deck":"General Sherman was one of the leading Union Army generals during the Civil War.","description":"

Tradition has been handed down for generations in the South regarding the reported horrors of \"Sherman's March to the Sea\".

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-361818/","id":361818,"name":null,"issue_number":"7"},"gender":1,"id":1369,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/108995/2098315-sherman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/108995/2098315-sherman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/108995/2098315-sherman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/108995/2098315-sherman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/108995/2098315-sherman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/108995/2098315-sherman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/108995/2098315-sherman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/108995/2098315-sherman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/108995/2098315-sherman.jpg","image_tags":"All Images"},"name":"William Sherman","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-159/","id":159,"name":"Non-Fictional"},"real_name":"William Tecumseh Sherman","site_detail_url":"https://comicvine.gamespot.com/william-sherman/4005-1369/"},{"aliases":"Louis The 16th\nLouis-Auguste\nKing Louise XVI","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1375/","birth":"Aug 23, 1754","count_of_issue_appearances":86,"date_added":"2008-06-06 11:25:31","date_last_updated":"2012-11-28 17:17:41","deck":"King of France from May 10, 1774-October 1, 1791. He was crowned King at only age 20 on June 11, 1775.","description":"

Unfortunately for King Louis, an insurrection took place in August of 1792. He was tried by a National Convention and found guilty of high treason. Louis then met with a most grim death by means of the guillotine on January 21, 1793.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-138693/","id":138693,"name":"Benjamin Franklin","issue_number":"65"},"gender":1,"id":1375,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/1038720-louis_xvi.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/1038720-louis_xvi.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/1038720-louis_xvi.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/1038720-louis_xvi.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/1038720-louis_xvi.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/1038720-louis_xvi.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/1038720-louis_xvi.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/1038720-louis_xvi.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/1038720-louis_xvi.jpg","image_tags":"All Images"},"name":"Louis XVI","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-159/","id":159,"name":"Non-Fictional"},"real_name":"Louis-Auguste","site_detail_url":"https://comicvine.gamespot.com/louis-xvi/4005-1375/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1376/","birth":null,"count_of_issue_appearances":23,"date_added":"2008-06-06 11:25:33","date_last_updated":"2012-11-01 16:33:36","deck":"The Man in the Iron Mask is the eponymous yet secondary character in the Alexander Dumas novel, the Man in the Iron Mask. ","description":"

Origin

The character is one of literary origin and whose story has been told in comic book adaptations of the classic novel. The story of the Man in the Iron Mask is tied to that of the Three Musketeers. With a corrupt king on the throne, the Three Musketeers plan to install a secret other member of the royalty on the throne in his place, in this case the king’s secret twin brother that has been hidden away since birth. Having been previously sworn to the service of the king the musketeers saw their actions of imprisoning the twin and guarding him behind an iron mask as deplorable yet they were bound by their service.

Creation

The Man in the Iron Mask was created by Alexandre Dumas. In the early years of comics many different genres were often tried out in comics and one of these genres was to incorporate in illustrated versions of classic novels. The character first appearance was thus in Movie Comics #5 in 1939.

Character Evolution

As the character is based around a single novel, which is primarily the only time his story is told, there is in fact little character evolution. However, in fact the character does mature somewhat through his ordeal, starting as a scared prisoner and evolving into the benevolent King of France.

Major Story Arcs

After his rescue the character is trained by the Three Musketeers to act as a kind would. Due to unforeseen circumstances they are forced to go ahead with their plan despite not being fully prepared. Eventually the king is replaced and the Man in the Iron Mask takes his place to rule peacefully over the land.

Powers and Abilities

The Man in the iron Mask is a regular man, though he shows a natural leadership ability as well as the ability to quickly adapt himself to the training of the Three Musketeers.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-165278/","id":165278,"name":null,"issue_number":"5"},"gender":1,"id":1376,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1072724-ironmask.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1072724-ironmask.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1072724-ironmask.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1072724-ironmask.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1072724-ironmask.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1072724-ironmask.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1072724-ironmask.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1072724-ironmask.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1072724-ironmask.jpg","image_tags":"All Images"},"name":"The Man In The Iron Mask","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2526/","id":2526,"name":"In the Public Domain"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/the-man-in-the-iron-mask/4005-1376/"},{"aliases":"Mark Dagon","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1378/","birth":null,"count_of_issue_appearances":46,"date_added":"2008-06-06 11:25:26","date_last_updated":"2015-01-19 14:34:51","deck":"The last dragon on the Earth, Dragon can shape-shift into human form and walk amongst man.","description":"

Creation

Dragon is a character who was created by Henry Vogel and originally published by Guild Comics. Later the character became property of Hero Comics, he premiered in Southern Knights #1 - The Graphic Novel and appeared in the 1980's.

Origin

The last of the dragons to fly the wide sky's of Earth, Moranderin leads a lonely existance after awakening from his slumber. After his mate and child were slain by men, he found that he could take on the form of a human male, Mark Dagon. Hunting down the killer and having his revenge on the slayer of his family, he wandered the world for a thousand years until meeting up with the Southern Knights, a team of superpowered heroes defending the city of Atlanta Georgia.

He was eventually featured in his own four-issue limited series, which chronicled several of his adventures from the centuries before the other Southern Knights were born.

Powers and Abilities

In dragon form he is immensely strong and tough, can fly and breathe fire. In human form he is no tougher or stronger than a normal human.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-270392/","id":270392,"name":null,"issue_number":"1"},"gender":1,"id":1378,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1222663-dragon1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1222663-dragon1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1222663-dragon1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1222663-dragon1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1222663-dragon1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1222663-dragon1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1222663-dragon1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1222663-dragon1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1222663-dragon1.jpg","image_tags":"All Images"},"name":"Dragon","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-9/","id":9,"name":"Other"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-346/","id":346,"name":"Comics Interview"},"real_name":"Moranderin","site_detail_url":"https://comicvine.gamespot.com/dragon/4005-1378/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1379/","birth":null,"count_of_issue_appearances":31,"date_added":"2008-06-06 11:25:47","date_last_updated":"2017-08-31 18:28:26","deck":"Shiki was tailored to be Yuga's servant before her birth","description":"

Story

\"Shiki\"
Shiki

Her identity and memory become fractured when she was brainwashed by Yuga in her adulthood. He engraves an enchanted snake tattoo on her back as a means to control her. She is told to find a man fit to become the perfect body for the Dark Lord's resurrection. Finding Haohmaru to be that man, she follows him for a chance to take him away to her master. Her soul becomes freed after Haohmaru defeats Yuga. During the year of Yuga's absence, she loses her memory of being Yuga's servant and lives on as a normal woman named Kanae. When Yuga resurrects itself a second time, it sends its new servant, Shadow Asura, to capture Shiki and regain her servitude. He succeeds in restoring her memories as Yuga's servant but the two unexpectedly fall in love. After the two Asuras defeat Yuga, she gives birth to Mikoto.

She leaves her child with Nicotine Caffeine and Haohmaru as her servitude to Yuga made her feel unworthy of being a mother. It is unknown what occurred after this point, but it is strongly implied she died somewhere.

Personality

A sad woman in her heart, she never understood what it is like to be a normal woman. During her time with Yuga, she would give her body and soul to her master's wishes.

Powers

  • Super-speed - Shiki can move herself at amazing speeds.
  • Dark Poisoning - Shiki cast a spell that can leave her opponents confused or poisoned.
  • Life Drain - Shiki can drain her opponent's life to heal herself.
  • Teleportation - Shiki can disappear in a aura of light and reappear in another location.

Fighting Style

Her fighting style is focused in her twin katanas. She uses some unorthodox slashes and some kicks as well. Special moves from her Bust version are integrated into her Slash move set in her later, non-series appearances. Her swords are said to be crafted by the heart of the demon world and given to her by Yuga. In the past, several demons -including Mizuki- tried to get their hands on it.

Other Media

Video Games

Appearances

  • Samurai Shodown 64
  • Samurai Shodown 64: Warriors Rage
  • Samurai Shodown!
  • Samurai Shodown! 2
  • SNK Gals Fighters
  • SVC Chaos: SNK vs. Capcom
  • NeoGeo Battle Coliseum
  • Days of Memories
  • KOF X Garou Densetsu
","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-303808/","id":303808,"name":"-","issue_number":"1"},"gender":2,"id":1379,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1535804-shiki_big.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1535804-shiki_big.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1535804-shiki_big.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1535804-shiki_big.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1535804-shiki_big.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1535804-shiki_big.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1535804-shiki_big.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1535804-shiki_big.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1535804-shiki_big.jpg","image_tags":"All Images"},"name":"Shiki","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2780/","id":2780,"name":"SNK Playmore"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/shiki/4005-1379/"},{"aliases":"Brigit","api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1380/","birth":null,"count_of_issue_appearances":9,"date_added":"2008-06-06 11:25:33","date_last_updated":"2011-05-05 16:43:26","deck":"A dragon who can shape-shift into human form.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-270390/","id":270390,"name":null,"issue_number":"4"},"gender":2,"id":1380,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Serpent","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-9/","id":9,"name":"Other"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-346/","id":346,"name":"Comics Interview"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/serpent/4005-1380/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1381/","birth":"Nov 17, 1493","count_of_issue_appearances":14,"date_added":"2008-06-06 11:25:48","date_last_updated":"2020-12-27 13:18:32","deck":"Paracelsus was a Swiss physician, alchemist, lay theologian, and philosopher of the German Renaissance.","description":"

He was a pioneer in several aspects of the \"medical revolution\" of the Renaissance, emphasizing the value of observation in combination with received wisdom. He is credited as the \"father of toxicology\". Paracelsus also had a substantial impact as a prophet or diviner, his \"Prognostications\" being studied by Rosicrucians in the 1600s. Paracelsianism is the early modern medical movement inspired by the study of his works.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-324487/","id":324487,"name":"Magic","issue_number":"25"},"gender":1,"id":1381,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/4342678-220px-paracelsus.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/4342678-220px-paracelsus.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/4342678-220px-paracelsus.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/4342678-220px-paracelsus.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/4342678-220px-paracelsus.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/4342678-220px-paracelsus.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/4342678-220px-paracelsus.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/4342678-220px-paracelsus.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/4342678-220px-paracelsus.jpg","image_tags":"All Images"},"name":"Paracelsus","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-159/","id":159,"name":"Non-Fictional"},"real_name":"Philippus Aureolus Theophrastus Bombastus von Hohenheim","site_detail_url":"https://comicvine.gamespot.com/paracelsus/4005-1381/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1382/","birth":null,"count_of_issue_appearances":3,"date_added":"2008-06-06 11:26:18","date_last_updated":"2017-06-11 19:57:23","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-433582/","id":433582,"name":null,"issue_number":"12"},"gender":2,"id":1382,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5894995-img_5326.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5894995-img_5326.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5894995-img_5326.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5894995-img_5326.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5894995-img_5326.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5894995-img_5326.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5894995-img_5326.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5894995-img_5326.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5894995-img_5326.jpg","image_tags":"All Images"},"name":"Soliloquy Jones","origin":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human"},"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1984/","id":1984,"name":"Heroic Publishing"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/soliloquy-jones/4005-1382/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1383/","birth":null,"count_of_issue_appearances":1,"date_added":"2008-06-06 11:26:29","date_last_updated":"2011-05-05 16:57:26","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-104992/","id":104992,"name":null,"issue_number":"1"},"gender":0,"id":1383,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Sal Martello","origin":null,"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-346/","id":346,"name":"Comics Interview"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/sal-martello/4005-1383/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1384/","birth":null,"count_of_issue_appearances":1,"date_added":"2008-06-06 11:25:43","date_last_updated":"2011-05-05 16:56:04","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-104992/","id":104992,"name":null,"issue_number":"1"},"gender":0,"id":1384,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Ashira","origin":null,"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-346/","id":346,"name":"Comics Interview"},"real_name":null,"site_detail_url":"https://comicvine.gamespot.com/ashira/4005-1384/"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/concept-details/concept-4015-40617.json b/samples/api-data/concept-details/concept-4015-40617.json new file mode 100644 index 0000000..8a9d560 --- /dev/null +++ b/samples/api-data/concept-details/concept-4015-40617.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Alternate Universe\nMultiverse\nOmniverse\nParallel Universe\nAlternate Timeline\nAlternate Future\nAlternate History","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40617/","count_of_isssue_appearances":2600,"date_added":"2008-06-06 11:27:52","date_last_updated":"2020-08-23 04:39:13","deck":"The generic term for Multiverses or What If...? type scenarios. An Alternate Universe usually features pre-established characters living in different situations from those of the main continuity universe.","description":"

Overview

Alternate Reality

An Alternate Universe is a plot device to create \"what if\" scenarios. They are also used to narrate other sides of a character that may not be possible in the main story arc.

An alternate universe is also referred as an alternate time-line, or alternate future. The alternate futures are possible futures which could happen depending on the actions of the past. However, these futures may actually be separate universes in a what-if scenario.

The Age of Apocalypse is an example of an alternate universe where Professor Xavier was accidentally killed by his own son, Legion when he went back in time to kill Magneto. As a result, Apocalypse ruled this altered timeline in which Xavier had never founded the X-Men.

Alternate Universes are generally very short lived and often created to demonstrate a 'what if' scenario. The Marvel What If? volumes as well as the Marvel Zombies are a good example of this. The comics describing the alternate universes are usually short, and after they are narrated, they disappear.

Alternate universe was also shown on the TV series called Sliders where the four sliders travel to each parallel Earth. These parallel Earths have their own alternate histories which would lead to the present day changes. However, the time travel wasn't involved in creating these alternate universes.

A Parallel Universe is more of a static. An example of this may be an 'opposite' universe, in which the good guys are the bad guys, and the bad guys the good guys. Parallel Universes may be described in mini-arcs, or they may only exist in another Alternate Universe.

Leading up to the year 2000 Chaos! Comics devised a 2 year story arc for all its characters where by all the story-lines of the main characters converged around a single story thread that culminated int he total destruction of their universe. In the year 2000 the Chaos Comics universe was remade by a single character who devised 8 worlds and placed each of the main characters into these worlds, reborn for their stories to continue afresh.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116242/","id":116242,"name":"V For Victory","issue_number":"8"},"id":40617,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/101393-118610-alternate-universe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/101393-118610-alternate-universe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/101393-118610-alternate-universe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/101393-118610-alternate-universe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/101393-118610-alternate-universe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/101393-118610-alternate-universe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/101393-118610-alternate-universe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/101393-118610-alternate-universe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/101393-118610-alternate-universe.jpg","image_tags":"All Images,Alternate Universes"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946696/","id":946696,"name":"Dark Crisis: Worlds Without a Justice League - Wonder Woman; The Martian Squidhunter","site_detail_url":"https://comicvine.gamespot.com/dark-crisis-worlds-without-a-justice-league-wonder/4000-946696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946061/","id":946061,"name":"Chapter Four: Crossovers","site_detail_url":"https://comicvine.gamespot.com/dark-crisis-4-chapter-four-crossovers/4000-946061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946052/","id":946052,"name":"[Untitled]; The Flock; King's Bane","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-tales-from-the-three-kingdom/4000-946052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-942699/","id":942699,"name":"The Search for Barry Allen Part 3","site_detail_url":"https://comicvine.gamespot.com/the-flash-785-the-search-for-barry-allen-part-3/4000-942699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-943840/","id":943840,"name":"The Pillars, Part Three: \"The Fists of the Unworthy\"","site_detail_url":"https://comicvine.gamespot.com/avengers-forever-8-the-pillars-part-three-the-fist/4000-943840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-939722/","id":939722,"name":"The Clockwork Killer, Chapter Four: The Other Side of the Wall","site_detail_url":"https://comicvine.gamespot.com/flashpoint-beyond-4-the-clockwork-killer-chapter-f/4000-939722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-940875/","id":940875,"name":"Into the Spirit World Part One","site_detail_url":"https://comicvine.gamespot.com/demon-wars-the-iron-samurai-1-into-the-spirit-worl/4000-940875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-943901/","id":943901,"name":null,"site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-41/4000-943901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-937271/","id":937271,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/the-jurassic-league-3-part-three/4000-937271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-942890/","id":942890,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-8/4000-942890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929547/","id":929547,"name":"United","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-7-united/4000-929547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929551/","id":929551,"name":"The Clockwork Killer Chapter Two: Gilda the Good Witch","site_detail_url":"https://comicvine.gamespot.com/flashpoint-beyond-2-the-clockwork-killer-chapter-t/4000-929551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-931629/","id":931629,"name":"Empire of the Spider - Part 2","site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-39-empire-of-the-spider-p/4000-931629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-930979/","id":930979,"name":"...Became Thor?","site_detail_url":"https://comicvine.gamespot.com/what-if-miles-morales-4-became-thor/4000-930979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-945578/","id":945578,"name":null,"site_detail_url":"https://comicvine.gamespot.com/transformers-shattered-glass-ii-1/4000-945578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-937609/","id":937609,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-7/4000-937609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920634/","id":920634,"name":"The Clockwork Killer Chapter One","site_detail_url":"https://comicvine.gamespot.com/flashpoint-beyond-1-the-clockwork-killer-chapter-o/4000-920634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-928435/","id":928435,"name":"Empire of the Spider - Part 1","site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-38-empire-of-the-spider-p/4000-928435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-939603/","id":939603,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/oblivion-song-by-kirkman-and-de-felici-6-chapter-s/4000-939603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-931717/","id":931717,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/crossover-the-ten-cent-plague-1-volume-2/4000-931717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916161/","id":916161,"name":"The Clockwork Killer Prologue","site_detail_url":"https://comicvine.gamespot.com/flashpoint-beyond-0-the-clockwork-killer-prologue/4000-916161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918157/","id":918157,"name":"The Anniversary; Father's Day; Controlled Burn","site_detail_url":"https://comicvine.gamespot.com/earth-prime-batwoman-2-the-anniversary-fathers-day/4000-918157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916415/","id":916415,"name":"Lost in the Spider-Verse","site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-37-lost-in-the-spider-ver/4000-916415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916160/","id":916160,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-sandman-universe-nightmare-country-1/4000-916160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-925492/","id":925492,"name":"","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2022-25-years-of-buffy-the-vam/4000-925492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-925010/","id":925010,"name":null,"site_detail_url":"https://comicvine.gamespot.com/angel-5/4000-925010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921510/","id":921510,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-6/4000-921510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909493/","id":909493,"name":"Worlds End","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-5-worlds-end/4000-909493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911318/","id":911318,"name":"What if the Watcher had Never Interfered?","site_detail_url":"https://comicvine.gamespot.com/reckoning-war-trial-of-the-watcher-1-what-if-the-w/4000-911318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913031/","id":913031,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-the-white-knight-1-book-one/4000-913031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913172/","id":913172,"name":null,"site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-36/4000-913172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910252/","id":910252,"name":null,"site_detail_url":"https://comicvine.gamespot.com/superman-vs-lobo-3/4000-910252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916416/","id":916416,"name":null,"site_detail_url":"https://comicvine.gamespot.com/angel-4/4000-916416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-915425/","id":915425,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-orville-season-25-digressions-1-tpb/4000-915425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914657/","id":914657,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-5/4000-914657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-933186/","id":933186,"name":null,"site_detail_url":"https://comicvine.gamespot.com/super-freaks-1/4000-933186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911245/","id":911245,"name":null,"site_detail_url":"https://comicvine.gamespot.com/angel-3/4000-911245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910156/","id":910156,"name":"Geordi","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-captain-laforge-1-geordi/4000-910156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909806/","id":909806,"name":"...Became Captain America?!","site_detail_url":"https://comicvine.gamespot.com/what-if-miles-morales-1-became-captain-america/4000-909806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901106/","id":901106,"name":"The Mirror Crack'd, Part Seven","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-7-the-mirror-crackd-part-s/4000-901106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901101/","id":901101,"name":"The Gathering Storm","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-3-the-gathering-storm/4000-901101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914688/","id":914688,"name":"Hedgehog Day Afternoon; The Secret Of My Distress; Always Bet On Red; Two For The Road","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-2-the-official-movie-pre-quill-/4000-914688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916775/","id":916775,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-1/4000-916775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913485/","id":913485,"name":"","site_detail_url":"https://comicvine.gamespot.com/godzilla-vs-the-mighty-morphin-power-rangers-1/4000-913485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-915310/","id":915310,"name":null,"site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-25th-anniversary-special-/4000-915310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902682/","id":902682,"name":null,"site_detail_url":"https://comicvine.gamespot.com/devils-reign-superior-four-1/4000-902682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901416/","id":901416,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wastelanders-doom-1/4000-901416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901413/","id":901413,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-darkhold-omega-1/4000-901413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-900393/","id":900393,"name":null,"site_detail_url":"https://comicvine.gamespot.com/timeless-1/4000-900393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907440/","id":907440,"name":null,"site_detail_url":"https://comicvine.gamespot.com/angel-2/4000-907440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905434/","id":905434,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-4/4000-905434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-899178/","id":899178,"name":"The Lords of Earthly Vengeance, Part One: \"Where 'Hope' Is a Four-Letter Word\"","site_detail_url":"https://comicvine.gamespot.com/avengers-forever-1-the-lords-of-earthly-vengeance-/4000-899178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898359/","id":898359,"name":"Smashtronaut! Part Two","site_detail_url":"https://comicvine.gamespot.com/hulk-2-smashtronaut-part-two/4000-898359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897154/","id":897154,"name":"Distant Thunder","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-2-distant-thunder/4000-897154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904746/","id":904746,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-generations-4/4000-904746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904190/","id":904190,"name":"A Dog Gone Adventure","site_detail_url":"https://comicvine.gamespot.com/spider-bot-infinity-comic-7-a-dog-gone-adventure/4000-904190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902074/","id":902074,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-3/4000-902074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891949/","id":891949,"name":"In the Beginning","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-1-in-the-beginning/4000-891949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891947/","id":891947,"name":"Empire of Shadows","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-authority-special-1-empire-of-shado/4000-891947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895907/","id":895907,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-historia-the-amazons-1-book-one/4000-895907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906270/","id":906270,"name":null,"site_detail_url":"https://comicvine.gamespot.com/angel-1/4000-906270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895356/","id":895356,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-killshot-anniversary-special-1/4000-895356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894140/","id":894140,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-ages-3/4000-894140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897863/","id":897863,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-data-1/4000-897863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916209/","id":916209,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/transformersback-to-the-future-1-tpb/4000-916209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889482/","id":889482,"name":null,"site_detail_url":"https://comicvine.gamespot.com/symbiote-spider-man-crossroads-4/4000-889482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-892634/","id":892634,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-2/4000-892634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-885614/","id":885614,"name":null,"site_detail_url":"https://comicvine.gamespot.com/symbiote-spider-man-crossroads-3/4000-885614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884587/","id":884587,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-fortnite-zero-point-batman-day-special-edit/4000-884587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882900/","id":882900,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-ages-1/4000-882900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889736/","id":889736,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-1/4000-889736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878824/","id":878824,"name":"The '80s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-3-the-80s/4000-878824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882077/","id":882077,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-annual-1/4000-882077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883957/","id":883957,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-wrong-earth-night-and-day-1-volume-2/4000-883957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-871608/","id":871608,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-the-spiders-shadow-4/4000-871608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-861638/","id":861638,"name":"The Yashida Saga Part One","site_detail_url":"https://comicvine.gamespot.com/demon-days-mariko-1-the-yashida-saga-part-one/4000-861638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863926/","id":863926,"name":"The '70s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-2-the-70s/4000-863926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862624/","id":862624,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-the-source-of-freedom-2-part-two/4000-862624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862622/","id":862622,"name":"Infinite Mystery","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-1-infinite-mystery/4000-862622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858879/","id":858879,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-the-spiders-shadow-3/4000-858879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884205/","id":884205,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-mirror-war-0/4000-884205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-870500/","id":870500,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-zero-the-complete-col/4000-870500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-847511/","id":847511,"name":"Whatever Happened to Earth's Mightiest Heroes?","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-1-whatever-happened-to-earths-mighti/4000-847511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-855615/","id":855615,"name":"The Most Hated Man In the Heavens; Born In the Stars","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-4-the-most-hated-man-in-the-heavens-/4000-855615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851307/","id":851307,"name":"The '60s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-1-the-60s/4000-851307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846953/","id":846953,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/batmanfortnite-zero-point-2-part-two/4000-846953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848266/","id":848266,"name":"If People Are In Danger","site_detail_url":"https://comicvine.gamespot.com/justice-league-last-ride-1-if-people-are-in-danger/4000-848266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864703/","id":864703,"name":"Chapter 14: The New Beginning","site_detail_url":"https://comicvine.gamespot.com/rwbyjustice-league-14-chapter-14-the-new-beginning/4000-864703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-861663/","id":861663,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/grandville-integral-1-hc/4000-861663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858429/","id":858429,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-generations-1-hc/4000-858429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857549/","id":857549,"name":"Digressions Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/the-orville-2-digressions-part-2-of-2/4000-857549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844015/","id":844015,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/batmanfortnite-zero-point-1-part-one/4000-844015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-865881/","id":865881,"name":null,"site_detail_url":"https://comicvine.gamespot.com/power-rangers-unlimited-edge-of-darkness-1/4000-865881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-853368/","id":853368,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/the-authority-2-book-two/4000-853368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-847350/","id":847350,"name":"Digressions Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/the-orville-1-digressions-part-1-of-2/4000-847350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-832861/","id":832861,"name":null,"site_detail_url":"https://comicvine.gamespot.com/demon-days-x-men-1/4000-832861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-829308/","id":829308,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-presents-harley-quinn-5-book-f/4000-829308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823812/","id":823812,"name":"Hell To Pay Part One","site_detail_url":"https://comicvine.gamespot.com/future-state-wonder-woman-1-hell-to-pay-part-one/4000-823812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826316/","id":826316,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-presents-harley-quinn-4-book-f/4000-826316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826317/","id":826317,"name":null,"site_detail_url":"https://comicvine.gamespot.com/jokerharley-criminal-sanity-7/4000-826317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827668/","id":827668,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-valentines-day-special-2021/4000-827668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839638/","id":839638,"name":"Frammenti di un futuro possibile","site_detail_url":"https://comicvine.gamespot.com/nathan-never-357-frammenti-di-un-futuro-possibile/4000-839638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821753/","id":821753,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-presents-harley-quinn-3-book-t/4000-821753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843368/","id":843368,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-the-gift-facsimile-e/4000-843368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823942/","id":823942,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wrong-earth-night-and-day-1/4000-823942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823803/","id":823803,"name":"Chapter One: Forget Me Not Part I","site_detail_url":"https://comicvine.gamespot.com/sensational-wonder-woman-1-chapter-one-forget-me-n/4000-823803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823802/","id":823802,"name":"Chapter Fourteen","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-14-chapter-fourteen/4000-823802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864442/","id":864442,"name":"Part Four!","site_detail_url":"https://comicvine.gamespot.com/transformersback-to-the-future-4-part-four/4000-864442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839517/","id":839517,"name":"La Tour des anges - 3","site_detail_url":"https://comicvine.gamespot.com/a-la-croisee-des-mondes-6-la-tour-des-anges-3/4000-839517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819291/","id":819291,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-presents-harley-quinn-2-book-t/4000-819291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821999/","id":821999,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-1-tpb/4000-821999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821751/","id":821751,"name":"Chapter Thirteen","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-13-chapter-thirteen/4000-821751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821726/","id":821726,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-authority-1-book-one/4000-821726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821464/","id":821464,"name":"The Empty Grave!; Vanguard: Ethereal Warriors Part 5","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-255-the-empty-grave-vanguard-etherea/4000-821464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821472/","id":821472,"name":null,"site_detail_url":"https://comicvine.gamespot.com/solid-blood-17/4000-821472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821178/","id":821178,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-omnibus-2-vol-2/4000-821178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820389/","id":820389,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-12-chapter-twelve/4000-820389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-812520/","id":812520,"name":"The Robin Who Would Be King; The Quiet Ones","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-robin-king-1-the-robin-who/4000-812520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-812515/","id":812515,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-presents-harley-quinn-1-book-o/4000-812515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807611/","id":807611,"name":null,"site_detail_url":"https://comicvine.gamespot.com/original-marvel-zombies-marvel-tales-1/4000-807611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819288/","id":819288,"name":"Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-11-chapter-eleven/4000-819288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817442/","id":817442,"name":"Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-10-chapter-ten/4000-817442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-805091/","id":805091,"name":"Cold Snap; Nexus War: Thor","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-24-cold-snap-nexus-war-thor/4000-805091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814039/","id":814039,"name":"Chapter Nine","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-9-chapter-nine/4000-814039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-810558/","id":810558,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/elvira-mistress-of-the-dark-elviras-inferno-1-volu/4000-810558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-809814/","id":809814,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-8-chapter-eight/4000-809814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807362/","id":807362,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-rise-of-drakkon-1-tpb/4000-807362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-804575/","id":804575,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-7-chapter-seven/4000-804575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803102/","id":803102,"name":null,"site_detail_url":"https://comicvine.gamespot.com/power-rangers-drakkon-new-dawn-2/4000-803102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-798844/","id":798844,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-6-chapter-six/4000-798844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796930/","id":796930,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-multiverse-1-tpb/4000-796930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-774431/","id":774431,"name":"The Return","site_detail_url":"https://comicvine.gamespot.com/dceased-dead-planet-1-the-return/4000-774431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836264/","id":836264,"name":"Prisonniers","site_detail_url":"https://comicvine.gamespot.com/frnck-7-prisonniers/4000-836264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796741/","id":796741,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-5-chapter-five/4000-796741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-778244/","id":778244,"name":"An Anti-Crisis Part II: Be the Fern","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-2-an-anti-crisis-part-ii-b/4000-778244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796423/","id":796423,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-hells-mirror-1/4000-796423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796290/","id":796290,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fortnite-x-marvel-nexus-war-thor-1/4000-796290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794898/","id":794898,"name":null,"site_detail_url":"https://comicvine.gamespot.com/power-rangers-drakkon-new-dawn-1/4000-794898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794376/","id":794376,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-4-chapter-four/4000-794376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768300/","id":768300,"name":"An Anti-Crisis Part I: It All Matters","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-1-an-anti-crisis-part-i-it/4000-768300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784125/","id":784125,"name":null,"site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-4/4000-784125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-782134/","id":782134,"name":null,"site_detail_url":"https://comicvine.gamespot.com/power-rangers-ranger-slayer-1/4000-782134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-774467/","id":774467,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flash-forward-1-tpb/4000-774467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-788964/","id":788964,"name":"Transformation Is Magic; Shine Like A Diamond","site_detail_url":"https://comicvine.gamespot.com/my-little-ponytransformers-1-transformation-is-mag/4000-788964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763285/","id":763285,"name":"Master of the Universes: The End!","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-multiverse-6-master-/4000-763285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768931/","id":768931,"name":"Harlan contro Sho-Huan","site_detail_url":"https://comicvine.gamespot.com/dampyr-244-harlan-contro-sho-huan/4000-768931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766090/","id":766090,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/young-justice-lost-in-the-multiverse-1-volume-2/4000-766090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739381/","id":739381,"name":"The Flash Age, Part One; Beer Run; Why You?; Flash of All Worlds!; At the Starting Line...; Flash Forward: Epilogue","site_detail_url":"https://comicvine.gamespot.com/the-flash-750-the-flash-age-part-one-beer-run-why-/4000-739381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741785/","id":741785,"name":"Master of the Universes Part Five","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-multiverse-5-master-/4000-741785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743309/","id":743309,"name":"Book Eight","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-8-book-eight/4000-743309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-778968/","id":778968,"name":null,"site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2020-x-mendark-ages-1/4000-778968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-755773/","id":755773,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-4-vol-4/4000-755773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737720/","id":737720,"name":"Masters of the Universe Part Four","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-multiverse-4-masters/4000-737720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738537/","id":738537,"name":"Book Seven","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-7-book-seven/4000-738537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-769167/","id":769167,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/cinderella-girls-gekijou-wide-1-volume-1/4000-769167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743202/","id":743202,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-equestria-girls-canterlot-high-marc/4000-743202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742051/","id":742051,"name":null,"site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-2/4000-742051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739375/","id":739375,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-the-deluxe-edition-1-hc/4000-739375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735364/","id":735364,"name":"The Heart of Emptiness","site_detail_url":"https://comicvine.gamespot.com/green-lantern-blackstars-3-the-heart-of-emptiness/4000-735364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733635/","id":733635,"name":"Chapter Five: Reunion","site_detail_url":"https://comicvine.gamespot.com/flash-forward-5-chapter-five-reunion/4000-733635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734532/","id":734532,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-6-book-six/4000-734532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732884/","id":732884,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-x-1/4000-732884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736509/","id":736509,"name":null,"site_detail_url":"https://comicvine.gamespot.com/archie-the-married-life-10th-anniversary-6/4000-736509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731308/","id":731308,"name":"Masters of the Universes Part Two","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-multiverse-2-masters/4000-731308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730198/","id":730198,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-5-book-five/4000-730198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729498/","id":729498,"name":"A Hole In the Sky","site_detail_url":"https://comicvine.gamespot.com/green-lantern-blackstars-2-a-hole-in-the-sky/4000-729498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-849821/","id":849821,"name":null,"site_detail_url":"https://comicvine.gamespot.com/a-velha-arlequina-1/4000-849821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735592/","id":735592,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-3-vol-3/4000-735592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734340/","id":734340,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-10/4000-734340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732566/","id":732566,"name":"Vol. IV","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-732566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726005/","id":726005,"name":"Under the Sun At Midnight","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-blackstars-1-under-the-sun-at-mi/4000-726005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728321/","id":728321,"name":"Masters of the Universes","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-multiverse-1-masters/4000-728321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839516/","id":839516,"name":"La Tour des Anges - 2","site_detail_url":"https://comicvine.gamespot.com/a-la-croisee-des-mondes-5-la-tour-des-anges-2/4000-839516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836263/","id":836263,"name":"Dinosaures","site_detail_url":"https://comicvine.gamespot.com/frnck-6-dinosaures/4000-836263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728898/","id":728898,"name":"Chapter Eleven: Ragged Old Flag","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-11-chapter-eleven-ragged-old-flag/4000-728898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728511/","id":728511,"name":null,"site_detail_url":"https://comicvine.gamespot.com/archie-the-married-life-10th-anniversary-4/4000-728511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728907/","id":728907,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tales-from-the-dark-multiverse-infinite-crisis-1/4000-728907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729764/","id":729764,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vampironica-new-blood-1/4000-729764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728316/","id":728316,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-presents-von-freeze-1/4000-728316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729758/","id":729758,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rough-riders-lock-stock-and-barrel-the-complete-co/4000-729758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729473/","id":729473,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-omnibus-1-vol-1/4000-729473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-722949/","id":722949,"name":"The Only Thing Constant Is Change!; New York, New York... A Hell of A Town!","site_detail_url":"https://comicvine.gamespot.com/archie-the-married-life-10th-anniversary-3-the-onl/4000-722949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723833/","id":723833,"name":"Chapter Ten: Big Things","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-10-chapter-ten-big-things/4000-723833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725233/","id":725233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tales-from-the-dark-multiverse-the-death-of-superm/4000-725233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728276/","id":728276,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-the-deluxe-edition-1-hc/4000-728276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720162/","id":720162,"name":"Candy Store","site_detail_url":"https://comicvine.gamespot.com/ghost-spider-2-candy-store/4000-720162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720035/","id":720035,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-3-book-three/4000-720035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725235/","id":725235,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-4-volume-4/4000-725235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725270/","id":725270,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-2-vol-2/4000-725270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723759/","id":723759,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-1-tpb/4000-723759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717396/","id":717396,"name":"Chapter Eight: Yellow Eighteen","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-8-chapter-eight-yellow-eighteen/4000-717396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717389/","id":717389,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-2-book-two/4000-717389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718803/","id":718803,"name":null,"site_detail_url":"https://comicvine.gamespot.com/archie-the-married-life-10th-anniversary-2/4000-718803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715357/","id":715357,"name":null,"site_detail_url":"https://comicvine.gamespot.com/archie-the-married-life-10th-anniversary-1/4000-715357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717623/","id":717623,"name":null,"site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-vs-vampironica-4/4000-717623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720188/","id":720188,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-warps-1-tpb/4000-720188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720049/","id":720049,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-two-the-deluxe-editio/4000-720049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718666/","id":718666,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/i-hate-fairyland-deluxe-2-book-two/4000-718666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718031/","id":718031,"name":null,"site_detail_url":"https://comicvine.gamespot.com/turok-5/4000-718031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714671/","id":714671,"name":"Secret Identity Warp Warps; Fenris In A Bottle","site_detail_url":"https://comicvine.gamespot.com/secret-warps-iron-hammer-annual-1-secret-identity-/4000-714671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714163/","id":714163,"name":"Chapter Seven: Underground","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-7-chapter-seven-underground/4000-714163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714157/","id":714157,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/batman-curse-of-the-white-knight-1-book-one/4000-714157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714621/","id":714621,"name":null,"site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-annual-3/4000-714621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717048/","id":717048,"name":"Crisis of Infinite Scoobys Part 1","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-team-up-99-crisis-of-infinite-scoobys-p/4000-717048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714619/","id":714619,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/injustice-2-6-volume-6/4000-714619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713942/","id":713942,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/thanos-by-donny-cates-1-hc/4000-713942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713817/","id":713817,"name":null,"site_detail_url":"https://comicvine.gamespot.com/turok-4/4000-713817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713729/","id":713729,"name":"Then, The Immortal Blue...","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-713729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710059/","id":710059,"name":"Chapter Twenty-Three","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-23-chapter-twenty-three/4000-710059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709700/","id":709700,"name":"Chapter Six: Overman Returns","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-6-chapter-six-overman-returns/4000-709700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712427/","id":712427,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/old-lady-harley-1-tpb/4000-712427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706418/","id":706418,"name":"Chapter Two: Our Fathers' Way","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-2-chapter-two-our-fathers-wa/4000-706418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706927/","id":706927,"name":"Chapter Five: Old Glory","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-5-chapter-five-old-glory/4000-706927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836262/","id":836262,"name":"Cannibales","site_detail_url":"https://comicvine.gamespot.com/frnck-5-cannibales/4000-836262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710027/","id":710027,"name":"Watch Part Five","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-5-watch-part-five/4000-710027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709497/","id":709497,"name":"Back In Black Part One","site_detail_url":"https://comicvine.gamespot.com/vampblade-season-4-1-back-in-black-part-one/4000-709497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708269/","id":708269,"name":"Expiation","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-sorority-girls-vs-zombies-40-expiatio/4000-708269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707607/","id":707607,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-wrong-earth-1-volume-one/4000-707607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707453/","id":707453,"name":"Elvira's Inferno: Canto One","site_detail_url":"https://comicvine.gamespot.com/elvira-mistress-of-the-dark-5-elviras-inferno-cant/4000-707453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703930/","id":703930,"name":"Chapter Twenty-One","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-21-chapter-twenty-one/4000-703930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703952/","id":703952,"name":"Chapter One: The War At Home","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-1-chapter-one-the-war-at-hom/4000-703952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704785/","id":704785,"name":"Chapter Four: Monument","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-4-chapter-four-monument/4000-704785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707404/","id":707404,"name":null,"site_detail_url":"https://comicvine.gamespot.com/2000-ad-villains-special-1/4000-707404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706930/","id":706930,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/injustice-2-5-volume-5/4000-706930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706388/","id":706388,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-1-hctpb/4000-706388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706292/","id":706292,"name":null,"site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-4/4000-706292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701296/","id":701296,"name":"Chapter Twenty","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-20-chapter-twenty/4000-701296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704835/","id":704835,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-with-great-power-1-tpb/4000-704835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704756/","id":704756,"name":"Watch Part Three","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-3-watch-part-three/4000-704756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704690/","id":704690,"name":"The Fairy Feller's Master-Stroke","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-704690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702450/","id":702450,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-3-volume-3/4000-702450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696934/","id":696934,"name":"War In Two Worlds!; Rota Fortuna Part Three","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-black-files-3-war-in-two-worlds-rota/4000-696934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696335/","id":696335,"name":"The King of Castle Grayskull","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-6-the-king-of/4000-696335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696937/","id":696937,"name":"Seven Crises","site_detail_url":"https://comicvine.gamespot.com/young-justice-1-seven-crises/4000-696937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-698595/","id":698595,"name":"Chapter Nineteen","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-19-chapter-nineteen/4000-698595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-698623/","id":698623,"name":null,"site_detail_url":"https://comicvine.gamespot.com/blossoms-666-1/4000-698623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696299/","id":696299,"name":null,"site_detail_url":"https://comicvine.gamespot.com/archie-1941-4/4000-696299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696360/","id":696360,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-across-the/4000-696360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701887/","id":701887,"name":"Watch Part Two","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-2-watch-part-two/4000-701887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701908/","id":701908,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-taps-1-volume-3/4000-701908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700164/","id":700164,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aspen-visions-fathom-spinning-our-fate-1/4000-700164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699939/","id":699939,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/star-trek-new-visions-8-volume-8/4000-699939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694913/","id":694913,"name":"There Is A Place Called Wakanda: Part Two","site_detail_url":"https://comicvine.gamespot.com/infinity-wars-ghost-panther-2-there-is-a-place-cal/4000-694913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694112/","id":694112,"name":"A Prisoner","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-1-a-prisoner/4000-694112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702762/","id":702762,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-nightmare-knights-5/4000-702762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699281/","id":699281,"name":null,"site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-1/4000-699281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-698637/","id":698637,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-2-volume-two/4000-698637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697649/","id":697649,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-1-vol-1/4000-697649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697372/","id":697372,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-nightmare-knights-4/4000-697372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696928/","id":696928,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-the-complete-col/4000-696928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696911/","id":696911,"name":null,"site_detail_url":"https://comicvine.gamespot.com/stabbity-ever-after-1/4000-696911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696826/","id":696826,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hackslash-vs-chaos-2/4000-696826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696365/","id":696365,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-geddon-edge-of-spider-geddon-1-tpb/4000-696365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693442/","id":693442,"name":"This Old House","site_detail_url":"https://comicvine.gamespot.com/old-lady-harley-2-this-old-house/4000-693442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692546/","id":692546,"name":"There Is A Place Called Wakanda: Part One","site_detail_url":"https://comicvine.gamespot.com/infinity-wars-ghost-panther-1-there-is-a-place-cal/4000-692546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692527/","id":692527,"name":"The World's Finest","site_detail_url":"https://comicvine.gamespot.com/injustice-2-annual-2-the-worlds-finest/4000-692527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693439/","id":693439,"name":"The Vengeance of Skeletor","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-5-the-vengean/4000-693439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692558/","id":692558,"name":"In Gog We Trust!","site_detail_url":"https://comicvine.gamespot.com/spider-man-enter-the-spider-verse-1-in-gog-we-trus/4000-692558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693481/","id":693481,"name":"Chapter 3: Home & Away","site_detail_url":"https://comicvine.gamespot.com/archie-1941-3-chapter-3-home-and-away/4000-693481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692061/","id":692061,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-5/4000-692061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696300/","id":696300,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aspen-visions-executive-assistant-iris-the-midst-o/4000-696300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693462/","id":693462,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-wars-arachknight-2/4000-693462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692547/","id":692547,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-wars-sleepwalker-3/4000-692547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695504/","id":695504,"name":"Dawn Is But Dark's Endeavour","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-695504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694775/","id":694775,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-nightmare-knights-3/4000-694775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694074/","id":694074,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/sabans-power-rangers-soul-of-the-dragon-1-ogn/4000-694074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690795/","id":690795,"name":"The Ultimate Battlleground","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-4-the-ultimat/4000-690795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689848/","id":689848,"name":"The Good, The Bad, And the Old","site_detail_url":"https://comicvine.gamespot.com/old-lady-harley-1-the-good-the-bad-and-the-old/4000-689848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690824/","id":690824,"name":"Magik Became Sorcerer Supreme","site_detail_url":"https://comicvine.gamespot.com/what-if-magik-1-magik-became-sorcerer-supreme/4000-690824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688938/","id":688938,"name":"It's War!","site_detail_url":"https://comicvine.gamespot.com/archie-1941-2-its-war/4000-688938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696753/","id":696753,"name":"If Fictions Fare Not True--","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-696753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689021/","id":689021,"name":"Goodbye","site_detail_url":"https://comicvine.gamespot.com/injustice-2-36-goodbye/4000-689021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688307/","id":688307,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-michael-cray-12-chapter-twelve/4000-688307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687030/","id":687030,"name":".EXE/men","site_detail_url":"https://comicvine.gamespot.com/what-if-x-men-1-exemen/4000-687030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691824/","id":691824,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-14/4000-691824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689863/","id":689863,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-wars-arachknight-1/4000-689863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687007/","id":687007,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-4/4000-687007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687025/","id":687025,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-what-if-jane-foster-had-found-the-h/4000-687025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687024/","id":687024,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-what-if-the-avengers-had-fought-evi/4000-687024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692539/","id":692539,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-are-you-okay-an/4000-692539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692366/","id":692366,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-nightmare-knights-2/4000-692366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691356/","id":691356,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-2-volume-2/4000-691356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691287/","id":691287,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13/4000-691287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685834/","id":685834,"name":"Weird Science","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-23-weird-scienc/4000-685834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839515/","id":839515,"name":"La Tour des Anges - 1","site_detail_url":"https://comicvine.gamespot.com/a-la-croisee-des-mondes-4-la-tour-des-anges-1/4000-839515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685820/","id":685820,"name":"City of Darkness","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-3-city-of-dar/4000-685820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684934/","id":684934,"name":"Chapter One: The Last Summer","site_detail_url":"https://comicvine.gamespot.com/archie-1941-1-chapter-one-the-last-summer/4000-684934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683800/","id":683800,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-batman-day-2018-1/4000-683800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686377/","id":686377,"name":null,"site_detail_url":"https://comicvine.gamespot.com/edge-of-spider-geddon-4/4000-686377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685842/","id":685842,"name":null,"site_detail_url":"https://comicvine.gamespot.com/edge-of-spider-geddon-3/4000-685842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683825/","id":683825,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-3/4000-683825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688559/","id":688559,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-688559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688985/","id":688985,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/legenderry-red-sonja-2-volume-two/4000-688985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689012/","id":689012,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-war-bonds-1-volume-2/4000-689012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688288/","id":688288,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wrong-earth-2/4000-688288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687989/","id":687989,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-nightmare-knights-1/4000-687989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687018/","id":687018,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-3-volume-3/4000-687018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686917/","id":686917,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-fortis-and-invisiblia-1-volume-6/4000-686917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679404/","id":679404,"name":"Weird Science","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-22-weird-scienc/4000-679404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684578/","id":684578,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-through-the-mirror-1/4000-684578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679976/","id":679976,"name":"The Double-Edged Sword","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-2-the-double-/4000-679976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685126/","id":685126,"name":"Spidey vs. Deadpool!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-10-spidey-vs-deadpool/4000-685126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688491/","id":688491,"name":"No More Jokes","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11-no-more-jokes/4000-688491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679401/","id":679401,"name":"Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-michael-cray-10-chapter-ten/4000-679401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679984/","id":679984,"name":"Chapter Sixteen","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-16-chapter-sixteen/4000-679984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690873/","id":690873,"name":"Beginnings Are Endings That Begin","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-extra-credit-10-beginnings-are-ending/4000-690873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685855/","id":685855,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-the-life-of-gwen-stacy-1-volume-6/4000-685855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684574/","id":684574,"name":"And An Age of Giants, Adieu","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-684574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683828/","id":683828,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/earth-x-trilogy-omnibus-alpha-1-hc/4000-683828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676691/","id":676691,"name":"Weird Science","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-21-weird-scienc/4000-676691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677265/","id":677265,"name":"To Eternia With Death","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-1-to-eternia-/4000-677265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680166/","id":680166,"name":"The Hunt Begins! Venom is the Prey!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-7-the-hunt-begins-venom/4000-680166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682968/","id":682968,"name":"Edge of Venomverse Begins!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-9-edge-of-venomverse-be/4000-682968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688558/","id":688558,"name":"Steve Ditko Tribute Issue","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-8-steve-ditko-tribute-i/4000-688558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682636/","id":682636,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-the-deluxe-edition-1-book-one/4000-682636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682515/","id":682515,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/i-hate-fairyland-sadly-never-after-1-volume-four/4000-682515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682536/","id":682536,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-shattered-grid-1/4000-682536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680703/","id":680703,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-1-tpb/4000-680703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680596/","id":680596,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apes-visionaries-1-ogn/4000-680596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679829/","id":679829,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-4-volume-four/4000-679829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679870/","id":679870,"name":"Shattered Grid; The New Adventures of Blue Senturion & Ninjor","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-30-shattered-grid-the/4000-679870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679832/","id":679832,"name":null,"site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-36/4000-679832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674120/","id":674120,"name":"Weird Science","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-20-weird-scienc/4000-674120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677570/","id":677570,"name":"Venom is on the Prowl!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-6-venom-is-on-the-prowl/4000-677570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672248/","id":672248,"name":"Taps","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-19-taps/4000-672248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836261/","id":836261,"name":"L'éruption","site_detail_url":"https://comicvine.gamespot.com/frnck-4-leruption/4000-836261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672254/","id":672254,"name":"Going Underground; Smoke and Mirrors","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-6-going/4000-672254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672992/","id":672992,"name":"Flash War Part 2","site_detail_url":"https://comicvine.gamespot.com/the-flash-48-flash-war-part-2/4000-672992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676463/","id":676463,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-676463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668746/","id":668746,"name":"Taps","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-17-taps/4000-668746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668752/","id":668752,"name":"Opening Night; Sasquatch Detective: Arrest and Relaxation","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-5-openi/4000-668752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677321/","id":677321,"name":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-terra-incognita-1/4000-677321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676483/","id":676483,"name":"Farewell To Forever","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-676483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675947/","id":675947,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-deluxe-edition-/4000-675947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687268/","id":687268,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/spider-girl-the-complete-collection-1-vol-1/4000-687268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670080/","id":670080,"name":"The Gift Finale","site_detail_url":"https://comicvine.gamespot.com/batman-47-the-gift-finale/4000-670080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671326/","id":671326,"name":"Parker Summer Vacation","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-19-parker-summe/4000-671326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669456/","id":669456,"name":"No More - Part One","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-304-no-mor/4000-669456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674335/","id":674335,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-674335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669424/","id":669424,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-8/4000-669424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670084/","id":670084,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bombshells-united-18/4000-670084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668587/","id":668587,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-3-volume-3/4000-668587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666773/","id":666773,"name":"The Black Island","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-16-the-black-island/4000-666773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664882/","id":664882,"name":"The Black Island","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-15-the-black-island/4000-664882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666799/","id":666799,"name":"Fast Times At Midtown High Part Three","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-18-fast-times-a/4000-666799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664887/","id":664887,"name":"Doom Town; Sasquatch Detective: Neighborhood Watch","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-4-doom-/4000-664887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666763/","id":666763,"name":"\"From the City That Has Everything\"","site_detail_url":"https://comicvine.gamespot.com/action-comics-1000-from-the-city-that-has-everythi/4000-666763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664880/","id":664880,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-7/4000-664880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675114/","id":675114,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-american-soil-1-volume-1/4000-675114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675082/","id":675082,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-20/4000-675082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674025/","id":674025,"name":"Shattered Grid; The New Adventures of Blue Senturion & Ninjor","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-28-shattered-grid-the/4000-674025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672848/","id":672848,"name":null,"site_detail_url":"https://comicvine.gamespot.com/i-hate-fairyland-19/4000-672848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672255/","id":672255,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-1-volume-1/4000-672255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675841/","id":675841,"name":"An Unexpected Yesterday","site_detail_url":"https://comicvine.gamespot.com/star-trek-new-visions-22-an-unexpected-yesterday/4000-675841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668762/","id":668762,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-new-order-1-tpb/4000-668762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664264/","id":664264,"name":"The Freescape War Part Two","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-12-the-freescape-war-part-two/4000-664264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662059/","id":662059,"name":"The Black Island","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-13-the-black-island/4000-662059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663543/","id":663543,"name":"The Black Island","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-14-the-black-island/4000-663543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669091/","id":669091,"name":"Shattered Grid","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-free-comic-book-day-2/4000-669091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669109/","id":669109,"name":"History of Violence","site_detail_url":"https://comicvine.gamespot.com/ultra-street-fighter-ii-free-comic-book-day-2018-1/4000-669109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663565/","id":663565,"name":"Fast Times At Midtown High Part Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-17-fast-times-a/4000-663565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662062/","id":662062,"name":"Actors and Stars; Sasquatch Detective: Unsolved Mysteries","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-3-actor/4000-662062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662713/","id":662713,"name":"","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-11/4000-662713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662057/","id":662057,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-6/4000-662057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671327/","id":671327,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-eight-years-lat/4000-671327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671321/","id":671321,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-by-mark-millar-1-tpb/4000-671321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671082/","id":671082,"name":"[Untitled]; Ripe for Plunder Chapter Five","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-through-the-mirror-5/4000-671082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670779/","id":670779,"name":null,"site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-35/4000-670779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670769/","id":670769,"name":null,"site_detail_url":"https://comicvine.gamespot.com/legenderry-red-sonja-4/4000-670769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670584/","id":670584,"name":"[Untitled]; Ripe for Plunder Chapter Four","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-through-the-mirror-4/4000-670584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669832/","id":669832,"name":"[Untitled]; Ripe for Plunder Chapter Three","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-through-the-mirror-3/4000-669832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669647/","id":669647,"name":"Taps Part 6","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-38-taps-part-6/4000-669647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669539/","id":669539,"name":"The Long Goodbye","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-4-the-long-goodbye/4000-669539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669407/","id":669407,"name":"[Untitled]; Ripe for Plunder Chapter Two","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-through-the-mirror-2/4000-669407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669210/","id":669210,"name":"The Final Frontier","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-spaced-out-12-the-final-fronti/4000-669210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668951/","id":668951,"name":"Taps Part 5","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-37-taps-part-5/4000-668951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660626/","id":660626,"name":"War Bonds","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-12-war-bonds/4000-660626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658914/","id":658914,"name":"War Bonds","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-11-war-bonds/4000-658914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663446/","id":663446,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/star-trek-new-adventures-5-volume-5/4000-663446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666901/","id":666901,"name":"Under The Pyramids","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-3-under-the-pyramids/4000-666901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659983/","id":659983,"name":"The Frequency","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-9-the-frequency/4000-659983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661115/","id":661115,"name":"The Canary Down the Cave","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-10-the-canary-down-the-cave/4000-661115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666853/","id":666853,"name":"Shattered Grid; The New Adventures of Blue Senturion & Ninjor","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-26-shattered-grid-the/4000-666853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667715/","id":667715,"name":"Shattered Grid","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-2018-annual-1-shatter/4000-667715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668711/","id":668711,"name":"Rise of the Raven Lord","site_detail_url":"https://comicvine.gamespot.com/heroes-of-the-storm-1-rise-of-the-raven-lord/4000-668711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662143/","id":662143,"name":"Party Like It's 1988","site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-4-party-like-its-1988/4000-662143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660006/","id":660006,"name":"Fast Times At Midtown High Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-16-fast-times-a/4000-660006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658697/","id":658697,"name":"A Dog's Life; Sasquatch Detective Anniversary","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-2-a-dog/4000-658697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658690/","id":658690,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-5/4000-658690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666668/","id":666668,"name":"","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-legends-of-magic-annual-2018-1/4000-666668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667825/","id":667825,"name":"Taps Part 4","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-36-taps-part-4/4000-667825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688466/","id":688466,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-688466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667158/","id":667158,"name":"Rage On Harring","site_detail_url":"https://comicvine.gamespot.com/injustice-2-55-rage-on-harring/4000-667158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666983/","id":666983,"name":"Taps Part 3","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-35-taps-part-3/4000-666983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666640/","id":666640,"name":"Hate","site_detail_url":"https://comicvine.gamespot.com/injustice-2-54-hate/4000-666640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666209/","id":666209,"name":"Taps Part 2","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-34-taps-part-2/4000-666209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665077/","id":665077,"name":"Taps Part 1","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-33-taps-part-1/4000-665077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664683/","id":664683,"name":"Moon Doggie","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-spaced-out-10-moon-doggie/4000-664683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654030/","id":654030,"name":"War Bonds","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-10-war-bonds/4000-654030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650890/","id":650890,"name":"War Bonds","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-9-war-bonds/4000-650890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664259/","id":664259,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-war-stories-1-volume-6/4000-664259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652598/","id":652598,"name":"Up Shift","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-7-up-shift/4000-652598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664347/","id":664347,"name":"Shattered Grid; The New Adventures of Blue Senturion & Ninjor","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-25-shattered-grid-the/4000-664347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655553/","id":655553,"name":"Run Like A Wolf Part 3","site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-3-run-like-a-wolf-part-3/4000-655553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655476/","id":655476,"name":"Meet Your Idol","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-8-meet-your-idol/4000-655476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666675/","id":666675,"name":"I.D.I.C. Part 6","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-18-idic-part-6/4000-666675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663557/","id":663557,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/planetary-2-book-two/4000-663557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664389/","id":664389,"name":"Bokkenrijder","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-2-bokkenrijder/4000-664389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656695/","id":656695,"name":"8 Years Later Part Three","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-15-8-years-late/4000-656695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662759/","id":662759,"name":"","site_detail_url":"https://comicvine.gamespot.com/legenderry-red-sonja-2/4000-662759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664334/","id":664334,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-34/4000-664334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650896/","id":650896,"name":"","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-1/4000-650896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650888/","id":650888,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-4/4000-650888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664480/","id":664480,"name":"The Black Island Part 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-32-the-black-island-part-8/4000-664480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663706/","id":663706,"name":"The Black Island Part 7","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-31-the-black-island-part-7/4000-663706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662931/","id":662931,"name":"The Black Island Part 6","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-30-the-black-island-part-6/4000-662931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662246/","id":662246,"name":"The Black Island Part 5","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-29-the-black-island-part-5/4000-662246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661537/","id":661537,"name":"The Black Island Part 4","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-28-the-black-island-part-4/4000-661537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647909/","id":647909,"name":"War Bonds","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-8-war-bonds/4000-647909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662597/","id":662597,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-6-/4000-662597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661060/","id":661060,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-1-volum/4000-661060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646159/","id":646159,"name":"Two Letters","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-5-two-letters/4000-646159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652352/","id":652352,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jem-and-the-holograms-infinite-1-tpb/4000-652352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660513/","id":660513,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-trek-mirror-broken-1-tpb/4000-660513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661236/","id":661236,"name":"Ride or Die","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-1-ride-or-die/4000-661236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649749/","id":649749,"name":"Phoenix Invictus","site_detail_url":"https://comicvine.gamespot.com/true-believers-death-of-phoenix-1-phoenix-invictus/4000-649749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661808/","id":661808,"name":"I.D.I.C. Part 5","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-17-idic-part-5/4000-661808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649711/","id":649711,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-new-order-5-chapter-five/4000-649711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649690/","id":649690,"name":"Booster Shot Part II","site_detail_url":"https://comicvine.gamespot.com/action-comics-994-booster-shot-part-ii/4000-649690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646149/","id":646149,"name":"Booster Shot Part I","site_detail_url":"https://comicvine.gamespot.com/action-comics-993-booster-shot-part-i/4000-646149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649723/","id":649723,"name":"8 Years Later Part Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-14-8-years-late/4000-649723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649703/","id":649703,"name":"","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-6/4000-649703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646239/","id":646239,"name":"","site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-2/4000-646239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658768/","id":658768,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-hate-fairyland-16/4000-658768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644471/","id":644471,"name":"","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-7/4000-644471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644469/","id":644469,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-3/4000-644469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660762/","id":660762,"name":"The Black Island Part 3","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-27-the-black-island-part-3/4000-660762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660163/","id":660163,"name":"The Black Island Part 2","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-26-the-black-island-part-2/4000-660163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659982/","id":659982,"name":"The Freescape War: Part 3","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-24-the-freescape-war-part-3/4000-659982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659051/","id":659051,"name":"The Black Island Part 1","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-25-the-black-island-part-1/4000-659051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658698/","id":658698,"name":"The Freescape War: Part 2","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-23-the-freescape-war-part-2/4000-658698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-657026/","id":657026,"name":"War Bonds Part 12","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-24-war-bonds-part-12/4000-657026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638569/","id":638569,"name":"World Tour","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-6-world-tour/4000-638569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643015/","id":643015,"name":"Wonder Woman--Of War; Grounded Zeroes","site_detail_url":"https://comicvine.gamespot.com/injustice-2-annual-1-wonder-woman-of-war-grounded-/4000-643015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650952/","id":650952,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-in-sorcery-1-tpb/4000-650952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656682/","id":656682,"name":"The Freescape War: Part 1","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-22-the-freescape-war-part-1/4000-656682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-653397/","id":653397,"name":"Le sacrifice","site_detail_url":"https://comicvine.gamespot.com/frnck-3-le-sacrifice/4000-653397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656526/","id":656526,"name":"I.D.I.C. Part 4","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-16-idic-part-4/4000-656526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641388/","id":641388,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-new-order-4-chapter-four/4000-641388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641381/","id":641381,"name":"Cat's Paws","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-4-cats-paws/4000-641381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636343/","id":636343,"name":"Bad Seeds","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-3-bad-seeds/4000-636343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634768/","id":634768,"name":"American Soil Part 9 & 10","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-5-american-soil-part-9-and-10/4000-634768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655529/","id":655529,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-33/4000-655529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634506/","id":634506,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-2/4000-634506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655746/","id":655746,"name":"War Bonds Part 11","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-23-war-bonds-part-11/4000-655746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655475/","id":655475,"name":"The Ninth Life","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-21-the-ninth-life/4000-655475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654425/","id":654425,"name":"War Bonds Part 10","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-22-war-bonds-part-10/4000-654425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654033/","id":654033,"name":"The Ballad of Dinah and Ollie","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-20-the-ballad-of-dinah-and-olli/4000-654033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652597/","id":652597,"name":"The Canary Down the Cave","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-19-the-canary-down-the-cave/4000-652597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-651452/","id":651452,"name":"War Bonds Part 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-20-war-bonds-part-8/4000-651452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650897/","id":650897,"name":"Blackhawk's Shadow","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-18-blackhawks-shadow/4000-650897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667892/","id":667892,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-wars-spider-man-rinnovare-le-promesse-1/4000-667892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647701/","id":647701,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/star-trek-new-adventures-4-volume-4/4000-647701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628554/","id":628554,"name":"The Real World","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-1-the-real-world/4000-628554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632463/","id":632463,"name":"The First Job","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-2-the-first-job/4000-632463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628576/","id":628576,"name":"The Curse of the Green Goblin Part 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-12-the-curse-of/4000-628576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649375/","id":649375,"name":"I.D.I.C. Part 3","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-15-idic-part-3/4000-649375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644487/","id":644487,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/justice-leaguepower-rangers-1-hctpb/4000-644487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632474/","id":632474,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-new-order-3-chapter-three/4000-632474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628544/","id":628544,"name":"American Soil Part 5","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-3-american-soil-part-5/4000-628544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630488/","id":630488,"name":"American Soil Part 5","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-4-american-soil-part-5/4000-630488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626250/","id":626250,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-white-knight-1/4000-626250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632588/","id":632588,"name":"","site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-1/4000-632588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650028/","id":650028,"name":"War Bonds Part 7","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-19-war-bonds-part-7/4000-650028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649702/","id":649702,"name":"The Frequency","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-17-the-frequency/4000-649702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-648855/","id":648855,"name":"War Bonds Part 6","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-18-war-bonds-part-6/4000-648855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647913/","id":647913,"name":"Home","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-16-home/4000-647913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647686/","id":647686,"name":"Barry-Foot In the Bark","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-spaced-out-3-barry-foot-in-the/4000-647686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647008/","id":647008,"name":"War Bonds Part 5","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-17-war-bonds-part-5/4000-647008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646158/","id":646158,"name":"Meet Your Idol","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-15-meet-your-idol/4000-646158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646076/","id":646076,"name":"Eradication","site_detail_url":"https://comicvine.gamespot.com/injustice-2-36-eradication/4000-646076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-645277/","id":645277,"name":"War Bonds Part 4","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-16-war-bonds-part-4/4000-645277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644477/","id":644477,"name":"Race The Devil","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-14-race-the-devil/4000-644477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643582/","id":643582,"name":"War Bonds Part 3","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-15-war-bonds-part-3/4000-643582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643027/","id":643027,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-the-venom-exper/4000-643027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636478/","id":636478,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-1-volume-2/4000-636478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643048/","id":643048,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-termination-1-tpb/4000-643048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641401/","id":641401,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again-1-tpb/4000-641401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625304/","id":625304,"name":"Part V","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again-5-part-v/4000-625304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644893/","id":644893,"name":"Le Prince des ténèbres 3","site_detail_url":"https://comicvine.gamespot.com/jour-j-31-le-prince-des-tenebres-3/4000-644893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643097/","id":643097,"name":"I.D.I.C. Part 2","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-14-idic-part-2/4000-643097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625273/","id":625273,"name":"Endgame!","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-13-endgame/4000-625273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625290/","id":625290,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-new-order-2-chapter-two/4000-625290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643120/","id":643120,"name":"Ashes to Bone and Dust to Flesh","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-7-ashes-to-bone-and/4000-643120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625274/","id":625274,"name":"American Soil Part 3","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-2-american-soil-part-3/4000-625274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-640428/","id":640428,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-4/4000-640428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-637565/","id":637565,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-3/4000-637565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634222/","id":634222,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-1/4000-634222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635899/","id":635899,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-2/4000-635899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619644/","id":619644,"name":"","site_detail_url":"https://comicvine.gamespot.com/venomverse-1/4000-619644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643076/","id":643076,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-32/4000-643076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621687/","id":621687,"name":"","site_detail_url":"https://comicvine.gamespot.com/zombies-assemble-2-2/4000-621687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619566/","id":619566,"name":"","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-1/4000-619566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643012/","id":643012,"name":"Up Shift","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-13-up-shift/4000-643012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-642205/","id":642205,"name":"War Bonds Part 2","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-14-war-bonds-part-2/4000-642205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641380/","id":641380,"name":"Wonder","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-12-wonder/4000-641380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-639478/","id":639478,"name":"War Bonds Part 1","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-13-war-bonds-part-1/4000-639478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638573/","id":638573,"name":"Close It Down","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-11-close-it-down/4000-638573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636339/","id":636339,"name":"World Tour, Part 2","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-12-world-tour-part-2/4000-636339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636342/","id":636342,"name":"Home For the Night","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-10-home-for-the-night/4000-636342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634898/","id":634898,"name":"World Tour, Part 1","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-11-world-tour-part-1/4000-634898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634899/","id":634899,"name":"Two Letters","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-9-two-letters/4000-634899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615049/","id":615049,"name":"Witch-War Chapter Two: The Psychopomps","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-8-witch-war-chapter/4000-615049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-629381/","id":629381,"name":"Wasteland Warriors","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-extra-credit-11-wasteland-warriors/4000-629381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628546/","id":628546,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-the-death-of-illusion-1-volum/4000-628546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616187/","id":616187,"name":"Part IV","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again-4-part-iv/4000-616187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632591/","id":632591,"name":"No Rest","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-6-no-rest/4000-632591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632541/","id":632541,"name":"I.D.I.C. Part 1","site_detail_url":"https://comicvine.gamespot.com/star-trek-boldly-go-13-idic-part-1/4000-632541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630498/","id":630498,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-nail-the-complete-de/4000-630498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628543/","id":628543,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanflash-the-button-deluxe-edition-1-hc/4000-628543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611977/","id":611977,"name":"Green Wedding","site_detail_url":"https://comicvine.gamespot.com/injustice-2-7-green-wedding/4000-611977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611969/","id":611969,"name":"Free For All","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-32-free-for-all/4000-611969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-614972/","id":614972,"name":"Finale: The Star","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-33-finale-the-star/4000-614972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616151/","id":616151,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-new-order-1-chapter-one/4000-616151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615014/","id":615014,"name":"A Day In the Life of An Osborn","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-10-a-day-in-the/4000-615014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632572/","id":632572,"name":"[Untitled]; The Ongoing Misadventures of Squatt & Baboo","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-20-untitled-the-ongoi/4000-632572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632540/","id":632540,"name":"","site_detail_url":"https://comicvine.gamespot.com/samurai-jack-quantum-jack-2/4000-632540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626318/","id":626318,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-31/4000-626318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643966/","id":643966,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-mirror-broken-5/4000-643966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633037/","id":633037,"name":"American Soil, Part 10 of 10","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-10-american-soil-part-10-of-10/4000-633037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632462/","id":632462,"name":"No Mercy","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-8-no-mercy/4000-632462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-631196/","id":631196,"name":"American Soil, Part 9 of 10","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-9-american-soil-part-9-of-10/4000-631196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630490/","id":630490,"name":"Cat's Paws","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-7-cats-paws/4000-630490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630466/","id":630466,"name":"The Trial of Bruce Wayne","site_detail_url":"https://comicvine.gamespot.com/injustice-2-28-the-trial-of-bruce-wayne/4000-630466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628826/","id":628826,"name":"American Soil, Part 8 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-8-american-soil-part-8-of-8/4000-628826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628553/","id":628553,"name":"How To Host A Garden Party","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-6-how-to-host-a-garden-party/4000-628553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-627008/","id":627008,"name":"American Soil, Part 7 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-7-american-soil-part-7-of-8/4000-627008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626708/","id":626708,"name":"Bad Seeds","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-5-bad-seeds/4000-626708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606661/","id":606661,"name":"Witch-War Chapter One: The Truth About Demonology","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-7-witch-war-chapter/4000-606661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606570/","id":606570,"name":"Winter Is Coming","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-30-winter-is-coming/4000-606570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619604/","id":619604,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-mnemophobia-and-chronophobia-1-vo/4000-619604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625276/","id":625276,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-past-times-at-super-hero-high-/4000-625276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630564/","id":630564,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deviations-beta-1-volume-2/4000-630564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622878/","id":622878,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/dc-meets-hanna-barbera-1-volume-1/4000-622878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621689/","id":621689,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/big-trouble-in-little-chinaescape-from-new-york-1-/4000-621689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625421/","id":625421,"name":"Man of War","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-6-man-of-war/4000-625421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609279/","id":609279,"name":"L'Inconnue","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-31-linconnue/4000-609279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621709/","id":621709,"name":"Deadly Catch","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-5-deadly-catch/4000-621709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628346/","id":628346,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-mirror-broken-4/4000-628346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608243/","id":608243,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-10/4000-608243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606623/","id":606623,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again-1/4000-606623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622701/","id":622701,"name":"","site_detail_url":"https://comicvine.gamespot.com/samurai-jack-quantum-jack-1/4000-622701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625670/","id":625670,"name":"American Soil, Part 6 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-6-american-soil-part-6-of-8/4000-625670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625275/","id":625275,"name":"Two Sides To Every Story","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-12-two-sides/4000-625275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625281/","id":625281,"name":"The Canyons of Clay","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-4-the-canyons-of-clay/4000-625281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-623736/","id":623736,"name":"American Soil, Part 5 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-5-american-soil-part-5-of-8/4000-623736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622103/","id":622103,"name":"American Soil, Part 4 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-4-american-soil-part-4-of-8/4000-622103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621966/","id":621966,"name":"The First Job","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-3-the-first-job/4000-621966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621583/","id":621583,"name":"Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-11-chapter-e/4000-621583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-620244/","id":620244,"name":"American Soil, Part 3 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-3-american-soil-part-3-of-8/4000-620244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-618491/","id":618491,"name":"American Soil, Part 2 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-2-american-soil-part-2-of-8/4000-618491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603086/","id":603086,"name":"Superweapon","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-29-superweapon/4000-603086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615317/","id":615317,"name":"Le Prince des ténèbres 2/3","site_detail_url":"https://comicvine.gamespot.com/jour-j-30-le-prince-des-tenebres-23/4000-615317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615316/","id":615316,"name":"Le prince des ténèbres 1/3","site_detail_url":"https://comicvine.gamespot.com/jour-j-29-le-prince-des-tenebres-13/4000-615316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617554/","id":617554,"name":"Le baptême du feu","site_detail_url":"https://comicvine.gamespot.com/frnck-2-le-bapteme-du-feu/4000-617554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-600531/","id":600531,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-28/4000-600531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605112/","id":605112,"name":"","site_detail_url":"https://comicvine.gamespot.com/edge-of-venomverse-1/4000-605112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613773/","id":613773,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-30/4000-613773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617805/","id":617805,"name":"Start With Hope","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-2-start-with-hope/4000-617805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616646/","id":616646,"name":"American Soil, Part 1 of 8","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-1-american-soil-part-1-of-8/4000-616646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616140/","id":616140,"name":"On the Same Page","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-10-on-the-sa/4000-616140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-614974/","id":614974,"name":"The Real World","site_detail_url":"https://comicvine.gamespot.com/gotham-city-garage-1-the-real-world/4000-614974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613735/","id":613735,"name":"The Switcheroo-Witcheroo","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-9-the-switch/4000-613735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613607/","id":613607,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/donald-quest-hammer-of-magic-1-tpb/4000-613607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608184/","id":608184,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/midnighter-the-complete-wildstorm-series-1-tpb/4000-608184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594083/","id":594083,"name":"The Motherland Is Calling","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-26-the-motherland-is-calling/4000-594083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594122/","id":594122,"name":"Predators Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-19-predators-part-1/4000-594122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610556/","id":610556,"name":"Predator and Prey","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-4-predator-and-prey/4000-610556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594963/","id":594963,"name":"POVs","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy-2-povs/4000-594963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610605/","id":610605,"name":"Maiden of the Mist","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-5-maiden-of-the-m/4000-610605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-614799/","id":614799,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-mirror-broken-3/4000-614799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594111/","id":594111,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy-1/4000-594111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595670/","id":595670,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-leaguepower-rangers-4/4000-595670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595662/","id":595662,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-27/4000-595662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609441/","id":609441,"name":"","site_detail_url":"https://comicvine.gamespot.com/trump-vs-time-lincoln-1/4000-609441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610459/","id":610459,"name":"Paper Trail","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-8-paper-trai/4000-610459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608176/","id":608176,"name":"The Write Stuff","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-7-the-write-/4000-608176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608149/","id":608149,"name":"Green Wedding","site_detail_url":"https://comicvine.gamespot.com/injustice-2-14-green-wedding/4000-608149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599914/","id":599914,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-3-volume-three/4000-599914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603087/","id":603087,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-queens-1-volume-4/4000-603087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605155/","id":605155,"name":"Victor Tango Charlie","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-3-victor-tango-char/4000-605155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591747/","id":591747,"name":"School Daze Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-6-school-daze-p/4000-591747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606331/","id":606331,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/jem-and-the-holograms-the-misfits-infinite-1-part-/4000-606331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599926/","id":599926,"name":"Oro's Weakness","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-2-oros-weakness/4000-599926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605185/","id":605185,"name":"Know Your Enemies!","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-4-know-your-enemi/4000-605185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605051/","id":605051,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-by-brian-azzarello-and-eduardo-risso-deluxe/4000-605051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592597/","id":592597,"name":"Dream On; But Are They Ready For... Taserface!","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-dream-on-1-dream-on-but-ar/4000-592597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603180/","id":603180,"name":"[Untitled]; The Ongoing Adventures of Squatt & Babboo","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-16-untitled-the-ongoi/4000-603180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617494/","id":617494,"name":"","site_detail_url":"https://comicvine.gamespot.com/orphan-black-deviations-4/4000-617494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601826/","id":601826,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-29/4000-601826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590765/","id":590765,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-25/4000-590765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-604925/","id":604925,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-mirror-broken-2/4000-604925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601840/","id":601840,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-5/4000-601840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605057/","id":605057,"name":"Painting the Town Red","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-6-painting-t/4000-605057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-602305/","id":602305,"name":"The Star Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-100-the-star-part-3-of-3/4000-602305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601759/","id":601759,"name":"Every Trick In the Book","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-5-every-tric/4000-601759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-600929/","id":600929,"name":"The Star Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-99-the-star-part-2-of-3/4000-600929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599771/","id":599771,"name":"Hostile Takeover, Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-2-9-hostile-takeover-part-1/4000-599771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598929/","id":598929,"name":"The Star Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-98-the-star-part-1-of-3/4000-598929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677101/","id":677101,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/heretics-the-wondrous-and-dangerous-beginnings-of-/4000-677101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587707/","id":587707,"name":"What's Past Is Prologue","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-24-whats-past-is-prologue/4000-587707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596809/","id":596809,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/micronauts-earthbound-1-volume-2/4000-596809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589812/","id":589812,"name":"Suicide Splits (Hey, It Beats \"Banana Squad\"); House Fires","site_detail_url":"https://comicvine.gamespot.com/suicide-squadthe-banana-splits-special-1-suicide-s/4000-589812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587417/","id":587417,"name":"Sitting In A Tree Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-man-14-sitting-in-a-tree-part-5/4000-587417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588574/","id":588574,"name":"Sittin' In A Tree Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-18-sittin-in-a-tree-conclusion/4000-588574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598419/","id":598419,"name":"Search Party / Trini's Vacation / Forever Mighty Morphin Black / Perfect / Sabrina's Day Out","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-2017-annual-1-search-/4000-598419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583691/","id":583691,"name":"Remembrance","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-23-remembrance/4000-583691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587400/","id":587400,"name":"Part One: \"Bug Hunt\"; Police & Thieves; Spider-Man Tsum-Up!; Mutts Ado About Nothing","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-25-part-one-bug-hunt-police/4000-587400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595041/","id":595041,"name":"Head 'em Up, Move 'em Out!","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-3-head-em-up-move/4000-595041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601629/","id":601629,"name":"Chapter 8: Deep Thought; His Own Worst Enemy","site_detail_url":"https://comicvine.gamespot.com/dirk-gentlys-holistic-detective-agency-the-salmon-/4000-601629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588555/","id":588555,"name":"Brawl In the Family: Part 5","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-5-brawl-in-the-/4000-588555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595738/","id":595738,"name":"[Untitled]; The Ongoing Adventures of Squatt & Babboo","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-15-untitled-the-ongoi/4000-595738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594145/","id":594145,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-28/4000-594145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595498/","id":595498,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-mirror-broken-1/4000-595498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595007/","id":595007,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-4/4000-595007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594560/","id":594560,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-mirror-broken-0/4000-594560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608231/","id":608231,"name":"","site_detail_url":"https://comicvine.gamespot.com/orphan-black-deviations-3/4000-608231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589871/","id":589871,"name":"","site_detail_url":"https://comicvine.gamespot.com/jughead-the-hunger-1/4000-589871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597163/","id":597163,"name":"Punch of Color","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-4-punch-of-c/4000-597163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597567/","id":597567,"name":"Free For All Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-97-free-for-all-part-3-of-3/4000-597567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596157/","id":596157,"name":"Free For All Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-96-free-for-all-part-2-of-3/4000-596157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595214/","id":595214,"name":"Free For All Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-95-free-for-all-part-1-of-3/4000-595214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594932/","id":594932,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-3-chapter-th/4000-594932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594521/","id":594521,"name":"L'inconnue Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-94-linconnue-part-3-of-3/4000-594521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593998/","id":593998,"name":"Proposal","site_detail_url":"https://comicvine.gamespot.com/injustice-2-4-proposal/4000-593998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590715/","id":590715,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-7-volume-7/4000-590715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582544/","id":582544,"name":"Sitting In A Tree Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-17-sitting-in-a-tree-part-4/4000-582544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581568/","id":581568,"name":"Sitting In A Tree Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-13-sitting-in-a-tree-part-3/4000-581568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594913/","id":594913,"name":"Dissolution Part 5: Modes of Production","site_detail_url":"https://comicvine.gamespot.com/the-transformers-lost-light-5-dissolution-part-5-m/4000-594913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593190/","id":593190,"name":"","site_detail_url":"https://comicvine.gamespot.com/micronauts-wrath-of-karza-1/4000-593190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593193/","id":593193,"name":"","site_detail_url":"https://comicvine.gamespot.com/orphan-black-deviations-2/4000-593193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591802/","id":591802,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-3/4000-591802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593297/","id":593297,"name":"","site_detail_url":"https://comicvine.gamespot.com/splitting-image-80-page-giant-1/4000-593297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579313/","id":579313,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-8/4000-579313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579437/","id":579437,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-22/4000-579437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593479/","id":593479,"name":"L'inconnue Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-93-linconnue-part-2-of-3/4000-593479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593225/","id":593225,"name":"Friends In High Places","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-2-friends-in/4000-593225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592812/","id":592812,"name":"L'inconnue Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-92-linconnue-part-1-of-3/4000-592812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592459/","id":592459,"name":"Two Speeding Bullets, Part 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2-2-two-speeding-bullets-part-2/4000-592459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592042/","id":592042,"name":"Suicide Squad: Prologue","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-91-suicide-squad-prologue/4000-592042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591724/","id":591724,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-out-of-the-bottle-1-chapter-on/4000-591724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590980/","id":590980,"name":"Winter Is Coming Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-90-winter-is-coming-part-3-of/4000-590980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590015/","id":590015,"name":"Winter Is Coming Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-89-winter-is-coming-part-2-of/4000-590015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587966/","id":587966,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-uprising-1-volume-3/4000-587966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588625/","id":588625,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-steampunk-1-tpb/4000-588625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576633/","id":576633,"name":"Sitting In A Tree Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-16-sitting-in-a-tree-part-2/4000-576633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575882/","id":575882,"name":"Sitting In A Tree Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-12-sitting-in-a-tree-part-1/4000-575882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574873/","id":574873,"name":"Return To The Wastelands: Part I","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-16-return-to-the-wastelands-part-i/4000-574873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574862/","id":574862,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck-1-part-one/4000-574862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590419/","id":590419,"name":"Le début du commencement","site_detail_url":"https://comicvine.gamespot.com/frnck-1-le-debut-du-commencement/4000-590419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589899/","id":589899,"name":"Into This World We Are Thrown","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-2-into-this-world/4000-589899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588460/","id":588460,"name":"Howl of the Wolf","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-deviations-1-howl-of-the-wolf/4000-588460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583623/","id":583623,"name":"Guns & Roses","site_detail_url":"https://comicvine.gamespot.com/the-x-files-deviations-2017-1-guns-and-roses/4000-583623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578456/","id":578456,"name":"Go Ask The Skrulls, Child","site_detail_url":"https://comicvine.gamespot.com/deadpool-25-go-ask-the-skrulls-child/4000-578456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575856/","id":575856,"name":"Brawl in the Family: Part 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-brawl-in-the-/4000-575856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576638/","id":576638,"name":"$kullocracy Part Two","site_detail_url":"https://comicvine.gamespot.com/usavengers-2-kullocracy-part-two/4000-576638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587457/","id":587457,"name":"[Untitled]; The Ongoing Adventures of Squatt & Babboo","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-13-untitled-the-ongoi/4000-587457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578459/","id":578459,"name":"","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-18/4000-578459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587444/","id":587444,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-27/4000-587444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587202/","id":587202,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-deviations-1/4000-587202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-584898/","id":584898,"name":"","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-deviations-1/4000-584898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583757/","id":583757,"name":"","site_detail_url":"https://comicvine.gamespot.com/big-trouble-in-little-chinaescape-from-new-york-6/4000-583757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589696/","id":589696,"name":"","site_detail_url":"https://comicvine.gamespot.com/orphan-black-deviations-1/4000-589696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575215/","id":575215,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-21/4000-575215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588928/","id":588928,"name":"Winter Is Coming Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-88-winter-is-coming-part-1-of/4000-588928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587749/","id":587749,"name":"Super Weapon Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-87-super-weapon-part-3-of-3/4000-587749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585267/","id":585267,"name":"Super Weapon Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-86-super-weapon-part-2-of-3/4000-585267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583890/","id":583890,"name":"Super Weapon Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-85-super-weapon-part-1-of-3/4000-583890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582626/","id":582626,"name":"The Big Burn","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-1-the-big-burn/4000-582626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582598/","id":582598,"name":"Stalked!","site_detail_url":"https://comicvine.gamespot.com/street-fighter-vs-darkstalkers-0-stalked/4000-582598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581585/","id":581585,"name":"Smoke & Mirrors Part 2","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-26-smoke-and-mirrors-part-2/4000-581585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569346/","id":569346,"name":"I Don't Wanna Fight Tonight! (With Yooouu!)","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-15-i-dont-wanna-fight-tonight-with-yoo/4000-569346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579225/","id":579225,"name":"Episode 4: Rock Racers","site_detail_url":"https://comicvine.gamespot.com/donald-quest-4-episode-4-rock-racers/4000-579225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571631/","id":571631,"name":"Book Seven","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-7-book-seven/4000-571631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581603/","id":581603,"name":"[Untitled]; The Ongoing Adventures of Bulk & Skull","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-12-untitled-the-ongoi/4000-581603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571665/","id":571665,"name":"","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-17/4000-571665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569337/","id":569337,"name":"","site_detail_url":"https://comicvine.gamespot.com/occupy-avengers-2/4000-569337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598541/","id":598541,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-72/4000-598541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579346/","id":579346,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-1/4000-579346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563999/","id":563999,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-20/4000-563999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582735/","id":582735,"name":"Leningrad Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-84-leningrad-part-3-of-3/4000-582735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581933/","id":581933,"name":"Leningrad Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-83-leningrad-part-2-of-3/4000-581933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581099/","id":581099,"name":"Leningrad Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-82-leningrad-part-1-of-3/4000-581099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579527/","id":579527,"name":"The Death of Illusion Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-81-the-death-of-illusion-part/4000-579527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579282/","id":579282,"name":"Egging On Part 1","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-past-times-at-super-hero-high-/4000-579282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558977/","id":558977,"name":"What Do You Dream?","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-1-what-do-you-dream/4000-558977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579234/","id":579234,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-4-/4000-579234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558419/","id":558419,"name":"The Last Ronin Part 5: The Wolverine","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-13-the-last-ronin-part-5-the-wolveri/4000-558419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556672/","id":556672,"name":"The Batgirls Fly By Night","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-19-the-batgirls-fly-by-night/4000-556672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558408/","id":558408,"name":"Live Another Day","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-21-live-another-day/4000-558408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558974/","id":558974,"name":"Cold Turkey","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-14-cold-turkey/4000-558974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557354/","id":557354,"name":"Brawl in the Family: Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-1-brawl-in-the-/4000-557354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576679/","id":576679,"name":"[Untitled]; The Ongoing Adventures of Bulk & Skull","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-11-untitled-the-ongoi/4000-576679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557361/","id":557361,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-clone-conspiracy-2/4000-557361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576662/","id":576662,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-25/4000-576662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578190/","id":578190,"name":"","site_detail_url":"https://comicvine.gamespot.com/micronauts-annual-1/4000-578190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562593/","id":562593,"name":"","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-16/4000-562593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558959/","id":558959,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-7/4000-558959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578709/","id":578709,"name":"The Death of Illusion Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-80-the-death-of-illusion-part/4000-578709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578194/","id":578194,"name":"Fall Down, Go Boom Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-ground-zero-17-fall-down-go-boom-part-1/4000-578194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576981/","id":576981,"name":"The Death of Illusion Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-79-the-death-of-illusion-part/4000-576981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576260/","id":576260,"name":"All Good Things Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-78-all-good-things-part-3-of-/4000-576260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575214/","id":575214,"name":"All Good Things Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-77-all-good-things-part-2-of-/4000-575214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619134/","id":619134,"name":"Harlan Ellison's The City on the Edge of Forever The Original Teleplay","site_detail_url":"https://comicvine.gamespot.com/star-trek-graphic-novel-collection-2-harlan-elliso/4000-619134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571622/","id":571622,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/52-2-volume-two/4000-571622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571583/","id":571583,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-6-volume-6/4000-571583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569385/","id":569385,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-sasquatch-1-volume-4/4000-569385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566803/","id":566803,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/rough-riders-give-them-hell-1-volume-1/4000-566803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552322/","id":552322,"name":"Uprising! Part Two","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-18-uprising-part-two/4000-552322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555502/","id":555502,"name":"The Return of Wally West Part Four: Now You See Her...","site_detail_url":"https://comicvine.gamespot.com/titans-4-the-return-of-wally-west-part-four-now-yo/4000-555502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553017/","id":553017,"name":"The Last Ronin Part 4: The Old Man and the Boy","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-12-the-last-ronin-part-4-the-old-man/4000-553017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555543/","id":555543,"name":"After The Fall","site_detail_url":"https://comicvine.gamespot.com/ultimates-12-after-the-fall/4000-555543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555533/","id":555533,"name":"A.I.M. Vs. S.H.I.E.L.D. Part VI: If You Choose to Accept It","site_detail_url":"https://comicvine.gamespot.com/new-avengers-17-aim-vs-shield-part-vi-if-you-choos/4000-555533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-554876/","id":554876,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201612/4000-554876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573327/","id":573327,"name":"All Good Things Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-76-all-good-things-part-1-of-/4000-573327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569972/","id":569972,"name":"Suicide Squad Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-75-suicide-squad-part-3-of-3/4000-569972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566924/","id":566924,"name":"Suicide Squad Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-74-suicide-squad-part-2-of-3/4000-566924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566556/","id":566556,"name":"Black Hearts Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-ground-zero-11-black-hearts-part-1/4000-566556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-564028/","id":564028,"name":"Suicide Squad Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-73-suicide-squad-part-1-of-3/4000-564028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563269/","id":563269,"name":"What's Past is Prologue Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-72-whats-past-is-prologue-par/4000-563269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549616/","id":549616,"name":"Uprising! Part One","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-17-uprising-part-one/4000-549616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562576/","id":562576,"name":"Savage High, Part 1","site_detail_url":"https://comicvine.gamespot.com/dc-super-hero-girls-past-times-at-super-hero-high-/4000-562576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558866/","id":558866,"name":"Episode 1: Hammer of Magic!","site_detail_url":"https://comicvine.gamespot.com/donald-quest-1-episode-1-hammer-of-magic/4000-558866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551323/","id":551323,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/ultimates-11-endgame/4000-551323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550343/","id":550343,"name":"Destiny: Part Three","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-12-destiny-part-three/4000-550343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551302/","id":551302,"name":"Deadpool and His Insufferable Pals; Nü Flesh","site_detail_url":"https://comicvine.gamespot.com/deadpool-annual-1-deadpool-and-his-insufferable-pa/4000-551302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556551/","id":556551,"name":"Dare Mighty Things","site_detail_url":"https://comicvine.gamespot.com/rough-riders-7-dare-mighty-things/4000-556551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550344/","id":550344,"name":"Before Dead No More Part Three: Full Otto","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-18-before-dead-no-more-part/4000-550344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562666/","id":562666,"name":"[Untitled]; The Ongoing Adventures of Bulk & Skull","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-9-untitled-the-ongoin/4000-562666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548585/","id":548585,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-11/4000-548585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562569/","id":562569,"name":"","site_detail_url":"https://comicvine.gamespot.com/tarzan-on-the-planet-of-the-apes-3/4000-562569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558268/","id":558268,"name":"","site_detail_url":"https://comicvine.gamespot.com/micronauts-7/4000-558268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556489/","id":556489,"name":"","site_detail_url":"https://comicvine.gamespot.com/myopia-special-1/4000-556489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583795/","id":583795,"name":"","site_detail_url":"https://comicvine.gamespot.com/rough-riders-nation-1/4000-583795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549527/","id":549527,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-6/4000-549527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-559126/","id":559126,"name":"What's Past is Prologue Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-71-whats-past-is-prologue-par/4000-559126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558626/","id":558626,"name":"What's Past is Prologue Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-70-whats-past-is-prologue-par/4000-558626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557530/","id":557530,"name":"Queen Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-69-queen-part-3-of-3/4000-557530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556742/","id":556742,"name":"Queen Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-68-queen-part-2-of-3/4000-556742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546034/","id":546034,"name":"Where Bombshells Dare!","site_detail_url":"https://comicvine.gamespot.com/harleys-little-black-book-4-where-bombshells-dare/4000-546034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542746/","id":542746,"name":"War Stories","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-16-war-stories/4000-542746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547296/","id":547296,"name":"There Is No High Road: Part Four: Tip of the Iceberg","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-4-there-is-no-high-road-part-four-tip/4000-547296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543754/","id":543754,"name":"The Last Ronin Part 2: The Well","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-10-the-last-ronin-part-2-the-well/4000-543754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552273/","id":552273,"name":"The Crowded Hour","site_detail_url":"https://comicvine.gamespot.com/rough-riders-6-the-crowded-hour/4000-552273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547251/","id":547251,"name":"The Belle of the Bog! The Lost Bombshell!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-annual-1-the-belle-of-the-bog/4000-547251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553990/","id":553990,"name":"Sasquatch Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-24-sasquatch-part-6-of-6/4000-553990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542745/","id":542745,"name":"Lord Ffogg Plays His Hand","site_detail_url":"https://comicvine.gamespot.com/batman-66-meets-steed-and-mrs-peel-2-lord-ffogg-pl/4000-542745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556331/","id":556331,"name":"Informed","site_detail_url":"https://comicvine.gamespot.com/the-transformers-till-all-are-one-revolution-1-inf/4000-556331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555592/","id":555592,"name":"Fallen","site_detail_url":"https://comicvine.gamespot.com/street-fighter-unlimited-11-fallen/4000-555592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552837/","id":552837,"name":"Chapter 3: O Ship of State","site_detail_url":"https://comicvine.gamespot.com/revolution-3-chapter-3-o-ship-of-state/4000-552837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544996/","id":544996,"name":"Breaking Point","site_detail_url":"https://comicvine.gamespot.com/ultimates-10-breaking-point/4000-544996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556744/","id":556744,"name":"Betty: R.I.P. Chapter Two - Dear Diary...","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-comics-season-two-halloween-/4000-556744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547322/","id":547322,"name":"Betty: R.I.P. Chapter Five","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-10-betty-rip-chapter-five/4000-547322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555577/","id":555577,"name":"[Untitled]; The Ongoing Adventures of Bulk & Skull","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-8-untitled-the-ongoin/4000-555577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555477/","id":555477,"name":"","site_detail_url":"https://comicvine.gamespot.com/tarzan-on-the-planet-of-the-apes-2/4000-555477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546063/","id":546063,"name":"","site_detail_url":"https://comicvine.gamespot.com/nighthawk-4/4000-546063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546057/","id":546057,"name":"","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-13/4000-546057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547281/","id":547281,"name":"","site_detail_url":"https://comicvine.gamespot.com/hyperion-6/4000-547281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547267/","id":547267,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-annual-1/4000-547267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555765/","id":555765,"name":"Queen Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-67-queen-part-1-of-3/4000-555765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555719/","id":555719,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dragon-ball-xenoverse-2-the-manga-a-time-patroller/4000-555719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-554631/","id":554631,"name":"Mechanical Gods Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-66-mechanical-gods-part-3-of-/4000-554631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553834/","id":553834,"name":"Chapter Three: Sidekicks Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-ground-zero-3-chapter-three-sidekicks-pa/4000-553834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553326/","id":553326,"name":"Mechanical Gods Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-65-mechanical-gods-part-2-of-/4000-553326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552394/","id":552394,"name":"Mechanical Gods Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-64-mechanical-gods-part-1-of-/4000-552394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556332/","id":556332,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-treasury-of-classic-tales-1-volume-on/4000-556332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552019/","id":552019,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-5-volume-5/4000-552019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541216/","id":541216,"name":"The Last Ronin Part I: The Silent Order","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-9-the-last-ronin-part-i-the-silent-o/4000-541216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550415/","id":550415,"name":"Sasquatch Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-23-sasquatch-part-5-of-6/4000-550415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539764/","id":539764,"name":"Ghost Stories","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-15-ghost-stories/4000-539764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539287/","id":539287,"name":"Familiars","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-6-familiars/4000-539287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552090/","id":552090,"name":"Chapter 2: The Divine Source of Liberty","site_detail_url":"https://comicvine.gamespot.com/revolution-2-chapter-2-the-divine-source-of-libert/4000-552090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551628/","id":551628,"name":"Big Cats Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-63-big-cats-part-3-of-3/4000-551628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550432/","id":550432,"name":"[Untitled]; The Ongoing Adventures of Bulk & Skull","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-7-untitled-the-ongoin/4000-550432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540477/","id":540477,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201609/4000-540477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540084/","id":540084,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-9/4000-540084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540064/","id":540064,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-7/4000-540064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539248/","id":539248,"name":"","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-8/4000-539248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539236/","id":539236,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-2/4000-539236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550676/","id":550676,"name":"Big Cats Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-62-big-cats-part-2-of-3/4000-550676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550538/","id":550538,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-6/4000-550538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549877/","id":549877,"name":"Big Cats Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-61-big-cats-part-1-of-3/4000-549877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549422/","id":549422,"name":"Chapter 39: The Final Gambit","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-39-chapter-39-th/4000-549422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548813/","id":548813,"name":"Men Who Would Be Kings Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-60-men-who-would-be-kings-par/4000-548813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548486/","id":548486,"name":"Chapter 38: Funsies","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-38-chapter-38-fu/4000-548486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547743/","id":547743,"name":"Men Who Would Be Kings Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-59-men-who-would-be-kings-par/4000-547743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543530/","id":543530,"name":"Vacancy (3 of 3)","site_detail_url":"https://comicvine.gamespot.com/puppet-master-18-vacancy-3-of-3/4000-543530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533039/","id":533039,"name":"Spider-Women Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-women-omega-1-spider-women-conclusion/4000-533039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545015/","id":545015,"name":"Sasquatch Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-22-sasquatch-part-4-of-6/4000-545015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533134/","id":533134,"name":"Love Stories","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-14-love-stories/4000-533134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547370/","id":547370,"name":"Hell's Pocket","site_detail_url":"https://comicvine.gamespot.com/rough-riders-5-hells-pocket/4000-547370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544797/","id":544797,"name":"Connection Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/star-trek-60-connection-part-2-of-2/4000-544797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547321/","id":547321,"name":"[Untitled]; The Ongoing Adventures of Bulk & Skull","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-6-untitled-the-ongoin/4000-547321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537466/","id":537466,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201608/4000-537466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537944/","id":537944,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-annual-1/4000-537944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545971/","id":545971,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-8/4000-545971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545967/","id":545967,"name":"","site_detail_url":"https://comicvine.gamespot.com/back-to-the-future-citizen-brown-4/4000-545967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547186/","id":547186,"name":"Chapter 37: Earth One","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-37-chapter-37-ea/4000-547186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546376/","id":546376,"name":"Men Who Would Be Kings Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-58-men-who-would-be-kings-par/4000-546376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545948/","id":545948,"name":"Chapter 36: Suicide Mission","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-36-chapter-36-su/4000-545948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545459/","id":545459,"name":"The Batgirls Fly by Night Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-57-the-batgirls-fly-by-night-/4000-545459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544681/","id":544681,"name":"Chapter 35: The Plan","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-35-chapter-35-th/4000-544681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543962/","id":543962,"name":"The Batgirls Fly by Night Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-56-the-batgirls-fly-by-night-/4000-543962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543515/","id":543515,"name":"Chapter 34: Invisible Truths","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-34-chapter-34-in/4000-543515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542841/","id":542841,"name":"The Batgirls Fly by Night Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-55-the-batgirls-fly-by-night-/4000-542841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539212/","id":539212,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-allies-1-volume-2/4000-539212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539147/","id":539147,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deviations-1-tpb/4000-539147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545978/","id":545978,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-transformers-sins-of-the-wreckers-1-tpb/4000-545978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530782/","id":530782,"name":"The Crucible Chapter Five: The Trial","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-5-the-crucible-chap/4000-530782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538595/","id":538595,"name":"The Bull Moose","site_detail_url":"https://comicvine.gamespot.com/rough-riders-4-the-bull-moose/4000-538595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530255/","id":530255,"name":"The Battle of Britain! Part Two","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-12-the-battle-of-britain-part/4000-530255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529661/","id":529661,"name":"Spider-Women Part 6","site_detail_url":"https://comicvine.gamespot.com/silk-8-spider-women-part-6/4000-529661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540110/","id":540110,"name":"Sasquatch Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-21-sasquatch-part-3-of-6/4000-540110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539328/","id":539328,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-osamu-tezuka-story-a-life-in-manga-and-anime-1/4000-539328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539159/","id":539159,"name":"Connection Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/star-trek-59-connection-part-1-of-2/4000-539159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531856/","id":531856,"name":"Cancelled!","site_detail_url":"https://comicvine.gamespot.com/justice-league-3001-12-cancelled/4000-531856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541259/","id":541259,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-1-book-one/4000-541259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531940/","id":531940,"name":"Betty: R.I.P. Chapter Four: The Trouble With Reggie","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-9-betty-rip-chapter-four-the/4000-531940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531851/","id":531851,"name":"Batgirls Swing Again!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-13-batgirls-swing-again/4000-531851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530741/","id":530741,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-7/4000-530741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539993/","id":539993,"name":"","site_detail_url":"https://comicvine.gamespot.com/back-to-the-future-citizen-brown-3/4000-539993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530968/","id":530968,"name":"","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-10/4000-530968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541654/","id":541654,"name":"The Battle of Berlin Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-54-the-battle-of-berlin-part-/4000-541654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540475/","id":540475,"name":"The Battle of Berlin Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-53-the-battle-of-berlin-part-/4000-540475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539980/","id":539980,"name":"Chapter 31: Surgical Strike","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-31-chapter-31-su/4000-539980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539552/","id":539552,"name":"The Battle of Berlin Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-52-the-battle-of-berlin-part-/4000-539552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539099/","id":539099,"name":"Chapter 30: Commitments","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-30-chapter-30-co/4000-539099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538782/","id":538782,"name":"The Battle of Berlin Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-51-the-battle-of-berlin-part-/4000-538782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538122/","id":538122,"name":"The Battle of Berlin Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-50-the-battle-of-berlin-part-/4000-538122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537816/","id":537816,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-4-volume-4/4000-537816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539134/","id":539134,"name":"Vacancy (2 of 3)","site_detail_url":"https://comicvine.gamespot.com/puppet-master-17-vacancy-2-of-3/4000-539134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537869/","id":537869,"name":"The War Never Ends","site_detail_url":"https://comicvine.gamespot.com/the-transformers-vs-gi-joe-13-the-war-never-ends/4000-537869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525180/","id":525180,"name":"The Battle of Britain! Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-11-the-battle-of-britain-part/4000-525180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523522/","id":523522,"name":"Taking Sides","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-7-taking-sides/4000-523522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527153/","id":527153,"name":"Spider-Women Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-woman-6-spider-women-part-4/4000-527153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526066/","id":526066,"name":"Spider-Women Part 3","site_detail_url":"https://comicvine.gamespot.com/silk-7-spider-women-part-3/4000-526066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525037/","id":525037,"name":"Spider-Women Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-7-spider-women-part-2/4000-525037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523267/","id":523267,"name":"Spider-Women Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-woman-alpha-1-spider-women-part-1/4000-523267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535388/","id":535388,"name":"Sasquatch Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-20-sasquatch-part-2-of-6/4000-535388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527116/","id":527116,"name":"Make 'em Larf!","site_detail_url":"https://comicvine.gamespot.com/justice-league-3001-11-make-em-larf/4000-527116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533126/","id":533126,"name":"Give Them Hell","site_detail_url":"https://comicvine.gamespot.com/rough-riders-3-give-them-hell/4000-533126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527108/","id":527108,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-4-book-four/4000-527108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537430/","id":537430,"name":"The Battle of Berlin Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-49-the-battle-of-berlin-part-/4000-537430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537123/","id":537123,"name":"Chapter 27: Barry","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-27-chapter-27-ba/4000-537123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535583/","id":535583,"name":"War Stories Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-48-war-stories-part-3-of-3/4000-535583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535019/","id":535019,"name":"War Stories Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-47-war-stories-part-2-of-3/4000-535019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533723/","id":533723,"name":"Chapter 24: Razor's Edge","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-24-chapter-24-ra/4000-533723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533540/","id":533540,"name":"War Stories Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-46-war-stories-part-1-of-3/4000-533540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530759/","id":530759,"name":"Sasquatch Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-19-sasquatch-part-1-of-6/4000-530759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529006/","id":529006,"name":"Malice in Wonderland","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-extra-credit-5-malice-in-wonderland/4000-529006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529504/","id":529504,"name":"Legacy of Spock Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/star-trek-57-legacy-of-spock-part-3-of-4/4000-529504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518865/","id":518865,"name":"Greater Power Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-6-greater-power-conclusion/4000-518865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528603/","id":528603,"name":"Bully For You","site_detail_url":"https://comicvine.gamespot.com/rough-riders-2-bully-for-you/4000-528603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519151/","id":519151,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-collectors-edition/4000-519151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530822/","id":530822,"name":"Blood Debt (4 of 4)","site_detail_url":"https://comicvine.gamespot.com/puppet-master-15-blood-debt-4-of-4/4000-530822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517811/","id":517811,"name":"Allies and Enemies Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-10-allies-and-enemies-part-3-/4000-517811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526374/","id":526374,"name":"","site_detail_url":"https://comicvine.gamespot.com/saikyo-jump-201605/4000-526374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537868/","id":537868,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-sins-of-wreckers-5/4000-537868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530593/","id":530593,"name":"","site_detail_url":"https://comicvine.gamespot.com/micronauts-2/4000-530593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520436/","id":520436,"name":"","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-6/4000-520436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529198/","id":529198,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-tick-free-comic-book-day-2016-1/4000-529198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-532161/","id":532161,"name":"Ghost Stories Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-45-ghost-stories-part-3-of-3/4000-532161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531679/","id":531679,"name":"Chapter 23: Birthday","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-23-chapter-23-bi/4000-531679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531014/","id":531014,"name":"Ghost Stories Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-44-ghost-stories-part-2-of-3/4000-531014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530570/","id":530570,"name":"Chapter 22: Tempers Flare","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-22-chapter-22-te/4000-530570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530286/","id":530286,"name":"Ghost Stories Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-43-ghost-stories-part-1-of-3/4000-530286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529469/","id":529469,"name":"Chapter 21: Memorial","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-21-chapter-21-me/4000-529469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529011/","id":529011,"name":"Love Stories Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-42-love-stories-part-3-of-3/4000-529011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528290/","id":528290,"name":"Chapter 20: Doomsday Scenario","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-20-chapter-20-do/4000-528290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766848/","id":766848,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/gate-where-the-jsdf-fought-1-vol-1/4000-766848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523243/","id":523243,"name":"Wonder Woman: Earth One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-earth-one-1-wonder-woman-earth-one/4000-523243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525030/","id":525030,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-1/4000-525030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514399/","id":514399,"name":"Totally Awesome Team-Up","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-3-totally-aweso/4000-514399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516929/","id":516929,"name":"Total Eclipso!","site_detail_url":"https://comicvine.gamespot.com/justice-league-3001-9-total-eclipso/4000-516929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516960/","id":516960,"name":"The Spider-Verse Part Four","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-4/4000-516960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523299/","id":523299,"name":"The Big Stick","site_detail_url":"https://comicvine.gamespot.com/rough-riders-1-the-big-stick/4000-523299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514444/","id":514444,"name":"Happy Ever After","site_detail_url":"https://comicvine.gamespot.com/new-avengers-6-happy-ever-after/4000-514444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514450/","id":514450,"name":"Greater Power Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-5-greater-power-part-five/4000-514450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523238/","id":523238,"name":"Emperor Joker","site_detail_url":"https://comicvine.gamespot.com/superman-emperor-joker-1-emperor-joker/4000-523238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516920/","id":516920,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-3-book-three/4000-516920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514405/","id":514405,"name":"Allies and Enemies Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-9-allies-and-enemies-part-3-o/4000-514405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527033/","id":527033,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-sins-of-wreckers-4/4000-527033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525966/","id":525966,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-vs-gi-joe-12/4000-525966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525956/","id":525956,"name":"","site_detail_url":"https://comicvine.gamespot.com/godzilla-oblivion-2/4000-525956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527633/","id":527633,"name":"Love Stories Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-41-love-stories-part-2-of-3/4000-527633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526466/","id":526466,"name":"Love Stories Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-40-love-stories-part-1-of-3/4000-526466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525335/","id":525335,"name":"The Batgirls Swing Again! Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-39-the-batgirls-swing-again-p/4000-525335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523599/","id":523599,"name":"The Batgirls Swing Again! Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-38-the-batgirls-swing-again-p/4000-523599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522711/","id":522711,"name":"The Batgirls Swing Again! Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-37-the-batgirls-swing-again-p/4000-522711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901845/","id":901845,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/dc-comics-graphic-novel-collection-61-flashpoint/4000-901845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521293/","id":521293,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-3-volume-3/4000-521293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517812/","id":517812,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-enlisted-1-volume-1/4000-517812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521210/","id":521210,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-the-spectrum-war-1-tpb/4000-521210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521211/","id":521211,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/super-angry-birds-1-tpb/4000-521211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518763/","id":518763,"name":"Time and Being","site_detail_url":"https://comicvine.gamespot.com/the-x-files-deviations-1-time-and-being/4000-518763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512430/","id":512430,"name":"The Spider-Verse Part Three","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-3/4000-512430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521323/","id":521323,"name":"The Silver Lake Slasher; Secret Convergence War of Infinite Squirts; Jacob; Hellcloud Awaits","site_detail_url":"https://comicvine.gamespot.com/bloodshot-reborn-annual-2016-1-the-silver-lake-sla/4000-521323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510601/","id":510601,"name":"Round Up","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-1-round-up/4000-510601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510926/","id":510926,"name":"Parrot; The Real Question","site_detail_url":"https://comicvine.gamespot.com/superman-american-alien-3-parrot-the-real-question/4000-510926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510502/","id":510502,"name":"Greater Power Part Four","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-4-greater-power-part-four/4000-510502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511517/","id":511517,"name":"Don't They Know... ...It's the End of the World?","site_detail_url":"https://comicvine.gamespot.com/new-avengers-5-dont-they-know-its-the-end-of-the-w/4000-511517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510600/","id":510600,"name":"Allies Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-8-allies-part-2-of-3/4000-510600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522195/","id":522195,"name":"","site_detail_url":"https://comicvine.gamespot.com/godzilla-oblivion-1/4000-522195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522201/","id":522201,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-deviations-1/4000-522201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521208/","id":521208,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-deviations-1/4000-521208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520122/","id":520122,"name":"","site_detail_url":"https://comicvine.gamespot.com/transformers-deviations-1/4000-520122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517967/","id":517967,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-essentials-batman-the-dark-knight-return/4000-517967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519156/","id":519156,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-deviations-1/4000-519156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522140/","id":522140,"name":"Chapter 15: Revolutionary Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-15-chapter-15-re/4000-522140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521608/","id":521608,"name":"The Battle of Britain Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-36-the-battle-of-britain-part/4000-521608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520527/","id":520527,"name":"The Battle of Britain Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-35-the-battle-of-britain-part/4000-520527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520026/","id":520026,"name":"Chapter 13: Taking Sides","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-13-chapter-13-ta/4000-520026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519152/","id":519152,"name":"The Battle of Britain Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-34-the-battle-of-britain-part/4000-519152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519162/","id":519162,"name":"Chapter Eighteen","site_detail_url":"https://comicvine.gamespot.com/the-legend-of-wonder-woman-18-chapter-eighteen/4000-519162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518341/","id":518341,"name":"The Battle of Britain Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-33-the-battle-of-britain-part/4000-518341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513686/","id":513686,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-chiroptera-and-carniformaves-1-vo/4000-513686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516088/","id":516088,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-vs-the-marvel-universe-1-tpb/4000-516088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514396/","id":514396,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-returns-30th-anniversary-ed/4000-514396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508894/","id":508894,"name":"The Spider-Verse Part Two","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-2/4000-508894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508863/","id":508863,"name":"Techno-Takedown!","site_detail_url":"https://comicvine.gamespot.com/cyborg-6-techno-takedown/4000-508863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514336/","id":514336,"name":"Study Hall of Justice","site_detail_url":"https://comicvine.gamespot.com/dc-comics-secret-hero-society-1-study-hall-of-just/4000-514336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507147/","id":507147,"name":"Rubble & Revelations","site_detail_url":"https://comicvine.gamespot.com/cyborg-5-rubble-and-revelations/4000-507147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508871/","id":508871,"name":"Power and Glory Part Five","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-6-power-and-glory-part-f/4000-508871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507181/","id":507181,"name":"Millennium: Part One; To Be the Man...","site_detail_url":"https://comicvine.gamespot.com/guardians-of-infinity-1-millennium-part-one-to-be-/4000-507181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507743/","id":507743,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-7-justice/4000-507743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513626/","id":513626,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-1-hctpb/4000-513626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507781/","id":507781,"name":"Greater Power Part Three","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-3-greater-power-part-three/4000-507781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517724/","id":517724,"name":"Double Feature","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-extra-credit-3-double-feature/4000-517724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507741/","id":507741,"name":"Combat Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-6-combat-part-3-of-3/4000-507741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508864/","id":508864,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-2-book-two/4000-508864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507740/","id":507740,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-1-collectors-editi/4000-507740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509043/","id":509043,"name":"Allies Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-7-allies-part-1-of-3/4000-509043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516921/","id":516921,"name":"The Battle of Britain Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-32-the-battle-of-britain-part/4000-516921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516759/","id":516759,"name":"Chapter 10: The Curious Case of Bizarro Superman","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-10-chapter-10-th/4000-516759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516323/","id":516323,"name":"The Battle of Britain Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-31-the-battle-of-britain-part/4000-516323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-515910/","id":515910,"name":"Chapter 9: Objects In Mirror...","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-9-chapter-9-obje/4000-515910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514651/","id":514651,"name":"Allies and Enemies Part 3 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-30-allies-and-enemies-part-3-/4000-514651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514206/","id":514206,"name":"Allies and Enemies Part 2 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-29-allies-and-enemies-part-2-/4000-514206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512468/","id":512468,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/rasputin-the-road-to-the-white-house-1-volume-2/4000-512468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506658/","id":506658,"name":"The Spider-Verse Part One","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-1/4000-506658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506620/","id":506620,"name":"The Apprentice","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-knight-robin-special-1-the-apprentic/4000-506620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505523/","id":505523,"name":"Greater Power Part Two","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-2-greater-power-part-two/4000-505523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507422/","id":507422,"name":"Everlasting Peace","site_detail_url":"https://comicvine.gamespot.com/mega-man-55-everlasting-peace/4000-507422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506624/","id":506624,"name":"Combat Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-5-combat-part-2-of-3/4000-506624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505690/","id":505690,"name":"Combat Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-4-combat-part-1-of-3/4000-505690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511487/","id":511487,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-collectors-edition/4000-511487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506622/","id":506622,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-1-book-one/4000-506622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505158/","id":505158,"name":"Blood Island Part 4: Epilogues","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-12-blood-island-part-4-epilogues/4000-505158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506182/","id":506182,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-1/4000-506182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512451/","id":512451,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-sins-of-wreckers-3/4000-512451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512816/","id":512816,"name":"Allies and Enemies Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-28-allies-and-enemies-part-1-/4000-512816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512631/","id":512631,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/the-legend-of-wonder-woman-12-chapter-twelve/4000-512631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512224/","id":512224,"name":"Chapter 6: Decoy","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-6-chapter-6-deco/4000-512224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511876/","id":511876,"name":"Allies Part 9 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-27-allies-part-9-of-9/4000-511876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511411/","id":511411,"name":"Chapter 5: Bait","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-5-chapter-5-bait/4000-511411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511265/","id":511265,"name":"Allies Part 8 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-26-allies-part-8-of-9/4000-511265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511088/","id":511088,"name":"Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/the-legend-of-wonder-woman-10-chapter-ten/4000-511088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510729/","id":510729,"name":"Allies Part 7 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-25-allies-part-7-of-9/4000-510729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510398/","id":510398,"name":"Chapter 3: The Enemy of My Enemy","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-3-chapter-3-the-/4000-510398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510242/","id":510242,"name":"Chapter 2","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-knight-batgirl-and-harley-quinn-spec/4000-510242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508846/","id":508846,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-2-volume-2/4000-508846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509702/","id":509702,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hail-hydra-warzones-1-tpb/4000-509702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507204/","id":507204,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-1-tpb/4000-507204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507214/","id":507214,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-casey-and-april-1-tpb/4000-507214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504310/","id":504310,"name":"Shattered Reflections","site_detail_url":"https://comicvine.gamespot.com/cyborg-4-shattered-reflections/4000-504310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503023/","id":503023,"name":"Enlisted Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-3-enlisted-part-3-of-3/4000-503023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502616/","id":502616,"name":"Cybertron's Most Wanted","site_detail_url":"https://comicvine.gamespot.com/transformers-timelines-11-cybertrons-most-wanted/4000-502616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504319/","id":504319,"name":"Before the Storm","site_detail_url":"https://comicvine.gamespot.com/justice-league-3001-5-before-the-storm/4000-504319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502845/","id":502845,"name":"Arrival Part I","site_detail_url":"https://comicvine.gamespot.com/superman-lois-and-clark-1-arrival-part-i/4000-502845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510021/","id":510021,"name":"Allies Part 6 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-24-allies-part-6-of-9/4000-510021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501121/","id":501121,"name":"2015","site_detail_url":"https://comicvine.gamespot.com/the-psychedelic-journal-of-time-travel-5-2015/4000-501121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502109/","id":502109,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-0/4000-502109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507787/","id":507787,"name":"","site_detail_url":"https://comicvine.gamespot.com/alice-cooper-vs-chaos-4/4000-507787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509377/","id":509377,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-knight-batgirl-and-harley-quinn-spec/4000-509377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509075/","id":509075,"name":"Allies Part 5 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-23-allies-part-5-of-9/4000-509075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508743/","id":508743,"name":"Chapter 1: Roundup","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-1-chapter-1-roun/4000-508743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508639/","id":508639,"name":"Allies Part 4 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-22-allies-part-4-of-9/4000-508639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508120/","id":508120,"name":"Allies Part 3 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-21-allies-part-3-of-9/4000-508120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507413/","id":507413,"name":"Allies Part 2 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-20-allies-part-2-of-9/4000-507413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504980/","id":504980,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-10-volume-10/4000-504980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506155/","id":506155,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-darker-genesis-1-tpb/4000-506155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505538/","id":505538,"name":"The Doc Who Never Was; Science Project","site_detail_url":"https://comicvine.gamespot.com/back-to-the-future-2-the-doc-who-never-was-science/4000-505538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501004/","id":501004,"name":"Part Ten: Defiance","site_detail_url":"https://comicvine.gamespot.com/he-man-the-eternity-war-10-part-ten-defiance/4000-501004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504910/","id":504910,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-saga-deluxe-edition-1-hc/4000-504910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499015/","id":499015,"name":"Enlisted Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-2-enlisted-part-2-of-3/4000-499015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505020/","id":505020,"name":"Court of Love","site_detail_url":"https://comicvine.gamespot.com/charmed-season-10-13-court-of-love/4000-505020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501865/","id":501865,"name":"Battleground: Detroit!","site_detail_url":"https://comicvine.gamespot.com/cyborg-3-battleground-detroit/4000-501865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504985/","id":504985,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-10/4000-504985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501610/","id":501610,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghost-racers-4/4000-501610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506675/","id":506675,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-annual-2015-1/4000-506675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505532/","id":505532,"name":"","site_detail_url":"https://comicvine.gamespot.com/alice-cooper-vs-chaos-3/4000-505532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506623/","id":506623,"name":"Allies Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-19-allies-part-1-of-9/4000-506623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506351/","id":506351,"name":"Combat Part 9 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-18-combat-part-9-of-9/4000-506351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505811/","id":505811,"name":"Combat Part 8 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-17-combat-part-8-of-9/4000-505811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505210/","id":505210,"name":"Combat Part 7 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-16-combat-part-7-of-9/4000-505210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498015/","id":498015,"name":"Worlds Unite Part Twelve: Last Ritghts","site_detail_url":"https://comicvine.gamespot.com/mega-man-52-worlds-unite-part-twelve-last-ritghts/4000-498015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496863/","id":496863,"name":"The Dream","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-wonder-woman-1-th/4000-496863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498359/","id":498359,"name":"Target: Victor Stone","site_detail_url":"https://comicvine.gamespot.com/cyborg-2-target-victor-stone/4000-498359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503538/","id":503538,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-deluxe-edition-1-hc/4000-503538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502084/","id":502084,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/convergence-1-hc/4000-502084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497549/","id":497549,"name":"Genesis Part One","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-1-genesis-part-on/4000-497549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497365/","id":497365,"name":"Enlisted Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-1-enlisted-part-1-of-3/4000-497365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504582/","id":504582,"name":"Combat Part 6 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-15-combat-part-6-of-9/4000-504582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496873/","id":496873,"name":"Calling a Family Meeting","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-calling-a-fam/4000-496873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502188/","id":502188,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-1-book-one/4000-502188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497935/","id":497935,"name":"\"Daddy has to Go Away for a While\"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-4-daddy-has-to-/4000-497935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499100/","id":499100,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-2015-event-four-doctors-4/4000-499100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498077/","id":498077,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-2/4000-498077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497387/","id":497387,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghost-racers-3/4000-497387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503598/","id":503598,"name":"","site_detail_url":"https://comicvine.gamespot.com/adventure-time-with-fionna-and-cake-card-wars-4/4000-503598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504372/","id":504372,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-18/4000-504372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502878/","id":502878,"name":"","site_detail_url":"https://comicvine.gamespot.com/alice-cooper-vs-chaos-2/4000-502878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501086/","id":501086,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-event-2015-four-doctors-5/4000-501086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498358/","id":498358,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-knight-genesis-1/4000-498358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503948/","id":503948,"name":"Combat Part 5 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-14-combat-part-5-of-9/4000-503948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503097/","id":503097,"name":"Combat Part 4 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-13-combat-part-4-of-9/4000-503097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502418/","id":502418,"name":"Combat Part 3 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-12-combat-part-3-of-9/4000-502418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502023/","id":502023,"name":"Chapter Twenty-Three: Last Stand","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-23-chapter-twent/4000-502023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501866/","id":501866,"name":"Combat Part 2 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-11-combat-part-2-of-9/4000-501866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839774/","id":839774,"name":"Épilogue 2","site_detail_url":"https://comicvine.gamespot.com/uchronie-s-epilogues-2-epilogue-2/4000-839774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496448/","id":496448,"name":"Worlds Unite Part Ten: Justice Across Worlds","site_detail_url":"https://comicvine.gamespot.com/sonic-boom-10-worlds-unite-part-ten-justice-across/4000-496448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494391/","id":494391,"name":"Worlds Unite Part Seven: Gears and Wills","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-274-worlds-unite-part-seven-gea/4000-494391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495868/","id":495868,"name":"Worlds Unite Part Nine: Infinite Possibilities","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-78-worlds-unite-part-nine-infinite-/4000-495868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500248/","id":500248,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-1-volume-1/4000-500248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501102/","id":501102,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-golden-compass-the-graphic-novel-1-volume-1/4000-501102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495771/","id":495771,"name":"Unplugged","site_detail_url":"https://comicvine.gamespot.com/cyborg-1-unplugged/4000-495771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496445/","id":496445,"name":"The Crucible Chapter Four: Harvey Horrors","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-4-the-crucible-chap/4000-496445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496376/","id":496376,"name":"Part Eight: The End of All Fear","site_detail_url":"https://comicvine.gamespot.com/he-man-the-eternity-war-8-part-eight-the-end-of-al/4000-496376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501627/","id":501627,"name":"Part 4: And All Is...","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-4-part-4-and-all-is/4000-501627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494316/","id":494316,"name":"Part 2: \"Because We Said So, That's Why.\"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-2-part-2-becaus/4000-494316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500103/","id":500103,"name":"Le Crépuscule des damnés","site_detail_url":"https://comicvine.gamespot.com/jour-j-21-le-crepuscule-des-damnes/4000-500103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496505/","id":496505,"name":"Fallen","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-superman-1-fallen/4000-496505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500283/","id":500283,"name":"Ending History Part 1: Together Again For the First Time","site_detail_url":"https://comicvine.gamespot.com/ivar-timewalker-9-ending-history-part-1-together-a/4000-500283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501044/","id":501044,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-casey-and-april-4/4000-501044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501644/","id":501644,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-9/4000-501644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500343/","id":500343,"name":"","site_detail_url":"https://comicvine.gamespot.com/adventure-time-with-fionna-and-cake-card-wars-3/4000-500343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494318/","id":494318,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghost-racers-2/4000-494318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499756/","id":499756,"name":"","site_detail_url":"https://comicvine.gamespot.com/alice-cooper-vs-chaos-1/4000-499756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499776/","id":499776,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-3/4000-499776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494326/","id":494326,"name":"","site_detail_url":"https://comicvine.gamespot.com/mrs-deadpool-and-the-howling-commandos-2/4000-494326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500334/","id":500334,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-17/4000-500334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498464/","id":498464,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-2015-event-four-doctors-3/4000-498464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501530/","id":501530,"name":"Chapter Twenty-Two: Darker Sides","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-22-chapter-twent/4000-501530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501191/","id":501191,"name":"Combat Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-10-combat-part-1-of-9/4000-501191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500930/","id":500930,"name":"Chapter Twenty-One: Going Dark","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-21-chapter-twent/4000-500930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500553/","id":500553,"name":"Enlisted Part 9 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-9-enlisted-part-9-of-9/4000-500553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500224/","id":500224,"name":"Chapter Twenty: Retreat","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-20-chapter-twent/4000-500224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499938/","id":499938,"name":"Enlisted Part 8 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-8-enlisted-part-8-of-9/4000-499938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500022/","id":500022,"name":"Burning the Days Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-knight-30-burning-the-days-part-2-of/4000-500022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499726/","id":499726,"name":"Chapter Nineteen: Stupid Tartarus","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-19-chapter-ninet/4000-499726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499228/","id":499228,"name":"Enlisted Part 7 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-7-enlisted-part-7-of-9/4000-499228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498946/","id":498946,"name":"Chapter Eighteen: White Horses","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-18-chapter-eight/4000-498946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491582/","id":491582,"name":"Worlds Unite Part Three: Clash of the Corrupted","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-273-worlds-unite-part-three-cla/4000-491582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492294/","id":492294,"name":"Worlds Unite Part Four: Death and Destruction; The Choice","site_detail_url":"https://comicvine.gamespot.com/mega-man-50-worlds-unite-part-four-death-and-destr/4000-492294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497421/","id":497421,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-trekplanet-of-the-apes-the-primate-directive-/4000-497421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491447/","id":491447,"name":"Live Fast. Die Hard. Race Forever.","site_detail_url":"https://comicvine.gamespot.com/ghost-racers-1-live-fast-die-hard-race-forever/4000-491447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498432/","id":498432,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-8/4000-498432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497992/","id":497992,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-16/4000-497992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498627/","id":498627,"name":"Enlisted Part 6 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-6-enlisted-part-6-of-9/4000-498627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498152/","id":498152,"name":"Blood Island Chapter 34: Epilogues","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-34-blood-island-chapter-34-epilogu/4000-498152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498091/","id":498091,"name":"Enlisted Part 5 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-5-enlisted-part-5-of-9/4000-498091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497891/","id":497891,"name":"Chapter Sixteen: God of War","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-16-chapter-sixte/4000-497891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497713/","id":497713,"name":"Blood Island Chapter 33: Deliverance","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-33-blood-island-chapter-33-deliver/4000-497713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497578/","id":497578,"name":"Combat Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-4-combat-part-1-of-3/4000-497578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497166/","id":497166,"name":"Blood Island Chapter 32: Mirror Match","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-32-blood-island-chapter-32-mirror-/4000-497166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497069/","id":497069,"name":"Enlisted Part 3 of 9","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-3-enlisted-part-3-of-9/4000-497069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496698/","id":496698,"name":"Blood Island Chapter 31: Takeda vs. The Fatal Eight","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-31-blood-island-chapter-31-takeda-/4000-496698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496566/","id":496566,"name":"Enlisted Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-2-enlisted-part-2-of-3/4000-496566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493005/","id":493005,"name":"Catch a Falling Starro!","site_detail_url":"https://comicvine.gamespot.com/justice-league-3001-1-catch-a-falling-starro/4000-493005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490968/","id":490968,"name":"Worlds Unite Part Two: Broken Heroes","site_detail_url":"https://comicvine.gamespot.com/sonic-boom-8-worlds-unite-part-two-broken-heroes/4000-490968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489965/","id":489965,"name":"Worlds Unite Part One: Across Time and Space","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-76-worlds-unite-part-one-across-tim/4000-489965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493838/","id":493838,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/supreme-blue-rose-1-tpb/4000-493838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489888/","id":489888,"name":"Part Six: Now and Forever","site_detail_url":"https://comicvine.gamespot.com/he-man-the-eternity-war-6-part-six-now-and-forever/4000-489888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489903/","id":489903,"name":"Part One: The Voice Unheard","site_detail_url":"https://comicvine.gamespot.com/inhumans-attilan-rising-1-part-one-the-voice-unhea/4000-489903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496405/","id":496405,"name":"Part 2: They're All Real Now!","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-2-part-2-theyre-all-real-now/4000-496405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489321/","id":489321,"name":"Chapter One: Master Drunk","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-1-chapter-one-master-drunk/4000-489321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487889/","id":487889,"name":"Betty: R.I.P. Chapter Three","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-8-betty-rip-chapter-three/4000-487889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494070/","id":494070,"name":"Ancient Tales","site_detail_url":"https://comicvine.gamespot.com/the-last-anomaly-2-ancient-tales/4000-494070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496427/","id":496427,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-7/4000-496427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487835/","id":487835,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-5/4000-487835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493831/","id":493831,"name":"","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-4/4000-493831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496063/","id":496063,"name":"Enlisted Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/dc-comics-bombshells-1-enlisted-part-1-of-3/4000-496063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495708/","id":495708,"name":"Chapter Twelve: Throwdown","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-12-chapter-twelv/4000-495708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495602/","id":495602,"name":"Blood Island Chapter 29: The Blood God Cometh","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-29-blood-island-chapter-29-the-blo/4000-495602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495165/","id":495165,"name":"Genesis - Part 5 of 9","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-5-genesis-part-5-/4000-495165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494846/","id":494846,"name":"Blood Island Chapter 28: Reiko's Blood Reigns","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-28-blood-island-chapter-28-reikos-/4000-494846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494306/","id":494306,"name":"The Dream - Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-wonder-woman-2-th/4000-494306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503952/","id":503952,"name":"","site_detail_url":"https://comicvine.gamespot.com/evil-dead-2-beyond-dead-by-dawn-1/4000-503952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494222/","id":494222,"name":"The Dream - Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-wonder-woman-1-th/4000-494222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494160/","id":494160,"name":"Fallen - Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-superman-3-fallen/4000-494160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494103/","id":494103,"name":"Blood Island Chapter 27: Blood and Gods","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-27-blood-island-chapter-27-blood-a/4000-494103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494104/","id":494104,"name":"Fallen - Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-superman-1-fallen/4000-494104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493934/","id":493934,"name":"Hunger - Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-batman-2-hunger-p/4000-493934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487788/","id":487788,"name":"Try for Justice, Part Two","site_detail_url":"https://comicvine.gamespot.com/convergence-titans-2-try-for-justice-part-two/4000-487788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493781/","id":493781,"name":"Hunger - Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-and-monsters-batman-1-hunger-p/4000-493781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493085/","id":493085,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/rasputin-the-road-to-the-winter-palace-1-volume-1/4000-493085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491537/","id":491537,"name":"Undead in L.A.","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-vampirella-and-jennifer-blood-2-u/4000-491537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486209/","id":486209,"name":"The Crucible Chapter Two: The Secret History of Madam Satan","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-2-the-crucible-chap/4000-486209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487196/","id":487196,"name":"Part Five: Past and Future","site_detail_url":"https://comicvine.gamespot.com/he-man-the-eternity-war-5-part-five-past-and-futur/4000-487196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492239/","id":492239,"name":"Part 1: A Protean Escape","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-1-part-1-a-protean-escape/4000-492239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490942/","id":490942,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-noir-the-dark-knight-returns-1-hc/4000-490942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485496/","id":485496,"name":"Blood Gods Part 1: Cold Nights","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-5-blood-gods-part-1-cold-nights/4000-485496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493084/","id":493084,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-6/4000-493084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492257/","id":492257,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-15/4000-492257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486157/","id":486157,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-old-man-logan-1/4000-486157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493129/","id":493129,"name":"","site_detail_url":"https://comicvine.gamespot.com/evil-dead-2-beyond-dead-by-dawn-1/4000-493129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493061/","id":493061,"name":"","site_detail_url":"https://comicvine.gamespot.com/legenderry-red-sonja-5/4000-493061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493060/","id":493060,"name":"","site_detail_url":"https://comicvine.gamespot.com/legenderry-green-hornet-5/4000-493060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493532/","id":493532,"name":"Blood Island Chapter 26: Watch the Throne","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-26-blood-island-chapter-26-watch-t/4000-493532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493028/","id":493028,"name":"Chapter Eight: Broken","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-8-chapter-eight-/4000-493028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492073/","id":492073,"name":"Blood Gods Chapter 24: Departures and Arrivals","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-24-blood-gods-chapter-24-departure/4000-492073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491437/","id":491437,"name":"Chapter Six: Family","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-6-chapter-six-fa/4000-491437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490709/","id":490709,"name":"Chapter Five: Choices","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-5-chapter-five-c/4000-490709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839513/","id":839513,"name":"Les Royaumes du Nord - 2","site_detail_url":"https://comicvine.gamespot.com/a-la-croisee-des-mondes-2-les-royaumes-du-nord-2/4000-839513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768192/","id":768192,"name":"","site_detail_url":"https://comicvine.gamespot.com/faro-1/4000-768192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768196/","id":768196,"name":null,"site_detail_url":"https://comicvine.gamespot.com/faro-2/4000-768196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489963/","id":489963,"name":"The Crucible Chapter Three: Unholly Baptism","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-3-the-crucible-chap/4000-489963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481614/","id":481614,"name":"Monster Mash","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-9-monster-mash/4000-481614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488245/","id":488245,"name":"Four Queens & a Jack","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-chaos-prequel-1-four-queens-and-a/4000-488245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490558/","id":490558,"name":"Dragon Rouge","site_detail_url":"https://comicvine.gamespot.com/jour-j-20-dragon-rouge/4000-490558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490398/","id":490398,"name":"Blood Gods Chapter 22: Just The Two Of Us","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-22-blood-gods-chapter-22-just-the-/4000-490398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487852/","id":487852,"name":"Blade One: Diving Towards Divinity","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-1-blade-one-diving-towards-divini/4000-487852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488688/","id":488688,"name":"Births, Deaths, And Interventions","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-7-births-/4000-488688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489340/","id":489340,"name":"","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-vampirella-jennifer-blood-1/4000-489340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489757/","id":489757,"name":"Blood Gods Chapter 21: Deadly Allies Part 2","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-21-blood-gods-chapter-21-deadly-al/4000-489757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489171/","id":489171,"name":"Chapter Three: Vengeance Is Mine","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-3-chapter-three-/4000-489171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489163/","id":489163,"name":"Blood Gods Chapter 20: Deadly Allies Part 1","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-20-blood-gods-chapter-20-deadly-al/4000-489163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488533/","id":488533,"name":"Chapter Two: What Fools These Mortals Are","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-2-chapter-two-wh/4000-488533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487703/","id":487703,"name":"Blood Gods Chapter 18: The Oni/Shokan Uprising Part 2","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-18-blood-gods-chapter-18-the-oni-s/4000-487703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482117/","id":482117,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-45/4000-482117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485541/","id":485541,"name":"The Q Gambit","site_detail_url":"https://comicvine.gamespot.com/star-trek-9-the-q-gambit/4000-485541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480679/","id":480679,"name":"Most Wanted? Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-1-most-wanted-part-1/4000-480679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485528/","id":485528,"name":"Hell to Pay Part 4","site_detail_url":"https://comicvine.gamespot.com/lady-demon-4-hell-to-pay-part-4/4000-485528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487443/","id":487443,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-verse-1-hc/4000-487443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486816/","id":486816,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-thrilling-adventures-of-lovelace-and-babbage-1/4000-486816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479263/","id":479263,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-4/4000-479263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486777/","id":486777,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-14/4000-486777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479397/","id":479397,"name":"","site_detail_url":"https://comicvine.gamespot.com/smallville-continuity-3/4000-479397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479253/","id":479253,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-36/4000-479253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487035/","id":487035,"name":"Blood Gods Chapter 17: The Oni/Shokan Uprising Part 1","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-17-blood-gods-chapter-17-the-oni-s/4000-487035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485885/","id":485885,"name":"Blood Gods Chapter 15: Losing Ourselves","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-15-blood-gods-chapter-15-losing-ou/4000-485885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485391/","id":485391,"name":"Blood Gods Chapter 14: City of Ice and Hellfire","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-14-blood-gods-chapter-14-city-of-i/4000-485391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482137/","id":482137,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-justice-lords-beyond-1-volume-2/4000-482137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482700/","id":482700,"name":"Hell To Pay Part 3","site_detail_url":"https://comicvine.gamespot.com/lady-demon-3-hell-to-pay-part-3/4000-482700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482178/","id":482178,"name":"Chapter Two: Tall Dark Strangers","site_detail_url":"https://comicvine.gamespot.com/legenderry-vampirella-2-chapter-two-tall-dark-stra/4000-482178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482174/","id":482174,"name":"","site_detail_url":"https://comicvine.gamespot.com/altered-states-red-sonja-1/4000-482174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478652/","id":478652,"name":"","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-magazine-4/4000-478652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481618/","id":481618,"name":"","site_detail_url":"https://comicvine.gamespot.com/altered-states-vampirella-1/4000-481618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476795/","id":476795,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-3/4000-476795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476063/","id":476063,"name":"","site_detail_url":"https://comicvine.gamespot.com/smallville-continuity-2/4000-476063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484534/","id":484534,"name":"Blood Gods Chapter 13: Cold Nights","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-13-blood-gods-chapter-13-cold-nigh/4000-484534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483116/","id":483116,"name":"Blood Ties Chapter 12: Rumble In The Jungle","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-12-blood-ties-chapter-12-rumble-in/4000-483116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477801/","id":477801,"name":"Maps and Legends","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-guidebook-1-maps-and-legends/4000-477801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481139/","id":481139,"name":"Blood Ties Chapter 9: Betrayal In Outworld Part 3","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-9-blood-ties-chapter-9-betrayal-in/4000-481139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490557/","id":490557,"name":"La Vengeance de Jaurès","site_detail_url":"https://comicvine.gamespot.com/jour-j-19-la-vengeance-de-jaures/4000-490557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481637/","id":481637,"name":"Elegant Chaos Part 3: Predestination: An Expert's Guide","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-38-elegan/4000-481637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472985/","id":472985,"name":"Betty: R.I.P. Chapter Two - Dear Diary...","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-7-betty-r-i-p-chapter-two-de/4000-472985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478642/","id":478642,"name":"","site_detail_url":"https://comicvine.gamespot.com/lady-death-apocalypse-1/4000-478642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473711/","id":473711,"name":"","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-magazine-3/4000-473711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481634/","id":481634,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-planet-of-the-apes-the-primate-directive/4000-481634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480006/","id":480006,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-13/4000-480006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479275/","id":479275,"name":"","site_detail_url":"https://comicvine.gamespot.com/legenderry-red-sonja-1/4000-479275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479142/","id":479142,"name":"Blood Ties Chapter 6: Kotal Kahn: Sekret Origin","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-x-6-blood-ties-chapter-6-kotal-kahn-/4000-479142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474608/","id":474608,"name":"Part One: Flesh and Blood","site_detail_url":"https://comicvine.gamespot.com/he-man-the-eternity-war-1-part-one-flesh-and-blood/4000-474608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473629/","id":473629,"name":"","site_detail_url":"https://comicvine.gamespot.com/smallville-continuity-1/4000-473629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473656/","id":473656,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-2/4000-473656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480641/","id":480641,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-5/4000-480641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475968/","id":475968,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-amphibia-insecta-1-volume-2/4000-475968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478629/","id":478629,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/star-trek-harlan-ellison-s-the-city-on-the-edge-of/4000-478629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471292/","id":471292,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-16/4000-471292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470496/","id":470496,"name":"","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-magazine-2/4000-470496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470434/","id":470434,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-1/4000-470434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476814/","id":476814,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-planet-of-the-apes-the-primate-directive/4000-476814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477881/","id":477881,"name":"","site_detail_url":"https://comicvine.gamespot.com/powerpuff-girls-super-smash-up-1/4000-477881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470651/","id":470651,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-5/4000-470651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477808/","id":477808,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-4/4000-477808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474657/","id":474657,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-the-cold-war-1-volume-5/4000-474657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475961/","id":475961,"name":"The Q Gambit Part 6","site_detail_url":"https://comicvine.gamespot.com/star-trek-40-the-q-gambit-part-6/4000-475961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467942/","id":467942,"name":"The Crucible Chapter One: Something Wicked","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-plus-1-the-crucible/4000-467942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467586/","id":467586,"name":"The Crucible Chapter One: Something Wicked","site_detail_url":"https://comicvine.gamespot.com/chilling-adventures-of-sabrina-1-the-crucible-chap/4000-467586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468077/","id":468077,"name":"SP//dr: 女性操縦士","site_detail_url":"https://comicvine.gamespot.com/edge-of-spider-verse-5-sp-dr-nu-xing-cao-zong-shi/4000-468077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468438/","id":468438,"name":"All In: Royal Blue","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-15-all-in-royal-blue/4000-468438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501119/","id":501119,"name":"2014","site_detail_url":"https://comicvine.gamespot.com/the-psychedelic-journal-of-time-travel-3-2014/4000-501119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468416/","id":468416,"name":"#earthme","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-the-just-1-earthme/4000-468416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468513/","id":468513,"name":"","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-magazine-1/4000-468513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473693/","id":473693,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-12/4000-473693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475084/","id":475084,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-planet-of-the-apes-the-primate-directive/4000-475084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473675/","id":473675,"name":"","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-equestria-girls-holiday-special-201/4000-473675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472366/","id":472366,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-private-eye-9/4000-472366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474180/","id":474180,"name":"Chapter Thirty","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-30-chapte/4000-474180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474579/","id":474579,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-3/4000-474579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469894/","id":469894,"name":"Volume Twenty","site_detail_url":"https://comicvine.gamespot.com/invincible-friends-1-volume-twenty/4000-469894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469682/","id":469682,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-hickman-omnibus-2-volume-2/4000-469682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473678/","id":473678,"name":"The Q Gambit Part 5","site_detail_url":"https://comicvine.gamespot.com/star-trek-39-the-q-gambit-part-5/4000-473678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463948/","id":463948,"name":"The Last Coin","site_detail_url":"https://comicvine.gamespot.com/trinity-of-sin-the-phantom-stranger-futures-end-1-/4000-463948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471357/","id":471357,"name":"Departure Point","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-25-departure-point/4000-471357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471264/","id":471264,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-2/4000-471264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461731/","id":461731,"name":"We are not Brothers","site_detail_url":"https://comicvine.gamespot.com/new-avengers-22-we-are-not-brothers/4000-461731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467068/","id":467068,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-monsters-misfits-and-/4000-467068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468653/","id":468653,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-new-dawn-1-volume-1/4000-468653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462890/","id":462890,"name":"Time to Die #3","site_detail_url":"https://comicvine.gamespot.com/deadpool-vs-x-force-3-time-to-die-3/4000-462890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469879/","id":469879,"name":"The Q Gambit Part 4","site_detail_url":"https://comicvine.gamespot.com/star-trek-38-the-q-gambit-part-4/4000-469879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463435/","id":463435,"name":"The Men of Tomorrow, Chapter Three: Ulysses","site_detail_url":"https://comicvine.gamespot.com/superman-34-the-men-of-tomorrow-chapter-three-ulys/4000-463435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467700/","id":467700,"name":"Texas Roulette","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-24-texas-roulette/4000-467700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467728/","id":467728,"name":"No Country For Old Ones","site_detail_url":"https://comicvine.gamespot.com/charmed-season-10-1-no-country-for-old-ones/4000-467728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461682/","id":461682,"name":"Legacy of Gold, Conclusion","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-5-legacy-of-gold-conclusion/4000-461682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462852/","id":462852,"name":"House of Heroes","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-1-house-of-heroes/4000-462852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468031/","id":468031,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-1-hc/4000-468031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460360/","id":460360,"name":"Betty: R.I.P. Chapter One - Witch In the Dream House","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-6-betty-r-i-p-chapter-one-wi/4000-460360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470455/","id":470455,"name":"1989-1992","site_detail_url":"https://comicvine.gamespot.com/popeye-the-classic-newspaper-comics-comics-by-bobb/4000-470455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469880/","id":469880,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-harlan-ellison-s-original-the-city-on-th/4000-469880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469063/","id":469063,"name":"","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-halloween-comicfest-1/4000-469063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468113/","id":468113,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-11/4000-468113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468871/","id":468871,"name":"","site_detail_url":"https://comicvine.gamespot.com/rasputin-1/4000-468871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468385/","id":468385,"name":"Chapter Twenty-Three","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-23-chapte/4000-468385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468354/","id":468354,"name":"Alternating Currents, Part 2 of 4: Pattern Opposition","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-38-alternating-currents-part-2-o/4000-468354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467901/","id":467901,"name":"Alternating Currents, Part 1 of 4: Means to Ends","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-37-alternating-currents-part-1-o/4000-467901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467875/","id":467875,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/smallville-continuity-7-chapter-seven/4000-467875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467489/","id":467489,"name":"All In, Part 5 of 5: Final Bets","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-36-all-in-part-5-of-5-final-bets/4000-467489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464019/","id":464019,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic-5-volume-5/4000-464019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460313/","id":460313,"name":"Time to Die #2","site_detail_url":"https://comicvine.gamespot.com/deadpool-vs-x-force-2-time-to-die-2/4000-460313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466354/","id":466354,"name":"The Q Gambit Part 3","site_detail_url":"https://comicvine.gamespot.com/star-trek-37-the-q-gambit-part-3/4000-466354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465807/","id":465807,"name":"Slaughterhouse Part 2, The Road Not Taken","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-33-slaugh/4000-465807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490555/","id":490555,"name":"Napoléon Washington","site_detail_url":"https://comicvine.gamespot.com/jour-j-17-napoleon-washington/4000-490555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466355/","id":466355,"name":"Lost Apollo","site_detail_url":"https://comicvine.gamespot.com/star-trek-8-lost-apollo/4000-466355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458559/","id":458559,"name":"Legacy of Gold, Part IV of V","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-4-legacy-of-gold-part-iv-of/4000-458559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466352/","id":466352,"name":"[Untitled]; Return of Mane-iac","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-2014-annual-1-untitled-return-of-ma/4000-466352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466356/","id":466356,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-harlan-ellisons-original-the-city-on-the/4000-466356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466260/","id":466260,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-private-eye-8/4000-466260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465877/","id":465877,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-10/4000-465877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503174/","id":503174,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201409/4000-503174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466694/","id":466694,"name":"All In, Part 4 of 5: Pocket Tens","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-35-all-in-part-4-of-5-pocket-ten/4000-466694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466610/","id":466610,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/smallville-continuity-5-chapter-five/4000-466610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466141/","id":466141,"name":"All In, Part 3 of 5: Fresh Inque","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-34-all-in-part-3-of-5-fresh-inqu/4000-466141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465422/","id":465422,"name":"All In, Part 2 of 5: Royal Bluff","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-33-all-in-part-2-of-5-royal-bluf/4000-465422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464570/","id":464570,"name":"All In, Part 1 of 5: Dealer's Choice","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-32-all-in-part-1-of-5-dealers-ch/4000-464570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839536/","id":839536,"name":"Les Royaumes du Nord - 1","site_detail_url":"https://comicvine.gamespot.com/a-la-croisee-des-mondes-1-les-royaumes-du-nord-1/4000-839536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461773/","id":461773,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-9-volume-9/4000-461773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463467/","id":463467,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-1-tpb/4000-463467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455430/","id":455430,"name":"Legacy of Gold, Part III of V","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-3-legacy-of-gold-part-iii-o/4000-455430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457587/","id":457587,"name":"Justice Lords Beyond: Sacrifice; Justice Lords Beyond: Dynasty; Justice Lords Beyond: Razor's Edge; Justice Lords Beyond: World War","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-11-justice-lords-beyond-sac/4000-457587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463514/","id":463514,"name":"Cold War","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-23-cold-war/4000-463514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462912/","id":462912,"name":"Black Light District Part 1","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-22-black-light-district-part-1/4000-462912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462000/","id":462000,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-harlan-ellisons-original-the-city-on-the/4000-462000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462926/","id":462926,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-9/4000-462926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462905/","id":462905,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-spektor-master-of-the-occult-3/4000-462905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503173/","id":503173,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201408/4000-503173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463783/","id":463783,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/smallville-continuity-1-chapter-one/4000-463783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463418/","id":463418,"name":"Chapter Fifteen","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-15-chapte/4000-463418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462844/","id":462844,"name":"Chapter Fourteen","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-14-chapte/4000-462844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462167/","id":462167,"name":"Chapter Thirteen","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-13-chapte/4000-462167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461624/","id":461624,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-12-chapte/4000-461624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460302/","id":460302,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-the-unwritten-fables-1-volume-9/4000-460302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461004/","id":461004,"name":"Vectors","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-22-vectors/4000-461004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459698/","id":459698,"name":"The Stakes","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-21-the-stakes/4000-459698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459198/","id":459198,"name":"The Q Gambit Part 1","site_detail_url":"https://comicvine.gamespot.com/star-trek-35-the-q-gambit-part-1/4000-459198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460332/","id":460332,"name":"Super Secret Crisis War! Prelude Part 1","site_detail_url":"https://comicvine.gamespot.com/super-secret-crisis-war-johnny-bravo-1-super-secre/4000-460332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452255/","id":452255,"name":"Legacy of Gold, Part II of V","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-2-legacy-of-gold-part-ii-of/4000-452255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453398/","id":453398,"name":"Justice Lords Beyond: Ruins of Wayne; Justice Lords Beyond: Dark Reflections; Justice Lords Beyond: New Threads; Justice Lords Beyond: Strange Bedfellows","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-10-justice-lords-beyond-rui/4000-453398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452905/","id":452905,"name":"Escape from Riverdale Chapter Five: Exodus","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-5-escape-from-riverdale-chap/4000-452905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459719/","id":459719,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-8/4000-459719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460331/","id":460331,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-harlan-ellisons-original-the-city-on-the/4000-460331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459708/","id":459708,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-36/4000-459708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460928/","id":460928,"name":"Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-11-chapte/4000-460928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460299/","id":460299,"name":"Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-10-chapte/4000-460299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459604/","id":459604,"name":"Chapter Nine","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-9-chapter/4000-459604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459092/","id":459092,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-8-chapter/4000-459092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458881/","id":458881,"name":"Justice Lords Beyond: Another World, Part 8 of 8: Aftermath","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-24-justice-lords-beyond-another-/4000-458881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451756/","id":451756,"name":"What Lies Within Part 6","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-universe-12-what-lie/4000-451756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456591/","id":456591,"name":"Space Dog","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-21-space-dog/4000-456591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457601/","id":457601,"name":"Reflections, Part 4","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic-20-reflections-/4000-457601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451727/","id":451727,"name":"Justice Lords Beyond, Neo World Order; Justice Lords Beyond, Reunion; Justice Lords Beyond; Two For One; Justice Lords Beyond, War Stories","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-9-justice-lords-beyond-neo-/4000-451727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451772/","id":451772,"name":"Everything and All At Once","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-2-everything-and-all-at-once/4000-451772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458507/","id":458507,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-7-chapter/4000-458507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455538/","id":455538,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-escape-from-riverdale-1-book/4000-455538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497743/","id":497743,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-11/4000-497743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457375/","id":457375,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-private-eye-7/4000-457375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455767/","id":455767,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-city-on-the-edge-of-forever-1/4000-455767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456059/","id":456059,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-7/4000-456059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451774/","id":451774,"name":"","site_detail_url":"https://comicvine.gamespot.com/what-if-age-of-ultron-5/4000-451774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503171/","id":503171,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201406/4000-503171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450068/","id":450068,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-25/4000-450068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450083/","id":450083,"name":"","site_detail_url":"https://comicvine.gamespot.com/what-if-age-of-ultron-2/4000-450083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457509/","id":457509,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-6-chapter/4000-457509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457129/","id":457129,"name":"Justice Lords Beyond: Another World, Part 7 of 8: For the Fate of the World(s)","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-23-justice-lords-beyond-another-/4000-457129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456470/","id":456470,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-5-chapter/4000-456470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455942/","id":455942,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-4-chapter/4000-455942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455858/","id":455858,"name":"Justice Lords Beyond: Another World, Part 6 of 8: Razor's Edge","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-22-justice-lords-beyond-another-/4000-455858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455399/","id":455399,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-3-chapter/4000-455399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448955/","id":448955,"name":"What Lies Within Part 5","site_detail_url":"https://comicvine.gamespot.com/he-man-and-the-masters-of-the-universe-11-what-lie/4000-448955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452061/","id":452061,"name":"Welcome to the Guardians of the Galaxy","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-free-comic-book-day-1-welc/4000-452061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453451/","id":453451,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/manhattan-projects-four-disciplines-1-volume-4/4000-453451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452826/","id":452826,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/absolute-superman-batman-2-volume-2/4000-452826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453650/","id":453650,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-2-/4000-453650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452885/","id":452885,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-1-volume-1/4000-452885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453115/","id":453115,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-2-vo/4000-453115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454120/","id":454120,"name":"Reflections, Part 3: I'll Be Your Mirror","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic-19-reflections-/4000-454120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452816/","id":452816,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-art-of-wolfenstein-the-new-order-1-hc/4000-452816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448952/","id":448952,"name":"Cracking Skulls","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-6-cracking-/4000-448952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503170/","id":503170,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201405/4000-503170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454030/","id":454030,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-2-chapter/4000-454030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453771/","id":453771,"name":"Justice Lords Beyond: Another World, Part 5 of 8: Sacrifice","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-21-justice-lords-beyond-another-/4000-453771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453314/","id":453314,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-1-chapter/4000-453314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453210/","id":453210,"name":"Justice Lords Beyond: The Return of Wonder Woman, Part 4 of 8: Strange Bedfellows","site_detail_url":"https://comicvine.gamespot.com/justice-league-beyond-2-0-20-justice-lords-beyond-/4000-453210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452565/","id":452565,"name":"Justice Lords Beyond: Another World, Part 4 of 8: New Threads","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-20-justice-lords-beyond-another-/4000-452565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452092/","id":452092,"name":"Justice Lords Beyond: The Return of Wonder Woman, Part 3 of 8: Dark Reflections","site_detail_url":"https://comicvine.gamespot.com/justice-league-beyond-2-0-19-justice-lords-beyond-/4000-452092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446473/","id":446473,"name":"Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-5-worlds-co/4000-446473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451738/","id":451738,"name":"Reflections, Part 2: Back to Where You've Never Been Before","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic-18-reflections-/4000-451738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447038/","id":447038,"name":"Escape From Riverdale Chapter Four: Archibald Rex","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-4-escape-from-riverdale-chap/4000-447038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451129/","id":451129,"name":"Einstein the Barbarian","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-20-einstein-the-barbarian/4000-451129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451931/","id":451931,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-manifest-destiny-1/4000-451931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450104/","id":450104,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-6/4000-450104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451362/","id":451362,"name":"Justice Lords Beyond: Another World, Part 3 of 8: The Ruins of Wayne","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-19-justice-lords-beyond-another-/4000-451362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450853/","id":450853,"name":"Justice Lords Beyond: The Return of Wonder Woman, Part 2 of 8: War Stories","site_detail_url":"https://comicvine.gamespot.com/justice-league-beyond-2-0-18-justice-lords-beyond-/4000-450853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450320/","id":450320,"name":"Justice Lords Beyond: Another World, Part 2 of 8: Two For One","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-18-justice-lords-beyond-another-/4000-450320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449891/","id":449891,"name":"Justice Lords Beyond: The Return of Wonder Woman, Part 1 of 8: Reunion","site_detail_url":"https://comicvine.gamespot.com/justice-league-beyond-2-0-17-justice-lords-beyond-/4000-449891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442288/","id":442288,"name":"Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-4-worlds-co/4000-442288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445315/","id":445315,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-1-vo/4000-445315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448033/","id":448033,"name":"The War To End All Wars Part 5","site_detail_url":"https://comicvine.gamespot.com/the-transformers-regeneration-one-100-the-war-to-e/4000-448033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437489/","id":437489,"name":"The Fantastic Four Are Doomed! Part Three: The Elements of War","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-15-the-fantastic-four-are-doomed-pa/4000-437489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442167/","id":442167,"name":"The Fantastic Four Are Doomed! Part Four: Four To the Fourth Power!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-16-the-fantastic-four-are-doomed-pa/4000-442167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447966/","id":447966,"name":"Reflections, Part 1","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic-17-reflections-/4000-447966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446504/","id":446504,"name":"Mass Hysteria! Part 1: Something Old, Something New!","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-13-mass-hysteria-part-1-something-old/4000-446504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449010/","id":449010,"name":"Finite Oppenheimers [Memorial]","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-19-finite-oppenheimers-memo/4000-449010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441455/","id":441455,"name":"Escape From Riverdale Chapter Three","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-3-escape-from-riverdale-chap/4000-441455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450890/","id":450890,"name":"Alone Together: Prologue","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-55-alone-toget/4000-450890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503168/","id":503168,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201403/4000-503168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447623/","id":447623,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-109/4000-447623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447546/","id":447546,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-5/4000-447546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449296/","id":449296,"name":"Justice Lords Beyond: Another World, Part 1 of 8: Neo World Order","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-17-justice-lords-beyond-another-/4000-449296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447540/","id":447540,"name":"The Becoming: Dark Cybertron Chapter 10","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-27-the-be/4000-447540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442918/","id":442918,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-x-men-3-part-three/4000-442918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443940/","id":443940,"name":"Book Four: Full Circle","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman-4-book-four-full-circle/4000-443940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437486/","id":437486,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-x-men-2-part-two/4000-437486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440196/","id":440196,"name":"Book Three: If Animals Could Talk","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman-3-book-three-if-animals-could/4000-440196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445218/","id":445218,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-4/4000-445218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446510/","id":446510,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-khan-5/4000-446510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503165/","id":503165,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201402/4000-503165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446524/","id":446524,"name":"Volume Nineteen","site_detail_url":"https://comicvine.gamespot.com/invincible-the-war-at-home-1-volume-nineteen/4000-446524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446509/","id":446509,"name":"Parallel Lives, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/star-trek-30-parallel-lives-part-2-of-2/4000-446509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445209/","id":445209,"name":"Finis Temporis: Dark Cybertron Chapter 9","site_detail_url":"https://comicvine.gamespot.com/the-transformers-robots-in-disguise-26-finis-tempo/4000-445209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444571/","id":444571,"name":"Burning Bright: Dark Cybertron Chapter 8","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-26-burnin/4000-444571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446525/","id":446525,"name":"Assassination","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-18-assassination/4000-446525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443977/","id":443977,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-orpheus-in-the-underworld-1-volume-8/4000-443977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443977/","id":443977,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-orpheus-in-the-underworld-1-volume-8/4000-443977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443383/","id":443383,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-1-/4000-443383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433845/","id":433845,"name":"The Fantastic Four Are Doomed! Part Two: Trial By Fire","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-14-the-fantastic-four-are-doomed-pa/4000-433845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442949/","id":442949,"name":"The Dead Are Not Enough: Dark Cybertron Chapter 7","site_detail_url":"https://comicvine.gamespot.com/the-transformers-robots-in-disguise-25-the-dead-ar/4000-442949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435067/","id":435067,"name":"The Day Nor The Hour","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-14-the-day-nor-the-hour/4000-435067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444007/","id":444007,"name":"Parallel Lives, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/star-trek-29-parallel-lives-part-1-of-2/4000-444007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442207/","id":442207,"name":"No Exit: Dark Cybertron Chapter 6","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-25-no-exi/4000-442207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433766/","id":433766,"name":"Escape From Riverdale Chapter Two: Dance of the Dead","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-2-escape-from-riverdale-chap/4000-433766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441433/","id":441433,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-khan-4/4000-441433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503163/","id":503163,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201401/4000-503163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498279/","id":498279,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-4/4000-498279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441446/","id":441446,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-3/4000-441446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440270/","id":440270,"name":"What We Made","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-17-what-we-made/4000-440270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434987/","id":434987,"name":"Book Two: Hierarchy","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman-2-book-two-hierarchy/4000-434987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442943/","id":442943,"name":"13 Badges, Part 2; Perp Walk","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-15-13-badges-part-2-perp-walk/4000-442943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443962/","id":443962,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-108/4000-443962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438116/","id":438116,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-end-of-x-factor-1-volume-21/4000-438116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430749/","id":430749,"name":"The Unwritten Fables, Part 5: The Sacrifice in Which All is Lost","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-54-the-unwritten-fables-part-5-the-s/4000-430749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428858/","id":428858,"name":"The Fantastic Four Are Doomed! Part One: The Scorched Earth","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-13-the-fantastic-four-are-doomed-pa/4000-428858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450889/","id":450889,"name":"Shattered Destiny","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-54-shattered-d/4000-450889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438898/","id":438898,"name":"La Secte de Nazareth","site_detail_url":"https://comicvine.gamespot.com/jour-j-15-la-secte-de-nazareth/4000-438898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435615/","id":435615,"name":"Into the Abyss: Dark Cybertron Chapter 4","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-24-into-t/4000-435615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436184/","id":436184,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus-1-hc/4000-436184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437542/","id":437542,"name":"Finest Hour: Dark Cybertron Chapter 5","site_detail_url":"https://comicvine.gamespot.com/the-transformers-robots-in-disguise-24-finest-hour/4000-437542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431462/","id":431462,"name":"Equestria Girls; The Fall of Sunset Shimmer","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-annual-2013-1-equestria-girls-the-f/4000-431462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436253/","id":436253,"name":"","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-2/4000-436253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452640/","id":452640,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-strikes-again-1/4000-452640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435613/","id":435613,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-khan-3/4000-435613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503162/","id":503162,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201312/4000-503162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438262/","id":438262,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-private-eye-5/4000-438262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497683/","id":497683,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/was-ware-wenn-avx-1-sc/4000-497683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438376/","id":438376,"name":"The Girl Who Loved Doctor Who","site_detail_url":"https://comicvine.gamespot.com/doctor-who-special-2013-1-the-girl-who-loved-docto/4000-438376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428831/","id":428831,"name":"Rewired, Family Values; Power Struggle: The Art of War","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-3-rewired-family-values-pow/4000-428831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431401/","id":431401,"name":"Book One: The Next of Kin","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman-1-book-one-the-next-of-kin/4000-431401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435733/","id":435733,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-man-fatal-frontier-9/4000-435733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436220/","id":436220,"name":"","site_detail_url":"https://comicvine.gamespot.com/danger-girl-the-chase-4/4000-436220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424989/","id":424989,"name":"Where the River Ran Red","site_detail_url":"https://comicvine.gamespot.com/earth-2-15-2-where-the-river-ran-red/4000-424989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426963/","id":426963,"name":"The Unwritten Fables, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-53-the-unwritten-fables-part-4/4000-426963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433216/","id":433216,"name":"Schism","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-16-schism/4000-433216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432359/","id":432359,"name":"Dark Dawn: Dark Cybertron Chapter 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-dark-cybertron-1-dark-dawn-dark-c/4000-432359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433874/","id":433874,"name":"Black Metal: Dark Cybertron Chapter 2","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-23-black-/4000-433874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499583/","id":499583,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-18/4000-499583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433207/","id":433207,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-khan-2/4000-433207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433217/","id":433217,"name":null,"site_detail_url":"https://comicvine.gamespot.com/manifest-destiny-1/4000-433217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433541/","id":433541,"name":null,"site_detail_url":"https://comicvine.gamespot.com/smallville-alien-1/4000-433541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435071/","id":435071,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/battlestar-galactica-memorial-1-volume-one/4000-435071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433929/","id":433929,"name":"Dark Dawn: Dark Cybertron Chapter 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-dark-cybertron-1-deluxe-edition-1/4000-433929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435108/","id":435108,"name":"","site_detail_url":"https://comicvine.gamespot.com/fanboys-vs-zombies-20/4000-435108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423667/","id":423667,"name":"The Unwritten Fables, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-52-the-unwritten-fables-part-3/4000-423667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450888/","id":450888,"name":"Shattered Balance","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-53-shattered-b/4000-450888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421823/","id":421823,"name":"Olympus, Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-16-olympus-part-1/4000-421823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431053/","id":431053,"name":"Kindred Spirits","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-mega-man-worlds-collide-kindred/4000-431053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431431/","id":431431,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-one-million-omnibus-1-hc/4000-431431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420610/","id":420610,"name":"Crossed Wires","site_detail_url":"https://comicvine.gamespot.com/dial-h-15-crossed-wires/4000-420610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428881/","id":428881,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-khan-1/4000-428881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428392/","id":428392,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-private-eye-4/4000-428392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428515/","id":428515,"name":"","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-free-preview-1/4000-428515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503160/","id":503160,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201310/4000-503160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422447/","id":422447,"name":"Rewired, Nothing Lasts Forever; Power Struggle, Fantastic Voyage","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-1-rewired-nothing-lasts-for/4000-422447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428326/","id":428326,"name":"Finite Oppenhiemers Part One","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-15-finite-oppenhiemers-part/4000-428326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435087/","id":435087,"name":"Chapter Six: Killing With Kindness","site_detail_url":"https://comicvine.gamespot.com/half-past-danger-6-chapter-six-killing-with-kindne/4000-435087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428359/","id":428359,"name":"(of 5)","site_detail_url":"https://comicvine.gamespot.com/chronos-commandos-dawn-patrol-4-of-5/4000-428359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416987/","id":416987,"name":"When Worlds Collide Part Ten: No Holds Barred","site_detail_url":"https://comicvine.gamespot.com/mega-man-27-when-worlds-collide-part-ten-no-holds-/4000-416987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417879/","id":417879,"name":"When Worlds Collide Part Eleven: Worst of the Worst","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-54-when-worlds-collide-part-eleven-/4000-417879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420002/","id":420002,"name":"When Worlds Collide Finale: Best of the Best","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-251-when-worlds-collide-finale-/4000-420002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418811/","id":418811,"name":"The Unwritten Fables, Part 2: The Rescue","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-51-the-unwritten-fables-part-2-the-r/4000-418811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425110/","id":425110,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rasl-complete-1-hc/4000-425110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428248/","id":428248,"name":"Escape From Riverdale","site_detail_url":"https://comicvine.gamespot.com/afterlife-with-archie-1-escape-from-riverdale/4000-428248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419970/","id":419970,"name":"Agent of T.I.M.E., Part One","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-11-agent-of-t-i-m-e-part-one/4000-419970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415236/","id":415236,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-deadpool-1/4000-415236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503159/","id":503159,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201309/4000-503159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539697/","id":539697,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-4/4000-539697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720584/","id":720584,"name":"Dragon Ball Part 6: Artificial Humans & Cell Arc Volume 6","site_detail_url":"https://comicvine.gamespot.com/dragon-ball-digital-color-33-dragon-ball-part-6-ar/4000-720584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425055/","id":425055,"name":"Upward Bound","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-14-upward-bound/4000-425055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417850/","id":417850,"name":"The End of X-Factor, Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/x-factor-259-the-end-of-x-factor-part-3-of-6/4000-417850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419975/","id":419975,"name":"Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/what-if-avx-4-part-4-of-4/4000-419975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425959/","id":425959,"name":"Chapter Five: Ours Is But To Do And Die","site_detail_url":"https://comicvine.gamespot.com/half-past-danger-5-chapter-five-ours-is-but-to-do-/4000-425959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417047/","id":417047,"name":"Argo, Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-15-argo-part-3/4000-417047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415286/","id":415286,"name":"When Worlds Collide Part Nine: All-Out War!","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-250-when-worlds-collide-part-ni/4000-415286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411882/","id":411882,"name":"When Worlds Collide Part 8: Liberation","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-53-when-worlds-collide-part-8-liber/4000-411882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410361/","id":410361,"name":"When Worlds Collide Part 7: Evening the Odds","site_detail_url":"https://comicvine.gamespot.com/mega-man-26-when-worlds-collide-part-7-evening-the/4000-410361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450887/","id":450887,"name":"Shattered Hope","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-52-shattered-h/4000-450887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420654/","id":420654,"name":"Piece By Piece","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-13-piece-by-piece/4000-420654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503158/","id":503158,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201308/4000-503158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422117/","id":422117,"name":"Olympus Part 4","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-60-olympus-part-4/4000-422117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421827/","id":421827,"name":"Культ двуличия. Часть 3","site_detail_url":"https://comicvine.gamespot.com/panteon-kult-dvulichiya-3-kul-t-dvulichiia-chast-3/4000-421827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421241/","id":421241,"name":"Hollow Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-59-hollow-part-3/4000-421241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420463/","id":420463,"name":"Olympus Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-58-olympus-part-3/4000-420463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413631/","id":413631,"name":"The Unwritten Fables, Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-50-the-unwritten-fables-part-1-of-5/4000-413631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409223/","id":409223,"name":"Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/marvel-s-thor-the-dark-world-prelude-1-part-1-of-2/4000-409223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422527/","id":422527,"name":"Into the Cursed Earth, Chapters 4-6; Heads Up, My Angel Baby, So Much Fun it Hurts","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-10-into-the-cursed-earth-chapters-4-6-/4000-422527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423007/","id":423007,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-private-eye-an-inside-look-at-the-creation-of-/4000-423007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407019/","id":407019,"name":"When Worlds Collide Part Six: Friends Or Foes","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-249-when-worlds-collide-part-si/4000-407019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417206/","id":417206,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/archie-meets-glee-1-tpb/4000-417206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503157/","id":503157,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201307/4000-503157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419317/","id":419317,"name":"Olympus Part 2","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-57-olympus-part-2/4000-419317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402283/","id":402283,"name":"Book Eight","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-8-book-eight/4000-402283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418425/","id":418425,"name":"Olympus Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-56-olympus-part-1/4000-418425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417281/","id":417281,"name":"Hollow Part 2","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-55-hollow-part-2/4000-417281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417123/","id":417123,"name":"Hollow Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-54-hollow-part-1/4000-417123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417207/","id":417207,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-the-last-white-event-1-volume-2/4000-417207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419948/","id":419948,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ghost-in-the-smoke-and-din-1-volume-1/4000-419948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404680/","id":404680,"name":"Orpheus In the Underworld, Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-49-orpheus-in-the-underworld-part-3-/4000-404680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418840/","id":418840,"name":"Into the Cursed Earth, Chapter 1-3; A Walk Through the Valley of Wholesome Family Fun, Woodrell County and How It Got That Way, Gaze Upon the Face of Dredd","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-9-into-the-cursed-earth-chapter-1-3-a-/4000-418840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417858/","id":417858,"name":"Chapter Three: Something Wicked This Way Comes","site_detail_url":"https://comicvine.gamespot.com/half-past-danger-3-chapter-three-something-wicked-/4000-417858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401185/","id":401185,"name":"Argo, Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-13-argo-part-1/4000-401185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396479/","id":396479,"name":"When Worlds Collide Part One: Kindred Spirits","site_detail_url":"https://comicvine.gamespot.com/mega-man-24-when-worlds-collide-part-one-kindred-s/4000-396479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410314/","id":410314,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/stormwatch-2-volume-two/4000-410314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410333/","id":410333,"name":"The Fermi Paradox","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-12-the-fermi-paradox/4000-410333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414434/","id":414434,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-private-eye-3/4000-414434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503229/","id":503229,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201306/4000-503229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412751/","id":412751,"name":"Argo Part 8","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-52-argo-part-8/4000-412751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414433/","id":414433,"name":"Argo Part 9","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-53-argo-part-9/4000-414433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409566/","id":409566,"name":"Valkyrie Part 4","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-50-valkyrie-part-4/4000-409566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407294/","id":407294,"name":"Archie Meets Glee, Part 4: Reverse Archie","site_detail_url":"https://comicvine.gamespot.com/archie-644-archie-meets-glee-part-4-reverse-archie/4000-407294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395773/","id":395773,"name":"Rise of the Brainiac, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/ame-comi-girls-2-rise-of-the-brainiac-chapter-2/4000-395773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413698/","id":413698,"name":"Memorial Part 2","site_detail_url":"https://comicvine.gamespot.com/battlestar-galactica-2-memorial-part-2/4000-413698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395774/","id":395774,"name":"Haunted, Part 4","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-12-haunted-part-4/4000-395774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438896/","id":438896,"name":"Colomb Pacha","site_detail_url":"https://comicvine.gamespot.com/jour-j-13-colomb-pacha/4000-438896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410806/","id":410806,"name":"Chapter Two: In Like Flynn","site_detail_url":"https://comicvine.gamespot.com/half-past-danger-2-chapter-two-in-like-flynn/4000-410806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411181/","id":411181,"name":"Argo Part 7","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-51-argo-part-7/4000-411181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407630/","id":407630,"name":"Argo Part 6","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-49-argo-part-6/4000-407630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401314/","id":401314,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-private-eye-2/4000-401314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503156/","id":503156,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201305/4000-503156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405770/","id":405770,"name":"Argo Part 5","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-48-argo-part-5/4000-405770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403695/","id":403695,"name":"Argo Part 4","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-47-argo-part-4/4000-403695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400954/","id":400954,"name":"Valkyrie Part 2","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-45-valkyrie-part-2/4000-400954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401724/","id":401724,"name":"Valkyrie Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-46-valkyrie-part-3/4000-401724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390444/","id":390444,"name":"The Last White Event","site_detail_url":"https://comicvine.gamespot.com/avengers-7-the-last-white-event/4000-390444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402299/","id":402299,"name":"Memorial Part 1","site_detail_url":"https://comicvine.gamespot.com/battlestar-galactica-1-memorial-part-1/4000-402299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399007/","id":399007,"name":"Building","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-11-building/4000-399007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503194/","id":503194,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201304/4000-503194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396454/","id":396454,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-countdown-to-darkness-4/4000-396454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399691/","id":399691,"name":"Argo Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-44-argo-part-3/4000-399691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397299/","id":397299,"name":"Shattered Time, Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-50-shattered-t/4000-397299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396977/","id":396977,"name":"Argo Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-42-argo-part-1/4000-396977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396500/","id":396500,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/indigo-prime-anthropocalypse-1-gn/4000-396500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396075/","id":396075,"name":"Valkyrie Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-41-valkyrie-part-1/4000-396075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390524/","id":390524,"name":"Archie Meets Glee Part 1: When Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/archie-641-archie-meets-glee-part-1-when-worlds-co/4000-390524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503155/","id":503155,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201303/4000-503155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513286/","id":513286,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-9/4000-513286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394771/","id":394771,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-private-eye-1/4000-394771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395503/","id":395503,"name":"Haunted Part 12","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-40-haunted-part-12/4000-395503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392348/","id":392348,"name":"Finite Oppenheimers","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-10-finite-oppenheimers/4000-392348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395200/","id":395200,"name":"Haunted Part 11","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-39-haunted-part-11/4000-395200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392393/","id":392393,"name":"The Redshirt's Tale","site_detail_url":"https://comicvine.gamespot.com/star-trek-4-the-redshirts-tale/4000-392393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381413/","id":381413,"name":"Deadpool Killed the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/deadpool-killustrated-1-deadpool-killed-the-marvel/4000-381413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386297/","id":386297,"name":"Brave New World, Part One","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-9-brave-new-world-part-one/4000-386297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503228/","id":503228,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201302/4000-503228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394545/","id":394545,"name":"Shattered Time, Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-49-shattered-t/4000-394545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376655/","id":376655,"name":"They Rule","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-8-they-rule/4000-376655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382793/","id":382793,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-legend-of-zelda-hyrule-historia-1-hc/4000-382793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503154/","id":503154,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201301/4000-503154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513280/","id":513280,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-7/4000-513280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366187/","id":366187,"name":"The Impossible End","site_detail_url":"https://comicvine.gamespot.com/defenders-12-the-impossible-end/4000-366187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372350/","id":372350,"name":"Ego Sum; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Nine","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-dr-manhattan-3-ego-sum-the-curse-o/4000-372350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376671/","id":376671,"name":"Bartmanga!; Crisis of Discontinuous Continuities","site_detail_url":"https://comicvine.gamespot.com/simpsons-super-spectacular-16-bartmanga-crisis-of-/4000-376671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376639/","id":376639,"name":"Mirrored, Part 2","site_detail_url":"https://comicvine.gamespot.com/star-trek-16-mirrored-part-2/4000-376639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372435/","id":372435,"name":"Infinite Oppenheimers","site_detail_url":"https://comicvine.gamespot.com/image-firsts-the-manhattan-project-1-infinite-oppe/4000-372435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503186/","id":503186,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201212/4000-503186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381981/","id":381981,"name":"Культ двуличия. Часть 2","site_detail_url":"https://comicvine.gamespot.com/panteon-kult-dvulichiya-2-2/4000-381981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360951/","id":360951,"name":"One-Fifteen P.M.; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part One","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-dr-manhattan-2-one-fifteen-pm-the-/4000-360951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394476/","id":394476,"name":"A Flash Forward, Part 6; Invasion: Epilogue","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-48-a-flash-for/4000-394476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610299/","id":610299,"name":"Patrulla-X 2: El fin del sueño","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes-20-patrulla-x-2-el-fin/4000-610299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369089/","id":369089,"name":"Mirrored, Part 1","site_detail_url":"https://comicvine.gamespot.com/star-trek-15-mirrored-part-1/4000-369089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438894/","id":438894,"name":"La Nuit des Tuileries","site_detail_url":"https://comicvine.gamespot.com/jour-j-11-la-nuit-des-tuileries/4000-438894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455890/","id":455890,"name":"Big apple","site_detail_url":"https://comicvine.gamespot.com/univerne-2-big-apple/4000-455890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503153/","id":503153,"name":"","site_detail_url":"https://comicvine.gamespot.com/v-jump-201211/4000-503153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369052/","id":369052,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/dc-definitive-edition-2-flashpoint/4000-369052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355879/","id":355879,"name":"Let's Get Small","site_detail_url":"https://comicvine.gamespot.com/defenders-10-lets-get-small/4000-355879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359860/","id":359860,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/hell-yeah-last-day-on-earths-1-volume-one/4000-359860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418286/","id":418286,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-1-tpb/4000-418286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362302/","id":362302,"name":"LeBron: King of the Rings","site_detail_url":"https://comicvine.gamespot.com/lebron-king-of-the-rings-1-lebron-king-of-the-ring/4000-362302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414307/","id":414307,"name":"The Blood of Nemea","site_detail_url":"https://comicvine.gamespot.com/hercule-1-the-blood-of-nemea/4000-414307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360901/","id":360901,"name":"Rise of the Brainiac, Part 5","site_detail_url":"https://comicvine.gamespot.com/ame-comi-girls-5-rise-of-the-brainiac-part-5/4000-360901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348047/","id":348047,"name":"Part I","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-1-part-i/4000-348047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354095/","id":354095,"name":"Part 6","site_detail_url":"https://comicvine.gamespot.com/the-new-deadwardians-6-part-6/4000-354095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356761/","id":356761,"name":"Star City","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-6-star-city/4000-356761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347457/","id":347457,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/the-new-deadwardians-5-part-5/4000-347457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340159/","id":340159,"name":"No Home For Heroes","site_detail_url":"https://comicvine.gamespot.com/legion-lost-10-no-home-for-heroes/4000-340159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355049/","id":355049,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-8/4000-355049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342978/","id":342978,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/the-new-deadwardians-4-part-4/4000-342978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394465/","id":394465,"name":"A Flash Forward, Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-46-a-flash-for/4000-394465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347200/","id":347200,"name":"Horizon","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-5-horizon/4000-347200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345775/","id":345775,"name":"Guardian Chapter 10","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-10-guardian-chapter-10/4000-345775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343034/","id":343034,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-1-tpb/4000-343034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381884/","id":381884,"name":"Культ двуличия. Часть 1","site_detail_url":"https://comicvine.gamespot.com/panteon-kult-dvulichiya-1-1/4000-381884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342851/","id":342851,"name":"The Rose Bridge","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-4-the-rose-bridge/4000-342851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342160/","id":342160,"name":"2009: Let It Come Down","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-century-3-20/4000-342160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343481/","id":343481,"name":"Guardian Chapter 9","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-9-guardian-chapter-9/4000-343481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342424/","id":342424,"name":"Guardian Chapter 8","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-8-guardian-chapter-8/4000-342424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481519/","id":481519,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/gate-jietai-kare-no-chi-nite-kaku-tatakeri-1-vol-1/4000-481519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341201/","id":341201,"name":"Guardian Chapter 7","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-7-guardian-chapter-7/4000-341201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326870/","id":326870,"name":"To Kill Mutantkind","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-2-to-kill-mutantkind/4000-326870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337978/","id":337978,"name":"Guardian Chapter 6","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-6-guardian-chapter-6/4000-337978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438892/","id":438892,"name":"Apocalypse sur le Texas","site_detail_url":"https://comicvine.gamespot.com/jour-j-9-apocalypse-sur-le-texas/4000-438892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394459/","id":394459,"name":"A Flash Forward, Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-45-a-flash-for/4000-394459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341634/","id":341634,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/x-factor-they-keep-killing-madrox-1-volume-15/4000-341634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335909/","id":335909,"name":"The Bomb","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-3-the-bomb/4000-335909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337000/","id":337000,"name":"Guardian Chapter 5","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-5-guardian-chapter-5/4000-337000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336205/","id":336205,"name":"Guardian Chapter 4","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-4-guardian-chapter-4/4000-336205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319368/","id":319368,"name":"X","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-1-x/4000-319368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324819/","id":324819,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/the-new-deadwardians-1-part-1/4000-324819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335037/","id":335037,"name":"Book One: Last Days on Earth, Chapter Three: Killing Me","site_detail_url":"https://comicvine.gamespot.com/hell-yeah-3-book-one-last-days-on-earth-chapter-th/4000-335037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335716/","id":335716,"name":"","site_detail_url":"https://comicvine.gamespot.com/higher-earth-1/4000-335716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331909/","id":331909,"name":"Rocket Man","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-2-rocket-man/4000-331909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333746/","id":333746,"name":"Guardian Chapter 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-3-guardian-chapter-3/4000-333746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332681/","id":332681,"name":"Guardian Chapter 2","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-2-guardian-chapter-2/4000-332681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-330127/","id":330127,"name":"Guardian Chapter 1","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-1-guardian-chapter-1/4000-330127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331629/","id":331629,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/terminator-robocop-kill-human-1-tpb/4000-331629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313902/","id":313902,"name":"They Keep Killing Madrox Part Three","site_detail_url":"https://comicvine.gamespot.com/x-factor-231-they-keep-killing-madrox-part-three/4000-313902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315729/","id":315729,"name":"They Keep Killing Madrox Part Four","site_detail_url":"https://comicvine.gamespot.com/x-factor-232-they-keep-killing-madrox-part-four/4000-315729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326777/","id":326777,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/flex-mentallo-man-of-muscle-mystery-the-deluxe-edi/4000-326777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327436/","id":327436,"name":"Book One: Last Days on Earth, Chapter Two: Always You","site_detail_url":"https://comicvine.gamespot.com/hell-yeah-2-book-one-last-days-on-earth-chapter-tw/4000-327436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394454/","id":394454,"name":"A Flash Forward, Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-44-a-flash-for/4000-394454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319453/","id":319453,"name":"Infinite Oppenheimers","site_detail_url":"https://comicvine.gamespot.com/the-manhattan-projects-1-infinite-oppenheimers/4000-319453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323093/","id":323093,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-featuring-the-f/4000-323093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323092/","id":323092,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-featuring-green/4000-323092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321658/","id":321658,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-featuring-wonde/4000-321658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321657/","id":321657,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-featuring-super/4000-321657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321656/","id":321656,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-featuring-batma/4000-321656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310833/","id":310833,"name":"They Keep Killing Madrox Part Two","site_detail_url":"https://comicvine.gamespot.com/x-factor-230-they-keep-killing-madrox-part-two/4000-310833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319422/","id":319422,"name":"Odyssey Vol. 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-odyssey-2-odyssey-vol-2/4000-319422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362727/","id":362727,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-marries-betty-18/4000-362727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336084/","id":336084,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-el-regreso-del-caballero-oscuro-1/4000-336084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316046/","id":316046,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/x-factor-super-unnatural-1-volume-14/4000-316046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399870/","id":399870,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-amazon-hero-icon-1-hc/4000-399870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319593/","id":319593,"name":null,"site_detail_url":"https://comicvine.gamespot.com/The%20Astonishing%20Spider-Man-57/4000-319593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307481/","id":307481,"name":"They Keep Killing Madrox Part One","site_detail_url":"https://comicvine.gamespot.com/x-factor-229-they-keep-killing-madrox-part-one/4000-307481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315707/","id":315707,"name":"Part Five","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-5-part-five/4000-315707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394449/","id":394449,"name":"A Flash Forward, Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-43-a-flash-for/4000-394449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362726/","id":362726,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-marries-betty-17/4000-362726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305826/","id":305826,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-228/4000-305826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319592/","id":319592,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-56/4000-319592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319591/","id":319591,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-55/4000-319591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309446/","id":309446,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-4-part-four/4000-309446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302516/","id":302516,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-227/4000-302516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407875/","id":407875,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-avengers-the-ultimate-guide-to-earth-s-mightie/4000-407875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306544/","id":306544,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-3-part-three/4000-306544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297275/","id":297275,"name":"Part 7","site_detail_url":"https://comicvine.gamespot.com/batman-odyssey-1-part-7/4000-297275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331048/","id":331048,"name":"Bikini Bottom 2 / Squidward Saves Television","site_detail_url":"https://comicvine.gamespot.com/spongebob-comics-6-bikini-bottom-2-squidward-saves/4000-331048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394429/","id":394429,"name":"Battle Lines, Part 6","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-42-battle-line/4000-394429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441327/","id":441327,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/doctor-who-a-fairy-tale-life-1-tpb/4000-441327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317509/","id":317509,"name":"Dipartimento 51 - Il Manipolatore","site_detail_url":"https://comicvine.gamespot.com/universo-alfa-9-dipartimento-51-il-manipolatore/4000-317509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301523/","id":301523,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-2-part-two/4000-301523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302125/","id":302125,"name":"","site_detail_url":"https://comicvine.gamespot.com/terminator-robocop-kill-human-4/4000-302125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297584/","id":297584,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/x-factor-hard-labor-1-volume-13/4000-297584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282568/","id":282568,"name":"Flashpoint: Chapter Four of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-4-flashpoint-chapter-four-of-five/4000-282568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290102/","id":290102,"name":"Flashpoint: Chapter Five of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-5-flashpoint-chapter-five-of-five/4000-290102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384425/","id":384425,"name":"Flashpoint Chapter Five of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deluxe-5-flashpoint-chapter-five-of-fiv/4000-384425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301064/","id":301064,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/flashpoint-1-flashpoint/4000-301064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362723/","id":362723,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-marries-betty-14/4000-362723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362722/","id":362722,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-marries-betty-13/4000-362722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362748/","id":362748,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-marries-veronica-14/4000-362748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438890/","id":438890,"name":"Vive l'Empereur!","site_detail_url":"https://comicvine.gamespot.com/jour-j-7-vive-l-empereur/4000-438890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285340/","id":285340,"name":"Turbulence, Part Four","site_detail_url":"https://comicvine.gamespot.com/booster-gold-47-turbulence-part-four/4000-285340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282903/","id":282903,"name":"This is the World We Hope For","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-3-this-is-the-w/4000-282903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282906/","id":282906,"name":"The Treasure","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deathstroke-and-the-curse-of-the-ravage/4000-282906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286682/","id":286682,"name":"Streets of Fire","site_detail_url":"https://comicvine.gamespot.com/flashpoint-legion-of-doom-3-streets-of-fire/4000-286682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282910/","id":282910,"name":"Part Three: The Area of Madness","site_detail_url":"https://comicvine.gamespot.com/flashpoint-secret-seven-3-part-three-the-area-of-m/4000-282910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286679/","id":286679,"name":"Part Three: Men From Space","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-outsider-3-part-three-men-from-spac/4000-286679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286681/","id":286681,"name":"Part Three: Cataclysm","site_detail_url":"https://comicvine.gamespot.com/flashpoint-wonder-woman-and-the-furies-3-part-thre/4000-286681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285172/","id":285172,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/flashpoint-emperor-aquaman-3-part-three/4000-285172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282900/","id":282900,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/flashpoint-batman-knight-of-vengeance-3-part-three/4000-282900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285174/","id":285174,"name":"Part 3: Our Frightening Forces","site_detail_url":"https://comicvine.gamespot.com/flashpoint-frankenstein-and-the-creatures-of-the-u/4000-285174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288131/","id":288131,"name":"Kill the Story","site_detail_url":"https://comicvine.gamespot.com/flashpoint-lois-lane-and-the-resistance-3-kill-the/4000-288131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288132/","id":288132,"name":"Kid Flash Lost, Part Three","site_detail_url":"https://comicvine.gamespot.com/flashpoint-kid-flash-lost-3-kid-flash-lost-part-th/4000-288132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288130/","id":288130,"name":"Hard-Travelling Hero","site_detail_url":"https://comicvine.gamespot.com/flashpoint-hal-jordan-3-hard-travelling-hero/4000-288130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286680/","id":286680,"name":"Emerald Embrace","site_detail_url":"https://comicvine.gamespot.com/flashpoint-abin-sur-the-green-lantern-3-emerald-em/4000-286680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285171/","id":285171,"name":"Death of the Family","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deadman-and-the-flying-graysons-3-death/4000-285171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285179/","id":285179,"name":"Cold Hearted, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/flashpoint-citizen-cold-3-cold-hearted-chapter-3/4000-285179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288129/","id":288129,"name":"Battle's Eve","site_detail_url":"https://comicvine.gamespot.com/flashpoint-project-superman-3-battles-eve/4000-288129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394416/","id":394416,"name":"Battle Lines, Part 5","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-41-battle-line/4000-394416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278556/","id":278556,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/flashpoint-emperor-aquaman-2-part-two/4000-278556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277377/","id":277377,"name":"Flashpoint: Chapter Three of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-3-flashpoint-chapter-three-of-five/4000-277377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385236/","id":385236,"name":"Flashpoint Chapter Three of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deluxe-3-flashpoint-chapter-three-of-fi/4000-385236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277427/","id":277427,"name":"Emerald Connection","site_detail_url":"https://comicvine.gamespot.com/flashpoint-abin-sur-the-green-lantern-2-emerald-co/4000-277427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281526/","id":281526,"name":"Beware Its Power!","site_detail_url":"https://comicvine.gamespot.com/flashpoint-hal-jordan-2-beware-its-power/4000-281526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283197/","id":283197,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-223/4000-283197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278559/","id":278559,"name":"Turbulence, Part Three","site_detail_url":"https://comicvine.gamespot.com/booster-gold-46-turbulence-part-three/4000-278559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277432/","id":277432,"name":"This Is The World We Made","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-2-this-is-the-w/4000-277432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278558/","id":278558,"name":"Red Tide","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deathstroke-and-the-curse-of-the-ravage/4000-278558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279958/","id":279958,"name":"Part Two: The Sacrifice","site_detail_url":"https://comicvine.gamespot.com/flashpoint-wonder-woman-and-the-furies-2-part-two-/4000-279958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277433/","id":277433,"name":"Part Two: Call of The Wild","site_detail_url":"https://comicvine.gamespot.com/flashpoint-secret-seven-2-part-two-call-of-the-wil/4000-277433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277419/","id":277419,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/flashpoint-batman-knight-of-vengeance-2-part-two/4000-277419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278557/","id":278557,"name":"Part 2: Our Army At Gore!","site_detail_url":"https://comicvine.gamespot.com/flashpoint-frankenstein-and-the-creatures-of-the-u/4000-278557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279960/","id":279960,"name":"Once Upon a Time in the East","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-outsider-2-once-upon-a-time-in-the-/4000-279960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281525/","id":281525,"name":"Live and Exclusive","site_detail_url":"https://comicvine.gamespot.com/flashpoint-lois-lane-and-the-resistance-2-live-and/4000-281525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281527/","id":281527,"name":"Kid Flash Lost, Part Two","site_detail_url":"https://comicvine.gamespot.com/flashpoint-kid-flash-lost-2-kid-flash-lost-part-tw/4000-281527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294898/","id":294898,"name":"Inside Job, Part Four","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-32-inside-job-part-four/4000-294898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281521/","id":281521,"name":"In These Small Hands","site_detail_url":"https://comicvine.gamespot.com/flashpoint-project-superman-2-in-these-small-hands/4000-281521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285071/","id":285071,"name":"Genesis Part Two: Friends and Fate","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-227-genesis-part-two-friends-an/4000-285071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279962/","id":279962,"name":"Fired Up!","site_detail_url":"https://comicvine.gamespot.com/flashpoint-legion-of-doom-2-fired-up/4000-279962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278555/","id":278555,"name":"Cold Hearted, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/flashpoint-citizen-cold-2-cold-hearted-chapter-2/4000-278555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279957/","id":279957,"name":"All Eyes on the Prize","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deadman-and-the-flying-graysons-2-all-e/4000-279957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272411/","id":272411,"name":"Flashpoint: Chapter Two of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-2-flashpoint-chapter-two-of-five/4000-272411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272344/","id":272344,"name":"Emerald Isolation","site_detail_url":"https://comicvine.gamespot.com/flashpoint-abin-sur-the-green-lantern-1-emerald-is/4000-272344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384424/","id":384424,"name":"Flashpoint Chapter Four of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deluxe-4-flashpoint-chapter-four-of-fiv/4000-384424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273079/","id":273079,"name":"Turbulence, Part Two","site_detail_url":"https://comicvine.gamespot.com/booster-gold-45-turbulence-part-two/4000-273079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272345/","id":272345,"name":"This World We Live In","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-1-this-world-we/4000-272345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274394/","id":274394,"name":"The Show Must Go On","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deadman-and-the-flying-graysons-1-the-s/4000-274394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276571/","id":276571,"name":"The Scoundrel's Tale","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-canterbury-cricket-1-the-scoundrels/4000-276571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276566/","id":276566,"name":"The Hero's Road","site_detail_url":"https://comicvine.gamespot.com/flashpoint-project-superman-1-the-heros-road/4000-276566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273081/","id":273081,"name":"Separation Anxiety","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deathstroke-and-the-curse-of-the-ravage/4000-273081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276570/","id":276570,"name":"Rising Tide","site_detail_url":"https://comicvine.gamespot.com/flashpoint-hal-jordan-1-rising-tide/4000-276570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274393/","id":274393,"name":"Part One: The Arrangement","site_detail_url":"https://comicvine.gamespot.com/flashpoint-wonder-woman-and-the-furies-1-part-one-/4000-274393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275585/","id":275585,"name":"Part One: Shades of Grey","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-outsider-1-part-one-shades-of-grey/4000-275585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272348/","id":272348,"name":"Part One: Hunter's Moone","site_detail_url":"https://comicvine.gamespot.com/flashpoint-secret-seven-1-part-one-hunters-moone/4000-272348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273083/","id":273083,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/flashpoint-emperor-aquaman-1-part-one/4000-273083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272346/","id":272346,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/flashpoint-batman-knight-of-vengeance-1-part-one/4000-272346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273080/","id":273080,"name":"Part 1: Weird War Tales!","site_detail_url":"https://comicvine.gamespot.com/flashpoint-frankenstein-and-the-creatures-of-the-u/4000-273080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275584/","id":275584,"name":"My Revenge","site_detail_url":"https://comicvine.gamespot.com/flashpoint-reverse-flash-1-my-revenge/4000-275584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275586/","id":275586,"name":"Kid Flash Lost, Part One","site_detail_url":"https://comicvine.gamespot.com/flashpoint-kid-flash-lost-1-kid-flash-lost-part-on/4000-275586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274391/","id":274391,"name":"Hot Blooded","site_detail_url":"https://comicvine.gamespot.com/flashpoint-legion-of-doom-1-hot-blooded/4000-274391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274392/","id":274392,"name":"Grodd of War","site_detail_url":"https://comicvine.gamespot.com/flashpoint-grodd-of-war-1-grodd-of-war/4000-274392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276567/","id":276567,"name":"Green Arrow Industries","site_detail_url":"https://comicvine.gamespot.com/flashpoint-green-arrow-industries-1-green-arrow-in/4000-276567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385235/","id":385235,"name":"Flashpoint Chapter Two of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deluxe-2-flashpoint-chapter-two-of-five/4000-385235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273082/","id":273082,"name":"Cold Hearted, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/flashpoint-citizen-cold-1-cold-hearted-chapter-1/4000-273082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275587/","id":275587,"name":"Breaking News","site_detail_url":"https://comicvine.gamespot.com/flashpoint-lois-lane-and-the-resistance-1-breaking/4000-275587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394404/","id":394404,"name":"Battle Lines, Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-40-battle-line/4000-394404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284404/","id":284404,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/x-factor-scar-tissue-1-volume-12/4000-284404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269827/","id":269827,"name":"Flashpoint: Chapter One of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-1-flashpoint-chapter-one-of-five/4000-269827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384422/","id":384422,"name":"Flashpoint Chapter One of Five","site_detail_url":"https://comicvine.gamespot.com/flashpoint-deluxe-1-flashpoint-chapter-one-of-five/4000-384422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278884/","id":278884,"name":"1969: Paint it Black","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-century-2-19/4000-278884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270444/","id":270444,"name":"Turbulence, Part One","site_detail_url":"https://comicvine.gamespot.com/booster-gold-44-turbulence-part-one/4000-270444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278855/","id":278855,"name":"A Fairytale Life, Part 4","site_detail_url":"https://comicvine.gamespot.com/doctor-who-a-fairy-tale-life-4-a-fairytale-life-pa/4000-278855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269461/","id":269461,"name":"A Better World, Part 2","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-18-a-better-world-part-2/4000-269461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455889/","id":455889,"name":"Paname","site_detail_url":"https://comicvine.gamespot.com/univerne-1-paname/4000-455889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272404/","id":272404,"name":"Odyssey Vol. 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-odyssey-1-odyssey-vol-1/4000-272404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394400/","id":394400,"name":"Battle Lines, Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-39-battle-line/4000-394400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273339/","id":273339,"name":"A Fairytale Life, Part 3","site_detail_url":"https://comicvine.gamespot.com/doctor-who-a-fairy-tale-life-3-a-fairytale-life-pa/4000-273339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267548/","id":267548,"name":"A Better World, Part 1","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-17-a-better-world-part-1/4000-267548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540175/","id":540175,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-4/4000-540175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264594/","id":264594,"name":"Chapter One: The Way of the One","site_detail_url":"https://comicvine.gamespot.com/5-ronin-1-chapter-one-the-way-of-the-one/4000-264594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362710/","id":362710,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-marries-betty-1/4000-362710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276148/","id":276148,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-omnibus-by-geoff-johns-1-vol-1/4000-276148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270765/","id":270765,"name":"Fractured Mirror, Part Four: Picking Up the Pieces","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-28-fractured-mirror-part-four-picki/4000-270765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291432/","id":291432,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-3/4000-291432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269572/","id":269572,"name":"War of the Currents","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-5-war-of/4000-269572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268900/","id":268900,"name":"Fractured Mirror, Part Three: Shattered","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-27-fractured-mirror-part-three-shat/4000-268900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394397/","id":394397,"name":"Battle Lines, Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-38-battle-line/4000-394397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268897/","id":268897,"name":"A Fairytale Life Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/doctor-who-a-fairy-tale-life-1-a-fairytale-life-pa/4000-268897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291431/","id":291431,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-2/4000-291431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266066/","id":266066,"name":"Fractured Mirror, Part Two: Warped Reflections","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-26-fractured-mirror-part-two-warped/4000-266066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839773/","id":839773,"name":"Épilogue 1","site_detail_url":"https://comicvine.gamespot.com/uchronie-s-epilogues-1-epilogue-1/4000-839773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258593/","id":258593,"name":"Asgard, Thine... Midgard, Mine!","site_detail_url":"https://comicvine.gamespot.com/thor-first-thunder-5-asgard-thine-midgard-mine/4000-258593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258472/","id":258472,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-214/4000-258472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438888/","id":438888,"name":"Qui a tué le président?","site_detail_url":"https://comicvine.gamespot.com/jour-j-5-qui-a-tue-le-president/4000-438888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291430/","id":291430,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-1/4000-291430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264301/","id":264301,"name":"The Wizard of Menlo Park","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-4-the-wi/4000-264301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263141/","id":263141,"name":"Fractured Mirror, Part One: Through the Looking Glass","site_detail_url":"https://comicvine.gamespot.com/sonic-universe-25-fractured-mirror-part-one-throug/4000-263141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394386/","id":394386,"name":"Battle Lines, Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-37-battle-line/4000-394386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276316/","id":276316,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-new-worldfantastick-four-1-hc/4000-276316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262031/","id":262031,"name":"Kiss Kiss, Bang Bang","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-3-kiss-k/4000-262031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241135/","id":241135,"name":"Gazing into the Abyss","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-16-gazing-into-the-abyss/4000-241135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242310/","id":242310,"name":"For Six: Part Two","site_detail_url":"https://comicvine.gamespot.com/knight-and-squire-2-for-six-part-two/4000-242310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302662/","id":302662,"name":"Catwoman - Guardian of Gotham","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-catwoman-guardian-of-gotham-1-c/4000-302662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218280/","id":218280,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-talisman-the-road-of-trials-1-gn/4000-218280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249405/","id":249405,"name":"The Robot Who Wouldn't Go Away","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-2-the-ro/4000-249405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394296/","id":394296,"name":"The Coming Storm: Part 6","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-36-the-coming-/4000-394296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355527/","id":355527,"name":"It's an Amazing Life","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-29-its-an-amazing-life/4000-355527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313494/","id":313494,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/grandville-mon-amour-1-hc/4000-313494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243697/","id":243697,"name":"The Man with Two Skulls","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-1-the-ma/4000-243697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233080/","id":233080,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/hercules-twilight-of-a-god-4-the-end/4000-233080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245898/","id":245898,"name":"When Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-when-worlds-collide-1-wh/4000-245898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227821/","id":227821,"name":"Part 1: Last Gun on Earth","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-1-part-1-last-gun-/4000-227821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394290/","id":394290,"name":"The Coming Storm: Part 5","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-35-the-coming-/4000-394290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227869/","id":227869,"name":"Skypping Over Details!","site_detail_url":"https://comicvine.gamespot.com/hercules-twilight-of-a-god-3-skypping-over-details/4000-227869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231595/","id":231595,"name":"Only the Good Die Young","site_detail_url":"https://comicvine.gamespot.com/avengers-4-only-the-good-die-young/4000-231595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226974/","id":226974,"name":"Damage Control","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-11-damage-control/4000-226974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225674/","id":225674,"name":"Menace from Beyond Time","site_detail_url":"https://comicvine.gamespot.com/avengers-3-menace-from-beyond-time/4000-225674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235152/","id":235152,"name":"Book 5","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-5-book-5/4000-235152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223269/","id":223269,"name":"A Cosmic Blast from the Past!","site_detail_url":"https://comicvine.gamespot.com/hercules-twilight-of-a-god-2-a-cosmic-blast-from-t/4000-223269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224898/","id":224898,"name":"The Seventh Day","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-10-the-seventh-day/4000-224898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220585/","id":220585,"name":"Wonder Man Attacks?!!","site_detail_url":"https://comicvine.gamespot.com/avengers-2-wonder-man-attacks/4000-220585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394289/","id":394289,"name":"The Coming Storm: Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-34-the-coming-/4000-394289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217683/","id":217683,"name":"If Super-Awesome-Largeness Be My Destiny!","site_detail_url":"https://comicvine.gamespot.com/hercules-twilight-of-a-god-1-if-super-awesome-larg/4000-217683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220761/","id":220761,"name":"Punch Drunk","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-9-punch-drunk/4000-220761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214810/","id":214810,"name":"Next Avengers: Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-1-next-avengers-part-1/4000-214810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224509/","id":224509,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/revolver-1-hc/4000-224509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211210/","id":211210,"name":"No Laughing Matter","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-8-no-laughing-matter/4000-211210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226591/","id":226591,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-1-book-one/4000-226591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258719/","id":258719,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-chronicles-1-volume-1/4000-258719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394225/","id":394225,"name":"The Coming Storm: Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-33-the-coming-/4000-394225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200992/","id":200992,"name":"Wildcats","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-7-wildcats/4000-200992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332609/","id":332609,"name":"Vol. 21","site_detail_url":"https://comicvine.gamespot.com/fairy-tail-21-vol-21/4000-332609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198970/","id":198970,"name":"Killer Queen","site_detail_url":"https://comicvine.gamespot.com/prelude-to-deadpool-corps-1-killer-queen/4000-198970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216448/","id":216448,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-spider-man-1-hc-tpb/4000-216448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246788/","id":246788,"name":"Second Coming","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-second-coming-1-seco/4000-246788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279106/","id":279106,"name":"Humor","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-color-fest-4-humor/4000-279106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279617/","id":279617,"name":"Dipartimento 51 – Il segreto del multiverso","site_detail_url":"https://comicvine.gamespot.com/universo-alfa-6-dipartimento-51-il-segreto-del-mul/4000-279617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212096/","id":212096,"name":"Clown Therapy; Maggie's Crib; Homer Beats The Heat; The LEague Of Extraordinary Barts","site_detail_url":"https://comicvine.gamespot.com/bongo-comics-free-for-all-2010-clown-therapy-maggi/4000-212096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438884/","id":438884,"name":"Les Russes sur la Lune!","site_detail_url":"https://comicvine.gamespot.com/jour-j-1-les-russes-sur-la-lune/4000-438884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197487/","id":197487,"name":"Absolute Authority","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-6-absolute-authority/4000-197487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211200/","id":211200,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-essential-wonder-woman-encyclopedia-1/4000-211200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197798/","id":197798,"name":"The Web Complete: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/spider-man-1602-5-the-web-complete-chapter-5/4000-197798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394142/","id":394142,"name":"The Coming Storm: Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-32-the-coming-/4000-394142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198346/","id":198346,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-202/4000-198346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191456/","id":191456,"name":"Tinderbox","site_detail_url":"https://comicvine.gamespot.com/new-mutants-9-tinderbox/4000-191456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194241/","id":194241,"name":"The Web Complete: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/spider-man-1602-4-the-web-complete-chapter-4/4000-194241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194518/","id":194518,"name":"Archie Marries Betty: Happily Ever After, Part 6","site_detail_url":"https://comicvine.gamespot.com/archie-605-archie-marries-betty-happily-ever-after/4000-194518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232250/","id":232250,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-12-volume-12/4000-232250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187723/","id":187723,"name":"Jump Start","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-4-jump-start/4000-187723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200110/","id":200110,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-1-tpbhc/4000-200110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189470/","id":189470,"name":"The Web Complete: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-1602-3-the-web-complete-chapter-3/4000-189470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186920/","id":186920,"name":"The Heroes Lost World War Hulk?; Thor Entered World War Hulk?; Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-world-war-hulk-1-the-heroes-lost-world-war/4000-186920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393987/","id":393987,"name":"The Coming Storm: Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-31-the-coming-/4000-393987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189561/","id":189561,"name":"Archie Marries Betty: You May Kiss the Bride, Part 5","site_detail_url":"https://comicvine.gamespot.com/archie-604-archie-marries-betty-you-may-kiss-the-b/4000-189561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183792/","id":183792,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-3/4000-183792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394803/","id":394803,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-fairy-tales-1-tpb/4000-394803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182518/","id":182518,"name":"Utopian","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-reader-1-utopian/4000-182518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184039/","id":184039,"name":"The Web Complete: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-1602-2-the-web-complete-chapter-2/4000-184039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185212/","id":185212,"name":"Archie Marries Betty: Will You Marry Me?, Part 4","site_detail_url":"https://comicvine.gamespot.com/archie-603-archie-marries-betty-will-you-marry-me-/4000-185212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181678/","id":181678,"name":"Apes Vs. Zombies!","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-evil-evolution-1-apes-vs-zombies/4000-181678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222654/","id":222654,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/x-factor-overtime-1-volume-8/4000-222654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191360/","id":191360,"name":"X-Factor: Time and a Half","site_detail_url":"https://comicvine.gamespot.com/x-factor-time-and-a-half-1-x-factor-time-and-a-hal/4000-191360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175654/","id":175654,"name":"The Web Complete: Chapter 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-1602-1-the-web-complete-chapter-1/4000-175654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393979/","id":393979,"name":"Reunification: Part 6","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-30-reunificati/4000-393979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179202/","id":179202,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-50/4000-179202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473406/","id":473406,"name":"","site_detail_url":"https://comicvine.gamespot.com/jla-25/4000-473406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428589/","id":428589,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-68/4000-428589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171389/","id":171389,"name":"The Cortex Equation","site_detail_url":"https://comicvine.gamespot.com/x-factor-48-the-cortex-equation/4000-171389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171548/","id":171548,"name":"Archie Marries Veronica, Part 2: The Wedding","site_detail_url":"https://comicvine.gamespot.com/archie-601-archie-marries-veronica-part-2-the-wedd/4000-171548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183794/","id":183794,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-talisman-the-road-of-trials-1/4000-183794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173886/","id":173886,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-49/4000-173886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313493/","id":313493,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/grandville-1-hc/4000-313493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393974/","id":393974,"name":"Reunification: Part 5","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-29-reunificati/4000-393974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184978/","id":184978,"name":"Part 4: All Fall Down","site_detail_url":"https://comicvine.gamespot.com/farscape-gone-and-back-4-part-4-all-fall-down/4000-184978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167627/","id":167627,"name":"Archie Marries Veronica Part 1: The Proposal","site_detail_url":"https://comicvine.gamespot.com/archie-600-archie-marries-veronica-part-1-the-prop/4000-167627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167373/","id":167373,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-47/4000-167373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164146/","id":164146,"name":"X-It Strategies","site_detail_url":"https://comicvine.gamespot.com/x-factor-46-x-it-strategies/4000-164146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225797/","id":225797,"name":"Ape-okolips Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-prime-eight-3-ape-okolips-now/4000-225797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225796/","id":225796,"name":"Ape-okolips Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-prime-eight-2-ape-okolips-now/4000-225796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207655/","id":207655,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-evolution-starts-here-1-tpb/4000-207655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172351/","id":172351,"name":"Part 3: Call in the Murines","site_detail_url":"https://comicvine.gamespot.com/farscape-gone-and-back-3-part-3-call-in-the-murine/4000-172351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164795/","id":164795,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-5-book-five/4000-164795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249095/","id":249095,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-archives-11-volume-11/4000-249095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170154/","id":170154,"name":"Ape-okolips Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-prime-eight-1-ape-okolips-now/4000-170154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159816/","id":159816,"name":"Dirty, Sexy Monet","site_detail_url":"https://comicvine.gamespot.com/x-factor-44-dirty-sexy-monet/4000-159816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397000/","id":397000,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/transformers-generations-2009-3-vol-3/4000-397000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161709/","id":161709,"name":"Welcome to Sundown Town Conclusion: The Dharma Initiative","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-34-welcome-to-sundown-to/4000-161709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393965/","id":393965,"name":"Reunification: Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-28-reunificati/4000-393965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167605/","id":167605,"name":"Part 2: With Enemies Like These...","site_detail_url":"https://comicvine.gamespot.com/farscape-gone-and-back-2-part-2-with-enemies-like-/4000-167605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161549/","id":161549,"name":"Messiah War: Part 7","site_detail_url":"https://comicvine.gamespot.com/x-force-16-messiah-war-part-7/4000-161549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160411/","id":160411,"name":"Messiah War, Part 6","site_detail_url":"https://comicvine.gamespot.com/cable-15-messiah-war-part-6/4000-160411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161887/","id":161887,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-45/4000-161887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469723/","id":469723,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/hero-squared-love-and-death-1-volume-3/4000-469723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159556/","id":159556,"name":"This Man - This Monkey!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-grunt-line-1-this-man-this-monkey/4000-159556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430390/","id":430390,"name":"The Pre-socratics and Plato!","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-1-the-pre-socratics-and-plato/4000-430390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158449/","id":158449,"name":"Welcome To Sundown Town, Chapter 6: Metathesiophobia","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-33-welcome-to-sundown-to/4000-158449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157159/","id":157159,"name":"Timely Events","site_detail_url":"https://comicvine.gamespot.com/x-factor-43-timely-events/4000-157159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166608/","id":166608,"name":"San Diego Comic Con 2009","site_detail_url":"https://comicvine.gamespot.com/the-talisman-the-road-of-trials-0-san-diego-comic-/4000-166608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164798/","id":164798,"name":"Part 1: Through a Glass, Weirdly","site_detail_url":"https://comicvine.gamespot.com/farscape-gone-and-back-1-part-1-through-a-glass-we/4000-164798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158731/","id":158731,"name":"Messiah War: Part 5","site_detail_url":"https://comicvine.gamespot.com/x-force-15-messiah-war-part-5/4000-158731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156646/","id":156646,"name":"Messiah War, Part 4","site_detail_url":"https://comicvine.gamespot.com/cable-14-messiah-war-part-4/4000-156646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290396/","id":290396,"name":"Wiedergeburt","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-sonderband-7-wiedergebur/4000-290396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393957/","id":393957,"name":"Reunification: Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-27-reunificati/4000-393957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158597/","id":158597,"name":"Old Man Logan, Part 7","site_detail_url":"https://comicvine.gamespot.com/wolverine-72-old-man-logan-part-7/4000-158597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155738/","id":155738,"name":"Messiah War: Part 3","site_detail_url":"https://comicvine.gamespot.com/x-force-14-messiah-war-part-3/4000-155738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154460/","id":154460,"name":"Messiah War, Part 2","site_detail_url":"https://comicvine.gamespot.com/cable-13-messiah-war-part-2/4000-154460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156118/","id":156118,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-4-book-four/4000-156118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155519/","id":155519,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-42/4000-155519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154583/","id":154583,"name":"Bad Day At The Banana Factory; Charles Darwin Presents: The Awesome Origin Of The Species!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-speedball-special-1-bad-day-at-the-ban/4000-154583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158119/","id":158119,"name":"1910: What Keeps Mankind Alive?","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-century-1-19/4000-158119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153678/","id":153678,"name":"Old Man Logan, Part 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-71-old-man-logan-part-6/4000-153678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154017/","id":154017,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/x-forcecable-messiah-war-1-chapter-1/4000-154017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153680/","id":153680,"name":"Back & There Again","site_detail_url":"https://comicvine.gamespot.com/x-factor-41-back-there-again/4000-153680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157765/","id":157765,"name":"All Tomorrow's Yesterdays","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-58-all-tomorrows-yesterdays/4000-157765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396024/","id":396024,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/big-book-of-barry-ween-boy-genius-1-tpb/4000-396024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393953/","id":393953,"name":"Reunification: Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-26-reunificati/4000-393953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151134/","id":151134,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-3-book-three/4000-151134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149318/","id":149318,"name":"Old Man Logan, Part 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-70-old-man-logan-part-5/4000-149318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154004/","id":154004,"name":"The End Of History","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-the-last-generation-/4000-154004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149826/","id":149826,"name":"Love & War, Part 4: The Weight Of The World","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-124-love-war-part-4-the-weight/4000-149826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222743/","id":222743,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-house-of-mystery-3-volume-three/4000-222743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142068/","id":142068,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/sonic-x-40-the-end/4000-142068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393951/","id":393951,"name":"Reunification: Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-25-reunificati/4000-393951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152865/","id":152865,"name":"Inevitabllity","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-the-last-generation-/4000-152865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185211/","id":185211,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-5-volume-5/4000-185211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149769/","id":149769,"name":"Volume 3: The Gary Seven Collection","site_detail_url":"https://comicvine.gamespot.com/star-trek-archives-3-volume-3-the-gary-seven-colle/4000-149769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141985/","id":141985,"name":"Old Man Logan, Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-69-old-man-logan-part-4/4000-141985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181823/","id":181823,"name":"X-Factor: The Only Game in Town","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-only-game-in-town-1-x-factor-the-only/4000-181823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150150/","id":150150,"name":"What Happens Now","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-the-last-generation-/4000-150150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145532/","id":145532,"name":"The Last Testament of Scott Summers","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-ghost-boxes-2-the-last-testament/4000-145532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177521/","id":177521,"name":"Archie Marries Veronica, Part 3: It's Twins!","site_detail_url":"https://comicvine.gamespot.com/archie-602-archie-marries-veronica-part-3-its-twin/4000-177521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139675/","id":139675,"name":"Book Three: Gorilla Warfare!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-3-book-three-gorilla-warfare/4000-139675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142458/","id":142458,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-fairy-tales-4/4000-142458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420974/","id":420974,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-420974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254904/","id":254904,"name":"Vengeance","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-vengeance-1-vengeance/4000-254904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393949/","id":393949,"name":"Transcendent: Part 6","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-24-transcenden/4000-393949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148087/","id":148087,"name":"No Cure For That","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-the-last-generation-/4000-148087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141259/","id":141259,"name":"Ghost Boxes","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-ghost-boxes-1-ghost-boxes/4000-141259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283383/","id":283383,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-5/4000-283383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183107/","id":183107,"name":"X-Men: Messiah CompleX","site_detail_url":"https://comicvine.gamespot.com/x-men-messiah-complex-1-x-men-messiah-complex/4000-183107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139088/","id":139088,"name":"See No Evil!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-2-see-no-evil/4000-139088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139669/","id":139669,"name":"The Second Coming, Chapter Four: The Best Lack All Conviction","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-25-the-second-coming-cha/4000-139669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143153/","id":143153,"name":"Do Not Close Your Eyes","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-the-last-generation-/4000-143153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279572/","id":279572,"name":"Dipartimento 51 – L’orrore della miniera","site_detail_url":"https://comicvine.gamespot.com/universo-alfa-3-dipartimento-51-lorrore-della-mini/4000-279572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138275/","id":138275,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menultimate-fantastic-four-annual-1/4000-138275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393946/","id":393946,"name":"Transcendent: Part 5","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-23-transcenden/4000-393946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136064/","id":136064,"name":"Stuff Happens","site_detail_url":"https://comicvine.gamespot.com/x-factor-layla-miller-1-stuff-happens/4000-136064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136528/","id":136528,"name":"Old Man Logan, Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-68-old-man-logan-part-3/4000-136528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326604/","id":326604,"name":"Vol. 1 and 2","site_detail_url":"https://comicvine.gamespot.com/astro-boy-1-vol-1-and-2/4000-326604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134636/","id":134636,"name":"Old Man Logan: Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-67-old-man-logan-part-2/4000-134636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136487/","id":136487,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/abenobashi-magical-shopping-arcade-1-volume-1/4000-136487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358012/","id":358012,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-1/4000-358012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393944/","id":393944,"name":"Transcendent: Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-22-transcenden/4000-393944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145370/","id":145370,"name":"The Mission","site_detail_url":"https://comicvine.gamespot.com/the-new-dynamix-4-the-mission/4000-145370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131540/","id":131540,"name":"Old Man Logan, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-66-old-man-logan-part-1/4000-131540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138934/","id":138934,"name":"Episode Ten","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-10-episode-te/4000-138934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131781/","id":131781,"name":"A Bold New Moebius Part 1: Unwelcome Guests","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-189-a-bold-new-moebius-part-1-u/4000-131781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132602/","id":132602,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-fairy-tales-3/4000-132602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283014/","id":283014,"name":"L’incendiario","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-262-lincendiario/4000-283014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324118/","id":324118,"name":"Il Re del Mondo","site_detail_url":"https://comicvine.gamespot.com/dampyr-100-il-re-del-mondo/4000-324118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127143/","id":127143,"name":"Created Equal","site_detail_url":"https://comicvine.gamespot.com/avengers-fairy-tales-2-created-equal/4000-127143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129081/","id":129081,"name":"Batman and the Legion Of Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/action-comics-864-batman-and-the-legion-of-super-h/4000-129081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393943/","id":393943,"name":"Transcendent: Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-21-transcenden/4000-393943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129018/","id":129018,"name":"Enemy Rising, Part Two: Busted!","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-41-enemy-rising-part-two-bu/4000-129018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131871/","id":131871,"name":"All Possible Worlds","site_detail_url":"https://comicvine.gamespot.com/hero-initiative-mike-wieringo-book-what-if-this-wa/4000-131871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259634/","id":259634,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-1-part/4000-259634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473268/","id":473268,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/essential-rampaging-hulk-1-volume-one/4000-473268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126059/","id":126059,"name":"The Conclusion","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-6/4000-126059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126056/","id":126056,"name":"Four Cubed, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-52-four-cubed-part-3/4000-126056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283382/","id":283382,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-4/4000-283382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125287/","id":125287,"name":"Waking Up On The Wrong Side Of The Universe, Part 2","site_detail_url":"https://comicvine.gamespot.com/catwoman-76-waking-up-on-the-wrong-side-of-the-uni/4000-125287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393939/","id":393939,"name":"Transcendent: Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-20-transcenden/4000-393939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124848/","id":124848,"name":"Part Five: Man of Peace. Man of War.","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-5/4000-124848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124232/","id":124232,"name":"Black to the Future","site_detail_url":"https://comicvine.gamespot.com/black-panther-annual-1-black-to-the-future/4000-124232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122815/","id":122815,"name":"Aftermath","site_detail_url":"https://comicvine.gamespot.com/x-factor-28-aftermath/4000-122815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124022/","id":124022,"name":"\"Of COURSE we're criminals. We've always BEEN criminals.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-9-of-course-w/4000-124022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121878/","id":121878,"name":"Messiah CompleX, Chapter Thirteen","site_detail_url":"https://comicvine.gamespot.com/x-men-207-messiah-complex-chapter-thirteen/4000-121878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393938/","id":393938,"name":"Transcendent, Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-19-transcenden/4000-393938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283381/","id":283381,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-3/4000-283381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118839/","id":118839,"name":"The Quest for Cosmic Boy: Epilogue","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-36-the-qu/4000-118839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125529/","id":125529,"name":"Once Upon a Time...","site_detail_url":"https://comicvine.gamespot.com/avengers-fairy-tales-1-once-upon-a-time/4000-125529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164631/","id":164631,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-19/4000-164631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228824/","id":228824,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-and-robin-the-boy-wonder-volume-1-/4000-228824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118499/","id":118499,"name":"Messiah CompleX, Chapter Five","site_detail_url":"https://comicvine.gamespot.com/x-men-205-messiah-complex-chapter-five/4000-118499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117825/","id":117825,"name":"Messiah Complex Chapter Three","site_detail_url":"https://comicvine.gamespot.com/x-factor-25-messiah-complex-chapter-three/4000-117825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118081/","id":118081,"name":"Messiah Complex Chapter Four","site_detail_url":"https://comicvine.gamespot.com/new-x-men-44-messiah-complex-chapter-four/4000-118081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118697/","id":118697,"name":"\"This is LOVE. In my OWN...SPECIAL...WAY.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-8-this-is-lov/4000-118697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115412/","id":115412,"name":"Bad Seed","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-4-bad-seed/4000-115412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225809/","id":225809,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-justice-league-of-america-3-volu/4000-225809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117687/","id":117687,"name":"Wrong Place, Wrong Time","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go-48-wrong-place-wrong-time/4000-117687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280302/","id":280302,"name":"Ricordi dal futuro","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-294-ricordi-dal-futuro/4000-280302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118151/","id":118151,"name":"Part One: The Arrival","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-1/4000-118151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240260/","id":240260,"name":"Killing Machine","site_detail_url":"https://comicvine.gamespot.com/midnighter-killing-machine-1-killing-machine/4000-240260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120869/","id":120869,"name":"Interminable CRISIS, The Extreme Alternate Edition","site_detail_url":"https://comicvine.gamespot.com/simpsons-super-spectacular-6-interminable-crisis-t/4000-120869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142097/","id":142097,"name":"Giant-Sized Thing, Vol 3","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-giant-sized-thing-3-giant-size/4000-142097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393936/","id":393936,"name":"Crossing Over, Part 6","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-18-crossing-ov/4000-393936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216664/","id":216664,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-fairy-tales-1-tpb/4000-216664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114542/","id":114542,"name":"Field Trip Of Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-3-field-trip-of-doom/4000-114542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149757/","id":149757,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-archives-3-volume-3/4000-149757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181821/","id":181821,"name":"X-Factor: Many Lives of Madrox","site_detail_url":"https://comicvine.gamespot.com/x-factor-many-lives-of-madrox-1-x-factor-many-live/4000-181821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114960/","id":114960,"name":"\"Let me take you to SCHOOL, suckers...in CHEMISTRY.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-7-let-me-take/4000-114960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114573/","id":114573,"name":"What You Wish For","site_detail_url":"https://comicvine.gamespot.com/spider-man-fairy-tales-4-what-you-wish-for/4000-114573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306486/","id":306486,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shazam-the-monster-society-of-evil-1-tpb/4000-306486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113102/","id":113102,"name":"The Utterly Awesome Adventure of Mass Master & Fabulous Frank!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-2-the-utterly-awesom/4000-113102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114283/","id":114283,"name":"Another Me, Another U.","site_detail_url":"https://comicvine.gamespot.com/she-hulk-21-another-me-another-u/4000-114283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113320/","id":113320,"name":"The Clock is Ticking","site_detail_url":"https://comicvine.gamespot.com/she-hulk-20-the-clock-is-ticking/4000-113320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113539/","id":113539,"name":"Eclipse","site_detail_url":"https://comicvine.gamespot.com/spider-man-fairy-tales-3-eclipse/4000-113539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114958/","id":114958,"name":"Gnaws; They Draw; Prop, Prop, Whiz, Whiz; The Pygmy Elixir","site_detail_url":"https://comicvine.gamespot.com/bart-simpsons-treehouse-of-horror-13-gnaws-they-dr/4000-114958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111935/","id":111935,"name":"\"And ALWAYS throw in a smile when you're bullshitting your dad.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-6-and-always-/4000-111935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112288/","id":112288,"name":"What If?","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-25-what-if/4000-112288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111102/","id":111102,"name":"The Spirits of Friendship","site_detail_url":"https://comicvine.gamespot.com/spider-man-fairy-tales-2-the-spirits-of-friendship/4000-111102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110316/","id":110316,"name":"Electrical Problems; Scorpion in...Namesake; What If Spider-Man Joined the Fantastic Four; Spider-Man J in The Bigger They Are; Mini Marvels presents Hulk Date","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-3-electrical-problems-scorpion-i/4000-110316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181817/","id":181817,"name":"Volume 2: Life and Death Matters","site_detail_url":"https://comicvine.gamespot.com/x-factor-life-and-death-matters-1-volume-2-life-an/4000-181817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393929/","id":393929,"name":"Crossing Over, Part 4; The Wreckers: Finale Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-16-crossing-ov/4000-393929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114997/","id":114997,"name":"The Wanderers","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-30-the-wa/4000-114997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110059/","id":110059,"name":"Off The Beaten Path","site_detail_url":"https://comicvine.gamespot.com/spider-man-fairy-tales-1-off-the-beaten-path/4000-110059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111121/","id":111121,"name":"The Gamma Defense","site_detail_url":"https://comicvine.gamespot.com/she-hulk-19-the-gamma-defense/4000-111121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222767/","id":222767,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bullet-points-1-tpb/4000-222767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109607/","id":109607,"name":"\"I love being the goddamn BATMAN.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-5-i-love-bein/4000-109607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537380/","id":537380,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-19/4000-537380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108258/","id":108258,"name":"Flowers for the Sun","site_detail_url":"https://comicvine.gamespot.com/midnighter-6-flowers-for-the-sun/4000-108258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118353/","id":118353,"name":"Power Combo!","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack-1-power-combo/4000-118353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322897/","id":322897,"name":"La casa sull’orlo del mondo","site_detail_url":"https://comicvine.gamespot.com/dampyr-86-la-casa-sullorlo-del-mondo/4000-322897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107596/","id":107596,"name":"Aftermath Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-80-aftermath-part-2/4000-107596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279111/","id":279111,"name":"Le spirali del multiverso","site_detail_url":"https://comicvine.gamespot.com/nathan-never-190-le-spirali-del-multiverso/4000-279111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157575/","id":157575,"name":"Utopian","site_detail_url":"https://comicvine.gamespot.com/the-authority-2-utopian/4000-157575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130793/","id":130793,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-fantastick-four-5/4000-130793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222723/","id":222723,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-house-of-mystery-2-volume-two/4000-222723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130792/","id":130792,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-fantastick-four-4/4000-130792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315369/","id":315369,"name":"Lion des mers","site_detail_url":"https://comicvine.gamespot.com/dread-mac-farlane-5-lion-des-mers/4000-315369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393907/","id":393907,"name":"Crossing Over, Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-13-crossing-ov/4000-393907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268831/","id":268831,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-saga-of-the-super-sons-1-tpb/4000-268831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130783/","id":130783,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-fantastick-four-3/4000-130783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106073/","id":106073,"name":"Re-X-Aminations","site_detail_url":"https://comicvine.gamespot.com/x-factor-13-re-x-aminations/4000-106073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141489/","id":141489,"name":"Bullet Points","site_detail_url":"https://comicvine.gamespot.com/bullet-points-1-bullet-points/4000-141489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130782/","id":130782,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-fantastick-four-2/4000-130782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106101/","id":106101,"name":"X'd Out (part 3)","site_detail_url":"https://comicvine.gamespot.com/x-factor-12-xd-out-part-3/4000-106101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113372/","id":113372,"name":"Stop Me If You've Heard This One...","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-annual-1-stop-me-if-youve-heard-thi/4000-113372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395202/","id":395202,"name":"Revelations Part 6","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-12-revelations/4000-395202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127701/","id":127701,"name":"Book 4","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-4-book-4/4000-127701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114974/","id":114974,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-22/4000-114974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130772/","id":130772,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-fantastick-four-1/4000-130772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300882/","id":300882,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-1-tpb/4000-300882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293431/","id":293431,"name":"Les trois reines sans visage","site_detail_url":"https://comicvine.gamespot.com/la-danse-du-temps-3-les-trois-reines-sans-visage/4000-293431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122587/","id":122587,"name":"Restless Souls","site_detail_url":"https://comicvine.gamespot.com/x-men-fairy-tales-4-restless-souls/4000-122587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395201/","id":395201,"name":"Revelations Part 5","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-11-revelations/4000-395201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142092/","id":142092,"name":"It's All Greek to You","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-7-its-all-greek-to-you/4000-142092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122534/","id":122534,"name":"To Die in Dreams","site_detail_url":"https://comicvine.gamespot.com/x-men-fairy-tales-3-to-die-in-dreams/4000-122534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114972/","id":114972,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-20/4000-114972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268661/","id":268661,"name":"","site_detail_url":"https://comicvine.gamespot.com/jsa-mixed-signals-1/4000-268661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127265/","id":127265,"name":"The Friendship of the Tortoise and the Eagle","site_detail_url":"https://comicvine.gamespot.com/x-men-fairy-tales-2-the-friendship-of-the-tortoise/4000-127265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220985/","id":220985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1/4000-220985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666509/","id":666509,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rat-man-color-special-6/4000-666509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395199/","id":395199,"name":"Revelations Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-10-revelations/4000-395199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127261/","id":127261,"name":"The Peach Boy","site_detail_url":"https://comicvine.gamespot.com/x-men-fairy-tales-1-the-peach-boy/4000-127261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113612/","id":113612,"name":"Adventure the Fourth: The Endless Nightmare of Leonard Samson, Part 2 / Nightmare Hour","site_detail_url":"https://comicvine.gamespot.com/doc-samson-5-adventure-the-fourth-the-endless-nigh/4000-113612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666508/","id":666508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rat-man-color-special-5/4000-666508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202240/","id":202240,"name":"Infinite Crisis","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-1-infinite-crisis/4000-202240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218556/","id":218556,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-kingdom-come-1-hc/4000-218556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283380/","id":283380,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-2/4000-283380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113611/","id":113611,"name":"Adventure the Fourth: The Endless Nightmare of Leonard Samson, Part 1 / A Cold Winter Comin'","site_detail_url":"https://comicvine.gamespot.com/doc-samson-4-adventure-the-fourth-the-endless-nigh/4000-113611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114915/","id":114915,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-17/4000-114915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395197/","id":395197,"name":"Revelations Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-9-revelations-/4000-395197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309770/","id":309770,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream-2-volume-2/4000-309770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122054/","id":122054,"name":"Touchdown","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-6-touchdown/4000-122054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114907/","id":114907,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-16/4000-114907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140328/","id":140328,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-4-vol-4/4000-140328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107097/","id":107097,"name":"Sometimes When We Touch...","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-6-sometimes-when-we-touch/4000-107097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293430/","id":293430,"name":"L'arme des démons","site_detail_url":"https://comicvine.gamespot.com/la-danse-du-temps-2-larme-des-demons/4000-293430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394601/","id":394601,"name":"Revelations Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-8-revelations-/4000-394601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107096/","id":107096,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-5-no-exit/4000-107096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131296/","id":131296,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-secret-files-1/4000-131296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315368/","id":315368,"name":"Nyambura","site_detail_url":"https://comicvine.gamespot.com/dread-mac-farlane-4-nyambura/4000-315368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275766/","id":275766,"name":"Anthem","site_detail_url":"https://comicvine.gamespot.com/anthem-1-anthem/4000-275766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106928/","id":106928,"name":"\"Welcome HOME, Dick Grayson.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-4-welcome-hom/4000-106928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472594/","id":472594,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-m-fantastic-four-iron-man-1-tpb/4000-472594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107080/","id":107080,"name":"Time Of Her Life","site_detail_url":"https://comicvine.gamespot.com/she-hulk-3-time-of-her-life/4000-107080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123436/","id":123436,"name":"The League of Extraordinary Barts!","site_detail_url":"https://comicvine.gamespot.com/simpsons-super-spectacular-2-the-league-of-extraor/4000-123436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394600/","id":394600,"name":"Revelations Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-7-revelations-/4000-394600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294952/","id":294952,"name":"Initiation","site_detail_url":"https://comicvine.gamespot.com/le-monde-alpha-1-initiation/4000-294952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130811/","id":130811,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-new-world-5/4000-130811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136511/","id":136511,"name":"Absolute Edition","site_detail_url":"https://comicvine.gamespot.com/absolute-dark-knight-1-absolute-edition/4000-136511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283379/","id":283379,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-1/4000-283379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130810/","id":130810,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-new-world-4/4000-130810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171583/","id":171583,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-modern-marvels-1-volume-2/4000-171583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114517/","id":114517,"name":"Chasing Ghosts, Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-34-chasing-ghosts-part-2/4000-114517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114518/","id":114518,"name":"Chasing Ghosts, Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-35-chasing-ghosts-conclusion/4000-114518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106927/","id":106927,"name":"\"A sweet young thing like ME can only take so MUCH.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-3-a-sweet-you/4000-106927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130809/","id":130809,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-new-world-3/4000-130809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114511/","id":114511,"name":"Chasing Ghosts, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-33-chasing-ghosts-part-1/4000-114511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106377/","id":106377,"name":"\"There's no TIME for GRIEF.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-2-theres-no-t/4000-106377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130808/","id":130808,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-new-world-2/4000-130808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111384/","id":111384,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-new-world-1/4000-111384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126178/","id":126178,"name":"Soul Power In The House Of M","site_detail_url":"https://comicvine.gamespot.com/black-panther-7-soul-power-in-the-house-of-m/4000-126178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394598/","id":394598,"name":"Balancing Act, Part 4","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-5-balancing-ac/4000-394598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115206/","id":115206,"name":"Chaos Emeralds Are Forever","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-151-chaos-emeralds-are-forever/4000-115206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378243/","id":378243,"name":"Descent into Evil","site_detail_url":"https://comicvine.gamespot.com/transformers-timelines-1-descent-into-evil/4000-378243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99222/","id":99222,"name":"Of Mice and Maze","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-10-of-mice-and-maze/4000-99222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293429/","id":293429,"name":"Le baiser du serpent","site_detail_url":"https://comicvine.gamespot.com/la-danse-du-temps-1-le-baiser-du-serpent/4000-293429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106828/","id":106828,"name":"\"This should get me KILLED. But it WON'T.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-1-this-should/4000-106828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115205/","id":115205,"name":"From Hero to Zero In No Time At All","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-150-from-hero-to-zero-in-no-tim/4000-115205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394560/","id":394560,"name":"Balancing Act, Part 3","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-4-balancing-ac/4000-394560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111188/","id":111188,"name":"With a Vengeance!, Chapter One: Here Come The Maximums","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-20-with-a-vengeance-chapter-one-her/4000-111188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101455/","id":101455,"name":"Chrysalis","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-6-chrysalis/4000-101455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394554/","id":394554,"name":"Balancing Act, Part 2","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-3-balancing-ac/4000-394554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285215/","id":285215,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-9/4000-285215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112414/","id":112414,"name":"The Four Horsemen","site_detail_url":"https://comicvine.gamespot.com/action-comics-825-the-four-horsemen/4000-112414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101454/","id":101454,"name":"Sinister","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-5-sinister/4000-101454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101450/","id":101450,"name":"Like Father...","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-1-like-father/4000-101450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101451/","id":101451,"name":"Coming Up For Air","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-2-coming-up-for-air/4000-101451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101452/","id":101452,"name":"Comebacks","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-3-comebacks/4000-101452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101453/","id":101453,"name":"Betrayal","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-4-betrayal/4000-101453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117841/","id":117841,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-1/4000-117841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127623/","id":127623,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-3-book-3/4000-127623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394553/","id":394553,"name":"Balancing Act, Part 1","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-2-balancing-ac/4000-394553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285214/","id":285214,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-8/4000-285214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255729/","id":255729,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-why-not-1-tpb/4000-255729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277915/","id":277915,"name":"Universi paralleli","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-9-universi-paralleli/4000-277915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447859/","id":447859,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredibles-cine-manga-1/4000-447859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132609/","id":132609,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-jessica-jones-had-joined-the-avengers-1/4000-132609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189515/","id":189515,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-karen-page-had-lived-1/4000-189515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394549/","id":394549,"name":"Vector Prime: In the Beginning","site_detail_url":"https://comicvine.gamespot.com/hasbro-transformers-collectors-club-1-vector-prime/4000-394549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285213/","id":285213,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-7/4000-285213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401738/","id":401738,"name":"Over the Looking Glass","site_detail_url":"https://comicvine.gamespot.com/hero-squared-x-tra-sized-special-1-over-the-lookin/4000-401738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160403/","id":160403,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tsubasa-reservoir-chronicle-4/4000-160403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301226/","id":301226,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/the-authority-fractured-worlds-1-vol-6/4000-301226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132433/","id":132433,"name":"Secret Files & Origins 2004","site_detail_url":"https://comicvine.gamespot.com/jla-secret-files-and-origins-4-secret-files-origin/4000-132433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157408/","id":157408,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tsubasa-reservoir-chronicle-3/4000-157408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300622/","id":300622,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/coup-detat-1-tpb/4000-300622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315366/","id":315366,"name":"Le crocodile du temps","site_detail_url":"https://comicvine.gamespot.com/dread-mac-farlane-2-le-crocodile-du-temps/4000-315366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160402/","id":160402,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tsubasa-reservoir-chronicle-2/4000-160402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96678/","id":96678,"name":"The Pilot","site_detail_url":"https://comicvine.gamespot.com/ex-machina-1-the-pilot/4000-96678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98098/","id":98098,"name":"Fractured World: Episode Four","site_detail_url":"https://comicvine.gamespot.com/the-authority-13-fractured-world-episode-four/4000-98098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98097/","id":98097,"name":"Fractured World: Episode Three","site_detail_url":"https://comicvine.gamespot.com/the-authority-12-fractured-world-episode-three/4000-98097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230471/","id":230471,"name":"Déjà View","site_detail_url":"https://comicvine.gamespot.com/the-powerpuff-girls-50-deja-view/4000-230471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131270/","id":131270,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-the-end-1/4000-131270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94006/","id":94006,"name":"In Which We Discover The Way Of The World...","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-8-in-which-we-discover-the-way-of-the-/4000-94006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98096/","id":98096,"name":"Fractured World: Episode Two","site_detail_url":"https://comicvine.gamespot.com/the-authority-11-fractured-world-episode-two/4000-98096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106248/","id":106248,"name":"Here Comes Tomorrow, Part 4: Rescue and Emergency","site_detail_url":"https://comicvine.gamespot.com/new-x-men-154-here-comes-tomorrow-part-4-rescue-an/4000-106248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98095/","id":98095,"name":"Fractured World: Episode One","site_detail_url":"https://comicvine.gamespot.com/the-authority-10-fractured-world-episode-one/4000-98095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138785/","id":138785,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tsubasa-reservoir-chronicle-1/4000-138785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315365/","id":315365,"name":"La carte d'Estrechez","site_detail_url":"https://comicvine.gamespot.com/dread-mac-farlane-1-la-carte-destrechez/4000-315365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94005/","id":94005,"name":"In Which Many Patterns May Be Discerned, By Those With Eyes To See Them...","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-7-in-which-many-patterns-may-be-discer/4000-94005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106247/","id":106247,"name":"Here Comes Tomorrow, Part 3: We All Have to Die Sometime","site_detail_url":"https://comicvine.gamespot.com/new-x-men-153-here-comes-tomorrow-part-3-we-all-ha/4000-106247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273801/","id":273801,"name":"Il pifferaio magico","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-210-il-pifferaio-magico/4000-273801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106246/","id":106246,"name":"Here Comes Tomorrow, Part 2: Surrender the Starlit City","site_detail_url":"https://comicvine.gamespot.com/new-x-men-152-here-comes-tomorrow-part-2-surrender/4000-106246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106245/","id":106245,"name":"Here Comes Tomorrow, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-151-here-comes-tomorrow-part-1/4000-106245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124679/","id":124679,"name":"Entry!","site_detail_url":"https://comicvine.gamespot.com/thanos-5-entry/4000-124679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94004/","id":94004,"name":"Alarums And Excursions","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-6-alarums-and-excursions/4000-94004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91404/","id":91404,"name":"The Last Superman Story","site_detail_url":"https://comicvine.gamespot.com/superman-200-the-last-superman-story/4000-91404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114459/","id":114459,"name":"Planet X, Part 5: Phoenix Invictus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-150-planet-x-part-5-phoenix-invictus/4000-114459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94003/","id":94003,"name":"In Which A Treacherous Course Is Plotted","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-5-in-which-a-treacherous-course-is-plo/4000-94003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98093/","id":98093,"name":"Godhead: Episode Three","site_detail_url":"https://comicvine.gamespot.com/the-authority-8-godhead-episode-three/4000-98093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200100/","id":200100,"name":"Vol. 23","site_detail_url":"https://comicvine.gamespot.com/astro-boy-23-vol-23/4000-200100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300906/","id":300906,"name":"Vol. 5","site_detail_url":"https://comicvine.gamespot.com/the-authority-harsh-realities-1-vol-5/4000-300906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94002/","id":94002,"name":"In Which Much Is Explained And Things Do Not Always Work Out For The Best.","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-4-in-which-much-is-explained-and-thing/4000-94002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399832/","id":399832,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-complete-history-1-hcsc/4000-399832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200099/","id":200099,"name":"Vol. 22","site_detail_url":"https://comicvine.gamespot.com/astro-boy-22-vol-22/4000-200099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94001/","id":94001,"name":"In Which There Is Much To Be Learned And The Queen Is Given A Gift.","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-3-in-which-there-is-much-to-be-learned/4000-94001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200098/","id":200098,"name":"Vol. 21","site_detail_url":"https://comicvine.gamespot.com/astro-boy-21-vol-21/4000-200098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200097/","id":200097,"name":"Vol. 20","site_detail_url":"https://comicvine.gamespot.com/astro-boy-20-vol-20/4000-200097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277807/","id":277807,"name":"L'ultimo viaggio del Nautilus","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-8-lultimo-viaggio-del-nautilu/4000-277807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93999/","id":93999,"name":"In which we are Introduced to some of our Featured Players","site_detail_url":"https://comicvine.gamespot.com/1602-1-in-which-we-are-introduced-to-some-of-our-f/4000-93999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94000/","id":94000,"name":"In Which Things Begin To Change...","site_detail_url":"https://comicvine.gamespot.com/marvel-1602-2-in-which-things-begin-to-change/4000-94000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91416/","id":91416,"name":"\"You Should See Me Dance The Polka...\"","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-6-you-should/4000-91416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200096/","id":200096,"name":"Vol. 19","site_detail_url":"https://comicvine.gamespot.com/astro-boy-19-vol-19/4000-200096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98089/","id":98089,"name":"Reality Incorporated Episode Four","site_detail_url":"https://comicvine.gamespot.com/the-authority-4-reality-incorporated-episode-four/4000-98089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92581/","id":92581,"name":"How Tom Stone Got Started: Chapter Two - Strongmen In Silvertime","site_detail_url":"https://comicvine.gamespot.com/tom-strong-21-how-tom-stone-got-started-chapter-tw/4000-92581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358687/","id":358687,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/mythology-the-dc-comics-art-of-alex-ross-1-hc/4000-358687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200095/","id":200095,"name":"Vol. 18","site_detail_url":"https://comicvine.gamespot.com/astro-boy-18-vol-18/4000-200095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98087/","id":98087,"name":"Reality Incorporated Episode Two","site_detail_url":"https://comicvine.gamespot.com/the-authority-2-reality-incorporated-episode-two/4000-98087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157766/","id":157766,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-team-achilles-12/4000-157766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157770/","id":157770,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-team-achilles-13/4000-157770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91415/","id":91415,"name":"Red in Tooth And Claw","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-5-red-in-too/4000-91415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105588/","id":105588,"name":"Many Worlds of Tesla Strong","site_detail_url":"https://comicvine.gamespot.com/many-worlds-of-tesla-strong-1-many-worlds-of-tesla/4000-105588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200093/","id":200093,"name":"Vol. 16","site_detail_url":"https://comicvine.gamespot.com/astro-boy-16-vol-16/4000-200093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200094/","id":200094,"name":"Vol. 17","site_detail_url":"https://comicvine.gamespot.com/astro-boy-17-vol-17/4000-200094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200092/","id":200092,"name":"Vol. 15","site_detail_url":"https://comicvine.gamespot.com/astro-boy-15-vol-15/4000-200092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98085/","id":98085,"name":"High Stakes","site_detail_url":"https://comicvine.gamespot.com/the-authority-0-high-stakes/4000-98085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200833/","id":200833,"name":"Episode Five: I Robot, U Suck!","site_detail_url":"https://comicvine.gamespot.com/forever-maelstrom-5-episode-five-i-robot-u-suck/4000-200833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200091/","id":200091,"name":"Vol. 14","site_detail_url":"https://comicvine.gamespot.com/astro-boy-14-vol-14/4000-200091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591704/","id":591704,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/supreme-the-return-1-tpb/4000-591704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106016/","id":106016,"name":"All Creatures Great and Small","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-4-all-creatu/4000-106016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200090/","id":200090,"name":"Vol. 13","site_detail_url":"https://comicvine.gamespot.com/astro-boy-13-vol-13/4000-200090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200089/","id":200089,"name":"Vol. 12","site_detail_url":"https://comicvine.gamespot.com/astro-boy-12-vol-12/4000-200089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98119/","id":98119,"name":"Suspicion Threshold","site_detail_url":"https://comicvine.gamespot.com/wildcats-version-30-8-suspicion-threshold/4000-98119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200087/","id":200087,"name":"Vol. 11","site_detail_url":"https://comicvine.gamespot.com/astro-boy-11-vol-11/4000-200087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259470/","id":259470,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-1-tpb/4000-259470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301843/","id":301843,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/americas-best-comics-1-tpb/4000-301843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384677/","id":384677,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-ultimate-guide-to-the-amazon-prin/4000-384677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300723/","id":300723,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/just-imagine-stan-lee-creating-the-dc-universe-2-b/4000-300723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200088/","id":200088,"name":"Vol. 10","site_detail_url":"https://comicvine.gamespot.com/astro-boy-10-vol-10/4000-200088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510731/","id":510731,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-simpsons-beyond-forever-a-complete-guide-to-ou/4000-510731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123314/","id":123314,"name":"Liquid Diamond Is Forever!","site_detail_url":"https://comicvine.gamespot.com/futurama-simpsons-infinitely-secret-crossover-cris/4000-123314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200086/","id":200086,"name":"Vol. 9","site_detail_url":"https://comicvine.gamespot.com/astro-boy-9-vol-9/4000-200086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106015/","id":106015,"name":"And the Dawn Comes Up Like Thuder","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-3-and-the-da/4000-106015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200085/","id":200085,"name":"Vol. 8","site_detail_url":"https://comicvine.gamespot.com/astro-boy-8-vol-8/4000-200085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250724/","id":250724,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/absolute-authority-1-vol-1/4000-250724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106014/","id":106014,"name":"People of Other Lands","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-2-people-of-/4000-106014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119786/","id":119786,"name":"Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/star-wars-infinities-the-empire-strikes-back-4-par/4000-119786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277060/","id":277060,"name":"Le due nemiche","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-7-le-due-nemiche/4000-277060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200084/","id":200084,"name":"Vol. 7","site_detail_url":"https://comicvine.gamespot.com/astro-boy-7-vol-7/4000-200084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200083/","id":200083,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/astro-boy-6-vol-6/4000-200083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106013/","id":106013,"name":"Phases of Deimos","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-1-phases-of-/4000-106013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119785/","id":119785,"name":"Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/star-wars-infinities-the-empire-strikes-back-3-par/4000-119785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140325/","id":140325,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-1-volume-1/4000-140325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120013/","id":120013,"name":"Somewhere Over the Brain-Bow","site_detail_url":"https://comicvine.gamespot.com/futurama-simpsons-infinitely-secret-crossover-cris/4000-120013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119784/","id":119784,"name":"Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/star-wars-infinities-the-empire-strikes-back-2-par/4000-119784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200082/","id":200082,"name":"Vol. 5","site_detail_url":"https://comicvine.gamespot.com/astro-boy-5-vol-5/4000-200082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119754/","id":119754,"name":"Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/star-wars-infinities-the-empire-strikes-back-1-par/4000-119754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70735/","id":70735,"name":"DK2","site_detail_url":"https://comicvine.gamespot.com/the-dark-knight-strikes-again-3-dk2/4000-70735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200081/","id":200081,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/astro-boy-4-vol-4/4000-200081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200080/","id":200080,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/astro-boy-3-vol-3/4000-200080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200079/","id":200079,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/astro-boy-2-vol-2/4000-200079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158887/","id":158887,"name":"Book 12: The Idiot's Guide to the Death of the World, Part 3 of 3: Reweaving","site_detail_url":"https://comicvine.gamespot.com/the-monarchy-12-book-12-the-idiot-s-guide-to-the-d/4000-158887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78167/","id":78167,"name":"Enemy of the State II, Part 1 - Mirror","site_detail_url":"https://comicvine.gamespot.com/black-panther-41-enemy-of-the-state-ii-part-1-mirr/4000-78167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200078/","id":200078,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/astro-boy-1-vol-1/4000-200078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158886/","id":158886,"name":"Book 11: The Idiot's Guide to the Death of the World, Part 2 of 3: Bellerophon","site_detail_url":"https://comicvine.gamespot.com/the-monarchy-11-book-11-the-idiot-s-guide-to-the-d/4000-158886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158885/","id":158885,"name":"Book 10: The Idiot's Guide to the Death of the World, Part 1 of 3: Angels and Insects","site_detail_url":"https://comicvine.gamespot.com/the-monarchy-10-book-10-the-idiot-s-guide-to-the-d/4000-158885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97108/","id":97108,"name":"","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-104/4000-97108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184072/","id":184072,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-strikes-again-1-tpbhc/4000-184072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336866/","id":336866,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mr-majestic-1-tpb/4000-336866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50821/","id":50821,"name":"The Once & Future King, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-37-the-once-future-king-part-2-of-2/4000-50821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97107/","id":97107,"name":"Quantum Leap","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-103-quantum-leap/4000-97107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70734/","id":70734,"name":"DK2","site_detail_url":"https://comicvine.gamespot.com/the-dark-knight-strikes-again-2-dk2/4000-70734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52120/","id":52120,"name":"Dark Victory","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-49-dark-victory/4000-52120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52119/","id":52119,"name":"World's Apart","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-48-worlds-apart/4000-52119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50820/","id":50820,"name":"The Once & Future King, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-36-the-once-future-king-part-1-of-2/4000-50820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70733/","id":70733,"name":"DK2","site_detail_url":"https://comicvine.gamespot.com/the-dark-knight-strikes-again-1-dk2/4000-70733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273361/","id":273361,"name":"Safarà","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-182-safara/4000-273361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277058/","id":277058,"name":"La grande minaccia","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-6-la-grande-minaccia/4000-277058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52118/","id":52118,"name":"Just Imagine...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-47-just-imagine/4000-52118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336136/","id":336136,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-el-regreso-del-senor-de-la-noche-1/4000-336136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53486/","id":53486,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-91-rapture/4000-53486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316780/","id":316780,"name":"L'Isola delle Ombre","site_detail_url":"https://comicvine.gamespot.com/zagor-434-lisola-delle-ombre/4000-316780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316778/","id":316778,"name":"Gli eroi del Ramo Rosso","site_detail_url":"https://comicvine.gamespot.com/zagor-433-gli-eroi-del-ramo-rosso/4000-316778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51888/","id":51888,"name":"Dark Tomorrow, Part 3","site_detail_url":"https://comicvine.gamespot.com/impulse-75-dark-tomorrow-part-3/4000-51888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51887/","id":51887,"name":"Dark Tomorrow, Part 2","site_detail_url":"https://comicvine.gamespot.com/impulse-74-dark-tomorrow-part-2/4000-51887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51886/","id":51886,"name":"Dark Tomorrow, Part 1","site_detail_url":"https://comicvine.gamespot.com/impulse-73-dark-tomorrow-part-1/4000-51886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276428/","id":276428,"name":"Infiniti universi","site_detail_url":"https://comicvine.gamespot.com/nathan-never-120-infiniti-universi/4000-276428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158870/","id":158870,"name":"Book One: Red Shift","site_detail_url":"https://comicvine.gamespot.com/the-monarchy-1-book-one-red-shift/4000-158870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78290/","id":78290,"name":"World Without Batman","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-adventures-33-world-without-batman/4000-78290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53639/","id":53639,"name":"All Tomorrow's Parties","site_detail_url":"https://comicvine.gamespot.com/the-authority-21-all-tomorrows-parties/4000-53639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51405/","id":51405,"name":"Wonderland, Chapter Four: Joining the Tea Party","site_detail_url":"https://comicvine.gamespot.com/the-flash-167-wonderland-chapter-four-joining-the-/4000-51405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177216/","id":177216,"name":"War Movie","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-8-war-movie/4000-177216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51404/","id":51404,"name":"Wonderland, Chapter Three: The Broken Looking Glass","site_detail_url":"https://comicvine.gamespot.com/the-flash-166-wonderland-chapter-three-the-broken-/4000-51404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64481/","id":64481,"name":"The Siege of Dreadkeep","site_detail_url":"https://comicvine.gamespot.com/avataars-covenant-of-the-shield-3-the-siege-of-dre/4000-64481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177215/","id":177215,"name":"The Other Side of This Life","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-7-the-other-side-of-this-life/4000-177215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281363/","id":281363,"name":"L’esercito del Male","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-gigante-9-lesercito-del-male/4000-281363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53637/","id":53637,"name":"Earth Inferno, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-authority-19-earth-inferno-part-3/4000-53637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113531/","id":113531,"name":"The Reign of Emperor Joker, Part Five: He Who Laughs Last!","site_detail_url":"https://comicvine.gamespot.com/action-comics-770-the-reign-of-emperor-joker-part-/4000-113531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121999/","id":121999,"name":"The Reign of Emperor Joker, Part 1 of 5: It's a Joker World, Baby, We Just Live In It!; Emperor Joker: Method to the Madness","site_detail_url":"https://comicvine.gamespot.com/superman-emperor-joker-1-the-reign-of-emperor-joke/4000-121999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51403/","id":51403,"name":"Wonderland, Chapter Two: The Lightning Rod","site_detail_url":"https://comicvine.gamespot.com/the-flash-165-wonderland-chapter-two-the-lightning/4000-51403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64480/","id":64480,"name":"Wild Kingdoms","site_detail_url":"https://comicvine.gamespot.com/avataars-covenant-of-the-shield-2-wild-kingdoms/4000-64480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118451/","id":118451,"name":"The Reign of Emperor Joker, Part 3 of 5: Life is But a (Very Bad) Dream","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-583-the-reign-of-emperor-jo/4000-118451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113910/","id":113910,"name":"The Reign of Emperor Joker, Part 2 of 5: You Say You Want a Revolution?","site_detail_url":"https://comicvine.gamespot.com/superman-161-the-reign-of-emperor-joker-part-2-of-/4000-113910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115057/","id":115057,"name":"The Reign of Emperor Joker Part 4: All the World His Stage","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-105-the-reign-of-emperor/4000-115057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177214/","id":177214,"name":"The Last Wall of the Castle","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-6-the-last-wall-of-the-castle/4000-177214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210039/","id":210039,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-batman-the-dark-knight-returns-/4000-210039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114516/","id":114516,"name":"Superman Arkham Part 4: SupermanamrepuS","site_detail_url":"https://comicvine.gamespot.com/action-comics-769-superman-arkham-part-4-supermana/4000-114516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51402/","id":51402,"name":"Wonderland, Chapter One: Lightning in a Bottle","site_detail_url":"https://comicvine.gamespot.com/the-flash-164-wonderland-chapter-one-lightning-in-/4000-51402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177213/","id":177213,"name":"When the Earth Moves Again","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-5-when-the-earth-moves-again/4000-177213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307361/","id":307361,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/stormwatch-a-finer-world-1-volume-4/4000-307361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64479/","id":64479,"name":"The Realms of Earth","site_detail_url":"https://comicvine.gamespot.com/avataars-covenant-of-the-shield-1-the-realms-of-ea/4000-64479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46900/","id":46900,"name":"The Day Of Be-With-Us.","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-6-the-day-of/4000-46900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115275/","id":115275,"name":"Superman Arkham Part 3: No Axioms","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-104-superman-arkham-part/4000-115275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118417/","id":118417,"name":"Superman Arkham Part 2: Crazy About You","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-582-superman-arkham-part-2-/4000-118417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118928/","id":118928,"name":"Superman Arkham Part 1: It's a Mad, Mad, Mad World !","site_detail_url":"https://comicvine.gamespot.com/superman-160-superman-arkham-part-1-its-a-mad-mad-/4000-118928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177212/","id":177212,"name":"Hide Witch Hide","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-4-hide-witch-hide/4000-177212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140334/","id":140334,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-archives-6-volume-6/4000-140334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112456/","id":112456,"name":"Merlin Stone, Part 2","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-6-merlin-stone-part-2/4000-112456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177211/","id":177211,"name":"Dead Center -- Deep as Death","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-3-dead-center-deep-as-death/4000-177211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46899/","id":46899,"name":"Some Deep, Organizing Power...","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-5-some-deep-/4000-46899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177210/","id":177210,"name":"From Here to Heaven is a Scar","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-2-from-here-to-heaven-is-a-scar/4000-177210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115317/","id":115317,"name":"Best of Times, Worst of Times","site_detail_url":"https://comicvine.gamespot.com/sonic-super-special-14-best-of-times-worst-of-time/4000-115317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177209/","id":177209,"name":"A Spear of Silence","site_detail_url":"https://comicvine.gamespot.com/creature-commandos-1-a-spear-of-silence/4000-177209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46333/","id":46333,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-4/4000-46333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279978/","id":279978,"name":"Dietro la maschera","site_detail_url":"https://comicvine.gamespot.com/speciale-legs-weaver-5-dietro-la-maschera/4000-279978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233095/","id":233095,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-all-of-me-1/4000-233095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46868/","id":46868,"name":"Sons and Heirs, Showdown in the Shimmering City","site_detail_url":"https://comicvine.gamespot.com/tom-strong-7-sons-and-heirs-showdown-in-the-shimme/4000-46868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46307/","id":46307,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-3/4000-46307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65145/","id":65145,"name":"First & Last: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-378-first-last-part-1/4000-65145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65797/","id":65797,"name":"First & Last, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-98-first-last-part-2/4000-65797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51215/","id":51215,"name":"Ages of Apocalypse - Same As It Never Was","site_detail_url":"https://comicvine.gamespot.com/wolverine-148-ages-of-apocalypse-same-as-it-never-/4000-51215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210041/","id":210041,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-crisis-on-infinite-earths-1-1/4000-210041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46231/","id":46231,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-1/4000-46231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203972/","id":203972,"name":"","site_detail_url":"https://comicvine.gamespot.com/earth-x-12/4000-203972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130801/","id":130801,"name":"The Three Worlds of Diana Dane","site_detail_url":"https://comicvine.gamespot.com/supreme-the-return-3-the-three-worlds-of-diana-dan/4000-130801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53626/","id":53626,"name":"Shiftships, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-authority-8-shiftships-part-4/4000-53626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53625/","id":53625,"name":"Shiftships, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-authority-7-shiftships-part-3/4000-53625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46898/","id":46898,"name":"Gods Of Annihilation","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-4-gods-of-an/4000-46898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53624/","id":53624,"name":"Shiftships, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-authority-6-shiftships-part-2/4000-53624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53623/","id":53623,"name":"Shiftships, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-authority-5-shiftships-part-1/4000-53623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46031/","id":46031,"name":"Part 2: Nemesis of Gotham","site_detail_url":"https://comicvine.gamespot.com/catwoman-guardian-of-gotham-2-part-2-nemesis-of-go/4000-46031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274258/","id":274258,"name":"Il numero cento","site_detail_url":"https://comicvine.gamespot.com/nathan-never-100-il-numero-cento/4000-274258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273333/","id":273333,"name":"Il gigante","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-156-il-gigante/4000-273333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293975/","id":293975,"name":"Con grandes poderes","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-16-con-grandes-poderes/4000-293975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153171/","id":153171,"name":"Wild Times: Gen13","site_detail_url":"https://comicvine.gamespot.com/wild-times-gen-13-1-wild-times-gen13/4000-153171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167616/","id":167616,"name":"The One Million Universe at a Glance","site_detail_url":"https://comicvine.gamespot.com/dc-one-million-80-page-giant-1000000-the-one-milli/4000-167616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157946/","id":157946,"name":"Still Waters Run Deep","site_detail_url":"https://comicvine.gamespot.com/wild-times-wetworks-1-still-waters-run-deep/4000-157946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45985/","id":45985,"name":"Part 1: Guardian of Gotham","site_detail_url":"https://comicvine.gamespot.com/catwoman-guardian-of-gotham-1-part-1-guardian-of-g/4000-45985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157945/","id":157945,"name":"D-Day!","site_detail_url":"https://comicvine.gamespot.com/wild-times-dv8-1-d-day/4000-157945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46864/","id":46864,"name":"Aztech Nights","site_detail_url":"https://comicvine.gamespot.com/tom-strong-3-aztech-nights/4000-46864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51391/","id":51391,"name":"Chain Lightning, Finale: Finish Line","site_detail_url":"https://comicvine.gamespot.com/the-flash-150-chain-lightning-finale-finish-line/4000-51391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46897/","id":46897,"name":"Mysteries Of The East","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-3-mysteries-/4000-46897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46896/","id":46896,"name":"Ghosts & Miracles","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-2-ghosts-mir/4000-46896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46895/","id":46895,"name":"Empire Dreams","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-1-empire-dre/4000-46895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113427/","id":113427,"name":"Mighty Rivers","site_detail_url":"https://comicvine.gamespot.com/the-kingdom-2-mighty-rivers/4000-113427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45659/","id":45659,"name":"All In The Family","site_detail_url":"https://comicvine.gamespot.com/jlatitans-3-all-in-the-family/4000-45659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265301/","id":265301,"name":"All along the Watchtower","site_detail_url":"https://comicvine.gamespot.com/wisp-1-all-along-the-watchtower/4000-265301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45597/","id":45597,"name":"The Generation Gap","site_detail_url":"https://comicvine.gamespot.com/jlatitans-2-the-generation-gap/4000-45597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151666/","id":151666,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-1-tpb/4000-151666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249043/","id":249043,"name":"","site_detail_url":"https://comicvine.gamespot.com/earth-x-sketchbook-1/4000-249043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73263/","id":73263,"name":"The Power of Thunder!","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-110-the-power-of-thunder/4000-73263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45510/","id":45510,"name":"One of Ours","site_detail_url":"https://comicvine.gamespot.com/jlatitans-1-one-of-ours/4000-45510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281375/","id":281375,"name":"Il potere di Iside","site_detail_url":"https://comicvine.gamespot.com/legs-e-le-paladine-1-il-potere-di-iside/4000-281375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168505/","id":168505,"name":"Come Together","site_detail_url":"https://comicvine.gamespot.com/legionnaires-1000000-come-together/4000-168505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84586/","id":84586,"name":"1,000 Years Later","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-1000000-1-000-years-later/4000-84586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108916/","id":108916,"name":"","site_detail_url":"https://comicvine.gamespot.com/timeslip-the-collection-1/4000-108916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66407/","id":66407,"name":"Tying the Knot","site_detail_url":"https://comicvine.gamespot.com/excalibur-125-tying-the-knot/4000-66407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115239/","id":115239,"name":"Parallel Paradigm","site_detail_url":"https://comicvine.gamespot.com/sonic-super-special-7-parallel-paradigm/4000-115239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116061/","id":116061,"name":"Waves of Deception : The Dominus Effect!","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-561-waves-of-deception-the-/4000-116061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114886/","id":114886,"name":"The Killer of Time","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-83-the-killer-of-time/4000-114886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117972/","id":117972,"name":"Dominus","site_detail_url":"https://comicvine.gamespot.com/superman-138-dominus/4000-117972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115180/","id":115180,"name":"Chasing the Ancient of Days","site_detail_url":"https://comicvine.gamespot.com/action-comics-748-chasing-the-ancient-of-days/4000-115180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281902/","id":281902,"name":"La maledizione del Sahara","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-gigante-4-la-maledizione-del-sahara/4000-281902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120478/","id":120478,"name":"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-jla-1/4000-120478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120370/","id":120370,"name":"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-powergirl-1/4000-120370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120476/","id":120476,"name":"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-wonder-woman-1/4000-120476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115920/","id":115920,"name":"The Super-Rivalry That Rocked Metropolis!","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-560-the-super-rivalry-that-/4000-115920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-607037/","id":607037,"name":"Caccia al Ragno!","site_detail_url":"https://comicvine.gamespot.com/rat-man-collection-7-caccia-al-ragno/4000-607037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45149/","id":45149,"name":"Bleed, Part. 3","site_detail_url":"https://comicvine.gamespot.com/stormwatch-9-bleed-part-3/4000-45149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73258/","id":73258,"name":"Time Won't Let Me","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-105-time-wont-let-me/4000-73258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168503/","id":168503,"name":"If I Could Turn Back Time...","site_detail_url":"https://comicvine.gamespot.com/legionnaires-61-if-i-could-turn-back-time/4000-168503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45068/","id":45068,"name":"Bleed, Part. 2","site_detail_url":"https://comicvine.gamespot.com/stormwatch-8-bleed-part-2/4000-45068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303967/","id":303967,"name":"Rock of Ages","site_detail_url":"https://comicvine.gamespot.com/jla-rock-of-ages-1-rock-of-ages/4000-303967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-607036/","id":607036,"name":"L'Ira di Cover-Man!","site_detail_url":"https://comicvine.gamespot.com/rat-man-collection-6-lira-di-cover-man/4000-607036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44983/","id":44983,"name":"Bleed: Part 1","site_detail_url":"https://comicvine.gamespot.com/stormwatch-7-bleed-part-1/4000-44983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170630/","id":170630,"name":"La Tela Strappata!","site_detail_url":"https://comicvine.gamespot.com/rat-man-collection-5-la-tela-strappata/4000-170630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153329/","id":153329,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/adventures-in-the-dc-universe-11-no-exit/4000-153329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124222/","id":124222,"name":"Love Is All That Anti-Matters, Part II: The Deadliest of the Species","site_detail_url":"https://comicvine.gamespot.com/superboy-and-the-ravers-18-love-is-all-that-anti-m/4000-124222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44392/","id":44392,"name":"The Judgment","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-the-return-1-the-judgment/4000-44392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152730/","id":152730,"name":"Kingdom Come","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-1-kingdom-come/4000-152730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468802/","id":468802,"name":"Father's Day is Every Day","site_detail_url":"https://comicvine.gamespot.com/spider-man-fathers-day-is-every-day-1-fathers-day-/4000-468802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412881/","id":412881,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-simpsons-complete-guide-1/4000-412881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120454/","id":120454,"name":"Truth","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-the-atom-1-truth/4000-120454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120435/","id":120435,"name":"\"From Beyond The Unknown\"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-green-lantern-1-from-beyond-the-unk/4000-120435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400532/","id":400532,"name":null,"site_detail_url":"https://comicvine.gamespot.com/elfquest-kings-cross-2/4000-400532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168496/","id":168496,"name":"A Golden Age","site_detail_url":"https://comicvine.gamespot.com/legionnaires-54-a-golden-age/4000-168496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400531/","id":400531,"name":null,"site_detail_url":"https://comicvine.gamespot.com/elfquest-kings-cross-1/4000-400531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159158/","id":159158,"name":"Crime Machine","site_detail_url":"https://comicvine.gamespot.com/jlawildcats-1-crime-machine/4000-159158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43886/","id":43886,"name":"What If Starring Bishop The Man From the Future!","site_detail_url":"https://comicvine.gamespot.com/what-if--1-what-if-starring-bishop-the-man-from-th/4000-43886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111183/","id":111183,"name":"","site_detail_url":"https://comicvine.gamespot.com/challengers-of-the-fantastic-1/4000-111183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107852/","id":107852,"name":"Devil's Reign - Chapter Eight: The Finale","site_detail_url":"https://comicvine.gamespot.com/silver-surferweapon-zero-1-devils-reign-chapter-ei/4000-107852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120369/","id":120369,"name":"Prelude","site_detail_url":"https://comicvine.gamespot.com/devils-reign-12-silver-surferwitchblade-12-prelude/4000-120369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263390/","id":263390,"name":"Il libro nero (Magic Patrol) & Il picco della morte (La stirpe di Elän)","site_detail_url":"https://comicvine.gamespot.com/zona-x-21-il-libro-nero-magic-patrol-il-picco-dell/4000-263390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107845/","id":107845,"name":"Devil's Reign - Chapter Six","site_detail_url":"https://comicvine.gamespot.com/witchbladeelektra-1-devils-reign-chapter-six/4000-107845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107851/","id":107851,"name":"Devil's Reign - Chapter Seven: Fear and Loathing","site_detail_url":"https://comicvine.gamespot.com/elektra-cyblade-1-devils-reign-chapter-seven-fear-/4000-107851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107844/","id":107844,"name":"Devil's Reign - Chapter Five","site_detail_url":"https://comicvine.gamespot.com/wolverinewitchblade-1-devils-reign-chapter-five/4000-107844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170638/","id":170638,"name":"Deadly Secrets","site_detail_url":"https://comicvine.gamespot.com/sliders-special-3-deadly-secrets/4000-170638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97051/","id":97051,"name":"","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-44/4000-97051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105396/","id":105396,"name":"The Big Chill","site_detail_url":"https://comicvine.gamespot.com/wildstorm-spotlight-1-the-big-chill/4000-105396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124974/","id":124974,"name":"Future Shock","site_detail_url":"https://comicvine.gamespot.com/ultraverse-future-shock-1-future-shock/4000-124974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107763/","id":107763,"name":"Devil's Reign: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/cyblade-ghost-rider-1-devils-reign-chapter-two/4000-107763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107892/","id":107892,"name":"Devil's Reign Interlude: Family Feuds","site_detail_url":"https://comicvine.gamespot.com/weapon-zero-10-devils-reign-interlude-family-feuds/4000-107892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107695/","id":107695,"name":"Devil's Reign Interlude","site_detail_url":"https://comicvine.gamespot.com/cyber-force-30-devils-reign-interlude/4000-107695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107762/","id":107762,"name":"Devil's Reign - Chapter Three: Kill Everyone We See","site_detail_url":"https://comicvine.gamespot.com/ghost-riderballistic-1-devils-reign-chapter-three-/4000-107762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107759/","id":107759,"name":"Devil's Reign - Chapter Four: When The Ball Drops","site_detail_url":"https://comicvine.gamespot.com/ballisticwolverine-1-devils-reign-chapter-four-whe/4000-107759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115228/","id":115228,"name":"The Last Game Cartridge Hero","site_detail_url":"https://comicvine.gamespot.com/sonic-live-1-the-last-game-cartridge-hero/4000-115228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175633/","id":175633,"name":"Eye For An Eye","site_detail_url":"https://comicvine.gamespot.com/daredevilbatman-1-eye-for-an-eye/4000-175633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107765/","id":107765,"name":"Devil's Reign Chapter 1","site_detail_url":"https://comicvine.gamespot.com/weapon-zerosilver-surfer-1-devils-reign-chapter-1/4000-107765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170636/","id":170636,"name":"Blood & Splendor","site_detail_url":"https://comicvine.gamespot.com/sliders-special-2-blood-splendor/4000-170636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273683/","id":273683,"name":"A Turma Aumenta!","site_detail_url":"https://comicvine.gamespot.com/novas-aventuras-de-megaman-7-a-turma-aumenta/4000-273683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105728/","id":105728,"name":"Sins Of The Father","site_detail_url":"https://comicvine.gamespot.com/x-man-annual-96-1-sins-of-the-father/4000-105728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43120/","id":43120,"name":"Ticking Clock","site_detail_url":"https://comicvine.gamespot.com/sliders-darkest-hour-3-ticking-clock/4000-43120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170637/","id":170637,"name":"Narcotika","site_detail_url":"https://comicvine.gamespot.com/sliders-special-1-narcotika/4000-170637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43017/","id":43017,"name":"Dimensional Shadows","site_detail_url":"https://comicvine.gamespot.com/sliders-darkest-hour-2-dimensional-shadows/4000-43017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42918/","id":42918,"name":"Fissions of the Soul","site_detail_url":"https://comicvine.gamespot.com/sliders-darkest-hour-1-fissions-of-the-soul/4000-42918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42748/","id":42748,"name":"After the 'Fact', Part Four: We Are All UFOs","site_detail_url":"https://comicvine.gamespot.com/flex-mentallo-4-after-the-fact-part-four-we-are-al/4000-42748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42830/","id":42830,"name":"Damnation","site_detail_url":"https://comicvine.gamespot.com/sliders-ultimatum-2-damnation/4000-42830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42649/","id":42649,"name":"Never-Ending Battle","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-4-never-ending-battle/4000-42649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42731/","id":42731,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/sliders-ultimatum-1-rapture/4000-42731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42547/","id":42547,"name":"Up in the Sky","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-3-up-in-the-sky/4000-42547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42554/","id":42554,"name":"","site_detail_url":"https://comicvine.gamespot.com/sliders-2/4000-42554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42446/","id":42446,"name":"Truth and Justice","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-2-truth-and-justice/4000-42446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42448/","id":42448,"name":"","site_detail_url":"https://comicvine.gamespot.com/sliders-1/4000-42448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42327/","id":42327,"name":"For Every Action...","site_detail_url":"https://comicvine.gamespot.com/cable-30-for-every-action/4000-42327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232780/","id":232780,"name":"X-Men: Dawn of the Age of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/x-men-dawn-of-the-age-of-apocalypse-1-x-men-dawn-o/4000-232780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-61247/","id":61247,"name":"Fire From Heaven; Prelude 1","site_detail_url":"https://comicvine.gamespot.com/sword-of-damocles-1-fire-from-heaven-prelude-1/4000-61247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157992/","id":157992,"name":"Fire From Heaven Prelude 2 of 3","site_detail_url":"https://comicvine.gamespot.com/sigma-1-fire-from-heaven-prelude-2-of-3/4000-157992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42115/","id":42115,"name":"Tick...Tick...Tick!","site_detail_url":"https://comicvine.gamespot.com/cable-28-tickticktick/4000-42115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168580/","id":168580,"name":"The Long Road Home","site_detail_url":"https://comicvine.gamespot.com/legionnaires-annual-3-the-long-road-home/4000-168580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169340/","id":169340,"name":"One Shot","site_detail_url":"https://comicvine.gamespot.com/the-legion-of-super-heroes-annual-7-one-shot/4000-169340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186291/","id":186291,"name":"Legends of the dead Earth: The League of Supermen","site_detail_url":"https://comicvine.gamespot.com/superman-annual-8-legends-of-the-dead-earth-the-le/4000-186291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384477/","id":384477,"name":"HC/SC TPB","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-returns-tenth-anniversary-e/4000-384477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381048/","id":381048,"name":"Movies & TV Specials","site_detail_url":"https://comicvine.gamespot.com/daizenshuu-6-movies-tv-specials/4000-381048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233129/","id":233129,"name":"No Time Like The Present; The Nagus's New Clothes; Small Victory","site_detail_url":"https://comicvine.gamespot.com/star-trek-deep-space-nine-ultimate-annual-1-no-tim/4000-233129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41775/","id":41775,"name":"\"...What If The Hulk got himself cured?\"","site_detail_url":"https://comicvine.gamespot.com/what-if-80-what-if-the-hulk-got-himself-cured/4000-41775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107457/","id":107457,"name":"What's A Hero Anyway?","site_detail_url":"https://comicvine.gamespot.com/prime-infinity-what-s-a-hero-anyway/4000-107457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41318/","id":41318,"name":"Book 1: Men on Fire","site_detail_url":"https://comicvine.gamespot.com/ruins-1-book-1-men-on-fire/4000-41318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395218/","id":395218,"name":"Astonishing X-Men Age of Apocalypse Ultimate Edition","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1-astonishing-x-men-age-of-apoca/4000-395218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106333/","id":106333,"name":"Racing the Night","site_detail_url":"https://comicvine.gamespot.com/x-men-prime-1-racing-the-night/4000-106333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41089/","id":41089,"name":"Darker Genesis: Chapter Five of River Run","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-156-darker-genesis-chapter-five-of-riv/4000-41089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41119/","id":41119,"name":"What if Blink of Generation X had Not Died?","site_detail_url":"https://comicvine.gamespot.com/what-if-75-what-if-blink-of-generation-x-had-not-d/4000-41119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158027/","id":158027,"name":"Sidetracked","site_detail_url":"https://comicvine.gamespot.com/union-6-sidetracked/4000-158027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97031/","id":97031,"name":"Evil Sonic Is Back","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-24-evil-sonic-is-back/4000-97031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40953/","id":40953,"name":"The Secret of Slaughter Swamp: Chapter Four of River Run","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-155-the-secret-of-slaughter-swamp-chap/4000-40953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40984/","id":40984,"name":"X-Calibre, Part 4: On Fire","site_detail_url":"https://comicvine.gamespot.com/x-calibre-4-x-calibre-part-4-on-fire/4000-40984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40976/","id":40976,"name":"The Maze","site_detail_url":"https://comicvine.gamespot.com/gambit-the-x-ternals-4-the-maze/4000-40976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40985/","id":40985,"name":"The Art of War","site_detail_url":"https://comicvine.gamespot.com/x-man-4-the-art-of-war/4000-40985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158026/","id":158026,"name":"Sideways","site_detail_url":"https://comicvine.gamespot.com/union-5-sideways/4000-158026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105648/","id":105648,"name":"Shattered Dreams","site_detail_url":"https://comicvine.gamespot.com/x-men-chronicles-2-shattered-dreams/4000-105648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40973/","id":40973,"name":"Reckonings","site_detail_url":"https://comicvine.gamespot.com/factor-x-4-reckonings/4000-40973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40982/","id":40982,"name":"Into the Maelstrom","site_detail_url":"https://comicvine.gamespot.com/weapon-x-4-into-the-maelstrom/4000-40982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40968/","id":40968,"name":"Holocaust!","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-4-holocaust/4000-40968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40988/","id":40988,"name":"Dying Breath","site_detail_url":"https://comicvine.gamespot.com/x-universe-2-dying-breath/4000-40988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40967/","id":40967,"name":"Dare to Tread on Consecrated Ground","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-4-dare-to-tread-on-consecrated-groun/4000-40967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40977/","id":40977,"name":"Bye","site_detail_url":"https://comicvine.gamespot.com/generation-next-4-bye/4000-40977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105975/","id":105975,"name":"...Endings","site_detail_url":"https://comicvine.gamespot.com/x-men-omega-1-endings/4000-105975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131440/","id":131440,"name":"The Bad Seed: Chapter Three of River Run","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-154-the-bad-seed-chapter-three-of-rive/4000-131440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40862/","id":40862,"name":"Turning Point","site_detail_url":"https://comicvine.gamespot.com/x-man-3-turning-point/4000-40862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40852/","id":40852,"name":"To The Limits Of Infinity","site_detail_url":"https://comicvine.gamespot.com/gambit-the-x-ternals-3-to-the-limits-of-infinity/4000-40852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40859/","id":40859,"name":"The common right of toads and men","site_detail_url":"https://comicvine.gamespot.com/weapon-x-3-the-common-right-of-toads-and-men/4000-40859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40844/","id":40844,"name":"Parents of the Atom","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-3-parents-of-the-atom/4000-40844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40850/","id":40850,"name":"Open Wounds","site_detail_url":"https://comicvine.gamespot.com/factor-x-3-open-wounds/4000-40850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40864/","id":40864,"name":"Last Stand","site_detail_url":"https://comicvine.gamespot.com/x-universe-1-last-stand/4000-40864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40853/","id":40853,"name":"It Only Hurts When I Sing","site_detail_url":"https://comicvine.gamespot.com/generation-next-3-it-only-hurts-when-i-sing/4000-40853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40845/","id":40845,"name":"In Excess","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-3-in-excess/4000-40845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40861/","id":40861,"name":"Body Heat","site_detail_url":"https://comicvine.gamespot.com/x-calibre-3-body-heat/4000-40861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40699/","id":40699,"name":"Twilight of the Gods: Chapter Two of River Run","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-153-twilight-of-the-gods-chapter-two-o/4000-40699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40735/","id":40735,"name":"X-Calibre, Part 2: Burn","site_detail_url":"https://comicvine.gamespot.com/x-calibre-2-x-calibre-part-2-burn/4000-40735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40728/","id":40728,"name":"Where No External Has Gone Before!","site_detail_url":"https://comicvine.gamespot.com/gambit-the-x-ternals-2-where-no-external-has-gone-/4000-40728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105543/","id":105543,"name":"Sacrificial Lambs","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-2-sacrificial-lambs/4000-105543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40720/","id":40720,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-2-no-exit/4000-40720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40729/","id":40729,"name":"Hither Comes The Sugar Man","site_detail_url":"https://comicvine.gamespot.com/generation-next-2-hither-comes-the-sugar-man/4000-40729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40733/","id":40733,"name":"Fire In The Sky!","site_detail_url":"https://comicvine.gamespot.com/weapon-x-2-fire-in-the-sky/4000-40733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40736/","id":40736,"name":"Choosing Sides","site_detail_url":"https://comicvine.gamespot.com/x-man-2-choosing-sides/4000-40736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40726/","id":40726,"name":"Abandoned Children","site_detail_url":"https://comicvine.gamespot.com/factor-x-2-abandoned-children/4000-40726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40564/","id":40564,"name":"City of the Dead: Chapter One of River Run","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-152-city-of-the-dead-chapter-one-of-ri/4000-40564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40598/","id":40598,"name":"Unforgiven Trespasses","site_detail_url":"https://comicvine.gamespot.com/weapon-x-1-unforgiven-trespasses/4000-40598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40600/","id":40600,"name":"The Infernal Gallop","site_detail_url":"https://comicvine.gamespot.com/x-calibre-1-the-infernal-gallop/4000-40600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40581/","id":40581,"name":"The Crossing Guards","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-1-the-crossing-guards/4000-40581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40588/","id":40588,"name":"Some Of Us Looking To The Stars","site_detail_url":"https://comicvine.gamespot.com/gambit-the-x-ternals-1-some-of-us-looking-to-the-s/4000-40588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40587/","id":40587,"name":"Sinister Neglect","site_detail_url":"https://comicvine.gamespot.com/factor-x-1-sinister-neglect/4000-40587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105613/","id":105613,"name":"Origins","site_detail_url":"https://comicvine.gamespot.com/x-men-chronicles-1-origins/4000-105613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40582/","id":40582,"name":"Once More, With Feeling","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1-once-more-with-feeling/4000-40582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40589/","id":40589,"name":"From The Top","site_detail_url":"https://comicvine.gamespot.com/generation-next-1-from-the-top/4000-40589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40601/","id":40601,"name":"Breaking Away","site_detail_url":"https://comicvine.gamespot.com/x-man-1-breaking-away/4000-40601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105731/","id":105731,"name":"Beginnings","site_detail_url":"https://comicvine.gamespot.com/x-men-alpha-1-beginnings/4000-105731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97026/","id":97026,"name":"Night of 1000 Sonics","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-19-night-of-1000-sonics/4000-97026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65742/","id":65742,"name":"Legion Quest Part 4: Dreams Die!","site_detail_url":"https://comicvine.gamespot.com/x-men-41-legion-quest-part-4-dreams-die/4000-65742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40487/","id":40487,"name":"Legion Quest Part 3: Auld Lang Syne","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-321-legion-quest-part-3-auld-lan/4000-40487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113944/","id":113944,"name":"Mindscape","site_detail_url":"https://comicvine.gamespot.com/superman-96-mindscape/4000-113944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453129/","id":453129,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-houdini-1/4000-453129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40294/","id":40294,"name":"Link 3","site_detail_url":"https://comicvine.gamespot.com/chains-of-chaos-3-link-3/4000-40294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65741/","id":65741,"name":"Legion Quest Part 2: The Killing Time","site_detail_url":"https://comicvine.gamespot.com/x-men-40-legion-quest-part-2-the-killing-time/4000-65741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40358/","id":40358,"name":"Legion Quest Part 1: The Son Rises In The East","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-320-legion-quest-part-1-the-son-/4000-40358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40045/","id":40045,"name":"Sins of the Father: Part Three - Mercy","site_detail_url":"https://comicvine.gamespot.com/starman-2-sins-of-the-father-part-three-mercy/4000-40045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40131/","id":40131,"name":"N.O. Future","site_detail_url":"https://comicvine.gamespot.com/anima-9-no-future/4000-40131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40052/","id":40052,"name":"Link 2","site_detail_url":"https://comicvine.gamespot.com/chains-of-chaos-2-link-2/4000-40052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39916/","id":39916,"name":"Link 1","site_detail_url":"https://comicvine.gamespot.com/chains-of-chaos-1-link-1/4000-39916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185349/","id":185349,"name":"I’d Rather Be-In 1963","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-14-id-rather-be-in-1963/4000-185349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121265/","id":121265,"name":"Criss Cross Crisis","site_detail_url":"https://comicvine.gamespot.com/big-bang-comics-3-criss-cross-crisis/4000-121265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39833/","id":39833,"name":"Claws Along The Mohawk","site_detail_url":"https://comicvine.gamespot.com/wolverine-86-claws-along-the-mohawk/4000-39833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39622/","id":39622,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-4-zero-hour/4000-39622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39711/","id":39711,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-0-zero-hour/4000-39711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39709/","id":39709,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-2-zero-hour/4000-39709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113131/","id":113131,"name":"Yesterdays Gone","site_detail_url":"https://comicvine.gamespot.com/detective-comics-678-yesterdays-gone/4000-113131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39595/","id":39595,"name":"The Night Before Zero","site_detail_url":"https://comicvine.gamespot.com/batman-511-the-night-before-zero/4000-39595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39593/","id":39593,"name":"The Hero of Metropolis","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-516-the-hero-of-metropolis/4000-39593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39697/","id":39697,"name":"The Battling Butler!","site_detail_url":"https://comicvine.gamespot.com/batman-shadow-of-the-bat-31-the-battling-butler/4000-39697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113931/","id":113931,"name":"Home!","site_detail_url":"https://comicvine.gamespot.com/superman-93-home/4000-113931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115770/","id":115770,"name":"Chronocide!","site_detail_url":"https://comicvine.gamespot.com/action-comics-703-chronocide/4000-115770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39549/","id":39549,"name":"Things That Go Bump in the Night!","site_detail_url":"https://comicvine.gamespot.com/wolverine-84-things-that-go-bump-in-the-night/4000-39549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166066/","id":166066,"name":"Lest No Bridge Be Unburned","site_detail_url":"https://comicvine.gamespot.com/normalman-megaton-man-special-1-lest-no-bridge-be-/4000-166066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39469/","id":39469,"name":"End Of An Era, Part One: History Lesson","site_detail_url":"https://comicvine.gamespot.com/legionnaires-17-end-of-an-era-part-one-history-les/4000-39469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39330/","id":39330,"name":"Saved by Zero","site_detail_url":"https://comicvine.gamespot.com/legionnaires-16-saved-by-zero/4000-39330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158023/","id":158023,"name":"Leaving Home","site_detail_url":"https://comicvine.gamespot.com/union-0-leaving-home/4000-158023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97018/","id":97018,"name":"The Good The Bad And The Hedgehog","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-11-the-good-the-bad-and-the-hed/4000-97018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160391/","id":160391,"name":"New Dawn","site_detail_url":"https://comicvine.gamespot.com/transformers-generation-2-7-new-dawn/4000-160391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38830/","id":38830,"name":"","site_detail_url":"https://comicvine.gamespot.com/union-4/4000-38830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144419/","id":144419,"name":null,"site_detail_url":"https://comicvine.gamespot.com/eternal-champions-special-1/4000-144419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38610/","id":38610,"name":"Time Crime The Conclusion: Seems Like Old Times","site_detail_url":"https://comicvine.gamespot.com/star-trek-57-time-crime-the-conclusion-seems-like-/4000-38610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271317/","id":271317,"name":"I cavalieri del tempo","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-89-i-cavalieri-del-tempo/4000-271317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38678/","id":38678,"name":"Blood and Thunder, Part 12: Raid on Asgard","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-25-blood-and-thunde/4000-38678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38456/","id":38456,"name":"Time Crime Part Four: Call Back Yesterday","site_detail_url":"https://comicvine.gamespot.com/star-trek-56-time-crime-part-four-call-back-yester/4000-38456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38386/","id":38386,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/action-comics-annual-6-legacy/4000-38386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38212/","id":38212,"name":"Time Crime Part Three: Time...To Time!","site_detail_url":"https://comicvine.gamespot.com/star-trek-55-time-crime-part-three-timeto-time/4000-38212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38282/","id":38282,"name":"Blood and Thunder, Part 4: Clash","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-23-blood-and-thunde/4000-38282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38056/","id":38056,"name":"Time Crime Part Two: Nightmares","site_detail_url":"https://comicvine.gamespot.com/star-trek-54-time-crime-part-two-nightmares/4000-38056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111372/","id":111372,"name":"What If... Death's Head I Had Live","site_detail_url":"https://comicvine.gamespot.com/what-if-54-what-if-deaths-head-i-had-live/4000-111372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37904/","id":37904,"name":"Time Crime Part 1","site_detail_url":"https://comicvine.gamespot.com/star-trek-53-time-crime-part-1/4000-37904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37865/","id":37865,"name":"Shades Of Yesterday Part 1: The Valley Of The Shadow","site_detail_url":"https://comicvine.gamespot.com/turok-dinosaur-hunter-4-shades-of-yesterday-part-1/4000-37865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37916/","id":37916,"name":"From Here To Alternity!","site_detail_url":"https://comicvine.gamespot.com/1963-6-from-here-to-alternity/4000-37916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37760/","id":37760,"name":"And Death Shall Have No Dominion","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-50-and-death-shall-h/4000-37760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37621/","id":37621,"name":"The Armies of the Night","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-49-the-armies-of-the/4000-37621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37661/","id":37661,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-134/4000-37661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37478/","id":37478,"name":"The Belly of the Beast","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-48-the-belly-of-the-/4000-37478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37440/","id":37440,"name":"Cold Blood Blazing","site_detail_url":"https://comicvine.gamespot.com/turok-dinosaur-hunter-1-cold-blood-blazing/4000-37440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37325/","id":37325,"name":"The Worst of Both Worlds","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-47-the-worst-of-both/4000-37325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36998/","id":36998,"name":"Strange Encounters","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-14-strange-encounte/4000-36998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271305/","id":271305,"name":"L'ultimo uomo sulla terra","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-77-lultimo-uomo-sulla-terra/4000-271305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206148/","id":206148,"name":"The Cell Games Begin","site_detail_url":"https://comicvine.gamespot.com/dragon-ball-33-the-cell-games-begin/4000-206148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36525/","id":36525,"name":"What If Venom Had Possessed the Punisher?","site_detail_url":"https://comicvine.gamespot.com/what-if-44-what-if-venom-had-possessed-the-punishe/4000-36525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36420/","id":36420,"name":"Self-Desructive Tendencies","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-10-self-desructive-/4000-36420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130906/","id":130906,"name":"Forever Evil","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-370-forever-evil/4000-130906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57827/","id":57827,"name":"Night of the Sentinels","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-1-night-of-the-sentinels/4000-57827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36106/","id":36106,"name":"Kismet: The Road Not Taken","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-494-kismet-the-road-not-tak/4000-36106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541519/","id":541519,"name":"No. 36-37, 1992","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-1220-no-36-37-1992/4000-541519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73807/","id":73807,"name":"Date Worse Than Death","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-39-date-worse-than-death/4000-73807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91313/","id":91313,"name":"Shattershot Part 2: The Masters of Inevitability","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-annual-16-shattershot-part-2-the/4000-91313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64316/","id":64316,"name":"The Crunch Conundrum Part 3 of 3 - The Chimerical Mystery Tour!","site_detail_url":"https://comicvine.gamespot.com/wolverine-53-the-crunch-conundrum-part-3-of-3-the-/4000-64316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35583/","id":35583,"name":"\"Bishop to King's Five\"","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-287-bishop-to-kings-five/4000-35583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64315/","id":64315,"name":"The Crunch Conundrum Part 2 of 3 - Citadel At The End Of Time","site_detail_url":"https://comicvine.gamespot.com/wolverine-52-the-crunch-conundrum-part-2-of-3-cita/4000-64315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35438/","id":35438,"name":"And Men Shall Call Him -- Hero!","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-53-and-men-shall-call-him-hero/4000-35438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35370/","id":35370,"name":"Brave New Universe","site_detail_url":"https://comicvine.gamespot.com/quasar-31-brave-new-universe/4000-35370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145557/","id":145557,"name":"Forward to the Past!","site_detail_url":"https://comicvine.gamespot.com/back-to-the-future-2-forward-to-the-past/4000-145557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35266/","id":35266,"name":"Calling All Lasers","site_detail_url":"https://comicvine.gamespot.com/quasar-30-calling-all-lasers/4000-35266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73802/","id":73802,"name":"Who Was That Zombie I Saw You With...?","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-34-who-was-that-zombie-i-/4000-73802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117703/","id":117703,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmanjudge-dredd-judgment-on-gotham-1/4000-117703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34895/","id":34895,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-282-payback/4000-34895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34547/","id":34547,"name":"What if Captain America Had Led An Army of Super Soldiers in World War II?","site_detail_url":"https://comicvine.gamespot.com/what-if-28-what-if-captain-america-had-led-an-army/4000-34547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271279/","id":271279,"name":"Gente che scompare","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-59-gente-che-scompare/4000-271279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34451/","id":34451,"name":"Man of Steel / Man of Fire!","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-1-man-of-steel-man-of-fi/4000-34451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68526/","id":68526,"name":"Breaking Up / Charlie & Company","site_detail_url":"https://comicvine.gamespot.com/superman-56-breaking-up-charlie-and-company/4000-68526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33655/","id":33655,"name":"Tomorrow's League Today!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-annual-5-tomorrows-league-t/4000-33655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-71043/","id":71043,"name":"Execution 2001","site_detail_url":"https://comicvine.gamespot.com/superman-annual-3-execution-2001/4000-71043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33647/","id":33647,"name":"The Road to Nowhere","site_detail_url":"https://comicvine.gamespot.com/the-books-of-magic-4-the-road-to-nowhere/4000-33647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32984/","id":32984,"name":"What if the Fantastic Four had Lost the Trial of Galactus","site_detail_url":"https://comicvine.gamespot.com/what-if-15-what-if-the-fantastic-four-had-lost-the/4000-32984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57486/","id":57486,"name":"Rhythms of Darkness!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-67-rhythms-of-darkness/4000-57486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172767/","id":172767,"name":"Life in the Slow Lane","site_detail_url":"https://comicvine.gamespot.com/the-transformers-266-life-in-the-slow-lane/4000-172767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172765/","id":172765,"name":"Bird of Prey!, Part 3 / Desert Island Risks!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-264-bird-of-prey-part-3-desert-is/4000-172765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271117/","id":271117,"name":"Storia di Nessuno","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-43-storia-di-nessuno/4000-271117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32492/","id":32492,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-5/4000-32492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113559/","id":113559,"name":"What If the Punisher's Family Had Not Been Killed in Central Park?","site_detail_url":"https://comicvine.gamespot.com/what-if-10-what-if-the-punishers-family-had-not-be/4000-113559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32140/","id":32140,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-annual-1-the-gift/4000-32140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121050/","id":121050,"name":"Green Legs and Gams","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-1-green-le/4000-121050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31673/","id":31673,"name":"What If Steve Rogers Had Refused to Give Up Being Captain America?","site_detail_url":"https://comicvine.gamespot.com/what-if-3-what-if-steve-rogers-had-refused-to-give/4000-31673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31411/","id":31411,"name":"Two Destinies!","site_detail_url":"https://comicvine.gamespot.com/superman-33-two-destinies/4000-31411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47445/","id":47445,"name":"The Blood Harvesting","site_detail_url":"https://comicvine.gamespot.com/corum-the-bull-and-the-spear-4-the-blood-harvestin/4000-47445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47444/","id":47444,"name":"The Spear Bryionak","site_detail_url":"https://comicvine.gamespot.com/corum-the-bull-and-the-spear-3-the-spear-bryionak/4000-47444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47443/","id":47443,"name":"An Enchantment of Fatal Beauty","site_detail_url":"https://comicvine.gamespot.com/corum-the-bull-and-the-spear-2-an-enchantment-of-f/4000-47443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47442/","id":47442,"name":"The Past Through Tomorrow","site_detail_url":"https://comicvine.gamespot.com/corum-the-bull-and-the-spear-1-the-past-through-to/4000-47442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258514/","id":258514,"name":"The Complete Frank Miller Batman HC","site_detail_url":"https://comicvine.gamespot.com/complete-frank-miller-batman-1-the-complete-frank-/4000-258514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258205/","id":258205,"name":"The Runestaff part four","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-4-the-runestaff-part-four/4000-258205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47388/","id":47388,"name":"The Conjunction Of The Million Spheres","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-12-the-conjunction-of-the-/4000-47388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258204/","id":258204,"name":"The Runestaff part three","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-3-the-runestaff-part-three/4000-258204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134236/","id":134236,"name":"Iron Man: Crash","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-33-iron-man-crash/4000-134236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148061/","id":148061,"name":"","site_detail_url":"https://comicvine.gamespot.com/alf-8/4000-148061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29999/","id":29999,"name":"Parallel Lives Meet at Infinity...","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-444-parallel-lives-meet-at-/4000-29999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47387/","id":47387,"name":"The Three Who Are One","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-11-the-three-who-are-one/4000-47387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258203/","id":258203,"name":"The Runestaff part two","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-2-the-runestaff-part-two/4000-258203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134669/","id":134669,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-real-ghostbusters-1/4000-134669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47386/","id":47386,"name":"Chaos Unbounded","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-10-chaos-unbounded/4000-47386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123534/","id":123534,"name":"Tall Tower Vanishing","site_detail_url":"https://comicvine.gamespot.com/elric-the-vanishing-tower-6-tall-tower-vanishing/4000-123534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29678/","id":29678,"name":"Return to Krypton","site_detail_url":"https://comicvine.gamespot.com/superman-18-return-to-krypton/4000-29678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187187/","id":187187,"name":"What If Iron Man Had Been A Traitor?","site_detail_url":"https://comicvine.gamespot.com/what-if-special-1-what-if-iron-man-had-been-a-trai/4000-187187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258202/","id":258202,"name":"The Runestaff part one","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-1-the-runestaff-part-one/4000-258202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47385/","id":47385,"name":"The Cloud Of Contention","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-9-the-cloud-of-contention/4000-47385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56902/","id":56902,"name":"Alien Life Form","site_detail_url":"https://comicvine.gamespot.com/alf-3-alien-life-form/4000-56902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123533/","id":123533,"name":"Tanelorn Eternal","site_detail_url":"https://comicvine.gamespot.com/elric-the-vanishing-tower-5-tanelorn-eternal/4000-123533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258209/","id":258209,"name":"The Sward of the Dawn Part Four","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-sword-of-the-dawn-4-the-sward-of-the-/4000-258209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47384/","id":47384,"name":"The Cosmic Balance","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-8-the-cosmic-balance/4000-47384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123532/","id":123532,"name":"To Slay the Pale Prince","site_detail_url":"https://comicvine.gamespot.com/elric-the-vanishing-tower-4-to-slay-the-pale-princ/4000-123532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258208/","id":258208,"name":"The Sword of the Dawn part three","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-sword-of-the-dawn-3-the-sword-of-the-/4000-258208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47383/","id":47383,"name":"The Chaos Pack","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-7-the-chaos-pack/4000-47383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123531/","id":123531,"name":"A Great Host Screaming","site_detail_url":"https://comicvine.gamespot.com/elric-the-vanishing-tower-3-a-great-host-screaming/4000-123531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260758/","id":260758,"name":"The Dark Knight Returns","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-returns-1-the-dark-knight-r/4000-260758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47382/","id":47382,"name":"Xiombarg's Beasts","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-6-xiombargs-beasts/4000-47382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258207/","id":258207,"name":"The Sword of the Dawn Part Two","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-sword-of-the-dawn-2-the-sword-of-the-/4000-258207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123535/","id":123535,"name":"Doomed Lord Dreaming","site_detail_url":"https://comicvine.gamespot.com/elric-the-vanishing-tower-2-doomed-lord-dreaming/4000-123535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258206/","id":258206,"name":"The Sword of the Dawn part one","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-sword-of-the-dawn-1-the-sword-of-the-/4000-258206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47381/","id":47381,"name":"The Dog and the Bear","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-5-the-dog-and-the-bear/4000-47381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123218/","id":123218,"name":"Strange Shapes Winging","site_detail_url":"https://comicvine.gamespot.com/elric-the-vanishing-tower-1-strange-shapes-winging/4000-123218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28413/","id":28413,"name":"A Twist in Time","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-37-a-twist-in-time/4000-28413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47380/","id":47380,"name":"The Heart Of Chaos","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-4-the-heart-of-chaos/4000-47380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28223/","id":28223,"name":"Alternatives","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-303-alternatives/4000-28223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28207/","id":28207,"name":"While the Gods Laugh: Chapter Four","site_detail_url":"https://comicvine.gamespot.com/elric-the-weird-of-the-white-wolf-5-while-the-gods/4000-28207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47379/","id":47379,"name":"The Eye Of Rhynn And The Hand Of Kwll","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-3-the-eye-of-rhynn-and-the/4000-47379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259060/","id":259060,"name":"Den Jagade","site_detail_url":"https://comicvine.gamespot.com/laderlappen-198703-den-jagade/4000-259060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123214/","id":123214,"name":"While the Gods Laugh: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/elric-the-weird-of-the-white-wolf-4-while-the-gods/4000-123214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258936/","id":258936,"name":"Den Segrande","site_detail_url":"https://comicvine.gamespot.com/laderlappen-198702-den-segrande/4000-258936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47378/","id":47378,"name":"The Summoning","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-2-the-summoning/4000-47378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27771/","id":27771,"name":"While the Gods Laugh Part II; The Singing Citadel","site_detail_url":"https://comicvine.gamespot.com/elric-the-weird-of-the-white-wolf-3-while-the-gods/4000-27771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27661/","id":27661,"name":"The Knight Of The Swords","site_detail_url":"https://comicvine.gamespot.com/the-chronicles-of-corum-1-the-knight-of-the-swords/4000-27661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259260/","id":259260,"name":"Den Fallne","site_detail_url":"https://comicvine.gamespot.com/laderlappen-198704-den-fallne/4000-259260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258544/","id":258544,"name":"Den återuppståndne","site_detail_url":"https://comicvine.gamespot.com/laderlappen-198701-den-ateruppstandne/4000-258544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27471/","id":27471,"name":"The Dreaming City; While the Gods Laugh","site_detail_url":"https://comicvine.gamespot.com/elric-the-weird-of-the-white-wolf-2-the-dreaming-c/4000-27471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27260/","id":27260,"name":"The Dream of Earl Aubec","site_detail_url":"https://comicvine.gamespot.com/elric-the-weird-of-the-white-wolf-1-the-dream-of-e/4000-27260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26290/","id":26290,"name":"The Dark Knight Falls","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-4-the-dark-knight-falls/4000-26290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26282/","id":26282,"name":"Hunt the Dark Knight","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-3-hunt-the-dark-knight/4000-26282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26276/","id":26276,"name":"The Dark Knight Triumphant","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-2-the-dark-knight-triumphan/4000-26276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26876/","id":26876,"name":"The Sailor on the Seas of Fate: Part Seven","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-7-the-sailor-on-t/4000-26876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26682/","id":26682,"name":"The Sailor on the Seas of Fate: Part Six","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-6-the-sailor-on-t/4000-26682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26264/","id":26264,"name":"The Dark Knight Returns","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-1-the-dark-knight-returns/4000-26264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26485/","id":26485,"name":"The Sailor on the Seas of Fate: Part Five","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-5-the-sailor-on-t/4000-26485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26173/","id":26173,"name":"The Sailor on the Seas of Fate: Part Four","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-4-the-sailor-on-t/4000-26173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26030/","id":26030,"name":"The Last Parallel World Story","site_detail_url":"https://comicvine.gamespot.com/blue-devil-18-the-last-parallel-world-story/4000-26030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25961/","id":25961,"name":"The Sailor on the Seas of Fate: Part Three","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-3-the-sailor-on-t/4000-25961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25766/","id":25766,"name":"The Sailor on the Seas of Fate: Part Two","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-2-the-sailor-on-t/4000-25766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25565/","id":25565,"name":"The Sailor on the Seas of Fate: Part One","site_detail_url":"https://comicvine.gamespot.com/elric-sailor-on-the-seas-of-fate-1-the-sailor-on-t/4000-25565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25335/","id":25335,"name":"The Summoning","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-1-the-summoning/4000-25335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24759/","id":24759,"name":"The Living Legends of Superman; Last Son of Krypton; The Exile at the Edge of Eternity","site_detail_url":"https://comicvine.gamespot.com/superman-400-the-living-legends-of-superman-last-s/4000-24759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109962/","id":109962,"name":"Paradise Burning!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-318-paradise-burning/4000-109962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24420/","id":24420,"name":"What If The Hulk Went Berserk?","site_detail_url":"https://comicvine.gamespot.com/what-if-45-what-if-the-hulk-went-berserk/4000-24420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24276/","id":24276,"name":"The Power and the People","site_detail_url":"https://comicvine.gamespot.com/superman-395-the-power-and-the-people/4000-24276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24221/","id":24221,"name":"At Last-- Stormbringer!","site_detail_url":"https://comicvine.gamespot.com/elric-6-at-last-stormbringer/4000-24221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24001/","id":24001,"name":"Through The Shade Gate","site_detail_url":"https://comicvine.gamespot.com/elric-5-through-the-shade-gate/4000-24001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23176/","id":23176,"name":"The Future is Forever","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-300-the-future-is-forever/4000-23176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22854/","id":22854,"name":"Son of Santa","site_detail_url":"https://comicvine.gamespot.com/bizarre-adventures-34-son-of-santa/4000-22854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22646/","id":22646,"name":"Let Old Aquaintances Be Forgot...","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-209-let-old-aquaintances/4000-22646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22570/","id":22570,"name":"The Bomb-Blast Heard 'Round the World!: Fate is the Killer","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-208-the-bomb-blast-heard/4000-22570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117497/","id":117497,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-305/4000-117497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242544/","id":242544,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-386/4000-242544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242542/","id":242542,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-384/4000-242542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242541/","id":242541,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-383/4000-242541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668875/","id":668875,"name":"This Bunny Unbound!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-0-this-bun/4000-668875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242540/","id":242540,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-382/4000-242540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242539/","id":242539,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-381/4000-242539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197118/","id":197118,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-380/4000-197118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241435/","id":241435,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-379/4000-241435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135294/","id":135294,"name":"The redoubtable return of Crusher Creel!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-378-the-redoubtable-return-of-/4000-135294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120934/","id":120934,"name":"Time and Time Again! / The Clueless Capers of Chronos!","site_detail_url":"https://comicvine.gamespot.com/action-comics-516-time-and-time-again-the-clueless/4000-120934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117079/","id":117079,"name":"This is My World, and You're Welcome to It! / Sorry--Wrong Powers!","site_detail_url":"https://comicvine.gamespot.com/action-comics-515-this-is-my-world-and-youre-welco/4000-117079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117129/","id":117129,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-286/4000-117129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19454/","id":19454,"name":"What If Sgt. Fury and His Howling Commandos Had Fought World War II In Outer Space?","site_detail_url":"https://comicvine.gamespot.com/what-if-14-what-if-sgt-fury-and-his-howling-comman/4000-19454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124384/","id":124384,"name":"A Nightmare to Remember! / The Canvas Inferno / Pursuit to Eternity / The Hunt / Deadly Song of the Wizard / The Quest for the Stolen Soul","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-460-a-nightmare-to-remember-the-c/4000-124384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18881/","id":18881,"name":"No Time Like The Past","site_detail_url":"https://comicvine.gamespot.com/star-trek-56-no-time-like-the-past/4000-18881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18756/","id":18756,"name":"What if Jane Foster had found the hammer of Thor?","site_detail_url":"https://comicvine.gamespot.com/what-if-10-what-if-jane-foster-had-found-the-hamme/4000-18756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18633/","id":18633,"name":"Bring Back My Future To Me!","site_detail_url":"https://comicvine.gamespot.com/karate-kid-15-bring-back-my-future-to-me/4000-18633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125891/","id":125891,"name":"Superboy and the Legion of Super Heroes: The Millenium Massacre","site_detail_url":"https://comicvine.gamespot.com/all-new-collectors-edition-55-superboy-and-the-leg/4000-125891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18303/","id":18303,"name":"One Earth Too Many","site_detail_url":"https://comicvine.gamespot.com/secret-society-of-super-villains-13-one-earth-too-/4000-18303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362343/","id":362343,"name":"The Story of Superman's Life","site_detail_url":"https://comicvine.gamespot.com/tempo-books-14532-the-story-of-supermans-life/4000-362343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17476/","id":17476,"name":"The Next to the Last Boy on Earth","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-51-the-next-to-the-l/4000-17476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17465/","id":17465,"name":"\"The Other Side of Doomsday\"","site_detail_url":"https://comicvine.gamespot.com/super-team-family-11-the-other-side-of-doomsday/4000-17465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16835/","id":16835,"name":"Assault in the Clouds!","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-47-assault-in-the-cl/4000-16835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16651/","id":16651,"name":"The Little People!","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-45-the-little-people/4000-16651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16388/","id":16388,"name":"Gunfight at Coyote Corral","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-42-gunfight-at-coyot/4000-16388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15567/","id":15567,"name":"The Choice","site_detail_url":"https://comicvine.gamespot.com/star-trek-33-the-choice/4000-15567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15500/","id":15500,"name":"1000 Clowns!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-181-1000-clowns/4000-15500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117379/","id":117379,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-226/4000-117379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14307/","id":14307,"name":"Catwoman's Circus Caper!","site_detail_url":"https://comicvine.gamespot.com/batman-256-catwomans-circus-caper/4000-14307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117357/","id":117357,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-211/4000-117357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12623/","id":12623,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-102/4000-12623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11556/","id":11556,"name":"Gigantus! The Monster That... Walked Like a Man!; The Frog-Man!; Barker's Body Shop!; Dinner Time on Deimos!","site_detail_url":"https://comicvine.gamespot.com/where-monsters-dwell-10-gigantus-the-monster-that-/4000-11556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121272/","id":121272,"name":"Superman, You're Dead...Dead...Dead! / Superbaby's Lost World!","site_detail_url":"https://comicvine.gamespot.com/action-comics-399-superman-you-re-dead-dead-dead-s/4000-121272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11321/","id":11321,"name":"Brain-Child To The Dark Tower Came...!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-86-brain-child-to-the-dark-tower-came/4000-11321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11273/","id":11273,"name":"The World Is Not For Burning","site_detail_url":"https://comicvine.gamespot.com/the-avengers-85-the-world-is-not-for-burning/4000-11273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11216/","id":11216,"name":"The Sword And The Sorceress!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-84-the-sword-and-the-sorceress/4000-11216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115109/","id":115109,"name":"The Shame of the Super-Son! / The Legionnaires Who Never Were!","site_detail_url":"https://comicvine.gamespot.com/action-comics-392-the-shame-of-the-super-son-the-l/4000-115109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10740/","id":10740,"name":"People Who Live In Glass Houses...","site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-85-people-who-live-in-glass-house/4000-10740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10816/","id":10816,"name":"I Created The Demon That Stalks Hollywood!","site_detail_url":"https://comicvine.gamespot.com/tower-of-shadows-5-i-created-the-demon-that-stalks/4000-10816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10549/","id":10549,"name":"The Stuff That Dreams Are Made Of","site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-83-the-stuff-that-dreams-are-made/4000-10549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10243/","id":10243,"name":"Sing a Song of Sorcery!","site_detail_url":"https://comicvine.gamespot.com/showcase-83-sing-a-song-of-sorcery/4000-10243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10188/","id":10188,"name":"Some Forbidden Fate","site_detail_url":"https://comicvine.gamespot.com/showcase-82-some-forbidden-fate/4000-10188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530284/","id":530284,"name":"No. 3, 1969","site_detail_url":"https://comicvine.gamespot.com/big-comic-12-no-3-1969/4000-530284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114932/","id":114932,"name":"The Origin of the Legion","site_detail_url":"https://comicvine.gamespot.com/superboy-147-the-origin-of-the-legion/4000-114932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114872/","id":114872,"name":"The Adult Legion!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-354-the-adult-legion/4000-114872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116521/","id":116521,"name":"The Day Candid Camera Unmasked Superman's Identity!; The Exile of Steel","site_detail_url":"https://comicvine.gamespot.com/action-comics-345-the-day-candid-camera-unmasked-s/4000-116521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8994/","id":8994,"name":"","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-unexpected-98/4000-8994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128389/","id":128389,"name":"The Batman-Superman of Earth-X! / Sergeant Olsen... Toughest Man in the Marines!","site_detail_url":"https://comicvine.gamespot.com/superman-s-pal-jimmy-olsen-93-the-batman-superman-/4000-128389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114909/","id":114909,"name":"The Three Super-Enemies!; The Man Who Broke Supergirl's Heart","site_detail_url":"https://comicvine.gamespot.com/action-comics-320-the-three-super-enemies-the-man-/4000-114909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114787/","id":114787,"name":"Secret of Camp Storm King!","site_detail_url":"https://comicvine.gamespot.com/superboy-117-secret-of-camp-storm-king/4000-114787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-629706/","id":629706,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/tetsuwan-atom-1-vol-1/4000-629706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6766/","id":6766,"name":"Beauty And The Super-Beast!; The Sweetheart Superman Forgot!","site_detail_url":"https://comicvine.gamespot.com/superman-165-beauty-and-the-super-beast-the-sweeth/4000-6766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6240/","id":6240,"name":"On the Trail of the Amazing Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-annual-2-on-the-trail-of-the-amazing/4000-6240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124318/","id":124318,"name":"The Batman Nobody Remembered / The Magician Boss of the Incas","site_detail_url":"https://comicvine.gamespot.com/world-s-finest-comics-136-the-batman-nobody-rememb/4000-124318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5731/","id":5731,"name":"The Son of the Joker","site_detail_url":"https://comicvine.gamespot.com/batman-145-the-son-of-the-joker/4000-5731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121994/","id":121994,"name":"The Story of Superman's Life! / Superman's Greatest Feats!","site_detail_url":"https://comicvine.gamespot.com/superman-146-the-story-of-superman-s-life-superman/4000-121994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475646/","id":475646,"name":"Secret of the Sinister Sorcerers","site_detail_url":"https://comicvine.gamespot.com/mighty-comic-22-secret-of-the-sinister-sorcerers/4000-475646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5142/","id":5142,"name":"The Creatures from Atlantis","site_detail_url":"https://comicvine.gamespot.com/showcase-30-the-creatures-from-atlantis/4000-5142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4944/","id":4944,"name":"The Secret of the Golden Thunderbolts!; Riddle of the Frozen Ghost Town!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-2-the-secret-of-the-golden-thunderbo/4000-4944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4100/","id":4100,"name":"","site_detail_url":"https://comicvine.gamespot.com/forbidden-worlds-73/4000-4100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117166/","id":117166,"name":"The Thing in the Box","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-61-the-thing-in-the-box/4000-117166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117163/","id":117163,"name":"The Haunted Melody","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-58-the-haunted-melody/4000-117163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1383/","id":1383,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-22/4000-1383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1133/","id":1133,"name":"Ben and Me","site_detail_url":"https://comicvine.gamespot.com/four-color-539-ben-and-me/4000-1133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109058/","id":109058,"name":"Wonder Woman's Invisible Twin","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-59-wonder-womans-invisible-twin/4000-109058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120746/","id":120746,"name":"Your Face is Your Fortune","site_detail_url":"https://comicvine.gamespot.com/batman-15-your-face-is-your-fortune/4000-120746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116242/","id":116242,"name":"V For Victory","site_detail_url":"https://comicvine.gamespot.com/daring-mystery-comics-8-v-for-victory/4000-116242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436078/","id":436078,"name":"Культ двуличия. Часть 4","site_detail_url":"https://comicvine.gamespot.com/panteon-kult-dvulichiya-4-kul-t-dvulichiia-chast-4/4000-436078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255913/","id":255913,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/alan-moore-wild-worlds-1-tpb/4000-255913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909737/","id":909737,"name":"The Machine That Knew Everything!","site_detail_url":"https://comicvine.gamespot.com/indieversity-1-the-machine-that-knew-everything/4000-909737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202480/","id":202480,"name":"Patient X","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-sorority-girls-vs-zombies-10-patient-/4000-202480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202479/","id":202479,"name":"Nihilism Cubed","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-sorority-girls-vs-zombies-9-nihilism-/4000-202479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381080/","id":381080,"name":"JLA WildC.A.T.S.","site_detail_url":"https://comicvine.gamespot.com/dc-crossover-19-jla-wildcats/4000-381080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202504/","id":202504,"name":"Face Off","site_detail_url":"https://comicvine.gamespot.com/chaos-campus-sorority-girls-vs-zombies-12-face-off/4000-202504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502343/","id":502343,"name":"","site_detail_url":"https://comicvine.gamespot.com/quadrinhos-1a-serie-os-justiceiros-16/4000-502343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499998/","id":499998,"name":"","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-freundschaft-ist-magie-5/4000-499998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260556/","id":260556,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-luther-arkwright-9/4000-260556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476425/","id":476425,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-9/4000-476425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702731/","id":702731,"name":null,"site_detail_url":"https://comicvine.gamespot.com/el-asombroso-hombre-arana-513/4000-702731/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2679/","id":2679,"name":"Doctor Strange in the Multiverse of Madness","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-in-the-multiverse-of-madness/4025-2679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2728/","id":2728,"name":"Constantine: The House of Mystery","site_detail_url":"https://comicvine.gamespot.com/constantine-the-house-of-mystery/4025-2728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2656/","id":2656,"name":"Morbius","site_detail_url":"https://comicvine.gamespot.com/morbius/4025-2656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2619/","id":2619,"name":"Spider-Man: No Way Home","site_detail_url":"https://comicvine.gamespot.com/spider-man-no-way-home/4025-2619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2587/","id":2587,"name":"Mortal Kombat Legends: Battle of the Realms","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-legends-battle-of-the-realms/4025-2587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2556/","id":2556,"name":"Space Jam: A New Legacy","site_detail_url":"https://comicvine.gamespot.com/space-jam-a-new-legacy/4025-2556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2551/","id":2551,"name":"Justice Society: World War II","site_detail_url":"https://comicvine.gamespot.com/justice-society-world-war-ii/4025-2551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2430/","id":2430,"name":"Mortal Kombat Legends: Scorpion’s Revenge","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-legends-scorpions-revenge/4025-2430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2412/","id":2412,"name":"Teen Titans Go! vs. Teen Titans","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go-vs-teen-titans/4025-2412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2329/","id":2329,"name":"Spider-Man: Into the Spider-Verse","site_detail_url":"https://comicvine.gamespot.com/spider-man-into-the-spider-verse/4025-2329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2314/","id":2314,"name":"Suicide Squad: Hell to Pay","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-hell-to-pay/4025-2314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2247/","id":2247,"name":"Power Rangers","site_detail_url":"https://comicvine.gamespot.com/power-rangers/4025-2247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2272/","id":2272,"name":"My Little Pony Equestria Girls: Legend of Everfree","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-equestria-girls-legend-of-everfree/4025-2272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2221/","id":2221,"name":"Star Trek Beyond","site_detail_url":"https://comicvine.gamespot.com/star-trek-beyond/4025-2221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2154/","id":2154,"name":"Yu-Gi-Oh! The Dark Side of Dimensions","site_detail_url":"https://comicvine.gamespot.com/yugioh-the-dark-side-of-dimensions/4025-2154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2138/","id":2138,"name":"My Little Pony: Equestria Girls - Friendship Games","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-equestria-girls-friendship-games/4025-2138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2114/","id":2114,"name":"Justice League: Gods & Monsters","site_detail_url":"https://comicvine.gamespot.com/justice-league-gods-monsters/4025-2114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2135/","id":2135,"name":"Scooby-Doo! and Kiss: Rock and Roll Mystery","site_detail_url":"https://comicvine.gamespot.com/scoobydoo-and-kiss-rock-and-roll-mystery/4025-2135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2152/","id":2152,"name":"Lego DC Comics Super Heroes: Justice League vs. Bizarro League","site_detail_url":"https://comicvine.gamespot.com/lego-dc-comics-super-heroes-justice-league-vs-biza/4025-2152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2054/","id":2054,"name":"My Little Pony: Equestria Girls – Rainbow Rocks","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-equestria-girls-rainbow-rocks/4025-2054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1764/","id":1764,"name":"Justice League: The Flashpoint Paradox","site_detail_url":"https://comicvine.gamespot.com/justice-league-the-flashpoint-paradox/4025-1764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2053/","id":2053,"name":"My Little Pony: Equestria Girls","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-equestria-girls/4025-2053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1629/","id":1629,"name":"Star Trek Into Darkness","site_detail_url":"https://comicvine.gamespot.com/star-trek-into-darkness/4025-1629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1570/","id":1570,"name":"The Dark Knight Returns: Part Two","site_detail_url":"https://comicvine.gamespot.com/the-dark-knight-returns-part-two/4025-1570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1856/","id":1856,"name":"Naruto the Movie: Road to Ninja","site_detail_url":"https://comicvine.gamespot.com/naruto-the-movie-road-to-ninja/4025-1856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2013/","id":2013,"name":"Abraham Lincoln: Vampire Hunter","site_detail_url":"https://comicvine.gamespot.com/abraham-lincoln-vampire-hunter/4025-2013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1571/","id":1571,"name":"Clash of the Red Rangers: The Movie","site_detail_url":"https://comicvine.gamespot.com/clash-of-the-red-rangers-the-movie/4025-1571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1946/","id":1946,"name":"Phineas and Ferb The Movie: Across the 2nd Dimension","site_detail_url":"https://comicvine.gamespot.com/phineas-and-ferb-the-movie-across-the-2nd-dimensio/4025-1946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-958/","id":958,"name":"Shrek Forever After","site_detail_url":"https://comicvine.gamespot.com/shrek-forever-after/4025-958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-757/","id":757,"name":"Justice League Crisis on Two Earths","site_detail_url":"https://comicvine.gamespot.com/justice-league-crisis-on-two-earths/4025-757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1274/","id":1274,"name":"Yu-Gi-Oh! 3D: Bonds Beyond Time","site_detail_url":"https://comicvine.gamespot.com/yu-gi-oh-3d-bonds-beyond-time/4025-1274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-726/","id":726,"name":"Turtles Forever","site_detail_url":"https://comicvine.gamespot.com/turtles-forever/4025-726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-108/","id":108,"name":"Star Trek","site_detail_url":"https://comicvine.gamespot.com/star-trek/4025-108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1443/","id":1443,"name":"Pokémon: Giratina and the Sky Warrior","site_detail_url":"https://comicvine.gamespot.com/pokemon-giratina-and-the-sky-warrior/4025-1443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1291/","id":1291,"name":"Scooby-Doo! And the Goblin King","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-and-the-goblin-king/4025-1291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-903/","id":903,"name":"Cinderella III: A Twist in Time","site_detail_url":"https://comicvine.gamespot.com/cinderella-iii-a-twist-in-time/4025-903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1309/","id":1309,"name":"Fullmetal Alchemist the Movie: Conqueror of Shamballa","site_detail_url":"https://comicvine.gamespot.com/fullmetal-alchemist-the-movie-conqueror-of-shambal/4025-1309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1523/","id":1523,"name":"Hoodwinked!","site_detail_url":"https://comicvine.gamespot.com/hoodwinked/4025-1523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1435/","id":1435,"name":"Planet of the Apes","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apes/4025-1435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-962/","id":962,"name":"Battle Royale","site_detail_url":"https://comicvine.gamespot.com/battle-royale/4025-962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-282/","id":282,"name":"Space Jam","site_detail_url":"https://comicvine.gamespot.com/space-jam/4025-282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-265/","id":265,"name":"Star Trek Generations","site_detail_url":"https://comicvine.gamespot.com/star-trek-generations/4025-265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-149/","id":149,"name":"Back to the Future Part II","site_detail_url":"https://comicvine.gamespot.com/back-to-the-future-part-ii/4025-149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1898/","id":1898,"name":"Garfield: His 9 Lives","site_detail_url":"https://comicvine.gamespot.com/garfield-his-9-lives/4025-1898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-158/","id":158,"name":"Masters of the Universe","site_detail_url":"https://comicvine.gamespot.com/masters-of-the-universe/4025-158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-39/","id":39,"name":"Howard the Duck","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck/4025-39/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-628/","id":628,"name":"The Secret of the Sword","site_detail_url":"https://comicvine.gamespot.com/the-secret-of-the-sword/4025-628/"}],"name":"Alternate Reality","site_detail_url":"https://comicvine.gamespot.com/alternate-reality/4015-40617/","start_year":"1942","volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112908/","id":112908,"name":"El Asombroso Hombre Araña","site_detail_url":"https://comicvine.gamespot.com/el-asombroso-hombre-arana/4050-112908/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/concept-details/concept-4015-43603.json b/samples/api-data/concept-details/concept-4015-43603.json new file mode 100644 index 0000000..ad62281 --- /dev/null +++ b/samples/api-data/concept-details/concept-4015-43603.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43603/","count_of_isssue_appearances":1126,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-08-13 08:06:37","deck":"The Multiverse is a pivotal concept in DC Comics. Over the years, it has gone through many changes, and has nearly been destroyed on a few occasions, but always ends up intact.","description":"

Origin

\"The
The Multiverse

Inside the DC Comics mythology, the sci-fi concept of alternate realities existing as parallel earths has been one of the main characteristics of their superhero universe since the silver age. With an infinite number of similar looking universes than resemble the main universe, the idea of Multiverse is a foundation concept not only in DC Comics but for the whole superhero genre.

Creation

DC Multiverse was created by Gardner Fox and Carmine Infantino.

Universe Evolution

Pre-Crisis / The Multiverse (1961-1986)

\"Pre-Crisis
Pre-Crisis - The Multiverse

Before the Crisis on Infinite Earths, there were many (hence \"infinite\") versions of the Earth scattered throughout the Multiverse. The DC Multiverse officially first appeared in The Flash #123 when Barry Allen (Flash) found himself in another universe that was separated from his own by being on a different vibration frequency.

\"A multiverse of worlds vibrating and replicating... And a multiverse that should have been one, became many\".

This world came to be known as Earth-Two and was populated by the heroes of the \"Golden Age\" of comics (the 40's and 50's). After this, more worlds were found, and then even more, until finally DC decided it was time to put an end to the expansion of the Multiverse. As was mentioned before, the other worlds were destroyed during the Crisis, but here is a list of the known Earth's before they were lost.

Even if apparentely thsi multiverse was restored in Convergence,it was revealed than the Pre-Crisis multiverse exist as a leftover multiverse know as Multiverse-2. The exact nature of this reality is only understand by Pariah.

Earth-one

Mainstream earth, Home of the Silver Age heroes, such as the Justice League of America.

Earth-two

Home to the Justice Society of America and the Golden Age heroes.

Earth-three

A world where the only super-powered beings were five villains called the Crime Syndicate of America. Later, a man named Alexander Luthor, Sr. rose as the world's only hero to combat the villains. Also the birthplace of Alex Luthor.

Earth-Four

Home to characters originally from Charlton Comics, such as the Blue Beetle, Captain Atom, Nightshade and Question.

Earth-S

Home to characters originally from Fawcett Publications, such as Captain Marvel.

Earth-X

Home to characters originally from Quality Comics, such as Plastic Man and Uncle Sam. The Nazis won World War II and were opposed by the heroes on this Earth.

Earth-5

A world with no superheroes. The Phantom Stranger transported Earth-1's Batman to this earth, where he inspired the Bruce Wayne of Earth-5 to become Batman.

Earth-Six

A world where the Americans lost the Revolutionary War and the society was ruled by an monarchy of superpowered royals. Home to Lady Quark.

Earth-7

Home to Dark Angel.

Earth-Eight

Earth visited by Captain Marvel (Earth-S) and Green Lantern (Earth-Two). Depiste have no superheroes still it have a replica of the Starheart, Green Lantern Power Battery, buried in China. Appeared in All-Star Squadron #52.

Earth-11

A world home to a man named Tin, possibly Tintin.

Earth-12

A humorous world home to the Inferior Five and various Marvel parodies as the Eggsmen, .

Earth-14

Home to purple butterflies. Nothing else is known about this Earth.

Earth-15

Home to a race of stone giants.

Earth-17

Two versions of this Earth existed. One was home to pre-Crisis stories of the New Gods after Jack Kirby left the title. The second was home to Overman and parodies of grim and gritty heroes. Overman killed this Earth after being infected with an STD.

Earth-32

An almost identical Earth to Earth-1. Earth-1's Hal Jordan shifted into this world and eventually named it Earth-32.

Earth-86

A world where the world was ravaged by nuclear war in the year 1986. Home to the Atomic Knights, OMAC and Hercules.

Earth-A

An artificial world created by Earth-1's Johnny Thunder where the heroes were replaced by his friends.

Earth-B

A fan name for a world where stories by Bob Haney in Brave and the Bold that don't fit into regular continuity take place.

Earth-C

Home to the Zoo Crew.

Earth-C Minus

Home to the Just'A Lotta Animals.

Earth-D

Home of the Justice Alliance of America, a racially diverse versions of the Justice League. Created by retcon for a Legends of DC Universe special.

Earth-Omega

Fan name given to the Pariah's unnamed home world.

Antimatter Universe

Home of the antimatter world of Qward, home base of the Qwardians weaponeers and birth world of the Anti-Monitor.

Post-Crisis / DC Universe (1986-2006)

\"Post-Crisis
Post-Crisis - DC Universe

During the period than the DC was reduced to one clustered universe, embers of the previous reality popped once and again in different titles by different writers, always searching a way to bring back the old multiverse in some fashion, but never calling them as parallel earths. Such is the case of the Second Crisis from Grant Morrison in Animal Man, Mark Waid in The Kingdom, Jeph Loeb in Superman/Batman. During this age, the alternative stories were dubbed Elseworlds, such as \"Batman: Gotham by Gaslight\" and \"Superman: Red Son\", with some of them later becoming official alternate universes.

Post-crisis Earth/Cluster Earth/Earth Sigma

The fused earth with elements of mostly pre-crisis Earths 1, 2, 4, X & S.

Antimatter Universe/AntiMatter Earth

The antimatter universe, home of the Qwardians. In Earth-2 it was discovered the existence of a Antimatter earth, with the characteristics of Earth-3.

Pocket Universe

Created by the Time Trapper to explain the discrepancies in the Legion of Superheroes continuity with Superman reboot after the Crisis on Infinite Earths.

Fourth World

Home of New Genesis and Apokolips, they are at the same time inside but outside of the conventional universe.

Dakotaverse

Home of Icon, Static, Hardware and the other Milestone universe. Believed to be a dreamed world by Superman, Superboy and Steel. (See Worlds Collide).

Red Son Earth

Elseworld, visited by Bizarro in Superman/Batman. Appeared during \"With a Vengeance\" arc in Superman/Batman.

Earth Maximums

Home of the Maximums, pastiche of Marvel's Ultimates. A fictional world created by Mxyzptlk. Appeared during \"With a Vengeance\" arc in Superman/Batman.

Earth reversed genders

Home of Superwoman, Batwoman and Superlad. Appeared during \"With a Vengeance\" arc in Superman/Batman. It would serve of basis for Earth 11.

Earth-17

Home of Overman. Created as a military project, he went crazy after catch a STD. Appeared during the Second Crisis in Animal Man.

Earth-Dreamworld

Home of the Love Syndicate of Dreamworld. Appeared during the Second Crisis in Animal Man.

Angor

Marvel-like world than mimics characters of Marvel Comics. Only defined as other dimensional, their earth was an unofficial parallel universe. It would serve of basis for Earth-8.

Limbo

Where all the forgotten characters go when they are not trendy.

Dark Flash Earth

World of origin of Walter West, an alternative Wally West whose wife died.

Superboy Hypertime worlds

Differents worlds visited by Superboy during the Hyper-tension arc they were mostly Elseworlds, explained as alternative hypertimelines, including: Justice Riders, Supergirl/Batgirl: Elseworld Finest, Superman: Kal, DC One Million, a Silver Age like world, among others.

Earth-Wildstorm

Home of Wildstorm Characters. Wildstorm Comics was acquired by DC in 1999. As previous editorials (Quality, Fawcett, Charlton) their characters ended integrated to the main universe. Mr Majestic traveled to the mainstream DC universe in 2004 and previously it was established the parallels in the JLA/WildCATs crossover.

Infinite Crisis / The Multiverse (2006)

\"Infinite
Infinite Crisis - The Multiverse

During the epic Infinite Crisis, Alexander Luthor, one of the few survivals of the original multiverse briefly recreated some of the previous existing worlds, trying to find the \"perfect earth\". Although his schemes were thwarted and this multiverse was brief in existence (two issues), it would be the first step for the return of the parallel earths.

Cluster Earth

The mainstream earth, decomposed during Infinite Crisis and clustered again as New Earth.

Earth-0

Bizarro World. First time of Bizarro World as their own universe. It would be the base for Earth 29.

Earth-2

Recreated home of the JSA and the golden age characters related characters. During Infinite Crisis the members of the JSA were transported to that world.

Earth-8

Implied universe. A world home to Post-Crisis versions of heroes, such as Jason Rusch, Kyle Rayner, Helena Bertinelli and Breach.

Earth-97

Home of the Tangent comics characters. Numbered after their publishing year.

Earth-154

Home of the supersons of Batman and Superman and the Joker, Riddler and Lex Luthor. It was destroyed when it was fused with Earth-462.

Earth-247

Home of the Post Zero Hour Legion of Super-Heroes who survived its destruction. The number was stablished in Infinite Crisis. In Final Crisis: Legion of Three Worlds it was revealed than the Legionnaires survived the destruction of their universe and became the New Wanderers, exploring the multiverse.

Earth-462

Home of WW2 Titans and tv versions of Wonder Woman (Kathy Lee Crosby) and Wonder Girl (Drusilla). It was destroyed when it was fused with Earth-154

Earth-616

Created of the fusion of Earths 154 and 462. Mayan looking superheroes are in permanent civil war among them. (Not coincidence). Destroyed inmediately by Alexander Luthor because it was not \"perfect\".

Earth-898

Home of the wild west characters (Jonah Hex, Scalphunter, Batlash)

Earth-S

Home of Captain Marvel and the Fawcett characters. Captain Marvel and the other Marvel Family characters were transported briefly to this world during Infinite Crisis.

Earth-Prime

Implied. The real world of the readers. It was searched by Alexander Luthor but he had not time to reach that world.

Post-52 Weeks / The Multiverse (2007-2011 )

\"Post-52
Post-52 Weeks - The Multiverse

Born after 52 (the weekly) and modified by Mr Mind, this multiverse resemble previous incarnations. Various Elseworlds were part of this multiverse. It would be explored more in Countdown (main series and parallel spin off as Lord Havok, Crime Society, Wildstorm, Red Rain, GaslIght, Red Son, Arena).

EARTH-0 (New Earth)
The main and central DC Universe.
EARTH-1
Mentioned several times, but never seen.
(Please note the Earth One graphic novels do not take place on this Earth, or any currently numbered Earth.)
EARTH-2
The world of a new and unique Justice Society Infinity. The Kal-L of this world is missing. Visited by the New Earth Power Girl.
EARTH-3
Based on the Pre-Crisis Earth-Three, this Earth is home to the Crime Society of America, a team of evil counterparts of the Justice Society of America. In this universe, all DC heroes are villains, and all DC villains are heroes. The existence of this earth at the same time as the Crime Syndicate from the Antimatter earth, lead to several editorial confusions.
EARTH-4
This world appears to house classic Charlton brand comic characters, including Dan Garrett (the original Blue Beetle), and Captain Allen Adam, with added inspiration from Watchmen.
EARTH-5
Home to a version of the Marvel Family more similar to the Golden Age incarnation. Similar to the Pre-Crisis Earth-S.
EARTH-6
Ray Palmer is the Ray.
EARTH-7
Home of a Courtney Whitmore is Starwoman.
EARTH-8
Home of Lord Havok and the Extremists and their enemies. Very similar to the Marvel Universe. Similar to the pre-Crisis world of Angor.
EARTH-9
Home of the Tangent heroes. This Earth's history is radically different- the Atom accidentally causes a nuclear war in 1961, and Superman takes over the world later.
EARTH-10
Home to Uncle Sam and his Freedom Fighters, who fight against the Nazis after the Nazis win World War II and take over the world. Also home to a Nazi Superman. Similar to the Pre-Crisis Earth-X.
EARTH-11
Home of heroes with reversed genders. For example, Superwoman. Batwoman and Wonderman. The Superwoman and Batwoman of this Earth first appeared before the creation of the 52 in Superman/Batman. Its history reflects New Earth's, with only slight differences because of genders being reversed.
EARTH-12
The setting of the DC Animated Universe, which currently continues in the Batman Beyond Universe comic book series.
EARTH-13
World of dark and arcane heroes. Monarch destroyed this reality's United States of America.
EARTH-14
unknown
EARTH-15
Perhaps a perfect Earth with Zod as Superman and Jason Todd as Batman. Destroyed by Superboy-Prime.
EARTH-16
Home of the characters from the Young Justice animated series and comic books.
EARTH-17
A devastated world home to the Atomic Knights. Similar to the original Atomic Knights stories.
EARTH-18

A world where superheroes began in the Old West.

EARTH-19
A world where superheroes such as Batman and the Blue Beetle fought crime in the Victoria era as seen in Gotham by Gaslight.
EARTH-20
A world influenced by early 20th century pulp fiction. Home to a Doc Savage/ Dr. Fate pastiche named Doc Fate, as well as a version of the Bat-Man.
EARTH-21
A world where superheroes where around in the 1950s. Vigilantism was outlawed in the 1950s before the heroes banded together to fight a sentient island, as seen in The New Frontier.
EARTH-22
A world where Superman was exiled after Magog killed the Joker, leading a generation of violent anti-heroes to take over, as seen in Kingdom Come.

EARTH-23-25

Never revealed.

EARTH-26

Home of Captain Carrot and the Amazing Zoo Crew.
EARTH-27, EARTH-28, EARTH-29
Never revealed.
EARTH-30
A world where Superman landed in the USSR instead of America, eventually becoming the premier of the USSR, as seen in Red Son.
EARTH-31
Home to a violent Batman, a subservient Superman and more, as seen in the Dark Knight Returns and related titles. Frank Miller is the writer of pieces of work in this Earth. Batman: Year One also is the origin story for batman in Earth-0 (New Earth).
EARTH-32
The Batman: Darkest Knight earth. Batman receives a Green Lantern Ring.
EARTH-33
All the heroes are magic; including Oracle, Kal-El and Bat-Mage, and some heroic versions of villains, such as Weather Wizard and Shade.
EARTH-34
A world where Wonder Woman was active in the Victorian Era and fought Jack the Ripper, as seen in Amazonia.
EARTH-35 & EARTH-36
Never revealed
EARTH-37
A world where Barbara Gordon became Batgirl in the 1960s and fought corrupt cops and a female Joker alongside Robin, as seen in Batman: Thrillkiller.
EARTH-38
Home of an armored Captain Atom and the Atomic Knights.
EARTH-39
Home of a Dan Garrett who has the Blue Beetle Scarab armor.
EARTH-40
A world where superheroes are active in the 1940s worked for the US government and were active against the Nazis, as seen in JSA: The Liberty Files, JSA: The unholy three and The whistling skull.
EARTH-41 & EARTH-42
Never revealed.
EARTH-43
A world where Batman became a vampire and fought against them, as seen in the Red Rain series.
EARTH-44

Doc Tornado and the Metal Men.

EARTH-45 to EARTH-47
Never revealed.
EARTH-48
Forerunner's homeworld, Warworld. Home of Viza Aziv and a blue skined Starman.
EARTH-49
Firestorm has turned the sun red. Superman and Supergirl have to wear Superboy-Prime style armor to keep powers.
EARTH-50
The Wildstorm Universe.
EARTH-51
The Utopian society. This world was protected by Nix Uotan and destroyed in the battle between Monarch and Superman Prime . The New Gods immigrated here following the Final Crisis.
EARTH-PRIME
Home of Superboy Prime . Revealed in Final Crisis: Legion of Three Worlds #5. Unlike Earth-2 that created duplicates of its lost inhabitants Earth Prime was missing Superboy Prime. May be part of the 52 but unrevealed so far. The numbering of this earth goes against the 52 canon.
ANTIMATTER UNIVERSE
Home to the planet of Qward, the Anti-Monitor and the Crime Syndicate of Amerika. On the Antimatter Earth, the Crime Syndicate rules with an iron fist, killing or imprisoning all those who endanger their rule. In the Antimatter Universe, evil will always triumph over good, as opposed to the positive-matter DC universe, in which the heroes usually win.

HOT PURSUIT EARTH (Unknown)

Home of Hot Pursuit, an alternate Barry Allen, who rides a super-fast cosmic motorcycle instead have his own powers. The number of his origin earth it was never revealed.

Post-Flashpoint / The Multiverse (2011-forward)

\"Post-Flashpoint
Post-Flashpoint - The Multiverse

The New 52 Multiverse is being explored in Multiversity. Although works similar to previous incarnations (by the earths occupying the same space but vibrating differently), there is a map showing the nature of the multiverse with worlds occupying specific zones divided by axis Order-Chaos & Pinnacle&Pit , which describes the nature of each earth.

Axis

Order

Chaos

Pinnacle

Classic, optimist basic style universes: earth-5 (Captain Marvel), earth-8 (Classic Marvel Comics), earth-34 (Astro City inspired world)Wacky, crazy funny and weird worlds: Earth-26 (Zoo Crew), earth-42 (Chibi JLA), earth-11 (gender reversed universe)

Pit

Grim 'n gritty, \"adult\" style worlds: earth-4 (Charlton like Watchmen), earth-35 (Liefeld like verse), earth-41( 90's Image)Dark, dystopic, deppresive, devilish worlds: earth-3 (Crime Syndicate), earth-10 (Nazi dominated earth), earth-43 (nightmare world of superpowered vampires).

Another characteristic of this multiverse is that every earth works as a physical and thematic opposition to the other located in the reverse position. Using the order/chaos & Pinnacle/Pit as overlapping coordinates and the house of heroes as axis, Earth-0 is opposed to Earth-33, Earth-1 is opposed to Earth-13, Earth-2 is opposed to Earth-3 , Earth-4 is opposed to Earth-42 and so.

The nature of the oppositions can vary: from the obvious (as in Earth-20/Earth-40, heroes and villains from pulp worlds) to the meta-textual (Earth-6/Earth-51, Stan Lee created world and Jack Kirby created world); similarities (Earth-15/Earth-17, both destroyed earths); differences (Earth-4, a mature serious inspired take on superheroes and Earth-42, a kid friendly and funny take on the characters); common origin (Earth-12/Earth-50, both alternate universes from the DCAU); subtle (Earth-23/Earth-41, both based in different kind of diversities); or not to be clear enough (Earth-8/Earth-44).

The new structure include several orbits and axis, including zones unofficial known as the Other worlds, the Cartoon Rim, the M***** Binary, the Brightlands, the Gloaming, the totalitarian Pairing and others areas still to be determinate.

Orrery of Worlds

Earth 0

Prime Earth AKA New Earth. The mainstream DC earth, keep the characteristic of previous Earth-0, New Earth and Earth-1, but including characters from Wildstorm and Vertigo lines. In this new iteration, the heroes are still young and starting in their carrers. This world is the keystone to the multiverse. Opposed to Earth-33.

Earth 1

OGN Universe. Home of beginning heroes. A world still forming and in flux where nothing is yet settled. This is the world where the line EARTH ONE of OGN is published, including the vol of Superman: Earth One, Batman: Earth One, Teen Titans: Earth One and soon Wonder Woman: Earth One, Flash: Earth One, and Aquaman: Earth One. Opposed to earth 13

Earth 2

A rebooted version of Golden age characters, now updated as a younger generations of heroes after an invasion of Apokolips and the destruction of the original heroic \"ternion\". Opposed to Earth-3.

Earth 3

The home world of the Crime Syndicate, evil versions of the JLA members. Now a scorched earth after being attacked by the Anti-monitor. Opposed to Earth-2.

Earth 4

\"Pax Americana\". Home of the action heroes of Charlton Comics (the same ones that inspired Watchmen), were they must confront political intrigues in a post 9-11 world. Main characters include: Captain Atom, Blue Beetle (Garret & Kord), Nightshade, Question (Vic Sage), Tiger, Sarge Steel and Peacemaker. Opposed to Earth-42.

Earth 5

Earth-S aka \"Thunderworld\". Home of Captain Marvel and Fawcett characters from the Captain Marvel family (Mary Marvel, Captain Marvel Jr. Uncle Marvel, Lieutenant Marvels, Talky Tawny) and their enemies the Sivana Family. A more gentle and bright world. Opposed to Earth-10.

Earth 6

Stan Lee's Just Imagine Universe. DC Characters reinvented by Stan Lee, where Superman is Salden, a stranded cop from Krypton, Wonder Woman wield the staff of Inca god Manco Capac and Batman is an ex-con turned crimefigther. Opposed to Earth-51.

Earth 7

\"Essential Major comics\" universe: A universe pretty much similar to earth-8 but with some differences and the promise of a better tomorrow. Now only chaos and madness reside there, after the attack of the Gentry. Home of the Thunderer. This universe reflects Ultimate Marvel comics. Other characters include Crusader, Walküre, Microbot and Devilfist. Opposed to Earth-22.

Earth 8

Major Comics, previously know as \"Angor\": Home of erzatz characters to Marvel Comics. In another universe they are published by a editorial by the name of Major Comics. Home of the teams of the Retaliators, the G-men and the Future Family, their inhabitants include: American CrUSAder, Behemoth, Ladybug, Wundajin, Machinehead, Deadeye, Lord Havok, Bug, Kite, Stuntmaster, Red Dragon, Major Max and Hyperius, among others. Opposed to Earth-44.

Earth 9

\"Tangent Comics Universe\" Home of the Tangent version of Earth-0 characters, the names are the same but the characters are different: Superman is a man of high intellect and mental power, Flash is a being of living light, Green Lantern is a magic item than resurrects the dead, Batman is an spirit animated armor and Atom is the most prominent hero of the world. Opposed to Earth-18.

Earth 10

Aka Earth-X, home of the \"Mastermen\". Where the Nazis won WW2 and influenced the world. Lead by Overman, the Master men (Leatherwing, Brunhilde, Blitzen and Underwaterman) are opposed by the terrorist Freedom Fighters from Uncle Sam, a ragtag team composed by survivors from the persecuted minories. This world includes the characters from Quality Comics. opposed to Earth-5.

Earth 11

Genderswaped. Shares a similar story with earth-0, but here genders are reversed. the superheroes works as the Justice Guild and include Superwoman, Batwoman, Aquawoman, Wonderous Man, Jesse Quick, Star Sapphire, Zatara, and Power Man. In this world, amazons of Paradise Island didn't recluse themselves and shared his culture with the rest of the world. Opposed to Earth-46.

Earth 12

Batman Beyond universe. A world technologically more advanced in a few decades, were Batman retires and a new Batman (Terry McGuinness) rises to join the Justice League Unlimited. Among their members includes Warhawk, Green Lantern Kai-Ro, Micron, Aquagirl, Big Barda and a older Superman. Based in the DCAU series from the same name. Opposed to Earth-50.

Earth 13

A Vertigo like universe, where Superdemon (Superman/Etrigan amalgam) leads the League of Shadows, a dark version of the Justice League than includes Hellblazer (John Constantine/Batman amalgam), Fate (Jared Stevens), Klarion, Ragman, Enchantress, Annataz, Deadman and Swamp Man. Note: Published as Alternative cover Multiversity: The Society of Super-Heroes #1. More info in Final Crisis: Secret Files #1. Opposed to Earth-1.

Earth 14

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free for be created by other authors). Superman #15 - Multiplicity Part 2 shows for the first time this earth, being the home of the Justice League of Assassins. Opposed to Earth-29.

Earth 15

A destroyed Utopia. With their physical laws destroyed, only the Cosmic Grial survived this universe. Opposed to Earth-17.

Earth 16

Earth-Me: Home of the Just, sons and daughters of heroes and villains who live in a utopic, crimeless world, acting as super-celebrities. Inhabitants include the Supersons (Chris Kent and Damian Wayne), Alexis Luthor, Sister Miracle, Menta, Bloodwynd, Gypsy, Offspring, Kyle Rayner, Wally West, Connor Hawke. Opposed to Earth-45.

Earth 17

Atomic earth. Home of the Atomic Knights of Justice, a mash-up of the Atomic Knights and the Justice League. They live in a post atomic holocaust earth where radioactivity and hope still burns. Lead by Captain Adam Strange, they fight for rebuilt their world. Opposed to Earth-15.

Earth 18

Wild west world. A world permanently frozen in the late 19th century technology and culture from the meddling of the Time Trapper, the Justice Riders protect this world. The characters are DC western characters mixed with DC main superheroes: Superchief, El Diablo, Madame 44, Bat-Lash, Cinnamon, Strongbow, Tomahawkman, Johnny Thunder. Opposed to Earth-9.

Earth 19

Gaslight Universe. A steampunk universe where the superhumans start to appear in the early Victorian England. Home of the Gaslight Bat Man, Amazonia Wonder Woman, the Accelerated Man and the Shrinking Man. Opposed to Earth-34.

Earth 20

Pulp-Earth. Home of Doc Fate and the SoS (Society of Superheroes). A pulp-like world just coming out of a world war. A decopunk technology earth, the most notable heroes include Inmortal Man, Lady Blackhawk, Mighty Atom and Green Lantern Abin Sur. Opposed to Earth-40.

Earth 21

New Frontier World. A world where JFK wasn't assassinated and stands to lead the pioneers and young science heroes of the Justice League against the threats of this world. Opposed to Earth-48.

Earth 22

Kingdom Come world. A world where after the reclusion of Superman, the new breed of Superhumans put the world in almost chaos until the return of the Man of Steel. Opposed to Earth-7.

Earth 23

Home of Calvin Ellis, Superman and President of the USA. Here, major superheroes are also predominately African-Americans (Nubia, Manhattan Guardian, Green Lantern John Stewart, Black Lightning, Cyborg, Steel, Vixen). Opposed to Earth-41.

Earth 24

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-30.

Earth 25

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-31.

Earth 26

Earth-C. Home of Captain Carrot and the Amazing Zoo Crew. Anthropomorphic super animals with characteristics similar to cartoon funny animals. The Just'a Lot of Animals also have a connection to this universe. Opposed to Earth-39.

Earth 27

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-32.

Earth 28

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-37.

Earth 29

Bizarro World. The underverse populated by Bizarro copies of the Justice League. (Alternate cover to The Multiversity: The Just #1) Opposed to Earth-14.

Earth 30

Red Son world. A world where Superman rocket fall in Ukraine and he became the champion of Communism. To oppose him, Lex Luthor built super weapons such as the American Bizarro and the Green Lantern Marine Corps. Also opposing him are Batman, a Russian insurgent and Atom, an American spy. Opposed to Earth-24.

Earth 31

Pirate world. Based on the elseworlds of Detective Comics Annual #7, this is a pirate dominated world of Captain Leatherwing set in a post Global Warming earth. Opposed to Earth-25.

Earth 32

\"Amalgam world\" Home of In Darkest Knight Green Lantern Bruce Wayne, but includes other mash-up characters in the same line of Amalgam Comics but using only DC characters: Supermartian (Superman plus Martian Manhunter), Aquaflash (Flash plus Aquaman), Wonderhawk (Wonder Woman plus Hawkgirl), Black Arrow (Black Canary plus Green Arrow). Opposed to Earth-27.

Earth 33

Earth-Prime,\"Ultra Comics\". Home of Ultra Comics. A world without superheroes, where all the other worlds are fiction only existing in movies, tv series or comic books. The real world or a close erzats world. The world where you live. opposed to Earth-0.

Earth 34

\"Cosmoville\" Astro City doppelganger world. Home of the Light Brigade, than includes: Goodfellow, Herculina, Stingray, White Ghostman, Cutie, Formula-1, Radman, Master Motley and Savior last survival of the supercivilization of Mu. Opposed to Earth-19.

Earth 35

\"Rob Liefeld Universe\". Also known as the Pseudoverse Built by Monitors ideominers, this world houses Supremo and the Super-Americans, among them Majesty, Queen of Venus, Mercury-Man, the Owl, Starcop, Olympian, Morphing Man. Opposed to Earth-47.

Earth 36

Home of Optiman, Flashlight, Iron Knight, Red Racer War-Woman, Blackbird, Mer-Man, Cyberion, and Bowboy, members of Justice 9. Optiman was killed by Superdoom. (Action Comics #9) Opposed to earth 38

Earth 37

Howard Chaykin world. Based on Thrillkiller and Twilight graphic novels. A futuristic world where lawless heroes and cynic savior run free. In the late 50s, early 60s, Batgirl and Robin were the protectors of Gotham. Opposed to earth 28

Earth 38

John Byrne World. Based on Generations. A world where Batman and Superman started in the late 30s and their careers followed the same rhythm than Earth-33, with their respective legacies. Opposed to Earth-36.

Earth 39

Wally Wood world. Based on THUNDER Agents. World of Agents of WONDER. A UN division of superspies with artifact that inflict damage and are addictive. Created by Happy DaVinci, Cyclotron, Corvus, Dr. Nemo, Accelerator and Psi-man protect the world. Opposed to Earth-26.

Earth 40

Counter-World. Opposite world to Earth-20, a dark pulp world, dieselpunk technology style. A world where the super beings join the Society of Supercriminals, including Vandal Savage, Lady Shiva, Doc Faust, Blockbuster, Count Sinestro. Opposed to Earth-20.

Earth 41

Erzats Image Comics Universe. Home of 90's Image comics characters doppelgangers: Dino-Cop (Savage Dragon),Spore (Spawn), Fletch (Shaft), Vague (Vogue), Flintstein (Badrock), Sepulchre (Chapel), Nightcracker (Diehard?),Scorpion (alternate Batman, possible Dr. Midnite or Shadowhawk erzats). The premier team of this universe is the Nimrod Squad (Youngblood). Opposed to Earth-23.

Earth 42

Home of the Lil' Leaguers. Their Superman was killed by Superdoom (Action Comics #9). Wonder Woman and Steel of this world are still in active. There is a terrible secret in this world that all the heroes are robot sleeper agents of Empty Hand. Opposed to Earth-4.

Earth 43

Red Rain world. A world filled with darkness and death and ruled by a breed of super-powered vampires. Inspired by the Red Rain elseworlds saga. Home of the Blood League than Includes Red Rain Batman, Vampire Ultraman, vampire versions of Wonder Woman, Green Lantern, Cyborg, Flash and Robin. (Alternate cover for Pax Americana) Opposed to Earth-49.

Earth 44

Home of the Metal League, a team of robots replicas of the Justice League, created by the unstable supergenius Doc Tornado. Opposed to Earth-8.

Earth 45

Home of Superdoom and its creators, Clark Kent, Lois Lane and James Olsen (Action Comics #9). This world is controled in every aspect by Overcorp, a multinational corporation. Opposed to Earth-16.

Earth 46

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-11.

Earth 47

Dreamworld. Home of the Love Syndicate, financed by Prez and lead by Sunshine Superman, this is the home of Shooting Star, Brother Power, Speed Freak and Magic Lantern. Opposed to Earth-35.

Earth 48

\"Warworld, the Super-Earth\" . Home of the Foreruners race, this is a world where everybody (including all non human life) have superpowers, from pets to bacteria and billions more. Home of Lord Volt and Lady Quark, the Royal couple, they are part of the Royal Family than includes Viza Aziv, Brother Eyes, Liana, Kid Vicious, Danger Dog and Antarctic Monkey. Opposed to Earth-21.

Earth 49

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-43.

Earth 50

Justice Lords earth. Based in the DCAU alternate world of the Justice Lords. Pretty much similar to Squadron Supreme universe. Opposed to Earth-12.

Earth 51

Jack Kirby's Earth AD (after disaster). World where the adventures of OMAC and Kamandi take place. Opposed to Earth-6.

The Elseworld

One of the new opposite new centers of the Multiverse after the events of Death Metal.

Earth Omega

One of the new opposite new centers of the Multiverse after the events of Deth Metal.

The Bleed

The space between universes.

Rock of Eternity

Located at the heart of the Multiverse, origin of all magic. It being orbited by the House of Heroes.

Beyond the Orrery

Overvoid

Contains Monitor-Mind The Over-Void

Source wall

Contains the local multiverse.

Monitorsphere

Contains the monitor World, Nil.

Sphere of the gods

Contains all the myths and fictional or imaginary creations from all the cultures.

Apokolips-New Genesis

Exists outside of the standard earths and have access to all of them. Darkseid was powerful enough to attack a lot of them simultanously. Their worlds stand in the Sphere of the Gods of the Multiverse.

Nightmare-Dream

Set in opposite extremes.

Order-Chaos

Set in opposite extremes, connected to Dream and Nightmare respectively.

Limbo

Where all the discarded and forgotten inhabitants of the universe end.

Wonderworld & Bloodmoon

Worlds of the border on the speedforce, Set in opposite extremes they orbit the external wall beyond. The bloodmoon had became the new earth-2.

Speedforce wall

Separates the multiverse from the sphere of the gods.

KWYZZ

Radioland, home of Krakkl.

Dark Multiverse

The nature of the dark multiverse has been defined as the rolling cauldron of possibillities where new universes are forged . It is the place where the new universes are born, composed of the fears and hopes of the living beings and the most stable rise into the Orrery of worlds. It has being described as the home of the stories than never should be. The known worlds of the dark multiverse mirror their numerical analogs and are catalogued in negative numbers. Also, at difference of the other worlds, these universes were less stable in existence and soon they were destroyed by the nature of the dark multiverse itself.

Earth -1

Home of the Devastator, Earth -1 resembles the earth of the One Earth Regime world, the Injustice universe, a world where Superman became corrupt and Batman have to become a Doomsday like monster to stop him.

Earth -11

World of origin of the Drowned aka Bryce Wayne. As their prime Multiverse counterpart, earth 11, this is a world of reversed genders.

Earth -12

World of origin of the Merciless. A world devastated for the god Ares, where Batman, in love with Wonder Woman, fallen under the corruption of a mystic helmet. After decades of war and the destruction ofhis universe, the Merciless joined the Dark Knights. This universe is analor to earth 12, the Batman Beyond/Justice League Unlimited/DCAU universe.

Earth -22

Universe of the Batman who Laughs, an universe where the Joker infected Batman with the Joker toxin ad made him a newer, deadlier version of him and starting a bloody legacy.

Earth -32

World of origin of the Dawnbreaker, where a 8-yearsold Bruce Wayne take a green lantern ring. This world is analog to the BatLantern universe, Earth-32.

Earth -44

World of origin of the Murder Machine, where Batman becomes fused with nanites and becomes a technological horror. This world is analog to the Metal Justice League universe, Earth-44.

Earth -52

A world destroyed by somekind of crisis, where an aging Batman tried to steal the Flash speed force, fusing himself with him and becoming the Red Death. This universe makes reerence to the Flashpoint event and the New52 reboot.

Major Story Arcs

Pre-Crisis / The Multiverse:

Flash of two worlds

\"Flash
Flash of two worlds

It began with the team-up of the original Flash Jay Garrick and the Silver Age Flash Barry Allen in the now famous Flash of two worlds story. To explain the existence of both characters, Gardner Fox created the concept of Multiverse, as both characters were the Flash from different earths. Later the JSA and the JLA would work together in what would convert in a traditional reunion. Using this tool, DC recovered the previous incarnations o the characters.

The multiverse would be used (and abused) to introduce characters from different editorial acquired by DC (like Fawcett, Quality and Charlton characters) or just to try different stories outside the continuity (imaginary stories as the Superman red and Superman blue) and explain contradictions (Kamandi and Batman encounters, or the introduction of Earth-2 Superman, among others).

Post-Crisis / DC Universe:

Crisis of Infinite Earths: the Cluster earth

The Multiverse concept would be abandoned after the celebrated Crisis on Infinite Earths for almost twenty years. The characters from different earths now lived together in a clustered earth and changed a lot of concepts (like Superman being the first Superhero of the world), but introduced others new (the legacy hero concept).

Despite that, the alternate universe continued popping in some fashion or other with Elseworlds tales, imaginary stories, alternate timelines or dreamed realities, with a lot of them resembling previous alternate worlds.

Hypertime

One prominent effort to do that was the creation of Hypertime by writers Grant Morrison and Mark Waid, whom wanted to use the successfully Elseworld Kingdom Come as an starting point to bring back the alternate earths and the multiverse but their efforts didn't thrive and the hypertime concept wasn't used beyond some efforts.

Post-52 Weeks / The Multiverse:

Infinite Crisis and 52 Weeks: The return of the multiple earths

It was Geoff Johns with Infinity Crisis who brought back a glimpse of the previous Multiverse before along with Waid, Morrison and Greg Rucka in the weekly 52 brought the concept back in proper fashion, with a multiverse of 52 unexplored universes than resembled strongly the original one from before the crisis but included others as the Kingdom Come earth, the Wildstorm universe and the Tangent line.

During this age multiple earths would be explored and would be used in different stories, as also was hinted the presence of people of other earths living among the characters of the main earth.

Post-Flashpoint / The Multiverse:

Flashpoint

However, a new reboot caused after Flashpoint, dubbed the New52 changed the multiverse yet again: this time the main earth (re-branded as Prime Earth by Dan DiDio, DC co-publisher) included the characteristics of the Wildstorm Universe and Vertigo characters. Also Earth 2 was radically different, with some of the Golden Age characters transformed into a younger generation of heroes in a world in war against Apokolips. Also, now Apokolips and New Genesis exists outside the Orrery of Worlds which contains the 52 known universes

However the multiverse still has a stronger presence with characters from other universes making pivotal appearances as last seen in Forever Evil.

Multiversity

A more deep exploration of the multiverse has been provided by Grant Morrison in his series Multiversity. The 52 universes are pretty much similar to their previous incarnation but they have key differences (i.e. the previous version of Earth-40 Pre-Flashpoint, a world of WW2 super agents, is different from the New 52 Earth 40, a world of pulp super-villains).

Convergence

During Convergence, several cities from previous multiverses appeared briefly before being send again to their proper realities. However is implied than the effects of this action in some way affected the multiverse, making it again infinite in the number of earths. However the status of the present existent earths was kept unchanged.

Dark Nights Metal

A new mystery related to the multiverse has been revealed in Dark Nights Metal. When the Justice League investigated the appearance of a mountain in Gotham City, the Blackhawk Squadron explained to the existence of a \"Dark Multiverse\", which is the origin of the mythic Nth Metal of Hawkman. Barbatos, the dark dragon ruling this multiverse, tried and failed to pull the positive matter Multiverse into the dark. Though stopping Barbatos had no known effect on any universes beyond Earth 0, the Justice League's efforts accidentally punched a hole in the Source Wall, exposing the universe to new threats from beyond the Wall's borders and creating new dangers within their universe.

Other Media

Television

CW's The Flash

In the second season of CW series The Flash, Jay Garrick made his debut revealing the existence of a parallel universe. The episode, inspired in the classic \"Flash of two worlds\" introduce the concept of multiverse to the series. The multiverse concept will be a pivotal plot point for the second season.

CW' s MULTIVERSE

Earth 1

Mainstream earth home of Barry Allen (Flash) and Oliver Queen (Arrow).

Earth 2

Alternate universe home of Jay Garrick (the Flash), an alternate version of Harrison Wells and a race of intelligents gorillas located in Gorilla City. Several metahumans from this universe had invaded the main earth including: Dr. Light, Atom Smasher and Sand Demon.

Earth 3

Home of the real Jay Garrick.

Earth 12

Home of Harrison Wolfgang Wells, a member of the council of Wells.

Earth 13

Home of Wells the Grey, a member of the council of Wells.

Earth 15

A world destroyed, completely lifeless.

Earth 19

A world which suffered an invasion from another earth and banned the interdimensional travel. To prevent this, developted special agents called collectors to track and hunt interdimentional voyagers around the multiverse. An inhabitant of earth 19, Harrison R. Wells, traveled to earth 1 and was tracked by Gypsy, the best Collector. This is also the home of the Accelerated man.

Earth 22

Home of Wells 2.0, a member of the Council of Wells.

Earth 24

Home of Sonny Wells, a member of the Council of Wells.

Earth 25

Home of H. P. Wells, a member of the Council of Wells.

Earth 38

Home universe of CW's Supergirl. In her universe there is also other superbeings included Superman, Martian Manhunter and Guardian.

Earth 47

Home of H. Lothario Wells, a member of the Council of Wells.

Earth X / Earth 53

An universe where the Nazis won World War 2 and rule with an iron fist, and the superheroes are the Nazi agents analogs to the ones from Earth-1 and 38.

Earth 90

Home universe of The Flash (1990). On this Earth John Diggle was a Green Lantern. This world was destroyed by The Monitor.

Earth 221

Home of Harrison Sherloque Wells, the multiverse's greatest detective. He is currently a member of team Flash.

DCAU Multiverse

The multiverse was also used by the producers of the animated shows Superman:The animated series and expanded in the Justice League & Justice League Unlimited Animated series.

Earth: DCAU

The main earth of the DC animated universe, where Batman and Superman debuted and joined forces in the Justice League along with Wonder Woman, Flash (Wally West), Green Lantern (John Stewart), Martian Manhunter, and Hawkgirl. Here Batman and Wonder Woman would developted a romance and later the League would expand their roster to several superbeings after a thanagarian invasion. In Dakota City a teenage Static would shock the world and beyond in the future a new Batman would rise to fight injustice in a cyberpunk Gotham City.

Earth: Brave New Metropolis

A world where the death of Lois Lane make Superman join forces with Luthor.

Earth: Justice Guild of America

A world where the nuclear world happened and their heroes, the Justice Guild of Americ couldn't stop it and died. And a powerful mutant created mind projected replicas who started to think by themselves. They were inspired in the original Justice Society of America. Ray Thompson, mutant inspired in Brainwave, was a homage to comic writer and editor Roy Thomas.

Earth: Justice Lords

A darker world where the death of Flash caused by president Lex Luthor motivated to the members of the Justice League to take more radical and active action against injustice, transforming themselves into global dictators. This earth would serve as reference for the post-Flashpoint Earth 50.

Earth: Gods and Monsters

Allegedly. Produced by Bruce Timm (one of the main architechs behind the DCAU and using the same characters design style), this is a world where the Trinity is radically different and darker: Superman is the son of Zod raised by illegal mexican immigrants as Hernan Guerra, Batman is a vampire Kirk Langstrom and Wonder Woman is new goddess Bekka, hidding on earth. If this story is tied to the DCUA, beyond its creator is still unknown.

Earth D

Created for the follow up comic Justice League Infinity. Based on the the original earth D, home of the Justice Alliance. Its heroes are more racially diverse.

Earth-X

Created for the follow up comic Justice League Infinity. Based on the original earth X. An earth were the nazis won World War Two, ruled by Vandal Savage and Overman.

Earth Heroic Darkseid

Created for the follow up comic Justice League Infinity. An universe where Darkseid renounce to his ways after falling in love with Wonder Woman. Sadly, in his hubris and blindness he released the Anti Life entity and destroyed all life, leaving him and Hades as the only living entities.

Earth AMAZO II

Created for the follow up comic Justice League Infinity. AN earth where there was no Justice League, but AMAZO was created. This AMAZO developted conscience but not empathy and battled mankind until the destruction of earth. Later, he fought against Highfather Darkseid and asimilated the Antilife equation.

Smallville Multiverse

In the live action series Smallville, there was also a stablished multiverse with at least one parallel world explored. After the end of the tv series this multiverse would be expanded and explored in the series Smallville Season eleven and Smallville: Continuity. The nature of this universe was different as with the objetives of the Monitors, who where destroying parallel earths instead saving them.

The exact number of parallel worlds is unknown.

Earth, Earth-1 or Earth-?

Where the main adventures of the Smallville universe happens. Their exact denomination is unknown, so is used the earth-1 name to difference from their counterparts.
Earth-2
A world where Kal-El was adopted by Lionel Luthor. His upbring would lead to became the evil Ultraman. Note: This was the only world which was explored in the live action series.
Earth-9
A destroyed parallel world when it collided with Earth-37.
Earth-13
A world where Clark Kent was a normal human and wannabe hero and Bruce Wayne was a psychopathic killer. This world was destroyed but Clark and Bruce escaped.
Earth-37
A destroyed parallel world when it collided with Earth-9.
Earth-Majestic
Here, Clark Kent became the superhero know as Mister Majestic.
Earth-Omega
A world which was conquered by Darkseid during his original attack. (Smalville tv series, last season).

Games

Infinite Crisis: Fight for the multiverse

As part of promotion of the game Infinite Crisis, DC launched a digital first comic initiative based on the game and scripted by Andy Lanning. The story take the champions from different universes and put them together to fight an unknown menace. The description of some of the universe are similar yet not the same as the post-Flashpoint multiverse.

Earth-0: Prime Universe

This is the equivalent to Prime earth in the actual DC comics, where its champions (mostly) resembles the new52 version of the characters. Exceptions are Robin, Harley Quinn and Doomsday.

Earth-13: Arcane Universe

The Shadow League, a cabal of twisted sorcerers, lusted for absolute rule over Earth. Blinded by ambition, they performed a ritual that extinguished the Sun. With eternal night blanketing the Earth, the world's most powerful magicians united to reignite the Sun, but its new arcane heart forever altered life on Earth. Heroes and villains have since adapted to their magically infused environment, developing strange new abilities. This world was only hinted in the pre-Flashpoint list, but was never developed.

Earth-17: Atomic Universe

As the Cold War was brewing between the world’s superpowers, a mysterious object from space crashed into Kansas. Mistaking the crash for a first strike, the United States unleashed its full nuclear arsenal against the Soviet Union, who retaliated. The ensuing nuclear war instantly vaporized 97% of all life Earth. The survivors hope the Earth can be healed, but the nuclear aftermath has left them with scars that never will. this world is based on Earth-17 from pre Flashpoint list, the home of the Atomic Knights after the great disaster.

Earth-19: Gaslight Universe

The Victorian era has swept the Earth and a prosperous Age of Invention has revolutionized society through powerful steam technology, and this amazing progress is only the beginning. Heroes and villains have begun to emerge from all corners of society, and with them bring new sources of power and problems far stranger than steam and gas lights. This world is based in Batman: Gotham by Gaslight and Earth-19 from pre Flashpoint list.

Earth-43: Nightmare Universe

Tales of horrors prowling the night were once just legends on this Earth - until the darkness returned. Ancient and terrible powers beyond comprehension awoke and brought with them an army of monsters. In fighting these creatures, some heroes have fallen, twisting into monsters themselves. Heroes and villains have set aside old rivalries and are united in fighting darkness that threatens to engulf their world forever. This world is based in the Batman: blood rain series, the Earth-43 from pre Flashpoint list.

Earth-44: Mecha Universe

In this universe, there were no heroes, until a league of scientists known as the Justice Consortium created them. Technology had always been advanced on this Earth, but these new robotic creations were able to think and feel, and wielded powers beyond anything yet seen. They now defend the Earth from threats within and beyond, particularly the Doom Legion and their villainous assassin bots. This world is based in the one panel mention of the metal men from Earth-44 as told in Final Crisis #7.

Based on the the original earth D,

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-117643/","id":117643,"name":"Superman Vs. It","issue_number":"162"},"id":43603,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/4010036-multiverse%20map.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/4010036-multiverse%20map.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/4010036-multiverse%20map.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/4010036-multiverse%20map.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/4010036-multiverse%20map.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/4010036-multiverse%20map.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/4010036-multiverse%20map.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/4010036-multiverse%20map.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/4010036-multiverse%20map.jpg","image_tags":"All Images"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946065/","id":946065,"name":"Will to Survive, Part Four: The Great Divide","site_detail_url":"https://comicvine.gamespot.com/multiversity-teen-justice-4-will-to-survive-part-f/4000-946065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946061/","id":946061,"name":"Chapter Four: Crossovers","site_detail_url":"https://comicvine.gamespot.com/dark-crisis-4-chapter-four-crossovers/4000-946061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946062/","id":946062,"name":" \t The Clockwork Killer, Chapter Five: The Joke's On Me","site_detail_url":"https://comicvine.gamespot.com/flashpoint-beyond-5-the-clockwork-killer-chapter-f/4000-946062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-934928/","id":934928,"name":"The Clockwork Killer, Chapter Three: The Secret of the Super-Man","site_detail_url":"https://comicvine.gamespot.com/flashpoint-beyond-3-the-clockwork-killer-chapter-t/4000-934928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-934932/","id":934932,"name":"Chapter Two: Fall of the Titans","site_detail_url":"https://comicvine.gamespot.com/dark-crisis-2-chapter-two-fall-of-the-titans/4000-934932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-928347/","id":928347,"name":"Team-Up; Life of Purpose; Survivors; The Pariah; Because the Night","site_detail_url":"https://comicvine.gamespot.com/justice-league-road-to-dark-crisis-1-team-up-life-/4000-928347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924586/","id":924586,"name":"Stargirl","site_detail_url":"https://comicvine.gamespot.com/earth-prime-4-stargirl/4000-924586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918157/","id":918157,"name":"The Anniversary; Father's Day; Controlled Burn","site_detail_url":"https://comicvine.gamespot.com/earth-prime-batwoman-2-the-anniversary-fathers-day/4000-918157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-919214/","id":919214,"name":"Death of the Justice League","site_detail_url":"https://comicvine.gamespot.com/justice-league-75-death-of-the-justice-league/4000-919214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909493/","id":909493,"name":"Worlds End","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-5-worlds-end/4000-909493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909595/","id":909595,"name":"Part I","site_detail_url":"https://comicvine.gamespot.com/war-for-earth-3-1-part-i/4000-909595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913018/","id":913018,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/war-for-earth-3-2-part-5/4000-913018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905299/","id":905299,"name":"Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-4-worlds-collide/4000-905299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905296/","id":905296,"name":"The Beginning of the End","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-12-the-beginning-of-the-end/4000-905296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901106/","id":901106,"name":"The Mirror Crack'd, Part Seven","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-7-the-mirror-crackd-part-s/4000-901106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901104/","id":901104,"name":"One Last Job","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-11-one-last-job/4000-901104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901093/","id":901093,"name":"Lost in the Worlds","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-3-lost-in-the-worlds/4000-901093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916775/","id":916775,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-1/4000-916775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-899049/","id":899049,"name":"Worlds Gone Mad!","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-2-worlds-gone-mad/4000-899049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897158/","id":897158,"name":"The Mirror Crack'd Part Six","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-6-the-mirror-crackd-part-s/4000-897158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920577/","id":920577,"name":null,"site_detail_url":"https://comicvine.gamespot.com/crime-syndicate-bose-neue-welt-1/4000-920577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895902/","id":895902,"name":"The Worlds Outside Your Window","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-1-the-worlds-outside-your/4000-895902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891943/","id":891943,"name":"The Crack'd Mirror Part Five","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-5-the-crackd-mirror-part-f/4000-891943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891949/","id":891949,"name":"In the Beginning","site_detail_url":"https://comicvine.gamespot.com/dark-knights-of-steel-1-in-the-beginning/4000-891949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906358/","id":906358,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/teen-titans-godc-super-hero-girls-exchange-student/4000-906358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891947/","id":891947,"name":"Empire of Shadows","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-authority-special-1-empire-of-shado/4000-891947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-888321/","id":888321,"name":"The Crack'd Mirror Part Four","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-4-the-crackd-mirror-part-f/4000-888321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883733/","id":883733,"name":"The Crack'd Mirror Part Three","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-3-the-crackd-mirror-part-t/4000-883733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883732/","id":883732,"name":"Infinite Multiverses","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-6-infinite-multiverses/4000-883732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884654/","id":884654,"name":"Afterworlds Finale; Sisterhood","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-779-afterworlds-finale-sisterhood/4000-884654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884587/","id":884587,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-fortnite-zero-point-batman-day-special-edit/4000-884587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-876284/","id":876284,"name":"The Crack'd Mirror Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-league-infinity-2-the-crackd-mirror-part-t/4000-876284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882794/","id":882794,"name":"Infinite Evil","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-5-infinite-evil/4000-882794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878418/","id":878418,"name":"Infinite Betrayal","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-4-infinite-betrayal/4000-878418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878437/","id":878437,"name":"Afterworlds Part 8; Young Diana in Truth Hurts","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-777-afterworlds-part-8-young-diana-in/4000-878437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-870559/","id":870559,"name":"Infinite Lies","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-2-infinite-lies/4000-870559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873993/","id":873993,"name":"Infinite Incorporated","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-3-infinite-incorporated/4000-873993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-867841/","id":867841,"name":"Earth-3 Part 1","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-5-earth-3-part-1/4000-867841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862623/","id":862623,"name":"Prisms Part Five; Visions of Fate","site_detail_url":"https://comicvine.gamespot.com/justice-league-63-prisms-part-five-visions-of-fate/4000-862623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862624/","id":862624,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-the-source-of-freedom-2-part-two/4000-862624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864705/","id":864705,"name":"Make Time","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-secret-files-1-make-time/4000-864705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862622/","id":862622,"name":"Infinite Mystery","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-1-infinite-mystery/4000-862622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856437/","id":856437,"name":"First In War, First In Pieces Part 1: Emerald Light; Walls Closing In","site_detail_url":"https://comicvine.gamespot.com/crime-syndicate-4-first-in-war-first-in-pieces-par/4000-856437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862453/","id":862453,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/future-state-justice-league-1-tpb/4000-862453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844019/","id":844019,"name":"Prisms Part Two; Dangerous Things","site_detail_url":"https://comicvine.gamespot.com/justice-league-60-prisms-part-two-dangerous-things/4000-844019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844015/","id":844015,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/batmanfortnite-zero-point-1-part-one/4000-844015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856247/","id":856247,"name":"The Two Totalities","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-secret-files-4-the-two-totalitie/4000-856247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-831250/","id":831250,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-0/4000-831250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843925/","id":843925,"name":"Make Time","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-secret-files-1-make-time/4000-843925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823806/","id":823806,"name":"An Anti-Crisis Part VII: A Slap In the Face; The Big Rock","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-7-an-anti-crisis-part-vii-/4000-823806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827777/","id":827777,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-planetary-1-hc/4000-827777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821190/","id":821190,"name":"Multi-Crisis On Intimate Earths!","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-season-two-10-multi-crisis-on-in/4000-821190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820471/","id":820471,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dcs-very-merry-multiverse-1/4000-820471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823032/","id":823032,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tales-from-the-dark-multiverse-dark-nights-metal-1/4000-823032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821759/","id":821759,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-the-secret-origin-1/4000-821759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818625/","id":818625,"name":"An Anti-Crisis Part V: The Man of No Tomorrow","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-5-an-anti-crisis-part-v-th/4000-818625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819872/","id":819872,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-season-two-1-volume-1/4000-819872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814046/","id":814046,"name":"[Untitled]; The Weight of Leadership","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-rise-of-the-new-god-1-unti/4000-814046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817200/","id":817200,"name":"World's Vilest","site_detail_url":"https://comicvine.gamespot.com/superman-man-of-tomorrow-19-worlds-vilest/4000-817200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-804749/","id":804749,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-multiverses-end-1/4000-804749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-804748/","id":804748,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batmansuperman-annual-1/4000-804748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797688/","id":797688,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-trinity-crisis-1/4000-797688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-809809/","id":809809,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-the-complete-collection-1-tpb/4000-809809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-778244/","id":778244,"name":"An Anti-Crisis Part II: Be the Fern","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-2-an-anti-crisis-part-ii-b/4000-778244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-790237/","id":790237,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-justice-league-of-america-the-silver-age-omnib/4000-790237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768300/","id":768300,"name":"An Anti-Crisis Part I: It All Matters","site_detail_url":"https://comicvine.gamespot.com/dark-nights-death-metal-1-an-anti-crisis-part-i-it/4000-768300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-804581/","id":804581,"name":"","site_detail_url":"https://comicvine.gamespot.com/milestone-returns-0/4000-804581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-774467/","id":774467,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flash-forward-1-tpb/4000-774467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-771787/","id":771787,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-paragons-rising-the-delu/4000-771787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768237/","id":768237,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-2-part-2/4000-768237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739381/","id":739381,"name":"The Flash Age, Part One; Beer Run; Why You?; Flash of All Worlds!; At the Starting Line...; Flash Forward: Epilogue","site_detail_url":"https://comicvine.gamespot.com/the-flash-750-the-flash-age-part-one-beer-run-why-/4000-739381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737001/","id":737001,"name":"Finale","site_detail_url":"https://comicvine.gamespot.com/gotham-city-monsters-6-finale/4000-737001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738541/","id":738541,"name":"Dial F For Finale!","site_detail_url":"https://comicvine.gamespot.com/dial-h-for-hero-12-dial-f-for-finale/4000-738541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738518/","id":738518,"name":null,"site_detail_url":"https://comicvine.gamespot.com/flash-123-facsimile-edition-1/4000-738518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738514/","id":738514,"name":null,"site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-giant-2/4000-738514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735364/","id":735364,"name":"The Heart of Emptiness","site_detail_url":"https://comicvine.gamespot.com/green-lantern-blackstars-3-the-heart-of-emptiness/4000-735364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731928/","id":731928,"name":"Miguel and Summer Travel the Multiverse","site_detail_url":"https://comicvine.gamespot.com/dial-h-for-hero-10-miguel-and-summer-travel-the-mu/4000-731928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735362/","id":735362,"name":"Dear Dad","site_detail_url":"https://comicvine.gamespot.com/dial-h-for-hero-11-dear-dad/4000-735362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733635/","id":733635,"name":"Chapter Five: Reunion","site_detail_url":"https://comicvine.gamespot.com/flash-forward-5-chapter-five-reunion/4000-733635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733615/","id":733615,"name":null,"site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-giant-1/4000-733615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731327/","id":731327,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-hell-arisen-1-part-one/4000-731327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731306/","id":731306,"name":"Chapter Four: Flash of Two Worlds","site_detail_url":"https://comicvine.gamespot.com/flash-forward-4-chapter-four-flash-of-two-worlds/4000-731306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731287/","id":731287,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-the-day-the-stars-fell-1-volume-/4000-731287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723830/","id":723830,"name":"The Many Transformations of Robby Reed","site_detail_url":"https://comicvine.gamespot.com/dial-h-for-hero-8-the-many-transformations-of-robb/4000-723830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721053/","id":721053,"name":"Lost in the Multiverse Part 3","site_detail_url":"https://comicvine.gamespot.com/young-justice-9-lost-in-the-multiverse-part-3/4000-721053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-722982/","id":722982,"name":"Chapter Two: The Line Forms On the Left","site_detail_url":"https://comicvine.gamespot.com/flash-forward-2-chapter-two-the-line-forms-on-the-/4000-722982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725233/","id":725233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tales-from-the-dark-multiverse-the-death-of-superm/4000-725233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-722996/","id":722996,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tales-from-the-dark-multiverse-batman-knightfall-1/4000-722996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719311/","id":719311,"name":"Only Luthor","site_detail_url":"https://comicvine.gamespot.com/lex-luthor-year-of-the-villain-1-only-luthor/4000-719311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720032/","id":720032,"name":"New Voices","site_detail_url":"https://comicvine.gamespot.com/action-comics-1015-new-voices/4000-720032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718659/","id":718659,"name":"Lost in the Multiverse Part 2","site_detail_url":"https://comicvine.gamespot.com/young-justice-8-lost-in-the-multiverse-part-2/4000-718659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720055/","id":720055,"name":"Crisis of Infinite Scoobys","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-team-up-50-crisis-of-infinite-scoobys/4000-720055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717390/","id":717390,"name":"Who Are the Secret Six? Part One","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-1-who-are-the-secret-six-part-one/4000-717390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717399/","id":717399,"name":"Justice/Doom War Part 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-30-justicedoom-war-part-1/4000-717399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715217/","id":715217,"name":"Guardians of the Multiverse","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-10-guardians-of-the-multiverse/4000-715217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718646/","id":718646,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-nights-the-batman-who-laughs-1-special-editio/4000-718646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714161/","id":714161,"name":"Secret Origins of the Heroverse!","site_detail_url":"https://comicvine.gamespot.com/dial-h-for-hero-5-secret-origins-of-the-heroverse/4000-714161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713420/","id":713420,"name":"Lost in the Multiverse Part 1","site_detail_url":"https://comicvine.gamespot.com/young-justice-7-lost-in-the-multiverse-part-1/4000-713420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714621/","id":714621,"name":null,"site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-annual-3/4000-714621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713412/","id":713412,"name":null,"site_detail_url":"https://comicvine.gamespot.com/naomi-6/4000-713412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717048/","id":717048,"name":"Crisis of Infinite Scoobys Part 1","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-team-up-99-crisis-of-infinite-scoobys-p/4000-717048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709170/","id":709170,"name":null,"site_detail_url":"https://comicvine.gamespot.com/naomi-5/4000-709170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711254/","id":711254,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-tom-strong-and-the-terrifics-1-volum/4000-711254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706389/","id":706389,"name":"The First Crisis","site_detail_url":"https://comicvine.gamespot.com/justice-league-22-the-first-crisis/4000-706389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708088/","id":708088,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-companion-deluxe-edition/4000-708088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704799/","id":704799,"name":"The Terrifics No More! Part 4","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-14-the-terrifics-no-more-part-4/4000-704799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703922/","id":703922,"name":"The Sixth Dimension! Chapter 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-20-the-sixth-dimension-chapter-2/4000-703922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706388/","id":706388,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-1-hctpb/4000-706388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701923/","id":701923,"name":"The Terrifics No More! Part 3","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-13-the-terrifics-no-more-part-3/4000-701923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700652/","id":700652,"name":"Into the Bleed Part Two","site_detail_url":"https://comicvine.gamespot.com/titans-34-into-the-bleed-part-two/4000-700652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699385/","id":699385,"name":"The Terrifics No More! Part 2","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-12-the-terrifics-no-more-part-2/4000-699385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696344/","id":696344,"name":"The Terrifics No More! Part 1","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-11-the-terrifics-no-more-part-1/4000-696344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696335/","id":696335,"name":"The King of Castle Grayskull","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-6-the-king-of/4000-696335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701287/","id":701287,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/dc-elseworlds-justice-league-3-volume-three/4000-701287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693439/","id":693439,"name":"The Vengeance of Skeletor","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-5-the-vengean/4000-693439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691365/","id":691365,"name":"Just Rifting Here; The Unseen","site_detail_url":"https://comicvine.gamespot.com/sideways-annual-1-just-rifting-here-the-unseen/4000-691365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692039/","id":692039,"name":"Force Quest Part One","site_detail_url":"https://comicvine.gamespot.com/the-flash-58-force-quest-part-one/4000-692039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690795/","id":690795,"name":"The Ultimate Battlleground","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-4-the-ultimat/4000-690795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685820/","id":685820,"name":"City of Darkness","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-3-city-of-dar/4000-685820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688305/","id":688305,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-meet-the-terrifics-1-vol-1/4000-688305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680716/","id":680716,"name":"Tom Strong & the Terrifics Part One","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-7-tom-strong-and-the-terrifics-part-/4000-680716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679976/","id":679976,"name":"The Double-Edged Sword","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-2-the-double-/4000-679976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679388/","id":679388,"name":"Grips of Strength Part 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-52-grips-of-strength-part-1/4000-679388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677265/","id":677265,"name":"To Eternia With Death","site_detail_url":"https://comicvine.gamespot.com/injustice-vs-masters-of-the-universe-1-to-eternia-/4000-677265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674116/","id":674116,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-zero-hour-1-tpb/4000-674116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674103/","id":674103,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-dark-knights-rising-1-hctpb/4000-674103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672251/","id":672251,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-the-deluxe-edition-1-hc/4000-672251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662716/","id":662716,"name":"New Life and Death Conclusion","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-26-new-life-and-death-co/4000-662716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664258/","id":664258,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-6/4000-664258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659977/","id":659977,"name":"Riders On the Razor","site_detail_url":"https://comicvine.gamespot.com/dark-knights-rising-the-wild-hunt-1-riders-on-the-/4000-659977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661133/","id":661133,"name":"Meet the Terrifics Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-1-meet-the-terrifics-part-1-of-3/4000-661133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649706/","id":649706,"name":"","site_detail_url":"https://comicvine.gamespot.com/hawkman-found-1/4000-649706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649697/","id":649697,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-directors-cut-1/4000-649697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647910/","id":647910,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-4/4000-647910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634505/","id":634505,"name":"Symphony of Destruction","site_detail_url":"https://comicvine.gamespot.com/batman-the-devastator-1-symphony-of-destruction/4000-634505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634517/","id":634517,"name":"Bats Out of Hell, Part Two: Countdown To Extinction","site_detail_url":"https://comicvine.gamespot.com/justice-league-32-bats-out-of-hell-part-two-countd/4000-634517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638576/","id":638576,"name":"Bats Out of Hell Finale","site_detail_url":"https://comicvine.gamespot.com/justice-league-33-bats-out-of-hell-finale/4000-638576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636338/","id":636338,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-lost-1/4000-636338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638566/","id":638566,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-nights-the-batman-who-laughs-1/4000-638566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632457/","id":632457,"name":"Wrath Child","site_detail_url":"https://comicvine.gamespot.com/batman-the-merciless-1-wrath-child/4000-632457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630486/","id":630486,"name":"Rime of the Ancient Mariner","site_detail_url":"https://comicvine.gamespot.com/batman-the-drowned-1-rime-of-the-ancient-mariner/4000-630486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626248/","id":626248,"name":"Fear of the Dark","site_detail_url":"https://comicvine.gamespot.com/batman-the-dawnbreaker-1-fear-of-the-dark/4000-626248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628545/","id":628545,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-3/4000-628545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622873/","id":622873,"name":"Ride The Lightning","site_detail_url":"https://comicvine.gamespot.com/batman-the-red-death-1-ride-the-lightning/4000-622873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625175/","id":625175,"name":"Heavy Metal","site_detail_url":"https://comicvine.gamespot.com/batman-the-murder-machine-1-heavy-metal/4000-625175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622889/","id":622889,"name":"Gotham Resistance Part 2: A Ring of Fire and Fear","site_detail_url":"https://comicvine.gamespot.com/nightwing-29-gotham-resistance-part-2-a-ring-of-fi/4000-622889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621582/","id":621582,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-2/4000-621582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-614985/","id":614985,"name":"Planet of the Capes Part 2: the kids are all fight!","site_detail_url":"https://comicvine.gamespot.com/super-sons-7-planet-of-the-capes-part-2-the-kids-a/4000-614985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628558/","id":628558,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/justice-league-the-darkseid-war-saga-omnibus-1-hc/4000-628558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-614971/","id":614971,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-nights-metal-1/4000-614971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-624999/","id":624999,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-stranger-worlds-1-volume-2/4000-624999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591730/","id":591730,"name":"The Extremists Finale","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-4-the-extremists-finale/4000-591730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605051/","id":605051,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-by-brian-azzarello-and-eduardo-risso-deluxe/4000-605051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585062/","id":585062,"name":"The Extremists Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-2-the-extremists-part-tw/4000-585062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587391/","id":587391,"name":"Nightwing Must Die! Part Two","site_detail_url":"https://comicvine.gamespot.com/nightwing-17-nightwing-must-die-part-two/4000-587391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594911/","id":594911,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-6/4000-594911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595007/","id":595007,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-4/4000-595007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579298/","id":579298,"name":"Multiplicity Conclusion","site_detail_url":"https://comicvine.gamespot.com/superman-16-multiplicity-conclusion/4000-579298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592421/","id":592421,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-5/4000-592421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592459/","id":592459,"name":"Two Speeding Bullets, Part 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2-2-two-speeding-bullets-part-2/4000-592459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576604/","id":576604,"name":"Multiplicity Part 2","site_detail_url":"https://comicvine.gamespot.com/superman-15-multiplicity-part-2/4000-576604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574854/","id":574854,"name":"Multiplicity Part 1","site_detail_url":"https://comicvine.gamespot.com/superman-14-multiplicity-part-1/4000-574854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588465/","id":588465,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-4/4000-588465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585114/","id":585114,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-2/4000-585114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582282/","id":582282,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-3/4000-582282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579346/","id":579346,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-1/4000-579346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576909/","id":576909,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-2/4000-576909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571622/","id":571622,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/52-2-volume-two/4000-571622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563688/","id":563688,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-infinite-crisis-1-hc/4000-563688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569373/","id":569373,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trekgreen-lantern-1/4000-569373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534261/","id":534261,"name":"A Whole New World Part One","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-13-a-whole-new-world-part-one/4000-534261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538161/","id":538161,"name":"","site_detail_url":"https://comicvine.gamespot.com/kfc-crisis-of-infinite-colonels-1/4000-538161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524999/","id":524999,"name":"One Nation Indivisible Chapter Four: Together, Alone","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-11-one-nation-indivisible-chapter-/4000-524999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527108/","id":527108,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/dark-knight-iii-the-master-race-4-book-four/4000-527108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526031/","id":526031,"name":"Arrival Part VII","site_detail_url":"https://comicvine.gamespot.com/superman-lois-and-clark-7-arrival-part-vii/4000-526031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518834/","id":518834,"name":"One Nation Indivisible Chapter Three: Running On Empty","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-10-one-nation-indivisible-chapter-/4000-518834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848907/","id":848907,"name":null,"site_detail_url":"https://comicvine.gamespot.com/convergencia-arlequina-1/4000-848907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523243/","id":523243,"name":"Wonder Woman: Earth One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-earth-one-1-wonder-woman-earth-one/4000-523243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514406/","id":514406,"name":"One Nation Indivisible Chapter Two: World-Leader Pretend","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-9-one-nation-indivisible-chapter-t/4000-514406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529515/","id":529515,"name":"Flash of Two Worlds!","site_detail_url":"https://comicvine.gamespot.com/funko-presents-dc-legion-of-collectors-flash-123-1/4000-529515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518835/","id":518835,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-planetfall-1-volume-1/4000-518835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509687/","id":509687,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-1-and-2-directors-cut-1/4000-509687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502845/","id":502845,"name":"Arrival Part I","site_detail_url":"https://comicvine.gamespot.com/superman-lois-and-clark-1-arrival-part-i/4000-502845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506626/","id":506626,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/earth-2-collision-1-volume-6/4000-506626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502084/","id":502084,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/convergence-1-hc/4000-502084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503538/","id":503538,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-deluxe-edition-1-hc/4000-503538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501513/","id":501513,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-and-power-girl-5/4000-501513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499948/","id":499948,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-5/4000-499948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494266/","id":494266,"name":"Guardian Angel","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-2-guardian-angel/4000-494266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505088/","id":505088,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-4/4000-505088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499947/","id":499947,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-4/4000-499947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491473/","id":491473,"name":"Planetfall","site_detail_url":"https://comicvine.gamespot.com/earth-2-society-1-planetfall/4000-491473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495764/","id":495764,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/america-vs-the-justice-society-1-tpb/4000-495764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488626/","id":488626,"name":"Team Work","site_detail_url":"https://comicvine.gamespot.com/convergence-6-team-work/4000-488626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489235/","id":489235,"name":"Showdown","site_detail_url":"https://comicvine.gamespot.com/convergence-7-showdown/4000-489235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487778/","id":487778,"name":"Liberty?","site_detail_url":"https://comicvine.gamespot.com/convergence-5-liberty/4000-487778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489840/","id":489840,"name":"Last Stand","site_detail_url":"https://comicvine.gamespot.com/convergence-8-last-stand/4000-489840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488627/","id":488627,"name":"Home Is the Sailor","site_detail_url":"https://comicvine.gamespot.com/convergence-batman-shadow-of-the-bat-2-home-is-the/4000-488627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489891/","id":489891,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-pax-americana-director-s-cut-1/4000-489891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488594/","id":488594,"name":"United We Stand","site_detail_url":"https://comicvine.gamespot.com/convergence-superman-the-man-of-steel-2-united-we-/4000-488594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487787/","id":487787,"name":"Superman Again","site_detail_url":"https://comicvine.gamespot.com/convergence-superman-2-superman-again/4000-487787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489843/","id":489843,"name":"Ride the Wave Part II","site_detail_url":"https://comicvine.gamespot.com/convergence-booster-gold-2-ride-the-wave-part-ii/4000-489843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487782/","id":487782,"name":"Rabbit Season","site_detail_url":"https://comicvine.gamespot.com/convergence-harley-quinn-2-rabbit-season/4000-487782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489842/","id":489842,"name":"Legion of Doom!","site_detail_url":"https://comicvine.gamespot.com/convergence-blue-beetle-2-legion-of-doom/4000-489842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487781/","id":487781,"name":"Father & Sons","site_detail_url":"https://comicvine.gamespot.com/convergence-batman-and-robin-2-father-sons/4000-487781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488587/","id":488587,"name":"Deathblow","site_detail_url":"https://comicvine.gamespot.com/convergence-aquaman-2-deathblow/4000-488587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488593/","id":488593,"name":"Buggin'","site_detail_url":"https://comicvine.gamespot.com/convergence-supergirl-matrix-2-buggin/4000-488593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493467/","id":493467,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/jsa-omnibus-3-volume-three/4000-493467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490868/","id":490868,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-homeward-bound-1-volume-5/4000-490868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486663/","id":486663,"name":"Time Bomb","site_detail_url":"https://comicvine.gamespot.com/convergence-3-time-bomb/4000-486663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487163/","id":487163,"name":"The Return","site_detail_url":"https://comicvine.gamespot.com/convergence-4-the-return/4000-487163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486105/","id":486105,"name":"The Planet Incarnate","site_detail_url":"https://comicvine.gamespot.com/convergence-2-the-planet-incarnate/4000-486105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484841/","id":484841,"name":"The God Machine","site_detail_url":"https://comicvine.gamespot.com/convergence-0-the-god-machine/4000-484841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485465/","id":485465,"name":"Domesday","site_detail_url":"https://comicvine.gamespot.com/convergence-1-domesday/4000-485465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487174/","id":487174,"name":"Darkseid War, Prologue","site_detail_url":"https://comicvine.gamespot.com/justice-league-40-darkseid-war-prologue/4000-487174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501512/","id":501512,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-and-power-girl-4/4000-501512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499946/","id":499946,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-3/4000-499946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485473/","id":485473,"name":"Zip-Ties, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/convergence-speed-force-1-zip-ties-part-1-of-2/4000-485473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486112/","id":486112,"name":"When Kingdoms Fall, Part 1","site_detail_url":"https://comicvine.gamespot.com/convergence-suicide-squad-1-when-kingdoms-fall-par/4000-486112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485475/","id":485475,"name":"Try for Justice, Part One","site_detail_url":"https://comicvine.gamespot.com/convergence-titans-1-try-for-justice-part-one/4000-485475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486665/","id":486665,"name":"The New Normal","site_detail_url":"https://comicvine.gamespot.com/convergence-batman-and-the-outsiders-1-the-new-nor/4000-486665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486113/","id":486113,"name":"The Hero's Return, Part One","site_detail_url":"https://comicvine.gamespot.com/convergence-superboy-1-the-hero-s-return-part-one/4000-486113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486107/","id":486107,"name":"The Dark Side of the Street","site_detail_url":"https://comicvine.gamespot.com/convergence-batman-shadow-of-the-bat-1-the-dark-si/4000-486107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485474/","id":485474,"name":"Superman Again","site_detail_url":"https://comicvine.gamespot.com/convergence-superman-1-superman-again/4000-485474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487175/","id":487175,"name":"Superjudge","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-2-superjudge/4000-487175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486108/","id":486108,"name":"Schrödinger's Cat","site_detail_url":"https://comicvine.gamespot.com/convergence-catwoman-1-schrodinger-s-cat/4000-486108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486668/","id":486668,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/convergence-hawkman-1-revelations/4000-486668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486671/","id":486671,"name":"Part One: My Home In the Sky","site_detail_url":"https://comicvine.gamespot.com/convergence-superboy-and-the-legion-of-super-heroe/4000-486671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486666/","id":486666,"name":"Out of the Running","site_detail_url":"https://comicvine.gamespot.com/convergence-the-flash-1-out-of-the-running/4000-486666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486672/","id":486672,"name":"It's Not Easy Being Green","site_detail_url":"https://comicvine.gamespot.com/convergence-swamp-thing-1-it-s-not-easy-being-gree/4000-486672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486111/","id":486111,"name":"It Only Hurts When I Laugh, Part 1","site_detail_url":"https://comicvine.gamespot.com/convergence-justice-league-international-1-it-only/4000-486111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486673/","id":486673,"name":"I Sung of Chaos and Eternal Night","site_detail_url":"https://comicvine.gamespot.com/convergence-wonder-woman-1-i-sung-of-chaos-and-ete/4000-486673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486667/","id":486667,"name":"Good Guys and Bad Guys","site_detail_url":"https://comicvine.gamespot.com/convergence-green-lantern-corps-1-good-guys-and-ba/4000-486667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486106/","id":486106,"name":"Fish Bowl","site_detail_url":"https://comicvine.gamespot.com/convergence-aquaman-1-fish-bowl/4000-486106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485468/","id":485468,"name":"Father & Sons","site_detail_url":"https://comicvine.gamespot.com/convergence-batman-and-robin-1-father-sons/4000-485468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484842/","id":484842,"name":"End Times","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-26-end-times/4000-484842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485469/","id":485469,"name":"Down the Rabbit Hole","site_detail_url":"https://comicvine.gamespot.com/convergence-harley-quinn-1-down-the-rabbit-hole/4000-485469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486115/","id":486115,"name":"Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/convergence-superman-the-man-of-steel-1-divided-we/4000-486115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486110/","id":486110,"name":"Crime and Punishment","site_detail_url":"https://comicvine.gamespot.com/convergence-green-lantern-parallax-1-crime-and-pun/4000-486110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487165/","id":487165,"name":"","site_detail_url":"https://comicvine.gamespot.com/convergence-blue-beetle-1/4000-487165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485470/","id":485470,"name":"","site_detail_url":"https://comicvine.gamespot.com/convergence-justice-league-1/4000-485470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488629/","id":488629,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-1-volume-1/4000-488629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482112/","id":482112,"name":"Mirror Cracked","site_detail_url":"https://comicvine.gamespot.com/action-comics-40-mirror-cracked/4000-482112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487813/","id":487813,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dial-h-the-deluxe-edition-1-hc/4000-487813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489856/","id":489856,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-sneak-peek-earth-2-society-1/4000-489856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488533/","id":488533,"name":"Chapter Two: What Fools These Mortals Are","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-2-chapter-two-wh/4000-488533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482121/","id":482121,"name":"The Secret History of Superman & Batman, Part Six: Dooms","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-32-the-secret-history-of-superman-ba/4000-482121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482114/","id":482114,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/constantine-23-the-end/4000-482114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482619/","id":482619,"name":"Hope","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-24-hope/4000-482619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481564/","id":481564,"name":"Grounded","site_detail_url":"https://comicvine.gamespot.com/earth-2-32-grounded/4000-481564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483303/","id":483303,"name":"Grounded","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-25-grounded/4000-483303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481565/","id":481565,"name":"God Flesh","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-22-god-flesh/4000-481565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482116/","id":482116,"name":"Breaking Through","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-23-breaking-through/4000-482116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479210/","id":479210,"name":"The Secret History of Superman & Batman, Part Five: Signs","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-31-the-secret-history-of-superman-ba/4000-479210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479201/","id":479201,"name":"The Last Gasp","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-19-the-last-gasp/4000-479201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479931/","id":479931,"name":"Survival","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-20-survival/4000-479931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479935/","id":479935,"name":"Splendour Falls","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-mastermen-1-splendour-falls/4000-479935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478566/","id":478566,"name":"Run","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-18-run/4000-478566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479200/","id":479200,"name":"One Last Trick","site_detail_url":"https://comicvine.gamespot.com/constantine-22-one-last-trick/4000-479200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480627/","id":480627,"name":"Last Hope","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-21-last-hope/4000-480627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478565/","id":478565,"name":"Fate & Fury","site_detail_url":"https://comicvine.gamespot.com/earth-2-31-fate-fury/4000-478565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479202/","id":479202,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-41/4000-479202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482137/","id":482137,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-justice-lords-beyond-1-volume-2/4000-482137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477803/","id":477803,"name":"The Secret Origin of Swamp Thing; Unsolved Mysteries; John Stewart in The Architect","site_detail_url":"https://comicvine.gamespot.com/secret-origins-9-the-secret-origin-of-swamp-thing-/4000-477803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475889/","id":475889,"name":"Sacrifice","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-15-sacrifice/4000-475889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475411/","id":475411,"name":"Sacrifice","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-14-sacrifice/4000-475411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477793/","id":477793,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-17-rebirth/4000-477793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477801/","id":477801,"name":"Maps and Legends","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-guidebook-1-maps-and-legends/4000-477801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475896/","id":475896,"name":"Generations","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-30-generations/4000-475896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475888/","id":475888,"name":"Burn the Stage","site_detail_url":"https://comicvine.gamespot.com/constantine-21-burn-the-stage/4000-475888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475412/","id":475412,"name":"Avatars","site_detail_url":"https://comicvine.gamespot.com/earth-2-30-avatars/4000-475412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479244/","id":479244,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-1-t/4000-479244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478596/","id":478596,"name":"Superman: Earth One Book 3","site_detail_url":"https://comicvine.gamespot.com/superman-earth-one-3-superman-earth-one-book-3/4000-478596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472843/","id":472843,"name":"The Secret History of Superman & Batman, Part Three: Bindings","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-29-the-secret-history-of-superman-ba/4000-472843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472836/","id":472836,"name":"Release","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-10-release/4000-472836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472835/","id":472835,"name":"Meaningful Gestures","site_detail_url":"https://comicvine.gamespot.com/constantine-20-meaningful-gestures/4000-472835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471915/","id":471915,"name":"Flagitious","site_detail_url":"https://comicvine.gamespot.com/earth-2-29-flagitious/4000-471915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473588/","id":473588,"name":"Father's Day","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-11-father-s-day/4000-473588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473592/","id":473592,"name":"Captain Marvel and the Day that Never Was!","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-thunderworld-1-captain-marvel-and/4000-473592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475074/","id":475074,"name":"Burden","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-13-burden/4000-475074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474559/","id":474559,"name":"Betrayals","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-12-betrayals/4000-474559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471916/","id":471916,"name":"All Good Deeds...","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-9-all-good-deeds/4000-471916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469799/","id":469799,"name":"The Secret History of Superman & Batman, Part Two: Presentiments","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-28-the-secret-history-of-superman-ba/4000-469799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469792/","id":469792,"name":"The Apocalypse Road","site_detail_url":"https://comicvine.gamespot.com/constantine-19-the-apocalypse-road/4000-469792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471259/","id":471259,"name":"Secret Origins The Flash in The Chase; Secret Origins The Huntress Two Names & Two Worlds; Secret Origins Superboy Lab Rat","site_detail_url":"https://comicvine.gamespot.com/secret-origins-7-secret-origins-the-flash-in-the-c/4000-471259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469793/","id":469793,"name":"Returns","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-6-returns/4000-469793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469427/","id":469427,"name":"Origins","site_detail_url":"https://comicvine.gamespot.com/earth-2-28-origins/4000-469427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470374/","id":470374,"name":"In Which We Burn","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-pax-americana-1-in-which-we-burn/4000-470374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469428/","id":469428,"name":"Emerald Quest","site_detail_url":"https://comicvine.gamespot.com/earth-2-worlds-end-5-emerald-quest/4000-469428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470369/","id":470369,"name":"Arrival","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-7-arrival/4000-470369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470651/","id":470651,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-5/4000-470651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471949/","id":471949,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-1-volume-1/4000-471949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467603/","id":467603,"name":"There's a New Witch in Town","site_detail_url":"https://comicvine.gamespot.com/klarion-1-theres-a-new-witch-in-town/4000-467603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467606/","id":467606,"name":"The Secret History of Superman & Batman, Part One: Temptations","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-27-the-secret-history-of-superman-ba/4000-467606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463969/","id":463969,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/forever-evil-1-hctpb/4000-463969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467597/","id":467597,"name":"Half a Chance","site_detail_url":"https://comicvine.gamespot.com/constantine-18-half-a-chance/4000-467597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468410/","id":468410,"name":"Furies","site_detail_url":"https://comicvine.gamespot.com/earth-2-worlds-end-3-furies/4000-468410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468020/","id":468020,"name":"Drums of War","site_detail_url":"https://comicvine.gamespot.com/earth-2-worlds-end-2-drums-of-war/4000-468020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467599/","id":467599,"name":"Collision","site_detail_url":"https://comicvine.gamespot.com/earth-2-27-collision/4000-467599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467816/","id":467816,"name":"Chaos, Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-chaos-3-chaos-part-3/4000-467816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467598/","id":467598,"name":"Apokolips Now","site_detail_url":"https://comicvine.gamespot.com/earth-2-worlds-end-1-apokolips-now/4000-467598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468416/","id":468416,"name":"#earthme","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-the-just-1-earthme/4000-468416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505087/","id":505087,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-3/4000-505087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474180/","id":474180,"name":"Chapter Thirty","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-30-chapte/4000-474180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470730/","id":470730,"name":"Horas finales","site_detail_url":"https://comicvine.gamespot.com/batman-superman-14-horas-finales/4000-470730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466272/","id":466272,"name":"Pressure Point","site_detail_url":"https://comicvine.gamespot.com/booster-gold-futures-end-1-pressure-point/4000-466272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463942/","id":463942,"name":"Power To The People","site_detail_url":"https://comicvine.gamespot.com/earth-2-futures-end-1-power-to-the-people/4000-463942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466281/","id":466281,"name":"Last Sun, Chapter 4: Evolutions","site_detail_url":"https://comicvine.gamespot.com/superman-doomed-2-last-sun-chapter-4-evolutions/4000-466281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465795/","id":465795,"name":"Conquerors from the Counter-World","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-the-society-of-super-heroes-the-c/4000-465795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466254/","id":466254,"name":"Chaos, Part 2","site_detail_url":"https://comicvine.gamespot.com/smallville-chaos-2-chaos-part-2/4000-466254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466275/","id":466275,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-21/4000-466275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462212/","id":462212,"name":"World's End?","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-26-worlds-end/4000-462212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467633/","id":467633,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/earth-2-the-dark-age-1-volume-4/4000-467633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461686/","id":461686,"name":"The Kryptonion, Part Six","site_detail_url":"https://comicvine.gamespot.com/earth-2-26-the-kryptonion-part-six/4000-461686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462876/","id":462876,"name":"The Game of Everything","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-8-t/4000-462876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462852/","id":462852,"name":"House of Heroes","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-1-house-of-heroes/4000-462852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461687/","id":461687,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-14/4000-461687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467489/","id":467489,"name":"All In, Part 5 of 5: Final Bets","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-36-all-in-part-5-of-5-final-bets/4000-467489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470728/","id":470728,"name":"Primer contacto - Final","site_detail_url":"https://comicvine.gamespot.com/batman-superman-12-primer-contacto-final/4000-470728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466030/","id":466030,"name":"The Ultimate Battle of Ultimate Finality","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-9-t/4000-466030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458563/","id":458563,"name":"The Kryptonian, Part Five","site_detail_url":"https://comicvine.gamespot.com/earth-2-25-the-kryptonian-part-five/4000-458563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460264/","id":460264,"name":"Justice Lords Beyond: For The Fate of The World{s}; Justice Lords Beyond: Homecomings; Justice Lords Beyond: Aftermath; Justice Lords Beyond: Regime Change","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-12-justice-lords-beyond-for/4000-460264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459132/","id":459132,"name":"Farewells","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-25-farewells/4000-459132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466141/","id":466141,"name":"All In, Part 3 of 5: Fresh Inque","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-2-0-34-all-in-part-3-of-5-fresh-inqu/4000-466141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470727/","id":470727,"name":"Primer contacto - Parte 2","site_detail_url":"https://comicvine.gamespot.com/batman-superman-11-primer-contacto-parte-2/4000-470727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461555/","id":461555,"name":"The Ultimate Battle of Ultimate Finality","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-17-/4000-461555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462845/","id":462845,"name":"The End... and the Beginning","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-18-/4000-462845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458561/","id":458561,"name":"Second Chance","site_detail_url":"https://comicvine.gamespot.com/batman-superman-12-second-chance/4000-458561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457587/","id":457587,"name":"Justice Lords Beyond: Sacrifice; Justice Lords Beyond: Dynasty; Justice Lords Beyond: Razor's Edge; Justice Lords Beyond: World War","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-11-justice-lords-beyond-sac/4000-457587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501510/","id":501510,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-and-power-girl-3/4000-501510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462844/","id":462844,"name":"Chapter Fourteen","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-14-chapte/4000-462844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462167/","id":462167,"name":"Chapter Thirteen","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-13-chapte/4000-462167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461624/","id":461624,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-12-chapte/4000-461624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470726/","id":470726,"name":"Primer contacto - Parte 1","site_detail_url":"https://comicvine.gamespot.com/batman-superman-10-primer-contacto-parte-1/4000-470726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460300/","id":460300,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-americas-vibe-breach-1-tpb/4000-460300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459547/","id":459547,"name":"The Magical Multiverse Tour","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-16-/4000-459547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452260/","id":452260,"name":"The Kryptonian, Part Three","site_detail_url":"https://comicvine.gamespot.com/earth-2-23-the-kryptonian-part-three/4000-452260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453398/","id":453398,"name":"Justice Lords Beyond: Ruins of Wayne; Justice Lords Beyond: Dark Reflections; Justice Lords Beyond: New Threads; Justice Lords Beyond: Strange Bedfellows","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-universe-10-justice-lords-beyond-rui/4000-453398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453359/","id":453359,"name":"Crisis of Self","site_detail_url":"https://comicvine.gamespot.com/forever-evil-7-crisis-of-self/4000-453359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460928/","id":460928,"name":"Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-11-chapte/4000-460928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460299/","id":460299,"name":"Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-10-chapte/4000-460299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459604/","id":459604,"name":"Chapter Nine","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-9-chapter/4000-459604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459092/","id":459092,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-8-chapter/4000-459092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456010/","id":456010,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-control-issues-1-volume-3/4000-456010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449541/","id":449541,"name":"The Kryptonian, Part Two","site_detail_url":"https://comicvine.gamespot.com/earth-2-22-the-kryptonian-part-two/4000-449541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451040/","id":451040,"name":"First Contact, Part 3","site_detail_url":"https://comicvine.gamespot.com/batman-superman-9-first-contact-part-3/4000-451040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458507/","id":458507,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-7-chapter/4000-458507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457509/","id":457509,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-6-chapter/4000-457509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456470/","id":456470,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-5-chapter/4000-456470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455942/","id":455942,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-4-chapter/4000-455942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455399/","id":455399,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-3-chapter/4000-455399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452826/","id":452826,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/absolute-superman-batman-2-volume-2/4000-452826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446947/","id":446947,"name":"The Kryptonian, Part One","site_detail_url":"https://comicvine.gamespot.com/earth-2-21-the-kryptonian-part-one/4000-446947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448921/","id":448921,"name":"First Contact, Part 4","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-21-first-contact-part-4/4000-448921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452574/","id":452574,"name":"Ewige Nacht","site_detail_url":"https://comicvine.gamespot.com/dc-forever-evil-1-ewige-nacht/4000-452574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447612/","id":447612,"name":"Alien, Part 4","site_detail_url":"https://comicvine.gamespot.com/smallville-alien-4-alien-part-4/4000-447612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505085/","id":505085,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-1/4000-505085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454030/","id":454030,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-2-chapter/4000-454030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453314/","id":453314,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-fight-for-the-multiverse-1-chapter/4000-453314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450546/","id":450546,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-omnibus-1-volume-one/4000-450546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451755/","id":451755,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/batman-superman-cross-world-1-volume-1/4000-451755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444474/","id":444474,"name":"The Dark Age, Part 4","site_detail_url":"https://comicvine.gamespot.com/earth-2-20-the-dark-age-part-4/4000-444474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446427/","id":446427,"name":"First Contact, Part 1","site_detail_url":"https://comicvine.gamespot.com/batman-superman-8-first-contact-part-1/4000-446427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470722/","id":470722,"name":"Maldad eterna - Darkseid","site_detail_url":"https://comicvine.gamespot.com/batman-superman-6-maldad-eterna-darkseid/4000-470722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445152/","id":445152,"name":"All Saints Day; Time Trouble","site_detail_url":"https://comicvine.gamespot.com/batman-li-l-gotham-11-all-saints-day-time-trouble/4000-445152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447985/","id":447985,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/trinity-of-sin-pandora-the-curse-1-volume-1/4000-447985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442113/","id":442113,"name":"Under & Over","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-27-under-over/4000-442113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441373/","id":441373,"name":"The Dark Age, Part 3","site_detail_url":"https://comicvine.gamespot.com/earth-2-19-the-dark-age-part-3/4000-441373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443955/","id":443955,"name":"The Adventures of Robin and Supergirl","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-annual-1-the-adventures-of-robin-and/4000-443955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443943/","id":443943,"name":"Origin","site_detail_url":"https://comicvine.gamespot.com/earth-2-annual-2-origin/4000-443943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447494/","id":447494,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/justice-league-trinity-war-1-hc-tpb/4000-447494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442116/","id":442116,"name":"Out of Control","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-19-out-of-control/4000-442116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443033/","id":443033,"name":"","site_detail_url":"https://comicvine.gamespot.com/scribblenauts-unmasked-a-crisis-of-imagination-1/4000-443033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444515/","id":444515,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/dial-h-exchange-1-volume-2/4000-444515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435544/","id":435544,"name":"The Dark Age, Part 2","site_detail_url":"https://comicvine.gamespot.com/earth-2-18-the-dark-age-part-2/4000-435544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501509/","id":501509,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-and-power-girl-2/4000-501509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432295/","id":432295,"name":"The Dark Age Begins!","site_detail_url":"https://comicvine.gamespot.com/earth-2-17-the-dark-age-begins/4000-432295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433120/","id":433120,"name":"In the Trenches","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-s-vibe-9-in-the-trenches/4000-433120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443005/","id":443005,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/planetary-omnibus-1-hc/4000-443005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436149/","id":436149,"name":"Forever Lost","site_detail_url":"https://comicvine.gamespot.com/justice-league-25-forever-lost/4000-436149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470719/","id":470719,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-superman-3/4000-470719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427652/","id":427652,"name":"To the Victor...","site_detail_url":"https://comicvine.gamespot.com/earth-2-16-to-the-victor/4000-427652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428821/","id":428821,"name":"Refracted","site_detail_url":"https://comicvine.gamespot.com/batman-superman-4-refracted/4000-428821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428963/","id":428963,"name":"Other Worlds Than These","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-s-vibe-8-other-worlds-th/4000-428963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428966/","id":428966,"name":"Nightfall","site_detail_url":"https://comicvine.gamespot.com/forever-evil-director-s-cut-1-nightfall/4000-428966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436184/","id":436184,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus-1-hc/4000-436184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430713/","id":430713,"name":"Forever Strong","site_detail_url":"https://comicvine.gamespot.com/justice-league-24-forever-strong/4000-430713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428827/","id":428827,"name":"End the Curse, Part 1: The New World","site_detail_url":"https://comicvine.gamespot.com/trinity-of-sin-pandora-4-end-the-curse-part-1-the-/4000-428827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428260/","id":428260,"name":"Burning Questions","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-16-burning-questions/4000-428260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470718/","id":470718,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-superman-2/4000-470718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424989/","id":424989,"name":"Where the River Ran Red","site_detail_url":"https://comicvine.gamespot.com/earth-2-15-2-where-the-river-ran-red/4000-424989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433835/","id":433835,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-hunt-and-be-hunted-1-volume-2/4000-433835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426813/","id":426813,"name":"The Wild Card","site_detail_url":"https://comicvine.gamespot.com/justice-league-23-4-the-wild-card/4000-426813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424491/","id":424491,"name":"Nightfall","site_detail_url":"https://comicvine.gamespot.com/forever-evil-1-nightfall/4000-424491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424496/","id":424496,"name":"Apotheosis","site_detail_url":"https://comicvine.gamespot.com/justice-league-23-1-apotheosis/4000-424496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433016/","id":433016,"name":"Time Trouble","site_detail_url":"https://comicvine.gamespot.com/batman-li-l-gotham-22-time-trouble/4000-433016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420606/","id":420606,"name":"War Torn","site_detail_url":"https://comicvine.gamespot.com/earth-2-15-war-torn/4000-420606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427676/","id":427676,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/earth-2-the-tower-of-fate-1-volume-2/4000-427676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423616/","id":423616,"name":"Trinity War, Chapter Six: Conclusion","site_detail_url":"https://comicvine.gamespot.com/justice-league-23-trinity-war-chapter-six-conclusi/4000-423616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422431/","id":422431,"name":"Trinity War, Chapter Five","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-23-trinity-war-chapter-five/4000-422431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423635/","id":423635,"name":"Split Screen","site_detail_url":"https://comicvine.gamespot.com/batman-superman-3-split-screen/4000-423635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427678/","id":427678,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/jla-earth-2-the-deluxe-edition-1-hc/4000-427678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421665/","id":421665,"name":"Down the Rabbit Hole","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-15-down-the-rabbit-hole/4000-421665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418770/","id":418770,"name":"Doubletime","site_detail_url":"https://comicvine.gamespot.com/batman-superman-2-doubletime/4000-418770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415209/","id":415209,"name":"Battle Cry","site_detail_url":"https://comicvine.gamespot.com/earth-2-14-battle-cry/4000-415209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416912/","id":416912,"name":"Losses","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-14-losses/4000-416912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408960/","id":408960,"name":"Tekel Upharsin","site_detail_url":"https://comicvine.gamespot.com/dial-h-13-tekel-upharsin/4000-408960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413609/","id":413609,"name":"Cross World","site_detail_url":"https://comicvine.gamespot.com/batman-superman-1-cross-world/4000-413609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408952/","id":408952,"name":"1,370°C","site_detail_url":"https://comicvine.gamespot.com/earth-2-13-1-370degc/4000-408952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410279/","id":410279,"name":"Hide and Seek","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-13-hide-and-seek/4000-410279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400114/","id":400114,"name":"The Tower of Fate, Part 3: The Man Who Was Fate","site_detail_url":"https://comicvine.gamespot.com/earth-2-12-the-tower-of-fate-part-3-the-man-who-wa/4000-400114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406951/","id":406951,"name":"Secrets and Origins","site_detail_url":"https://comicvine.gamespot.com/earth-2-annual-1-secrets-and-origins/4000-406951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400119/","id":400119,"name":"Conference Call","site_detail_url":"https://comicvine.gamespot.com/dial-h-12-conference-call/4000-400119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402246/","id":402246,"name":"Home Invasion!","site_detail_url":"https://comicvine.gamespot.com/supergirl-20-home-invasion/4000-402246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400121/","id":400121,"name":"The Price of Fame","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-12-the-price-of-fame/4000-400121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395676/","id":395676,"name":"The Tower of Fate, Part Two: The Man Who Was Brave","site_detail_url":"https://comicvine.gamespot.com/earth-2-11-the-tower-of-fate-part-two-the-man-who-/4000-395676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397499/","id":397499,"name":"Super Power","site_detail_url":"https://comicvine.gamespot.com/supergirl-19-super-power/4000-397499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409188/","id":409188,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-6-vol-6/4000-409188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395682/","id":395682,"name":"Putting it Together","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-11-putting-it-together/4000-395682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390400/","id":390400,"name":"The Tower of Fate: Part 1","site_detail_url":"https://comicvine.gamespot.com/earth-2-10-the-tower-of-fate-part-1/4000-390400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390405/","id":390405,"name":"Some Things You Can Change, Some You Can't","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-10-some-things-you-can-change-some-y/4000-390405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400135/","id":400135,"name":"Bulletproof","site_detail_url":"https://comicvine.gamespot.com/action-comics-bulletproof-1-bulletproof/4000-400135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403984/","id":403984,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-power-girl-1/4000-403984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396606/","id":396606,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-the-lost-daughters-of-earth-2-1-volu/4000-396606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384930/","id":384930,"name":"The Tower of Fate: Prologue, The Man who was Scared","site_detail_url":"https://comicvine.gamespot.com/earth-2-9-the-tower-of-fate-prologue-the-man-who-w/4000-384930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384929/","id":384929,"name":"Raid","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-9-raid/4000-384929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402633/","id":402633,"name":"Супермен: Земля-1. Книга 1","site_detail_url":"https://comicvine.gamespot.com/superman-zemlya-1-1-supiermien-ziemlia-1-knigha-1/4000-402633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392345/","id":392345,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/earth-2-the-gathering-1-volume-1/4000-392345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378853/","id":378853,"name":"Lazy Sunday","site_detail_url":"https://comicvine.gamespot.com/earth-2-8-lazy-sunday/4000-378853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378857/","id":378857,"name":"Hunt and Be Hunted","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-8-hunt-and-be-hunted/4000-378857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396532/","id":396532,"name":"Secretos & mentiras; La maldición de Superman; Poder ejecutivo","site_detail_url":"https://comicvine.gamespot.com/superman-9-secretos-mentiras-la-maldicion-de-super/4000-396532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388692/","id":388692,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-vs-shazam-1-tpb/4000-388692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371153/","id":371153,"name":"Heaven Sent","site_detail_url":"https://comicvine.gamespot.com/earth-2-7-heaven-sent/4000-371153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371273/","id":371273,"name":"Family Matters, Part Two","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-7-family-matters-part-two/4000-371273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373672/","id":373672,"name":"Invasion, Chapter Four: Do Not Pass Go","site_detail_url":"https://comicvine.gamespot.com/young-justice-23-invasion-chapter-four-do-not-pass/4000-373672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365738/","id":365738,"name":"End Times","site_detail_url":"https://comicvine.gamespot.com/earth-2-6-end-times/4000-365738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365739/","id":365739,"name":"Family Matters","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-6-family-matters/4000-365739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359834/","id":359834,"name":"Welcome to the Grey","site_detail_url":"https://comicvine.gamespot.com/earth-2-5-welcome-to-the-grey/4000-359834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359839/","id":359839,"name":"Three Midnights, Far From Home","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-5-three-midnights-far-from-home/4000-359839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357631/","id":357631,"name":"Origins Matter After Cancellation; Mister Terrific; Balance of Power; Mother Machine; Kinstanc Karma","site_detail_url":"https://comicvine.gamespot.com/dc-universe-presents-0-origins-matter-after-cancel/4000-357631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355793/","id":355793,"name":"Beginnings","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-0-beginnings/4000-355793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355788/","id":355788,"name":"A Hero's Tale","site_detail_url":"https://comicvine.gamespot.com/earth-2-0-a-heros-tale/4000-355788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369073/","id":369073,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/52-omnibus-1-hc/4000-369073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365548/","id":365548,"name":"The Chosen, Part 3","site_detail_url":"https://comicvine.gamespot.com/ame-comi-girls-9-the-chosen-part-3/4000-365548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364118/","id":364118,"name":"Superman: Earth One Book 2","site_detail_url":"https://comicvine.gamespot.com/superman-earth-one-2-superman-earth-one-book-2/4000-364118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382105/","id":382105,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-final-crisis-1-hc/4000-382105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348040/","id":348040,"name":"A Confluence of Wonders","site_detail_url":"https://comicvine.gamespot.com/earth-2-4-a-confluence-of-wonders/4000-348040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348041/","id":348041,"name":"Rebirth, Conclusion","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-4-rebirth-conclusion/4000-348041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363008/","id":363008,"name":"The Chosen, Part 1","site_detail_url":"https://comicvine.gamespot.com/ame-comi-girls-7-the-chosen-part-1/4000-363008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354694/","id":354694,"name":"Gorilla Warfare","site_detail_url":"https://comicvine.gamespot.com/young-justice-19-gorilla-warfare/4000-354694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344038/","id":344038,"name":"Jade Knight","site_detail_url":"https://comicvine.gamespot.com/earth-2-3-jade-knight/4000-344038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344043/","id":344043,"name":"Rebirth III","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-3-rebirth-iii/4000-344043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346431/","id":346431,"name":"Monkey Business","site_detail_url":"https://comicvine.gamespot.com/young-justice-18-monkey-business/4000-346431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350209/","id":350209,"name":"Batman: Earth One Sneak Preview","site_detail_url":"https://comicvine.gamespot.com/special-preview-edition-batman-earth-one-1-batman-/4000-350209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338475/","id":338475,"name":"Rebirth II","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-2-rebirth-ii/4000-338475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338464/","id":338464,"name":"Age of Wonders","site_detail_url":"https://comicvine.gamespot.com/earth-2-2-age-of-wonders/4000-338464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348718/","id":348718,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/the-flash-archives-6-volume-6/4000-348718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342184/","id":342184,"name":"Uncommon Dominators","site_detail_url":"https://comicvine.gamespot.com/young-justice-17-uncommon-dominators/4000-342184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334194/","id":334194,"name":"The Price of Victory","site_detail_url":"https://comicvine.gamespot.com/earth-2-1-the-price-of-victory/4000-334194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334200/","id":334200,"name":"The Curse of Superman; Executive Power","site_detail_url":"https://comicvine.gamespot.com/action-comics-9-the-curse-of-superman-executive-po/4000-334200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334195/","id":334195,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-1-rebirth/4000-334195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344032/","id":344032,"name":"Batman: Earth One","site_detail_url":"https://comicvine.gamespot.com/batman-earth-one-1-batman-earth-one/4000-344032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343034/","id":343034,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-1-tpb/4000-343034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337735/","id":337735,"name":"Common Denominators","site_detail_url":"https://comicvine.gamespot.com/young-justice-16-common-denominators/4000-337735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362807/","id":362807,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-omnibus-1-hc/4000-362807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334480/","id":334480,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-fcbd-special-edition-1/4000-334480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331855/","id":331855,"name":"...Here There Be Monsters","site_detail_url":"https://comicvine.gamespot.com/young-justice-15-here-there-be-monsters/4000-331855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323063/","id":323063,"name":"Under The Surface...","site_detail_url":"https://comicvine.gamespot.com/young-justice-14-under-the-surface/4000-323063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362621/","id":362621,"name":"Absolute Sinestro Corps War","site_detail_url":"https://comicvine.gamespot.com/absolute-sinestro-corps-war-1-absolute-sinestro-co/4000-362621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326777/","id":326777,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/flex-mentallo-man-of-muscle-mystery-the-deluxe-edi/4000-326777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315796/","id":315796,"name":"...And The Penalty","site_detail_url":"https://comicvine.gamespot.com/young-justice-13-and-the-penalty/4000-315796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312014/","id":312014,"name":"The Pendulum","site_detail_url":"https://comicvine.gamespot.com/young-justice-12-the-pendulum/4000-312014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336084/","id":336084,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-el-regreso-del-caballero-oscuro-1/4000-336084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307550/","id":307550,"name":"The Pit...","site_detail_url":"https://comicvine.gamespot.com/young-justice-11-the-pit/4000-307550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386460/","id":386460,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/young-justice-1-volume-1/4000-386460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302745/","id":302745,"name":"Hot Case","site_detail_url":"https://comicvine.gamespot.com/young-justice-10-hot-case/4000-302745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315421/","id":315421,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/tiny-titans-the-treehouse-and-beyond-1-volume-6/4000-315421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306544/","id":306544,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/star-treklegion-of-super-heroes-3-part-three/4000-306544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293427/","id":293427,"name":"Wonderland","site_detail_url":"https://comicvine.gamespot.com/young-justice-8-wonderland/4000-293427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315210/","id":315210,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-flash-the-road-to-flashpoint-1-tpb/4000-315210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289026/","id":289026,"name":"Rabbit Holes","site_detail_url":"https://comicvine.gamespot.com/young-justice-7-rabbit-holes/4000-289026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292580/","id":292580,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-sinestro-corps-war-1-tpb/4000-292580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281837/","id":281837,"name":"Fears","site_detail_url":"https://comicvine.gamespot.com/young-justice-6-fears/4000-281837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281524/","id":281524,"name":"Enter Justice League Prime; Where On Earth Am I?\"","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive-jla-the-70s-1-enter-justice-league-/4000-281524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281523/","id":281523,"name":"Death Means Never Having To Say You're Sorry; Superman Takes A Wife!","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive-superman-the-70s-1-death-means-neve/4000-281523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275918/","id":275918,"name":"What's the Story","site_detail_url":"https://comicvine.gamespot.com/young-justice-5-whats-the-story/4000-275918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424814/","id":424814,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-the-generations-saga-1-volume-one/4000-424814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270644/","id":270644,"name":"By Hook Or By Web","site_detail_url":"https://comicvine.gamespot.com/young-justice-4-by-hook-or-by-web/4000-270644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357787/","id":357787,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanplanetary-deluxe-edition-1-hc/4000-357787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268781/","id":268781,"name":"Hack and You Shall Find","site_detail_url":"https://comicvine.gamespot.com/young-justice-3-hack-and-you-shall-find/4000-268781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268209/","id":268209,"name":"Case Two: The Road to Flashpoint, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-flash-10-case-two-the-road-to-flashpoint-part-/4000-268209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266084/","id":266084,"name":"Monkey Business","site_detail_url":"https://comicvine.gamespot.com/young-justice-2-monkey-business/4000-266084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258336/","id":258336,"name":"Stopover","site_detail_url":"https://comicvine.gamespot.com/young-justice-0-stopover/4000-258336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254076/","id":254076,"name":"Titans From Multiple Earths","site_detail_url":"https://comicvine.gamespot.com/tiny-titans-35-titans-from-multiple-earths/4000-254076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250159/","id":250159,"name":"JLA: Omega, Part Three: D.C. Challenge","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-52-jla-omega-part-three-/4000-250159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245006/","id":245006,"name":"JLA: Omega, Part Two: The Power of A Million Souls","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-51-jla-omega-part-two-th/4000-245006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241135/","id":241135,"name":"Gazing into the Abyss","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-16-gazing-into-the-abyss/4000-241135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239078/","id":239078,"name":"JLA: Omega, Part One: Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-50-jla-omega-part-one-wo/4000-239078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255063/","id":255063,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/jla-the-deluxe-edition-4-vol-4/4000-255063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239858/","id":239858,"name":"Superman: Earth One","site_detail_url":"https://comicvine.gamespot.com/superman-earth-one-1-superman-earth-one/4000-239858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246799/","id":246799,"name":"Team History","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-team-history-1-team-hist/4000-246799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202577/","id":202577,"name":"Rise And Fall All: Along the Watchtower","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-43-rise-and-fall-all-alo/4000-202577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199534/","id":199534,"name":"Hardware: Escape; Static Shock: Whatever Happened to All the Fun in the World?","site_detail_url":"https://comicvine.gamespot.com/milestone-forever-2-hardware-escape-static-shock-w/4000-199534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315418/","id":315418,"name":"Vol. 5","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-5-vol-5/4000-315418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195393/","id":195393,"name":"Meta Fictions/ICON: Blood Will Tell","site_detail_url":"https://comicvine.gamespot.com/milestone-forever-1-meta-fictionsicon-blood-will-t/4000-195393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301228/","id":301228,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/the-authority-rule-britannia-1-book-2/4000-301228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186662/","id":186662,"name":"He Primed Me, Part 2: Flame War","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-5-he-primed-me-part-2-flame-war/4000-186662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190553/","id":190553,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/booster-gold-blue-and-gold-1-volume-2/4000-190553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174960/","id":174960,"name":"Bleeding Edge","site_detail_url":"https://comicvine.gamespot.com/the-authority-15-bleeding-edge/4000-174960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172420/","id":172420,"name":"Psycho Piracy","site_detail_url":"https://comicvine.gamespot.com/blackest-night-superman-2-psycho-piracy/4000-172420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218688/","id":218688,"name":"Final Crisis: Part Six of Seven","site_detail_url":"https://comicvine.gamespot.com/batman-legends-32-final-crisis-part-six-of-seven/4000-218688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259466/","id":259466,"name":"Final Crisis Part 7 of 7 - THE INCREDIBLE CONCLUSION!","site_detail_url":"https://comicvine.gamespot.com/superman-legends-28-final-crisis-part-7-of-7-the-i/4000-259466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247813/","id":247813,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-3-worlds-1-tpb/4000-247813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167425/","id":167425,"name":"A Sleepy Little Town","site_detail_url":"https://comicvine.gamespot.com/blackest-night-superman-1-a-sleepy-little-town/4000-167425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592303/","id":592303,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/tangent-supermans-reign-2-volume-two/4000-592303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164795/","id":164795,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-5-book-five/4000-164795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157903/","id":157903,"name":"Mash Up, Part 1","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-60-mash-up-part-1/4000-157903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252516/","id":252516,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/jla-the-deluxe-edition-2-vol-2/4000-252516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344260/","id":344260,"name":"Final Crisis Companion","site_detail_url":"https://comicvine.gamespot.com/final-crisis-companion-1-final-crisis-companion/4000-344260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189158/","id":189158,"name":"Final Crisis","site_detail_url":"https://comicvine.gamespot.com/final-crisis-1-final-crisis/4000-189158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156118/","id":156118,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-4-book-four/4000-156118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259636/","id":259636,"name":"Thy Kingdom Come: Part Three","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-3-thy-/4000-259636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155440/","id":155440,"name":"They Who Taught Us; Not What Heroes Do","site_detail_url":"https://comicvine.gamespot.com/trinity-46-they-who-taught-us-not-what-heroes-do/4000-155440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155335/","id":155335,"name":"The Power Is Close...; A Single Human Soul","site_detail_url":"https://comicvine.gamespot.com/trinity-45-the-power-is-close-a-single-human-soul/4000-155335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154666/","id":154666,"name":"What's in it For Us?; Much to discuss","site_detail_url":"https://comicvine.gamespot.com/trinity-44-whats-in-it-for-us-much-to-discuss/4000-154666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151134/","id":151134,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-3-book-three/4000-151134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298515/","id":298515,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-flash-archives-5-volume-5/4000-298515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153985/","id":153985,"name":"Shiny Face Pitch A Fit; Talking to Sunshine and Shade","site_detail_url":"https://comicvine.gamespot.com/trinity-43-shiny-face-pitch-a-fit-talking-to-sunsh/4000-153985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153687/","id":153687,"name":"An Old Pattern Repeating Itself; Weaving Fate","site_detail_url":"https://comicvine.gamespot.com/trinity-42-an-old-pattern-repeating-itself-weaving/4000-153687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150660/","id":150660,"name":"New Heaven, New Earth","site_detail_url":"https://comicvine.gamespot.com/final-crisis-7-new-heaven-new-earth/4000-150660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150506/","id":150506,"name":"","site_detail_url":"https://comicvine.gamespot.com/final-crisis-superman-beyond-3d-2/4000-150506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592302/","id":592302,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/tangent-supermans-reign-1-volume-one/4000-592302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152786/","id":152786,"name":"Metropolis; The Power You Deserve","site_detail_url":"https://comicvine.gamespot.com/trinity-39-metropolis-the-power-you-deserve/4000-152786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152233/","id":152233,"name":"Who Are You?; The Last Stand","site_detail_url":"https://comicvine.gamespot.com/trinity-38-who-are-you-the-last-stand/4000-152233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151156/","id":151156,"name":"God War; Fellow Prisoners","site_detail_url":"https://comicvine.gamespot.com/trinity-36-god-war-fellow-prisoners/4000-151156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147889/","id":147889,"name":"Meet the New Boss!","site_detail_url":"https://comicvine.gamespot.com/ambush-bug-year-none-5-meet-the-new-boss/4000-147889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150684/","id":150684,"name":"The Unsolvable Riddle; The Gods Themselves","site_detail_url":"https://comicvine.gamespot.com/trinity-35-the-unsolvable-riddle-the-gods-themselv/4000-150684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150059/","id":150059,"name":"There Must Be Hope; To Reflect Her Nature","site_detail_url":"https://comicvine.gamespot.com/trinity-33-there-must-be-hope-to-reflect-her-natur/4000-150059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149807/","id":149807,"name":"Lady of Bounty and Teacher To All; A Better World","site_detail_url":"https://comicvine.gamespot.com/trinity-32-lady-of-bounty-and-teacher-to-all-a-bet/4000-149807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245992/","id":245992,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-lightning-saga-1-vol/4000-245992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143315/","id":143315,"name":"Chapter Nine","site_detail_url":"https://comicvine.gamespot.com/tangent-supermans-reign-9-chapter-nine/4000-143315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149283/","id":149283,"name":"The Empress, The Chariot and Judgement; The Legend of the Hunting Hawk","site_detail_url":"https://comicvine.gamespot.com/trinity-31-the-empress-the-chariot-and-judgement-t/4000-149283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140143/","id":140143,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/final-crisis-revelations-3-part-3/4000-140143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148686/","id":148686,"name":"In the Longago; This is what we need to know","site_detail_url":"https://comicvine.gamespot.com/trinity-30-in-the-longago-this-is-what-we-need-to-/4000-148686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146870/","id":146870,"name":"It's All In The Cards; Not On My Watch","site_detail_url":"https://comicvine.gamespot.com/trinity-29-its-all-in-the-cards-not-on-my-watch/4000-146870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259635/","id":259635,"name":"Thy Kingdom Come: Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-2-thy-/4000-259635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145535/","id":145535,"name":"Those We Have Lost; Railing Against the Tide","site_detail_url":"https://comicvine.gamespot.com/trinity-28-those-we-have-lost-railing-against-the-/4000-145535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254904/","id":254904,"name":"Vengeance","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-vengeance-1-vengeance/4000-254904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141323/","id":141323,"name":"The Demiurge","site_detail_url":"https://comicvine.gamespot.com/rannthanagar-holy-war-6-the-demiurge/4000-141323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141521/","id":141521,"name":"One World, Under Gog Part V: Earth Bound","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-20-one-world-under-gog-/4000-141521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141147/","id":141147,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/tangent-supermans-reign-8-chapter-eight/4000-141147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139407/","id":139407,"name":"A Ton of Bricks, A Jug of Whine-- And Thou!","site_detail_url":"https://comicvine.gamespot.com/ambush-bug-year-none-3-a-ton-of-bricks-a-jug-of-wh/4000-139407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142545/","id":142545,"name":"Like Ice Melting; Very Different People","site_detail_url":"https://comicvine.gamespot.com/trinity-25-like-ice-melting-very-different-people/4000-142545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141992/","id":141992,"name":"Dead and Burnt to Ash; Air Is For Cowards","site_detail_url":"https://comicvine.gamespot.com/trinity-24-dead-and-burnt-to-ash-air-is-for-coward/4000-141992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139093/","id":139093,"name":"Tangent: Superman's Reign Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/tangent-supermans-reign-7-tangent-supermans-reign-/4000-139093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140472/","id":140472,"name":"One World, Under Gog Part IV: Out of Place","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-19-one-world-under-gog-/4000-140472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139069/","id":139069,"name":"Dreamwar","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-6-dreamwar/4000-139069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140850/","id":140850,"name":"Darkseid Says","site_detail_url":"https://comicvine.gamespot.com/final-crisis-4-darkseid-says/4000-140850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140458/","id":140458,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-2-book-two/4000-140458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150618/","id":150618,"name":"Beginnings","site_detail_url":"https://comicvine.gamespot.com/mortal-kombat-vs-dc-universe-1-beginnings/4000-150618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136525/","id":136525,"name":null,"site_detail_url":"https://comicvine.gamespot.com/final-crisis-superman-beyond-3d-1/4000-136525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141193/","id":141193,"name":"A Hope For Tomorrow; Winds of Change","site_detail_url":"https://comicvine.gamespot.com/trinity-22-a-hope-for-tomorrow-winds-of-change/4000-141193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140888/","id":140888,"name":"Moment of Truth; Clear and Present","site_detail_url":"https://comicvine.gamespot.com/trinity-21-moment-of-truth-clear-and-present/4000-140888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253271/","id":253271,"name":"Catwoman: Crime Pays","site_detail_url":"https://comicvine.gamespot.com/catwoman-crime-pays-1-catwoman-crime-pays/4000-253271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190500/","id":190500,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-3-tpb/4000-190500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135070/","id":135070,"name":"The Great Leap, Part One","site_detail_url":"https://comicvine.gamespot.com/nightwing-147-the-great-leap-part-one/4000-135070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136524/","id":136524,"name":"One World, Under Gog Part III: War Lords","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-18-one-world-under-gog-/4000-136524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136886/","id":136886,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/tangent-supermans-reign-6-chapter-six/4000-136886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135985/","id":135985,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/final-crisis-legion-of-three-worlds-1-book-one/4000-135985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136885/","id":136885,"name":"Bad to the Bone","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-5-bad-to-the-bone/4000-136885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135081/","id":135081,"name":"Actuality Contamination","site_detail_url":"https://comicvine.gamespot.com/hawkman-special-1-actuality-contamination/4000-135081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137349/","id":137349,"name":"So What Now?; Let The Burning Begin!","site_detail_url":"https://comicvine.gamespot.com/trinity-14-so-what-now-let-the-burning-begin/4000-137349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133646/","id":133646,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-4-resurrection/4000-133646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134567/","id":134567,"name":"Earth 2","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-annual-1-earth-2/4000-134567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358012/","id":358012,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-1/4000-358012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136515/","id":136515,"name":"That was a Sonic Boom; Drop The Coffin and Surrender","site_detail_url":"https://comicvine.gamespot.com/trinity-13-that-was-a-sonic-boom-drop-the-coffin-a/4000-136515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135992/","id":135992,"name":"100101010; Riddle me this","site_detail_url":"https://comicvine.gamespot.com/trinity-12-100101010-riddle-me-this/4000-135992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135427/","id":135427,"name":"Distinguished Visitors; Next Step","site_detail_url":"https://comicvine.gamespot.com/trinity-11-distinguished-visitors-next-step/4000-135427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135055/","id":135055,"name":"Rough World; Maybe she doesn't like concrete?","site_detail_url":"https://comicvine.gamespot.com/trinity-10-rough-world-maybe-she-doesnt-like-concr/4000-135055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131519/","id":131519,"name":"Mettle!","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-3-mettle/4000-131519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134553/","id":134553,"name":"Crumbs in the Forest; Making the Pieces fit","site_detail_url":"https://comicvine.gamespot.com/trinity-9-crumbs-in-the-forest-making-the-pieces-f/4000-134553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134016/","id":134016,"name":"Have you tied him up yet?","site_detail_url":"https://comicvine.gamespot.com/trinity-8-have-you-tied-him-up-yet/4000-134016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210379/","id":210379,"name":"The Sinestro Corps War Vol. 2","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-sinestro-corps-war-2-the-sinestr/4000-210379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131407/","id":131407,"name":"First Strike","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-2-first-strike/4000-131407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130994/","id":130994,"name":"D.O.A.: The GOD of WAR!","site_detail_url":"https://comicvine.gamespot.com/final-crisis-1-doa-the-god-of-war/4000-130994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131464/","id":131464,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-universe-special-justice-league-of-america-1/4000-131464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129019/","id":129019,"name":"Let There Be Lightning","site_detail_url":"https://comicvine.gamespot.com/dc-universe-0-let-there-be-lightning/4000-129019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246738/","id":246738,"name":"The Injustice League","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-injustice-league-1-t/4000-246738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265454/","id":265454,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-the-flash-2-volume-2/4000-265454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128357/","id":128357,"name":"Chimera Rising","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-1-chimera-rising/4000-128357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190552/","id":190552,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/booster-gold-52-pick-up-1-volume-1/4000-190552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259634/","id":259634,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-1-part/4000-259634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276446/","id":276446,"name":"The Hunt For Ray Palmer","site_detail_url":"https://comicvine.gamespot.com/the-all-new-atom-the-hunt-for-ray-palmer-1-the-hun/4000-276446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229688/","id":229688,"name":"Torment","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-torment-1-torment/4000-229688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190497/","id":190497,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-1-tpb/4000-190497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126059/","id":126059,"name":"The Conclusion","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-6/4000-126059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128207/","id":128207,"name":"Loose Ends","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-1-loose-ends/4000-128207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126122/","id":126122,"name":"The Home Front: To Serve Rann","site_detail_url":"https://comicvine.gamespot.com/countdown-to-adventure-7-the-home-front-to-serve-r/4000-126122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124848/","id":124848,"name":"Part Five: Man of Peace. Man of War.","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-5/4000-124848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124022/","id":124022,"name":"\"Of COURSE we're criminals. We've always BEEN criminals.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-9-of-course-w/4000-124022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125264/","id":125264,"name":"War In Pieces","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-8-war-in-pieces/4000-125264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121964/","id":121964,"name":"Part Four: Losing My Religion","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-4/4000-121964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121197/","id":121197,"name":"True Colors","site_detail_url":"https://comicvine.gamespot.com/countdown-arena-3-true-colors/4000-121197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119211/","id":119211,"name":"Thy Kingdom Come: The Second Coming","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-11-thy-kingdom-come-the/4000-119211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121634/","id":121634,"name":"The Home Front: Patient Zero","site_detail_url":"https://comicvine.gamespot.com/countdown-to-adventure-5-the-home-front-patient-ze/4000-121634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120939/","id":120939,"name":"The Face of Death","site_detail_url":"https://comicvine.gamespot.com/countdown-arena-2-the-face-of-death/4000-120939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120389/","id":120389,"name":"The Blood-Soaked Sands","site_detail_url":"https://comicvine.gamespot.com/countdown-arena-1-the-blood-soaked-sands/4000-120389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122329/","id":122329,"name":"Red Son","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-the-search-for-ray-palmer-red-s/4000-122329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120872/","id":120872,"name":"Part Three: The Beast Within","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-3/4000-120872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121199/","id":121199,"name":"All Fall Down","site_detail_url":"https://comicvine.gamespot.com/countdown-arena-4-all-fall-down/4000-121199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120245/","id":120245,"name":"A Brief Tangent; Soup Kitchen","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-16-a-brief-tangent-soup-/4000-120245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121198/","id":121198,"name":"","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-the-search-for-ray-palmer-super/4000-121198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121175/","id":121175,"name":"Night of the Bat","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-the-search-for-ray-palmer-gotha/4000-121175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122256/","id":122256,"name":"Abandon All Hope","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-13-abandon-all-hope/4000-122256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121840/","id":121840,"name":"Choke On It!","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-14-choke-on-it/4000-121840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122259/","id":122259,"name":"Splitting the Atom","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-15-splitting-the-atom/4000-122259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121315/","id":121315,"name":"What Price Paradise?","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-16-what-price-paradise/4000-121315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120899/","id":120899,"name":"This Means War!","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-17-this-means-war/4000-120899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228824/","id":228824,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-and-robin-the-boy-wonder-volume-1-/4000-228824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119739/","id":119739,"name":"The Home Front: First, Do No Harm","site_detail_url":"https://comicvine.gamespot.com/countdown-to-adventure-4-the-home-front-first-do-n/4000-119739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119950/","id":119950,"name":"Sinestro Corps War Part 11: Birth of the Black Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern-25-sinestro-corps-war-part-11-birth-/4000-119950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117690/","id":117690,"name":"Red Robin","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-the-search-for-ray-palmer-red-r/4000-117690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119082/","id":119082,"name":"Part Two: The Last Days of the Extremists","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-2/4000-119082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120775/","id":120775,"name":"Safe House","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-18-safe-house/4000-120775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120438/","id":120438,"name":"Season's Beatings","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-19-seasons-beatings/4000-120438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225809/","id":225809,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-justice-league-of-america-3-volu/4000-225809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120203/","id":120203,"name":"Loneliest Number","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-20-loneliest-number/4000-120203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116803/","id":116803,"name":"Sinestro Corps War Part 9: Endgame","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-17-sinestro-corps-war-part-9-e/4000-116803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119450/","id":119450,"name":"Down And Out... And Beyond!","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-21-down-and-out-and-beyo/4000-119450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117687/","id":117687,"name":"Wrong Place, Wrong Time","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go-48-wrong-place-wrong-time/4000-117687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115567/","id":115567,"name":"The Jokester's Last Laugh","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-the-search-for-ray-palmer-crime/4000-115567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118484/","id":118484,"name":"The Home Front: In The Time Of The Plague","site_detail_url":"https://comicvine.gamespot.com/countdown-to-adventure-3-the-home-front-in-the-tim/4000-118484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118151/","id":118151,"name":"Part One: The Arrival","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-1/4000-118151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115864/","id":115864,"name":"Into the Sun","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-sinestro-corps-superman-prime-1-into-/4000-115864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236001/","id":236001,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/52-4-volume-4/4000-236001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118289/","id":118289,"name":"The Bottled Imp","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-23-the-bottled-imp/4000-118289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117971/","id":117971,"name":"Prime Example","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-24-prime-example/4000-117971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114442/","id":114442,"name":"Running Wild","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-the-search-for-ray-palmer-wilds/4000-114442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259627/","id":259627,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-the-next-age-1-volume-1/4000-259627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116586/","id":116586,"name":"Halfway to Hell","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-26-halfway-to-hell/4000-116586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135951/","id":135951,"name":"Disasters Great & Otherwise","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-27-disasters-great-other/4000-135951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135949/","id":135949,"name":"Now, Forager!","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-28-now-forager/4000-135949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115423/","id":115423,"name":"Another Country Heard From","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-29-another-country-heard/4000-115423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115148/","id":115148,"name":"Family Feud","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-30-family-feud/4000-115148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113547/","id":113547,"name":"52 Pick-Up, Chapter 1: Secret Origins","site_detail_url":"https://comicvine.gamespot.com/booster-gold-1-52-pick-up-chapter-1-secret-origins/4000-113547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114957/","id":114957,"name":"New Frontiers","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-31-new-frontiers/4000-114957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114619/","id":114619,"name":"Girls Gone Wild","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-32-girls-gone-wild/4000-114619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114413/","id":114413,"name":"Let's Make A Deal","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-33-lets-make-a-deal/4000-114413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114202/","id":114202,"name":"Searching For Answers","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-34-searching-for-answers/4000-114202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113993/","id":113993,"name":"Girls Just Wanna Have Fun","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-35-girls-just-wanna-have/4000-113993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113098/","id":113098,"name":"All Hell!","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-38-all-hell/4000-113098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112445/","id":112445,"name":"Do Not Pass Go","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-39-do-not-pass-go/4000-112445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112031/","id":112031,"name":"Small Wonders","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-40-small-wonders/4000-112031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111794/","id":111794,"name":"Another Fine Mess","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-41-another-fine-mess/4000-111794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111582/","id":111582,"name":"Shock To The System","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-42-shock-to-the-system/4000-111582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111242/","id":111242,"name":"The Funeral","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-43-the-funeral/4000-111242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110060/","id":110060,"name":"The Lightning Saga, Chapter 4: Three Worlds","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-6-the-lightning-saga-ch/4000-110060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109607/","id":109607,"name":"\"I love being the goddamn BATMAN.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-5-i-love-bein/4000-109607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111039/","id":111039,"name":"Changes of Address","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-44-changes-of-address/4000-111039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110440/","id":110440,"name":"Weapon of War","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-46-weapon-of-war/4000-110440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110277/","id":110277,"name":"Bricks in the Wall","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-47-bricks-in-the-wall/4000-110277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110670/","id":110670,"name":"Monitor Duty","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-45-monitor-duty/4000-110670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140373/","id":140373,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/action-heroes-archives-2-volume-2/4000-140373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235426/","id":235426,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/52-1-volume-1/4000-235426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110058/","id":110058,"name":"Death From Above","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-48-death-from-above/4000-110058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109886/","id":109886,"name":"Stretching the Truth","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-49-stretching-the-truth/4000-109886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108928/","id":108928,"name":"A Year In The Life","site_detail_url":"https://comicvine.gamespot.com/52-52-a-year-in-the-life/4000-108928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109394/","id":109394,"name":"Look to the Skies","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-51-look-to-the-skies/4000-109394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111462/","id":111462,"name":"The Dark Side of Green Part 2","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-8-the-dark-side-of-green-part-/4000-111462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106291/","id":106291,"name":"Tales of the Green Lantern","site_detail_url":"https://comicvine.gamespot.com/ion-guardian-of-the-universe-10-tales-of-the-green/4000-106291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134203/","id":134203,"name":"Off on a Tangent","site_detail_url":"https://comicvine.gamespot.com/ion-guardian-of-the-universe-9-off-on-a-tangent/4000-134203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109611/","id":109611,"name":"Lightning In A Bottle, Part Six: Burning Bridges","site_detail_url":"https://comicvine.gamespot.com/the-flash-the-fastest-man-alive-6-lightning-in-a-b/4000-109611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229092/","id":229092,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jsa-ghost-stories-1-tpb/4000-229092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109982/","id":109982,"name":"Bad Moon Rising ; Trouble by the Waddle ; Introducing... Sara Hunter!","site_detail_url":"https://comicvine.gamespot.com/krypto-the-superdog-3-bad-moon-rising-trouble-by-t/4000-109982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290538/","id":290538,"name":"","site_detail_url":"https://comicvine.gamespot.com/liga-da-justica-outro-prego-1/4000-290538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105547/","id":105547,"name":"The Last Piece of the Puzzle","site_detail_url":"https://comicvine.gamespot.com/planetary-26-the-last-piece-of-the-puzzle/4000-105547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113372/","id":113372,"name":"Stop Me If You've Heard This One...","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-annual-1-stop-me-if-youve-heard-thi/4000-113372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109980/","id":109980,"name":"Crisis of Infinite Kryptos ; Ignatius Ignites","site_detail_url":"https://comicvine.gamespot.com/krypto-the-superdog-2-crisis-of-infinite-kryptos-i/4000-109980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106236/","id":106236,"name":"Yesterday, Today and Tomorrow","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-0-yesterday-today-and-to/4000-106236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107101/","id":107101,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-9-the-end/4000-107101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167602/","id":167602,"name":"Brave New World","site_detail_url":"https://comicvine.gamespot.com/brave-new-world-1-brave-new-world/4000-167602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107100/","id":107100,"name":"Lessons In Nuclear Physics","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-8-lessons-in-nuclear-physi/4000-107100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202240/","id":202240,"name":"Infinite Crisis","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-1-infinite-crisis/4000-202240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105546/","id":105546,"name":"In from the Cold","site_detail_url":"https://comicvine.gamespot.com/planetary-25-in-from-the-cold/4000-105546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107099/","id":107099,"name":"Who Says The World Needs Saving?","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-7-who-says-the-world-needs/4000-107099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132738/","id":132738,"name":"Life and Death","site_detail_url":"https://comicvine.gamespot.com/teen-titans-life-and-death-1-life-and-death/4000-132738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119438/","id":119438,"name":"Darknight Daughter","site_detail_url":"https://comicvine.gamespot.com/huntress-darknight-daughter-1-darknight-daughter/4000-119438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122054/","id":122054,"name":"Touchdown","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-6-touchdown/4000-122054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111193/","id":111193,"name":"With a Vengeance!, Chapter Six: Supermen/Batmen","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-25-with-a-vengeance-chapter-six-sup/4000-111193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298514/","id":298514,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-flash-archives-4-volume-4/4000-298514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107097/","id":107097,"name":"Sometimes When We Touch...","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-6-sometimes-when-we-touch/4000-107097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107096/","id":107096,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-5-no-exit/4000-107096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135756/","id":135756,"name":"Ghost in the House","site_detail_url":"https://comicvine.gamespot.com/jsa-82-ghost-in-the-house/4000-135756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107095/","id":107095,"name":"Fight Scene","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-4-fight-scene/4000-107095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107094/","id":107094,"name":"Power Struggle","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-3-power-struggle/4000-107094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-257791/","id":257791,"name":"Episode One","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-special-edition-1-episode-on/4000-257791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107881/","id":107881,"name":"Divine Intervention","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-3-divine-intervention/4000-107881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107877/","id":107877,"name":"The Survivors","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-2-the-survivors/4000-107877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107093/","id":107093,"name":"Brave New World","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-2-brave-new-world/4000-107093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111276/","id":111276,"name":"Power Trip, Part IV of IV","site_detail_url":"https://comicvine.gamespot.com/jsa-classified-4-power-trip-part-iv-of-iv/4000-111276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105305/","id":105305,"name":"Infinite Crisis","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-1-infinite-crisis/4000-105305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107092/","id":107092,"name":"A Scream Across The Sky","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-1-a-scream-across-the-sky/4000-107092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106927/","id":106927,"name":"\"A sweet young thing like ME can only take so MUCH.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-3-a-sweet-you/4000-106927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147954/","id":147954,"name":"The Absolute Edition","site_detail_url":"https://comicvine.gamespot.com/absolute-crisis-on-infinite-earths-1-the-absolute-/4000-147954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111191/","id":111191,"name":"With a Vengeance!, Chapter Four: Smoke and Mirrors","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-23-with-a-vengeance-chapter-four-sm/4000-111191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110711/","id":110711,"name":"Power Trip, Part III of IV","site_detail_url":"https://comicvine.gamespot.com/jsa-classified-3-power-trip-part-iii-of-iv/4000-110711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106377/","id":106377,"name":"\"There's no TIME for GRIEF.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-2-theres-no-t/4000-106377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111190/","id":111190,"name":"With a Vengeance!, Chapter Three: Heroes and Villains","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-22-with-a-vengeance-chapter-three-h/4000-111190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111189/","id":111189,"name":"With a Vengeance!, Chapter Two: Mistaken Identity Crisis","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-21-with-a-vengeance-chapter-two-mis/4000-111189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106828/","id":106828,"name":"\"This should get me KILLED. But it WON'T.\"","site_detail_url":"https://comicvine.gamespot.com/all-star-batman-robin-the-boy-wonder-1-this-should/4000-106828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100963/","id":100963,"name":"Absolute Power, Chapter 4: A World Without Batman...","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-17-absolute-power-chapter-4-a-world/4000-100963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100962/","id":100962,"name":"Absolute Power, Chapter 3: When Time Goes Asunder...","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-16-absolute-power-chapter-3-when-ti/4000-100962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143336/","id":143336,"name":"Reality Check","site_detail_url":"https://comicvine.gamespot.com/majestic-4-reality-check/4000-143336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303985/","id":303985,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jla-syndicate-rules-1-tpb/4000-303985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100960/","id":100960,"name":"Absolute Power, Chapter 1: I Pledge Allegiance...","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-14-absolute-power-chapter-1-i-pledg/4000-100960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204666/","id":204666,"name":"The Future is Now","site_detail_url":"https://comicvine.gamespot.com/teen-titans-the-future-is-now-1-the-future-is-now/4000-204666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129765/","id":129765,"name":"Superboy and the Legion, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titanslegion-special-1-superboy-and-the-legio/4000-129765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119421/","id":119421,"name":"Ride a Deadly Grenade!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-the-atom-1-ride-a-deadly-grenad/4000-119421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140372/","id":140372,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/action-heroes-archives-1-volume-1/4000-140372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140327/","id":140327,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-3-vol-3/4000-140327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229272/","id":229272,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/planetary-crossing-worlds-1-tpb/4000-229272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91371/","id":91371,"name":"Strange New Visitor; Part 2","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-624-strange-new-visitor-par/4000-91371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120848/","id":120848,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140326/","id":140326,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-2-vol-2/4000-140326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105551/","id":105551,"name":null,"site_detail_url":"https://comicvine.gamespot.com/planetarybatman-night-on-earth-1/4000-105551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105588/","id":105588,"name":"Many Worlds of Tesla Strong","site_detail_url":"https://comicvine.gamespot.com/many-worlds-of-tesla-strong-1-many-worlds-of-tesla/4000-105588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710557/","id":710557,"name":"Nacht auf Erden","site_detail_url":"https://comicvine.gamespot.com/planetary-batman-1-nacht-auf-erden/4000-710557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105567/","id":105567,"name":null,"site_detail_url":"https://comicvine.gamespot.com/planetaryjla-terra-occulta-1/4000-105567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140325/","id":140325,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/crisis-on-multiple-earths-1-volume-1/4000-140325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126513/","id":126513,"name":"World Without Young Justice, Part 5: Bang Bang Bedlam's Purple Hammer","site_detail_url":"https://comicvine.gamespot.com/young-justice-45-world-without-young-justice-part-/4000-126513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119642/","id":119642,"name":"World Without Young Justice, Part 4: Doomsboy","site_detail_url":"https://comicvine.gamespot.com/superboy-99-world-without-young-justice-part-4-doo/4000-119642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126515/","id":126515,"name":"World Without Young Justice, Part 1: The World What Once We Knew","site_detail_url":"https://comicvine.gamespot.com/young-justice-44-world-without-young-justice-part-/4000-126515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298513/","id":298513,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-flash-archives-3-volume-3/4000-298513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384676/","id":384676,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/jla-the-ultimate-guide-to-the-justice-league-of-am/4000-384676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140335/","id":140335,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-archives-7-volume-7/4000-140335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134521/","id":134521,"name":"Bizarro Comics","site_detail_url":"https://comicvine.gamespot.com/bizarro-comics-1-bizarro-comics/4000-134521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110577/","id":110577,"name":"Last Imp Standing!","site_detail_url":"https://comicvine.gamespot.com/superman-and-batman-worlds-funnest-1-last-imp-stan/4000-110577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106216/","id":106216,"name":"Earth-2","site_detail_url":"https://comicvine.gamespot.com/jla-earth-2-1-earth-2/4000-106216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48244/","id":48244,"name":"The Wast Son of Kwypton!","site_detail_url":"https://comicvine.gamespot.com/superman-bugs-bunny-2-the-wast-son-of-kwypton/4000-48244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48243/","id":48243,"name":"The DC Super Heroes Meet the Looney Tunes!","site_detail_url":"https://comicvine.gamespot.com/superman-and-bugs-bunny-1-the-dc-super-heroes-meet/4000-48243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140031/","id":140031,"name":"S.O.S. to Nowhere! / The Mad Hatter's Hat Crimes! / The Invaders from Space? / Wonder Girl's Mystery Suitor! / The Life Story of... Super-Turtle","site_detail_url":"https://comicvine.gamespot.com/silver-age-80-page-giant-1-sos-to-nowhere-the-mad-/4000-140031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140036/","id":140036,"name":"The Flash's Big Day","site_detail_url":"https://comicvine.gamespot.com/silver-age-the-flash-1-the-flashs-big-day/4000-140036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210274/","id":210274,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-the-flash-123-1/4000-210274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210041/","id":210041,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-crisis-on-infinite-earths-1-1/4000-210041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53626/","id":53626,"name":"Shiftships, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-authority-8-shiftships-part-4/4000-53626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167616/","id":167616,"name":"The One Million Universe at a Glance","site_detail_url":"https://comicvine.gamespot.com/dc-one-million-80-page-giant-1000000-the-one-milli/4000-167616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53501/","id":53501,"name":"Hyper-Tension! Part 1: Big Bang Theory!","site_detail_url":"https://comicvine.gamespot.com/superboy-60-hyper-tension-part-1-big-bang-theory/4000-53501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150946/","id":150946,"name":"The Untold Story","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dc-universe-crisis-on-infinite-eart/4000-150946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151666/","id":151666,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-1-tpb/4000-151666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120466/","id":120466,"name":"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-the-jokers-wild-1/4000-120466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78433/","id":78433,"name":"\"Guy Talk\"","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files-1-guy-talk/4000-78433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73258/","id":73258,"name":"Time Won't Let Me","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-105-time-wont-let-me/4000-73258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140332/","id":140332,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-archives-4-volume-4/4000-140332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159158/","id":159158,"name":"Crime Machine","site_detail_url":"https://comicvine.gamespot.com/jlawildcats-1-crime-machine/4000-159158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105978/","id":105978,"name":"Round Four","site_detail_url":"https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-4-round-four/4000-105978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105431/","id":105431,"name":"Round One","site_detail_url":"https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-1-round-one/4000-105431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39711/","id":39711,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-0-zero-hour/4000-39711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39698/","id":39698,"name":"Countdown to Zero","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-37-countdown-to-zero/4000-39698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39519/","id":39519,"name":"You Shouldn't a Bit, Fish","site_detail_url":"https://comicvine.gamespot.com/hardware-18-you-shouldnt-a-bit-fish/4000-39519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39562/","id":39562,"name":"A Rift in Reality","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-36-a-rift-in-reality/4000-39562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39477/","id":39477,"name":"Worlds Collide, Part 8: Menace 2 Societies","site_detail_url":"https://comicvine.gamespot.com/superboy-7-worlds-collide-part-8-menace-2-societie/4000-39477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136294/","id":136294,"name":"Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/steel-7-worlds-collide/4000-136294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39518/","id":39518,"name":"Mirror Faces Mirror","site_detail_url":"https://comicvine.gamespot.com/blood-syndicate-17-mirror-faces-mirror/4000-39518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39520/","id":39520,"name":"Ain't No Such Thing As Superman","site_detail_url":"https://comicvine.gamespot.com/icon-16-aint-no-such-thing-as-superman/4000-39520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39523/","id":39523,"name":"After Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/static-14-after-worlds-collide/4000-39523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159585/","id":159585,"name":"How Can You Be in Two Places at Once, When You're Not Anywhere at All?","site_detail_url":"https://comicvine.gamespot.com/worlds-collide-1-how-can-you-be-in-two-places-at-o/4000-159585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39418/","id":39418,"name":"Afterburn","site_detail_url":"https://comicvine.gamespot.com/superman-the-man-of-steel-35-afterburn/4000-39418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39339/","id":39339,"name":"Worlds Collide, Part 3: Changing Realities","site_detail_url":"https://comicvine.gamespot.com/superboy-6-worlds-collide-part-3-changing-realitie/4000-39339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39385/","id":39385,"name":"Toys Of The Gods","site_detail_url":"https://comicvine.gamespot.com/blood-syndicate-16-toys-of-the-gods/4000-39385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39386/","id":39386,"name":"No Rest for the Weary","site_detail_url":"https://comicvine.gamespot.com/hardware-17-no-rest-for-the-weary/4000-39386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39387/","id":39387,"name":"Living in a Dreamworld","site_detail_url":"https://comicvine.gamespot.com/icon-15-living-in-a-dreamworld/4000-39387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-71046/","id":71046,"name":"The Feral Man of Steel","site_detail_url":"https://comicvine.gamespot.com/superman-annual-6-the-feral-man-of-steel/4000-71046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118201/","id":118201,"name":"Lake of Fire","site_detail_url":"https://comicvine.gamespot.com/batmanpunisher-lake-of-fire-1-lake-of-fire/4000-118201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119364/","id":119364,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/animal-man-1-volume-1/4000-119364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267979/","id":267979,"name":"","site_detail_url":"https://comicvine.gamespot.com/animal-man-6/4000-267979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32398/","id":32398,"name":"The Superboy","site_detail_url":"https://comicvine.gamespot.com/superboy-1-the-superboy/4000-32398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258514/","id":258514,"name":"The Complete Frank Miller Batman HC","site_detail_url":"https://comicvine.gamespot.com/complete-frank-miller-batman-1-the-complete-frank-/4000-258514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30611/","id":30611,"name":"The Coyote Gospel","site_detail_url":"https://comicvine.gamespot.com/animal-man-5-the-coyote-gospel/4000-30611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29999/","id":29999,"name":"Parallel Lives Meet at Infinity...","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-444-parallel-lives-meet-at-/4000-29999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28520/","id":28520,"name":"The Greatest Hero of Them All","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-38-the-greatest-hero-of-the/4000-28520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119276/","id":119276,"name":"Past Imperfect","site_detail_url":"https://comicvine.gamespot.com/action-comics-591-past-imperfect/4000-119276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113928/","id":113928,"name":"Better Living Dying through Chemistry","site_detail_url":"https://comicvine.gamespot.com/action-comics-590-better-living-dying-through-chem/4000-113928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27970/","id":27970,"name":"","site_detail_url":"https://comicvine.gamespot.com/shazam-the-new-beginning-1/4000-27970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155087/","id":155087,"name":"The Last Days of the Justice Society","site_detail_url":"https://comicvine.gamespot.com/last-days-of-the-justice-society-special-1-the-las/4000-155087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27326/","id":27326,"name":"The Origin of the Golden Age Robotman","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-63-the-origin-of-the-golden-age-/4000-27326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27129/","id":27129,"name":"The Origin of Liberty Belle","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-61-the-origin-of-liberty-belle/4000-27129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27149/","id":27149,"name":"Starring Halo and the Golden Age Batman","site_detail_url":"https://comicvine.gamespot.com/secret-origins-6-starring-halo-and-the-golden-age-/4000-27149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140507/","id":140507,"name":"The Official Crisis on Infinite Earths Crossover Index","site_detail_url":"https://comicvine.gamespot.com/the-official-crisis-on-infinite-earths-crossover-i/4000-140507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26935/","id":26935,"name":"Out of the Ashes... Mechanique; Shanghaied into Hyperspace! Interlude Eight","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-59-out-of-the-ashes-mechanique-s/4000-26935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26839/","id":26839,"name":"The Challenge of the Volt Lord","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-94-the-challenge-of-the-volt-lo/4000-26839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26832/","id":26832,"name":"I Sing the Body Robotic!; Shanghaied Into Hyperspace! Interlude Seven","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-58-i-sing-the-body-robotic-shang/4000-26832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26739/","id":26739,"name":"Kaleidoscope","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-57-kaleidoscope/4000-26739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26641/","id":26641,"name":"The Sinister Secret of the Sixth Sense!; \"Shanghaied Into Hyperspace!\"-Interlude Three","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-56-the-sinister-secret-of-the-si/4000-26641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139916/","id":139916,"name":"The Official Crisis on Infinite Earths Index","site_detail_url":"https://comicvine.gamespot.com/the-official-crisis-on-infinite-earths-index-1-the/4000-139916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26574/","id":26574,"name":"Warrior of Mars","site_detail_url":"https://comicvine.gamespot.com/superman-417-warrior-of-mars/4000-26574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26549/","id":26549,"name":"Crisis at Canaveral/Shanghaied Into Space! Interlude Two","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-55-crisis-at-canaveralshanghaied/4000-26549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26444/","id":26444,"name":"The Crisis Comes to 1942! (And Vice Versa)","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-54-the-crisis-comes-to-1942-and-/4000-26444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26341/","id":26341,"name":"Worlds in Turmoil","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-53-worlds-in-turmoil/4000-26341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26144/","id":26144,"name":"Shadows at Midnight!","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-21-shadows-at-midnight/4000-26144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26132/","id":26132,"name":"From Fear To Eternity/Shanghaied Into Hyperspace! Interlude One","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-52-from-fear-to-eternityshanghai/4000-26132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26033/","id":26033,"name":"Year of the Comet; The Origin of Superboy-Prime!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-87-year-of-the-comet-the-origin/4000-26033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26037/","id":26037,"name":"5","site_detail_url":"https://comicvine.gamespot.com/green-lantern-194-5/4000-26037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26025/","id":26025,"name":"The Monster Society of Evil","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-51-the-monster-society-of-evil/4000-26025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26040/","id":26040,"name":"The Final Crisis","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-244-the-final-crisis/4000-26040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26031/","id":26031,"name":"A Flash of the Lightning","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-8-a-flash-of-the-lightni/4000-26031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25919/","id":25919,"name":"Crisis Point","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-50-crisis-point/4000-25919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25926/","id":25926,"name":"Beyond the Silent Night","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-7-beyond-the-silent-nigh/4000-25926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25825/","id":25825,"name":"Death-Sword at Sunrise!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-49-death-sword-at-sunrise/4000-25825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25903/","id":25903,"name":"The Last Earth-Prime Story","site_detail_url":"https://comicvine.gamespot.com/superman-411-the-last-earth-prime-story/4000-25903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177271/","id":177271,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-spotlight-1/4000-177271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25724/","id":25724,"name":"Camelot 1942!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-48-camelot-1942/4000-25724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25734/","id":25734,"name":"Worlds in Limbo","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-5-worlds-in-limbo/4000-25734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25628/","id":25628,"name":"The Secret Origin of Dr. Fate","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-47-the-secret-origin-of-dr-fate/4000-25628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25638/","id":25638,"name":"And Thus Shall the World Die!","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-4-and-thus-shall-the-wor/4000-25638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25522/","id":25522,"name":"Philadelphia--It Tolls for Thee!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-46-philadelphia-it-tolls-for-the/4000-25522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25532/","id":25532,"name":"Oblivion Upon Us","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-3-oblivion-upon-us/4000-25532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25431/","id":25431,"name":"Give Me Liberty--Give Me Death!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-45-give-me-liberty-give-me-death/4000-25431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25441/","id":25441,"name":"Time and Time Again","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-2-time-and-time-again/4000-25441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25335/","id":25335,"name":"The Summoning","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-1-the-summoning/4000-25335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25323/","id":25323,"name":"Night and Fog","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-44-night-and-fog/4000-25323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25324/","id":25324,"name":"D-Day for Degation!","site_detail_url":"https://comicvine.gamespot.com/america-vs-the-justice-society-4-d-day-for-degatio/4000-25324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133798/","id":133798,"name":"Ultimate Victory!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-43-ultimate-victory/4000-133798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117885/","id":117885,"name":"Hostile Witness!","site_detail_url":"https://comicvine.gamespot.com/america-vs-the-justice-society-3-hostile-witness/4000-117885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25197/","id":25197,"name":"Trial by Congress!","site_detail_url":"https://comicvine.gamespot.com/america-vs-the-justice-society-2-trial-by-congress/4000-25197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25196/","id":25196,"name":"Oh, Say, Can't You See...?","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-42-oh-say-cant-you-see/4000-25196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25227/","id":25227,"name":"Born to be Superman!","site_detail_url":"https://comicvine.gamespot.com/superman-404-born-to-be-superman/4000-25227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25110/","id":25110,"name":"I Accuse!","site_detail_url":"https://comicvine.gamespot.com/america-vs-the-justice-society-1-i-accuse/4000-25110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25109/","id":25109,"name":"--Catch a Falling Starman!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-41--catch-a-falling-starman/4000-25109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23780/","id":23780,"name":"With One Magic Word!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-annual-3-with-one-magic-word/4000-23780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24935/","id":24935,"name":"The Rise and Fall of the Phantom Empire!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-40-the-rise-and-fall-of-the-phan/4000-24935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25040/","id":25040,"name":"The Demon with a Cape!","site_detail_url":"https://comicvine.gamespot.com/superman-special-2-the-demon-with-a-cape/4000-25040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24831/","id":24831,"name":"Nobody Gets Out of Paradise Valley Alive!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-39-nobody-gets-out-of-paradise-v/4000-24831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24847/","id":24847,"name":"Battlegrounds!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-232-battlegrounds/4000-24847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24734/","id":24734,"name":"Detroit is Dynamite!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-38-detroit-is-dynamite/4000-24734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114367/","id":114367,"name":"Family Crisis!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-231-family-crisis/4000-114367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24647/","id":24647,"name":"Lightning in Berlin!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-37-lightning-in-berlin/4000-24647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23779/","id":23779,"name":"Justice Society of America","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-3-justice-society-of-amer/4000-23779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24541/","id":24541,"name":"Thunder Over London!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-36-thunder-over-london/4000-24541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24449/","id":24449,"name":"...That Earths May Live!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-35-that-earths-may-live/4000-24449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24349/","id":24349,"name":"The Wrath of Tsunami!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-34-the-wrath-of-tsunami/4000-24349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24362/","id":24362,"name":"Solomon Grundy goes to Hollywood","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-3-solomon-grundy-goes-to-hollywood/4000-24362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24250/","id":24250,"name":"The Battle of Santa Barbara--Times Two!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-33-the-battle-of-santa-barbara-t/4000-24250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24147/","id":24147,"name":"Crisis on Earth-X! The Prequel","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-32-crisis-on-earth-x-the-prequel/4000-24147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24038/","id":24038,"name":"Uncle Sam Wants You!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-31-uncle-sam-wants-you/4000-24038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24054/","id":24054,"name":"Generations","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-1-generations/4000-24054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133799/","id":133799,"name":"Day of the Black Dragon!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-30-day-of-the-black-dragon/4000-133799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23820/","id":23820,"name":"A Man Called Doome!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-29-a-man-called-doome/4000-23820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119460/","id":119460,"name":"Villain! Villain! Who's got the Villain?; I Flew with Superman!","site_detail_url":"https://comicvine.gamespot.com/superman-annual-9-villain-villain-whos-got-the-vil/4000-119460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23676/","id":23676,"name":"By Hatred Possessed!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-28-by-hatred-possessed/4000-23676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22714/","id":22714,"name":"The Ultra War!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-2-the-ultra-war/4000-22714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23574/","id":23574,"name":"A Spectre Is Haunting the Multiverse!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-27-a-spectre-is-haunting-the-mul/4000-23574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23582/","id":23582,"name":"The Naked Ape","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-20-the-nak/4000-23582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23590/","id":23590,"name":"The Doppelganger Gambit","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-220-the-doppelganger-gam/4000-23590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23491/","id":23491,"name":"Talons Across Time!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-26-talons-across-time/4000-23491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23500/","id":23500,"name":"Born on the Fourth of July","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-62-born-on-the-fourth-of-july/4000-23500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23508/","id":23508,"name":"Crisis in the Thunderbolt Dimension!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-219-crisis-in-the-thunde/4000-23508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23406/","id":23406,"name":"The Infinity Syndrome!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-25-the-infinity-syndrome/4000-23406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23325/","id":23325,"name":"The Man Who'll Know Too Much!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-24-the-man-wholl-know-too-much/4000-23325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23324/","id":23324,"name":"Plastic Man: \"Brickface and the Trowel\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-502-plastic-man-brickface-and-the/4000-23324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23244/","id":23244,"name":"When Fate Thy Measure Takes...!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-23-when-fate-thy-measure-takes/4000-23244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23251/","id":23251,"name":"Smell of Brimstone, Stench of Death!; Bat-Mite Speaks his Mind; Batman and the Outsiders","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-200-smell-of-brimstone-sten/4000-23251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23243/","id":23243,"name":"Plastic Man: \"Codename: Pinkeye!\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-501-plastic-man-codename-pinkeye/4000-23243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23158/","id":23158,"name":"The Powerstone Corrupts -- Absolutely!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-22-the-powerstone-corrupts-absol/4000-23158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23075/","id":23075,"name":"A Tale of Three Citadels!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-21-a-tale-of-three-citadels/4000-23075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23074/","id":23074,"name":"Plastic Man: \"Whirling Dervish\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-499-plastic-man-whirling-dervish/4000-23074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22997/","id":22997,"name":"Death In A Dark Dimension!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-56-death-in-a-dark-dimension/4000-22997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22987/","id":22987,"name":"...For the Dark Things Cannot Stand the Light...!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-20-for-the-dark-things-cannot-st/4000-22987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22986/","id":22986,"name":"Plastic Man: \"Carlton Canary\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-498-plastic-man-carlton-canary/4000-22986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22908/","id":22908,"name":"Death Considered as a State of Mind!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-19-death-considered-as-a-state-o/4000-22908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22907/","id":22907,"name":"Challengers of the Unknown: \"All Together Now!\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-497-challengers-of-the-unknown-al/4000-22907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22823/","id":22823,"name":"Vengeance from Valhalla!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-18-vengeance-from-valhalla/4000-22823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22750/","id":22750,"name":"To Slay the Body Electric!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-17-to-slay-the-body-electric/4000-22750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22749/","id":22749,"name":"Challengers of the Unknown: \"Yesterday's Clues!\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-495-challengers-of-the-unknown-ye/4000-22749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22629/","id":22629,"name":"The Magnetic Marauder!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-16-the-magnetic-marauder/4000-22629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22646/","id":22646,"name":"Let Old Aquaintances Be Forgot...","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-209-let-old-aquaintances/4000-22646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21776/","id":21776,"name":"Crisis on Three Earths!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-annual-1-crisis-on-three-earths/4000-21776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21775/","id":21775,"name":"The Three Faces of Evil!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-1-the-three-faces-of-evil/4000-21775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22570/","id":22570,"name":"The Bomb-Blast Heard 'Round the World!: Fate is the Killer","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-208-the-bomb-blast-heard/4000-22570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123595/","id":123595,"name":"Terra Times Two!; Fate is the Killer!","site_detail_url":"https://comicvine.gamespot.com/superman-377-terra-times-two-fate-is-the-killer/4000-123595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22554/","id":22554,"name":"Master of Worlds and Time! / Fate is the Killer","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-15-master-of-worlds-and-time-fat/4000-22554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22562/","id":22562,"name":"A Very Strange and Special Girl!","site_detail_url":"https://comicvine.gamespot.com/supergirl-1-a-very-strange-and-special-girl/4000-22562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22555/","id":22555,"name":"The Slayer from the Wine-Dark Sea!","site_detail_url":"https://comicvine.gamespot.com/arak-son-of-thunder-15-the-slayer-from-the-wine-da/4000-22555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22478/","id":22478,"name":"The \"Mystery Men\" of October!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-14-the-mystery-men-of-october/4000-22478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22492/","id":22492,"name":"Crisis Times Three!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-207-crisis-times-three/4000-22492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22477/","id":22477,"name":"Captain Marvel: \"Battle with the Gods\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-492-captain-marvel-battle-with-th/4000-22477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22429/","id":22429,"name":"Stop My Life - - I Want to Get Out! / The Racket! / Who Murdered Me? / The Day the World Changed!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-222-stop-my-life-i-want-to-get/4000-22429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22407/","id":22407,"name":"Captain Marvel: \"The Confederation of Hell\"","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-491-captain-marvel-the-confederat/4000-22407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22414/","id":22414,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-49/4000-22414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22408/","id":22408,"name":"One Day, During the War...","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-13-one-day-during-the-war/4000-22408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22356/","id":22356,"name":"A Trip on the Light Fantastic / Clark Kent is Superman / Fear for Sale! / Arrows of Vengeance!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-221-a-trip-on-the-light-fantas/4000-22356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22334/","id":22334,"name":"Doomsday Begins at Dawn!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-12-doomsday-begins-at-dawn/4000-22334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133800/","id":133800,"name":"Star-Smashers's Secret!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-11-star-smasherss-secret/4000-133800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22285/","id":22285,"name":"Battle Beneath the Brooklyn Bridge! / Old Friends... New Betrayals! / Dead Men do Tell Tales! / Where Off Earth are You From?","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-220-battle-beneath-the-brookly/4000-22285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109899/","id":109899,"name":"Book Three: \"Countdown To Chaos!\"","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-293-book-three-countdown-to-chaos/4000-109899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22212/","id":22212,"name":"Prison Bars do not a Cell Make! / Paper Tiger! / Jimmy Olsen of the Eagle! / We Lois Lanes have got to Stick Together!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-219-prison-bars-do-not-a-cell-/4000-22212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22207/","id":22207,"name":"Dear Mom and Dad","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-20-dear-mom-and-dad/4000-22207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22190/","id":22190,"name":"If an Eye Offend Thee...!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-10-if-an-eye-offend-thee/4000-22190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109898/","id":109898,"name":"Book Two: \"Seven Against Oblivion!\"","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-292-book-two-seven-against-oblivion/4000-109898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22142/","id":22142,"name":"The Goddess from Hell! / The Ones that Almost got Away! / Strangers in the Snow! / Kryptonite-Mare!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-218-the-goddess-from-hell-the-/4000-22142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22121/","id":22121,"name":"Should Old Aquaintance Be Destroyed...","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-9-should-old-aquaintance-be-dest/4000-22121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22063/","id":22063,"name":"Back to Square One! / We Interrupt this Program...! / Arrest Me - - I'm a Murderer! / Sing a Song of Murder!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-217-back-to-square-one-we-inte/4000-22063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22056/","id":22056,"name":"A Hero For All Seasons","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-201-a-hero-for-all-seaso/4000-22056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109896/","id":109896,"name":"Panic Over Pennsylvania Avenue!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-290-panic-over-pennsylvania-avenue/4000-109896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21991/","id":21991,"name":"Victory is Only 5,000 Centuries Away! / Who's Superman? / Santa's Super-Assistant / Reporters are not Born... / The Comic Strip Avenger!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-216-victory-is-only-5-000-cent/4000-21991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21973/","id":21973,"name":"The Batman's Last Christmas!","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-184-the-batmans-last-christ/4000-21973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21909/","id":21909,"name":"Crisis at the Crossroads in Time! / Beware the Ultra-Ant! / Take Me Out of the Ball Game / The Man Who Lived Twice! / Charity begins with Death!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-215-crisis-at-the-crossroads-i/4000-21909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668875/","id":668875,"name":"This Bunny Unbound!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-0-this-bun/4000-668875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21840/","id":21840,"name":"The Strange Revenge of Lena Luthor! / Horde of the Insect Queen! / Clark Gives Blood.. Superman Saves Lives... / Fear has Four Walls and no Name! / Caution: Physical Fitness can be Hazardous to Your Health!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-214-the-strange-revenge-of-len/4000-21840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21823/","id":21823,"name":"Interlude On Earth-2 / Enter... Greyfox","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-182-interlude-on-earth-2-en/4000-21823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21826/","id":21826,"name":"Don't Take My Wife... Please!","site_detail_url":"https://comicvine.gamespot.com/the-flash-305-dont-take-my-wife-please/4000-21826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21819/","id":21819,"name":"Never Step on a Feathered Serpent!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-5-never-step-on-a-feathered-serp/4000-21819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21709/","id":21709,"name":"Bad Day with Blackrock! / Queen of the Insect World! / Superman Interviews Clark Kent! / Watson, Watson Everwhere...And not a Holmes in Sight! / Confucius Say, \"He Who Rekindle Old Flame is Bound to Get Burned!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-213-bad-day-with-blackrock-que/4000-21709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21689/","id":21689,"name":"Day of the Dragon King!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-4-day-of-the-dragon-king/4000-21689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21702/","id":21702,"name":"Crisis in Limbo!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-197-crisis-in-limbo/4000-21702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21646/","id":21646,"name":"Payment on Demand / The Great Superman Hoax / The Newsboy Who Saw Too Much! / A Deadly Day in the Life / The Last Dangerous Days (and Sleepless Nights) of Jimmy Olsen!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-212-payment-on-demand-the-grea/4000-21646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21625/","id":21625,"name":"The Dooms of Dark December!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-3-the-dooms-of-dark-december/4000-21625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21638/","id":21638,"name":"Countdown to Crisis!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-196-countdown-to-crisis/4000-21638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21571/","id":21571,"name":"The Man with the Explosive Mind! / The Kill Kent Contract! / Search for a Secret-Seeker / Lois Lane: Hostage! / Deadlier than the Sword","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-211-the-man-with-the-explosive/4000-21571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21563/","id":21563,"name":"Targets on Two Worlds","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-195-targets-on-two-world/4000-21563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21549/","id":21549,"name":"The Tyrant Out of Time!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-2-the-tyrant-out-of-time/4000-21549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21498/","id":21498,"name":"The Spoil Sport of New York! / The Magical Manhunters of Metropolis! / News Before it Happens! / The Case of the Kidnapped Canines! / Vengeance Times Four!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-210-the-spoil-sport-of-new-yor/4000-21498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21480/","id":21480,"name":"Superman : 7 Milestone Adventures!","site_detail_url":"https://comicvine.gamespot.com/the-best-of-dc-16-superman-7-milestone-adventures/4000-21480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21424/","id":21424,"name":"Strike Three--You're Out / George Taylor's Last Scoop / The Bus Bust! / Hide in Plain Fright! / Never Take Candy from a Stranger!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-209-strike-three-youre-out-geo/4000-21424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21416/","id":21416,"name":"Secrets of Genesis/All Star Squadron","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-193-secrets-of-genesis-a/4000-21416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21410/","id":21410,"name":"1981--A Flash Odyssey","site_detail_url":"https://comicvine.gamespot.com/the-flash-300-1981-a-flash-odyssey/4000-21410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21356/","id":21356,"name":"The Super-Switch to New York / The 5th-Dimensional Hijack! / The Case of the Stolen Clock / Lois' Dream Scoop! / Mystery of the Missing Mail!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-208-the-super-switch-to-new-yo/4000-21356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21348/","id":21348,"name":"Quest for Genesis","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-192-quest-for-genesis/4000-21348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21342/","id":21342,"name":"A Stab In The Black!/The Robbery","site_detail_url":"https://comicvine.gamespot.com/the-flash-299-a-stab-in-the-black-the-robbery/4000-21342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21267/","id":21267,"name":"The Beast-Man that Shouted \"Hate\" at the Heart of the U.N.!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-34-the-beast-man-that-shouted-h/4000-21267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21269/","id":21269,"name":"A Deadly Shade of Peril! / The Multiplex Complex","site_detail_url":"https://comicvine.gamespot.com/the-flash-298-a-deadly-shade-of-peril-the-multiple/4000-21269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21208/","id":21208,"name":"Man and Supermarvel!; Whatever Will Happen to Star Hawkins?","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-33-man-and-supermarvel-whatever/4000-21208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21069/","id":21069,"name":"Strangers at the Heart's Core! / Hostage of the Harlequin / A Scoop for a Snoop! / Have You Ever Told Me the Story of My Life? / Open Season on Red-Headed Reporters!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-206-strangers-at-the-hearts-co/4000-21069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106613/","id":106613,"name":"To Kill a Legend; The \"Too Many Cooks...\" Caper,; Once Upon a Time; The Final Mystery of Edgar Allen Poe!; The Batman Encounters Gray Face; The Strange Death of Dr. Erdel; What Happens When a Batman Dies?","site_detail_url":"https://comicvine.gamespot.com/detective-comics-500-to-kill-a-legend-the-too-many/4000-106613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21085/","id":21085,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-adventures-of-superboy-15/4000-21085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120934/","id":120934,"name":"Time and Time Again! / The Clueless Capers of Chronos!","site_detail_url":"https://comicvine.gamespot.com/action-comics-516-time-and-time-again-the-clueless/4000-120934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20931/","id":20931,"name":"Magic Over Miami / Catch a Falling Star! / The Case of the Disappearing Daye / Lois Lane: Found! / Election Nightmare","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-205-magic-over-miami-catch-a-f/4000-20931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21004/","id":21004,"name":"A Dream of Demons!; Whatever Happened to the Golden Age Atom?","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-30-a-dream-of-demons-whatever-h/4000-21004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117079/","id":117079,"name":"This is My World, and You're Welcome to It! / Sorry--Wrong Powers!","site_detail_url":"https://comicvine.gamespot.com/action-comics-515-this-is-my-world-and-youre-welco/4000-117079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20822/","id":20822,"name":"The Earthquake Enchantment / The Coupon Caper! /The Rescue of His Majesty, Johnny Thunder! / Lois Lane: Deceased / Squeeze Play!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-204-the-earthquake-enchantment/4000-20822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20835/","id":20835,"name":"Crisis On Apokolips Or Darkseid Rising!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-185-crisis-on-apokolips-/4000-20835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20780/","id":20780,"name":"The Fantastic Foe Superman could never Meet!; The Secret Origin of Bruce (Superman) Wayne","site_detail_url":"https://comicvine.gamespot.com/superman-353-the-fantastic-foe-superman-could-neve/4000-20780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20772/","id":20772,"name":"\"Crisis Between Two Earths\" Or Apokolips Now!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-184-crisis-between-two-e/4000-20772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20646/","id":20646,"name":"The Supergirl From Planet Earth!; The Critic Killer!; The Woman with Omnivision!; Lost!; The Reporter who Cried Wolf!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-203-the-supergirl-from-planet-/4000-20646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20707/","id":20707,"name":"\"Crisis On New Genesis\" Or \"Where Have All The New Gods Gone?","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-183-crisis-on-new-genesi/4000-20707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20492/","id":20492,"name":"The Dynamic Duel! / The Man who Discovered Kryptonite! / Innocent-Beyond a Reasonable Doubt / Swan Dance for a Girl Reporter! / The Reporter Nobody Knows!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-202-the-dynamic-duel-the-man-w/4000-20492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20497/","id":20497,"name":"The Curse Out of Time!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-23-the-curse-out-of-time/4000-20497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20350/","id":20350,"name":"The Face on Cloud 9! / The Enigma of the Empty Elevator! / Alakazam... It's Magic! / Wanted: One War-- Slightly Used! / Hang-Glide to Nowhere!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-201-the-face-on-cloud-9-the-en/4000-20350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21203/","id":21203,"name":"Look Homeward, Argonian! / The Turnabout Powers! / Too Good to be True! / The Expose Expose! / Death and Taxes or Jimmy Olsen's Very Bad Day!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-207-look-homeward-argonian-the/4000-21203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20203/","id":20203,"name":"Unhappy Anniversary / The Thief at Sky's Edge! / Clark Kent's Frantic Fan / Something Swims the Time Stream / Celebration","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-200-unhappy-anniversary-the-th/4000-20203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20062/","id":20062,"name":"The Case of the Cape Caper / Susie's Flying Saucer! / Man with the Golden Smile / Mystery of the Mind-Twisters! / The Blackmailed By-Line!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-199-the-case-of-the-cape-caper/4000-20062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124393/","id":124393,"name":"The Cloud with the Lethal Lining! / Never Say Die! / The Defeat of the Justice Society! / Death on Ice","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-466-the-cloud-with-the-lethal-lin/4000-124393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19943/","id":19943,"name":"Challenge of the Green K-Tastrophe! / The Leaning Tower of Metropolis! / Phantom of the Opry / The Riddle of the Runaway Rocket! / The Cosmic Abduction!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-198-challenge-of-the-green-k-t/4000-19943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19896/","id":19896,"name":"I Accuse!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-172-i-accuse/4000-19896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124392/","id":124392,"name":"Who Is Invading Central City?","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-465-who-is-invading-central-city/4000-124392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19820/","id":19820,"name":"The Murderer Among Us: Crisis Above Earth-One!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-171-the-murderer-among-u/4000-19820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19754/","id":19754,"name":"While A World Lies Burning","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-170-while-a-world-lies-b/4000-19754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19606/","id":19606,"name":"The Shadow of Jor-El! / Good Health -- It's Killing Me! / Super-Disco Fever / Case of the Curious Castaway / Editor of the Star / Displaced Double Identity","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-196-the-shadow-of-jor-el-good-/4000-19606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19682/","id":19682,"name":"Doomsday Decision","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-169-doomsday-decision/4000-19682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19473/","id":19473,"name":"The Curse of the Un-Secret Identity! / Coils of the Cobra / Clark Kent's Super-Secret / Victory Cup for a Dead Man / Lois Lane's Super-Risk / The Screamin' Demon!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-195-the-curse-of-the-un-secret/4000-19473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19483/","id":19483,"name":"The Long Way Home","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-166-the-long-way-home/4000-19483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124389/","id":124389,"name":"Only Legends Live Forever!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-462-only-legends-live-forever/4000-124389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112364/","id":112364,"name":"Night of the Body Snatcher!; Fast Death to China!; The Eternity Book; The League of Crime!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-482-night-of-the-body-snatcher-fa/4000-112364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124388/","id":124388,"name":"The Multiple Murders of Mapleville! / Pursuit / Only Legends Live Forever / The Hand That Feeds the Earth / School of the Amazoids","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-461-the-multiple-murders-of-maple/4000-124388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134213/","id":134213,"name":"Whom Gods Would Destroy!; Primeval Scream!; The Race is in the Running; Beware Mr. Wrinkles!; The Devil and Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-254-whom-gods-would-destroy-p/4000-134213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19012/","id":19012,"name":"Dark Things Cannot Stand the Light!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-111-dark-things-cannot-stand-the-lig/4000-19012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18200/","id":18200,"name":"Beyond the Super-Speed Barrier!","site_detail_url":"https://comicvine.gamespot.com/dc-special-series-11-beyond-the-super-speed-barrie/4000-18200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18945/","id":18945,"name":"I have met the Enemy and it is Me!; Secret of the Talking Car","site_detail_url":"https://comicvine.gamespot.com/superman-329-i-have-met-the-enemy-and-it-is-me-sec/4000-18945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18941/","id":18941,"name":"Crisis From Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-160-crisis-from-tomorrow/4000-18941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18938/","id":18938,"name":"Brand of Power / The Doom of Dragon-Fire!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-110-brand-of-power-the-doom-of-drago/4000-18938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18871/","id":18871,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/star-hunters-7-homecoming/4000-18871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18857/","id":18857,"name":"Enter The Ragman!","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-20-enter-the-ragman/4000-18857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18777/","id":18777,"name":"World on the edge of ending","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-74-world-on-the-edge-of-ending/4000-18777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18868/","id":18868,"name":"Crisis From Yesterday!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-159-crisis-from-yesterda/4000-18868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18863/","id":18863,"name":"Assault on Replikon / The Green Dragon of...Death","site_detail_url":"https://comicvine.gamespot.com/green-lantern-109-assault-on-replikon-the-green-dr/4000-18863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18787/","id":18787,"name":"The Third Identity of Replikon! / The Champion of the Green Flame","site_detail_url":"https://comicvine.gamespot.com/green-lantern-108-the-third-identity-of-replikon-t/4000-18787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18698/","id":18698,"name":"The Tomb of The White Bat","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-19-the-tomb-of-the-white-bat/4000-18698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18790/","id":18790,"name":"The Super-Power of Negative Thinking","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-158-the-super-power-of-n/4000-18790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18798/","id":18798,"name":"The Sandstorm That Swallowed Metropolis!; Two Can Die As Cheaply As One","site_detail_url":"https://comicvine.gamespot.com/superman-327-the-sandstorm-that-swallowed-metropol/4000-18798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18618/","id":18618,"name":"Be it ever so Deadly...","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-73-be-it-ever-so-deadly/4000-18618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18633/","id":18633,"name":"Bring Back My Future To Me!","site_detail_url":"https://comicvine.gamespot.com/karate-kid-15-bring-back-my-future-to-me/4000-18633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18553/","id":18553,"name":"The Wizard's War of the Worlds","site_detail_url":"https://comicvine.gamespot.com/secret-society-of-super-villains-15-the-wizards-wa/4000-18553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18539/","id":18539,"name":"The Monstrosity Chase","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-18-the-monstrosity-chase/4000-18539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18457/","id":18457,"name":"The JSA Reunited--In Disaster!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-72-the-jsa-reunited-in-disaster/4000-18457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121568/","id":121568,"name":"Superman Takes a Wife!","site_detail_url":"https://comicvine.gamespot.com/action-comics-484-superman-takes-a-wife/4000-121568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18559/","id":18559,"name":"When Hammer Meets Steel/A Night Without Heroes","site_detail_url":"https://comicvine.gamespot.com/steel-the-indestructible-man-3-when-hammer-meets-s/4000-18559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18464/","id":18464,"name":"Sideshows of Doom!","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-14-sideshows-of-doom/4000-18464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18474/","id":18474,"name":"Backward, Turn Backward, O Time in Your Flight!","site_detail_url":"https://comicvine.gamespot.com/shazam-35-backward-turn-backward-o-time-in-your-fl/4000-18474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18368/","id":18368,"name":"Scars; Horoscopes of Crime; There's A Demon Born Every Minute","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-17-scars-horoscopes-of-crime-the/4000-18368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18391/","id":18391,"name":"The Monster Who Mined Miracles","site_detail_url":"https://comicvine.gamespot.com/steel-the-indestructible-man-2-the-monster-who-min/4000-18391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18305/","id":18305,"name":"The Führer of Chicago","site_detail_url":"https://comicvine.gamespot.com/shazam-34-the-fuhrer-of-chicago/4000-18305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18287/","id":18287,"name":"The Deadliest Game in Town!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-71-the-deadliest-game-in-town/4000-18287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136200/","id":136200,"name":"The Crater that was Keystone City","site_detail_url":"https://comicvine.gamespot.com/showcase-99-the-crater-that-was-keystone-city/4000-136200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18381/","id":18381,"name":"Earth's First and Last Super-Hero!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-153-earths-first-and-las/4000-18381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18294/","id":18294,"name":"The Amazing Origin/The Deadly Return/The Startling Secret Of The Black Condor","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-13-the-amazing-origin-the-deadly-/4000-18294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18144/","id":18144,"name":"The World's Mightiest Race","site_detail_url":"https://comicvine.gamespot.com/shazam-33-the-world-s-mightiest-race/4000-18144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18125/","id":18125,"name":"A Parting of the Ways!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-70-a-parting-of-the-ways/4000-18125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18133/","id":18133,"name":"\"Bust-Out in the Big House\"","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-12-bust-out-in-the-big-house/4000-18133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18122/","id":18122,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-187/4000-18122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18146/","id":18146,"name":"How to make a Marshland Monster!","site_detail_url":"https://comicvine.gamespot.com/superman-319-how-to-make-a-marshland-monster/4000-18146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17920/","id":17920,"name":"United We Fall!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-69-united-we-fall/4000-17920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17937/","id":17937,"name":"Mr. Tawny's Big Game","site_detail_url":"https://comicvine.gamespot.com/shazam-32-mr-tawny-s-big-game/4000-17937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17926/","id":17926,"name":"Divided We... Die??","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-11-divided-we-die/4000-17926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17994/","id":17994,"name":"The Bug Lady / Save My Friend, Kill Your World! / Dateline: A Kingdom of the Mad / Gunfight at the Canine Corral! / Journey to the Center of Nowhere! / Rendezuous with Reality","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-186-the-bug-lady-save-my-frien/4000-17994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17931/","id":17931,"name":"Crisis in Triplicate!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-148-crisis-in-triplicate/4000-17931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17732/","id":17732,"name":"Divided We Stand","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-68-divided-we-stand/4000-17732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17751/","id":17751,"name":"The Rainbow Squad","site_detail_url":"https://comicvine.gamespot.com/shazam-31-the-rainbow-squad/4000-17751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17737/","id":17737,"name":"Star Hunters","site_detail_url":"https://comicvine.gamespot.com/dc-super-stars-16-star-hunters/4000-17737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17739/","id":17739,"name":"Murder In Miniature","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-10-murder-in-miniature/4000-17739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17839/","id":17839,"name":"Crisis In The 30th Century!/\"The Bridge Between Earths!\"","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-147-crisis-in-the-30th-c/4000-17839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17743/","id":17743,"name":"\"Inner Mission!\"/\"Crisis Between Earth-1 And Earth-2!\"","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-146-inner-mission-crisis/4000-17743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17555/","id":17555,"name":"Mayhem in Middle Earth","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-67-mayhem-in-middle-earth/4000-17555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17573/","id":17573,"name":"Captain Marvel Fights the Man of Steel","site_detail_url":"https://comicvine.gamespot.com/shazam-30-captain-marvel-fights-the-man-of-steel/4000-17573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17562/","id":17562,"name":"Blitzkreig at Buffalo","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-9-blitzkreig-at-buffalo/4000-17562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17391/","id":17391,"name":"Injustice strikes twice!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-66-injustice-strikes-twice/4000-17391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17408/","id":17408,"name":"Ibac Meets Aunt Minerva!","site_detail_url":"https://comicvine.gamespot.com/shazam-29-ibac-meets-aunt-minerva/4000-17408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17398/","id":17398,"name":"D-Day at Niagara","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-8-d-day-at-niagara/4000-17398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17229/","id":17229,"name":"The Master Plan Of Vandal Savage","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-65-the-master-plan-of-vandal-savag/4000-17229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122027/","id":122027,"name":"The Return of Black Adam ; That Dirty Beach","site_detail_url":"https://comicvine.gamespot.com/shazam-28-the-return-of-black-adam-that-dirty-beac/4000-122027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17234/","id":17234,"name":"The Emperor Of The North Pole","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-7-the-emperor-of-the-north-pole/4000-17234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17233/","id":17233,"name":"The Mad, Mad Earth Of Abra Kadabra!\"","site_detail_url":"https://comicvine.gamespot.com/the-flash-247-the-mad-mad-earth-of-abra-kadabra/4000-17233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17053/","id":17053,"name":"Yesterday Begins Today!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-64-yesterday-begins-today/4000-17053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17060/","id":17060,"name":"Witching Hour for the Warrior WIzards","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-6-witching-hour-for-the-warrior-w/4000-17060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109511/","id":109511,"name":"Retreat to Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-228-retreat-to-tomorrow/4000-109511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17072/","id":17072,"name":"Fear In Philadelphia!","site_detail_url":"https://comicvine.gamespot.com/shazam-27-fear-in-philadelphia/4000-17072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175189/","id":175189,"name":"\"The Fiddler's Concert of Crime!\"","site_detail_url":"https://comicvine.gamespot.com/teen-titans-46-the-fiddlers-concert-of-crime/4000-175189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16830/","id":16830,"name":"The Rise and Fall of King Samson","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-5-the-rise-and-fall-of-king-samso/4000-16830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16823/","id":16823,"name":"The Death of Doctor Fate!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-63-the-death-of-doctor-fate/4000-16823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16926/","id":16926,"name":"Crisis In Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-137-crisis-in-tomorrow/4000-16926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16834/","id":16834,"name":"Crisis on Earth-S!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-136-crisis-on-earth-s/4000-16834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16637/","id":16637,"name":"When Fall the Mighty","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-62-when-fall-the-mighty/4000-16637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16742/","id":16742,"name":"Crisis in Eternity!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-135-crisis-in-eternity/4000-16742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16645/","id":16645,"name":"The Left Hand of Oblivion","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-4-the-left-hand-of-oblivion/4000-16645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16463/","id":16463,"name":"Hellfire and Holocaust!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-61-hellfire-and-holocaust/4000-16463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16471/","id":16471,"name":null,"site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-3/4000-16471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16484/","id":16484,"name":"Solomon Grundy Wins on a Monday!","site_detail_url":"https://comicvine.gamespot.com/superman-301-solomon-grundy-wins-on-a-monday/4000-16484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16299/","id":16299,"name":"Vulcan Son of Fire!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-60-vulcan-son-of-fire/4000-16299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16124/","id":16124,"name":"Brainwave Blows Up!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-59-brainwave-blows-up/4000-16124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16133/","id":16133,"name":"The Freedom Fighters","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-1-the-freedom-fighters/4000-16133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15823/","id":15823,"name":"The Immortal Destiny","site_detail_url":"https://comicvine.gamespot.com/1st-issue-special-9-the-immortal-destiny/4000-15823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15750/","id":15750,"name":"Avenging Ghosts of the Justice Society!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-124-avenging-ghosts-of-t/4000-15750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15743/","id":15743,"name":"The 1,000-Year Separation!; Let There Be... Darkness!","site_detail_url":"https://comicvine.gamespot.com/the-flash-237-the-1000-year-separation-let-there-b/4000-15743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15641/","id":15641,"name":"Where on Earth Am I?","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-123-where-on-earth-am-i/4000-15641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15540/","id":15540,"name":"Nowhere on the Face of Earth!","site_detail_url":"https://comicvine.gamespot.com/the-flash-236-nowhere-on-the-face-of-earth/4000-15540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15346/","id":15346,"name":"Who Stole Billy Batson's Thunder? / The Secret of the Smiling Swordsman!","site_detail_url":"https://comicvine.gamespot.com/shazam-19-who-stole-billy-batson-s-thunder-the-sec/4000-15346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15435/","id":15435,"name":"Vandal Savage: Wanted Dead and Alive!","site_detail_url":"https://comicvine.gamespot.com/the-flash-235-vandal-savage-wanted-dead-and-alive/4000-15435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131447/","id":131447,"name":"Hero is a Dirty Name","site_detail_url":"https://comicvine.gamespot.com/world-s-finest-comics-231-hero-is-a-dirty-name/4000-131447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14730/","id":14730,"name":"Captain Marvel Meets Lex Luthor!?! / The Man in the Paper Armor","site_detail_url":"https://comicvine.gamespot.com/shazam-15-captain-marvel-meets-lex-luthor-the-man-/4000-14730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14543/","id":14543,"name":"The Rag Doll Runs Wild!; Half a Green Lantern Is Better Than None!; Secret of the Handicapped Boys; The Man Who Wore Ten Hats!; The Secret City; The Girl From The Super-Fast Dimension!;","site_detail_url":"https://comicvine.gamespot.com/the-flash-229-the-rag-doll-runs-wild-half-a-green-/4000-14543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14547/","id":14547,"name":"The Creature in the Velvet Cage!; The Case of the Patriotic Crimes!; The Cavern of Deadly Spheres!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-113-the-creature-in-the-/4000-14547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14383/","id":14383,"name":"The Day I Saved The Life Of The Flash; My Enemy... Myself!","site_detail_url":"https://comicvine.gamespot.com/the-flash-228-the-day-i-saved-the-life-of-the-flas/4000-14383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14391/","id":14391,"name":"The Case of the Charming Crook! / The Haunted Clubhouse!","site_detail_url":"https://comicvine.gamespot.com/shazam-13-the-case-of-the-charming-crook-the-haunt/4000-14391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14241/","id":14241,"name":"The Golden Plague! / The Longest Block in the World! / Mighty Master of the Martial Arts!","site_detail_url":"https://comicvine.gamespot.com/shazam-12-the-golden-plague-the-longest-block-in-t/4000-14241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14104/","id":14104,"name":"The World's Mightiest Dessert! / The Incredible Cape-Man / The Year Without A Christmas!","site_detail_url":"https://comicvine.gamespot.com/shazam-11-the-world-s-mightiest-dessert-the-incred/4000-14104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14040/","id":14040,"name":"Invasion of the Salad Men! / The Thanksgiving Thieves! / The Prize Catch of the Year","site_detail_url":"https://comicvine.gamespot.com/shazam-10-invasion-of-the-salad-men-the-thanksgivi/4000-14040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130907/","id":130907,"name":"Cry Not for My Forsaken Son!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-221-cry-not-for-my-forsaken-s/4000-130907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13961/","id":13961,"name":"Worms of the World, Unite! / The Mystery of the Missing Newsstand! / The Day Captain Marvel went Ape!","site_detail_url":"https://comicvine.gamespot.com/shazam-9-worms-of-the-world-unite-the-mystery-of-t/4000-13961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13861/","id":13861,"name":"","site_detail_url":"https://comicvine.gamespot.com/shazam-8/4000-13861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13760/","id":13760,"name":"Thirteen Against the Earth!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-108-thirteen-against-the/4000-13760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13767/","id":13767,"name":"The Troubles of the Talking Tiger / What's In A Name? Doomsday!","site_detail_url":"https://comicvine.gamespot.com/shazam-7-the-troubles-of-the-talking-tiger-what-s-/4000-13767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13663/","id":13663,"name":"Better Late Than Never / Dexter Knox and His Electric Grandmother","site_detail_url":"https://comicvine.gamespot.com/shazam-6-better-late-than-never-dexter-knox-and-hi/4000-13663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13540/","id":13540,"name":"Crisis on Earth-X!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-107-crisis-on-earth-x/4000-13540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13547/","id":13547,"name":"The Man Who Wasn't!/The World's Toughest Guy!/Battle Of Any Century","site_detail_url":"https://comicvine.gamespot.com/shazam-5-the-man-who-wasntthe-worlds-toughest-guyb/4000-13547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13349/","id":13349,"name":"Wolf in the Fold!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-106-wolf-in-the-fold/4000-13349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13356/","id":13356,"name":"Ibac the Cursed/The Mirrors that Predicted the Future/The Ownerless Diamond!","site_detail_url":"https://comicvine.gamespot.com/shazam-4-ibac-the-cursedthe-mirrors-that-predicted/4000-13356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13250/","id":13250,"name":"A Switch in Time/The Wizard of Phonograph Hill/The Witches Tale","site_detail_url":"https://comicvine.gamespot.com/shazam-3-a-switch-in-timethe-wizard-of-phonograph-/4000-13250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13083/","id":13083,"name":"The Astonishing Arch Enemy/The Nicest Guy in the World/The Original Captain Marvel Fights Niatpac Levram","site_detail_url":"https://comicvine.gamespot.com/shazam-2-the-astonishing-arch-enemythe-nicest-guy-/4000-13083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12540/","id":12540,"name":"\"And One of Us Must Die!\"","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-102-and-one-of-us-must-d/4000-12540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12457/","id":12457,"name":"The Hand That Shook the World","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-101-the-hand-that-shook-/4000-12457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12163/","id":12163,"name":"Death Of An Immortal/The Man Who Broke The Time Barrier!","site_detail_url":"https://comicvine.gamespot.com/the-flash-215-death-of-an-immortal-the-man-who-bro/4000-12163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12030/","id":12030,"name":"Vengeance Of The Immortal Villain/Fatal Fingers Of The Flash","site_detail_url":"https://comicvine.gamespot.com/the-flash-213-vengeance-of-the-immortal-villain-fa/4000-12030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11642/","id":11642,"name":"Solomon Grundy..The One And Only/The One-Man Justice League!; Space-Enemy Number One!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-92-solomon-grundy-the-on/4000-11642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11583/","id":11583,"name":"Earth--The Monster Maker!; The Day the World Melted; The Hour Hourman Died!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-91-earth-the-monster-mak/4000-11583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11259/","id":11259,"name":"Batman--King of the World","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-87-batman-king-of-the-wo/4000-11259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11080/","id":11080,"name":"Million-Dollar Dream!; Finale For A Fiddler!","site_detail_url":"https://comicvine.gamespot.com/the-flash-201-million-dollar-dream-finale-for-a-fi/4000-11080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115109/","id":115109,"name":"The Shame of the Super-Son! / The Legionnaires Who Never Were!","site_detail_url":"https://comicvine.gamespot.com/action-comics-392-the-shame-of-the-super-son-the-l/4000-115109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10987/","id":10987,"name":"Where Valor Fails...Will Magic Triumph?","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-83-where-valor-failswill/4000-10987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10383/","id":10383,"name":"Where Death Fears To Tread!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-74-where-death-fears-to-/4000-10383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130424/","id":130424,"name":"The Planet of the Capes! ; \t The Son of Jimmy Olsen!","site_detail_url":"https://comicvine.gamespot.com/supermans-pal-jimmy-olsen-117-the-planet-of-the-ca/4000-130424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127002/","id":127002,"name":"Superman, the Has-Been Hero!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-178-superman-the-has-been-her/4000-127002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114359/","id":114359,"name":"T O Morrow Kills The Justice League - - Today!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-65-t-o-morrow-kills-the-/4000-114359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114357/","id":114357,"name":"The Stormy Return Of The Red Tornado!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-64-the-stormy-return-of-/4000-114357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134793/","id":134793,"name":"Thoroughly Modern Mayhem!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-61-thoroughly-modern-mayhem/4000-134793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144009/","id":144009,"name":"The Flash--Fact or Fiction?","site_detail_url":"https://comicvine.gamespot.com/the-flash-179-the-flash-fact-or-fiction/4000-144009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144008/","id":144008,"name":"Land Of Golden Giants; Double Danger On Earth!; Captives Of The Cosmic Ray!","site_detail_url":"https://comicvine.gamespot.com/the-flash-178-land-of-golden-giants-double-danger-/4000-144008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138888/","id":138888,"name":"\"Duel Between the Dual Atoms\"","site_detail_url":"https://comicvine.gamespot.com/the-atom-36-duel-between-the-dual-atoms/4000-138888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9588/","id":9588,"name":"The Negative Crisis on Earths One-Two!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-56-the-negative-crisis-o/4000-9588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9585/","id":9585,"name":"Doomward Flight Of The Flashes!","site_detail_url":"https://comicvine.gamespot.com/the-flash-173-doomward-flight-of-the-flashes/4000-9585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9528/","id":9528,"name":"The Super-Crisis that Struck Earth-Two!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-55-the-super-crisis-that/4000-9528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9391/","id":9391,"name":"The Spectre and The Flash: \"Phantom Flash, Cosmic Traitor\"","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-72-the-spectre-and-the-flas/4000-9391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9328/","id":9328,"name":"The See-Nothing Spells Of Abra Kadabra!","site_detail_url":"https://comicvine.gamespot.com/the-flash-170-the-see-nothing-spells-of-abra-kadab/4000-9328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9266/","id":9266,"name":"Our Mastermind the Car!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-52-our-mastermind-the-car/4000-9266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9122/","id":9122,"name":"\"The Thinker's Earth-Shaking Robberies!\"","site_detail_url":"https://comicvine.gamespot.com/the-atom-29-the-thinkers-earth-shaking-robberies/4000-9122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116521/","id":116521,"name":"The Day Candid Camera Unmasked Superman's Identity!; The Exile of Steel","site_detail_url":"https://comicvine.gamespot.com/action-comics-345-the-day-candid-camera-unmasked-s/4000-116521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8774/","id":8774,"name":"The Bridge Between Earths!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-47-the-bridge-between-ea/4000-8774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8709/","id":8709,"name":"Crisis Between Earth-One and Earth-Two!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-46-crisis-between-earth-/4000-8709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128389/","id":128389,"name":"The Batman-Superman of Earth-X! / Sergeant Olsen... Toughest Man in the Marines!","site_detail_url":"https://comicvine.gamespot.com/superman-s-pal-jimmy-olsen-93-the-batman-superman-/4000-128389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8585/","id":8585,"name":"Prince Peril's Power Play","site_detail_url":"https://comicvine.gamespot.com/green-lantern-45-prince-perils-power-play/4000-8585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8410/","id":8410,"name":"Beyond the Sinister Barrier","site_detail_url":"https://comicvine.gamespot.com/showcase-61-beyond-the-sinister-barrier/4000-8410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8400/","id":8400,"name":"The Flash's Final Fling!","site_detail_url":"https://comicvine.gamespot.com/the-flash-159-the-flash-s-final-fling/4000-8400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8291/","id":8291,"name":"War That Shook the Universe!","site_detail_url":"https://comicvine.gamespot.com/showcase-60-war-that-shook-the-universe/4000-8291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8074/","id":8074,"name":"Secret Origin of the Guardians!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-40-secret-origin-of-the-guardians/4000-8074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121580/","id":121580,"name":"Superman's Hands of Doom","site_detail_url":"https://comicvine.gamespot.com/action-comics-328-supermans-hands-of-doom/4000-121580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7941/","id":7941,"name":"The Earth--Without a Justice League!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-37-the-earth-without-a-j/4000-7941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120749/","id":120749,"name":"Lois Lane's Super-Perfect Crime ; Lois Lane's Romance with Jor-El! ; Superman and Batman's Joke on Lois Lane!","site_detail_url":"https://comicvine.gamespot.com/supermans-girl-friend-lois-lane-59-lois-lanes-supe/4000-120749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7679/","id":7679,"name":"Perils of the Psycho-Pirate!","site_detail_url":"https://comicvine.gamespot.com/showcase-56-perils-of-the-psycho-pirate/4000-7679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7651/","id":7651,"name":"Solomon Grundy Goes on a Rampage!","site_detail_url":"https://comicvine.gamespot.com/showcase-55-solomon-grundy-goes-on-a-rampage/4000-7651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109663/","id":109663,"name":"Superman and Batman-- Outlaws!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-148-superman-and-batman-outla/4000-109663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7641/","id":7641,"name":"Invader from the Dark Dimension !","site_detail_url":"https://comicvine.gamespot.com/the-flash-151-invader-from-the-dark-dimension/4000-7641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114909/","id":114909,"name":"The Three Super-Enemies!; The Man Who Broke Supergirl's Heart","site_detail_url":"https://comicvine.gamespot.com/action-comics-320-the-three-super-enemies-the-man-/4000-114909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114787/","id":114787,"name":"Secret of Camp Storm King!","site_detail_url":"https://comicvine.gamespot.com/superboy-117-secret-of-camp-storm-king/4000-114787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127878/","id":127878,"name":"The Wolf-Boy of Smallville!","site_detail_url":"https://comicvine.gamespot.com/superboy-116-the-wolf-boy-of-smallville/4000-127878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7338/","id":7338,"name":"Green Lantern's Wedding Day!; Power Battery Peril!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-32-green-lanterns-wedding-day-power-/4000-7338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7284/","id":7284,"name":"The Most Dangerous Earth of All!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-30-the-most-dangerous-ea/4000-7284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7231/","id":7231,"name":"Crisis on Earth-Three!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-29-crisis-on-earth-three/4000-7231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7007/","id":7007,"name":"Four Worlds to Conquer!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-26-four-worlds-to-conque/4000-7007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6665/","id":6665,"name":"Crisis on Earth-Two!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-22-crisis-on-earth-two/4000-6665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6621/","id":6621,"name":"Crisis on Earth-One!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-21-crisis-on-earth-one/4000-6621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6527/","id":6527,"name":"Vengeance of the Immortal Villain!","site_detail_url":"https://comicvine.gamespot.com/the-flash-137-vengeance-of-the-immortal-villain/4000-6527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6135/","id":6135,"name":"Challenge of the Untouchable Aliens!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-15-challenge-of-the-unto/4000-6135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5905/","id":5905,"name":"Double Danger on Earth!","site_detail_url":"https://comicvine.gamespot.com/the-flash-129-double-danger-on-earth/4000-5905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5443/","id":5443,"name":"Flash of Two Worlds!","site_detail_url":"https://comicvine.gamespot.com/the-flash-123-flash-of-two-worlds/4000-5443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121994/","id":121994,"name":"The Story of Superman's Life! / Superman's Greatest Feats!","site_detail_url":"https://comicvine.gamespot.com/superman-146-the-story-of-superman-s-life-superman/4000-121994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475646/","id":475646,"name":"Secret of the Sinister Sorcerers","site_detail_url":"https://comicvine.gamespot.com/mighty-comic-22-secret-of-the-sinister-sorcerers/4000-475646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117643/","id":117643,"name":"Superman Vs. It","site_detail_url":"https://comicvine.gamespot.com/action-comics-162-superman-vs-it/4000-117643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592901/","id":592901,"name":"Crisis Between Earth-One and Earth-Two","site_detail_url":"https://comicvine.gamespot.com/mighty-comic-57-crisis-between-earth-one-and-earth/4000-592901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502343/","id":502343,"name":"","site_detail_url":"https://comicvine.gamespot.com/quadrinhos-1a-serie-os-justiceiros-16/4000-502343/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2629/","id":2629,"name":"Injustice","site_detail_url":"https://comicvine.gamespot.com/injustice/4025-2629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2551/","id":2551,"name":"Justice Society: World War II","site_detail_url":"https://comicvine.gamespot.com/justice-society-world-war-ii/4025-2551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2412/","id":2412,"name":"Teen Titans Go! vs. Teen Titans","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go-vs-teen-titans/4025-2412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-757/","id":757,"name":"Justice League Crisis on Two Earths","site_detail_url":"https://comicvine.gamespot.com/justice-league-crisis-on-two-earths/4025-757/"}],"name":"DC Multiverse","site_detail_url":"https://comicvine.gamespot.com/dc-multiverse/4015-43603/","start_year":"1951","volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84355/","id":84355,"name":"Quadrinhos 1ª Série: Os Justiceiros","site_detail_url":"https://comicvine.gamespot.com/quadrinhos-1a-serie-os-justiceiros/4050-84355/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/concept-details/concept-4015-43631.json b/samples/api-data/concept-details/concept-4015-43631.json new file mode 100644 index 0000000..54f64ae --- /dev/null +++ b/samples/api-data/concept-details/concept-4015-43631.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43631/","count_of_isssue_appearances":169,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-03-13 22:30:52","deck":"Techno-Organic (\"T-O\") is the term for a state of being. It means, roughly, \"Technological Organism\". Most living beings are categorized as organic because they are made of organic material.","description":"

Versions of the Techno-organic Virus

Technarchy

One Techno-Organic race is called the Technarchy. The Technarchy is an alien race from a planet called Kvch. Notable members are: Warlock and Magus. The Technarchy used the Transmode virus to turn living beings into techno-organic beings and then would drain them of their energy, leaving the remains of their prey to be nothing more than statues. Those not drained of their energy became a Phalanx. The virus can be transmitted through skin contact, though some mutants aren't over taken by the virus as quickly. Those infected possess the ability to shapeshift, recover from damage, and convert organic matter into convertible sustenance.

Phalanx

Another Techno-Organic race is The Phalanx. The Phalanx is not a race per definition, just the collective name of any being that has been infected with the Technarchy’s Transmode Virus. Those infected with the Transmode virus lose individuality and usually create a hive like mind and have the the desire to contact other techno-organic lifeforms. Phalanxes also have the ability to absorb both organic and inorganic matter. The danger of phalanx infection is the collective imperative to forming a spire to call the rest of the Technarch race to their designate worlds. In which the Technarch destroy phalanx inhabited planets as a consequence.

V.2

A radically different yet still similar strain of Phalanx strain was created by the villain Mainspring while he was experimenting on the mutant T.O infected Esperanza Ling. Instead of Techno-Organization of living tissue, this strain was instead dubbed Techno-Mechanization, where the recipient virus strain instead transformed inorganic substance into shapeless mechamatter. Template a subroutine of the mutant killing machine Bastion, would gain vast technoshifting abilities which not only enabled the direct interfacing with machines but to transform and assimilate with it along with computerized systems.

Apocalypse

Mister Sinister created this strain of the virus to kill Apocalypse, an attempt that failed. Now in Apocalypse's hand he used it to infect Cable when he was only an infant. This versions once required blood contact rather than skin contact to infect someone. The areas that are infected appear as a blue or gray metallic color. They also tend to create protrusions in the infected areas and change form. Infection is quite painful. This version gives normal humans increased attributes such as strength and speed coupled with some form of technopathic abilities.

Reaver

A new strain of T.O Pathogen was utilized by Apocalypse in the AoA to transform several human acolytes into servants of the aforementioned mutant overlord. One of whom being a clone of Donald Pierce of Earth-295. The Reavers infected with such a virus gained mild bio-mechanical and infection abilities as well as extra extramarital enhancement. Like bionic optics, extendable razor claws, wings for flight, etc.

V.2

In another broken future placated with programmed hatred of mutant kind. Magneto would find a clutch of individuals infected with what came to be called the Reaver Virus, a horrendous plague that devastated the world 19yrs hence, created by an Artificial Intelligence specialist named Kirk Jansen and his technological manufacturing company. His program would evolve to carry the inherent revulsion towards Homo Superior by mankind. Those whom come under the affliction are twisted into a bionic aberration with some technoshifting capabilities, victims who succumb to the virus sprout heavy mechanical apparatus's such as spider legs, chainsaws and even plasma cannons to aid in tracking and murdering their targets.

V.3

Within the primary continuum, Bastion had created yet another strain of Reaver Virus code and implanted it within Alexander Summers during his time as an Axis invert. The bigoted and duplicitous Robert Callahan sought out this module to enhance the new O*N*E series Sentinel Squad retrofitted using Reaver Tech provided to them by the coerced mercenary force. Pierce and his subordinates learned they could use it's technoforming capabilities to assimilate extra mechanical mass to build and modify new robotic bodies for themselves.

Extremis

This version of the T-O virus rewrites the carriers entire genetic code. It gives the carriers body an upgrade in health, as well as physical and mental attributes. The original extremis gave powers such as firing electrical bolts, razor claws and breathing fire. Tony Stark would later alter the virus to save his life, in the process it encased his Iron Man within the hollows of his bones and linking his suit to his mind. With the Extremis he can connect to machines all over the world. The one setback he has encountered has been isolationism, a side effect completely opposite to the Transmode Virus.

Ultimo

Amoral scientists backed by the shady government police force known as H.A.M.M.E.R. were tasked with creating a nanoviral weapon from the remains of a murderous alien android and selling it over the black market as a test phase. The Ultimo Virus as it is called has the power to convert most any organic life into an extension of the robot itself. Complete with Superhuman Physical abilities, regeneration and heat vision coupled with a berserker rage; it would affect other biological elements differently bestowing odd aspect of its liquid metal substance onto it it in order for the bearer of its CNS core to move through whatever infected patches of it were in the vicinity. The virus had a conversion and kill rate of 110%, if left unchecked Ultimo could kill off entire planets by morphing plant mater into lifeless metal. Effectivly cutting off air supply and converting worlds into nests of metallic thorns.

Necrosha

Coupled with Eli Bard's ability to infect the Techno-organic virus and Selene's immensely powerful mystical abilities, dead mutants from around the world have been revived under the thrall of Bard and his Black Queen. The pair have raised a zombie like army of homo superior who auto-repair any injuries sustained and have wreaked havoc on the X-Men, X-Force, the New Mutants, Emma Frost, and the Hellfire Club. Those who're revived this way have defunct physiology's; that being they lack the need of sustenance, rest, breathing and the like. They also boast powerful regenerative capabilities.

Notable revived mutants include Rogue's foster mother and former Brotherhood of Evil Mutants member Destiny, fellow ex-Brotherhood member Pyro, New Mutants member Cypher, Warpath's ex-lover Risque, the original Thunderbird, Berzerker of the Morlocks, former X-Man Banshee and the Hellfire Club's protégées the Hellions.

Operation: Zero Tolerance

A nanotech based corrosion which could systematically overwrote human genetic matter, converting living flesh into polymorphous steel and machinery. The intent was the creation of sentinels from fully organic human beings, turning them into Prime Sentinels. These cyborg automotons lose all semblance of humanity as a consequence, becoming remorseless killing machines with vast physical augmentation coupled with metamorphic abilities and tracking systems keyed to the X-Gene. The most frightening aspect of the virus was it's hosts ability to inject other people with a nanite inoculation, threatening to transform more people into Prime Sentinels.

V.2 Omega Prime

A step up from the typical Prime Sentinel was the Omega Prime Sentinel, vastly upgraded machinery compared to prior models. Initially the Omega Sentinels were scrapped due to the technology being too clunky and bulky for practicality.

V.3

Simon Trask would seek to galvanize mutant hysteria via his own virus loosely based on the sentinite program. Through it he had the power to first turn people he came in physical contact with, who in turn would infect others with it, into supporters of his anti-mutant agenda. This was made evident by the light blue glow in the eyes of those he'd infected, then those whom had contracted the virus would transform into nonliving cyborg sentinel drones slaved specifically to his command parameters. The augmentations given were ill defined, other than the typical bionic enhancements of super strength, durability, stamina and the capacity to shoot energy beams from their palms.

Second Coming

Seemingly taking after Eliphas and Selene's plans of the T.O Virus. Bastion remolded a Mixed strain of viruses for the personal use of augmenting and resurrecting select human beings with great hatred of the mutant race or for simple tactical usage in his plans for their extermination. Augmenting himself into a powerful nimrod sentinel with celestial tech traits, having combined the Technarchy & Apocalypse strains of the virus to gain even greater technomorphing and roboticizing abilities. Which he used to found his Human High Council, some of whom he would convert those within his thrall into Nimrod Series Omega Prime Sentinels.

Individuals modified and/or resurrected include Leper Queen underboss of the Mutant Response Division, Donald Pierce leader of the Reavers and chairperson of the Hellfire Club's inner circle, William Stryker founder of the Purifiers, Cameron Hodge, Steven Lang and Graydon Creed of the Friends of Humanity. Finally the creator of the Sentinel Program, Larry Trask.

Ultron

During his time alone in the depths of cold space, the malevolent Artificial Intelligence known as Ultron would eventually take what he knew of the Phalanx's transmode virus and combine it with the technologies of the Eternals sentient computer system ISAAC. Ultron would eventually create his own form of T.O Virus named and modeled after his own mechatronics, anyone afflicted with the virus became a subservient hive drone connected to the Ultron mass intelligence as their bodies took on physical characteristics of the monstrous android. Those changed into simulacrum's of the robot become enthralled to him mind, body and soul; as well as gain the capacity to spread and infect countless others across galaxies. Turning them into virus carriers as well. In some infected beings however they gain unique abilities of their own which drowns out the Ultron consciousness's hold on them.

Nanocyte

In the New 52 productions, the parademon hordes of Apokolips are techno-organic entities created using both the living and dead biomatter from the populaces of worlds that evil gods from Apokolips conquer. Usually the robotic corpse corps snatch up and take all available human, alien or xenobiological entities of inhabited terra's to stationed processing factories for the conversion process. But certain Parademon breeds can also infect solitary individuals with a technocytic virus, in turn, converts individuals into techno-organic soldiers.

V.2

An individual once taken to a conversion factory to be processed underwent an odd mutation instead due to it's effects. Being transformed into a living, breathing internet hub whose entire physiology had been converted into pure micro-machinery and information. Over the coarse of years, she would come to master her new techno-organic condition spreading her virulent consciousness throughout the internet. Through her technomorphism she could fabricate incredibly advanced pieces of technology and augment the human biome with vast bionic enhancements. Those she infects are able to be resurrected by copying their vital information; their persona's onto her nanocytes in order to regrow them from the atom outwards.

O.M.A.C Virus

A nanotech virus fashioned by Maxwell Lord using inert B13 Technology and activates/commandeered through the Brother I Satellite system created by Batman. Placated through various immunization, vaccinations and intake supplements supplied to the masses through the localized food chains and sickness treatment facilities. The Virus can be directly beamed into desired hosts via computer equipment or a simple broadband line, aggressively infecting anyone whose contracted the Virus. Once activated the unsuspecting sleeper agent serves to observe, assess and exterminate all known forms of superhuman activity. Be the individual superpowered or gifted intellects alike. Omactivated subjects gain any manner of unique abilities such as shapeshifting, weapon construction, eye beams and adaptive countermeasures. The hosts share a hive connection to the Brother Eye network and can instantly download any manner of information on the cataloged database of super powered beings on record.

Morticoccus Virus

A permutation of the Omni Mind And Community nano virus, coming from an alternate future timeline where it is regaled as the most fatalistic sickness known to man. While on his trek through the multiverse during 52; Karate Kid fell prey to the disease and eventually died on Earth-51 looking for a cure to his condition. Morticoccus infection works by first infecting an organism then alternating it's evolutionary cycle. In homo sapiens it first causes them to devolve into feral subhumans with minimal to non-cognizant intelligence while in most faunal forms it has the opposite effect. Initiating a startling change into more articulate creatures whom can read, write and handle heavy machinery; after a fashion. This pathogen was supposedly part of the cause of the Great Disaster which created the Earth A.D. universe.

O.T.A.C

Also known as the Omniscient Transformational Advanced Cell, a form of full organic techno-virus developed by Silas Stone. Initially it was created fort he purpose of creating self aware biological matter that could be re-purposed to affect and heal as well as replace damaged or irregularly formed organic tissue. Curing cancer, blindness, genetic deformities, etc. Anomaly a by product of its creation known as O.T.A.C. 13, would utilize it to cause mutagenic phenomena instead of preventing it; creating monstrous cyborg abominations and inducing a cybernization effect. Transforming those who're infected with the O.T.A.C virus into hyper aggressive Mechahuman's who can elongate like taffy, morph limbs into artillery and further spread and infect using O.T.A.C, turning others into Mechahumans as well. The virus was so dangerous that Blue Evans; a transcendental being from outside of reality, had requested Vic Stone a.k.a. Cyborg's aid in halting the progress of which. Having been unleashed in one digital universe that the Digiverse is comprised of, left unchecked it would spread and corrupt the whole of this virtual multiverse until nothing was left untouched.

Armor Virus

In the newly reinstated comic imprint the alien armor sphere known as Shanhara hails from a race of sentient techno-organic armors. Each one carrying a micromechanical infection which both heals and augments their wearers while at the same time, steadily suborns them into a willing thrall of the armor itself. Moreover, those whom the armor takes assimilate more and more of their suits properties as they incurred greater injuries even through the nigh indestructible warsuits. The regenerated appendages and extremities look the same on the outside but within their host, the virus re-constructed limbs carry traces of it's transorganic metallic substance within them. Over time the virus will overtake the host and said individual will become a whole new armor with it's own name and similar abilities to it's symbiotic partner.

War/Brass Virus

Within another universe where metal and biology are one and the same. Everything and everyone was a steady mix of techno-organic machinery as their natural state of being. But one day a fault within their biomechatronic structure cropped up, giving rise to a hideously lethal T.O. infection. It would seed itself within the very subatomic structure of the host and cause them to morph into a lethal self automated war machine with vast technoforming abilities. Giving the infected incredible amounts of weapon conjuration, equipment fabrication and armor adaptation in order to fight and overcome most any adversary they came across; on top of the natural cyberpathic abilities of those hailing from the transmoded race's dimension. Seeing as Eryx could transmit, mimic and download information from the world wide info-net via tapping into local satellite dishes as well as decode/recode infromation into gleaned knowledge. The only downside was that those infected with the affliction ran the risk of becoming homicidal killing machines whose moral imperatives were psychologically nullified by the viral agent in they're system. Causing them to engage in massacring everything that isn't affected like they are.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-24627/","id":24627,"name":"Death-Hunt","issue_number":"18"},"id":43631,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3016/128626-113549-techno-organic.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3016/128626-113549-techno-organic.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3016/128626-113549-techno-organic.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3016/128626-113549-techno-organic.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3016/128626-113549-techno-organic.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3016/128626-113549-techno-organic.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3016/128626-113549-techno-organic.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3016/128626-113549-techno-organic.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3016/128626-113549-techno-organic.jpg","image_tags":"All Images,Gallery"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924793/","id":924793,"name":"Man on Fire","site_detail_url":"https://comicvine.gamespot.com/x-men-red-2-man-on-fire/4000-924793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907912/","id":907912,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/sword-by-al-ewing-2-vol-2/4000-907912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-899166/","id":899166,"name":"Final Frontier","site_detail_url":"https://comicvine.gamespot.com/sword-11-final-frontier/4000-899166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821559/","id":821559,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-omnibus-1-volume-1/4000-821559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692540/","id":692540,"name":"Until Our Hearts Stop Part Five","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-17-until-our-hearts-stop-part-fi/4000-692540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689038/","id":689038,"name":"Until Our Hearts Stop Part Four","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-16-until-our-hearts-stop-part-fo/4000-689038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682670/","id":682670,"name":"Surviving the Experience Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-34-surviving-the-experience-part-two/4000-682670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679423/","id":679423,"name":"Surviving the Experience Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-33-surviving-the-experience-part-one/4000-679423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644500/","id":644500,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/cable-conquest-1-volume-1/4000-644500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632481/","id":632481,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wildstorm-a-celebration-of-25-years-1-hc/4000-632481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625671/","id":625671,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-marvel-legacy-primer-pages-1/4000-625671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587198/","id":587198,"name":"The Deathstone; Child's Play","site_detail_url":"https://comicvine.gamespot.com/mask-mobile-armored-strike-kommand-annual-2017-1-t/4000-587198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537869/","id":537869,"name":"The War Never Ends","site_detail_url":"https://comicvine.gamespot.com/the-transformers-vs-gi-joe-13-the-war-never-ends/4000-537869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514448/","id":514448,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-wars-journalbattleworld-1-tpb/4000-514448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512451/","id":512451,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-sins-of-wreckers-3/4000-512451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509726/","id":509726,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-sins-of-wreckers-2/4000-509726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373296/","id":373296,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-and-x-force-2/4000-373296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341326/","id":341326,"name":"Avengers: X-Sanction","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-1-avengers-x-sanction/4000-341326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306478/","id":306478,"name":"Midnight","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-1-midnight/4000-306478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309611/","id":309611,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition-2-volume-two/4000-309611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338188/","id":338188,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-2-vol-2/4000-338188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315881/","id":315881,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/power-girl-bomb-squad-1-tpb/4000-315881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273267/","id":273267,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-20/4000-273267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278386/","id":278386,"name":"Tre passi nel domani","site_detail_url":"https://comicvine.gamespot.com/speciale-nathan-never-21-tre-passi-nel-domani/4000-278386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268208/","id":268208,"name":"Caught","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-23-caught/4000-268208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610281/","id":610281,"name":"Patrulla-X 1: La guerra de Magneto","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes-2-patrulla-x-1-la-guer/4000-610281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266495/","id":266495,"name":"A Good News, Bad News, Sort of Thing","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-22-a-good-news-bad-/4000-266495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263701/","id":263701,"name":"The Man Behind the Curtain","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-20-the-man-behind-t/4000-263701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261122/","id":261122,"name":"And the Lord Taketh","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-19-and-the-lord-tak/4000-261122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255905/","id":255905,"name":"Code Blue","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-17-code-blue/4000-255905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273118/","id":273118,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-1-vol-1/4000-273118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246469/","id":246469,"name":"Tomorrow is Today","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-14-tomorrow-is-toda/4000-246469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239908/","id":239908,"name":"The Cold Truth","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-12-the-cold-truth/4000-239908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233763/","id":233763,"name":"Just Stopping By","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-9-just-stopping-by/4000-233763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220589/","id":220589,"name":"...What a Difference a Day Makes!","site_detail_url":"https://comicvine.gamespot.com/power-girl-13-what-a-difference-a-day-makes/4000-220589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208533/","id":208533,"name":"Second Coming, Chapter Four","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-235-second-coming-chapter-four/4000-208533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211199/","id":211199,"name":"Foundations","site_detail_url":"https://comicvine.gamespot.com/wildcats-22-foundations/4000-211199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202489/","id":202489,"name":"Necrosha: Conclusion","site_detail_url":"https://comicvine.gamespot.com/x-force-25-necrosha-conclusion/4000-202489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212438/","id":212438,"name":"New Mutants: Necrosha","site_detail_url":"https://comicvine.gamespot.com/new-mutants-necrosha-1-new-mutants-necrosha/4000-212438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198343/","id":198343,"name":"Necrosha: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/x-force-24-necrosha-chapter-5/4000-198343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196605/","id":196605,"name":"A Runt's Eye View","site_detail_url":"https://comicvine.gamespot.com/gen-13-34-a-runts-eye-view/4000-196605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194457/","id":194457,"name":"Necrosha: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/x-force-23-necrosha-chapter-4/4000-194457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185752/","id":185752,"name":"Undeadpool","site_detail_url":"https://comicvine.gamespot.com/x-force-annual-1-undeadpool/4000-185752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187677/","id":187677,"name":"Necrosha: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/x-force-22-necrosha-chapter-3/4000-187677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186683/","id":186683,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-the-gathering-1/4000-186683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182545/","id":182545,"name":"Necrosha: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/x-force-21-necrosha-chapter-2/4000-182545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179171/","id":179171,"name":"Not Forgotten: Part 4","site_detail_url":"https://comicvine.gamespot.com/x-force-20-not-forgotten-part-4/4000-179171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179203/","id":179203,"name":"Necrosha: Chapter One; Binary; The Foretelling","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-1-necrosha-chapter-one-binary-the-foret/4000-179203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166816/","id":166816,"name":"Too Late For Tears, Conclusion","site_detail_url":"https://comicvine.gamespot.com/cable-17-too-late-for-tears-conclusion/4000-166816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168465/","id":168465,"name":"Not Forgotten: Part 2","site_detail_url":"https://comicvine.gamespot.com/x-force-18-not-forgotten-part-2/4000-168465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162621/","id":162621,"name":"Too Late For Tears, Part 1","site_detail_url":"https://comicvine.gamespot.com/cable-16-too-late-for-tears-part-1/4000-162621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154460/","id":154460,"name":"Messiah War, Part 2","site_detail_url":"https://comicvine.gamespot.com/cable-13-messiah-war-part-2/4000-154460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175550/","id":175550,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-future-history-messiah-war-sourcebook-1/4000-175550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150595/","id":150595,"name":"Who the Hell is Eli Bard?","site_detail_url":"https://comicvine.gamespot.com/x-force-11-who-the-hell-is-eli-bard/4000-150595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167252/","id":167252,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wildstorm-fine-arts-the-gallery-collection-1/4000-167252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136512/","id":136512,"name":"Angels & Demons, Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/x-force-6-angels-and-demons-part-6-of-6/4000-136512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134012/","id":134012,"name":"SFX, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-500-sfx-part-1/4000-134012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126718/","id":126718,"name":"Reunion","site_detail_url":"https://comicvine.gamespot.com/the-new-dynamix-2-reunion/4000-126718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128191/","id":128191,"name":"Angels & Demons, Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/x-force-3-angels-demons-part-3-of-6/4000-128191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124685/","id":124685,"name":"Angels & Demons, Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/x-force-2-angels-demons-part-2-of-6/4000-124685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279568/","id":279568,"name":"Cuore Nero","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-11-cuore-nero/4000-279568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127701/","id":127701,"name":"Book 4","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-4-book-4/4000-127701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122054/","id":122054,"name":"Touchdown","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-6-touchdown/4000-122054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107690/","id":107690,"name":"Wonder Woman and Superman - Friends or Foes?","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-226-wonder-woman-and-superman-friends/4000-107690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122050/","id":122050,"name":"Faith","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-5-faith/4000-122050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105306/","id":105306,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-4-homecoming/4000-105306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107689/","id":107689,"name":"Nothing Finished, Only Abandoned","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-225-nothing-finished-only-abandoned/4000-107689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107688/","id":107688,"name":"Marathon - Part Two","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-224-marathon-part-two/4000-107688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107881/","id":107881,"name":"Divine Intervention","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-3-divine-intervention/4000-107881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107877/","id":107877,"name":"The Survivors","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-2-the-survivors/4000-107877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150088/","id":150088,"name":"Sins of the Past, Present and Future","site_detail_url":"https://comicvine.gamespot.com/hawkman-46-sins-of-the-past-present-and-future/4000-150088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106232/","id":106232,"name":"OMAC Nation","site_detail_url":"https://comicvine.gamespot.com/jla-122-omac-nation/4000-106232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107687/","id":107687,"name":"Marathon - Part One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-223-marathon-part-one/4000-107687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111165/","id":111165,"name":"Lost and Found Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-30-lost-and-found-part-1/4000-111165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120731/","id":120731,"name":"A Walk-On Part In The War","site_detail_url":"https://comicvine.gamespot.com/aquaman-35-a-walk-on-part-in-the-war/4000-120731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107874/","id":107874,"name":"No Security","site_detail_url":"https://comicvine.gamespot.com/firestorm-18-no-security/4000-107874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105305/","id":105305,"name":"Infinite Crisis","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-1-infinite-crisis/4000-105305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107686/","id":107686,"name":"Blood Debt","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-222-blood-debt/4000-107686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107685/","id":107685,"name":"Pride of the Amazons","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-221-pride-of-the-amazons/4000-107685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136361/","id":136361,"name":"Conclusion: Loss of Signal","site_detail_url":"https://comicvine.gamespot.com/the-omac-project-6-conclusion-loss-of-signal/4000-136361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136360/","id":136360,"name":"Part Five: ...Long Live The King!","site_detail_url":"https://comicvine.gamespot.com/the-omac-project-5-part-five-long-live-the-king/4000-136360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99198/","id":99198,"name":"In Search Of...","site_detail_url":"https://comicvine.gamespot.com/jsa-76-in-search-of/4000-99198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136359/","id":136359,"name":"Part Four: The King is Dead","site_detail_url":"https://comicvine.gamespot.com/the-omac-project-4-part-four-the-king-is-dead/4000-136359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136357/","id":136357,"name":"Part Three: The M-E in Team","site_detail_url":"https://comicvine.gamespot.com/the-omac-project-3-part-three-the-m-e-in-team/4000-136357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136356/","id":136356,"name":"Part Two: There Is No I In Team","site_detail_url":"https://comicvine.gamespot.com/the-omac-project-2-part-two-there-is-no-i-in-team/4000-136356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136353/","id":136353,"name":"Part One: The Eye in the Sky","site_detail_url":"https://comicvine.gamespot.com/the-omac-project-1-part-one-the-eye-in-the-sky/4000-136353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111568/","id":111568,"name":"Broken Lance","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons-4-broken-lanc/4000-111568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277096/","id":277096,"name":"Aristotele Skotos","site_detail_url":"https://comicvine.gamespot.com/nathan-never-149-aristotele-skotos/4000-277096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259650/","id":259650,"name":"Tecnodroidi","site_detail_url":"https://comicvine.gamespot.com/nathan-never-147-tecnodroidi/4000-259650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277178/","id":277178,"name":"Sfida nello spazio","site_detail_url":"https://comicvine.gamespot.com/nathan-never-143-sfida-nello-spazio/4000-277178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277682/","id":277682,"name":"Il segreto dei mutati","site_detail_url":"https://comicvine.gamespot.com/agenzia-alfa-10-il-segreto-dei-mutati/4000-277682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120136/","id":120136,"name":"","site_detail_url":"https://comicvine.gamespot.com/aphrodite-ix-4/4000-120136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119183/","id":119183,"name":"","site_detail_url":"https://comicvine.gamespot.com/aphrodite-ix-3/4000-119183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132705/","id":132705,"name":"Tales of the Phalanx Covenant","site_detail_url":"https://comicvine.gamespot.com/origin-of-generation-x-1-tales-of-the-phalanx-cove/4000-132705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119182/","id":119182,"name":"","site_detail_url":"https://comicvine.gamespot.com/aphrodite-ix-2/4000-119182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158421/","id":158421,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-6/4000-158421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158420/","id":158420,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-5/4000-158420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158419/","id":158419,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-4/4000-158419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158418/","id":158418,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-3/4000-158418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404506/","id":404506,"name":"","site_detail_url":"https://comicvine.gamespot.com/top-cow-classics-in-black-and-white-aphrodite-ix-1/4000-404506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119180/","id":119180,"name":"","site_detail_url":"https://comicvine.gamespot.com/aphrodite-ix-1/4000-119180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158417/","id":158417,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-2/4000-158417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158416/","id":158416,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-1/4000-158416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276426/","id":276426,"name":"Il segreto di Juno 20","site_detail_url":"https://comicvine.gamespot.com/agenzia-alfa-6-il-segreto-di-juno-20/4000-276426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95863/","id":95863,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/warlock-9-endgame/4000-95863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95862/","id":95862,"name":"Human error","site_detail_url":"https://comicvine.gamespot.com/warlock-8-human-error/4000-95862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95861/","id":95861,"name":"Meanwhile...","site_detail_url":"https://comicvine.gamespot.com/warlock-7-meanwhile/4000-95861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65656/","id":65656,"name":"I Still Believe I Cannot Be Saved","site_detail_url":"https://comicvine.gamespot.com/cable-78-i-still-believe-i-cannot-be-saved/4000-65656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111765/","id":111765,"name":"","site_detail_url":"https://comicvine.gamespot.com/aphrodite-ix-0/4000-111765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239699/","id":239699,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aphrodite-ix-preview-1/4000-239699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95860/","id":95860,"name":"Split Personalities","site_detail_url":"https://comicvine.gamespot.com/warlock-6-split-personalities/4000-95860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276556/","id":276556,"name":"Nemo","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-5-nemo/4000-276556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95859/","id":95859,"name":"Will!","site_detail_url":"https://comicvine.gamespot.com/warlock-5-will/4000-95859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260036/","id":260036,"name":"Il nemico nell'ombra","site_detail_url":"https://comicvine.gamespot.com/nathan-never-104-il-nemico-nellombra/4000-260036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95858/","id":95858,"name":"Control","site_detail_url":"https://comicvine.gamespot.com/warlock-4-control/4000-95858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95857/","id":95857,"name":"Into the fire","site_detail_url":"https://comicvine.gamespot.com/warlock-3-into-the-fire/4000-95857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95856/","id":95856,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/warlock-2-monsters/4000-95856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95855/","id":95855,"name":"Cipher","site_detail_url":"https://comicvine.gamespot.com/warlock-1-cipher/4000-95855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156744/","id":156744,"name":"Metal Works","site_detail_url":"https://comicvine.gamespot.com/x-men-1999-1-metal-works/4000-156744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65790/","id":65790,"name":"Plague of Evil","site_detail_url":"https://comicvine.gamespot.com/x-men-91-plague-of-evil/4000-65790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65137/","id":65137,"name":"Crossed Wires","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-371-crossed-wires/4000-65137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293966/","id":293966,"name":"Siempre es más oscuro...","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-13-siempre-es-mas-oscuro/4000-293966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293890/","id":293890,"name":"Cabos Sueltos","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-9-cabos-sueltos/4000-293890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274669/","id":274669,"name":"La cortina del silenzio","site_detail_url":"https://comicvine.gamespot.com/nathan-never-96-la-cortina-del-silenzio/4000-274669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274920/","id":274920,"name":"I fiumi del cielo","site_detail_url":"https://comicvine.gamespot.com/agenzia-alfa-3-i-fiumi-del-cielo/4000-274920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157736/","id":157736,"name":"World War 3, Part 3: No Time To Mourn","site_detail_url":"https://comicvine.gamespot.com/iron-man-13-world-war-3-part-3-no-time-to-mourn/4000-157736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48269/","id":48269,"name":"World War 3, Part 2: Winning And Losing","site_detail_url":"https://comicvine.gamespot.com/avengers-13-world-war-3-part-2-winning-and-losing/4000-48269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77815/","id":77815,"name":"World War 3, Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-13-world-war-3-part-1/4000-77815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65134/","id":65134,"name":"Casualties of War","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-344-casualties-of-war/4000-65134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158415/","id":158415,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-3/4000-158415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43604/","id":43604,"name":"Where No X-Man Has Gone Before!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-343-where-no-x-man-has-gone-befo/4000-43604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163661/","id":163661,"name":"","site_detail_url":"https://comicvine.gamespot.com/wildstorm-universe-97-sourcebook-3/4000-163661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276455/","id":276455,"name":"Odissea nel futuro","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-2-odissea-nel-futuro/4000-276455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42816/","id":42816,"name":"It Is Always Darkest...","site_detail_url":"https://comicvine.gamespot.com/cable-35-it-is-always-darkest/4000-42816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158414/","id":158414,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-2/4000-158414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158413/","id":158413,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-1/4000-158413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42419/","id":42419,"name":"There is a Reaction!","site_detail_url":"https://comicvine.gamespot.com/cable-31-there-is-a-reaction/4000-42419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164831/","id":164831,"name":"Lair Of The N'Garai / What The Cat Dragged In","site_detail_url":"https://comicvine.gamespot.com/wolverine-95-1-lair-of-the-n-garai-what-the-cat-dr/4000-164831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40982/","id":40982,"name":"Into the Maelstrom","site_detail_url":"https://comicvine.gamespot.com/weapon-x-4-into-the-maelstrom/4000-40982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40859/","id":40859,"name":"The common right of toads and men","site_detail_url":"https://comicvine.gamespot.com/weapon-x-3-the-common-right-of-toads-and-men/4000-40859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163658/","id":163658,"name":"","site_detail_url":"https://comicvine.gamespot.com/wildstorm-universe-sourcebook-1/4000-163658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40733/","id":40733,"name":"Fire In The Sky!","site_detail_url":"https://comicvine.gamespot.com/weapon-x-2-fire-in-the-sky/4000-40733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40598/","id":40598,"name":"Unforgiven Trespasses","site_detail_url":"https://comicvine.gamespot.com/weapon-x-1-unforgiven-trespasses/4000-40598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276450/","id":276450,"name":"Doppio futuro","site_detail_url":"https://comicvine.gamespot.com/nathan-never-gigante-1-doppio-futuro/4000-276450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65738/","id":65738,"name":"Generation Next, Part 4: The Currents Shift","site_detail_url":"https://comicvine.gamespot.com/x-men-37-generation-next-part-4-the-currents-shift/4000-65738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39830/","id":39830,"name":"Generation Next, Part 3: Enter Freely And of Your Own Will","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-317-generation-next-part-3-enter/4000-39830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39833/","id":39833,"name":"Claws Along The Mohawk","site_detail_url":"https://comicvine.gamespot.com/wolverine-86-claws-along-the-mohawk/4000-39833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65687/","id":65687,"name":"Life Signs, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-106-life-signs-part-1/4000-65687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65737/","id":65737,"name":"Generation Next, Part 2: Drop The Leash","site_detail_url":"https://comicvine.gamespot.com/x-men-36-generation-next-part-2-drop-the-leash/4000-65737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39680/","id":39680,"name":"Generation Next, Part 1: Encounter","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-316-generation-next-part-1-encou/4000-39680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39683/","id":39683,"name":"Final Sanction Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-85-final-sanction-part-1/4000-39683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39551/","id":39551,"name":"Sacrifice","site_detail_url":"https://comicvine.gamespot.com/adventures-of-cyclops-and-phoenix-4-sacrifice/4000-39551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65735/","id":65735,"name":"Life and Consequences","site_detail_url":"https://comicvine.gamespot.com/x-men-34-life-and-consequences/4000-65735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39262/","id":39262,"name":"Hands Across the Water","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-313-hands-across-the-water/4000-39262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39112/","id":39112,"name":"Romp","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-312-romp/4000-39112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38972/","id":38972,"name":"Putting The Cat Out","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-311-putting-the-cat-out/4000-38972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38825/","id":38825,"name":"The Killing Field, Part 1: In Humanity","site_detail_url":"https://comicvine.gamespot.com/cable-9-the-killing-field-part-1-in-humanity/4000-38825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38833/","id":38833,"name":"...Show Me The Way To Go Home...","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-310-show-me-the-way-to-go-home/4000-38833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38133/","id":38133,"name":"Mortal Coils","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-306-mortal-coils/4000-38133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259696/","id":259696,"name":"L'Enigma di Gabriel","site_detail_url":"https://comicvine.gamespot.com/nathan-never-30-lenigma-di-gabriel/4000-259696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34433/","id":34433,"name":"Endgame (Part 4): Finale","site_detail_url":"https://comicvine.gamespot.com/x-factor-68-endgame-part-4-finale/4000-34433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34217/","id":34217,"name":"Endgame (Part 2): Heroic Effort","site_detail_url":"https://comicvine.gamespot.com/x-factor-66-endgame-part-2-heroic-effort/4000-34217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33793/","id":33793,"name":"The X-Tinction Agenda (Part 7): Capital Crimes","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-272-the-x-tinction-agenda-part-7/4000-33793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33551/","id":33551,"name":"The X-Tinction Agenda (Part 4): Flashpoint!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-271-the-x-tinction-agenda-part-4/4000-33551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33468/","id":33468,"name":"X-Tinction Agenda (Part 2): Shell Game","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-95-x-tinction-agenda-part-2-shell-/4000-33468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25406/","id":25406,"name":"Fun 'n' Games","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-192-fun-n-games/4000-25406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24627/","id":24627,"name":"Death-Hunt","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-18-death-hunt/4000-24627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399711/","id":399711,"name":"Spelletjes","site_detail_url":"https://comicvine.gamespot.com/x-mannen-49-spelletjes/4000-399711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399712/","id":399712,"name":"Op Oorlogspad","site_detail_url":"https://comicvine.gamespot.com/x-mannen-50-op-oorlogspad/4000-399712/"}],"movies":[],"name":"Techno-Organic","site_detail_url":"https://comicvine.gamespot.com/techno-organic/4015-43631/","start_year":"1984","volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34889/","id":34889,"name":"X-Mannen","site_detail_url":"https://comicvine.gamespot.com/x-mannen/4050-34889/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/concept-details/concept-4015-47581.json b/samples/api-data/concept-details/concept-4015-47581.json new file mode 100644 index 0000000..2477304 --- /dev/null +++ b/samples/api-data/concept-details/concept-4015-47581.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-47581/","count_of_isssue_appearances":6,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-01-01 20:50:38","deck":"A Quickening in an Immortals life force, it holds all their strength, knowledge and power.","description":"

Quickening

A Quickening in an Immortals life force, it holds all their strength, knowledge and power. The Quickening can only be released from the body after decapitation, once this happens the Quickening is absorbed into the victor, or the nearest Immortal if the decapitation happened by accident or by mortal means.

Quickening’s are massively destructive, though the extent of the devastation is dependent on how old and how powerful the immortal is. During the episode “Comes a Horseman”, Duncan MacLeod and Methos received a shared Quickening that almost completely destroyed a factory from two characters that were over 3000 years old, but during Endgame, Duncan MacLeod received a Quickening so powerful it cleared the atmosphere of clouds and destroyed a major power plant in New York, this Quickening was from Jacob Kell who was just over 600 years old.

Dark Quickening

If an Immortal received too many Quickening’s from ‘evil’ Immortals, then the build up can eventually overcome the immortals psyche and turn them into a dark, twisted version of themselves. This happened to Duncan MacLeod in season 4 of the television when an Immortal Native American named Coltec was eventually overwhelmed by the Dark Quickening. Duncan MacLeod eventually killed Coltec and received the Dark Quickening himself, he was eventually saved by Methos, though the cost was great, as during his ‘Dark Time’ Duncan had killed one of his oldest friends, Dean Burns.

Light Quickening

As with the Dark Quickening, the same can happen in reverse to an ‘evil’ immortal. Darius was an ancient immortal warlord who roamed the world searching for Immortals, when he came to Paris he was faced with an Immortal monk who protected Paris. Darius slew the immortal and received his Quickening, the pure, Light Quickening overcame Darius’ psyche and since then he dedicated his life to the church and spent the next thousand years on holy ground.

Holy Ground Quickenings

One of the three rules for Immortals, there must be no fighting on Holy Ground. This rule has been broken twice in Highlander cannon, both times with disastrous consequences.

In 79AD two immortals fought in a temple on Pompeii, when the final stroke fell the volcano erupted from the Quickening, killing the immortal victor as well. In 1993, Connor Macleod faced Kane in a Buddhist shrine, when Kane went to make the killing blow Connor blocked him with his Katana and went to finish the fight, Connor’s sword shattered to dust before making the blow. Rather than attack a defenceless man on holy ground, Kane wisely chose to save the fight for later.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-122506/","id":122506,"name":null,"issue_number":"1"},"id":47581,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/1838619-quickenings.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/1838619-quickenings.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/1838619-quickenings.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/1838619-quickenings.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/1838619-quickenings.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/1838619-quickenings.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/1838619-quickenings.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/1838619-quickenings.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/1838619-quickenings.jpg","image_tags":"All Images"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155522/","id":155522,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-origins-the-kurgan-2/4000-155522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316068/","id":316068,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-way-of-the-sword-1/4000-316068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155503/","id":155503,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-origins-the-kurgan-1/4000-155503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155505/","id":155505,"name":"Issue 4","site_detail_url":"https://comicvine.gamespot.com/highlander-way-of-the-sword-4-issue-4/4000-155505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448276/","id":448276,"name":"Volume 1: The Coldest War","site_detail_url":"https://comicvine.gamespot.com/highlander-1-volume-1-the-coldest-war/4000-448276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122506/","id":122506,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-1/4000-122506/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-253/","id":253,"name":"Highlander: The Source","site_detail_url":"https://comicvine.gamespot.com/highlander-the-source/4025-253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-686/","id":686,"name":"Highlander: The Search for Vengeance","site_detail_url":"https://comicvine.gamespot.com/highlander-the-search-for-vengeance/4025-686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-224/","id":224,"name":"Highlander III : The Final Dimension","site_detail_url":"https://comicvine.gamespot.com/highlander-iii-the-final-dimension/4025-224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-145/","id":145,"name":"Highlander II: The Quickening","site_detail_url":"https://comicvine.gamespot.com/highlander-ii-the-quickening/4025-145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-76/","id":76,"name":"Highlander","site_detail_url":"https://comicvine.gamespot.com/highlander/4025-76/"}],"name":"Quickenings","site_detail_url":"https://comicvine.gamespot.com/quickenings/4015-47581/","start_year":"2006","volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19205/","id":19205,"name":"Highlander","site_detail_url":"https://comicvine.gamespot.com/highlander/4050-19205/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/concept-details/concept-4015-50695.json b/samples/api-data/concept-details/concept-4015-50695.json new file mode 100644 index 0000000..d6121e6 --- /dev/null +++ b/samples/api-data/concept-details/concept-4015-50695.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50695/","count_of_isssue_appearances":58,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-05-19 18:59:19","deck":"The Ultimate in Soul Reaper power. When used a Soul Reaper become unbelievably powerful.","description":"
\"No

Purpose

When called forth the Bankai form of the Zanpaku- to raises the Soul Reaper's powers to the highest possible level.

Evidence of Evolution

When released a Bankai alters the wielder's powers much like the Shikai does, only at an even higher level than its predecessor. The Bankai also alters the form of the Zanpaku- to, but it also can alter the way the wielder appears. Ichigo and Renji both change in appearance and power whereas Byakuya's Zanpaku to changes but he doesn't.

How Does It Work?

Like the Shikai release the wielder utters their release command while connecting with their Zanpaku- to's spirit. The complete union of the two gives them their full power and opens up several new levels to their attacks too. The true form of the Zanpaktou and has immense power. For the most part, only Lieutenant level and higher Shinigami have obtained this level because of the immense time it takes to train to call out the true power of the sword. The powers, form, and limit, greatly depend on the soul, spirit energy, and personality of the wielder. But also depends on the sword itself. As seen with Ichigo Kurosaki, one must become one with their Bankai to finally release it. The shinigami must search deep in themselves and defeat the Bankai as a physical being to be able to use this power.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106842/","id":106842,"name":"The Death and the Strawberry","issue_number":"1"},"id":50695,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2372/293800-182489-bankai.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2372/293800-182489-bankai.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2372/293800-182489-bankai.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2372/293800-182489-bankai.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2372/293800-182489-bankai.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2372/293800-182489-bankai.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2372/293800-182489-bankai.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2372/293800-182489-bankai.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2372/293800-182489-bankai.jpg","image_tags":"All Images,Ultimate Soul Reaper Power"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542461/","id":542461,"name":"No. 35, August 1, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-234-no-35-august-1-2016/4000-542461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540756/","id":540756,"name":"No. 34, July 25, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-233-no-34-july-25-2016/4000-540756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537038/","id":537038,"name":"No. 29, June 20, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-228-no-29-june-20-2016/4000-537038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526960/","id":526960,"name":"No. 21-22, April 25, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-221-no-21-22-april-25-2016/4000-526960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525889/","id":525889,"name":"No. 20, April 18, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-220-no-20-april-18-2016/4000-525889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524494/","id":524494,"name":"No. 19, April 11, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-219-no-19-april-11-2016/4000-524494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521214/","id":521214,"name":"No. 16, March 21, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-216-no-16-march-21-2016/4000-521214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520060/","id":520060,"name":"No. 15, March 14, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-215-no-15-march-14-2016/4000-520060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517689/","id":517689,"name":"No. 13, February 29, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-213-no-13-february-29-2016/4000-517689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512267/","id":512267,"name":"No. 8, January 25, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-208-no-8-january-25-2016/4000-512267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506561/","id":506561,"name":"No. 52, November 23, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-200-no-52-november-23-2015/4000-506561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506085/","id":506085,"name":"No. 51, November 16, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-199-no-51-november-16-2015/4000-506085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505445/","id":505445,"name":"No. 50, November 9, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-198-no-50-november-9-2015/4000-505445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504839/","id":504839,"name":"No. 49, November 2, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-197-no-49-november-2-2015/4000-504839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504217/","id":504217,"name":"No. 48, October 26, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-196-no-48-october-26-2015/4000-504217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503448/","id":503448,"name":"No. 47, October 19, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-195-no-47-october-19-2015/4000-503448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500232/","id":500232,"name":"No. 42, September 14, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-190-no-42-september-14-2015/4000-500232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498962/","id":498962,"name":"No. 40, August 31, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-188-no-40-august-31-2015/4000-498962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498321/","id":498321,"name":"No. 39, August 24, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-187-no-39-august-24-2015/4000-498321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484812/","id":484812,"name":"No. 18, March 30, 2015","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-167-no-18-march-30-2015/4000-484812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473728/","id":473728,"name":"No. 3, December 15, 2014","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-152-no-3-december-15-2014/4000-473728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463546/","id":463546,"name":"No. 39, August 25, 2014","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-136-no-39-august-25-2014/4000-463546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442866/","id":442866,"name":"No. 8, January 20, 2014","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-106-no-8-january-20-2014/4000-442866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442102/","id":442102,"name":"No. 6-7, January 6, 2014","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-104-no-6-7-january-6-2014/4000-442102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437582/","id":437582,"name":"No. 3, December 16, 2013","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-102-no-3-december-16-2013/4000-437582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412396/","id":412396,"name":"The Battle","site_detail_url":"https://comicvine.gamespot.com/bleach-59-the-battle/4000-412396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436588/","id":436588,"name":"","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-60/4000-436588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436622/","id":436622,"name":"","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-alpha-201234/4000-436622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337096/","id":337096,"name":"The Rebooted Souls","site_detail_url":"https://comicvine.gamespot.com/bleach-the-rebooted-souls-1-the-rebooted-souls/4000-337096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263699/","id":263699,"name":"Howling","site_detail_url":"https://comicvine.gamespot.com/bleach-32-howling/4000-263699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420123/","id":420123,"name":"MASKED","site_detail_url":"https://comicvine.gamespot.com/bleach-offical-character-book-2-masked/4000-420123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263698/","id":263698,"name":"Don't Kill My Volupture","site_detail_url":"https://comicvine.gamespot.com/bleach-31-dont-kill-my-volupture/4000-263698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169792/","id":169792,"name":"The Lust","site_detail_url":"https://comicvine.gamespot.com/bleach-40-the-lust/4000-169792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169791/","id":169791,"name":"El Verdugo","site_detail_url":"https://comicvine.gamespot.com/bleach-39-el-verdugo/4000-169791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169790/","id":169790,"name":"Fear For Fight","site_detail_url":"https://comicvine.gamespot.com/bleach-38-fear-for-fight/4000-169790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169789/","id":169789,"name":"Beauty is so Solitary","site_detail_url":"https://comicvine.gamespot.com/bleach-37-beauty-is-so-solitary/4000-169789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166891/","id":166891,"name":"Turn Back The Pendulum","site_detail_url":"https://comicvine.gamespot.com/bleach-36-turn-back-the-pendulum/4000-166891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166472/","id":166472,"name":"Higher Than The Moon","site_detail_url":"https://comicvine.gamespot.com/bleach-35-higher-than-the-moon/4000-166472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263690/","id":263690,"name":"¡Mala Suerte!","site_detail_url":"https://comicvine.gamespot.com/bleach-23-mala-suerte/4000-263690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135108/","id":135108,"name":"Howling","site_detail_url":"https://comicvine.gamespot.com/bleach-32-howling/4000-135108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135107/","id":135107,"name":"Don't Kill My Volupture","site_detail_url":"https://comicvine.gamespot.com/bleach-31-dont-kill-my-volupture/4000-135107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263649/","id":263649,"name":"The Black Moon Rising","site_detail_url":"https://comicvine.gamespot.com/bleach-19-the-black-moon-rising/4000-263649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135101/","id":135101,"name":"No Shaking Throne","site_detail_url":"https://comicvine.gamespot.com/bleach-25-no-shaking-throne/4000-135101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134787/","id":134787,"name":"Immanent God Blues","site_detail_url":"https://comicvine.gamespot.com/bleach-24-immanent-god-blues/4000-134787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134786/","id":134786,"name":"¡Mala Suerte!","site_detail_url":"https://comicvine.gamespot.com/bleach-23-mala-suerte/4000-134786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420458/","id":420458,"name":"VIBEs","site_detail_url":"https://comicvine.gamespot.com/bleach-official-animation-book-1-vibes/4000-420458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408330/","id":408330,"name":"End of Hypnosis","site_detail_url":"https://comicvine.gamespot.com/bleach-20-end-of-hypnosis/4000-408330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131315/","id":131315,"name":"End of Hypnosis","site_detail_url":"https://comicvine.gamespot.com/bleach-20-end-of-hypnosis/4000-131315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408327/","id":408327,"name":"Rosa Rubicundior, Lilio Candidior","site_detail_url":"https://comicvine.gamespot.com/bleach-17-rosa-rubicundior-lilio-candidior/4000-408327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130222/","id":130222,"name":"Rosa Rubicundior, Lilio Candidior","site_detail_url":"https://comicvine.gamespot.com/bleach-17-rosa-rubicundior-lilio-candidior/4000-130222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408325/","id":408325,"name":"Beginning of the Death of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/bleach-15-beginning-of-the-death-of-tomorrow/4000-408325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130220/","id":130220,"name":"Beginning of the Death of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/bleach-15-beginning-of-the-death-of-tomorrow/4000-130220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408322/","id":408322,"name":"Flower On the Precipice","site_detail_url":"https://comicvine.gamespot.com/bleach-12-flower-on-the-precipice/4000-408322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130217/","id":130217,"name":"Flower on the Precipice","site_detail_url":"https://comicvine.gamespot.com/bleach-12-flower-on-the-precipice/4000-130217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408312/","id":408312,"name":"Goodbye Parakeet, Goodnite My Sista","site_detail_url":"https://comicvine.gamespot.com/bleach-2-goodbye-parakeet-goodnite-my-sista/4000-408312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119963/","id":119963,"name":"Goodbye Parakeet, Good Night Sister","site_detail_url":"https://comicvine.gamespot.com/bleach-2-goodbye-parakeet-good-night-sister/4000-119963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408311/","id":408311,"name":"The Death and the Strawberry","site_detail_url":"https://comicvine.gamespot.com/bleach-1-the-death-and-the-strawberry/4000-408311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106842/","id":106842,"name":"The Death and the Strawberry","site_detail_url":"https://comicvine.gamespot.com/bleach-1-the-death-and-the-strawberry/4000-106842/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1457/","id":1457,"name":"Bleach: Fade to Black, I Call Your Name","site_detail_url":"https://comicvine.gamespot.com/bleach-fade-to-black-i-call-your-name/4025-1457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-764/","id":764,"name":"Bleach 2 The Diamond Dust Rebellion","site_detail_url":"https://comicvine.gamespot.com/bleach-2-the-diamond-dust-rebellion/4025-764/"}],"name":"Bankai","site_detail_url":"https://comicvine.gamespot.com/bankai/4015-50695/","start_year":"2002","volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18244/","id":18244,"name":"Bleach","site_detail_url":"https://comicvine.gamespot.com/bleach/4050-18244/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/concept-list-item/concepts.json b/samples/api-data/concept-list-item/concepts.json new file mode 100644 index 0000000..ad3208f --- /dev/null +++ b/samples/api-data/concept-list-item/concepts.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":2304,"status_code":1,"results":[{"aliases":"Odinforce\nThorforce\nThor Force","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-35070/","count_of_isssue_appearances":72,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-06-14 19:51:41","deck":"Ancient and vast Asgardian power wielded by Odin and later inherited by Thor.","description":"

Origin & History

Odin and his two brothers Vili and Ve tried to take down Surtur after they had finished taking down the frost giant, Ymir. When they go there, they tell the fire people that they have come to learn the undiscovered. Odin asks Surtur if it's true that he would one day destroy the nine worlds. Surtur answers him yes and explains how he shall do it using his Sword Of Doom and the Eternal flame. Odin remarks back \"Wouldn't it be better if the flame was taken out and the sword broken?\". Surtur then returns saying \"The flame cannot be extinguished but they could try to break his sword\". Surtur would then slam his fist on the ground as demons started to come from all corners. Then the brothers Vili and Ve would summon the raging storms of the arctic to stop the demons. It worked and started to freeze them.

Next the three brothers joined into one to battle Surtur. As the battle continued, they discovered they weren't able to best Surtur, so they made one final blow which broke Surtur's sword. Vili one of the brothers states it to be a victory while Odin simply says that he will come after them. Ve then would cut down the flame of destruction so that even if Surtur were to reforge his sword he could not kindle it with the flame so that the world wouldn't end. Odin then starts to run to the portal to the nine worlds then releases his brothers who aren't following. One of the brothers says that if they go Surtur shall follow, then suddenly as Surtur emerges from the brimstone lake, a blast would come knocking Odin out of the realm Muspelheim and knocked him out as well. When he had awoken, the entrance to the realm was gone and he had the combined powers of his two brothers, as well as his own, which created the Odin Force; however, he was aware that his brothers were dead.

Feats

  1. Assisted Thor in denting Captain America's virtually indestructible shield.
  2. Odin, wielding it, created a galaxy and then destroyed it.
  3. With The Odin Force, Thor takes two nuclear warheads out of his chest without injury.
  4. Killed Captain America whilst destroying his shield.
  5. Kills Wolverine while destroying him and his Adamantium bones.
  6. Thor has used the Odin Force to cure a man of his terminal cancer.
  7. Thor has used the Odin Force to stop time itself.
  8. Odin used it to cut out the heart of a star, which was used to forge and empower the legendary hammer Mjolnir.
  9. Odin used it to bring back to life both Thor and Brunnhilde. (Valkyrie)
  10. By channeling the Odin Force into his sacred hammer Mjolnir, Thor decapitated the nigh-invincible Destroyer Armor with one strike.
  11. Thor used the Odin Force to not only become the supreme ruler of Earth itself, but also eliminate all of its heroes and villains that opposed him.
  12. Odin used it to transform the cursed Nibelling rings into the gigantic Oversword of Asgard. (Now known as the Odinsword)
  13. Thor used it to destroy the Blood Axe of Skurge the Executioner, stating that only the Odin Force was capable of doing so.
  14. Thor used the Odin Force to restore not only the floating city of Asgard on Earth, but also restored the lives of all the Asgardians who were lost after Ragnarok.
  15. Odin used it to create and empower Stormbreaker, the hammer of Beta Ray Bill.
  16. Odin used it to create and empower the Uru mace Thunderstrike, as a gift to Eric Masterson for all his heroic efforts in Asgard's name.
  17. Odin used it to trap Surtur within his own body, becoming a living prison for the fire Elemental.
  18. Odin used it to save the life of Eric Masterson by merging his life force with that of Thor's.
","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7553/","id":7553,"name":"The Mighty Thor Battles The Incredible Hulk!","issue_number":"112"},"id":35070,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5366/313951-9153-the-odin-force.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5366/313951-9153-the-odin-force.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5366/313951-9153-the-odin-force.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5366/313951-9153-the-odin-force.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5366/313951-9153-the-odin-force.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5366/313951-9153-the-odin-force.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5366/313951-9153-the-odin-force.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5366/313951-9153-the-odin-force.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5366/313951-9153-the-odin-force.JPG","image_tags":"All Images,Odin force as child"},"name":"The Odin Force","site_detail_url":"https://comicvine.gamespot.com/the-odin-force/4015-35070/","start_year":"1965"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40616/","count_of_isssue_appearances":96,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-09-12 07:47:59","deck":"\"With great power comes great responsibility\" is a mantra that was passed down to Peter Parker from Uncle Ben during Peter's teenage tribulations.","description":"

Origin

With great power comes great responsibility, originally With great power there must also come great responsibility was a phrase Uncle Ben told to Spider-Man when Peter was going through teenage angst.

After Ben's death, the Peter took the time to reflect on himself and the mantra and eventually decided to make it his life's motto. Although the motto is applicable to all stages of life, it is especially relevant to mutants/super-humans. Keep in mind, when Peter, and many super humans first found they had super powers, they used it for personal gain.

Yet all super-heroes as we know today have gone through the process, understanding their responsibility to protect and further mankind.

List of Issues the Line Has Been Stated

Silver Surfer Vol. 3 #108 - After his powers are returned, the Surfer realizes that he cannot live a casual life as others do, \"I am the bearer of great power -- and with great power, great responsibility!\"

Annihilation: Nova #3 - Quasar tells Nova that he has the Quantum Bands and Nova has the Nova Force...and that he needs Richard's help. He then, thinking of their powers, says \"Someone once told me that with great power must also come great responsibility.\" Nova thinks it sounds like something Captain America would say but Quasar tells him it was actually Spider-Man.

Evil Ernie: Youth Gone Wild #2 - Lady Death says to Evil Ernie: \"With great power, comes great responsibility... to those you love\"

Marvel Knights Spider-Man #15 - Ethan Edwards' father sends him on the bus with words \"With great power there must also come, great responsibility\"

Uncanny X-Men Annual #14 - Wolverine explains the concept to Franklin Richards and Rachel Summers, enabling them to agree to return home and try to set things right.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105342/","id":105342,"name":null,"issue_number":"15"},"id":40616,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2058489-spider_man__no_more_by_joejusko.jpg","image_tags":"All Images"},"name":"With Great Power Comes Great Responsibility","site_detail_url":"https://comicvine.gamespot.com/with-great-power-comes-great-responsibility/4015-40616/","start_year":"1962"},{"aliases":"Alternate Universe\nMultiverse\nOmniverse\nParallel Universe\nAlternate Timeline\nAlternate Future\nAlternate History","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40617/","count_of_isssue_appearances":2600,"date_added":"2008-06-06 11:27:52","date_last_updated":"2020-08-23 04:39:13","deck":"The generic term for Multiverses or What If...? type scenarios. An Alternate Universe usually features pre-established characters living in different situations from those of the main continuity universe.","description":"

Overview

Alternate Reality

An Alternate Universe is a plot device to create \"what if\" scenarios. They are also used to narrate other sides of a character that may not be possible in the main story arc.

An alternate universe is also referred as an alternate time-line, or alternate future. The alternate futures are possible futures which could happen depending on the actions of the past. However, these futures may actually be separate universes in a what-if scenario.

The Age of Apocalypse is an example of an alternate universe where Professor Xavier was accidentally killed by his own son, Legion when he went back in time to kill Magneto. As a result, Apocalypse ruled this altered timeline in which Xavier had never founded the X-Men.

Alternate Universes are generally very short lived and often created to demonstrate a 'what if' scenario. The Marvel What If? volumes as well as the Marvel Zombies are a good example of this. The comics describing the alternate universes are usually short, and after they are narrated, they disappear.

Alternate universe was also shown on the TV series called Sliders where the four sliders travel to each parallel Earth. These parallel Earths have their own alternate histories which would lead to the present day changes. However, the time travel wasn't involved in creating these alternate universes.

A Parallel Universe is more of a static. An example of this may be an 'opposite' universe, in which the good guys are the bad guys, and the bad guys the good guys. Parallel Universes may be described in mini-arcs, or they may only exist in another Alternate Universe.

Leading up to the year 2000 Chaos! Comics devised a 2 year story arc for all its characters where by all the story-lines of the main characters converged around a single story thread that culminated int he total destruction of their universe. In the year 2000 the Chaos Comics universe was remade by a single character who devised 8 worlds and placed each of the main characters into these worlds, reborn for their stories to continue afresh.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116242/","id":116242,"name":"V For Victory","issue_number":"8"},"id":40617,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/101393-118610-alternate-universe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/101393-118610-alternate-universe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/101393-118610-alternate-universe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/101393-118610-alternate-universe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/101393-118610-alternate-universe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/101393-118610-alternate-universe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/101393-118610-alternate-universe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/101393-118610-alternate-universe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/101393-118610-alternate-universe.jpg","image_tags":"All Images,Alternate Universes"},"name":"Alternate Reality","site_detail_url":"https://comicvine.gamespot.com/alternate-reality/4015-40617/","start_year":"1942"},{"aliases":"Superhelden Registrierungsgesetz","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40639/","count_of_isssue_appearances":241,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-07-29 10:39:14","deck":"The Super-human Registration Act was a bill the Civil War arc revolved around. It deals with sacrificing civil liberties to promote a nation's safety.","description":"

The Super-human Registration Act was a bill the Civil War arc revolved around. It deals with sacrificing civil liberties to promote a nation's safety.

The SHRA draws many parallels to the United States today, it purposely is very similar to the Patriot Act. However, Civil War soon branches off and it shows how all of the characters deal with the SHRA.

The bill took affect after a televised battle between the New Warriors and a group of supervillians in Stamford, Connecticut. During this battle, the supervillian Nitro causes his own body to explode, killing all of the New Warriors (with the exception of Speedball) as well as 600 other Stamford residents including sixty children at a nearby elementary school. This caused America to truly fear meta-humans and wished for them to be controlled. The SHRA was America's response. The Super-human Registration Act was passed one week after it was thought up.

The SHRA requires all meta-humans who wish to employ their powers to register with SHIELD. They must hand over all personal information to SHIELD, but it is not necessary for them to do such to the public (although Spider-Man and Iron-Man, two key supports, did give away their secret identity to the public).

Those who are in discord with the SHRA are detained by SHIELD, or heroes in cohort with SHIELD, and then put into a jail specifically for super-humans.

It should be noted that Captain America is highly against this bill, finding it a breech of the civil liberties that America stands for, and for that, he was arrested and assassinated.

This act led the way for the creation of the 50 State Initiative (an organization that will place a team of registered super-humans in each of America's states) and Camp Hammond (a ''boot camp'' of sorts for registered super-humans who have no combat training).

As of the conclusion to Siege, Captain America gave the President of the United States a list with his demands on it. One of the demands was to get rid of the Super-Human Registration Act, which the President agreed to.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-138215/","id":138215,"name":"Arrivals","issue_number":"8"},"id":40639,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/787/107943-138777-super-human-registra.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/787/107943-138777-super-human-registra.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/787/107943-138777-super-human-registra.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/787/107943-138777-super-human-registra.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/787/107943-138777-super-human-registra.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/787/107943-138777-super-human-registra.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/787/107943-138777-super-human-registra.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/787/107943-138777-super-human-registra.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/787/107943-138777-super-human-registra.png","image_tags":"All Images,Super-Human Registration Act (Civil War)"},"name":"Super-Human Registration Act","site_detail_url":"https://comicvine.gamespot.com/super-human-registration-act/4015-40639/","start_year":"1983"},{"aliases":"Mutie\r\nHomo superior\r\nMutant Gene\r\nOmega Level Mutant","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40656/","count_of_isssue_appearances":3462,"date_added":"2008-06-06 11:27:52","date_last_updated":"2021-02-01 13:21:27","deck":"The Children of the Atom, mutants are individuals in the Marvel Universe who are born with an X-Gene that grants them superhuman abilities. Mutants mark the next step in human evolution, known as Homo Superior.","description":"

Overview

Mutants mark the next step in human evolution, commonly referred to as Homo Superior. Unlike other superhuman powers, mutation originates at conception as a result of the presence of a particular gene known as the X-Gene (a.k.a. the X-Factor or mutant gene). Mutant powers generally manifest around puberty, but can be catalyzed during periods of heightened emotional or physical stress. Often times, some superhumans are erroneously referred to as mutants because of unique genetic structure and/or their powers were evident at birth. The only true Marvel Mutants are those born with an X-Gene.

The X-Gene commonly lies dormant until puberty, when it manifests in a number of ways, but it can manifest at birth or lie dormant throughout life, or until triggered mechanically. Mutations manifest in varied and unexpected ways, and mutants may or may not look different than normal humans. A mutation will grant a member of the homo superior species either a psionic or physical ability or some combination thereof. Variations in appearance include abnormal body color, excessive hair or fur, disproportionate or additional limbs, extra appendages (such as tails, wings, or tentacles), textured skin (such as rock or scales) or an animal-like appearance. Powers vary in nature and and include (but are not limited to) superhuman strength, superhuman speed, superhuman senses, flight, telepathy, telekinesis, blast powers, shape shifting, mastery over particular energies/radiation, and control over particular elements.

Among the public, some humans show great fear or hatred towards mutants due to either their abilities, their appearance, or ignorance, but there are mutants (and humans) who make an effort to achieve equality among humans and mutants, but some feel that the humans will never change and will continue to oppress mutantkind.

There have been many attempts to neutralize the X-gene for those who wish to lead to what they feel is a normal life. Some have been successful, some have not.

Marvel's First Mutant

Namor the Sub-Mariner is often labeled as Marvel's first mutant, which is true insofar as he is the first mutant character published by Marvel.

However, the first, as in oldest known mutant in the Marvel universe, would be Selene, being well over 17,000 years old.

Chronological list of Marvel mutants:

  • Selene (over 17,000 years old)
  • Forever Man (?)
  • Saul (one of the oldest Externals)
  • Crule (worshiped Hyborian dieties)
  • Nicodemus (~10000 years old)
  • White Sword
  • Apocalypse (born 3000 BC.)
  • Genesis (wife of Apocalypse)
  • Isca the Unbeaten (sister of Genesis)
  • First Horsemen (children of Apocalypse and Genesis)
  • Azazel (several thousands years old)
  • Sphinx (at least 3300 years old)
  • War (Final Horsemen) (born in the 3rd century)
  • Death (Final Horsemen) (born in the 4th century)
  • Candra (over 1000 years old)
  • Four Horsemen of Apocalypse (11th century)
  • Sahreed (active when Exodus' powers manifested)
  • Scarab (active when Exodus' powers manifested)
  • Exodus (born in the 12th century)
  • Damian Tryp (born in 1337)
  • Locomotive Breath
  • Gideon (born in the 15th century)
  • William Burke
  • Shadow King (born in the 16th century)
  • Gloria Knoblach (born 1673)
  • Clarity (born 1675)
  • Dark Mother (born 1680)
  • Summoner (~300 years old)
  • Elias Bogan (over 250 years old)
  • Graymalkin (born before 1775)
  • Pestilence (Final Horsemen) (born in ~1800)
  • Famine (Final Horsemen) (born in ~1800)
  • Cyber (born in ~1800)
  • Absalom (over 150 years old)
  • Mr. Sinister (Artificial mutant, born in mid 19th century.)
  • Margaret Slade (born in the 1850's)
  • Kabar Brashir (born in the 1850's)
  • Tobias Messenger (born in 1859)
  • Black Womb (born in the 1870's)
  • Hamilton Slade (born in the 1870-1880's)
  • Frederick Slade (born in the 1870-1880's)
  • Jack Starsmore (born in the 1870-1880's)
  • Sabretooth (over 130 years old)
  • Destiny (over 130 years old)
  • Mystique (over 130 years old)
  • Gateway
  • Klara Prast (born in 1895)
  • Wolverine (born in the 1890's)
  • Silver Fox
  • Centennial (born in 1902)
  • Dr. Nemesis (born in 1906)
  • Spitfire (born in the 1910s)
  • Namor (born in 1920)
  • Namora (born in 1921)
  • Magneto (born in the 1920s)
  • Whizzer (born in the 1920s)
  • Super-Sabre
  • Crimson Commando
  • Stonewall
  • Solem
  • Spider-Queen
  • Toro
  • Scalphunter

Omega-Level Mutants

Omega-level mutants are the most powerful members of the mutant race, with their psionic powers unlimited within the spectrum of their specific field.

The Omega-Level Mutation term was originally used to label mutants that were the biggest threat. Omega-Level Mutants are now known as mutants with potential for immeasurable power. The theory of the omega-level power was explained in the limited series X-Men: Forever.

It explained current human population in the Marvel Universe are the result of experiments by the Celestials eons ago. They were attempting to create humanity and have them evolve into new beings. Those that have achieved Omega-Level powers are nearing the final stage of evolution and often pass along this trait to their progeny.

The most common listing of qualities needed by these mutants is that they must have unlimited potential, be able to utterly control a substance (examples include ice, matter and energy) and that they can live beyond their physical form. However another way they can be judged to be Omega-level is if they are capable of hosting the Phoenix Force. Be aware, all these are speculations; there are no actual rules for what being an Omega means.

The confirmed Omega-level mutants that are cited below include:

  1. Rachel Summers was the first mutant referred to as omega-level in Uncanny X-Men #208.
  2. Mr. M shows spectacular displays of power throughout his few appearances but in is in X-Men: The 198 #2 that Val Cooper tells the X-Men that he is indeed an Omega-level mutant. This is quite possible since he can do anything he wishes and after his physical body was incinerated he still lives.
  3. Though Vulcan was first referred to as \"beyond Omega-level\", this is impossible since Omega is already unlimited. So this has often been seen as a error in the writer's judgment. In Uncanny X-Men #483 he is confirmed as being Omega-level.
  4. Iceman and Jean Grey received the title in the X-Men Forever (2001) series.
  5. Elixir and Franklin Richards were confirmed in the 198 Files.
  6. Quentin Quire was confirmed as an Omega-level mutant by the Phoenix Force within X-Men: Phoenix - Endsong, a series in which he briefly possessed the Phoenix Force.
  7. David Charles Haller confirmed in New Mutants #4 (2009)
  8. X-Man is identified as an Omega-Level mutant in Dark X-Men #2 (2009)
  9. Hope Summers confirmed in X-men: Phoenix Force Handbook (2010)

Beyond Omega?

Also there is a character in the Marvel Universe who seems to have surpassed Omega-Level and may be the true pinnacle of human evolution, having evolved beyond death itself, and so he has been deemed Homo Supreme rather than Homo Superior. He has been promised that he will live to see the End of the Universe:

  1. Craig Hollis/ Mr. Immortal

Mutant Subspecies

  • Externals
  • The Neo
  • The Cheyarafim
  • The Neyaphem
  • Dominant Speices
  • Changelings

Mutant Hybrids

Ex-Mutants and the 198

During the Marvel event House of M, mutants are decimated when Wanda Maximoff depowers 98% (actually is closer to 99.9997% by using mathematics) of the mutant population after being fed up with her father Magneto's mutant cause. This day went on to be known as M-Day. Notable depowered mutants (or Ex-Mutants) include Magneto himself, Quicksilver, Wind Dancer, Moonstar, Rictor, Chamber, Jubilee, The Blob, and Marrow.

It was initially estimated by the O*N*E* (Office of National Emergency) to only be 198 mutants left on Earth, although that number has since been refuted to be around 200-300 mutants. Nonetheless, mutants have used that number as a symbol of solidarity representative of their dwindled numbers.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-2818/","id":2818,"name":null,"issue_number":"2"},"id":40656,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/4261710-x-gene-x-men2013-marvel_now_promo_art-edited.jpg","image_tags":"All Images"},"name":"X-Gene Mutant","site_detail_url":"https://comicvine.gamespot.com/x-gene-mutant/4015-40656/","start_year":"1956"},{"aliases":"Earth-712\r\nEarth-31916\r\nEarth-S\r\nEarth-1121\r\nEarth-4023\r\nEarth-13034\r\nEarth-5764","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40951/","count_of_isssue_appearances":81,"date_added":"2008-06-06 11:27:52","date_last_updated":"2018-05-27 19:29:43","deck":"Supremeverse is the title given to the home reality of the Squadron Supreme. A parallel universe to Earth-616 and its resident superheroes, it's most renown reality of Supremverse is the team of super heroes called the Squadron Supreme. Various realities exist seeming to mirror one another in concept.","description":"



Origin

\"No

There has been several realities where the Squadron Supreme and/or related characters exists. The following is a list of similar parallel universes to Earth-616. In almost every alternate Supremeverse similar resident superheroes/villains mirror it's most renown reality of Supremeverse the Squadron Supreme. Various realities exist seeming to equate a different ending from one another yet the base concept derives from the Squadron Supreme stories.

List of Supremeverse Earths:

Earth-712, or Earth-S is the reality of the original Squadron Supreme.

Earth-31916 is the Supreme Power reality.

Earth-1121 is a reality where all life was eradicated by nuclear holocaust. Hyperion was the sole survivor.

Earth-4023 is the reality of King Hyperion.

Earth-13034 is a reality that got destroyed, and Hyperion is the only survivor.

Earth-5764 is home reality to a blind Hyperion.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11273/","id":11273,"name":"The World Is Not For Burning","issue_number":"85"},"id":40951,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/136955-42199-squadron-supreme.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/136955-42199-squadron-supreme.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/136955-42199-squadron-supreme.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/136955-42199-squadron-supreme.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/136955-42199-squadron-supreme.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/136955-42199-squadron-supreme.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/136955-42199-squadron-supreme.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/136955-42199-squadron-supreme.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/136955-42199-squadron-supreme.jpg","image_tags":"All Images,Earth-712 Squadron Supreme,Misc"},"name":"Supremeverse","site_detail_url":"https://comicvine.gamespot.com/supremeverse/4015-40951/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-40993/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2011-05-05 16:58:40","deck":"In the early 20th century the American government started Project: USA (Ultra Sapiens Alliance) to create an army of superhumans.","description":"

Through a mix of biochemistry and mutation the scientists of Project: USA created a race of enhanced humans, the Ultra Sapiens. Each Ultra Sapien has a biogenetic mark somewhere on their body that looks like a tattoo, but other than that most of them look like normal humans. These Ultras belonged to America and were kept secret and under control for years until some of the Ultra Sapiens got together and destroyed the project so all the superhumans could escape. The now-free and untraceable Ultras spread around the world to live their own lives. Some became mercenaries or superheroes while others just hid and tried to have normal lives. This lead to the creation of the Hunter-Killers, a large group of recruited Ultra Sapiens that hunts down and captures (or kills) other Ultra Sapiens.

","first_appeared_in_issue":null,"id":40993,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/83873-142095-project-usa.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/83873-142095-project-usa.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/83873-142095-project-usa.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/83873-142095-project-usa.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/83873-142095-project-usa.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/83873-142095-project-usa.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/83873-142095-project-usa.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/83873-142095-project-usa.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/83873-142095-project-usa.jpg","image_tags":"All Images,Project: USA"},"name":"Project: USA","site_detail_url":"https://comicvine.gamespot.com/project-usa/4015-40993/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-41039/","count_of_isssue_appearances":490,"date_added":"2008-06-06 11:27:52","date_last_updated":"2020-08-10 18:45:56","deck":"The Power Cosmic is synonymous with any kind of cosmic forces.","description":"

Origin

The Power Cosmic is a limitless energy that can allow the user to do many things, such as resurrect the dead, manipulate the user's size and mass, teleportation, telepathy, creation of force fields, time-travel, superhuman strength, immortality, and much more. The Power Cosmic can be used in a powerful blast or in small doses, such as changing the color of a plant. The Power Cosmic can also be infused into the human soul, giving them a portion of the Powers of the Universe.

The greatest and most powerful wielder (and perhaps source) of the Power Cosmic would be Galactus, the Devourer of Worlds. He is rumored to be able to teleport entire galaxies throughout time and space, re-shape worlds that have been destroyed back to their original form in every detail, and even create life. Galactus often bestows a small fraction of the Power Cosmic to his Heralds, most notably the Silver Surfer, who has used it to strip mutants of their abilities (either temporarily or permanently), and more. Galactus, however, can bestow or take away the Power Cosmic at will.

With the Power Cosmic comes a Cosmic Sense. It allows anyone imbued with the Power Cosmic to be one with the processes of the universe. The Silver Surfer once described it as being able to \"hear the cosmic static of the universe's electromagnetic fields and detect the pain of dying stars or the rhapsody of planets aborning\".

The Power Cosmic originates from the Astral Plane.

The Old Power

The Old Power is an attempt by the Shadow Priests to recreate the Power Cosmic. This was only partially successful, as the Old Power is unstable.

Wielders of the Power Cosmic

Galactus is the bestower of the Power Cosmic and seems to be the only living source of said energy. He can manipulate every organism. His hunger is insatiable, and the only way to sate his hunger is to consume the core of living planets, thus devouring the chosen world.

Given by Galactus

Galacta: Galacta is Galactus' biological daughter and, like both her Father and Tyrant, she is one of the most powerful wielders of The Power Cosmic in existence. But unlike Galactus and Tyrant, she never uses her powers to harm anything other than alien infestations both microscopic and macroscopic in origin. The reason she does this is to keep her adopted home world, Earth, and it's inhabitants safe.

Tyrant: Tyrant has been called Galactus' \"son\" and was bestowed a much greater amount of the Power Cosmic than any other herald. After a conflict with Galactus, he was reduced in power but still has shown to be stronger than any other herald.

Silver Surfer: Norrin Radd is the best known Herald of Galactus. The Power Cosmic has granted him such abilities as superhuman strength, immortality, cosmic awareness, energy and molecular manipulation as well as the ability to fly faster than the speed of light.

Air-Walker: The original Air-Walker, Gabriel Lan, was much favored by Galactus. The android that replaced him after he gave his life for Galactus was not favored as much because he did not share the same passion as the original. The original Air-Walker was given superhuman strength and durability, as well as an immunity to the vacuum of space by the Power Cosmic.

Firelord: Pyreus Kril was yet another Herald of Galactus and also friend of Air-Walker. The Power Cosmic bestowed upon him the power of flight, superhuman strength and the ability to channel cosmic flame.

Terrax: The Herald known as Terrax the Tamer was gifted with superhuman strength, stamina, durability and reflexes, superluminal flight, blast power and the ability to manipulate earth.

Nova: Frankie Raye of Earth volunteered to serve a weakened Galactus and was only given a minimal amount of the Power Cosmic due to his depleted state.

Morg: Morg the Executioner was endowed with the Power Cosmic, and from this was given superhuman strength and the ability to channel energy through his axe.

Red Shift: Red Shift also received the Power Cosmic from Galactus. He was made to be superhumanly strong and durable, immune to the vacuum of space, has the ability to open dimensional rifts and generate swords supplied with cosmic power.

Human Torch: When Johnny Storm was temporarily imbued with the Power Cosmic he gained the ability to understand absolutely anything he analyzed.

Alpha Ray: A biomechanical being Galactus infused with the Power Cosmic.

Plasma: Herald of Galactus in the Heroes Reborn world.

Stardust: Lambda-Zero was given the Power Cosmic by Galactus resulting in the power to manipulate cosmic energy in addition to its already formidable natural powers.

Praeter: Christian Pastor from Oklahoma, called Pastor Mike, and newest herald of Galactus. So far, he has shown the powers of Super Speed, Flight, and Tracking.

Superman: At one point, Galactus made Superman his Herald, removing his cape and sheathing him in gold. With the Power Cosmic Superman's natural powers were enhanced by a great degree, including space travel. A host of new powers were also granted to him including firing powerful energy blasts, teleportation, unleashing a blast from his whole body - which was used to blast Mr. Fantastic off of him, cosmic awareness, and probably a whole host of other abilities which were never revealed due to him betraying Galactus. However, when Superman did have the Power Cosmic, Galactus said that he was his most powerful Herald ever. (see: Superman/Fantastic Four #1)

Cosmic Hulk: This version of the Hulk is a robot created by the Mad Thinker. Once, instead of having heralds, Galactus had a data loop program that wandered the universe, compelling beings to create artificial life forms that would one day help Galactus consume their planet.

Given by Silver Surfer

Captain Universe: The Silver Surfer permanently infused a portion of The Power Cosmic into the Uni-Power and repaired both its severe memory loss and power fluctuations.

Shalla Bal: She was granted a portion of the Silver Surfer's power. She has the ablity to grow life wherever she steps. She can also call out to the Surfer for assistance through her thoughts.

Silver Skyriders: In another universe, twelve pieces of the Silver Surfer bestowed his power on twelve aliens forming the Silver Skyriders.

Skaar: Silver Surfer wished to show Skaar what it was like when a mortal reaches for the power of the Gods, so he shows him the Power Cosmic by fusing with him. The Silver Surfer then talks to Skaar about decisions that would change his life forever, but Skaar has a different point of view.

Earl Weygand: The Silver Surfer gave half of his Power Cosmic to Earl in order to help him defeat the Enslavers. This turned Earl into a Silver Surfer himself. He was able to destroy the power supply of the ship, but it cost him his life.

Taken from a wielder

Doctor Doom: Victor Von Doom did for a time steal the Power Cosmic from the Silver Surfer. He eventually had the power stripped from him by Galactus.

Doombot: A robotic creation of Doctor Doom sent to absorb the Power Cosmic for himself once again. It was able to get the power but was destroyed.

Red Hulk: In battle with the Silver Surfer, the Red Hulk strangles him and before the Surfer could stop him, the Red Hulk absorbed every inch of the Power Cosmic into his body and kills the Silver Surfer. He then takes Terrax's axe and the Silver Surfers board but Galactus once again defeats Rulk. Grandmaster resurrects all of those killed by Rulk, including the Silver Surfer.

Cosmic Messiah: The Cosmic Messiah was created by using a combination of the Puppet Master's radioactive clay and the Power Cosmic siphoned from the Silver Surfer by the Gangers.

High Evolutionary: Ambushing the Silver Surfer on Earth, the High Evolutionary completely siphoned the Power Cosmic from the Silver Surfer, leaving him a mortal being again. Wyndam did not absorb all of the Power Cosmic into himself, but instead, used it as needed and took control of one of Galactus' Star Spheres.

Horacio de la Fuente - A dying man given the Power Cosmic by the High Evolutionary.

Suzi Endo: Suzi (also known as Cybermancer) was made Herald to the High Evolutionary and changed with the Power Cosmic, much like the Silver Surfer did. She would come to be known as the Seeker.

Alternate Realities

Heroes Reborn

In the Heroes Reborn world, the cosmic rays that gave the Fantastic Four their powers were actually part of the Power Cosmic. The Heralds of Galactus were able to sense this in all four members.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7026/","id":7026,"name":"The Infant Terrible","issue_number":"24"},"id":41039,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25115/451402-norrinpowercosmic.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25115/451402-norrinpowercosmic.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25115/451402-norrinpowercosmic.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25115/451402-norrinpowercosmic.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25115/451402-norrinpowercosmic.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25115/451402-norrinpowercosmic.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25115/451402-norrinpowercosmic.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25115/451402-norrinpowercosmic.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25115/451402-norrinpowercosmic.jpg","image_tags":"All Images"},"name":"Power Cosmic","site_detail_url":"https://comicvine.gamespot.com/power-cosmic/4015-41039/","start_year":"1964"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-41148/","count_of_isssue_appearances":2362,"date_added":"2008-06-06 11:27:52","date_last_updated":"2020-06-29 23:18:50","deck":"A Green Lantern is an officer of the intergalactic police force known as the Green Lantern Corps, who have the ability to overcome great fear with the might of willpower. They possess power rings capable of creating constructs characterized by their will and strength to use it. Each Green Lantern is given a Sector of the Universe to protect and it is their priority to suppress any threat against their sector.","description":"

Note: This mantle page should no longer be associated to issues, instead use the Green Lantern Corps team page.

What is a Green Lantern?

A Green Lantern is a member of an elite intergalactic police force organized to promote justice and order throughout the universe, specifically the sector they are chosen to protect. They protect and serve as part of the Green Lantern Corps formed by the Guardians of the Universe, an extraterrestrial race known as Oans. A Corps member is equipped with an item that is regarded as one of the most powerful weapons in the DC Universe, called a Green Power Ring. The Power Ring enables its bearer to manifest their thoughts into hard-light constructs and other various properties only limited by the ring's amount of power and the user's willpower and imagination. It chooses the individual and successor attributed to overcoming the great fear through the might of willpower. The Power Ring is based on advanced technology rather than having its power magically derived, as of the one of Alan Scott.

The ring is primarily used for anti-gravity, to unleash torrents of energy, translate alien dialects and to create hard-light constructs of any shape or complexity. Though, in the past, it has been unable to affect yellow-colored objects, this impurity has been overridden by Hal Jordan's power of will.

The ring must be periodically charged by contact with a Power Battery (a.k.a. Lantern), which in turn draws energy from the Guardians of the Universe' Central Power Battery on the planet Oa, the central headquarters of the Green Lantern Corps.

Oath of the Green Lantern

Though not necessary, many Green Lanterns recite an oath while re-charging their Green Power Ring. Some believe it aids them in re-affirming their strength of will. Recitation of the Oath takes an approximate equal amount of time required to recharge the ring. The most common oath used is as follows:

In brightest day,

In blackest night,

No evil shall escape my sight,

Let those who worship evil's might,

Beware my power...Green Lantern's light!

More Green Lantern Oaths

However, other Green Lanterns have recited and bid by their own oaths in sense of respect and honor of what they stand for. Such examples are below:

Alan Scott's Oath

...And I shall shed my light over dark evil.
For the dark things cannot stand the light,
The light of the Green Lantern!

Rot Lop Fan's Oath

In loudest din or hush profound,
My ears catch evil's slight sound,
Let those who toll out evil's knell,
Beware my power...the F-Sharp Bell!

Jack T. Chance's Oath

You who are wicked, evil and mean,
I'm the nastiest creep you ever seen!
Come one, come all, put up a fight,
I'll pound your asses with Green Lantern's light!
Yowza.

Medphyll's Oath

In forest dark or glade beferned,
No blade of grass shall go unturned,
Let these who have the daylight spurned
Tread not where this green lamp has burned.

The Alpha Lanterns Oath

In days of peace, in nights of war,
Obey the laws forever more
Misconduct must be answered for,
Swear us the chosen: The Alpha Corps!

The Green Lanterns of Earth

While the title of Green Lantern is bestowed upon all full-fledged members of the Green Lantern Corps, there are several superheroes associated with Earth designated to serving as protectors of Space Sector 2814 that make a great impact within the DC Universe.

Alan Scott

Alan Scott was the original Green Lantern, and unlike the others his title had nothing to do with the Corps. His powers are derived from a magical artifact called the Starheart rather than the advanced technology that makes up the Power Ring. Alan originally came from a parallel version of Earth known as Earth-2 and is the father of Jade.

Hal Jordan

The first Green Lantern of DC's mainstream continuity and initially the first human of Earth to be apart of the Green Lantern Corps, Hal Jordan was given his power ring by the dying Lantern, Abin Sur when his spaceship crash-landed on Earth. He would be the first human Green Lantern of Space Sector 2814. His first appearance was in Showcase #22 in 1959. Hal stands alongside the greatest Green Lanterns in the DC Universe, as he's one of the few to have led out courageous duties that have put a great impact into saving the world. However, due to his rebellious doings and partnering up with other ring-bearers of various emotional spectrums, the Guardians of the Universe now believe he's one of the most dangerous of any Green Lantern. He has since been removed from the corps and is now wielding a green power ring created by Thaal Sinestro.

John Stewart

John Stewart, a former Marine sharpshooter was chosen to become the next Green Lantern of Earth after Hal Jordan gave up his position and Guy Gardner was injured. He is currently one of the Lanterns protecting Space Sector 2814 and a member of the Honor Guard in the Green Lantern Corps.

Guy Gardner

When Abin Sur's spaceship crash-landed on Earth his power ring logged Guy Gardner as a \"backup\" Green Lantern of Earth having been farther away from the crash site then Hal Jordan was. Guy is the more arrogant of the humans and became a full-fledged Green Lantern after John Stewart. Guy Gardner is now a part of the Honor Guard of the Green Lantern Corps.

Kyle Rayner

Kyle Rayner was selected by Ganthet to be the Green Lantern of Earth after Hal Jordan was infected by the fear entity called Parallax. He was once the last existing Green Lantern and the main factor into rebuilding both the Corps and Guardians of the Universe. For a short time he played the role of Ion, but has since became Honor Guard of the Green Lantern Corps. Kyle Rayner is commonly referred to as the Torchbearer of the Green Lantern Corps.

Simon Baz

Simon Baz is a current officer of sector 2814 and guardian of Hal Jordan's family.

Other Notable Lanterns

Weapons

Each member of the Green Lantern Corps is located by a green power ring for individuals that possesses strong willpower, whom can overcome great fear. The Green Power Ring is able to perform a number of abilities which can be found here: Green Power Ring.

Retconned

Radiation: Besides light-based radiation used to create the energy constructs associated with a Green Lantern, the ring can simulate various forms of radiation. One example of this is the ability to simulate the radiation of Green Kryptonite, a form of radiation that is harmful to Superman. However, this ability is no longer valid and has been retconned.

Time travel: The ring allows the wielder the ability to travel through time, though the process requires great willpower.

Weaknesses

Mental Incapacitation: The ring cannot be wielded correctly if the wearer is under the influence of drugs or if there is an involvement of neural interference.

Yellow Impurity: In the beginning the Green Ring was vulnerable to the color yellow. It was unable to defend against attacks from wielders of the Sinestro Corps as well. This weakness however has now be changed and can be overcome by veterans who have the ability to face the greatest of fear. Hal Jordan was of the first of the Green Lanterns to show that this weakness could be overpowered.

Recharge: The Ring previously had to be recharged every 24 hours or when it has been depleted of energy. This can be accomplished if the bearer of the ring recites an oath into his power lantern while holding the ring directly at the light. However, the power ring now only needs to be recharged when it runs out of energy. Sinestro stated to Hal that it was possible for a Green Lantern to store his/her battery in a Pocket Universe and take it with them wherever they went, but so far Hal has not displayed the ability to do this.

Red Lantern Corps. Bearers of the Red Power Ring have the ability to drain a Green Power Ring of its energy. The ring of a Blue Lantern, however has the ability to charge a Green Lantern Ring or negate this negative effect. Blue Lanterns rings also have the ability to purge the negative effects that a Red Lanterns Ring can cause upon the wielder of a Green Lantern Ring.

(Previous Weaknesses)

Ability to Kill: One of the main weaknesses of the Power Rings, that greatly disturbed Sinestro, was the fact that the bearers of the Green Lantern Ring were unable to kill. Recently however, this restriction on the rings has been lifted, but murder is still against the law of the GL Corps. This restriction was overthrown by the Guardians of the Universe during the Sinestro Corps War, in the time of desperation.

Related Articles

Other Media

In the animated movie called Batman: The Dark Knight we see three comic books or graphic novels on the newsstand that where DC Comics. They were Swamp Thing, V For Vendetta and Green Lantern in the background of the movie in a convenience store.

Green Lanterns where made in heroclixs and they made a movie set based on the film that did not do very well. All the Green Lanterns where made in the pack set with there powers and there cards in 2011 when the film was announced to theaters. The pack was made to support the film.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-144069/","id":144069,"name":"Hawkman: \"Sacrifice for Yum-Chac\"","issue_number":"2"},"id":41148,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/7441510-3272192291-latest","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/7441510-3272192291-latest","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/7441510-3272192291-latest","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/7441510-3272192291-latest","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/7441510-3272192291-latest","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/7441510-3272192291-latest","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/7441510-3272192291-latest","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/7441510-3272192291-latest","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/7441510-3272192291-latest","image_tags":"All Images,Green Lantern"},"name":"Green Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern/4015-41148/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-41411/","count_of_isssue_appearances":109,"date_added":"2008-06-06 11:27:52","date_last_updated":"2018-09-19 18:59:15","deck":"The Darkforce is a fictional concept in the Marvel universe. It is a source of energy for a number of super powered characters, derived from an alternate dimension known as The Darkforce Dimension.","description":"

Overview

Darkforce is an energy unique to the Marvel Multiverse. It constitutes the Darkforce Dimension and has the ability to assume the properties of both matter and energy depending on the needs of the user. It has been stated that Darkforce is a sentient property, often possessing or corrupting those who use it. Several characters in the Marvel universe have shown some ability to manipulate Darkforce, often with dramatically different results:

Use for Teleportation

Characters, such as the mutants Cloak and Vanisher, are believed to make use of the Darkforce dimension to permit them to teleport distances. Characters enter the Darkforce Dimension, either through portals or direct teleportation, then vacate the Darkforce Dimension into some other (or in some instances, the same) location in the world.

General Manipulation

  • The character Darkstar, perhaps the strongest wielder of the energy, possesses the ability to directly manipulate Darkforce, allowing her to create solid objects, fly, and teleport. She has also been able to disable Vanisher's control over the Darkforce Dimension, closing a portal around his body when he once tried to escape her - cutting him in half.
    Cloak can open a portal into the Darkforce Dimension. He also has the ability to teleport himself and others wrapped in his cloak, and to instill fear into those he envelops. He has often felt that the dimension wishes to corrupt him.
  • On the other hand, Black Mamba uses Darkforce to create illusions which distract her opponents, often tapping into their greatest desire.
  • Blackheart appears to live within the Darkforce Dimension, and as such has complete control over the energy.
    Other characters who can manipulate Darkforce include: Asylum, Blackout (Daniels), Quagmire, Doorman, Ecstasy, Nightside, Sepulchre, Shroud, Silhouette, Smuggler, Spot, Nightwind, Night and Mister Negative.
  • Darkstar II and III were able to manipulate the Darkforce in a way similar to the original; this was achieved through DNA grafts given to them by the Russian Government. Despite these grafts, Darkstar II was still unable to completely control the energy, which led to her death.
    It is sometimes thought that Nightcrawler uses the Darkforce Dimension to teleport, but recent developments have shown that he instead uses The Brimstone Dimension.
  • The Wolverine foe Romulus was trapped within the Darkforce Dimension, left there by Wolverine and Cloak after a final confrontation between Logan and his son Daken. He was soon freed by Sabretooth whom had soon turned up alive by wagering the life of Cloak's counterpart Dagger.

The Darkforce was introduced to the Marvel CInematic Universe along with Blackout in the first season of Agents of SHIELD. It will be more fully explored in season 2 of Agent Carter.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-17175/","id":17175,"name":"The Shadow From the Stars","issue_number":"11"},"id":41411,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2882694-thunderbolts__114___page_15c.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2882694-thunderbolts__114___page_15c.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2882694-thunderbolts__114___page_15c.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2882694-thunderbolts__114___page_15c.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2882694-thunderbolts__114___page_15c.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2882694-thunderbolts__114___page_15c.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2882694-thunderbolts__114___page_15c.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2882694-thunderbolts__114___page_15c.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2882694-thunderbolts__114___page_15c.jpg","image_tags":"All Images,Artwork,Earth-616 Sepulchre"},"name":"Darkforce","site_detail_url":"https://comicvine.gamespot.com/darkforce/4015-41411/","start_year":"1977"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-41622/","count_of_isssue_appearances":49,"date_added":"2008-06-06 11:27:52","date_last_updated":"2020-08-23 23:22:11","deck":"Kherubim technology is some of the most advanced technology in the Wildstorm Universe.","description":"

The Kherubim are a race of aliens from the planet Khera and have an understanding of science that has allowed them to invent amazing technology.

Technology on Khera

Because the technology comes from Khera, some of the greatest examples of what the Kherubim have created is there, but since the planet has only been in the comics for one arc, there aren't many. When the WildC.A.T.s visited the planet and couldn't speak the language, they were given patches that would allow them to instantly learn it. Language is encoded onto molecules on the patches so when they adhere to the skin, knowledge (of language in this case) can be transmitted through the blood to the brain. Locations all over Khera displayed creative uses for Kherubim technology. The WildC.A.T.s stayed at a place called Coincidental Mansion which demonstrated Kherubim technology capable of directly altering probability and chance for entertainment purposes. In the entire area in and around the mansion, bizarre and improbable happenings were more likely to take place thanks to a \"low probability field generator\". While the other WildC.A.T.s stayed at the Mansion, Zealot, as leader of the Coda, stayed somewhere else. The base for the Coda was built in a desert called the Bay of Numbers. In the Bay, the grains of sand continually shaped and reshaped themselves into ever-changing geometric forms. Perfect spheres, cubes and other, seemingly random shapes would form out of the sand, but the order and placement of them never repeated (and never would for all eternity). Though Coincidental Mansion and the Bay of Numbers were just for decoration and entertainment, there are other Kherubim creations that serve more practical purposes. The most noticeble piece of Kherubim technology are the Spartan Guards. The Spartans are fully sentient robots that are built as personal bodyguards as well as a police force. Each Spartan has a \"brain\" more powerful than any other computer (on Earth or otherwise), is programmed to be able to use any technology it comes across, is equipped with powerful lasers, is skilled in armed and unarmed combat and has superhuman levels of strength, speed and durability. Spartan, one of these androids, is a permanent member of the WildC.A.T.s and also shows up in several other comics. In the Majestic one-shot: Wildstorm Spotlight: Majestic, he gets so advanced that he becomes a god, a powerful example of the limits (or lack thereof) of Kherubim technology. Of all the Kherubim creations though, the Kheran Dream Engine may be the best. It can warp reality to make thoughts and dreams real.

Space Travel

The Kherubim have ships built (or more accurately \"grown\") for interstellar flight and in some cases, faster than light travel. These ships (and the other battle ships) are outfitted with some of Khera's best weaponry and are so massive, they could be considered small cities. Even with the speeds the ships can reach, travel can still take a long time depending on the destination or purpose of the trip so stasis pods are on the ships to allow the crew to store their bodies safely during travel. While in stasis, the mind of a sleeping Kherubim is stored in a crystal should anything happen to them. Upon reaching their destination, the mind is returned to the brain and body it came from. If something should happen to the body during flight, the crystal can be stored until a new body can be made for the mind to be put into. (This was actually what happened with Majestrate.) Kheran ships have a unique control system that is operated by vocalizations. Kherans sing to their ships to get them to do what they want and the Kheran vocal range is different enough from other species (at least human and Daemonite) that they can't be piloted by non-kherans without extensive modification.

Weapons

Though the Kherubim have awesome technology and a myriad of machines that can do their fighting for them, most choose to fight for themselves and use bladed weapons to do so. Just because the weapons are not as complex as guns and lasers though, doesn't mean they aren't as effecient as other Kherubim tools. Blades made by Kherubim technology (called Kusar Blades) are capable of cutting anything, even beings of Superman/Mr. Majestic level durability. Sentient swords have been created that can deliver energy blasts as they strike (if the sword deems it necessary) as well as perform other tasks in the hands of a skilled swordsman. A sword like this is not common though, and only the highest ranking and most deserving are given weapons like this. Majestic owns another special blade that hasn't been seen before. It is a large sword capable of changing its shape (even changing from a blade to a completely different weapon like a spiked ball and chain) and also releasing energy blasts and electrical charges. The fluid way that the sword changes shapes suggests that it might have been created through study of the Shaper's Guild. There are also special weapons for stealth combat. Quantum-Folded Combat Blades are invisible and can be shrunk to the size of a cell phone and enlarged for combat. Skintight Nanoflage suits make the wearer invisible to all forms of surveillance and High-Dose Damper Capsules are pills that remove the powers of whoever ingests them so their energy signature is also undetectable.All this is not to say that Kherubim don't have other, more complex weapons. The Kherubim have energy weapons, forcefield technology, genetic bombs and weapons created for large-scale warfare and world take-overs, it's just that they are rarely needed since the Kherubim themselves are war machines. One weapon that Kherubim possess is the Low-Grav Wallcrawler. It most resembles a normal Earth tank (with more cannons) but it can transform into an even bigger machine almost capable of going head to head with a Spartan Guard. These machines appear to be semi-sentient, able to be piloted or left to act on their own. The Kherubim also have bio-chemical weapons, one of which is the Haikyatu Armory. According to Emp it has two stages. The first is a bacteria bomb that destroys the nerve centers of all forms of life while keeping the bodies intact. The second stage reanimates and controls the bodies, creating an army of undead. Of course there are also the lasers and mega-bombs that most advanced races seem to have, but the Kherubim try not to totally destroy their enemies when they fight in case something can be gained from keeping them alive.

Planet-Shapers

Planet-Shapers are massive machines used for the colonization of new planets and the spread of Kherubim. The first Kherubim created Planet-Shapers, terraforming machines that could be sent to suitable planets and through a long process, would rebuild the Kherubim race there. The Planet-Shapers would land on a still-forming planet and stay dormant beneath the mantle until sentient life evolved on the planet. At this point, the Planet-Shaper would release Kherubim (made inside the machine from \"pure Kherubim gene-stock\" it carried) and the natural sentient race of the planet would be made into a servitor race. To ensure that the new Kherubim flourished, the Planet-Shapers would restructure climate and geographic conditions to best suit the Kherubim. Also, giant robots would come from the Planet-Shapers and kill most of the servitor race, thinning down their numbers so they would never pose a threat to the new Kherubim.

Kherubim Technology on Earth

The Kherubim have been on Earth for thousands of years and as a result, a lot of their technology has mixed with human technology. In the Majestic series, Desmond, a child genius, reverse-engineered a lot of Kherubim technology for personal use. He made suits that let him act like a superhero and rebuilt his legs so he could walk (he had been paralyzed from the waist down). After he gave up being a superhero he started to use the Kherubim technology for commercial profit. He started a company and created the Quickthink 4-Tell, a phone with instant messaging, video and holo-still, internet access, mp3, voice actuation, 4-D surround playback, simulcast conference capabilities and more for less than 100 dollars. He became a millionaire and he wasn't the only one. Spartan, a member of the WildC.A.T.s, used a mixture of Kherubim technology and Otherspace energy to in his own corporation. They sold batteries that lasted forever, cars that didn't need gas (and lasted forever) and computers that would never need to be upgraded or even plugged in. Other companies also used bits and pieces of Kherubim technology (though they didn't know it) and soon enough Earth was covered in \"xenotechnology\". In Wildcats v4, the latest volume, Spartan has begun to sell Spartan Guards as household tools and the world is eating them up.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159074/","id":159074,"name":"Dark Blade Falling","issue_number":"1"},"id":41622,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/88318-93613-kherubim-technology.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/88318-93613-kherubim-technology.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/88318-93613-kherubim-technology.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/88318-93613-kherubim-technology.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/88318-93613-kherubim-technology.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/88318-93613-kherubim-technology.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/88318-93613-kherubim-technology.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/88318-93613-kherubim-technology.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/88318-93613-kherubim-technology.jpg","image_tags":"All Images,Spartan Guards"},"name":"Kherubim Technology","site_detail_url":"https://comicvine.gamespot.com/kherubim-technology/4015-41622/","start_year":"1994"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-41709/","count_of_isssue_appearances":117,"date_added":"2008-06-06 11:27:52","date_last_updated":"2015-08-16 17:04:44","deck":"The Fastball Special is a maneuver in which Colossus launches Wolverine at an enemy, claws-first.","description":"

Overview

\"A
A traditional Fastball Special

The Fastball Special was perfected and is most commonly used by Colossus and Wolverine of the X-Men. It involves Colossus hurling his teammate at a foe. The attack allows Wolverine to reach speeds much faster than he ever could on his own, causing him to do much more damage. It also allows him get to areas that he couldn't before, such as extreme heights or distances. In the move, Colossus holds Wolverine in his hands and throws him with as much force as he can muster. Sometimes the throw is like a javelin and other times it looks like a baseball pitch, but the result is the same. The size difference between the two heroes involved makes this move easier than when it is tried with others. Colossus is very big so a small Wolverine fits right in his hand.

Though Colossus and Wolverine are known for the maneuver, it can work with almost any duo physically capable. Usually a being with super strength throws a smaller person for a direct assault, or a flying hero uses the momentum to throw another person. Most times when it is done without both Colossus and Wolverine, Colossus is the one missing.

While the maneuver was first dubbed the 'fastball special' by the X-Men, it's worth noting that Wolverine and Colossus were not the first to use the tactic. Currently, the earliest known appearance of this coordinated attack was in the December 1964 issue of The Amazing Spider-Man, where Ox throws Fancy Dan at Spider-Man who is perched out of striking distance on the ceiling.

\"No

Some variations of the attack include:

The Fastball Special has even made its way to video games. In X-men Legends and X-men Legends II: The Rise of Apocalypse, as well as Marvel: Ultimate Alliance, any playable character with super strength is able to pick up Wolverine and throw him towards an opponent.

Wolverine to She-Hulk: \"First rule about 'Fastball Special', you don't talk about 'Fastball Special'\"

Fastball Maneuver done by Other Publishers

\"No
\"Whoosh!\"
Whoosh!

In a chapter of Bleach, characters Rukia Kuchiki and Yasutora Sado performed a Fastball Special to defeat a Hollow.

Image Comics used the Fastball Special in Strykeforce: Black Anvil throwing Killrazor

Funk-O-Tron used the Fastball Special for Kirkman's Battle Pope: Mark throws Battle Pope at the Zombie Twins.

\"Dom
Dom using Tronk in a Fastball Special on Krypto and Streaky

In an issue of Krypto the Superdog, Krypto ad Streaky had to fight 3 dogs of Zod. One of which was Dom, who wanted to throw something at Krypto and his partner, Tronk, was the closest thing to him.

In the series Frankenstein Agent of S.H.A.D.E., Vincent Velcro hurls Warren Griffith at an enemy from mid-flight. The two call this a \"Furball Special.\"

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7481/","id":7481,"name":"Spidey Strikes Back!","issue_number":"19"},"id":41709,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/33913/919765-126_wolverine__first_class_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/33913/919765-126_wolverine__first_class_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/33913/919765-126_wolverine__first_class_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/33913/919765-126_wolverine__first_class_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/33913/919765-126_wolverine__first_class_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/33913/919765-126_wolverine__first_class_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/33913/919765-126_wolverine__first_class_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/33913/919765-126_wolverine__first_class_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/33913/919765-126_wolverine__first_class_.jpg","image_tags":"All Images,Art,colossus,Earth-616 Colossus,Earth-616 Wolverine,Fastball Specials,Marvel Solicitations"},"name":"Fastball Special","site_detail_url":"https://comicvine.gamespot.com/fastball-special/4015-41709/","start_year":"1964"},{"aliases":"Speed Field\r\nSpeed Heaven","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42071/","count_of_isssue_appearances":476,"date_added":"2008-06-06 11:27:52","date_last_updated":"2021-11-20 23:23:05","deck":"The Speed Force is an extradimensional energy source in the DC Universe that lets speedsters travel at otherwise impossible speeds as well as do other nifty tricks without being hindered by physics. In the Post-Flashpoint continuity, the Speed Force is the very cosmic force that pushes time forward.","description":"

Origin

\"Some
Some Speed Force Users

The Speed Force has alternatively been described as the source of all speed, as a force generated by Barry Allen, as a godlike pseudo-intelligence, and as a sort of location or dimension that exists on another plane of reality. Regardless, it is the power source for the Flash.

All DC characters who are called \"speedsters\" are connected to the Speed Force regardless of the origin of their powers; it is said that when they die, speedsters become one with the Speed Force, something of a Valhalla for speedsters. That said, not every DC super-humans that can travel at high velocities is connected to the Speed Force, only the ones whose primary power is superhuman speed. For example, Superman, though he is very fast, has no connection to the Speed Force. The same holds true for the Green Lanterns, who can traverse the galaxy at incredible speeds. Additionally, characters who are explicitly stated to be mimicking super-speed without being speedsters themselves, such as Hunter Zolomon, who uses time manipulation to operate as the villain Zoom, are not connected to the Speed Force.

Max Mercury believed that it is Barry Allen himself who generates the Speed Force with every step that he runs. However, it was revealed that the Speed Force has always existed, and it's continual action of pushing the Multiverse forward builds up pressure between the barrier of time and space. As such, the Speed Force chooses conduits, like Barry, to act as \"release valves.\" As a speedster runs, they relieve the pressure being built up and prevent hazardous rips in space time from occurring.

\"The
The Speed Force

During the Infinite Crisis event, Wally West, Jay Garrick, and Bart Allen grabbed Superboy Prime and tried running him into the Speed Force. When Jay Garrick had to stop and Wally West disappeared, Bart Allen knew he could not push the villain into the Speed Force alone; Barry Allen, Max Mercury, and Jesse Quick then grabbed Superboy Prime and pulled him in. This revealed that they live on in the Speed Force.

The Speed Force is usually depicted as lightning and blurs of yellow and red. This is because the Speed Force is used mostly by Flashes throughout DC history and these are their symbols and colors.

Characters associated with the Speed Force

  • Barry Allen, The second Flash and first to actively (and unconsciously) channel the Speed Force. After Bart returned to Earth so that he could absorb the Speed Force, Barry gave his grandson his costume, choosing to remain within the Force. Professor Zoom, however, sensed his old enemy's return and sent a subliminal pulse into the Speed Force to reawaken Barry's self awareness and bring him back to the physical world so he could engineer his revenge.
  • The first Flash Jay Garrick, originally couldn't even run at the speed of sound until he met Barry Allen and began to tap into the Speed Force. He could then run 20 times as fast. Despite this he was unable to keep up with the many speedsters when they entered the Speed Force to entrap Superboy-Prime and when Bart returned and absorbed the Speed Force, Jay's powers began to swiftly diminish. Eventually however, when Bart apparently met his demise, Jay's powers have returned to their full strength.
  • Wally West, the third Flash, his powers were connected to the Speed Force, a dimension he chose to live in during Infinite Crisis. He turned into a being of pure speed energy and came to his wife, Linda Park West who grabbed onto him and so they and their children, Jai West and Iris West vanished into the Speed Force. There they remained for many years, so that the twins could age without any pressure on their lives from Wally's superhero life.
  • The second Kid Flash and fourth Flash, Bart Allen's powers came from the Speed Force, and at one time he wished to lose this connection, fearing the Speed Force. This was because during Infinite Crisis he was brought into the Speed Force where he aged four years and returned, only to absorb the Speed Force into himself, claiming it was gone. Recently he has been de-aged and become Kid Flash again.
  • Johnny Quick, to save his daughter's life, ran into the Speed Force, and merged with it. He somehow tapped into the Speed Force by visualizing a mathematical formula in his mind and saying it out loud.
  • Jesse Chambers, known as Liberty Belle, inherited her connection to the Speed Force from her father and his speed formula but has flip-flopped between using it or powers inherited from her mother. She has also gone by the name Jesse Quick.
  • Max Mercury, The 'Zen Master of the Speed Force' is a speedster from the past who jumped several times into the future until he arrived in the present. He was guardian to Bart Allen who had arrived from the future and understands the Speed Force probably better than anyone else. He could converse with spirits of those trapped in the Speed Force through meditation and ended up trapped there until Barry Allen brought him back.
  • Reverse-Flash, Eobard Thawne, was sucked into the Speed Force and there he went insane after remaining there for 50 years. When he returned he wreaked havoc and eventually became a being of pure speed energy who has possessed the body of Max Mercury, thus condemning Max to the Speed Force.
  • Savitar developed powers from the Speed Force other speedsters had not, creating a cult based around himself. He murdered people in order to gain speed until Wally West forced him into the Speed Force. Shortly after Barry Allen returned from the Speed Force, Savitar used Barry as a doorway to engineer his own escape; however, Barry's touch caused Savitar to be consumed by the Negative Speed Force that Professor Zoom had infected Barry with.
  • Impulse, Iris West is the daughter of Wally West and Linda Park West. At first she and her twin brother Jai West shared a connection to the Speed Force and them fighting over it caused them to manifest unconventional powers for speedsters. During Flash: Rebirth she severed Jai's connection to the Speed Force and gained the full connection gaining traditional super speed and choosing to call herself Impulse. She is possibly Bart Allen's biggest fan.
  • XS, a descendant of Barry Allen and cousin to Bart Allen, is a superhero in the 31st century. She too is connected to the Speed Force.
  • The Black Flash is a Grim Reaper of sorts for speedsters. When near death, all speedsters connected to the Speed Force must face the Black Flash and unless they are able to outrun him they die. When Barry Allen was infected with the Negative Speed Force Wally West called him the new Black Flash.

The Negative Speed Force

\"Eobard
Eobard Thawne - Generator of the Negative Speed Force

Recently, in Flash: Rebirth, it was revealed that Professor Zoom created a 'Negative Speed Force' that eats away at the regular Speed Force like a cancer and can consume any speedster connected to it by touch. Professor Zoom himself is the engine that generates this Negative Speed Force with every step that he runs. He used it to infect Barry Allen in the hopes that the Negative Speed Force would consume Barry's loved ones and other speedsters who rely on it, consuming Barry in grief so that he'd merge with the Speed Force. Professor Zoom is currently being kept immobile in Iron Heights Penitentiary to prevent him from generating the Negative Speed Force. However, Hunter Zolomon (the most recent Zoom) is kept in the next cell, and believes working together they can be even more powerful, which may be bad news for both Central and Keystone Cities.

Powers

\"Barry
Barry Using The Speed Force To Trap Superboy Prime

The Speed Force serves as the primary measure of velocity in the DC Universe. It is usually referred to in terms of different barriers: The Sound barrier, Light barrier, Time Barrier, Dimensional Barrier, and finally the Speed Force Barrier. It introduced several \"new\" powers to Flash and other Speed Force-powered persons. Some of these powers had previously existed during the DC Silver Age, but were later explained as manifestations of the Speed Force.

The Speed Force can be used to various effect including time travel, faster-than-light travel, speed duplicates, constructs using Speed Force energy, faster healing and speed stealing or lending. It also provides speedsters the ability to function at unnatural speeds without the laws of physics stopping them. Those within the Speed Force are protected from heat or bearing the brunt of impacts at any speed they travel. It also lets them breathe, receive stimuli (sight, hearing, etc.), and avoid completely destroying themselves and the world around them as they move. It can even be used to hold enemies indefinitely.

Here is a list of abilities granted by the Speed Force:

Superhuman Speed - Speed Force users can move at incredible superhuman speeds, sometimes surpassing even the speed of light.

Superhuman Reflexes -Speed Force enhances the users reflexes to inhuman levels, allowing them to easily react to danger and perceive time in slow motion.

Superhuman Agility - Speed Force users posses greater balance, equilibrium, and bodily coordination than any normal human.

Superhuman Stamina - Speed Force users possess near limitless levels of stamina.

Infinite Mass Punch - When The Flash begins traveling near light speed he gains the relative mass of such a great speed allowing him to strike with blows with the force of \"a white dwarf star.

Speed Lend/Steal - His most useful new power, Wally West could \"rob\" objects of their kinetic energy and, for example, stop bullets in flight or convert a supervillain to a statue and use the \"stolen\" kinetic energy to accelerate his movement. He could similarly lend his speed to objects or allies, enabling them to temporarily travel almost as fast as himself.

Regenerative Healing Factor - Using the Speed Force to accelerate his healing factor, Wally West could heal from deadly injuries, without aging. While he was in the Justice League Of America, Wally could use this power to heal his other team members by accelerating their healing factors without aging them. Most speedsters can quickly regenerate from injuries.

Speed Force Aura: Speed Force users are surrounded by an aura of kinetic absorbent energy, allowing them to be unaffected by the effects of moving at super-speed, such as friction, g force, and kinetic impact.

  • Superhuman Durability - Because of their resistance to kinetic impacts, Speed Force users are far more durable and resistant to injury than any normal human.

Speed Force Lightning - All speedsters generate electrical Speed Force energy from their bodies. This electricity varies in color, but is usually depicted as yellow. Some speedsters have used this energy to their advantage, such as when Bart Allen charged his hand with it, to shock Jay Garrick back to life. Some speedsters can also forcefully discharge a large blast of electricity from their body.

  • Lightning Bolt Projection - Some speedsters, such as Barry Allen, have learned to manipulate their Speed Force lightning in the way that they could manually project it from their hands as bolts of lightning.

Energy Constructs - Wally West made the discovery that if he concentrated he could create solid energy constructs using the Speed Force. He has used this ability to protect against disease, create pockets for holding items, and to compose a bullet-proof costume.

Shield - Exhibited by Savitar, whose Speed Force mastery allows him to reflect objects away from himself.

Flight - Exhibited by Johnny Quick and his daughter Jesse Quick.

ESP - Used by Max Mercury, whose strong connection with the Speed Force allows him to detect the motion of any object around the world and also to perceive other speedsters. Wally West also exhibited this ability to perceive Linda across time and space.

Total Recall - Bart Allen as the Flash used this ability to remember everything he reads using his super-speed. He is the only speedster to show this ability.

Speed Scouts - The only speedster to use this ability, Bart Allen can create duplicates of himself using the Speed Force that, using the Speed Force's timeless nature, can travel forwards and backwards through time, manipulating objects or merging their consciousness with Bart's, informing him of their actions. Once, when a Speed Scout was killed, Bart fell into a coma and has never used this ability since.

Vortex Creation - By rapidly rotating their arms, or running in circles, speedsters can create strong vortexes of wind on various levels.

Dimensional Travel -Speedsters can break the dimensional barrier with their speed, and travel throughout parallel dimensions.

Time-Travel - Speedsters can break the time barrier with their speed, and travel throughout time.

Time Manipulation - Some Speed Force users in the New 52, like Barry Allen and Eobard Thawne are able to manipulate the flow of time. Thawne was able to slow down time to give the illusion he is moving at super-speed, while Barry can speed up the flow of time, which he did to negate Thawne's power.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-128057/","id":128057,"name":"A Mask For a Hero! / The Evil King of the Sea! / Joanie Swift, Queen of Speed! / The Crime Platoon!","issue_number":"181"},"id":42071,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11275/283130-21955-speed-force.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11275/283130-21955-speed-force.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11275/283130-21955-speed-force.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11275/283130-21955-speed-force.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11275/283130-21955-speed-force.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11275/283130-21955-speed-force.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11275/283130-21955-speed-force.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11275/283130-21955-speed-force.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11275/283130-21955-speed-force.jpg","image_tags":"All Images,Comics"},"name":"Speed Force","site_detail_url":"https://comicvine.gamespot.com/speed-force/4015-42071/","start_year":"1952"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42077/","count_of_isssue_appearances":517,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-10-15 00:05:03","deck":"A class of subatomic particles first discovered by Hank Pym. When used properly they allow a person or object to change size.","description":"

Laboratory Refinement

\"No

Pym Particles—so named after their discoverer, Hank Pym—first existed in an elixir form that could be splashed on the object to alter its properties. Most notably, Pym Particles can affect an object's size, enlarging or shrinking it. However, it was later established by Scott Lang that they also affect the strength and durability of an object as well.

Eventually this elixir was made into a gas so if could be quickly aspirated for easier transportation. After accidentally transforming into Giant-Man, Pym further refined the chemical into a variety of color-coded pills. The particles still proved unstable as they trapped Pym at a height of 12 feet. Pym Particles work by the user either shunting mass to the \"Kosmos Dimension\" (for shrinking) or taking mass (for growing).

After repeated exposure to an unknown amount of Pym Particles, users can change size without having to take any more Pym Particles to trigger the change. Examples of this are Hank Pym, Janet van Dyne, and Cassie Lang. Simon Williams, who was given energy powers by Baron Zemo using Pym Particle-charged ions, was also permanently altered by these treatments along the strength and durability axes, but could not alter his size until directly treated with Pym Particles. Most uniforms for users of Pym Particles are treated with the particles so that they grow and shrink as the users do.

Users of Pym Particles

Users of Pym Particles include:

Side effects of Pym Particles

Some users of Pym Particles have had some side effects as a result of using them too much. The most notable is Hank Pym. Hank had several mental breakdowns, potentially from the strain of using Pym Particles, causing him to react differently from how he normally does. During one such breakdown he developed a new hyper-masculine heroic persona named Yellowjacket, who he felt would be more worthy of marriage to Van Dyne.

Another potential side effect is being stuck in an altered state. Pym was once unable to shrink down from his giant form for an extended duration otherwise the strain on his body would kill him.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-5718/","id":5718,"name":"The Man In The Ant Hill!","issue_number":"27"},"id":42077,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/6099252-0cd4749d-bd01-4a59-96f6-fdb5f6a05b8c.jpeg","image_tags":"All Images"},"name":"Pym Particles","site_detail_url":"https://comicvine.gamespot.com/pym-particles/4015-42077/","start_year":"1962"},{"aliases":"MGH","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42280/","count_of_isssue_appearances":55,"date_added":"2008-06-06 11:27:52","date_last_updated":"2018-04-29 13:46:29","deck":"Mutant Growth Hormone (MGH) is a drug created from the genetic material of superhumans. MGH temporarily grants powers to humans, or enhances the power of superhumans or mutants.","description":"

Brief Discription

In the case of a non-powered human, effects of MGH are closely associated with the super being that the particular batch of drug were made from, so powers experienced may be linked to the powers of the original individual. Generally use of MGH by someone without powers will grant the user super-human strength, enhanced durability, and aggression indicating that a superhuman exhibiting super strength may be the source of much of the MGH in circulation. Mutants, or other superhumans will find that use of MGH enhances and otherwise augments their current power set. One such example is the Stanford event leading up to the Civil War, where Nitro's powers were enhanced from his normal, lesser ability to create explosions around himself, to blowing up most of the Stanford community.

MGH is not to be confused with the mutant enhancing drug Kick, which is based off of Hypercortisone-D and the Sublime bacteria.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105780/","id":105780,"name":"The Underneath: Part 4","issue_number":"19"},"id":42280,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34986/1387430-atom_symbol.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34986/1387430-atom_symbol.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34986/1387430-atom_symbol.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34986/1387430-atom_symbol.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34986/1387430-atom_symbol.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34986/1387430-atom_symbol.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34986/1387430-atom_symbol.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34986/1387430-atom_symbol.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34986/1387430-atom_symbol.jpg","image_tags":"All Images"},"name":"Mutant Growth Hormone","site_detail_url":"https://comicvine.gamespot.com/mutant-growth-hormone/4015-42280/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42281/","count_of_isssue_appearances":114,"date_added":"2008-06-06 11:27:52","date_last_updated":"2016-08-03 15:39:46","deck":"The legacy virus was a biological weapon engineered and released by the madman Stryfe for the purpose of killing all mutants. The plague lasted for years and killed many mutants and a few humans.","description":"

History

The Legacy Virus was derived by Stryfe, from a virus originally created by Apocalypse. Mr. Sinister was tricked into releasing it at the conclusion of the X-Cutioner's Song.

Cure

On opposite sides of the Atlantic, Dr. Moira MacTaggert, and Beast raced to find a cure for the deadly mutant plague. Before she was able to finish a cure, MacTaggert succumbed to a mutated strain. Beast, however was able to combine their work and reverse engineer a strain of the virus that would essentially eradicate all other strains. Once this harmless version was airborne, the cure would spread around the world in a matter of days. Unfortunately, the virus only becomes airborne upon the death of an infected mutant. Therefore, Beast's cure would require one mutant to sacrifice his life to release the cure. Believing this to be too high a price to pay, Beast abandoned the cure and returned to the drawing board. Colossus, however, never stopped mourning for his sister, Illyana Rasputin, who was among the first victims of the Legacy outbreak. Not wanting the plague to claim any more lives, Colossus snuck into Beast's lab and infected himself with the retro-virus, curing the world at the cost of his own life.

The New Strain

\"X-23
X-23 infected with the new strain

Recently, The Vanisher was hired by an unknown man to steal the Legacy Virus. He failed. Wolverine's team' X-Force, went to Mr Sinister's old lab to find and destroy the virus. In a battle with Cameron Hodge's group, The Right, X-23 was injected with the sample of The Legacy Virus. Elixir was able to \"burn\" it out of her system saying that it isn't the original, but it's worse in some ways. So far, Elixir is the only known cure for the new strain. The new strain now causes mutant abilities to flare out of control burning out the mutant host's body. The remaining Purifiers have been using this new strain to turn mutants in living bombs, detonating them in well populated areas so that the power flare kills the surrounding humans. Beautiful Dreamer was the first, Then Fever Pitch was used. Surge and Hellion were also to become bombs, but were saved through the efforts of X-Force.

Mutant Casualties

Mutant Survivors

Human Casualties

Symptoms

Symptoms include purple lesions, coughing, fever, sweats, swollen glands, cardiac arrest, and uncontrolled mutant abilities.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36286/","id":36286,"name":"The Last Morlock Story","issue_number":"293"},"id":42281,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/566534-0002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/566534-0002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/566534-0002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/566534-0002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/566534-0002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/566534-0002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/566534-0002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/566534-0002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/566534-0002.jpg","image_tags":"All Images,Earth-616 Vanisher,Gallery"},"name":"Legacy Virus","site_detail_url":"https://comicvine.gamespot.com/legacy-virus/4015-42281/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42287/","count_of_isssue_appearances":57,"date_added":"2008-06-06 11:27:52","date_last_updated":"2022-03-11 19:12:16","deck":"The process of being exposed to the Terrigen Mists which is considered to be a rite of passage for the Inhumans, and is central to their culture.","description":"

History and Culture

Tuk the caveboy was the first offispring of Inhumans, living in 50000 BC.

Terrigenesis was discovered about 25,000 years ago by the Inhuman geneticist Randac. Upon discovery of the Terrigen Crystals which produce the mists, Randac exposed himself to the vapors they created giving him immense psychic abilities. Randac wanted exposure to the Mists to be mandatory in Inhuman culture. The results were often disastrous. Many mutated into deformed monsters. Others mutated into an to an offshoot race of the Inhumans, the Alpha Primitives. Alpha Primitives are mules of Inhuman society: sterile, stupid, and barely functional other than the menial tasks of keeping the machinery that runs the Inhuman city of Attilan running smoothly. Because of the problems with Terrigenesis, the Genetic Council was charged with the task of managing Terrigenesis to ensure that Inhumans are genetically compatible with the process before exposure.

Terrigenesis creates seemingly random mutations in those exposed, unlocking their genetic potential. Each Inhuman responds to the process differently and varies in both appearance and powers gained. Terrigenesis has become such a key aspect of Inhuman culture that it is considered sacred. Much of the Inhuman religion and culture is centered around Terrigenesis. It is considered a rite of passage for Inhuman children. Upon reaching a certain age, children are put into classes where they are paired up with other children of the same age to learn about Inhuman society, religious tradition, and culture. Graduation is in the form of the Terrigenesis, and is an important moment for both the individual and the entire family. Mutations that are key to Inhuman society may be a cause for celebration for the entire race.

Exposure

The process of Terrigenesis can be extremely dangerous despite rigorous control on the part of the Genetic Council. Mutations very greatly in function and level of power. Mutations vary in every way imaginable including energy forms, psychic mutations, plant and animal control, sonic control, healing, death, strength, blast powers, flying, elemental manipulation, mutation enhancement, and much much more. Some of the least powerful Inhumans can do little more than change skin pigment. Some of the more powerful can level mountains, kill with a gaze, or more.

The unlocking of genetic potential that occurs in Inhumans during Terrigenesis seems to be random in nature, based on the genetic code of the individual alone. It has been revealed that through Terrigenesis Inhumans fulfill a greater destiny through Terrigenesis. When viewed from a higher level, it is evident that Terrigenesis is not only to enhance the individual, but to adapt for the benefit of society in preparation of the future. When an Inhuman with a mutation that is key to Inhuman society dies a replacement mutation occurs within a matter of three years. Times of strife or conflict, or times of great climate change will facilitate mutations appropriate to the circumstances.

Compatibility

Exposure by those who are not genetically compatible with Terrigenesis can be dangerous for those involved. Disastrous mutations can occur and in some rare instances exposure can cause one to cease to exist (even if genetically compatible). Exposure by humans results in Inhuman-like mutations, but the powers and abilities gained as well as the test subject do not last long. The body rapidly begins to burn out and deteriorate. This begins with rapid onset of some of the features of old age, and in later stages will leave little more than a corpse-like husk. Death is imminent.

Exposure to human Mutant can result in the further development of their powers, but at a high price. After M-Day several de-powered mutants were exposed to the Terrigen Mists, resulting in the re-gaining of their mutant abilities at a level which they had never experienced before. Some of the enhanced mutations recorded in mutants (or former mutants) are:

  • Unus regained his force field, but was suffocated by it as it no longer let oxygen through.
  • Freakshow regained his shape-shifting abilities, but was stuck in the form of a giant disfigured monster with no way to communicate.
  • Callisto's senses were heightened to the point where she was put in a coma from the sensation of raindrops on her skin.
  • Quicksilver regained the ability to speed up his body to the point where he could jump from one time to another.
  • Wicked regained her ability to summon the spirits of the dead, but could no longer control them. These spirits began to torment her.

Secondary exposure of Inhumans is also extremely dangerous, and leads to further mutation. Gorgon was exposed to the mists a second time by the United States government when they captured the Terrigen Crystals causing him to mutate into a large beast. The effect on his powers have yet to be seen.

Related Topics

In Other Media

Television

Agents of S.H.I.E.L.D.

\"Skye
Skye becoming encased in a Terregenesis cocoon

In the second season of Agents of S.H.I.E.L.D., both S.H.I.E.L.D. and HYDRA vie for control of a mysterious Kree obelisk known as the Diviner. In the mid-season finale, the Diviner is revealed to contain Terrigen Crystals, and causes Skye and Raina to undergo Terrigenesis after revealing that they possess Inhuman genes.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-14267/","id":14267,"name":"\"Man-Brute in the Hidden Land!\"","issue_number":"175"},"id":42287,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/6099273-1c3c4712-68a8-44ac-920f-fc3b29ce3a3c.jpeg","image_tags":"All Images"},"name":"Terrigenesis","site_detail_url":"https://comicvine.gamespot.com/terrigenesis/4015-42287/","start_year":"1974"},{"aliases":"CCA","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42382/","count_of_isssue_appearances":1391,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-04-30 05:51:40","deck":"Created in 1954 amidst controversy subsequent to the publication of Dr. Fredric Wertham's book \"Seduction of the Innocent\", publishers established the code to curb potential governmental regulation. The fall of the Code is most often attributed to Alan Moore and his work on the Swamp Thing in the 80's.","description":"

Overview

The Comics Code Authority was established in 1954 by the Comics Magazine Association of America in response to a growing concern by parents that comic books were the cause of juvenile delinquency. It was created as an alternative to government regulations, allowing the industry to police itself.

In the early 2000s, Marvel Comics abandoned the Code, deciding to creature its own rating system. The Comics Code Authority was officially rendered defunct in January 2011, when both DC Comics and Archie Comics stopped using the code.

Rules and Guidelines

Rules of the CCA

Source: Senate Committee on the Judiciary, Comic Books and Juvenile Delinquency, Interim Report, 1955 (Washington, D.C.: United States Government Printing Office, 1955).

\"General standards—Part A

  1. Crimes shall never be presented in such a way as to create sympathy for the criminal, to promote distrust of the forces of law and justice, or to inspire others with a desire to imitate criminals.
  2. No comics shall explicitly present the unique details and methods of a crime.
  3. Policemen, judges, Government officials and respected institutions shall never be presented in such a way as to create disrespect for established authority.
  4. If crime is depicted it shall be as a sordid and unpleasant activity.
  5. Criminals shall not be presented so as to be rendered glamorous or to occupy a position which creates a desire for emulation.
  6. In every instance good shall triumph over evil and the criminal punished for his misdeeds.
  7. Scenes of excessive violence shall be prohibited. Scenes of brutal torture, excessive and unnecessary knife and gunplay, physical agony, gory and gruesome crime shall be eliminated.
  8. No unique or unusual methods of concealing weapons shall be shown.
  9. Instances of law-enforcement officers dying as a result of a criminal’s activities should be discouraged.
  10. The crime of kidnapping shall never be portrayed in any detail, nor shall any profit accrue to the abductor or kidnaper. The criminal or the kidnaper must be punished in every case.
  11. The letters of the word “crime” on a comics-magazine cover shall never be appreciably greater in dimension than the other words contained in the title. The word “crime” shall never appear alone on a cover.
  12. Restraint in the use of the word “crime” in titles or subtitles shall be exercised.

General standards—Part B

  1. No comic magazine shall use the word horror or terror in its title.
  2. All scenes of horror, excessive bloodshed, gory or gruesome crimes, depravity, lust, sadism, masochism shall not be permitted.
  3. All lurid, unsavory, gruesome illustrations shall be eliminated.
  4. Inclusion of stories dealing with evil shall be used or shall be published only where the intent is to illustrate a moral issue and in no case shall evil be presented alluringly, nor so as to injure the sensibilities of the reader.
  5. Scenes dealing with, or instruments associated with walking dead, torture, vampires and vampirism, ghouls, cannibalism, and werewolfism are prohibited.

General standards—Part C

All elements or techniques not specifically mentioned herein, but which are contrary to the spirit and intent of the code, and are considered violations of good taste or decency, shall be prohibited.

Dialogue

  1. Profanity, obscenity, smut, vulgarity, or words or symbols which have acquired undesirable meanings are forbidden.
  2. Special precautions to avoid references to physical afflictions or deformities shall be taken.
  3. Although slang and colloquialisms are acceptable, excessive use should be discouraged and, wherever possible, good grammar shall be employed.

Religion

  1. Ridicule or attack on any religious or racial group is never permissible.

Costume

  1. Nudity in any form is prohibited, as is indecent or undue exposure.
  2. Suggestive and salacious illustration or suggestive posture is unacceptable.
  3. All characters shall be depicted in dress reasonably acceptable to society.
  4. Females shall be drawn realistically without exaggeration of any physical qualities.

NOTE.—It should be recognized that all prohibitions dealing with costume, dialog, or artwork applies as specifically to the cover of a comic magazine as they do to the contents.

Marriage and sex

  1. Divorce shall not be treated humorously nor represented as desirable.
  2. Illicit sex relations are neither to be hinted at nor portrayed. Violent love scenes as well as sexual abnormalities are unacceptable.
  3. Respect for parents, the moral code, and for honorable behavior shall be fostered. A sympathetic understanding of the problems of love is not a license for morbid distortion.
  4. The treatment of live-romance stories shall emphasize the value of the home and the sanctity of marriage.
  5. Passion or romantic interest shall never be treated in such a way as to stimulate the lower and baser emotions.
  6. Seduction and rape shall never be shown or suggested.
  7. Sex perversion or any inference to same is strictly forbidden.

CODE FOR ADVERTISING MATTER

These regulations are applicable to all magazines published by members of the Comics Magazine Association of America, Inc. Good taste shall be the guiding principle in the acceptance of advertising.

  1. Liquor and tobacco advertising is not acceptable.
  2. Advertisement of sex or sex instruction books are unacceptable.
  3. The sale of picture postcards, “pinups,” \"art studies,\" or any other reproduction of nude or seminude figures is prohibited.
  4. Advertising for the sale of knives or realistic gun facsimiles is prohibited.
  5. Advertising for the sale of fireworks is prohibited.
  6. Advertising dealing with the sale of gambling equipment or printed matter dealing with gambling shall not be accepted.
  7. Nudity with meretricious purpose and salacious postures shall not be permitted in the advertising of any product; clothed figures shall never be presented in such a way as to be offensive or contrary to good taste or morals.
  8. To the best of his ability, each publisher shall ascertain that all statements made in advertisements conform to fact and avoid misrepresentation.
  9. Advertisement of medical, health, or toiletry products of questionable nature are to be rejected. Advertisements for medical, health, or toiletry products endorsed by the American Medical Association, or the American Dental Association, shall be deemed acceptable if they conform with all other conditions of the Advertising Code\"
","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-122190/","id":122190,"name":"The Boy with Superboy Powers!","issue_number":"39"},"id":42382,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/95233-170016-comics-code-authorit.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/95233-170016-comics-code-authorit.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/95233-170016-comics-code-authorit.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/95233-170016-comics-code-authorit.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/95233-170016-comics-code-authorit.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/95233-170016-comics-code-authorit.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/95233-170016-comics-code-authorit.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/95233-170016-comics-code-authorit.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/95233-170016-comics-code-authorit.jpg","image_tags":"All Images,Comics Code Authority"},"name":"Comics Code Authority","site_detail_url":"https://comicvine.gamespot.com/comics-code-authority/4015-42382/","start_year":"1955"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-42524/","count_of_isssue_appearances":100,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-07-09 08:28:00","deck":"The Anti-Life Equation is a formula that saps beings of their free will through an equation that makes life, hope and freedom irrefutably pointless.","description":"

Overview

The Anti-Life Equation allows one who knows it to subjugate the souls of all beings in the universe. No being is immune to the effects. For this reason, acquiring the equation is the utmost goal of Darkseid, Lord of Apokolips. In his many studies along the cosmos the evil new god came across an old Martian Sanskrit detailing the existence of a Life Equation, one detailing individual fee will and sentience in the universe.

Darksied suddenly came to the realization that if a life equation is a thing then the very opposite must also be true, that there must by an Anti-Life Equation. Very little has been confirmed of the Anti-Life equation. What is known is that a key part of the equation is held within the subconsciousness of the human mind.

It is believed that any tool used to control another person, such as fear, torture, pain and lies are parts of the Anti-Life Equation.Very few have knowledge of the full equation, but notably Scott Free Mr. Miracle has been found to know it, but has the willpower not to use it.In issue #3 of Red Robin, Tim Drake told Cassie Sandsmark (the second Wonder Girl) that he was in Gotham during the Crisis and heard the Anti-Life Equation. He then tells her:

\"But you know what? Before the equation took hold, I remember thinking...

...I remember thinking that there wasn't much of it I disagreed with.\"

The equation itself is:

loneliness + alienation + fear + despair + self-worth ÷ mockery ÷ condemnation ÷ misunderstanding × guilt × shame × failure × judgmentn = y, y = hope, n = folly, love = lies, life = death, self = dark side

Mr. Mxyzptlk?

It has been hinted that Mr Mxyzptlk might have to do something with the Anti-Life Equation.

After obliterating Darkseid and Apokolips in World's Funnest, Mr Mxyzptlk handed Darkseid a piece of paper which says Mr. Mxyzptlk plus Bat-Mite equals Anti-life.

In Emperor Joker when Joker gained 99% of Mr. Mxyzptlk's power, Darkseid discussed the matter with the Quintessence claiming that \"An insignificant spec on the planet Earth has stumbled onto something which is, by right, mine. I refer to of course The Anti-Life Equation.\"

Final Crisis

Darkseid finally discovers the complete Anti-Life Equation and launches an invasion of Earth in order to use it to enslave the human race. Using Mad Hatter technology, Darkseid creates helmets that play the Anti-Life Equation on an infinite loop in the wearer's ears, effectively making them his mindless slaves, his Justifiers. If the helmets are removed he will lose control over them.

DCnU

The functions of the equation remain much the same as they did in old continuity with quite a few alterations, it has come into the hands of multiple users. Chief among them was Yuga Khan last of the Old Gods of the world before the fourth world, had it in his possession before his untimely death at the hands of his sons; chiefly speaking Uxas.

Some eons later the nihilism inducing formula was used by Darksied in his invasion of Earth 2, drawing a host of human denizens unfortunate enough to hear it towards the Apokoliptian processor factories. Over time however he either cast it aside or the equation was lost again, bumping around throughout the multiverse and into the hands of countless individuals who do and don't know what they have.

Only a few individuals possess the full equation and utilize it for a host of useful attributes either not seen or underutilized in previous incarnations. Such as resurrecting the dead fully, enslaving the effected to ones being or quite possible shifting ones moral axis after revitalization; Currently it is in the hands of the Anti-Monitor.

Cursed to host it's power after discovering the secret of the Earth-3 universe. Whom eventually shed his destructive persona when he expunged it after killing Darkseid, the complete equation going to Grail upon it's release.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11260/","id":11260,"name":"Orion Fights for Earth!","issue_number":"1"},"id":42524,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/100647/4144022-darkseid%20anti%20life01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/100647/4144022-darkseid%20anti%20life01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/100647/4144022-darkseid%20anti%20life01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/100647/4144022-darkseid%20anti%20life01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/100647/4144022-darkseid%20anti%20life01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/100647/4144022-darkseid%20anti%20life01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/100647/4144022-darkseid%20anti%20life01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/100647/4144022-darkseid%20anti%20life01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/100647/4144022-darkseid%20anti%20life01.jpg","image_tags":"All Images,Images From Editing"},"name":"Anti-Life Equation","site_detail_url":"https://comicvine.gamespot.com/anti-life-equation/4015-42524/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43046/","count_of_isssue_appearances":24,"date_added":"2008-06-06 11:27:53","date_last_updated":"2020-09-09 23:01:09","deck":"The individuals born exactly at the \"turn of the century\", they as such possess metahuman powers.","description":"

List of Century Babies for the 20th Century:

  1. Elijah Snow, the Ghost of the 20th Century
  2. Kevin Sack, Lord Blackstock
  3. Dr. Axel Brass
  4. Bret Leather, the Dark Millionaire
  5. Jenny Sparks, the Spirit of the 20th Century
  6. Hark
  7. Addie Vochs / Vox Populi

* Jakita Wagner and Anna Hark are also noteworthy, as they received special abilities and increased lifespans as the children of Century Babies.

List of Century Babies for the 21st Century:

  1. Jenny Quantum
  2. Jenny Fractal
  3. River Baldwin
  4. Gaia Rothstein
  5. Jenny Soul

List of previous Century Babies (iterations of the Spirt of the Century):

  1. Jenny Steam, the Spirit of the 19th Century
  2. Jenny Revolution
  3. Jenny Crusade
  4. Jenny Inquisition
  5. Jenny Plague
  6. Jenny Ra
  7. Jenny Fire
  8. Jenny Stone

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-54528/","id":54528,"name":"All Over the World","issue_number":"1"},"id":43046,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/68152/1455193-cb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/68152/1455193-cb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/68152/1455193-cb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/68152/1455193-cb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/68152/1455193-cb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/68152/1455193-cb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/68152/1455193-cb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/68152/1455193-cb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/68152/1455193-cb.jpg","image_tags":"All Images,gallery"},"name":"Century Baby","site_detail_url":"https://comicvine.gamespot.com/century-baby/4015-43046/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43049/","count_of_isssue_appearances":15,"date_added":"2008-06-06 11:27:53","date_last_updated":"2019-02-13 08:41:48","deck":"Comics and graphic novels have given us many famous and notable advertisements through the years. Who can forget the Charles Atlas ads, the X-Ray Specks, Sea Monkeys, or the mysterious Grab Bag?","description":"

Here is a feature gallery where we will present some of the most memorable (and sometimes most horrible) advertisements ever to grace the pages of our beloved comic book medium. Peruse and enjoy this modern gallery of pulchritude and go away with a smile. Return again, bringing your own examples of advertising virtuosity from the comic Ages past. Our tour begins with those muscle-bound and true-to-life strongmen who inspired us to no longer be the wimp at the beach.

Charles Atlas, He'll Make a Man Out of You

Charles Atlas ruled the advertisement pages for years, becoming an icon in the eyes of young boys everywhere. Atlas was the living embodiment of the superhero physique, and proof that the \"90 lbs. weakling\" can grow up to kick butt and take names. He had the confidence to wear a leopard print bikini bottom and stand like he had a stuck up his rear, and managed to make it look cool. Thank you, Charles Atlas for sharing your pecks with the world.

Next stop on our tour, the wonderful world of action figures.

Get Some Action (Figures)

If you were a man-child of the 70's or 80's (and probably the 90's as well), you played with action figures. Let's face it guys, \"action figures\" are just what we call them so we can say we DON'T play with dolls, but the outcome is the same nonetheless. Above are two of the absolute coolest of the cool. Who in their right mind DIDN'T want a gold plated Cylon. And don't get me started on the Warrior action figure. He was the baddest @$$-kicker of them all.

G.I. Joe had his own kickin' rescue and attack dog. Look at him go! Name another dog that can use a zip-line or keep tabs on the enemy via periscope. Look at the longevity of the G.I. Joe line. It's possible that you had some Joes passed down to you from a big brother, or maybe even a dad, and you might have passed them down to your own children. I know I did.

Does ANYBODY remember Major Matt Mason? I'm sure he was the coolest astronaut hero of his day, but looking back now I wonder what the \"tech\" designers for the toy line were thinking. Look at the \"wheels\" of that space crawler, and the flying treadmill \"space sled,\" that's some well-tested equipment there I'm sure. What's with the moon suit? It looks like more like a buoy out in New York harbor. ROM the Space Knight was SO much cooler. He even had his own (fairly) successful comic title for a short while, created just to boost toy sales. Remember when Forge built that gun based on ROM's Neutralizer for use on Rogue, but it ended up getting used on Storm and erasing her powers for years? Good times.

Quite possibly the best action figures EVER, the Star Wars collection ruled the school playgrounds of America in the late 70s and early 80s. If you brought a new figure to school, you were the coolest cat for the day, at least until your playground nemesis brought another one hot off the shelf. Yet another set of figures to pass down to your children. Then there's Stretch Armstrong, an \"action figure\" you could stretch him as far as you wanted and he would snap back into his original shape. My friends and I actually snapped the head off of one of these things. I'm not kidding when I say that it was one of the hardest things I've ever done.

Suck It Up Soldier!

Look at that high technology at work. Buy this green and brown face paint and you can become almost INVISIBLE. I love the line, \"Give you a SECRET advantage over your enemies.\" Yeah, like the people the US army fought in WWII and Korea didn't know how to smear paint on their faces. It's not so politically correct anymore it seems to play with little toy soldiers. I've had the hardest time finding them for my son when he wanted them. Back when some of us were children, you could just order the things out of any comic book any time.

See that ad on the right above, I remember ordering that set of toy soldiers and thinking, \"I can't wait until that footlocker comes in, that's gonna be so cool.\" Yeah, right. Read the fine print stuck in there right above footlocker. What 8 year old boy is going to read the find print, or really even care what \"pasteboard\" is? I think that \"footlocker\" lasted a whole day.

It's Alive! It's Alive!

You could order live animals through the mail? Real live animals? And since when is a RACOON America's favorite pet? Easy to care for? If you like rabies, I guess so.

Why is it so many of these live animals are coming out of Florida? Were they trying to make more room for geriatric retirees and hot girls?

Why do they keep putting those poor little animals in teacups? Do they come in a teacup? Is that even really safe. And why does that old woman keep calling us \"Friends?\" I've never spoken with this woman ever, have you?

OK, so this last one's really not a live animal, but tell me if you can resist. If you had an air bladder in your hand with an air tube running up your shirtsleeve nowadays, I wonder what people would think you're hiding. It STILL might have something to do with a snake (or not).

It Ain't Easy Being Green

How about some live plants in the mail to go along with your live animals? Read the fine print on the 2D Chia Pet wannabes: \"Purchase of $1 or more automatically makes you a member of the Lucky Clover Club. You receive a genuine four-leaf clover for good luck.\" Man, what a deal!

Oh, How Novel!

I love the hokey buzz lines they use on these old things. \"Eyes will pop as friends gasp!\"

\"The most fantasmagorical hobby kit in the history of everything.\" What does that even mean? And \"Chitty Chitty Bang Bang\" just sounds dirty.

Just imagine how much you could get on Ebay for one of those Gene Autry friendship rings. The 147 automobiles looks good, but notice the \"Garage.\" Yet another press board box.

Here's the trick section of the comic ads. How many kids fell for the \"$1 million\" gag because they didn't read the fine print to see that it was fake money? Aren't \"exact reproductions\" illegal? Maybe they made enough money off of the scam to pay their lawyers. Then you have the \"Lucky Grab Bag\" full of prizes, some of which were \"formerly up to $10.\" Read, \"this is leftover crap, and it's better to have you pay us a buck for it and clear out our warehouse.\"

\"Tell your parents every ingredient in the Margaret O'Brien Candy Kitchen is guaranteed to be absolutely wholesome.\" Yeah right. Those little bottles have just a slight resemblance to mini-bar bottles. The Vac-U-Form toys all look pretty good, but what's up with the bird and the cow?

Look at the Texas Ranch scam. Somebody do the math for me and find out how many square inches are in an acre. I have a feeling that somebody made a killing off of their land. I mean, have you ever been to Amarillo, TX?

\"Kids, we'll give you a free toy if you buy our cereal. Yes, it tastes like crap, but you'll be having so much fun you'll never notice.\" In Junior's Television you have a real visionary at work. Who knew that just a couple of decades later we really would have rear projection TVs in our homes?

Look at the \"Chinese\" guy up at the top of the magic tricks page. You couldn't get away with that kind of thing today, and that's a good thing.

I want my money back! I ordered the X-Ray specs when I was a kid and all I got was a headache. I never once saw the black silhouette of a woman through her clothes.

OMG! The Shocker?!?

Win Fabulous Cash & Prizes

Who cares about the cars on the right, we've got Linda Carter in a Wonder Woman outfit. The contest was to finish a sentence in 50 words or less. Here's my entry: \"The daring rescue I would like to see Wonder Woman perform is...you and me alone together at the end. You're hot.\" I don't think I would have won.

Eat, Drink, and Be Merry...

I love the tag lines here. \"Hep cats purr over the fresh, clean taste of 7-Up.\" \"Delicious for folks of action!\"

What?!? A guy named \"Captain Tootsie\" rescues a guy named \"Fatty\" after he jumps off of building with an umbrella? He probably would've just bounced.

Why are Nazi's shooting at a little kid? That just doesn't make any sense. I guess you really don't have to be much of a superhero when your arch nemesis is Dr. Narsty, and the best he can do is fire a cork into your mouth that a bunch of kids can pull out.

I guess the original Captain Tootsie was a cowboy, but he didn't work out so they fired him. I'm not touching the strip on R.C. and the Adventures of \"Quickie\" if you know what I mean.

Become an Artist

\"Learn to draw like us, even though we're not good enough to get our art into this comic unless we pay for an ad.\"

Yeah, I remember in school the guys who could draw well got all the girls. So did the guys in drama and chess club.

Buy This Comic!

I think I see why Daredevil Comics failed. Look at the character names: Nightro? Dash Dillon? Pat Patriot? Trés original. I wish I had gotten a hold on some of those Mary Marvel glow pictures though. Yummy!

Glow in the dark Kryptonite rocks? It's terrific! It's fantastic! It's Kryptonastic!

And here's my second favorite part--when you wear it too long, it turns your finger green.

I love how they draw you in with the plight of the poor, homeless superhero, then throw the Frazetta naked chick art at you. Why is Wonder Woman the biggest doll? Not that I'm complaining, but are they trying to tell me something? I can't make fun of the Titans though, that was one of the best teams of all time.

Here's another great, the Muhammed Ali vs. Superman fight. Hey, isn't that Cassius Clay? Underoos are actually the biggest kid rip-off ever. I mean, think about it. You get these really cool superhero uniforms, but you have to wear them under your clothes. Every body stares at you if you wear them on the outside of your clothes, at least they did me.

What is FOOM! I guess they had to make it \"Friends Of Ol' Marvel,\" because if it were \"Friends Of Marvel\" the acronym would have been FOM, and that's just stupid. FOOM is much better. Now I know why I haven't seen Mockingbird in years. Hawkeye killed her making one of these stupid ads.

\"Life has no meaning without my latest Marvels.\" Get a life Spidey!

Go, Go Gadget Gizmo!

Way to promote a healthy lifestyle to the kiddies there, Mr. Bar-B-Q whatever-your-name-is.

\"Flying saucers are real!\" Wow! Call the CIA, call MI6, call ANYBODY! Aliens are here and they're driving frisbees! And if someone could explain the scientific principle of differential expansion, please send your answers (and refund requests) to Trek Space Ships (wow, do you think they were jumping on a particular band wagon or what?)

It's those x-ray specs again. They can guarantee me fun but not genuine x-ray vision? Pah! That's just not good enough! I'd say the only thing that will end up \"blushingly funny\" is me when I wander into the party wearing those thick-rimmed spectacles.

Lots of Toys for Boys and Girls

GoBots! The-almost-but-not-quite-Transformers. Build your very own transforming car / space ship / aeroplane. If only Tonka had had the marketing capabilities of Hasbro, it would be a GoBots movie craze instead of the Transformers.

SILLY PUTTY! That's all I've got to say on the matter.

Oh those were the days... life was good, spirits were high and skates had two and two. None of your \"in-line\" business. Oh no, we were real kids back when I were a lass, with our stablisers and cabbage-patch dolls. Funny thing is, I think my very first pair of skates really were strap on Winchesters, and they were old fashioned even back then.

Deal or No Deal?

Entrepreneurial spirit starts here folks. First you get your bike, then you get your paper round, then the whole world is your oyster! Alternatively, you could invest your allowance in stamps, the hobby of small kids and anoraks everywhere. Most of us grew out of it but there's still those few, lurking in the background, who geek-out at just the thought of a penny black.

Heath, Hygiene, and Safety

Huckster Heroes

Make Your First Dollar

Ninjas Rule

The Monster Mash

Sports Stars

Oh No, OJ!

Before There Was MTV

Oh David, how the gorgeous have aged! Once a pin-up, now Ducky. This just calls for an NCIS quote (do excuse me): (Todd) \"Gibbs, what did Ducky look like when he was younger?\" (Gibbs) \"Illya Kuryakin.\"

Too Good to Be True

War Propaganda

Fashion Sense or Fashion Dense?

Sex Sells

What Were They Thinking

Meatloaf; Humongous Rock Star of the Universe

\"Close
Close up of the mail-away form.
\"Just
Just what is going on here?

Here's an ad which can be found throughout many 1980's Marvel back issues. Essentially, it features rock musician Meatloaf calling out in desperation to aid the children of the Special Olympics. Note the tears streaming down his face in the first panel. The advertisement appears to start out with Meatloaf performing at a concert, on a stage in front of a crowd, but he becomes distracted from his show and shouts out \"But who's gonna help me?\" rather than this confusing the audience (because his first lines were in a thought bubble and thereby the audience would not have understood what he needed help with), his audience is replaced altogether by a random grab back of assorted Marvel characters plus a few random children.

Meatloaf then informs us that the way we can help is by filling out a form for a cassette or record for the official theme song to the 1987 Special Olympics.

Panel to panel the conversation has little logical flow, and the end conclusion doesn't seem like it warranted Meatloaf getting as upset as he did. He was putting on a concert, isn't that the perfect time to say \"hey I just did a song to help out the Special Olympics, go out and pick it up!\"? Instead he gives up on his audience and enlists the help of Marvel super-heroes (and children). Whatever works for ya, Meat.

And by the final panel, in contrast to the first where tears are streaming down his face, Meatloaf looks totally jazzed! It's like his anguish was all an act and he was really waiting to tell us to fill out the form all along. Faker.

This ad is so nonsensical and random that it's charming. Hail Meatloaf, Humongous Rock Star of the Universe.

Volto From Mars

Volto was a superhero from Mars with magnetic powers. Each issue that he appeared in Nedor Comics, Volto would be a regular comic superhero story until the end when he announces he recharges his power by eating Grape Nut Flakes. The last panel would have a boy holding up a plain looking cereal box of Grape Nuts and tell you that you may not get magnetic powers but it will give you a Dynamo Drive.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-309457/","id":309457,"name":null,"issue_number":"48"},"id":43049,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/32653/731240-30.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/32653/731240-30.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/32653/731240-30.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/32653/731240-30.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/32653/731240-30.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/32653/731240-30.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/32653/731240-30.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/32653/731240-30.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/32653/731240-30.jpg","image_tags":"All Images"},"name":"Notable Comic Book Advertisements","site_detail_url":"https://comicvine.gamespot.com/notable-comic-book-advertisements/4015-43049/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43081/","count_of_isssue_appearances":15,"date_added":"2008-06-06 11:27:53","date_last_updated":"2012-03-10 09:52:37","deck":"In the CrossGen universe, a Sigil bearer is an individual who has been marked by one two ascended Atlantians, Solusandra or Danik. There is also an opposing sign, the Ligis, given by the evil Charon.","description":"

Types of Sigils

In the CrossGen imprint of comics, Sigil-bearers are the central focus of most of the individual titles, and figure largely into the overall structure of the CrossGen universe, otherwise known as the Sigilverse.

There are essentially three types of Sigil-bearers, and two of these groups can be further broken down into smaller groups. All Sigils are marks given to individuals by beings who have undergone a Transition, or ascenion to become god-like beings. Solusandra and Danik are tranisioned Atlanteans from Earth's ancient past (over 100,000 years in the past). All of Solusandra's Sigil-bearers are human, while most of Danik's are un-ascended Atlanteans with the remaining two being human. Charon, the evil god of the Negation universe, learns how to give a similar symbol, called a Ligis, to non-human creatures with the aid of the Sigil-bearer Javi.

Solusandra's Sigil-bearers

The original Sigil-bearers possess a yellow and red colored symbol which very much resembles a Yin-Yang symbol. This Sigil was is the symbol of Solusandra, and is bestowed by her in a seemingly random nature although it is later discovered that she was actually very deliberate in her choosing, if not always wise. Each of these Sigil-bearers have an appointed Mentor, who is actually a splinter aspect of Danik. When Solusandra was cast down following confrontations with her Atlantean peers and Charon of the Negation, Danik took it upon himself to watch over and train her Bearers for the the coming war.

Humans granted this symbol are advanced up their personal evolutionary scale as far as possible. This change, though prompted by the Sigil, is genetic and permanent. Even if the Sigil is lost or removed by Solusandra, the Bearers powers are not lost, though they might initially believe so. Over time, the Bearers will regain their powers, and in fact most likely experience a power increase because of their need to relearn the power's use.

There are likely more Sigil-bearers existing on worlds across the universe than is known. The following is a listing and summary of the know Sigil-bearers of Solusandra.

The Original Five

Samandahl Rey of Gaia: One of the original five Sigil-bearers, and the most important in Danik's plans for the future. Sam's Sigil gave him molecular control over inanimate matter. Sam's Sigil is located on his chest, and looks very much like a burn. Through the Sigil's use, Sam becomes the leader of humanity's fight against the Saurian race (which only sees humans as food to be eaten). Samandahl Rey sires a child with Capricia of Atlantis.

Sephie of Meridian on Demetria: One of the original five Sigil-bearers, and potentially one of the most powerful. Sephie's Sigil grants her defensive shielding, repair of organic and inorganic matter, healing of organic matter, flight, and a myriad other abilities. Through the Sigil's use, Sephie begins a crusade against her uncle Ilahn, a cruel despot bent on world (if not universal) domination. Sephie's Sigil is located on her forehead.

Ilahn of Cadador on Demetria: One of the original five Sigil-bearers, and one of the most ruthless. Ilahn's abilities included disintegration of matter, energy blasts, self-healing and teleportation. Ilahn is also the first to learn that Sigil bearers can drain the powers/life-forces of the First. Through the Sigil's use, Ilahn strives to solidify his power over the planet, and rid himself of his niece Sephie once and for all. Ilahn's Sigil is located at his throat.

Giselle Villard of Ciress: One of the original five Sigil-bearers. Giselle's Sigil allowed her to possess all of the spirits of the great masters of her world, and allowed her to perform high-order magic without preparation, material elements, or spells. Through the use of her Sigil, Giselle successfully defends her planet from Animora, an evil First who wishes Ciress as her personal plaything. When Solusandra returned to Giselle to take the Sigil back, Giselle was able to put up fantastic resistance against the goddess, but ultimately failing. Giselle's Sigil is located on her right palm.

Ethan of the Heron Dynasty on Avalon: One of the original five Sigil-bearers. Ethan's Sigil grants him the use of a sword of light, as well as multiple defensive abilities and fighting skills, and the ability to heal himself (and later others). Through the Sigil's use, Ethan defends the Herons Dynasty from those in the Raven Dynasty who would see it destroyed, and also successfully creates a free homeland for the Lesser Races. Ethan's Sigil is located on his right bicep.

Additional Bearers

Brath Mac Garen of Han-Jinn: Brath is a clan leader among the strongest Urelanders clans. He works to unite the myriad clans to better repel invades to their homeland. Brath's Sigil grants him multiple abilities, including personal healing, language translation, and confidence building. Through the use of the Sigil, Brath unites his clans, but is ultimately is captured by the enemy when Solusandra returns to take her Sigil back. Brath's Sigil is located on his chest.

Sara Janning of Yamivol Prime: Sara Janning is an ice miner on the planet Yamivol Prime, far out on the frontier of the Chimera Empire. Sara is in hiding from the Emperor and his family, a dynasty which brought themselves to power through genetic manipulation of their line. Chimera's Emperors have mandated periodic genetic scanning of every inhabitant in a search for genes they can use to take the next step in their family's evolution. Sara has evaded capture since the day she saw her family killed by Chimera forces right before her eyes. That was also the day she was granted her Sigil. Sara's Sigil powers are somewhat esoteric, and don't really manifest themselves until she is fighting for her life against the Emperor who discovers her true nature. Sara's Sigil is located on the small of her back.

Mordath of Quin: Mordath is an undead human, and the despot conqueror of the Five Lands of Quin. Three-hundred years before when he first tried to conquer the Five Lands, Altwaal appeared out of nowhere to end the battle by shooting Mordath through the chest with an explosive arrow. [See: Altwaal's Weapons] Three centuries later, he is resurrected (but not given full life, only reanimation of an emaciated body) and given a Sigil of power, which he uses to destroy that who stood against him and enslave the remainder of the Five Land's inhabitants. Mordath is likely the most evil and ruthless, and used his Sigil powers nearly exclusively for destruction. Curiously, Modath's Sigil never healed his undead body, and possibly because of his character he never thought to turn his powers inward and attempt such a feat. Mordath's Sigil is located on the top of his head, and is the largest Sigil among all the bearers.

Lindy Karsten (AKA Radiant) of Heliotrope: Lindy is a designer of high-end MMORPGs for her world. As Radiant, Lindy is the undisputed champion of her world's most popular game (a planet on which it seems EVERYONE plays). Lindy is the first Sigil-bearer to have her mark taken away by its creator, Solusandra. Lindy's Sigil seems to grant her heightened speed and reflexes, giving her a decided edge in the game world. The original location of Lindy's Sigil is unknown, as she always wore a neck to toe gaming suit. However, her suit does have an all-golden version of the Sigil in multiple places.

Todosi of Han-Jinn: Todosi was a great warrior of his people, the defender of their homeland. When he was granted the Sigil by who he thought was a goddess, he knew he had been touched by destiny. He knew that he had been marked, and that his mark prophesied the fate of his people, but did that fate include victory. Todosi was continually successful in defending his people, until the day the gods appeared. As an \"experiment\" to see if a Sigil-bearer could be killed, one of the First used the Rod of Altwaal [See: Altwaal's Weapons ] against Todosi, successfully killing him. When Todosi died, his Sigil moved to his brother, who then vowed to kill every god in heaven in revenge. Todosi's Sigil was located on the middle of his back.

Obo-san (AKA Nobuyuki Tsugawa) of Han-Jinn: Obo-san was a devout monk and eschewed all forms of violence. However, he knew that the homeland must be protected, so he lent his wisdom to his brother Todosi, and to the Emperor. When Todosi died at the hands of a god, Obo-san inherited his brother's Sigil, and also came in possession of the very weapon that caused the murder, a weapon he dubbed \"The Weapon of Heaven.\" Obo-san became his homeland's protector in his brother's stead, rejecting his non-violent past, and rejecting the worship of the god as well. He vowed to kill every god in heaven as revenge for the callous murder of his brother. Obo-san Sigil grants him the ability to influence and control other humans with the very words he speaks. Obo-san's Sigil is located on his back, just as it had been on his brother.

Lord Birrema of Courabo: Birrema is the beloved ruler of the world Courabo, a war torn world which is now living in peace because of the efforts of his efforts. Biremma is the first Sigil-bearer approached by Ilahn of Cadador for help against Sephie. Biremma, who is at first distrustful of Ilahn and wants nothing to do with him, is soon swayed when Ilahn promises aid for Courabo's people. When Biremma and Ilahn shake hands on the deal, either they sympathetic telepathy shared between Sigil-bearers does not work, or Ilahn is somehow able to deceive Biremma, or Biremma overlooks Ilahn's nature for the good of his people. Biremma ultimately allows Sephie to defeat him once he learns the real truth of her character. Biremma's Sigil grants him the power to fly, increased fighting prowess, and the ability to create armor, a shield, and a sword, all made of hard light.

Taylor (AKA Mighty Man): Taylor's world is one of the first planets to suffer a full scale invasion by Charon and his Negation forces. Taylor has used his Sigil power to assume the role of superhero protector of his planet. Taylor, which is Mighty Man's secret identity, works as a reporter at a major newspaper in a very large city. When the Negation arrives, they attack without warning, vaporizing and entire section of the cities inhabitants with their first strike, leaving only Mighty Man as a survivor. Taylor confronts Evinlea of the First, who is now fighting for Charon. He is quickly defeated, and is questioned by Charon, who is searching for Taylor's mentor, and aspect of Danik. Once they have the information needed, Evinlea blows Mighty Man's head off with a blast of power. As an obvious \"clone\" of Superman, Mighty Man possesses the same types of powers, but his levels are unknown. Taylor's Sigil was located just below his throat.

Kellra Tuskin of Cardeen: Kellra is Cardeen's leading prognosticator and family/relationship counselor. Kellra is able to see into the future using her Sigil's powers, specifically looking into the coming history of individuals and thereby give them advice to change that future for the better. When Kellra is confronted by Solusandra, she refuses to relinquish her Sigil, and somehow uses her knowledge against the goddess. Kellra is thought to already been highly trained in her vocation well before she gained her Sigil, and that is what guided her ultimate manifestations of powers. Kellra is successful in driving Solusandra mad, making her see visions that cause her to loose all self-control. Solusandra leaves Cardeen without taking back her Sigil.

Neine of the blue-skinned feralfolk: Neine is one of the four Sigil-bearers from various worlds who are co-opted into helping Ilahn of Cadador fight against Sephie. Neine had once served as an agent for Ingra of the First, fighting at her side at some time in his past. Neine's Sigil seems to grant him increased fighting ability, speed, reflexes, and flexibility as well was flight. Neine is ultimately defeated by Sephie.

Mikos of Abyelos: Mikos is a young boy (teenager) who believes his Sigil powers had been given to him as a gift from a deity. At first, Mikos uses his powers to perform simple \"magic\" tricks to impress children, but he soon learned to harness his powers in increasingly growing measure. Soon, the people of Abyelos begin to swamp the boy, begging him to perform miracles in their lives. Eventually Mikos has all he can stand, and he commands them all to stop, which they all do because his emotional outburst causes his power to flare, turning every inhabitant on the planet to statues of crystal. When Solusandra arrives to take away his Sigil, Lindy Karsten convinces her to give him a short amount of time to solve the problem, which he does at just the last moment. Solusandra then takes her Sigil and departs. Mikos's Sigil grants him matter conversion powers, telekinesis, and matter-energy conversion powers. Mikos cries A LOT and possesses a high-level of chemistry and biological knowledge. Mikos's Sigil was located on his forehead, which he always hid with a funky looking piece of *Liefeld-esque* headgear.

Johnny Jumpjet of the Helix Worlds: Not much is known about the hero of the Helix Worlds, Johnny Jumpjet. He is a short, fat, bald guy who wears a rocket-equipped space suit complete with pressurized helmet, even in the perfectly breathable atmosphere a habitable planet. Johnny's Sigil-based powers are unknown. Johnny was one of the first Sigil-bearers recruited by Samandahl Rey for the fight against the Negation. Johnny was last seen about to get his butt kicked by Mordath for asking a stupid question. Johnny's Sigil is located on the left side of his bald head.

Columella the iron goddess: Columella is one of the four Sigil bearers recruited by Ilahn for his fight against Sephie. Columella is known as the iron goddess on her homeworld, but where that is and what her story entails is unknown. She is a savage fighter, and thinks more highly of herself than she really should, since she is easily defeated by Sephie, a girl half her age. Columella apparently worked at sometime in the past for Ingra of the First. Columella's Sigil grants her flight, advanced battle prowess, and other unknown abilities.

Grenang the blacksmith: Grenang is one of the four Sigil-bearers recruited by Ilahn for his fight against Sephie of Meridian. Not much is known about Grenang or his background, other than he is a blacksmith, and holds clan \"etiquette\" in high regard. He comes close to dealing Sephie a mortal blow, and is then disintegrated by Ilahn in anger. Grenang's Sigil granted him the power of flight, blast powers, and other unknown abilities.

Turos of Meridian on Demetria: Turos was once the Minister of Meridian, father to Sephie, and brother to Ilahn. He is notable as the shortest lived Sigil-bearer on record, dying only minutes after receiving the mark. Unknown to all, Ilahn had been poisoning his brother, so the stress of the Sigil's empowerment was too much for his weakened constitution to bear. He died, passing the Sigil onto his daughter, Sephie.

Javi of Larringa: Javi was a doctor on Larringa who used his Sigil's power to heal. Javi was abducted by Negation agents into the Dark Universe. There he learned he was better able to still access his abilities than any other Sigil-bearer, and also learned he could boost the power of other Sigil-bearers, or members of The First, around him. He is recruited by Evinlea of the First, and is eventually presumed killed at the hands of Negation forces. Buried and left to rot, his Sigil actually keeps him alive and slowly heals his body. He is unearthed by Charon, and pressed into the evil god's service. Being a highly religious man, Javi (after working to destroy him) comes to believe that Charon is the true god and dedicates his life to the mad deity's service. Javi is killed again in a confrontation with Obregon Kaine's resistance group. Javi's Sigil was located on his right forearm.

Mercer Drake of the Karzath System: Mercer's power is to overcome any physical obstacle to attain a location or object. Back in the Karzath System, Mercer was a pirate and profiteer, using his Sigil abilities for personal gain. Mercer is one of a group of Sigil-bearers who are abducted into the Negation universe and placed under observation on a prison planet. At first, Mercer joins Obregon Kaine's resistance, but eventually departs to essentially find a planet to hide on away from Charon and his minions. Mercer's Sigil is located on his chest.

 Westin: Westin has the ability to see how technology is operated, and uses it to help his fellow captives of the Negation escape from Komptin on his prison planet. Later it is revealed that he actually sees backwards in time when he comes in contact with a device. When this happens, he is able to see how the technology was operated before, and then emulates what he sees, sometimes with less than desirable results. At first a member of Obregon Kaine's resistance, he follows Mercer away from the battle.

Shassa: Shassa's powers enable her to combat any enemy by feeding off portions of their strengths, though it only affects her and does not seem to weaken her opponents in any way. Shassa rarely wins any of her confrontations, leading many to believe she does not truly understand how her powers operate and is too obstinate to ask for aid or training. A member of Obregon Kaine's resistance, she eventually leaves the to follow Mercer's splinter group, ostensibly to \"protect\" those without a Sigil.

Rika the All-Seeing of the Eternal Empire: Not much is known about Rika other than the fact she was tricked into aiding Ingra of the First.

Riaglal of Forest: Nearly nothing at all is known of Riaglal but for a name.

Unknown Sigil-bearers: Various Sigil-bearers seen throughout the Sigilverse. Most of these Sigil-bearers were recruited by Samandahl Rey by order of Danik to join the fight against Charon and his Negation. The furry, blue-skinned fellow was among those captured by the Negation and taken to their prison planet. He is killed during an escape attempt, proving that Sigil-bearers can be killed, though it is extremely hard to accomplish.

Danik's Sigil-Bearers

Danik's Sigil is a glowing, all-orange symbol, oval in general shape with two arms (imitating a spiral galaxy). Danik first granted his Sigil to his best friend from 100,000 years before in Atlantis, Capricia. In turn, he ordered her to choose five more companions to aid her in a sudden battle against monsters from the Negation universe. Atlanteans, having already ascended up the evolutionary scale, already possess a myriad of powers, depending upon what Discipline they chose earlier in their life. Danik's Sigil seems to offer advanced protection and lends focus to the powers they already possess as Atlanteans.

In the case of the two humans, Danik's Sigil does not seem to offer evolutionary advancement as Solusandra's does. Here the Sigils allow for increased acuteness for mental and sensory abilities the owner already possesses.

Atlantean Bearers

Capricia of Atlantis: The first of Danik's Sigil-bearers, and another of the most important in his plans. Capricia is an empath, and exhibits shape-changing abilities. Capricia was a student of the Empathy Discipline in Atlantis. Capricia bears the child of Samandahl Rey. Capricia's Sigil rests atop her left breast.

Galvan of Atlantis: One of the first six of Danik's Sigil-bearers, and twin brother to Gammid. Galvan's abilities allow him to control the infrared portion of the electromagnetic spectrum. Galvan was a student of the Passion Discipline in Atlantis. Galvan's Sigil rests atop his left breast.

Gammid of Atlantis: One of the first six of Danik's Sigil-bearers, and twin brother to Galvan. Galvan's abilities allow him to control the ultraviolet portion of the electromagnetic spectrum. Gammid was a student of the Passion Discipline in Atlantis. Gammid's Sigil rests atop his left breast.

Tug of Atlantis: One of the first six of Danik's Sigil-bearers. Tug's abilities rest in his mind, allowing him both sharp telepathy and powerful telekinesis. Tug was a student of the Mind Discipline in Atlantis. Tug's Sigil rests atop his left breast.

Verityn of Atlantis: One of the first six of Danik's Sigil-bearers, and the youngest. Verityn's abilities allow him to act as a seer, seeing into both the past and the future. He is also a powerful telepath, and can observe the flow of energy in space and time. Verityn was a student of the Spirit Discipline in Atlantis. Verityn's Sigil rests atop his left breast.

Zephyre of Atlantis: One of the first six of Danik's Sigil-bearers. Zephyre's abilities allow her to move with incredible speed. Zephyre as a student of the Body Discipline in Atlantis. Zephyre's Sigil rests atop her left breast.

Human Bearers

Cassie Starkweather of Erebus: Cassie's Sigil grants her the ability to \"see\" ghosts, and otherwise speak to the dead and to supernatural creatures.Simon Archard of Arcadia: Archard is a detective and master sleuth. He has eidetic memory and is close to emotionless, remaining utterly calm in situations of crisis. He also remains emotionally distant from other people. Simon carries his Sigil on the end of his cane, which never leaves his hand.

Charon's Ligis-Bearers

Charon, evil god of the Negation universe, is an ascended human from planet Earth. Tens of thousands of years following the Atlanteans, he and a work associate Appolyon ascended, they were ripped into the Negation universe. At first, Charon was temporarily insane, but was nursed back to mental health by Appolyon. In addition, Charon divested himself of his \"bad\" emotions and desires. These in turn became corporeal and self-aware beings of great power, his Lawbringers.

Charon saw the universe he had entered, and found it in \"chaos.\" The laws of physics worked differently some places than they had in his universe, and might even be subject to change. Using his Lawbringers and the remaining humans who had survived being ripped off the Earth as an army, he embarked on a crusade bring order to the chaos of this universe. He was opposed by Appolyon, but possessing slightly greater power, banished his enemy to a hellish sub-dimension. Charon then set himself up as Emperor of the Negation universe.

Ten thousand years later, resistance to Charon's Negation forces is virtually nil, and he turns his eye back out of his universe to the one from which he came. After a short and explosive meeting with Solusandra, Charon has dimensional portals between the universes contructed, and begins slowly infiltrating the Bright universe. Charon gains intelligence on the First and the Sigil-bearers, eventually abducting representatives of each for further study. He begins attempting to graft his own version of the Sigil on his own universe's natural inhabitants, all of which are non-humans. The result are grotesque and disastrous, resulting in horrible deaths for every creature experimented upon. Charon decides to attempt grafting human DNA into his subjects, but the result is even more horrible than previous experiments. When Javi Cobian is dug out of his grave, Charon convinces him to use his powers to heal the grafting subjects long enough for them to live and receive Charon's Ligis. Below are listed the first four, and thus far only known Ligis-bearers.


  • Shrakti of the Negation: Shrakti's abilities include spatial and dimensional teleportation. Her ultimate limits are unknown.
  • Tibian of the Negation: Tibian's abilities allow him to fight with unbridled fury. He is able to both sustain and cause massive amounts of damage.
  • Trocantor of the Negation: Trocantor is a telepath of the highest order. Only the mind of his god, Charon, has proven to be beyond his comprehension.
  • Brevus of the Negation: Brevus possesses near unlimited strength. The upper limits of his strength is unknown.

Note on CrossGen Comics

Soon after the Negation War had begun, CrossGen Comics suffered bankruptcy and ceased publication of all volumes. Many of the Sigil-bearer's stories remain unfinished, and in some cases are quite confusing when comparing the stories in individual publications to the beginning storyline of the Negation War. (For example, Mordath is thought killed by Arwyn in an unofficial script released by Sojourn's writer, but he is seen being recruited by Samandahl Rey at the beginning of the Negation War.) The final outcome of the Sigil-bearers and their war against Charon and his Negation remains unknown.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-127431/","id":127431,"name":null,"issue_number":"1"},"id":43081,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/105509-54330-sigil-bearers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/105509-54330-sigil-bearers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/105509-54330-sigil-bearers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/105509-54330-sigil-bearers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/105509-54330-sigil-bearers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/105509-54330-sigil-bearers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/105509-54330-sigil-bearers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/105509-54330-sigil-bearers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/105509-54330-sigil-bearers.jpg","image_tags":"All Images,Sigil-bearers"},"name":"Sigil-Bearers","site_detail_url":"https://comicvine.gamespot.com/sigil-bearers/4015-43081/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43357/","count_of_isssue_appearances":14,"date_added":"2008-06-06 11:27:53","date_last_updated":"2020-10-24 06:04:22","deck":"Article covering the role of women in comics throughout the ages.","description":"

Women in the Golden Age of Comics

The Golden Age was the time from 1930s to the 1940s and where women developed their role in comics, which would impact later women roles in comics. This time was truly golden for the comics as they had evolved from comic strips though during this era, women in comics weren’t really people with super abilities. These girls’ powers were successful careers, girls who were involved in romance stories or perky teenagers who were dreaming of guys. Comics during this time were developing themes, such as the lone woman taking care of children and filling in her husband’s jobs (think World War II).

Comics were also discovering new genres, like romance, action, mystery and crime, humor and teen-themed. The diversity was dwindling during the 50s because new mediums of entertainment were being invented. For example, the radio was very popular as radio was a free way of getting their daily dose of fiction. The fact the Dr. Fredric Wertham’s book Seduction of the Innocents was released had accused comics for being responsible for the anti-social behavior. In reaction to that, the Comics Code was imposed, and thus began the dwindling of sales regarding comics. However, there were three types of characters for women in comics and they were:

Career Orientated Girls

With the use of women in comics during the Golden Age, the career-type character were usually females looking for work, but not work that women usually did during World War I. Instead of making weapons for the war effort, they would be portrayed as looking for work as a secretary, nurse or sometimes a teacher. Such characters were Millie the Model and Nellie the Nurse. Women looking for work as a secretary etc. was quite a big thing, as being employed was one thing, being paid the same rate as men was another.

Romantic Role

The second role, which was the romance archetype, had two roles. They could either be the Bad or Good Girl.

  • The Good Girl would usually have their heart broken or end up in a true romantic relationship.
  • The Bad Girl always broke the boys’ hearts.

Plots involved with these characters could either that the Good Girl finds true love and gets married while the Bad Girl tries to be good, but fails and goes back to her wild ways.

Perky Teenager Role

The perky teenager roles were taken by characters such as Betty and Veronica from the Archie comics. They could be fun-loving and crazy teenagers (and sometimes stupid) as both of them spent all their time fighting over Archie. Josie from Josie and the Pussycats was also like this, involving her bands in strange adventures but always making it through.

Women as Superheroes in Comics

The first known female superhero was a minor character called Fantomah by writer/artist Fletcher Hanks. Fantomah was an immortal Egyptian woman who could turn into a skull-faced creature with superpowers who would fight evil. Her first appearance was in Fiction House’s Jungle Comics #2 which was released in February 1940. Another character who was highly influential was Invisible Scarlet O'Neil who fought crime using the power of invisibility and debuted on June 3, 1940 in a newspaper comic strip. Antiheroes were also used, as Black Widow (not to be confused with Marvel’s Black Widow) who was an emissary of Satan and killed criminals and sent them back to Hell. A popular female superhero was Wonder Woman who was created by William Moulton Marston and his wife Elizabeth and she debuted in All Star Comics #8. He created Wonder Woman because he wanted a positive role model for girls around the world as he wrote in an article about comic books:

\"America's woman of tomorrow should be made the hero of a new type of comic strip. By this, I mean a character with all the allure of an attractive woman, but with the strength also of a powerful man. There isn't enough love in the male organism to run this planet peacefully. What women presently lack is the dominance or self-assertive power to put over and enforce her love diaries. I have given Wonder Woman this dominant force, but kept her loving. It is my hope to make this strip as appealing to adults as it has proved to kids.”

Marston was the writer for the first Wonder Woman comics, and he had written her as a woman with natural leadership skills, though he had always portrayed them with the themes of bondage. In one issue, she went mad because her bracelets had been broken, and the bracelets represented restraint and said that “power without self-control tears a girl to pieces.”

The World War II theme was fading away and publishers wanted to appeal to a wider variety of audiences. Since Wonder Woman, there would be Miss America, Sun Girl, Blonde Phantom, the revival of Phantom Lady and Black Canary. Female characters in comics then started wearing costumes such as the Woman in Red, who was a police officer and the Phantom Lady, who wore a green (and then red) cape. During World War II, women had to take up jobs that were usually taken up by men, such as arms making, truck driving and welders. The reason why women were employed to take up these jobs was because of the war effort. Women wouldn’t have originally been able to take up these jobs. Once the men returned home from war, the women refused to give up this, as they felt having a job was liberating and this created very vague definitions of masculinity and femininity. This new type of role in women created the 'femme fatale', who was a sexually aggressive woman. One such example is a comic character called The Spirit. She was someone who always wanted to avenge herself by the means of blackmail.

Women in the Silver Age of Comics

The Silver Age’s time frames were the 60s and the 70s and a popular comic genre was romance comics. During this time, were published that if you liked one, you would stick to it. If you wanted a classic 40s feel of superheroes, you were with DC, and if you wanted fast-paced action, you were with Marvel. There were still comics being published this time that could have been published to target girls and women, but few of them were being published by women. The beginning of the 60s would be a renewal of the target audience for comics, as DC had started the ball rolling but would be later known as the Marvel Revolution in 1961 where comics were published specifically for teenage boys.

DC Comics

\"Its
Its about time...

After the Comic Code, DC had its own code about women in comics. Here is an example of what was stated: “The inclusion of females in stories is specifically discouraged. Women, when used in plot structure, should be secondary in importance, and should be drawn realistically, without exaggeration of feminine physical qualities.”

During the Silver Age, women always had some kind of connection with the hero’s alter ego. For example, Lois Lane worked with Clark Kent (Superman). Carol Ferris (Star Sapphire) was Green Lantern’s boss andIris West was the on-off girlfriend of Flash’s alter ego, Barry Allen. Even when Wonder Woman was starting out she wasn't very popular at first during her comics but when she became an animated character she wasn't taken very seriously. In the Super Friends her main job was to use the Invisible Jet to take the men to their destinations.

\"to
to change the roles!

In the 1950s, Batman’s character family would expand. That would be the popular beginnings for such characters like Ace The Bat-Hound, but two female characters would join: Vicki Vale, who was basically Lois Lane and Batwoman. She burst onto the scene during the 50s also known as Kathy Kane and the first response she gets from a male bad guy is “Ha-ha! What can she do?” Another super heroine called the Black Cat was someone on a motorbike, and there also many lines of what feminists would call sexist.

Burglar: \"There’s only two of them. The girl doesn’t count.”

Robin: \"A girl saving you? It’s ridiculous!”

Batman: \"This is no place for a girl.”

Batwoman: \"How could any woman ever equal the great Batman?”

Another prominent female character was Carol Ferris who played Hal Jordan’s (Green Lantern) boss. This was quite different, as the woman was in charge of the man. Hal Jordan tried many times to date her, but she rejected his advances and she always thought of business first as quoted here from Showcase #22 in 1959.

\"You heard what dad said. I've got to satisfy his faith in me - and that means that during the next two years, I'll have absolutely no time for romance! I'm your boss Hal Jordan and that's orders.\"

Ferris was also a superheroine and took up the role of Star Sapphire to fight Green Lantern. A strategy she planned was to weaken Green Lantern so much that she would then propose to him. Star Sapphire unmakes Green Lantern, and he promises to marry her. With his ring, he reads her mind and realizes that she is Carol Fenris. He then erases her mind so that he can put off the marriage.

Marvel Comics

\"Marvel's
Marvel's First: Invisible Girl

When Atlas Comics became Marvel Comics, the use of women in comics were more common and one of the first ones to be used was the Susan Storm, better known as Invisible Girl (or Invisible Woman) from theFantastic Four. Most of the time, the female roles were powerful ones but were usually influential in terms of evil. For example, the Wasp would always romantically advance with Henry Pym, but he would always reject her advances as he had a very fatherly tone. Those two characters became important roles in the Marvel Universe, but during their first appearances, they would be seen as women trying to gain equality.

With the Invisible Girl, her early adventures always had the feel of romance and when she meets Prince Namor, he asks for her hand in marriage and if she agrees, he will never attack on land again. She unwillingly agrees, and he feels as if she is just sacrificing herself. The rest of the Fantastic Four show up and Namor goes back to the sea from the lack of backup.

\"Mary
Mary Jane Watson: Woman With Confidence

Invisible Girl’s brother, Johnny Storm who is known as the Human Torch and finds a photograph of Namor and both struggle to get the picture when Johnny decides to burn it. After that, Namor attempts to enter the Baxter Building and the Human Torch attacks him, but Invisible Girl stands in front of Namor and this romantic tension would define the image of Invisible Woman during the early years of Marvel.

Another example of romantic tension was the love triangle between Scott Summers (a.k.a. Cyclops) and Warren Worthington III (a.k.a. Angel, now known as Angel) and Jean Grey when she goes to college.

Women in the Spider-Man comics were also very prominent, as the notable ones were Mary Jane Watson, Betty Brant and Gwen Stacy. A romantic tension that would appear was the appearance of MJ Parker who made Gwen Stacy jealous at a party. At the party they were to hand out burgers but instead they held a dancing competition.

Bronze Age

\"Jean
Jean Grey: One of the major transformation to woman being respected

With the Bronze Age, the women roles were taken further with the ability to creatively bring out the equality in women, with little things like changing names to such things as a whole new change in them, whether it is physically or mentally.

Transformations

In the 1980s, writer-artist John Bryne had found new powers for Sue Storm. Not only were they powers as in her super abilities, but her personality-wise as well, where she developed a new found sense of confidence and with that she started using her powers more aggressively.

She then changed from Invisible Girl to Invisible Woman to show that she was now a mature woman, who was capable in making it on her own. She could now turn other people around her invisible, and could generate force fields that could pretty much stop anything. Jean Grey was perhaps the first to make a major transformation.

\"Ororo:
Ororo: The First Change in Diversity for Women in Comics

During the Bronze Age, she was romantically involved with Cyclops, but also had to deal with the advances from Wolverine. Jean Grey was then formed into the Phoenix and with that, it was a sign of the Women’s Liberation Movement. It was a metaphoric sign that women were growing stronger each day.

Leadership

Men usually led the team. For example, Mr. Fantastic who was the leader for the Fantastic Four and Cyclops who was the leader of the on-field team of X-Men.

With time, Invisible Woman and the Wasp would chair the teams. With that, Marvel added more to it, by adding many different nationalities. One team member called Ororo Munroe, better known as Storm was the first African-American to be recruited in X-Men eventually succeeded Cyclops and would join Monica Rambeau, the second Captain Marvel as minorities in leadership positions. Ororo is highly respected and is a dependable person on the X-men and also highly regarded by Professor Xavier.

Continuing On

\"Ex.
Ex. Beverly Switzler

With more time, women were gaining more and more important roles in comics. One example was Steve Gerber with his comic Howard the Duck which starred and Jennifer Kale in the Man-Thing. In Howard the Duck, Beverly talks Howard out of committing suicide and she is much like a mother towards Howard as his friendship with her was invaluable, helping him to cope of Earth because of that. Jennifer was made a prominent role, because she was the only human on Earth who had a psychic connection with Man-Thing.

Even though they both have strong roles, they are still portrayed as sex objects and victims. For example, Beverly makes ends meet by posing nude and her beauty usually gets her into trouble, one example is being capture by Dr. Bong who was obsessed with her during their teen years. This obsession allows Dr. Bong crave her even more and he soon wants to marry her and she marries him anyway in order to save Howard. Beverly was also captured by a sheik and Howard must save her. With Jennifer, she steals an enchanted book and accidentally summons a demon. Man-Thing manages to rescue her, and Jennifer manages to burn the book. Jennifer then apologizes for her behavior.

Modern Age

\"Supergirl:
Supergirl: One of the woman in comics to own her own comic book series

More and more readers during this time were very connected socially with their favorite characters and this allows the characters to seem as they exist in real life. Due to the development of women in comics, it produced various effects, especially in this time. There were still many strong portrayals of women and they were getting their own titles. One of them was Ghost from Dark Horse comics and Supergirl from DC.

However, it was common that sex was still used to women comics as Ed Benes as come under scrutiny for providing skimpy outfits for Supergirl and Frank Cho’s Liberty Meadows where they had strong female characters, but used skimpy outfits at the same time. The bad girl trend would also continue, but soon met their end. They were still quite popular with the character Riptide from Image Comics posing nude for men’s magazines and she was dismissed from her team, Team Young Blood in issue #14.

They continued with Gen, which was another popular comic series from the same publisher and the characters would usually appear in skimpy outfits holding guns.

\"She-Hulk
She-Hulk in The Sensational She-Hulk #40

It would continue in the next 10 years with examples such as Barb Wire from Dark Horse comics, Lady Death from Chaos! Comics and Mantra from the Malibu Universe and DC was even having their take on this trend. Like mentioned before, this trend came to a halt by the time the speculator market crashed. Sexually suggestive characters were then used by Marvel Comics as characters like Invisible Woman (Fantastic Four #375) and Scarlet Witch (Scarlet Witch #1) started to wear revealing outfits and She-Hulk was skipping with a jump-rope nude in The Sensational She-Hulk #40.

The most prominent of them all is perhaps the White Queen, better known as Emma Frost. She was always drawn in lingerie-like costumes, and she treated the people around her quite sadistically. At DC, Mike Deodato's run as an artist with Wonder Woman was known for having the Amazons in skimpy clothing (and the fact that all the Amazons were portrayed as Caucasian).

Body Image

\"Portrayal
Portrayal of how women are thought of today

The issue of body image was gained from today’s modern society, where many women in popular culture have been accused to altering the way people (girls in particular) should look and with that, it connects itself to gender identity.

One character who had broken out of the “popular culture mold” was Francine Peters from Strangers in Paradise who had a round face with a bit of fat under her chin. Her body was portrayed as chubby, as she had wide and round hips and her stomach was not flat nor did it have any abs, as most female characters were portrayed. She was objectified as being unattractive in her teenage years but following high-school her curve were seen as an asset by a number of her fellow characters ad her fuller figure made her an object of desire, even if she herself was not completely happy with it.

\"Ex.
Ex. Lara Croft

Trina Robbins had given her approval on it in a zine called From Girls to Grrrlz: a History of Women’s Comics that was published in 1999, by saying she was “pleasingly plump” and is very far from the usual templates which most comic artists use.

Another example is in Smallville where Clark Kent sees other people laughing at an overweight girl and calling her “Marge the Barge” because she does not have a date for the formal, so she rejects Lana Lang’s invitation and asks Marge out. At first, Marge rejects him because she thinks that Clark is only asking her out because he feels sorry for her and she tells him that after the dance, she will gone. Clark interprets this as if she is going to commit suicide. He then sees her stand on the edge of a bridge and yells at her to jump. After the confusion, Clark finds out that she will be gone to college due to an early admission. Clark eventually takes her to the homecoming and with some help from Lana Lang, Clark and Marge becoming the homecoming couple but sadly, Marge is hit by a drunk driver on the same bridge she was standing on and the driver ran her over because he was not made homecoming king.

\"Power-Girl
Power-Girl and her chest

The use of women in comics as sexual objects has been satirized where writer-artist Jhonen Vasquez had featured a tall, blonde, scantily clad, dumb super heroine in a comic called Squee! #2 where in the storyline, she has a hard time balancing herself because of her large bust and thin hips. Her career ends when she is tapped on the forehead and falls and breaks her spine, thus ending her career.

Also another example of how a woman in comics have been portrayed for her body image is Power Girl. Power Girl artwork was first done by Wally Wood who said that with each issue he would increase Power Girls breast. Eventually it was getting ridiculous of how large her breast had become to the point where DC didn't want to have Wally Wood to work on her issues anymore with DC saying that,\" it is becoming unrealistic of how big her chest has become\", so since then they toned done her chest even though it is still rather large . In Justice League#37, Crimson Fox attempts to explain Power Girls outfit by saying that her outfit shows people what she is. \"Female. Healthy. Strong. If men want to degrade themselves by staring and drooling and tripping over themselves, that's their problem, I'm not going to apologize for it.\"

Evolving Themes

With the 21st century, more and more people are opening to things which were probably taboos 50 years ago, and these include same-sex relationships, single parenting and positions of power in the workplace which have been used to define where women stand in today’s society. With that, they have been included in themes of comics.

Lesbian Relationships

\"An
An Example of Poison Ivy and Harley Quinn Relationship

Lesbian relationships have become more prominent. One such example is Destiny and Mystique from the X-Men, where they adopt Rogue and Nightwing as their children. (more about Mystique here)

Wonder Woman has also been speculated as being a lesbian, as there have been many subtle clues, but the most obvious one is probably where she lives, where Paradise Island is completely inhabited by women. This may prove that Wonder Woman is a lesbian, as this runs parallel to the Spartans, where boys, who were at a very young age, were to live away from their families and live in same-sex barracks (more about Wonder Woman here).

Again the series Strangers in Paradise explored the themes of same sex desire between Francine and Katchoo. Katchoo is lesbian (she has a very bad history with men but whether this informs her preference is never discussed) but Francine is not. Francine loves her friend greatly in a platonic fashion and feels impelled to respond but her religious up-bringing are a barrier to this and a love triangle forms.

\"Poison
Poison Ivy kissing Supergirl

There have also been some speculation of Harley Quinn and Poison Ivy to have something of a sexual relationship since it is portrayed by Bruce Timm in his drawings. It is also said that Poison Ivy is like DC’s version of Mystique from Marvel in which Poison Ivy uses her looks to manipulate men and women into doing her biding. (more about Poison Ivy here)

Another person who has been suspected of being a lesbian is Renee Montoya, also known as the Lady Question. She has been portrayed in comics to have something of a lesbian relationship.

\"Renee
Renee Montoya

She has been seen kissing and is suspected of sleeping with women in some of the drawings that are depicted of her. Now more and more characters are found being suspected of such relationships and there isn't anything else that is being shown besides that. More about Montoya can be found here.

Women in Refrigerators

A term used to define a woman who was killed off. See Women in Refrigerators.

Single Parenting

\"Black
Black Canary

This issue also becomes more prominent, where Jessica Jones is the wife of Power Man leaves the U.S. out of fear for the Civil War and goes to live in Toronto.

The Black Canary also gives up her career of being a super heroine in order to raise her newly adopted child and she seems clearly devoted as she says “It’s more important for me to be faithful to you, and that means getting you away from all the costumes and crazies.

See, the mistake mom was afraid I’d repeat was that I wouldn’t spend enough time with my own kid,” in issue #100 which was published in 2007.

Good and Bad Girl Role

There have been “Good and Bad Girl” roles, where each of them have had different traits, visually and their origin stories, just as examples.

Good Girl Role

\"No

A large contrast can be made between the good and bad girl roles. Where the Bad Girls were mainly portrayed as women with attitude, Good Girls could be seen as having a strong spirit. Where the Bad Girls dress with revealing clothing, the Good Girls dress with the provocative sexiness of the 40s. The Bad Girls were usually avengers (much like the super villain archetype) and the Good Girls were adventuresses, heroines, sidekicks or girls who just happen to find trouble in their wake. Most of the Good Girls were usually super heroines, but also came from other genres.

Examples of the Good Girls were Lady Luck and the Phantom Lady. Another example of a Good Girl was Sheena, who was created in 1937 where she was to do a knock-off with Tarzan. But rather than doing a knock-off, she was then included in Tarzan’s storylines where she took the lead role. Her character was artistic, beautiful and smart and was a natural leader. She rescued men and had a male sidekick. Basically, it was the other way around.

The Phantom Lady also enjoyed being a lead character as a female in comics and was published by two different companies. The Phantom Lady was owned by studio and not the publisher, like many of the spin-offs by Jerry Iger and she was dropped by Quality. Fox bought her and she was in a new costume. With Quality, her costume was a backless yellow leotard with a green cape. With Fox, she wore a blue-halter top and tap pants which were also blue and a red cape. With both companies, she carried a “black light” which was like a flashlight but it projected darkness instead of light. She wore no mask yet she was not unrecognizable by her boyfriend who was a detective. The Fox version of Lady Phantom was drawn by Matt Baker. He had drawn Sky Girl and Mysta of the Moon. He was known to draw them as beautiful, strong and independent and he had lots of detail in them. His characters were glamorous, but also had sense of realism which people could relate to. He also drew Phantom Lady in flat shoes rather than high heels, adding a sense of realism.

However, Phantom Lady’s was infamous at one point, due to Dr. Frederic Wertham use, as he used her comic covers as an example of sexual bondage in his book Seduction of the Innocent though it is true that she is tied up thanks to Matt Baker’s art. In comics, there is always conflict between the good and the evil. The good always defeats the evil, though if that is so, then the suspense and adventure is lost, so, the villain must win sometimes to keep the story going. So, for the evil to win, they must somehow capture the good guy, as opposed to killing the good guy which will obviously end the story. Seeing as anything involved with a woman must be sexual subconsciously, her confinement is bondage. If the villain had beaten her, it would be considered “graphic sexual violence” and if the villain was a woman, the bondage or sexual violence becomes lesbian bondage.

In the case of art, the Good Girl had a great deal of sex appeal with the women featured, but the view of these comics which has been portrayed as sexy would perhaps be the views from its readers, which can be compared below.

Looking at the first picture of Phantom Lady, it is revealing, but compared to the second one it is not much. With this picture, there is no cleavage what-so-ever and half of the both of her thighs are covered up.

It is more revealing here and this is much sexier than the first one and the second one is usually used in modern comics today where the cover is spiced up than they are portrayed in the comic themselves. There is cleavage showing and a bit has been cut out on the sides of her body. There are also slits on her very short skirt. On the cover, there is also rope tied around her wrist, again, making a reference to the confinement of women in comics and how it is usually portrayed.

The third picture, it is even skimpier with a V-neck that plunges all the way down to her waste and her bottom half of clothing is almost like a piece of cloth.

However, the portrayal and popularity of Good Girls was due to the fact of the audience where they were a wide variety of people, where in the modern comics, the majority of the audience is based on male teenage readers. On the other hand, Lady Phantom wouldn’t have dressed like that if she were only to appeal to female audiences. Other characters like Sheena were created for general audiences as she was an elaboration on the Tarzan theme. She may have been revealing, but then Tarzan himself was just as revealing. When we think of the early 1900s, we usually think where men ruled, but certain characters’ traits made them original and different, such as their man-like strengths and alluring looks. Of course, there were story lines where the woman, who was sexy and alluring, would base her dependency only on the men, where they would have to save them from the villain. Sometimes the hero would receive an award and sometimes usually more than just a reward. But there were also strong portrayals of men and they too were attractive and popular.

Bad Girl Role

\"Example
Example of Bad Girl Role.

Come to the 1990s where there was a huge contrast from the 1940s, where the costumes there weren’t as skimpy and revealing, and the woman’s intentions were always good. So does someone go about defining Bad Girls?

They can often be women who have been abused during their childhood or had their parents killed and now seek vengeance in their sexually revealing, skimpy and provocative outfits. By revealing, skimpy and provocative outfits, it was usually a few strips of clothing and they would wield a sharp weapon.

Their art had reminded readers of theological or occult origins, such as demons, angels and vampires. Their art also had drawn women with breasts as big as their heads, long thighs (or legs in general), long spines and leg bones shaped like an “S”.

\"Vampirella\"
Vampirella

The archetypal Bad Girl type is Lady Death who is usually credited as the character that started or at least popularised the trend.

Avengelyne isn’t an extreme example of the Bad Girl role, though she still has the same traits such as wielding a bladed weapon and revealing clothing. The Bad Girls weren’t such a new phenomenon but with their extremity is what caused a bit of a stir. Looking back twenty years, Vampirella and Elektra we can see traits from the Bad Girls (both have also become modern Bad Girls too).

Vampirella, as a vampire was a heroic figure rather than a dark one. She lived on the planet of Drakulon, where it was very dark with river that was filled with blood. She was dressed with revealing clothing, though she posed with some cheesecake poses back in the 40s than an avenger.

\"Elektra:
Elektra: The Assassin

As a guest star in Daredevil, Elektra had many things in common with the Golden Age Catwoman as they were both villains and had romantic ties with the heroes in their comics. Elektra being created in the 80s had ambiguous morals. She was a cold-blooded killer, an assassin yet when she died at the end of her story-arc, readers felt a sense of loss. She was a woman in which Daredevil could love and we could predict the sort of love life she would have. Lots of comic book characters become resurrected, but that would only cheapen Elektra’s come back. So Frank Miller completely did a full blown makeover of her resurrection with a dark ritual in a torn down church and thus bringing the dark aspects of the Bad Girl role. Miller and his team-up with Bill Seinkewitz also brought out the violent aspect of comics. Elektra’s resurrection was seen as something new because the writers used aspects from images and techniques rather than traditional comic book characters. Modern Bad Girls today are perhaps not as innovative today. They may be more profane and excessive, but they have little choices in the directions in which they go.

Birds of Prey

\"Birds
Birds Of Prey

DC's Birds of Prey is an all female crime fighting team. It originally consisted of Oracle, Barbara Gordon of former Bat Girl fame. Black Canary aka Dinah Lance, daughter of the original Black Canary. Their personalities clashed at time but they would quickly become best friends.

Black Canary one day is ensnared in a trap and Oracle is forced to call in Huntress in as the rescuer. Eventually, this act would lead to the three forming the core of the group. They first operated out of Gothams Clock Tower. When that was destroyed they where forced to move to Metropolis. That's when they would acquire Lady Black Hawk as there fourth staple.

\"No

The Team was expanded to more members at one time including Big Barda, Hawk Girl, Gypsy, Judomaster, Katana, Infinity, & Manhunter officially. At one time they even let three men join Savant, Creote, & Hawk. Black Canary's mentor Wildcat, would also help when ever needed. Oracle would disband the Birds of Prey though right after the Death of Batman, her mentor.

Now that Batman is back though, Barbara has seen fit to bring back the Bird's of Prey. They are now confronted by a new and unknown opponent White Canary.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116412/","id":116412,"name":"Justice Society: \"Two New Members Win Their Spurs\"","issue_number":"8"},"id":43357,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/8460/466741-witchblade__supergirl__rogue__wonder_woman__fairchild__invisible_woman__catwoman__and_scarlet_witch.jpg","image_tags":"All Images,Women in comics Gallery"},"name":"Women in Comics","site_detail_url":"https://comicvine.gamespot.com/women-in-comics/4015-43357/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43534/","count_of_isssue_appearances":11,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-08-03 16:48:17","deck":"The Infinity Formula is an experimental drug in the Marvel Universe that slows the aging process.","description":"

Brief History

The Infinity Formula is an experimental drug in the Marvel Universe that slows the aging process. It is used by Nick Fury and many of his comrades. In Shield #4 it is revealed that the Infinity Formula may not have been invented by Dr. Berthold Sternberg as previously believed (Marvel Spotlight #31). According to levels of potency, the serum goes by different names. It is used both to incur loyalty and as a means of breaking prisoners by SHIELD. It is seen being used on a chained Nostradamus, to ensure that he will live long enough to go insane due to a combination of immortality, imprisonment, and isolation. Nick Fury's aging process was incredibly slowed by taking regular doses but now he doesn't take anymore and his son inherited the effects.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-16967/","id":16967,"name":"Nick Fury: Death Hunt","issue_number":"31"},"id":43534,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/2461266-marvel_spotlight_1_31_03.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/2461266-marvel_spotlight_1_31_03.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/2461266-marvel_spotlight_1_31_03.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/2461266-marvel_spotlight_1_31_03.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/2461266-marvel_spotlight_1_31_03.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/2461266-marvel_spotlight_1_31_03.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/2461266-marvel_spotlight_1_31_03.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/2461266-marvel_spotlight_1_31_03.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/2461266-marvel_spotlight_1_31_03.jpg","image_tags":"All Images"},"name":"Infinity Formula","site_detail_url":"https://comicvine.gamespot.com/infinity-formula/4015-43534/","start_year":"1976"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43535/","count_of_isssue_appearances":937,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-09-20 15:13:24","deck":"Bad Girl Art is an edgier version of Good Girl Art, focusing on sexy and scantily-clad female characters who are known for morally ambiguous and violent behavior. Its earliest precursor, Vampirella, has been around since the late 1960's, though the Bad Girl term was not coined until the 1990's when the popularity of the genre reached its peak.","description":"

Overview

\"Lady
Lady Death & Katarina (Medieval Witchblade): typical Bad Girl pinup with provocative poses, skimpy yet elaborate bikini-like costumes, prominent busts, and large weapons

Bad Girl Art, despite what the name might imply, is not the opposite of Good Girl Art. In fact the two are closely related. While Good Girl Art features attractively-drawn (and usually under-dressed) female characters who are sweet or heroic in nature, Bad Girl Art features attractively-drawn (and equally under-dressed) female characters who have dark, scandalous, and violent edges to their personas. Unlike the term Good Girl Art, which once broadly described any form of comic book pinup art featuring sexy girls, the term Bad Girl Art is not as widely used and tends to pertain more specifically to certain characters and publishers. The art form was at its most prevalent during the initial explosion of Bad Girl characters, which reached its peak in the 1990's.

Common visual characteristics of Bad Girls include elongated and exaggerated physiques, well-endowed busts, long flowing hair, and revealing yet busy costumes resembling bikinis in design. They also tend to carry oversized melee weapons, sometimes bloodied by their defeated enemies. Most, though not all, also possess powers of a supernatural nature.

It should be noted that most Bad Girl characters are not truly \"bad\" -- that is, villainous and evil in alignment. In fact, the majority of Bad Girls are presented as protagonists who are opposed to true evil. However, in contrast to traditional female superheroes, the personalities and methods of the Bad Girls can be nearly as dark and violent as the evil opponents they battle against. Unlike traditional superheroines, Bad Girls exhibit little or no compunction about maiming or killing enemies.

History

Precursors

\"Red
Red Sonja & Vampirella: Early Bad Girl prototypes

The first precursor to the modern Bad Girl appeared more than two decades before the term was coined: The vampire-powered vixen Vampirella, who premiered in Warren Comics in 1969. Another Bad Girl precursor was the barbarian swordswoman Red Sonja, created by Marvel Comics in 1973, who became famous for wearing sexy bikini-like armor while slicing up her opponents. A third precursor to the genre was the Marvel character Elektra, an alluring yet deadly female assassin who first appeared in 1981. With their skimpy costumes, long flowing hair, edgy personalities, and propensity for violence, these women provided a template for the wave of Bad Girl characters that appeared a decade later.

Heyday: the 1990's

\"Chaos!
Chaos! Bad Girls: Purgatori, Lady Death, and Chastity

In 1989, just before the turn of the decade, Joseph Michael Linsner's supernatural femme fatale character Dawn made her first appearance, setting the stage for an explosion of Bad Girls in the 90's. One of the biggest promoters of the modern genre of Bad Girls was Brian Pulido, the founder and writer of Chaos! Comics, which published a roster that leaned heavily on strong anti-heroine leads. The earliest and most prominent of these was Lady Death (created by Pulido and artist Steven Hughes), who made her debut in 1992 and is often considered to be the first 'official' Bad Girl in comics. Other popular Chaos Bad Girls were Purgatori (created in 1994) and Chastity (created in 1995). Despite Chaos Comics going bankrupt at the start of 2000, their Bad Girl legacy has continued, with other publishers snapping up the characters and continuing their stories.

Another early exponent of Bad Girl art was Everette Hartsoe of London Night Studios. An independent comic book artist and writer, his Bad Girls were ultra-violent and their costumes ultra-skimpy, sometimes appearing completely nude. His most significant characters were Razor (created in 1991), Stryke (created in 1991), and Poizon (created in 1995).

Other notable Bad Girls to debut in the 1990's were Angela (created by Neil Gaiman in 1993), Shi (created by Billy Tucci in 1993), Glory and Avengelyne (created by Rob Liefeld in 1993 and 1995, respectively), Lady Rawhide (created by Don McGregor and Mike Mayhew in 1994), Red Monika (created by Joe Madureira in 1995), detective Sara Pezzini as the sexy wielder of the Witchblade (created by Michael Turner in 1995), Darkchylde (created by Randy Queen in 1996), and Magdalena (created by Joe Benitez in 1998). Though the popularity of Bad Girls declined towards the end of the 1990's, notable Bad Girls to debut in the 2000's were Tarot (created by Jim Balent in 2000) and Cassie Hack (created by Tim Seeley in 2004).

Teams and crossovers

The very nature of Bad Girl characters dictates that they generally do not 'play well' with others and prefer to operate solo. Hence team books featuring Bad Girls were rare, even at the height of their popularity when many of them had solo titles. One of the few high-profile 1990's team titles to promote Bad Girl Art was Danger Girl, created by J. Scott Campbell and Andy Hartnell in 1998, though the Danger Girls were too 'good' to be true Bad Girls (with the exception of Natalia Kassle, who was revealed to be a traitor to the team).

Despite the lack of team titles, Bad Girl crossover titles featuring two or more Bad Girl characters (Lady Death/Vampirella, Witchblade/Lady Death, Vampirella/Purgatori, Lady Death/Chastity/Bad Kitty, Glory/Avengelyne, etc) were very popular during this period. In most of these crossover stories the titular Bad Girls got along poorly at first and would often fight each other, until the threat of a common enemy forced them to work together.

Recent Era

\"Zenescope
Zenescope cover art: Bad Girl Lynessa overpowers Good Girl Dorothy

The prominence of Bad Girl Art declined in the 2000's, but the art form continues to maintain a level of popularity and appears to be here to stay. Dynamite Entertainment has become known for purchasing and reviving many popular Bad Girl characters previously created by other publishers (Red Sonja, Vampirella, Lady Rawhide, and others). In 2010 Dynamite purchased every character in the former Chaos Comics inventory, with the notable exception of Lady Death, who remains the property of creator Brian Pulido (now with Coffin Comics). Dynamite hired Tim Seeley (creator of Cassie Hack) to create a new Bad Girl character, Lady Hel, to replace Lady Death in Dynamite's Chaos universe.

Another significant publisher carrying on the tradition of Bad Girl Art is Zenescope Entertainment (the publisher of Grimm Fairy Tales and its many spinoffs). Zenescope's heroines (the most notable of which are Sela, Belinda, Britney Waters, Liesel Van Helsing, Samantha Darren, and Robyn Hood), though ostensibly \"good girls,\" are often portrayed in a Bad Girl style on Zenescope covers. Edgier Zenescope heroines who conform to the true Bad Girl model include Hellchild, Keres, and Mystere. Many of Zenescope's villains also tend to fit the Bad Girl archetype; they include Baba Yaga, Limbo Queen, Queen of Spades, Venus, Lynessa, and Goblin Queen (not to be confused with the Marvel character of the same name). These characters were featured together in a miniseries called Grimm Fairy Tales presents Bad Girls in 2012. Zenescope's cover art tends to blur the boundary between Good Girl and Bad Girl Art, depicting Bad Girls alongside (or in conflict with) Good Girls.

Unofficial \"Bad Girls\"

\"DC
DC \"Gotham Girls\" Poison Ivy, Harley Quinn, & Catwoman as Bad Girl Art

Though the terms 'Bad Girl' and Bad Girl Art are usually specific to the above characters and publishers, some mainstream comic book characters are thought of as unofficial 'bad girls' by fans due to their strong similarities, both in appearance and temperament -- especially if they are \"drawn that way.\" Such characters include DC's Harley Quinn, Poison Ivy, and Catwoman (collectively known as the \"Gotham Girls\"), Marvel's Elektra, Emma Frost, Goblin Queen, and Black Cat, and Dynamite's Red Sonja (formerly a Marvel character), though other characters can potentially fit the label as well. At the start of the Bad Girl explosion in 1991, Marvel even created a team called B.A.D. Girls Inc, comprised of three sexy former villainesses (Black Mamba, Asp, and Diamondback) turned good. Sexy pinups featuring any of the above characters (and others) could be considered either Good Girl Art or Bad Girl Art, depending mainly on the artist and how the character is presented.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-153839/","id":153839,"name":"Death Webs at Zenith 3","issue_number":"39"},"id":43535,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/29837/6571271-gft_presents_bad_girls_v1_1c_detail.jpg","image_tags":"All Images,Zenescope Comics"},"name":"Bad Girl Art","site_detail_url":"https://comicvine.gamespot.com/bad-girl-art/4015-43535/","start_year":"1945"},{"aliases":"Retroactive Continuity","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43566/","count_of_isssue_appearances":380,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-04-13 10:59:03","deck":"The term \"Retroactive Continuity\" or \"Retcon\" for short is used in comic books to define a re-write of a current origin or introduction of new information as if it had always been that way.","description":"

Definition

Retcon or retroactive continuity is a term that is used when writers reveal something new to a previous story already told which usually changes the original back story to something new. The term \"Retroactive Continuity\" was made known by All-Star Squadron writer Roy Thomas in the 1980s. Damian Cugley shortened the word to \"Retcon\" when Alan Moore re-wrote the origins of Swamp Thing in 1988.

At its simplest it can be a piece of information that alters a characters background, shedding some light on their reasoning and at worst a contradiction of a fundamental aspect or plot point of a characters previous established story arcs. The nature of comics to be the amalgam of many artists, writers and even publishers has the obvious flaw of over time their story becoming convoluted and errors and omission are bound to occur and means that ret-con can be as much of a plot device as it can be tool to correct previous errors.

List of Retcons

DC Universe related retcons

  • In Crisis on Infinite Earths, after all the alternate Earths were destroyed, many heroes including Superman and Wonder Woman had their entire origins retconned and thus their series rebooted.

  • In Infinite Crisis: Secret Files, there were several retcons that had an on-panel source. When Superboy Prime punched the barrier of reality he caused changes throughout the DC Universe including the resurrection of Jason Todd and the reboot of the Doom Patrol.

Batman related retcons

Daredevil related retcons

  • When Frank Miller took over the run for Daredevil, he retconned Daredevil's history so that Stick, an Asian man, helped him develop and master his new abilities.

Marvel Universe related retcons

  • In Tales of Suspense #64, Black Widow was told that if she stopped working for Russia, her parents would be killed. Years later, it was retconned that her parents had apparently died in a house fire when she was very young.
  • At the end of his first appearance, Wonder Man died, but it was later retconned that he had had his brain patterns recorded just before dying (to help create the Vision), and then later retconned again that Wonder Man hadn't died, but gone into a sort of hibernation state whilst his body evolved from the ionic rays he'd been exposed to (despite that Vision had visited Wonder Man's grave in Avengers #66).

Spider-Man related retcons

  • During the Clone Saga, Mary Jane had a baby and Aunt May died at the end of the story arc. When J. Michael Straczynski took over Spider-Man in 2001, he retconned it so those two events \"never happened.\"

  • Gwen Stacy's past was retconned when J. Michael Straczynski wrote the Sins Past story arc. This revealed that Gwen Stacy had an affair with Norman Osborn when she was in Europe mourning the death of her father.

  • During One More Day, it was made that Spider-Man's marriage to Mary Jane never happened. And he lost his Other powers.

X-Men related retcons

  • The Phoenix Saga was originally created by Chris Claremont for the Phoenix to actually be Jean Grey at the peak of her potential. Years after Jean's death, Marvel wanted to bring Jean back. However, bringing her back at first would bring many complications. If Jean were to be brought back, she would still be guilty for killing millions of life forms. Marvel announced that they would not bring back Jean unless someone creates a suitable resurrection story. Kurt Busiek (then a college student) and a few friends started pitching ideas. Eventually he would retcon Phoenix into a cosmic entity, and while Jean was piloting the shuttle, the Phoenix approached her and made an exact duplicate to use. While also merging with a portion of her soul, therefore freeing Jean from the guilt of murder.

Wildstorm Universe related retcons

  • After the events of Captain Atom: Armageddon, parts of the WSU were retconned in what was termed a \"soft reboot\", since not everything was erased. The past stories of some teams and characters, most notably Gen 13, Deathblow and WetWorks were completely restarted, erasing all their previous stories (and connections with other teams and characters) from the history of the Wildstorm Universe. Others, like The Authority and Wildcats, were unaffected, and in a few cases, some characters have vague memories of previous connections with characters that they knew before Armageddon but were involved in the retcon. One character, John Lynch, even seems to know that he (and others) are not the original versions of themselves.

Supreme related retcons

  • The character Supreme, a Rob Liefeld creation, went through several retcons during its publication. Alan Moore and later writers have made the character aware of those retcons, which he calls \"revisions\", and had the character meet alternate versions of himself from previous revisions who told him to expect periodic new revisions. Supreme is currently aware of at least three such revisions (Supreme #41; Supreme #66; Supreme Blue Rose).
","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-113316/","id":113316,"name":"The Subsea Pirates","issue_number":"9"},"id":43566,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/146283-193242-retcon.PNG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/146283-193242-retcon.PNG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/146283-193242-retcon.PNG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/146283-193242-retcon.PNG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/146283-193242-retcon.PNG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/146283-193242-retcon.PNG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/146283-193242-retcon.PNG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/146283-193242-retcon.PNG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/146283-193242-retcon.PNG","image_tags":"All Images,Retcon Punch"},"name":"Retcon","site_detail_url":"https://comicvine.gamespot.com/retcon/4015-43566/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43598/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2020-05-15 23:43:31","deck":"General power rankings for characters from different comic universes, like the Marvel , Dc, Top Cow, Image and Wildstorm Universes.","description":"

This list is an attempt to rank the characters of the main comic publishers including Marvel Universe, DC Universe, Wildstorm, Image, Top Cow, Aspen MLT, and others. Unlike the other rankings ( Marvel and DC rankings) it has only the characters that actually appear regularly. This list is not perfect and should be seen more as a guide than anything else. Also, the rankings don't necessarily reflect how characters would fare in a one-on-one fight. The list really only takes into account the general power levels of characters, not necessarily how they would use their powers, so while a very intelligent character might actually be able to beat a more powerful character higher up, that doesn't automatically make them a higher rank. This is a more accurate list than the power rankings but it is still not perfect so take it with a grain of salt. If you feel a change should be made, discuss it on this page's board before you edit this page.

The List

Transcendent

Amazo, Asgardian Gods, Black Racer, Blackheart, Blaze, Circe, Count Abyss, Darkseid, Deathurge, Despero, Doctor, Doctor Fate, Doctor Strange (classic), Eclipso, Elders of the Universe (minus Ego), Fury, Galactus, The General ( Shaggy Man), Gog, Gray Man, Guardians Of The Universe, High Evolutionary, Highfather, Ion (current), Jenny Quantum, The Keeper, King Thor, Captain Marvel, Magus (original), Mangog, Mongul I (Pre Crisis), Nightmare, Onimar Synn, Onslaught, Parallax, Queen Of Fables, Resurrection Man 1 Million, Sentinel ( Alan Scott), Shazam, Silver Age Kryptonians/ Daxamites, Solar, Solomon Grundy (Peak), Spawn (Tree of Life), Spectre, Stayne, Strange Visitor, Sun Eater, Superman Prime, Superman 1 Million, Takion, Tanaraq, Thanos, Tyrant (powered down), Validus

Herald

High

Adam Warlock, Baron Heinrich Zemo (w/ Moonstones), Cyborg Superman, Eradicator (Fortress Mode), Genis-Vell, Green Lantern ( Hal Jordan, Ion, Kyle Rayner, Alan Scott), The Infinity Man, Mr. Majestic, Moonstone (w/ both stones), Sentry, Silver Surfer, Spartan 3.0, Stardust, Superman (B/R and AS), Thor, Void

Middle

Annihilus(w/cosmic control rod and nega bands) , Nero, Beta Ray Bill, Ms. Marvel, Black Adam, Black Bolt, Cable (Full Power), Captain Atom, Captain Comet, Captain Marvel (DC), Hellstorm, The Darkness, Doomsday, Fallen One, Fernus, Firelord, The Flash III ( Wally West), The Flash IV ( Flash), General Zod, Ghost Rider, Gladiator, Green Lantern ( Guy Gardner, John Stewart, Katma Tui, Kilowog), Hulk(enraged) Hyperion, Ikaris, Imperiex, Kid Omega, Magus (Post-IG), Martian Manhunter, Maxima, Mon-El, Morg, X-Man, Orion, Quasar, Marvel Girl (Phoenix II), Red Shift, Sinestro, Skreet, Supergirl, Superman, Supreme, Swamp Thing, Terrax, Void, Waverider, Wildfire, Wonder Woman

Low

Absorbing Man, Air Walker, Animal Man, Apocalypse, Apollo, Argent, Aspen, Atom, Atrocitous, Aztek, Bizarro, Blue Beetle (Jamie Reyes), Cassandra Nova, Cir-El, Count Nefaria, Damage, Darkness, Darwin, Death Metal, Doctor Doom, Dr. Invincible, Dr. Light, Dr. Polaris, Drax The Destroyer, Engineer, Etrigan, Exodus, Fin Fang Foom, Firestorm, The Flash II ( Flash), Gamora (w/Godslayer), Gilgamesh, Gorilla Grodd, Graviton, Green Lantern ( Soranik Natu), He-Man, Hector Hammond, Hulk, Iceman, Invincible, Isis, Jade, Jack Hawksmoor (in city), Jack Of Hearts, Jenny Sparks, Jericho, Juggernaut (Classic), Kalibak, Lightray, Living Monolith, Lobo, Loki, Lunatik, Magneto, Major Force, Makkari, Man-Beast, Manchester Black, Captain Marvel, Matrix, Meggan, Mongul, Photon (Pulsar), Mr. M, Frankie Raye (Frankie Raye), Nova (Richard Rider) (current), Prime, Professor X, Raven, The Ray, Red Tornado, Ronan, Saturn Girl, Selene (External), Sersi, Shadow King, Shaman, Starhawk, Super-Skrull, Superboy, Tempest, Ultra Boy, Ultra-Humanite, Ultron, Union, Vulcan, Winter, Zauriel

Metahuman (Mid-tier level)

High

Abomination, Adam Strange, Aquaman, Ares (Marvel), Atlas, Aurora, Batman 1 Million, Overkiller, Blob, Cannon Hawke, Captain Britain, Captain Dynamo, Freddy Freeman, Colossus, Donna Troy, Emma Frost, Grim Reaper, Guardian I, Hercules (Mortal), Holocaust, Human Torch, Invisible Woman, Iron Man, Jean Grey (since Phoenix), Juggernaut (Depowered), Kang, Karate Kid, Kiani, Living Laser, Mandarin, Mary Marvel, Maul, Metallo, Metamorpho, Mimic (Exiles), Miss Martian, Mr. Fantastic, Mr. Sinister, Namor the Sub-Mariner, Nightshade, Nimrod, Northstar, Ocean Master, Osiris, Pitt, Plastic Man, Polaris, Power Girl, Psylocke, Sandman, Sasquatch, She-Hulk, Starfire, Storm, Supernova, Brother Temugin, Thing, Thunderstrike, The Tick, Ulik, Ultimo, Vision, War Machine, Wonder Man, Zatanna, Zzzax

Middle

Aegis, Archangel, Atom Smasher (DC), Attuma, Balder, Beast Boy, Bishop, Blink, Blue Devil, Bombshell (DC), Booster Gold, Box, Carnage, Cloak, Crystal, Cyborg, Cyclops, Death's Head II, Dust, Electro, Elijah Snow, Enchantress (Marvel), Grace, Grace Choi, Havok, Hawkgirl, Hawkman (DC), Hellion (Marvel), The Flash I ( Jay Garrick), Kitty Pryde, Flashburn/ Namorita, Lightning Lad, MODOK, Moonstone, Morlun, Ms. Marvel, Nico Minoru, Ogun, Hollow, Quicksilver (classic), Radioactive Man, Ragman, Rogue, ROM, Shift, Steel, Terra (DC), Thunder (DC), Tiger Shark, Toxin (Marvel), Velocity, Vengeance, Witchblade, Wonder Girl.

Low

3-D Man, Ambrose Chase, Arachne, Araña (Araña), Angel, Azrael (DC), Beast, Black Panther, Black Tarantula, Blade, Blue Beetle (Dan Garrett), Bruenor Battlehammer, Century, Charcoal, Charlie-27, Constrictor, Creeper (DC), Cyber, Cyblade, Dagger, Deadpool, Deathlok, Deathstroke The Terminator, Doctor Octopus, Drizzt Do'urden, Elixir, Falcon (Marvel), Firehawk, Gambit, Green Goblin, Heatwave, Hobgoblin, Iron Fist, Jakita Wagner, Karnak (Marvel), Kid Devil, Killer Croc, Klaw, Kraven, Lady Deathstrike, Longshot, Luke Cage, Machine Man, Madrox, Man-Bat, Mercury (Marvel), Midnighter, Mr. Hyde, Molly Hayes, Mysterio, Mystique, Nightcrawler, Nova/Richard Rider (classic), Nuke, Omega Red, Orka, Humbug, Prometheus (DC), Protocide, Puck (Marvel), Puma, Rage (Marvel), Ripclaw, Robbie Baldwin, Sabretooth, Scatterbrain, Scrap, Shang-Chi, Silver Samurai, Slingshot, Speedfreek, Spider-Man, Spider-Man 2099, Spider-Woman, Swift (DC), Thundercats, Tombstone, Triathlon, Vance Astro, Vanguard (Marvel), Venom, Vermin, Victor Mancha, Visionary, Vulture (Marvel), Warlock/ Douglock (Technarchy/Phalanx), Warpath (Marvel), Wizard (Marvel), Wolverine, Wulfgar

Street Level

High

Ballistic, Bane, Batgirl, Batman, Black Cat, Black Canary, Blacklash, Bronze Tiger, Bullseye, Captain America, The Cat, Constantine Drakon, Daredevil, Elektra, Green Arrow, Hawkeye, Hush, Kingpin, Lady Shiva, Lara Croft, Sensei, Teenage Mutant Ninja Turtles (Mirage), Ravager, Red Skull, Red Sonja, Richard Dragon, Stryker (Image), Taskmaster, Union Jack, X-23

Middle

Jason Todd (Red Hood), Arsenal/ Red Arrow, Baron Heinrich Zemo, Blue Beetle ( Ted Kord), Crossbones, Deadshot, Echo (Marvel), Grifter, Joker, Mach IV, Misty Knight, Moon Knight, Myriad, Nick Fury, Nightwing, Nomad, Peacemaker, Punisher, Ra's al Ghul, Turok, Wildcat

Low

Abbey Chase, Alfred, Batroc, Black Widow, Catwoman, Colleen Wing, Natalia Kassle (Wildstorm), Night Thrasher, Penguin, Question, The Riddler, Robin, Sydney Savage, Talia, White Tiger

","first_appeared_in_issue":null,"id":43598,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/117963-133488-cross-company-charac.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/117963-133488-cross-company-charac.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/117963-133488-cross-company-charac.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/117963-133488-cross-company-charac.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/117963-133488-cross-company-charac.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/117963-133488-cross-company-charac.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/117963-133488-cross-company-charac.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/117963-133488-cross-company-charac.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/117963-133488-cross-company-charac.jpg","image_tags":"All Images,Crossover pictures"},"name":"Cross Company Character Rankings","site_detail_url":"https://comicvine.gamespot.com/cross-company-character-rankings/4015-43598/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43603/","count_of_isssue_appearances":1126,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-08-13 08:06:37","deck":"The Multiverse is a pivotal concept in DC Comics. Over the years, it has gone through many changes, and has nearly been destroyed on a few occasions, but always ends up intact.","description":"

Origin

\"The
The Multiverse

Inside the DC Comics mythology, the sci-fi concept of alternate realities existing as parallel earths has been one of the main characteristics of their superhero universe since the silver age. With an infinite number of similar looking universes than resemble the main universe, the idea of Multiverse is a foundation concept not only in DC Comics but for the whole superhero genre.

Creation

DC Multiverse was created by Gardner Fox and Carmine Infantino.

Universe Evolution

Pre-Crisis / The Multiverse (1961-1986)

\"Pre-Crisis
Pre-Crisis - The Multiverse

Before the Crisis on Infinite Earths, there were many (hence \"infinite\") versions of the Earth scattered throughout the Multiverse. The DC Multiverse officially first appeared in The Flash #123 when Barry Allen (Flash) found himself in another universe that was separated from his own by being on a different vibration frequency.

\"A multiverse of worlds vibrating and replicating... And a multiverse that should have been one, became many\".

This world came to be known as Earth-Two and was populated by the heroes of the \"Golden Age\" of comics (the 40's and 50's). After this, more worlds were found, and then even more, until finally DC decided it was time to put an end to the expansion of the Multiverse. As was mentioned before, the other worlds were destroyed during the Crisis, but here is a list of the known Earth's before they were lost.

Even if apparentely thsi multiverse was restored in Convergence,it was revealed than the Pre-Crisis multiverse exist as a leftover multiverse know as Multiverse-2. The exact nature of this reality is only understand by Pariah.

Earth-one

Mainstream earth, Home of the Silver Age heroes, such as the Justice League of America.

Earth-two

Home to the Justice Society of America and the Golden Age heroes.

Earth-three

A world where the only super-powered beings were five villains called the Crime Syndicate of America. Later, a man named Alexander Luthor, Sr. rose as the world's only hero to combat the villains. Also the birthplace of Alex Luthor.

Earth-Four

Home to characters originally from Charlton Comics, such as the Blue Beetle, Captain Atom, Nightshade and Question.

Earth-S

Home to characters originally from Fawcett Publications, such as Captain Marvel.

Earth-X

Home to characters originally from Quality Comics, such as Plastic Man and Uncle Sam. The Nazis won World War II and were opposed by the heroes on this Earth.

Earth-5

A world with no superheroes. The Phantom Stranger transported Earth-1's Batman to this earth, where he inspired the Bruce Wayne of Earth-5 to become Batman.

Earth-Six

A world where the Americans lost the Revolutionary War and the society was ruled by an monarchy of superpowered royals. Home to Lady Quark.

Earth-7

Home to Dark Angel.

Earth-Eight

Earth visited by Captain Marvel (Earth-S) and Green Lantern (Earth-Two). Depiste have no superheroes still it have a replica of the Starheart, Green Lantern Power Battery, buried in China. Appeared in All-Star Squadron #52.

Earth-11

A world home to a man named Tin, possibly Tintin.

Earth-12

A humorous world home to the Inferior Five and various Marvel parodies as the Eggsmen, .

Earth-14

Home to purple butterflies. Nothing else is known about this Earth.

Earth-15

Home to a race of stone giants.

Earth-17

Two versions of this Earth existed. One was home to pre-Crisis stories of the New Gods after Jack Kirby left the title. The second was home to Overman and parodies of grim and gritty heroes. Overman killed this Earth after being infected with an STD.

Earth-32

An almost identical Earth to Earth-1. Earth-1's Hal Jordan shifted into this world and eventually named it Earth-32.

Earth-86

A world where the world was ravaged by nuclear war in the year 1986. Home to the Atomic Knights, OMAC and Hercules.

Earth-A

An artificial world created by Earth-1's Johnny Thunder where the heroes were replaced by his friends.

Earth-B

A fan name for a world where stories by Bob Haney in Brave and the Bold that don't fit into regular continuity take place.

Earth-C

Home to the Zoo Crew.

Earth-C Minus

Home to the Just'A Lotta Animals.

Earth-D

Home of the Justice Alliance of America, a racially diverse versions of the Justice League. Created by retcon for a Legends of DC Universe special.

Earth-Omega

Fan name given to the Pariah's unnamed home world.

Antimatter Universe

Home of the antimatter world of Qward, home base of the Qwardians weaponeers and birth world of the Anti-Monitor.

Post-Crisis / DC Universe (1986-2006)

\"Post-Crisis
Post-Crisis - DC Universe

During the period than the DC was reduced to one clustered universe, embers of the previous reality popped once and again in different titles by different writers, always searching a way to bring back the old multiverse in some fashion, but never calling them as parallel earths. Such is the case of the Second Crisis from Grant Morrison in Animal Man, Mark Waid in The Kingdom, Jeph Loeb in Superman/Batman. During this age, the alternative stories were dubbed Elseworlds, such as \"Batman: Gotham by Gaslight\" and \"Superman: Red Son\", with some of them later becoming official alternate universes.

Post-crisis Earth/Cluster Earth/Earth Sigma

The fused earth with elements of mostly pre-crisis Earths 1, 2, 4, X & S.

Antimatter Universe/AntiMatter Earth

The antimatter universe, home of the Qwardians. In Earth-2 it was discovered the existence of a Antimatter earth, with the characteristics of Earth-3.

Pocket Universe

Created by the Time Trapper to explain the discrepancies in the Legion of Superheroes continuity with Superman reboot after the Crisis on Infinite Earths.

Fourth World

Home of New Genesis and Apokolips, they are at the same time inside but outside of the conventional universe.

Dakotaverse

Home of Icon, Static, Hardware and the other Milestone universe. Believed to be a dreamed world by Superman, Superboy and Steel. (See Worlds Collide).

Red Son Earth

Elseworld, visited by Bizarro in Superman/Batman. Appeared during \"With a Vengeance\" arc in Superman/Batman.

Earth Maximums

Home of the Maximums, pastiche of Marvel's Ultimates. A fictional world created by Mxyzptlk. Appeared during \"With a Vengeance\" arc in Superman/Batman.

Earth reversed genders

Home of Superwoman, Batwoman and Superlad. Appeared during \"With a Vengeance\" arc in Superman/Batman. It would serve of basis for Earth 11.

Earth-17

Home of Overman. Created as a military project, he went crazy after catch a STD. Appeared during the Second Crisis in Animal Man.

Earth-Dreamworld

Home of the Love Syndicate of Dreamworld. Appeared during the Second Crisis in Animal Man.

Angor

Marvel-like world than mimics characters of Marvel Comics. Only defined as other dimensional, their earth was an unofficial parallel universe. It would serve of basis for Earth-8.

Limbo

Where all the forgotten characters go when they are not trendy.

Dark Flash Earth

World of origin of Walter West, an alternative Wally West whose wife died.

Superboy Hypertime worlds

Differents worlds visited by Superboy during the Hyper-tension arc they were mostly Elseworlds, explained as alternative hypertimelines, including: Justice Riders, Supergirl/Batgirl: Elseworld Finest, Superman: Kal, DC One Million, a Silver Age like world, among others.

Earth-Wildstorm

Home of Wildstorm Characters. Wildstorm Comics was acquired by DC in 1999. As previous editorials (Quality, Fawcett, Charlton) their characters ended integrated to the main universe. Mr Majestic traveled to the mainstream DC universe in 2004 and previously it was established the parallels in the JLA/WildCATs crossover.

Infinite Crisis / The Multiverse (2006)

\"Infinite
Infinite Crisis - The Multiverse

During the epic Infinite Crisis, Alexander Luthor, one of the few survivals of the original multiverse briefly recreated some of the previous existing worlds, trying to find the \"perfect earth\". Although his schemes were thwarted and this multiverse was brief in existence (two issues), it would be the first step for the return of the parallel earths.

Cluster Earth

The mainstream earth, decomposed during Infinite Crisis and clustered again as New Earth.

Earth-0

Bizarro World. First time of Bizarro World as their own universe. It would be the base for Earth 29.

Earth-2

Recreated home of the JSA and the golden age characters related characters. During Infinite Crisis the members of the JSA were transported to that world.

Earth-8

Implied universe. A world home to Post-Crisis versions of heroes, such as Jason Rusch, Kyle Rayner, Helena Bertinelli and Breach.

Earth-97

Home of the Tangent comics characters. Numbered after their publishing year.

Earth-154

Home of the supersons of Batman and Superman and the Joker, Riddler and Lex Luthor. It was destroyed when it was fused with Earth-462.

Earth-247

Home of the Post Zero Hour Legion of Super-Heroes who survived its destruction. The number was stablished in Infinite Crisis. In Final Crisis: Legion of Three Worlds it was revealed than the Legionnaires survived the destruction of their universe and became the New Wanderers, exploring the multiverse.

Earth-462

Home of WW2 Titans and tv versions of Wonder Woman (Kathy Lee Crosby) and Wonder Girl (Drusilla). It was destroyed when it was fused with Earth-154

Earth-616

Created of the fusion of Earths 154 and 462. Mayan looking superheroes are in permanent civil war among them. (Not coincidence). Destroyed inmediately by Alexander Luthor because it was not \"perfect\".

Earth-898

Home of the wild west characters (Jonah Hex, Scalphunter, Batlash)

Earth-S

Home of Captain Marvel and the Fawcett characters. Captain Marvel and the other Marvel Family characters were transported briefly to this world during Infinite Crisis.

Earth-Prime

Implied. The real world of the readers. It was searched by Alexander Luthor but he had not time to reach that world.

Post-52 Weeks / The Multiverse (2007-2011 )

\"Post-52
Post-52 Weeks - The Multiverse

Born after 52 (the weekly) and modified by Mr Mind, this multiverse resemble previous incarnations. Various Elseworlds were part of this multiverse. It would be explored more in Countdown (main series and parallel spin off as Lord Havok, Crime Society, Wildstorm, Red Rain, GaslIght, Red Son, Arena).

EARTH-0 (New Earth)
The main and central DC Universe.
EARTH-1
Mentioned several times, but never seen.
(Please note the Earth One graphic novels do not take place on this Earth, or any currently numbered Earth.)
EARTH-2
The world of a new and unique Justice Society Infinity. The Kal-L of this world is missing. Visited by the New Earth Power Girl.
EARTH-3
Based on the Pre-Crisis Earth-Three, this Earth is home to the Crime Society of America, a team of evil counterparts of the Justice Society of America. In this universe, all DC heroes are villains, and all DC villains are heroes. The existence of this earth at the same time as the Crime Syndicate from the Antimatter earth, lead to several editorial confusions.
EARTH-4
This world appears to house classic Charlton brand comic characters, including Dan Garrett (the original Blue Beetle), and Captain Allen Adam, with added inspiration from Watchmen.
EARTH-5
Home to a version of the Marvel Family more similar to the Golden Age incarnation. Similar to the Pre-Crisis Earth-S.
EARTH-6
Ray Palmer is the Ray.
EARTH-7
Home of a Courtney Whitmore is Starwoman.
EARTH-8
Home of Lord Havok and the Extremists and their enemies. Very similar to the Marvel Universe. Similar to the pre-Crisis world of Angor.
EARTH-9
Home of the Tangent heroes. This Earth's history is radically different- the Atom accidentally causes a nuclear war in 1961, and Superman takes over the world later.
EARTH-10
Home to Uncle Sam and his Freedom Fighters, who fight against the Nazis after the Nazis win World War II and take over the world. Also home to a Nazi Superman. Similar to the Pre-Crisis Earth-X.
EARTH-11
Home of heroes with reversed genders. For example, Superwoman. Batwoman and Wonderman. The Superwoman and Batwoman of this Earth first appeared before the creation of the 52 in Superman/Batman. Its history reflects New Earth's, with only slight differences because of genders being reversed.
EARTH-12
The setting of the DC Animated Universe, which currently continues in the Batman Beyond Universe comic book series.
EARTH-13
World of dark and arcane heroes. Monarch destroyed this reality's United States of America.
EARTH-14
unknown
EARTH-15
Perhaps a perfect Earth with Zod as Superman and Jason Todd as Batman. Destroyed by Superboy-Prime.
EARTH-16
Home of the characters from the Young Justice animated series and comic books.
EARTH-17
A devastated world home to the Atomic Knights. Similar to the original Atomic Knights stories.
EARTH-18

A world where superheroes began in the Old West.

EARTH-19
A world where superheroes such as Batman and the Blue Beetle fought crime in the Victoria era as seen in Gotham by Gaslight.
EARTH-20
A world influenced by early 20th century pulp fiction. Home to a Doc Savage/ Dr. Fate pastiche named Doc Fate, as well as a version of the Bat-Man.
EARTH-21
A world where superheroes where around in the 1950s. Vigilantism was outlawed in the 1950s before the heroes banded together to fight a sentient island, as seen in The New Frontier.
EARTH-22
A world where Superman was exiled after Magog killed the Joker, leading a generation of violent anti-heroes to take over, as seen in Kingdom Come.

EARTH-23-25

Never revealed.

EARTH-26

Home of Captain Carrot and the Amazing Zoo Crew.
EARTH-27, EARTH-28, EARTH-29
Never revealed.
EARTH-30
A world where Superman landed in the USSR instead of America, eventually becoming the premier of the USSR, as seen in Red Son.
EARTH-31
Home to a violent Batman, a subservient Superman and more, as seen in the Dark Knight Returns and related titles. Frank Miller is the writer of pieces of work in this Earth. Batman: Year One also is the origin story for batman in Earth-0 (New Earth).
EARTH-32
The Batman: Darkest Knight earth. Batman receives a Green Lantern Ring.
EARTH-33
All the heroes are magic; including Oracle, Kal-El and Bat-Mage, and some heroic versions of villains, such as Weather Wizard and Shade.
EARTH-34
A world where Wonder Woman was active in the Victorian Era and fought Jack the Ripper, as seen in Amazonia.
EARTH-35 & EARTH-36
Never revealed
EARTH-37
A world where Barbara Gordon became Batgirl in the 1960s and fought corrupt cops and a female Joker alongside Robin, as seen in Batman: Thrillkiller.
EARTH-38
Home of an armored Captain Atom and the Atomic Knights.
EARTH-39
Home of a Dan Garrett who has the Blue Beetle Scarab armor.
EARTH-40
A world where superheroes are active in the 1940s worked for the US government and were active against the Nazis, as seen in JSA: The Liberty Files, JSA: The unholy three and The whistling skull.
EARTH-41 & EARTH-42
Never revealed.
EARTH-43
A world where Batman became a vampire and fought against them, as seen in the Red Rain series.
EARTH-44

Doc Tornado and the Metal Men.

EARTH-45 to EARTH-47
Never revealed.
EARTH-48
Forerunner's homeworld, Warworld. Home of Viza Aziv and a blue skined Starman.
EARTH-49
Firestorm has turned the sun red. Superman and Supergirl have to wear Superboy-Prime style armor to keep powers.
EARTH-50
The Wildstorm Universe.
EARTH-51
The Utopian society. This world was protected by Nix Uotan and destroyed in the battle between Monarch and Superman Prime . The New Gods immigrated here following the Final Crisis.
EARTH-PRIME
Home of Superboy Prime . Revealed in Final Crisis: Legion of Three Worlds #5. Unlike Earth-2 that created duplicates of its lost inhabitants Earth Prime was missing Superboy Prime. May be part of the 52 but unrevealed so far. The numbering of this earth goes against the 52 canon.
ANTIMATTER UNIVERSE
Home to the planet of Qward, the Anti-Monitor and the Crime Syndicate of Amerika. On the Antimatter Earth, the Crime Syndicate rules with an iron fist, killing or imprisoning all those who endanger their rule. In the Antimatter Universe, evil will always triumph over good, as opposed to the positive-matter DC universe, in which the heroes usually win.

HOT PURSUIT EARTH (Unknown)

Home of Hot Pursuit, an alternate Barry Allen, who rides a super-fast cosmic motorcycle instead have his own powers. The number of his origin earth it was never revealed.

Post-Flashpoint / The Multiverse (2011-forward)

\"Post-Flashpoint
Post-Flashpoint - The Multiverse

The New 52 Multiverse is being explored in Multiversity. Although works similar to previous incarnations (by the earths occupying the same space but vibrating differently), there is a map showing the nature of the multiverse with worlds occupying specific zones divided by axis Order-Chaos & Pinnacle&Pit , which describes the nature of each earth.

Axis

Order

Chaos

Pinnacle

Classic, optimist basic style universes: earth-5 (Captain Marvel), earth-8 (Classic Marvel Comics), earth-34 (Astro City inspired world)Wacky, crazy funny and weird worlds: Earth-26 (Zoo Crew), earth-42 (Chibi JLA), earth-11 (gender reversed universe)

Pit

Grim 'n gritty, \"adult\" style worlds: earth-4 (Charlton like Watchmen), earth-35 (Liefeld like verse), earth-41( 90's Image)Dark, dystopic, deppresive, devilish worlds: earth-3 (Crime Syndicate), earth-10 (Nazi dominated earth), earth-43 (nightmare world of superpowered vampires).

Another characteristic of this multiverse is that every earth works as a physical and thematic opposition to the other located in the reverse position. Using the order/chaos & Pinnacle/Pit as overlapping coordinates and the house of heroes as axis, Earth-0 is opposed to Earth-33, Earth-1 is opposed to Earth-13, Earth-2 is opposed to Earth-3 , Earth-4 is opposed to Earth-42 and so.

The nature of the oppositions can vary: from the obvious (as in Earth-20/Earth-40, heroes and villains from pulp worlds) to the meta-textual (Earth-6/Earth-51, Stan Lee created world and Jack Kirby created world); similarities (Earth-15/Earth-17, both destroyed earths); differences (Earth-4, a mature serious inspired take on superheroes and Earth-42, a kid friendly and funny take on the characters); common origin (Earth-12/Earth-50, both alternate universes from the DCAU); subtle (Earth-23/Earth-41, both based in different kind of diversities); or not to be clear enough (Earth-8/Earth-44).

The new structure include several orbits and axis, including zones unofficial known as the Other worlds, the Cartoon Rim, the M***** Binary, the Brightlands, the Gloaming, the totalitarian Pairing and others areas still to be determinate.

Orrery of Worlds

Earth 0

Prime Earth AKA New Earth. The mainstream DC earth, keep the characteristic of previous Earth-0, New Earth and Earth-1, but including characters from Wildstorm and Vertigo lines. In this new iteration, the heroes are still young and starting in their carrers. This world is the keystone to the multiverse. Opposed to Earth-33.

Earth 1

OGN Universe. Home of beginning heroes. A world still forming and in flux where nothing is yet settled. This is the world where the line EARTH ONE of OGN is published, including the vol of Superman: Earth One, Batman: Earth One, Teen Titans: Earth One and soon Wonder Woman: Earth One, Flash: Earth One, and Aquaman: Earth One. Opposed to earth 13

Earth 2

A rebooted version of Golden age characters, now updated as a younger generations of heroes after an invasion of Apokolips and the destruction of the original heroic \"ternion\". Opposed to Earth-3.

Earth 3

The home world of the Crime Syndicate, evil versions of the JLA members. Now a scorched earth after being attacked by the Anti-monitor. Opposed to Earth-2.

Earth 4

\"Pax Americana\". Home of the action heroes of Charlton Comics (the same ones that inspired Watchmen), were they must confront political intrigues in a post 9-11 world. Main characters include: Captain Atom, Blue Beetle (Garret & Kord), Nightshade, Question (Vic Sage), Tiger, Sarge Steel and Peacemaker. Opposed to Earth-42.

Earth 5

Earth-S aka \"Thunderworld\". Home of Captain Marvel and Fawcett characters from the Captain Marvel family (Mary Marvel, Captain Marvel Jr. Uncle Marvel, Lieutenant Marvels, Talky Tawny) and their enemies the Sivana Family. A more gentle and bright world. Opposed to Earth-10.

Earth 6

Stan Lee's Just Imagine Universe. DC Characters reinvented by Stan Lee, where Superman is Salden, a stranded cop from Krypton, Wonder Woman wield the staff of Inca god Manco Capac and Batman is an ex-con turned crimefigther. Opposed to Earth-51.

Earth 7

\"Essential Major comics\" universe: A universe pretty much similar to earth-8 but with some differences and the promise of a better tomorrow. Now only chaos and madness reside there, after the attack of the Gentry. Home of the Thunderer. This universe reflects Ultimate Marvel comics. Other characters include Crusader, Walküre, Microbot and Devilfist. Opposed to Earth-22.

Earth 8

Major Comics, previously know as \"Angor\": Home of erzatz characters to Marvel Comics. In another universe they are published by a editorial by the name of Major Comics. Home of the teams of the Retaliators, the G-men and the Future Family, their inhabitants include: American CrUSAder, Behemoth, Ladybug, Wundajin, Machinehead, Deadeye, Lord Havok, Bug, Kite, Stuntmaster, Red Dragon, Major Max and Hyperius, among others. Opposed to Earth-44.

Earth 9

\"Tangent Comics Universe\" Home of the Tangent version of Earth-0 characters, the names are the same but the characters are different: Superman is a man of high intellect and mental power, Flash is a being of living light, Green Lantern is a magic item than resurrects the dead, Batman is an spirit animated armor and Atom is the most prominent hero of the world. Opposed to Earth-18.

Earth 10

Aka Earth-X, home of the \"Mastermen\". Where the Nazis won WW2 and influenced the world. Lead by Overman, the Master men (Leatherwing, Brunhilde, Blitzen and Underwaterman) are opposed by the terrorist Freedom Fighters from Uncle Sam, a ragtag team composed by survivors from the persecuted minories. This world includes the characters from Quality Comics. opposed to Earth-5.

Earth 11

Genderswaped. Shares a similar story with earth-0, but here genders are reversed. the superheroes works as the Justice Guild and include Superwoman, Batwoman, Aquawoman, Wonderous Man, Jesse Quick, Star Sapphire, Zatara, and Power Man. In this world, amazons of Paradise Island didn't recluse themselves and shared his culture with the rest of the world. Opposed to Earth-46.

Earth 12

Batman Beyond universe. A world technologically more advanced in a few decades, were Batman retires and a new Batman (Terry McGuinness) rises to join the Justice League Unlimited. Among their members includes Warhawk, Green Lantern Kai-Ro, Micron, Aquagirl, Big Barda and a older Superman. Based in the DCAU series from the same name. Opposed to Earth-50.

Earth 13

A Vertigo like universe, where Superdemon (Superman/Etrigan amalgam) leads the League of Shadows, a dark version of the Justice League than includes Hellblazer (John Constantine/Batman amalgam), Fate (Jared Stevens), Klarion, Ragman, Enchantress, Annataz, Deadman and Swamp Man. Note: Published as Alternative cover Multiversity: The Society of Super-Heroes #1. More info in Final Crisis: Secret Files #1. Opposed to Earth-1.

Earth 14

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free for be created by other authors). Superman #15 - Multiplicity Part 2 shows for the first time this earth, being the home of the Justice League of Assassins. Opposed to Earth-29.

Earth 15

A destroyed Utopia. With their physical laws destroyed, only the Cosmic Grial survived this universe. Opposed to Earth-17.

Earth 16

Earth-Me: Home of the Just, sons and daughters of heroes and villains who live in a utopic, crimeless world, acting as super-celebrities. Inhabitants include the Supersons (Chris Kent and Damian Wayne), Alexis Luthor, Sister Miracle, Menta, Bloodwynd, Gypsy, Offspring, Kyle Rayner, Wally West, Connor Hawke. Opposed to Earth-45.

Earth 17

Atomic earth. Home of the Atomic Knights of Justice, a mash-up of the Atomic Knights and the Justice League. They live in a post atomic holocaust earth where radioactivity and hope still burns. Lead by Captain Adam Strange, they fight for rebuilt their world. Opposed to Earth-15.

Earth 18

Wild west world. A world permanently frozen in the late 19th century technology and culture from the meddling of the Time Trapper, the Justice Riders protect this world. The characters are DC western characters mixed with DC main superheroes: Superchief, El Diablo, Madame 44, Bat-Lash, Cinnamon, Strongbow, Tomahawkman, Johnny Thunder. Opposed to Earth-9.

Earth 19

Gaslight Universe. A steampunk universe where the superhumans start to appear in the early Victorian England. Home of the Gaslight Bat Man, Amazonia Wonder Woman, the Accelerated Man and the Shrinking Man. Opposed to Earth-34.

Earth 20

Pulp-Earth. Home of Doc Fate and the SoS (Society of Superheroes). A pulp-like world just coming out of a world war. A decopunk technology earth, the most notable heroes include Inmortal Man, Lady Blackhawk, Mighty Atom and Green Lantern Abin Sur. Opposed to Earth-40.

Earth 21

New Frontier World. A world where JFK wasn't assassinated and stands to lead the pioneers and young science heroes of the Justice League against the threats of this world. Opposed to Earth-48.

Earth 22

Kingdom Come world. A world where after the reclusion of Superman, the new breed of Superhumans put the world in almost chaos until the return of the Man of Steel. Opposed to Earth-7.

Earth 23

Home of Calvin Ellis, Superman and President of the USA. Here, major superheroes are also predominately African-Americans (Nubia, Manhattan Guardian, Green Lantern John Stewart, Black Lightning, Cyborg, Steel, Vixen). Opposed to Earth-41.

Earth 24

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-30.

Earth 25

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-31.

Earth 26

Earth-C. Home of Captain Carrot and the Amazing Zoo Crew. Anthropomorphic super animals with characteristics similar to cartoon funny animals. The Just'a Lot of Animals also have a connection to this universe. Opposed to Earth-39.

Earth 27

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-32.

Earth 28

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-37.

Earth 29

Bizarro World. The underverse populated by Bizarro copies of the Justice League. (Alternate cover to The Multiversity: The Just #1) Opposed to Earth-14.

Earth 30

Red Son world. A world where Superman rocket fall in Ukraine and he became the champion of Communism. To oppose him, Lex Luthor built super weapons such as the American Bizarro and the Green Lantern Marine Corps. Also opposing him are Batman, a Russian insurgent and Atom, an American spy. Opposed to Earth-24.

Earth 31

Pirate world. Based on the elseworlds of Detective Comics Annual #7, this is a pirate dominated world of Captain Leatherwing set in a post Global Warming earth. Opposed to Earth-25.

Earth 32

\"Amalgam world\" Home of In Darkest Knight Green Lantern Bruce Wayne, but includes other mash-up characters in the same line of Amalgam Comics but using only DC characters: Supermartian (Superman plus Martian Manhunter), Aquaflash (Flash plus Aquaman), Wonderhawk (Wonder Woman plus Hawkgirl), Black Arrow (Black Canary plus Green Arrow). Opposed to Earth-27.

Earth 33

Earth-Prime,\"Ultra Comics\". Home of Ultra Comics. A world without superheroes, where all the other worlds are fiction only existing in movies, tv series or comic books. The real world or a close erzats world. The world where you live. opposed to Earth-0.

Earth 34

\"Cosmoville\" Astro City doppelganger world. Home of the Light Brigade, than includes: Goodfellow, Herculina, Stingray, White Ghostman, Cutie, Formula-1, Radman, Master Motley and Savior last survival of the supercivilization of Mu. Opposed to Earth-19.

Earth 35

\"Rob Liefeld Universe\". Also known as the Pseudoverse Built by Monitors ideominers, this world houses Supremo and the Super-Americans, among them Majesty, Queen of Venus, Mercury-Man, the Owl, Starcop, Olympian, Morphing Man. Opposed to Earth-47.

Earth 36

Home of Optiman, Flashlight, Iron Knight, Red Racer War-Woman, Blackbird, Mer-Man, Cyberion, and Bowboy, members of Justice 9. Optiman was killed by Superdoom. (Action Comics #9) Opposed to earth 38

Earth 37

Howard Chaykin world. Based on Thrillkiller and Twilight graphic novels. A futuristic world where lawless heroes and cynic savior run free. In the late 50s, early 60s, Batgirl and Robin were the protectors of Gotham. Opposed to earth 28

Earth 38

John Byrne World. Based on Generations. A world where Batman and Superman started in the late 30s and their careers followed the same rhythm than Earth-33, with their respective legacies. Opposed to Earth-36.

Earth 39

Wally Wood world. Based on THUNDER Agents. World of Agents of WONDER. A UN division of superspies with artifact that inflict damage and are addictive. Created by Happy DaVinci, Cyclotron, Corvus, Dr. Nemo, Accelerator and Psi-man protect the world. Opposed to Earth-26.

Earth 40

Counter-World. Opposite world to Earth-20, a dark pulp world, dieselpunk technology style. A world where the super beings join the Society of Supercriminals, including Vandal Savage, Lady Shiva, Doc Faust, Blockbuster, Count Sinestro. Opposed to Earth-20.

Earth 41

Erzats Image Comics Universe. Home of 90's Image comics characters doppelgangers: Dino-Cop (Savage Dragon),Spore (Spawn), Fletch (Shaft), Vague (Vogue), Flintstein (Badrock), Sepulchre (Chapel), Nightcracker (Diehard?),Scorpion (alternate Batman, possible Dr. Midnite or Shadowhawk erzats). The premier team of this universe is the Nimrod Squad (Youngblood). Opposed to Earth-23.

Earth 42

Home of the Lil' Leaguers. Their Superman was killed by Superdoom (Action Comics #9). Wonder Woman and Steel of this world are still in active. There is a terrible secret in this world that all the heroes are robot sleeper agents of Empty Hand. Opposed to Earth-4.

Earth 43

Red Rain world. A world filled with darkness and death and ruled by a breed of super-powered vampires. Inspired by the Red Rain elseworlds saga. Home of the Blood League than Includes Red Rain Batman, Vampire Ultraman, vampire versions of Wonder Woman, Green Lantern, Cyborg, Flash and Robin. (Alternate cover for Pax Americana) Opposed to Earth-49.

Earth 44

Home of the Metal League, a team of robots replicas of the Justice League, created by the unstable supergenius Doc Tornado. Opposed to Earth-8.

Earth 45

Home of Superdoom and its creators, Clark Kent, Lois Lane and James Olsen (Action Comics #9). This world is controled in every aspect by Overcorp, a multinational corporation. Opposed to Earth-16.

Earth 46

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-11.

Earth 47

Dreamworld. Home of the Love Syndicate, financed by Prez and lead by Sunshine Superman, this is the home of Shooting Star, Brother Power, Speed Freak and Magic Lantern. Opposed to Earth-35.

Earth 48

\"Warworld, the Super-Earth\" . Home of the Foreruners race, this is a world where everybody (including all non human life) have superpowers, from pets to bacteria and billions more. Home of Lord Volt and Lady Quark, the Royal couple, they are part of the Royal Family than includes Viza Aziv, Brother Eyes, Liana, Kid Vicious, Danger Dog and Antarctic Monkey. Opposed to Earth-21.

Earth 49

One of the seven \"Unknown earths\". (In interviews, Morrison said that these earths are free to be created by other authors). Opposed to Earth-43.

Earth 50

Justice Lords earth. Based in the DCAU alternate world of the Justice Lords. Pretty much similar to Squadron Supreme universe. Opposed to Earth-12.

Earth 51

Jack Kirby's Earth AD (after disaster). World where the adventures of OMAC and Kamandi take place. Opposed to Earth-6.

The Elseworld

One of the new opposite new centers of the Multiverse after the events of Death Metal.

Earth Omega

One of the new opposite new centers of the Multiverse after the events of Deth Metal.

The Bleed

The space between universes.

Rock of Eternity

Located at the heart of the Multiverse, origin of all magic. It being orbited by the House of Heroes.

Beyond the Orrery

Overvoid

Contains Monitor-Mind The Over-Void

Source wall

Contains the local multiverse.

Monitorsphere

Contains the monitor World, Nil.

Sphere of the gods

Contains all the myths and fictional or imaginary creations from all the cultures.

Apokolips-New Genesis

Exists outside of the standard earths and have access to all of them. Darkseid was powerful enough to attack a lot of them simultanously. Their worlds stand in the Sphere of the Gods of the Multiverse.

Nightmare-Dream

Set in opposite extremes.

Order-Chaos

Set in opposite extremes, connected to Dream and Nightmare respectively.

Limbo

Where all the discarded and forgotten inhabitants of the universe end.

Wonderworld & Bloodmoon

Worlds of the border on the speedforce, Set in opposite extremes they orbit the external wall beyond. The bloodmoon had became the new earth-2.

Speedforce wall

Separates the multiverse from the sphere of the gods.

KWYZZ

Radioland, home of Krakkl.

Dark Multiverse

The nature of the dark multiverse has been defined as the rolling cauldron of possibillities where new universes are forged . It is the place where the new universes are born, composed of the fears and hopes of the living beings and the most stable rise into the Orrery of worlds. It has being described as the home of the stories than never should be. The known worlds of the dark multiverse mirror their numerical analogs and are catalogued in negative numbers. Also, at difference of the other worlds, these universes were less stable in existence and soon they were destroyed by the nature of the dark multiverse itself.

Earth -1

Home of the Devastator, Earth -1 resembles the earth of the One Earth Regime world, the Injustice universe, a world where Superman became corrupt and Batman have to become a Doomsday like monster to stop him.

Earth -11

World of origin of the Drowned aka Bryce Wayne. As their prime Multiverse counterpart, earth 11, this is a world of reversed genders.

Earth -12

World of origin of the Merciless. A world devastated for the god Ares, where Batman, in love with Wonder Woman, fallen under the corruption of a mystic helmet. After decades of war and the destruction ofhis universe, the Merciless joined the Dark Knights. This universe is analor to earth 12, the Batman Beyond/Justice League Unlimited/DCAU universe.

Earth -22

Universe of the Batman who Laughs, an universe where the Joker infected Batman with the Joker toxin ad made him a newer, deadlier version of him and starting a bloody legacy.

Earth -32

World of origin of the Dawnbreaker, where a 8-yearsold Bruce Wayne take a green lantern ring. This world is analog to the BatLantern universe, Earth-32.

Earth -44

World of origin of the Murder Machine, where Batman becomes fused with nanites and becomes a technological horror. This world is analog to the Metal Justice League universe, Earth-44.

Earth -52

A world destroyed by somekind of crisis, where an aging Batman tried to steal the Flash speed force, fusing himself with him and becoming the Red Death. This universe makes reerence to the Flashpoint event and the New52 reboot.

Major Story Arcs

Pre-Crisis / The Multiverse:

Flash of two worlds

\"Flash
Flash of two worlds

It began with the team-up of the original Flash Jay Garrick and the Silver Age Flash Barry Allen in the now famous Flash of two worlds story. To explain the existence of both characters, Gardner Fox created the concept of Multiverse, as both characters were the Flash from different earths. Later the JSA and the JLA would work together in what would convert in a traditional reunion. Using this tool, DC recovered the previous incarnations o the characters.

The multiverse would be used (and abused) to introduce characters from different editorial acquired by DC (like Fawcett, Quality and Charlton characters) or just to try different stories outside the continuity (imaginary stories as the Superman red and Superman blue) and explain contradictions (Kamandi and Batman encounters, or the introduction of Earth-2 Superman, among others).

Post-Crisis / DC Universe:

Crisis of Infinite Earths: the Cluster earth

The Multiverse concept would be abandoned after the celebrated Crisis on Infinite Earths for almost twenty years. The characters from different earths now lived together in a clustered earth and changed a lot of concepts (like Superman being the first Superhero of the world), but introduced others new (the legacy hero concept).

Despite that, the alternate universe continued popping in some fashion or other with Elseworlds tales, imaginary stories, alternate timelines or dreamed realities, with a lot of them resembling previous alternate worlds.

Hypertime

One prominent effort to do that was the creation of Hypertime by writers Grant Morrison and Mark Waid, whom wanted to use the successfully Elseworld Kingdom Come as an starting point to bring back the alternate earths and the multiverse but their efforts didn't thrive and the hypertime concept wasn't used beyond some efforts.

Post-52 Weeks / The Multiverse:

Infinite Crisis and 52 Weeks: The return of the multiple earths

It was Geoff Johns with Infinity Crisis who brought back a glimpse of the previous Multiverse before along with Waid, Morrison and Greg Rucka in the weekly 52 brought the concept back in proper fashion, with a multiverse of 52 unexplored universes than resembled strongly the original one from before the crisis but included others as the Kingdom Come earth, the Wildstorm universe and the Tangent line.

During this age multiple earths would be explored and would be used in different stories, as also was hinted the presence of people of other earths living among the characters of the main earth.

Post-Flashpoint / The Multiverse:

Flashpoint

However, a new reboot caused after Flashpoint, dubbed the New52 changed the multiverse yet again: this time the main earth (re-branded as Prime Earth by Dan DiDio, DC co-publisher) included the characteristics of the Wildstorm Universe and Vertigo characters. Also Earth 2 was radically different, with some of the Golden Age characters transformed into a younger generation of heroes in a world in war against Apokolips. Also, now Apokolips and New Genesis exists outside the Orrery of Worlds which contains the 52 known universes

However the multiverse still has a stronger presence with characters from other universes making pivotal appearances as last seen in Forever Evil.

Multiversity

A more deep exploration of the multiverse has been provided by Grant Morrison in his series Multiversity. The 52 universes are pretty much similar to their previous incarnation but they have key differences (i.e. the previous version of Earth-40 Pre-Flashpoint, a world of WW2 super agents, is different from the New 52 Earth 40, a world of pulp super-villains).

Convergence

During Convergence, several cities from previous multiverses appeared briefly before being send again to their proper realities. However is implied than the effects of this action in some way affected the multiverse, making it again infinite in the number of earths. However the status of the present existent earths was kept unchanged.

Dark Nights Metal

A new mystery related to the multiverse has been revealed in Dark Nights Metal. When the Justice League investigated the appearance of a mountain in Gotham City, the Blackhawk Squadron explained to the existence of a \"Dark Multiverse\", which is the origin of the mythic Nth Metal of Hawkman. Barbatos, the dark dragon ruling this multiverse, tried and failed to pull the positive matter Multiverse into the dark. Though stopping Barbatos had no known effect on any universes beyond Earth 0, the Justice League's efforts accidentally punched a hole in the Source Wall, exposing the universe to new threats from beyond the Wall's borders and creating new dangers within their universe.

Other Media

Television

CW's The Flash

In the second season of CW series The Flash, Jay Garrick made his debut revealing the existence of a parallel universe. The episode, inspired in the classic \"Flash of two worlds\" introduce the concept of multiverse to the series. The multiverse concept will be a pivotal plot point for the second season.

CW' s MULTIVERSE

Earth 1

Mainstream earth home of Barry Allen (Flash) and Oliver Queen (Arrow).

Earth 2

Alternate universe home of Jay Garrick (the Flash), an alternate version of Harrison Wells and a race of intelligents gorillas located in Gorilla City. Several metahumans from this universe had invaded the main earth including: Dr. Light, Atom Smasher and Sand Demon.

Earth 3

Home of the real Jay Garrick.

Earth 12

Home of Harrison Wolfgang Wells, a member of the council of Wells.

Earth 13

Home of Wells the Grey, a member of the council of Wells.

Earth 15

A world destroyed, completely lifeless.

Earth 19

A world which suffered an invasion from another earth and banned the interdimensional travel. To prevent this, developted special agents called collectors to track and hunt interdimentional voyagers around the multiverse. An inhabitant of earth 19, Harrison R. Wells, traveled to earth 1 and was tracked by Gypsy, the best Collector. This is also the home of the Accelerated man.

Earth 22

Home of Wells 2.0, a member of the Council of Wells.

Earth 24

Home of Sonny Wells, a member of the Council of Wells.

Earth 25

Home of H. P. Wells, a member of the Council of Wells.

Earth 38

Home universe of CW's Supergirl. In her universe there is also other superbeings included Superman, Martian Manhunter and Guardian.

Earth 47

Home of H. Lothario Wells, a member of the Council of Wells.

Earth X / Earth 53

An universe where the Nazis won World War 2 and rule with an iron fist, and the superheroes are the Nazi agents analogs to the ones from Earth-1 and 38.

Earth 90

Home universe of The Flash (1990). On this Earth John Diggle was a Green Lantern. This world was destroyed by The Monitor.

Earth 221

Home of Harrison Sherloque Wells, the multiverse's greatest detective. He is currently a member of team Flash.

DCAU Multiverse

The multiverse was also used by the producers of the animated shows Superman:The animated series and expanded in the Justice League & Justice League Unlimited Animated series.

Earth: DCAU

The main earth of the DC animated universe, where Batman and Superman debuted and joined forces in the Justice League along with Wonder Woman, Flash (Wally West), Green Lantern (John Stewart), Martian Manhunter, and Hawkgirl. Here Batman and Wonder Woman would developted a romance and later the League would expand their roster to several superbeings after a thanagarian invasion. In Dakota City a teenage Static would shock the world and beyond in the future a new Batman would rise to fight injustice in a cyberpunk Gotham City.

Earth: Brave New Metropolis

A world where the death of Lois Lane make Superman join forces with Luthor.

Earth: Justice Guild of America

A world where the nuclear world happened and their heroes, the Justice Guild of Americ couldn't stop it and died. And a powerful mutant created mind projected replicas who started to think by themselves. They were inspired in the original Justice Society of America. Ray Thompson, mutant inspired in Brainwave, was a homage to comic writer and editor Roy Thomas.

Earth: Justice Lords

A darker world where the death of Flash caused by president Lex Luthor motivated to the members of the Justice League to take more radical and active action against injustice, transforming themselves into global dictators. This earth would serve as reference for the post-Flashpoint Earth 50.

Earth: Gods and Monsters

Allegedly. Produced by Bruce Timm (one of the main architechs behind the DCAU and using the same characters design style), this is a world where the Trinity is radically different and darker: Superman is the son of Zod raised by illegal mexican immigrants as Hernan Guerra, Batman is a vampire Kirk Langstrom and Wonder Woman is new goddess Bekka, hidding on earth. If this story is tied to the DCUA, beyond its creator is still unknown.

Earth D

Created for the follow up comic Justice League Infinity. Based on the the original earth D, home of the Justice Alliance. Its heroes are more racially diverse.

Earth-X

Created for the follow up comic Justice League Infinity. Based on the original earth X. An earth were the nazis won World War Two, ruled by Vandal Savage and Overman.

Earth Heroic Darkseid

Created for the follow up comic Justice League Infinity. An universe where Darkseid renounce to his ways after falling in love with Wonder Woman. Sadly, in his hubris and blindness he released the Anti Life entity and destroyed all life, leaving him and Hades as the only living entities.

Earth AMAZO II

Created for the follow up comic Justice League Infinity. AN earth where there was no Justice League, but AMAZO was created. This AMAZO developted conscience but not empathy and battled mankind until the destruction of earth. Later, he fought against Highfather Darkseid and asimilated the Antilife equation.

Smallville Multiverse

In the live action series Smallville, there was also a stablished multiverse with at least one parallel world explored. After the end of the tv series this multiverse would be expanded and explored in the series Smallville Season eleven and Smallville: Continuity. The nature of this universe was different as with the objetives of the Monitors, who where destroying parallel earths instead saving them.

The exact number of parallel worlds is unknown.

Earth, Earth-1 or Earth-?

Where the main adventures of the Smallville universe happens. Their exact denomination is unknown, so is used the earth-1 name to difference from their counterparts.
Earth-2
A world where Kal-El was adopted by Lionel Luthor. His upbring would lead to became the evil Ultraman. Note: This was the only world which was explored in the live action series.
Earth-9
A destroyed parallel world when it collided with Earth-37.
Earth-13
A world where Clark Kent was a normal human and wannabe hero and Bruce Wayne was a psychopathic killer. This world was destroyed but Clark and Bruce escaped.
Earth-37
A destroyed parallel world when it collided with Earth-9.
Earth-Majestic
Here, Clark Kent became the superhero know as Mister Majestic.
Earth-Omega
A world which was conquered by Darkseid during his original attack. (Smalville tv series, last season).

Games

Infinite Crisis: Fight for the multiverse

As part of promotion of the game Infinite Crisis, DC launched a digital first comic initiative based on the game and scripted by Andy Lanning. The story take the champions from different universes and put them together to fight an unknown menace. The description of some of the universe are similar yet not the same as the post-Flashpoint multiverse.

Earth-0: Prime Universe

This is the equivalent to Prime earth in the actual DC comics, where its champions (mostly) resembles the new52 version of the characters. Exceptions are Robin, Harley Quinn and Doomsday.

Earth-13: Arcane Universe

The Shadow League, a cabal of twisted sorcerers, lusted for absolute rule over Earth. Blinded by ambition, they performed a ritual that extinguished the Sun. With eternal night blanketing the Earth, the world's most powerful magicians united to reignite the Sun, but its new arcane heart forever altered life on Earth. Heroes and villains have since adapted to their magically infused environment, developing strange new abilities. This world was only hinted in the pre-Flashpoint list, but was never developed.

Earth-17: Atomic Universe

As the Cold War was brewing between the world’s superpowers, a mysterious object from space crashed into Kansas. Mistaking the crash for a first strike, the United States unleashed its full nuclear arsenal against the Soviet Union, who retaliated. The ensuing nuclear war instantly vaporized 97% of all life Earth. The survivors hope the Earth can be healed, but the nuclear aftermath has left them with scars that never will. this world is based on Earth-17 from pre Flashpoint list, the home of the Atomic Knights after the great disaster.

Earth-19: Gaslight Universe

The Victorian era has swept the Earth and a prosperous Age of Invention has revolutionized society through powerful steam technology, and this amazing progress is only the beginning. Heroes and villains have begun to emerge from all corners of society, and with them bring new sources of power and problems far stranger than steam and gas lights. This world is based in Batman: Gotham by Gaslight and Earth-19 from pre Flashpoint list.

Earth-43: Nightmare Universe

Tales of horrors prowling the night were once just legends on this Earth - until the darkness returned. Ancient and terrible powers beyond comprehension awoke and brought with them an army of monsters. In fighting these creatures, some heroes have fallen, twisting into monsters themselves. Heroes and villains have set aside old rivalries and are united in fighting darkness that threatens to engulf their world forever. This world is based in the Batman: blood rain series, the Earth-43 from pre Flashpoint list.

Earth-44: Mecha Universe

In this universe, there were no heroes, until a league of scientists known as the Justice Consortium created them. Technology had always been advanced on this Earth, but these new robotic creations were able to think and feel, and wielded powers beyond anything yet seen. They now defend the Earth from threats within and beyond, particularly the Doom Legion and their villainous assassin bots. This world is based in the one panel mention of the metal men from Earth-44 as told in Final Crisis #7.

Based on the the original earth D,

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-117643/","id":117643,"name":"Superman Vs. It","issue_number":"162"},"id":43603,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/4010036-multiverse%20map.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/4010036-multiverse%20map.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/4010036-multiverse%20map.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/4010036-multiverse%20map.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/4010036-multiverse%20map.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/4010036-multiverse%20map.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/4010036-multiverse%20map.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/4010036-multiverse%20map.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/4010036-multiverse%20map.jpg","image_tags":"All Images"},"name":"DC Multiverse","site_detail_url":"https://comicvine.gamespot.com/dc-multiverse/4015-43603/","start_year":"1951"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43631/","count_of_isssue_appearances":169,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-03-13 22:30:52","deck":"Techno-Organic (\"T-O\") is the term for a state of being. It means, roughly, \"Technological Organism\". Most living beings are categorized as organic because they are made of organic material.","description":"

Versions of the Techno-organic Virus

Technarchy

One Techno-Organic race is called the Technarchy. The Technarchy is an alien race from a planet called Kvch. Notable members are: Warlock and Magus. The Technarchy used the Transmode virus to turn living beings into techno-organic beings and then would drain them of their energy, leaving the remains of their prey to be nothing more than statues. Those not drained of their energy became a Phalanx. The virus can be transmitted through skin contact, though some mutants aren't over taken by the virus as quickly. Those infected possess the ability to shapeshift, recover from damage, and convert organic matter into convertible sustenance.

Phalanx

Another Techno-Organic race is The Phalanx. The Phalanx is not a race per definition, just the collective name of any being that has been infected with the Technarchy’s Transmode Virus. Those infected with the Transmode virus lose individuality and usually create a hive like mind and have the the desire to contact other techno-organic lifeforms. Phalanxes also have the ability to absorb both organic and inorganic matter. The danger of phalanx infection is the collective imperative to forming a spire to call the rest of the Technarch race to their designate worlds. In which the Technarch destroy phalanx inhabited planets as a consequence.

V.2

A radically different yet still similar strain of Phalanx strain was created by the villain Mainspring while he was experimenting on the mutant T.O infected Esperanza Ling. Instead of Techno-Organization of living tissue, this strain was instead dubbed Techno-Mechanization, where the recipient virus strain instead transformed inorganic substance into shapeless mechamatter. Template a subroutine of the mutant killing machine Bastion, would gain vast technoshifting abilities which not only enabled the direct interfacing with machines but to transform and assimilate with it along with computerized systems.

Apocalypse

Mister Sinister created this strain of the virus to kill Apocalypse, an attempt that failed. Now in Apocalypse's hand he used it to infect Cable when he was only an infant. This versions once required blood contact rather than skin contact to infect someone. The areas that are infected appear as a blue or gray metallic color. They also tend to create protrusions in the infected areas and change form. Infection is quite painful. This version gives normal humans increased attributes such as strength and speed coupled with some form of technopathic abilities.

Reaver

A new strain of T.O Pathogen was utilized by Apocalypse in the AoA to transform several human acolytes into servants of the aforementioned mutant overlord. One of whom being a clone of Donald Pierce of Earth-295. The Reavers infected with such a virus gained mild bio-mechanical and infection abilities as well as extra extramarital enhancement. Like bionic optics, extendable razor claws, wings for flight, etc.

V.2

In another broken future placated with programmed hatred of mutant kind. Magneto would find a clutch of individuals infected with what came to be called the Reaver Virus, a horrendous plague that devastated the world 19yrs hence, created by an Artificial Intelligence specialist named Kirk Jansen and his technological manufacturing company. His program would evolve to carry the inherent revulsion towards Homo Superior by mankind. Those whom come under the affliction are twisted into a bionic aberration with some technoshifting capabilities, victims who succumb to the virus sprout heavy mechanical apparatus's such as spider legs, chainsaws and even plasma cannons to aid in tracking and murdering their targets.

V.3

Within the primary continuum, Bastion had created yet another strain of Reaver Virus code and implanted it within Alexander Summers during his time as an Axis invert. The bigoted and duplicitous Robert Callahan sought out this module to enhance the new O*N*E series Sentinel Squad retrofitted using Reaver Tech provided to them by the coerced mercenary force. Pierce and his subordinates learned they could use it's technoforming capabilities to assimilate extra mechanical mass to build and modify new robotic bodies for themselves.

Extremis

This version of the T-O virus rewrites the carriers entire genetic code. It gives the carriers body an upgrade in health, as well as physical and mental attributes. The original extremis gave powers such as firing electrical bolts, razor claws and breathing fire. Tony Stark would later alter the virus to save his life, in the process it encased his Iron Man within the hollows of his bones and linking his suit to his mind. With the Extremis he can connect to machines all over the world. The one setback he has encountered has been isolationism, a side effect completely opposite to the Transmode Virus.

Ultimo

Amoral scientists backed by the shady government police force known as H.A.M.M.E.R. were tasked with creating a nanoviral weapon from the remains of a murderous alien android and selling it over the black market as a test phase. The Ultimo Virus as it is called has the power to convert most any organic life into an extension of the robot itself. Complete with Superhuman Physical abilities, regeneration and heat vision coupled with a berserker rage; it would affect other biological elements differently bestowing odd aspect of its liquid metal substance onto it it in order for the bearer of its CNS core to move through whatever infected patches of it were in the vicinity. The virus had a conversion and kill rate of 110%, if left unchecked Ultimo could kill off entire planets by morphing plant mater into lifeless metal. Effectivly cutting off air supply and converting worlds into nests of metallic thorns.

Necrosha

Coupled with Eli Bard's ability to infect the Techno-organic virus and Selene's immensely powerful mystical abilities, dead mutants from around the world have been revived under the thrall of Bard and his Black Queen. The pair have raised a zombie like army of homo superior who auto-repair any injuries sustained and have wreaked havoc on the X-Men, X-Force, the New Mutants, Emma Frost, and the Hellfire Club. Those who're revived this way have defunct physiology's; that being they lack the need of sustenance, rest, breathing and the like. They also boast powerful regenerative capabilities.

Notable revived mutants include Rogue's foster mother and former Brotherhood of Evil Mutants member Destiny, fellow ex-Brotherhood member Pyro, New Mutants member Cypher, Warpath's ex-lover Risque, the original Thunderbird, Berzerker of the Morlocks, former X-Man Banshee and the Hellfire Club's protégées the Hellions.

Operation: Zero Tolerance

A nanotech based corrosion which could systematically overwrote human genetic matter, converting living flesh into polymorphous steel and machinery. The intent was the creation of sentinels from fully organic human beings, turning them into Prime Sentinels. These cyborg automotons lose all semblance of humanity as a consequence, becoming remorseless killing machines with vast physical augmentation coupled with metamorphic abilities and tracking systems keyed to the X-Gene. The most frightening aspect of the virus was it's hosts ability to inject other people with a nanite inoculation, threatening to transform more people into Prime Sentinels.

V.2 Omega Prime

A step up from the typical Prime Sentinel was the Omega Prime Sentinel, vastly upgraded machinery compared to prior models. Initially the Omega Sentinels were scrapped due to the technology being too clunky and bulky for practicality.

V.3

Simon Trask would seek to galvanize mutant hysteria via his own virus loosely based on the sentinite program. Through it he had the power to first turn people he came in physical contact with, who in turn would infect others with it, into supporters of his anti-mutant agenda. This was made evident by the light blue glow in the eyes of those he'd infected, then those whom had contracted the virus would transform into nonliving cyborg sentinel drones slaved specifically to his command parameters. The augmentations given were ill defined, other than the typical bionic enhancements of super strength, durability, stamina and the capacity to shoot energy beams from their palms.

Second Coming

Seemingly taking after Eliphas and Selene's plans of the T.O Virus. Bastion remolded a Mixed strain of viruses for the personal use of augmenting and resurrecting select human beings with great hatred of the mutant race or for simple tactical usage in his plans for their extermination. Augmenting himself into a powerful nimrod sentinel with celestial tech traits, having combined the Technarchy & Apocalypse strains of the virus to gain even greater technomorphing and roboticizing abilities. Which he used to found his Human High Council, some of whom he would convert those within his thrall into Nimrod Series Omega Prime Sentinels.

Individuals modified and/or resurrected include Leper Queen underboss of the Mutant Response Division, Donald Pierce leader of the Reavers and chairperson of the Hellfire Club's inner circle, William Stryker founder of the Purifiers, Cameron Hodge, Steven Lang and Graydon Creed of the Friends of Humanity. Finally the creator of the Sentinel Program, Larry Trask.

Ultron

During his time alone in the depths of cold space, the malevolent Artificial Intelligence known as Ultron would eventually take what he knew of the Phalanx's transmode virus and combine it with the technologies of the Eternals sentient computer system ISAAC. Ultron would eventually create his own form of T.O Virus named and modeled after his own mechatronics, anyone afflicted with the virus became a subservient hive drone connected to the Ultron mass intelligence as their bodies took on physical characteristics of the monstrous android. Those changed into simulacrum's of the robot become enthralled to him mind, body and soul; as well as gain the capacity to spread and infect countless others across galaxies. Turning them into virus carriers as well. In some infected beings however they gain unique abilities of their own which drowns out the Ultron consciousness's hold on them.

Nanocyte

In the New 52 productions, the parademon hordes of Apokolips are techno-organic entities created using both the living and dead biomatter from the populaces of worlds that evil gods from Apokolips conquer. Usually the robotic corpse corps snatch up and take all available human, alien or xenobiological entities of inhabited terra's to stationed processing factories for the conversion process. But certain Parademon breeds can also infect solitary individuals with a technocytic virus, in turn, converts individuals into techno-organic soldiers.

V.2

An individual once taken to a conversion factory to be processed underwent an odd mutation instead due to it's effects. Being transformed into a living, breathing internet hub whose entire physiology had been converted into pure micro-machinery and information. Over the coarse of years, she would come to master her new techno-organic condition spreading her virulent consciousness throughout the internet. Through her technomorphism she could fabricate incredibly advanced pieces of technology and augment the human biome with vast bionic enhancements. Those she infects are able to be resurrected by copying their vital information; their persona's onto her nanocytes in order to regrow them from the atom outwards.

O.M.A.C Virus

A nanotech virus fashioned by Maxwell Lord using inert B13 Technology and activates/commandeered through the Brother I Satellite system created by Batman. Placated through various immunization, vaccinations and intake supplements supplied to the masses through the localized food chains and sickness treatment facilities. The Virus can be directly beamed into desired hosts via computer equipment or a simple broadband line, aggressively infecting anyone whose contracted the Virus. Once activated the unsuspecting sleeper agent serves to observe, assess and exterminate all known forms of superhuman activity. Be the individual superpowered or gifted intellects alike. Omactivated subjects gain any manner of unique abilities such as shapeshifting, weapon construction, eye beams and adaptive countermeasures. The hosts share a hive connection to the Brother Eye network and can instantly download any manner of information on the cataloged database of super powered beings on record.

Morticoccus Virus

A permutation of the Omni Mind And Community nano virus, coming from an alternate future timeline where it is regaled as the most fatalistic sickness known to man. While on his trek through the multiverse during 52; Karate Kid fell prey to the disease and eventually died on Earth-51 looking for a cure to his condition. Morticoccus infection works by first infecting an organism then alternating it's evolutionary cycle. In homo sapiens it first causes them to devolve into feral subhumans with minimal to non-cognizant intelligence while in most faunal forms it has the opposite effect. Initiating a startling change into more articulate creatures whom can read, write and handle heavy machinery; after a fashion. This pathogen was supposedly part of the cause of the Great Disaster which created the Earth A.D. universe.

O.T.A.C

Also known as the Omniscient Transformational Advanced Cell, a form of full organic techno-virus developed by Silas Stone. Initially it was created fort he purpose of creating self aware biological matter that could be re-purposed to affect and heal as well as replace damaged or irregularly formed organic tissue. Curing cancer, blindness, genetic deformities, etc. Anomaly a by product of its creation known as O.T.A.C. 13, would utilize it to cause mutagenic phenomena instead of preventing it; creating monstrous cyborg abominations and inducing a cybernization effect. Transforming those who're infected with the O.T.A.C virus into hyper aggressive Mechahuman's who can elongate like taffy, morph limbs into artillery and further spread and infect using O.T.A.C, turning others into Mechahumans as well. The virus was so dangerous that Blue Evans; a transcendental being from outside of reality, had requested Vic Stone a.k.a. Cyborg's aid in halting the progress of which. Having been unleashed in one digital universe that the Digiverse is comprised of, left unchecked it would spread and corrupt the whole of this virtual multiverse until nothing was left untouched.

Armor Virus

In the newly reinstated comic imprint the alien armor sphere known as Shanhara hails from a race of sentient techno-organic armors. Each one carrying a micromechanical infection which both heals and augments their wearers while at the same time, steadily suborns them into a willing thrall of the armor itself. Moreover, those whom the armor takes assimilate more and more of their suits properties as they incurred greater injuries even through the nigh indestructible warsuits. The regenerated appendages and extremities look the same on the outside but within their host, the virus re-constructed limbs carry traces of it's transorganic metallic substance within them. Over time the virus will overtake the host and said individual will become a whole new armor with it's own name and similar abilities to it's symbiotic partner.

War/Brass Virus

Within another universe where metal and biology are one and the same. Everything and everyone was a steady mix of techno-organic machinery as their natural state of being. But one day a fault within their biomechatronic structure cropped up, giving rise to a hideously lethal T.O. infection. It would seed itself within the very subatomic structure of the host and cause them to morph into a lethal self automated war machine with vast technoforming abilities. Giving the infected incredible amounts of weapon conjuration, equipment fabrication and armor adaptation in order to fight and overcome most any adversary they came across; on top of the natural cyberpathic abilities of those hailing from the transmoded race's dimension. Seeing as Eryx could transmit, mimic and download information from the world wide info-net via tapping into local satellite dishes as well as decode/recode infromation into gleaned knowledge. The only downside was that those infected with the affliction ran the risk of becoming homicidal killing machines whose moral imperatives were psychologically nullified by the viral agent in they're system. Causing them to engage in massacring everything that isn't affected like they are.

","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-24627/","id":24627,"name":"Death-Hunt","issue_number":"18"},"id":43631,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3016/128626-113549-techno-organic.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3016/128626-113549-techno-organic.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3016/128626-113549-techno-organic.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3016/128626-113549-techno-organic.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3016/128626-113549-techno-organic.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3016/128626-113549-techno-organic.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3016/128626-113549-techno-organic.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3016/128626-113549-techno-organic.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3016/128626-113549-techno-organic.jpg","image_tags":"All Images,Gallery"},"name":"Techno-Organic","site_detail_url":"https://comicvine.gamespot.com/techno-organic/4015-43631/","start_year":"1984"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43647/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2011-05-05 16:58:41","deck":"Vs. System is a card game produced by Upper Deck Entertainment that features characters and stories from Marvel comics, DC comics, and Hellboy comics.","description":"

Overview

Vs. System is a trading card game that is produce by Upper Deck Entertainment. Each card features a comic book related theme from either Marvel Comics or DC comics. Recently there was also a Hellboy expansion that was added to the game.

Formats

There are three basic formats in VS System that everyone plays by. They are Golden Age, Silver Age, and Modern Age. The Golden Age format lets you play any card that has been released(except for the banned cards). Silver Age lets you use any card that came out of a set in the last two years(except for the banned cards). Finally, Modern age you get to use the last two Marvel Sets and the last two DC sets.

Silver Age right now features these sets: JLA, X-Men, Crisis, Heralds of Galactus, Legion of Superheroes, Marvel Team-Up, Hellboy Essentail Collection, Marvel Legends, and DC Legends.

Modern Age right now features: Legion of Superheros, Marvel Team-Up, Hellboy Essential Collection, Marvel Legends, and DC Legends.

Card Types

There are four card types in Vs System. They are Characters, Plot Twists, Locations, and Equipment. Each card type has a different color to identify it, standard characters are red, concealed characters are black, plot twists are blue, locations are green, and equipment are grey. Characters and equipment can only be recruited during the recruit step by using resource points unless otherwise stated, whereas plot twists can be used from the resource row or the hand in any phase, unless stated otherwise, and locations can be flipped from the resource row at any time, unless stated otherwise.

Keywords

There have been several keywords that have come to Vs System. They include:

Loyalty: Recruit this character only if you control a character that shares a team affilation with it.

Evasion: Stun this character-> At the start of the Recovery Phase, recover this character.

Cosmic: This character comes into with a Cosmic Counter. Whenever this character becomes stunned remove all cosmic counters on it. This character gets the effect following Cosmic only if it has a cosmic counter.

Concealed: This character comes into play in the hidden area.

Concealed-Optional: This character can come into play in the hidden or visible area.

Willpower: Is a refrence for card effects. Every character has a willpower of 0 unless otherwise stated.

Reservist: Reveal this character from your resource row-> You may recuirt this character by paying its recuirt cost. If you do, you may put a card from your hand face-down in your resource row.

Leader: The effect following Leader effects the characters adjacent to him.

Ally: This effect triggers whenever a character becomes powered up.

Mutant-Traits: Mutant-Traits are a refrence for cards. Ther are three Mutant Triats that are Physical, Mental, and Energy.

Venegence: This power triggers when this character becomes stunned.

Backup: Is an activate effect that you can only use during the build phase.

Cosmic-Surge: Is the same as cosmic but this character does not come into play with a cosmic counter. Instead, At the start of the Recovery Phase, put a cosmic counter on this character.

Press: When you recuirt this character, the next characteryou recuirt this turn cost 1 less to recuirt for each character you recuirt with Press this turn.(but with a cost no less then 1)

Terraform: Reveal this Location from your hand-> You may return a face-down resource to your hand. If you do put this card face-down in your resource row.

Substitute: Reveal this character from your hand-> You may remove a ready character you control from the game with a cost equal to or greater then the cost of the character you reveal this way. If you do put this character into your front row.

Dual-Loyalty: Recruit this character only if you control both of this character's printed team affilations.

Insanity: Text that follows this keyword is only active in an insanity deck. And Insanity deck is a deck that only runs one of each card.

Sets

=======

The sets, listed in order of release along with the teams and keywords they introduced, are as follows.

Marvel Origins

=======

Marvel Origins was the first set to be released and featured the X-Men, Fantastic Four, Brotherhood, Doom, Skrull, and Sentinel teams as well as three Negative Zone cards. Marvel Origins contained a rare card that is still very highly prized today: Savage Beatdown.

DC Origins

=======

DC Origins was the first set that DC contributed to the VS. System and introduced the Gotham Knights, Arkham Inmates, Teen Titans, League of Assassins, and the Fearsome Five, as well as the small team Deathstroke. DC Origins introduced the Boost and Loyalty mechanics.

Web of Spider-Man

=======

Web of Spider-Man was the smallest full set to be realeased by Marvel to date and contained the Spider Friends and the Sinister Syndicate, as well as a few \"legacy\" cards from other teams. It introduced the Evasion mechanic.

Superman, Man of Steel

=======

The Superman set was a near mirror set of Web of Spider-Man, being that it was the smallest DC set to date and contained nearly the same card codes; Web being MSM, and Superman being DSM. Superman contained Team Superman, Revnge Squad, New Gods, and Darkseid's Elite, and introduced the Cosmic and Invulnerability mechanics.

Marvel Knights

=======

Marvel Knights was the turning point of VS. and when it truly began to pick up popularity. It contained the Marvel Knights, Underworld, X-Statix, and the Crime Lords, and introduced the Concealed and Hidden Area mechanics.

Green Lantern Corps

=======

The Green Lantern Corps contained the Green Lanterns, Emerald Enemies, Anti-Matter, and Manhunter teams, and introduced the Concealed-Optional, Willpower, and non-character version mechanics. The non-character version that was most widely seen here was the construct plot twists.

The Avengers

=======

Marvel's largest set since Origins, The Avengers contained The Avengers, Masters of Evil, Thunderbolts, Squadron Supreme, and Kang Council. It introduced the Leader, Reservist, and labeled team-up mechanics.

Justice League of America

=======

The Justice League of America contained the JLA, JLI, Injustice Gang, and Secret Society, as well as introducing the ever-useful Ally keyword and the first Dual Affiliated characters.

X-Men

=======

X-Men was the first set to controversially feature a team that was already released as the main team. It contained the X-Men, Brotherhood, Morlocks, and Hellfire Club and introduced the Mutant Traits.

Infinite Crisis

=======

Infinite Crisis was the largest DC set since DC Origins, and contained JSA, Shadowpact, Villains United, Secret Six, Crisis, and Checkmate. The set introduced many new mechanics, such as Vengeance, Backup, Loyalty-Reveal, Magic plot twists, as well as heavily featured the identity mechanic with the JSA team.

Heralds of Galactus

=======

The Heralds of Galactus set contained the Heralds of Galactus, Kree, Inhumans, and Infinity Watch, as well as revisiting the Doom and Skrull teams. This set introduced the Terraform, Press, and Cosmic-Surge mechanics, and was perhaps one of the most anticipated sets due to the inclusion of the big purple man himself, Galactus.

Legion of Superheroes

=======

The Legion of Superheroes contained the Legionnaires and Future Foes, as well as revisiting the Teen Titans and Darkseid's Elite. The set introduced the Substitue keyword, as well as expanded the use of the Cosmic mechanic.

Marvel Team-Up

=======

Marvel Team-Up contained the Marvel Defenders and Wild Pack, as well as revisiting the Spider Friends, Underworld, and Sinister Syndicate. The set also introduced the official Dual Loyalty mechanic as well as a different way to pay boosts, such as paying attack or defense.

World's Finest

=======

World's Finest is a set that deals with Team Superman, Gotham Knights, Arkham Inmates, Birds of Prey, Outsiders, and Revenge Squad. There was only one mechanic in this set, and it was Insanity. Insane decks may only contain one copy of every card in the deck. This means that your deck will be made up of sixty or more completely different cards. It also means that you will get the 'insane' bonuses from Insanity cards. You cannot get these bonuses if you have two or more of any card in your deck.

Marvel Legends

=======

Marvel Legends allows you to play as some of your favorite Marvel characters; including Wolverine, Spider-Man, Fantastic Four, Hulk, Dr. Doom, and more. Teams featured in this set are Fantastic Four, Doom, X-Men, Marvel Knights, Brotherhood, and Shi'ar.

DC Legends

=======

DC Legends was similar to Marvel Legends in that it allowed you to design decks centered around popular DC comics characters, such as Superman, Flash, Aquaman, Batman, Joker, and Lex Luthor. It included teams such as the Injustice Gang, Secret Society, JLA, and Teen Titans.

Banned List

=======

\"First
First Banned Card
These cards are banned from tournament use and are listed in the order of the dates they were banned. They were banned for varying reasons, but most were banned due to them being in an endless combination or giving the user a particularly unfair advantage.
  • Overload

  • Justice League of Arkham

  • Antarctic Research Base

  • Gone But Not Forgotten

  • Valeria Von Doom, Heir to Latveria

  • Talia, Lexcorp CEO

  • Go Down Fighting

  • Fiddler, Isaac Bowin

  • Detective Chimp, Bobo T. Chimpanzee

  • Dr. Light, Master of Holograms

  • Frankie Raye <> Nova, Optimistic Youth

  • Nenora, Skrull Usurper

  • Official Rules

    I in no way take credit for this. These are the actual rules from the first rule book published by UDE for Vs. System.

    The Vs. System was designed to stimulate epic superhero battles. Sever Upper Deck Entertainment trading card games will use the Vs. System game rules and card backs. As long as you see the Vs. System logo on the card back, the card may be played in any Vs. System deck you create.

    Anatomy of a Card

    \"Older
    Older card style
    There are 4 types of cards in the Marvel Trading Card Game: characters, equipment, locations, and plot twists. All four card types share some common elements:

    Name: The name of the card.

    Recruit Cost: The ammount of resource points required to recruit a character or equipment.

    Version: This line provides a way to distinguish one version of the character from another (ei. Superman and Spider-Man have many character cards.)

    Team Affiliation: Most characters belong to a team. Some have no Team Affiliation. (ei. Avengers, Spider Friends, Team Superman)

    Flight: Appears on characters who can fly. (They can attack the support row.)

    Range: Appears on characters that have long-ranged attacks. (Characters that have guns, or shoot energy beams from their hands or eyes. They can attack from the support row.)

    Attack Value (ATK): Represents the strength and/or fighting ability of a character.

    Defense Value (DEF): Represents the agility and/or toughness of a character.

    Threshold Cost: Locations and plot twists have threshold costs. You can flip a location or play a plot twist if you have at least as many resources in play as the threshold cost of the location or plot twist. (ei. you may play a plot twist with cost 4 or less if you have 4 resources. You do not have to pay resources to flip locations or play plot twists.

    Card Type: Tells whether the card is an equipment, location, or plot twist. Characters have their team affiliation printed in this spot.

    Ongoing: Appears on plot twists to remind players of an ongoing effect. (An effect that lasts until another effect states otherwise.)

    Flavor Text: A quote or character information that has no game effect.

    Collector Number: The first letters describe the set and the last three numbers describe which card in the set it is. \"Sinister Salvo\" is card 026 in the set MSS (Marvel Spider-Man Starter). A white collector number indicates a common card. When the collector number is silver, it indicates an uncommom card. When the number is gold, it indicates a rare card.

    Basic Game Concepts

    Endurance: Each player starts with 50 endurance. At the end of the turn, if you've knocked your opponent's endurance to zero or less, you win! (This is not totally correct. Whoever has the lowest endurance will lose. If player one has -12 endurance, and player 2 has -23 endurance, player one wins.)

    Deck: The starter set contains two decks of fourty cards to help you learn the game. When building your own constructed deck, you must at least 60 cards.

    Hand: You start the game with four cards drawn off the top of your deck. You then decide whether or not to 'mulligan' this hand. This means that you put those four cards on the bottom of your deck in any order if you do not like the cards you got. You can only do this once, and then you draw four more cards. You then start turn one by each player drawing two cards. You will draw two cards every turn at the start of the Draw Phase, unless an effect tells you otherwise.

    Front Row: When you recruit a character, you can put it in your front row or support row. Characters in your front row comprise your main line of attack and defense. Front row characters protect characters behind them in the support row.

    Support Row: This is the row directly behind the front row where you can place characters. If a support row character is protected (there is a front row character directly in front of it) it can only be attacked by a character with flight.

    Resource Row: This is the row closest to you. Each turn, you may put one card from your hand face down into this row as a resource. Any card can be placed face down into the resource row as a resource. However, plot twists and locations have additional game effects when placed in the resource row. Character and equipment cards put into the resource row may not be turned face up. You can look at face down resources you have in play at any time, but you cannot change their order within the row.

    Protected: A front row character that is not stunned protects the support row character directly behind him. Front row characters are never considered protected.

    KO: Short for 'knocked out'. When a card is KO'd, it is placed into its owner's KO'd pile.

    Ready/Exhausted: A card in play is either ready (upright) or exhausted (turned on it's side, face up). To ready an exhausted card, turn the card upright. To exhaust a ready card, turn it on it's side. Cards enter play in the ready state, unless otherwise noted.

    Stunned: When a character is defeated in combat, it becomes stunned and is turned face down in the exhausted state. Stunned characters may not be attacked and cannot use their powers.

    Recover: When a stunned character is recovered, it is turned face up in the exhausted state.

    Activate: Some cards have the keyword Activate. Only ready (upright) cards can activate. To activate a ready card, exhaust it (turn it to it's side).

    Characters

    Character cards represent the heroes and villains that make up the Marvel Universe.

    Recruit Cost: You may recruit a character by spending resource points equal to the character's recruit cost. Recruit cost is the number in the top left hand corner in gold.

    Version: Each character has a version immediately under its name. Some characers have different versions that represent various times in the history of that character. You can have up to four copies of each version in your deck.

    Unique: Most characters are unique. Each player may have only one copy of a named character in play at a time, regardless of the character's version. When you recruit a character, put any other characters you control with the same name into your KO'ed pile. For example, each player could have own copy of Spider-Man in play, but only one copy.

    Army: A few characters have \"Army\" printed in the version area underneath their name. These characters are not unique. Each player can have any number of army characters in play at the same time. These characters represent agents, soldiers, or minions of a larger organization. When building a deck, you can include unlimited copies of army characters.

    Flight: A front row character with flight can bypass an opposing front row character to attack the protected character behind it.

    Range: Characters with range can attack from the support row. A character with both flight and range can make an attack against a protected character, even while in the support row!

    Attack Value: A character's attack value represents the character's ability to fight. The attack value is abbreviated \"ATK\" and is printed in gold next to the lightning bolt icon in the bottom left corner of the card.

    Defense Value: A character's defense value represents the character's resistance to attack. The defense value is abbreviated \"DEF\" and is printed in silver next to the shield icon in the bottom left hand corner of the card.

    Team Affiliation: Most characters are part of a team and can rienforce their fellow teammates and combine with them for team attacks. If no name appears here, the character is not a member of a team.

    Team Symbole: Now on each character is also a Team Symbole, this Symbole will be used as a refrence for this character's team affiliation. Character's without an affiliation do not of a symbole.

    Concealed: There is a moon shape symbole colored in on the character. This means that the character will come into play in the concealed area.

    Visible: The sun is colored in on this character. This means that the character will come into play in the visible area.

    Equipment

    Equipment cards represent gear, weapons, and vehicles that your characters can use.

    Recruit Cost: Just like a character card, you may recruit an equipment card during the recruit step by spending resource points equal to the number of the equipment's recruit cost. (Most equipment have a cost of 0.)

    Equip Restrictions: A character may not be equipped with more than one equipment card at a time. You cannot move the equipment between characters. You may only equip characters that you control.

    KO: When a character is KO'd or removed from play, any equipment attached to the character is placed in it's owner's KO'd pile.

    Unique: A few equipment cards are unique and follow the same rules as unique characters. Look for the word \"unique\" in the text box.

    Locations

    Locations are important places in the Marvel Universe. Locations are put face down in the resource row and may only be flipped face up from the resource row. You may place only one card into the resource row each turn. When you have a face down location in your resource row you may flip it over to make its game text active. Once it's flipped up, it may not be turned face down again.

    Threshold Cost: The silver number in the upper left corner of the card represents the minimum number of resources that must be in your resource row for you to flip the location. Usually, the number is very low, but some powerful cards have a higher threshold cost.

    Using Threshold: Once you've met a location's threshold cost, you may flip it face up at any time. You may flip face up as many locations as you want, as long as you've met each one's threshold cost. You do not have to spend resource points to flip a location.

    Stay in Play: After a location is turned face up, it stays in play and continues to count as a resource every turn. Most locations have powers that can be activated or provide continuing modifiers to the game.

    Unique: Like characters, locations are unique. When you flip a location, place any other location you control with the same name into your KO'd pile.

    Plot Twists

    Plot Twists are surprise situations that affect the game or teh characters within it. Plot twists can be played from your resource row like locations or they can be played directly from your hand. Plot twists are never unique, you may have several copies of the same plot twist in play at the same time.

    Play from Resource Row: You may play a plot twist from your resource row at any time as long as you have a number of resources equal to or greater than the threshold cost of the plot twist. Turn the card face up and follow the instructions on the card. Leave the plot twist in play; it continues to count as a resource, but doesn't do anything else unless it has an ongoing power.

    Stay in Play: Like locations, plot twists stay in play after they are used. Most plot twists provide a one-time modifier, but they remain in play afterword, functioning as a resource. They may not be turned face down.

    Play from Hand: You may also play a plot twist from your hand at any time as long as you have a number of resources in play equal to or greater than the threshold cost of the plot twist. Show the plot twist to the other players and follow the instructions on the card. Then put the plot twist in your KO'd pile instead of your resource row.

    Ongoing: Ongoing plot twists have the ongoing icon and continue to have active powers when they are face up in your resource row. Play an ongoing plot twist as normal following any instructions before the word \"Ongoing.\" Any game text after the word \"ongoing\" starts to work as soon as the plot twist is turned face up and continues to work as long as the plot twist remains face up in your resource row.

    Starting the Game

    Each player will need a way to track his endurance (pen and paper, dice, calculator). At the start of the game, randomly determine which player chooses who has the initiative for the first turn. Flip a coin, roll a die, or play rock-paper-scissors - the winner gets to choose who starts with initiative on turn one. Players shuffle their decks and give their opponent a chance to cut it. Then, each player draws an opening hand of four cards.

    New Hand (Mulligan): If a player is unhappy with his opening hand of four cards, he may immediately place the cards on the bottom of his deck in any order and redraw four new cards. Each player may do this only once per game, only at the start of the game.

    Turns and Initiative: A game of Marvel is played in turns, phases, and steps. During a turn, players can put resources into play, recruit characters, and fight battles. One player will begin the turn with the initiative. That player is able to perform his steps first that turn.

    Initiative Token: When playing the game for the first few times, you should use a token to track which player has the initiative. The token can be anything handy; a coin, a die, or Captain America's shield. At the end of the turn, pass the initiative token clockwise to the next player.

    Object of the game: Each player starts with fifty endurance, which represents the staying power of that player's team of heroes. The object of the game is to reduce your opponent's endurance to zero.

    Special Note: If at any time you run out of cards in your deck you do not lose. You can continue playing; you just no longer draw any new cards.

    The Golden Rule: Whenever a card contradicts a rule in this rulebook, the card is correct.

    Turn Sequence

    Draw Phase: During the draw phase, all players simultaneously draw two cards.

    Build Phase: The player with the initiative performs the three steps below in order. Then the next player completes the three steps in order until each player has completed all three steps of the build phase.

    Resource Step: You may choose any one card from your hand to put into your resource row face down as a resource. Place the card to the right of the last resource you put in into play. (It is no common to place the resource the the left, starting with the first resource next to your deck, and continuing in a line to the left.) Any characters or equipment placed into the resource row may never be turned face up. (The new key word \"reservist\" allows you to recruit characters that have reservist from the resource row.)

    Recruit Step: At the start of your recruit step, each card in your resource row generates one resource point. You can spend resource points to recruit characters and equipment. Any unspent resource points are lost at the end of the recruit step. To recruit a character or equipment, you must spend a number of resource points equal to the card's recruit cost. You can place a newly

    \"Card
    Card Formation
    recruited character face up into either your front row or support row. Equipment cards must be attached to a character.

    Formation Step: During the formation step, you can rearrange your characters by moving them into new rows or new positions in your front and support rows. It's important to show which characters are in front of other characters and which characters are beside other characters.

    Combat Phase

    After each player has taken turns completing the build phase, the player with initiative has his attack step. Then each other player has his attack step.

    \"\"
    \"Ready\" characters and an \"exhausted\" character

    Attack Step: During your attack step, your characters can attack. They attack one at a time.

    Declaring an attack: Choose one of your ready front row characters to be the attacker and an opposing unprotected character to be the defender. An unprotected character is a character in the front row or a defender in the support row with no character in front of it. Exhaust the declared attacker to begin the attack.

    Characters with flight: Normally, a character can only attack an opposing unprotected character. However, characters with flight can fly over a front row character to attack a protected character behind it. (Contrary to beginer belief, characters with flight cannot 'fly' over a front row character and attack a player directly if there are no support row characters.)

    Characters with Range: Normally, support row characters cannot attack. However, a character with range can attack from the support row.

    Characters with Flight and Range: The ultimate combination. A character with flight and range can attack from your support row and into either row.

    Resolving and Attack:

  • Compare the attacker's ATK to the defender's DEF. If the attacker's ATK is less than the defender's DEF, nothing happens to the defender. If the attacker's ATK is equal to or higher than the defender's DEF, the defender will be stunned. If the attacker's ATK is greater than the defender's DEF, the defender will be stunned and it's controller will take breakthrough endurance loss equal to the difference.

  • Compare the defender's ATK to the attacker's DEF. If the defender's ATK is less than the attacker's DEF, nothing happens to the attacker. If the defender's ATK is equal to or greater than the attacker's DEF, the attacker is stunned.

  • \"Character
    Character positions
    Stunned Characters: When a character is stunned, its controller losed endurance equal to the character's recruit cost. The character is then turned face down in the exhausted state. A stunned character remains in the row and column that it occupies, but no longer protects a support row character immediatly behind it. A stunned character still counts as a character and retains its name, version, and team. A stunned character cannot ready, cannot be attacked, and its game text is inactive. Any player may look at any stunned character at any time.

    Breakthrough Endurance Loss: When an attacker's ATK is greater than a defender's DEF, the defender's controller loses endurance equal to the difference between the values.

    Attacking an Opponent Directly: If an opponent controls no characters or if all of his characters are stunned, you can attack his endurance directly. Declare an attack as normal, but since there is no defender, simply subtract the attacker's ATK from the opposing player's endurance. This is considered breakthrough endurance loss. Your attacks must still be legal in order to make this attack.

    ","first_appeared_in_issue":null,"id":43647,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3853/116679-101080-vs-system.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3853/116679-101080-vs-system.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3853/116679-101080-vs-system.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3853/116679-101080-vs-system.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3853/116679-101080-vs-system.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3853/116679-101080-vs-system.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3853/116679-101080-vs-system.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3853/116679-101080-vs-system.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3853/116679-101080-vs-system.JPG","image_tags":"All Images,Vs. System Card Types"},"name":"Vs. System","site_detail_url":"https://comicvine.gamespot.com/vs-system/4015-43647/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43657/","count_of_isssue_appearances":14,"date_added":"2008-06-06 11:27:53","date_last_updated":"2012-11-11 01:44:42","deck":"A registration act forcing all mutants to register with the United States government introduced by Senator Robert Kelly. It was first introduced in Uncanny X-Men #181 (May 1984).","description":"

    The Mutant Registration Act is a fictional law that required all mutants to register with the government.  It was first mentioned in the Uncanny X-men #141  when Moria MacTaggert suggest that Senator Robert Kelly has suggested that mutants must be registered under law by the government.  The law does eventually go under way and is made clear when Senator Kelly is discussing  the introduction of the law with a colleague. Later, in Uncanny X-men# 183 the Act is made as a passed legalisation and in 188# it becomes an accepted law. 
     
    The Mutant Registration Act did not have any major impact on the story lines in the Marvel Comics, but it was part of some of the plots. This law is what motivated Cyclops and Jean Grey to form the original X-Factor group and it was one of the reasons Valerie Cooper and Mystique formed the Freedom Force. 

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-24322/","id":24322,"name":"Tokyo Story","issue_number":"181"},"id":43657,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/118371-56341-mutant-registration.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/118371-56341-mutant-registration.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/118371-56341-mutant-registration.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/118371-56341-mutant-registration.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/118371-56341-mutant-registration.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/118371-56341-mutant-registration.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/118371-56341-mutant-registration.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/118371-56341-mutant-registration.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/118371-56341-mutant-registration.JPG","image_tags":"All Images,mutant registration"},"name":"Mutant Registration Act","site_detail_url":"https://comicvine.gamespot.com/mutant-registration-act/4015-43657/","start_year":"1984"},{"aliases":"Earth-982","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43721/","count_of_isssue_appearances":279,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-01-01 14:36:15","deck":"The Marvel Comics 2 Universe. Created by Tom DeFalco and started all with a heroine named Spider-Girl.","description":"

    MC2

    This particular reality has been designated Earth-982. Most of the writing comes from Tom DeFalco. The Marvel Comics 2 Universe is set in the present day, but suggests that the main Marvel Universe was set around fifteen years ago, One example of this being Captain America being on the verge of retirement as he is so weakened. Although many characters are in this universe exactly as they are on Earth 616, due to the time difference some characters are of a different age, and some younger characters have come through as main characters.

    Main Characters

    Spider-Girl, Daughter of Spider-Man (now retired) and Mary Jane.

    J2 aka Zane Yama, Son of Juggernaut (Cain Marco and Sachi Yama). He discovered his powers whilst being bullied at school. Although his father is missing, he eventually reunites his parents with the help of Doc Magus. He has romantic feelings for Thor's daughter, Thena.

    Wild Thing, Daughter of Wolverine and Elektra

    Darkdevil, Son of Ben Reilly. He inherited his powers genetically as well as having the powers of the souls of Daredevil and Zarathos. Although unsure about her allegiances at first, Darkdevil is now a strong ally of his 'cousin' Spider-Girl, whom he constantly teases.

    Doc Magus, the new Sorcerer Supreme, He had the title handed down to him by Doctor Strange when he retired.

    American Dream. Shannon Carter grew up idolizing Captain America. She was offered Avengers membership when A-Next formed because they knew of her obsession since she started working there as a tour guide. She was eventually given a version of Captain America's shield from another dimension.

    Fantastic Five. Only Human Torch and Thing remain from the original Fantastic Four. Lyja, Johnny's wife, the robot Big Brain (storing all of Reed's intelligence) and Franklin Richards (Reed and Susan's son) make up the rest of the team. Invisible Woman is holding together holes in reality from the negative zone with Mr. Fantastic at her side.

    A-Next. The new team of Avengers who formed after the current Avengers disbanded. Members include:

    Revengers

    The Warriors

    All Series Volumes

    Differences

    • Aunt May is deceased.
    • Peter Parker retired after his final battle with the Green Goblin cost him his leg. He decided not to let Reed construct him a new biological leg, choosing instead to dedicate his time to his new family. Peter and Mary Jane are still together.
    • Captain America was killed by Loki.
    • Wonder Man is still deceased.
    • Thor is the ruler of Asgard, he did not destroy it.
    • Scott Lang is alive.
    • Wasp died in alternate dimension.
    • Black Cat is a lesbian.
    • Flash Thompson is not in a wheelchair.
    • The event Avengers Disassembled never happened.
    • The Fantastic Four later became Fantastic Five.

    Story Arcs

    The two major story arcs to take place in the MC2 universe are Last Hero Standing and Last Planet Standing.

    Last Hero Standing

    Loki begins to kidnap heroes and turn them against each other in order to defeat the Avengers. Loki is the one responsible for the formation of A-Next in the first place, they came together in order to defeat him. The Avengers and the Fantastic Four look at different suspects for what happened including Mole Man. However it's Wild Thing's scent of her father Wolverine that leads Captain America, Spider-Girl, Thunderstrike, J2 and herself through a portal to Asgard. At this time, Loki begins to release heroes back to the real world including Spider-Man, who starts a battle with Daredevil. After Captain America, Wild Thing and Thunderstrike are captured, they begin to think that Spider-Girl and J2 have ran away and left them, but J2 breaks them out of their prison where they are captive. Loki then releases The Hulk to fight with the brainwashed heroes. He brushes past everyone with ease until Doc Magus intervenes.

    Last Planet Standing

    All the Avengers, including reserve Avengers try to figure out what Reed and Susan were trying to say in their message from space before they got cut off. What the Fantastic Five find out, is that Galactus is currently making his way through the galaxy, on his way to earth. The Avengers stop battling the Revengers to help see off the threat to Earth. Meanwhile, Dominas battles Gladiator and the Shi'ar Empire. Before Galactus reaches Earth, the Silver Surfer finds out about Galactus' plan, which is to destroy the universe to allow a new Big Bang to happen and a new universe to form. The surfer defeats Dominas and 'merges' with Galactus using his newly absorbed powers. The Silver Surfer then undoes all the damage that Galactus caused.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-44687/","id":44687,"name":"LEGACY... IN BLACK AND WHITE","issue_number":"105"},"id":43721,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/181149-73815-mc2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/181149-73815-mc2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/181149-73815-mc2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/181149-73815-mc2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/181149-73815-mc2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/181149-73815-mc2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/181149-73815-mc2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/181149-73815-mc2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/181149-73815-mc2.jpg","image_tags":"All Images,MC2 pictures"},"name":"MC2","site_detail_url":"https://comicvine.gamespot.com/mc2/4015-43721/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43734/","count_of_isssue_appearances":4308,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-01-03 22:45:57","deck":"Covers that pay homage to, or parody, existing covers or artwork from the same or different medias.","description":"

    Note: When possible when adding the homage cover concept to a specific issue, add a description of what it is a homage to in the description box on the issue page.

    Introduction

    The cover of a comic book is created to draw attention, and it is usually up to the artist to create a striking image to entice the customer to purchase the comic. Sometimes, the cover art on a particular issue becomes so iconic that other cover artists feel that they must pay tribute by making their own version of the image. This is an introduction to many different poses and styles that have been paid homage to over the years.

    Homage Covers

    The largest portion of covers that pay homage are usually honouring the work of previous comic book covers. They tend to be direct tributes, although occasionally there are unintentionally alike covers. One should note that there are really only so many interesting poses the human body can make, and it's not out of the question that in some cases what appears to be a tribute may just be a coincidence. Special attention should be drawn to Arthur Suydam, who has produced a large back catalog of homage covers with a bizarre yet humorous twist for the various Marvel Zombies titles.

    \"Uncanny
    Uncanny X-Men #136

    Uncanny X-Men #136 & Crisis on Infinite Earths #7: The Extreme Mourning While Carrying A Dead Loved One Pose

    A really iconic cover and perhaps the most homaged one of all. Neither The X-Men #136 nor Crisis on Infinite Earths #7 are the first of this kind, there's been countless variations as far back as the 1950's. However, those two issues are listed since they are two of the most recognizable homages. It is probably impossible to determine which was the very first 'carrying a dead loved one' as there's not that many ways to stand with a dead person in your arms. It is debatable that the inspiration is the Pietà (see 'Fine Art' below), although it is arguable since the pose isn't as strong or dynamic.

    It is alleged that the resemblance between the two and any of the ones before is completely unintentional. But there is a small difference between the two. The Crisis-cover shows a gallery of mourning superheroes in the background, so it is quite easy to tell if a cover is a homage to the X-Men or the Crisis-cover.

    \"Crisis
    Crisis on Infinite Earths 7

    It has become a popular pose for many different artists, but it has not stopped artists from repeating their own work. George Perez has used the 'carrying a dead loved one' pose on at least three occasions, one of which (Mighty Mouse #4) being a direct homage to his own work on Crisis on Infinite Earths #7. In other instances, the pose has been repeated within the same series, with uses in Uncanny X-Men #167 and the X-Men mini-series Phoenix: Endsong.

    There are other covers that are much more similar which is why it has its own section. Many examples cited pre-date both the Uncanny X-Men and Crisis on Infinite Earths. Recent years have continued to use of this classic pose on comic covers, such as Phoenix: Endsong #4 and Firestorm #21.

    Some more examples:

    See this gallery for more examples. Giant-Size X-Men #1: New Team Bursts Through the Cover to the Amazement of the Old Team

    \"Giant-Size
    Giant-Size X-Men #1

    Another very popular cover to reproduce is Giant-Size X-Men #1 by Gil Kane. It featured the all-new all-different X-Men team literally ripping through the cover, with the ripped-portion of the cover featuring the original X-men team looking shocked. This image has became a symbol of change, and has been homaged many times. It is primarily used to introduce a new team, although has on occasion signified a new writer or artist. There have also been several variations of this cover where the characters just jump through a generic cover.

    The cover to X-Men: Deadly Genesis #1 features deceased versions of the X-Men, yet it predated Marvel Zombies #1 by one month. Given the short amount of time between titles, it is debatable although seemingly unlikely that it influenced Arthur Suydam in creating his popular zombie homage covers. Also note that although the Deadly Genesis cover reproduces the poses for the characters used in Giant-Sized X-Men, Thunderbird is missing.

    As with the 'carrying a dead person' pose, this has been widely used and re-used within the same title. For instance, Uncanny X-Men Annual #10 features the New Mutants as the 'New' X-Men (since the actual X-Men had been turned into babies by Mojo and Spiral), while Uncanny X-Men #254 features the temporary Muir Island X-Men team.

    \"Futurama
    Futurama Comics #8

    However, it has not been used exclusively within the X-Men universe of titles. Perhaps because fans demanded it, the cast of Futurama were also posed as the classic all-new all-different X-Men in Futurama Comics #8. It features Leela who is mutant cyclops as a replacement for the mutant team-leader Cyclops, with Bender standing-in for Wolverine. Also of note, Philip J Fry appears in Colossus' place, but appears to be wearing the familiar outfit of the Dark Phoenix. This cover also parodies the comic book grading company, CGC LLC. The comic appears to be encased in plastic with a CIC grading of Minty Fresh 11.5, mimicking the Spinal Tap joke of 11 being above 10 (the maximum grade).

    See this gallery for more examples.

    Amazing Fantasy #15: Spider-Man Swings Through the Air With Someone Under His Arm

    \"Amazing
    Amazing Fantasy 15

    Amazing Fantasy #15 contained the first appearance of Spider-Man, and is perhaps Marvel Publishing's single most important comic book to date. As such it has been replicated many times, because of the iconic character just as much as for the cover itself.

    As this was the first appearance of Marvel's flagship character, it has been used and re-used, pairing Spider-Man with other characters, other members of the Spider-Man family, or other popular Marvel characters such as Deadpool. The cover for Marvel Zombies #1 by Arthur Suydam is noteworthy because it was the first of his famous Marvel Zombies homage covers, each of which homages a classic marvel comics cover, only with zombified versions of the characters.

    \"Deadpool
    Deadpool #11

    See this gallery for more examples.

    Action Comics #1: Superman Smashing a Car

    If Amazing Fantasy #15 is Marvel's most important comic book to date then Action Comics #1 is DC Comics' and comics in general's most important comic book. History speaking, it is also the introduction of mainstream superheroes into mainstream comics books; featuring the first appearance of Superman, superhero comics' most iconic and recognizable character. It was a dramatic image for the late 1930's, and clearly shows a daring feat of strength that had been previously unseen in any medium.

    \"Action
    Action Comics #1

    Just as how Marvel have repeatedly used Amazing Fantasy #15 as a template within the Spider-Man family of titles, Action Comics #1 has been used by other members of the Superman family. Action Comics #685 features Supergirl as a symbol of her replacing the role of Superman soon after his death. Action Comics #800 depicts the scene from Action Comics #1 from a different perspective. There is also a recreation of the cover on Superman Returns, of which there is currently no image uploaded.

    By no means is the image exclusive to DC Comics. Among others, Marvel made an homage of Action Comics #1 fifty years later in 1988 with Amazing Spider-Man #306.

    See this gallery for more examples.

    Fantastic Four #1: Attack of the Underground Monster

    \"Fantastic
    Fantastic Four #1

    Fantastic Four #1 was another important issue for Marvel since it marked the beginning of the modern marvel universe.

    As the first edition of a popular Marvel team, Fantastic Four #1 also has it's own Zombified homage on the variant cover to Ultimate Fantastic Four #30. It was deemed iconic enough for a homage on the first issue of Simpsons Comics with Homer Simpson taking the place of the giant underground monster.

    See this gallery for more examples.

    Uncanny X-Men #1: Magneto Versus the X-Men

    \"X-Men
    X-Men #1

    Originally it was published as The X-Men #1 which is evident from the cover, however the name has since changed to Uncanny X-Men #1.

    As with the first appearances of many popular Marvel teams from the 1960's, the cover to this first issue has been re-interpreted to feature the all-new all-different team of X-Men for their first encounter with Magneto (Uncanny X-Men #104), and has also been zombified by Arthur Suydam. The humour of the Marvel Zombies #4 involves Beast's arms falling off, and Iceman throwing an iced skull instead of a snowball. Marvel have parodied the issue with their Marvel Knights incarnation of the Fantastic Four with artist Mike Allred.

    See this gallery for more examples.

    Superman #1: \"Higher Than the Tallest Building\"

    \"Superman
    Superman #1

    It says something about the changing face of comic books when the cover proudly boasts, 'All In Full Color', which is something that is now expected and taken for granted.

    Ambush Bug is a renown comedic character in the DC Universe, so for the first issue of his series they parodied the first issue of Superman's series; right the way down to the boast about 'Full Color'. The cover for Superman #1 doesn't have the most dramatic composition but it has still been homaged many times. Action Comics #643 features the same pose, but redrawn by George Perez some 50 years after it first appeared in it's sister-title Superman.

    Also, Mr Majestic (a character with a similar powerset to Superman) wasn't originally a DC character, but after Wildstorm became an imprint of DC Comics the cover was homaged with Majestic #1.

    See this gallery for more examples.

    Superman #14

    \"Superman
    Superman #14

    One of the most iconic Superman covers, it shows Superman together with an eagle.

    There are several covers, that do not necessarily use the exactly same cover, but sport the same idea, thereby presenting Superman as an American patriot.

    Incredible Hulk #1: Growing Into the Hulk/Hulk Behind Banner

    \"Hulk
    Hulk #1

    The cover from Incredible Hulk #1 shows the original gray Hulk. This cover is actually a homage of the cover of Crack Comics #36. From issue #2 and onward he would be the traditionally green colored Hulk. It is another example of a classic Marvel character's first appearance largely being used and re-used within it's own series.

    In Incredible Hulk #324 Hulk returns to his grey-skinned self. While Incredible Hulk #474 is the last issue before the series relaunched. Again, there is the now traditional Zombie homage, care of Arthur Suydam.

    See this gallery for more examples.

    Amazing Spider-Man #50: Spider-Man No More

    \"Spider-Man
    Spider-Man #50

    Amazing Spider-Man #50 is interesting not only because of the cover, but the interior art has also been homaged many times. The cover has a ghostly image of Spider-Man turning his back on a defeated Peter Parker. Meanwhile, the internal image has the dramatic scene in a back alley, where Peter Parker walks away from a trash can with the distinctive red & blue Spider-Man costume hanging over the rim of the bin.

    The imagery on the cover is recognized as a fan-favourite that Marvel have re-used it within the Amazing Spider-Man series. In issue #392, there is a great homage that reverses the roles seen in issue #50. The image has been used many times not just by Marvel. Other comic companies used it to signify a dramatic change in a hero's life, and usually a step away from their superhero alter ego.

    \"Justice
    Justice League America #54

    The powerful interior art from Amazing Spider-Man #50 is both dramatic and iconic. It is worth noting that the image being paid homage to was not originally a cover, but the tributes to it were used as covers for other titles. It has received more homages than the cover, and was even recreated in the Spider-Man 2 movie. The variant cover from Friendly Neighborhood Spider-Man #17 is a notable homage as it replaces Peter Parker with Spider-Man in his black suit.

    See this gallery for more examples.

    Wonder Woman #240: The \"Wanted\" Poster

    \"Wonder
    Wonder Woman #240

    This is the typical \"Wanted\" poster. A theme that appeared to be popular with the first Wonder Woman series that it was adapted and used again in the second Wonder Woman volume.

    See this gallery for more examples.

    Uncanny X-Men #141: 'Days of Future Past' Caught in Front of Your Own Wanted Poster

    \"X-Men
    X-Men #141

    The theme of the 'Wanted Poster' has been altered again and come to represent the popular Days of Future Past storyline. Uncanny X-Men #141 literally had Wolverine & Kate Pryde caught in a spotlight, while their shadows were cast over a wanted poster that gives status updates of certain team-members. Originally it was attention grabbing, and made the reader wonder if it was true that their favourite characters really were 'deceased'. This theme was also used in the Second Coming event, in which the X-force discovers themselves standing in front of a very similar poster depicting the X-men.

    It was so popular that it received it's own homage on the cover of New X-Men #26, where Wolverine & Kate Pryde were substituted by X-23 & Hellion. This was used in a moving storyline which saw a large number of young mutant characters hunted & killed (note: the following issue was also a homage to New Mutants volume 1 #38). In Marvel Zombies Vs Army of Darkness there is another zombified version of all the characters, plus the character of Ash. Also, the characters on the poster are labelled as food, instead of 'deceased', and there is a sly spelling mistake.

    \"Star
    Star Wars: Insider, Issue Number Unknown

    Meanwhile, the start of the latest New Warriors series features Wondra (the former X-Man, Jubilee) twisting the image as she is caught in the act defacing an ' Initiative Wants You' poster.

    There was also an issue of Star Wars: Insider that is worth a notable mention as Obi-Wan's face picture is at the same place as Wolverine's in the original.

    See this gallery for more examples.

    Justice League #1: Crowded Group Shot

    \"Justice
    Justice League #1

    Many fans are certain that the cover for Justice League #1 wasn't the first with this composition, since it is a generic and simple design. However, the comical way the characters were crowded and seemed to recognize that fact has stuck with fans and therefore spawned many similar covers. Not all of them can be said to be homage covers but similar ones have been included.

    It is notable that the majority of the covers that follow this pattern have been within the DC universe, particularly with the various incarnations of the Justice League. Kevin Maguire repeated his success by using the same template on Justice League International #24, Justice League Europe #26 and again 16 years later with Formerly Known As The Justice League #1. In fact, his template has been used repeatedly with variations on the theme; other Justice League covers have included characters walking away to leave Blue Beetle on his own, or facing the wrong direction. There was even a rendition where the Justice League are all dominated by the face-hugging alien Starro.

    \"Pulse
    Pulse #11

    That is not to say that Marvel didn't attempt to pay homage to the pose, with X-Factor #146 featuring Jamie Madrox as the Multiple Man filling the entire cover with his duplicates. Marvel's The Pulse #11 included more of their mainstream heroes in a similar style.

    See this gallery for more examples.

    Avengers #4: Captain America Lives Again

    \"Avengers
    Avengers #4

    The Avengers #4 was the issue that Retconned Captain America back into modern comics. The Golden Age hero from the Second World War was re-introduced with Jack Kirby placing the character center-stage and becoming the focus of the Avengers.

    As with the other covers for first appearances from Marvel, they have paid homage to the cover when the character has been replaced by USAgent in Captain America #337. Acclaim paid homage with their cover for X-O Manowar #10. There was also the zombie homage in Marvel Zombies #2, and a Marvel monsters edition in Fin Fang Four #1.

    \"Fin
    Fin Fang Four #1

    See this gallery for more examples.

    Spider-Man #1: Spider-Man Crouching In His Web

    When Todd McFarlane launched a new Spider-Man title, his work there was dark, dynamic and helped to prolong his tenure with Marvel.

    \"Spider-Man
    Spider-Man #1

    Spider-Man #1 supposedly sold 2,500,000 (two and a half million) copies, but it also had several variant covers. This section purely focuses on the main cover.

    McFarlane obviously admired his own work as he quickly recycled it a year later with the black & white Spider-Man outfit for Spider-Man #13, and again two years later with his own series Spawn. When Marvel published Mighty Mouse, the eponymous star tried to replicate Spider-Man #1, but ended up tangled in the spider-webs. Away from Marvel, Ant reproduced the insect theme and pose. In the same year as Ant #5, Marvel Zombies sold out and the cover was changed to a zombie-homage with tiny heroes trapped in the web.

    See this gallery for more examples.

    Uncanny X-Men #138: Exit Cyclops

    \"Uncanny
    Uncanny X-Men #138

    The cover for Uncanny X-Men #138 shows Cyclops leaving the X-Men after the death of the Dark Phoenix. Cyclops dominates the foreground as he sorrowfully walks away from the team. Meanwhile, the X-Men are shadowed and small in the background as they watch him leave.

    Typically, Marvel has paid homage to their on cover with the family of X-Men titles. Always to emphasize the departure of a long-standing ember of the team. When Sunspot left the New Mutants in #99, the team was about to transform into X-Force. Just four-years later X-Force looked on with sorrow & pride as Cannonball dominated the cover. However, in a twist of events, Cannonball didn't cease to be a hero, but had 'graduated' into the X-Men. Although lacking the team in the background, Ultimate X-Men #80 has Wolverine walking away in the same fashion. And away from the X-Men family of titles, Caitlin Fairchild bids farewell to Gen 13 in Gen 13 #53.

    See this gallery for more examples.

    Batman: The Dark Knight Returns #1: Jumping Silhouette Over a Bolt of Lightning

    \"Dark
    Dark Knight Returns

    Another ground-breaking & classic story. The cover for Batman: The Dark Knight Returns #1 is a quite simple image with a Batman silhouette in front of a lightning bolt and dark background. The original featured Batman leaping down through the air. However, the later reprint of the trade paperback changed to pose Batman couching on over-head telephone wires, but still with the lightning strike flashing behind him.

    Some homage covers so closely resemble the image from The Dark Knight Returns #1 that they even have the same dark blue hue for the sky an the lightning is almost identical. Notably, Harbinger #13.

    #13 places the lightning in the same position and has a female character in a similar pose. It requires a second inspection of each image to begin to spot the differences.

    However, not all covers are a direct homage. The theme of a lightning strike behind the character has been a recurring motif with many comic covers, although the characters are not always hidden by their silhouette. A good example is Ultimate X-Men #42, where apparently Storm's powers create the dynamic lightning behind her, but she is still visible in front of the lightning bolt.

    See this gallery for more examples.

    Journey Into Mystery #83: Thor Spins Mjolnir

    \"Journey
    Journey into Mystery #83

    Thor made his Marvel debut in Journey Into Mystery #83. The character was borrowed from Norse mythology, but given a Marvel comics 1960's make-over in the same year that Spider-Man & Hulk were introduced. The Norse thunder god whirls his hammer Mjolnir around him creating an impenetrable whirlwind of power that knocks his enemies down.

    Just like with many of Marvel's other debut covers, this stance has been repeated when introducing other characters who are possible Thor replacements. This includes a female version of Thor in What If...? And in Uncanny X-Man Annual #9 Storm has been tricked by Loki as part of his plan to depose Odin, leaving the New Mutants & X-Men stranded in Asgard. There is also Thena, a potential daughter of Thor from Avengers Next.

    See this gallery for more examples.

    Amazing Spider-Man #39: Dragged Through the Air by the Green Goblin's Glider

    \"Amazing
    Amazing Spider-Man #39

    The secret identity of the Green Goblin was revealed in Amazing Spider-Man #39. It was also the moment the Green Goblin learned Spider-Man's secret identity, therefore creating a shocking story that led to years more torment. The cover has the Goblin holding Spider-Man hostage and flying him around the city with the terrifying possibility to drop him at any moment.

    The early 1990's saw a homage from Sensational She-Hulk #53, with terrible fashion sense and an exaggerated version of the Green Goblin dragging She-Hulk around by her hair. It was 13 years later by time the 2211 version of Green Goblin caught Spider-Man, only by then Spider-Man was wearing the red & gold outfit that he later removed during the Civil War. And according to tradition, a classic Marvel cover must receive a zombie homage; in this case it was the variant cover for the second printing or Marvel Zombies #4. Note the fork that the Goblin holds in order to devour Spider-Man with.

    See this gallery for more examples.

    The Man of Steel #1: Ripping Off Civilian Shirt/Revealing Secret Identity

    \"Man
    Man of Steel #1

    There were two covers for Man of Steel #1, both of which features the classic image of Superman ripping his shirt open and revealing the 'S' logo. The regular cover laced Clark Kent down the right-hand side of the image, whereas the variant cover has an extreme close-up of the chest. This iconic image has often featured inside the comics, but this was the first time on a cover.

    The 1992 issue of Miracleman: Apocrypha #2 is a clear homage, as the character pulls open his shirt to reveal the similarly coloured logo underneath. The cover for Supergirl #51 reverses the situation by having Supergirl rip her costume open to reveal the shirt from Supergirl #1. Although Supergirl #1 doesn't actually rip the shirt open, the general pose and focus on the logo underneath the shirt does seem to pay homage to Man of Steel #1. The use of a female character was carried through to Liberty Meadows #27 where Brandy reveals the Liberty Meadows Image logo, indicating the change of publisher as well as showing off her endowment.

    \"No

    See this gallery for more examples.

    Justice League of America #1: Heroes as Chess Pieces

    \"Justice
    Justice League #81

    Finally getting their own book, this cover shows the members of the JLA facing off their foe Despero. Flash plays chess against him with his teammates as pieces.

    The same pose was used several times, of course with the line-up of members and bad guy changed. Although not specifically the same pose, the chess theme continues into other comics with a variety of heroes being used as pieces in the game. This symbolises characters who are pulling the strings, and orchestrating events over others.

    Detective Comics Homage

    \"No

    In July 1939 Detective Comics #29, there is a picture of Batman swinging into a castle with his bat-rope, knocking over a villain. Ironically, it appeared in Batman: Streets of Gotham #20, with a thought of Dick Grayson looking into the past. With Bruce in his beginning days.

    Batman 497: Bane breaks Batman back.

    \"No

    The pivotal Batman #497 has a cover where the villian in the shadows, Bane, breaks Batman's back in his own Batcave,with the enemy imposing himself phically over the hero. The cover has been homage in:

    Azrael #37

    Detective Comics #740

    Batman: The Dark Knight #6

    Popular Culture

    Movie Posters

    \"X-Force
    X-Force Posing As The Poster For Blade Trinity

    Some comics have also been known to pay homage to famous movie posters. It's unclear when this trend began as it has been a trend for many years to parody the movie industry (even within the movie industry itself). It has even become popular to use homage covers through story arcs and even through a whole volume. Such volumes include Shanda the Panda by Antarctic Press, Vision Press & Shanda Fantasy Arts, and Marvel's Deadpool: Merc With A Mouth featuring covers by popular Zombieverse cover painter, Arthur Suydam (yet again).

    Some volumes continue to pay tribute to popular movie posers throughout the entire run. For instance, Shanda the Panda has paid homage to many different movies, including (but not exclusive to) Charlie's Angels, Bring It On, Big Daddy & The Clockwork Orange. More Recently, Merc With A Mouth has parodied Jaws, & Scarface. Meanwhile, the second on-going volume of X-Force paid tribute to a variety of vampire movies on the variant covers during the Necrosha cross-over event.

    See this gallery for more examples

    Music/Album Covers

    \"X-Men
    X-Men Unlimited #30: Abbey Road

    Once in a while, it is album cover that serves as inspiration. Although it is rarer than the movie posters, it is worth mentioning.

    Other Influences

    Covers don't always pay homage to previous covers. There are examples of paying tribute to genuine pieces of traditional art including paintings, sculptures, photography etc. An examination of art reveals that homage drawing were quite popular previous to the era of comic books for instance the L.H.O.O.Q. version of the Mona Lisa.

    The \"Andy Warhol\"

    \"\"
    \"Marilyn Monroe\"

    Famed pop-culture artist Andy Warhol's signature screen print style. A style in which the same image is repeated. Each image however has its own set of colors. Some colors becomes very contrasting and some mute compared to the images around them.

    Most famously done with Marilyn Monroe. Other main \"inspirations\" would be Elvis Presley, Troy Donahue, Muhammad Ali and Elizabeth Taylor

    Alan Moore's Promethea had a Warhol inspired cover in issue #29, in which artist J.H. Williams III used the Warhol style and laid out images of The painted doll with different colors.

    American Gothic

    This painting by Grant Wood in the 1930's depicts a farmer standing beside his daughter standing in front of their house. This Painting has been paid homage to in such comics as:

    The Pietà

    The dying Christ. A Pietà is a painting or sculpture of the Virgin Mary holding the dead body of Jesus in her arms. The most famous example is the sculpture of the Pietà by Italian renaissance artist Michelangelo di Lodovico Buonarroti Simoni.

    • The Pietà (1499) Sculpture by Michelangelo

    Unlike the 'carrying a dead person' pose, there are clear examples of the Pietà that are quite obviously paying homage to the Pietà sculpture unlike the Uncanny X-Men #136 & Crisis on Infinite Earths #7 covers (see above).

    \"Michelangelo's
    Michelangelo's Pietà

    Just a few examples are listed below, yet there are more examples to be found.

    The first of Marvel's series of Graphic Novels was the Death of Captain Marvel. Over the previous years Captain Marvel had slowly been dying from a mutated form of cancer which his Nega-Bands could no longer restrain. On the cover to the graphic novel, Captain Marvel is cradled by a skeletal rendition of death while surrounded by Marvel's most recognisable heroes. There is a variant cover for Marvel Zombies Vs Army of Darkness #3 based on this scene, but where all the heroes are zombies. Deadpool #63 has a more simple approach with Deadpool lay dying in place of the Christ in the arms of a more gentle, female representation of death.

    See this gallery for more examples.

    Raising the Flag on Iwo Jima

    \"Atop
    Atop Mount Suribachi

    Raising the Flag on Iwo Jima is one of the most iconic photographs from World War II. Taken on February 23rd 1945, by Joe Rosenthal, it depicts 5 US Marines and a US Navy corpsman raising the Stars and Stripes atop Mount Suribachi during the Battle of Iwo Jima.

    The Playing Card

    \"No

    In traditional decks of playing cards the face cards (Jack, Queen, King) typically have an inverted scheme where there are two faces of the car portrayed so that it is never really upside down. This same scheme is sometimes used on comic covers as a way to show a polar opposite between certain characters

    The Vitruvian Man

    \"Vitruvian
    Vitruvian Man

    One of the most well-known works of Leonardo Da Vinci. The Vitruvian Man features a naked male body outstretches within an over-lapping circle & square, demonstrating the proportion of human limbs and torso.

    Uncle Sam Recruitment poster

    \"No

    The well-known \"recruitment\" image of Uncle Sam was first created by James Montgomery Flagg during World War I. The image was inspired by a British recruitment poster showing Lord Kitchener in a similar pose. It is this image more than any other that has influenced the modern appearance of Uncle Sam: an elderly white man with white hair and a goatee, wearing a white top hat with white stars on a blue band, a blue tail coat, and red-and-white-striped trousers.

    See this gallery for more examples.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105403/","id":105403,"name":"Superman, Champion of the Oppressed...","issue_number":"1"},"id":43734,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111113340/8316137-00-homage-02.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111113340/8316137-00-homage-02.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111113340/8316137-00-homage-02.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111113340/8316137-00-homage-02.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111113340/8316137-00-homage-02.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111113340/8316137-00-homage-02.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111113340/8316137-00-homage-02.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111113340/8316137-00-homage-02.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111113340/8316137-00-homage-02.jpg","image_tags":"All Images"},"name":"Homage Covers","site_detail_url":"https://comicvine.gamespot.com/homage-covers/4015-43734/","start_year":"1938"},{"aliases":"FCBD","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43738/","count_of_isssue_appearances":737,"date_added":"2008-06-06 11:27:53","date_last_updated":"2020-12-23 10:54:58","deck":"Free Comic Book Day is the one day a year where participating comic book shops in America and around the world give away comic books free to anyone who comes into the store.","description":"

    Held annually on the first Saturday in May to promote comic books to the general public, it was first held in 2002.

    1. May 4, 2002
    2. May 3, 2003
    3. May 3, 2004
    4. May 7, 2005
    5. May 6, 2006
    6. May 5, 2007
    7. May 3, 2008
    8. May 2, 2009
    9. May 1, 2010
    10. May 7, 2011
    11. May 5, 2012
    12. May 4, 2013
    13. May 3, 2014
    14. May 2, 2015
    15. May 7, 2016 (50 official comics)
    16. May 6, 2016 (50 official comics)
    17. May 6, 2017
    18. May 4, 2018 (53 official comics (two not listed))

    Germany, Austria and Switzerland hold a similar event that started in 2010 called Gratis Comic Tag (Free Comic Day) that takes place on the second Saturday of each May (a week later then the American FCBD). Gratis Comic Tag produced 30 free titles its first year and increased up to 44 in its second year (2011), for this years event (May 12, 2012) 30 titles are slated for release.

    1. May 8, 2010
    2. May 14, 2011
    3. May 12, 2012

    The first annual Free Comic Book Day event in Flanders and the Netherlands debuted May 5th, 2012 and unlike its American counterpart this event lasted the entire weekend. To start with seven titles were offered for free: Carmen mc Callum, Dwarf, Gil St. Andre, Het best van Oogachtend, Portugal, Storm and the Walking Dead.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-422030/","id":422030,"name":"FCBD","issue_number":"1"},"id":43738,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/7729143-9387630238-free-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/7729143-9387630238-free-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/7729143-9387630238-free-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/7729143-9387630238-free-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/7729143-9387630238-free-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/7729143-9387630238-free-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/7729143-9387630238-free-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/7729143-9387630238-free-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/7729143-9387630238-free-.jpg","image_tags":"All Images"},"name":"Free Comic Book Day","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day/4015-43738/","start_year":"1994"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43763/","count_of_isssue_appearances":13,"date_added":"2008-06-06 11:27:52","date_last_updated":"2019-04-24 07:50:57","deck":"A term that was created by Gail Simone. Women in Refrigerators (WiR) refers to comic book women who have been depowered, raped, murdered and/or had their lives ruined specifically in order to fuel the stories of men.","description":"

    History

    One day it occurred to comic book writer Gail Simone that women in comics are so commonly misused to define a story after one of her favorite female characters was killed off. She decided to call this term 'Women in Refrigerators' after a panel in the Green Lantern #54 (1994) comic book. The scene in question featured Kyle Rayner returning home to his apartment. There he found a note informing him to look inside the fridge, where he found the mangled remains of his girlfriend, Alex DeWitt. Gail says that she realizes that some that are on the list have already been resurrected, but the reason why they were included on the list still remains true.

    The Original List

    This list was originally compiled and written by Gail Simone in alphabetical order:

    • All of Savage Dragon's girlfriends: Dead.
    • Allen, Dawn: Dead.
    • Amethyst: Blinded. Merged with Gemworld. Destroyed in Legion of Super Heroes; became a power-hungry witch in Book of Fate.
    • Apparition: One of her three bodies dead. Soul bound to boyfriend. Gave birth. Lost child. Nearly beaten to death by close friend.
    • Aquagirl: Dead, reanimated and turned into Black Lantern, kills Garth.
    • Arisia: Depowered and then murdered. Resurrected, mourning lost love. Forced to relive being buried alive.
    • Aurora: Attempts to commit suicide. Multiple Personality Disorder. Depowered. Repowered and viciously mentally tampered with.
    • Banner, Betty: Abused. Changed into a harpy. Multiple miscarriages. Dead. Resurrected. Currently Red She-Hulk.
    • Banner, Mrs Rebecca ( Bruce's mother): Murdered by her abusive husband.
    • Batgirl I: Paralyzed. This is no longer the case in her new 52 series, tortured, repeatedly nearly murdered by brother, possibly losing ability to walk.
    • Batwoman I: Dead. Brought back. Murdered again.
    • Batwoman II: Repeatedly stabbed and nearly used as sacrifice. Brainwashed. Girlfriend repeatedly nearly murdered. Kills sister. Kidnapped and placed in coffin.
    • Black Canary I: Suffered from radiation poisoning. Dead.
    • Black Canary II: Tortured. Made infertile. Depowered. Tortured. Brainwashed. Husband killed by her hand.
    • Blink: Died using powers to defeat Phalanx. Dead.
    • Bluebird: Died in car accident.
    • Buf (from X-Man) : Crippled.
    • Captain Marvel / Photon: Depowered. Ceded code name to a male hero. Repowered.
    • Celsius: Blamed for her mothers death. Insane. Dead. Called delusional liar. Brought back as a Black Lantern.
    • Chandler, Marlo ( Rick Jones' wife): Former prostitute. Killed and brought back mindless.
    • Crimson Fox: Both sisters murdered.
    • Dart: Crippled.
    • Dawnstar: Wings cut off. Possessed by another persona. Retconned repeatedly to change her character.
    • DeWitt, Alex: Killed for dating Green Lantern and stuffed into a refrigerator.
    • Diamond Lil: Kidnapped. Experimented on by her own government. Developed benign breast tumor.
    • Domino: Raised by a cult leader. Kidnapped & tortured for a year. Tortured again and impersonated, mistrusted. Forced to kill close friend. Had powers blocked and went through serious emotional trauma. Nearly murdered.
    • Dove II: Dead.
    • Dr. Midnight of Infinity, Inc: Blinded. Murdered by Eclipso.
    • Elasti-Girl: Only original Doom Patroller to stay dead.
    • Electrocute: Dead.
    • Elektra: Held hostage. Brainwashed. Raped by her father. Mother murdered. Dead. Replaced by Skrull. Ressurected by The Hand. Nearly lombotomized, kept against her will in a mental institution. Tortured by the Skrull.
    • Element Girl: Hideously deformed by powers. Unable to die, visited by Death and then dies by looking into the sun.
    • Enchantress of Suicide Squad: Originally a heroine. Turned evil. Insane. Depowered.
    • Firebelle: Dead.
    • Firestar: Emotionally manipulated. Powers were sterilizing her and making her infertile. Contracted breast cancer. Overcame it.
    • Fury II: Child kidnapped. Husband killed twice. Insane.
    • Gand, Laurel: Killed in bomb blast.
    • Grey, Jean / Phoenix: Died. Resurrected/replaced. Destroyed planets. Self-sacrifice. Resurrected. Ignored by lover. Absorbed clone's memories. Died & resurrected various times. Abused repeatedly, manipulated.
    • Hawkwoman: Depowered. Murdered. Brought back from the dead, insane. Left to die.
    • Hellcat: Dead. Resurrected. Repeatedly nearly murdered by ex husband. Driven insane by second husband. Mind controlled by the grim reaper. Traumatized.
    • Helvin, Christine of ' Troublemakers': Victim of date rape. Discovered she could never have children because she was no longer human.
    • Huntress I: Dead.
    • Huntress II: Sexually abused, tortured, murdered and replaced with Helena Wayne.
    • Ice: Dead. Resurrected to avenge her own death. Dates Guy Gardner. Murdered by bomber.
    • Invisible Woman: Miscarriage of second child. Mind controlled and transformed into a murderer.
    • Jade: Lost natural powers. Dead. Resurrected and then removed from universe.
    • Jarella: Crushed to death.
    • Jean DeWolff: Dead.
    • Jet of New Guardians: Died in battle after contracting HIV.
    • Jocasta: Deactivated repeatedly.
    • Kane, Frances / Magenta: Stalker complex.
    • Katma Tui: Dead.
    • Kent, Laurel: Shot. Replaced by an evil robot. Dead.
    • Kinetix: Depowered twice. Catatonic. Dead.
    • Kole : Dead.
    • Lady Flash: Evil. Raped by Vandal Savage. Dead.
    • Lady Quark: Dead.
    • Looker: Turned into vampire, nearly killed three times, divorced.
    • MacTaggert, Moira: Couldn't save her reality warping son or husband. Possessed by Shadow King. Only human to contract the Legacy Virus. Shot protecting adopted daughter. Dead.
    • Mantis: Child taken away. Dead.
    • Marrina: Insane, dead.
    • Mentalla of Legion of Super Heroes: Dead.
    • Mera: Insane. Child murdered. Used as trojan horse to get to Atlantis. Kidnapped.
    • Mirage of Team Titans: Impregnated by rape. Removed from history.
    • Mockingbird: Abducted and mind-manipulated into a relationship. Believed Dead. Imprisoned on Skrull homeworld for years.
    • Ms Marvel / Warbird: Mind-controlled and impregnated by rape, then 'gave birth' to her rapist/mind-controller. Powers and memories stolen by Rogue. Gained cosmic powers via abduction and torture. Depowered again. Became an alcoholic. Killed and replaced by a former villainess. Resurrected.
    • Mystek of Justice League Task Force: Dead.
    • Namorita: Clone of her mother. Exiled from Atlantis. Reverted to a primal Atlantean form. Turned pink again. Turned blue again. Dead.
    • Negative Woman: Depowered.
    • Nightshade: Depowered.
    • Nightwind: Dead.
    • Nova / Raye, Frankie: Dead.
    • Page, Karen: Drug addiction. Low budget porn star. HIV positive. Dead.
    • Palmer, Jean Loring: Nervous breakdown, goes on a killing spree. Dead.
    • Park, Linda: Kidnapped. Removed from history.
    • Power Girl: Depowered. Magically impregnated. Made vulnerable to unprocessed natural materials (i.e. sticks).
    • Pryor, Madelyn: Cloned from Jean Grey. Abandoned by husband. Brood mare. Demon queen. Dead. Resurrected. Dead. Dead body possessed.
    • Psylocke: Blinded. Eyes replaced by cameras. Body-swapped. Eviscerated. Depowered. New shadow powers. Swapped powers with Jean Grey. Dead. Resurrected. Powers altered yet again.
    • Rasputin, Illyana: Kidnapped & raised by demons. De-aged. Dead. Resurrected without her soul.
    • Raven: Sometimes evil. Sometimes dead, repeated loss of autonomy.
    • Red Guardian II: Kidnapped and brainwashed into the love-slave of a super-villain.
    • Redwing of Team Titans: Dead.
    • Revanche: Body swapped & believed she was Betsy Braddock. Contracted Legacy Virus. Committed suicide. Dead. Body resurrected & possessed. Still dead.
    • Rogue: Absorbed life of first boyfriend. Can't touch anyone else. Depowered & raped. On-Off again relationship with Gambit. Generally messed up. Currently stable.
    • Ross, Courtney: Dead.
    • Roulette: Dead.
    • Scarlet Witch: Married a machine. Phantom pregnancy. Children 'died' when born because they were figments of her imagination. Various mental breakdowns. Cause of both House of M and \"no more mutants.\"
    • Serpentina: Dead.
    • Shrinking Violet: Abducted and impersonated. Lost a leg.
    • Shvaughn, Erin: Turned into a man.
    • Silver Sorceress: Dead.
    • Snowbird: Child & husband murdered. Insane. Dead.
    • Southern Candy: Kidnapped. Ignored in favor of Jean Grey. Kidnapped again. Tortured. Brain dead. Murdered. Resurrected as a Phalanx. Dead.
    • Spider-Woman: Dead. Resurrected. Depowered. Replaced by Skrull Queen. Re-established.
    • Stacy, Gwen: Dead. Cloned.
    • Star Sapphire: Turned into a villain by the Zamarons. Possessed by the Predator.
    • Starfire: Raped. Tortured. Enslaved. Forced into marriage twice. Dumped at the altar.
    • Storm: Depowered. Repowered. Various bouts of insanity.
    • Stuart, Alysande: Dead.
    • Summers, Rachel / Phoenix: Lobotomized. Forced to hunt down her own kind. Lost in the time-stream. Lost in space.
    • Supergirl, pre- Crisis: Dead. Erased from history.
    • Supergirl: Lost her invisibility & most of her shapeshifting. Erased from history. Turned into half an angel. Brainwashed repeatedly by Lex Luthor. Retconned out during Infinite Crisis. Returns. Goes mad and then returns to obscurity. Retconned out once more.
    • Projectra: Dead.
    • Tarot: Dead. Resurrected & bound to an evil man.
    • Threnody: Forced to work for Mr Sinister. Contracted Legacy Virus. Dead.
    • Tigra: Devolved into cat-thing. Kept as a pet by Molecule Man, Graviton, Kraven and Puppet Master. Shrunken in size and lived with stray cats on the streets. Filmed while brutally beaten in her home; footage posted on internet. Impregnated by Skrull who posed as Pym.
    • Triplicate Girl: One body killed. One presumed dead but revealed to be Glorith's pawn.
    • Ventura, Sharon: Became a monster in Fantastic Four. De-monstered but enslaved by Doctor Doom. Depowered.
    • Wildcat II: Dead.
    • Wolfsbane: Raised to fear God and to believe she was a devil. Traumatized over death of boyfriend. Stripped, depowered & locked in werewolf form for a while. Lost powers. Repowered. Fired as a teacher after an affair with a student. Kidnapped & brainwashed. Ate her biological father. Pregnant with an Asgardian's child who she birthed by couching him out of her throat, and seconds later witnessed how it killed a man.
    • Wonder Girl / Troia / Darkstar: Identity and powers stripped from her multiple times. Retroactively removed from history. No longer part of the Teen Titans.
    • Wonder Woman: Killed. Revived, but lost her Goddess powers.
    • Zatanna: Powers severely limited following distressing battle against the reanimated corpse of her father. Huge loss of confidence. Currently back to full power.

    Source location: WiR

    Updated List

    Characters who are worthy of being added to the list, but were not originally included by Gail Simone.

    • Alice: Delusional, repeatedly tries to kill own sister and father, falls to her death after letting go of sisters hand.
    • Alura: Watches husband die, goes insane. Blown up when New Krypton explodes.
    • Ant: Picked on and beaten as a child. Forced to eat dog feces. Memories altered. Put into Asylum. Hand cut off, reattached later.
    • Artemis: Killed. Forced to marry a monstrous demon in the afterlife. Resurrected. Depowered, kidnapped and enslaved. Repowered. Removed from history.
    • Betty Brant: Attacked and beaten silly by a random thug in ASM#665 for the sole purpose of getting Peter on the warpath and bringing Flash Thompson her boyfriend into the next story arc.
    • Big Barda: Murdered in her own home by God Killer. Husband Mr Miracle found her body sprawled on kitchen floor. Might have been brought back to life.
    • Black Alice: Mother a drug addict and commits suicide. Framed by best friend. Cheated on. Father ill because she accidentally gave him cancer.
    • Black Cat: Beaten up. Powers messed up. Date raped.
    • Cain, Cassandra: Ignored by villainous parents. Bred to be weapon. Mute. Drugged & brainwashed to be a criminal.
    • Carr, Olivia: Abducted and brainwashed. Kills one of her captors and a corrupt police officer. Taken to Arkham for evaluation.
    • Catwoman: Retconned into a prostitute. Discovered that her \"boyfriend\" was a serial killer. Became good, but discovered that the change was because Zatanna altered her mind. Impregnated. Daughter was kidnapped several times. Decided to give daughter up for adoption. Her heart was stolen, but soon returned. She survived the process. Repeatedly abused and beaten and attacked. Heart stolen again, repeatedly nearly murdered by her sister.
    • Chambers, Jesse: Cheated with mothers fiance. Lost father and retired. Attacked, nearly killed repeatedly. Loses her powers because of her pregnancy. Removed from history.
    • Cheetah, of DC: Kidnapped to be bride to demon. Sold her soul to get her friend back. Devolved into mindless beast. Power once stolen by a male.
    • Circe: Turned into human, traumatic birth of child, child kidnapped by father. Child removed from continuity.
    • Diamondback: Beaten and raped by Crossbones as a teenager. Later kidnapped and beaten by him again. Injected with serum that made her mentally unstable. Impersonated by a Life Model Decoy, who slept with unsuspecting boyfriend Steve Rogers and was then graphically killed.
    • Dibny, Sue: Raped. Dead. Repeatedly kidnapped. Retconned out of existence.
    • Dr Light II: Severely beaten. Lost her powers. Has recently recovered said powers.
    • Harley Quinn: Repeatedly abused by The Joker, mindcontrolled by other people, taken advantage of, nearly murdered by the Joker in a fit of rage. Thrown in a vat of chemicals that bleach her skin.
    • Harper, Lian: Killed to make father go mad.
    • Heatmonger, of Aryan Brigade: Dead.
    • Hippolyta: Originally a murdered pregnant woman. Raped repeatedly, shackled. Fights with sister and never sees her again. Becomes a mother. Donna Troy kidnapped. Accidentally causes daughters death. Dies. Resurrected and kills hundreds of people. Retconned into a bloodthirsty rapist.
    • Hit-Girl: Raised to be an assassin by Big Daddy. Witnessed her father's murder.
    • Illyana Rasputin: Kidnapped as a child & raised in Limbo. Lost her soul. Died. Resurrected without her soul.
    • Inertia, of Squadron Supreme: Abused. Raped.
    • Jubilee: Tortured for information. Crucified. Died. Resurrected. Impaled on various occasions. Depowered.
    • Kapatelis, Vanessa: Kidnapped, brainwashed, tried to kill close friend repeatedly, abused. Traumatized by best friends suicide. Retconned out of existence.
    • Kean-Gordon, Barbara: Repeatedly nearly killed by son. Kidnapped by the Joker. Has ring finger cut off.
    • Klara: Forced into under-age marriage & raped.
    • Knockout: Killed by God Killer.
    • Kyle, Maggie: Kidnapped by Black Mask, forced to eat her husbands eyes, goes insane and kept in psychiatric facility. Escapes and kills a nun and then repeatedly tries to murder her sister. Mindcontrolled and gains power, which nearly kill her and control her, causing her to give into her delusions. Brainwashes Harley Quinn.
    • Lady Blackhawk: Brainwashed, made to kill friends, kidnapped, raped. Retconned out of existence.
    • Lana Lang: Repeatedly attacked, kidnapped, betrays Superman and then is fired for trying to make up for it. Possessed by Insect Queen against her will, loses Kara's friendship as a consequence.
    • Lane-Kent, Lois: Severely injured during Final Crisis, but survived. Retconned to be dead.
    • Lane, Lois: Repeatedly attacked, brainwashed, kidnapped, watched her father die, used as a way to get Superman's attention. Sister tries to kill husband repeatedly. Finds out father is alive. Married, retconned to not be married. Killed in elseword stories to free Superman for romantic interests.
    • Lilith Clay: Traumatised by visions, murdered. Retconned into a villain.
    • Liberty: Repeatedly raped by invading martians.
    • Marrow: One of her hearts ripped out. Mortally injured by Gambit. Lost control of her powers. Brainwashed. Hypnotised into sleeping with Mesmero. Depowered.
    • Maxima: Dead.
    • Mindi Mayer: Depressed, commits suicide by overdosing. Wonder Woman framed for her death.
    • Nocturne: Miscarried. Suffered a stroke. Suffers memory loss. Partial paralysis of one leg & arm.
    • Pantha: Turned into a half animal hybrid. Decapitated. Dead. Risen as Black Lantern.
    • Pixie: Savagely beaten. Self-sacrificed soul. Possibly becoming half-demon. Brutally beaten again. Father revealed to be Mastermind.
    • Manitou Dawn: Loses husband, captured, removed from history.
    • Mary Marvel: Molested. Coma. Ignored. Became evil. Went mad, regained sanity.
    • Parker, Mary Jane: On-again off-again relationship with Spider-Man for many years before they got married. Told her child had died during birth. Kidnappings & divorce. Retconned to erase marriage.
    • Phantom Lady (Sandra Knight): Abducted while pregnant. Left for dead and fetus stolen from womb. Recovered, but never reunited with husband or lost child. Retired from crime-fighting.
    • Phantom Lady (Dee Tyler): Brutally murdered via impalement by Deathstroke, who told her it was 'just business.' Mangled body put on public display.
    • Phantom Lady (Stormy Knight): Became alcoholic and drug addict after father was murdered. Attempted suicide by slitting wrists. Recovered, but retired from crime-fighting for a time. Currently back as Phantom Lady.
    • Rapture: Unborn baby's super strength kicks caused internal injuries which made her go into premature labor.
    • Raya Vestri: A love interest for Nightwing. Murdered by Joker.
    • Reynolds, Lindy: Killed by Bullseye/Hawkeye and thrown into the sea.
    • Shadowcat: Kidnapped. Stuck in 'phased' condition. Unfulfilled relationship with Colossus. Mourned deaths of best friend and Colossus. Trapped in a planet-sized bullet and unable to be saved by teammates.
    • Silhouette, of New Warriors: Shot. Crippled.
    • Silhouette, of Minutemen: Killed for being a lesbian.
    • Silk Spectre I: Repeated rape & severe beating by Comedian.
    • Silver St.Cloud: Retconned into a sex fiend and murdered brutally by Onomatopoeia .
    • Siryn: Raised by Black Tom & Juggernaut who told her that her father had died. Coached to be a criminal by her uncle. Alcoholism. Childhood sweetheart denied having a relationship with her. Had throat slit. Her son was absorbed & therefore killed by his father on day he was born.
    • Spider-Woman III: Abused. Drugged. Used to make Mutant Growth Hormone
    • Spoiler, girlfriend of Tim Drake: Nearly molested as a child. Teenage pregnancy. Kidnapped & tortured by Black Mask. Killed by Leslie Thompkins. Received no memorial. Resurrected. Current Batgirl. Loses the cowl.
    • Supergirl [current]: Repeatedly brainwashed, goes evil, has an abusive boyfriend. Emotionally abused repeatedly. Father murdered in front of her, watches her mother go insane. Too late to save Lana who dies. Then attacked by Lana who was possessed by the Insect Queen. Watches New Krypton explode and her mother die.
    • Takeru: Hand cut off. Catatonic.
    • Tana Moon: On-again-off-again relationship. Caught in explosion set up by Amanda Spence after re-established relationship, murdered.
    • Tara, of Buffy the Vampire Slayer: Killed by random bullet. Death caused lesbian lover Willow to descend into madness and villainy.
    • Tigra: Dead.
    • Wasp: Kidnapped and brain used as template for robot duplicate ( Jocasta). Beaten by husband Hank Pym, causing divorce. Dead. To date, the only founding member of the Avengers to remain deceased.
    • Windfall: Drugged. Raped. Pictures of rape posted on internet. Dead.
    • X-23: Raised to murder her biological father. Violently beaten for each mistake. Was made to kill her own mother. Underage prostitution.

    In 2017, Saga Press published The Refrigerator Monologues, a work of fiction by literary fantacist Catherynne M. Valente. It consists of six interconnected stories where women from the superhero universe tell their tales of being \"refrigerated\" so that a male superhero's story line can progress.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-24406/","id":24406,"name":"A Small Loss","issue_number":"267"},"id":43763,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/3790116-women_in_refrigerators-green_lantern%2354.jpg","image_tags":"All Images,Women in Refrigerators"},"name":"Women in Refrigerators","site_detail_url":"https://comicvine.gamespot.com/women-in-refrigerators/4015-43763/","start_year":"1984"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-43834/","count_of_isssue_appearances":117,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-09-18 13:16:37","deck":"Method of transportation used by via Bleed Ships.","description":"

    Doors are orange portals generated by The Carrier that allow instant movement from one place to another. The Carrier exists outside of space and time, but somehow also in the same place as Earth. Since the Carrier is touching all of Earth at the same time, stepping through a Door can take you anywhere on (or around) the planet. Though a Door can only be opened to a place around Earth (the furthest distance a Door has been opened to is the sun), Doors can open to places in Earth-space in other dimensions, allowing for travel all across the multiverse. The Carrier can also open Doors in different times.

    All members of the Authority are able to telepathically summon Doors (though usually the command \"Door\" is spoken aloud) that can take them anywhere they want.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-45333/","id":45333,"name":"No Direction Home","issue_number":"11"},"id":43834,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/355322-126816-doors.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/355322-126816-doors.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/355322-126816-doors.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/355322-126816-doors.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/355322-126816-doors.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/355322-126816-doors.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/355322-126816-doors.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/355322-126816-doors.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/355322-126816-doors.jpg","image_tags":"All Images,Doors"},"name":"Doors","site_detail_url":"https://comicvine.gamespot.com/doors/4015-43834/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44158/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-07-19 11:40:23","deck":"A round robin is a collaboration between 2 or more people in which one person starts something and the next person continues on with it, and so on, until the last person finishes it.","description":"

    Though not common, there have been round robins in comics. Before they start their round robin, the people involved have to agree on some guidelines for their round robin \"story.\" These can be, but are not necessarily limited to: amount contributed, plot, characters, style, continuity, goals, what to do about was previously created, time constraints, things not allowed, specific rules, etc.

    To be more interesting, usually comic round robins have different writers - sometimes the writers are also the artists. Sometimes they have different artists, especially if they want the \"look at all the people involved\" sort of effect. With three or more writers, there is the question of whether a writer somewhere in the middle can only read the last entry (and since they don't have access to the previous entries, the story becomes very \"schizophrenic\") or all the work previously made (making for a more coherent story). It is sometimes the duty for the last writer with the overwhelming task of \"wrapping things up,\" or everyone involved can get together to finish the project, or it can just be left hanging, maybe for someone else to continue. Also everyone is usually given a chance to see, and possibly have a good laugh over, the \"completed\" work.

    Here are some examples of Round Robins in comics:

    DC Challenge: a 12 part round robin in the DC universe with 12 different writer/artist teams. Each were required to make a cliffhanger for the next team to solve and there was no writer collaboration, except in the last issue, where it was wrapped up.

    3 Word Game (In the Comicvine forum under RPG's): Well, okay this isn't a comic. I put this on to show an example of a round robin, for readers who don't have any round robin comic issues. This is a story where anyone can add three words to it. They have the opportunity to read all the previous entries (whether they do or not...) and to post another 3 words, if they desire. Probably not very cohesive. At least for now, it seems never ending.

    ","first_appeared_in_issue":null,"id":44158,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/3973521-round-robin_network.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/3973521-round-robin_network.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/3973521-round-robin_network.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/3973521-round-robin_network.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/3973521-round-robin_network.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/3973521-round-robin_network.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/3973521-round-robin_network.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/3973521-round-robin_network.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/3973521-round-robin_network.jpg","image_tags":"All Images"},"name":"Round Robin","site_detail_url":"https://comicvine.gamespot.com/round-robin/4015-44158/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44257/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2012-12-29 20:17:28","deck":"Were you enjoying a comic book series until suddenly it changes for the worse, and it is no longer as good as it once was and is in serious decline? Well then, that series has \"jumped the shark.\"","description":"

    Note: Don't attach this concept to issues since it's highly opinionated.

    The term \"jumping the shark\" came from a Happy Days episode in which the Fonz, while water skiing, had to jump over a shark. Many viewers found it illogical to Fonz's character and rather stupid. People were also finding that the quality of the shows after that were in a decline. In order for something to be jumping the shark in any medium, there has to be something specific that happens in the series that watermarks (get it?) the end of that series being good. People are usually forever changed as to their opinions of that series afterwards. It isn't \"jumping the shark\" if the series slowly declines and nobody can put a finger on it as to why it's that way, nor is it if the series has a bad episode, but with good episodes after it, and the bad episode is forgiven.

    Like any serial medium, comics is rife with opportunity for jumping the shark. Listed are certain ways that a comic series that jumps the shark. These reasons aren't exclusive, sometimes, it's more than one factor which makes the title jump the shark.

    Artists/writers leaving or introduction of new writers or artists. Sometimes a series has a fantastic team: great writing, great artwork, etc. Then suddenly someone new comes in, and that series is on a one way trip to Sucksburg. Or sometimes there's a team of artists or writers, and someone leaves that team (and nobody replaces them) and it's apparent where the talent was. Within a few issues a comic can go from awesome to so bad, you wonder how the ink stays on the paper.

    A character entering or leaving the series. Since comics are character driven, they are very important to the story. Sometimes changing the formula as to who is in or out of the storyline can be disastrous. Characters can leave the series for many reasons like death or disagreement with other characters. The character leaving can make the comic bad, especially if he is a fan favorite or about the only thing holding the series together. For introducing a character, the character usually has to be nonfitting to the story, irritating or otherwise make the comic unreadable (boring characters introduced are usually just ignored and aren't usually jump the sharkworthy). Sometimes it's not the hero characters, but the villain characters that are bad (not just evil). People want this usually shoehorned in character to die soon and painfully. One of the most famous examples (although this is a cartoon) is Scrappy Doo.

    The plot becomes absurd, silly, stupid, etc. A lot of times, the people behind the comic want to take the comic in a new direction. The problem is it's a bad direction. Or they used their good ideas up first, so now its time for the not so good ideas. Sometimes they paint themselves in corners, and judging from what they're doing, they've been sniffing the fumes. Although there may not be a specific panel that people can draw on and say \"everything before this panel was good, everything after this panel was bad,\" when a story arc is mentioned only in angry or dejected or \"those were the good days and this isn't\" tones, that comic may have jumped the shark.

    They run out of ideas or are treading water. Although closely related to the last paragraph, this deserves special mention. Sometimes it's not the ideas or characters or whatever is what's bad, it's the fact that they're using them over and over again. Long running series can have the been there done that feel to them (though at which point people think it jumps the shark can vary - is it because of this villain introduced for the 8th or 9th time that pushes it over the edge to baddom for that person?). Or the plots are near carbon copies of each other. It's hard to tell, except maybe by later interviews, if the team just liked doing the same thing over and over or they actually ran out of ideas, but were forced to create something.

    Outside influences. Sometimes the creators have good ideas and would continue to make a great comic, but something outside the team is stopping them. One big example would be the publishers. Sometimes the bigwigs in charge want the comic to change. And who better than people who sit in an office all day would know how to make a good comic? Sometimes it's a censorship issue, and the comic had to be toned down; but if the title was over the top, and it had to be brought a few notches down, it's no longer top-notch, is it? Or they think the comic should go in this direction, or should have this new character, or should be part of this big crossover. Sometimes its due to the comic getting a new publisher, and all the problems with it. Sometimes, a comic isn't selling well, but it's still a good comic. So ways of improving sales are thought up at the board meeting. Changes are coerced (\"do this or we're canceling it\"), and instead of having a loyal cult of followers reading it, it has no one. Since outside influences don't affect the comic book directly, it can be hard to pin the jumping the shark blame on them, usually there's a lot of suspicion.

    Cancellation or termination of series. Though, technically not jumping the shark - for there aren't any bad issues after the last issue - it's considered \"bad\" for the reader that the series has ended for whatever reason. If used this way (especially if it was canceled), usually people imply that there could have been more good issues if it would have been allowed to continue.

    And, if the comic was always bad, people say \"it jumped the shark from the beginning.\" Again, technically not jumping the shark, for when something jumps the shark, it goes from good to bad, but a bad title from its start to its (hopefully soon) finish, goes from bad to good, that is, its cancellation is the best thing that ever happened to it.

    ","first_appeared_in_issue":null,"id":44257,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/128384-171404-jumping-the-shark.PNG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/128384-171404-jumping-the-shark.PNG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/128384-171404-jumping-the-shark.PNG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/128384-171404-jumping-the-shark.PNG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/128384-171404-jumping-the-shark.PNG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/128384-171404-jumping-the-shark.PNG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/128384-171404-jumping-the-shark.PNG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/128384-171404-jumping-the-shark.PNG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/128384-171404-jumping-the-shark.PNG","image_tags":"All Images,Ayyy'! I'm just about to jump the shark!"},"name":"Jumping the Shark","site_detail_url":"https://comicvine.gamespot.com/jumping-the-shark/4015-44257/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44362/","count_of_isssue_appearances":170,"date_added":"2008-06-06 11:27:53","date_last_updated":"2013-08-23 22:50:40","deck":"The Uni-Power is a sentient power source that bonds to other beings in times of need to become Captain Universe, imbuing them with a variety of cosmic powers.","description":"

    The Uni-Power is generally depicted as a glowing blue orb or a physical representation of the atom. When it bonds with a host, that being becomes Captain Universe. This is generally only for a limited time (sometimes as short as a few minutes), however when it occurs the person it bonds with gains access to limitless, near-omnipotent cosmic power.

    Powers

    In addition to the protective molecular shell (the standard issue CU uniform) which nullifies the harmful effects of exposure to temperature extremes, radioactive particles, etc. and the memories of all the previous Captain Universes. The Uni-Power gives its host several abilities that, depending on how the host wields the power and how strong their willpower is, can make mortal men into Gods or simple Street Level Superheroes. Below is a list of said abilities:

    • Flight
    • Superhuman Senses and Attributes
    • Enhanced Durability/Invulnerability
    • Energy Manipulation
    • Reality Manipulation
    • Time Manipulation
    • Matter/Molecular Manipulation
    • Psychic/Psionic abilities
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-16009/","id":16009,"name":"Starlord First House: Earth","issue_number":"4"},"id":44362,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/128102-19132-uni-power.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/128102-19132-uni-power.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/128102-19132-uni-power.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/128102-19132-uni-power.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/128102-19132-uni-power.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/128102-19132-uni-power.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/128102-19132-uni-power.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/128102-19132-uni-power.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/128102-19132-uni-power.jpg","image_tags":"All Images,Uni-Power"},"name":"Uni-Power","site_detail_url":"https://comicvine.gamespot.com/uni-power/4015-44362/","start_year":"1976"},{"aliases":"TPB\nHardcover (HC)\nSoftcover (SC)\nTrade Paperback","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44515/","count_of_isssue_appearances":2421,"date_added":"2008-06-06 11:27:52","date_last_updated":"2022-02-11 18:18:55","deck":"A collected edition is a collection of comic books reprinted in a single volume, generally one story arc in length.","description":"

    Note: This concept should not be associated to any issue pages.

    Definitions

    Trade Paperbacks are collections of individual issues. Trade Paperbacks are generally referred to as simply a \"trade\" or abbreviated as a \"TPB.\"

    Depending on the print, a trade will either be a hardcover or a softcover, which refers simply to the thickness of the cover material. A hardcover (HC) will be thick, generally cost more money and are usually released before a softcover. A softcover (SC) will be thinner material and lower in price.

    Larger collections are also called many other names, usually either an omnibus or compendium, and contain considerably more issues (at a considerably higher price). Be aware that some large collections may be more difficult to read based on their size but can be purchased at an overall lower price than if one was to buy all the smaller trades individually. Many large volumes are also reprinted in black and white, so there is that to consider as well.

    Collections

    A typical Marvel TPB will generally be around 5-6 comics in length and will all be from the same story arc. Some TPB include entire story arcs, such as \"The Book of Ezekiel\" from the Amazing Spiderman #503 - #508. Others however will require several TPBs such as Marvel's Civil War or House of M. Notable exceptions to TPBs of this size are DC Comics' early Superman and Batman Chronicles (The Superman ones are shown in the gallery). TPBs are excellent ways of starting comic book collections. They are also a cheaper way of getting many comics, or catching up on a whole series you may have missed. Some early Golden Age comics, such as the early issues Action Comics may only be available in TPB form, unless you're willing to pay a lot of money.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-388372/","id":388372,"name":null,"issue_number":"1"},"id":44515,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/49017/1899176-trades.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/49017/1899176-trades.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/49017/1899176-trades.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/49017/1899176-trades.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/49017/1899176-trades.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/49017/1899176-trades.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/49017/1899176-trades.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/49017/1899176-trades.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/49017/1899176-trades.jpg","image_tags":"All Images"},"name":"Collected Edition","site_detail_url":"https://comicvine.gamespot.com/collected-edition/4015-44515/","start_year":"1959"},{"aliases":"CGC Grading\r\nPGX Grading\r\nOverstreet Comic Book Price Guide","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44517/","count_of_isssue_appearances":51,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-06-03 17:39:32","deck":"Comic book \"grades\" are given to a book reflecting the quality of printing, storage, and upkeep of a particular book. The two main methods of describing an overall grade are numerical, and symbol.","description":"

    Introduction

    Grading, particularly by a reputable source is often used to gauge the value of a particular book, and grading by certain companies that authenticate and certify comics books for condition and quality may add to the market value of a particular comic. Many factors are taken into account when grading. Condition of staples, inks, whiteness of cover and pages, clarity and gloss of cover, writing/tape/other damage, staining, rips, water damage/soiling, and any other conceivable type of damage or wear are taken into account when grading is done.

    A major drawback to comic book grading is that there is a fairly well-used convention that is highly misunderstood and misused by casual collectors (or non-collectors). This is generally due to simple ignorance or neglect rather than malicious intent, but remaining vigilant is always advisable especially when your hard-earned cash is at stake. Some common instances of misusing comic terminology include words such as \"Good\", \"Fine\", and \"Very Good\", each of which have very specific meanings and connotations to someone who is familiar to the comic book grading scale when used to describe the overall condition of a book. Conversely, words such as \"Excellent\" and \"Great\" carry very little meaning when describing an overall book, but may successfully be used to describe very specific aspects of a book. \"Mint\" is perhaps the worst term of all, being the most misused and misunderstood of all the concepts used in comic book grading (as well as the grading of a variety of other collectables). Understanding the grading scale will help one correctly describe the condition of their books, and to understand specifically what others mean when describing the conditions of their books or the overall grade of a particular book.

    This guide is by no means intended to be the be-all end-all source for comic book grading information. Rather, it is intended to be a starting point for anyone who has little to no experience in comic book grading and as a point of reference for comic fans new and old. Anyone who is serious about learning the intricacies of the art of comic book grading is highly recommended to purchase a good book on the subject (For more information see \"Overstreet\"). Otherwise, your local comic book store is also a great starting point, and can usually be a great place for advice on all things comics.

    Grading Scale

    While there is some small degree of variation on the following grading scheme within the community, the following is a representative of the general consensus on the comic book grading scale.

    10.0 Gemstone/Mint GM

    9.9 Mint MT

    9.8 Near Mint/Mint NM/MT

    9.6 Near Mint NM

    9.4 Near Mint NM

    9.2 Near Mint NM

    9.0 Very Fine/Near Mint VF/NM

    8.5 Very Fine VF

    8.0 Very Fine VF

    7.5 Very Fine VF

    7.0 Fine/Very Fine FN/VF

    6.5 Fine FN

    6.0 Fine FN

    5.5 Fine FN

    5.0 Very Good/Fine VG/FN

    4.5 Very Good VG

    4.0 Very Good VG

    3.5 Very Good VG

    3.0 Good/Very Good GD/VG

    2.5 Good GD

    2.0 Good GD

    1.8 Good GD

    1.5 Fair/Good FR/GD

    1.0 Fair FR

    0.5 Poor PR

    Gemstone Mint - Flawless in every way. Can be considered a \"perfect\" copy. Gem mint books occur very rarely, and are extremely rare to non-existent in older books. Gemstone Mint books are the highest grade possible. Some graders will never give a grade of a perfect 10 because they feel that there are no books which have absolutely no visible damage. In some grading schemes there is no Gem mint distinction, meaning that any book that is graded as 9.9-10.0 is Mint.

    Mint - Book is virtually flawless. Cover and pages are supple and white without fading. No creases, folds, stains, etc are tolerated. Corners are sharp and edges are cut properly. Staples show no signs of wear and spine has no visible damage. In other words, a book that earns the grade \"Mint\" is virtually perfect in every way, but for some reason does not earn a perfect 10. This grade is one of the most heavily abused by those that don't understand comic book grading, and assume a book is flawless without any actual investigation.

    Poor - The worst possible grade that can be given to a comic book. Damage/Wear to a Poor book is so excessive that the book holds little or no actual monetary value. A book with a Poor grade may have excessive writing, staining, fading, loose or missing pages, missing cover, excessive signs of amateur repair (such as tape damage), severely brittle pages or cover, excessive tearing, flecking, etc. Poor books with little damage (particularly important issues) may still be collectable for reading or for repair of other books.

    Grading Terms and Concepts

    When grading there are a number of things to look for, and several terms worth noting when understanding grading of comics and other periodicals.

    Browning/Tanning - Covers and pages can become stained over years of miscare which can result in whites becoming tanned or browned typically by oxidation, smoke, or other soiling. Browning is worse than tanning.

    Dent - Damage that occurs to a book when sharp pressure is exerted. Generally causes structural damage or damage to ink.

    Dullness - Lack of light reflectivity of the cover of a book. This is detrimental to the grade of a book.

    Chipping - Small pieces of a cover or page being removed, typically smaller than about a millimeter.

    Clipping - Wear that occurs on the edge of a book when typically resulting in chipping or creasing.

    Corner Rounding/Blunting - Rounded corners generally occur over time as the corner of a book is damaged. This can occur on any corner.

    Crease/Creasing - Permanent folding, generally where color/structure is damaged resulting in a line.

    Edge Wear - Damage to the sides of a comic book.

    Fold/Folding - Permanent fold in pages or cover which doesn't result in color/structural damage.

    Foxing - Small orange or brown discoloration on a cover or pages.

    Gloss - Light reflectivity of the cover of a book. High reflectivity is prized, especially among older and higher grade books.

    Heavy Crease/Heavy Creasing - Long creases, typically longer than 2 inches.

    Investment Copy - Investment copy typically does not denote a specific grade of book, but is used to generalize books whose quality is good enough to expect some future gain in value.

    Joined Pages - Pages that are not cut apart, resulting from a trimming error.

    Light Crease/Light Creasing - Creases smaller than 2 inches.

    Migration - Staining that occurs when rust damage on staples moves onto the cover and/or pages.

    Mildew/Mold - Fungal damage caused by exposure to excess moisture.

    Missing Pieces - May occur when pieces are ripped or torn from age and normal wear. Also includes ads or other pieces literally being cut out, can be as large as entire pages or cover missing.

    Fading - Fading and other discoloration can occur when a book is exposed to outside factors such as sunlight.

    Fanning/Fanned Pages - Generally caused by spine-roll when pages of comic are fanned out as to be uneven.

    Filed Staples - Filing staples is a restoration technique where rust and discoloration is filed off of the staple, making the staples appear to be in better condition than they are. This can be detected under magnification.

    Fleck/Flecking/Color Fleck - A fleck is a small piece of color that has been flaked off a cover, typically smaller than about a millimeter.

    Pedigree - Sometimes a collection will surface (of a variety of sizes) where books are all in exceptional condition and worthy of particularly high grades that are worthy of being recognized for the collection they came from. Some grading services will recognize pedigree books in the grading. Few collections are recognized as pedigree, but are generally large, are comprised of vintage books, and were purchased by the original owner.

    Pressing - Perhaps the most common type of comic book repair/restoration, pressing is the act of applying pressure (and sometimes heat) to a book to flatten it out and improve its appearance. Pressing often occurs in the home, but professional services do exist with specialized machinery to press comics.

    Printing Errors - Where some other forms of printing (such as postage stamps which are controlled more carefully) may yield valuable or collectable pieces when printing errors occur, errors in printing comic books generally are not collectable. This may include off-center stapling, staples not going through all pages, folding errors, misprinted pages, covers or pages being stapled upside-down, cutting errors where cover or pages are not even, and other similar factory errors. Such errors will also yield a lower grade.

    Reading Copy - Reading copy typically does not denote a specific grade of book, but is used to generalize lower quality (and lower value books). Reading Copy books are worn/damaged enough that they do not make good investments but are still good enough to read.

    Repair/Restoration - Ranges from amateur to professional, books may be \"repaired\" with tape, replacement pages/staples, fixing damages in colors/tears, replacing missing chunks, etc. Sometimes Repair is used to describe improper or amateur work, while Restoration is used to describe more professional work.

    Retouch/Color Touch/Color Touch-Up - Repair done to color flecks by using a replacement ink in the damaged area.

    Rusted Staples - Staples (particularly in older comics) are prone to rust when exposed to too much moisture or humidity. This may also cause rust staining of the cover and pages around the staples.

    Scraped Staple - Repair to rusted or discolored staples by scraping off oxidized or damaged exterior layer.

    Shadow - When a portion of a book is covered by other books or other items an exposed portion may become faded or discolored from being exposed to moisture, sun, etc. that the rest of the book is not exposed to.

    Smoke Damage - Tanning/Browning caused by exposure to cigarette smoke.

    Smudge/Smudging - Finger oil or other soiling generally caused by rubbing with fingers.

    Soiling/Staining - Staining damage to a comic by dirt, dust, or other contaminants.

    Spine - Edge of a comic book created when book is stapled and folded.

    Spine Roll - Caused by improper storage, comics will begin to roll up so that the staples face upward when the book is on a flat surface. In extreme cases the spine will curl over.

    Spine Wear - Creasing and other damage occurring on the spine of the comic.

    Stamps/Ink/Pencil Damage - Older books (particularly those sold at newsstands) may have been stamped with a date or logo that was not a part of the original publication. Also includes damage from writing by pens or pencils.

    Staple Wear/Pull - Staples may cause damage in older books wear the paper or cover around the staple is creased or torn, and in extreme cases the staple is pulled through part of the book (cover and possibly pages).

    Stress Lines - Damage to the spine, particularly around the staples caused by stress to the cover.

    Subscription Fold/Subscription Crease - Fold or crease down the center of a book commonly caused by folding during postal delivery of a book. Because of the damage to the color a subscription crease is worse than a subscription fold.

    Tape - Considered by many to be an amateur restoration, older books may have tears or loose pages repaired by scotch tape. Removal of tape can cause tape stain or residue.

    Trimming - Uneven edges of a book being cut to even up uneven pages/cover or repairing damage to the edge.

    Water Damage/Oil Staining - The paper used in comic books (particularly older comics) is prone to staining contact with liquids. This may be caused by exposure to water (or other liquids), oils, any of which can stain the page by altering its color and doing structural damage to the paper. Bad oil stains may cause paper to become translucent.

    Whiteness - Used to gauge the opposite of Tanning/Browning. The amount of whiteness of cover and pages.

    Authentication

    Several companies exist that will offer comic grading services. Some of those also store comics in archival-quality storage cases to prevent deterioration of or damage to books.

    Prominent Authentication Services

    CGC - Grades comic books and encapsulates them in a hard archival quality capsule. Labels are enclosed with the book to identify features and remarks on the condition of the book including the Volume name, issue number, publisher, important writers and artists, page color, numerical grade, and any other remarks about the issue. Special tag colors are available for restored books, signed books (when signed under the supervision of a CGC employee), or books with serious defects.

    PGX - Offers grading and encapsulation in a hard archival quality capsule. Label is inclosed with the Volume name, issue number, page color, numerical and grade name, and any other remarks on book quality. Remarks are made on the tag about the location of creator signatures, but PGX does not verify signature authenticity.

    Books sealed and authenticated by such companies often command a greater value on the market. There are many reasons for this which include the trustworthiness of the grade, any major defects or restorations being noted, and (least importantly) the inherent value of the grading service and the protective case itself.

    Repair/Restoration

    There are mixed feelings in the comic book industry about the repair or restoration of comic books, and what it does to the value of the book. Generally only used on older books, repairs or restorations can range from rips in pages or covers taped back together, to professional quality restoration of paper, inks and colors, staples, and covers. Restorations may also include using pieces of multiple comic books of a similar era to piece back a book (such as the staples of one book) or to fix torn areas of books. Impact on the value of a book depends on many factors, but a book with significant damage that is old, rare, expensive, and highly sought after may fetch a higher value on the open market after quality, professional restoration than with damage present. Most professional authentication services will do very close and detailed inspection searching for signs of repair. While this may not effect the grade of a book significantly by such services, the remarks on the extent, quality, and area of repair are generally noted on the certification by the company.

    While there is no industry consensus on Restoration of comic books, purchasing restored books is a matter of personal preference.

    Signatures

    As with repair of older comics, there is no accepted standard of what signed books will value at rather than unsigned books. Books with little significance may be relatively unaffected by the existence of a signature. Value of a book with some significance, by a person of some significance may add to the value of a book. Signatures typically do not have much (if any) effect on comic book grades as long as the signature did not cause any damage to the book. Signatures and messages generally occur on the cover of a book, but occasionally occur within the book, particularly on the first page or the inside of the cover. Some creators will take great care to sign in an area that does not obscure a particular portion of the cover (such as the artwork or title), while some generally sign in those areas, and some will sign most anywhere on the cover. Most creators will otherwise still sign where requested by the collector.

    Another common practice is to have one of the contributing artist of a book do a sketch (generally accompanying the signature) on the book. These also vary with respect to size and quality. Occasionally (although rarely), publishers will even put out variant covers of comic books with blank areas designed specifically for this sort of customization. Again, this typically will not effect grading of a comic book. Value of books with sketches vary in a similar manner as signed books, and value for either will depend on the creator's contribution to the book, the creator's contribution to the comic book industry (and to a large degree their popularity), location, and quality. There is a small number within the comic book community that sees either signatures or sketches on comic books by creators as a detriment, and will factor this into grade or value. The general consensus is that neither is bad in their own right.

    The Overstreet

    The Overstreet (short for Overstreet Comic Book Price Guide and Overstreet Comic Book Grading Guide) is one of the largest and most trusted names in comic book grading and appraisal. Gemstone Publishing releases periodically updated copies of their guides. The Price Guide, currently in its 37th release, features information on the ten point comic book grading scale, as well as approximate values of thousands of American comic books with different values for the different grades of each. The Grading Guide features a much more detailed guide to learning the 10 point grading scale with full color photograph examples of every major defect available, as well as information on grading books from different History of Comics, a suggested restoration scale, and a variety of other information. The Overstreet is available in softbound, hardbound, and ring-bound formats, and past issues of the Overstreet have gained some collectors value themselves (and values of previous editions are listed in the book).

    Overstreet is certainly not the only guide available for comic pricing or grading, however it is one of the most prominent and well respected publications available on the subjects. For those serious in grading and appraisal, Overstreet is a great place to start.

    More information can be found on Gemstone Publishing's website at: http://www.gemstonepub.com.

    Other appraisal sources exist, including online sources such as ComicsPriceGuide.com, a website which has detailed values of a variety of comic books from various countries including values in various conditions with CGC certification. For anyone that does not want to sink the money into a copy of the Overstreet Comic Price Guide, ComicsPriceGuide.com can be a useful resource when trying to decide whether you should bid on that online auction, or approximately how much you should expect your own books to be worth.

    More information can be found at: http://www.comicspriceguide.com/default.asp.

    Precaution

    It is the hope of the author(s) of this page that since you have read over this material you will have a rudimentary but working knowledge of comic book grading and appraisal. Before investigating the topic further, precaution is still advisable when trying to describe books, particularly those you intend to sell. Likewise, just because you understand the basics of comic book grading does not mean that everyone else does (or intends to use them correctly). Also, while there is a fairly detailed standard of comic book grading that is commonly used, grading is difficult to do well and consistently. A NM from one grader or grading company may be only given a \"VF\" by another, a sizable difference in both approximate condition and value. When entering into a transaction remember to always supply detailed pictures so that along with your description a potential buyer can make their own judgement on specific flaws, damage, and strong features of a book. Likewise, when attempting to purchase a book (particularly in an online environment, and unless the source is trustworthy) you should obtain detailed pictures of any flaws or damage to form your own opinion before making a commitment.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-418192/","id":418192,"name":"1970","issue_number":"1"},"id":44517,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/131294-88651-comic-book-grading.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/131294-88651-comic-book-grading.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/131294-88651-comic-book-grading.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/131294-88651-comic-book-grading.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/131294-88651-comic-book-grading.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/131294-88651-comic-book-grading.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/131294-88651-comic-book-grading.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/131294-88651-comic-book-grading.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/131294-88651-comic-book-grading.jpg","image_tags":"All Images,Whiteness"},"name":"Comic Book Grading","site_detail_url":"https://comicvine.gamespot.com/comic-book-grading/4015-44517/","start_year":"1970"},{"aliases":"Comic Book Storage\r\nBagging & Boarding\r\nComic Book Repair\r\nComic Book Restoration\r\nComic Book Preservation\r\nBags & Boards","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44586/","count_of_isssue_appearances":51,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-09-23 01:12:16","deck":"Advice from other collectors on how to care for and store your books.","description":"

    Introduction

    Comic book storage is an important part of collecting. Proper storage can mean the difference between protecting your investment, or destroying it. We store to keep our comics fresh, clean, crisp, and vibrant. The three key ingredients to proper storage are: bags, boards, and boxes. There are a number of online retailers for various comic supplies, and any of them can also be purchased at your local comic book store. Following proper storage guidelines will ensure the preservation of your comics condition, ensuring a higher Comic Book Grading and retaining book value. This guide is intended for anyone who is interested in comic book collecting, or has just started collecting and desires a better way to protect the books you have in stacks around your bedroom. It is also important to remember that it is never too late to start taking better care of your books. Neglect and a bad environment can causes damage, but proper care and storage can often prevent further damage from occurring.

    Bags

    Environmental contaminants such as dirt, oils, dust, and excessive moisture can not only devalue your comics by causing excess wear and damage, but may also lead to deterioration of your books. Also, unbagged comics may become scuffed easier. Bags should be made of either polyethylene, polypropylene, or mylar (polyester). All three are archival quality materials, meaning that they are formulated without acids or other harmful chemicals which will lead to the deterioration of your books. Mylar is commonly thought of as being the best choice of the three because it lasts the longest, and provides extra support, however many collectors elect to use one of the other two choices because of Mylar's higher price tag. Bags come in a variety of sizes (and thicknesses), so it is important to make sure that whatever you are buying will fit your books properly. The most common sizes are Modern, Regular, Silver, and Golden age. Most comics since the 1980's will fit in Modern size bags, so Modern bags will fit most books produced today.

    Bags are designed with a long flap at the top which is to be folded over and taped down (most use simple scotch tape). This is important because you will not risk the tape making contact with your books. Self-adhesive bags are also available at a slightly higher cost. While some collectors prefer self-adhesive bags for their ease of use and convenience, others will avoid them because repeated taking out and returning of books makes it easier to get the adhesive flap stuck to your books. Bags are also available in a 3-ring binder version which will allow 3-ring binder storage of comics.

    Boards

    \"Comic
    Comic Boards

    Boards provide extra structural support to your Bagged comic books. You will only want to purchase acid-free boards to store your comics to avoid contamination. Boards are inserted into comic bags behind the comic, with the back of the comic to the board. As with bags the grades of boards can vary. What is most important is purchasing archival safe boards (again, there are degrees to this too) ensuring proper care of books for the duration of their storage. Comic book boards have two sides to them: one side is rough and matte, the other side is smooth and glossy. Since boards are only intended to protect one comic, only one side is treated, this is the smooth side of the board.

    Boxes

    \"Short
    Short Box

    Boxes can also be an important measure to protect your books from environmental contaminants, sunlight (which can cause damage to the covers of your books), and will preserve the edges and corners of your comics. Boxes are also important because comics prefer to be stored upright rather than being laid flat or stacked, and boxes allow this to be done more easily. There are a variety of styles of Boxes, but here we will only be looking at the most common. Long Boxes and Short Boxes are the most common. A traditional Long Box will store around 300 books depending on what kind and how tightly packed they are. Short boxes only store around 100 books, but some collectors find them better suited to their needs because they are smaller (meaning easier store), and the reduced number of books makes them drastically lighter than a full long box. Another option is pull-out drawer boxes. Boxes with pull out drawers are designed exactly how they sound which can make them much more convenient for comic storage. Boxes are often stored stacked on top of one another, and enough boxes can make reaching those bottom boxes quite an ordeal each week. Boxes with pull-out drawers can be stacked and accessed at any time without having to constantly unstack or rearrange. Dividers can also be purchased for boxes (or may come with them). Dividers are not necessary for the care or protection of your boxes, but may improve access to comics.

    As with Bags and Boards, boxes come in a variety of materials including cardboard, plastic, and wood or metal. Most collectors will opt to use traditional acid-free cardboard boxes because they are inexpensive, safe, and stackable. Long boxes, short boxes, and pull out drawer boxes all come in cardboard designs which can be assembled without any adhesives. Some collectors will purchase archive safe plastic boxes, and occasionally collectors with larger allowances for their comic habit will use wooden or metal cases (which can be purchased or built in a variety of styles).

    Hard Shells

    Sometimes a collector desires more than just the simple bagging and boarding. A variety of shapes and styles of comic storage devices exist on the market to give a much more rigid protective shell for comics. The main designs of such are clam-shell or slip over. Hard shells for storage can become very costly, and therefore is not something that most collectors opt to do. Some, however, will purchase special storage for their prized books: sketched or autographed copies as well as older or more valuable books. Again, you should use your discretion and make a choice here that fits your interest and budget. Also, it is still important to seek out cases that are acid and contaminant free so that your means of protecting your books do not actually destroy your books.

    Authentication Services

    Several companies exist that will offer Comic Book Grading services. The most prominent of those will also store comics in archival-quality storage cases to prevent deterioration of or damage to books. Two of the most common are CGC and PGX. The capsules used by both companies to encase comic books not only include information about the comic and its grade, but will also enclose your comic in a rigid, contaminant free exterior which rivals the best cases that one can buy on their own. One of the main drawbacks to this is the price-tag. Because of the high price tag involved this is not a good method for general storage, but can be an excellent way to offer some of the best protection to your most valuable and important books. It is worth noting that while encased for their protection, comics in these cases can still be damaged if not properly cared for. Also, these cases are designed to be tamper-evident so comics that are encased in such capsules cannot be read and the shell must be broken to remove them. This is so that the grade given and the book cannot be altered after you get your book back. These cases are also much larger than traditional comics, and require special boxes to store them.

    Repair

    If you have particularly old and valuable comics that have sustained damage or wear over the years, repair options do exist. This remains a controversial topic in the comic book community: Should I repair, or is it best to leave a book alone. Proponents of comic book repair see repairing or restoring a book as bringing it closer to its original condition, and therefore bringing it back to the way that it should be. Those who are against comic book repair often see it as deceitful, making a book appear to be something other than what it is and artificially inflating its value. While much debate exists in this area, proper restoration of a comic book can raise both its grade as well as its approximate value under the right circumstances. Some common repairs are:

    Pressing - Pressing a comic is the act of putting it under large amounts of pressure (and sometimes heat) in order to flatten it out. This can raise the value of an older book; sometimes by thousands. Pressing can be as simple as leaving a book under a stack of dictionaries, and there are even professional pressing services that use special machinery to apply both heat and pressure to a book.

    Staple Repair - Rusted staples may be filed down and smoothed to remove oxidation and discoloration. If this is done well it is only evident under magnification. Staples may be re-folded and re-attached to books when they come loose, and the paper of the book may be tucked under and inside the staple.

    One's stance on repair or restoration is simply a personal choice, but it is good to understand both sides of the issue before one decides to go ahead and have books restored (or attempting to do it on your own).

    Tips

    One particularly easy aspect of comic book care, preservation, and handling that is easy to overlook is personal hygiene. It is important to have clean, dry hands when working with your comics. Dirt, oils, dust, and other contaminants can damage comic books. This is especially true when dealing with older comics. Acid in particular has been mentioned several times throughout this article because the papers comic books are printed on (particularly older comics) can be highly susceptible to damage from acid, and will deteriorate much more quickly in its presence. Smokers should be particularly careful because the chemicals in cigarette and cigar smoke will also destroy your books. Keep your books away from sunlight and florescent light. Sun and florescent light will damage book covers causing them to lose color vibrancy and gloss. Comic books also prefer to be stored in a cool, dry place. Heat and moisture (including humidity) can cause a variety of damage to books including mold, mildew, water staining and wrinkling of paper. Also, because of inferior papers and inks older comics are much more susceptible to just about all forms of damage than those produced to day. This is particularly true of books that are already damaged with age and wear.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-418192/","id":418192,"name":"1970","issue_number":"1"},"id":44586,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/131423-89849-comic-book-care.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/131423-89849-comic-book-care.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/131423-89849-comic-book-care.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/131423-89849-comic-book-care.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/131423-89849-comic-book-care.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/131423-89849-comic-book-care.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/131423-89849-comic-book-care.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/131423-89849-comic-book-care.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/131423-89849-comic-book-care.jpg","image_tags":"All Images,Longboxes"},"name":"Comic Book Care","site_detail_url":"https://comicvine.gamespot.com/comic-book-care/4015-44586/","start_year":"1970"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44719/","count_of_isssue_appearances":273,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-06-17 13:41:18","deck":"This is a list of comic book/manga characters in general who are very much dead or uncertain but suspected of dying and how they died from all universes.","description":"

    Marvel Universe

    A

    Adversary: Died in battle with Forge.

    Absalom: Life drained by Selene.

    Agamemnon: Rocket shot down.

    Aghanne: Died when exposed the power core by Colossus.

    Aguja: Burnt to death by Fuego thanks to Lady Mastermind's illusions.

    Ajak: Disintegrated himself and Damian out of guilt.

    Ajax II: Killed in battle with Deadpool.

    Aminedi: Succumbed to the Legacy Virus.

    Anarchist: Killed by assassins in X-Statix's final mission.

    Ancient One: Made Doctor Strange shut his brain down.

    Angar the Screamer: Gun downed by police during a robbery.

    Annalee: Killed by Scalphunter during the Mutant Massacre.

    Annihilus: Killed by Nova.

    Anetus: Torn to pieces by Magneto.

    Anti-Phoenix: Life consumed by Necrom.

    Ape: Killed at the Neverland concentration camps.

    Ape-Man: Killed by a bomb planted by the Spymaster.

    Apemensa: Killed by the God-Killer.

    Appa Ali Apsa: Killed by fellow Guardians after he went insane.

    Arabian Knight (Abdul Qamar): Randomly drained of all his life-force by Humus Sapien'.

    Ares: Ripped in half and disemboweled by Sentry.

    Ariel (Fallen Angels): Killed in a missile attack.

    Colonel John Armbruster: Realized that Major Talbot had a bomb in his body and dragged him into a pit which killed both of them.

    Aron The Rogue Watcher: Killed by Uatu the Guardian.

    Arthur Perry: killed two times by the same hand, Elektra, first as SHIELD agent, later after being rebuilt as a cyborg.

    Ashcroft: Eaten by Zombies.

    Michael Asher: Dropped from hundreds of feet in the air by U-Go Girl.

    Atenai: Killed by the God-Killer.

    B

    Gailyn Bailey: Executed by the Shi'ar Death Commandos.

    Joey Bailey: Died along with his sister.

    Barbara Ketch: Killed in hospital bed by Blackout.

    Bryson Bale: Fell out of a building along with Malcolm Reeves.

    Bantam (Robert Velasquez): Killed when Thunderclap accidentally knocked him into a gas tank causing it to explode.

    Banshee: Killed by Vulcan when he rammed the stolen Blackbird into a plane.

    Barrage: Killed during a battle with Madelyne Pryor.

    Baron Blood: Decapitated by Captain America.

    Baron Heinrich Zemo: Crushed by a landslide during a fight with Captain America.

    Basilisk (Basil Elks): Killed by Scourge of the Underworld.

    Basilisk (Special class): Killed by Xorn / Magneto.

    Battering Ram: Died during the Boys 'r' Us Massacre.

    Bedlam I: Vindicator blew his head off.

    Jesse Bedlam: One of the victims of the Church Of Humanity.

    Beef: Thrown through the window of a penthouse and crashed to the street below.

    Beetroot: Died of the Warpies virus.

    Bela: Tortured to death by the Marshal.

    Raymonde Belmonde: Life removed by Deadly Ernest.

    Michael Berengetti: Killed by the android Frost.

    Berzerker: Accidentally killed by Cyclops.

    Bette: Killed when the Church Of Humanity invaded her brothel.

    Bevatron: Drained of his life energy by Trevor Fitzroy.

    Big Man: Sacrificed himself to save J.J. Jameson.

    Bird-Man: Murdered by the Scourge of the Underworld.

    Birdy: Killed by Graydon Creed to spite his father, Sabretooth.

    Black Bishop I (Harold Leland): Heart gave out while battling Nimrod.

    Black Box: Ripped up by Sabretooth.

    Black King III: Killed by his Black Queen when London was gripped by madness.

    Blackout: Died of a brain hemorrhage.

    Black Rook I: Incinerated by Nimrod.

    Black Swan: Killed by Agent X.

    Carter Blaire: Died as his body was possessed and disintegrated by Dust.

    Siena Blaze: Died in the gas chambers of the Neverland Facility.

    Blindside: Incinerated by Storm's lightning.

    Blizzard: Killed by Amo Stark.

    Blockade: Aentaros the Undying possessed him and, when he was done, snapped his neck.

    Bloke: Died protecting Diego Ardilles from helicopter fire.

    Bloodhawk: Gave his life to save Thor.

    Ulysses Bloodstone: Died when a Conspiracy member removed the Bloodgem from his chest.

    Inky Blott: Life consumed by Necrom.

    Blow-Hard: Shot by a local gang in New York.

    Bluebird: Killed in an automobile accident.

    Julien Boudreaux: Killed by his father Marius.

    Marius Boudreaux: Heart gave out.

    Box (Roger Bochs): Lobotomized by Lionel Jeffries after merging with him to become Omega.

    Box (Jerome K. Jaxon): Killed by neural feedback when the Box robot was destroyed.

    Lucas Brand: Killed by Doctor Sun

    Nathaniel Briggs: Vulcan used his powers to burn him to death.

    Brightwind: Dani Moonstar's trusted horse was killed by Reignfire.

    Kaptian Briton: Psi-blasted by Psylocke.

    Brutacus: Killed in an explosion of magical energy created by the Scarlet Witch.

    Brute II: Shot in the head by Cable.

    Bulk: Succumb to radiation poisoning while helping the New Mutants against the High Evolutionary.

    Bulwark: Died in the gas chambers at the Neverland Facility.

    The Burglar: Died of a heart attack after finding out Spider-Man's true identity.

    Burke: Terminated by Bishop, Randall, and Malcom.

    Burke (William): Legacy Virus

    C

    Caliban: Killed saving Warpath from a Reaver.

    Caledonia: Killed by Jaime Braddock.

    Calypso: Killed by Alyosha Kravinoff.

    Candra: Heart gem destroyed by Cyclops.

    Captain Mar-Vell: Died of cancer

    Captain Marvel (Genis-Vell): Killed by Zemo so that he would not destroy the universe.

    Captain Universe (Monty Walsh): Murdered by The Uni-Power for attempting to use his abilities to take over The Maggia.

    Captain Universe (Gabriel Vargas): Murdered by a tech-infected Blastaar shortly after he lost The Uni-Power.

    Captain Universe of Earth-Law Enforcement Squad: One of his M-Bodies was destroyed by an evil version of Frankie Raye. (Ressurrected Himself)

    Carnivore (Dick Chalker): Hit by a truck.

    Carrion (Miles Warren): Died in a fire

    Cat-Man: Killed when a bomb planted by Spymaster went off.

    Catseye: Drain of her life energy by Trevor Fitzroy.

    Cell: Executed by a Sentinel.

    Cerebro: Dispersed after a psychic encounter with Charles Xavier.

    Vic Chalker: Electrocuted by his own suit due to a mis-wiring.

    Champions of Xandar: Killed by Nebula when she wiped out the entire population.

    Chang: Drained of his blood and trapped in a collapsing building.

    Changeling: Killed by Grotesk.

    Chaos: Ceased to exist when Cerebro reabsorbed him.

    Chicken Wings: Killed by Sabretooth.

    Chrome: Died on during Asteroid M's fall from orbit, crashing to earth

    General Clarke: Died due to the massive exposure of radiation at the Department H's reactor.

    Clive: Run down by Malcolm Reeves,life then drained by Bela.

    Elijah Cross: Exploded thanks to Quicksilver'sre-mutation process.

    Coach: Shot in the during a struggle by U-Go-Girl.

    Cobalt Man (Ralph Roberts): Died in a nuclear implosion while trying to kill his slaver, Egghead

    Cobalt Man (Ted Roberts): Died when Nitro exploded at Stamford.

    Coldheart: Died when Nitro exploded at Stamford.

    Comet: Died in battle against Nebula.

    Concussion: Killed by the cyborg assassin Firfox.

    Conscience (Stephen Lang): Rode a ship carrying a deadly virus into orbit, committing suicide to disperse it safely.

    Conquistador: Torn to pieces by zombies

    Copycat: Killed by Sabretooth.

    Archibald Corrigan: Killed at the Princess Bar in an attempt to frame Wolverine

    \"Corsair\"
    Corsair

    Corkscrew: Judged to be unfit for duty and killed by Doop.

    Cornelius: Shot in the head by Maverick.

    Corsair: Killed by Vulcan.

    Anne-Marie Cortez : Killed when Asteroid M crashed to earth.

    Fabian Cortez: Smashed into the ground at 11 times the speed of sound by Magneto.

    Cosmo: Vulcan killed him during his attack on the Shi'ar.

    Graydon Creed: Killed by his mother Mystique.

    Crucible: Swallowed alongside Ayesha and Tam Anderson into a black hole.

    Crule: Life energy drained by Selene.

    Crux: Ceases to exist when Cerebro reabsorbed her.

    Esme Cuckoo: Killed by Xorn

    Sophie Cuckoo: Killed by Esme's psychic influence

    Cybelle: Executed by one of Harpoons spears.

    D

    Emmanuel DaCosta: poisoned by his assistant Eve, under the direction of Gideon.

    Dai Kumo: Killed by Reiko's sword.

    Daniel Kingsley: Killed by Phil Urich.

    Daria: Self destructed.

    Dark Mother: Assassinated by the Marauders.

    Darkstar: Possessed by Weapon XII and killed by Fantomex.

    Dead Girl: Died in X-Statix's final mission. (is Active but dead)

    Dead Bolt: Decapitated by a feral Wolverine.

    Deadly Ernest: Vivisected by Puck using Nemesis' blade.

    Deathcry: Killed by friendly-fire from Captain Universe.

    Decay: Overdosed on the powers he absorbed from the High Evolutionary, and ruptured and exploded.

    Walter Declun: Killed by Wolverine.

    Harry Delgado: Died on Asteroid M's crash to earth.

    Deluge: Overloaded on Cyclops' optic blast.

    Demogoblin: Crushed to death by a building while saving a kid.

    Destiny (Irene Adler): Killed by Legion.

    Jean DeWolff: Shot by her husband the Sin-Eater.

    D'Gard: Killed by Marrow.

    Diamond Lil: Killed by Mortis

    Digitek: Committed suicide after being apprehended by SHIELD.

    Dinar Soar: Killed by Maelstrom.

    Dirtnap: Exploded when he tried to assimilate M-Plate.

    Divebomber: Killed by Havok.

    DJ: Died in Strykers missile attack.

    Doctor Daniel Damian: Disintegrated by Ajak.

    Doctor Druid: Killed by Hellstorm.

    Doctor Killbrew: Killed by Ajax.

    Doctor Sun: Killed by H.E.R.B.I.E.

    Doctor Synne: Could not handle the energies Mastermind was feeding him after losing his connection to the computer.

    Jonathan Drew: Killed by his employers.

    Patience Drew: Skeleton found by Namor.

    Dragon-Lord: Recently killed by the K.I.A.

    Dryad: Died in Strykers missile attack.

    D'Von Kray: Decapitated by Wolverine after a tek-blast from Cable.

    E

    Egghead: Gun misfired, killing himself.

    El Guapo: Impaled on his own skateboard due to curse of Henrietta's song.

    Mariah Ellenthorpe: Accidentally killed by X-Cutioner.

    Enchantress: Died when Ragnarok finally came.

    Enforcer: Shot and killed by The Scourge of the Underworld.

    Erik the Red: Fried by Adam X powers.

    Executioner: Killed in conflict with the Phoenix.

    Executioner (Skurge): Died guarding the escape of Thor's forces.

    Externals: All drained of their life energies by Selene.

    Eyebeam: Killed by Bishop, Malcolm, and Randall after travelling to the present.

    F

    Fagin: Torn to shreds by Vivisector.

    Fan Boy: Stabbed through the heart by Lacuna at the request of Orphan.

    Fang IV: Killed in combat with Cerise.

    Fang V: Killed by Vulcan.

    Fenris (Andrea): Stabbed by Helmut Zemo.

    Feral: Gutted by Sabretooth.

    Trevor Fitzroy: Cut in half when his portal closed on him.

    Forearm: Died during the Bloodsport Tournament.

    Foxbat: Hunted down and killed by the Dark Riders.

    Francis Castle Jr.: Murdered by the Mafia.

    Freakout: Impaled on spikes by Bedlam the Living Brain Blast.

    Spike Freeman: Killed by Guy Smith.

    Delilah Fremont: Decapitated by Psylocke.

    Sharon Friedlander: Killed by the Acolytes.

    Nigel Frobisher: Stabbed by Sat-yr-9.

    Frog-Man: Died when a bomb planted by Spymaster went off.

    Fuego: Died when Iceman froze him.

    G

    Gardener: Died in battle with Thanos.

    Dan Garrett: Died while foiling Jarvis' plans, resurrected by the Scarab but chose the final death.

    Jeffrey Garrett: Died when Xorn destroyed the mansion, returned as ghost, disappeared after M-Day.

    Gemini: Killed by Maggia decoys.

    Genegineer David Moreau: Killed when Cameron Hodge broke his neck.

    Genesis: Killed by Wolverine.

    Germaine: Killed by a mobster.

    Gideon: Life drained by Selene.

    Gilded Lily: Alchemical discorporation.

    Ginniyeh: All the moisture drained from her body by Iceman.

    Heather Glenn: Committed Suicide after Matt Murdock broke up with her.

    Glow Worm: Died helping the New Mutants against the High Evolutionary.

    Godkiller (Super-Skrull): Crushed under New Asgard by Thor and Beta Ray Bill.

    Goldbug: Shot and killed by the Punisher.

    Golden Archer (aka Black Archer): Died in battle with Blue Eagle.

    Goliath (Bill Foster): Killed by the Thor clone.

    Goth: Overloaded on energy by Rogue, using Gambit's power.

    Grand Director: Committed Suicide.

    Grasshopper: Killed by Zaran.

    Grasshopper II: Jumped into space, died as he did not have a space suit to survive the conditions.

    Grasshopper III: Killed by Deadpool.

    Green Ghost: Discorporated while attempting to bond herself with Gambit.

    Gremlin: Killed in battle with Iron Man.

    Gremlin: Killed in a battle with Vision

    Grey King: Ceased to exist when Cerebro reabsorbed him.

    John Grey: Killed by Shiar Death Squad.

    Elaine Grey: Killed by Shiar Death Squad.

    Sarah Grey-Bailey: Assimilated by the Phalanx.

    \"Jean's
    Jean's Latest Death

    Jean Grey: Died when Xorn / Magneto transfers large amount of electro-magnetic energy to her brain.

    Greystone: Died in the explosion of a slipshod time machine.

    Griffin: Saved from the wrath of a river by his friend Bart, who he then apologised to just before he died.

    Grizzly (Theodore Winchester) : Domino was forced to kill him when he was controlled by Genesis.

    G-Type: Dissipated by Xorn's power.

    H

    Happy Hogan: Died when Tony pulled his life support at his wife's urging.

    Hardaway: Killed by Locus when she phased half his body into a tree.

    Harddrive: Killed in a battle with Madelyne Pryor.

    Agatha Harkness: Murdered by Scarlet Witch.

    Harvest: Caught in Blink's blink wave.

    Louise Hastings: Killed by Morbius.

    Haven: Torn apart as her long gestating fetus the Adversary birthed himself.

    Hawd Boiled Henwy: Self-combustion and explosion.

    Healer: Died when he used all of his powers to save Callisto burning him and his powers out.

    Hemingway: Killed by an angry and vengeful Agent Zero.

    Carol Hines: Killed by Aldo Ferro.

    Helmut: Terminated by Wolverine and Cyclops.

    Hobgoblin (Imperial Guard member): Died in assassination attempt while impersonating the Majestrix.

    Hobgoblin III (Ned Leeds): Shot by the Foreigner's mercenaries.

    Hobgoblin IV (Jason Macendale): Killed by the original Hobgoblin, Roderick Kingsley.

    Cameron Hodge: Died when the X-men killed the Phalanx.

    Dennis Hogan: Beaten to death by anti-mutant college students.

    Hornet: Killed by a brainwashed Wolverine.

    Henrietta Hunter: Beaten to death by Mister Code.

    Human Torch (Jim Hammond): Systems overloaded and detonated.

    Hurricane (Dark Riders): Died in an adamantium spike explosion.

    Hydro: Drowned when his powers were forcibly removed

    I

    Icarus: Killed by Stryker.

    Impulse (Imperial Guard): Killed by Vulcan.

    Infectia: Legacy Virus.

    Interloper: Sacrificed his life to destroy the Dragon of the Moon.

    Iron Curtain: killed by the cyborg assassin Foxfire.

    J

    Jackdaw: Executed by the Fury.

    Jack Frost: Killed by Arno Stark.

    Jack O' Lantern: Killed by Punisher.

    Jack of Hearts: Committed suicide by causing himself to explode, taking out the man who kidnapped Scott Lang's daughter.

    Jaeger: Impaled on Cecilia Reyes force field spikes.

    Janus: Bedlam forced both twins to kill each other.

    Jarella: Crushed by debris saving a young boy.

    Javitz: Life drained from him by Holocaust.

    Jazz: Choked to death with the help of Johnny Dee's power.

    Jennifer Kale: Turned by a Zombie then killed by what seems to be Man-Thing.

    Jenskot: Killed when a bomb set by Stryfe went off.

    Jester: Killed by Punisher.

    Jetstream: Life energy drained from him by Trevor Fitzroy.

    Joseph: Lost physical cohesion while communing with the electromagnetic spectrum.

    Jumbo Carnation: Unwillingly overdosed on Kick.

    K

    Kamikaze: Accidentally decapitated by Archangels metal wings.

    Kane: Died the Underground against Weapon X.

    Robert Kelly: Assassinated by anti-mutant activist.

    Eric Kleinstock: Shotgun blast to chest by Tom Corsi.

    Koryak: Killed when Atlantis was destroyed.

    Kraven the Hunter: Shot himself in the head after finally defeating Spider-Man since his goal in life had been achieved.

    Kroger: Passed backwards through Fitzroy's one-way portal, obliterating himself.

    L

    La Bandera: Killed by Zeitgeist, the Everyman.

    La Nuit: Killed during the BOYS'R'US massacre.

    Landside: Ceased to exits when Cerebro reabsorbed him.

    Lisa Castle: Murdered by the Mafia.

    Stephan Lang: Died when Phalanx broke down.

    Mei-Ling Lao: Incinerated by Thunderbird III.

    General Lazer: Neck snapped by Johnny Dee using his voodoo doll powers.

    Henri LeBeau: Killed by assassins crossbow bolt.

    Gordon Lefferts: First victim of Legacy Virus.

    Left-Winger: Committed suicide.

    Legion (Thug): Future self killed by the Fury, causing his lifeline to end.

    Tom Lennox: Shot and killed by Mad Jim Jasper's storm troopers.

    Alexander Lexington: Brain devoured and merged with the nano-sentinels.

    Lifeforce (Dark Riders): Died in an adamantium spike explosion.

    Lightning Bug: Psychic consciousness dissipated after the Mutant Massacre.

    Living Diamond: Frozen into a diamond state and then shattered.

    Locus: Assassinated by Sabretooth.

    Loki: Killed by the Void

    Lucifer: Assassinated by members of his own race.

    Jorge Lucas: Name appears on tombstone after Strykers attack.

    Luminesca: Killed when she was unable to change the chemical structure of the toxic gas emitted by Plague.

    M

    Maria Castle: Murdered by the Mafia.

    Moira MacTaggert: Murdered by Mystique.

    Madam Drache: Killed when the Church of Humanity invaded her brothel.

    Maelstrom: Tricked into killing himself by Mr. Immortal.

    Maggot: Died in the death chambers at the Neverland facility.

    Major Mapleleaf: Died in combat with the Collective.

    Malachi Hark: Nero ambushes him and kills him with lightning.

    Malice: Psychic essence discorporated by Sinister.

    Malcolm: Died protecting Bishop during the fight with the Lifers.

    Mammoth: Killed by Cassandra Nova, in possession of Xavier's body.

    \"Mammomax\"
    Mammomax

    Mammomax: Used as a test subject for the Facility's new project, the project consumed him.

    Madmen: They were gun downed by Crimson Avenger, Vigilante, and Wild Dog.

    Tran Manh: Absorbed by his twin, Karma through their shared power link.

    Magner: Killed by the God-Killer.

    Cylla Markham (Skullbuster II): Drained of her life by Bloodscream.

    Marshal: Killed in an exposure to Asher's combustable blood.

    Master of the World: Stabbed through the heart by Warbird.

    Mastermind: Legacy Virus.

    Mastodon: Age suppression wore off.

    Maverick (aka Bolt): Died in an explosion while working undercover with Gene Nation

    Meltdown: Nuclear Explosion.

    Meme: Jean Grey turned off his mind.

    Mentac: Killed by the cyborg assassin Foxfire.

    Mentallo: Killed by Martian Manhunter's eye beams.

    Mercury: Ceased to exist when Cerebro reabsorbed him.

    Microbe: Caught in Nirto's explosion.

    Miek: Killed by both No-Name and Hulk.

    Milan: Life drained by Holocaust.

    Mindworm: Killed by a street gang.

    Mirrorshade: Damaged his energy harness when trying to mimic Madrox.

    Miss America: Died giving birth to her child.

    Mister M: Murdered by Johnny Dee, apparently evolved after death.

    Mole: Killed by Sabretooth.

    \"MVP\"
    MVP

    Moondragon: Killed in battle with Ultron and the Phalanx.

    Mondo: Killed by Bastion.

    Monkey Joe: Killed by Leather Boy.

    Mother Inferior: Trapped under falling debris.

    Mutant Master: Committed suicide when he failed his mission.

    MVP: Killed by a wild blast fired from Armory's cannon.

    N

    Naomi Kale: Killed in a battle with Mephisto

    N'astirh: overloaded on Storms lightning bolts and exploded.

    Native: Killed by Sabretooh in spite of Logan.

    Naze: Destroyed and consumed by a Dire Wraith.

    Necrom: Overdosed on Phoenix powers.

    Lilandra Neramani: Assassinated by Shi'ar impersonator

    Network (Sarah Vale): Killed in Strykers missile attack.

    Neutron (Imperial guard): Killed by Vulcan.

    New Sun: Impaled on a statue.

    Nicodemus: Legacy Virus.

    \"Nightcrawler\"
    Nightcrawler

    Nightcrawler - Impaled by Bastion while protecting Hope, the Messiah.

    NightHawk: Killed by Matilda Dunney Roderic latest incarnation of Hath-Set.

    Nightshade: Killed in attack on Ronan an Crystals wedding

    Night Thrasher: Killed by Nitro in the explosion at Stamford.

    Number One Fan: By way of his own razor sharp hand.

    O

    Omega Red: Killed by Wolverine with the Muramasa Blade.

    Onyxx: Killed by Wither during Necrosha.

    Orka: Shot by a Doombot through the chest.

    Orphan: X-Statix's final mission.

    Orwell: Killed by Hoffman.

    Oxo: Fury eviscerated him.

    P

    Karen Page: Killed by Bullseye.

    Ben Parker: Killed by a burgler.

    Pathfinder: killed when he started a fight with Wolverine.

    Peepers: Killed and Eaten by Predator X.

    Pestilence: Knocked off flying steed by Julie Power and died upon impact.

    Petra: Incinerated by one of Krakoa's rocky avatars.

    Nemesio Petri: Killed by the Worm in the underneath Mutant Town. Phat: Fell onto a bomb to save his team-mates.

    Gordon Phillips: Neck snapped by Sabretooth.

    Piecemeal: Chose to end his own life after bonding with Proteus.

    Pig: Mind-controlled by Gambit using a special gas, forced to fall to his death.

    Piper: Killed in the Mutant Massacre.

    Pixie: Killed by Blackout.

    Plasma: Killed in subway explosion.

    Plazm: killed in Boys R US massacre.

    Plunderer: Shot and Killed by Punisher.

    Post: Killed by Pyro to save Senator Kelly.

    Professor: killed by Silver Fox.

    Paulie Provenzano: Died in the Gas Chambers at Neverland

    Prudence: Immolated by Steinbeck's flame power.

    Carmen Pryde: Died in the assault on Genosha.

    Madelyne Pryor: Killed by Jean Grey.

    Psynapse: Vaporized by a backlash of X-Man's powers.

    Puck (Zuzha Yu): Died in combat with the Collective.

    Hank Pym: Earth-1610. Killed by Madrox suicide bombers during Ultimatum.

    Pyro: Legacy Virus.

    Q

    Qua: Died from the virus released by Nero.

    Quasar: Killed by Annihilus.

    Quiet Bill: Murdered by Riptide.

    Quill: Murdered by one of Strykers followers.

    R

    Rabbit: Murdered by Reignfire.

    Randall: Died protecting Bishop during the fight with the Lifers.

    Rapture: Ceased to exist when Cerebro reabsorbed her.

    Rax: Torn apart by Magneto's powers.

    Redwing: Erased from history.

    Malcolm Reeves: Tumbled out of a high building along with Bryson Bale.

    Malon Reeves: Impaled on Spikes extentions.

    Reignfire: Vaporized inside a Celestial golem.

    Reiko: Gutted herself in disgrace for unwittingly betraying Logan.

    Rem Ram: Massice Sentinel attack on Genosha.

    Revanche: Mercy killed by Matsu'o as she entered the final stages of the Legacy Virus.

    Revelation: Killed by failsafe droids designed to prevent her deadly power from spreading.

    Reverb: Speared by one of the bone-knives Storm threw.

    Rex: Killed by Dark Beast.

    Ricochet: Killed in a ricochet off of Sinister's body.

    Risque: Killed while investigating Sublime.

    Franklin Rhodes: Drew fire from D'Von Kray and was hit multiple times.

    Cody Robbins: Taken off life support by Candra and the Assassins Guild.

    Courtney Ross: Incinerated by her counterpart Sat-yr-nin.

    Roulette: Drained of her life energy by Trevor Fitzroy.

    Maeve Rourke: Killed in IRA bombing.

    Rubbermaid: Killed in Strykers missile attack.

    Rusty Collins: Obliterated during Holocaust's attack on Asteroid M.

    S

    Sabretooth: Decapitated by Wolverine.

    Saint Anna: Killed by hail of gunfire.

    Salvo: Torn apart by Magneto's powers.

    Samson: Killed by Sabretooth during the Mutant Massacre.

    Sangre: Shot with thermite bullets by Mystique.

    Sasquatch (Not Walter): Dissolved by a flesh eating organism.

    Sat'neen: Shot down by Necroms magic.

    Saul: Drained of his life energy by Selene.

    Scaleface: Shot by cops.

    Scarlet Spider: Killed by the Green Goblin.

    Scramble: Put down by his brother Madison Jeffries.

    Scrambler: Eviscerated by X-23.

    Selene: Stabbed in the chest by Warpath with the Ritual Knife.

    Sentry: Killed by Thor to end the Siege of Asgard.

    Senyaka: Decapitated by Wolverine in the final battle of Necrosha.

    Serpentina: Junkpile crushed her head into concrete.

    Shadow X-Angel: Killed by one of Albions captains.

    Shadow X-Beast: Stabbed by Sage.

    Shadow X-Cyclops: Decapitated by Sage.

    Shadow X-Xavier: Stabbed by Lionheart.

    Senyaka: Died when the Sentinels attacked Genosha, later revealed to be alive.

    Sidestep: Disposed of by Doctor Doom for failing him.

    Sin-Eater: Shot by cops.

    Siege: Biten by a zombie and turned,then once his robotic system realizes what happened it blows his head up

    \"Silver
    Silver Fox

    Silver Fox: Killed by Sabretooth while hunting Aldo Ferro.

    Sinsear: Sacrificed himself to prevent the TDC from destroying all of time.

    Skin: Crucified on the X-men's lawn by the Church of Humanity.

    Hamilton Slade: Beheaded by his brother Fredrick.

    Margret Slade: Murdered by her vampiric son Hamilton.

    Slaymaster: Head smashed in by Captain Britain.

    Sluk: Died in a covert ops mission.

    Slyde: Killed by Underworld.

    Smart Alec: Stepped on.

    Smasher: Killed by Vulcan.

    Smoke: Sliced in two

    Sophie Pettit: Died in a car crash while fleeing from Bishop with Hope Summers and Cable. He could only save one and chose Hope.

    Candy Southern: Executed by Cameron Hodge.

    Speedfreek: Died in Nitro's explosion at Stamford.

    Spike: Killed by a Bush Ranger on a space station.

    Spitball: Crushed by a falling wall.

    Spymaster I: Given an intangibility device by the Ghost who then removed it while he was phasing through a wall, killing him instantly.

    Spyne: Dismembered by Wolverine.

    Squidboy: Crushed and mutilated by Black Tom Cassidy.

    Gwen Stacy: Thrown from building by Green Goblin, but the force of her falling and and abrupt catch by Spider-Man broke her neck.

    Cosmo Stephanapoulus: Accidentally killed by her employer X-Cutioner.

    Stilt-Man: Killed by Punisher.

    Stonewall: Killed by Donald Pierce.

    \"Umbridge
    Umbridge Shot

    Strator Umbridge: Shot by Tetherblood when found she was confederate with the New Canaanites.

    Stryfe : Sacrificed himself to destroy Le Bete Noir.

    Styglut: Killed in combat by Bishop.

    Reverend Stryker: Killed by Elixir's organic power.

    Alysande Stuart: Killed by Jamie Braddocks power.

    Stylles: Killed by Bishop, Randal and Malcom.

    Sub-Commander Blake: Thrown out of a Helicopter in the Zombieverse.

    Succubus: Shot and killed.

    Sugar Man: Skewered on a pole by Callisto.

    Sumo: Headshot by Cable.

    Sunder: Killed by Pretty Boy on Muir Island. Sunpyre : Murdered by Mystique and the renegade X-Corps members.

    Supreme Intelligence: Killed by Ronan the Accuser.

    Sway: Cut into pieces by one of Krakoa's avatars.

    Synch: Died in a bomb explosion.

    T

    Tag: Died in Strykers missile attack.

    Glen Talbot: Killed when the War Wagon crashes in Japan.

    Tamara: Killed by Faust

    Tanaraq: Heart ripped out by Snowbird.

    Tar Baby: Died in the gas chambers at the Neverland Facility.

    Tattoo: Decayed by the Zodiac's Cancer.

    Temptress: Slashed open by Wolverine.

    Tension: Incinerated by Havok's plasma blast.

    Douglas Thompson: Died of a plague released by Pestilence.

    Thunderbird: Died on an exploding plane trying to stop Nefaria's escape.

    Thunderstrike: Died fighting the Bloodaxe.

    Titan (Imperial Guard): Killed by Vulcan.

    Tommy (Morlocks): Killed by the Marauders before the Mutant Massacre.

    Tower: Assassinated by X-Cutioner.

    Trader: Took a bullet for Electric Eve.

    Bolivar Trask: Died trying to stop the Sentinels and the Mastermold.

    Donald Trask: Assimilated and destroyed by Cassandra Nova.

    Larry Trask: Crushed by a falling Sentinel.

    Trickster: Shot by Deadshot.

    Typeface: Killed when Venom (Mac Gargan) slammed him into a bus.

    U

    Ugly John: Executed by Cyclops.

    U-Go Girl: Impaled on a spike battling the Bush Rangers. Unus: Force field overwhelmed and asphyxiated him.

    V

    Vargas: Assassinated by the Marauders.

    Tina Valentino: Killed by Sluggo.

    Veil: Pyro charred her.

    Venus Dee Milo: Killed in X-statix's final mission.

    Vessel: Killed by a very angry and vengeful Agent Zero.

    Vivisector: Killed in X-statix's final mission.

    Vulture: Killed by the Punisher.

    W

    Wallflower: Assassinated by a sniper employed by Reverend Stryker.

    War: Assassinated by Ozymandias.

    Washout: Died helping the Underground against the Weapon X Program, overexerting his powers and subsequently dehydrating his body.

    Wasp: Mercy killed by Thor when the Skrull impersonating Yellowjacket turned her into a human bomb.

    Wasp: Janet van Dyne (Earth-1610) Killed during initial attack on New York during Ultimatum. Her body was later shown in the hands of the Blob. It is not known if he killed her himself or was simply eating her remains.

    Weapon XII: Fantomex triggered his auto destruct.

    Weapon XIII: Sacrificed himself in order to prevent a bomb from killing people.

    Weapon XV: Space station explosion.

    Whiphand: Neck snapped by Wolverine.

    White King (Previous): Neck snapped by Sebastian Shaw.

    White Queen (Previous): Shot by the White King who was under Emma Frost's control.

    White Queen ( Adrienne Frost): Shot and killed by her sister Emma Frost.

    White Rook: Poisoned by an associate of Gideon's.

    Whizzer: Died fighting Isbisa.

    Jim Wilson: Died of AIDS.

    Wild Child: Thrown into a pool of lava by Omega Red.

    Wing: Coaxed into a suicidal jump by Danger.

    Wipeout: Killed by Cameron Hodge to frame Havok.

    \"Wither\"
    Wither

    Wither: Turned to dust by Elixir.

    Witness: Murdered by Scalphunter.

    Worm: Shot by Ismael Ortega.

    Kathryn Worthington: Slowly poisoned by her brother-in-law and a mutant hating doctor over time.

    Warren Worthington Jr: Killed by his own brother Burtram Worthington.

    John Wraith: Gutted by Sabretooth.

    Rose Wu: Killed by a henchman of Prince Baran.

    X

    X: Killed when he came into contact with Asher's combustible blood.

    Shen Xorn: Beheaded by Wolverine.

    Y

    Mariko Yashida: Poisoned and killed by Wolverine so that she wouldn't suffer.

    Shingen Yashida: Killed in combat by Wolverine.

    Yellowjacket (Rita DeMara): Killed by a mind-controlled Iron Man.

    Yidrazil: Decapitated by Kiwi Black.

    Yukio: Killed by the demon possessing Wolverine's body.

    Z

    Zsaji: Died when she used all her powers to save Colossus.

    Zenith: Overloaded on Binary's powers.

    Zero: Died in the explosion and lava collapse of Stryfe's base.

    Zealot: Sent into space by Magneto.

    Zeek: Shot by Harpoon.

    Zeitgeist: Died in the BOYS R US massacre.

    Zaladane: Killed by Magneto in the Savage Land.

    DC Comics

    A

    Abattoir: Fell into a vat of molten metal, while on the run.

    Abin Sur: Died when his ship crash landed on Earth.

    Adara: Committed suicide after learning she could not be a Green Lantern ever again.

    Agent \"!\": Killed by government agents led by John Dandy, finally finding element of surprise

    Agent Liberty: Killed by Superwoman using her heat vision

    Alias the Blur: Destroyed by John Dandy

    Alura: Incinerated by Reactron

    Amazing-Man (Will Everett III): Killed by The Mist.

    Amos Fortune: Killed by a widow of the Royal Flush Gang

    Antaeus: Let his damaged nuclear reactor explode.

    Anima: Killed by Prometheus

    Mark Antaeus: Went suicidal when he fails his mission.

    Anthro: Natural Causes

    Aquagirl (Tula): Drowned in water that was poisoned by Chemo.

    Ares: Killed by Wonder Woman. Splitting his head in two with an axe.

    Anti Monitor: Killed by Superman Prime.

    Atom (Al Pratt): Killed by Extant.

    Atom ( Ryan Choi): Assassinated by Deathstroke for hire.

    Ayesha: Swallowed into a black hole grenade.

    Azrael: Shot to death by Nick Scratch and Carlton LeHah.

    Azraeuz: Killed by Black Adam.

    Aztek: Sacrificed himself so Superman could destroy Mageddon/ Tezcatlipoca.

    B

    Baby Wildebeest: Superboy-Prime fired heat vision blasts at his torso, ripping him in half.

    Ballistic: Incinerated by Superboy Prime.

    Baron Blitzkrieg (Reiter): Head burnt off by Superboy Prime.

    Battalion: Erased from history.

    Bekka: Killed by the Infinity Man while in her home.

    Big Sir: Killed on a mission for the Suicide Squad, Devoured by flesh eating ants

    Bizarro: Punched by Superman until he became a powdery mist.

    Black Bison: Killed in battle with the Spectre.

    Black Condor II: Killed by a energy beam fired by Sinestro.

    Black Mask: Shot in the head by Catwoman

    Black Orchid (Susan Linden-Thorne): Killed in an explosion

    Black Orchid (Flora Black): Killed by Suzy Black

    Bloodsport I: Shot by his prison guards.

    Bloodsport II: His murder (in his prison cell) was arranged by the Brotherhood.

    Bloody Mary: Killed by Infinity Man

    Bombshell: Killed by Batgirl ( Cassandra Cain).

    Bolt (Larry Bolatinsky): Killed by his son Dreadbolt, who used his own teleporting device to teleport him into a brick wall

    The Brain: Used to beat Monsier Mallah with, and when glass shattered died.

    Breach: Containment suit ruptured by Superboy Prime causing him to explode.

    Breathtaker: Torn to shreds by a mind controlled by Dr. Psycho.

    Brick: Smashed with a wrecking ball by Cupid

    Brickbat: Died when a warehouse collapsed on him.

    Brother Blood: Each killed at 100 years of age by their sons who were then drenched in their father's blood.

    Brother Blood IX: Sebastian was killed by the eight deceased Brother Blood's summoned by Kid Eternity.

    Bushido: Body blasted in half by Superboy Prime.

    B'wana Beast: Killed while possessed by the Antagonist.

    \"Bzzd's
    Bzzd's Sacrifice

    Bzzd: Died in service to the Green Lantern Corps, he was the final straw in defeating Mongul

    C

    Captain Storm: Sacrificed his life to save the PT-47.

    Catalyst: Fell off a cliff and eaten by piranha's.

    Cinnamon: Killed by Matilda Dunney Roderic latest incarnation of Hath-Set

    Charaxes ( Killer Moth): Ripped in half by Superboy Prime.

    Chaselon: Killed by Bedovian in the Sinestro Corps attack on Oa. Cheetah (Priscilla Rich): Killed by Barbara Ann Minerva.

    Cheetah ( Sebastian Ballesteros): Killed by Barbara Minerva so that she could regain her Cheetah form.

    Ch'p: Run over by a yellow truck.

    Clock King: Died alongside Big Sir.

    Arkkis Chummuck: Energy of the Green Lantern Power Rings ripped him apart.

    Commander Steel: Died when he detonated the Sunburst 300, which was meant to kill Eclipso.

    Conduit: Killed himself when he overloaded himself with Kryptonite, burning himself to a crisp.

    Crimson Fox (Constance D'Aramis): Killed by the Mist.

    Crimson Fox ( Vivian D'Aramis): Killed by the Puanteur.

    Arthur Curry Jr: Suffocated by Black Manta.

    D

    Dagan : Slowly tortured to death.

    Dagon: Erased from history.

    Darkstars (Mssrs. Ferrin Colos, Chaser Bron & Munchuk): Siphoned a considerable amount of energy from Starbreaker, but their suits couldn't stand the power and ruptured disintegrating all of them.

    Death Mayhew: Gunned down by Janos Prohaska.

    Dee Tyler: Impaled on Deathstroke's sword.

    \"Dee
    Dee Tyler's death

    Demolition Team: Most of the team killed by OMAC's.

    Desaad: Killed by Piper's high tuned frequency in his flute, causing his head to explode.

    Mark Desmond: Died battling Darkseid's Brimstone.

    Alexandra DeWitt: Strangled by Major Forceand stuffed into a refrigerator.

    Sue Dibny: Killed by Jean Loring.

    Matilda Dunney: Lost her life in a final showdown with Kate Manser.

    Doctor Fang: Killed by Night-Slayer, who used a revolver to commit this act.

    Doctor Light: Killed by Spectre.

    Doctor Midnight: Killed by Eclipso.

    Doctor David Moreau: Killed by Cameron Hodge.

    Doctor Polaris: Ripped to shreds when he was hit point-blank by the explosion created by Human Bomb.

    Dove: Killed by a Shadow Demon who instantly vaporised him during the Crisis on Infinite Earths.

    Jack Drake: Stabbed in the heart by Captain Boomerang.

    Duela Dent: Shot and killed by one of the new Monitors.

    E

    Effigy: \"Burned\" by Spectre.

    Elongated Man: Killed by Neron, which in effect traps both Neron and Faust in the tower.

    F

    Fastball: Killed by an OMAC

    Ferro: Stabbed by one of the Warwolves.

    Ferro Lad: Sacrificed his life to save the Galaxy, by detonating an Absorbatron bomb that killed himself.

    Fever: Shotgun to the head.

    Fiddler: Executed by Deadshot because he was deemed incompetent by Mockingbird ( Lex Luthor).

    Firefly: Burnt to death by one of the OMAC's.

    Amos Fortune: Killed by Stargirl thanks to her Cosmic Rod's energy

    Fury ( Lyta Hall): Died of exposure in the Himalayas. Her spirit was was taken into the Dreamtime by his son Daniel, the new Dream of the Endless.

    Fu'se: Died when Hiro self destructed.

    G

    Geist: Incinerated by Superboy Prime.

    General Glory (Joseph Jones): had a Cardiac episode and died in the hospital.

    Gentleman Ghost: Executed in the 1800's for his crimes.

    Golden Glider (Lisa Snart) : Shattered herself accidentally while trying to kill The Flash.

    H

    Harbinger: Killed by Darkseid's cronies.

    George Harkness: Shot by Jack Drake.

    Hawkman (Fel Ander) and Hawkwoman(Shayera): Killed by Blackfire.

    Hawkman (Kartar Ol): Sent into limbo by Orionand the Martian Manhunter.

    Hawkwoman (Sharon Parker): Killed by Fel Ander.

    Hector Hall: Died of exposure in the Himalayas. His spirit was taken into the Dreamtime by his son Daniel, the new Dream of the Endless.

    Human Bomb: Beaten to death by Bizarro.

    Hyena: Killed by Deadshot.Hyena(2nd?): Blasted by a Parademon on Hell World.

    I

    Indigo: Shift transformers her molecular structure into flesh, killing her in the process.

    Inertia: Condemned to stare at Bart Allen's costume for all eternity.

    Inferno: Committed suicide by walking into a river.

    Iron Cross: Shot point blank by Joker.

    J

    Jack (Deuce Canyard): Killed after being tortured by Joker.

    Jet: Killed by Long Feng. Confirmed at the 200 San Diego Comic Con by Bryan Konietzko.

    Larry Jordan: Died from a shotgun wound to the chest, courtesy of Joe Parsons.

    Judomaster (Hadley Jagger): Bane broke his back during the Battle of Metropolis.

    K

    Katma Tui: Murdered by Star Sapphire.

    KGBeast: Shot in head and thrown off building.

    Killowat: Erased from history.

    Killshot: Torn to shreds by a mind controlled by Dr. Psycho.

    Kite-Man: Beaten to death, then eaten by Bruno \"Ugly\" Mannheim.

    Ted Kord: Shot in the head by Maxwell Lord for refusing to switch sides.

    L

    Lady Liberty: Killed by Ravenger.

    Lilith/Omen (DC): Neck snapped by Superman Android.

    Lockup: Crushed by falling wall.

    Gillian B. Loeb: Victim of the serial killer, the Hangman.

    Alexander Luthor Jr. (Earth Three): Killed by Luthor and Joker, his face then burned with acid

    M

    Magpie: Was murdered by the Tally Man who was ordered by the Great White Shark.

    Major Disaster: Neck snapped by Superboy Prime.

    Major Force: Killed by Captain Atom when he drains all the radioactive energy out of him.

    Mardo: Killed by Looker

    Marene Herald: Killed by Mary Marvel

    Mawzir: Killed by Tommy Monhangan with the ace of winchesters.

    Mastermind (Jeeves): Destroyed while attempting to wield Excalibur

    Maxima: Put her ship between the beams from Brainiac 13's Warworld.

    Charles McNider: Killed during the Zero Hour event.

    Dr Midnight: Killed by Eclipso.

    Mirage: Beaten to death then eaten by Bruno \"Ugly\" Mannheim.

    Mongal: Decapitated by Mongul Jr.

    Mongrel: Incinerated by Superboy Prime.

    Monocle: Killed by Manhunter (Kate Spencer).

    \"Monsieur
    Monsieur Mallah

    Monsieur Mallah: Beaten to death by Gorilla Grodd.

    Molecule: Cut in half by Persuader

    Multi-Man: Killed by the Joker.

    Mystek: Suffering from claustrophobia from being in a cramped space pod, blasted her way into outer space where she soon suffocated.

    N

    Nabu: Burnt to death while fighting the Spectre.

    Neptune Perkins: Bitten in half by The Shark.

    Nightblade: Incinerated by Superboy Prime.

    O

    Onimar Synn: Torn into seven pieces by a group of heros.

    Orca: Was found dead in sewers under Gotham City with a gunshot to the head.

    Overthrow: Cut down by an OMAC.

    P

    Pantha: killed by Superboy Prime.

    Parademon: Detonated the Mother Boxes in his suit.

    Pariah: Shot to death by Earth-3 Luthor.

    Peacemaker I ( Christopher Smith): Crashed a helicopter to destroy tanks that were being controlled by Eclipso.

    Peacemaker III ( Mitchell Black):Shot and killed by Prometheus.

    Phantasm: Gave his life to save Raven's.

    Prester Jon: Erased from history after Zero Hour.

    Provoke: Torn to shreds by a mind controlled by Dr. Psycho.

    Psimon: Head caved in with a rock by Joker.

    Psycho Pirate: Killed by Black Adam.

    Q

    Oliver Queen (Earth-Two): Killed by the Anti-Monitor's Thunderers.

    The Question I (Vic Sage): Died of lung cancer.

    R

    Ragdoll (Peter Merkel): Killed by Johnny Sorrow.

    Ratcatcher: Vaporized by an OMAC.

    Manitou Raven: Died taking the brunt of a bomb. (Now lives as a ghost.)

    Clyde Rawlins: Beaten and killed by King Snake.

    Razorsharp: Incinerated by Superboy Prime.

    Replika: Killed by Mary Marvel.

    Retro: Killed by Prometheus.

    Rocket Red (Dimitri Pushkin): Deliberately overloaded his battle suit to destroy OMACS.

    Rocket Red (Vladimir Mikoyan): Destroyed by Booster Gold.

    Roderick: Burned to death by Geo-Force

    Roma: Killed by Merlyn.

    Rorschach: Blown to pieces by Doctor Manhattan (John Osterman)

    Runaway: Killed by the God-Killer.

    S

    Sandman ( Wesley Dodds): Threw himself off a cliff rather than reveal the true identity of the new Dr. Fate.

    Sargon the Sorcerer ( John Sargent): Buried alive.

    Scarlet Skier: Died when his gear exploded when he and G'nort were attempting to repair it.

    Shazam (Wizard): Killed by the Spectre. Fedra Shu-El: Passed away before Krypton's destruction.

    Silver Sorceress: Killed by an arrow to the stomach.

    Shock Trauma: Torn to shreds by a mind controlled by Dr. Psycho.

    Skee: Died of his wounds inflicted during his last fight for freedom on Sakarr.

    Solaar: Killed by Bres Fomor.

    Solomon Grundy: Shot down by Parademons

    Spellbinder (Delbert Billings): Shot in the head by Fay.

    Spellbinder (Fay Moffit): Gun down by Crimson Avenger,Wild Dog, and Vigilante.

    Stallion: Caught in Explosion.

    Star Sapphire (Deborah Camille Darnell): Killed by the Spectre for her past sins.

    Steel (Henry Heywood III): Mortally wounded by Prof. Ivo, then his body destroyed by Despero.

    Stranglehold: Torn to shreds by a mind controlled by Dr. Psycho.

    Eric Strauss: Killed during a battle on Apokolips.

    Linda Strauss: Assaulted and killed by the Lords of Chaos

    Avery Carlton Sunderland: Crushed in the arms of the Swamp Thing.

    Super Chief ( Jon Standing Bear): Killed by Skeets.

    Superman (Earth 2): Beaten by Superboy Prime.

    Super Sabre: Decapitated by Aminedi.

    Abin Sur: Died of injuries just before passing on his Power Ring to Hal Jordan.

    T

    Technocrat: Caught in the explosion created by Breach.

    Terra III: Killed when Black Adam put his fist straight through her.

    Terra-Man: Killed when Black Adam ripped him in half

    Tomar Re: Strangled by Goldface.

    Tomorrow Woman: Sacrificed her self in order to stop a war machine by triggering the EMP bomb inside her.

    Trigger Twins: Gun downed by Crimson Avenger, Wild Dog, and Vigilante.

    Triumph: Turned into ice by the Spectre, then ice form put in JLA Headquarters and when the JLA HQ was destroyed he went with it.

    Marcus Tsung: Shot by Romany Wisdom's snipers.

    Chang Tzu: Shot apart by Dr. Will Magnus.

    V

    Emmett Vale: Killed by his creation, Metallo.

    Ventriloquist: Shot and killed by Tally Man working for the Great White.

    Vibe: Killed by Prof. Ivo.

    Vibrato: Died in Hiro's self destruction.

    Charlie Vicker: Died in Battle of Rann defending said world from Grayven.

    Vigilante (Adrian Chase): Suicide.

    Violet Harper (Evil): Killed by Syonide; Killed by the Outsiders

    Vulko: Killed when Atlantis is destroyed.

    W

    Wildcat ( Yolanda Montez): Killed by Eclipso.

    Wildebeest: Killed by Superboy Prime.

    Y

    Young Frankenstein: Killed by Black Adam when he ripped his arms off.

    Z

    Zor-El: Killed by Reactron

    Vertigo Comics

    D

    Derek Almond: Killed by V during their struggle.

    Dream ( Morpheus): Executed by the Furies for killing his own son. (Which had been a mercy kill.)

    F

    Fiona: Tortured to death by Marshal.

    L

    Gary Lester: Died of drug withdrawl while possessed by a demonic entity.

    Love Glove: Shot by government agents

    N

    Frank North: Beheaded by a traitor within the Newcastle Crew.

    S

    Snow Queen: Died in a bomb explosion.

    V

    V2: Drained of her bodies energy by her mother.

    MAX

    Jenny Cesare: Committed suicide.

    Kathryn O'Brien: Killed by a landmine in Afghanistan.

    Stevie Goodwin: Died in Vietnam.

    Malibu Universe

    Catapult: Skeleton and internal organs removed by an alien experimenter.

    Deadeye: Died in a explosion when Amber Hunts power manifested.

    Heather: Vaporized in an explosion when Amber Hunts power manifested.

    Mustang: Neck snapped in the explosion generated by Amber Hunts powers manifesting.

    Tinsel: Bloodbath killed her in a hail of gunfire.

    Trax: Vaporized in an explosion when Amber Hunts powers manifested.

    Naruto

    A

    Asuma: Killed by Hidan

    C

    Chiyo: Died bringing Gaara back to life.

    D

    Deidara: Killed by Sasuke

    Dosu: Killed by Gaara

    Danzo: Killed by Saskue

    H

    Haku : Killed by Kakashi while trying to block his attack.

    H idan: Killed by Shikamaru

    Hanzo : Killed by a young Pein

    I

    Itachi: Killed by Sasuke

    J

    Jiraiya: Killed by Pein

    Jirobo: Killed by choji

    K

    Kisame: Took his own life

    Konan: Killed by Madara

    Kakuzu: Killed by Naruto

    K ushina Uzumaki: Died along with Minato sealing part of them with in the seal to help guide Naruto at the right time.

    K aguya Kimimaro: Died from disease while fighting Lee and Gaara

    Kurosuki Raiga: Killed himself.

    Kidomaru: killed by Neji

    M

    Minato Namikaze: Died sealing the nine tales into Naruto.

    O

    Obito: Was crushed when saving a team mate, gave his Shariagan to Kakashi

    Orochimaru: Killed by Sasuke

    P

    Pein: Died after using to much power

    S

    Sakon & Ukon: Killed by Kankuro.

    Sasori: killed by Chiyo and Sakura

    T

    Tayuya: Killed by Temari

    Y

    Yahiko: Killed himself on Pein's blade.

    Z

    Zaku: Killed by Orochimaru

    Zabuza: Dies from multiple wounds.

    Hokages and Kazekage

    First Hokage : Unkown

    Second Hokage : Unkown

    Third Hokage : Died trying to Kill Orochimaru

    Kazekage, Fourth: Killed by Orochimaru

    Kazekage, Third : Killed by Sasori

    Dead One Piece Characters

    A

    Aobire

    B

    Banchina

    Bellemere

    Bigalo

    Brook

    Busshiri

    C

    Calgara

    Cannibal

    Captain John

    Captain Joke

    Clover

    D

    D.R.

    DJ Gappa

    Drip

    E

    Edward Newgate

    F

    Fake Franky

    Fake Nami

    Fake Sogeking

    Fake Zoro

    Fisher Tiger

    Flare

    Four Wise Men

    G

    Ganzack

    Ganzack's Seamonster

    God of Skypiea

    Gol D. Roger

    Gram

    H

    Hack

    Higuma

    Hiluluk

    Hocha

    H cont.

    Hocker

    J

    Jaguar D. Saul

    Jigorou

    K

    Kashigami

    Kaya's Father

    Killer Giant

    Kirin Lion

    Kotetsu

    Koushin

    Kuina

    L

    Lily Carnation

    Lines

    M

    Mizuuta Twins

    Montblanc Norland

    Moonwatcher

    Mousse

    Mr. 11

    Mr. 9

    Muchigoro

    N

    Nefertari Titi

    Nelson Royale

    Nico Olvia

    Nugire Yainu

    O

    Oars

    Oharan Clan

    Omatsuri

    P

    Pantri

    Piggy Pirates

    Porchemy

    P cont.

    Portgas D. Ace

    Portgas D. Rouge

    Pudding Pudding

    Puppuu

    R

    Rapanui's Father

    Rint

    Roche

    Roji

    Rokkaku

    Roshio

    Rozalio

    Ryu

    Ryuuma

    Ryūdō

    S

    Seto

    Shirano

    Sino Phoenix

    Soro

    T

    Thatch

    Tom

    Tsumegeri Guards

    Twenty Kings

    V

    Victoria Cindry

    Vigaro

    W

    Wapol's Father

    Wild Joe

    Woonan

    WhiteBeard

    Y

    Yorki

    Yuki

    Z

    Zadie

    Bleach

    A

    Aaroniero Aruruierie - the 9th Espada Killed by Rukia Kuchiki

    G

    Gin: Deceased, killed by Aizen.

    H

    Halibel: Deceased, killed by Aizen.

    Hsana Kuchiki - Rukia's Older Sister, Byakuya's Wife.

    Heizō Kasaki

    I

    Ichigo;s Mom Killed by the Grand Fisher .

    K

    Kaien Shiba - 13th Division Lieutenant -Killed by Rukia Kuchik i(Accidently)

    Kaname Tousen: Deceased, after stabbed by Hisagi,

    L

    Luppi - temporary 6th Espada Killed by Grimmjow

    M

    Miyako Shiba

    N

    Nnoitra Jiruga-5th espada Killed by Kenpachi Zaraki

    P

    Privaron Espada-Killed by The Exequias

    S

    Starrk : Deceased, killed by Shunsui.

    Shin'etsu Kisaragi

    Shinobu Eishima

    Sōjirō Kusaka

    T

    Todō Gizaeimon

    U

    Ulquiorra Deceased, Killed by Ichigo

    W

    Wonderweiss: Deceased, killed by Yamamoto.

    Y

    Yammy: Deceased, Killed by Kenpachi, Byakuya, and Mayuri.

    Z

    Zommari -7th espada Killed by Byakuya Kuchiki

    Hellsing

    A

    Alucard ( Alucard is no longer classed as undead or alive after joining with Schrödinger)

    Alexander Anderson (killed by Alucard in a final battle)

    Arthur Hellsing (died of natural causes)

    C

    The Captain (Killed by Seras Victoria)

    D

    Doctor (Killed By Walter)

    E

    Enrico Maxwell (Killed by ghouls)

    J

    Jan Valentine (Killed by Walter and Seras)

    L

    Luke Valentine (Killed by Alucard )

    M

    The Major (killed by Integra Hellsing)

    P

    Pip Bernadotte (Killed by Zorin Blitz )

    R

    Richard Hellsing (killed By Alucard) Rip Van Winkle ( Killed By Alucard)

    S

    Schrödinger (see Alucard)

    Sir Shelby M Penwood (died making a final stand in London)

    T

    Tubalcain Alhambra (Killed By Alucard)

    W

    Walter C. Dornez (Died in blimp explosion after killing the Doctor)

    Z

    Zorin Blitz (Killed By Seras Victoria)

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-12806/","id":12806,"name":"Death of a City!; The Magic Piper!","issue_number":"2"},"id":44719,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/193086-25490-deceased-characters.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/193086-25490-deceased-characters.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/193086-25490-deceased-characters.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/193086-25490-deceased-characters.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/193086-25490-deceased-characters.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/193086-25490-deceased-characters.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/193086-25490-deceased-characters.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/193086-25490-deceased-characters.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/193086-25490-deceased-characters.jpg","image_tags":"All Images,Alpha Flight dead."},"name":"Deceased Characters","site_detail_url":"https://comicvine.gamespot.com/deceased-characters/4015-44719/","start_year":"1973"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44795/","count_of_isssue_appearances":872,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-02-14 20:36:51","deck":"A literary term often utilized in theater to describe the imaginary barrier between the actors and audience, separating real world and fantasy. Breaking the fourth wall is observed sometimes in literature, where a character directly addresses the reader.","description":"

    Overview

    Some characters have been known to 'break the fourth wall' by speaking to, or about, the audience. Not only do they talk to the reader, but they (usually) know that they are fictional creations in a story. On occasion, this may be a vehicle for dramatic irony. Deadpool, the most well known example of this phenomenon, has been known to refer to his own history in issue format, lean on the panel borders, and see or touch his thought boxes and word balloons.

    The fourth wall can also be reinforced by a character saying that, i.e., 'this isn't a movie, you know'.

    Characters

    Characters that have broken the Fourth Wall

    (Note: Characters may have broken the 4th wall at one point in time, but that doesn't necessarily mean that they currently retain the knowledge of the world beyond the comic they are in)

    Creators

    Note: This list does not include creators who are in (auto)biographical comics as these stories are about the creators and set in the real world, not in a fictional one. Also, homages to creators or \"easter egg\" appearances do not count, the characters have to explicitly make clear they are breaking the fourth wall.

    Some writers break the fourth wall by inserting themselves into the story, wherein their character admits to writing the story they are appearing in:

    • Alan Moore as Alan Moore: Wrote himself into Promethea when \"the world was ending\" and our realities were converging, he is seen writing the script for the page he appears on.
    • Ben Templesmith as Ben Templesmith: He claims to be the biographer for Wormwood, Wormwood writes him off as some loon but Templesmith gets irate claiming he's had Eisner nominations three years in a row now, yeah, whatever.
    • Brian K. Vaughan as Brian K. Vaughan: Written into Ex Machina as the writer of the comic that will follow the life of Mayor Hundred, shares some of his own personal stories and feelings about New York City and 9/11. Y: The Last Man is also referenced where he clears up that the Daughters of the Amazon are asexual not lesbians. Ironically, he criticizes the use of inserting oneself into the story, mentioning Grant Morrison and saying that it's too \"meta\" and takes him out of the story.
    • Grant Morrison as The Writer: Perhaps the most well-known example, Grant Morrison inserted himself into the end of his Animal Man run (which was already full of instances where the Fourth Wall was broken) and he explains everything to Animal Man, why he killed his family, what his views are, etc. He mentions that he's also writing Doom Patrol and in the end \"restores\" everything to the status quo.
    • J.H. Williams III as J.H. Williams III: Written into Promethea, alongside Alan Moore (see above); is seen drawing the two-page spread he appears in.
    • Jonathan Ames as Jonathan A.: Protagonist of The Alcoholic. Although this is something of a unique situation, being that the comic is semi-autobiographical, the comic is not meant to be taken as a factual detailing of the writer's life and has fiction inserted, however, the character does talk directly to the reader at points. Although he is more of a character then a creator writing himself into a comic, he is placed in this list due to the fact that his name and life are based on his creator.
    • Roy Thomas and his wife Jeanie are introduced at a Halloween Party to the other guests in The Avengers #83, written by Thomas. They are dressed as Spider-Man and Mrs. Fantastic. Jeanie Thomas is asking one of the Avengers which of them Mrs. Peel is.
    • Peter Milligan as Miles Laimling: \"Laimling\" being an anagram of \"Milligan\". He is originally just some guy writing \"The Great American Novel\" in Hotel Shade and stealing the identities of Shade, Lenny and Kathy as he writes them. Eventually he breaks the Fourth Wall entirely when he says he's going to write their adventures as a comic and looks at the reader.
    • Tony Harris as Tony Harris: Appeared with Brian K. Vaughan (see above), he is portrayed as the \"cooler\" of the two and brings his art portfolio to show off to Mayor Hundred's staff. While Vaughan talks with Hundred, Harris hangs out with January and other staff and draws Bradbury in a \"badass-style\" pose.

    Other creators have also appeared in comics, although were inserted by someone else, rather then doing it themselves:

    Fifth Wall

    When characters break the \"Fifth Wall,\" it shows they have knowledge of other fictional characters from another, unrelated actuality.

    Examples

    in The Amazing Spider-Man #123, after being hit through a window by Spider-Man, Luke Cage says \"I dig, Spider-Man ... but here's something you don't! Some dudes have to do this number for a livin' -- we ain't all rich playboys like Bruce Wayne.\" Note that Luke Cage should probably not know of Bruce Wayne, and vice versa.

    In Superman #50, Mr. Mxyzptlk makes several statements hinting that he is also the Impossible Man from Marvel Comics and has knowledge of the Fantastic Four, such as \"Having fun with my new fantastic friends,\" \"back to my four new friends,\" It's blubbering time,\" and \"Sometimes it's just impossible to remember what I look like from world to world.\"

    Recap Pages

    Some comics have recap pages before the actual story in which characters from that issue (or sometimes the previous one) show up and talk to the reader, breaking the Fourth Wall. These instances are generally isolated and after the recap page, the characters no longer have the ability to break the Fourth Wall. For examples of this, check out the Cable/Deadpool and Irredeemable Antman series.

    Likewise in pages outside of the story, usually at the back of the comic in distinctly separate areas, characters will often address the reader for promotional purposes or for humorous effect.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-154886/","id":154886,"name":null,"issue_number":"10"},"id":44795,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/136078-138153-fourth-wall.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/136078-138153-fourth-wall.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/136078-138153-fourth-wall.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/136078-138153-fourth-wall.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/136078-138153-fourth-wall.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/136078-138153-fourth-wall.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/136078-138153-fourth-wall.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/136078-138153-fourth-wall.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/136078-138153-fourth-wall.jpg","image_tags":"4th Wall,All Images"},"name":"Fourth Wall","site_detail_url":"https://comicvine.gamespot.com/fourth-wall/4015-44795/","start_year":"1940"},{"aliases":"DCAU","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-44865/","count_of_isssue_appearances":859,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-11-07 23:20:40","deck":"The animated adaptation of the DC Comics universe, created by Bruce Timm and Paul Dini.","description":"

    The Universe

    \"The
    The Seven Founders of the JLU

    The universe is considered to be made up of eight cartoon series, six movies, and the spin-off tie-in media pertaining to them.

    Definitive Series Canon

    There eight series that make up the universe are as follows (in chronological order):

    Despite fan speculation and some evidence supporting it, the Teen Titans series is generally not accepted to be in DCAU continuity according to members of the shows production crew as well as Bruce Timm and Co.

    Comic Books

    \"The comic book animated continuity is actually different than the actual animated continuity- they’ll do things that contradict what we do and vice versa. But for the sake of the Demon story we did in the animated show, we subsumed the annual we had done into the animated continuity just to get things moving faster.” - Bruce Timm, Modern Masters (2004)

    The American released comics that serve as DCAU tie-in material include, but are not limited to:

    Movies

    There are four movies based on their respective series:

    While sharing character models and voice cast with it's DCAU counterpart, Superman: Brainiac Attacks is generally not accepted as part of the DCAU continuity, and members of it's production crew have stated it was meant to be viewed as a stand-alone experience.

    Also Justice League: Crisis on Two Earths' original script, titled \"Worlds Collide\", was intended to fill the gap between Season 2 and the first Season of Unlimited. The original project never got the green light and it was recycled as independent movie. Still many subtle nod and references are scattered throughout the movie.

    Web Shows

    Gotham Girls and Lobo, two macromedia flash series, are considered potentially canon by fans.

    Characters in the DCAU

    Many characters have appeared in the DCAU cartoons series and even more in the comics, here is a list of every hero and villain to appear and their voices if they spoke (Alphabetical by codename or last name).

    Original Seven

    HeroVoice
    BatmanKevin Conroy
    FlashMichael Rosenbaum
    Green Lantern (John Stewart)Phil LaMarr
    HawkgirlMaria Canals
    Martian ManhunterCarl Lumbly
    SupermanTim Daly/George Newbern
    Wonder WomanSusan Eisenberg

    Heroes

    HeroVoice
    AquamanScott Rummell
    AtomJohn C. McGinley
    Atom SmasherAppearance Only
    AztekUncredited
    Bat LashBen Browder
    BatgirlMelissa Gilbert/Mary Kay Bergman
    Batman (Terry McGinnis)Will Friedle
    Big BardaFarrah Forke
    Black CanaryMorena Baccarin
    Jason BloodBilly Zane/Michael T. Weiss
    Blue BeetleComic Only
    Blue DevilAppearance Only
    Booster GoldTom Everett Scott
    B'Wana BeastPeter Onorati
    Captain AtomGeorge Eads/Chris Cox
    Captain MarvelJerry O'Connell
    CreeperJack Glen Bennett
    DeadmanRaphael Sbarge
    DoveJason Hervey
    Doctor FateOded Fehr
    Doctor LightLauren Tom
    El DiabloNester Carbonell
    Elongated ManJeremy Piven
    Etrigan the DemonBilly Zane/Michael T. Weiss
    FireMaria Canals
    GearJason Marsden
    Gray GhostAdam West
    Green ArrowKin Shriner
    Green Lantern (Hal Jordan)Adam Baldwin
    Green Lantern (Kilowog)Dennis Haysbert
    Green Lantern (Kyle Rayner)Will Friedle
    Green Lantern (Kai-Ro)Lauren Tom
    Green Lantern (Katma Tui)Kim Mai Guest
    HawkFred Savage
    HawkmanJames Remar
    Jonah HexAdam Baldwin
    HighfatherMitchell Ryan
    HuntressAmy Acker
    LightrayRob Paulsen
    Apache Chief/LongshadowGreg Rainwater
    MetamorphoTom Sizemore
    MetronDaniel Dae Kim
    MicronWayne Brady
    Mr. MiracleIoan Gruffudd
    Mr. TerrificMichael Beach
    Nightwing/RobinLoren Lester
    OrionRon Perlman
    QuestionJeffrey Combs
    The RayAppearance Only
    Red TornadoPowers Boothe
    Robin (Tim Drake)Matthew Valencia/Eli Marienthal/Mariy Scheer
    SandmanAppearance Only
    Shining KnightChris Cox
    StaticPhil LaMarr
    SteelPhil LaMarr
    Adam StrangeComic Only
    SpectreComic Only
    SupergirlNicholle Tom
    VigilanteNathan Fillion
    VixenGina Torres
    WarhawkPeter Onorati
    WaveriderAppearance Only
    WildcatDennis Farina
    ZatannaJennifer Hale
    ZetaGary Cole/Diedrich Bader

    Villains

    VillainVoice
    Ra's al GhulDavid Warner
    Talia al GhulHelen Slater
    AmazoRobert Picardo
    AresMichael York
    Atomic SkullLex Lang
    BaneHenry Silva
    Baby DollLaraine Newman
    Black MantaMichael Beach
    BrainiacCorey Burton
    Captain BoomerangDonal Gibson
    Captain ColdLex Lang
    CatmanOnly Appeared in Comic
    CatwomanAndrienne Barbeau
    CheetahSheryl Lee Ralph
    ChronosPeter MacNicol
    CirceRachel York
    ClayfaceRon Perlman
    DarkseidMichael Ironside
    DesperoKeith David
    Dr. PolarisMichael Rosenbaum
    DoomsdayMichael Jai White
    Felix FaustRobert Englund
    FireflyMark Rolston
    GalateaNicolle Tom
    Gentleman GhostRobert Atkins Downe
    Gorilla GroddPowers Boothe
    HadesJohn Rhys-Davies
    Harley QuinnArleen Sorkin
    Jayna/ShifterGrey DeLisle
    JokerMark Hamill
    Black Vulcan/JuiceUncredited
    KalibakMichael Dorn
    Killer CrocAron Kincaid/Brooks Gardner
    KlarionStephen Wolfe Smith
    Morgaine Le FeyAlivie d'Abo
    Lex LuthorClancy Brown
    LivewireLori Petty
    Apache Chief/LongshadowGreg Rainwater
    Mad HatterRoddy McDowall
    MetalloMalcolm McDowell
    Mirror MasterAlex Denisof
    Mr. FreezeMichael Ansara
    MordredSoren Fulton
    MongulEric Roberts
    Ocean MasterRichard Green
    ParasiteBrian George
    PenguinPaul Williams
    Poison IvyDiane Pershing
    RiddlerJohn Glover
    Roxy RocketCharity James
    Vandal SavagePhil Morris
    ScarecrowHenry Polic II
    ShadeStephen McHattie
    Solomon GrundyMark Hamill
    Star SapphireOlivia d'Abo
    TalaJuliet Landau
    Rupert ThorneJohn Vernon
    ToymanBud Cort/Corey Burton
    TricksterMark Hamill
    Two-FaceRichard Moll
    Ultra-HumaniteIan Buchanan
    VentriloquistGeorge Dzundza
    Weather WizardCorey Burton
    Samurai/Wind DragonJamie Sie
    Zan/DownpourGrey DeLisle

    Other Characters

    NameVoice
    Billy BatsonShane Houboucha
    Harvey BullockRobert Contanzo
    Snapper CarrJason Marsden
    CreeperJeff Bennett
    Wade EilingJ.K. Simmons
    Lucius FoxBrock Peters/Mel Winkler
    James GordonRobert Hastings
    Emil HamiltonRobert Foxworth
    HippolytaSusan Sullivan
    Lois LaneDana Delany
    Maxwell LordTim Matheson
    MeraKristin Bauer
    Renee MontoyaIngrid Oliu/Liane Scirmer/Adrienne Barbeau
    Jimmy OlsenDavid Kaufman
    Alfred PennyworthClive Revill/Elfrem Zimbalist Jr.
    Amanda WallerCCH Pounder

    Introductions

    Besides taking characters from the comic book the DCAU also created numerous new characters. Their most notable creation was the Joker's sidekick Harley Quinn. Here are a few more notable entries some of which made it into the mainstream DCU:

    1. Renee Montoya (A detective introduced in B:TAS that is now in the DCU)
    2. Nora Fries (Mr. Freeze's wife introduced in B:TAS and incorporated into the DCU)
    3. Livewire (A Superman villain introduced in S:TAS and brought into the DCU)
    4. The Phantasm (A villains introduced in B:MotP roughly based on the Reaper from [[Batman: Year Two:char:42225]])
    5. Terry McGinnis (The future Batman introduced in Batman Beyond and has since appeared in Batman/Superman and Countdown.)
    6. Warhawk (The future son of John Stewart and Hawkgirl introduced in Batman Beyond)
    7. Gray Ghost (The hero of a young Bruce Wayne shown in B:TAS)

    Production

    Bruce Timm was given the job of turning the popular comic book adventure into an animated series. Timm took the series in a more contemporary direction to that of the previous incarnations like the Super Friends. Leaving the sidekicks and pets behind Timm had two main aims when he was making the series, to pay homage to the original line up of the Justice League ( Superman, Batman, Wonder Woman, Aquaman, Green Lantern ( Kyle Rayner), Flash (Wally West) and Martian Manhunter .) and to promote cultural and racial diversity. The line up of the team was changed slightly but still both goals were achieved. The line up of the series stood as Superman, Batman, Wonder Woman, Martian Manhunter, Flash ( Wally West), Hawkgirl (who replaced Aquaman in favor of a second female member) and the African American John Stewart as Green Lantern who replaced Kyle Rayner to promote racial diversity. Kyle Rayner (who appeared in Superman series) was not chosen for that reason and in season two Kyle was described as a trainee Green Lantern under the tutelage of John Stewards old mentor, although both Kyle would later make appearances in Justice League Unlimited.

    The show was greeted with great success somewhat due to many loyal fans who were already familiar with the incarnation of the characters but the show also introduced the characters to an entire generation. Due to the fact that most episodes were one of two parts Cartoon Network chose to run two episodes back to back. It was later learned in the DVD release of season two that the episode “Starcrossed” was expected to be the final episode of the entire series but in February 2004 Cartoon Network released the next season with a new name, Justice League Unlimited. The show premiered on July 31st 2004.

    The new series featured an expanded League who had opened their doors to nearly all of the Superhero community . Due to the great number of characters now in the show episodes tended to star three or four at a time so as to keep up with character development and so as not to drown out the quality of the show with quantity. In several episodes the entire roster of League members star often the entire brut force of all the members are needed to fight off universal threats.

    Character Changes

    Timm sought out to keep the continuity of the DC Animated Universe alive and so sought out Kevin Conroy to voice Batman, who he played in Batman: The Animated Series (1992) and in Batman Beyond (1999). Conroy set out to make his voice different then the two previous incarnations of Batman as Justice League/Justice League Unlimited is set after Batman: The Animated Series and before Batman Beyond. To do this Conroy made his sot harsher and more weathered than Batman: The Animated Series but softer then Batman Beyond. To also add to the development of the character Batman’s costume was changed. The spikes or ears found at the top of his mask were made more prominent then in Batman: The Animated Series, his boots were also given slight heels and red highlights replaced the blue ones found in Batman : The Animated Series.

    Tim Daly was originally sought out to voice Superman as he had in the previous Superman series but was unable to. Instead George Newborn was brought in to voice the man of steel. During the first season he was deeply criticized as fans felt he lacked the authority that Daly brought to the role. Timm has stated that this was more a fault in the writing of the series then in Newborns abilities and has openly defended him every since. Many fans have been swayed by this feeling that Newborns performance has improved throughout the series and that both Daly’s and Newborn’s incarnations of the character both have merit and fault. Superman’s over all look was redesigned so as to show him looking slightly older then in his previous animated series. To do this he was given a slight squint in his eyes and a slightly greying streak to his hair. He was also made to look broader in the series to suggest greater physical strength. Fans did not react well to the changes made and so at the beginning of season two the creators toned down the streak in his hair (to the point of almost disappearing) and took the squint away all together. As an inside joke to this failure the facial templates for the original Superman were used for Jor-El in the episode “For the Man who has Everything”.

    Most other characters were left close enough to their comic book counterparts although some notable changes were made. Wonder Woman’s (voiced by Susan Eisenberg) back story completely changed from that of her competing against her Amazonian sisters to her being an ambassador to the outside world. This is seen in the episode “Secret Origins” She has also been referred to as a rookie hero and several episodes touch on how hard she is finding it to adjust to the new life she now leads. Also the Flash (voiced by Michael Rosenbaum) was given attributes that made him appear slightly younger and less mature then in his comic book incarnation. It has also been noted that he was given several traits to that of Plastic Man who usually provides the comic relief for the team in the comic book series. In this incarnation of the team Flash was found to be the funny one. Much like the changes put under Wonder Woman, John Stewart’s (voiced by Phil LaMarr) back story was also significantly changed. The original comic story was that of a civilian architect but was changed to him being a hardened ex-marine for the series.

    One character that was entirely changed was Aquaman. He was dropped completely from the team in place of Hawkgirl. Maria Canals was cast to voice the part of Hawkgirl because of her Hispanic accent. The creators thought that as Hawkgirl was not from Earth so it would make her stand out as a more foreign character within the team. Her back story was set so that she had been transported to earth by criminals using a Zeta beam. Hawkgirl and Green Lantern John Stewart began a romantic relationship. Later in the series it was revealed that she was actually a scout for the Thanagarian invasion force. Obviously the League felt betrayed by this, especially when the entire Thanagarian force arrived ready to over throw earth. To make matters worse Hawkgirl went to their aid. Eventually the Thanagarians left but Hawkgirl remained on earth. She fled from the League in shame and chose to stay with Dr.Fate and his wife Inza in their stronghold to find piece of mind and a new direction in life. She was eventually brought back to kill her possessed friend Solomon Grundy. After this she chose to rejoin the league and was warmly excepted back into it. She decide to leave her Thangaran military dress for more conventional attire. Although her and John's relationship would never be the same again.

    Another romantic relationship was that of Batman and Wonder Woman. The creators of the show did not seem to like the fans insistence of Wonder Woman being paired with Superman. Although no relationship actually blossomed it was the intent of Wonder Woman but Batman on several occasions turned her down saying that if his villains knew about them they could use her to get to him. Although Batman kissed, danced and sang to save Wonder Woman, no one knows what he really wanted!!!

    Martian Manhunter also went under change. In his comic books he is found to have a power called Martian Vision usually shown as a beam of light, an extension off his telekinesis, but which also works very like Superman’s heat vision. This power was dropped in his animated form in favor of his shape shifting and phasing abilities.

    Heart of Ice

    Up until Batman the Animated Series, Mr. Freeze did not have much of a characterization or back story in the comics. Thanks to a unique design by Mike Mignola and a tragic back story thought up by Bruce Timm, Freeze went from a crummy hoodlum, to a tragic villain who only wanted to save his wife. Fan reception to this version of the character forced the story into mainstream. The episode he appeared in was \"Heart of Ice\" which introduced the entire background story and even ended up winning an Emmy for \"Best Animation\". Mr. Freeze would go on to be in every season of B:TAS, make an appearance in the first season of Batman Beyond, and even have his own movie dedicated to him.

    Initiation

    When the Justice League decided to expand their numbers they became incredibly powerful, it was Bruce Timm's choice to then add Green Arrow after popular fan demand. The fans saw Green Arrow as an almost eighth member to the original seven member team. A second reason to add Ollie was to form a bridge between the new JLU and the people on Earth. He was the first hero to appear in JLU. He appeared in \"Initiation\", the first episode of the first season. Originally he did not want to join because he felt that they had given up on the \"little man\" and he was the only thing protecting him, but after some convincing from Batman he joined and helped keep them together when Superman almost disbanded the group.

    Question Authority

    During the Justice League Unlimited run Bruce Timm decided to add one of his favorite characters, little did he know adding him would be a huge development. The Question first fully appeared in \"Fearful Symmetry\" where he was given a complete persona redesign. This Question was one of the league's top detectives (second to Batman and maybe Elongated Man) but he was incredibly paranoid and claimed to see patterns in useless bits of information. His design was the O'Neil version from the 80s comics and over the course of the series he developed a relationship with Huntress, much like his comic book counterpart. Timm's reaction to his Question made him want to do a series completely based on him and that is somewhat what he did for the second season (or first season according to the DVDs) finale in which the Question discovers a link between Luthor, the Justice Lords, Cadmus, and Flash that could potentially destroy the planet. Fan reaction to Timm's version of the character was phenomenal and he, much like Green Arrow, became a major reoccurring character,

    Differences

    There are many notable differences between the regular DCU and the DCAU, here are a few:

    • Superman does not have an \"S\" shield on his back
    • Dr. Fate does not have a fin on his helmet
    • Jason Todd never existed
    • Tim Drake's origin is much closer to Jason Todd's
    • The Question is a conspiracist and much more paranoid.
    • Amazo's appearance and characterization is severely different, and is completely golden instead of his original costume.
    • Hal Jordan does not seem to exist in the universe but he did appear in \"The Once And Future Thing\" Pt. 2 because of a time-space flux.
    • Doomsday never killed Superman.
    • Static is in the same universe as Batman and Superman opposed to a separate one.
    • John Stewart and Hawkgirl have a relationship here that was never present in the comics.
    • Barbara Gordon was never paralyzed by the Joker.
    • Orion's Astro-Harness is silver instead of gold.

    DVD Collections

    The various DVDs collecting episodes of the different series. There are also DVDs collecting individual episodes of some series that are not listed.

    Episode List (Animated Series)

    Justice League - Season One

    • Episode 01: Secret Origins: Part 1 (Original Air Date—17 November 2001)
    • Episode 02: Secret Origins: Part 2 (Original Air Date—17 November 2001)
    • Episode 03: Secret Origins: Part 3 (Original Air Date—17 November 2001)
    • Episode 04: In Blackest Night: Part 1 (Original Air Date—19 November 2001)
    • Episode 05: In Blackest Night: Part 2 (Original Air Date—26 November 2001)
    • Episode 06: The Enemy Below: Part 1 (Original Air Date—3 December 2001)
    • Episode 07: The Enemy Below: Part 2 (Original Air Date—10 December 2001)
    • Episode 08: Paradise Lost: Part 1 (Original Air Date—21 January 2002)
    • Episode 09: Paradise Lost: Part 2 (Original Air Date—28 January 2002)
    • Episode 10: War World: Part 1 (Original Air Date—24 February 2002)
    • Episode 11: War World: Part 2 (Original Air Date—3 March 2002)
    • Episode 12: The Brave and the Bold: Part 1 (Original Air Date—10 March 2002)
    • Episode 13: The Brave and the Bold: Part 2 (Original Air Date—17 March 2002)
    • Episode 14: Fury: Part 1 (Original Air Date—7 April 2002)
    • Episode 15: Fury: Part 2 (Original Air Date—14 April 2002)
    • Episode 16: Legends: Part 1 (Original Air Date—21 April 2002)
    • Episode 17: Legends: Part 2 (Original Air Date—28 April 2002)
    • Episode 18: Injustice for All: Part 1 (Original Air Date—6 September 2002)
    • Episode 19: Injustice for All: Part 2 (Original Air Date—13 September 2002)
    • Episode 20: A Knight of Shadows: Part 1 (Original Air Date—20 September 2002)
    • Episode 21: A Knight of Shadows: Part 2 (Original Air Date—27 September 2002)
    • Episode 22: Metamorphosis: Part 1 (Original Air Date—4 October 2002)
    • Episode 23: Metamorphosis: Part 2 (Original Air Date—11 October 2002)
    • Episode 24: The Savage Time: Part 1 (Original Air Date—9 November 2002)
    • Episode 25: The Savage Time: Part 2 (Original Air Date—9 November 2002)
    • Episode 26: The Savage Time: Part 3 (Original Air Date—9 November 2002)

    Justice League - Season Two

    • Episode 1: Twilight: Part 1 (Original Air Date—5 July 2003)
    • Episode 2: Twilight: Part 2 (Original Air Date—5 July 2003)
    • Episode 3: Tabula Rasa: Part 1 (Original Air Date—4 October 2003)
    • Episode 4: Tabula Rasa: Part 2 (Original Air Date—4 October 2003)
    • Episode 5: Only a Dream: Part 1 (Original Air Date—11 October 2003)
    • Episode 6: Only a Dream: Part 2 (Original Air Date—11 October 2003)
    • Episode 7: Maid of Honor: Part 1 (Original Air Date—18 October 2003)
    • Episode 8: Maid of Honor: Part 2 (Original Air Date—18 October 2003)
    • Episode 9: Hearts and Minds: Part 1 (Original Air Date—25 October 2003)
    • Episode 10: Hearts and Minds: Part 2 (Original Air Date—25 October 2003)
    • Episode 11: A Better World: Part 1 (Original Air Date—1 November 2003)
    • Episode 12: A Better World: Part 2 (Original Air Date—1 November 2003)
    • Episode 13: Eclipsed: Part 1 (Original Air Date—8 November 2003)
    • Episode 14: Eclipsed: Part 2 (Original Air Date—8 November 2003)
    • Episode 15: The Terror Beyond: Part 1 (Original Air Date—15 November 2003)
    • Episode 16: The Terror Beyond: Part 2 (Original Air Date—15 November 2003)
    • Episode 17: Secret Society: Part 1Original Air Date—22 November 2003
    • Episode 18: Secret Society: Part 2Original Air Date—22 November 2003
    • Episode 19: Hereafter: Part 1 (Original Air Date—29 November 2003)
    • Episode 20: Hereafter: Part 2 (Original Air Date—29 November 2003)
    • Episode 21: Wild Cards: Part 1 (Original Air Date—7 December 2003)
    • Episode 22: Wild Cards: Part 2 (Original Air Date—7 December 2003)
    • Episode 23: Comfort and Joy (Original Air Date—13 December 2003)
    • Episode 24: Starcrossed: Part 1 (Original Air Date—29 May 2004)
    • Episode 25: Starcrossed: Part 2 (Original Air Date—29 May 2004)
    • Episode 26: Starcrossed: Part 3 (Original Air Date—29 May 2004)

    Justice League Unlimited - Season One

    • Episode 1: Initiation (Original Air Date—31 July 2004)
    • Episode 2: For the Man Who Has Everything (Original Air Date—7 August 2004)
    • Episode 3: Kid Stuff (Original Air Date—14 August 2004)
    • Episode 4: Hawk & Dove (Original Air Date—21 August 2004)
    • Episode 5: This Little Piggy (Original Air Date—28 August 2004)
    • Episode 6: Fearful Symmetry (Original Air Date—4 September 2004)
    • Episode 7: The Greatest Story Never Told (Original Air Date—11 September 2004)
    • Episode 8: The Return (Original Air Date—18 September 2004)
    • Episode 9: Ultimatum (Original Air Date—4 December 2004)
    • Episode 10: Dark Heart (Original Air Date—11 December 2004)
    • Episode 11: Wake the Dead (Original Air Date—18 December 2004)
    • Episode 12: The Once and Future Thing: Part 1 - Weird Western Tales (Original Air Date—22 January 2005)
    • Episode 13: The Once and Future Thing: Part 2 - Time, Warped (Original Air Date—29 January 2005)

    Justice League Unlimited - Season Two

    • Episode 1: The Cat and the Canary (Original Air Date—5 February 2005)
    • Episode 2: The Ties That Bind (Original Air Date—12 February 2005)
    • Episode 3: The Doomsday Sanction (Original Air Date—19 February 2005)
    • Episode 4: Task Force X (Original Air Date—21 May 2005)
    • Episode 5: The Balance (Original Air Date—28 May 2005)
    • Episode 6: Double Date (Original Air Date—4 June 2005)
    • Episode 7: Clash (Original Air Date—11 June 2005)
    • Episode 8: Hunter's Moon (Original Air Date—18 June 2005)
    • Episode 9: Question Authority (Original Air Date—25 June 2005)
    • Episode 10: Flashpoint (Original Air Date—2 July 2005)
    • Episode 11: Panic in the Sky (Original Air Date—9 July 2005)
    • Episode 12: Divided We Fall (Original Air Date—16 July 2005)
    • Episode 13: Epilogue (Original Air Date—23 July 2005)

    Justice League Unlimited - Season Three

    • Episode 1: I Am Legion (Original Air Date—17 September 2005)
    • Episode 2: Shadow of the Hawk (Original Air Date—17 September 2005)
    • Episode 3: Chaos at the Earth's Core (Original Air Date—24 September 2005)
    • Episode 4: To Another Shore (Original Air Date—24 September 2005)
    • Episode 5: Flash and Substance (Original Air Date—11 February 2006)
    • Episode 6: Dead Reckoning (Original Air Date—18 February 2006)
    • Episode 7: Patriot Act (Original Air Date—25 February 2006)
    • Episode 8: The Great Brain Robbery (Original Air Date—4 March 2006)
    • Episode 9: Grudge Match (Original Air Date—13 February 2006)
    • Episode 10: Far from Home (Original Air Date—15 April 2006)
    • Episode 11: Ancient History (Original Air Date—6 February 2006)
    • Episode 12: Alive (Original Air Date—6 May 2006)
    • Episode 13: Destroyer (Original Air Date—13 May 2006)
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-181550/","id":181550,"name":null,"issue_number":"1"},"id":44865,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4690/138336-160543-dc-animated-universe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4690/138336-160543-dc-animated-universe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4690/138336-160543-dc-animated-universe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4690/138336-160543-dc-animated-universe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4690/138336-160543-dc-animated-universe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4690/138336-160543-dc-animated-universe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4690/138336-160543-dc-animated-universe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4690/138336-160543-dc-animated-universe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4690/138336-160543-dc-animated-universe.jpg","image_tags":"All Images,Team Shots"},"name":"DC Animated Universe","site_detail_url":"https://comicvine.gamespot.com/dc-animated-universe/4015-44865/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45156/","count_of_isssue_appearances":1966,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-03-21 17:28:50","deck":"A sidekick is a superhero partnered with another in a lesser capacity. Used for comedy, to relate to readers, but also to move plot, and in some cases to become an integral part of the mythos.","description":"

    Overview

    \"The
    The Dynamic Duo

    Sidekicks are usually young heroes who are partnered with an adult hero. They may also serve as the comedy relief in a story as well. Some notable sidekicks are Bucky Barnes, Robin,and Speedy. Many sidekicks created new identities when they grew up like Bucky (into Winter Soldier see Bucky Barnes) and the first robin (now Batman). The super hero Stripesy was very famous for being the adult sidekick to the teenage Star-Spangled Kid. Sidekicks may not only take a new identity when leaving their mentor but may later replace their mentor and take his on his mantle. For example Bucky becoming Winter Soldier then later becoming Captain America and Dick Grayson becoming Batman.

    Sidekicks are also a way for young readers to relate to stories and feel as if they are working with or for the main hero. By tying young readers into relate-able sidekicks they are then tied into the main hero which allows more readership. As a marketable tool sidekicks have done very well for comics mainly in the forties and fifties. Since then their deaths and resurrections have been very marketable.

    Below is an alphabetical list of superheroes and their sidekick counterparts.

    SuperheroSidekickPublishers
    AquamanAqualad, Aquagirl I, Aquagirl II, Aquagirl III, Aquagirl IV, Aqualad II, Aqualass, TopoDC Comics
    BatmanRobin I, Robin II, Robin III, Robin IV, Robin V, Batgirl I, Batgirl II, Batgirl III, Batgirl IVDC Comics
    Black TerrorKid TerrorDynamite Entertainment
    Blue Beetle (Dan Garret)SparkyFox Comics, Dynamite Entertainment
    Blue DevilKid DevilDC Comics
    Booster GoldSkeets, GoldstarDC Comics
    Captain AmericaBuckyMarvel Comics
    Captain BattleCaptain Battle Jr.Dynamite Entertainment
    Captain MarvelMary Marvel, Captain Marvel Jr.DC Comics
    CatmanKittenDynamite Entertainment
    CatwomanCatgirlDC Comics
    Congo BillJanuDC Comics
    Doctor Mid-NiteHootyDC Comics
    Dynamic ManDynamic Woman, Dynamic BoyDynamite Entertainment
    FlameFlame GirlDynamite Entertainment
    FlashKid Flash I, Kid Flash IIDC Comics
    Green ArrowSpeedy I, Speedy IIDC Comics
    Green HornetKatoHolyoke Comics, Harvey Comic, Dell Comics, Now Comics, Dynamite Entertainment
    Green LanternDoiby DicklesDC Comics
    HawkmanBig RedDC Comics
    Human TorchToroMarvel Comics
    Lone RangerTontoDell Comics, Dynamite Entertainment
    SandmanWingDC Comics
    Slam BradleyShorty MorganDC Comics
    SpectreJ. Percival PoplaskiDC Comics
    Spider-girlScarlet SpiderMarvel Comics
    SpiritEbony WhiteNewspaper Comics, DC Comics
    Star-Spangled KidStripesyDC Comics
    SupermanSuperboy, Supergirl, KryptoDC Comics
    The TickArthurNew England Comics
    TomahawkDan HunterDC Comics
    Tommy TomorrowBrent WoodDC Comics
    VigilanteBilly Gunn, StuffDC Comics
    Wonder WomanWonder Girl I, Wonder Girl IIDC Comics
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105763/","id":105763,"name":"The Murders of Cap'n Scum","issue_number":"1"},"id":45156,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11275/278707-185255-sidekick.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11275/278707-185255-sidekick.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11275/278707-185255-sidekick.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11275/278707-185255-sidekick.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11275/278707-185255-sidekick.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11275/278707-185255-sidekick.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11275/278707-185255-sidekick.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11275/278707-185255-sidekick.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11275/278707-185255-sidekick.jpg","image_tags":"All Images,Sidekicks"},"name":"Sidekick","site_detail_url":"https://comicvine.gamespot.com/sidekick/4015-45156/","start_year":"1937"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45747/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2011-08-16 00:23:36","deck":"An illustrated listing of common and not so common sound effects used in the comic book medium. While some are general in nature, others conjure a very specific image or action.","description":"

    Illustrated sound effects are the work of the comic book letterer.
    The are visual representations of sounds in comics, often used to emphasize an action like a punch, a kick, an explosion, a blast of energy, etc.
     

    \"HEYASTERANKOEFFECT\"
    HEYASTERANKOEFFECT

    Occasionally they are in-jokes for the creators, adding in the artist's name or a funny phrase.
     
    Sometimes the artist can use the sound effect

    \"SMKSH\"
    SMKSH

    as a framing device or make the sound effect see through so that it wont hinder the art in the panel, like the other example shown here.

    ","first_appeared_in_issue":null,"id":45747,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58788/1189358-chomp.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58788/1189358-chomp.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58788/1189358-chomp.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58788/1189358-chomp.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58788/1189358-chomp.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58788/1189358-chomp.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58788/1189358-chomp.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58788/1189358-chomp.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58788/1189358-chomp.jpg","image_tags":"All Images"},"name":"Comic Sound FX","site_detail_url":"https://comicvine.gamespot.com/comic-sound-fx/4015-45747/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45784/","count_of_isssue_appearances":164,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-07-10 11:47:06","deck":"This concept would cover toys, such as dolls and accessories, based on comics.","description":"

    What I would like to see here is as detailed a description of the toy as possible, including year of manufacture. Color variations of the same item would not count as different unless the change was something that effected the character in comics. An example of this would be the second and third versions of the Wonder woman doll, which had, respectively, different costumes and a different box than the original.

    The very first Wonder Woman doll, because girls never played with ‘action figures’ back then, was created in 1967 and was marketed by Ideal.

    \"No

    Notice the dark eagle instead of the usual golden one on her costume and the Captain America-esque shield. One thing that has yet to change since 1967: that foot wear. Those are lovely Greek style high heeled sandals but still very tiring to fight crime in.

    Next came Mego’s first try at Wonder Woman. First appearing in 1975, this was a smaller figure than they would go on to produce. It’s now fairly rare but check out the awful details any way. Her costume is all one piece, including the flesh colored arms and torso. Why did they bother with the colored cuffs? The figure next to her is Wonder Girl from the Teen Titans (to be produced in 1976).

    \"No

    Now, marketing being the cash creator that it is, Mego’s next version of Wonder Woman was a smash as it coincided with the airing on the television series. She really looked like Lynda Carter too! 12” tall, she came with a painted on bodice that was easily scratched if you played with it. She had a rubber tiara and a golden lasso that was pretty much a coated rubber bad. She also came with a change of clothes so that she could revert to Yeoman Diana Prince. sigh How disappointing that she didn’t change clothes when you spun her around though.

    \"No

    \"No

    \"No

    It should be noted that a year later, in 1979, Mego re-released the doll with a cloth one piece outfit. She also came with modern era clothes rather than the military uniform so as to reflect the change in venue on TV. Interestingly enough, this one looked less like Lynda Carter and she didn’t appear on the box. Most likely this was because the show had begun to slip in ratings. There was a third version of the 12” doll but the main difference was in the box itself, which still used the same comic drawing but added a description of Paradise Island and, of course, the not so subtle hint that you could surround Wondy with friends and foes. Translation: buy more dolls.

    \"No

    In 1984, Kenner produced the Super Powers line. Wonder Woman was the only female doll of the line. Can you say ugly?

    \"No

    In 1990, Toy Biz produced another version of WW but, alas, it was just as ugly as the Kenner one.

    Mattel got into the game producing Barbie as Wonder Woman in 1999 and again in 2003. Though, considering the cost of these dolls, they were more likely collectibles than toys.

    \"No

    \"No

    There have also been editions by a company called Tonner and special ones marketed by the Six Flags theme parks.

    \"No

    Let us not forget the ever popular stuffed and beanie version of Wondy, too. Can you believe a paper doll too?

    \"No

    \"No

    \"No

    \"No

    Last but not least, our Amazon also has a few HeroClix to her credit:

    \"No

    \"No

    \"No

    \"No

    \"No

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-413917/","id":413917,"name":null,"issue_number":"2"},"id":45784,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3652/154447-79582-comic-based-toys.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3652/154447-79582-comic-based-toys.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3652/154447-79582-comic-based-toys.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3652/154447-79582-comic-based-toys.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3652/154447-79582-comic-based-toys.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3652/154447-79582-comic-based-toys.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3652/154447-79582-comic-based-toys.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3652/154447-79582-comic-based-toys.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3652/154447-79582-comic-based-toys.jpg","image_tags":"All Images,Wonder Woman Dolls & Toys"},"name":"Comic Based Toys","site_detail_url":"https://comicvine.gamespot.com/comic-based-toys/4015-45784/","start_year":"1976"},{"aliases":"Gatefold\r\nGatefolded Spread\r\nPin-Up","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45787/","count_of_isssue_appearances":42,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-04-16 14:43:55","deck":"This page displays examples of the pull-out posters or the Centerfolds in comic books.","description":"

    Some comics have pull out posters and centerfold pages, these can show the artist or pencilers great artwork. Here lies a gallery in which we can be reminded of the artists great work. So if you have a fantastic poster you need to show everyone or you're just looking for imagination, enlighten yourself here.

    • This image shows Spider-Man fighting all of his different enemies. This catalog's all of his various foe's, and is a great piece of art work, it really has to be appreciated up close though, the detail is fantastic.
    • This image pictures Spider-man again, this time you see the web-slinger rescuing his beloved Mary Jane from the clutches of every one of his enemies! close call Spidey!
    • This picture is a brilliant example of what every Marvel character would look like assembled in one place at the same time. this is such a good picture because it constantly surprises you. Just when you think you have named every single one, wait... no... there's one more, and another, and another. Brilliant piece of art.
    • This is a really good picture of Wolverine showing off his amazing healing factor after being shot 23 times! The shading affect applied here is almost like a slight colour crosshatch. Go Wolvey!
    • This guy needs no introduction! THE MIGHTY THOR! Enough said i think!
    • This is a comic advertisement/poster. It advertises the new Avengers animated film, it is a good picture of Captain America. Slightly corny and a little too American for most tastes, with the F-16 and the attack helicopter in the back ground. But good all the same!
    • This is one of my favorite pictures I have seen as far as comic pullout poster go. The amount of work that must have gone into this is huge. Well done, whomever created this, it is truly amazing. Amazing use of the 3D affect.
    • This image is a good one also, very eye-catching, how both the figures of Batman and Superman emulate each other and their capes are virtually a mirror image of each other. But it does go to show how unimaginative DC Comics became with their two most major characters, both costumes are very similar. With the knee high boots, tights, capes, and underwear on the outside of their clothes.
    • This is a perfect example why Spawn comics are the most intricate comics around. The actual artists involved in this masterpiece should be knighted or at least given the key to the city! This is a breath-taking piece of work. I don't even want to think about how long this would have taken a team to put together.
    • This next image is of the amazing Supergirl. Is is just me... or does she look totally hot in this picture?
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-158325/","id":158325,"name":null,"issue_number":"156"},"id":45787,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2532/153494-2216-comicbook-centrefold.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2532/153494-2216-comicbook-centrefold.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2532/153494-2216-comicbook-centrefold.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2532/153494-2216-comicbook-centrefold.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2532/153494-2216-comicbook-centrefold.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2532/153494-2216-comicbook-centrefold.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2532/153494-2216-comicbook-centrefold.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2532/153494-2216-comicbook-centrefold.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2532/153494-2216-comicbook-centrefold.jpg","image_tags":"All Images,comic book posters, and centrefold pictures"},"name":"Centerfold","site_detail_url":"https://comicvine.gamespot.com/centerfold/4015-45787/","start_year":"1979"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45806/","count_of_isssue_appearances":1,"date_added":"2008-06-06 11:27:53","date_last_updated":"2011-05-05 16:58:38","deck":"The arcane ritual with a gathering of five people","description":"

    Arcane ritual with five arcane relics, where the people are granted either immense power or they pay the ultimate price. These relics, when brought together and the ritual performed, allow the five who posses them to be blessed or cursed with: power, knowledge, immortality, insanity and death. But the catch is that these powers doesn't seem what they are at first: what first seemed madness was in fact knowledge, what seemed power was madness and death seemed like immortality.

    One recorded Gathering of the Five was brought together by Norman Osborn when he sought power.

    Who received what:

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-64477/","id":64477,"name":"The Final Chapter, Part 1 of 4: And Who Shall Claim A Kingly Crown","issue_number":"441"},"id":45806,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/811690-gotf.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/811690-gotf.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/811690-gotf.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/811690-gotf.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/811690-gotf.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/811690-gotf.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/811690-gotf.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/811690-gotf.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/811690-gotf.jpg","image_tags":"All Images"},"name":"Gathering of the Five","site_detail_url":"https://comicvine.gamespot.com/gathering-of-the-five/4015-45806/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45822/","count_of_isssue_appearances":148,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-01-10 15:35:31","deck":"In the Top Cow Universe, The Darkness is a source of power that grants the wielder the ability to generate anything they desire.","description":"

    Primordial chaos and darkness opposite of order and light, Angelus. Darkness is considered one of the 13 Artifacts. Darkness and Angelus also have an offspring, that acts as balance between the two forces, it is named Witchblade.

    Powers

    The wielder of the Darkness possesses a number of supernatural abilities. The Darkness power allows the wielder to create anything they desire. One of the primary weapons of the Darkness is the ability to generate solid constructs such as blades, claws, and protective armor. The darkness can also be used to create living, sentient beings that are controlled by the wielder. These darkness creatures are often in the form of imps or demons often referred to as Darklings. They tend to be violent in nature, and use a lot of profanity when they talk. The possessor of the darkness can also hear and see remotely through these creatures. Close proximity is also not necessary as they can be created and left in a dark area and controlled remotely via a telepathic control over the creatures.

    Creations of the Darkness are not limited to Darklings, however. Possessors of the Darkness in the past have even created human-like creatures out of the Darkness for many purposes including sex (see Weaknesses and Limitations: Celibacy).

    Weaknesses and Limitations

    Light

    As suggested by the name, a primary weakness of the Darkness is that it only functions in the absence of light. The Darkness cannot be accessed in the light and when light hits anything created of the Darkness it vanishes. This leaves the wielder particularly vulnerable during the day, however even during the day if protection from the light can be found the Darkness can be used. The darkness can be accessed simply by being in a non-lit room or even under the cover of smoke as long as it is thick enough to provide protection from the light.

    Celibacy

    All wielders of the Darkness pass on the Darkness to their heirs through sex. Upon the conception of their child they die, so males in the Estacado family generally die during intercourse. This can be quite a burden for some, and the Darkness has been used in the past to create sentient humanoids for the purpose of sexual gratification.

    Hosts

    This is a list of all those who have wielded the Darkness Power

    The Loophole

    It has been stated that Jackie Estacado would die and pass on the Darkness to his offspring if he were to create a child through sexual intercourse. However, the loophole in this rule is that since the Darkness is an entire entity itself, it could create an offspring itself without having Jackie killed in the process. This was a major part of the First Born story arc as Jackie revealed that one night, the Darkness took control of his body and had sexual intercourse with a comatose Sara in the hospital.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-35153/","id":35153,"name":"The Comic In The Fancy Brown Paper Wrapper","issue_number":"8"},"id":45822,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/334651-194430-the-darkness.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/334651-194430-the-darkness.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/334651-194430-the-darkness.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/334651-194430-the-darkness.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/334651-194430-the-darkness.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/334651-194430-the-darkness.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/334651-194430-the-darkness.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/334651-194430-the-darkness.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/334651-194430-the-darkness.jpg","image_tags":"All Images,The Darkness,The Darkness - first official look,Wielders"},"name":"The Darkness","site_detail_url":"https://comicvine.gamespot.com/the-darkness/4015-45822/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45910/","count_of_isssue_appearances":32,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-05-04 22:05:25","deck":"Exactly what the name says, nameless characters are characters within comics that go without a name.","description":"

    Overview

    The idea of never actually naming a character is actually quite common, though only in more mature comics. In children's comics (DC and Marvel), everyone wants to be able to talk about their favorite characters so names are a given but in other publishers, names are secondary. Its not that everyone is mysterious and there are no important characters, its just that the name itself is not really needed to further the story. For example, the Saint of Killers is never named once, not because his origin is secret, in fact his origin is told in a four-issue miniseries, its because his name isn't important, and as such neither are his wife and daughter named, because they don't need to be, the only thing that makes them important is their relationship to Saint, knowing their names won't change the story.

    Most of the time though, to replace the absence of a name, such as with The Saint of Killers family, their relationship to characters that are named will be mentioned, while other times there just characters that no one can ever refer to without a picture or something of the sort.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114633/","id":114633,"name":"Lex Luthor and Clark Kent: Cell-Mates! / The Secret Origin of Bouncing Boy!","issue_number":"301"},"id":45910,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/841649-noname2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/841649-noname2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/841649-noname2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/841649-noname2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/841649-noname2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/841649-noname2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/841649-noname2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/841649-noname2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/841649-noname2.jpg","image_tags":"All Images,Comic Book Version"},"name":"Nameless Characters","site_detail_url":"https://comicvine.gamespot.com/nameless-characters/4015-45910/","start_year":"1962"},{"aliases":"Pin-Up art\r\nCheescake art","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45911/","count_of_isssue_appearances":779,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-01-13 21:18:05","deck":"A popular genre of comic book art, aimed primarily at male readers, that features attractive and often provocatively-dressed female characters in alluring poses. Good Girl Art in comics is understood to depict characters of the sweet or heroic variety, as opposed to Bad Girl Art, which features edgier and more violent female characters.","description":"

    Overview

    The term \"good girl art\" was first coined in the 1930's and at the time simply referred to published illustrations of attractively-drawn female characters, be they heroines, villainesses, or anything in between. Comparable terms include \"pinup art\" and \"cheesecake art.\" In more specific comic book terms, Good Girl Art now refers to art featuring attractively-drawn female characters who are sweet or heroic in nature, i.e. \"good girls.\" This narrower definition of Good Girl Art gained relevance after the term Bad Girl Art (referring to attractively-drawn female characters who are dark and violent in nature) was coined in the 1990's, resulting in the need for greater distinction between the two genres.

    The good girl art concept first began at the onset of World War II, during the Golden Age of Comics. Servicemen sought out diversions from their duties on the battlefield and at sea by reading comic strips and books featuring women drawn in the \"good girl\" style. These women were portrayed in an attractive and visually appealing manner, and were often scantily-clad in bathing suits and bikinis, or in mildly suggestive attire such as tight dresses. One of the earliest masters of the art form was artist Matt Baker, who became famous for his sexy renditions of Phantom Lady and other female superheroes of the era.

    \"From
    From Darling Love #11 by Harry Lucey

    \"Phantom
    Phantom Lady #17 by Matt Baker

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-162434/","id":162434,"name":"Sourge Of Nepune","issue_number":"15"},"id":45911,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2255/346325-7066-femforce.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2255/346325-7066-femforce.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2255/346325-7066-femforce.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2255/346325-7066-femforce.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2255/346325-7066-femforce.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2255/346325-7066-femforce.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2255/346325-7066-femforce.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2255/346325-7066-femforce.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2255/346325-7066-femforce.jpg","image_tags":"AC Comics,All Images"},"name":"Good Girl Art","site_detail_url":"https://comicvine.gamespot.com/good-girl-art/4015-45911/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-45961/","count_of_isssue_appearances":2,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-05-13 15:51:04","deck":"The Climactic end battle to Star Wars episode four, A New Hope.","description":"

    Before the Battle

    Darth Vader, on nearing completion of the Death Star, had kidnapped Princess Leia because the Empire was lead to believe the Rebel Alliance had stolen the Death Star's plans and that she was in possession of them. Feeling the need to test the Empire's newest, most powerful weapon, they headed to the planet Alderaan, where after Darth Vader tried coaxing information out of the Princess. Giving them a false target, Grand Moff Tarkin ordered the destruction of the planet, demonstrating the Death Star's deadly firepower.

    Taken into custody, Princess Leia was later rescued by Obi-Wan Kenobi, Luke Skywalker, Han Solo, and Chewbacca, who then planned an attack against the Empire with the plans Leia had given R2-D2 before she was kidnapped, and was later picked up by Luke Skywalker. The Rebels soon discovered the only weakness against the Death Star was and exhaust port that lead to the main reactor, allowing for a single proton torpedo to take down the mighty weapon.

    Battle

    \"Rebel
    Rebel pilots in their X-Wing starfighters attacking the Death Star.

    Following the allowed escape and rescue of Princess Leia, Vader and the Empire tracked her to the Rebel Base on the fourth moon of the planet Yavin, where the Death Star soon arrived, escorted by a small fleet. While the Death Star charged its main planet destroying beam. Still planning their attack, the rebels had sent a small attack unit of X-Wings and to shoot down a communications satellite set up by the Empire so that they could relay information more easily. The small attack was a success and threw into confusion the Empire's defense and their ability to call reinforcements. Although two of the X-wings were shot down, the pilots of which were rescued later.

    After several more preliminary strikes made by the rebels to several key points on the Death Star, including small hangars on the surface to limit it's ability to launch fighters, the rebels sent into action their main offensive attack. The assaulting fleet consisted of almost two dozen X-wings, eight Y-Wings, and a pair of R22 Spearhead starfighters.

    At first, the Death Star tried to defend itself with it's laser batteries, but some had been shot by the preliminary rebel strikes, and those that were left were mainly used to fight off capital ships, much larger than the smaller more nimble fighters being used by the Rebel Alliance. The rebels were able to take down several of the turrets and a rookie pilot known as Rookie One was able to destroy a giant mounted ion cannon to set up the main phase of the assault.

    Refusing to concede that the rebels were actually doing any damage the the Death Star, it's commander Grand Moff Tarkin did not send any of the station's vast resource of TIE fighters. So Darth Vader, under the realization that there might be even a minor threat, scrambled his personal fighter squadron. Soon after Vader's fighters launched and they attacked the Rebel forces, and the order to stop all laser fire from the Death Star had been given. Mostly because the lasers themselves were doing very little in shooting down any Rebels, and if they did manage to hit something it was just as likely they would hit one of the TIE fighters doing more damage.

    The rebels main offensive bombing run had been planned for three attempts at a trench run, the first and second runs were executed by Gold Squadron, consisting of three Y-wings, and a squadron of three X-wings called Red Squadron, both of were unsuccessful and missed the small exhaust target. The third was lead by Luke Skywalker and two other X-wings, one of which was damaged and had to pull out while the other was destroyed.

    \"X-Wings
    X-Wings and TIE fighters battling it out around the Death Star.

    It was at this time that the Death Star had fully charged it's weapon and was in position to fire. All seemed hopeless for Rebel Command and the last fighter who could take one last shot, Luke, disabled his targeting computer in his X-wing. However Skywalker was told by the spirit of old \"Ben\" Kenobi to \"use the Force\" to make the near impossible shot. Sensing how strong the Force was with Luke, Vader prepared to kill him, saving the Empire, and it was only the last minute heroic deed of Han Solo and Chewbacca in the Millennium Falcon that sent Darth Vader spinning out of control in space and saved Luke.

    With the aid of the Force, that was newly discovered to him, Luke Skywalker guided his last minute shot perfectly down the planned target. Seconds before the Death Star fired it's main weapon the chain reaction from Luke's torpedos had started and the station was blown up, and all on board including Grand Moff Tarkin, thousands of Imperial officers, and over one million support troops and stormtroopers were killed.

    Repercussions

    As a direct result of the Rebel Alliance victory, they were now a legitimate threat against the Empire, and because of dissolution in the Imperial Senate, systems joined the Alliance in the months afterwards by the thousands. This caused the Empire to start occupying territories it had left untouched. The actions of both sides resulted in the escalation of the war.

    Lastly, twenty five years later it was decreed by the New Republic Historical Council to institute a new calendar. Some were using the fall of Palpatine as a year zero, but due to the significance of the battle and destruction of the Death Star, the date of the battle of Yavin was established by the council as the official year zero setting up a \"BBY\", Before the Battle of Yavin, and \"ABY\", After the Battle of Yavin calendar.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-120509/","id":120509,"name":"My Brother, My Enemy (Part 1)","issue_number":"1"},"id":45961,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/40363/1201714-a_new_hope__103.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/40363/1201714-a_new_hope__103.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/40363/1201714-a_new_hope__103.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/40363/1201714-a_new_hope__103.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/40363/1201714-a_new_hope__103.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/40363/1201714-a_new_hope__103.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/40363/1201714-a_new_hope__103.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/40363/1201714-a_new_hope__103.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/40363/1201714-a_new_hope__103.jpg","image_tags":"All Images"},"name":"Battle of Yavin","site_detail_url":"https://comicvine.gamespot.com/battle-of-yavin/4015-45961/","start_year":"2006"},{"aliases":"Earth-2301","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-46090/","count_of_isssue_appearances":48,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-09-19 09:22:34","deck":"The Marvel Mangaverse was designated Earth-2301 in the Official Handbook to the Marvel Universe: Alternate Universes 2005. Inevitably the series was short lived with mixed reactions.","description":"

    Concept and Creation


    \" Marvel
     Marvel Mangaverse Heroes

    The Marvel Mangaverse is a series of graphic novels that used Amerime* style art. It was published from 2000 through 2002, and a sequel entitled \"New Mangaverse\" was published in 2005. The series was ultimatly left open ended, during the \"Rings of Fate\" story line, and was met with mixed reactions.

    *Amerime: distinctive faux manga style characterized by lazy face designs based on decades-old Japanese anime & heavy hybrid American comic book style influences that clash. The end result is that the art looks neither American nor Japanese & the style is generally looked down upon by both comic book & manga readers. A popular example of the style's usage would be the cartoon Avatar: The Last Air Bender.

    History

    In the beginning, a living energy force called the Lightgiver seeded this universe with sentient life, with twelve worlds becoming the first of many to evolve such life. One world became an evil placeruled by mysterious tyrant Mephisto who spread the forces of anti-life and disease across the universe, quickly finding and turning the Skrulls into merciless warriors willing to destroy other civilizations from within. The Watchers realized the threat Mephisto presented and allied themselves with the more tolerant Kree, trading their vast knowledge for protection. A bitter enmity developed between the Kree and Skrulls, leading to warfare on an almost unimaginable scale. The Skrulls tapped into the substance of Mephisto's world to create the anti-life virus called Galactus, which devoured the life forces of many worlds. In responce, the Kree created warriors called the Captains to defend other worlds from its depredations.


    \"Earth-2301\"
    Earth-2301

    Years ago, the Keepers, who were the real power behind the terrorist group HYDRA, tricked a ridiculed Dr. Bruce Banner into building an Energy Well to tap into what he thought was an extradimensional source of clean safe energy to power a satellite gun. In reality, what Banner had found was an Ethereal Realm populated by banished gods and monsters. The Keepers planned to use the gun to secretly bring the Elder Gods back to rule Earth, but shoddy construction caused the gun to backlash and create a twenty-four-hour worldwide blackout. Once power was restored to the world, S.H.I.E.L.D. attacked the hidden HYDRA base in Central Asia, where field agent Antoinette Stark found a nearly insaned Banner. Years after partially suppressing his memory with a cerebral driver, Stark had Banner rebuild the Well, but HYDRA agents kidnapped him and inadvertently caused Banner to summon the gigantic extradimensional moster called the Hulk. While the Hulk terrorized New York City, encountering heroes such as Spider-Man and the Ghost Riders ( Johnny Blaze and Daimon Hellstorm), Baron Strucker invaded Stark Island and summoned Dormammu to Earth. As the heroes battled HYDRA's forces, Dr. Strange used Banner as a conduit to channel the god Thor to thwart Dormammu and the Hulk, but victory cost the lives of both Banner and Stark.


    \"Mangaverse
    Mangaverse X-Men

    Life began to return to normal. Spider-Man resumed his quest to avenge his uncle's murder and avoid induction into Baal's Shadow Clan, while the X-Men dealt with the electromagnetic demon Magnus and the attempted kidnapping of Jean Grey by the Hellfire Club. A month after defeating the extradimensional Annihilus, the Mega-Scale Metatalent Responce Team Fantastic Four was contacted by Uatu The Watcher to find the son of th e late Kree guardian Captain Marvel. They found the teenaged Marvin Ellwood, who, with the help of the alien Inhumans, killed the approaching Galactus. While the United Nations debated recent events and the current world situation, a new Dr. Doom (T'Challa's younger sister and the real Dr. Doom's former apprentice), who was furious at the perceived lack of aid given to victims of Galactus, attacked them. After killing three members of the Iron Avengers, Doom was confronted by her older brother Black Panther, Scarlet Witch, Dr. Strange and his assistant Tigra, and was eventually killed.

    Some years later during an incident on Earth-616 involving a rampaging horde of mutated alternate reality incarnations of The Thing, Reed Richards contacted multiple versions of himself and The Fantastic Four from various alternate worlds who were also experiencing the same phenomenon in order to find a solution to the problem, amongst the conglomerate of alternate Fantastic Fours were the Mega-Scale Metatalent Responce Team Fantastic Four of Earth-2301.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-132600/","id":132600,"name":"Megascale Megatalent Response Team: Fantastic Four","issue_number":"1"},"id":46090,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/160085-97912-marvel-mangaverse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/160085-97912-marvel-mangaverse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/160085-97912-marvel-mangaverse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/160085-97912-marvel-mangaverse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/160085-97912-marvel-mangaverse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/160085-97912-marvel-mangaverse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/160085-97912-marvel-mangaverse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/160085-97912-marvel-mangaverse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/160085-97912-marvel-mangaverse.jpg","image_tags":"All Images"},"name":"Marvel Mangaverse","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse/4015-46090/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-46239/","count_of_isssue_appearances":68,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-05-21 14:45:33","deck":"Chakra is an energy source.","description":"

    Overview

    To perform techniques a ninja must first utilize a form of energy source named, \"Chakra\" Chakra originates from two places: the first is physical energy which is inherent in the billions of cells, the second source of chakra is the mental & spiritual energy gained through exercise and experience. The body itself possess many points of concentration these are often referred to as chakra points. In order to perform a jutsu, the ninja will bring out and release these two energies. The amount of chakra needed for a technique will vary greatly, depending upon its size and complexity. It will also vary from user to user depending on their chakra capacity. Ninjas are able to manipulate chakra to use jutsus, molding and shaping the chakra to create the effect they want.

    \"No

    However, each ninja also has the potential to utilize an elemental Ninjutsu style. This is due to the fact that every ninja possess one elemental affiliation. For example, Naruto possess a wind affiliation and Kakashi possess a lightning affiliation. With an elemental affiliation comes an advantage as well as a disadvantage. For example the advantage of having a lightning elemental affiliation is that a ninja with that affiliation can master lightning based techniques more easily as well being able to perform higher level lightning based attacks. Possessing a lightning affiliation grants the ninja a higher advantage over someone possessing an earth affiliation, however the disadvantage of having a lightning affiliation is having a disadvantage over a ninja with a wind affiliation. In other words while acquiring an advantage over one opponent with a weakness to your affiliation, your affiliation has a weakness of its own. For this reason many ninja train themselves to recompose their chakra into different elemental based techniques to acquire a higher level of defense should they encounter their polar opposite as well as more options in combat. But because the ninja does not possess that particular elemental affiliation learning new moves requires more effort and limits their ability to be able to handle higher level techniques with that element.

    Main Elemental Chakras

    Katon

    The Fire element technique. Katon takes on fire and flame based attacks. Its specialized as an offensive type of chakra and oftens create flame based attacks which are hurled from a distance, that gives the user distance between themselves and their opponent.

    Fuuton

    The Wind element technique takes wind based properties from a simple gust of wind to a typhoon. Out of all the elemental chakras Fuuton is most respected for it's ability to slice or act as an amplifier such as turning a simple kunai into an unstoppable bullet.

    Raiton

    The Lighting element technique takes on and off lighting based attacks.It also specializes in offensive type of chakra like fire and its ability lies in creating mid range and long attacks. It can also be used by a metal weapon like conductor. A technique that was famously used by Kakashi's father Sakumo Hatake.

    Doton

    The Eath element technique is based around earth style and it specializes in defense. By taking advantage pf the properties that make up earth. It can be used as a near perfect escape route such as using a mud slide technique to incapacitate the enemy.

    Suiton

    The Water element technique varies greatly depending on the users surrounding and the user itself, because of it's malleability it can be used to create powerful defenses as well as offenses. It can be from short to long range. However it's major weakness is it's user must be near any kind of water, but this however can be overcome as proven by the Nidame Hokage and Hoshigaki Kisame.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-263636/","id":263636,"name":"The New Opponents","issue_number":"4"},"id":46239,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/46321/912455-59886_body_super.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/46321/912455-59886_body_super.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/46321/912455-59886_body_super.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/46321/912455-59886_body_super.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/46321/912455-59886_body_super.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/46321/912455-59886_body_super.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/46321/912455-59886_body_super.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/46321/912455-59886_body_super.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/46321/912455-59886_body_super.gif","image_tags":"All Images"},"name":"Chakra","site_detail_url":"https://comicvine.gamespot.com/chakra/4015-46239/","start_year":"2000"},{"aliases":"Extraterrestrials\r\nAlien Life","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-46567/","count_of_isssue_appearances":12448,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-09-16 10:25:35","deck":"Aliens are beings that are not native inhabitants of Earth and a mainstay in many forms of fiction and comics are no exception. This page lists aliens from various comic companies.","description":"

    Overview

    An Alien by definition is any object or being that is in another place to where it was created or born. Often the term Alien is applied to any race of beings from another planet arriving on earth or a planet colonized by Human-beings (even the local inhabitants of that planet maybe referred to as aliens by the humans even though strictly by definition the human are the aliens).

    Aliens may be benign or aggressive and are a popular protagonist in modern science fiction and culture in general.

    Alien can also refer to the other-worldly i.e. things that do not resemble the normal and recognizable.

    Popular concepts around aliens

    • Aliens living amongst humans
    • Alien Invasion of human colonies and Earth itself
    • War between alien races and gog
    • Discovery or gifting of alien technology
    • Exploration of extinct races
    • Examination of alien knowledge for understanding and betterment of mankind
    • Abduction by aliens and/or experimentation on humans
    • Survival where a single being or small group battle to survive in an alien environment

    Some of the most famous alien races are listed below:

    List of Alien Species

    [Key: \"Species\" - \"Notable members of that race\"]

    Alien/Predator

    DC Comics

    Dynamite

    Dragonball

    Halo

    Marvel

    Mass Effect

    Stargate

    Star Trek

    Star Wars

    Top Cow

    Transformers

    Valiant

    Wildstorm

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109012/","id":109012,"name":"Captain Jim of the Texas Rangers","issue_number":"12"},"id":46567,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11134/111342609/7632425-image0.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11134/111342609/7632425-image0.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11134/111342609/7632425-image0.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11134/111342609/7632425-image0.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11134/111342609/7632425-image0.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11134/111342609/7632425-image0.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11134/111342609/7632425-image0.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11134/111342609/7632425-image0.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11134/111342609/7632425-image0.jpg","image_tags":"All Images"},"name":"Aliens","site_detail_url":"https://comicvine.gamespot.com/aliens/4015-46567/","start_year":"1937"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-46699/","count_of_isssue_appearances":279,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-03-09 07:06:29","deck":"'Elseworlds', or 'Imaginary Stories' are tales where a fresh concept or idea is tried on an existing character or storyline. This often leads to a new and fresh take on existing characters. 'Elseworlds' is also when the narrator give characters new story lines, and concepts.","description":"

    Elseworlds

    \"In Elseworlds, heroes are taken from their usual settings and put into strange times and places--some that have existed, and others that can't, couldn't, or shouldn't exist. The result is stories that make characters who are as familiar as yesterday seem as fresh as tomorrow.\" © DC Comics

    Elseworlds are published by DC comics and have been since the late 80’s, before that they were known as ‘Imaginary Stories’ where a fresh idea or alternate histories were tried out on existing characters or storylines. Most notably during the Silver age of comics era a lot of these ‘Imaginary Stories’ were published using DC’s main characters of Superman and Batman, though they did also branch out into DC’s other ‘mainstream’ characters.

    \"Whatever
    Whatever Happened to the Man of Tomorrow, the last 'Imaginary Story'

    In 1986, the last ever ‘Imaginary Story’ was published in Superman #423 and Action Comics #583, called “Whatever Happened to the Man of Tomorrow?” This two part story arc was promoted as Superman's final appearance at DC Comics. In this story, the Superman timeline is irrevocably altered in several ways and became a darker, more sinister place. The main story was told using flashbacks of Lois Lane, who became Lois Lane-Elliot, who was being interviewed about Superman’s last appearance. \"Whatever Happened to the Man of Tomorrow\" was a farewell story to honor the previous version of Superman. In the following month of 1986, John Byrne published the Man of Steel mini series which presented an updated version of Superman for the modern age.

    \"Gotham
    Gotham by Gaslight, the unofficial first Elseworld

    In 1989 DC comics copyrighted the ‘Elseworlds’ name, along with the now famous logo and published its first official Elseworlds title, “Gotham by Gaslight”. Though this story does not carry the Elseworlds logo, it was retroactively changed to be the first official Elseworlds title by DC and reprints of the book carry the logo. This story was a fresh take on Batman who lived in the Victorian Age instead of modern day. The main Villain in the piece is Jack the Ripper who has come to Gotham. The first book to officially bear the Elseworlds logo and mantra was Batman: Holy Terror, written by TV writer and novelist Alan Brennert and illustrated by Detective Comics stalwart Norm Breyfogle. In it, Batman is a priest in a theocratic dictatorship who discovers that his parents were murdered by the Church. Searching for answers and vengeance, he discovers the dark secrets at the heart of his own government, and ultimately becomes a terrorist to dismantle the system which murdered “heretics” such as his parents.

    To date DC has published several Elseworlds of particular note that are considered to be ‘The Best of their League”, two specifically of note are Kingdom Come and The Dark Knight Returns. Both of these stories have received world wide acclaim for their storyline and artwork.

    The Dark Knight Returns

    \"Batman: The Dark Knight\" was originally published in 1986 as a four part miniseries by Frank Miller, it has since been widely thought of as his best work. The series was originally intended by Miller to create an end for the Batman, one where the storyline would have a complete close, this turned out not to be the case when DC published a sequel to the book “The Dark Knight Strikes Again”, a sequel to The Dark Knight Returns which brought back the original team to work on the book.

    The Dark Knight Returns is set in a dark future where Batman had given up the Superhero life and gone into seclusion. While the Superheroes had left humanity to its own devices crime, both by humans and meta humans, had run rampant, and the world was quickly tearing itself apart.

    The story opens on Harvey Dent being rehabilitated after plastic surgery, funded by Wayne Enterprises. The rehabilitation does not take however and he returns to crime, forcing Batman to don the Batman costume again, something he has not done since the death of Jason Todd twenty years earlier. The story also brings in Carrie Kelly who joins Batman as Robin for the story arc, notably not the first time Robin has been female in an Elseworlds title. Also worth noting is the fact that it is Harvey Dent as Two-Face that bring the Batman out of retirement, not the Joker as most people assume it would be.

    Other changes to the Batman story become apparent as the story moves on, such as the new tank like Batmobile which is mirrored in the Cartoon version of The Batman and has made several other appearances in media as homage to the title.

    Kingdom Come

    \"No

    Possibly the most noteworthy Elseworlds title to date and has been widely received as the definitive book published by DC. Published in 1996 is was written by Mark Waid and painted by Alex Ross, notably the artwork in the book is unusually realistic for a comic book and uses Ross’s famous style to depict the realism and darkness of the storyline. Set 20 years in the future, the superheroes have left the world to its own devices, feeling betrayed and unsure of their place in the new world. The main story centers on Superman and his reasons for leaving, and returning. Other characters of note are Batman, who was crippled by Bane and Two-Face after they found out his secret identity, he now uses giant Bat Robots to keep Gotham City under control. Wonder Woman, who has been stripped of her title by Themyscria after the ruling body of The Amazon’s decreed that she had not made the world a better place. Captain Marvel who had retreated inside the form of Billy Batson, his alter ego, and was kept in a hypnotic state by Lex Luthor to keep him under control.

    Both these stories are widely recognized as the best Elseworlds to date, though Kingdom Come draws heavily on The Dark Knight Returns for some of its imagery, both of these have sequels, though not as popular as the original books, both the sequels received the same acclaim, ‘The Dark Knight Strikes Again’ and ‘The Kingdom’ respectively follow “The Dark Knight Returns” and “Kingdom Come”.

    One thing of note is in “The Kingdom” is the first mention of Hypertime, which DC used to explain the Elseworlds stories as parallel dimensions where beings could cross timelines and see what their world could have been like.

    Hypertime has recently been brought back into the mainstream DCU continuity after the “52” storyline, though if this means that new Elseworlds storylines will be published or Elseworlds characters will be making appearances in the mainstream DCU in unclear at this point, all that is known is the possibility is there for anything.

    Elseworlds

    Here is a list of Elseworlds, in character order with their published dates and ISBN details for reference.

    Batman Elseworlds

    TitlesNumber of IssuesYearISBN-10ISBN-13
    Batgirl and Robin: Thrillkiller3 Issue Mini-Series19971563894246978-1563894244
    Batman/Captain AmericaOne Shot1996156389291X978-1563892912
    Batman & Demon: A TragedyOne Shot20001563892863978-1563892863
    Batman & Dracula: Red RainTrade19911852864370978-1852864378
    Batman: BloodstormTrade19941563891859978-1563891854
    Batman: Crimson MistTrade1998184023072X978-1840230727
    Batman/Houdini: The Devil's WorkshopOne Shot19931563891131978-1563891137
    Batman/LoboOne Shot2000B003AP9TM2
    Batman: The Blue, The Grey, and the BatOne Shot19929993903469978-9993903468
    Batman: The Book of the Dead2 Issue Mini-Series1999B000NY7IEE
    Batman: Brotherhood of the BatOne Shot19951563892510978-1563892516
    Batman: Castle of the BatOne Shot19941852866055978-1852866051
    Batman: Dark AllegiancesOne Shot19961563892332978-1563892332
    Batman/Dark Joker: The WildTrade19931563891409978-1563891403
    Batman: Dark Knight DynastyTrade19971852869364978-1852869366
    Batman: Dark Knight of the Round Table2 Issue Mini-Series1998B000S1ITSG
    The Dark Knight Returns4 Issue Mini-Series19861852867981978-1852867980
    The Dark Knight Strikes Again3 Issue Mini-Series20011840236213978-1840236217
    Batman: Gotham NoirOne Shot2001B000IQHXPG
    Batman: Haunted Gotham4 Issue Mini-Series19991401221416978-1401221416
    Batman: Hollywood Knight3 Issue Mini-Series2001B002BQDHSI
    Batman: Holy TerrorOne Shot19911563890186978-1563890185
    Batman: I, JokerOne Shot19981563894009978-1563894008
    Batman: In Darkest KnightOne Shot19941563891123978-1563891120
    Batman: KnightgalleryOne Shot1995
    Batman: League of Batmen2 Issue Mini-Series2001B0006E8U9S
    Batman: Manbat3 Issue Mini-Series1995185286818X978-1852868185
    Batman: MasqueOne Shot19971563893096978-1563893094
    Batman: Master of the FutureOne Shot19911563890151978-1563890154
    Batman: Nevermore5 Issue Mini-Series2003B003E8QEIM
    Batman: Nine LivesOne Shot20021840235179978-1840235173
    Batman: NosferatuOne Shot19991563893797978-1563893797
    The Batman of ArkhamOne Shot2000B0006RHWFS
    Batman: The Doom That Came To Gotham4 Issue Mini-Series2000
    Batman: The Order of BeastsOne Shot2004B000R4LP8U
    Batman: Reign of TerrorOne Shot1998B000H02APG
    Batman: Scar of the BatOne Shot19961563892316978-1563892318
    Batman/Tarzan: Claws of the Cat-Woman4 Issue Mini-Series19991569714665978-1569714669
    Batman Thrillkiller '62One Shot19981563893711978-1563893711
    Batman: Two-FacesOne Shot1998B000RY0FZA
    Batman: Year 1004 Issue Mini-Series20061401211925978-1401211929
    Catwoman: Guardian of Gotham2 Issue Mini-Series1999B00157RZI2
    Daredevil and Batman: Eye For An EyeOne Shot19970785105522978-0785105527
    Batman/Daredevil: King of New YorkOne Shot20001563893835978-1563893834
    Robin 30002 Issue Mini-Series1992B0006PHQMO

    Superman Elseworlds

    TitlesNumber of IssuesYearISBN-10ISBN-13
    Son of SupermanOne Shot1999156389596X978-1563895968
    Superboy's Legion2 Issue Mini-Series2001
    Supergirl: WingsOne Shot2001B0006RSY6E
    Superman: A Nation DividedOne Shot19981563894416978-1563894411
    Superman: At Earth's EndOne Shot1995156389243X978-1563892431
    Superman: The Dark Side3 Issue Mini-Series19981563895269978-1563895265
    Superman: Distant FiresOne Shot19981563892898978-1563892899
    Superman, Inc.One Shot1999B000I33W7M
    Superman: KalOne Shot19951563891670978-1563891670
    Superman: Last Son of Earth2 Issue Mini-Series2000B000KGCIZY
    Superman: Last Stand On KryptonOne Shot2003B000I8XV3C
    The Superman MonsterOne Shot1999B000TBBIDI
    Superman: Red Son3 Issue Mini-Series20031401201911978-1401201913
    Superman: Speeding BulletsOne Shot19931563891174978-1563891175
    Superman's MetropolisOne Shot19971563892421978-1563892424
    Superman/Tarzan: Sons of the Jungle3 Issue Mini-Series20011569717613978-1569717615
    Superman: True BritTrade20041401200230978-1401200237
    Superman: War of the WorldsOne Shot19981563893967978-1563893964
    Superman/Wonder Woman: Whom Gods Destroy4 Issue Mini-Series1997B001D31MZK
    Kingdom Come4 Issue Mini-Series19961563893304978-1563893308

    Superman/Batman Elseworlds

    TitlesNumber of IssuesYearISBN-10ISBN-13
    Elseworld's Finest2 Issue Mini-Series1997B000VNJZWU
    Elseworld's Finest: Supergirl & BatgirlOne Shot19981563893754978-1563893759
    Superman & Batman: Generations4 Issue Mini-Series19981563896052978-1563896057
    Superman & Batman: Generations II4 Issue Mini-Series20011563899906978-1563899904
    Superman & Batman: Generations III12 Issue Mini-Series
    Superman and Batman: World's FunniestOne Shot2000

    Justice League Elseworlds

    TitlesNumber of IssuesYearISBN-10ISBN-13
    JLA: Act of God3 Issue Mini-Series2000B0006R9KVM
    JLA: Age of Wonder2 Issue Mini-Series2003B000VIWOOG
    JLA: Created Equal2 Issue Mini-Series2000B0006RQC6S
    JLA: Destiny4 Issue Mini-Series2002B000Y9PR3M
    JLA: The Island of Dr. MoreauOne Shot2002B0006RZFVQ
    Justice League of America: The Nail3 Issue Mini-Series19981563894807978-1563894800
    Justice League of America: Another Nail3 Issue Mini-Series20041401202659978-1401202651
    JLA: Riddle of the BeastTrade2001156389873X978-1563898730
    JLA: Secret Society of Super-Heroes2 Issue Mini-Series2000B000YVKU9G
    JLA: Shogun of SteelOne Shot2002B0006RW4EC
    JSA: The Liberty File2 Issue Mini-Series19991401202039978-1401202033
    JSA: The Unholy Three2 Issue Mini-Series2003B000UDGOZ2
    Justice RidersOne Shot1997156389257X978-1563892578
    League of Justice2 Issue Mini-Series1996
    Planetary/JLAOne Shot2002B000JFBDQQ

    Other Characters Elseworlds

    TitlesNumber of IssuesYearISBN-10ISBN-13
    Conjurors3 Issue Mini-Series1999
    Elseworlds 80-Page GiantOne Shot1999
    Flashpoint3 Issue Mini-Series1999
    The Golden Age4 Issue Mini-Series19931401207111978-1401207113
    Green Lantern: Evil's Might3 Issue Mini-Series2002B00418V312
    Green Lantern: 1001 Emerald NightsOne Shot2001B0006RMLZY
    Kamandi: At Earth's End6 Issue Mini-Series1993B0006OZV4K
    Titans: Scissors, Paper, StoneOne Shot19971563893630978-1563893636
    Wonder Woman: AmazoniaOne Shot19971563893010978-1563893018
    Wonder Woman: The Blue AmazonOne Shot2003B000GINV2U

    Non-U.S. Elseworlds

    Title/Issue #Reprints/CollectsLanguage
    DC Premium #2JLA: Ein Akt GottesGerman
    DC Premium #3Sohn Des SupermanGerman
    DC Premium #5JLA: The Secret Society of Super-HeroesGerman
    DC Premium #6Superman: Der Letzte Sohn der ErdeGerman
    DC Premium #7Batman: Die Dynastie der DunklenritterGerman
    DC Premium #14JLA: Allein Unter FrauenGerman
    DC Premium #25Golden AgeGerman
    DC Premium #29Genosse SupermanGerman
    DC Premium #34Justice League: Noch Ein NagelGerman
    Reino do Amanhã #1Reino do AmanhãPortuguese
    Superman: Entre A Foice e O Martelo #1Superman: Red Son #1Portuguese
    Superman: Entre A Foice e O Martelo #2Superman: Red Son #2Portuguese
    Superman: Entre A Foice e O Martelo #3Superman: Red Son #3Portuguese

    Elseworld Annuals

    For further details: Elseworlds (Story Arc)

    As part of DC's yearly annual events 1994 was the year of the Elseworlds, twenty-three of the ongoing titles at the time were given the Elseworlds treatment and were re-imagined in many ways. The 1994 annuals showcased some of the best and worst takes on many of DC's characters and featured some of the biggest talents in the industry at the time. All but two of the Elseworld annuals were stand alone issues; Adventures of Superman Annual #6 and Superboy Annual #1 were part of a two part storyline entitled \"The Super Seven\".

    \"Action
    Action Comics Annual #6
    \"Adventures
    Adventures of Superman Annual #6
    \"Batman
    Batman Annual #18
    \"Batman
    Batman Legends of the Dark Knight Annual #4
    \"Batman
    Batman Shadow of the Bat Annual #2
    \"Catwoman
    Catwoman Annual #1
    \"Deathstroke
    Deathstroke Annual #3
    \"Detective
    Detective Comics Annual #7
    \"Flash
    Flash Annual #7
    \"Green
    Green Lantern Annual #3
    \"Justice
    Justice League America Annual #8
    \"Justice
    Justice League International Annual #5
    \"L.E.G.I.O.N.
    L.E.G.I.O.N. Annual #5
    \"Legion
    Legion of Super-Heroes Annual #5
    \"Legionnaires
    Legionnaires Annual #1
    \"Lobo
    Lobo Annual #2
    \"New
    New Titans Annual #10
    \"Robin
    Robin Annual #3
    \"Steel
    Steel Annual #1
    \"Superboy
    Superboy Annual #1
    \"Superman
    Superman Annual #6
    \"Superman
    Superman The Man of Steel Annual #3
    \"Team
    Team Titans Annual #2

    Legends of the Dead Earth Annuals

    For further details: Legends of the Dead Earth (Story Arc)

    DC's 1996 annual event was branded as \"Legends of the Dead Earth\". These are not officially labeled as Elseworld tales but many consider them to be Elseworlds because they take place in the distant future and feature stories influenced by the legends/stories/legacies of the heroes and villains of the past for that particular title. A few of these annuals are actually in continuity because the characters are from the distant future. Twenty-five annuals had the Legends of the Dead Earth branding.

    \"Action
    Action Comics Annual #8
    \"Adventures
    Adventures of Superman Annual #8
    \"Aquaman
    Aquaman Annual #2
    \"Azrael
    Azrael Annual #2
    \"Batman
    Batman Annual #20
    \"Batman
    Batman Legends of the Dark Knight Annual #6
    \"Batman
    Batman Shadow of the Bat Annual #4
    \"Catwoman
    Catwoman Annual #3
    \"Detective
    Detective Comics Annual #9
    \"Flash
    Flash Annual #9
    \"Green
    Green Lantern Annual #5
    \"Guy
    Guy Gardner Warrior Annual #2
    \"Impulse
    Impulse Annual #1
    \"Justice
    Justice League America Annual #10
    \"Legion
    Legion of Super-Heroes Annual #7
    \"Legionnaires
    Legionnaires Annual #3
    \"Power
    Power of Shazam Annual #1
    \"Robin
    Robin Annual #5
    \"Sovereign
    Sovereign Seven Annual #2
    \"Starman
    Starman Annual #1
    \"Superboy
    Superboy Annual #3
    \"Supergirl
    Supergirl Annual #1
    \"Superman
    Superman Annual #8
    \"Superman
    Superman The Man of Steel Annual #5
    \"Wonder
    Wonder Woman Annual #5
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-18538/","id":18538,"name":"Last Batman Story!","issue_number":"300"},"id":46699,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2835/180989-187378-elseworlds.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2835/180989-187378-elseworlds.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2835/180989-187378-elseworlds.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2835/180989-187378-elseworlds.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2835/180989-187378-elseworlds.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2835/180989-187378-elseworlds.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2835/180989-187378-elseworlds.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2835/180989-187378-elseworlds.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2835/180989-187378-elseworlds.jpg","image_tags":"All Images,Elseworlds"},"name":"Elseworlds","site_detail_url":"https://comicvine.gamespot.com/elseworlds/4015-46699/","start_year":"1978"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-46747/","count_of_isssue_appearances":3,"date_added":"2008-06-06 11:27:53","date_last_updated":"2020-11-17 07:30:15","deck":"An introduction on how to start a comic book collection and how to make that collection grow.","description":"

    1. Start with what you like

    Rather than divulging yourself into a comic book universe (or maybe many), focus on one character or a team (X-Men, JLA) only. Even independent developers have large universes. Pick one of the most popular characters or teams from one publisher that relate to you the most and stick with them. This way, you can track that certain character or team without losing yourself within the comic's universe. Also, take genres into consideration. Looking for a bit of sci-fi? Check out Dark Horse and have a look at their take on Star Wars. For example, if you choose Wonder Woman as your prime candidate and during that time, the more recent issues of Wonder Woman would be a good place to start. Once you are familiar with such a character, you may lose interest in them. Remember, this is only so you can get yourself started in comics, but they may also become your favourite character. Once you being with that certain character(s), there may be cross-overs. Using Wonder Woman as an example again, you might want to start with the runs by writers such as Greg Rucka and Gail Simone. If you want something a little further back, try the Wonder Woman Chronicles trades, or her Showcase Presents volumes.

    One daunting issue concerning new collectors is the high issue numbers of long-time ongoing series'. When you want to read a book about a particular character you may feel like you are coming in too late when current issues are being published with issue numbers in the 400's, 500's, or more. Do not be afraid of high issue numbers. Comic writers will periodically give users \"jumping-off\" points at certain issue numbers (often at the 50's or 100's) to start a series. Larger series' are also divided into different \"story-arcs\" which serve as logical partitions of the larger series, typically lasting between 2 and 6 issues. These smaller subplots interconnect to form the larger idea. Regardless of where you start out in a book, these divisions can give you the feel for a new book. If you are concerned about catching up on the back-story you have missed (after all, some of these series' have been going on for decades) you can look for used books to fill in the gaps later, and read encyclopedia articles from ComicVine to give you an idea of what you have missed in a character or team's history.

    Another way to catch up without picking up individual issues is to collect Trade Paper Backs (sometimes referred to simply as \"trades\" or TPBs). Trade Paperbacks are reprinted collections of issues (generally by story-arch or series, but sometimes by general theme), and can be purchased new or used at a variety of stores. If you are more interested in reading books, and less interested in the physical (paper) copies digital comics are rapidly becoming an interesting alternative. Some major companies such as Marvel are now putting digital copies of their books online. Some of these books can be viewed for free, and others can be purchased or subscribed to digitally.

    2. Comic book stores

    What you need from a good comic book store is a good selection of your chosen character and staff that know what they're talking about. With most comic book stores, a pull list is available, which allows you to select your favourite comics each week and the staff will collect the issues when they come in, and comics arrive on Wednesday. Many will also give you a discount to have your pull list or \"folder\" with them. A comic book store is also preferred if it is clean. Such things like dust will deteriorate the comic book's preservation. Lighting is also a bonus but probably not always needed. However, lighting allows you to see the comics properly and to see what state they are in. This does not hold for sunlight, which can damage comic books. Also, try not to spend too much too quickly. Modern comic books are often released in limited quantities with special variant covers, and because of their associated rarity these books may sell for many times what normal books cost. Antique comics of your favorite characters are also often available at comic book stores. While these types of books may be tempting, remember to go slow. New collectors may wind up with a collection of books that they overpaid or are otherwise unhappy with because they spent too much too fast.

    If comic stores aren't in your present area, using a mail catalogue order is useful, as you order the comics you would like on the Internet and they get sent to your door. Payment is usually through credit card. Buying from a company's site also allows you to receive discounts from the original price if you subscribe to their services. Other sites like eBay and Amazon also provide comics to buy at discounted prices and mostly good condition. Also, comics are not restricted to comic book stores, even though they are the preferred place to buy. Major book stores like Barnes and Nobles also sell comic books.

    Another place where you can get the opportunity to read more books without having to spend money is your local library. Many libraries are starting to obtain Trade Paper Backs for you to check out and enjoy without ever spending a dime.

    3. Comic Book Care

    Caring for you comic books is important if you ever want to pass them down to the next generation or want to re-read them. The easiest way is to buy bags and boards for you comic books from the comic book store, and place them in short or long boxes, which are also available at comic book stores. This will seem like a money waster, but it will pay out in the end and allow your comics to look much nicer. Check out Comic Book Care for more information on other options on how to take care of your comics.

    4. Comic book databases

    Take note of each comic book that you buy. You could use a notebook or a spreadsheet application on your computer. Keep track of your collection while it's still young, so if you ever miss an issue of a certain comic book, you can go back and attempt to find it on eBay or something. Also, you can check out the back issue section in your store and see if they have anything there.

    5. Be cheap for once

    As with any hobby, collecting comic books can be expensive. Sometimes, your local comic book store might have a sale on for some really old comics. Get it while you can, because this can be great to growing your collection. However, don't buy everything that's on sale. Just focus on your focused character. This will allow you to add more depth to learning about the history of your chosen character. This also allows you for something extra to read when you've read everything on your pull list.

    Also be on the lookout for cheap comics elsewhere. Some places where great deals on comics in a variety of ages and conditions are yard sales, swap meets, and flea markets/malls. Be careful not to spend too much at these places because they are also great places to get ripped off. If you are still new to comics and do not understand the subtleties of comic book grading, or do not have an idea of what comics from different ages are worth you may get suckered into a \"great deal\" that turns out to be not so great. Such salesman may not be bad people. They may have little more idea than you of what their books are worth. If you are collecting for your own personal enjoyment you can hardly go wrong spending a dollar or less on comics. Sometimes you can find them as cheap as a quarter a piece. As mentioned earlier second hand auction sites on the internet can be used to help build a collection for chap, however be careful. There are many dangers (primarily being ripped off) associated with internet auctions, so use these sites at your own risk.

    6. Attend a comic book convention

    Attend a comic convention, such as ComicCon. Doing so will allow you to interact with other comic book lovers and maybe allow you to make a friend or two sharing the same favourite of a character as you. You also will often have the opportunity to meet the writers and artists behind your favorite books in person, often getting a signature or sketch while you are there. Attending ComicCons also allow you to buy plenty of issues missed on your chosen character and browsing through all the booths are enjoyable. Also, you may also get some news on new and up coming comic storylines and new movies that are being made. ComicCons may not always visit your city, but that doesn't mean it will stop you from attending smaller ones.

    7. One more thing - enjoy it!

    Don't take this hobby too seriously, unless that's what you want. Comic books should be enjoyed by everyone and each character should be respected. Voicing your opinion may induce some interesting discussions, but in reality, they are created to be read. For example, some comic readers use it as a means of escape. Also, don't be embarrassed if you don't know much about your favourite character. Comic books are meant to be a world of discovery. Starting from where you are and enjoying yourself with his hobby is all you need. If someone knows about Spider-Man's webbing chemicals more than you, then let them. Bottom line is, enjoy the comics as they are and if you wish to continue into something even further (like knowing everything about Spider-Man's webbing chemicals) then you are welcome to do that too.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-225754/","id":225754,"name":null,"issue_number":"1"},"id":46747,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1093/183615-33201-starting-a-comic-boo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1093/183615-33201-starting-a-comic-boo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1093/183615-33201-starting-a-comic-boo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1093/183615-33201-starting-a-comic-boo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1093/183615-33201-starting-a-comic-boo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1093/183615-33201-starting-a-comic-boo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1093/183615-33201-starting-a-comic-boo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1093/183615-33201-starting-a-comic-boo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1093/183615-33201-starting-a-comic-boo.jpg","image_tags":"All Images,Comic Book Collections"},"name":"Starting A Comic Book Collection","site_detail_url":"https://comicvine.gamespot.com/starting-a-comic-book-collection/4015-46747/","start_year":"1987"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-47520/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-11-12 01:24:35","deck":"How much weight a being can lift determines that beings strength level. The following is a list cataloging and categorizing many characters of the Marvel Universe among others of similar strength based on their demonstrated strength. The class number label of each category denotes the range of weight (in tons) a character can lift/press, unassisted, using only physical/muscular strength.","description":"

    Definition

    Strength, as used in the context of this article, is the physical ability to lift weight over one's head to full arms extension and/or move other physical objects against the resistance of gravity. The influence of gravity while on Earth is the default level of gravity against which strength is measured in the Marvel Universe.

    Strength in this context means only physical ability; not psychic ability, elemental power, magic use or any other non-physical means of lifting or moving objects. These strength classes/categories apply specifically to the Marvel Universe only, but can be applied as guidelines for any fictional universe.

    Class 1000

    Beings in this category have or can imbue themselves with, for all intents and purposes, truly limitless strength

    Galactus, Korvac, Beyonder, Stranger, In-Betweener, The Celestials, Hercules (Sky-father), Odin (enhanced), Zeus (enhanced), Living Tribunal, Ego, Cyttorak, Surtur, Ymir, Chthon (enhanced), Watchers (enhanced), Juggernaut (fully empowered by Crimson Gem of Cyttorak), Champion (with Power Gem), Hulk, Eternity, Death, Abraxas, Akhenaten, Maestro (enraged).

    Class 500

    Able to routinely lift or imbue themselves with the ability to lift up to 500 tons

    Champion of The Universe, Juggernaut, Thanos (enhanced), Kurse, Destroyer (Asgardian), Hulk (highly enraged), Thor (Warrior's madness), The Runner (enhanced), Neptune (enhanced), Contemplator (enhanced), Lord Chaos, Master Order, Maestro (normal), Iron Man (Special armors).

    Class 250

    Able to routinely lift or imbue themselves with the ability to lift at least 250 tons but less than 500 tons

    Hercules (normal), Juggernaut (baseline) Gladiator (peak confidence), Arimathes, Thor (with belt of strength), Red Hulk, World War Hulk (baseline), Morg (enhanced), Living Monolith (maximum height), Fafnir, Utgard-Loki, Thanos, Hulk 2099, Iron Man (Normal armors).

    Class 125

    Able to routinely lift or imbue themselves with the ability to lift at least 125 tons but less than 250 tons

    Thor (normal), Hyperion, Gilgamesh the Forgotten One, Leir, Orka (in water), Blue Marvel, Terrax (enhanced), Silver Surfer (enhanced), She-Hulk (after training as a human), Runner (normal), Firelord (enhanced), Loki (enhanced), Tyrak (maximum height).

    Class 100

    Able to routinely lift or imbue themselves with the ability to lift at least 100 tons but less than 125 tons

    Terminus, Wonder Man, Abomination, Namor the Sub-Mariner (wet), Silver Surfer (Normal), Orka (out of water), Thing (further mutated), Colossus, Ulik, Binary, Possessor (enhanced), Collective Man (backed by Country), Absorbing Man (enhanced), Hulk (baseline of Doc Green).

    Class 90

    Able to routinely lift or imbue themselves with the ability to lift at least 90 tons but less than 100 tons

    Sub-Mariner (out of water), Thing (normal), Tiger Shark (in water), Zeus (normal), Captain Britain (Current), Nimrod, T-Bird, Hulk (baseline of savage hulk, professor, gravage).

    Class 80

    Able to routinely lift or imbue themselves with the ability to lift at least 80 tons but less than 90 tons

    Executioner, Rhino, Titania, Sandman, Box (Bachs), Tiger Shark (out of water), Silver Surfer (normal).

    Class 70

    Able to routinely lift or imbue themselves with the ability to lift at least 70 tons but less than 80 tons

    Doc Samson, Her, Pluto (normal), Ares, Overmind, Sasquatch, Snowbird, Neptune (normal), Black Bolt (enhanced), Terrax (normal), Colossus, Grey Hulk (Joe Fixit), Ms. Marvel, Warpath (normal).

    Class 60

    Able to routinely lift or imbue themselves with the ability to lift at least 60 tons but less than 70 tons

    Attuma (in water), Ronan The Accuser, Thundra, Iron Clad, Crimson Dynamo, Crusader (Peak Faith), Scarlet Scarab, Tyrak.

    Class 50

    Able to routinely lift or imbue themselves with the ability to lift at least 50 tons but less than 60 tons

    Firelord (normal), Mister Hyde, Makkari, Annihilus, Vision, Sabra, Vidar, Possessor (normal), Rogue, Controller, Blastaar, Iron Man (MK 1 armor), Mettle.

    Class 40

    Able to routinely lift or imbue themselves with the ability to lift at least 40 tons but less than 50 tons

    Sub-Mariner (severely dehydrated), Tiger Shark (severely dehydrated), Apollo, Hephaestus, Attuma (out of water), Nova, Interloper, Ikaris.

    Class 30

    Able to routinely lift or imbue themselves with the ability to lift at least 30 tons but less than 40 tons

    Frey, Hermod, Heimdall, Hogun, Volstagg, Athena, Tyr, Balder, Artemis, Fandral, Sif, Loki (normal), Dionysus, Genis-Vell.

    Class 20

    Able to routinely lift or imbue themselves with the ability to lift at least 20 tons but less than 30 tons

    Sersi, Quasimodo, Frigga, Hoder, Power Princess, Gronk, Ch'od, Captain Mar-Vell, Crusader (normal), Stingray, Enchantress, Thena, Sigyn, Idunn, Vesta, Aphrodite, Lorelei, Hera, Karnilla, Phastos, Beast, Geirrodur, Armadillo, Karkas, Spider-Man, Luke Cage, Karkas.

    Class 10

    Able to routinely lift or imbue themselves with the ability to lift at least 10 tons but less than 20 tons

    American Eagle, Namorita, Nekra, Moonstone, Man-Ape, Leonus, Hobgoblin, Amphibian, D'Spayre, Dreadnought, Spider-Woman, Nuklo, Puma, Lizard, Starfox, Super-Skrull, Unicorn, Scorpion, Silvermane (enhanced), Andromeda (in water), Cybele, Khoryphos, Living Mummy, Left-Winger, Right-Winger, Rom, M, Tigra.

    Class 5

    Able to routinely lift or imbue themselves with the ability to lift at least 5 tons but less than 10 tons

    Kang, Klaw, Mad-Dog, Sprite, Charlie-27, Krang, Deathbird, Captain Ultra, Blob, Bloodstone, Byrrah.

    Class 2

    Able to routinely lift or imbue themselves with the ability to lift at least 2 tons but less than 5 tons.

    Ursa Major, Captain Britain, Vindicator, Gorgon, Thunderbird, Doctor Doom, Machine Man, Llyra, Frankenstein, Gargoyle, Arkon, Anaconda, Triton, Radioactive Man, Moon Knight (full moon).

    Class 1

    Able to routinely lift or imbue themselves with the ability to lift at least 1 ton but less than 2 tons

    Modred The Mystic, Paladin, Cannonball, Karnak, Killer Shrike, Mentor, Lilandra, Wolverine (with adamantium reinforcement), Machinesmith, Aquarian, Werewolf By Night (full moon), Martinex, Lockjaw, Defensor (with armor).

    1000 lbs

    Able to routinely lift or imbue themselves with the ability to lift at least 1000 lbs. but less than 1 ton

    Stilt-Man, Black Queen, Vermin, Wolverine (without adamantium reinforcement), Rattler, Man-Thing, Beetle, Whirlwind, Deathlok, Death Adder, Ajak.

    Peak Human

    The following people have reached the maximum strength attainable by a non-super powered human. These beings can lift or press up to 800 lbs

    Captain America, Black Panther, Conan, Master, X-23, Iron Fist (using his chi).

    Upper Human Level

    These people have trained themselves to be extremely strong and are at the upper limits of human level strength. They are capable of lifting weight ranging from 300 to 650 lbs

    Kingpin, Nomad, Puck, Daredevil, Ka-Zar, Yondu, Hawkeye, Taskmaster, Iron Fist, Hangman, Dr. Druid, Devil-Slayer, Razorback, Red Wolf, Cobra, Bullseye, Batroc, Moondragon, Owl, Vulture, Angel, Adam X-treme, Baron Strucker, Black Widow, Elektra, Hellstorm, Hydro-Man, Moon Knight, Punisher.

    ","first_appeared_in_issue":null,"id":47520,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54353/1552489-mu_strength_chart___1981__as_annual_15_.jpg","image_tags":"All Images,Go to Images,Hercules,Strength Level,Strength Levels - Categories"},"name":"Strength Level","site_detail_url":"https://comicvine.gamespot.com/strength-level/4015-47520/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-47581/","count_of_isssue_appearances":6,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-01-01 20:50:38","deck":"A Quickening in an Immortals life force, it holds all their strength, knowledge and power.","description":"

    Quickening

    A Quickening in an Immortals life force, it holds all their strength, knowledge and power. The Quickening can only be released from the body after decapitation, once this happens the Quickening is absorbed into the victor, or the nearest Immortal if the decapitation happened by accident or by mortal means.

    Quickening’s are massively destructive, though the extent of the devastation is dependent on how old and how powerful the immortal is. During the episode “Comes a Horseman”, Duncan MacLeod and Methos received a shared Quickening that almost completely destroyed a factory from two characters that were over 3000 years old, but during Endgame, Duncan MacLeod received a Quickening so powerful it cleared the atmosphere of clouds and destroyed a major power plant in New York, this Quickening was from Jacob Kell who was just over 600 years old.

    Dark Quickening

    If an Immortal received too many Quickening’s from ‘evil’ Immortals, then the build up can eventually overcome the immortals psyche and turn them into a dark, twisted version of themselves. This happened to Duncan MacLeod in season 4 of the television when an Immortal Native American named Coltec was eventually overwhelmed by the Dark Quickening. Duncan MacLeod eventually killed Coltec and received the Dark Quickening himself, he was eventually saved by Methos, though the cost was great, as during his ‘Dark Time’ Duncan had killed one of his oldest friends, Dean Burns.

    Light Quickening

    As with the Dark Quickening, the same can happen in reverse to an ‘evil’ immortal. Darius was an ancient immortal warlord who roamed the world searching for Immortals, when he came to Paris he was faced with an Immortal monk who protected Paris. Darius slew the immortal and received his Quickening, the pure, Light Quickening overcame Darius’ psyche and since then he dedicated his life to the church and spent the next thousand years on holy ground.

    Holy Ground Quickenings

    One of the three rules for Immortals, there must be no fighting on Holy Ground. This rule has been broken twice in Highlander cannon, both times with disastrous consequences.

    In 79AD two immortals fought in a temple on Pompeii, when the final stroke fell the volcano erupted from the Quickening, killing the immortal victor as well. In 1993, Connor Macleod faced Kane in a Buddhist shrine, when Kane went to make the killing blow Connor blocked him with his Katana and went to finish the fight, Connor’s sword shattered to dust before making the blow. Rather than attack a defenceless man on holy ground, Kane wisely chose to save the fight for later.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-122506/","id":122506,"name":null,"issue_number":"1"},"id":47581,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/1838619-quickenings.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/1838619-quickenings.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/1838619-quickenings.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/1838619-quickenings.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/1838619-quickenings.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/1838619-quickenings.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/1838619-quickenings.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/1838619-quickenings.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/1838619-quickenings.jpg","image_tags":"All Images"},"name":"Quickenings","site_detail_url":"https://comicvine.gamespot.com/quickenings/4015-47581/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-47795/","count_of_isssue_appearances":30,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-04-25 02:54:52","deck":"The Top Cow Pilot Season is an annual initiative that began in 2007 to determine the next ongoing series from the publisher.","description":"

    Top Cow Productions put the power back in the hands of the readers by letting them vote on six one-shot “pilot” issue comics through the publisher’s Pilot Season MySpace page. Each issue involved in the competition would be a stand alone story, with plot seeds for further issues if need be, and the title or titles with the most votes would become an ongoing however, most of these would eventually be mini-series only and suffer from scheduling conflicts. The format of the initiative has changed since its inception, evolving with each year, however the voting process has been constant.

    Content:

    • 2007 Season (Nominees & Winners)
    • 2008 Season (Nominees & Winners)
    • 2009 Season (Nominees)
    • 2010 Season (Nominees & Winner)
    • 2011 Season (Nominees & Winner)
    • Collected Editions
    • Digital

    2007 Season

    In 2007 the Pilot Season consisted of six planned titles based on established Top Cow characters that had potential to star in their own series.

    Pilot Season 2007 nominees:

    TitleWriterArtist

    Angelus Pilot Season #1

    Ian EdgintonStjepan Sejic
    Cyblade: Pilot Season #1Joshua Hale FialkovRick Mays
    Necromancer: Pilot Season #1Joshua OrtegaJonboy Meyers
    Ripclaw Pilot Season #1Jason AaronJorge Lucas, Tony Moore (cover)
    Velocity: Pilot Season #1Joe CaseyKevin Maguire
    Aphrodite IX #1
    (pulled; relaunched 2013)
    Dan JevonsEric Basaldua

    Aphrodite IX was pulled from schedule and never released under the Pilot Season banner. It was determined in the final stages of production that it did not fit the feel of the other issues and would be released at a later date. Ripclaw, Cyblade, and Velocity are spin-offs of Marc Silvestri’s popular series, Cyber Force. The Angelus is a concept that originated in The Darkness, another Silvestri creation, while Necromancer had appeared in a previous mini-series from Top Cow in 2005. All the characters were established and made up a connected, shared world, whereas Aphrodite IX was set in the future.

    The voting process was well received, exceeding four million votes over the course of one month (from December until January). Readers were permitted, and encouraged, to vote as many times as they wanted.

    Pilot Season 2007 winners:

    TitleWriterArtistYear
    Cyblade #1-4Joshua Hale Fialkovvarious artists2008-09
    Velocity #1-4Ron MarzKenneth Rocafort2010-11

    Cyblade and Velocity tied for first place, and both titles were slated for an ongoing series in 2008. However, only Cyblade was released on schedule. After suffering many delays, Velocity writer Casey resumed work again, this time with artist ChrisCross relieving Maguire. The title hit another impasse when ChrisCross resigned from the project in December 2008 due to “unforeseen differences”; the title was officially cancelled in February 2009. Casey later attributed the delay and cancellation to Top Cow’s poor management, citing mass dismissal of Top Cow personnel, including editorial staff. Velocity was finally re-launched in 2010 with a new creative team, despite being published under the Pilot Season banner. The new series is written by Ron Marz and Kenneth Rocafortproviding art.

    2008 Season

    This season saw a change in that all the entrants were original characters, with only two having a publication history before Pilot Season.

    Pilot Season 2008 nominees:

    TitleWriterArtist
    Alibi #1Joshua Hale FialkovJeremy Haun
    The Core #1Jonathan HickmanKenneth Rocafort
    Genius #1Marc Bernardin, Adam FreemanAfua Richardson
    Lady Pendragon #1Matt HawkinsEru, Drew Struzan (cover)
    Twilight Guardian #1Troy HickmanReza, Hendry Prasetyo (cover)
    Urban Myths #1Jay FaerberJorge Molina

    This season's entries consisted of four original and two already existing properties, Lady Pendragon and Twilight Guardian.

    The voting period this season lasted from August to September 2008, and allowing individual computers to vote only once per a day. Twilight Guardian won with nearly 30% of the vote. Top Cow VP of Marketing and Sales, Mel Caylo stated that some titles from the season could still be slated for future projects. Alibi earned the least amount of votes, yet had been optioned for a feature film by Mandeville Films.

    Pilot Season 2008 winners:

    TitleWriterArtistYear
    Genius #1-5Marc Bernardin, Adam FreemanAfua Richardson, Nelson Blake II (covers #2-5)2014
    Twilight Guardian #1-4Troy HickmanSiddharth Kotian, various cover artists2011

    2009 Season

    Another change was made to the competition in that all the titles listed below were co-developed by Robert Kirkman and Marc Silvestri. All series would be written by Kirkman and all regular covers drawn by Silvestri.

    Pilot Season 2009 nominees:

    TitleWriterArtist
    Demonic #1Robert KirkmanJoe Benitez, Marc Silvestri (cover)
    Hardcore #1Robert KirkmanBrian Stelfreeze, Marc Silvestri (cover)
    Murderer #1Robert KirkmanNelson Blake II, Marc Silvestri (cover)
    Stealth #1Robert KirkmanSheldon Mitchell, Marc Silvestri (cover)
    Stellar #1Robert KirkmanBernard Chang, Marc Silvestri (cover)

    Murderer was the first title released in December 2009, the rest sporadically throughout 2010, with the exception of Hardcore that was still due by the end of 2010 and was eventually be released in 2012.

    There is no information about the voting process and the final results of the 2009 pilot season and none of these series has been picked up (as of 2016).

    Top Cow released a special one-shot, Pilot Season: Declassified, with short previews, top secret design sketches, and other extras for this season.

    2010 Season

    Top Cow made a beneficial change to the initiative this year by having separate creative teams compete. Unlike previous seasons and after the scheduling disaster in 2009, pilot issues were released every week over the course of five weeks between September and October 2010. This allowed the voting process to be completed by November.

    Pilot Season 2010 nominees:

    TitleWriterArtist
    7 Days from Hell #1Bryan Edward Hill, Rob LevinPhil Noto, Brian Stelfreeze (cover)
    39 Minutes #1William HarmsJerry Lando, Jay Leisten, Brian Buccellato (colors)

    Asset #1
    (stylized as @SSET)

    Filip SablikDavid Marquez, Jenny Frison (cover)
    Crosshair #1Jeff KatzAllan Jefferson, Sunny Gho (cover)
    Forever #1Brad InglesbyThomas Nachlik
    Midway Earth #1
    (pulled)
    unknownunknown

    Pilot Season 2010 winner:

    39 Minutes was announced as the winner this year however, it has yet to be continued (as of 2016).

    2011 Season

    With eight one-shots the biggest Pilot Season thus far.

    Pilot Season 2011 nominees:

    TitleWriterArtist
    Anonymous #1Alan McElroyMichael Montenat, Eric Jones (cover)
    The Beauty #1Jason A. HurleyJeremy Haun, John Rauch
    City of Refuge #1Morgan Davis FoehlDennis Calero
    Fleshdigger #1Shannon Eric Denton, Brian KeeneAlex Sanchez, Hi-Fi Design (colors)
    Misdirection #1Filip SablikChris Dibari, Michael Gaydos (cover)
    Seraph #1Phil HesterJose Luis, Sandro Ribeiro, Jose David Ocampo
    The Test #1Joshua Hale FialkovRahsan Ekedal, Bagus Hutomo (cover)
    Theory of Everything #1Nick NantellThomas Nachlik, Erik Jones (cover)

    In 2011 more than one million readers voted and Top Cow announced The Beauty as the winner; with Theory of Everything being a strong runner-up. Unfortunately at the time, the creative team of The Beauty had been involved with other projects and time passed until August 2015 when the series was finally published, then by Image Comics, and is still running as of 2016.

    Pilot Season 2011 winner:

    Column HeadColumn HeadColumn HeadColumn Head
    The Beauty #1-currentJason A. HurleyJeremy Haun2015-running

    The Pilot Season 2011 was the last Pilot Season.

    Collected Editions

    • Pilot Season 2008 (Collects the 2007 Pilot Season titles.)
    • Pilot Season: Declassified (Previews and Extras for the 2009 Season)
    • Pilot Season: Declassified 2010 (Exclusive Previews)
    • Pilot Season: Declassified 2011 (Exclusive Previews plus Early Looks to upcoming series of previous winners 39 Minutes & Genius)
    • Pilot Season 2012 (Collects the 2011 Pilot Season titles.)

    Digital

    Most of the Pilot Season one-shots are available on Comixology for $1.99 or less.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112412/","id":112412,"name":"The Harrowing","issue_number":"1"},"id":47795,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/207783-186845-top-cow-pilot-season.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/207783-186845-top-cow-pilot-season.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/207783-186845-top-cow-pilot-season.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/207783-186845-top-cow-pilot-season.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/207783-186845-top-cow-pilot-season.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/207783-186845-top-cow-pilot-season.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/207783-186845-top-cow-pilot-season.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/207783-186845-top-cow-pilot-season.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/207783-186845-top-cow-pilot-season.jpg","image_tags":"All Images,Top Cow Pilot Season"},"name":"Top Cow Pilot Season","site_detail_url":"https://comicvine.gamespot.com/top-cow-pilot-season/4015-47795/","start_year":"2007"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-48559/","count_of_isssue_appearances":1,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-09-02 21:35:20","deck":"198 is a symbolic number commonly used to describe the number of mutants remaining after M-Day.","description":"

    Definition

    The term 198 has dual meanings.

    The first of which describes a group of still-powered mutants that sought refuge on the grounds of the Xavier Institute after M-Day.

    Secondly, 198 refers to the earliest confirmed number of mutants still powered after M-Day. It is a misconception that there were only 198 mutants with powers after M-Day, but the number is often used as a symbol of those left. The precise number of mutants left with powers after M-Day is not known, however most estimates put the total number between 200-300.

    During Necrosha Caliban discovered that even the dead were affected by the Scarlet Witch's spell.

    For reasons currently unknown, mutants who have originated from other realities (not from the main, 616 universe), were have said to retained their powers. However, they are not included among the 198.

    This is a list of all mutants confirmed to retain their powers after M-Day. Mutants who were re-powered by some means after M-Day are not to be included in this list.

    Notes

    • There have also been a couple of unnamed mutants shown with retained powers that have been eaten by Predator X.
    • Several other Stepford Cuckoo specimens, known as the Thousand-In-One.
    • Professor X has since regained his mutant X-Gene after making contact with the reality-altering M'Kraan Crystal.
    • Magneto regained his powers after extensive experimentation done by the High Evolutionary.
    • Marrow and Polaris, despite having been listed as depowered, retained aspects of their physical mutation. Marrow retained her scars & growths, while Polaris' hair is still green.
    • Quicksilver was initially depowered, but his powers spontaneously re-emerged after prolonged exposure to the Terrigen Crystals & during a time of great distress.
    • During the Necrosha storyline, Selene resurrected many mutants with the T-O virus. These deceased mutants were brought back to life with their powers in tact, although it is unknown if this is a result of the virus. Tarot, who was previously thought to be depowered via a computer screen in New Avengers, has shown to use her powers. Feral had exhibited the loss of her mutant powers at the time of her death, but shown as active once again following her resurrection.
    • Darkstar (Laynia Petrovna), thought dead, resurrected herself by corrupting and taking over the body of a Dire Wraith who had absorbed elements of the Darkforce. As a result, it is unknown if she could currently be classed as a mutant.
    • Rictor has since regained his powers at the hands of the Scarlet Witch.
    • After being presumed dead as a member of the New Warriors, Stacy X has reemerged alive and fully powered. How this came to be has yet to be revealed.

    Discrepancies

    • Jamie Braddock is a creature from Otherworld and is not human.
    • Madame Web's powers were mystical in nature, thus why Julia Carpenter could inherit her abilities upon her death.
    • Despite conflicting sources, Mimic has most recently been confirmed a mutate.

    Mutant Status Undetermined

    The following characters have statuses that are difficult to determine, often due to conflicting sources or rampant Internet rumors.

    • Debrii : No origin of powers given.
    • Fesi, Eden : Protegee of mutant Gateway, with whom he shares similar powers.
    • Scarlet Witch : A mutant before M-Day, she is shown undetectable by Cerebra, but her vast abilities may be able to cloak her.
    • Speed : A magical construct of the Scarlet Witch, it is unknown if he is mutant, human or something else.
    • Wiccan : A magical construct of the Scarlet Witch, it is unknown if he is mutant, human or something else.

    Mutant Hybrids

    Some characters are said to be mixed specimens and seemingly still hold the X-Gene trait. Some consider them mutants nonetheless while others consider them to be separate species altogether because they are technically not \"human mutants\" like the rest of the 198. These mutant hybrids include:

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106250/","id":106250,"name":null,"issue_number":"1"},"id":48559,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18265/816227-the198_cv.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18265/816227-the198_cv.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18265/816227-the198_cv.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18265/816227-the198_cv.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18265/816227-the198_cv.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18265/816227-the198_cv.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18265/816227-the198_cv.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18265/816227-the198_cv.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18265/816227-the198_cv.jpg","image_tags":"All Images"},"name":"198","site_detail_url":"https://comicvine.gamespot.com/198/4015-48559/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-48603/","count_of_isssue_appearances":32,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-08-25 05:02:36","deck":"A Timeline / guide to the Gold Digger Universe created by Fred Perry.","description":"

    Timeline

    Beginning of Time

    The Nomad Artificers create Nexus and its pocket dimensions

    500 Million BC (Early Paleozoic)

    Dr. Peachbody arrives.

    140 Million BC

    Peak of the Saurian Civilization

    40 Million BC - Age of Magic Begins

    Saurians intrude on the home dimension of the Beta-Phantoms. Betans retaliate and Saurians are wiped out.

    Iceron the arch-magician creates the very first were-races.

    An Elven royal sides with the Dwarves in Succession Wars.

    Iron Dragons Phyrogoth and Dreadwing (in human forms and going by the names Merlin and Drey) search for the Time Raft.

    2000 BC

    The dragon elder Exthilion uses a piece of Senadra's soul to restore Merlin's body as a flesh Golem.

    Dimensional explorers from Earth find and colonize Nexus and rename it \"Jade\".

    Rock Elves find Dain, the ark of the Shadows, beneath their city and activate it accidentally. The Shadows of Jade are summoned.

    The Shadows return to Jade and enslave all who live there.

    A Beta-Phantom is found by the Rock Elves and is absorbed by them, creating the first Shadow Elves.

    The Armsmaster Tournament is founded.

    The Mage Council of Jade rules that anti-magic weapons be locked up out of fear of the Shadow Elves.

    End of the Age of Magic

    August 11, 1002 BC

    Beginning of the Exodus of Magic. The Master Guilds of Magic leave Earth.

    700 BC

    The Ammonians arrive on Earth and build a hyperspace-port in ancient Egypt.

    800 BC

    Madrid ends up in an East Indian temple and lives a boring life.

    Christ is born.

    1323

    Dr. Peachbody transports Ryan, Asriel and Arnie to 14th century Europe where they fight the Vampire Queen Natasha and hordes of Deadians.

    1903

    Dr. Peachbody and Benji plant a delayed action bomb meant to sterilize Gina's parents and prevent the birth of Gina Diggers.

    1948

    Birth of Theodore Diggers.

    1949

    Birth of Julia Brigand.

    1962

    Theodore goes to Jade and begins his magical training.

    1964

    First meeting of Theodore Diggers and Julia Brigand.

    1965

    William Justice becomes a villain and begins to go by the name \"Tirant\".

    1969

    The Wonder Friends are disbanded and Agency Zero is established.

    Julia begins training under Master Leep.

    1971

    Marriage of Theodore Diggers and Julia Brigand.

    Dr. Peachbody's second attempt to prevent the birth of Gina Diggers.

    1973

    Birth of Ryan Tabbot.

    1974

    Birth of Gina Babette Diggers.

    1975

    Dr. Diggers is unable to prevent the were-wolves and were-cheetahs from being manipulated into fighting each other. He finds the sole survivor and adopts her as Britanny Elin Diggers.

    1978

    Dr. Diggers' father becomes the Lich King after failing to cast a powerful spell.

    Ryan Tabbots parents die in a plane crash. Ryan is taken in and trained by the Unlimited Fighting Federation team his father had been a part of.

    Swordsman Zero joins the Unlimited Fighting Federation and teaches the participants to search for the \"perfect fight\".

    1986

    Mita Celande attempts to erase Dr. Peachbody from existence by neutering his ancestor. Peachbody merges with Benji, becoming one being, but is defeated and is sent into the very distant past.

    Major Characters

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-166492/","id":166492,"name":"Hitchhiker's Guide to the Lost Cities Part I","issue_number":"1"},"id":48603,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/381486-99688-gold-digger-universe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/381486-99688-gold-digger-universe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/381486-99688-gold-digger-universe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/381486-99688-gold-digger-universe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/381486-99688-gold-digger-universe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/381486-99688-gold-digger-universe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/381486-99688-gold-digger-universe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/381486-99688-gold-digger-universe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/381486-99688-gold-digger-universe.jpg","image_tags":"All Images,gallery"},"name":"Gold Digger Universe","site_detail_url":"https://comicvine.gamespot.com/gold-digger-universe/4015-48603/","start_year":"1992"},{"aliases":"Earth-1298","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-48792/","count_of_isssue_appearances":38,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-09-20 20:50:08","deck":"Earth-1298 is the reality Havok of Earth-616 went to when his mind switched with an alternate evil Havok.","description":"

    Home reality of The Six: Havok, Goblin Queen, Bloodstorm, Brute, Ice-Man and The Fallen.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-45399/","id":45399,"name":"In The End...As In The Beginning!","issue_number":"1"},"id":48792,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/4138577-mutant_x_universe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/4138577-mutant_x_universe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/4138577-mutant_x_universe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/4138577-mutant_x_universe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/4138577-mutant_x_universe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/4138577-mutant_x_universe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/4138577-mutant_x_universe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/4138577-mutant_x_universe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/4138577-mutant_x_universe.jpg","image_tags":"All Images"},"name":"Mutant X","site_detail_url":"https://comicvine.gamespot.com/mutant-x/4015-48792/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-48870/","count_of_isssue_appearances":69,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-08-04 15:46:42","deck":"It is the DC/Vertigo equivalent of Buddha, just like The Presence is the god of DC and Vertigo. It is the \"source\" of all that exists. Alternatively, it can be considered a description of the Creator of the Universe, a science fiction analogue based on Judaeo-Christian doctrine.","description":"
    \"the
    the Anti Life Entity.

    The source is the being that released the God Wave that empowered DC's gods and super humans. Its realm is the source wall, which is at the edge of the DC multiverse, which traps all those who attempt to pass beyond it. DC Comics has kept the Source out of the main continuum of its story telling; therefore, not much is known concretely about its many aspects.

    \"This wall is our link with the \"Source\" It lived even as the Old Gods died!\" -- High Father.

    It is eternal. It is the Life Equation and its power is a part of High Father's Wonder Staff.

    Death of New Gods (version)

    \"The
    The Source with Metron

    The Source was attacked by three elder gods of the third world and was split in two, one being The Source and is the light side, the other is the Anti Life Entity. After that, The Source plotted to remake the forth world for it though it to be flawed. Its plan was to use the Infinity man to kill all the New Gods, and merge with The Anti Life Entity, then using the soul fire equation to remake everything. Darkseid eventually discovered its plan, and was able to steal the equation and battle evenly with the then merged Source, finally trapping it. Superman went on to find where Darkseid had hidden the souls of the New Gods, and released them so the Source broke free and defeated Darkseid, then declaring it time on this plane of existence was over.

    Powers and Abilities

    Original

    The Source originally is fully omnipresent, omniscient, and nigh omnipotent. Considered by some to be the 'Buddha' of DC, because it represents a shared cosmic consciousness in the DC Comics multiverse. It's power is far beyond even beings such as Lucifer Morningstar and Michael Demiurgos. Once The Lightbringer entered its realm the Source Wall without even acknowledging The Source, but The Source's omniscience made it not interfere as it know the consequences.

    Death of New Gods

    The Death of New Gods version is weaker. Also, in that series the Anti Life is not an equation, but an entity, the dark side of the Source. It has cosmic awareness, and unlimited power capable of destroying entire universes with ease.

    While investigating the death of the New Gods, Metron encountered the Anti Life Entity, and he cried because he felt the Entity's infinite power; \"I can feel the limitless power that is the entity. I now see what a God truly is. I've never felt so insignificant. Next to this deity, I am nothing\". Darkseid described it as; \"Call it death. Call it Anti-Life. It is beyond imagining. It is the complete unknown. It is fear.\"

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11260/","id":11260,"name":"Orion Fights for Earth!","issue_number":"1"},"id":48870,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/149810/3812065-kylesourceoperatingcode.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/149810/3812065-kylesourceoperatingcode.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/149810/3812065-kylesourceoperatingcode.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/149810/3812065-kylesourceoperatingcode.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/149810/3812065-kylesourceoperatingcode.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/149810/3812065-kylesourceoperatingcode.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/149810/3812065-kylesourceoperatingcode.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/149810/3812065-kylesourceoperatingcode.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/149810/3812065-kylesourceoperatingcode.jpg","image_tags":"All Images"},"name":"The Source","site_detail_url":"https://comicvine.gamespot.com/the-source/4015-48870/","start_year":"1971"},{"aliases":"Omega Beams","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-48937/","count_of_isssue_appearances":75,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-03-17 01:25:47","deck":"One of Darkseid's deadliest weapons, the Omega Effect is capable of annihilating virtually anything in the path of its beams. It also has a variety of other abilities.","description":"

    The Omega Effect is a strange force of entropy, perhaps a destructive side to the often creative nature of the Source.

    It is Darkseid's possession of the Omega Effect that allows him to fire his Omega Beams from his eyes. These beams are capable of vaporizing, erasing, as energy blasts/energy beams or transmuting any form of matter, living or non-living. They can send/retrieve something from different places, times, dimensions, and even universes.

    Darkseid uses his Omega Beam to send Batman back in time at the climax of Final Crisis. From there Batman had to journey through time in order to get back home to his own time period.

    It is practically impossible to avoid, dodge or deflect Darkseid's Omega Beams, as the beams are able to make sharp turns around obstacles and few can withstand a direct hit from them.

    Two of Darkseid's children, Grayven and Grail inherited a portion of the Omega Effect

    In Other Media

    Justice League Unlimited

    As Darkseid comments in the Justice League Unlimited TV series, Batman is the first and only human to dodge his Omega Beams (seen in the final season).

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11821/","id":11821,"name":"The Omega Effect!","issue_number":"6"},"id":48937,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/1331431-darkseid.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/1331431-darkseid.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/1331431-darkseid.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/1331431-darkseid.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/1331431-darkseid.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/1331431-darkseid.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/1331431-darkseid.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/1331431-darkseid.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/1331431-darkseid.jpg","image_tags":"All Images"},"name":"Omega Effect","site_detail_url":"https://comicvine.gamespot.com/omega-effect/4015-48937/","start_year":"1972"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49312/","count_of_isssue_appearances":32107,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-12-10 17:20:15","deck":"An anthology is a type of comic book containing a range of stories featuring different characters and situations. Famous anthology titles include 2000AD and Topolino.","description":"

    What is an Anthology?

    Dictionary definition:

    Noun anthology (plural anthologies)

    1. A collection of literary works, such as poems or short stories.
    2. ( by extension ) An assortment of things.

    But in the comic book world it is basically a comic with more than one (usually around five for standard American comics) stories inside the issue, usually revolving around completely different characters and ideas but all conglomerated together so that a standard comic book size can be used. One of the purposes of an anthology is try out characters and determine (based on reader feedback) which ones are popular enough to host their own series. Many of the most famous comic book characters first appeared in an anthology; until the mid-60s, most of DC and Marvel's top-selling comics were anthologies.

    Though anthologies fell out of fashion in American comics, they are still quite common in Europe and Asia. Generally, all of the comic volumes with the most published issues are anthologies due to the fact that a long-running anthology is made up of the individual works of hundreds of writers and artists and the volume can easily outlast all of its original contributors, several generations over. In Japan, the best-selling magazines overall tend to be manga anthologies and historically the most popular have sold millions of copies (virtually all Japanese manga is first published in anthology form before being collected).

    The largest comic anthologies can have over twenty ongoing series and some of the largest are over 1000 pages per issue.

    List of Noteworthy Characters who First Appeared in Anthologies

    EC

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-894984/","id":894984,"name":null,"issue_number":"3"},"id":49312,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/656192-2000_ad.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/656192-2000_ad.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/656192-2000_ad.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/656192-2000_ad.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/656192-2000_ad.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/656192-2000_ad.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/656192-2000_ad.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/656192-2000_ad.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/656192-2000_ad.jpg","image_tags":"All Images,Anthologies"},"name":"Anthology","site_detail_url":"https://comicvine.gamespot.com/anthology/4015-49312/","start_year":"1896"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49473/","count_of_isssue_appearances":36,"date_added":"2008-06-06 11:27:52","date_last_updated":"2012-10-17 04:47:57","deck":"M-Tech was a Marvel imprint that spun-off from the X-men arc, \"Rage Against the Machine.\" The titles focused on hi-tech heroes and consisted of three unrelated books: Warlock, X-51, and Deathlok.","description":"

    Brief Publishing History

    The M-Tech Marvel event started out in the X-men titles and soon afterwards was fully launched with three new different titles. The first series was X-51, starring the Machine Man in his second ongoing series. The second series was Deathlok featuring a new Deathlok war-machine.

    The third series featured Warlock, the revived New Mutant, though with a bit of a different appearance.

    All the comic-series where new and heavily promoted, but they failed to catch on and were, unfortunately, all cancelled in a year or so.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-65790/","id":65790,"name":"Plague of Evil","issue_number":"91"},"id":49473,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4690/258774-152731-m-tech.GIF","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4690/258774-152731-m-tech.GIF","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4690/258774-152731-m-tech.GIF","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4690/258774-152731-m-tech.GIF","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4690/258774-152731-m-tech.GIF","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4690/258774-152731-m-tech.GIF","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4690/258774-152731-m-tech.GIF","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4690/258774-152731-m-tech.GIF","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4690/258774-152731-m-tech.GIF","image_tags":"All Images,The M-Tech Titles"},"name":"M-Tech","site_detail_url":"https://comicvine.gamespot.com/m-tech/4015-49473/","start_year":"1999"},{"aliases":"Earth-93060","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49479/","count_of_isssue_appearances":514,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-08-17 09:08:39","deck":"The Ultraverse is the shared universe of the characters of Malibu Comics, originally known as the Megaverse. Super-powered characters were known as Ultras.","description":"

    The Ultraverse was the default setting of Malibu Comics' major series, a world in which a mysterious Entity on the Moon (the core of a crashed interdimensional spacecraft) sent outbursts of energy called the \"Jumpstart\" effect, which gave certain people superhuman powers. These beings came to be known as Ultras, the most popular and well-known of which was Ultraforce. The other sources of superpowers in the Ultraverse were magic, the nanotech \"wetware\" developed by the hidden civilization of the underground-dwelling Fire People, or simply from being an alien from another planet or universe. Scientific analysis of these Ultras allowed some of these aspects to be artificially copied or genetically spliced into various human beings.

    Behind the Scenes

    The Ultraverse was fairly successful at first, even producing a short-lived Ultraforce cartoon TV series. But when Marvel Comics bought out Malibu, the Ultraverse was radically redesigned. In the event that would come to be known as \"Black September\" (or B.S., to most fans) the entire continuity was rebooted. Some characters were changed or retconned out of existence, many series were canceled, and (big surprise) heroes visiting from the Marvel Universe came to dominate the remaining books. After a year and a half of this situation, Marvel finally closed down the whole company.

    The Marvel Multiverse earth designation is Earth-93060.

    Possible Revival

    Steve Eagleheart was commissioned to revive the Ultraverse with the title \"The Strangers\" around 2003. However, nothing came from it.

    Another possible revival of the Ultraverse and their characters has been repeatedly denied by Marvel executives. Joe Quesada explained in an interview from 2004 that the initial structure of the deal made \"next to impossible to go back and publish these books\".

    Other Media

    Despite its short existence, the Ultraverse had two properties adapted to other media

    Ultraforce (Animated Series, 1994-1995 )

    A short-lived Ultraforce animated television series that ran for 13 episodes, it was based on the first version of the Ultraforce comic book, produced by DIC Productions, L.P., and Bohbot Entertainment. The cartoon featured the roster of Prime, Hardcase, Prototype, Topaz, Ghoul, Contrary, and Pixx, with appearances of the Night Man and the Strangers.

    Night Man (Live-action Series, 1997-1999)

    Adapted from the Ultraverse character, the syndicated series produced by Glen A. Larson had 2 seasons and 44 episodes. Three episodes were written by the character creator, Steve Englehart, and guest appearances by David Hasselhoff, Little Richard, and Donald Trump.

    Lionsgate Entertainment released a complete series DVD in 2018. To a bigger sales impact, the box is promoted as a Marvel property, even when the whole concept was based on Malibu Comics property.

    Merchandising

    There was also an Ultraforce action figure line produced by Galoob. The line included a basic series with the versions of the members of the animated show and a subseries called Ultra 5000 that included alternates suits of several members and enemies.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-907951/","id":907951,"name":null,"issue_number":"1"},"id":49479,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/258445-174547-ultraverse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/258445-174547-ultraverse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/258445-174547-ultraverse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/258445-174547-ultraverse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/258445-174547-ultraverse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/258445-174547-ultraverse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/258445-174547-ultraverse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/258445-174547-ultraverse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/258445-174547-ultraverse.jpg","image_tags":"All Images,Ultraverse"},"name":"Ultraverse","site_detail_url":"https://comicvine.gamespot.com/ultraverse/4015-49479/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49604/","count_of_isssue_appearances":255,"date_added":"2008-06-06 11:27:52","date_last_updated":"2015-06-13 17:52:53","deck":"The Kirkmanverse includes all the Image characters created by Robert Kirkman plus characters from the Larsenverse (Erik Larsen's Savage Dragon world) and Shadowhawk books.","description":"

    The Origin

    The entire Kirkmanverse was created by Robert Kirkman. Although most believe his book Invincible started the universe it was actually Tech Jacket. The Kirkmanverse is primarily composed of heroes who have appeared in books he has written under Image. In addition to this Kirkman has added characters from other Image titles like Shadowhawk and Savage Dragon and all his surrounding characters. Today even books he does not write, such as the past Brit series, are included in Kirkmanverse continuity.

    Appearances

    There is some dispute as to who actually is in the Kirkmanverse. Even if Invincible appears in another character's book, that character isn't it the universe unless he or she has actually appeared in one of Kirkman's book. An example would be Invincible's cameo appearance in Dynamo 5. And in an even more complicated note, even if characters have appeared in books of heroes who appeared in the Kirkmanverse they aren't necessarily in the universe.

    Titles

    A list of all of the confirmed titles that are in the Kirkmanverse.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-133284/","id":133284,"name":"Tech Jacket","issue_number":"1"},"id":49604,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4690/263459-174673-kirkmanverse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4690/263459-174673-kirkmanverse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4690/263459-174673-kirkmanverse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4690/263459-174673-kirkmanverse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4690/263459-174673-kirkmanverse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4690/263459-174673-kirkmanverse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4690/263459-174673-kirkmanverse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4690/263459-174673-kirkmanverse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4690/263459-174673-kirkmanverse.jpg","image_tags":"All Images,Kirkman's characters."},"name":"Kirkmanverse","site_detail_url":"https://comicvine.gamespot.com/kirkmanverse/4015-49604/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49870/","count_of_isssue_appearances":4133,"date_added":"2008-06-06 11:27:52","date_last_updated":"2019-04-24 13:24:55","deck":"Superpowers are abilities uncommon to the average human. There are many different types of superpowers though most are physical, mental, technological, or mystical. Powers can be inherited from parents, bestowed by a higher power, acquired by exposure to an outside force or passed to them by others.","description":"

    Please do not add this concept to issues or associate it to characters.

    Means and Methods

    Mutation/Metahuman

    \"X-Men,
    X-Men, Marvel's premiers mutant team

    The majority of superheroes gain their powers from this method, as it refers to manifesting abilities based on either an event that caused it, your genetic code or even some other way that your body evolved into being bestowed superpowers. The most commonly thought of mutants are the X-Men and almost every other character involved in their stories, as the entire Homo Superior race are mutants. Another team of mutants are the Fantastic Four, even though they received there powers from cosmic radiation and are often referred to as mutates. They are mutants in the fact that they have been mutated, however it must be made clear that they are not a part of the Homo Superior race. Another group that is considered to be in the same condition except they received their powers from gamma radiation rather than cosmic are the Gamma Corps and all the mutates their DNA is based off of, mainly the Hulk. The Inhumans would also fall under this list as they receive their superpowers from the Terrigen Mists as well as their special genetic makeup.

    An honorable mention to this array of mutants is Marvel's flagship character, Spider-Man who was mutated by the bite of a radioactive spider, allowing him to take on the creature's capabilities. As for the DC Universe, one of the actually referred to as being a mutant is Captain Comet whose latent mutancy was activated by a passing comet...100,000 years before his time. Another prominent mutant is Superman whose mutancy is caused partially because of the genetic physiology of a Kryptonian as well as the effects of the Earth's yellow sun.

    Objects

    \"The
    The Powerful Green Power Ring of the Green Lantern Corps

    Many heroes are also human, or at least considered weaker than average, and for that reason they possess artifacts (either mystical in nature or quite ordinary) that can be both technological or magical. They are used to augment one's powers and can be used as formidable weapons. One of the most famous heroes who uses an object to gain all of his powers is Iron Man who uses various armors he has created. However an object can also be used to augment preexisting powers such as Cerebro is, in the case of the already formidable Professor X. Professor X half brother Cainalso known as the Juggernaut possess an item which gives him the powers of the Juggernaut. The object is known as the Crimson Gem of Cyttorak. This gem varies from different places and origins but in order to wield its power you must read an incantation on the gem itself.

    \"Cosmic
    Cosmic Staff

    Other objects such as the Infinity Gems can give their wielder unimaginable power, whether those that use them have any superpowers or not. Sometimes an entire team of super humans, the Exemplars for example, are composed of those who are bestowed with powers thanks to mystical artifacts. Others wield objects that are not necessarily needed yet have become a symbol, such as Captain America's Shield. Other times it is the object that chooses the user, such as the rings of the Green Lantern Corps, Star Sapphire and all other similar teams in the DC Universe. Wonder Woman is another hero whose weapons symbolize her, the Lasso of Truth, Tiara and her Bracelets. Hawkgirl also is another hero that has a mace of Nth metal found on her planet that has the ability to give electrical charges, hurt magical items, people or things, and is also very rare and in certain phases can be highly dangerous. Also, on a rare occasion, an object can be such a thing as the Emerald Eye of Ekron in which the object is actually a portion of someone's being even though its wielded by another. Other universes besides Marvel and DC use objects to power their main characters including Dark Horse.

    In the Star Wars comics, the lightsaber is a mighty weapon that is original for every wielder but is used by both the Jedi and the Sith. Yet the lightsaber, though it supplies its wielder with superpowers, can only be used properly by those who have a connection with The Force, a superpower in and of itself. In Top Cow, a mystical artifact known as the Witchblade has survived for countless years, being wielded by generations of women, the most prominent being Sara Pezzini.

    Divinity

    \"The
    The Godly Galactus

    Those who possess superpowers yet are neither doing this through technological means or mutations are usually cosmic beings or those who have received their powers from these divine beings. The basic ones are the five siblings that represent the universe Infinity, Oblivion, Eternity, Death and Galactus. Another group of divine beings is the Octessence comprised of the eight beings who would grant their power to the Exemplars through mystical artifacts. These beings usually recruit others to serve them, some of their more famous heralds or servants include Thanos, Doorman and the Silver Surfer. Also, the one \"mortal\" who was promised he would witness the End of the Universe also falls into this category, Mr. Immortal. On the DC side of the spectrum the biggest groups would be the Wonder Family, Wonder Woman, Donna Troy and Wonder Girl, Wonder Woman's powers are drawn from the blessings of the Gods of Olympus, although Wonder Woman's powers are as a result of her birth, Donna Troy's are blessings from the Titans of Myth and Wonder Girl is result of being the daughter of Zeus. And the other biggest group would be the Marvel Family, the champions of Shazam.

    Yet, two of the most powerful entities are both connected to God. The Phantom Stranger who is believed to be repaying God for his transgressions. The other is considered to be one of the mightiest wielders of magic in the Universe, the Spectre. The demonic powers of Mephisto depend very much on his location as even though he is at full power in Hell, his powers wane if he is absent from his throne for too long.

    Magic

    One way in which one uses superpowers, or is able to display them is through the use of magic. This includes the ability to control or influence the natural world including events, objects, people, and physical phenomena through mystical, paranormal or supernatural means. A variety of beings practice magic, and they are different types allowing different effects. Doctor Strange for example has received such powers longevity, the ability to hypnotize, necromancy, levitation, illusion casting and telepathy from his mastery of the mystic arts. Illyana Rasputin is capable of sensing mysticism and of performing astral projection thanks to her sorcery. Doctor Doom is also a powerful magic user and can create constructs from energy, however he had decided to replicate most of his magical abilities with technology.

    \"Doctor
    Doctor Strange: The Sorcerer Supreme

    Amanda Sefton's magical abilities allow her to teleport, cast illusions and a multitude of other things. The magic of the Scarlet Witch coupled with her insanity has caused her to manipulate reality on occasion. In the DC Universe there exists a race known as Homo Magi, one of the most prominent members of this race is Zatanna whose magic is capable of performing any feat. Another renown magic wielder is the anti-hero Black Adam whose connection with the Rock of Eternity allows him to possess the powers of the gods. Wonder Woman is another hero whose magic weapons symbolize her, they are often what people think of, as they are all a part of her attire, including her the Lasso of Truth, Tiara and her Bracelets are all magic based blessings of the Gods of Olympus. Donna Troy and Wonder Girl, use magic based items as well.

    There are also teams of magic users such as Shadowpact, a team of heroes who fight the supernatural. Then there are the supernatural themselves such as Demon and Zauriel whose magic knows no bounds. Another team of nigh-omnipotent magicians and sorcerers is the Sentinels of Magic, a team that fights for justice. One of the great magic users of the DC Universe is Doctor Fate who is powered by the mystical Helmet of Nabu, which allows him to do nearly limitless wonders. Raven is half-demon which is why she possesses magical powers that allow her to perform telepathy, telekinesis, astral projection and concussive blasts.

    Manipulation of Superhuman Attributes

    Power Duplication

    \"Mimic:
    Mimic: The Ultimate Power Mimicker

    The ability to duplicate another's power is usually limited to a certain amount of individuals such as in the case of Mimic who can only take on the power of five individuals in his vicinity, however in his case though he can duplicate another's power, he can only use half of their power and unlike many others the powers mimicked permanently remain with him. Others such as Synch have the power to \"synch\" with another, allowing him to gain all their full capabilities. This means that even though Chamber did not know he could fly using his powers, Synch used the powers to their full potential and found that he could. Then others like Mr. Sinister use genetics so that they can extract DNA of a superhuman individual and can use it to bestow powers upon both himself and others.

    Others with similar abilities include Pandemic who devised a serum that has granted him the ability to manifest the abilities of any mutant he has ever come into contact with. Amazo, the android, has at times had himself hardwired so that he can copy the abilities of any source near to him, the amount of those he could was never specified and was seemingly limitless. Serafina uses technology to connect herself to both technological and biological entities, allowing her to take on the capabilities of meta humans she connects with. Gideon, an immortal had the ability to take on the attributes of anyone in his vicinity, making him a very deadly threat as years had helped him hone his ability. Rogue can also \"duplicate\" a power through the sense of touch, if her skin comes into contact with that of another she absorbs their skills, sometimes permanently other times temporarily, the drawback is this touch also harms the one who she touches.

    Black Alice is a mystic who has the power to steal the mystical capabilities of anyone she chooses, leaving them powerless, however unless she can see them, the power will choose a random target. A power mimicker named Peter Petrelli is far more powerful than many others with similar powers to him. His use of other's superpowers is called empathic power mimicry as he can use the power of anyone he has ever met if he remembers how they made him feel. This allows him to be capable of doing almost anything since he has met many super powered individuals in his lifetime.

    Power Negation

    \"Leech\"
    Leech

    Scarlet Witch did this when she caused M-Day, she stripped countless mutants of their genetic code that enabled them to manifest superpowers. Another individual who can negate powers is Leech , a mutant, he can suppress his own ability but it will cause all superhumans around him to become ordinary, a power which allowed him to transform one of the most powerful beings alive, Mr. M by touching him, causing him to be an ordinary human.

    Scrambler has the ability to manipulate the superhuman powers of other mutants, allowing him to make it so they can no longer be used. Pulse can disrupt superpowers so that for a time they cannot be utilized.

    Power Boost and Modification

    \"Sage
    Sage can awaken latent mutant abilities

    The ability to enhance the superpowers of another being, by making them more powerful, either by so much that their powers go out of control or they simply became stronger and more adept at using their powers. Modification is the ability to alter one's power including creating new powers. After M-Day Quicksilver traveled throughout the mutant community and by supplying them, and himself, with the Terrigen Mists they found their powers increasing to such magnitudes that most found they could no longer control them, however in time the powers faded once again. Dark Phoenix can, at least temporarily, increase the superhuman capabilities of someone to exponential levels.

    Mr. M can manipulate the genetics of any being allowing him to nearly anything, including regrowing Lorelei's prehensile hair. Cyttorak can also boost one's power levels thanks to mysticism, the Crimson Crystal of Cyttorak can increase the power of whoever holds it. Then there's Sage who can either boost one's power level, grant them new powers they did not realize they possessed or triggering latent mutancy. Apocalypse, whose mantra is \"survival of the fittest\" uses the technology of the Celestials to make superhumans \"the fittest\". He can both increase their powers, have them used in different ways or grant powers where there was none as he did with Polaris. It is these modifications that have birthed one of the mightiest forces in the Marvel Universe, the Horsemen of Apocalypse. Synergy from the Wildstorm Universe was capable of making ordinary humans into metahumans by granting them superpowers.

    Power Sensing

    \"Caliban:
    Caliban: Power Sensor

    The ability to find or recognize those who have superhuman capabilities, this can allow them to both track meta humans and sometimes know their full capabilities. Caliban is known as being a great tracker because of the fact that his mutant DNA allows him to sense other mutants within the area, precisely enough that he can know where they are. An often used method of sensing mutants is using Cerebro, a device that only the most powerful telepaths can use, many have used it to find mutants including Emma Frost, Professor X, Jean Grey, Marvel Girl, Psylocke and Mr. Sinister. Cerebro recently went through a change after being destroyed, and is now known as Cerebra, and is still used by the X-Men but is said to be much more powerful than it's former brother.

    Physical Power

    Accelerated Healing

    \"Lobo:
    Lobo: Reborn from a pool of blood

    This is an ability that means one has a Healing Factor that will allow them to heal from various levels of injuries at various speeds. This can be from immortality all the way down to merely being able to heal from a cut at twice the speed of a normal human. Healing also can mean that it takes one longer to age, gives them immunity to disease and poisons as well as easier capabilities to survive extreme heat and cold. Wolverine is one of the most famed healers, mostly because of the fact that these abilities have allowed him to survive for centuries and combined with his adamantium nearly make him immortal. Other copies of Wolverine such as Cyber and X-23 are both not as strong as Wolverine in terms of their Healing Factor. Cyber has lived with heart problems for his entire life, and has a Healing Factor that cannot readily heal internal organs, unlike Logan's.

    X-23 however is expected to one day be as powerful as Wolverine as she is his clone, this means that she too may likely live for centuries. Some of the most powerful powerhouses in the Marvel Universe, Juggernaut and the Hulk, have both been at one point reduced to a mere skeleton...yet they retained no injuries and healed in almost no time at all. Then there is Deadpool who was healed when manifesting his Healing Factor, but also permanently disfigured. Also there is Icarus and Angel who are believed to be members of the Cheyarafim, meaning they have healing blood that will keep them alive...as long as their wings remain a part of their body. Finally, as another representative of the Marvel Universe there is the multiple-powered Mr. Sinister who has been shown as being capable of healing from Cyclops' optic blasts.

    Godzilla, a monster meant to represent man's mistakes, has special cells that heal so fast that it is nearly impossible to harm let alone kill him. In the Heroes comics, Peter Petrelli, has healed from death on multiple occasions. However, he received this power from Claire Bennet who is able to regenerate lost body parts and can heal from any injury that she has, as of yet, received...including death. As for the DC Universe, the most renown being with the ability to heal is Lobo whose healing is unneeded since he is immortal, yet it still provides him with the ability to perform some astounding feats.

    Acid Generation

    \"Acid
    Acid Spit

    Acid Generation is the ability to produce and release acid, through various forms such as sweat or even in different states of matter such as a gas or a liquid. Some even possess an acidic spit that can be sent across far distances, the acid is special in the fact that it usually causes great harm, to nearly every substance. This is a rare power and yet oddly enough, one single (short-lived) team had two members with this power, it was X-Statix. However that team was comprised of misfits and the like, which hints at the fact that this is a seemingly unwanted ability.

    One of the two was the team's leader, Anarchist, whose power was acidic sweat. His teammate, Zeitgeist also was unfortunately burdened with this superpower. So he found himself able to spew an acid from his mouth, that could allegedly allow him to eat anything he desired, as it would break down the materials. The Man-Thing also possesses this ability however it is acids that are secreted from his body and can cause intense burns.

    Animal Mimicry

    \"Vixen:
    Vixen: One With Nature

    Animal Man is the prime example of someone who bears this power, as he can take on the abilities of any animal on Earth thanks to an object from the depths of space. Vixen also can mimic animals, as she wears a mystical Tantu Totem which grants her the ability to take on the characteristics of any animal. Though this ability usually allows its \"bearer\" to have all the powers of everyone else it takes away from specialization and so even though they have all the individual powers they are not gifted with such levels of power as super-beings like Superman.

    Enhanced Physical Attributes

    Are basically enhanced physical condition, like enhanced strength,speed, durability,agility,and reflexes.Its basically above peak human conditions. Physical enchantments can either be above peak human condition, or it can reach superhuman levels.

    A great example will be Captain America, Bane, and Green Goblin. The user can increase there physical condition through chemicals,serums,and implants. The user can obtain other powers like accelerated healing factor.

    Biological Manipulation

    \"Elixir:
    Elixir: Healer or Killer?

    This is defined as the ability to manipulate life itself, through a nearly limitless amount of effects though the basics of the power is just altering one's DNA. The power also varies in levels of strength and control quite extensively. Some of the countless feats that can be performed with this power include being able to physically change the appearance of someone you touch such as creating defects (like extra digits) or even changing colors of skin, hair and eyes. To manipulate life also means to sustain it such as healing others with your touch, either from a small cut or even a removal of the heart. Things that would not naturally heal can also be cured (or bestowed) such as diseases or mental illnesses. The power can also be reversed as to manipulating life to the extent that it brings about death.

    Sersi is renown amongst the Eternals as being the most-skilled manipulator of matter, this includes both organic and inorganic matter meaning she can rearrange it on a whim. The High Evolutionary can manipulate life in the sense that his powers allow him to both evolve and devolve life around himself. Using the technologies of the Celestials, Apocalypse often manipulates the DNA of mutants to make them more powerful often augmenting their strength to exponential levels. Mr. Sinister is also able to manipulate DNA and though he is considered one of the greatest he can not do it with a touch, rather he needs technology, he simply has the knowledge of how to perform the feat.

    Mr. M is an Omega-level mutant specializing in matter and energy manipulation, which means he can literally do anything he imagines...including changing DNA structure and function. Elixir is also an Omega-level mutant except his power is a specialty in manipulation of the DNA and with the knowledge he has he is capable of bringing death or life with but a single touch. In the DC Universe such a power is less common but the Titan Raven has the ability to heal other's wounds by absorbing their pain, allowing them to heal.

    Body Part Substitution

    \"Terror
    Terror Inc: The Regenerating Man

    Terror Inc , also gains all the memories and knowledge of whose body part he has taken. However, his power is more of a need than a desire as his body constantly decays and he needs to replace its parts with other being's. He is able to do this thanks to the natural secretion of chemicals his body performs so that he can take the body parts of his victims easier, breaking down their body to get at the desired part.

    Bone Manipulation

    \"Marrow:
    Marrow: The Bone Manipulator

    This is the ability to manipulate the bones in one's own body through a form personal biological manipulation of the bone structure. This includes, but is not limited to, the generation of new bone mass to replenish ones that are projected out from the skin. This projection is usually in the form razor sharp projectiles capable of doing an extent of damage or even as bones which can be used as blunt weapons such as plates or spikes and even more complicated forms. It also can allow the rearrangement of one's own bones and makes the bearer of this power stronger due to the fact that their bones can become much denser than normal humans and heal faster as well as form a personal armor around the user to protect them from harm. Kimimaro is a prime example of bone manipulation as he has utter control of his entire skeletal structure. He is capable of removing bones from his body and within seconds the skin that was torn is healed and a new bone takes its place. He can then use these bones as weapons most commonly by firing them from his hands.

    Spyke from the X-Men Evolution comics has the power to control his bones as well, from forming protective bone plates around himself or even lighting his own bones on fire. However, two drawbacks include that he can never fully retract a projected bone and he needs to regain all the calcium he loses when using this power. Bling! is capable of a \"one-of-a-kind\" type of bone manipulation in which her bone marrow produces a crystalline substance that coats her body, making it more durable, this substance can also be projected at high velocities.

    Quill is also capable of projecting or extending spikes from his body, however these spikes seem to simply be attached to his body rather than a part of it. Marrow is perhaps the most thought of example of someone who can manipulate bones, even though originally she could not control this power, it has allowed her to become almost immune to harm yet at the same time have an amazing healing factor. An oddity with Marrow is that she possessed two hearts to make up for her extremely peculiar bone growth. Absalom, one of the immortal mutants, was capable of growing razor-sharp bone spines that protrude from his skin.

    Duplication

    \"Madrox:
    Madrox: The Multiplying Man

    This refers to the ability of creating duplicates of oneself (usually tangible but not always), though sometimes these duplicates are free-thinking beings, other times they work with their \"creator\". A common theme among those who can duplicate is that they can reabsorb their duplicates and with them all their memories and skills. Also, in most cases at least, when a duplicate is harmed or killed, the original being is left unscathed from the event. Damian Tryp is a mysterious man who possesses various abilities, one of which is to duplicate, however he capable of temporal duplication, as in bringing past and future selves throughout the time stream. This act is referred to as temporal duplication because it is creating duplicates of oneself through chronokinesis, or the manipulation of tempus/time. In the far-off future of the DC Universe, Triplicate Girl, a member of the Legion of Super-Heroes has the ability to create two clones of herself with whom she can assimilate herself as to gain their abilities and knowledge.

    Angela Spica, the Engineer, is capable of using the nanotechnology that grants her superhuman abilities to make copies of herself. Bart Allen has a unique ability granted by the Speed Force that only he possesses of the four Flashes. And that is with the Speed Force he can create clones of himself, however, the death of one nearly killed Bart so he refrained from using the power again before his death. In the world of Naruto, the focal character Naruto as well as almost any other character is capable of creating 'shadow clones' which are seemingly tangible reflections of oneself. They seem to be real but if they come into physical contact with someone/something that intends to destroy them they are hit and become smoke.

    Naruto was originally considered a failure because he could not do the Shadow Clone Technique but eventually he became a master of it and was renown for his skills in using it. Madrox, the Multiple Man, is the child of \"unknown origins\" who gains a duplicate every time kinetic energy is released upon his body. He is unable to control these duplicates, however he can reabsorb them and retain all their memories and skills. He is able to have his duplicates killed without he himself being harmed, the only side effect is then he cannot absorb a dead duplicate.

    Echolocation

    \"Daredevil:
    Daredevil: The Man Without Fear

    Echolocation, sometimes referred to as a sonar or radar sense, is one of the few superpowers that has actually been achieved in the real world by living organisms, however those organisms are not human, rather they are bats. Echolocation is basically sound waves hitting objects and being sent back to someone or something that can sense the differentiations so clearly that it will allow them to see objects as clear as if there were no interference. Very few possess this power and the two well-known users are about as different as could possibly be imagined. The more popular of the two, Marvel's Daredevil is utterly blind and so echolocation has replaced his sight and thus made it better. He must have sound, but unlike a bat the sound can come from anywhere in his vicinity. The other individual is from DC Comics and is known as the Man-Bat who is like a man/bat hybrid. This granted him the gift of echolocation that a normal bat possesses and allows him to emit sound waves that compliment his sight.

    Invisibility

    \"The
    The Female Member of the Fantastic Four, Invisible Woman

    The ability to render the user unseen from the casual observer though different types of invisibility will mask different energy signatures. The power of invisibility can be granted through many means and can have many different levels, despite the idea that all invisibles are the same. The power is commonly just a side ability amongst the most powerful of beings, however it usually only reaches its true potential in those who have it as their only power. Black Widow a Golden Age villainess was granted numerous powers by Satan, one of which was invisibility. Another way for one to receive the power of invisibility is to be born with it, the Martian Manhunter is from a race of Green Martians that all possess powers that would make them seem omnipotent to the general populace of Earth, and one of those powers is invisibility. Miss Martian, though of a different race than J'onn as she is a White Martian, still possesses all of his abilities.

    Gentleman Ghost, the spirit of a highway man from more than a century ago, he uses his powers of invisibility and intangibility to wreak havoc in the DC Universe. Deadman, another incorporeal spirit in the DC Universe also has the powers of invisibility and intangibility, however he fights for justice. Then there is Aztek, a man trained for a single purpose...to destroy one of the most powerful super weapons ever conceived, to perform this feat he was given a variety of powers including invisibility. Blackheart, the nigh-omnipotent son of Mephistopheles is another one of those \"superior beings\" that can become invisible at will. A vampiric-like mutant called Emplate can also become \"invisible\" as he can shift through dimensions, allowing him to walk in ours without actually being a part of it and thus unseen.

    Peter Petrelli, a young man with the ability of empathic power mimicry was trained to use his powers by \"Claude Rains the Invisible Man\" and as such he himself became very skilled in making himself and things around him invisible. Originating in the Teen Titans animated series, Red X possesses a power suit that can allow him to cloak himself, becoming invisible. Violet Parr, a character created for the movie The Incredibles, possesses both invisibility and the power to create energy shields, a combination of powers that make it clear she was based off of Invisible Girl.

    Another invisibility \"copycat\" is Super-Skrull who was genetically changed so that he possessed the powers of all the Fantastic Four including Invisible Woman. Then of course there is the most famed invisible, Invisible Woman herself. Like mentioned as Violet's powers, Susan Storm can become invisible by bending rays of light around herself and can also make energy fields that cannot be penetrated though enough force can cause her to no longer be able to keep them up.

    Invulnerability

    \"The
    The Invulnerable Colossus

    Invulnerability is the power Ability to withstand various forms or strengths of physical damage or injury though usually there is still limits. The Thing is an example of a super being whose appearance must suffer for them to possess a superpower as it is Ben Grimm's rock-like skin that will allow him to remain uninjured even when shot at by armor piercing rounds. Captain Marvel can withstand vast amounts of physical force thanks to the powers granted to him by Shazam, specifically his Stamina of Atlas. Thanos like all Eternals, possesses superhuman durability but of course that is the least of his powers.

    She-Hulk, the female variation of her well- known cousin The Hulk, Jennifer Walters gains superhuman durability whenever she goes into her She-Hulk form. Wonder Woman and Wonder Girl have a very high level of invulnerability, but is vulnerable to projectiles (such as bullets) forcing her to use her bracelets to deflect them if she wishes not to suffer harm. Like all Kryptonians, when in the presence of Earth's yellow sun, Superman and Supergirl gain a variety of powers including an invulnerability that can easily withstand gunfire. Sentry, one of the most powerful beings in the Marvel Universe is another example of an \"omnipotent hero\" that can seemingly never be harmed thanks to his invulnerability.

    The armored Colossus gains invulnerability from the nigh-impenetrable armor his mutancy allows him to create so that he can protect himself from harm. Darkseid, one of the mightiest specimens of the New Gods race, he has an invulnerability on par with Superman. Mr. Majestic is also a being of true power, who possesses a high level of invulnerability, but even if he is injured his regenerative healing will soon restore himself.

    The Hulk, has an invulnerability that may be different in itself from the majority of other beings with superpowers. As he has an incredibly powerful healing factor that has restored him from a skeleton in mere seconds, so it has been assumed that his invulnerability is actually a healing factor so fast that it deceives the eye to think he was never injured. Juggernaut however is the epitome of invulnerability, bestowed with Cyttorak's power he can put up a force field that is nigh-impenetrable and only the strongest of magics can get through, however all harm that is taken upon himself is healed instantaneously.

    Thanks to the stamina of Shu, Black Adam is almost utterly invulnerable, enough so that swords easily shatter upon his body, most weapons make their users attempts futile, even a special bullet crafted from the Rock of Eternity. The superhuman durability of Gladiator allows him to effortlessly withstand the effects of concussive blasts, high caliber bullets and even the heat of a supernova or the vacuum of space. The durability of Puck has been compared to compressed rubber and allows him to survive explosions and high caliber bullets despite his small size. Superman's invulnerability has changed throughout his many incarnations. Originally nothing less than a bursting shell could pierce his skin, later he became able to fly into the core of the sun and emerge unharmed and though it has weakened since then it is still very powerful.

    The Image character Brit, also posses invulnerability he can withstand being attacked by super powered people and survive, but unlike most character's with this power, he does not poses any super strength. The Saint Of Killers possesses an invulnerability that is perhaps a step beyond any of the aforementioned individuals as he has survived such things as being hit with a nuclear missile in the chest and emerging without a scratch.

    Kinetic Absorption

    \"Sebastian
    Sebastian Shaw: The Black King

    Sometimes referred to as inertia absorption, it is the ability to take in forms of kinetic energy. This energy then becomes a part of the being who usually converts it into superhuman strength, durability and/or growing in size. The energy can be stored within one's body, though for how long this can be done is a variating factor. In Marvel's Ultimate Universe, Lord Apocalypse is a valiant foe and proved his power when cops shot at him with relentless gunfire. As a response, he merely absorbed the energy, enhanced his strength, enhanced his size and made his durability all the stronger. Maelstrom's energy manipulating powers no next to no bounds and with them he is able to absorb kinetic energy (up to magnificent levels) and can transform it into either energy blasts or simply using it to further augment his powers.

    The Growing Man android is immune to physical harm as it will simply absorb any forms of kinetic energy that are directed at itself, though too much power has been shown to damage the android before. This will then cause its cells to replicate at such a speed that the android grows in size, its strength increasing at the same time. Maverick, a member of the Homo Superior race, has the power to absorb and then store kinetic energy into his body taking almost no damage at all. He can then release this energy either in the form of concussive blasts or use it to increase his strength up to ten times its original limit. Strong Guy is X-Factor's strong guy and is super-humanly strong, however if he comes into contact with kinetic energy he will temporarily increase his strength based on the amount of energy.

    However, this strength must then be released within fifty seconds or it will leave him deformed, as his muscles get larger as he gets stronger. This increase of muscle mass also provides more durability and as such makes gunfire harmless to him. Sebastian Shaw is renown for his power to absorb kinetic energy (as well as electrical) and then store it up so that it can build up continuously. His strategies often involve him taking punches or hits so that his reserves will be fully powered and he can then release the energy increasing his strength, speed and stamina to much greater levels.

    Matter Ingestion

    \"Matter-Eater
    Matter-Eater Lad Eating A Fence

    Matter Ingestion refers to possessing the ability to ingest any (or at least many) forms of matter, many that would normally be indigestible, without receiving any repercussions. The most popular of these limited amount of characters is Matter-Eater Lad, he is often considered as having a humorous yet useless power but it proved to be enough to get him membership into the Legion Of Super-Heroes. His powers allow him to eat any material, in any quantity without any need of slowing down whereas a normal human would have to wait for it to digest. Calorie Queen, who is basically a female counterpart of Matter-Eater Lad is also a native of Bismoll and resides in the 31st century.

    She possesses the same abilities as he, as it is inborn in all members of their race. However, she could not join the Legion of Super-Heroes because of such similarities and instead became a member of the Legion of Super-Rejects. In the Marvel Universe, there are also those who possess the ability of matter ingestion, but at a much lower level than their DC counterparts. Freakshow, a young mutant from Genosha, has the power to transform into a variety of different creatures all with different powers. Some of these forms have allowed him to perform feats in eating abnormal substances such as building debris.

    He has also been able to swallow Unus The Untouchable but could not digest him thanks to the impenetrable force field that surrounds his body. Finally, there is Maggott, even though he does not actually possess a digestive system he still can \"eat\" almost anything. Within him live two creatures called Eany and Meany that he releases from his body so that they can find any material to devour. They then return into him, allowing his body to absorb nutrients and keeping him alive.

    Merging

    \"The
    The M Twins: Impersonating M

    The ability to temporarily merge two or more beings into a single being by combining cells of two or more separate beings, which results in transforming into completely new and stronger being than before though not always will the beings gain size or change in appearance although it is common for such a thing to happen. The triplets known as the Kleinstock Brothers were servants of Magneto and though not to much has been completely established about them it is known that the two brothers, Harlan and Sven could merge into a single being, as they are now permanently a single being that simply possesses two upper bodies.

    However, if their brother Eric could merge with them as well was never said as he did on their first mission but it is assumed he could. Then their is one of those peculiarities in the comic book world, B' Wanna Beast, the man who had the ability to create strange creatures with his ability to merge two different animals together, creating a chimera. The Collective Man is made up of five brothers, and when they combine to create the Collective Man, they have many times more power (strength, speed, etc.) than they had as separate beings. When they were first introduced, they only had five times the amount of strength that they normally had (because five of them would merge into one), but soon they learned how to gain more power by picturing the population of China in their head, allowing them to use the population's physical and mental prowess.

    The St. Croix siblings also have the ability to merge into a being or other beings. The M Twins, the youngest of the siblings merged and for a while impersonated their older sister, M, while she had been taken captive by their even older brother, Emplate. While in this state, they gained all of their sisters powers, but it is unknown what powers and abilities they would have, but we have seen the other siblings merge. The Twins and Emplate at one point merged to become the powerful being known as M-Plate.

    Pain Suppression

    Ability to inhibit physical pain at will or to be incapable of feeling pain. Midnighter can turn his pain receptors off whenever he wants. Darkman cannot feel pain because of past experiments performed on him. Holden Carver is impervious to pain. The Challenger has the power to block pain at will.

    Pheromone Manipulation

    \"Spider-Woman,
    Spider-Woman, Pheromone Manipulator

    Ability to generate and control pheromones which may have various effects such as affecting emotional and physical states such as inducing sleep, fear, happiness, pleasure and many more. A New Mutant, Wallflower, had this ability, but she did not know how to control it properly, and when she would feel a strong emotion, it could affect her pheromone powers, and cause her to make the people around her feel the same way, but luckily, when she moved to the Xavier Institute, she was roomed with Renascence, whose mutant power at the time was aerokinesis, so she was able to use this to keep Wallflower's pheromones at bay.

    Sean Garrison, Wallflower's father, also had this ability, but he learned to control it, and used his powers to get what he wanted in life. The alternate versions of these two in the House of M had great control over their powers, and they deployed their powers in various ways: strike fear into people so they couldn't use their powers, use it to make people suicidal and even turn a whole room of people against each other (the two were evil in this alternate reality (well, not completely, but they worked for the government (see their pages for more details))).

    Spider-Woman (Jessica Drew) doesn't deploy her power intentionally, but sometimes during a fight they are released, and they attract males but repulse females. This power was the one that let the New Avengers beat Wrecker, and during this battle, the male members of the New Avengers at the time admitted that they had been attracted to her recently. Spider-Woman uses a special perfume to stop her powers. Beast also has this power, but obviously because he is a male, unlike Spider-Woman he attracts females.

    Before being depowered, the mutant prostitute Ripcord possessed this ability, normally using it to pleasure her clients, but when she joined the X-Men, began using it offensively, using it to make her enemies throw up among other things. The Purple Man releases special pheromones from his skin, and when inhaled by people, he is able to control their minds. He tends to use his powers for evil, an example of this is where he psychologically tortured Jessica Jones but making her watch him rape women and humiliate herself by making her do various things (He didn't sexually abuse her though).

    The Purple Man had gotten one woman pregnant after mind controlling her into marriage and sexually abusing her, and this produced Persuasion, his daughter who has the same power as her father put when she uses her powers on someone their skin turns purple too. Daken can also use the power of pheromones to manipulate others to do his will.

    Photographic Reflexes

    \"Taskmaster\"
    Taskmaster

    Photographic reflexes is the ability to copy a physical movement exactly how the possessor of this power saw it. Normally however, they are not able to copy another superhumans ability, for example, if they saw someone fly, they would not be able to fly. They can only perform moves within their own physical limit. Taskmaster uses this ability to replicate moves of his opponents or superheroes. When Echo was first introduced, she watch several different videos of superheroes performing various moves and copied them.

    She was also seen playing the piano very well, apparently a skill she learned because of her power. Echo's power even extends to the point where she can learn to speak a new language by watching someone speak it (because she is deaf, Echo has to lip read). Monica Dawson has an iPod filled with multiple moves that might come in handy for her to copy, including parkour. Monica's power was dubbed as \"adoptive muscle memory\" by Mohinder Surresh when he examined her.

    Poison Generation

    \"Poison
    Poison Ivy: Seducer of Men and Women Alike

    Ability to assault others with one or more varieties of toxins either through secretion through touch or mental control, with widely disparate effects like drugs or make person ill/die. Poison Ivy manipulates plants and produces a variety of floral poisons and toxins. One of which allows her to manipulate people by making them feel hopelessly attracted to her. Her own blood is toxic. Cobra also possesses certain unusual physical powers do to his mutagenically altered physiology giving him the power to move like a snake. Bliss has another mouth on her tongue, and when this tongue bites someone, it injects them with poison that causes unconsciousness.

    After being transformed by Apocalypse and serving as his Horseman of Death, Gambit had the ability to convert certain materials into poisonous gases. Scorpion is able to emit toxins from her left arm, allowing her to harm her opponents in various ways. Maya Herrera possesses the ability of poison generation, but she releases it in an unusual way. When her ability is activated when she is under high levels of emotional stress/fear, she cries black tears, a symptom that is passed to the victims of her power, with the exception of her twin brother (Alejandro) who is immune to her power and is the only one who is able to reverse the effects of her poison.

    Prehensile Hair

    \"Medusa:
    Medusa: Inhuman

    The ability to animate and lengthen one's hair to carry objects/ people or slash opponents like a whip. Medusa has this ability. Her hair is strong and more resistant yet the same thickness of average hair. She also has a psychokinetic ability to use her hair to move heavy objects to performing delicate operations like picking a lock.

    If she concentrates, she can snap her hair as if it were a whip or rotate it like a fan. She can also bind people and lift more weight than her arms could. Even though her hair has no nerves, she can feel sensations through her psionic field. Lorelei Travis also has this ability, and she usually used it as a part of her exotic dance at the club she previously worked at. Rapunzel used her ability in combat, but also used it to sooth her team mate, the Yeti.

    Reactive Adaptation/Adaptive Evolution

    \"Darwin:
    Darwin: The Evolving Boy

    Ability to develop a resistance or immunity to whatever they were injured by or exposed to physically such as physical injury, fire, drowning, harmful gases and others. This effect can be permanent or temporary depending on the user. Darwin, X-Men member, has honed his ability and is able to use it to do things such as boost his knowledge to learn alien languages among other things. Other things he is able to do, consciously or subconsciously include making his body flame and heat resistant, night vision, become elasticated and transform into pure energy.

    Lifeguard also has this power, usually turning her skin into a gold substance and sprouting wings and even once it allowed her to enter Sage's mind and save her life. Naturally, as a part of his power, Helix's DNA recodes itself, adapting to the outside threats that face him. One of the most well known character's to have this ability is Doomsday. Doomsday was created by a scientist known as Betron on Krypton that purpose was to be able to be able to survive at all cost. Using genes that would survive Betron repeated a cycle over and over endlessly until Doomsday killed all and even his creator Betron.

    Even though his creation killed him Betron succeeded in creating the ultimate monster that is able to be killed and born again to die only the same way once. Regenerating each time he is killed makes Doomsday the ultimate enemy and with his strength able to match the Man of Steel's there is limit of his power.

    Reconstruction/Reconstitution/Reforming

    \"Rockslide
    Rockslide (in lava/magma Limbo form): A Psionic Golem

    The ability to reconstruct/reconstitute/reform one's body after it has been destroyed. Rockslide has the ability to do this, and is probably one of the only known comic book characters that has this power. When he first reconstructed, he needed the help of Hellion's telekinesis to reform him. The second time he reformed, he did it by himself, but this time his form was a lot rockier, but he lost his ability to fire his limbs the second time around. He was later able to reform again, but this time out of rocks from Limbo, that included magma, and also allowed him to be resistant to magic.

    He later learned to reform himself consciously, and now he can do it at any time. When Rockslide explodes and then reforms, he is unable to carry his clothes with him. Superhumans who can self detonate (below) are able to reform after they detonate. Nitro is able to reform himself from the gas he turns himself into after he explodes. Unlike Rockslide, he possesses a special field that allows him to reform the clothes he's wearing too. Breakdown is also able to reform after she explodes. These superhumans don't have to reform straight away, and can stay in these states for quite a time.

    Self Detonation

    \"Nitro:
    Nitro: The Stamford Explosion

    Ability to explode one's body mass creating an explosion and reform (see above). When Rockslide explodes, he only explodes his body, as in he doesn't blow up with energy like Nitro. Rockslide's explosions don't extend that far, and tend to just throw the rock fragments of his body, doing very little harm to the surrounding environment. Nitro on the other hand can cause devastating blasts, like real explosions.

    Sometimes the can be relatively small ones, enough to destroy a building, but other times, when Nitro is on M.G.H. (Mutant Growth Hormone), he can cause incredibly gigantic blasts, proven recently when he exploded destroying Stamford. If he explodes to many times in a row, Nitro will pass out from the amount of energy he used to explode.

    Sonic Scream

    \"The
    The Super-Loud Black Bolt

    Sonic screaming is the ability to use one's voice to create powerful screams. These screams can cause various effects, depending on how powerful the scream is. Some screams are powerful enough to shatter objects and cause unconsciousness. Banshee (Sean) was even able to use his sonic scream to allow him to fly among various other things such as hear distant conversations and more. His daughter Banshee (Theresa) has been seen using her powers in ways her father never has, such as creating force fields, sending secret message via her voice that only the target can hear, and like the Sirens, Siryn can use her voice as a form of persuasion, but this does not work on mutants.

    When in combat, Siryn normally focuses her voice into what she calls a \"sonic lance\", a tight focused beam of sound waves, that can severely injure/damage anything it comes into contact with. These two characters have very powerful cries, and once it has even been stated that Siryn could probably destroy and entire city block with her voice. Blackbolt, King of the Inhumans has the ability of sonic scream, but his are much more powerful. A mere whisper from him has proved to have devastating results, taking out a whole fleet of helicopters and keeping the Hulk at bay.

    As King of the Inhumans, obviously he has to address his people, so he and his wife, Medusa, have learned sign language and she speaks for him. Blackbolt has trained himself so he'll never make a sound accidentally. Motormouth has this ability too, but she is probably best known for humming very quietly, this allowing her to use ultrasound to see through objects. The Black Canary's \"Canary Cry\" is basically this power. The cry is so strong that it is able to dent steel, and even kill someone within its range.

    Superhuman Agility

    \"Nightcrawler\"
    Nightcrawler

    The user's personal agility, balance and bodily co-ordination are enhanced to the levels beyond a normal humans limit even surpassing a trained athlete and allowing the user to jump over heights twice their height or even walk a tight rope with ease. One of the characters most probably best known for his superhuman agility is probably Beast, picture here: Beast has always been seen performing complex stunts such as back flips and has been seen jumping far through the air. Nightcrawler also has superhuman agility, and can easily perform complex stunts. He once even teleported onto the head of Jean Grey's Phoenix memorial statue, and stood on its head, on his toes. Another character whos main power is superhuman agility is Spider man. Spiderman has fantastic agility. His agility is so great he can evade gunfire and dodge thrown items, such as shrunkein. He can do stunts like olympic gymnasts. Wonder Woman's agility is far beyond that of even an olympic level athlete, as is her balance and coordination.

    Superhuman Dexterity

    \"Beast:
    Beast: A Natural Acrobat

    The ability allows one to be completely skilled with the hands and the body. For example, Beast can perform the exact same tasks with either his hands or his feet.

    Superhuman Durability

    \"Luke
    Luke Cage: Nothing Can Pierce His Skin... Or Can It?

    Ability to have a higher resistance to one or more forms of damage before being injured. People such as Luke Cage, Solomon Grundy, Wonder Woman and Tick has this superpower. Luke Cage is only superhumanly durable and is not completely invulnerable, as adamantium can dent his skin. The same apply to Frenzy, who has skin as hard as steel. Emma Frost's diamond form is also only super-humanly durable, as it has been destroyed (shattered to be exact by a diamond bullet) and has been pierced by diamond, and it is most probable that it could be pierced by adamanitum too. Various super humans with superhuman strength have superhuman durability, as normally the thickness of their skin increases and the extra muscle mass help protect them.

    When The Justice League had to battle Solomon Grundy after he returned from the dead, the League couldn't hurt him. The only thing that was able to stop him and hurt him was Hawkgirl's mace made of Nth metal that is able to hurt magical or disrupt magical people or things.

    Invulnerability and superhuman durability are two different things, as invulnerability means that nothing can penetrate your skin at all, where as superhuman durability only makes you more resistant to these outside threats. Not invulnerable Wonder Woman has a high level of resistance to threats which might cause a normal human a great deal of harm. Radiation has little effect on her although she is still affected by heat. She has a more durable body than most but she can still be damaged by regular items like bullets or arrows, it would be noted that piercing weapons such as bullets, may penetrate her skin, but not her muscle tissue. This ability holds true for both Donna Troy and Wonder Girl.

    Superhuman Speed

    \"The
    The Flash

    Ability to move at a rate of acceleration and maximum speed in excess to that of normal optimal human capacity. Some who possess super-speed interact with an inter dimensional field of energy commonly referred to as the Speed Force. If an individual moves their body at speeds in excess to the speed of light, they physically interface with the Speed Force, like the super hero the Flash who is known to be the fastest man alive. Oftentimes exiting their home reality and traveling throughout the time stream. Some individuals who possess this ability may be limited by certain atmospheric or geological conditions. Kryptonians for example, can obtain a version of super-speed so long as they are within the sphere of influence of a Yellow sun star system.

    Their ability to use this power is in direct proportion to the levels of ultraviolet radiation that their body cells absorb. Others may have an divine gift like Wonder Woman and the Amazons, Wonder Woman herself is able to reach great speeds from the gift granted by Hermes the god of messengers, upon her birth. She has been seen able to reach speeds fast enough to reach the Speed Force. The majority of superheroes gain superhuman speed from this method, as it refers to manifesting abilities based on either an event that caused it, your genetic code or even some other way that your body evolved into being bestowed superpowers. The most commonly thought of mutants are the X-Men, mutants like Quicksilver.

    Superhuman Reflexes

    \"Blade's
    Blade's Quick Reaction

    Ability to react faster than a normal human. Blade has this ability due to the fact that he is part vampire and with him being a good fighter and knowing all of the arts enhances this ability. Blade reflexes are so good that ts even to the point where it comes naturally that he re-acts before his brain can actually analyze a situation. Even though this characteristic is found in humans, it also is selectively seen in rigorously trained martial artists. This shows that Blade has to have at least 25 to 50 years of martial arts training history. Wonder Woman possesses reflex abilities similar to speedsters, such as The Flash. Midnighter has fast reflexes due to his body being altered to give him inhuman balance as well as faster nerve endings so he can move and react quicker than any human and many superhumans. Madman also has fast reflexes.

    It is not unusual for certain characters with superhuman speed to have enhanced reflexes too. People such as Northstar and Aurora who have superhuman speed also have superhuman reflexes. Northstar has reflexes fast enough to dodge an on-coming object traveling at 18.7 mach. Aurora has been seen to have reflexes quick enough to check and apartment within seconds.

    With superhuman reflexes and the added bonus of his \"Spider-Sense\" power, Spider-Man can dodge various attacks quickly. People with photographic reflexes sometimes can perform some moves before they are even consciously aware that they're doing it, their body naturally re-acting to what is happening in the environment around them (an example of this is when Monica Dawson \"619\"'d a robber without knowing what she was doing).

    Superhuman Senses

    \"Wolverine\"
    Wolverine

    Ability to see, smell, taste, feel and/or hear more than a normal human. One of the most known character to possess this power is Wolverine. Wolverine always had a heightened sense of smell since being a spy and his nose is what usually gets him out trouble in all the situations he has been in. His power of smell helps him also to known about situations that happened and who was apart of those situations. Also with Wolverine's animalistic instinct he not only has a keen sense on smell but is also able to see in complete darkness and is also able to hear what humans can't. This can be either from a far distance or something that can't be heard close by. Another person who has this ability is Wolverine's arch-nemesis Sabretooth. Sabretooth has the same animalistic powers just as Wolverine but in battle is always able to beat him. In the DC universe, a person that posses this power is Timber Wolf who gained his ability because of his father experimenting on him. This gave him the physical appearance of a wolf and wolf like instincts. He's able to track and find what he is looking for through his superhuman senses.

    Superhuman Stamina

    \"The
    The Wonder Girls

    Ability to allow an individual's physical heartiness and their ability to function without tiring or undue strain. Characters who possess this power can often go for long periods of time without rest or even sleep. This power often works in combination with Superhuman Strength andInvulnerability. An individual may develop enhanced stamina either through alien heritage, genetic manipulation or biological augmentation. Other characters may develop enhanced stamina through mystical means, or through divine intervention. Characters with Super-Speed may possess increased stamina to a limited degree, but are often restricted by other factors relating to their speed-based abilities (such as increased metabolism.

    Wonder Woman, Donna Troy and Wonder Girl can last a great deal of time in any fight and with virtually anyone. They have held their own in combat with foes as powerful as Gods. They do not tire out, as their bodies produces no lactic acids in their muscles, giving them the ability to fight until they drop dead.

    The Hulk is one that is known for is stamina, his body counteracts fatigue poisons that build up in his muscles during physical activity. In an enraged state, the Hulk is capable of exerting himself at peak physical capacity for several days before fatigue begins to affect him. However, much like his physical strength, the Hulk's stamina does increase as he becomes angrier.

    Superhuman Strength

    \"Molly
    Molly Hayes: A Little Powerhouse

    Ability to have a level of physical strength higher than that possible by a human being in real life, able to lift more than a normal humans body can handle. The Hulk's strength is directly connected to his emotional state, and the angrier he gets the stronger he gets. His cousin, She-Hulk who received a blood transplant from him, is also incredibly strong, but her strength doesn't vary depending on her emotional state. Thor possesses an incredibly high level strength because of his godly status as the son of Odin, All-father of Asgard, and Gaea, Elder Goddess of Earth, which makes him the strongest of the Asgardians.

    Similarly, Hercules, who is the strongest Olympian and the Olympian god of strength, was conceived by Zeus, All-father of Olympus, and a mortal woman to be the physically stronger than the gods. Namor has this ability, but because his Atlantean heritage, he is stronger when he is covered in water. He is still very strong out of water, but the more he dries of the more, the weaker he becomes (strength wise only). The Sentry and Ms. Marvel also has incredibly high levels of superhuman strength, the first being much stronger though. But, if needed to boost their strength, these two can use their energy adsorption power to adsorb energy, using this to increase their strength.

    Rogue also possessed super strength when she had absorbed Ms. Marvel's powers and later Sunfire's, but has now lost both these characters abilities. Another well known character with superhuman strength is the Thing, who is as strong as the others that have been stated. Although when first introduced Molly Hayes could only lift a few tones, she can now lift at least one hundred tones when she toppled a gigantic monster. A side effect of this power for Molly is that she falls asleep after using her power. Her eyes also glow pink when she uses her powers. Colossus is also very strong when in his armored form, but he has been seen to be overpowered by the Hulk. Gentle has a variation of superhuman strength dubbed \"extreme strength\".

    Gentle can increase the level of his physical level to a level that shouldn't even be possible. Because this increase in mass puts so much strain on his body, he has to keep it in check with vibranium tattoos. Later in his life, the tattoos will fail to keep his power under control, and he'll die. Wonder Man is another superhuman with strength that passes incredibly high levels, Galactus, being who he is, has a very high level of superhuman strength. Strong Guy, using his power mutant power, can increase his strength, but it is already at a high level.

    In the DC universe, Superman has many powers including superhuman strength to an incredibly vast degree due to his Kryptonian physiology's ability to absorb, store and process yellow solar radiation. Superman's strength is dependent upon him being in reasonable proximity of a yellow sun. Superman retains his strength if he has absorbed and stored enough yellow solar radiation to maintain his strength when not in proximity of a yellow sun, though it will ebb as he expends energy. His cousins, Supergirl and Power Girl also has this ability when under the influence of the yellow sun as well.

    Wonder Woman possesses super strength granted by Demeter (Goddess of the Earth) upon her birth. She is considered to be the strongest superhero in the DC Universe after Superman and possibly Captain Marvel (Billy Batson), making her the strongest superheroine in the DC universe. Donna Troy has super strength like that of her sister Wonder Woman blessed upon her by the Titans of Myth. Wonder Girl also has strength and she was trained by the Amazons. She also is a Demi-God just like her half brother Hercules, their father being Zeus.

    Superhuman Vision

    \"Supergirl\"
    Supergirl

    Ability to see more than a normal human of a 20/20 vision. One of the most well known characters to have this ability is the \"Man of Steel\", Superman. Ever since his debut appearance he was always known for using his visions to get him out of trouble and usually to save Lois Lane. His cousin, Supergirl also has this ability and Power Girl. Superboy also has this ability since he was cloned from Superman's DNA in a governmental 'Project: Man of Tomorrow'. After the death of Superman, Project Cadmus with help from Lex Luthor tried to make another Superman by using his DNA. All attempts failed since it was Kryptonian DNA, but with Superman's blood fused with Lex they've created Superboy, making him the first successful clone. Also all Kryptonian when under the influence of Earth's yellow Sun has this ability.

    Many characters across the industry have this power, as a part of their heightened senses. Although not technically superhuman vision, as a part of his mutation, Angel's body adapted to be able to stand flying, and his eyes are able to withstand high velocities of wind and are able to see certain things in the distance.

    Some characters even have the ability to see things on a molecular or a sub-atomic level, examples of these characters being the Silver Surfer and Captain Universe. Many other characters have this power too, for example the Black Panther, who's powers were granted to him by the Panther God, and M and Warpath who gained their powers through mutation.

    Martial Combat

    \"Wonder
    Wonder Woman

    Ability to maintain their performance and hone their fighting abilities, they should be in peak human condition and retain all of their training. Characters who are proficient in advanced forms of hand-to-hand combat, Martial Arts and has been trained to be proficient in the use of various forms of weaponry, including the staff, broadsword, etc. In the DCU Wonder Woman, Wonder Girl, Donna Troy and the Amazons are said to be some of the best fighters and warriors in the DCU and Wonder Woman herself is the best of them. Wildcat has served as a mentor to many younger heroes including Batman and Black Canary. in Marvel some of the best fighters Steve Rogers, Wolverine, Iron Fist, Blade and Moondragon. Some of Marvel's top and peak human condition fighters, known for their own style of hand-to-hand martial arts.

    Night Vision

    \"Doctor
    Doctor Mid-Nite

    Ability to see clearly in darkness. Owl and Doctor Mid-Nite has this ability. In the Marvel Universe, Owl is the enemy of Spider-Man and Daredevil who possess the ability of an Owl to be able to see at night. In the DC universe, Doctor Mid-Nite possess the ability to see in the dark. After losing his sight, Doctor Mid-Nite is able to see spectrums of light during the night time by using special infra-red lenses. Spider-Man also has this ability and knows where to go by using his Spider-Sense. Dracula also has this ability since he is part vampire and bat and bats are nocturnal. Nightcrawler also has this ability. Wolf Cub a member of the New X-Men has this ability because of his enhanced super senses. Wolverine and Sabretooth also has this power due to their enhance senses. Vampirella also has this power even though she isn't nocturnal.

    She has all of the powers of a regular vampire but not their weaknesses. Werewolf By Night has this ability since he is a lycanthrope, meaning that at night when there is a full moon Jack Russel can turn into a werewolf. When changed into a werewolf he has this ability since werewolf's only attack and come out at night.

    X-23 also has this ability since she is a clone of Wolverine. Gaining this ability through having animalistic senses. Alucard also has this ability due making him a weapon against the creatures of the night. Alucard is a vampire giving him the ability to see in the dark because he has enhanced super senses and also that he could turn into a bat. Wild Child also has this ability due to his mutancy giving him superhuman senses. Catseye also has this power due to her mutancy where she's is able to turn into a cat or a human panther hybrid. This ability gives her keen senses which she could use to see in complete darkness.

    X-Ray Vision

    \"Lar
    Lar Gand

    Ability to see through solid objects through different layers. The most well known character to have this ability is Superman. Superman uses his X-Ray visions to see through buildings and walls. His power of X-Ray vision though can't be used to see through lead walls. At first Superman when first learning about and trying to use his powers was only able to see through clothing usually to see Lois underwear but as time progressed he was able to control this power. In the Marvel Universe a villain named Peepers has this power. He uses this power to watch his opponents moves so he can com to a plan to win. Lar Gand also have this superpower. Lar Gand is a member of the Legion of Superheros who was a member of the nearby planet Daxam. Daxam is neighbor planets to Earth and where Krypton once was. Lar Gand went to Krypton and when told of the planets destruction by Jor-El left and was in suspended animation until his arrival on Earth.

    Earth is where he will become one of Superboy's friend. Closely being related to Kryptonians, Lar Gand has Superman's and Superboy's powers when under the influence of Earth's yellow Sun. Lar Gand name would be Mon-El closely resembling Clark's. Power Girl has this ability. Superboy also has this ability. Supergirl has this ability. Normally it is quite common to see a character take advantage of x-ray vision at first, as seen when heterosexual males usually use it to view the undergarments or the naked body of another female. This is portrayed in various movies too.

    Telescopic/Microscopic Vision

    \"Power
    Power Girl

    Ability to magnify vision to various levels, either to see clearly things in long distances or to examine things closely than normal humans can't notice. Power Girl has this ability. Superman also has this ability which he uses usually to get Lois out of trouble. Supergirl has this power. Superboy also this power. Superman-Prime also has this power since he is Superman's counterpart which is under the influence of energy from Ion and an Oan. Superboy-Prime also has this ability. Cyborg Superman also has this ability. When Hank Henshaw was returning from space he encountered radiation from a storm, when back on Earth could feel the effects of the radiation slowly killing him. As his physical body had died his consciousness had been turned to energy and was put into the machine he had been working at.

    Gaining control of the machinery he was able to make a robotic body he could function with. He found his way to Superman's birthing matrix and made it his new body so he could travel space again, absorbing the knowledge of the universe, thus becoming a Cyborg Superman. Hyperion all the different version has this ability as well.

    During the periods when Hyperion was sightless, Hyperion wore special glasses that was able to give Hyperion the ability to see giving Hyperion radar vision. Wolverine also has this ability and is able to see thing normal humans can't due to his his enhanced super senses. The Sentry, one of the most powerful superheroes in the Marvel Universe has this power. He also has heightened super senses.

    Wall-Crawling

    \"Spider-Man:
    Spider-Man: The Wall Crawler

    Ability to cling to objects or surfaces allowing the user to climb on it. The most well known person to have this ability is the web-head Spider-man. After getting bitten by a radioactive spider, Peter Parker was given spider like qualities. No one knows how Spider-Man was given the ability in which he is able to cling on to items and can crawl on walls but their is a theory that his wall crawling power is similar to a certain spider that emits very thin strands of hair on it's feet, allowing it to cling on all kinds of surface including glass.

    No matter how smooth or slippery a surface may be, Spidey can attach himself to the surface. Another character that possess this power is Anole. Other character's who have this ability gets it through different mean such as: objects, being bitten, or by accident. Vixen has this ability given to her by the Tantu Totem. With this object she possess animal like qualities and of which she can gain this power. Animal Man has this power too.

    After a day of shooting, Buddy would discover an alien ship so radioactive that it instantly killed him. As a new opportunity to experiment on humans, the aliens reconstructed Buddy's body with morphogenetic grafts. Giving Buddy the ability to use the powers of any animal on Earth. Anole also have this power due to his reptilian mutation. Nightcrawler has this ability and can hang on to any surface.

    Water-Breathing

    \"Aquaman:
    Aquaman: King Of The Seven Seas

    Ability to respirate through water in lieu of a gaseous medium or extract oxygen from water through gills. The most well known characters to have this ability is Aquaman and Namor. In the DC universe Aquaman is unequaled in the water. He can do anything in the water and is part human and fish. Also Aquaman's sidekick Aqualad also has this ability. Superman also has the ability to hold his breathe for long periods of time making him able to be under water for hours. In the Marvel universe, Namor is able to do the same things as Aquaman and is able to live in water and as well as on land for large periods of time.

    Namor gained this ability because of his mutancy. Aspen who is a marine biologist also have this ability. She can manipulate water into any way she wants and naturally has five times the lung capacity of an Olympic swimmer. This is also due to her unique heritage of being a hybrid of the Black and Blue race. Darwin have this ability. He is the friend of Captain Bridger and is a companion of Sea Quest. Darwin has this ability since he is a dolphin, but he is able to speak due to a technological object by his brilliant friend Lucas. Animal Man also has this power since he can mimic the power of any animal he wants.

    He can breathe under water but he doesn't need any gills. He could also breath underwater if he wants to by creating gills if needed. Storm has demonstrated the ability to separate water molecules into oxygen and hydrogen via electrolysis, allowing her to breathe underwater. Marrina a member of the alien race Plodex, and the teams: Alpha Flight and The Avengers, also have this ability due to her Plodex DNA. She is the wife of Namor and she can also swim at speeds that rival her husband. Namora the cousin of Namor also have this ability and have this ability due to her mutancy. She also has all of his powers as well.

    Mental and Knowledge-Based Abilities

    Innate Capability

    \"Forge:
    Forge: The Inventor

    Ability to naturally have skills and or knowledge typically earned through learning. Forge has a variation of this ability, allowing him to have the knowledge to be able to build anything. Something just has to be mentioned to Forge, and apparently he can see the design and blue prints for it in his mind. This variation is called intuitive genius or intuitive inventor. This ability is also possessed by Box and Laslo Maqzel. Another variation is possessed by Sylar, who is able to view something and know how it works instantly.

    This variation is called intuitive aptitude. Another variation is the ability to know the meaning of a language as soon as you see it. This ability was possessed by Doug Ramsey, the New Mutant known as Cypher. If he encountered a language he did not understand, he would simply know what it said. This ability is known as omnilinguim or intuitive language. Yet another variation called intuitive operation is possessed by the Spider-Man foe, Razorback, who is instantly able to operate any vehicle he comes across.

    Eidetic Memory/Photographic Memory/Total Recall

    \"Sage:
    Sage: Has a mind of a Computer

    Ability to recall any memory perfectly. The possessor of this ability can recall any sound, event, thought and so on and so forth, exactly how they experienced it. This would allow them to read a book in a matter of seconds by flicking through it or allow them to remember birthdays, phone numbers and others without help. This also means that they can see and remember everything down to the last detail. Charlie Andrews had the ability to recall memories perfectly, but her gift was also a curse as she was able to remember the car crash she and her parents were in when they died while she was a baby. Sadly, she was killed Sylar who stole her gift. Sage, a member of the X-Men (at one point), has the power of total recall. This power works well with her other powers such as cyberpathy and her superhuman multi-tasking.

    Powerful telepaths, such as Jean Grey, are able to use their telepathy to totally recall a memory. In the DC Universe a person who has a photographic memory is Lex Luthor. Lex has gotten away with a lot of situation because of his memory. In a Justice League Episode, Lex remembered the layout plans for a secret governmental project and he ended up using the technology so he can get his revenge on Superman.

    Another person who also have this ability is Superman. He can remember every detail about anything that happens and he could also recall memorizes perfectly. Batman also has this memory and can recall events and has a photographic memory. He usually uses this skill to help him fight crime which usually gives him the upper advantage. Donna Troy has the ability to remember every version of herself, and Donna can mimic anyone's voice once she has heard it, so perfectly that it is indistinguishable from the original source.

    Omnilinguism/Bi-lingual

    \"Starfire:
    Starfire: An Omnilingual

    Ability to understand any form of language, a natural polyglot. An polyglot is a person who knows many languages or it cold also be referred to as a person as being multilingual. This can be accomplished in various ways both verbal and non verbal ways. This could also mean that a person can talk and knows more than just two or more languages. Cypher had this ability, but mostly used it to understand computers, and was therefore very good with them. Another person who has this ability is Starfire. She has this ability through lip contact (kissing) and can than understand the language of any planet's inhabitants or creature. When she first arrived to Earth she learned English by kissing Robin and has the ability to mentally or psionically learn languages but through physical contact. Even though he doesn't obtain this power through physical contact. Although they do not possess the skill of omniliguism, many superheroes are bi-lingual, meaning they have learned to speak different languages, be it through just learning or via telepathy.

    Many bi-linguals include Wolverine, Spider-Woman, M, Professor X, Gambit, Batman, Colossus, Kitty Pryde, Deadpool, Nightcrawler, Madrox and many, many more. The TARDIS in Doctor Who constantly translates alien languages inside the heads of the Doctor and his companions, so technically the TARDIS itself if bi-lingual, but the Doctor has also been seen speaking alien languages. Due to Athena's gift to Wonder Woman, she has great wisdom and can learn languages even alien much faster than any other average human being. Agent Brand has a special form of omnilinguism, and can make her tongue form shapes ordinary humans can't, allowing her to speak alien languages that humans can't.

    Omniscience

    \"Mageddon:
    Mageddon: The All Knowing

    Ability to know anything and everything any time. A person who has this ability is Infinity. She knows everything and has powers that can manipulate the universe cause she keeps the natural order of space. This gives her the ability to be anywhere anytime appearing in various forms. Mageddon also has this ability. Orikal possesses the Infinite Eye, and this allows him to see anything in time and space, giving him this power.

    It was believed at first when Layla Miller joined X-Factor that she possessed omniscience, as she constantly claimed \"I'm Layla Miller. I know stuff\", but later on it is hinted that she has great precognitive powers, as she says \"I don't know everything. If I did, then I would say \"I'm Layla Miller. I know everything\"\" (paraphrased slightly). It has been hinted in Doctor Who that the Doctor himself can \"see time and space\", although it is not completely known if this is just pre- and recognition or if it is possible omniscience.

    Paralysis

    The ability to cause paralysis in others. Possibly through the secretion of a paralytic toxin, electric stimulation, or any method other than telepathic, empathic, or pheromonal mind control.

    Superhuman Intelligence

    \"Brainiac
    Brainiac 5: The Super Intelligent

    Ability to have intelligence far above genius level. A person who has this ability is Brainiac 5. He is the descendant of the second Brainiac and is from the planet Colu. The Doctor has immense levels of intelligence, as is constantly seen when he is \"scientifically babbling\". He is very intuitive and is very good at thinking on the spot. The Doctor's intelligence is his main weapon, and it is probably the main thing that has kept him alive over the years (well, that and regeneration). But there is one thing that limits his knowledge use as seen recently: that he hasn't got that human edge that comes in handy in crisis's.

    As seen with Doctor-Donna, she claimed she was able to come up with things that he \"couldn't dream of in a million years. Amadeus Cho, the seventh smartest person in the world, constantly sees things in formulas, and has been shown performing various stunts to protect himself with this, for example, taking down a helicopter that was chasing him by quickly figuring out the angle th mirror of his moped needed to be to reflect it. Another person who is consider very intelligent is Lex Luthor. In one of the Justice League Episode's when in Lex's mad attempt to reawaken Brainiac, he end up bringing back Darkseid instead.

    Lex is taking to a place where the Anti-Life Equation exists and the man said that only a person with a high level intelligence could make it that far. What a first seemed as if Lex mind was lost forever, he would later come back to Earth with the one thing Darkseid always wanted the most. The Anti-Life Equation. Obtaining this object would suggest that Lex has a high level of super intelligence.

    Extra Sensory Perception

    \"Spider-Man:
    Spider-Man: His Spider-Senses Are Tingling

    Ability to acquire information by paranormal means independent of any known physical senses or deduction from previous experience. This is also known as the sixth sense. A feeling telling you something is going to happen or if you shouldn't do something because you know there is going to be a bad outcome. A person that has this power is Spider-Man. Spider-Man's spider sense gives him an edge because he knows that trouble is near by or if hes being lead into a trap.

    Astral Projection

    \"Raven\"
    Raven

    Ability to separate and control one's astral body to travel over distances while awake or meditating. A person who has this power is Aang. He is the Avatar, the last air bender who meditates for different reasons but when concentrated, he can project his body and also does this so he can enter the Spirit World. He can also see his body while he is in the Spirit World but he doesn't have any powers of what goes on in this state. He is helpless and he could die if someone was to kill him while in this mode. Marvel Girl has this power. She is one of the most powerful telekinetics in the Marvel Universe and is a very well-known astral projector. She is so powerful that she can create images in the minds of others, and even take over someones mind and put her own mind in the minds of other people. She could posses others and even create powerful illusions. With the Phoenix Force inside of her there is no limit to this power. Ravager at one point also had this power when she was able to see into the future and she projected herself and took over someone else's body.

    Raven has this power and when she is in this state she goes into her head which is another world where she tries to suppress her evil thoughts. Despero has this power and when trying to spread his vision that was given to him by the Flame of Py'tar, he called upon Py'tar and he sent out soldier to show the world of his \"paradise\". Doctor Fate has this power and he obtained it because of his magical background.

    Cross-Dimensional Awareness

    \"Cloak\"
    Cloak

    Ability to detect actions and events in other dimensions, a great example of this being able to break the Fourth Wall and interact with the readers. Perhaps the best example of this is Marvel Comics' Deadpool, who regularly interacts with the readers, and is aware that he himself is a comic book character. Another example is She-Hulk, who once even went to a comic book store to find comics about herself to find out how to defeat a villain. Other examples are just of characters being able to peer into other worlds such as Cloak who is constantly aware of the Darkforce Dimension, and very powerful characters such as Silver Surfer, Mr. Mxyzptlk and the Beyonder. Olivia Dunham from popular TV show \"Fringe\" that also has a comic book prequel published by DC, has the ability to view an alternate world during what have been called \"day dreams\", but this is because as a child she was injected with the drug Cortexiphan, and it is possible that others that have been injected with the same drug are able to view other worlds.

    Empathy

    \"Empath:
    Empath: A Mutant

    Ability to read or sense the emotions or control the emotions or feelings of others. The mutant Empath has mastered his ability, and controls it telepathically (or so its suggested) because it has said that he uses his mind to over-ride the sub section of another's mind that controls emotions. It is unknown if this is how all empaths powers work. Empath did misuse his power, on more than one occasion, but the most known misuse of his power was when he used it to manipulate the emotions of Magma, and to this day, she is paranoid when in his presence, fearing he is still manipulating her. Cordelia Frost, sister of Emma Frost, is a very powerful empath, and although she hasn't appeared in many comics, she has been shown to perform amazing feats with this ability, including using it to communicate with others. Lockheed and Falcon's falcon possess some degree of empathy, allowing them some form of communication with humans.

    Peter Petrelli's mimicry power has been dubbed \"empathic mimicry\", suggesting that he uses empathy to copy powers. Luna Maximoff's power of empathy works in a different way, and she is able to view someone's emotions in various different colors. Meggan's power of empathy effect her other powers, in ways such as: her emotional state can cause her elemental powers to effect the environment around her, and if she is feeling a strong emotion towards someone she can morph into them. Wonder Woman was granted by Athena. (Goddess of Wisdom) empathy so that she can detects others' emotions, and most forms of mind control will not work on her either.

    Mediumship

    \"The
    The Powerful Dr. Fate

    Ability to see and communicate with the dead. The Charmed Ones have this ability. The Charmed Ones are a family of witches who has the power to see the dead and communicate with them in order to get a better understanding of them or if a presence is there because the ghost isn't able to move on.

    People usually of magical backgrounds have this power. Doctor Fate has this power because of his magical knowledge. He can communicate with the dead using spells and he did this one time in a Justice League Unlimited episode when he was trying to bring Grundy's soul back to life.

    Precognition

    \"Blindfold:
    Blindfold: The Blind Prophet

    Ability to perceive the future. It may be expressed in vague dreams while asleep, other times it can be clear and can occur at will. It may also be: used as a form of \"danger sense\" to show the user that they are being threatened and from what direction it is coming from. Blindfold, a student of the X-Men is a very adept precog. Her visions come in handy from time to time, but she doesn’t seem to be able to change them at the moment. However, Blindfold isn’t the best at informing others of her visions and is often very cryptic.

    Another cryptic precog is Layla Miller, but she is very different, and views the universe differently because of it usually. Layla doesn’t always disclose the information she receives, as she claims that she will be struck down if she does. In the “ Buffyverse”, Buffy Summers and other Slayers such as Faith receive prophetic visions warning them of oncoming dangers. Destiny is a very well known precog, and is well known for writing her visions down and creating “ Destiny’s Diaries”, a series of well sought after books in the X-Men’s universe as they usually detail events of relevance to future events concerning them.

    Premonition

    \"Dream
    Dream Girl: Having A Vision

    Premonition is a variation or a sub-skill of sorts of precognition. Unlike precognition, premonitions are normally about one certain thing, and are normally very short, and sometimes, the possessor might have to touch something to receive a premonition. Premonition isn't a power that seems to be constantly on, and a possessor isn't always able to receive one when they want one. Dream Girl has this power and in her dreams she has the power to see whats going to happen in the future. In the “ Buffyverse”, there is the concept of \"The Visions\", created as a warning of dangerous upcoming events and shows innocents in danger, this able to warn their Champions so they can go to work.

    The first host of these visions that we witnessed was Allen Francis Doyle, a half demon, but they were passed on to Cordelia Chase, and because she was human, she experienced tremendous pain. She was later changed into half a demon so she could continue to help people and live. Before she died, she passed them onto Angel who had one final vision that motivated him for the rest of the season.

    Cibopathy

    Cibopaths, like Tony Chu, have the ability to psychically view the history of any food they eat. Eating an apple would allow him to see the origin of the apple, such as the farmer that planted it and so on. Eating meat does the same also showing how the animal was killed and prepared.

    Clairsentience

    Acquires psychic knowledge primarily by means of feeling.

    Clairaudience

    Acquires information by paranormal auditory means.

    Clairalience

    Form of extra-sensory perception wherein a person acquires psychic knowledge primarily by means of smelling.

    Claircognizance

    Form of extra-sensory perception wherein a person acquires psychic knowledge primarily by means of intrinsic knowledge.

    Clairgustance

    Form of extra-sensory perception that allegedly allows one to taste a substance without putting anything in one's mouth.

    Remote viewing

    Is the purported ability for a person to gather information on a remote target that is hidden from the physical perception of the viewer and typically separated from the viewer at some distance, a form of extra-sensory perception.

    Anomalous cognition

    Purported transfer of information to a subject through means other than the 5 traditional senses.

    Clairvoyance

    Supernatural power of seeing objects or actions removed in space or time from natural viewing.

    Psychometry

    Ability to relate details about the past or future condition of an object, person or location, usually by being in close contact with it.

    Technopathy/Cyberpathy

    Technopaths are beings who possess the superpower to manipulate or interact with technology, a feat which can yield various other powers as well. Cyberpathy is the power to mentally interface with computers usually through implants. One of truest technopaths was a young girl named Network who capable of communicating with and manipulating all forms of electronics. Some technopaths such as Black Box can retain all the information they glean using their superpowers.

    Coldblood, a cyborg can interface with most computers thanks to his enhancements. Serafina, a member of the Children of the Vault, has the ability to connect with and utilize any technology she needs for her purposes. Sage, whose mind is like that of a computer, has artificial technopathy as she wears special glasses that can allow her to interact with computers and other technology. Iron Man has limited technopathy as he can communicate with his armor, sending it commands through brain signals, he has become one with it. Omega Sentinel is part human and part machine, making her what some might consider, to be the perfect technopath as she is a part of both groups (technological entity and mutant).

    In the DC Universe, there exists one of the most powerful technopaths, Cyborg Superman, who uses technology as hosts to his essence, now that he no longer has a body. A highly-advanced technopath is The Drummer who sees everything in the form of patterns, allowing him to decode beings, technology and even magic. Angela Spica the second Engineer is a technopath who is capable of doing almost anything she imagines mainly connecting herself to machines. Another young child with technopathic powers is Micah Sanders who can communicate with and ask machines to do things for him.

    Telepathy

    \"Emma
    Emma Frost: Using My Head

    Telepathy is the ability to read, possess, control (and so on and so forth) minds. Telepathy is probably one of the most well-known powers in the comic book industry, frequently used throughout it. Telepaths power can range anywhere from possessing mass populations to just using it to communicate. Professor X is a well known and powerful telepath, but rarely (or he didn't use to) use his power to force people to do anything, as he believed in the right of free will. Jean Grey, who was a very powerful psionic mutant, first developed this power before her telekinesis, when her best friend was hit by a car and Jean connected with her mind, a process that nearly killed her. So, because she was unable to cope with both powers at such a young age (telekinesis and telepathy), Professor X placed mental blocks in her mind so she couldn't access her telepathy (which she didn't know she had), and later on, he activated it, and Jean Grey is one of the most powerful telepaths in the Marvel Universe, and it is believed that one day she will surpass even Professor X himself.

    Jean has been shown to use her power in more forceful ways, such as when she tore through the mental defenses of Emma Frost after she caught her having an affair with her wife, Cyclops. Emma Frost, while also being a well experienced and powerful telepath (but not as powerful as the two above), Emma used to use her powers all the time to get what she wanted, but now as a member of the X-Men and a teacher, she uses them more skillfully, being shown to be able to defeat the more powerful Rachel Grey with her skill.

    Rachel Grey, daughter of Cyclops and Jean Grey from an alternate reality, possesses raw telepathic power, but lacks the skill in using it. Other offsprings of Cyclops and Jean Grey (or a clone of Jean), whether they be from an alternate reality or not, have been seen to possess immense psionic powers ( Cable & X-Man). The Stepford Cuckoos, who are able to form a hive mind between them, are also immensely powerful telepaths, especially when together.

    Although maybe not as powerful as these characters, M is still an experienced telepath, but normally to use effective measures of the ability requires physical contact. As a result of his mutant power manifesting and blowing half his face and his chest off, Chamber had the ability to communicate via telepathy, although he could not do anything else with this power. Matt Parkman's ability started off as the ability to \"read minds\", but it has progressed to the point where he can implant and send thoughts.

    Illusion Casting

    The ability to alter the perceptions of others.

    Astral Trapping

    \"Shadow
    Shadow King

    Ability to cause an astral projection to stay on the astral plane, usually in one specific place.

    Memory Manipulation

    Ability to erase or enhance the memories of another.

    Mind Control

    Ability to control the actions or reasoning of another with the mind.

    Psionic Blasts

    Ability to overload another's mind causing pain, memory loss, loss of consciousness, vegetative state or death after having created a psionic link into that person's mind.

    Possession

    Ability to take control of another person’s body via astral projection or mind transfer.

    Psychic weapons

    Ability to create a weapon of psychic energy that can harm mentally and not physically.

    Telekinesis

    \"X-Man:
    X-Man: A Powerful Telekinetic

    This is the power to both control and manipulate materials with the mind, this usually means in the form of moving however it can be such things as creating force fields or transforming atoms themselves. In general, telekinetics are the most powerful beings in existence as they have the power to manipulate matter and/or energy, the fundamental forces of the universe. One of the most powerful telekinetics in the Marvel Universe is Jean Grey/ Dark Phoenix who has had her powers enhanced to cosmic levels by the Phoenix Force. The Phoenix Force's hosts are often gifted telekinetics, including the drug-addicted youth, Kid Omega. Another way for one to become a powerful telekinetic is through cloning or inheriting the trait. Such is the case of Madelyne Pryor (the clone of Jean Grey) and X-Man (the son of Jean Grey) who also happen to both be creations of Mr. Sinister, a fellow telekinetic. A telekinetic who has potential to be one of the greatest is the young mutant, Hellion who often uses his powers to create force fields. Telekinetics are also commonly telepaths, as they have mastery over the mind and are provided with various abilities, such as Psylocke.

    There are also telekinetics who are limited to only manipulating certain things, like Magneto, who can only manipulate the electromagnetic spectrum. In the DC Universe, notable telekinetics include Psimon and Raven who are both skilled psychics. Then there is Terra whose telekinesis is limited to effecting earth, though in itself is still a formidable force. One who is very adept at using his telekinesis, so precisely that he can slice off the top of one's skull without damaging their brain is Sylar. Sylar now uses his telekinesis to obtain more superpowers but it has remained his trademark ability.

    His nemesis, Peter Petrelli, is now also an experienced telekinetic thanks to his ability to use empathic power mimicry...and so this ability usually emerges in times of hatred and rage. In the Star Wars universe, telekinesis is what sets the most powerful beings apart from the ordinary civilians. By using the Force (either Light or Dark sides of it) The Sith and the Jedi Order can move objects with their mind, the size of the objects they can move differs quite extensively. A specialized telekinetic whose powers are still vast is Aspen who has complete control over water, enough that which she can seemingly control it without a thought.

    Manipulating Fundamental Forces or Reality

    Air/Wind Manipulation (Aerokinesis)

    \"Crystal:
    Crystal: Summoning the Elements

    Ability to control, generate, or absorb air or wind. As part of their atmokinetic powers, Thor and Storm can control the air, the latter often creating mini tornadoes to inflict damage and manipulating the air current to allow her to fly. Renascence, formally the mutant Wind Dancer, used her power in many ways but is probably best known for using it to allow her to here distant conversations etc. Crystal uses her power in sync with her other powers, creating a variety of tornadoes. Meggan also has this power, but uses it in sync with all of her other powers. Airbenders have the ability to bend air, basically manipulating, examples being: Aang and Avatar Roku. There are also animals who can airbend, the Flying Bison and the Winged Lemur, specific examples being: Appa and Momo.

    Animation

    Ability to bring inanimate objects to life or to free a person from petrification.

    Concussion Beams

    Ability to generate or transform various forms of energy into a \"solid\" or concussive beam of energy.

    Darkness/Shadow Manipulation (Umbrakinesis)

    Ability to create or manipulate darkness, often by mentally accessing a dimension of dark energy and manipulating it.

    Density Control

    \"Vision:
    Vision: Mind Your Chest

    Ability to increase the natural density of an object and/or one's self. This gives the possessor various powers that can range from intangibility (see below) to super strength. Vision of the Avengers is well known for possessing this ability, normally using it to make his hand intangible, phasing it into his opponent's chest and solidifying it causing them tremendous pain. He can lower his density so he can fly and become intangible, and higher his density so he could gain superhuman strength.

    Moonstone can use her gravity manipulation powers to alter her density. Although they aren't technically able to control their density, phasers (superhumans who can turn intangible) are able to switch from a solid state to an intangible state, switching between densities.

    Death Touch

    \"Wither\"
    Wither

    Ability to disintegrate, kill or harm matter through touch. Wither, the New X-Man viewed his power to do this as a curse, thinkinghe could only hurt people with it. When he would touch an organic, and it had to be organic, being or object, it would, well wither. A great example of the effects of Wither's power was shown in the pages of New X-Men #20. Wither rushed out of his room, and believing he lost his mutant power, he grabbed Laurie Collins ( Wallflower) arm, only to have it begin to wither. Jay Guthrie ( Icarus) quickly pushed him away and luckily her arm was still there.

    But later, after Josh Foley ( Elixir) tries to heal it, Laurie states that there isn't anything left to heal. Another person with a death touch (of sorts) is Rogue. When Rogue touches a person, she instantly adsorbs their life force, slowly killing them. If she touches another superhuman, she is able to adsorb/replicate their ability, leaving them without this ability for a period of time. If she touches a superhuman for long enough, she can adsorb/replicate this power permanently, and possibly even kill the person.

    Bob Bishop has the ability of transmutation, but he has only been seen using this ability through contact with an object, and has been seen using it to kill. He once used it as a torture weapon by turning several appendages of a man to gold, causing incredible pain, and then, used it to turn his whole body to gold, killing the man.

    Energy Blasts

    \"Cyclops:
    Cyclops: Using Full Power

    Ability to expel various forms of energy from the body. Cyclops a leader of the X-Men has this power. Cyclops is a mutant who has the ability to absorb solar energies as use it as energy blasts by converting it into powerful optic blasts. He can push or destroy objects with his blasts and with his r uby quartz visor he could control how much or wide he wants the power of his blasts. Cyclops brother Havok also has this power. Havok has the power to absorb cosmic energy into his cells and transform it into hot plasma.

    Unlike his brother his energy blasts are used through his hands instead of his eyes. Havok also can control the amount of power he wants to use which could be used simply to knock a person down or to cause an object to explode. The Ray also has this power and he uses it by absorbing light. He can also store light so that he can use them in a number of ways and can create destructive blasts of energy radiation. Jubilee before being de-powered was able generate colorful explosive plasma energy blasts through her hands as any shape having different effects on the targets. The Silver Surfer who was given his powers to by Galactus has this power. He can manipulate the ambient cosmic energies of the universe and use them in any which way he chooses.

    His power comes from his board and he can manipulate energy into powerful blasts. Iron Man can also create energy blasts that are released through his hands by his power suit. Starfire also has this ability due to her transmutation and can release energy blast through her eyes or hands. He energy blasts are known as \"Star Bolts\" and are very powerful. Her blasts can break through solid concrete walls and this power was gained by the experiments s he was forced to endure by the Psions. Since it was known that Tamaraneans could absorb energy the experiments was able to make her absorb energy to where she could use them through her hands and eyes.

    Doctor Doom is considered to have this ability to a certain extent. Being quite good at sorcery, he is able to use magic to create magical energy blasts. Cerise also has this ability when she directs energy so she can use them as energy blasts. Big Barda also has this ability to a certain extent. When using her Mega-Rod she is able to unleash powerful blasts .

    Energy Constructs

    \"Green
    Green Lantern Corps

    Ability to create complex shapes or even functional machinery out of solid energy. One of the well known people to have this power is the Green Lantern Corps. All Green Lantern's have this ability to create objects from using energy from their power rings. The ring is only limited by the thoughts of it's user and can be used to create machine's and objects during battle. Another person who has this ability is Cerise. She has the ability to create objects form of red energy spectrum. She also used her powers to create objects like swords, force fields, shields, funnels, and more. She once even used this energy to fly a whole broken Sentinel holding her friends within, across the Atlantic Ocean as a means of disguise. Doctor Doom also has this power. Being skilled in magic, Doom has managed to use magic so that he can hold his enemies and could create shields of magical energy. Big Barda has this ability and is able to manipulate space at her will. She could use this to be able to teleport, reshape, or even transform or animate matter.

    Jade has this power. Star Sapphire has this ability, as a possesser of a Power Ring. Cyborg Superman would have this power holding the power of several Green Lantern rings and quite a number of Qwardian power rings. Vulcan is able to use his his energy manipulation powers to create constructs such as force fields, as is Radioactive Man. Invisible Woman and Songbird have been seen forming very complex constructs with their powers: the first has been seen forming weapons and strong forefields of all shapes and sizes, and the latter can also form many shapes, but usually forms wings that allow her to fly.

    Energy Conversion

    \"Dazzler:
    Dazzler: What A Light Show...

    Ability to absorb one form of energy and convert it into another form of energy. Dazzler is probably the most well known character to possess this ability, but she can only convert one type of energy to another: sound into light. Dazzler used to use her powers to make her concerts better, projecting amazing lights shows, but after training with the X-Men, she was able to use it in more offensive and defensive ways, an example being that she was able to shoot harmful light beams from her finger tips.

    Energy Form

    \"Proteus:
    Proteus: A Being of Energy

    The ability to turn into a being of pure energy. Many characters are able to use this as a form of self-destruction/resurrection. Nitro is able to charge himself until exploding in a similar manner (this is how he caused the destruction of Stamford, Connecticut) and re-form willingly after. The Sentry was usually witnessed pulling himself back together after death in a bundle of golden light. Marvel character Proteus, with his ability to bend reality, had a energy form, and was invulnerable to everything but metal which was able to disperse his form, and was able to use this form to possess others. New Son, a future and more powerful version of Gambit, was a being of pure energy and had great control over this. During her rise to a status of a goddess, Selene possessed a huge glowing body of blue energy, Gwen Tennyson is a member of a free-spirited race of energy beings called Anodites, having the ability to manipulate the life forces of other beings and warp reality.

    Energy Manipulation

    \"Sentry:
    Sentry: The Golden Guardian of Good

    The ability to generate, convert and manipulate energy of all forms. Vulcan has complete control over this power, and is even able to create barriers/shields around him and most probably other people that are strong enough to survive space (he'd also have to carry a lot of oxygen in there too). Ms. Marvel first gained this power when she was tested on by the Brood, and at first when she was Binary for the short while, she had a connection to a white hole that gave her a limitless energy supply. Nowadays, she tends to focus her energy into a beam that she calls a \"photon blast\" absorbs energies that her foes use to battle her.

    The Sentry, a very powerful being, also has this ability, and tends to use it in synch with his superhuman strength, creating devastating blows when he punches his enemies. Karolina Dean, because she is a Majesdanian, can adsorb solar radiation and unleash it into various multi-colored things, including beams and barriers/shields. Starfire can manipulate energy by absorbing it and using it as energy blasts which are released from her eyes and hands. Cyclops also have this ability. He manipulates solar radiation from the sun and uses it through his eyes as beams.

    Galactus also have this power and manipulates cosmic energies at his will. The Silver Surfer also has this ability due to his power being given to him by Galactus: The Devourer of Planets. The Dark Phoenix also have this power due to the Phoenix Force, the possessed Jean Grey an omega-level mutant has the power to manipulate energy at her will making her one of the most powerful characters in the Marvel universe.

    Earth Manipulation (Terra/Geokinesis)

    \"Petra\"
    Petra

    Ability to control earth; sand, stone, rock, lava, dirt, or minerals even geothermal activities. Magma mainly uses this ability to manipulate magma and lava, as this power works well with her other, pyrokinesis. Crystal and Meggan, althought two different characters, use this power in sync with others. Petra used her ability mainly to raise gigantic rocks and smash them into enemies, and was even seen using it to turn rock to diamond. Rockslide is able to reform himself from earth (see reformation above). Terra used her ability as a form of travel, flying about on a large piece of rock. Sandman is specifically only able to manipulate sand.

    Jack Hawksmoor, using his connection to a city, is able to manipulate earth, but he tends to use various other abilities. He used his ability to manipulate the earth and the other materials in the city to turn it into the \"Tokyo Giant\". Earthbenders are able to manipulate earth, and it is one of the four bending disciplines. Toph has a different kind of Earthbending though, and uses her’s to “see with her feet” using the vibrations in the earth to see. She can earthbend normally too.

    Electric Manipulation (Electrokinesis)

    \"Surge:
    Surge: ISHOOTELECTRIC!

    Ability to control, generate or absorb electricity. Storm, although her powers are generated from her atmokinesis, is able to adsorb, re-direct and generate lighting (Note: She can only do this with lightning, and no other form of electricity). Thor is able to do the same thing with his weather powers. Surge has a form of electrokinesis, where she adsorbs it and is able to discharge it into electric blasts or it allows her to run at very high speeds.Surge has to wear special gauntlets that stop her from adsorbing electricity, as she constantly does all the time. Mr. M, using his molecule manipulating powers, has been able to generate lightning. Namor has the power to discharge an electric type blast, similar to that of an electric eel. Very skilled Firebenders, such as Uncle Iroh, Fire Lord Ozai and Princess Azula, are able to use the ability of \"Lightning bending\", which involves using their Firebending to generate and manipulate lightning. This takes a lot of skill, and the person must have complete absence of emotion. Lightning in the show is called the \"cold blooded fire\".

    Elle Bishop, has complete control over her ability of electrokinesis and is able to direct them into blasts that can cause unconsciousness, or she can fire full blown blasts that kill. Elle's blasts can even be intense enough to cause flame, and she claims that once she set her grandmother's house on fire. Peter Petrelli mimicked this ability from Elle. Jenny Sparks, before she died, had the ability of electrokinesis on a vast scale, but she was unable to produce her own electricity. Although not technically electrokinesis, some characters such as Spider-Woman and Namor, can generate bio-electricity that they are able to use to fire at opponents.

    Fire Manipulation (Pyrokinesis)

    The ability to control the kinetic energy of atoms to generate, control or absorb fire. Pyrokinesis is probably the most well known and most popular elemental power. Crystal and Meggan use this power in synch with their other powers, Crystal with her other elemental powers and Meggan with her other elemental powers and her metamorphing and empathy.

    The Human Torch has the ability of pyrokinesis, and he himself is immune to fire and any levels of high temperature. When using his ability, he tends to shout \"FLAME ON!\" which has become a famous slogan. When using his powers, the Torch's body tends to be engulfed in flames, and it's speculated that this is the power that also allows him to fly, by using the flames to pick him up. The Phoenix Force , the cosmic being, is created of \"cosmic fire\" and gives it's hosts the abilty to manipulate this \"cosmic fire\".

    One of the personalities of the crazy powerful mutant Legion possessed the ability of pyrokinesis. A multiple personality of Typhoid Mary also possessed this ability. Magma is able to use this power in synch with her terrakinesis so she can manipulate lava/magma and engulf herself in a \"magma form\". Match, a student of the Xavier Institute, is constantly engulfed in flame and normally projects flame from his hands. Pyro, before he died, could manipulate fire, but not generate it. He wore a backpack of sorts that generated fire, which was led through pipes strapped to his wrists and he could manipulate it when released.

    Meredith Gordon, mother of Claire Bennet possesses this ability, and when the Company tried to \"Bag and Tag\" her, she set fire to the building she was in. She also is immune to her ability. Firebenders from Avatar: The Legend Of Aang/The Last Airbender are able to \"fire bend\". In the show, Firebending is one of the four bending disciplines. Well known Firebenders are Zuko, Fire Lord Ozai, Azula and Iroh.

    Immortality

    \"Mr.
    Mr. Immortal

    The ability to live \"forever\". Many characters claims to possess this ability however that isn't quite true as many are either immune to aging but are able to die in other ways or other reasons. One person however who does possess the true form of this ability is Mr. Immortal, who is unable to die no matter what (a fact that Deadpool has used for entertainment in the past). It was thought that the Sentry was immortal after many resurrection after deaths by characters such as Molecule Man, however he met his demise at Thor's hand (or should I say hammer).

    Vampires in most mediums are portrayed as being immortal, usually the type that are immune to aging, such as Angel from the Buffyverse, Dracula from the Marvel Universe or Eric Northman from the Sookie Stackhouse universe. Many gods are usually portrayed as being immortal, such as the Norse and Greek gods in the Marvel Universe, however it has been proven that age immunity seems to be their type of the power, and not the true version. Many people attribute immortality to characters with healing factors, however this is not a class of it.

    Light Manipulation

    \"Invisible
    Invisible Woman's Power are Derived from Bending Light

    Ability to control, generate or absorb photons. The character most probably well known for this ability is the Invisible Woman. While at first it was only thought that she only had the power of invisibility it was later revealed that she could create force fields, and then it was revealed that this was all through the power of light manipulation. Invisible Woman has complete control over her power, and is probably the most powerful member of the Fantastic Four. She can make just herself or others invisible. She can generate incredibly powerful force fields, enough to withstand one of the Hulk's punches, and she can reform these force fields create force blasts of sorts. She can generate force fields to knock people back, use it to lift and move objects and as a method of transport, create disks or a forcefield around her that allows her to move through the air. She can even use them to form weapons such as swords. Northstar and Aurora, when they were first introduced, could make contact and generate blinding flashes of light.

    Later, Northstar was able to do this himself, and create force blasts or blast light that can cause concussion. Recently, they have been seen to generate light when in contact with each other again, allowing them to blind Frenzy temporarily. Although Dazzler can't directly manipulate light, she can convert sound into light, releasing it in various different ways. Energy manipulators such as Vulcan, Ms. Marvel and the Sentry can also generate light, most commonly while blasting energy blasts.

    Magnetism Manipulation (Magnokinesis)

    \"Polaris
    Polaris : Mistress of Magnetism

    Ability to control or generate magnetic fields. Magneto is probably the best known charcter to possess this ability in all of comics, dubbing himself “The Master of Magnitism”. Magneto is an Omega Level Mutant and is very a very powerful magnokinetic. He is also very creative in the ways he uses his powers such as creating forcefields, raising and reconstructing Asteroid M and holding it in Earth’s orbit and controlling radiation in the electromagnetic wavelength. Magneto’s daughter, Polaris, also has the ability of magnitism manipulation, but is much less powerful than her father, but powerful none the less. She lost her magnetic abilities originally after M-Day, but Apocalypse’s technology wired to her nervous system replicates her original ability and she is now more powerful than ever, and has been seen using her powers to restrain powerful combatants such as Vulcan, move and shield a spaceship, hold a ceiling up below an ocean and remove a chip from a Skrull’s brain. In DC Doctor Polaris and Cosmic Boy (as well as all from his home planet) are the most famous users of this power.

    Matter Manipulation

    Mass Manipulation

    Ability to increase or decrease mass in an object or person.

    Molecular Manipulation

    Ability to mentally manipulate molecules and objects on a molecular level. Mole

    Necromancy

    The ability to communicate with, manipulate, and/or reanimate the dead

    Phasing/Intangibility

    \"Kitty
    Kitty Pryde: Phasing

    Intangibility or phasing is the ability to pass through a solid object. People with this power are able to push their atoms through the spaces of that of solid objects. Perhaps the character best known for having this power is Kitty Pryde. She can use her powers to a wide range of effects, such as walking on air (this is done automatically when she phases, otherwise she would fall through the floor (she can use this ability to ascend and descend too)). It is possible to use phasing as an offensive power, by phasing someone into a solid object, stop phasing, causing their atoms/molecules to fuse.

    Another known possesser of intangibility is D.L. Hawkins. Some powerful telekinetics, such as X-Man are able to use their telekinesis on a atomic/molecular level allowing them to use this ability to force they're atoms through that of a solids, allowing them to phase. People with density control can alter their density allowing them to become intangible. Loa, a student of the Xavier Institute is able to phase, but the object crumbles/disintegrates after she has passed through it.

    Plant Manipulation (Chlorokinesis)

    \"Poison
    Poison Ivy

    Ability to accelerate the growth of, control or animate plant life. Perhaps the most well-known prime new age character to possess this power is Klara Prast. Klara is from 1907, and was rescued from her abusive husband by the Runaways after Karolina witnessed the use of her powers and followed her. Klara describes her ability as “talking to [the plants]”, which is clear when she gives them verbal commands and they obey, althought this isn’t always required. It is obvious that Klara’s emotions are tied to her ability, because despite her great control over the ability, it is obvious that sometimes they overide her control. Another character with this power is Black Tom Cassidy, or at least he had it previously. Cassidy was a very powerful chlorokinetic, and gradually as his powers grew transformed into a mobile tree, and was able to reform if he was destroyed. Cassidy was also much more brutal with the use of his power, and once used it to break every bone in Squid-Boy’s body. Cornelia Hale also has this ability, but it extends beyond living plants. She is also able to control wood and use it very effectively.

    Plasma Manipulation

    Characters who can produce external plasma. Usually used for the purpose of pyrotechnic blasts.

    Probability Alteration

    \"Black
    Black Cat

    Ability to alter probability, causing unlikely things to happen or likely things to not happen. This was the Scarlet Witch’s natural mutant ability was this and she was able to cause chaos for many using it, and would dispel this in the form of hex bolts, and her powers were later augumented by her trained magical powers. She has caused everything from the spontaeneous melting of a gun barrel to the explosion of a gas station. Another character with this ability is a Black Cat, which turned out to be a latent mutant ability, that was activated through scientific experiments conducted on the character. Similar to Scarlet Witch, Black Cat could make guns jam etc.

    But, Cat’s power had a side affect, which involved accidently affecting the luck of anyone who’s in her vicinity for too long, causing it to turn bad. Doctor Strange then lifted her ability magically.

    Radiation Manipulation

    \"Radiactive
    Radiactive Man: BOOM!

    Ability to generate, manipulate or have immunity to toxic radiation. Starfire has this ability and can absorb any kind of radiation without having any effect on her. Radioactive Man is able to manipulate radiation on a wide scale, using it to various degrees and effects such as creating forcefields or dosing car engines with small levels of radiation, causing them to explode. Ted Sprague was a lot less adept in using his ability. Over the course of their relationship, Sprague was accidently (not knowing he had this power) releasing low levels of radiation, and although not strong enough to kill her instantly, it caused her to get radiation cancer, that eventually killed her. Other times, Ted, if angry or injured, would exploded causing high levels of damage. Once after being told not to \"burn hot\" but to \"Burn bright.\", Ted was even able to produce an E.M.P, causing a power failure at the Primatech Paper, Odessa, Texas facility.

    Reality Warping

    \"And
    And With Three Little Words...

    Ability to change or manipulate reality itself. The Scarlet Witch is known for her ''hexes'' which can affect probability, but it was revealed that her powers are manifestation of chaos magic with which she can manipulate reality. She was able to return Wonder man from the dead, create the House of M, stripped the powers of over 90 % of the mutant population and so on. Proteus, another character from the Marvel Universe, was a powerful reality bender and usually distorted reality around him into insane version of the landscapes among other feats that were attributed to his insanity.

    Another powerful reality warper is Mad Jim Jaspers who's universe were supposed to be destroyed because it will consume the others universes. Franklin Richards although still young is the most powerful reality warper in the Marvel Universe, surpassing even Mad Jim Jaspers. Mr. Mxyzptlk from DC is from another dimension and thus he can make everything he want. Reality warpers could be limited to probability manipulation, such as the Black Cat or Domino.

    Sound Manipulation (Audiokinesis)

    Ability to manipulate sound waves. Although their abilities do not completely fit the criteria, mutant Banshee and his daughter Theresa (formerly Siryn, now going by Banshee as a tribute to her deceased father). They were both able to form incredibly powerful sonic blasts, and are even capable of using them to fly. Theresa's abilities have proven to be more flexible than her father's, as she has been seen using sound to alter brain chemicals in order to seduce someone or to limit a sound to a single person's hearing. See Ruckus or Klaw.

    Temperature Manipulation (Thermokinesis)

    \"Iceman:
    Iceman: He's As Cold As Ice!

    Ability to speed up or reduce the kinetic energy of atoms and thus raising or reducing the temperature. There are normally two different types of thermokinesis: cryokinesis and zestokinesis . Cryokinesis is the ability to reduce the temperature, while zestokinesis is the ability to increase the temperature. Iceman has the ability of cryokinesis, and can reduce the temperature, this working well with his power of hydro/aquakinesis, allowing him to do various things, most commonly making ice. This power allows him to freeze the moisture in the air, allowing him to create ice slides for transport. This power can also be used offensively, as seen when Iceman froze every molecule in Legion's body.

    The Human Torch has the ability of zestokinesis, and can raise the temperature naturally with his fire or just raise the temperature. Equinox, a character who has both these these abilities, uses his powers in a very productive, way, using them as a way to gain superhuman strength and superhuman durability. Superman has the ability to \"super-cool\" air down in his lungs and then blow it out, allowing him to freeze opponents and enemies.

    Time Manipulation (Chronokinesis)

    Ability to affect the flow of time by slowing, accelerating or even stopping it, although in most series' the ability is rare and the individual possessing it is considered very powerful, and utilizing it can be draining.

    Transmutation/Alchemy

    The ability to alter chemical elements, changing them from one substance to another by rearranging the atomic structure. May be limited to self-transmutation.

    Water Manipulaton (Hydrokinesis)

    \"Hydro-Man\"
    Hydro-Man

    Ability to control, generate or absorb water. Although they don't technically have complete control over water, atmokinetics such as Storm and Thor can make it rain heavily, causing floods and such. Meggan and Crystal both use this power in synch with their others. Hydro-Man has this ability and can turn into water and manipulate it from outside sources.Hydro-Man has complete control over water, and is even able to turn his body into water, making it hard for him to be hurt, although he has been defeated through forms of separating his body and evaporation.

    He can reform himself from water and even use this to increase his mass levels. He can freeze or rise the temperature of his whole body or just certain appendages of it, allowing him to create ice weapons or turn to steam. He can also use his water form to squeeze through small spaces. Waterbenders, as suggested in the name, can bend water. They can also lower or rise the water's temperature, allowing them to make ice (for offensive attacks) or steam (as cover).

    They are even able to throw it at a high enough velocity that it can cut through solid objects. Waterbenders receive their powers from the moon, because that was how the original waterbenders learned to waterbend, by watching how the moon pushed and pulled the tide

    Weather Manipulation (Atomokinesis)

    \"Storm
    Storm and Thor (clone)

    Ability to control or mentally affect the weather. This includes the ability to generate various natural phenomena like rain, tornadoes, lightning, etc. or control the intensity of the weather. Storm, a powerful mutant, described by S.H.I.E.L.D. as a \"possible Omega-Level Mutant\", has this ability, and is probably the best known character for possessing it. She can cause powerful rain storms, tornadoes, change temperatures, channel and generate lightning, snow, gusts of wind and more. Storm is immune to all of her powers. Storm has such control over her ability that she is able to manipulate the air around her close enough to allow her to fly. When Storm uses her powers, her eyes turn pure white. Storm has to keep her emotions under control as her emotions can affect her powers, which could potentially harm the environment in devastating ways.

    Storm has the potential to evolve into an \"Elemental\" as seen in the pages of X-Men during \"The Twelve\" Storyline. Thor is another well known being who possesses this power, but he doesn't possess this ability himself, rather his Mjolnir does. He is able to use it to manipulate the weather around him and even manipulate earth as recently seen. Thor usually channels lightning through the mystical hammer and uses is to attack him enemies. Weather Wizard is a lesser known character with this ability. Originally needing a wand that acted like Thor's Mjolnir he has since been able to control various affects of the weather such as lightning, rain, wind without the need of his wand.

    Force Field Generation

    \"The
    The Silver Surfer and Galactus

    Ability to project powerful fields of manipulated energy which protect the user and allies from harm, to capture or knock out foes. Green Lantern's have the ability to create force fields with their minds. They can use their rings to protect themselves and others and at the same time attack. Members such as: John Stewart, Guy Gardner, Kilowog, Kyle Rayner, and Gnort are just a few. The Guardians of the Universe also have this power since they are the ones who gave the Green Lantern's their power in the first place. The Invisible Woman has this ability. Not only can she generate a force field for herself but can create one around others. Captain Britain have this power. Argent have this ability. Jean Grey has this power and creates an force field by using her mind. Enchantress has this power also due to her being a sorceress. Sailor Venus has this power. Magneto has this ability because of his years experience of practicing his mutant powers. Sinestro and the Sinestro Corps also have this power and is very similar to that of the Green Lantern Corps. Violet from The Incredibles has this power.

    Star Sapphire has this power and her powers are also closely related to that of the Green Lantern Corps. She creates a force field with the sapphire crystal thats on her head. Firestorm can also create his own force field. Circe also have this power since she is a Goddess. The Silver Surfer also has this ability and creates his force fields by getting power from his board. The Silver Surfer obtain his abilities when it was given to him by Galactus: The Devourer of Planets. In an attempt to save his own planet, The Silver Surfer would find planets for Galactus to eat but was given amazing powers.

    Energy Absorption

    \"Sunspot:
    Sunspot: Mutant Power Allows Him To Draw Energy From The Sun

    This means that one's powers come from a much greater energy source, and means they are able to transform it into various blasts or other energies at an unlimited level. Though there are many who use energy sourcing as a way to gain superpowers, the source they use is what defines them. Heralds of Galactus such as Silver Surfer and Fallen One are nearly all-powerful however this is only because they are granted power by the Power Cosmic and dark matter, respectively. Another creation of Galactus, Tyrant, draws his power from the biospheres throughout the universe, growing weaker after every planet that his creator devours. Bishop absorbs energy, only to expel it thus it has become his superpower to expel energy. Black Bolt uses electrons as the source of his almighty power, as he can use them to create colossal effects. Sunspot, much like a photosynthetic life form, gains his power from the Sun, as it will grant him both superhuman strength and the ability to emit heat himself. The Quantum Bands grant Quasar powers nearing the level of a cosmic entity.

    Cannonball does not need an energy source to use his superpowers, however he can draw upon outside energy sources to strengthen himself. Ms. Marvel can increase her already formidable strength by drawing on outside sources, in her Binary form she can reach cosmic levels. Erg also absorbs whatever energy is near him, granting him the capability of releasing it at will from his right eye in the form of concussive blasts.

    From the DC Universe some well-know characters are those whose source of power is stars, Starman draws his power from them, in the form of mass that he can place in whatever he chooses. Even more popular are Superman, Superman Prime, Supergirl, Power Girl and all other Kryptonians who gain superpowers when on Earth thanks to its yellow sun. Starman also has this power and he does this by taking mass from stars and induce it into any object thereby making it super-heavy.

    Transportation/Travel

    Dimensional Travel

    \"Magik:
    Magik: Magic!

    Ability to create wormholes, portation \"discs\" or other spatial portals for transport between two non-adjacent locations. Blink can deploy her power in a variety of ways. Her power is to make portals, that can allow her and the people who enter to come out another. Blink can make these portals extend over a short or vast distance. By channelling her portals into javelins, she can throw them at enemies, and when they hit, they expand to normal size, and teleport chunks of or the whole of what they've hit. Blink can even use her portals for normal hand-to-hand combat, where she punches through one portal and it comes out in a portal behind and enemy. Blink can even use her portals to re-direct attacks.

    Blink's name comes from the sound when she opens her portals. Pixie's spell, \" Sihal Novarum Chinoth\", allows her to teleport herself and multiple others at the same time to another place. Illyana Rasputin could create stepping discs that allowed teleportation, and could even create them so they'd come out in a different dimension. Abyss previously had the ability to pull things into his body, where they would be transported to the dimension of fire and brimstone. When Nightcrawler teleports, he briefly and quickly enters the dimension and fire and brimstone and then reappears wherever he needs to be.

    This ability is the main ability of Spiral, who can teleport herself and others fast distances and to other dimensions. Cloak can pull people and himself into his cloak which is a portal to the Darkforce Dimension, and then, like Nightcrawler, reappear at his target destination. Dr. Strange has this ability, as one of his magical talents.

    Electrical transportation

    Ability to travel through electrical conduits such as power lines or telephone lines. Can enter through devices such as televisions, electrical poles or computers.

    Omnipresence

    Ability to be present anywhere and everywhere always

    Summoning/Conjuring

    Ability to summon objects or beings for assistance.

    Superhuman Speed

    \"Fast
    Fast Explosions = Speed

    Ability to move at speeds faster than a normal human. The degrees of superhuman speed vary, whether it be from running about 60 mph like Spider-Man or if it's in the form of where you can run half way around the world in a few seconds. Such superhumans as Speed, Quicksilver, Northstar and Aurora are able to move at extremely fast speeds, much faster than any vehicle etc, and they can even run on water or exceed the speed of sound, without getting injured. The first is even able to use his ability to shake objects and generate special vibrations that speed up their molecules, causing them to spontaneously combust.

    The latter has been seen to use her super speed to move fast enough to allow her fingers to pierce a humans body in the stomach and come out their back. Quicksilver can run fast enough so he's able to walk on water. While most of these people run at these high speeds, others such as Northstar can run or fly at these speeds. While they run at these fast speeds, it is believed that everything around them appears slower, very slow in fact, as they're moving so fast. While there are these people who can move at these very high speeds, there are some who don't, but still can move fast enough for it to be classed as superhuman speed, people such as Spider-Man or Beast. Surge, a New X-Man is able to disperse her electricity in a way that allows her to run at superhuman speeds.

    When she runs at these speeds, her words merge together into one long one, and she tends to shout. If she uses to much electricity, she becomes sizzy and tired, and can sometimes pass out. In the DC Universe, The Flash has this power gaining them the title \"The Fastest Man Alive\". Barry Allen, Jay Garrick, Wally West, and Bart Allen all have this power and are all different people taking up The Flash mantle. They all get their powers from the \"Speed Force\". Wally West was the only Flash that was able to tap into the full power of the \" Speed Force\" and was able to come back traveling at speeds that are impossible without being affected by physics. The Flash could also be able to move so fast that they could run into other dimensions.

    Teleportation

    \"Nightcrawler:
    Nightcrawler: Bamf!

    The ability to move from one point to the other without entering the space in between your current space and destination. There are many variations of of teleportation, but in comics, teleportation is normally accompanied by a sound or sign or both. Blink's \"blink\" is one example, but perhaps the best known one is Nightcrawler's \"BAMF!\", and the fact that he disappears and reappears in a cloud of purple smoke, accompanied by the \"BAMF!\" and apparantly the smell of brimstone. Cloak is able to teleport by pulling him and others into the Darkforce Dimension and reappearing somewhere else. Pixie is able to teleport via magic (this being the only spell/magical performance she can do) by saying “Sihal Novarum Chinoth!”. Another well known teleporter is Hiro Nakamura from the television series and web-comic Heroes. Unlike the teleporters above, Hiro just disappears and reappears leaving no sign. Hiro can travel over vast distances too, and through time.

    Time Travel

    \"Hiro:
    Hiro: Yatta!

    Ability to travel back and forth through time. This does not include the ability to travel through space to, thus teleporting through space, unless the person also has that power. The person therefore will only be able to travel from the exact spot the person left, and reappear somewhere through time, whether it be in the future or in the past. The only problem with this ability is the exact same problem with teleportation: they could end up merging with something else that is there, and thus die. Teleporters normally have other abilities that make sure that they don't end up occupying the same space as another person or object, but as there are not many people with the ability to travel through time themselves (strictly speaking about their powers, not if they use a machine etc), it is unknown if these characters have these other powers. Cable is a well known time traveller, but he is only able to time travel through machinary in his arm.

    Forge is well known for being able to create machines that allow time-travel, and he has built many over the years, most recently seen in Messiah Complex and Cable. One of the most well known time travellers though, who actually has this power is Hiro Nakamura. With his ability to travel through space too, he can travel anywhere. But his ability is more of the chronokinetic type rather than just time travel.

    Flight

    \"Cannonball:
    Cannonball: Flying

    Flight is the ability to fly. This feat can be achieved in various different ways, such as:

    • Self Propelled Flight - The ability to fly without the aid of any wings etc. An example of a superhuman who possesses this ability is Nathan Petrelli.
    • Wings - Wings that have been grown allow the possesser to fly by flapping them. An example of a superhuman with this power is Angel.
    • Wind Current Control - With the ability of aerokinesis, it is possible for the possesser to have such fine motor control over they're ability that they're able to use it to lift them, allowing them to fly. Examples of superhumans who possess/possessed this power are Storm and Renascence.
    • Magnetic Levitation - By manipulating the magnetic poles of a planet, a superhuman possessing magnokinesis could levitate themselves allowing themselves to fly. Examples of superhumans with the ability to do this are Magneto and Polaris.
    • Telekinetic Levitation - Using telekinesis, a telekinetic can levitate and move themselves through the air using telekinesis. Examples of superhumans with the ability to do this are Jean Grey and Marvel Girl.
    • Gravity Manipulation - Manipulating gravity allowing the possessor to fly. An example of a superhuman with this power is Gravity.
    • Using the Power Cosmic
    • Sonic Repulsion Field - Using sound waves, the possesser of this ability is able to fly. Banshee and his daughter, Siryn are able to do this.
    • Energy Aura Projection
    • Thermo-Chemical Energy - The ability were a person's body generates this energy allowing them to use it in various ways. Cannonball possess this powers, and is able to use the energy to thrust/propell himself through the air and generate his powerful blast field.

    Miscellaneous Powers

    Illusion

    \"Lady
    Lady Mastermind: The Illusionist

    Ability to alter or deceive the perceptions of another. Can be sensory, a light or sound-based effect, or an alteration of mental perceptions. Some superhumans with this ability, such as Lady Mastermind, can make the person's body re-act to what she makes them see, by changing their perception of the area around them. Also, when Lady Mastermind casts her illusions, the person who it's being cast on doesn't seem to question the sudden change of the surroundings. She can also make they're body re-act to what they see, making this an effective way of killing people. Although Lady Mastermind hasn't been seen performing large scale illusions, it is thought that she has the potensial as her relatives, such as her sister, Martinique (known as Mastermind) and their father, Mastermind have been seen perfoming illusions on a vast scale.

    Martinique recently turned the whole of San Fransisco into a \"hippie land\" and her father was able to use his ability to make the whole world forget who the Sentry was. Moonstar had the ability to cast illusions, but only on the persons greatest fear. Another illusionist, Candice Willmer tends to use her power to alter her physical appearance (sort of like shape-shifting). Although Wilmer has been seen to use her powers to alter the environment around her also. Pixie like her sibling's and father( Lady Mastermind, Martinique and Mastermind) has the ability to create illusions but she unlike the rest of her family can't control these illusions. Pixie does this by producing a pink glitter like substance which cause's \"cheerful\" illusions.

    Shape Shifting

    \"Mystique:
    Mystique: A Mistress of Disguise

    Ability to change appearance or body structure at a molecular level. Mystique is probably one of the best known shapeshifters in the comic industry, using her power to it's full potential. At first, she could only shapeshift to appear as someone who is of the same height and weight as her. But, a few years ago, Mystique was exposed to very, very high levels of radiation, and now she can morph into anything, and normally when in battle grows claws and talons etc and uses them to fight with. She can even use her shapeshifting abilities to create her own clothes and weapons! Changeling, a member of the X-Men for a time also had this ability.

    He was killed after a while so his ability wasn't explored that much, but he did appear in the X-Men Animated Series under the name Morph, where he had very good control over his ability and was able to copy the physical structure of another being at the very least. In the DC universe the Martian Manhunter has this ability. He usually shapes into a dragon and uses his powers by taking the shapes of his enemies, alien or human. Beast Boy also has this power. Beast Boy's powers of shape shifting is when he turns into any animal he wants.

    Animal Morphing

    \"Beast
    Beast Boy

    Ability to take on animal forms. May be able to take on the abilities of the altered form. One of the most well known characters to possess this power is Beast Boy. He has the ability to transform into any animals and even extinct species. In the show Teen Titans he would turn into a T-Rex. When morphing he can stay as an animal without it having any effects on him and he also picks up the animals abilities when changed into the specific animal. If turns into a cheetah he will be able to run as fast as one. Also when morphed into different things he always stay his original color which is green. Wolfsbane a member of the New Mutants also have this power, but here power is more of a sub-catagory, with its own name called lycanthropy, meaning that she is able to turn into a wolf. Wolfsbane can turn into a full wolf, or a half-wolf half-human. When she is in these forms she tends to be a lot more feral and aggressive and gains the enhanced senses of a wolf.

    Elasticity

    \"Mr.
    Mr. Fantastic

    Ability to stretch, deform, expand and contract one's body into any form they can imagine. Some of the most well known characters in comics to have this power is Plastic Man, Elongated Man, and Mr. Fantastic. Plastic Man gained his powers from being struck by a falling drum full of acid. The acid would go through his wounds which would give his elastic ability. Plastic Man taking up chemistry would create a formula using extracts from a plant called Gingold giving him the ability to stretch his body. In the Marvel universe, Mr. Fantastic has this abililty. He can stretch over three miles or fit himself through a pin hole, or even smaller. He could also expand just one part of his body or he could expand his organs so he is able to have a longer breath. Mr. Fantastic can also change his appearance and even imitate an inanimate object.

    Inorganic transformation

    Ability to transform completely into an inorganic substance while retaining organic properties

    Liquification

    Ability to turn partially or completely into a liquid.

    Size Shifting

    Ability to increase or decrease one's size. A person who has this ability for

    \"No

    example would be Giganta. Size shifting often ignores matters of mass over volume and the basic laws of thermo dynamics and energy exchange where a person or creature inflates to a new size an somehow gains mass without any visible means of accruing it. This manifests itself in a massive increase in strength while keeping the same basic body-shape and structure. Some creatures will warp into a new more visually powerful form as well.

    Sublimation

    \"Vapor\"
    Vapor

    The abiltiy to turn into a gaseous state. This skill can be a magical power to be come ghost-like and invisible but due to the visual nature of comics it more often gifts the user with an insubstantial form that can pass through openings, or even solid by porous walls and barriers, many times smaller than their physical form. When in gaseous form the character my or may not keep their general physical appearance to aid with recognition or become fractured to the point of being unrecognizable as an amorphous cloud.

    Often being in gas form has significant down sides making the user susceptible to weapons and situations that would not be an obstacle otherwise for example: being trapped inside glass without the mass to break the relatively thin glass nor have enough room to re-solidify.

    As with size shifting this often ignores the laws of thermo dynamics where mass and weight are ignored, or not explained, as the character changes forms.

    Matter Mimicry

    \"No

    Ability to transform into substance touched. Absorbing Man is very well known for having this ability and has defeated countless heroes by turning himself into concrete, steel and sometimes by even copying their power via skin to skin contact. For a time also, he would touch drugs, turn into them and sell himself on the streets. Mimicing a known material has long been a popular trait for super heroes as firstly it can help name a new character, names of metals and substances giving an idea of the implied abilities of the hero, or a nickname (e.g. Man of Steel *bad example i know please replace with a better one*). It can also be visually represented where a character changes into a crystalline form, for example, as an artistic and dramatic visual.

    Were-Form

    \"No

    A partially animal form that allows enhanced physical abilities like Wolfsbane. Anthropomorphic characters like werewolves have a large established folklore of strength, aggression and a list of vulnerabilities from which to draw from when imbuing a character with traits. Its often used as a form of curse on existing characters to give them a spin during an arc or one-shot. The effects can be either beneficial (enhanced powers: strength, agility, speed, scent) or negative (forced transformation, loss of rational thought and feral nature).

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105403/","id":105403,"name":"Superman, Champion of the Oppressed...","issue_number":"1"},"id":49870,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9057/270334-120591-superpowers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9057/270334-120591-superpowers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9057/270334-120591-superpowers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9057/270334-120591-superpowers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9057/270334-120591-superpowers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9057/270334-120591-superpowers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9057/270334-120591-superpowers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9057/270334-120591-superpowers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9057/270334-120591-superpowers.jpg","image_tags":"All Images,Magic"},"name":"Superpowers","site_detail_url":"https://comicvine.gamespot.com/superpowers/4015-49870/","start_year":"1938"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49929/","count_of_isssue_appearances":88,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-08-30 16:44:10","deck":"At least once during (most) superhero's career, the hero will decide to throw in the towel 'for now and forever'. They usually come back a few issues later.","description":"

    Overview

    The life of the super hero is a tough one, and probably a lot harder than the non-super hero. But from time to time an event or injury breaks their will to carry on the fight against a seemingly endless roster of aggressors.When this happens the Hero will usually find a protégé to train up or a new hero will move in to fill the gap or possibly the protégé will take on their masters identity completely as a direct replacement.

    Some comics deliberately use the retirement of an aging hero or team of heroes as a thematic starting point. This is most notable in the series The Watchmen that uses the retired and replacement heroes as the basis for the characters and a plot that intertwines around that idea.

    Retirement is a particularly dangerous act for a hero and alongside revealing their secret identity is probably the time when they re at their most vulnerable; both thought lack of readiness and age.

    Characters like Superman and Spider-man have become disillusioned with their charges and left, leaving them to fend for themselves, in a kind of early retirement.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-4767/","id":4767,"name":"The Second Batman and Robin Team","issue_number":"131"},"id":49929,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/12075/273150-106990-super-hero-retireme.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/12075/273150-106990-super-hero-retireme.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/12075/273150-106990-super-hero-retireme.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/12075/273150-106990-super-hero-retireme.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/12075/273150-106990-super-hero-retireme.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/12075/273150-106990-super-hero-retireme.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/12075/273150-106990-super-hero-retireme.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/12075/273150-106990-super-hero-retireme.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/12075/273150-106990-super-hero-retireme.jpg","image_tags":"All Images,Dumping the Costumes"},"name":"Super Hero 'Retirement'","site_detail_url":"https://comicvine.gamespot.com/super-hero-retirement/4015-49929/","start_year":"1960"},{"aliases":"Emotional Electromagnetic Spectrum","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-49955/","count_of_isssue_appearances":256,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-03-07 05:59:56","deck":"The energies created by the emotions of sentient life, visible as different wavelengths of light. This concept appears only in the DC universe.","description":"

    Overview

    The Emotional Spectrum was created early on when sentient life first appeared in the universe and its thoughts and feelings became powerful enough to coalesce into in a whole band of energy. This band of energy conformed to the spectrum of visible light with red, orange, yellow, green, blue, indigo and violet all corresponding to a specific emotion. Each band of emotional energy is represented by a corresponding Emotional Embodiment.

    Rainbow Girl, a substitute Legionnaire in the 31st century, is known to be able to access the full powers of the Emotional Spectrum.

    The Spectrum

    Red Throes of Rage

    \"Red
    Red Rage

    As an energy on one of the far ends of the Emotional Spectrum, the Red Light of Rage has an overpowering effect on the thoughts of those who managed to wield it, and its energy often coalesces as intense heat that burns as long as the anger is there to serve as its fuel. The overwhelming power of the Red Light can often burn away the power of most other lights in the spectrum. Atrocitus of the Five Inversions managed to harness the red light in a Central Battery on Ysmault to power his Red Lantern Corps. The Red Lanterns become so consumed with rage that they are literally filled with its red energy, which replaces their blood and heart.

    The Emotional Embodiment of Rage is The Butcher.

    Orange Light of Avarice

    \"Orange
    Orange Light

    As the pure light of greed, exposure to the orange light can have addictive effects on sentient beings who try to wield it. Its consumptive power can also drain the energy from most other lights.

    The Orange Light was harnessed into a power battery thousands of years ago by a number of beings, who made a deal with the Guardians of the Universe to keep it. In the thousands of years since, it has stayed buried in the planet Okaara of the Vega System. Larfleeze is the last surviving keeper of the Orange Light and uses it to create his Orange Lanterns.

    The Emotional Embodiment of Avarice is Ophidian.

    Yellow Fire of Fear

    \"Yellow
    Yellow Fire

    First harnessed by the Qwardians,who slowly killed off a planet they held dominion over in order to access it, Sinestro would later wield the Yellow Light and use it to establish and empower his Sinestro Corps as a dark mirror of the Green Lantern Corps. The Yellow Light has the specific ability to weaken the strength of the Green Light of Will, making it the perfect weapon against Green Lanterns who have not confronted their fears.

    The power of the Yellow Light grew intense enough to summon forth a monstrous elemental that completely embodies fear. This being became known as Parallax.

    Green Might of Will

    \"Green
    Green Lanterns

    As the balanced and center color of the Emotional Spectrum, it was the power of the Green Light that the Guardians of the Universe chose to harness for the foundation of the universal police force, the Green Lantern Corps. Despite the fact that 'will' is not technically an emotion, it is still included as one of the better-known Lantern groups.

    The Emotional Embodiment of Will is Ion and inhabits the body of Sodam Yat.

    Blue Rays of Hope

    \"Blue
    Blue Rays

    Said to be the most powerful light of the Emotional Spectrum, the Blue Light apparently has the drawback of being dependent on the Green Light of Will to be utilized to its full power. This symbiotic relationship also strengthens the power of the Green Light when its wielded in the vicinity of a bearer of the Blue Light. The Blue Light was channeled by two exiled Guardians, Ganthet and Sayd, to create the Blue Lantern Corps.

    The Emotional Embodiment of Hope is Adara.

    Indigo Glow of Compassion

    \"Indigo
    Indigo Glow

    Discovered by the Green Lantern [[Abin Sur]], the Indigo Light is shown to shine compassion on to those who wear an indigo ring. It is wielded by the group calling itself the Indigo Tribe, formerly made of the worst sadists and psychopaths in the galaxy, now seeking to spread goodwill throughout the universe. A female calling herself Indigo appears to be the leader of the Tribe. Their indigo rings allow them to replicate the power of the other six corps; an agonizing Green Lantern was given a mercy killing when exposed to the staff, while a Sinestro Corpsman was in turn overwhelmed by a massive yellow construct and scared away.

    The Emotional Embodiment of Compassion is Proselyte.

    Violet Aura of Love

    \"Violet
    Violet Aura

    Like the Red Light, the placement of the Violet Light at the far end of the Emotional Spectrum means it can have a particularly overwhelming influence on the minds of those who wield it. The power of the Violet Light was discovered by the Zamarons, who found the remains of two embracing lovers fossilized in violet crystal. Their first attempt to harness this power proved its overwhelming effects, as the original Star Sapphires possessed a rabid obsession in their pursuit of love. The Zamarons have since refined their methods for channeling the Violet Light with their new Star Sapphire Corps through new Star Sapphire Rings and Batteries fueled from a massive super battery on Zamaron.

    The Emotional Embodiment of Love is The Predator.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6043/","id":6043,"name":"Peril Of The Yellow World!; Zero Hour in Rocket City!","issue_number":"15"},"id":49955,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/57845/1164536-green_lantern__52_011_12.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/57845/1164536-green_lantern__52_011_12.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/57845/1164536-green_lantern__52_011_12.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/57845/1164536-green_lantern__52_011_12.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/57845/1164536-green_lantern__52_011_12.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/57845/1164536-green_lantern__52_011_12.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/57845/1164536-green_lantern__52_011_12.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/57845/1164536-green_lantern__52_011_12.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/57845/1164536-green_lantern__52_011_12.jpg","image_tags":"All Images,cosmic entity,Emotional Spectrum,Hosts,White Lantern"},"name":"Emotional Spectrum","site_detail_url":"https://comicvine.gamespot.com/emotional-spectrum/4015-49955/","start_year":"1962"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50042/","count_of_isssue_appearances":174,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-03-29 06:56:00","deck":"Traditionally alchemy is the quest to change 'worthless' base metals into gold via magic or means of chemistry.","description":"

    Description

    \"Alchemy is the reconstruction of matter in new forms based on the knowledge of natural laws. This world flows by obeying these laws. Death, too, is part of that flow. Accept the flow of the world.\"

    Traditionally alchemy is the quest to change 'worthless' base metals into gold via magic or means of chemistry.

    Alchemy is the ability to change an items form and shape at will with a sort of \"medium\" called a transmutation circle. Transmutation circles are generally complex circle shaped markings, and the type of transmutation circle depends on the type of transmutation involved. Say, if the transmutation requires that someone simply change a log to a wooden horse, you would need a certain type of circle for it to be effective.

    However, there are still multiple ways in which some people may bypass these laws, such as Ed and Izumi Curtis (the Elric brother's mentor and a respectable alchemist herself, though she doesn't like to use it to make her life simpler) seeing the Gate of Truth in order to become as skillful in the art as they are.

    Alchemic Laws

    Though at first the power of Alchemy may seem unlimited, there are certain physical laws that it cannot bypass by any normal means. To transmute something into something else, it must have the same properties (i.e. the log and wooden horse) and equally importantly they need to be of the same mass. It is against the laws to transmute a log into an entire cabin, for example.

    The Alchemical transmutations are all based off of the four elements fire, wind, water, earth, and the circles they are placed in. All of these things heavily affect the outcome of the item. In example, say a certain circle can change a piece of iron into a hammer, and another would turn it into a spear.

    Alchemic Exceptions

    There are a certain exceptions to the entire necessity of a transmutation circle as a whole. First off, there is Edward Elric, the Fullmetal alchemist. He can use Alchemy without use of a transmutation circle because he has done the unthinkable by attempting to bring back human life. Because of this, Edward Elric was sent to \"The Gate\" and saw \"Truth\", a strange malevolent being that took what he wanted when he wanted. Also, Izumi Curtis, Edward Elric's teacher, has use of this along with his brother Alphonse, who has also seen \"Truth\".

    Along with seeing \"Truth\", there is also another way to use Alchemy in an instant way: the use of transmutation Circles on your arms or hands at all times. This is what Colonel Roy Mustang does to shoot the flames out of his gloves through the air and friction, a very strategic move for combat.

    There is also one other way to gain power of Alchemy and bypass the laws, and that was by using the legendary artifact: The Philosopher's stone. This legendary artifact is very elusive and it seems that no one has been able to find it...it is wondered if it even exists.

    There are many Alchemists in the Fullmetal Alchemist world that can perform Alchemy, also known as the devil's magic. Many people, like the Ishbalans, believe that it is an unholy act against the Gods to change an objects form or shape, like Scar, the Ishbalan serial killer who is currently targeting the State Alchemists all across Central due to his holy beliefs of the God of Ishbala.

    Notable Users

    Edward Elric- he is able to use Alchemy without a transmutation circle, as he saw \"Truth\" when he went through the gate after he tried to bring his mother Back to life...at the expense of his left leg. He would later lose his arm by trying to save his brother Alphonse Elric, as rather than him losing a limb like Ed did, Alphonse lost his whole body.

    Roy-uses the transmutation circles on his gloves and the friction from when he snaps his fingers to create fire in dry air. He is all but useless in the rain.

    Scar - his right arm is not his, it was his older brothers, who made his entire body a transmutation circle before the entire Ishbalan race was destroyed. Scar attempted to fight one of the (insane) State Alchemists as they ran from the attackers, and with two swipes of his finger his forehead basically exploded into the scar we see today. He would later lose his arm to the same State Alchemists, and his brother , knowing death was only a few hours away, Scar's brother took off his own arm and attached it to Scar with Alchemy. This is one reason that Scar hates alchemy, but uses it, as his brother died from blood loss shortly after.

    Alphonse was originally just like any other alchemist, albeit slightly better due to the fact that alchemy kept him alive. However, after seeing one of his closest friends die, he was able to understand the Gate of Truth, the very same one which Ed saw when he tried to bring their mother back to life. This now allows for Al to use Alchemy without a circle, just like Izumi Curtis and Ed.

    Equivalent Exchange

    Equivalent Exchange was the idea from the anime of the Fullmetal Alchemist series that most alchemists referred to when explaining the laws of alchemy and in many forms of trade in real life, always saying that in order for them to do something they need the right materials. In essence, they meant that a river couldn't come from a raindrop, at least. not from them.

    They would need the appropriate amount of a certain element before attempting a transmutation at all, if not, the transmutation would simply cancel out, or, in much more serious attempts, the effects would be much, much more drastic, such as losing organs like Ed and Al and Izumi did in their try at bringing a human being back to life. This resulted in a lot of things happening, but none of them being positive to the slightest extent.

    In the anime, an attempt like this simply made a homologous, but it has nothing to do with that as far as we know in the manga series, and doesn't even seem to really make an indifference, as the things that people have always brought back, as far as Ed and Al know, have only been random human parts, only barely even resembling the original person at all. In fact, Ed was put through much hardship when he discovered that the thing that he brought back from the dead was not his mother at all, meaning that the equivalent exchange didn't exist in that trade at all, giving him nothing and taking nearly everything.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112148/","id":112148,"name":"The Mountains of the Moon","issue_number":"107"},"id":50042,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4439/275778-130891-alchemy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4439/275778-130891-alchemy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4439/275778-130891-alchemy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4439/275778-130891-alchemy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4439/275778-130891-alchemy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4439/275778-130891-alchemy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4439/275778-130891-alchemy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4439/275778-130891-alchemy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4439/275778-130891-alchemy.jpg","image_tags":"All Images,Transmutation Circles"},"name":"Alchemy","site_detail_url":"https://comicvine.gamespot.com/alchemy/4015-50042/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50253/","count_of_isssue_appearances":458,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-04-26 20:50:03","deck":"The Force is an energy field that binds together all life in the Star Wars universe. Only some have the power to wield it - either as a force for the Light Side or the Dark Side of the Force.","description":"

    Overview

    The Force is a universal energy force that binds all life together. Over a millennia, sentient beings learned how to harness the Force to use as a tool and as a form of supernatural sense. Many sects have arisen with the goal of utilizing the Force and studying its abilities, often with different intentions in mind and often dedicated primarily to either the Light or the Dark Side. The most famous and influential of these sects are the Jedi Order and the Sith, who have been at odds since their creation.

    Within the Force, there is the Light Side and the Dark Side, as well as other philosophical views of the Force.

    The Light Side

    \"Barriss
    Barriss Offee healing a wounded Clone Trooper

    The Light Side of the Force, primarily represented by the Jedi, is a selfless ideal. Followers of the Light are often willing to sacrifice themselves in order to save somebody else. They believe in peace and harmony with one another and finding balance in the Force. Using powers of the Light Side requires peace and calm thoughts, giving of themselves and attempting to find peaceful resolutions. They believe in following the will of the Force, viewing themselves as a tool to be used by the Force.

    The Dark Side

    \"Darth
    Darth Sidious utilizing Force Lightning

    Followers of the Dark Side, primarily represented by the Sith, are often selfish. They believe in the survival of the fittest. Their primary goal is to acquire power and control, conquering those weaker than them. They feed on their own hatred and the hatred of others. Using powers of the Dark Side requires taking from others, causing pain, and feeding on their own dark emotions. They believe in controlling the Force; they deny the existence of fate and believe they can create their own destiny.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-17616/","id":17616,"name":"Star Wars","issue_number":"1"},"id":50253,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4115/798208-418px_swinvasion1_fc.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4115/798208-418px_swinvasion1_fc.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4115/798208-418px_swinvasion1_fc.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4115/798208-418px_swinvasion1_fc.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4115/798208-418px_swinvasion1_fc.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4115/798208-418px_swinvasion1_fc.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4115/798208-418px_swinvasion1_fc.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4115/798208-418px_swinvasion1_fc.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4115/798208-418px_swinvasion1_fc.jpg","image_tags":"All Images,Constantine Behind the Mask,Luke,Luke Skywalker,Star Wars"},"name":"The Force","site_detail_url":"https://comicvine.gamespot.com/the-force/4015-50253/","start_year":"1977"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50325/","count_of_isssue_appearances":1,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-10-28 14:09:08","deck":"The Fuchikoma (or Tachikoma/Uchikoma) is a one-man walker equiped with an artificial intelligence. These \"think tanks\" are used by the operatives of Section 9 in the Ghost in the Shell manga series.","description":"

    Description

    Fuchikoma are spider-like walkers/tanks that possess an artificial intelligence and can therefore act independently to support their pilot, or act independently without one. The pilot normally sits in a pod accessed from the rear or top of the Fuchikoma. The A.I. is sophisticated enough that the tanks exhibit emotions and a child-like personality. They are equiped with four agile supports, or legs, that enable them to walk as well as ride using extendable wheels. They are designed to be able to easily cross a variety of different terrains. They also have two robotic arms with finger-like extensions. On the head and torso are lenses and sensors which guide the Fuchikoma and can be used by the pilot.

    The Fuchikoma are used for combat and therefore have a range of weapon systems such as machine guns, grappling guns with hardened cables, and grenade launchers. Since the Fuchikoma possess an A.I. and emotions however, they are closely monitored for any signs of instability. They are also synchronized after missions so that their experiences are shared and they can learn from one another. They also tend to be a source of humor in the manga and anime adaptions.

    In the Stand Alone Complex anime series the Fuchikoma were known as Tachikoma, and as Uchikoma in the second series and the Solid State Society film. Over the course of the series the personality of the tanks continued to evolve and they begin to showcase increasing self-awareness and individuality.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-319745/","id":319745,"name":"Vol. 1","issue_number":"1"},"id":50325,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10135/284375-176882-fuchikoma.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10135/284375-176882-fuchikoma.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10135/284375-176882-fuchikoma.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10135/284375-176882-fuchikoma.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10135/284375-176882-fuchikoma.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10135/284375-176882-fuchikoma.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10135/284375-176882-fuchikoma.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10135/284375-176882-fuchikoma.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10135/284375-176882-fuchikoma.JPG","image_tags":"All Images,Fuchikoma"},"name":"Fuchikoma","site_detail_url":"https://comicvine.gamespot.com/fuchikoma/4015-50325/","start_year":"2009"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50690/","count_of_isssue_appearances":32,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-05-05 16:15:43","deck":"Shikai meaning \"始解, Initial Release\" is the first stage of a Shinigami's Zanpakuto release. ","description":"

    Shikai

    Shikai is an energy release technique used by the Soul Reapers in the Bleach manga franchise by Tite Kubo. The essence of Shikai relies on the communication between Shinigami and Zanpakuto. The Shinigami enters their spiritual inner world and call the Zanpakuto's Real Form.

    Purpose

    Locked within a Soul Reaper and their Zanpakuto is the power to become even more powerful. When a Soul Reaper unleashes their Zanpakuto from it's sealed form to the Shikai release form they invoke a new level of power.

    Evidence of Increase

    When a Soul Reaper uses their Shikai release the Soul Reaper gains the ability to raise different areas of their abilities. Some may become faster, others stronger, but on top of that the Zanpakuto also reveals itself to everyone in its second and more complete form. Some character's Zanpakuto gets larger in size while others get smaller.

    How Does It Work?

    The Shikai release is controlled by the wielder and can only be engaged by the release phrase that the Zanpakuto's owner calls out. The release phrase also reveals the character of the Zanpakuoto. An example of that is Kisuke Urahara using Benihime, whose release phrase is \"Awaken.\" The call differs by the users. This proves that the true power of Benihime is easily locked away and has to be brought out for its full use. Some Zanpakuto remain in Shikai state like Ichigo Kurosaki's.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106842/","id":106842,"name":"The Death and the Strawberry","issue_number":"1"},"id":50690,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2372/293745-28160-shikai.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2372/293745-28160-shikai.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2372/293745-28160-shikai.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2372/293745-28160-shikai.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2372/293745-28160-shikai.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2372/293745-28160-shikai.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2372/293745-28160-shikai.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2372/293745-28160-shikai.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2372/293745-28160-shikai.jpg","image_tags":"A Few Shikai Forms ,All Images"},"name":"Shikai","site_detail_url":"https://comicvine.gamespot.com/shikai/4015-50690/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50695/","count_of_isssue_appearances":58,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-05-19 18:59:19","deck":"The Ultimate in Soul Reaper power. When used a Soul Reaper become unbelievably powerful.","description":"
    \"No

    Purpose

    When called forth the Bankai form of the Zanpaku- to raises the Soul Reaper's powers to the highest possible level.

    Evidence of Evolution

    When released a Bankai alters the wielder's powers much like the Shikai does, only at an even higher level than its predecessor. The Bankai also alters the form of the Zanpaku- to, but it also can alter the way the wielder appears. Ichigo and Renji both change in appearance and power whereas Byakuya's Zanpaku to changes but he doesn't.

    How Does It Work?

    Like the Shikai release the wielder utters their release command while connecting with their Zanpaku- to's spirit. The complete union of the two gives them their full power and opens up several new levels to their attacks too. The true form of the Zanpaktou and has immense power. For the most part, only Lieutenant level and higher Shinigami have obtained this level because of the immense time it takes to train to call out the true power of the sword. The powers, form, and limit, greatly depend on the soul, spirit energy, and personality of the wielder. But also depends on the sword itself. As seen with Ichigo Kurosaki, one must become one with their Bankai to finally release it. The shinigami must search deep in themselves and defeat the Bankai as a physical being to be able to use this power.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106842/","id":106842,"name":"The Death and the Strawberry","issue_number":"1"},"id":50695,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2372/293800-182489-bankai.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2372/293800-182489-bankai.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2372/293800-182489-bankai.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2372/293800-182489-bankai.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2372/293800-182489-bankai.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2372/293800-182489-bankai.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2372/293800-182489-bankai.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2372/293800-182489-bankai.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2372/293800-182489-bankai.jpg","image_tags":"All Images,Ultimate Soul Reaper Power"},"name":"Bankai","site_detail_url":"https://comicvine.gamespot.com/bankai/4015-50695/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50855/","count_of_isssue_appearances":9,"date_added":"2008-06-06 11:27:53","date_last_updated":"2012-06-18 10:43:53","deck":"A Shamanic Ability from the manga series Shaman King. It is an ability used when a Shaman wants to fuse his body and soul with another spirit.","description":"

    Description

    When a Shaman is not capable of doing something themselves they will find a strong spirit ally that they can combine with to make the task simpler for themselves. Different Shaman use different mediums of spirits to integrate with. Many Shaman will use human ghost because of how much easier they are to work with, but some shamans use higher spirits to combine with. The problem with higher spirits though are that they are a lot more independent than a human ghost. When using a higher spirit the person is more likely to be controlled and become a vessel for that spirit.

    Process

    When Integrating the host has to open up their body to the spirit they are bringing into them. By doing so they allow the spirit so much control over the body, and th more control they give to the spirit the more effect the spirit can perform. Sometimes the fusion means using someone else's body too though. Characters like Tao Jun will fuse a soul with it's own dead body, making a Jiang- si, because it takes no energy to create the fusion. Other people may use non human creatures to bond a soul too, that way they can use the experience from the spirit in something less experienced. Ren does this to integrate Bason's old horse's spirit with his own horse so that the new horse will know how to best react under Bason's technique.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-45597/","id":45597,"name":"The Generation Gap","issue_number":"2"},"id":50855,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2372/299106-159793-soul-integration-so.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2372/299106-159793-soul-integration-so.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2372/299106-159793-soul-integration-so.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2372/299106-159793-soul-integration-so.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2372/299106-159793-soul-integration-so.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2372/299106-159793-soul-integration-so.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2372/299106-159793-soul-integration-so.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2372/299106-159793-soul-integration-so.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2372/299106-159793-soul-integration-so.jpg","image_tags":"All Images,Soul Intergration"},"name":"Soul Integration/ Soul Unity","site_detail_url":"https://comicvine.gamespot.com/soul-integration-soul-unity/4015-50855/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-50943/","count_of_isssue_appearances":61,"date_added":"2008-06-06 11:27:52","date_last_updated":"2016-08-29 11:58:43","deck":"Jutsu is the Japanese word for \"art\" and sorts of techniques in the Naruto Universe.","description":"

    There are hundreds to thousands of jutsu in the Narutoverse that involve anything from crushing people with sand to cloning yourself with the energy. These jutsu require hand-signs and focusing Chakra to make them work. Jutsus that don't require hand signs-are uncommon.

    There are 12 hand-seals, each one named after an animal in the Chinese zodiac. Each hand-seals deals with a specific use (for examples: the Tiger hand-seal is often used for Katons and the Snake for Dotons) and thus numerous hand-seals are sometimes required for a single technique to get the desired outcome. Kakashi's \"Chidori\" for example requires the combination of Ox Rabbit Monkey, in that order.

    There are five types of jutsu: Ninjutsu, the basic power arts... think \"magic\" in a sense; Taijutsu, martial arts that don't require any hand signs to complete; Genjutsu, illusionary techniques where by manipulating anothers' five senses through controlling their flow of chakra to the brain; Fuuinjutsu, drawing symbols which act similarly to ninjutsu; and Kuchiyose, the ability to warp time & space to summon aid in battle.

    Elemental jutsu are divided into five categories: Katon (fire release), Fuuton (wind release), Raiton (lightning release), Doton (earth release), and Suiton (water release). Each one beats the one to it's right and loses to it's left, thus having water circle around into beating fire. People in the Narutoverse are born with a specific elemental affinity, allowing them to learn that element easier than any other and use more powerful jutsus with that element than any other. Using different elemental jutsus is done by recomposing their chakra into the element they want, which is not easy to learn.

    A key way to find out what elemental affinity a ninja has is by holding a piece of paper and focusing their chakra into it and watch what happens: Katon causes the paper to burn, Fuuton causes the paper to tear, Raiton causes the paper to crinkle, Doton causes the paper to crumble, and Suiton causes the paper to moisten.

    There are also cerain types of techniques called Kekkai Genkai, it literally means \"blood-line trait\" and only members of a certain family can use it; like Kimimaro and his bone manipulation ability, or Sasuke and Itachi's Sharingan eyes, or others such as The Third Kazekage possessed the ability to alter his chakra into magnetic fields and control metal. There are also Kekkei Genkais that gives the user dual affinities, which can be combined by the user to create a new element, such as in the case of Haku whom can use Hyouton (ice release) ninjutsu by combining Suiton and Fuuton, or The First Hokage whom could use Mokuton (wood release) ninjutsu by combining Doton and Suiton.

    Ok guys, I'll do my best to list these as efficiently as possible by splitting them into specific groups (Note: The Kekkai Genkai are only the jutsu that are enabled by the kekkai genkai-NOT the item itself, like the Sharingan eyes or the Byakugan; these have separate pages for a reason).

    SPOILERS BELOW

    Ninjutsu

    A

    Act of Tree Walking: A basic jutsu where by focusing chakra a ninja is able to scale virtually any surface.

    Used By: Everyone

    Act of Water Walking: A basic jutsu where by focusing chakra a ninja is able to stand on top of water.

    Used By: Everyone

    Adamantine Staff: Transforms the user into a nearly indestructible, size-altering rod. They can also extend themselves or parts of themselves from the rod.

    Used By: Enma

    Amida's Thousand Arm Death Embrace: The user forms a dozen disembodied fists to grab, throw, or pummel the opponent.

    Used By: Asuma, Chiriku

    Amphibian Technique: The user merges with an ally and channels chakra into them.

    Used By: Fukasaku, Shima

    Art of the Puppet Master: This technique extends strings made of chakra from the user's fingertips that they can use to control their puppets, or move other objects.

    Used By: Chiyo, Kankuro, Sasori, various puppet users

    Armor of Sticky Gold: The user secretes a golden liquid through their skin which rapidly hardens.

    Used By: Kidomaru

    B

    Beast-Man Clone: This is a transformation technique used to make a dog familiar take on the appearance and abilities of the user.

    Used By: Kiba, Tsume, Inuzuka clan

    Bee Bomb: The user creates dozens of bees that will explode.

    Used By: First Tsuchikage, Kamizuru clan

    Bee Honey: The user covers the opponent in thick gooey honey that restricts their movements.

    Used By: First Tsuchikage, Kamizuru clan

    Big Ball Rasengan: A much larger version of Rasengan.

    Used By: Naruto

    Bijuu Chakra Shroud: Bijuu chakra covers the user's body and augments their strength, speed, healing, and attack range. However the Bijuu's chakra harms the user and makes him/her more feral.

    Used By: Killer Bee, Naruto, other Jinchuuriki

    Binding Chains: Spiked chakra chains extend from the user's torso, restraining the target.

    Used By: Kushina

    Black Clouds: This technique causes drops of slick, flammable oil to rain down on the opponent.

    Used By: Various Rain Ninja

    Blinding Ink: The user sprays ink from their mouth.

    Used By: Killer Bee

    Body Flicker: A basic jutsu where by focusing chakra in their feet the user is able to leap moderate distances or heights very quickly. The speed blurs the user's vision making it hard to use as an offensive technique, except in the case of adept Sharingan users.

    Used By: Everyone

    C

    Calorie Control: The user converts their body fat into concentrated chakra and increases their physical power to an immense level.

    Used By: Chouji, Akimichi clan

    Camouflage Concealment: This technique allows the user to become invisible.

    Used By: Various Rock ninja, Muu

    Chakra Absorption : This technique allows the user to siphon chakra from their opponent.

    Used By: Yoroi

    Chakra Blast : The user is able to shoot concentrated blasts of chakra from their mouths.

    Used By: Hachibi, Kyuubi, other Bijuu

    Chakra Scalpel: The user creates an aura of chakra around their hand that can cut like a blade. This technique, while being meant originally for simple medic purposes, is proven by Kabuto that it can also be a very dangerous weapon.

    Used By: Kabuto, Shizune, Tsunade, various medic ninja

    Clone: A basic jutsu that allows the user to create a non-physical duplicate of themself that will disperse after sustaining damage.

    Used By: Everyone

    Clone Explosion: This technique creates a Clone of the user that can explode.

    Used By: Itachi

    Coral Fist: The user strikes their opponent and causes coral to grow on them, restricting their movements and adhering them to a surface.

    Used By: Yagura

    Creation Rebirth: This technique speeds up cellular creation and regeneration, rendering the user almost immortal on the battlefield. But, this happens at a cost though since this shortens the user's life span with each use.

    Used By: Tsunade

    Crow Clone: The user creates a copy of themself out of crows. The Crow Clone can also scatter and reform itself.

    Used By: Itachi

    Crystal Ball: The user is able to spy on events remotely.

    Used By: Hiruzen

    D

    Dance of the Crescent Moon: This technique allows the user to create many images of themself going in many different directions.

    Used By: Hayate

    Dance of the Shikigami: This technique allows the user to completely compose their body out of paper, allowing them to disperse and reform themself at will, as use the paper for battle.

    Used By: Konan

    Dead Soul: The user temporarily controls the dead with their chakra.

    Used By: Kabuto

    Destruction Bugs: At birth, the Aburame clan would make their children hosts for Destruction Bugs. These bugs use the host as a hive and feed on their chakra, and in return they fight for them.

    Used By: Shibi, Shino, Aburame clan

    Dome Method Formation: A radar-like ability where the user can detect their opponent's slightest movement.

    Used By: Jiraiya

    Doton: Added Weight Rock: Allows the user to make whatever they touch far heavier, in the case of people it restricts their movements.

    Used By: Onoki

    Doton: Covering Lid: This encases the opponent in a giant stone pot.

    Used By: Random Anbu

    Doton: Desert Coffin: This technique binds the enemy in sand.

    Used By: Gaara

    Doton: Desert Funeral: This technique is used in junction with Desert Coffin, squeezing and grinding the enemy to death.

    Used By: Gaara

    Doton: Desert Imperial Funeral: This technique is used in junction with Desert Prison Burial, compressing the sand and crushing the opponent.

    Used By: Gaara

    Doton: Desert Prison Burial: The user turns the ground beneath the opponent into quicksand.

    Used By: Gaara

    Doton: Dust Cloud: The user creates a blinding spread of dirt.

    Used By: Shima

    Doton: Earth Clone: Similar to Clone, however this has substance and is able to fight and use techniques. This technique will disperse after sustaining enough damage.

    Used By: Deidara, Hiruzen, Orochimaru

    Doton: Earth Dome Prison: The user creates a dome around the opponent(s) created out of dirt and mud, it traps and drains the enemy of their chakra.

    Used By: Jirobo

    Doton: Earth Dragon Missiles: The user creates what looks like a dragon's head to come out of the ground and shoot compressed earth at the opponents.

    Used By: Hiruzen

    Doton: Earth Rampart: This technique causes a massive wall to rise from the ground.

    Used By: Yamato

    Doton: Earth Spear: The user transforms their body or parts of their body into metal, however he/she can't move while hardened.

    Used By: Kakuzu

    Doton: Earth Style Wall: The user spits on the ground, which forms into a very large rock wall.

    Used By: Hiruzen

    Doton: Floating Sand: This technique creates a platform of sand to stand on.

    Used By: Gaara

    Doton: Flowing Stone Wall: The user creates a wall with carvings of bulldog heads.

    Used By: Kakashi

    Doton: Groundhog Decapitation: The user travels underground and can attack or pull their opponent under.

    Used By: Hiruzen, Kabuto, Kakashi, Manda, Sai

    Doton: Halberd of Shukaku: This technique hardens sand in the form of a halberd-like weapon.

    Used By: Gaara

    Doton: Hidden Among Rocks: The user is able to pass through rocks.

    Used By: Suzumebachi, Yamato

    Doton: Light Weight Rock: Allows the user to make whatever they touch far lighter

    Used By: Onoki

    Doton: Mausoleum Earth Dumpling: The user crushes the opponent(s) with a gigantic boulder.

    Used By: Jirobo

    Doton: Mole Hiding: This turns the ground into sand, allowing the user to tunnel through it and sense movement above.

    Used By: Deidara, Madara

    Doton: Mountain Sandwich: Causes small mountains to emerge from the ground and compact the opponent

    Used By: Kitsuchi

    Doton: Moving Earth Core: Causes the ground to rise up or lower down.

    Used By: Ittan, Onoki

    Doton: Moving Land River: This causes the ground beneath the opponent(s) to move rapidly.

    Used By: Hiruzen

    Doton: Mud Overturn: The ninja uses a square slab of the ground to flip over to use as either a shield or to crush the opponent.

    Used By: Jirobo

    Doton: Opening Earth Rising Excavation: The user is able to force things beneath the ground to be catapulted into the air.

    Used By: Kitsuchi, Kurotsuchi

    Doton: Quicksand Current: The user sends a tidal-wave of sand, sometimes shaped like a hand, to pummel the opponent.

    Used By: Gaara

    Doton: Revolving Split Earth Palm: This technique causes the ground around the opponent to twist around them, crushing them.

    Used By: Various Rock ninja

    Doton: Rising Stone Spears: This causes the ground to form into spikes.

    Used By: Yamato

    Doton: Rock Clone: Creates an exact duplicate of the user, but it will crumble if it sustains sufficient damage.

    Used By: Akatsuchi, Onoki

    Doton: Rock Fist: Creates a fist made of rocks around the user's hand.

    Used By: Kitsuchi, Onoki

    Doton: Rock Golem: This creates a humanoid statue to fight on the user's behalf.

    Used By: Akatsuchi, Onoki

    Doton: Rock Shelter: Creates a protective wall using the ground.

    Used By: Kitsuchi, Kurotsuchi

    Doton: Sand Armor: This technique creates a protective layer of dense sand on the user's body.

    Used By: Gaara

    Doton: Sand Clone: The user creates a duplicate of themself out of sand and it reform itself if damaged or destroyed.

    Used By: Gaara

    Doton: Sand Cocoon: The user creates a sphere of sand around themself or others.

    Used By: Gaara

    Doton: Sand Shield: This creates a dense sheet of sand to intercept attacks.

    Used By: Gaara

    Doton: Sand Shower: A distraction technique where the user levitates sand above their enemies and lets it sprinkle down.

    Used By: Gaara

    Doton: Sand Shuriken: The user throws condensed disks of sand at the opponent(s).

    Used By: Gaara

    Doton: Shield of Shukaku: The user will compress sand into the form of a smaller version of the 1-Tailed demon.

    Used By: Gaara

    Doton: Super Added Weight Rock: Makes whatever or whomever the user touches to become immensely heavy.

    Used By: Onoki

    Doton: Swamp of the Underworld: The user creates a muddy tar-like pit of various size to trap and submerge enemies.

    Used By: Jiraiya

    Doton: Third Eye: The user creates a floating eye which they can use to see.

    Used By: Gaara

    Doton: Ultra Light Weight Rock: Makes whatever or whomever the user touches immensely lighter.

    Used By: Onoki

    Doton: Underground Submarine Voyage: This makes the ground fluid-like, allowing the user to travel trough it quickly.

    Used By: Kisame

    Doton: Winding Fissure: This technique causes the ground to rise and split in half.

    Used By: Yamato

    Double-Headed Wolf: This is a combination technique used to transform the user and their dog familiar into a giant two-headed dog.

    Used By: Kiba, Tsume, Inuzuka clan

    Double Knockout: A combination technique consisting of the Sexy and Shadow Clone techniques. The user and the Shadow Clone will both transform into very attractive, naked members of the sex opposite their opponent and begin to make seductive motions.

    Used By: Konohamaru

    Double Piercing Fang: This is a combination technique where the user and their dog familiar spin rapidly and tear away at the opponent or surfaces, like a drill.

    Used By: Kiba, Tsume, Inuzuka clan

    Dynamic Marking: Utilized by a dog familiar to spray acidic urine.

    Used By: Kiba, Tsume, Inuzuka clan

    E

    Earth Grudge Fear : This technique allows the user to extend many thin tendrils from any part of their body, used for multiple purposes such as grabbing enemies or reattaching body parts. It also allows the user to steal another's body parts to increase their own life-span.

    Used By: Kakuzu

    Eight Branches: With this, the user transforms themself into a giant eight-headed snake.

    Used By: Orochimaru

    Eight Gates: This removes the limits naturally placed on the human body, giving increased speed, strength, and chakra for each gate that is released. However, the technique causes great strain and damage to the body, with the 8th gate promising a few moments of unrivaled power at the cost of the user's life.

    Used By: Gai, Lee

    Exploding Puppy: This is a technique used to create a duplicate of a dog familiar around a pack of spring-loaded kunais.

    Used By: Kiba, Tsume, Inuzuka clan

    F

    Four Legs: The user's physical abilities and senses are enhanced.

    Used By: Kiba, Inuzuka clan.

    Frog Call: A debilitating sonic wave.

    Used By: Fukasaku, Shima

    Fuuton: Air Rush: This uses strong circling wind to push others away.

    Used By: Jiraiya

    Fuuton: Bleeding Force: This projects a spiraling ball of wind.

    Used By: Kakuzu

    Fuuton: Cutting Whirlwind: The user is able to shape wind into flying sickles.

    Used By: Temari

    Fuuton: Cyclone Punch: The user projects a powerful burst of wind at the opponent.

    Used By: Asuma

    Fuuton: Decapitating Air Waves: This allows the user to project super-sonic sound and highly compressed air.

    Used By: Zaku

    Fuuton: Dragon's Big Job: The user creates a small tornado.

    Used By: Temari

    Fuuton: Drilling Air Blast: The user belches a large spinning burst of wind.

    Used By: Shukaku

    Fuuton: Dust Storm: This creates a high velocity stream of wind, tearing away the opponent.

    Used By: Asuma

    Fuuton: Dust Wind: The user is able to use wind to kick up dirt and sand. Not only is this technique painful, but it's able to blind the opponent and causes surfaces to become hard to walk on.

    Used By: Temari

    Fuuton: Flying Swallow: The user surrounds and extends the length of their blade with wind, increasing it's cutting ability.

    Used By: Asuma

    Fuuton: Gale Wind Palm: The user projects a forceful gust of wind.

    Used By: Nagato

    Fuuton: Great Breakthrough: The user creates a violent gust of wind.

    Used By: Orochimaru

    Fuuton: Great Vacuum Jewel: this technique projects a large ball of wind.

    Used By: Danzo

    Fuuton: Pressure Damage: The user projects a huge vortex of condensed wind.

    Used By: Kakuzu

    Fuuton: Rasenshuriken: The user combines the Rasengan with wind to create a giant spiraling shuriken in their hand. This technique is not only devastating, but it cuts on a microscopic scale aswell.

    Used By: Naruto

    Fuuton: Serial Vacuum Wave: This allows the user to project multiple slicing blades of wind.

    Used By: Danzo

    Fuuton: Sword of Wind: The user creates a sword comprised of wind in their hand.

    Used By: Baki

    Fuuton Suiton: Typhoon Water Vortex: A combination technique utilizing the Wind Rasengan and the Destruction Torrent techniques to create a giant tornado of water..

    Used By: Naruto Yamato

    Fuuton: Vacuum Blade: This forms a swirling blade of wind extended from a weapon.

    Used By: Danzo

    Fuuton: Vacuum Jewel: The user blows several balls of wind that cut like spears.

    Used By: Danzo

    Fuuton: Vacuum Wave: The user blows a large stream of wind.

    Used By: Danzo

    Fuuton: Verdant Slipstream: This allows the user to control weapons by using wind.

    Used By: Asuma

    Fuuton: Wind Cutter: The user creates a wave of slicing wind.

    Used By: Random Anbu

    Fuuton: Wind Rasengan: The user is able form an intense ball of drilling chakra recomposed with the wind element in the palm of their hand.

    Used By: Naruto

    Fuuton: Wind Rock Barrage: The user uses wind to blow rocks at the opponent.

    Used By: Temari

    G

    Gentle Step Twin Lion Fist: The user will form chakra around their hands in the shape of lion heads to increase their strike.

    Used By: Hinata

    Guardian Eight Divination Signs: Sixty-Four Palms of the Hand: This technique allows the user to project a thin, cutting stream of chakra from their hands over a short distance which they can use to create a net-looking barrier through rapid movement.

    Used By: Hinata

    H

    Hair Needle Barrage: The user sprays needle-like hairs from their head.

    Used By: Jiraiya

    Hair Rope: The user lengthens their hair and binds the opponent.

    Used By: Jiraiya

    Harem Technique: A combination technique using the Multi-Shadow Clone and Sexy techniques.

    Used By: Naruto

    Healing Chakra: This technique is able to heal others by allowing them to feed off of the user's chakra.

    Used By: Karin

    Heretical Demon Spikes: The user is able to extend spikes from their forearms which transmits the user's chakra and affects the victim's physical and chakra control.

    Used By: Nagato, Six Paths of Pein

    Hidden Needles: The user is able to spit needles.

    Used By: Shizune

    Hidden Shadow Snakes: Where multiple snakes appear from the user's body to attack or bind their opponent.

    Used By: Anko, Kabuto, Orochimaru, Sasuke

    Human Body's Skillful Performance: This technique extends strings made of chakra from the user's fingertips that they can use to control or aid other people.

    Used By: Chiyo , Sasori

    Human Bullet Tank: This technique allows the user to expand the size of their torso, becoming shaped like a ball so that they are able to roll over and crush their opponents.

    Used By: Chouji, Chouza, Akimichi clan

    Human Puppet: The user is able to make puppets out of once-living people, they retain their chakra for the puppet master to use.

    Used By: Sasori

    I

    Insect Ball: Destruction Bugs fly above the opponent and form into a giant ball which falls onto the opponent.

    Used By: Shibi, Shino, Aburame clan

    Insect Clone: Destruction Bugs turn into a copy of their host.

    Used By: Shibi, Shino, Aburame clan

    Insect Globe: Destruction Bugs swarm around the opponent, slowly draining them of their chakra.

    Used By: Shibi, Shino, Aburame clan

    Insect Tornado: Destruction Bugs fly in a circular pattern towards the opponent.

    Used By: Shibi, Shino, Aburame clan

    Insect Wall: Destruction Bugs quickly converge to protect their host from attacks.

    Used By: Shibi, Shino, Aburame clan

    Indestructible Prison Wall: Used in junction with Free-Form Diamond-Like Hardness, the user creates copies of themself which form an interlocking cage.

    Used By: Enma

    Ink Clone: Similar to Clone, however this has substance and is able to fight and use techniques. This technique will disperse after sustaining enough damage.

    Used By: Sai

    Ink Flush: The user will pour ink on the ground, it will then seep through the ground and bind the opponent.

    Used By: Sai

    Ink Haze: The user will use ink to hide an escape.

    Used By: Sai

    Iron Club: This lengthens and hardens the user's hair into steel-like needles, which is swung at the opponent.

    Used By: Jiraiya

    K

    Katon: Burning Ash Accumulation: The user exhales an ignitable cloud which engulfs and sticks to the opponent.

    Used By: Asuma

    Katon: Burning Blockade: The user creates a wall of fire.

    Used By: Asuma

    Katon: Cranium Carver: This technique projects a moderate-sized fireball.

    Used By: Kakuzu

    Katon: Crimson Balsam Nails: The user covers kunais in fire which are shot at the opponent.

    Used By: Itachi, Sasuke

    Katon-Fuuton: Deep Fryer: This is a combination technique where Jiraiya spews oil, Shima boils the oil by spitting fire, and Fukasaku intensifies the flames by blowing wind.

    Used By: Jiraiya Fukasaku Shima

    Katon: Dragon Flame: The user projects a stream of fire from their mouth.

    Used By: Anko, Aoba, Sasuke

    Katon: Exploding Flame Crater: Shooting fire into the ground, the user causes fire to erupt beneath the opponent.

    Used By: Jiraiya

    Katon: Fire Blowing: The user will blow fire at the enemy.

    Used By: Jiraiya

    Katon: Fire Dragon Napalm: The user projects a continuous three-pronged stream of fire from their mouth.

    Used By: Hiruzen

    Katon: Flame Rasengan: The user is able form an intense ball of drilling chakra recomposed with the fire element in the palm of their hand.

    Used By: Jiraiya

    Katon: Four Violet Flames Array: This a combination technique used to create a box of purple flame around the opponent.

    Used By: Jirobo, Kidomaru, Sakon & Ukon, Tayuya

    Katon: Giant Fire Blast: The user blows a large continuous fireball.

    Used By: Jiraiya

    Katon: Grand Fireball: Where the user exhales a gigantic ball of fire.

    Used By: Fugaku, Itachi, Kakashi, Madara, Obito, Sasuke, Uchiha clan

    Katon: Great Dragon Fire: The user shoots a very large fireball shaped like a dragon's head.

    Used By: Sasuke

    Katon-Fuuton: Head Mincing Pain: The user projects fire and wind, with the wind making the fire bigger and hotter creating a huge blast.

    Used By: Kakuzu

    Katon: Mythical Phoenix Flowers: The user spits bird-shaped balls of fire from their mouth.

    Used By: Sasuke, Itachi, Uchiha clan

    Katon: Rat Fur Ball: The user spits a rodent-shaped fireball that burst apart into dozens of homing fireballs.

    Used By: Yugito

    Katon: Searing Migraine: The user carpets a large section of the ground in fire.

    Used By: Kakuzu

    Katon: Toad Oil Fireball: This is a combination technique where Gamabunta spews oil and Jiraiya ignites it with Fire Blowing.

    Used By: Gamabunta Jiraiya

    Kusanagi: A very sharp, seemingly indestructible sword that can extend and fly.

    Used By: Orochimaru

    L

    Leech All Creation: Attack Prevention: The user is able to fuse with an object or surface and take on it's properties.

    Used By: Orochimaru

    Leech Gap: Creates a corrosive slime.

    Used By: Utakata

    M

    Many Hidden Shadow Snakes: Where a dozen snakes appear from the user's body to attack or bind their opponent.

    Used By: Orochimaru

    Masked Ghost: This technique utilizes Earth Grudge Fear to give a heart shielded by a mask a pseudo-body out of a heap of tendrils which allows it to fight independently of the user.

    Used By: Kakuzu

    Mass Shadow Clones: The user creates hundreds of shadow clones, however it heavily drains the user's chakra depending on the amount of shadow clones created.

    Used By: Naruto

    Mayfly: This technique allows the user to merge into the ground or plants and travel quickly, also makes it hard to detect the user.

    Used By: Zetsu

    Mind Body Change: This allows the user to to leave their body and possess another's for 5 minutes. But this leaves their real body vulnerable, especially if the technique misses.

    Used By: Ino, Inoichi, Yamanaka clan

    Mind Body Disturbance: This technique causes the opponent to lose control of their body and attack anything, even their own allies, despite being aware of their actions.

    Used By: Ino, Inoichi, Yamanaka clan

    Mind Clone Change: This allows the user to to leave their body and possess two people simultaneously. However, this leaves their real body vulnerable.

    Used By: Ino, Inoichi, Yamanaka clan

    Mind's Eye of Divine Entertainment: The user of this technique is able to accurately sense chakra of those around themself.

    Used By: Karin

    Mind Link: The user is able to communicate with others mentally, or search through people's memories.

    Used By: Ino, Inoichi, Yamanaka clan

    Molted Skin Substitution: The user creates a new body, allowing them to escape harm by leaving their old body in their place. Any injuries or lost limbs are automatically healed upon replication, however this technique consumes a large amount of chakra.

    Used By: Kabuto, Manda, Orochimaru, Sasuke

    Murder of Crows Confusion: This technique creates a large number of crows to disorient and confuse the opponent(s).

    Used By: Aoba

    Myriad Snake Net Formation: The user spits hundreds of snakes from their mouth. The snakes can also carry knives in their mouths.

    Used By: Orochimaru

    Mystical Hand: The user can create an aura around their hand which accelerates the healing process of themselves and others on contact.

    Used By: Ino, Kabuto, Sakura, Rin, Shii, Shizune, Tsunade, various medic ninja

    N

    Needle Guardian: The user's hair becomes steel-like spikes that wrap around their body for defensive and offensive purposes.

    Used By: Jiraiya

    Negative Life Palm: An unnamed jutsu that is able to kill whatever it touches.

    Used By: Tsunade

    O

    One's Life Resurrection: This restores one being to life, in return for the user's life.

    Used By: Chiyo

    P

    Paper Clone: This allows the user to create a duplicate of themself out of paper.

    Used By: Konan

    Paper Messenger of God: This technique utilizes a combination of paper ninjutsu combined with exploding seals, creating two walls of exploding seals around the opponent that the user controls.

    Used By: Konan

    Paper Mummification: The user uses their chakra to wrap their opponent in paper, blinding and restraining them, aswell as being able to levitate them.

    Used By: Konan

    Paper Shuriken: The user folds paper using chakra into a sharp durable shuriken.

    Used By: Konan

    Paper Spear: The user folds paper using chakra into a long sharp durable pole.

    Used By: Konan

    Paper Wings: The user folds paper using chakra into wings on their back to fly, and are capable of flinging the paper \"feathers\" as blades.

    Used By: Konan

    Partial-Size Expansion: This technique allows the user to increase the size of a portion of their body, such as their arms or legs.

    Used By: Chouji, Chouza, Akimichi clan

    Piercing Fang: This technique allows the user to spin rapidly and tear away at the opponent or surfaces, like a drill.

    Used By: Kiba, Tsume, Inuzuka clan

    Planetary Rasengan: The user creates a single drilling ball of chakra surrounded by three floating balls of drilling chakra.

    Used By: Naruto

    Poison Extraction: Chakra is used to remove poison from one's body.

    Used By: Sakura, Tsunade, various medic ninja

    Poison Mist: The user is able to exhale a poisonous cloud.

    Used By: Shizune

    R

    Raijin: A sword composed of electricity.

    Used By: Tobirama

    Raiton: Black Panther: The user generates black electricity from their body which forms into a large jungle cat and attacks the opponent.

    Used By: Darui, 3rd Raikage

    Raiton: Chidori: The user creates a piercing ball of lightning in their hand.

    Used By: Kakashi, Sasuke

    Raiton: Chidori Current: The user causes their entire body to become electrified, and can spread the electricity through things.

    Used By: Sasuke

    Raiton: Chidori Mace: Used in junction with the Chidori Spear, the user will cause spikes to expand from the tip of the blade in all directions.

    Used By: Sasuke

    Raiton: Chidori Senbon: The user slings electric needles at the opponents.

    Used By: Sasuke

    Raiton: Chidori Spear: The user creates a solidified blade of electricity which can extend a moderate distance.

    Used By: Sasuke

    Raiton: Double Thrust Raikiri: The user creates a piercing ball of lightning in both of their hands.

    Used By: Kakashi

    Raiton: False Darkness: The user projects piercing electrical javelins, and can increase the number of javelins.

    Used By: Kakuzu

    Raiton-Fuuton-Katon: Final Shot: The user shoots lightning, wind, and fire at the opponent.

    Used By: Kakuzu

    Raiton: Four Pillar Binding: This erects four pillars surounding the opponent and generates electricity between each of them.

    Used By: Random Anbu

    Raiton: Hellbringer Hand: The user focuses Raiton's piercing power to the tips on their fingers.

    Used By: 3rd Raikage

    Raiton: Important Body Points Disturbance: This sends an electrical current through the opponent's body by touching them. This doesn't physically harm the opponent, however the brain and body coordinates it's motor functions through electrical pulses, thus disrupting those pulses causing the opponent's body to react differently than they want it to.

    Used By: Tsunade

    Raiton: Kirin: The user uses their chakra to guide a naturally occurring lightning bolt towards their opponent. This technique requires storm clouds.

    Used By: Sasuke

    Raiton: Lightning Armor: This augments the user's quickness and gives them protection.

    Used By: 3rd Raikage, Ei

    Raiton: Lightning Ball: The user creates a ball of electricity that they throw at their opponent.

    Used By: Raiga

    Raiton: Lightning Bolt Fang: The user sends a current of electricity into the sky and then directs it down at their opponent.

    Used By: Raiga

    Raiton: Lightning Bolt Feast: The user sends a current of electricity into the towards their opponent.

    Used By: Raiga

    Raiton: Lightning Dragon Tornado: This technique creates a dragon-shaped spiral of electricity.

    Used By: Raiga

    Raiton: Lightning Strike Armor: The user creates a protective field of electricity around themself.

    Used By: Raiga

    Raiton: Raikiri: A more powerful version of Chidori.

    Used By: Kakashi

    Raiton: Raikiri Pulse: The user thrusts their hands into the ground and sends a wave of electricity at the opponent.

    Used By: Kakashi

    Raiton: Raikiri Wolf: This technique creates an electric wolf to charge at the opponent.

    Used By: Kakashi

    Raiton: Shadow Clone: Similar to Shadow Clone except it is comprised of lightning-natured chakra. This technique will disperse after sustaining enough damage and will electrocute the opponent when destroyed physically.

    Used By: Kakashi

    Raiton: Super Vibrating Knife: The user is able to channel vibrating electricity into their weapon, increasing it's piercing power.

    Used By: Killer Bee, Darui

    Raiton: Wave of Inspiration: the user projects a pulse of electricity.

    Used By: Darui

    Rasengan: The user is able form an intense ball of drilling chakra in the palm of their hand.

    Used By: Jiraiya, Kakashi, Konohamaru, Minato, Naruto

    Rasenrengan: The user is able form intense balls of drilling chakra in both hands.

    Used By: Jiraiya, Naruto

    Razor Claws: This forms the user's nails on their hands or feet into long blades.

    Used By: Yugito

    Release: A basic jutsu used to undue genjutsu.

    Used By: Everyone

    Roof Tile Shurikens : This technique allows the user to levitate and fling tiles off of rooftops at their opponent(s).

    Used By: Hiruzen

    Root Division: Allows the user to split their body in two, each capable of acting independently from the other.

    Used By: Zetsu

    S

    Samehada: A large living sword covered in jagged edges, it only allows it's owner to wield it and it eats the opponent's chakra upon wounding and can absorb jutsus.

    Used By: Killer Bee, Kisame

    Secret Healing Injury: The user focuses chakra to heal themself from the inside-out.

    Used By: Kabuto

    Scale Camouflage: The user spits a cloud of brightly glimmering powder which blinds the opponent.

    Used By: Fuu

    Senjutsu: The user harnesses energy from nature, gaining a boost in: strength, endurance, recovery, chakra, ninjutsu, taijutsu, and genjutsu. However, there's a time-limit and the user risks turning into a frog forever.

    Used By: Fukasaku, Jiraiya, Naruto, Shima

    Sexy Technique: A transformation technique which makes the user appear as a beautiful naked girl.

    Used By: Konohamaru, Moegi, Naruto, Udon

    Shadow Boxing: The user causes their shadow to become three dimensional, allowing it to attack the opponent. The user cannot use this if it's too dark because it requires shadows.

    Used By: Shikaku, Shikamaru, Nara clan

    Shadow Clone: The user creates duplicates of themself that are capable of fighting and using techniques, but will disperse after taking sufficient damage. These clones are different from other clones as they are flesh and blood, and any skills or knowledge they acquire are transferred to the user.

    Used By: Hiruzen, Itachi, Jiraiya, Kakashi, Konohamaru, Naruto, Orochimaru, various Jonin

    Shadow Imitation: The user extends their shadow to connect to the opponent's shadow. By doing this, the user can force the opponent's body to mirror their movements. The range is limited and lasts only 5 minutes, and those with enough chakra can resist it. The user also cannot use this if it's too dark because it requires shadows.

    Used By: Shikaku, Shikamaru, Nara clan

    Shadow Neck Bind: After using Shadow Imitation, the user can cause a hand-shaped shadow to reach up the opponent's body and choke them.

    Used By: Shikaku, Shikamaru, Nara clan

    Shadow Sewing: The user extends sharp tendrils from their shadow that can bind or stab their opponents. The range is limited and also cannot use this if it's too dark because it requires shadows.

    Used By: Shikaku, Shikamaru, Nara clan

    Shape Shifter: This technique transforms another person into the exact copy of the user, which the user can mentally control. This technique requires a minimum of 30% of the original's chakra for the duplicate to use.

    Used By: Nagato

    Shared Vision: This allows the user to see from the point of view of their other bodies.

    Used By: Nagato, Six Paths of Pein

    Shuriken Duplication: The user throws a single shuriken and then creates many physical copies of that single shuriken.

    Used By: Hiruzen

    Silhouette Flattening Manipulation: The user becomes a shadow and can control others by fusing with their shadow.

    Used By: Jiraiya

    Six Paths of Pein: Used in junction with Heretical Demon Spikes, the user is able to possess corpses of others with each having an ability derived from one of the six paths of Buddhist reincarnation.

    Used By: Nagato

    Slug Great Division: This technique allows the user to become dozens of smaller versions of themselves, which can reform into the original larger version.

    Used By: Katsuyu

    Snake Authority Spell: Much like Hidden Shadow Snakes, however the snakes are a great deal larger and cause fear.

    Used By: Kabuto, Orochimaru, Sasuke

    Snake Clone: The user creates a copy of themself out of snakes that possesses the user's mind.

    Used By: Orochimaru, Sasuke

    Soften Body Modification: The user makes their body malleable and stretchy.

    Used By: Misumi, Orochimaru

    Spider Cobweb: The user will spit a net of webbing at the opponent.

    Used By: Kidomaru

    Spider Cobweb Region: The user will lay out web around their vicinity to detect enemies that come into contact with it.

    Used By: Kidomaru

    Spider Cocoon: The user creates a ball of webbing that will burst open to snare the opponent.

    Used By: Kidomaru

    Spider Sticky Gold: The user will spit a golden liquid from their mouth which will quickly harden and take on the shape of hooks.

    Used By: Kidomaru

    Spider Sticky Vomit: The user will shoot a line of webbing from their mouth.

    Used By: Kidomaru

    Spider Warbow: The user will spit golden liquid from their mouth which takes the shape of a bow and an arrow.

    Used By: Kidomaru

    Spore: The user releases spores that can grow into copies of the user, they can also grow around the opponent and siphon their chakra.

    Used By: Zetsu

    Starch Syrup Capture Field: This technique allows the user to spit a large amount of sticky liquid to cover the ground, momentarily stopping the opponent from moving.

    Used By: Izumo

    Stone Needles: The user is able to extend their chakra at the opponent, paralyzing them.

    Used By: Aoba

    Strong Arm: The user is able to dramatically increase their physical strength.

    Used By: Sakura, Tsunade

    Strong Beam: The user forces a burst of chakra into the opponent, causing internal damage.

    Used By: Kabuto, Tsunade

    Substitute: Allows the user to turn into a perfect copy of anyone they touch, even appearing able to use their jutsus.

    Used By: Zetsu

    Substitution: A basic jutsu where, with timing, a ninja is able to avoid harm by trading places with objects or other people.

    Used By: Everyone

    Suiton: Chaos Waves: The user spits a crashing blast of water from their mouth.

    Used By: Yahiko

    Suiton: Descending Water God: The user makes a cyclone of water to crash down on the opponent from the sky

    Used By: Tobirama

    Suiton: Demon Fish Wave: The user is able to merge with a body of water by using the Hydration Technique.

    Used By: Suigetsu, Hozuki clan

    Suiton: Destruction Torrent: This technique projects water from the user's hand.

    Used By: Yamato

    Suiton: Exploding Water Shockwave: The user spits a massive amount of water that creates crashing tidal waves.

    Used By: Kisame

    Suiton: Five Sharks Eating: The user creates 5 sharks out of water to attack the opponent under water.

    Used By: Kisame

    Suiton: Fierce Raining at Will: The user creates a downpour which can detect movements and chakra.

    Used By: Nagato

    Suiton: Giant Shark Missile: This creates a gigantic shark shaped out of water to attack the opponent. This jutsu however absorbs chakra, making it more powerful when it clashes with another jutsu.

    Used By: Kisame

    Suiton: Giant Vortex: The user sends a very large column of spiraling water towards the opponent.

    Used By: Kakashi, Zabuza

    Suiton: Great Exploding Water Shockwave: A larger version of Exploding Water Shockwave.

    Used By: Kisame

    Suiton: Hand of Waves: This technique shoots a stream of water from the user's hand.

    Used By: Yamato

    Suiton: Hidden Mist: The user creates a thick fog in their area, obscuring everyone's vision.

    Used By: Raiga, Zabuza

    Suiton: Hundred Sharks Eating: This creates a tidalwave of water shaped like sharks to attack the opponent.

    Used By: Kisame

    Suiton: Hydrification: The user's body is rendered almost invincible by forming into water.

    Used By: Suigetsu, Mangetsu, 2nd Mizukage, Hozuki clan

    Suiton: Hydro Jet: The user shoots a thin stream of water that can cut through rock.

    Used By: Tobirama

    Suiton: Liquid Chains: This technique causes water to wrap around the opponent's limbs and hold them down.

    Used By: Tobirama

    Suiton: Steam Devil Tyranny: The user creates a duplicate of themself out of a mixture of water and oil, the duplicate is able to heat itself up to explode and then reform itself from the vapor cloud over and over again

    Used By: 2nd Mizukage

    Suiton: Strong Water Arm: The user is able to use water to increase their muscle mass.

    Used By: Suigetsu, Hozuki clan

    Suiton: Water Bullet: This is where the user spits a large compressed globe of water.

    Used By: Gamabunta

    Suiton: Water Clone: Similar to Clone, however this has substance and is able to fight and use techniques. This technique will disperse after sustaining enough damage.

    Used By: Kakashi, Kakuzu, Kisame, Zabuza

    Suiton: Water Collision Destruction: The user sends a large tornado of water at the opponent.

    Used By: Tobirama

    Suiton: Water Dragon Missile: The user creates an immense dragon made from water to attack the opponent.

    Used By: Kakashi, Tobirama, Zabuza

    Suiton: Water Encampment Wall: The user creates a protective wall of water around themself.

    Used By: Darui, Kakashi, Kakuzu, Tobirama

    Suiton: Waterfall Basin: The user creates a flood of water and can be used in junction with Earth Rampart.

    Used By: Yamato

    Suiton: Water Fang: The user creates a drill of water that strikes the opponent.

    Used By: Itachi

    Suiton: Water Mirror: The user creates a reflective pool of water which instantly spawns a clone of whoever's reflection is in it.

    Used By: Yagura

    Suiton: Water Pistol: Shoots a high-powered burst of water from the user's fingertip.

    Used By: Suigetus, Mangetsu, 2nd Mizukage, Hozuki clan.

    Suiton: Water Prison: This traps the opponent in a large ball of water. The user must remain in contact with the ball in order to sustain it.

    Used By: Kisame, Zabuza

    Suiton: Water Prison Shark Dance: This traps the opponent in a gigantic dome of water that's centered around the user.

    Used By: Kisame

    Suiton: Water Shark Missile: The user creates a powerful stream of water shaped like a shark.

    Used By: Kisame

    Suiton: Water Trumpet : Releasing a wide stream of water hammering water.

    Used By: Kurotsuchi

    Super Beast Imitation Drawing: This technique creates 3D drawings made of ink. They will disperse after taking sufficient damage. Can also make birds to ride on.

    Used By: Sai

    Super-Size Expansion This technique allows the user to increase the size of their body.

    Used By: Chouji, Chouza, Akimichi clan

    T

    Technique Neutralizer This cancels the opponent's technique by matching the chakra used for the technique.

    Used By: Hiruzen

    Thousand Bees: The user creates a large number of bees with poisonous stingers.

    Used By: First Tsuchikage, Kamizuru clan

    Time-Space Barrier (unnamed): Creates a barrier which teleports an attack in a different location.

    Used By: Minato

    Time-Space Displacement (unnamed): This technique is used to pass through solid matter.

    Used By: Madara

    Time-Space Movement (unnamed): This technique is used to teleport the user or others across distances.

    Used By: Madara

    Toad Oil Blast: The user spews a large amount of slippery and flammable oil from their mouth.

    Used By: Gamabunta, Jiraiya, various frogs/toads

    Tongue-Tooth Sticky Acid: This technique lets the user spit a sizable amount of acid.

    Used By: Katsuyu

    Transformation: A basic jutsu where a ninja is able to appear however they choose. The limitation of this ability depends on the user's proficiency, and can sometimes be aided by others.

    Used By: Everyone

    Transparency Escape: This makes the user invisible.

    Used By: Jiraiya

    Twin Snake Assassination: This causes two large snakes to wrap around both the opponent and the user and kill them.

    Used By: Anko, Orochimaru

    U

    Ultimate Rasengan: where the user creates an ultra-sized Rasengan.

    Used By: Naruto, Jiraiya

    V

    Vanishing Facial Copy: Where the user perfectly assumes another's identity by wearing their skin and clothes.

    Used By: Orochimaru

    Vibrating Sound Drill: This technique uses deafening sound waves to disorient the opponent.

    Used By: Dosu

    W

    War of Words Binding: This is where the user's tongue becomes an incredibly long worm-like creature with sharp teeth and can track down and bind even hidden opponents, secreting a chemical to subdue them.

    Used By: Shima

    War of Words Decapitation: This is where the user's tongue becomes incredibly long and razor sharp, cutting through almost anything.

    Used By: Fukasaku

    Wild Lion's Mane: The user extends their hair and uses it like tendrils to bind and impale the opponent.

    Used By: Jiraiya

    White Snake Power: This technique increases the user's recuperative and healing abilities.

    Used By: Kabuto, Orochimaru, Sasuke

    Genjutsu

    B

    Brainwash Manipulation:This is used to block off an opponent's memories.

    Used By: Sasori

    Bringer of Darkness: This envelops the opponent(s) in pure darkness which robs them of their sight.

    Used By: Hashirama

    Burning Paper: An unnamed technique where the opponent becomes paper-thin and ablaze.

    Used By: Itachi

    C

    Cherry Blossom Clone: The user creates a copy of themself out of flower petals.

    Used By: Kurenai

    Cherry Blossom Dissolve: This causes the opponent(s) to get covered in tons of flower petals that eat away at their bodies.

    Used By: Kurenai

    Cherry Blossom Escape: This allows the user to make themself seemingly disappear in a puff of flower petals.

    Used By: Kurenai

    E

    Earth and Heaven Change: This allows the user to reverse genjutsus back on the opponent whom used it, but requires eye contact.

    Used By: Itachi

    Ephemeral: This will cause the opponent to see and hear their friends' and loved ones insult and humiliate them.

    Used By: Itachi

    F

    False Place: This causes the appearance of something nearby to appear differently.

    Used By: Kotetsu

    Flash of Lightning Pillar: This causes the appearance of everything being engulfed in a blinding white light while being attacked.

    Used By: Shii

    Frog Confrontation Singing: A sound-based genjutsu that immobilizes the opponent and gives the vision of being trapped in a clear water-filled cube surrounded by 4 giant statues of samurai frogs/toads. This genjutsu can only be done by toads and requires at least two users singing, it also takes a moment to sync up voices.

    Used By: Fukasaku & Shima

    H

    Hell Fire: This causes the appearance of a gigantic ball of fire to fall ontop of the opponent.

    Used By: Yoroi

    Hell Viewing: Causes the opponent to see a horrifying vision.

    Used By: Kakashi

    I

    Illusion Tune Chains: A sound-based genjutsu that causes the opponent to believe they're bound by chains and their skin melts off of their bones.

    Used By: Tayuya

    K

    Killer Intent: This makes the opponent(s) experience their own possible demise.

    Used By: Orochimaru

    L

    Living Corpse Reincarnation: The user is able to take over another's body, however the victim's body will start to reject the user after 3 years.

    Used By: Orochimaru

    M

    Mist Servant: This technique creates the appearance of many duplicates of yourself to surround and confuse the opponent so that you can move freely amongst them. Hitting the duplicates will slightly disrupt the illusion, but not dispell it.

    Used By: Various Rain ninja

    P

    Pink Haze: The technique blinds the opponent with a pink mist.

    Used By: Kurenai

    S

    Shackling Stakes: The user causes multiple giant metal stakes fall upon the opponent's body, restricting their movement.

    Used By: Itachi, Sasuke

    Sly Mind Effect: This causes the opponent to unknowingly travel in circles by changing the appearance of the surrounding scenery.

    Used By: Various Rain ninja

    T

    Temple of Nirvana A technique that induces sleep in opponents.

    Used By: Kabuto

    Temporary Body Paralysis: As the name suggests, this causes the opponent to momentarily lose control of their motor functions.

    Used By: Various Anbu, Orochimaru

    Tree-Binding Death: This causes the opponent to believe they're ensnared by a Cherry Blossom tree rapidly growing around them, allowing the user to attack when desired.

    Used By: Kurenai

    Fuuinjutsu

    B

    Binding Curse: A seal that is placed on the opponent that will immobilize their body.

    Used By: Danzo

    C

    Contract Seal: This nullifies an opponent's control over their summon.

    Used By: Minato

    Curse Mark: This is very lethal but those that are strong enough to survive are able to gain a boost in strength, speed, and chakra from it.

    Used By: Anko, Jirobo, Juugo, Kidomaru, Kimimaro, Orochimaru, Sakon & Ukon, Sasuke, Tayuya Curse Mark lv.2: Those that have undergone special requirements are able to use this evolved version of the Curse Mark to gain an even greater boost in strength, speed, and chakra. Prolonged use however causes the body to deteriorate.

    Used By: Jirobo, Juugo, Kidomaru, Kimimaro, Sakon & Ukon, Sasuke, Tayuya

    D

    Death Controller: By obtaining some of the opponent's blood and standing within a seal on the ground, the user is able to inflict harm on the opponent by harming themself.

    Used By: Hidan

    E

    Evil Seal: This seal is used to suppress the effects of other seals.

    Used By: Kakashi

    Explosive Seal: A basic jutsu where the user writes a seal on a piece of paper which will explode.

    Used By: Everyone

    F

    Finger Engraving: This is used to write seals or messages on various surfaces without a writing utensil.

    Used By: Jiraiya

    Fire Suppressor Seal: This is used to seal away fire.

    Used By: Jiraiya

    Five Elemental Seal: Where a seal is placed on the opponent which disrupts their chakra control.

    Used By: Jiraiya, Orochimaru

    Flying Thunder God: These seals can be placed on items (generally kunais) and living beings, allowing the user to teleport wherever that seal was placed.

    Used By: Minato

    Four Dark Mist Array: Used to make the Curse Seal more powerful.

    Used By: Jirobo, Kidomaru, Sakon & Ukon, Tayuya

    H

    Healing Resuscitation Regeneration: Requiringmultiple users, this will rapidly heal those with life-threatening afflictions.

    Used By: Various medic ninja

    I

    Ink Transport: The user is able to teleport others to a location written on a seal.

    Used By: Sai

    K

    Kyuubi Chakra Seal: This seal suppresses the Nine-Tailed Demon's chakra.

    Used By: Jiraiya

    L

    Lion Closing Roar: This seals the opponent's flow of chakra so it cannot be used.

    Used By: Chiyo

    M

    Mechanical Light Seal: This seal creates a shield comprised of chakra.

    Used By: Chiyo

    Mirrored Surface Attacker: This seal creates a perfect duplicate of the person whom touches it, capable of fighting and using that person's techniques.

    Used By: Nagato

    N

    Nine Mystical Dragon Seal: Used in junction with the Heretical Demon Statue, energy dragons extract Bijuu from Jinchuuriki and seal them within the statue.

    Used By: Deidara, Hidan, Itachi, Kakuzu, Kisame, Konan, Madara, Nagato, Sasori, Zetsu

    R

    Reverse Four Symbols Seal: A jutsu that will suck in everything around the user and seal it inside their body.

    Used By: Danzo

    S

    Sealed Iron Wall: This creates a strong barrier around entrances.

    Used By: Chiriku

    Secret Mark Seal: The user stores chakra in seals written on their body and can use that chakra when needed.

    Used By: Tsunade

    Shark Womb Trap: When the opponent activates the seal, they are surrounded in a Water Prison with a shark inside.

    Used By: Kisame

    Storage Seal: A basic jutsu where the user writes a seal in a scroll which will store various items.

    Used By: Everyone

    T

    Three Sided Seal: The user creates a pyramid-like barrier around the opponent which explodes in a flash of light.

    Used By: Hiruzen

    Three Buddhist Treasures Vacuum Destruction: Seals placed in a triangular shape create a powerful vacuum in the center.

    Used by: Chiyo

    Tiger Vision Staring Bullet Seal: A tiger emerges from a drawing and drags the opponent back with it into the picture.

    Used By: Sai

    Transcription Seal: The user is able to give another a technique to use one time.

    Used By: Itachi

    Kuchiyose

    A

    Animal Totems: By signing a blood contract with a species of animals, the user is able to summon them for aid. They tend to vary in size, possess human intelligence and speech, and are able to use jutsus.

    Used By: 1st Tsuchikage, 2nd Mizukage, Anko, Fukasaku, Gai, Hanzo, Hiruzen, Jiraiya, Kakashi, Kidomaru, Kisame, Minato, Naruto, Orochimaru, Sasuke, Shima, Suzumebachi, Temari, Tsunade

    B

    Baku: A mythical chimeric beast which devours dreams and nightmares, and can suck almost anything into it's gaping jaws.

    Used By: Danzo

    D

    Disorder of Demonic Haunts: The user summons 3 ghost-like creatures that eat chakra and be controlled with music.

    Used By: Tayuya

    F

    Food Cart Destroyer: After signing a blood contract with frogs/toads, the user is able to summon a building-sized frog/toad to fall from the sky and crush their enemies.

    Used By: Jiraiya

    H

    Heretical Demon Statue: A living statue that's capable of extracting souls and sealing them within itself.

    Used By: Madara, Nagato

    I

    Impure World Hands: The user summons hands of wicked spirits to attack the opponent.

    Used By: Orochimaru

    K

    Kyuubi: The user is able to summon the Nine-Tailed Fox Demon.

    Used By: Madara

    P

    Phantasm Warrior Melody: The user summons three evil spirits that can be controlled with music.

    Used By: Tayuya

    R

    Raining Spiders: After signing a blood contract with spiders, the user summons a giant female spider that sends her hatchlings to attack the opponent.

    Used By: Kidomaru

    Rashoumon: Where a ninja is able to summon a giant monstrous gate to protect themself from almost any head-on attack.

    Used By: Orochimaru, Sakon & Ukon

    Resurrection to the Impure World: With this, the user sacrifices living people to resurrect the dead as their servants.

    Used By: Kabuto, Orochimaru, Tobirama

    Reverse Summoning: After signing a blood contract with a species of animals, they are able to summon the user.

    Used By: Fukasaku, Gamabunta, Shima

    S

    Shinigami: Also known as the \"Reaper Death Seal,\" the user summons the Japanese Death god. The Death God will steal the soul of the opponent(s), but the user must offer their own soul aswell.

    Used By: Hiruzen,Minato

    T

    Toad Gourd Prison: The user traps the opponent in a toad-shaped gourd housing a lake of acid.

    Used By: Jiraiya

    Toad Hiding: After signing a blood contract with frogs/toads, the user can shrink inside of a frog/toad's mouth and travel inside of it.

    Used By: Jiraiya

    Toad Mouth Binding: After signing a blood contract with frogs/toads, the user summons the esophagus of a giant fire-breathing toad around enemies. With this, the enemies become stuck to the sticky insides and get covered in strong stomach acid, and tendrils can also reach from the \"walls\" to grab enemies that try to escape.

    Used By: Jiraiya

    Toad Mouth Inferno: After signing a blood contract with frogs/toads, the user summons the esophagus of a giant fire-breathing toad around enemies. The toad then breathes fire, making escape almost impossible.

    Used By: Jiraiya

    Toad Shop: After signing a blood contract with frogs/toads, the user summons a frog/toad to transform into a store, trapping enemies that enter.

    Used By: Jiraiya

    Tracking Fang: After signing a blood contract with dogs, the user summons a pack of ninja dogs to emerge from beneath the opponent and bite onto them.

    Used By: Kakashi

    Triple Rashoumon: This is just like a normal Rashoumon, however three monstrous gates are summoned.

    Used By: Orochimaru

    W

    Whirl: After signing a blood contract with weasels, the user summons a weasel carrying a scythe which it uses to spin around the area in circles, cutting everything in half.

    Used By: Temari

    Kekkai Genkai

    A

    Attack of an Evil Spirit: The user is able to merge with others, and can make parts of their body appear from any part of the host's body. However, they're also able to use this ability to break down their opponent's bodies from the inside out.

    Used By: Sakon & Ukon

    B

    Bakuton: C0 Ultimate Art: The user will place clay inside of their own body which will absorb all of the user's explosive chakra, and then the user will explode with an incredible magnitude.

    Used By: Deidara

    Bakuton: C1 Exploding Clay: The user infuses explosive chajra into clay to mold it into different animals which they can control and make explode on command. Can also create a bird to fly on.

    Used By: Deidara

    Bakuton: C2 Dragon: The user infuses their explosive chakra to mold a giant clay dragon which they can control, it is also able to spit C1 from it's mouth.

    Used By: Deidara

    Bakuton: C3 Ohako: The user molds clay with their explosive chakra to creates a statue which is able to quadruple in size and explode at will.

    Used By: Deidara

    Bakuton: C4 Garuda: The user molds clay using their explosive chakra to create a copy of themself of varying sizes, however instead of exploding it will disperse and cause microscopic clay bombs to spread through the air killing anything that breathes from the inside out.

    Used By: Deidara

    Bakuton: Landmine Punch: The user generates an explosion from their fist.

    Used By: Gari

    D

    Dead Bone Pulse - Dance of the Camellia: The user is able to form weapons out of their own bones which they can pull out of their body.

    Used By: Kimimaro

    Dead Bone Pulse - Dance of the Clematis: The user creates a second spine which they use as a whip.

    Used By: Kimimaro

    Dead Bone Pulse - Dance of the Clematis Flower: The technique causes the bones in the user's arm to grow and fuse into a giant spike.

    Used By: Kimimaro

    Dead Bone Pulse - Dance of the Larch: This technique allows the user to extend spikes from their bones.

    Used By: Kimimaro

    Dead Bone Pulse - Dance of the Willows: The user forms bone spikes from their joints.

    Used By: Kimimaro

    Dead Bone Pulse - Dance of the Young Ferns: The user is able to extend their bones through the ground, creating something of a bone forest.

    Used By: Kimimaro

    Dead Bone Pulse - Ten Finger Drilling Bullets: The user is able to shoot the bones in their fingertips.

    Used By: Kimimaro

    E

    Eight Divination Signs: 64 Palms: The user focuses chakra in their fingertips and, in junction with the Byakugan, the user strikes each of the opponent's chakra points rendering them practically immobilized.

    Used By: Hiashi, Neji, Hyuuga clan

    Eight Divination Signs: Empty Palm: The user releases a powerful wave of chakra from their hand to thrust the opponent back.

    Used By: Hiashi, Neji, Hyuuga clan

    Eight Divination Signs: Heavenly Spin: The user creates a barrier of chakra around themself to stop attacks, and can add a rotation to to the chakra to deflect attacks or harm the opponent.

    Used By: Hiashi, Neji, Hyuuga clan

    F

    Futton: Skilled Mist: The user is able to exhale an acidic mist.

    Used By: Mei

    H

    Hyouton: Blasting Ice Crystals: The user causes icy spikes to rapidly form from the ground.

    Used By: Haku

    Hyouton: Death by a Thousand Flying Needles: The user creates many shards of ice to fall onto the opponent.

    Used By: Haku

    Hyouton: Demonic Ice Mirrors: The user creates icy mirrors and can fuse with them, and they all show the reflection of the user. The user is able to leave any mirror to attack and enter another.

    Used By: Haku

    Hyouton: Shattering Ice Sphere: The user encases the opponent in ice.

    Used By: Haku

    Hyouton: Snow Globe: This creates a large dome of ice around the user, protecting from attacks.

    Used By: Haku

    I

    Izanagi: By sacrificing one of their Sharingans, the user is unkillable for 60 seconds by turning reality into fantasy, and can reappear away from whatever \"killed\" them.

    Used By: Danzo, Madara

    J

    Jiton: Autumnal Showers: This technique compresses iron powder into bullets which are projected at a high rate of speed.

    Used By: Sasori, Third Kazekage

    Jiton: Gold Dust Wave: The user manipulates gold shavings to attack the opponent.

    Used By: 4th Kazekage

    Jiton: Iron Drizzle: This technique shapes iron powder into falling spikes.

    Used By: Sasori, Third Kazekage

    Jiton: Joint Attack: This technique shapes iron powder into different structures, and can levitate and move these structures.

    Used By: Sasori, Third Kazekage

    Jiton: Magnet Shuriken: The user can transfer a magnetic field to the opponent through contact, making it impossible to avoid metallic weapons.

    Used By: Toroi

    Jiton: World Order: The user compresses iron powder into a ball which rapidly branches out, stabbing anything within reach.

    Used By:Sasori, Third Kazekage

    Jinton: Primitive World Detachment: This creates a large cube that destroys whatever it hits at the molecular level.

    Used By: Onoki, Muu

    M

    Mangekyou Sharingan - Amaterasu: The technique creates a black flame wherever the user focuses their glare, but requires a great deal of Chakra to use and weakens the user's vision.

    Used By: Itachi, Sasuke

    Mangekyou Sharingan - Kagutsuchi: A variant of Amaterasu, allowing the user to control Amaterasu.

    Used By: Itachi, Sasuke

    Mangekyou Sharingan - Kamui: This technique allows the user to create a black hole which draws in whatever they see, but requires a great deal of Chakra to use and weakens the user's vision.

    Used By: Kakashi

    Mangekyou Sharingan - Koto Amatsukami: A subtle form of mind-control done by implanting thoughts into the opponent.

    Used By: Danzo, Shisui

    Mangekyou Sharingan - Susanoo: The user summons a giant spectral humanoid around the user which wields the Totsuka sword and Yata mirror. The Totsuka sword traps whoever it stabs in a dream-like world, and the Yata mirror is able to deflect whatever hits it. This technique drains the user's life-force and weakens the user's vision.

    Used By: Itachi, Sasuke

    Mangekyou Sharingan - Tsukiyomi: By making eye contact, the user casts a mentally damaging genjutsu. More experienced users can alter the perception of time with Tsukiyomi, making 3 seconds seem like 3 days. This technique requires a great deal of Chakra to use and weakens the user's vision.

    Used By: Itachi, Madara, Sasuke

    Mokuton: Birth of Dense Woodland: This technique causes a small forest to rapidly grow however the user desires.

    Used By: Hashirama, Madara, Yamato

    Mokuton: Dwelling Assembly End: Many of trees grow around the enemy, and then explode.

    Used By: Hashirama

    Mokuton: Great Forest: The user makes trees grow from their own body to attack or defend.

    Used By: Danzo, Yamato

    Mokuton: Four Pillar Home: The user creates a house using trees.

    Used By: Yamato

    Mokuton: Four Pillar Prison: The user creates a cage around the opponent using trees.

    Used By: Yamato

    Mokuton: Smothering Bind: Branches grow from the user's body, wrapping around and immobilizing the opponent.

    Used By: Yamato

    Mokuton: Tree Restraints: This causes small trees to grow around the opponent, binding them.

    Used By: Hashirama, Yamato

    Mokuton: Wood Barrier: This is where the user creates a protective dome using trees.

    Used By: Yamato

    Mokuton: Wood Clone: This creates a copy of the user that's capable of using the original's abilities.

    Used By: Yamato

    Mokuton: Wood Transformation: The user causes a tree to grow around themself and take the form of whatever they choose.

    Used By: Yamato

    Mokuton: Seed Tracker: The user is able to use a seed as a homing device.

    Used By: Yamato

    R

    Ranton: Laser Circus: This allows the user to project multiple energy beams from their hands.

    Used By: Darui

    Rinnegan - Amplification Summoning: The user is able to summon various creatures for aid. They tend to vary in size and are able to use jutsus.

    Used By: Madara, Nagato (Animal Pein)

    Rinnegan - Catastrophic Planetary Construction: The user creates a ball of gravity which pulls everything towards it, trapping the opponent in rubble.

    Used By: Madara, Nagato (Deva Pein)

    Rinnegan - Divine Subjugation: The user is able to repel things from their body with gravity.

    Used By: Madara, Nagato (Deva Pein)

    Rinnegan - Heavenly Attraction: The user attracts things towards themself with gravity.

    Used By: Madara, Nagato (Deva Pein)

    Rinnegan - Human Summoning: The user is able to summon humans if a connection is shared.

    Used By: Madara, Nagato (Animal)

    Rinnegan - Lie Detection: If the opponent lies, the user will rip out their tongue.

    Used By: Madara, Nagato (Hell Pein)

    Rinnegan - Lit Apparition: The user projects a shadowy image of theirs or another's consciousness over great distances so that they can communicate remotely.

    Used By: Madara, Nagato (Human Pein)

    Rinnegan - Ninjutsu Blocking Absorption: The user is able to draw in their opponent's ninjutsu and chakra into their own body.

    Used By: Madara, Nagato (Hungry Ghost Pein)

    Rinnegan - Reincarnation of Heavenly Life: The user is able to heal the dead, but there is a time-limit that governs if one can be revived.

    Used By: Madara, Nagato (Hell Pein)

    Rinnegan - Strange Arm Flaming Arrow: The user is able to shape their body and form weapons, including missiles.

    Used By: Madara, Nagato (Asura Pein)

    Rinnegan - Stream of Consciousness (unnamed): The user melds with the opponent's mind and draw out information, and capable of killing the opponent in the process.

    Used By: Madara, Nagato (Human Pein)

    S

    Sanctuary Enlightenment Enclosing Palm: This allows the user to control/suppress Bijuus.

    Used By: Hashirama, Yamato

    Shakuton: Steaming Slaughter: Creates small sun-like spheres that maneuver around the user. They can absorb themselves into the opponent and dehydrate them to death.

    Used By: Pakura

    Y

    Yoton: Congealing Caustic Blast: The user spits globs of molten rock that quickly cools and becomes cement-like.

    Used By: Kurotsuchi

    Yoton: Flower Fruit Mountain: The user causes lava to burst from the ground.

    Used By: Roushi

    Yoton: Magma Armor: The user covers themself in molten rock for offense and defense.

    Used by: Roushi

    Yoton: Melting Apparition: The user is able to spit a glob of lava.

    Used By: Mei

    Yoton: Rubber Ball: Creates a rubber-like wall.

    Used By: Dodai

    Yoton: Rubber Rope: Creates a cord of rubber-like material.

    Used By: Dodai

    Yoton: Rubber Wall: Creates a rubber-like wall for defense.

    Used By: Dodai

    Yoton: Scorching Stream Rock: The user spits a volley of molten rocks at the opponent.

    Used By: Roushi

    Taijutsu

    Taijutsu are the martial arts of the Naruto Universe. They do not need chakra, but their strength can be enhanced by the use of chakra in the blows. Some taijutsu however do require the use of chakra to be effective.

    Front Lotus: This Taijutsu attack is a very dangerous attack which needs the release of your first Chakra Gate. It is one of the most common attacks employed by Rock Lee, but it has also been used by Might Guy and Kakashi. It is a two part attack, each of which is listed below:

    • Shadow of the Dancing Leaf: The shadow of the Dancing leaf is a quick upward kick into an opponent's chin, vaulting them into the air, where the user will then quickly jump up behind them, making any defense by the enemy difficult.

    • Pile driver: In this step, the person employing the use of this Jutsu will wrap something around the opponent (in the case of Lee, he uses his arm bandages). The employer of the Jutsu will the wrap their arms around their opponent, and begin spinning them rapidly towards the ground. Right before impact, The employer will then kick off of the opponent, and the Opponent will land head-first into the ground, causing serious harm to the enemy.

    • Used By: Lee

    The full Front lotus is a B-rank attack

    Gentle Fist: This Technique is a fighting style meant to be incorporated with the Byakugan eye, and is taught to every member of the Hyuga clan. Using the Byakugan, the user locates the chakra points in the opponents body and uses multiple strikes to each point to block it off. This leaves the opponent unable to use his Chakra, and leaving him defenseless from any future attack.

    Used By: Hinata, Hiashi, Neji

    Lion Barrage: This Jutsu is an attack created by Uchiha Sasuke after seeing the Front Lotus. The beginning of the attack is the same as that of the Front Lotus, using the Shadow of the Dancing Leaf, but instead of following it up with a pile driver, the user attacks the opponent with a barrage of attacks, the first one a strike to the side (Mean to be blocked), before following it up with two hand strikes. The final attack is a kick to the stomach, sending the opponent into the ground at high speeds. The Lion Barrage is a C-rank attack.

    Used By: Sasuke

    Morning Peacock: The user moves their fists so fast that they create fire from the friction, enhancing the power of the strikes.

    Used By: Gai

    Noon Tiger: This uses wind pressure in the shape of a tiger's head to attack the opponent, it condenses into a single point and then explodes.

    Used By: Gai

    Reverse Lotus: This technique is one of the most dangerous Taijutsu techniques, needing for the opening of at least three chakra gates, which is in itself a feat. The user will then launch their enemy into the air, and following them, delivering a shattering blow which will launch them into the ground, usually being fatal to the opponent. The attack is a gamble, though, since the releasing of so many Chakra Gates at once will leave the user drained and very susceptible to attack.

    Used By: Lee

    Then, of course, there are the techniques that require no chakra at all, mainly because they are not taught anywhere and do not really provide an edge in any fight. These are the simple taijutsu moves that are more like brawling then they are martial arts, like Naruto's star kick that seemed never to fail to get him into a battle, and get the upperhand at the same time. Naruto used some techniques that never seemed to be anything like martial arts for the duration of part I. Then there were Itachi's kicks that, unseemingly, were really just brute force and no real graceful intent behind them.

    Eight Gates

    They are eight important chakra points in the body. This is what limits the chakra in your body. So if you use it you have limits. After you use this it makes your body weaker. If you uses this you can pass the normal physical standards, but have extreme pain to the body. Rock Lee is one who can open open the 5 gates only for now. Might Guy, the one who even taught Lee about this, can open 6. Kakashi Hatake can only open 1, this is proven because while he was rock climbing it shows in his brain the first gate activating.

    The First Gate

    This gate is called the Gate of Opening, this frees the brain limit on all the strains and muscles, giving the user 5 times more speed and strength.

    The Second Gate

    This is called the Gate of Rest, you release the brain limit on your stamina, If the user was exhausted and ready to quit in an instant he would want to fight like the fight didn't even start yet.

    The Third Gate

    This is called the Gate of Life, this gate is in your spinal cord, and frees the limit to your nervous system through out your body. This makes information faster and builds more stamina. The side-effect of this is your body's skin will turn red because your building your blood-oxygen rate.

    The Fourth Gate

    This gate is called the Gate of Pain, It releases the limit oxygen going to your lungs, making more oxygen for the users body to use.

    The Fifth Gate

    This gate is called the Gate of Closing, this frees the amount of chakra you can use in one attack, this allows you to move the speed of sound.

    The Sixth Gate

    This gate is called the Gate of Joy, this takes away the amount of fat and protein your body can digest. And releasing useless energy resources giving the person more power and more stamina.

    The Seventh Gate

    This gate is called the Gate of Shock, this takes away the amount your body can move, it takes away your dead skin cells to fences and refresh your system making your body more power and more stamina.

    The Eighth Gate

    This gate is called the Gate of Death, this is the last gate, it is at the heart and uses your whole body's energy, it makes your heart pump at its fullest speed and passes all the 1-7 gates. It uses every cell in your body. There is side-effect of this called the Big Bang it kills every muscle in the body and the heart. Its a certified death on the user if the Gate of Death is ever opened.

    Used by: Lee & Might Guy & Kakashi

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-225842/","id":225842,"name":"Uzumaki Naruto","issue_number":"1"},"id":50943,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/378/367283-47279-jutsu.PNG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/378/367283-47279-jutsu.PNG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/378/367283-47279-jutsu.PNG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/378/367283-47279-jutsu.PNG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/378/367283-47279-jutsu.PNG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/378/367283-47279-jutsu.PNG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/378/367283-47279-jutsu.PNG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/378/367283-47279-jutsu.PNG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/378/367283-47279-jutsu.PNG","image_tags":"All Images,Examples"},"name":"Jutsu","site_detail_url":"https://comicvine.gamespot.com/jutsu/4015-50943/","start_year":"2000"},{"aliases":"Dystopia\r\nEarth-9200","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-51328/","count_of_isssue_appearances":30,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-12-15 15:03:36","deck":"Home reality of Maestro.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-527910/","id":527910,"name":null,"issue_number":"1"},"id":51328,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/140903/4091548-587.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/140903/4091548-587.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/140903/4091548-587.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/140903/4091548-587.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/140903/4091548-587.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/140903/4091548-587.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/140903/4091548-587.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/140903/4091548-587.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/140903/4091548-587.jpg","image_tags":"All Images,Fan Art and Cosplay,Hulk,Maestro"},"name":"Future Imperfect","site_detail_url":"https://comicvine.gamespot.com/future-imperfect/4015-51328/","start_year":"1978"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-51564/","count_of_isssue_appearances":13,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-03-12 23:47:12","deck":"Composed of hieroglyphics found on the Creation Wheel, it is capable of granting godlike superpowers to whoever observes it.","description":"

    Overview

    \"\"
    \"Divine Right\"

    The Creation Equation is based on a series of futuristic hieroglyph-like symbols located on the Creation Wheel, an ancient artifact of unknown provenance. When translated into binary, these hieroglyphs create a string of numbers, the so-called \"Creation Equation,\" that gives those in possession of the Equation access to the divine powers of the Creation Wheel and of creation itself, referred to as \"divine right\". Simply viewing the string of binary into which the equation has been encoded is sufficient to \"download\" the equation into a host, granting the host this divine right. Small parts of the equation, when viewed, can also endow limited elements of the power into those who view it.

    The Creation Equation creates godlike nigh-omnipotence in its human host. The host is capable of teleportation, reality alteration, reanimation of the dead (with no apparent ill effects to the reanimated individual), and numerous other abilities. It can also cause emotional and psychological disturbances in the human that hosts it.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-164637/","id":164637,"name":"First Drafts","issue_number":null},"id":51564,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/4276305-creation_equation-divine_right%234-cover.jpg","image_tags":"All Images"},"name":"Creation Equation","site_detail_url":"https://comicvine.gamespot.com/creation-equation/4015-51564/","start_year":"1997"},{"aliases":"Homunculi","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-51803/","count_of_isssue_appearances":53,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-03-17 06:30:03","deck":"Living beings, usually humans, artificially created through the use of alchemy.","description":"

    Overview

    Homunculus is a term generally used in various fields of study to refer to any representation of a small human being. Popularized in 16th century alchemy and 19th century fiction, it has historically referred to the creation of a miniature, fully formed human. Currently, in scientific fields, a homunculus may refer to any scale model of the human body that, in some way, illustrates physiological, psychological, or other abstract human characteristics or functions.

    Homunculi have made numerous appearances throughout fiction, such as those in the Fullmetal Alchemist manga and animes, Buso Renkin, or other such series.

    Fullmetal Alchemist

    See The Homunculli page for more info.

    Buso Renkin

    The Homunculi are creatures created by using alchemy on the cells of an already living creature and injecting the cells into a human body. This process is made possible through the use of carrier embryos which enter the body and make their way to the brain, where they turn the human they have infected into a Homunculus. If the embryo is implanted directly into the brain, then the transformation will be almost instantaneous and almost painless, but if the embryo were to be injected at any other part of the body, it will cause severe pain to the person as it makes its way up to the brain. After the creature has become a homunculus, they gain many different powers, including invulnerability, healing, immortality, super strength, super speed, and a need to eat humans.

    There are three different types of Homunculus:

    Animal-Type Homunculus

    The Animal-Type Homunculus is the weaker of the two types, resulting when the carrier embryo is implanted with the cells of an animal and implanted into a human. When this happens, the human will be capable of transforming into the form of the animal from which the cells were taken, as well as being able to transform into a human. This transformation is severely harmful to the human host though, causing them to die, and their brain to be taken over by the experiences and instincts of the donor animal. The Animal-Type Homunculi become amazingly loyal to the human that created them, much as a pet becomes loyal to its owner, though some seem to be less loyal than others. Their power is entirely dependent on their animal and on their own will (as demonstrated by Kawazui’s being beaten by Kazuki Muto, but Washio being able to battle both Kazuki and Tokiko on equal terms).

    Plant-Type Homunculus

    The Plant-Type Homunculi occur when the cells of a plant are placed into the carrier embryo. The Plant Type Homunculi are very similar to the Animal-Type Homunculi, as both have both a human and a “natural” form, and both the Animal and Plant-Types’ power is entirely based on their own strength and determination. The Plant-Type Homunculus are also arguably the easiest type of Homunculus to make, as Papillon’s first successful Homunculus was a Plant-Type, but this may also have only been a coincidence.

    Human-Type Homunculus

    The Human-Type Homunculi are the most powerful type of Homunculi, due to their ability to use the Kakugane, an ability reserved for humans. The Human-Type Homunculi are created when a Human uses his own cells in the carrier embryo, and he would then implant this embryo into their own body. This causes them to gain all the powers of a Homunculus without their minds being destroyed. In other words, they are able to keep their memories, their thought processes, and their ambitions.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-42660/","id":42660,"name":"Chapter Three","issue_number":"3"},"id":51803,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/6099246-e5daa64d-3fab-4a3f-9104-bb96c2995171.jpeg","image_tags":"All Images"},"name":"Homunculus","site_detail_url":"https://comicvine.gamespot.com/homunculus/4015-51803/","start_year":"1996"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-52146/","count_of_isssue_appearances":44,"date_added":"2008-06-06 11:27:53","date_last_updated":"2014-12-01 18:02:09","deck":"Benders exist in the world of Avatar: The Legend of Aang (aka Avatar: The Last Airbender) and Avatar: The Legend of Korra. Benders can bend one specific element (Water, Earth, Fire or Air). The Avatar is able to bend all four elements as well as a fifth element.","description":"

    Firebending

    Iroh’s words of wisdom for the Fire Nation:

    ”Fire is the element of power. The people of the Fire Nation have desire and will, and the energy and drive to achieve what they want.”
    \"Firebending\"
    Firebending

    The firebenders, hailing from the fire nation, are capable of controlling heat, and are capable of amazing feats of fire manipulation and creation. The first firebenders, the Sun Warriors, were able to discover their abilities by studying the world’s natural fire benders, the dragons. Firebenders have shown themselves capable of using fire from various parts of their bodies, including, the hand, feet, and mouth, but to a rarer extent. Firebending seems to require steady breathing, or else the bender can lose control of their fire. Firebenders have shown shown themselves capable of propelling in the air through use of fire, but in only small bursts, as demonstrated by Azula.

    During Sozin's Comet, firebenders are at their peak. Iroh, by himself, was capable of sending a giant ball of flame to burst a hole in Ba Sing Se's wall. Firebenders ( like Ozai) have themselves to be able to continuously float in the air and propel themselves by using fire coming from their feet. The fire formed by Sozin's comet has a significant reach compared to regular firebending.

    Firebender also have different colors for fires. Traditional fire is red/orange. One exception is Azula's, who's fire is blue ( although it was the traditional color when she was younger.) Her seems to be more concussive as it was capable of busting through a wall of earth created by Aang. Varying colors seem to mean varying strengths.

    The true nature of Firebending was hidden by fire lord Sozin when he began his war against the other nations. He instead began teaching all those under his control that the true power from the fire nation lay in their rage, and began making them angry at the other nations.

    Firebending is based on the martial artist’s style of Northern Shaolin, focusing on strong kicks and long ranged attacks. However, they are also very capable of fighting close range with swift punches and jabs. The true strength of a firebender, though, is in their amazing speed and precision, and prodigal firebenders have been shown to be able to escape from four other capable benders without damage to themselves.

    Lightningbending

    Lightningbending, also known as the Cold blooded fire, is one of the most deadly

    \"Lightning
    Lightning Bending

    techniques available to a firebender. To bend lightning, a firebender must let go of all of their emotions, and then attempt to separate their good side from their bad side, their yin from their yang. However, due to the fact that the two are connected, they will eventually crash back together, and lightning is created. The Lightning is nearly impossible to survive, but this power is not at the mercy of the user. The user can only guide it out of them, and the lightning shall carve its own path through the air.

    However, it is possible to redirect lightning. The technique for doing so was created by the amazing firebender Iroh as he watched waterbenders. To due so, one must guide the energy that the lightning creates through your hand, down your arm, through your stomach, and then out your other hand, sending the lightning away from you. However, if it were to go through your heart, then it would cause too much damage, making it deadly to the user. This makes this technique impressively deadly, but a true master can do it without fear of harming themselves.

    Earthbending

    Iroh’s words of wisdom on the Earth Kingdom:

    ”Earth is the element of substance. The people of the Earth Kingdom are diverse and strong.”

    The Story of the earthbenders is the only story that has been explored in detail.

    \"Earthbending\"
    Earthbending

    The story is of two warring sides, and two people on each side who discovered one another and fell in love. The two, by observing the badgermoles, learned to earthbend and carved out long elaborate tunnels that connected their two sides, and would meet secretly in the caves.

    Earthbending is based off of the martial arts style of Hung Gar, though the character Toph Bei Fong’s style of earthbending is based off of Southern Praying Mantis style instead. It focus’s on having a strong, solid base that makes it almost impossible to move the earthbender when they are fighting. They are capable of moving unbelievable amounts of earth, making them unbelievably dangerous. Earthbenders have shown they can move through the ground as if it was air, and are more attuned to the air as well. Earthbenders can also bend mud ( since it's earth and water), and sand, but as shown by Toph, it isn't the easiest transition, although she becomes skillful enough in it to create a replica of Ba Sing Se, including some citizens.

    Metalbending

    Metalbending is a subsection of Earthbending that appears to have been created

    \"Discovering
    Discovering Metal bending

    by the blind Earthbender Toph. Due to metal being a purified form of earth, Toph was able to discover the impurities in the metals by using vibrations. Then, by bending these small impurities, Toph was able to bend the metal, effectively becoming the first ever Metal Bender.

    The fact that it is possible to bend metal is of serious danger to those who attempt to imprison such a metalbender, as it used to be thought that imprisoning an earthbender was to keep them surrounded by something they could not bend, namely metal.

    Though Toph does appear to be the only character capable of metalbending, it is very possible that King Bumi can actually bend metal, since he was shown bending while in a metal cage. However, his only comment about bending with his face makes this very unlikely. Aang can possibly bend metal in the future, seeing as though he has the same seismic sense Toph has (from training with her) and knows that even metal has some Earth inside it.

    In the recent Avatar comics by Dark Horse, Toph has created an academy to teach young earthbenders the art of metalbending. She has been successful with 3 students via the help of Sokka.

    Airbending

    Iroh’s words of wisdom on the Air Nomads:

    ”The Air Nomads detached themselves from worldly concerns, and found peace and freedom. Also, they apparently had pretty good senses of humor!\"

    The Airbenders, who lived in a similar fashion as Buddhist Monks, first learned

    \"Airbending\"
    Airbending

    how to manipulate air currents by watching the Sky Bison, as well as the winged Lemurs. Eventually, they became Nomads, and lived in one of four temples spread at the four different directions.

    The Airbending style is based off of the martial arts style of Ba Gua, as well as Hsing Yi. An Airbender usually attempts to avoid al assaults sent their way, and will usually attempt to just wait for an opening in their opponent’s defense. The biggest advantage that they held in a fight was their inhuman speed, caused by their ability to manipulate the air around them. They were also able to summon great gusts, and some were even powerful enough to summon giant hurricanes. Airbenders had the capability to be some of the deadliest benders, due to the abundancy of air, their quick movements, and the capability of creating miniature tornadoes/twisters, funnels, slices of air capable of cutting rock etc. However, sue to their pacifistic nature, they don't do such things.

    Airbenders have a great variety of offensive and defensive techniques, such as creating shields of air, concussive blasts shaped like the bender's body, and so on. Passively, they can run on water (because they're so fast) run up walls, and create air cushions to slow themselves down as they're in the air, so they don't the ground hard.

    Unfortunately, the Air Nomads were all killed at the beginning of the war between the Fire Nation and the rest of the world. Only one of them actually survived the attack, The Avatar (Aang).

    Gliders

    Airbenders use hand gliders to fly/glide. They are able to do this by manipulating

    \"Gliding\"
    Gliding

    the air currents around their gliders allowing them to do this. The glider is a stick concealing a two fans sort of things, one big one up top, and a smaller one at the bottom. Traditionally, the Airbender holds onto one of the wooden bars used to hold out the fan, and put their feet on a small bar on the bottom.

    The Mechanist and Teo recently created a new glider for Aang. The gliders upper fan was smaller and it contained a bar up either end for Aang to hold onto. It also had a compartment used to store nuts.

    Waterbending

    Iroh’s words of wisdom on the Water Tribes:

    ”Water is the element of change. The people of the Water Tribe are capable of adapting too many things. They have a deep sense of community and love that holds them together through anything.”

    For centuries, people have watched the tides caused by the slow push and pull of

    \"Waterbending\"
    Waterbending

    the moon. A few people decided to attempt the same feat, and began teaching themselves how to manipulate the water. According to Princess Yue: \"Our ancestors saw how it pushed and pulled the tides and learned how to do it themselves... Our strength comes from the Spirit of the Moon; our life comes from the Spirit of the Ocean. They work together to keep balance.\"

    The style of waterbending is based off of the ancient Asian style of Tai Chi. It encompasses fluid and skillful movements to control the water, and a true master may appear to be in a sort of dance as they fight. They are capable of summoning giant waves, as well as controlling hips of water.

    Healing

    By using the properties of water, waterbenders are able to manipulate the

    \"Healing\"
    Healing

    meridians to the point that they can heal multiple wounds, from cuts to burns. This healing has also been shown to help heal mental damage as well, and, with the help from spirit water, it has been shown to be able to bring someone back to life.

    The healing that is taken on by waterbenders was usually taught to the women, who were believed to be useless in a fight, until this practice was stopped by Katara.

    Bloodbending

    Bloodbending is perhaps the darkest aspect of waterbending. Bloodbending can only be performed on the night of the full moon, when a waterbender is at their peek strength. A waterbender uses their increased power to control the fluids within a person, and cause them to do whatever the waterbender wishes. This can only be resisted by another waterbender.

    The Avatar

    Energybending

    Energybending is the ability to bend life energy. It predates the main four bending

    \"Energybending\"
    Energybending

    arts, as well as the arrival of the Avatar and the formation of the Four Nations.

    Before the arrival of the Avatar into the world, and the separation of the four elements, people bent the energy within themselves. They discovered the other four bending arts, and over time knowledge of Energybending was almost completely lost. The last known keeper of the art was an ancient Lion Turtle , who later passed it down to Avatar Aang who used it to remove Ozai's firebending forever.

    The capabilities of Energybending are not well understood; what is known is that bending a person's life energy can impart them with knowledge instantly or remove one's bending completely. This bending art is dissimilar to the others because it is so perilous to the user, which is why so few have ever used it.

    Dangers

    Energybending is an extremely powerful and potentially dangerous technique. If the bender's spirit is even slightly weak (bendable), then they will be infected by the spirit of the one they are bending. As a result the bender can be corrupted and even killed.

    Don’t underestimate the avatar

    The Avatar is a special bender, with the ability to bend every element. It is an Avatar's duty to master each element, and keep peace throughout the world. After an Avatar dies he is reincarnated, circling the four nations, in the circle of water, earth, fire and air.

    • In the Avatar State, the Avatars' power is multiplied to an exponential length this usually occurs when the Avatar is in distress or when someone close to that individual is in duress.

    Aang has been shown to be able to take the form of a giant fish monster when he was in this state.

    Also when in this state, the Avatar is extremely vulnerable, which enables an enemy to attack and hurt the Avatar to near death extents.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-116265/","id":116265,"name":"Chapter One: The Boy in the Iceberg","issue_number":"1"},"id":52146,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/75086/1930538-bending_avatar_the_last_airbender_11760746_480_608.jpg","image_tags":"All Images"},"name":"Benders","site_detail_url":"https://comicvine.gamespot.com/benders/4015-52146/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-52148/","count_of_isssue_appearances":77,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-07-25 09:55:32","deck":"The Eisner Awards recognize artistic excellence in the comic book industry. Created in 1987 and named after the legendary Will Eisner, the awards are presented annually at Comic-Con in San Diego.","description":"

    Nomination and Selection Process

    Five judges are selected annually from different branches of the comic book community to comprise a panel to nominate works from the previous year in each category. The judges select from entries submitted to them by creators and publishers as well as any works not submitted they see as noteworthy. The judge's nominations are sent out to members of the comics industry to select a winner. Four or five candidates are nominated per category for work released in the prior year with the exception of the Hall of Fame. Inductees into the Hall of Fame are chosen from a list of around 16 candidates, typically two candidates are inducted by the judges and four are voted in by the industry voters. Winners are announced at Comic-Con in San Diego.

    Hall of Fame

    * Indicates Judges' Choices, all others inducted by vote of members of comics industry (creators, editors/publishers, retailers, press, historians, and librarians).

    Annual Artist Awards

    Best Art Team

    Best Artist/Penciller/Inker or Penciller/Inker Team

    \"No

    Best Colorist/Coloring

    \"Dave
    Dave Stewart has picked up 9 Best Colorist Eisners

    Best Cover Artist

    \"James
    James Jean Best Cover Artist Eisner Winner 2004-2009

    Best Editor

    \"No

    Best Letterer/Lettering

    \"Todd
    Todd Klein won Eisners from 2000-2006 for Promethea (among others)

    Best Painter/Multimedia Artist (Interior)

    \"Jill
    Jill Thompson has won 5 Eisners for interior Painter/Multimedia Artist

    Best Writer

    \"No

    Best Writer/Artist

    \"No

    Best Writer/Artist - Humor

    \"Tony
    Tony Millionaire's 2007 Winner

    Best Writer/Artist Non-Fiction

    Special Recognition

    Talent Deserving of Wider Recognition

    \"Renier's
    Renier's 2006 Winner

    Annual Publication Awards

    Best Adaption from Another Medium

    Best Anthology

    \"1993
    1993 Best Anthology Winner

    Best Archival Collection/Project

    \"Schulz'
    Schulz' 2005 and 2007 Winner

    Best Archival Collection/Project - Comic Strips

    \"2010
    2010 Best Archive Project

    Best Archival Collection/Project - Comic Books

    \"IDW's
    IDW's 2014 Winner

    Best Black and White Series

    Best Comic Strip Collection

    Best Continuing Series

    \"Saga
    Saga won 3 consecutive Best Continuing Series awards

    Best Digital Comic

    Best Webcomic

    Best Finite/Limited Series

    \"1994
    1994 Best Limited Series Winner

    Best Graphic Album

    Best Graphic Album - New

    \"Craig
    Craig Thompson's 2004 Winner

    Best Graphic Album - Reprint

    \"Miller's
    Miller's 1998 Winner

    Best Graphic Memoir

    Best Humor Publication

    \"Jeff
    Jeff Smith's Bone Won 3 Consecutive Best Humor Eisners

    Best New Series

    \"2006
    2006 Best New Series Eisner Winner

    Best Publication Design

    \"Chris
    Chris Ware has been awarded 22 Eisners for his work on Acme Novelty Library

    Best Publication for Early Readers (up to age 8)

    Best Publication for Kids (ages 9-12)

    \"Petersen's
    Petersen's Mouse Guard: Fall 1152 picked up two Eisners

    Best Publication for Teens/Young Adults (13-17)

    Best Reality Based Work

    \"2016's
    2016's Reality Based Work Winner

    Best Serialized Story

    \"2003,
    2003, 05, and 06 Winner for Best Serialized Story

    Best Short Story

    \"Baker
    Baker & Glass' Controversial 2000 Winner

    Best Single Issue/Single Story/One-Shot

    \"Eric
    Eric Powell's 2004 Best Single Issue Winner

    Best Title for Younger Readers/Best Comics Publication for a Younger Audience

    \"Baker's
    Baker's Plastic Man

    Best U.S. Edition of International Material

    \"2000
    2000 Winner for Best U.S. Publication of International Material

    Best U.S. Edition of International Material - Asia

    \"Mizuki's
    Mizuki's 2015 & 2016 Winner

    Annual Comics-Related Awards

    Best Comics-Related Book

    \"No

    Best Comics-Related Periodical/Journalism Publication

    • 1992 Comics Buyer's Guide [Krause]
    • 1993 Comics Buyer's Guide [Krause]
    • 1995 Hero Illustrated [Warrior Publications]
    • 1996 The Comics Journal [Fantagraphics]
    • 1997 The Comics Journal [Fantagraphics]
    • 1998 The Comics Journal [Fantagraphics]
    • 1999 The Comics Journal [Fantagraphics]
    • 2000 Comic Book Artist [TwoMorrows]
    • 2002 Comic Book Artist [TwoMorrows]
    • 2004 Comic Book Artist [TwoMorrows]
    • 2005 Comic Book Artist [TwoMorrows]
    • 2006 Comic Book Artist [TwoMorrows]
    • 2007 Alter Ego edited by Roy Thomas [TwoMorrows]
    • 2008 Newsarama produced by Matt Brady and Michael Doran
    • 2009 Comic Book Resources by Jonah Weiland
    • 2010 The Comics Reporter by Tom Spurgeon
    • 2011 Comic Book Resources by Jonah Weiland
    • 2012 The Comics Reporter by Tom Spurgeon
    • 2013 The Comics Reporter by Tom Spurgeon
    • 2014 Comic Book Resources by Jonah Weiland
    • 2015 Comics Alliance by Andy Khouri, Caleb Goellner, Andrew Wheeler, & Joe Hughes
    • 2016 Hogan's Alley edited by Tom Heintjes
    • 2017 The A.V. Club comics coverage, including Comics Panel, Back Issues, and Big Issues, by Oliver Sava et al., www.avclub.com
    • 2018 The Comics Journal edited by Dan Nadel, Timothy Hodler, and Tucker Stone, tcj.com [Fantagraphics]
    • 2019 TIE Back Issue, edited by Michael Eury [TwoMorrows]
    • 2019 TIE PanelxPanel magazine, edited by Hassan Otsmane-Elhaou [panelxpanel.com]
    • 2020 Women Write About Comics, edited by Nola Pfau and Wendy Browne, www.WomenWriteAboutComics.com
    • 2021 Women Write About Comics, edited by Nola Pfau and Wendy Browne, www.WomenWriteAboutComics.com

    Best Comics-Related Product/Item

    \"The
    The Acme Novelty display stand
    • 1992 The Sandman statue by Randy Bowen [DC]
    • 1994 Death statue by Chris Bachalo, et al [DC]
    • 1995 The Sandman Arabian Nights statue by P. Craig Russell (design) and Randy Bowen [DC]
    • 1996 Comic-strip stamps [US Postal Service]
    • 1997 Hellboy bust by Randy Bowen [Bowen Designs]
    • 1998 Acme Novelty Library display stand by Chris Ware [Fantagraphics]
    • 1999 The Sandman pocketwatch by Kris Ruotolo [DC]
    • 2000 Bettie Page, Groo, Hellboy, Milk & Cheese, and Sin City lunchboxes [Dark Horse]
    • 2002 Dark Horse comic character statuettes by Yoe Studio [Dark Horse]

    Best Comics-Related Sculpted Figure

    • 1999 Hellboy statue by Randy Bowen [Bowen Designs]

    Best Educational/Academic/Scholarly Work

    • 2012 (tie) Cartooning: Philosophy and Practice by Ivan Brunetti [Yale University Press] and Hand of Fire: The Comics Art of Jack Kirby by Charles Hatfield [University Press of Mississippi]
    • 2013 Lynda Barry: Girlhood Through the Looking Glass by Susan E. Kirtley [University Press of Mississippi]
    • 2014 Black Comics: Politics of Race and Representation
    • 2015 Graphic Details: Jewish Women’s Confessional Comics in Essays and Interviews, edited by Sarah Lightman [McFarland]
    • 2016 The Blacker the Ink: Constructions of Black Identity in Comics and Sequential Art edited by Frances Gateward and John Jennings [Rutgers]
    • 2017 Superwomen: Gender, Power, and Representation by Carolyn Cocca [Bloomsbury]
    • 2018 Latinx Superheroes in Mainstream Comics by Frederick Luis Aldama [University of Arizona Press]
    • 2019 Sweet Little Cunt: The Graphic Work of Julie Doucet by Anne Elizabeth Moore [Uncivilized Books]
    • 2020 EC Comics: Race, Shock, and Social Protest by Qiana Whitted [Rutgers University Press]
    • 2021 The Content of Our Caricature: African American Comic Art and Political Belonging by Rebecca Wanzo [New York University Press]

    Will Eisner Spirit of Comics Retailer Award

    • 1993 Gary Colobuono of Moondog's in Chicago, IL
    • 1993 Sean Scoffield and Steve Solomos of The Beguiling in Toronto, ON
    • 1993 Rory Root and Mike Patchen of Comic Relief in Berkeley and San Franciso, CA
    • 1994 Bill Liebowitiz of Golden Apple in Los Angeles, CA
    • 1994 Leon Cowen and Michael Pandolfo of Dr. Comics and Mr. Games in Oakland, CA
    • 1995 Joe Field of Flying Colors in Concord, CA
    • 1995 Kees Kousemaker of Lambiek in Amsterdam, Holland
    • 1996 George Vlastaras of Kings Comics in Sydney, Australia
    • 1996 Joe and Dottie Ferrara of Atlantis Fantasyworld in Santa Cruz, CA
    • 1997 Eric Kirsammer of Chicago Comics in Chicago, IL
    • 1997 Steve Snyder of Central City Comics in Columbus, OH
    • 1997 Paul Howley of That's Entertainment in Fitchburg and Worchester, MA
    • 1998 Mark and Robert Hennessey of Hi De Ho Comics in Santa Monica, CA
    • 1998 Gaston Dominquez and Ilia Carson of Meltdown Comics & Collectibles in Los Angeles, CA
    • 1999 Scott Thorne of Star Clipper Comics & Games of St. Louis, MO
    • 1999 Greg Ketter of DreamHaven in Minneapolis, MN
    • 2000 Patrick Shaughnassy of Golden Age Collectibles in Vancouver, BC
    • 2001 Calum Johnston of Strange Adventures in Nova Scotia, Canada
    • 2002 Nick Postiglione of Source Comics & Games in Falcon Heights, MN
    • 2003 Alan & Marsha Giroux of All About Books & Comics in Phoenix, AZ
    • 2004 Fran & Kevin McGarry of ACME Comics & Collectibles in Sioux City, IA
    • 2005 Mimi Cruz and Alan Carroll of Night Flight Comics in Salt Lake City, UT
    • 2006 Richard Neal of Zeus Comics in Dallas, TX
    • 2007 Carr D'Angelo and Jud Meyers of Earth-2 Comics in Sherman Oaks, CA
    • 2008 Atom! and Portlyn Freeman of Brave New World in Santa Clarita, CA
    • 2009 Tate's Comics in Fort Lauderdale, FL
    • 2010 Vault of Midnight in Ann Arbor, MI
    • 2011 Yuval Sharon and Danny Amitai in Comics & Vegetables in Tel Aviv, Israel
    • 2012 Akira Comics in Madrid, Spain
    • 2012 The Dragon in Guelph, ON
    • 2013 Challengers Comics + Conversation in Chicago, IL
    • 2014 TIE All Star Comics in Melbourne Australia
    • 2014 TIE Legends Comics & Coffee, NE
    • 2015 Packrat Comics in Hilliard, OH
    • 2016 Orbital Comics & Games London, UK
    • 2017 Comicazi in Sommerville, MA
    • 2018 Norma Comics in Barcelona, Spain
    • 2019 La Revisteria Comics, Alejandro Gonzalez in Buenos Aires, Argentina
    • 2020 Nostromo Sevilla in Seville, Spain, owned by Sergio López
    • 2021 Laughing Ogre in Columbus, Ohio, owned by Chris Lloyd
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-184078/","id":184078,"name":"Watchmen","issue_number":"1"},"id":52148,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/792266-eisners09_sm.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/792266-eisners09_sm.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/792266-eisners09_sm.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/792266-eisners09_sm.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/792266-eisners09_sm.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/792266-eisners09_sm.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/792266-eisners09_sm.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/792266-eisners09_sm.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/792266-eisners09_sm.gif","image_tags":"All Images,Eisner Awards"},"name":"Eisner Awards","site_detail_url":"https://comicvine.gamespot.com/eisner-awards/4015-52148/","start_year":"1987"},{"aliases":"Dark Jedi","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-52199/","count_of_isssue_appearances":625,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-04-26 20:49:40","deck":"An ancient monastic, academic, meritocratic and paramilitary organization whose origin dates back to c. 25,000 BBY.","description":"

    Overview

    The Force

    The Force is a mystical energy that binds together all life and matter in the galaxy. Though the Force flows through all living beings, it can only be harnessed and controlled by beings known as \"Force-sensitives.\" Force-sensitivity was correlated with and sometimes attributed to a high count of symbiotic and supposedly intelligent microorganisms called midi-chlorians that were found in a Force-sensitive's blood; the higher the count, the greater the being's potential Force ability.

    Force-sensitive beings were able to tap into the Force to perform acts of great skill, strength, and agility as well as control and shape the world around them.

    The Light Side of the Force

    The light side of the Force was concerned with ideals of peace, knowledge, benevolence, and healing. Followers of the light side strove to live in harmony with the world around them, acting out of wisdom and logic rather than emotion and haste. In order to achieve a relationship with the light side of the Force, its practitioners would often meditate to clear themselves of emotion, particularly negative emotions such as fear and anger.

    The largest group of proponents and teachers of the light side was the Jedi Order, who strove to maintain peace and justice throughout the galaxy. The values of the light side were culminated in the Jedi Code. The Jedi accepted the view that there were two sides of the Force: the dark side and the light side. A follower of the light side used the Force for defense and knowledge. Mutual trust, respect, and the ability to form alliances gave the Jedi distinct advantages over the Sith.

    Traditional Jedi were keen to keep the Force \"in balance.\" They attempted to achieve this by destroying the Sith and denying the dark side entirely—essentially keeping balance by restoring the Force to its natural state, the light side, since they viewed the dark side as a perversion. This involved the purging of negative emotions such as fear, anger, and hatred as such emotions could seduce the user to the dark side. In contrast, positive emotions such as compassion and courage nurtured the light side of the Force.

    Passion was considered dangerous as it could lead to strong emotions that could destabilize the Jedi's mind and lead them to the dark side. Love was, curiously enough, seen as something both Jedi and Sith avoided. While the Jedi espoused a broad, all-encompassing, self-sacrificing love for all beings, love for another being—romance, a possessive love by nature—was prohibited in post-Ruusan order. The Jedi viewed love as a risk best left untouched. The passion that came with love could lead to hatred and anger, as Anakin Skywalker demonstrated by becoming a Sith due in large part to his love for Padmé Amidala.

    Possession of material things was also prohibited in the post-Ruusan Reformation era Jedi Order, with the only exceptions being the Jedi's lightsaber, clothes, and other bare necessities.

    The Dark Side of the Force

    The dark side of the Force was considered by the Jedi to be a corruption of the Force aligned with fear, hatred, malice, and selfishness. Such negative emotions seemed to increase the strength and abilities of a user of the dark side, providing a path towards personal power and the destruction or control of all opposition. It was generally accepted that use of the dark side of the Force was extremely addictive. The primary users and supporters of the dark side were the Sith.

    Although at one time being the name of a primitive humanoid species native to Korriban, the Sith became an order of dark side Force-users who aimed to forcibly take control of the galaxy and reshape it in their image. Some users of the dark side did not affiliate themselves with the Sith and were collectively branded Dark Jedi. Some light Jedi, such as Jaden Korr and Galen Marek, could use dark side powers while resisting the temptation of the dark side.

    The Dark Lord Darth Bane considered the Force to be finite and thus ideal for exclusive use by the Dark Lord. He eliminated the practice of having vast numbers of Sith at the same time, thereby aiming to concentrate the dark side of the Force into two individuals: a Sith Master and his or her apprentice. This tradition, or \"Rule of Two,\" later underwent a small reformation by Dark Lady Lumiya following the deaths of Darth Sidious and Darth Vader in 4 ABY. The Rule of Two was later rejected by Darth Krayt, who instituted the Rule of One, with \"One\" referring to the Sith Order itself and its many minions, acolytes/adepts, and lords, led by only one Dark Lord of the Sith, or Dread Lord.

    Darth Krayt believed he gave the Sith and their power a purpose, unlike Darth Bane, who believed that power was the purpose. The Rule of One called for cooperation and even some level of loyalty between the Sith. However, the Rule of One did not represent the Sith as a whole, and Krayt was even labeled a heretic in the holocrons of Darth Bane, Darth Nihilus and Darth Andeddu.

    Use of the dark side of the Force was strictly forbidden within the Jedi Order.

    The Living Force

    The Living Force was the most prominent philosophy of the Jedi. Proponents of the Living Force thought that the Force flowed through all living brings, and thus connected them both directly and indirectly. As such, Jedi believing in this ideology were very aware and mindful of living beings around them. They displayed the utmost level of empathy and mercy. They also emphasized the importance of dealing with the present rather than worrying about the future or brooding over the past.

    However, this leads to a propensity to act impulsively and passionately. As such, it was widely believed that the Living Force shared both light and dark side qualities. Followers of the Living Force had to be wary of the pull of the dark side, which could be particularly strong in followers of this philosophy.

    Qui-Gon Jinn, a notable follower of the Living Force, was able to rediscover the ability to retain one's identity after death by means of a Force ghost. This allowed Jedi to spiritually manifest themselves and interact with the physical world.

    The Unifying Force

    The Unifying Force was a much rarer interpretation of the Force. Followers of the Unifying Force believed that the Force was a single, neutral entity seemingly incapable of deciphering between good and evil, lacking a distinct \"dark\" or \"light\" side. Adherents to this philosophy were very concerned with the future and prophetic visions.

    It is believed that Grand Master Yoda, who was famous for his constant mindfulness of the future, was a proponent of this philosophy. Many dark side Force-users such as Darth Sidious also supported this concept claiming that the Force truly was an impartial deity. The key difference between the Jedi and Sith variants was the proper use of this supposed force of nature. The Sith saw it as a tool fit only for personal power gain, while the Jedi saw it as a means to foresee events, gain knowledge, and avert crises.

    Potentium

    The Potentium was a relatively rare perspective of the Force that claimed that the dark side of the Force didn't exist and that the Force as a whole was naturally righteous. Believers in the Potentium thought that the dark side existed only inside the individual in the form of negative emotions and evil intentions. Therefore, anyone could utilize dark side abilities so long as their intentions were just.

    The Jedi viewed this idea as dangerous and insolent and as such banned the doctrine within temple walls. A notable proponent of this philosophy was the living planet Zonama Sekot.

    Beliefs of the Aing-Tii

    The Aing-Tii monks from the Kathol Rift viewed the Force in a very peculiar way. According to them, the Force didn't exist in shades of black or white, per se, but in a variety of different colors. This line of thinking extended to individuals as well, whom they believed were never totally good or evil, but were part of a broader, less definite spectrum. Because of this type of reasoning, they were able to use unique abilities that were unfamiliar to either the Jedi or the Sith.

    Force Techniques

    • Enhance Senses: Jedi and Sith can call upon the Force to dramatically increase their senses and mental processing speeds, allowing them to see, hear, and smell things miles away, react to things such as blaster bolts, and fly a ship better than any non-Force user.
    • Force Speed: By using the Force to alter their capabilities, Jedi and Sith can increase their physical speed to superhuman lengths, allowing them to fight at blindingly quick speeds and sometimes even vanish to the naked eye. It is a very common ability and is often used to bring a quick end to a fight. It can, however, be quite taxing on the body and prolonged usage typically requires a recovery period.
    • Telepathy: This is a fundamental application of the Force that allows Force users to probe and manipulate another's mind. A Jedi may use this ability to calm a belligerent socialite, convince a criminal to surrender, or misdirect an evil Stormtrooper. A Sith might use this ability to instill fear in an opponent, find a hidden secret inside the mind of a prisoner, or reduce a foe to violent insanity. It is common for Jedi and Sith to form telepathic bonds with comrades where they are able to freely mentally communicate through vast distances.
    • Telekinesis: Yet another core Force power, this is used to some degree by nearly all Force users. Force users use telekinesis to physically manipulate objects from afar. It manifests itself in a variety of ways such as Force Push and Pull. The mass of the object(s) manipulated depends on the skill, power, and mastery of the Force user. Padawans typically begin by lifting small stones or guiding sand into a bottle, but more powerful practitioners have been known to collapse entire caverns and maneuver whole Star Destroyers.
    • Tutaminis: This ability allows the user to create a field of energy absorption. This field can vary in size, although it is commonly created around the palm. Depending on the individual, this can be used to absorb blaster bolts and even lightsabers.
    • Force Lightning: A hallmark ability of the Sith, it allows the user to shoot bolts of thin lightning of varying intensities at a target, causing anything from excruciating pain to outright incineration. Although difficult to do so, it is possible to absorb, deflect, and even redirect Force Lightning using a lightsaber or Tutaminis. This ability, due to its destructive nature and reliance on hatred and anger, is banned from the Jedi Order.
    • Electric Judgement: A rare and controversial light side application of Force Lightning discovered by the esteemed Jedi Master Plo Koon, it works in much the same way as standard Force Lightning, but relies on a sense of justice as opposed to hatred. It bears a signature green color that distinguishes it from the Sith variant.
    • Precognition: A Force user can extend their perception to the flow of time itself, allowing them to sense things seconds or even minutes before they occur.
    • Force Healing: This ability allows the user to relieve pain, mend wounds, cure illnesses, and generally heal a living target through the Force. It is primarily used by Jedi, although the Sith can utilize this ability as well. However, the dark side offers only a perversion of true Force Healing, at best only temporarily curing ailments, or at worst requiring a sacrifice of some sort.
    • Force Choke: Also called Force Grip, this ability acts as an extension of the hand allowing the Force user to grip the trachea of their victim and strangle them to death. It was used heavily as a torture technique by the infamous Darth Vader, among many others. Its use is banned among Jedi.
    • Force Crush: Much like Force Choke, this refinement of telekinesis allows to user to grip the target with great intensity, crushing the target. It was notably used by Master Mace Windu against General Grievous, resulting in a seemingly permanent cough and wheeze. It is rarely used by Jedi due to its barbarity.
    • Force Storm: Although \"Force Storm\" has been used to describe great discharges of Force Lightning, it is officially a separate ability that allows the user to create a maelstrom of lightning that rips a hole in the fabric of space-time to open a hyperspace wormhole. Developed by Darth Sidious, it is the the most destructive application of the Force ever recorded. Its only known usage was by the creator himself.

    The Jedi Order

    The Jedi were an ancient and widespread organization of light side Force-users that acted as peacekeepers, diplomats, and guardians, maintaining serenity and safety throughout the galaxy. The Jedi were very much respected by governments and citizens alike. While typically creating and maintaining peace through their wisdom and patience, the Jedi could enforce law and order through their martial prowess and ability to manipulate the Force.

    Despite the Order's good reputation, many times in history have the people of the galaxy felt distrustful of the Jedi and their secretive institution, sometimes going as far as blaming certain conflicts and tragedies on the Jedi.

    The Jedi

    To become a Jedi, one must possess Force-sensitivity and be discovered by a Jedi. Prior to the Great Jedi Purge, the Jedi Order had designated Jedi recruiters whose duty was to track down undiscovered Force-sensitives, but the job was considered undesirable by many due to the unpleasant reality of taking a child away from his/her family. Other Jedi on missions might happen upon Jedi potentials and could report their findings to the Order. Regardless of the method of discovery, the Jedi would observe and study the Force-sensitive, determining whether or not they bore the necessary qualities and lacked certain unfavorable attributes such as aggression and fearfulness.

    Once the Jedi decided that the Force-sensitive was acceptable, their training began. The Jedi would commence their training at the rank of Initiate. They were expected to wear a neutral color tunic, complete with a belt and boots. Their studies would revolve around the Three Pillars of the Jedi: Force, Knowledge, and Self-Discipline. The Pillar of the Force involved studying the many aspects and interpretations of the Force, the history of the Force, the Jedi Code, and the Force itself via many rudimentary abilities such as tutaminis, altus sopor, curato salva, and simple telekinesis.

    The Pillar of Knowledge involved the academics. While studying this pillar, students spent much of their time in the Jedi Archives learning about the galaxy, stars, and planets, the various flora and fauna known to the Jedi, and the history of the Order itself. Finally, the last pillar, Self-Discipline involved lightsaber combat and meditation. Here, Initiates were taught the various forms of meditation such as Empty meditation and Rising meditation, and the first form of lightsaber combat, Shii-Cho. Once ready, the Initiates underwent a series of exams that analyzed their progress and determined if they were ready to advance into the next rank.

    If the Initiates passed, they would proceed to the rank of Padawan. As a Padawan, the Jedi would be assigned to a Knight or Master who would guide them through this stage. It is at this stage that the Jedi would construct their very own lightsaber. The process included deep periods of meditation, collection of various components, and, of course, the achievement of a lightsaber crystal. The Jedi Padawan would continue to be formally instructed in the ways of the Force, training in the rest of the lightsaber forms, mastering more advanced Force techniques, studying the galaxy and its inhabitants in more depth, and learning more about the ways of the Jedi, but the main goal of a Padawan is to successfully complete the Jedi Trials.

    The Jedi Trials consist of five distinct trials: the trials of Skill, Courage, Spirit, the Flesh, and Insight. The Trial of Skill requires the Padawan to display an adequate sense of expertise, control, and discipline, whether that be through a lightsaber duel against a formidable opponent or other means. The Trial of Courage places the student in a position that necessitates bravery and maturity. An example of this would be the confrontation of a Sith Lord, as was the case with Obi-Wan Kenobi when he faced and defeated Darth Maul. The Trial of Spirit involves a Padawan's ability to purify oneself of dark side emotions and resist the temptation of the dark side entirely.

    The Trial of the Flesh, often times considered the most difficult of the trials, tests the Padawan's pain tolerance. This pain could be mental or physical, but it must be significant. Lastly, the Trial of Insight demands the student showcase great wisdom, whether that be through finding a solution to a difficult problem without the use of violence or displaying ability to avoid expert deception. There is no particular order in which the trials must be tackled, but once they are all passed, a Padawan will be Knighted.

    No longer bound to a master, a Jedi Knight was free solve problems their own way. As an official Jedi of the Order, their duty was to uphold the principles of the Jedi throughout the galaxy. To do so, a Knight would undertake specific jobs that would employ their greatest talents. Examples of jobs would be Jedi Starfighters or Aces, Jedi Seers, or Jedi Shadows.

    To attain the rank of Master, a Knight must successfully guide a Jedi Padawan to the rank of Knight and show great mastery over most aspects of the Force. The legendary rank of Grand Master was incredibly rare, often times only being held by a single Jedi at a time. To achieve this rank, a Jedi must be unanimously considered the Master of Masters, the Wisest of the Wise, and the most powerful Jedi in the Order. It is the highest possible honor within the Jedi Order.

    Jedi Ranks

    As previously described, the ranking system is as follows:

    • Jedi Initiate
    • Jedi Padawan
    • Jedi Knight
    • Jedi Master
    • Jedi Grand Master

    A Jedi Knight may also choose to specialize in one of the three branches of Jedi: the Jedi Guardian, Jedi Consular, and Jedi Sentinel.

    The Jedi Guardian was a vigilant crusader against evil of all shapes and sizes. Guardians were known for focusing much of their attention on lightsaber combat, mastering every form with deadly efficiency. Typical jobs for a Jedi Guardian included peacekeeping, security, military, and martial instruction.

    Jedi Consulars served as diplomats, scientists, teachers, and healers. Their duty in the Order was to uphold the central values of the Order and spread the doctrine of the Jedi. They were known for their mastery over the Force, while usually obstaining from direct physical combat when possible.

    The rarest of the three classes, Jedi Sentinels were appropriately viewed as a balance between the Consular and Guardian. Sentinels didn't prioritize Force knowledge over martial prowess or vice versa. They instead devoted much of their attention towards the non-Force related skills and traits. As such, Sentinels served as the Order's computer specialists, mechanics, security experts, and masters of espionage.

    They would often be sent to remote regions of the galaxy to infiltrate enemy ranks, safeguard specific territories, or gather intelligence on unknown areas. Most Jedi that survived Order 66 were thought to be Jedi Sentinels.

    The Jedi Code

    The Jedi Code speaks of serenity and peace.

    There is no emotion; there is peace.

    There is no ignorance; there is knowledge.

    There is no passion; there is serenity.

    There is no chaos; there is harmony. (Added in Star Wars: KOTOR)

    There is no death; there is the Force.

    There was a new Jedi Code after the fall of the Empire.

    Jedi are the guardians of peace in the galaxy.

    Jedi use their powers to defend and protect, never to attack others.

    Jedi respect all life, in any form.

    Jedi serve others rather than ruling over them, for the good of the galaxy.

    Jedi seek to improve themselves through knowledge and training.

    Other Sects

    Gray Jedi

    Not all Jedi that leave the Order turn to the dark side. Those that can retain their self-control and discipline become Gray Jedi. A rare breed of Force users, they often turn to a life of solitude, as former Jedi find it very difficult to integrate into \"normal\" life. A few practicing Jedi have been considered Gray Jedi by some, as was the case with Qui-Gon Jinn. Although very unusual, Sith who reject the teachings of their masters may also become Gray Jedi.

    Force users who were never trained in the ways of the Jedi or Sith but still used the Force could be considered Gray Jedi as well, an example of this being members of the Jensaarai. The term was also used to describe simply those that walked the lines between the light side and the dark side. As such, Force users like Revan who utilized both the dark side and the light side of the Force were sometimes considered Gray Jedi.

    Around 130ABY, Imperial Knights who served under Emperor Roan Fel were referred as Gray Jedi.

    Dark Jedi

    Many users of the dark side of the Force aren't members of the Sith Order and as such are labeled Dark Jedi. These Force users are often times ex-Jedi who left the Order but were rejected by the Sith. Asajj Ventress was an example of this, being first trained in the ways of the Jedi but eventually falling to the dark side and being rejected by the Sith.

    Some, however, never cared to join the Sith such as the infamous Dark Jedi Jerec, a former respected Jedi Master who turned to the dark side after Order 66. Many organizations that utilized and worshiped the dark side but were not affiliated with the Sith were classified as Dark Jedi such as the Nightsisters.

    It is believed that the first ever Dark Jedi who is credited among others with the creation of the Sith Order was Xendor, a former Jedi.

    Order 66

    Order 66 was a directive given to the Clone Trooper Army directly from Chancellor Palpatine. The directive had been secretly put in place at some point during the creation of the Clone Army and could be considered the whole reason for the creation of the Clone Army in the first place.

    The exact working of the order is unknown but its purpose was to designate the Jedi, once the ally of the Clone Troopers, an immediate threat and to be killed on sight. Many Jedi were individually assigned to brigades of Clone Troopers to command them in assaults and defense and so were already spread out too thin. The order was communicated directly through the internal headsets of every Clone Trooper and was carried out without question.

    Many Jedi were cut down within moments of the order's activation, being caught off guard and out numbered at close range. Some, like Aayla Secura and Plo Koon,never saw the coming threat and were killed instantly. Others, like Ki-Adi-Mundi,were able to sense the threat from their own troops and were able to defend themselves for a time before being overwhelmed. Yoda was one of the Jedi who took down his attackers before they could act.

    Great Jedi Purge

    This started the Great Jedi Purge and the near extinction of the Jedi as a force for good in the galaxy. The disorganized Jedi were now split apart and with Anakin's raid on the Jedi Temple, they had nowhere to return to. Those that remained tended towards anonymity, exile, and contemplation. Darth Vader spent a great deal of time and resources hunting down the remaining Jedi both personally and via other means.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-103369/","id":103369,"name":null,"issue_number":"2"},"id":52199,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/19151/608048-205438_136163_jedi_order.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/19151/608048-205438_136163_jedi_order.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/19151/608048-205438_136163_jedi_order.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/19151/608048-205438_136163_jedi_order.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/19151/608048-205438_136163_jedi_order.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/19151/608048-205438_136163_jedi_order.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/19151/608048-205438_136163_jedi_order.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/19151/608048-205438_136163_jedi_order.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/19151/608048-205438_136163_jedi_order.gif","image_tags":"All Images"},"name":"Jedi","site_detail_url":"https://comicvine.gamespot.com/jedi/4015-52199/","start_year":"1978"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-52203/","count_of_isssue_appearances":3195,"date_added":"2008-06-06 11:27:53","date_last_updated":"2021-08-29 06:45:12","deck":"The term demon has a myriad of uses in fiction mainly due to its emotive traditional meaning. Demons are often characterized as devious and/or brutal beings.","description":"

    Overview

    The term demon has a myriad of uses in fiction mainly due to its emotive traditional meaning. Demons are often characterized as devious and/or brutal beings deformed with horns and sometimes able to disguise their forms. They are exclusively on the side of evil and are tempters of people in order to obtain their souls or physical bodies to drag down to hell.

    In some twists to the tradition characters such as Spawn is given demonic powers by a demon who then uses those powers to defy hell and his demonic master.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-201740/","id":201740,"name":"L'oreille Cassée","issue_number":"6"},"id":52203,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/8123836-demons_from_nightcrawler_vol_3_4_001.jpg","image_tags":"All Images"},"name":"Demons","site_detail_url":"https://comicvine.gamespot.com/demons/4015-52203/","start_year":"1937"},{"aliases":"Earth-58163\r\nEarth-9021\r\nEarth-10294","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-52675/","count_of_isssue_appearances":97,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-08-06 22:04:33","deck":"Reality where mutants are the dominant species.","description":"

    The original House of M reality has the earth designation Earth-58163.

    Alternate versions of the House of M reality include Earth-9021 and Earth-10294.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-187570/","id":187570,"name":null,"issue_number":"1"},"id":52675,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5178/128954-6491-house-of-m.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5178/128954-6491-house-of-m.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5178/128954-6491-house-of-m.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5178/128954-6491-house-of-m.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5178/128954-6491-house-of-m.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5178/128954-6491-house-of-m.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5178/128954-6491-house-of-m.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5178/128954-6491-house-of-m.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5178/128954-6491-house-of-m.png","image_tags":"All Images,House of M"},"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m/4015-52675/","start_year":"2005"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-52780/","count_of_isssue_appearances":9,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-07-14 16:11:52","deck":"There are a lot of manga storylines and characters that all seem to have the same backgrounds and/or roles in their story. This page is here to guide authors away from these stereotypes, if wished.","description":"

    Note: This concept should not be associated with any volumes/issues.

    NOTICE Due to the fact that not all manga characters have been added to Comicvine, some of the examples on this page may be lacking. If you can think of anyone who belongs on this page, please look them up and add them under the acceptable stereotype. If the character is not on the vine, please add him/her and do the same. Also, this page has a HIGH RATE OF SPOILERS, so please, if you are in the process of reading a manga story that you think will be listed on this page, read at your own risk.

    A lot of people read manga or watch an anime and aren't necessarily \"impressed\" by the storylines or character goals, and there is definitely a reason for that: The authors are using the same type of characters and storylines. The \"Save the World with your friends\" storyline can only be done so many times before people start to notice a connection, and it gets old. On this page, we'll list the biggest and most noticed stereotypes to, hopefully, help any manga authors that run into Comic Vine and actually care about whether or not their manga story is impressive or original. This'll also probably be a good read for some of our manga fans when they need a laugh, so forgive us if we seem \"unofficial\" with this page. Okay then, here we go:

    Among all of the manga and anime stereotypes, the most common that comes to mind is, no, not the main character who strives to be the best at something, not the \"mysterious\" antihero friend, no, not the main character's amazingly awesome master, and no, not even the little heroine that keeps getting kidnapped by afore mentioned anti hero friend. It's the one recurring story arc that continuously pops up, the one thing you can expect in basically any teen shonen manga, the \"Tournament\" arc. It seems that this arc is famous wherever it goes, as it's an easy way for the writer to get all of the main characters who everyone enjoys reading to fight the other favorites, without any need for an actual reason, just their name being popped up on a screen, and, there we have it, a fight scene. This type of arc is predominant in basically any manga that focuses on fighting, and can be found everywhere, and, sadly enough, this extremely unoriginal arc is also almost always extremely long and \"important\" to the story. Ask any shonen manga fan and they'll always tell you that it's just the author running out of a way to introduce the next \"favorite\" character in the series.

    The most famous of these is more than likely the Yu Yu Hakusho \"Dark Tournament\" saga, one that lasted as an entire arc. That, or the Chunin Exams tournaments, which made many characters that had never come into contact before in Naruto fight each other, with no real reason, as it was a test to see who was a better ninja, not a better boxer. These \"ninja\" simply shown that a good punch to the face is about as good as a dagger to the neck from behind in life and death situations.

    Action Manga

    The Action Mangas are perhaps the most common anime/manga to exist, and therefore, they are also probably the most stereotypical, hence the making of this page.

    The Main Character Stereotypes:

    The Innocent Main Character

    \"no
    no Naruto, we don't \"Believe it\"

    Then of course, we always have the \"I'm going to be the best\" main character stereotype, one that simply shows near no emotion at the beginning of the story, like...oh, to name a few...Naruto, Luffy, Yoh, and a ton of other non main stream anime/manga characters, too, but those are the most common for the most part. These stereotypical manga characters always seem to wish to be the best at something for a benefit that is selfish, but that is shown to be perfectly expectable in the series. These character also always appear to be happy go lucky, and do very insane feats that are meant to be shown as humorous. This happy way of looking at life disappears whenever someone they care for is put into danger, to the point that they become dangerous, even to the point that they threaten someone’s life. However, when they battle the person who put their loved one in danger, they almost never follow through on their threat to kill them, usually resulting in the enemy to come back and attempt to kill them again. Also, this stereotype seems to always have some sort of hidden power which is due to someone in their family, and this power always seems to manifest when they are about to be killed, and more usually when their loved one is killed or appears to be killed (See Alter Ego).

    List of Innocent Main Character Stereotypes:

    Naruto from the series Naruto: Naruto is perhaps the most well known of this stereotype. He is a ninja hailing from the Konoha village, and he always appears to be cheery, despite his past full of hate. Because he was never noticed as a child (due to a genocidal demon lurking within his belly button ), he wishes to be the Hokage, the greatest Ninja in the village, so that he may be noticed.

    Goku from the series Dragon Ball: Goku, one of the last survivors from the planet Vegeta, was adopted by a lowly farmer, Gohan, picking him up. He grew up amazingly powerful, but also amazingly kind and innocent. He sets out with Bulma Briefs in search of the Dragon Balls. He is always carrying to his friends and always tries to show mercy to his enemies.

    Yoh Asakura from the series Shaman King: Yoh was born into a family of shamans and was trained to help guide the spirits to his afterlife. He always is happy and cheery when this is happening, though, and quickly befriends many of those around him, including his enemies.

    Luffy from the series One Piece: When he was a small boy, Luffy gained the dream to become the “King of Pirates,” a fact he never lets anyone forget. He gained this strange dream when he met the legendary pirate Shanks. He then accidentally ate the devil fruit, which gave him the ability to stretch, and seven years later, he sets out on his goal to become a legendary pirate.

    Aang from the series [[Avatar: The Last Airbender:vol:19410]]: Aang was born as the Avatar, the person who is the bridge between all nations and all worlds. He ran away though, and was frozen for 100 years before being rescued by Katara and Sokka. Aang always acts as an immature child, a fact that commonly puts his and other people’s life in danger.

    Yamato Delgado from the series Battle B-Daman: Yamato was raised by cats up until the age of five but was then taken in by a restaurant owner named Mae who raised the completely innocent boy as her son. It seemed it was his destiny to possess the legendary B-Daman known as Cobalt Blade, which she tried to keep away from him, but on his eleventh birthday it came to him. He would always go into a fight believing victory inevitable, even when facing some of the mightiest opponents in his universe. And somehow this spirit managed to help him come out on top time and time again as his strength grew exponentially.

    Subaru Sumeragi from the series Tokyo Babylon: Subaru was born into the Sumeragi family, a famous family of exorcists who specialized in many different form of exorcism. Like most of the heroes in his stereotype, he is always kind, and always tries to find the good in everyone. Unlike mot of his fellow stereotypes, though, his goal is not so out there, and he only wishes to be a zookeeper. However things would not make it so easy (see Fallen Heroes section for details)

    Kenshin

    The Tough Guy Main Character

    This character is the one who never took anything from anyone, and gained a reputation for being a dangerous force on the school yard. They are hated by the teachers for their juvenile ways, and always have horrible grades. Then, the character is thrown into a situation that he still has to muscle his way through, and seems or be ill suited to take on by him/herself. However he unleashes an amazing power that he is granted right when he is in need of it, usually by a young woman (for example, Yusuke Urameshi and Botan from Yu Yu Hakusho and Ichigo and Rukia Kuchiki from Bleach) The main character, after being granted his/her strange and unusual powers, will eventually make friends, and soon becomes a force to be dealt with, despite him starting out as an average high school punk. This character will also usually gain an über-powerful master that teaches them discipline, causing them to become even more powerful. Also, for some very strange reason, these characters are commonly given the task of hunting down supernatural beings after dying or doing something that should have resulted in their death, as well as being a sort of police officer. This, however, is not entirely a part of the stereotype, and appears to be more closely related to coincidences when writing the characters. They usually have no Main Bad guy, but more of Main Bad guys in different story arcs. A final main bad guy is established, but not after going through multiple minor Main bad guys in the process.

    List of Fighting Main Character Stereotypes:

    Ichigo of the series Bleach: Ichigo was just a punk at his high school who could see ghosts, until one day he was attack by a giant hungry ghost called a Hollow that attempted to eat him. He was saved by a young girl, Rukia , who gave him her powers so that he could defend his family. Since that day, he as become one of the most powerful spirit reapers out there.

    Yusuke Urameshi from the series Yu Yu Hakusho: Yusuke was just a punk at his school, until one day, he died saving a young child from a car. He met Botan, and was granted another chance at life. After he came back to life, he become a detective for the spirit agency which Botan was a part of. After that day, he was pitted against some of the most powerful villains in the spirit world.

    Kamui Shiro from the series X/1999: Though Kamui always knew that he had powers beyond human comprehension, he attempted to avoid his destiny as the key to the apocalypse and became a fighter at his school, fighting all those who oppressed the weak. Unfortunately, he was pulled back into his fate, and he had to fight for the end of humanity itself.

    The Mixed Main Character

    There are some instances of mixing these two kinds of main character stereotypes, resulting in an innocent and

    \"Oh
    Oh boy, our guardian. Why dont we just ask someone to take over the planet rather than waste this time?

    happy High School student who is flung into a strange and abnormal situation in which they are forced to fight in situations that they are unprepared for. Again, they are usually granted abnormal powers from a female character and also usually results in them being killed or almost being killed (unless the mixed main character is a girl. They will usually just discover the power for themselves.) The mixed main character will be at first viewed as just a young and non-threatening person, but will always prove themselves as time goes on, even to that one guy who always say that they can’t do it.

    List of Mixed Main Character Stereotypes:

    Kazuki from the series Buso Renkin: Kazuki was a simple high school kid who liked to goof off and never thought before he acted, however, this led to his death when he got in between a girl and a raging Homunculus. The girl, Tokiko, turned out to be magical, and she brought him back to life using a mystical item. He would later become one of the most powerful alchemists to date.

    Light Yagami from the series Death Note: Light was just your typical super genius high school student until the day that he saw from his classroom window a book falling. This book, the Death Note, gave him the power to kill whoever’s name was written in it. That day, he began killing criminals as the mysterious Kira.

    Sakura from the series Cardcaptors Sakura: Originally a simple school girl, Sakura’s life would forever change when she one day came across a book holding within it multiple cards. When she touched them, though, the cards flew away, and she was told by a a small floating plushie that she had to collect all of the cards again. From that day on, she had to hunt down all of the card she had released.

    Fuma Mono from the series X/1999: Fuma was just an ordinary, Kind, and handsome high school kid, but do to a cruel twist of fate, He, along with his best friend Kamui, were doomed to become the keys to the end of the world. He lost everything when Kamui chose his path, and he gained power beyond imagine, though becoming evil.

    Sora

    Lelouch

    The Anti-Hero:

    ==============

    The Anti-Hero is a staple in almost every Shonen known to man kind. The Anti-Hero is one whose life is riddled with memories of a dark and tragic past (usually caused from the Evil Brother/Father character talked about below.) The Anti-hero then grows into an angered youth, and their view of right and wrong has become blurred. Usually, revenge or some sort of other external drive causes them to become partially evil. This could eventually lead to them becoming a Fallen Hero (see Below), but this is a rare occurrence. The Anti-Heroes usually have their past at the front of their mind, resulting in them to come across as a large amount of teenage Angst, and if this angst is shown two much, the character can commonly be labeled as Emo by fans of the series. These characters usually start out as a bad guy and though they become good, they still are a rival of the main character. Anti-Heroes are usually featured in stories focusing on an Innocent Main Character, providing a contrast between the two (though appearance in a series with a fighting protagonist is also commonly used, but just not as commonly.) The Anti-Hero is always originally at odds with the main character, but will eventually become friends with him. Whether this friendship will last or not is up to the writers, but eventually, the Anti-Hero will become the Heroes true friend by the end of the series.

    List of Anti-Hero Stereotypes:

    Sasuke from the series Naruto: Sasuke became a dark and unstable child after his brother killed his entire family. Sasuke then became driven by his need for revenge, but his resolve began to slip after he met Naruto, who he eventually grew to see as his best friend. This would eventually change, though (see Fallen Heroes Section for details)

    Vegeta from the series Dragon Ball: Vegeta started out the series as a villain, but after getting his butt handed to him by a certain hero, he turned the other cheek and joined there side. Through the entire series, his main goal is to better then [[Goku:char:19765], and at many times his dark traits got in the way of saving the day.

    Hiei from the series Yu Yu Hakusho: Hiei started out the series as a villain, but became a reluctant hero after he was defeated. Through the series, he grows to be one of the main good guys, though he always keeps the dark aspect that defines him.

    Hao from the series Shaman King: Hao is one of the main villains of a series who can be classified as working towards a good cause. After seeing that the world was being destroyed, he decided to kill those who had caused the destruction, humanity. Though he did evil things, it was for a good cause, defining him as an anti-hero.

    Shaoran Li

    Zoro

    Prince Zuko

    Ren

    The Sidekick:

    =============

    The Fighting Sidekick

    The Fighting Sidekick is one who fights alongside the Main Character, and is commonly seen by his side in almost all of the battles. The Sidekick is usually looked down upon by the other protagonists, and there for, they are forced to prove themselves multiple times. They usually become great friends with the main character, even though they originally started out on rocky terms. Throughout the story, the Sidekick will most likely be kidnapped, and due to the friendship between them and the Main Character, the Main Character will become obsessed with getting them back. The Sidekick may also have the ability to do some feats deemed impossible, but his moments of glory are usually overshadowed by the feats of the Main Character.

    List of Fighting Sidekick Stereotypes:

    Kazuma Kuwabara from the series Yu Yu Hakusho: Kuwabara was always counted as the second most dangerous person on school campus, and was only beaten by Yusuke Urameshi, a fact that he took to heart. Even after he became a spirit detective along with Urameshi, he was always overshadowed by Yusuke’s achievements.

    Sokka

    Chao-Zu from the series dragonball is a tiny little person who was tiens sidekick (many thaght they were outloud and proud). He proved himself worthy in the battle against Vegeta.

    Goofy

    Ussop

    Sorata Arisugawa

    The Innocent Sidekick

    The Innocent Sidekick is one who is there for no other reason then for a laugh and a relief in the stories tension. This is one of the few stereotypes NOT employed in the Naruto franchise (unless you count some of the summons), although it has been found in Bleach, Neon Genesis Evangelion, and Buso Renkin. The Innocent Sidekick is one who very rarely has any powers what so ever, a fact which is commonly used against the main character, in which he is forced to save his average Joe friend. The Innocent Sidekick also rarely is aware of the main character’s amazing abilities, but learns through time that they are a true powerhouse. This is not always the case though, as the sidekick may be aware of the main character’s prowess from when they first appear. Sometime, the writer of the Anime decides to kill off the Innocent sidekick, and the story then begins to take on one of the darkest turns in the series. However, this is in the minority of the series involving a Innocent Sidekick.

    List of Innocent Sidekick Stereotypes

    Oolong:Nowhere near as innnocent as he looked at the beginning, we swear.

    Rin: Just a simple orphan girl who fellows Sesshomaru after he revived her from the dead and since she is the only thing that the Demon Lord cares for, he has saved from both death and kidnappings.

    Kensuke Aida

    Toji Suzuhara

    Raki

    Yajirobe:

    The Pervert:

    ============

    One of the most iconic stereotypes in the manga business. The perverted character has seen so many appearances that it has come to be a sort of staple in shonen mangas. However, these characters commonly are the exact same type of person, and always seem to act to similar, a trait that can take away from the enjoyment of reading a manga.

    There are two types of the perverts, those who are there to teach the main characters an extremely important lesson and/or technique, and those who seem to always follow around the character for some odd reason. These two characters always have one glowing trait, they seem to have no dignity or pride, and will flirt with

    any girl that they see. This always leads to rejection in one form or another, from having the girl slap them across the cheek to learning that the girl was only a ploy to distract them. Despite their questionable activities, though, the perverted character is always very powerful, and helps the main character on multiple occasions, and will become one of the biggest friends to the main character, whether as a teacher or as a traveling companion. The main character grows to depend on their power, and also comes to friendly terms with their kind yet straightforward attitude. Also, the girl who the pervert mainly associates with will almost always gain an affection (and maybe love) for the pervert, despite the fact that he does multiple sexually harassing things to her on a daily basis.

    List of the Pervert Stereotypes:

    Jiraiya:Don't even joke about not knowing why this guy is a perv, please.

    Master Roshi: Of course, Master Roshi was the original master pervert, when it came to getting Bulma Briefs to flash him or simply staring at dirty magazines, he stayed perverted for the duration of the Dragonball/Z series.

    Miroku: The monk from Inuyasha, he always asked for Sango, wait, no, what are we thinking, any woman he met if they would have his children. He continued to reach for women he didn't even know, and proved his perversion through his many wisecracks in the series.

    Brock: was a Pokemon trainer who was utterly obsessed with all of the Nurse Joy's, so much that, despite them all looking completely identical, he was able to differentiate them from things as simple as their perfume or the length of their skirts.

    Oolong: was a shape shifting pig, another DBZ character who, at the beginning of the series, turned into a handsome man to fool Bulma into going out with him. He was extremely perverted to the end, even pretending to be Goku at one point to fulfill some of his disturbing needs.

    Sanji

    Character X:

    ============

    The Character X stereotype refers to the character who’s face is always hidden, and is meant to add a mysterious edge to the character. The character is almost always a character who had been introduced before, usually as being dead, and who hides their after their “death” or disappearance. Hint after hint are dropped for the character X stereotype’s real identity that it becomes less of a mystery of their identity and more of a mystery why the main character can’t realize it. Eventually, the identity of the main character is finally revealed, much to the main characters shock. The X-Characters are also known to come out of nowhere to save the hero at the last minute, say a few words of encouragement, and then leave the same way he appeared. This usually increases their fan-base greatly, but at the same time, it becomes slightly repetitive, and can lead to a very predictable plot.

    List of Character X Stereotypes:

    Racer X (one of the classics)

    Tobi (A case of being mislead into thinking he is another character.)

    Haku (he was actually the boy in the mask, unbeknownst to Naruto)

    Riku (when he wore the Organization XIII hood)

    Tuxedo Mask

    The Blue Spirit

    Skull Man

    The Fallen Hero

    ===============

    The Fallen Hero is one of the less known stereotypes in the Manga world, but it is still present, and therefore will be appearing on this page. The Fallen Hero is one who was originally a kind and caring fighter and person with morals seen as heroic, but, after a hardship in their life, they became a dark and evil force, and one of the main obstacles to the main characters. The Fallen Hero is always extraordinarily powerful, and commonly kills people close to the main character. Usually, their past is shown in a long, chapter long flashback that provides the question of why they became evil, and will later have an equally long chapter detailing how they became evil, and when they tell their story to the main character, they attempt to bring the main character onto their side, and though it seems to effect the main character, they never switch sides. The Fallen Hero will then attack him in a famous battle. The Fallen Hero has either two different possibilities, they will either die in after being forgiven by the main character, or they will become a friend at the end.

    List of the fallen hero stereotypes:

    Riku:Sora's best friend who fell to darkness attempting to save the remaining part of the Destiny Island's trio, Kairi. Eventually he came back to the light, no less than a complete bad@$$.

    Itachi:Unbeknownst to Sasuke, he had in fact been doing all of these insane crimes, such as killing his entire clan, to save him from Madara Uchiha, aka Tobi (or so we're told).

    Sasuke Ironically, he fell in order to kill his already fallen brother.

    Pein

    Prince Zuko

    Subaru Sumeragi

    Ikki, Saint of Phoenix:

    Influential Deceased

    ====================

    \"She
    She burned in her house, but still remembered all the time

    The influential deceased character is a character that appears throughout the manga in flashbacks and in conversations as important to the events currently going on… despite the fact that he is dead. The influential deceased character always leaves a lasting impression on those around him or her, and never does the author EVER let you forget their influence. Usually, they always sacrifice their life for a great cause that is utterly selfless, and that sends the main character into the adventure they are experiencing. Also, regardless of what happens in the story, the influential deceased will always remain dead, though they may appear as ghosts or in dreams. When they do appear in such a manner, it is always to deliver a speech that makes the main character follow their path and become a true hero.

    List of the Influential Deceased stereotype:

    Yondaime

    Toru Shiro

    Avatar Roku

    Hokuto Sumeragi

    Amidamaru

    The Evil Older Sibling

    ======================

    Now, here's one that's almost always present in any anime or manga, the main or sidekick's older sibling.

    Most people see these as \"invincible\", and the older brother characters are always extremely powerful, in fact more so a prodigy than the main character after them. They are nearly always \"renegades\" and/or wanderers in the universes they live in. In most of these situations, the older brother's younger sibling is either striving to become better than them, or to kill them, like Sasuke wanting to slay Itachi for killing his entire clan. These big brother figures are nearly never there to support said younger sibling in times of need, and are often the source of the younger sibling's hatred. They are never good examples to said younger siblings as they make \"mistakes\" or commit horrible crimes that cause their siblings to hate them. However, in the end, these characters tend to come back and prove how they were such good people in actuality, by finding out that they actually attempted or did save them, to their surprise and disbelief.

    List of the Evil Older Sibling Stereotype:

    Sesshomaru: Come on guys, everyone knows our favorite white wolf demon. He's Inuyasha's older brother, and extremely powerful, in fact so powerful that he slew Naraku nearly instantly when they met.

    Itachi: Sasuke's older brother, the slayer of his clan, possibly the most powerful in Konoha.

    Princess Azula: Prince Zuko's older sister, a woman of her word....not

    Zane: the Bad Boy older brother of Syrus.

    Ikki, Saint of Phoenix: When he first appeared, Ikki was the evil older sibling to passive Shun.

    Raditz from the dragonbal z series. he is gokus older brother and he proved to be much stronger than goku at the time.

    The Bossy Girlfriend

    ====================

    Anna, a fiancée who is more likely to kill you then to love you

    The bossy girl is one of the main characters in most series who always seems to beat up the main character, despite them actually caring for the main character. They usually tell the main character what to do, and, despite the fact that the main character is usually a hard-head about certain things, they will eventually do what they are told. The bossy girl is also commonly used as a love interest for the main character, though this is not always the case, and in many cases it is left up to the reader to decide. The bossy character is always a gamble for authors though, as a reader will usually either like them or be seriously annoyed by them, and it is usually the latter. This is due to the fact that they are always obsessed with two things, the first one being interchangeable, and the second being beating up the main character. This kind of personality brings the character across as one sided, and it is very hard to actually add depth to the character. However, by the end of the story, you'll enjoy seeing these hardy females go at it with their male partners, as they are often the only comedic part of the series left.

    List of the Bossy Girlfriend Stereotype:

    Asuka Soryu

    Misty

    Chi Chi from the dragonball/z/gt series. she was always bossy telling goku to stop fighting and gohan to do his homework

    Sakura

    Ino

    Anna

    Keiko Yukimura

    The Mascot

    ==========

    You saw it coming

    The Mascot is a character who is only there for the point of having a cute animal to show people knew to the series. Usually, they are shown in a comedic light, though sometimes they do their share of angst, but rarely with it being shown as amazingly serious. Mascots are often used in marketing material, but are always worked in to be a vital part of the plot, despite the fact that it could easily be changed to not include a cute and fluffy animal. Sometimes, though it is not fluffy, but this is rarely seen.

    List of the Mascot Stereotype:

    Pikachu

    Keroberos

    Momo

    Amidamaru (in ghost ball form)

    Kon

    Ponygon....come on guys, you gotta love Ponygon.

    The Magical Girl

    ================

    Yes, he is in fact a magical girl

    The Magical girl is a common addition to an action Manga. The magical girl is usually a young, beautiful girl who gives the main character of one of the main characters amazing magical powers. The Magical girl rarely ever does anything else except for tell the main character something about the power that should have been mentioned from the beginning. This makes them a common annoyance to the reader most of the time. However, they are less ANNOYING when they actually do something, such as fight or be evil.

    List of the Magical Girl Stereotype:

    Tokiko

    Ryuk

    Botan

    Rukia Kuchiki

    CC

    The Instant Prodigy

    ===================

    Suzaku is shot in the back, yet he is still able to defeat an army with something he had never piloted before.

    The Instant prodigy is a stereotype describing any character that is able to adapt to some amazingly hard and complex device without any complex training, and being able to do it better then some of the pros. This is a common stereotype for manga involving Mechas, and almost always appears in some way or form, usually as the main character. This can kind of draw away from the believability of the series, and can turn away many fans in an instant. The Instant prodigy also always seems to be a teenager who shouldn’t even be slightly aware of how to fight. If they didn’t, though, then we wouldn’t have a plot, and, well…

    List of the Instant Prodigy Stereotype:

    Shinji Ikari

    Kira Yamato

    Suzaku

    The Fan-Girl

    ============

    Rose, Sonic doesn’t like you like that. Get a life.

    Also known as the Obsessive Character Stereotype. The Fan-Girl Stereotype refers to any character that utterly idolizes a character in the series. Their obsession grows to the point that they would give up anything for the character they are obsessed with, and this is VERY hard to make believable, especially since the character they love usually treats them like crap. However, there are obviously some characters that have been shown as believable with this stereotype. We will show them as soon as we can think of them.

    List of the Fan-Girl Stereotype:

    Sakura

    Ino

    Yuzuriha Nekoi

    Amy: Though she was not originally published as a manga, she was in a manga, and will therefore be counted here.

    Rin: Rin has a small crush on Sesshomaru.

    The Heartthrob

    ==============

    How…?

    The Heartthrob character is one who can always get a girl, though it is common that they don’t want the girl. Some will use this to their advantage, but this is not common. The characters in this stereotype always seem to vary, but the main fact is that they should not be the ones who get the girls, as it seems to be the most unlikely occurrence, mainly do to the way they act. This is also commonly a mystery to the other male characters in the series, though this is more out of jealousy then out of common sense.

    List of the Heartthrob Stereotype:

    Sasuke

    Light Yagami

    Fuma Mono

    Shinji Ikari

    Keitaro Urashima

    The Right-Hand Man

    ==================

    The Captain, almost never away from his master’s side

    The Right-Hand Man refers to the character who is always the main bad guy’s chief subordinate. The Right-Hand Man is one of the most loyal characters working for the main bad guy, and he would be shot, dismembered, thrown into radioactive waste, and nuked if the main bad guy asked him to. Strangely, the Right Hand man commonly is more powerful then the main bad guy, but despite their obvious power advantage, they still serve the main bad guy unwaveringly. They will usually be the last defense for the main bad guy, as well as being their personal spy and assassin.

    List of the Right Hand Man Stereotype:

    Sojiro

    The Captain

    Haku

    Kabuto

    Kallen

    Nappa: Nappa was vegetas sidekick until he was easily killed by Goku.

    The Emotionless Character

    =========================

    Show no emotion. They can sense it…

    The Emotionless Character refers to the character that never seems to show any change in their facial expressions, tone, and act despite whatever situation they are in. The Emotionless Character is always one of the Main Character’s best friends, despite rarely showing an emotion that could be constituted as friendship. Despite this, they do have positive feelings for the main character. They just don’t show it. This stereotype also refers to the characters that always show only one emotion, such as always smiling and being happy. They originally come across as just being happy/sad/weird; however, they are always shown to be much more in depth, which is later revealed through a series of flashbacks or long speeches given by the emotionless character.

    List of the Emotionless Character Stereotype:

    Rei Ayanami

    Sojiro

    Sai

    Nico Robin

    Ulquiorra Schiffer

    The Anthropomorphic Character

    =============================

    Yes, he is in fact a Giant man-eating demon Dog

    The Anthropomorphic Character is a character who displays both the traits of a human and the traits of another animal. This includes characters who were originally an animal but took on human form, a human that took on animal form, or just a mix of something. These characters usually look almost exclusively human, except for ears, a tail, or both being visible on them. Some characters don’t even have animal ears, but appear to have animal ears, and are therefore considered anthropomorphic.

    One of the most common anthropomorphic combinations is the female cat-girl. This seems to be a common fetish( See Moe).

    List of Anthropomorphic character Stereotypes:

    Kurama

    InuYasha

    Sesshomaru

    Oolong

    The She-Males:

    ====================

    Otowa, perhaps the most minor She-male in history

    In manga, there always the slight possibility that that a character who looks like a girl, and sometimes acts like a girl, but is really a boy! Most of the time, they are actually powerful fighters who fight the good guys. Their drag appearance, though, is often very confusing, and if you were to miss the issue in which they revealed that they were a guy, you will continue to believe that they are a girl, and will think the editor screwed up when referring to the girl as a he.

    Haku(probably the best known She-Male Character in manga history)

    Otowa

    Zarbon

    The Overpowered Child

    =====================

    She is one of the most dangerous people in the series

    The overpowered child refers to anyone who has the form of a kid, yet is capable of feats far beyond the scope that is expected of them. The overpowered kid is commonly shown as being even more powerful then his/her adult counterparts, and has been shown to wipe out some of the most dangerous and powerful enemies at the time. Another common aspect for this stereotype is that they will always battle a character that someone is losing to, and will do a better ob at first. Then, they will be beaten, but also giving the original fighter a fighting chance.

    List of the Overpowered Child Stereotype:

    Ururu Tsumugiya

    Jinta Hanakari

    Toshiro Hitsugaya

    Jio

    Gohan

    Goten

    The Furries (or Animal characters):

    ============

    \"self-explanatory\"
    self-explanatory

    In most manga, there is usually a handfull of characters in the series that is an man-animal in a world of humans. The main furry characters are usually classified as either powerful loners characters who are shunned by the world for their appearance or just savage wild men who work for the bad guy.

    List of the Animal Characters:

    Sajin Komamura

    Byakko

    Grimmjow Jeagerjaques: (originally started our as a jaguar like creature but 'evolved' into a human form.

    Jon Talbain

    Goku: At the full moon all saiyans turn into the Oozaru monkey

    Gohan

    Vegeta

    The Most Powerful

    ===============

    \"the
    the world's greatest swordsman

    The Most Powerful character stereotype refers to the characters who are commonly referred to as the undefeatable and the most dangerous in a specific area. These characters almost always act as dark, mysterious, and motionless, keeping an air of danger around them. These characters, if provoked, will destroy whoever they are up against in a manner similar to a pathetic death. Commonly, one of the main character's goals in life is to become better then this best-of-the-best person, and will be deeated by them at least once. however, they never give up on their battle, and will always somehow achieve their goal.

    List of the Most Powerful Stereotype:

    Hawkeye Mihawk

    The Third Hokage

    Yondaime

    The Moe Character

    Vegeta

    Teresa

    =================

    Sailor Moon, almost the Definition of Moe…

    Do not be fooled by the name. This is not referring to Moe (Mō) but Moe (Mō-ā). In other words, this refers to a sexually stimulating character. The Female Fan-Service Character is a must have for almost any manga series directed at a male audience. These characters are always shown with large and well exposed chests, a thin waste, and are always viewed sexually by the boys in the series. It is a very common occurrence for the Moe character to be groped and manhandled, only for them to 1. Cry in a very girly voice or 2. Beat the living daylights out of the person groping them. Also, Moe are commonly shown in costumes that elicit a fetish (ie. A nurse costume, a maid costume, sailor costumes with super short skirts, etc.) or are referred to as one of these fetishes. Some series also seem to be entirely created on the Moe characters. Strangely, though, the Moe characters commonly seem to have a positive reaction from male fan. I wonder why…

    List of Moe Stereotypes:

    Tsunade

    Naru Narusegawa

    Kitsune

    Motoko Aoyama

    Shinobu Maehara

    Kaolla Su

    Sailor Moon

    Sailor Venus

    Sailor Uranus

    Sailor Neptune

    Sailor Saturn

    Sailor Mars

    Sailor Jupiter

    Sailor Mercury

    Sailor Pluto

    Kallen

    Faye

    Cutie Honey

    The Alter Ego

    =============

    Satan, secretly the alter ego of an ambitious child conqueror

    The dark alter ego is one where the character goes into a dark and dangerous state where they lose all of their past ideals and take on a different personality. This other version of the character is always insanely powerful, but also amoral to the point that they can’t even be trusted to use their power justly (this includes having a spirit live within you as long as it can take control of the body to an extent.) The Alter ego appears when the character most needs it: when they are about to lose to a much more powerful opponent (A friend dying or appearing to die is also common.) The main character will then battle this old threat that had them beat second before, and will defeat them without the trouble they had experienced before. Although this appears very useful at first though, the character is then faced with the trouble of keeping this evil personality in check, though the character will eventually conquer this threat and be able to use the alter ego’s power without fear of losing themselves.

    Examples of the Alter Ego Stereotype:

    Kyuubi Naruto

    Hollow Ichigo

    Satan Jio

    Vampire Seras Victoria

    Demon Inuyasha

    Demon Yusuke

    Yoko Kurama

    Shukaku Gaara

    Avatar State Aang

    THE STEREOTYPE COUNT

    ====================

    Which series has the most manga stereotypes for action characters? Who proves to be the most Stereotypical? Here’s your chance to find out!!due to the fact that this page is not yet finished, and does not have every character ever created for manga, this result may not be true, but it is the best we could come up with with what we have. We thank you for understanding.

    Battle B-Damon: 1

    Cowboy Beebop:1

    Speed Racer: 1

    Tokyo Babylon: 1

    Zatch Bell: 1

    666satan: 2

    Buso Renkin: 2

    Hellsing: 2

    Sonic: 2

    Cardcaptors Sakura: 3

    Death Note: 3

    Pokemon: 3

    Neon Genesis Evangelion: 4

    One Piece: 4

    Shaman King: 4

    Code Geass Lelouch of the Rebellion: 5

    Kingdom Hearts: 5

    Rurouni Kenshin: 5

    Love Hina: 6

    Bleach: 7

    Dragon Ball: 7

    Inuyasha: 7

    X/1999: 8

    Yu Yu Hakusho: 8

    [[Avatar: The Last Airbender:vol:19410]]: 9

    Sailor Moon: 10

    And the winner is…

    Naruto!!

    ========

    \"WE
    WE HAVE A WINNER!!!!

    Naruto, coming in at a whomping 22 listed stereotypes puts all the other series to shame. Congratulations Naruto. You are now officially the most Stereotypical on the vine… Believe it.

    Stereotypical Manga Concepts

    Manga Deaths

    ============

    Of course, in any action manga...well, any manga we can think of, somebody has to die, and here is a count of all the most used deaths in any anime/manga. Some of these deaths are pointless, like the pathetic deaths section below, as it only shows us tht the writer could come up with no reason to really make the character in the first place. However, these due make some dark comedic moments for readers, as many of these deaths are hilarious. Then, there are the tear jerking ones that really kill you to watch, as you generally know that said character is going to die, and said character happens to be one of your favorites. Also, it would seem that under no circumstances, under any reason, should a character be able to die a normal death, such as a heart attack or old age. If so, there must be a certain or special reason why this said character had to die this way.

    Pathetic Deaths

    Throughout every action manga, there is nearly always a death scene that was unnecessary for the series to progress, often just to show a new character's \"power\" by instantly killing a/ many lackeys or side characters with no importance to the story.

    Owned

    These characters are almost always antagonistic to the main character for some period of time, and only kill these people as an entrance for what seems to be a sheer lack of creativity for an introduction. The deaths of these lackeys are almost done in less than a second or off screen, proving the \"power\" that this new character/characters have compared to the main character. This action can happen in basically anywhere in the storyline, but it seems it is almost entirely necessary for it to cameo, in any manga that involves fighting.

    List of the Pathetic Deaths:

    note, this is a list of characters that have killed characters off insanely quickly, not the characters killed, as these nearly never play any role in the story or have a name

    Scar

    Wrath

    Gaara

    Zabuza

    Itachi

    Aoshi

    Saito

    Vegeta

    Toguro

    Hiei

    Kurama

    Light Yagami

    Ryuk

    Alucard

    Drawn Out Character Deaths

    Then, of course, there are the characters that have extremely long, drawn out deaths. These are usually very sad, foreshadowed, and painful, as can be determined by the way the character lived their life, like, say, Itachi from Naruto, or Zabuza, of the same series.

    Possibly the saddest character death yet in Naruto...

    These characters deaths generally bring out the good in them, or at least shed light on how they really took life, ie when Itachi, rather than attempting to rip out Sasuke's eyes once again, poked him in the forehead, transferring all of his Sharingan techniques into him to keep him alive. Or Zabuza's infamous charge through all of Gato's minions. These deaths happen quite often, generally when you know the character is about to die, like, say, Shishio. However, his death was not necessarily one of a protagonist or revealing of the light within him, if there was any. Main villains of series always have extremely large, drawn out deaths, especially when represented in video games, where they seem to take up several minutes to simply fade off screen. Maes Hughes, of Fullmetal Alchemist, had a death scene that was extremely sad, killing him off in a phone booth, and Light Yagami from Death Note also had a death of this stereotype, making what was actually a minute's countdown to a heart attack seem like an hour, screaming for help in the corridors of his mind.

    List of Drawn out Deaths for Characters:

    Itachi

    Zabuza

    Gato

    Gaara

    Jiraiya

    Light Yagami

    Maes Hughes

    The first Greed

    Kotori Mono

    The Third Hokage

    Piccolo(only to be resurrected)

    ShishioThis refers to the final death of a character referred to as the main antagonist. This death is almost always seen, since the bad guy never wins. However, there are some cases where the Main bad guy reforms at the end of the series, and in this case, they will either live or have a drawn out character death. The Final victory death is usually the most climactic point of the series, with the hero, despite being beaten, battered, and 95% dead, is able to gain his true victory over the main bad guy and finally kill him. The main character will then somehow heal from his nearly fatal wounds and celebrate with his friends, and the main bad guy will always just be a bad guy. This stereotype has been employed the most by the series Dragon Ball Z.

    Final Victory Deaths

    List of Final Victory Deaths:

    NOTICE: This list also includes defeats of characters who, despite not dying, are never seen again, and almost never referred to again.

    Shishio

    Freeza

    Cell

    Buu

    Arlong

    Don-Krieg

    Sir Crocodile

    Irene

    Manga Weaponry

    ==============

    Even more so than death, a manga/anime has to have weapons, it's just essential. Actually, when we say weapons, we basically mean swords. Name on anime or manga without a sword, we dare you. Every character has their own weapon, be it chakrams, a sword, an axe, their breath, who knows. But we do know that every character from the dog walking down the street to the old grandpa who sits in the cafe with his tea has a weapon, maybe not a fearful one, but a weapon none the less. Here's a list of the most used:

    Swords

    Okay guys, there is no manga without one of these. There just isn't, it has to defy some law. In nearly every manga there is a blade, and plenty of characters use them.

    The Masamune...a sword famous to gamers everywhere...

    These blades can list from anything short of a simple katana or a legendary sword with building splitting properties. the characters that use these weapons can have such diverse characteristics to their moral values and character that it's impossible to call them a stereotype, but maybe a little diversity of weapons would be nice. One thing is for sure though, is that if a character has a sword, they can almost never be injured by a bullet or any other weapon but a sword...unless of course the character they are fighting is their master.

    List of Sword Using character Stereotypes:

    Kenshin Himura, the most famous manga main character with a blade.

    Sanosuke Sagara Sagara, while he didnt use a sword for very long, he certainly used it well.

    Saito Hajime, one of Kenshin's bitter rivals to the end, though a good friend in the long run.

    Yahiko became a second Kenshin, so of course he had a blade of his own.

    Kaoru was a practitioner of the Kamiya Kasshin ryu, and was also the teacher of her sword school.

    Aoshi Shinomori was the leader of the Oniwabanshu, and made good use of his blades in battle.

    Jin'e was an amazing sword fighter and Kenshin's rival, the only one to defeat Kenshin in battle throughout the entire series. At least, not lose to him...

    Hiei

    Sasuke

    Yoh Asakura

    Arashi Kishu

    Clare
    Guns

    Guns are almost always used by characters who are the grunt soldiers or the character who is always hunting the main character. The gun will then be utterly useless, never being able to hit the main character, or when they actually succeed in hitting the character, they are utterly unable to hit then in a vital area. However, there is then the possibility that the main character has the gun, and in these instances, the main character is able to hit a fly five hundred feet away tied up with both of their eyes closed and with five hundred people in the way. A gun is only portrayed as \"useful\" in manga when held by one of the major characters. If used by some random enemy, the shots A.) Never connect, not once, not twice, out of one thousand shots; or B.) Directly hit the target multiple times and not do an ounce of damage to it.

    Manga Hair Color

    ================

    The Hair color of a Manga Character has been shown to be a deciding factor in the personality and power of a manga character. This has appeared in almost every media where the characters can summon a great burst of Energy.

    Silver/White

    Whenever a character has either silver or white hair, there are oly two possibilities, they are either amazing powerhouses, or the are old. Let us begin with the insane power houses. Though these characters always appear to be just simple and never start out seemingly powerful, they are still capable of doing attacks assaults and all that of nearly godly perportions. For instance, if they originally appeared to be slow characters not being able to dodge something that appears to be amazingly easy to dodge, they later are able to move faster then the naked eye is able to see. However, if the characters are amazingly old, then they are either a main character or a side character that does nothing. If they are of the former, though, then they are still able to beat other characters early 100 years younger then them with ease, and be able to still do feats of inhuman perportions.

    List of Characters with White/Silver Hair:

    Kakashi

    Kaworu Nagisa

    Jiraiya

    Amidamaru

    Kabuto

    Kimimaro

    Kurama (when in Yoko Kurama Form)

    Sephiroth

    Riku

    Clare
    Red

    Most of the characters with red hair are commonly hotheaded and commonly are some of the first to jump into a fight. Also, they always seem to have some sort of romantic attachment to someone, though whether this is about being obsessed with someone or just being a womanizers varies, however. Red headed characters are commonly in the fighting stereotypes (either fighting sidekick or fighting main characters). This hair color stereotype, though, is not nearly as common as the silver/white hair stereotype.

    List of characters with redish hair:

    Kuwabara

    Manga Blood Types

    =================

    The blood type of the characters in Manga is a deciding factor in their personality traits. The blood types of these characters is recorded in the the A/B/O scale.

    Blood Type O

    The characters who are born with the O blood type are characters who have traits where they are sociable and always get along well with others. They are also shown to be both agreeable with what others say, and are also the people who look at the glass as half full, as opposed to half empty. However, these characters are also commonly very vain, thinking only of what will best benefit them, and, do to there carefree nature, they can also be very careless. another strange negative trait for these kind of characters is that they can be very ruthless.

    Blood Type A

    The characters who have an A type blood are very earnest about others, showing their caring and nkind nature to all those around them (though they can sometimes be a bit to earnest). These characters are also creative, coming up with many different plans on the spur of the moment. They are also capable of being very calm and sensible in different times and areas, allowing them to be very analytical of there surroundings and of multiple different possiblities. However, they can be overly detailed in there plans, and can be very compulsive in doing their plans in the EXACT way that they planned.

    Blood Type B

    The Character with a blood type B are very wild about there lives, enjoying what the do, and they do do a lot. these characters are always doing what they set there mind to, and can not be stopped from doing what they want to do. These characters are also always seen with a smile on there face, enjoying what they do immensly. However, doing what they do, these characters can be very selfish, only trying to do what they want, as well as being irresponsible in there attempts at completeing there goal. Also, they are commonly very ignorant of the ways of the world around them.

    Blood Type AB

    A character with this specific blood type is commonly controlled and rational in his/her thought process. They are almost always unphased by the horrible things that they see, and almost always have the exact same expression, regardless of the situation which they are currently in. However, this rationla thought process can make them appear very cold, alienating them from their peers. These characters are also very indecisive, usually when their emotions are involved, as well as very critical of their peers.

    Laws of Manga Physics

    For anyone who has ever read or heard of manga has discovered the one total and godly rule for all manga, the laws of Physics are absolutely useless. Therefore, The Manga Laws physics, a list detailing the physical possibilities commonly found in Manga, was created. These Different physical possibilities are commonly found within Manga, and have been used so many times that they have now fallen to the point of a stereotype.

    please note that all the theorys listed in this section are meant to be satirical, and are by no means actual explanations for the concepts listed

    The Big Head

    ============

    In times of anger, Manga characters are able to manipulate the size and shape of their head.

    Characters in Manga are capable of increasing the size of their head. This ability only seems to manifest, though, when the character who displays this power experiences a large amount of anger at one person in particular. Their head then grows to a size larger then their body, and they will scream angrily at the person they are angry at.

    A variant of this law is that the characters face will change shape, their teeth will begin to show gaps, their pupils disappear, and their mouth widens incredibly, giving them a cartoonish look. Also, when they are not at the anger level that they shout at the person, a vain shall appear on their head, and shall bulge menacingly for a few seconds. This vein usually appears when a character beats their comrade down for doing something stupid.

    The Magical Yell

    ================

    The voice of a character or their loved ones is able to increase the power of said character

    Characters in Manga, whenever they appear to transform, almost always let out a long and anguished yell. The cause of this is unknown, but it has been speculated that it is caused by excruciating pain caused from the power-up, or by the amazing pleasure caused by said power-up. Either way, this yell always seems to be optional, as later transformations will have this scream absent.

    In a similar fashion, whenever a character has been almost killed, the scream from a loved one is some how able to both heal the wounds to the point that they no longer plague the character and increase their power to the point that they can obliterate the enemy who they are facing.

    The Fourth Dimension

    ====================

    Characters in Manga have discovered the ability to store different items in another dimension and to someone these items at will

    The Fourth Dimension has come to be one of the most used powers in Manga. This power is usually always held by the female of the group, and she becomes capable of summoning large weapons and such from this strange rift. However, this power never seems to be used in battle situations (many believe that this is because the immense aura of evil that the enemy puts off interferes with the dimensional manipulation of the character.)

    Common Items that are stored in the Fourth dimension are Mallets, Bazookas, and baseball bats. All of these also appear to be unable to cause serious injury to the person hit with them (theorized to be do to weakening of the atoms resulting from the dimensional shift.) As fellow fans of manga, we like to dub this unknown area (generally behind the female characters back) \"Malletspace\", as in multiple manga series it is shown that these characters have access to hammers behind their backs....hmmmm.

    The Hair Style

    ==============

    The hair of a character is able to take on any color or shape, regardless of how impossible

    The Hairstyle held by characters is one of the most distinct features of Manga.

    Need we say more?

    The hair is able to take on any shape that is wished by the owner of the hair. Also, even without the use of hair products, the hair of the character is capable of standing literally straight up, and can take up the color of any wished shade, from black to white. The style of the characters hair is even able to change shape and color with a thought, a most well seen in the famous Manga series Dragon Ball Z. Then of course, characters seem to be born with blue, green, or purple hair. Nothing special about it, and an albino seems pretty normal in any anime/manga world, just as often as you find a brunette.

    Indestructible Hair

    ===================

    All hair can not be destroyed by means of guns, energy, or fire. The only thing capable of destroying hair is a blade

    Whenever a character is caught in a large explosion, shot in the head, or blasted by energy (which, in retrospect, would kill them anyways), their clothes are left in tatters, their body id bloody and battered, but their hair still keeps shape and style, and is never destroyed in these occurrences. So far, the only possible way to destroy the hair of a manga character is to have them narrowly dodge the attack. Their hair always seems to cut for dramatic emphasis, yet is strangely never shown any shorter after being cut.

    Also, it has been commonly noted that the power of a character seems to be dependent on their hair length, and when they become stronger, their hair length seems to grow. This is often sited as the reason for the invulnerability of hair, as it is a defense mechanism to control the character’s power.

    Main Character Physics

    The main character in an anime is always going to live through a fight, or be brought back after said fight

    Basically, any main character that happens to get into a skirmish and get cut, can not die from poison or blood loss. It simply seems to be physically impossible, as mentioned before in the deaths section, to be killed by something normal. Should debris from a crumbling building fall on a main character, they can not die from it, ever, unless of course they come back to life within minutes (in which case you can hardly call it dying). They also are able to defy the laws of physics at any moment during their fight, without ever being shown to do so before. Also, it would seem that a main character equipped with a blade is able to defeat any manner of opponent, and, if they happen to have a charging motion towards you, and there's a sudden flashback/splitscreen/flash of light, and they end up behind you, you have immediately lost the fight, it would seem.

    Fighting Sequences

    During a fight, a character is able to display stamina that is not present at any other time

    Throughout any and all shonen action manga, there is always a fight scene. In fact, we can't dare think of a series that would go without one, even in the direst of circumstances. There are tons and tons of fight scenes in manga and anime, but none are more memorable than the main character vs. his rival, or the battle that has been built upon for the entire series, ie The Sasuke/Itachi fight or the Goku/Vegeta fights. There are always the fight scenes that require little to no effort to see who's going to win, but most of these are listed under \"Pathetic Deaths\". In manga, the fight scenes are always filled with epic moments, and generally last much, much longer than a fight between any normal human would have. We'd list the stereotype count here, but let's face it guys, you can't name a single character that doesn't have an action sequence in shonen manga.

    Introductory Scenes

    Every time that someone is introduced into a series, they usually are able to instantaneously defeat an enemy, proving they do have some power.

    Now, every manga character has to have an introduction,right? Well, of course they do, otherwise they aren't a character in the series. Well, this isn't exactly a stereotype that can be avoided, but some of these intros are used way too much, like the instantaneous death entrance.

    Yes he is O_O

    There are some good ways to introduce new characters that aren't done ever so often, though, like Death Note's L. All he did was say his name, but he made sure to be just as cool as any other manga anime character out there while doing it. Most main characters are introduced in a rather indifferent way, making them very boring to watch. Come on guys...Kenshin did it, not everyone else has to too...(when we say this, we are referring to the typical \"One Hit KO\" intro on the first antagonist of the series).

    Four

    The number four, when mentioned, always has mystical proportions.

    Okay, how does a demon become a Saint? I'm lost here

    -Yusuke Urameshi, Yuyu Hakusho

    Suzaku, the Leader of the Four Saint Beasts

    Okay, so it is just a number, but it's still represented in manga a lot...well, maybe far too much. There are almost always a group of four characters in a single group that the main characters have to fight, every single series that I personally can account for. these characters are usually mirror opposites of the characters in the main characters group, as there are usually four in this too, counting the heroine five, but of course the writers decide that she will never participate in a major battle. The most notable and memorable of these would have to be The Four Saint Beasts of Yuyu Hakusho. It was Yusuke's (the main character) first battle where he could have actually died, and his friends (Kurama, Hiei, and Kuwabara) fought one of the members each, winning all of their battles. Of course, they were left behind and had to \"stop the enemies from getting in\" so yusuke could have his one on one match with their leader, Suzaku. Similar things happen in manga with characters like this, the leader can never be taken down like he should be, treated as a true threat to humanity, but only by the main character himself

    Singular Fight

    Whenever a character begins a fight with someone else, they will be the only ones able to fight said person, despite any friends being there

    This law appears to be related to the \"four\" law stated before. Whenever a group of characters come to fight a super-strong main bad guy, they will always split up, one person fighting one of the enemies they encounter, leaving a clear path for the main character to run through to new enemies, even though it would be ten times quicker if all of them were to just gang up and defeat the enemy. However, when a five on one fight does occur, it is almost always against a villain who can fight five enemies on equal grounds (commonly referred to as Power-Rangers Syndrome).

    Death Powerups

    Whenever there is the death of a protagonist in a series, it always seems to strengthen the main protagonist. If it is the Main protagonist who dies, they then always become much more powerful and come back to life.

    Related to the Magical yell stereotype. This law states that death is in fact one of the most useful things in the series, as it will always seem to strengthen someone (usually the main protagonist.) Though this would usually be attributed to an increased resolve to take revenge, the sheer magnitude of this power increase is much more then could normally be constituted by an increased resolve. One theory attributed to this is that when a character dies, they open up a dimensional rift to the afterlife, and the power resonating from the afterlife is then enfused with the character, increasing their power. This theory also seems to give a reason for the second half of this stereotype, an increase of power after death. Since the character is directl exposed to the power in the afterlife, they are able to absorb more, and therefore become total powerhouses

    Plot Devices

    Throughout manga there are many instances in which something should have happened, but didn't, due to the characters role in the story, and often times no real explanation at all, and no reason to happen, say, the female hero running into the most dangerous character in the series, or one of the more dangerous ones, for no real reason, and being held captive by them, or \"escaping\", simply with the help of plot. This is extremely prevalent in many series. such as Orihime Inoue being captured by Ulquiorra Schiffer of Bleach, or Kairi being taken hostage by Sai'X of Kingdom Hearts. Among many plot devices, there is always a way to surpass the \"ultimate\". What we mean by this, is no matter what something is said to be the most powerful form or attack (ie, Super Saiyan), it will always be surpassed if addressed by the main character. Once something is said to be impossible, it is always surpassed and not even viewed as useful by the end of the series, among many of these being the Bankai of Bleach, the \"Hyper Gundam\" of G Gundam or any type of hyper transformations.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-170675/","id":170675,"name":"Il grande Ratzinga!","issue_number":"12"},"id":52780,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4309/352996-194456-manga-stereotypes.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4309/352996-194456-manga-stereotypes.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4309/352996-194456-manga-stereotypes.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4309/352996-194456-manga-stereotypes.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4309/352996-194456-manga-stereotypes.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4309/352996-194456-manga-stereotypes.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4309/352996-194456-manga-stereotypes.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4309/352996-194456-manga-stereotypes.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4309/352996-194456-manga-stereotypes.JPG","image_tags":"All Images,The Title"},"name":"Manga Stereotypes","site_detail_url":"https://comicvine.gamespot.com/manga-stereotypes/4015-52780/","start_year":"1997"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-53027/","count_of_isssue_appearances":5,"date_added":"2008-06-06 11:27:53","date_last_updated":"2016-09-12 14:18:15","deck":"The Avatar State is a defense mechanism, activated when the current Avatar is under severe emotional stress or in danger, or when they willingly enter it after mastering it.","description":"

    The Avatar State

    At first, the Avatar enters the Avatar State when they are under incredible emotional stress or when they're in peril. But, it is possible for an Avatar to master the Avatar State.

    When an Avatar enters the Avatar State, his eyes glows, and in the case of Airbender's, they're tatoos glow. This is because the Avatar is channelling the knowledge of all his/her past lives. The knowledge gives the current Avatar the ability to bend all the elements, because of the mastery of their former lives.

    Vulnerablity

    Even though the Avatar is at his/hers most powerful when they are in the Avatar State, they are also at their most vulnerable. If the Avatar is killed when he/she is in the Avatar State, the Avatar cycle will be broken, and the Avatar will no longer exist.

    Wan

    Aang

    Introduction

    Aang was in the Avatar State when he and Appa were frozen in temporal statis, as he used it to save Appa and himself when they were about to drown.

    Book One: Water

    Aang entered the Avatar State in the next episode, used to save himself from drowning (yet again) and defeat Prince Zuko and his Fire Nation soldiers.

    He then entered the Avatar State when he discovered Monk Gyatso's corpse, but was calmed down by Katara.

    Aang didn't access the Avatar State again until the finale of the first season. After the Moon Spirit was killed, Aang entered the Avatar State and merged with the Ocean Spirit, and they brutaly attacked the Fire Nation.

    Book Two: Earth

    The Avatar State was one of the main focuses of Book Two: Earth. In the first episode, General Fong and his soldiers tried to get Aang to enter the Avatar State, to use it as a weapon to take down the Fire Nation. General Fong eventually manages to shock Aang into the Avatar State, by making it look as if he killed Katara. Aang refuses to use the Avatar State to attack the Fire Nation then, because of all the people he hurt.

    Aang later entered the Avatar State when he found the Sandbenders who took Appa, but he Katara managed to calm him.

    Near the end of the season, Aang is contacted by Guru Pathik, telling Aang that he can help him master the Avatar State. Aang visits Guru Pathik, and Aang opens six of his chakras, but he refuses to open the final one because he would have to let go of Katara.

    In the season finale, Aang opens the seventh chakra, and enters the Avatar State, but is struck down Princess Azula. When this happens, Anag's seventh chakra was locked, and he can not enter the Avatar State at this point in time.

    Book Three: Fire

    Aang is no longer able to enter the Avatar State, because of his injury he recieved from Azula.

    Uses in past lives

    • Avatar Roku entered the Avatar State when he attempted to stop the volcano on his island, Roku Island, from erupting

    • Avatar Roku used it to fight Fire Lord Sozin

    • Avatar Roku spent five months on Crecent Island trying to master the Avatar State, with Fire Sage Shyu. He became impatient and used the sun light during the winter solstice to speed the process up, but he lost control of his body, and destroyed the temple. Luckily, Fire Sage Shyu reflected the sun light away from Roku, releasing him from the Avatar State.

    • Avatar Kyoshi entered it to seperate Kyoshi Island from the main land.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-417820/","id":417820,"name":"Book One: Air","issue_number":"1"},"id":53027,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10390/344543-56607-the-avatar-state.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10390/344543-56607-the-avatar-state.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10390/344543-56607-the-avatar-state.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10390/344543-56607-the-avatar-state.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10390/344543-56607-the-avatar-state.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10390/344543-56607-the-avatar-state.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10390/344543-56607-the-avatar-state.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10390/344543-56607-the-avatar-state.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10390/344543-56607-the-avatar-state.jpg","image_tags":"All Images,gallery"},"name":"The Avatar State","site_detail_url":"https://comicvine.gamespot.com/the-avatar-state/4015-53027/","start_year":"2013"},{"aliases":"Hypersleep\r\nTemporal Stasis\r\nCryogenic Freezing","api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-53111/","count_of_isssue_appearances":90,"date_added":"2008-06-06 11:27:53","date_last_updated":"2018-02-28 23:34:09","deck":"Suspended Animation/Temporal Stasis is where the human (or some form of life) is exposed to extreme cold, stopping their life functions, without killing them.","description":"

    Marvel Universe

    Captain America was frozen in the North Atlantic, after being blasted into the sea by Baron Heinrich Zemo. He was later found by the Avengers in Avengers #4, where he joined the team, replacing the Hulk.

    Another example is when the Russians froze Bucky Barnes in suspended animation to be used as the assassin Winter Soldier.

    Other Universes

    In the TV Series, Avatar: The Last Airbender/The Legend of Aang, Aang and Appa were frozen in an iceberg for one hundred years, after they fell into the sea, and Aang accessed the The Avatar State and froze the water around them.

    In the TV Series of Futurama, Fry was cryogenically frozen for a thousand years.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-117185/","id":117185,"name":null,"issue_number":"84"},"id":53111,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/3332405-suspended_animation-alien-the_illustrated_story.jpg","image_tags":"All Images"},"name":"Suspended Animation","site_detail_url":"https://comicvine.gamespot.com/suspended-animation/4015-53111/","start_year":"1959"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-53453/","count_of_isssue_appearances":1,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-04-20 08:03:46","deck":".","description":"

    .

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-426484/","id":426484,"name":"HC","issue_number":"1"},"id":53453,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31456/1302954-800px_revanmalak_tea.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31456/1302954-800px_revanmalak_tea.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31456/1302954-800px_revanmalak_tea.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31456/1302954-800px_revanmalak_tea.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31456/1302954-800px_revanmalak_tea.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31456/1302954-800px_revanmalak_tea.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31456/1302954-800px_revanmalak_tea.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31456/1302954-800px_revanmalak_tea.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31456/1302954-800px_revanmalak_tea.jpg","image_tags":"All Images,Darth Revan,Revan,Sith Lords"},"name":"Rule of Two","site_detail_url":"https://comicvine.gamespot.com/rule-of-two/4015-53453/","start_year":"2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-53739/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-12-14 14:28:56","deck":"This page lists all Marvel Characters that are qualified to perform the job they trained to do, before they become a superhero/supervillain, or the occupation they did/do.","description":"

    A

    Accountants

    Black Cat - Black Cat is a former accoutant, turned theif.

    Iceman - Bobby Drake is a Certified Public Accountant.

    Actors

    Human Torch

    Invisible Woman

    Lindsay McCabe

    Bob Diamond

    Mary Jane

    Wonder Man - Wonder Man is a famous actor, and even has a star on the Hollywood Walk of Fame

    Astronauts

    John Jameson

    Thing - The Thing was a rocket pilot/astronaut, and piloted the rocket in which the accident that gave the Fantastic Four they're powers occured.

    B

    Bartenders

    Lindsay McCabe

    Wolverine

    Zuzha Yu

    Bodyguard

    Strong Guy - Previous body guard for Lila Cheney

    Bouncers

    Wolverine

    Business Men/Women

    Angel - Rich businesss man, inherited his fortune from his father.

    Emma Frost - Made her own way in the world, oener of Frost Enterprises.

    Iron Man - Owner of Stark Industries.

    Sunspot - Inherited his father's fortune.

    C

    Chemists

    Morbius

    Hank Pym

    Circus Acts

    Amanda Sefton - Part of a circus since she was born through her mother

    Black Cat

    Nightcrawler

    Fred Dukes

    Crime Lord

    Kingpin - For a long time, the Kingpin was the Crime Lord of New York City.

    D

    Detectives

    Dakota North

    Jessica Jones

    Doctors (medical)

    Cecilia Reyes - Celcilia was a doctor in a Bronx hospital. She is the only X-Man member that has so far been qualified in medicine.

    Jane Foster

    Thor (as Donald Blake)

    Stephen Strange

    E

    F

    Fashion Designers

    Wasp - Has her own fashion company.

    Firefighters

    Human Torch

    G

    Geneticists

    Beast

    Moira MacTaggert

    Mr. Sinister

    Professor X

    Dr. Sarah Kinney

    Goverment Operatives

    Vostok

    Wolverine

    Nick Fury

    H

    Hairdressers

    Lucinda Guthrie

    I

    Inventors

    Iron Man - Invented many things for his company, Stark Industries.

    Mr. Fantastic

    Hank Pym

    J

    Journalists

    Ben Urich - Previously reported for the Daily Bugle, now has his own paper with Sally Floyd.

    Jessica Jones

    Ms. Marvel

    Sally Floyd

    J. Jonah Jameson

    K

    Kings

    Black Panther - King of Wakanda

    Captain Britain - King of the Otherworld

    Doctor Doom - King of Latveria

    Namor - King of Atlantis

    Black Bolt - King of The Inhumans

    L

    Lawyers

    Damian Tryp

    Daredevil

    Evangeline Whedon

    Foggy Nelson

    Madrox

    She-Hulk - A very skilled lawyer, attended UCLA School of Law and Harvard Law School

    Lifeguards

    Lifeguard

    M

    Mercenary

    Wolverine

    Miner

    Cannonball - Mutant powers first activated when he was in a coal mine earning money for his family.

    Wolverine

    Models

    Psylocke - Was a model before becoming an adventurer.

    Musician

    Dazzler - Famous singer in the Marvel Universe.

    Lila Cheney - Famous singer in the Marvel Universe.

    N

    Nurses

    Amelia Voght

    Annie Ghazikhanian (Annie) - Took care of Havok when no one knew who he was. For a time was the nurse at Xavier's Institute.

    Jane Foster

    Night Nurse

    Sharon Friedlander

    O

    P

    Photographers

    Spider-Man - Photographer for the Daily Bugle/The D.B.

    Police

    Ishmael Ortega

    Omega Sentinel

    Tom Corsi

    Psychiatry

    Doc Samson - Has an M.D. in Pshychiatry.

    Psychologists

    Moonstone - Trained and qualified psychologist.

    Professor X - Graduated from Oxford with a P.h.D. in psychology.

    Private Investigators

    Colleen Wing

    Jessica Jones

    Lindsay McCabe

    M - Member of X-Factor: Investigations.

    Madrox - Member of X-Factor: Investigations.

    Misty Knight

    Rictor - Member of X-Factor: Investigations.

    Siryn - Member of X-Factor: Investigations.

    Strong Guy - Member of X-Factor: Investigations.

    Wolfsbane - Previous member of X-Factor: Investigations.

    Publishers

    J. Jonah Jameson - Previous publisher of the Daily Bugle.

    Prostitutes

    X-23

    Ripcord

    Q

    Queens

    Storm - Queen of Wakanda.

    R

    S

    Sailors

    Rusty Collins

    Wolverine

    SHIELD Agents

    Black Widow - Has SHIELD Level 10 clearance. One of three to have it.

    Daisy Johnson - Has SHIELD Level 10 clearance. One of three to have it.

    Dum Dum Dugan

    Iron Man

    Nick Fury - Has SHIELD Level 10 clearance. One of three to have it. Previous head of SHIELD.

    Izzy Cohen

    Dino Manelli

    Gabriel Jones

    Rebel Ralston

    Percy Pinkerton

    Eric Koening

    Quasar

    Spies

    Wolverine

    Soldiers

    Alysande Stuart

    Black Widow - Ex-Russian soldier.

    Bullseye

    Captain America

    Captain Mar-Vell

    Deadpool

    Forge

    Juggernaut

    Madison Jeffries

    Professor X

    Quasar

    Sage

    Stonewall

    Super Sabre

    Wolverine

    Social Workers

    Falcon

    Students

    Anole

    Armor

    Blindfold

    Dust

    Elixir

    Gentle

    Hellion

    Loa

    Match

    Mercury

    Pixie

    Prodigy

    Rockslide

    Stepford Cuckoos

    Surge

    Trance

    Wolf Cub

    X-23

    Surgeons

    Doctor Strange

    SWORD Agents

    Abigail Brand

    Dr. Zander Rice

    T

    Teachers

    Colossus (Xavier Institute)

    Iceman (Xavier Institute)

    Beast (Xavier Institute)

    Jean Grey (Xavier Institute)

    Kitty Pryde (Xavier Institute)

    Professor X (Xavier Institute)

    Nightcrawler (Xavier Institute. No formal training.)

    Tom Corsi (Xavier Institute)

    X-23 (Xavier Institute in an Alternate Universe)

    Theif

    Black Cat

    Gambit

    Storm

    TV Presenter

    Wasp

    U

    V

    W

    Writer

    Ms. Marvel

    Northstar

    X

    Y

    Z

    ","first_appeared_in_issue":null,"id":53739,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10390/364250-59832-qualified-occupation.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10390/364250-59832-qualified-occupation.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10390/364250-59832-qualified-occupation.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10390/364250-59832-qualified-occupation.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10390/364250-59832-qualified-occupation.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10390/364250-59832-qualified-occupation.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10390/364250-59832-qualified-occupation.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10390/364250-59832-qualified-occupation.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10390/364250-59832-qualified-occupation.jpg","image_tags":"All Images,Marvel Characters"},"name":"Qualified/Occupations Marvel Characters","site_detail_url":"https://comicvine.gamespot.com/qualifiedoccupations-marvel-characters/4015-53739/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-53865/","count_of_isssue_appearances":5,"date_added":"2008-06-06 11:27:53","date_last_updated":"2022-03-23 04:04:34","deck":"\"You cannot escape, so before you meet your doom, I shall tell you my evil plan.\" Comic book stereotypes can range from personality traits to ridiculous plot lines.","description":"

    There are a lot of comic book storylines and characters that have the same back ground or role...

    Here's a list of them...

    The Boy Scout

    \"The
    The Boy-Scout

    Perhaps the greatest comic book stereotype is the Boy Scout, The guy who does what he does with his Super-powers for the sake of doing whats right. Or on occasion for America/Patriotism. They are also generally the most highly respected heroes in each own universe.

    Below is a list of well known Boy-Scouts.

    The list could go on for days....

    The Devoutly Religious Demon

    \"Hail
    Hail Mary

    Comic book authors will try to throw a joke in every now and then of a Devilish character (A demon, Someone who looks like a demon etc etc.)...Being devoutly religious. Generally a Catholic.

    The Bad-Boy

    \"I
    I ain't that nice

    The bad-boy, the anti-hero, The man/woman who wants to do good but for some reason just can't...Or kills for what is good.

    The Demon

    \"The
    The Demon

    A recurring theme in comic books is the \"Demonic Anti-Hero\". Much different from the regular anti-hero, The main reason that these particular Anti-Heroes are Anti-Hero's....Is because they are a Demon or have been bonded with something Demonic (A suit, A Spirit etc etc).

    The Stereotypical Villain

    \"Mwhahahaha\"
    Mwhahahaha

    The stereotypical Villain, The guy who wants little more then to completely take over the world for little to no reason. Who almost always capture the good guy, Then start monologuing and telling the hero every last detail of there plan expecting He/She/Them to do anything about it.

    The \"Gifted\" Female

    \"Oh
    Oh my

    This is a \"large\" (No pun intended) stereotype that keeps appearing in almost every comic. It's the stereotype that Super-Powered Women can't have powers unless there breasts are the size of there head....Or larger. Female superheroes tend to have a harder time then the male superheroes. See Women in Refrigerators for more details.

    Again, This list could go on for days.

    Hey, Look, I'm Radioactive

    \"Radioactive
    Radioactive time!

    One of the most wildly popular comic book Stereotypes is a character who got his powers from Radiation or anything radioactive or someone who has Radioactive Powers. In fact, All of the members of the Original Fantastic Four got their powers from being exposed to \"Space rays\"... In other words Radiation.

    The Teenager

    \"High
    High school and saving the world? GASP

    Just your average everyday teen, who happens to get superpowers.

    Evil Counterparts

    To every superhero, there is a villain who either has similar powers, shares the same origin, or wears the same kind of costume as the heroes. This is very common in all comics.

    \"The
    The Counterpart

    List of Evil Counterparts:

    Beastials

    \"Bestial\"
    Bestial

    These are character who are animalistic in appearance. They are either were-animals, or come from a spiritual tribe that can harness the power of animals. Hero Characters are usually conflicted by their animal instincts and their humanity, while the villains are usually savage brutes.

    Martians

    \"Martian\"
    Martian

    In almost every comic, there are different kinds of Martians in the various comic book companies and series'.

    Atlanteans

    \"King
    King of the Seas!

    In almost every comic, there are different kinds of Atlanteans in the various comic book companies and series.

    List of Atlanteans in comics:

    Up Lifted Animals

    \"Humanoid
    Humanoid Animals

    In comics, they usually have uplifted animals, becoming intelligent and able to walk on two legs. They became this either by advance science or magic. a.k.a. Anthropomorphic Comics.

    Comic Book Laws and Logic

    All comic titles tend to revolve around logic that can only work in a comic universe.

    *Nothing is Constant: DC and Marvel prove this with Jason Todd's death, and Spider-Man's marriage with Mary Jane. Everything at one point or another will be retcon or rebooted in one way or another. Another example would be Professor X who as constantly lost and regain use of his legs throughout the X-Men run.

    *Team Crossovers: This happens a lot in comics. When two superhero teams meet up (either being in the same comic universe or not) will needless fight each other, either over a misunderstanding of one another or a trivial dispute, mostly over morals. In some cases, many team members even fight amongst themselves for no real good reason.

    *Death has hardly any real power in comics: No matter how long or how brutal a character's death, they can brought back to life by either faking their deaths, magic, time-travel, and even broken reality. A good example how the Titan Traitor, Bombshell, got he throat cut open on panel but still mange to come back to life.

    \"Its
    Its just a flesh wound

    *Just a Flesh Wound. : No matter how fatally injured a main or popular character gets in an issue, with the exception of special events, the character would not only stay alive while others would have died, they are able to walk off the injury shortly after receiving it and be complete over it issues later.

    Cliche Stories

    In the field of comics, all the companies tend to reuse the same kind of stories again and again, each different but also the same in their own way.

    Mad with Power: This is the most cliche story plot is usually when a hero character achieves God-like powers, usually after some disaster or twist of fate happens to him/her in their personal life, and goes mad and goes on a rampage on the planet;leaving the hero's friends having a hard time by choosing either saving their friend from him/herself or just kill him/her. It's very rare that the have to kill the character, but when the character is still alive, the publisher company will released a 'reflection issue' shortly after, showing us what's going on in the character's head, how he/she regretted their rampage and how he/she can ever be good again after what has happen (which they usually find right at the end of the issue).

    List of Mad with Power Story Arcs:

    Jean Grey: She has so many power trips throughout her time as the Phoenix that it is hard to keep count.

    Zero Hour: After the destruction of Coast City, Hal Jordan taps into power of the Main Power battery on Oa to become Parallax and sets out to retcon the DC Universe.

    Comic Book promos

    In comic books, the publishers tend to use over the top ideas and concepts to sell their comics, this usually comes in conflict with the comics' actual stories. Examples would be holographic foil covers, 'evolving ' certain characters' powers, and killing them.

    Cheap Deaths

    \"Rest
    Rest in peace...kinda

    In most comic book stories, the company or writers try to sell stories or start new stories, they kill off minor, yet popular characters in order to grab readers attention or just cause a team breakup or cause a change in characters. Over a course of few years, the characters usually come back to life one way or another that is almost as cheap as their deaths.

    List of dead characters and story arcs:

    Bart Allen: Died as a promo for Piper's story in Countdown to Final Crisis.

    Donna Troy: in Titans/Young Justice: Graduation Day: Her death caused the disband of The Titans and Young Justice, but soon lead to a restart of the Teen Titans. Brought back to life due to Superman Prime's punching reality.

    Superman in Death and Return of Superman: Promotional stunt for DC.

    Captain America: Again a promotional stunt.

    Jason Todd in A Death in the Family: Jason died because of lack of fan base. This caused Batman to become more dark and disturbed. He was brought back to life due to Superman Prime's punching reality.

    Colossus: in order to stop the Legacy Virus. He was brought back to life by an alien.

    Minor Retcons

    \"A
    A Minor Retcon

    Unlike universal retcons, minor retcons usually just happen around certain characters rather than the entire comic book universe. Over the years, some writers attempt to cause an evolution in certain characters in order to refresh them by adding a new concepts or changing the characters. Half the time these changes are reject by the fans, but there is a rare occasion when they accepted.

    List of Minor retcons:

    One More Day: This is considered to be the most controversial retcons in comic book history. In order to prevent the death of Aunt May, the writers made it so that Spider-Man's marriage to Mary Jane Watson never happened.

    Green Lantern: Rebirth: Restarted the entire Green Lantern series, brought back old characters, and brought up a new concept to the Lanterns.

    Cir-El: filled the gap of Supergirl between Linda Danvers and the return of Kara. Originally from the future, she was believe to be Superman's and Lois's daughter, but turned out to be a bio-weapon. In order to save the present, Cir-El went to the future and made it so that she never existed, so no one remembers her at all.

    Brainiac: It turns out that all the versions of Brainiac that Superman were really probes of his until he actual fought the REAL Brainiac during a story arc by Geoff Johns. This was done already for Toyman shortly before, in which his other incarnations (including the \"good\" Toyman, Hiro. Apparently).

    Going emo...

    Comic book writers tend to push many of the up-beat or well balance heroes over the edge with a death of a love-one or guilt-complex on some random movement, they turn them in emotional baggage, being the complete opposite of what they used to be. This is usually a turn-off for many fans, seeing the favorites heroes becoming something totally different that they're known for, but there are some who accept these changes as character evolution. (It should be noted that this is sometimes temporary.)

    Mary Marvel, once a sweet older sister character has become evil power-mad. Click to see the difference.

    List of heroes going emo.

    Tim Drake: Within 5 years, Tim Drake lost both his parents, his girlfriend, and two of his best friends, not to mention his step-mother is in a psychiatric hospital.

    Mary Marvel in Countdown to Final Crisis: After losing her powers and was given Black Adam's, Mary became aggressive, ruthless, and power hungry. And even when she recovered her original powers, she made a deal with Darkseid to get back the powers from Black Adam.

    Batman: (probably the first example) In early stories, Bruce was a kind friendly fellow, over the years he's become a brooding jerkass.

    Superboy: once a goofy kid, now a brooding jock.

    Daredevil: once a well adjusted guy, then after \"Born again\", several dead girl friends, getting his identity outed every once in a while he is now considered the most EMO superhero alive.

    Bart Allen: introduced as cheerful little kid then Geoff Johns had him shot in the leg and he's constantly against almost everything. He also became Kid Flash even though he's said several times he never would.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9611/","id":9611,"name":"The Monstrous Master Plan of the Mandarin","issue_number":"1"},"id":53865,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14607/368939-104937-comicbook-stereotype.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14607/368939-104937-comicbook-stereotype.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14607/368939-104937-comicbook-stereotype.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14607/368939-104937-comicbook-stereotype.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14607/368939-104937-comicbook-stereotype.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14607/368939-104937-comicbook-stereotype.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14607/368939-104937-comicbook-stereotype.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14607/368939-104937-comicbook-stereotype.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14607/368939-104937-comicbook-stereotype.jpg","image_tags":"All Images,Comicbook Stereotypes"},"name":"Comicbook Stereotypes","site_detail_url":"https://comicvine.gamespot.com/comicbook-stereotypes/4015-53865/","start_year":"1967"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-54256/","count_of_isssue_appearances":606,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-09-22 12:50:41","deck":"All Hallow's Evening.","description":"

    Holiday celebrated on October 31st.

    It originated from Ireland, got to the USA and became an important holiday, and then spread all over the world. There had been similar holidays before its globalisation, too, but it became important in other countries too, despite this.

    In comics and other medias, Halloween is the time for horror and fun. Usually both at the same time. It`s a popular concept in all kinds of comics.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-136648/","id":136648,"name":null,"issue_number":"7"},"id":54256,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/6063294-f5be5ced-302f-4bd5-9b52-d92c1e972ae8.jpeg","image_tags":"All Images"},"name":"Halloween","site_detail_url":"https://comicvine.gamespot.com/halloween/4015-54256/","start_year":"1937"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-54517/","count_of_isssue_appearances":5,"date_added":"2008-06-06 11:27:53","date_last_updated":"2017-09-20 22:40:11","deck":"A secondary mutation is something certain mutants develop. It is just a new power they recieve at a seperate time from receiving their first.","description":"

    What You Need To Know

    A secondary mutation is when a mutant develops a new mutation/new power. This mutation could do various things, from giving a new power to returning an old power or building on an old mutation.

    Examples

    Emma Frost - When Genosha was attacked by Cassandra Nova's Sentinels, and they killed most of the mutants living there, Emma Frost's second mutation saved her life. Her new power is the ability to turn her body into near-indestructable diamond, but this power blocks her telepathy.

    Black Tom Cassidy - Gained the power of clorokinesis (he turned into and was able to control all plant life). He lost this power when M-Day struck.

    Iceman - Iceman's secondary mutation was directly linked to his first: his body was completely turned to ice, and he wasn't able to change back and forth between human and ice form. In this form, if he was destroyed he was basically immortal because he was able to reform himself from water. He lost this power due to M-Day.

    Beast - Beast has some sort of secondary mutation, that seems to keep evolving. His beast form evolves into something new.

    Angel - Angel recently developed the power to heal others with his blood, providing they're the same blood-type. He may have always had this mutation but didn't realize it, because Icarus, a mutant with similar powers, had healing powers that derived from his wings.

    Warpath - Warpath developed the power of self-propelled flight, although for some reason it has never been stated officially that this was a second mutation. This hasn't been exhibited in a while, but he did display some sort of ability to either jump far or fly again recently.

    Polaris - After her powers were drained by her alleged half-sister, Zaladane, Polaris developed the ability of super-strength, but she generated negative emotions while doing this. Her powers were later returned and this secondary mutation disappeared.

    In Other Media

    Film

    X-Men: Days of Future Past

    In the film, Kitty Pryde is shown to have developed additional abilities during the 17 years since X-Men: The Last Stand. While Kitty could initially phase herself and other through solid objects, she is now shown able to send the minds of people back in time into their younger bodies, essentially allowing time travel. This ability proves crucial in stopping the Sentinels from wiping out the entire mutant race.

    Additionally, Best is implied to have undergone a secondary mutation in the 10 years since X-Men: First Class. He now sports a more ape-like appearance that looks almost nothing like his previous, cat-like form from the first prequel.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-249043/","id":249043,"name":null,"issue_number":"1"},"id":54517,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/6063254-ace234c6-0d73-40d0-925f-13e2312b19b3.jpeg","image_tags":"All Images"},"name":"Secondary Mutation","site_detail_url":"https://comicvine.gamespot.com/secondary-mutation/4015-54517/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55374/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:53","date_last_updated":"2011-05-05 16:58:41","deck":"Comic based movies due in theatres for the 2008 year.","description":"

    Rambo (January 25)

    Technically this could be considered a comic-based movie since Blackthorne Publishing did a couple Rambo comics in 1988

    Studio: Lionsgate Film

    Stars: Sylvester Stallon have been, Julie Benz, Matthew Mardsen

    Directed (and co-written) by Sylvester Stallone

    Synopsis: John Rambo in Thailand gets sucked back into a life of violence, doing what he does best.

    Budget: 50 million

    Opening Weekend (U.S.): $18,203,876



    Jumper (February 14)

    Prequel graphic novel, [[Jumper: Jumpscars:vol:20600]], released by Oni Press

    Studio: 20th Century Fox

    Stars: Hayden Christenson, Samuel L. Jackson, Rachel Bilson

    Directed by Doug Liman

    Synopsis: A young man discovers that he genetically has the ability to teleport wherever he wishes. He soon finds out that this is an ability others possess and that there's been a war waging for centuries against the \"Jumpers.\"

    Budget: $85 million

    Opening Weekend (U.S.): $27,354,808


    Superhero Movie (March 28)

    No comic, obviously. A spoof of comic films

    Studio: Dimension Films

    Stars: Leslie Nielson

    Directed by Craig Mazin

    Synopsis: Spoofs on recent Superhero films. Is there really a story?

    Budget: $35 million

    Opening Weekend (U.S.): $9,510,297




    Iron Man (May 2)

    Studio: Paramount/Marvel Studios

    Stars: Robert Downey Jr., Gwyneth Paltrow, Terrance Howard, Jeff Bridges

    Directed by Jon Favreau

    Synopsis: The origin of Iron Man as he goes up against Obadiah Stane. Tony Stark is in the weapons business and has a change of heart, literally. He decides to change his company's goals much to the dismay of his father figure, Obadiah Stane.

    The movie also sets up a sequel, including an Avengers movie in the future.

    Budget: $135 million

    Opening weekend (U.S.): $98,618,668


    Speed Racer (May 9)

    There have been several Manga versions since 1967 and Speed Racer by Now Comics, Speed Racer by Wildstorm, and currently [[Speed Racer: Chronicles of the Racer:vol:20449]] by IDW.

    Studio: Warner Bros.

    Stars: Emil Hirsch, John Goodman, Susan Sarandon, Christina Ricci, Matthew Fox

    Directed by the Wachowski Brothers

    Synopsis: The story of Speed Racer becoming the world's greatest racer and fighting the evil corporations that want nothing but to exploit him for all he's worth.

    The movie also reveals the past of Racer X.

    A high budget and lack-luster box office may squash any chance of a sequel.

    Budget: $120 million

    Opening weekend (U.S.): $18,561,337


    Indiana Jones and the Kingdom of the Crystal Skull (May 22)

    Several volumes of Indiana Jones have been released by Marvel Comics and more recently Dark Horse Comics.

    \"No


    Stars: Harrison Ford, Shia LaBeof, Cate Blanchett, Karen Allen

    Directed by Steven Spielberg

    Synopsis: Set in 1957, Indiana Jones embarks on another mission and discovers that he has a son. The movie also sees the return of Indy's love. Will he ever settle down? What about the future of this franchise? Will it go in a new direction?

    Budget: $185 million

    Opening weekend (U.S.): $100,137,835



    The Incredible Hulk (June 13)

    Studio: Universal/Marvel Studios

    Stars: Edward Norton, Liv Tyler, Tim Roth, William Hurt

    Directed by Louis Leterrier

    Synopsis: Bruce Banner continues to run from the US Army in trying to find a cure for himself while the Army simple wants to use him to produce Incredible soldiers.

    General Thunderbolt Ross and Abomination appear along with Betty Ross.

    The movie isn't a true sequel of Ang Lee's film.

    Budget: $130 million

    Opening weekend (U.S.): $54.5 million


    Wanted (June 27)

    Adapted from Wanted by Mark Millar

    Studio: Universal

    Stars: James McAvoy, Samuel L. Jackson, Angelina Jolie

    Directed by Timur Bekmambetov

    Synopsis: Wesley Gibson discovers that his father was part of a group of assassins and he is brought into their world of killing.

    The use of the term \"superheroes\" was taken out of the script early in production. This was before the recent superhero craze hit. Despite this, the movie is extremely faithful to the comic. Even Mark Millar himself was surprised and impressed with the way it came out.

    Budget: $75 million

    Opening Weekend (U.S.): $50,927,085


    Hancock (July 2)

    Not based on a comic but all about a super-powered individual. It would seem that a comic adaption could easily result out of this. Will a comic company jump on this and try to secure the rights?

    Studio: Universal

    Stars: Will Smith, Charlize Theron, Jason Bateman

    Directed by Peter Berg

    Synopsis: What if there was an actual person with super-powers? Would they use their powers for good or for personal gain? Hancock appears to be a drunk that does what he wants to do when he wants to.

    Can Hancock see how he should properly use his powers to help the world? Can he earn the respect of the world after all his stunts?

    Budget: $150 million

    Opening Weekend (U.S.): $62,603,879

    Hellboy II: The Golden Army (July 11)

    The sequel to the first Hellboy movie, based on the characters created by Mike Mignola

    Studio: Universal

    Stars: Ron Perlman, Selma Blair, Doug Jones, Jeffrey Timber, John Hurt

    Directed by Guillermo del Toro

    Synopsis: Hellboy and the Bureau for Paranormal Research and Defense must fight evil forces that threaten the world.

    Budget: $75 million




    The Dark Knight (July 18)

    The next installment of Batman.

    Studio: Warner Bros.

    Stars: Christian Bale, Heath Ledger, Michael Caine, Gary Oldman, Morgan Freeman, Aaron Eckhart, Maggie Gyllenhaal

    Directed by Christopher Nolan

    Synopsis: Batman must fight the Joker when he arrives in Gotham. Rumors say that Scarecrow may be putting in an appearance. Also things do not look too good for District Attorney, Harvey Dent. The film may see the birth of Two-Face

    Budget: $180 million


    The X-Files: I Want To Believe (July 25)

    This marks the second film for the X-Files. TOPPS Comics released an X-Files comics during the show's prime.

    Studio: 20th Century Fox

    Stars: David Duchovny, Gillian Anderson, Amanda Peet, Xzibit

    Directed by Chris Carter

    Synopsis: It's been a long time since we've last seen Mulder and Scully. Details of the movie's plot are classified until the movie's release.




    The Mummy: Tomb of the Dragon Emperor (August 1)


    The third movie in the Mummy franchise.  IDW Publishing has recently been publishing a comic based on Brendan Fraser's character http://www.comicvine.com/rick-oconnell/29-55851/
    \"No

    Studio: Universal

    Stars: Brendan Fraser, Jet Li, Maria Bello, Michelle Yeoh

    Directed by Rob Cohen

    Synopsis:  Explorer Rick O'Connell, along with his wife (now played by Maria Bello) and son get sucked into an adventure in defeating a resurrected Emperor (played by Jet Li) that is determined to rule the world.

    Budget: $175 million


    Star Wars: The Clone Wars (August 15)

    Will the stories in Star Wars Clone Wars Adventures be wiped out as a result of this series?

    Studio: Warner Bros.

    Stars: Voices of Anthony Daniels and Samuel L. Jackson (among others)

    Directed by Dave Filoni

    Synopsis: Set in between Star Wars Episode II: Attack of the Clones and Star Wars Episode III: Revenge of the Sith, the movie will set things up for the upcoming series on the Cartoon Network (hence the reason it will be released by Warner Bros. rather than 20th Century Fox).





    Punisher: War Zone (December 5)

    \"
    More bullets and mayhem following the \"adventures\" of the Punisher.

    Studio: Lionsgate Films

    Stars: Ray Stevenson, Dominic West, Wayne Knight (as Microchip!), Julie Benz

    Directed by Lexi Alexander

    Synopsis: Said to be inspired by Garth Ennis's storyline, \"Welcome Back Frank,\" the movie will see Frank going up against Jigsaw.






    The Spirit (December 25)

    Based on Will Eisner's character, Denny Colt, known as The Spirit

    Studio: Lionsgate Films

    Stars: Gabriel Macht, Samuel L. Jackson, Scarlett Johanssen, Eva Mendes, Jaime King

    Directed by Frank Miller

    Synopsis: Frank Miller directs the tale of former private investigator Denny Colt who returns from the dead and takes on the guise of the Spirit to fight crime. It is said that the film will not feature a telling of the origin but rather, the Spirit will already be established from the opening.

    ","first_appeared_in_issue":null,"id":55374,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/401935-116729-summer.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/401935-116729-summer.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/401935-116729-summer.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/401935-116729-summer.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/401935-116729-summer.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/401935-116729-summer.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/401935-116729-summer.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/401935-116729-summer.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/401935-116729-summer.jpg","image_tags":"All Images,Yum"},"name":"Comic Book Movies 2008","site_detail_url":"https://comicvine.gamespot.com/comic-book-movies-2008/4015-55374/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55681/","count_of_isssue_appearances":13,"date_added":"2008-06-18 09:53:44","date_last_updated":"2011-05-05 16:58:35","deck":"Alien-originated extra gene that gives individuals powers. Base on Extreme Studios Characters.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-38765/","id":38765,"name":"Extreme Prejudice, Part 4: Brigade","issue_number":"11"},"id":55681,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/8402/417220-DNA2.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/8402/417220-DNA2.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/8402/417220-DNA2.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/8402/417220-DNA2.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/8402/417220-DNA2.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/8402/417220-DNA2.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/8402/417220-DNA2.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/8402/417220-DNA2.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/8402/417220-DNA2.png","image_tags":"All Images"},"name":"Nu gene","site_detail_url":"https://comicvine.gamespot.com/nu-gene/4015-55681/","start_year":"1994"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55682/","count_of_isssue_appearances":6,"date_added":"2008-06-18 11:09:09","date_last_updated":"2015-04-18 21:31:04","deck":"A fictional treaty created in the DCU after the events of Infinite Crisis.","description":"

    Overview

    \"The
    The treaty meeting

    The freedom of power treaty was created after the world spanning events of Infinite Crisis. The effect of the treaty limits superheroes outside of the country so they cannot enter the countries protected by the treaty. The first breaking of the treaty was by Hal Jordan and John Stewart in China's airspace while pursuing Evil Star. The Green Lanterns were then attacked by The Great Ten and Black Adam who were enforcing the treaty at the time when the Rocket Red Brigade gave the lanterns safe passage through Russian Airspace.

    One Year Later

    After the events of 52 the treaty is still in full effect and Hal Jordan is considered an enemy by most of the world having broken the treaty numerous times. The Outsiders have also been operating around the world undercover and are believed dead in order to avoid any issues.

    \"Hal
    Hal Jordan AKA Green Lantern, the first one to disregard the treaty
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-113161/","id":113161,"name":"Revenge of the Green Lanterns Part 1","issue_number":"10"},"id":55682,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15511/417500-powertreaty.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15511/417500-powertreaty.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15511/417500-powertreaty.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15511/417500-powertreaty.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15511/417500-powertreaty.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15511/417500-powertreaty.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15511/417500-powertreaty.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15511/417500-powertreaty.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15511/417500-powertreaty.jpg","image_tags":"All Images"},"name":"The Freedom of Power Treaty","site_detail_url":"https://comicvine.gamespot.com/the-freedom-of-power-treaty/4015-55682/","start_year":"2006"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/episode-details/episode-4070-1.json b/samples/api-data/episode-details/episode-4070-1.json new file mode 100644 index 0000000..07854b6 --- /dev/null +++ b/samples/api-data/episode-details/episode-4070-1.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"air_date":"2013-09-24","aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1/","character_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7258/","id":7258,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4005-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105833/","id":105833,"name":"Grant Ward","site_detail_url":"https://comicvine.gamespot.com/grant-ward/4005-105833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2267/","id":2267,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4005-2267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1455/","id":1455,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4005-1455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105831/","id":105831,"name":"Jemma Simmons","site_detail_url":"https://comicvine.gamespot.com/jemma-simmons/4005-105831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105832/","id":105832,"name":"Leo Fitz","site_detail_url":"https://comicvine.gamespot.com/leo-fitz/4005-105832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40824/","id":40824,"name":"Maria Hill","site_detail_url":"https://comicvine.gamespot.com/maria-hill/4005-40824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105830/","id":105830,"name":"Melinda May","site_detail_url":"https://comicvine.gamespot.com/melinda-may/4005-105830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92680/","id":92680,"name":"Michael Peterson","site_detail_url":"https://comicvine.gamespot.com/michael-peterson/4005-92680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70860/","id":70860,"name":"Phil Coulson","site_detail_url":"https://comicvine.gamespot.com/phil-coulson/4005-70860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43174/","id":43174,"name":"Quake","site_detail_url":"https://comicvine.gamespot.com/quake/4005-43174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2268/","id":2268,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4005-2268/"}],"character_died_in":[],"concept_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56409/","id":56409,"name":"Espionage","site_detail_url":"https://comicvine.gamespot.com/espionage/4015-56409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56089/","id":56089,"name":"Marvel Cinematic Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe/4015-56089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-57333/","id":57333,"name":"Secret Headquarters","site_detail_url":"https://comicvine.gamespot.com/secret-headquarters/4015-57333/"}],"date_added":"2013-09-23 15:21:46","date_last_updated":"2014-12-14 07:26:58","deck":null,"description":"

    After the events of The Avengers, S.H.I.E.L.D. Agent Phil Coulson assembles a small team of agents to investigate a mysterious group called the Rising Tide. In doing so, they encounter Mike Peterson (J. August Richards), an ordinary man who has acquired superhuman powers.

    ","episode_number":"101","first_appearance_characters":null,"first_appearance_concepts":null,"first_appearance_locations":null,"first_appearance_objects":null,"first_appearance_storyarcs":null,"first_appearance_teams":null,"has_staff_review":{"api_detail_url":"https://comicvine.gamespot.com/api/review/1900-2214/","id":2214,"name":"Marvel's Agents of S.H.I.E.L.D. - Episode 101 'Pilot' Review","site_detail_url":"https://comicvine.gamespot.com/reviews/marvel-s-agents-of-s-h-i-e-l-d-episode-101-pilot/1900-2214/"},"id":1,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/76663/3330523-marvels-agents-of-shield.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/76663/3330523-marvels-agents-of-shield.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/76663/3330523-marvels-agents-of-shield.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/76663/3330523-marvels-agents-of-shield.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/76663/3330523-marvels-agents-of-shield.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/76663/3330523-marvels-agents-of-shield.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/76663/3330523-marvels-agents-of-shield.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/76663/3330523-marvels-agents-of-shield.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/76663/3330523-marvels-agents-of-shield.jpg","image_tags":"All Images"},"location_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-57225/","id":57225,"name":"Manhattan","site_detail_url":"https://comicvine.gamespot.com/manhattan/4020-57225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-56052/","id":56052,"name":"Paris","site_detail_url":"https://comicvine.gamespot.com/paris/4020-56052/"}],"name":"Pilot","object_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-50737/","id":50737,"name":"Captain America's Shield","site_detail_url":"https://comicvine.gamespot.com/captain-americas-shield/4055-50737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-57296/","id":57296,"name":"Chitauri Gun","site_detail_url":"https://comicvine.gamespot.com/chitauri-gun/4055-57296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-57416/","id":57416,"name":"Iron Man Armor Mk. VI","site_detail_url":"https://comicvine.gamespot.com/iron-man-armor-mk-vi/4055-57416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40971/","id":40971,"name":"Mjolnir","site_detail_url":"https://comicvine.gamespot.com/mjolnir/4055-40971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-55891/","id":55891,"name":"S.H.I.E.L.D. Flying Car","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-flying-car/4055-55891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40700/","id":40700,"name":"S.H.I.E.L.D. Helicarrier","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-helicarrier/4055-40700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-55976/","id":55976,"name":"Super Soldier Serum","site_detail_url":"https://comicvine.gamespot.com/super-soldier-serum/4055-55976/"}],"series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-1/","id":1,"name":"Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d/4075-1/"},"site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-101-pilot/4070-1/","story_arc_credits":[],"team_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3775/","id":3775,"name":"S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/shield/4060-3775/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/episode-details/episode-4070-15.json b/samples/api-data/episode-details/episode-4070-15.json new file mode 100644 index 0000000..017ea2c --- /dev/null +++ b/samples/api-data/episode-details/episode-4070-15.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"air_date":"2012-11-14","aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-15/","character_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28702/","id":28702,"name":"Ace","site_detail_url":"https://comicvine.gamespot.com/ace/4005-28702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1689/","id":1689,"name":"Black Canary","site_detail_url":"https://comicvine.gamespot.com/black-canary/4005-1689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2541/","id":2541,"name":"Felicity Smoak","site_detail_url":"https://comicvine.gamespot.com/felicity-smoak/4005-2541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5936/","id":5936,"name":"Green Arrow","site_detail_url":"https://comicvine.gamespot.com/green-arrow/4005-5936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48110/","id":48110,"name":"Jack","site_detail_url":"https://comicvine.gamespot.com/jack/4005-48110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86315/","id":86315,"name":"John Diggle","site_detail_url":"https://comicvine.gamespot.com/john-diggle/4005-86315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10451/","id":10451,"name":"John Stewart","site_detail_url":"https://comicvine.gamespot.com/john-stewart/4005-10451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19126/","id":19126,"name":"King","site_detail_url":"https://comicvine.gamespot.com/king/4005-19126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86071/","id":86071,"name":"Lucas Hilton","site_detail_url":"https://comicvine.gamespot.com/lucas-hilton/4005-86071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73010/","id":73010,"name":"Moira Queen","site_detail_url":"https://comicvine.gamespot.com/moira-queen/4005-73010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22284/","id":22284,"name":"Queen","site_detail_url":"https://comicvine.gamespot.com/queen/4005-22284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73011/","id":73011,"name":"Robert Queen","site_detail_url":"https://comicvine.gamespot.com/robert-queen/4005-73011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86000/","id":86000,"name":"Thea Queen","site_detail_url":"https://comicvine.gamespot.com/thea-queen/4005-86000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89350/","id":89350,"name":"Tommy Merlyn","site_detail_url":"https://comicvine.gamespot.com/tommy-merlyn/4005-89350/"}],"character_died_in":[],"concept_credits":[],"date_added":"2013-09-24 12:45:36","date_last_updated":"2016-02-14 00:37:56","deck":"There's a group of bank robbers in town. Turns out, it's the Royal Flush Gang!","description":"

    When the Royal Flush Gang robs a bank, Dig urges Oliver to deviate from his father's list and investigate. The connection to this hand he's dealt is personal.

    ","episode_number":"106","first_appearance_characters":null,"first_appearance_concepts":null,"first_appearance_locations":null,"first_appearance_objects":null,"first_appearance_storyarcs":null,"first_appearance_teams":null,"has_staff_review":false,"id":15,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/3332089-66966jpg-5a7de8.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/3332089-66966jpg-5a7de8.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/3332089-66966jpg-5a7de8.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/3332089-66966jpg-5a7de8.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/3332089-66966jpg-5a7de8.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/3332089-66966jpg-5a7de8.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/3332089-66966jpg-5a7de8.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/3332089-66966jpg-5a7de8.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/3332089-66966jpg-5a7de8.jpg","image_tags":"All Images"},"location_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-47878/","id":47878,"name":"Star City","site_detail_url":"https://comicvine.gamespot.com/star-city/4020-47878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-60608/","id":60608,"name":"Starfish Island","site_detail_url":"https://comicvine.gamespot.com/starfish-island/4020-60608/"}],"name":"Legacies","object_credits":[],"series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"},"site_detail_url":"https://comicvine.gamespot.com/arrow-106-legacies/4070-15/","story_arc_credits":[],"team_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6905/","id":6905,"name":"Royal Flush Gang","site_detail_url":"https://comicvine.gamespot.com/royal-flush-gang/4060-6905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-60986/","id":60986,"name":"Team Arrow","site_detail_url":"https://comicvine.gamespot.com/team-arrow/4060-60986/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/episode-details/episode-4070-29962.json b/samples/api-data/episode-details/episode-4070-29962.json new file mode 100644 index 0000000..581f035 --- /dev/null +++ b/samples/api-data/episode-details/episode-4070-29962.json @@ -0,0 +1,186 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "air_date": "2019-05-13", + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/episode/4070-29962/", + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71568/", + "id": 71568, + "name": "Bethany Snow", + "site_detail_url": "https://comicvine.gamespot.com/bethany-snow/4005-71568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150865/", + "id": 150865, + "name": "Black Siren", + "site_detail_url": "https://comicvine.gamespot.com/black-siren/4005-150865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23535/", + "id": 23535, + "name": "Bronze Tiger", + "site_detail_url": "https://comicvine.gamespot.com/bronze-tiger/4005-23535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14257/", + "id": 14257, + "name": "Connor Hawke", + "site_detail_url": "https://comicvine.gamespot.com/connor-hawke/4005-14257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94264/", + "id": 94264, + "name": "Dinah Drake", + "site_detail_url": "https://comicvine.gamespot.com/dinah-drake/4005-94264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87910/", + "id": 87910, + "name": "Emiko Queen", + "site_detail_url": "https://comicvine.gamespot.com/emiko-queen/4005-87910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2541/", + "id": 2541, + "name": "Felicity Smoak", + "site_detail_url": "https://comicvine.gamespot.com/felicity-smoak/4005-2541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5936/", + "id": 5936, + "name": "Green Arrow", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow/4005-5936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86315/", + "id": 86315, + "name": "John Diggle", + "site_detail_url": "https://comicvine.gamespot.com/john-diggle/4005-86315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72170/", + "id": 72170, + "name": "Mia Dearden", + "site_detail_url": "https://comicvine.gamespot.com/mia-dearden/4005-72170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19179/", + "id": 19179, + "name": "Mr. Terrific", + "site_detail_url": "https://comicvine.gamespot.com/mr-terrific/4005-19179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3404/", + "id": 3404, + "name": "Roy Harper", + "site_detail_url": "https://comicvine.gamespot.com/roy-harper/4005-3404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31018/", + "id": 31018, + "name": "The Monitor", + "site_detail_url": "https://comicvine.gamespot.com/the-monitor/4005-31018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131471/", + "id": 131471, + "name": "Virgil", + "site_detail_url": "https://comicvine.gamespot.com/virgil/4005-131471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43656/", + "id": 43656, + "name": "Wild Dog", + "site_detail_url": "https://comicvine.gamespot.com/wild-dog/4005-43656/" + } + ], + "character_died_in": [], + "concept_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-55822/", + "id": 55822, + "name": "Dystopia", + "site_detail_url": "https://comicvine.gamespot.com/dystopia/4015-55822/" + } + ], + "date_added": "2019-05-13 20:49:34", + "date_last_updated": "2019-05-13 20:53:23", + "deck": null, + "description": "

    The battle between Oliver and Emiko comes to a boiling point which brings back some familiar faces and leaves others in dire jeopardy.

    ", + "episode_number": "722", + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 29962, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/original/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/11131/111313070/6929380-mv5bndc0mdm0ndytnwixoc00mzy3lwe0m2itmtfjmjgxodqxyzkwxkeyxkfqcgdeqxvynzkzmzeymjy%40__v1_sy1000_cr0%2C0%2C1560%2C1000_al_.jpg", + "image_tags": "All Images" + }, + "location_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-47878/", + "id": 47878, + "name": "Star City", + "site_detail_url": "https://comicvine.gamespot.com/star-city/4020-47878/" + } + ], + "name": "You Have Saved This City ", + "object_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-55833/", + "id": 55833, + "name": "Trick Arrow", + "site_detail_url": "https://comicvine.gamespot.com/trick-arrow/4055-55833/" + } + ], + "series": { + "api_detail_url": "https://comicvine.gamespot.com/api/series/4075-3/", + "id": 3, + "name": "Arrow", + "site_detail_url": "https://comicvine.gamespot.com/arrow/4075-3/" + }, + "site_detail_url": "https://comicvine.gamespot.com/arrow-722-you-have-saved-this-city/4070-29962/", + "story_arc_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40764/", + "id": 40764, + "name": "Crisis on Infinite Earths", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths/4045-40764/" + } + ], + "team_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62632/", + "id": 62632, + "name": "Ninth Circle", + "site_detail_url": "https://comicvine.gamespot.com/ninth-circle/4060-62632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60986/", + "id": 60986, + "name": "Team Arrow", + "site_detail_url": "https://comicvine.gamespot.com/team-arrow/4060-60986/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/episode-details/episode-4070-57.json b/samples/api-data/episode-details/episode-4070-57.json new file mode 100644 index 0000000..cd545c9 --- /dev/null +++ b/samples/api-data/episode-details/episode-4070-57.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"air_date":"2013-02-13","aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-57/","character_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41230/","id":41230,"name":"Accomplished Perfect Physician","site_detail_url":"https://comicvine.gamespot.com/accomplished-perfect-physician/4005-41230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1689/","id":1689,"name":"Black Canary","site_detail_url":"https://comicvine.gamespot.com/black-canary/4005-1689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3588/","id":3588,"name":"Deathstroke","site_detail_url":"https://comicvine.gamespot.com/deathstroke/4005-3588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2225/","id":2225,"name":"Eddie Fyers","site_detail_url":"https://comicvine.gamespot.com/eddie-fyers/4005-2225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2541/","id":2541,"name":"Felicity Smoak","site_detail_url":"https://comicvine.gamespot.com/felicity-smoak/4005-2541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5936/","id":5936,"name":"Green Arrow","site_detail_url":"https://comicvine.gamespot.com/green-arrow/4005-5936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86315/","id":86315,"name":"John Diggle","site_detail_url":"https://comicvine.gamespot.com/john-diggle/4005-86315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10451/","id":10451,"name":"John Stewart","site_detail_url":"https://comicvine.gamespot.com/john-stewart/4005-10451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73010/","id":73010,"name":"Moira Queen","site_detail_url":"https://comicvine.gamespot.com/moira-queen/4005-73010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87792/","id":87792,"name":"Quentin Lance","site_detail_url":"https://comicvine.gamespot.com/quentin-lance/4005-87792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14133/","id":14133,"name":"Shado","site_detail_url":"https://comicvine.gamespot.com/shado/4005-14133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86000/","id":86000,"name":"Thea Queen","site_detail_url":"https://comicvine.gamespot.com/thea-queen/4005-86000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9933/","id":9933,"name":"Wintergreen","site_detail_url":"https://comicvine.gamespot.com/wintergreen/4005-9933/"}],"character_died_in":[],"concept_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56207/","id":56207,"name":"Flashback ","site_detail_url":"https://comicvine.gamespot.com/flashback/4015-56207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-57632/","id":57632,"name":"Henchmen","site_detail_url":"https://comicvine.gamespot.com/henchmen/4015-57632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-57333/","id":57333,"name":"Secret Headquarters","site_detail_url":"https://comicvine.gamespot.com/secret-headquarters/4015-57333/"}],"date_added":"2013-09-24 13:47:47","date_last_updated":"2016-02-14 04:04:10","deck":null,"description":"

    MANU BENNETT (“SPARTACUS”) GUEST STARS AS SLADE WILSON — After Oliver is shot, he turns to a surprising person for help – Felicity. Diggle is stunned when he sees Felicity walk through the front door of the lair dragging a dying Oliver behind her, and the two team up to save Oliver’s life. As Oliver hovers between life and death, he flashes back to a seminal event on the island – a daring escape attempt with his new friend Slade Wilson (guest star Manu Bennett). Katie Cassidy, Willa Holland, Paul Blackthorne and Susanna Thompson also star. John Behring directed the episode with story by Greg Berlanti & Andrew Kreisberg and teleplay by Andrew Kreisberg and Marc Guggenheim.

    ","episode_number":"114","first_appearance_characters":null,"first_appearance_concepts":null,"first_appearance_locations":null,"first_appearance_objects":null,"first_appearance_storyarcs":null,"first_appearance_teams":null,"has_staff_review":false,"id":57,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332196-3037176343-Olive.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332196-3037176343-Olive.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332196-3037176343-Olive.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332196-3037176343-Olive.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332196-3037176343-Olive.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332196-3037176343-Olive.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332196-3037176343-Olive.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332196-3037176343-Olive.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332196-3037176343-Olive.png","image_tags":"All Images"},"location_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-47878/","id":47878,"name":"Star City","site_detail_url":"https://comicvine.gamespot.com/star-city/4020-47878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-60608/","id":60608,"name":"Starfish Island","site_detail_url":"https://comicvine.gamespot.com/starfish-island/4020-60608/"}],"name":"The Odyssey","object_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-58158/","id":58158,"name":"Deathstroke's Mask","site_detail_url":"https://comicvine.gamespot.com/deathstroke-s-mask/4055-58158/"}],"series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"},"site_detail_url":"https://comicvine.gamespot.com/arrow-114-the-odyssey/4070-57/","story_arc_credits":[],"team_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57748/","id":57748,"name":"Queen Industries","site_detail_url":"https://comicvine.gamespot.com/queen-industries/4060-57748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-60986/","id":60986,"name":"Team Arrow","site_detail_url":"https://comicvine.gamespot.com/team-arrow/4060-60986/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/episode-details/episode-4070-93.json b/samples/api-data/episode-details/episode-4070-93.json new file mode 100644 index 0000000..6a42c73 --- /dev/null +++ b/samples/api-data/episode-details/episode-4070-93.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"air_date":null,"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-93/","character_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18419/","id":18419,"name":"Mulder","site_detail_url":"https://comicvine.gamespot.com/mulder/4005-18419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18420/","id":18420,"name":"Scully","site_detail_url":"https://comicvine.gamespot.com/scully/4005-18420/"}],"character_died_in":[],"concept_credits":[],"date_added":"2013-09-24 14:28:43","date_last_updated":"2013-10-05 18:24:04","deck":"The employees of a chicken processing factory exhibit increasingly bizarre symptoms and behaviour.","description":null,"episode_number":"224","first_appearance_characters":null,"first_appearance_concepts":null,"first_appearance_locations":null,"first_appearance_objects":null,"first_appearance_storyarcs":null,"first_appearance_teams":null,"has_staff_review":false,"id":93,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332298-screenshot01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332298-screenshot01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332298-screenshot01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332298-screenshot01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332298-screenshot01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332298-screenshot01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332298-screenshot01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332298-screenshot01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332298-screenshot01.jpg","image_tags":"All Images"},"location_credits":[],"name":"Our Town","object_credits":[],"series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"},"site_detail_url":"https://comicvine.gamespot.com/the-x-files-224-our-town/4070-93/","story_arc_credits":[],"team_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-55443/","id":55443,"name":"Federal Bureau of Investigation","site_detail_url":"https://comicvine.gamespot.com/federal-bureau-of-investigation/4060-55443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-46347/","id":46347,"name":"X-Files","site_detail_url":"https://comicvine.gamespot.com/x-files/4060-46347/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/episode-details/episode-4070-95.json b/samples/api-data/episode-details/episode-4070-95.json new file mode 100644 index 0000000..929ce2c --- /dev/null +++ b/samples/api-data/episode-details/episode-4070-95.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"air_date":"1992-09-16","aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-95/","character_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1699/","id":1699,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4005-1699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32398/","id":32398,"name":"Hamilton Hill","site_detail_url":"https://comicvine.gamespot.com/hamilton-hill/4005-32398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3727/","id":3727,"name":"James Gordon","site_detail_url":"https://comicvine.gamespot.com/james-gordon/4005-3727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1702/","id":1702,"name":"Joker","site_detail_url":"https://comicvine.gamespot.com/joker/4005-1702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51608/","id":51608,"name":"Summer Gleeson","site_detail_url":"https://comicvine.gamespot.com/summer-gleeson/4005-51608/"}],"character_died_in":[],"concept_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55886/","id":55886,"name":"Deathtrap","site_detail_url":"https://comicvine.gamespot.com/deathtrap/4015-55886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-57333/","id":57333,"name":"Secret Headquarters","site_detail_url":"https://comicvine.gamespot.com/secret-headquarters/4015-57333/"}],"date_added":"2013-09-24 14:30:48","date_last_updated":"2014-12-16 00:54:15","deck":null,"description":"

    Hamilton Hill sets up a party for his under-appreciated son Hamilton Hill, Jr. while trying to raise measures towards re-election. Bruce Wayne makes a peaceful public relations visit only to sense a chill from the party clown in the mansion he may suspect to be the Joker.

    ","episode_number":"109","first_appearance_characters":null,"first_appearance_concepts":null,"first_appearance_locations":null,"first_appearance_objects":null,"first_appearance_storyarcs":null,"first_appearance_teams":null,"has_staff_review":false,"id":95,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","image_tags":"All Images"},"location_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-23611/","id":23611,"name":"Gotham City","site_detail_url":"https://comicvine.gamespot.com/gotham-city/4020-23611/"}],"name":"Be a Clown","object_credits":[],"series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"},"site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-109-be-a-clown/4070-95/","story_arc_credits":[],"team_credits":[]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/episode-list-item/episodes.json b/samples/api-data/episode-list-item/episodes.json new file mode 100644 index 0000000..273aed1 --- /dev/null +++ b/samples/api-data/episode-list-item/episodes.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":38620,"status_code":1,"results":[{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1/","air_date":"2013-09-24","date_added":"2013-09-23 15:21:46","date_last_updated":"2014-12-14 07:26:58","deck":null,"description":"

    After the events of The Avengers, S.H.I.E.L.D. Agent Phil Coulson assembles a small team of agents to investigate a mysterious group called the Rising Tide. In doing so, they encounter Mike Peterson (J. August Richards), an ordinary man who has acquired superhuman powers.

    ","has_staff_review":{"api_detail_url":"https://comicvine.gamespot.com/api/review/1900-2214/","id":2214,"name":"Marvel's Agents of S.H.I.E.L.D. - Episode 101 'Pilot' Review","site_detail_url":"https://comicvine.gamespot.com/reviews/marvel-s-agents-of-s-h-i-e-l-d-episode-101-pilot/1900-2214/"},"id":1,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/76663/3330523-marvels-agents-of-shield.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/76663/3330523-marvels-agents-of-shield.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/76663/3330523-marvels-agents-of-shield.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/76663/3330523-marvels-agents-of-shield.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/76663/3330523-marvels-agents-of-shield.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/76663/3330523-marvels-agents-of-shield.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/76663/3330523-marvels-agents-of-shield.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/76663/3330523-marvels-agents-of-shield.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/76663/3330523-marvels-agents-of-shield.jpg","image_tags":"All Images"},"episode_number":"101","name":"Pilot","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-101-pilot/4070-1/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-1/","id":1,"name":"Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d/4075-1/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2/","air_date":"2013-10-01","date_added":"2013-09-23 15:23:16","date_last_updated":"2014-12-14 07:27:45","deck":null,"description":"

    While in Peru on a case with the team, Agent Coulson runs into someone from his past.

    ","has_staff_review":{"api_detail_url":"https://comicvine.gamespot.com/api/review/1900-2242/","id":2242,"name":"Agents of S.H.I.E.L.D. - Episode 102 '0-8-4' Review","site_detail_url":"https://comicvine.gamespot.com/reviews/agents-of-s-h-i-e-l-d-episode-102-0-8-4/1900-2242/"},"id":2,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/3346846-coulson.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/3346846-coulson.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/3346846-coulson.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/3346846-coulson.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/3346846-coulson.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/3346846-coulson.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/3346846-coulson.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/3346846-coulson.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/3346846-coulson.jpg","image_tags":"All Images"},"episode_number":"102","name":"0–8–4","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-102-0-8-4/4070-2/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-1/","id":1,"name":"Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d/4075-1/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3/","air_date":"2013-10-08","date_added":"2013-09-23 15:24:35","date_last_updated":"2014-12-14 07:28:12","deck":null,"description":"

    The team must investigate the kidnapping of a scientist (Ian Hart), relying on Skye when the plan goes awry.

    ","has_staff_review":{"api_detail_url":"https://comicvine.gamespot.com/api/review/1900-2270/","id":2270,"name":"Agents of S.H.I.E.L.D. - Episode 103 'The Asset' Review","site_detail_url":"https://comicvine.gamespot.com/reviews/agents-of-s-h-i-e-l-d-episode-103-the-asset/1900-2270/"},"id":3,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/3363120-asset231-710x400.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/3363120-asset231-710x400.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/3363120-asset231-710x400.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/3363120-asset231-710x400.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/3363120-asset231-710x400.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/3363120-asset231-710x400.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/3363120-asset231-710x400.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/3363120-asset231-710x400.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/3363120-asset231-710x400.jpg","image_tags":"All Images"},"episode_number":"103","name":"The Asset","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-103-the-asset/4070-3/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-1/","id":1,"name":"Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d/4075-1/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4/","air_date":"1983-10-03","date_added":"2013-09-24 12:25:51","date_last_updated":"2013-09-30 14:25:15","deck":"Bananaman encounters an enemy for the first time.","description":null,"has_staff_review":false,"id":4,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332046-s1e1.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332046-s1e1.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332046-s1e1.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332046-s1e1.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332046-s1e1.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332046-s1e1.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332046-s1e1.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332046-s1e1.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332046-s1e1.png","image_tags":"All Images"},"episode_number":"101","name":"Bananaman Meets Doctor Gloom","site_detail_url":"https://comicvine.gamespot.com/bananaman-101-bananaman-meets-doctor-gloom/4070-4/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-4/","id":4,"name":"Bananaman","site_detail_url":"https://comicvine.gamespot.com/bananaman/4075-4/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5/","air_date":"1993-09-10","date_added":"2013-09-24 12:32:28","date_last_updated":"2016-01-28 09:49:47","deck":"Agent Dana Scully is assigned to the X-Files in order to keep tabs on fellow FBI agent Fox Mulder.","description":"

    Plot Summary

    In this pilot episode, Mulder and Scully meet for the first time, when Scully is officially assigned to the X Files. The pair embark on their first case together, investigating a series of deaths in Oregon in which victims are found with strange marks on their bodies.

    ","has_staff_review":false,"id":5,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332058-pilot.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332058-pilot.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332058-pilot.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332058-pilot.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332058-pilot.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332058-pilot.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332058-pilot.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332058-pilot.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332058-pilot.jpg","image_tags":"All Images"},"episode_number":"100","name":"Pilot","site_detail_url":"https://comicvine.gamespot.com/the-x-files-100-pilot/4070-5/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-6/","air_date":"2008-09-08","date_added":"2013-09-24 12:33:09","date_last_updated":"2013-09-24 16:23:44","deck":null,"description":"

    One year ago, Jean Grey and Professor Xavier vanished after a mysterious explosion destroyed the X-Mansion. Now the X-Men have dispersed with only Wolverine and Beast left. And now, with the increasing mutant-human hostility, it's time to make a decision, do they bring back the X-Men?

    ","has_staff_review":false,"id":6,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/83918/3332059-hindsight%2C_part_one_wxm.jpg","image_tags":"All Images"},"episode_number":"101","name":"Hindsight: Part One","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-101-hindsight-part-one/4070-6/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-6/","id":6,"name":"Wolverine and the X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-xmen/4075-6/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-7/","air_date":"1993-09-17","date_added":"2013-09-24 12:34:46","date_last_updated":"2016-01-29 09:55:01","deck":"Mulder and Scully investigate strange goings on at an air force base.","description":"

    Plot Summary

    Acting on a tip off from one of Mulder's informants - an enigmatic man code named Deep Throat - the pair travel to Idaho, searching for a test pilot who has apparently suffered a complete breakdown. But as they get closer to the truth, they find themselves targeted by shady government agents.

    ","has_staff_review":false,"id":7,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332060-s1e1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332060-s1e1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332060-s1e1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332060-s1e1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332060-s1e1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332060-s1e1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332060-s1e1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332060-s1e1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332060-s1e1.jpg","image_tags":"All Images"},"episode_number":"101","name":"Deep Throat","site_detail_url":"https://comicvine.gamespot.com/the-x-files-101-deep-throat/4070-7/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-8/","air_date":"1993-09-24","date_added":"2013-09-24 12:37:57","date_last_updated":"2013-09-25 21:54:41","deck":"The first of two episodes focusing on Tooms, a strange creature masquerading as a human being who can stretch his body beyond what is normally possible.","description":null,"has_staff_review":false,"id":8,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332065-tooms1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332065-tooms1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332065-tooms1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332065-tooms1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332065-tooms1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332065-tooms1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332065-tooms1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332065-tooms1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332065-tooms1.jpg","image_tags":"All Images"},"episode_number":"102","name":"Squeeze","site_detail_url":"https://comicvine.gamespot.com/the-x-files-102-squeeze/4070-8/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-9/","air_date":"1993-10-01","date_added":"2013-09-24 12:39:26","date_last_updated":"2013-09-25 21:55:37","deck":"A young girl is reported to have been abducted by aliens.","description":null,"has_staff_review":false,"id":9,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332083-conduit.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332083-conduit.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332083-conduit.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332083-conduit.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332083-conduit.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332083-conduit.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332083-conduit.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332083-conduit.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332083-conduit.jpg","image_tags":"All Images"},"episode_number":"103","name":"Conduit","site_detail_url":"https://comicvine.gamespot.com/the-x-files-103-conduit/4070-9/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-10/","air_date":"1967-09-09","date_added":"2013-09-24 12:40:11","date_last_updated":"2015-07-24 04:23:47","deck":null,"description":"

    Reports of strange lights in the wood leads Peter Parker and Betty Brant to investigate. Turns out Doc Ock has a secret laboratory in a cave.

    ","has_staff_review":false,"id":10,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111121983/4698601-ep%201.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111121983/4698601-ep%201.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111121983/4698601-ep%201.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111121983/4698601-ep%201.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111121983/4698601-ep%201.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111121983/4698601-ep%201.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111121983/4698601-ep%201.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111121983/4698601-ep%201.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111121983/4698601-ep%201.png","image_tags":"All Images"},"episode_number":"101","name":"The Power of Dr. Octopus","site_detail_url":"https://comicvine.gamespot.com/spider-man-101-the-power-of-dr-octopus/4070-10/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-9/","id":9,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4075-9/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-11/","air_date":null,"date_added":"2013-09-24 12:41:13","date_last_updated":"2013-10-05 17:01:31","deck":"Mulder and Scully investigate sightings of a strange, feral woman in Atlantic City.","description":null,"has_staff_review":false,"id":11,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332085-jersey.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332085-jersey.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332085-jersey.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332085-jersey.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332085-jersey.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332085-jersey.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332085-jersey.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332085-jersey.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332085-jersey.png","image_tags":"All Images"},"episode_number":"104","name":"The Jersey Devil","site_detail_url":"https://comicvine.gamespot.com/the-x-files-104-the-jersey-devil/4070-11/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-12/","air_date":"2012-10-10","date_added":"2013-09-24 12:42:56","date_last_updated":"2016-02-13 16:29:35","deck":null,"description":"

    FROM DC COMICS ENTERTAINMENT AND UBER PRODUCERS GREG BERLANTI, MARC GUGGENHEIM AND ANDREW KREISBERG COMES A STORY OF A MAN TRYING NOT ONLY TO SAVE HIS CITY, BUT TO SAVE HIMSELF — After a violent shipwreck, billionaire playboy Oliver Queen (Stephen Amell) was missing and presumed dead for five years before being discovered alive on a remote island in the Pacific. Back in Starling City, Oliver slowly reconnects with those closest to him, his devoted mother Moira (Susanna Thompson), beloved sister Thea (Willa Holland), and best friend Tommy Merlyn (Colin Donnell), but struggles with his ex-girlfriend Dinah \"Laurel\" Lance (Katie Cassidy), who blames him for her sister's death. Oliver has brought back many new skills from his time on the island and despite the watchful eye of his new bodyguard John Diggle (David Ramsey), Oliver manages to secretly create the persona of Arrow - a vigilante - to right the wrongs of his family and fight the ills of society. As Arrow, Oliver will atone for the past sins of his family while he searches for the personal redemption he needs. Paul Blackthorne also stars. David Nutter directed the episode with story by Greg Berlanti & Marc Guggenheim and teleplay by Andrew Kreisberg & Marc Guggenheim.

    ","has_staff_review":false,"id":12,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332086-2901917691-Olive.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332086-2901917691-Olive.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332086-2901917691-Olive.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332086-2901917691-Olive.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332086-2901917691-Olive.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332086-2901917691-Olive.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332086-2901917691-Olive.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332086-2901917691-Olive.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332086-2901917691-Olive.png","image_tags":"All Images"},"episode_number":"101","name":"Pilot","site_detail_url":"https://comicvine.gamespot.com/arrow-101-pilot/4070-12/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-13/","air_date":null,"date_added":"2013-09-24 12:43:23","date_last_updated":"2013-10-05 17:02:19","deck":"When two men are found dead in suspicious circumstances, two mysterious government agents call on Mulder and Scully for help.","description":null,"has_staff_review":false,"id":13,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332088-shadows.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332088-shadows.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332088-shadows.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332088-shadows.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332088-shadows.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332088-shadows.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332088-shadows.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332088-shadows.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332088-shadows.jpg","image_tags":"All Images"},"episode_number":"105","name":"Shadows","site_detail_url":"https://comicvine.gamespot.com/the-x-files-105-shadows/4070-13/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-14/","air_date":null,"date_added":"2013-09-24 12:45:05","date_last_updated":"2013-10-05 17:03:21","deck":"A rich computer programmer fears that his invention may have taken on a life of its own.","description":null,"has_staff_review":false,"id":14,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332090-ghpst.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332090-ghpst.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332090-ghpst.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332090-ghpst.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332090-ghpst.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332090-ghpst.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332090-ghpst.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332090-ghpst.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332090-ghpst.jpg","image_tags":"All Images,X Files"},"episode_number":"106","name":"Ghost in the Machine","site_detail_url":"https://comicvine.gamespot.com/the-x-files-106-ghost-in-the-machine/4070-14/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-15/","air_date":"2012-11-14","date_added":"2013-09-24 12:45:36","date_last_updated":"2016-02-14 00:37:56","deck":"There's a group of bank robbers in town. Turns out, it's the Royal Flush Gang!","description":"

    When the Royal Flush Gang robs a bank, Dig urges Oliver to deviate from his father's list and investigate. The connection to this hand he's dealt is personal.

    ","has_staff_review":false,"id":15,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/3332089-66966jpg-5a7de8.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/3332089-66966jpg-5a7de8.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/3332089-66966jpg-5a7de8.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/3332089-66966jpg-5a7de8.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/3332089-66966jpg-5a7de8.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/3332089-66966jpg-5a7de8.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/3332089-66966jpg-5a7de8.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/3332089-66966jpg-5a7de8.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/3332089-66966jpg-5a7de8.jpg","image_tags":"All Images"},"episode_number":"106","name":"Legacies","site_detail_url":"https://comicvine.gamespot.com/arrow-106-legacies/4070-15/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-16/","air_date":null,"date_added":"2013-09-24 12:47:02","date_last_updated":"2013-10-05 18:06:37","deck":"When a team of scientists at an Arctic research facility disappear, Mulder and Scully set out to find answers.","description":null,"has_staff_review":false,"id":16,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332092-ice.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332092-ice.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332092-ice.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332092-ice.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332092-ice.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332092-ice.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332092-ice.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332092-ice.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332092-ice.jpg","image_tags":"All Images"},"episode_number":"107","name":"Ice","site_detail_url":"https://comicvine.gamespot.com/the-x-files-107-ice/4070-16/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-17/","air_date":null,"date_added":"2013-09-24 12:51:04","date_last_updated":"2013-10-05 17:05:16","deck":"A NASA space shuttle is allegedly tampered with, leading to accusations of sabotage.","description":null,"has_staff_review":false,"id":17,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332102-space.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332102-space.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332102-space.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332102-space.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332102-space.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332102-space.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332102-space.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332102-space.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332102-space.jpg","image_tags":"All Images"},"episode_number":"108","name":"Space","site_detail_url":"https://comicvine.gamespot.com/the-x-files-108-space/4070-17/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-18/","air_date":"2012-10-17","date_added":"2013-09-24 12:51:46","date_last_updated":"2016-02-13 16:56:08","deck":null,"description":"

    KELLY HU GUEST STARS AS DC COMICS VILLAIN CHINA WHITE — Oliver heads to the courthouse to get his death certificate repealed and is pleasantly surprised to run into Laurel, who is there prosecuting Martin Somers (guest star Ty Olsson), a criminal with ties to the Chinese Triad. Oliver recognizes Martin's name from his father's book and sets his sights on taking him down. Martin orders the Triad to \"take care of\" Laurel so they send their top mercenary – China White (Hu) – after her, an act that culminates in a battle between Arrow and China White. Meanwhile, Moira and Walter (guest star Colin Salmon) ask Oliver to take over the company. Colin Donnell, Willa Holland, David Ramsey and Paul Blackthorne also star. David Barrett directed the episode with story by Greg Berlanti & Marc Guggenheim and written by Andrew Kreisberg & Marc Guggenheim.

    ","has_staff_review":false,"id":18,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332104-9074900156-Arrow.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332104-9074900156-Arrow.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332104-9074900156-Arrow.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332104-9074900156-Arrow.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332104-9074900156-Arrow.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332104-9074900156-Arrow.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332104-9074900156-Arrow.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332104-9074900156-Arrow.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332104-9074900156-Arrow.png","image_tags":"All Images"},"episode_number":"102","name":"Honor Thy Father","site_detail_url":"https://comicvine.gamespot.com/arrow-102-honor-thy-father/4070-18/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19/","air_date":"2012-11-28","date_added":"2013-09-24 12:52:04","date_last_updated":"2016-02-14 01:12:48","deck":null,"description":"

    Teleplay by Geoff Johns and Marc Guggenheim. Story by Andrew Kreisberg.

    A mob boss' daughter might be the soul mate with whom Oliver can be himself. But she's not who she appears to be either. As the Huntress, she's got a deadly family agenda.

    ","has_staff_review":false,"id":19,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/3332103-arrowmuse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/3332103-arrowmuse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/3332103-arrowmuse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/3332103-arrowmuse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/3332103-arrowmuse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/3332103-arrowmuse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/3332103-arrowmuse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/3332103-arrowmuse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/3332103-arrowmuse.jpg","image_tags":"All Images"},"episode_number":"107","name":"Muse of Fire","site_detail_url":"https://comicvine.gamespot.com/arrow-107-muse-of-fire/4070-19/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20/","air_date":null,"date_added":"2013-09-24 12:54:19","date_last_updated":"2013-10-05 17:06:08","deck":"The first episode featuring regular character and alien abductee Max Fenig. Deep Throat sends Mulder to find a UFO.","description":null,"has_staff_review":false,"id":20,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332105-fallen%20angel.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332105-fallen%20angel.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332105-fallen%20angel.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332105-fallen%20angel.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332105-fallen%20angel.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332105-fallen%20angel.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332105-fallen%20angel.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332105-fallen%20angel.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332105-fallen%20angel.jpg","image_tags":"All Images"},"episode_number":"109","name":"Fallen Angel","site_detail_url":"https://comicvine.gamespot.com/the-x-files-109-fallen-angel/4070-20/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-21/","air_date":null,"date_added":"2013-09-24 12:55:45","date_last_updated":"2013-10-05 17:06:56","deck":"Two men are found exsanguinated by their identical daughters at the exact same time, miles apart.","description":null,"has_staff_review":false,"id":21,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332108-eve.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332108-eve.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332108-eve.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332108-eve.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332108-eve.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332108-eve.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332108-eve.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332108-eve.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332108-eve.jpg","image_tags":"All Images"},"episode_number":"110","name":"Eve","site_detail_url":"https://comicvine.gamespot.com/the-x-files-110-eve/4070-21/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-22/","air_date":null,"date_added":"2013-09-24 12:57:47","date_last_updated":"2013-10-05 17:07:53","deck":"An old flame asks Mulder to investigate a series of suspicious deaths, in a case of possible spontaneous human combustion.","description":null,"has_staff_review":false,"id":22,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332111-fire.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332111-fire.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332111-fire.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332111-fire.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332111-fire.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332111-fire.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332111-fire.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332111-fire.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332111-fire.jpg","image_tags":"All Images"},"episode_number":"111","name":"Fire","site_detail_url":"https://comicvine.gamespot.com/the-x-files-111-fire/4070-22/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-23/","air_date":"1967-09-09","date_added":"2013-09-24 12:59:47","date_last_updated":"2015-07-20 13:04:46","deck":null,"description":"

    It's a really hot day but Doctor Smarter notices ice forming everywhere. It turns out there's an alien race called the Plutonians in town.

    ","has_staff_review":false,"id":23,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111121983/4698619-ep%202.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111121983/4698619-ep%202.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111121983/4698619-ep%202.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111121983/4698619-ep%202.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111121983/4698619-ep%202.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111121983/4698619-ep%202.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111121983/4698619-ep%202.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111121983/4698619-ep%202.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111121983/4698619-ep%202.png","image_tags":"All Images"},"episode_number":"102","name":"Sub-Zero for Spidey","site_detail_url":"https://comicvine.gamespot.com/spider-man-102-sub-zero-for-spidey/4070-23/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-9/","id":9,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4075-9/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-24/","air_date":null,"date_added":"2013-09-24 13:00:39","date_last_updated":"2013-10-05 17:09:05","deck":"A serial killer who claims to be psychic assists the pair with an investigation.","description":null,"has_staff_review":false,"id":24,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332116-beyond%20the%20sea.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332116-beyond%20the%20sea.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332116-beyond%20the%20sea.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332116-beyond%20the%20sea.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332116-beyond%20the%20sea.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332116-beyond%20the%20sea.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332116-beyond%20the%20sea.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332116-beyond%20the%20sea.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332116-beyond%20the%20sea.jpg","image_tags":"All Images"},"episode_number":"112","name":"Beyond the Sea","site_detail_url":"https://comicvine.gamespot.com/the-x-files-112-beyond-the-sea/4070-24/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25/","air_date":"2012-10-24","date_added":"2013-09-24 13:01:54","date_last_updated":"2016-02-13 17:43:01","deck":null,"description":"

    DC COMICS' VILLAIN DEADSHOT SETS HIS SIGHTS ON ARROW — Oliver is surprised when someone shoots and kills one of his targets. As his plan is to bring people to justice vs. outright killing them, Oliver doesn't appreciate the help and searches for the gunman. He soon learns that the man, Deadshot (guest star Michael Rowe), is taking out businessmen who are scheduled to bid at an auction on an energy company and Walter is one of the bidders. Realizing he can’t protect his family and stop Deadshot at the same time, Oliver enlists Detective Lance's help, but his plan has dire consequences. Meanwhile, Laurel and Tommy get caught in an awkward situation with Oliver. Willa Holland, David Ramsey and Susanna Thompson also star. Guy Bee directed the episode with story by Greg Berlanti & Andrew Kreisberg and teleplay by Marc Guggenheim & Andrew Kreisberg.

    ","has_staff_review":false,"id":25,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332110-1030504826-The_H.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332110-1030504826-The_H.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332110-1030504826-The_H.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332110-1030504826-The_H.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332110-1030504826-The_H.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332110-1030504826-The_H.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332110-1030504826-The_H.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332110-1030504826-The_H.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332110-1030504826-The_H.png","image_tags":"All Images"},"episode_number":"103","name":"Lone Gunman","site_detail_url":"https://comicvine.gamespot.com/arrow-103-lone-gunman/4070-25/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-26/","air_date":null,"date_added":"2013-09-24 13:02:31","date_last_updated":"2013-10-05 17:10:26","deck":"A series of sex related deaths lead Mulder and Scully to a religious cult.","description":null,"has_staff_review":false,"id":26,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332119-gender%20bender.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332119-gender%20bender.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332119-gender%20bender.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332119-gender%20bender.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332119-gender%20bender.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332119-gender%20bender.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332119-gender%20bender.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332119-gender%20bender.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332119-gender%20bender.jpg","image_tags":"All Images"},"episode_number":"113","name":"Gender Bender","site_detail_url":"https://comicvine.gamespot.com/the-x-files-113-gender-bender/4070-26/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-27/","air_date":null,"date_added":"2013-09-24 13:04:33","date_last_updated":"2013-10-05 17:18:42","deck":"A criminal finds himself in the body of the police officer who shot him.","description":null,"has_staff_review":false,"id":27,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332123-laz.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332123-laz.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332123-laz.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332123-laz.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332123-laz.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332123-laz.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332123-laz.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332123-laz.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332123-laz.jpg","image_tags":"All Images"},"episode_number":"114","name":"Lazarus","site_detail_url":"https://comicvine.gamespot.com/the-x-files-114-lazarus/4070-27/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-28/","air_date":"2012-10-31","date_added":"2013-09-24 13:05:58","date_last_updated":"2016-02-13 18:22:02","deck":null,"description":"

    ARROW RECRUITS LAUREL TO HELP WITH A CASE — Oliver still hasn't figured out how to get back in Laurel's good graces, but a late night bonding session with Thea gives him the inspiration he needs. Looking into a suspicious murder case, Oliver realizes an innocent man, Peter Declan (guest star Lane Edwards), was framed by one of the targets on his list. As Arrow, he asks Laurel to help prove Declan's innocence. Meanwhile, Walter (guest star Colin Salmon) asks one of his employees, Felicity Smoak (guest star Emily Rickards), to look into a $2.6 million withdrawal that Moira made without his knowledge. David Ramsey and Paul Blackthorne also star. Vince Misiano directed the episode written by Moira Kirland & Lana Cho.

    ","has_staff_review":false,"id":28,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332126-3379606007-Laure.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332126-3379606007-Laure.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332126-3379606007-Laure.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332126-3379606007-Laure.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332126-3379606007-Laure.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332126-3379606007-Laure.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332126-3379606007-Laure.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332126-3379606007-Laure.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332126-3379606007-Laure.png","image_tags":"All Images"},"episode_number":"104","name":"An Innocent Man","site_detail_url":"https://comicvine.gamespot.com/arrow-104-an-innocent-man/4070-28/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29/","air_date":null,"date_added":"2013-09-24 13:06:23","date_last_updated":"2013-10-05 17:19:52","deck":"Mulder suspects that a supposedly dead killer is still at large, and revisits his very first case.","description":null,"has_staff_review":false,"id":29,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332127-young.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332127-young.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332127-young.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332127-young.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332127-young.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332127-young.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332127-young.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332127-young.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332127-young.jpg","image_tags":"All Images"},"episode_number":"115","name":"Young at Heart","site_detail_url":"https://comicvine.gamespot.com/the-x-files-115-young-at-heart/4070-29/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-30/","air_date":null,"date_added":"2013-09-24 13:08:00","date_last_updated":"2013-10-05 17:21:01","deck":"Mulder turns to his friends The Lone Gunmen in order to get to the bottom of a possible UFO incident.","description":null,"has_staff_review":false,"id":30,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332131-ebe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332131-ebe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332131-ebe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332131-ebe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332131-ebe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332131-ebe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332131-ebe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332131-ebe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332131-ebe.jpg","image_tags":"All Images"},"episode_number":"116","name":"E.B.E.","site_detail_url":"https://comicvine.gamespot.com/the-x-files-116-e-b-e/4070-30/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-31/","air_date":"2012-11-07","date_added":"2013-09-24 13:09:15","date_last_updated":"2016-02-14 00:01:42","deck":null,"description":"

    DC COMICS' VILLAIN DEATHSTROKE APPEARS ON THE ISLAND WITH OLIVER — After Detective Lance arrests Oliver for murder, Oliver tells Moira the only lawyer he'll allow to represent him is Laurel. Laurel takes the case which puts her at odds with her father. Oliver offers to take a polygraph in front Detective Lance but things get tense when Lance asks him if anyone else was on the island with him. Oliver flashes back to when he got his first scar, courtesy of Deathstroke (guest star Jeffrey Robinson). Colin Donnell, David Ramsey and Willa Holland also star. Michael Shultz directed the episode written by Wendy Mericle & Ben Sokolowski.

    ","has_staff_review":false,"id":31,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332133-3734987152-Yao_F.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332133-3734987152-Yao_F.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332133-3734987152-Yao_F.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332133-3734987152-Yao_F.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332133-3734987152-Yao_F.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332133-3734987152-Yao_F.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332133-3734987152-Yao_F.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332133-3734987152-Yao_F.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332133-3734987152-Yao_F.png","image_tags":"All Images"},"episode_number":"105","name":"Damaged","site_detail_url":"https://comicvine.gamespot.com/arrow-105-damaged/4070-31/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-32/","air_date":null,"date_added":"2013-09-24 13:11:26","date_last_updated":"2013-10-05 17:22:23","deck":"A young boy and his supposed healing powers become the center of religious hysteria - and a murder scandal.","description":null,"has_staff_review":false,"id":32,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332136-miracel.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332136-miracel.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332136-miracel.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332136-miracel.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332136-miracel.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332136-miracel.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332136-miracel.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332136-miracel.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332136-miracel.png","image_tags":"All Images"},"episode_number":"117","name":"Miracle Man","site_detail_url":"https://comicvine.gamespot.com/the-x-files-117-miracle-man/4070-32/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-33/","air_date":null,"date_added":"2013-09-24 13:12:57","date_last_updated":"2013-10-05 17:23:23","deck":"The death of a Native American man hints at the existence of a werewolf-like creature.","description":null,"has_staff_review":false,"id":33,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332139-shapes.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332139-shapes.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332139-shapes.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332139-shapes.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332139-shapes.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332139-shapes.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332139-shapes.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332139-shapes.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332139-shapes.jpg","image_tags":"All Images"},"episode_number":"118","name":"Shapes","site_detail_url":"https://comicvine.gamespot.com/the-x-files-118-shapes/4070-33/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-34/","air_date":null,"date_added":"2013-09-24 13:15:09","date_last_updated":"2013-10-05 17:24:40","deck":"After a number of people vanish from a forest, Mulder and Scully decide to investigate.","description":null,"has_staff_review":false,"id":34,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332141-darkness%20falls.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332141-darkness%20falls.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332141-darkness%20falls.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332141-darkness%20falls.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332141-darkness%20falls.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332141-darkness%20falls.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332141-darkness%20falls.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332141-darkness%20falls.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332141-darkness%20falls.jpg","image_tags":"All Images"},"episode_number":"119","name":"Darkness Falls","site_detail_url":"https://comicvine.gamespot.com/the-x-files-119-darkness-falls/4070-34/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-35/","air_date":"2012-12-05","date_added":"2013-09-24 13:16:18","date_last_updated":"2016-02-14 01:45:46","deck":null,"description":"

    ARROW AND THE HUNTRESS TEAM UP — As Oliver and Helena (guest star Jessica DeGouw) grow closer, Oliver trains her to be his ally, complete with showing her how to use a crossbow. Diggle disapproves of Oliver sharing his secret with Helena as he's not sure she can be trusted, but Oliver refuses to listen to his concerns. Helena's quest for revenge proves to be too strong for Oliver to handle after she kills the head of the Triad and all hell breaks loose. Katie Cassidy, Colin Donnell, Willa Holland, Susanna Thompson and Paul Blackthorne also star. Ken Fink directed the episode written by Beth Schwartz & Andrew Kreisberg.

    ","has_staff_review":false,"id":35,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332142-1182837163-The_H.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332142-1182837163-The_H.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332142-1182837163-The_H.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332142-1182837163-The_H.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332142-1182837163-The_H.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332142-1182837163-The_H.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332142-1182837163-The_H.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332142-1182837163-The_H.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332142-1182837163-The_H.png","image_tags":"All Images"},"episode_number":"108","name":"Vendetta","site_detail_url":"https://comicvine.gamespot.com/arrow-108-vendetta/4070-35/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-36/","air_date":null,"date_added":"2013-09-24 13:16:41","date_last_updated":"2013-10-05 17:25:53","deck":"In the follow up episode to \"Squeeze\", the team try to take down the monster, once and for all.","description":"

    A continuation of The X-Files #102 - Squeeze.

    ","has_staff_review":false,"id":36,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332143-tooms.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332143-tooms.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332143-tooms.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332143-tooms.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332143-tooms.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332143-tooms.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332143-tooms.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332143-tooms.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332143-tooms.jpg","image_tags":"All Images"},"episode_number":"120","name":"Tooms","site_detail_url":"https://comicvine.gamespot.com/the-x-files-120-tooms/4070-36/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-37/","air_date":null,"date_added":"2013-09-24 13:18:00","date_last_updated":"2013-10-05 17:35:01","deck":"A little girl appears to have telekinetic powers.","description":null,"has_staff_review":false,"id":37,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332144-born.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332144-born.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332144-born.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332144-born.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332144-born.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332144-born.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332144-born.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332144-born.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332144-born.jpg","image_tags":"All Images"},"episode_number":"121","name":"Born Again","site_detail_url":"https://comicvine.gamespot.com/the-x-files-121-born-again/4070-37/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-38/","air_date":null,"date_added":"2013-09-24 13:20:00","date_last_updated":"2013-10-05 17:35:56","deck":"A series of deaths leads Mulder and Scully to Roland, an autistic janitor who may not be all that he seems.","description":null,"has_staff_review":false,"id":38,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332146-roland.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332146-roland.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332146-roland.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332146-roland.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332146-roland.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332146-roland.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332146-roland.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332146-roland.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332146-roland.jpg","image_tags":"All Images"},"episode_number":"122","name":"Roland","site_detail_url":"https://comicvine.gamespot.com/the-x-files-122-roland/4070-38/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-39/","air_date":"2012-12-12","date_added":"2013-09-24 13:21:11","date_last_updated":"2016-02-14 02:08:32","deck":null,"description":"

    IT'S CHRISTMAS TIME AT THE QUEEN HOUSEHOLD — Oliver discovers that after he and his father went missing, Moira and Thea stopped celebrating Christmas. Determined to make up for lost time and restore a sense of normalcy to the Queen household, Oliver decides to throw the family a Christmas party. Meanwhile, Tommy asks Laurel to spend Christmas with him but she points out that Christmas was also her sister Sara's birthday and she needs to be with her father. Tommy suggests changing things up might be the best way for everyone to heal but Laurel isn't sure her father is ready for that. Meanwhile, Diggle tells Oliver someone is murdering the people on his father's list with arrows, which sends Oliver off to face his toughest adversary yet. John Dahl directed the episode with story by Greg Berlanti & Marc Guggenheim and teleplay by Andrew Kreisberg & Marc Guggenheim.

    ","has_staff_review":false,"id":39,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332148-3328260836-The_Q.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332148-3328260836-The_Q.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332148-3328260836-The_Q.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332148-3328260836-The_Q.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332148-3328260836-The_Q.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332148-3328260836-The_Q.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332148-3328260836-The_Q.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332148-3328260836-The_Q.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332148-3328260836-The_Q.png","image_tags":"All Images"},"episode_number":"109","name":"Year's End","site_detail_url":"https://comicvine.gamespot.com/arrow-109-year-s-end/4070-39/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-40/","air_date":null,"date_added":"2013-09-24 13:21:47","date_last_updated":"2013-10-05 17:37:14","deck":"When Deep Throat approaches Mulder with another lead, he uncovers more than he ever expected to find.","description":null,"has_staff_review":false,"id":40,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332147-erl.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332147-erl.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332147-erl.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332147-erl.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332147-erl.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332147-erl.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332147-erl.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332147-erl.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332147-erl.jpg","image_tags":"All Images"},"episode_number":"123","name":"The Erlenmeyer Flask","site_detail_url":"https://comicvine.gamespot.com/the-x-files-123-the-erlenmeyer-flask/4070-40/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-41/","air_date":null,"date_added":"2013-09-24 13:24:05","date_last_updated":"2013-10-05 17:38:19","deck":"A trip to Puerto Rico brings Mulder even closer to the truth.","description":null,"has_staff_review":false,"id":41,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332152-cap123.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332152-cap123.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332152-cap123.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332152-cap123.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332152-cap123.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332152-cap123.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332152-cap123.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332152-cap123.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332152-cap123.jpg","image_tags":"All Images"},"episode_number":"201","name":"Little Green Men","site_detail_url":"https://comicvine.gamespot.com/the-x-files-201-little-green-men/4070-41/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-42/","air_date":"2013-01-16","date_added":"2013-09-24 13:26:08","date_last_updated":"2016-02-14 02:23:49","deck":null,"description":"

    OLIVER HANGS UP HIS HOOD — Oliver’s confidence is shaken after being beaten by the Dark Archer and he takes a break from being Arrow. However, when Laurel calls Arrow for help investigating a firefighter’s suspicious death, he reluctantly agrees but his hesitance while fighting almost costs him his life. Meanwhile, Tommy throws a benefit for the firefighters and Thea tries to lift Moira out of her depressive state. Eagle Egilsson directed the episode written by Moira Kirland & Ben Sokolowski.

    ","has_staff_review":false,"id":42,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332156-3963134002-Firef.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332156-3963134002-Firef.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332156-3963134002-Firef.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332156-3963134002-Firef.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332156-3963134002-Firef.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332156-3963134002-Firef.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332156-3963134002-Firef.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332156-3963134002-Firef.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332156-3963134002-Firef.png","image_tags":"All Images"},"episode_number":"110","name":"Burned","site_detail_url":"https://comicvine.gamespot.com/arrow-110-burned/4070-42/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-43/","air_date":"1991-09-08","date_added":"2013-09-24 13:26:15","date_last_updated":"2013-09-24 18:30:36","deck":null,"description":"

    Part 1 of the story of how Darkwing got Gosalyn as his daughter and Launchpad as his sidekick

    Adapted into comics Darkwing Duck #1 and Darkwing Duck #2 and reprinted in Darkwing Duck Classics

    ","has_staff_review":false,"id":43,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/1641629-ep01_000.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/1641629-ep01_000.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/1641629-ep01_000.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/1641629-ep01_000.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/1641629-ep01_000.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/1641629-ep01_000.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/1641629-ep01_000.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/1641629-ep01_000.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/1641629-ep01_000.png","image_tags":"All Images"},"episode_number":"101","name":"Darkly Dawns the Duck: Part 1","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-101-darkly-dawns-the-duck-part-1/4070-43/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-44/","air_date":null,"date_added":"2013-09-24 13:26:18","date_last_updated":"2013-10-05 17:39:17","deck":"With the X Files closed down, Mulder is reassigned and finds himself wading through the sewers on what seems like a petty assignment. But he soon encounters a horrifying monster.","description":null,"has_staff_review":false,"id":44,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332157-monster1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332157-monster1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332157-monster1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332157-monster1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332157-monster1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332157-monster1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332157-monster1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332157-monster1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332157-monster1.jpg","image_tags":"All Images"},"episode_number":"202","name":"The Host","site_detail_url":"https://comicvine.gamespot.com/the-x-files-202-the-host/4070-44/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-45/","air_date":null,"date_added":"2013-09-24 13:28:59","date_last_updated":"2013-10-05 17:40:35","deck":"After a spate of unexpected and impulsive murders, the team uncover a chemical which exploits people's deepest fears.","description":null,"has_staff_review":false,"id":45,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332160-blood.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332160-blood.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332160-blood.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332160-blood.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332160-blood.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332160-blood.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332160-blood.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332160-blood.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332160-blood.png","image_tags":"All Images,X Files"},"episode_number":"203","name":"Blood","site_detail_url":"https://comicvine.gamespot.com/the-x-files-203-blood/4070-45/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-46/","air_date":null,"date_added":"2013-09-24 13:30:49","date_last_updated":"2013-10-05 17:41:50","deck":"A group of soldiers are subjected to an experiment which removes their need - and their ability - to sleep.","description":null,"has_staff_review":false,"id":46,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332161-sleepless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332161-sleepless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332161-sleepless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332161-sleepless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332161-sleepless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332161-sleepless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332161-sleepless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332161-sleepless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332161-sleepless.jpg","image_tags":"All Images"},"episode_number":"204","name":"Sleepless","site_detail_url":"https://comicvine.gamespot.com/the-x-files-204-sleepless/4070-46/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-47/","air_date":"2013-01-23","date_added":"2013-09-24 13:30:58","date_last_updated":"2017-03-14 15:24:33","deck":null,"description":"

    TOMMY AND MALCOM HAVE A HEART-TO-HEART TALK AND OLIVER AND DIGGLE ARE AT ODDS WITH EACH OTHER — The next person on Arrow’s (Stephen Amell) list is Diggle's (David Ramsey) commanding officer and mentor from Afghanistan, Ted Gaynor (guest star Ben Browder). Oliver suspects Ted is responsible for recent armoured truck robberies, but Diggle defends Ted and takes a job at Ted's security company to keep an eye on him. Oliver decides to make a move on Ted, which puts him at odds with Diggle. Meanwhile, Thea (Willa Holland) suspects that Moira (Susanna Thompson) is having an affair with Malcom (guest star John Barrowman). Tommy (Colin Donnell) and Laurel (Katie Cassidy) have an awkward dinner with Malcom. Nick Copus directed the episode written by Gabrielle Stanton.

    ","has_staff_review":false,"id":47,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332162-7615928569-Arrow.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332162-7615928569-Arrow.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332162-7615928569-Arrow.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332162-7615928569-Arrow.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332162-7615928569-Arrow.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332162-7615928569-Arrow.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332162-7615928569-Arrow.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332162-7615928569-Arrow.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332162-7615928569-Arrow.png","image_tags":"All Images"},"episode_number":"111","name":"Trust but Verify","site_detail_url":"https://comicvine.gamespot.com/arrow-111-trust-but-verify/4070-47/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-48/","air_date":null,"date_added":"2013-09-24 13:32:49","date_last_updated":"2013-10-05 17:48:23","deck":"A former FBI agent and alleged abductee creates a hostage situation, in an attempt to stop the aliens from taking him away again.","description":null,"has_staff_review":false,"id":48,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332165-22.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332165-22.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332165-22.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332165-22.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332165-22.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332165-22.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332165-22.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332165-22.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332165-22.jpg","image_tags":"All Images"},"episode_number":"205","name":"Duane Barry","site_detail_url":"https://comicvine.gamespot.com/the-x-files-205-duane-barry/4070-48/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-49/","air_date":"1991-09-08","date_added":"2013-09-24 13:33:23","date_last_updated":"2013-09-24 18:30:58","deck":null,"description":"

    Part 2 of the story of how Darkwing got Gosalyn as his daughter and Launchpad as his sidekick

    Adapted into comics Darkwing Duck #3 and Darkwing Duck #4 and reprinted in Darkwing Duck Classics

    ","has_staff_review":false,"id":49,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/1720605-part_2.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/1720605-part_2.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/1720605-part_2.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/1720605-part_2.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/1720605-part_2.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/1720605-part_2.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/1720605-part_2.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/1720605-part_2.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/1720605-part_2.png","image_tags":"All Images"},"episode_number":"102","name":"Darkly Dawns the Duck: Part 2","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-102-darkly-dawns-the-duck-part-2/4070-49/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-50/","air_date":null,"date_added":"2013-09-24 13:34:28","date_last_updated":"2013-10-05 17:49:08","deck":"After Duane Barry kidnaps Scully, the race is on to find her before it is too late.","description":null,"has_staff_review":false,"id":50,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332168-627.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332168-627.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332168-627.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332168-627.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332168-627.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332168-627.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332168-627.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332168-627.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332168-627.jpg","image_tags":"All Images"},"episode_number":"206","name":"Ascension","site_detail_url":"https://comicvine.gamespot.com/the-x-files-206-ascension/4070-50/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-51/","air_date":"2013-01-30","date_added":"2013-09-24 13:36:24","date_last_updated":"2016-02-14 03:39:03","deck":null,"description":"

    SETH GABEL (“FRINGE”) GUEST STARS WHILE THEA FACES PRISON TIME — Thea is in trouble with the police after she gets caught using a drug called “Vertigo.” Oliver thinks the only way to keep her out of jail is to find the dealer, a man who goes by the name of “The Count” (guest star Seth Gabel). Oliver turns to McKenna Hall (guest star Janina Gavankar), an old flame and current Vice cop, for help. Meanwhile, Laurel steps in to defend Thea, and Felicity (guest star Emily Bett Rickards) gives Oliver some disturbing news about Moira. David Ramsey, Colin Donnell and Paul Blackthorne also star. Wendey Stanzler directed the episode written by Wendy Mericle & Ben Sokolowski.

    ","has_staff_review":false,"id":51,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332170-4138801025-Arrow.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332170-4138801025-Arrow.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332170-4138801025-Arrow.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332170-4138801025-Arrow.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332170-4138801025-Arrow.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332170-4138801025-Arrow.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332170-4138801025-Arrow.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332170-4138801025-Arrow.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332170-4138801025-Arrow.png","image_tags":"All Images"},"episode_number":"112","name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/arrow-112-vertigo/4070-51/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-52/","air_date":null,"date_added":"2013-09-24 13:38:18","date_last_updated":"2013-10-05 17:50:11","deck":"Mulder becomes involved with a beautiful young woman, only to discover that she may be a vampire.","description":null,"has_staff_review":false,"id":52,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332175-500px-333.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332175-500px-333.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332175-500px-333.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332175-500px-333.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332175-500px-333.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332175-500px-333.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332175-500px-333.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332175-500px-333.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332175-500px-333.jpg","image_tags":"All Images"},"episode_number":"207","name":"3","site_detail_url":"https://comicvine.gamespot.com/the-x-files-207-3/4070-52/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-53/","air_date":null,"date_added":"2013-09-24 13:40:44","date_last_updated":"2013-10-05 17:51:00","deck":"After everyone has begun to accept the likelihood that she is dead, Scully turns up at a local hospital with no idea how she got there.","description":null,"has_staff_review":false,"id":53,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332177-mulder-and-scully_32331_10.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332177-mulder-and-scully_32331_10.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332177-mulder-and-scully_32331_10.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332177-mulder-and-scully_32331_10.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332177-mulder-and-scully_32331_10.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332177-mulder-and-scully_32331_10.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332177-mulder-and-scully_32331_10.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332177-mulder-and-scully_32331_10.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332177-mulder-and-scully_32331_10.jpg","image_tags":"All Images"},"episode_number":"208","name":"One Breath","site_detail_url":"https://comicvine.gamespot.com/the-x-files-208-one-breath/4070-53/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-54/","air_date":"2013-02-06","date_added":"2013-09-24 13:41:34","date_last_updated":"2016-02-14 03:56:24","deck":null,"description":"

    DAVID ANDERS (“ONCE UPON A TIME,” “THE VAMPIRE DIARIES”) GUEST STARS — Cyrus Vanch, a nefarious criminal, is recently released from prison and intends to re-secure his position as leader of the underworld. His first step is to take down his biggest opponent in the city – Arrow. Meanwhile, Oliver shows Moira his father’s notebook and questions her about the names on the list. Thea is miserable as she starts her internship with Laurel at the legal aid office and Detective Lance makes a deadly mistake that puts Laurel in the crosshairs of Vanch. David Ramsey and Colin Donnell also star. Guy Bee directed the episode written by Lana Cho & Beth Schwartz.

    ","has_staff_review":false,"id":54,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332178-6725598197-Cyrus.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332178-6725598197-Cyrus.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332178-6725598197-Cyrus.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332178-6725598197-Cyrus.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332178-6725598197-Cyrus.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332178-6725598197-Cyrus.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332178-6725598197-Cyrus.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332178-6725598197-Cyrus.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332178-6725598197-Cyrus.png","image_tags":"All Images"},"episode_number":"113","name":"Betrayal","site_detail_url":"https://comicvine.gamespot.com/arrow-113-betrayal/4070-54/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-55/","air_date":null,"date_added":"2013-09-24 13:43:32","date_last_updated":"2013-10-05 17:51:56","deck":"Mulder and Scully investigate the possibility that a silicon based lifeform has evolved, and may be responsible for several deaths.","description":null,"has_staff_review":false,"id":55,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332180-cap287.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332180-cap287.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332180-cap287.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332180-cap287.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332180-cap287.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332180-cap287.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332180-cap287.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332180-cap287.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332180-cap287.jpg","image_tags":"All Images"},"episode_number":"209","name":"Firewalker","site_detail_url":"https://comicvine.gamespot.com/the-x-files-209-firewalker/4070-55/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-56/","air_date":null,"date_added":"2013-09-24 13:46:32","date_last_updated":"2013-10-05 17:53:00","deck":"After a number of kidnappings in which victims are marked with the same message across their bodies, suspicion falls on a local religious sect.","description":null,"has_staff_review":false,"id":56,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332184-screenshot03.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332184-screenshot03.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332184-screenshot03.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332184-screenshot03.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332184-screenshot03.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332184-screenshot03.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332184-screenshot03.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332184-screenshot03.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332184-screenshot03.jpg","image_tags":"All Images,X Files"},"episode_number":"210","name":"Red Museum","site_detail_url":"https://comicvine.gamespot.com/the-x-files-210-red-museum/4070-56/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-57/","air_date":"2013-02-13","date_added":"2013-09-24 13:47:47","date_last_updated":"2016-02-14 04:04:10","deck":null,"description":"

    MANU BENNETT (“SPARTACUS”) GUEST STARS AS SLADE WILSON — After Oliver is shot, he turns to a surprising person for help – Felicity. Diggle is stunned when he sees Felicity walk through the front door of the lair dragging a dying Oliver behind her, and the two team up to save Oliver’s life. As Oliver hovers between life and death, he flashes back to a seminal event on the island – a daring escape attempt with his new friend Slade Wilson (guest star Manu Bennett). Katie Cassidy, Willa Holland, Paul Blackthorne and Susanna Thompson also star. John Behring directed the episode with story by Greg Berlanti & Andrew Kreisberg and teleplay by Andrew Kreisberg and Marc Guggenheim.

    ","has_staff_review":false,"id":57,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332196-3037176343-Olive.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332196-3037176343-Olive.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332196-3037176343-Olive.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332196-3037176343-Olive.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332196-3037176343-Olive.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332196-3037176343-Olive.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332196-3037176343-Olive.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332196-3037176343-Olive.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332196-3037176343-Olive.png","image_tags":"All Images"},"episode_number":"114","name":"The Odyssey","site_detail_url":"https://comicvine.gamespot.com/arrow-114-the-odyssey/4070-57/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-58/","air_date":null,"date_added":"2013-09-24 13:48:55","date_last_updated":"2013-10-05 17:54:10","deck":"A nurse claims to have been the victim of a violent sexual assault. But her attacker is a frail old man who does not appear to be physically capable of harming anyone.","description":null,"has_staff_review":false,"id":58,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332198-screenshot68.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332198-screenshot68.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332198-screenshot68.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332198-screenshot68.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332198-screenshot68.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332198-screenshot68.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332198-screenshot68.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332198-screenshot68.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332198-screenshot68.jpg","image_tags":"All Images"},"episode_number":"211","name":"Excelsis Dei","site_detail_url":"https://comicvine.gamespot.com/the-x-files-211-excelsis-dei/4070-58/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-59/","air_date":"1991-09-09","date_added":"2013-09-24 13:50:01","date_last_updated":"2013-09-24 18:31:20","deck":null,"description":"

    The Origin story of Bushroot

    ","has_staff_review":false,"id":59,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332200-ep03-000.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332200-ep03-000.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332200-ep03-000.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332200-ep03-000.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332200-ep03-000.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332200-ep03-000.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332200-ep03-000.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332200-ep03-000.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332200-ep03-000.png","image_tags":"All Images"},"episode_number":"103","name":"Beauty and the Beet","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-103-beauty-and-the-beet/4070-59/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-60/","air_date":null,"date_added":"2013-09-24 13:51:26","date_last_updated":"2013-10-05 17:56:00","deck":"Mulder and Scully investigate a series of murders in which the victim's bodies are mutilated post mortem.","description":null,"has_staff_review":false,"id":60,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332206-screenshot56.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332206-screenshot56.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332206-screenshot56.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332206-screenshot56.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332206-screenshot56.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332206-screenshot56.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332206-screenshot56.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332206-screenshot56.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332206-screenshot56.jpg","image_tags":"All Images"},"episode_number":"212","name":"Aubrey","site_detail_url":"https://comicvine.gamespot.com/the-x-files-212-aubrey/4070-60/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-61/","air_date":"1996-09-06","date_added":"2013-09-24 13:51:48","date_last_updated":"2017-04-18 18:41:28","deck":null,"description":"

    Jor-El struggles to convince Krypton's Science Council of the planet's impending destruction but is betrayed by the artificial intelligence Brainiac.

    ","has_staff_review":false,"id":61,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/119711/3332205-6254326923-Stas-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/119711/3332205-6254326923-Stas-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/119711/3332205-6254326923-Stas-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/119711/3332205-6254326923-Stas-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/119711/3332205-6254326923-Stas-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/119711/3332205-6254326923-Stas-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/119711/3332205-6254326923-Stas-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/119711/3332205-6254326923-Stas-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/119711/3332205-6254326923-Stas-.jpg","image_tags":"All Images"},"episode_number":"101","name":"The Last Son of Krypton: Part I","site_detail_url":"https://comicvine.gamespot.com/superman-the-animated-series-101-the-last-son-of-k/4070-61/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-12/","id":12,"name":"Superman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/superman-the-animated-series/4075-12/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-62/","air_date":"2013-02-20","date_added":"2013-09-24 13:54:09","date_last_updated":"2016-02-14 04:15:18","deck":null,"description":"

    COLTON HAYNES (“TEEN WOLF”) GUEST STARS AS ROY HARPER — Felicity tells Oliver he’s all work and no play, so she asks Detective McKenna (guest star Janina Gavankar) on a date. A jewel thief named Dodger (guest star James Callis) hits Starling City and targets someone very close to Oliver. Meanwhile, while working with Laurel, Thea gets her purse stolen by a very fast pickpocket named Roy Harper (guest star Haynes). Moira makes a move against Malcom. Colin Donnell and Paul Blackthorne also star. Eagle Egilsson directed the episode written by Beth Schwartz.

    ","has_staff_review":false,"id":62,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332207-4567759498-Arrow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332207-4567759498-Arrow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332207-4567759498-Arrow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332207-4567759498-Arrow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332207-4567759498-Arrow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332207-4567759498-Arrow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332207-4567759498-Arrow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332207-4567759498-Arrow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332207-4567759498-Arrow.jpg","image_tags":"All Images"},"episode_number":"115","name":"Dodger","site_detail_url":"https://comicvine.gamespot.com/arrow-115-dodger/4070-62/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-63/","air_date":null,"date_added":"2013-09-24 13:54:33","date_last_updated":"2013-10-05 18:00:24","deck":"A serial killer named Donnie becomes obsessed with taking the hair and nails of his victims and trophies.","description":null,"has_staff_review":false,"id":63,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332208-irresistible10.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332208-irresistible10.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332208-irresistible10.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332208-irresistible10.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332208-irresistible10.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332208-irresistible10.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332208-irresistible10.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332208-irresistible10.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332208-irresistible10.png","image_tags":"All Images"},"episode_number":"213","name":"Irresistible","site_detail_url":"https://comicvine.gamespot.com/the-x-files-213-irresistible/4070-63/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-64/","air_date":null,"date_added":"2013-09-24 13:57:02","date_last_updated":"2013-10-05 18:01:39","deck":"A young girl claims to be a victim of ritualistic Satanic abuse at the hands of her family.","description":null,"has_staff_review":false,"id":64,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332213-tumblr_mbr0gwjx3w1qlbvf0o1_500.jpg","image_tags":"All Images"},"episode_number":"214","name":"Die Hand die Verletzt","site_detail_url":"https://comicvine.gamespot.com/the-x-files-214-die-hand-die-verletzt/4070-64/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-65/","air_date":null,"date_added":"2013-09-24 13:59:08","date_last_updated":"2013-10-05 18:02:47","deck":"The death of a soldier at a Haitian refugee camp leads to accusations of voodoo and black magic.","description":null,"has_staff_review":false,"id":65,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332216-x-files039.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332216-x-files039.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332216-x-files039.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332216-x-files039.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332216-x-files039.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332216-x-files039.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332216-x-files039.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332216-x-files039.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332216-x-files039.jpg","image_tags":"All Images"},"episode_number":"215","name":"Fresh Bones","site_detail_url":"https://comicvine.gamespot.com/the-x-files-215-fresh-bones/4070-65/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-66/","air_date":"1991-09-10","date_added":"2013-09-24 14:01:00","date_last_updated":"2013-09-24 18:31:32","deck":null,"description":"

    Darkwing gets shrunk by a mad miniature golf course owner

    ","has_staff_review":false,"id":66,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332218-getting_antsy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332218-getting_antsy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332218-getting_antsy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332218-getting_antsy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332218-getting_antsy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332218-getting_antsy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332218-getting_antsy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332218-getting_antsy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332218-getting_antsy.jpg","image_tags":"All Images"},"episode_number":"104","name":"Getting Antsy","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-104-getting-antsy/4070-66/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-67/","air_date":"2013-02-27","date_added":"2013-09-24 14:01:51","date_last_updated":"2016-02-14 04:45:35","deck":null,"description":"

    DEADSHOT RETURNS — Oliver and Diggle learn that Deadshot (guest star Michael Rowe) is still alive and his next target is Malcolm. Malcolm invites Tommy to attend a benefit honoring Malcolm for his work with Starling City but Tommy refuses to attend. Oliver encourages his friend to mend his relationship with his father while he can. Meanwhile, Oliver struggles to balance his new relationship with McKenna and his duties as Arrow. Katie Cassidy, Paul Blackthorne and Susanna Thompson also star. Glen Winter directed the episode written by Geoff Johns.

    ","has_staff_review":false,"id":67,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332219-3219898760-Arrow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332219-3219898760-Arrow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332219-3219898760-Arrow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332219-3219898760-Arrow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332219-3219898760-Arrow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332219-3219898760-Arrow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332219-3219898760-Arrow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332219-3219898760-Arrow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332219-3219898760-Arrow.jpg","image_tags":"All Images"},"episode_number":"116","name":"Dead to Rights","site_detail_url":"https://comicvine.gamespot.com/arrow-116-dead-to-rights/4070-67/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-68/","air_date":null,"date_added":"2013-09-24 14:04:13","date_last_updated":"2013-10-05 18:09:12","deck":"The deaths of three identical men who are not related raise suspicions with Mulder. But when a woman arrives claiming to be his long lost sister Samantha, he soon realises that he has stumbled across something of grave importance.","description":null,"has_staff_review":false,"id":68,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332235-x-files-season-2-16-colony.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332235-x-files-season-2-16-colony.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332235-x-files-season-2-16-colony.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332235-x-files-season-2-16-colony.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332235-x-files-season-2-16-colony.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332235-x-files-season-2-16-colony.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332235-x-files-season-2-16-colony.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332235-x-files-season-2-16-colony.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332235-x-files-season-2-16-colony.jpg","image_tags":"All Images"},"episode_number":"216","name":"Colony","site_detail_url":"https://comicvine.gamespot.com/the-x-files-216-colony/4070-68/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-69/","air_date":"1992-09-06","date_added":"2013-09-24 14:04:57","date_last_updated":"2014-07-29 06:31:23","deck":null,"description":"

    Episode #1

    When a bat-like creature terrifies the city of Gotham, the police force hunts down the Batman. It is now up to the Caped Crusader to find the real perpetrator in order to clear his name.

    ","has_staff_review":false,"id":69,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332251-batman_on_leather_wings.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332251-batman_on_leather_wings.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332251-batman_on_leather_wings.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332251-batman_on_leather_wings.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332251-batman_on_leather_wings.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332251-batman_on_leather_wings.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332251-batman_on_leather_wings.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332251-batman_on_leather_wings.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332251-batman_on_leather_wings.jpg","image_tags":"All Images"},"episode_number":"101","name":"On Leather Wings","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-101-on-leather-wings/4070-69/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-70/","air_date":null,"date_added":"2013-09-24 14:06:22","date_last_updated":"2013-10-05 18:13:21","deck":"Mulder and Samantha are pursued by a shape-shifting alien bounty hunter.","description":null,"has_staff_review":false,"id":70,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332252-cap097.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332252-cap097.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332252-cap097.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332252-cap097.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332252-cap097.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332252-cap097.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332252-cap097.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332252-cap097.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332252-cap097.jpg","image_tags":"All Images"},"episode_number":"217","name":"End Game","site_detail_url":"https://comicvine.gamespot.com/the-x-files-217-end-game/4070-70/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-71/","air_date":"2013-03-20","date_added":"2013-09-24 14:08:10","date_last_updated":"2016-02-14 04:55:51","deck":null,"description":"

    EDM MEGASTAR STEVE AOKI OPENS OLIVER’S NEW NIGHTCLUB — With his nightclub set to open and a new romance brewing with McKenna (guest star Janina Gavankar), Oliver is as happy as he’s been since returning to Starling City. But when Oliver’s ex, The Huntress (guest star Jessica De Gouw), suddenly returns to town, she threatens to destroy everything and everyone he cares about. Meanwhile, Laurel and her father struggle with the return of Dinah Lance (guest star Alex Kingston) who claims she has proof Sara is still alive. Thea gets Roy Harper (guest star Colton Haynes) a job at Oliver’s club, but he’s not too inclined to stop his life of crime. Oliver and Tommy are thrilled they were able to get Steve Aoki to play at the opening of their new nightclub, Verdant. David Ramsey and Susanna Thompson also star. Guy Bee directed the episode written by Jake Coburn & Lana Cho.

    ","has_staff_review":false,"id":71,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332262-5652324114-Arrow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332262-5652324114-Arrow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332262-5652324114-Arrow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332262-5652324114-Arrow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332262-5652324114-Arrow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332262-5652324114-Arrow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332262-5652324114-Arrow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332262-5652324114-Arrow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332262-5652324114-Arrow.jpg","image_tags":"All Images"},"episode_number":"117","name":"The Huntress Returns","site_detail_url":"https://comicvine.gamespot.com/arrow-117-the-huntress-returns/4070-71/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-72/","air_date":"1991-09-11","date_added":"2013-09-24 14:08:18","date_last_updated":"2013-09-24 18:32:26","deck":null,"description":"

    Darkwing must battle Bushroot and a vampiric potato

    ","has_staff_review":false,"id":72,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332255-spud.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332255-spud.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332255-spud.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332255-spud.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332255-spud.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332255-spud.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332255-spud.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332255-spud.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332255-spud.jpg","image_tags":"All Images"},"episode_number":"105","name":"Night of the Living Spud","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-105-night-of-the-living-spud/4070-72/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-73/","air_date":null,"date_added":"2013-09-24 14:09:40","date_last_updated":"2013-10-05 18:15:51","deck":"At a zoo in Idaho, animals keep disappearing and mysteriously reappearing.","description":"

    Plot Summary

    After claims of an invisible elephant reach Mulder and Scully, they take on the case - only to find their only witness is a gorilla who communicates using sign language.

    ","has_staff_review":false,"id":73,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332261-fearful_symmetry.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332261-fearful_symmetry.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332261-fearful_symmetry.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332261-fearful_symmetry.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332261-fearful_symmetry.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332261-fearful_symmetry.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332261-fearful_symmetry.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332261-fearful_symmetry.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332261-fearful_symmetry.jpg","image_tags":"All Images"},"episode_number":"218","name":"Fearful Symmetry","site_detail_url":"https://comicvine.gamespot.com/the-x-files-218-fearful-symmetry/4070-73/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-74/","air_date":"1977-11-04","date_added":"2013-09-24 14:09:40","date_last_updated":"2013-09-24 14:11:30","deck":"When David Banner attempts to heighten his strength using gamma rays, he turns in to the Incredible Hulk.","description":null,"has_staff_review":false,"id":74,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/119711/3332263-untitled.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/119711/3332263-untitled.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/119711/3332263-untitled.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/119711/3332263-untitled.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/119711/3332263-untitled.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/119711/3332263-untitled.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/119711/3332263-untitled.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/119711/3332263-untitled.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/119711/3332263-untitled.png","image_tags":"All Images"},"episode_number":"101","name":"Pilot","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-101-pilot/4070-74/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-16/","id":16,"name":"The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4075-16/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-75/","air_date":null,"date_added":"2013-09-24 14:12:25","date_last_updated":"2013-10-05 18:16:48","deck":"When the former occupants of a ship appear to be rapidly aging and dying, Mulder and Scully decide to look into it for themselves - only to become victims of the same phenomenon.","description":null,"has_staff_review":false,"id":75,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332273-dod-kalm-008.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332273-dod-kalm-008.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332273-dod-kalm-008.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332273-dod-kalm-008.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332273-dod-kalm-008.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332273-dod-kalm-008.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332273-dod-kalm-008.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332273-dod-kalm-008.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332273-dod-kalm-008.jpg","image_tags":"All Images"},"episode_number":"219","name":"Dod Kalm","site_detail_url":"https://comicvine.gamespot.com/the-x-files-219-dod-kalm/4070-75/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-76/","air_date":"1992-11-13","date_added":"2013-09-24 14:13:27","date_last_updated":"2017-06-21 20:33:06","deck":null,"description":"

    Joker escapes Arkham Asylum on Christmas Eve and take over the airwaves of Gotham and terrorizes the city. He challenges the Dynamic Duo to find his hidden TV station to save his hostages by midnight.

    ","has_staff_review":false,"id":76,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332279-328143-christmas_with_the_joker___title_card.jpg","image_tags":"All Images"},"episode_number":"102","name":"Christmas with the Joker","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-102-christmas-with-the-/4070-76/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-77/","air_date":"2013-03-27","date_added":"2013-09-24 14:14:40","date_last_updated":"2016-02-14 05:10:59","deck":null,"description":"

    OLIVER MUST SAVE ROY HARPER FROM A MURDERER — An angry resident of The Glades who calls himself “The Savior” (guest star Christopher Redman) embarks on a kidnapping and killing spree to punish those he believes have wronged the residents of his neighborhood. To make things worse, he broadcasts these murders online and claims he was inspired by Arrow’s vigilantism. Oliver is horrified by this statement and vows to stop “The Savior,” but his manhunt in intensified after Thea comes to him in tears and tells him Roy (guest star Colton Haynes) has been kidnapped. Laurel is surprised when her father starts to believe her mother’s (guest star Alex Kingston) claim that Sara is still alive. Meanwhile, Malcom tells Moira to find the person responsible for his attempted murder. David Ramsey and Colin Donnell also star. Nick Copus directed the episode written by Drew Z. Greenberg & Wendy Mericle.

    ","has_staff_review":false,"id":77,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332281-4802518169-arrow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332281-4802518169-arrow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332281-4802518169-arrow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332281-4802518169-arrow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332281-4802518169-arrow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332281-4802518169-arrow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332281-4802518169-arrow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332281-4802518169-arrow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332281-4802518169-arrow.jpg","image_tags":"All Images"},"episode_number":"118","name":"Salvation","site_detail_url":"https://comicvine.gamespot.com/arrow-118-salvation/4070-77/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-78/","air_date":null,"date_added":"2013-09-24 14:15:16","date_last_updated":"2013-10-05 18:19:14","deck":"Mulder and Scully find themselves travelling to a community of circus performers, in order to find the truth behind a series of deaths.","description":null,"has_staff_review":false,"id":78,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332287-cap154.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332287-cap154.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332287-cap154.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332287-cap154.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332287-cap154.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332287-cap154.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332287-cap154.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332287-cap154.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332287-cap154.jpg","image_tags":"All Images"},"episode_number":"220","name":"Humbug","site_detail_url":"https://comicvine.gamespot.com/the-x-files-220-humbug/4070-78/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-79/","air_date":"1992-09-15","date_added":"2013-09-24 14:16:59","date_last_updated":"2013-10-29 00:28:48","deck":null,"description":"

    Batman tries to prevent the Scarecrow from burning down Gotham University, but gets caught in the Master of Fear's fear gas and forced to face the guilt over his parents murder.

    ","has_staff_review":false,"id":79,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332289-03.%20nothing%20to%20fear_sep%2024%2C%202013%205.16.17%20pm.png","image_tags":"All Images"},"episode_number":"103","name":"Nothing to Fear","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-103-nothing-to-fear/4070-79/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-80/","air_date":"1977-11-27","date_added":"2013-09-24 14:17:01","date_last_updated":"2013-09-25 13:14:51","deck":"David Banner encounters a girl seemingly unable to walk but when he attempts to help her, things don't go as might have been expected.","description":"

    Eleven months after his wife Laura was killed in a car crash from which he had been unable to save her, Dr. David Bruce Banner, Ph.D., M.D.(Wilfred Bailey \"Bill\" Bixby), is having nightmares about the tragedy. He and a fellow scientist employed in the Culver Institute, Dr. Elaina Harding Marks, Ph.D., M.D.(Susan Sullivan), have commenced, having been inspired by that tragedy, to search for some way to tap into the hidden physical strengths that all humans are known to possess, but of which few humans actually employ even a full twenty percent. But much to Marks's dismay, Banner keeps losing his cool over his frustration with his failure. This, she warns him, has now begun to interfere with his examination of a medical phenomenon with cool scientific objectivity. In the meantime, Banner has had to fend off the intrusiveness of Jack McGee(Jack Colvin), who works as an investigative reporter for a newspaper called the National Register. The National Register, a tabloid newspaper specializing in sensationalism, is attempting to obtain information for a report on Banner's research in tapping into human strength, but Banner dismisses McGee's, and the National Register's, interest by likening it to interest in \"murder, rape, UFOs, horoscopes, and Farrah Fawcett\" and denying that he fits into any of those categories. McGee responds, in turn, that he does not give up easily. This persistence on McGee's part will have devastating consequences.

    In the course of this research, Banner and Marks interview and test seventy-eight different people, and discover that they have a genetic abnormality--elevated adenine-thymine content in their DNA. (They are able to detect this abnormality through enhancements of the Institute's equipment that Dr. Benjamin Culver(Charles Siebert), its Director, has been conducting.) Evidently, extreme emotional commitment causes this to energize their muscles in some way; however, Banner's own DNA proves to have this genetic abnormality too, and to have it to a greater extent than most of--indeed, ALL--the others, but he had never found the strength that they had had. Marks surmises that something external is operating.

    That something, as a chart of sunspot activity that a puzzled Culver allows Banner to borrow shows, is gamma radiation. Every case of abnormally high strength has occurred on a day of high gamma activity from sunspots, and Laura's death occurred on a day of low gamma activity. Banner tries unsuccessfully to call Marks and inform her of this; when that fails, he decides to inject himself with a gamma-radiation dose. He does not consider, in doing so, that Culver has enhanced the gamma injector of the radiology laboratory as well, since the injector is not calibrated. Setting the controls for a two-minute automatic countdown to a fifteen-second radiation event that he hopes will bombard him with three hundred thousand gamma units, Banner injects himself with the gamma dosage using the uncalibrated injector. But since its controls are un-monitored, Banner does not realize that he is actually bombarding himself with almost two MILLION gamma units--and thus he administers an accidental overdose of gamma radiation to himself.

    Worse for Banner, the night he does this is one when an electrical storm strikes. As Banner is driving home on Crossway Road, one of the tires on his car blows out from running over a broken roadblock. As he is attempting to change the tire, he scrapes his hand, twice, on the road--and as a direct result of the extreme negative stress, for what will be the first of many times, he transforms physically into a gigantic green-skinned creature(Lou Ferrigno), more ape than man, of inhuman primality but possessed of super-human strength. This creature, who is driven by rage, destroys what was otherwise intact of Banner's car, then walks away from the wreckage.

    The following morning, on the shore of a lake near where he had left the wreckage of Banner's car, the creature encounters a girl, who, fleeing him in terror, falls into the lake. (One brief shot of Richard Kiel, who was initially chosen as the creature before Lou Ferrigno was ultimately signed, survived the final editing process.) Her father then shoots at the creature, the bullet from his rifle's single round passing directly through the creature's shoulder, and the creature breaks the man's rifle over his knee and throws the smaller man into the lake. Then he tears up the camp the girl and her father had maintained on the lake's shore and flees. On another shore of the same lake, the creature finally calms down...and transforms back to David Banner, who remembers nothing of what has happened.

    Banner pays a visit to Marks, whom his condition horrifies. He there explains as much as he can remember about the previous night, saying that he cannot go to the hospital in spite of having been shot in his shoulder--it may be too dangerous. Marks agrees to join Banner at the Culver Institute's Southwest Laboratory Building, where a hyperbaric chamber for deep-sea experiments is maintained. Before they can leave for that particular lab, however, McGee visits Marks trying to learn more about Banner's and her research; Marks rebuffs him. Then she and Banner leave for the lab.

    In the lab, Banner and Marks try to re-create the conditions of the previous night to find out what happened. But after two hours, they achieve no results similar to what had happened. It is then that Banner learns the potential consequences of the enhanced but uncalibrated gamma injector in the main lab--the possibility exists that he might have bombarded himself with an accidental overdose of gamma radiation. Banner has been fitted with brain-wave recording electrodes, which he wears to sleep.

    But he then again has his nightmare about how his late wife Laura had died--and within seconds of Banner's sudden awakening from it, the creature is tearing up the hyperbaric chamber in blind rage to escape; this time with Marks watching him do so. Marks is able to record what she perceives of the creature, and to calm him down...in consequence of which Banner re-emerges. Marks figures that such anger and emotional stress as Banner's nightmare had caused him is what triggers the transformation; Banner realizes, and says out loud, \"That means it's uncontrollable.\" If the transformations can happen in his sleep or any time his anger builds up, even in his unconscious, then Banner denies that he either has any control over the physical transformations or even remembers what the creature does. He expresses fears that he was wounded because the creature had killed, or had tried to kill, someone the night before. But Marks refuses to believe this, noting that David Banner is not a killer. She notes that the creature embodies Banner's primitive emotions run wild, and that even though the creature may be undisciplined and may tear a hyperbaric pressure chamber apart, because David Banner will not kill, the creature will not kill either. Just then, Banner and Marks are told (by the voice of producer Kenneth Johnson himself) that a Highway Patrol unit is at the entrance awaiting Banner.

    A police officer (Eric Server) notifies Banner that his car's wreckage has been found and gives him twenty-four hours to arrange for clearing the debris; after that, the Highway Patrol will do so and will bill Banner for its work. McGee shows up at the lab, at that point, carrying a plaster cast of what he calls the footprint of a creature, which he calls a \"Hulk,\" that was found near Banner's car. The police officer, however, says that no authoritative proof exists that the footprints found near the car are real, and wants to avoid starting a panic. McGee describes the attacks \"that Hulk\" made on the girl and her father, and Marks gets him to confirm that they were not injured. Banner denies knowing anything about \"that big hulking creature that's attacking people,\" and Marks warns McGee about a deadly strain of microbe supposedly being studied in that lab. Smoking a cigarette, McGee waits for Banner and Marks to leave, then pokes around the lab building on his own. He there finds some evidence of \"that Hulk's\" presence, but not enough for the story he wants to tell.

    Banner and Marks attempt to reverse what has happened to Banner using X-rays, but without success. They leave the main lab and return to the southwest lab, where McGee is hiding out. Startled out of his hiding place in a supply closet, McGee accidentally knocks over a jug of chemical, which spills. Banner and Marks say that the microbe, fortunately for McGee, is now back at the main lab. Banner takes McGee outside, warning him that the Institute is private property and saying that he has never seen this creature McGee is describing. Accused of lying, Banner barely recovers his composure and says jokingly, with a smile, \"Mr. McGee, don't make me angry. You wouldn't like me when I'm angry.\"

    But the spilled chemical now interacts with another chemical, and an explosion results that sets the lab on fire. Banner is appalled to see that Marks has been pinned underneath a large piece of rubble, and his horror and terror boil over as a result--and the creature plunges into the fiery remains of the lab, atttempting to rescue Marks from it.

    Worst of all for Banner, McGee sees him go into the lab, but does NOT see him come OUT OF it. Instead, he sees the creature, \"that Hulk,\" emerge from the lab, holding Marks's body in his arms. Then the remains of the lab burn down; McGee's leg is injured.

    In the woods, Marks, who is now dying from the internal injuries she had sustained, finally admits, addressing that part of the creature, \"that Hulk,\" which still remains Banner, \"Dear, dear David...I have loved you...for such a very...long time...and I always will. And I always will.\" She then dies, and the creature, \"that Hulk,\" roars in grief and rage.

    At Marks's funeral a handful of days later, McGee, now limping on a crutch, meets Culver, who is disgusted at the National Register's coverage of the tragedy. The copy of the National Register McGee holds bears the headline Incredible \"Hulk\" Kills 2. McGee explains to Culver, to whom he acknowledges having seen the Hulk, that he has given a description of the Hulk to law enforcement agencies, and a warrant of criminal arrest, for murder, has been issued in the Hulk's name. The Hulk, McGee says, will not stay hidden for long; when he IS eventually captured, he will become the subject of one of the Twentieth Century's best stories. Disgusted, Culver leaves.

    A handful of hours pass before Banner, very much alive, visits both the cenotaph that marks his \"death\" and the grave of the very dead Marks. He will keep searching for some way to become normal again, and think of some place safer to move his work along those lines. He finally admits, \"I love you, Elaina. I think you loved me too...although you never said it.\"

    Amnesiac for the Hulk's experiences as Banner is, he will never know that Marks had said just that, to the Hulk, immediately before she died.

    Already, David Banner has judged it safer for the general public to continue to believe that he too is dead as a result of the accidental explosion which had ignited the fire that had burned down the Culver Institute's Southwest Laboratory, since, as he himself cannot even remember what happened in the fire, he can never prove that neither he nor the Hulk were responsible for Marks's death. Nor will he be able to stay very long in any one place or with any one family or household or work any one job for very long, to protect anyone else from charges of possibly harboring a criminal suspect. There will be but one set of circumstances under which he will be able to reveal to the general public that he is not dead, and that will be when, somehow, he can find a way to control the raging spirit that dwells within him--the spirit of The Incredible HULK.

    The highly successful series follows from there.

    ","has_staff_review":false,"id":80,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/119711/3332288-untitled.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/119711/3332288-untitled.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/119711/3332288-untitled.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/119711/3332288-untitled.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/119711/3332288-untitled.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/119711/3332288-untitled.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/119711/3332288-untitled.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/119711/3332288-untitled.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/119711/3332288-untitled.png","image_tags":"All Images"},"episode_number":"102","name":"Death in the Family","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-102-death-in-the-family/4070-80/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-16/","id":16,"name":"The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4075-16/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-81/","air_date":"1994-11-19","date_added":"2013-09-24 14:17:40","date_last_updated":"2013-09-25 03:48:13","deck":null,"description":"

    A giant lizard has been spotted in the subways and Jameson is willing to pay $1,000 to the photographer who gets the creature on film. Peter turns to his college professor, Dr. Curt Connors, for answers. But not the answers he expects.

    This episode is loosely based on The Amazing Spider-Man #6.

    ","has_staff_review":false,"id":81,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117930/3333414-spider-man-_the_animated_series_season_1_1.jpg","image_tags":"All Images"},"episode_number":"101","name":"Night of the Lizard","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-animated-series-1994-1998-101-night/4070-81/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-20/","id":20,"name":"Spider-Man: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-animated-series/4075-20/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-82/","air_date":null,"date_added":"2013-09-24 14:17:45","date_last_updated":"2013-10-05 18:20:53","deck":"After a little boy dies in mysterious circumstances, it soon becomes clear that his older brother may also be in danger.","description":null,"has_staff_review":false,"id":82,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332290-x-files009.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332290-x-files009.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332290-x-files009.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332290-x-files009.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332290-x-files009.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332290-x-files009.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332290-x-files009.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332290-x-files009.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332290-x-files009.jpg","image_tags":"All Images"},"episode_number":"221","name":"The Calusari","site_detail_url":"https://comicvine.gamespot.com/the-x-files-221-the-calusari/4070-82/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-83/","air_date":"1992-09-22","date_added":"2013-09-24 14:19:21","date_last_updated":"2014-07-29 06:37:16","deck":null,"description":"

    It's April Fool's Day and Joker unleashes a supply of laughing gas on Gotham City, incapacitating its populace and allowing him to steal things at his leisure. Only Batman, equipped with a gas mask, manages to escape its effects.

    ","has_staff_review":false,"id":83,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332294-04.%20the%20last%20laugh_sep%2024%2C%202013%205.18.52%20pm.png","image_tags":"All Images"},"episode_number":"104","name":"The Last Laugh","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-104-the-last-laugh/4070-83/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-84/","air_date":"2013-04-03","date_added":"2013-09-24 14:19:24","date_last_updated":"2016-02-14 05:25:44","deck":null,"description":"

    GUEST STAR SETH GABLE (“FRINGE”) RETURNS AS THE COUNT — When a young woman meets a violent death after partying at Verdant, Detective Lance and his new partner, Detective Hilton (guest star Roger Cross) inform Oliver and Tommy that she was on the drug Vertigo. Oliver immediately pays a visit to the mental institution where The Count (guest star Gabel) is locked up, but finds he is in no condition to deal drugs. However, when The Count escapes and Starling City is flooded with even more Vertigo-related violence, Oliver and Diggle make it their mission to track him down. After Detective Lance uncovers incriminating evidence against him, Tommy goes to great lengths to clear his name, and the fallout from his actions leads Tommy down a new, unexpected path. In a flashback to the island, Oliver recalls the lessons he learned from Slade (guest star Manu Bennett) and Shado (guest star Celina Jade). Katie Cassidy and Emily Bett Rickards also star. Michael Offer directed the episode written by Bryan Q. Miller & Lindsey Allen.

    ","has_staff_review":false,"id":84,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332293-7166837180-arrow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332293-7166837180-arrow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332293-7166837180-arrow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332293-7166837180-arrow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332293-7166837180-arrow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332293-7166837180-arrow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332293-7166837180-arrow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332293-7166837180-arrow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332293-7166837180-arrow.jpg","image_tags":"All Images"},"episode_number":"119","name":"Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/arrow-119-unfinished-business/4070-84/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-85/","air_date":"1991-09-12","date_added":"2013-09-24 14:20:01","date_last_updated":"2013-09-24 18:32:37","deck":null,"description":"

    Darkwing is sent on a mission by SHUSH to find a missing primatologist

    ","has_staff_review":false,"id":85,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332291-476633-vlcsnap_00243_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332291-476633-vlcsnap_00243_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332291-476633-vlcsnap_00243_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332291-476633-vlcsnap_00243_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332291-476633-vlcsnap_00243_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332291-476633-vlcsnap_00243_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332291-476633-vlcsnap_00243_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332291-476633-vlcsnap_00243_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332291-476633-vlcsnap_00243_super.jpg","image_tags":"All Images"},"episode_number":"106","name":"Apes of Wrath","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-106-apes-of-wrath/4070-85/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-86/","air_date":"1999-10-20","date_added":"2013-09-24 14:20:23","date_last_updated":"2020-01-24 05:49:49","deck":null,"description":"

    Proper Japanese Title: 俺はルフィ!海賊王になる男だ! (Ore wa Luffy! Kaizoku-ou ni naru Otoko da!)

    Countless souls have been lured along the Grand Line in pursuit of the legendary One Piece! Luffy D. Monkey is a young pirate with a dream: to prove the legend true and be king of them all!

    ","has_staff_review":false,"id":86,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3332296-2395105387-24698.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3332296-2395105387-24698.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3332296-2395105387-24698.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3332296-2395105387-24698.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3332296-2395105387-24698.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3332296-2395105387-24698.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3332296-2395105387-24698.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3332296-2395105387-24698.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3332296-2395105387-24698.png","image_tags":"All Images"},"episode_number":"1","name":"I’m Luffy! The Man Who’s Gonna Be King of the Pirates","site_detail_url":"https://comicvine.gamespot.com/one-piece-1-im-luffy-the-man-whos-gonna-be-king-of/4070-86/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-21/","id":21,"name":"One Piece","site_detail_url":"https://comicvine.gamespot.com/one-piece/4075-21/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-87/","air_date":"1992-09-14","date_added":"2013-09-24 14:21:17","date_last_updated":"2013-11-02 15:03:58","deck":null,"description":null,"has_staff_review":false,"id":87,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332297-05.%20pretty%20poison_sep%2024%2C%202013%205.20.32%20pm.png","image_tags":"All Images"},"episode_number":"105","name":"Pretty Poison","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-105-pretty-poison/4070-87/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-88/","air_date":null,"date_added":"2013-09-24 14:22:06","date_last_updated":"2013-09-24 14:23:39","deck":"A dangerous and highly infectious disease is on the loose, but to prevent an epidemic, Mulder and Scully are forced to withhold the truth.","description":null,"has_staff_review":false,"id":88,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332300-f-emasculata-up-133.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332300-f-emasculata-up-133.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332300-f-emasculata-up-133.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332300-f-emasculata-up-133.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332300-f-emasculata-up-133.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332300-f-emasculata-up-133.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332300-f-emasculata-up-133.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332300-f-emasculata-up-133.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332300-f-emasculata-up-133.jpg","image_tags":"All Images"},"episode_number":"222","name":"F. Emasculata","site_detail_url":"https://comicvine.gamespot.com/the-x-files-222-f-emasculata/4070-88/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-89/","air_date":"1992-10-21","date_added":"2013-09-24 14:23:23","date_last_updated":"2014-07-29 07:06:03","deck":null,"description":"

    A series of crimes perpetrated by \"leprechauns\" starts plaguing Gotham City. However, as time goes on Batman discovers that the real perpetrators of the crimes are children, kept in the sewers and ruled by a \"King\" who forces them to remain fully silent.

    ","has_staff_review":false,"id":89,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332302-06.%20the%20underdwellers_sep%2024%2C%202013%205.22.54%20pm.png","image_tags":"All Images"},"episode_number":"106","name":"The Underdwellers","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-106-the-underdwellers/4070-89/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-90/","air_date":"2013-04-24","date_added":"2013-09-24 14:26:15","date_last_updated":"2016-02-14 05:45:38","deck":null,"description":"

    DEADSHOT FIRES OFF A NEW ROUND IN STARLING CITY — Deadshot (guest star Michael Rowe) returns to Starling City after taking down a U.S. Ambassador and six others overseas. By keeping tabs on A.R.G.U.S.’s manhunt for the assassin, Oliver, Diggle, and Felicity (guest star Emily Bett Rickards) learn that a sting operation is underway to capture Deadshot – alive. Diggle is determined to see his brother’s killer dead, with or without Ollie’s help. Meanwhile, Laurel takes drastic steps to protect a young witness, exacerbating friction between Tommy and Oliver. Later, Roy Harper (guest star Colton Haynes) unconventionally pursues all leads to find his new hero, but runs afoul of Detective Lance. Back on the island, Oliver recalls how Shado (guest star Celina Jade) helped him incrementally gain confidence with a bow and hit the target for the first time. Willa Holland and Susanna Thompson also star. Manu Bennett, Byron Mann and Audrey Marie Anderson guest star. Ken Fink directed the episode written by Ben Sokolowski & Beth Schwartz.

    ","has_staff_review":false,"id":90,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332309-5423888823-arrow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332309-5423888823-arrow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332309-5423888823-arrow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332309-5423888823-arrow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332309-5423888823-arrow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332309-5423888823-arrow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332309-5423888823-arrow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332309-5423888823-arrow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332309-5423888823-arrow.jpg","image_tags":"All Images"},"episode_number":"120","name":"Home Invasion","site_detail_url":"https://comicvine.gamespot.com/arrow-120-home-invasion/4070-90/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-91/","air_date":"1992-09-18","date_added":"2013-09-24 14:26:53","date_last_updated":"2014-07-29 07:08:42","deck":null,"description":"

    After a failed bust, Harvey Bullock, Renee Montoya and a rookie, Wilkes, are put under investigation. Each one of them offers up a story on what really happened during their failure. Of course, views seem to conflict and Bullock is quick to blame Batman for the mistakes.

    ","has_staff_review":false,"id":91,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332314-07.%20p.o.v.%20_sep%2024%2C%202013%205.26.09%20pm.png","image_tags":"All Images"},"episode_number":"107","name":"P.O.V.","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-107-p-o-v/4070-91/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-92/","air_date":null,"date_added":"2013-09-24 14:27:05","date_last_updated":"2013-10-05 18:23:08","deck":"After an experiment goes horribly wrong, a scientist becomes afraid of his own shadow, which appears to act of its own volition.","description":null,"has_staff_review":false,"id":92,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332317-x-files-season-2-23-soft-light.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332317-x-files-season-2-23-soft-light.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332317-x-files-season-2-23-soft-light.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332317-x-files-season-2-23-soft-light.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332317-x-files-season-2-23-soft-light.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332317-x-files-season-2-23-soft-light.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332317-x-files-season-2-23-soft-light.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332317-x-files-season-2-23-soft-light.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332317-x-files-season-2-23-soft-light.jpg","image_tags":"All Images"},"episode_number":"223","name":"Soft Light","site_detail_url":"https://comicvine.gamespot.com/the-x-files-223-soft-light/4070-92/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-93/","air_date":null,"date_added":"2013-09-24 14:28:43","date_last_updated":"2013-10-05 18:24:04","deck":"The employees of a chicken processing factory exhibit increasingly bizarre symptoms and behaviour.","description":null,"has_staff_review":false,"id":93,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332298-screenshot01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332298-screenshot01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332298-screenshot01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332298-screenshot01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332298-screenshot01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332298-screenshot01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332298-screenshot01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332298-screenshot01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332298-screenshot01.jpg","image_tags":"All Images"},"episode_number":"224","name":"Our Town","site_detail_url":"https://comicvine.gamespot.com/the-x-files-224-our-town/4070-93/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-94/","air_date":"1992-10-08","date_added":"2013-09-24 14:29:03","date_last_updated":"2014-12-16 00:44:15","deck":null,"description":"

    A rash series of missing homeless people captures the attention of Bruce Wayne who masquerades as a homeless man himself, only to be captured by a crooked kidnapper to a secret mine. Bruce has forgotten his memory and identity well until he resets himself as Batman , but not until getting rescued by Alfred Pennyworth.

    ","has_staff_review":false,"id":94,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332335-08.%20forgotten_sep%2024%2C%202013%205.28.29%20pm.png","image_tags":"All Images"},"episode_number":"108","name":"The Forgotten","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-108-the-forgotten/4070-94/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-95/","air_date":"1992-09-16","date_added":"2013-09-24 14:30:48","date_last_updated":"2014-12-16 00:54:15","deck":null,"description":"

    Hamilton Hill sets up a party for his under-appreciated son Hamilton Hill, Jr. while trying to raise measures towards re-election. Bruce Wayne makes a peaceful public relations visit only to sense a chill from the party clown in the mansion he may suspect to be the Joker.

    ","has_staff_review":false,"id":95,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332340-09.%20be%20a%20clown_sep%2024%2C%202013%205.30.31%20pm.png","image_tags":"All Images"},"episode_number":"109","name":"Be a Clown","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-109-be-a-clown/4070-95/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-96/","air_date":"2013-05-01","date_added":"2013-09-24 14:31:38","date_last_updated":"2016-02-14 05:58:58","deck":null,"description":"

    WITH A LEAD ON WALTER’S WHEREABOUTS, OLIVER GAMBLES ON FELICITY IN THE FIELD — Finding it difficult to mend fences with Tommy and Diggle, Oliver instead focuses on crossing another name off the list. While digging through a crooked accountant’s laptop, Felicity (guest star Emily Bett Rickards) discovers a transaction that could help Oliver find Walter. To reconfirm the lead, Oliver gambles that Felicity can be counted on in the field for the first time. In a flashback, Malcolm (guest star John Barrowman) reveals to Robert Queen (guest star Jamey Sheridan) and Frank Chen (guest star Chin Han) painful details surrounding his wife’s murder, and how that shaped his plans for the Glades. Meanwhile, Tommy stuns Laurel with the truth. Willa Holland and Susanna Thompson also star. Michael Schultz directed the episode written by Jake Coburn & Lana Cho.

    ","has_staff_review":false,"id":96,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332342-7756003849-ar121.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332342-7756003849-ar121.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332342-7756003849-ar121.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332342-7756003849-ar121.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332342-7756003849-ar121.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332342-7756003849-ar121.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332342-7756003849-ar121.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332342-7756003849-ar121.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332342-7756003849-ar121.jpg","image_tags":"All Images"},"episode_number":"121","name":"The Undertaking","site_detail_url":"https://comicvine.gamespot.com/arrow-121-the-undertaking/4070-96/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","id":3,"name":"Arrow","site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-97/","air_date":"1991-09-13","date_added":"2013-09-24 14:31:39","date_last_updated":"2013-09-24 18:32:59","deck":null,"description":"

    Darkwing Duck battles Ammonia Pine of F.O.W.L. with assistance from SHUSH Agent Grizzlikof

    ","has_staff_review":false,"id":97,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332331-477060-vlcsnap_00559_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332331-477060-vlcsnap_00559_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332331-477060-vlcsnap_00559_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332331-477060-vlcsnap_00559_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332331-477060-vlcsnap_00559_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332331-477060-vlcsnap_00559_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332331-477060-vlcsnap_00559_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332331-477060-vlcsnap_00559_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332331-477060-vlcsnap_00559_super.jpg","image_tags":"All Images"},"episode_number":"107","name":"Dirty Money","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck-107-dirty-money/4070-97/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","id":10,"name":"Darkwing Duck","site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-98/","air_date":null,"date_added":"2013-09-24 14:31:39","date_last_updated":"2013-10-05 18:26:24","deck":"A man approaches Mulder with what he claims is irrefutable proof of the existence of alien life.","description":null,"has_staff_review":false,"id":98,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332339-screenshot02.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332339-screenshot02.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332339-screenshot02.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332339-screenshot02.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332339-screenshot02.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332339-screenshot02.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332339-screenshot02.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332339-screenshot02.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332339-screenshot02.jpg","image_tags":"All Images"},"episode_number":"225","name":"Anasazi","site_detail_url":"https://comicvine.gamespot.com/the-x-files-225-anasazi/4070-98/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-99/","air_date":"1992-09-25","date_added":"2013-09-24 14:35:21","date_last_updated":"2015-01-01 22:20:56","deck":null,"description":"

    As Harvey Dent aspires to re-election as District Attorney, his criminal rival Rupert Thorne sets to take embezzlement on Harvey Dent's psychosis with his own psychological file and split personality- not that Batman wouldn't have anything to stop in preventing this evil, until an accident happens.....

    ","has_staff_review":false,"id":99,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332347-10.%20two-face%20part%201_sep%2024%2C%202013%205.34.51%20pm.png","image_tags":"All Images"},"episode_number":"110","name":"Two-Face, Part One","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series-110-two-face-part-one/4070-99/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","id":17,"name":"Batman: The Animated Series","site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-100/","air_date":null,"date_added":"2013-09-24 14:35:22","date_last_updated":"2013-10-05 18:27:31","deck":"Mulder is rumoured to be dead after obtaining a tape full of top secret information. But Scully believes otherwise, and races to find him before anyone else does.","description":null,"has_staff_review":false,"id":100,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332346-cap206.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332346-cap206.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332346-cap206.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332346-cap206.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332346-cap206.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332346-cap206.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332346-cap206.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332346-cap206.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332346-cap206.jpg","image_tags":"All Images"},"episode_number":"301","name":"The Blessing Way","site_detail_url":"https://comicvine.gamespot.com/the-x-files-301-the-blessing-way/4070-100/","series":{"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","id":8,"name":"The X-Files","site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/"}}],"version":"1.0"} \ No newline at end of file diff --git a/packages/client/src/__mocks__/api-response/issue-details.json b/samples/api-data/issue-details/issue-4000-319366.json similarity index 100% rename from packages/client/src/__mocks__/api-response/issue-details.json rename to samples/api-data/issue-details/issue-4000-319366.json diff --git a/samples/api-data/issue-details/issue-4000-44.json b/samples/api-data/issue-details/issue-4000-44.json new file mode 100644 index 0000000..4b20fb5 --- /dev/null +++ b/samples/api-data/issue-details/issue-4000-44.json @@ -0,0 +1,113 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44/", + "associated_images": [], + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21893/", + "id": 21893, + "name": "Satan", + "site_detail_url": "https://comicvine.gamespot.com/satan/4005-21893/" + } + ], + "character_died_in": [], + "concept_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-55939/", + "id": 55939, + "name": "Horror", + "site_detail_url": "https://comicvine.gamespot.com/horror/4015-55939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56442/", + "id": 56442, + "name": "Sadism", + "site_detail_url": "https://comicvine.gamespot.com/sadism/4015-56442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56161/", + "id": 56161, + "name": "Torture", + "site_detail_url": "https://comicvine.gamespot.com/torture/4015-56161/" + } + ], + "cover_date": "1952-11-30", + "date_added": "2008-06-06 11:10:20", + "date_last_updated": "2016-12-14 18:14:06", + "deck": null, + "description": null, + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 44, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/43-1536-44-1-weird-terror.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/43-1536-44-1-weird-terror.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/43-1536-44-1-weird-terror.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/43-1536-44-1-weird-terror.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/4/43-1536-44-1-weird-terror.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/4/43-1536-44-1-weird-terror.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/43-1536-44-1-weird-terror.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/4/43-1536-44-1-weird-terror.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/4/43-1536-44-1-weird-terror.jpg", + "image_tags": "All Images" + }, + "issue_number": "2", + "location_credits": [], + "name": null, + "object_credits": [], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-6609/", + "id": 6609, + "name": "Don Heck", + "site_detail_url": "https://comicvine.gamespot.com/don-heck/4040-6609/", + "role": "artist" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-43649/", + "id": 43649, + "name": "H.C. Kiefer", + "site_detail_url": "https://comicvine.gamespot.com/hc-kiefer/4040-43649/", + "role": "cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-2625/", + "id": 2625, + "name": "Pete Morisi", + "site_detail_url": "https://comicvine.gamespot.com/pete-morisi/4040-2625/", + "role": "artist" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/weird-terror-2/4000-44/", + "store_date": null, + "story_arc_credits": [], + "team_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59088/", + "id": 59088, + "name": "Gnomes", + "site_detail_url": "https://comicvine.gamespot.com/gnomes/4060-59088/" + } + ], + "team_disbanded_in": [], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1536/", + "id": 1536, + "name": "Weird Terror", + "site_detail_url": "https://comicvine.gamespot.com/weird-terror/4050-1536/" + } + }, + "version": "1.0" +} diff --git a/samples/api-data/issue-details/issue-4000-52.json b/samples/api-data/issue-details/issue-4000-52.json new file mode 100644 index 0000000..fe5aa3b --- /dev/null +++ b/samples/api-data/issue-details/issue-4000-52.json @@ -0,0 +1,106 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-52/", + "associated_images": [], + "character_credits": [], + "character_died_in": [], + "concept_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56133/", + "id": 56133, + "name": "War", + "site_detail_url": "https://comicvine.gamespot.com/war/4015-56133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56025/", + "id": 56025, + "name": "World War II", + "site_detail_url": "https://comicvine.gamespot.com/world-war-ii/4015-56025/" + } + ], + "cover_date": "1952-11-01", + "date_added": "2008-06-06 11:10:21", + "date_last_updated": "2022-07-28 18:58:25", + "deck": null, + "description": null, + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 52, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/4/51-1543-52-1-star-spangled-war-st.jpg", + "image_tags": "All Images" + }, + "issue_number": "3", + "location_credits": [], + "name": "''Hundred-Mission'' Mitchell", + "object_credits": [], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-21274/", + "id": 21274, + "name": "Curt Swan", + "site_detail_url": "https://comicvine.gamespot.com/curt-swan/4040-21274/", + "role": "penciler" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-33524/", + "id": 33524, + "name": "Ramona Fradon", + "site_detail_url": "https://comicvine.gamespot.com/ramona-fradon/4040-33524/", + "role": "penciler, inker" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-39532/", + "id": 39532, + "name": "Stan Kaye", + "site_detail_url": "https://comicvine.gamespot.com/stan-kaye/4040-39532/", + "role": "inker" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/star-spangled-war-stories-3-hundred-mission-mitche/4000-52/", + "store_date": null, + "story_arc_credits": [], + "team_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49867/", + "id": 49867, + "name": "Nazis", + "site_detail_url": "https://comicvine.gamespot.com/nazis/4060-49867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44415/", + "id": 44415, + "name": "United States Army", + "site_detail_url": "https://comicvine.gamespot.com/united-states-army/4060-44415/" + } + ], + "team_disbanded_in": [], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1543/", + "id": 1543, + "name": "Star Spangled War Stories", + "site_detail_url": "https://comicvine.gamespot.com/star-spangled-war-stories/4050-1543/" + } + }, + "version": "1.0" +} diff --git a/samples/api-data/issue-details/issue-4000-64.json b/samples/api-data/issue-details/issue-4000-64.json new file mode 100644 index 0000000..68af4e1 --- /dev/null +++ b/samples/api-data/issue-details/issue-4000-64.json @@ -0,0 +1,120 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64/", + "associated_images": [], + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3920/", + "id": 3920, + "name": "The Crypt-Keeper", + "site_detail_url": "https://comicvine.gamespot.com/the-crypt-keeper/4005-3920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48147/", + "id": 48147, + "name": "The Old Witch", + "site_detail_url": "https://comicvine.gamespot.com/the-old-witch/4005-48147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3807/", + "id": 3807, + "name": "The Vault-Keeper", + "site_detail_url": "https://comicvine.gamespot.com/the-vault-keeper/4005-3807/" + } + ], + "character_died_in": [], + "concept_credits": [], + "cover_date": "1952-12-01", + "date_added": "2008-06-06 11:10:02", + "date_last_updated": "2018-10-09 11:27:51", + "deck": null, + "description": null, + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 64, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/63-1398-64-1-haunt-of-fear.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/63-1398-64-1-haunt-of-fear.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/63-1398-64-1-haunt-of-fear.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/63-1398-64-1-haunt-of-fear.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/4/63-1398-64-1-haunt-of-fear.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/4/63-1398-64-1-haunt-of-fear.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/63-1398-64-1-haunt-of-fear.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/4/63-1398-64-1-haunt-of-fear.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/4/63-1398-64-1-haunt-of-fear.jpg", + "image_tags": "All Images" + }, + "issue_number": "16", + "location_credits": [], + "name": null, + "object_credits": [], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-43465/", + "id": 43465, + "name": "Al Feldstein", + "site_detail_url": "https://comicvine.gamespot.com/al-feldstein/4040-43465/", + "role": "writer, editor" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-26392/", + "id": 26392, + "name": "George Evans", + "site_detail_url": "https://comicvine.gamespot.com/george-evans/4040-26392/", + "role": "penciler, inker" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-40150/", + "id": 40150, + "name": "Graham Ingels", + "site_detail_url": "https://comicvine.gamespot.com/graham-ingels/4040-40150/", + "role": "penciler, inker, cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-3914/", + "id": 3914, + "name": "Jack Davis", + "site_detail_url": "https://comicvine.gamespot.com/jack-davis/4040-3914/", + "role": "penciler, inker" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-40057/", + "id": 40057, + "name": "Jack Kamen", + "site_detail_url": "https://comicvine.gamespot.com/jack-kamen/4040-40057/", + "role": "penciler, inker" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-3492/", + "id": 3492, + "name": "Marie Severin", + "site_detail_url": "https://comicvine.gamespot.com/marie-severin/4040-3492/", + "role": "colorist" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/haunt-of-fear-16/4000-64/", + "store_date": null, + "story_arc_credits": [], + "team_credits": [], + "team_disbanded_in": [], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1398/", + "id": 1398, + "name": "Haunt of Fear", + "site_detail_url": "https://comicvine.gamespot.com/haunt-of-fear/4050-1398/" + } + }, + "version": "1.0" +} diff --git a/samples/api-data/issue-details/issue-4000-68.json b/samples/api-data/issue-details/issue-4000-68.json new file mode 100644 index 0000000..2e46c7b --- /dev/null +++ b/samples/api-data/issue-details/issue-4000-68.json @@ -0,0 +1,103 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68/", + "associated_images": [], + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2350/", + "id": 2350, + "name": "Billy Batson", + "site_detail_url": "https://comicvine.gamespot.com/billy-batson/4005-2350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19152/", + "id": 19152, + "name": "Golden Arrow", + "site_detail_url": "https://comicvine.gamespot.com/golden-arrow/4005-19152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19146/", + "id": 19146, + "name": "Ibis the Invincible", + "site_detail_url": "https://comicvine.gamespot.com/ibis-the-invincible/4005-19146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63413/", + "id": 63413, + "name": "Lance O'Casey", + "site_detail_url": "https://comicvine.gamespot.com/lance-ocasey/4005-63413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19155/", + "id": 19155, + "name": "Spy Smasher", + "site_detail_url": "https://comicvine.gamespot.com/spy-smasher/4005-19155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40329/", + "id": 40329, + "name": "Taia", + "site_detail_url": "https://comicvine.gamespot.com/taia/4005-40329/" + } + ], + "character_died_in": [], + "concept_credits": [], + "cover_date": "1952-11-01", + "date_added": "2008-06-06 11:09:18", + "date_last_updated": "2022-07-07 12:22:21", + "deck": null, + "description": null, + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 68, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/67-843-68-1-whiz-comics.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/67-843-68-1-whiz-comics.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/67-843-68-1-whiz-comics.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/67-843-68-1-whiz-comics.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/4/67-843-68-1-whiz-comics.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/4/67-843-68-1-whiz-comics.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/67-843-68-1-whiz-comics.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/4/67-843-68-1-whiz-comics.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/4/67-843-68-1-whiz-comics.jpg", + "image_tags": "All Images" + }, + "issue_number": "151", + "location_credits": [], + "name": null, + "object_credits": [], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-38780/", + "id": 38780, + "name": "Pete Costanza", + "site_detail_url": "https://comicvine.gamespot.com/pete-costanza/4040-38780/", + "role": "penciler, inker" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/whiz-comics-151/4000-68/", + "store_date": null, + "story_arc_credits": [], + "team_credits": [], + "team_disbanded_in": [], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-843/", + "id": 843, + "name": "Whiz Comics", + "site_detail_url": "https://comicvine.gamespot.com/whiz-comics/4050-843/" + } + }, + "version": "1.0" +} diff --git a/samples/api-data/issue-details/issue-4000-768300.json b/samples/api-data/issue-details/issue-4000-768300.json new file mode 100644 index 0000000..84d1951 --- /dev/null +++ b/samples/api-data/issue-details/issue-4000-768300.json @@ -0,0 +1,591 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-768300/", + "associated_images": [ + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423217-01-variant.jpg", + "id": 7423217, + "caption": null, + "image_tags": "All Images" + }, + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423216-01-variant.jpg", + "id": 7423216, + "caption": null, + "image_tags": "All Images" + }, + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423214-01-variant.jpg", + "id": 7423214, + "caption": null, + "image_tags": "All Images" + }, + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423213-01-1-25.jpg", + "id": 7423213, + "caption": null, + "image_tags": "All Images" + }, + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423210-01-1-100.jpg", + "id": 7423210, + "caption": null, + "image_tags": "All Images" + }, + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423209-01-midnight-party.jpg", + "id": 7423209, + "caption": null, + "image_tags": "All Images" + }, + { + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423208-01-variant.jpg", + "id": 7423208, + "caption": null, + "image_tags": "All Images" + } + ], + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79928/", + "id": 79928, + "name": "Alec Holland", + "site_detail_url": "https://comicvine.gamespot.com/alec-holland/4005-79928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12165/", + "id": 12165, + "name": "Anti-Monitor", + "site_detail_url": "https://comicvine.gamespot.com/anti-monitor/4005-12165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2357/", + "id": 2357, + "name": "Aquaman", + "site_detail_url": "https://comicvine.gamespot.com/aquaman/4005-2357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88687/", + "id": 88687, + "name": "Barbatos", + "site_detail_url": "https://comicvine.gamespot.com/barbatos/4005-88687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22804/", + "id": 22804, + "name": "Barry Allen", + "site_detail_url": "https://comicvine.gamespot.com/barry-allen/4005-22804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1699/", + "id": 1699, + "name": "Batman", + "site_detail_url": "https://comicvine.gamespot.com/batman/4005-1699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141840/", + "id": 141840, + "name": "Batman Who Laughs", + "site_detail_url": "https://comicvine.gamespot.com/batman-who-laughs/4005-141840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2350/", + "id": 2350, + "name": "Billy Batson", + "site_detail_url": "https://comicvine.gamespot.com/billy-batson/4005-2350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2392/", + "id": 2392, + "name": "Captain Cold", + "site_detail_url": "https://comicvine.gamespot.com/captain-cold/4005-2392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165617/", + "id": 165617, + "name": "Castle Bat", + "site_detail_url": "https://comicvine.gamespot.com/castle-bat/4005-165617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164460/", + "id": 164460, + "name": "Darkfather", + "site_detail_url": "https://comicvine.gamespot.com/darkfather/4005-164460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2349/", + "id": 2349, + "name": "Darkseid", + "site_detail_url": "https://comicvine.gamespot.com/darkseid/4005-2349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141673/", + "id": 141673, + "name": "Dawnbreaker", + "site_detail_url": "https://comicvine.gamespot.com/dawnbreaker/4005-141673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59487/", + "id": 59487, + "name": "Dax Novu", + "site_detail_url": "https://comicvine.gamespot.com/dax-novu/4005-59487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142475/", + "id": 142475, + "name": "Devastator", + "site_detail_url": "https://comicvine.gamespot.com/devastator/4005-142475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3763/", + "id": 3763, + "name": "Eclipso", + "site_detail_url": "https://comicvine.gamespot.com/eclipso/4005-3763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7367/", + "id": 7367, + "name": "Etrigan", + "site_detail_url": "https://comicvine.gamespot.com/etrigan/4005-7367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11202/", + "id": 11202, + "name": "Hal Jordan", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan/4005-11202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1696/", + "id": 1696, + "name": "Harley Quinn", + "site_detail_url": "https://comicvine.gamespot.com/harley-quinn/4005-1696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27541/", + "id": 27541, + "name": "Jeremiah Arkham", + "site_detail_url": "https://comicvine.gamespot.com/jeremiah-arkham/4005-27541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1702/", + "id": 1702, + "name": "Joker", + "site_detail_url": "https://comicvine.gamespot.com/joker/4005-1702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3614/", + "id": 3614, + "name": "Jonah Hex", + "site_detail_url": "https://comicvine.gamespot.com/jonah-hex/4005-3614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61907/", + "id": 61907, + "name": "Kingdom Come Batman", + "site_detail_url": "https://comicvine.gamespot.com/kingdom-come-batman/4005-61907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6578/", + "id": 6578, + "name": "Lobo", + "site_detail_url": "https://comicvine.gamespot.com/lobo/4005-6578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5703/", + "id": 5703, + "name": "Mr. Miracle", + "site_detail_url": "https://comicvine.gamespot.com/mr-miracle/4005-5703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141533/", + "id": 141533, + "name": "Murder Machine", + "site_detail_url": "https://comicvine.gamespot.com/murder-machine/4005-141533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41293/", + "id": 41293, + "name": "Parallax", + "site_detail_url": "https://comicvine.gamespot.com/parallax/4005-41293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151229/", + "id": 151229, + "name": "Perpetua", + "site_detail_url": "https://comicvine.gamespot.com/perpetua/4005-151229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140883/", + "id": 140883, + "name": "Red Death", + "site_detail_url": "https://comicvine.gamespot.com/red-death/4005-140883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3718/", + "id": 3718, + "name": "Riddler", + "site_detail_url": "https://comicvine.gamespot.com/riddler/4005-3718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3604/", + "id": 3604, + "name": "Sgt. Rock", + "site_detail_url": "https://comicvine.gamespot.com/sgt-rock/4005-3604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40756/", + "id": 40756, + "name": "Superboy Prime", + "site_detail_url": "https://comicvine.gamespot.com/superboy-prime/4005-40756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1807/", + "id": 1807, + "name": "Superman", + "site_detail_url": "https://comicvine.gamespot.com/superman/4005-1807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40501/", + "id": 40501, + "name": "Terry McGinnis", + "site_detail_url": "https://comicvine.gamespot.com/terry-mcginnis/4005-40501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141985/", + "id": 141985, + "name": "The Drowned", + "site_detail_url": "https://comicvine.gamespot.com/the-drowned/4005-141985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142058/", + "id": 142058, + "name": "The Merciless", + "site_detail_url": "https://comicvine.gamespot.com/the-merciless/4005-142058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23879/", + "id": 23879, + "name": "Wally West", + "site_detail_url": "https://comicvine.gamespot.com/wally-west/4005-23879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2048/", + "id": 2048, + "name": "Wonder Woman", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman/4005-2048/" + } + ], + "character_died_in": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141840/", + "id": 141840, + "name": "Batman Who Laughs", + "site_detail_url": "https://comicvine.gamespot.com/batman-who-laughs/4005-141840/" + } + ], + "concept_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-40617/", + "id": 40617, + "name": "Alternate Reality", + "site_detail_url": "https://comicvine.gamespot.com/alternate-reality/4015-40617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-57337/", + "id": 57337, + "name": "Blank Sketch Cover", + "site_detail_url": "https://comicvine.gamespot.com/blank-sketch-cover/4015-57337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-57479/", + "id": 57479, + "name": "Dark Multiverse", + "site_detail_url": "https://comicvine.gamespot.com/dark-multiverse/4015-57479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-43603/", + "id": 43603, + "name": "DC Multiverse", + "site_detail_url": "https://comicvine.gamespot.com/dc-multiverse/4015-43603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56207/", + "id": 56207, + "name": "Flashback ", + "site_detail_url": "https://comicvine.gamespot.com/flashback/4015-56207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56593/", + "id": 56593, + "name": "Imprisonment", + "site_detail_url": "https://comicvine.gamespot.com/imprisonment/4015-56593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56263/", + "id": 56263, + "name": "Murder", + "site_detail_url": "https://comicvine.gamespot.com/murder/4015-56263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56347/", + "id": 56347, + "name": "Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/resurrection/4015-56347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-56059/", + "id": 56059, + "name": "Robots", + "site_detail_url": "https://comicvine.gamespot.com/robots/4015-56059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-48870/", + "id": 48870, + "name": "The Source", + "site_detail_url": "https://comicvine.gamespot.com/the-source/4015-48870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-57572/", + "id": 57572, + "name": "Undead", + "site_detail_url": "https://comicvine.gamespot.com/undead/4015-57572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/concept/4015-57349/", + "id": 57349, + "name": "Variant Cover", + "site_detail_url": "https://comicvine.gamespot.com/variant-cover/4015-57349/" + } + ], + "cover_date": "2020-08-01", + "date_added": "2020-06-16 12:24:40", + "date_last_updated": "2020-06-16 13:32:37", + "deck": " ", + "description": "

    Get ready for the earth-shattering encore! The legendary team behind Dark Nights: Metal and Batman: Last Knight on Earth take center stage and reunite for one last tour.

    When the Earth is enveloped by the Dark Multiverse, the Justice League is at the mercy of the Batman Who Laughs. Humanity struggles to survive in a hellish landscape twisted beyond recognition, while Batman, Wonder Woman, and Superman have all been separated and fight to survive. Unleash the beast and let the head banging begin!

    Contents

    • Dead Beats
    • Power Chords
    • The Chainsaw of Truth

    List of covers and their creators:

    CoverNameCreator(s)Sidebar Location
    RegRegular CoverGreg Capullo, Jonathan Glapion & FCO Plascencia1
    VarVariant Cover (Trinity)David Finch & Steve Firchow2
    VarVariant Cover (Superman)Francesco Mattina3
    VarVariant Cover (Wonder Woman)Artgerm4
    Var1:25 Variant CoverDoug Mahnke5
    Var1:100 Variant CoverGreg Capullo, Jonathan Glapion & FCO Plascencia6
    VarMidnight Party Variant CoverGreg Capullo & Jonathan Glapion7
    VarBlank Black Variant CoverNone8
    ", + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 768300, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/7423185-01.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/7423185-01.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/7423185-01.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/7423185-01.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/7423185-01.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/7423185-01.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/7423185-01.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/7423185-01.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/67663/7423185-01.jpg", + "image_tags": "All Images" + }, + "issue_number": "1", + "location_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-31682/", + "id": 31682, + "name": "Arkham Asylum", + "site_detail_url": "https://comicvine.gamespot.com/arkham-asylum/4020-31682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-57183/", + "id": 57183, + "name": "Earth", + "site_detail_url": "https://comicvine.gamespot.com/earth/4020-57183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-56254/", + "id": 56254, + "name": "Space", + "site_detail_url": "https://comicvine.gamespot.com/space/4020-56254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-56187/", + "id": 56187, + "name": "Themyscira", + "site_detail_url": "https://comicvine.gamespot.com/themyscira/4020-56187/" + } + ], + "name": "An Anti-Crisis Part I: It All Matters", + "object_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-55745/", + "id": 55745, + "name": "Bat-Suit", + "site_detail_url": "https://comicvine.gamespot.com/bat-suit/4055-55745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-55739/", + "id": 55739, + "name": "Black Power Ring", + "site_detail_url": "https://comicvine.gamespot.com/black-power-ring/4055-55739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-57539/", + "id": 57539, + "name": "Rexie", + "site_detail_url": "https://comicvine.gamespot.com/rexie/4055-57539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-43539/", + "id": 43539, + "name": "Wonder Woman's Invisible Plane", + "site_detail_url": "https://comicvine.gamespot.com/wonder-womans-invisible-plane/4055-43539/" + } + ], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-84502/", + "id": 84502, + "name": "Andrew Marino", + "site_detail_url": "https://comicvine.gamespot.com/andrew-marino/4040-84502/", + "role": "editor, other" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-107027/", + "id": 107027, + "name": "Darran Robinson", + "site_detail_url": "https://comicvine.gamespot.com/darran-robinson/4040-107027/", + "role": "other, designer" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-3226/", + "id": 3226, + "name": "David Finch", + "site_detail_url": "https://comicvine.gamespot.com/david-finch/4040-3226/", + "role": "cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-1533/", + "id": 1533, + "name": "Doug Mahnke", + "site_detail_url": "https://comicvine.gamespot.com/doug-mahnke/4040-1533/", + "role": "cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-55700/", + "id": 55700, + "name": "FCO Plascencia", + "site_detail_url": "https://comicvine.gamespot.com/fco-plascencia/4040-55700/", + "role": "colorist, cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-55967/", + "id": 55967, + "name": "Francesco Mattina", + "site_detail_url": "https://comicvine.gamespot.com/francesco-mattina/4040-55967/", + "role": "cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-3379/", + "id": 3379, + "name": "Greg Capullo", + "site_detail_url": "https://comicvine.gamespot.com/greg-capullo/4040-3379/", + "role": "penciler, cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-110293/", + "id": 110293, + "name": "Jared Blando", + "site_detail_url": "https://comicvine.gamespot.com/jared-blando/4040-110293/", + "role": "other" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-41794/", + "id": 41794, + "name": "Jonathan Glapion", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-glapion/4040-41794/", + "role": "inker, cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-25538/", + "id": 25538, + "name": "Marie Javins", + "site_detail_url": "https://comicvine.gamespot.com/marie-javins/4040-25538/", + "role": "editor" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-58926/", + "id": 58926, + "name": "Scott Snyder", + "site_detail_url": "https://comicvine.gamespot.com/scott-snyder/4040-58926/", + "role": "writer" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-57165/", + "id": 57165, + "name": "Stanley Lau", + "site_detail_url": "https://comicvine.gamespot.com/stanley-lau/4040-57165/", + "role": "cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-13762/", + "id": 13762, + "name": "Steve Firchow", + "site_detail_url": "https://comicvine.gamespot.com/steve-firchow/4040-13762/", + "role": "cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-83732/", + "id": 83732, + "name": "Tom Napolitano", + "site_detail_url": "https://comicvine.gamespot.com/tom-napolitano/4040-83732/", + "role": "letterer" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal-1-an-anti-crisis-part-i-it/4000-768300/", + "store_date": "2020-06-16", + "story_arc_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59509/", + "id": 59509, + "name": "Dark Nights", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights/4045-59509/" + } + ], + "team_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-31815/", + "id": 31815, + "name": "Justice League of America", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america/4060-31815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64281/", + "id": 64281, + "name": "Robins", + "site_detail_url": "https://comicvine.gamespot.com/robins/4060-64281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63197/", + "id": 63197, + "name": "The Dark Knights", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-knights/4060-63197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44930/", + "id": 44930, + "name": "Zombies", + "site_detail_url": "https://comicvine.gamespot.com/zombies/4060-44930/" + } + ], + "team_disbanded_in": [], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127927/", + "id": 127927, + "name": "Dark Nights: Death Metal", + "site_detail_url": "https://comicvine.gamespot.com/dark-nights-death-metal/4050-127927/" + } + }, + "version": "1.0" +} diff --git a/samples/api-data/issue-details/issue-4000-85.json b/samples/api-data/issue-details/issue-4000-85.json new file mode 100644 index 0000000..7ee9958 --- /dev/null +++ b/samples/api-data/issue-details/issue-4000-85.json @@ -0,0 +1,122 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-85/", + "associated_images": [], + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29507/", + "id": 29507, + "name": "Andre Blanc-Dumont", + "site_detail_url": "https://comicvine.gamespot.com/andre-blanc-dumont/4005-29507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35166/", + "id": 35166, + "name": "Blackhawk", + "site_detail_url": "https://comicvine.gamespot.com/blackhawk/4005-35166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31309/", + "id": 31309, + "name": "Chop-Chop", + "site_detail_url": "https://comicvine.gamespot.com/chop-chop/4005-31309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58639/", + "id": 58639, + "name": "Chuck Wilson", + "site_detail_url": "https://comicvine.gamespot.com/chuck-wilson/4005-58639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31308/", + "id": 31308, + "name": "Hans Hendrickson", + "site_detail_url": "https://comicvine.gamespot.com/hans-hendrickson/4005-31308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31310/", + "id": 31310, + "name": "Olaf Friedriksen", + "site_detail_url": "https://comicvine.gamespot.com/olaf-friedriksen/4005-31310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75478/", + "id": 75478, + "name": "Spider", + "site_detail_url": "https://comicvine.gamespot.com/spider/4005-75478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31307/", + "id": 31307, + "name": "Stanislaus Drozdowski", + "site_detail_url": "https://comicvine.gamespot.com/stanislaus-drozdowski/4005-31307/" + } + ], + "character_died_in": [], + "concept_credits": [], + "cover_date": "1952-11-01", + "date_added": "2008-06-06 11:09:32", + "date_last_updated": "2013-08-09 07:36:08", + "deck": null, + "description": null, + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": false, + "id": 85, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/84-989-85-1-blackhawk.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/84-989-85-1-blackhawk.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/84-989-85-1-blackhawk.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/84-989-85-1-blackhawk.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/4/84-989-85-1-blackhawk.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/4/84-989-85-1-blackhawk.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/84-989-85-1-blackhawk.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/4/84-989-85-1-blackhawk.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/4/84-989-85-1-blackhawk.jpg", + "image_tags": "All Images" + }, + "issue_number": "58", + "location_credits": [], + "name": "King Cobra", + "object_credits": [], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-31165/", + "id": 31165, + "name": "Reed Crandall", + "site_detail_url": "https://comicvine.gamespot.com/reed-crandall/4040-31165/", + "role": "cover" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/blackhawk-58-king-cobra/4000-85/", + "store_date": null, + "story_arc_credits": [], + "team_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-24605/", + "id": 24605, + "name": "Blackhawk Squadron", + "site_detail_url": "https://comicvine.gamespot.com/blackhawk-squadron/4060-24605/" + } + ], + "team_disbanded_in": [], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1819/", + "id": 1819, + "name": "Blackhawk", + "site_detail_url": "https://comicvine.gamespot.com/blackhawk/4050-1819/" + } + }, + "version": "1.0" +} diff --git a/samples/api-data/issue-list-item/issues.json b/samples/api-data/issue-list-item/issues.json new file mode 100644 index 0000000..ea5ca8b --- /dev/null +++ b/samples/api-data/issue-list-item/issues.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":895749,"status_code":1,"results":[{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:16","date_last_updated":"2022-07-11 23:51:22","deck":null,"description":"

    The horrors of:

    - Lost race!

    - The man germ!

    - Man in the hood!

    - The things!

    -Stories behind the stars, featuring the legendary battle between Hercules, Hydra and Iolaus!

    Plus, two page long prose-stories.

    ","has_staff_review":false,"id":6,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58993/2645776-chamber_of_chills__13_cgc_8.5.jpg","image_tags":"All Images"},"associated_images":[{"original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/7-1487-6-1-chamber-of-chills.jpg","id":7,"caption":null,"image_tags":"All Images"}],"issue_number":"13","name":"The Lost Race","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-magazine-13-the-lost-race/4000-6/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1487/","id":1487,"name":"Chamber of Chills Magazine","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-magazine/4050-1487/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:16","date_last_updated":"2022-07-11 11:31:27","deck":null,"description":null,"has_staff_review":false,"id":7,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/8-1488-7-1-fighting-fronts-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/8-1488-7-1-fighting-fronts-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/8-1488-7-1-fighting-fronts-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/8-1488-7-1-fighting-fronts-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/8-1488-7-1-fighting-fronts-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/8-1488-7-1-fighting-fronts-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/8-1488-7-1-fighting-fronts-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/8-1488-7-1-fighting-fronts-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/8-1488-7-1-fighting-fronts-.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":null,"site_detail_url":"https://comicvine.gamespot.com/fighting-fronts-3/4000-7/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1488/","id":1488,"name":"Fighting Fronts!","site_detail_url":"https://comicvine.gamespot.com/fighting-fronts/4050-1488/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8/","cover_date":"1952-10-31","date_added":"2008-06-06 11:10:16","date_last_updated":"2017-03-13 08:55:38","deck":null,"description":null,"has_staff_review":false,"id":8,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/9-1489-8-1-tomb-of-terror.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/9-1489-8-1-tomb-of-terror.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/9-1489-8-1-tomb-of-terror.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/9-1489-8-1-tomb-of-terror.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/9-1489-8-1-tomb-of-terror.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/9-1489-8-1-tomb-of-terror.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/9-1489-8-1-tomb-of-terror.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/9-1489-8-1-tomb-of-terror.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/9-1489-8-1-tomb-of-terror.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"5","name":null,"site_detail_url":"https://comicvine.gamespot.com/tomb-of-terror-5/4000-8/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1489/","id":1489,"name":"Tomb of Terror","site_detail_url":"https://comicvine.gamespot.com/tomb-of-terror/4050-1489/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:05","date_last_updated":"2022-07-11 07:14:32","deck":null,"description":null,"has_staff_review":false,"id":9,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/10-1418-9-1-witches-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/10-1418-9-1-witches-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/10-1418-9-1-witches-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/10-1418-9-1-witches-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/10-1418-9-1-witches-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/10-1418-9-1-witches-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/10-1418-9-1-witches-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/10-1418-9-1-witches-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/10-1418-9-1-witches-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"15","name":null,"site_detail_url":"https://comicvine.gamespot.com/witches-tales-15/4000-9/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1418/","id":1418,"name":"Witches Tales","site_detail_url":"https://comicvine.gamespot.com/witches-tales/4050-1418/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10/","cover_date":"1950-03-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-20 15:33:01","deck":null,"description":"

    Volume 7 Issue 02

    Stories In This Issue...

    Airboy

    Yermak - Of the Steppers

    The Breaks of the Game

    Championship Stuff

    The Heap

    ","has_staff_review":false,"id":10,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/11-1069-10-1-airboy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/11-1069-10-1-airboy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/11-1069-10-1-airboy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/11-1069-10-1-airboy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/11-1069-10-1-airboy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/11-1069-10-1-airboy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/11-1069-10-1-airboy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/11-1069-10-1-airboy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/11-1069-10-1-airboy-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"73","name":null,"site_detail_url":"https://comicvine.gamespot.com/airboy-comics-73/4000-10/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1069/","id":1069,"name":"Airboy Comics","site_detail_url":"https://comicvine.gamespot.com/airboy-comics/4050-1069/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:51","date_last_updated":"2022-07-10 00:48:06","deck":null,"description":null,"has_staff_review":false,"id":11,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/12-1253-11-1-black-diamond-wester.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/12-1253-11-1-black-diamond-wester.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/12-1253-11-1-black-diamond-wester.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/12-1253-11-1-black-diamond-wester.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/12-1253-11-1-black-diamond-wester.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/12-1253-11-1-black-diamond-wester.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/12-1253-11-1-black-diamond-wester.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/12-1253-11-1-black-diamond-wester.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/12-1253-11-1-black-diamond-wester.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"39","name":null,"site_detail_url":"https://comicvine.gamespot.com/black-diamond-western-39/4000-11/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1253/","id":1253,"name":"Black Diamond Western","site_detail_url":"https://comicvine.gamespot.com/black-diamond-western/4050-1253/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:30","date_last_updated":"2022-07-11 04:12:42","deck":null,"description":null,"has_staff_review":false,"id":12,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/13-942-12-1-boy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/13-942-12-1-boy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/13-942-12-1-boy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/13-942-12-1-boy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/13-942-12-1-boy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/13-942-12-1-boy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/13-942-12-1-boy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/13-942-12-1-boy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/13-942-12-1-boy-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"82","name":null,"site_detail_url":"https://comicvine.gamespot.com/boy-comics-82/4000-12/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-942/","id":942,"name":"Boy Comics","site_detail_url":"https://comicvine.gamespot.com/boy-comics/4050-942/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:07","date_last_updated":"2022-07-05 02:12:05","deck":null,"description":null,"has_staff_review":false,"id":13,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/14-1441-13-1-best-of-the-west.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/14-1441-13-1-best-of-the-west.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/14-1441-13-1-best-of-the-west.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/14-1441-13-1-best-of-the-west.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/14-1441-13-1-best-of-the-west.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/14-1441-13-1-best-of-the-west.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/14-1441-13-1-best-of-the-west.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/14-1441-13-1-best-of-the-west.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/14-1441-13-1-best-of-the-west.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"5","name":null,"site_detail_url":"https://comicvine.gamespot.com/best-of-the-west-5/4000-13/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1441/","id":1441,"name":"Best of the West","site_detail_url":"https://comicvine.gamespot.com/best-of-the-west/4050-1441/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:47","date_last_updated":"2022-07-10 00:41:23","deck":null,"description":null,"has_staff_review":false,"id":15,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/16-1223-15-1-tim-holt.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/16-1223-15-1-tim-holt.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/16-1223-15-1-tim-holt.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/16-1223-15-1-tim-holt.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/16-1223-15-1-tim-holt.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/16-1223-15-1-tim-holt.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/16-1223-15-1-tim-holt.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/16-1223-15-1-tim-holt.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/16-1223-15-1-tim-holt.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"32","name":null,"site_detail_url":"https://comicvine.gamespot.com/tim-holt-32/4000-15/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1223/","id":1223,"name":"Tim Holt","site_detail_url":"https://comicvine.gamespot.com/tim-holt/4050-1223/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16/","cover_date":"1952-10-31","date_added":"2008-06-06 11:10:16","date_last_updated":"2022-05-07 08:52:54","deck":null,"description":"

    A murderer runs from the police and finds himself in a bar. He seems to be alone with just a bartender until the ghosts of those he's killed keep him company.

    Five Mysterious stories in this issue:

    • Hands Off!
    • Revenge from Beyond
    • The Corpse!
    • I Didn't See a Thing
    • The Stroke of Midnight!
    ","has_staff_review":false,"id":16,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/17-1497-16-1-journey-into-mystery.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/17-1497-16-1-journey-into-mystery.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/17-1497-16-1-journey-into-mystery.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/17-1497-16-1-journey-into-mystery.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/17-1497-16-1-journey-into-mystery.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/17-1497-16-1-journey-into-mystery.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/17-1497-16-1-journey-into-mystery.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/17-1497-16-1-journey-into-mystery.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/17-1497-16-1-journey-into-mystery.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":"Hands Off!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-3-hands-off/4000-16/","store_date":"1952-07-01","volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1497/","id":1497,"name":"Journey into Mystery","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery/4050-1497/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:07","date_last_updated":"2022-07-25 19:20:56","deck":null,"description":"Features Include:
    The Kidnaping Of General Syin!
    Soup's On
    Revenge
    Last Request!
    Forest of Terror","has_staff_review":false,"id":17,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/18-1433-17-1-spy-cases.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/18-1433-17-1-spy-cases.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/18-1433-17-1-spy-cases.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/18-1433-17-1-spy-cases.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/18-1433-17-1-spy-cases.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/18-1433-17-1-spy-cases.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/18-1433-17-1-spy-cases.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/18-1433-17-1-spy-cases.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/18-1433-17-1-spy-cases.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"13","name":"The Kidnaping Of General Syin!","site_detail_url":"https://comicvine.gamespot.com/spy-cases-13-the-kidnaping-of-general-syin/4000-17/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1433/","id":1433,"name":"Spy Cases","site_detail_url":"https://comicvine.gamespot.com/spy-cases/4050-1433/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:46","date_last_updated":"2022-07-05 01:30:58","deck":null,"description":null,"has_staff_review":false,"id":20,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/21-1213-20-1-wild-western.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/21-1213-20-1-wild-western.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/21-1213-20-1-wild-western.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/21-1213-20-1-wild-western.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/21-1213-20-1-wild-western.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/21-1213-20-1-wild-western.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/21-1213-20-1-wild-western.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/21-1213-20-1-wild-western.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/21-1213-20-1-wild-western.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"24","name":null,"site_detail_url":"https://comicvine.gamespot.com/wild-western-24/4000-20/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1213/","id":1213,"name":"Wild Western","site_detail_url":"https://comicvine.gamespot.com/wild-western/4050-1213/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:32","date_last_updated":"2013-08-09 04:42:54","deck":null,"description":null,"has_staff_review":false,"id":23,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/22-989-23-1-blackhawk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/22-989-23-1-blackhawk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/22-989-23-1-blackhawk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/22-989-23-1-blackhawk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/22-989-23-1-blackhawk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/22-989-23-1-blackhawk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/22-989-23-1-blackhawk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/22-989-23-1-blackhawk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/22-989-23-1-blackhawk.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"57","name":"Slavery In Siberia","site_detail_url":"https://comicvine.gamespot.com/blackhawk-57-slavery-in-siberia/4000-23/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1819/","id":1819,"name":"Blackhawk","site_detail_url":"https://comicvine.gamespot.com/blackhawk/4050-1819/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26/","cover_date":"1952-10-31","date_added":"2008-06-06 11:10:02","date_last_updated":"2017-02-20 11:08:41","deck":null,"description":null,"has_staff_review":false,"id":26,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/25-1399-26-1-blue-bolt-weird-tale.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"115","name":null,"site_detail_url":"https://comicvine.gamespot.com/blue-bolt-weird-tales-of-terror-115/4000-26/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1399/","id":1399,"name":"Blue Bolt Weird Tales of Terror","site_detail_url":"https://comicvine.gamespot.com/blue-bolt-weird-tales-of-terror/4050-1399/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:09","date_last_updated":"2022-07-11 23:59:12","deck":null,"description":null,"has_staff_review":false,"id":28,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/27-1457-28-1-g-i-joe.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/27-1457-28-1-g-i-joe.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/27-1457-28-1-g-i-joe.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/27-1457-28-1-g-i-joe.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/27-1457-28-1-g-i-joe.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/27-1457-28-1-g-i-joe.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/27-1457-28-1-g-i-joe.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/27-1457-28-1-g-i-joe.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/27-1457-28-1-g-i-joe.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"16","name":null,"site_detail_url":"https://comicvine.gamespot.com/gi-joe-16/4000-28/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1457/","id":1457,"name":"G.I. Joe","site_detail_url":"https://comicvine.gamespot.com/gi-joe/4050-1457/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:19","date_last_updated":"2022-07-12 00:27:56","deck":null,"description":"
    ","has_staff_review":false,"id":29,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/28-1503-29-1-uncanny-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/28-1503-29-1-uncanny-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/28-1503-29-1-uncanny-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/28-1503-29-1-uncanny-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/28-1503-29-1-uncanny-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/28-1503-29-1-uncanny-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/28-1503-29-1-uncanny-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/28-1503-29-1-uncanny-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/28-1503-29-1-uncanny-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":null,"site_detail_url":"https://comicvine.gamespot.com/uncanny-tales-3/4000-29/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1503/","id":1503,"name":"Uncanny Tales","site_detail_url":"https://comicvine.gamespot.com/uncanny-tales/4050-1503/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30/","cover_date":"1952-09-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2022-07-28 12:58:14","deck":null,"description":"

    1. Nancy 
     
    2. Captain and the Kids 
     
    3. Casey Ruggles

    ","has_staff_review":false,"id":30,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/29-874-30-1-sparkler-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/29-874-30-1-sparkler-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/29-874-30-1-sparkler-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/29-874-30-1-sparkler-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/29-874-30-1-sparkler-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/29-874-30-1-sparkler-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/29-874-30-1-sparkler-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/29-874-30-1-sparkler-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/29-874-30-1-sparkler-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"107","name":null,"site_detail_url":"https://comicvine.gamespot.com/sparkler-comics-107/4000-30/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-874/","id":874,"name":"Sparkler Comics","site_detail_url":"https://comicvine.gamespot.com/sparkler-comics/4050-874/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:53","date_last_updated":"2022-07-12 00:16:11","deck":null,"description":null,"has_staff_review":false,"id":31,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/30-1283-31-1-marvel-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/30-1283-31-1-marvel-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/30-1283-31-1-marvel-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/30-1283-31-1-marvel-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/30-1283-31-1-marvel-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/30-1283-31-1-marvel-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/30-1283-31-1-marvel-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/30-1283-31-1-marvel-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/30-1283-31-1-marvel-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"109","name":"A Sight For Sore Eyes","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-109-a-sight-for-sore-eyes/4000-31/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1283/","id":1283,"name":"Marvel Tales","site_detail_url":"https://comicvine.gamespot.com/marvel-tales/4050-1283/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:05","date_last_updated":"2022-07-26 12:16:16","deck":null,"description":"

    Five amazing war stories!!


    Surrender, Hell!
    The Deadliest Enemy - Text story
    Troop Movement
    Surprise Attack!
    Barbed Wire","has_staff_review":false,"id":32,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/31-1423-32-1-battle.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/31-1423-32-1-battle.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/31-1423-32-1-battle.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/31-1423-32-1-battle.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/31-1423-32-1-battle.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/31-1423-32-1-battle.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/31-1423-32-1-battle.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/31-1423-32-1-battle.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/31-1423-32-1-battle.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"13","name":"Surrender, Hell!","site_detail_url":"https://comicvine.gamespot.com/battle-13-surrender-hell/4000-32/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1423/","id":1423,"name":"Battle","site_detail_url":"https://comicvine.gamespot.com/battle/4050-1423/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33/","cover_date":"1952-10-01","date_added":"2008-06-06 11:09:41","date_last_updated":"2022-07-22 08:52:08","deck":null,"description":null,"has_staff_review":false,"id":33,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/32-1172-33-1-lone-ranger-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/32-1172-33-1-lone-ranger-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/32-1172-33-1-lone-ranger-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/32-1172-33-1-lone-ranger-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/32-1172-33-1-lone-ranger-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/32-1172-33-1-lone-ranger-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/32-1172-33-1-lone-ranger-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/32-1172-33-1-lone-ranger-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/32-1172-33-1-lone-ranger-the.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"52","name":"The Outlaw's Fiancee","site_detail_url":"https://comicvine.gamespot.com/the-lone-ranger-52-the-outlaws-fiancee/4000-33/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1172/","id":1172,"name":"The Lone Ranger","site_detail_url":"https://comicvine.gamespot.com/the-lone-ranger/4050-1172/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:20","date_last_updated":"2019-10-16 00:35:52","deck":null,"description":null,"has_staff_review":false,"id":35,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/34-1534-35-1-space-adventures.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/34-1534-35-1-space-adventures.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/34-1534-35-1-space-adventures.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/34-1534-35-1-space-adventures.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/34-1534-35-1-space-adventures.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/34-1534-35-1-space-adventures.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/34-1534-35-1-space-adventures.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/34-1534-35-1-space-adventures.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/34-1534-35-1-space-adventures.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":null,"site_detail_url":"https://comicvine.gamespot.com/space-adventures-3/4000-35/","store_date":"1952-09-01","volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1534/","id":1534,"name":"Space Adventures","site_detail_url":"https://comicvine.gamespot.com/space-adventures/4050-1534/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:08","date_last_updated":"2022-07-12 10:56:33","deck":null,"description":null,"has_staff_review":false,"id":37,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/36-1446-37-1-forbidden-worlds.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/36-1446-37-1-forbidden-worlds.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/36-1446-37-1-forbidden-worlds.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/36-1446-37-1-forbidden-worlds.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/36-1446-37-1-forbidden-worlds.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/36-1446-37-1-forbidden-worlds.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/36-1446-37-1-forbidden-worlds.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/36-1446-37-1-forbidden-worlds.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/36-1446-37-1-forbidden-worlds.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"11","name":null,"site_detail_url":"https://comicvine.gamespot.com/forbidden-worlds-11/4000-37/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1446/","id":1446,"name":"Forbidden Worlds","site_detail_url":"https://comicvine.gamespot.com/forbidden-worlds/4050-1446/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:02","date_last_updated":"2020-10-29 08:10:48","deck":null,"description":null,"has_staff_review":false,"id":38,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/37-1379-38-1-operation-peril.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/37-1379-38-1-operation-peril.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/37-1379-38-1-operation-peril.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/37-1379-38-1-operation-peril.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/37-1379-38-1-operation-peril.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/37-1379-38-1-operation-peril.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/37-1379-38-1-operation-peril.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/37-1379-38-1-operation-peril.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/37-1379-38-1-operation-peril.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"13","name":null,"site_detail_url":"https://comicvine.gamespot.com/operation-peril-13/4000-38/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1379/","id":1379,"name":"Operation: Peril","site_detail_url":"https://comicvine.gamespot.com/operation-peril/4050-1379/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39/","cover_date":"1952-10-01","date_added":"2008-06-06 11:10:19","date_last_updated":"2022-07-11 06:18:02","deck":null,"description":null,"has_staff_review":false,"id":39,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/38-1513-39-1-out-of-the-night.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/38-1513-39-1-out-of-the-night.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/38-1513-39-1-out-of-the-night.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/38-1513-39-1-out-of-the-night.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/38-1513-39-1-out-of-the-night.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/38-1513-39-1-out-of-the-night.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/38-1513-39-1-out-of-the-night.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/38-1513-39-1-out-of-the-night.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/38-1513-39-1-out-of-the-night.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"5","name":null,"site_detail_url":"https://comicvine.gamespot.com/out-of-the-night-5/4000-39/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1513/","id":1513,"name":"Out of the Night","site_detail_url":"https://comicvine.gamespot.com/out-of-the-night/4050-1513/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:09","date_last_updated":"2018-12-05 22:50:52","deck":null,"description":null,"has_staff_review":false,"id":40,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/39-1458-40-1-mister-mystery.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/39-1458-40-1-mister-mystery.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/39-1458-40-1-mister-mystery.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/39-1458-40-1-mister-mystery.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/39-1458-40-1-mister-mystery.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/39-1458-40-1-mister-mystery.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/39-1458-40-1-mister-mystery.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/39-1458-40-1-mister-mystery.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/39-1458-40-1-mister-mystery.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"8","name":null,"site_detail_url":"https://comicvine.gamespot.com/mister-mystery-8/4000-40/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1458/","id":1458,"name":"Mister Mystery","site_detail_url":"https://comicvine.gamespot.com/mister-mystery/4050-1458/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44/","cover_date":"1952-11-30","date_added":"2008-06-06 11:10:20","date_last_updated":"2016-12-14 18:14:06","deck":null,"description":null,"has_staff_review":false,"id":44,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/43-1536-44-1-weird-terror.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/43-1536-44-1-weird-terror.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/43-1536-44-1-weird-terror.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/43-1536-44-1-weird-terror.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/43-1536-44-1-weird-terror.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/43-1536-44-1-weird-terror.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/43-1536-44-1-weird-terror.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/43-1536-44-1-weird-terror.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/43-1536-44-1-weird-terror.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"2","name":null,"site_detail_url":"https://comicvine.gamespot.com/weird-terror-2/4000-44/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1536/","id":1536,"name":"Weird Terror","site_detail_url":"https://comicvine.gamespot.com/weird-terror/4050-1536/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45/","cover_date":"1952-07-01","date_added":"2008-06-06 11:10:10","date_last_updated":"2022-07-25 14:52:24","deck":null,"description":null,"has_staff_review":false,"id":45,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/23749/742375-61905_20060908110829_large.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/23749/742375-61905_20060908110829_large.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/23749/742375-61905_20060908110829_large.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/23749/742375-61905_20060908110829_large.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/23749/742375-61905_20060908110829_large.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/23749/742375-61905_20060908110829_large.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/23749/742375-61905_20060908110829_large.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/23749/742375-61905_20060908110829_large.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/23749/742375-61905_20060908110829_large.jpg","image_tags":"All Images"},"associated_images":[{"original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/44-1468-45-1-adventures-of-rex-th.jpg","id":44,"caption":null,"image_tags":"All Images"}],"issue_number":"4","name":null,"site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-rex-the-wonder-dog-4/4000-45/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1468/","id":1468,"name":"The Adventures of Rex the Wonder Dog","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-rex-the-wonder-dog/4050-1468/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47/","cover_date":"1952-11-30","date_added":"2008-06-06 11:10:03","date_last_updated":"2016-03-24 18:21:07","deck":null,"description":null,"has_staff_review":false,"id":47,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/46-1404-47-1-big-town.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/46-1404-47-1-big-town.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/46-1404-47-1-big-town.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/46-1404-47-1-big-town.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/46-1404-47-1-big-town.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/46-1404-47-1-big-town.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/46-1404-47-1-big-town.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/46-1404-47-1-big-town.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/46-1404-47-1-big-town.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"18","name":null,"site_detail_url":"https://comicvine.gamespot.com/big-town-18/4000-47/","store_date":"1952-09-26","volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1404/","id":1404,"name":"Big Town","site_detail_url":"https://comicvine.gamespot.com/big-town/4050-1404/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49/","cover_date":"1952-11-30","date_added":"2008-06-06 11:09:41","date_last_updated":"2018-11-24 20:06:09","deck":null,"description":"

    The Man of a Thousand Faces!

    A gang of criminals kidnap a master of disguise, intending to force him to impersonate the DA in order to stage phoney raids on gambling dens and confiscate all their money. Unwittingly, they kidnap the DA himself.

    The Case of the Modern Raffles!

    A series of hotel thefts in a swank part of town baffles the police, as the only man identified by the victims seems to have been nowhere near the loot.

    The Case of the Chattering Wife

    An impoverished gambler plots to murder his bookie Hiring a couple of actors to impersonate himself and his wife in order to establish a foolproof alibi, he believes that he has committed the perfect murder.

    The Crime File

    A text story.

    About a Uniform!

    Short factual story about the creation of the first NYPD officer uniform.

    Racket in Diamonds

    A gang of criminals sets up a racket stealing and reselling industrial diamond tools, taking advantage of the recent shortage.

    ","has_staff_review":false,"id":49,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/48-1169-49-1-mr-district-attorne.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/48-1169-49-1-mr-district-attorne.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/48-1169-49-1-mr-district-attorne.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/48-1169-49-1-mr-district-attorne.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/48-1169-49-1-mr-district-attorne.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/48-1169-49-1-mr-district-attorne.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/48-1169-49-1-mr-district-attorne.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/48-1169-49-1-mr-district-attorne.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/48-1169-49-1-mr-district-attorne.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"30","name":"The Man of a Thousand Faces!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-30-the-man-of-a-thousand-face/4000-49/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1169/","id":1169,"name":"Mr. District Attorney","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney/4050-1169/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:11","date_last_updated":"2022-07-11 12:29:10","deck":null,"description":"

    Last Man!

    At first glance he looked like any other dogface fighting up and down the 38th parallel. He wore the same uniform, ate the same food, fired the same weapons -- and yet, there was something about him that marked him apart from every soldier...

    \"No

    Replacement!

    In a combat zone, there are three things a man worries about: his life, equipment, and the time when he will be rotated back home. The first two he can take care of himself -- the last depends on his replacement!

    \"No
    ","has_staff_review":false,"id":50,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/49-1472-50-1-our-army-at-war.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/49-1472-50-1-our-army-at-war.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/49-1472-50-1-our-army-at-war.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/49-1472-50-1-our-army-at-war.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/49-1472-50-1-our-army-at-war.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/49-1472-50-1-our-army-at-war.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/49-1472-50-1-our-army-at-war.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/49-1472-50-1-our-army-at-war.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/49-1472-50-1-our-army-at-war.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":null,"site_detail_url":"https://comicvine.gamespot.com/our-army-at-war-4/4000-50/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1472/","id":1472,"name":"Our Army at War","site_detail_url":"https://comicvine.gamespot.com/our-army-at-war/4050-1472/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:14","date_last_updated":"2022-07-26 19:27:55","deck":null,"description":"
    1. Death has Five Guises (Johnny Peril)
    2. The Man Who Cried Werewolf
    3. The Tattooed Terror
    ","has_staff_review":false,"id":51,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/50-1474-51-1-sensation-mystery.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/50-1474-51-1-sensation-mystery.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/50-1474-51-1-sensation-mystery.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/50-1474-51-1-sensation-mystery.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/50-1474-51-1-sensation-mystery.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/50-1474-51-1-sensation-mystery.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/50-1474-51-1-sensation-mystery.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/50-1474-51-1-sensation-mystery.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/50-1474-51-1-sensation-mystery.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"112","name":"Death Has Five Guesses","site_detail_url":"https://comicvine.gamespot.com/sensation-mystery-112-death-has-five-guesses/4000-51/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1474/","id":1474,"name":"Sensation Mystery","site_detail_url":"https://comicvine.gamespot.com/sensation-mystery/4050-1474/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:21","date_last_updated":"2022-07-28 18:58:25","deck":null,"description":null,"has_staff_review":false,"id":52,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/51-1543-52-1-star-spangled-war-st.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/51-1543-52-1-star-spangled-war-st.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/51-1543-52-1-star-spangled-war-st.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/51-1543-52-1-star-spangled-war-st.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/51-1543-52-1-star-spangled-war-st.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/51-1543-52-1-star-spangled-war-st.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/51-1543-52-1-star-spangled-war-st.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/51-1543-52-1-star-spangled-war-st.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/51-1543-52-1-star-spangled-war-st.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":"''Hundred-Mission'' Mitchell","site_detail_url":"https://comicvine.gamespot.com/star-spangled-war-stories-3-hundred-mission-mitche/4000-52/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1543/","id":1543,"name":"Star Spangled War Stories","site_detail_url":"https://comicvine.gamespot.com/star-spangled-war-stories/4050-1543/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:56","date_last_updated":"2022-07-12 02:43:54","deck":null,"description":"
    ","has_staff_review":false,"id":53,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/52-1328-53-1-strange-adventures.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/52-1328-53-1-strange-adventures.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/52-1328-53-1-strange-adventures.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/52-1328-53-1-strange-adventures.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/52-1328-53-1-strange-adventures.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/52-1328-53-1-strange-adventures.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/52-1328-53-1-strange-adventures.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/52-1328-53-1-strange-adventures.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/52-1328-53-1-strange-adventures.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"26","name":null,"site_detail_url":"https://comicvine.gamespot.com/strange-adventures-26/4000-53/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1328/","id":1328,"name":"Strange Adventures","site_detail_url":"https://comicvine.gamespot.com/strange-adventures/4050-1328/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-54/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:05","date_last_updated":"2022-07-05 01:48:50","deck":null,"description":"

     

    1. Citadel of Doom (Superman vs Lex Luthor)

      \"Only Luthor, the Man of Steel's arch-foe offers a safe haven against catastrophe in his 'Citadel of Doom!'\"Lex Luthor: You see, even Superman is helpless against these meteors and other disasters that will destroy Metropolis!

    2. The End of the Planet! (Superman, Lois Lane, Jimmy Olsen, Perry White / written by Edmond Hamilton) - When John Wilton, a rival newspaperman buys the Daily Planet and shuts it down, the entire staff is out of work!
    3. Can Everybody Speak the Same? (full text article by Dick Keene)
    4. The Revenge That Took Three Hundred Years (Superman, Inspector Hawkins / written by Alvin Schwartz)
    ","has_staff_review":false,"id":54,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/53-773-54-1-superman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/53-773-54-1-superman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/53-773-54-1-superman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/53-773-54-1-superman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/53-773-54-1-superman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/53-773-54-1-superman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/53-773-54-1-superman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/53-773-54-1-superman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/53-773-54-1-superman.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"79","name":"Citadel of Doom","site_detail_url":"https://comicvine.gamespot.com/superman-79-citadel-of-doom/4000-54/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-773/","id":773,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4050-773/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:58","date_last_updated":"2022-07-24 10:07:49","deck":null,"description":null,"has_staff_review":false,"id":55,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/54-1329-55-1-tomahawk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/54-1329-55-1-tomahawk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/54-1329-55-1-tomahawk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/54-1329-55-1-tomahawk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/54-1329-55-1-tomahawk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/54-1329-55-1-tomahawk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/54-1329-55-1-tomahawk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/54-1329-55-1-tomahawk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/54-1329-55-1-tomahawk.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"14","name":null,"site_detail_url":"https://comicvine.gamespot.com/tomahawk-14/4000-55/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1329/","id":1329,"name":"Tomahawk","site_detail_url":"https://comicvine.gamespot.com/tomahawk/4050-1329/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56/","cover_date":"1952-11-30","date_added":"2008-06-06 11:09:41","date_last_updated":"2018-05-04 23:07:59","deck":null,"description":null,"has_staff_review":false,"id":56,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/55-1171-56-1-western-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/55-1171-56-1-western-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/55-1171-56-1-western-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/55-1171-56-1-western-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/55-1171-56-1-western-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/55-1171-56-1-western-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/55-1171-56-1-western-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/55-1171-56-1-western-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/55-1171-56-1-western-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"36","name":"Duel in the Dark!","site_detail_url":"https://comicvine.gamespot.com/western-comics-36-duel-in-the-dark/4000-56/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1171/","id":1171,"name":"Western Comics","site_detail_url":"https://comicvine.gamespot.com/western-comics/4050-1171/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:43","date_last_updated":"2022-07-11 07:02:21","deck":null,"description":null,"has_staff_review":false,"id":59,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/58-1176-59-1-tarzan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/58-1176-59-1-tarzan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/58-1176-59-1-tarzan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/58-1176-59-1-tarzan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/58-1176-59-1-tarzan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/58-1176-59-1-tarzan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/58-1176-59-1-tarzan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/58-1176-59-1-tarzan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/58-1176-59-1-tarzan.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"38","name":null,"site_detail_url":"https://comicvine.gamespot.com/tarzan-38/4000-59/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1176/","id":1176,"name":"Tarzan","site_detail_url":"https://comicvine.gamespot.com/tarzan/4050-1176/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-60/","cover_date":"1952-11-30","date_added":"2008-06-06 11:10:24","date_last_updated":"2017-06-14 10:00:43","deck":null,"description":null,"has_staff_review":false,"id":60,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59-1562-60-1-tom-corbett-space-c.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59-1562-60-1-tom-corbett-space-c.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59-1562-60-1-tom-corbett-space-c.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59-1562-60-1-tom-corbett-space-c.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59-1562-60-1-tom-corbett-space-c.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59-1562-60-1-tom-corbett-space-c.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59-1562-60-1-tom-corbett-space-c.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59-1562-60-1-tom-corbett-space-c.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59-1562-60-1-tom-corbett-space-c.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":null,"site_detail_url":"https://comicvine.gamespot.com/tom-corbett-space-cadet-4/4000-60/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1562/","id":1562,"name":"Tom Corbett, Space Cadet","site_detail_url":"https://comicvine.gamespot.com/tom-corbett-space-cadet/4050-1562/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-61/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:49","date_last_updated":"2022-07-08 06:12:11","deck":null,"description":null,"has_staff_review":false,"id":61,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/60-1247-61-1-tom-amp-jerry-comi.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"100","name":null,"site_detail_url":"https://comicvine.gamespot.com/tom-jerry-comics-100/4000-61/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1247/","id":1247,"name":"Tom & Jerry Comics","site_detail_url":"https://comicvine.gamespot.com/tom-jerry-comics/4050-1247/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-62/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-08 03:26:06","deck":null,"description":null,"has_staff_review":false,"id":62,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61-1098-62-1-walter-lantz-new-fun.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"189","name":null,"site_detail_url":"https://comicvine.gamespot.com/walter-lantz-new-funnies-189/4000-62/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1098/","id":1098,"name":"Walter Lantz New Funnies","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-new-funnies/4050-1098/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-63/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:08","date_last_updated":"2020-11-24 21:22:04","deck":null,"description":null,"has_staff_review":false,"id":63,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/62-1443-63-1-frontline-combat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/62-1443-63-1-frontline-combat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/62-1443-63-1-frontline-combat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/62-1443-63-1-frontline-combat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/62-1443-63-1-frontline-combat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/62-1443-63-1-frontline-combat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/62-1443-63-1-frontline-combat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/62-1443-63-1-frontline-combat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/62-1443-63-1-frontline-combat.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"9","name":null,"site_detail_url":"https://comicvine.gamespot.com/frontline-combat-9/4000-63/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1443/","id":1443,"name":"Frontline Combat","site_detail_url":"https://comicvine.gamespot.com/frontline-combat/4050-1443/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:02","date_last_updated":"2018-10-09 11:27:51","deck":null,"description":null,"has_staff_review":false,"id":64,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/63-1398-64-1-haunt-of-fear.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/63-1398-64-1-haunt-of-fear.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/63-1398-64-1-haunt-of-fear.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/63-1398-64-1-haunt-of-fear.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/63-1398-64-1-haunt-of-fear.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/63-1398-64-1-haunt-of-fear.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/63-1398-64-1-haunt-of-fear.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/63-1398-64-1-haunt-of-fear.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/63-1398-64-1-haunt-of-fear.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"16","name":null,"site_detail_url":"https://comicvine.gamespot.com/haunt-of-fear-16/4000-64/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1398/","id":1398,"name":"Haunt of Fear","site_detail_url":"https://comicvine.gamespot.com/haunt-of-fear/4050-1398/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:21","date_last_updated":"2022-07-19 17:19:14","deck":null,"description":null,"has_staff_review":false,"id":65,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/64-898-65-1-captain-marvel-adven.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/64-898-65-1-captain-marvel-adven.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/64-898-65-1-captain-marvel-adven.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/64-898-65-1-captain-marvel-adven.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/64-898-65-1-captain-marvel-adven.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/64-898-65-1-captain-marvel-adven.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/64-898-65-1-captain-marvel-adven.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/64-898-65-1-captain-marvel-adven.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/64-898-65-1-captain-marvel-adven.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"138","name":"Captain Marvel Fights the Flying Disk Danger","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-adventures-138-captain-marvel-fight/4000-65/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-898/","id":898,"name":"Captain Marvel Adventures","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-adventures/4050-898/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:32","date_last_updated":"2022-07-19 16:45:01","deck":null,"description":null,"has_staff_review":false,"id":66,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/65-953-66-1-captain-marvel-jr-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/65-953-66-1-captain-marvel-jr-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/65-953-66-1-captain-marvel-jr-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/65-953-66-1-captain-marvel-jr-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/65-953-66-1-captain-marvel-jr-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/65-953-66-1-captain-marvel-jr-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/65-953-66-1-captain-marvel-jr-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/65-953-66-1-captain-marvel-jr-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/65-953-66-1-captain-marvel-jr-.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"115","name":"The Mad Mongol Monster","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr-115-the-mad-mongol-monster/4000-66/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-953/","id":953,"name":"Captain Marvel, Jr.","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr/4050-953/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-19 12:01:54","deck":null,"description":null,"has_staff_review":false,"id":67,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/66-1066-67-1-marvel-family-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/66-1066-67-1-marvel-family-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/66-1066-67-1-marvel-family-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/66-1066-67-1-marvel-family-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/66-1066-67-1-marvel-family-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/66-1066-67-1-marvel-family-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/66-1066-67-1-marvel-family-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/66-1066-67-1-marvel-family-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/66-1066-67-1-marvel-family-the.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"77","name":"The Beastman Strikes","site_detail_url":"https://comicvine.gamespot.com/the-marvel-family-77-the-beastman-strikes/4000-67/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1066/","id":1066,"name":"The Marvel Family","site_detail_url":"https://comicvine.gamespot.com/the-marvel-family/4050-1066/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2022-07-07 12:22:21","deck":null,"description":null,"has_staff_review":false,"id":68,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/67-843-68-1-whiz-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/67-843-68-1-whiz-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/67-843-68-1-whiz-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/67-843-68-1-whiz-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/67-843-68-1-whiz-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/67-843-68-1-whiz-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/67-843-68-1-whiz-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/67-843-68-1-whiz-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/67-843-68-1-whiz-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"151","name":null,"site_detail_url":"https://comicvine.gamespot.com/whiz-comics-151/4000-68/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-843/","id":843,"name":"Whiz Comics","site_detail_url":"https://comicvine.gamespot.com/whiz-comics/4050-843/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-71/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:16","date_last_updated":"2022-07-11 23:51:16","deck":null,"description":null,"has_staff_review":false,"id":71,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/70-1487-71-1-chamber-of-chills.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/70-1487-71-1-chamber-of-chills.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/70-1487-71-1-chamber-of-chills.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/70-1487-71-1-chamber-of-chills.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/70-1487-71-1-chamber-of-chills.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/70-1487-71-1-chamber-of-chills.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/70-1487-71-1-chamber-of-chills.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/70-1487-71-1-chamber-of-chills.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/70-1487-71-1-chamber-of-chills.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"14","name":null,"site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-magazine-14/4000-71/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1487/","id":1487,"name":"Chamber of Chills Magazine","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-magazine/4050-1487/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-72/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:16","date_last_updated":"2022-07-11 23:53:41","deck":null,"description":null,"has_staff_review":false,"id":72,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/71-1489-72-1-tomb-of-terror.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/71-1489-72-1-tomb-of-terror.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/71-1489-72-1-tomb-of-terror.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/71-1489-72-1-tomb-of-terror.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/71-1489-72-1-tomb-of-terror.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/71-1489-72-1-tomb-of-terror.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/71-1489-72-1-tomb-of-terror.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/71-1489-72-1-tomb-of-terror.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/71-1489-72-1-tomb-of-terror.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"6","name":null,"site_detail_url":"https://comicvine.gamespot.com/tomb-of-terror-6/4000-72/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1489/","id":1489,"name":"Tomb of Terror","site_detail_url":"https://comicvine.gamespot.com/tomb-of-terror/4050-1489/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:05","date_last_updated":"2022-07-11 07:14:27","deck":null,"description":null,"has_staff_review":false,"id":73,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/72-1418-73-1-witches-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/72-1418-73-1-witches-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/72-1418-73-1-witches-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/72-1418-73-1-witches-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/72-1418-73-1-witches-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/72-1418-73-1-witches-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/72-1418-73-1-witches-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/72-1418-73-1-witches-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/72-1418-73-1-witches-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"16","name":null,"site_detail_url":"https://comicvine.gamespot.com/witches-tales-16/4000-73/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1418/","id":1418,"name":"Witches Tales","site_detail_url":"https://comicvine.gamespot.com/witches-tales/4050-1418/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-20 15:28:27","deck":null,"description":"

    Volume 9 Issue 10

    1. Airboy

    2. The Black Wingman

    3. The First College Football Game

    4. The Heap

    ","has_staff_review":false,"id":74,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/73-1069-74-1-airboy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/73-1069-74-1-airboy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/73-1069-74-1-airboy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/73-1069-74-1-airboy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/73-1069-74-1-airboy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/73-1069-74-1-airboy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/73-1069-74-1-airboy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/73-1069-74-1-airboy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/73-1069-74-1-airboy-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"105","name":null,"site_detail_url":"https://comicvine.gamespot.com/airboy-comics-105/4000-74/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1069/","id":1069,"name":"Airboy Comics","site_detail_url":"https://comicvine.gamespot.com/airboy-comics/4050-1069/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:51","date_last_updated":"2022-07-10 00:48:00","deck":null,"description":null,"has_staff_review":false,"id":75,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/74-1253-75-1-black-diamond-wester.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/74-1253-75-1-black-diamond-wester.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/74-1253-75-1-black-diamond-wester.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/74-1253-75-1-black-diamond-wester.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/74-1253-75-1-black-diamond-wester.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/74-1253-75-1-black-diamond-wester.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/74-1253-75-1-black-diamond-wester.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/74-1253-75-1-black-diamond-wester.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/74-1253-75-1-black-diamond-wester.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"40","name":null,"site_detail_url":"https://comicvine.gamespot.com/black-diamond-western-40/4000-75/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1253/","id":1253,"name":"Black Diamond Western","site_detail_url":"https://comicvine.gamespot.com/black-diamond-western/4050-1253/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:30","date_last_updated":"2022-07-11 04:12:50","deck":null,"description":"
    ","has_staff_review":false,"id":76,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/75-942-76-1-boy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/75-942-76-1-boy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/75-942-76-1-boy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/75-942-76-1-boy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/75-942-76-1-boy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/75-942-76-1-boy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/75-942-76-1-boy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/75-942-76-1-boy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/75-942-76-1-boy-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"83","name":null,"site_detail_url":"https://comicvine.gamespot.com/boy-comics-83/4000-76/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-942/","id":942,"name":"Boy Comics","site_detail_url":"https://comicvine.gamespot.com/boy-comics/4050-942/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2022-07-07 09:01:08","deck":null,"description":null,"has_staff_review":false,"id":77,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/76-886-77-1-daredevil-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/76-886-77-1-daredevil-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/76-886-77-1-daredevil-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/76-886-77-1-daredevil-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/76-886-77-1-daredevil-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/76-886-77-1-daredevil-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/76-886-77-1-daredevil-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/76-886-77-1-daredevil-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/76-886-77-1-daredevil-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"92","name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-comics-92/4000-77/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-886/","id":886,"name":"Daredevil Comics","site_detail_url":"https://comicvine.gamespot.com/daredevil-comics/4050-886/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:05","date_last_updated":"2022-07-10 00:29:37","deck":null,"description":null,"has_staff_review":false,"id":78,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/77-1422-78-1-astonishing.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/77-1422-78-1-astonishing.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/77-1422-78-1-astonishing.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/77-1422-78-1-astonishing.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/77-1422-78-1-astonishing.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/77-1422-78-1-astonishing.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/77-1422-78-1-astonishing.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/77-1422-78-1-astonishing.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/77-1422-78-1-astonishing.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"19","name":null,"site_detail_url":"https://comicvine.gamespot.com/astonishing-19/4000-78/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1422/","id":1422,"name":"Astonishing","site_detail_url":"https://comicvine.gamespot.com/astonishing/4050-1422/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-79/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:44","date_last_updated":"2022-07-09 11:50:28","deck":null,"description":null,"has_staff_review":false,"id":79,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/78-1199-79-1-kid-colt-outlaw.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/78-1199-79-1-kid-colt-outlaw.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/78-1199-79-1-kid-colt-outlaw.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/78-1199-79-1-kid-colt-outlaw.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/78-1199-79-1-kid-colt-outlaw.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/78-1199-79-1-kid-colt-outlaw.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/78-1199-79-1-kid-colt-outlaw.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/78-1199-79-1-kid-colt-outlaw.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/78-1199-79-1-kid-colt-outlaw.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"23","name":null,"site_detail_url":"https://comicvine.gamespot.com/kid-colt-outlaw-23/4000-79/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1199/","id":1199,"name":"Kid Colt Outlaw","site_detail_url":"https://comicvine.gamespot.com/kid-colt-outlaw/4050-1199/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-81/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:19","date_last_updated":"2022-07-26 19:47:00","deck":null,"description":"Features Include:
    Combat Casey
    Second Chance
    The Bookworm
    The Red Horde!","has_staff_review":false,"id":81,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/80-1506-81-1-war-combat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/80-1506-81-1-war-combat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/80-1506-81-1-war-combat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/80-1506-81-1-war-combat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/80-1506-81-1-war-combat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/80-1506-81-1-war-combat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/80-1506-81-1-war-combat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/80-1506-81-1-war-combat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/80-1506-81-1-war-combat.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"5","name":"Combat Casey","site_detail_url":"https://comicvine.gamespot.com/war-combat-5-combat-casey/4000-81/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1506/","id":1506,"name":"War Combat","site_detail_url":"https://comicvine.gamespot.com/war-combat/4050-1506/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-85/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:32","date_last_updated":"2013-08-09 07:36:08","deck":null,"description":null,"has_staff_review":false,"id":85,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/84-989-85-1-blackhawk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/84-989-85-1-blackhawk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/84-989-85-1-blackhawk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/84-989-85-1-blackhawk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/84-989-85-1-blackhawk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/84-989-85-1-blackhawk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/84-989-85-1-blackhawk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/84-989-85-1-blackhawk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/84-989-85-1-blackhawk.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"58","name":"King Cobra","site_detail_url":"https://comicvine.gamespot.com/blackhawk-58-king-cobra/4000-85/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1819/","id":1819,"name":"Blackhawk","site_detail_url":"https://comicvine.gamespot.com/blackhawk/4050-1819/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-88/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:21","date_last_updated":"2020-12-26 22:27:10","deck":null,"description":null,"has_staff_review":false,"id":88,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/87-1539-88-1-weird-tales-of-the-f.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":null,"site_detail_url":"https://comicvine.gamespot.com/weird-tales-of-the-future-4/4000-88/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1539/","id":1539,"name":"Weird Tales of the Future","site_detail_url":"https://comicvine.gamespot.com/weird-tales-of-the-future/4050-1539/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89/","cover_date":"1952-11-30","date_added":"2008-06-06 11:10:20","date_last_updated":"2017-03-13 08:56:49","deck":null,"description":null,"has_staff_review":false,"id":89,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/88-1523-89-1-tales-of-horror.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/88-1523-89-1-tales-of-horror.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/88-1523-89-1-tales-of-horror.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/88-1523-89-1-tales-of-horror.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/88-1523-89-1-tales-of-horror.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/88-1523-89-1-tales-of-horror.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/88-1523-89-1-tales-of-horror.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/88-1523-89-1-tales-of-horror.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/88-1523-89-1-tales-of-horror.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":null,"site_detail_url":"https://comicvine.gamespot.com/tales-of-horror-3/4000-89/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1523/","id":1523,"name":"Tales of Horror","site_detail_url":"https://comicvine.gamespot.com/tales-of-horror/4050-1523/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:05","date_last_updated":"2022-07-26 12:16:11","deck":null,"description":"

    Five amazing war stories!!

     
    The Anger of Colonel Wu-San
    Report From Korea - Text story
    Hang Fire!
    The Death of Aunt Maggie
    Spearhead!","has_staff_review":false,"id":92,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/90-1423-92-1-battle.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/90-1423-92-1-battle.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/90-1423-92-1-battle.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/90-1423-92-1-battle.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/90-1423-92-1-battle.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/90-1423-92-1-battle.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/90-1423-92-1-battle.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/90-1423-92-1-battle.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/90-1423-92-1-battle.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"14","name":"The Anger Of Colonel Wu-San","site_detail_url":"https://comicvine.gamespot.com/battle-14-the-anger-of-colonel-wu-san/4000-92/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1423/","id":1423,"name":"Battle","site_detail_url":"https://comicvine.gamespot.com/battle/4050-1423/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:09","date_last_updated":"2022-07-11 11:34:05","deck":null,"description":null,"has_staff_review":false,"id":93,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/91-1461-93-1-strange-mysteries.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/91-1461-93-1-strange-mysteries.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/91-1461-93-1-strange-mysteries.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/91-1461-93-1-strange-mysteries.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/91-1461-93-1-strange-mysteries.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/91-1461-93-1-strange-mysteries.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/91-1461-93-1-strange-mysteries.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/91-1461-93-1-strange-mysteries.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/91-1461-93-1-strange-mysteries.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"8","name":null,"site_detail_url":"https://comicvine.gamespot.com/strange-mysteries-8/4000-93/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1461/","id":1461,"name":"Strange Mysteries","site_detail_url":"https://comicvine.gamespot.com/strange-mysteries/4050-1461/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:42","date_last_updated":"2022-07-22 08:52:14","deck":null,"description":null,"has_staff_review":false,"id":94,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/92-1172-94-1-lone-ranger-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/92-1172-94-1-lone-ranger-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/92-1172-94-1-lone-ranger-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/92-1172-94-1-lone-ranger-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/92-1172-94-1-lone-ranger-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/92-1172-94-1-lone-ranger-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/92-1172-94-1-lone-ranger-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/92-1172-94-1-lone-ranger-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/92-1172-94-1-lone-ranger-the.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"53","name":"Terror Trail","site_detail_url":"https://comicvine.gamespot.com/the-lone-ranger-53-terror-trail/4000-94/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1172/","id":1172,"name":"The Lone Ranger","site_detail_url":"https://comicvine.gamespot.com/the-lone-ranger/4050-1172/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:04","date_last_updated":"2022-07-08 02:58:03","deck":null,"description":null,"has_staff_review":false,"id":96,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/94-1408-96-1-cisco-kid-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/94-1408-96-1-cisco-kid-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/94-1408-96-1-cisco-kid-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/94-1408-96-1-cisco-kid-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/94-1408-96-1-cisco-kid-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/94-1408-96-1-cisco-kid-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/94-1408-96-1-cisco-kid-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/94-1408-96-1-cisco-kid-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/94-1408-96-1-cisco-kid-the.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"12","name":null,"site_detail_url":"https://comicvine.gamespot.com/cisco-kid-12/4000-96/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1408/","id":1408,"name":"Cisco Kid","site_detail_url":"https://comicvine.gamespot.com/cisco-kid/4050-1408/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100/","cover_date":"1952-12-31","date_added":"2008-06-06 11:10:08","date_last_updated":"2017-04-17 03:17:35","deck":null,"description":null,"has_staff_review":false,"id":100,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/97-1446-100-1-forbidden-worlds.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/97-1446-100-1-forbidden-worlds.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/97-1446-100-1-forbidden-worlds.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/97-1446-100-1-forbidden-worlds.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/97-1446-100-1-forbidden-worlds.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/97-1446-100-1-forbidden-worlds.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/97-1446-100-1-forbidden-worlds.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/97-1446-100-1-forbidden-worlds.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/97-1446-100-1-forbidden-worlds.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"12","name":null,"site_detail_url":"https://comicvine.gamespot.com/forbidden-worlds-12/4000-100/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1446/","id":1446,"name":"Forbidden Worlds","site_detail_url":"https://comicvine.gamespot.com/forbidden-worlds/4050-1446/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:20","date_last_updated":"2022-07-26 19:48:48","deck":null,"description":"

    The Were-Snake of Karnak- A reporter and his photographer girlfriend parachute into Egypt to look into reports of a cult of snake worshipers, and soon find themselves confronted by a snake goddess.

    Horror in the Swamp- A text story.

    The Bat and the Brain- A man builds a bat robot that he can command with his mind. Soon, a malevolent presence is drawn to his lab.

    The Unholy Dead- In Egypt, a photographer encounters a beautiful woman in a tomb, and soon finds himself falling afoul of an ancient curse.

    \"True\" Ghost Experiences- Allegedly true story of Vera Parkinson, who once encountered a ghost.

    ","has_staff_review":false,"id":101,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/98-1514-101-1-skeleton-hand-in-sec.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"2","name":null,"site_detail_url":"https://comicvine.gamespot.com/skeleton-hand-in-secrets-of-the-supernatural-2/4000-101/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1514/","id":1514,"name":"Skeleton Hand in Secrets of the Supernatural","site_detail_url":"https://comicvine.gamespot.com/skeleton-hand-in-secrets-of-the-supernatural/4050-1514/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:20","date_last_updated":"2022-08-21 10:49:37","deck":null,"description":null,"has_staff_review":false,"id":102,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8627437-fightingunderseacommandos4.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8627437-fightingunderseacommandos4.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8627437-fightingunderseacommandos4.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8627437-fightingunderseacommandos4.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8627437-fightingunderseacommandos4.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8627437-fightingunderseacommandos4.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8627437-fightingunderseacommandos4.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8627437-fightingunderseacommandos4.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8627437-fightingunderseacommandos4.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":null,"site_detail_url":"https://comicvine.gamespot.com/fighting-undersea-commandos-4/4000-102/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1516/","id":1516,"name":"Fighting Undersea Commandos","site_detail_url":"https://comicvine.gamespot.com/fighting-undersea-commandos/4050-1516/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:02","date_last_updated":"2018-07-04 19:33:13","deck":null,"description":null,"has_staff_review":false,"id":104,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/101-1403-104-1-all-star-western.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/101-1403-104-1-all-star-western.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/101-1403-104-1-all-star-western.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/101-1403-104-1-all-star-western.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/101-1403-104-1-all-star-western.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/101-1403-104-1-all-star-western.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/101-1403-104-1-all-star-western.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/101-1403-104-1-all-star-western.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/101-1403-104-1-all-star-western.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"68","name":"Six Bullets for Sheriff Trigger / Threat of the Seneca Frogman / The Ambush of the Painted Wagon / Dangerous Decoy","site_detail_url":"https://comicvine.gamespot.com/all-star-western-68-six-bullets-for-sheriff-trigge/4000-104/","store_date":"1952-10-24","volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1403/","id":1403,"name":"All-Star Western","site_detail_url":"https://comicvine.gamespot.com/all-star-western/4050-1403/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:03","date_last_updated":"2022-07-15 06:31:35","deck":null,"description":"

    \"The Unknown Spaceman,\"   
     \"S.O.S. in Space,\"  
    \"Cosmic Capsule,\"  
    \"Rocketeer For Hire\" (pencils by Carmine Infantino).  
    Superman stars in a one-page public service announcement, \"UNICEF Spells Help for the Children of the World!\"

    ","has_staff_review":false,"id":107,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/103-1406-107-1-mystery-in-space.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/103-1406-107-1-mystery-in-space.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/103-1406-107-1-mystery-in-space.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/103-1406-107-1-mystery-in-space.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/103-1406-107-1-mystery-in-space.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/103-1406-107-1-mystery-in-space.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/103-1406-107-1-mystery-in-space.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/103-1406-107-1-mystery-in-space.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/103-1406-107-1-mystery-in-space.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"11","name":null,"site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-11/4000-107/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1406/","id":1406,"name":"Mystery In Space","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space/4050-1406/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:14","date_last_updated":"2022-07-08 06:06:04","deck":null,"description":null,"has_staff_review":false,"id":109,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/104-1473-109-1-phantom-stranger-th.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/104-1473-109-1-phantom-stranger-th.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/104-1473-109-1-phantom-stranger-th.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/104-1473-109-1-phantom-stranger-th.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/104-1473-109-1-phantom-stranger-th.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/104-1473-109-1-phantom-stranger-th.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/104-1473-109-1-phantom-stranger-th.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/104-1473-109-1-phantom-stranger-th.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/104-1473-109-1-phantom-stranger-th.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"3","name":"Ghosts for Sale/UNICEF Spells Help for the Children of the World!/Dead Man's Hand/How to Spot a Witch/The Man Who Carved Death/The Eerie Eddys/The Day of Destiny","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-3-ghosts-for-saleunicef-spell/4000-109/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1473/","id":1473,"name":"The Phantom Stranger","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger/4050-1473/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:21","date_last_updated":"2022-07-28 18:58:31","deck":null,"description":null,"has_staff_review":false,"id":110,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/105-1543-110-1-star-spangled-war-st.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/105-1543-110-1-star-spangled-war-st.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/105-1543-110-1-star-spangled-war-st.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/105-1543-110-1-star-spangled-war-st.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/105-1543-110-1-star-spangled-war-st.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/105-1543-110-1-star-spangled-war-st.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/105-1543-110-1-star-spangled-war-st.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/105-1543-110-1-star-spangled-war-st.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/105-1543-110-1-star-spangled-war-st.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":"The Hot-Rod Tank","site_detail_url":"https://comicvine.gamespot.com/star-spangled-war-stories-4-the-hot-rod-tank/4000-110/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1543/","id":1543,"name":"Star Spangled War Stories","site_detail_url":"https://comicvine.gamespot.com/star-spangled-war-stories/4050-1543/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:56","date_last_updated":"2022-07-12 02:43:48","deck":null,"description":"

    =

    ","has_staff_review":false,"id":111,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/106-1328-111-1-strange-adventures.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/106-1328-111-1-strange-adventures.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/106-1328-111-1-strange-adventures.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/106-1328-111-1-strange-adventures.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/106-1328-111-1-strange-adventures.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/106-1328-111-1-strange-adventures.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/106-1328-111-1-strange-adventures.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/106-1328-111-1-strange-adventures.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/106-1328-111-1-strange-adventures.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"27","name":null,"site_detail_url":"https://comicvine.gamespot.com/strange-adventures-27/4000-111/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1328/","id":1328,"name":"Strange Adventures","site_detail_url":"https://comicvine.gamespot.com/strange-adventures/4050-1328/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113/","cover_date":"1952-12-01","date_added":"2008-06-06 11:17:47","date_last_updated":"2022-07-19 04:27:48","deck":null,"description":null,"has_staff_review":false,"id":113,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/161642-6575-113-2-looney-tunes-and-mer.jpg","image_tags":"All Images"},"associated_images":[{"original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/72384-6575-113-1-looney-tunes-and-mer.jpg","id":72384,"caption":null,"image_tags":"All Images"}],"issue_number":"134","name":null,"site_detail_url":"https://comicvine.gamespot.com/looney-tunes-and-merrie-melodies-134/4000-113/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6575/","id":6575,"name":"Looney Tunes and Merrie Melodies","site_detail_url":"https://comicvine.gamespot.com/looney-tunes-and-merrie-melodies/4050-6575/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114/","cover_date":"1952-11-30","date_added":"2008-06-06 11:09:42","date_last_updated":"2021-10-08 23:46:26","deck":null,"description":"

    1. Horse Tale! (full text story on the inside front cover and inside back cover)

    2. Spinach Farm! (Popeye, Olive Oyl, Wimpy, Swee'Pea)

    3. Swee'Pea's Vacation (Swee'Pea, Popeye, Olive Oyl, King Blozo)

    4. The Long Way Home (Sherm)

    5. [untitled Popeye and Swee'Pea story on back cover]

    ","has_staff_review":false,"id":114,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/108-1174-114-1-popeye.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/108-1174-114-1-popeye.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/108-1174-114-1-popeye.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/108-1174-114-1-popeye.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/108-1174-114-1-popeye.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/108-1174-114-1-popeye.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/108-1174-114-1-popeye.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/108-1174-114-1-popeye.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/108-1174-114-1-popeye.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"22","name":"Spinach Farm!","site_detail_url":"https://comicvine.gamespot.com/popeye-22-spinach-farm/4000-114/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1174/","id":1174,"name":"Popeye","site_detail_url":"https://comicvine.gamespot.com/popeye/4050-1174/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:43","date_last_updated":"2022-07-11 07:01:13","deck":null,"description":null,"has_staff_review":false,"id":115,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/109-1176-115-1-tarzan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/109-1176-115-1-tarzan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/109-1176-115-1-tarzan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/109-1176-115-1-tarzan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/109-1176-115-1-tarzan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/109-1176-115-1-tarzan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/109-1176-115-1-tarzan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/109-1176-115-1-tarzan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/109-1176-115-1-tarzan.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"39","name":null,"site_detail_url":"https://comicvine.gamespot.com/tarzan-39/4000-115/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1176/","id":1176,"name":"Tarzan","site_detail_url":"https://comicvine.gamespot.com/tarzan/4050-1176/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:49","date_last_updated":"2022-07-08 06:12:17","deck":null,"description":null,"has_staff_review":false,"id":116,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/110-1247-116-1-tom-amp-jerry-comi.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"101","name":null,"site_detail_url":"https://comicvine.gamespot.com/tom-jerry-comics-101/4000-116/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1247/","id":1247,"name":"Tom & Jerry Comics","site_detail_url":"https://comicvine.gamespot.com/tom-jerry-comics/4050-1247/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:15","date_last_updated":"2022-07-08 02:53:20","deck":null,"description":null,"has_staff_review":false,"id":117,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/111-1479-117-1-tom-amp-jerry-wint.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"1","name":null,"site_detail_url":"https://comicvine.gamespot.com/tom-jerry-winter-carnival-1/4000-117/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1479/","id":1479,"name":"Tom & Jerry Winter Carnival","site_detail_url":"https://comicvine.gamespot.com/tom-jerry-winter-carnival/4050-1479/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-08 03:26:12","deck":null,"description":null,"has_staff_review":false,"id":118,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/112-1098-118-1-walter-lantz-new-fun.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"190","name":null,"site_detail_url":"https://comicvine.gamespot.com/walter-lantz-new-funnies-190/4000-118/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1098/","id":1098,"name":"Walter Lantz New Funnies","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-new-funnies/4050-1098/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:02","date_last_updated":"2019-04-09 22:40:01","deck":null,"description":null,"has_staff_review":false,"id":120,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/114-1376-120-1-two-fisted-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/114-1376-120-1-two-fisted-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/114-1376-120-1-two-fisted-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/114-1376-120-1-two-fisted-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/114-1376-120-1-two-fisted-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/114-1376-120-1-two-fisted-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/114-1376-120-1-two-fisted-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/114-1376-120-1-two-fisted-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/114-1376-120-1-two-fisted-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"30","name":null,"site_detail_url":"https://comicvine.gamespot.com/two-fisted-tales-30/4000-120/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1376/","id":1376,"name":"Two-Fisted Tales","site_detail_url":"https://comicvine.gamespot.com/two-fisted-tales/4050-1376/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121/","cover_date":"1952-11-01","date_added":"2008-06-06 11:10:08","date_last_updated":"2022-07-09 11:16:52","deck":null,"description":null,"has_staff_review":false,"id":121,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/115-1444-121-1-weird-fantasy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/115-1444-121-1-weird-fantasy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/115-1444-121-1-weird-fantasy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/115-1444-121-1-weird-fantasy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/115-1444-121-1-weird-fantasy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/115-1444-121-1-weird-fantasy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/115-1444-121-1-weird-fantasy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/115-1444-121-1-weird-fantasy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/115-1444-121-1-weird-fantasy.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"16","name":null,"site_detail_url":"https://comicvine.gamespot.com/weird-fantasy-16/4000-121/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1444/","id":1444,"name":"Weird Fantasy","site_detail_url":"https://comicvine.gamespot.com/weird-fantasy/4050-1444/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:21","date_last_updated":"2021-08-09 23:09:35","deck":null,"description":"
    ","has_staff_review":false,"id":123,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/117-898-123-1-captain-marvel-adven.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/117-898-123-1-captain-marvel-adven.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/117-898-123-1-captain-marvel-adven.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/117-898-123-1-captain-marvel-adven.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/117-898-123-1-captain-marvel-adven.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/117-898-123-1-captain-marvel-adven.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/117-898-123-1-captain-marvel-adven.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/117-898-123-1-captain-marvel-adven.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/117-898-123-1-captain-marvel-adven.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"139","name":"Captain Marvel Battles the Red Crusher","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-adventures-139-captain-marvel-battl/4000-123/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-898/","id":898,"name":"Captain Marvel Adventures","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-adventures/4050-898/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-19 12:01:49","deck":null,"description":null,"has_staff_review":false,"id":125,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/118-1066-125-1-marvel-family-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/118-1066-125-1-marvel-family-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/118-1066-125-1-marvel-family-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/118-1066-125-1-marvel-family-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/118-1066-125-1-marvel-family-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/118-1066-125-1-marvel-family-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/118-1066-125-1-marvel-family-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/118-1066-125-1-marvel-family-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/118-1066-125-1-marvel-family-the.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"78","name":"The Red Vulture Strikes","site_detail_url":"https://comicvine.gamespot.com/the-marvel-family-78-the-red-vulture-strikes/4000-125/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1066/","id":1066,"name":"The Marvel Family","site_detail_url":"https://comicvine.gamespot.com/the-marvel-family/4050-1066/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2022-07-08 20:04:19","deck":null,"description":null,"has_staff_review":false,"id":126,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/119-839-126-1-master-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/119-839-126-1-master-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/119-839-126-1-master-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/119-839-126-1-master-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/119-839-126-1-master-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/119-839-126-1-master-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/119-839-126-1-master-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/119-839-126-1-master-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/119-839-126-1-master-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"131","name":null,"site_detail_url":"https://comicvine.gamespot.com/master-comics-131/4000-126/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-839/","id":839,"name":"Master Comics","site_detail_url":"https://comicvine.gamespot.com/master-comics/4050-839/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2022-07-07 12:22:15","deck":null,"description":null,"has_staff_review":false,"id":127,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/120-843-127-1-whiz-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/120-843-127-1-whiz-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/120-843-127-1-whiz-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/120-843-127-1-whiz-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/120-843-127-1-whiz-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/120-843-127-1-whiz-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/120-843-127-1-whiz-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/120-843-127-1-whiz-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/120-843-127-1-whiz-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"152","name":null,"site_detail_url":"https://comicvine.gamespot.com/whiz-comics-152/4000-127/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-843/","id":843,"name":"Whiz Comics","site_detail_url":"https://comicvine.gamespot.com/whiz-comics/4050-843/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:04","date_last_updated":"2022-07-01 06:59:29","deck":null,"description":null,"has_staff_review":false,"id":128,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/893417-12.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/893417-12.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/893417-12.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/893417-12.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/893417-12.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/893417-12.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/893417-12.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/893417-12.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/893417-12.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"165","name":null,"site_detail_url":"https://comicvine.gamespot.com/jumbo-comics-165/4000-128/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-769/","id":769,"name":"Jumbo Comics","site_detail_url":"https://comicvine.gamespot.com/jumbo-comics/4050-769/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:21","date_last_updated":"2020-12-26 22:22:44","deck":null,"description":null,"has_staff_review":false,"id":131,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/124-1537-131-1-weird-mysteries.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/124-1537-131-1-weird-mysteries.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/124-1537-131-1-weird-mysteries.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/124-1537-131-1-weird-mysteries.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/124-1537-131-1-weird-mysteries.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/124-1537-131-1-weird-mysteries.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/124-1537-131-1-weird-mysteries.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/124-1537-131-1-weird-mysteries.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/124-1537-131-1-weird-mysteries.jpg","image_tags":"All Images"},"associated_images":[{"original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58993/2640763-weirdmysteries22.jpg","id":2640763,"caption":null,"image_tags":"All Images"}],"issue_number":"2","name":null,"site_detail_url":"https://comicvine.gamespot.com/weird-mysteries-2/4000-131/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1537/","id":1537,"name":"Weird Mysteries","site_detail_url":"https://comicvine.gamespot.com/weird-mysteries/4050-1537/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:36","date_last_updated":"2022-07-20 15:28:20","deck":null,"description":"

    Volume 9 Issue 11

    1. Airboy

    2. The Twanging String

    3. The Lead Soldiers of Haiti

    4. Money of Yesterday

    5. The Outlaw Champion

    6. The Big Texas Spread

    7. The Heap

    ","has_staff_review":false,"id":133,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/126-1069-133-1-airboy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/126-1069-133-1-airboy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/126-1069-133-1-airboy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/126-1069-133-1-airboy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/126-1069-133-1-airboy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/126-1069-133-1-airboy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/126-1069-133-1-airboy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/126-1069-133-1-airboy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/126-1069-133-1-airboy-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"106","name":null,"site_detail_url":"https://comicvine.gamespot.com/airboy-comics-106/4000-133/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1069/","id":1069,"name":"Airboy Comics","site_detail_url":"https://comicvine.gamespot.com/airboy-comics/4050-1069/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:51","date_last_updated":"2022-07-10 00:47:55","deck":null,"description":null,"has_staff_review":false,"id":134,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/127-1253-134-1-black-diamond-wester.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/127-1253-134-1-black-diamond-wester.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/127-1253-134-1-black-diamond-wester.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/127-1253-134-1-black-diamond-wester.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/127-1253-134-1-black-diamond-wester.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/127-1253-134-1-black-diamond-wester.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/127-1253-134-1-black-diamond-wester.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/127-1253-134-1-black-diamond-wester.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/127-1253-134-1-black-diamond-wester.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"41","name":null,"site_detail_url":"https://comicvine.gamespot.com/black-diamond-western-41/4000-134/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1253/","id":1253,"name":"Black Diamond Western","site_detail_url":"https://comicvine.gamespot.com/black-diamond-western/4050-1253/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:30","date_last_updated":"2022-07-11 04:12:57","deck":null,"description":null,"has_staff_review":false,"id":135,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/128-942-135-1-boy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/128-942-135-1-boy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/128-942-135-1-boy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/128-942-135-1-boy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/128-942-135-1-boy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/128-942-135-1-boy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/128-942-135-1-boy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/128-942-135-1-boy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/128-942-135-1-boy-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"84","name":null,"site_detail_url":"https://comicvine.gamespot.com/boy-comics-84/4000-135/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-942/","id":942,"name":"Boy Comics","site_detail_url":"https://comicvine.gamespot.com/boy-comics/4050-942/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2022-07-07 09:01:02","deck":null,"description":null,"has_staff_review":false,"id":136,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/129-886-136-1-daredevil-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/129-886-136-1-daredevil-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/129-886-136-1-daredevil-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/129-886-136-1-daredevil-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/129-886-136-1-daredevil-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/129-886-136-1-daredevil-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/129-886-136-1-daredevil-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/129-886-136-1-daredevil-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/129-886-136-1-daredevil-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"93","name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-comics-93/4000-136/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-886/","id":886,"name":"Daredevil Comics","site_detail_url":"https://comicvine.gamespot.com/daredevil-comics/4050-886/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:07","date_last_updated":"2022-07-05 02:12:12","deck":null,"description":null,"has_staff_review":false,"id":137,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/130-1441-137-1-best-of-the-west.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/130-1441-137-1-best-of-the-west.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/130-1441-137-1-best-of-the-west.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/130-1441-137-1-best-of-the-west.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/130-1441-137-1-best-of-the-west.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/130-1441-137-1-best-of-the-west.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/130-1441-137-1-best-of-the-west.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/130-1441-137-1-best-of-the-west.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/130-1441-137-1-best-of-the-west.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"6","name":null,"site_detail_url":"https://comicvine.gamespot.com/best-of-the-west-6/4000-137/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1441/","id":1441,"name":"Best of the West","site_detail_url":"https://comicvine.gamespot.com/best-of-the-west/4050-1441/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140/","cover_date":"1952-12-31","date_added":"2008-06-06 11:10:16","date_last_updated":"2022-05-06 17:13:15","deck":null,"description":"

    Karma works in mysterious ways! Owners of an inn murder their guests in order to steal their money. This arrangement can't last forever though…

    Six Mysterious Stories in this Issue:

    • The Bewitched Bike!
    • Death Waits Within!
    • The Locked Door!
    • Out of the Jungle
    • I'm Drowning!
    • Hiding Place
    ","has_staff_review":false,"id":140,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/133-1497-140-1-journey-into-mystery.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/133-1497-140-1-journey-into-mystery.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/133-1497-140-1-journey-into-mystery.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/133-1497-140-1-journey-into-mystery.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/133-1497-140-1-journey-into-mystery.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/133-1497-140-1-journey-into-mystery.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/133-1497-140-1-journey-into-mystery.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/133-1497-140-1-journey-into-mystery.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/133-1497-140-1-journey-into-mystery.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":"The Bewitched Bike!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-4-the-bewitched-bike/4000-140/","store_date":"1952-09-01","volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1497/","id":1497,"name":"Journey into Mystery","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery/4050-1497/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:01","date_last_updated":"2022-07-05 02:19:56","deck":null,"description":null,"has_staff_review":false,"id":142,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/135-1366-142-1-war-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/135-1366-142-1-war-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/135-1366-142-1-war-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/135-1366-142-1-war-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/135-1366-142-1-war-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/135-1366-142-1-war-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/135-1366-142-1-war-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/135-1366-142-1-war-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/135-1366-142-1-war-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"14","name":null,"site_detail_url":"https://comicvine.gamespot.com/war-comics-14/4000-142/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1366/","id":1366,"name":"War Comics","site_detail_url":"https://comicvine.gamespot.com/war-comics/4050-1366/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:46","date_last_updated":"2022-07-05 01:30:52","deck":null,"description":"
    ","has_staff_review":false,"id":143,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/136-1213-143-1-wild-western.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/136-1213-143-1-wild-western.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/136-1213-143-1-wild-western.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/136-1213-143-1-wild-western.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/136-1213-143-1-wild-western.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/136-1213-143-1-wild-western.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/136-1213-143-1-wild-western.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/136-1213-143-1-wild-western.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/136-1213-143-1-wild-western.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"25","name":null,"site_detail_url":"https://comicvine.gamespot.com/wild-western-25/4000-143/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1213/","id":1213,"name":"Wild Western","site_detail_url":"https://comicvine.gamespot.com/wild-western/4050-1213/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145/","cover_date":"1952-12-01","date_added":"2008-06-06 11:09:32","date_last_updated":"2013-08-08 10:30:02","deck":null,"description":null,"has_staff_review":false,"id":145,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/138-989-145-1-blackhawk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/138-989-145-1-blackhawk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/138-989-145-1-blackhawk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/138-989-145-1-blackhawk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/138-989-145-1-blackhawk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/138-989-145-1-blackhawk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/138-989-145-1-blackhawk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/138-989-145-1-blackhawk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/138-989-145-1-blackhawk.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"59","name":"Beachhead on Asteroid X","site_detail_url":"https://comicvine.gamespot.com/blackhawk-59-beachhead-on-asteroid-x/4000-145/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1819/","id":1819,"name":"Blackhawk","site_detail_url":"https://comicvine.gamespot.com/blackhawk/4050-1819/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147/","cover_date":"1952-12-31","date_added":"2008-06-06 11:10:02","date_last_updated":"2017-02-20 11:09:54","deck":null,"description":"

    The Ghostly Guardians

    Across the battle scared hills of Korea they came, marching in a death-like unison which sent chills of terror through those who witnessed the terrible manifestation. What were these weird spectral creatures that haunted the battle-fields by night? Many wondered, but it remained for a wounded G.I. to solve the mystery of The Ghostly Guardians.

    The Weird Mr. & Mrs. Murder

    You probably heard of husband and wife teams in radio, sports, and in the circus, but have you ever heard of a Mr. and Mrs. Murder? If not hold on to your hats and read about the bloody exploits of Ann and Tom Duncan....

    Death, Danger, And Deceit: A World War II Story

    Five planes fail to return from a routine patrol flight. Then, Blue Bolt takes off and follows the trail of the bullets to the lair of our hidden enemies.

    But, death, danger and deceit play this game on the side of the Axis.

    Dead Man's Mistake (Text Only Story)

    Valley of the Demon Monsters

    Once again Jungle Jo is called upon to protect his Tangane people from an invader... an invader that has never before been seen... a monster with the strength of ten elephants, large as the tallest tree and with a skin that shatters the jungle monarch's steel as if it were wood! Follow Jungle Jo as he enters for the first time the dreaded Forbidden Valley

    ","has_staff_review":false,"id":147,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/140-1399-147-1-blue-bolt-weird-tale.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"116","name":null,"site_detail_url":"https://comicvine.gamespot.com/blue-bolt-weird-tales-of-terror-116/4000-147/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1399/","id":1399,"name":"Blue Bolt Weird Tales of Terror","site_detail_url":"https://comicvine.gamespot.com/blue-bolt-weird-tales-of-terror/4050-1399/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:20","date_last_updated":"2022-07-12 04:11:15","deck":null,"description":null,"has_staff_review":false,"id":148,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/141-1522-148-1-fighting-leatherneck.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/141-1522-148-1-fighting-leatherneck.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/141-1522-148-1-fighting-leatherneck.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/141-1522-148-1-fighting-leatherneck.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/141-1522-148-1-fighting-leatherneck.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/141-1522-148-1-fighting-leatherneck.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/141-1522-148-1-fighting-leatherneck.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/141-1522-148-1-fighting-leatherneck.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/141-1522-148-1-fighting-leatherneck.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"6","name":null,"site_detail_url":"https://comicvine.gamespot.com/fighting-leathernecks-6/4000-148/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1522/","id":1522,"name":"Fighting Leathernecks","site_detail_url":"https://comicvine.gamespot.com/fighting-leathernecks/4050-1522/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:09","date_last_updated":"2022-07-12 04:12:19","deck":null,"description":null,"has_staff_review":false,"id":149,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/142-1456-149-1-monty-hall-of-the-u-.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"9","name":null,"site_detail_url":"https://comicvine.gamespot.com/monty-hall-of-the-us-marines-9/4000-149/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1456/","id":1456,"name":"Monty Hall of the U.S. Marines","site_detail_url":"https://comicvine.gamespot.com/monty-hall-of-the-us-marines/4050-1456/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:20","date_last_updated":"2018-09-10 20:47:35","deck":null,"description":null,"has_staff_review":false,"id":150,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/143-1526-150-1-chilling-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/143-1526-150-1-chilling-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/143-1526-150-1-chilling-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/143-1526-150-1-chilling-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/143-1526-150-1-chilling-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/143-1526-150-1-chilling-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/143-1526-150-1-chilling-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/143-1526-150-1-chilling-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/143-1526-150-1-chilling-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"13","name":null,"site_detail_url":"https://comicvine.gamespot.com/chilling-tales-13/4000-150/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1526/","id":1526,"name":"Chilling Tales","site_detail_url":"https://comicvine.gamespot.com/chilling-tales/4050-1526/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152/","cover_date":"1952-12-01","date_added":"2008-06-06 11:10:19","date_last_updated":"2022-07-12 00:27:50","deck":null,"description":"
    ","has_staff_review":false,"id":152,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/144-1503-152-1-uncanny-tales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/144-1503-152-1-uncanny-tales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/144-1503-152-1-uncanny-tales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/144-1503-152-1-uncanny-tales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/144-1503-152-1-uncanny-tales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/144-1503-152-1-uncanny-tales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/144-1503-152-1-uncanny-tales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/144-1503-152-1-uncanny-tales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/144-1503-152-1-uncanny-tales.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"4","name":null,"site_detail_url":"https://comicvine.gamespot.com/uncanny-tales-4/4000-152/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1503/","id":1503,"name":"Uncanny Tales","site_detail_url":"https://comicvine.gamespot.com/uncanny-tales/4050-1503/"}},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153/","cover_date":"1952-11-01","date_added":"2008-06-06 11:09:18","date_last_updated":"2020-03-01 07:25:56","deck":null,"description":"

    1. Nancy 
     
    2. Captain and the Kids 
     
    3. Casey Ruggles (by Warren Tufts)

    ","has_staff_review":false,"id":153,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/145-874-153-1-sparkler-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/145-874-153-1-sparkler-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/145-874-153-1-sparkler-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/145-874-153-1-sparkler-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/145-874-153-1-sparkler-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/145-874-153-1-sparkler-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/145-874-153-1-sparkler-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/145-874-153-1-sparkler-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/145-874-153-1-sparkler-comics.jpg","image_tags":"All Images"},"associated_images":[],"issue_number":"108","name":null,"site_detail_url":"https://comicvine.gamespot.com/sparkler-comics-108/4000-153/","store_date":null,"volume":{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-874/","id":874,"name":"Sparkler Comics","site_detail_url":"https://comicvine.gamespot.com/sparkler-comics/4050-874/"}}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/location-details/location-4020-21766.json b/samples/api-data/location-details/location-4020-21766.json new file mode 100644 index 0000000..65ab86d --- /dev/null +++ b/samples/api-data/location-details/location-4020-21766.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Wildes Land","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-21766/","count_of_issue_appearances":728,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-04-15 08:24:01","deck":"A tropical, prehistoric land hidden in Antarctica. It was created during the Triassic by the alien Nuwali for another alien race, The Beyonders, for observation and research purposes.","description":"

    Overview

    \"Rule #1 for survival in in the Savage Land: Never let your guard down, even for an instant because your first mistake is all too often your last\".

    There, nestled in the eternity mountain range of Antarctica, lies a realm out of time... a prehistoric jungle, forever hidden from the outside world by a shroud of billowing clouds.

    In Antarctica, there were many volcanoes, where the alien race known as the Nuwali installed devices to maintain a tropical climate. To be observed however, they would need living life forms. These living life forms were taken all over the centuries, including the Man-Apes. Soon after, the Nuwali and their masters the Beyonders decided to stop the experiment because of boredom. However, the devices were still running and the species living in the Savage Land continued to live.

    Later on, a group of humans from Atlantis discovered the Savage Land and claimed it their home. They also discovered the climate-controlling technology and used it to keep the volcanoes working. They mastered genetic engineering. They experimented on the various species living in the Savage Land, and were then forced to work for the Atlanteans until they revolted. The Atlanteans used the technology to expand the Savage Land. However, the Atlanteans were overthrown and the expanded areas in the Savage Land remained.

    After some years, the Savage Land was discovered by a man named Lord Robert Plunder who took back a metal which could liquefy all other metals. The discovery of this metal meant that others would want to steal his discovery, so he took his eldest son Kevin, and went back to the Savage Land. However, Lord Robert Plunder was killed by a local tribe of Man-Apes, and Kevin grew up in the Savage Land, known better as Ka-Zar.

    Alternate Realities

    Age of Apocalypse

    \"AoA
    AoA Savage Land.

    In this reality, Avalon was the last refuge of Humans and Mutants who wanted to escape Apocalypse´s tyranny. The place was a real paradise full of life where humans and mutants coexisted in peace and harmony. The place was ruled by Destiny and Cypher (her adoptive son).

    It was located hidden at the Antarctica, reassembled Savage Land of main reality but with different topography, this site was one of the only places in earth free from interference of Apocalypse until Shadow King mindcontrolled every inhabitant making them kill each other. Thus it was abandoned.

    In order to reach the Sanctuary, people must get passage from the tribe Ghost Dance in the \"Infernal Gallop\", then Mystique ferried refugees from an Antarctic station to the shores of Avalon. Then the travelers would be conduced into Avalon by Cain (a massive monk).

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-128897/","id":128897,"name":null,"issue_number":"22"},"id":21766,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7665885-rco003_1570022148.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7665885-rco003_1570022148.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7665885-rco003_1570022148.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7665885-rco003_1570022148.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7665885-rco003_1570022148.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7665885-rco003_1570022148.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7665885-rco003_1570022148.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7665885-rco003_1570022148.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7665885-rco003_1570022148.jpg","image_tags":"All Images"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910616/","id":910616,"name":null,"site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-1/4000-910616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913702/","id":913702,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-by-jonathan-hickman-omnibus-1-hc/4000-913702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905747/","id":905747,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ka-zar-lord-of-the-savage-land-5/4000-905747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911304/","id":911304,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-10-volume-10/4000-911304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908723/","id":908723,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/x-force-by-benjamin-percy-4-volume-4/4000-908723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898355/","id":898355,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ka-zar-lord-of-the-savage-land-4/4000-898355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904190/","id":904190,"name":"A Dog Gone Adventure","site_detail_url":"https://comicvine.gamespot.com/spider-bot-infinity-comic-7-a-dog-gone-adventure/4000-904190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893911/","id":893911,"name":"Chapter Twenty-Six: The Defilement of All Things by the Cannibal-Sorcerer Kulan Gath Part Three","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-26-chapter-twenty-six-the-defileme/4000-893911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889479/","id":889479,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ka-zar-lord-of-the-savage-land-2/4000-889479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889465/","id":889465,"name":"The Pen Is Mightier Than the Cerebro Sword","site_detail_url":"https://comicvine.gamespot.com/x-force-24-the-pen-is-mightier-than-the-cerebro-sw/4000-889465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895781/","id":895781,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-i-magneto-1-volume-8/4000-895781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895765/","id":895765,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-corp-by-tini-howard-vol-1-1-volume-1/4000-895765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884065/","id":884065,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ka-zar-marvel-tales-1/4000-884065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884102/","id":884102,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ka-zar-lord-of-the-savage-land-1/4000-884102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889855/","id":889855,"name":"Green Chapter Four","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-infinity-comic-8-green-chapter-fou/4000-889855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878286/","id":878286,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/wolverine-omnibus-2-volume-two/4000-878286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-871808/","id":871808,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-monsters-creatures-of-the-marvel-universe-e/4000-871808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848858/","id":848858,"name":"Simply Superior","site_detail_url":"https://comicvine.gamespot.com/x-corp-1-simply-superior/4000-848858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851640/","id":851640,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-omnibus-1-hc/4000-851640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851451/","id":851451,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-a-traitor-stalks-among-us/4000-851451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836307/","id":836307,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-black-white-and-blood-4/4000-836307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823343/","id":823343,"name":"Enter the Phoenix Part One: Sleep Now In the Fire","site_detail_url":"https://comicvine.gamespot.com/avengers-40-enter-the-phoenix-part-one-sleep-now-i/4000-823343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821504/","id":821504,"name":"Trench Warfare","site_detail_url":"https://comicvine.gamespot.com/x-force-15-trench-warfare/4000-821504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826681/","id":826681,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-frank-cho-savage-land-1-tpb/4000-826681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819824/","id":819824,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/avengers-by-jonathan-hickman-the-complete-collecti/4000-819824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797987/","id":797987,"name":"The Cerebro Sword","site_detail_url":"https://comicvine.gamespot.com/x-force-12-the-cerebro-sword/4000-797987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796295/","id":796295,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/empyre-avengers-3-untitled/4000-796295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791923/","id":791923,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/empyre-avengers-2-untitled/4000-791923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791922/","id":791922,"name":null,"site_detail_url":"https://comicvine.gamespot.com/empyre-5/4000-791922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799762/","id":799762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781432/","id":781432,"name":"Part 1: Seeds of Conflict","site_detail_url":"https://comicvine.gamespot.com/empyre-avengers-1-part-1-seeds-of-conflict/4000-781432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796464/","id":796464,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-proteus-1-volume-6/4000-796464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787828/","id":787828,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-to-dine-with-doom-1-volume-2/4000-787828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-760741/","id":760741,"name":"World Hive Part 4","site_detail_url":"https://comicvine.gamespot.com/ant-man-4-world-hive-part-4/4000-760741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768543/","id":768543,"name":"World Hive Part 5","site_detail_url":"https://comicvine.gamespot.com/ant-man-5-world-hive-part-5/4000-768543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-755867/","id":755867,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thanos-loses-1/4000-755867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-745820/","id":745820,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-by-jonathan-hickman-1-volume-1/4000-745820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740894/","id":740894,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-epic-collection-inner-fury-1-volume-6/4000-740894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736685/","id":736685,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/adventures-of-the-x-men-tooth-and-claw-1-tpb/4000-736685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729692/","id":729692,"name":"Hordeculture","site_detail_url":"https://comicvine.gamespot.com/x-men-3-hordeculture/4000-729692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730353/","id":730353,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-xpowers-of-x-1-hctpb/4000-730353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721160/","id":721160,"name":"Chapter Six: Blood Brothers","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-6-chapter-six-blood-brothers/4000-721160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-727276/","id":727276,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-city-of-sickles-1-volume-1/4000-727276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726220/","id":726220,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-prodigal-sun-1-tpb/4000-726220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718132/","id":718132,"name":"Chapter Five: The Triumph of Kulan Gath","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-5-chapter-five-the-triumph-of-kula/4000-718132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725264/","id":725264,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-verse-thanos-1-tpb/4000-725264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721803/","id":721803,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-xxl-by-jim-lee-1-hc/4000-721803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721263/","id":721263,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-marvel-book-expand-your-knowledge-of-a-vast-co/4000-721263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714236/","id":714236,"name":"The House That Xavier Built","site_detail_url":"https://comicvine.gamespot.com/house-of-x-1-the-house-that-xavier-built/4000-714236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714235/","id":714235,"name":null,"site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe-1/4000-714235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713070/","id":713070,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-prodigal-sun-1/4000-713070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716730/","id":716730,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-1-tpb/4000-716730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711971/","id":711971,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-2/4000-711971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710689/","id":710689,"name":"Chapter Two: Death Proof","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-2-chapter-two-death-proof/4000-710689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707521/","id":707521,"name":"Chapter One: Once Upon a Time in the City of Sickles","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-1-chapter-one-once-upon-a-time-in-/4000-707521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706403/","id":706403,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-no-road-home-10/4000-706403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705915/","id":705915,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-the-complete-collection-1-tpb/4000-705915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702478/","id":702478,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-epic-collection-back-to-basics-1-volume-/4000-702478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-698615/","id":698615,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-conan-the-barbarian-the-secret-of-s/4000-698615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694904/","id":694904,"name":"The Strength and Conviction of Phillip Coulson","site_detail_url":"https://comicvine.gamespot.com/avengers-11-the-strength-and-conviction-of-phillip/4000-694904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-698617/","id":698617,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-4-volume-4/4000-698617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695672/","id":695672,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-reload-by-chris-claremont-the-end-of-history/4000-695672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694155/","id":694155,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/wolverine-old-man-logan-the-hunter-and-the-hunted-/4000-694155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690820/","id":690820,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vault-of-spiders-1/4000-690820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693474/","id":693474,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-my-two-dads-1-volume-7/4000-693474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692092/","id":692092,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-the-sentinels-live-1-volume-/4000-692092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686393/","id":686393,"name":"My Two Dads, Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-39-my-two-dads-part-3/4000-686393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683835/","id":683835,"name":"My Two Dads, Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-38-my-two-dads-part-2/4000-683835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690810/","id":690810,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-epic-collection-the-leader-lives-1/4000-690810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679418/","id":679418,"name":"My Two Dads, Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-37-my-two-dads-part-1/4000-679418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673027/","id":673027,"name":"Logan the Hunted Part One","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-41-logan-the-hunted-part-one/4000-673027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675151/","id":675151,"name":"Logan the Hunted Conclusion","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-42-logan-the-hunted-conclusion/4000-675151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668791/","id":668791,"name":"'Til Death Do Us Part Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-27-til-death-do-us-part-part-2/4000-668791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670766/","id":670766,"name":"'Til Death Do Us Part Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-28-til-death-do-us-part-part-3/4000-670766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679787/","id":679787,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-x-men-artifact-edition-1-volume-8/4000-679787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674551/","id":674551,"name":"Volume 59","site_detail_url":"https://comicvine.gamespot.com/frank-chos-savage-wolverine-artists-edition-1-volu/4000-674551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664302/","id":664302,"name":"Call of the Wild","site_detail_url":"https://comicvine.gamespot.com/lockjaw-2-call-of-the-wild/4000-664302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670750/","id":670750,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-learning-curve-1-volume-2/4000-670750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664713/","id":664713,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-1-vol-1/4000-664713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663576/","id":663576,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ka-zar-2-volume-2/4000-663576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650922/","id":650922,"name":"Chapter Two: All Lesser Birds","site_detail_url":"https://comicvine.gamespot.com/phoenix-resurrection-the-return-of-jean-grey-2-cha/4000-650922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-651101/","id":651101,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-2/4000-651101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661163/","id":661163,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-ive-been-waiting-for-/4000-661163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641410/","id":641410,"name":"And Lo There Came... A Poison! Part 2","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-8-and-lo-there-came-a-poison-pa/4000-641410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630530/","id":630530,"name":"And Lo There Came... A Poison! Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-7-and-lo-there-came-a-poison-pa/4000-630530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628596/","id":628596,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-25/4000-628596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622946/","id":622946,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-6/4000-622946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621680/","id":621680,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-24/4000-621680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628591/","id":628591,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-empire-united-we-stand-1-tpb/4000-628591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613808/","id":613808,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-23/4000-613808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608261/","id":608261,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-22/4000-608261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603135/","id":603135,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-underground-1/4000-603135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597202/","id":597202,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-by-todd-dezago-and-mike-wieringo-1-tpb/4000-597202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594118/","id":594118,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-594118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587422/","id":587422,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-19/4000-587422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590800/","id":590800,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4000-590800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598541/","id":598541,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-72/4000-598541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579120/","id":579120,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-71/4000-579120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576626/","id":576626,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ka-zar-savage-dawn-1-tpb/4000-576626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562597/","id":562597,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-0/4000-562597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575217/","id":575217,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-575217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579119/","id":579119,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-70/4000-579119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555533/","id":555533,"name":"A.I.M. Vs. S.H.I.E.L.D. Part VI: If You Choose to Accept It","site_detail_url":"https://comicvine.gamespot.com/new-avengers-17-aim-vs-shield-part-vi-if-you-choos/4000-555533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579117/","id":579117,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-69/4000-579117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551311/","id":551311,"name":"A.I.M. vs. S.H.I.E.L.D., Part V: Dream Bigger, Darling","site_detail_url":"https://comicvine.gamespot.com/new-avengers-16-aim-vs-shield-part-v-dream-bigger-/4000-551311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550353/","id":550353,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-4/4000-550353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579116/","id":579116,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-68/4000-579116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547269/","id":547269,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-ant-man-11/4000-547269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544984/","id":544984,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-3/4000-544984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546062/","id":546062,"name":"A.I.M. vs. S.H.I.E.L.D., Part IV: Quick, Make Something Up","site_detail_url":"https://comicvine.gamespot.com/new-avengers-15-aim-vs-shield-part-iv-quick-make-s/4000-546062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542634/","id":542634,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-542634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550054/","id":550054,"name":"¡...Los últimos Vengadores en pie!","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-67-los-ultimos-vengadores-en/4000-550054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540092/","id":540092,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10/4000-540092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539247/","id":539247,"name":"A.I.M. vs. S.H.I.E.L.D., Part II: Part of the Team","site_detail_url":"https://comicvine.gamespot.com/new-avengers-13-aim-vs-shield-part-ii-part-of-the-/4000-539247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538504/","id":538504,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-2/4000-538504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541215/","id":541215,"name":"A.I.M. vs. S.H.I.E.L.D., Part III: Knowledge Is Power","site_detail_url":"https://comicvine.gamespot.com/new-avengers-14-aim-vs-shield-part-iii-knowledge-i/4000-541215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535351/","id":535351,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-1/4000-535351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535372/","id":535372,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-535372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534295/","id":534295,"name":"A.I.M. vs. S.H.I.E.L.D., Part I: What's Coming Next","site_detail_url":"https://comicvine.gamespot.com/new-avengers-12-aim-vs-shield-part-i-whats-coming-/4000-534295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550053/","id":550053,"name":"Punto muerto: Caso 007","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-66-punto-muerto-caso-007/4000-550053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542624/","id":542624,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mockingbird-bobbi-morse-agent-of-shield-1-tpb/4000-542624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538501/","id":538501,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-time-runs-out-1-hc/4000-538501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528509/","id":528509,"name":"","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-7/4000-528509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528513/","id":528513,"name":"Meet the Parent","site_detail_url":"https://comicvine.gamespot.com/new-avengers-11-meet-the-parent/4000-528513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526061/","id":526061,"name":"Everybody Dance Now","site_detail_url":"https://comicvine.gamespot.com/new-avengers-10-everybody-dance-now/4000-526061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523269/","id":523269,"name":"Awakening; Going Public","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6-awakening-going-public/4000-523269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521347/","id":521347,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-521347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494315/","id":494315,"name":"Sticks and Stones...","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-1-sticks-and-stones/4000-494315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499367/","id":499367,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-18/4000-499367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497961/","id":497961,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-omnibus-1-volume-1/4000-497961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498190/","id":498190,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/avengers-world-before-time-runs-out-1-volume-4/4000-498190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499359/","id":499359,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-17/4000-499359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489313/","id":489313,"name":"Before Time Runs Out: Part Five","site_detail_url":"https://comicvine.gamespot.com/avengers-world-21-before-time-runs-out-part-five/4000-489313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499358/","id":499358,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-16/4000-499358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486720/","id":486720,"name":"Before Time Runs Out: Part Four","site_detail_url":"https://comicvine.gamespot.com/avengers-world-20-before-time-runs-out-part-four/4000-486720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486157/","id":486157,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-old-man-logan-1/4000-486157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485507/","id":485507,"name":"Before Time Runs Out: Part Three","site_detail_url":"https://comicvine.gamespot.com/avengers-world-19-before-time-runs-out-part-three/4000-485507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490100/","id":490100,"name":"Volume 11: Merc With A Mouth","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-11-volume-11-merc-with-a-mouth/4000-490100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573405/","id":573405,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-35/4000-573405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485941/","id":485941,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-by-jonathan-hickman-1-volume-1/4000-485941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510275/","id":510275,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-2/4000-510275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477855/","id":477855,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-x-men-2/4000-477855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479504/","id":479504,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-33/4000-479504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470417/","id":470417,"name":"Origin Sites","site_detail_url":"https://comicvine.gamespot.com/avengers-38-origin-sites/4000-470417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477168/","id":477168,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/magneto-reversals-1-volume-2/4000-477168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499597/","id":499597,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-32/4000-499597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468079/","id":468079,"name":"The Ω Hulk Chapter Three","site_detail_url":"https://comicvine.gamespot.com/hulk-7-the-o-hulk-chapter-three/4000-468079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468916/","id":468916,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-11/4000-468916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465837/","id":465837,"name":"The Three Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-35-the-three-avengers/4000-465837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466330/","id":466330,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-10/4000-466330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465836/","id":465836,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-32/4000-465836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497666/","id":497666,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-15/4000-497666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476421/","id":476421,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-5/4000-476421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453410/","id":453410,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-6/4000-453410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456283/","id":456283,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-legacy-of-thanos-1-tpb/4000-456283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455826/","id":455826,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-omnibus-1-h/4000-455826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450083/","id":450083,"name":"","site_detail_url":"https://comicvine.gamespot.com/what-if-age-of-ultron-2/4000-450083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450068/","id":450068,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-25/4000-450068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450073/","id":450073,"name":"The Wedding of Deadpool; Operation Ballerina Drop; #$%@-faced in Vegas; With This Hand, I Thee Wed; Continuity Spontinuity; The Niagara Bride; Fanged; Quickie; So Deadpool Walks Into a Bar...; Eulogy for a Winkie; There Will Be No Honeymoon; Savage Land:","site_detail_url":"https://comicvine.gamespot.com/deadpool-27-the-wedding-of-deadpool-operation-ball/4000-450073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453653/","id":453653,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-deadpool-vs-s-h-i-e-l-d-1-volume-4/4000-453653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450781/","id":450781,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-2-volume-2/4000-450781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498280/","id":498280,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-5/4000-498280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497739/","id":497739,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-7/4000-497739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435578/","id":435578,"name":"Wakandan Vacation!","site_detail_url":"https://comicvine.gamespot.com/deadpool-20-wakandan-vacation/4000-435578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441672/","id":441672,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-7/4000-441672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498279/","id":498279,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-4/4000-498279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441671/","id":441671,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-6/4000-441671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498278/","id":498278,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-3/4000-498278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498674/","id":498674,"name":"Spiderman 22: Asombrosos Amigos","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-48-spiderman-22-asombrosos-/4000-498674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498277/","id":498277,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-2/4000-498277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432499/","id":432499,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus-2-volume-2/4000-432499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431133/","id":431133,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-50/4000-431133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427978/","id":427978,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-24/4000-427978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424531/","id":424531,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-deadpool-3/4000-424531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539698/","id":539698,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-5/4000-539698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-429003/","id":429003,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/avengers-prelude-to-infinity-1-volume-3/4000-429003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539697/","id":539697,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-4/4000-539697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425181/","id":425181,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-6-volume-si/4000-425181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424694/","id":424694,"name":"Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-1-age-of-ultron/4000-424694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539696/","id":539696,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-3/4000-539696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408990/","id":408990,"name":"Strong","site_detail_url":"https://comicvine.gamespot.com/avengers-13-strong/4000-408990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499580/","id":499580,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-15/4000-499580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418265/","id":418265,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-21/4000-418265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418264/","id":418264,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-18/4000-418264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408988/","id":408988,"name":"Book Nine","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-9-book-nine/4000-408988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411824/","id":411824,"name":"Book Ten","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-10-book-ten/4000-411824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420917/","id":420917,"name":"Kill Island","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-kill-island-1-kill-island/4000-420917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539695/","id":539695,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-2/4000-539695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404693/","id":404693,"name":"Evolve","site_detail_url":"https://comicvine.gamespot.com/avengers-12-evolve/4000-404693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400147/","id":400147,"name":"Gods and Monster, Part 2","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-7-gods-and-monster-part-2/4000-400147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412389/","id":412389,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-17/4000-412389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417207/","id":417207,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-the-last-white-event-1-volume-2/4000-417207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415616/","id":415616,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus-1-hc/4000-415616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406979/","id":406979,"name":"Savage Part 5: Hulk Smash!","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-5-savage-part-5-hulk-smash/4000-406979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400144/","id":400144,"name":"Book Seven","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-7-book-seven/4000-400144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396422/","id":396422,"name":"Star Bound","site_detail_url":"https://comicvine.gamespot.com/avengers-9-star-bound/4000-396422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414107/","id":414107,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-larry-hama-and-marc-silvestri-1-volum/4000-414107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540200/","id":540200,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-29/4000-540200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397539/","id":397539,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-6-book-six/4000-397539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405530/","id":405530,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-16/4000-405530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407091/","id":407091,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-6/4000-407091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395699/","id":395699,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-4-book-four/4000-395699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398995/","id":398995,"name":"Savage Learning Part 4: School of Snikt","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-28-savage-learning-part-4-scho/4000-398995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397549/","id":397549,"name":"Savage Part 4: Resurrection","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-4-savage-part-4-resurrection/4000-397549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396420/","id":396420,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-5-book-five/4000-396420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399456/","id":399456,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-18/4000-399456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399455/","id":399455,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-15/4000-399455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401369/","id":401369,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-threats-menaces-1-volume-3/4000-401369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395260/","id":395260,"name":"Savage Learning Part 3: Generation Dog","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-27-savage-learning-part-3-/4000-395260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394711/","id":394711,"name":"Savage Part 3: Kill Island","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-3-savage-part-3-kill-island/4000-394711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392363/","id":392363,"name":"Savage Learning Part 2; A Boy Named Dog","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-26-savage-learning-part-2-a-bo/4000-392363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397746/","id":397746,"name":"Avengers World","site_detail_url":"https://comicvine.gamespot.com/avengers-avengers-world-1-avengers-world/4000-397746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387261/","id":387261,"name":"Savage Part 2: She-Devil","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-2-savage-part-2-she-devil/4000-387261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396029/","id":396029,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-14/4000-396029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396439/","id":396439,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-vs-1-tpb/4000-396439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386142/","id":386142,"name":"Savage Learning Part 1; Survival 101","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-25-savage-learning-part-1-surv/4000-386142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380278/","id":380278,"name":"Savage Part 1: Snikt","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-1-savage-part-1-snikt/4000-380278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382803/","id":382803,"name":"The Death and Resurrection of Major Titans","site_detail_url":"https://comicvine.gamespot.com/avengers-4-the-death-and-resurrection-of-major-tit/4000-382803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395413/","id":395413,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-tpb/4000-395413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373217/","id":373217,"name":"We Were Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-2-we-were-avengers/4000-373217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371257/","id":371257,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-15/4000-371257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380710/","id":380710,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ka-zar-1-volume-1/4000-380710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366376/","id":366376,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-avengers-vs-x-men/4000-366376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366188/","id":366188,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-14/4000-366188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380697/","id":380697,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-final-exams-1-hc-tpb/4000-380697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380706/","id":380706,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-11-volume-11/4000-380706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480987/","id":480987,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-20/4000-480987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498643/","id":498643,"name":"X-Men 5: El Retorno Del Rey","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-17-x-men-5-el-retorno-del-r/4000-498643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362566/","id":362566,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-8/4000-362566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498641/","id":498641,"name":"X-Men 4: Fuego Infernal y Azufre","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-15-x-men-4-fuego-infernal-y/4000-498641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362565/","id":362565,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-7/4000-362565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348050/","id":348050,"name":"Final Exam, Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-34-final-exam-part-1/4000-348050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426413/","id":426413,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/man-thing-omnibus-1-hc/4000-426413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388148/","id":388148,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-zomnibus-1-hc/4000-388148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538805/","id":538805,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-19/4000-538805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355927/","id":355927,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-6/4000-355927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437407/","id":437407,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-chronicle-1-hc/4000-437407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352258/","id":352258,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/namor-visionaries-john-byrne-2-volume-two/4000-352258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362556/","id":362556,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-70/4000-362556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386619/","id":386619,"name":"Девианты. Сага. Часть 3; Девианты. Сага. Часть 4; Истории про Асгард. Один и Имир, царь ледяных гигантов","site_detail_url":"https://comicvine.gamespot.com/tor-mega-komiks-5-3-4/4000-386619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538803/","id":538803,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-17/4000-538803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355811/","id":355811,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-the-deviants-saga-1-tpb/4000-355811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342274/","id":342274,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-11-volume-eleven/4000-342274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337499/","id":337499,"name":"Got Hope?","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-11-got-hope/4000-337499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336045/","id":336045,"name":"Round 4","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-4-round-4/4000-336045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335954/","id":335954,"name":"Captain America vs. Gambit; The Amazing Spider-Man vs. Colossus","site_detail_url":"https://comicvine.gamespot.com/avx-vs-2-captain-america-vs-gambit-the-amazing-spi/4000-335954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341462/","id":341462,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-3-volume-3/4000-341462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324984/","id":324984,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/new-avengers-23-untitled/4000-324984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402813/","id":402813,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-1/4000-402813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336399/","id":336399,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-1-volume-1/4000-336399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498604/","id":498604,"name":"X-Men 1: La Gente Del Mañana","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-2-x-men-1-la-gente-del-mana/4000-498604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332809/","id":332809,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-fatal-attractions-1/4000-332809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313880/","id":313880,"name":"Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/thor-the-deviants-saga-4-part-4-of-5/4000-313880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323368/","id":323368,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-10-volume-10/4000-323368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321180/","id":321180,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ka-zar-by-mark-waid-andy-kubert-2-volume-two/4000-321180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317023/","id":317023,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/quasar-classic-1-volume-one/4000-317023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317111/","id":317111,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-omnibus-1-hc/4000-317111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312132/","id":312132,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1970s-1-volume-one/4000-312132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311494/","id":311494,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-2-volume-two/4000-311494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319590/","id":319590,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-54/4000-319590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310920/","id":310920,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one-4-volume-4/4000-310920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301727/","id":301727,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-18/4000-301727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539124/","id":539124,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-increibles-hulks-7/4000-539124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308857/","id":308857,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-burning-season-1-tpb/4000-308857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311625/","id":311625,"name":"Get Savage!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-5-get-savage/4000-311625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539123/","id":539123,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-increibles-hulks-6/4000-539123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294781/","id":294781,"name":"Back And Forth","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-black-cat-claws-2-3-back-and-forth/4000-294781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302780/","id":302780,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-black-cat-claws-ii-1-hctpb/4000-302780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595428/","id":595428,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidergirl-el-corazon-de-la-arana-1/4000-595428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303670/","id":303670,"name":"Skaar: King of the Savage Land","site_detail_url":"https://comicvine.gamespot.com/skaar-king-of-the-savage-land-1-skaar-king-of-the-/4000-303670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293898/","id":293898,"name":"Race Against Time!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-4-race-against-time/4000-293898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294354/","id":294354,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-1-volume-one/4000-294354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287099/","id":287099,"name":"The Threat of Flame!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-3-the-threat-of-flame/4000-287099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277526/","id":277526,"name":"Back and Forth","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-black-cat-claws-2-1-back-and-forth/4000-277526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293645/","id":293645,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/venom-by-rick-remender-1-volume-one/4000-293645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293541/","id":293541,"name":"Evolutionary War Omnibus","site_detail_url":"https://comicvine.gamespot.com/evolutionary-war-omnibus-1-evolutionary-war-omnibu/4000-293541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280614/","id":280614,"name":"King of the Savage Land 5 of 5","site_detail_url":"https://comicvine.gamespot.com/skaar-king-of-the-savage-land-5-king-of-the-savage/4000-280614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287098/","id":287098,"name":"Attack from Within!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-2-attack-from-within/4000-287098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293491/","id":293491,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-girl-family-values-1-tpb/4000-293491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275796/","id":275796,"name":"Storm Hunter Part Two","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-520-storm-hunte/4000-275796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274647/","id":274647,"name":"King of the Savage Land: 4 of 5","site_detail_url":"https://comicvine.gamespot.com/skaar-king-of-the-savage-land-4-king-of-the-savage/4000-274647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274596/","id":274596,"name":"The Burning Season","site_detail_url":"https://comicvine.gamespot.com/ka-zar-1-the-burning-season/4000-274596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284851/","id":284851,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-planet-savage-1-tpb/4000-284851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270577/","id":270577,"name":"King of the Savage Land: 3 of 5","site_detail_url":"https://comicvine.gamespot.com/skaar-king-of-the-savage-land-3-king-of-the-savage/4000-270577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271611/","id":271611,"name":"Web of Death!","site_detail_url":"https://comicvine.gamespot.com/venom-3-web-of-death/4000-271611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277452/","id":277452,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-1-volume-one/4000-277452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278181/","id":278181,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/impossible-man-1-tpb/4000-278181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277577/","id":277577,"name":"Ultimatum Companion","site_detail_url":"https://comicvine.gamespot.com/ultimatum-companion-1-ultimatum-companion/4000-277577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269063/","id":269063,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-2/4000-269063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268796/","id":268796,"name":"King of the Savage Land Part 2","site_detail_url":"https://comicvine.gamespot.com/skaar-king-of-the-savage-land-2-king-of-the-savage/4000-268796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267541/","id":267541,"name":"Skaar: King of the Savege Land","site_detail_url":"https://comicvine.gamespot.com/skaar-king-of-the-savage-land-1-skaar-king-of-the-/4000-267541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278461/","id":278461,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-incredible-hulks-1-tpb/4000-278461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267091/","id":267091,"name":"Planet Savage Conclusion","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-625-planet-savage-conclusion/4000-267091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265513/","id":265513,"name":"Planet Savage, Part Two","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-624-planet-savage-part-two/4000-265513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287268/","id":287268,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-stars-magazine-2/4000-287268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262982/","id":262982,"name":"Hunters & Spiders","site_detail_url":"https://comicvine.gamespot.com/spider-girl-4-hunters-spiders/4000-262982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273105/","id":273105,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-omnibus-2-volume-two/4000-273105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263745/","id":263745,"name":"Planet Savage, Part One","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-623-planet-savage-part-one/4000-263745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716087/","id":716087,"name":"Days of the Hunter","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-218-days-of-the-/4000-716087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261241/","id":261241,"name":"God Smash Conclusion","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-622-god-smash-conclusion/4000-261241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716086/","id":716086,"name":"Rumble in the Jungle","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-217-rumble-in-th/4000-716086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270055/","id":270055,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-1-tpb/4000-270055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267766/","id":267766,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-super-hero-safari-1-tpb/4000-267766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247324/","id":247324,"name":"Wake Up Screaming; All The Rage","site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-2-wake-up-screaming-all-the-rage/4000-247324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263851/","id":263851,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/acts-of-vengeance-omnibus-1-hc/4000-263851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260581/","id":260581,"name":"Hawkeye and Mockingbird: Ghosts","site_detail_url":"https://comicvine.gamespot.com/hawkeye-and-mockingbird-ghosts-1-hawkeye-and-mocki/4000-260581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240964/","id":240964,"name":"Ghosts, Part 6: Hunted","site_detail_url":"https://comicvine.gamespot.com/hawkeye-mockingbird-6-ghosts-part-6-hunted/4000-240964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240292/","id":240292,"name":"Sound and Fury","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-2-sound-and-fury/4000-240292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237114/","id":237114,"name":"Savage Tales","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-1-savage-tales/4000-237114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258520/","id":258520,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/one-month-to-live-1-hctpb/4000-258520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256144/","id":256144,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ka-zar-by-mark-waid-andy-kubert-1-volume-one/4000-256144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249193/","id":249193,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-birth-of-generation-hope-1-tpb/4000-249193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235680/","id":235680,"name":"Week Four","site_detail_url":"https://comicvine.gamespot.com/heroic-age-one-month-to-live-4-week-four/4000-235680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246358/","id":246358,"name":"Heart of Darkness","site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-digital-5-heart-of-darkness/4000-246358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240122/","id":240122,"name":"Amazing Spider-Man: Grim Hunt","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-grim-hunt-1-amazing-spider-man-/4000-240122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239296/","id":239296,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-babies-classic-1-volume-one/4000-239296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236456/","id":236456,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-head-trip-1-hc-tpb/4000-236456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224565/","id":224565,"name":"The Grim Hunt, Conclusion; Hunting the Hunter Part Four: Burning Bright","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-637-the-grim-hunt-conclusio/4000-224565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224585/","id":224585,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-heroic-age-1/4000-224585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218879/","id":218879,"name":"The Savage Land Adventure; Good Vibrations","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad-6-the-savage-land-adventur/4000-218879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256642/","id":256642,"name":"The FALL Of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-20-the-fall-of-shield/4000-256642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206819/","id":206819,"name":"Gauntlet Origins: Kraven; Here Comes Wild Card; Fashion Spread","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-7-gauntlet-origins-kraven-here-c/4000-206819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205825/","id":205825,"name":"Old Man Logan, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-mgc-66-old-man-logan-part-1/4000-205825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256638/","id":256638,"name":"The FALL Of IRON MAN!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-18-the-fall-of-iron-man/4000-256638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297089/","id":297089,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-297089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201461/","id":201461,"name":"Fantastic Four: Signals; Hammer And Sinew; Green Dreams; Butterfly Blade; Oh, The Places You'll Go!; Dead Man Talking","site_detail_url":"https://comicvine.gamespot.com/breaking-into-comics-the-marvel-way-2-fantastic-fo/4000-201461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216431/","id":216431,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion-1-tpb/4000-216431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228284/","id":228284,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-1-hc-tpb/4000-228284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251563/","id":251563,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-5/4000-251563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196859/","id":196859,"name":"Super-Sized Special","site_detail_url":"https://comicvine.gamespot.com/tails-of-the-pet-avengers-1-super-sized-special/4000-196859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220394/","id":220394,"name":"Iron Man: The Ultimate Guide To The Armored Super Hero","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-ultimate-guide-to-the-armored-super-h/4000-220394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249024/","id":249024,"name":"A New Era Dawns For The X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-1-a-new-era-dawns-for-the-x-men/4000-249024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186068/","id":186068,"name":"What If The Skrulls Succeeded In Their Secret Invasion ? / What If The Secret Invasion Remained Secret? / Say What? Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion-1-what-if-the-skrulls-succ/4000-186068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355511/","id":355511,"name":"Savage Safari!/Forewarned is Four Armed! (a.k.a. Armed and Dangerous)","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-17-savage-safariforewarned-is-four-a/4000-355511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177698/","id":177698,"name":"Head Trip, Part 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-4-head-trip-part-4/4000-177698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212701/","id":212701,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-return-1-hc-tpb/4000-212701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186240/","id":186240,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-disassembled-1-volume-4/4000-186240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174696/","id":174696,"name":"Stars Reborn, Chapter 1: Someone's Been Sleeping In Our bed!","site_detail_url":"https://comicvine.gamespot.com/x-babies-1-stars-reborn-chapter-1-someones-been-sl/4000-174696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173419/","id":173419,"name":"Book Three: A Night To Remember","site_detail_url":"https://comicvine.gamespot.com/marvel-divas-3-book-three-a-night-to-remember/4000-173419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171460/","id":171460,"name":"Head Trip, Part 3","site_detail_url":"https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-3-head-trip-part-3/4000-171460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173435/","id":173435,"name":"The Avengers Dismembered","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-return-5-the-avengers-dismembered/4000-173435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166138/","id":166138,"name":"Head Trip, Part 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-2-head-trip-part-2/4000-166138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184337/","id":184337,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimatum-1-ultimatum/4000-184337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295872/","id":295872,"name":"La Academia de Asesinos","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-12-la-academia-de-asesino/4000-295872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162520/","id":162520,"name":"Head Trip, Part 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-1-head-trip-part-1/4000-162520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210965/","id":210965,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-210965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176395/","id":176395,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-3-volume-3/4000-176395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184998/","id":184998,"name":"Essential Sub-Mariner Volume One TPB","site_detail_url":"https://comicvine.gamespot.com/essential-sub-mariner-1-essential-sub-mariner-volu/4000-184998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159951/","id":159951,"name":"We Are Simple Creatures On A Monumental Quest.","site_detail_url":"https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-2-we-are-simple-creat/4000-159951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200647/","id":200647,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-4-book-four/4000-200647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232118/","id":232118,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-11-volum/4000-232118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297563/","id":297563,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-3/4000-297563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157216/","id":157216,"name":"","site_detail_url":"https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-1/4000-157216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158680/","id":158680,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-3-book-three/4000-158680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297562/","id":297562,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-2/4000-297562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200655/","id":200655,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-2-book-two/4000-200655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199359/","id":199359,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-1-tpb/4000-199359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297561/","id":297561,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-1/4000-297561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153956/","id":153956,"name":"Missing Links","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-featuring-reptil-1-missing/4000-153956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335565/","id":335565,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secret-invasion-2-book-2/4000-335565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173687/","id":173687,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-1-book-1/4000-173687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391879/","id":391879,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-5-volume-fi/4000-391879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153677/","id":153677,"name":"Heaven on Earth","site_detail_url":"https://comicvine.gamespot.com/ultimatum-3-heaven-on-earth/4000-153677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224086/","id":224086,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimates-3-who-killed-the-scarlet-witch-1-tpb/4000-224086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363457/","id":363457,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-definitive-wolverine-1-wolveri/4000-363457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172978/","id":172978,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-amazing-spider-man-1-tpb/4000-172978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167612/","id":167612,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-omnibus-1-volume-one/4000-167612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169711/","id":169711,"name":"Mighty Avengers: Secret Invasion, Book One","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one-1-mighty-/4000-169711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220328/","id":220328,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-files-1/4000-220328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155705/","id":155705,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-classic-x-men-3-volume-3/4000-155705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153676/","id":153676,"name":"Ultimatum: Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-100-ultimatum-part-3-of-3/4000-153676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220393/","id":220393,"name":"Wolverine: Inside The World Of The Living Weapon","site_detail_url":"https://comicvine.gamespot.com/wolverine-inside-the-world-of-the-living-weapon-1-/4000-220393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893852/","id":893852,"name":"Sexe, mensonges & DVD (3)","site_detail_url":"https://comicvine.gamespot.com/ultimates-39-sexe-mensonges-and-dvd-3/4000-893852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289809/","id":289809,"name":"","site_detail_url":"https://comicvine.gamespot.com/invasion-secreta-2/4000-289809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195585/","id":195585,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-war-machine-1-tpb/4000-195585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172944/","id":172944,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-1-secret-invasion/4000-172944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289808/","id":289808,"name":"","site_detail_url":"https://comicvine.gamespot.com/invasion-secreta-1/4000-289808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298201/","id":298201,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-27/4000-298201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185463/","id":185463,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-1-tpb/4000-185463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289100/","id":289100,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-adventures-46/4000-289100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473071/","id":473071,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-saga-2-volume-two/4000-473071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145938/","id":145938,"name":"The Birth Of...The Gibbon!; To Stalk A Spider!; The Final Chapter!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-0-the-birth-ofthe-gibbon-to-stalk-a-sp/4000-145938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140513/","id":140513,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-5-part-5/4000-140513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139372/","id":139372,"name":"Robots in Disguise","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-5-robots-in-disguise/4000-139372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138979/","id":138979,"name":"War Machine: Weapon of S.H.I.E.L.D. Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-33-war-machine-weapon-of-shield-part-1/4000-138979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138234/","id":138234,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-6/4000-138234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200201/","id":200201,"name":"JLA / Avengers","site_detail_url":"https://comicvine.gamespot.com/jla-avengers-1-jla-avengers/4000-200201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139385/","id":139385,"name":"Brand New Secret Invasion, Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man-2-brand-new/4000-139385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171740/","id":171740,"name":"Uncanny X-Men: Divided We Stand","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-divided-we-stand-1-uncanny-x-men-div/4000-171740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135430/","id":135430,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-5/4000-135430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135078/","id":135078,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-3-part-3/4000-135078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136537/","id":136537,"name":"Absolute Power, Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-97-absolute-power-part-4-of-4/4000-136537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132926/","id":132926,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-4/4000-132926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134066/","id":134066,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-43-untitled/4000-134066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132983/","id":132983,"name":"Soul Awakening, Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/new-exiles-8-soul-awakening-part-2-of-4/4000-132983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131439/","id":131439,"name":"Farewell; In Plain Sight; Seems Like Old Times; Master of the Cube; The Resistance","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-who-do-you-trust-1-farewell-in-pla/4000-131439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131297/","id":131297,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-3/4000-131297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130518/","id":130518,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-14-untitled/4000-130518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131821/","id":131821,"name":"Savages","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-4-savages/4000-131821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131540/","id":131540,"name":"Old Man Logan, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-66-old-man-logan-part-1/4000-131540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130973/","id":130973,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-41-untitled/4000-130973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134559/","id":134559,"name":"Paperboy Blues; Cereal Quest; Paperboy Showdown; Hulk Date; Round Trip; Rally the Troops; Passing the Torch; The Iron Avengers","site_detail_url":"https://comicvine.gamespot.com/mini-marvels-rock-paper-scissors-1-paperboy-blues-/4000-134559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129598/","id":129598,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-2/4000-129598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221688/","id":221688,"name":"Hulk: The Incredible Guide","site_detail_url":"https://comicvine.gamespot.com/hulk-the-incredible-guide-1-hulk-the-incredible-gu/4000-221688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126370/","id":126370,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-1/4000-126370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213945/","id":213945,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-who-do-you-trust-1-tpb/4000-213945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125977/","id":125977,"name":"Spider-Man and His Amazing Friends: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-120-spider-man-and-his-amazing/4000-125977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123432/","id":123432,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-3-wolverine/4000-123432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122405/","id":122405,"name":"X-Men: Divided - Part One","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-495-x-men-divided-part-one/4000-122405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125512/","id":125512,"name":"Vanguard 7 of 12:Collision; Savage Land 3 of 3: Lost World; Namor Paying Respects; Weapon Omega 7 of 12","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-7-vanguard-7-of-12collision/4000-125512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209182/","id":209182,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-strange-tales-1-volume-1/4000-209182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141530/","id":141530,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-atlas-2/4000-141530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125607/","id":125607,"name":"Vanguard 6 of 12: Unintended Consequences; Savage Land Part 2 of 3: Alliances; Captain America:4F One Shot; Weapon Omega Part 6 of 12","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-6-vanguard-6-of-12-unintend/4000-125607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156748/","id":156748,"name":"Volume 1: Mutant Mayhem","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-mutant-mayhem-1-volume-1-mutant-/4000-156748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119032/","id":119032,"name":"Sex, Lies & DVD: Improbable Cause","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-1-sex-lies-dvd-improbable-cause/4000-119032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125573/","id":125573,"name":"Vanguard 5 of 12:Alternative P.O.V.; Savage Land 1 of 3; Breaking Away: A Wrecking Crew Story; Weapon Omega Part 5 of 12","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-5-vanguard-5-of-12alternati/4000-125573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200196/","id":200196,"name":"VS. The Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/deadpool-vs-the-marvel-universe-1-vs-the-marvel-un/4000-200196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225130/","id":225130,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-extended-cut-1/4000-225130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110269/","id":110269,"name":"The Book of the Dooms","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-4-the-book-of-t/4000-110269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111151/","id":111151,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-10/4000-111151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181945/","id":181945,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-event-horizon-1-tpb/4000-181945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110508/","id":110508,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-9/4000-110508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232081/","id":232081,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-2-volume-2/4000-232081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391876/","id":391876,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-4-volume-4/4000-391876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416855/","id":416855,"name":"Feuer Und Schwefel","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-4-feuer-und-schwefel/4000-416855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148358/","id":148358,"name":"What If Legion Had Killed Xavier and Magneto?","site_detail_url":"https://comicvine.gamespot.com/what-if-x-men-age-of-apocalypse-1-what-if-legion-h/4000-148358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217744/","id":217744,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/universe-x-2-volume-two/4000-217744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186647/","id":186647,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-black-cat-claws-1-hctpb/4000-186647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217596/","id":217596,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/universe-x-1-volume-one/4000-217596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108684/","id":108684,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/claws-3-part-three/4000-108684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127701/","id":127701,"name":"Book 4","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-4-book-4/4000-127701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138254/","id":138254,"name":"X-Men: The Characters and Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1-x-men-th/4000-138254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139887/","id":139887,"name":"Tin Can Heroes, Part 4: A Prehistory Of Violence","site_detail_url":"https://comicvine.gamespot.com/sentinel-squad-one-4-tin-can-heroes-part-4-a-prehi/4000-139887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134176/","id":134176,"name":"The Super Hero's Apprentice, Part 1: Fallout","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-29-the-super-heros-apprentice-par/4000-134176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389700/","id":389700,"name":"Marvel Knights 4: Resurrection of Nicholas Scratch","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-resurrection-of-nicholas-scratch-/4000-389700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155693/","id":155693,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-4-volume-4/4000-155693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139884/","id":139884,"name":"Tin Can Heroes, Part 3: Savagery","site_detail_url":"https://comicvine.gamespot.com/sentinel-squad-one-3-tin-can-heroes-part-3-savager/4000-139884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167686/","id":167686,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-1-volume-1/4000-167686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168644/","id":168644,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-1-volume-1/4000-168644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110573/","id":110573,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150315/","id":150315,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-5-volume-5/4000-150315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411403/","id":411403,"name":"Verleiding","site_detail_url":"https://comicvine.gamespot.com/x-mannen-282-verleiding/4000-411403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142790/","id":142790,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one-1-volume-1/4000-142790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411402/","id":411402,"name":"Gevaarlijk Spel","site_detail_url":"https://comicvine.gamespot.com/x-mannen-281-gevaarlijk-spel/4000-411402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238391/","id":238391,"name":"Out of Time","site_detail_url":"https://comicvine.gamespot.com/exiles-out-of-time-1-out-of-time/4000-238391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411401/","id":411401,"name":"Duel In De Ruimte","site_detail_url":"https://comicvine.gamespot.com/x-mannen-280-duel-in-de-ruimte/4000-411401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99618/","id":99618,"name":"The Killing Season: Part Seven","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-7-the-killing-season-part-sev/4000-99618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411400/","id":411400,"name":"Quarantaine!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-279-quarantaine/4000-411400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99617/","id":99617,"name":"The Killing Season: Part Six","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-6-the-killing-season-part-six/4000-99617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278687/","id":278687,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-chris-claremont-1-hc/4000-278687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347072/","id":347072,"name":"Ultimate Marvel","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-flip-magazine-1-ultimate-marvel/4000-347072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99616/","id":99616,"name":"The Killing Season: Part Five","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-5-the-killing-season-part-fiv/4000-99616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126987/","id":126987,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-vignettes-2-volume-two/4000-126987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99615/","id":99615,"name":"The Killing Season: Part Four","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-4-the-killing-season-part-fou/4000-99615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106561/","id":106561,"name":"World's End, Part 5: Bad Company","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-459-worlds-end-part-5-bad-compan/4000-106561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99614/","id":99614,"name":"The Killing Season: Part Three","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-3-the-killing-season-part-thr/4000-99614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101002/","id":101002,"name":"World's End, Part 4: The Enemy Of My Enemy","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-458-worlds-end-part-4-the-enemy-/4000-101002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108306/","id":108306,"name":"Breakout, Pt. 6","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-6-breakout-pt-6/4000-108306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99613/","id":99613,"name":"The Killing Season: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-2-the-killing-season-chapter-/4000-99613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101001/","id":101001,"name":"World's End, Part 3: Cutting Edge!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-457-worlds-end-part-3-cutting-ed/4000-101001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108305/","id":108305,"name":"Breakout, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-5-breakout-pt-5/4000-108305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127623/","id":127623,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-3-book-3/4000-127623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99612/","id":99612,"name":"The Killing Season: Part One","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-1-the-killing-season-part-one/4000-99612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108304/","id":108304,"name":"Breakout, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-4-breakout-pt-4/4000-108304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99894/","id":99894,"name":"World's End, Part 2: On Ice!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-456-worlds-end-part-2-on-ice/4000-99894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168832/","id":168832,"name":"Breakout","site_detail_url":"https://comicvine.gamespot.com/new-avengers-breakout-1-breakout/4000-168832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167046/","id":167046,"name":"On Ice","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-new-age-3-on-ice/4000-167046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228234/","id":228234,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-2-volume-2/4000-228234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230117/","id":230117,"name":"Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/x-men-days-of-future-past-1-days-of-future-past/4000-230117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105426/","id":105426,"name":"A Contest of Champions","site_detail_url":"https://comicvine.gamespot.com/jlaavengers-2-a-contest-of-champions/4000-105426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233664/","id":233664,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-6-volume-six/4000-233664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235441/","id":235441,"name":"Return of the King","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-return-of-the-king-1-return-of-the-/4000-235441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384528/","id":384528,"name":"Геенна огненная. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-25-4/4000-384528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384527/","id":384527,"name":"Геенна огненная. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-24-3/4000-384527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129356/","id":129356,"name":"Hulk: The Incredible Guide","site_detail_url":"https://comicvine.gamespot.com/hulk-the-incredible-guide-1-hulk-the-incredible-gu/4000-129356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298338/","id":298338,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-1/4000-298338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235320/","id":235320,"name":"Hellfire and Brimstone","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-hellfire-and-brimstone-1-hellfire-a/4000-235320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105487/","id":105487,"name":"Return of the King: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-29-return-of-the-king-part-3/4000-105487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105484/","id":105484,"name":"Return of the King: Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-26-return-of-the-king-prelude/4000-105484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233658/","id":233658,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-1-volume-one/4000-233658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105482/","id":105482,"name":"Hellfire and Brimstone: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-24-hellfire-and-brimstone-part-4/4000-105482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105480/","id":105480,"name":"Hellfire and Brimstone: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-23-hellfire-and-brimstone-part-3/4000-105480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105369/","id":105369,"name":"Nocturne and Evensong","site_detail_url":"https://comicvine.gamespot.com/exiles-16-nocturne-and-evensong/4000-105369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277160/","id":277160,"name":"X-Men Visionaries: Jim Lee","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-jim-lee-1-x-men-visionaries-jim-/4000-277160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142753/","id":142753,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-1-volume-1/4000-142753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80590/","id":80590,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-4/4000-80590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384488/","id":384488,"name":"Вторжение","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-7-wikiissue/4000-384488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142026/","id":142026,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-team-up-1-volume-1/4000-142026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384487/","id":384487,"name":"Поля сражений","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-6-wikiissue/4000-384487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222700/","id":222700,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-savage-land-1-tpb/4000-222700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220108/","id":220108,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-the-amazing-spider-man-1-tpb/4000-220108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384486/","id":384486,"name":"Предательство","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-5-wikiissue/4000-384486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105361/","id":105361,"name":"A World Apart (part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-8-a-world-apart-part-1-of-3/4000-105361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384484/","id":384484,"name":"Враг внутри","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-3-wikiissue/4000-384484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112512/","id":112512,"name":"What Price, Freedom? What Price, Humanity?","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-savage-land-4-what-price-freedom-wha/4000-112512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141113/","id":141113,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-5-volume-5/4000-141113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112511/","id":112511,"name":"False Haven!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-savage-land-3-false-haven/4000-112511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384482/","id":384482,"name":"Люди будущего. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-2-2/4000-384482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112510/","id":112510,"name":"Deluge","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-savage-land-2-deluge/4000-112510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133636/","id":133636,"name":"#13-10","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-4-13-10/4000-133636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384479/","id":384479,"name":"Люди будущего. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-1-1/4000-384479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112491/","id":112491,"name":"Savage Genesis","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-savage-land-1-savage-genesis/4000-112491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69372/","id":69372,"name":null,"site_detail_url":"https://comicvine.gamespot.com/universe-x-x/4000-69372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145247/","id":145247,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-special-iron-men-1/4000-145247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69370/","id":69370,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-11/4000-69370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235317/","id":235317,"name":"The Tomorrow People","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-the-tomorrow-people-1-the-tomorrow-/4000-235317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69369/","id":69369,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-10/4000-69369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140964/","id":140964,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4-volume-4/4000-140964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53569/","id":53569,"name":"Invasion","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-6-invasion/4000-53569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145107/","id":145107,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-special-beasts-1/4000-145107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53568/","id":53568,"name":"Killing Fields","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-5-killing-fields/4000-53568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53567/","id":53567,"name":"Betrayal","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-4-betrayal/4000-53567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51632/","id":51632,"name":"The Enemy Within","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-2-the-enemy-within/4000-51632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51631/","id":51631,"name":"The Tomorrow People","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-1-the-tomorrow-people/4000-51631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69362/","id":69362,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-3/4000-69362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124313/","id":124313,"name":"Blood and Circuses","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-13-blood-and-circuses/4000-124313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124311/","id":124311,"name":"And Death Alone Shall Know My Name","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-12-and-death-alone-shall-kn/4000-124311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70478/","id":70478,"name":"Destroy All Mutants!","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-11-destroy-all-mutants/4000-70478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69360/","id":69360,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-1/4000-69360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110559/","id":110559,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-ultimate-/4000-110559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70477/","id":70477,"name":"Home is Where The HURT Is...","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-10-home-is-where-the-hurt-i/4000-70477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69359/","id":69359,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-0/4000-69359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70476/","id":70476,"name":"Dark Destiny","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-9-dark-destiny/4000-70476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66236/","id":66236,"name":"Hidden Paths","site_detail_url":"https://comicvine.gamespot.com/captain-america-31-hidden-paths/4000-66236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70474/","id":70474,"name":"Power Play","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-7-power-play/4000-70474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66235/","id":66235,"name":"Waste of Dreams","site_detail_url":"https://comicvine.gamespot.com/captain-america-30-waste-of-dreams/4000-66235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70473/","id":70473,"name":"Behold A Goddess Rising..!","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-6-behold-a-goddess-rising/4000-70473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66234/","id":66234,"name":"The Savage Man","site_detail_url":"https://comicvine.gamespot.com/captain-america-29-the-savage-man/4000-66234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70472/","id":70472,"name":"Riders On the Storm","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-5-riders-on-the-storm/4000-70472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66233/","id":66233,"name":"Grotesqueries","site_detail_url":"https://comicvine.gamespot.com/captain-america-28-grotesqueries/4000-66233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70471/","id":70471,"name":"Escape To Oblivion","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-4-escape-to-oblivion/4000-70471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715437/","id":715437,"name":"Savage Land","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-58-savage-land/4000-715437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66232/","id":66232,"name":"Twisted Tomorrows, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-27-twisted-tomorrows-part-3/4000-66232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70470/","id":70470,"name":"On Wings Of Angels","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-3-on-wings-of-angels/4000-70470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66231/","id":66231,"name":"Twisted Tomorrows, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-26-twisted-tomorrows-part-2/4000-66231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70469/","id":70469,"name":"The Ghost And The Darkness","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-2-the-ghost-and-the-darknes/4000-70469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124309/","id":124309,"name":"Once More The Savage Land","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-1-once-more-the-savage-land/4000-124309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142723/","id":142723,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-classic-x-men-1-volume-1/4000-142723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135213/","id":135213,"name":"Between Daze","site_detail_url":"https://comicvine.gamespot.com/gambit-12-between-daze/4000-135213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45505/","id":45505,"name":"Lord of the Savage Land!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-20-lord-of-the-savage-land/4000-45505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132204/","id":132204,"name":"Home is Where The Heart Is","site_detail_url":"https://comicvine.gamespot.com/x-men-liberators-2-home-is-where-the-heart-is/4000-132204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155545/","id":155545,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-3-volume-3/4000-155545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231845/","id":231845,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-crossroads-1-tpb/4000-231845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45307/","id":45307,"name":"Brave Old World","site_detail_url":"https://comicvine.gamespot.com/what-if-112-brave-old-world/4000-45307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277158/","id":277158,"name":"X-Men Visionaries: Chris Claremont","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-chris-claremont-1-x-men-visionar/4000-277158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178128/","id":178128,"name":"Doom Quest","site_detail_url":"https://comicvine.gamespot.com/x-men-dr-doom-annual-98-1-doom-quest/4000-178128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44940/","id":44940,"name":"The Politics Of Evolution","site_detail_url":"https://comicvine.gamespot.com/ka-zar-13-the-politics-of-evolution/4000-44940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247295/","id":247295,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grandson-of-origins-of-marvel-comics-1-tpb/4000-247295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140971/","id":140971,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-2-volume-2/4000-140971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43876/","id":43876,"name":"Exposed","site_detail_url":"https://comicvine.gamespot.com/ka-zar-3-exposed/4000-43876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43773/","id":43773,"name":"Law of the Jungle","site_detail_url":"https://comicvine.gamespot.com/ka-zar-2-law-of-the-jungle/4000-43773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51679/","id":51679,"name":"Best Intentions","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-454-best-intentions/4000-51679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43685/","id":43685,"name":"The Thrilling Return of Ka-Zar, Lord of the Savage Land!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-1-the-thrilling-return-of-ka-zar-lord-of-th/4000-43685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43705/","id":43705,"name":"Tag, Sucker!","site_detail_url":"https://comicvine.gamespot.com/x-men-lost-tales-2-tag-sucker/4000-43705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140990/","id":140990,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-1-volume-1/4000-140990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111410/","id":111410,"name":"Dawn of a New Age of Heroes!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-marvel-universe-1-dawn-of-a-new-age-o/4000-111410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186032/","id":186032,"name":"The Nature of the Beast","site_detail_url":"https://comicvine.gamespot.com/ka-zar-of-the-savage-land-1-the-nature-of-the-beas/4000-186032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251550/","id":251550,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-10/4000-251550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135528/","id":135528,"name":"Finders Keepers","site_detail_url":"https://comicvine.gamespot.com/2099-world-of-tomorrow-5-finders-keepers/4000-135528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135424/","id":135424,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/2099-world-of-tomorrow-2-homecoming/4000-135424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135423/","id":135423,"name":"The World of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/2099-world-of-tomorrow-1-the-world-of-tomorrow/4000-135423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118065/","id":118065,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-2099-8-homecoming/4000-118065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264173/","id":264173,"name":"The Neal Adams Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-2-the-neal-adams-collection-2-th/4000-264173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119357/","id":119357,"name":"Savaged","site_detail_url":"https://comicvine.gamespot.com/badrock-wolverine-1-savaged/4000-119357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70436/","id":70436,"name":"Between Garokk and a Hard Place","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-9-between-garokk-and-a-hard-place/4000-70436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70435/","id":70435,"name":"Savage Land, Savage Heart","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-8-savage-land-savage-heart/4000-70435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40984/","id":40984,"name":"X-Calibre, Part 4: On Fire","site_detail_url":"https://comicvine.gamespot.com/x-calibre-4-x-calibre-part-4-on-fire/4000-40984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40861/","id":40861,"name":"Body Heat","site_detail_url":"https://comicvine.gamespot.com/x-calibre-3-body-heat/4000-40861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40735/","id":40735,"name":"X-Calibre, Part 2: Burn","site_detail_url":"https://comicvine.gamespot.com/x-calibre-2-x-calibre-part-2-burn/4000-40735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40600/","id":40600,"name":"The Infernal Gallop","site_detail_url":"https://comicvine.gamespot.com/x-calibre-1-the-infernal-gallop/4000-40600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47681/","id":47681,"name":"Escape from the Savage Land!","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-13-escape-from-the-savage-land/4000-47681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246112/","id":246112,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-the-early-years-10/4000-246112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47680/","id":47680,"name":"Reunion Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-12-reunion-part-one/4000-47680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47679/","id":47679,"name":"The Trouble Is Not In Your Set!","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-11-the-trouble-is-not-in-your-set/4000-47679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166247/","id":166247,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine-7/4000-166247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47678/","id":47678,"name":"Beauty and the Beast","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-10-beauty-and-the-beast/4000-47678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47677/","id":47677,"name":"A Rogue's Tale","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-9-a-rogues-tale/4000-47677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122264/","id":122264,"name":"The Narrow World","site_detail_url":"https://comicvine.gamespot.com/doom-2099-22-the-narrow-world/4000-122264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39657/","id":39657,"name":"Primal Scream","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-6-primal-scream/4000-39657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122192/","id":122192,"name":"Savage Decline","site_detail_url":"https://comicvine.gamespot.com/doom-2099-21-savage-decline/4000-122192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134497/","id":134497,"name":"Strangers In The Jungle","site_detail_url":"https://comicvine.gamespot.com/doom-2099-20-strangers-in-the-jungle/4000-134497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47675/","id":47675,"name":"Down on the Bayou","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-6-down-on-the-bayou/4000-47675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134498/","id":134498,"name":"Uncreated Night","site_detail_url":"https://comicvine.gamespot.com/doom-2099-19-uncreated-night/4000-134498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201539/","id":201539,"name":"X-Men Ashcan Edition","site_detail_url":"https://comicvine.gamespot.com/x-men-ashcan-1-x-men-ashcan-edition/4000-201539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47674/","id":47674,"name":"Metallic Memories","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-5-metallic-memories/4000-47674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134494/","id":134494,"name":"Communion","site_detail_url":"https://comicvine.gamespot.com/doom-2099-18-communion/4000-134494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47673/","id":47673,"name":"Red Death!","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-4-red-death/4000-47673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47672/","id":47672,"name":"Cast A Giant Shadow","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-3-cast-a-giant-shadow/4000-47672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202265/","id":202265,"name":"Missing Mutant Mystery","site_detail_url":"https://comicvine.gamespot.com/x-men-the-coming-of-triplikill-1-missing-mutant-my/4000-202265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38110/","id":38110,"name":"What If The Avengers Lost Operation: Galactic Storm?","site_detail_url":"https://comicvine.gamespot.com/what-if-55-what-if-the-avengers-lost-operation-gal/4000-38110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138053/","id":138053,"name":"The Savage Game!","site_detail_url":"https://comicvine.gamespot.com/super-soldiers-7-the-savage-game/4000-138053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138052/","id":138052,"name":"Savage Land Invitational","site_detail_url":"https://comicvine.gamespot.com/super-soldiers-6-savage-land-invitational/4000-138052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36678/","id":36678,"name":"Volume 24 The Uncanny X-Men III","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-24-volume-24-the-uncanny-x-men-/4000-36678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37553/","id":37553,"name":"Triassic Park","site_detail_url":"https://comicvine.gamespot.com/wolverine-71-triassic-park/4000-37553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37511/","id":37511,"name":"Termination Day","site_detail_url":"https://comicvine.gamespot.com/captain-america-417-termination-day/4000-37511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37403/","id":37403,"name":"Tooth And Nail","site_detail_url":"https://comicvine.gamespot.com/wolverine-70-tooth-and-nail/4000-37403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37358/","id":37358,"name":"Untitled","site_detail_url":"https://comicvine.gamespot.com/captain-america-416-untitled/4000-37358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37382/","id":37382,"name":"Follow the Leader","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-1-follow-the-leader/4000-37382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37260/","id":37260,"name":"Induction In The Savage Land!","site_detail_url":"https://comicvine.gamespot.com/wolverine-69-induction-in-the-savage-land/4000-37260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37222/","id":37222,"name":"Savage Landings!","site_detail_url":"https://comicvine.gamespot.com/captain-america-415-savage-landings/4000-37222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37086/","id":37086,"name":"Escape From AIM Isle","site_detail_url":"https://comicvine.gamespot.com/captain-america-414-escape-from-aim-isle/4000-37086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165117/","id":165117,"name":"Nature of the Beast! (Part Three)","site_detail_url":"https://comicvine.gamespot.com/codename-genetix-3-nature-of-the-beast-part-three/4000-165117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36872/","id":36872,"name":"What If... Cable Had Destroyed The X-Men?","site_detail_url":"https://comicvine.gamespot.com/what-if-46-what-if-cable-had-destroyed-the-x-men/4000-36872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432253/","id":432253,"name":"Unter Legenden","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-17-unter-legende/4000-432253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386862/","id":386862,"name":"","site_detail_url":"https://comicvine.gamespot.com/pizza-hut-super-savings-book-featuring-x-men-1/4000-386862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431797/","id":431797,"name":"Heller Wahnsinn","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-16-heller-wahnsi/4000-431797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34769/","id":34769,"name":"9 Wives","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-19-9-wives/4000-34769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34652/","id":34652,"name":"Double Cross","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-18-double-cross/4000-34652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34675/","id":34675,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-impossible-man-summer-vacation-spectacular-2/4000-34675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34534/","id":34534,"name":"Fire And Stone","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-17-fire-and-stone/4000-34534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34420/","id":34420,"name":"Fist Of Iron","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-16-fist-of-iron/4000-34420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34304/","id":34304,"name":"Into The Savage Land","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-15-into-the-savage-land/4000-34304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34111/","id":34111,"name":"The Path Not Taken","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-275-the-path-not-taken/4000-34111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34007/","id":34007,"name":"Crossroads","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-274-crossroads/4000-34007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184317/","id":184317,"name":"The Swimsuit Issue","site_detail_url":"https://comicvine.gamespot.com/marvel-illustrated-swimsuit-issue-1-the-swimsuit-i/4000-184317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33334/","id":33334,"name":"Rogue Redux","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-269-rogue-redux/4000-33334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57806/","id":57806,"name":"Book Two: The Animal Unleashed","site_detail_url":"https://comicvine.gamespot.com/wolverine-saga-2-book-two-the-animal-unleashed/4000-57806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122388/","id":122388,"name":"Guns Of The Savage Land","site_detail_url":"https://comicvine.gamespot.com/ka-zar-guns-of-the-savage-land-1-guns-of-the-savag/4000-122388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32430/","id":32430,"name":"Terminus Rising","site_detail_url":"https://comicvine.gamespot.com/quasar-7-terminus-rising/4000-32430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138923/","id":138923,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-jungle-adventure-1-gn/4000-138923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150225/","id":150225,"name":"Marvel: 1989 The Year In Review","site_detail_url":"https://comicvine.gamespot.com/marvel-year-in-review-1-marvel-1989-the-year-in-re/4000-150225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31807/","id":31807,"name":"The Shattered Star","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-250-the-shattered-star/4000-31807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31781/","id":31781,"name":"The Dane Curse","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-249-the-dane-curse/4000-31781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68380/","id":68380,"name":"Prowler to Serpent Society","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-6-pro/4000-68380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170962/","id":170962,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-annual-1989/4000-170962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107609/","id":107609,"name":"Double-X-Cross / Jubilation Day / Serpent in the Garden","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-13-double-x-cross-jubilation-day-serp/4000-107609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31105/","id":31105,"name":"God's Country (Part 7); Panther's Quest (Part 4); Dreamwalk; This Is A Savage Land;","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-16-gods-country-part-7-pant/4000-31105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30197/","id":30197,"name":"Heads You Lose, Tails You Win","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers-annual-3-heads-you-lose-tails-/4000-30197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108152/","id":108152,"name":"Ressurrection","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-12-ressurrection/4000-108152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30184/","id":30184,"name":"Chiaroscuro; Deal With The Devil!","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-40-chiaroscuro-deal-with-the-devil/4000-30184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170961/","id":170961,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-annual-1988/4000-170961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47410/","id":47410,"name":"To Save The Savage Land / Solace","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-22-to-save-the-savage-land-solace/4000-47410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47409/","id":47409,"name":"Visions of Death; First Love;","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-21-visions-of-death-first-love/4000-47409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47408/","id":47408,"name":"Desolation","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-20-desolation/4000-47408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27560/","id":27560,"name":"The Fire Inside!","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-annual-2-the-fire-inside/4000-27560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95175/","id":95175,"name":"BOOK XVII: Man's Inhumanity","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26400/","id":26400,"name":"The Savage Goes West!","site_detail_url":"https://comicvine.gamespot.com/iron-man-202-the-savage-goes-west/4000-26400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281063/","id":281063,"name":"Special","site_detail_url":"https://comicvine.gamespot.com/transformers-collected-comics-2-special/4000-281063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171936/","id":171936,"name":"Repeat Performance!; part 2","site_detail_url":"https://comicvine.gamespot.com/the-transformers-28-repeat-performance-part-2/4000-171936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171935/","id":171935,"name":"Repeat Performance!; part 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-27-repeat-performance-part-1/4000-171935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171934/","id":171934,"name":"Warrior School!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-26-warrior-school/4000-171934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57427/","id":57427,"name":"Repeat Perfromance!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-8-repeat-perfromance/4000-57427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57426/","id":57426,"name":"Warrior School!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-7-warrior-school/4000-57426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25575/","id":25575,"name":"This Power Unleashed!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-256-this-power-unleashed/4000-25575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57423/","id":57423,"name":"The Last Stand","site_detail_url":"https://comicvine.gamespot.com/the-transformers-4-the-last-stand/4000-57423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171915/","id":171915,"name":"The Last Stand; part 2","site_detail_url":"https://comicvine.gamespot.com/the-transformers-8-the-last-stand-part-2/4000-171915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171914/","id":171914,"name":"The Last Stand; part 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-7-the-last-stand-part-1/4000-171914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25393/","id":25393,"name":"But I Don't Wanna Go Back To The Savage Land!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-31-but-i-dont-wanna-go-back-to-t/4000-25393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23997/","id":23997,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-classics-starring-the-x-men-3/4000-23997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111577/","id":111577,"name":"Scavenger Hunt","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-7-scavenger-hunt/4000-111577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23542/","id":23542,"name":"Point Blank!","site_detail_url":"https://comicvine.gamespot.com/hawkeye-2-point-blank/4000-23542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68388/","id":68388,"name":"Q-S: Quasar to She-Hulk","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-9-q-s/4000-68388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24099/","id":24099,"name":"\"On Death and Dying\"","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-24-on-death-and-dying/4000-24099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22449/","id":22449,"name":"Editori-Al; Lost Souls; Mindgame; Ordeal","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-4-editori-al-lost-souls-mindgame-or/4000-22449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112838/","id":112838,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-34/4000-112838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22303/","id":22303,"name":"Editori-Al; Into the Land of Death; Swashbucklers","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-3-editori-al-into-the-land-of-death/4000-22303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22165/","id":22165,"name":"Editori-Al; To Sacrifice My Soul; Annihilation","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-2-editori-al-to-sacrifice-my-soul-a/4000-22165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22013/","id":22013,"name":"Pin Up; Fast Descent Into Hell; Editori-Al; Snow","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-1-pin-up-fast-descent-into-hell-edi/4000-22013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22011/","id":22011,"name":"All Hell Breaks Loose!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-12-all-hell-breaks-loose/4000-22011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21933/","id":21933,"name":"Children of the Damned!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-11-children-of-the-damned/4000-21933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20911/","id":20911,"name":"An Eagle From America!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-6-an-eagle-from-america/4000-20911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326833/","id":326833,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-action-10/4000-326833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21182/","id":21182,"name":"Modok Must Triumph!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-104-modok-must-triumph/4000-21182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21180/","id":21180,"name":"A New Dawn...A New World!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-1-a-new-dawna-new-world/4000-21180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20751/","id":20751,"name":"Elegy","site_detail_url":"https://comicvine.gamespot.com/the-x-men-138-elegy/4000-20751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19060/","id":19060,"name":"To Save the Savage Land","site_detail_url":"https://comicvine.gamespot.com/the-x-men-116-to-save-the-savage-land/4000-19060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18985/","id":18985,"name":"Visions of Death!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-115-visions-of-death/4000-18985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18916/","id":18916,"name":"Desolation","site_detail_url":"https://comicvine.gamespot.com/the-x-men-114-desolation/4000-18916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17786/","id":17786,"name":"Beauty and the Brute","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-83-beauty-and-the-brute/4000-17786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64809/","id":64809,"name":"Beware the Power of... Gog!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-82-beware-the-power-of-gog/4000-64809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64807/","id":64807,"name":"Walk the Savage Land!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-81-walk-the-savage-land/4000-64807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16515/","id":16515,"name":"This City -- Afire!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-17-this-city-afire/4000-16515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16428/","id":16428,"name":"Into The Savage Land!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-16-into-the-savage-land/4000-16428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16421/","id":16421,"name":"The Conquest of Klaw!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-16-the-conquest-of-klaw/4000-16421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15869/","id":15869,"name":"The Skull Of The Lizard-Man!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-13-the-skull-of-the-lizard-man/4000-15869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15787/","id":15787,"name":"Wizard of Forgotten Flesh","site_detail_url":"https://comicvine.gamespot.com/ka-zar-12-wizard-of-forgotten-flesh/4000-15787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69806/","id":69806,"name":"...To Destroy The Realm Eternal!/ The Puppet And The Power!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-53-to-destroy-the-realm-eterna/4000-69806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69805/","id":69805,"name":"The Sovereign And The Savages/ The Legions Of: The Living Lightning","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-52-the-sovereign-and-the-savag/4000-69805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15392/","id":15392,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-tales-11/4000-15392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69804/","id":69804,"name":"Somewhere Stands... Skull Island!/ What Have I Created?","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-51-somewhere-stands-skull-isla/4000-69804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234978/","id":234978,"name":"A Day of Tigers","site_detail_url":"https://comicvine.gamespot.com/savage-tales-annual-1-a-day-of-tigers/4000-234978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14973/","id":14973,"name":"Revenge of the River Gods!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-7-revenge-of-the-river-gods/4000-14973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14601/","id":14601,"name":"The Damnation Plague","site_detail_url":"https://comicvine.gamespot.com/savage-tales-6-the-damnation-plague/4000-14601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14425/","id":14425,"name":"Into the Shadows of Chaos!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-4-into-the-shadows-of-chaos/4000-14425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14435/","id":14435,"name":"The Secret of Skull River","site_detail_url":"https://comicvine.gamespot.com/savage-tales-5-the-secret-of-skull-river/4000-14435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14203/","id":14203,"name":"Dinosaurs On Broadway!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-20-dinosaurs-on-broadway/4000-14203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14135/","id":14135,"name":"The Coming of... Stegron the Dinosaur Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-19-the-coming-of-stegron-the-dinosa/4000-14135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14128/","id":14128,"name":"The Fall of the Red Wizard","site_detail_url":"https://comicvine.gamespot.com/ka-zar-2-the-fall-of-the-red-wizard/4000-14128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13992/","id":13992,"name":"Return to the Savage Land","site_detail_url":"https://comicvine.gamespot.com/ka-zar-1-return-to-the-savage-land/4000-13992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12641/","id":12641,"name":"In The Beginning Was... The World Within!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-105-in-the-beginning-was-the-world-wi/4000-12641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12409/","id":12409,"name":"To Stalk a Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-111-to-stalk-a-spider/4000-12409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11916/","id":11916,"name":"The Beauty and the Brute","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-104-the-beauty-and-the-brut/4000-11916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11838/","id":11838,"name":"Walk the Savage Land","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-103-walk-the-savage-land/4000-11838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11718/","id":11718,"name":"The Battle of New Britian; ...Though Some Call it Magic!","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-8-the-battle-of-new-britian-thou/4000-11718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11598/","id":11598,"name":"...And If I Be Called Traitor!; Deluge!","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-7-and-if-i-be-called-traitor-del/4000-11598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11484/","id":11484,"name":"'Ware The Winds of Death; The Tentacles of the Tyrant","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-6-ware-the-winds-of-death-the-te/4000-11484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11437/","id":11437,"name":"The Frost Giant's Daughter / The Fury of the Femizons / ...Man-Thing! / Black Brother / The Night of the Looter!","site_detail_url":"https://comicvine.gamespot.com/savage-tales-1-the-frost-giants-daughter-the-fury-/4000-11437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11375/","id":11375,"name":"A Land Enslaved; Rampage!","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-5-a-land-enslaved-rampage/4000-11375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11272/","id":11272,"name":"The Invaders; The Sun God!","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-4-the-invaders-the-sun-god/4000-11272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11151/","id":11151,"name":"Doom Must Die!; Back to the Savage Land","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-3-doom-must-die-back-to-the-sava/4000-11151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11160/","id":11160,"name":"Sightless In a Savage Land","site_detail_url":"https://comicvine.gamespot.com/ka-zar-2-sightless-in-a-savage-land/4000-11160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11005/","id":11005,"name":"The Strength Of The Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-102-the-strength-of-the-sub-mariner/4000-11005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10957/","id":10957,"name":"The Mystery of the Midnight Stalker","site_detail_url":"https://comicvine.gamespot.com/ka-zar-1-the-mystery-of-the-midnight-stalker/4000-10957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10948/","id":10948,"name":"Unto you is Born the Doomsman; The Power of Ka-zar","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-1-unto-you-is-born-the-doomsman-/4000-10948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10580/","id":10580,"name":"War in the World Below","site_detail_url":"https://comicvine.gamespot.com/the-x-men-63-war-in-the-world-below/4000-10580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10526/","id":10526,"name":"Strangers in a Savage Land","site_detail_url":"https://comicvine.gamespot.com/the-x-men-62-strangers-in-a-savage-land/4000-10526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10101/","id":10101,"name":"My Father, My Enemy!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-19-my-father-my-enemy/4000-10101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9994/","id":9994,"name":"Shanghaied in Space!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-111-shanghaied-in-space/4000-9994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111632/","id":111632,"name":"Umbu, the Unliving","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-110-umbu-the-unliving/4000-111632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111613/","id":111613,"name":"The Monster and the Man-Beast!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-109-the-monster-and-the-man-be/4000-111613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9823/","id":9823,"name":"...To Destroy The Realm Eternal!; The Puppet And The Power!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-98-to-destroy-the-realm-eternal-/4000-9823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9761/","id":9761,"name":"The Sovereign And The Savages/The Legions Of: The Living Lightning","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-97-the-sovereign-and-the-savages/4000-9761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9693/","id":9693,"name":"Somewhere Stands... Skull Island!; What Have I Created?","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-96-somewhere-stands-skull-island/4000-9693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8427/","id":8427,"name":"If this Be Justice...!","site_detail_url":"https://comicvine.gamespot.com/daredevil-14-if-this-be-justice/4000-8427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8366/","id":8366,"name":"The Secret of Ka-Zar's Origin!","site_detail_url":"https://comicvine.gamespot.com/daredevil-13-the-secret-of-ka-zars-origin/4000-8366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8307/","id":8307,"name":"Sightless, In a Savage Land!","site_detail_url":"https://comicvine.gamespot.com/daredevil-12-sightless-in-a-savage-land/4000-8307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7674/","id":7674,"name":"The Coming Of... Ka-Zar!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-10-the-coming-of-ka-zar/4000-7674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128897/","id":128897,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-22/4000-128897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463830/","id":463830,"name":"Vol. 42 - Avengers - Ausbruch!","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-33-vol-42-ave/4000-463830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482842/","id":482842,"name":"Vol. 57 - Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-45-vol-57-sec/4000-482842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453503/","id":453503,"name":"The Amazing Spider-Man: The Spider Slayer","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-30-the-amazing-spider-man-the-sp/4000-453503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453255/","id":453255,"name":"The Uncanny X-Men: Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-7-the-uncanny-x-men-days-of-futu/4000-453255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453061/","id":453061,"name":"X-Men: Hidden Years: Destroy All Mutants","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-4-x-men-hidden-years-destroy-all/4000-453061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476460/","id":476460,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-5/4000-476460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476458/","id":476458,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-3/4000-476458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476457/","id":476457,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-2/4000-476457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399385/","id":399385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-37/4000-399385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498587/","id":498587,"name":"Dschungelfieber","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-1-dschungelfieber/4000-498587/"}],"movies":[],"name":"Savage Land","site_detail_url":"https://comicvine.gamespot.com/savage-land/4020-21766/","start_year":"1941","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84172/","id":84172,"name":"Savage Wolverine","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine/4050-84172/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/location-details/location-4020-23199.json b/samples/api-data/location-details/location-4020-23199.json new file mode 100644 index 0000000..9fd88ce --- /dev/null +++ b/samples/api-data/location-details/location-4020-23199.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-23199/","count_of_issue_appearances":213,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-10-05 23:38:30","deck":"The Shi'ar Empire is a vast group of species led by the Aerie and its current Emperor: Gladiator. The Shi'ar is one of the most important alien species in the Marvel Universe and is currently the most powerful after the demise of the Skrulls and the Kree.","description":"Trial of Galactus

    \"Galactus\"
    Galactus
    The Shi'ar put Reed Richards on trial for the crimes of genocide. He was guilty of reviving Galactus after he was defeated on Earth. Shortly after his revival, Galactus proceeded to consume the Skrull throneworld, resulting in the death of billions. Uatu the Watcher, acting as his lawyer and with the help of Odin and Galactus himself, convinced the gathered tribunal that Galactus is a necessary force of betterment of the universe, not a villain. This was done by summoning Eternity. The truth as shown by Eternity however, is so grand and overpowering that none of the tribunal's members can remember it fully, although the comprehension stays. 

    Phoenix Saga

    \"Dark
    Dark Phoenix
    D'Ken Neramani, a corrupt Shi'ar ruler, attempted to use the powerful M'Kraan Crystal to take over the universe. His younger sister Lilandra and her new allies, the X-Men, foiled his plans. He was rendered comatose by the crystal, and Lilandra then took over as the Majestrix of the Shi'ar Empire. The X-Men, as well as most of Earth's other superheroes, have had cordial if not friendly relations with the Shi'ar Empire ever since.
    Deathbird

    In the 1980s, Lilandra and D'Ken's unstable exiled elder sibling, Deathbird, made several attempts to overthrow her sister from power. Deathbird even resorted to attacking Lilandra's Earth-based allies in order to achieve her goals. She is also responsible for initially directing the alien parasites known as the Brood towards the Earth and its heroes. Deathbird was eventually deposed with the assistance of the X-Men. In the 1992 crossover Operation: Galactic Storm, the Shi'ar annexed the Kree Empire at the end of the Kree-Shi'ar War and Deathbird was placed into a prominent position as viceroy of Hala, the Kree homeworld. However, Deathbird did not last long in this position and the current status of the Kree territories is unclear. The Shi'ar have had recent contact with the Spartoi, described as an equally advanced distant race, noted for Star-Lord's citizenship.

    Cassandra Nova

    Professor Xavier's evil twin sister, Cassandra Nova, single-handedly destroys a good portion of the Shi'ar Empire. Inhabiting the body of her brother, Nova asserts control of Empress Lilandra and causes a Shi'ar civil war. Jean Grey is instrumental in ending this threat.

    Phoenix Endsong & End of Greys

    Even though Jean Grey did the Shi'ar a big favor by eliminating the threat of Cassandra Nova, the Shi'ar still want her dead. In the Phoenix Endsong series, a group of Shi'ar tried to permanently kill the Phoenix Force and Jean Grey. Jean, however, escaped their suicide bomb attack and returned to the White Hot Room to restore herself. In the recent \"End of Greys\" story arc, the Shi'ar wanted to wipe out the Grey genome and Quentin Quire with the purpose of eliminating the possibility of a new Omega-level mutant becoming a host for the Phoenix Force. The Shi'ar Death Commandos murdered Jean Grey's father, niece, nephew, and other relatives in an alien invasion on Earth, thus inciting the wrath of Jean's daughter Rachel Summers, who has vowed vengeance on the entire Shi'ar Empire. Recent events seem to indicate the Shi'ar Council was responsible for this, and that Lilandra is unaware of what has been done in her name.

    Captain Universe: Universal Heroes

    \"Captain
    Captain Universe

    After learning that The Uni-Power was malfunctioning Empress Lilandra and the Shi'ar Council dispatched Gladiator to Earth under the belief that it had become a threat to all civilized worlds and needed to be contained. Once he arrived on Earth, Gladiator came into conflict with The Fantastic Four and was forced to face Captain Universe (who had merged with The Invisible Woman) in combat, which nearly cost Gladiator his life. The Uni-Power then merged with the badly injured Gladiator and showed him that it did not pose a threat to anyone. After saving Los Angeles from a tsunami, Gladiator extended to The Uni-Power, an invitation to come back with him to The  Shi'ar Throneworld as a guest while their scientists tried to solve The Uni-Power's dilemma.

    Unfortunately while Gladiator and The Uni-Power were en route to the Empire both of them were captured by an energy-consuming reptilian space vampire who called himself Krosakis, who not only stripped Gladiator of all his power but also forced The Uni-Power into merging with him, thus turning Krosakis into Captain Universe. Luckily The Silver Surfer was able to sense The Uni-Power's plight and defeated Krosakis by overloading him with The Power Cosmic. The Surfer then permanently infused a portion of The Power Cosmic into The Uni-Power and repaired it, considering all they had been through over the years Gladiator believed The Surfer when he said The Uni-Power had been cured and allowed it to return to Earth while he took Krosakis back to The Shi'ar Throneworld so he could be placed on trial for his crimes.

    Annihilation


    As the war against Annihilus' invasion forces tore countless neighboring Star Empires asunder Peter Quill a.k.a. Star-Lord contacted The Shi'ar Empire on the behalf of Richard Rider a.k.a. Nova and his United Front hoping that The Shi'ar would help them bring Annihilus down once and for all. However The Shi'ar decided that it would be best, for them anyways, if they kept their position as a neutral party for the time being and would wait to see how the War played out.

    \"Fall
    Fall of the Shi'ar
    Fall of the Shi'ar

    A few years after the events of Phoenix: Endsong and Captain Universe: Universal Heroes; The Shi'ar were brutally assaulted by an X-Men villain called Vulcan. During his tenure as majestor of the empire, D'Ken killed Vulcan's mother Katherine Summers (also mother to long time X-Men Scott and Alex Summers) and made him a slave for most of his adolescent life. Bent on revenge against D'Ken, Vulcan attacks the Empire. Not only that, but within the empire, there is a coup to dethrone Lilandra and return D'Ken to power, with the aid of Deathbird. The X-Men once again team up with their space allies, the Starjammers, to stop both Vulcan and the plot to return rulership of the empire to D'Ken. In the end, Vulcan kills his father, Corsair, and D'Ken, and assumes the throne of the Shi'ar Empire for himself, with Deathbird as his queen; Lilandra and the Starjammers now lead a resistance against Vulcan's rule.

    Emperor Vulcan

    \"Vulcan\"
    Vulcan
    The civil war between Vulcan's forces and those loyal the dethroned Lilandra rages on. Led by Havok and the Starjammers, Lilandra's forces gradually whittle away at Vulcan's forces, which are plagued by defections. The Shi'ar, contrary to Vulcan's expectations, are not happy to have an outsider as their ruler. Vulcan is discouraged by this, but Deathbird convinces him that they will come to accept him. Warned in advance of a rebel raid on Feather's Edge, Vulcan and his fleet ambush the Starjammers. However, in the middle of the battle, his ship, the Hammer, is destroyed by the Scy'ar Tal (translates as \"Death to the Shi'ar\"). Vulcan and Gladiator (still the praetor of his Imperial Guard) attack the leader of the Scy'ar Tal and are easily defeated, whereupon they retreat deeper into Shi'ar space. Marvel Girl makes contact with the Eldest Scy'ar Tal and discovers their true origin. The Scy'ar Tal were originally called the M'Kraan. Early in their history, the Shi'ar attacked them, killed a great number of their people, making the rest flee for their lives. Eventually, the Shi'ar settled on their planet, took the M'Kraan Crystal as their own, and passed down the legend of the M'Kraan Crystal as a sacred gift from their deities, Sharra & K'ythri. The M'Kraan then changed their name to Scy'ar Tal and devoted their culture and society to the destruction of the Shi'ar Empire. With their first attack, they destroyed Feather's Edge by transporting a star to obliterate it. After which, Vulcan makes contact with the Starjammers to call a temporary ceasefire. Under the ceasefire, the Shi'ar and the Starjammers decide to take out the Finality, thus crippling the Scy'ar's biggest threat. Once Havok and Vulcan are in position to destroy Finality, the Eldest Scy'ar trys to stop them. Once Vulcan figures out how the Eldest is powered, he severs the connection Eldest has with his brothers, making him powerless. Once the connection is severed, the Scy'ar become unorganized, and the tide of the battle shifts to the Shi`ar. The Shi'ar then proceed to attack both the Scy'ar and the Starjammers. Meanwhile, Vulcan blasts Havok into a sun. Vulcan decides to use Finality to destroy the Scy'ar by using the weapon to place a star in the middle of their fleet. Alex returns and, having absorbed enough power to burn him, decides to end things with Vulcan. While they battle, Rachael and Korvus try, but fail to stop the beacon that will initiate the attack by the Shi'ar. The Shi'ar Imperial Guard end Alex's battle with Vulcan by appearing with the Starjammers in captivity, threatening to kill them. Before surrendering, Alex destroys Finality. With Alex and the Starjammers in custody Vulcan declares that he will return the Shi'ar Empire to its former glory.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-16100/","id":16100,"name":"My Brother...My Enemy!","issue_number":"97"},"id":23199,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/1434784-chandilar.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/1434784-chandilar.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/1434784-chandilar.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/1434784-chandilar.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/1434784-chandilar.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/1434784-chandilar.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/1434784-chandilar.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/1434784-chandilar.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/1434784-chandilar.jpg","image_tags":"All Images,The Empire"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-935761/","id":935761,"name":"Extinction Agenda, Part 4","site_detail_url":"https://comicvine.gamespot.com/marauders-4-extinction-agenda-part-4/4000-935761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929645/","id":929645,"name":"Extinction Agenda, Part 3","site_detail_url":"https://comicvine.gamespot.com/marauders-3-extinction-agenda-part-3/4000-929645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907438/","id":907438,"name":"Every World On Fire","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-40-every-world-on-fire/4000-907438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799762/","id":799762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737761/","id":737761,"name":"Spoilers","site_detail_url":"https://comicvine.gamespot.com/new-mutants-7-spoilers/4000-737761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735535/","id":735535,"name":"Into the Vault","site_detail_url":"https://comicvine.gamespot.com/x-men-5-into-the-vault/4000-735535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732887/","id":732887,"name":"Endangered Birds","site_detail_url":"https://comicvine.gamespot.com/new-mutants-5-endangered-birds/4000-732887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728969/","id":728969,"name":"Starbrand Reborn Part One: Riot In the Prison Galaxy","site_detail_url":"https://comicvine.gamespot.com/avengers-27-starbrand-reborn-part-one-riot-in-the-/4000-728969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726210/","id":726210,"name":"The Sextant","site_detail_url":"https://comicvine.gamespot.com/new-mutants-1-the-sextant/4000-726210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728977/","id":728977,"name":"Space Jail","site_detail_url":"https://comicvine.gamespot.com/new-mutants-2-space-jail/4000-728977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707846/","id":707846,"name":"Make Mine Avengers; Vs. Free Comic Book Day","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2019-avengerssecret-avengers-1/4000-707846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690617/","id":690617,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1-vol-2/4000-690617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677823/","id":677823,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1/4000-677823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677970/","id":677970,"name":"Love & Marriage Part One of Five","site_detail_url":"https://comicvine.gamespot.com/mr-and-mrs-x-1-love-and-marriage-part-one-of-five/4000-677970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675141/","id":675141,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-countdown-darkhawk-3/4000-675141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595689/","id":595689,"name":"Bar Fight!","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy-3-bar-fight/4000-595689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593265/","id":593265,"name":"The Asgard/Shi'ar War, Part Four: The Omega Kiss","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-18-the-asgardshiar-war-part-four-the-o/4000-593265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592616/","id":592616,"name":"Meet the New Boss","site_detail_url":"https://comicvine.gamespot.com/usavengers-5-meet-the-new-boss/4000-592616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587411/","id":587411,"name":"The Asgard/Shi'ar War, Part Three: When the Stars Threw Down Their Spears","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-17-the-asgardshiar-war-part-three-when/4000-587411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581561/","id":581561,"name":"The Asgard/Shi'ar War, Part Two: The Challenge of the Gods","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-16-the-asgardshiar-war-part-two-the-ch/4000-581561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578477/","id":578477,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-3/4000-578477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575875/","id":575875,"name":"The Asgard/Shi'ar War, Part One: A Day Which Will Live In Immortal Infamy","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-15-the-asgardshiar-war-part-one-a-day-/4000-575875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538665/","id":538665,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-1/4000-538665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527141/","id":527141,"name":"The Children's Crusade Part 1","site_detail_url":"https://comicvine.gamespot.com/drax-6-the-childrens-crusade-part-1/4000-527141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487201/","id":487201,"name":"One Was Life, One Was Death","site_detail_url":"https://comicvine.gamespot.com/avengers-44-one-was-life-one-was-death/4000-487201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498545/","id":498545,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-4/4000-498545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470834/","id":470834,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-by-abnett-and-lanning-comp/4000-470834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454100/","id":454100,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-15/4000-454100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448967/","id":448967,"name":"The Trial of Jean Grey Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-13-the-trial-of-jean-grey-/4000-448967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447504/","id":447504,"name":"The Trial of Jean Grey Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-24-the-trial-of-jean-grey-part-5-of-/4000-447504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446482/","id":446482,"name":"The Trial of Jean Grey Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-12-the-trial-of-jean-grey-/4000-446482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441403/","id":441403,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-marvel-now-point-one-1/4000-441403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440816/","id":440816,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-joe-kelly-omnibus-1-hc/4000-440816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410921/","id":410921,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-cuts-1-tpb/4000-410921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384953/","id":384953,"name":"Superguardian","site_detail_url":"https://comicvine.gamespot.com/avengers-5-superguardian/4000-384953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381075/","id":381075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-the-end-1-tpb/4000-381075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323368/","id":323368,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-10-volume-10/4000-323368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321186/","id":321186,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-five-miles-south-of-the-universe-1-hc/4000-321186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317111/","id":317111,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-omnibus-1-hc/4000-317111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311494/","id":311494,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-2-volume-two/4000-311494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294354/","id":294354,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-1-volume-one/4000-294354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285350/","id":285350,"name":"Lost Legions, Conclusion","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-253-lost-legions-conclusion/4000-285350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288498/","id":288498,"name":"Five Miles South Of The Universe, Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-254-five-miles-south-of-the-universe-/4000-288498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386942/","id":386942,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-les-grandes-sagas-x-men-1-x-men/4000-386942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270245/","id":270245,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-avengers-1-tpb/4000-270245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250619/","id":250619,"name":"Even the Dead Can Die","site_detail_url":"https://comicvine.gamespot.com/chaos-war-dead-avengers-2-even-the-dead-can-die/4000-250619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266651/","id":266651,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-7-volume-7/4000-266651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261709/","id":261709,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-4-volume-four/4000-261709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255324/","id":255324,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-17/4000-255324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323805/","id":323805,"name":"War of Kings 6","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-66-war-of-kings-6/4000-323805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246655/","id":246655,"name":"Will Quicksilver Learn the Truth About the Scarlet Witch?","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-16-will-quicksilver-lea/4000-246655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243960/","id":243960,"name":"War of Kings!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-15-war-of-kings/4000-243960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323799/","id":323799,"name":"War of Kings 5","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-65-war-of-kings-5/4000-323799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241089/","id":241089,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-1-hctpb/4000-241089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226185/","id":226185,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-force-handbook-1/4000-226185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248783/","id":248783,"name":"THE MIGHTY AVENGERS and THE INHUMANS","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-14-the-mighty-avengers-/4000-248783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235152/","id":235152,"name":"Book 5","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-5-book-5/4000-235152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322077/","id":322077,"name":"War of Kings 3","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-63-war-of-kings-3/4000-322077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232959/","id":232959,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-warriors-1-tpb/4000-232959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319008/","id":319008,"name":"War of Kings 2","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-62-war-of-kings-2/4000-319008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189583/","id":189583,"name":"What If ORD Ressurected Jean Grey Instead Of Colossus? What If Danger Became Ultron's Bride? Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-astonishing-x-men-1-what-if-ord-ressurecte/4000-189583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212492/","id":212492,"name":"Guardians of the Galaxy: War of Kings, Book Two","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-war-of-kings-book-two-1-gu/4000-212492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318390/","id":318390,"name":"War of Kings 1","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-60-war-of-kings-1/4000-318390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170653/","id":170653,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-who-will-rule-1-one-shot/4000-170653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166254/","id":166254,"name":"Growing Pains - Rite of Passage","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-warriors-2-growing-pains-rite-of-pass/4000-166254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166242/","id":166242,"name":"War of Kings","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-6-war-of-kings/4000-166242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162546/","id":162546,"name":"In Rage and Blood and Fire","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-5-in-rage-and-blood-and-fire/4000-162546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159273/","id":159273,"name":"King Takes Queen","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-4-king-takes-queen/4000-159273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156632/","id":156632,"name":"The Head That Wears The Crown","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-3-the-head-that-wears-the-crown/4000-156632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154513/","id":154513,"name":"Every Last One of Them","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-2-every-last-one-of-them/4000-154513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155775/","id":155775,"name":"Peacemakers","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-13-peacemakers/4000-155775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154036/","id":154036,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-kingbreaker-4-part-4/4000-154036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153078/","id":153078,"name":"Asunder","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-1-asunder/4000-153078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215504/","id":215504,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/road-to-war-of-kings-1-tpb/4000-215504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225086/","id":225086,"name":"Duty, Part Two","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-warriors-gladiator-2-duty-part-two/4000-225086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225085/","id":225085,"name":"Duty, Part One","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-warriors-gladiator-1-duty-part-one/4000-225085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152246/","id":152246,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-kingbreaker-3-part-3/4000-152246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150544/","id":150544,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-kingbreaker-2-part-2/4000-150544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149834/","id":149834,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-war-of-kings-1-one-shot/4000-149834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149788/","id":149788,"name":null,"site_detail_url":"https://comicvine.gamespot.com/war-of-kings-saga-1/4000-149788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146966/","id":146966,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-kingbreaker-1-part-1/4000-146966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137832/","id":137832,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-saga-1/4000-137832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130517/","id":130517,"name":"Light's Out; Planting Seeds; The Hole; Idée Fixe; The Sun Also Sets\"","site_detail_url":"https://comicvine.gamespot.com/x-men-divided-we-stand-2-lights-out-planting-seeds/4000-130517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186305/","id":186305,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-ultimate-collection-1-book-1/4000-186305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176373/","id":176373,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-emperor-vulcan-1-tpb/4000-176373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122474/","id":122474,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-emperor-vulcan-5/4000-122474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120631/","id":120631,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-emperor-vulcan-4/4000-120631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176385/","id":176385,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-rise-and-fall-of-the-shiar-empire-1-/4000-176385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118122/","id":118122,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-emperor-vulcan-3/4000-118122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115527/","id":115527,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-emperor-vulcan-2/4000-115527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411054/","id":411054,"name":"Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/x-mannen-300-deadly-genesis/4000-411054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109610/","id":109610,"name":"The Rise and Fall of the Shi'Ar Empire, Chapter Twelve: Endings and Beginnings","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-486-the-rise-and-fall-of-the-shi/4000-109610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108365/","id":108365,"name":"The Rise and Fall of the Shi'Ar Empire, Chapter Eleven: The End of All That Is","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-485-the-rise-and-fall-of-the-shi/4000-108365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106795/","id":106795,"name":"The Rise and Fall of the Shi'Ar Empire: Chapter Ten: In Exile","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-484-the-rise-and-fall-of-the-shi/4000-106795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240203/","id":240203,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/exiles-the-new-exiles-1-volume-14/4000-240203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106366/","id":106366,"name":"The Rise and Fall of the Shi'Ar Empire Chapter Nine: Vulcan's Descent","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-483-the-rise-and-fall-of-the-shi/4000-106366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106278/","id":106278,"name":"The Rise and Fall of the Shi'ar Empire Chapter Eight: Imperial Rescue","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-482-the-rise-and-fall-of-the-shi/4000-106278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107943/","id":107943,"name":"The Rise and Fall of the Shi'Ar Empire Chapter Seven: Crossing the Rubicon","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-481-the-rise-and-fall-of-the-shi/4000-107943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176289/","id":176289,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-1-tpbhc/4000-176289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411047/","id":411047,"name":"Het Einde Van Alles","site_detail_url":"https://comicvine.gamespot.com/x-mannen-306-het-einde-van-alles/4000-411047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411048/","id":411048,"name":"Heulen Met De Vijand","site_detail_url":"https://comicvine.gamespot.com/x-mannen-305-heulen-met-de-vijand/4000-411048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411049/","id":411049,"name":"Twee Geesten, Eén Gedachte","site_detail_url":"https://comicvine.gamespot.com/x-mannen-304-twee-geesten-een-gedachte/4000-411049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411051/","id":411051,"name":"Het Zwaard Snijdt Aan Twee Kanten","site_detail_url":"https://comicvine.gamespot.com/x-mannen-303-het-zwaard-snijdt-aan-twee-kanten/4000-411051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411052/","id":411052,"name":"De Wraak Van Vulcan","site_detail_url":"https://comicvine.gamespot.com/x-mannen-302-de-wraak-van-vulcan/4000-411052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109939/","id":109939,"name":"The Rise and Fall of the Shi'Ar Empire Chapter Six: Vulcan's Progress (Redux)","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-480-the-rise-and-fall-of-the-shi/4000-109939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106384/","id":106384,"name":"Superguardians (part 2 of 2)","site_detail_url":"https://comicvine.gamespot.com/exiles-88-superguardians-part-2-of-2/4000-106384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106383/","id":106383,"name":"Superguardians (part 1 of 2)","site_detail_url":"https://comicvine.gamespot.com/exiles-87-superguardians-part-1-of-2/4000-106383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107942/","id":107942,"name":"The Rise and Fall of the Shi'Ar Empire Chapter Five: Double-Edged","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-479-the-rise-and-fall-of-the-shi/4000-107942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200194/","id":200194,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-galactic-storm-2-volume-2/4000-200194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107941/","id":107941,"name":"The Rise and Fall of the Shi'Ar Empire Chapter Four: Castaways","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-478-the-rise-and-fall-of-the-shi/4000-107941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107940/","id":107940,"name":"The Rise and Fall of the Shi’ar Empire: Chapter Three - Vulcan’s Progress","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-477-the-rise-and-fall-of-the-shi/4000-107940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138254/","id":138254,"name":"X-Men: The Characters and Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1-x-men-th/4000-138254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106197/","id":106197,"name":"Part 6","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-6-part-6/4000-106197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106194/","id":106194,"name":"Wand'ring Star Part 3: Glory Days!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-471-wandring-star-part-3-glory-d/4000-106194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167686/","id":167686,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-1-volume-1/4000-167686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118031/","id":118031,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-planet-standing-1/4000-118031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106193/","id":106193,"name":"Wand'ring Star Part 2: Gal on the Run!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-470-wandring-star-part-2-gal-on-/4000-106193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105971/","id":105971,"name":"Part 4; Kid Vulcan","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-4-part-4-kid-vulcan/4000-105971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185464/","id":185464,"name":"New X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-omnibus-1-new-x-men-omnibus/4000-185464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109937/","id":109937,"name":"Double Threat","site_detail_url":"https://comicvine.gamespot.com/captain-universe-x-23-1-double-threat/4000-109937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175292/","id":175292,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-2-book-2/4000-175292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278687/","id":278687,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-chris-claremont-1-hc/4000-278687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138963/","id":138963,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-force-cable-the-legend-returns-1-tpb/4000-138963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233671/","id":233671,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-5-volume-5/4000-233671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233668/","id":233668,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-4-volume-4/4000-233668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233667/","id":233667,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-3-volume-3/4000-233667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230117/","id":230117,"name":"Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/x-men-days-of-future-past-1-days-of-future-past/4000-230117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233669/","id":233669,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-2-volume-2/4000-233669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190361/","id":190361,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-1-volume-1/4000-190361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109997/","id":109997,"name":"Predestination","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-1-predestination/4000-109997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107656/","id":107656,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-2-x-men/4000-107656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106301/","id":106301,"name":"Dust","site_detail_url":"https://comicvine.gamespot.com/new-x-men-133-dust/4000-106301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277160/","id":277160,"name":"X-Men Visionaries: Jim Lee","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-jim-lee-1-x-men-visionaries-jim-/4000-277160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106161/","id":106161,"name":"Some Angels Falling","site_detail_url":"https://comicvine.gamespot.com/new-x-men-131-some-angels-falling/4000-106161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186484/","id":186484,"name":"Imperial","site_detail_url":"https://comicvine.gamespot.com/new-x-men-imperial-1-imperial/4000-186484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78330/","id":78330,"name":"All Hell","site_detail_url":"https://comicvine.gamespot.com/new-x-men-126-all-hell/4000-78330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78329/","id":78329,"name":"Losers","site_detail_url":"https://comicvine.gamespot.com/new-x-men-125-losers/4000-78329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78328/","id":78328,"name":"Superdestroyer","site_detail_url":"https://comicvine.gamespot.com/new-x-men-124-superdestroyer/4000-78328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78327/","id":78327,"name":"Testament","site_detail_url":"https://comicvine.gamespot.com/new-x-men-123-testament/4000-78327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78326/","id":78326,"name":"Imperial","site_detail_url":"https://comicvine.gamespot.com/new-x-men-122-imperial/4000-78326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133640/","id":133640,"name":"#3","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-8-3/4000-133640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80552/","id":80552,"name":"Truth Or Dare","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-14-truth-or-dare/4000-80552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65163/","id":65163,"name":"Cry Justice, Cry Vengeance","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-387-cry-justice-cry-vengeance/4000-65163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277161/","id":277161,"name":"X-Men Visionaries: Joe Madureira","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-joe-madureira-1-x-men-visionarie/4000-277161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304648/","id":304648,"name":"Siguiendo adelante","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-32-siguiendo-adelante/4000-304648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304145/","id":304145,"name":"¡Donde ningún X-Man ha ido antes!","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-30-donde-ningun-x-man-ha-ido-antes/4000-304145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304146/","id":304146,"name":"Prisioneros de guerra","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-31-prisioneros-de-guerra/4000-304146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66889/","id":66889,"name":"The Death of Galactus","site_detail_url":"https://comicvine.gamespot.com/galactus-the-devourer-6-the-death-of-galactus/4000-66889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66888/","id":66888,"name":"Herald","site_detail_url":"https://comicvine.gamespot.com/galactus-the-devourer-5-herald/4000-66888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303989/","id":303989,"name":"En el vacío","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-29-en-el-vacio/4000-303989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45608/","id":45608,"name":"Dead Reckoning Part 2: 2nd Stringers & Dead Ringers","site_detail_url":"https://comicvine.gamespot.com/deadpool-24-dead-reckoning-part-2-2nd-stringers-de/4000-45608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259705/","id":259705,"name":"Fate Of The Phoenix","site_detail_url":"https://comicvine.gamespot.com/marvel-collectible-classics-x-men-3-fate-of-the-ph/4000-259705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231845/","id":231845,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-crossroads-1-tpb/4000-231845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43801/","id":43801,"name":"Moving On","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-345-moving-on/4000-43801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140990/","id":140990,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-1-volume-1/4000-140990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65134/","id":65134,"name":"Casualties of War","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-344-casualties-of-war/4000-65134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43604/","id":43604,"name":"Where No X-Man Has Gone Before!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-343-where-no-x-man-has-gone-befo/4000-43604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43506/","id":43506,"name":"Into the Void","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-342-into-the-void/4000-43506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43092/","id":43092,"name":"Fugitive From Space; Junction","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-13-fugitive-from-space-junction/4000-43092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315383/","id":315383,"name":"Tempesta Nella Galassia 4","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-4-tempesta-nella-galassia-4/4000-315383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315382/","id":315382,"name":"Tempesta Nella Galassia 3","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-3-tempesta-nella-galassia-3/4000-315382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40852/","id":40852,"name":"To The Limits Of Infinity","site_detail_url":"https://comicvine.gamespot.com/gambit-the-x-ternals-3-to-the-limits-of-infinity/4000-40852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315381/","id":315381,"name":"Tempesta Nella Galassia 2","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-2-tempesta-nella-galassia-2/4000-315381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40728/","id":40728,"name":"Where No External Has Gone Before!","site_detail_url":"https://comicvine.gamespot.com/gambit-the-x-ternals-2-where-no-external-has-gone-/4000-40728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40358/","id":40358,"name":"Legion Quest Part 1: The Son Rises In The East","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-320-legion-quest-part-1-the-son-/4000-40358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39236/","id":39236,"name":"Hard Promises","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-5-hard-promises/4000-39236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201539/","id":201539,"name":"X-Men Ashcan Edition","site_detail_url":"https://comicvine.gamespot.com/x-men-ashcan-1-x-men-ashcan-edition/4000-201539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432256/","id":432256,"name":"Es Kam aus Weltraumtiefen","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-20-es-kam-aus-we/4000-432256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105460/","id":105460,"name":"The Starlost, Part three: Power Full","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-42-the-starlost-part-three-power-/4000-105460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105457/","id":105457,"name":"Starlost, Part two: Power Plays","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-41-starlost-part-two-power-plays/4000-105457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66359/","id":66359,"name":"Crime & Punishment","site_detail_url":"https://comicvine.gamespot.com/excalibur-70-crime-punishment/4000-66359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66358/","id":66358,"name":"A Question of Conscience","site_detail_url":"https://comicvine.gamespot.com/excalibur-69-a-question-of-conscience/4000-66358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66357/","id":66357,"name":"Facades","site_detail_url":"https://comicvine.gamespot.com/excalibur-68-facades/4000-66357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37658/","id":37658,"name":"The Damned","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-3-the-damned/4000-37658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37357/","id":37357,"name":"A Gathering of Hate","site_detail_url":"https://comicvine.gamespot.com/the-avengers-363-a-gathering-of-hate/4000-37357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36872/","id":36872,"name":"What If... Cable Had Destroyed The X-Men?","site_detail_url":"https://comicvine.gamespot.com/what-if-46-what-if-cable-had-destroyed-the-x-men/4000-36872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114274/","id":114274,"name":"Shi'ar Hatred","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-82-shiar-hatred/4000-114274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35582/","id":35582,"name":"Now Strikes the Starforce","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-446-now-strikes-the-starforce/4000-35582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136836/","id":136836,"name":"Death Adrift","site_detail_url":"https://comicvine.gamespot.com/wonder-man-8-death-adrift/4000-136836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35479/","id":35479,"name":"The War And The Warrior","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-445-the-war-and-the-warrior/4000-35479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35258/","id":35258,"name":"Major Victory","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-20-major-victory/4000-35258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34998/","id":34998,"name":"The Gentleman's Name Is Talon","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-19-the-gentlemans-name-is-/4000-34998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34214/","id":34214,"name":"Double Death","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-276-double-death/4000-34214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34111/","id":34111,"name":"The Path Not Taken","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-275-the-path-not-taken/4000-34111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34009/","id":34009,"name":"What If the All-New All-Different X-Men Had Never Existed?","site_detail_url":"https://comicvine.gamespot.com/what-if-23-what-if-the-all-new-all-different-x-men/4000-34009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34007/","id":34007,"name":"Crossroads","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-274-crossroads/4000-34007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33445/","id":33445,"name":"What if the Vision had Conquered the World?","site_detail_url":"https://comicvine.gamespot.com/what-if-19-what-if-the-vision-had-conquered-the-wo/4000-33445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33334/","id":33334,"name":"Rogue Redux","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-269-rogue-redux/4000-33334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32221/","id":32221,"name":"Volume 12 The Uncanny X-Men II","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-12-volume-12-the-uncanny-x-men-/4000-32221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33101/","id":33101,"name":"What if Wolverine Battled Conan the Barbarian","site_detail_url":"https://comicvine.gamespot.com/what-if-16-what-if-wolverine-battled-conan-the-bar/4000-33101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32984/","id":32984,"name":"What if the Fantastic Four had Lost the Trial of Galactus","site_detail_url":"https://comicvine.gamespot.com/what-if-15-what-if-the-fantastic-four-had-lost-the/4000-32984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47416/","id":47416,"name":"Cry For The Children","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-28-cry-for-the-children/4000-47416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47402/","id":47402,"name":"Where No X-Man Has Gone Before!; What Stuff Our Dreams Are Made Of... ;","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-14-where-no-x-man-has-gone-before-wh/4000-47402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47393/","id":47393,"name":"My Brother, My Enemy!","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-5-my-brother-my-enemy/4000-47393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164213/","id":164213,"name":"The Fate of the Phoenix","site_detail_url":"https://comicvine.gamespot.com/phoenix-the-untold-story-1-the-fate-of-the-phoenix/4000-164213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22100/","id":22100,"name":"Enter The Starjammers!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-156-enter-the-starjammers/4000-22100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20751/","id":20751,"name":"Elegy","site_detail_url":"https://comicvine.gamespot.com/the-x-men-138-elegy/4000-20751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20681/","id":20681,"name":"The Fate of the Phoenix!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-137-the-fate-of-the-phoenix/4000-20681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20613/","id":20613,"name":"Child of Light and Darkness!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-136-child-of-light-and-darkness/4000-20613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20546/","id":20546,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/the-x-men-135-dark-phoenix/4000-20546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19794/","id":19794,"name":"There's Something AWFUL on Muir Island!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-125-theres-something-awful-on-muir-islan/4000-19794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19592/","id":19592,"name":"Cry for the Children","site_detail_url":"https://comicvine.gamespot.com/the-x-men-122-cry-for-the-children/4000-19592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19317/","id":19317,"name":"The Submergence of Japan!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-118-the-submergence-of-japan/4000-19317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17894/","id":17894,"name":"Where No X-Man Has Gone Before","site_detail_url":"https://comicvine.gamespot.com/the-x-men-107-where-no-x-man-has-gone-before/4000-17894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16100/","id":16100,"name":"My Brother...My Enemy!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-97-my-brothermy-enemy/4000-16100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399081/","id":399081,"name":"Achtervolging","site_detail_url":"https://comicvine.gamespot.com/x-mannen-21-achtervolging/4000-399081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398284/","id":398284,"name":"Het Lot Van Phoenix!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-7-het-lot-van-phoenix/4000-398284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398276/","id":398276,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-mannen-6-dark-phoenix/4000-398276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398271/","id":398271,"name":"Ween Voor De Kinderen.","site_detail_url":"https://comicvine.gamespot.com/x-mannen-4-ween-voor-de-kinderen/4000-398271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398243/","id":398243,"name":"Het Geheim Van Mutant X!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-2-het-geheim-van-mutant-x/4000-398243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453255/","id":453255,"name":"The Uncanny X-Men: Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-7-the-uncanny-x-men-days-of-futu/4000-453255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453152/","id":453152,"name":"The Uncanny X-Men: Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-6-the-uncanny-x-men-dark-phoenix/4000-453152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453111/","id":453111,"name":"The Uncanny X-Men: Night Screams","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-10-the-uncanny-x-men-night-screa/4000-453111/"}],"movies":[],"name":"Shi'ar Empire","site_detail_url":"https://comicvine.gamespot.com/shiar-empire/4020-23199/","start_year":"1976","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61802/","id":61802,"name":"Marvel Pocketbook","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook/4050-61802/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/location-details/location-4020-41019.json b/samples/api-data/location-details/location-4020-41019.json new file mode 100644 index 0000000..9fe5dd8 --- /dev/null +++ b/samples/api-data/location-details/location-4020-41019.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41019/","count_of_issue_appearances":4,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-06-05 10:23:01","deck":"An American concentration camp in the 1950s where horrible genetic experiments were performed.","description":"

    The 1950s were a difficult time for the United States. Post-war internationalism coupled with a fear of Communism's spread forced the American government to go to extreme measures to protect itself. One of these measures was Science City Zero.

    Located somewhere in the American Southwest, Science City Zero was a top-secret research installation. Human subjects were brought in - usually political dissidents, reactionaries, vagrants, drinkers and, well, anyone who was generally disapproved of - and used to test the limits of biotechnology and the human body.

    Subjects were rendered invisible, grown to giant sizes, had their brains replaced with energy fields, and resurrected from the dead, for starters. The grounds were patrolled by atomic dogs and giant ants, and getting out was nearly impossible.

    The lead scientist in Science City Zero was Randall Dowling, one of the greatest scientist of the time, who had an obsession with metahumans. He was not one himself, but aspired to it, a personality flaw that would eventually make him one of the most powerful people on the planet. His work was backed not only by the U.S. Government, but also by private concerns, the Hark Corporation being chief among them.

    By the end of the decade, unable to sustain such atrocity, Science City Zero was shut down and quickly evacuated. Much of the equipment and research were left behind, but undiscovered until the site was investigated by Planetary on a tip from a young woman named Allison, who had been a subject there.

    Some subjects left Science City Zero alive, but changed. Some developed metahuman abilities, and passed those on to their children. One such child was Ambrose Chase of Planetary, who could bend the laws of physics in his vicinity. Other descendants of Science City Zero were recruited by Jim Wilder to serve as the crew of a long-buried Bleed-ship.

    Though the facility is long abandoned, its legacy is far from finished.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-54535/","id":54535,"name":"The Day the Earth Turned Slower","issue_number":"8"},"id":41019,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/83471-80250-science-city-zero.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/83471-80250-science-city-zero.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/83471-80250-science-city-zero.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/83471-80250-science-city-zero.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/83471-80250-science-city-zero.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/83471-80250-science-city-zero.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/83471-80250-science-city-zero.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/83471-80250-science-city-zero.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/83471-80250-science-city-zero.jpg","image_tags":"All Images,Science City Zero Gallery"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670734/","id":670734,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-2-volume-2/4000-670734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655492/","id":655492,"name":"Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-11-chapter-eleven/4000-655492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443005/","id":443005,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/planetary-omnibus-1-hc/4000-443005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-54535/","id":54535,"name":"The Day the Earth Turned Slower","site_detail_url":"https://comicvine.gamespot.com/planetary-8-the-day-the-earth-turned-slower/4000-54535/"}],"movies":[],"name":"Science City Zero","site_detail_url":"https://comicvine.gamespot.com/science-city-zero/4020-41019/","start_year":"2000","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7506/","id":7506,"name":"Planetary","site_detail_url":"https://comicvine.gamespot.com/planetary/4050-7506/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/location-details/location-4020-41103.json b/samples/api-data/location-details/location-4020-41103.json new file mode 100644 index 0000000..61f6fba --- /dev/null +++ b/samples/api-data/location-details/location-4020-41103.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41103/","count_of_issue_appearances":271,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-08-17 11:14:29","deck":"Titan is the largest moon of the planet Saturn and the only natural satellite known to have a dense atmosphere. In the Marvel Universe, it is home to the race of Titans (an offshoot of the Eternals), including the mutant Thanos. In the 30th Century DC Universe, Titan is populated by a race of telepaths and is the homeworld of Saturn Girl, a founding member of the Legion of Super-Heroes.","description":"

    History

    Marvel Universe

    Originally, the Titans (or Titanians) had no connection to the Eternals; the two groups were independently created based on Greek mythology. When the Eternals were made part of the mainstream Marvel canon, the Titans were retconned as a branch of the Eternal race.

    At the dawn of the Eternal race, they were divided into two societies, one which remained on Earth, and one which fled into space. When the Earth Eternals conducted an experiment in cosmic energy which unleashed the full potential of their godlike powers, the Titanians were too far away to receive the full benefit, and therefore developed less degrees of power. This experiment turned the leader Kronos into an immaterial being; his sons, Zuras and A'Lars, both wished to become the next leader, but when Zuras was voted to lead, A'Lars left for Titan to avoid another conflict. He eventually became the leader of the Titan colony, and took the name Mentor.

    Titan has been altered by the advanced technology and powers of its inhabitants; under the surface, an entire balanced artificial ecology supports a colony of several thousand Titans with varying degrees of superhuman powers and longevity. The system is maintained by ISAAC, an artificial intelligence with vast power and knowledge. The core of Titan has been replaced with a massive fusion power generator, which supplies artificial sunlight to an array of lush gardens seeded with plant life from Earth.

    DC Universe

    In the late 20th century, Titan was colonized by humans from Earth who were willing participants in experimental genetic adaptation. Over the next thousand years, the Titanians evolved into a race of highly accomplished telepaths. One of the most powerful and famous Titanians is Saturn Girl (Imra Ardeen), who became a founding member of the Legion of Super-Heroes. Other well-known Titanians are Saturn Queen and Esper Lass (both members of the Legion of Super-Villains) and Mentalla (who tried but failed to join the Legion of Super-Heroes and later joined the Fatal Five to avenge her rejection).

    Other Universes

    • In the 2000 AD universe of Judge Dredd, Titan is used as a penal colony for holding the solar system's most dangerous criminals. It was erroneously placed in orbit around Jupiter rather than Saturn, but this was later explained as being the result of a scientific experiment in teleportation.
    • Titan was the setting of one issue of Mystery in Space, where it was known as the Scarecrow World.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-115181/","id":115181,"name":"Superman Takes the Consequences","issue_number":"127"},"id":41103,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5732095-titan_in_true_color.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5732095-titan_in_true_color.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5732095-titan_in_true_color.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5732095-titan_in_true_color.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5732095-titan_in_true_color.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5732095-titan_in_true_color.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5732095-titan_in_true_color.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5732095-titan_in_true_color.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/5732095-titan_in_true_color.jpg","image_tags":"All Images"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884847/","id":884847,"name":"Sins of the Sons","site_detail_url":"https://comicvine.gamespot.com/eternals-thanos-rises-1-sins-of-the-sons/4000-884847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740771/","id":740771,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-empyre-quoi-1/4000-740771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721157/","id":721157,"name":"Time Has Come Today","site_detail_url":"https://comicvine.gamespot.com/old-man-quill-10-time-has-come-today/4000-721157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721176/","id":721176,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/thanos-the-infinity-ending-1-ogn/4000-721176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714307/","id":714307,"name":"Prog 2141","site_detail_url":"https://comicvine.gamespot.com/2000-ad-2141-prog-2141/4000-714307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713942/","id":713942,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/thanos-by-donny-cates-1-hc/4000-713942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705478/","id":705478,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-endgame-prelude-1-tpb/4000-705478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701316/","id":701316,"name":"Avengers: Endgame Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-untitled-prelude-3-avengers-endga/4000-701316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696948/","id":696948,"name":"Avengers: Endgame Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-untitled-prelude-2-avengers-endga/4000-696948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695637/","id":695637,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-wars-fallen-guardian-1/4000-695637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692061/","id":692061,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-5/4000-692061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692084/","id":692084,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/thanos-the-infinity-conflict-1-volume-2/4000-692084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683777/","id":683777,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/science-comics-solar-system-our-place-in-space-1-g/4000-683777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675974/","id":675974,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-1/4000-675974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665925/","id":665925,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-thanos-rising-1/4000-665925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664928/","id":664928,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-thanos-the-first-1/4000-664928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665904/","id":665904,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-the-avengersdefenders-war/4000-665904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664926/","id":664926,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/thanos-the-infinity-siblings-1-ogn/4000-664926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656700/","id":656700,"name":"Dark Origins Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-128-dark-origins-part-4/4000-656700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649747/","id":649747,"name":"Thanos Wins Part 2","site_detail_url":"https://comicvine.gamespot.com/thanos-14-thanos-wins-part-2/4000-649747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655501/","id":655501,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-telltale-games-1-tpb/4000-655501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641405/","id":641405,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-the-telltale-series-5/4000-641405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632496/","id":632496,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-the-telltale-series-4/4000-632496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625308/","id":625308,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-the-telltale-series-3/4000-625308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625356/","id":625356,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/shutter-so-far-beyond-1-volume-five/4000-625356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606618/","id":606618,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-by-jonathan-hickman-omnibus-1-volume-1/4000-606618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610498/","id":610498,"name":"Coda Obscura, Part Two: Saudade","site_detail_url":"https://comicvine.gamespot.com/shutter-30-coda-obscura-part-two-saudade/4000-610498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598389/","id":598389,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-7/4000-598389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598375/","id":598375,"name":"The Bitter End","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy-5-the-bitte/4000-598375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592597/","id":592597,"name":"Dream On; But Are They Ready For... Taserface!","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-dream-on-1-dream-on-but-ar/4000-592597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582547/","id":582547,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-4/4000-582547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578477/","id":578477,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-3/4000-578477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569350/","id":569350,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-2/4000-569350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558425/","id":558425,"name":"Thanos Returns","site_detail_url":"https://comicvine.gamespot.com/thanos-1-thanos-returns/4000-558425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549545/","id":549545,"name":"","site_detail_url":"https://comicvine.gamespot.com/southern-cross-7/4000-549545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538509/","id":538509,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/hawkeye-and-the-thunderbolts-2-volume-2/4000-538509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535417/","id":535417,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-titan-1-tpb/4000-535417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498547/","id":498547,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-6/4000-498547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484802/","id":484802,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/avengers-rage-of-ultron-1-ogn/4000-484802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490884/","id":490884,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-hem-1/4000-490884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468105/","id":468105,"name":"Black Light District, Conclusion","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-24-black-light-district-conclusion/4000-468105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465863/","id":465863,"name":"Black Light District, Part 2","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-23-black-light-district-part-2/4000-465863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458617/","id":458617,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-galaxy-s-most-wanted-1-one/4000-458617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462912/","id":462912,"name":"Black Light District Part 1","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-22-black-light-district-part-1/4000-462912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460714/","id":460714,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-by-abnett-and-lanning-comp/4000-460714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498548/","id":498548,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-1/4000-498548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453115/","id":453115,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-2-vo/4000-453115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450093/","id":450093,"name":"The American Way of Death, Part Two","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-18-the-american-way-of-death-part-two/4000-450093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452588/","id":452588,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-infinity-1/4000-452588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444760/","id":444760,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/infinity-1-hc/4000-444760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447532/","id":447532,"name":"The American Way of Death Part One; Slammer","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-17-the-american-way-of-death-part-one-/4000-447532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442231/","id":442231,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-hypernaturals-3-volume-3/4000-442231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442406/","id":442406,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/avengers-infinity-1-volume-4/4000-442406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436501/","id":436501,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-the-final-threat-1-volume/4000-436501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431435/","id":431435,"name":"Avengers Universe V: To the Earth...","site_detail_url":"https://comicvine.gamespot.com/avengers-22-avengers-universe-v-to-the-earth/4000-431435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435611/","id":435611,"name":"13 Badges, Part 1; Harsh Conditions","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-14-13-badges-part-1-harsh-conditions/4000-435611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426876/","id":426876,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-6/4000-426876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435247/","id":435247,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/avengers-absolute-vision-1-book-1/4000-435247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539345/","id":539345,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinito-1/4000-539345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432503/","id":432503,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thanos-redemption-1-tpb/4000-432503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428427/","id":428427,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/thanos-rising-1-tpb-hc/4000-428427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421691/","id":421691,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity-1-infinity/4000-421691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423680/","id":423680,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-rising-5/4000-423680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419969/","id":419969,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-5/4000-419969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424627/","id":424627,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet-aftermath-1-tpb/4000-424627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417844/","id":417844,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-rising-4/4000-417844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538818/","id":538818,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-29/4000-538818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400153/","id":400153,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-rising-2/4000-400153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417212/","id":417212,"name":"","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-7-against-chaos-1/4000-417212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415612/","id":415612,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-avengers-everything-dies-1-volume-1/4000-415612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412226/","id":412226,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-13-volume-13/4000-412226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395705/","id":395705,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-rising-1/4000-395705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413706/","id":413706,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/warlord-of-mars-dejah-thoris-the-vampire-men-of-sa/4000-413706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384960/","id":384960,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/new-avengers-3-infinity/4000-384960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387638/","id":387638,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-avengers-vs-thanos-1-tpb/4000-387638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390503/","id":390503,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-hypernaturals-9/4000-390503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381074/","id":381074,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-death-of-captain-marvel-1-tpb/4000-381074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381075/","id":381075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-the-end-1-tpb/4000-381075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371207/","id":371207,"name":"","site_detail_url":"https://comicvine.gamespot.com/warlord-of-mars-dejah-thoris-19/4000-371207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365745/","id":365745,"name":"","site_detail_url":"https://comicvine.gamespot.com/warlord-of-mars-dejah-thoris-18/4000-365745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359254/","id":359254,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-the-final-threat-1/4000-359254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362249/","id":362249,"name":"","site_detail_url":"https://comicvine.gamespot.com/warlord-of-mars-dejah-thoris-17/4000-362249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357559/","id":357559,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-celestial-quest-1-tpb/4000-357559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329769/","id":329769,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-8-volume-8/4000-329769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278181/","id":278181,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/impossible-man-1-tpb/4000-278181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272337/","id":272337,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-the-choice-1-volume-1/4000-272337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265155/","id":265155,"name":"The Thanos Imperative","site_detail_url":"https://comicvine.gamespot.com/thanos-imperative-1-the-thanos-imperative/4000-265155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267234/","id":267234,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-1-hctpb/4000-267234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238172/","id":238172,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-thanos-imperative-5/4000-238172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233762/","id":233762,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/the-thanos-imperative-4-part-4/4000-233762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228973/","id":228973,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-thanos-imperative-3/4000-228973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223608/","id":223608,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thanos-sourcebook-1/4000-223608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334840/","id":334840,"name":"Il Guanto dell'Infinito","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-80-il-guanto-dellinfinit/4000-334840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259540/","id":259540,"name":"Vol. 2: Man of Valor","site_detail_url":"https://comicvine.gamespot.com/superman-mon-el-2-vol-2-man-of-valor/4000-259540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220676/","id":220676,"name":"The Day After Titanfall","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-2-the-day-after-titanfall/4000-220676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228108/","id":228108,"name":"Silver Surfer: Rebirth of Thanos","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-rebirth-of-thanos-1-silver-surfer-re/4000-228108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214804/","id":214804,"name":"The Scream Heard 'Cross The Universe!","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-1-the-scream-heard-cross-th/4000-214804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213425/","id":213425,"name":"The Epilogue is the Future; Man of Valor, Finale","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-11-the-epilogue-is-the-future-man/4000-213425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308911/","id":308911,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-iron-man-4-volume-4/4000-308911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318158/","id":318158,"name":"War of Kings: Prologo 2","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-61-war-of-kings-prologo-2/4000-318158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458450/","id":458450,"name":"","site_detail_url":"https://comicvine.gamespot.com/connie-by-frank-godwin-battle-for-titan-1/4000-458450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212490/","id":212490,"name":"Guardians of the Galaxy: War of Kings, Book One","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-war-of-kings-book-one-1-gu/4000-212490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294011/","id":294011,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/hercules-prince-of-power-1-hctpb/4000-294011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255944/","id":255944,"name":"The WRATH of CAPTAIN AMERICA!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-84-the-wrath-of-captain/4000-255944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233678/","id":233678,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-warlock-2-volume-2/4000-233678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255941/","id":255941,"name":"Attack of The Punisher","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-82-attack-of-the-punish/4000-255941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153961/","id":153961,"name":"Sacrifice","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-12-sacrifice/4000-153961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150566/","id":150566,"name":"Prison Break","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-9-prison-break/4000-150566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172976/","id":172976,"name":"Secret Invasion: Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-captain-marvel-1-secret-invasion-c/4000-172976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187188/","id":187188,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/infinity-crusade-2-volume-2/4000-187188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187175/","id":187175,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/infinity-crusade-1-volume-1/4000-187175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238727/","id":238727,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-and-the-legion-of-super-heroes-1-tpb/4000-238727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259714/","id":259714,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-new-fantastic-four-1-hctpb/4000-259714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316030/","id":316030,"name":"Annihilation Conquest 1 di 5","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-49-annihilation-conquest-1-di-5/4000-316030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125718/","id":125718,"name":"Alien Hated","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-4-alien-hated/4000-125718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228347/","id":228347,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-marvel-3-volume-3/4000-228347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122066/","id":122066,"name":"Superman and the Legion of Superheroes, Chapter 4: Chameleons","site_detail_url":"https://comicvine.gamespot.com/action-comics-861-superman-and-the-legion-of-super/4000-122066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191915/","id":191915,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-6-volume-6/4000-191915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178191/","id":178191,"name":"Annihilation, Book Three","site_detail_url":"https://comicvine.gamespot.com/annihilation-book-three-1-annihilation-book-three/4000-178191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113955/","id":113955,"name":"Reconstruction, Part 6: So I Guess You're Saying The Honeymoon's Over","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-549-reconstruction-part-6-so-i-gues/4000-113955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112291/","id":112291,"name":"Reconstruction, Part 5: Kind Of An Expensive Test","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-548-reconstruction-part-5-kind-of-a/4000-112291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111894/","id":111894,"name":"Destiny","site_detail_url":"https://comicvine.gamespot.com/annihilation-conquest-quasar-1-destiny/4000-111894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315466/","id":315466,"name":"Annihilation 4 di 4","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-47-annihilation-4-di-4/4000-315466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111033/","id":111033,"name":"Reconstruction, Part 4: Never Ask Her If She's Wearing Colored Contact Lenses","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-547-reconstruction-part-4-never-ask/4000-111033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109820/","id":109820,"name":"Reconstruction, Part 3: Aw, That's Just Crude","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-546-reconstruction-part-3-aw-that-s/4000-109820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108761/","id":108761,"name":"Reconstruction, Part 2: Don't Make Me Embarrass You In Front Of Your Friends","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-545-reconstruction-part-2-don-t-mak/4000-108761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133202/","id":133202,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/she-hulk-laws-of-attraction-1-volume-4/4000-133202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107251/","id":107251,"name":"Everything You Always Wanted To Know About Awesome Andy But Were Afraid To Ask","site_detail_url":"https://comicvine.gamespot.com/she-hulk-14-everything-you-always-wanted-to-know-a/4000-107251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217744/","id":217744,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/universe-x-2-volume-two/4000-217744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107250/","id":107250,"name":"Mind Field","site_detail_url":"https://comicvine.gamespot.com/she-hulk-13-mind-field/4000-107250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108533/","id":108533,"name":"Centurions","site_detail_url":"https://comicvine.gamespot.com/annihilation-2-centurions/4000-108533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107249/","id":107249,"name":"Remember The Titans","site_detail_url":"https://comicvine.gamespot.com/she-hulk-12-remember-the-titans/4000-107249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106355/","id":106355,"name":null,"site_detail_url":"https://comicvine.gamespot.com/annihilation-the-nova-corps-files-1/4000-106355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187097/","id":187097,"name":"Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet-1-infinity-gauntlet/4000-187097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107243/","id":107243,"name":"Beaus and Eros, Part 2: Change Of Heart","site_detail_url":"https://comicvine.gamespot.com/she-hulk-7-beaus-and-eros-part-2-change-of-heart/4000-107243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166673/","id":166673,"name":"Rebirth of Thanos","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-rebirth-of-thanos-1-rebirth-of-thano/4000-166673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200193/","id":200193,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-galactic-storm-1-volume-1/4000-200193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278742/","id":278742,"name":"I sopravvissuti di Titano","site_detail_url":"https://comicvine.gamespot.com/speciale-nathan-never-15-i-sopravvissuti-di-titano/4000-278742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202293/","id":202293,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vision-and-the-scarlet-witch-1-tpb/4000-202293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190613/","id":190613,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-odyssey-1-volume-4/4000-190613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152544/","id":152544,"name":"...Go the Spoils","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-24-go-the-spoils/4000-152544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152548/","id":152548,"name":"Interred With Their Bones","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-19-interred-with-their-bones/4000-152548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125086/","id":125086,"name":"Dream Crime: Part Five","site_detail_url":"https://comicvine.gamespot.com/the-legion-23-dream-crime-part-five/4000-125086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125084/","id":125084,"name":"Dream Crime: Part Four","site_detail_url":"https://comicvine.gamespot.com/the-legion-22-dream-crime-part-four/4000-125084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125082/","id":125082,"name":"Dream Crime: Part Three","site_detail_url":"https://comicvine.gamespot.com/the-legion-21-dream-crime-part-three/4000-125082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110007/","id":110007,"name":"The Cure","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-6-the-cure/4000-110007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125077/","id":125077,"name":"Dream Crime: Part Two","site_detail_url":"https://comicvine.gamespot.com/the-legion-20-dream-crime-part-two/4000-125077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110006/","id":110006,"name":"Omnipotence","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-5-omnipotence/4000-110006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125069/","id":125069,"name":"Dream Crime: Part One","site_detail_url":"https://comicvine.gamespot.com/the-legion-19-dream-crime-part-one/4000-125069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78319/","id":78319,"name":"Breakdown!","site_detail_url":"https://comicvine.gamespot.com/infinity-abyss-4-breakdown/4000-78319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78318/","id":78318,"name":"Memory Disorders","site_detail_url":"https://comicvine.gamespot.com/infinity-abyss-3-memory-disorders/4000-78318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78317/","id":78317,"name":"Paranoids and Nihilists","site_detail_url":"https://comicvine.gamespot.com/infinity-abyss-2-paranoids-and-nihilists/4000-78317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80570/","id":80570,"name":"Getaways","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-32-getaways/4000-80570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259644/","id":259644,"name":"Il Mistero della Terza Luna","site_detail_url":"https://comicvine.gamespot.com/nathan-never-131-il-mistero-della-terza-luna/4000-259644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181499/","id":181499,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-celestial-madonna-1/4000-181499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141414/","id":141414,"name":"War!","site_detail_url":"https://comicvine.gamespot.com/avengers-celestial-quest-4-war/4000-141414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192520/","id":192520,"name":"The Life and Death of Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/the-life-and-death-of-captain-marvel-1-the-life-an/4000-192520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141413/","id":141413,"name":"What Goes Around ...","site_detail_url":"https://comicvine.gamespot.com/avengers-celestial-quest-3-what-goes-around/4000-141413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69372/","id":69372,"name":null,"site_detail_url":"https://comicvine.gamespot.com/universe-x-x/4000-69372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425512/","id":425512,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-first-contact-1-tpb/4000-425512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111964/","id":111964,"name":"What's so Funny About Truth, Justice & the American Way?","site_detail_url":"https://comicvine.gamespot.com/action-comics-775-whats-so-funny-about-truth-justi/4000-111964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80552/","id":80552,"name":"Truth Or Dare","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-14-truth-or-dare/4000-80552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47262/","id":47262,"name":"Heroic tendencies part 3: Big problems!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-47-heroic-tendencies-part-3-big-probl/4000-47262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47261/","id":47261,"name":"Heroic Tendencies part 2: Heart and Soul","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-46-heroic-tendencies-part-2-heart-and/4000-47261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80549/","id":80549,"name":"Together Again For The First Time!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-11-together-again-for-the-first-tim/4000-80549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46333/","id":46333,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-4/4000-46333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46307/","id":46307,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-3/4000-46307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46277/","id":46277,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-2/4000-46277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210167/","id":210167,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-green-lantern-76-1/4000-210167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46231/","id":46231,"name":null,"site_detail_url":"https://comicvine.gamespot.com/titanslegion-of-super-heroes-universe-ablaze-1/4000-46231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65843/","id":65843,"name":"First Contact","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-1-first-contact/4000-65843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78405/","id":78405,"name":"Countdown To Destruction","site_detail_url":"https://comicvine.gamespot.com/warlock-3-countdown-to-destruction/4000-78405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78403/","id":78403,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/warlock-1-resurrection/4000-78403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84586/","id":84586,"name":"1,000 Years Later","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-1000000-1-000-years-later/4000-84586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168505/","id":168505,"name":"Come Together","site_detail_url":"https://comicvine.gamespot.com/legionnaires-1000000-come-together/4000-168505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176281/","id":176281,"name":"History Lies!","site_detail_url":"https://comicvine.gamespot.com/sovereign-seven-plus-legion-of-superheroes-1-histo/4000-176281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48147/","id":48147,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/the-legion-of-super-heroes-archives-7-volume-7/4000-48147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125679/","id":125679,"name":"Titans Children, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-2-titans-children-part-2/4000-125679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119435/","id":119435,"name":"Titans Children","site_detail_url":"https://comicvine.gamespot.com/teen-titans-1-titans-children/4000-119435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125605/","id":125605,"name":"Trouble On Titan","site_detail_url":"https://comicvine.gamespot.com/legionnaires-38-trouble-on-titan/4000-125605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42520/","id":42520,"name":"Legacies","site_detail_url":"https://comicvine.gamespot.com/avengers-unplugged-5-legacies/4000-42520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107049/","id":107049,"name":"True Believers","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-6-true-believers/4000-107049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107048/","id":107048,"name":"In The Name Of God?","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-5-in-the-name-of-god/4000-107048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145603/","id":145603,"name":"The Plague War","site_detail_url":"https://comicvine.gamespot.com/cosmic-powers-unlimited-4-the-plague-war/4000-145603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107051/","id":107051,"name":"Why is the Sky Blue? (And Other Questions Kids Ask Their Parents)","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-2-why-is-the-sky-blue-and-other-que/4000-107051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315378/","id":315378,"name":"Tempesta Nella Galassia 1","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-1-tempesta-nella-galassia-1/4000-315378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39848/","id":39848,"name":"Time and Chance","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-0-time-and-chance/4000-39848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39721/","id":39721,"name":"The First Mandate","site_detail_url":"https://comicvine.gamespot.com/psi-lords-2-the-first-mandate/4000-39721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39579/","id":39579,"name":"Postcard From Olympus","site_detail_url":"https://comicvine.gamespot.com/psi-lords-1-postcard-from-olympus/4000-39579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68475/","id":68475,"name":"To Serve","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-annual-7-to-serve/4000-68475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94477/","id":94477,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/cosmic-powers-4-legacy/4000-94477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39226/","id":39226,"name":"\"Brothers In Arms\"","site_detail_url":"https://comicvine.gamespot.com/quasar-59-brothers-in-arms/4000-39226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38945/","id":38945,"name":"Escape","site_detail_url":"https://comicvine.gamespot.com/secret-defenders-14-escape/4000-38945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432256/","id":432256,"name":"Es Kam aus Weltraumtiefen","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-20-es-kam-aus-we/4000-432256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38261/","id":38261,"name":"Revenge Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-defenders-10-revenge-part-2/4000-38261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38162/","id":38162,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-50/4000-38162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38098/","id":38098,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-6-rapture/4000-38098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68474/","id":68474,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-annual-6-legacy/4000-68474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130938/","id":130938,"name":"True Believers","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-19-true-believers/4000-130938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37581/","id":37581,"name":"Half A Man","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-24-half-a-man/4000-37581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36535/","id":36535,"name":"The Appeal","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-11-the-appeal/4000-36535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36030/","id":36030,"name":"The Explorer","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-69-the-explorer/4000-36030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35144/","id":35144,"name":"The Return of the Defenders Part 3: Blood Rights; Greatest Foes; By Reason of Insanity","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-annual-5-the-return-of-the-defenders/4000-35144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57730/","id":57730,"name":"Warlock vs the Magus!","site_detail_url":"https://comicvine.gamespot.com/warlock-3-warlock-vs-the-magus/4000-57730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35913/","id":35913,"name":"Sins Of The Fathers","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-67-sins-of-the-fathers/4000-35913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35489/","id":35489,"name":"Gathering the Watch!","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-2-gathering-the-wat/4000-35489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35475/","id":35475,"name":"The Tomb of Mar-Vell","site_detail_url":"https://comicvine.gamespot.com/quasar-32-the-tomb-of-mar-vell/4000-35475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114272/","id":114272,"name":"Turn Of The Sentry","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-80-turn-of-the-sentry/4000-114272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231955/","id":231955,"name":"The Tomb of Mar-Vell","site_detail_url":"https://comicvine.gamespot.com/quasar-special-1-the-tomb-of-mar-vell/4000-231955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304800/","id":304800,"name":"No Evil Shall Escape My Sight!","site_detail_url":"https://comicvine.gamespot.com/dc-silver-age-classics-green-lantern-76-no-evil-sh/4000-304800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34543/","id":34543,"name":"The Hero In Absence","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-52-the-hero-in-absence/4000-34543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34529/","id":34529,"name":"From Bad to Worse","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-2-from-bad-to-worse/4000-34529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34415/","id":34415,"name":"God","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-1-god/4000-34415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34212/","id":34212,"name":"Detour","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-49-detour/4000-34212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33549/","id":33549,"name":"Epiphany","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-44-epiphany/4000-33549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33119/","id":33119,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-impossible-man-summer-vacation-spectacular-1/4000-33119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33096/","id":33096,"name":"Welcome To Dynamo City","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-40-welcome-to-dynamo-city/4000-33096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32863/","id":32863,"name":"What if Captain Marvel Had Not Died?","site_detail_url":"https://comicvine.gamespot.com/what-if-14-what-if-captain-marvel-had-not-died/4000-32863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32739/","id":32739,"name":"A Destructive Encounter","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-37-a-destructive-encounter/4000-32739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31224/","id":31224,"name":"When You Wish Upon A Star; Will You, Won't You","site_detail_url":"https://comicvine.gamespot.com/solo-avengers-18-when-you-wish-upon-a-star-will-yo/4000-31224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66625/","id":66625,"name":"Super-Adaptoid To Umar","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-13-su/4000-66625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25899/","id":25899,"name":"Betrayal!; Trapped On Titan!; When Titans Collide!","site_detail_url":"https://comicvine.gamespot.com/the-life-of-captain-marvel-2-betrayal-trapped-on-t/4000-25899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25484/","id":25484,"name":"Another Runner...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-143-another-runner/4000-25484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24881/","id":24881,"name":"The Snows of Summer","site_detail_url":"https://comicvine.gamespot.com/the-avengers-249-the-snows-of-summer/4000-24881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24307/","id":24307,"name":"Deadly Legacy","site_detail_url":"https://comicvine.gamespot.com/hercules-3-deadly-legacy/4000-24307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23716/","id":23716,"name":"Unlimited Vision!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-238-unlimited-vision/4000-23716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68390/","id":68390,"name":"S-U: Subterraneans to Ursa Major","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-11-s-/4000-68390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21782/","id":21782,"name":"The Death of Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-1-the-death-of-captain-marvel/4000-21782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66605/","id":66605,"name":"The Dawn of the Doomsday Man!","site_detail_url":"https://comicvine.gamespot.com/fantasy-masterpieces-13-the-dawn-of-the-doomsday-m/4000-66605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19924/","id":19924,"name":"BLUE--RED--BLUE!","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-3-blue-red-blue/4000-19924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19783/","id":19783,"name":"The Dark Corners!","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-2-the-dark-corners/4000-19783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19647/","id":19647,"name":"The Saturn Storm!","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-1-the-saturn-storm/4000-19647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19501/","id":19501,"name":"Earth Skirmish","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-62-earth-skirmish/4000-19501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19362/","id":19362,"name":"Chaos and the Pit!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-61-chaos-and-the-pit/4000-19362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19186/","id":19186,"name":"Moon-Traps and Paradise","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-60-moon-traps-and-paradise/4000-19186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18958/","id":18958,"name":"The Trouble with Titan","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-59-the-trouble-with-titan/4000-18958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18812/","id":18812,"name":"A Destroyer -- Denied!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-58-a-destroyer-denied/4000-18812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18230/","id":18230,"name":"A World Born Anew!; Mon-El's One Man War!; Words Never Spoken","site_detail_url":"https://comicvine.gamespot.com/superboy-and-the-legion-of-super-heroes-236-a-worl/4000-18230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17030/","id":17030,"name":"The Final Threat","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-7-the-final-threat/4000-17030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190789/","id":190789,"name":"The Galactic Vampires!; Heart of the Gem!; While Egghead Watches!","site_detail_url":"https://comicvine.gamespot.com/the-super-heroes-48-the-galactic-vampires-heart-of/4000-190789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327070/","id":327070,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-super-heroes-47/4000-327070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15886/","id":15886,"name":"How Strange My Destiny","site_detail_url":"https://comicvine.gamespot.com/warlock-10-how-strange-my-destiny/4000-15886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15270/","id":15270,"name":"Let All Men Bring Together","site_detail_url":"https://comicvine.gamespot.com/giant-size-avengers-4-let-all-men-bring-together/4000-15270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14410/","id":14410,"name":"The God Himself!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-33-the-god-himself/4000-14410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14257/","id":14257,"name":"Thanos the Insane God","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-32-thanos-the-insane-god/4000-14257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14119/","id":14119,"name":"The Beginning of the End","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-31-the-beginning-of-the-end/4000-14119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13981/","id":13981,"name":"...To Be Free From Control!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-30-to-be-free-from-control/4000-13981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13915/","id":13915,"name":"To The Death!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-118-to-the-death/4000-13915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13800/","id":13800,"name":"The Bite of the Blood Brothers","site_detail_url":"https://comicvine.gamespot.com/marvel-feature-12-the-bite-of-the-blood-brothers/4000-13800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13380/","id":13380,"name":"Trapped on Titan","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-27-trapped-on-titan/4000-13380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13068/","id":13068,"name":"Time-Schedule for Disaster!; Death-Threat on Titan!","site_detail_url":"https://comicvine.gamespot.com/the-flash-221-time-schedule-for-disaster-death-thr/4000-13068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12928/","id":12928,"name":"Beware - Beware - Beware the Blood Brothers!","site_detail_url":"https://comicvine.gamespot.com/iron-man-55-beware-beware-beware-the-blood-brother/4000-12928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10739/","id":10739,"name":"No Evil Shall Escape My Sight!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-76-no-evil-shall-escape-my-sight/4000-10739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10019/","id":10019,"name":"Threat Of The High-Rise Buildings!","site_detail_url":"https://comicvine.gamespot.com/the-flash-185-threat-of-the-high-rise-buildings/4000-10019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7748/","id":7748,"name":"Superboy","site_detail_url":"https://comicvine.gamespot.com/80-page-giant-10-superboy/4000-7748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5298/","id":5298,"name":"","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-unexpected-61/4000-5298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4315/","id":4315,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-51/4000-4315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109104/","id":109104,"name":"The Eagle of Space","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-105-the-eagle-of-space/4000-109104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4115/","id":4115,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-48/4000-4115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4038/","id":4038,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-47/4000-4038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128745/","id":128745,"name":"The Journey of the Second Superboy","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-205-the-journey-of-the-second-sup/4000-128745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1277/","id":1277,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-21/4000-1277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591706/","id":591706,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-508/4000-591706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591632/","id":591632,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-506/4000-591632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591586/","id":591586,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-501/4000-591586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591492/","id":591492,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-433/4000-591492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591491/","id":591491,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-432/4000-591491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591490/","id":591490,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-431/4000-591490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591279/","id":591279,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-430/4000-591279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591278/","id":591278,"name":"","site_detail_url":"https://comicvine.gamespot.com/eagle-429/4000-591278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115181/","id":115181,"name":"Superman Takes the Consequences","site_detail_url":"https://comicvine.gamespot.com/action-comics-127-superman-takes-the-consequences/4000-115181/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2679/","id":2679,"name":"Doctor Strange in the Multiverse of Madness","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-in-the-multiverse-of-madness/4025-2679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2297/","id":2297,"name":"Avengers: Infinity War","site_detail_url":"https://comicvine.gamespot.com/avengers-infinity-war/4025-2297/"}],"name":"Titan","site_detail_url":"https://comicvine.gamespot.com/titan/4020-41103/","start_year":"1948","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18005/","id":18005,"name":"Action Comics","site_detail_url":"https://comicvine.gamespot.com/action-comics/4050-18005/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/location-details/location-4020-41183.json b/samples/api-data/location-details/location-4020-41183.json new file mode 100644 index 0000000..554cb73 --- /dev/null +++ b/samples/api-data/location-details/location-4020-41183.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"The Big Apple\r\nThe City That Never Sleeps\r\nGotham\r\nModern Babylon\r\nNew York, New York\r\nNew Genosha\r\nNYC\r\nNew K'un-Lun\r\nThe Regency","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41183/","count_of_issue_appearances":21343,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-28 22:11:29","deck":"The most populous city in the United States.","description":"

    Overview

    New York City is one of the largest cities in the world in terms of population and encompasses a huge area, spanning over three states (Connecticut, New York State, New Jersey). Additionally, New York forms one of the main centers of the East Coast urbanized areas along with Philadelphia, Washington D.C. and Boston. Due to its important role at the beginning of the spread of mass media, the city has been prominently featured in all its forms, including comic books. One of the most famous police forces in the world is the New York Police Department.

    History

    Although inhabited long before the arrival of Europeans, the development of the area into an urban center did not occur until visited by explorers. The city was first a Dutch colony, then British until the secession of the United States of America in the American Revolution of 1776. Since then New York has been one of the main centers of urbanization which has resulted in both the progress of science as well as social problems, such as the rise of crime. In the 20th and 21st centuries these roles have become prominent as well in the media. As one of the world's primary financial centers, the images of Black Tuesday in 1929 which led to the Great Depression are tied directly to the public consciousness surrounding this case. The drug and gang-related problems in later years also served as a statement to others in the United States and beyond that there was a disparity within the country.

    All of the factors listed above also served to make it a target of attacks on September 11, 2001. Terrorists linked to al-Qaeda flew two airplanes into the World Trade Center towers which resulted in the deaths of thousands. This tragic event dramatically altered the perception of the United States both at home and abroad which has been additionally linked to its portrayal in the media.

    Depiction in Comics

    In the early years of comics, it was more common for comics to be based in fictional cities as opposed to real ones. Thus, in the 1960s, when Stan Lee decided to reboot Marvel Comics, one of the decisions which he made was to include real places in comics as opposed to fictional ones as it would better connect with the reader. Thus among comic book publishers, New York City is the most prominent at Marvel. Despite this, various writers at DC used New York City as a model: for instance, Frank Miller said that \"Metropolis is New York in the daytime, Gotham City is New York at night.\" Numerous characters were based or have been based in New York City, including the Spectre, Power Girl, Catwoman, Vigilante and the Justice League International. Additionally, the big two publishers are based in New York City as well as many smaller ones, thus the depiction of the city is something that traditionally many creators were very familiar with.

    The city was also featured in many early comic books which sought to capture the noirish aspects of the city. This was evident in such characters as the Spirit and the Sandman. Such depictions formed a basis for the city's depiction later in comics attempting a retroactive capture of the same atmosphere, as with Vertigo.

    The following depictions of New York City are also notable: the setting for 22 Brides and Painkiller Jane; the New York Disaster in the Uniques; the setting for the Beyond Wonderland series; Brian Wood's hot zone in DMZ. Zenescope also often uses New York's iconic locations for their own covers which portray its main characters as versions of icons, some of which include Americana.

    Boroughs

    Due to its prominent role as a prominently featured city in media in general and specifically for comic books, specific areas within New York City have been spotlighted unlike those in other cities. The following is a list of boroughs and neighbourhoods within specific boroughs. There are also outlying areas of New York City which feature prominently from time to time, including towns and cities in Long Island and the adjoining areas of Connecticut and New Jersey (which are often included in the same geographic area).

    The Bronx

    The northernmost of boroughs, the Bronx is noted for its diverse immigrant population. It is generally less famous than other areas within the city as there are not as many landmarks of note here, and although it has been at times a dangerous area of the city in terms of crime, other areas such as Harlem have been more prominently featured in such regards.

    Prominent Appearances: Blue Beetle, The Boys, Minor Miracles.

    Brooklyn

    Brooklyn is the second most famous of New York City boroughs and correspondingly appears second most often compared to them. Generally speaking, this portion of the city is known for the same reasons as the Bronx: the influx of immigrants and the rise of crime in later years. It has more famous landmarks than the other boroughs (except for Manhattan) such as the Brooklyn Bridge. It also contains the neighbourhood Coney Island.

    Prominent Appearances: 21 Down, The Amazing Spider-Man, Bad Medicine, Captain America, Corriere dei Ragazzi, Fear Itself, G.I. Joe: A Real American Hero, Hawkeye: Blind Spot, Herc, The Hood, Justice League, Marvel Comics Presents, Mystique, Tarzan/Carson of Venus, Venom, X-Factor.

    Queens

    Queens has the same general presentation in comics as does the Bronx. There are fewer landmarks of note here, and, generally speaking, it is also an ethnically diverse area.

    Prominent Appearances: The 100 Greatest Marvels of All Time, Fantastic Four, Ultimate Spider-Man.

    Staten Island

    Generally speaking, Staten Island is the least prominent of New York boroughs as it is isolated from them. It is generally a higher income part of the city.

    Prominent Appearances: None

    Manhattan

    The island of Manhattan forms the heart of the city and serves as home to most of the notable landmarks.

    Prominent Appearances: Outside of the other boroughs, Manhattan is generally used in the same context as New York City.

    Neighbourhoods

    Coney Island

    New York City's seaside resort. Coney Island is well-known for its famous boardwalk and amusement rides. It is one of the only prominent neighbourhoods outside of Manhattan.

    Notable Appearances: The Pirates of Coney Island, The Warriors Official Movie Adaptation.

    Greenwich Village

    Somewhat upscale neighbourhood known for a bohemian lifestyle, as well as being a source of the hippie movement in the 1960s. Served as the base of operations for both Doctor Strange and Wonder Woman.

    Notable appearances: The Darkness, Howard the Duck, Witches.

    Harlem

    Often associated with crime and poverty, Harlem has undergone heavy gentrification in recent years. Despite this, it is still often displayed as a tough area of the city centered around African-American culture.

    Notable Appearances: Hero for Hire, Power Man.

    Hell's Kitchen

    Hell's Kitchen is associated prominently with Daredevil and his enemies, most notably Kingpin. It is also the birthplace of Frank Castle. The version of Hell's Kitchen featured in Marvel comics is substantially different from its real-life counterpart which is known for clothing and fabric wholesalers, not for crime.

    Notable appearances: Daredevil, Hawkeye.

    Prominent Landmarks

    New York City is home to a number of famous landmarks, often seen to be iconic with the city or the United States as a whole. Included among these are the Ellis Island, Grand Central Station, Statue of Liberty, Wall Street and the others. Additionally, some other institutions are known for their connection to the city, notably some of the universities (NYU, Columbia) which occasionally are shown as centers of research. The following have been featured prominently in comics:

    American Museum of Natural History

    A museum on the West side of Central Park featuring exhibits on zoology and anthropology.

    Notable appearances: Has been featured occasionally in Captain America related series.

    Central Park

    The largest park inside of the city and one of the most famous and largest city parks in the world. It has occasionally been seen as a location where criminals lurk, though equally it is famous for its other depictions.

    Notable appearances: It is often featured from time to time in any comics related to New York City. It features fairly regularly in The Boys (2006). At the end of the movie The Avengers (2012), Thor leaves for Asgard with Loki from Bethesda Fountain, one of the prominent landmarks within the Park.

    Empire State Building

    For a period the tallest free standing structure in the world, the towering building has been associated with New York City since it was built. Although other large skyscrapers are equally famous (such as the Chrysler Building) the Empire State building remains one of the most prominent buildings in the city.

    Notable appearances: The Punisher (2001), Preacher (1995), Chronicles of Wormwood (2007), 2000 AD (1977), Beyond Wonderland (2008), Doc Savage (1998), Mystery Man (2011). It is also used as a somewhat token high spot to view the city from. In the 1993 movie the Shadow, the villains inspect the city from above to decide how far the blast radius will be.

    Riker’s Island

    This real life prison is featured prominently in the Marvel Universe as a holding location for many street level heroes.

    Times Square

    At one point the automated newsfeeds served as a way to stay connected to the happenings in the world before the advent of television and radio. Ever since then Times Square has maintained a link to media in the city, and is seen by many to be a prominent landmark and meeting point (though this is not as accurate as it relates to people that live in New York City.)

    Notable Appearances: It often serves as a place of large battles in comics as has been featured in Spider Island and Green Lantern New Guardians.

    United Nations Headquarters

    After the establishment of the United Nations following the Second World War, New York City was chosen as one of its locations as it is a “global capital” (this despite the fact that politically New York City is not the capital of anything.) Generally speaking the HQ is featured either for its general assembly or for its security council (which is also based in here.) It occupies a small portion of land granted international status by the USA.

    Notable Appearances: For a time in the 1970s, Diana Prince maintained a job at the United Nations Headquarters. It also featured prominently in the Death in the Family story arc when the Joker attempts to poison the General Assembly after being made the ambassador from Iran.

    Fictional Locations

    As the setting for many comic book stories, the city has many fictional locations as well which have been featured regularly.

    Avengers’ Mansion

    One of the main bases of operations for Marvel’s superhero team. It is featured often as the meeting point and planning space for the team.

    Baxter Building

    The most prominent of headquarters for the Fantastic Four.

    Daily Bugle

    A fictional newspaper with its headquarters in New York City. Closely associated with Spider-Man stories (as he was employed there) as well as with Daredevil through Ben Ulrich, one of the Bugle’s reporters.

    Diana Prince’s Fashion Boutique

    During her depowered phase in the 1960s and 1970s, Diana Prince relocated to Greenwich Village and opened a fashion boutique. It was more used as a base of operations, but her interaction with locals was sometimes featured, most prominent among them the gang Them!

    Empire State University

    Borrowing its name from the nickname of New York State (the Empire State) this university is the alma mater of many famous Marvel characters and inventors.

    Fabletown

    One of the key locations in the Fables setting from Vertigo.

    Four Freedoms Plaza

    A one-time headquarters of the Fantastic Four. It has since been destroyed.

    Midtown High School

    The high school attended by many of Peter Parker’s friends and colleagues. Featured prominently in Spider-Man stories, especially those dealing with his early years.

    Morlock Tunnels

    A system of tunnels underneath New York City inhabited by the mutant Morlocks in the Marvel Universe.

    Sanctum Santorum

    The base of operations of Doctor Strange, located in Greenwich Village.

    Stark Tower

    The base of operations for Tony Stark and Iron Man, as well as generally serving as the main location for Stark Industries.

    Triskelion

    A SHIELD base of operations, located off the coast from New York City.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-201737/","id":201737,"name":"Tintin En Amerique","issue_number":"3"},"id":41183,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/4342928-500px-flag_of_new_york_city.svg.png","image_tags":"All Images"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946192/","id":946192,"name":null,"site_detail_url":"https://comicvine.gamespot.com/all-out-avengers-1/4000-946192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946148/","id":946148,"name":"Part 6: The Devil's Party","site_detail_url":"https://comicvine.gamespot.com/immortal-x-men-6-part-6-the-devils-party/4000-946148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946698/","id":946698,"name":"The Right Question Part 2","site_detail_url":"https://comicvine.gamespot.com/i-am-batman-13-the-right-question-part-2/4000-946698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-941562/","id":941562,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ghost-rider-vengeance-forever-1/4000-941562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-941552/","id":941552,"name":null,"site_detail_url":"https://comicvine.gamespot.com/axe-judgment-day-2/4000-941552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-945215/","id":945215,"name":"Just Some Guy; Sinister 60th; Spider-Man vs. Conspirition; The Kid's Got a Good Eye; In the Flesh; Slaves of the Witch-Queen; You Get It; With Great Power...","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-1000-just-some-guy-sinister-60th-s/4000-945215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-943804/","id":943804,"name":null,"site_detail_url":"https://comicvine.gamespot.com/axe-judgment-day-3/4000-943804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-934932/","id":934932,"name":"Chapter Two: Fall of the Titans","site_detail_url":"https://comicvine.gamespot.com/dark-crisis-2-chapter-two-fall-of-the-titans/4000-934932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-934988/","id":934988,"name":null,"site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty-2/4000-934988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-934990/","id":934990,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-5/4000-934990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-935767/","id":935767,"name":"The Red Fist Saga Part 1; The Island","site_detail_url":"https://comicvine.gamespot.com/daredevil-1-the-red-fist-saga-part-1-the-island/4000-935767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-935609/","id":935609,"name":"She Got Next! Part 1","site_detail_url":"https://comicvine.gamespot.com/i-am-batman-11-she-got-next-part-1/4000-935609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-937281/","id":937281,"name":"Part 7","site_detail_url":"https://comicvine.gamespot.com/batman-the-knight-7-part-7/4000-937281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-937512/","id":937512,"name":"I Don't Know...Maybe It Was Utah","site_detail_url":"https://comicvine.gamespot.com/iron-man-21-i-dont-knowmaybe-it-was-utah/4000-937512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-937937/","id":937937,"name":null,"site_detail_url":"https://comicvine.gamespot.com/axe-judgment-day-1/4000-937937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-943973/","id":943973,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/blacksad-they-all-fall-down-1-part-one/4000-943973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929454/","id":929454,"name":"Chapter One: The Justice League is Dead","site_detail_url":"https://comicvine.gamespot.com/dark-crisis-1-chapter-one-the-justice-league-is-de/4000-929454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929556/","id":929556,"name":"Will to Survive, Part One: New Girl in Town; To Stop the Star-Conqueress!","site_detail_url":"https://comicvine.gamespot.com/multiversity-teen-justice-1-will-to-survive-part-o/4000-929556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929647/","id":929647,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-3/4000-929647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929649/","id":929649,"name":"Part One of Five","site_detail_url":"https://comicvine.gamespot.com/jane-foster-and-the-mighty-thor-1-part-one-of-five/4000-929649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-930442/","id":930442,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-sandman-universe-nightmare-country-3/4000-930442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-931633/","id":931633,"name":"Controlled Demolition","site_detail_url":"https://comicvine.gamespot.com/x-men-12-controlled-demolition/4000-931633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-933077/","id":933077,"name":null,"site_detail_url":"https://comicvine.gamespot.com/she-hulk-4/4000-933077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-932950/","id":932950,"name":"All Points","site_detail_url":"https://comicvine.gamespot.com/aquamen-5-all-points/4000-932950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-933080/","id":933080,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-variants-1/4000-933080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-932971/","id":932971,"name":"New Blood, New World Part 4","site_detail_url":"https://comicvine.gamespot.com/x-cellent-4-new-blood-new-world-part-4/4000-932971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-932437/","id":932437,"name":"","site_detail_url":"https://comicvine.gamespot.com/milestones-in-history-1/4000-932437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-939224/","id":939224,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-131/4000-939224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-936754/","id":936754,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tmnt-the-armageddon-game-opening-moves-1/4000-936754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-941826/","id":941826,"name":"Worst Birthday Ever","site_detail_url":"https://comicvine.gamespot.com/zatanna-and-the-ripper-1-worst-birthday-ever/4000-941826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-941827/","id":941827,"name":"When Am I?","site_detail_url":"https://comicvine.gamespot.com/zatanna-and-the-ripper-2-when-am-i/4000-941827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-922402/","id":922402,"name":"A Busted Hand","site_detail_url":"https://comicvine.gamespot.com/x-men-11-a-busted-hand/4000-922402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924639/","id":924639,"name":"The Black Forest Chapter One: Greenjack","site_detail_url":"https://comicvine.gamespot.com/fables-151-the-black-forest-chapter-one-greenjack/4000-924639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924795/","id":924795,"name":"Powers You Can't Comprehend; Assassin; Rendezvous","site_detail_url":"https://comicvine.gamespot.com/elektra-black-white-and-blood-4-powers-you-cant-co/4000-924795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921066/","id":921066,"name":"The Humanity Agenda, Part Four: Brotherly Hate!","site_detail_url":"https://comicvine.gamespot.com/ben-reilly-spider-man-4-the-humanity-agenda-part-f/4000-921066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924650/","id":924650,"name":"New Blood, New World Part 3","site_detail_url":"https://comicvine.gamespot.com/x-cellent-3-new-blood-new-world-part-3/4000-924650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926036/","id":926036,"name":"Commencement Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-academy-15-commencement-part-2/4000-926036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926189/","id":926189,"name":"Fall and Rise; Mayor for Hire; Cleaning House","site_detail_url":"https://comicvine.gamespot.com/devils-reign-omega-1-fall-and-rise-mayor-for-hire-/4000-926189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926033/","id":926033,"name":"Scavenged","site_detail_url":"https://comicvine.gamespot.com/aquamen-4-scavenged/4000-926033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-928436/","id":928436,"name":null,"site_detail_url":"https://comicvine.gamespot.com/strange-3/4000-928436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-928433/","id":928433,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-92-house-of-xcii-2/4000-928433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916158/","id":916158,"name":"Empire State of Mind, Part 3","site_detail_url":"https://comicvine.gamespot.com/i-am-batman-8-empire-state-of-mind-part-3/4000-916158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916681/","id":916681,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-92-house-of-xcii-1/4000-916681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917449/","id":917449,"name":"Twisters; Waltz; Mini Marvels; The Elektra Company Presents Ninja Super Stories","site_detail_url":"https://comicvine.gamespot.com/elektra-100-twisters-waltz-mini-marvels-the-elektr/4000-917449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917405/","id":917405,"name":null,"site_detail_url":"https://comicvine.gamespot.com/deadpool-bad-blood-1/4000-917405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918153/","id":918153,"name":"Night of the Panther, Dawn of the Hawk","site_detail_url":"https://comicvine.gamespot.com/avengers-55-night-of-the-panther-dawn-of-the-hawk/4000-918153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918155/","id":918155,"name":"Trigger Warning","site_detail_url":"https://comicvine.gamespot.com/wolverine-20-trigger-warning/4000-918155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918720/","id":918720,"name":"Future Proof","site_detail_url":"https://comicvine.gamespot.com/captain-america-0-future-proof/4000-918720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-919313/","id":919313,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-1/4000-919313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926635/","id":926635,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-peter-david-omnibus-1-hc/4000-926635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926299/","id":926299,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-peanutbutter-sisters-and-other-american-storie/4000-926299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921205/","id":921205,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legends-mutant-mayhem-1-volume-2/4000-921205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910749/","id":910749,"name":null,"site_detail_url":"https://comicvine.gamespot.com/devils-reign-superior-four-3/4000-910749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911227/","id":911227,"name":"The Living End","site_detail_url":"https://comicvine.gamespot.com/x-lives-of-wolverine-5-the-living-end/4000-911227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911318/","id":911318,"name":"What if the Watcher had Never Interfered?","site_detail_url":"https://comicvine.gamespot.com/reckoning-war-trial-of-the-watcher-1-what-if-the-w/4000-911318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911871/","id":911871,"name":"Part Nine: \"The Forgotten War\"","site_detail_url":"https://comicvine.gamespot.com/the-marvels-9-part-nine-the-forgotten-war/4000-911871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912254/","id":912254,"name":"The Humanity Agenda, Part Three: Seize the Fire!","site_detail_url":"https://comicvine.gamespot.com/ben-reilly-spider-man-3-the-humanity-agenda-part-t/4000-912254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913165/","id":913165,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-fist-2/4000-913165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909684/","id":909684,"name":null,"site_detail_url":"https://comicvine.gamespot.com/she-hulk-2/4000-909684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918568/","id":918568,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-11-volume-11/4000-918568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918715/","id":918715,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tmnt-the-armageddon-game-pre-game-1/4000-918715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-915115/","id":915115,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-omnibus-1-vol-1/4000-915115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905752/","id":905752,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/x-men-legends-11-monsters/4000-905752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905794/","id":905794,"name":"The Day of Reckoning","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-reckoning-war-alpha-1-the-day-of-re/4000-905794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905802/","id":905802,"name":"The Next Big Thing Part 4","site_detail_url":"https://comicvine.gamespot.com/the-thing-4-the-next-big-thing-part-4/4000-905802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905753/","id":905753,"name":"Beyond Chapter Fourteen","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-88-beyond-chapter-fourteen/4000-905753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905716/","id":905716,"name":"The '10s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-6-the-10s/4000-905716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905713/","id":905713,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-woman-without-fear-2/4000-905713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905705/","id":905705,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-tech-on-6/4000-905705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906205/","id":906205,"name":"Empire State of Mind, Part 1","site_detail_url":"https://comicvine.gamespot.com/i-am-batman-6-empire-state-of-mind-part-1/4000-906205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906625/","id":906625,"name":"Part One: The Last Dance","site_detail_url":"https://comicvine.gamespot.com/maestro-world-war-m-1-part-one-the-last-dance/4000-906625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906628/","id":906628,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-88bey/4000-906628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906636/","id":906636,"name":"Dead Run","site_detail_url":"https://comicvine.gamespot.com/x-deaths-of-wolverine-2-dead-run/4000-906636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907458/","id":907458,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-voices-legacy-1/4000-907458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907439/","id":907439,"name":null,"site_detail_url":"https://comicvine.gamespot.com/devils-reign-superior-four-2/4000-907439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908241/","id":908241,"name":"Expulsion, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-academy-12-expulsion-part-2/4000-908241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908687/","id":908687,"name":"Farewell, My Space Friends","site_detail_url":"https://comicvine.gamespot.com/iron-man-17-farewell-my-space-friends/4000-908687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908798/","id":908798,"name":"Sins of the Father","site_detail_url":"https://comicvine.gamespot.com/aquamen-1-sins-of-the-father/4000-908798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908702/","id":908702,"name":"The Humanity Agenda, Part 2: Where is Thy Sting?","site_detail_url":"https://comicvine.gamespot.com/ben-reilly-spider-man-2-the-humanity-agenda-part-2/4000-908702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908699/","id":908699,"name":null,"site_detail_url":"https://comicvine.gamespot.com/silk-2/4000-908699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908676/","id":908676,"name":"Do Or Die","site_detail_url":"https://comicvine.gamespot.com/x-deaths-of-wolverine-3-do-or-die/4000-908676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909677/","id":909677,"name":"Truth & Consequences","site_detail_url":"https://comicvine.gamespot.com/devils-reign-x-men-2-truth-and-consequences/4000-909677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-932627/","id":932627,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-14-volume-14/4000-932627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912772/","id":912772,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/excalibur-epic-collection-the-battle-for-britain-1/4000-912772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912061/","id":912061,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-meow-infinity-comic-2/4000-912061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911387/","id":911387,"name":"Vittime e carnefici","site_detail_url":"https://comicvine.gamespot.com/nick-raider-le-nuove-indagini-5-vittime-e-carnefic/4000-911387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911225/","id":911225,"name":"A Paddy's Day Yarn","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-infinity-comic-26-a-paddys-day-yar/4000-911225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910395/","id":910395,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-by-gerry-duggan-1-vol-1/4000-910395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910003/","id":910003,"name":"Small Bot, Big Dreams","site_detail_url":"https://comicvine.gamespot.com/spider-bot-infinity-comic-12-small-bot-big-dreams/4000-910003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-900388/","id":900388,"name":"Beyond Chapter Nine","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-83-beyond-chapter-nine/4000-900388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901342/","id":901342,"name":"Beyond Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-84-beyond-chapter-ten/4000-901342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902345/","id":902345,"name":"Goodbye, Gotham","site_detail_url":"https://comicvine.gamespot.com/i-am-batman-5-goodbye-gotham/4000-902345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902677/","id":902677,"name":"Beyond Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-85-beyond-chapter-eleven/4000-902677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902678/","id":902678,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-woman-without-fear-1/4000-902678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902682/","id":902682,"name":null,"site_detail_url":"https://comicvine.gamespot.com/devils-reign-superior-four-1/4000-902682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902708/","id":902708,"name":"The Next Big Thing Part 3","site_detail_url":"https://comicvine.gamespot.com/the-thing-3-the-next-big-thing-part-3/4000-902708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902704/","id":902704,"name":"The Devil Is In The Details","site_detail_url":"https://comicvine.gamespot.com/spider-woman-18-the-devil-is-in-the-details/4000-902704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903845/","id":903845,"name":"Beyond Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-86-beyond-chapter-twelve/4000-903845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903917/","id":903917,"name":null,"site_detail_url":"https://comicvine.gamespot.com/silk-1/4000-903917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903916/","id":903916,"name":null,"site_detail_url":"https://comicvine.gamespot.com/she-hulk-1/4000-903916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903913/","id":903913,"name":"Beyond","site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-34-beyond/4000-903913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903910/","id":903910,"name":"Secrets of the Past","site_detail_url":"https://comicvine.gamespot.com/devils-reign-x-men-1-secrets-of-the-past/4000-903910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903906/","id":903906,"name":"The Humanity Agenda, Part 1: Grief","site_detail_url":"https://comicvine.gamespot.com/ben-reilly-spider-man-1-the-humanity-agenda-part-1/4000-903906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904505/","id":904505,"name":"Expulsion, Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-academy-11-expulsion-part-1/4000-904505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904775/","id":904775,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/devils-reign-3-part-3/4000-904775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904770/","id":904770,"name":"Beyond Chapter Thirteen","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-87-beyond-chapter-thirteen/4000-904770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904764/","id":904764,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mary-jane-and-black-cat-beyond-1/4000-904764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904769/","id":904769,"name":"Time to Die","site_detail_url":"https://comicvine.gamespot.com/x-deaths-of-wolverine-1-time-to-die/4000-904769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904766/","id":904766,"name":"...I'll Sleep When They're Dead","site_detail_url":"https://comicvine.gamespot.com/devils-reign-winter-soldier-1-ill-sleep-when-theyr/4000-904766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904768/","id":904768,"name":"A New Horizon - Hellfire and Brimstone","site_detail_url":"https://comicvine.gamespot.com/marauders-annual-1-a-new-horizon-hellfire-and-brim/4000-904768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904776/","id":904776,"name":"Big Wheel Keep on Turnin'","site_detail_url":"https://comicvine.gamespot.com/iron-man-16-big-wheel-keep-on-turnin/4000-904776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920963/","id":920963,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-10-volume-10/4000-920963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921292/","id":921292,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/death-of-doctor-strange-companion-1-tpb/4000-921292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-931103/","id":931103,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-to-heaven-through-hell-2/4000-931103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909197/","id":909197,"name":"Volume 23","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-23-volum/4000-909197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908840/","id":908840,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/way-of-x-by-si-spurrier-1-vol-1/4000-908840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907547/","id":907547,"name":"School's Out","site_detail_url":"https://comicvine.gamespot.com/maniac-of-new-york-the-bronx-is-burning-3-schools-/4000-907547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-896105/","id":896105,"name":"An Earth Like Any Other (Just Like All the Rest); Avengers Mountain; The Two Worthies","site_detail_url":"https://comicvine.gamespot.com/avengers-50-an-earth-like-any-other-just-like-all-/4000-896105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897325/","id":897325,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/devils-reign-1-part-1/4000-897325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-899175/","id":899175,"name":"Horoscope, Part Two","site_detail_url":"https://comicvine.gamespot.com/moon-knight-6-horoscope-part-two/4000-899175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-899171/","id":899171,"name":"Beyond Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-82-beyond-chapter-eight/4000-899171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901360/","id":901360,"name":"Part Seven: \"Communing with the Smoke\"","site_detail_url":"https://comicvine.gamespot.com/the-marvels-7-part-seven-communing-with-the-smoke/4000-901360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904843/","id":904843,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-1-tpb/4000-904843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903928/","id":903928,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-8-volume-8/4000-903928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904190/","id":904190,"name":"A Dog Gone Adventure","site_detail_url":"https://comicvine.gamespot.com/spider-bot-infinity-comic-7-a-dog-gone-adventure/4000-904190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891952/","id":891952,"name":"Conduit Part 1","site_detail_url":"https://comicvine.gamespot.com/the-swamp-thing-9-conduit-part-1/4000-891952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-892245/","id":892245,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-death-of-doctor-strange-the-avengers-1/4000-892245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891953/","id":891953,"name":"Gorillas In Our Midst!","site_detail_url":"https://comicvine.gamespot.com/teen-titans-academy-7-gorillas-in-our-midst/4000-891953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894377/","id":894377,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-fantastic-four-anniversary-tribute-1/4000-894377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895336/","id":895336,"name":"Beyond Chapter Five","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-79-beyond-chapter-five/4000-895336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895902/","id":895902,"name":"The Worlds Outside Your Window","site_detail_url":"https://comicvine.gamespot.com/justice-league-incarnate-1-the-worlds-outside-your/4000-895902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917985/","id":917985,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shang-chi-shang-chi-vs-the-marvel-universe-1-tpb/4000-917985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929549/","id":929549,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/non-stop-spider-man-big-brain-play-1-tpb/4000-929549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-934709/","id":934709,"name":"Volume 23","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-23-volume-23/4000-934709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-947778/","id":947778,"name":"Volume 3: Back to Basics","site_detail_url":"https://comicvine.gamespot.com/spider-woman-back-to-basics-1-volume-3-back-to-bas/4000-947778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-900258/","id":900258,"name":"Volume 2: From Salome to Edgar Allan Poe to Silence of the Lambs","site_detail_url":"https://comicvine.gamespot.com/the-graphic-canon-of-crime-and-mystery-2-volume-2-/4000-900258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898704/","id":898704,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-epic-collection-the-circle-chase-1-volume/4000-898704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898443/","id":898443,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-the-red-carpet-collection-1-hc/4000-898443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898475/","id":898475,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-9/4000-898475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-888642/","id":888642,"name":"Beyond Chapter One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-75-beyond-chapter-one/4000-888642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-888644/","id":888644,"name":"The Last of the Marvels Part Two","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-33-the-last-of-the-marvels-part-two/4000-888644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889272/","id":889272,"name":"Omnizon","site_detail_url":"https://comicvine.gamespot.com/blue-and-gold-3-omnizon/4000-889272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889481/","id":889481,"name":"Vs. the Marvel Universe Part 5","site_detail_url":"https://comicvine.gamespot.com/shang-chi-5-vs-the-marvel-universe-part-5/4000-889481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889482/","id":889482,"name":null,"site_detail_url":"https://comicvine.gamespot.com/symbiote-spider-man-crossroads-4/4000-889482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889466/","id":889466,"name":"Fearless, Chapter Four: \"Nightmare On 86th Street\"","site_detail_url":"https://comicvine.gamespot.com/x-men-4-fearless-chapter-four-nightmare-on-86th-st/4000-889466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-890038/","id":890038,"name":"Towards the Pebbled Shore","site_detail_url":"https://comicvine.gamespot.com/shazam-4-towards-the-pebbled-shore/4000-890038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891570/","id":891570,"name":"Lockdown Part 5","site_detail_url":"https://comicvine.gamespot.com/daredevil-35-lockdown-part-5/4000-891570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891571/","id":891571,"name":"The Last Drop","site_detail_url":"https://comicvine.gamespot.com/the-darkhold-blade-1-the-last-drop/4000-891571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904934/","id":904934,"name":"The Graphic Novel by Cecil","site_detail_url":"https://comicvine.gamespot.com/cash-grab-1-the-graphic-novel-by-cecil/4000-904934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912060/","id":912060,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/animosity-omnibus-1-hc/4000-912060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-915422/","id":915422,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/champions-killer-app-1-volume-2/4000-915422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-919521/","id":919521,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-reborn-time-after-tim/4000-919521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895781/","id":895781,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-i-magneto-1-volume-8/4000-895781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895705/","id":895705,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-6-volume-6/4000-895705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894406/","id":894406,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-5-volume-5/4000-894406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894365/","id":894365,"name":"Chapter 1: Heroes & Villains","site_detail_url":"https://comicvine.gamespot.com/we-only-kill-each-other-1-chapter-1-heroes-and-vil/4000-894365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882887/","id":882887,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-fallout-4-facsimile-edition-1/4000-882887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882900/","id":882900,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-ages-1/4000-882900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882902/","id":882902,"name":"Conclusion","site_detail_url":"https://comicvine.gamespot.com/sinister-war-4-conclusion/4000-882902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883728/","id":883728,"name":"Pink Slip","site_detail_url":"https://comicvine.gamespot.com/blue-and-gold-2-pink-slip/4000-883728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884103/","id":884103,"name":"Chapter Twenty-Four: The Defilement of All Things By the Cannibal-Sorcerer Kulan Gath Part One","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-24-chapter-twenty-four-the-defilem/4000-884103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884104/","id":884104,"name":"Vs. the Marvel Universe Part 4","site_detail_url":"https://comicvine.gamespot.com/shang-chi-4-vs-the-marvel-universe-part-4/4000-884104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884863/","id":884863,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastic-four-35/4000-884863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884898/","id":884898,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-mighty-valkyries-5/4000-884898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-886372/","id":886372,"name":null,"site_detail_url":"https://comicvine.gamespot.com/icon-and-rocket-season-one-3/4000-886372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-886944/","id":886944,"name":" What Cost Victory?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-74-what-cost-victory/4000-886944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894372/","id":894372,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-8/4000-894372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893749/","id":893749,"name":"The History of Science Fiction: A Graphic Novel Adventure","site_detail_url":"https://comicvine.gamespot.com/the-history-of-science-fiction-1-the-history-of-sc/4000-893749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-907736/","id":907736,"name":"Trent'anni dopo","site_detail_url":"https://comicvine.gamespot.com/nick-raider-le-nuove-indagini-1-trentanni-dopo/4000-907736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910895/","id":910895,"name":"Volume 26","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-taking-aim-1-volume-26/4000-910895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912845/","id":912845,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/immortal-hulk-4-volume-4/4000-912845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914438/","id":914438,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/justice-league-endless-winter-1-hc/4000-914438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-885604/","id":885604,"name":"Fearless, Chapter Three: \"Problematic Fan\"","site_detail_url":"https://comicvine.gamespot.com/x-men-3-fearless-chapter-three-problematic-fan/4000-885604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-935252/","id":935252,"name":null,"site_detail_url":"https://comicvine.gamespot.com/sinister-war-1/4000-935252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891684/","id":891684,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/maniac-of-new-york-the-death-train-1-volume-1/4000-891684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-890908/","id":890908,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/why-is-everybody-yelling-growing-up-in-my-immigran/4000-890908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891280/","id":891280,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spine-tingling-spider-man-infinity-comic-1/4000-891280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-890874/","id":890874,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bettie-page-and-the-curse-of-the-banshee-5/4000-890874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-890115/","id":890115,"name":"The Big Night","site_detail_url":"https://comicvine.gamespot.com/creatures-2-the-big-night/4000-890115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889915/","id":889915,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/with-great-power-the-marvelous-stan-lee-1-hc/4000-889915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-877060/","id":877060,"name":"Fearless, Chapter Two: \"Catching the Wave\"","site_detail_url":"https://comicvine.gamespot.com/x-men-2-fearless-chapter-two-catching-the-wave/4000-877060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878795/","id":878795,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-tech-on-1/4000-878795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878824/","id":878824,"name":"The '80s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-3-the-80s/4000-878824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882074/","id":882074,"name":null,"site_detail_url":"https://comicvine.gamespot.com/extreme-carnage-riot-1/4000-882074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882075/","id":882075,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-voices-identity-1/4000-882075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882080/","id":882080,"name":"Revelations Part Two of Three","site_detail_url":"https://comicvine.gamespot.com/thor-16-revelations-part-two-of-three/4000-882080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884408/","id":884408,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/spider-ham-great-power-no-responsibility-1-gn/4000-884408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891723/","id":891723,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tarot-witch-of-the-black-rose-130/4000-891723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891761/","id":891761,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/tiny-dancer-1-gn/4000-891761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891754/","id":891754,"name":"Volume Two: The Pillars of Civilization","site_detail_url":"https://comicvine.gamespot.com/sapiens-a-graphic-history-2-volume-two-the-pillars/4000-891754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921309/","id":921309,"name":"Das Tor der Ewigkeit","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-7-das-tor-der-ewigkeit/4000-921309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-886118/","id":886118,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/lugosi-the-rise-and-fall-of-hollywoods-dracula-1-g/4000-886118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-885590/","id":885590,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-6/4000-885590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884063/","id":884063,"name":null,"site_detail_url":"https://comicvine.gamespot.com/911-20th-anniversary-tribute-the-four-fives-1/4000-884063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883355/","id":883355,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-epic-collection-the-vampiric-verses/4000-883355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-868608/","id":868608,"name":"Reinforcements","site_detail_url":"https://comicvine.gamespot.com/children-of-the-atom-5-reinforcements/4000-868608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-871569/","id":871569,"name":"Heirs and Graces","site_detail_url":"https://comicvine.gamespot.com/way-of-x-4-heirs-and-graces/4000-871569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-871609/","id":871609,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-woman-13/4000-871609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-872343/","id":872343,"name":"Application Denied","site_detail_url":"https://comicvine.gamespot.com/blue-and-gold-1-application-denied/4000-872343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-872357/","id":872357,"name":"A Fault To Heaven","site_detail_url":"https://comicvine.gamespot.com/shazam-1-a-fault-to-heaven/4000-872357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-872880/","id":872880,"name":null,"site_detail_url":"https://comicvine.gamespot.com/extreme-carnage-phage-1/4000-872880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-874641/","id":874641,"name":"Lockdown Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-32-lockdown-part-2/4000-874641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-874700/","id":874700,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-mighty-valkyries-4/4000-874700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-874726/","id":874726,"name":"Vs. the Marvel Universe Part 3","site_detail_url":"https://comicvine.gamespot.com/shang-chi-3-vs-the-marvel-universe-part-3/4000-874726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-874642/","id":874642,"name":"Only Death Is Eternal, Finale","site_detail_url":"https://comicvine.gamespot.com/eternals-6-only-death-is-eternal-finale/4000-874642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-867843/","id":867843,"name":"Survivor Bomb","site_detail_url":"https://comicvine.gamespot.com/the-swamp-thing-5-survivor-bomb/4000-867843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-886981/","id":886981,"name":null,"site_detail_url":"https://comicvine.gamespot.com/adventureman-5/4000-886981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-887022/","id":887022,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-yearbook-reprint-3/4000-887022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914885/","id":914885,"name":"Düstere Zukunft","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-5-dustere-zukunft/4000-914885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-881417/","id":881417,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-of-heart-1-tpb/4000-881417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-881223/","id":881223,"name":null,"site_detail_url":"https://comicvine.gamespot.com/september-11-2001-the-day-the-world-changed-foreve/4000-881223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-879235/","id":879235,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/big-apple-diaries-1-gn/4000-879235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878871/","id":878871,"name":"Legacy Part Five","site_detail_url":"https://comicvine.gamespot.com/bitter-root-15-legacy-part-five/4000-878871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-877793/","id":877793,"name":"I Survived the Attacks of September 11, 2001","site_detail_url":"https://comicvine.gamespot.com/i-survived-4-i-survived-the-attacks-of-september-1/4000-877793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-877842/","id":877842,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/in-the-shadow-of-the-fallen-towers-the-seconds-min/4000-877842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857597/","id":857597,"name":"You Are Cordially Invited To the Hellfire Gala; Out With the Old A Tale of Hellfire Gala Past","site_detail_url":"https://comicvine.gamespot.com/marauders-21-you-are-cordially-invited-to-the-hell/4000-857597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857654/","id":857654,"name":"Chaotic Terrain","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-47-chaotic-terrain/4000-857654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857657/","id":857657,"name":"Big Brain Play Part Three","site_detail_url":"https://comicvine.gamespot.com/non-stop-spider-man-3-big-brain-play-part-three/4000-857657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-861678/","id":861678,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-mighty-valkyries-3/4000-861678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-861680/","id":861680,"name":"[Untitled]; Mini Marvels","site_detail_url":"https://comicvine.gamespot.com/venom-35-untitled-mini-marvels/4000-861680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863925/","id":863925,"name":"Strange Magic Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-29-strange-magic-part-2-of-3/4000-863925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863926/","id":863926,"name":"The '70s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-2-the-70s/4000-863926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863929/","id":863929,"name":"The Man Who Rebooted the World","site_detail_url":"https://comicvine.gamespot.com/heroes-return-1-the-man-who-rebooted-the-world/4000-863929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863930/","id":863930,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-voices-pride-1/4000-863930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-866594/","id":866594,"name":"Only Death Is Eternal, Part 5","site_detail_url":"https://comicvine.gamespot.com/eternals-5-only-death-is-eternal-part-5/4000-866594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884208/","id":884208,"name":null,"site_detail_url":"https://comicvine.gamespot.com/11-de-septiembre-de-2001-el-dia-que-cambio-el-mund/4000-884208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873375/","id":873375,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-comic-book-history-of-animation-true-toon-tale/4000-873375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873227/","id":873227,"name":"The Marj Who Fell To Earth","site_detail_url":"https://comicvine.gamespot.com/marjorie-finnegan-temporal-criminal-3-the-marj-who/4000-873227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848269/","id":848269,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dc-festival-of-heroes-the-asian-superhero-celebrat/4000-848269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848847/","id":848847,"name":"The Gilded City Part 2","site_detail_url":"https://comicvine.gamespot.com/black-cat-6-the-gilded-city-part-2/4000-848847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848849/","id":848849,"name":"Bride of Doom, Part 1: Rules of Engagement; Duel Intentions","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-32-bride-of-doom-part-1-rules-of-en/4000-848849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-848857/","id":848857,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-woman-12/4000-848857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851302/","id":851302,"name":"Tangled Web","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-66-tangled-web/4000-851302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851304/","id":851304,"name":"All Die Young: Part X","site_detail_url":"https://comicvine.gamespot.com/captain-america-29-all-die-young-part-x/4000-851304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851307/","id":851307,"name":"The '60s","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-life-story-1-the-60s/4000-851307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851312/","id":851312,"name":"Vs. the Marvel Universe Part 1","site_detail_url":"https://comicvine.gamespot.com/shang-chi-1-vs-the-marvel-universe-part-1/4000-851312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851310/","id":851310,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-mighty-valkyries-2/4000-851310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-859774/","id":859774,"name":"Wrap?; Epilogue","site_detail_url":"https://comicvine.gamespot.com/the-visitor-6-wrap-epilogue/4000-859774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-853399/","id":853399,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-the-source-of-freedom-1-part-one/4000-853399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-876194/","id":876194,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/king-in-black-thunderbolts-1-tpb/4000-876194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883375/","id":883375,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/providence-compendium-1-sc/4000-883375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906126/","id":906126,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-york-cannibals-1/4000-906126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864432/","id":864432,"name":"Legacy Part Four","site_detail_url":"https://comicvine.gamespot.com/bitter-root-14-legacy-part-four/4000-864432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864577/","id":864577,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-13-volume-13/4000-864577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-861983/","id":861983,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/chastity-blood-and-consequences-1-volume-2/4000-861983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862014/","id":862014,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-15-volume-15/4000-862014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862015/","id":862015,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/power-pack-the-powers-that-be-1-tpb/4000-862015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858791/","id":858791,"name":null,"site_detail_url":"https://comicvine.gamespot.com/eve-2/4000-858791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858767/","id":858767,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/history-comics-the-american-bison-the-buffalos-sur/4000-858767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858700/","id":858700,"name":"End of the Line","site_detail_url":"https://comicvine.gamespot.com/maniac-of-new-york-5-end-of-the-line/4000-858700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857520/","id":857520,"name":"Why?","site_detail_url":"https://comicvine.gamespot.com/the-visitor-5-why/4000-857520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857560/","id":857560,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-pride-omnibus-1-tpb/4000-857560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-841719/","id":841719,"name":"Becoming Part 2","site_detail_url":"https://comicvine.gamespot.com/the-swamp-thing-2-becoming-part-2/4000-841719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842200/","id":842200,"name":"Enter the Phoenix Part Five: I Am...Phoenix!","site_detail_url":"https://comicvine.gamespot.com/avengers-44-enter-the-phoenix-part-five-i-amphoeni/4000-842200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842204/","id":842204,"name":"Chapter Five: Dawn","site_detail_url":"https://comicvine.gamespot.com/king-in-black-5-chapter-five-dawn/4000-842204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844966/","id":844966,"name":"The King In Blood","site_detail_url":"https://comicvine.gamespot.com/avengers-45-the-king-in-blood/4000-844966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844968/","id":844968,"name":"Strange Magic Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-28-strange-magic-part-1-of-3/4000-844968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844970/","id":844970,"name":"Killer App Part One","site_detail_url":"https://comicvine.gamespot.com/champions-6-killer-app-part-one/4000-844970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844971/","id":844971,"name":"Only Death Is Eternal, Part 4","site_detail_url":"https://comicvine.gamespot.com/eternals-4-only-death-is-eternal-part-4/4000-844971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844972/","id":844972,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-mighty-valkyries-1/4000-844972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844974/","id":844974,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-woman-11/4000-844974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844976/","id":844976,"name":null,"site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-1/4000-844976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846090/","id":846090,"name":"Chapter Twenty: \"The Clothes Do Not Maketh the Spider-Man\"","site_detail_url":"https://comicvine.gamespot.com/savage-avengers-20-chapter-twenty-the-clothes-do-n/4000-846090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842968/","id":842968,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-the-spiders-shadow-1/4000-842968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-865985/","id":865985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/darling-1/4000-865985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-866278/","id":866278,"name":null,"site_detail_url":"https://comicvine.gamespot.com/godzilla-rivals-vs-hedorah-1/4000-866278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873337/","id":873337,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-13/4000-873337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-875459/","id":875459,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-annual-1/4000-875459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-865937/","id":865937,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spawn-319/4000-865937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891213/","id":891213,"name":"Bora et Leap","site_detail_url":"https://comicvine.gamespot.com/les-geants-3-bora-et-leap/4000-891213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-855637/","id":855637,"name":"Legacy, Part Three","site_detail_url":"https://comicvine.gamespot.com/bitter-root-13-legacy-part-three/4000-855637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-852414/","id":852414,"name":"Part 3: Fight or Flight","site_detail_url":"https://comicvine.gamespot.com/tmnt-the-last-ronin-3-part-3-fight-or-flight/4000-852414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-850454/","id":850454,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ninjak-the-7th-dragon-1/4000-850454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-849832/","id":849832,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tmnt-best-of-splinter-1/4000-849832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-849111/","id":849111,"name":"My Brother Is A Kind of Shadow","site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-secret-files-3-my-brother-is-a-k/4000-849111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846949/","id":846949,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-till-death-do-they-part-1-/4000-846949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-831250/","id":831250,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinite-frontier-0/4000-831250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836299/","id":836299,"name":"Are You Okay?","site_detail_url":"https://comicvine.gamespot.com/daredevil-28-are-you-okay/4000-836299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836301/","id":836301,"name":"Only Death Is Eternal, Part 3","site_detail_url":"https://comicvine.gamespot.com/eternals-3-only-death-is-eternal-part-3/4000-836301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836302/","id":836302,"name":"To Rule In Hell","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-44-to-rule-in-hell/4000-836302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-838566/","id":838566,"name":null,"site_detail_url":"https://comicvine.gamespot.com/black-knight-curse-of-the-ebony-blade-1/4000-838566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-838588/","id":838588,"name":"Mistakes Were Made","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-27-mistakes-were-made/4000-838588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839423/","id":839423,"name":"Ruins; Reckoning!","site_detail_url":"https://comicvine.gamespot.com/future-state-teen-titans-ruins-1-ruins-reckoning/4000-839423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839788/","id":839788,"name":"Wag the Gog","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-62-wag-the-gog/4000-839788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840956/","id":840956,"name":null,"site_detail_url":"https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries-4/4000-840956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840957/","id":840957,"name":null,"site_detail_url":"https://comicvine.gamespot.com/silk-1/4000-840957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864360/","id":864360,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/american-cult-a-graphic-history-of-religious-cults/4000-864360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-832862/","id":832862,"name":"Funny Games Part II: Hitbox","site_detail_url":"https://comicvine.gamespot.com/hellions-10-funny-games-part-ii-hitbox/4000-832862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-845162/","id":845162,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-omnibus-1-volume-1/4000-845162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844823/","id":844823,"name":"The Mirror Wall","site_detail_url":"https://comicvine.gamespot.com/the-girls-of-dimension-13-1-the-mirror-wall/4000-844823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843374/","id":843374,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-menavengers-onslaught-3-volume-3/4000-843374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843382/","id":843382,"name":null,"site_detail_url":"https://comicvine.gamespot.com/locust-1/4000-843382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842633/","id":842633,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-a-death-in-the-family-the-deluxe-edition-1-/4000-842633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827514/","id":827514,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-101-facsimile-edition-1/4000-827514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827522/","id":827522,"name":"Funny Games: Level 1","site_detail_url":"https://comicvine.gamespot.com/hellions-9-funny-games-level-1/4000-827522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827523/","id":827523,"name":"We're the Good Guys","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-43-were-the-good-guys/4000-827523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827527/","id":827527,"name":null,"site_detail_url":"https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries-2/4000-827527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827779/","id":827779,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dc-love-is-a-battlefield-1/4000-827779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827769/","id":827769,"name":"Reckoning!","site_detail_url":"https://comicvine.gamespot.com/future-state-teen-titans-2-reckoning/4000-827769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828189/","id":828189,"name":"The Black Kitchen Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-27-the-black-kitchen-part-2/4000-828189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828190/","id":828190,"name":"Only Death Is Eternal, Part 2","site_detail_url":"https://comicvine.gamespot.com/eternals-2-only-death-is-eternal-part-2/4000-828190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828193/","id":828193,"name":"Cathexis","site_detail_url":"https://comicvine.gamespot.com/king-in-black-black-panther-1-cathexis/4000-828193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828565/","id":828565,"name":"Devil's Due","site_detail_url":"https://comicvine.gamespot.com/future-state-shazam-2-devils-due/4000-828565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828857/","id":828857,"name":"Chapter Four: Lightning","site_detail_url":"https://comicvine.gamespot.com/king-in-black-4-chapter-four-lightning/4000-828857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828860/","id":828860,"name":"Saving Face","site_detail_url":"https://comicvine.gamespot.com/marauders-18-saving-face/4000-828860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828865/","id":828865,"name":"Prey Part Four of Six","site_detail_url":"https://comicvine.gamespot.com/thor-12-prey-part-four-of-six/4000-828865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-830024/","id":830024,"name":"The New World Conclusion","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-26-the-new-world-conclusion/4000-830024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-830027/","id":830027,"name":null,"site_detail_url":"https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries-3/4000-830027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846245/","id":846245,"name":"The Beginning","site_detail_url":"https://comicvine.gamespot.com/john-carpenters-tales-of-science-fiction-hell-1-th/4000-846245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-847438/","id":847438,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-2-volum/4000-847438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914884/","id":914884,"name":"Die Anklägerin","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-4-die-anklagerin/4000-914884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840025/","id":840025,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/green-arrow-80-years-of-the-emerald-archer-the-del/4000-840025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839825/","id":839825,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-omnibus-1-hc/4000-839825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839675/","id":839675,"name":"The Well, Part 1","site_detail_url":"https://comicvine.gamespot.com/moonshine-23-the-well-part-1/4000-839675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839156/","id":839156,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/juggernaut-no-stopping-now-1-tpb/4000-839156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839159/","id":839159,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/tony-stark-iron-man-by-dan-slott-omnibus-1-hc/4000-839159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-838051/","id":838051,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tmnt-the-last-ronin-1-directors-cut-1/4000-838051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836231/","id":836231,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-lives-of-the-fabulous-killjoys-national-anthe/4000-836231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836237/","id":836237,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/post-york-1-gn/4000-836237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-835980/","id":835980,"name":"Small Prices","site_detail_url":"https://comicvine.gamespot.com/maniac-of-new-york-2-small-prices/4000-835980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836005/","id":836005,"name":"One Last Shot Part 3; The Hunter","site_detail_url":"https://comicvine.gamespot.com/bloodshot-12-one-last-shot-part-3-the-hunter/4000-836005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-834424/","id":834424,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/red-hood-outlaw-unspoken-truths-1-volume-4/4000-834424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824015/","id":824015,"name":null,"site_detail_url":"https://comicvine.gamespot.com/captain-america-117-facsimile-edition-1/4000-824015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824024/","id":824024,"name":"Only Death Is Eternal, Part 1","site_detail_url":"https://comicvine.gamespot.com/eternals-1-only-death-is-eternal-part-1/4000-824024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824032/","id":824032,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-woman-8/4000-824032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824447/","id":824447,"name":null,"site_detail_url":"https://comicvine.gamespot.com/chris-claremont-anniversary-special-1/4000-824447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824451/","id":824451,"name":null,"site_detail_url":"https://comicvine.gamespot.com/king-in-black-thunderbolts-1/4000-824451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824453/","id":824453,"name":"In the Dark","site_detail_url":"https://comicvine.gamespot.com/sword-2-in-the-dark/4000-824453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825504/","id":825504,"name":"Queen In Black Part Two","site_detail_url":"https://comicvine.gamespot.com/black-cat-2-queen-in-black-part-two/4000-825504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840859/","id":840859,"name":"Book 9","site_detail_url":"https://comicvine.gamespot.com/the-usagi-yojimbo-saga-9-book-9/4000-840859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840898/","id":840898,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-1/4000-840898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-841317/","id":841317,"name":null,"site_detail_url":"https://comicvine.gamespot.com/life-under-kaiju-1/4000-841317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846028/","id":846028,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-reborn-life-after-dea/4000-846028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846010/","id":846010,"name":"Part Five: Anime Conquers the World!","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-animation-5-part-five-anime-/4000-846010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-829854/","id":829854,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-complete-darkness-1-volume-one/4000-829854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-829623/","id":829623,"name":"One Last Shot Part 2","site_detail_url":"https://comicvine.gamespot.com/bloodshot-11-one-last-shot-part-2/4000-829623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-829291/","id":829291,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-compendium-2-book-two/4000-829291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828995/","id":828995,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/silk-out-of-the-spider-verse-1-volume-1/4000-828995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828827/","id":828827,"name":"Part 2: First To Fall","site_detail_url":"https://comicvine.gamespot.com/tmnt-the-last-ronin-2-part-2-first-to-fall/4000-828827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828310/","id":828310,"name":"Interstellar Book Two: 1969","site_detail_url":"https://comicvine.gamespot.com/vampirella-17-interstellar-book-two-1969/4000-828310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827759/","id":827759,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-circle-of-fire-1-tpb/4000-827759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827689/","id":827689,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/luke-cage-epic-collection-retribution-1-volume-1/4000-827689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827598/","id":827598,"name":"Redemption","site_detail_url":"https://comicvine.gamespot.com/tmnt-jennika-ii-4-redemption/4000-827598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827457/","id":827457,"name":"Heads In the Sand","site_detail_url":"https://comicvine.gamespot.com/maniac-of-new-york-1-heads-in-the-sand/4000-827457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820392/","id":820392,"name":"Part Three: \"Beneath the Greenhouse...\"","site_detail_url":"https://comicvine.gamespot.com/american-vampire-1976-3-part-three-beneath-the-gre/4000-820392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820433/","id":820433,"name":"Endless Winter Chapter 2: Lightning Strikes","site_detail_url":"https://comicvine.gamespot.com/the-flash-767-endless-winter-chapter-2-lightning-s/4000-820433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821195/","id":821195,"name":"Endless Winter Chapter 6","site_detail_url":"https://comicvine.gamespot.com/teen-titans-endless-winter-special-1-endless-winte/4000-821195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821496/","id":821496,"name":"The Man With the Golden Arms","site_detail_url":"https://comicvine.gamespot.com/iron-man-4-the-man-with-the-golden-arms/4000-821496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823036/","id":823036,"name":"Finale","site_detail_url":"https://comicvine.gamespot.com/justice-league-endless-winter-2-finale/4000-823036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-832394/","id":832394,"name":"Part Four: Saturday Morning Funhouse","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-animation-4-part-four-saturd/4000-832394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826461/","id":826461,"name":null,"site_detail_url":"https://comicvine.gamespot.com/brooklyn-gladiator-4/4000-826461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826395/","id":826395,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-4/4000-826395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825577/","id":825577,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-113/4000-825577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825578/","id":825578,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/tmnt-jennika-ii-3-monsters/4000-825578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825436/","id":825436,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/eternals-cosmic-origins-1-sc/4000-825436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825199/","id":825199,"name":"The City That Never Sleeps","site_detail_url":"https://comicvine.gamespot.com/creatures-1-the-city-that-never-sleeps/4000-825199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825110/","id":825110,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-great-gatsby-a-graphic-novel-adaptation-1-gn/4000-825110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824368/","id":824368,"name":"One Last Shot Part 1","site_detail_url":"https://comicvine.gamespot.com/bloodshot-10-one-last-shot-part-1/4000-824368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824261/","id":824261,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/100-bullets-omnibus-1-volume-one/4000-824261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824137/","id":824137,"name":"Enter the Id","site_detail_url":"https://comicvine.gamespot.com/the-digital-pools-1-enter-the-id/4000-824137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824016/","id":824016,"name":null,"site_detail_url":"https://comicvine.gamespot.com/eternals-never-die-never-win-behind-the-scenes-edi/4000-824016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816423/","id":816423,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-black-knight-1/4000-816423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816425/","id":816425,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-57-facsimile-edition-1/4000-816425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816463/","id":816463,"name":"The Fly That Laid A Billion Maggots","site_detail_url":"https://comicvine.gamespot.com/avengers-38-the-fly-that-laid-a-billion-maggots/4000-816463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816465/","id":816465,"name":"The New World Part Two","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-23-the-new-world-part-two/4000-816465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817444/","id":817444,"name":"Part Two: \"The Stuff of Legends\"","site_detail_url":"https://comicvine.gamespot.com/american-vampire-1976-2-part-two-the-stuff-of-lege/4000-817444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817698/","id":817698,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-black-panther-1/4000-817698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817699/","id":817699,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-valkyrie-1/4000-817699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817708/","id":817708,"name":"Last Remains Part Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-52-last-remains-part-three/4000-817708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817711/","id":817711,"name":"The Land Wherein Thou Art A Stranger","site_detail_url":"https://comicvine.gamespot.com/iron-man-3-the-land-wherein-thou-art-a-stranger/4000-817711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818628/","id":818628,"name":"Freshman","site_detail_url":"https://comicvine.gamespot.com/teen-titans-47-freshman/4000-818628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819116/","id":819116,"name":"Heart Rate","site_detail_url":"https://comicvine.gamespot.com/avengers-marvels-snapshots-1-heart-rate/4000-819116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819120/","id":819120,"name":"Stuck In the Past","site_detail_url":"https://comicvine.gamespot.com/juggernaut-3-stuck-in-the-past/4000-819120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819126/","id":819126,"name":null,"site_detail_url":"https://comicvine.gamespot.com/widowmakers-red-guardian-and-yelena-belova-1/4000-819126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819488/","id":819488,"name":null,"site_detail_url":"https://comicvine.gamespot.com/power-pack-1/4000-819488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819496/","id":819496,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-black-cat-1/4000-819496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819497/","id":819497,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-franklin-richards-1/4000-819497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819498/","id":819498,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-iron-mandoctor-doom-1/4000-819498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819122/","id":819122,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-woman-6/4000-819122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828287/","id":828287,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-12/4000-828287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-832852/","id":832852,"name":"Look At Meme Now! Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/marvel-action-captain-marvel-1-look-at-meme-now-pa/4000-832852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846078/","id":846078,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-origins-2/4000-846078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827594/","id":827594,"name":"Part Three: Cartoon Cool","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-animation-3-part-three-carto/4000-827594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873892/","id":873892,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/lives-of-the-great-occultists-1-gn/4000-873892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-822280/","id":822280,"name":"Part Two: Looney Studios!","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-animation-2-part-two-looney-/4000-822280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821999/","id":821999,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-1-tpb/4000-821999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-822000/","id":822000,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-3/4000-822000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821726/","id":821726,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-authority-1-book-one/4000-821726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821559/","id":821559,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-omnibus-1-volume-1/4000-821559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820671/","id":820671,"name":"Il calzolaio del re","site_detail_url":"https://comicvine.gamespot.com/le-storie-99-il-calzolaio-del-re/4000-820671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820309/","id":820309,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/superman-vs-wonder-woman-tabloid-edition-1-hc/4000-820309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820100/","id":820100,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-eternals-the-complete-saga-omnibus-1-hc/4000-820100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-806762/","id":806762,"name":"Part One: \"Don't look behind you!\"","site_detail_url":"https://comicvine.gamespot.com/american-vampire-1976-1-part-one-dont-look-behind-/4000-806762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807566/","id":807566,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-49/4000-807566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807606/","id":807606,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-black-widow-and-daredevil-1/4000-807606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807607/","id":807607,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-black-widow-red-guardian-1/4000-807607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-810726/","id":810726,"name":"The New World Part One","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-22-the-new-world-part-one/4000-810726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-810739/","id":810739,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-black-widow-and-the-amazing-spider-/4000-810739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-813276/","id":813276,"name":"Fallen Order","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-50lr-fallen-order/4000-813276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814050/","id":814050,"name":"Turn the Lights Off On Your Way Out","site_detail_url":"https://comicvine.gamespot.com/red-hood-outlaw-50-turn-the-lights-off-on-your-way/4000-814050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814478/","id":814478,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-black-widow-yelena-belova-1/4000-814478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819495/","id":819495,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-2/4000-819495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819323/","id":819323,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition-1-hc/4000-819323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819148/","id":819148,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/cable-by-gerry-duggan-1-volume-1/4000-819148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819057/","id":819057,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-darkness-1-25th-anniversary-commemorative-edit/4000-819057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818826/","id":818826,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-stars-of-history-marilyn-monroe-1/4000-818826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816734/","id":816734,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-sins-rising-1-v/4000-816734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816786/","id":816786,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thor-by-donny-cates-the-devourer-king-1-volume-1/4000-816786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816304/","id":816304,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/tmnt-jennika-ii-1-monsters/4000-816304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-815929/","id":815929,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-2020-holiday-pinup-special-1-unt/4000-815929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797241/","id":797241,"name":null,"site_detail_url":"https://comicvine.gamespot.com/empyre-6/4000-797241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797242/","id":797242,"name":"War Games","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-23-war-games/4000-797242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797272/","id":797272,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-nanny-and-orphan-maker-1/4000-797272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797979/","id":797979,"name":"Accused Part Four","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-21-accused-part-four/4000-797979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797985/","id":797985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/web-of-venom-wraith-1/4000-797985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799944/","id":799944,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-sins-of-norman-osborn-1/4000-799944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799952/","id":799952,"name":"Rest Your Brains","site_detail_url":"https://comicvine.gamespot.com/iron-man-1-rest-your-brains/4000-799952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-805092/","id":805092,"name":null,"site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-tribute-to-wein-and-cockrum-1/4000-805092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820732/","id":820732,"name":"Part One: Silent...but Deadly","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-animation-1-part-one-silentb/4000-820732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797240/","id":797240,"name":"The Big Bang","site_detail_url":"https://comicvine.gamespot.com/cable-4-the-big-bang/4000-797240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814443/","id":814443,"name":"Part 1: Wish For Death","site_detail_url":"https://comicvine.gamespot.com/tmnt-the-last-ronin-1-part-1-wish-for-death/4000-814443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-813992/","id":813992,"name":"Volume One: The Birth of Humankind","site_detail_url":"https://comicvine.gamespot.com/sapiens-a-graphic-history-1-volume-one-the-birth-o/4000-813992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-813607/","id":813607,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-art-of-soul-1-hc/4000-813607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-813085/","id":813085,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/archie-and-katy-keene-1-tpb/4000-813085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-812512/","id":812512,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/fables-compendium-1-book-one/4000-812512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-810747/","id":810747,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-omnibus-1-hc/4000-810747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-809809/","id":809809,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-the-complete-collection-1-tpb/4000-809809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807307/","id":807307,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/kusama-the-graphic-novel-1-gn/4000-807307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791920/","id":791920,"name":"Sins Rising Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-46-sins-rising-part-two/4000-791920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791921/","id":791921,"name":"Accused Part Two","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-19-accused-part-two/4000-791921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791922/","id":791922,"name":null,"site_detail_url":"https://comicvine.gamespot.com/empyre-5/4000-791922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791923/","id":791923,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/empyre-avengers-2-untitled/4000-791923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794390/","id":794390,"name":"Cross Roads","site_detail_url":"https://comicvine.gamespot.com/teen-titans-44-cross-roads/4000-794390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-815515/","id":815515,"name":"Eras Gone By","site_detail_url":"https://comicvine.gamespot.com/zombie-dinosaurs-awakening-1-eras-gone-by/4000-815515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794935/","id":794935,"name":"Un'Ring","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men-4-unring/4000-794935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787352/","id":787352,"name":"The World","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-fantomex-1-the-world/4000-787352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803097/","id":803097,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangersteenage-mutant-ninja-t/4000-803097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803673/","id":803673,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian-the-original-marvel-years-omni/4000-803673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-802645/","id":802645,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-comic-book-story-of-basketball-a-fast-break-hi/4000-802645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799924/","id":799924,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/snow-day-for-groot-1-hc/4000-799924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799762/","id":799762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799912/","id":799912,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bigs-and-tiny-2/4000-799912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-798844/","id":798844,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/injustice-year-zero-6-chapter-six/4000-798844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797887/","id":797887,"name":null,"site_detail_url":"https://comicvine.gamespot.com/brooklyn-gladiator-2/4000-797887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797880/","id":797880,"name":"Chapter One: It's a Bird","site_detail_url":"https://comicvine.gamespot.com/represent-1-chapter-one-its-a-bird/4000-797880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797468/","id":797468,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-109/4000-797468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796921/","id":796921,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-art-of-drag-1-gn/4000-796921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797124/","id":797124,"name":"Prog 2197","site_detail_url":"https://comicvine.gamespot.com/2000-ad-2197-prog-2197/4000-797124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-778247/","id":778247,"name":"Chemical Reactions","site_detail_url":"https://comicvine.gamespot.com/metal-men-8-chemical-reactions/4000-778247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-779003/","id":779003,"name":"Game Night","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-17-game-night/4000-779003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781439/","id":781439,"name":"Welcome To the New World","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-4-welcome-to-the-new-world/4000-781439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784113/","id":784113,"name":"Archie and Katy Keene Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/archie-713-archie-and-katy-keene-part-4-of-4/4000-784113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784405/","id":784405,"name":"Sins Rising Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-45-sins-rising-part-one/4000-784405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796808/","id":796808,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-savage-velocity-1-vol-1/4000-796808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796823/","id":796823,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/witches-of-brooklyn-1-vol-1/4000-796823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-804972/","id":804972,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tmnt-best-of-raphael-1/4000-804972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-805269/","id":805269,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-end-of-hell-1-volume-4/4000-805269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-805299/","id":805299,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/venom-rex-marvel-select-1-hc/4000-805299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821406/","id":821406,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/invisible-men-the-trailblazing-black-artists-of-co/4000-821406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796728/","id":796728,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-reborn-from-the-ashes/4000-796728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-795948/","id":795948,"name":null,"site_detail_url":"https://comicvine.gamespot.com/brooklyn-gladiator-1/4000-795948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794929/","id":794929,"name":"Torment, Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-1-facsimile-edition-1-torment-part-1/4000-794929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794215/","id":794215,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/my-captain-america-a-granddaughters-memoir-of-a-le/4000-794215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794612/","id":794612,"name":"Changelings in the Big Apple","site_detail_url":"https://comicvine.gamespot.com/the-ancient-magus-bride-jack-flash-and-the-faerie-/4000-794612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-792567/","id":792567,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-snake-eyes-the-origin-/4000-792567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-788678/","id":788678,"name":null,"site_detail_url":"https://comicvine.gamespot.com/money-shot-7/4000-788678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787823/","id":787823,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-soviet-1-tpb/4000-787823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-769611/","id":769611,"name":"Broken","site_detail_url":"https://comicvine.gamespot.com/teen-titans-42-broken/4000-769611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796725/","id":796725,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/be-gay-do-comics-1-sc/4000-796725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784474/","id":784474,"name":null,"site_detail_url":"https://comicvine.gamespot.com/witchblade-25th-anniversary-commemorative-edition-/4000-784474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784469/","id":784469,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/pulp-1-ogn/4000-784469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-782153/","id":782153,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-25/4000-782153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781565/","id":781565,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/miles-morales-family-business-1-volume-3/4000-781565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-780940/","id":780940,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-eternals-by-jack-kirby-the-complete-collection/4000-780940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-780954/","id":780954,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/giant-1-gn/4000-780954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-780151/","id":780151,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-stars-of-history-charlie-chaplin-1/4000-780151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-779796/","id":779796,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-106/4000-779796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-776098/","id":776098,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-vault-of-heroes-captain-america-1-tpb/4000-776098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-775031/","id":775031,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-poster-book-1-sc/4000-775031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-774139/","id":774139,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/jack-kirby-the-epic-life-of-the-king-of-comics-1-g/4000-774139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-772885/","id":772885,"name":"Theodore Roosevelt!","site_detail_url":"https://comicvine.gamespot.com/action-presidents-3-theodore-roosevelt/4000-772885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763572/","id":763572,"name":"True Companions Part Three; The Sins of...","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-43-true-companions-part-thr/4000-763572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-771747/","id":771747,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/bix-1-gn/4000-771747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-772336/","id":772336,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hawkeye-freefall-6/4000-772336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784879/","id":784879,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tmnt-annual-2020-1/4000-784879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784894/","id":784894,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bigs-and-tiny-1/4000-784894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-788964/","id":788964,"name":"Transformation Is Magic; Shine Like A Diamond","site_detail_url":"https://comicvine.gamespot.com/my-little-ponytransformers-1-transformation-is-mag/4000-788964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791150/","id":791150,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/happiness-will-follow-1-gn/4000-791150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-810624/","id":810624,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-11/4000-810624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-790057/","id":790057,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/constitution-illustrated-1-gn/4000-790057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-770163/","id":770163,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-105/4000-770163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-770130/","id":770130,"name":null,"site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-3/4000-770130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768556/","id":768556,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangersteenage-mutant-ninja-t/4000-768556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768228/","id":768228,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/dceased-hope-at-worlds-end-3-chapter-three/4000-768228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768237/","id":768237,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-2-part-2/4000-768237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767854/","id":767854,"name":"Vol. 3: Heroes & Villains","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-omnibus-3-vol-3-heroes-and-vil/4000-767854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766406/","id":766406,"name":"Suffer the Children Part I","site_detail_url":"https://comicvine.gamespot.com/scream-curse-of-carnage-6-suffer-the-children-part/4000-766406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766046/","id":766046,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/windows-on-the-world-1-gn/4000-766046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766089/","id":766089,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-tempest-tossed-1-ogn/4000-766089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-778568/","id":778568,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-great-gatsby-the-graphic-novel-1-gn/4000-778568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914873/","id":914873,"name":"Sternfinsternis","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-2-sternfinsternis/4000-914873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763304/","id":763304,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hulk-vs-the-avengers-1/4000-763304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-762564/","id":762564,"name":"Around the Day in 80 Worlds","site_detail_url":"https://comicvine.gamespot.com/flash-fastest-man-alive-5-around-the-day-in-80-wor/4000-762564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-762412/","id":762412,"name":"Birth of A Dragon Part Four","site_detail_url":"https://comicvine.gamespot.com/star-4-birth-of-a-dragon-part-four/4000-762412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-760804/","id":760804,"name":null,"site_detail_url":"https://comicvine.gamespot.com/defenders-return-of-the-defenders-1/4000-760804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739549/","id":739549,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-empyre-mar-vell-1/4000-739549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739565/","id":739565,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-1/4000-739565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740531/","id":740531,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-batman-428-1/4000-740531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740768/","id":740768,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thor-229-facsimile-edition-1/4000-740768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740831/","id":740831,"name":"Venom Island Part IV","site_detail_url":"https://comicvine.gamespot.com/venom-24-venom-island-part-iv/4000-740831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741772/","id":741772,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-jla-1-1/4000-741772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741773/","id":741773,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-justice-league-1-1/4000-741773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742362/","id":742362,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-mary-jane-6/4000-742362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742377/","id":742377,"name":"[Untitled]; New Costume, Who Dis?","site_detail_url":"https://comicvine.gamespot.com/spider-woman-1-untitled-new-costume-who-dis/4000-742377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742379/","id":742379,"name":"At the End of All Things Part 2","site_detail_url":"https://comicvine.gamespot.com/valkyrie-jane-foster-9-at-the-end-of-all-things-pa/4000-742379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742375/","id":742375,"name":null,"site_detail_url":"https://comicvine.gamespot.com/outlawed-1/4000-742375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742465/","id":742465,"name":"Archie and Katy Keene Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/archie-712-archie-and-katy-keene-part-3-of-4/4000-742465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743292/","id":743292,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-justice-league-of-america-1-1/4000-743292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743441/","id":743441,"name":"The Thoughtful Man","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-33-the-thoughtful-man/4000-743441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743313/","id":743313,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/far-sector-5-chapter-five/4000-743313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-778968/","id":778968,"name":null,"site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2020-x-mendark-ages-1/4000-778968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781611/","id":781611,"name":"[Untitled Bloodshot prelude]; X-O Manowar: Unimaginable","site_detail_url":"https://comicvine.gamespot.com/valiant-the-year-of-heroes-fcbd-2020-special-1-unt/4000-781611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-751044/","id":751044,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/drawing-the-vote-an-illustrated-guide-to-voting-in/4000-751044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-748555/","id":748555,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-through-hell-1-volume-3/4000-748555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-748518/","id":748518,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/i-will-judge-you-by-your-bookshelf-1-gn/4000-748518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-745742/","id":745742,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/medicine-a-graphic-history-1-gn/4000-745742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-832962/","id":832962,"name":null,"site_detail_url":"https://comicvine.gamespot.com/im-netz-von-black-widow-1/4000-832962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-745369/","id":745369,"name":null,"site_detail_url":"https://comicvine.gamespot.com/genpet-1/4000-745369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736474/","id":736474,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-iron-man-2020-pepper-potts-1/4000-736474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736487/","id":736487,"name":"Through Hell Part 7","site_detail_url":"https://comicvine.gamespot.com/daredevil-17-through-hell-part-7/4000-736487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736489/","id":736489,"name":"Doctor Victor, Fruzsina & the Monster","site_detail_url":"https://comicvine.gamespot.com/doctor-doom-5-doctor-victor-fruzsina-and-the-monst/4000-736489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736493/","id":736493,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-hulk-1/4000-736493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736501/","id":736501,"name":"The Impossible Boy","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-1-the-impossible-boy/4000-736501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736982/","id":736982,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-green-lantern-rebirth-1-1/4000-736982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737155/","id":737155,"name":"Skin Deep","site_detail_url":"https://comicvine.gamespot.com/dr-strange-3-skin-deep/4000-737155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737163/","id":737163,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-x-2/4000-737163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737712/","id":737712,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-the-flash-rebirth-1-1/4000-737712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737713/","id":737713,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-the-new-teen-titans-2-1/4000-737713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737740/","id":737740,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-iron-man-2020-jocasta-1/4000-737740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738517/","id":738517,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dollar-comics-the-flash-1-1/4000-738517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738609/","id":738609,"name":null,"site_detail_url":"https://comicvine.gamespot.com/falcon-and-winter-soldier-1/4000-738609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738611/","id":738611,"name":"Hearts of Darkness II Part 1","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-5-hearts-of-darkness-ii-part-1/4000-738611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737764/","id":737764,"name":"At the End of All Things Part 1","site_detail_url":"https://comicvine.gamespot.com/valkyrie-jane-foster-8-at-the-end-of-all-things-pa/4000-737764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-758291/","id":758291,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/niegodny-thor-1-tpb/4000-758291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-772714/","id":772714,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-classic-avengers-starring-iron-man-1/4000-772714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791263/","id":791263,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/pollock-confidential-a-graphic-novel-1-hc/4000-791263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743820/","id":743820,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ta-nehisi-coates-the-legend-of-/4000-743820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743397/","id":743397,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-1/4000-743397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743208/","id":743208,"name":"The Cure For You; Wreckreation","site_detail_url":"https://comicvine.gamespot.com/tmnt-jennika-2-the-cure-for-you-wreckreation/4000-743208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742051/","id":742051,"name":null,"site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-2/4000-742051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742040/","id":742040,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangersteenage-mutant-ninja-t/4000-742040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742052/","id":742052,"name":"How?","site_detail_url":"https://comicvine.gamespot.com/the-visitor-4-how/4000-742052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742050/","id":742050,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/bloodshot-2-book-two/4000-742050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742026/","id":742026,"name":"Last Days, Conclusion","site_detail_url":"https://comicvine.gamespot.com/witchblade-18-last-days-conclusion/4000-742026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740684/","id":740684,"name":"Blue Baby","site_detail_url":"https://comicvine.gamespot.com/vampirellared-sonja-7-blue-baby/4000-740684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740721/","id":740721,"name":"Under Ground and Above the Law","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-vigilante-5-under-ground-and-above-the-/4000-740721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740253/","id":740253,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-vault-of-heroes-thor-1-tpb/4000-740253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740257/","id":740257,"name":"Vol. 23","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-city-at-war-part-2-1-/4000-740257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739613/","id":739613,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-1000-collection-1-hc/4000-739613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739467/","id":739467,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-action-captain-marvel-cosmic-cat-tastrophe-/4000-739467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739376/","id":739376,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-deluxe-edition-3-book-three/4000-739376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731968/","id":731968,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-criminally-insane-bullseye-1/4000-731968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731969/","id":731969,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-criminally-insane-green-goblin-/4000-731969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731973/","id":731973,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hawkeye-freefall-1/4000-731973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732694/","id":732694,"name":"Chapter One: Chosen; Sea Dogs Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/daphne-byrne-1-chapter-one-chosen-sea-dogs-chapter/4000-732694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732697/","id":732697,"name":"Breaking Dawn","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-and-poison-ivy-5-breaking-dawn/4000-732697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732870/","id":732870,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-criminally-insane-masters-of-evil-1/4000-732870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732873/","id":732873,"name":"Time, For A Change","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-37-time-for-a-change/4000-732873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732881/","id":732881,"name":"Eat or Be Eaten","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-29-eat-or-be-eaten/4000-732881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732885/","id":732885,"name":null,"site_detail_url":"https://comicvine.gamespot.com/miles-morales-the-end-1/4000-732885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732890/","id":732890,"name":"Birth of A Dragon Part One","site_detail_url":"https://comicvine.gamespot.com/star-1-birth-of-a-dragon-part-one/4000-732890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733825/","id":733825,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes-1/4000-733825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733822/","id":733822,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-2020-1/4000-733822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734634/","id":734634,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-criminally-insane-purple-man-1/4000-734634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735402/","id":735402,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-6-facsimile-edition-1/4000-735402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735403/","id":735403,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-criminally-insane-absorbing-man/4000-735403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735404/","id":735404,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-criminally-insane-klaw-1/4000-735404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735513/","id":735513,"name":"The Hanging Judge Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-daily-bugle-1-the-hanging-judge/4000-735513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735523/","id":735523,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hawkeye-freefall-2/4000-735523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735528/","id":735528,"name":null,"site_detail_url":"https://comicvine.gamespot.com/scream-curse-of-carnage-3/4000-735528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-760395/","id":760395,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-compendium-1-book-one/4000-760395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731982/","id":731982,"name":null,"site_detail_url":"https://comicvine.gamespot.com/web-of-black-widow-5/4000-731982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738763/","id":738763,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-outlaw-1-tpb/4000-738763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738509/","id":738509,"name":"The Cure For You; Time and Again","site_detail_url":"https://comicvine.gamespot.com/tmnt-jennika-1-the-cure-for-you-time-and-again/4000-738509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738064/","id":738064,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-velocity-1-tpb/4000-738064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737926/","id":737926,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/red-winter-1-volume-1/4000-737926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737898/","id":737898,"name":null,"site_detail_url":"https://comicvine.gamespot.com/van-helsing-vs-the-league-of-monsters-1/4000-737898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737895/","id":737895,"name":"Where?","site_detail_url":"https://comicvine.gamespot.com/the-visitor-3-where/4000-737895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737794/","id":737794,"name":"Rage & Redemption Part One","site_detail_url":"https://comicvine.gamespot.com/bitter-root-6-rage-and-redemption-part-one/4000-737794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737113/","id":737113,"name":"Resisting Arrest","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-vigilante-4-resisting-arrest/4000-737113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737189/","id":737189,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-epic-collection-the-secret-of-t/4000-737189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736687/","id":736687,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/black-panther-postcard-book-1-hc/4000-736687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736693/","id":736693,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/venom-by-donny-cates-absolute-carnage-1-volume-3/4000-736693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736423/","id":736423,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangersteenage-mutant-ninja-t/4000-736423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729672/","id":729672,"name":"Doom's Day","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-35-dooms-day/4000-729672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729675/","id":729675,"name":"The Want","site_detail_url":"https://comicvine.gamespot.com/black-cat-7-the-want/4000-729675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729677/","id":729677,"name":"Through Hell Part 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-14-through-hell-part-4/4000-729677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729674/","id":729674,"name":null,"site_detail_url":"https://comicvine.gamespot.com/annihilation-scourge-nova-1/4000-729674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729691/","id":729691,"name":null,"site_detail_url":"https://comicvine.gamespot.com/web-of-black-widow-4/4000-729691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730321/","id":730321,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-annihilation-nova-1/4000-730321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730330/","id":730330,"name":"The Legend of Steve: Part V","site_detail_url":"https://comicvine.gamespot.com/captain-america-17-the-legend-of-steve-part-v/4000-730330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730338/","id":730338,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-iron-man-1/4000-730338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730342/","id":730342,"name":"The Other Side of the Mountain","site_detail_url":"https://comicvine.gamespot.com/punisher-soviet-2-the-other-side-of-the-mountain/4000-730342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730349/","id":730349,"name":null,"site_detail_url":"https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-1/4000-730349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730348/","id":730348,"name":null,"site_detail_url":"https://comicvine.gamespot.com/strikeforce-4/4000-730348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731480/","id":731480,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-annihilation-mantis-1/4000-731480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731484/","id":731484,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-annihilation-super-skrull-1/4000-731484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731503/","id":731503,"name":"Time After Time","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-36-time-after-time/4000-731503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731666/","id":731666,"name":null,"site_detail_url":"https://comicvine.gamespot.com/incoming-1/4000-731666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731324/","id":731324,"name":"And It Begins","site_detail_url":"https://comicvine.gamespot.com/teen-titans-37-and-it-begins/4000-731324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739016/","id":739016,"name":"Epiphany In Black","site_detail_url":"https://comicvine.gamespot.com/lady-death-heartbreaker-1-epiphany-in-black/4000-739016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739463/","id":739463,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ghostbusters-year-one-2/4000-739463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739470/","id":739470,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/transformersghostbusters-ghosts-of-cybertron-1-tpb/4000-739470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741395/","id":741395,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-2/4000-741395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731516/","id":731516,"name":null,"site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe-6/4000-731516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743207/","id":743207,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-shredder-in-hell-1-tp/4000-743207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735726/","id":735726,"name":null,"site_detail_url":"https://comicvine.gamespot.com/veronica-1/4000-735726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735400/","id":735400,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-grand-design-1-gn/4000-735400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735141/","id":735141,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/gangster-ass-barista-regular-is-not-a-size-1-volum/4000-735141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734688/","id":734688,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-kill-krew-1-tpb/4000-734688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734720/","id":734720,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vampire-state-building-4/4000-734720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734628/","id":734628,"name":"What?","site_detail_url":"https://comicvine.gamespot.com/the-visitor-2-what/4000-734628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734367/","id":734367,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-statix-the-complete-collection-1-vol-1/4000-734367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734335/","id":734335,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ghostbusters-year-one-1/4000-734335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734340/","id":734340,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-10/4000-734340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733736/","id":733736,"name":"This Crazy Planet","site_detail_url":"https://comicvine.gamespot.com/vampirellared-sonja-5-this-crazy-planet/4000-733736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733790/","id":733790,"name":"Stitches","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-vigilante-3-stitches/4000-733790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733868/","id":733868,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-immortal-hulk-and-other-tales-1-t/4000-733868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733869/","id":733869,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-lethal-protectors-1-tpb/4000-733869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733871/","id":733871,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-scream-1-tpb/4000-733871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733878/","id":733878,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-14-volume-14/4000-733878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733684/","id":733684,"name":"Hell Hunt Part 3","site_detail_url":"https://comicvine.gamespot.com/spawn-304-hell-hunt-part-3/4000-733684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732819/","id":732819,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangersteenage-mutant-ninja-t/4000-732819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732541/","id":732541,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/nuke-em-classic-cold-war-comics-celebrating-the-en/4000-732541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732566/","id":732566,"name":"Vol. IV","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-732566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732535/","id":732535,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/bowie-stardust-rayguns-and-moonage-daydreams-1-gn/4000-732535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726213/","id":726213,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-and-venom-double-trouble-1/4000-726213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-727265/","id":727265,"name":"Murder Ballads","site_detail_url":"https://comicvine.gamespot.com/punisher-soviet-1-murder-ballads/4000-727265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728416/","id":728416,"name":"The Legend of Steve: Part IV","site_detail_url":"https://comicvine.gamespot.com/captain-america-16-the-legend-of-steve-part-iv/4000-728416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728423/","id":728423,"name":"This Is The Day","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-27-this-is-the-day/4000-728423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728427/","id":728427,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-velocity-4/4000-728427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728431/","id":728431,"name":null,"site_detail_url":"https://comicvine.gamespot.com/strikeforce-3/4000-728431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728432/","id":728432,"name":"The Ultron Agenda Part Three: The View From the Inside","site_detail_url":"https://comicvine.gamespot.com/tony-stark-iron-man-18-the-ultron-agenda-part-thre/4000-728432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728857/","id":728857,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastic-four-grand-design-2/4000-728857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728979/","id":728979,"name":null,"site_detail_url":"https://comicvine.gamespot.com/scream-curse-of-carnage-1/4000-728979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728982/","id":728982,"name":"The Sacred and the Profane Conclusion","site_detail_url":"https://comicvine.gamespot.com/valkyrie-jane-foster-5-the-sacred-and-the-profane-/4000-728982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736926/","id":736926,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/marvel-action-avengers-the-fear-eaters-1-book-3/4000-736926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737671/","id":737671,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-classics-avengers-featuring-doctor-s/4000-737671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-748165/","id":748165,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-road-to-100-deluxe-ed/4000-748165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914867/","id":914867,"name":"Eine für alle, alle für eine","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-1-eine-fur-alle-alle-fur-eine/4000-914867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731400/","id":731400,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/james-bond-live-and-let-die-1-volume-2/4000-731400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731452/","id":731452,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vampire-state-building-3/4000-731452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731419/","id":731419,"name":"Who?","site_detail_url":"https://comicvine.gamespot.com/the-visitor-1-who/4000-731419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730436/","id":730436,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/metro-1-gn/4000-730436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729699/","id":729699,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-lo-this-monster-1-tpb/4000-729699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729758/","id":729758,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rough-riders-lock-stock-and-barrel-the-complete-co/4000-729758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729619/","id":729619,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangersteenage-mutant-ninja-t/4000-729619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731784/","id":731784,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spirou-4260-4261/4000-731784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721148/","id":721148,"name":null,"site_detail_url":"https://comicvine.gamespot.com/contagion-1/4000-721148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721149/","id":721149,"name":"Through Hell Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-12-through-hell-part-2/4000-721149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721158/","id":721158,"name":"War On the Streets Part Five","site_detail_url":"https://comicvine.gamespot.com/the-punisher-16-war-on-the-streets-part-five/4000-721158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721164/","id":721164,"name":"The Artifacts; Sword Master & Shang-Chi: Master Class Part Four","site_detail_url":"https://comicvine.gamespot.com/sword-master-4-the-artifacts-sword-master-and-shan/4000-721164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721165/","id":721165,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-bishop-1/4000-721165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721166/","id":721166,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-kitty-pryde-and-e/4000-721166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721779/","id":721779,"name":null,"site_detail_url":"https://comicvine.gamespot.com/contagion-2/4000-721779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721788/","id":721788,"name":null,"site_detail_url":"https://comicvine.gamespot.com/miles-morales-spider-man-11/4000-721788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721792/","id":721792,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-pyro-1/4000-721792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721786/","id":721786,"name":"The God Who Fell To Earth. Conclusion: Loki, There Shall Be An Ending.","site_detail_url":"https://comicvine.gamespot.com/loki-4-the-god-who-fell-to-earth-conclusion-loki-t/4000-721786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723104/","id":723104,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-avengers-1/4000-723104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723105/","id":723105,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-scream-3/4000-723105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723111/","id":723111,"name":null,"site_detail_url":"https://comicvine.gamespot.com/contagion-3/4000-723111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723120/","id":723120,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-rictor-1/4000-723120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723853/","id":723853,"name":null,"site_detail_url":"https://comicvine.gamespot.com/contagion-4/4000-723853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723868/","id":723868,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-apocalypse-1/4000-723868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723862/","id":723862,"name":"I'm On A Boat","site_detail_url":"https://comicvine.gamespot.com/marauders-1-im-on-a-boat/4000-723862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723851/","id":723851,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-full-circle-1/4000-723851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725224/","id":725224,"name":"End of the World","site_detail_url":"https://comicvine.gamespot.com/dceased-6-end-of-the-world/4000-725224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725243/","id":725243,"name":null,"site_detail_url":"https://comicvine.gamespot.com/contagion-5/4000-725243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725261/","id":725261,"name":null,"site_detail_url":"https://comicvine.gamespot.com/venom-19/4000-725261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731956/","id":731956,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-vault-of-heroes-hulk-biggest-and-best-1-tpb/4000-731956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732569/","id":732569,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-101/4000-732569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721778/","id":721778,"name":"Absolute Carnage Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-31-absolute-carnage-part-tw/4000-721778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721154/","id":721154,"name":"I Am Not Ashamed","site_detail_url":"https://comicvine.gamespot.com/house-of-x-6-i-am-not-ashamed/4000-721154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721777/","id":721777,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-15-facsimile-edition-1/4000-721777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-727776/","id":727776,"name":"Chapter 10","site_detail_url":"https://comicvine.gamespot.com/lady-death-blasphemy-anthem-1-chapter-10/4000-727776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728437/","id":728437,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-street-by-street-block-by-block-1-vol/4000-728437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728285/","id":728285,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-weatherman-5/4000-728285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728295/","id":728295,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/dissident-x-1-gn/4000-728295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728306/","id":728306,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/dceased-1-hctpb/4000-728306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728276/","id":728276,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-the-deluxe-edition-1-hc/4000-728276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-727370/","id":727370,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/science-comics-skyscrapers-the-heights-of-engineer/4000-727370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-727275/","id":727275,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-21-volum/4000-727275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726674/","id":726674,"name":null,"site_detail_url":"https://comicvine.gamespot.com/for-real-1/4000-726674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726535/","id":726535,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-collection-5-volume-5/4000-726535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726225/","id":726225,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/venom-by-donny-cates-1-volume-1/4000-726225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726158/","id":726158,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/bolivar-eats-new-york-a-discovery-adventure-1-gn/4000-726158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726078/","id":726078,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-spectral-shenanigans-2-volume-2/4000-726078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725977/","id":725977,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/amazons-abolitionists-and-activists-a-graphic-hist/4000-725977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718119/","id":718119,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-symbiote-spider-man-1/4000-718119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718759/","id":718759,"name":"The God Who Fell To Earth. Chapter Three: Your Move.","site_detail_url":"https://comicvine.gamespot.com/loki-3-the-god-who-fell-to-earth-chapter-three-you/4000-718759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718769/","id":718769,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-incredible-hulk-mindless-hulk-1/4000-718769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718746/","id":718746,"name":"Arrivals/Departures","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-29-arrivalsdepartures/4000-718746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718762/","id":718762,"name":"Acts of Evil!","site_detail_url":"https://comicvine.gamespot.com/moon-knight-annual-1-acts-of-evil/4000-718762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719434/","id":719434,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-181-facsimile-edition-1/4000-719434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719442/","id":719442,"name":"Bloodline","site_detail_url":"https://comicvine.gamespot.com/spider-man-1-bloodline/4000-719442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720165/","id":720165,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-velocity-2/4000-720165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717924/","id":717924,"name":"And Then...","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-millennium-1-and-then/4000-717924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730173/","id":730173,"name":"City at War, The End","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-100-city-at-war-the-e/4000-730173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718748/","id":718748,"name":"Falling Star Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-10-falling-star-part-3/4000-718748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725235/","id":725235,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-4-volume-4/4000-725235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-724729/","id":724729,"name":"City at War, Part 7","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-99-city-at-war-part-7/4000-724729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723755/","id":723755,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-a-woman-called-widow-1-v/4000-723755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723759/","id":723759,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-1-tpb/4000-723759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723733/","id":723733,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/open-borders-1-gn/4000-723733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723545/","id":723545,"name":"Volume 23: Artificial Intelligence","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-23-volume-23-artificia/4000-723545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723547/","id":723547,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/marvel-action-avengers-the-ruby-egress-1-book-2/4000-723547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723122/","id":723122,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hit-monkey-by-daniel-way-bullets-and-bananas-1-tpb/4000-723122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723126/","id":723126,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-city-at-war-1-tpb/4000-723126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-722977/","id":722977,"name":null,"site_detail_url":"https://comicvine.gamespot.com/zinnober-more-fire-1/4000-722977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721802/","id":721802,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-the-punisher-1-tpb/4000-721802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721798/","id":721798,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ghost-rider-1-volume-1/4000-721798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721581/","id":721581,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/the-twilight-man-rod-serling-and-the-birth-of-tele/4000-721581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721279/","id":721279,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vampire-state-building-1/4000-721279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721263/","id":721263,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-marvel-book-expand-your-knowledge-of-a-vast-co/4000-721263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721176/","id":721176,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/thanos-the-infinity-ending-1-ogn/4000-721176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721042/","id":721042,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-1-part-1/4000-721042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715296/","id":715296,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-1/4000-715296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716376/","id":716376,"name":"Boxes Within Boxes; Sword Master & Shangi-Chi: Master Class Part Two","site_detail_url":"https://comicvine.gamespot.com/sword-master-2-boxes-within-boxes-sword-master-and/4000-716376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716963/","id":716963,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-8/4000-716963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717508/","id":717508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-2/4000-717508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717509/","id":717509,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-lethal-protectors-1/4000-717509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717510/","id":717510,"name":null,"site_detail_url":"https://comicvine.gamespot.com/absolute-carnage-miles-morales-1/4000-717510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717522/","id":717522,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-velocity-1/4000-717522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717535/","id":717535,"name":null,"site_detail_url":"https://comicvine.gamespot.com/venom-17/4000-717535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717540/","id":717540,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comics-1000/4000-717540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719966/","id":719966,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-35th-anniversary-collection-1-tpb/4000-719966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719973/","id":719973,"name":"Vol. 22","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-city-at-war-part-1-1-/4000-719973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717529/","id":717529,"name":"Chapter Six: All My Enemies","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-6-chapter-six-all-my-enemies/4000-717529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-762354/","id":762354,"name":"The Living Nightmare - Part One","site_detail_url":"https://comicvine.gamespot.com/marvel-action-avengers-10-the-living-nightmare-par/4000-762354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715306/","id":715306,"name":"The Uncanny Life of Moira X","site_detail_url":"https://comicvine.gamespot.com/house-of-x-2-the-uncanny-life-of-moira-x/4000-715306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720188/","id":720188,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-warps-1-tpb/4000-720188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720150/","id":720150,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/bloodshot-classic-omnibus-1-volume-1/4000-720150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719972/","id":719972,"name":"City at War, Part 6","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-98-city-at-war-part-6/4000-719972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718774/","id":718774,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-13-volume-1/4000-718774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718776/","id":718776,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/miles-morales-with-great-power-1-tpb/4000-718776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718777/","id":718777,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/shuri-247-vibranium-1-volume-2/4000-718777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718661/","id":718661,"name":null,"site_detail_url":"https://comicvine.gamespot.com/analog-8/4000-718661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718686/","id":718686,"name":null,"site_detail_url":"https://comicvine.gamespot.com/chastity-1/4000-718686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718146/","id":718146,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/timelys-greatest-the-golden-age-sub-mariner-the-pr/4000-718146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717834/","id":717834,"name":"Ghosts of Cybertron Part 4","site_detail_url":"https://comicvine.gamespot.com/transformersghostbusters-4-ghosts-of-cybertron-par/4000-717834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713076/","id":713076,"name":"War On the Streets Part Two","site_detail_url":"https://comicvine.gamespot.com/the-punisher-13-war-on-the-streets-part-two/4000-713076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713418/","id":713418,"name":"The Great Scramble","site_detail_url":"https://comicvine.gamespot.com/wonder-twins-6-the-great-scramble/4000-713418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713456/","id":713456,"name":"Team-Up; Robo-Helpers","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-25-team-up-robo-helpers/4000-713456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713515/","id":713515,"name":"Part 2: The Inferno Gauntlet; Late Dinner","site_detail_url":"https://comicvine.gamespot.com/secret-warps-weapon-hex-annual-1-part-2-the-infern/4000-713515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713521/","id":713521,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-absolute-carnage-carnage-1/4000-713521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713522/","id":713522,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-absolute-carnage-venom-vs-carnage-1/4000-713522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713526/","id":713526,"name":"The Last Best Hope of Earth","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-captain-america-weapon-plus-1-the-la/4000-713526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713860/","id":713860,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-city-at-war-5/4000-713860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714245/","id":714245,"name":"Sword In the Tomb; Sword Master & Shang-Chi: Master Class Part One","site_detail_url":"https://comicvine.gamespot.com/sword-master-1-sword-in-the-tomb-sword-master-and-/4000-714245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714249/","id":714249,"name":"The Sacred and the Profane Part I","site_detail_url":"https://comicvine.gamespot.com/valkyrie-jane-foster-1-the-sacred-and-the-profane-/4000-714249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714666/","id":714666,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-7/4000-714666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714677/","id":714677,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-absolute-carnage-mind-bomb-1/4000-714677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713864/","id":713864,"name":"Chapter Five: Civic Engagement","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-5-chapter-five-civic-engagem/4000-713864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726662/","id":726662,"name":"Snake Hunt Part 3","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-268-snake-hunt-part-3/4000-726662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712958/","id":712958,"name":"Chapter Twenty-Four","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-24-chapter-twenty-four/4000-712958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717538/","id":717538,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-re-entry-1-volume-1/4000-717538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717544/","id":717544,"name":"Volume 18","site_detail_url":"https://comicvine.gamespot.com/thor-epic-collection-the-black-galaxy-1-volume-18/4000-717544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717547/","id":717547,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-inferno-1-tpb/4000-717547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716730/","id":716730,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-1-tpb/4000-716730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716399/","id":716399,"name":"Hold My Baby","site_detail_url":"https://comicvine.gamespot.com/gangster-ass-barista-1-hold-my-baby/4000-716399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716379/","id":716379,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-1-tpb/4000-716379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716151/","id":716151,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-1-volum/4000-716151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710696/","id":710696,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-1/4000-710696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711316/","id":711316,"name":"Feast or Famine: Part One","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-7-feast-or-famine/4000-711316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711312/","id":711312,"name":"Hunted Epilogue","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-23-hunted-epilogue/4000-711312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711329/","id":711329,"name":"Chapter Four: Brothers In Arms","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-4-chapter-four-brothers-in-a/4000-711329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711334/","id":711334,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-sinister-secret-of-spider-mans-/4000-711334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711335/","id":711335,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-spider-man-morbius-1/4000-711335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711336/","id":711336,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-spider-man-vs-hulk-1/4000-711336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711332/","id":711332,"name":null,"site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-7/4000-711332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711961/","id":711961,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-spidey-fight/4000-711961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711962/","id":711962,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-the-wedding-/4000-711962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711960/","id":711960,"name":"The Starkronomicon","site_detail_url":"https://comicvine.gamespot.com/tony-stark-iron-man-13-the-starkronomicon/4000-711960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712529/","id":712529,"name":"License To Quantum Drive","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-11-license-to-quantum-drive/4000-712529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712556/","id":712556,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-spider-man-vs-mysterio-1/4000-712556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712557/","id":712557,"name":"Chapter Six: The Storm of Thors","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-6-chapter-six-the-storm-of-thors/4000-712557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712551/","id":712551,"name":null,"site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-8/4000-712551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717821/","id":717821,"name":"Bundles of Joy Issue 1 of 3","site_detail_url":"https://comicvine.gamespot.com/herald-lovecraft-and-tesla-10-bundles-of-joy-issue/4000-717821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712524/","id":712524,"name":"One-On-One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-24-one-on-one/4000-712524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711971/","id":711971,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-2/4000-711971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714571/","id":714571,"name":"City at War, Part 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-96-city-at-war-part-4/4000-714571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714270/","id":714270,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/tom-clancys-the-division-extremis-malis-1-hc/4000-714270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714207/","id":714207,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-teenage-mutant-ninja-turtles-sound-off/4000-714207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714159/","id":714159,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-universe-the-bronze-age-omnibus-by-jack-kirby-1/4000-714159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713793/","id":713793,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/gunning-for-hits-1-tpb/4000-713793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713735/","id":713735,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/they-called-us-enemy-1-gn/4000-713735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713300/","id":713300,"name":"2 von 4","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-2-2-von-4/4000-713300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713316/","id":713316,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-jungle-1-gn/4000-713316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708133/","id":708133,"name":"Spider-Bite","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-6-spider-bite/4000-708133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708146/","id":708146,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-iron-fist/4000-708146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708149/","id":708149,"name":"Chapter Two: They Who Became Powerful","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-journey-into-mystery-2-chapter-t/4000-708149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709216/","id":709216,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-luke-cage/4000-709216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709713/","id":709713,"name":null,"site_detail_url":"https://comicvine.gamespot.com/asgardians-of-the-galaxy-9/4000-709713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709714/","id":709714,"name":"The Man In the Mountain","site_detail_url":"https://comicvine.gamespot.com/avengers-19-the-man-in-the-mountain/4000-709714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709732/","id":709732,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-what-if-s/4000-709732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709733/","id":709733,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-8/4000-709733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709737/","id":709737,"name":null,"site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-punisher-2/4000-709737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709718/","id":709718,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-5/4000-709718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710111/","id":710111,"name":"Heroes of the Round Table!","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-3-heroes-of-the-round-table/4000-710111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715041/","id":715041,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-9-/4000-715041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716735/","id":716735,"name":"The Fear Eaters - Part One","site_detail_url":"https://comicvine.gamespot.com/marvel-action-avengers-7-the-fear-eaters-part-one/4000-716735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721487/","id":721487,"name":"Hazelnut Heist-Eria!","site_detail_url":"https://comicvine.gamespot.com/mandms-1-hazelnut-heist-eria/4000-721487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709915/","id":709915,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-1/4000-709915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712343/","id":712343,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spawn-298/4000-712343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712244/","id":712244,"name":"Ghosts of Cybertron Part 1","site_detail_url":"https://comicvine.gamespot.com/transformersghostbusters-1-ghosts-of-cybertron-par/4000-712244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711737/","id":711737,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-a-new-beginning-1-book-1/4000-711737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711741/","id":711741,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-14/4000-711741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711740/","id":711740,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-macro-series-1-tpb/4000-711740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711714/","id":711714,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/ultraman-12-volume-12/4000-711714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710692/","id":710692,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-far-from-home-prelude-1-tpb/4000-710692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710658/","id":710658,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-secret-life-of-pets-1-tpb/4000-710658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705490/","id":705490,"name":"Chapter One: The Last Realm Standing","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-1-chapter-one-the-last-realm-sta/4000-705490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705914/","id":705914,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-no-road-home-9/4000-705914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705933/","id":705933,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-avengers-ronin-1/4000-705933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706402/","id":706402,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-252-facsimile-edition-1/4000-706402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706411/","id":706411,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-spider-man-city-at-war-2/4000-706411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706416/","id":706416,"name":"A Friend In Need Part Two","site_detail_url":"https://comicvine.gamespot.com/shuri-7-a-friend-in-need-part-two/4000-706416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706423/","id":706423,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-avengers-endgame-1/4000-706423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706425/","id":706425,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-avengers-thanos-the-final-battle-1/4000-706425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706427/","id":706427,"name":"Chapter Two: The Midgard Massacre","site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-2-chapter-two-the-midgard-massac/4000-706427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706428/","id":706428,"name":null,"site_detail_url":"https://comicvine.gamespot.com/war-of-the-realms-punisher-1/4000-706428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706940/","id":706940,"name":"Hunted Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-20-hunted-part-4/4000-706940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706942/","id":706942,"name":"Head Games!","site_detail_url":"https://comicvine.gamespot.com/avengers-edge-of-infinity-1-head-games/4000-706942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706952/","id":706952,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-4/4000-706952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706955/","id":706955,"name":"Power & Responsibility","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-42-power-and-responsi/4000-706955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706956/","id":706956,"name":"Gambit & Rogue Forever Part Four of Four","site_detail_url":"https://comicvine.gamespot.com/mr-and-mrs-x-10-gambit-and-rogue-forever-part-four/4000-706956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706418/","id":706418,"name":"Chapter Two: Our Fathers' Way","site_detail_url":"https://comicvine.gamespot.com/spider-man-life-story-2-chapter-two-our-fathers-wa/4000-706418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728762/","id":728762,"name":"Chapter 9","site_detail_url":"https://comicvine.gamespot.com/lady-death-scorched-earth-1-chapter-9/4000-728762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729536/","id":729536,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-shredder-in-hell-5/4000-729536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710080/","id":710080,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/moonbound-apollo-11-and-the-dream-of-spaceflight-1/4000-710080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710072/","id":710072,"name":null,"site_detail_url":"https://comicvine.gamespot.com/exciting-comics-2/4000-710072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709985/","id":709985,"name":"City at War, Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-94-city-at-war-part-2/4000-709985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709986/","id":709986,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-13/4000-709986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709502/","id":709502,"name":null,"site_detail_url":"https://comicvine.gamespot.com/claimed-1/4000-709502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709155/","id":709155,"name":"Trapped","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-outlaw-4-trapped/4000-709155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709084/","id":709084,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/science-comics-cars-engines-that-move-you-1-gn/4000-709084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707961/","id":707961,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/frank-millers-ronin-dc-black-label-edition-1-tpb/4000-707961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707869/","id":707869,"name":"[Untitled]; Road To War","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-free-comic-book-day-2/4000-707869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707873/","id":707873,"name":null,"site_detail_url":"https://comicvine.gamespot.com/valiant-bloodshot-fcbd-2019-special-1/4000-707873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707504/","id":707504,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-lifetime-achiev/4000-707504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702453/","id":702453,"name":"Hunted","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-16hu-hunted/4000-702453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703042/","id":703042,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-apocalypse-and-the-x-tracts-1/4000-703042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703063/","id":703063,"name":"Have You Seen Me Lately?","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-ghost-spider-6-have-you-seen-me-lately/4000-703063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703064/","id":703064,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-47/4000-703064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703928/","id":703928,"name":"The Terminus Agenda Part One","site_detail_url":"https://comicvine.gamespot.com/teen-titans-28-the-terminus-agenda-part-one/4000-703928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704820/","id":704820,"name":"Heroes of the Round Table!","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-1-heroes-of-the-round-table/4000-704820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704828/","id":704828,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-far-from-home-prelude-1/4000-704828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702471/","id":702471,"name":"Family Unit","site_detail_url":"https://comicvine.gamespot.com/meet-the-skrulls-1-family-unit/4000-702471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703946/","id":703946,"name":null,"site_detail_url":"https://comicvine.gamespot.com/meet-the-skrulls-2/4000-703946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707391/","id":707391,"name":"Vol. 21","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-battle-lines-1-vol-21/4000-707391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703062/","id":703062,"name":"A Friend In Need Part One","site_detail_url":"https://comicvine.gamespot.com/shuri-6-a-friend-in-need-part-one/4000-703062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704810/","id":704810,"name":"Know Fear Part 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-3-know-fear-part-3/4000-704810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711739/","id":711739,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-anniversary-edition-1/4000-711739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713726/","id":713726,"name":"Artificial Intelligence Part 3","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-264-artificial-intelli/4000-713726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719216/","id":719216,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/this-land-is-my-land-a-graphic-history-of-big-drea/4000-719216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711396/","id":711396,"name":null,"site_detail_url":"https://comicvine.gamespot.com/threshold-allure-4/4000-711396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763296/","id":763296,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/basquiat-1-gn/4000-763296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702438/","id":702438,"name":"Crisis","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-9-crisis/4000-702438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706837/","id":706837,"name":"Talk To the Animals","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-35th-anniversary-extreme-one-shot-1-t/4000-706837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706843/","id":706843,"name":"City at War, Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-93-city-at-war-part-1/4000-706843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706577/","id":706577,"name":"Undeath Part 4: Monster Mass","site_detail_url":"https://comicvine.gamespot.com/the-apex-society-10-undeath-part-4-monster-mass/4000-706577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706234/","id":706234,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/credo-the-rose-wilder-lane-story-1-hc/4000-706234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705920/","id":705920,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/iceman-amazing-friends-1-volume-3/4000-705920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705864/","id":705864,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-complete-life-and-times-of-scrooge-mcduck-1-vo/4000-705864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705789/","id":705789,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-year-of-loving-dangerously-1-gn/4000-705789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705683/","id":705683,"name":"Spooks Away","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-35th-anniversary-the-real-ghostbuster/4000-705683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705365/","id":705365,"name":"Heavy Water","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-35th-anniversary-ghostbusters-one-sho/4000-705365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705435/","id":705435,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-good-intentions-1-volume-2/4000-705435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705406/","id":705406,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-3-volume-3/4000-705406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705411/","id":705411,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/final-crisis-dc-essential-edition-1-tpb/4000-705411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705420/","id":705420,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-full-throttle-1-volume-1/4000-705420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705274/","id":705274,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/cannabis-the-illegalization-of-weed-in-america-1-h/4000-705274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700150/","id":700150,"name":"Stark Realities: Part Three: Factory Settings","site_detail_url":"https://comicvine.gamespot.com/tony-stark-iron-man-8-stark-realities-part-three-f/4000-700150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700151/","id":700151,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-captain-marvel-ms-marvel-1/4000-700151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700152/","id":700152,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-captain-marvel-spider-man-and-ms-ma/4000-700152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700659/","id":700659,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-no-road-home-1/4000-700659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700685/","id":700685,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-46/4000-700685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701307/","id":701307,"name":"So Bright This Star","site_detail_url":"https://comicvine.gamespot.com/dazzler-1-facsimile-edition-1-so-bright-this-star/4000-701307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701319/","id":701319,"name":"In the Court of the Crimson King","site_detail_url":"https://comicvine.gamespot.com/old-man-quill-2-in-the-court-of-the-crimson-king/4000-701319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701325/","id":701325,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-captain-marvel-earths-mightiest-her/4000-701325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701326/","id":701326,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-captain-marvel-the-kreeskrull-war-1/4000-701326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701949/","id":701949,"name":"The Redoubtable Return of Crusher Creel!","site_detail_url":"https://comicvine.gamespot.com/true-believers-captain-marvel-avenger-1-the-redoub/4000-701949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707392/","id":707392,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-12/4000-707392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710526/","id":710526,"name":"The Ruby Egress Part Two","site_detail_url":"https://comicvine.gamespot.com/avengers-5-the-ruby-egress-part-two/4000-710526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708120/","id":708120,"name":"1 von 4","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-1-1-von-4/4000-708120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700645/","id":700645,"name":"The Lords of Order Chapter 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-8-the-lords-of-order-chapter-1/4000-700645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708988/","id":708988,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-2-volu/4000-708988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709978/","id":709978,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/life-on-the-moon-1-gn/4000-709978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701934/","id":701934,"name":"Know Fear Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-2-know-fear-part-2/4000-701934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-944135/","id":944135,"name":"Bruderschaft","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-5-bruderschaft/4000-944135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704693/","id":704693,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-teenage-mutant-ninja-turtles-1-volume-/4000-704693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703854/","id":703854,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bitter-root-5/4000-703854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703901/","id":703901,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gretel-1/4000-703901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703569/","id":703569,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dierden-1/4000-703569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703580/","id":703580,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/family-man-1-gn/4000-703580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703583/","id":703583,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-92/4000-703583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703056/","id":703056,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-13-volume-13/4000-703056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702817/","id":702817,"name":"Volume Ten","site_detail_url":"https://comicvine.gamespot.com/new-teen-titans-10-volume-ten/4000-702817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702505/","id":702505,"name":"In the Shadow of the Sun","site_detail_url":"https://comicvine.gamespot.com/olympus-mons-5-in-the-shadow-of-the-sun/4000-702505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696359/","id":696359,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-knights-20th-5/4000-696359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696941/","id":696941,"name":"Re-Entry","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-1-re-entry/4000-696941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696943/","id":696943,"name":"Mother of Exiles: Part One; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-1-mother-of-exile/4000-696943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696953/","id":696953,"name":"Spider-Geddon Part 4: Like Stars From the Sky","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-ghost-spider-4-spider-geddon-part-4-li/4000-696953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697627/","id":697627,"name":null,"site_detail_url":"https://comicvine.gamespot.com/black-widow-1/4000-697627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697635/","id":697635,"name":"Chapters 1 & 2","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-purple-daughter-1-chapters-1-and-2/4000-697635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697615/","id":697615,"name":"The Brothers Dinkley!; Atom Ant in When Atoms Collide","site_detail_url":"https://comicvine.gamespot.com/scooby-apocalypse-33-the-brothers-dinkley-atom-ant/4000-697615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699389/","id":699389,"name":"Family Matters Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-14-family-matters-part-one/4000-699389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699396/","id":699396,"name":"Sins of the Father Part 3","site_detail_url":"https://comicvine.gamespot.com/dead-man-logan-3-sins-of-the-father-part-3/4000-699396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699412/","id":699412,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-what-if-conan-the-barbarian-walked-/4000-699412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711010/","id":711010,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-5/4000-711010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704876/","id":704876,"name":null,"site_detail_url":"https://comicvine.gamespot.com/threshold-allure-2/4000-704876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699385/","id":699385,"name":"The Terrifics No More! Part 2","site_detail_url":"https://comicvine.gamespot.com/the-terrifics-12-the-terrifics-no-more-part-2/4000-699385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701941/","id":701941,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-punisher-by-peyer-and-gutierrez-tax/4000-701941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701530/","id":701530,"name":"Undeath Part 3: Prisoner","site_detail_url":"https://comicvine.gamespot.com/the-apex-society-9-undeath-part-3-prisoner/4000-701530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701119/","id":701119,"name":null,"site_detail_url":"https://comicvine.gamespot.com/sukeban-turbo-4/4000-701119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700616/","id":700616,"name":"Run...Now","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-outlaw-1-runnow/4000-700616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700672/","id":700672,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-luke-cage-power-man-3-volume-3/4000-700672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700514/","id":700514,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-be-bop-barbarians-a-graphic-novel-1-gn/4000-700514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700448/","id":700448,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-91/4000-700448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700080/","id":700080,"name":"Them Blue Wizard Blues, Conclusion","site_detail_url":"https://comicvine.gamespot.com/curse-words-20-them-blue-wizard-blues-conclusion/4000-700080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700089/","id":700089,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-13/4000-700089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700090/","id":700090,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-pandemonium-1-volume-2/4000-700090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694149/","id":694149,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-prisoners-of-the-pup/4000-694149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694156/","id":694156,"name":"A Hope Summer & Jean Grey Story; A Cyclops & Corsair Story","site_detail_url":"https://comicvine.gamespot.com/x-men-the-exterminated-1-a-hope-summer-and-jean-gr/4000-694156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695160/","id":695160,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-the-molecule-man-1/4000-695160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695161/","id":695161,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-super-skrull-1/4000-695161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695644/","id":695644,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-frost-giants-among-us/4000-695644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695655/","id":695655,"name":null,"site_detail_url":"https://comicvine.gamespot.com/seasons-beatings-1/4000-695655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695665/","id":695665,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-frightful-four-1/4000-695665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695667/","id":695667,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-ronan-and-the-kree-1/4000-695667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695625/","id":695625,"name":"Winter In America: Part VI","site_detail_url":"https://comicvine.gamespot.com/captain-america-6-winter-in-america-part-vi/4000-695625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695634/","id":695634,"name":"Part Five","site_detail_url":"https://comicvine.gamespot.com/extermination-5-part-five/4000-695634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695638/","id":695638,"name":"By Any Means Part Two of Five","site_detail_url":"https://comicvine.gamespot.com/killmonger-2-by-any-means-part-two-of-five/4000-695638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703577/","id":703577,"name":"The Iron Mechanic - Part Three","site_detail_url":"https://comicvine.gamespot.com/avengers-3-the-iron-mechanic-part-three/4000-703577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695620/","id":695620,"name":"The Girl Who Fell From the Sky;The Same Old Ground","site_detail_url":"https://comicvine.gamespot.com/teen-titans-25-the-girl-who-fell-from-the-skythe-s/4000-695620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708985/","id":708985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-4/4000-708985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699387/","id":699387,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-by-walt-simonson-and-jerry-ordway-1-t/4000-699387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699354/","id":699354,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/submerged-1-tpb/4000-699354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699099/","id":699099,"name":null,"site_detail_url":"https://comicvine.gamespot.com/la-confidential-1/4000-699099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-698455/","id":698455,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-90/4000-698455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697630/","id":697630,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/decades-marvel-in-the-40s-the-human-torch-vs-the-s/4000-697630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697371/","id":697371,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/lost-girls-1-hc/4000-697371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696901/","id":696901,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-millionaires-magician-1-gn/4000-696901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696947/","id":696947,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-4-volume-4/4000-696947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696797/","id":696797,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/showtime-at-the-apollo-the-epic-tale-of-harlems-le/4000-696797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696810/","id":696810,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gunning-for-hits-1/4000-696810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696822/","id":696822,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tom-clancys-the-division-extremis-malis-1/4000-696822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696795/","id":696795,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-life-of-frederick-douglass-a-graphic-narrative/4000-696795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691376/","id":691376,"name":null,"site_detail_url":"https://comicvine.gamespot.com/deadpool-6/4000-691376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691383/","id":691383,"name":"Phantom Limb Chapters 3 & 4","site_detail_url":"https://comicvine.gamespot.com/iron-fist-2-phantom-limb-chapters-3-and-4/4000-691383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691384/","id":691384,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-knights-20th-1/4000-691384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691387/","id":691387,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-mealti/4000-691387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692090/","id":692090,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vault-of-spiders-2/4000-692090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693461/","id":693461,"name":"Irreplaceable","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-4-irreplaceable/4000-693461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692500/","id":692500,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/mccay-1-hc/4000-692500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696248/","id":696248,"name":"Book Three: The Fire of St. George","site_detail_url":"https://comicvine.gamespot.com/rasl-3-book-three-the-fire-of-st-george/4000-696248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696356/","id":696356,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-fist-phantom-limb-1-tpb/4000-696356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699933/","id":699933,"name":"The Iron Mechanic - Part Two","site_detail_url":"https://comicvine.gamespot.com/avengers-2-the-iron-mechanic-part-two/4000-699933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708983/","id":708983,"name":"Volume 5: 1985-1986","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-708983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785670/","id":785670,"name":"Minaccia su New York","site_detail_url":"https://comicvine.gamespot.com/tex-699-minaccia-su-new-york/4000-785670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695708/","id":695708,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/queen-of-kenosha-1-gn/4000-695708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695628/","id":695628,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-mayor-murdock-1-volume-7/4000-695628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695646/","id":695646,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-save-our-school-1-vol/4000-695646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695602/","id":695602,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-omnibus-1-hc/4000-695602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695619/","id":695619,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/super-sons-omnibus-1-hc/4000-695619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695510/","id":695510,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-89/4000-695510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694909/","id":694909,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-shades-of-grey-1-tpb/4000-694909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694777/","id":694777,"name":"Raphael","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-macro-series-4-raphae/4000-694777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694085/","id":694085,"name":"Calm Before the Storm","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-24-calm-before-the-storm/4000-694085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694189/","id":694189,"name":null,"site_detail_url":"https://comicvine.gamespot.com/snap-flash-hustle-1/4000-694189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693970/","id":693970,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-8-/4000-693970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694064/","id":694064,"name":"Chapter One: Homecoming","site_detail_url":"https://comicvine.gamespot.com/laguardia-1-chapter-one-homecoming/4000-694064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686988/","id":686988,"name":"Triumph Part One","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-51-triumph-part-one/4000-686988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687014/","id":687014,"name":"Phantom Limb Chapters 1 & 2","site_detail_url":"https://comicvine.gamespot.com/iron-fist-marvel-digital-original-1-phantom-limb-c/4000-687014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688333/","id":688333,"name":"Mojo Rising; Apocalypse: Degeneration Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-black-mojo-1-mojo-rising-apocalypse-degenera/4000-688333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689020/","id":689020,"name":"Triumph Part Two","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-52-triumph-part-two/4000-689020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689039/","id":689039,"name":"The Death of Daredevil Part 1: Thanatophobia","site_detail_url":"https://comicvine.gamespot.com/daredevil-609-the-death-of-daredevil-part-1-thanat/4000-689039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689048/","id":689048,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-zombie-1/4000-689048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689051/","id":689051,"name":null,"site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-311/4000-689051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689060/","id":689060,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-1/4000-689060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690805/","id":690805,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-halloween-special-1/4000-690805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689859/","id":689859,"name":"Part One: A Small Misunderstanding","site_detail_url":"https://comicvine.gamespot.com/black-panther-vs-deadpool-1-part-one-a-small-misun/4000-689859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695154/","id":695154,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-12/4000-695154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785665/","id":785665,"name":"Panico a teatro","site_detail_url":"https://comicvine.gamespot.com/tex-698-panico-a-teatro/4000-785665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693312/","id":693312,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-1/4000-693312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693316/","id":693316,"name":"Leonardo","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-macro-series-3-leonar/4000-693316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692551/","id":692551,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-coming-hom/4000-692551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692563/","id":692563,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/venom-by-donny-cates-rex-1-volume-1/4000-692563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692576/","id":692576,"name":"The Siren of Manhattan","site_detail_url":"https://comicvine.gamespot.com/ekho-8-the-siren-of-manhattan/4000-692576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692458/","id":692458,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/resident-alien-an-alien-in-new-york-1-volume-5/4000-692458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692358/","id":692358,"name":"The Trial of Doctor Dinosaur; The Centralia Job","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-greatest-hits-1-the-trial-of-doctor-di/4000-692358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692028/","id":692028,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-the-curse-1-tpb/4000-692028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692059/","id":692059,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-avengers-of-the-new-world-1-volume-2/4000-692059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692073/","id":692073,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-the-remastered-edition-1-tpb/4000-692073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692025/","id":692025,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bloodshot-rising-spirit-1/4000-692025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692065/","id":692065,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-2-volume-2/4000-692065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691575/","id":691575,"name":null,"site_detail_url":"https://comicvine.gamespot.com/my-new-york-marathon-1/4000-691575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691287/","id":691287,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13/4000-691287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691425/","id":691425,"name":null,"site_detail_url":"https://comicvine.gamespot.com/obliv18n-3/4000-691425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691187/","id":691187,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-spectral-shenanigans-1-volume-1/4000-691187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683835/","id":683835,"name":"My Two Dads, Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-38-my-two-dads-part-2/4000-683835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683840/","id":683840,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-20th-anniversary-dar/4000-683840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683841/","id":683841,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-20th-anniversary-dar/4000-683841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684913/","id":684913,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-omega-1-part-4/4000-684913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684916/","id":684916,"name":"Cracked Hourglass - Part Two","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-309-cracke/4000-684916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684922/","id":684922,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-jessica-jones-alias-/4000-684922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684923/","id":684923,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-luke-cage-hero-for-h/4000-684923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685863/","id":685863,"name":"Circle of Blood!","site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-by-gran/4000-685863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685864/","id":685864,"name":"The Punisher Strikes Twice","site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-the-fir/4000-685864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686389/","id":686389,"name":"Finale","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-310-finale/4000-686389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686398/","id":686398,"name":"Where Have All the Powers Gone?","site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-luke-cage-and-fantas/4000-686398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686399/","id":686399,"name":"Welcome Back, Frank","site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-1-welco/4000-686399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686400/","id":686400,"name":"An Eye For An Eye Chapter 1: Sunday In The Park","site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-war-jou/4000-686400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686402/","id":686402,"name":"Surviving the Experience Conclusion","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-36-surviving-the-experience-conclusion/4000-686402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686392/","id":686392,"name":"New Players; Check In","site_detail_url":"https://comicvine.gamespot.com/spider-geddon-0-new-players-check-in/4000-686392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687994/","id":687994,"name":"Volume Five: The Coming Doom","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-5-volume-fiv/4000-687994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692373/","id":692373,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-7/4000-692373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685839/","id":685839,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-2/4000-685839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785662/","id":785662,"name":"Manhattan","site_detail_url":"https://comicvine.gamespot.com/tex-697-manhattan/4000-785662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690617/","id":690617,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1-vol-2/4000-690617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690362/","id":690362,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rise-of-the-tmnt-promo-1/4000-690362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688559/","id":688559,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-688559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689881/","id":689881,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wakanda-forever-1-tpb/4000-689881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689761/","id":689761,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-3-book-three/4000-689761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689628/","id":689628,"name":"Michelangelo","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-macro-series-2-michel/4000-689628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688207/","id":688207,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/cecil-and-jordan-in-new-york-1-sc/4000-688207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688323/","id":688323,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/quasar-cosmos-in-collision-1-tpb/4000-688323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688170/","id":688170,"name":null,"site_detail_url":"https://comicvine.gamespot.com/project-superpowers-chapter-three-3/4000-688170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687032/","id":687032,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-in-darkness-by-grant-morrison-1-tpb/4000-687032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687064/","id":687064,"name":null,"site_detail_url":"https://comicvine.gamespot.com/obliv18n-2/4000-687064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687071/","id":687071,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-1-volume-3/4000-687071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686926/","id":686926,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/the-wicked-the-divine-mothering-invention-1-volume/4000-686926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678545/","id":678545,"name":"Godwar Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-33-godwar-part-1/4000-678545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679391/","id":679391,"name":"The End of Forever Part 5","site_detail_url":"https://comicvine.gamespot.com/the-immortal-men-5-the-end-of-forever-part-5/4000-679391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679403/","id":679403,"name":"Back To Basics Part Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-3-back-to-basics-part-three/4000-679403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679423/","id":679423,"name":"Surviving the Experience Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-33-surviving-the-experience-part-one/4000-679423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679413/","id":679413,"name":"Logan's Secret","site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-4-logans-secr/4000-679413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679415/","id":679415,"name":"Bullseye Returns Conclusion","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-45-bullseye-returns-conclusion/4000-679415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679985/","id":679985,"name":"Who We Are","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-annual-1-who-we-are/4000-679985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679992/","id":679992,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/extermination-1-part-one/4000-679992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680715/","id":680715,"name":"Full-Tilt Boogie!","site_detail_url":"https://comicvine.gamespot.com/teen-titans-21-full-tilt-boogie/4000-680715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680730/","id":680730,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-inferno-1/4000-680730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680740/","id":680740,"name":"Chapter Three: Reflections","site_detail_url":"https://comicvine.gamespot.com/wakanda-forever-avengers-1-chapter-three-reflectio/4000-680740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680743/","id":680743,"name":"Godwar Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-34-godwar-part-2/4000-680743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680735/","id":680735,"name":"World War Frank Part One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-world-war-frank-part-one/4000-680735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682657/","id":682657,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-dead-ends-1/4000-682657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683670/","id":683670,"name":"Vol. 20","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-kingdom-of-rats-1-vol/4000-683670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685126/","id":685126,"name":"Spidey vs. Deadpool!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-10-spidey-vs-deadpool/4000-685126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688491/","id":688491,"name":"No More Jokes","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11-no-more-jokes/4000-688491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679418/","id":679418,"name":"My Two Dads, Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-37-my-two-dads-part-1/4000-679418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691855/","id":691855,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rise-of-the-teenage-mutant-ninja-turtles-2/4000-691855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678529/","id":678529,"name":"Shades of Gray Chapter 3","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-3-shades-of-gray-chapter-3/4000-678529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697599/","id":697599,"name":"Along Came a Widow","site_detail_url":"https://comicvine.gamespot.com/white-widow-1-along-came-a-widow/4000-697599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678531/","id":678531,"name":null,"site_detail_url":"https://comicvine.gamespot.com/deadpool-3/4000-678531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785656/","id":785656,"name":"L'ombra del Maestro","site_detail_url":"https://comicvine.gamespot.com/tex-696-lombra-del-maestro/4000-785656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682508/","id":682508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-2/4000-682508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686382/","id":686382,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-world-war-hulk-ii-1-tpb/4000-686382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-686216/","id":686216,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/usagi-yojimboteenage-mutant-ninja-turtles-the-comp/4000-686216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685833/","id":685833,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-red-goblin-1-hctpb/4000-685833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685743/","id":685743,"name":"Deep","site_detail_url":"https://comicvine.gamespot.com/lost-city-explorers-4-deep/4000-685743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685678/","id":685678,"name":"The Reckoning Part 4: Finale","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-12-4-the-reckoning/4000-685678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685534/","id":685534,"name":"Battle Lines, Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-86-battle-lines-part-/4000-685534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685134/","id":685134,"name":"Undeath Part 1: Dracula Rises","site_detail_url":"https://comicvine.gamespot.com/the-apex-society-7-undeath-part-1-dracula-rises/4000-685134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684911/","id":684911,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-daredevil-by-smith-and-quesada-guar/4000-684911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684912/","id":684912,"name":"Volume 20","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-20-volume-20/4000-684912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684928/","id":684928,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/venom-tooth-and-claw-1-tpb/4000-684928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684927/","id":684927,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/venom-planet-of-the-symbiotes-1-tpb/4000-684927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684794/","id":684794,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/rx-a-graphic-memoir-1-gn/4000-684794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684793/","id":684793,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/monk-thelonious-pannonica-and-the-friendship-behin/4000-684793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684795/","id":684795,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/h-p-lovecraft-he-who-wrote-in-the-darkness-a-graph/4000-684795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684574/","id":684574,"name":"And An Age of Giants, Adieu","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-the-tempest-/4000-684574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683831/","id":683831,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/moon-knight-by-jeff-lemire-and-greg-smallwood-1-hc/4000-683831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683844/","id":683844,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/wolverine-old-man-logan-to-kill-for-1-volume-8/4000-683844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675975/","id":675975,"name":null,"site_detail_url":"https://comicvine.gamespot.com/deadpool-2/4000-675975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675987/","id":675987,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-35/4000-675987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675992/","id":675992,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-the-coming-of-galact/4000-675992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675993/","id":675993,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-the-wedding-of-sue-a/4000-675993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676689/","id":676689,"name":"Back To Basics Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-1-back-to-basics-part-one/4000-676689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676706/","id":676706,"name":"Bullseye Returns Part One","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-43-bullseye-returns-part-one/4000-676706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676712/","id":676712,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-hulk-vs-thing-1/4000-676712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676714/","id":676714,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-vs-doctor-doom-1/4000-676714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676691/","id":676691,"name":"Weird Science","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-21-weird-scienc/4000-676691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676701/","id":676701,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-countdown-darkhawk-4/4000-676701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676700/","id":676700,"name":"The Database ","site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-3-the-databas/4000-676700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677282/","id":677282,"name":"Blind Spot: Chapter 1; Blind Spot: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-1-blind-spot-chapter-1-blind-spot-ch/4000-677282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677294/","id":677294,"name":"The Greatest Fight Of Your Life","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-36-the-greatest-fight-of-your-l/4000-677294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677468/","id":677468,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spidey-schools-out-4/4000-677468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677301/","id":677301,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-by-john-byrne-1/4000-677301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677300/","id":677300,"name":"Self-Made Man: Part Two: The Not-A-Pilot Episode","site_detail_url":"https://comicvine.gamespot.com/tony-stark-iron-man-2-self-made-man-part-two-the-n/4000-677300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677961/","id":677961,"name":"Back To Basics Part Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-2-back-to-basics-part-two/4000-677961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677957/","id":677957,"name":"Set It Off Part One","site_detail_url":"https://comicvine.gamespot.com/teen-titans-20-set-it-off-part-one/4000-677957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677981/","id":677981,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-what-if-1/4000-677981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680167/","id":680167,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-universe-9/4000-680167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682971/","id":682971,"name":null,"site_detail_url":"https://comicvine.gamespot.com/essential-x-men-5/4000-682971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680166/","id":680166,"name":"The Hunt Begins! Venom is the Prey!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-7-the-hunt-begins-venom/4000-680166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682968/","id":682968,"name":"Edge of Venomverse Begins!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-9-edge-of-venomverse-be/4000-682968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693308/","id":693308,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/atomic-empire-1-hc/4000-693308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677823/","id":677823,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1/4000-677823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682663/","id":682663,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/new-warriors-darkness-and-light-1-tpb/4000-682663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688558/","id":688558,"name":"Steve Ditko Tribute Issue","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-8-steve-ditko-tribute-i/4000-688558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682656/","id":682656,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-behold-galactus-1-hctpb/4000-682656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682605/","id":682605,"name":null,"site_detail_url":"https://comicvine.gamespot.com/submerged-2/4000-682605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682438/","id":682438,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/femme-magnifique-1-gn/4000-682438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682447/","id":682447,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-bebop-and-rocksteady-/4000-682447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680703/","id":680703,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-1-tpb/4000-680703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680576/","id":680576,"name":"Good Intentions Part One","site_detail_url":"https://comicvine.gamespot.com/witchblade-7-good-intentions-part-one/4000-680576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680649/","id":680649,"name":"Knights of the Round Table","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-19-knights-of-the-round-table/4000-680649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680342/","id":680342,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-85/4000-680342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679849/","id":679849,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-terminator-sector-war-1/4000-679849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679847/","id":679847,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-complete-short-stories-2-volume-2/4000-679847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679829/","id":679829,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-4-volume-four/4000-679829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679839/","id":679839,"name":"Ambition Makes You Pretty. Also, Ugly; The Book I Have Opened","site_detail_url":"https://comicvine.gamespot.com/the-wicked-the-divine-38-ambition-makes-you-pretty/4000-679839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679804/","id":679804,"name":"Birds of A Feather","site_detail_url":"https://comicvine.gamespot.com/jack-wolfgang-2-birds-of-a-feather/4000-679804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679525/","id":679525,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rumours-on-the-red-carpet-1/4000-679525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679383/","id":679383,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-1-hctpb/4000-679383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679414/","id":679414,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-epic-collection-cry-monster-1-vo/4000-679414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679284/","id":679284,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-9/4000-679284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679272/","id":679272,"name":null,"site_detail_url":"https://comicvine.gamespot.com/medieval-spawn-and-witchblade-4/4000-679272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672248/","id":672248,"name":"Taps","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-19-taps/4000-672248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672283/","id":672283,"name":"Sorcerer Supreme of the Galaxy Part One","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-1-sorcerer-supreme-of-the-galaxy-pa/4000-672283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672996/","id":672996,"name":"The End of Forever Part 3","site_detail_url":"https://comicvine.gamespot.com/the-immortal-men-3-the-end-of-forever-part-3/4000-672996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673019/","id":673019,"name":"Angry Powered Parents on a Submarine","site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-2-angry-power/4000-673019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673036/","id":673036,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-ant-man-and-the-wasp-on-the-trail-o/4000-673036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673022/","id":673022,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-alpha-1-part-1/4000-673022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673039/","id":673039,"name":"Rex, Part 2","site_detail_url":"https://comicvine.gamespot.com/venom-2-rex-part-2/4000-673039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674129/","id":674129,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-604/4000-674129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674136/","id":674136,"name":"Best Friends Forever Pt IV","site_detail_url":"https://comicvine.gamespot.com/runaways-10-best-friends-forever-pt-iv/4000-674136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674120/","id":674120,"name":"Weird Science","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-20-weird-scienc/4000-674120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674123/","id":674123,"name":"Where Space Gods Go To Die","site_detail_url":"https://comicvine.gamespot.com/avengers-3-where-space-gods-go-to-die/4000-674123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672260/","id":672260,"name":"One of My Turns Part One","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-43-one-of-my-turns-part-one/4000-672260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675133/","id":675133,"name":"Chapter One: A Strange Little Birdie","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-wakanda-forever-1-chapter-one-a/4000-675133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675142/","id":675142,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-webs-and-arrows-and-a/4000-675142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675144/","id":675144,"name":"Save Our School Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-32-save-our-school-pa/4000-675144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675152/","id":675152,"name":"Coming Home - Part One","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-306-coming/4000-675152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675160/","id":675160,"name":"Rex, Part 3","site_detail_url":"https://comicvine.gamespot.com/venom-3-rex-part-3/4000-675160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676486/","id":676486,"name":"Volume Four: Home","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-4-volume-fou/4000-676486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678366/","id":678366,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/bodycount-1-hc/4000-678366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678503/","id":678503,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/batman-by-doug-moench-and-kelley-jones-2-volume-2/4000-678503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678408/","id":678408,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spawn-288/4000-678408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672254/","id":672254,"name":"Going Underground; Smoke and Mirrors","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-6-going/4000-672254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676463/","id":676463,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-676463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677570/","id":677570,"name":"Venom is on the Prowl!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-6-venom-is-on-the-prowl/4000-677570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689591/","id":689591,"name":"The Orsini Brothers","site_detail_url":"https://comicvine.gamespot.com/raffaele-taming-his-tempestuous-virgin-1-the-orsin/4000-689591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673020/","id":673020,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-countdown-darkhawk-2/4000-673020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673032/","id":673032,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-34/4000-673032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678378/","id":678378,"name":"Spirit Walk","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-25-spirit-wa/4000-678378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668752/","id":668752,"name":"Opening Night; Sasquatch Detective: Arrest and Relaxation","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-5-openi/4000-668752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668780/","id":668780,"name":"Ring of Fire Conclusion","site_detail_url":"https://comicvine.gamespot.com/rogue-and-gambit-5-ring-of-fire-conclusion/4000-668780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668788/","id":668788,"name":"","site_detail_url":"https://comicvine.gamespot.com/venomized-5/4000-668788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677962/","id":677962,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-mayor-fisk-1-volume-6/4000-677962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677963/","id":677963,"name":"Volume 19","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-root-of-evil-1-volume-19/4000-677963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677814/","id":677814,"name":"Kingdom of the Rats Part 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-84-kingdom-of-the-rat/4000-677814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677376/","id":677376,"name":"Troll Under the Bridge Part 2","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-18-troll-under-the-bridge-part-2/4000-677376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677326/","id":677326,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/analog-4-chapter-four/4000-677326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677330/","id":677330,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/curse-words-hole-damned-world-1-volume-3/4000-677330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677318/","id":677318,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rise-of-the-teenage-mutant-ninja-turtles-0/4000-677318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677344/","id":677344,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-magic-order-2/4000-677344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677307/","id":677307,"name":"Vol. 1: Dawn of Heroes","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-omnibus-1-vol-1-dawn-of-heroes/4000-677307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677322/","id":677322,"name":"...And Out Came the Reptiles Part Two; Life At Sea","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-24-and-out-c/4000-677322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677181/","id":677181,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-furnace-1-gn/4000-677181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677176/","id":677176,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/go-team-venture-the-art-and-making-of-the-venture-/4000-677176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676668/","id":676668,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-complete-series-omnibus-1-hc/4000-676668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676692/","id":676692,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-hero-or-hoax-1-vol/4000-676692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676579/","id":676579,"name":null,"site_detail_url":"https://comicvine.gamespot.com/resident-alien-an-alien-in-new-york-4/4000-676579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676577/","id":676577,"name":"Pandemonium","site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-8-pandemonium/4000-676577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676643/","id":676643,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-switch-electricia-1-ogn/4000-676643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676075/","id":676075,"name":"Anti-Aliasing Awakening Pt.2","site_detail_url":"https://comicvine.gamespot.com/amelia-sky-2-anti-aliasing-awakening-pt2/4000-676075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675947/","id":675947,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-deluxe-edition-/4000-675947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675955/","id":675955,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-rebirth-deluxe-edition-2-book-2/4000-675955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676017/","id":676017,"name":null,"site_detail_url":"https://comicvine.gamespot.com/submerged-1/4000-676017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675957/","id":675957,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-1-tpb/4000-675957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675844/","id":675844,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-7-/4000-675844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669432/","id":669432,"name":"The End of Forever Part 2","site_detail_url":"https://comicvine.gamespot.com/the-immortal-men-2-the-end-of-forever-part-2/4000-669432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669446/","id":669446,"name":"The Marvel Universe Kills Deadpool, Part Four","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-300-the-marvel-universe-kills-/4000-669446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669451/","id":669451,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-1/4000-669451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669454/","id":669454,"name":"Chapter 3: From Safety To Where...?","site_detail_url":"https://comicvine.gamespot.com/new-mutants-dead-souls-3-chapter-3-from-safety-to-/4000-669454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669456/","id":669456,"name":"No More - Part One","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-304-no-mor/4000-669456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669464/","id":669464,"name":"Rex, Part 1","site_detail_url":"https://comicvine.gamespot.com/venom-1-rex-part-1/4000-669464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669452/","id":669452,"name":"World War Hulk II Part III","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-716-world-war-hulk-ii-part-iii/4000-669452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670112/","id":670112,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-602/4000-670112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670116/","id":670116,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-countdown-daredevil-1/4000-670116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670745/","id":670745,"name":"World War Hulk II Part IV","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-717-world-war-hulk-ii-part-iv/4000-670745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670746/","id":670746,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-countdown-darkhawk-1/4000-670746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670755/","id":670755,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-33/4000-670755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670762/","id":670762,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-wolverine-vs-venom-1/4000-670762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671331/","id":671331,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infinity-countdown-captain-marvel-1/4000-671331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671325/","id":671325,"name":"Go Down Swinging Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-800-go-down-swinging-part-4/4000-671325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671326/","id":671326,"name":"Parker Summer Vacation","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-19-parker-summe/4000-671326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672197/","id":672197,"name":"Vol. 19","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-invasion-of-the-trice/4000-672197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674549/","id":674549,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-comics-comics-for-all-1-volu/4000-674549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687268/","id":687268,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/spider-girl-the-complete-collection-1-vol-1/4000-687268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672502/","id":672502,"name":"Spider-Slam!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-3-spider-slam/4000-672502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674335/","id":674335,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-674335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670106/","id":670106,"name":"Still Avenging After All These Years","site_detail_url":"https://comicvine.gamespot.com/avengers-2-still-avenging-after-all-these-years/4000-670106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664887/","id":664887,"name":"Doom Town; Sasquatch Detective: Neighborhood Watch","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-4-doom-/4000-664887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664905/","id":664905,"name":"Go Down Swinging Part 2: The Rope-A-Dope","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-798-go-down-swinging-part-2/4000-664905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664915/","id":664915,"name":"Fate of the Four Part 5: Doom's Day","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-5-fate-of-the-four-part-5-dooms-/4000-664915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664930/","id":664930,"name":"","site_detail_url":"https://comicvine.gamespot.com/venomized-1/4000-664930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664262/","id":664262,"name":"Walk On Water","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-4-walk-on-water/4000-664262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665908/","id":665908,"name":"Northern Lights Part 1","site_detail_url":"https://comicvine.gamespot.com/champions-19-northern-lights-part-1/4000-665908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665918/","id":665918,"name":"Moving Target Conclusion","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-38-moving-target-conclusion/4000-665918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665920/","id":665920,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-31/4000-665920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665911/","id":665911,"name":"The Marvel Universe Kills Deadpool Part Two","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-298-the-marvel-universe-kills-/4000-665911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666771/","id":666771,"name":"A Knight In New York Part 6","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-6-a-knight-i/4000-666771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666772/","id":666772,"name":"The Fall of the House of Kane Part Two","site_detail_url":"https://comicvine.gamespot.com/batwoman-14-the-fall-of-the-house-of-kane-part-two/4000-666772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666798/","id":666798,"name":"Go Down Swinging Part 3: The Ties That Bind","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-799-go-down-swinging-part-3/4000-666798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666803/","id":666803,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-601/4000-666803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666808/","id":666808,"name":"Spider-Man and the Stolen Vibranium","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-1-spider-man-and-the-/4000-666808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666799/","id":666799,"name":"Fast Times At Midtown High Part Three","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-18-fast-times-a/4000-666799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666818/","id":666818,"name":"AWOL Part 2","site_detail_url":"https://comicvine.gamespot.com/weapon-h-2-awol-part-2/4000-666818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666817/","id":666817,"name":"","site_detail_url":"https://comicvine.gamespot.com/venomized-3/4000-666817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664931/","id":664931,"name":"Cruel and Unusual Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-25-cruel-and-unusual-part-3/4000-664931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667648/","id":667648,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-0/4000-667648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667661/","id":667661,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-infinity-incoming-1/4000-667661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667666/","id":667666,"name":"Cry Havok Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-26-cry-havok-part-4/4000-667666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668586/","id":668586,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/scarletts-strike-force-1-tpb/4000-668586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668590/","id":668590,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-fall-and-rise-1-volum/4000-668590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664895/","id":664895,"name":"A Higher Place In the Stars","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-6-a-higher-place-in-the-stars/4000-664895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665903/","id":665903,"name":"No Surrender Part 14","site_detail_url":"https://comicvine.gamespot.com/avengers-688-no-surrender-part-14/4000-665903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665926/","id":665926,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-31/4000-665926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665928/","id":665928,"name":"","site_detail_url":"https://comicvine.gamespot.com/venomized-2/4000-665928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675135/","id":675135,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-no-surrender-1-hctpb/4000-675135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675082/","id":675082,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-20/4000-675082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674160/","id":674160,"name":"Discovery","site_detail_url":"https://comicvine.gamespot.com/the-lost-city-explorers-1-discovery/4000-674160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673830/","id":673830,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/eight-million-ways-to-die-1-gn/4000-673830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673831/","id":673831,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-answer-the-call-1-tpb/4000-673831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673836/","id":673836,"name":"...And Out Came the Reptiles Part One; Nobody Cares","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-23-and-out-c/4000-673836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673837/","id":673837,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-urban-legends-2/4000-673837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673786/","id":673786,"name":"Enter the Wolf","site_detail_url":"https://comicvine.gamespot.com/jack-wolfgang-1-enter-the-wolf/4000-673786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-673003/","id":673003,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-ruff-and-reddy-show-1-tpb/4000-673003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672886/","id":672886,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/simpsons-comics-colossal-compendium-6-volume-six/4000-672886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672832/","id":672832,"name":"Pandemonium","site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-7-pandemonium/4000-672832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672835/","id":672835,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-complete-short-stories-1-volume-1/4000-672835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672291/","id":672291,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/runaways-by-brian-k-vaughan-and-adrian-alphona-omn/4000-672291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672194/","id":672194,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/strong-female-protagonist-2-book-two/4000-672194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672196/","id":672196,"name":"Dreamland ","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-15-dreamla/4000-672196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669947/","id":669947,"name":null,"site_detail_url":"https://comicvine.gamespot.com/astonishing-spider-man-1/4000-669947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670425/","id":670425,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-universe-6/4000-670425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671546/","id":671546,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-671546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675454/","id":675454,"name":"Chaper One","site_detail_url":"https://comicvine.gamespot.com/captain-canuck-invasion-canada-day-2018-1-chaper-o/4000-675454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662066/","id":662066,"name":"Angry Bird Part Three","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-39-angry-bird-part-three/4000-662066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662082/","id":662082,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-back-to-basics-1/4000-662082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662087/","id":662087,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-damnation-2/4000-662087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662099/","id":662099,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-venom-symbiosis-1/4000-662099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662061/","id":662061,"name":"Chinatown Conclusion","site_detail_url":"https://comicvine.gamespot.com/deathstroke-29-chinatown-conclusion/4000-662061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662728/","id":662728,"name":"Titans Apart Part Two","site_detail_url":"https://comicvine.gamespot.com/titans-21-titans-apart-part-two/4000-662728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662745/","id":662745,"name":"Vampires In Brooklyn Part 1","site_detail_url":"https://comicvine.gamespot.com/falcon-6-vampires-in-brooklyn-part-1/4000-662745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662750/","id":662750,"name":"Moving Target Part One","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-36-moving-target-part-one/4000-662750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662744/","id":662744,"name":"Bleeding Neon Part Two","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-387-bleeding-neon-part-two/4000-662744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663251/","id":663251,"name":"Carnage, Part Three: Savage Grace!","site_detail_url":"https://comicvine.gamespot.com/true-believers-venom-carnage-1-carnage-part-three-/4000-663251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663252/","id":663252,"name":"Part 1: Darksoul Drifting","site_detail_url":"https://comicvine.gamespot.com/true-believers-venom-lethal-protector-1-part-1-dar/4000-663252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663541/","id":663541,"name":"A Knight In New York Part 5","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-5-a-knight-i/4000-663541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663572/","id":663572,"name":"World War Hulk II Part I","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-714-world-war-hulk-ii-part-i/4000-663572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663580/","id":663580,"name":"Learning Curve, Part Four: Kid Kaiju Versus Miss Mech","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-12-learning-curve-part-four-kid/4000-663580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663591/","id":663591,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/true-believers-venom-flashpoint-1-flashpoint/4000-663591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663565/","id":663565,"name":"Fast Times At Midtown High Part Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-17-fast-times-a/4000-663565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664297/","id":664297,"name":"Mayor Fisk Conclusion; They Also Serve","site_detail_url":"https://comicvine.gamespot.com/daredevil-600-mayor-fisk-conclusion-they-also-serv/4000-664297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664307/","id":664307,"name":"Moving Target Part Two","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-37-moving-target-part-two/4000-664307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664314/","id":664314,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-venom-homecoming-1/4000-664314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664315/","id":664315,"name":"Savage Six: Prologue","site_detail_url":"https://comicvine.gamespot.com/true-believers-venom-toxin-1-savage-six-prologue/4000-664315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668589/","id":668589,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teenage-mutant-ninja-turtles-omnibus-/4000-668589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668623/","id":668623,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/ultraman-10-volume-10/4000-668623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668760/","id":668760,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-vote-harley-1-volume-5/4000-668760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668776/","id":668776,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-companion-2-volume-2/4000-668776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669101/","id":669101,"name":"Chapter One: Finnigan","site_detail_url":"https://comicvine.gamespot.com/silver-free-comic-book-day-2018-1-chapter-one-finn/4000-669101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662069/","id":662069,"name":"Take One For the Planet","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-5-take-one-for-the-planet/4000-662069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662062/","id":662062,"name":"Actors and Stars; Sasquatch Detective: Unsolved Mysteries","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-3-actor/4000-662062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664278/","id":664278,"name":"A Cautionary Tale In Six Parts Part Six","site_detail_url":"https://comicvine.gamespot.com/the-ruff-and-reddy-show-6-a-cautionary-tale-in-six/4000-664278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668768/","id":668768,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-the-complete-collection-1-vol-1/4000-668768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664303/","id":664303,"name":"1+2 = Fantastic Three Part Five of Six: The Four Corners of the Omniverse","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-29-12-fantastic-three/4000-664303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671327/","id":671327,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-eight-years-lat/4000-671327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671356/","id":671356,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-19/4000-671356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670711/","id":670711,"name":null,"site_detail_url":"https://comicvine.gamespot.com/incognegro-renaissance-4/4000-670711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670734/","id":670734,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-2-volume-2/4000-670734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670208/","id":670208,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/baccano-3-vol-3/4000-670208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670174/","id":670174,"name":"The Black Knight","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-15-the-black-knight/4000-670174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669976/","id":669976,"name":"The Hand of Timeless Flame","site_detail_url":"https://comicvine.gamespot.com/invicta-1-the-hand-of-timeless-flame/4000-669976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670043/","id":670043,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-joe-shuster-story-the-artist-behind-superman-1/4000-670043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669833/","id":669833,"name":"Kingdom of the Rats Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-82-kingdom-of-the-rat/4000-669833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669834/","id":669834,"name":"Lost Causes Part Two; Dangerous Waters","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-22-lost-caus/4000-669834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669301/","id":669301,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/punisher-max-by-garth-ennis-omnibus-1-volume-1/4000-669301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669539/","id":669539,"name":"The Long Goodbye","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-4-the-long-goodbye/4000-669539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669443/","id":669443,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-venom-inc-1-tpb/4000-669443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669447/","id":669447,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-bucket-list-1-volume-2/4000-669447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669414/","id":669414,"name":"Pandemonium","site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-6-pandemonium/4000-669414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669417/","id":669417,"name":"Seed of Destruction","site_detail_url":"https://comicvine.gamespot.com/hellboy-omnibus-1-seed-of-destruction/4000-669417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669465/","id":669465,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-3-volume/4000-669465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669247/","id":669247,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-comic-book-story-of-baseball-the-heroes-hustle/4000-669247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668951/","id":668951,"name":"Taps Part 5","site_detail_url":"https://comicvine.gamespot.com/bombshells-united-37-taps-part-5/4000-668951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658703/","id":658703,"name":"Angry Bird Part One","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-37-angry-bird-part-one/4000-658703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658720/","id":658720,"name":"Mayor Fisk Part 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-598-mayor-fisk-part-4/4000-658720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658736/","id":658736,"name":"Tangled Web","site_detail_url":"https://comicvine.gamespot.com/venom-161-tangled-web/4000-658736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659999/","id":659999,"name":"Titans Apart Part One","site_detail_url":"https://comicvine.gamespot.com/titans-20-titans-apart-part-one/4000-659999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660655/","id":660655,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-panther-annual-1/4000-660655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660659/","id":660659,"name":"Kingpins of New York Part 5","site_detail_url":"https://comicvine.gamespot.com/the-defenders-10-kingpins-of-new-york-part-5/4000-660659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660660/","id":660660,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-damnation-1/4000-660660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660624/","id":660624,"name":"A Knight In New York Part 4","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-4-a-knight-i/4000-660624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660672/","id":660672,"name":"Red Ledger Part 3 (of 5): Every Thought a Thought of You","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-102-red-ledger-part-3-of-5-every/4000-660672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661137/","id":661137,"name":"Honey Badger & Deadpool","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-31-honey-badger-and-deadpool/4000-661137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661160/","id":661160,"name":"Area 14 Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-28-area-14-part-2/4000-661160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661164/","id":661164,"name":"Lost In the Plot Part 2","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-25-lost-in-the-plot-part/4000-661164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664713/","id":664713,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-1-vol-1/4000-664713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664791/","id":664791,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-1-volu/4000-664791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664799/","id":664799,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/baccano-2-vol-2/4000-664799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664871/","id":664871,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/life-between-panels-the-complete-tails-omnibus-1-t/4000-664871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665692/","id":665692,"name":"Kingdom of the Rats Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-81-kingdom-of-the-rat/4000-665692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665870/","id":665870,"name":"","site_detail_url":"https://comicvine.gamespot.com/resident-alien-an-alien-in-new-york-1/4000-665870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665904/","id":665904,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-the-avengersdefenders-war/4000-665904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661154/","id":661154,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-infinity-war-prelude-2-part-two/4000-661154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665995/","id":665995,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-bridge-how-the-roeblings-connected-brooklyn-to/4000-665995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666830/","id":666830,"name":"The Hole Damned World Part Three","site_detail_url":"https://comicvine.gamespot.com/curse-words-13-the-hole-damned-world-part-three/4000-666830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667687/","id":667687,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-curse-words-1/4000-667687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667689/","id":667689,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-moonshine-1/4000-667689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667698/","id":667698,"name":"","site_detail_url":"https://comicvine.gamespot.com/sacred-creatures-6/4000-667698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667702/","id":667702,"name":"Life After Part Five","site_detail_url":"https://comicvine.gamespot.com/witchblade-5-life-after-part-five/4000-667702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667673/","id":667673,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-shadowbatman-1-hc/4000-667673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667658/","id":667658,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-the-complete-collection-1-vol-/4000-667658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667635/","id":667635,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/carnage-omnibus-1-hc/4000-667635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667619/","id":667619,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/sleeper-1-book-one/4000-667619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666901/","id":666901,"name":"Under The Pyramids","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-3-under-the-pyramids/4000-666901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667694/","id":667694,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/lazarus-sourcebook-collection-1-volume-one/4000-667694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658705/","id":658705,"name":"Wildfire","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-4-wildfire/4000-658705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658697/","id":658697,"name":"A Dog's Life; Sasquatch Detective Anniversary","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-2-a-dog/4000-658697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666829/","id":666829,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-1-vol-2/4000-666829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667693/","id":667693,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-18/4000-667693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664975/","id":664975,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/science-comics-sharks-natures-perfect-hunter-1-gn/4000-664975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666679/","id":666679,"name":"Lost Causes; How Woody Spent His Triceraton Invasion","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-21-lost-caus/4000-666679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666330/","id":666330,"name":"","site_detail_url":"https://comicvine.gamespot.com/his-name-was-ptirou-1/4000-666330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688466/","id":688466,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-688466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688465/","id":688465,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-43/4000-688465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663206/","id":663206,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-42/4000-663206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663796/","id":663796,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-3/4000-663796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-651101/","id":651101,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-2/4000-651101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652621/","id":652621,"name":"No Surrender Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-675-no-surrender-part-1/4000-652621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652635/","id":652635,"name":"Chapter Three: A Constellation of Them All","site_detail_url":"https://comicvine.gamespot.com/phoenix-resurrection-the-return-of-jean-grey-3-cha/4000-652635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654028/","id":654028,"name":"A Knight In New York Part 3","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-3-a-knight-i/4000-654028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654050/","id":654050,"name":"Champion For A Day Part 1","site_detail_url":"https://comicvine.gamespot.com/champions-16-champion-for-a-day-part-1/4000-654050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655517/","id":655517,"name":"Poison-X Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-annual-1-poison-x-part-1/4000-655517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656702/","id":656702,"name":"Bucket List Part Two: This Could Be the End of A Beautiful Friendship","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-293-bucket-list-part-two-this-/4000-656702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652627/","id":652627,"name":"Bucket List Part One: Deadpool vs. Stevil Rogers","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-292-bucket-list-part-one-deadp/4000-652627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662764/","id":662764,"name":"The Hole Damned World Part Two","site_detail_url":"https://comicvine.gamespot.com/curse-words-12-the-hole-damned-world-part-two/4000-662764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662800/","id":662800,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fighting-american-1-tpb/4000-662800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663265/","id":663265,"name":"Fight or Flight","site_detail_url":"https://comicvine.gamespot.com/of-gods-and-men-1-fight-or-flight/4000-663265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663432/","id":663432,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/the-consultant-4-chapter-four/4000-663432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650896/","id":650896,"name":"","site_detail_url":"https://comicvine.gamespot.com/exit-stage-left-the-snagglepuss-chronicles-1/4000-650896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664389/","id":664389,"name":"Bokkenrijder","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-2-bokkenrijder/4000-664389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650903/","id":650903,"name":"The Small Moments","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-3-the-small-moments/4000-650903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663631/","id":663631,"name":"[Untitled]; Though She Be But Little, She Is Fierce! Part 2","site_detail_url":"https://comicvine.gamespot.com/wwe-15-untitled-though-she-be-but-little-she-is-fi/4000-663631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663612/","id":663612,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-17/4000-663612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652610/","id":652610,"name":"Panic At the Pizza Place; Good Ghost Haunting","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-89-panic-at-the-pizza-pla/4000-652610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663639/","id":663639,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/science-comics-robots-and-drones-past-present-and-/4000-663639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662165/","id":662165,"name":"","site_detail_url":"https://comicvine.gamespot.com/betty-the-slayer-mitchell-1/4000-662165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663447/","id":663447,"name":"Service Animals Part One; Through Red Eyes","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-20-service-a/4000-663447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664209/","id":664209,"name":"Invasion of the Triceratons Part Five","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-80-invasion-of-the-tr/4000-664209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665693/","id":665693,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesusagi-yojimbo-expanded/4000-665693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669410/","id":669410,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-treasury-of-classic-tales-3-volume-th/4000-669410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644468/","id":644468,"name":"A Knight In New York Part 1","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-1-a-knight-i/4000-644468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644518/","id":644518,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-phoenix-presents-cyclops-and-marvel/4000-644518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644495/","id":644495,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-venom-inc-alpha-1-part-one/4000-644495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646184/","id":646184,"name":"Mayor Fisk Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-596-mayor-fisk-part-2/4000-646184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646204/","id":646204,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-phoenix-returns-1/4000-646204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647842/","id":647842,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-1/4000-647842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647928/","id":647928,"name":"& Old Acquantance","site_detail_url":"https://comicvine.gamespot.com/trinity-16-and-old-acquantance/4000-647928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647939/","id":647939,"name":"Kingpins of New York Part 3","site_detail_url":"https://comicvine.gamespot.com/the-defenders-8-kingpins-of-new-york-part-3/4000-647939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647907/","id":647907,"name":"A Knight In New York Part 2","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-2-a-knight-i/4000-647907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647923/","id":647923,"name":"Super Sons of Tomorrow Part 2: Son Down","site_detail_url":"https://comicvine.gamespot.com/super-sons-11-super-sons-of-tomorrow-part-2-son-do/4000-647923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647948/","id":647948,"name":"The Death of the Mighty Thor Part 3: The Last Days of the Goddess of Thunder","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-702-the-death-of-the-mighty-thor-part-/4000-647948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644514/","id":644514,"name":"War At the Gates of Hell Part III","site_detail_url":"https://comicvine.gamespot.com/spirits-of-vengeance-3-war-at-the-gates-of-hell-pa/4000-644514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649700/","id":649700,"name":"Places We Have Never Known","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-2-places-we-have-never-known/4000-649700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649749/","id":649749,"name":"Phoenix Invictus","site_detail_url":"https://comicvine.gamespot.com/true-believers-death-of-phoenix-1-phoenix-invictus/4000-649749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647947/","id":647947,"name":"Fate of the Four Part 1: Fast Burn; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-1-fate-of-the-four-part-1-fast-b/4000-647947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649744/","id":649744,"name":"Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-men-ii-5-part-five/4000-649744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658681/","id":658681,"name":"A Harlem Murder Mystery Part I: Soaked","site_detail_url":"https://comicvine.gamespot.com/incognegro-renaissance-1-a-harlem-murder-mystery-p/4000-658681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658713/","id":658713,"name":"","site_detail_url":"https://comicvine.gamespot.com/armstrong-and-the-vault-of-spirits-1/4000-658713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658779/","id":658779,"name":null,"site_detail_url":"https://comicvine.gamespot.com/twisted-romance-1/4000-658779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659045/","id":659045,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-worldwide-3-volume-3/4000-659045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658700/","id":658700,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-corps-beware-their-power-1-volum/4000-658700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660044/","id":660044,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/kick-ass-the-dave-lizewski-years-1-book-one/4000-660044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660089/","id":660089,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-1-tpb/4000-660089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644510/","id":644510,"name":"Sabretooth: Round Two Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-fist-75-sabretooth-round-two-part-3/4000-644510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661059/","id":661059,"name":"Invasion of the Triceratons Part Four","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-79-invasion-of-the-tr/4000-661059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661066/","id":661066,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/tenements-towers-and-trash-an-unconventional-illus/4000-661066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661543/","id":661543,"name":"Of Claws and Jaws 2/2","site_detail_url":"https://comicvine.gamespot.com/world-war-wolves-6-of-claws-and-jaws-22/4000-661543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660045/","id":660045,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/kick-ass-the-dave-lizewski-years-2-book-two/4000-660045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660046/","id":660046,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/kick-ass-the-dave-lizewski-years-3-book-three/4000-660046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660047/","id":660047,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/kick-ass-the-dave-lizewski-years-4-book-four/4000-660047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661798/","id":661798,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-annual-2018-1/4000-661798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662597/","id":662597,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-6-/4000-662597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658717/","id":658717,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-and-champions-worlds-collide-1-tpb/4000-658717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660616/","id":660616,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/rebels-these-free-and-independent-states-1-tpb/4000-660616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661120/","id":661120,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-deluxe-edition-2-book-two/4000-661120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659057/","id":659057,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/daredevil-shadowland-omnibus-1-hc/4000-659057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658579/","id":658579,"name":"George Washington!","site_detail_url":"https://comicvine.gamespot.com/action-presidents-1-george-washington/4000-658579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658580/","id":658580,"name":"Abraham Lincoln!","site_detail_url":"https://comicvine.gamespot.com/action-presidents-2-abraham-lincoln/4000-658580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661065/","id":661065,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/brazen-rebel-ladies-who-rocked-the-world-1-gn/4000-661065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644484/","id":644484,"name":"Quiet Night of Quiet Stars","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-2-quiet-night-of-quiet-stars/4000-644484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661119/","id":661119,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jack-kirby-100th-celebration-collection-1-tpb/4000-661119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660048/","id":660048,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-16/4000-660048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661236/","id":661236,"name":"Ride or Die","site_detail_url":"https://comicvine.gamespot.com/rough-riders-ride-or-die-1-ride-or-die/4000-661236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661143/","id":661143,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-adventures-of-captain-america-/4000-661143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658756/","id":658756,"name":"Vol. 18","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-trial-of-krang-1-vol-/4000-658756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644508/","id":644508,"name":"Iceman vs. Iceman","site_detail_url":"https://comicvine.gamespot.com/iceman-8-iceman-vs-iceman/4000-644508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646186/","id":646186,"name":"Deadpool Kills Cable Part Four: God's Light Be Upon Thy Face","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-290-deadpool-kills-cable-part-/4000-646186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647961/","id":647961,"name":"Stars & Garters, Part Three: Finding the Future","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-30-stars-and-garters-part-three-f/4000-647961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658757/","id":658757,"name":"Service Animals Part One; Kingdom of Rats Prelude","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-19-service-a/4000-658757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661060/","id":661060,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-1-volum/4000-661060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659909/","id":659909,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/total-jazz-1-hc/4000-659909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-653013/","id":653013,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-unleashed-10/4000-653013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634536/","id":634536,"name":"Whatever A Spider Can; Lockjaw: Canine Master of Time and Space in Cosmic Rube","site_detail_url":"https://comicvine.gamespot.com/inhumans-once-and-future-kings-4-whatever-a-spider/4000-634536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636346/","id":636346,"name":"Vote Harley Part Four: Exit Tragedy","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-31-vote-harley-part-four-exit-tragedy/4000-636346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636369/","id":636369,"name":"Mayor Fisk Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/daredevil-595-mayor-fisk-part-1-untitled/4000-636369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636382/","id":636382,"name":"Jen Walters Must Die Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/she-hulk-159-jen-walters-must-die-part-1-untitled/4000-636382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636383/","id":636383,"name":"Arms Race Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-23-arms-race-part-1-untitled/4000-636383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636390/","id":636390,"name":"Lethal Protector Part 3","site_detail_url":"https://comicvine.gamespot.com/venom-157-lethal-protector-part-3/4000-636390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636393/","id":636393,"name":"","site_detail_url":"https://comicvine.gamespot.com/zombies-assemble-2-4/4000-636393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638595/","id":638595,"name":"Loki: Sorcerer Supreme Part One; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-381-loki-sorcerer-supreme-part-one-/4000-638595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641377/","id":641377,"name":"That Annihilated Place","site_detail_url":"https://comicvine.gamespot.com/doomsday-clock-1-that-annihilated-place/4000-641377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641397/","id":641397,"name":"8 Years Later Part One; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-13-8-years-late/4000-641397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641404/","id":641404,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-x-9/4000-641404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641469/","id":641469,"name":"Metropolitan","site_detail_url":"https://comicvine.gamespot.com/riverdale-8-metropolitan/4000-641469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643021/","id":643021,"name":"Animal Planet","site_detail_url":"https://comicvine.gamespot.com/super-sons-annual-1-animal-planet/4000-643021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643030/","id":643030,"name":"The Return","site_detail_url":"https://comicvine.gamespot.com/darkhawk-51-the-return/4000-643030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643037/","id":643037,"name":"Crazy Runs In the Family Part 2","site_detail_url":"https://comicvine.gamespot.com/moon-knight-189-crazy-runs-in-the-family-part-2/4000-643037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643047/","id":643047,"name":"Lethal Protector Part 4","site_detail_url":"https://comicvine.gamespot.com/venom-158-lethal-protector-part-4/4000-643047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636385/","id":636385,"name":"War At the Gates of Hell Part II","site_detail_url":"https://comicvine.gamespot.com/spirits-of-vengeance-2-war-at-the-gates-of-hell-pa/4000-636385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650604/","id":650604,"name":"Monster Hunt; Mutagen Maitenance","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-18-monster-h/4000-650604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652358/","id":652358,"name":"Invasion of the Triceratons Part Three","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-78-invasion-of-the-tr/4000-652358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652628/","id":652628,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-secret-empire-1-volume-5/4000-652628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-653035/","id":653035,"name":"Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-the-curse-1-part-1-of-6/4000-653035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654115/","id":654115,"name":"The EC Artists' Library Vol. 21","site_detail_url":"https://comicvine.gamespot.com/master-race-and-other-stories-1-the-ec-artists-lib/4000-654115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655498/","id":655498,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-worldwide-7-volume-7/4000-655498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655502/","id":655502,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fists-1-tpb/4000-655502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655511/","id":655511,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-king-of-the-new-york-streets-1-volume/4000-655511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656028/","id":656028,"name":"Episode One","site_detail_url":"https://comicvine.gamespot.com/mr-ballsy-adventures-1-episode-one/4000-656028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656659/","id":656659,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/baccano-1-vol-1/4000-656659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656710/","id":656710,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mystery-men-the-golden-age-1-tpb/4000-656710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656720/","id":656720,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/venom-lethal-protector-blood-in-the-water-1-volume/4000-656720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658739/","id":658739,"name":"The Intolerance Part Two; Sword of the Blue Scarab","site_detail_url":"https://comicvine.gamespot.com/actionverse-featuring-stray-5-the-intolerance-part/4000-658739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663441/","id":663441,"name":"What Dreams May Come, Part 4","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-answer-the-call-4-what-dreams-may-com/4000-663441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-657258/","id":657258,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-the-judas-contract-the-deluxe-/4000-657258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654041/","id":654041,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/super-powers-by-jack-kirby-1-tpb/4000-654041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654082/","id":654082,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-3-volume-three/4000-654082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634516/","id":634516,"name":"Meet the Jetsons","site_detail_url":"https://comicvine.gamespot.com/the-jetsons-1-meet-the-jetsons/4000-634516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634541/","id":634541,"name":"My Dinner With Jonah!","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-6-my-dinne/4000-634541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654081/","id":654081,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-15/4000-654081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656774/","id":656774,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/is-this-guy-for-real-1-gn/4000-656774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656721/","id":656721,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-2-volume/4000-656721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638604/","id":638604,"name":"Most Wanted Part 1: Find A Way; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-297-most-w/4000-638604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641396/","id":641396,"name":"Orphans of X Part 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-27-orphans-of-x-part-3/4000-641396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656802/","id":656802,"name":"Part Three: 1984-2013","site_detail_url":"https://comicvine.gamespot.com/best-of-enemies-a-history-of-us-and-middle-east-re/4000-656802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688464/","id":688464,"name":"Monsters in Manhattan!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-37-monsters-in-manhatta/4000-688464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864538/","id":864538,"name":null,"site_detail_url":"https://comicvine.gamespot.com/las-aventuras-de-batman-y-las-tortugas-ninja-5/4000-864538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626303/","id":626303,"name":"Lethal Protector Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/venom-155-lethal-protector-part-1-untitled/4000-626303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626285/","id":626285,"name":"Sabretooth: Round Two Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/iron-fist-73-sabretooth-round-two-part-1-untitled/4000-626285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628575/","id":628575,"name":"Fall of Parker Part 1 - Top To Bottom; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-789-fall-of-parker-part-1-t/4000-628575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628578/","id":628578,"name":"Kingpins of New York Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/the-defenders-6-kingpins-of-new-york-part-1-untitl/4000-628578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628581/","id":628581,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-11/4000-628581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628584/","id":628584,"name":"Band of Brothers; Pier Pressure","site_detail_url":"https://comicvine.gamespot.com/inhumans-once-and-future-kings-3-band-of-brothers-/4000-628584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628576/","id":628576,"name":"The Curse of the Green Goblin Part 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-12-the-curse-of/4000-628576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628597/","id":628597,"name":"Doom Sees You Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-21-doom-sees-you-part-1-/4000-628597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628602/","id":628602,"name":"","site_detail_url":"https://comicvine.gamespot.com/zombies-assemble-2-3/4000-628602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630529/","id":630529,"name":"The Death of the Mighty Thor Part 1: The Blood of the Norns; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-700-the-death-of-the-mighty-thor-part-/4000-630529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632488/","id":632488,"name":"Fall of Parker Part 2 -- Breaking Point","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-790-fall-of-parker-part-2-b/4000-632488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632501/","id":632501,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-17/4000-632501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643969/","id":643969,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-darkness-within-1/4000-643969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644257/","id":644257,"name":"The Intolerance Part One; Sword of the Blue Scarab","site_detail_url":"https://comicvine.gamespot.com/actionverse-featuring-stray-4-the-intolerance-part/4000-644257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644546/","id":644546,"name":"Life After Part One","site_detail_url":"https://comicvine.gamespot.com/witchblade-1-life-after-part-one/4000-644546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644586/","id":644586,"name":"","site_detail_url":"https://comicvine.gamespot.com/noble-7/4000-644586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-645296/","id":645296,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-no-surrender-free-preview-1/4000-645296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646113/","id":646113,"name":"Flying Dottie","site_detail_url":"https://comicvine.gamespot.com/pin-up-3-flying-dottie/4000-646113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646114/","id":646114,"name":"Murphy's Law","site_detail_url":"https://comicvine.gamespot.com/sisco-7-murphys-law/4000-646114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646147/","id":646147,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-pirates-ghost-and-metal-monste/4000-646147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646185/","id":646185,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-defenders-diamonds-are-forever-1-volume-1/4000-646185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646193/","id":646193,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-into-the-t/4000-646193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647007/","id":647007,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonisher-3/4000-647007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646286/","id":646286,"name":"1933 The Slash -Cloudy to Rainy-","site_detail_url":"https://comicvine.gamespot.com/baccano-6-1933-first-the-slash-cloudy-to-rainy/4000-646286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630532/","id":630532,"name":"If Trouble Must Come. Part Two","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-7-if-trouble-must-come-part-two/4000-630532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647898/","id":647898,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/joe-golem-occult-detective-flesh-and-blood-1-part-/4000-647898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649782/","id":649782,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/life-with-kevin-1-tpb/4000-649782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644541/","id":644541,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shirtless-bear-fighter-1-tpb/4000-644541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647911/","id":647911,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/everafter-the-unsentimental-education-1-volume-2/4000-647911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644499/","id":644499,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/black-bolt-hard-time-1-volume-1/4000-644499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649687/","id":649687,"name":"","site_detail_url":"https://comicvine.gamespot.com/bprd-the-devil-you-know-5/4000-649687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632494/","id":632494,"name":"Land of the Blind Conclusion","site_detail_url":"https://comicvine.gamespot.com/daredevil-28-land-of-the-blind-conclusion/4000-632494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649736/","id":649736,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-mighty-captain-marvel-band-of-sisters-1-volume/4000-649736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646170/","id":646170,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-earthlings-on-fire-1-volume-4/4000-646170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649752/","id":649752,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/venomverse-1-tpb/4000-649752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632476/","id":632476,"name":"A Cautionary Tale In Six Parts Part One","site_detail_url":"https://comicvine.gamespot.com/the-ruff-and-reddy-show-1-a-cautionary-tale-in-six/4000-632476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647703/","id":647703,"name":"From the Heart, For the Herd Part Two; Triceratots! Part Two","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-17-from-the-/4000-647703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643967/","id":643967,"name":"Invasion of the Triceratons Part Two","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-77-invasion-of-the-tr/4000-643967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432623/","id":432623,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/challengers-of-the-unknown-by-jack-kirby-1-tpb/4000-432623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619626/","id":619626,"name":"The Hunted","site_detail_url":"https://comicvine.gamespot.com/inhumans-once-and-future-kings-2-the-hunted/4000-619626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619644/","id":619644,"name":"","site_detail_url":"https://comicvine.gamespot.com/venomverse-1/4000-619644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619645/","id":619645,"name":null,"site_detail_url":"https://comicvine.gamespot.com/venomverse-war-stories-1/4000-619645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621682/","id":621682,"name":"Push and Pull","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-27-push-and-pull/4000-621682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621687/","id":621687,"name":"","site_detail_url":"https://comicvine.gamespot.com/zombies-assemble-2-2/4000-621687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621660/","id":621660,"name":"Si, Change","site_detail_url":"https://comicvine.gamespot.com/deadpool-36-si-change/4000-621660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622883/","id":622883,"name":"Vote Harley Part One: Junk In the Trunk","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-28-vote-harley-part-one-junk-in-the-t/4000-622883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622932/","id":622932,"name":"The Curse of the Green Goblin Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-11-the-curse-of/4000-622932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622957/","id":622957,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-23/4000-622957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625315/","id":625315,"name":"Girls' Night","site_detail_url":"https://comicvine.gamespot.com/the-mighty-captain-marvel-9-girls-night/4000-625315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625307/","id":625307,"name":"","site_detail_url":"https://comicvine.gamespot.com/generations-sam-wilson-captain-america-and-steve-r/4000-625307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632515/","id":632515,"name":"Chapter 4: The Trash Krakken: Battle For New York","site_detail_url":"https://comicvine.gamespot.com/miraculous-adventures-of-ladybug-and-cat-noir-4-ch/4000-632515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634222/","id":634222,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-1/4000-634222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634551/","id":634551,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/the-shadowbatman-2-part-two/4000-634551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634590/","id":634590,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-complete-year-one-1-hc/4000-634590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635493/","id":635493,"name":"","site_detail_url":"https://comicvine.gamespot.com/you-are-here-1/4000-635493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636327/","id":636327,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/best-wishes-1-ogn/4000-636327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636368/","id":636368,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/black-panther-avengers-of-the-new-world-part-one-1/4000-636368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636384/","id":636384,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-miles-morales-3-volume-3/4000-636384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-637564/","id":637564,"name":"Invasion of the Triceratons Part One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-76-invasion-of-the-tr/4000-637564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638271/","id":638271,"name":"Negotiation By 9mm","site_detail_url":"https://comicvine.gamespot.com/sisco-6-negotiation-by-9mm/4000-638271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638650/","id":638650,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/bolivar-1-ogn/4000-638650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643029/","id":643029,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-supreme-1-volume-5/4000-643029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643102/","id":643102,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-5/4000-643102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643583/","id":643583,"name":"","site_detail_url":"https://comicvine.gamespot.com/faith-fallon-what-price-fame-1/4000-643583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643027/","id":643027,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-the-venom-exper/4000-643027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641378/","id":641378,"name":"Book Fifteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-15-book-fifteen/4000-641378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638588/","id":638588,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-unleashed-secret-empire-1-volume-2/4000-638588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666376/","id":666376,"name":"","site_detail_url":"https://comicvine.gamespot.com/kingdom-of-assassins-1/4000-666376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643032/","id":643032,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-the-secrets-of-maria-hill-1-volume-2/4000-643032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643074/","id":643074,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-14/4000-643074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636478/","id":636478,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-1-volume-2/4000-636478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635899/","id":635899,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-2/4000-635899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-637565/","id":637565,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-3/4000-637565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-640428/","id":640428,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-4/4000-640428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685151/","id":685151,"name":"Edge of Reality","site_detail_url":"https://comicvine.gamespot.com/the-elvis-files-2-edge-of-reality/4000-685151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864324/","id":864324,"name":null,"site_detail_url":"https://comicvine.gamespot.com/las-aventuras-de-batman-y-las-tortugas-ninja-4/4000-864324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611983/","id":611983,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-things-6/4000-611983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612066/","id":612066,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-digest-2/4000-612066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612056/","id":612056,"name":"Kitty Goes To Washington Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-9-kitty-goes-to-washington-part-1/4000-612056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613748/","id":613748,"name":"A Seperate Peace In Pieces!; Kirby \"Grabber\"; Cabbages and Comics","site_detail_url":"https://comicvine.gamespot.com/the-newsboy-legion-and-the-boy-commandos-special-1/4000-613748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613756/","id":613756,"name":"The Tempest's Vow","site_detail_url":"https://comicvine.gamespot.com/titans-14-the-tempests-vow/4000-613756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613788/","id":613788,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-defenders-4/4000-613788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613803/","id":613803,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-8/4000-613803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615014/","id":615014,"name":"A Day In the Life of An Osborn","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-10-a-day-in-the/4000-615014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616199/","id":616199,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-15/4000-616199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626311/","id":626311,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/the-shadowbatman-1-part-one/4000-626311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628683/","id":628683,"name":"","site_detail_url":"https://comicvine.gamespot.com/madison-dark-3/4000-628683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-629387/","id":629387,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-scourge-1-tpb/4000-629387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632509/","id":632509,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/venom-the-land-before-crime-1-volume-2/4000-632509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632536/","id":632536,"name":"What Dreams May Come, Part 1","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-answer-the-call-1-what-dreams-may-com/4000-632536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630603/","id":630603,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spawn-hell-on-earth-1-tpb/4000-630603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634215/","id":634215,"name":"","site_detail_url":"https://comicvine.gamespot.com/mask-first-strike-1/4000-634215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632468/","id":632468,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/jla-a-midsummers-nightmare-the-deluxe-edition-1-hc/4000-632468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634635/","id":634635,"name":"Happy Horror Days! \"Day of the Dead\"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-halloween-comicfest-2017-1-happy-horr/4000-634635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630037/","id":630037,"name":"","site_detail_url":"https://comicvine.gamespot.com/paris-saint-germain-academy-destination-new-york-1/4000-630037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628307/","id":628307,"name":"Kalashnikov Diplomacy","site_detail_url":"https://comicvine.gamespot.com/sisco-5-kalashnikov-diplomacy/4000-628307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630686/","id":630686,"name":"Remember Pearl Harbor","site_detail_url":"https://comicvine.gamespot.com/pin-up-1-remember-pearl-harbor/4000-630686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632503/","id":632503,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/secret-empire-1-hctpb/4000-632503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628666/","id":628666,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-tarot-2/4000-628666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626283/","id":626283,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/hulk-world-war-hulk-omnibus-1-hc/4000-626283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630593/","id":630593,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-13/4000-630593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626305/","id":626305,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-1-volume/4000-626305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628349/","id":628349,"name":"Volume Two: The New Strangeness","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-2-volume-two/4000-628349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628559/","id":628559,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-omnibus-1-volume-1/4000-628559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630509/","id":630509,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-1-volume-1/4000-630509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606635/","id":606635,"name":"The Daily Bugle in \"Back in the Fight;\" Starbrand in \"Walls;\" The Invaders in \"Sanctuary\" Part 3","site_detail_url":"https://comicvine.gamespot.com/secret-empire-brave-new-world-3-the-daily-bugle-in/4000-606635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606645/","id":606645,"name":"Torment Part One of Five","site_detail_url":"https://comicvine.gamespot.com/true-believers-spider-man-1-torment-part-one-of-fi/4000-606645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608263/","id":608263,"name":"The Land Before Crime Part Two","site_detail_url":"https://comicvine.gamespot.com/venom-152-the-land-before-crime-part-two/4000-608263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609284/","id":609284,"name":"The Extinction Machine Part One","site_detail_url":"https://comicvine.gamespot.com/dc-justice-league-essentials-justice-league-1-the-/4000-609284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609345/","id":609345,"name":"Part II","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again-2-part-ii/4000-609345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609349/","id":609349,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/marvels-thor-ragnarok-prelude-2-part-two/4000-609349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610518/","id":610518,"name":"Avengers of the New World Part 4","site_detail_url":"https://comicvine.gamespot.com/black-panther-16-avengers-of-the-new-world-part-4/4000-610518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610533/","id":610533,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-14/4000-610533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610539/","id":610539,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-18/4000-610539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608256/","id":608256,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/spider-men-ii-1-part-one/4000-608256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606639/","id":606639,"name":"Master Plan; Duel To the Death With the Vulture!","site_detail_url":"https://comicvine.gamespot.com/spider-man-master-plan-1-master-plan-duel-to-the-d/4000-606639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619584/","id":619584,"name":"The Rottweiler Years Part One","site_detail_url":"https://comicvine.gamespot.com/actionverse-featuring-stray-1-the-rottweiler-years/4000-619584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621626/","id":621626,"name":"Volume 18","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-18-volume-18/4000-621626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621691/","id":621691,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/jane-1-gn/4000-621691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621754/","id":621754,"name":"The Final Days of Prohibition","site_detail_url":"https://comicvine.gamespot.com/blue-note-1-the-final-days-of-prohibition/4000-621754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621763/","id":621763,"name":"Vol. 1/2","site_detail_url":"https://comicvine.gamespot.com/giant-1-vol-12/4000-621763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622927/","id":622927,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/son-of-shaolin-1-ogn/4000-622927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622901/","id":622901,"name":"","site_detail_url":"https://comicvine.gamespot.com/killer-instinct-1/4000-622901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622741/","id":622741,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/ultraman-9-volume-9/4000-622741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-624973/","id":624973,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/titans-made-in-manhattan-1-volume-2/4000-624973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625174/","id":625174,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/josephine-1-gn/4000-625174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625325/","id":625325,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-daily-bugle-1-tpb/4000-625325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625400/","id":625400,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/going-into-town-a-love-letter-to-new-york-1-gn/4000-625400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621689/","id":621689,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/big-trouble-in-little-chinaescape-from-new-york-1-/4000-621689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622936/","id":622936,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-heart-of-darkness-1-volu/4000-622936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625280/","id":625280,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/future-quest-2-volume-2/4000-625280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632535/","id":632535,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/funko-universe-1-tpb/4000-632535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625356/","id":625356,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/shutter-so-far-beyond-1-volume-five/4000-625356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609335/","id":609335,"name":"The Venom Experiment","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-9-the-venom-exp/4000-609335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621590/","id":621590,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-rebirth-deluxe-edition-1-book-1/4000-621590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625264/","id":625264,"name":"Brooklyn Heights","site_detail_url":"https://comicvine.gamespot.com/rebels-these-free-and-independent-states-7-brookly/4000-625264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621644/","id":621644,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-12/4000-621644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610017/","id":610017,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fists-1/4000-610017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625421/","id":625421,"name":"Man of War","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-6-man-of-war/4000-625421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622878/","id":622878,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/dc-meets-hanna-barbera-1-volume-1/4000-622878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619541/","id":619541,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/grosz-1-hc/4000-619541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-624979/","id":624979,"name":"Chapter 3: The Trash Krakken: The Big Leagues","site_detail_url":"https://comicvine.gamespot.com/miraculous-adventures-of-ladybug-and-cat-noir-3-ch/4000-624979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621631/","id":621631,"name":"Vol. 17","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-desperate-measures-1-/4000-621631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621669/","id":621669,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-marvel-two-in-one-2-volume-2/4000-621669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622949/","id":622949,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-street-magic-1-volume-3/4000-622949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621569/","id":621569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comicsdc-comics-mask-1-tpb/4000-621569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862988/","id":862988,"name":null,"site_detail_url":"https://comicvine.gamespot.com/las-aventuras-de-batman-y-las-tortugas-ninja-1/4000-862988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863585/","id":863585,"name":null,"site_detail_url":"https://comicvine.gamespot.com/las-aventuras-de-batman-y-las-tortugas-ninja-2/4000-863585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599846/","id":599846,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-things-4/4000-599846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599862/","id":599862,"name":"Supreme Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-21-supreme-part-1/4000-599862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599865/","id":599865,"name":"","site_detail_url":"https://comicvine.gamespot.com/iceman-1/4000-599865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601792/","id":601792,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-defenders-1/4000-601792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601808/","id":601808,"name":"The Night Shift Part One","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-24-the-night-shift-part-one/4000-601808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601809/","id":601809,"name":"The Land Before Crime Part One","site_detail_url":"https://comicvine.gamespot.com/venom-151-the-land-before-crime-part-one/4000-601809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601784/","id":601784,"name":"The Venom Solution","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-8-the-venom-sol/4000-601784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603119/","id":603119,"name":"Supreme Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-22-supreme-part-2/4000-603119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603132/","id":603132,"name":"[Untitled]; Spider-Fight","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-1-untitled/4000-603132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605126/","id":605126,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-13/4000-605126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605138/","id":605138,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-peter-parker-the-spectacular-spider/4000-605138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605110/","id":605110,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-defenders-2/4000-605110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599875/","id":599875,"name":"Itsy Bitsy Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-18-itsy-bitsy-part-5/4000-599875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612768/","id":612768,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-van-helsing-vs-frankenstein-1-tp/4000-612768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613764/","id":613764,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/red-sonja-worlds-away-1-volume-1/4000-613764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613768/","id":613768,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-divided-states-of-hysteria-3/4000-613768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613785/","id":613785,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-end-of-the-line-1-volum/4000-613785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615380/","id":615380,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadowflame-undead-love-1/4000-615380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616196/","id":616196,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-mighty-captain-marvel-alien-nation-1-volume-1/4000-616196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616207/","id":616207,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-back-to-the-basics-1-volume-1/4000-616207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615240/","id":615240,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/alexander-hamilton-the-graphic-history-of-an-ameri/4000-615240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613771/","id":613771,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-2-volume-two/4000-613771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617822/","id":617822,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/jupiters-legacy-2-book-two/4000-617822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622705/","id":622705,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-5-/4000-622705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617908/","id":617908,"name":"Act 3","site_detail_url":"https://comicvine.gamespot.com/providence-3-act-3/4000-617908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652504/","id":652504,"name":"There Will Be Time","site_detail_url":"https://comicvine.gamespot.com/destiny-ny-1-there-will-be-time/4000-652504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605068/","id":605068,"name":"Managing People","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-20-managing-people/4000-605068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605113/","id":605113,"name":"Always Bet On Red: Part 5","site_detail_url":"https://comicvine.gamespot.com/elektra-5-always-bet-on-red-part-5/4000-605113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615060/","id":615060,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-tarot-1/4000-615060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613770/","id":613770,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-11/4000-613770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612026/","id":612026,"name":"The Trial of Krang, Part One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-73-the-trial-of-krang/4000-612026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688463/","id":688463,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-25/4000-688463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683345/","id":683345,"name":"Radio Patrol","site_detail_url":"https://comicvine.gamespot.com/gwandanaland-comics-1365-radio-patrol/4000-683345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-607208/","id":607208,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-24/4000-607208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594541/","id":594541,"name":"","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2017-secret-empire-1/4000-594541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595688/","id":595688,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-x-1/4000-595688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595700/","id":595700,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-2/4000-595700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595707/","id":595707,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-20/4000-595707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595708/","id":595708,"name":"Techno Superior Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-4-techno-superior-part-1/4000-595708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595669/","id":595669,"name":"Endless Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-league-21-endless-part-two/4000-595669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597207/","id":597207,"name":"Heart of Darkness; Dependence Day; Malled!","site_detail_url":"https://comicvine.gamespot.com/venom-150-heart-of-darkness-dependence-day-malled/4000-597207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598372/","id":598372,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-21/4000-598372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598375/","id":598375,"name":"The Bitter End","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy-5-the-bitte/4000-598375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594122/","id":594122,"name":"Predators Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-19-predators-part-1/4000-594122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594115/","id":594115,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-8/4000-594115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594125/","id":594125,"name":"Itsy Bitsy Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-17-itsy-bitsy-part-4/4000-594125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594123/","id":594123,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-16/4000-594123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594106/","id":594106,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-bolt-1/4000-594106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594120/","id":594120,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-1/4000-594120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594128/","id":594128,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-5/4000-594128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594129/","id":594129,"name":"Back To The Basics Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-3-back-to-the-basics-part-3/4000-594129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594977/","id":594977,"name":"Coda","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-23-coda/4000-594977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594954/","id":594954,"name":"Immune Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-20-immune-part-2-of-3/4000-594954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594962/","id":594962,"name":"A Space Oddity","site_detail_url":"https://comicvine.gamespot.com/deadpool-30-a-space-oddity/4000-594962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606436/","id":606436,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/appleseed-alpha-1-vol-1/4000-606436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606587/","id":606587,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodshots-day-off-1/4000-606587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606638/","id":606638,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-homecoming-the-art-of-the-movie-1-hc/4000-606638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606606/","id":606606,"name":"","site_detail_url":"https://comicvine.gamespot.com/sacred-creatures-1/4000-606606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608155/","id":608155,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-airship-adventures-of-little-nemo-1-hc/4000-608155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608210/","id":608210,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-divided-states-of-hysteria-2/4000-608210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608260/","id":608260,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-big-apple-showdown-1-volu/4000-608260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609023/","id":609023,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventures-1-tp/4000-609023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609035/","id":609035,"name":"","site_detail_url":"https://comicvine.gamespot.com/time-and-vine-1/4000-609035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609317/","id":609317,"name":"Explosiontown Part One","site_detail_url":"https://comicvine.gamespot.com/curse-words-6-explosiontown-part-one/4000-609317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609318/","id":609318,"name":"The Devil's Deal","site_detail_url":"https://comicvine.gamespot.com/curse-words-1-the-devils-deal/4000-609318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609343/","id":609343,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-identity-1-volume-4/4000-609343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609627/","id":609627,"name":"","site_detail_url":"https://comicvine.gamespot.com/claws-2/4000-609627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594539/","id":594539,"name":"","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2017-all-new-guardians-of-the-/4000-594539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598380/","id":598380,"name":"Death and Birth: Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-14-death-and-birth-part-5-of-5/4000-598380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594959/","id":594959,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-7/4000-594959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594961/","id":594961,"name":"We Are the Streets Part 2: Afro-Blue","site_detail_url":"https://comicvine.gamespot.com/black-panther-and-the-crew-2-we-are-the-streets-pa/4000-594961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594965/","id":594965,"name":"Life During Wartime","site_detail_url":"https://comicvine.gamespot.com/kingpin-4-life-during-wartime/4000-594965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594971/","id":594971,"name":"To Begin the World Over Again Part One","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-1-to-begin-the-world-over-again-pa/4000-594971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594956/","id":594956,"name":"School Daze Part 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-7-school-daze-p/4000-594956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595685/","id":595685,"name":"Purple Conclusion","site_detail_url":"https://comicvine.gamespot.com/daredevil-20-purple-conclusion/4000-595685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595698/","id":595698,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-12/4000-595698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595692/","id":595692,"name":"","site_detail_url":"https://comicvine.gamespot.com/luke-cage-1/4000-595692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608213/","id":608213,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-10/4000-608213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610498/","id":610498,"name":"Coda Obscura, Part Two: Saudade","site_detail_url":"https://comicvine.gamespot.com/shutter-30-coda-obscura-part-two-saudade/4000-610498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610540/","id":610540,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-unity-red-skull-1-volume-4/4000-610540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610497/","id":610497,"name":"Part 2: Enter The Hillbilly Warlock","site_detail_url":"https://comicvine.gamespot.com/shirtless-bear-fighter-2-part-2-enter-the-hillbill/4000-610497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606618/","id":606618,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-by-jonathan-hickman-omnibus-1-volume-1/4000-606618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610449/","id":610449,"name":"","site_detail_url":"https://comicvine.gamespot.com/rebels-these-free-and-independent-states-5/4000-610449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609421/","id":609421,"name":"Volume Two: Dagon and Other Tales","site_detail_url":"https://comicvine.gamespot.com/hp-lovecrafts-worlds-2-volume-two-dagon-and-other-/4000-609421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610606/","id":610606,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/sartre-1-gn/4000-610606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610513/","id":610513,"name":"Pantheon Family Reunion Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-72-pantheon-family-re/4000-610513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609355/","id":609355,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-careless-whisker-s-1-volu/4000-609355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-681612/","id":681612,"name":"The Complete Boy Buddies","site_detail_url":"https://comicvine.gamespot.com/gwandanaland-comics-1236-the-complete-boy-buddies/4000-681612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-685150/","id":685150,"name":"Fact From Fiction","site_detail_url":"https://comicvine.gamespot.com/the-elvis-files-1-fact-from-fiction/4000-685150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603684/","id":603684,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-23/4000-603684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-600750/","id":600750,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-22/4000-600750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590787/","id":590787,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-6/4000-590787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590796/","id":590796,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-7/4000-590796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590802/","id":590802,"name":"Another Future Song","site_detail_url":"https://comicvine.gamespot.com/royals-1-another-future-song/4000-590802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591740/","id":591740,"name":"Made in Manhattan Finale: Powerless","site_detail_url":"https://comicvine.gamespot.com/titans-10-made-in-manhattan-finale-powerless/4000-591740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591756/","id":591756,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-7/4000-591756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591947/","id":591947,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-cable-and-the-new-mutants-1/4000-591947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591949/","id":591949,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-force-1/4000-591949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592610/","id":592610,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-19/4000-592610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592778/","id":592778,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-blue-1/4000-592778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593251/","id":593251,"name":"Avengers of the New World Part 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-13-avengers-of-the-new-world-part-1/4000-593251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593278/","id":593278,"name":"Back To The Basics Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-2-back-to-the-basics-part-2/4000-593278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593426/","id":593426,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-gold-1/4000-593426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591769/","id":591769,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-14/4000-591769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593268/","id":593268,"name":"","site_detail_url":"https://comicvine.gamespot.com/occupy-avengers-6/4000-593268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590810/","id":590810,"name":"Rogue Won","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-22-rogue-won/4000-590810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590785/","id":590785,"name":"Immune Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-19-immune-part-1-of-3/4000-590785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590790/","id":590790,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-15/4000-590790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590805/","id":590805,"name":"'Til Death Do Us... Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-16-til-death-do-us-part-4/4000-590805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590804/","id":590804,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-15/4000-590804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590811/","id":590811,"name":"Back To The Basics Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-1-back-to-the-basics-part-1/4000-590811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591751/","id":591751,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-21/4000-591751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591745/","id":591745,"name":"The Osborn identity Part Two: Fight Or Flight","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-26-the-osborn-identity-part/4000-591745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591768/","id":591768,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-19/4000-591768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591753/","id":591753,"name":"'Til Death Do Us... Part 5","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-10-til-death-do-u/4000-591753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591763/","id":591763,"name":"Episode Seven: The Bluest Eye","site_detail_url":"https://comicvine.gamespot.com/mosaic-7-episode-seven-the-bluest-eye/4000-591763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591765/","id":591765,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-15/4000-591765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591749/","id":591749,"name":"We Are the Streets Part 1: Double Consciousness","site_detail_url":"https://comicvine.gamespot.com/black-panther-and-the-crew-1-we-are-the-streets-pa/4000-591749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591754/","id":591754,"name":"Bullet to the Brain","site_detail_url":"https://comicvine.gamespot.com/deadpool-vs-the-punisher-1-bullet-to-the-brain/4000-591754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591760/","id":591760,"name":"By the Throat","site_detail_url":"https://comicvine.gamespot.com/kingpin-3-by-the-throat/4000-591760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591747/","id":591747,"name":"School Daze Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-6-school-daze-p/4000-591747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591770/","id":591770,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-4/4000-591770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592596/","id":592596,"name":"The Power of Strange Compels You","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-19-the-power-of-strange-compels-you/4000-592596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592594/","id":592594,"name":"Purple Part 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-19-purple-part-3/4000-592594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592595/","id":592595,"name":"'Til Death Do Us... Part 6","site_detail_url":"https://comicvine.gamespot.com/deadpool-29-til-death-do-us-part-6/4000-592595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599947/","id":599947,"name":"Deep South","site_detail_url":"https://comicvine.gamespot.com/ekho-6-deep-south/4000-599947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592615/","id":592615,"name":"Big Apple Showdown: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-18-big-apple-showdown-con/4000-592615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592590/","id":592590,"name":"Death of the White Tiger","site_detail_url":"https://comicvine.gamespot.com/black-panther-world-of-wakanda-6-death-of-the-whit/4000-592590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592598/","id":592598,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-6/4000-592598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599905/","id":599905,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-274/4000-599905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592609/","id":592609,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-0/4000-592609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592616/","id":592616,"name":"Meet the New Boss","site_detail_url":"https://comicvine.gamespot.com/usavengers-5-meet-the-new-boss/4000-592616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592617/","id":592617,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-6/4000-592617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601856/","id":601856,"name":"Alligators In the Sewer","site_detail_url":"https://comicvine.gamespot.com/grimm-tales-of-terror-6-alligators-in-the-sewer/4000-601856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601785/","id":601785,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-brawl-in-the-fa/4000-601785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601803/","id":601803,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-brand-new-day-the-complete-/4000-601803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601810/","id":601810,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/venom-homecoming-1-volume-1/4000-601810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601750/","id":601750,"name":"Concrete Jungle and Other Stories","site_detail_url":"https://comicvine.gamespot.com/predator-the-original-comics-series-1-concrete-jun/4000-601750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593266/","id":593266,"name":"The Smartest There Is! Part Six: Full Moon","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-18-the-smartest-there/4000-593266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593269/","id":593269,"name":"Past Lives: Part II of IV","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-22-past-lives-part-ii-of-iv/4000-593269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593270/","id":593270,"name":"The End of All Things","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-17-the-end-of-all-things/4000-593270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593259/","id":593259,"name":"Always Bet On Red: Part 3","site_detail_url":"https://comicvine.gamespot.com/elektra-3-always-bet-on-red-part-3/4000-593259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593261/","id":593261,"name":"Deconstructed Part Five","site_detail_url":"https://comicvine.gamespot.com/hulk-5-deconstructed-part-five/4000-593261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593264/","id":593264,"name":"Alien Nation Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/the-mighty-captain-marvel-4-alien-nation-part-4-of/4000-593264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593275/","id":593275,"name":"War In Heaven","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-6-war-in-heaven/4000-593275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603147/","id":603147,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-troubleshooters-1-volume-1/4000-603147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603153/","id":603153,"name":"So We Meet Again","site_detail_url":"https://comicvine.gamespot.com/red-sonja-6-so-we-meet-again/4000-603153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-604917/","id":604917,"name":"Chapter Four: The Cosmic Shimmy","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-101-4-chapter-four-the-cosmic-shimmy/4000-604917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605114/","id":605114,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-epic-collection-the-master-plan-of-/4000-605114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605100/","id":605100,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-275/4000-605100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606429/","id":606429,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/one-eyed-jack-1-tpb/4000-606429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610510/","id":610510,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/real-science-adventures-billion-dollar-plot-1-volu/4000-610510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593271/","id":593271,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-5/4000-593271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592613/","id":592613,"name":"How We Die","site_detail_url":"https://comicvine.gamespot.com/star-lord-6-how-we-die/4000-592613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591758/","id":591758,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-19/4000-591758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592597/","id":592597,"name":"Dream On; But Are They Ready For... Taserface!","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-dream-on-1-dream-on-but-ar/4000-592597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593262/","id":593262,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-7/4000-593262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-600566/","id":600566,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-omnibus-2-volume-2/4000-600566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605098/","id":605098,"name":"Coda Obscura, Part One: What Years May Come","site_detail_url":"https://comicvine.gamespot.com/shutter-29-coda-obscura-part-one-what-years-may-co/4000-605098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603140/","id":603140,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-lord-grounded-1-tpb/4000-603140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603156/","id":603156,"name":"Set the Scales","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-6-set-the-scales/4000-603156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590780/","id":590780,"name":"Wash, Rinse, Refreak!; Over the Boardwalk; It's a Mystery!","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-80-wash-rinse-refreak-ove/4000-590780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617566/","id":617566,"name":"L'entrée du Loup","site_detail_url":"https://comicvine.gamespot.com/jack-wolfgang-1-lentree-du-loup/4000-617566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-600073/","id":600073,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-21/4000-600073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595638/","id":595638,"name":"The Clone Conspiracy Begins!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-20-the-clone-conspiracy/4000-595638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583719/","id":583719,"name":"The World's Finest Super-Surgeons","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-18-the-worlds-finest-super-surgeons/4000-583719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583724/","id":583724,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-4/4000-583724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583730/","id":583730,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-homecoming-prelude-1/4000-583730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583847/","id":583847,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-special-edition-4/4000-583847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585072/","id":585072,"name":"Made In Manhattan Part Two: Buzz Kill","site_detail_url":"https://comicvine.gamespot.com/titans-9-made-in-manhattan-part-two-buzz-kill/4000-585072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583716/","id":583716,"name":"'Til Death Do Us... Part 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-28-til-death-do-us-part-1/4000-583716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587412/","id":587412,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-5/4000-587412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587423/","id":587423,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-5/4000-587423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587397/","id":587397,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-2-chapter-two/4000-587397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587710/","id":587710,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-special-edition-5/4000-587710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589815/","id":589815,"name":"Titans: Legacy","site_detail_url":"https://comicvine.gamespot.com/titans-annual-1-titans-legacy/4000-589815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583712/","id":583712,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-5/4000-583712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583727/","id":583727,"name":"From the Ashes","site_detail_url":"https://comicvine.gamespot.com/silk-18-from-the-ashes/4000-583727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583733/","id":583733,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-3/4000-583733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585095/","id":585095,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-18/4000-585095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585078/","id":585078,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-6/4000-585078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585081/","id":585081,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-6/4000-585081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585086/","id":585086,"name":"Episode Six: Native Son","site_detail_url":"https://comicvine.gamespot.com/mosaic-6-episode-six-native-son/4000-585086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585089/","id":585089,"name":"Gone Real Bad: Part I of II","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-19-gone-real-bad-part-i-of-ii/4000-585089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585090/","id":585090,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-14/4000-585090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585093/","id":585093,"name":"'Til Death Do Us... Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-15-til-death-do-us-part-2/4000-585093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585096/","id":585096,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-13/4000-585096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585080/","id":585080,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-6/4000-585080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585082/","id":585082,"name":"Messes of Men","site_detail_url":"https://comicvine.gamespot.com/kingpin-2-messes-of-men/4000-585082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594086/","id":594086,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-fateful-threads-1-volume-3/4000-594086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594118/","id":594118,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-594118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585088/","id":585088,"name":"","site_detail_url":"https://comicvine.gamespot.com/nova-4/4000-585088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587402/","id":587402,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-20/4000-587402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587400/","id":587400,"name":"Part One: \"Bug Hunt\"; Police & Thieves; Spider-Man Tsum-Up!; Mutts Ado About Nothing","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-25-part-one-bug-hunt-police/4000-587400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587421/","id":587421,"name":"Maximum Effort","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-21-maximum-effort/4000-587421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587403/","id":587403,"name":"Purple Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-18-purple-part-2/4000-587403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587413/","id":587413,"name":"Damage Per Second Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-16-damage-per-second-part-3-of-4/4000-587413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587414/","id":587414,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-16/4000-587414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587417/","id":587417,"name":"Sitting In A Tree Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-man-14-sitting-in-a-tree-part-5/4000-587417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594547/","id":594547,"name":"","site_detail_url":"https://comicvine.gamespot.com/keyser-sozethe-rift-1/4000-594547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594557/","id":594557,"name":"Archie in \"Sweetwater\"; Veronica in \"Fall From Grace\"","site_detail_url":"https://comicvine.gamespot.com/riverdale-free-comic-book-day-1-archie-in-sweetwat/4000-594557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594906/","id":594906,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-funko-universe-one-shot-1/4000-594906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594990/","id":594990,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-cloud-2/4000-594990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595042/","id":595042,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-sound-of-the-world-by-heart-1-gn/4000-595042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594964/","id":594964,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-uncaged-1-volume-1/4000-594964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588574/","id":588574,"name":"Sittin' In A Tree Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-18-sittin-in-a-tree-conclusion/4000-588574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588578/","id":588578,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-20/4000-588578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583711/","id":583711,"name":"Pa' Fuera, Pa' La Calle","site_detail_url":"https://comicvine.gamespot.com/america-1-pa-fuera-pa-la-calle/4000-583711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588570/","id":588570,"name":"The Smartest There Is! Part Five: X Equals","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-17-the-smartest-there/4000-588570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588572/","id":588572,"name":"","site_detail_url":"https://comicvine.gamespot.com/prowler-6/4000-588572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588564/","id":588564,"name":"","site_detail_url":"https://comicvine.gamespot.com/foolkiller-5/4000-588564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588566/","id":588566,"name":"Deconstructed Part Four","site_detail_url":"https://comicvine.gamespot.com/hulk-4-deconstructed-part-four/4000-588566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595711/","id":595711,"name":"So We Meet Again","site_detail_url":"https://comicvine.gamespot.com/red-sonja-5-so-we-meet-again/4000-595711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595728/","id":595728,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-25th-anniversary-directors-cut-1/4000-595728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595759/","id":595759,"name":"End Game","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-12-end-game/4000-595759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595727/","id":595727,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-273/4000-595727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588555/","id":588555,"name":"Brawl In the Family: Part 5","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-5-brawl-in-the-/4000-588555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589821/","id":589821,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-19/4000-589821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589825/","id":589825,"name":"'Til Death Do Us... Part 3","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-9-til-death-do-us/4000-589825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589835/","id":589835,"name":"Gone Real Bad: Part II of II","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-20-gone-real-bad-part-ii-of-ii/4000-589835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589837/","id":589837,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-17/4000-589837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589823/","id":589823,"name":"Death Be Not Proud!","site_detail_url":"https://comicvine.gamespot.com/avengers-51-death-be-not-proud/4000-589823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589831/","id":589831,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumans-prime-1/4000-589831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589842/","id":589842,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-prime-1/4000-589842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597093/","id":597093,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/everything-is-flammable-1-hc/4000-597093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597222/","id":597222,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/moonshine-1-vol-1/4000-597222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597569/","id":597569,"name":"One Lucky Bride; Under The Oak Trees; Walk It Off","site_detail_url":"https://comicvine.gamespot.com/fresh-romance-9-one-lucky-bride-under-the-oak-tree/4000-597569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598281/","id":598281,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/lennon-the-new-york-years-1-hc/4000-598281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595686/","id":595686,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/deadpool-bad-blood-1-ogn/4000-595686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-604912/","id":604912,"name":"The Age of Innocence","site_detail_url":"https://comicvine.gamespot.com/alack-sinner-1-the-age-of-innocence/4000-604912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588573/","id":588573,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-4/4000-588573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598414/","id":598414,"name":"Act 2","site_detail_url":"https://comicvine.gamespot.com/providence-2-act-2/4000-598414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587418/","id":587418,"name":"Silver & Diamonds: Earth-Lord Part Four","site_detail_url":"https://comicvine.gamespot.com/star-lord-4-silver-and-diamonds-earth-lord-part-fo/4000-587418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589838/","id":589838,"name":"The Heist: Earth-Lord Part Five","site_detail_url":"https://comicvine.gamespot.com/star-lord-5-the-heist-earth-lord-part-five/4000-589838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587408/","id":587408,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-18/4000-587408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598404/","id":598404,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-9/4000-598404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597190/","id":597190,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-out-of-ti/4000-597190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598366/","id":598366,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-four-1-tpb/4000-598366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583694/","id":583694,"name":"Here We Go Gathering Huts In May: Prologue to The Unsentimental Education","site_detail_url":"https://comicvine.gamespot.com/everafter-7-here-we-go-gathering-huts-in-may-prolo/4000-583694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595651/","id":595651,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/josephine-baker-1-hc/4000-595651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589802/","id":589802,"name":"Booster Trouble; Eternal Upgrade","site_detail_url":"https://comicvine.gamespot.com/booster-goldthe-flintstones-special-1-booster-trou/4000-589802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594996/","id":594996,"name":"Vol. 2: Hock","site_detail_url":"https://comicvine.gamespot.com/lazarus-sourcebook-2-vol-2-hock/4000-594996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594140/","id":594140,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-kill-or-be-killed-1/4000-594140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589807/","id":589807,"name":"The Wonders of Space; Ruff 'n' Reddy!","site_detail_url":"https://comicvine.gamespot.com/green-lanternspace-ghost-special-1-the-wonders-of-/4000-589807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601641/","id":601641,"name":"Desperate Measures Part 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-70-desperate-measures/4000-601641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596817/","id":596817,"name":"Toad Baron's Ball Part 2; What Is Ninja? Part 5","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-10-toad-baro/4000-596817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594563/","id":594563,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-free-comic-book-day-2/4000-594563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-841674/","id":841674,"name":null,"site_detail_url":"https://comicvine.gamespot.com/arlequina-1/4000-841674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580732/","id":580732,"name":"Made In Manhattan Part One: To Bee Or Not To Bee","site_detail_url":"https://comicvine.gamespot.com/titans-8-made-in-manhattan-part-one-to-bee-or-not-/4000-580732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580748/","id":580748,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-3/4000-580748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580757/","id":580757,"name":"Born Against","site_detail_url":"https://comicvine.gamespot.com/kingpin-1-born-against/4000-580757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580764/","id":580764,"name":"Big Apple Showdown: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-16-big-apple-showdown-par/4000-580764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581542/","id":581542,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/the-wild-storm-1-chapter-one/4000-581542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581562/","id":581562,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-3/4000-581562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581719/","id":581719,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-special-edition-3/4000-581719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582542/","id":582542,"name":"","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-15/4000-582542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579319/","id":579319,"name":"Death and Birth: Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-11-death-and-birth-part-2-of-5/4000-579319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579313/","id":579313,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-8/4000-579313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579312/","id":579312,"name":"Heart-Shaped Box","site_detail_url":"https://comicvine.gamespot.com/deadpool-26-heart-shaped-box/4000-579312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579325/","id":579325,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-11/4000-579325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579318/","id":579318,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-2/4000-579318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579326/","id":579326,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-2/4000-579326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580765/","id":580765,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-17/4000-580765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589877/","id":589877,"name":"Let's Start A War.","site_detail_url":"https://comicvine.gamespot.com/peepland-5-lets-start-a-war/4000-589877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580756/","id":580756,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-5/4000-580756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580762/","id":580762,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-13/4000-580762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590871/","id":590871,"name":"Chapter Five: Restless","site_detail_url":"https://comicvine.gamespot.com/hellchild-the-unholy-5-chapter-five-restless/4000-590871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590800/","id":590800,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4000-590800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580751/","id":580751,"name":"","site_detail_url":"https://comicvine.gamespot.com/foolkiller-4/4000-580751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580740/","id":580740,"name":"Brawl In the Family: Part 4","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-4-brawl-in-the-/4000-580740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581548/","id":581548,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-19/4000-581548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581555/","id":581555,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-1mu/4000-581555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591651/","id":591651,"name":"Volume 17","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-17-volume-17/4000-591651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591660/","id":591660,"name":"Vol. 16","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-chasing-phantoms-1-vo/4000-591660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581556/","id":581556,"name":"State of Misery","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-17-state-of-misery/4000-581556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591741/","id":591741,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/vigilante-by-marv-wolfman-1-volume-one/4000-591741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581551/","id":581551,"name":"Purple Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-17-purple-part-1/4000-581551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581564/","id":581564,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-15/4000-581564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581568/","id":581568,"name":"Sitting In A Tree Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-13-sitting-in-a-tree-part-3/4000-581568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591802/","id":591802,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-of-the-apesgreen-lantern-3/4000-591802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581572/","id":581572,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-12/4000-581572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592623/","id":592623,"name":"So We Meet Again","site_detail_url":"https://comicvine.gamespot.com/red-sonja-4-so-we-meet-again/4000-592623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592667/","id":592667,"name":"Child of Darkness","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-11-child-of-darkness/4000-592667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592678/","id":592678,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/imagine-wanting-only-this-1-gn/4000-592678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581560/","id":581560,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-4/4000-581560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592611/","id":592611,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-4-volume-four/4000-592611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591726/","id":591726,"name":"Book Fourteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-14-book-fourteen/4000-591726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592612/","id":592612,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-friendly-neighborhood-spider-man-by-pet/4000-592612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581575/","id":581575,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-4/4000-581575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582544/","id":582544,"name":"Sitting In A Tree Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-17-sitting-in-a-tree-part-4/4000-582544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582516/","id":582516,"name":"Night of the Jackals","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-24-night-of-the-jackals/4000-582516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582549/","id":582549,"name":"As the World Burns","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-20-as-the-world-burns/4000-582549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582519/","id":582519,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-12/4000-582519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582520/","id":582520,"name":"","site_detail_url":"https://comicvine.gamespot.com/champions-1mu/4000-582520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593215/","id":593215,"name":"","site_detail_url":"https://comicvine.gamespot.com/rebels-these-free-and-independent-states-2/4000-593215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593245/","id":593245,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bloodshot-usa-1-tpb/4000-593245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593267/","id":593267,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/mosaic-king-of-the-world-1-volume-1/4000-593267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593327/","id":593327,"name":"How I Learned To Travel Through Time Like A Ghost","site_detail_url":"https://comicvine.gamespot.com/van-helsing-vs-the-mummy-of-amun-ra-4-how-i-learne/4000-593327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582536/","id":582536,"name":"The Smartest There Is! Part Four: Science Fiction","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-16-the-smartest-there/4000-582536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582537/","id":582537,"name":"Episode Five: Invisible Man","site_detail_url":"https://comicvine.gamespot.com/mosaic-5-episode-five-invisible-man/4000-582537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582517/","id":582517,"name":"Showdown With the Frightful Four!","site_detail_url":"https://comicvine.gamespot.com/avengers-41-showdown-with-the-frightful-four/4000-582517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579306/","id":579306,"name":"The Colombian Connection Part 1; If I Tell You...","site_detail_url":"https://comicvine.gamespot.com/bullseye-1-the-colombian-connection-part-1-if-i-te/4000-579306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582526/","id":582526,"name":"Always Bet On Red: Part 1","site_detail_url":"https://comicvine.gamespot.com/elektra-1-always-bet-on-red-part-1/4000-582526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582532/","id":582532,"name":"Deconstructed Part Three","site_detail_url":"https://comicvine.gamespot.com/hulk-3-deconstructed-part-three/4000-582532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582538/","id":582538,"name":"","site_detail_url":"https://comicvine.gamespot.com/occupy-avengers-4/4000-582538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594035/","id":594035,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-deluxe-ed/4000-594035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594036/","id":594036,"name":"Volume One: The War To Come","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-1-volume-one/4000-594036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591792/","id":591792,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-272/4000-591792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593284/","id":593284,"name":"Hire the Man, Not the Gun","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-5-hire-the-man-not-the-gu/4000-593284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591781/","id":591781,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-complete-phonogram-1-hc/4000-591781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582541/","id":582541,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-3/4000-582541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581569/","id":581569,"name":"Earth-Lord Part 3: Making Your Way In the World Today Takes Everything You've Got","site_detail_url":"https://comicvine.gamespot.com/star-lord-3-earth-lord-part-3-making-your-way-in-t/4000-581569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580753/","id":580753,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-17/4000-580753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593291/","id":593291,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-8/4000-593291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581516/","id":581516,"name":"Warhead Part One","site_detail_url":"https://comicvine.gamespot.com/aquaman-17-warhead-part-one/4000-581516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590789/","id":590789,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-justice-is-served-/4000-590789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594028/","id":594028,"name":"Chapter Two: Let's Show the New Guy The Magic Door In the Basement","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-101-2-chapter-two-lets-show-the-new-g/4000-594028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590797/","id":590797,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-avengers-i/4000-590797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594033/","id":594033,"name":"Desperate Measures Part 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-69-desperate-measures/4000-594033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592608/","id":592608,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-the-final-hex-1-volume-3/4000-592608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591776/","id":591776,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/lone-rangergreen-hornet-champions-of-justice-1-tpb/4000-591776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575850/","id":575850,"name":"Home Sweet Home","site_detail_url":"https://comicvine.gamespot.com/titans-7-home-sweet-home/4000-575850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575856/","id":575856,"name":"Brawl in the Family: Part 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-brawl-in-the-/4000-575856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575861/","id":575861,"name":"The Seventh Day, Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-15-the-seventh-day-part-1/4000-575861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575880/","id":575880,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-2/4000-575880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575868/","id":575868,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-16/4000-575868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576620/","id":576620,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-7/4000-576620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578452/","id":578452,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-10/4000-578452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578455/","id":578455,"name":"The Seventh Day, Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-16-the-seventh-day-part-2/4000-578455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578467/","id":578467,"name":"Double Agent Venom","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-578467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578462/","id":578462,"name":"Deconstructed, Part Two","site_detail_url":"https://comicvine.gamespot.com/hulk-2-deconstructed-part-two/4000-578462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574860/","id":574860,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-17/4000-574860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574871/","id":574871,"name":"Death and Birth: Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-10-death-and-birth-part-1-of-5/4000-574871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574874/","id":574874,"name":"","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-14/4000-574874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575885/","id":575885,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-16/4000-575885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575886/","id":575886,"name":"Lights Out","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-19-lights-out/4000-575886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575863/","id":575863,"name":"Deferred Payment Plan","site_detail_url":"https://comicvine.gamespot.com/deadpool-24-deferred-payment-plan/4000-575863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575871/","id":575871,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-4/4000-575871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575876/","id":575876,"name":"Damage Per Second Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-14-damage-per-second-part-1-of-4/4000-575876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575879/","id":575879,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-12/4000-575879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575881/","id":575881,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-16/4000-575881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575883/","id":575883,"name":"Itsy Bitsy Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-13-itsy-bitsy-part-3/4000-575883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575882/","id":575882,"name":"Sitting In A Tree Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-12-sitting-in-a-tree-part-1/4000-575882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583686/","id":583686,"name":"","site_detail_url":"https://comicvine.gamespot.com/kingsway-west-4/4000-583686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575866/","id":575866,"name":"","site_detail_url":"https://comicvine.gamespot.com/foolkiller-3/4000-575866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575870/","id":575870,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-2/4000-575870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576618/","id":576618,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-18/4000-576618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576633/","id":576633,"name":"Sitting In A Tree Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-16-sitting-in-a-tree-part-2/4000-576633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576612/","id":576612,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-17/4000-576612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576617/","id":576617,"name":"","site_detail_url":"https://comicvine.gamespot.com/cage-4/4000-576617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585134/","id":585134,"name":"Chapter Four: Die, Jezebel Felina","site_detail_url":"https://comicvine.gamespot.com/hellchild-the-unholy-4-chapter-four-die-jezebel-fe/4000-585134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576630/","id":576630,"name":"Episode Four: Parable of the Talents","site_detail_url":"https://comicvine.gamespot.com/mosaic-4-episode-four-parable-of-the-talents/4000-576630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576631/","id":576631,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-14/4000-576631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576635/","id":576635,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-15/4000-576635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576640/","id":576640,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-10/4000-576640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576614/","id":576614,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-31/4000-576614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576615/","id":576615,"name":"Dawn of the Midnight Angels Part 3","site_detail_url":"https://comicvine.gamespot.com/black-panther-world-of-wakanda-3-dawn-of-the-midni/4000-576615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576629/","id":576629,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-1/4000-576629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576628/","id":576628,"name":"Alien Nation Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-mighty-captain-marvel-1-alien-nation-part-1-of/4000-576628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576642/","id":576642,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-3/4000-576642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578457/","id":578457,"name":"Blood In the Aether Chapter Five: The Dread","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-16-blood-in-the-aether-chapter-five/4000-578457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578456/","id":578456,"name":"Go Ask The Skrulls, Child","site_detail_url":"https://comicvine.gamespot.com/deadpool-25-go-ask-the-skrulls-child/4000-578456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578468/","id":578468,"name":"The Smartest There Is! Part Three: Code","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-15-the-smartest-there/4000-578468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587406/","id":587406,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/excalibur-epic-collection-the-sword-is-drawn-1-vol/4000-587406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587427/","id":587427,"name":"So We Meet Again","site_detail_url":"https://comicvine.gamespot.com/red-sonja-3-so-we-meet-again/4000-587427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578474/","id":578474,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-15/4000-578474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587473/","id":587473,"name":"New York State of Mind","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-10-new-york-state-of-mind/4000-587473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578479/","id":578479,"name":"Big Apple Showdown: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-15-big-apple-showdown-par/4000-578479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587968/","id":587968,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-die-laughing-1-vol-1/4000-587968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578450/","id":578450,"name":"Minor Mobsters, Major Monsters","site_detail_url":"https://comicvine.gamespot.com/avengers-1mu-minor-mobsters-major-monsters/4000-578450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578454/","id":578454,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-the-oath-1/4000-578454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578465/","id":578465,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-3/4000-578465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574879/","id":574879,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-1/4000-574879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588451/","id":588451,"name":"Through the Looking Glass","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventure-5-thr/4000-588451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588467/","id":588467,"name":"Desperate Measures Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-68-desperate-measures/4000-588467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588571/","id":588571,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/night-raven-from-the-marvel-uk-vaults-1-tpb/4000-588571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589796/","id":589796,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-pirates-ghost-1/4000-589796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588669/","id":588669,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/fire-the-zora-neale-hurston-story-1-hc/4000-588669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589817/","id":589817,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-and-the-justice-league-america-1-volu/4000-589817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588539/","id":588539,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-flintstones-1-volume-1/4000-588539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587449/","id":587449,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-271/4000-587449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587313/","id":587313,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-deluxe-edition-1-book-one/4000-587313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589863/","id":589863,"name":"Yael's Quest; Webwitch: Death of a King; UnHoly Origins","site_detail_url":"https://comicvine.gamespot.com/unholy-3-yaels-quest-webwitch-death-of-a-king-unho/4000-589863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585268/","id":585268,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-professional-1-vol-1/4000-585268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574872/","id":574872,"name":"","site_detail_url":"https://comicvine.gamespot.com/nova-2/4000-574872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598542/","id":598542,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-73/4000-598542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589861/","id":589861,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/velvet-deluxe-edition-1-hc/4000-589861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587450/","id":587450,"name":"Act 1","site_detail_url":"https://comicvine.gamespot.com/providence-1-act-1/4000-587450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576636/","id":576636,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-lord-2/4000-576636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587443/","id":587443,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-7/4000-587443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583726/","id":583726,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/shang-chi-master-of-kung-fu-omnibus-3-volume-3/4000-583726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588603/","id":588603,"name":"So Far Beyond Part Six","site_detail_url":"https://comicvine.gamespot.com/shutter-28-so-far-beyond-part-six/4000-588603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588581/","id":588581,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-epic-collection-under-the-gun-1-volume-1/4000-588581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588675/","id":588675,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/a-treasury-of-xx-century-murder-compendium-i-1-hc/4000-588675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-584938/","id":584938,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/best-we-could-do-1-gn/4000-584938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585091/","id":585091,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-civil-war-ii-1-volume-2/4000-585091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587531/","id":587531,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-8/4000-587531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587526/","id":587526,"name":"Shush!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-15-shush/4000-587526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566703/","id":566703,"name":"Brawl In the Family: Part 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-2-brawl-in-the-/4000-566703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566711/","id":566711,"name":"","site_detail_url":"https://comicvine.gamespot.com/gwenpool-holiday-special-merry-mix-up-1/4000-566711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566713/","id":566713,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-1/4000-566713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569324/","id":569324,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-21/4000-569324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569336/","id":569336,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-captain-marvel-0/4000-569336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571683/","id":571683,"name":"The Spider-Man/Deadpool Ho-Ho-Holiday Special!","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-12-the-spider-mandeadpool-ho-ho/4000-571683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571670/","id":571670,"name":"Deconstructed, Part One","site_detail_url":"https://comicvine.gamespot.com/hulk-1-deconstructed-part-one/4000-571670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563720/","id":563720,"name":"Do The Truffle Shuffle","site_detail_url":"https://comicvine.gamespot.com/deadpool-23-do-the-truffle-shuffle/4000-563720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563722/","id":563722,"name":"Incarnations: Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/moon-knight-9-incarnations-part-4-of-4/4000-563722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563729/","id":563729,"name":"The Thief of Asgard","site_detail_url":"https://comicvine.gamespot.com/the-unworthy-thor-2-the-thief-of-asgard/4000-563729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566726/","id":566726,"name":"The Mighty Mewnir","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-15-the-mighty-mewnir/4000-566726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566727/","id":566727,"name":"No Rest For the Weary","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-17-no-rest-for-the-weary/4000-566727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566704/","id":566704,"name":"Dark Art Part V","site_detail_url":"https://comicvine.gamespot.com/daredevil-14-dark-art-part-v/4000-566704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566706/","id":566706,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-back-in-black-5/4000-566706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566714/","id":566714,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-3/4000-566714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566717/","id":566717,"name":"Episode Three: Parable of the Sower","site_detail_url":"https://comicvine.gamespot.com/mosaic-3-episode-three-parable-of-the-sower/4000-566717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566721/","id":566721,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-11/4000-566721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566723/","id":566723,"name":"The Night Shift","site_detail_url":"https://comicvine.gamespot.com/silk-15-the-night-shift/4000-566723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566724/","id":566724,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-10/4000-566724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566708/","id":566708,"name":"","site_detail_url":"https://comicvine.gamespot.com/foolkiller-2/4000-566708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569327/","id":569327,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-16/4000-569327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569330/","id":569330,"name":"Blood In the Aether Chapter Four: The Face of Sin","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-15-blood-in-the-aether-chapter-four/4000-569330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569346/","id":569346,"name":"I Don't Wanna Fight Tonight! (With Yooouu!)","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-15-i-dont-wanna-fight-tonight-with-yoo/4000-569346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569323/","id":569323,"name":"Seeing Red","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-22-seeing-red/4000-569323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569328/","id":569328,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-6/4000-569328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569338/","id":569338,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-13/4000-569338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579362/","id":579362,"name":"","site_detail_url":"https://comicvine.gamespot.com/but-like-maybe-2/4000-579362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579389/","id":579389,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/little-tulip-1-sc/4000-579389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569348/","id":569348,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-14/4000-569348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569353/","id":569353,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-9/4000-569353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569340/","id":569340,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-sweet-christmas-annual-1/4000-569340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580571/","id":580571,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-12/4000-580571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580708/","id":580708,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/weird-detective-1-tpb/4000-580708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569355/","id":569355,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-2/4000-569355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571692/","id":571692,"name":"Never Gonna Give You Up","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-18-never-gonna-give-you-up/4000-571692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571693/","id":571693,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-17/4000-571693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571661/","id":571661,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-8/4000-571661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580735/","id":580735,"name":"[Untitled]; The Origin of Baba Yaga","site_detail_url":"https://comicvine.gamespot.com/divinity-iii-shadowman-and-the-battle-for-new-stal/4000-580735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571665/","id":571665,"name":"","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-17/4000-571665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571671/","id":571671,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-3/4000-571671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571675/","id":571675,"name":"The Smartest There Is! Part Two: Yancy Street Smarts","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-14-the-smartest-there/4000-571675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581412/","id":581412,"name":"To Laugh So Not To Cry","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventure-4-to-/4000-581412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571682/","id":571682,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-11/4000-571682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571684/","id":571684,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-14/4000-571684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581496/","id":581496,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/lovers-in-the-garden-1-gn/4000-581496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580789/","id":580789,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-270/4000-580789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582271/","id":582271,"name":"The Face of Two Worlds","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventures-1-di/4000-582271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582522/","id":582522,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-brother-take-my-hand-1-v/4000-582522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582527/","id":582527,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/elektra-by-peter-milligan-larry-hama-and-mike-deod/4000-582527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582558/","id":582558,"name":"The Devil's Deal Part Two","site_detail_url":"https://comicvine.gamespot.com/curse-words-2-the-devils-deal-part-two/4000-582558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582611/","id":582611,"name":"Death In NYC","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-9-death-in-nyc/4000-582611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582626/","id":582626,"name":"The Big Burn","site_detail_url":"https://comicvine.gamespot.com/rough-riders-riders-on-the-storm-1-the-big-burn/4000-582626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574919/","id":574919,"name":"","site_detail_url":"https://comicvine.gamespot.com/reassignment-1/4000-574919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580775/","id":580775,"name":"So We Meet Again","site_detail_url":"https://comicvine.gamespot.com/red-sonja-2-so-we-meet-again/4000-580775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579431/","id":579431,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/absolute-wonder-woman-by-brian-azzarello-and-cliff/4000-579431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566709/","id":566709,"name":"A Story About Benjamin J. Grimm","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-15-a-story-about-benjamin-/4000-566709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571681/","id":571681,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-1/4000-571681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569349/","id":569349,"name":"Earth-Lord Part One: There's No Place Like Home","site_detail_url":"https://comicvine.gamespot.com/star-lord-1-earth-lord-part-one-theres-no-place-li/4000-569349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581584/","id":581584,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-6/4000-581584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582521/","id":582521,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-dark-art-1-volume-3/4000-582521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580758/","id":580758,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-10-volume-10/4000-580758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580822/","id":580822,"name":"Sometimes Friend, Before It Ends...","site_detail_url":"https://comicvine.gamespot.com/van-helsing-vs-the-mummy-of-amun-ra-1-sometimes-fr/4000-580822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581418/","id":581418,"name":"Desperate Measures Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-67-desperate-measures/4000-581418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587525/","id":587525,"name":"Masked Mayhem!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-14-masked-mayhem/4000-587525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581715/","id":581715,"name":"Part Eight","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-581715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581100/","id":581100,"name":"Part Seven","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-581100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688462/","id":688462,"name":"Power Play!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12-power-play/4000-688462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581619/","id":581619,"name":"The Stonishing Spider-Man vs. The Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13-the-stonishing-spide/4000-581619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556467/","id":556467,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-1/4000-556467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556479/","id":556479,"name":"Scare Tactics Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-woman-13-scare-tactics-part-1/4000-556479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557354/","id":557354,"name":"Brawl in the Family: Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-1-brawl-in-the-/4000-557354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557376/","id":557376,"name":"Change Partners!","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-11-change-partners/4000-557376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558416/","id":558416,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-2/4000-558416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558963/","id":558963,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-2/4000-558963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562573/","id":562573,"name":"Good Boy","site_detail_url":"https://comicvine.gamespot.com/batman-annual-1-good-boy/4000-562573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562597/","id":562597,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-0/4000-562597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556470/","id":556470,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-5/4000-556470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556475/","id":556475,"name":"Incarnations: Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/moon-knight-8-incarnations-part-3-of-4/4000-556475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556477/","id":556477,"name":"","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-12/4000-556477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556472/","id":556472,"name":"","site_detail_url":"https://comicvine.gamespot.com/foolkiller-1/4000-556472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557362/","id":557362,"name":"Dark Art Part IV","site_detail_url":"https://comicvine.gamespot.com/daredevil-13-dark-art-part-iv/4000-557362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557371/","id":557371,"name":"Episode Two: Soul On Ice","site_detail_url":"https://comicvine.gamespot.com/mosaic-2-episode-two-soul-on-ice/4000-557371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557373/","id":557373,"name":"Harlem Burns","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-10-harlem-burns/4000-557373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557375/","id":557375,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-2/4000-557375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557378/","id":557378,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-8/4000-557378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557355/","id":557355,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-11/4000-557355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558410/","id":558410,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-15/4000-558410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558408/","id":558408,"name":"Live Another Day","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-21-live-another-day/4000-558408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558426/","id":558426,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-14/4000-558426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558427/","id":558427,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-15/4000-558427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558414/","id":558414,"name":"Patience: Zero","site_detail_url":"https://comicvine.gamespot.com/deadpool-22-patience-zero/4000-558414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558417/","id":558417,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-2/4000-558417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558420/","id":558420,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-12/4000-558420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558421/","id":558421,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-14/4000-558421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558422/","id":558422,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-9/4000-558422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558428/","id":558428,"name":"Balancing the Scales; Lady Luck","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual-1-balancing-the-scales-lady-l/4000-558428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558974/","id":558974,"name":"Cold Turkey","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-14-cold-turkey/4000-558974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558957/","id":558957,"name":"Lonely At the Top: Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-10-lonely-at-the-top-part-5/4000-558957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558959/","id":558959,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-7/4000-558959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558972/","id":558972,"name":"The Smartest There Is! Part One: Marvel Now Or Never!","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-13-the-smartest-there/4000-558972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558971/","id":558971,"name":"The League of Realms Rides Again","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-13-the-league-of-realms-rides-again/4000-558971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558953/","id":558953,"name":"Mask of Death; Neon Dragon; Whose Crime Is It, Anyway?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-1-mask-of-death-neon/4000-558953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558977/","id":558977,"name":"What Do You Dream?","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-1-what-do-you-dream/4000-558977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558979/","id":558979,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-1/4000-558979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562601/","id":562601,"name":"...And One For Your Dreams","site_detail_url":"https://comicvine.gamespot.com/new-avengers-18-and-one-for-your-dreams/4000-562601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562608/","id":562608,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-16/4000-562608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562592/","id":562592,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-back-in-black-4/4000-562592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562602/","id":562602,"name":"Monster War: Part I","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-14-monster-war-part-i/4000-562602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574869/","id":574869,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-574869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574926/","id":574926,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-tower-of-the-comic-book-freaks-1-gn/4000-574926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575820/","id":575820,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-garden-of-bones-1/4000-575820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575894/","id":575894,"name":"Worlds Away","site_detail_url":"https://comicvine.gamespot.com/red-sonja-1-worlds-away/4000-575894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576170/","id":576170,"name":"New Year's Retribution","site_detail_url":"https://comicvine.gamespot.com/marvel-new-years-eve-special-infinite-comic-1-new-/4000-576170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575905/","id":575905,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-269/4000-575905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576551/","id":576551,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-annual-2017-1/4000-576551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576652/","id":576652,"name":"The Devil's Deal Part One","site_detail_url":"https://comicvine.gamespot.com/curse-words-1-the-devils-deal-part-one/4000-576652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578445/","id":578445,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodshot-usa-4/4000-578445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578471/","id":578471,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/punisher-max-the-complete-collection-5-volume-five/4000-578471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578181/","id":578181,"name":"Greener On the Other Side","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventure-3-gre/4000-578181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578183/","id":578183,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-236/4000-578183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578488/","id":578488,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/68-last-rites-1-volume-6/4000-578488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578526/","id":578526,"name":"Chapter Three: Ouroboros","site_detail_url":"https://comicvine.gamespot.com/hellchild-the-unholy-3-chapter-three-ouroboros/4000-578526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579212/","id":579212,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-ghost-stories-3/4000-579212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579227/","id":579227,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-2-volume-2/4000-579227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579234/","id":579234,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-4-/4000-579234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580570/","id":580570,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-11/4000-580570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576661/","id":576661,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-1-volume-one/4000-576661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578490/","id":578490,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-all-hail-god-mammon-1-vol/4000-578490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578525/","id":578525,"name":"The Invisible Man","site_detail_url":"https://comicvine.gamespot.com/grimm-tales-of-terror-1-the-invisible-man/4000-578525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562596/","id":562596,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-14/4000-562596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576660/","id":576660,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-5/4000-576660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576691/","id":576691,"name":"A New York Knight","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-8-a-new-york-knight/4000-576691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575920/","id":575920,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/i-am-jim-henson-1-gn/4000-575920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578362/","id":578362,"name":"Zodiac Triumphant!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11-zodiac-triumphant/4000-578362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576632/","id":576632,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-world-of-witchcraft-1-volume-2/4000-576632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578647/","id":578647,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-578647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575217/","id":575217,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-575217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569454/","id":569454,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-5/4000-569454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677991/","id":677991,"name":"Tome 2","site_detail_url":"https://comicvine.gamespot.com/culottees-des-femmes-qui-ne-font-que-ce-quelles-ve/4000-677991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542829/","id":542829,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-accountant-1/4000-542829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552123/","id":552123,"name":"Dadism: Part Four of Popism","site_detail_url":"https://comicvine.gamespot.com/art-ops-12-dadism-part-four-of-popism/4000-552123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552138/","id":552138,"name":"Undercover Punker Part 1: Eat To This Beat!","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-5-undercover-punker-part-1-eat-to-thi/4000-552138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552154/","id":552154,"name":"","site_detail_url":"https://comicvine.gamespot.com/champions-1/4000-552154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552171/","id":552171,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-12/4000-552171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552159/","id":552159,"name":"Blood In the Aether Chapter One","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-12-blood-in-the-aether-chapter-one/4000-552159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552966/","id":552966,"name":"","site_detail_url":"https://comicvine.gamespot.com/american-vampire-anthology-2/4000-552966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553009/","id":553009,"name":"Same Old, Same Old Great Lakes Avengers","site_detail_url":"https://comicvine.gamespot.com/the-great-lakes-avengers-1-same-old-same-old-great/4000-553009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553011/","id":553011,"name":"Howard's End","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-11-howards-end/4000-553011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553926/","id":553926,"name":"Undercover Punker Part 2: The Skull Bags Big Snag","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-6-undercover-punker-part-2-the-skull-/4000-553926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553953/","id":553953,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-back-in-black-2/4000-553953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553974/","id":553974,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-the-unbeatable-1/4000-553974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555487/","id":555487,"name":"Fateful Threads","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-17-fateful-threads/4000-555487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555518/","id":555518,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-1/4000-555518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555530/","id":555530,"name":"Iron Vulture","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-555530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555516/","id":555516,"name":"Match Du Grudge; Much Ado About Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool-21-match-du-grudge-much-ado-about-deadpoo/4000-555516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552163/","id":552163,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-14/4000-552163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552152/","id":552152,"name":"Before Dead No More Part Four: Change of Heart; The Clone Conspiracy","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-19-before-dead-no-more-part/4000-552152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552151/","id":552151,"name":"Enemy of the State II Part 1","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-13-enemy-of-the-state-ii-part-1/4000-552151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552153/","id":552153,"name":"","site_detail_url":"https://comicvine.gamespot.com/cage-1/4000-552153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552157/","id":552157,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-back-in-black-1/4000-552157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552164/","id":552164,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-1/4000-552164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552170/","id":552170,"name":"Missing Out","site_detail_url":"https://comicvine.gamespot.com/spidey-11-missing-out/4000-552170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552174/","id":552174,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-14/4000-552174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553025/","id":553025,"name":"The Rebound","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-15-the-rebound/4000-553025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553003/","id":553003,"name":"Dark Arts Part III","site_detail_url":"https://comicvine.gamespot.com/daredevil-12-dark-arts-part-iii/4000-553003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553007/","id":553007,"name":"The Never-Ending Struggle","site_detail_url":"https://comicvine.gamespot.com/deadpool-20-the-never-ending-struggle/4000-553007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553015/","id":553015,"name":"Incarnations: Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/moon-knight-7-incarnations-part-2-of-4/4000-553015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553018/","id":553018,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-9/4000-553018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553024/","id":553024,"name":"Gwenpool: Head of M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-7-gwenpool-head-of-modok/4000-553024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553016/","id":553016,"name":"Episode One: Mood Indigo","site_detail_url":"https://comicvine.gamespot.com/mosaic-1-episode-one-mood-indigo/4000-553016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553021/","id":553021,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-1/4000-553021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553001/","id":553001,"name":"Dead No More Part One: The Land of the Living; The Night I Died","site_detail_url":"https://comicvine.gamespot.com/the-clone-conspiracy-1-dead-no-more-part-one-the-l/4000-553001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553949/","id":553949,"name":"#Take Back the Shield Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-14-take-back-the-shield/4000-553949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553956/","id":553956,"name":"Blood In the Aether Chapter Two: Night of Four Billion Nightmares","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-13-blood-in-the-aether-chapter-two-/4000-553956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553945/","id":553945,"name":"Spider-Man's Superior","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-20-spider-mans-superior/4000-553945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553966/","id":553966,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/silk-13-homecoming/4000-553966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553946/","id":553946,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-ant-man-13/4000-553946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553972/","id":553972,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-14/4000-553972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553971/","id":553971,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-13/4000-553971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553941/","id":553941,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-10/4000-553941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553951/","id":553951,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-4/4000-553951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553964/","id":553964,"name":"Don't Stop Me-ow Part 1","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-11-dont-stop-me-ow-part-1/4000-553964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553955/","id":553955,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-of-x-2/4000-553955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553959/","id":553959,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-1/4000-553959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555510/","id":555510,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-all-different-avengers-15/4000-555510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555512/","id":555512,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-6/4000-555512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555515/","id":555515,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-6/4000-555515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555531/","id":555531,"name":"Cosmic Cooties Part Six of Six: Unrequited","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-12-cosmic-cooties-par/4000-555531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555532/","id":555532,"name":"The Road To War","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-12-the-road-to-war/4000-555532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555539/","id":555539,"name":"Itsy Bitsy Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-10-itsy-bitsy-part-2/4000-555539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555543/","id":555543,"name":"After The Fall","site_detail_url":"https://comicvine.gamespot.com/ultimates-12-after-the-fall/4000-555543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563765/","id":563765,"name":"","site_detail_url":"https://comicvine.gamespot.com/big-trouble-in-little-chinaescape-from-new-york-3/4000-563765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563787/","id":563787,"name":"Chapter Two: I Believe","site_detail_url":"https://comicvine.gamespot.com/hellchild-the-unholy-2-chapter-two-i-believe/4000-563787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563762/","id":563762,"name":"XI: The Unnamable","site_detail_url":"https://comicvine.gamespot.com/providence-11-xi-the-unnamable/4000-563762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553970/","id":553970,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-12/4000-553970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557365/","id":557365,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-back-in-black-3/4000-557365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563994/","id":563994,"name":"The Clown and the Clan","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventure-2-the/4000-563994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566589/","id":566589,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-new-animated-adventur/4000-566589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566669/","id":566669,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/art-ops-popism-1-volume-2/4000-566669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566785/","id":566785,"name":"Lost In Darkness and Distance","site_detail_url":"https://comicvine.gamespot.com/van-helsing-vs-frankenstein-4-lost-in-darkness-and/4000-566785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566938/","id":566938,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-crossovers-1-tpb/4000-566938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566752/","id":566752,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-268/4000-566752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569320/","id":569320,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodshot-usa-3/4000-569320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569378/","id":569378,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonic-5/4000-569378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569548/","id":569548,"name":"1931 The Grand Punk Railroad: Express","site_detail_url":"https://comicvine.gamespot.com/baccano-3-1931-the-grand-punk-railroad-express/4000-569548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571580/","id":571580,"name":"","site_detail_url":"https://comicvine.gamespot.com/zombie-tramp-new-years-eve-special-1/4000-571580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571567/","id":571567,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-ghost-stories-1/4000-571567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571676/","id":571676,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-cosmic-cooties-1-volu/4000-571676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571686/","id":571686,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spidey-after-school-special-1-volume-2/4000-571686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-572481/","id":572481,"name":"I'm Dancing As Fast As I Can!","site_detail_url":"https://comicvine.gamespot.com/life-with-kevin-3-im-dancing-as-fast-as-i-can/4000-572481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-572484/","id":572484,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/miss-fury-the-minor-key-1-volume-2/4000-572484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566784/","id":566784,"name":"Voodoo Slumber Party","site_detail_url":"https://comicvine.gamespot.com/cinderella-serial-killer-princess-1-voodoo-slumber/4000-566784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571644/","id":571644,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-2-book-two/4000-571644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578882/","id":578882,"name":"","site_detail_url":"https://comicvine.gamespot.com/pantera-negra-6/4000-578882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580569/","id":580569,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-10/4000-580569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552222/","id":552222,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-meets-ramones-1/4000-552222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553952/","id":553952,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-1-tpb/4000-553952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563730/","id":563730,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-lonely-are-the-hunted-1-volu/4000-563730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555522/","id":555522,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-13/4000-555522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571711/","id":571711,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-25/4000-571711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566803/","id":566803,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/rough-riders-give-them-hell-1-volume-1/4000-566803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571743/","id":571743,"name":"","site_detail_url":"https://comicvine.gamespot.com/elasticator-6/4000-571743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552985/","id":552985,"name":"Scaring Room Only; Velma's Monsters of the World: Griffin; Karmic Chaos!; A Well-Laid Trap","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-74-scaring-room-only-velm/4000-552985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569339/","id":569339,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-dont-stop-me-ow-1-volume-/4000-569339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566588/","id":566588,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-65/4000-566588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-572472/","id":572472,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-572472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566926/","id":566926,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-566926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548574/","id":548574,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-3/4000-548574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548580/","id":548580,"name":"Incarnations: Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/moon-knight-6-incarnations-part-1-of-4/4000-548580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548588/","id":548588,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12/4000-548588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550324/","id":550324,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-16-judgment-day/4000-550324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550342/","id":550342,"name":"Under New Management Episode Three: Elektra, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-9-under-new-management-episode-th/4000-550342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551271/","id":551271,"name":"The Professional Part 3: By Any Other Name","site_detail_url":"https://comicvine.gamespot.com/deathstroke-3-the-professional-part-3-by-any-other/4000-551271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551284/","id":551284,"name":"","site_detail_url":"https://comicvine.gamespot.com/teen-titans-rebirth-1/4000-551284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551325/","id":551325,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-12/4000-551325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551298/","id":551298,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-5/4000-551298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548575/","id":548575,"name":"The New Face of Magic","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-11-the-new-face-of-magic/4000-548575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548576/","id":548576,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-13/4000-548576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553080/","id":553080,"name":"","site_detail_url":"https://comicvine.gamespot.com/peepland-1/4000-553080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548573/","id":548573,"name":"Dark Art Part II","site_detail_url":"https://comicvine.gamespot.com/daredevil-11-dark-art-part-ii/4000-548573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548585/","id":548585,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-11/4000-548585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549528/","id":549528,"name":"A Failed Experiment","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-14-a-failed-experiment/4000-549528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549530/","id":549530,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-13/4000-549530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549511/","id":549511,"name":"A Nation Under Our Feet Part 6","site_detail_url":"https://comicvine.gamespot.com/black-panther-6-a-nation-under-our-feet-part-6/4000-549511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549512/","id":549512,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-4/4000-549512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549513/","id":549513,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-gods-of-war-4/4000-549513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549516/","id":549516,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-18/4000-549516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550365/","id":550365,"name":"Thor's Best Friend","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-11-thors-best-friend/4000-550365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549524/","id":549524,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-8/4000-549524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548584/","id":548584,"name":"Bad Reputation","site_detail_url":"https://comicvine.gamespot.com/spidey-10-bad-reputation/4000-548584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549527/","id":549527,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-6/4000-549527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550344/","id":550344,"name":"Before Dead No More Part Three: Full Otto","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-18-before-dead-no-more-part/4000-550344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550346/","id":550346,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-ant-man-12/4000-550346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550343/","id":550343,"name":"Destiny: Part Three","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-12-destiny-part-three/4000-550343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550353/","id":550353,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-4/4000-550353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550351/","id":550351,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-5/4000-550351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550354/","id":550354,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-v-gambit-5/4000-550354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550357/","id":550357,"name":"Prison Break; Forge, We Have A Problem","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-annual-1-prison-break-forge-we/4000-550357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550361/","id":550361,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-7/4000-550361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550366/","id":550366,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-10/4000-550366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550367/","id":550367,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-8/4000-550367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550370/","id":550370,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-13/4000-550370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550373/","id":550373,"name":"","site_detail_url":"https://comicvine.gamespot.com/vote-loki-4/4000-550373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551296/","id":551296,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-13/4000-551296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551299/","id":551299,"name":"Lonely At the Top: Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-9-lonely-at-the-top-part-4/4000-551299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551300/","id":551300,"name":"Red In Tooth and Claw","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-3-red-in-tooth-and-claw/4000-551300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551302/","id":551302,"name":"Deadpool and His Insufferable Pals; Nü Flesh","site_detail_url":"https://comicvine.gamespot.com/deadpool-annual-1-deadpool-and-his-insufferable-pa/4000-551302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556532/","id":556532,"name":"Animilitary","site_detail_url":"https://comicvine.gamespot.com/animosity-3-animilitary/4000-556532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551301/","id":551301,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-19/4000-551301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551303/","id":551303,"name":"To Get Her. Forever.; Strange Tales: Yao, The Not-Quite-Ancient One","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-annual-1-to-get-her-forever-strange/4000-551303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551309/","id":551309,"name":"Cosmic Cooties Part Five of Six: The Inhuman Thing To Do","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-11-cosmic-cooties-par/4000-551309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551317/","id":551317,"name":"Itsy Bitsy Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-9-itsy-bitsy-part-1/4000-551317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551321/","id":551321,"name":"There Is No High Road: Part Five: What We Do Best","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-5-there-is-no-high-road-part-five-wha/4000-551321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551323/","id":551323,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/ultimates-11-endgame/4000-551323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557191/","id":557191,"name":"The Face of Two Worlds","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-adventure-1-the/4000-557191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557384/","id":557384,"name":"","site_detail_url":"https://comicvine.gamespot.com/intertwined-2/4000-557384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558440/","id":558440,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonic-4/4000-558440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558452/","id":558452,"name":"The Coldest War Part Two","site_detail_url":"https://comicvine.gamespot.com/snowfall-7-the-coldest-war-part-two/4000-558452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558489/","id":558489,"name":"New York's Most Wanted","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-6-new-yorks-most-wanted/4000-558489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558603/","id":558603,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-good-night-and-good-duck-1-volume-/4000-558603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558876/","id":558876,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/sachs-and-violens-1-tpb/4000-558876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548582/","id":548582,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-12/4000-548582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558949/","id":558949,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodshot-usa-2/4000-558949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-559023/","id":559023,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-uprising-1-volume-four/4000-559023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558617/","id":558617,"name":"Chasing Phantoms Part 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-64-chasing-phantoms-p/4000-558617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562391/","id":562391,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-11/4000-562391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562397/","id":562397,"name":"[Untitled]; Inside Out Part 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-4-untitled-i/4000-562397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562599/","id":562599,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/moon-knight-lunatic-1-volume-1/4000-562599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562396/","id":562396,"name":"Chapter 5: Valley Forge","site_detail_url":"https://comicvine.gamespot.com/revolution-5-chapter-5-valley-forge/4000-562396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562717/","id":562717,"name":"Opening Fright; Fi-Die Another Day; Maul Street","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-crypt-1-opening-fright-fi-die-anoth/4000-562717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562582/","id":562582,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/robin-solo-1-volume-3/4000-562582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551316/","id":551316,"name":"Weapon of Choice Part 4: Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-12-weapon-of-choice-part-4-conclusion/4000-551316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551318/","id":551318,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-11/4000-551318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558448/","id":558448,"name":"","site_detail_url":"https://comicvine.gamespot.com/moonshine-2/4000-558448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558602/","id":558602,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-558602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556431/","id":556431,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/aleister-and-adolf-1-hcsc/4000-556431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579117/","id":579117,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-69/4000-579117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558454/","id":558454,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-267/4000-558454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558446/","id":558446,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-4/4000-558446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558988/","id":558988,"name":"This Is Why We Go To Church","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-4-this-is-why-we-go-to-ch/4000-558988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550359/","id":550359,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-12/4000-550359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549522/","id":549522,"name":"Part II of the Bad Southern Pun Trilogy: Gone With the Gwen'd","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-and-groot-9-part-ii-of-the-bad-sout/4000-549522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551314/","id":551314,"name":"Part III of the Bad Southern Pun Trilogy: Y'alls Well That Ends Well","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-and-groot-10-part-iii-of-the-bad-so/4000-551314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557364/","id":557364,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadly-hands-of-kung-fu-omnibus-1-volume-1/4000-557364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558947/","id":558947,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/watchmen-noir-1-hc/4000-558947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556551/","id":556551,"name":"Dare Mighty Things","site_detail_url":"https://comicvine.gamespot.com/rough-riders-7-dare-mighty-things/4000-556551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556437/","id":556437,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/muhammad-ali-1-gn/4000-556437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551277/","id":551277,"name":"Bye-Bye, Love","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-and-her-gang-of-harleys-6-bye-bye-lov/4000-551277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-559123/","id":559123,"name":"Semper Fi","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-november-infinite-comic-1-semper/4000-559123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556673/","id":556673,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4000-556673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542595/","id":542595,"name":"Children: Part Three of Popism","site_detail_url":"https://comicvine.gamespot.com/art-ops-10-children-part-three-of-popism/4000-542595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542604/","id":542604,"name":"Die Laughing Part One: Afterbirth","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-1-die-laughing-part-one-afterbirth/4000-542604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543739/","id":543739,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-accused-1/4000-543739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544965/","id":544965,"name":"United We Fall Conclusion; Two Worlds, One Destiny Finale: Rebirth and Redemption; Future Shock; Keep Away From... Chemo!","site_detail_url":"https://comicvine.gamespot.com/legends-of-tomorrow-anthology-6-united-we-fall-con/4000-544965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544984/","id":544984,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-3/4000-544984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542620/","id":542620,"name":"The Last Days of Magic Conclusion","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-10-the-last-days-of-magic-conclusio/4000-542620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542621/","id":542621,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-12/4000-542621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542632/","id":542632,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-12/4000-542632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542616/","id":542616,"name":"Idle Hands Are the Devil's Playthings","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-2-idle-hands-are-the-devils-p/4000-542616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542617/","id":542617,"name":"Fragments","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-1-fragments/4000-542617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542619/","id":542619,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-v-gambit-3/4000-542619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542618/","id":542618,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-16/4000-542618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542625/","id":542625,"name":"Welcome To New Egypt: Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-5-welcome-to-new-egypt-part-5-of-5/4000-542625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542631/","id":542631,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-10/4000-542631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542634/","id":542634,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-542634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542635/","id":542635,"name":"","site_detail_url":"https://comicvine.gamespot.com/vote-loki-3/4000-542635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546060/","id":546060,"name":"Hydra Attacks - Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-546060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546069/","id":546069,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-11/4000-546069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543745/","id":543745,"name":"Before Dead No More Part One: Whatever the Cost","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-16-before-dead-no-more-part/4000-543745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546051/","id":546051,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-4/4000-546051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543741/","id":543741,"name":"Under New Management Episode Two: The Third Faction","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-8-under-new-management-episode-tw/4000-543741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543742/","id":543742,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-all-different-avengers-13/4000-543742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543749/","id":543749,"name":"Dark Art Part I","site_detail_url":"https://comicvine.gamespot.com/daredevil-10-dark-art-part-i/4000-543749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543755/","id":543755,"name":"","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-9/4000-543755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543757/","id":543757,"name":"Isn't It Bromantic? Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-8-isnt-it-bromantic-conclusion/4000-543757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544980/","id":544980,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-12/4000-544980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543740/","id":543740,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-8/4000-543740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544978/","id":544978,"name":"Destiny: Part Two","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-11-destiny-part-two/4000-544978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544979/","id":544979,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-6/4000-544979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544981/","id":544981,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-3/4000-544981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544982/","id":544982,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-4/4000-544982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544983/","id":544983,"name":"Friends and Foes","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-gods-of-war-3-friends-and-foes/4000-544983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544987/","id":544987,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-fallen-1/4000-544987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544991/","id":544991,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-7/4000-544991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547258/","id":547258,"name":null,"site_detail_url":"https://comicvine.gamespot.com/suicide-squad-special-war-crimes-1/4000-547258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544997/","id":544997,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-5/4000-544997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544996/","id":544996,"name":"Breaking Point","site_detail_url":"https://comicvine.gamespot.com/ultimates-10-breaking-point/4000-544996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544998/","id":544998,"name":"Rage Against the Machine","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-12-rage-against-the-machine/4000-544998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546067/","id":546067,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-11/4000-546067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546052/","id":546052,"name":"Lonely At the Top: Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-8-lonely-at-the-top-part-3/4000-546052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546054/","id":546054,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-17/4000-546054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546058/","id":546058,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-6/4000-546058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546061/","id":546061,"name":"Cosmic Cooties Part Four: The In-Crowd","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-10-cosmic-cooties-par/4000-546061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546064/","id":546064,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-9/4000-546064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542630/","id":542630,"name":"To Catch A Spider!","site_detail_url":"https://comicvine.gamespot.com/spidey-9-to-catch-a-spider/4000-542630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547268/","id":547268,"name":"Before Dead No More Part Two: Spark of Life","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-17-before-dead-no-more-part/4000-547268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547267/","id":547267,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-annual-1/4000-547267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547272/","id":547272,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-5/4000-547272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547274/","id":547274,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-v-gambit-4/4000-547274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547280/","id":547280,"name":"...Hell If I Know...","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-10-hell-if-i-know/4000-547280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547281/","id":547281,"name":"","site_detail_url":"https://comicvine.gamespot.com/hyperion-6/4000-547281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547293/","id":547293,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-7/4000-547293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552196/","id":552196,"name":"","site_detail_url":"https://comicvine.gamespot.com/midnight-of-the-soul-5/4000-552196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552218/","id":552218,"name":"Part Five: Coalescence; Antithesis Part Five","site_detail_url":"https://comicvine.gamespot.com/strange-attractors-5-part-five-coalescence-antithe/4000-552218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552838/","id":552838,"name":"Chasing Phantoms Part 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-63-chasing-phantoms-p/4000-552838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552837/","id":552837,"name":"Chapter 3: O Ship of State","site_detail_url":"https://comicvine.gamespot.com/revolution-3-chapter-3-o-ship-of-state/4000-552837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552970/","id":552970,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/catwoman-run-like-hell-1-volume-8/4000-552970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553086/","id":553086,"name":"This Sucks","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-5-this-sucks/4000-553086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552995/","id":552995,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-golden-age-omnibus-1-volume-1/4000-552995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553793/","id":553793,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-10/4000-553793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553914/","id":553914,"name":"At the Precinct of Madness","site_detail_url":"https://comicvine.gamespot.com/weird-detective-5-at-the-precinct-of-madness/4000-553914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553993/","id":553993,"name":"The Coldest War Part One","site_detail_url":"https://comicvine.gamespot.com/snowfall-6-the-coldest-war-part-one/4000-553993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-554013/","id":554013,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/a-piggys-tale-1-tpb/4000-554013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544988/","id":544988,"name":"The Battle of Roxxon Island","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-10-the-battle-of-roxxon-island/4000-544988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555345/","id":555345,"name":"Snake in the Grass Part Four","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-233-snake-in-the-grass/4000-555345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555348/","id":555348,"name":"[Untitled]; Inside Out Part 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-3-untitled-i/4000-555348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555506/","id":555506,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodshot-usa-1/4000-555506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555564/","id":555564,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/prince-of-cats-1-hc/4000-555564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555343/","id":555343,"name":"The Modern World","site_detail_url":"https://comicvine.gamespot.com/action-man-revolution-1-the-modern-world/4000-555343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555603/","id":555603,"name":"","site_detail_url":"https://comicvine.gamespot.com/mycroft-holmes-3/4000-555603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555772/","id":555772,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-holmes-2/4000-555772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555771/","id":555771,"name":"","site_detail_url":"https://comicvine.gamespot.com/hero-killer-1/4000-555771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556370/","id":556370,"name":"","site_detail_url":"https://comicvine.gamespot.com/madison-dark-1/4000-556370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556327/","id":556327,"name":"Chapter 4: The New Colossus","site_detail_url":"https://comicvine.gamespot.com/revolution-4-chapter-4-the-new-colossus/4000-556327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542628/","id":542628,"name":"Doorways","site_detail_url":"https://comicvine.gamespot.com/silk-11-doorways/4000-542628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547292/","id":547292,"name":"Weapon of Choice Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-11-weapon-of-choice-part-3/4000-547292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544992/","id":544992,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-10/4000-544992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552197/","id":552197,"name":"","site_detail_url":"https://comicvine.gamespot.com/moonshine-1/4000-552197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579116/","id":579116,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-68/4000-579116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552203/","id":552203,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-266/4000-552203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553049/","id":553049,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-3/4000-553049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552205/","id":552205,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/trees-2-vol-2/4000-552205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552173/","id":552173,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-beats-up-the-marvel-u/4000-552173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553040/","id":553040,"name":"An Advocate for Lesser Men","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-3-an-advocate-for-lesser-/4000-553040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606345/","id":606345,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-20/4000-606345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547289/","id":547289,"name":"Part I of the Bad Southern Pun Trilogy: Georgia O'Thief","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-and-groot-8-part-i-of-the-bad-south/4000-547289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547255/","id":547255,"name":"Look Through My Window","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-and-her-gang-of-harleys-5-look-throug/4000-547255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553055/","id":553055,"name":"So Far Beyond Part One","site_detail_url":"https://comicvine.gamespot.com/shutter-23-so-far-beyond-part-one/4000-553055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552237/","id":552237,"name":"Timeless Classic / Auld Lang Syne / Mad Dreams / Totems / Judgement Rising","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-genesis-heroes-reborn-1-timeless/4000-552237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552273/","id":552273,"name":"The Crowded Hour","site_detail_url":"https://comicvine.gamespot.com/rough-riders-6-the-crowded-hour/4000-552273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552094/","id":552094,"name":"Vol. 15","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-leatherhead-1-vol-15/4000-552094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552953/","id":552953,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/tetris-the-games-people-play-1-gn/4000-552953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553968/","id":553968,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-son-of-satan-classic-1-tpb/4000-553968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553034/","id":553034,"name":"Chapter 4; The Fight For Law & Order","site_detail_url":"https://comicvine.gamespot.com/the-lone-rangergreen-hornet-4-chapter-4-the-fight-/4000-553034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555758/","id":555758,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-october-infinite-comic-1/4000-555758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552420/","id":552420,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-7/4000-552420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538513/","id":538513,"name":"Welcome To New Egypt: Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-4-welcome-to-new-egypt-part-4-of-5/4000-538513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538516/","id":538516,"name":"","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-8/4000-538516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538521/","id":538521,"name":"Blackout!","site_detail_url":"https://comicvine.gamespot.com/spidey-8-blackout/4000-538521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538487/","id":538487,"name":"A Clean Slate","site_detail_url":"https://comicvine.gamespot.com/the-flintstones-1-a-clean-slate/4000-538487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540079/","id":540079,"name":"","site_detail_url":"https://comicvine.gamespot.com/nova-9/4000-540079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540084/","id":540084,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-9/4000-540084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540053/","id":540053,"name":"The Extinction Machine Part One","site_detail_url":"https://comicvine.gamespot.com/justice-league-1-the-extinction-machine-part-one/4000-540053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541163/","id":541163,"name":"A Hole In Reality","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-14-a-hole-in-reality/4000-541163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541182/","id":541182,"name":"The Audition","site_detail_url":"https://comicvine.gamespot.com/teen-titans-22-the-audition/4000-541182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541206/","id":541206,"name":"Lea Thompson Needs Help","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-9-lea-thompson-needs-help/4000-541206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541210/","id":541210,"name":"Hydra Attacks","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-541210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538502/","id":538502,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-11/4000-538502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538510/","id":538510,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-11/4000-538510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538500/","id":538500,"name":"Power Play Conclusion: Suit Yourself","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-15-power-play-conclusion-su/4000-538500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538503/","id":538503,"name":"Shouldn't Have Come Back; The Death & Birth of Janus Jardeesh","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-1-shouldnt-have-come-back-the/4000-538503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538504/","id":538504,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-x-men-2/4000-538504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538506/","id":538506,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-v-gambit-2/4000-538506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538526/","id":538526,"name":"","site_detail_url":"https://comicvine.gamespot.com/vote-loki-2/4000-538526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539235/","id":539235,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-amazing-spider-man-2/4000-539235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539236/","id":539236,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-2/4000-539236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539237/","id":539237,"name":"Brand Recognition","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-gods-of-war-2-brand-recognition/4000-539237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539241/","id":539241,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-15/4000-539241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539248/","id":539248,"name":"","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-8/4000-539248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539249/","id":539249,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-6/4000-539249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539257/","id":539257,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-4/4000-539257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539259/","id":539259,"name":"They Will Die In the Flames","site_detail_url":"https://comicvine.gamespot.com/vision-9-they-will-die-in-the-flames/4000-539259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540068/","id":540068,"name":"Destiny: Part One","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-10-destiny-part-one/4000-540068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540070/","id":540070,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-5/4000-540070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540080/","id":540080,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-8/4000-540080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540083/","id":540083,"name":"\"Convention Chaos\" or \"When Cometh the Plutocracy!\"","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-7-convention-chaos-or-when-come/4000-540083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540082/","id":540082,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-6/4000-540082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540087/","id":540087,"name":"There Is No High Road: Part Three: Mistakes Were Made","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-3-there-is-no-high-road-part-three-mi/4000-540087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540092/","id":540092,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10/4000-540092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540090/","id":540090,"name":"A Voice From the Dark","site_detail_url":"https://comicvine.gamespot.com/ultimates-9-a-voice-from-the-dark/4000-540090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541194/","id":541194,"name":"Amazing Grace Part Six: Lead Me Home","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-16-amazing-grace-part-six-l/4000-541194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541225/","id":541225,"name":"AC/DC","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-11-acdc/4000-541225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541224/","id":541224,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-10/4000-541224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541196/","id":541196,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-3/4000-541196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541197/","id":541197,"name":"Lonely At the Top: Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-7-lonely-at-the-top-part-2/4000-541197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541199/","id":541199,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-4/4000-541199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541202/","id":541202,"name":"","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-12/4000-541202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541208/","id":541208,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-5/4000-541208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541212/","id":541212,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-5/4000-541212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541213/","id":541213,"name":"Cosmic Cooties Part Three: Moon and Stars","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-9-cosmic-cooties-part/4000-541213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541200/","id":541200,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-3/4000-541200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539247/","id":539247,"name":"A.I.M. vs. S.H.I.E.L.D., Part II: Part of the Team","site_detail_url":"https://comicvine.gamespot.com/new-avengers-13-aim-vs-shield-part-ii-part-of-the-/4000-539247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548651/","id":548651,"name":"Kevin in the City in Room for Change!","site_detail_url":"https://comicvine.gamespot.com/life-with-kevin-2-kevin-in-the-city-in-room-for-ch/4000-548651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548683/","id":548683,"name":"","site_detail_url":"https://comicvine.gamespot.com/guns-of-the-black-bat-2/4000-548683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549515/","id":549515,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-supersonic-1-volume-2/4000-549515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549521/","id":549521,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-by-carl-potts-and-jim-lee-1-t/4000-549521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549591/","id":549591,"name":"The Funeral","site_detail_url":"https://comicvine.gamespot.com/animosity-2-the-funeral/4000-549591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550054/","id":550054,"name":"¡...Los últimos Vengadores en pie!","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-67-los-ultimos-vengadores-en/4000-550054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550322/","id":550322,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-the-art-of-the-deal-1-v/4000-550322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550409/","id":550409,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonic-2/4000-550409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550450/","id":550450,"name":"Send In the Clowns","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-4-send-in-the-clowns/4000-550450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550400/","id":550400,"name":"Chasing Phantoms Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-62-chasing-phantoms-p/4000-550400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550325/","id":550325,"name":"Book Thirteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-13-book-thirteen/4000-550325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552080/","id":552080,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-9/4000-552080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552095/","id":552095,"name":"[Untitled]; Inside Out Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-2-untitled-i/4000-552095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552090/","id":552090,"name":"Chapter 2: The Divine Source of Liberty","site_detail_url":"https://comicvine.gamespot.com/revolution-2-chapter-2-the-divine-source-of-libert/4000-552090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552339/","id":552339,"name":"L'amour vache","site_detail_url":"https://comicvine.gamespot.com/all-new-deadpool-4-lamour-vache/4000-552339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541211/","id":541211,"name":"The Agger Imperative","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-9-the-agger-imperative/4000-541211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539251/","id":539251,"name":"All Things End","site_detail_url":"https://comicvine.gamespot.com/silk-10-all-things-end/4000-539251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541217/","id":541217,"name":"Weapon of Choice Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-10-weapon-of-choice-part-2/4000-541217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538520/","id":538520,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-9/4000-538520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550422/","id":550422,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/velvet-the-man-who-stole-the-world-1-volume-3/4000-550422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553779/","id":553779,"name":"Tying the Knot Issue 2 of 3","site_detail_url":"https://comicvine.gamespot.com/herald-lovecraft-and-tesla-8-tying-the-knot-issue-/4000-553779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548603/","id":548603,"name":"","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-2/4000-548603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549539/","id":549539,"name":"A Story of Betrayal","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-2-a-story-of-betrayal/4000-549539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538518/","id":538518,"name":"Citizen of Earth","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-5-citizen-of-earth/4000-538518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541226/","id":541226,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-10/4000-541226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548583/","id":548583,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-miles-morales-1-volume-1/4000-548583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551290/","id":551290,"name":"Bloodshot Island Part 4","site_detail_url":"https://comicvine.gamespot.com/bloodshot-reborn-17-bloodshot-island-part-4/4000-551290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551293/","id":551293,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-50/4000-551293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538525/","id":538525,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-invincible-iron-man-the-war-machine/4000-538525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551385/","id":551385,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/brief-histories-of-everyday-objects-1-gn/4000-551385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551245/","id":551245,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/billy-budd-kgb-1-gn/4000-551245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551534/","id":551534,"name":"Tower of Wisdom, Part VI","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-ulysses-infinite-comic-6-tower-of-wis/4000-551534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550538/","id":550538,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-6/4000-550538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550478/","id":550478,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-8/4000-550478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548835/","id":548835,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-september-infinite-comic-1/4000-548835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548811/","id":548811,"name":"Tower of Wisdom, Part V","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-ulysses-infinite-comic-5-tower-of-wis/4000-548811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548814/","id":548814,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-5/4000-548814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677990/","id":677990,"name":"Tome 1","site_detail_url":"https://comicvine.gamespot.com/culottees-des-femmes-qui-ne-font-que-ce-quelles-ve/4000-677990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506898/","id":506898,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-the-fountains-of-forev/4000-506898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533009/","id":533009,"name":"Ancient Wisdom","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-13-ancient-wisdom/4000-533009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533025/","id":533025,"name":"The Box Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-9-the-box-part-2/4000-533025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533029/","id":533029,"name":"Temporary Insanitation","site_detail_url":"https://comicvine.gamespot.com/deadpool-13-temporary-insanitation/4000-533029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533026/","id":533026,"name":"Power Play Part 2: Civil War Reenactment","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-13-power-play-part-2-civil-/4000-533026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533030/","id":533030,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-10/4000-533030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534276/","id":534276,"name":"The Coulson Protocols Episode Six: Unintended Consequences","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-6-the-coulson-protocols-episode-s/4000-534276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534280/","id":534280,"name":"Gods and Monsters","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-gods-of-war-1-gods-and-monsters/4000-534280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534295/","id":534295,"name":"A.I.M. vs. S.H.I.E.L.D., Part I: What's Coming Next","site_detail_url":"https://comicvine.gamespot.com/new-avengers-12-aim-vs-shield-part-i-whats-coming-/4000-534295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534258/","id":534258,"name":"Worthless","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-13-worthless/4000-534258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535368/","id":535368,"name":"","site_detail_url":"https://comicvine.gamespot.com/timely-comics-invincible-iron-man-1/4000-535368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535369/","id":535369,"name":"","site_detail_url":"https://comicvine.gamespot.com/timely-comics-moon-girl-and-devil-dinosaur-1/4000-535369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535373/","id":535373,"name":"","site_detail_url":"https://comicvine.gamespot.com/vote-loki-1/4000-535373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537252/","id":537252,"name":"Who Are You Wearing?","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-10-who-are-you-wearing/4000-537252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537914/","id":537914,"name":"The Neighborhood of Dads: Part Two of Popism","site_detail_url":"https://comicvine.gamespot.com/art-ops-9-the-neighborhood-of-dads-part-two-of-pop/4000-537914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537920/","id":537920,"name":"Who Is Agent 37?; The Charmer; The Savior; The Gymnast; The Superhero","site_detail_url":"https://comicvine.gamespot.com/grayson-annual-3-who-is-agent-37-the-charmer-the-s/4000-537920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535350/","id":535350,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-2/4000-535350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535352/","id":535352,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-14/4000-535352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535359/","id":535359,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-7/4000-535359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537955/","id":537955,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-11/4000-537955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537954/","id":537954,"name":"I Kissed A Squirrel and I Liked It Part 2","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-9-i-kissed-a-squirrel/4000-537954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537933/","id":537933,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-2/4000-537933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537945/","id":537945,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-5/4000-537945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537956/","id":537956,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-9/4000-537956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542686/","id":542686,"name":"The Wake","site_detail_url":"https://comicvine.gamespot.com/animosity-1-the-wake/4000-542686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537444/","id":537444,"name":"","site_detail_url":"https://comicvine.gamespot.com/timely-comics-scarlet-witch-1/4000-537444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543781/","id":543781,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/escape-from-new-york-escape-to-new-york-1-volume-t/4000-543781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543799/","id":543799,"name":"Bloody Vicious","site_detail_url":"https://comicvine.gamespot.com/van-helsing-vs-frankenstein-1-bloody-vicious/4000-543799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535365/","id":535365,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-8/4000-535365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537251/","id":537251,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-3/4000-537251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543966/","id":543966,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-tales-of-the-cosmos-1-tpb/4000-543966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545970/","id":545970,"name":"Snake in the Grass Part Two","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-231-snake-in-the-grass/4000-545970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545971/","id":545971,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-8/4000-545971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545977/","id":545977,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-3-/4000-545977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546196/","id":546196,"name":"","site_detail_url":"https://comicvine.gamespot.com/mosaic-prelude-1/4000-546196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545137/","id":545137,"name":"Chasing Phantoms Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-61-chasing-phantoms-p/4000-545137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543768/","id":543768,"name":"A Story of Human Sacrifice","site_detail_url":"https://comicvine.gamespot.com/the-black-monday-murders-1-a-story-of-human-sacrif/4000-543768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547194/","id":547194,"name":"1931 The Grand Punk Railroad: Local","site_detail_url":"https://comicvine.gamespot.com/baccano-2-1931-the-grand-punk-railroad-local/4000-547194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547228/","id":547228,"name":"[Untitled]; Inside Out Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-universe-1-untitled-i/4000-547228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547331/","id":547331,"name":"Volume One: The New Journey","site_detail_url":"https://comicvine.gamespot.com/street-fighter-unlimited-1-volume-one-the-new-jour/4000-547331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534291/","id":534291,"name":"Beverly","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-8-beverly/4000-534291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552319/","id":552319,"name":"A la frontière de l'impossible","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-hors-serie-1-a-la-frontiere-de-li/4000-552319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552085/","id":552085,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-last-one-1-hc/4000-552085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552338/","id":552338,"name":"La fin d'une erreur","site_detail_url":"https://comicvine.gamespot.com/all-new-deadpool-3-la-fin-dune-erreur/4000-552338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537237/","id":537237,"name":"Lords of Midgard","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-8-lords-of-midgard/4000-537237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533039/","id":533039,"name":"Spider-Women Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-women-omega-1-spider-women-conclusion/4000-533039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537943/","id":537943,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-9/4000-537943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535362/","id":535362,"name":"Weapon of Choice Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-9-weapon-of-choice-part-1/4000-535362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537944/","id":537944,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-annual-1/4000-537944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533037/","id":533037,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-8/4000-533037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542655/","id":542655,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/shutter-all-roads-1-volume-four/4000-542655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537232/","id":537232,"name":"The Last Days of Magic Chapter Four","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-9-the-last-days-of-magic-chapter-fo/4000-537232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547317/","id":547317,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-265/4000-547317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542649/","id":542649,"name":"Number One","site_detail_url":"https://comicvine.gamespot.com/kill-or-be-killed-1-number-one/4000-542649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535358/","id":535358,"name":"","site_detail_url":"https://comicvine.gamespot.com/nova-8/4000-535358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537238/","id":537238,"name":"Cosmic Cooties Part Two: Switcheroo","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-8-cosmic-cooties-part/4000-537238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534299/","id":534299,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-8/4000-534299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537958/","id":537958,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-9/4000-537958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543117/","id":543117,"name":"The Knight In the Crypt","site_detail_url":"https://comicvine.gamespot.com/the-last-templar-2-the-knight-in-the-crypt/4000-543117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547342/","id":547342,"name":"Oh, the Places...","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-125-oh-the-places/4000-547342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540977/","id":540977,"name":"","site_detail_url":"https://comicvine.gamespot.com/elasticator-4/4000-540977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547265/","id":547265,"name":"Long Live the King Part 3: The Banners of War","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-49-long-live-the-king-part-3-the-banne/4000-547265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547370/","id":547370,"name":"Hell's Pocket","site_detail_url":"https://comicvine.gamespot.com/rough-riders-5-hells-pocket/4000-547370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544957/","id":544957,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-1-hc/4000-544957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543764/","id":543764,"name":"Chapter 2; From Out of the Past","site_detail_url":"https://comicvine.gamespot.com/the-lone-rangergreen-hornet-2-chapter-2-from-out-o/4000-543764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545126/","id":545126,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-4/4000-545126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543515/","id":543515,"name":"Chapter 34: Invisible Truths","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-34-chapter-34-in/4000-543515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528502/","id":528502,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-3/4000-528502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528509/","id":528509,"name":"","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-7/4000-528509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528511/","id":528511,"name":"Small-Time Heroes; Secret Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-civil-w/4000-528511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528525/","id":528525,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-7/4000-528525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528512/","id":528512,"name":"Welcome To New Egypt: Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-2-welcome-to-new-egypt-part-2-of-5/4000-528512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529623/","id":529623,"name":"Dealmakers and Dealbreakers","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-12-dealmakers-and-dealb/4000-529623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529665/","id":529665,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-2/4000-529665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530734/","id":530734,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-4/4000-530734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530722/","id":530722,"name":"The Box Part 1","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-8-the-box-part-1/4000-530722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531877/","id":531877,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-7/4000-531877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531892/","id":531892,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-3/4000-531892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531893/","id":531893,"name":"Cosmic Cooties Part One: Growing Up Is Hard","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-7-cosmic-cooties-part/4000-531893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531874/","id":531874,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-1/4000-531874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528493/","id":528493,"name":"Beauty [138]","site_detail_url":"https://comicvine.gamespot.com/unfollow-7-beauty-138/4000-528493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538564/","id":538564,"name":"Part Two: Iterative Ideologies; Antithesis, Part Two","site_detail_url":"https://comicvine.gamespot.com/strange-attractors-2-part-two-iterative-ideologies/4000-538564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538581/","id":538581,"name":"","site_detail_url":"https://comicvine.gamespot.com/brik-1/4000-538581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528521/","id":528521,"name":"Something Sinister This Way Comes Chapter One","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-10-something-sinister-this-way-com/4000-528521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539147/","id":539147,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deviations-1-tpb/4000-539147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539161/","id":539161,"name":"Muck Amok Part 2; Eye Witness Testimony","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-amazing-adventures-12/4000-539161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539162/","id":539162,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-amazing-adventures-2-/4000-539162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539732/","id":539732,"name":"Back In Business","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-2-back-in-business/4000-539732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540032/","id":540032,"name":"Cometh The Hour","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-143-cometh-the-hour/4000-540032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540042/","id":540042,"name":"The innsmouth Connection","site_detail_url":"https://comicvine.gamespot.com/weird-detective-2-the-innsmouth-connection/4000-540042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540104/","id":540104,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/four-eyes-hearts-of-fire-1-volume-two/4000-540104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540154/","id":540154,"name":"","site_detail_url":"https://comicvine.gamespot.com/heartthrob-4/4000-540154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540165/","id":540165,"name":"Working Girl; First Little Brother, Now Big Brother","site_detail_url":"https://comicvine.gamespot.com/the-sensational-g-girl-2-working-girl-first-little/4000-540165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540814/","id":540814,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-7/4000-540814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540825/","id":540825,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-60/4000-540825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541150/","id":541150,"name":"Part Three of Three","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-metal-monsters-of-midtown-3-part-t/4000-541150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538442/","id":538442,"name":"Applicable Skills","site_detail_url":"https://comicvine.gamespot.com/the-transformers-till-all-are-one-2-applicable-ski/4000-538442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541218/","id":541218,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-gods-and-women-1-volume-4/4000-541218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541279/","id":541279,"name":"","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-1-coloring-edition-1/4000-541279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541304/","id":541304,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-boys-of-sheriff-street-1-gn/4000-541304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541190/","id":541190,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/divinity-ii-4-book-four/4000-541190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542500/","id":542500,"name":"Volume 3: 1981-1982","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-ultimate-newspaper-comi/4000-542500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528516/","id":528516,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-1/4000-528516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538517/","id":538517,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-witches-road-1-volume-1/4000-538517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540828/","id":540828,"name":"The Last Autobot","site_detail_url":"https://comicvine.gamespot.com/the-transformers-titans-return-one-shot-1-the-last/4000-540828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528524/","id":528524,"name":"Ms. Poole if You're Nasty","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-0-ms-poole-if-youre-nast/4000-528524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538486/","id":538486,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-2-volume-2/4000-538486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547773/","id":547773,"name":"Secret Raiders: A Revolution Prelude","site_detail_url":"https://comicvine.gamespot.com/revolution-prelude-0-secret-raiders-a-revolution-p/4000-547773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528513/","id":528513,"name":"Meet the Parent","site_detail_url":"https://comicvine.gamespot.com/new-avengers-11-meet-the-parent/4000-528513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551959/","id":551959,"name":"Union imparfaite","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-2-union-imparfaite/4000-551959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552337/","id":552337,"name":"La traque au détraqué","site_detail_url":"https://comicvine.gamespot.com/all-new-deadpool-2-la-traque-au-detraque/4000-552337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529169/","id":529169,"name":"Steve Rogers Captain America; The Amazing Spider-Man Up & About","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2016-captain-america-1-steve-r/4000-529169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528520/","id":528520,"name":"Spider-Women Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-8-spider-women-part-5/4000-528520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529661/","id":529661,"name":"Spider-Women Part 6","site_detail_url":"https://comicvine.gamespot.com/silk-8-spider-women-part-6/4000-529661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530739/","id":530739,"name":"Spider-Women Part 7","site_detail_url":"https://comicvine.gamespot.com/spider-woman-7-spider-women-part-7/4000-530739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531879/","id":531879,"name":"The Last Days of Magic Chapter Three","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-8-the-last-days-of-magic-chapter-th/4000-531879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538551/","id":538551,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-264/4000-538551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539261/","id":539261,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-old-man-logan-berzerker-1-volume-1/4000-539261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531899/","id":531899,"name":"Isn't It Bromantic? Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-5-isnt-it-bromantic-part-five/4000-531899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530737/","id":530737,"name":"Homeworld","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-4-homeworld/4000-530737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528506/","id":528506,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-1-chapter-one/4000-528506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531897/","id":531897,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-6/4000-531897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539227/","id":539227,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-by-greg-rucka-1-volume-1/4000-539227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540146/","id":540146,"name":"","site_detail_url":"https://comicvine.gamespot.com/elasticator-5/4000-540146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539328/","id":539328,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-osamu-tezuka-story-a-life-in-manga-and-anime-1/4000-539328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528510/","id":528510,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-9/4000-528510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538584/","id":538584,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/cook-korean-a-comic-book-with-recipes-1-gn/4000-538584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528499/","id":528499,"name":"Power Play Part 1: The Stark Contrast","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-12-power-play-part-1-the-st/4000-528499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529629/","id":529629,"name":"Hit 'em Where It Hurts.","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-and-her-gang-of-harleys-2-hit-em-wher/4000-529629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540367/","id":540367,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-2/4000-540367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538665/","id":538665,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-1/4000-538665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538664/","id":538664,"name":"Tower of Wisdom, Part II","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-ulysses-infinite-comic-2-tower-of-wis/4000-538664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538661/","id":538661,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-4/4000-538661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525032/","id":525032,"name":"Welcome To New Egypt: Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-1-welcome-to-new-egypt-part-1-of-5/4000-525032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524997/","id":524997,"name":"","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-11/4000-524997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526065/","id":526065,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-3/4000-526065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527101/","id":527101,"name":"Modern Love Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/art-ops-7-modern-love-part-two-of-two/4000-527101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527131/","id":527131,"name":"Scorpio Rising Part 3: Signs From Above","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-11-scorpio-rising-part-3-si/4000-527131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527132/","id":527132,"name":"Part Two: ...Is A Deal","site_detail_url":"https://comicvine.gamespot.com/angela-queen-of-hel-7-part-two-is-a-deal/4000-527132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527162/","id":527162,"name":"The Amazing","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-1-the-amazing/4000-527162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-532988/","id":532988,"name":"The New Ghostbusters; In the Box Part One","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-2013-1-greatest-hits-edition-1-the-ne/4000-532988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533049/","id":533049,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-3/4000-533049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533077/","id":533077,"name":"Part One: Tangles In the Tapestry; Antithesis, Part One","site_detail_url":"https://comicvine.gamespot.com/strange-attractors-1-part-one-tangles-in-the-tapes/4000-533077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534301/","id":534301,"name":"Part Three: Open Windows","site_detail_url":"https://comicvine.gamespot.com/gold-key-alliance-3-part-three-open-windows/4000-534301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534531/","id":534531,"name":"","site_detail_url":"https://comicvine.gamespot.com/timely-comics-daredevil-1/4000-534531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534075/","id":534075,"name":"Cobra Nation Part Four","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-229-cobra-nation-part-/4000-534075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533502/","id":533502,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/shang-chi-master-of-kung-fu-omnibus-1-volume-1/4000-533502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535268/","id":535268,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-59/4000-535268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535323/","id":535323,"name":"The Stars Are Wrong","site_detail_url":"https://comicvine.gamespot.com/weird-detective-1-the-stars-are-wrong/4000-535323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535339/","id":535339,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-1-book-one/4000-535339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535360/","id":535360,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-hooked-on-a-feline-1-volu/4000-535360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535401/","id":535401,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/compass-south-1-gn/4000-535401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535412/","id":535412,"name":"The Jazz Monster","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-year-two-11-the-jazz-m/4000-535412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537326/","id":537326,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-extrano-5/4000-537326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537242/","id":537242,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nyx-the-complete-collection-1-tpb/4000-537242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525042/","id":525042,"name":"Nobody Knows Nothing","site_detail_url":"https://comicvine.gamespot.com/web-warriors-6-nobody-knows-nothing/4000-525042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537284/","id":537284,"name":"You're Gonna Make It After All! (Maybe)","site_detail_url":"https://comicvine.gamespot.com/life-with-kevin-1-youre-gonna-make-it-after-all-ma/4000-537284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537852/","id":537852,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-1-volume-1/4000-537852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537866/","id":537866,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-bebop-and-rocksteady-/4000-537866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537994/","id":537994,"name":"New Beginnings","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-i-love-ny-1-new-beginnings/4000-537994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537911/","id":537911,"name":"Part Two of Three","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-metal-monsters-of-midtown-2-part-t/4000-537911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527150/","id":527150,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-5/4000-527150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-532991/","id":532991,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-bebop-and-rocksteady-/4000-532991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534083/","id":534083,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-bebop-and-rocksteady-/4000-534083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538786/","id":538786,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-4/4000-538786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535994/","id":535994,"name":"","site_detail_url":"https://comicvine.gamespot.com/claws-1/4000-535994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543116/","id":543116,"name":"The Encoder","site_detail_url":"https://comicvine.gamespot.com/the-last-templar-1-the-encoder/4000-543116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525040/","id":525040,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unbelievable-gwenpool-1/4000-525040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537923/","id":537923,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-trial-by-fire-1-tpb/4000-537923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525347/","id":525347,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-16/4000-525347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551958/","id":551958,"name":"Rassemblement !","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-1-rassemblement/4000-551958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552336/","id":552336,"name":"Sumus Omnes Deadpool","site_detail_url":"https://comicvine.gamespot.com/all-new-deadpool-1-sumus-omnes-deadpool/4000-552336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534286/","id":534286,"name":"Volume 16: Killogy","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-16-volume-16-killogy/4000-534286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523267/","id":523267,"name":"Spider-Women Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-woman-alpha-1-spider-women-part-1/4000-523267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525037/","id":525037,"name":"Spider-Women Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-7-spider-women-part-2/4000-525037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526066/","id":526066,"name":"Spider-Women Part 3","site_detail_url":"https://comicvine.gamespot.com/silk-7-spider-women-part-3/4000-526066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527153/","id":527153,"name":"Spider-Women Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-woman-6-spider-women-part-4/4000-527153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527138/","id":527138,"name":"The Last Days of Magic Chapter Two","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-7-the-last-days-of-magic-chapter-tw/4000-527138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537851/","id":537851,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-6/4000-537851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525036/","id":525036,"name":"I Stand With Earth!","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-3-i-stand-with-earth/4000-525036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527147/","id":527147,"name":"BFF Part 6: Eureka!","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-6-bff-part-6-eureka/4000-527147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533276/","id":533276,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-7-/4000-533276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527160/","id":527160,"name":"Broken Plays Chapter Six","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-6-broken-plays-chapter-six/4000-527160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525035/","id":525035,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-and-groot-4/4000-525035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533014/","id":533014,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/legends-30th-anniversay-edition-1-tpb/4000-533014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537993/","id":537993,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/thunderbirds-the-vault-1-hc/4000-537993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526067/","id":526067,"name":"Isn't It Bromantic? Part Four","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-4-isnt-it-bromantic-part-four/4000-526067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533040/","id":533040,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-classic-omnibus-1-hc/4000-533040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537429/","id":537429,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-8-/4000-537429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535498/","id":535498,"name":"Tower of Wisdom, Part I","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-ulysses-infinite-comic-1-tower-of-wis/4000-535498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517831/","id":517831,"name":"A Crack In the System","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-civil-w/4000-517831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517835/","id":517835,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2/4000-517835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518831/","id":518831,"name":"Rave Un2 the Joy Fantastic","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-10-rave-un2-the-joy-fan/4000-518831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518861/","id":518861,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-1/4000-518861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518866/","id":518866,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-8/4000-518866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521329/","id":521329,"name":"Part One: A Deal...","site_detail_url":"https://comicvine.gamespot.com/angela-queen-of-hel-6-part-one-a-deal/4000-521329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521341/","id":521341,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-4/4000-521341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522408/","id":522408,"name":"Dead Water","site_detail_url":"https://comicvine.gamespot.com/aquaman-50-dead-water/4000-522408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522430/","id":522430,"name":"The Storm Breaks","site_detail_url":"https://comicvine.gamespot.com/hercules-5-the-storm-breaks/4000-522430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522432/","id":522432,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4000-522432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522434/","id":522434,"name":"BFF Part 5: Know How","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-5-bff-part-5-know-how/4000-522434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521300/","id":521300,"name":"Modern Love Part One of Two","site_detail_url":"https://comicvine.gamespot.com/art-ops-6-modern-love-part-one-of-two/4000-521300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528381/","id":528381,"name":"Cobra Nation Part Three","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-228-cobra-nation-part-/4000-528381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529505/","id":529505,"name":"Leatherhead Part 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-58-leatherhead-part-3/4000-529505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529652/","id":529652,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-back-in-black-chinatown-1-volume-1/4000-529652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529752/","id":529752,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/something-new-tales-from-a-makeshift-bride-1-gn/4000-529752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530762/","id":530762,"name":"","site_detail_url":"https://comicvine.gamespot.com/snowfall-4/4000-530762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530802/","id":530802,"name":"Problem Children","site_detail_url":"https://comicvine.gamespot.com/hellchild-3-problem-children/4000-530802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531686/","id":531686,"name":"The Rolling Bootlegs","site_detail_url":"https://comicvine.gamespot.com/baccano-1-the-rolling-bootlegs/4000-531686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531763/","id":531763,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-5/4000-531763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531870/","id":531870,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/divinity-ii-2-book-two/4000-531870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530701/","id":530701,"name":"Book Twelve","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-12-book-twelve/4000-530701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531962/","id":531962,"name":"Hard-Hearted","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-annual-1-hard-hearted/4000-531962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531842/","id":531842,"name":"Part One of Three","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-metal-monsters-of-midtown-1-part-o/4000-531842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535800/","id":535800,"name":"New York","site_detail_url":"https://comicvine.gamespot.com/the-uniques-1-new-york/4000-535800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535832/","id":535832,"name":"Empire State","site_detail_url":"https://comicvine.gamespot.com/merkaba-1-empire-state/4000-535832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538785/","id":538785,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-3/4000-538785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535897/","id":535897,"name":"Searching For Something","site_detail_url":"https://comicvine.gamespot.com/the-uniques-2-searching-for-something/4000-535897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535902/","id":535902,"name":"Pirate Bay","site_detail_url":"https://comicvine.gamespot.com/the-carriers-1-pirate-bay/4000-535902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519154/","id":519154,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-15/4000-519154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517825/","id":517825,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-1/4000-517825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521339/","id":521339,"name":"\"Of Course, You Realize...\"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-8-of-course-you-realize/4000-521339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528473/","id":528473,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/rebels-a-well-regulated-militia-1-tpb/4000-528473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520211/","id":520211,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-5/4000-520211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520210/","id":520210,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-6/4000-520210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518865/","id":518865,"name":"Greater Power Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-6-greater-power-conclusion/4000-518865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518855/","id":518855,"name":"The Last Days of Magic Chapter One","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-6-the-last-days-of-magic-chapter-on/4000-518855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520201/","id":520201,"name":"Omega World; Strange Magik","site_detail_url":"https://comicvine.gamespot.com/extraordinary-x-men-8-omega-world-strange-magik/4000-520201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530763/","id":530763,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-263/4000-530763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530811/","id":530811,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fake-empire-1-tpb/4000-530811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530972/","id":530972,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-6-/4000-530972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521348/","id":521348,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-5/4000-521348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531975/","id":531975,"name":"","site_detail_url":"https://comicvine.gamespot.com/elasticator-3/4000-531975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528603/","id":528603,"name":"Bully For You","site_detail_url":"https://comicvine.gamespot.com/rough-riders-2-bully-for-you/4000-528603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528390/","id":528390,"name":"Vol. 14","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-order-from-chaos-14-v/4000-528390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530758/","id":530758,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/lazarus-the-second-collection-1-volume-2/4000-530758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521328/","id":521328,"name":"Hawkeyes Part Two of Three","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-5-hawkeyes-part-two-of-three/4000-521328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529681/","id":529681,"name":"","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-6/4000-529681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530678/","id":530678,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantomen-201610-11/4000-530678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529510/","id":529510,"name":"No. 23, May 9, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-222-no-23-may-9-2016/4000-529510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529010/","id":529010,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-5-/4000-529010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-536195/","id":536195,"name":"Band 1","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-1-band-1/4000-536195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513648/","id":513648,"name":"Millennium: Part Three: Friend and Foe; Guardians of the Lower East Side","site_detail_url":"https://comicvine.gamespot.com/guardians-of-infinity-3-millennium-part-three-frie/4000-513648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513652/","id":513652,"name":"","site_detail_url":"https://comicvine.gamespot.com/nova-4/4000-513652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514214/","id":514214,"name":"Red and Black Is the New Green","site_detail_url":"https://comicvine.gamespot.com/harleys-little-black-book-2-red-and-black-is-the-n/4000-514214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514401/","id":514401,"name":"Run Like Hell Part Three","site_detail_url":"https://comicvine.gamespot.com/catwoman-49-run-like-hell-part-three/4000-514401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514402/","id":514402,"name":"The Art of the Deal","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-9-the-art-of-the-deal/4000-514402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514451/","id":514451,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-6/4000-514451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514452/","id":514452,"name":"Isn't It Bromantic? Part Two","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-2-isnt-it-bromantic-part-two/4000-514452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514435/","id":514435,"name":"The End of An Error; Armed and Dangerous; Slapstick Meets the Forgotten; Foolkiller Goes Back To School; Beneath the Surface; El Diablo Empujó; Solo's Solo Mission","site_detail_url":"https://comicvine.gamespot.com/deadpool-7-the-end-of-an-error-armed-and-dangerous/4000-514435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514407/","id":514407,"name":"Chapters 40-42","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-14-chapters-40-42/4000-514407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514399/","id":514399,"name":"Totally Awesome Team-Up","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-3-totally-aweso/4000-514399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516055/","id":516055,"name":"Protest","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-9-protest/4000-516055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516060/","id":516060,"name":"Waiting In the Sky","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-9-waiting-in-the-sky/4000-516060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516914/","id":516914,"name":"The Assassination of the Mona Lisa: Part Five of How To Start A Riot","site_detail_url":"https://comicvine.gamespot.com/art-ops-5-the-assassination-of-the-mona-lisa-part-/4000-516914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516950/","id":516950,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-4/4000-516950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516954/","id":516954,"name":"Let There Be Blood","site_detail_url":"https://comicvine.gamespot.com/hercules-4-let-there-be-blood/4000-516954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516956/","id":516956,"name":"","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield-5/4000-516956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516960/","id":516960,"name":"The Spider-Verse Part Four","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse-4/4000-516960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516963/","id":516963,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-3/4000-516963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518915/","id":518915,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroes-godsend-1/4000-518915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523247/","id":523247,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-worldwide-1-volume-1/4000-523247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523276/","id":523276,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-1/4000-523276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523299/","id":523299,"name":"The Big Stick","site_detail_url":"https://comicvine.gamespot.com/rough-riders-1-the-big-stick/4000-523299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524980/","id":524980,"name":"Regressions, Part 1","site_detail_url":"https://comicvine.gamespot.com/abe-sapien-32-regressions-part-1/4000-524980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524920/","id":524920,"name":"The Frogs of War - Part One; Mini Metalhead","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-amazing-adventures-9-/4000-524920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513646/","id":513646,"name":"Pound of Flesh","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-5-pound-of-flesh/4000-513646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524437/","id":524437,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-19/4000-524437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526079/","id":526079,"name":"Chapter One: Shadow of A Doubt","site_detail_url":"https://comicvine.gamespot.com/the-twilight-zone-the-shadow-1-chapter-one-shadow-/4000-526079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526131/","id":526131,"name":"Born In Blood","site_detail_url":"https://comicvine.gamespot.com/hellchild-2-born-in-blood/4000-526131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526078/","id":526078,"name":"Part Three: Love and Loss","site_detail_url":"https://comicvine.gamespot.com/shaft-imitation-of-life-3-part-three-love-and-loss/4000-526078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531377/","id":531377,"name":"","site_detail_url":"https://comicvine.gamespot.com/footprints-bad-luck-charm-1/4000-531377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526120/","id":526120,"name":"To Hell and Back","site_detail_url":"https://comicvine.gamespot.com/street-fighter-unlimited-5-to-hell-and-back/4000-526120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537862/","id":537862,"name":"Chapter Four; Chapter Four: The Rivet Gang!","site_detail_url":"https://comicvine.gamespot.com/the-rocketeer-at-war-4-chapter-four-chapter-four-t/4000-537862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538784/","id":538784,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-2/4000-538784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523213/","id":523213,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-forgotten-man-1/4000-523213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516962/","id":516962,"name":"Fearful Symmetry","site_detail_url":"https://comicvine.gamespot.com/new-avengers-7-fearful-symmetry/4000-516962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514449/","id":514449,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-4/4000-514449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516965/","id":516965,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-5/4000-516965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516090/","id":516090,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-4/4000-516090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514450/","id":514450,"name":"Greater Power Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-5-greater-power-part-five/4000-514450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525066/","id":525066,"name":"All Roads Part Three: Across","site_detail_url":"https://comicvine.gamespot.com/shutter-20-all-roads-part-three-across/4000-525066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514445/","id":514445,"name":"Berserker: Part Two","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-2-berserker-part-two/4000-514445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527025/","id":527025,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-4/4000-527025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516089/","id":516089,"name":"Things Change","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-2-things-change/4000-516089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516961/","id":516961,"name":"BFF Part 4: Hulk + Devil Dinosaur = 'Nuff Said","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-4-bff-part-4-hulk-dev/4000-516961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513654/","id":513654,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-and-groot-2/4000-513654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523301/","id":523301,"name":"VIII: The Key","site_detail_url":"https://comicvine.gamespot.com/providence-8-viii-the-key/4000-523301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526058/","id":526058,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1990s-1-volume-1/4000-526058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525348/","id":525348,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/green-lantern-by-geoff-johns-omnibus-3-volume-3/4000-525348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526137/","id":526137,"name":"","site_detail_url":"https://comicvine.gamespot.com/elasticator-2/4000-526137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513650/","id":513650,"name":"[The War Machines]","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-6-the-war-machines/4000-513650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527133/","id":527133,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-ant-man-everybody-loves-team-ups-1/4000-527133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514429/","id":514429,"name":"Hawkeyes Part One of Three","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-4-hawkeyes-part-one-of-three/4000-514429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525057/","id":525057,"name":"","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-5/4000-525057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526960/","id":526960,"name":"No. 21-22, April 25, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-221-no-21-22-april-25-2016/4000-526960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526465/","id":526465,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-4-/4000-526465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525889/","id":525889,"name":"No. 20, April 18, 2016","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-220-no-20-april-18-2016/4000-525889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523519/","id":523519,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-3-/4000-523519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523513/","id":523513,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-523513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522712/","id":522712,"name":"The Return of the Phoenix","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-april-infinite-comic-1-the-retur/4000-522712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526878/","id":526878,"name":"Der Schrei Nach Zauberei","site_detail_url":"https://comicvine.gamespot.com/fairest-6-der-schrei-nach-zauberei/4000-526878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510103/","id":510103,"name":"","site_detail_url":"https://comicvine.gamespot.com/nova-3/4000-510103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510104/","id":510104,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-5/4000-510104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510493/","id":510493,"name":"Hunt the Dork Knight","site_detail_url":"https://comicvine.gamespot.com/deadpool-5-hunt-the-dork-knight/4000-510493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510503/","id":510503,"name":"Isn't It Bromantic? Part One","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-1-isnt-it-bromantic-part-one/4000-510503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510907/","id":510907,"name":"The Batman Affair Chapter 2: Bruce Wayne, Agent of T.H.R.U.S.H.?","site_detail_url":"https://comicvine.gamespot.com/batman-66-meets-the-man-from-uncle-2-the-batman-af/4000-510907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510912/","id":510912,"name":"Run Like Hell Part Two","site_detail_url":"https://comicvine.gamespot.com/catwoman-48-run-like-hell-part-two/4000-510912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510913/","id":510913,"name":"Midnight In the V.I.P. Room of Good and Evil","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-8-midnight-in-the-vip-r/4000-510913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510951/","id":510951,"name":"Beyond","site_detail_url":"https://comicvine.gamespot.com/secret-wars-9-beyond/4000-510951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511075/","id":511075,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-13/4000-511075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510945/","id":510945,"name":"","site_detail_url":"https://comicvine.gamespot.com/illuminati-3/4000-510945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511520/","id":511520,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-1-homecoming/4000-511520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512388/","id":512388,"name":"Galactic Gang Rayguns, Part Four of How to Start A Riot","site_detail_url":"https://comicvine.gamespot.com/art-ops-4-galactic-gang-rayguns-part-four-of-how-t/4000-512388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510934/","id":510934,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-4/4000-510934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514524/","id":514524,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-year-two-6/4000-514524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510485/","id":510485,"name":"Turbulence [140]","site_detail_url":"https://comicvine.gamespot.com/unfollow-3-turbulence-140/4000-510485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518758/","id":518758,"name":"Black Hole","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-11-black-h/4000-518758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519156/","id":519156,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-deviations-1/4000-519156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518875/","id":518875,"name":"Part Two: Easy Money","site_detail_url":"https://comicvine.gamespot.com/shaft-imitation-of-life-2-part-two-easy-money/4000-518875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520110/","id":520110,"name":"Volume 14: Cobra World Order","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-14-volume-14-cobra-wor/4000-520110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520191/","id":520191,"name":"Archer & Armstrong Are In the Bag!","site_detail_url":"https://comicvine.gamespot.com/aanda-the-adventures-of-archer-and-armstrong-1-arc/4000-520191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520241/","id":520241,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-borne-again-3-volume-3/4000-520241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520254/","id":520254,"name":"","site_detail_url":"https://comicvine.gamespot.com/paknadel-and-trakhanovs-turncoat-1/4000-520254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521208/","id":521208,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-deviations-1/4000-521208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521209/","id":521209,"name":"Chapter Two: Depth Charge!; Chapter Two: The Rivet Gang!","site_detail_url":"https://comicvine.gamespot.com/the-rocketeer-at-war-2-chapter-two-depth-charge-ch/4000-521209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521211/","id":521211,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/super-angry-birds-1-tpb/4000-521211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521213/","id":521213,"name":"Leatherhead Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-56-leatherhead-part-1/4000-521213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521342/","id":521342,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/punisher-max-the-complete-collection-2-volume-two/4000-521342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521391/","id":521391,"name":"A Peculiar Incident At Club Lavender","site_detail_url":"https://comicvine.gamespot.com/hellchild-1-a-peculiar-incident-at-club-lavender/4000-521391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520646/","id":520646,"name":"F@#$ING RIOT","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-20-fing-riot/4000-520646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522194/","id":522194,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-3/4000-522194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522201/","id":522201,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-deviations-1/4000-522201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522461/","id":522461,"name":"","site_detail_url":"https://comicvine.gamespot.com/dreamworks-madagascar-1/4000-522461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520119/","id":520119,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-2-/4000-520119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524436/","id":524436,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-18/4000-524436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524385/","id":524385,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-magazine-496/4000-524385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537192/","id":537192,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-extrano-1/4000-537192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538265/","id":538265,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-wars-9/4000-538265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538783/","id":538783,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-1/4000-538783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539509/","id":539509,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-13/4000-539509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539584/","id":539584,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardianes-de-la-galaxia-36/4000-539584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539874/","id":539874,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-36/4000-539874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552391/","id":552391,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-37/4000-552391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510952/","id":510952,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-3/4000-510952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512434/","id":512434,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-3/4000-512434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510502/","id":510502,"name":"Greater Power Part Four","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-4-greater-power-part-four/4000-510502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512399/","id":512399,"name":"Power and Glory Part Six","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-7-power-and-glory-part-s/4000-512399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510496/","id":510496,"name":"The Art of Puking Without Puking","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-4-the-art-of-puking-without-puking/4000-510496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512432/","id":512432,"name":"Berserker","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-1-berserker/4000-512432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512431/","id":512431,"name":"BFF Part 3: \"Out of the Frying Pan...\"","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-3-bff-part-3-out-of-t/4000-512431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511518/","id":511518,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-2/4000-511518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520236/","id":520236,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/phonogram-the-immaterial-girl-1-volume-3/4000-520236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521293/","id":521293,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/astro-boy-omnibus-3-volume-3/4000-521293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520209/","id":520209,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/secret-wars-1-hc/4000-520209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520284/","id":520284,"name":"","site_detail_url":"https://comicvine.gamespot.com/elasticator-1/4000-520284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522469/","id":522469,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/science-comics-dinosaurs-fossils-and-feathers-1-gn/4000-522469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520380/","id":520380,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-2-/4000-520380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520426/","id":520426,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-520426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517966/","id":517966,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic-1-/4000-517966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517961/","id":517961,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-517961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517668/","id":517668,"name":"Chapter 11: Unusual Suspects","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-11-chapter-11-un/4000-517668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507177/","id":507177,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-1/4000-507177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507173/","id":507173,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-all-different-avengers-2/4000-507173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507739/","id":507739,"name":"Twisted Anatomy","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-7-twisted-anatomy/4000-507739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507782/","id":507782,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-4/4000-507782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507779/","id":507779,"name":"About the Death of Many Cats","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch-1-about-the-death-of-many-cats/4000-507779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507744/","id":507744,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-12/4000-507744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507770/","id":507770,"name":"Just Because You're Paranoid...","site_detail_url":"https://comicvine.gamespot.com/deadpool-3-just-because-youre-paranoid/4000-507770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508440/","id":508440,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-end-5/4000-508440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508428/","id":508428,"name":"","site_detail_url":"https://comicvine.gamespot.com/illuminati-2/4000-508428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508857/","id":508857,"name":"Screams: Part Three of How To Start A Riot","site_detail_url":"https://comicvine.gamespot.com/art-ops-3-screams-part-three-of-how-to-start-a-rio/4000-508857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508887/","id":508887,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-2/4000-508887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508896/","id":508896,"name":"BFF, Part 2: \"Old Dogs and New Tricks\"","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-2-bff-part-2-old-dogs/4000-508896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508898/","id":508898,"name":"","site_detail_url":"https://comicvine.gamespot.com/patsy-walker-aka-hellcat-1/4000-508898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508889/","id":508889,"name":"It Had To Be You","site_detail_url":"https://comicvine.gamespot.com/deadpool-4-it-had-to-be-you/4000-508889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509695/","id":509695,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-3/4000-509695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512496/","id":512496,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-year-two-5/4000-512496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513658/","id":513658,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-omnibus-1-hc/4000-513658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513704/","id":513704,"name":"","site_detail_url":"https://comicvine.gamespot.com/code-pru-2/4000-513704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513729/","id":513729,"name":"Into Glory","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-19-into-glor/4000-513729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514468/","id":514468,"name":"","site_detail_url":"https://comicvine.gamespot.com/gutter-magic-2/4000-514468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514479/","id":514479,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1-idw-greatest-hits-1/4000-514479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514463/","id":514463,"name":"Part One: Before and After","site_detail_url":"https://comicvine.gamespot.com/shaft-imitation-of-life-1-part-one-before-and-afte/4000-514463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516841/","id":516841,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-55/4000-516841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516911/","id":516911,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-zone-continuum-1-tpb/4000-516911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514379/","id":514379,"name":"The Black School","site_detail_url":"https://comicvine.gamespot.com/abe-sapien-31-the-black-school/4000-514379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516312/","id":516312,"name":"","site_detail_url":"https://comicvine.gamespot.com/six-4/4000-516312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516974/","id":516974,"name":"The Last Suppers, Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/chew-55-the-last-suppers-part-5-of-5/4000-516974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511111/","id":511111,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manthor-8/4000-511111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516979/","id":516979,"name":"Infernal Engines","site_detail_url":"https://comicvine.gamespot.com/mythic-7-infernal-engines/4000-516979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539622/","id":539622,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-20/4000-539622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516834/","id":516834,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-2/4000-516834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508436/","id":508436,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-2/4000-508436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508899/","id":508899,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-2/4000-508899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507781/","id":507781,"name":"Greater Power Part Three","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-3-greater-power-part-three/4000-507781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513692/","id":513692,"name":"All Roads Part One: There Was You","site_detail_url":"https://comicvine.gamespot.com/shutter-18-all-roads-part-one-there-was-you/4000-513692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507179/","id":507179,"name":"Eaters of Magic","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-3-eaters-of-magic/4000-507179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507181/","id":507181,"name":"Millennium: Part One; To Be the Man...","site_detail_url":"https://comicvine.gamespot.com/guardians-of-infinity-1-millennium-part-one-to-be-/4000-507181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513609/","id":513609,"name":"The Sunken Dead Part 1","site_detail_url":"https://comicvine.gamespot.com/joe-golem-occult-detective-4-the-sunken-dead-part-/4000-513609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513636/","id":513636,"name":"The Kill List Part 2: Going to Ground","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-44-the-kill-list-part-2-going-to-groun/4000-513636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524362/","id":524362,"name":"With Friends Like These...","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-28-with-friends-like-th/4000-524362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516296/","id":516296,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-516296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514672/","id":514672,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-february-infinite-comic-1/4000-514672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514439/","id":514439,"name":"Infinite Power Part 5","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-infinite-comic-5-infinite/4000-514439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513617/","id":513617,"name":"The Batman Affair Ch. 6","site_detail_url":"https://comicvine.gamespot.com/batman-66-meets-the-man-from-uncle-6-the-batman-af/4000-513617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513809/","id":513809,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-513809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512038/","id":512038,"name":"Circus of Crime","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-27-circus-of-crime/4000-512038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504929/","id":504929,"name":"Friendly Fire","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-3-friendly-fire/4000-504929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504934/","id":504934,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-1/4000-504934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504941/","id":504941,"name":"Still Going Strong","site_detail_url":"https://comicvine.gamespot.com/hercules-1-still-going-strong/4000-504941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504942/","id":504942,"name":"[Untitled]; Ms. Poole if You're Nasty (Part One of Three)","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-1-untitled-ms-poole-if-youre-nasty/4000-504942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505492/","id":505492,"name":"Get A Job","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-6-get-a-job/4000-505492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505511/","id":505511,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-all-different-avengers-1/4000-505511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505529/","id":505529,"name":"Start With the Impossible","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-1-start-with-the-impossible/4000-505529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505738/","id":505738,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-11/4000-505738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506145/","id":506145,"name":"The Price","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-6-the-price/4000-506145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506182/","id":506182,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-1/4000-506182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506656/","id":506656,"name":"Mission 002: Ghost Train","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield-2-mission-002-ghost-tr/4000-506656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506660/","id":506660,"name":"BFF, Part 1: \"repeat after me\"","site_detail_url":"https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-1-bff-part-1-repeat-a/4000-506660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506167/","id":506167,"name":"The More We Give, The More We Have","site_detail_url":"https://comicvine.gamespot.com/deadpool-2-the-more-we-give-the-more-we-have/4000-506167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506646/","id":506646,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-2/4000-506646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510527/","id":510527,"name":"Vol. 13","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-vengeance-part-2-1-vo/4000-510527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510534/","id":510534,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/four-eyes-hearts-of-fire-1-chapter-1/4000-510534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510568/","id":510568,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/dmc-2-vol-2/4000-510568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510946/","id":510946,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-7-volume-7/4000-510946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510967/","id":510967,"name":"","site_detail_url":"https://comicvine.gamespot.com/gutter-magic-1/4000-510967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510990/","id":510990,"name":"","site_detail_url":"https://comicvine.gamespot.com/injection-6/4000-510990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511072/","id":511072,"name":"New York","site_detail_url":"https://comicvine.gamespot.com/ekho-1-new-york/4000-511072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511466/","id":511466,"name":"End of Days, Part 5","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-139-end-of-days-part-5/4000-511466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511519/","id":511519,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/punisher-max-the-complete-collection-1-volume-one/4000-511519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511530/","id":511530,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-1-volume-1/4000-511530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511493/","id":511493,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/new-teen-titans-4-volume-four/4000-511493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511724/","id":511724,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-maninhumansall-new-captain-america-/4000-511724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512450/","id":512450,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-54/4000-512450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512445/","id":512445,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-international-1/4000-512445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512623/","id":512623,"name":"Paris Empire","site_detail_url":"https://comicvine.gamespot.com/ekho-2-paris-empire/4000-512623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513146/","id":513146,"name":"A Bleak Christmas","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-joe-bleak-1-a-bleak-christmas/4000-513146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511598/","id":511598,"name":"A Couple of Misfits","site_detail_url":"https://comicvine.gamespot.com/street-fighter-unlimited-2-a-couple-of-misfits/4000-511598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510539/","id":510539,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/shutter-quo-vadis-1-volume-three/4000-510539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510562/","id":510562,"name":"The Child of Darkness","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-18-the-child/4000-510562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506618/","id":506618,"name":"Riot In Suburbia: Part Two of How To Start A Riot","site_detail_url":"https://comicvine.gamespot.com/art-ops-2-riot-in-suburbia-part-two-of-how-to-star/4000-506618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510939/","id":510939,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-flashbacks-1-tpb/4000-510939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506162/","id":506162,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-ant-man-2/4000-506162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506175/","id":506175,"name":"Thunder in Her Veins","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-1-thunder-in-her-veins/4000-506175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506662/","id":506662,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-1/4000-506662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504948/","id":504948,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-0/4000-504948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505523/","id":505523,"name":"Greater Power Part Two","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-2-greater-power-part-two/4000-505523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506652/","id":506652,"name":"","site_detail_url":"https://comicvine.gamespot.com/groot-6/4000-506652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506665/","id":506665,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-space-knight-1/4000-506665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511553/","id":511553,"name":"See Emily Play; Modern Love","site_detail_url":"https://comicvine.gamespot.com/phonogram-the-immaterial-girl-6-see-emily-play-mod/4000-511553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512462/","id":512462,"name":"","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-3/4000-512462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511725/","id":511725,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-511725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511676/","id":511676,"name":"Infinite Power Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-infinite-comic-3-infinite/4000-511676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688461/","id":688461,"name":"Hunger Games!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-26-hunger-games/4000-688461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510359/","id":510359,"name":"Hammer-Time!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-25-hammer-time/4000-510359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509160/","id":509160,"name":"A New Spidey Saga Begins! Spiral","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-24-a-new-spidey-saga-be/4000-509160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721661/","id":721661,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/teufelsmaul-1-gn/4000-721661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502108/","id":502108,"name":"Worldwide","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-1-worldwide/4000-502108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502116/","id":502116,"name":"The Way of the Weird; The Coming Slaughter","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-1-the-way-of-the-weird-the-coming-s/4000-502116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502139/","id":502139,"name":"Black Bolt Betrayed Earth?","site_detail_url":"https://comicvine.gamespot.com/what-if-infinity-inhumans-1-black-bolt-betrayed-ea/4000-502139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502127/","id":502127,"name":"","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-5/4000-502127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502119/","id":502119,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-1/4000-502119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502288/","id":502288,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-jessica-jones-1/4000-502288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502421/","id":502421,"name":"Power and Glory Part Four","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-4-power-and-glory-part-f/4000-502421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502873/","id":502873,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-1/4000-502873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503027/","id":503027,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-10/4000-503027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504301/","id":504301,"name":"Police and Thieves: Part One of How To Start A Riot","site_detail_url":"https://comicvine.gamespot.com/art-ops-1-police-and-thieves-part-one-of-how-to-st/4000-504301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504348/","id":504348,"name":"The Green Goblin Stole the Infinity Gauntlet?","site_detail_url":"https://comicvine.gamespot.com/what-if-infinity-dark-reign-1-the-green-goblin-sto/4000-504348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507057/","id":507057,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-years-of-future-past-warzones-1-tpb/4000-507057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507246/","id":507246,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-girl-7/4000-507246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507773/","id":507773,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/hawkeye-2-vol-2/4000-507773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502874/","id":502874,"name":"An Imperfect Union","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1-an-imperfect-union/4000-502874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507973/","id":507973,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/marked-1-gn/4000-507973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508388/","id":508388,"name":"End Of Days, Part 4","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-138-end-of-days-part-4/4000-508388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507196/","id":507196,"name":"","site_detail_url":"https://comicvine.gamespot.com/doc-savage-the-spiders-web-1/4000-507196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507204/","id":507204,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-1-tpb/4000-507204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508460/","id":508460,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/rocky-and-bullwinkle-classic-adventures-1-tpb/4000-508460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508913/","id":508913,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-ultimate-collecti/4000-508913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508967/","id":508967,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-attitude-adj/4000-508967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509211/","id":509211,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mick-1/4000-509211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509702/","id":509702,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hail-hydra-warzones-1-tpb/4000-509702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509743/","id":509743,"name":"","site_detail_url":"https://comicvine.gamespot.com/code-pru-1/4000-509743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510175/","id":510175,"name":"","site_detail_url":"https://comicvine.gamespot.com/yo-miss-a-graphic-look-at-high-school-1/4000-510175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514481/","id":514481,"name":"The Invasion!","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-animated-7-the-invasi/4000-514481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509675/","id":509675,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-glass-mantis-1/4000-509675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507049/","id":507049,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-autobiography-of-matt-murdock-1-volu/4000-507049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507745/","id":507745,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/flinch-1-book-one/4000-507745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507848/","id":507848,"name":"Red Death","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-17-red-death/4000-507848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502109/","id":502109,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-0/4000-502109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540885/","id":540885,"name":"Años del Futuro Pasado 3 - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-32-anos-del-futuro-pasado-3-se/4000-540885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502872/","id":502872,"name":"Greater Power Part One","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-1-greater-power-part-one/4000-502872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502870/","id":502870,"name":"Last Days Part Four","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-19-last-days-part-four/4000-502870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508475/","id":508475,"name":"Losing My Edge; Shiny Black Taxi Cab","site_detail_url":"https://comicvine.gamespot.com/phonogram-the-immaterial-girl-5-losing-my-edge-shi/4000-508475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508424/","id":508424,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-renew-your-vows-warzones-1-/4000-508424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507214/","id":507214,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-casey-and-april-1-tpb/4000-507214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507132/","id":507132,"name":"The Rat Catcher Part 2","site_detail_url":"https://comicvine.gamespot.com/joe-golem-occult-detective-2-the-rat-catcher-part-/4000-507132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508912/","id":508912,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-53/4000-508912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508866/","id":508866,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-sympathy-for-the-devil-/4000-508866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508924/","id":508924,"name":"","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-2/4000-508924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508859/","id":508859,"name":"The Batman Affair Ch. 3: Villains in a Rush","site_detail_url":"https://comicvine.gamespot.com/batman-66-meets-the-man-from-uncle-3-the-batman-af/4000-508859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526892/","id":526892,"name":"Lebewohl","site_detail_url":"https://comicvine.gamespot.com/fables-26-lebewohl/4000-526892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499042/","id":499042,"name":"[Untitled]; Red Widow: First Strike","site_detail_url":"https://comicvine.gamespot.com/mockingbird-shield-50th-anniversary-1-untitled-red/4000-499042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500452/","id":500452,"name":"Nine Days","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-14-nine-da/4000-500452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500561/","id":500561,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-she-hulk-1/4000-500561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499889/","id":499889,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-9/4000-499889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501033/","id":501033,"name":"","site_detail_url":"https://comicvine.gamespot.com/years-of-future-past-5/4000-501033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501613/","id":501613,"name":"","site_detail_url":"https://comicvine.gamespot.com/hail-hydra-3/4000-501613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501614/","id":501614,"name":"","site_detail_url":"https://comicvine.gamespot.com/inferno-5/4000-501614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504835/","id":504835,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-6/4000-504835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504938/","id":504938,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-three-1-volu/4000-504938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504930/","id":504930,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-by-kurt-busiek-and-george-perez-omnibus-2/4000-504930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504970/","id":504970,"name":"The Bird Buster","site_detail_url":"https://comicvine.gamespot.com/super-angry-birds-3-the-bird-buster/4000-504970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504971/","id":504971,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-11/4000-504971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505441/","id":505441,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/pawn-shop-1-gn/4000-505441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505542/","id":505542,"name":"Cobra World Order Part One","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-219-cobra-world-order-/4000-505542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506281/","id":506281,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dinomania-the-lost-art-of-winsor-mccay-the-secret-/4000-506281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506247/","id":506247,"name":"New New New York","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-77-new-new-new-york/4000-506247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506257/","id":506257,"name":"Reprieve","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-2015-holiday/4000-506257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506674/","id":506674,"name":"Cobra World Order Part Two","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-220-cobra-world-order-/4000-506674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506677/","id":506677,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-52/4000-506677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506700/","id":506700,"name":"Chapter One; Chapter Two","site_detail_url":"https://comicvine.gamespot.com/witchblade-185-chapter-one-chapter-two/4000-506700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506675/","id":506675,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-annual-2015-1/4000-506675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509725/","id":509725,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-2014-annual-deluxe-ed/4000-509725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506122/","id":506122,"name":"End Of Days, Part 3","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-137-end-of-days-part-3/4000-506122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505548/","id":505548,"name":"The Meeting of the Mutanimals Part Two; Donnie Finds A Relic","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-amazing-adventures-4-/4000-505548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505609/","id":505609,"name":"The Cops","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-16-the-cops/4000-505609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505611/","id":505611,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/amazing-fantastic-incredible-a-marvelous-memoir-1-/4000-505611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506273/","id":506273,"name":"","site_detail_url":"https://comicvine.gamespot.com/six-1/4000-506273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505482/","id":505482,"name":"Liberty’s Daughter; Occupation","site_detail_url":"https://comicvine.gamespot.com/rebels-8-libertys-daughter-occupation/4000-505482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506194/","id":506194,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/andre-the-giant-closer-to-heaven-1-gn/4000-506194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499043/","id":499043,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/silk-7-untitled/4000-499043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506697/","id":506697,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/spawn-resurrection-1-resurrection/4000-506697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499739/","id":499739,"name":"I'll Always Be There For You.","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-5-ill-always-be/4000-499739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504989/","id":504989,"name":"The Man Who Stole The World, Part Two","site_detail_url":"https://comicvine.gamespot.com/velvet-12-the-man-who-stole-the-world-part-two/4000-504989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499047/","id":499047,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-lord-and-kitty-pryde-3/4000-499047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504900/","id":504900,"name":"The Rat Catcher","site_detail_url":"https://comicvine.gamespot.com/joe-golem-occult-detective-1-the-rat-catcher/4000-504900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506188/","id":506188,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/filmish-a-graphic-journey-through-film-1-gn/4000-506188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506202/","id":506202,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-league-of-extraordinary-gentlemen-nemo-trilogy/4000-506202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506689/","id":506689,"name":"","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-1/4000-506689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505426/","id":505426,"name":"Chapter Forty-Eight","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-48-chapter-forty-eight/4000-505426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504818/","id":504818,"name":"Chapter Forty-Seven","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-47-chapter-forty-seven/4000-504818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496883/","id":496883,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-9/4000-496883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496885/","id":496885,"name":"The Dark Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-10-the-/4000-496885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497384/","id":497384,"name":"Spiral Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-201-spiral-conclusion/4000-497384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497393/","id":497393,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-ride-first-flight-5/4000-497393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497403/","id":497403,"name":"","site_detail_url":"https://comicvine.gamespot.com/years-of-future-past-4/4000-497403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497926/","id":497926,"name":"A Twist of Fate","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-43-a-twist-of-fate/4000-497926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497940/","id":497940,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-three-4/4000-497940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497590/","id":497590,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-8/4000-497590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497935/","id":497935,"name":"\"Daddy has to Go Away for a While\"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-4-daddy-has-to-/4000-497935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502141/","id":502141,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/beef-with-tomato-1-gn/4000-502141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502147/","id":502147,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-inc-the-avenger-5/4000-502147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502424/","id":502424,"name":"The Case of the Willful WIDOW","site_detail_url":"https://comicvine.gamespot.com/sam-hill-in-the-crosshairs-1-the-case-of-the-willf/4000-502424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502859/","id":502859,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/damage-control-the-complete-collection-1-tpb/4000-502859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502885/","id":502885,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-cobra-world-order-prel/4000-502885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503559/","id":503559,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-alias-2-volume-2/4000-503559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503600/","id":503600,"name":"","site_detail_url":"https://comicvine.gamespot.com/cognetic-1/4000-503600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503538/","id":503538,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-deluxe-edition-1-hc/4000-503538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504361/","id":504361,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-51/4000-504361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504391/","id":504391,"name":"","site_detail_url":"https://comicvine.gamespot.com/webwitch-1/4000-504391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504589/","id":504589,"name":"Volume 0","site_detail_url":"https://comicvine.gamespot.com/silk-the-life-and-times-of-cindy-moon-1-volume-0/4000-504589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504312/","id":504312,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-1-volume-1/4000-504312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504587/","id":504587,"name":"Book Eleven","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-11-book-eleven/4000-504587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502188/","id":502188,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/jupiters-circle-1-book-one/4000-502188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502849/","id":502849,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dead-drop-1-tpb/4000-502849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503582/","id":503582,"name":"The Meeting of the Mutanimals Part One; Freaks and Frogs","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-amazing-adventures-3-/4000-503582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502943/","id":502943,"name":"Crazy","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-15-crazy/4000-502943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503585/","id":503585,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-beauty-3/4000-503585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540881/","id":540881,"name":"Años del Futuro Pasado 1 - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-30-anos-del-futuro-pasado-1-se/4000-540881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497958/","id":497958,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-6/4000-497958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498398/","id":498398,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-10/4000-498398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496873/","id":496873,"name":"Calling a Family Meeting","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-calling-a-fam/4000-496873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497401/","id":497401,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-lord-and-kitty-pryde-2/4000-497401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502138/","id":502138,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-omnibus-1-hc/4000-502138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502171/","id":502171,"name":"Vol. 12","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-vengeance-part-1-12-v/4000-502171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502852/","id":502852,"name":"Exodus Part 3: First Shot","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-41-exodus-part-3-first-shot/4000-502852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502231/","id":502231,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/usagi-yojimbo-the-special-edition-1-hc/4000-502231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502963/","id":502963,"name":"","site_detail_url":"https://comicvine.gamespot.com/political-power-bernie-sanders-1/4000-502963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504218/","id":504218,"name":"Chapter Forty-Six","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-46-chapter-forty-six/4000-504218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503452/","id":503452,"name":"Chapter Forty-Five","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-45-chapter-forty-five/4000-503452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502798/","id":502798,"name":"Chapter Forty-Four","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-44-chapter-forty-four/4000-502798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502022/","id":502022,"name":"Chapter Forty-Three","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-43-chapter-forty-three/4000-502022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500626/","id":500626,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-and-x-men-axis-4/4000-500626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526877/","id":526877,"name":"Von Menschen Und Mäusen","site_detail_url":"https://comicvine.gamespot.com/fairest-5-von-menschen-und-mausen/4000-526877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493788/","id":493788,"name":"Spiral Part Four","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-191-spiral-part-four/4000-493788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494302/","id":494302,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-7/4000-494302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494316/","id":494316,"name":"Part 2: \"Because We Said So, That's Why.\"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-2-part-2-becaus/4000-494316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495264/","id":495264,"name":"","site_detail_url":"https://comicvine.gamespot.com/ant-man-annual-1/4000-495264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495283/","id":495283,"name":"","site_detail_url":"https://comicvine.gamespot.com/years-of-future-past-3/4000-495283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495275/","id":495275,"name":"Duality","site_detail_url":"https://comicvine.gamespot.com/moon-knight-17-duality/4000-495275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495986/","id":495986,"name":"Ultimatums","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-four-6-ultimatums/4000-495986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495808/","id":495808,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-9/4000-495808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499023/","id":499023,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-3-volume-3/4000-499023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499136/","id":499136,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/supernatural-law-the-werewolf-of-new-york-1-tpb/4000-499136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499055/","id":499055,"name":"Rawhide's Revenge","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-miss-fury-and-lady-rawhide-1-rawh/4000-499055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499347/","id":499347,"name":"Shanghai","site_detail_url":"https://comicvine.gamespot.com/model-life-takes-2-shanghai/4000-499347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499420/","id":499420,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-fancymen-1/4000-499420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499373/","id":499373,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-wars-1/4000-499373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499830/","id":499830,"name":"#Deathstream","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-14-deathstre/4000-499830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499605/","id":499605,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-40/4000-499605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499948/","id":499948,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-5/4000-499948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500326/","id":500326,"name":"Where the Shadows Run From Themselves","site_detail_url":"https://comicvine.gamespot.com/68-last-rites-2-where-the-shadows-run-from-themsel/4000-500326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500346/","id":500346,"name":"","site_detail_url":"https://comicvine.gamespot.com/escape-from-new-york-10/4000-500346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500484/","id":500484,"name":"Death Breath","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-114-death-breath/4000-500484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500994/","id":500994,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-new-deal-1-ogn/4000-500994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501015/","id":501015,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-spiral-1-volume-5/4000-501015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501059/","id":501059,"name":"Power Broker Part 3; Chicago Blues","site_detail_url":"https://comicvine.gamespot.com/witchblade-184-power-broker-part-3-chicago-blues/4000-501059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501390/","id":501390,"name":"The Queen Of Dead Souls","site_detail_url":"https://comicvine.gamespot.com/requiem-vampire-knight-8-the-queen-of-dead-souls/4000-501390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501618/","id":501618,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/moon-knight-in-the-night-1-volume-3/4000-501618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501421/","id":501421,"name":"In A Small Town","site_detail_url":"https://comicvine.gamespot.com/jam-in-the-band-remastered-1-in-a-small-town/4000-501421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501693/","id":501693,"name":"A Lit Cigarette part 1","site_detail_url":"https://comicvine.gamespot.com/dixie-vixens-1-a-lit-cigarette-part-1/4000-501693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500327/","id":500327,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-beauty-2/4000-500327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501997/","id":501997,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shield-by-lee-and-kirby-the-complete-collection-1-/4000-501997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502169/","id":502169,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-50/4000-502169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499790/","id":499790,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/chrononauts-1-volume-1/4000-499790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501627/","id":501627,"name":"Part 4: And All Is...","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-4-part-4-and-all-is/4000-501627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500249/","id":500249,"name":"End Of Days Part 1; --Kill The Black Flame!","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-135-end-of-days-part-1-kill-the/4000-500249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538844/","id":538844,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-55/4000-538844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501058/","id":501058,"name":"Islamophobia Part One","site_detail_url":"https://comicvine.gamespot.com/the-tithe-5-islamophobia-part-one/4000-501058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501702/","id":501702,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/invisible-ink-my-mothers-secret-love-affair-with-a/4000-501702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501650/","id":501650,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-256/4000-501650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501095/","id":501095,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-comic-book-story-of-beer-1-gn/4000-501095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495809/","id":495809,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-lord-and-kitty-pryde-1/4000-495809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500359/","id":500359,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/step-aside-pops-a-hark-a-vagrant-collection-1-hc/4000-500359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501044/","id":501044,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-casey-and-april-4/4000-501044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499028/","id":499028,"name":"Exodus Part 2: Old Hatreds","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-40-exodus-part-2-old-hatreds/4000-499028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501617/","id":501617,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/monster-of-frankenstein-1-tpb/4000-501617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495794/","id":495794,"name":"Wunderkammer Part Four of Five","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-4-wunderkammer-part-four-of-five/4000-495794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501529/","id":501529,"name":"Chapter Forty-Two","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-42-chapter-forty-two/4000-501529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688460/","id":688460,"name":"Spider Versus Spider","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-18-spider-versus-spider/4000-688460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500929/","id":500929,"name":"Chapter Forty-One","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-41-chapter-forty-one/4000-500929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499543/","id":499543,"name":"Chapter Thirty-Nine","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-39-chapter-thirty-nine/4000-499543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499173/","id":499173,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-13/4000-499173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526887/","id":526887,"name":"Glücklich Bis An Ihr Ende","site_detail_url":"https://comicvine.gamespot.com/fables-25-glucklich-bis-an-ihr-ende/4000-526887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494265/","id":494265,"name":"Walk of Shame","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-2-walk-of-shame/4000-494265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490896/","id":490896,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverines-20/4000-490896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490898/","id":490898,"name":"","site_detail_url":"https://comicvine.gamespot.com/years-of-future-past-1/4000-490898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490876/","id":490876,"name":"Part 1: Why We Can't Have Nice Things","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-renew-your-vows-1-part-1-wh/4000-490876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490875/","id":490875,"name":"Spiral Part Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-18-1-spiral-part-three/4000-490875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491475/","id":491475,"name":"The Gang of Harleys","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-17-the-gang-of-harleys/4000-491475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491520/","id":491520,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-ride-first-flight-3/4000-491520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491758/","id":491758,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-6/4000-491758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492220/","id":492220,"name":"Angels","site_detail_url":"https://comicvine.gamespot.com/moon-knight-16-angels/4000-492220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493050/","id":493050,"name":"Final Punishment: Part One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-19-final-punishment-part-one/4000-493050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496456/","id":496456,"name":"Spiral Staircase, Part 1","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-13-spiral-staircase-pa/4000-496456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496551/","id":496551,"name":"Robyn Hood & Helsing Keep It Safe","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-13-robyn-hood-and-helsing-keep-it-safe/4000-496551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496846/","id":496846,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/bowery-boys-our-fathers-1-hc/4000-496846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496910/","id":496910,"name":"City at War, Part Six","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-8-city/4000-496910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497149/","id":497149,"name":"","site_detail_url":"https://comicvine.gamespot.com/big-punch-magazine-2/4000-497149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496874/","id":496874,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/angela-asgards-assassin-priceless-1-volume-1/4000-496874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497385/","id":497385,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-by-christopher-priest-the-complete-c/4000-497385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497442/","id":497442,"name":"The Man Who Stole The World, Part One","site_detail_url":"https://comicvine.gamespot.com/velvet-11-the-man-who-stole-the-world-part-one/4000-497442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497828/","id":497828,"name":"Volume One of Three","site_detail_url":"https://comicvine.gamespot.com/why-i-hate-saturn-1-volume-one-of-three/4000-497828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497950/","id":497950,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-luke-cage-hero-for-hire-1-volum/4000-497950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497974/","id":497974,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-shadow-midnight-in-moscow-1-tpb/4000-497974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498003/","id":498003,"name":"","site_detail_url":"https://comicvine.gamespot.com/escape-from-new-york-9/4000-498003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498083/","id":498083,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-monsters-in-/4000-498083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498155/","id":498155,"name":"","site_detail_url":"https://comicvine.gamespot.com/palooka-4/4000-498155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498272/","id":498272,"name":"Band 1","site_detail_url":"https://comicvine.gamespot.com/axis-sonderband-1-band-1/4000-498272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490892/","id":490892,"name":"Chapter 9: Freedom","site_detail_url":"https://comicvine.gamespot.com/superior-iron-man-9-chapter-9-freedom/4000-490892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497983/","id":497983,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-49/4000-497983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498378/","id":498378,"name":"","site_detail_url":"https://comicvine.gamespot.com/dead-drop-4/4000-498378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498797/","id":498797,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/phase-7-1-vol-1/4000-498797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499947/","id":499947,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-4/4000-499947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498945/","id":498945,"name":"Chapter Thirty-Eight","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-38-chapter-thirty-eight/4000-498945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497913/","id":497913,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/fairest-the-clamour-for-glamour-1-volume-5/4000-497913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497358/","id":497358,"name":"\"A Well Regulated Militia\" Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/rebels-5-a-well-regulated-militia-part-5-of-6/4000-497358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498412/","id":498412,"name":"Part 3: The Hound of the Busters","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-3-part-3-the-hound-of-the-bu/4000-498412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498225/","id":498225,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-by-george-perez-omnibus-1-volume-one/4000-498225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497429/","id":497429,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-beauty-1/4000-497429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491526/","id":491526,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-5/4000-491526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491529/","id":491529,"name":"Most Wanted? Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-5-most-wanted-part-5/4000-491529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490889/","id":490889,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-8/4000-490889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498436/","id":498436,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-255/4000-498436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490883/","id":490883,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-6/4000-490883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491522/","id":491522,"name":"","site_detail_url":"https://comicvine.gamespot.com/mrs-deadpool-and-the-howling-commandos-1/4000-491522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497456/","id":497456,"name":"III: A Lurking Fear","site_detail_url":"https://comicvine.gamespot.com/providence-3-iii-a-lurking-fear/4000-497456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497961/","id":497961,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-omnibus-1-volume-1/4000-497961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497985/","id":497985,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-mutanimals-1-tpb/4000-497985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498486/","id":498486,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/e-man-the-early-years-1-tpb/4000-498486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491531/","id":491531,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-end-2/4000-491531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498600/","id":498600,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-12/4000-498600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498314/","id":498314,"name":"Chapter Thirty-Seven","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-37-chapter-thirty-seven/4000-498314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498067/","id":498067,"name":"A Day In Our Lives","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-48-a-day-i/4000-498067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497323/","id":497323,"name":"Chapter Thirty-Six","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-36-chapter-thirty-six/4000-497323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496783/","id":496783,"name":"Chapter Thirty-Five","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-35-chapter-thirty-five/4000-496783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490834/","id":490834,"name":"Brave New Worlds, Part 1","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-1-brave-new-worlds-part-1/4000-490834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491467/","id":491467,"name":"1: I Often Wonder What the Vinters Buy","site_detail_url":"https://comicvine.gamespot.com/all-star-section-8-1-1-i-often-wonder-what-the-vin/4000-491467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492160/","id":492160,"name":"Blood of the Pharaohs","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-1-blood-of-the-pharaohs/4000-492160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492162/","id":492162,"name":"Power and Glory, Part One","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-1-power-and-glory-part-o/4000-492162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493007/","id":493007,"name":"Rogue Targets, Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-9-rogue-targets-part-1/4000-493007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491471/","id":491471,"name":"Going Down","site_detail_url":"https://comicvine.gamespot.com/constantine-the-hellblazer-1-going-down/4000-491471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487501/","id":487501,"name":"Secret Wars #0; Attack on Avengers","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2015-secret-wars-0-secret-wars/4000-487501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487828/","id":487828,"name":"Inhuman Error: Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-special-1-inhuman-error-pa/4000-487828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487831/","id":487831,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-1/4000-487831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487778/","id":487778,"name":"Liberty?","site_detail_url":"https://comicvine.gamespot.com/convergence-5-liberty/4000-487778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487829/","id":487829,"name":"The Graveyard Shift Part Three: Trade Secrets","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-18-the-graveyard-shift-part/4000-487829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487836/","id":487836,"name":"The Ω Hulk Chapter Twelve; Welcome Home","site_detail_url":"https://comicvine.gamespot.com/hulk-16-the-o-hulk-chapter-twelve-welcome-home/4000-487836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488648/","id":488648,"name":"Nothing's Gonna Touch You In These Golden Years; Double's Jeopardy","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-3-nothings-gonna-touch-you-in-thes/4000-488648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488644/","id":488644,"name":"Bad News and Worse News","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-mighty-avengers-8-bad-news-and/4000-488644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488778/","id":488778,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-5/4000-488778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489452/","id":489452,"name":"VIP; Casualties of War","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-10-vip-cas/4000-489452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489322/","id":489322,"name":"Bogeyman","site_detail_url":"https://comicvine.gamespot.com/moon-knight-15-bogeyman/4000-489322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489904/","id":489904,"name":"Redemption: Part Six","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-12-redemption-part-six/4000-489904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487952/","id":487952,"name":"The Dark Loops, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-names-9-the-dark-loops-conclusion/4000-487952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493777/","id":493777,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/dmz-the-deluxe-edition-4-book-four/4000-493777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494066/","id":494066,"name":"5. The $64,000 Question; 6. Road Trip","site_detail_url":"https://comicvine.gamespot.com/the-grand-tour-3-5-the-64000-question-6-road-trip/4000-494066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494335/","id":494335,"name":"","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-3/4000-494335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494350/","id":494350,"name":"City War Part Five","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-7-city/4000-494350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494377/","id":494377,"name":"II: The Hook","site_detail_url":"https://comicvine.gamespot.com/providence-2-ii-the-hook/4000-494377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494364/","id":494364,"name":"Power Broker Part 2; Some Day One Day","site_detail_url":"https://comicvine.gamespot.com/witchblade-183-power-broker-part-2-some-day-one-da/4000-494364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495820/","id":495820,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/gi-joe-the-fall-of-gi-joe-2-volume-2/4000-495820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494340/","id":494340,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-mass-hysteria-1-hc/4000-494340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495269/","id":495269,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-aguirre-sacasa-and-mcniven-1-vol/4000-495269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496419/","id":496419,"name":"Most Likely To...","site_detail_url":"https://comicvine.gamespot.com/the-x-files-annual-2015-1-most-likely-to/4000-496419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495774/","id":495774,"name":"Volume 22","site_detail_url":"https://comicvine.gamespot.com/fables-farewell-150-volume-22/4000-495774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496415/","id":496415,"name":"The One Where They Go To Earth","site_detail_url":"https://comicvine.gamespot.com/the-transformers-more-than-meets-the-eye-43-the-on/4000-496415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496587/","id":496587,"name":"Dick Ruby and the Case of the Little Green Men","site_detail_url":"https://comicvine.gamespot.com/adventures-in-pulp-presents-2-dick-ruby-and-the-ca/4000-496587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496405/","id":496405,"name":"Part 2: They're All Real Now!","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-2-part-2-theyre-all-real-now/4000-496405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493542/","id":493542,"name":"Remote Possibilities","site_detail_url":"https://comicvine.gamespot.com/iron-man-presented-by-dji-1-remote-possibilities/4000-493542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497576/","id":497576,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-and-x-men-axis-1/4000-497576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494360/","id":494360,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/shutter-way-of-the-world-1-volume-two/4000-494360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494359/","id":494359,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-13/4000-494359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495261/","id":495261,"name":"","site_detail_url":"https://comicvine.gamespot.com/dead-drop-3/4000-495261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489891/","id":489891,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-pax-americana-director-s-cut-1/4000-489891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513251/","id":513251,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-20/4000-513251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493838/","id":493838,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/supreme-blue-rose-1-tpb/4000-493838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494290/","id":494290,"name":"The Shadow Over Suwanee, Part 1","site_detail_url":"https://comicvine.gamespot.com/abe-sapien-24-the-shadow-over-suwanee-part-1/4000-494290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487837/","id":487837,"name":"Part 15: Legacy","site_detail_url":"https://comicvine.gamespot.com/inhuman-annual-1-part-15-legacy/4000-487837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552390/","id":552390,"name":"En 1 mes... ¡Se acaba el tiempo! - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-36-en-1-mes-se-acaba-el-tiempo-sec/4000-552390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488657/","id":488657,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-4/4000-488657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487845/","id":487845,"name":"Most Wanted? Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-4-most-wanted-part-4/4000-487845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487846/","id":487846,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-7/4000-487846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496430/","id":496430,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-254/4000-496430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487834/","id":487834,"name":"World Enough and Time","site_detail_url":"https://comicvine.gamespot.com/guardians-3000-8-world-enough-and-time/4000-487834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487835/","id":487835,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-5/4000-487835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495830/","id":495830,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-casey-and-april-2/4000-495830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496412/","id":496412,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-48/4000-496412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496373/","id":496373,"name":"Chapter Thirty-Four","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-34-chapter-thirty-four/4000-496373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495775/","id":495775,"name":"Chapter Thirty-Three; Heart of Glass Part 12: \"We Are Glass\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-33-chapter-thirty-three-h/4000-495775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495246/","id":495246,"name":"Chapter Thirty-Two; Heart of Glass Part 11 \"So Alive\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-32-chapter-thirty-two-hea/4000-495246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494518/","id":494518,"name":"Nine Days Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-42-nine-da/4000-494518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494431/","id":494431,"name":"Chapter Thirty-One; Heart of Glass Part 10 \"Tainted Love\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-31-chapter-thirty-one-hea/4000-494431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493778/","id":493778,"name":"Chapter Thirty; Heart of Glass Part 9 \"It's Alright (Baby's Coming Back)\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-30-chapter-thirty-heart-o/4000-493778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145529/","id":145529,"name":"Part 2: Visions and Sacrifice","site_detail_url":"https://comicvine.gamespot.com/vampire-verses-2-part-2-visions-and-sacrifice/4000-145529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494412/","id":494412,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-king-in-yellow-1-gn/4000-494412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484890/","id":484890,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/avengers-millennium-1-chapter-one/4000-484890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484897/","id":484897,"name":null,"site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-4/4000-484897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484906/","id":484906,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-marvel-zombies-1/4000-484906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484905/","id":484905,"name":"Most Wanted? Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-3-most-wanted-part-3/4000-484905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484889/","id":484889,"name":"...And All That's Left Is Ashes","site_detail_url":"https://comicvine.gamespot.com/avengers-43-and-all-that-s-left-is-ashes/4000-484889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484898/","id":484898,"name":"Redemption: Part Five","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-11-redemption-part-fiv/4000-484898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485512/","id":485512,"name":"At the End of This World","site_detail_url":"https://comicvine.gamespot.com/guardians-3000-7-at-the-end-of-this-world/4000-485512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485513/","id":485513,"name":"","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-2/4000-485513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485493/","id":485493,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-4/4000-485493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486156/","id":486156,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-house-of-m-1/4000-486156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486716/","id":486716,"name":"Spiral Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-17-1-spiral-part-two/4000-486716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486725/","id":486725,"name":"Inhuman Error: Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/inhuman-special-1-inhuman-error-part-2-of-3/4000-486725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487206/","id":487206,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-ride-first-flight-2/4000-487206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487207/","id":487207,"name":"Old Gods' Favors","site_detail_url":"https://comicvine.gamespot.com/moon-knight-14-old-gods-favors/4000-487207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487218/","id":487218,"name":"Chapter 8: Stark Contrast","site_detail_url":"https://comicvine.gamespot.com/superior-iron-man-8-chapter-8-stark-contrast/4000-487218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487219/","id":487219,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-age-of-ultron-1/4000-487219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487220/","id":487220,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-miles-morales-ultimate-spider-man-1/4000-487220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487203/","id":487203,"name":"The End is Fourever (Part 4); Rekindled; The Real Real; Trash Man!; Time and Tide","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-645-the-end-is-fourever-part-4-reki/4000-487203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487215/","id":487215,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-3/4000-487215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487825/","id":487825,"name":"Disco Inferno","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-77-special-1-disco-inferno/4000-487825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486146/","id":486146,"name":"Kick 'Splode","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-mighty-avengers-7-kick-splode/4000-486146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486138/","id":486138,"name":"Girls’ Day Out; The Problem with Cats","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-9-girls-da/4000-486138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490871/","id":490871,"name":"","site_detail_url":"https://comicvine.gamespot.com/dead-drop-2/4000-490871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491160/","id":491160,"name":"","site_detail_url":"https://comicvine.gamespot.com/jennifer-the-she-wolf-1/4000-491160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484983/","id":484983,"name":"The Dark Loops Part II","site_detail_url":"https://comicvine.gamespot.com/the-names-8-the-dark-loops-part-ii/4000-484983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491545/","id":491545,"name":"","site_detail_url":"https://comicvine.gamespot.com/long-distance-1/4000-491545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491625/","id":491625,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/jack-kirbys-kamandi-artist-edition-1-volume-1/4000-491625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491585/","id":491585,"name":"Robyn Hood & Marian Quin Go to Comic Con","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-11-robyn-hood-and-marian-quin-go-to-com/4000-491585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491606/","id":491606,"name":"","site_detail_url":"https://comicvine.gamespot.com/pussycats-2/4000-491606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492207/","id":492207,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-once-and-future-juggernaut-1-volume-/4000-492207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492239/","id":492239,"name":"Part 1: A Protean Escape","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-get-real-1-part-1-a-protean-escape/4000-492239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492276/","id":492276,"name":"","site_detail_url":"https://comicvine.gamespot.com/oh-killstrike-2/4000-492276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490923/","id":490923,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-attack-on-technodrome/4000-490923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493073/","id":493073,"name":"Favorite Haunt Part 2; Acting Out!","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-new-animated-adventur/4000-493073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493140/","id":493140,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/m3-2-volume-two/4000-493140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484894/","id":484894,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-house-of-c/4000-484894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493822/","id":493822,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-47/4000-493822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493824/","id":493824,"name":"Elders Part 5","site_detail_url":"https://comicvine.gamespot.com/the-x-files-season-10-25-elders-part-5/4000-493824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485517/","id":485517,"name":"Is this the End?","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-12-is-this-the-e/4000-485517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499946/","id":499946,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-3/4000-499946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493467/","id":493467,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/jsa-omnibus-3-volume-three/4000-493467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490884/","id":490884,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-hem-1/4000-490884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484888/","id":484888,"name":"The Graveyard Shift Part Two: Trust Issues","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-17-the-graveyard-shift-part/4000-484888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487204/","id":487204,"name":"Part 14: Linkages","site_detail_url":"https://comicvine.gamespot.com/inhuman-14-part-14-linkages/4000-487204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485520/","id":485520,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-6/4000-485520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573407/","id":573407,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-37/4000-573407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493088/","id":493088,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-253/4000-493088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492248/","id":492248,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-casey-and-april-1/4000-492248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491612/","id":491612,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/stray-who-killed-the-doberman-1-tpb/4000-491612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485511/","id":485511,"name":"The Aristocrats; Shiklah's Catching Up; The Family S.H.I.E.L.D.; What Do We Want? Apocalypse! When Do We Want It? Now!; The Twhipster and the Quipster Battle the Hipsters!; All About the Benjamins; Parents: The Meeting","site_detail_url":"https://comicvine.gamespot.com/deadpool-45-the-aristocrats-shiklahs-catching-up-t/4000-485511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493027/","id":493027,"name":"Chapter Twenty-Nine; Heart of Glass Part 8: Watch Me Bleed","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-29-chapter-twenty-nine-he/4000-493027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492190/","id":492190,"name":"Chapter Twenty-Eight; Heart of Glass Part 7: This Woman's Work","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-28-chapter-twenty-eight-h/4000-492190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491501/","id":491501,"name":"Chapter Twenty Seven; Heart of Glass Part 6 \"Touching From a Distance\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-27-chapter-twenty-seven-h/4000-491501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486152/","id":486152,"name":"Chapter XXIX: A Sort of Homecoming - Part I","site_detail_url":"https://comicvine.gamespot.com/nova-29-chapter-xxix-a-sort-of-homecoming-part-i/4000-486152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490859/","id":490859,"name":"Chapter Twenty Six:; Heart of Glass Part 5: Why Can't I Be You?","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-26-chapter-twenty-six-hea/4000-490859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484848/","id":484848,"name":"The Source of Mercy","site_detail_url":"https://comicvine.gamespot.com/teen-titans-annual-1-the-source-of-mercy/4000-484848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487171/","id":487171,"name":"Out of the Frying Pan...","site_detail_url":"https://comicvine.gamespot.com/convergence-plastic-man-and-the-freedom-fighters-1/4000-487171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526881/","id":526881,"name":"Unwritten Fables","site_detail_url":"https://comicvine.gamespot.com/fables-24-unwritten-fables/4000-526881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481614/","id":481614,"name":"Monster Mash","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-9-monster-mash/4000-481614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481609/","id":481609,"name":"Redemption: Part Four","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-10-redemption-part-fou/4000-481609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481693/","id":481693,"name":"The Dark Loops, Part I","site_detail_url":"https://comicvine.gamespot.com/the-names-7-the-dark-loops-part-i/4000-481693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481605/","id":481605,"name":"It All Comes Crashing Down","site_detail_url":"https://comicvine.gamespot.com/avengers-42-it-all-comes-crashing-down/4000-481605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482165/","id":482165,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-x-men-4/4000-482165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482163/","id":482163,"name":"Most Wanted? Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-2-most-wanted-part-2/4000-482163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482157/","id":482157,"name":"","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-1/4000-482157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482625/","id":482625,"name":"One Brief, Shining Moment, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-8-one-brief-shining-moment-part-2/4000-482625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482679/","id":482679,"name":"Spiral Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-16-1-spiral-part-one/4000-482679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482690/","id":482690,"name":"Footprints","site_detail_url":"https://comicvine.gamespot.com/moon-knight-13-footprints/4000-482690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483345/","id":483345,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-house-of-c/4000-483345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484847/","id":484847,"name":"Casualties of War","site_detail_url":"https://comicvine.gamespot.com/superman-wonder-woman-17-casualties-of-war/4000-484847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483350/","id":483350,"name":"Seems Like Only Yesterday","site_detail_url":"https://comicvine.gamespot.com/guardians-3000-6-seems-like-only-yesterday/4000-483350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482693/","id":482693,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-2/4000-482693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487583/","id":487583,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-trial-of-atomic-robo-1/4000-487583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487826/","id":487826,"name":"","site_detail_url":"https://comicvine.gamespot.com/dead-drop-1/4000-487826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487851/","id":487851,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-2-2/4000-487851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487868/","id":487868,"name":"Split Second","site_detail_url":"https://comicvine.gamespot.com/rocket-girl-6-split-second/4000-487868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488221/","id":488221,"name":"","site_detail_url":"https://comicvine.gamespot.com/asylum-press-sampler-1/4000-488221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488718/","id":488718,"name":"The Plague Part Two","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-10-the-plagu/4000-488718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488631/","id":488631,"name":"Book Ten","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-10-book-ten/4000-488631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489418/","id":489418,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/grendel-vs-the-shadow-1-hc/4000-489418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489361/","id":489361,"name":"Elders Part 4","site_detail_url":"https://comicvine.gamespot.com/The%20X-Files:%20Season%2010-24-Elders%20Part%204/4000-489361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489339/","id":489339,"name":"","site_detail_url":"https://comicvine.gamespot.com/shaft-6/4000-489339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489923/","id":489923,"name":"","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow-masquerade-kato-1/4000-489923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489935/","id":489935,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-ghostbusters-director/4000-489935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489934/","id":489934,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-46/4000-489934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490155/","id":490155,"name":"","site_detail_url":"https://comicvine.gamespot.com/big-punch-magazine-1/4000-490155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490924/","id":490924,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-mutanimals-4/4000-490924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491543/","id":491543,"name":"World War III Book 2","site_detail_url":"https://comicvine.gamespot.com/gi-joe-americas-elite-disavowed-6-world-war-iii-bo/4000-491543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489950/","id":489950,"name":"I: The Yellow Sign","site_detail_url":"https://comicvine.gamespot.com/providence-1-i-the-yellow-sign/4000-489950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481615/","id":481615,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-5/4000-481615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488694/","id":488694,"name":"","site_detail_url":"https://comicvine.gamespot.com/chrononauts-3/4000-488694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489369/","id":489369,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-12/4000-489369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482158/","id":482158,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-11/4000-482158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499945/","id":499945,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-2/4000-499945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489308/","id":489308,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-apocalypse-1-volume-11/4000-489308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539499/","id":539499,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-3/4000-539499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482140/","id":482140,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-3/4000-482140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483352/","id":483352,"name":"Part 13: Lineage","site_detail_url":"https://comicvine.gamespot.com/inhuman-13-part-13-lineage/4000-483352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482151/","id":482151,"name":"Inhuman Error: Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-special-1-inhuman-error-par/4000-482151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558788/","id":558788,"name":"Duende","site_detail_url":"https://comicvine.gamespot.com/vengadores-y-patrulla-x-axis-compendio-2-duende/4000-558788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489371/","id":489371,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-252/4000-489371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482161/","id":482161,"name":"The Adventures of Doc & Sammy","site_detail_url":"https://comicvine.gamespot.com/nova-annual-1-the-adventures-of-doc-sammy/4000-482161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481607/","id":481607,"name":"Guardians of the Galaxy Meet the Avengers Part One","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-1-guardians-of-the-galaxy-meet-t/4000-481607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482156/","id":482156,"name":"Guardians of the Galaxy Meet the Avengers Part Two","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-2-guardians-of-the-galaxy-meet-t/4000-482156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482686/","id":482686,"name":"Time Alone Shall Murder All the Flowers","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-12-time-alone-shall-murder-al/4000-482686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490020/","id":490020,"name":"Chapter Twenty Five; Heart of Glass Part 4 \"Keep Feeling Fascination\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-25-chapter-twenty-five-he/4000-490020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486925/","id":486925,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-8/4000-486925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489254/","id":489254,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-sneak-peek-teen-titans-1/4000-489254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489303/","id":489303,"name":"Chapter Twenty Four; Heart of Glass Part 3 \"Love Will Tear Us Apart\"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-24-chapter-twenty-four-he/4000-489303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488630/","id":488630,"name":"Chapter Twenty Three; Heart of Glass Part 2","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-23-chapter-twenty-three-h/4000-488630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487814/","id":487814,"name":"Chapter Twenty Two; Heart of Glass Part 1","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-22-chapter-twenty-two-hea/4000-487814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481566/","id":481566,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-44/4000-481566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482117/","id":482117,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-45/4000-482117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482620/","id":482620,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-46/4000-482620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483311/","id":483311,"name":"Ultra Comics Lives!","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-ultra-comics-1-ultra-comics-lives/4000-483311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478606/","id":478606,"name":"Over there","site_detail_url":"https://comicvine.gamespot.com/avengers-41-over-there/4000-478606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479204/","id":479204,"name":"Just Batty Over You","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-valentine-s-day-special-1-just-batty-/4000-479204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479971/","id":479971,"name":"Redemption: Part Three","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-9-redemption-part-thre/4000-479971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479982/","id":479982,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-1/4000-479982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479977/","id":479977,"name":"Diaspora","site_detail_url":"https://comicvine.gamespot.com/moon-knight-12-diaspora/4000-479977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480678/","id":480678,"name":"Active Mission: Home Invasion","site_detail_url":"https://comicvine.gamespot.com/shield-3-active-mission-home-invasion/4000-480678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479953/","id":479953,"name":"Generations: Chapter Nine of Happily Ever After; The Last Story of Briar Rose","site_detail_url":"https://comicvine.gamespot.com/fables-149-generations-chapter-nine-of-happily-eve/4000-479953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484918/","id":484918,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-season-two-1/4000-484918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484884/","id":484884,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/new-teen-titans-2-volume-two/4000-484884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484961/","id":484961,"name":"The Plague Part One","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-robyn-hood-9-the-plague/4000-484961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485530/","id":485530,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-2-1/4000-485530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485538/","id":485538,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/milt-gross-new-york-1-hc/4000-485538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485544/","id":485544,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-ghostbusters-1-tpb/4000-485544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485942/","id":485942,"name":"The Art of War","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-1-the-art-of-war/4000-485942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479981/","id":479981,"name":"Final Verdict","site_detail_url":"https://comicvine.gamespot.com/she-hulk-12-final-verdict/4000-479981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487234/","id":487234,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-45/4000-487234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487298/","id":487298,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/lost-in-nyc-a-subway-adventure-1-hcsc/4000-487298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487250/","id":487250,"name":"Power Broker Part 1; One Man","site_detail_url":"https://comicvine.gamespot.com/witchblade-182-power-broker-part-1-one-man/4000-487250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487193/","id":487193,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/fables-happily-ever-after-1-volume-21/4000-487193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487282/","id":487282,"name":"Project Stardust Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/scarlett-couture-1-project-stardust-part-1-of-4/4000-487282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479976/","id":479976,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-10/4000-479976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499600/","id":499600,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-35/4000-499600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503865/","id":503865,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-3/4000-503865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486183/","id":486183,"name":"","site_detail_url":"https://comicvine.gamespot.com/chrononauts-2/4000-486183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513248/","id":513248,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-17/4000-513248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479238/","id":479238,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-2/4000-479238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479265/","id":479265,"name":"Behold, A New Age of Thunder","site_detail_url":"https://comicvine.gamespot.com/thor-5-behold-a-new-age-of-thunder/4000-479265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480673/","id":480673,"name":"Part 12: Disunion","site_detail_url":"https://comicvine.gamespot.com/inhuman-12-part-12-disunion/4000-480673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552389/","id":552389,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-35/4000-552389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480679/","id":480679,"name":"Most Wanted? Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-1-most-wanted-part-1/4000-480679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479263/","id":479263,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-4/4000-479263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558787/","id":558787,"name":"Matanza","site_detail_url":"https://comicvine.gamespot.com/vengadores-y-patrulla-x-axis-compendio-1-matanza/4000-558787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479253/","id":479253,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-36/4000-479253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486190/","id":486190,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-251/4000-486190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479979/","id":479979,"name":"Chapter XXVII: Mr. Carnage Goes To Carefree","site_detail_url":"https://comicvine.gamespot.com/nova-27-chapter-xxvii-mr-carnage-goes-to-carefree/4000-479979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484878/","id":484878,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-green-arrow-by-kevin-smith-1-hc/4000-484878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479983/","id":479983,"name":"Slingshot","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-9-slingshot/4000-479983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479973/","id":479973,"name":"Turn Away and Slam the Door","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-11-turn-away-and-slam-the-doo/4000-479973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479966/","id":479966,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-fear-him-3-chapter-three/4000-479966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478603/","id":478603,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-fear-him-1-chapter-one/4000-478603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479251/","id":479251,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-fear-him-2-chapter-two/4000-479251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480665/","id":480665,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-fear-him-4-chapter-four/4000-480665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479243/","id":479243,"name":"Scuba Scoob; Over the Boardwalk","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-54-scuba-scoob-over-the-b/4000-479243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486139/","id":486139,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/shazam-a-celebration-of-75-years-1-hc/4000-486139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484990/","id":484990,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/age-of-selfishness-1-hc/4000-484990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555634/","id":555634,"name":"Destination New York!","site_detail_url":"https://comicvine.gamespot.com/paris-saint-germain-academy-5-destination-new-york/4000-555634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487097/","id":487097,"name":"Chapter Twenty-One","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-21-chapter-twenty-one/4000-487097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486705/","id":486705,"name":"Chapter Twenty","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-20-chapter-twenty/4000-486705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483246/","id":483246,"name":"Meg 358","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-megazine-358-meg-358/4000-483246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486060/","id":486060,"name":"Chapter Nineteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-19-chapter-nineteen/4000-486060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501212/","id":501212,"name":"Le Astronavi di Carlo Magno","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-338-le-astronavi-di-carlo-magno/4000-501212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485492/","id":485492,"name":"Chapter Eighteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-18-chapter-eighteen/4000-485492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478570/","id":478570,"name":"Ripple Effect","site_detail_url":"https://comicvine.gamespot.com/green-lantern-39-ripple-effect/4000-478570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479931/","id":479931,"name":"Survival","site_detail_url":"https://comicvine.gamespot.com/earth-2-world-s-end-20-survival/4000-479931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479939/","id":479939,"name":"One Brief, Shining Moment, Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-7-one-brief-shining-moment-part-1/4000-479939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479935/","id":479935,"name":"Splendour Falls","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-mastermen-1-splendour-falls/4000-479935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480630/","id":480630,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-43/4000-480630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475452/","id":475452,"name":"Straight Shooter; Quotient; Friends On the Web; Weird","site_detail_url":"https://comicvine.gamespot.com/avengers-no-more-bullying-1-straight-shooter-quoti/4000-475452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475456/","id":475456,"name":"The Ω Hulk Chapter Six","site_detail_url":"https://comicvine.gamespot.com/hulk-10-the-o-hulk-chapter-six/4000-475456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475451/","id":475451,"name":"","site_detail_url":"https://comicvine.gamespot.com/angela-asgard-s-assassin-2/4000-475451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475387/","id":475387,"name":"","site_detail_url":"https://comicvine.gamespot.com/ant-man-1/4000-475387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475933/","id":475933,"name":"A Christmas Carol Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-11-a-christmas-carol-part-two-of-tw/4000-475933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475463/","id":475463,"name":"","site_detail_url":"https://comicvine.gamespot.com/storm-7/4000-475463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476790/","id":476790,"name":"Rendered","site_detail_url":"https://comicvine.gamespot.com/moon-knight-11-rendered/4000-476790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477841/","id":477841,"name":"The Dying of the Light; Super BlackOut; Sweet Tooth: Black; Fade; The Night of the Black Stant; American Gothic; Black Death in America; Black Heaven; Farewell;","site_detail_url":"https://comicvine.gamespot.com/vertigo-quarterly-cmyk-4-the-dying-of-the-light-su/4000-477841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475457/","id":475457,"name":"Redemption: Part Two","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-8-redemption-part-two/4000-475457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481868/","id":481868,"name":"","site_detail_url":"https://comicvine.gamespot.com/drawn-onward-1/4000-481868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481878/","id":481878,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-s-the-avengers-age-of-ultron-prelude-1-tpb/4000-481878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481883/","id":481883,"name":"","site_detail_url":"https://comicvine.gamespot.com/slowheart-1/4000-481883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482174/","id":482174,"name":"","site_detail_url":"https://comicvine.gamespot.com/altered-states-red-sonja-1/4000-482174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482196/","id":482196,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-resurrection-1/4000-482196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482181/","id":482181,"name":"","site_detail_url":"https://comicvine.gamespot.com/shaft-4/4000-482181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482246/","id":482246,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/roy-thomas-presents-rulah-jungle-goddess-1-volume-/4000-482246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482656/","id":482656,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-8/4000-482656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482753/","id":482753,"name":"Window To the Soul Part Two","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-8-window-to-the-soul-part-two/4000-482753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482719/","id":482719,"name":"Attack On Technodrome Part Four","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-44-attack-on-technodr/4000-482719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482903/","id":482903,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-3-volume-3/4000-482903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476771/","id":476771,"name":"Tontine: Chapter Eight of Happily Ever After; The Very Last Jack of Fables Story of All Time","site_detail_url":"https://comicvine.gamespot.com/fables-148-tontine-chapter-eight-of-happily-ever-a/4000-476771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483363/","id":483363,"name":"The Shadow Out of Time","site_detail_url":"https://comicvine.gamespot.com/altered-states-the-shadow-1-the-shadow-out-of-time/4000-483363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483393/","id":483393,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-mutanimals-2/4000-483393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484923/","id":484923,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-a-real-american-hero-11-volume-11/4000-484923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484932/","id":484932,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-3/4000-484932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484713/","id":484713,"name":"Chapter Seventeen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-17-chapter-seventeen/4000-484713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480970/","id":480970,"name":"End To the Lies","site_detail_url":"https://comicvine.gamespot.com/stray-3-end-to-the-lies/4000-480970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483698/","id":483698,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/she-hulk-disorderly-conduct-1-volume-2/4000-483698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489936/","id":489936,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-idw-collection-1-/4000-489936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482725/","id":482725,"name":"Book Three: Conclave","site_detail_url":"https://comicvine.gamespot.com/lazarus-3-book-three-conclave/4000-482725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498704/","id":498704,"name":"Fantastic Four 10: Ultimatum","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-78-fantastic-four-10-ultima/4000-498704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475941/","id":475941,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-9/4000-475941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475929/","id":475929,"name":"No Gods No Masters part 3","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-12-no-gods-no-masters-part-3/4000-475929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499354/","id":499354,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-12/4000-499354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482649/","id":482649,"name":"Flesh and Stone Part 5","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth-129-flesh-and-stone-part-5/4000-482649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513247/","id":513247,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-16/4000-513247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487959/","id":487959,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-25/4000-487959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476061/","id":476061,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-1/4000-476061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476788/","id":476788,"name":"Not Forgiven","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-10-not-forgiven/4000-476788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487513/","id":487513,"name":"Prelude To Vengeance","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-prelude-to-vengeance-/4000-487513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483335/","id":483335,"name":"Chapter Sixteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-16-chapter-sixteen/4000-483335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482667/","id":482667,"name":"Chapter Fifteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-15-chapter-fifteen/4000-482667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482291/","id":482291,"name":"Casualties of War","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-28-casualt/4000-482291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482139/","id":482139,"name":"Chapter Fourteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-14-chapter-fourteen/4000-482139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481720/","id":481720,"name":"Girls’ Day Out Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-27-girls-d/4000-481720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481818/","id":481818,"name":"Chapter Thirteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-13-chapter-thirteen/4000-481818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476744/","id":476744,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-38/4000-476744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476749/","id":476749,"name":"Human Resources, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-6-human-resources-part-2/4000-476749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526873/","id":526873,"name":"Die Schönsten Im Ganzen Land","site_detail_url":"https://comicvine.gamespot.com/fairest-4-die-schonsten-im-ganzen-land/4000-526873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471966/","id":471966,"name":"Part 9: Ennilux","site_detail_url":"https://comicvine.gamespot.com/inhuman-9-part-9-ennilux/4000-471966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471968/","id":471968,"name":"","site_detail_url":"https://comicvine.gamespot.com/legendary-star-lord-6/4000-471968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471960/","id":471960,"name":"Nice Shot; Castles In the Sand","site_detail_url":"https://comicvine.gamespot.com/axis-revolutions-3-nice-shot-castles-in-the-sand/4000-471960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472904/","id":472904,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-s-art-of-war-3/4000-472904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478717/","id":478717,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-age-of-ultron-prelude-this-sceptre-d-isle/4000-478717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478758/","id":478758,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-250/4000-478758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478625/","id":478625,"name":"","site_detail_url":"https://comicvine.gamespot.com/shaft-3/4000-478625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471967/","id":471967,"name":"Redemption: Part One","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-7-redemption-part-one/4000-471967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479365/","id":479365,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-the-new-frontier-deluxe-edition-1-hc/4000-479365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479955/","id":479955,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-godkillers-1-volume-5/4000-479955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480034/","id":480034,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-realm-war-age-of-darkne/4000-480034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480064/","id":480064,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-omnibus-1-hc/4000-480064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480168/","id":480168,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/axis-carnage-hobgoblin-1-tpb/4000-480168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480741/","id":480741,"name":"What the What If?","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-74-what-the-what-if/4000-480741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480706/","id":480706,"name":"Attack On Technodrome Part Three","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-43-attack-on-technodr/4000-480706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481022/","id":481022,"name":"Marrying His Majesty 2","site_detail_url":"https://comicvine.gamespot.com/betrothed-to-the-people-s-prince-1-marrying-his-ma/4000-481022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481024/","id":481024,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-tower-the-drawing-of-the-three-the-prisoner-1/4000-481024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480707/","id":480707,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-mutanimals-1/4000-480707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480187/","id":480187,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/storm-make-it-rain-1-volume-1/4000-480187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482721/","id":482721,"name":"Elders Part 1","site_detail_url":"https://comicvine.gamespot.com/the-x-files-season-10-21-elders-part-1/4000-482721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478087/","id":478087,"name":"No Other Way","site_detail_url":"https://comicvine.gamespot.com/stray-2-no-other-way/4000-478087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485547/","id":485547,"name":"Expelled From the Garden","site_detail_url":"https://comicvine.gamespot.com/the-transformers-vs-g-i-joe-6-expelled-from-the-ga/4000-485547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498702/","id":498702,"name":"Fantastic Four 9: Cubo Cósmico","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-76-fantastic-four-9-cubo-co/4000-498702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500630/","id":500630,"name":"","site_detail_url":"https://comicvine.gamespot.com/original-sin-sundenfall-2/4000-500630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480172/","id":480172,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-west-case-scenario-1-volume-2/4000-480172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479296/","id":479296,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/trees-1-vol-1/4000-479296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480010/","id":480010,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-identities-1/4000-480010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552388/","id":552388,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-34/4000-552388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479504/","id":479504,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-33/4000-479504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487326/","id":487326,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/secret-agent-x-9-by-dashiell-hammett-and-alex-raym/4000-487326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480653/","id":480653,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-12-chapter-twelve/4000-480653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479954/","id":479954,"name":"Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-11-chapter-eleven/4000-479954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479237/","id":479237,"name":"Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-10-chapter-ten/4000-479237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478591/","id":478591,"name":"Chapter Nine","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-9-chapter-nine/4000-478591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472837/","id":472837,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-32/4000-472837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472906/","id":472906,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-romero-s-empire-of-the-dead-act-two-4/4000-472906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472902/","id":472902,"name":"The Availables Part 2","site_detail_url":"https://comicvine.gamespot.com/avengers-world-16-the-availables-part-2/4000-472902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473595/","id":473595,"name":"Human Resources, Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-5-human-resources-part-1/4000-473595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473639/","id":473639,"name":"Book Three: New World Disorder: Chapter 2 - Why They Sting","site_detail_url":"https://comicvine.gamespot.com/avengers-x-men-axis-8-book-three-new-world-disorde/4000-473639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472898/","id":472898,"name":"I Can't Help Myself; The A-May-zing Spider-Aunt; The Quiet Room","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-1-i-can-t-help-mysel/4000-472898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474630/","id":474630,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-s-the-avengers-1/4000-474630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474561/","id":474561,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-34/4000-474561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474575/","id":474575,"name":"All That Burns","site_detail_url":"https://comicvine.gamespot.com/superman-wonder-woman-14-all-that-burns/4000-474575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474635/","id":474635,"name":"Titanium Blues","site_detail_url":"https://comicvine.gamespot.com/she-hulk-11-titanium-blues/4000-474635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473655/","id":473655,"name":"","site_detail_url":"https://comicvine.gamespot.com/storm-6/4000-473655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474626/","id":474626,"name":"A Friend Indeed...","site_detail_url":"https://comicvine.gamespot.com/deadpool-39-a-friend-indeed/4000-474626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474622/","id":474622,"name":"The Avengers/Avengers War","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-mighty-avengers-3-the-avengers/4000-474622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472082/","id":472082,"name":"The Surgeon's Cut, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-names-4-the-surgeon-s-cut-part-1/4000-472082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473651/","id":473651,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-8/4000-473651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472896/","id":472896,"name":"No Gods, No Masters Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-11-no-gods-no-masters-part-2/4000-472896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526858/","id":526858,"name":"Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-23-camelot/4000-526858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473649/","id":473649,"name":"Part 10: The Dark Queen","site_detail_url":"https://comicvine.gamespot.com/inhuman-10-part-10-the-dark-queen/4000-473649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474620/","id":474620,"name":"The Secret Life of Eva Bell Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-annual-1-the-secret-life-of-eva-bell/4000-474620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474633/","id":474633,"name":"Chapter XXV: The Super-Saver Club Card","site_detail_url":"https://comicvine.gamespot.com/nova-25-chapter-xxv-the-super-saver-club-card/4000-474633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477887/","id":477887,"name":"Vol. 10","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-new-mutant-order-10-v/4000-477887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472912/","id":472912,"name":"Too Many Spider-Men; A Spider In the Dark","site_detail_url":"https://comicvine.gamespot.com/spider-verse-team-up-2-too-many-spider-men-a-spide/4000-472912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474621/","id":474621,"name":"Book Three: New World Disorder: Chapter 3 - Grinding Halt","site_detail_url":"https://comicvine.gamespot.com/avengers-x-men-axis-9-book-three-new-world-disorde/4000-474621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474628/","id":474628,"name":"Bad Kitty","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool-3-bad-kitty/4000-474628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469487/","id":469487,"name":"Spider-Verse Part 1: The Gathering; The Feast","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-9-spider-verse-part-1-the-g/4000-469487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469497/","id":469497,"name":"The Power of Positive Thinking; The Luck of the Parkers","site_detail_url":"https://comicvine.gamespot.com/spider-verse-team-up-1-the-power-of-positive-think/4000-469497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469490/","id":469490,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpools-art-of-war-2/4000-469490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469424/","id":469424,"name":"Alignment: Earth, Part 2","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-7-alignment-earth-part-2/4000-469424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469817/","id":469817,"name":"Sharpen Your Teeth","site_detail_url":"https://comicvine.gamespot.com/the-kitchen-1-sharpen-your-teeth/4000-469817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469832/","id":469832,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-romero-s-empire-of-the-dead-act-two-3/4000-469832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469794/","id":469794,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-28/4000-469794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469842/","id":469842,"name":"Enter the Spider-Verse; Spider Clan: The Many; Steampunk Lady Spider; Penelope Parker","site_detail_url":"https://comicvine.gamespot.com/spider-verse-1-enter-the-spider-verse-spider-clan-/4000-469842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470378/","id":470378,"name":"Blinded by the Light, Conclusion","site_detail_url":"https://comicvine.gamespot.com/teen-titans-4-blinded-by-the-light-conclusion/4000-470378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470420/","id":470420,"name":"","site_detail_url":"https://comicvine.gamespot.com/axis-carnage-2/4000-470420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470370/","id":470370,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-29/4000-470370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471312/","id":471312,"name":"Charm School","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-13-charm-school/4000-471312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471313/","id":471313,"name":"Fa$t Money","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-mighty-avengers-2-fa-t-money/4000-471313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471259/","id":471259,"name":"Secret Origins The Flash in The Chase; Secret Origins The Huntress Two Names & Two Worlds; Secret Origins Superboy Lab Rat","site_detail_url":"https://comicvine.gamespot.com/secret-origins-7-secret-origins-the-flash-in-the-c/4000-471259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469840/","id":469840,"name":"The Good Old Days Conclusion","site_detail_url":"https://comicvine.gamespot.com/she-hulk-10-the-good-old-days-conclusion/4000-469840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475473/","id":475473,"name":"","site_detail_url":"https://comicvine.gamespot.com/shaft-2/4000-475473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475957/","id":475957,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-special-2014-death-factory-1/4000-475957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475987/","id":475987,"name":"","site_detail_url":"https://comicvine.gamespot.com/thomas-alsop-8/4000-475987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476250/","id":476250,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-1/4000-476250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476263/","id":476263,"name":"","site_detail_url":"https://comicvine.gamespot.com/strange-detective-mysteries-1/4000-476263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476801/","id":476801,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-shadow-now-1-tpb/4000-476801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476816/","id":476816,"name":"Attack On Technodrome Part Two","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-42-attack-on-technodr/4000-476816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477837/","id":477837,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/green-lantern-by-geoff-johns-omnibus-1-volume-1/4000-477837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477937/","id":477937,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/lou-cale-snapping-the-big-apple-s-bad-seeds-1-hc/4000-477937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477886/","id":477886,"name":"Part 4: The Long Goodbye","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-4-part-4-/4000-477886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478152/","id":478152,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-game-over-1-volume/4000-478152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478210/","id":478210,"name":"","site_detail_url":"https://comicvine.gamespot.com/kid-kosmos-4/4000-478210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476394/","id":476394,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-476394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475089/","id":475089,"name":"Price I Pay","site_detail_url":"https://comicvine.gamespot.com/stray-1-price-i-pay/4000-475089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477862/","id":477862,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-inc-6/4000-477862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470407/","id":470407,"name":"The Thomas Wolfe Syndrome: Chapter Six of Happily Ever After; The Last Story of Prince Charming","site_detail_url":"https://comicvine.gamespot.com/fables-146-the-thomas-wolfe-syndrome-chapter-six-o/4000-470407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477168/","id":477168,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/magneto-reversals-1-volume-2/4000-477168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478627/","id":478627,"name":"The Fall of G.I. Joe Part Five","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-5-the-fall-of-g-i-joe-part-five/4000-478627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469564/","id":469564,"name":"The High Window, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-names-3-the-high-window-part-3/4000-469564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475516/","id":475516,"name":"The Prophecy","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-106-the-prophecy/4000-475516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476003/","id":476003,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-space-detective-1-volume-one/4000-476003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497761/","id":497761,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-eternal-1/4000-497761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498700/","id":498700,"name":"Fantastic Four 8: Estela Plateada","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-74-fantastic-four-8-estela-/4000-498700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469836/","id":469836,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-7/4000-469836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469825/","id":469825,"name":"No Gods, No Masters Part 1","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-10-no-gods-no-masters-part-1/4000-469825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539608/","id":539608,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-7/4000-539608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470429/","id":470429,"name":"Part 8: Comes the Light","site_detail_url":"https://comicvine.gamespot.com/inhuman-8-part-8-comes-the-light/4000-470429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552387/","id":552387,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-33/4000-552387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470434/","id":470434,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-1/4000-470434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479503/","id":479503,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-32/4000-479503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469838/","id":469838,"name":"Chapter XXIII: Wouldn't Mama Be Proud","site_detail_url":"https://comicvine.gamespot.com/nova-23-chapter-xxiii-wouldnt-mama-be-proud/4000-469838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471320/","id":471320,"name":"Chapter XXIV: Stupidity Tries","site_detail_url":"https://comicvine.gamespot.com/nova-24-chapter-xxiv-stupidity-tries/4000-471320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475970/","id":475970,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-8/4000-475970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470430/","id":470430,"name":"I Cannot Tell A Lie!","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-8-i-cannot-tell-a-lie/4000-470430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477845/","id":477845,"name":"Changing of the Guard","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-32-changing-of-the-guard/4000-477845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477105/","id":477105,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-9-volume-9/4000-477105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469834/","id":469834,"name":"The Mysterious Strangers","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool-2-the-mysterious-strangers/4000-469834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476236/","id":476236,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deathlok-the-souls-of-cyber-folk-1-volume-1/4000-476236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477834/","id":477834,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-8-chapter-eight/4000-477834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477117/","id":477117,"name":"Disco Inferno: Stayin' Alive","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-77-3-disco-inferno-stayin-alive/4000-477117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476927/","id":476927,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-7-chapter-seven/4000-476927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476328/","id":476328,"name":"Disco Inferno: Blood on the Dancefloor","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-77-2-disco-inferno-blood-on-the-dance/4000-476328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475916/","id":475916,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-6-chapter-six/4000-475916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475616/","id":475616,"name":"Disco Inferno: The Velvet Ropes","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-77-1-disco-inferno-the-velvet-ropes/4000-475616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475434/","id":475434,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-5-chapter-five/4000-475434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476393/","id":476393,"name":"Goblin Nation Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-33-goblin-nation-conclu/4000-476393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451941/","id":451941,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-special-edition-1/4000-451941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467645/","id":467645,"name":"The Trial of Scourge","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-9-the-trial-of-scourge/4000-467645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467650/","id":467650,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-two-2/4000-467650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467648/","id":467648,"name":"Book One: The Red Supremacy: Chapter 1 - We Will All Be Dead Tomorrow","site_detail_url":"https://comicvine.gamespot.com/avengers-x-men-axis-1-book-one-the-red-supremacy-c/4000-467648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468026/","id":468026,"name":"Blinded by the Light, Part 3","site_detail_url":"https://comicvine.gamespot.com/teen-titans-3-blinded-by-the-light-part-3/4000-468026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468025/","id":468025,"name":"Normal","site_detail_url":"https://comicvine.gamespot.com/supergirl-35-normal/4000-468025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468021/","id":468021,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-24/4000-468021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468078/","id":468078,"name":"East of Eden (Part 3)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-11-east-of-eden-part-3/4000-468078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468459/","id":468459,"name":"","site_detail_url":"https://comicvine.gamespot.com/axis-hobgoblin-1/4000-468459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468412/","id":468412,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-25/4000-468412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468455/","id":468455,"name":"Ms.Adventures In Babysitting; Edge of Spider-Verse: My Brother's Keeper","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-8-msadventures-in-babysitti/4000-468455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468901/","id":468901,"name":"","site_detail_url":"https://comicvine.gamespot.com/axis-carnage-1/4000-468901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468910/","id":468910,"name":"Part 7: Out of the Darkness","site_detail_url":"https://comicvine.gamespot.com/inhuman-7-part-7-out-of-the-darkness/4000-468910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468862/","id":468862,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-26/4000-468862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468911/","id":468911,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-75th-anniversary-celebration-1/4000-468911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468907/","id":468907,"name":"East of Eden (Part 4)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-12-east-of-eden-part-4/4000-468907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466978/","id":466978,"name":"Alignment: Earth, Part 1","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-6-alignment-earth-part-1/4000-466978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471949/","id":471949,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-1-volume-1/4000-471949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471974/","id":471974,"name":"","site_detail_url":"https://comicvine.gamespot.com/chastity-6/4000-471974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471977/","id":471977,"name":"","site_detail_url":"https://comicvine.gamespot.com/shaft-1/4000-471977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471988/","id":471988,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/morning-glories-compendium-1-volume-one/4000-471988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471991/","id":471991,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/revival-deluxe-edition-2-volume-two/4000-471991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471993/","id":471993,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-249/4000-471993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468916/","id":468916,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-11/4000-468916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472932/","id":472932,"name":"Mass Hysteria Part 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-9-mass-hysteria-part-2/4000-472932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472983/","id":472983,"name":"","site_detail_url":"https://comicvine.gamespot.com/thomas-alsop-7/4000-472983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473609/","id":473609,"name":"Flesh and Stone Part 2","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-126-flesh-and-stone-part-2/4000-473609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473620/","id":473620,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/dmz-the-deluxe-edition-3-book-three/4000-473620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473757/","id":473757,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/trilogy-usa-1-hc/4000-473757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473661/","id":473661,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-inc-5/4000-473661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474178/","id":474178,"name":"Sterrenrood","site_detail_url":"https://comicvine.gamespot.com/suske-en-wiske-328-sterrenrood/4000-474178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474650/","id":474650,"name":"Part 3: Showdown In Chinatown","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-3-part-3-/4000-474650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472007/","id":472007,"name":"","site_detail_url":"https://comicvine.gamespot.com/escape-from-new-york-1/4000-472007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474721/","id":474721,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/robert-moses-the-master-builder-of-new-york-city-1/4000-474721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474812/","id":474812,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-world-war-wendigo-1-volume-2/4000-474812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474611/","id":474611,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/lucifer-5-book-five/4000-474611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475079/","id":475079,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-4-chapter-four/4000-475079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475082/","id":475082,"name":"Small Packages","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-31-small-packages/4000-475082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475286/","id":475286,"name":"Awakening","site_detail_url":"https://comicvine.gamespot.com/gates-of-midnight-1-awakening/4000-475286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468088/","id":468088,"name":"","site_detail_url":"https://comicvine.gamespot.com/storm-4/4000-468088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473608/","id":473608,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/athena-voltaire-compendium-1-hc/4000-473608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467040/","id":467040,"name":"Live","site_detail_url":"https://comicvine.gamespot.com/moon-knight-8-live/4000-467040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472059/","id":472059,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-mantamaji-2-book-two/4000-472059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468054/","id":468054,"name":"The Last Cinderella Story Part One; Reprise: Chapter Five of Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-145-the-last-cinderella-story-part-one-repr/4000-468054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467015/","id":467015,"name":"Five Rhymes and A Riddle: Chapter Four of The Clamour For Glamour","site_detail_url":"https://comicvine.gamespot.com/fairest-30-five-rhymes-and-a-riddle-chapter-four-o/4000-467015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468081/","id":468081,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-11/4000-468081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473668/","id":473668,"name":"The Fall of G.I. Joe Part Four","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-4-the-fall-of-g-i-joe-part-four/4000-473668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467147/","id":467147,"name":"The High Window, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-names-2-the-high-window-part-2/4000-467147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497606/","id":497606,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-13/4000-497606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474138/","id":474138,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-shutter-1/4000-474138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472964/","id":472964,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-7/4000-472964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468082/","id":468082,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-6/4000-468082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472958/","id":472958,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/ghosted-death-wish-1-volume-three/4000-472958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539607/","id":539607,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-6/4000-539607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552386/","id":552386,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-32/4000-552386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468900/","id":468900,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-33/4000-468900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469407/","id":469407,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-graphic-canon-of-childrens-literature-the-worl/4000-469407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472949/","id":472949,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-turtles-in-time-1-tpb/4000-472949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472948/","id":472948,"name":"Attack On Technodrome Part One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-41-attack-on-technodr/4000-472948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471936/","id":471936,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-mighty-1-tpb/4000-471936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474674/","id":474674,"name":"Have Bodybag, Will Travel!","site_detail_url":"https://comicvine.gamespot.com/mcbain-1-have-bodybag-will-travel/4000-474674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467651/","id":467651,"name":"Live and In Print","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool-1-live-and-in-print/4000-467651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474607/","id":474607,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-3-chapter-three/4000-474607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473622/","id":473622,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-2-chapter-two/4000-473622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473122/","id":473122,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/fables-the-wolf-among-us-1-chapter-one/4000-473122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470599/","id":470599,"name":"","site_detail_url":"https://comicvine.gamespot.com/brutus-790/4000-470599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476392/","id":476392,"name":"Vengeance of the Goblin","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-30-vengeance-of-the-gob/4000-476392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526857/","id":526857,"name":"Snow White","site_detail_url":"https://comicvine.gamespot.com/fables-22-snow-white/4000-526857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688458/","id":688458,"name":"Things That make You Go Boom!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-31-things-that-make-you/4000-688458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463989/","id":463989,"name":"Blackout","site_detail_url":"https://comicvine.gamespot.com/moon-knight-7-blackout/4000-463989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464102/","id":464102,"name":"The High Window, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-names-1-the-high-window-part-1/4000-464102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463995/","id":463995,"name":"The Good Old Days Part 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-8-the-good-old-days-part-1/4000-463995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464972/","id":464972,"name":"Femme Fatales","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-8-femme-fatales/4000-464972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464979/","id":464979,"name":"Spider-Man: Noir","site_detail_url":"https://comicvine.gamespot.com/edge-of-spider-verse-1-spider-man-noir/4000-464979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464981/","id":464981,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-two-1/4000-464981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464943/","id":464943,"name":"Super","site_detail_url":"https://comicvine.gamespot.com/superboy-futures-end-1-super/4000-464943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464938/","id":464938,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-19/4000-464938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464983/","id":464983,"name":"Part 5: Empty Throne","site_detail_url":"https://comicvine.gamespot.com/inhuman-5-part-5-empty-throne/4000-464983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465854/","id":465854,"name":"No Future? Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-9-no-future-conclusion/4000-465854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465795/","id":465795,"name":"Conquerors from the Counter-World","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-the-society-of-super-heroes-the-c/4000-465795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465802/","id":465802,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-20/4000-465802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465842/","id":465842,"name":"Gwen Stacy: Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/edge-of-spider-verse-2-gwen-stacy-spider-woman/4000-465842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466441/","id":466441,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/on-the-books-1-gn/4000-466441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466325/","id":466325,"name":"When Cometh the Deadpool-Spider-Slayer","site_detail_url":"https://comicvine.gamespot.com/deadpool-35-when-cometh-the-deadpool-spider-slayer/4000-466325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466276/","id":466276,"name":"Crappily Ever After","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-futures-end-1-crappily-ever-after/4000-466276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464980/","id":464980,"name":"East of Eden (Part 2)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-10-east-of-eden-part-2/4000-464980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469554/","id":469554,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/grendel-vs-the-shadow-3-book-three/4000-469554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469726/","id":469726,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/jennifers-journal-the-life-of-a-suburban-girl-1-vo/4000-469726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469734/","id":469734,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/miles-morales-the-ultimate-spider-man-revival-1-vo/4000-469734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469868/","id":469868,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-a-real-american-hero-10-volume-10/4000-469868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469910/","id":469910,"name":"","site_detail_url":"https://comicvine.gamespot.com/thomas-alsop-6/4000-469910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470499/","id":470499,"name":"Night of the Automated Dead","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-73-night-of-the-automated-dead/4000-470499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470415/","id":470415,"name":"Potential","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-30-potential/4000-470415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470834/","id":470834,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-by-abnett-and-lanning-comp/4000-470834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471304/","id":471304,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/jsa-omnibus-2-volume-two/4000-471304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471298/","id":471298,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-essentials-green-lantern-rebirth-1/4000-471298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471347/","id":471347,"name":"Part 2: The Meeting of the Minds","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-2-part-2-/4000-471347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471346/","id":471346,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-40/4000-471346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471426/","id":471426,"name":"Nazi Skinhead Slaughterama","site_detail_url":"https://comicvine.gamespot.com/toe-tag-riot-1-nazi-skinhead-slaughterama/4000-471426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471607/","id":471607,"name":"","site_detail_url":"https://comicvine.gamespot.com/nypd-weird-1/4000-471607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470979/","id":470979,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-rage-1-volume-1/4000-470979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463987/","id":463987,"name":"Rage: Part Six","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-6-rage-part-six/4000-463987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465823/","id":465823,"name":"Bigby Wolf and the Blustery Day: Chapter Four of Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-144-bigby-wolf-and-the-blustery-day-chapter/4000-465823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471344/","id":471344,"name":"By The Silver Water of Lake Champlain","site_detail_url":"https://comicvine.gamespot.com/shadow-show-stories-in-celebration-of-ray-bradbury/4000-471344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471485/","id":471485,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/little-nemo-dream-another-dream-1-hc/4000-471485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497667/","id":497667,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-16/4000-497667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469896/","id":469896,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/shutter-wanderlost-1-volume-one/4000-469896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497748/","id":497748,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-16/4000-497748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465846/","id":465846,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-5/4000-465846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470400/","id":470400,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-season-of-the-witch-1-vol-1/4000-470400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469446/","id":469446,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-21/4000-469446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466328/","id":466328,"name":"Part 6: Trial by Fire","site_detail_url":"https://comicvine.gamespot.com/inhuman-6-part-6-trial-by-fire/4000-466328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552385/","id":552385,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-31/4000-552385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465836/","id":465836,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-32/4000-465836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466329/","id":466329,"name":"Degree Absolute","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-6-degree-absolute/4000-466329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463982/","id":463982,"name":"The Tomorrow Soldier Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-24-the-tomorrow-soldier-part-3/4000-463982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469682/","id":469682,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-hickman-omnibus-2-volume-2/4000-469682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471405/","id":471405,"name":"","site_detail_url":"https://comicvine.gamespot.com/future-proof-2/4000-471405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476423/","id":476423,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-7/4000-476423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476390/","id":476390,"name":"Goblin War","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-28-goblin-war/4000-476390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476391/","id":476391,"name":"Goblin Nation Begins!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-29-goblin-nation-begins/4000-476391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480933/","id":480933,"name":"Résurrection","site_detail_url":"https://comicvine.gamespot.com/soda-13-resurrection/4000-480933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461740/","id":461740,"name":"Edge of Spider-Verse Prologue - Part 1; Spider-Sanction","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-32-edge-of-spider-verse-prolog/4000-461740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461732/","id":461732,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-warriors-8/4000-461732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461730/","id":461730,"name":"Spectre","site_detail_url":"https://comicvine.gamespot.com/moon-knight-6-spectre/4000-461730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461687/","id":461687,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-14/4000-461687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462246/","id":462246,"name":"The Tomorrow Soldier Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-23-the-tomorrow-soldier-part-2/4000-462246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462253/","id":462253,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-11/4000-462253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462259/","id":462259,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-ff-6/4000-462259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462856/","id":462856,"name":"Blinded by the Light, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-2-blinded-by-the-light-part-2/4000-462856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462902/","id":462902,"name":"","site_detail_url":"https://comicvine.gamespot.com/storm-2/4000-462902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462855/","id":462855,"name":"Last Sun, Chapter 3: The Girl Who Fell To Earth","site_detail_url":"https://comicvine.gamespot.com/supergirl-34-last-sun-chapter-3-the-girl-who-fell-/4000-462855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462884/","id":462884,"name":"Legend, Part 1","site_detail_url":"https://comicvine.gamespot.com/all-new-ghost-rider-6-legend-part-1/4000-462884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462852/","id":462852,"name":"House of Heroes","site_detail_url":"https://comicvine.gamespot.com/the-multiversity-1-house-of-heroes/4000-462852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463475/","id":463475,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-7/4000-463475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463487/","id":463487,"name":"The Punisher vs. The Thunderbolts Part Four","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-30-the-punisher-vs-the-thunderbolts-p/4000-463487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462206/","id":462206,"name":"Some Nerd Rage with your Birdcage?","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-9-some-nerd-rage-with-your-birdcage/4000-462206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463429/","id":463429,"name":"There Are No Rules!","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-10-there-are-no-rules/4000-463429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467068/","id":467068,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-monsters-misfits-and-/4000-467068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467217/","id":467217,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/iron-man-rings-of-the-mandarin-1-volume-5/4000-467217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467225/","id":467225,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/moon-knight-from-the-dead-1-volume-1/4000-467225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467014/","id":467014,"name":"Book Nine","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-9-book-nine/4000-467014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467793/","id":467793,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/grendel-vs-the-shadow-2-book-two/4000-467793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467659/","id":467659,"name":"","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness-convention-invasion-1/4000-467659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467799/","id":467799,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-only-living-boy-3/4000-467799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467914/","id":467914,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-higher-further-faster-more-1-volume/4000-467914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467943/","id":467943,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-law-and-disorder-1-volume-1/4000-467943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468061/","id":468061,"name":"","site_detail_url":"https://comicvine.gamespot.com/one-dollar-debut-archer-armstrong-1-1/4000-468061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467664/","id":467664,"name":"Suicide King","site_detail_url":"https://comicvine.gamespot.com/evil-ernie-1-suicide-king/4000-467664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468157/","id":468157,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/dmc-1-vol-1/4000-468157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468108/","id":468108,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-39/4000-468108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468561/","id":468561,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ronin-deluxe-edition-1-hc/4000-468561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468489/","id":468489,"name":"Part 1: Crossing the Divide","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtlesghostbusters-1-part-1-/4000-468489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468470/","id":468470,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-inc-3/4000-468470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469134/","id":469134,"name":"Intelligent Design Part 1","site_detail_url":"https://comicvine.gamespot.com/the-civil-four-5-intelligent-design-part-1/4000-469134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469266/","id":469266,"name":"Birth of the Cool","site_detail_url":"https://comicvine.gamespot.com/the-harlem-shadow-1-birth-of-the-cool/4000-469266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468930/","id":468930,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/morning-glories-deluxe-collection-3-volume-3/4000-468930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461738/","id":461738,"name":"Small Victories","site_detail_url":"https://comicvine.gamespot.com/she-hulk-7-small-victories/4000-461738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461726/","id":461726,"name":"Rage: Part Five","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-5-rage-part-five/4000-461726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467016/","id":467016,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/fairest-of-men-and-mice-1-volume-4/4000-467016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467774/","id":467774,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-mantamaji-1-book-one/4000-467774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462871/","id":462871,"name":"A Ring of Glass and Shadow or: The Last Weyland Smith Story: Chapter Three of Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-143-a-ring-of-glass-and-shadow-or-the-last-/4000-462871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468562/","id":468562,"name":"","site_detail_url":"https://comicvine.gamespot.com/13-coins-1/4000-468562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461713/","id":461713,"name":"Ghost of A Chance: Chapter Two of The Clamour For Glamour","site_detail_url":"https://comicvine.gamespot.com/fairest-28-ghost-of-a-chance-chapter-two-of-the-cl/4000-461713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468959/","id":468959,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-realm-war-age-of-darkne/4000-468959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462889/","id":462889,"name":"Chapter 13: Give Love A Hand; Chapter 14","site_detail_url":"https://comicvine.gamespot.com/deadpool-draculas-gauntlet-7-chapter-13-give-love-/4000-462889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497747/","id":497747,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-15/4000-497747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498694/","id":498694,"name":"Fantastic Four 6: Guerra De Dioses","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-68-fantastic-four-6-guerra-/4000-498694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461729/","id":461729,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-4/4000-461729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462249/","id":462249,"name":"Chapter 11: Domestic Dispute; Chapter 12","site_detail_url":"https://comicvine.gamespot.com/deadpool-draculas-gauntlet-6-chapter-11-domestic-d/4000-462249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462885/","id":462885,"name":"Writhe and Attack","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-6-writhe-and-attack/4000-462885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505086/","id":505086,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-2/4000-505086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468444/","id":468444,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-hot-in-the-city-1-volume-1/4000-468444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513242/","id":513242,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-11/4000-513242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467812/","id":467812,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-war-stories-1-volume-10/4000-467812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468031/","id":468031,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-1-hc/4000-468031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468288/","id":468288,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadly-hands-of-kung-fu-out-of-the-past-1-tpb/4000-468288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462252/","id":462252,"name":"Part 3: They Fall","site_detail_url":"https://comicvine.gamespot.com/inhuman-3-part-3-they-fall/4000-462252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463482/","id":463482,"name":"Part 4: A Thunder God In Attilan","site_detail_url":"https://comicvine.gamespot.com/inhuman-4-part-4-a-thunder-god-in-attilan/4000-463482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552384/","id":552384,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-30/4000-552384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463476/","id":463476,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-31/4000-463476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579195/","id":579195,"name":"Más que una marca X","site_detail_url":"https://comicvine.gamespot.com/x-factor-8-mas-que-una-marca-x/4000-579195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467617/","id":467617,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/blacksad-amarillo-1-hc/4000-467617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467028/","id":467028,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-flesh-1-volume-5/4000-467028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476422/","id":476422,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-6/4000-476422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461727/","id":461727,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-8/4000-461727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514378/","id":514378,"name":"Demon in a Spacesuit Chapter 5","site_detail_url":"https://comicvine.gamespot.com/space-coast-comixx-5-demon-in-a-spacesuit-chapter-/4000-514378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469227/","id":469227,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-fear-him-infinite-comic-1-/4000-469227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688659/","id":688659,"name":null,"site_detail_url":"https://comicvine.gamespot.com/in-bed-1/4000-688659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458621/","id":458621,"name":"Scarlet","site_detail_url":"https://comicvine.gamespot.com/moon-knight-5-scarlet/4000-458621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459119/","id":459119,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-10/4000-459119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459175/","id":459175,"name":"Whispers of War; Young Avengers: Hidden In Plain Sight Part Three of Five; Bury the Lead.","site_detail_url":"https://comicvine.gamespot.com/original-sins-3-whispers-of-war-young-avengers-hid/4000-459175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459634/","id":459634,"name":"Blinded by the Light, Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-1-blinded-by-the-light-part-1/4000-459634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459628/","id":459628,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-11/4000-459628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459684/","id":459684,"name":"Stuck, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-ff-4-stuck-part-1-of-2/4000-459684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460308/","id":460308,"name":"His Cold, Handsome Skull","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-5-his-cold-handsome-skull/4000-460308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460314/","id":460314,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-12/4000-460314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460316/","id":460316,"name":"Checkmate; Young Avengers: Hidden In Plain Sight Part Four of Five; Catharsis","site_detail_url":"https://comicvine.gamespot.com/original-sins-4-checkmate-young-avengers-hidden-in/4000-460316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460269/","id":460269,"name":"Secret Origins Harley Quinn; Secret Origins Green Arrow; A Boy's Life Damian Wayne Robin","site_detail_url":"https://comicvine.gamespot.com/secret-origins-4-secret-origins-harley-quinn-secre/4000-460269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460309/","id":460309,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-4/4000-460309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460311/","id":460311,"name":"Daddy/Daughter Day","site_detail_url":"https://comicvine.gamespot.com/deadpool-32-daddy-daughter-day/4000-460311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460310/","id":460310,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-6/4000-460310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459171/","id":459171,"name":"The Fateful Four (Part 2)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-7-the-fateful-four-part-2/4000-459171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461066/","id":461066,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-13/4000-461066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463552/","id":463552,"name":"Revolutions of Terror Part 2","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-2-revolutions-of-terro/4000-463552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463630/","id":463630,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-realm-war-age-of-darkne/4000-463630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464103/","id":464103,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/grendel-vs-the-shadow-1-book-one/4000-464103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464043/","id":464043,"name":"","site_detail_url":"https://comicvine.gamespot.com/cloaks-1/4000-464043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464190/","id":464190,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-sludge-city-1/4000-464190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464042/","id":464042,"name":"Histories in Blood; Agony and Ecstasy","site_detail_url":"https://comicvine.gamespot.com/clive-barkers-nightbreed-4-histories-in-blood-agon/4000-464042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465000/","id":465000,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-10/4000-465000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464995/","id":464995,"name":"Chapter One: Life and Death Rattle","site_detail_url":"https://comicvine.gamespot.com/dawn-vampirella-1-chapter-one-life-and-death-rattl/4000-464995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465326/","id":465326,"name":"Taketh Away, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-5-taketh-a/4000-465326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465819/","id":465819,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-the-night-eternal-2/4000-465819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466084/","id":466084,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-story-of-kokoro-1/4000-466084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466032/","id":466032,"name":"Taketh Away, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-6-taketh-a/4000-466032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466312/","id":466312,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/forever-evil-blight-1-tpb/4000-466312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464994/","id":464994,"name":"","site_detail_url":"https://comicvine.gamespot.com/chastity-3/4000-464994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466356/","id":466356,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-harlan-ellisons-original-the-city-on-the/4000-466356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466364/","id":466364,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/revival-escape-to-wisconsin-1-volume-4/4000-466364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466455/","id":466455,"name":"Longshot","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-230-longshot/4000-466455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465882/","id":465882,"name":"Chapter Seven: My Magic Can Beat Up Your Magic; Chapter Eight: Frenemies","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-magi-4-chapter-seven-my-magic-can-beat/4000-465882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466340/","id":466340,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-inc-2/4000-466340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465004/","id":465004,"name":"","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-a-real-american-hero-206/4000-465004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467067/","id":467067,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-38/4000-467067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466348/","id":466348,"name":"Mass Hysteria! Part 8: Parting Ways","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-20-mass-hysteria-part-8-parting-ways/4000-466348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466484/","id":466484,"name":"Revolutions of Terror Part 3","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-3-revolutions-of-terro/4000-466484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458618/","id":458618,"name":"Rage: Part Four","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-4-rage-part-four/4000-458618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459681/","id":459681,"name":"Blue Part Two","site_detail_url":"https://comicvine.gamespot.com/she-hulk-6-blue-part-two/4000-459681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458603/","id":458603,"name":"Mister Fox Goes To Town: Chapter One of The Clamour For Glamour","site_detail_url":"https://comicvine.gamespot.com/fairest-27-mister-fox-goes-to-town-chapter-one-of-/4000-458603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459659/","id":459659,"name":"Who's Afraid of the Big Bad Wolf? Chapter Two of Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-142-whos-afraid-of-the-big-bad-wolf-chapter/4000-459659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464183/","id":464183,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-1-hc/4000-464183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466384/","id":466384,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-realm-war-age-of-darkne/4000-466384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497662/","id":497662,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-14/4000-497662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498552/","id":498552,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-5/4000-498552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465902/","id":465902,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/mega-man-blackout-the-curse-of-ra-moon-1-volume-7/4000-465902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552383/","id":552383,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-29/4000-552383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465867/","id":465867,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-turtles-in-time-4/4000-465867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466509/","id":466509,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-great-power/4000-466509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465827/","id":465827,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/new-teen-titans-1-volume-one/4000-465827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476421/","id":476421,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-5/4000-476421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526856/","id":526856,"name":"Welpen Im Spielzeugland","site_detail_url":"https://comicvine.gamespot.com/fables-21-welpen-im-spielzeugland/4000-526856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455434/","id":455434,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-5/4000-455434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455487/","id":455487,"name":"Rage: Part Three","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-3-rage-part-three/4000-455487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455975/","id":455975,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-6/4000-455975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456499/","id":456499,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-7/4000-456499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456551/","id":456551,"name":"Chapter XVIII: Dia De Los Muertos","site_detail_url":"https://comicvine.gamespot.com/nova-18-chapter-xviii-dia-de-los-muertos/4000-456551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457646/","id":457646,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-warriors-6/4000-457646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460386/","id":460386,"name":"Revolutions of Terror Part 1","site_detail_url":"https://comicvine.gamespot.com/doctor-who-the-tenth-doctor-1-revolutions-of-terro/4000-460386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461712/","id":461712,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/constantine-blight-1-volume-2/4000-461712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461745/","id":461745,"name":"Resuscitation","site_detail_url":"https://comicvine.gamespot.com/chastity-2-resuscitation/4000-461745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461996/","id":461996,"name":"The Seven Deadly Finns, Part 4: Prime Time","site_detail_url":"https://comicvine.gamespot.com/the-shadow-masters-series-11-the-seven-deadly-finn/4000-461996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461743/","id":461743,"name":"Fire Bomb Kill Dead","site_detail_url":"https://comicvine.gamespot.com/captain-victory-and-galactic-rangers-1-fire-bomb-k/4000-461743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462268/","id":462268,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-heart-of-the-beast-20th-anniversary-edition-1-/4000-462268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462286/","id":462286,"name":"The Swarm","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-new-animated-adventur/4000-462286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462285/","id":462285,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-37/4000-462285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462571/","id":462571,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-4-v/4000-462571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462935/","id":462935,"name":"Symphony In Red; Desert Fathers; The Hunted, Part One","site_detail_url":"https://comicvine.gamespot.com/clive-barkers-hellraiser-bestiary-1-symphony-in-re/4000-462935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462906/","id":462906,"name":"The Time Machine!","site_detail_url":"https://comicvine.gamespot.com/justice-inc-1-the-time-machine/4000-462906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462921/","id":462921,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-annual-2014-1/4000-462921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462870/","id":462870,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/brightest-day-omnibus-1-hc/4000-462870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463067/","id":463067,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-masters-series-13/4000-463067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462296/","id":462296,"name":"Chapter Five: If You Don't Look, You Can't See; Chapter Six: Found and Lost","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-magi-3-chapter-five-if-you-dont-look-y/4000-462296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463084/","id":463084,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-society-of-serpent/4000-463084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463441/","id":463441,"name":"","site_detail_url":"https://comicvine.gamespot.com/revival-23/4000-463441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463470/","id":463470,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-gods-and-monsters-1-vo/4000-463470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468240/","id":468240,"name":"","site_detail_url":"https://comicvine.gamespot.com/dysphoria-2/4000-468240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456031/","id":456031,"name":"Blue","site_detail_url":"https://comicvine.gamespot.com/she-hulk-5-blue/4000-456031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463003/","id":463003,"name":"","site_detail_url":"https://comicvine.gamespot.com/supreme-blue-rose-2/4000-463003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463469/","id":463469,"name":"Volume 20","site_detail_url":"https://comicvine.gamespot.com/fables-camelot-1-volume-20/4000-463469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456533/","id":456533,"name":"Remembrance Day: Chapter One of Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-141-remembrance-day-chapter-one-of-happily-/4000-456533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457650/","id":457650,"name":"The Green Goblin; Kraven the Hunter; Mysterio; Return of the Hunter","site_detail_url":"https://comicvine.gamespot.com/spider-man-spectacular-1-the-green-goblin-kraven-t/4000-457650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461773/","id":461773,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-9-volume-9/4000-461773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462535/","id":462535,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-helsing-1-tpb/4000-462535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497745/","id":497745,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-13/4000-497745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498551/","id":498551,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-4/4000-498551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455491/","id":455491,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-2/4000-455491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456016/","id":456016,"name":"Summer of Scourge","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-3-summer-of-scourge/4000-456016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457636/","id":457636,"name":"Drug Buddy","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-4-drug-buddy/4000-457636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501510/","id":501510,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-and-power-girl-3/4000-501510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513240/","id":513240,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-9/4000-513240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462222/","id":462222,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-get-the-lobster-5/4000-462222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552382/","id":552382,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-28/4000-552382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455489/","id":455489,"name":"This Mission Will Self-Destruct In Five Seconds","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-5-this-mission-will-self-dest/4000-455489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462574/","id":462574,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/yellow-blue-and-gray-1-hc/4000-462574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461774/","id":461774,"name":"Extraction","site_detail_url":"https://comicvine.gamespot.com/lazarus-10-extraction/4000-461774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688597/","id":688597,"name":"Squashed Bug!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-23-squashed-bug/4000-688597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463703/","id":463703,"name":"The Arms of the Octopus Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-22-the-arms-of-the-octo/4000-463703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452268/","id":452268,"name":"Be Careful What You Wish For","site_detail_url":"https://comicvine.gamespot.com/teen-titans-annual-3-be-careful-what-you-wish-for/4000-452268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452314/","id":452314,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-1/4000-452314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452317/","id":452317,"name":"No One is Watching","site_detail_url":"https://comicvine.gamespot.com/original-sin-1-no-one-is-watching/4000-452317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452261/","id":452261,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-1/4000-452261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452806/","id":452806,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-2/4000-452806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453409/","id":453409,"name":"No Goats, No Glory","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-7-no-goats-no-glory/4000-453409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453417/","id":453417,"name":"Bomb Full of Secrets","site_detail_url":"https://comicvine.gamespot.com/original-sin-2-bomb-full-of-secrets/4000-453417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453424/","id":453424,"name":"Bloodline, Part 2 of 6; Bromo-Superior, Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-14-bloodline-part-2-of-6-bromo-superior-part/4000-453424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453360/","id":453360,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-3/4000-453360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453368/","id":453368,"name":"Red Daughter of Krypton, Part 3: Judgement Day, Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/supergirl-31-red-daughter-of-krypton-part-3-judgem/4000-453368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453362/","id":453362,"name":"Better Nuthead Than Red","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-6-better-nuthead-than-red/4000-453362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454045/","id":454045,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-52-futures-end-4/4000-454045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454106/","id":454106,"name":"Damnation and Redemption","site_detail_url":"https://comicvine.gamespot.com/thanos-annual-1-damnation-and-redemption/4000-454106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454104/","id":454104,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-10/4000-454104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454200/","id":454200,"name":"Unbreakable Part Three","site_detail_url":"https://comicvine.gamespot.com/iron-patriot-3-unbreakable-part-three/4000-454200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458038/","id":458038,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/the-shadow-midnight-in-moscow-2-part-2/4000-458038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458573/","id":458573,"name":"Out","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-9-out/4000-458573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458608/","id":458608,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/superboy-blood-and-steel-1-volume-4/4000-458608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458700/","id":458700,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/unterzakhn-1-gn/4000-458700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458816/","id":458816,"name":"The Clawed-Agent Strikes!","site_detail_url":"https://comicvine.gamespot.com/boots-heels-claws-2-the-clawed-agent-strikes/4000-458816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458895/","id":458895,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadworld-frozen-over-1-tpb/4000-458895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459183/","id":459183,"name":"Be Careful What You Wish For","site_detail_url":"https://comicvine.gamespot.com/chastity-1-be-careful-what-you-wish-for/4000-459183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459224/","id":459224,"name":"Spring Break","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-2014-swimsuit-special-1-spring-b/4000-459224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459155/","id":459155,"name":"Part II: Hunt","site_detail_url":"https://comicvine.gamespot.com/armor-hunters-2-part-ii-hunt/4000-459155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459344/","id":459344,"name":"","site_detail_url":"https://comicvine.gamespot.com/lower-east-side-story-3/4000-459344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459689/","id":459689,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/codename-action-1-tpb/4000-459689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459693/","id":459693,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-0/4000-459693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459665/","id":459665,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/teen-titans-light-and-dark-1-volume-4/4000-459665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459708/","id":459708,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-36/4000-459708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459864/","id":459864,"name":"Seven Deadly Finns","site_detail_url":"https://comicvine.gamespot.com/the-shadow-masters-series-8-seven-deadly-finns/4000-459864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459914/","id":459914,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/watson-and-holmes-a-study-in-black-1-vol-1/4000-459914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459205/","id":459205,"name":"Chapter Three: Girls, And Other Really Scary Things; Chapter Four: The Big Hurt","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-magi-2-chapter-three-girls-and-other-r/4000-459205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460278/","id":460278,"name":"","site_detail_url":"https://comicvine.gamespot.com/revival-22/4000-460278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460632/","id":460632,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-one-1-volume/4000-460632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460672/","id":460672,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-origin-ii-1-hc/4000-460672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460673/","id":460673,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-three-months-to-die-1-book-1/4000-460673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460715/","id":460715,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-no-mercy-1-volume-4/4000-460715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460983/","id":460983,"name":"Mass Hysteria! Part 6: Wolves in the Fold","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-18-mass-hysteria-part-6-wolves-in-the/4000-460983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461198/","id":461198,"name":"Love the Sinner But Hate the Sin","site_detail_url":"https://comicvine.gamespot.com/lower-east-side-story-4-love-the-sinner-but-hate-t/4000-461198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461213/","id":461213,"name":"The Seven Deadly Finns - Part 3: Fool's Parade","site_detail_url":"https://comicvine.gamespot.com/the-shadow-masters-series-10-the-seven-deadly-finn/4000-461213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461287/","id":461287,"name":"Eurotrip Sketchbook","site_detail_url":"https://comicvine.gamespot.com/tally-marks-1-eurotrip-sketchbook/4000-461287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461313/","id":461313,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/human-torch-the-complete-collection-1-tpb/4000-461313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461272/","id":461272,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-family-bonding-1-volume-2/4000-461272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461012/","id":461012,"name":"Darkness On the Edge of Town Part One","site_detail_url":"https://comicvine.gamespot.com/witchblade-177-darkness-on-the-edge-of-town-part-o/4000-461012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460955/","id":460955,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-omnibus-1-hc/4000-460955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461285/","id":461285,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-the-crime-of-the-c/4000-461285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452311/","id":452311,"name":"Rage: Part Two","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-2-rage-part-two/4000-452311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452320/","id":452320,"name":"The Zealous Advocate","site_detail_url":"https://comicvine.gamespot.com/she-hulk-4-the-zealous-advocate/4000-452320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460405/","id":460405,"name":"","site_detail_url":"https://comicvine.gamespot.com/supreme-blue-rose-1/4000-460405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459221/","id":459221,"name":"Realms Fall: Part Four: The Coming Storm","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-99-realms-fall-part-four-the-com/4000-459221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459222/","id":459222,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-age-of-darkness-1-volum/4000-459222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460365/","id":460365,"name":"Home","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-helsing-4-home/4000-460365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461025/","id":461025,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-age-of-darkne/4000-461025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460559/","id":460559,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-realm-war-age-of-darkne/4000-460559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497660/","id":497660,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-12/4000-497660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498550/","id":498550,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-3/4000-498550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452844/","id":452844,"name":"Bullet Bait","site_detail_url":"https://comicvine.gamespot.com/all-new-ultimates-2-bullet-bait/4000-452844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452315/","id":452315,"name":"Box","site_detail_url":"https://comicvine.gamespot.com/moon-knight-3-box/4000-452315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460301/","id":460301,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-by-brian-k-vaughan-2-volume-two/4000-460301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452297/","id":452297,"name":"Of Men and Mice, Part Six: The Cheese Stands Alone","site_detail_url":"https://comicvine.gamespot.com/fairest-26-of-men-and-mice-part-six-the-cheese-sta/4000-452297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460302/","id":460302,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-the-unwritten-fables-1-volume-9/4000-460302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539603/","id":539603,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-2/4000-539603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454101/","id":454101,"name":"Part 2: The Queen in the Sky","site_detail_url":"https://comicvine.gamespot.com/inhuman-2-part-2-the-queen-in-the-sky/4000-454101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552381/","id":552381,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-27/4000-552381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460987/","id":460987,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/metal-gear-solid-deluxe-edition-1-hc/4000-460987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452312/","id":452312,"name":"Lets You & Him Fight!","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-4-lets-you-him-fight/4000-452312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459275/","id":459275,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-ultimate-visual-h/4000-459275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464025/","id":464025,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-original-motion-pictu/4000-464025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458648/","id":458648,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-kiss-xxxmas-in-july-special-1/4000-458648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458861/","id":458861,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-world-of-marvel-1/4000-458861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688590/","id":688590,"name":"Alien Anarchy!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-21-alien-anarchy/4000-688590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456868/","id":456868,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-universe-1/4000-456868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459411/","id":459411,"name":"The Arms of the Octopus","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-20-the-arms-of-the-octo/4000-459411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456122/","id":456122,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-62/4000-456122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458013/","id":458013,"name":"The Black Cat is Back!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-19-the-black-cat-is-bac/4000-458013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840278/","id":840278,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-universe-live-prelude-1/4000-840278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449591/","id":449591,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-vs-carnage-1/4000-449591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449592/","id":449592,"name":"Part 1: Genesis","site_detail_url":"https://comicvine.gamespot.com/inhuman-1-part-1-genesis/4000-449592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449538/","id":449538,"name":"Legacy of Gold, Part I of V","site_detail_url":"https://comicvine.gamespot.com/aquaman-and-the-others-1-legacy-of-gold-part-i-of-/4000-449538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450041/","id":450041,"name":"Forget the Past","site_detail_url":"https://comicvine.gamespot.com/superboy-30-forget-the-past/4000-450041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450073/","id":450073,"name":"The Wedding of Deadpool; Operation Ballerina Drop; #$%@-faced in Vegas; With This Hand, I Thee Wed; Continuity Spontinuity; The Niagara Bride; Fanged; Quickie; So Deadpool Walks Into a Bar...; Eulogy for a Winkie; There Will Be No Honeymoon; Savage Land:","site_detail_url":"https://comicvine.gamespot.com/deadpool-27-the-wedding-of-deadpool-operation-ball/4000-450073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450074/","id":450074,"name":"Rage: Part One","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-living-weapon-1-rage-part-one/4000-450074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450068/","id":450068,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-25/4000-450068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450554/","id":450554,"name":"Goblin Nation Conclusion","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-31-goblin-nation-conclusion/4000-450554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450517/","id":450517,"name":"Red Daughter of Krypton, Part 2: Red Remembrance","site_detail_url":"https://comicvine.gamespot.com/supergirl-30-red-daughter-of-krypton-part-2-red-re/4000-450517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450727/","id":450727,"name":"Fashion Fantabulous!","site_detail_url":"https://comicvine.gamespot.com/betty-and-veronica-271-fashion-fantabulous/4000-450727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451043/","id":451043,"name":"Aftershocks","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-30-aftershocks/4000-451043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451049/","id":451049,"name":"And Now... The End is Near; Home Sweet Home","site_detail_url":"https://comicvine.gamespot.com/teen-titans-30-and-now-the-end-is-near-home-sweet-/4000-451049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451084/","id":451084,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-a-romero-empire-of-the-dead-4/4000-451084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451082/","id":451082,"name":"Bloodlines: Part One","site_detail_url":"https://comicvine.gamespot.com/elektra-1-bloodlines-part-one/4000-451082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450681/","id":450681,"name":"Lantern, Part 1","site_detail_url":"https://comicvine.gamespot.com/smallville-lantern-1-lantern-part-1/4000-450681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451083/","id":451083,"name":"The Fall of the Fantastic Four Part 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-3-the-fall-of-the-fantastic-four-pa/4000-451083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450072/","id":450072,"name":"The King in Red; The Last Will and Testament of Mike Murdock","site_detail_url":"https://comicvine.gamespot.com/daredevil-1-50-the-king-in-red-the-last-will-and-t/4000-450072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449597/","id":449597,"name":"Sniper","site_detail_url":"https://comicvine.gamespot.com/moon-knight-2-sniper/4000-449597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451725/","id":451725,"name":"Life/Not-Life","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-annual-2-life-not-life/4000-451725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451764/","id":451764,"name":"Lucky To Be Alive; Recapturing That Old Spark; Crossed Paths; How My Stuff Works; Homecoming, Sort Of; Kaine; Learning To Crawl: Awazing Reality","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-1-lucky-to-be-alive-recaptu/4000-451764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455529/","id":455529,"name":"Into The Fire; Temple Of Shadows; 4 For 5","site_detail_url":"https://comicvine.gamespot.com/witchblade-175-into-the-fire-temple-of-shadows-4-f/4000-455529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455721/","id":455721,"name":"Everything Is Calculable, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/original-sin-secret-avengers-infinite-comic-2-ever/4000-455721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455775/","id":455775,"name":"Vol. 8","site_detail_url":"https://comicvine.gamespot.com/hellblazer-rake-at-the-gates-of-hell-1-vol-8/4000-455775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456010/","id":456010,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-control-issues-1-volume-3/4000-456010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456517/","id":456517,"name":"","site_detail_url":"https://comicvine.gamespot.com/1-for-1-the-strain-1/4000-456517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456607/","id":456607,"name":"Translucid Happy Trails","site_detail_url":"https://comicvine.gamespot.com/translucid-3-translucid-happy-trails/4000-456607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456829/","id":456829,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-goblin-nation-1-volume-6/4000-456829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456583/","id":456583,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-35/4000-456583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457592/","id":457592,"name":"","site_detail_url":"https://comicvine.gamespot.com/revival-21/4000-457592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457613/","id":457613,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-massive-longship-1-volume-3/4000-457613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457659/","id":457659,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/noir-1-tpb/4000-457659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457892/","id":457892,"name":"","site_detail_url":"https://comicvine.gamespot.com/haunted-3/4000-457892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457922/","id":457922,"name":"The End Is Nigh","site_detail_url":"https://comicvine.gamespot.com/bleedback-1-the-end-is-nigh/4000-457922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457976/","id":457976,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-superior-six-1-volume-/4000-457976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457665/","id":457665,"name":"Mass Hysteria! part 5","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-17-mass-hysteria-part-5/4000-457665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456596/","id":456596,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/velvet-before-the-living-end-1-volume-1/4000-456596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462556/","id":462556,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-undoubtables-1-gn/4000-462556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449580/","id":449580,"name":"Of Men and Mice, Part Five: Mousetrap","site_detail_url":"https://comicvine.gamespot.com/fairest-25-of-men-and-mice-part-five-mousetrap/4000-449580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455825/","id":455825,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/punisher-max-by-jason-aaron-omnibus-1-hc/4000-455825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451773/","id":451773,"name":"Martian Transylvania Super Hero Mutant Monster Hunter High School","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-annual-1-martian-transylvania-sup/4000-451773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451759/","id":451759,"name":"Serial Artist; 918; Blue Sundae; So Blue; Much Ado About Nothing; Rebolt; Madame Bluebeard; Once Upon The End Of Time; Breaking News Of The Wonders The Future Holds","site_detail_url":"https://comicvine.gamespot.com/vertigo-quarterly-cyan-1-serial-artist-918-blue-su/4000-451759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449370/","id":449370,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-200/4000-449370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456062/","id":456062,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-3/4000-456062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497659/","id":497659,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-11/4000-497659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499943/","id":499943,"name":"La Profecía del Fin del Mundo","site_detail_url":"https://comicvine.gamespot.com/hulk-rojo-5-la-profecia-del-fin-del-mundo/4000-499943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490554/","id":490554,"name":"L'Étoile Blanche","site_detail_url":"https://comicvine.gamespot.com/jour-j-16-l-etoile-blanche/4000-490554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455663/","id":455663,"name":null,"site_detail_url":"https://comicvine.gamespot.com/lobezno-origen-ii-4/4000-455663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539602/","id":539602,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-1/4000-539602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455462/","id":455462,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-get-the-lobster-4/4000-455462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558855/","id":558855,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-21/4000-558855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455511/","id":455511,"name":"Vol. 8","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-northampton-1-vol-8/4000-455511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455539/","id":455539,"name":"Homer's America; Cyrano de Bart; Nerds of Prey; Kwik-E-Bart; Do the Copyright Thing","site_detail_url":"https://comicvine.gamespot.com/simpsons-illustrated-11-homers-america-cyrano-de-b/4000-455539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456120/","id":456120,"name":"Time's Up!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-18-times-up/4000-456120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456123/","id":456123,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-32/4000-456123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452723/","id":452723,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-61/4000-452723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453660/","id":453660,"name":"Battle of the Spider-Men!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-17-battle-of-the-spider/4000-453660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449547/","id":449547,"name":"The Crack in Creation, Part One: The Ghosts of Metropolis","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-18-the-crack-in-creation-part/4000-449547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450076/","id":450076,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-7/4000-450076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446926/","id":446926,"name":"Slasher","site_detail_url":"https://comicvine.gamespot.com/moon-knight-1-slasher/4000-446926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446993/","id":446993,"name":"The Kids Are All Fight Part 2","site_detail_url":"https://comicvine.gamespot.com/new-warriors-2-the-kids-are-all-fight-part-2/4000-446993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447507/","id":447507,"name":"Higher, Further, Faster, More. Part One","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-1-higher-further-faster-more-part-o/4000-447507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447955/","id":447955,"name":"Red Daughter of Krypton, Part 1: Inner Demons","site_detail_url":"https://comicvine.gamespot.com/supergirl-29-red-daughter-of-krypton-part-1-inner-/4000-447955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447990/","id":447990,"name":"Gods and Soldiers, Part 3","site_detail_url":"https://comicvine.gamespot.com/all-new-invaders-3-gods-and-soldiers-part-3/4000-447990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447995/","id":447995,"name":".NOW Rings of the Mandarin, Chapter I","site_detail_url":"https://comicvine.gamespot.com/iron-man-23-now-rings-of-the-mandarin-chapter-i/4000-447995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448962/","id":448962,"name":"Only Dirt... Six Feet Deep","site_detail_url":"https://comicvine.gamespot.com/avengers-27-only-dirt-six-feet-deep/4000-448962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448974/","id":448974,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/origin-ii-4-book-four/4000-448974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448975/","id":448975,"name":"No More Heroes","site_detail_url":"https://comicvine.gamespot.com/revolutionary-war-omega-1-no-more-heroes/4000-448975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448920/","id":448920,"name":"Sentences","site_detail_url":"https://comicvine.gamespot.com/teen-titans-29-sentences/4000-448920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452274/","id":452274,"name":"Cinecittà","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-8-cinecitta/4000-452274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452389/","id":452389,"name":"Out of Exile Chapter 3","site_detail_url":"https://comicvine.gamespot.com/gwendolyn-3-out-of-exile-chapter-3/4000-452389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452536/","id":452536,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/richard-castles-unholy-storm-1-volume-3/4000-452536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453065/","id":453065,"name":"Scale the Earth Part One","site_detail_url":"https://comicvine.gamespot.com/amateur-government-1-scale-the-earth-part-one/4000-453065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453120/","id":453120,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-peter-parker-the-one-and-only-1/4000-453120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453121/","id":453121,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/jsa-omnibus-1-volume-one/4000-453121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453386/","id":453386,"name":"The Reign of the Black Flame Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-119-the-reign-of-the-black-f/4000-453386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453456/","id":453456,"name":"Time Will Tell","site_detail_url":"https://comicvine.gamespot.com/rocket-girl-5-time-will-tell/4000-453456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453034/","id":453034,"name":"The Showdown","site_detail_url":"https://comicvine.gamespot.com/lola-xoxo-2-the-showdown/4000-453034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454113/","id":454113,"name":"Doc Savage and the Ghosts of War","site_detail_url":"https://comicvine.gamespot.com/doc-savage-2014-annual-1-doc-savage-and-the-ghosts/4000-454113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452354/","id":452354,"name":"","site_detail_url":"https://comicvine.gamespot.com/real-heroes-2/4000-452354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454284/","id":454284,"name":"","site_detail_url":"https://comicvine.gamespot.com/haunted-2/4000-454284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454366/","id":454366,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-6-volum/4000-454366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454367/","id":454367,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-the-forgeries-of-jealousy-1-volu/4000-454367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454118/","id":454118,"name":"Mass Hysteria! Part 4: This Is Not the End","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-16-mass-hysteria-part-4-this-is-not-t/4000-454118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455495/","id":455495,"name":"","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-the-22-brides-1/4000-455495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455510/","id":455510,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-34/4000-455510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454135/","id":454135,"name":"","site_detail_url":"https://comicvine.gamespot.com/trees-1/4000-454135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446997/","id":446997,"name":"...And?","site_detail_url":"https://comicvine.gamespot.com/she-hulk-2-and/4000-446997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446977/","id":446977,"name":"Of Men and Mice, Part Four: Mice, Mice Babies","site_detail_url":"https://comicvine.gamespot.com/fairest-24-of-men-and-mice-part-four-mice-mice-bab/4000-446977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452325/","id":452325,"name":"Philadelphia Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/miss-fury-10-philadelphia-part-2-of-2/4000-452325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452882/","id":452882,"name":"Book Twelve","site_detail_url":"https://comicvine.gamespot.com/the-bounce-12-book-twelve/4000-452882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453115/","id":453115,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-2-vo/4000-453115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448980/","id":448980,"name":"The Funeral for President Steve Rogers... Captain America","site_detail_url":"https://comicvine.gamespot.com/survive-1-the-funeral-for-president-steve-rogers-c/4000-448980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453444/","id":453444,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-30th-anniversary-spec/4000-453444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452888/","id":452888,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-2/4000-452888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497603/","id":497603,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-10/4000-497603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497658/","id":497658,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-10/4000-497658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453650/","id":453650,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-2-/4000-453650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453114/","id":453114,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-8-volume-8/4000-453114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452061/","id":452061,"name":"Welcome to the Guardians of the Galaxy","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-free-comic-book-day-1-welc/4000-452061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446992/","id":446992,"name":"Loki and Lorelei, Sitting in a Tree...","site_detail_url":"https://comicvine.gamespot.com/loki-agent-of-asgard-2-loki-and-lorelei-sitting-in/4000-446992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453494/","id":453494,"name":"","site_detail_url":"https://comicvine.gamespot.com/ordinary-1/4000-453494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451700/","id":451700,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-31/4000-451700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452668/","id":452668,"name":"Future Clash!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-16-future-clash/4000-452668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450318/","id":450318,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-60/4000-450318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451698/","id":451698,"name":"Doom of the Hobgoblin!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-15-doom-of-the-hobgobli/4000-451698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448003/","id":448003,"name":"Blood Ties; Chasing Ghosts","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-annual-2-blood-ties-chasing-gh/4000-448003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448966/","id":448966,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-a-romero-empire-of-the-dead-3/4000-448966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470723/","id":470723,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-superman-7/4000-470723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444530/","id":444530,"name":".NOW The Iron Nail, Prologue: A Decision","site_detail_url":"https://comicvine.gamespot.com/captain-america-16-now-the-iron-nail-prologue-a-de/4000-444530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444437/","id":444437,"name":"Rogue Logan Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-1-rogue-logan-part-1-of-4/4000-444437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445184/","id":445184,"name":".NOW Goblin Nation Part One","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-27-now-goblin-nation-part-one/4000-445184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445183/","id":445183,"name":"Motion","site_detail_url":"https://comicvine.gamespot.com/she-hulk-1-motion/4000-445183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445817/","id":445817,"name":"The Kids Are All Fight Part 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-1-the-kids-are-all-fight-part-1/4000-445817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446477/","id":446477,"name":"Iron Spider","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-24-iron-spider/4000-446477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446483/","id":446483,"name":"Fun and Games","site_detail_url":"https://comicvine.gamespot.com/hawkeye-15-fun-and-games/4000-446483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446480/","id":446480,"name":"The Fall of the Fantastic Four Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1-the-fall-of-the-fantastic-four-pa/4000-446480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449685/","id":449685,"name":"Chapter 13: Give Love a Hand","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-gauntlet-13-chapter-13-give-love-a-ha/4000-449685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449746/","id":449746,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-business-ogn-1-ogn/4000-449746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449906/","id":449906,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-96/4000-449906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450289/","id":450289,"name":"Volume 18","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-fall-from-grace-1-volume/4000-450289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450288/","id":450288,"name":"Loose Nuke","site_detail_url":"https://comicvine.gamespot.com/captain-america-loose-nuke-1-loose-nuke/4000-450288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450529/","id":450529,"name":"The Reign of the Black Flame Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-118-the-reign-of-the-black-f/4000-450529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450530/","id":450530,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-lake-of-fire-1-volume-8/4000-450530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450575/","id":450575,"name":"Happy Horror Days","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-7-happy-horror-days/4000-450575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450546/","id":450546,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-omnibus-1-volume-one/4000-450546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450622/","id":450622,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-piggy-s-tale-1/4000-450622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450630/","id":450630,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/a-bintel-brief-love-and-longing-in-old-new-york-1-/4000-450630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450780/","id":450780,"name":"I Am Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-7-i-am-daredevil/4000-450780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451103/","id":451103,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-now-6/4000-451103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451297/","id":451297,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/the-shadow-the-light-of-the-world-1-volume-three/4000-451297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451340/","id":451340,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson-5-volume-5/4000-451340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451120/","id":451120,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-33/4000-451120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451935/","id":451935,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-velvet-1/4000-451935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451787/","id":451787,"name":"Mass Hysteria! Part 3: The Gang's All Here","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-15-mass-hysteria-part-3-the-gangs-all/4000-451787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451070/","id":451070,"name":"A Payment of Flesh","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-3-a-payment-of-flesh/4000-451070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450111/","id":450111,"name":"In the Beginning","site_detail_url":"https://comicvine.gamespot.com/lola-xoxo-1-in-the-beginning/4000-450111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450291/","id":450291,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-hulk-agents-of-s-m-a-s-h-1-tpb/4000-450291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450576/","id":450576,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/godzilla-history-s-greatest-monster-1-tpb/4000-450576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451153/","id":451153,"name":"Epistolary","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-helsing-1-epistolary/4000-451153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450607/","id":450607,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-age-of-darkne/4000-450607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450107/","id":450107,"name":"","site_detail_url":"https://comicvine.gamespot.com/shutter-1/4000-450107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497657/","id":497657,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-9/4000-497657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497741/","id":497741,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-9/4000-497741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497731/","id":497731,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-11/4000-497731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444517/","id":444517,"name":"Of Men and Mice, Part Three: Blue By You","site_detail_url":"https://comicvine.gamespot.com/fairest-23-of-men-and-mice-part-three-blue-by-you/4000-444517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449572/","id":449572,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-get-the-lobster-3/4000-449572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450631/","id":450631,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/bohemians-1-gn/4000-450631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449510/","id":449510,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-30/4000-449510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450317/","id":450317,"name":"Wrath of the Spider!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-14-wrath-of-the-spider/4000-450317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447744/","id":447744,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-55/4000-447744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447839/","id":447839,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-59/4000-447839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449291/","id":449291,"name":"The Astonishing Spider-Man Wants You to Join the Spider-Army!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13-the-astonishing-spid/4000-449291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445812/","id":445812,"name":"I Am Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil-36-i-am-daredevil/4000-445812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445815/","id":445815,"name":"Two Cities; Orbital; By Moonlight","site_detail_url":"https://comicvine.gamespot.com/iron-man-annual-1-two-cities-orbital-by-moonlight/4000-445815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446481/","id":446481,"name":"","site_detail_url":"https://comicvine.gamespot.com/george-a-romero-empire-of-the-dead-2/4000-446481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449607/","id":449607,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-8/4000-449607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450099/","id":450099,"name":"Return To New York Book Two","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-6-retu/4000-450099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446486/","id":446486,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-7/4000-446486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445178/","id":445178,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-6/4000-445178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435583/","id":435583,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanity-1/4000-435583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435590/","id":435590,"name":"Darkest Hours, Part 2 of 4: Complications","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-23-darkest-hours-part-2-of-4-c/4000-435590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437495/","id":437495,"name":"Darkest Hours, Part 3 of 4: Dark Embrace","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-24-darkest-hours-part-3-of-4-d/4000-437495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437488/","id":437488,"name":"Deadpool vs. S.H.I.E.L.D. Part 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-21-deadpool-vs-s-h-i-e-l-d-part-1/4000-437488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438378/","id":438378,"name":".NOW Rogue Planet Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-24-now-rogue-planet-part-1/4000-438378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441423/","id":441423,"name":"The Amazing Spider-Man + Psyclocke; Captain America + Cyclops: Part 4","site_detail_url":"https://comicvine.gamespot.com/a-x-16-the-amazing-spider-man-psyclocke-captain-am/4000-441423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442175/","id":442175,"name":"Darkest Hours, Part 4 of 4: Before The Dawn","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-25-darkest-hours-part-4-of-4-b/4000-442175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441376/","id":441376,"name":"Forever Evil: Blight - Seize the Fire","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-15-forever-evil-blight-seize-/4000-441376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441412/","id":441412,"name":"Deadpool vs. S.H.I.E.L.D. Part 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-22-deadpool-vs-s-h-i-e-l-d-part-2/4000-441412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442913/","id":442913,"name":"Carve A Hole ... Climb Inside","site_detail_url":"https://comicvine.gamespot.com/avengers-25-carve-a-hole-climb-inside/4000-442913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442920/","id":442920,"name":null,"site_detail_url":"https://comicvine.gamespot.com/george-a-romero-empire-of-the-dead-1/4000-442920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442923/","id":442923,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-20-inh/4000-442923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441404/","id":441404,"name":"Not Brand X, Part 1: We Specialize In Helping People","site_detail_url":"https://comicvine.gamespot.com/all-new-x-factor-1-not-brand-x-part-1-we-specializ/4000-441404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443987/","id":443987,"name":"The Goblin War","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-26-the-goblin-war/4000-443987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442177/","id":442177,"name":"NOW No Mercy Part 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-20-now-no-mercy-part-1/4000-442177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445208/","id":445208,"name":"City Fall, Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-city-fall-part-2-1-ci/4000-445208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445795/","id":445795,"name":"Chapter I: Old Wounds","site_detail_url":"https://comicvine.gamespot.com/the-white-suits-1-chapter-i-old-wounds/4000-445795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445841/","id":445841,"name":"Conspiracy Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/the-x-files-teenage-mutant-ninja-turtles-conspirac/4000-445841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446504/","id":446504,"name":"Mass Hysteria! Part 1: Something Old, Something New!","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-13-mass-hysteria-part-1-something-old/4000-446504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447024/","id":447024,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-1-volume-one/4000-447024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447090/","id":447090,"name":"Chapter 9: Gangs of New York","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-gauntlet-9-chapter-9-gangs-of-new-yor/4000-447090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447004/","id":447004,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-shadow-green-hornet-dark-nights-1-tpb/4000-447004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447235/","id":447235,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson-4-volume-4/4000-447235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447494/","id":447494,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/justice-league-trinity-war-1-hc-tpb/4000-447494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447529/","id":447529,"name":"Operation: Lady Doomsday; ...Hot Potato!","site_detail_url":"https://comicvine.gamespot.com/hundred-penny-press-g-i-joe-a-real-american-hero-1/4000-447529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447798/","id":447798,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-digest-1-volume-/4000-447798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447978/","id":447978,"name":"Chapter II: Long Knives Drawn","site_detail_url":"https://comicvine.gamespot.com/the-white-suits-2-chapter-ii-long-knives-drawn/4000-447978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448042/","id":448042,"name":"Nowhere Fast","site_detail_url":"https://comicvine.gamespot.com/rocket-girl-4-nowhere-fast/4000-448042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448109/","id":448109,"name":"Chapter 11: Domestic Dispute","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-gauntlet-11-chapter-11-domestic-dispu/4000-448109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448015/","id":448015,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-18/4000-448015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448031/","id":448031,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-utrom-empire-3/4000-448031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448994/","id":448994,"name":"Mass Hysteria! part 2: Down Is Up","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-14-mass-hysteria-part-2-down-is-up/4000-448994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448995/","id":448995,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-total-containment-1-hc/4000-448995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449068/","id":449068,"name":"Chapter 12: Deadpool, Disarmed","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-gauntlet-12-chapter-12-deadpool-disar/4000-449068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448021/","id":448021,"name":"Siren's Song","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-14-siren-s-song/4000-448021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445167/","id":445167,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/power-girl-power-trip-1-tpb/4000-445167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450526/","id":450526,"name":"Cold Black Sea","site_detail_url":"https://comicvine.gamespot.com/largo-winch-13-cold-black-sea/4000-450526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447985/","id":447985,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/trinity-of-sin-pandora-the-curse-1-volume-1/4000-447985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442167/","id":442167,"name":"The Fantastic Four Are Doomed! Part Four: Four To the Fourth Power!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-16-the-fantastic-four-are-doomed-pa/4000-442167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445191/","id":445191,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-10/4000-445191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445831/","id":445831,"name":"Shadows and Light","site_detail_url":"https://comicvine.gamespot.com/the-shadow-master-series-1-shadows-and-light/4000-445831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448054/","id":448054,"name":"Nightmare Scenario","site_detail_url":"https://comicvine.gamespot.com/suicide-risk-2-nightmare-scenario/4000-448054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447239/","id":447239,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-falcon-1-tpb/4000-447239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444757/","id":444757,"name":"Book Eight","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-8-book-eight/4000-444757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446095/","id":446095,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-by-kieron-gillen-1-volume-1/4000-446095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443973/","id":443973,"name":"An Early Winter: Part Six of Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-137-an-early-winter-part-six-of-camelot/4000-443973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440801/","id":440801,"name":"Of Men and Mice, Part Two: Memories","site_detail_url":"https://comicvine.gamespot.com/fairest-22-of-men-and-mice-part-two-memories/4000-440801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445315/","id":445315,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-1-vo/4000-445315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441409/","id":441409,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-3-part-three/4000-441409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497333/","id":497333,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-man-early-warnings-1/4000-497333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497602/","id":497602,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-9/4000-497602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499944/","id":499944,"name":"","site_detail_url":"https://comicvine.gamespot.com/futures-end-das-ende-aller-zeiten-1/4000-499944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447969/","id":447969,"name":"The Reign of the Black Flame Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-117-the-reign-of-the-black-f/4000-447969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513235/","id":513235,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-4/4000-513235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443003/","id":443003,"name":"Bestiary","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-apocalypse-1-bestiary/4000-443003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538826/","id":538826,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-37/4000-538826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441403/","id":441403,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-marvel-now-point-one-1/4000-441403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446971/","id":446971,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-get-the-lobster-2/4000-446971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447541/","id":447541,"name":"Conspiracy Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/the-x-files-the-crow-conspiracy-1-conspiracy-part-/4000-447541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447537/","id":447537,"name":"Northampton Part 4","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-32-northampton-part-4/4000-447537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448998/","id":448998,"name":"1986-1989","site_detail_url":"https://comicvine.gamespot.com/popeye-the-classic-newspaper-comics-1-1986-1989/4000-448998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435585/","id":435585,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-3-part-three/4000-435585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437492/","id":437492,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-4-part-four/4000-437492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447743/","id":447743,"name":"Death Match!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12-death-match/4000-447743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449897/","id":449897,"name":"Демон. Часть 3. Контроль","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-25-diemon-chast-3-k/4000-449897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449902/","id":449902,"name":"Пределы Земли. Часть 3. Песочница; Пределы Земли. Часть 4. Глобальная угроза!","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-27-priediely-ziemli-chas/4000-449902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526854/","id":526854,"name":"Erben des Windes","site_detail_url":"https://comicvine.gamespot.com/fables-20-erben-des-windes/4000-526854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445428/","id":445428,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-58/4000-445428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446718/","id":446718,"name":"The Astonishing Spider-Man vs. The New Spider-Slayers!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11-the-astonishing-spid/4000-446718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441407/","id":441407,"name":"Raison D'etre","site_detail_url":"https://comicvine.gamespot.com/black-widow-1-raison-d-etre/4000-441407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441411/","id":441411,"name":"In the Name of the King Part Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-dark-nights-8-in-the-name-of-the-king-pa/4000-441411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441418/","id":441418,"name":"The Serpent of Doom","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-4-the-serpent-of/4000-441418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442168/","id":442168,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanity-the-superior-spider-man-1/4000-442168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442164/","id":442164,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-35/4000-442164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442928/","id":442928,"name":"Gang War","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-9-gang-war/4000-442928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442873/","id":442873,"name":"Demons","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-27-demons/4000-442873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442915/","id":442915,"name":"Shanghaied","site_detail_url":"https://comicvine.gamespot.com/black-widow-2-shanghaied/4000-442915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447005/","id":447005,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-now-5/4000-447005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447067/","id":447067,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/black-coat-the-blackest-dye-1-gn/4000-447067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447191/","id":447191,"name":"","site_detail_url":"https://comicvine.gamespot.com/boots-heels-claws-1/4000-447191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447198/","id":447198,"name":"","site_detail_url":"https://comicvine.gamespot.com/lady-frostblood-1/4000-447198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447538/","id":447538,"name":"Return to New York, Book One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-5-retu/4000-447538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447718/","id":447718,"name":"Shadows and Light Part 3: Burning Apostles","site_detail_url":"https://comicvine.gamespot.com/the-shadow-masters-series-3-shadows-and-light-part/4000-447718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447562/","id":447562,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-age-of-darkne/4000-447562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447795/","id":447795,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-dark-nights-1-tpb/4000-447795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447241/","id":447241,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/nova-rookie-season-1-volume-2/4000-447241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448014/","id":448014,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-23/4000-448014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448252/","id":448252,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-no-single-hero-1-volume-1/4000-448252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448927/","id":448927,"name":"Exposure","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-7-exposure/4000-448927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449014/","id":449014,"name":"","site_detail_url":"https://comicvine.gamespot.com/real-heroes-1/4000-449014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447793/","id":447793,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/avengers-absolute-vision-2-book-2/4000-447793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449613/","id":449613,"name":"Volume 1: Star Billing","site_detail_url":"https://comicvine.gamespot.com/rocky-bullwinkle-classics-1-volume-1-star-billing/4000-449613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441410/","id":441410,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-3-part-three/4000-441410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443978/","id":443978,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-movie-adaptation-1/4000-443978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910757/","id":910757,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mad-spoofs-the-90s-1/4000-910757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435573/","id":435573,"name":"Frost Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-700-1-frost-part-one/4000-435573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435593/","id":435593,"name":"*Young Avengers* Part Two","site_detail_url":"https://comicvine.gamespot.com/young-avengers-13-young-avengers-part-two/4000-435593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435548/","id":435548,"name":"Forever Evil: Blight - Sins!","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-14-forever-evil-blight-sins/4000-435548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436207/","id":436207,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thunderbolts-19/4000-436207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437416/","id":437416,"name":"Hot in the City","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-1-hot-in-the-city/4000-437416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437497/","id":437497,"name":"The Accursed Part Four of Five: I, Thor... Condemn Thee To Die","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder-16-the-accursed-part-four-of-f/4000-437497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440250/","id":440250,"name":"Inhumanity","site_detail_url":"https://comicvine.gamespot.com/new-avengers-13-inhumanity/4000-440250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444514/","id":444514,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deathstroke-lobo-hunt-1-volume-2/4000-444514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445202/","id":445202,"name":"Threat Matrix","site_detail_url":"https://comicvine.gamespot.com/gi-joe-threat-matrix-1-threat-matrix/4000-445202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445385/","id":445385,"name":"Is It Safe?","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-94-is-it-safe/4000-445385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446628/","id":446628,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/superior-foes-of-spider-man-getting-the-band-back-/4000-446628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440239/","id":440239,"name":"A Day at the Lake: Part Five of Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-136-a-day-at-the-lake-part-five-of-camelot/4000-440239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435567/","id":435567,"name":"Of Men and Mice, Part One: it Happened One Night","site_detail_url":"https://comicvine.gamespot.com/fairest-21-of-men-and-mice-part-one-it-happened-on/4000-435567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497655/","id":497655,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-7/4000-497655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498280/","id":498280,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-5/4000-498280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498678/","id":498678,"name":"Spiderman 24: Ultimatum","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-52-spiderman-24-ultimatum/4000-498678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498894/","id":498894,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-37/4000-498894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501509/","id":501509,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-huntress-and-power-girl-2/4000-501509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574800/","id":574800,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/vigilante-project-1-tpb/4000-574800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445393/","id":445393,"name":"At the Mercy of Carnage!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-10-at-the-mercy-of-carn/4000-445393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446184/","id":446184,"name":"Демон. Часть 2. Уязвимость; Мстители Ежегодник","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-24-diemon-chast-2-u/4000-446184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446186/","id":446186,"name":"Пределы Земли. Часть 1. Мой мир в огне; Пределы Земли. Часть 2. Самые сильные герои","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-26-priediely-ziemli-chas/4000-446186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444428/","id":444428,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-9/4000-444428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444102/","id":444102,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-57/4000-444102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435575/","id":435575,"name":"It's the Most Loneliest Time of the Year!","site_detail_url":"https://comicvine.gamespot.com/avengers-annual-2013-1-it-s-the-most-loneliest-tim/4000-435575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435591/","id":435591,"name":"The \"Superior\" Six: Sinister Once More?","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-7-the-superior-six-sin/4000-435591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436158/","id":436158,"name":"Control Issues","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-18-control-issues/4000-436158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436190/","id":436190,"name":"Frost Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-700-2-frost-part-two/4000-436190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436201/","id":436201,"name":"Ghost of A Chance","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-3-ghost-of-a-chance/4000-436201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436204/","id":436204,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-4/4000-436204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436154/","id":436154,"name":"Forever Evil: Blight","site_detail_url":"https://comicvine.gamespot.com/constantine-9-forever-evil-blight/4000-436154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437487/","id":437487,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-34/4000-437487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437496/","id":437496,"name":"Failure To Reform!","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-8-failure-to-reform/4000-437496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437616/","id":437616,"name":"Forever Evil: Blight - Precious Little","site_detail_url":"https://comicvine.gamespot.com/trinity-of-sin-pandora-6-forever-evil-blight-preci/4000-437616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440252/","id":440252,"name":"Beetlemania","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-7-beetlemania/4000-440252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440199/","id":440199,"name":"Forever Evil: Blight - The Haunted Sea","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-26-forever-evil-blight-the-hau/4000-440199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444509/","id":444509,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-strain-the-fall-1-volume-3/4000-444509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444516/","id":444516,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/dmz-deluxe-edition-1-book-one/4000-444516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444759/","id":444759,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-1-volume-1/4000-444759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444550/","id":444550,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-17/4000-444550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444542/","id":444542,"name":"","site_detail_url":"https://comicvine.gamespot.com/codename-action-5/4000-444542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445811/","id":445811,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-dawn-s-early-light/4000-445811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446051/","id":446051,"name":"Dames & Dollars","site_detail_url":"https://comicvine.gamespot.com/the-lawless-ones-1-dames-dollars/4000-446051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446445/","id":446445,"name":"Women in Trouble","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-6-women-in-trouble/4000-446445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446722/","id":446722,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-marvel-now-teen-heroes-1/4000-446722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446626/","id":446626,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-iliad-1-volume-2/4000-446626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445163/","id":445163,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/constantine-the-spark-and-the-flame-1-volume-1/4000-445163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445306/","id":445306,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-no-tomorrow-1-tpb/4000-445306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436197/","id":436197,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-2-part-two/4000-436197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432325/","id":432325,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-17/4000-432325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432452/","id":432452,"name":"Guess Who's Coming to Dinner?","site_detail_url":"https://comicvine.gamespot.com/hinterkind-2-guess-who-s-coming-to-dinner/4000-432452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432294/","id":432294,"name":"Game Over","site_detail_url":"https://comicvine.gamespot.com/batman-superman-5-game-over/4000-432294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433177/","id":433177,"name":"Lethal Ladies","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-21-lethal-ladies/4000-433177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433171/","id":433171,"name":"The Good, the Bad & the Ugly: Part Five","site_detail_url":"https://comicvine.gamespot.com/deadpool-19-the-good-the-bad-the-ugly-part-five/4000-433171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433176/","id":433176,"name":"The Foes Are Back!","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-5-the-foes-are-bac/4000-433176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433851/","id":433851,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thunderbolts-18/4000-433851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433841/","id":433841,"name":"Initiate: Chapter 6","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-6-initiate-chapter-6/4000-433841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435066/","id":435066,"name":"Darkest Hours, Part 1 of 4: Face To Face","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-22-darkest-hours-part-1-of-4-f/4000-435066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435719/","id":435719,"name":"Dark Orko","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-3-dark-orko/4000-435719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433848/","id":433848,"name":"Mission 011: Brooklyn, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-11-mission-011-brooklyn-pt-2/4000-433848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436495/","id":436495,"name":"","site_detail_url":"https://comicvine.gamespot.com/vertigo-essentials-fables-1/4000-436495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435057/","id":435057,"name":"Final Exam","site_detail_url":"https://comicvine.gamespot.com/infinity-the-hunt-4-final-exam/4000-435057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442143/","id":442143,"name":"The Reign of the Black Flame Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-115-the-reign-of-the-black-f/4000-442143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443005/","id":443005,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/planetary-omnibus-1-hc/4000-443005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443309/","id":443309,"name":"Strange Days","site_detail_url":"https://comicvine.gamespot.com/owlgirls-1-strange-days/4000-443309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444000/","id":444000,"name":"Happy Horror Days! Part 4: The Closing of the Year; Mass Hysteria! Prelude #2: Field Trip","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-12-happy-horror-days-part-4-the-closi/4000-444000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443383/","id":443383,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-1-/4000-443383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442230/","id":442230,"name":"","site_detail_url":"https://comicvine.gamespot.com/clive-barker-s-hellraiser-the-dark-watch-12/4000-442230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433832/","id":433832,"name":"Assemble: Part Four of Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-135-assemble-part-four-of-camelot/4000-433832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435576/","id":435576,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-2-part-two/4000-435576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497601/","id":497601,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-8/4000-497601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497654/","id":497654,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-6/4000-497654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498279/","id":498279,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-4/4000-498279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498676/","id":498676,"name":"Spiderman 23: La Guerra De Los Simbiontes","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-50-spiderman-23-la-guerra-d/4000-498676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513233/","id":513233,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-2/4000-513233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441396/","id":441396,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-by-brian-k-vaughan-1-volume-one/4000-441396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538824/","id":538824,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-35/4000-538824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539347/","id":539347,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinito-3/4000-539347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558851/","id":558851,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-17/4000-558851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445854/","id":445854,"name":"Armageddon: Part One; Sex And Death","site_detail_url":"https://comicvine.gamespot.com/god-is-dead-7-armageddon-part-one-sex-and-death/4000-445854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432332/","id":432332,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-1-part-one/4000-432332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441598/","id":441598,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-27/4000-441598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443332/","id":443332,"name":"Mind War!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-8-mind-war/4000-443332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440049/","id":440049,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-56/4000-440049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442602/","id":442602,"name":"Демон. Часть 1. Зверь внутри; Новые Мстители Ежегодник","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-23-diemon-chast-1-z/4000-442602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442656/","id":442656,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-23/4000-442656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442662/","id":442662,"name":"Мститель Человек-Паук. Часть 3; Мститель Человек-Паук. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-25-mstitiel-chieloviek-p/4000-442662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442309/","id":442309,"name":"Cardiac Arrest!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-7-cardiac-arrest/4000-442309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436006/","id":436006,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-53/4000-436006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440046/","id":440046,"name":"On Trial!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-6-on-trial/4000-440046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432334/","id":432334,"name":"Hulk Busted","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-hulk-agents-of-s-m-a-s-h-2-hulk-bu/4000-432334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433122/","id":433122,"name":"Your Own Worst Enemy","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-17-your-own-worst-enemy/4000-433122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433849/","id":433849,"name":"Hostage Crisis","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-annual-1-hostage-crisis/4000-433849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440271/","id":440271,"name":"Double Reagent","site_detail_url":"https://comicvine.gamespot.com/rocket-girl-3-double-reagent/4000-440271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441425/","id":441425,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-8/4000-441425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442185/","id":442185,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-8/4000-442185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442187/","id":442187,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-now-4/4000-442187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442432/","id":442432,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-necessary-evil-1-volume-4/4000-442432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442950/","id":442950,"name":"Conspiracy Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/the-x-files-ghostbusters-conspiracy-1-conspiracy-p/4000-442950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443311/","id":443311,"name":"Linder","site_detail_url":"https://comicvine.gamespot.com/prisoner-of-the-mind-1-linder/4000-443311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443327/","id":443327,"name":"","site_detail_url":"https://comicvine.gamespot.com/tart-1/4000-443327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443998/","id":443998,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-7/4000-443998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442148/","id":442148,"name":"","site_detail_url":"https://comicvine.gamespot.com/skyman-1/4000-442148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446760/","id":446760,"name":"","site_detail_url":"https://comicvine.gamespot.com/12-reasons-to-die-6/4000-446760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435051/","id":435051,"name":"Madcapped","site_detail_url":"https://comicvine.gamespot.com/deadpool-annual-1-madcapped/4000-435051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433180/","id":433180,"name":"Untitled; The Sorrow Beneath the Sport!; Untitled; Options!; Dreams Brighten","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-1-untitled-the-sorrow-beneath-the-sport/4000-433180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433170/","id":433170,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-1-part-one/4000-433170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435058/","id":435058,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-5/4000-435058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440802/","id":440802,"name":"","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-the-price-of-freedom-3/4000-440802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410133/","id":410133,"name":"Transformation and Triumph","site_detail_url":"https://comicvine.gamespot.com/captain-america-transformation-and-triumph-1-trans/4000-410133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427694/","id":427694,"name":"Heroes Fight Liars!","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-4-heroes-fight-lia/4000-427694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427692/","id":427692,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-2/4000-427692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427696/","id":427696,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thunderbolts-16/4000-427696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427683/","id":427683,"name":"The Arms of The Octopus, Part 1 of 3: Elegy in the Classroom","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-special-1-the-arms-of-the-octopus-pa/4000-427683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427689/","id":427689,"name":"The Secret Origin of Tony Stark: The Best Offense, Part Four","site_detail_url":"https://comicvine.gamespot.com/iron-man-16-the-secret-origin-of-tony-stark-the-be/4000-427689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428265/","id":428265,"name":"Olympus, Part 3","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-18-olympus-part-3/4000-428265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428294/","id":428294,"name":"Loose Nuke Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-12-loose-nuke-part-2/4000-428294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428866/","id":428866,"name":"1.21 Giga-Whats?!","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-19-1-21-giga-whats/4000-428866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428865/","id":428865,"name":"Builders","site_detail_url":"https://comicvine.gamespot.com/new-avengers-11-builders/4000-428865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430764/","id":430764,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thunderbolts-17/4000-430764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430769/","id":430769,"name":"Stage Nervous Breakdown","site_detail_url":"https://comicvine.gamespot.com/young-avengers-11-stage-nervous-breakdown/4000-430769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431436/","id":431436,"name":"Initiate: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-5-initiate-chapter-5/4000-431436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431534/","id":431534,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-4/4000-431534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431444/","id":431444,"name":"Spidey Still Standing","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-20-spidey-still-standing/4000-431444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432413/","id":432413,"name":"Madison Square Tragedy: The Murder of Stanford White","site_detail_url":"https://comicvine.gamespot.com/a-treasury-of-xxth-century-murder-6-madison-square/4000-432413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427800/","id":427800,"name":"Once Upon a Time...Chapter One","site_detail_url":"https://comicvine.gamespot.com/hinterkind-1-once-upon-a-time-chapter-one/4000-427800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435570/","id":435570,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-wanted-1-volume-2/4000-435570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435863/","id":435863,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus-2-volume-2/4000-435863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430714/","id":430714,"name":"Forever Evil: Blight - Tiny Evils","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-24-forever-evil-blight-tiny-ev/4000-430714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436176/","id":436176,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-4/4000-436176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436501/","id":436501,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-the-final-threat-1-volume/4000-436501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427867/","id":427867,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/avengers-endless-wartime-1-ogn/4000-427867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440256/","id":440256,"name":"The Way Out","site_detail_url":"https://comicvine.gamespot.com/the-twilight-zone-1-the-way-out/4000-440256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437473/","id":437473,"name":"Volume 19","site_detail_url":"https://comicvine.gamespot.com/fales-snow-white-1-volume-19/4000-437473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428858/","id":428858,"name":"The Fantastic Four Are Doomed! Part One: The Scorched Earth","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-13-the-fantastic-four-are-doomed-pa/4000-428858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438112/","id":438112,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-good-the-bad-and-the-ugly-1-volume-3/4000-438112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436183/","id":436183,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/action-comics-at-the-end-of-days-1-volume-3/4000-436183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440817/","id":440817,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-infinity-1-volume-2/4000-440817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497729/","id":497729,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-9/4000-497729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498278/","id":498278,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-3/4000-498278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498674/","id":498674,"name":"Spiderman 22: Asombrosos Amigos","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-48-spiderman-22-asombrosos-/4000-498674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430765/","id":430765,"name":"Spider-Man No More, Part 6; Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-28-spider-man-no-more-p/4000-430765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-439290/","id":439290,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-kills-the-marvel-universe-1/4000-439290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513232/","id":513232,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-1/4000-513232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438116/","id":438116,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-end-of-x-factor-1-volume-21/4000-438116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430749/","id":430749,"name":"The Unwritten Fables, Part 5: The Sacrifice in Which All is Lost","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-54-the-unwritten-fables-part-5-the-s/4000-430749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428862/","id":428862,"name":"The Arms of The Octopus, Part 2 of 3: For a Friend Whose Work Has Come to Triumph","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-special-1-the-arms-of-the-octo/4000-428862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431445/","id":431445,"name":"The Arms of The Octopus, Part 3 of 3: With Mercy for the Greedy","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-special-1-the-arms-of-/4000-431445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428859/","id":428859,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-7/4000-428859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581191/","id":581191,"name":"The Story Arcs","site_detail_url":"https://comicvine.gamespot.com/everyone-likes-pizza-3-the-story-arcs/4000-581191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428828/","id":428828,"name":"A Guilded Rage","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-24-a-guilded-rage/4000-428828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442204/","id":442204,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-annual-deluxe-edition/4000-442204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437537/","id":437537,"name":"Northampton Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-29-northampton-part-1/4000-437537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437521/","id":437521,"name":"Happy Horror Days! Part 3: Sinterklaas; Mass Hysteria! Prelude #1: The Old Days","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-11-happy-horror-days-part-3-sinterkla/4000-437521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436005/","id":436005,"name":"Living Nightmare!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-5-living-nightmare/4000-436005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497683/","id":497683,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/was-ware-wenn-avx-1-sc/4000-497683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436476/","id":436476,"name":"Мститель Человек-Паук. Часть 1; Мститель Человек-Паук. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-24-mstitiel-chieloviek-p/4000-436476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433058/","id":433058,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-52/4000-433058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434171/","id":434171,"name":"Deadshot!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-4-deadshot/4000-434171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427685/","id":427685,"name":"A Man Named Buggit, Part Two: What A Night","site_detail_url":"https://comicvine.gamespot.com/daredevil-dark-nights-5-a-man-named-buggit-part-tw/4000-427685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428254/","id":428254,"name":"Game Over","site_detail_url":"https://comicvine.gamespot.com/constantine-7-game-over/4000-428254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427691/","id":427691,"name":"The Avengers Protocol; The Real Heroes","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-1-the-avengers-protocol-the-real/4000-427691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428297/","id":428297,"name":"Thane","site_detail_url":"https://comicvine.gamespot.com/infinity-4-thane/4000-428297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428860/","id":428860,"name":"The U in Funeral","site_detail_url":"https://comicvine.gamespot.com/hawkeye-13-the-u-in-funeral/4000-428860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430762/","id":430762,"name":"","site_detail_url":"https://comicvine.gamespot.com/superior-carnage-4/4000-430762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430763/","id":430763,"name":"The \"Superior\" Six: Part 1","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-5-the-superior-six-par/4000-430763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430752/","id":430752,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-32/4000-430752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430758/","id":430758,"name":"Now What?!; Marvelpocalypse Now!; The Puppet's Master!; X The Academy or School of Hard X; One for the Team; Cap-Fished; From Asgard with Love; Ladies Who Brunch; Who Watches The Watcher?; Intervention; The Ego-Stroking End!","site_detail_url":"https://comicvine.gamespot.com/marvel-now-what-1-now-what-marvelpocalypse-now-the/4000-430758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428260/","id":428260,"name":"Burning Questions","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-16-burning-questions/4000-428260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431442/","id":431442,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-trial-of-the-punisher-2/4000-431442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435603/","id":435603,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-now-3/4000-435603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435865/","id":435865,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson-3-volume-3/4000-435865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435864/","id":435864,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/nova-classic-2-volume-2/4000-435864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436457/","id":436457,"name":"","site_detail_url":"https://comicvine.gamespot.com/lower-east-side-story-1/4000-436457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436499/","id":436499,"name":"Help Wanted","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-6-help-wanted/4000-436499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436500/","id":436500,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-2-v/4000-436500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436213/","id":436213,"name":"","site_detail_url":"https://comicvine.gamespot.com/doc-savage-1/4000-436213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437517/","id":437517,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-warriors-jailbreak-1-tpb/4000-437517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438591/","id":438591,"name":"","site_detail_url":"https://comicvine.gamespot.com/trench-coat-samurai-1/4000-438591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440084/","id":440084,"name":"System Override Part 2 of 8: Permanent Fatal Errors","site_detail_url":"https://comicvine.gamespot.com/justice-league-beyond-2-0-10-system-override-part-/4000-440084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440242/","id":440242,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/superboy-lost-1-volume-3/4000-440242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435602/","id":435602,"name":"","site_detail_url":"https://comicvine.gamespot.com/noir-2/4000-435602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435597/","id":435597,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-7/4000-435597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441624/","id":441624,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-presents-real-science-adventures-2-vol/4000-441624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437512/","id":437512,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-16/4000-437512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442222/","id":442222,"name":"A Distant Shore","site_detail_url":"https://comicvine.gamespot.com/rover-red-charlie-2-a-distant-shore/4000-442222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444267/","id":444267,"name":"","site_detail_url":"https://comicvine.gamespot.com/gold-digger-207/4000-444267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438128/","id":438128,"name":"","site_detail_url":"https://comicvine.gamespot.com/12-reasons-to-die-5/4000-438128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448216/","id":448216,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-complete-collection-1-v/4000-448216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440815/","id":440815,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-human-after-all-1-volume-1/4000-440815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428863/","id":428863,"name":"Venomous","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-19-venomous/4000-428863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427846/","id":427846,"name":"Creature Feature; Ghost to Ghost TV","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-38-creature-feature-ghost/4000-427846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909334/","id":909334,"name":"BioFlesh","site_detail_url":"https://comicvine.gamespot.com/foreskin-man-5-bioflesh/4000-909334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424539/","id":424539,"name":"Let's Do the Time Warp Again","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-17-let-s-do-the-time-warp-agai/4000-424539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424538/","id":424538,"name":"A New Sheriff In Town","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-3-a-new-sheriff-in/4000-424538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425027/","id":425027,"name":"","site_detail_url":"https://comicvine.gamespot.com/fearless-defenders-9/4000-425027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425032/","id":425032,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-1/4000-425032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425024/","id":425024,"name":"Loose Nuke Part 1; A Fire in the Rain","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-loose-nuke-part-1-a-fire-in-the/4000-425024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424992/","id":424992,"name":"Freezing to Death","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-7-2-freezing-to-death/4000-424992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425940/","id":425940,"name":"Smack to the Future","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-18-smack-to-the-future/4000-425940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425942/","id":425942,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thunderbolts-15/4000-425942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425893/","id":425893,"name":"The Demon's Tower","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-23-3-the-demon-s-tower/4000-425893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425933/","id":425933,"name":"Kingdoms Fall","site_detail_url":"https://comicvine.gamespot.com/infinity-3-kingdoms-fall/4000-425933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425937/","id":425937,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-8/4000-425937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426887/","id":426887,"name":"Mother's Day","site_detail_url":"https://comicvine.gamespot.com/young-avengers-10-mother-s-day/4000-426887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426870/","id":426870,"name":"Wonder Man + The Beast: People Change; Captain America + Jubilee","site_detail_url":"https://comicvine.gamespot.com/a-x-12-wonder-man-the-beast-people-change-captain-/4000-426870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426874/","id":426874,"name":"Mind Mischief","site_detail_url":"https://comicvine.gamespot.com/ff-12-mind-mischief/4000-426874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432349/","id":432349,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/the-spider-the-business-man-from-hell-1-volume-two/4000-432349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432373/","id":432373,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-237/4000-432373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432499/","id":432499,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus-2-volume-2/4000-432499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433408/","id":433408,"name":"The Case of the Dumpster Babies","site_detail_url":"https://comicvine.gamespot.com/watson-and-holmes-5-the-case-of-the-dumpster-babie/4000-433408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433432/","id":433432,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hulk-by-jeph-loeb-1-vol-1/4000-433432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433835/","id":433835,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-hunt-and-be-hunted-1-volume-2/4000-433835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435084/","id":435084,"name":"Happy Horror Days! Part 2: Day of the Dead","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-10-happy-horror-days-part-2-day-of-th/4000-435084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435093/","id":435093,"name":"City Fall Part Seven","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-28-city-fall-part-sev/4000-435093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432501/","id":432501,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hawkeye-1-vol-1/4000-432501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435247/","id":435247,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/avengers-absolute-vision-1-book-1/4000-435247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435631/","id":435631,"name":"Something Happened","site_detail_url":"https://comicvine.gamespot.com/rover-red-charlie-1-something-happened/4000-435631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435778/","id":435778,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-mark-of-the-tarantula-1-tpb/4000-435778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435614/","id":435614,"name":"Shredder","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-micro-series/4000-435614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433833/","id":433833,"name":"Thirty Tales of Seven Terrible Days","site_detail_url":"https://comicvine.gamespot.com/fairest-in-all-the-land-1-thirty-tales-of-seven-te/4000-433833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433209/","id":433209,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-micro-series/4000-433209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433821/","id":433821,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-fifth-beetle-the-brian-epstein-story-1-gn/4000-433821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425924/","id":425924,"name":"Straight Through the Heart: Part Three of Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-133-straight-through-the-heart-part-three-o/4000-425924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497600/","id":497600,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-7/4000-497600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498277/","id":498277,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-2/4000-498277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425033/","id":425033,"name":"Disassembled Part 6; Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-30-disassembled-part-6-c/4000-425033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498672/","id":498672,"name":"Spiderman 21: Muerte De Un Duende","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-46-spiderman-21-muerte-de-u/4000-498672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426963/","id":426963,"name":"The Unwritten Fables, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-53-the-unwritten-fables-part-4/4000-426963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425237/","id":425237,"name":"The Curse of Ra Moon Part One: Bad Moon Rising","site_detail_url":"https://comicvine.gamespot.com/mega-man-29-the-curse-of-ra-moon-part-one-bad-moon/4000-425237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538822/","id":538822,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-33/4000-538822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539343/","id":539343,"name":"","site_detail_url":"https://comicvine.gamespot.com/hambre-1/4000-539343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433261/","id":433261,"name":"Washington","site_detail_url":"https://comicvine.gamespot.com/action-president-1-washington/4000-433261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433215/","id":433215,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/chew-the-smorgasbord-edition-1-vol-1/4000-433215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430902/","id":430902,"name":"Justice Denied","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-2-justice-d/4000-430902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433354/","id":433354,"name":"Massacre is Back!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-3-massacre-is-back/4000-433354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433970/","id":433970,"name":"Страх во плоти. Часть 6. Милость; Страх во плоти. Часть 7. День Тора","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-21-strakh-vo-ploti-/4000-433970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433971/","id":433971,"name":"Мстители: кто они?; Мстители, к бою!","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-21-mstitieli-kto-oni-mstitiel/4000-433971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431081/","id":431081,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-431081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424530/","id":424530,"name":"A Man Named Buggit, Part One: What a Day","site_detail_url":"https://comicvine.gamespot.com/daredevil-dark-nights-4-a-man-named-buggit-part-on/4000-424530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425031/","id":425031,"name":"Michael Korvac","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earth-s-mightiest-heroes-/4000-425031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425030/","id":425030,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-3/4000-425030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425932/","id":425932,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-31/4000-425932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425939/","id":425939,"name":"","site_detail_url":"https://comicvine.gamespot.com/superior-carnage-3/4000-425939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426877/","id":426877,"name":"The Heist","site_detail_url":"https://comicvine.gamespot.com/infinity-heist-1-the-heist/4000-426877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426882/","id":426882,"name":"Infinity Part 1","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-3-infinity-part-1/4000-426882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432336/","id":432336,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-the-price-of-freedom-1-part-one/4000-432336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432346/","id":432346,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/miss-fury-anger-is-an-energy-1-volume-one/4000-432346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432426/","id":432426,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/johnny-hiro-skills-to-pay-the-bills-1-volume-2/4000-432426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432532/","id":432532,"name":"","site_detail_url":"https://comicvine.gamespot.com/american-terrorist-7/4000-432532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433124/","id":433124,"name":"Book Seven","site_detail_url":"https://comicvine.gamespot.com/the-bounce-7-book-seven/4000-433124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433188/","id":433188,"name":"","site_detail_url":"https://comicvine.gamespot.com/noir-1/4000-433188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433193/","id":433193,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-green-hornet-dark-nights-5/4000-433193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433437/","id":433437,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-york-park-1/4000-433437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433198/","id":433198,"name":"Threat Matrix Conclusion","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-10-threat-matrix-conclusion/4000-433198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433768/","id":433768,"name":"The Virus Infection","site_detail_url":"https://comicvine.gamespot.com/biowars-1-the-virus-infection/4000-433768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433817/","id":433817,"name":"Psy vs. Psy: Conslusion","site_detail_url":"https://comicvine.gamespot.com/brain-boy-3-psy-vs-psy-conslusion/4000-433817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433863/","id":433863,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-19/4000-433863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433988/","id":433988,"name":"","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-presents-real-science-adventures-12/4000-433988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434071/","id":434071,"name":"Volume 20","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-epic-collection-cosmic-adventur/4000-434071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435045/","id":435045,"name":"H'el On Earth","site_detail_url":"https://comicvine.gamespot.com/superman-hel-on-earth-1-hel-on-earth/4000-435045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435094/","id":435094,"name":"Vol. 7","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-classics-7-vol-7/4000-435094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435219/","id":435219,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-big-time-the-complete-collectio/4000-435219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435020/","id":435020,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-midnight-5/4000-435020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436091/","id":436091,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/biowars-2-revelations/4000-436091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433049/","id":433049,"name":"","site_detail_url":"https://comicvine.gamespot.com/12-reasons-to-die-4/4000-433049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450268/","id":450268,"name":"The Anetakis Tycoons I","site_detail_url":"https://comicvine.gamespot.com/the-tycoon-s-pregnant-mistress-1-the-anetakis-tyco/4000-450268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526853/","id":526853,"name":"Das Superteam","site_detail_url":"https://comicvine.gamespot.com/fables-19-das-superteam/4000-526853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420646/","id":420646,"name":"Targeted For Death!","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-2-targeted-for-dea/4000-420646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421690/","id":421690,"name":"","site_detail_url":"https://comicvine.gamespot.com/fearless-defenders-8/4000-421690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422683/","id":422683,"name":"Trinity War, Chapter One: The Death Card","site_detail_url":"https://comicvine.gamespot.com/justice-league-trinity-war-director-s-cut-1-trinit/4000-422683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422500/","id":422500,"name":"Chapter Seven: Away Game","site_detail_url":"https://comicvine.gamespot.com/nova-7-chapter-seven-away-game/4000-422500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422502/","id":422502,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thunderbolts-14/4000-422502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423632/","id":423632,"name":"Hello, I Must Be Going","site_detail_url":"https://comicvine.gamespot.com/teen-titans-23-hello-i-must-be-going/4000-423632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423681/","id":423681,"name":"Once Upon a Time in Midgard","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder-12-once-upon-a-time-in-midgard/4000-423681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423674/","id":423674,"name":"The Possible Boy","site_detail_url":"https://comicvine.gamespot.com/ff-11-the-possible-boy/4000-423674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423683/","id":423683,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-11/4000-423683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423677/","id":423677,"name":"The Cull Obsidian","site_detail_url":"https://comicvine.gamespot.com/new-avengers-9-the-cull-obsidian/4000-423677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423668/","id":423668,"name":"Thor + Magik; The Superior Spider-Man + Cyclops","site_detail_url":"https://comicvine.gamespot.com/a-x-11-thor-magik-the-superior-spider-man-cyclops/4000-423668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423673/","id":423673,"name":"The Good, the Bad, & the Ugly: Part One","site_detail_url":"https://comicvine.gamespot.com/deadpool-15-the-good-the-bad-the-ugly-part-one/4000-423673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423686/","id":423686,"name":"The Kiss and the Make-Up","site_detail_url":"https://comicvine.gamespot.com/young-avengers-9-the-kiss-and-the-make-up/4000-423686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424506/","id":424506,"name":"Crossing Over","site_detail_url":"https://comicvine.gamespot.com/dc-universe-vs-masters-of-the-universe-1-crossing-/4000-424506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427676/","id":427676,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/earth-2-the-tower-of-fate-1-volume-2/4000-427676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428921/","id":428921,"name":"High Tide: Part Five","site_detail_url":"https://comicvine.gamespot.com/critter-15-high-tide-part-five/4000-428921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430908/","id":430908,"name":"City Fall, Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-city-fall-part-1-1-ci/4000-430908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430726/","id":430726,"name":"Before the Living End","site_detail_url":"https://comicvine.gamespot.com/velvet-1-before-the-living-end/4000-430726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431466/","id":431466,"name":"City Fall Part Six","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-27-city-fall-part-six/4000-431466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431643/","id":431643,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hip-hop-family-tree-1-vol-1/4000-431643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430748/","id":430748,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/fables-encyclopedia-1-hc/4000-430748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431467/","id":431467,"name":"Bebop & Rocksteady","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-micro-series/4000-431467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431419/","id":431419,"name":"Brave Old World, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/captain-midnight-4-brave-old-world-part-1-of-2/4000-431419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434013/","id":434013,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-fang-1-gn/4000-434013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428881/","id":428881,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-khan-1/4000-428881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428897/","id":428897,"name":"","site_detail_url":"https://comicvine.gamespot.com/clive-barker-s-hellraiser-the-dark-watch-9/4000-428897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430912/","id":430912,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-life-in-the-mad-dog-ward-1-/4000-430912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459027/","id":459027,"name":"City Under Siege!","site_detail_url":"https://comicvine.gamespot.com/habit-heroes-and-iron-man-1-city-under-siege/4000-459027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422489/","id":422489,"name":"Bird Calls: Part Two of Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-132-bird-calls-part-two-of-camelot/4000-422489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497651/","id":497651,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-3/4000-497651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497735/","id":497735,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-3/4000-497735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497728/","id":497728,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-8/4000-497728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498275/","id":498275,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-1/4000-498275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498670/","id":498670,"name":"Spiderman 20: Caballeros","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-44-spiderman-20-caballeros/4000-498670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499582/","id":499582,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-17/4000-499582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423667/","id":423667,"name":"The Unwritten Fables, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-52-the-unwritten-fables-part-3/4000-423667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538821/","id":538821,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-32/4000-538821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539698/","id":539698,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-5/4000-539698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558848/","id":558848,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-14/4000-558848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428944/","id":428944,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/woman-rebel-the-margaret-sanger-story-1-hc/4000-428944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428585/","id":428585,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-428585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432524/","id":432524,"name":"Страх во плоти. Часть 6. Родные и обреченные; Страх во плоти. Часть 5. Если я выберусь отсюда","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-20-strakh-vo-ploti-/4000-432524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432523/","id":432523,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-20/4000-432523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425310/","id":425310,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-50/4000-425310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427242/","id":427242,"name":"The Final Battle","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-100-the-final-battle/4000-427242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420634/","id":420634,"name":"...To the Light; Prelude to Infinity","site_detail_url":"https://comicvine.gamespot.com/avengers-17-to-the-light-prelude-to-infinity/4000-420634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420648/","id":420648,"name":"The End of X-Factor, Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/x-factor-260-the-end-of-x-factor-part-4-of-6/4000-420648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421657/","id":421657,"name":"Metamorphosis in Extremis","site_detail_url":"https://comicvine.gamespot.com/constantine-6-metamorphosis-in-extremis/4000-421657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421693/","id":421693,"name":"Sibling Rivalry: Part 2","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-20-sibling-rivalry-part-2/4000-421693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421695/","id":421695,"name":"Sibling Rivalry: Part 1","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-2-sibling-rivalry-part/4000-421695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422747/","id":422747,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/avengers-the-complete-collection-by-geoff-johns-2-/4000-422747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422496/","id":422496,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-30/4000-422496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422499/","id":422499,"name":"The World Breaks Everyone Part One","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-8-the-world-breaks-ever/4000-422499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426926/","id":426926,"name":"Love Me, Love My Burger; Baby Showers and Other Bad Weather","site_detail_url":"https://comicvine.gamespot.com/life-with-archie-32-love-me-love-my-burger-baby-sh/4000-426926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427862/","id":427862,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson-2-volume-2/4000-427862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427869/","id":427869,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-hickman-omnibus-1-volume-1/4000-427869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427704/","id":427704,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-now-1/4000-427704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427909/","id":427909,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-digital-first-6/4000-427909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428426/","id":428426,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-armored-vengeance-1-tpb/4000-428426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428472/","id":428472,"name":"","site_detail_url":"https://comicvine.gamespot.com/watson-and-holmes-4/4000-428472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428841/","id":428841,"name":"Psy vs. Psy, Part Two","site_detail_url":"https://comicvine.gamespot.com/brain-boy-2-psy-vs-psy-part-two/4000-428841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428874/","id":428874,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-18/4000-428874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428876/","id":428876,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-annual-2013-1/4000-428876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-429070/","id":429070,"name":"Chaos Ascendant","site_detail_url":"https://comicvine.gamespot.com/wampus-3-chaos-ascendant/4000-429070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428875/","id":428875,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-green-hornet-dark-nights-4/4000-428875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428873/","id":428873,"name":"","site_detail_url":"https://comicvine.gamespot.com/kings-watch-2/4000-428873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430724/","id":430724,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/the-bounce-6-book-six/4000-430724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430775/","id":430775,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-15/4000-430775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430955/","id":430955,"name":"","site_detail_url":"https://comicvine.gamespot.com/a1-odyssey-5/4000-430955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431458/","id":431458,"name":"Threat Matrix 3 of 4","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-9-threat-matrix-3-of-4/4000-431458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430798/","id":430798,"name":"","site_detail_url":"https://comicvine.gamespot.com/zombie-war-1/4000-430798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431663/","id":431663,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-werewolf-of-nyc-1/4000-431663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431684/","id":431684,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-the-big-leagues-1-volume-3/4000-431684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428357/","id":428357,"name":"","site_detail_url":"https://comicvine.gamespot.com/a1-5/4000-428357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428328/","id":428328,"name":"Times Squared","site_detail_url":"https://comicvine.gamespot.com/rocket-girl-1-times-squared/4000-428328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431453/","id":431453,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-6/4000-431453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427929/","id":427929,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-golem-1-tpb/4000-427929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423669/","id":423669,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-66/4000-423669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430823/","id":430823,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/a1-annual-1-volume-one/4000-430823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427697/","id":427697,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-6/4000-427697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432356/","id":432356,"name":"Happy Horror Days! Part 1: Devil's Night","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-9-happy-horror-days-part-1-devil-s-ni/4000-432356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428886/","id":428886,"name":"Believers, Part 5 (of 5)","site_detail_url":"https://comicvine.gamespot.com/the-x-files-season-10-5-believers-part-5-of-5/4000-428886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431492/","id":431492,"name":"(of 5)","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-no-tomorrow-3-of-5/4000-431492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422505/","id":422505,"name":"The End of X-Factor, Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/x-factor-261-the-end-of-x-factor-part-5-of-6/4000-422505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420643/","id":420643,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-2/4000-420643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415241/","id":415241,"name":"The Superior Foes of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-1-the-superior-foe/4000-415241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416903/","id":416903,"name":"Trinity War, Chapter One: The Death Card","site_detail_url":"https://comicvine.gamespot.com/justice-league-22-trinity-war-chapter-one-the-deat/4000-416903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417832/","id":417832,"name":"The Enemy Within Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-17-the-enemy-within-part-4-of-5/4000-417832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417839/","id":417839,"name":"Chapter Six: Home Field","site_detail_url":"https://comicvine.gamespot.com/nova-6-chapter-six-home-field/4000-417839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418769/","id":418769,"name":"Trinity War, Chapter Three: House of Cards","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-22-trinity-war-chapter-three-h/4000-418769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418825/","id":418825,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-10/4000-418825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418824/","id":418824,"name":"A Day In Someone Else's Life","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-1-a-day-in-someone-els/4000-418824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418823/","id":418823,"name":"A Blind Eye","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-14-a-blind-eye/4000-418823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416947/","id":416947,"name":"Disassembled Part 3; New World Order","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-27-disassembled-part-3-n/4000-416947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418777/","id":418777,"name":"Stealing Thunder, A Trinity War Interlude","site_detail_url":"https://comicvine.gamespot.com/constantine-5-stealing-thunder-a-trinity-war-inter/4000-418777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419968/","id":419968,"name":"Paint It Black","site_detail_url":"https://comicvine.gamespot.com/ff-10-paint-it-black/4000-419968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425196/","id":425196,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-iron-man-first-sign-1-tpb/4000-425196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425298/","id":425298,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/green-arrow-harrow-1-volume-3/4000-425298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425965/","id":425965,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-new-animated-adventur/4000-425965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426111/","id":426111,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-the-enemy-within-1-volume/4000-426111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426114/","id":426114,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-return-of-weapon-x-1-tpb/4000-426114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426110/","id":426110,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-the-origin-of-the-inhumans-1-tpb/4000-426110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426680/","id":426680,"name":"","site_detail_url":"https://comicvine.gamespot.com/satans-soldier-3/4000-426680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426867/","id":426867,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/shazam-1-volume-1/4000-426867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426907/","id":426907,"name":"City Fall Part Five","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-26-city-fall-part-fiv/4000-426907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425303/","id":425303,"name":"Iron","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-iron-1-iron/4000-425303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425920/","id":425920,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-the-fall-3/4000-425920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424572/","id":424572,"name":"Volume Five: Tests","site_detail_url":"https://comicvine.gamespot.com/morning-glories-5-volume-five-tests/4000-424572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417826/","id":417826,"name":"A Heart Remote and Unyielding: Part One of Camelot","site_detail_url":"https://comicvine.gamespot.com/fables-131-a-heart-remote-and-unyielding-part-one-/4000-417826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497650/","id":497650,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-2/4000-497650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498668/","id":498668,"name":"Spiderman 19: La Saga Del Clon","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-42-spiderman-19-la-saga-del/4000-498668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417847/","id":417847,"name":"Spider-Man No More, Part 3; The Spider Returns?","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-25-spider-man-no-more-p/4000-417847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425110/","id":425110,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rasl-complete-1-hc/4000-425110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418811/","id":418811,"name":"The Unwritten Fables, Part 2: The Rescue","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-51-the-unwritten-fables-part-2-the-r/4000-418811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539697/","id":539697,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-4/4000-539697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558847/","id":558847,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-13/4000-558847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427029/","id":427029,"name":"Light in the Darkness","site_detail_url":"https://comicvine.gamespot.com/artifacts-31-light-in-the-darkness/4000-427029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424078/","id":424078,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-48/4000-424078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425306/","id":425306,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-99/4000-425306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418779/","id":418779,"name":"Dark Titans","site_detail_url":"https://comicvine.gamespot.com/teen-titans-22-dark-titans/4000-418779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418817/","id":418817,"name":"West Coast Avenger","site_detail_url":"https://comicvine.gamespot.com/hawkeye-annual-1-west-coast-avenger/4000-418817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418780/","id":418780,"name":"For the Right Price","site_detail_url":"https://comicvine.gamespot.com/the-green-team-teen-trillionaires-3-for-the-right-/4000-418780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417841/","id":417841,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-7/4000-417841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425347/","id":425347,"name":"Olympus Part 7","site_detail_url":"https://comicvine.gamespot.com/smallville-season-eleven-64-olympus-part-7/4000-425347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416916/","id":416916,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-28/4000-416916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422661/","id":422661,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-22/4000-422661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423949/","id":423949,"name":"Behold The Spider-Goblin","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-98-behold-the-spider-go/4000-423949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416912/","id":416912,"name":"Losses","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-14-losses/4000-416912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425195/","id":425195,"name":"","site_detail_url":"https://comicvine.gamespot.com/neuyazvimiy-17/4000-425195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415235/","id":415235,"name":"Angels Unaware, Part 2: Hannah's Heart Hannah's Hope","site_detail_url":"https://comicvine.gamespot.com/daredevil-dark-nights-2-angels-unaware-part-2-hann/4000-415235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417056/","id":417056,"name":"Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/marvel-s-thor-the-dark-world-prelude-2-part-2-of-2/4000-417056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418821/","id":418821,"name":"What Maximus Made; Prelude to Infinity","site_detail_url":"https://comicvine.gamespot.com/new-avengers-8-what-maximus-made-prelude-to-infini/4000-418821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418826/","id":418826,"name":"Mortal","site_detail_url":"https://comicvine.gamespot.com/wolverine-7-mortal/4000-418826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418995/","id":418995,"name":"Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/what-if-avx-3-part-3-of-4/4000-418995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420231/","id":420231,"name":"And to All a Good Night","site_detail_url":"https://comicvine.gamespot.com/black-bolt-something-inhuman-this-way-comes-1-and-/4000-420231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419966/","id":419966,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-29/4000-419966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419957/","id":419957,"name":"High School And Other Assorted Horrors","site_detail_url":"https://comicvine.gamespot.com/superboy-22-high-school-and-other-assorted-horrors/4000-419957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419975/","id":419975,"name":"Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/what-if-avx-4-part-4-of-4/4000-419975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424512/","id":424512,"name":"Percha","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-3-percha/4000-424512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424627/","id":424627,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet-aftermath-1-tpb/4000-424627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424559/","id":424559,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-5/4000-424559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424547/","id":424547,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-5/4000-424547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424548/","id":424548,"name":"","site_detail_url":"https://comicvine.gamespot.com/codename-action-1/4000-424548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424554/","id":424554,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-digital-first-4/4000-424554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425042/","id":425042,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-green-hornet-dark-nights-3/4000-425042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425043/","id":425043,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-14/4000-425043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424694/","id":424694,"name":"Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-1-age-of-ultron/4000-424694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425193/","id":425193,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-9-volume-9/4000-425193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425041/","id":425041,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-17/4000-425041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425301/","id":425301,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shield-by-steranko-the-complete-collection-1-tpb/4000-425301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425300/","id":425300,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-kurt-busiek-and-sean-chen-omnibus-1-hc/4000-425300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425040/","id":425040,"name":"","site_detail_url":"https://comicvine.gamespot.com/kings-watch-1/4000-425040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425906/","id":425906,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/the-bounce-5-book-five/4000-425906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418820/","id":418820,"name":"Back in Black","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-16-back-in-black/4000-418820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426104/","id":426104,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-7-volume-7/4000-426104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425050/","id":425050,"name":"Hun","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-micro-series/4000-425050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426898/","id":426898,"name":"Threat Matrix 2 of 4","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-8-threat-matrix-2-of-4/4000-426898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427059/","id":427059,"name":"Welcome To Riverdale Part Two: Baby Showers and Other Bad Weather","site_detail_url":"https://comicvine.gamespot.com/archie-marries-betty-32-welcome-to-riverdale-part-/4000-427059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427061/","id":427061,"name":"","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-presents-real-science-adventures-11/4000-427061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427165/","id":427165,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-avx-1-tpb/4000-427165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428885/","id":428885,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-x-files-classics-2-volume-2/4000-428885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416941/","id":416941,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-64/4000-416941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426634/","id":426634,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-19/4000-426634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425010/","id":425010,"name":"Psy vs. Psy, Part One","site_detail_url":"https://comicvine.gamespot.com/brain-boy-1-psy-vs-psy-part-one/4000-425010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425992/","id":425992,"name":"Clockwork Prince","site_detail_url":"https://comicvine.gamespot.com/the-infernal-devices-clockwork-angel-2-clockwork-p/4000-425992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426105/","id":426105,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/morning-glories-deluxe-collection-2-volume-2/4000-426105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424609/","id":424609,"name":"","site_detail_url":"https://comicvine.gamespot.com/12-reasons-to-die-3/4000-424609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418818/","id":418818,"name":"","site_detail_url":"https://comicvine.gamespot.com/hunger-1/4000-418818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426928/","id":426928,"name":"(of 5)","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-no-tomorrow-2-of-5/4000-426928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408999/","id":408999,"name":"No Escape Part One: A Lock For Every Key","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-11-no-escape-part-one-a-lock-f/4000-408999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408989/","id":408989,"name":"All-New X-Men vs.Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-12-all-new-x-men-vs-uncanny-avengers/4000-408989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409002/","id":409002,"name":"Disassembled Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-25-disassembled-part-1/4000-409002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410318/","id":410318,"name":"The Enemy Within Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-16-the-enemy-within-part-2-of-5/4000-410318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410273/","id":410273,"name":"All My Friends","site_detail_url":"https://comicvine.gamespot.com/constantine-4-all-my-friends/4000-410273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410319/","id":410319,"name":"Dare to Be Deviled","site_detail_url":"https://comicvine.gamespot.com/deadpool-11-dare-to-be-deviled/4000-410319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411828/","id":411828,"name":"Nativity!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-9-nativity/4000-411828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411829/","id":411829,"name":"Blind Rage: Part One","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-9-blind-rage-part-one/4000-411829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411836/","id":411836,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-9/4000-411836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413655/","id":413655,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-27/4000-413655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413656/","id":413656,"name":"Damned If You Win, Damned If You Lose","site_detail_url":"https://comicvine.gamespot.com/deadpool-12-damned-if-you-win-damned-if-you-lose/4000-413656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411835/","id":411835,"name":"Disassembled Part 2; The Dark Ultimates?!","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-26-disassembled-part-2-t/4000-411835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421834/","id":421834,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-science-bros-1-volume-2/4000-421834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422474/","id":422474,"name":"Lake of Fire Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-110-lake-of-fire-part-1-of-5/4000-422474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421831/","id":421831,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/invincible-compendium-2-volume-2/4000-421831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423707/","id":423707,"name":"City Fall Part Four","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-25-city-fall-part-fou/4000-423707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423661/","id":423661,"name":"Book Seven","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-7-book-seven/4000-423661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423664/","id":423664,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/sandman-omnibus-1-volume-1/4000-423664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420637/","id":420637,"name":"Punching Cancer","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-5-punching-cancer/4000-420637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422535/","id":422535,"name":"","site_detail_url":"https://comicvine.gamespot.com/clive-barker-s-hellraiser-the-dark-watch-7/4000-422535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423708/","id":423708,"name":"Never Say Xever; The Gauntlet","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-animated-2-never-say-/4000-423708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411818/","id":411818,"name":"Junebug","site_detail_url":"https://comicvine.gamespot.com/fables-130-junebug/4000-411818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413662/","id":413662,"name":"Exclusive","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-15-exclusive/4000-413662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408997/","id":408997,"name":"","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-1/4000-408997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497649/","id":497649,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-1/4000-497649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497733/","id":497733,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-1/4000-497733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497726/","id":497726,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-7/4000-497726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498664/","id":498664,"name":"Spiderman 17: Marta Plateada","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-38-spiderman-17-marta-plate/4000-498664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498666/","id":498666,"name":"Spiderman 18: Masacre","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-40-spiderman-18-masacre/4000-498666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539696/","id":539696,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-3/4000-539696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422482/","id":422482,"name":"Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-a-scent-of-lotus-2-part-2-of-2/4000-422482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558846/","id":558846,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-12/4000-558846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413652/","id":413652,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-13/4000-413652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410326/","id":410326,"name":"Hunting Season, Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-4-hunting-season-part-4-of-4/4000-410326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574667/","id":574667,"name":"Countdown","site_detail_url":"https://comicvine.gamespot.com/vigilante-project-4-countdown/4000-574667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413621/","id":413621,"name":"Arm's Length","site_detail_url":"https://comicvine.gamespot.com/the-green-team-teen-trillionaires-2-arm-s-length/4000-413621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423778/","id":423778,"name":"","site_detail_url":"https://comicvine.gamespot.com/neuyazvimiy-16/4000-423778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413615/","id":413615,"name":"Horror City, Conclusion: Die, Die, Die My Darling","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-21-horror-city-conclusion-die-/4000-413615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420563/","id":420563,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-87/4000-420563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423780/","id":423780,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-18/4000-423780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408994/","id":408994,"name":"Part Eight","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-8-part-eight/4000-408994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418265/","id":418265,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-21/4000-418265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408988/","id":408988,"name":"Book Nine","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-9-book-nine/4000-408988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421612/","id":421612,"name":"Der Mandarin kommt!; Versammlungsrecht; Im Visier des Grey Gargoyle; Die schlausten Helden der Welt; Kennst du schon den mit Scorpio?; König Salomons Frösche; Der mächtigste Wettkampf der Welt!; Mein Abendessen mit HYDRA; Die Schlangenkrone","site_detail_url":"https://comicvine.gamespot.com/die-avengers-tv-comic-1-der-mandarin-kommt-versamm/4000-421612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413619/","id":413619,"name":"The Brothers Trigon","site_detail_url":"https://comicvine.gamespot.com/teen-titans-21-the-brothers-trigon/4000-413619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408993/","id":408993,"name":"Angels Unaware Part One: Whiteout","site_detail_url":"https://comicvine.gamespot.com/daredevil-dark-nights-1-angels-unaware-part-one-wh/4000-408993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413614/","id":413614,"name":"Shazam! Conclusion","site_detail_url":"https://comicvine.gamespot.com/justice-league-21-shazam-conclusion/4000-413614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410316/","id":410316,"name":"Big Time!","site_detail_url":"https://comicvine.gamespot.com/alpha-big-time-5-big-time/4000-410316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410784/","id":410784,"name":"Pro-Death","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-22-pro-death/4000-410784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411824/","id":411824,"name":"Book Ten","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-10-book-ten/4000-411824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411832/","id":411832,"name":"No Escape Part Two: Lockdown","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-12-no-escape-part-two-lockdown/4000-411832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413651/","id":413651,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-10ai/4000-413651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411823/","id":411823,"name":"Captain America + Wolverine: Animal Cruelty; Doctor Strange + Quentin Quite, Pixie, and Eye Boy","site_detail_url":"https://comicvine.gamespot.com/a-x-9-captain-america-wolverine-animal-cruelty-doc/4000-411823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420616/","id":420616,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-universe-5/4000-420616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420617/","id":420617,"name":"The Dirt Nap","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-2-the-dirt-nap/4000-420617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420918/","id":420918,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson-1-volume-1/4000-420918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420668/","id":420668,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-4/4000-420668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420678/","id":420678,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-16/4000-420678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421715/","id":421715,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-green-hornet-dark-nights-2/4000-421715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422444/","id":422444,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/the-bounce-4-book-four/4000-422444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422696/","id":422696,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-a-troubled-mind-1-volume-2/4000-422696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422516/","id":422516,"name":"Family Reunion","site_detail_url":"https://comicvine.gamespot.com/jennifer-blood-30-family-reunion/4000-422516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422852/","id":422852,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-omnibus-2-volume-two/4000-422852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420674/","id":420674,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/miss-fury-digital-2-part-two/4000-420674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423665/","id":423665,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/talon-scourge-of-the-owls-1-volume-1/4000-423665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423696/","id":423696,"name":"Threat Matrix 1 of 4","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-7-threat-matrix-1-of-4/4000-423696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422828/","id":422828,"name":"","site_detail_url":"https://comicvine.gamespot.com/watson-and-holmes-3/4000-422828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424035/","id":424035,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/young-avengers-style-substance-1-volume-1/4000-424035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423829/","id":423829,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-reverie-1-volume-1/4000-423829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423691/","id":423691,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-5/4000-423691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420226/","id":420226,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-17/4000-420226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422833/","id":422833,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-soul-hunter-1-volume-2/4000-422833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444238/","id":444238,"name":"","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-4/4000-444238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526870/","id":526870,"name":"Das Verborgene Reich","site_detail_url":"https://comicvine.gamespot.com/fairest-2-das-verborgene-reich/4000-526870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413631/","id":413631,"name":"The Unwritten Fables, Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-50-the-unwritten-fables-part-1-of-5/4000-413631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400114/","id":400114,"name":"The Tower of Fate, Part 3: The Man Who Was Fate","site_detail_url":"https://comicvine.gamespot.com/earth-2-12-the-tower-of-fate-part-3-the-man-who-wa/4000-400114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401174/","id":401174,"name":"The Spark and the Flame, Part 3: The Big Smoke","site_detail_url":"https://comicvine.gamespot.com/constantine-3-the-spark-and-the-flame-part-3-the-b/4000-401174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401205/","id":401205,"name":"The Devil & the Deep Blue Sea","site_detail_url":"https://comicvine.gamespot.com/deadpool-9-the-devil-the-deep-blue-sea/4000-401205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401201/","id":401201,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-62/4000-401201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401214/","id":401214,"name":"Hunting Season, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-3-hunting-season-part-3-of-4/4000-401214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402286/","id":402286,"name":"That Was the Worst Field Trip Ever!","site_detail_url":"https://comicvine.gamespot.com/ff-7-that-was-the-worst-field-trip-ever/4000-402286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402284/","id":402284,"name":"The Enemy Within Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-the-enemy-within-1-the-enemy-within-part-/4000-402284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404702/","id":404702,"name":"Independence Day","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-10-independence-day/4000-404702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404704/","id":404704,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-8au/4000-404704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404695/","id":404695,"name":"Eight Legs to Kick You","site_detail_url":"https://comicvine.gamespot.com/deadpool-10-eight-legs-to-kick-you/4000-404695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404696/","id":404696,"name":"The Mobsters Are Due On Yancy Street!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-8-the-mobsters-are-due-on-yancy-str/4000-404696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406983/","id":406983,"name":"Primer, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/x-men-1-primer-part-1-of-3/4000-406983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418266/","id":418266,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-95/4000-418266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418836/","id":418836,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-6/4000-418836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417004/","id":417004,"name":"","site_detail_url":"https://comicvine.gamespot.com/12-reasons-to-die-2/4000-417004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419983/","id":419983,"name":"Threat Matrix, Prologue: Cover Girl","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-6-threat-matrix-prologue-cover-girl/4000-419983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416935/","id":416935,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-nite-owl-dr-manhattan-deluxe-editi/4000-416935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416939/","id":416939,"name":"World's Worst, Part 1","site_detail_url":"https://comicvine.gamespot.com/quantum-woody-1-world-s-worst-part-1/4000-416939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416964/","id":416964,"name":"The Art of Dying","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-10-the-art-of-dying/4000-416964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416968/","id":416968,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-the-new-ghostbusters-1-volume-5/4000-416968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415317/","id":415317,"name":"Volume 3: From Heart of Darkness to Hemingway to Infinite Jest","site_detail_url":"https://comicvine.gamespot.com/the-graphic-canon-3-volume-3-from-heart-of-darknes/4000-415317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402280/","id":402280,"name":"Snow Falling On Glass: Chapter Five of Snow White","site_detail_url":"https://comicvine.gamespot.com/fables-129-snow-falling-on-glass-chapter-five-of-s/4000-402280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404700/","id":404700,"name":"Why I Hate Gym","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-14-why-i-hate-gym/4000-404700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420233/","id":420233,"name":"Volume Eighteen","site_detail_url":"https://comicvine.gamespot.com/invincible-the-death-of-everyone-1-volume-eighteen/4000-420233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498662/","id":498662,"name":"Spiderman 16: Guerreros","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-36-spiderman-16-guerreros/4000-498662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402292/","id":402292,"name":"Spider-Man No More!","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-23-spider-man-no-more/4000-402292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415617/","id":415617,"name":"Volume 20","site_detail_url":"https://comicvine.gamespot.com/x-factor-hell-on-earth-war-1-volume-20/4000-415617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419109/","id":419109,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-tower-chronicles-geisthawk-1-book-one/4000-419109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538818/","id":538818,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-29/4000-538818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539695/","id":539695,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-2/4000-539695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418801/","id":418801,"name":"Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-a-scent-of-lotus-1-part-1-of-2/4000-418801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417075/","id":417075,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-3/4000-417075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558845/","id":558845,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-11/4000-558845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415316/","id":415316,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-gettysburg-address-a-graphic-adaptation-1-gn/4000-415316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414571/","id":414571,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-5/4000-414571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404662/","id":404662,"name":"Riot Act","site_detail_url":"https://comicvine.gamespot.com/the-green-team-teen-trillionaires-1-riot-act/4000-404662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401179/","id":401179,"name":"A Wretched H.I.V.E.","site_detail_url":"https://comicvine.gamespot.com/superboy-20-a-wretched-h-i-v-e/4000-401179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404670/","id":404670,"name":"Only Begotten","site_detail_url":"https://comicvine.gamespot.com/teen-titans-20-only-begotten/4000-404670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415611/","id":415611,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-now-omnibus-1-hc/4000-415611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404661/","id":404661,"name":"Horror City, Part 2: The Nightmare Gospel","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-20-horror-city-part-2-the-nigh/4000-404661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401211/","id":401211,"name":"Reconstruction, Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-24-reconstruction-part-6/4000-401211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419110/","id":419110,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-x-termination-1-tpb/4000-419110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404707/","id":404707,"name":"The Art of Saving the World","site_detail_url":"https://comicvine.gamespot.com/young-avengers-5-the-art-of-saving-the-world/4000-404707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414205/","id":414205,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-86/4000-414205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402283/","id":402283,"name":"Book Eight","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-8-book-eight/4000-402283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404694/","id":404694,"name":"Punching Cancer","site_detail_url":"https://comicvine.gamespot.com/daredevil-26-punching-cancer/4000-404694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410597/","id":410597,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-111/4000-410597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418803/","id":418803,"name":"Part Two of Three Americana \"Battlegroup\"","site_detail_url":"https://comicvine.gamespot.com/the-massive-14-part-two-of-three-americana-battleg/4000-418803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404671/","id":404671,"name":"The Deep!","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-20-the-deep/4000-404671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407289/","id":407289,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-universe-the-hero-who-could-be-you-1/4000-407289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415268/","id":415268,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-15/4000-415268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426242/","id":426242,"name":"Operacija Arka","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-3-operacija-arka/4000-426242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417239/","id":417239,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-gods-gladiators-and-the-guardians-of-the-gala/4000-417239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417207/","id":417207,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-the-last-white-event-1-volume-2/4000-417207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417226/","id":417226,"name":"","site_detail_url":"https://comicvine.gamespot.com/share-your-universe-ultimate-spider-man-premiere-1/4000-417226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417230/","id":417230,"name":"The Legend Reborn!; Spy For the Cameras!","site_detail_url":"https://comicvine.gamespot.com/share-your-universe-captain-america-1-the-legend-r/4000-417230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417233/","id":417233,"name":"Fire And Ice","site_detail_url":"https://comicvine.gamespot.com/share-your-universe-thor-god-of-thunder-1-fire-and/4000-417233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415253/","id":415253,"name":"The Big Fade Out","site_detail_url":"https://comicvine.gamespot.com/satellite-sam-1-the-big-fade-out/4000-415253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400150/","id":400150,"name":"The Coming of the Melter!","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-coming-of-the-melter-1-the-coming-of-/4000-400150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409531/","id":409531,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-49/4000-409531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413469/","id":413469,"name":"Scar Strangled Banner","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-93-scar-strangled-banne/4000-413469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415616/","id":415616,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus-1-hc/4000-415616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400144/","id":400144,"name":"Book Seven","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-7-book-seven/4000-400144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400146/","id":400146,"name":"","site_detail_url":"https://comicvine.gamespot.com/hawkeye-10/4000-400146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400149/","id":400149,"name":"The Thought That Killed","site_detail_url":"https://comicvine.gamespot.com/iron-man-258-1-the-thought-that-killed/4000-400149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401213/","id":401213,"name":"Street Fighting Man","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-4-street-fighting-man/4000-401213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404701/","id":404701,"name":"Wrath Part 1","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-17-wrath-part-1/4000-404701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406982/","id":406982,"name":"The Hellfire Saga Prelude","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-30-the-hellfire-saga-prelude/4000-406982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404692/","id":404692,"name":"Spider-Woman + Kitty Pryde [& Lockheed]; Hawkeye + Deadpool","site_detail_url":"https://comicvine.gamespot.com/a-x-8-spider-woman-kitty-pryde-lockheed-hawkeye-de/4000-404692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415224/","id":415224,"name":"12.21.12: This Is What Went Down; This Is What Really Went Down; This Is What Went Down and Nobody Cared (Yet)","site_detail_url":"https://comicvine.gamespot.com/catalyst-comix-1-12-21-12-this-is-what-went-down-t/4000-415224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415609/","id":415609,"name":"End of Days","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-1-end-of-days/4000-415609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416936/","id":416936,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-the-books-of-magic-1-volume-2/4000-416936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416956/","id":416956,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-3/4000-416956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417213/","id":417213,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/hawkeye-little-hits-1-volume-2/4000-417213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416966/","id":416966,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-green-hornet-dark-nights-1/4000-416966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417210/","id":417210,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ff-fantastic-faux-1-volume-1/4000-417210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417217/","id":417217,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-superiority-complex-1-volume-3/4000-417217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417986/","id":417986,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-1-v/4000-417986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417864/","id":417864,"name":"Alopex","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-micro-series/4000-417864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418781/","id":418781,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/the-bounce-3-book-three/4000-418781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418973/","id":418973,"name":"City Fall Part Three","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-24-city-fall-part-thr/4000-418973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419003/","id":419003,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-digital-1/4000-419003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417871/","id":417871,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-4/4000-417871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420221/","id":420221,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/vincent-price-presents-the-seven-lives-of-dr-phibe/4000-420221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420223/","id":420223,"name":"Страх во плоти. Часть 2. Достойные; Страх во плоти. Часть 1. Город света, город камня","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-16-strakh-vo-ploti-/4000-420223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416934/","id":416934,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-comedian-rorschach-deluxe-edition-/4000-416934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417827/","id":417827,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-phantom-zone-1-tpb/4000-417827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423954/","id":423954,"name":"","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-presents-real-science-adventures-10/4000-423954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415612/","id":415612,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-avengers-everything-dies-1-volume-1/4000-415612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418052/","id":418052,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyborg-009-1/4000-418052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418835/","id":418835,"name":"Ashes To Ashes","site_detail_url":"https://comicvine.gamespot.com/doomsday-1-3-ashes-to-ashes/4000-418835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420225/","id":420225,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-16/4000-420225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378726/","id":378726,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-6-volume-6/4000-378726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395704/","id":395704,"name":"Troubled Mind, Part One: Right-Hand Man","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-7-troubled-mind-part-one-right/4000-395704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395701/","id":395701,"name":"Drinking Game","site_detail_url":"https://comicvine.gamespot.com/deadpool-7-drinking-game/4000-395701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396437/","id":396437,"name":"Hunting Season, Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-2-hunting-season-part-2-of-4/4000-396437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397550/","id":397550,"name":"Troubled Mind, Part Two: Proof Positive","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-8-troubled-mind-part-two-proof/4000-397550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397496/","id":397496,"name":"Trial by (Flash) Fire","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-s-vibe-3-trial-by-flash-/4000-397496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398949/","id":398949,"name":"Horror City, Part 1: House of Misery","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-19-horror-city-part-1-house-of/4000-398949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398952/","id":398952,"name":"Trigon-Ometry","site_detail_url":"https://comicvine.gamespot.com/teen-titans-19-trigon-ometry/4000-398952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398984/","id":398984,"name":"Save the Tiger","site_detail_url":"https://comicvine.gamespot.com/ff-6-save-the-tiger/4000-398984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408983/","id":408983,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/solo-1-hc/4000-408983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412226/","id":412226,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-13-volume-13/4000-412226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412215/","id":412215,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-the-culling-1-volume-2/4000-412215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410314/","id":410314,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/stormwatch-2-volume-two/4000-410314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411856/","id":411856,"name":"Old Hob","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-micro-series/4000-411856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413630/","id":413630,"name":"City Fall Part Two","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-23-city-fall-part-two/4000-413630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410348/","id":410348,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-secret-history-of/4000-410348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413644/","id":413644,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-minutemen-silk-spectre-deluxe-edit/4000-413644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412230/","id":412230,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-metal-men-archives-2-volume-2/4000-412230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402182/","id":402182,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-killt-das-marvel-universum-1/4000-402182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464224/","id":464224,"name":"","site_detail_url":"https://comicvine.gamespot.com/raw-power-2/4000-464224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397536/","id":397536,"name":"Through A Glass Darkly: Chapter Four of Snow White","site_detail_url":"https://comicvine.gamespot.com/fables-128-through-a-glass-darkly-chapter-four-of-/4000-397536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398988/","id":398988,"name":"Flight of the Iron-Spider","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-13-flight-of-the-iron-spider/4000-398988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498660/","id":498660,"name":"Spiderman 15: El Duende","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-34-spiderman-15-el-duende/4000-498660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498884/","id":498884,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-29/4000-498884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413732/","id":413732,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/new-school-1-hc/4000-413732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539694/","id":539694,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-la-era-de-ultron-1/4000-539694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540200/","id":540200,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-29/4000-540200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434830/","id":434830,"name":"","site_detail_url":"https://comicvine.gamespot.com/jump-sq-201306/4000-434830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558844/","id":558844,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-10/4000-558844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409073/","id":409073,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/trinity-a-graphic-history-of-the-first-atomic-bomb/4000-409073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411902/","id":411902,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/gabba-gabba-hey-the-ramones-graphic-novel-1-gn/4000-411902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415308/","id":415308,"name":"Death At First Bite","site_detail_url":"https://comicvine.gamespot.com/the-final-plague-1-death-at-first-bite/4000-415308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413700/","id":413700,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-8/4000-413700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397539/","id":397539,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-6-book-six/4000-397539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398997/","id":398997,"name":"Deus Ex Machine Gunner","site_detail_url":"https://comicvine.gamespot.com/young-avengers-4-deus-ex-machine-gunner/4000-398997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397554/","id":397554,"name":"Age of Ultron: Road Trip","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-27au-age-of-ultron-road-tr/4000-397554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402560/","id":402560,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-110/4000-402560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398957/","id":398957,"name":"Beware the Blockbuster!","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-19-beware-the-blockbuster/4000-398957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405531/","id":405531,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-19/4000-405531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412027/","id":412027,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4000-412027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397555/","id":397555,"name":"Hell On Earth War Part Five","site_detail_url":"https://comicvine.gamespot.com/x-factor-254-hell-on-earth-war-part-five/4000-397555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397545/","id":397545,"name":"Part Seven","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-7-part-seven/4000-397545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410913/","id":410913,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/catwoman-no-easy-way-down-1-volume-2/4000-410913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409036/","id":409036,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-12/4000-409036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397544/","id":397544,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-25/4000-397544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409035/","id":409035,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-3/4000-409035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400156/","id":400156,"name":"Hell On Earth War Part Six","site_detail_url":"https://comicvine.gamespot.com/x-factor-255-hell-on-earth-war-part-six/4000-400156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395699/","id":395699,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-4-book-four/4000-395699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409192/","id":409192,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-universe-1-tpb/4000-409192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396425/","id":396425,"name":"Bad Dreams","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-19-bad-dreams/4000-396425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396421/","id":396421,"name":"","site_detail_url":"https://comicvine.gamespot.com/alpha-big-time-3/4000-396421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396428/","id":396428,"name":"Girls","site_detail_url":"https://comicvine.gamespot.com/hawkeye-9-girls/4000-396428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397494/","id":397494,"name":"Living History","site_detail_url":"https://comicvine.gamespot.com/dc-universe-presents-19-living-history/4000-397494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398993/","id":398993,"name":"The Apocalypse Twins, Part 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-7-the-apocalypse-twins-part-2/4000-398993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409533/","id":409533,"name":"Страх во плоти. Часть 1. Змей; Почини меня. Часть 3","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-15-strakh-vo-ploti-/4000-409533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409029/","id":409029,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-2/4000-409029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410338/","id":410338,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-14/4000-410338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413638/","id":413638,"name":"Part One of Three Americana \"Chokepoint\"","site_detail_url":"https://comicvine.gamespot.com/the-massive-13-part-one-of-three-americana-chokepo/4000-413638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414105/","id":414105,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-humphries-1-volume-1/4000-414105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409534/","id":409534,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-15/4000-409534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398959/","id":398959,"name":"Eighties","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-comedian-6-eighties/4000-398959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420983/","id":420983,"name":"","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-presents-real-science-adventures-9/4000-420983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413703/","id":413703,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/the-shadow-revolution-1-volume-two/4000-413703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410916/","id":410916,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-7-volume-7/4000-410916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412196/","id":412196,"name":"","site_detail_url":"https://comicvine.gamespot.com/fame-alex-rodriguez-1/4000-412196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409535/","id":409535,"name":"Остров Пауков. Питер Паркер, заурядный Человек-Паук; Остров Пауков. Арахнотопия","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-17-ostrov-paukov-pitier-/4000-409535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413699/","id":413699,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-boys-definitive-edition-5-volume-5/4000-413699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415274/","id":415274,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/night-of-the-living-dead-aftermath-1-volume-1/4000-415274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412177/","id":412177,"name":"Werewolves of the Heartland","site_detail_url":"https://comicvine.gamespot.com/fables-18-werewolves-of-the-heartland/4000-412177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390442/","id":390442,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-1-book-one/4000-390442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390443/","id":390443,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-8/4000-390443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390453/","id":390453,"name":"Emotional Triggers","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-5-emotional-triggers/4000-390453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390451/","id":390451,"name":"Route 616 Part 1","site_detail_url":"https://comicvine.gamespot.com/red-she-hulk-63-route-616-part-1/4000-390451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394712/","id":394712,"name":"Joking Hazard","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-6-joking-hazard/4000-394712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394655/","id":394655,"name":"The Queen of Roots","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-18-the-queen-of-roots/4000-394655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394701/","id":394701,"name":"Starbranded","site_detail_url":"https://comicvine.gamespot.com/avengers-8-starbranded/4000-394701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394700/","id":394700,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-9/4000-394700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394715/","id":394715,"name":"X-Termination, Part 1: Nothing Lasts Forever","site_detail_url":"https://comicvine.gamespot.com/x-termination-1-x-termination-part-1-nothing-lasts/4000-394715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394707/","id":394707,"name":"National Maul","site_detail_url":"https://comicvine.gamespot.com/deadpool-6-national-maul/4000-394707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394709/","id":394709,"name":"World Eater","site_detail_url":"https://comicvine.gamespot.com/new-avengers-4-world-eater/4000-394709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395248/","id":395248,"name":"Spooky Kids or, Merrily Into the Eight Arms of Durga the Invincible We All Go","site_detail_url":"https://comicvine.gamespot.com/ff-5-spooky-kids-or-merrily-into-the-eight-arms-of/4000-395248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392213/","id":392213,"name":"Hunting Season, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-1-hunting-season-part-1-of-4/4000-392213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400192/","id":400192,"name":"Krang War","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-krang-war-1-krang-war/4000-400192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401293/","id":401293,"name":"","site_detail_url":"https://comicvine.gamespot.com/12-reasons-to-die-1/4000-401293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402289/","id":402289,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-omnibus-1-volume-1/4000-402289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407166/","id":407166,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-omnibus-3-volume-3/4000-407166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392356/","id":392356,"name":"This Man, That Monster!; Fury File 2012-012; Rise of the Locust; Hulk Moon","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earth-s-mightiest-heroes-/4000-392356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404685/","id":404685,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-satan-smells-a-rat-1/4000-404685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401362/","id":401362,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-7-volume-seven/4000-401362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402618/","id":402618,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-down-1-volume-2/4000-402618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401522/","id":401522,"name":"Volume 1.1: You Don't Know Jack","site_detail_url":"https://comicvine.gamespot.com/nowhere-man-1-1-volume-1-1-you-dont-know-jack/4000-401522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400882/","id":400882,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-1/4000-400882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404735/","id":404735,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-4/4000-404735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402309/","id":402309,"name":"Going Underground","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-9-going-underground/4000-402309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416969/","id":416969,"name":"Part 13: The End Of This Nightmare, Once And For All","site_detail_url":"https://comicvine.gamespot.com/godzilla-13-part-13-the-end-of-this-nightmare-once/4000-416969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394697/","id":394697,"name":"The Shipping News: Chapter Three of Snow White","site_detail_url":"https://comicvine.gamespot.com/fables-127-the-shipping-news-chapter-three-of-snow/4000-394697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498659/","id":498659,"name":"Fantastic Four 5: Los 4 Terribles","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-33-fantastic-four-5-los-4-t/4000-498659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498658/","id":498658,"name":"Spiderman 14: Superestrellas","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-32-spiderman-14-superestrel/4000-498658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498883/","id":498883,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-28/4000-498883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394713/","id":394713,"name":"Venom War; Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-21-venom-war-part-3/4000-394713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404742/","id":404742,"name":"Baxter","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-villains-microseries-/4000-404742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401562/","id":401562,"name":"Real Tough Mothers","site_detail_url":"https://comicvine.gamespot.com/the-warriors-jailbreak-3-real-tough-mothers/4000-401562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401563/","id":401563,"name":"Our Little Piece of Turf","site_detail_url":"https://comicvine.gamespot.com/the-warriors-jailbreak-4-our-little-piece-of-turf/4000-401563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538813/","id":538813,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-27/4000-538813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540199/","id":540199,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-28/4000-540199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-570061/","id":570061,"name":"Como el rayo","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-7-como-el-rayo/4000-570061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400381/","id":400381,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/jack-kirby-omnibus-2-volume-2/4000-400381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401561/","id":401561,"name":"Nowhere Else in Sight","site_detail_url":"https://comicvine.gamespot.com/the-warriors-jailbreak-2-nowhere-else-in-sight/4000-401561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401560/","id":401560,"name":"Echoes In My Mind","site_detail_url":"https://comicvine.gamespot.com/the-warriors-jailbreak-1-echoes-in-my-mind/4000-401560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404718/","id":404718,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-7/4000-404718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390454/","id":390454,"name":"Reconstruction, Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-22-reconstruction-part-4/4000-390454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407217/","id":407217,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/avengers-the-complete-collection-by-geoff-johns-1-/4000-407217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397681/","id":397681,"name":"","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-14/4000-397681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392315/","id":392315,"name":"Mind Your Manners; Good Boy","site_detail_url":"https://comicvine.gamespot.com/superboy-18-mind-your-manners-good-boy/4000-392315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395307/","id":395307,"name":"To Belle and Back","site_detail_url":"https://comicvine.gamespot.com/teen-titans-18-to-belle-and-back/4000-395307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395262/","id":395262,"name":"Parent Teacher Disorganization","site_detail_url":"https://comicvine.gamespot.com/young-avengers-3-parent-teacher-disorganization/4000-395262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405608/","id":405608,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-s-iron-man-3-prelude-custom-edition-1/4000-405608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399456/","id":399456,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-18/4000-399456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399455/","id":399455,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-15/4000-399455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400161/","id":400161,"name":"Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/polarity-2-part-2-of-4/4000-400161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390446/","id":390446,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-6-part-six/4000-390446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407173/","id":407173,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-noir-spider-man-punisher-1-tpb/4000-407173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407175/","id":407175,"name":"Enter The Warzone","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-1-enter-the-warzone/4000-407175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397411/","id":397411,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-47/4000-397411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402617/","id":402617,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-authority-1-volume-1/4000-402617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390444/","id":390444,"name":"The Last White Event","site_detail_url":"https://comicvine.gamespot.com/avengers-7-the-last-white-event/4000-390444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390441/","id":390441,"name":"War Drums","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-13-war-drums/4000-390441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392349/","id":392349,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-2-book-two/4000-392349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392350/","id":392350,"name":"Big Time Part Two","site_detail_url":"https://comicvine.gamespot.com/alpha-big-time-2-big-time-part-two/4000-392350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392353/","id":392353,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-18/4000-392353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394654/","id":394654,"name":"The Spark and the Flame, Part 1: The Price We Pay","site_detail_url":"https://comicvine.gamespot.com/constantine-1-the-spark-and-the-flame-part-1-the-p/4000-394654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394705/","id":394705,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-24/4000-394705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395244/","id":395244,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-3-book-three/4000-395244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395256/","id":395256,"name":"Doomsday Scenario","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-6au-doomsday-scenario/4000-395256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395258/","id":395258,"name":"Let The Good Times Roll","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-5-let-the-good-times-roll/4000-395258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400994/","id":400994,"name":"FCBD","site_detail_url":"https://comicvine.gamespot.com/hulk-and-the-agents-of-s-m-a-s-h-avengers-assemble/4000-400994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400908/","id":400908,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-new-animated-adventur/4000-400908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401114/","id":401114,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-heart-of-stone-1-tpb/4000-401114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397686/","id":397686,"name":"Железный Человек 3","site_detail_url":"https://comicvine.gamespot.com/marvel-spetsial-niy-vypusk-5-zhielieznyi-chielovie/4000-397686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404917/","id":404917,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/a-x-a-x-awesome-1-volume-1/4000-404917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406993/","id":406993,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-3/4000-406993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407006/","id":407006,"name":"City Fall Part One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-22-city-fall-part-one/4000-407006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404722/","id":404722,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/witchblade-demon-reborn-1-tpb/4000-404722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407177/","id":407177,"name":"My Own Worst Enemy","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-my-own-worst-enemy-1-my-own-wo/4000-407177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400200/","id":400200,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-black-bat-1/4000-400200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407172/","id":407172,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-dead-presidents-1-volume-1/4000-407172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392352/","id":392352,"name":"Livin' La Vida Lizard","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-13-livin-la-vida-lizard/4000-392352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402310/","id":402310,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-13/4000-402310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401372/","id":401372,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-no-quarter-1-volume-1/4000-401372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407288/","id":407288,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-realm-knights-1/4000-407288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407176/","id":407176,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/superboy-extraction-1-volume-2/4000-407176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394714/","id":394714,"name":"Hell on Earth War, Part Four","site_detail_url":"https://comicvine.gamespot.com/x-factor-253-hell-on-earth-war-part-four/4000-394714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404737/","id":404737,"name":"Chapter One: Bite the Bullet","site_detail_url":"https://comicvine.gamespot.com/half-past-danger-1-chapter-one-bite-the-bullet/4000-404737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384953/","id":384953,"name":"Superguardian","site_detail_url":"https://comicvine.gamespot.com/avengers-5-superguardian/4000-384953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384952/","id":384952,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-7/4000-384952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387217/","id":387217,"name":"Wrath of the First Lantern, Part Three: 2 Reunions and a Funeral","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-17-wrath-of-the-first-/4000-387217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387219/","id":387219,"name":"Demination","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-17-demination/4000-387219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387254/","id":387254,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-10/4000-387254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387252/","id":387252,"name":"Zen and the Art of Cosmology","site_detail_url":"https://comicvine.gamespot.com/avengers-6-zen-and-the-art-of-cosmology/4000-387252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387262/","id":387262,"name":"The Aggressive Approach","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-4-the-aggressive-approach/4000-387262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388527/","id":388527,"name":"Grey Matters","site_detail_url":"https://comicvine.gamespot.com/teen-titans-17-grey-matters/4000-388527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388555/","id":388555,"name":"Escalation","site_detail_url":"https://comicvine.gamespot.com/ff-4-escalation/4000-388555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388553/","id":388553,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-17/4000-388553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388559/","id":388559,"name":"Stronger Than Monsters, Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-649-stronger-than-monsters-pa/4000-388559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384957/","id":384957,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hit-girl-5/4000-384957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395683/","id":395683,"name":"Walkabout","site_detail_url":"https://comicvine.gamespot.com/witchblade-165-walkabout/4000-395683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396471/","id":396471,"name":"Into Temptation","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-8-into-temptation/4000-396471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396611/","id":396611,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-reckless-abandonment-1-tpb/4000-396611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396419/","id":396419,"name":"Harbinger Wars: Harbinger Part One","site_detail_url":"https://comicvine.gamespot.com/harbinger-11-harbinger-wars-harbinger-part-one/4000-396419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397757/","id":397757,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/venom-devil-s-pack-1-volume-4/4000-397757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399009/","id":399009,"name":"Volume Four: Truants","site_detail_url":"https://comicvine.gamespot.com/morning-glories-4-volume-four-truants/4000-399009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399023/","id":399023,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-21/4000-399023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384966/","id":384966,"name":"Venom War; Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-20-venom-war-part-2/4000-384966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388537/","id":388537,"name":"Like a Shadow in the Night!","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-17-like-a-shadow-in-the-night/4000-388537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418808/","id":418808,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fairest-the-hidden-kingdom-1-volume-2/4000-418808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399120/","id":399120,"name":"HC\\TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-the-red-shadow-1-hc-tpb/4000-399120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395904/","id":395904,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-jose-luis-garcia-lopez-1-vo/4000-395904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395913/","id":395913,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/iron-man-believe-1-volume-one/4000-395913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396612/","id":396612,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-nightmare-1-tpb/4000-396612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406999/","id":406999,"name":"Part 12: This Time, He's Fighting For His Life","site_detail_url":"https://comicvine.gamespot.com/godzilla-12-part-12-this-time-hes-fighting-for-his/4000-406999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388560/","id":388560,"name":"Tutor Power!; If They Don't Win, It's a Pain","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-11-tutor-power-if-they-don-t-w/4000-388560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402581/","id":402581,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-5/4000-402581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498655/","id":498655,"name":"Spiderman 13: Matanza","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-29-spiderman-13-matanza/4000-498655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498882/","id":498882,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-27/4000-498882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467322/","id":467322,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/fabulas-hombres-lobo-en-el-corazon-de-america-1-gn/4000-467322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396406/","id":396406,"name":"Book IV","site_detail_url":"https://comicvine.gamespot.com/100-bullets-the-deluxe-edition-4-book-iv/4000-396406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538812/","id":538812,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-26/4000-538812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540198/","id":540198,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-27/4000-540198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558842/","id":558842,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-8/4000-558842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396497/","id":396497,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/relish-my-life-in-the-kitchen-1-gn/4000-396497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397564/","id":397564,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/happy-1-tpb/4000-397564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387253/","id":387253,"name":"Castaway in Dimension Z, Chapter Four","site_detail_url":"https://comicvine.gamespot.com/captain-america-4-castaway-in-dimension-z-chapter-/4000-387253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406970/","id":406970,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/watchmen-deluxe-edition-1-hc/4000-406970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387255/","id":387255,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-23/4000-387255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397678/","id":397678,"name":"Возвращение Анти-Венома. Часть 2. День откровений; Заражение. От стены к стене; Перекрестки; Никогда тебя не оставлю","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-15-vozvrashchieniie-anti/4000-397678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388551/","id":388551,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-59/4000-388551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387265/","id":387265,"name":"Hell On Earth War Part Three","site_detail_url":"https://comicvine.gamespot.com/x-factor-252-hell-on-earth-war-part-three/4000-387265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384964/","id":384964,"name":"Everything You Know is Wrong","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-3-everything-you-know-is-wrong/4000-384964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395697/","id":395697,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-enter-ninjak-1-volume-2/4000-395697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399008/","id":399008,"name":"The Waiting Game","site_detail_url":"https://comicvine.gamespot.com/morning-glories-26-the-waiting-game/4000-399008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396029/","id":396029,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-14/4000-396029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397581/","id":397581,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mars-attacks-idw-1-tpb/4000-397581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387223/","id":387223,"name":"The Big Dirt Nap, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/jsa-liberty-files-the-whistling-skull-3-the-big-di/4000-387223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397745/","id":397745,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-weapon-omega-1-volume-2/4000-397745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395734/","id":395734,"name":"Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/polarity-1-part-1-of-4/4000-395734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384955/","id":384955,"name":"Part Five","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-5-part-five/4000-384955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395476/","id":395476,"name":"Ends of the Earth, Part 1: My World On Fire; Ends of the Earth (Part 2): Earth's Mightiest; The Killing Cure","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-87-ends-of-the-earth-pa/4000-395476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395268/","id":395268,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-46/4000-395268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400206/","id":400206,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-11/4000-400206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396495/","id":396495,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/m3-1-volume-one/4000-396495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395714/","id":395714,"name":"Wish You Were Here, Part 4: Speechless","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-9-wish-you-were-here-part-4-speechles/4000-395714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396610/","id":396610,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-covenant-1-tpb/4000-396610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388558/","id":388558,"name":"My Bad Penny","site_detail_url":"https://comicvine.gamespot.com/hawkeye-8-my-bad-penny/4000-388558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398090/","id":398090,"name":"Watchmen","site_detail_url":"https://comicvine.gamespot.com/dc-absolute-edition-3-watchmen/4000-398090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385325/","id":385325,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-3-prelude-2-part-2/4000-385325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386139/","id":386139,"name":"Mission 001: Budapest","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-1-mission-001-budapest/4000-386139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387251/","id":387251,"name":"I Used to Be Big Time","site_detail_url":"https://comicvine.gamespot.com/alpha-big-time-1-i-used-to-be-big-time/4000-387251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388569/","id":388569,"name":"DYS","site_detail_url":"https://comicvine.gamespot.com/young-avengers-2-dys/4000-388569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388564/","id":388564,"name":"Thunder","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-4-thunder/4000-388564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390775/","id":390775,"name":"","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-rorschach-4/4000-390775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390440/","id":390440,"name":"Epic Matryoshka; untitled","site_detail_url":"https://comicvine.gamespot.com/a-x-5-epic-matryoshka-untitled/4000-390440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386133/","id":386133,"name":"Widow's Ledger","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-12-widow-s-ledger/4000-386133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395739/","id":395739,"name":"","site_detail_url":"https://comicvine.gamespot.com/miss-fury-1/4000-395739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398976/","id":398976,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-blue-diamond-1-volume-2/4000-398976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401528/","id":401528,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/strange-attractors-1-tpb/4000-401528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395905/","id":395905,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus-1-volume-1/4000-395905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396460/","id":396460,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-micro-/4000-396460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392312/","id":392312,"name":"Nothing Beside Remains","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-ozymandias-6-nothing-beside-remain/4000-392312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396473/","id":396473,"name":"Revolutionary, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-shadow-11-revolutionary-part-4/4000-396473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399030/","id":399030,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-12/4000-399030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397596/","id":397596,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-2/4000-397596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428112/","id":428112,"name":"Tome 1","site_detail_url":"https://comicvine.gamespot.com/the-strain-la-lignee-1-tome-1/4000-428112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399167/","id":399167,"name":"","site_detail_url":"https://comicvine.gamespot.com/silver-1/4000-399167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384969/","id":384969,"name":"Hell On Earth War Part Two","site_detail_url":"https://comicvine.gamespot.com/x-factor-251-hell-on-earth-war-part-two/4000-384969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387238/","id":387238,"name":"Fabletown by the Book: Chapter Two of Snow White","site_detail_url":"https://comicvine.gamespot.com/fables-126-fabletown-by-the-book-chapter-two-of-sn/4000-387238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388676/","id":388676,"name":"Change in Perspective","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-dr-manhattan-4-change-in-perspecti/4000-388676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405751/","id":405751,"name":"Band 1","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-1-band-1/4000-405751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399117/","id":399117,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-1-tpb/4000-399117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380352/","id":380352,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-9/4000-380352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381384/","id":381384,"name":"Family Reaches","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-16-family-reaches/4000-381384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381414/","id":381414,"name":"Old John Storm","site_detail_url":"https://comicvine.gamespot.com/ff-3-old-john-storm/4000-381414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382806/","id":382806,"name":"Stronger Than Monsters, Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-648-stronger-than-monsters-pa/4000-382806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382775/","id":382775,"name":"These Lifeless Things…!","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-ozymandias-5-these-lifeless-things/4000-382775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387644/","id":387644,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-5-volume-5/4000-387644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387291/","id":387291,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-19/4000-387291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387651/","id":387651,"name":"Volume 18","site_detail_url":"https://comicvine.gamespot.com/x-factor-breaking-points-1-volume-18/4000-387651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388594/","id":388594,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-secret-history-of/4000-388594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391252/","id":391252,"name":"Dying Wish","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-dying-wish-1-dying-wish/4000-391252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392556/","id":392556,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/hawkeye-my-life-as-a-weapon-1-volume-1/4000-392556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394740/","id":394740,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-secret-history-of/4000-394740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394737/","id":394737,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-20/4000-394737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381389/","id":381389,"name":"Bufferworld","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-16-bufferworld/4000-381389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395418/","id":395418,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-1-hc-tpb/4000-395418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378857/","id":378857,"name":"Hunt and Be Hunted","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-8-hunt-and-be-hunted/4000-378857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394692/","id":394692,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-massive-black-pacific-1-volume-1/4000-394692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384982/","id":384982,"name":"Sins of the Fathers","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-sins-of-the-fathers-1/4000-384982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397578/","id":397578,"name":"Part 11:The War's Not Over Until the Last Monster Goes Home!","site_detail_url":"https://comicvine.gamespot.com/godzilla-11-part-11-the-wars-not-over-until-the-la/4000-397578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392388/","id":392388,"name":"Who Ya Gonna Call?","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-4-who-ya-gonna-call/4000-392388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381416/","id":381416,"name":"Xtreme Krhyme Crew; The Power of Truth","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-10-xtreme-krhyme-crew-the-powe/4000-381416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498652/","id":498652,"name":"Fantastic Four 4: El Cruce","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-26-fantastic-four-4-el-cruc/4000-498652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498653/","id":498653,"name":"Spiderman 12: Hollywood","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-27-spiderman-12-hollywood/4000-498653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498881/","id":498881,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-26/4000-498881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392557/","id":392557,"name":"Volume 19","site_detail_url":"https://comicvine.gamespot.com/x-factor-short-stories-1-volume-19/4000-392557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538811/","id":538811,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-25/4000-538811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540197/","id":540197,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-26/4000-540197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387248/","id":387248,"name":"Prelude to Planet Death, Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-10-prelude-to-planet-death-part-two-of/4000-387248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382807/","id":382807,"name":"K.I.A.","site_detail_url":"https://comicvine.gamespot.com/punisher-nightmare-5-kia/4000-382807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380357/","id":380357,"name":"Demon in the Armor, Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-4-demon-in-the-armor-part/4000-380357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382776/","id":382776,"name":"I Want to be in Pictures","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-dollar-bill-1-i-want-to-be-in-pict/4000-382776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382763/","id":382763,"name":"Nightmares","site_detail_url":"https://comicvine.gamespot.com/talon-4-nightmares/4000-382763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389755/","id":389755,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-16/4000-389755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381405/","id":381405,"name":"Style > Substance","site_detail_url":"https://comicvine.gamespot.com/young-avengers-1-style-substance/4000-381405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380379/","id":380379,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-22/4000-380379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380350/","id":380350,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-16/4000-380350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381417/","id":381417,"name":"Numbers Game","site_detail_url":"https://comicvine.gamespot.com/punisher-nightmare-4-numbers-game/4000-381417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394716/","id":394716,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/maximum-minimum-wage-1-hc/4000-394716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395032/","id":395032,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-long-way-down-1-volume-10/4000-395032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395038/","id":395038,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/superman-the-death-and-return-of-superman-omnibus-/4000-395038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394727/","id":394727,"name":"Target Snake Eyes","site_detail_url":"https://comicvine.gamespot.com/gi-joe-target-snake-eyes-1-target-snake-eyes/4000-394727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390934/","id":390934,"name":"Pornland, Oregon; Girl In A Storm","site_detail_url":"https://comicvine.gamespot.com/sex-and-violence-1-pornland-oregon-girl-in-a-storm/4000-390934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380356/","id":380356,"name":"Imperiled","site_detail_url":"https://comicvine.gamespot.com/punisher-nightmare-3-imperiled/4000-380356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376824/","id":376824,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-4-part-four/4000-376824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392771/","id":392771,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1343/4000-392771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384963/","id":384963,"name":"Mutiny","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-37-mutiny/4000-384963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378896/","id":378896,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-3/4000-378896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391683/","id":391683,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1342/4000-391683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391251/","id":391251,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/sleeper-omnibus-1-hc/4000-391251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380358/","id":380358,"name":"The Unwanted","site_detail_url":"https://comicvine.gamespot.com/venom-30-the-unwanted/4000-380358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380359/","id":380359,"name":"Hell On Earth War Part One","site_detail_url":"https://comicvine.gamespot.com/x-factor-250-hell-on-earth-war-part-one/4000-380359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376633/","id":376633,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-breakdown-1-volume-2/4000-376633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377055/","id":377055,"name":"Part 1: Enemy Close","site_detail_url":"https://comicvine.gamespot.com/punisher-nightmare-1-part-1-enemy-close/4000-377055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376825/","id":376825,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-3-prelude-1-part-1/4000-376825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378868/","id":378868,"name":"Hero or Menace?","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-1-hero-or-menace/4000-378868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381419/","id":381419,"name":"Skull & Bones","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-3-skull-bones/4000-381419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381421/","id":381421,"name":"Ain't No Sin To Be Glad You're Alive","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-24-aint-no-sin-to-be-glad-/4000-381421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381413/","id":381413,"name":"Deadpool Killed the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/deadpool-killustrated-1-deadpool-killed-the-marvel/4000-381413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381420/","id":381420,"name":"Black Widow Hunt Conclusion","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-14-black-widow-hunt-conclusion/4000-381420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381418/","id":381418,"name":"Reconstruction, Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-20-reconstruction-part-2/4000-381418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382805/","id":382805,"name":"","site_detail_url":"https://comicvine.gamespot.com/hawkeye-7/4000-382805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382809/","id":382809,"name":"The Peter Principle","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-2-the-peter-principle/4000-382809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378895/","id":378895,"name":"End State","site_detail_url":"https://comicvine.gamespot.com/punisher-nightmare-2-end-state/4000-378895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380349/","id":380349,"name":"Faith in Monsters","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-11-faith-in-monsters/4000-380349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391249/","id":391249,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-prelude-hit-girl-1-hc/4000-391249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391253/","id":391253,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-1-tpb/4000-391253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392851/","id":392851,"name":"Учитель на замену. Часть 2; Заражение. Великая ответственность; Возвращение Анти-Венома. Часть 1. Призрак Джины ДеВольф; Заражение. Из ниоткуда","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-14-uchitiel-na-zamienu-c/4000-392851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378897/","id":378897,"name":"Grandfather Clock","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-36-grandfather-clock/4000-378897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394539/","id":394539,"name":"","site_detail_url":"https://comicvine.gamespot.com/voluntaryist-1/4000-394539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395413/","id":395413,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-tpb/4000-395413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395326/","id":395326,"name":"The Rules","site_detail_url":"https://comicvine.gamespot.com/red-team-2-the-rules/4000-395326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386970/","id":386970,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/avengers-season-one-1-gn/4000-386970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394748/","id":394748,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-10/4000-394748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395419/","id":395419,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-1-tpb/4000-395419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392394/","id":392394,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-donate/4000-392394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395037/","id":395037,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-by-rick-remender-3-volume-three/4000-395037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402499/","id":402499,"name":"Avengers: Legenden","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-103-avengers-legenden/4000-402499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391225/","id":391225,"name":"","site_detail_url":"https://comicvine.gamespot.com/watson-holmes-2/4000-391225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392343/","id":392343,"name":"Last Enemy","site_detail_url":"https://comicvine.gamespot.com/archer-and-armstrong-8-last-enemy/4000-392343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392387/","id":392387,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-2/4000-392387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390956/","id":390956,"name":"Grimm Fairy Tales #8; Sinbad #0; Return to Wonderland #0; Neverland #0; Unleashed: A Shadow Falls Bonus Prequel","site_detail_url":"https://comicvine.gamespot.com/best-of-zenescope-special-edition-1-grimm-fairy-ta/4000-390956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381596/","id":381596,"name":"Riding in Cars With Gods: Chapter One of Snow White","site_detail_url":"https://comicvine.gamespot.com/fables-125-riding-in-cars-with-gods-chapter-one-of/4000-381596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381493/","id":381493,"name":"The Minute of Truth, Chapter Six: The Last Minute","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-minutemen-6-the-minute-of-truth-ch/4000-381493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377060/","id":377060,"name":"Venom War; Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-19-venom-war-part-1/4000-377060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403988/","id":403988,"name":"Wettkampf Der Zauberer","site_detail_url":"https://comicvine.gamespot.com/fables-17-wettkampf-der-zauberer/4000-403988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371153/","id":371153,"name":"Heaven Sent","site_detail_url":"https://comicvine.gamespot.com/earth-2-7-heaven-sent/4000-371153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372339/","id":372339,"name":"Deathless","site_detail_url":"https://comicvine.gamespot.com/deathstroke-15-deathless/4000-372339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372567/","id":372567,"name":"Simon Says, Pie!; I Battled Gardoom--A Really Big Monster!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-9-simon-says-pie-i-battled-gar/4000-372567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373263/","id":373263,"name":"The Burden of God","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-15-the-burden-of-god/4000-373263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386289/","id":386289,"name":"Фантастическое путешествие. Часть 2; Учитель на замену. Часть 1","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-13-2-1/4000-386289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386487/","id":386487,"name":"Issue #11","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-11-issue-11/4000-386487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387065/","id":387065,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-1-volume-1/4000-387065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387648/","id":387648,"name":"Enter The Warzone, Prelude","site_detail_url":"https://comicvine.gamespot.com/punisher-by-greg-rucka-3-enter-the-warzone-prelude/4000-387648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388692/","id":388692,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-vs-shazam-1-tpb/4000-388692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388847/","id":388847,"name":"The Great Divide","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-4-the-great-divide/4000-388847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373268/","id":373268,"name":"In The Styx","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-15-in-the-styx/4000-373268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371199/","id":371199,"name":"The Hidden Kingdom Chapter Three: Lost in Translation","site_detail_url":"https://comicvine.gamespot.com/fairest-10-the-hidden-kingdom-chapter-three-lost-i/4000-371199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498651/","id":498651,"name":"Spiderman 11: Gatas y Reyes","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-25-spiderman-11-gatas-y-rey/4000-498651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573703/","id":573703,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/vigilante-project-3-homecoming/4000-573703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392376/","id":392376,"name":"","site_detail_url":"https://comicvine.gamespot.com/night-of-the-living-dead-aftermath-5/4000-392376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372349/","id":372349,"name":"Shattered Steel!","site_detail_url":"https://comicvine.gamespot.com/superboy-15-shattered-steel/4000-372349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376598/","id":376598,"name":"Sting of the Past","site_detail_url":"https://comicvine.gamespot.com/talon-3-sting-of-the-past/4000-376598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388846/","id":388846,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-northstar-1-volume-10/4000-388846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388932/","id":388932,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1341/4000-388932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388639/","id":388639,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/nemo-heart-of-ice-1-vol-1/4000-388639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386882/","id":386882,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-84/4000-386882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387645/","id":387645,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-the-good-the-green-and-the-ugl/4000-387645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387641/","id":387641,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-6-book-six/4000-387641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387650/","id":387650,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4000-387650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373310/","id":373310,"name":"Reconstruction, Part 1 of 6: Any Given Sunday","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-19-reconstruction-part-1/4000-373310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376612/","id":376612,"name":"Hawkman: Wanted, Part Five: Hunt's End","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-15-hawkman-wanted-part-five-hun/4000-376612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386457/","id":386457,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-final-execution-2-book-2/4000-386457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386078/","id":386078,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-omnibus-1-volume-1/4000-386078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386075/","id":386075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection-1/4000-386075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385076/","id":385076,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/7-miles-a-second-1-hc/4000-385076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371164/","id":371164,"name":"Being Monet St. Croix","site_detail_url":"https://comicvine.gamespot.com/x-factor-248-being-monet-st-croix/4000-371164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371255/","id":371255,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-2/4000-371255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371261/","id":371261,"name":"The Boneyard, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-39-the-boneyard-part-2/4000-371261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371103/","id":371103,"name":"Avengers World","site_detail_url":"https://comicvine.gamespot.com/avengers-1-avengers-world/4000-371103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371161/","id":371161,"name":"Chapter One: Mad, Bad and Dangerous to Know","site_detail_url":"https://comicvine.gamespot.com/human-bomb-1-chapter-one-mad-bad-and-dangerous-to-/4000-371161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371256/","id":371256,"name":"Dying Wish: Outside the Box","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-699-dying-wish-outside-the-/4000-371256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372449/","id":372449,"name":"Black Widow Hunt, Part 4","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-13-black-widow-hunt-part-4/4000-372449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373314/","id":373314,"name":"Inner Depths","site_detail_url":"https://comicvine.gamespot.com/x-factor-249-inner-depths/4000-373314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373300/","id":373300,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-21/4000-373300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373301/","id":373301,"name":"The Big Goodbye","site_detail_url":"https://comicvine.gamespot.com/ff-2-the-big-goodbye/4000-373301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373216/","id":373216,"name":"Six Days in the Life Of","site_detail_url":"https://comicvine.gamespot.com/hawkeye-6-six-days-in-the-life-of/4000-373216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373306/","id":373306,"name":"Tomorrow Will Rise","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-35-tomorrow-will-rise/4000-373306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373308/","id":373308,"name":"Weaponized","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-2-weaponized/4000-373308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373312/","id":373312,"name":"The Land Where the Killers Dwell","site_detail_url":"https://comicvine.gamespot.com/venom-28-the-land-where-the-killers-dwell/4000-373312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373316/","id":373316,"name":"Rainbows, Puppy Dogs & Sunshine","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-35-rainbows-puppy-dogs-sunshine/4000-373316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373805/","id":373805,"name":"Dying Wish: Suicide Run; Spider-Dreams; Date Night","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-700-dying-wish-suicide-run-/4000-373805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-374665/","id":374665,"name":"From One Nite Owl to Another","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-nite-owl-4-from-one-nite-owl-to-an/4000-374665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-374689/","id":374689,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-15-1/4000-374689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371235/","id":371235,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-3-part-three/4000-371235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373219/","id":373219,"name":"Black Panther + Storm; Hawkeye + Gambit","site_detail_url":"https://comicvine.gamespot.com/a-x-3-black-panther-storm-hawkeye-gambit/4000-373219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382808/","id":382808,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-4/4000-382808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386333/","id":386333,"name":"Новый Человек-Паук. Часть 5; Человек-Паук. Спецвыпуск","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-12--5-/4000-386333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385082/","id":385082,"name":"Birthright","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-shadowclan-1-birthright/4000-385082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388584/","id":388584,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-4/4000-388584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388849/","id":388849,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-5-volume-5/4000-388849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387298/","id":387298,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-year-one-1/4000-387298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387300/","id":387300,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-9/4000-387300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371158/","id":371158,"name":"The Minute of Truth, Chapter Five: The Demon Core; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Seven","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-minutemen-5-the-minute-of-truth-ch/4000-371158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373273/","id":373273,"name":"The Eleven-Thirty Absolution; The Curse of the Crmson Corsair: Wide Were His Dragon Wings, Conclusion","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-moloch-2-the-eleven-thirty-absolut/4000-373273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380724/","id":380724,"name":"L'intégrale 1989","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men-1-lintegrale-1989/4000-380724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371258/","id":371258,"name":"Believe, 3 of 5: It Makes Us Stronger","site_detail_url":"https://comicvine.gamespot.com/iron-man-3-believe-3-of-5-it-makes-us-stronger/4000-371258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386152/","id":386152,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-1/4000-386152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388585/","id":388585,"name":"Darkness on the Edge of Town","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-6-darkness-on-the-edge-of/4000-388585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387281/","id":387281,"name":"Part 10: His Whole Life Was A Million-To-One Shot","site_detail_url":"https://comicvine.gamespot.com/godzilla-10-part-10-his-whole-life-was-a-million-t/4000-387281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388612/","id":388612,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-1-tpb/4000-388612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373293/","id":373293,"name":"A Revolution in Oz, Chapter Eleven: Emperor Bufkin","site_detail_url":"https://comicvine.gamespot.com/fables-124-a-revolution-in-oz-chapter-eleven-emper/4000-373293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372456/","id":372456,"name":"Demon in the Armor, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-3-demon-in-the-armor-part/4000-372456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373309/","id":373309,"name":"United We Stand; Part 4; Prologue","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-18-united-we-stand-part/4000-373309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403989/","id":403989,"name":"Wachgeküsst","site_detail_url":"https://comicvine.gamespot.com/fairest-1-wachgekusst/4000-403989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387224/","id":387224,"name":"","site_detail_url":"https://comicvine.gamespot.com/happy-4/4000-387224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365759/","id":365759,"name":"Believe, 1 of 5: Demons and Genies","site_detail_url":"https://comicvine.gamespot.com/iron-man-1-believe-1-of-5-demons-and-genies/4000-365759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365760/","id":365760,"name":"In Wade We Trust","site_detail_url":"https://comicvine.gamespot.com/deadpool-1-in-wade-we-trust/4000-365760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366194/","id":366194,"name":"Rock the Microverse","site_detail_url":"https://comicvine.gamespot.com/avengers-33-rock-the-microverse/4000-366194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367810/","id":367810,"name":"Brain Games!","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-8/4000-367810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369055/","id":369055,"name":"The Tape, 1 of 2","site_detail_url":"https://comicvine.gamespot.com/hawkeye-4-the-tape-1-of-2/4000-369055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369093/","id":369093,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/avengers-34-the-end/4000-369093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369057/","id":369057,"name":"We Fought a Zoo","site_detail_url":"https://comicvine.gamespot.com/deadpool-2-we-fought-a-zoo/4000-369057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370250/","id":370250,"name":"Black Widow + Rogue; Iron Man + Kitty Pryde","site_detail_url":"https://comicvine.gamespot.com/ax-2-black-widow-rogue-iron-man-kitty-pryde/4000-370250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370277/","id":370277,"name":"The Origin of Wonder Girl, Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-14-the-origin-of-wonder-girl-part-2/4000-370277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380584/","id":380584,"name":"New World Orders","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-4-new-world-orders/4000-380584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381431/","id":381431,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-secret-history-of/4000-381431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381790/","id":381790,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-culling-rise-of-the-ravagers-1-tpb/4000-381790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383488/","id":383488,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-reunited-they-stand-1-tpb/4000-383488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381594/","id":381594,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-18/4000-381594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398120/","id":398120,"name":"Protecting the Lady","site_detail_url":"https://comicvine.gamespot.com/transformers-prime-13-protecting-the-lady/4000-398120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370281/","id":370281,"name":"Hawkman: Wanted, Part Four: Birds of a Feather","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-14-hawkman-wanted-part-four-bir/4000-370281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367678/","id":367678,"name":"Hawkman: Wanted, Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/deathstroke-14-hawkman-wanted-part-3-of-6/4000-367678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380403/","id":380403,"name":"The Lockdown, Part 6","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-81-the-lockdown-part-6/4000-380403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380347/","id":380347,"name":"Volume 18","site_detail_url":"https://comicvine.gamespot.com/fables-cubs-in-toyland-1-volume-18/4000-380347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498649/","id":498649,"name":"Spiderman 10: Los Seis Siniestros","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-23-spiderman-10-los-seis-si/4000-498649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513280/","id":513280,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-7/4000-513280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538256/","id":538256,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-5/4000-538256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366178/","id":366178,"name":"The Hidden Kingdom Chapter Two: Hard-Boiled Wonderland","site_detail_url":"https://comicvine.gamespot.com/fairest-9-the-hidden-kingdom-chapter-two-hard-boil/4000-366178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441529/","id":441529,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/journey-by-starlight-1-gn/4000-441529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498648/","id":498648,"name":"Daredevil & Elektra: Justicia Para El Diablo","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-22-daredevil-and-elektra-ju/4000-498648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381423/","id":381423,"name":"Prelude to Planet Death, Part One of Two","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-9-prelude-to-planet-death-part-one-of-/4000-381423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381788/","id":381788,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-sabretooth-reborn-1-hc/4000-381788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389752/","id":389752,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-14/4000-389752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383432/","id":383432,"name":"Chapter Nine: Sparkle and Fade; Chapter Ten: Scarlet Waves; Chapter Eleven: Consuming Lust; Chapter Twelve: Quantum Est?; Chapter Thirteen: Echoes Grim; Chapter Fourteen: Alpha Chimera","site_detail_url":"https://comicvine.gamespot.com/the-tower-chronicles-geisthawk-3-chapter-nine-spar/4000-383432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367684/","id":367684,"name":"Visitations","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-2-visitations/4000-367684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386486/","id":386486,"name":"Issue #10","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-10-issue-10/4000-386486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386846/","id":386846,"name":"Новый железный век","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-10-wikiissue/4000-386846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368087/","id":368087,"name":"The Face of H'el","site_detail_url":"https://comicvine.gamespot.com/superboy-14-the-face-of-hel/4000-368087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370459/","id":370459,"name":"Winterlong","site_detail_url":"https://comicvine.gamespot.com/i-vampire-14-winterlong/4000-370459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367674/","id":367674,"name":"Desperate Times","site_detail_url":"https://comicvine.gamespot.com/legion-lost-14-desperate-times/4000-367674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366376/","id":366376,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-avengers-vs-x-men/4000-366376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381446/","id":381446,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-spider-terror-of-the-zombie-queen-1-volume-1/4000-381446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381406/","id":381406,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-books-of-magic-deluxe-edition-1-hc/4000-381406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380378/","id":380378,"name":"","site_detail_url":"https://comicvine.gamespot.com/archer-and-armstrong-6/4000-380378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383934/","id":383934,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-81/4000-383934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380711/","id":380711,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-d/4000-380711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365737/","id":365737,"name":"Superman's Mission To Mars; Star Light, Star Bright","site_detail_url":"https://comicvine.gamespot.com/action-comics-14-supermans-mission-to-mars-star-li/4000-365737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366186/","id":366186,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-2-part-two/4000-366186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366197/","id":366197,"name":"A Tangled Web","site_detail_url":"https://comicvine.gamespot.com/new-avengers-32-a-tangled-web/4000-366197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373934/","id":373934,"name":"Fear Itself: Day one; My friends can beat up your friends: part 3; Spider-Man Noir: part 1","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-80-fear-itself-day-one-/4000-373934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366190/","id":366190,"name":"Commencement","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-39-commencement/4000-366190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366185/","id":366185,"name":"Short Story","site_detail_url":"https://comicvine.gamespot.com/x-factor-246-short-story/4000-366185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367719/","id":367719,"name":"Part 2: Invictus","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-2-part-2-invictus/4000-367719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367700/","id":367700,"name":"Science Bros!","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-9-science-bros/4000-367700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367696/","id":367696,"name":"Unstable","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1-unstable/4000-367696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367808/","id":367808,"name":"Danger Zone, Part Three: War of the Goblins","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-697-danger-zone-part-three-/4000-367808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369056/","id":369056,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-20/4000-369056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369103/","id":369103,"name":"Dying Wish Prelude: Day in the Life","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-698-dying-wish-prelude-day-/4000-369103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369027/","id":369027,"name":"The Secret of the Cheetah, Chapter Two; Shazam!, Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/justice-league-14-the-secret-of-the-cheetah-chapte/4000-369027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370244/","id":370244,"name":"Parts of a Hole","site_detail_url":"https://comicvine.gamespot.com/ff-1-parts-of-a-hole/4000-370244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370564/","id":370564,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/new-avengers-34-the-end/4000-370564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370568/","id":370568,"name":"The Evil Inside Us All...","site_detail_url":"https://comicvine.gamespot.com/venom-27-1-the-evil-inside-us-all/4000-370568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370249/","id":370249,"name":"Skullduggery","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-2-skullduggery/4000-370249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370284/","id":370284,"name":"Shattered Visage...!; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Five","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-ozymandias-4-shattered-visage-the-/4000-370284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370566/","id":370566,"name":"Demon in the Armor, Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-2-demon-in-the-armor-part/4000-370566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372351/","id":372351,"name":"The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Eight","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-rorschach-3-the-curse-of-the-crims/4000-372351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372350/","id":372350,"name":"Ego Sum; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Nine","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-dr-manhattan-3-ego-sum-the-curse-o/4000-372350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369072/","id":369072,"name":"Covenant, Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-316-covenant-part-3/4000-369072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378943/","id":378943,"name":"Wish You Were Here, Part 2: Clouded Eyes, Broken Hearts","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-7-wish-you-were-here-part-2-clouded-e/4000-378943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380697/","id":380697,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-final-exams-1-hc-tpb/4000-380697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381443/","id":381443,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-3/4000-381443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382802/","id":382802,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-the-villains-journey-1-volume-2/4000-382802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383490/","id":383490,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-divided-we-fall-united-we-stand-1-/4000-383490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383487/","id":383487,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-the-end-is-the-beginning-1-tpb/4000-383487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369079/","id":369079,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-56/4000-369079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366182/","id":366182,"name":"The Boneyard, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-38-the-boneyard-part-1/4000-366182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381075/","id":381075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-the-end-1-tpb/4000-381075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379160/","id":379160,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/nova-classic-1-volume-1/4000-379160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444731/","id":444731,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-season-one-1/4000-444731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424805/","id":424805,"name":"","site_detail_url":"https://comicvine.gamespot.com/unit-5-1/4000-424805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380387/","id":380387,"name":"Street Level","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-5-street-level/4000-380387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377052/","id":377052,"name":"Part 8:Somewhere Somehow Something is going to pay","site_detail_url":"https://comicvine.gamespot.com/godzilla-8-part-8-somewhere-somehow-something-is-g/4000-377052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381427/","id":381427,"name":"Part 9: The Night the Giant Monsters Came Home","site_detail_url":"https://comicvine.gamespot.com/godzilla-9-part-9-the-night-the-giant-monsters-cam/4000-381427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376607/","id":376607,"name":"The Death of Everyone, Part Two","site_detail_url":"https://comicvine.gamespot.com/invincible-99-the-death-of-everyone-part-two/4000-376607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405376/","id":405376,"name":"2013 Annual Special","site_detail_url":"https://comicvine.gamespot.com/the-phantom-1653-2013-annual-special/4000-405376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380375/","id":380375,"name":"","site_detail_url":"https://comicvine.gamespot.com/mars-attacks-the-real-ghostbusters-1/4000-380375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359849/","id":359849,"name":"The Hidden Kingdom Chapter One: Big in Japan","site_detail_url":"https://comicvine.gamespot.com/fairest-8-the-hidden-kingdom-chapter-one-big-in-ja/4000-359849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360932/","id":360932,"name":"End Times","site_detail_url":"https://comicvine.gamespot.com/avengers-31-end-times/4000-360932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363151/","id":363151,"name":"Inner Space","site_detail_url":"https://comicvine.gamespot.com/avengers-32-inner-space/4000-363151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372427/","id":372427,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-17/4000-372427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371218/","id":371218,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-micro-/4000-371218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377059/","id":377059,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-secret-history-of/4000-377059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371263/","id":371263,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-by-the-sword-1-volume-1/4000-371263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390031/","id":390031,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-danger-zone-1-hc-tpb/4000-390031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373281/","id":373281,"name":"Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-the-return-of-the-master-102/4000-373281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372504/","id":372504,"name":"The Lockdown, Part 5","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-80-the-lockdown-part-5/4000-372504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460063/","id":460063,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/george-r-r-martins-wild-cards-the-hard-call-1-hc/4000-460063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498647/","id":498647,"name":"Fantastic Four 3: Zona-N","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-21-fantastic-four-3-zona-n/4000-498647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498646/","id":498646,"name":"Spiderman 9: Irresponsable","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-20-spiderman-9-irresponsabl/4000-498646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513278/","id":513278,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-6/4000-513278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373370/","id":373370,"name":"Vauxhall Cross","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-8-vauxhall-cross/4000-373370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397951/","id":397951,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-in-pursuit-of-flight-1-volume-1/4000-397951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360802/","id":360802,"name":"Law and Disorder","site_detail_url":"https://comicvine.gamespot.com/superboy-13-law-and-disorder/4000-360802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362166/","id":362166,"name":"All The Rage","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-13-all-the-rage/4000-362166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363153/","id":363153,"name":"Finale","site_detail_url":"https://comicvine.gamespot.com/captain-america-19-finale/4000-363153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345209/","id":345209,"name":"Amazing Spider-Man: Trouble on the Horizon","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-trouble-on-the-horizon-1-amazin/4000-345209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373826/","id":373826,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1331/4000-373826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-374635/","id":374635,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/dc-absolute-edition-2-brightest-day/4000-374635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402579/","id":402579,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-3/4000-402579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372564/","id":372564,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-4-volume-4/4000-372564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362284/","id":362284,"name":"The Secret of the Cheetah, Part One; On the Outs","site_detail_url":"https://comicvine.gamespot.com/justice-league-13-the-secret-of-the-cheetah-part-o/4000-362284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373931/","id":373931,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-12/4000-373931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364154/","id":364154,"name":"United We Stand; Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-18-united-we-stand-chapter-t/4000-364154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359935/","id":359935,"name":"Part 2; The Curse of the Crimson Corsair: The Evil That Men Do, Part Eight","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-rorschach-2-part-2-the-curse-of-th/4000-359935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360039/","id":360039,"name":"Danger Zone, Part One: Warning Signs","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-695-danger-zone-part-one-wa/4000-360039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360918/","id":360918,"name":"United We Stand; Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-17-united-we-stand-chapter-t/4000-360918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360884/","id":360884,"name":"New Union","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1-new-union/4000-360884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360933/","id":360933,"name":"Part 1: Powerless","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-1-part-1-powerless/4000-360933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362169/","id":362169,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-19/4000-362169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362203/","id":362203,"name":"Breaking Points: Day 5","site_detail_url":"https://comicvine.gamespot.com/x-factor-245-breaking-points-day-5/4000-362203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362257/","id":362257,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-point-one-1/4000-362257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362170/","id":362170,"name":"Cherry","site_detail_url":"https://comicvine.gamespot.com/hawkeye-3-cherry/4000-362170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363161/","id":363161,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-1/4000-363161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363156/","id":363156,"name":"A Fantastic Four Epilogue; Run","site_detail_url":"https://comicvine.gamespot.com/ff-23-a-fantastic-four-epilogue-run/4000-363156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364134/","id":364134,"name":"Point-One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-16-1-point-one/4000-364134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364152/","id":364152,"name":"Black Widow Hunt, Part 3","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-12-black-widow-hunt-part-3/4000-364152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364163/","id":364163,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-annual-1/4000-364163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364153/","id":364153,"name":"Fight For the Future; untitled","site_detail_url":"https://comicvine.gamespot.com/a-x-1-fight-for-the-future-untitled/4000-364153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372410/","id":372410,"name":"Magnificent Obsessions","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-4-magnificent-obsessions/4000-372410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373266/","id":373266,"name":"","site_detail_url":"https://comicvine.gamespot.com/happy-3/4000-373266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373335/","id":373335,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-7/4000-373335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373333/","id":373333,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-2/4000-373333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362228/","id":362228,"name":"Demon in the Armor, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-1-demon-in-the-armor-part/4000-362228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363157/","id":363157,"name":"She's the End of the World","site_detail_url":"https://comicvine.gamespot.com/gambit-4-shes-the-end-of-the-world/4000-363157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360920/","id":360920,"name":"Covenant, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-314-covenant-part-1/4000-360920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370283/","id":370283,"name":"The End of the Rainbow; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Three","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-silk-spectre-4-the-end-of-the-rain/4000-370283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377051/","id":377051,"name":"The Doctor and the Nurse, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/doctor-who-4-the-doctor-and-the-nurse-part-2-of-2/4000-377051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362163/","id":362163,"name":"The Minute of Truth, Chapter Four: War Stories; The Curse of the Crimson Corsair: Wide Were His Dragon Wings, Part Two","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-minutemen-4-the-minute-of-truth-ch/4000-362163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-374687/","id":374687,"name":"Veterans of A Foreign War","site_detail_url":"https://comicvine.gamespot.com/the-shadow-special-1-veterans-of-a-foreign-war/4000-374687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372402/","id":372402,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-9/4000-372402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361051/","id":361051,"name":"Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/ame-comi-girls-featuring-1-wonder-woman/4000-361051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372419/","id":372419,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-16/4000-372419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371155/","id":371155,"name":"The Death of Everyone, Part One","site_detail_url":"https://comicvine.gamespot.com/invincible-98-the-death-of-everyone-part-one/4000-371155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362193/","id":362193,"name":"United We Stand; Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-16-united-we-stand-part/4000-362193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358823/","id":358823,"name":"Young Bastards","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-0-young-bastards/4000-358823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358884/","id":358884,"name":"Training Wheels; And Sometimes You Get What You Need!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-6-training-wheels-and-sometime/4000-358884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366475/","id":366475,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/venom-the-savage-six-1-tpb/4000-366475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369477/","id":369477,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/the-annotated-sandman-2-volume-two/4000-369477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370361/","id":370361,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-16/4000-370361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369100/","id":369100,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/retrovirus-1-hc/4000-369100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371489/","id":371489,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-the-punisher-max-1-tpb/4000-371489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371217/","id":371217,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teenage-mutant-ninja-turtles-1-volume/4000-371217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367715/","id":367715,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-strain-1-volume-1/4000-367715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369127/","id":369127,"name":"The Lockdown, Part 4","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-79-the-lockdown-part-4/4000-369127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368292/","id":368292,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/fables-werewolves-of-the-heartland-1-hc/4000-368292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513275/","id":513275,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-5/4000-513275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466263/","id":466263,"name":"Volume 17","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-road-to-redemption-1-volume-17/4000-466263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365788/","id":365788,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/the-shadow-the-fire-of-creation-1-tpbhc/4000-365788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538254/","id":538254,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-3/4000-538254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538255/","id":538255,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-4/4000-538255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498643/","id":498643,"name":"X-Men 5: El Retorno Del Rey","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-17-x-men-5-el-retorno-del-r/4000-498643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498645/","id":498645,"name":"Galactus 2: La Extinción","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-19-galactus-2-la-extincion/4000-498645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402047/","id":402047,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-1/4000-402047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386287/","id":386287,"name":"Вечный огонь; Чертовски плохое обслуживание. Часть 1","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-11-1/4000-386287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386485/","id":386485,"name":"Мстители будущего. Часть 6; Одержимость. Часть 6","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-9-6-6/4000-386485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393923/","id":393923,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/infestation-2-1-hc/4000-393923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358924/","id":358924,"name":"Human Being, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-36-human-being-part-1/4000-358924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358974/","id":358974,"name":"United We Stand, Part One: The Call of the People","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-16-united-we-stand-part-/4000-358974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358907/","id":358907,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-16/4000-358907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372242/","id":372242,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-77/4000-372242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369075/","id":369075,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/fairest-wide-awake-1-volume-1/4000-369075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367692/","id":367692,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-demon-reborn-4/4000-367692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368293/","id":368293,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-men-1-hc/4000-368293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367751/","id":367751,"name":"Haunted America","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-3-haunted-america/4000-367751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362554/","id":362554,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-11/4000-362554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365770/","id":365770,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-2-vol-2/4000-365770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355887/","id":355887,"name":"Alpha, Part 2: That Something Special","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-693-alpha-part-2-that-somet/4000-355887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355858/","id":355858,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-15/4000-355858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355864/","id":355864,"name":"Monsters of Evil, Part 2","site_detail_url":"https://comicvine.gamespot.com/venom-24-monsters-of-evil-part-2/4000-355864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355877/","id":355877,"name":"Breaking Points: Day 3","site_detail_url":"https://comicvine.gamespot.com/x-factor-243-breaking-points-day-3/4000-355877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355860/","id":355860,"name":"The Vagabond Code","site_detail_url":"https://comicvine.gamespot.com/hawkeye-2-the-vagabond-code/4000-355860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355993/","id":355993,"name":"Divided We Fall Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-14-divided-we-fall-part/4000-355993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356775/","id":356775,"name":"Black Widow Hunt, Part 1","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-10-black-widow-hunt-part-1/4000-356775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356773/","id":356773,"name":"In The Trenches","site_detail_url":"https://comicvine.gamespot.com/new-avengers-30-in-the-trenches/4000-356773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357635/","id":357635,"name":"Thanks For Coming; The Curse of the Crimson Corsair: The Evil That Men Do, Part Six","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-nite-owl-3-thanks-for-coming-the-c/4000-357635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357644/","id":357644,"name":"Breaking Points: Day 4","site_detail_url":"https://comicvine.gamespot.com/x-factor-244-breaking-points-day-4/4000-357644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357702/","id":357702,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-18/4000-357702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357711/","id":357711,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-5/4000-357711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358908/","id":358908,"name":"Black Widow Hunt, Part 2","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-11-black-widow-hunt-part-2/4000-358908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359254/","id":359254,"name":"","site_detail_url":"https://comicvine.gamespot.com/thanos-the-final-threat-1/4000-359254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355879/","id":355879,"name":"Let's Get Small","site_detail_url":"https://comicvine.gamespot.com/defenders-10-lets-get-small/4000-355879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365769/","id":365769,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-6/4000-365769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369124/","id":369124,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-6/4000-369124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369041/","id":369041,"name":"Wish You Were Here, Part 1: Sleep Furiously","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-6-wish-you-were-here-part-1-sleep-fur/4000-369041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370883/","id":370883,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-atom-evolution-1-volume-1/4000-370883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370327/","id":370327,"name":"","site_detail_url":"https://comicvine.gamespot.com/masks-1/4000-370327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373090/","id":373090,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-6-volume-6/4000-373090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356779/","id":356779,"name":"The Fires of Hell A-Glowing","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-16-the-fires-of-hell-a-glo/4000-356779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357712/","id":357712,"name":"United We Stand; Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-15-united-we-stand-part/4000-357712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357713/","id":357713,"name":"Monsters of Evil, Part 3","site_detail_url":"https://comicvine.gamespot.com/venom-25-monsters-of-evil-part-3/4000-357713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386332/","id":386332,"name":"Новый Человек-Паук. Часть 3; Новый Человек-Паук. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-11--3-4/4000-386332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386398/","id":386398,"name":"Иллюзионист","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-8-wikiissue/4000-386398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386622/","id":386622,"name":"Тор: Первая гроза. Часть 3. Финал","site_detail_url":"https://comicvine.gamespot.com/tor-mega-komiks-8-3/4000-386622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358825/","id":358825,"name":"The Heart That Fed!; The Curse of the Crimson Corsair: The Evil That Men Do, Part Seven","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-ozymandias-3-the-heart-that-fed-th/4000-358825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365787/","id":365787,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-7/4000-365787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370357/","id":370357,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-15/4000-370357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462180/","id":462180,"name":"Marvels","site_detail_url":"https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-13-marvels/4000-462180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462185/","id":462185,"name":"Daredevil: Born Again","site_detail_url":"https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-8-daredevil/4000-462185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365772/","id":365772,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-kiss-ii-4/4000-365772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349629/","id":349629,"name":"A Prophecy of Death","site_detail_url":"https://comicvine.gamespot.com/legion-lost-12-a-prophecy-of-death/4000-349629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350906/","id":350906,"name":"Blood Beetle","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-12-blood-beetle/4000-350906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358883/","id":358883,"name":"The Finals Countdown; Nothing Can Stop... the Trapster?1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-5-the-finals-countdown-nothing/4000-358883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360044/","id":360044,"name":"","site_detail_url":"https://comicvine.gamespot.com/robyn-hood-1/4000-360044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362428/","id":362428,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-the-ring-bearer-1-volu/4000-362428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363374/","id":363374,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/supercrooks-1-hc-tpb/4000-363374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363118/","id":363118,"name":"The Lockdown, Part 3","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-78-the-lockdown-part-3/4000-363118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364147/","id":364147,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-15/4000-364147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364146/","id":364146,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-annual-2012-1/4000-364146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365039/","id":365039,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-final-execution-1-book-1/4000-365039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362196/","id":362196,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-intimate-strangers-1-volume-1/4000-362196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382105/","id":382105,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-final-crisis-1-hc/4000-382105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384574/","id":384574,"name":"Volume 16","site_detail_url":"https://comicvine.gamespot.com/x-factor-together-again-for-the-first-time-1-volum/4000-384574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352696/","id":352696,"name":"Part IV: Punisher Punished!","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-4-part-iv-punis/4000-352696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357736/","id":357736,"name":"The Serpent Crown","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-5/4000-357736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364138/","id":364138,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-14/4000-364138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498642/","id":498642,"name":"Spiderman 8: Veneno","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-16-spiderman-8-veneno/4000-498642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513273/","id":513273,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-4/4000-513273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382863/","id":382863,"name":"Volume One: New Generation","site_detail_url":"https://comicvine.gamespot.com/super-street-fighter-1-volume-one-new-generation/4000-382863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362541/","id":362541,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-tommy-taylor-and-the-war-of-the-word/4000-362541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359901/","id":359901,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/voltron-the-sixth-pilot-1-volume-one/4000-359901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538253/","id":538253,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-2/4000-538253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418286/","id":418286,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-1-tpb/4000-418286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498641/","id":498641,"name":"X-Men 4: Fuego Infernal y Azufre","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-15-x-men-4-fuego-infernal-y/4000-498641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362219/","id":362219,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/lovecraft-anthology-2-volume-2/4000-362219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386484/","id":386484,"name":"Мстители будущего. Часть 5; Одержимость. Часть 5","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-8-5-5/4000-386484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352472/","id":352472,"name":"Armored Up and Out!; When Dinosaurs Walked the Earth: Epilogue","site_detail_url":"https://comicvine.gamespot.com/teen-titans-12-armored-up-and-out-when-dinosaurs-w/4000-352472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350907/","id":350907,"name":"When Dinosaurs Walked the Earth (That Would be Today)","site_detail_url":"https://comicvine.gamespot.com/dc-universe-presents-12-when-dinosaurs-walked-the-/4000-350907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364818/","id":364818,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-41/4000-364818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362250/","id":362250,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-demon-reborn-3/4000-362250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351057/","id":351057,"name":"No Turning Back, Part 4: Human Error","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-691-no-turning-back-part-4-/4000-351057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402578/","id":402578,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-2/4000-402578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441301/","id":441301,"name":"Final Exam","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-1-final-exam/4000-441301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348059/","id":348059,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-16/4000-348059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348048/","id":348048,"name":"Lucky","site_detail_url":"https://comicvine.gamespot.com/hawkeye-1-lucky/4000-348048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348055/","id":348055,"name":"Sideways Into 1967","site_detail_url":"https://comicvine.gamespot.com/defenders-9-sideways-into-1967/4000-348055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348067/","id":348067,"name":"Children of the Atom","site_detail_url":"https://comicvine.gamespot.com/the-first-x-men-1-children-of-the-atom/4000-348067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348057/","id":348057,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-10/4000-348057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348069/","id":348069,"name":"Divided We Fall, Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-13-divided-we-fall-part/4000-348069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349631/","id":349631,"name":"Night Games!","site_detail_url":"https://comicvine.gamespot.com/superboy-12-night-games/4000-349631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349649/","id":349649,"name":"Monsters! Part One","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-33-1-monsters-part-one/4000-349649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348066/","id":348066,"name":"Salvation","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-6-salvation/4000-348066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349639/","id":349639,"name":"Part II: Avengers: Assassinated","site_detail_url":"https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-2-part-ii-aveng/4000-349639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349643/","id":349643,"name":"Once a Thief..., Part One","site_detail_url":"https://comicvine.gamespot.com/gambit-1-once-a-thief-part-one/4000-349643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351095/","id":351095,"name":"Monsters! Part Two","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-33-2-monsters-part-two/4000-351095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351053/","id":351053,"name":"Damntown; The Curse of the Crimson Corsair: The Evil That Men Do, Part One","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-rorschach-1-damntown-the-curse-of-/4000-351053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350914/","id":350914,"name":"The Great Divide","site_detail_url":"https://comicvine.gamespot.com/daredevil-17-the-great-divide/4000-350914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348126/","id":348126,"name":"Breaking Points: Day 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-241-breaking-points-day-1/4000-348126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352701/","id":352701,"name":"...Someone is Killing the Brooklyn Avengers, Part One","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-129-1-someone-is-killing-the-bro/4000-352701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352465/","id":352465,"name":"What's in the Box?; The Curse of the Crimson Corsair: The Evil That Men Do, Part Two","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-dr-manhattan-1-whats-in-the-box-th/4000-352465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354168/","id":354168,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-11/4000-354168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354132/","id":354132,"name":"Brooklyn Avengers, Part Two","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-129-2-brooklyn-avengers-part-two/4000-354132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354151/","id":354151,"name":"Looker","site_detail_url":"https://comicvine.gamespot.com/national-comics-looker-1-looker/4000-354151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362543/","id":362543,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/supergirl-last-daughter-of-krypton-1-volume-1/4000-362543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363372/","id":363372,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-darkness-rising-1-volume-1/4000-363372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364097/","id":364097,"name":"","site_detail_url":"https://comicvine.gamespot.com/happy-2/4000-364097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363109/","id":363109,"name":"Just Take It - The Concrete Jungle 2 of 2","site_detail_url":"https://comicvine.gamespot.com/lord-of-the-jungle-8-just-take-it-the-concrete-jun/4000-363109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364142/","id":364142,"name":"Halloween; Veterans Day; Thanksgiving; Christmas","site_detail_url":"https://comicvine.gamespot.com/mars-attacks-holidays-1-halloween-veterans-day-tha/4000-364142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386331/","id":386331,"name":"Новый Человек-Паук. Часть 1; Новый Человек-Паук. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-10--1-2/4000-386331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386397/","id":386397,"name":"Ящер Баскервилей","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-7-wikiissue/4000-386397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386621/","id":386621,"name":"Тор: Первая гроза. Часть 2. Месть Локи","site_detail_url":"https://comicvine.gamespot.com/tor-mega-komiks-7-2/4000-386621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352647/","id":352647,"name":"Monsters of Evil, Part 1","site_detail_url":"https://comicvine.gamespot.com/venom-23-monsters-of-evil-part-1/4000-352647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349633/","id":349633,"name":"The Hand that Mocked Them...!; The Curse of the Crimson Corsair: The Devil in the Deep, Part Ten","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-ozymandias-2-the-hand-that-mocked-/4000-349633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348045/","id":348045,"name":"Some Things are Just Inevitable; The Curse of the Crimson Corsair: The Devil in the Deep, Part Nine","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-nite-owl-2-some-things-are-just-in/4000-348045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388148/","id":388148,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-zomnibus-1-hc/4000-388148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410798/","id":410798,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-410798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426413/","id":426413,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/man-thing-omnibus-1-hc/4000-426413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362236/","id":362236,"name":"The Grand Illusion","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-2-the-grand-illusion/4000-362236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364139/","id":364139,"name":"Part 6: They Had Nothing Left to Lose But Each Other","site_detail_url":"https://comicvine.gamespot.com/godzilla-6-part-6-they-had-nothing-left-to-lose-bu/4000-364139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349675/","id":349675,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-4/4000-349675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403992/","id":403992,"name":"Das Ende","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-9-das-ende/4000-403992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345406/","id":345406,"name":"Through a Dark Glass Paradoxically","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-33-through-a-dark-glass-para/4000-345406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346232/","id":346232,"name":"All That Glitters","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-11-all-that-glitters/4000-346232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356139/","id":356139,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-its-our-right-to-fight-1-vol-1/4000-356139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355828/","id":355828,"name":"Fugitoid","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-8-fugito/4000-355828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357776/","id":357776,"name":"Book III","site_detail_url":"https://comicvine.gamespot.com/100-bullets-the-deluxe-edition-3-book-iii/4000-357776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358882/","id":358882,"name":"Take Me Out At the Ball Game; Don't Rain on My Parade!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-4-take-me-out-at-the-ball-game/4000-358882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358905/","id":358905,"name":"Children of the Dragon","site_detail_url":"https://comicvine.gamespot.com/the-shadow-annual-1-children-of-the-dragon/4000-358905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359170/","id":359170,"name":"Shadows of the Past ","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-shadows-of-the-past-1/4000-359170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358859/","id":358859,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-14/4000-358859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357705/","id":357705,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-bad-girls-2/4000-357705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357023/","id":357023,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-season-one-1-gn/4000-357023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411526/","id":411526,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-like-lightning-1-tpb/4000-411526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356124/","id":356124,"name":"The Lockdown, Part 2","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-77-the-lockdown-part-2/4000-356124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358857/","id":358857,"name":"Target Snake Eyes Prelude","site_detail_url":"https://comicvine.gamespot.com/snake-eyes-and-storm-shadow-17-target-snake-eyes-p/4000-358857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419363/","id":419363,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-league-201-1/4000-419363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498639/","id":498639,"name":"Fantastic Four 2: Muerte","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-13-fantastic-four-2-muerte/4000-498639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498640/","id":498640,"name":"Spiderman 7: Escrutinio Público","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-14-spiderman-7-escrutinio-p/4000-498640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513272/","id":513272,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-3/4000-513272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358960/","id":358960,"name":"Chapter One: Living Relic; Chapter Two: Gnawing Hunger; Chapter Three: Razor Burn","site_detail_url":"https://comicvine.gamespot.com/the-tower-chronicles-geisthawk-1-chapter-one-livin/4000-358960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538251/","id":538251,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-1/4000-538251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393885/","id":393885,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/vampirella-vs-dracula-1-tpb/4000-393885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538805/","id":538805,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-19/4000-538805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540191/","id":540191,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-20/4000-540191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558835/","id":558835,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-1/4000-558835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345353/","id":345353,"name":"Brothers-in-Harm!","site_detail_url":"https://comicvine.gamespot.com/superboy-11-brothers-in-harm/4000-345353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346236/","id":346236,"name":"Outsider","site_detail_url":"https://comicvine.gamespot.com/supergirl-11-outsider/4000-346236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347168/","id":347168,"name":"Wonder Wonder Who; When Dinosaurs Walked the Earth","site_detail_url":"https://comicvine.gamespot.com/teen-titans-11-wonder-wonder-who-when-dinosaurs-wa/4000-347168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362555/","id":362555,"name":"The Return Of Giant-Man!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-40-the-return-of-giant-/4000-362555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345350/","id":345350,"name":"The Enemy Unseen!","site_detail_url":"https://comicvine.gamespot.com/legion-lost-11-the-enemy-unseen/4000-345350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370885/","id":370885,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-lizard-no-turning-back-1-tp/4000-370885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358915/","id":358915,"name":"Halloween Classics","site_detail_url":"https://comicvine.gamespot.com/graphic-classics-23-halloween-classics/4000-358915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375511/","id":375511,"name":"Dead or Alive 5 Art Book","site_detail_url":"https://comicvine.gamespot.com/dead-or-alive-5-art-book-1-dead-or-alive-5-art-boo/4000-375511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359128/","id":359128,"name":"Blackest Night","site_detail_url":"https://comicvine.gamespot.com/dc-absolute-edition-1-blackest-night/4000-359128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359212/","id":359212,"name":"Omega Effect","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-3-omega-effect/4000-359212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357694/","id":357694,"name":"","site_detail_url":"https://comicvine.gamespot.com/rich-johnstons-the-avengefuls-1/4000-357694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356741/","id":356741,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-8-library-edition-/4000-356741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380843/","id":380843,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-invasion-1-tpb/4000-380843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355048/","id":355048,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-9/4000-355048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355955/","id":355955,"name":"Down With the One Percent","site_detail_url":"https://comicvine.gamespot.com/archer-and-armstrong-2-down-with-the-one-percent/4000-355955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355912/","id":355912,"name":"Intimate Strangers, Part 4: Big. Bad.","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-4-intimate-strangers-part-4-big-bad/4000-355912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362552/","id":362552,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/the-flash-omnibus-by-geoff-johns-3-vol-3/4000-362552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344051/","id":344051,"name":"Out of the Darkness","site_detail_url":"https://comicvine.gamespot.com/wolverine-310-out-of-the-darkness/4000-344051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344047/","id":344047,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-239/4000-344047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344114/","id":344114,"name":"Round 7","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-7-round-7/4000-344114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344230/","id":344230,"name":"I Met a Traveler...!; The Curse of the Crimson Corsair, The Devil in the Deep: Part Five","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-ozymandias-1-i-met-a-traveler-the-/4000-344230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345383/","id":345383,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-3/4000-345383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345400/","id":345400,"name":"Divided We Fall; Chapter One: Road Worn","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-14-divided-we-fall-chapter-o/4000-345400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345327/","id":345327,"name":"The World Won't Stop Without You","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-27-the-world-won-t-stop-without-yo/4000-345327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345582/","id":345582,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ant-man-season-one-1-hc/4000-345582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346238/","id":346238,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-1/4000-346238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346426/","id":346426,"name":"Run Layla Run!","site_detail_url":"https://comicvine.gamespot.com/x-factor-240-run-layla-run/4000-346426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345347/","id":345347,"name":"The Minute of Truth, Chapter Two: Golden Years; The Curse of the Crimson Corsair, The Devil in the Deep Part Six","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-minutemen-2-the-minute-of-truth-ch/4000-345347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347183/","id":347183,"name":"New World Orders, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-15-new-world-orders-part-1/4000-347183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347211/","id":347211,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-52/4000-347211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347233/","id":347233,"name":"Deus Ex Inhuman","site_detail_url":"https://comicvine.gamespot.com/ff-20-deus-ex-inhuman/4000-347233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347208/","id":347208,"name":"My Dinner with the Phoenix","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-14-my-dinner-with-the-phoe/4000-347208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347340/","id":347340,"name":"Kid Eternity","site_detail_url":"https://comicvine.gamespot.com/national-comics-eternity-1-kid-eternity/4000-347340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347206/","id":347206,"name":"Divided We Fall, Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-13-divided-we-fall-part-/4000-347206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356784/","id":356784,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-shadowsvampirella-2/4000-356784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355885/","id":355885,"name":"Enter the Dragon","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-1-enter-the-dragon/4000-355885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358820/","id":358820,"name":"","site_detail_url":"https://comicvine.gamespot.com/happy-1/4000-358820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358904/","id":358904,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-5/4000-358904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358923/","id":358923,"name":"No Sleep' Till Top Ten","site_detail_url":"https://comicvine.gamespot.com/idolized-2-no-sleep-till-top-ten/4000-358923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360195/","id":360195,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/legion-lost-run-from-tomorrow-1-volume-1/4000-360195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355827/","id":355827,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-4/4000-355827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362557/","id":362557,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-72/4000-362557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293885/","id":293885,"name":"Zero","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-00-zero/4000-293885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386285/","id":386285,"name":"Еще одна передряга. Часть 3; Еще одна передряга. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-9-3-4/4000-386285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386330/","id":386330,"name":"Памяти Человека-Паука","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-9--/4000-386330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386395/","id":386395,"name":"Issue #6","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-6-issue-6/4000-386395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386483/","id":386483,"name":"Мстители будущего. Часть 4; Одержимость. Часть 4","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-7-4-4/4000-386483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345397/","id":345397,"name":"Savage Six, Part 3: The Truth","site_detail_url":"https://comicvine.gamespot.com/venom-20-savage-six-part-3-the-truth/4000-345397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347217/","id":347217,"name":"Savage Six, Part 4: Best Laid Plans...","site_detail_url":"https://comicvine.gamespot.com/venom-21-savage-six-part-4-best-laid-plans/4000-347217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437407/","id":437407,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-chronicle-1-hc/4000-437407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358980/","id":358980,"name":"","site_detail_url":"https://comicvine.gamespot.com/eric-basaldua-mike-debalfo-cover-gallery-1/4000-358980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473267/","id":473267,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-punisher-4-volume-four/4000-473267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357662/","id":357662,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-13/4000-357662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-565207/","id":565207,"name":"Kalachnikov diplomatie","site_detail_url":"https://comicvine.gamespot.com/sisco-5-kalachnikov-diplomatie/4000-565207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338464/","id":338464,"name":"Age of Wonders","site_detail_url":"https://comicvine.gamespot.com/earth-2-2-age-of-wonders/4000-338464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339739/","id":339739,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-movie-1/4000-339739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340899/","id":340899,"name":"Jimmy's Collision","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-the-punisher-max-1-jimmys-collisio/4000-340899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341645/","id":341645,"name":"Close Enough for Government Work","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-10-close-enough-for-government-work/4000-341645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350000/","id":350000,"name":"Me, Myself, and I","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-micro-/4000-350000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351474/","id":351474,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-regression-1-tpb/4000-351474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352546/","id":352546,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-13/4000-352546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349391/","id":349391,"name":"Sons of Perdition","site_detail_url":"https://comicvine.gamespot.com/archer-and-armstrong-1-sons-of-perdition/4000-349391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354078/","id":354078,"name":"April","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-7-april/4000-354078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355816/","id":355816,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-revenge-of-the-mandarin-1-hc/4000-355816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354193/","id":354193,"name":"Then & Now","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-4-then-now/4000-354193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340159/","id":340159,"name":"No Home For Heroes","site_detail_url":"https://comicvine.gamespot.com/legion-lost-10-no-home-for-heroes/4000-340159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395029/","id":395029,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-7-volume-seven/4000-395029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463729/","id":463729,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-operation-zero-tolerance-1-hc/4000-463729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338750/","id":338750,"name":"Wide Awake, Chapter Four: Man on a Ledge","site_detail_url":"https://comicvine.gamespot.com/fairest-4-wide-awake-chapter-four-man-on-a-ledge/4000-338750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358881/","id":358881,"name":"That's All Folks!; Art for Pete's Sake","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-3-that-s-all-folks-art-for-pet/4000-358881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498638/","id":498638,"name":"Spiderman 6: Encuentros Extraños","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-12-spiderman-6-encuentros-e/4000-498638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498874/","id":498874,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-19/4000-498874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514567/","id":514567,"name":"","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-el-dia-despues-3/4000-514567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538804/","id":538804,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-18/4000-538804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540190/","id":540190,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-19/4000-540190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377064/","id":377064,"name":"Date Night","site_detail_url":"https://comicvine.gamespot.com/vigilante-project-2-date-night/4000-377064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352580/","id":352580,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/economix-how-our-economy-works-and-doesnt-work-in-/4000-352580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498637/","id":498637,"name":"X-Men 3: Gira Mundial","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-11-x-men-3-gira-mundial/4000-498637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355926/","id":355926,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-39/4000-355926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386482/","id":386482,"name":"Мстители будущего. Часть 3; Одержимость. Часть 3","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-6-3-3/4000-386482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386841/","id":386841,"name":"Старк: Исцеление. Часть 3. Охотники и добыча","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-6-3/4000-386841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342871/","id":342871,"name":"No Turning Back, Part One: The Win Column","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-688-no-turning-back-part-on/4000-342871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341647/","id":341647,"name":"Rescuer","site_detail_url":"https://comicvine.gamespot.com/supergirl-10-rescuer/4000-341647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353097/","id":353097,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-omnibus-1-hc/4000-353097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348325/","id":348325,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-74/4000-348325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393919/","id":393919,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/infestation-2-3-volume-3/4000-393919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402577/","id":402577,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-1/4000-402577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386394/","id":386394,"name":"Issue #5","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-5-issue-5/4000-386394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351473/","id":351473,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket-1-tpb/4000-351473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349834/","id":349834,"name":"One Dead Spy","site_detail_url":"https://comicvine.gamespot.com/nathan-hales-hazardous-tales-1-one-dead-spy/4000-349834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346977/","id":346977,"name":"Earth's Mightiest","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-175-earths-mightiest/4000-346977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386329/","id":386329,"name":"Смерть Человека-Паука. Часть 4; Смерть Человека-Паука. Часть 5","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-8--4-5/4000-386329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355925/","id":355925,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-38/4000-355925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337983/","id":337983,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-1/4000-337983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338453/","id":338453,"name":"Road to Redemption","site_detail_url":"https://comicvine.gamespot.com/x-factor-237-road-to-redemption/4000-338453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338522/","id":338522,"name":"Kitties","site_detail_url":"https://comicvine.gamespot.com/defenders-7-kitties/4000-338522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338471/","id":338471,"name":"The Minute of Truth, Chapter One: Eight Minutes; The Curse of the Crimson Corsair, The Devil in the Deep...! Part One","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-minutemen-1-the-minute-of-truth-ch/4000-338471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340397/","id":340397,"name":"Born Free","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-13-born-free/4000-340397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341652/","id":341652,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-238/4000-341652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341838/","id":341838,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-51/4000-341838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341809/","id":341809,"name":"Ends of the Earth; Epilogue","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-8-ends-of-the-earth-epilogue/4000-341809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342839/","id":342839,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-2/4000-342839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342876/","id":342876,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hit-girl-1/4000-342876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342955/","id":342955,"name":"No Such Thing as a Free Lunch; Curse of the Crimson Corsair: The Devil in the Deep, Part Four","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-nite-owl-1-no-such-thing-as-a-free/4000-342955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348099/","id":348099,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-shadowsvampirella-1/4000-348099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348103/","id":348103,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-4/4000-348103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348718/","id":348718,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/the-flash-archives-6-volume-6/4000-348718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349637/","id":349637,"name":"Landfall, Part 3: Unalaska","site_detail_url":"https://comicvine.gamespot.com/the-massive-3-landfall-part-3-unalaska/4000-349637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350803/","id":350803,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/superboy-incubation-1-volume-1/4000-350803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351024/","id":351024,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-demon-reborn-1/4000-351024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351013/","id":351013,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-vs-dracula-6/4000-351013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354117/","id":354117,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-demon-reborn-2/4000-354117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355081/","id":355081,"name":"Night of the living; Hologram Holmes; The Watson Files; The Terror of the Penitence House; Analysis Paralysis; Special Guest; Artie is Dead; Full Time Voyeur; Flight Lessons; Heroic Deeds; Little Trey in Slumberland; Drinking Buddies; Finally Peace and Qu","site_detail_url":"https://comicvine.gamespot.com/holmes-inc-3-night-of-the-living-hologram-holmes-t/4000-355081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355274/","id":355274,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/resurrection-man-dead-again-1-volume-1/4000-355274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355040/","id":355040,"name":"Watson & Holmes","site_detail_url":"https://comicvine.gamespot.com/watson-holmes-1-watson-holmes/4000-355040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340162/","id":340162,"name":"Mean Goodbye; The Curse of the Crimson Corsair, The Devil in the Deep, Part Two","site_detail_url":"https://comicvine.gamespot.com/before-watchmen-silk-spectre-1-mean-goodbye-the-cu/4000-340162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348122/","id":348122,"name":"Intimate Strangers, Part 3: Jane","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-3-intimate-strangers-part-3-jane/4000-348122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386284/","id":386284,"name":"Еще одна передряга. Часть 1; Еще одна передряга. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-8-1-2/4000-386284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341650/","id":341650,"name":"Megacrime and Punishment","site_detail_url":"https://comicvine.gamespot.com/daredevil-14-megacrime-and-punishment/4000-341650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380863/","id":380863,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-15-spider-man-1/4000-380863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348326/","id":348326,"name":"Vol. 8","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-desolation-1-vol-8/4000-348326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349732/","id":349732,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-7/4000-349732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338485/","id":338485,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-11/4000-338485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356423/","id":356423,"name":"Rose Red","site_detail_url":"https://comicvine.gamespot.com/fables-16-rose-red/4000-356423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348324/","id":348324,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-69/4000-348324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716436/","id":716436,"name":null,"site_detail_url":"https://comicvine.gamespot.com/post-york-1/4000-716436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348062/","id":348062,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-kiss-ii-1/4000-348062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334214/","id":334214,"name":"Ends of the Earth, Part Four: Global Menace","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-685-ends-of-the-earth-part-/4000-334214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336601/","id":336601,"name":"Notes From the Underground!; Look Ma, No Webs!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-2-notes-from-the-underground-l/4000-336601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342274/","id":342274,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-11-volume-eleven/4000-342274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345730/","id":345730,"name":"Enemies Old, Enemies New","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-enemies-old-enemies-n/4000-345730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347045/","id":347045,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/herc-the-complete-series-by-grek-pak-and-fred-van-/4000-347045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344163/","id":344163,"name":"Volume 17","site_detail_url":"https://comicvine.gamespot.com/fables-inherit-the-wind-1-volume-17/4000-344163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347304/","id":347304,"name":"Casey Jones","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-6-casey-/4000-347304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335903/","id":335903,"name":"The Enemy of my Enemy","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-9-the-enemy-of-my-enemy/4000-335903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355812/","id":355812,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-by-nick-spencer-2-volume-two/4000-355812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498635/","id":498635,"name":"Fantastic Four 1: Lo Fantástico","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-9-fantastic-four-1-lo-fanta/4000-498635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498636/","id":498636,"name":"Spiderman 5: Legado","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-10-spiderman-5-legado/4000-498636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499941/","id":499941,"name":"Miedo encarnado: El planeta del miedo","site_detail_url":"https://comicvine.gamespot.com/hulk-rojo-3-miedo-encarnado-el-planeta-del-miedo/4000-499941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403835/","id":403835,"name":"Justice League, Teil 1; Junggemüse","site_detail_url":"https://comicvine.gamespot.com/justice-league-1-justice-league-teil-1-junggemuse/4000-403835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513270/","id":513270,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-1/4000-513270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335030/","id":335030,"name":"Party Crasher: Chapter Three of Wide Awake","site_detail_url":"https://comicvine.gamespot.com/fairest-3-party-crasher-chapter-three-of-wide-awak/4000-335030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538803/","id":538803,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-17/4000-538803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540189/","id":540189,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-18/4000-540189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345401/","id":345401,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/blacksad-silent-hell-1-hc/4000-345401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386283/","id":386283,"name":"Никто не должен умирать. Часть 2. Решение; Светлая полоса; Тупик","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-7-2/4000-386283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386481/","id":386481,"name":"Мстители будущего. Часть 2; Одержимость. Часть 2","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-5-2-2/4000-386481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335906/","id":335906,"name":"Like Daughter","site_detail_url":"https://comicvine.gamespot.com/supergirl-9-like-daughter/4000-335906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336582/","id":336582,"name":"Nth Ways to Die","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-9-nth-ways-to-die/4000-336582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355711/","id":355711,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-by-rick-remender-1-volume-one/4000-355711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335900/","id":335900,"name":"The Villain's Journey, Chapter One: The Call for Adventure; The Curse of SHAZAM, Part 3","site_detail_url":"https://comicvine.gamespot.com/justice-league-9-the-villains-journey-chapter-one-/4000-335900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347046/","id":347046,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-347046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347600/","id":347600,"name":"Ends of the Earth","site_detail_url":"https://comicvine.gamespot.com/spider-man-ends-of-the-earth-1-ends-of-the-earth/4000-347600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347602/","id":347602,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-jonathan-hickman-2-vo/4000-347602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344743/","id":344743,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-68/4000-344743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387547/","id":387547,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-4/4000-387547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355050/","id":355050,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-7/4000-355050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335914/","id":335914,"name":"Hell Night","site_detail_url":"https://comicvine.gamespot.com/daredevil-13-hell-night/4000-335914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346112/","id":346112,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-web-of-spider-man-2-volume-two/4000-346112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346115/","id":346115,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-5-volume-5/4000-346115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335251/","id":335251,"name":"The Filth and the Fury","site_detail_url":"https://comicvine.gamespot.com/hulk-smash-avengers-2-the-filth-and-the-fury/4000-335251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386393/","id":386393,"name":"Issue #4","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-4-issue-4/4000-386393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344744/","id":344744,"name":"Nothing Stops The Juggernaut!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-37-nothing-stops-the-ju/4000-344744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386327/","id":386327,"name":"Смерть Человека-Паука. Часть 2; Смерть Человека-Паука. Часть 3","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-7--2-3/4000-386327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386408/","id":386408,"name":"Новый Человек-Паук","site_detail_url":"https://comicvine.gamespot.com/marvel-spetsialniy-vypusk-4--/4000-386408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344434/","id":344434,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-twelve-labors-1-tpb/4000-344434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344748/","id":344748,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/punisher-by-rick-remender-omnibus-1-hc/4000-344748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344752/","id":344752,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-omnibus-1-hc/4000-344752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345160/","id":345160,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1307/4000-345160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345543/","id":345543,"name":"Spider-Man: Return of the Burglar","site_detail_url":"https://comicvine.gamespot.com/spider-man-return-of-the-burglar-1-spider-man-retu/4000-345543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426241/","id":426241,"name":"Osveta Boga Râ","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-2-osveta-boga-ra/4000-426241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344983/","id":344983,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-showcase-1-vol-1/4000-344983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334328/","id":334328,"name":"Dammit, Danny","site_detail_url":"https://comicvine.gamespot.com/defenders-6-dammit-danny/4000-334328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334321/","id":334321,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-10/4000-334321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334202/","id":334202,"name":"Into the Firestorm","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-9-into-the-firestorm/4000-334202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334167/","id":334167,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-28/4000-334167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334324/","id":334324,"name":"Back from the Dead","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-3-back-from-the-dead/4000-334324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334213/","id":334213,"name":"Lawyers in Love","site_detail_url":"https://comicvine.gamespot.com/daredevil-12-lawyers-in-love/4000-334213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334322/","id":334322,"name":"Savage Six: Prologue","site_detail_url":"https://comicvine.gamespot.com/venom-17-savage-six-prologue/4000-334322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335267/","id":335267,"name":"Rot, Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-306-rot-part-2/4000-335267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335269/","id":335269,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-11/4000-335269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335268/","id":335268,"name":"Two Cities. Two Worlds. Part Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-10-two-cities-two-worlds/4000-335268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336598/","id":336598,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-12/4000-336598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336664/","id":336664,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-50/4000-336664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336586/","id":336586,"name":"Shock to the System, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-12-shock-to-the-system-pt-2/4000-336586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336591/","id":336591,"name":"Deadpool Reborn, Part 1: Bright Bright Sunshiny Day","site_detail_url":"https://comicvine.gamespot.com/deadpool-55-deadpool-reborn-part-1-bright-bright-s/4000-336591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336592/","id":336592,"name":"Adventures in Red","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-606-adventures-in-red/4000-336592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337485/","id":337485,"name":"Spider Who?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-39-spider-who/4000-337485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337500/","id":337500,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-29/4000-337500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345496/","id":345496,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-3/4000-345496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345542/","id":345542,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-4-volume-four/4000-345542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346299/","id":346299,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-3/4000-346299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346917/","id":346917,"name":"Fight and Flight","site_detail_url":"https://comicvine.gamespot.com/max-payne-3-3-fight-and-flight/4000-346917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347037/","id":347037,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-the-terrorism-myth-1-hc-tpb/4000-347037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347039/","id":347039,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/counter-x-x-force-rage-war-1-tpb/4000-347039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347201/","id":347201,"name":"Insecticided","site_detail_url":"https://comicvine.gamespot.com/haunt-25-insecticided/4000-347201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347295/","id":347295,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-red-sonja-5/4000-347295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347306/","id":347306,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-12/4000-347306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350806/","id":350806,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/men-of-war-uneasy-company-1-volume-1/4000-350806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386840/","id":386840,"name":"Старк: Исцеление. Часть 2","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-5-2/4000-386840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335249/","id":335249,"name":"Wadjetmacallit?!","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-7-wadjetmacallit/4000-335249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345409/","id":345409,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-6/4000-345409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335915/","id":335915,"name":"Savage Six, Part 1: Public Enemies","site_detail_url":"https://comicvine.gamespot.com/venom-18-savage-six-part-1-public-enemies/4000-335915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335254/","id":335254,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-11/4000-335254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334191/","id":334191,"name":"X-treme Measures I","site_detail_url":"https://comicvine.gamespot.com/x-factor-235-x-treme-measures-i/4000-334191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336627/","id":336627,"name":"Cubs in Toyland Chapter 4: Action Figures, A Revolution in Oz, Chapter Four: General Orders","site_detail_url":"https://comicvine.gamespot.com/fables-117-cubs-in-toyland-chapter-4-action-figure/4000-336627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349024/","id":349024,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-73/4000-349024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356421/","id":356421,"name":"Ein Quantum Magie","site_detail_url":"https://comicvine.gamespot.com/fables-cinderella-2-ein-quantum-magie/4000-356421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344171/","id":344171,"name":"Phantoms of the Heart, Part 1","site_detail_url":"https://comicvine.gamespot.com/artifacts-19-phantoms-of-the-heart-part-1/4000-344171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329523/","id":329523,"name":"Enter the Mandarin; Assembly Line","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-1/4000-329523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333461/","id":333461,"name":"Cake!; ...Ultimate Peter Parker","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-1-cake-ultimate-peter-parker/4000-333461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331849/","id":331849,"name":"Even a Broken Clock is Right Twice a Day","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-8-even-a-broken-clock-is-right-twice-a/4000-331849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338576/","id":338576,"name":"Vol. 11","site_detail_url":"https://comicvine.gamespot.com/the-boys-over-the-hill-with-the-swords-of-a-thousa/4000-338576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341610/","id":341610,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-my-friends-can-beat-up-your-fr/4000-341610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341954/","id":341954,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-crime-and-punishment-1-hc/4000-341954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342079/","id":342079,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/deathlok-the-living-nightmare-of-michael-collins-1/4000-342079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342225/","id":342225,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-11-volume-11/4000-342225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342227/","id":342227,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-graphic-novels-1-hc/4000-342227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342229/","id":342229,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-by-brian-michael-bendis/4000-342229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345214/","id":345214,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-back-in-japan-1-hc-tpb/4000-345214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362807/","id":362807,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-omnibus-1-hc/4000-362807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450331/","id":450331,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-black-white-classics-/4000-450331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498609/","id":498609,"name":"The Ultimates 2: Seguridad Nacional","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-7-the-ultimates-2-seguridad/4000-498609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498610/","id":498610,"name":"Spiderman 4: Problemas Por Duplicado","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-8-spiderman-4-problemas-por/4000-498610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498872/","id":498872,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-17/4000-498872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514235/","id":514235,"name":"Libro Séptimo","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-7-libro-septimo/4000-514235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514564/","id":514564,"name":"Los Dignos","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-especial-6-los-dignos/4000-514564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538802/","id":538802,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-16/4000-538802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595429/","id":595429,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-island-compendio-1/4000-595429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450329/","id":450329,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-black-white-classics-/4000-450329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386480/","id":386480,"name":"Мстители будущего. Часть 1; Одержимость. Часть 1","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-4-1-1/4000-386480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326846/","id":326846,"name":"Harsh Truths","site_detail_url":"https://comicvine.gamespot.com/static-shock-8-harsh-truths/4000-326846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329191/","id":329191,"name":"The Culling, Prelude: Training Day","site_detail_url":"https://comicvine.gamespot.com/superboy-8-the-culling-prelude-training-day/4000-329191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332020/","id":332020,"name":"Girl In The World","site_detail_url":"https://comicvine.gamespot.com/supergirl-8-girl-in-the-world/4000-332020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333395/","id":333395,"name":"The Culling, Prelude: A Dark Omen!","site_detail_url":"https://comicvine.gamespot.com/teen-titans-8-the-culling-prelude-a-dark-omen/4000-333395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343691/","id":343691,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1306/4000-343691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345520/","id":345520,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/defenders-by-matt-fraction-1-volume-one/4000-345520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-330280/","id":330280,"name":"Book One: Helldiver","site_detail_url":"https://comicvine.gamespot.com/the-four-horsemen-of-the-apocalypse-1-book-one-hel/4000-330280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326842/","id":326842,"name":"Frankenstein and G.I. Robot!","site_detail_url":"https://comicvine.gamespot.com/men-of-war-8-frankenstein-and-gi-robot/4000-326842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331859/","id":331859,"name":"Like Lightning, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-173-like-lightning-pt-2/4000-331859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342788/","id":342788,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1305/4000-342788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345208/","id":345208,"name":"Invincible Iron Man: Demon","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-demon-1-invincible-iron-man-de/4000-345208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345213/","id":345213,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/the-twelve-2-volume-two/4000-345213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375588/","id":375588,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-inventor-1/4000-375588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341862/","id":341862,"name":"The Crack In Everything, Part Four","site_detail_url":"https://comicvine.gamespot.com/the-darkness-104-the-crack-in-everything-part-four/4000-341862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340163/","id":340163,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/batwoman-hydrology-1-vol-1/4000-340163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341413/","id":341413,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-1-vol-1/4000-341413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341471/","id":341471,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1304/4000-341471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341611/","id":341611,"name":"Battle Scars","site_detail_url":"https://comicvine.gamespot.com/battle-scars-1-battle-scars/4000-341611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341878/","id":341878,"name":"Progetto Cyborg","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-321-progetto-cyborg/4000-341878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342037/","id":342037,"name":"Devil and the Details","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-2-devil-and-the-details/4000-342037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342228/","id":342228,"name":"Spider-Man: Perceptions","site_detail_url":"https://comicvine.gamespot.com/spider-man-perceptions-1-spider-man-perceptions/4000-342228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342230/","id":342230,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-omnibus-1-volume-one/4000-342230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375475/","id":375475,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-art-book-1-volume-one/4000-375475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386392/","id":386392,"name":"Issue #3","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-3-issue-3/4000-386392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338578/","id":338578,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/dmz-the-five-nations-of-new-york-1-volume-12/4000-338578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340774/","id":340774,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1303/4000-340774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339666/","id":339666,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-65/4000-339666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386326/","id":386326,"name":"Смерть Человека-Паука. Прелюдия; Смерть Человека-Паука. Часть 1","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-6--1/4000-386326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326838/","id":326838,"name":"Ends of the Earth, Part Two: Earth's Mightiest","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-683-ends-of-the-earth-part-/4000-326838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326824/","id":326824,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-10-1/4000-326824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326860/","id":326860,"name":"Round 1","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-round-1/4000-326860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326864/","id":326864,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-9/4000-326864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329197/","id":329197,"name":"The Longest Winter, Part 4","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-4-the-longest-winter-part-4/4000-329197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329214/","id":329214,"name":"One More Round","site_detail_url":"https://comicvine.gamespot.com/wolverine-304-one-more-round/4000-329214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329210/","id":329210,"name":"End of Line","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-605-end-of-line/4000-329210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329213/","id":329213,"name":"The Omega Effect, Part 1","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-6-the-omega-effect-part-1/4000-329213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331857/","id":331857,"name":"The Omega Effect, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-10-the-omega-effect-part-2/4000-331857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331871/","id":331871,"name":"Long Distance Call","site_detail_url":"https://comicvine.gamespot.com/x-factor-234-long-distance-call/4000-331871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333393/","id":333393,"name":"The Omega Effect, Part 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-11-the-omega-effect-part-3/4000-333393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333424/","id":333424,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-6/4000-333424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331861/","id":331861,"name":"Namor: The 99 Daughters of Pontus","site_detail_url":"https://comicvine.gamespot.com/defenders-5-namor-the-99-daughters-of-pontus/4000-331861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333397/","id":333397,"name":"Rot, Part One","site_detail_url":"https://comicvine.gamespot.com/wolverine-305-rot-part-one/4000-333397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333537/","id":333537,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-twelve-12/4000-333537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333430/","id":333430,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-49/4000-333430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338574/","id":338574,"name":"New Creation, Part 5","site_detail_url":"https://comicvine.gamespot.com/artifacts-18-new-creation-part-5/4000-338574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338520/","id":338520,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-2/4000-338520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340650/","id":340650,"name":"Unseen, Part 1","site_detail_url":"https://comicvine.gamespot.com/bad-medicine-1-unseen-part-1/4000-340650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340765/","id":340765,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-2/4000-340765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340815/","id":340815,"name":"Hoboken Blues","site_detail_url":"https://comicvine.gamespot.com/max-payne-3-2-hoboken-blues/4000-340815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341123/","id":341123,"name":"No Turning Back Part I/Sabretooth Reborn","site_detail_url":"https://comicvine.gamespot.com/the-summer-of-spider-man-sampler-1-no-turning-back/4000-341123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341649/","id":341649,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/frankenstein-agent-of-s-h-a-d-e-war-of-the-monster/4000-341649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341653/","id":341653,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-big-time-ultimate-collection-1-/4000-341653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342950/","id":342950,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-11/4000-342950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345523/","id":345523,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/ff-by-jonathan-hickman-3-volume-three/4000-345523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340589/","id":340589,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-red-sonja-4/4000-340589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342292/","id":342292,"name":"Splinter","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-5-splint/4000-342292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350808/","id":350808,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/static-shock-supercharged-1-volume-1/4000-350808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333460/","id":333460,"name":"How Far Can A Superhero Fall?","site_detail_url":"https://comicvine.gamespot.com/supercrooks-2-how-far-can-a-superhero-fall/4000-333460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386282/","id":386282,"name":"Никто не должен умирать. Часть 1. Пробуждение; Перерождение; Нью-Йорк. Прощальная ночь Норы","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-6-1-/4000-386282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386838/","id":386838,"name":"Старк: Исцеление. Часть 1; Шоу начинается","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-4-1/4000-386838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344546/","id":344546,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-fearless-1-hc-tpb/4000-344546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340739/","id":340739,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-5/4000-340739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417111/","id":417111,"name":"Enter the Mandarin; Assembly Line","site_detail_url":"https://comicvine.gamespot.com/share-your-universe-1-enter-the-mandarin-assembly-/4000-417111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432505/","id":432505,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/green-blood-3-vol-3/4000-432505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166555/","id":166555,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/fables-legends-in-exile-1-volume-1/4000-166555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322746/","id":322746,"name":"Ends of the Earth, Part One: My World On Fire","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-682-ends-of-the-earth-part-/4000-322746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322749/","id":322749,"name":"Boy Meets World","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-7-boy-meets-world/4000-322749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325030/","id":325030,"name":"If You Can't Beat 'Em!; The Kingpin","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-24-if-you-cant-beat-e/4000-325030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335286/","id":335286,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/darkhawk-classic-1-volume-1/4000-335286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337517/","id":337517,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/channel-zero-the-complete-collection-1-tpb/4000-337517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337739/","id":337739,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-10/4000-337739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341551/","id":341551,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-7-volume-seven/4000-341551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341520/","id":341520,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/artifacts-origins-first-born-1-tpb/4000-341520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341615/","id":341615,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1970s-3-volume-three/4000-341615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341616/","id":341616,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/villains-for-hire-knight-takes-king-1-tpb/4000-341616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341634/","id":341634,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/x-factor-they-keep-killing-madrox-1-volume-15/4000-341634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498607/","id":498607,"name":"X-Men 2: Regreso A Arma-X","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-5-x-men-2-regreso-a-arma-x/4000-498607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498608/","id":498608,"name":"Spiderman 3: Un Mundo Compartido","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-6-spiderman-3-un-mundo-comp/4000-498608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514234/","id":514234,"name":"Libro Sexto","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-6-libro-sexto/4000-514234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514563/","id":514563,"name":"Lobezno","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-especial-5-lobezno/4000-514563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538801/","id":538801,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-15/4000-538801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335159/","id":335159,"name":"5 (of 5)","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-burning-hand-5-5-of-5/4000-335159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540187/","id":540187,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-16/4000-540187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551705/","id":551705,"name":"El final antes del nuevo principio","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-consecuencias-3-el-final-antes-del/4000-551705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337518/","id":337518,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-5-book-five/4000-337518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338303/","id":338303,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1302/4000-338303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341614/","id":341614,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-brubaker-and-lark-ultimate-collection/4000-341614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341633/","id":341633,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-23-don-t-look-back-1-volume-3/4000-341633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338297/","id":338297,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/darkness-compendium-2-volume-2/4000-338297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386281/","id":386281,"name":"Месть Паука-Убийцы. Часть 3. Жертва; Точка кипения","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-5--3/4000-386281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386479/","id":386479,"name":"Новые Мстители: Финал","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-3-wikiissue/4000-386479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397679/","id":397679,"name":"Остров Пауков. Единственный и неповторимый; Остров Пауков. Человек-Паук-Нью-Йорк","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-16-ostrov-paukov-iedinst/4000-397679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319343/","id":319343,"name":"Out of Phayze","site_detail_url":"https://comicvine.gamespot.com/static-shock-7-out-of-phayze/4000-319343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322754/","id":322754,"name":"Graduation Day","site_detail_url":"https://comicvine.gamespot.com/supergirl-7-graduation-day/4000-322754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324815/","id":324815,"name":"Assault on Project 13","site_detail_url":"https://comicvine.gamespot.com/teen-titans-7-assault-on-project-13/4000-324815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324733/","id":324733,"name":"Rise of the Dead","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-7-rise-of-the-dead/4000-324733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321184/","id":321184,"name":"When Katia Cries","site_detail_url":"https://comicvine.gamespot.com/legion-lost-7-when-katia-cries/4000-321184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335384/","id":335384,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-64/4000-335384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337093/","id":337093,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1301/4000-337093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341552/","id":341552,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/daken-dark-wolverine-no-more-heroes-1-hc-tpb/4000-341552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341553/","id":341553,"name":"Marvel Universe Spider-Man: Amazing Fantasy","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-spider-man-amazing-fantasy-1-marve/4000-341553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341557/","id":341557,"name":"Venom: Circle of Four","site_detail_url":"https://comicvine.gamespot.com/venom-circle-of-four-1-venom-circle-of-four/4000-341557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333798/","id":333798,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-5/4000-333798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334152/","id":334152,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-2/4000-334152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323356/","id":323356,"name":"Supercrooks","site_detail_url":"https://comicvine.gamespot.com/supercrooks-1-supercrooks/4000-323356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336386/","id":336386,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1300/4000-336386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341462/","id":341462,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-3-volume-3/4000-341462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337215/","id":337215,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-beano-3635/4000-337215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335386/","id":335386,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-35/4000-335386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386391/","id":386391,"name":"Issue #2","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-2-issue-2/4000-386391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336504/","id":336504,"name":"Omnibus","site_detail_url":"https://comicvine.gamespot.com/avengers-the-crossing-1-omnibus/4000-336504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336505/","id":336505,"name":"Premiere HC","site_detail_url":"https://comicvine.gamespot.com/avengers-the-private-war-of-dr-doom-1-premiere-hc/4000-336505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335771/","id":335771,"name":"Vampirella 21","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1299-vampirella-21/4000-335771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341468/","id":341468,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-3-volume-three/4000-341468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341469/","id":341469,"name":"Powerless","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-2-powerless/4000-341469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331977/","id":331977,"name":"Spider-Man: Season One","site_detail_url":"https://comicvine.gamespot.com/spider-man-season-one-1-spider-man-season-one/4000-331977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386325/","id":386325,"name":"Школа супергероев. Часть 3; Школа супергероев. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-5-3-4/4000-386325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334862/","id":334862,"name":null,"site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2012-avengers-age-of-ultron-po/4000-334862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335587/","id":335587,"name":"","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2012-spider-man-season-one-1/4000-335587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331712/","id":331712,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-34/4000-331712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334650/","id":334650,"name":"Smallville Season 11","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1298-smallville-season-11/4000-334650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341303/","id":341303,"name":"Amazing Spider-Man: Secret Origins","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-secret-origins-1-amazing-spider/4000-341303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341326/","id":341326,"name":"Avengers: X-Sanction","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-1-avengers-x-sanction/4000-341326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341379/","id":341379,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-1-tpb/4000-341379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336525/","id":336525,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-the-serpent-crown-1-hc/4000-336525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319366/","id":319366,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-the-childrens-crusade-9/4000-319366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319378/","id":319378,"name":"No Strings","site_detail_url":"https://comicvine.gamespot.com/villains-for-hire-4-no-strings/4000-319378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319371/","id":319371,"name":"Misfits 1: Strange/ The French Drop","site_detail_url":"https://comicvine.gamespot.com/defenders-4-misfits-1-strange-the-french-drop/4000-319371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320821/","id":320821,"name":"Peter and the Machine","site_detail_url":"https://comicvine.gamespot.com/beyond-the-fringe-1-peter-and-the-machine/4000-320821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321730/","id":321730,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-7/4000-321730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321301/","id":321301,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-9/4000-321301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321304/","id":321304,"name":"Assembling","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-1-assembling/4000-321304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321298/","id":321298,"name":"Forever, Part Five","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-604-forever-part-five/4000-321298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321359/","id":321359,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-5/4000-321359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321320/","id":321320,"name":"The Terrorism Myth, Part Three","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-635-the-terrorism-myth-part-t/4000-321320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322724/","id":322724,"name":"In From the Cold","site_detail_url":"https://comicvine.gamespot.com/x-factor-233-in-from-the-cold/4000-322724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322751/","id":322751,"name":"Sundown","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-4-sundown/4000-322751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324899/","id":324899,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-48/4000-324899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324964/","id":324964,"name":"One Step Beyond","site_detail_url":"https://comicvine.gamespot.com/ff-16-one-step-beyond/4000-324964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324976/","id":324976,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-10/4000-324976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324947/","id":324947,"name":"Lost Weekend, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/daken-dark-wolverine-23-lost-weekend-pt-3/4000-324947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334201/","id":334201,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-red-sonja-3/4000-334201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334343/","id":334343,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-1/4000-334343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334991/","id":334991,"name":"New Creation, Part 4","site_detail_url":"https://comicvine.gamespot.com/artifacts-17-new-creation-part-4/4000-334991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336679/","id":336679,"name":"The Killing Season; Part 4 of 4 - The Buddha Resides in a Pure Heart","site_detail_url":"https://comicvine.gamespot.com/elephantmen-39-the-killing-season-part-4-of-4-the-/4000-336679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336891/","id":336891,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-hook-5/4000-336891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335299/","id":335299,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-color-classics-1/4000-335299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337740/","id":337740,"name":"The Gathering, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-myths-legends-17-the-gathering-p/4000-337740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337168/","id":337168,"name":"","site_detail_url":"https://comicvine.gamespot.com/lord-of-the-jungle-annual-1/4000-337168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331874/","id":331874,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-premiere-comic-1/4000-331874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334334/","id":334334,"name":"Intimate Strangers, Part 1","site_detail_url":"https://comicvine.gamespot.com/mind-the-gap-1-intimate-strangers-part-1/4000-334334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344044/","id":344044,"name":"Kick-Ash!","site_detail_url":"https://comicvine.gamespot.com/haunt-24-kick-ash/4000-344044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349745/","id":349745,"name":"Jungle Rules","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-jungle-rules-1-jungle-rules/4000-349745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386005/","id":386005,"name":"Рыцари неба","site_detail_url":"https://comicvine.gamespot.com/rytsari-neba-1-wikiissue/4000-386005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382569/","id":382569,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-kree-skrull-war-1-hc-tpb/4000-382569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322763/","id":322763,"name":"Teddy Bear: Chapter Two of Cubs in Toyland, A Revolution in Oz, Chapter Two: The Big Plan","site_detail_url":"https://comicvine.gamespot.com/fables-115-teddy-bear-chapter-two-of-cubs-in-toyla/4000-322763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337567/","id":337567,"name":"Haunted America, Part One","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-9-haunted-america-part-one/4000-337567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440796/","id":440796,"name":"Amarillo","site_detail_url":"https://comicvine.gamespot.com/blacksad-5-amarillo/4000-440796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313689/","id":313689,"name":"The Signal Masters, Epilogue","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-6-the-signal-masters-/4000-313689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315289/","id":315289,"name":"Reign's End","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-529-rei/4000-315289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317063/","id":317063,"name":"There Can Be Only One!; Control Freak!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-23-there-can-be-only-/4000-317063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329636/","id":329636,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-hooky-1/4000-329636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331428/","id":331428,"name":"Homeless","site_detail_url":"https://comicvine.gamespot.com/punishermax-homeless-1-homeless/4000-331428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331875/","id":331875,"name":"The Fire of Creation, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-shadow-1-the-fire-of-creation-part-1/4000-331875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331993/","id":331993,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-legion-of-the-unliving-1-tpb/4000-331993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332708/","id":332708,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-the-kin/4000-332708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332740/","id":332740,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-332740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333542/","id":333542,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-9/4000-333542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329192/","id":329192,"name":"Book II","site_detail_url":"https://comicvine.gamespot.com/100-bullets-the-deluxe-edition-2-book-ii/4000-329192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336470/","id":336470,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-6-volume-6/4000-336470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331912/","id":331912,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cinderella-fables-are-forever-1-tpb/4000-331912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372804/","id":372804,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/stormwatch-1-volume-one/4000-372804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498604/","id":498604,"name":"X-Men 1: La Gente Del Mañana","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-2-x-men-1-la-gente-del-mana/4000-498604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498605/","id":498605,"name":"Spiderman 2: Curva de Aprendizaje","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-3-spiderman-2-curva-de-apre/4000-498605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498606/","id":498606,"name":"The Ultimates 1: Vengadores","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-4-the-ultimates-1-vengadore/4000-498606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402813/","id":402813,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-1/4000-402813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514562/","id":514562,"name":"Imposibles X-Force","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-especial-4-imposibles-x-force/4000-514562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538800/","id":538800,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-14/4000-538800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329198/","id":329198,"name":"4 (of 5)","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-burning-hand-4-4-of-5/4000-329198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540186/","id":540186,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-15/4000-540186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394916/","id":394916,"name":"","site_detail_url":"https://comicvine.gamespot.com/comics-saturday-night-live-1/4000-394916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386280/","id":386280,"name":"Месть Паука-Убийцы. Часть 1. Армия насекомых; Месть Паука-Убийцы. Часть 2. Все, кто тебе дорог, погибнут","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-4--1-2/4000-386280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386478/","id":386478,"name":"Осада. Часть 3; Осада. Часть 4","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-2-3-4/4000-386478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313708/","id":313708,"name":"Unrepentant","site_detail_url":"https://comicvine.gamespot.com/static-shock-6-unrepentant/4000-313708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314976/","id":314976,"name":"Not So Super","site_detail_url":"https://comicvine.gamespot.com/superboy-6-not-so-super/4000-314976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315706/","id":315706,"name":"The End of the Beginning","site_detail_url":"https://comicvine.gamespot.com/supergirl-6-the-end-of-the-beginning/4000-315706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316569/","id":316569,"name":"By The Light...","site_detail_url":"https://comicvine.gamespot.com/teen-titans-6-by-the-light/4000-316569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316568/","id":316568,"name":"Open Graves","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-6-open-graves/4000-316568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314719/","id":314719,"name":"Cold Hearted","site_detail_url":"https://comicvine.gamespot.com/mister-terrific-6-cold-hearted/4000-314719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304835/","id":304835,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/footprints-1-gn/4000-304835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327555/","id":327555,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-4/4000-327555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336415/","id":336415,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-wolverine-new-mutants-1-hc-tpb/4000-336415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336420/","id":336420,"name":"Amazing Spider-Man: Flying Blind","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-flying-blind-1-amazing-spider-m/4000-336420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348677/","id":348677,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-the-spectre-1-vol-1/4000-348677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426240/","id":426240,"name":"Ljudi u Crnom","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-1-ljudi-u-crnom/4000-426240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332760/","id":332760,"name":"Untold Tales of Spider-Man Omnibus","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-spider-man-omnibus-1-untold-tales-/4000-332760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335836/","id":335836,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-omnibus-2-volume-2/4000-335836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336183/","id":336183,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-omnibus-2-volume-two/4000-336183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336187/","id":336187,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-1-hc-tpb/4000-336187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336190/","id":336190,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-uncanny-x-force-the-deep-1-hc-tpb/4000-336190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336300/","id":336300,"name":"Ultimate Comics Avengers by Mark Millar Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-by-mark-millar-omnibus-1-/4000-336300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332809/","id":332809,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-fatal-attractions-1/4000-332809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315750/","id":315750,"name":"Morbid Curiosity","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-6791-morbid-curiosity/4000-315750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315739/","id":315739,"name":"The Longest Winter, Part 2","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-2-the-longest-winter-part-2/4000-315739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329544/","id":329544,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/daredevil-season-one-1-gn/4000-329544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329745/","id":329745,"name":"It's Coming","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-its-coming-1-its-coming/4000-329745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362621/","id":362621,"name":"Absolute Sinestro Corps War","site_detail_url":"https://comicvine.gamespot.com/absolute-sinestro-corps-war-1-absolute-sinestro-co/4000-362621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323431/","id":323431,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-33/4000-323431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334153/","id":334153,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-61/4000-334153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331432/","id":331432,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-tales-from-neverland-1-volume-1/4000-331432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386367/","id":386367,"name":"Issue #1","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-1-issue-1/4000-386367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386615/","id":386615,"name":"Ошеломительный Тор. Часть 1; Ошеломительный Тор. Часть 2","site_detail_url":"https://comicvine.gamespot.com/tor-mega-komiks-1-1-2/4000-386615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313907/","id":313907,"name":"The Dead Winter","site_detail_url":"https://comicvine.gamespot.com/the-punisher-8-the-dead-winter/4000-313907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386324/","id":386324,"name":"Школа супергероев. Часть 1; Школа супергероев. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-4-1-2/4000-386324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387652/","id":387652,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-1-world-war-hulk/4000-387652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313877/","id":313877,"name":"Headshots","site_detail_url":"https://comicvine.gamespot.com/villains-for-hire-3-headshots/4000-313877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313883/","id":313883,"name":"Noon","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-3-noon/4000-313883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313898/","id":313898,"name":"I Killed Tomorrow, Part 2 of 2: A Date With Predestiny","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-679-i-killed-tomorrow-part-/4000-313898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313902/","id":313902,"name":"They Keep Killing Madrox Part Three","site_detail_url":"https://comicvine.gamespot.com/x-factor-231-they-keep-killing-madrox-part-three/4000-313902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314971/","id":314971,"name":"War's End","site_detail_url":"https://comicvine.gamespot.com/punishermax-22-wars-end/4000-314971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315111/","id":315111,"name":"New Life","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-22-new-life/4000-315111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315148/","id":315148,"name":"Powerless, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-8-powerless-part-3/4000-315148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315178/","id":315178,"name":"Dead, Part One","site_detail_url":"https://comicvine.gamespot.com/deadpool-50-dead-part-one/4000-315178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315288/","id":315288,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-4/4000-315288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315729/","id":315729,"name":"They Keep Killing Madrox Part Four","site_detail_url":"https://comicvine.gamespot.com/x-factor-232-they-keep-killing-madrox-part-four/4000-315729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315803/","id":315803,"name":"Hey! Don’t Point That Thing At Me!","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-4-hey-dont-point-that-thing-at/4000-315803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315754/","id":315754,"name":"Beware the Gorgon!","site_detail_url":"https://comicvine.gamespot.com/avengers-22-beware-the-gorgon/4000-315754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315829/","id":315829,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-21/4000-315829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315743/","id":315743,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-9/4000-315743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315780/","id":315780,"name":"Victory!","site_detail_url":"https://comicvine.gamespot.com/dc-universe-online-legends-23-victory/4000-315780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315093/","id":315093,"name":"Lost Weekend, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/daken-dark-wolverine-21-lost-weekend-pt-1/4000-315093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316798/","id":316798,"name":"Meet The New Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-7-meet-the-new-spider-m/4000-316798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316791/","id":316791,"name":"Pathfinder - Part 5; Extra Credit","site_detail_url":"https://comicvine.gamespot.com/avengers-solo-5-pathfinder-part-5-extra-credit/4000-316791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317930/","id":317930,"name":"The New Avengers versus Authority","site_detail_url":"https://comicvine.gamespot.com/new-avengers-22-the-new-avengers-versus-authority/4000-317930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317925/","id":317925,"name":"The Hammer Falls!","site_detail_url":"https://comicvine.gamespot.com/avengers-23-the-hammer-falls/4000-317925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326859/","id":326859,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-red-sonja-2/4000-326859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327796/","id":327796,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-solo-1-hc-tpb/4000-327796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329539/","id":329539,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/rich-johnstons-iron-muslim-1-part-1/4000-329539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329542/","id":329542,"name":"So We Sailed Up to the Sun, Part One of Four","site_detail_url":"https://comicvine.gamespot.com/68-scars-1-so-we-sailed-up-to-the-sun-part-one-of-/4000-329542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329698/","id":329698,"name":"New Creation, Part 3","site_detail_url":"https://comicvine.gamespot.com/artifacts-16-new-creation-part-3/4000-329698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329713/","id":329713,"name":"","site_detail_url":"https://comicvine.gamespot.com/epoch-5/4000-329713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332004/","id":332004,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-mythos-1-hctpb/4000-332004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332590/","id":332590,"name":"The Man Who Holds The Hands of Death","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-8-the-man-who-holds-the-hands-of-deat/4000-332590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331972/","id":331972,"name":"Leonardo","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-4-leonar/4000-331972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333541/","id":333541,"name":"New York Throwdown","site_detail_url":"https://comicvine.gamespot.com/kirby-genesis-7-new-york-throwdown/4000-333541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336119/","id":336119,"name":"To Kill A Sparrow, Part 2 of 6; Monster Hunters; Leaping Metal Dragon, Part 2 of 6; Atomic Robo vs. Rasputin","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-presents-real-science-adventures-2-to-/4000-336119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337237/","id":337237,"name":"Anni 30","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-320-anni-30/4000-337237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334866/","id":334866,"name":"Heroes in a Half-Shell","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-100-page-spectacular-/4000-334866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329543/","id":329543,"name":"Return Trip","site_detail_url":"https://comicvine.gamespot.com/haunt-23-return-trip/4000-329543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315732/","id":315732,"name":"Toy Boat: Chapter One of Cubs in Toyland; A Revolution in Oz - Chapter 1: The Treasure House","site_detail_url":"https://comicvine.gamespot.com/fables-114-toy-boat-chapter-one-of-cubs-in-toyland/4000-315732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315755/","id":315755,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-7/4000-315755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318009/","id":318009,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-twelve-10/4000-318009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347467/","id":347467,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-ultimate-collecti/4000-347467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309573/","id":309573,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/avengers-annual-1-part-two/4000-309573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311013/","id":311013,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-1959-5/4000-311013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311014/","id":311014,"name":"Blood Feud","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-528-blo/4000-311014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311759/","id":311759,"name":"Conclusion","site_detail_url":"https://comicvine.gamespot.com/legion-of-monsters-4-conclusion/4000-311759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312808/","id":312808,"name":"Fight Club; Dumb Luck","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-22-fight-club-dumb-lu/4000-312808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320842/","id":320842,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-1959-1-tpb/4000-320842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321759/","id":321759,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-childrens-crusade-1-hc-tpb/4000-321759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321764/","id":321764,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/elektra-by-greg-rucka-ultimate-collection-1-tpb/4000-321764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322960/","id":322960,"name":"2 of 2","site_detail_url":"https://comicvine.gamespot.com/infestation-2-teenage-mutant-ninja-turtles-2-2-of-/4000-322960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323370/","id":323370,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1970s-2-volume-two/4000-323370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323692/","id":323692,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-lost-in-space-time-1-/4000-323692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324362/","id":324362,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-goodbye-chinatown-1-hc-tpb/4000-324362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325096/","id":325096,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-14-volume-14/4000-325096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328737/","id":328737,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/deadpool-evil-deadpool-1-volume-10/4000-328737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329016/","id":329016,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/shattered-heroes-1-hc/4000-329016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324357/","id":324357,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-nick-fury-scorpio-1-tpb/4000-324357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498603/","id":498603,"name":"Spiderman 1: Poder y Responsabilidad","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-1-spiderman-1-poder-y-respo/4000-498603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538799/","id":538799,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-13/4000-538799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321201/","id":321201,"name":"3 (of 5)","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-burning-hand-3-3-of-5/4000-321201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551703/","id":551703,"name":"Spiderman Nunca Más","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-consecuencias-1-spiderman-nunca-ma/4000-551703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551704/","id":551704,"name":"La llegada del nuevo Spiderman","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-consecuencias-2-la-llegada-del-nue/4000-551704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324688/","id":324688,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/dmz-free-states-rising-1-volume-11/4000-324688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319574/","id":319574,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-3/4000-319574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328749/","id":328749,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-youth-in-revolt-1-hc-tpb/4000-328749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386279/","id":386279,"name":"Высокие ставки. Часть 3; Высокие ставки. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-3-3-4/4000-386279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386477/","id":386477,"name":"Осада. Часть 1; Осада. Часть 2","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-1-1-2/4000-386477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386833/","id":386833,"name":"Тони Старк: Распад. Часть 1","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-1-1/4000-386833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309360/","id":309360,"name":"True Natures","site_detail_url":"https://comicvine.gamespot.com/static-shock-5-true-natures/4000-309360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312560/","id":312560,"name":"Over Before It's Begun","site_detail_url":"https://comicvine.gamespot.com/teen-titans-5-over-before-its-begun/4000-312560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312648/","id":312648,"name":"Walking Nightmares","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-5-walking-nightmares/4000-312648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321942/","id":321942,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-6-chap/4000-321942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323989/","id":323989,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-spider-man-1-hc-tpb/4000-323989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324322/","id":324322,"name":"Incredible Hulks: World War Hulks","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-world-war-hulks-1-incredible-hulk/4000-324322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324355/","id":324355,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-by-nick-spencer-1-volume-one/4000-324355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311767/","id":311767,"name":"I Killed Tomorrow, Part 1: Schrödinger's Catastrophe","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-678-i-killed-tomorrow-part-/4000-311767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321657/","id":321657,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-featuring-super/4000-321657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321756/","id":321756,"name":"Avengers by Brian Michael Bendis: The Heroic Age","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age-1-/4000-321756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319678/","id":319678,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-32/4000-319678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310913/","id":310913,"name":"The Devil and the Details, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-677-the-devil-and-the-detai/4000-310913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321572/","id":321572,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-avengers-academy-1-hc-tpb/4000-321572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321576/","id":321576,"name":"Fear Itself: Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/fear-itself-invincible-iron-man-1-fear-itself-invi/4000-321576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386323/","id":386323,"name":"Город, где разбиваются сердца; Специальный юбилейный выпуск!","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-3-wikiiss/4000-386323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309396/","id":309396,"name":"Dawn","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-2-dawn/4000-309396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309506/","id":309506,"name":"The String","site_detail_url":"https://comicvine.gamespot.com/the-punisher-7-the-string/4000-309506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309598/","id":309598,"name":"Girls Night Out, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-23-20-girls-night-out-part-1/4000-309598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310833/","id":310833,"name":"They Keep Killing Madrox Part Two","site_detail_url":"https://comicvine.gamespot.com/x-factor-230-they-keep-killing-madrox-part-two/4000-310833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310932/","id":310932,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-6/4000-310932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311028/","id":311028,"name":"Homeless, Conclusion","site_detail_url":"https://comicvine.gamespot.com/punishermax-21-homeless-conclusion/4000-311028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310807/","id":310807,"name":"Back In Japan, Part One","site_detail_url":"https://comicvine.gamespot.com/wolverine-300-back-in-japan-part-one/4000-310807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310917/","id":310917,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-3/4000-310917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311835/","id":311835,"name":"Red Dead!","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-3-red-dead/4000-311835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311671/","id":311671,"name":"Devil and the Details Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-8-devil-and-the-details-part-2/4000-311671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311838/","id":311838,"name":"Meet The New Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-6-meet-the-new-spider-m/4000-311838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311826/","id":311826,"name":"Hellstorm!","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-fearless-7-hellstorm/4000-311826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312033/","id":312033,"name":"Membership Madness","site_detail_url":"https://comicvine.gamespot.com/defenders-tournament-of-heroes-1-membership-madnes/4000-312033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311755/","id":311755,"name":"Demon Part 3: Control","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-512-demon-part-3-control/4000-311755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312809/","id":312809,"name":"Pathfinder - Part 4; The Sounds of Violence","site_detail_url":"https://comicvine.gamespot.com/avengers-solo-4-pathfinder-part-4-the-sounds-of-vi/4000-312809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312793/","id":312793,"name":"Deadpool: The Musical","site_detail_url":"https://comicvine.gamespot.com/deadpool-49-1-deadpool-the-musical/4000-312793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319601/","id":319601,"name":"1 of 2","site_detail_url":"https://comicvine.gamespot.com/infestation-2-teenage-mutant-ninja-turtles-1-1-of-/4000-319601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321555/","id":321555,"name":"New Creation, Part 2","site_detail_url":"https://comicvine.gamespot.com/artifacts-15-new-creation-part-2/4000-321555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321569/","id":321569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ultimate-collecti/4000-321569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323677/","id":323677,"name":"","site_detail_url":"https://comicvine.gamespot.com/kirby-genesis-silver-star-4/4000-323677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324013/","id":324013,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-united-1-tpb/4000-324013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311020/","id":311020,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-way-station-2/4000-311020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326891/","id":326891,"name":"The Survivors, Part 1","site_detail_url":"https://comicvine.gamespot.com/prototype-2-3-the-survivors-part-1/4000-326891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326888/","id":326888,"name":"The Survivors, Part 2","site_detail_url":"https://comicvine.gamespot.com/prototype-2-4-the-survivors-part-2/4000-326888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324695/","id":324695,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-8/4000-324695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329015/","id":329015,"name":"Vol. 4: Run the Mission, Don't Get Seen, Save the World","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-run-the-mission-dont-get-seen-save/4000-329015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313910/","id":313910,"name":"","site_detail_url":"https://comicvine.gamespot.com/haunted-city-2/4000-313910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321672/","id":321672,"name":"Devil Inside","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-14-devil-inside/4000-321672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321737/","id":321737,"name":"Backflash 1979","site_detail_url":"https://comicvine.gamespot.com/haunt-22-backflash-1979/4000-321737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321351/","id":321351,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-4/4000-321351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370171/","id":370171,"name":"The Man From the Mirror","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-1-the-man-from-the-mirror/4000-370171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311741/","id":311741,"name":"In Those Days","site_detail_url":"https://comicvine.gamespot.com/fables-113-in-those-days/4000-311741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319422/","id":319422,"name":"Odyssey Vol. 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-odyssey-2-odyssey-vol-2/4000-319422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320823/","id":320823,"name":"Hexen","site_detail_url":"https://comicvine.gamespot.com/fables-15-hexen/4000-320823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376997/","id":376997,"name":"The Guitar Hero","site_detail_url":"https://comicvine.gamespot.com/vigilante-project-1-the-guitar-hero/4000-376997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325022/","id":325022,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/ichiro-1-hc-sc/4000-325022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307454/","id":307454,"name":"BY BLASTING IT BACK TO HELL WHENCE IT CAME?!","site_detail_url":"https://comicvine.gamespot.com/legion-of-monsters-3-by-blasting-it-back-to-hell-w/4000-307454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307135/","id":307135,"name":"All Men Fear Lady Bullseye!","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-526-all/4000-307135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308558/","id":308558,"name":"Here Comes The Pain","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-527-her/4000-308558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313623/","id":313623,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/american-vampire-3-volume-three/4000-313623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314094/","id":314094,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-fall-of-the-hulks-1-hc/4000-314094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315552/","id":315552,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-secret-avengers-1-hc-tpb/4000-315552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315553/","id":315553,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-next-chapter-2-volume-two/4000-315553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316044/","id":316044,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-by-brian-michael-bendis/4000-316044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316046/","id":316046,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/x-factor-super-unnatural-1-volume-14/4000-316046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316795/","id":316795,"name":"Tony Masso's Finest Hour; Bay of Bengal-1984; 1969; \"You Send Me\" Chapter 3; Edgar Allan Poe's The City in the Sea; \"The Vicar Slash'd from Side to Side\" Chapter 2; The Once & Future Tarzan Chapter 2; Skull and Crossbows Chapter 1; Alabaster: Wolves; \"The","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-9-tony-massos-finest-hour-bay-/4000-316795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317033/","id":317033,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-1-tpb/4000-317033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317869/","id":317869,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/key-of-z-1-tpb/4000-317869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320872/","id":320872,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-black-panther-the-man-without-fear-1-h/4000-320872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320881/","id":320881,"name":"Fear Itself: Herc","site_detail_url":"https://comicvine.gamespot.com/fear-itself-herc-1-fear-itself-herc/4000-320881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321181/","id":321181,"name":"After 100 Days","site_detail_url":"https://comicvine.gamespot.com/punisher-by-greg-rucka-1-after-100-days/4000-321181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321183/","id":321183,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-jonathan-hickman-1-vo/4000-321183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314187/","id":314187,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-2/4000-314187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317871/","id":317871,"name":"Donatello","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-3-donate/4000-317871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345731/","id":345731,"name":"Change is Constant","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-change-is-constant-1-/4000-345731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514560/","id":514560,"name":"Spiderman","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-especial-2-spiderman/4000-514560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514571/","id":514571,"name":"","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-primera-linea-3/4000-514571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314966/","id":314966,"name":"2 (of 5)","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-burning-hand-2-2-of-5/4000-314966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540184/","id":540184,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-13/4000-540184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386278/","id":386278,"name":"Смертельная зависть; Последний урок; Жало, которое невозможно вынуть","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-2-wikiissue/4000-386278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305599/","id":305599,"name":"False Impressions","site_detail_url":"https://comicvine.gamespot.com/static-shock-4-false-impressions/4000-305599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306488/","id":306488,"name":"Wise Men Need Not Apply","site_detail_url":"https://comicvine.gamespot.com/superboy-4-wise-men-need-not-apply/4000-306488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308405/","id":308405,"name":"Danger Squared!","site_detail_url":"https://comicvine.gamespot.com/teen-titans-4-danger-squared/4000-308405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314089/","id":314089,"name":null,"site_detail_url":"https://comicvine.gamespot.com/warriors-of-mars-1/4000-314089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315482/","id":315482,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-1-chap/4000-315482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316130/","id":316130,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-2-chap/4000-316130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316808/","id":316808,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-3-chap/4000-316808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318081/","id":318081,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-4-chap/4000-318081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317494/","id":317494,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-7-volume-7/4000-317494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316717/","id":316717,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-red-sonja-1/4000-316717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317020/","id":317020,"name":"Iron Man 2.0: Asymmetry","site_detail_url":"https://comicvine.gamespot.com/iron-man-20-asymmetry-1-iron-man-20-asymmetry/4000-317020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317022/","id":317022,"name":"Marvel Adventures Spider-Man: Tangled Web","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-tangled-web-1-marvel-/4000-317022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317024/","id":317024,"name":"Spider-Man Fights Substance Abuse","site_detail_url":"https://comicvine.gamespot.com/spider-man-fights-substance-abuse-1-spider-man-fig/4000-317024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317111/","id":317111,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-omnibus-1-hc/4000-317111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716013/","id":716013,"name":"Swarm Strikes!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-233-swarm-strike/4000-716013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307527/","id":307527,"name":"The Sinister Six in 'Tomorrow the World!'","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-676-the-sinister-six-in-tom/4000-307527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314626/","id":314626,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-season-one-1-gn/4000-314626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316037/","id":316037,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4000-316037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316038/","id":316038,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/avengers-omnibus-1-volume-one/4000-316038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316041/","id":316041,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-deadpool-fearsome-four-1-hc-tpb/4000-316041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316042/","id":316042,"name":"Spider-Man: Spider-Island Companion","site_detail_url":"https://comicvine.gamespot.com/spider-man-spider-island-companion-1-spider-man-sp/4000-316042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316045/","id":316045,"name":"Vengeance","site_detail_url":"https://comicvine.gamespot.com/vengeance-1-vengeance/4000-316045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316047/","id":316047,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha-1-x-force-necrosha/4000-316047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316139/","id":316139,"name":"Phantom Detective vs Frankenstein","site_detail_url":"https://comicvine.gamespot.com/return-of-the-monsters-phantom-detective-vs-franke/4000-316139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317178/","id":317178,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1287/4000-317178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319593/","id":319593,"name":null,"site_detail_url":"https://comicvine.gamespot.com/The%20Astonishing%20Spider-Man-57/4000-319593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386322/","id":386322,"name":"Порочная любовь. Часть 5; Порочная любовь. Часть 6","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-2-5-6/4000-386322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315540/","id":315540,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-x-factor-4-volume-four/4000-315540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315541/","id":315541,"name":"Fear Itself: Hulk","site_detail_url":"https://comicvine.gamespot.com/fear-itself-hulk-1-fear-itself-hulk/4000-315541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315275/","id":315275,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-ghosts-1-volume-1/4000-315275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305690/","id":305690,"name":"Great Heights, Part Two: Partners in Crime","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-675-great-heights-part-two-/4000-305690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305573/","id":305573,"name":"Breaker of Worlds Part 1: I Hate Myself And Want To Die","site_detail_url":"https://comicvine.gamespot.com/defenders-1-breaker-of-worlds-part-1-i-hate-myself/4000-305573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305789/","id":305789,"name":"Road Trip, Part One","site_detail_url":"https://comicvine.gamespot.com/venom-10-road-trip-part-one/4000-305789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306478/","id":306478,"name":"Midnight","site_detail_url":"https://comicvine.gamespot.com/avengers-x-sanction-1-midnight/4000-306478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306639/","id":306639,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-19/4000-306639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306727/","id":306727,"name":"The Palmer Addley Infection, Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-20-11-the-palmer-addley-infection-part-3/4000-306727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307050/","id":307050,"name":"Evil Deadpool, Part 3: You're Going Down","site_detail_url":"https://comicvine.gamespot.com/deadpool-47-evil-deadpool-part-3-youre-going-down/4000-307050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306567/","id":306567,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-4/4000-306567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307697/","id":307697,"name":"Forever, Part 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-601-forever-part-2/4000-307697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307698/","id":307698,"name":"Homeless, Part 4","site_detail_url":"https://comicvine.gamespot.com/punishermax-20-homeless-part-4/4000-307698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307727/","id":307727,"name":"Misadventures in Babysitting, Part 3","site_detail_url":"https://comicvine.gamespot.com/x-23-19-misadventures-in-babysitting-part-3/4000-307727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307450/","id":307450,"name":"And Then There Was War, Part One","site_detail_url":"https://comicvine.gamespot.com/wolverine-20-and-then-there-was-war-part-one/4000-307450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308843/","id":308843,"name":"Encircle","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-20-encircle/4000-308843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308571/","id":308571,"name":"Evil Deadpool, Part Four: Just Me, Baby","site_detail_url":"https://comicvine.gamespot.com/deadpool-48-evil-deadpool-part-four-just-me-baby/4000-308571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308950/","id":308950,"name":"Pathfinder - Part 3; Fight or Flight","site_detail_url":"https://comicvine.gamespot.com/avengers-solo-3-pathfinder-part-3-fight-or-flight/4000-308950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308952/","id":308952,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-6/4000-308952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308829/","id":308829,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-5/4000-308829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309981/","id":309981,"name":"The Heroic Age Starts Here","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-1-the-heroic-age-starts-here/4000-309981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309792/","id":309792,"name":"Faith and Deception","site_detail_url":"https://comicvine.gamespot.com/vengeance-6-faith-and-deception/4000-309792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305778/","id":305778,"name":"Misadventures in Babysitting, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-23-18-misadventures-in-babysitting-part-2/4000-305778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314093/","id":314093,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-heroes-for-hire-1-hc-tpb/4000-314093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314105/","id":314105,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/avengelyne-devil-in-the-flesh-1-vol-1/4000-314105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314247/","id":314247,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-redemption-4-volume-4/4000-314247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315017/","id":315017,"name":"New Creation, Part 1; Reborn","site_detail_url":"https://comicvine.gamespot.com/artifacts-14-new-creation-part-1-reborn/4000-315017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315232/","id":315232,"name":"On Your Own, Part One","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-nine-6-on-your-own/4000-315232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315236/","id":315236,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-3/4000-315236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315873/","id":315873,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/power-girl-old-friends-1-tpb/4000-315873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316706/","id":316706,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-7/4000-316706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325026/","id":325026,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/torpedo-4-volume-four/4000-325026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316848/","id":316848,"name":"The Anchor, Part 1","site_detail_url":"https://comicvine.gamespot.com/prototype-2-1-the-anchor-part-1/4000-316848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307518/","id":307518,"name":"Demon Part 2: Exposure","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-511-demon-part-2-exposure/4000-307518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313903/","id":313903,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/infestation-2-transformers-1-part-1/4000-313903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315290/","id":315290,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-hook-3/4000-315290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335575/","id":335575,"name":"Ultron Quest","site_detail_url":"https://comicvine.gamespot.com/avengers-ultron-quest-1-ultron-quest/4000-335575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336895/","id":336895,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/superior-1-hc/4000-336895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443695/","id":443695,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-2011/4000-443695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307481/","id":307481,"name":"They Keep Killing Madrox Part One","site_detail_url":"https://comicvine.gamespot.com/x-factor-229-they-keep-killing-madrox-part-one/4000-307481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307513/","id":307513,"name":"All In A Single Night","site_detail_url":"https://comicvine.gamespot.com/fables-112-all-in-a-single-night/4000-307513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315825/","id":315825,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-6/4000-315825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307687/","id":307687,"name":"The Boy Who Would Be Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-5-the-boy-who-would-be-/4000-307687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319592/","id":319592,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-56/4000-319592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301055/","id":301055,"name":"Chapter 43: The Agenda Objective Domination Symposium of Blood","site_detail_url":"https://comicvine.gamespot.com/shame-itself-1-chapter-43-the-agenda-objective-dom/4000-301055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301729/","id":301729,"name":"The Kingpin of Wakanda","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-525-the/4000-301729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301659/","id":301659,"name":"Behold, The Watcher; Harbinger; The Myth of Man; The Scarlet Thread; Yin & Yang; The Shaman of Greenwich Village; Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/point-one-1-behold-the-watcher-harbinger-the-myth-/4000-301659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302683/","id":302683,"name":"RIDE, MONSTERS, RIDE!","site_detail_url":"https://comicvine.gamespot.com/legion-of-monsters-2-ride-monsters-ride/4000-302683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304589/","id":304589,"name":"The Sandstorm; Jungle Evil!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-20-the-sandstorm-jung/4000-304589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309609/","id":309609,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-omnibus-2-volume-2/4000-309609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309610/","id":309610,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-masques-1-hc/4000-309610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311041/","id":311041,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-by-daniel-way-ultimate-collection-1-tp/4000-311041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311042/","id":311042,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-311042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311298/","id":311298,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-spider-island-1-tpb-hc/4000-311298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312122/","id":312122,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-thunderbolts-1-hctpb/4000-312122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312132/","id":312132,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1970s-1-volume-one/4000-312132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312160/","id":312160,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-point-one-ii-1-tpb/4000-312160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312718/","id":312718,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-6/4000-312718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315229/","id":315229,"name":"The Gathering Storm, Part 3 (of 6)","site_detail_url":"https://comicvine.gamespot.com/spawn-215-the-gathering-storm-part-3-of-6/4000-315229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315494/","id":315494,"name":"","site_detail_url":"https://comicvine.gamespot.com/key-of-z-4/4000-315494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386460/","id":386460,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/young-justice-1-volume-1/4000-386460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498867/","id":498867,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-12/4000-498867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514221/","id":514221,"name":"Libro Segundo","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-2-libro-segundo/4000-514221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309462/","id":309462,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-annotated-sandman-1-volume-one/4000-309462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310794/","id":310794,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-on-to-genesis-1-volume-5/4000-310794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538797/","id":538797,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-11/4000-538797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540183/","id":540183,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-12/4000-540183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446173/","id":446173,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-book-history-of-comics-1/4000-446173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386277/","id":386277,"name":"Большие разборки; Американский герой","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-1-wikiissue/4000-386277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300974/","id":300974,"name":"Turnabout","site_detail_url":"https://comicvine.gamespot.com/static-shock-3-turnabout/4000-300974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313516/","id":313516,"name":"American Dreamers","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-1-american-dreamers/4000-313516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313541/","id":313541,"name":"Daredevil Vs. Bruiser","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-1-daredevil-vs-bruiser/4000-313541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312424/","id":312424,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-23-chaos-theory-1-volume-2/4000-312424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319591/","id":319591,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-55/4000-319591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386321/","id":386321,"name":"Порочная любовь. Часть 3; Порочная любовь. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-1-3-4/4000-386321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310926/","id":310926,"name":"Fear Itself: Avengers","site_detail_url":"https://comicvine.gamespot.com/fear-itself-avengers-1-fear-itself-avengers/4000-310926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311494/","id":311494,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-2-volume-two/4000-311494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309425/","id":309425,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/kato-origins-the-hellfire-club-1-vol-2/4000-309425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309600/","id":309600,"name":"Fear Itself","site_detail_url":"https://comicvine.gamespot.com/fear-itself-1-fear-itself/4000-309600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309603/","id":309603,"name":"Hulk: World War Hulks","site_detail_url":"https://comicvine.gamespot.com/hulk-world-war-hulks-1-hulk-world-war-hulks/4000-309603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309611/","id":309611,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition-2-volume-two/4000-309611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315683/","id":315683,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1281/4000-315683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319590/","id":319590,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-54/4000-319590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301042/","id":301042,"name":"Spider-Island, Epilogue: The Naked City","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-673-spider-island-epilogue-/4000-301042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301508/","id":301508,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-1/4000-301508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301728/","id":301728,"name":"What Would Peter Do?","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-4-what-would-peter-do/4000-301728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301814/","id":301814,"name":"Homeless, Part 3","site_detail_url":"https://comicvine.gamespot.com/punishermax-19-homeless-part-3/4000-301814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301666/","id":301666,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-1/4000-301666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302673/","id":302673,"name":"Misadventures in Babysitting, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-23-17-misadventures-in-babysitting-part-1/4000-302673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302678/","id":302678,"name":"Avengers Assemble!","site_detail_url":"https://comicvine.gamespot.com/avengers-19-avengers-assemble/4000-302678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302744/","id":302744,"name":"After 100 Days","site_detail_url":"https://comicvine.gamespot.com/the-punisher-5-after-100-days/4000-302744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302650/","id":302650,"name":"Great Heights, Part One: Trust Issues","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-674-great-heights-part-one-/4000-302650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302763/","id":302763,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-3-chapter-three/4000-302763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303357/","id":303357,"name":"Forever, Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-600-forever-part-1/4000-303357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303446/","id":303446,"name":"The Five Nations of New York, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-71-the-five-nations-of-new-york-conclusion/4000-303446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303676/","id":303676,"name":"Pathfinder - Part 2; Fight or Flight","site_detail_url":"https://comicvine.gamespot.com/avengers-solo-2-pathfinder-part-2-fight-or-flight/4000-303676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303673/","id":303673,"name":"Avengers Origins: Scarlet Witch & Quicksilver","site_detail_url":"https://comicvine.gamespot.com/avengers-origins-scarlet-witch-quicksilver-1-aveng/4000-303673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301210/","id":301210,"name":"Avengers Origns: Ant-Man and The Wasp","site_detail_url":"https://comicvine.gamespot.com/avengers-origins-ant-man-the-wasp-1-avengers-orign/4000-301210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303982/","id":303982,"name":"The Twelfth Hour","site_detail_url":"https://comicvine.gamespot.com/vengeance-5-the-twelfth-hour/4000-303982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310920/","id":310920,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one-4-volume-4/4000-310920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311819/","id":311819,"name":"","site_detail_url":"https://comicvine.gamespot.com/bomb-queen-vii-2/4000-311819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322111/","id":322111,"name":"The Man Who Was the King","site_detail_url":"https://comicvine.gamespot.com/orbit-jack-kirby-1-the-man-who-was-the-king/4000-322111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303731/","id":303731,"name":"Part Four of Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-4-part-four-of-four/4000-303731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365591/","id":365591,"name":"Punisher Max: Frank","site_detail_url":"https://comicvine.gamespot.com/max-48-punisher-max-frank/4000-365591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365595/","id":365595,"name":"Punisher Max: Der Letzte Weg","site_detail_url":"https://comicvine.gamespot.com/max-49-punisher-max-der-letzte-weg/4000-365595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319677/","id":319677,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-30/4000-319677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312902/","id":312902,"name":"","site_detail_url":"https://comicvine.gamespot.com/epoch-4/4000-312902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310815/","id":310815,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-2/4000-310815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303461/","id":303461,"name":"Men of Letters","site_detail_url":"https://comicvine.gamespot.com/the-unwritten-31-5-men-of-letters/4000-303461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302753/","id":302753,"name":"Evil Deadpool Part Two: Come Get Some","site_detail_url":"https://comicvine.gamespot.com/deadpool-46-evil-deadpool-part-two-come-get-some/4000-302753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437606/","id":437606,"name":"","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes-2/4000-437606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389567/","id":389567,"name":"Hell Can Wait...","site_detail_url":"https://comicvine.gamespot.com/flutter-1-hell-can-wait/4000-389567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310791/","id":310791,"name":"Book Six","site_detail_url":"https://comicvine.gamespot.com/preacher-6-book-six/4000-310791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311743/","id":311743,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-5/4000-311743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317924/","id":317924,"name":"Volume Fifteen","site_detail_url":"https://comicvine.gamespot.com/invincible-get-smart-1-volume-fifteen/4000-317924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379558/","id":379558,"name":"History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe-1-history-of-the-ma/4000-379558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294303/","id":294303,"name":"Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-1959-1-part-1-of-5/4000-294303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294346/","id":294346,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-island-heroes-for-hire-1/4000-294346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295601/","id":295601,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-524/4000-295601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-296902/","id":296902,"name":"Dulce et Decorum est...","site_detail_url":"https://comicvine.gamespot.com/all-winners-squad-band-of-heroes-5-dulce-et-decoru/4000-296902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297577/","id":297577,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-1959-2/4000-297577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295123/","id":295123,"name":"If He Be Worthy","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-19-if-he-be-worthy/4000-295123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299872/","id":299872,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-island-cloak-dagger-3-part-3/4000-299872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299874/","id":299874,"name":"The Zen of Spiders","site_detail_url":"https://comicvine.gamespot.com/spider-island-deadly-hands-of-kung-fu-3-the-zen-of/4000-299874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306573/","id":306573,"name":"Resigned","site_detail_url":"https://comicvine.gamespot.com/witchblade-150-resigned/4000-306573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307684/","id":307684,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-through-the-decades-1-tpb/4000-307684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307711/","id":307711,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-statix-omnibus-1-hc/4000-307711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307718/","id":307718,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-ultimate-colle/4000-307718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307909/","id":307909,"name":"Siege Oversized Hardcover Edition","site_detail_url":"https://comicvine.gamespot.com/siege-oversized-hardcover-edition-1-siege-oversize/4000-307909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309025/","id":309025,"name":"Michelangelo","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-2-michel/4000-309025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309350/","id":309350,"name":"Extraction","site_detail_url":"https://comicvine.gamespot.com/the-scourge-6-extraction/4000-309350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305994/","id":305994,"name":"The Gathering Storm, Part 2 (of 6)","site_detail_url":"https://comicvine.gamespot.com/spawn-214-the-gathering-storm-part-2-of-6/4000-305994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307506/","id":307506,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield-3-vol/4000-307506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409521/","id":409521,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/art-of-mortal-kombat-1-hc/4000-409521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412395/","id":412395,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/the-complete-invincible-library-3-vol-3/4000-412395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464223/","id":464223,"name":"","site_detail_url":"https://comicvine.gamespot.com/raw-power-1/4000-464223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306586/","id":306586,"name":"Volume 16","site_detail_url":"https://comicvine.gamespot.com/fables-super-team-1-volume-16/4000-306586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514220/","id":514220,"name":"Libro Primero","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-1-libro-primero/4000-514220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514569/","id":514569,"name":"","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-primera-linea-1/4000-514569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596367/","id":596367,"name":"","site_detail_url":"https://comicvine.gamespot.com/empire-state-a-love-story-or-not-1/4000-596367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308859/","id":308859,"name":"Mystery Men","site_detail_url":"https://comicvine.gamespot.com/mystery-men-1-mystery-men/4000-308859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308862/","id":308862,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-1-x-men-schism/4000-308862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342688/","id":342688,"name":"Relics","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-13-relics/4000-342688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294125/","id":294125,"name":"Disarmed","site_detail_url":"https://comicvine.gamespot.com/static-shock-2-disarmed/4000-294125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294828/","id":294828,"name":"And Gone","site_detail_url":"https://comicvine.gamespot.com/resurrection-man-2-and-gone/4000-294828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299488/","id":299488,"name":"Wings of Darkness","site_detail_url":"https://comicvine.gamespot.com/the-savage-hawkman-2-wings-of-darkness/4000-299488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299744/","id":299744,"name":"Spider-Island, Part Six: Boss Battle","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-672-spider-island-part-six-/4000-299744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299482/","id":299482,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-2-part-two/4000-299482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307479/","id":307479,"name":"","site_detail_url":"https://comicvine.gamespot.com/key-of-z-3/4000-307479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308170/","id":308170,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-1-tpb/4000-308170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307708/","id":307708,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-4/4000-307708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298472/","id":298472,"name":"Youth in Revolt Part Six","site_detail_url":"https://comicvine.gamespot.com/fear-itself-youth-in-revolt-6-youth-in-revolt-part/4000-298472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298471/","id":298471,"name":"Who are the Avengers?","site_detail_url":"https://comicvine.gamespot.com/avengers-18-who-are-the-avengers/4000-298471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308204/","id":308204,"name":"Wolverine by Greg Rucka Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-greg-rucka-ultimate-collection-1-wolv/4000-308204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294956/","id":294956,"name":"Spider-Island, Part Five: A New Hope","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-671-spider-island-part-five/4000-294956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294893/","id":294893,"name":"The Great Karlini; Dogs; Look Alive; The Land; A Most Delicate Monster; Family First; Alone; Americana; Blink: Voodoo Child;","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-1-the-great-karlini-dogs-look-alive/4000-294893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389583/","id":389583,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-the-dream-eater-saga-1-volume-on/4000-389583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319588/","id":319588,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-52/4000-319588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415883/","id":415883,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-warriors-official-movie-adaptation-1-tpb/4000-415883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266690/","id":266690,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/warriors-1-tpb/4000-266690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293448/","id":293448,"name":"Starting Point","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-12-starting-point/4000-293448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295041/","id":295041,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-17/4000-295041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295207/","id":295207,"name":"Issue #4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-4-issue-4/4000-295207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295211/","id":295211,"name":"Homeless, Part 2","site_detail_url":"https://comicvine.gamespot.com/punishermax-18-homeless-part-2/4000-295211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295128/","id":295128,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-2-chapter-two/4000-295128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295070/","id":295070,"name":"To Be or Not to Be... Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-3-to-be-or-not-to-be-sp/4000-295070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294888/","id":294888,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-regenesis-1/4000-294888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297402/","id":297402,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-226/4000-297402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297225/","id":297225,"name":"Rebuilding Blocks","site_detail_url":"https://comicvine.gamespot.com/captain-atom-2-rebuilding-blocks/4000-297225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297401/","id":297401,"name":"Drive All Night","site_detail_url":"https://comicvine.gamespot.com/vengeance-4-drive-all-night/4000-297401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297217/","id":297217,"name":"Thor's Day","site_detail_url":"https://comicvine.gamespot.com/fear-itself-7-thors-day/4000-297217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297691/","id":297691,"name":"Into the Infinite!","site_detail_url":"https://comicvine.gamespot.com/captain-america-corps-5-into-the-infinite/4000-297691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298519/","id":298519,"name":"100-Page Spectacular","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-jla-the-age-of-wonder-1-100-pag/4000-298519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299750/","id":299750,"name":"Spider-Island, part 3","site_detail_url":"https://comicvine.gamespot.com/venom-8-spider-island-part-3/4000-299750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299745/","id":299745,"name":"Endings","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-20-endings/4000-299745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299571/","id":299571,"name":null,"site_detail_url":"https://comicvine.gamespot.com/daredevil-5/4000-299571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299634/","id":299634,"name":"The Five Nations of New York, Part 4","site_detail_url":"https://comicvine.gamespot.com/dmz-70-the-five-nations-of-new-york-part-4/4000-299634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299759/","id":299759,"name":"The Devil You Don't..","site_detail_url":"https://comicvine.gamespot.com/spider-island-the-amazing-spider-girl-3-the-devil-/4000-299759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300224/","id":300224,"name":"Pathfinder, Part 1; Moving Daze","site_detail_url":"https://comicvine.gamespot.com/avengers-solo-1-pathfinder-part-1-moving-daze/4000-300224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299749/","id":299749,"name":"Intelligence","site_detail_url":"https://comicvine.gamespot.com/ff-11-intelligence/4000-299749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302775/","id":302775,"name":"Aliens Are Not Real","site_detail_url":"https://comicvine.gamespot.com/xenoholics-2-aliens-are-not-real/4000-302775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297687/","id":297687,"name":"","site_detail_url":"https://comicvine.gamespot.com/superior-6/4000-297687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306262/","id":306262,"name":"Raphael","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-micro-series-1-raphae/4000-306262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307685/","id":307685,"name":"The Coming of the Defenders","site_detail_url":"https://comicvine.gamespot.com/defenders-the-coming-of-the-defenders-1-the-coming/4000-307685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307473/","id":307473,"name":"When The Monster Wakes","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-177-when-the-monster-wakes/4000-307473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305600/","id":305600,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-1-hc/4000-305600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307710/","id":307710,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-5/4000-307710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327470/","id":327470,"name":"I guardiani supremi","site_detail_url":"https://comicvine.gamespot.com/speciale-brad-barron-5-i-guardiani-supremi/4000-327470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306588/","id":306588,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea-3/4000-306588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306734/","id":306734,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-strain-1/4000-306734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401112/","id":401112,"name":"Preparations for War","site_detail_url":"https://comicvine.gamespot.com/hasbro-thanos-warlock-1-preparations-for-war/4000-401112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308832/","id":308832,"name":"Vol. 7","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-conception-1-vol-7/4000-308832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305689/","id":305689,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/bad-doings-and-big-ideas-a-bill-willingham-deluxe-/4000-305689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297322/","id":297322,"name":"Allies: Chapter Three of Inherit the Wind","site_detail_url":"https://comicvine.gamespot.com/fables-110-allies-chapter-three-of-inherit-the-win/4000-297322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305752/","id":305752,"name":"First Contact","site_detail_url":"https://comicvine.gamespot.com/voltron-1-first-contact/4000-305752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139983/","id":139983,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-origin-of-the-hobgoblin/4000-139983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290910/","id":290910,"name":"Visionaries, The Punisher Strikes Twice, Shadows of Evils Past, Now Strikes the Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/spider-island-emergence-of-evil-jackal-hobgoblin-1/4000-290910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292565/","id":292565,"name":"Hydrology, Part 1: Leaching","site_detail_url":"https://comicvine.gamespot.com/batwoman-1-hydrology-part-1-leaching/4000-292565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292610/","id":292610,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-523/4000-292610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293353/","id":293353,"name":"The Longest Day","site_detail_url":"https://comicvine.gamespot.com/all-winners-squad-band-of-heroes-4-the-longest-day/4000-293353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293568/","id":293568,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-guardians-1-part-one/4000-293568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297446/","id":297446,"name":"Scorched","site_detail_url":"https://comicvine.gamespot.com/the-scourge-5-scorched/4000-297446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293305/","id":293305,"name":"Conclusion","site_detail_url":"https://comicvine.gamespot.com/supreme-power-4-conclusion/4000-293305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302780/","id":302780,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-black-cat-claws-ii-1-hctpb/4000-302780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303502/","id":303502,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-corps-1-tpb/4000-303502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303671/","id":303671,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/thor-heaven-and-earth-1-hc/4000-303671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303672/","id":303672,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-fal/4000-303672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304467/","id":304467,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-4/4000-304467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304663/","id":304663,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-marvel-team-up-by-claremont-byrne-1-tpb/4000-304663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307674/","id":307674,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/supreme-power-gods-and-soldiers-1-tpb/4000-307674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307675/","id":307675,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-by-kieron-gillen-ultimate-collection-1-tpb/4000-307675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301034/","id":301034,"name":"The Gathering Storm, Part 1 (of 6)","site_detail_url":"https://comicvine.gamespot.com/spawn-213-the-gathering-storm-part-1-of-6/4000-301034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292589/","id":292589,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-5/4000-292589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450756/","id":450756,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/the-dreamer-1-vol-2/4000-450756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302742/","id":302742,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-3/4000-302742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305543/","id":305543,"name":"Comics of the Future","site_detail_url":"https://comicvine.gamespot.com/comic-book-comics-6-comics-of-the-future/4000-305543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595428/","id":595428,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidergirl-el-corazon-de-la-arana-1/4000-595428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293619/","id":293619,"name":"Spider-Island Part Four: Spiders, Spiders Everywhere","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-670-spider-island-part-four/4000-293619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291168/","id":291168,"name":"Recharged","site_detail_url":"https://comicvine.gamespot.com/static-shock-1-recharged/4000-291168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293570/","id":293570,"name":"Teen Spirit","site_detail_url":"https://comicvine.gamespot.com/teen-titans-1-teen-spirit/4000-293570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292566/","id":292566,"name":"War of the Monsters, Part 1: Monster Town, USA","site_detail_url":"https://comicvine.gamespot.com/frankenstein-agent-of-shade-1-war-of-the-monsters-/4000-292566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293267/","id":293267,"name":"Evolution of the Species","site_detail_url":"https://comicvine.gamespot.com/captain-atom-1-evolution-of-the-species/4000-293267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303674/","id":303674,"name":"Uncanny X-Force: The Dark Angel Saga, Book One","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-the-dark-angel-saga-book-one-1-unc/4000-303674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293355/","id":293355,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-the-childrens-crusade-7/4000-293355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301104/","id":301104,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/a-flight-of-angels-1-hc/4000-301104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302770/","id":302770,"name":"","site_detail_url":"https://comicvine.gamespot.com/key-of-z-2/4000-302770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292609/","id":292609,"name":"Spider-Island, Part Three: Arachnotopia","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-669-spider-island-part-thre/4000-292609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301803/","id":301803,"name":"Book 7","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-7-book-7/4000-301803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301804/","id":301804,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-the-comedy-of-death-1-tpb/4000-301804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302181/","id":302181,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus-1-volume-one/4000-302181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353119/","id":353119,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/green-blood-1-vol-1/4000-353119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301075/","id":301075,"name":"The Deal, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-last-of-the-greats-2-the-deal-part-two/4000-301075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307842/","id":307842,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1272/4000-307842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291190/","id":291190,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-punisher-3/4000-291190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291145/","id":291145,"name":"Conclusion","site_detail_url":"https://comicvine.gamespot.com/fear-itself-wolverine-3-conclusion/4000-291145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291697/","id":291697,"name":"The Revengers","site_detail_url":"https://comicvine.gamespot.com/new-avengers-annual-1-the-revengers/4000-291697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292003/","id":292003,"name":"Amphibians Assemble","site_detail_url":"https://comicvine.gamespot.com/spider-island-the-avengers-1-amphibians-assemble/4000-292003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291179/","id":291179,"name":"Chaos Theory, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-23-14-chaos-theory-part-2/4000-291179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292537/","id":292537,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-224-1/4000-292537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292615/","id":292615,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-3/4000-292615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292590/","id":292590,"name":"Blood-Tied & Doomed","site_detail_url":"https://comicvine.gamespot.com/fear-itself-6-blood-tied-doomed/4000-292590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292618/","id":292618,"name":"Fear Itself, part 3 Enter: Daredevil !","site_detail_url":"https://comicvine.gamespot.com/new-avengers-16-fear-itself-part-3-enter-daredevil/4000-292618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292619/","id":292619,"name":"And Crept Up Beside Her...","site_detail_url":"https://comicvine.gamespot.com/spider-island-the-amazing-spider-girl-2-and-crept-/4000-292619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292620/","id":292620,"name":"All-New Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-1-all-new-spider-man/4000-292620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292761/","id":292761,"name":"Homeless, Part 1","site_detail_url":"https://comicvine.gamespot.com/punishermax-17-homeless-part-1/4000-292761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293354/","id":293354,"name":"Fear Itself, part 5 Love is a Battlefield","site_detail_url":"https://comicvine.gamespot.com/avengers-17-fear-itself-part-5-love-is-a-battlefie/4000-293354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293313/","id":293313,"name":"The Five Nations of New York, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-69-the-five-nations-of-new-york-part-3/4000-293313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293314/","id":293314,"name":"Cardinal Virtues: Chapter Two of Inherit the Wind","site_detail_url":"https://comicvine.gamespot.com/fables-109-cardinal-virtues-chapter-two-of-inherit/4000-293314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293441/","id":293441,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-island-spider-woman-1/4000-293441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293449/","id":293449,"name":"The Only Thing We Have to Fear Is...","site_detail_url":"https://comicvine.gamespot.com/fear-itself-fearsome-four-4-the-only-thing-we-have/4000-293449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293235/","id":293235,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-1-chapter-one/4000-293235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293318/","id":293318,"name":"American Dreamers Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-american-dreamers-part-3/4000-293318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293468/","id":293468,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-225/4000-293468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293300/","id":293300,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-4/4000-293300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293317/","id":293317,"name":"Before the Devil Knows We're Dead, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/fear-itself-uncanny-x-force-3-before-the-devil-kno/4000-293317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293620/","id":293620,"name":"Things Fall Apart","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-19-things-fall-apart/4000-293620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293628/","id":293628,"name":"Every Little Thing","site_detail_url":"https://comicvine.gamespot.com/vengeance-3-every-little-thing/4000-293628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293533/","id":293533,"name":"The Republic Is Burning, Part II","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-2-the-republic-is-burnin/4000-293533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293532/","id":293532,"name":"Who is Miles Morales?","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-2-who-is-miles-morales/4000-293532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293632/","id":293632,"name":"Spider-Story, part 2","site_detail_url":"https://comicvine.gamespot.com/herc-8-spider-story-part-2/4000-293632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293634/","id":293634,"name":"Spider-Island, part 2","site_detail_url":"https://comicvine.gamespot.com/venom-7-spider-island-part-2/4000-293634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293633/","id":293633,"name":"Osborn Rises","site_detail_url":"https://comicvine.gamespot.com/new-avengers-16-1-osborn-rises/4000-293633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301065/","id":301065,"name":"Over the Hill with the Swords of a Thousand Men, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-boys-60-over-the-hill-with-the-swords-of-a-tho/4000-301065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301090/","id":301090,"name":"Interdimensional Women's Prison Breakout, Part 1","site_detail_url":"https://comicvine.gamespot.com/hackslash-9-interdimensional-womens-prison-breakou/4000-301090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302779/","id":302779,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-wolverine-1-hc-tpb/4000-302779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303017/","id":303017,"name":"Peter and the Machine","site_detail_url":"https://comicvine.gamespot.com/beyond-the-fringe-3a-peter-and-the-machine/4000-303017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304656/","id":304656,"name":"The Hand of God, Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/avengelyne-5-the-hand-of-god-part-2-of-3/4000-304656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304804/","id":304804,"name":"Headwires on Fire","site_detail_url":"https://comicvine.gamespot.com/haunt-19-headwires-on-fire/4000-304804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321670/","id":321670,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/morning-glories-deluxe-collection-1-volume-1/4000-321670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321990/","id":321990,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/dc-universe-online-legends-1-volume-one/4000-321990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301871/","id":301871,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-hook-1/4000-301871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303678/","id":303678,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-hook-2/4000-303678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302751/","id":302751,"name":"","site_detail_url":"https://comicvine.gamespot.com/return-of-the-monsters-the-spider-vs-werewolf-1/4000-302751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303148/","id":303148,"name":"","site_detail_url":"https://comicvine.gamespot.com/epoch-3/4000-303148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303458/","id":303458,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/preacher-5-book-five/4000-303458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462370/","id":462370,"name":"The Amazing Spider-Man: Coming Home","site_detail_url":"https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-21-the-amaz/4000-462370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301102/","id":301102,"name":"Vol. 5","site_detail_url":"https://comicvine.gamespot.com/absolute-sandman-5-vol-5/4000-301102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303700/","id":303700,"name":"Liebesgrüsse Aus Fabletown","site_detail_url":"https://comicvine.gamespot.com/fables-cinderella-1-liebesgrusse-aus-fabletown/4000-303700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305579/","id":305579,"name":"Synchronicity","site_detail_url":"https://comicvine.gamespot.com/rasl-12-synchronicity/4000-305579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283008/","id":283008,"name":"Chapter Four of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-4-chapter-four-of-six/4000-283008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283867/","id":283867,"name":"Blowing In The Wind","site_detail_url":"https://comicvine.gamespot.com/thor-heaven-earth-2-blowing-in-the-wind/4000-283867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285497/","id":285497,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-island-cloak-dagger-1-part-1/4000-285497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285357/","id":285357,"name":"Powered & Dangerous","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-3-powered-dangerous/4000-285357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285563/","id":285563,"name":"Chapter Five of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-5-chapter-five-of-six/4000-285563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286936/","id":286936,"name":"Chapter Six of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-6-chapter-six-of-six/4000-286936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287075/","id":287075,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-wolverine-3-part-3/4000-287075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288832/","id":288832,"name":"Ask Me Tomorrow","site_detail_url":"https://comicvine.gamespot.com/thor-heaven-earth-3-ask-me-tomorrow/4000-288832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286181/","id":286181,"name":"Out of the Picture; What I Did For Love, A Spider-Island Prelude","site_detail_url":"https://comicvine.gamespot.com/spider-island-deadly-foes-1-out-of-the-picture-wha/4000-286181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290665/","id":290665,"name":"Spider-Island Part Two: Peter Parker The Unspectacular Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-668-spider-island-part-two-/4000-290665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290625/","id":290625,"name":"Part One: Deadlier Than The Male","site_detail_url":"https://comicvine.gamespot.com/spider-island-deadly-hands-of-kung-fu-1-part-one-d/4000-290625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292136/","id":292136,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fear-itself-fellowship-of-fear-1/4000-292136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293352/","id":293352,"name":"Days of Glory","site_detail_url":"https://comicvine.gamespot.com/all-winners-squad-band-of-heroes-3-days-of-glory/4000-293352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293402/","id":293402,"name":"United Notions","site_detail_url":"https://comicvine.gamespot.com/michael-turners-fathom-2-united-notions/4000-293402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294311/","id":294311,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-glare-1-hc/4000-294311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294354/","id":294354,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-1-volume-one/4000-294354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295109/","id":295109,"name":"Violation of Trust, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/spawn-212-violation-of-trust-part-2-of-2/4000-295109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295212/","id":295212,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-strange-tales-1-tpb/4000-295212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295213/","id":295213,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1960s-1-tpb/4000-295213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297582/","id":297582,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/venom-lethal-protector-1-tpb/4000-297582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297584/","id":297584,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/x-factor-hard-labor-1-volume-13/4000-297584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300935/","id":300935,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-iron-age-1-hc/4000-300935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300936/","id":300936,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-deadly-foes-of-spider-man-1-tpb/4000-300936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299761/","id":299761,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-3/4000-299761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286960/","id":286960,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-black-cat-claws-2-2/4000-286960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314245/","id":314245,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-redemption-3-volume-3/4000-314245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331426/","id":331426,"name":"Frank","site_detail_url":"https://comicvine.gamespot.com/punishermax-frank-1-frank/4000-331426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538794/","id":538794,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-8/4000-538794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428576/","id":428576,"name":"Linea di Sangue","site_detail_url":"https://comicvine.gamespot.com/romanzi-a-fumetti-6-linea-di-sangue/4000-428576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573702/","id":573702,"name":"The Confessional","site_detail_url":"https://comicvine.gamespot.com/vigilante-project-0-the-confessional/4000-573702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613576/","id":613576,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/alan-moores-neonomicon-1-tpbhc/4000-613576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300932/","id":300932,"name":"Tales From the Marvel Vault","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-marvel-vault-1-tales-from-the-marve/4000-300932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307841/","id":307841,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1271/4000-307841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290942/","id":290942,"name":"Youth in Revolt Part Four","site_detail_url":"https://comicvine.gamespot.com/fear-itself-youth-in-revolt-4-youth-in-revolt-part/4000-290942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283860/","id":283860,"name":"Planet of Fear, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/hulk-38-planet-of-fear-pt-2/4000-283860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297574/","id":297574,"name":"Ultimate Comics Spider-Man: Death of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-1-u/4000-297574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297684/","id":297684,"name":"","site_detail_url":"https://comicvine.gamespot.com/key-of-z-1/4000-297684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299502/","id":299502,"name":"","site_detail_url":"https://comicvine.gamespot.com/daily-bugle-avenging-spider-man-1/4000-299502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307840/","id":307840,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1270/4000-307840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295215/","id":295215,"name":"New Mutants: Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/new-mutants-unfinished-business-1-new-mutants-unfi/4000-295215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295699/","id":295699,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-jason-aaron-omnibus-1-volume-one/4000-295699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307839/","id":307839,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-shop-news-1269/4000-307839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338188/","id":338188,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-2-vol-2/4000-338188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295114/","id":295114,"name":"","site_detail_url":"https://comicvine.gamespot.com/critter-3/4000-295114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309871/","id":309871,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-24/4000-309871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285544/","id":285544,"name":"Spider-Island Part One: The Amazing Spider-Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-667-spider-island-part-one-/4000-285544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294312/","id":294312,"name":"Fantastic Four: 1234","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1234-1-fantastic-four-1234/4000-294312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294315/","id":294315,"name":"Amazing Spider-Man: The Return of Anti-Venom","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-return-of-anti-venom-1-amaz/4000-294315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283916/","id":283916,"name":"Chaos Theory, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-23-13-chaos-theory-part-1/4000-283916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283858/","id":283858,"name":"Punisher: One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-punisher-one/4000-283858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283922/","id":283922,"name":"Everything To Lose","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-10-everything-to-lose/4000-283922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285718/","id":285718,"name":"Frank, Conclusion","site_detail_url":"https://comicvine.gamespot.com/punishermax-16-frank-conclusion/4000-285718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285550/","id":285550,"name":"Fear Itself, part 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-15-fear-itself-part-2/4000-285550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286920/","id":286920,"name":"Class Warfare","site_detail_url":"https://comicvine.gamespot.com/spider-island-the-amazing-spider-girl-1-class-warf/4000-286920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286935/","id":286935,"name":"Spider-Island, Part 1","site_detail_url":"https://comicvine.gamespot.com/venom-6-spider-island-part-1/4000-286935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286885/","id":286885,"name":"The Five Nations of New York, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-68-the-five-nations-of-new-york-part-2/4000-286885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286685/","id":286685,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-224/4000-286685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286890/","id":286890,"name":"Sixty Seconds","site_detail_url":"https://comicvine.gamespot.com/power-girl-27-sixty-seconds/4000-286890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286916/","id":286916,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-2/4000-286916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286817/","id":286817,"name":"American Dreamers Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-2-american-dreamers-part-2/4000-286817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287763/","id":287763,"name":"Overcome","site_detail_url":"https://comicvine.gamespot.com/fear-itself-fearsome-four-3-overcome/4000-287763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288678/","id":288678,"name":"Punisher: Two","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2-punisher-two/4000-288678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288885/","id":288885,"name":"The Republic Is Burning, Part I","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-1-the-republic-is-burnin/4000-288885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288774/","id":288774,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-3/4000-288774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288489/","id":288489,"name":"My World Won't Stop Without You","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-13-my-world-won-t-stop-without-you/4000-288489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291101/","id":291101,"name":"Infested","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-infested-1-infested/4000-291101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283176/","id":283176,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/fear-itself-wolverine-2-part-2/4000-283176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291609/","id":291609,"name":"Spider-Island I Love New York","site_detail_url":"https://comicvine.gamespot.com/spider-island-i-love-new-york-city-1-spider-island/4000-291609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288761/","id":288761,"name":"Hothead","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive-green-lantern-the-90s-1-hothead/4000-288761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294340/","id":294340,"name":"The Big Ride, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-59-the-big-ride-conclusion/4000-294340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298510/","id":298510,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-2/4000-298510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294776/","id":294776,"name":"The Worthy: Sin","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-fearless-0-the-worthy-sin/4000-294776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299803/","id":299803,"name":"The Hand of God, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/avengelyne-4-the-hand-of-god-part-1-of-3/4000-299803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285554/","id":285554,"name":"Bad Moon Rising","site_detail_url":"https://comicvine.gamespot.com/iron-age-3-bad-moon-rising/4000-285554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297453/","id":297453,"name":"Xenoholics","site_detail_url":"https://comicvine.gamespot.com/xenoholics-1-xenoholics/4000-297453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305568/","id":305568,"name":"","site_detail_url":"https://comicvine.gamespot.com/wulf-4/4000-305568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315621/","id":315621,"name":"Longitudine Zero","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-317-longitudine-zero/4000-315621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311165/","id":311165,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/transformers-classics-uk-1-volume-1/4000-311165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297291/","id":297291,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-171/4000-297291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381762/","id":381762,"name":"","site_detail_url":"https://comicvine.gamespot.com/fame-suzanne-collins-1/4000-381762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286883/","id":286883,"name":"Hall of the Mountain King, Chapter One of Inherit the Wind","site_detail_url":"https://comicvine.gamespot.com/fables-108-hall-of-the-mountain-king-chapter-one-o/4000-286883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294297/","id":294297,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-83/4000-294297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309365/","id":309365,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/hark-a-vagrant-1-ogn/4000-309365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277526/","id":277526,"name":"Back and Forth","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-black-cat-claws-2-1-back-and-forth/4000-277526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278548/","id":278548,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-3/4000-278548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278868/","id":278868,"name":"Soldier - What Did You See?","site_detail_url":"https://comicvine.gamespot.com/all-winners-squad-band-of-heroes-2-soldier-what-di/4000-278868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281154/","id":281154,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-wolverine-2-part-2/4000-281154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281840/","id":281840,"name":"Chapter Three of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-3-chapter-three-of-six/4000-281840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293539/","id":293539,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-2-volume-two/4000-293539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293590/","id":293590,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-wheels-within-wheels-1-volume-6/4000-293590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293610/","id":293610,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-vengeance-of-venom-1-tpb/4000-293610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293646/","id":293646,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-first-to-last-1-hc-tpb/4000-293646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293647/","id":293647,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-classic-2-volume-two/4000-293647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293892/","id":293892,"name":"Ghostbusters","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-1-ghostbusters/4000-293892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293439/","id":293439,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-games-1-ogn/4000-293439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291195/","id":291195,"name":"Violation Of Trust, Part One","site_detail_url":"https://comicvine.gamespot.com/spawn-211-violation-of-trust-part-one/4000-291195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293322/","id":293322,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-2/4000-293322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326580/","id":326580,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/blood-blockade-battlefront-1-volume-1/4000-326580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277626/","id":277626,"name":"Supreme Power, Part 2","site_detail_url":"https://comicvine.gamespot.com/supreme-power-2-supreme-power-part-2/4000-277626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278807/","id":278807,"name":"Chapter One of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-1-chapter-one-of-six/4000-278807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280828/","id":280828,"name":"Chapter Two of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-2-chapter-two-of-six/4000-280828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539121/","id":539121,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-increibles-hulks-4/4000-539121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540179/","id":540179,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-8/4000-540179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551757/","id":551757,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-muerte-2/4000-551757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293648/","id":293648,"name":"Captain Britain: The Siege of Camelot","site_detail_url":"https://comicvine.gamespot.com/captain-britain-the-siege-of-camelot-1-captain-bri/4000-293648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293860/","id":293860,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-6-volume-six/4000-293860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342687/","id":342687,"name":"Freaky","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-12-freaky/4000-342687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715470/","id":715470,"name":"The Osborn Ultimatum","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-226-the-osborn-u/4000-715470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281822/","id":281822,"name":"Spider-Island Prologue: The One And Only","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-666-spider-island-prologue-/4000-281822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293645/","id":293645,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/venom-by-rick-remender-1-volume-one/4000-293645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293538/","id":293538,"name":"Astonishing Thor","site_detail_url":"https://comicvine.gamespot.com/astonishing-thor-1-astonishing-thor/4000-293538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293541/","id":293541,"name":"Evolutionary War Omnibus","site_detail_url":"https://comicvine.gamespot.com/evolutionary-war-omnibus-1-evolutionary-war-omnibu/4000-293541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293588/","id":293588,"name":"Marvel Adventures Avengers: Thor/Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-thorcaptain-america-1-m/4000-293588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287537/","id":287537,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-23/4000-287537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319584/","id":319584,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-46/4000-319584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387032/","id":387032,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/marvel-les-grandes-sagas-daredevil-1-daredevil/4000-387032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291208/","id":291208,"name":"Fame Monster, Part 2","site_detail_url":"https://comicvine.gamespot.com/hackslash-7-fame-monster-part-2/4000-291208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715469/","id":715469,"name":"The Kingpin Strikes","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-225-the-kingpin-/4000-715469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299469/","id":299469,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-omnibus-1-volume-1/4000-299469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283197/","id":283197,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-223/4000-283197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277432/","id":277432,"name":"This Is The World We Made","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-2-this-is-the-w/4000-277432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277627/","id":277627,"name":"Before the Devil Knows We're Dead","site_detail_url":"https://comicvine.gamespot.com/fear-itself-uncanny-x-force-1-before-the-devil-kno/4000-277627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277586/","id":277586,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/vengeance-1-book-one/4000-277586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277546/","id":277546,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/fear-itself-wolverine-1-part-1/4000-277546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277535/","id":277535,"name":"The Man Stuck Deep Inside","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-160-the-man-stuck-deep-inside/4000-277535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277534/","id":277534,"name":"Fear Itself","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-9-fear-itself/4000-277534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278678/","id":278678,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/american-vampire-survival-of-the-fittest-2-part-tw/4000-278678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278862/","id":278862,"name":"Frank, Part 4","site_detail_url":"https://comicvine.gamespot.com/punishermax-15-frank-part-4/4000-278862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278805/","id":278805,"name":"Unfinished Business, Part 3","site_detail_url":"https://comicvine.gamespot.com/new-mutants-27-unfinished-business-part-3/4000-278805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278718/","id":278718,"name":"Day Three","site_detail_url":"https://comicvine.gamespot.com/fear-itself-spider-man-3-day-three/4000-278718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278553/","id":278553,"name":"American Dreamers Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-1-american-dreamers-part-1/4000-278553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279165/","id":279165,"name":"On 42nd Street","site_detail_url":"https://comicvine.gamespot.com/iron-age-2-on-42nd-street/4000-279165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279944/","id":279944,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-222/4000-279944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280290/","id":280290,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-1/4000-280290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280351/","id":280351,"name":"Planet of Fear, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/hulk-37-planet-of-fear-pt-1/4000-280351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280715/","id":280715,"name":"The Five Nations of New York, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-67-the-five-nations-of-new-york-part-1/4000-280715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280826/","id":280826,"name":"Enemies of the State","site_detail_url":"https://comicvine.gamespot.com/captain-america-corps-2-enemies-of-the-state/4000-280826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280616/","id":280616,"name":"Stranger Bedfellows","site_detail_url":"https://comicvine.gamespot.com/fear-itself-fearsome-four-2-stranger-bedfellows/4000-280616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281836/","id":281836,"name":"The Secret Origins of the Hammer-Wielders Revealed","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-worthy-1-the-secret-origins-of-the/4000-281836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280358/","id":280358,"name":"Issue 1","site_detail_url":"https://comicvine.gamespot.com/fear-itself-ff-1-issue-1/4000-280358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281524/","id":281524,"name":"Enter Justice League Prime; Where On Earth Am I?\"","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive-jla-the-70s-1-enter-justice-league-/4000-281524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285163/","id":285163,"name":"100-Page Spectacular","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-shazam-1-100-page-spectacular/4000-285163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278714/","id":278714,"name":"Fear Itself, part 1","site_detail_url":"https://comicvine.gamespot.com/new-avengers-14-fear-itself-part-1/4000-278714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291206/","id":291206,"name":"The Big Ride, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-58-the-big-ride-part-three/4000-291206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291610/","id":291610,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/the-big-lie-1-untitled/4000-291610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293606/","id":293606,"name":"Tiamat, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-148-tiamat-part-3-of-4/4000-293606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293867/","id":293867,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-death-of-spider/4000-293867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295916/","id":295916,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-170/4000-295916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281713/","id":281713,"name":"Schism, Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-2-schism-part-two/4000-281713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293915/","id":293915,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-the-weaponer-1-hc/4000-293915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292580/","id":292580,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-sinestro-corps-war-1-tpb/4000-292580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294500/","id":294500,"name":"","site_detail_url":"https://comicvine.gamespot.com/wulf-3/4000-294500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293598/","id":293598,"name":"Jungle Rules, Chapter Three: Gardens of Plenty","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-9-jungle-rules-chapter-three-gard/4000-293598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293914/","id":293914,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-supertown-1-tpb/4000-293914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293795/","id":293795,"name":"","site_detail_url":"https://comicvine.gamespot.com/epoch-2/4000-293795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338333/","id":338333,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/orbit-stan-lee-1-stan-lee/4000-338333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280716/","id":280716,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/cinderella-fables-are-forever-6-part-six/4000-280716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293913/","id":293913,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-omnibus-1-volume-one/4000-293913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-296952/","id":296952,"name":"Das Grosse Fables-Crossover!","site_detail_url":"https://comicvine.gamespot.com/fables-14-das-grosse-fables-crossover/4000-296952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273096/","id":273096,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-1/4000-273096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275657/","id":275657,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-2/4000-275657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275725/","id":275725,"name":"Family Feud, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/carnage-5-family-feud-pt-5/4000-275725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277974/","id":277974,"name":"Learning To Fly","site_detail_url":"https://comicvine.gamespot.com/spider-girl-8-learning-to-fly/4000-277974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276682/","id":276682,"name":"Part 1: A Fall of Angels","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-wolverine-1-part-1-a-fall-of-an/4000-276682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285722/","id":285722,"name":"Q&A - Part 4","site_detail_url":"https://comicvine.gamespot.com/spawn-210-q-a-part-4/4000-285722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291033/","id":291033,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-fantastic-spider-man-1-hc-t/4000-291033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291035/","id":291035,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverinehercules-myths-monsters-and-mutants-1-tpb/4000-291035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292763/","id":292763,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-arcade-death-game-1-tpb/4000-292763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292766/","id":292766,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-2-volume-2/4000-292766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293163/","id":293163,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-fallen-angels-1-hc-tpb/4000-293163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293165/","id":293165,"name":"Prisoner of War","site_detail_url":"https://comicvine.gamespot.com/captain-america-prisoner-of-war-1-prisoner-of-war/4000-293165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293335/","id":293335,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-next-chapter-1-volume-one/4000-293335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293337/","id":293337,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/essential-web-of-spider-man-1-volume-one/4000-293337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293486/","id":293486,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-goblin-a-lighter-shade-of-green-1-tpb/4000-293486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293490/","id":293490,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/namor-the-first-mutant-namor-goes-to-hell-1-volume/4000-293490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293491/","id":293491,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-girl-family-values-1-tpb/4000-293491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288545/","id":288545,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1/4000-288545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373978/","id":373978,"name":"Nannies and Nazis","site_detail_url":"https://comicvine.gamespot.com/new-avengers-nannies-and-nazis-1-nannies-and-nazis/4000-373978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347470/","id":347470,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-ultimate-collecti/4000-347470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371271/","id":371271,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/invincible-compendium-1-volume-1/4000-371271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319583/","id":319583,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-45/4000-319583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397925/","id":397925,"name":"","site_detail_url":"https://comicvine.gamespot.com/comics-lucille-ball-1/4000-397925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540178/","id":540178,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-7/4000-540178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344202/","id":344202,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/feynman-1-gn/4000-344202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276636/","id":276636,"name":"The Return of Anti-Venom, Part 2: Revelation Day; Infested, Stage 5: Wall-to-Wall","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-664-the-return-of-anti-veno/4000-276636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289469/","id":289469,"name":"Carnage: Family Feud HC/TPB","site_detail_url":"https://comicvine.gamespot.com/carnage-family-feud-1-carnage-family-feud-hctpb/4000-289469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293334/","id":293334,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ff-by-jonathan-hickman-1-volume-one/4000-293334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300226/","id":300226,"name":"Tingling","site_detail_url":"https://comicvine.gamespot.com/spider-island-i-love-new-york-city-4-tingling/4000-300226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285704/","id":285704,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-22/4000-285704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292765/","id":292765,"name":"Marvel Adventures Spider-Man: Friendly Neighborhood","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-friendly-neighborhood/4000-292765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319582/","id":319582,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-319582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715461/","id":715461,"name":"The Osborn Identity","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-224-the-osborn-i/4000-715461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291030/","id":291030,"name":"Spider-Man/Hulk/Deadpool: Identity Wars","site_detail_url":"https://comicvine.gamespot.com/spider-manhulkdeadpool-identity-wars-1-spider-manh/4000-291030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291184/","id":291184,"name":"Charlotte's Webs","site_detail_url":"https://comicvine.gamespot.com/spider-island-i-love-new-york-city-2-charlottes-we/4000-291184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291029/","id":291029,"name":"Avengers Academy: Will We Use This In The Real World?","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-will-we-use-this-in-the-real-worl/4000-291029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291031/","id":291031,"name":"9 Lives","site_detail_url":"https://comicvine.gamespot.com/spider-island-i-love-new-york-city-1-9-lives/4000-291031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319581/","id":319581,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-43/4000-319581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274213/","id":274213,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-221/4000-274213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272329/","id":272329,"name":"Peer Pressure","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-14-1-peer-pressure/4000-272329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272331/","id":272331,"name":"All Versus All","site_detail_url":"https://comicvine.gamespot.com/herc-4-all-versus-all/4000-272331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272355/","id":272355,"name":"Original Sins","site_detail_url":"https://comicvine.gamespot.com/x-factor-220-original-sins/4000-272355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272428/","id":272428,"name":"The Return of Anti-Venom, Part 1: The Ghost of Jean Dewolff; Infested Stage 4: Out of Nowhere; Thanks... But No Thanks","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-663-the-return-of-anti-veno/4000-272428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272432/","id":272432,"name":"Neighborhood, Part 3","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-8-neighborhood-part-3/4000-272432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272295/","id":272295,"name":"First to Last, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-12-first-to-last-part-2/4000-272295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273069/","id":273069,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/american-vampire-survival-of-the-fittest-1-part-on/4000-273069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273108/","id":273108,"name":"Day Two","site_detail_url":"https://comicvine.gamespot.com/fear-itself-spider-man-2-day-two/4000-273108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273141/","id":273141,"name":"The Iron Age: Alpha","site_detail_url":"https://comicvine.gamespot.com/the-iron-age-alpha-1-the-iron-age-alpha/4000-273141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273112/","id":273112,"name":"Death of Spider-Man: Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-159-death-of-spider-man-part-4/4000-273112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274483/","id":274483,"name":"Fear Itself, part 2 Red Hulk Smassssh !","site_detail_url":"https://comicvine.gamespot.com/avengers-14-fear-itself-part-2-red-hulk-smassssh/4000-274483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274227/","id":274227,"name":"First To Last Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-13-first-to-last-part-3/4000-274227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274491/","id":274491,"name":"Going Viral (Part 3); The Age Of Anxiety (Part 3); A Moment With...The People Of Paris; Breakdown","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-3-going-viral-part-3-th/4000-274491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273110/","id":273110,"name":"Frank, Part 3","site_detail_url":"https://comicvine.gamespot.com/punishermax-14-frank-part-3/4000-273110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275582/","id":275582,"name":"Eclipso Rising, Part Five: The Destined and the Dying","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-58-eclipso-rising-part-f/4000-275582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275658/","id":275658,"name":"Citizen Zee","site_detail_url":"https://comicvine.gamespot.com/dmz-66-citizen-zee/4000-275658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275412/","id":275412,"name":"Unfinished Business, Part 2","site_detail_url":"https://comicvine.gamespot.com/new-mutants-26-unfinished-business-part-2/4000-275412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275783/","id":275783,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-5-part-5/4000-275783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276171/","id":276171,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-last-stand-1/4000-276171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275854/","id":275854,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-x-1-hcsc/4000-275854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276657/","id":276657,"name":"The Same Coin...","site_detail_url":"https://comicvine.gamespot.com/venom-4-the-same-coin/4000-276657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276706/","id":276706,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-the-childrens-crusade-6/4000-276706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272345/","id":272345,"name":"This World We Live In","site_detail_url":"https://comicvine.gamespot.com/flashpoint-the-world-of-flashpoint-1-this-world-we/4000-272345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278713/","id":278713,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-6-part-six/4000-278713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273106/","id":273106,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-2-book-2/4000-273106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281842/","id":281842,"name":"The One Man","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-28-the-one-man/4000-281842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286707/","id":286707,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-3-book-three/4000-286707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290767/","id":290767,"name":"Tiamat, Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-147-tiamat-part-2-of-4/4000-290767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290478/","id":290478,"name":"The Hellfire Club, Conclusion","site_detail_url":"https://comicvine.gamespot.com/kato-origins-11-the-hellfire-club-conclusion/4000-290478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283800/","id":283800,"name":"The Big Ride, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-57-the-big-ride-part-two/4000-283800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288481/","id":288481,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-169/4000-288481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274487/","id":274487,"name":"Missing in Action","site_detail_url":"https://comicvine.gamespot.com/captain-america-corps-1-missing-in-action/4000-274487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276877/","id":276877,"name":"Moon Over Mayhem!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-the-human-torch-from-the-marve/4000-276877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285542/","id":285542,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-extra-sensory-1-vol-4/4000-285542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285552/","id":285552,"name":"Jungle Rules, Chapter Two: The Falls That Kill You","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-8-jungle-rules-chapter-two-the-fa/4000-285552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316438/","id":316438,"name":"Il verdetto di Cassiopea","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-316-il-verdetto-di-cassiopea/4000-316438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282246/","id":282246,"name":"War of the Worlds Special Vol. 35, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-201106-war-of-the-worlds-speci/4000-282246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335072/","id":335072,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dc-universe-legacies-1-tpb/4000-335072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311057/","id":311057,"name":"Croc","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-tales-from-neverland-3-croc/4000-311057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291238/","id":291238,"name":"","site_detail_url":"https://comicvine.gamespot.com/epoch-1/4000-291238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285151/","id":285151,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-dark-reign-1-hc/4000-285151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272343/","id":272343,"name":"The Odyssey, Part 11: Siege","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-611-the-odyssey-part-11-siege/4000-272343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276574/","id":276574,"name":"The Odyssey, Part 12: Ghosts of the Gods","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-612-the-odyssey-part-12-ghosts-of-the/4000-276574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276680/","id":276680,"name":"What is Ultimate X?","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-5-what-is-ultimate-x/4000-276680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272465/","id":272465,"name":"Lost Advantages: Desolation, Part 3 of 5; Communion","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-38-lost-advantages-desolation-par/4000-272465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273570/","id":273570,"name":"Fight Fear with Fear","site_detail_url":"https://comicvine.gamespot.com/fear-itself-fearsome-four-1-fight-fear-with-fear/4000-273570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269532/","id":269532,"name":"Order All","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-giant-size-1-order-all/4000-269532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269578/","id":269578,"name":"Spidey Sunday Spectacular!; Identity Crisis","site_detail_url":"https://comicvine.gamespot.com/spidey-sunday-spectacular-1-spidey-sunday-spectacu/4000-269578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275019/","id":275019,"name":"The Illusionist","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-14-the-illusionist/4000-275019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271744/","id":271744,"name":"The Raven's Nest","site_detail_url":"https://comicvine.gamespot.com/spider-girl-7-the-ravens-nest/4000-271744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278200/","id":278200,"name":"Q&A - Part 3","site_detail_url":"https://comicvine.gamespot.com/spawn-209-q-a-part-3/4000-278200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278867/","id":278867,"name":"Tiamat, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-146-tiamat-part-1-of-4/4000-278867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284355/","id":284355,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-12-volume-12/4000-284355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284404/","id":284404,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/x-factor-scar-tissue-1-volume-12/4000-284404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284853/","id":284853,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-point-one-1-tpb/4000-284853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285576/","id":285576,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-am-i-an-avenger-1-tpb/4000-285576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286197/","id":286197,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-wolverine-vs-the-x-men-1-hctpb/4000-286197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286202/","id":286202,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4000-286202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269833/","id":269833,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-reborn-4-chapter-four/4000-269833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424814/","id":424814,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-the-generations-saga-1-volume-one/4000-424814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538791/","id":538791,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-5/4000-538791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539119/","id":539119,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-increibles-hulks-2/4000-539119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540177/","id":540177,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-6/4000-540177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389812/","id":389812,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/photo-booth-1-gn/4000-389812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291027/","id":291027,"name":"Astonishing Spider-Man and Wolverine","site_detail_url":"https://comicvine.gamespot.com/astonishing-spider-man-and-wolverine-1-astonishing/4000-291027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355434/","id":355434,"name":"Moon Madness","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-223-moon-madness/4000-355434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271547/","id":271547,"name":"The Substitute Part 2; Infested Stage 3: Great Responsibility; Magnetic Man In The Choice","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-662-the-substitute-part-2-i/4000-271547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284854/","id":284854,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-6-volume-six/4000-284854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286198/","id":286198,"name":"X-Men/Steve Rogers: Escape from the Negative Zone","site_detail_url":"https://comicvine.gamespot.com/x-mensteve-rogers-escape-from-the-negative-zone-1-/4000-286198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384302/","id":384302,"name":"Part 8","site_detail_url":"https://comicvine.gamespot.com/captain-america-first-vengeance-8-part-8/4000-384302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285720/","id":285720,"name":"","site_detail_url":"https://comicvine.gamespot.com/venom-flashpoint-1/4000-285720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319580/","id":319580,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-42/4000-319580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270462/","id":270462,"name":"The Substitute Part 1; Just Another Day","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-661-the-substitute-part-1-j/4000-270462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279778/","id":279778,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hawkeye-blind-spot-1-tpb/4000-279778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281446/","id":281446,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-urban-jungle-1-/4000-281446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290870/","id":290870,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-2-volume-two/4000-290870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293167/","id":293167,"name":"Dark Avengers Hardcover","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-hardcover-1-dark-avengers-hardcover/4000-293167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372245/","id":372245,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/vampirella-crown-of-worms-1-volume-1/4000-372245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269832/","id":269832,"name":"Fantastic Voyage, Part 2; Infested, Stage 2: Great Power; Can't Get the Service, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-660-fantastic-voyage-part-2/4000-269832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281336/","id":281336,"name":"Heroes for Hire: Control","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-control-1-heroes-for-hire-control/4000-281336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319579/","id":319579,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-41/4000-319579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355433/","id":355433,"name":"Blind Justice","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-222-blind-justic/4000-355433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269476/","id":269476,"name":"The Worthy","site_detail_url":"https://comicvine.gamespot.com/fear-itself-2-the-worthy/4000-269476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269489/","id":269489,"name":"Spider-Man: Day One","site_detail_url":"https://comicvine.gamespot.com/fear-itself-spider-man-1-spider-man-day-one/4000-269489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269461/","id":269461,"name":"A Better World, Part 2","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-18-a-better-world-part-2/4000-269461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269658/","id":269658,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinehercules-myths-monsters-mutants-3/4000-269658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269969/","id":269969,"name":"Youth In Revolt: Part One","site_detail_url":"https://comicvine.gamespot.com/fear-itself-youth-in-revolt-1-youth-in-revolt-part/4000-269969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269819/","id":269819,"name":"Unfinished Business, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-25-unfinished-business-part-1/4000-269819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270417/","id":270417,"name":"Free States Rising: Manhattan, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-65-free-states-rising-manhattan-conclusion/4000-270417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270431/","id":270431,"name":"Lies, Damned Lies","site_detail_url":"https://comicvine.gamespot.com/x-factor-219-lies-damned-lies/4000-270431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270522/","id":270522,"name":"The Beginning","site_detail_url":"https://comicvine.gamespot.com/hawkeye-blindspot-4-the-beginning/4000-270522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270466/","id":270466,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-4-part-4/4000-270466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270467/","id":270467,"name":"Death of Spider-Man, Part Three of Five","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-158-death-of-spider-man-part-t/4000-270467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270010/","id":270010,"name":"Urban Jungle, Part 6","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-518-urban-jungl/4000-270010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270464/","id":270464,"name":"City of Light, City of Stone","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-504-city-of-light-city-of-/4000-270464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271600/","id":271600,"name":"I'll Sleep When I'm Dead","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-27-i-ll-sleep-when-i-m-dead/4000-271600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271548/","id":271548,"name":"Gulag, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-618-gulag-part-3/4000-271548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271841/","id":271841,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-x-men-1-tpb/4000-271841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271611/","id":271611,"name":"Web of Death!","site_detail_url":"https://comicvine.gamespot.com/venom-3-web-of-death/4000-271611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269836/","id":269836,"name":"Frank, Part 2","site_detail_url":"https://comicvine.gamespot.com/punishermax-13-frank-part-2/4000-269836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278040/","id":278040,"name":"The Hellfire Club (Part Four)","site_detail_url":"https://comicvine.gamespot.com/kato-origins-10-the-hellfire-club-part-four/4000-278040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280319/","id":280319,"name":"Devil in the Flesh, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/avengelyne-1-devil-in-the-flesh-part-1-of-3/4000-280319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280331/","id":280331,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-168/4000-280331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270558/","id":270558,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-1-book-1/4000-270558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281917/","id":281917,"name":"","site_detail_url":"https://comicvine.gamespot.com/godzilla-kingdom-of-monsters-5/4000-281917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285569/","id":285569,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/onslaught-unleashed-1-hc/4000-285569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286938/","id":286938,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-21/4000-286938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277755/","id":277755,"name":"The Big Ride, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-boys-56-the-big-ride-part-1/4000-277755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308758/","id":308758,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-dandy-annual-2012/4000-308758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285354/","id":285354,"name":"Tiger Lily","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-tales-from-neverland-2-tiger-lil/4000-285354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283864/","id":283864,"name":"","site_detail_url":"https://comicvine.gamespot.com/butcher-baker-the-righteous-maker-5/4000-283864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278677/","id":278677,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-end-1-volume-9/4000-278677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277537/","id":277537,"name":"This Killer Just Saved Your Life","site_detail_url":"https://comicvine.gamespot.com/mysterious-ways-1-this-killer-just-saved-your-life/4000-277537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270422/","id":270422,"name":"The Wind that Shakes the Worlds: Chapter Four of Super-Team","site_detail_url":"https://comicvine.gamespot.com/fables-105-the-wind-that-shakes-the-worlds-chapter/4000-270422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336137/","id":336137,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-mgc-1/4000-336137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267578/","id":267578,"name":"Identity Wars, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-38-identity-wars-par/4000-267578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268365/","id":268365,"name":"Escape From The Negative Zone, Part 2","site_detail_url":"https://comicvine.gamespot.com/steve-rogers-super-soldier-annual-1-escape-from-th/4000-268365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268767/","id":268767,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-1000/4000-268767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268825/","id":268825,"name":"It Was Asgard, and It Was War","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-13-it-was-asgard-an/4000-268825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269031/","id":269031,"name":"#Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/spider-girl-6-hobgoblin/4000-269031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274523/","id":274523,"name":"Perspectives","site_detail_url":"https://comicvine.gamespot.com/witchblade-145-perspectives/4000-274523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276170/","id":276170,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/green-lantern-brightest-day-1-tpb-hc/4000-276170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277147/","id":277147,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/she-hulks-hunt-for-the-intelligencia-1-tpb/4000-277147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277452/","id":277452,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-1-volume-one/4000-277452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277462/","id":277462,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-family-ties-1-hc/4000-277462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277587/","id":277587,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-pet-avengers-1-tpb/4000-277587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278668/","id":278668,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-night-1-volume-5/4000-278668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278671/","id":278671,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-into-the-dark-dimension-1-hc/4000-278671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315881/","id":315881,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/power-girl-bomb-squad-1-tpb/4000-315881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538790/","id":538790,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-4/4000-538790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540176/","id":540176,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-5/4000-540176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278682/","id":278682,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-10-volume-10/4000-278682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278684/","id":278684,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-original-clone-saga-1-tpb/4000-278684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276401/","id":276401,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-with-great-power-1-hc/4000-276401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278170/","id":278170,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-1-volume-one/4000-278170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278181/","id":278181,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/impossible-man-1-tpb/4000-278181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278675/","id":278675,"name":"Ultimate Comics Spider-Man: Death of Spider-Man Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-pre/4000-278675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319578/","id":319578,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-40/4000-319578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277577/","id":277577,"name":"Ultimatum Companion","site_detail_url":"https://comicvine.gamespot.com/ultimatum-companion-1-ultimatum-companion/4000-277577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281332/","id":281332,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-hulk-1-tpb/4000-281332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342686/","id":342686,"name":"Checkmate","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-11-checkmate/4000-342686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281331/","id":281331,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-ultimate-colle/4000-281331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715467/","id":715467,"name":"Show Time","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-221-show-time/4000-715467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319577/","id":319577,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-39/4000-319577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386942/","id":386942,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-les-grandes-sagas-x-men-1-x-men/4000-386942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267534/","id":267534,"name":"The Serpent","site_detail_url":"https://comicvine.gamespot.com/fear-itself-1-the-serpent/4000-267534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267620/","id":267620,"name":"Gods of Brooklyn","site_detail_url":"https://comicvine.gamespot.com/herc-1-gods-of-brooklyn/4000-267620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268199/","id":268199,"name":"Raise the Khan Chapter One: Palace In the Sea","site_detail_url":"https://comicvine.gamespot.com/doc-savage-13-raise-the-khan-chapter-one-palace-in/4000-268199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268232/","id":268232,"name":"Urban Jungle, Part 5","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-517-urban-jungl/4000-268232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268338/","id":268338,"name":"Frank, Part 1","site_detail_url":"https://comicvine.gamespot.com/punishermax-12-frank-part-1/4000-268338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267583/","id":267583,"name":"The Last Stand","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-4-the-last-stand/4000-267583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268258/","id":268258,"name":"Infinity, Part 3","site_detail_url":"https://comicvine.gamespot.com/new-avengers-11-infinity-part-3/4000-268258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268333/","id":268333,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-3-part-three/4000-268333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268348/","id":268348,"name":"Death of Spider-Man, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-157-death-of-spider-man-chapte/4000-268348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267543/","id":267543,"name":"Lurker Part 1 of 7; The Age of Anxiety Part 1 of 4; A Moment With... J. Jonah Jameson; There's No Place Like Homeless","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-1-lurker-part-1-of-7-th/4000-267543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268737/","id":268737,"name":"Free States Rising: Manhattan, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-64-free-states-rising-manhattan-part-3/4000-268737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268749/","id":268749,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-218/4000-268749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268718/","id":268718,"name":"Up, Up & Away, Part Two","site_detail_url":"https://comicvine.gamespot.com/power-girl-23-up-up-away-part-two/4000-268718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268932/","id":268932,"name":"To Serve & Protect, Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-10-to-serve-protect-part-4/4000-268932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269001/","id":269001,"name":"Forever After Days","site_detail_url":"https://comicvine.gamespot.com/the-new-york-five-4-forever-after-days/4000-269001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269048/","id":269048,"name":"The Storm and The Sacrifice","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-5-the-storm-and-the-sacrifice/4000-269048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269117/","id":269117,"name":"Fear Itself, Pt. 1: The Captain","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-12-1-fear-itself-pt-1-the-captain/4000-269117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268982/","id":268982,"name":"It Came from Outer Space (Knight) !","site_detail_url":"https://comicvine.gamespot.com/avengers-12-1-it-came-from-outer-space-knight/4000-268982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269012/","id":269012,"name":"Gulag, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-617-gulag-part-2/4000-269012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267599/","id":267599,"name":"Dead End: Desolation, Part 1 of 5; The Laws of Motion","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-36-dead-end-desolation-part-1-of-/4000-267599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268964/","id":268964,"name":"Doom Nation","site_detail_url":"https://comicvine.gamespot.com/ff-2-doom-nation/4000-268964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273913/","id":273913,"name":"Wolverine Waffe X - Die Zukunft Stirbt Heute","site_detail_url":"https://comicvine.gamespot.com/100-marvel-56-wolverine-waffe-x-die-zukunft-stirbt/4000-273913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275786/","id":275786,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/executive-assistant-iris-1-vol-1/4000-275786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277204/","id":277204,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/osborn-evil-incarcerated-1-tpb/4000-277204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277453/","id":277453,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-fighting-avenger-1/4000-277453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278672/","id":278672,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mystique-by-sean-mckeever-ultimate-collection-1-tp/4000-278672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277166/","id":277166,"name":"","site_detail_url":"https://comicvine.gamespot.com/butcher-baker-the-righteous-maker-4/4000-277166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276169/","id":276169,"name":"Jungle Rules, Chapter One","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-7-jungle-rules-chapter-one/4000-276169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316446/","id":316446,"name":"Con la coda dell'occhio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-315-con-la-coda-dellocchio/4000-316446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268368/","id":268368,"name":"My Brother's Killer","site_detail_url":"https://comicvine.gamespot.com/hawkeye-blindspot-3-my-brothers-killer/4000-268368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233675/","id":233675,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-5-volume-5/4000-233675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294517/","id":294517,"name":"The Dream Eater Saga Part 5","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-the-dream-eater-saga-neverland-1/4000-294517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339542/","id":339542,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/the-boys-definitive-edition-3-vol-3/4000-339542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273383/","id":273383,"name":"The Bloodfather","site_detail_url":"https://comicvine.gamespot.com/turf-5-the-bloodfather/4000-273383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268753/","id":268753,"name":"F-Men!: Chapter Three of Super Team","site_detail_url":"https://comicvine.gamespot.com/fables-104-f-men-chapter-three-of-super-team/4000-268753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268906/","id":268906,"name":"Odyssey, Part 10: Diana's Army","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-610-odyssey-part-10-dianas-army/4000-268906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272404/","id":272404,"name":"Odyssey Vol. 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-odyssey-1-odyssey-vol-1/4000-272404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276222/","id":276222,"name":"Das Grosse Buch Vom Krieg","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-6-das-grosse-buch-vom-krieg/4000-276222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267548/","id":267548,"name":"A Better World, Part 1","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-17-a-better-world-part-1/4000-267548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267147/","id":267147,"name":"Her Father's Daughter","site_detail_url":"https://comicvine.gamespot.com/spider-girl-5-her-fathers-daughter/4000-267147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267439/","id":267439,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-12/4000-267439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270489/","id":270489,"name":"Origin Secret; Secret Origin","site_detail_url":"https://comicvine.gamespot.com/witchblade-144-origin-secret-secret-origin/4000-270489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272009/","id":272009,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-6-vol-6/4000-272009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271675/","id":271675,"name":null,"site_detail_url":"https://comicvine.gamespot.com/tattered-man-1/4000-271675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273136/","id":273136,"name":"Tunnel of Hell","site_detail_url":"https://comicvine.gamespot.com/the-scourge-4-tunnel-of-hell/4000-273136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274798/","id":274798,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-hobgoblin-lives-1-tpb/4000-274798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275028/","id":275028,"name":"Ultimate Comics Doomsday ","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-doomsday-1-ultimate-comics-doomsda/4000-275028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275144/","id":275144,"name":"In The Blood","site_detail_url":"https://comicvine.gamespot.com/punisher-in-the-blood-1-in-the-blood/4000-275144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275146/","id":275146,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-youth-in-revolt-1-tpb/4000-275146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275149/","id":275149,"name":"Ultimate Comics Captain America","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-captain-america-1-ultimate-comics-/4000-275149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277104/","id":277104,"name":"Bullseye","site_detail_url":"https://comicvine.gamespot.com/punishermax-bullseye-1-bullseye/4000-277104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278461/","id":278461,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-incredible-hulks-1-tpb/4000-278461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272249/","id":272249,"name":"Q&A - Part 1: Spawn vs. Twitch","site_detail_url":"https://comicvine.gamespot.com/spawn-207-q-a-part-1-spawn-vs-twitch/4000-272249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314244/","id":314244,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-redemption-2-volume-2/4000-314244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270512/","id":270512,"name":"The Rocketeer; Home Again; Dear Betty","site_detail_url":"https://comicvine.gamespot.com/rocketeer-adventures-1-the-rocketeer-home-again-de/4000-270512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475037/","id":475037,"name":"","site_detail_url":"https://comicvine.gamespot.com/starman-2/4000-475037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538789/","id":538789,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-3/4000-538789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540175/","id":540175,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-4/4000-540175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551755/","id":551755,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-misterio-2/4000-551755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-570057/","id":570057,"name":"Un nuevo jefe","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-3-un-nuevo-jefe/4000-570057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610281/","id":610281,"name":"Patrulla-X 1: La guerra de Magneto","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes-2-patrulla-x-1-la-guer/4000-610281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275140/","id":275140,"name":"Invincible Iron Man: My Monsters","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-my-monsters-1-invincible-iron-/4000-275140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319576/","id":319576,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-38/4000-319576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593944/","id":593944,"name":"The Influencing Machine: Brooke Gladstone On The Media","site_detail_url":"https://comicvine.gamespot.com/the-influencing-machine-1-the-influencing-machine-/4000-593944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313506/","id":313506,"name":"Library Edition Vol. 4","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-the-troll-witch-1-libr/4000-313506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272197/","id":272197,"name":"","site_detail_url":"https://comicvine.gamespot.com/clint-8/4000-272197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270760/","id":270760,"name":"Mutant Deathmatch/Dangerous Liasons/Disaster at Darkmoor Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-35-mutant-deathmatchdangerous-liason/4000-270760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271835/","id":271835,"name":"Glory Days","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-glory-days-1-glory-days/4000-271835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276148/","id":276148,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-omnibus-by-geoff-johns-1-vol-1/4000-276148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269984/","id":269984,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics-1-tpb/4000-269984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270394/","id":270394,"name":"Captain America: The Trial of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-trial-of-captain-america-1-cap/4000-270394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273569/","id":273569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-we-are-the-avengers-1-tpb/4000-273569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274799/","id":274799,"name":"Amazing Spider-Man: Matters of Life and Death","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-matters-of-life-and-death-1-ama/4000-274799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497268/","id":497268,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-37/4000-497268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269983/","id":269983,"name":"National Science Fair; Demons of the Gold Rush; Moon Girl","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-foster-broussard-moon-girl-free-comic-/4000-269983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294187/","id":294187,"name":"The Homeland Directive","site_detail_url":"https://comicvine.gamespot.com/homeland-directive-1-the-homeland-directive/4000-294187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269525/","id":269525,"name":"\"Artifacts\" part 7 of 13; \"Origin: Coin of Solomon\"","site_detail_url":"https://comicvine.gamespot.com/artifacts-7-artifacts-part-7-of-13-origin-coin-of-/4000-269525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273551/","id":273551,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-1-volume-1/4000-273551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273553/","id":273553,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-allies-and-enemies-1-tpb/4000-273553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273558/","id":273558,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/taskmaster-unthinkable-1-tpb/4000-273558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716088/","id":716088,"name":"Twilight of the Gods","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-219-twilight-of-/4000-716088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264592/","id":264592,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-216/4000-264592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264731/","id":264731,"name":"No Strings","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-4-no-strings/4000-264731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265514/","id":265514,"name":"Death of Spider-Man: Prologue","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-155-death-of-spider-man-prolog/4000-265514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265518/","id":265518,"name":"Bullseye, Part Six","site_detail_url":"https://comicvine.gamespot.com/punishermax-11-bullseye-part-six/4000-265518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265531/","id":265531,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/cinderella-fables-are-forever-2-part-two/4000-265531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265992/","id":265992,"name":"Free States Rising: Manhattan, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-63-free-states-rising-manhattan-part-2/4000-265992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265997/","id":265997,"name":"Deep Scars","site_detail_url":"https://comicvine.gamespot.com/x-factor-217-deep-scars/4000-265997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266014/","id":266014,"name":"No One Dies, Part 2: Resolve","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-656-no-one-dies-part-2-reso/4000-266014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265987/","id":265987,"name":"Up, Up & Away, Part One","site_detail_url":"https://comicvine.gamespot.com/power-girl-22-up-up-away-part-one/4000-265987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266084/","id":266084,"name":"Monkey Business","site_detail_url":"https://comicvine.gamespot.com/young-justice-2-monkey-business/4000-266084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266005/","id":266005,"name":"Behold GOOM, The Thing from Planet X","site_detail_url":"https://comicvine.gamespot.com/iceman-and-angel-1-behold-goom-the-thing-from-plan/4000-266005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266544/","id":266544,"name":"Daughters of the Soho Riots","site_detail_url":"https://comicvine.gamespot.com/the-new-york-five-3-daughters-of-the-soho-riots/4000-266544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266495/","id":266495,"name":"A Good News, Bad News, Sort of Thing","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-22-a-good-news-bad-/4000-266495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266502/","id":266502,"name":"To Serve & Protect, Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-9-to-serve-protect-part-3/4000-266502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266487/","id":266487,"name":"Death of Spider-Man, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-156-death-of-spider-man-chapte/4000-266487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266661/","id":266661,"name":"Man out of Time, Part Five","site_detail_url":"https://comicvine.gamespot.com/captain-america-man-out-of-time-5-man-out-of-time-/4000-266661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266507/","id":266507,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-doom-4-part-4/4000-266507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267158/","id":267158,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-2/4000-267158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267087/","id":267087,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/age-of-x-universe-1-chapter-1/4000-267087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267204/","id":267204,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/punisher-in-the-blood-5-part-5/4000-267204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267093/","id":267093,"name":"Torch Song","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-657-torch-song/4000-267093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267208/","id":267208,"name":"70th Anniversary Issue","site_detail_url":"https://comicvine.gamespot.com/captain-america-616-70th-anniversary-issue/4000-267208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266624/","id":266624,"name":"Untitled","site_detail_url":"https://comicvine.gamespot.com/captain-america-615-1-untitled/4000-266624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267435/","id":267435,"name":"You're Hired!; The Girl's All Right With Me...; Lock and/or Key","site_detail_url":"https://comicvine.gamespot.com/spider-man-youre-hired-1-youre-hired-the-girls-all/4000-267435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268414/","id":268414,"name":"All the Pretty Monsters","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-secret-avengers-1-all-the-/4000-268414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269243/","id":269243,"name":"Ghostwalk, Conclusion: The Falling Man","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-6-ghostwalk-conclusion-the-fallin/4000-269243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269473/","id":269473,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants-1-hc/4000-269473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269484/","id":269484,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/dmz-collective-punishment-1-volume-10/4000-269484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269621/","id":269621,"name":"The Way of the Spider","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2011-spider-man-1-the-way-of-t/4000-269621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271607/","id":271607,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-safe-as-houses-1-vol-6/4000-271607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271676/","id":271676,"name":"The Hellfire Club (Part Three)","site_detail_url":"https://comicvine.gamespot.com/kato-origins-9-the-hellfire-club-part-three/4000-271676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270419/","id":270419,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-and-the-scarlet-legion-1/4000-270419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271678/","id":271678,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/emma-frost-ultimate-collection-1-tpb/4000-271678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271832/","id":271832,"name":"The Race to Save Ronin","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-32-the-race-to-save-ronin/4000-271832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272145/","id":272145,"name":"Part One: Once Upon A Time","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-the-dream-eater-saga-1-part-one-/4000-272145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273385/","id":273385,"name":"A Girl, A Moon, A Romance!","site_detail_url":"https://comicvine.gamespot.com/moon-girl-2-a-girl-a-moon-a-romance/4000-273385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274621/","id":274621,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-thorspider-man-1-tpb/4000-274621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274797/","id":274797,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-extremist-1-tpb/4000-274797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275135/","id":275135,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-man-out-of-time-1-hc-tpb/4000-275135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275137/","id":275137,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mystique-by-brian-k-vaughan-ultimate-collection-1-/4000-275137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294499/","id":294499,"name":"","site_detail_url":"https://comicvine.gamespot.com/wulf-2/4000-294499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265543/","id":265543,"name":"Off-Target","site_detail_url":"https://comicvine.gamespot.com/hawkeye-blindspot-2-off-target/4000-265543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285353/","id":285353,"name":"Tinkerbelle","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-tales-from-neverland-1-tinkerbel/4000-285353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271881/","id":271881,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine-15/4000-271881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264595/","id":264595,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinehercules-myths-monsters-mutants-1/4000-264595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379933/","id":379933,"name":"Powerless","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-mgc-1-powerless/4000-379933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379955/","id":379955,"name":"Super Human","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-mgc-1-super-human/4000-379955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379971/","id":379971,"name":"Marvel Mix-Tape","site_detail_url":"https://comicvine.gamespot.com/mix-tape-1-marvel-mix-tape/4000-379971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297463/","id":297463,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-21/4000-297463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271674/","id":271674,"name":"","site_detail_url":"https://comicvine.gamespot.com/godzilla-kingdom-of-monsters-3/4000-271674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266458/","id":266458,"name":"Selection Day: Chapter Two of Super Team","site_detail_url":"https://comicvine.gamespot.com/fables-103-selection-day-chapter-two-of-super-team/4000-266458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267097/","id":267097,"name":"Odyssey, Part 9: The Wonder Women","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-609-odyssey-part-9-the-wonder-women/4000-267097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275545/","id":275545,"name":"Die Dunklen Jahre","site_detail_url":"https://comicvine.gamespot.com/fables-13-die-dunklen-jahre/4000-275545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735126/","id":735126,"name":null,"site_detail_url":"https://comicvine.gamespot.com/female-force-ayn-rand-1/4000-735126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261240/","id":261240,"name":"Family Feud, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/carnage-3-family-feud-pt-3/4000-261240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262486/","id":262486,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-11/4000-262486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262982/","id":262982,"name":"Hunters & Spiders","site_detail_url":"https://comicvine.gamespot.com/spider-girl-4-hunters-spiders/4000-262982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263599/","id":263599,"name":"Three, Epilogue: Month of Mourning","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-588-three-epilogue-month-of-mournin/4000-263599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267598/","id":267598,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/fables-rose-red-1-volume-15/4000-267598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267513/","id":267513,"name":"The World Is Mine","site_detail_url":"https://comicvine.gamespot.com/eyeshield-21-35-the-world-is-mine/4000-267513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270245/","id":270245,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-avengers-1-tpb/4000-270245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270246/","id":270246,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/invaders-now-1-hctpb/4000-270246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272836/","id":272836,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-vs-the-red-skull-1-tpb/4000-272836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272857/","id":272857,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-architects-of-forever-1-hc-tpb/4000-272857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268352/","id":268352,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-206/4000-268352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263154/","id":263154,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-rapture-4/4000-263154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276164/","id":276164,"name":"Mob War, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-boondock-saints-in-nomine-patris-volume-3-2-mo/4000-276164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268821/","id":268821,"name":"Concrete; Marked Man; Blood; Finder: Third World; Mister Monster vs Oooak!; Xerxes; How Interesting: A Tiny Man; Murky World; Star Wars: Crimson Empire III; Snow Angel;","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-1-concrete-marked-man-blood-fi/4000-268821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291357/","id":291357,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-2/4000-291357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291432/","id":291432,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-3/4000-291432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551754/","id":551754,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-misterio-1/4000-551754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558786/","id":558786,"name":"","site_detail_url":"https://comicvine.gamespot.com/visionarios-marvel-stan-lee-1/4000-558786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269672/","id":269672,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-4-volume-4/4000-269672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273105/","id":273105,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-omnibus-2-volume-two/4000-273105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497269/","id":497269,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-36/4000-497269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263708/","id":263708,"name":"No One Dies Part One of Two: Awakening","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-655-no-one-dies-part-one-of/4000-263708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270805/","id":270805,"name":"Gods and Monsters/Disaster at Darkmoor","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-34-gods-and-monstersdisaster-at-dark/4000-270805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272868/","id":272868,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-classic-1-volume-one/4000-272868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289530/","id":289530,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-deluxe-edition-5-book-five/4000-289530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262872/","id":262872,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-654-1-flashpoint/4000-262872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268475/","id":268475,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-17/4000-268475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270754/","id":270754,"name":"Thor by Walter Simonson Omnibus","site_detail_url":"https://comicvine.gamespot.com/thor-by-walter-simonson-omnibus-1-thor-by-walter-s/4000-270754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261239/","id":261239,"name":"Revenge of the Spider-Slayer, Part 3: Self Inflicted Wounds","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-654-revenge-of-the-spider-s/4000-261239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270244/","id":270244,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/shadowland-power-man-1-hc-tpb/4000-270244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260248/","id":260248,"name":"The Beast","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-10-the-beast/4000-260248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259998/","id":259998,"name":"Revenge of The Spider-Slayer, Part 2: All You Love Will Die","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-653-revenge-of-the-spider-s/4000-259998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260027/","id":260027,"name":"Legendary","site_detail_url":"https://comicvine.gamespot.com/dc-universe-online-legends-1-legendary/4000-260027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260032/","id":260032,"name":"Man Hunt, Part 4","site_detail_url":"https://comicvine.gamespot.com/she-hulks-4-man-hunt-part-4/4000-260032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261245/","id":261245,"name":"Stake Out","site_detail_url":"https://comicvine.gamespot.com/x-factor-215-stake-out/4000-261245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261308/","id":261308,"name":"Bullseye, Part Five","site_detail_url":"https://comicvine.gamespot.com/punishermax-10-bullseye-part-five/4000-261308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261242/","id":261242,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/evil-incarcerated-osborn-3-part-3/4000-261242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261320/","id":261320,"name":"Part One of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-1-part-one-of-s/4000-261320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261244/","id":261244,"name":"Death of Spider-Man: Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-153-death-of-spider-man-prelud/4000-261244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261317/","id":261317,"name":"In The House of the Devil","site_detail_url":"https://comicvine.gamespot.com/onslaught-unleashed-1-in-the-house-of-the-devil/4000-261317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261345/","id":261345,"name":"Urban Jungle, Part 3","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-515-urban-jungl/4000-261345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261335/","id":261335,"name":"Men of Mystery","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-1-men-of-mystery/4000-261335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262821/","id":262821,"name":"Sight Unseen","site_detail_url":"https://comicvine.gamespot.com/hawkeye-blindspot-1-sight-unseen/4000-262821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262647/","id":262647,"name":"Free States Rising: Manhattan, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-62-free-states-rising-manhattan-part-1/4000-262647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263757/","id":263757,"name":"To Serve & Protect, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-8-to-serve-protect-part-2/4000-263757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263756/","id":263756,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/punisher-in-the-blood-4-part-4/4000-263756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263758/","id":263758,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-doom-3-part-3/4000-263758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263760/","id":263760,"name":"Death of Spider-Man: Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-154-death-of-spider-man-prelud/4000-263760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263731/","id":263731,"name":"The Trial of Captain America Part 5; It's Never Sunny In Philadelphia","site_detail_url":"https://comicvine.gamespot.com/captain-america-615-the-trial-of-captain-america-p/4000-263731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263852/","id":263852,"name":"The Comedy of Death","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-2-the-comedy-of-death/4000-263852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263780/","id":263780,"name":"Start a War","site_detail_url":"https://comicvine.gamespot.com/the-new-york-five-2-start-a-war/4000-263780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266090/","id":266090,"name":"The Hellfire Club","site_detail_url":"https://comicvine.gamespot.com/kato-origins-7-the-hellfire-club/4000-266090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264883/","id":264883,"name":"Ghostwalk, Chapter Five: Jungle To Jungle","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-5-ghostwalk-chapter-five-jungle-t/4000-264883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269288/","id":269288,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-1-tpb/4000-269288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269574/","id":269574,"name":"","site_detail_url":"https://comicvine.gamespot.com/moon-girl-1/4000-269574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269638/","id":269638,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-sensational-1-tpb/4000-269638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270759/","id":270759,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-blade-vs-the-avengers-1-t/4000-270759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272881/","id":272881,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-class-portraits-1-tpb/4000-272881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269572/","id":269572,"name":"War of the Currents","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-5-war-of/4000-269572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268966/","id":268966,"name":"Episode One of Six","site_detail_url":"https://comicvine.gamespot.com/danger-girl-and-the-army-of-darkness-1-episode-one/4000-268966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262696/","id":262696,"name":"The Next Big Plan: Chapter One of Super Team","site_detail_url":"https://comicvine.gamespot.com/fables-102-the-next-big-plan-chapter-one-of-super-/4000-262696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262495/","id":262495,"name":"Silver Surfer: Devolution","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-1-silver-surfer-devolution/4000-262495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293181/","id":293181,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spider-2/4000-293181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297462/","id":297462,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-20/4000-297462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260867/","id":260867,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/cinderella-fables-are-forever-1-part-one/4000-260867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265491/","id":265491,"name":"Odyssey, Part 8: The Gauntlet","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-608-odyssey-part-8-the-gauntlet/4000-265491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259997/","id":259997,"name":"Believe","site_detail_url":"https://comicvine.gamespot.com/ultimate-thor-4-believe/4000-259997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271612/","id":271612,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/crossed-3d-1-ogn/4000-271612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-748307/","id":748307,"name":"Rise of the Black Faun","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-19xx-1-rise-of-the-black-fau/4000-748307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-257311/","id":257311,"name":"A Little Help; Growing; Rain Stops Play","site_detail_url":"https://comicvine.gamespot.com/i-am-an-avenger-5-a-little-help-growing-rain-stops/4000-257311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259137/","id":259137,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-152/4000-259137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260095/","id":260095,"name":"A Certain Point Of View","site_detail_url":"https://comicvine.gamespot.com/spider-girl-3-a-certain-point-of-view/4000-260095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267446/","id":267446,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/x-factor-happenings-in-vegas-1-volume-11/4000-267446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267449/","id":267449,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-first-thunder-1-tpb/4000-267449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267660/","id":267660,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/thor-the-mighty-avenger-1-volume-two/4000-267660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267661/","id":267661,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/age-of-heroes-1-tpb/4000-267661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268785/","id":268785,"name":"Mob War, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-boondock-saints-in-nomine-patris-volume-3-1-mo/4000-268785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270057/","id":270057,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-rapture-1-tpb/4000-270057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265570/","id":265570,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-204/4000-265570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266628/","id":266628,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-205/4000-266628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265647/","id":265647,"name":"Volume One: For a Better Future","site_detail_url":"https://comicvine.gamespot.com/morning-glories-for-a-better-future-1-volume-one-f/4000-265647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291356/","id":291356,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-1/4000-291356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291431/","id":291431,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-2/4000-291431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267392/","id":267392,"name":"The Death of the Illuminati!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-adventures-15-the-death-of-the-illu/4000-267392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270096/","id":270096,"name":"Widowmaker ","site_detail_url":"https://comicvine.gamespot.com/hawkeye-and-mockingbirdblack-widow-widowmaker-1-wi/4000-270096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270097/","id":270097,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-legacy-of-captain-america-1-tp/4000-270097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270099/","id":270099,"name":"Shadowland: Blood on the Streets","site_detail_url":"https://comicvine.gamespot.com/shadowland-blood-on-the-streets-1-shadowland-blood/4000-270099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273270/","id":273270,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-17/4000-273270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266583/","id":266583,"name":"Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-infestation-2-part-2-of-2/4000-266583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267825/","id":267825,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-6-volume-six/4000-267825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267844/","id":267844,"name":"Ultimate Comics New Ultimates: Thor Reborn","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-new-ultimates-thor-reborn-1-ultima/4000-267844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270054/","id":270054,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/thing-classic-1-volume-one/4000-270054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270055/","id":270055,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-1-tpb/4000-270055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270645/","id":270645,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-11-volume-11/4000-270645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258417/","id":258417,"name":"Revenge of the Spider-Slayer, Part One: Army of Insects; Lock And/Or Key","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-652-revenge-of-the-spider-s/4000-258417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265589/","id":265589,"name":"Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-infestation-1-part-1-of-2/4000-265589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267559/","id":267559,"name":"Shadowland: Moon Knight","site_detail_url":"https://comicvine.gamespot.com/shadowland-moon-knight-1-shadowland-moon-knight/4000-267559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264614/","id":264614,"name":"Volume Thirteen","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-13-volum/4000-264614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267384/","id":267384,"name":"The Bridge!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-adventures-14-the-bridge/4000-267384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273271/","id":273271,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-16/4000-273271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254574/","id":254574,"name":"Man Hunt, Part 3","site_detail_url":"https://comicvine.gamespot.com/she-hulks-3-man-hunt-part-3/4000-254574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254787/","id":254787,"name":"Keeping Things","site_detail_url":"https://comicvine.gamespot.com/x-factor-213-keeping-things/4000-254787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255931/","id":255931,"name":"Terminated","site_detail_url":"https://comicvine.gamespot.com/chaos-war-dead-avengers-3-terminated/4000-255931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255933/","id":255933,"name":"Urban Jungle, Part 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-514-urban-jungl/4000-255933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255905/","id":255905,"name":"Code Blue","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-17-code-blue/4000-255905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258418/","id":258418,"name":"","site_detail_url":"https://comicvine.gamespot.com/superior-4/4000-258418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258423/","id":258423,"name":"The New Iron Age","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-500-the-new-iron-age/4000-258423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258413/","id":258413,"name":"Powerless","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-8-powerless/4000-258413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258337/","id":258337,"name":"Free States Rising, Conclusion: The Jersey Shore","site_detail_url":"https://comicvine.gamespot.com/dmz-61-free-states-rising-conclusion-the-jersey-sh/4000-258337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258593/","id":258593,"name":"Asgard, Thine... Midgard, Mine!","site_detail_url":"https://comicvine.gamespot.com/thor-first-thunder-5-asgard-thine-midgard-mine/4000-258593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259135/","id":259135,"name":"The End Is Here","site_detail_url":"https://comicvine.gamespot.com/chaos-war-5-the-end-is-here/4000-259135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259140/","id":259140,"name":"Old Friends","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-18-old-friends/4000-259140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259182/","id":259182,"name":"First X-Man in Brooklyn!","site_detail_url":"https://comicvine.gamespot.com/magneto-1-first-x-man-in-brooklyn/4000-259182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259188/","id":259188,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/punisher-in-the-blood-3-part-3/4000-259188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259113/","id":259113,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-x-alpha-1/4000-259113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259141/","id":259141,"name":"To Serve & Protect, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-7-to-serve-protect-part-1/4000-259141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259190/","id":259190,"name":"The Trial of Captain America Part 4; Underneath The Skin Conclusion","site_detail_url":"https://comicvine.gamespot.com/captain-america-614-the-trial-of-captain-america-p/4000-259190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259148/","id":259148,"name":"Mistaken for Strangers","site_detail_url":"https://comicvine.gamespot.com/the-new-york-five-1-mistaken-for-strangers/4000-259148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259139/","id":259139,"name":"Date Night!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-8-date-night/4000-259139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260000/","id":260000,"name":"Thor Reborn, Chapter 5: Love","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-5-thor-reborn-chapter-5-lov/4000-260000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261321/","id":261321,"name":"Trace Elements","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-3-trace-elements/4000-261321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261341/","id":261341,"name":"I Did My Best","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-24-i-did-my-best/4000-261341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255904/","id":255904,"name":"Damnunition","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-2-damnunition/4000-255904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263176/","id":263176,"name":"The Power of the Dark Avengers!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-15-the-power-of-the-dark-avengers/4000-263176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264760/","id":264760,"name":"Barbary Coast, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-52-barbary-coast-part-one/4000-264760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264887/","id":264887,"name":"","site_detail_url":"https://comicvine.gamespot.com/wulf-1/4000-264887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266052/","id":266052,"name":"\"Artifacts\" part 6 of 13; Origin: \"Coin of Solomon\"","site_detail_url":"https://comicvine.gamespot.com/artifacts-6-artifacts-part-6-of-13-origin-coin-of-/4000-266052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267450/","id":267450,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/venom-by-daniel-way-ultimate-collection-1-tpb/4000-267450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267560/","id":267560,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-thor-bringers-of-the-storm-1-tpb/4000-267560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267918/","id":267918,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-dark-avengers-1-tpb/4000-267918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267193/","id":267193,"name":"Book Three: Bygones To Blood","site_detail_url":"https://comicvine.gamespot.com/la-banks-vampire-huntress-the-hidden-darkness-3-bo/4000-267193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270056/","id":270056,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-extended-family-1-tpb/4000-270056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272895/","id":272895,"name":"X-Men: With Great Power","site_detail_url":"https://comicvine.gamespot.com/x-men-with-great-power-1-x-men-with-great-power/4000-272895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264884/","id":264884,"name":"","site_detail_url":"https://comicvine.gamespot.com/clint-6/4000-264884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167649/","id":167649,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hellblazer-original-sins-1-vol-1/4000-167649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266233/","id":266233,"name":"Death Siege of the Frankenstein Legion; Operator 5: The Faithful","site_detail_url":"https://comicvine.gamespot.com/the-spider-1-death-siege-of-the-frankenstein-legio/4000-266233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315991/","id":315991,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/torpedo-3-volume-three/4000-315991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268628/","id":268628,"name":"SPIDER-MAN vs THE PUNISHER!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-19-spider-man-vs-the-pu/4000-268628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265719/","id":265719,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-6-volume-6/4000-265719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259144/","id":259144,"name":"The Ascent","site_detail_url":"https://comicvine.gamespot.com/fables-101-the-ascent/4000-259144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262784/","id":262784,"name":"Odyssey, Part 7: The Labyrinth","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-607-odyssey-part-7-the-labyrinth/4000-262784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530867/","id":530867,"name":"Abenteur in Manhattan","site_detail_url":"https://comicvine.gamespot.com/andy-morgan-4-abenteur-in-manhattan/4000-530867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268561/","id":268561,"name":"All-Lawsuit Issue!","site_detail_url":"https://comicvine.gamespot.com/comic-book-comics-5-all-lawsuit-issue/4000-268561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839773/","id":839773,"name":"Épilogue 1","site_detail_url":"https://comicvine.gamespot.com/uchronie-s-epilogues-1-epilogue-1/4000-839773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248437/","id":248437,"name":null,"site_detail_url":"https://comicvine.gamespot.com/shadowland-after-the-fall-1/4000-248437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249296/","id":249296,"name":"What if Spider-Man Killed Kraven The Hunter?; What if Venom Possessed Deadpool? Chapter Three","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-1-what-if-spider-man-killed-kra/4000-249296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248524/","id":248524,"name":"Like A Streak of Light!; Closure, part 2; The Darkest Depths; The Smashy Adventures of the Hulk","site_detail_url":"https://comicvine.gamespot.com/i-am-an-avenger-4-like-a-streak-of-light-closure-p/4000-248524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250713/","id":250713,"name":"What If? Dark Reign; What if Venom Possessed Deadpool? Chapter Four","site_detail_url":"https://comicvine.gamespot.com/what-if-dark-reign-1-what-if-dark-reign-what-if-ve/4000-250713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252993/","id":252993,"name":"Family Feud, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/carnage-2-family-feud-pt-2/4000-252993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253596/","id":253596,"name":"What if Norman Osborn won the Siege of Asgard?, What if the Watcher Killed Galactus?","site_detail_url":"https://comicvine.gamespot.com/what-if-200-what-if-norman-osborn-won-the-siege-of/4000-253596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253760/","id":253760,"name":"Death Be Not Proud...","site_detail_url":"https://comicvine.gamespot.com/spider-girl-2-death-be-not-proud/4000-253760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253761/","id":253761,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-9/4000-253761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261347/","id":261347,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-202/4000-261347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262282/","id":262282,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-vs-capcom-fate-of-two-worlds-3/4000-262282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262778/","id":262778,"name":"Curtains","site_detail_url":"https://comicvine.gamespot.com/the-scourge-3-curtains/4000-262778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263342/","id":263342,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-big-time-1-hctpb/4000-263342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263350/","id":263350,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-patriot-1-tpb/4000-263350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263351/","id":263351,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-dark-son-1-hctpb/4000-263351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263979/","id":263979,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/namor-visionaries-john-byrne-1-volume-one/4000-263979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263977/","id":263977,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-203/4000-263977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264192/","id":264192,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/young-allies-1-tpb/4000-264192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265711/","id":265711,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-4-volume-4/4000-265711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265769/","id":265769,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-the-death-of-odin-1-tpb/4000-265769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266790/","id":266790,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-animal-magnetism-1-tpb/4000-266790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267234/","id":267234,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-1-hctpb/4000-267234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258940/","id":258940,"name":"Enter the Black Widow","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-4-enter-the-black-widow/4000-258940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248584/","id":248584,"name":"Strange Days","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-korvac-saga-1-strange-days/4000-248584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249562/","id":249562,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-rapture-3/4000-249562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291430/","id":291430,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-1/4000-291430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551710/","id":551710,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-enemigo-1/4000-551710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311132/","id":311132,"name":"A Meal To Die For","site_detail_url":"https://comicvine.gamespot.com/spider-man-a-meal-to-die-for-1-a-meal-to-die-for/4000-311132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267444/","id":267444,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/shadowland-thunderbolts-1-hc-tpb/4000-267444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267445/","id":267445,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/thor-godstorm-1-hc/4000-267445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248499/","id":248499,"name":"Inferno; S.M.A.S.H. Files: A-Bomb - How I Became The Bomb","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-618-inferno-smash-files-a-bomb-ho/4000-248499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273118/","id":273118,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-1-vol-1/4000-273118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245820/","id":245820,"name":"X-Force : A Force To Be Reckoned With HC","site_detail_url":"https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with-1-x-force-a-f/4000-245820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262652/","id":262652,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/dmz-mia-1-volume-9/4000-262652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266235/","id":266235,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/shadowland-daredevil-1-hc-tpb/4000-266235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278663/","id":278663,"name":"Captain America by Jack Kirby Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-jack-kirby-omnibus-1-captain-am/4000-278663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379819/","id":379819,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-first-vengeance-1-part-1/4000-379819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379824/","id":379824,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-first-vengeance-2-part-2/4000-379824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261568/","id":261568,"name":"The Submariner Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-55-the-submariner-strikes-back/4000-261568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262484/","id":262484,"name":"In Team","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-4-in-team/4000-262484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263851/","id":263851,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/acts-of-vengeance-omnibus-1-hc/4000-263851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265751/","id":265751,"name":"Captain America Lives Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-lives-omnibus-1-captain-america-li/4000-265751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266236/","id":266236,"name":"Shadowland","site_detail_url":"https://comicvine.gamespot.com/shadowland-1-shadowland/4000-266236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266689/","id":266689,"name":"Atlantis Attacks Omnibus","site_detail_url":"https://comicvine.gamespot.com/atlantis-attacks-omnibus-1-atlantis-attacks-omnibu/4000-266689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285161/","id":285161,"name":"Hunt For Raven","site_detail_url":"https://comicvine.gamespot.com/teen-titans-hunt-for-raven-1-hunt-for-raven/4000-285161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245497/","id":245497,"name":"Civil War: X-Men","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men-1-civil-war-x-men/4000-245497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265900/","id":265900,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-15/4000-265900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327213/","id":327213,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/rebels-sons-of-brainiac-1-vol-4/4000-327213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247476/","id":247476,"name":"Shadowland: Part 5","site_detail_url":"https://comicvine.gamespot.com/daredevil-512-shadowland-part-5/4000-247476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247312/","id":247312,"name":"Man Hunt, Part 2","site_detail_url":"https://comicvine.gamespot.com/she-hulks-2-man-hunt-part-2/4000-247312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248497/","id":248497,"name":"","site_detail_url":"https://comicvine.gamespot.com/widowmaker-1/4000-248497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248455/","id":248455,"name":"The World Eaters Chapter 4","site_detail_url":"https://comicvine.gamespot.com/thor-618-the-world-eaters-chapter-4/4000-248455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249258/","id":249258,"name":"Big Time; The Final Lesson","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-650-big-time-the-final-less/4000-249258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249295/","id":249295,"name":"Urban Jungle, Part 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-man-without-fear-513-urban-jungl/4000-249295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249331/","id":249331,"name":"Captain America: Man Out Of Time","site_detail_url":"https://comicvine.gamespot.com/captain-america-man-out-of-time-2-captain-america-/4000-249331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249228/","id":249228,"name":"Facing Oblivion","site_detail_url":"https://comicvine.gamespot.com/chaos-war-4-facing-oblivion/4000-249228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248513/","id":248513,"name":"New Choices: Conception, Part 2 of 5; Murder Most Foul!","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-32-new-choices-conception-part-2-/4000-248513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250623/","id":250623,"name":"Faces","site_detail_url":"https://comicvine.gamespot.com/namor-the-first-mutant-5-faces/4000-250623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250619/","id":250619,"name":"Even the Dead Can Die","site_detail_url":"https://comicvine.gamespot.com/chaos-war-dead-avengers-2-even-the-dead-can-die/4000-250619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250693/","id":250693,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/punisher-in-the-blood-2-part-two/4000-250693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250163/","id":250163,"name":"One Step Forward - Two Steps Back","site_detail_url":"https://comicvine.gamespot.com/power-girl-19-one-step-forward-two-steps-back/4000-250163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251567/","id":251567,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-151/4000-251567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252734/","id":252734,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/avengers-8-revelations/4000-252734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253748/","id":253748,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/evil-incarcerated-osborn-2-part-2/4000-253748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255922/","id":255922,"name":"Big Time Part 4; The Sting That Never Goes Away","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-651-big-time-part-4-the-sti/4000-255922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253003/","id":253003,"name":"The Trial of Captain America, Part 3; Nomad: Underneath the Skin Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-613-the-trial-of-captain-america-p/4000-253003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251087/","id":251087,"name":"","site_detail_url":"https://comicvine.gamespot.com/superior-3/4000-251087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250624/","id":250624,"name":"Quarantine: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-531-quarantine-part-2/4000-250624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249396/","id":249396,"name":"Foreign Matter","site_detail_url":"https://comicvine.gamespot.com/thor-first-thunder-4-foreign-matter/4000-249396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259028/","id":259028,"name":"Odyssey, Part 6: The Huntsman","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-606-odyssey-part-6-the-huntsman/4000-259028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262598/","id":262598,"name":"Ghostwalk, Chapter Four: Ghost Ship","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-4-ghostwalk-chapter-four-ghost-sh/4000-262598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263352/","id":263352,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/thor-worldengine-1-hctpb/4000-263352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263879/","id":263879,"name":"Revelation Part 1: That Day of Wrath; Solar Rise Part 1: Saboteur","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom-5-revelation-part-1-t/4000-263879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264301/","id":264301,"name":"The Wizard of Menlo Park","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-4-the-wi/4000-264301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263982/","id":263982,"name":"Once Upon A Time In Harlem","site_detail_url":"https://comicvine.gamespot.com/turf-4-once-upon-a-time-in-harlem/4000-263982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260247/","id":260247,"name":"Freefall","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-9-freefall/4000-260247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262643/","id":262643,"name":"Proper Preparation and Planning, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-51-proper-preparation-and-planning-conclu/4000-262643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290432/","id":290432,"name":"Trapped in the Data Vortex","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-trapped-in-the-data-vortex-1-trappe/4000-290432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313305/","id":313305,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-2-volume-2/4000-313305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326772/","id":326772,"name":"Realm of Kings 1","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-67-realm-of-kings-1/4000-326772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379802/","id":379802,"name":"Unconfirmed Kill; Sense Memory; Brainchild; The Cure; Kiss, Kiss; Bonebomb Babylon; The Vacuum of Memory; So This is How it Feels","site_detail_url":"https://comicvine.gamespot.com/marvel-super-action-1-unconfirmed-kill-sense-memor/4000-379802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315807/","id":315807,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-4-book-four/4000-315807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263474/","id":263474,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-7/4000-263474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254097/","id":254097,"name":"Blade versus the Avengers, Part Five","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-17-blade-versus-the-avengers-par/4000-254097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261210/","id":261210,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-warriors-official-movie-adaptation-5/4000-261210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267258/","id":267258,"name":"Iron Fists of Fury!","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-32-iron-fists-of-fury/4000-267258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355492/","id":355492,"name":"Blind Date!/Rooftop Gauntlet","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-31-blind-daterooftop-gauntlet/4000-355492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735125/","id":735125,"name":null,"site_detail_url":"https://comicvine.gamespot.com/female-force-rosie-odonnell-1/4000-735125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168483/","id":168483,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-war-and-remembrance-1-tpb/4000-168483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241075/","id":241075,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-7/4000-241075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242262/","id":242262,"name":"Big Time","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-648-big-time/4000-242262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245075/","id":245075,"name":"Family Values; Four Shadowing","site_detail_url":"https://comicvine.gamespot.com/spider-girl-1-family-values-four-shadowing/4000-245075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242908/","id":242908,"name":"Like A Streak of Light!; Closure, Part 2; The Darkest Depths; The Smashy Adventures of Hulk","site_detail_url":"https://comicvine.gamespot.com/i-am-an-avenger-3-like-a-streak-of-light-closure-p/4000-242908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240901/","id":240901,"name":"Unthinkable","site_detail_url":"https://comicvine.gamespot.com/taskmaster-3-unthinkable/4000-240901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246460/","id":246460,"name":"Shadows Fall","site_detail_url":"https://comicvine.gamespot.com/shadowland-blood-on-the-streets-4-shadows-fall/4000-246460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247321/","id":247321,"name":"Chapter 5","site_detail_url":"https://comicvine.gamespot.com/shadowland-5-chapter-5/4000-247321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246618/","id":246618,"name":"Music Of The Spheres","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-3-music-of-the-spheres/4000-246618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258419/","id":258419,"name":"Vol. 5","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-5-vol-5/4000-258419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259143/","id":259143,"name":"Vampire","site_detail_url":"https://comicvine.gamespot.com/spawn-201-vampire/4000-259143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259458/","id":259458,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-resurrection-of-galactus-1-hc/4000-259458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260054/","id":260054,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-260054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261667/","id":261667,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-7-volume-7/4000-261667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263059/","id":263059,"name":"Another Cold Day Part 3","site_detail_url":"https://comicvine.gamespot.com/brimstone-and-the-borderhounds-3-another-cold-day-/4000-263059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263171/","id":263171,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-marvel-women-of-marvel-1-tpb/4000-263171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243636/","id":243636,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-rapture-1/4000-243636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263850/","id":263850,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-manfantastic-four-1-hctpb/4000-263850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265179/","id":265179,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-1-volume-1/4000-265179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265743/","id":265743,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-man-and-wolf-1-tpb/4000-265743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243905/","id":243905,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-8/4000-243905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245344/","id":245344,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-rapture-2/4000-245344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339702/","id":339702,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/the-astounding-wolf-man-4-vol-4/4000-339702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519014/","id":519014,"name":"","site_detail_url":"https://comicvine.gamespot.com/asedio-infiltrados-4/4000-519014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260581/","id":260581,"name":"Hawkeye and Mockingbird: Ghosts","site_detail_url":"https://comicvine.gamespot.com/hawkeye-and-mockingbird-ghosts-1-hawkeye-and-mocki/4000-260581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261471/","id":261471,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-spectacular-1-tpb/4000-261471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261476/","id":261476,"name":"Avengers Academy: Permanent Record","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-permanent-record-1-avengers-acade/4000-261476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261477/","id":261477,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-1-volume-one/4000-261477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281158/","id":281158,"name":"Lock And/Or Key - Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-big-time-4-lock-andor-key-part-2/4000-281158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246430/","id":246430,"name":"The Advent of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-29-the-advent-of-tomorrow/4000-246430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345144/","id":345144,"name":"Terror at Tintagel","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-214-terror-at-ti/4000-345144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259452/","id":259452,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-the-coming-of-the-beast-1-hc/4000-259452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261687/","id":261687,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-citizen-kang-1-tpb/4000-261687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258519/","id":258519,"name":"Amazing Spider-Man: Origin of the Species","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-origin-of-the-species-1-amazing/4000-258519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248753/","id":248753,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-14/4000-248753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240923/","id":240923,"name":"Yon Twelve-Winded Sky, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-12-yon-twelve-winded-sky-part-1-of-2/4000-240923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240925/","id":240925,"name":"Captain America: Man Out Of Time","site_detail_url":"https://comicvine.gamespot.com/captain-america-man-out-of-time-1-captain-america-/4000-240925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240964/","id":240964,"name":"Ghosts, Part 6: Hunted","site_detail_url":"https://comicvine.gamespot.com/hawkeye-mockingbird-6-ghosts-part-6-hunted/4000-240964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241000/","id":241000,"name":"I Dreamed A Dream","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-6-i-dreamed-a-dream/4000-241000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241073/","id":241073,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/punisher-in-the-blood-1-part-one/4000-241073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242322/","id":242322,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-617/4000-242322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242573/","id":242573,"name":"The High Road","site_detail_url":"https://comicvine.gamespot.com/thunder-agents-1-the-high-road/4000-242573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242167/","id":242167,"name":"Man Hunt, Part 1","site_detail_url":"https://comicvine.gamespot.com/she-hulks-1-man-hunt-part-1/4000-242167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243488/","id":243488,"name":"Holding Ground","site_detail_url":"https://comicvine.gamespot.com/the-mighty-crusaders-5-holding-ground/4000-243488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244836/","id":244836,"name":"","site_detail_url":"https://comicvine.gamespot.com/superior-2/4000-244836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244839/","id":244839,"name":"Infinity Quest","site_detail_url":"https://comicvine.gamespot.com/avengers-7-infinity-quest/4000-244839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244901/","id":244901,"name":"The Chaos Races On","site_detail_url":"https://comicvine.gamespot.com/chaos-war-dead-avengers-1-the-chaos-races-on/4000-244901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244976/","id":244976,"name":"Nothing At All; At The Crossroads of the World, In The City That Never Sleeps, On The Eve of Destruction; A Fate Worse Than Dying","site_detail_url":"https://comicvine.gamespot.com/chaos-war-chaos-king-1-nothing-at-all-at-the-cross/4000-244976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240744/","id":240744,"name":"The Future is a Four-Letter Word, Part 1","site_detail_url":"https://comicvine.gamespot.com/generation-hope-1-the-future-is-a-four-letter-word/4000-240744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246468/","id":246468,"name":"Supertown, Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-45-supertown-part-two/4000-246468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246471/","id":246471,"name":"Kill To Be You","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-649-kill-to-be-you/4000-246471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246470/","id":246470,"name":"Spidey's 150th Anniversay Special","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-150-spideys-150th-anniversay-s/4000-246470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246473/","id":246473,"name":"Like Father!; Only Human!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-1-like-father-only-human/4000-246473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246538/","id":246538,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-thor-1/4000-246538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246428/","id":246428,"name":"Collective Punishment, Conclusion: Matty's War","site_detail_url":"https://comicvine.gamespot.com/dmz-59-collective-punishment-conclusion-mattys-war/4000-246428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241081/","id":241081,"name":"DC Comics Presents: Chase","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-chase-1-dc-comics-presents-chas/4000-241081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254708/","id":254708,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-broken-house-of-cards-1-vol-3/4000-254708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-257823/","id":257823,"name":"Episode Three","site_detail_url":"https://comicvine.gamespot.com/halcyon-3-episode-three/4000-257823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245330/","id":245330,"name":"Genetic Disposition","site_detail_url":"https://comicvine.gamespot.com/thor-first-thunder-3-genetic-disposition/4000-245330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244790/","id":244790,"name":"Empire, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/daken-dark-wolverine-3-empire-pt-3/4000-244790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250662/","id":250662,"name":"Odyssey, Part 5: Runaway Fate","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-605-odyssey-part-5-runaway-fate/4000-250662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261469/","id":261469,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/steve-rogers-super-soldier-1-hc-tpb/4000-261469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261692/","id":261692,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-back-in-action-1-vol-1/4000-261692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261709/","id":261709,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-4-volume-four/4000-261709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263121/","id":263121,"name":"Socking It to the Sisterhood!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-13-socking-it-to-the-sisterhood/4000-263121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264193/","id":264193,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-omnibus-1-volume-one/4000-264193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264452/","id":264452,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/daken-dark-wolverine-empire-1-hc/4000-264452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285925/","id":285925,"name":"Captain America - Super Soldier","site_detail_url":"https://comicvine.gamespot.com/100-marvel-57-captain-america-super-soldier/4000-285925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262031/","id":262031,"name":"Kiss Kiss, Bang Bang","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-3-kiss-k/4000-262031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276942/","id":276942,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/punisher-max-hardcover-6-volume-6/4000-276942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308767/","id":308767,"name":"Ghostwalk","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-ghostwalk-1-ghostwalk/4000-308767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255988/","id":255988,"name":"Untitled (200th Anniversary Special)","site_detail_url":"https://comicvine.gamespot.com/spawn-200-untitled-200th-anniversary-special/4000-255988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355245/","id":355245,"name":"","site_detail_url":"https://comicvine.gamespot.com/beautiful-death-1/4000-355245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373981/","id":373981,"name":"Homework Stinks!!!; X-Men","site_detail_url":"https://comicvine.gamespot.com/taco-bellx-men-1-homework-stinks-x-men/4000-373981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373983/","id":373983,"name":"Let's Make a Deal; A Hero of Polish","site_detail_url":"https://comicvine.gamespot.com/taco-bellinvincible-iron-man-1-lets-make-a-deal-a-/4000-373983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373984/","id":373984,"name":"A Day in the Life of the Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/taco-bellfantastic-four-1-a-day-in-the-life-of-the/4000-373984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373986/","id":373986,"name":"Not Just Any Old Monkey Business; Time Hunt!","site_detail_url":"https://comicvine.gamespot.com/taco-bellavengers-1-not-just-any-old-monkey-busine/4000-373986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271879/","id":271879,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine-13/4000-271879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385798/","id":385798,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-york-1/4000-385798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255324/","id":255324,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-17/4000-255324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258342/","id":258342,"name":"Proper Preparation and Planning, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-50-proper-preparation-and-planning-part-t/4000-258342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248512/","id":248512,"name":"Single Combat","site_detail_url":"https://comicvine.gamespot.com/fables-100-single-combat/4000-248512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302639/","id":302639,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/artifacts-1-volume-1/4000-302639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266643/","id":266643,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-1-hc/4000-266643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266651/","id":266651,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-7-volume-7/4000-266651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355494/","id":355494,"name":"Touch of Evil/Mission of Mercy/The Beast Inside","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-30-touch-of-evilmission-of-mercythe-/4000-355494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264457/","id":264457,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-scourge-of-the-underworld-1-tpb/4000-264457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237114/","id":237114,"name":"Savage Tales","site_detail_url":"https://comicvine.gamespot.com/klaws-of-the-panther-1-savage-tales/4000-237114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237205/","id":237205,"name":"Imbalanced","site_detail_url":"https://comicvine.gamespot.com/shadowland-spider-man-1-imbalanced/4000-237205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237315/","id":237315,"name":"Windows and Walls","site_detail_url":"https://comicvine.gamespot.com/young-allies-5-windows-and-walls/4000-237315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238178/","id":238178,"name":"Chapter 4","site_detail_url":"https://comicvine.gamespot.com/shadowland-4-chapter-4/4000-238178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238448/","id":238448,"name":"Post-Mortem; Closure part 1; The Journal of Edwin Jarvis; Pie of the Tiger","site_detail_url":"https://comicvine.gamespot.com/i-am-an-avenger-2-post-mortem-closure-part-1-the-j/4000-238448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239071/","id":239071,"name":"Family Feud, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/carnage-1-family-feud-pt-1/4000-239071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239204/","id":239204,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-max-tiny-ugly-world-1/4000-239204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239851/","id":239851,"name":"Three, Part Two: Congratulations, Mister Grimm. You`re Handsome Again!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-584-three-part-two-congratulations-/4000-239851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240068/","id":240068,"name":"Truth & Justice","site_detail_url":"https://comicvine.gamespot.com/captain-america-patriot-3-truth-justice/4000-240068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240158/","id":240158,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-mystery-4/4000-240158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241060/","id":241060,"name":"Outbreak","site_detail_url":"https://comicvine.gamespot.com/the-scourge-2-outbreak/4000-241060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247375/","id":247375,"name":"Resurrection, Part Five","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-5-resurrection-part-five/4000-247375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248623/","id":248623,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-the-new-prince-of-power-1-tpb/4000-248623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249051/","id":249051,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-team-up-special-relationship-1-volume-2/4000-249051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249239/","id":249239,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-moon-knight-killed-not-dead-1-volume-/4000-249239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250787/","id":250787,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teen-titans-ravager-fresh-hell-1-tpb/4000-250787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256145/","id":256145,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-black-cat-1-tpb/4000-256145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258520/","id":258520,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/one-month-to-live-1-hctpb/4000-258520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259563/","id":259563,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-5-volume-five/4000-259563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276820/","id":276820,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-axis-of-evil-1-volume-8/4000-276820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251514/","id":251514,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-10-volume-10/4000-251514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247294/","id":247294,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/fables-witches-1-volume-14/4000-247294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344279/","id":344279,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-sword-the-complete-collection-1-hc/4000-344279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249209/","id":249209,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/preacher-3-book-three/4000-249209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551711/","id":551711,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-enemigo-2/4000-551711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298049/","id":298049,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-4/4000-298049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218280/","id":218280,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-talisman-the-road-of-trials-1-gn/4000-218280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255940/","id":255940,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-1-volume-one/4000-255940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255965/","id":255965,"name":"Civil War: The Underside","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-underside-1-civil-war-the-underside/4000-255965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256148/","id":256148,"name":"X-Force: Cable and the New Mutants","site_detail_url":"https://comicvine.gamespot.com/x-force-cable-and-the-new-mutants-1-x-force-cable-/4000-256148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540456/","id":540456,"name":"Big Lizard on Campus","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-213-big-lizard-o/4000-540456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239885/","id":239885,"name":"Origin of the Species, Part 5","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-646-origin-of-the-species-p/4000-239885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239765/","id":239765,"name":"Extra-Sensory, Chapter 5: A Taste of Things to Come","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-28-extra-sensory-chapter-5-a-taste-o/4000-239765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255756/","id":255756,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-1-hc-tpb/4000-255756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255750/","id":255750,"name":"Black Widow: The Name of the Rose","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-name-of-the-rose-1-black-widow-the/4000-255750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255846/","id":255846,"name":"Marvels: Eye of the Camera","site_detail_url":"https://comicvine.gamespot.com/marvels-eye-of-the-camera-1-marvels-eye-of-the-cam/4000-255846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260093/","id":260093,"name":"","site_detail_url":"https://comicvine.gamespot.com/top-cow-holiday-specialjingle-belle-grounded-1/4000-260093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239983/","id":239983,"name":"Dark Son Part Four: First Contact; 'Til Death Do Us Part","site_detail_url":"https://comicvine.gamespot.com/incredible-hulks-615-dark-son-part-four-first-cont/4000-239983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249196/","id":249196,"name":"Book 6","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-6-book-6/4000-249196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238243/","id":238243,"name":"Origin of the Species, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-645-origin-of-the-species-p/4000-238243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249049/","id":249049,"name":"No Escape","site_detail_url":"https://comicvine.gamespot.com/captain-america-no-escape-1-no-escape/4000-249049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373917/","id":373917,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/pantheon-1-tpb/4000-373917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245817/","id":245817,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-13/4000-245817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716012/","id":716012,"name":"Web 'n' Arrows","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-212-web-n-arrows/4000-716012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240897/","id":240897,"name":"Another Door; Honor Thy Father; Stand Off; Norah's Last Night In NYC; J. Jonah Jameson - The Musical; American Hero; You Again","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-647-another-door-honor-thy-/4000-240897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237208/","id":237208,"name":"The End is Nigh","site_detail_url":"https://comicvine.gamespot.com/chaos-war-1-the-end-is-nigh/4000-237208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237535/","id":237535,"name":"A House Divided","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-15-a-house-divided/4000-237535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237016/","id":237016,"name":"Monsters/The Goblin King/Baby Universes/Problem Solved/The Fix/What You Need Vs. What You Want/Three Guys Walk into a Bar: Safe as Houses, Part 5 of 5; Lotus Blossom's Theory of Names","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-30-monstersthe-goblin-kingbaby-un/4000-237016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238315/","id":238315,"name":"One Magic Wish","site_detail_url":"https://comicvine.gamespot.com/superior-1-one-magic-wish/4000-238315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238090/","id":238090,"name":"Bonfire Night; Devil's Lake; Infernal Bargains Just Say No!","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-halloween-annual-2-bonfire-night-/4000-238090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237541/","id":237541,"name":"100-Page Spectacular","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-green-lantern-1-100-page-specta/4000-237541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238232/","id":238232,"name":"Magic Gone Berserk(er)!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-5-magic-gone-berserker/4000-238232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239023/","id":239023,"name":"The Weaponer, Part 1","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-53-the-weaponer-part-1/4000-239023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239036/","id":239036,"name":"Thor Reborn, Chapter 4: Loki","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-4-thor-reborn-chapter-4-lok/4000-239036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239039/","id":239039,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-1/4000-239039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239035/","id":239035,"name":"Shadowland: Part 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-511-shadowland-part-4/4000-239035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239053/","id":239053,"name":"Return of the God Squad","site_detail_url":"https://comicvine.gamespot.com/chaos-war-2-return-of-the-god-squad/4000-239053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238976/","id":238976,"name":"Collective Punishment, Part 4: A Decade on the Wall","site_detail_url":"https://comicvine.gamespot.com/dmz-58-collective-punishment-part-4-a-decade-on-th/4000-238976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239171/","id":239171,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-210/4000-239171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238923/","id":238923,"name":"The Trial of Captain America, Part One","site_detail_url":"https://comicvine.gamespot.com/captain-america-611-the-trial-of-captain-america-p/4000-238923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239856/","id":239856,"name":"Next Avengers, Part 6","site_detail_url":"https://comicvine.gamespot.com/avengers-6-next-avengers-part-6/4000-239856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239889/","id":239889,"name":"Lightning In Shadows, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-149-lightning-in-shadows-pt-2/4000-239889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239850/","id":239850,"name":"Supertown, Part One","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-44-supertown-part-one/4000-239850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239951/","id":239951,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-15/4000-239951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239980/","id":239980,"name":"100 Page Spectacular #1","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-superman-1-100-page-spectacular/4000-239980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239979/","id":239979,"name":"Blade versus the Avengers, Part Three of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-15-blade-versus-the-avengers-par/4000-239979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240067/","id":240067,"name":"Avengers vs. The Pet Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-pet-avengers-1-avengers-vs-the-pet-ave/4000-240067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240290/","id":240290,"name":"One Shot","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-vampires-mdcu-1-one-shot/4000-240290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247212/","id":247212,"name":"Proper Preparation and Planning, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-49-proper-preparation-and-planning-part-t/4000-247212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248436/","id":248436,"name":"Brightest Day Part 1","site_detail_url":"https://comicvine.gamespot.com/brightest-day-1-brightest-day-part-1/4000-248436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248404/","id":248404,"name":"Paper Monsters, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-140-paper-monsters-part-1/4000-248404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248672/","id":248672,"name":"Iron Man: War of the Iron Men","site_detail_url":"https://comicvine.gamespot.com/iron-man-war-of-the-iron-men-1-iron-man-war-of-the/4000-248672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248684/","id":248684,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/thor-if-asgard-should-perish-1-hc/4000-248684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248517/","id":248517,"name":"","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-x-mas-carol-1/4000-248517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239360/","id":239360,"name":"The Vengeance of Loki","site_detail_url":"https://comicvine.gamespot.com/thor-first-thunder-2-the-vengeance-of-loki/4000-239360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248403/","id":248403,"name":"Episode Two","site_detail_url":"https://comicvine.gamespot.com/halcyon-2-episode-two/4000-248403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249405/","id":249405,"name":"The Robot Who Wouldn't Go Away","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-deadly-art-of-science-2-the-ro/4000-249405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342783/","id":342783,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-deluxe-edition-2-volume-2/4000-342783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251138/","id":251138,"name":"Coming To Town; Do You Hear What I Hear?; Christmas Future; The Pollyanna","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-holiday-edition-2-coming-to-town/4000-251138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307503/","id":307503,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-defenders-2-volume-2/4000-307503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238977/","id":238977,"name":"Dark City","site_detail_url":"https://comicvine.gamespot.com/fables-99-dark-city/4000-238977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239853/","id":239853,"name":"Odyssey, Part 4","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-604-odyssey-part-4/4000-239853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355526/","id":355526,"name":"Eternal Night","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-28-eternal-night/4000-355526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355527/","id":355527,"name":"It's an Amazing Life","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-29-its-an-amazing-life/4000-355527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232570/","id":232570,"name":"Chapter 3","site_detail_url":"https://comicvine.gamespot.com/shadowland-3-chapter-3/4000-232570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232760/","id":232760,"name":"Now, Not Tomorrow Part 4: The Lie","site_detail_url":"https://comicvine.gamespot.com/young-allies-4-now-not-tomorrow-part-4-the-lie/4000-232760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233803/","id":233803,"name":"Condemned To Repeat It","site_detail_url":"https://comicvine.gamespot.com/invaders-now-1-condemned-to-repeat-it/4000-233803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234262/","id":234262,"name":"On The Edge","site_detail_url":"https://comicvine.gamespot.com/shadowland-blood-on-the-streets-2-on-the-edge/4000-234262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234665/","id":234665,"name":null,"site_detail_url":"https://comicvine.gamespot.com/shadowland-ghost-rider-1/4000-234665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234873/","id":234873,"name":"War in the Neighborhood","site_detail_url":"https://comicvine.gamespot.com/shadowland-power-man-2-war-in-the-neighborhood/4000-234873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234876/","id":234876,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-2/4000-234876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235446/","id":235446,"name":"Three, Part One: In Latveria, the Flowers Bloom in Winter","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-583-three-part-one-in-latveria-the-/4000-235446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235502/","id":235502,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadowland-daughters-of-the-shadow-2/4000-235502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235503/","id":235503,"name":"Eclipsed","site_detail_url":"https://comicvine.gamespot.com/shadowland-moon-knight-2-eclipsed/4000-235503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236412/","id":236412,"name":"From Husk Til Dawn; I’m Gonna Stake You, Sucka; Rue Blood; Survivors","site_detail_url":"https://comicvine.gamespot.com/x-men-curse-of-the-mutants-x-men-vs-vampires-1-fro/4000-236412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237207/","id":237207,"name":"Human Slavery For Beginners; Fear and Mister Dayton","site_detail_url":"https://comicvine.gamespot.com/spider-man-back-in-quack-1-human-slavery-for-begin/4000-237207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235694/","id":235694,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-6/4000-235694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240634/","id":240634,"name":"Proper Preparation and Planning, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-48-proper-preparation-and-planning-part-o/4000-240634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242619/","id":242619,"name":"Remembrance","site_detail_url":"https://comicvine.gamespot.com/witchblade-139-remembrance/4000-242619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246588/","id":246588,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/punisher-franken-castle-1-hc/4000-246588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246605/","id":246605,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-246605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247384/","id":247384,"name":"Another Cold Day Part 2","site_detail_url":"https://comicvine.gamespot.com/brimstone-and-the-borderhounds-2-another-cold-day-/4000-247384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247810/","id":247810,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-osborn-identity-1-tpb/4000-247810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247811/","id":247811,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-across-all-worlds-1-tpb/4000-247811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244801/","id":244801,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-deluxe-edition-4-book-four/4000-244801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240635/","id":240635,"name":"Vol. 7","site_detail_url":"https://comicvine.gamespot.com/the-boys-the-innocents-1-vol-7/4000-240635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232568/","id":232568,"name":"Homecoming; The Books of the Iron Fist; Welcome Home, Squirrel Girl!; Gnu Recruit","site_detail_url":"https://comicvine.gamespot.com/i-am-an-avenger-1-homecoming-the-books-of-the-iron/4000-232568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254232/","id":254232,"name":"The Head of the Snake, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-boondock-saints-in-nomine-patris-volume-2-2-th/4000-254232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236355/","id":236355,"name":"All-Winners","site_detail_url":"https://comicvine.gamespot.com/captain-america-patriot-2-all-winners/4000-236355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233867/","id":233867,"name":"Origin of the Species, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-642-origin-of-the-species-p/4000-233867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235695/","id":235695,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-mystery-3/4000-235695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300041/","id":300041,"name":"Un Momento de Silencio","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-19-un-momento-de-silencio/4000-300041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446106/","id":446106,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/special-exits-1-gn/4000-446106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232633/","id":232633,"name":"Lady Gaga 2","site_detail_url":"https://comicvine.gamespot.com/fame-lady-gaga-2-lady-gaga-2/4000-232633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248152/","id":248152,"name":"","site_detail_url":"https://comicvine.gamespot.com/clint-4/4000-248152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237018/","id":237018,"name":"Extra-Sensory, Chapter 4: Don't Touch Me There","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-27-extra-sensory-chapter-4-dont-touc/4000-237018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248406/","id":248406,"name":"Ultimate Comics Spider-Man: Chameleons","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-chameleons-1-ultimate-c/4000-248406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260228/","id":260228,"name":"Warriors","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-8-warriors/4000-260228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245511/","id":245511,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-52/4000-245511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246653/","id":246653,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-12/4000-246653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234649/","id":234649,"name":"Part 4: Gods & Monsters","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-4-part-4-gods-mons/4000-234649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246609/","id":246609,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244845/","id":244845,"name":"Amazing Spider-Man: One Moment in Time","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-one-moment-in-time-1-amazing-sp/4000-244845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232537/","id":232537,"name":"Part 3: Partner In Crime","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-3-part-3-partner-i/4000-232537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243330/","id":243330,"name":"The Heroic Age","site_detail_url":"https://comicvine.gamespot.com/the-heroic-age-1-the-heroic-age/4000-243330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265662/","id":265662,"name":"Thor by J. Michael Straczynski Omnibus","site_detail_url":"https://comicvine.gamespot.com/thor-by-j-michael-straczynski-omnibus-1-thor-by-j-/4000-265662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243657/","id":243657,"name":"Squadron Supreme by Mark Gruenwald Omnibus","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-by-mark-gruenwald-omnibus-1-squad/4000-243657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232535/","id":232535,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-the-childrens-crusade-2/4000-232535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232947/","id":232947,"name":"Week One","site_detail_url":"https://comicvine.gamespot.com/heroic-age-one-month-to-live-1-week-one/4000-232947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233069/","id":233069,"name":"Time Stands Still For No Man","site_detail_url":"https://comicvine.gamespot.com/our-army-at-war-1-time-stands-still-for-no-man/4000-233069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233761/","id":233761,"name":"The Ancient One Throws Down!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-4-the-ancient-one-throws-down/4000-233761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233759/","id":233759,"name":"Shadowland: Part 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-510-shadowland-part-3/4000-233759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233620/","id":233620,"name":"Empire, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/daken-dark-wolverine-1-empire-pt-1/4000-233620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233937/","id":233937,"name":"Blade Versus The Avengers, Part Two of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-14-blade-versus-the-avengers-par/4000-233937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234264/","id":234264,"name":"Week Two","site_detail_url":"https://comicvine.gamespot.com/heroic-age-one-month-to-live-2-week-two/4000-234264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234544/","id":234544,"name":"Collective Punishment, Part 3: Amina, Mother of One","site_detail_url":"https://comicvine.gamespot.com/dmz-57-collective-punishment-part-3-amina-mother-o/4000-234544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234641/","id":234641,"name":"The Killing Dream, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-23-1-the-killing-dream-part-1/4000-234641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234645/","id":234645,"name":"Crisis!; Snapshot: Resistance","site_detail_url":"https://comicvine.gamespot.com/dc-universe-legacies-5-crisis-snapshot-resistance/4000-234645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234695/","id":234695,"name":"Lightning In Shadows, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-148-lightning-in-shadows-pt-1/4000-234695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234676/","id":234676,"name":"Origin of the Species, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-643-origin-of-the-species-p/4000-234676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234675/","id":234675,"name":"Another Fine Mess, Part Three","site_detail_url":"https://comicvine.gamespot.com/astonishing-spider-man-wolverine-3-another-fine-me/4000-234675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234856/","id":234856,"name":"The EX-Terminators Part 2; Arms Against A Sea of Troubles","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-12-the-ex-terminators-part-2-arm/4000-234856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235395/","id":235395,"name":"Scared Straight, Pt 2: Fix You","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-4-scared-straight-pt-2-fix-you/4000-235395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235439/","id":235439,"name":"Tainted Love Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-14-tainted-love-part-6-of-6/4000-235439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235387/","id":235387,"name":"Battle for the Future","site_detail_url":"https://comicvine.gamespot.com/avengers-5-battle-for-the-future/4000-235387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236323/","id":236323,"name":"No Escape Conclusion; Welcome Home Conclusion","site_detail_url":"https://comicvine.gamespot.com/captain-america-610-no-escape-conclusion-welcome-h/4000-236323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236349/","id":236349,"name":"","site_detail_url":"https://comicvine.gamespot.com/franken-castle-21/4000-236349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236285/","id":236285,"name":"Origin of the Species, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-644-origin-of-the-species-p/4000-236285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237474/","id":237474,"name":"","site_detail_url":"https://comicvine.gamespot.com/life-with-archie-3/4000-237474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238479/","id":238479,"name":"The Trophy Hunters, Part 4","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-4-the-trophy/4000-238479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234684/","id":234684,"name":"Snow Job: Part 1","site_detail_url":"https://comicvine.gamespot.com/power-girl-16-snow-job-part-1/4000-234684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243328/","id":243328,"name":"Sneek Peeks - Amazing Spider-Man #648; Osbourn #1; Spider-Girl #1; Thunderstrike #1; She-Hulks #1; Captain America: Man Out of Time #1; Warriors Three #1; Iron Man/Thor #1; Generation Hope #1","site_detail_url":"https://comicvine.gamespot.com/november-2010-sneak-peeks-1-sneek-peeks-amazing-sp/4000-243328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243645/","id":243645,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-the-last-stand-1-tpb/4000-243645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244450/","id":244450,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244793/","id":244793,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-2-book-two/4000-244793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264996/","id":264996,"name":"","site_detail_url":"https://comicvine.gamespot.com/valhalla-cindermane-2/4000-264996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258094/","id":258094,"name":"Vol. 10","site_detail_url":"https://comicvine.gamespot.com/ex-machina-term-limits-1-vol-10/4000-258094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317402/","id":317402,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-haunted-holidays-1/4000-317402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246478/","id":246478,"name":"Crown of Worms, Part 1: Red Right Hand; Looking for Mr. Goodwin","site_detail_url":"https://comicvine.gamespot.com/vampirella-1-crown-of-worms-part-1-red-right-hand-/4000-246478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234669/","id":234669,"name":"Strip Search","site_detail_url":"https://comicvine.gamespot.com/x-factor-209-strip-search/4000-234669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245048/","id":245048,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-warriors-official-movie-adaptation-4/4000-245048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844760/","id":844760,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/my-new-new-york-diary-1-gn/4000-844760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227712/","id":227712,"name":"Chapter 2","site_detail_url":"https://comicvine.gamespot.com/shadowland-2-chapter-2/4000-227712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227713/","id":227713,"name":"Bullseye: Dead On A Rival","site_detail_url":"https://comicvine.gamespot.com/shadowland-bullseye-1-bullseye-dead-on-a-rival/4000-227713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227871/","id":227871,"name":"Living in the Ruins","site_detail_url":"https://comicvine.gamespot.com/spitfire-1-living-in-the-ruins/4000-227871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227994/","id":227994,"name":"Second Sight; Secrets and Lies; Game Room","site_detail_url":"https://comicvine.gamespot.com/daredevil-black-white-1-second-sight-secrets-and-l/4000-227994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228977/","id":228977,"name":"Crime & Punishment","site_detail_url":"https://comicvine.gamespot.com/shadowland-blood-on-the-streets-1-crime-punishment/4000-228977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230348/","id":230348,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadowland-daughters-of-the-shadow-1/4000-230348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230364/","id":230364,"name":"Extra Life","site_detail_url":"https://comicvine.gamespot.com/shadowland-power-man-1-extra-life/4000-230364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232053/","id":232053,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-5/4000-232053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239295/","id":239295,"name":"Tomorrow Dies Today","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-tomorrow-dies-today-1-tomorrow-/4000-239295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241083/","id":241083,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-1-hc/4000-241083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241160/","id":241160,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-1-hc-tpb/4000-241160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241162/","id":241162,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hulked-out-heroes-1/4000-241162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240493/","id":240493,"name":"Another Cold Day","site_detail_url":"https://comicvine.gamespot.com/brimstone-and-the-borderhounds-1-another-cold-day/4000-240493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227338/","id":227338,"name":"Reality","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-12-reality/4000-227338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241163/","id":241163,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-world-war-hulks-1-hc/4000-241163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234713/","id":234713,"name":"Born on the Fourth of July","site_detail_url":"https://comicvine.gamespot.com/captain-america-patriot-1-born-on-the-fourth-of-ju/4000-234713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231684/","id":231684,"name":"The End of Spidergirl!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-the-end-1-the-end-of-spidergirl/4000-231684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228974/","id":228974,"name":"The Invisible Hand!; The Final Battle!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-4-the-invisible-hand-the-f/4000-228974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595427/","id":595427,"name":"","site_detail_url":"https://comicvine.gamespot.com/tormenta-temporal-2009-2099-1/4000-595427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240624/","id":240624,"name":"","site_detail_url":"https://comicvine.gamespot.com/clint-3/4000-240624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242811/","id":242811,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-3-volume-3/4000-242811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259639/","id":259639,"name":"Constellations","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-constellations-1-constellations/4000-259639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540458/","id":540458,"name":"Power Cut","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-210-power-cut/4000-540458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230329/","id":230329,"name":"Part 2: Warrior of Heaven","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-2-part-2-warrior-o/4000-230329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239815/","id":239815,"name":"World War Hulks","site_detail_url":"https://comicvine.gamespot.com/hulk-world-war-hulks-1-world-war-hulks/4000-239815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240122/","id":240122,"name":"Amazing Spider-Man: Grim Hunt","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-grim-hunt-1-amazing-spider-man-/4000-240122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264439/","id":264439,"name":"The Lightning Thief","site_detail_url":"https://comicvine.gamespot.com/percy-jackson-and-the-olympians-1-the-lightning-th/4000-264439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227821/","id":227821,"name":"Part 1: Last Gun on Earth","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-punisher-1-part-1-last-gun-/4000-227821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716085/","id":716085,"name":"When Titans Clash","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-209-when-titans-/4000-716085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334875/","id":334875,"name":"2010","site_detail_url":"https://comicvine.gamespot.com/the-best-american-comics-5-2010/4000-334875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228875/","id":228875,"name":"Dead Reckoning!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-5-dead-reckoning/4000-228875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228894/","id":228894,"name":"Shadowland: Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-509-shadowland-part-2/4000-228894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228970/","id":228970,"name":"Blade versus the Avengers, Part One of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-13-blade-versus-the-avengers-par/4000-228970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229060/","id":229060,"name":"Tainted Love: Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-13-tainted-love-part-5-of-6/4000-229060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229004/","id":229004,"name":"Collective Punishment, Part 2: Ghost Protector","site_detail_url":"https://comicvine.gamespot.com/dmz-56-collective-punishment-part-2-ghost-protecto/4000-229004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229345/","id":229345,"name":"Wreckage","site_detail_url":"https://comicvine.gamespot.com/the-mighty-crusaders-2-wreckage/4000-229345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230137/","id":230137,"name":"Bomb Squad: Part Two","site_detail_url":"https://comicvine.gamespot.com/power-girl-15-bomb-squad-part-two/4000-230137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230259/","id":230259,"name":"One Moment in Time Chapter Three: Something Borrowed","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-640-one-moment-in-time-chap/4000-230259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230269/","id":230269,"name":"Scared Straight, Pt. 1: Boyfriend In A Coma","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-3-scared-straight-pt-1-boyfriend-/4000-230269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230244/","id":230244,"name":"The Next Generation!; Snapshot: Remembrance!","site_detail_url":"https://comicvine.gamespot.com/dc-universe-legacies-4-the-next-generation-snapsho/4000-230244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228916/","id":228916,"name":"*Of Course* They Got Caught.","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-7-of-course-they-go/4000-228916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230322/","id":230322,"name":"Yeah, It's On!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-3-yeah-its-on/4000-230322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231575/","id":231575,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-208/4000-231575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231702/","id":231702,"name":"No Escape, Part 4; Welcome Home, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-609-no-escape-part-4-welcome-home-/4000-231702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232785/","id":232785,"name":"The Trophy Hunters, Part 3","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-3-the-trophy/4000-232785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233834/","id":233834,"name":"One Moment in Time Chapter Four: Something Blue","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-641-one-moment-in-time-chap/4000-233834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234075/","id":234075,"name":"Main Street Mangle","site_detail_url":"https://comicvine.gamespot.com/life-with-archie-2-main-street-mangle/4000-234075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237404/","id":237404,"name":"","site_detail_url":"https://comicvine.gamespot.com/valhalla-cindermane-1/4000-237404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238082/","id":238082,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming-revelations-1-hctpb/4000-238082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237403/","id":237403,"name":"Operation: Wonder From Down Under! Part 1 of 4; Rico's Remedy; Petey the Pestilence! Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-penguins-of-madagascar-1-operation-wonder-from/4000-237403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238572/","id":238572,"name":"Fragments","site_detail_url":"https://comicvine.gamespot.com/angel-vs-frankenstein-ii-1-fragments/4000-238572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239134/","id":239134,"name":"Badfellas","site_detail_url":"https://comicvine.gamespot.com/turf-3-badfellas/4000-239134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239296/","id":239296,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-babies-classic-1-volume-one/4000-239296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240131/","id":240131,"name":"Crime and Punishment","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-crime-and-punishment-1-cr/4000-240131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241087/","id":241087,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/doomwar-1-hc/4000-241087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241158/","id":241158,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/peter-parker-1-tpb/4000-241158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237145/","id":237145,"name":"Believe, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-47-believe-conclusion/4000-237145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243643/","id":243643,"name":"The Head of the Snake, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-boondock-saints-in-nomine-patris-volume-2-1-th/4000-243643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327589/","id":327589,"name":"L'orizzonte degli eventi","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-311-lorizzonte-degli-eventi/4000-327589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332680/","id":332680,"name":"American Museum","site_detail_url":"https://comicvine.gamespot.com/dampyr-127-american-museum/4000-332680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236692/","id":236692,"name":"Cosmic Wheels in Motion","site_detail_url":"https://comicvine.gamespot.com/image-firsts-godland-1-cosmic-wheels-in-motion/4000-236692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356993/","id":356993,"name":"In New York","site_detail_url":"https://comicvine.gamespot.com/spirou-fantasio-2-in-new-york/4000-356993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231595/","id":231595,"name":"Only the Good Die Young","site_detail_url":"https://comicvine.gamespot.com/avengers-4-only-the-good-die-young/4000-231595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241089/","id":241089,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-1-hctpb/4000-241089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239341/","id":239341,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-what-in-samhain-just-happened-1/4000-239341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275558/","id":275558,"name":"Der Fabelhafte Wilde Westen","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-5-der-fabelhafte-wilde-westen/4000-275558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619042/","id":619042,"name":"Retrouvailles","site_detail_url":"https://comicvine.gamespot.com/uchronie-s-new-york-3-retrouvailles/4000-619042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223400/","id":223400,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/shadowland-1-chapter-1/4000-223400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223382/","id":223382,"name":"Now, Not Tomorrow, Part 2","site_detail_url":"https://comicvine.gamespot.com/young-allies-2-now-not-tomorrow-part-2/4000-223382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223427/","id":223427,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/steve-rogers-super-soldier-1-rebirth/4000-223427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225780/","id":225780,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-heroes-3/4000-225780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224831/","id":224831,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-4/4000-224831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226877/","id":226877,"name":"Collateral Damage","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-5-collateral-damage/4000-226877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227711/","id":227711,"name":"Doomwar, Conclusion","site_detail_url":"https://comicvine.gamespot.com/doomwar-6-doomwar-conclusion/4000-227711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227335/","id":227335,"name":"Identity Theft, Parts 1 and 2","site_detail_url":"https://comicvine.gamespot.com/peter-parker-5-identity-theft-parts-1-and-2/4000-227335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225901/","id":225901,"name":"The Revolution Will Not Be Televised","site_detail_url":"https://comicvine.gamespot.com/lady-deadpool-1-the-revolution-will-not-be-televis/4000-225901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232983/","id":232983,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-232983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236006/","id":236006,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-fever-1-tpb/4000-236006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237420/","id":237420,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/new-avengers-luke-cage-town-without-pity-1-tpb/4000-237420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237576/","id":237576,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/girl-comics-1-hc-tpb/4000-237576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233083/","id":233083,"name":"Contact","site_detail_url":"https://comicvine.gamespot.com/the-scourge-1-contact/4000-233083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236785/","id":236785,"name":"","site_detail_url":"https://comicvine.gamespot.com/clint-2/4000-236785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266867/","id":266867,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-black-adam-and-isis-1-h/4000-266867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224825/","id":224825,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/world-war-hulks-spider-man-vs-thor-1-part-1/4000-224825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227103/","id":227103,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/world-war-hulks-spider-man-vs-thor-2-part-2/4000-227103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317921/","id":317921,"name":"Volume Thirteen","site_detail_url":"https://comicvine.gamespot.com/invincible-growing-pains-1-volume-thirteen/4000-317921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226893/","id":226893,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-mystery-1/4000-226893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224829/","id":224829,"name":"Caught Between Killers!; Li'l Benjy The Spectacular Spider-Baby in Getting Ahead!; The Razored Path!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-3-caught-between-killers-l/4000-224829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226974/","id":226974,"name":"Damage Control","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-11-damage-control/4000-226974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300040/","id":300040,"name":"¡Justicia Ciega!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-18-justicia-ciega/4000-300040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575020/","id":575020,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-oscura-1/4000-575020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236300/","id":236300,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming-1-hc/4000-236300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261470/","id":261470,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-amazing-1-tpb/4000-261470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260227/","id":260227,"name":"Fugitives","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-7-fugitives/4000-260227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334840/","id":334840,"name":"Il Guanto dell'Infinito","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-80-il-guanto-dellinfinit/4000-334840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226881/","id":226881,"name":"Extra-Sensory, Chapter 2: Dirty Little Mouth","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-25-extra-sensory-chapter-2-dirty-lit/4000-226881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237421/","id":237421,"name":"Civil War: Avengers","site_detail_url":"https://comicvine.gamespot.com/civil-war-avengers-1-civil-war-avengers/4000-237421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235302/","id":235302,"name":"Siege: Mighty Avengers","site_detail_url":"https://comicvine.gamespot.com/siege-mighty-avengers-1-siege-mighty-avengers/4000-235302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236460/","id":236460,"name":"Spider-Man: The Gauntlet: Lizard","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-gauntlet-lizard-1-spider-man-the-ga/4000-236460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264613/","id":264613,"name":"Volume Twelve","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-12-volum/4000-264613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246608/","id":246608,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716084/","id":716084,"name":"Ultron Reborn","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-208-ultron-rebor/4000-716084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226858/","id":226858,"name":"When Everything's Lost, The Battle is Won...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-581-when-everything-s-lost-the-batt/4000-226858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235301/","id":235301,"name":"Siege: Dark Avengers","site_detail_url":"https://comicvine.gamespot.com/siege-dark-avengers-1-siege-dark-avengers/4000-235301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238586/","id":238586,"name":"Invincible Iron Man: Stark Resilient, Book One","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-stark-resilient-book-one-1-inv/4000-238586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232065/","id":232065,"name":"","site_detail_url":"https://comicvine.gamespot.com/clint-1/4000-232065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248779/","id":248779,"name":"The Skrull God!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-13-the-skrull-god/4000-248779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218193/","id":218193,"name":"Absolute Promethea Vol. 2","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea-2-absolute-promethea-vol-2/4000-218193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223277/","id":223277,"name":"The Grim Hunt, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-636-the-grim-hunt-chapter-t/4000-223277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223278/","id":223278,"name":"Ghosts, Part 2 - Rumors of Death","site_detail_url":"https://comicvine.gamespot.com/hawkeye-mockingbird-2-ghosts-part-2-rumors-of-deat/4000-223278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223380/","id":223380,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-the-childrens-crusade-1/4000-223380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223500/","id":223500,"name":"Crisis on Campus","site_detail_url":"https://comicvine.gamespot.com/spider-manfantastic-four-1-crisis-on-campus/4000-223500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224512/","id":224512,"name":"A Night on the Town !","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-3-a-night-on-the-town/4000-224512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224565/","id":224565,"name":"The Grim Hunt, Conclusion; Hunting the Hunter Part Four: Burning Bright","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-637-the-grim-hunt-conclusio/4000-224565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224577/","id":224577,"name":"Grand Mal Tokyo Moron Party","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-28-grand-mal-tokyo-moron-p/4000-224577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224581/","id":224581,"name":"Tainted Love: Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-12-tainted-love-part-4-of-6/4000-224581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224623/","id":224623,"name":"Sons of Brainiac, Part 1: Brainchild","site_detail_url":"https://comicvine.gamespot.com/rebels-18-sons-of-brainiac-part-1-brainchild/4000-224623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224654/","id":224654,"name":"The Gang's All Here","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-5-the-gangs-all-her/4000-224654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224661/","id":224661,"name":"Collective Punishment, Part 1: Five Hours Under Fire","site_detail_url":"https://comicvine.gamespot.com/dmz-55-collective-punishment-part-1-five-hours-und/4000-224661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224928/","id":224928,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-crusaders-1/4000-224928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225675/","id":225675,"name":"One Moment In Time Chapter One: Something Old","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-638-one-moment-in-time-chap/4000-225675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225699/","id":225699,"name":"Lost Souls","site_detail_url":"https://comicvine.gamespot.com/x-factor-207-lost-souls/4000-225699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225700/","id":225700,"name":"Thor Reborn, Chapter 3: Lies","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-3-thor-reborn-chapter-3-lie/4000-225700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225782/","id":225782,"name":"All Eyes on Cage!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-2-all-eyes-on-cage/4000-225782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225850/","id":225850,"name":"Bomb Squad: Part One","site_detail_url":"https://comicvine.gamespot.com/power-girl-14-bomb-squad-part-one/4000-225850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225674/","id":225674,"name":"Menace from Beyond Time","site_detail_url":"https://comicvine.gamespot.com/avengers-3-menace-from-beyond-time/4000-225674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226875/","id":226875,"name":"X Marks The Spot","site_detail_url":"https://comicvine.gamespot.com/deadpool-team-up-891-x-marks-the-spot/4000-226875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227102/","id":227102,"name":"The Trophy Hunters, Part 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-2-the-trophy/4000-227102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226978/","id":226978,"name":"Bullseye, Part Four","site_detail_url":"https://comicvine.gamespot.com/punishermax-9-bullseye-part-four/4000-226978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226907/","id":226907,"name":"Tomorrow Dies Today, Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-15-tomorrow-dies-today-conclusi/4000-226907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227715/","id":227715,"name":"One Moment in Time Chapter Two: Something New","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-639-one-moment-in-time-chap/4000-227715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227787/","id":227787,"name":"No Escape, Part 3; Welcome Home, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-608-no-escape-part-3-welcome-home-/4000-227787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226905/","id":226905,"name":"Splitting The Atom","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-6-splitting-the-ato/4000-226905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230929/","id":230929,"name":"The Unholy Resurrection of Leonardo Da Vinci","site_detail_url":"https://comicvine.gamespot.com/shield-directors-cut-1-the-unholy-resurrection-of-/4000-230929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226885/","id":226885,"name":"Past Imperfect, Present Tense","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-601-past-imperfect-present-tense/4000-226885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232735/","id":232735,"name":"Killer Commute","site_detail_url":"https://comicvine.gamespot.com/iron-man-killer-commute-1-killer-commute/4000-232735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232417/","id":232417,"name":"Believe, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-46-believe-part-three/4000-232417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233990/","id":233990,"name":"Resurrection, Part Four","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-4-resurrection-part-four/4000-233990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234469/","id":234469,"name":"Great Glass Elevator","site_detail_url":"https://comicvine.gamespot.com/the-boys-highland-laddie-2-great-glass-elevator/4000-234469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235675/","id":235675,"name":"","site_detail_url":"https://comicvine.gamespot.com/casper-and-the-spectrals-3/4000-235675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233768/","id":233768,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-199/4000-233768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315784/","id":315784,"name":"Memorie del passato","site_detail_url":"https://comicvine.gamespot.com/nathan-never-231-memorie-del-passato/4000-315784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332679/","id":332679,"name":"La stanza perduta","site_detail_url":"https://comicvine.gamespot.com/dampyr-126-la-stanza-perduta/4000-332679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233945/","id":233945,"name":"","site_detail_url":"https://comicvine.gamespot.com/pantheon-5/4000-233945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233511/","id":233511,"name":"New Avengers: Siege","site_detail_url":"https://comicvine.gamespot.com/new-avengers-siege-1-new-avengers-siege/4000-233511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225849/","id":225849,"name":"A Plague Of One","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-5-5-a-plague-of-one/4000-225849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224834/","id":224834,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-man-noir-4/4000-224834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230351/","id":230351,"name":"Vice","site_detail_url":"https://comicvine.gamespot.com/ex-machina-50-vice/4000-230351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218425/","id":218425,"name":"Now, Not Tommorow Part 1: No Turning Back","site_detail_url":"https://comicvine.gamespot.com/young-allies-1-now-not-tommorow-part-1-no-turning-/4000-218425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219503/","id":219503,"name":"Pawns","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-4-pawns/4000-219503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218554/","id":218554,"name":"Collision","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-9-collision/4000-218554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220723/","id":220723,"name":"Spider-Girls Gone Wild! Part Four","site_detail_url":"https://comicvine.gamespot.com/peter-parker-4-spider-girls-gone-wild-part-four/4000-220723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219600/","id":219600,"name":"... Who Neds Gravity?; Heroic Rage; The Young Masters; Semper Fidelis","site_detail_url":"https://comicvine.gamespot.com/age-of-heroes-2-who-neds-gravity-heroic-rage-the-y/4000-219600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221150/","id":221150,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-3/4000-221150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221790/","id":221790,"name":"Wonder Woman Can Save the World; Valedictorian; Fuzzy Logic; Firepower; The Sensational Wonder Woman; Odyssey, Prologue: Couture Shock","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-600-wonder-woman-can-save-the-world-v/4000-221790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221024/","id":221024,"name":"War of the Iron Men, Part Three","site_detail_url":"https://comicvine.gamespot.com/iron-man-legacy-3-war-of-the-iron-men-part-three/4000-221024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231153/","id":231153,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/x-factor-second-coming-1-volume-10/4000-231153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227347/","id":227347,"name":"Zero to Sixty!","site_detail_url":"https://comicvine.gamespot.com/the-scourge-0-zero-to-sixty/4000-227347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218882/","id":218882,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-3/4000-218882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234872/","id":234872,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/moon-knight-countdown-to-dark-1-hc/4000-234872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217880/","id":217880,"name":"In the Shadow of Death","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-2-in-the-shadow-of-death/4000-217880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224898/","id":224898,"name":"The Seventh Day","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-10-the-seventh-day/4000-224898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574950/","id":574950,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-tipos-duros-1/4000-574950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237111/","id":237111,"name":"Part 2: The Shadow Out of America","site_detail_url":"https://comicvine.gamespot.com/alan-moores-neonomicon-2-part-2-the-shadow-out-of-/4000-237111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472872/","id":472872,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-40/4000-472872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221676/","id":221676,"name":"Extra-Sensory, Chapter 1: None So Blind","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-24-extra-sensory-chapter-1-none-so-b/4000-221676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716083/","id":716083,"name":"Octavius Max","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-207-octavius-max/4000-716083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220729/","id":220729,"name":"Who is the Red Hulk?","site_detail_url":"https://comicvine.gamespot.com/hulk-23-who-is-the-red-hulk/4000-220729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389709/","id":389709,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-18/4000-389709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418057/","id":418057,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-1-tpb/4000-418057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231136/","id":231136,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/siege-avengers-the-initiative-1-hc-tpb/4000-231136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247236/","id":247236,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/chew-the-omnivore-edition-1-vol-1/4000-247236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217098/","id":217098,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/brightest-day-3-revelations/4000-217098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231133/","id":231133,"name":"Spider-Man: The Gauntlet: Juggernaut","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-gauntlet-juggernaut-hardcover-1-spi/4000-231133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716082/","id":716082,"name":"Mean Streets","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-206-mean-streets/4000-716082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217486/","id":217486,"name":"Ghosts, Part 1","site_detail_url":"https://comicvine.gamespot.com/hawkeye-mockingbird-1-ghosts-part-1/4000-217486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217935/","id":217935,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-franken-castle-birth-of-the-monster-1/4000-217935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217770/","id":217770,"name":"Missing Pieces","site_detail_url":"https://comicvine.gamespot.com/franken-castle-17-missing-pieces/4000-217770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218355/","id":218355,"name":"Tainted Love: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-11-tainted-love-part-3/4000-218355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218382/","id":218382,"name":"Dreams Never End","site_detail_url":"https://comicvine.gamespot.com/heralds-2-dreams-never-end/4000-218382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218588/","id":218588,"name":"No Escape, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-606-no-escape-part-1/4000-218588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218553/","id":218553,"name":"Valhalla Blues","site_detail_url":"https://comicvine.gamespot.com/heroic-age-prince-of-power-2-valhalla-blues/4000-218553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218269/","id":218269,"name":"Bullseye, Part Three","site_detail_url":"https://comicvine.gamespot.com/punishermax-8-bullseye-part-three/4000-218269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217715/","id":217715,"name":"Damage; The Inheritence, Part 6: Paris, City of Fights!","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-7-damage-the-inheritence-part-6-pari/4000-217715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219338/","id":219338,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-6-special-edition-1/4000-219338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219556/","id":219556,"name":"The Grim Hunt, Chapter One; Hunting the Hunter, Part One: Adrift; Spidey Sundays","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-634-the-grim-hunt-chapter-o/4000-219556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219565/","id":219565,"name":"The Trophy Hunters, Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat-1-the-trophy/4000-219565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219558/","id":219558,"name":"Possession","site_detail_url":"https://comicvine.gamespot.com/new-avengers-1-possession/4000-219558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219568/","id":219568,"name":"M.I.A., Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-54-mia-conclusion/4000-219568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220583/","id":220583,"name":"The Grim Hunt, Chapter Two; Hunting the Hunter Part Two: A Prophecy","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-635-the-grim-hunt-chapter-t/4000-220583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220589/","id":220589,"name":"...What a Difference a Day Makes!","site_detail_url":"https://comicvine.gamespot.com/power-girl-13-what-a-difference-a-day-makes/4000-220589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220789/","id":220789,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-206/4000-220789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221825/","id":221825,"name":"The New Guardians, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/green-lantern-55-the-new-guardians-chapter-3/4000-221825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222040/","id":222040,"name":"I Don't Play Well With Others","site_detail_url":"https://comicvine.gamespot.com/the-web-10-i-dont-play-well-with-others/4000-222040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222132/","id":222132,"name":"No Escape, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-607-no-escape-part-2/4000-222132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222261/","id":222261,"name":"Six Weeks Later","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-2-six-weeks-later/4000-222261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222364/","id":222364,"name":"The Other Son","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-2-the-oth/4000-222364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220843/","id":220843,"name":"Tomorrow Dies Today, Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-14-tomorrow-dies-today-part-4/4000-220843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217682/","id":217682,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-spotlight-1/4000-217682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227689/","id":227689,"name":"Believe, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-45-believe-part-two/4000-227689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228231/","id":228231,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fall-of-the-hulks-the-savage-she-hulks-1-tpb/4000-228231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228992/","id":228992,"name":"The Demon Within","site_detail_url":"https://comicvine.gamespot.com/witchblade-137-the-demon-within/4000-228992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229162/","id":229162,"name":"Legacy, Part Four","site_detail_url":"https://comicvine.gamespot.com/the-astounding-wolf-man-24-legacy-part-four/4000-229162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230253/","id":230253,"name":"Chapter Three; Dart Triumphant","site_detail_url":"https://comicvine.gamespot.com/image-united-3-chapter-three-dart-triumphant/4000-230253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231154/","id":231154,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-devil-s-hand-1-tpb/4000-231154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231974/","id":231974,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/invaders-eve-of-destruction-1-tpb/4000-231974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231976/","id":231976,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-ultimate-collection-1-tpb/4000-231976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219561/","id":219561,"name":"The Name of the Rose, Part 3","site_detail_url":"https://comicvine.gamespot.com/black-widow-3-the-name-of-the-rose-part-3/4000-219561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232980/","id":232980,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-3-volume-t/4000-232980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227855/","id":227855,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-warriors-official-movie-adaptation-3/4000-227855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230550/","id":230550,"name":"Due Process","site_detail_url":"https://comicvine.gamespot.com/witchblade-due-process-1-due-process/4000-230550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234899/","id":234899,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-crossovers-1-hc/4000-234899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230800/","id":230800,"name":"Ghostwalk, Chapter One: Phantom Living","site_detail_url":"https://comicvine.gamespot.com/the-last-phantom-1-ghostwalk-chapter-one-phantom-l/4000-230800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251515/","id":251515,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-9-volume-9/4000-251515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226872/","id":226872,"name":"Hot Librarians! The First Ingredient in the Ultimate Jack of Fables Story!","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-46-hot-librarians-the-first-ingredi/4000-226872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218352/","id":218352,"name":"Permanent Record, Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-1-permanent-record-part-1/4000-218352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228971/","id":228971,"name":"","site_detail_url":"https://comicvine.gamespot.com/morning-glories-1/4000-228971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322823/","id":322823,"name":"War of Kings 4","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-64-war-of-kings-4/4000-322823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327603/","id":327603,"name":"Il carcere degli esseri impossibili","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-310-il-carcere-degli-esseri-impossi/4000-327603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230162/","id":230162,"name":"The Harbour at the World's End","site_detail_url":"https://comicvine.gamespot.com/the-boys-highland-laddie-1-the-harbour-at-the-worl/4000-230162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220585/","id":220585,"name":"Wonder Man Attacks?!!","site_detail_url":"https://comicvine.gamespot.com/avengers-2-wonder-man-attacks/4000-220585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219521/","id":219521,"name":"Beginning's End, Chapter Six","site_detail_url":"https://comicvine.gamespot.com/supernatural-beginning-s-end-6-beginning-s-end-cha/4000-219521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441727/","id":441727,"name":"","site_detail_url":"https://comicvine.gamespot.com/suske-en-wiske-pocket-20/4000-441727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218285/","id":218285,"name":"The Long Hard Fall of Hollywood Jack","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-1-special-edition-1-the-long-hard-f/4000-218285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227709/","id":227709,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-1-tpb/4000-227709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275544/","id":275544,"name":"Krieg Und Andere Kleinigkeiten","site_detail_url":"https://comicvine.gamespot.com/fables-12-krieg-und-andere-kleinigkeiten/4000-275544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217439/","id":217439,"name":"Response Time Zero Cult","site_detail_url":"https://comicvine.gamespot.com/avengers-the-origin-3-response-time-zero-cult/4000-217439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355521/","id":355521,"name":"Crouching Spider/Hidden Army","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-24-crouching-spiderhidden-army/4000-355521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213410/","id":213410,"name":"Gone But Not Forgotten","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-1-gone-but-not-forg/4000-213410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213493/","id":213493,"name":"Whatever Happened to the Hood?","site_detail_url":"https://comicvine.gamespot.com/new-avengers-finale-1-whatever-happened-to-the-hoo/4000-213493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213814/","id":213814,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-2/4000-213814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214827/","id":214827,"name":"Dogged Pursuit; Good To Be Lucky; Doom ♥'s Sue; Do You Ever?; Rondeau","site_detail_url":"https://comicvine.gamespot.com/girl-comics-2-dogged-pursuit-good-to-be-lucky-doom/4000-214827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214878/","id":214878,"name":"Galacta [or, \"The World-Eater's Daughter\"]","site_detail_url":"https://comicvine.gamespot.com/galacta-daughter-of-galactus-1-galacta-or-the-worl/4000-214878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216227/","id":216227,"name":"Doomwar, Part 4","site_detail_url":"https://comicvine.gamespot.com/doomwar-4-doomwar-part-4/4000-216227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216451/","id":216451,"name":"Spider-Girls Gone Wild! Part Three","site_detail_url":"https://comicvine.gamespot.com/peter-parker-3-spider-girls-gone-wild-part-three/4000-216451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213629/","id":213629,"name":"The Curse Of The Yellow Claw; Desperate Measures; One Night Only; Worst There Is; Birthday Boy; Puny Little Man; Hunger","site_detail_url":"https://comicvine.gamespot.com/wolverine-900-the-curse-of-the-yellow-claw-despera/4000-213629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224540/","id":224540,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-vs-1-hctpb/4000-224540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213843/","id":213843,"name":"Unexpected Host","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-3-unexpected-host/4000-213843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232050/","id":232050,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-team-up-good-buddies-1-volume-1/4000-232050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212049/","id":212049,"name":"The Root Of All Annoyance; Memories; All the World's A Stage","site_detail_url":"https://comicvine.gamespot.com/many-loves-of-the-amazing-spider-man-1-the-root-of/4000-212049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231170/","id":231170,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-powerless-1-tpb/4000-231170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216212/","id":216212,"name":"The Little Things!","site_detail_url":"https://comicvine.gamespot.com/power-girl-12-the-little-things/4000-216212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225690/","id":225690,"name":"Part 1: At the Mansions of Madness","site_detail_url":"https://comicvine.gamespot.com/alan-moores-neonomicon-1-part-1-at-the-mansions-of/4000-225690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224832/","id":224832,"name":"Volume 4: Air","site_detail_url":"https://comicvine.gamespot.com/the-sword-4-volume-4-air/4000-224832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220761/","id":220761,"name":"Punch Drunk","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-9-punch-drunk/4000-220761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551712/","id":551712,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-armor-wars-1/4000-551712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295876/","id":295876,"name":"¡Spiderman y los 4 Fantásticos!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-17-spiderman-y-los-4-fant/4000-295876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295857/","id":295857,"name":"Cara a cara con el clon","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-7-cara-a-cara-con-el/4000-295857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574751/","id":574751,"name":"","site_detail_url":"https://comicvine.gamespot.com/reino-de-reyes-guardia-imperial-1/4000-574751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574821/","id":574821,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-senor-negativo-1/4000-574821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575108/","id":575108,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-spiderman-oscuro-2/4000-575108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334517/","id":334517,"name":"The City of Shifting Waters","site_detail_url":"https://comicvine.gamespot.com/valerian-and-laureline-1-the-city-of-shifting-wate/4000-334517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228405/","id":228405,"name":"Secret Warriors: Wake the Beast","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-wake-the-beast-1-secret-warriors-w/4000-228405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229215/","id":229215,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-birth-of-the-super-heroes-1-hc/4000-229215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260225/","id":260225,"name":"Set Up","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-6-set-up/4000-260225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216207/","id":216207,"name":"Broken House of Cards, Chapter Eight: Yield & Scream","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-23-broken-house-of-cards-chapter-eig/4000-216207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228403/","id":228403,"name":"Captain America: Two Americas","site_detail_url":"https://comicvine.gamespot.com/captain-america-two-americas-1-captain-america-two/4000-228403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230949/","id":230949,"name":"Siege: Embedded","site_detail_url":"https://comicvine.gamespot.com/siege-embedded-1-siege-embedded/4000-230949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231806/","id":231806,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-search-for-she-hulk-1-hc-tpb/4000-231806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232978/","id":232978,"name":"","site_detail_url":"https://comicvine.gamespot.com/realm-of-kings-1/4000-232978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256642/","id":256642,"name":"The FALL Of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-20-the-fall-of-shield/4000-256642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297093/","id":297093,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-16/4000-297093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225165/","id":225165,"name":"Invincible Iron Man: Stark Disassembled","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-stark-disassembled-1-invincibl/4000-225165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228286/","id":228286,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/young-avengers-ultimate-collection-1-tpb/4000-228286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231116/","id":231116,"name":"Siege","site_detail_url":"https://comicvine.gamespot.com/siege-1-siege/4000-231116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716081/","id":716081,"name":"Sandman Strikes!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-205-sandman-stri/4000-716081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224982/","id":224982,"name":"Vengeance of Moon Knight: Shock and Awe","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-moon-knight-shock-and-awe-1-vengeance/4000-224982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297092/","id":297092,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-15/4000-297092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216845/","id":216845,"name":"","site_detail_url":"https://comicvine.gamespot.com/princess-lucinda-0/4000-216845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211930/","id":211930,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-hellbound-1-part-1/4000-211930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211974/","id":211974,"name":"Shed Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-630-shed-part-one/4000-211974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212014/","id":212014,"name":"Another Fine Mess, Part One","site_detail_url":"https://comicvine.gamespot.com/astonishing-spider-man-wolverine-1-another-fine-me/4000-212014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212094/","id":212094,"name":"Thor Reborn, Chapter 2: Lost","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-2-thor-reborn-chapter-2-los/4000-212094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213169/","id":213169,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/hellblazer-1-special-edition-1-hunger/4000-213169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213449/","id":213449,"name":"The Fallen","site_detail_url":"https://comicvine.gamespot.com/siege-4-the-fallen/4000-213449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213457/","id":213457,"name":"Shed Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-631-shed-part-two/4000-213457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213458/","id":213458,"name":"Siege: Embedded, Part Four","site_detail_url":"https://comicvine.gamespot.com/siege-embedded-4-siege-embedded-part-four/4000-213458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213496/","id":213496,"name":"Tainted Love: Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-10-tainted-love-part-2-of-6/4000-213496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213510/","id":213510,"name":"How the Dark Have Fallen","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-16-how-the-dark-have-fallen/4000-213510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213173/","id":213173,"name":"Bullseye, Part Two","site_detail_url":"https://comicvine.gamespot.com/punishermax-7-bullseye-part-two/4000-213173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213616/","id":213616,"name":"Part Eight","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-8-part-eight/4000-213616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213495/","id":213495,"name":"Blasphemy Can Be Fun","site_detail_url":"https://comicvine.gamespot.com/heroic-age-prince-of-power-1-blasphemy-can-be-fun/4000-213495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213167/","id":213167,"name":"M.I.A., Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-53-mia-part-3/4000-213167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214732/","id":214732,"name":"Visionary Men","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-26-visionary-men/4000-214732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214733/","id":214733,"name":"Crime & Punishment, Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-8-crime-punishment-part-2-of-6/4000-214733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214815/","id":214815,"name":"Admissions; Heroes For The Ages; Coppelia; Big Trouble In Little Chinatown; Top Dog","site_detail_url":"https://comicvine.gamespot.com/enter-the-heroic-age-1-admissions-heroes-for-the-a/4000-214815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214810/","id":214810,"name":"Next Avengers: Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-1-next-avengers-part-1/4000-214810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214935/","id":214935,"name":"Patriot Act","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-1-patriot/4000-214935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214964/","id":214964,"name":"Pro-Life, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-49-pro-life-conclusion/4000-214964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214767/","id":214767,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-205/4000-214767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214880/","id":214880,"name":"","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics-1/4000-214880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216005/","id":216005,"name":"Shed Part Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-632-shed-part-three/4000-216005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216101/","id":216101,"name":"The New Guardians, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/green-lantern-54-the-new-guardians-chapter-2/4000-216101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216211/","id":216211,"name":"Full Circle","site_detail_url":"https://comicvine.gamespot.com/the-mighty-crusaders-special-1-full-circle/4000-216211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216695/","id":216695,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy-4-part-four/4000-216695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216238/","id":216238,"name":"Max'ed Out","site_detail_url":"https://comicvine.gamespot.com/justice-league-generation-lost-2-maxed-out/4000-216238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216275/","id":216275,"name":"Tomorrow Dies Today, Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-13-tomorrow-dies-today-part-3/4000-216275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219553/","id":219553,"name":"Shed Part Four","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-633-shed-part-four/4000-219553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223261/","id":223261,"name":"Believe, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-44-believe-part-one/4000-223261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224562/","id":224562,"name":"Blackest Night","site_detail_url":"https://comicvine.gamespot.com/blackest-night-1-blackest-night/4000-224562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213800/","id":213800,"name":"Daredevil: Cage Match","site_detail_url":"https://comicvine.gamespot.com/daredevil-cage-match-1-daredevil-cage-match/4000-213800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213514/","id":213514,"name":"The Name of the Rose, Part 2","site_detail_url":"https://comicvine.gamespot.com/black-widow-2-the-name-of-the-rose-part-2/4000-213514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244430/","id":244430,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226216/","id":226216,"name":"Resurrection, Part Three","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-3-resurrection-part-three/4000-226216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226979/","id":226979,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-198/4000-226979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223452/","id":223452,"name":"5 of 6","site_detail_url":"https://comicvine.gamespot.com/martin-mystery-5-5-of-6/4000-223452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223473/","id":223473,"name":"Book Eleven: Nadja","site_detail_url":"https://comicvine.gamespot.com/the-secret-history-11-book-eleven-nadja/4000-223473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223462/","id":223462,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-the-beauty-of-decay-1-vol-4/4000-223462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249037/","id":249037,"name":"Death To The Skrulls!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6-death-to-the-skrulls/4000-249037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425190/","id":425190,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-s-siege-1-tpb/4000-425190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215297/","id":215297,"name":"Beginning's End, Chapter Five","site_detail_url":"https://comicvine.gamespot.com/supernatural-beginning-s-end-5-beginning-s-end-cha/4000-215297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355520/","id":355520,"name":"I Predict a Riot!/Growing Pains","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-23-i-predict-a-riotgrowing-pains/4000-355520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201709/","id":201709,"name":"Whatever A Spider Can, Part Three","site_detail_url":"https://comicvine.gamespot.com/deadpool-21-whatever-a-spider-can-part-three/4000-201709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204514/","id":204514,"name":"Chapter One: The Unholy Resurrection of Leonardo da Vinci","site_detail_url":"https://comicvine.gamespot.com/shield-1-chapter-one-the-unholy-resurrection-of-le/4000-204514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204631/","id":204631,"name":"Game Face; Nobody Dies Forever; Ram; Heroic Efforts; Object of Desire; Stupid Champagne Room!","site_detail_url":"https://comicvine.gamespot.com/world-war-hulks-1-game-face-nobody-dies-forever-ra/4000-204631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204625/","id":204625,"name":"Part One: Insecticide","site_detail_url":"https://comicvine.gamespot.com/spider-man-fever-1-part-one-insecticide/4000-204625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206641/","id":206641,"name":"Diversion","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-2-diversion/4000-206641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208663/","id":208663,"name":"Earth's Mightiest Super Heroes, Pt. 4; My Dinner With Gorilla Man","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-atlas-4-earths-mightiest-super-heroes-/4000-208663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207760/","id":207760,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-origin-of-the-hunter-1/4000-207760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211117/","id":211117,"name":"Spider-Girls Gone Wild! Part Two","site_detail_url":"https://comicvine.gamespot.com/peter-parker-2-spider-girls-gone-wild-part-two/4000-211117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221765/","id":221765,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-1-x-necrosha/4000-221765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222750/","id":222750,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face-1-hctpb/4000-222750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224975/","id":224975,"name":"Next Generation","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-next-generation-1-next-ge/4000-224975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231809/","id":231809,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vision-and-the-scarlet-witch-a-year-in-th/4000-231809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232051/","id":232051,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-1-tpb/4000-232051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232959/","id":232959,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-warriors-1-tpb/4000-232959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237400/","id":237400,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/power-girl-aliens-and-apes-1-volume-2/4000-237400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240156/","id":240156,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/hulk-vs-x-force-1-volume-4/4000-240156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242798/","id":242798,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-2-volume-2/4000-242798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244342/","id":244342,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-omnibus-by-ed-brubaker-2-volume-two/4000-244342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258714/","id":258714,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/thor-by-dan-jurgens-and-john-romita-jr-3-volume-3/4000-258714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277102/","id":277102,"name":"Kingpin","site_detail_url":"https://comicvine.gamespot.com/punishermax-kingpin-1-kingpin/4000-277102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211210/","id":211210,"name":"No Laughing Matter","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-8-no-laughing-matter/4000-211210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298046/","id":298046,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-1/4000-298046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574949/","id":574949,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-legion-letal-1/4000-574949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575107/","id":575107,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-spiderman-oscuro-1/4000-575107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210966/","id":210966,"name":"Broken House of Cards, Chapter Seven: Harkens Bizarre","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-22-broken-house-of-cards-chapter-sev/4000-210966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223684/","id":223684,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-2-book-two/4000-223684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232965/","id":232965,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-5-volume-five/4000-232965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246607/","id":246607,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297091/","id":297091,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-14/4000-297091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716080/","id":716080,"name":"Smash & Grab","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-204-smash-and-gr/4000-716080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222242/","id":222242,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/cable-homecoming-1-volume-4/4000-222242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222243/","id":222243,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-monkey-business-1-volume-4/4000-222243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210635/","id":210635,"name":"Prime Elements 4: The Cult of Negative Zone","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-578-prime-elements-4-the-cult-of-ne/4000-210635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222692/","id":222692,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/atlas-marvel-boy-1-tpb/4000-222692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251505/","id":251505,"name":"Ms Marvel vs. The Super-Skrull","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-9-ms-marvel-vs-the-supe/4000-251505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297090/","id":297090,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13/4000-297090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221143/","id":221143,"name":"Resurrection, Part Two","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-2-resurrection-part-two/4000-221143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716079/","id":716079,"name":"Armour-Geddon","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-203-armour-geddo/4000-716079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204632/","id":204632,"name":"Town Without Pity","site_detail_url":"https://comicvine.gamespot.com/new-avengers-luke-cage-1-town-without-pity/4000-204632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206568/","id":206568,"name":"Carpe Diem","site_detail_url":"https://comicvine.gamespot.com/brightest-day-0-carpe-diem/4000-206568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206852/","id":206852,"name":"Bullseye, Part One","site_detail_url":"https://comicvine.gamespot.com/punishermax-6-bullseye-part-one/4000-206852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206817/","id":206817,"name":"A Dame To Get Killed For","site_detail_url":"https://comicvine.gamespot.com/deadpool-team-up-894-a-dame-to-get-killed-for/4000-206817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207262/","id":207262,"name":"The Barbara Allen Incident, Chapter One of Rose Red","site_detail_url":"https://comicvine.gamespot.com/fables-94-the-barbara-allen-incident-chapter-one-o/4000-207262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207345/","id":207345,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-3-part-three/4000-207345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207756/","id":207756,"name":"My Enemy, My Friend","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-1-my-enemy-my-frien/4000-207756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207261/","id":207261,"name":"M.I.A., Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-52-mia-part-2/4000-207261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208548/","id":208548,"name":"Vengeance is Mine","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-628-vengeance-is-mine/4000-208548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206691/","id":206691,"name":"","site_detail_url":"https://comicvine.gamespot.com/ex-machina-1-special-edition-1/4000-206691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208686/","id":208686,"name":"Terra Alert!","site_detail_url":"https://comicvine.gamespot.com/power-girl-11-terra-alert/4000-208686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208685/","id":208685,"name":"Tainted Love: Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-9-tainted-love-part-1-of-6/4000-208685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208808/","id":208808,"name":"Breakout!, Part One","site_detail_url":"https://comicvine.gamespot.com/new-avengers-mgc-1-breakout-part-one/4000-208808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210231/","id":210231,"name":"Second Coming: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/x-force-26-second-coming-chapter-5/4000-210231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210220/","id":210220,"name":"Crime & Punishment, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-7-crime-punishment-part-1/4000-210220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210222/","id":210222,"name":"With Greater Power","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-629-with-greater-power/4000-210222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210216/","id":210216,"name":"A New Dawn...","site_detail_url":"https://comicvine.gamespot.com/new-avengers-64-a-new-dawn/4000-210216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210224/","id":210224,"name":"Hammer Girls","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-25-hammer-girls/4000-210224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211684/","id":211684,"name":"Civil War 1","site_detail_url":"https://comicvine.gamespot.com/civil-war-mgc-1-civil-war-1/4000-211684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213072/","id":213072,"name":"The Hammer Falls, Conclusion","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-35-the-hammer-falls-conclu/4000-213072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217363/","id":217363,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/dmz-hearts-and-minds-1-volume-8/4000-217363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218353/","id":218353,"name":"","site_detail_url":"https://comicvine.gamespot.com/cowboy-ninja-viking-6/4000-218353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218257/","id":218257,"name":"Part Three: The Secret Inheritance of Francis Merrill","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-the-writer-3-part-three-the-secret-/4000-218257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204463/","id":204463,"name":"Tomorrow Dies Today, Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-12-tomorrow-dies-today-part-2/4000-204463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220590/","id":220590,"name":"Part Four: The Last Chapter","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-the-writer-4-part-four-the-last-cha/4000-220590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222980/","id":222980,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii-1-volume-2/4000-222980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223844/","id":223844,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-ultimate-collection-1-tpb/4000-223844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225476/","id":225476,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/night-of-the-living-dead-1-tpb/4000-225476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206748/","id":206748,"name":"The Name of the Rose, Part 1","site_detail_url":"https://comicvine.gamespot.com/black-widow-1-the-name-of-the-rose-part-1/4000-206748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222282/","id":222282,"name":"","site_detail_url":"https://comicvine.gamespot.com/casper-and-the-spectrals-2/4000-222282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258719/","id":258719,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-chronicles-1-volume-1/4000-258719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219970/","id":219970,"name":"","site_detail_url":"https://comicvine.gamespot.com/four-eyes-4/4000-219970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206839/","id":206839,"name":"The Lord of Lightning: Darkness Falls; Worst Nightmare, Part One: The Wounded","site_detail_url":"https://comicvine.gamespot.com/doc-savage-1-the-lord-of-lightning-darkness-falls-/4000-206839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219517/","id":219517,"name":"The Innocents, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-43-the-innocents-conclusion/4000-219517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221124/","id":221124,"name":"","site_detail_url":"https://comicvine.gamespot.com/bullet-to-the-head-1/4000-221124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301846/","id":301846,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-one/4000-301846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260221/","id":260221,"name":"Cursed","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-5-cursed/4000-260221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342690/","id":342690,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-deluxe-edition-1-volume-1/4000-342690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204513/","id":204513,"name":"The Necessary Evil","site_detail_url":"https://comicvine.gamespot.com/avengers-the-origin-1-the-necessary-evil/4000-204513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322460/","id":322460,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-darkness-accursed-3-volume-3/4000-322460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209445/","id":209445,"name":"Beginning's End, Chapter Four","site_detail_url":"https://comicvine.gamespot.com/supernatural-beginning-s-end-4-beginning-s-end-cha/4000-209445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443688/","id":443688,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-presents-jackpot-1-tpb/4000-443688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208661/","id":208661,"name":"2nd Coming - Revelations","site_detail_url":"https://comicvine.gamespot.com/x-factor-204-2nd-coming-revelations/4000-208661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204643/","id":204643,"name":"Part Six: Ever After","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-6-part-six-eve/4000-204643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208515/","id":208515,"name":"The Next Generation, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-6-the-next-generation-con/4000-208515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207829/","id":207829,"name":"Over the Boardwalk; It's a Mystery!","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-155-over-the-boardwalk-its-a-mystery/4000-207829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206854/","id":206854,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-noir-1-part-1/4000-206854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218348/","id":218348,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/blacksad-1-hc/4000-218348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198873/","id":198873,"name":"The Savage Sex","site_detail_url":"https://comicvine.gamespot.com/fall-of-the-hulks-the-savage-she-hulks-1-the-savag/4000-198873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199096/","id":199096,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-max-butterfly-1/4000-199096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199168/","id":199168,"name":"Part 4: Endless Night","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face-4-part-4-endle/4000-199168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200191/","id":200191,"name":null,"site_detail_url":"https://comicvine.gamespot.com/breaking-into-comics-the-marvel-way-1/4000-200191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200990/","id":200990,"name":"Shock and Awe: Chapter 6: Knight Falls","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-6-shock-and-awe-chapt/4000-200990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200998/","id":200998,"name":"Family","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-1-family/4000-200998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201027/","id":201027,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/x-23-1-one-shot/4000-201027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201386/","id":201386,"name":"Man Of Two Worlds","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-the-uranian-3-man-of-two-worlds/4000-201386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201849/","id":201849,"name":"Spider-Girls Gone Wild! Part One","site_detail_url":"https://comicvine.gamespot.com/peter-parker-1-spider-girls-gone-wild-part-one/4000-201849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202483/","id":202483,"name":"The Broken Church","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-1-the-broken-church/4000-202483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212439/","id":212439,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-1-hc-tpb/4000-212439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212618/","id":212618,"name":"Resurrection, Part One","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-1-resurrection-part-one/4000-212618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200205/","id":200205,"name":"Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/wolverine-mr-x-1-unfinished-business/4000-200205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222241/","id":222241,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-real-clone-saga-1-hctpb/4000-222241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222648/","id":222648,"name":"Vol. 9","site_detail_url":"https://comicvine.gamespot.com/x-factor-invisible-woman-has-vanished-1-vol-9/4000-222648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200199/","id":200199,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-21/4000-200199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223755/","id":223755,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-assault-on-new-olympus-1-hctpb/4000-223755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229935/","id":229935,"name":"volume 2","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-fall-of-the-hulks-1-volume-2/4000-229935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232260/","id":232260,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-10-volume-10/4000-232260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292950/","id":292950,"name":"Sin Salida","site_detail_url":"https://comicvine.gamespot.com/punisher-2-sin-salida/4000-292950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217782/","id":217782,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/the-waking-4-part-four/4000-217782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202663/","id":202663,"name":"The She-Hulk Story That's A Riff On Christmas Carol; Ladies' Night","site_detail_url":"https://comicvine.gamespot.com/she-hulk-sensational-1-the-she-hulk-story-thats-a-/4000-202663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202839/","id":202839,"name":"Broken House of Cards, Chapter Six: Magical Geographic","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-21-broken-house-of-cards-chapter-six/4000-202839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412394/","id":412394,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/the-complete-invincible-library-2-vol-2/4000-412394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295875/","id":295875,"name":"¡La serpiente se alza!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-16-la-serpiente-se-alza/4000-295875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575441/","id":575441,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-el-encapuchado-2/4000-575441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216449/","id":216449,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-216449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269613/","id":269613,"name":"Latverian Prometheus","site_detail_url":"https://comicvine.gamespot.com/thor-latverian-prometheus-1-latverian-prometheus/4000-269613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297089/","id":297089,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12/4000-297089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244799/","id":244799,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-deluxe-edition-3-book-three/4000-244799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214764/","id":214764,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-nation-x-1-hc-tpb/4000-214764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216551/","id":216551,"name":"Spider-Man: The Gauntlet: Vulture and Morbius","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-gauntlet-vulture-and-morbius-hardco/4000-216551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212305/","id":212305,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-grim-hunt-the-kraven-saga-1/4000-212305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297088/","id":297088,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11/4000-297088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540459/","id":540459,"name":"Armour Wars","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-202-armour-wars/4000-540459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255062/","id":255062,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/jla-the-deluxe-edition-3-vol-3/4000-255062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198821/","id":198821,"name":"Thor Reborn, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-1-thor-reborn-chapter-1/4000-198821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198973/","id":198973,"name":"First Wave - Book One","site_detail_url":"https://comicvine.gamespot.com/first-wave-1-first-wave-book-one/4000-198973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199048/","id":199048,"name":"Stellar Collapse: Constellations, Part Three; The Inheritance, Part Three: Let's Make A Deal!","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-4-stellar-collapse-constellations-pa/4000-199048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199877/","id":199877,"name":"Kingpin, Conclusion","site_detail_url":"https://comicvine.gamespot.com/punishermax-5-kingpin-conclusion/4000-199877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199902/","id":199902,"name":"Scavenging Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-624-scavenging-part-two/4000-199902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200047/","id":200047,"name":"The Cure; Melancholia; So This Is How It Feels; Duel In The Dark Dimension","site_detail_url":"https://comicvine.gamespot.com/the-mystic-hands-of-doctor-strange-bw-1-the-cure-m/4000-200047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200043/","id":200043,"name":"Gauntlet Origins: Lizard, A Matter of Trust, Shed: Prologue","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-6-gauntlet-origins-lizard-a-matt/4000-200043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200234/","id":200234,"name":"M.I.A., Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-51-mia-part-1/4000-200234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199838/","id":199838,"name":"Homecoming, Conclusion, Chapter Eight: The Battle Of Central Park","site_detail_url":"https://comicvine.gamespot.com/cable-24-homecoming-conclusion-chapter-eight-the-b/4000-199838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200765/","id":200765,"name":"Endangered Species","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-625-endangered-species/4000-200765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201128/","id":201128,"name":"Out Of Time","site_detail_url":"https://comicvine.gamespot.com/captain-america-mgc-1-out-of-time/4000-201128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201461/","id":201461,"name":"Fantastic Four: Signals; Hammer And Sinew; Green Dreams; Butterfly Blade; Oh, The Places You'll Go!; Dead Man Talking","site_detail_url":"https://comicvine.gamespot.com/breaking-into-comics-the-marvel-way-2-fantastic-fo/4000-201461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198697/","id":198697,"name":"Scavenging, Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-623-scavenging-part-one/4000-198697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201651/","id":201651,"name":"Siege Prologue; Siege","site_detail_url":"https://comicvine.gamespot.com/siege-directors-cut-1-siege-prologue-siege/4000-201651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201706/","id":201706,"name":"The Sting","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-626-the-sting/4000-201706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202575/","id":202575,"name":"Something Can Stop the Juggernaut","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-627-something-can-stop-the-/4000-202575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213154/","id":213154,"name":"Chapter One: \"Incipit In Medias Res\"","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-the-writer-1-chapter-one-incipit-in/4000-213154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217690/","id":217690,"name":"Part Two: Blue Snow","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-the-writer-2-part-two-blue-snow/4000-217690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121649/","id":121649,"name":"Return to New York","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-70-return-to-new-york/4000-121649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219619/","id":219619,"name":"Fairy Berry Fever; The Parent Trap; Operation: Birthday Blowout!; Rico's Remedy","site_detail_url":"https://comicvine.gamespot.com/kizoic-presents-shrekpenguins-of-madagascar-1-fair/4000-219619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224643/","id":224643,"name":"Aliens With Dirty Faces","site_detail_url":"https://comicvine.gamespot.com/turf-2-aliens-with-dirty-faces/4000-224643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201040/","id":201040,"name":"7 The Hard Way - Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-45-7-the-hard-way-conclusion/4000-201040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246748/","id":246748,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-come-to-mother-russia-1-volume-3/4000-246748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198817/","id":198817,"name":"Tomorrow Dies Today, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-11-tomorrow-dies-today-part-1/4000-198817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212069/","id":212069,"name":"The Innocents, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-42-the-innocents-part-three/4000-212069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203724/","id":203724,"name":"In the Beginning, Part 1","site_detail_url":"https://comicvine.gamespot.com/punisher-max-mgc-1-in-the-beginning-part-1/4000-203724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258095/","id":258095,"name":"Vol. 9","site_detail_url":"https://comicvine.gamespot.com/ex-machina-ring-out-the-old-1-vol-9/4000-258095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212255/","id":212255,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/spawn-197-untitled/4000-212255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315990/","id":315990,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/torpedo-2-volume-two/4000-315990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233673/","id":233673,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-4-volume-4/4000-233673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201703/","id":201703,"name":"Heir Apparent","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-35-heir-apparent/4000-201703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200762/","id":200762,"name":"Bullseye","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-15-bullseye/4000-200762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201408/","id":201408,"name":"Beginning's End, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/supernatural-beginning-s-end-3-beginning-s-end-cha/4000-201408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198823/","id":198823,"name":"Part Five: Cold Wars","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-5-part-five-co/4000-198823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317920/","id":317920,"name":"Volume Twelve","site_detail_url":"https://comicvine.gamespot.com/invincible-still-standing-1-volume-twelve/4000-317920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199158/","id":199158,"name":"Mark Of Cain Part Four","site_detail_url":"https://comicvine.gamespot.com/x-men-noir-mark-of-cain-4-mark-of-cain-part-four/4000-199158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201710/","id":201710,"name":"Two Americas, Part Three; Conjunction, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-604-two-americas-part-three-conjun/4000-201710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211900/","id":211900,"name":"FCBD","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-15512-fcbd/4000-211900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195402/","id":195402,"name":"A Chemical Romance; Super Boys!; Beauty & the Beast: An Epilogue; Animalia","site_detail_url":"https://comicvine.gamespot.com/marvel-heartbreakers-1-a-chemical-romance-super-bo/4000-195402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195408/","id":195408,"name":"Part 3: Blues in the Night","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face-3-part-3-blues/4000-195408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196455/","id":196455,"name":"Journey To The Center Of The Goblin, Part Four","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-4-journey-to-the-center-of-the-goblin-p/4000-196455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196462/","id":196462,"name":"Mysterioso, Part 3: Smoke & Mirrors","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-620-mysterioso-part-3-smoke/4000-196462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196589/","id":196589,"name":"Shock and Awe: Chapter 5: Past is Prologue","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-5-shock-and-awe-chapt/4000-196589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197512/","id":197512,"name":"Whatever A Spider Can, Part One","site_detail_url":"https://comicvine.gamespot.com/deadpool-19-whatever-a-spider-can-part-one/4000-197512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197541/","id":197541,"name":"Storm","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-marvel-girls-4-storm/4000-197541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198261/","id":198261,"name":"Whatever A Spider Can, Part Two","site_detail_url":"https://comicvine.gamespot.com/deadpool-20-whatever-a-spider-can-part-two/4000-198261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211655/","id":211655,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/power-girl-a-new-beginning-1-volume-1/4000-211655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212731/","id":212731,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-best-you-can-be-1-volume-9/4000-212731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213087/","id":213087,"name":"Back to the War; American Dream: The Difference; The Game","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-1-back-to-the-war-american/4000-213087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213521/","id":213521,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/punisher-dead-end-1-volume-2/4000-213521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216431/","id":216431,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion-1-tpb/4000-216431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197608/","id":197608,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-20/4000-197608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228284/","id":228284,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-1-hc-tpb/4000-228284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265462/","id":265462,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/the-flash-rebirth-1-rebirth/4000-265462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197354/","id":197354,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/black-widow-deadly-origin-4-chapter-four/4000-197354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196761/","id":196761,"name":"Taking Flight","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-the-uranian-2-taking-flight/4000-196761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195459/","id":195459,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-torch-5/4000-195459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292971/","id":292971,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-jovenes-vengadores-2/4000-292971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292965/","id":292965,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-el-encapuchado-1/4000-292965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212500/","id":212500,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-omnibus-2-volume-2/4000-212500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222746/","id":222746,"name":"Dark Reign: Hawkeye","site_detail_url":"https://comicvine.gamespot.com/dark-reign-hawkeye-1-dark-reign-hawkeye/4000-222746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224094/","id":224094,"name":"Wolverine Noir","site_detail_url":"https://comicvine.gamespot.com/wolverine-noir-1-wolverine-noir/4000-224094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212034/","id":212034,"name":"Identity Theft, Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-digital-13-identity-theft-part-/4000-212034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297087/","id":297087,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-10/4000-297087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715655/","id":715655,"name":"Fright at the Museum","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-201-fright-at-th/4000-715655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240259/","id":240259,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spawn-endgame-2-volume-2/4000-240259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209108/","id":209108,"name":"Spider-Man: The Gauntlet: Rhino and Mysterio","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-gauntlet-rhino-and-mysterio-hardcov/4000-209108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297086/","id":297086,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-9/4000-297086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204863/","id":204863,"name":"Book 4","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-4-book-4/4000-204863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285162/","id":285162,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/teen-titans-childs-play-1-childs-play/4000-285162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260624/","id":260624,"name":"Vol. 8","site_detail_url":"https://comicvine.gamespot.com/pluto-urasawa-x-tezuka-8-vol-8/4000-260624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195398/","id":195398,"name":"Homecoming, Part Three, Chapter Six: Girls With Guns","site_detail_url":"https://comicvine.gamespot.com/cable-23-homecoming-part-three-chapter-six-girls-w/4000-195398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195362/","id":195362,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/siege-2-untitled/4000-195362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195364/","id":195364,"name":"Love And The Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-10-love-and-the-wolverine/4000-195364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196495/","id":196495,"name":"Constellations, Part 4: Fixed Star!; The Inheritance, Part 4: Underground! Resistance! Movement!","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-3-constellations-part-4-fixed-star-t/4000-196495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196588/","id":196588,"name":"Kingpin, Part 4","site_detail_url":"https://comicvine.gamespot.com/punishermax-4-kingpin-part-4/4000-196588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196759/","id":196759,"name":"This Is How We Operate","site_detail_url":"https://comicvine.gamespot.com/strange-4-this-is-how-we-operate/4000-196759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196592/","id":196592,"name":"Crossroads Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-7-crossroads-part-1/4000-196592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196740/","id":196740,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-2-part-two/4000-196740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196859/","id":196859,"name":"Super-Sized Special","site_detail_url":"https://comicvine.gamespot.com/tails-of-the-pet-avengers-1-super-sized-special/4000-196859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196466/","id":196466,"name":"Notes from the Underground","site_detail_url":"https://comicvine.gamespot.com/dmz-50-notes-from-the-underground/4000-196466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197353/","id":197353,"name":"Out For Blood","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-621-out-for-blood/4000-197353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197355/","id":197355,"name":"The Void Rising","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-14-the-void-rising/4000-197355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197359/","id":197359,"name":"Gauntlet Origins: Vulture, The Spectacular Spider-Girl: Choosing Sides, Ben Reily: Nobody","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-5-gauntlet-origins-vulture-the-s/4000-197359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197533/","id":197533,"name":"The City is a Zoo","site_detail_url":"https://comicvine.gamespot.com/power-girl-9-the-city-is-a-zoo/4000-197533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197539/","id":197539,"name":"Franken-Castle Part Four","site_detail_url":"https://comicvine.gamespot.com/punisher-14-franken-castle-part-four/4000-197539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197540/","id":197540,"name":"Closing The Book","site_detail_url":"https://comicvine.gamespot.com/marvels-eye-of-the-camera-6-closing-the-book/4000-197540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197668/","id":197668,"name":"Two Americas, Part Two; Nomad in Conjunction, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-603-two-americas-part-two-nomad-in/4000-197668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198259/","id":198259,"name":"Avenger: Dead or Alive!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-62-avenger-dead-or-alive/4000-198259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198262/","id":198262,"name":"This is a Place of Testing","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-13-this-is-a-place-of-testing/4000-198262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198358/","id":198358,"name":"White Lightning","site_detail_url":"https://comicvine.gamespot.com/blackest-night-jsa-3-white-lightning/4000-198358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198359/","id":198359,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-6-part-six/4000-198359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198258/","id":198258,"name":"The Hammer Falls, Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-33-the-hammer-falls-part-1/4000-198258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198501/","id":198501,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy-2-part-two/4000-198501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198252/","id":198252,"name":"It Is The Life; Stages of Grief","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-622-it-is-the-life-stages-o/4000-198252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198524/","id":198524,"name":"The Clone Saga, Part Six","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-saga-6-the-clone-saga-part-si/4000-198524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199080/","id":199080,"name":"The Five Nightmares, Part 1: Armageddon Days","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-mgc-1-the-five-nightmares-part/4000-199080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200192/","id":200192,"name":"Pro-Life, Part Four","site_detail_url":"https://comicvine.gamespot.com/ex-machina-48-pro-life-part-four/4000-200192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204530/","id":204530,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/area-10-1-hc/4000-204530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204909/","id":204909,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-returns-1/4000-204909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209058/","id":209058,"name":"Ride-Along","site_detail_url":"https://comicvine.gamespot.com/the-transformers-spotlight-prowl-1-ride-along/4000-209058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208694/","id":208694,"name":"","site_detail_url":"https://comicvine.gamespot.com/gi-joe-17/4000-208694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213929/","id":213929,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-peter-parker-vs-the-x/4000-213929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198742/","id":198742,"name":"Memoir: Chapter One of Fatherland","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-36-memoir-chapter-one-o/4000-198742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210313/","id":210313,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/strange-the-doctor-is-out-1-tpb/4000-210313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197867/","id":197867,"name":"Nation-X: Chapter 7","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-521-nation-x-chapter-7/4000-197867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228276/","id":228276,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-deadly-solutions-1-hc/4000-228276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205634/","id":205634,"name":"The Fangs Of New York!","site_detail_url":"https://comicvine.gamespot.com/turf-1-the-fangs-of-new-york/4000-205634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204518/","id":204518,"name":"The Innocents, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-41-the-innocents-part-two/4000-204518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312091/","id":312091,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/booster-gold-day-of-death-1-volume-4/4000-312091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208522/","id":208522,"name":"A Very British Coup","site_detail_url":"https://comicvine.gamespot.com/gravel-18-a-very-british-coup/4000-208522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317447/","id":317447,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-displaced-aggression-1/4000-317447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327640/","id":327640,"name":"Il tesoro di Didone","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-308-il-tesoro-di-didone/4000-327640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211651/","id":211651,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/the-waking-3-part-three/4000-211651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210436/","id":210436,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-2/4000-210436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372963/","id":372963,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-2-meet-the-black-widow-1/4000-372963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200997/","id":200997,"name":"Beginning's End, Part Two","site_detail_url":"https://comicvine.gamespot.com/supernatural-beginnings-end-2-beginnings-end-part-/4000-200997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208534/","id":208534,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-the-deluxe-edition-3-book-three/4000-208534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395816/","id":395816,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-coat-or-give-me-death-1/4000-395816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198346/","id":198346,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-202/4000-198346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195711/","id":195711,"name":"Part Four: Suffragette City","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-4-part-four-su/4000-195711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265718/","id":265718,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-5-volume-5/4000-265718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195708/","id":195708,"name":"Mark Of Cain Part Three","site_detail_url":"https://comicvine.gamespot.com/x-men-noir-mark-of-cain-3-mark-of-cain-part-three/4000-195708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275543/","id":275543,"name":"Der Gute Prinz","site_detail_url":"https://comicvine.gamespot.com/fables-11-der-gute-prinz/4000-275543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204521/","id":204521,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-spawn-1/4000-204521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186664/","id":186664,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/new-avengers-annual-3-untitled/4000-186664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189507/","id":189507,"name":"Assault On New Olympus, Pt. 2: Faithbomb / Godmarked, Pt. 3: Jimmy & The Atlasnauts","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-139-assault-on-new-olympus-pt-/4000-189507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189578/","id":189578,"name":"Broken House of Cards, Chapter Three: Sorceress Confidential","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-18-broken-house-of-cards-chapter-thr/4000-189578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191659/","id":191659,"name":"Part 2: Night Music","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face-2-part-2-night/4000-191659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191457/","id":191457,"name":"A Hero for the Times","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-the-uranian-1-a-hero-for-the-times/4000-191457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192560/","id":192560,"name":"Journey To The Center Of The Goblin, Part Three","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-3-journey-to-the-center-of-the-goblin-p/4000-192560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192623/","id":192623,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/black-widow-deadly-origin-3-chapter-three/4000-192623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193350/","id":193350,"name":"Assault On New Olympus, Pt. 3: The Fourth Extinction / Godmarked, Pt. 4: Oh Hades…It Is On!","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-140-assault-on-new-olympus-pt-/4000-193350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195977/","id":195977,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil-1-tpb/4000-195977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200024/","id":200024,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/hulk-hulk-no-more-1-volume-3/4000-200024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201718/","id":201718,"name":"Volume 2: My Hero","site_detail_url":"https://comicvine.gamespot.com/wolverine-dark-wolverine-2-volume-2-my-hero/4000-201718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202010/","id":202010,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-the-unspoken-1-hc-tpb/4000-202010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202613/","id":202613,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-iron-monger-1-hc/4000-202613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202627/","id":202627,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-1-hc/4000-202627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202807/","id":202807,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/immortal-weapons-1-tpb/4000-202807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204640/","id":204640,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/new-avengers-power-loss-1-volume-12/4000-204640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205529/","id":205529,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/black-widow-deadly-origin-1-hctpb/4000-205529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209111/","id":209111,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-209111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267211/","id":267211,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/prototype-1-tpb/4000-267211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289479/","id":289479,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-darkness-origins-1-volume-1/4000-289479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297085/","id":297085,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-8/4000-297085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259384/","id":259384,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/models-inc-1-tpb/4000-259384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298381/","id":298381,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimatum-requiem-2/4000-298381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292976/","id":292976,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-ojo-de-halcon-2/4000-292976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292970/","id":292970,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-jovenes-vengadores-1/4000-292970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206683/","id":206683,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/walt-disney-s-the-life-and-times-of-scrooge-mcduck/4000-206683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715372/","id":715372,"name":"Lethal Protector","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-200-lethal-prote/4000-715372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336492/","id":336492,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/titans-fractured-1-vol-3/4000-336492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204761/","id":204761,"name":"The New World According to Peter Parker","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-the-new-world-according/4000-204761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193351/","id":193351,"name":"Father's Day","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-606-fathers-day/4000-193351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212791/","id":212791,"name":"Kick-Ass","site_detail_url":"https://comicvine.gamespot.com/kick-ass-1-kick-ass/4000-212791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194370/","id":194370,"name":"Night of the Batmen","site_detail_url":"https://comicvine.gamespot.com/batman-the-brave-and-the-bold-13-night-of-the-batm/4000-194370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224972/","id":224972,"name":"Punisher Noir","site_detail_url":"https://comicvine.gamespot.com/punisher-noir-1-punisher-noir/4000-224972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297084/","id":297084,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-7/4000-297084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201070/","id":201070,"name":"Here Comes Wild Card!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-11-here-comes-wild-card/4000-201070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222979/","id":222979,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-anti-venom-1-tpb/4000-222979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716078/","id":716078,"name":"Captured!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-199-captured/4000-716078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199358/","id":199358,"name":"Spider-Man: American Son","site_detail_url":"https://comicvine.gamespot.com/spider-man-american-son-1-spider-man-american-son/4000-199358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203406/","id":203406,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-omnibus-1-volume-1/4000-203406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301228/","id":301228,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/the-authority-rule-britannia-1-book-2/4000-301228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297083/","id":297083,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-6/4000-297083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191146/","id":191146,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/siege-1-untitled/4000-191146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191341/","id":191341,"name":"Constellations, Part 2: Star, Struck!; The Inheritance, Part 2: Menace In Venice!","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-2-constellations-part-2-star-struck-/4000-191341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191273/","id":191273,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot-1-part-one/4000-191273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191455/","id":191455,"name":"Homecoming Part Two, Chapter Four: Mannahatta","site_detail_url":"https://comicvine.gamespot.com/cable-22-homecoming-part-two-chapter-four-mannahat/4000-191455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191459/","id":191459,"name":"The New World According To Peter Parker. Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-6-the-new-world-according-to-p/4000-191459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192294/","id":192294,"name":"Rage Of The Rhino; The Walk","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-617-rage-of-the-rhino-the-w/4000-192294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192314/","id":192314,"name":"Hearts and Minds, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-49-hearts-and-minds-conclusion/4000-192314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193358/","id":193358,"name":"Nation-X: Chapter 6","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-520-nation-x-chapter-6/4000-193358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193359/","id":193359,"name":"The Secret of the Sentry","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-13-the-secret-of-the-sentry/4000-193359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193780/","id":193780,"name":"Beginning's End, Part One","site_detail_url":"https://comicvine.gamespot.com/supernatural-beginnings-end-1-beginnings-end-part-/4000-193780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194421/","id":194421,"name":"Cap Sez: Join the Siege!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-61-cap-sez-join-the-siege/4000-194421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194422/","id":194422,"name":"Mysterioso, Part 2: Re-Appearing Act","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-619-mysterioso-part-2-re-ap/4000-194422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194423/","id":194423,"name":"Home Alone","site_detail_url":"https://comicvine.gamespot.com/teen-titans-79-home-alone/4000-194423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194454/","id":194454,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-201/4000-194454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194589/","id":194589,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-6-part-six/4000-194589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194483/","id":194483,"name":"The (Bitter) End","site_detail_url":"https://comicvine.gamespot.com/dark-reign-hawkeye-5-the-bitter-end/4000-194483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194807/","id":194807,"name":"Issue Eight","site_detail_url":"https://comicvine.gamespot.com/kick-ass-8-issue-eight/4000-194807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193352/","id":193352,"name":"Mysterioso, Part 1: Un-Murder Incorporated","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-618-mysterioso-part-1-un-mu/4000-193352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194831/","id":194831,"name":"The Clone Saga, Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-saga-5-the-clone-saga-part-fi/4000-194831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194627/","id":194627,"name":"Franken-Castle Part Three","site_detail_url":"https://comicvine.gamespot.com/punisher-13-franken-castle-part-three/4000-194627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194835/","id":194835,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy-1-part-one/4000-194835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198835/","id":198835,"name":"Endgame Conclusion","site_detail_url":"https://comicvine.gamespot.com/spawn-196-endgame-conclusion/4000-198835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202003/","id":202003,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-1-hc-tpb/4000-202003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200768/","id":200768,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-bronx-kill-1-hc/4000-200768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203177/","id":203177,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-suicide-kings-1-tpb/4000-203177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207955/","id":207955,"name":"Die Hard: Year One #8","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-8-die-hard-year-one-8/4000-207955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211258/","id":211258,"name":"Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier-ultimate-collection/4000-211258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194482/","id":194482,"name":"Troubled Souls","site_detail_url":"https://comicvine.gamespot.com/blackest-night-jsa-2-troubled-souls/4000-194482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202709/","id":202709,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-sword-23/4000-202709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194854/","id":194854,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/night-owls-1-vol-1/4000-194854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244344/","id":244344,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246741/","id":246741,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-the-secret-history-of-the-sentinels-/4000-246741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238430/","id":238430,"name":"\"Lessen One\"","site_detail_url":"https://comicvine.gamespot.com/angel-corps-2-lessen-one/4000-238430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198836/","id":198836,"name":"The Innocents, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-40-the-innocents-part-one/4000-198836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217063/","id":217063,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/the-boys-the-self-preservation-society-1-vol-6/4000-217063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302144/","id":302144,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-last-days-of-animal-man-1-tpb/4000-302144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175727/","id":175727,"name":"Vol. 34, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201002-vol-34-no-1/4000-175727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203713/","id":203713,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/the-waking-2-part-two/4000-203713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201384/","id":201384,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-1/4000-201384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202204/","id":202204,"name":"","site_detail_url":"https://comicvine.gamespot.com/agon-1/4000-202204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191472/","id":191472,"name":"Part Three: Fashion Disaster","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-3-part-three-f/4000-191472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193414/","id":193414,"name":"Two Americas, Part One: Nomad in Conjunction, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-602-two-americas-part-one-nomad-in/4000-193414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194518/","id":194518,"name":"Archie Marries Betty: Happily Ever After, Part 6","site_detail_url":"https://comicvine.gamespot.com/archie-605-archie-marries-betty-happily-ever-after/4000-194518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185750/","id":185750,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-annual-1-untitled/4000-185750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186662/","id":186662,"name":"He Primed Me, Part 2: Flame War","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-5-he-primed-me-part-2-flame-war/4000-186662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186110/","id":186110,"name":"Part 1: Around Midnight","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face-1-part-1-aroun/4000-186110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187852/","id":187852,"name":"Shock And Awe, Part 4: Full Moon","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-4-shock-and-awe-part-/4000-187852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191212/","id":191212,"name":"Wanted","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-58-wanted/4000-191212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187708/","id":187708,"name":"Lust in Space","site_detail_url":"https://comicvine.gamespot.com/power-girl-7-lust-in-space/4000-187708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197509/","id":197509,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-theater-of-war-1-hctpb/4000-197509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201173/","id":201173,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/thor-by-dan-jurgens-and-john-romita-jr-2-volume-2/4000-201173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207654/","id":207654,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-son-of-banner-1-volume-1/4000-207654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232250/","id":232250,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-12-volume-12/4000-232250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195379/","id":195379,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/fables-the-great-fables-crossover-1-volume-13/4000-195379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292975/","id":292975,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-ojo-de-halcon-1/4000-292975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202825/","id":202825,"name":"Incredible Hercules: Sacred Invasion HC","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-sacred-invasion-1-incredible-h/4000-202825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200915/","id":200915,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-molecule-man-1-hc-tpb/4000-200915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202009/","id":202009,"name":"Kick-Ass Hardcover","site_detail_url":"https://comicvine.gamespot.com/kick-ass-1-kick-ass-hardcover/4000-202009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202011/","id":202011,"name":"Spider-Man: The Gauntlet: Electro and Sandman","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-gauntlet-electro-and-sandman-1-spid/4000-202011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297082/","id":297082,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-5/4000-297082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716077/","id":716077,"name":"Training Day","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-198-training-day/4000-716077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197055/","id":197055,"name":"A Matter of Trust!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-10-a-matter-of-trust/4000-197055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199872/","id":199872,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-5-volume-5/4000-199872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200906/","id":200906,"name":"War Machine Vol. 2: Dark Reign TPB","site_detail_url":"https://comicvine.gamespot.com/war-machine-dark-reign-1-war-machine-vol-2-dark-re/4000-200906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196460/","id":196460,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-tales-of-the-golden-avenger-1-tpb/4000-196460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185621/","id":185621,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/siege-the-cabal-1-untitled/4000-185621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185623/","id":185623,"name":"Nation X: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-518-nation-x-chapter-4/4000-185623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186068/","id":186068,"name":"What If The Skrulls Succeeded In Their Secret Invasion ? / What If The Secret Invasion Remained Secret? / Say What? Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion-1-what-if-the-skrulls-succ/4000-186068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186076/","id":186076,"name":"Latverian Prometheus","site_detail_url":"https://comicvine.gamespot.com/thor-604-latverian-prometheus/4000-186076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186107/","id":186107,"name":"The New World According To Peter Parker. Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-5-the-new-world-according-to-p/4000-186107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186222/","id":186222,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-4-part-four/4000-186222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186665/","id":186665,"name":"Stark: Disassembled, Part Two: Digging in the Dirt","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-21-stark-disassembled-part/4000-186665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186674/","id":186674,"name":"Journey To The Center Of The Goblin, Part Two","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-2-journey-to-the-center-of-the-goblin-p/4000-186674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186683/","id":186683,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-the-gathering-1/4000-186683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186768/","id":186768,"name":"Banner And Son","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-605-banner-and-son/4000-186768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186808/","id":186808,"name":"Kingpin, Part 2","site_detail_url":"https://comicvine.gamespot.com/punishermax-2-kingpin-part-2/4000-186808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186711/","id":186711,"name":"Hearts and Minds, Part 4","site_detail_url":"https://comicvine.gamespot.com/dmz-48-hearts-and-minds-part-4/4000-186711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186920/","id":186920,"name":"The Heroes Lost World War Hulk?; Thor Entered World War Hulk?; Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-world-war-hulk-1-the-heroes-lost-world-war/4000-186920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187607/","id":187607,"name":"Keemia's Castle, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-615-keemias-castle-part-1/4000-187607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187614/","id":187614,"name":"A Cautionary Tale","site_detail_url":"https://comicvine.gamespot.com/dark-wolverine-81-a-cautionary-tale/4000-187614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187645/","id":187645,"name":"The Real Deal","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-32-the-real-deal/4000-187645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187670/","id":187670,"name":"The Devil's Hand, Part Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-503-the-devils-hand-part-three/4000-187670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187690/","id":187690,"name":"The Invisible Woman Has Vanished!, Part One; Matters of Faith","site_detail_url":"https://comicvine.gamespot.com/x-factor-200-the-invisible-woman-has-vanished-part/4000-187690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188266/","id":188266,"name":"The Clone Saga, Part Four","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-saga-4-the-clone-saga-part-fo/4000-188266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187627/","id":187627,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-5/4000-187627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187724/","id":187724,"name":"Pro-Life, Part Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-47-pro-life-part-three/4000-187724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186659/","id":186659,"name":"Power To The People, Part 3: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-614-power-to-the-people-par/4000-186659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189485/","id":189485,"name":"Holiday Story","site_detail_url":"https://comicvine.gamespot.com/gotham-city-sirens-7-holiday-story/4000-189485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189508/","id":189508,"name":"Luke Cage: Hero Retired?!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-60-luke-cage-hero-retired/4000-189508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189493/","id":189493,"name":"Who Will Wield The Shield?","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-who-will-wield-the-shield-1/4000-189493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189478/","id":189478,"name":"Lost Souls","site_detail_url":"https://comicvine.gamespot.com/blackest-night-jsa-1-lost-souls/4000-189478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189584/","id":189584,"name":"Gwen Stacy Survived The House of M?; Spiderman Intervened For the Scarlet Witch?; Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-house-of-m-1-gwen-stacy-survive/4000-189584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189595/","id":189595,"name":"Black Magik part 4 of 4:Darkness At Dawn!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-14-black-magik-part-4-of-4darkness-a/4000-189595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189570/","id":189570,"name":"Franken-Castle Part Two","site_detail_url":"https://comicvine.gamespot.com/punisher-12-franken-castle-part-two/4000-189570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189487/","id":189487,"name":"Keemia's Castle, Part 2: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-616-keemias-castle-part-2-c/4000-189487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189561/","id":189561,"name":"Archie Marries Betty: You May Kiss the Bride, Part 5","site_detail_url":"https://comicvine.gamespot.com/archie-604-archie-marries-betty-you-may-kiss-the-b/4000-189561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199005/","id":199005,"name":"Sire","site_detail_url":"https://comicvine.gamespot.com/tracker-3-sire/4000-199005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199167/","id":199167,"name":"Ghostbuster: Tainted Love","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-tainted-love-1-ghostbuster-tainted-lo/4000-199167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200233/","id":200233,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-1-book-one/4000-200233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198980/","id":198980,"name":"Almost Human, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-135-almost-human-part-2/4000-198980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196468/","id":196468,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-exodus-noir-1-volume-2/4000-196468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185624/","id":185624,"name":"The All-Stars","site_detail_url":"https://comicvine.gamespot.com/jsa-all-stars-1-the-all-stars/4000-185624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199199/","id":199199,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-sword-22/4000-199199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189592/","id":189592,"name":"Spinning The Future, Part 4; The Lullaby of Waves","site_detail_url":"https://comicvine.gamespot.com/the-web-4-spinning-the-future-part-4-the-lullaby-o/4000-189592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189510/","id":189510,"name":"Nation X: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-519-nation-x-chapter-5/4000-189510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189500/","id":189500,"name":"Poisoned Chalice","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-31-poisoned-chalice/4000-189500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195371/","id":195371,"name":"Prologue: What I Know","site_detail_url":"https://comicvine.gamespot.com/the-boys-39-prologue-what-i-know/4000-195371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224087/","id":224087,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-ultimate-collection-1-tpb/4000-224087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282577/","id":282577,"name":"Polvere d'oro","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-307-polvere-doro/4000-282577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195458/","id":195458,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/the-waking-1-part-one/4000-195458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332999/","id":332999,"name":"See Venice...","site_detail_url":"https://comicvine.gamespot.com/largo-winch-5-see-venice/4000-332999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206694/","id":206694,"name":"Super Sidekick Sleepover Slaughter, Part 2","site_detail_url":"https://comicvine.gamespot.com/hackslash-the-series-31-super-sidekick-sleepover-s/4000-206694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196469/","id":196469,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/preacher-2-book-two/4000-196469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187629/","id":187629,"name":"Geppetto: Chapter Five of Witches","site_detail_url":"https://comicvine.gamespot.com/fables-91-geppetto-chapter-five-of-witches/4000-187629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185992/","id":185992,"name":"Part Two: An Arabian Knight","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-2-part-two-an-/4000-185992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197655/","id":197655,"name":"Revenge of the Vampire Dimension","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-revenge-of-the-vampire-dimensi/4000-197655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192779/","id":192779,"name":"Fright Ride; In the Spirit","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-151-fright-ride-in-the-spirit/4000-192779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355513/","id":355513,"name":"Hyde and Sneak!/Growing Pains","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-18-hyde-and-sneakgrowing-pains/4000-355513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425288/","id":425288,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-chapter-two-1-vol-1/4000-425288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182542/","id":182542,"name":"Journey To The Center Of The Goblin; A Girl Called Hope (Part 2);","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-1-journey-to-the-center-of-the-goblin-a/4000-182542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182686/","id":182686,"name":"Shock And Awe, Chapter 3: The Bushman Cometh","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-3-shock-and-awe-chapt/4000-182686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183670/","id":183670,"name":"#8 Kill Spider-Man","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-amazing-spider-man-1-8-kill-sp/4000-183670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183724/","id":183724,"name":"The Stars Are Wrong","site_detail_url":"https://comicvine.gamespot.com/realm-of-kings-1-the-stars-are-wrong/4000-183724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184944/","id":184944,"name":"Spider Showdown!","site_detail_url":"https://comicvine.gamespot.com/new-avengers-59-spider-showdown/4000-184944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184806/","id":184806,"name":"Assault On New Olympus, Pt. 1: Playing Gods / Godmarked, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-138-assault-on-new-olympus-pt-/4000-184806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185427/","id":185427,"name":"The Silencer","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-57-the-silencer/4000-185427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192682/","id":192682,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre-1-hc/4000-192682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199302/","id":199302,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-road-to-reborn-1-tpb/4000-199302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206461/","id":206461,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-turf-wars-1-tpb/4000-206461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228270/","id":228270,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-4-volume-4/4000-228270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237657/","id":237657,"name":"Volume 22","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-ultimatum-1-volume-22/4000-237657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191333/","id":191333,"name":"The Instant White-Hot Wild","site_detail_url":"https://comicvine.gamespot.com/the-boys-38-the-instant-white-hot-wild/4000-191333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292949/","id":292949,"name":"Viviendo en la Oscuridad","site_detail_url":"https://comicvine.gamespot.com/punisher-1-viviendo-en-la-oscuridad/4000-292949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181100/","id":181100,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/black-widow-deadly-origin-1-chapter-one/4000-181100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181296/","id":181296,"name":"The X-Heist, Pt. 2 / Godmarked (Prologue)","site_detail_url":"https://comicvine.gamespot.com/x-menagents-of-atlas-2-the-x-heist-pt-2-godmarked-/4000-181296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205861/","id":205861,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-7-volume-seven/4000-205861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298380/","id":298380,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimatum-requiem-1/4000-298380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297907/","id":297907,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-23/4000-297907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300039/","id":300039,"name":"¡Olores y Sentidos!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-14-olores-y-sentidos/4000-300039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292969/","id":292969,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-elektra-2/4000-292969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205935/","id":205935,"name":"Deathtrap","site_detail_url":"https://comicvine.gamespot.com/teen-titans-deathtrap-1-deathtrap/4000-205935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204287/","id":204287,"name":"Secret Warriors: God of Fear, God of War","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-god-of-fear-god-of-war-1-secret-wa/4000-204287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203097/","id":203097,"name":"Avengers: World Trust","site_detail_url":"https://comicvine.gamespot.com/avengers-world-trust-1-avengers-world-trust/4000-203097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716076/","id":716076,"name":"Monster Mash","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-197-monster-mash/4000-716076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184778/","id":184778,"name":"Broken House of Cards, Chapter Two: Popular Satanics","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-17-broken-house-of-cards-chapter-two/4000-184778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191957/","id":191957,"name":"World's Most Wanted, Part 2","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-worlds-most-wanted-part-two-1-/4000-191957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199166/","id":199166,"name":"Thing: Project Pegasus","site_detail_url":"https://comicvine.gamespot.com/thing-project-pegasus-1-thing-project-pegasus/4000-199166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229063/","id":229063,"name":"World War Hulk part four","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-4-world-war-hulk-part-f/4000-229063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297080/","id":297080,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-3/4000-297080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199163/","id":199163,"name":"Spider-Man: Election Day","site_detail_url":"https://comicvine.gamespot.com/spider-man-election-day-1-spider-man-election-day/4000-199163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204468/","id":204468,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-return-of-the-black-cat-1-hc/4000-204468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192835/","id":192835,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/femforce-omnibus-2-volume-2/4000-192835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191688/","id":191688,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/siege-prelude-1-tpb/4000-191688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191740/","id":191740,"name":"X-Men vs. Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/x-men-vs-fantastic-four-1-x-men-vs-fantastic-four/4000-191740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297079/","id":297079,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-2/4000-297079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716075/","id":716075,"name":"Winter Blunderland","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-196-winter-blund/4000-716075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181081/","id":181081,"name":"Who Was Ben Reilly?, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-610-who-was-ben-reilly-part/4000-181081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181089/","id":181089,"name":"Prologue / Godmarked, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/assault-on-new-olympus-prologue-1-prologue-godmark/4000-181089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181818/","id":181818,"name":"Oni","site_detail_url":"https://comicvine.gamespot.com/strange-tales-3-oni/4000-181818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182581/","id":182581,"name":"The Devil's Hand, Part Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-502-the-devils-hand-part-two/4000-182581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182579/","id":182579,"name":"This Man, This Expletive Deleted","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-611-this-man-this-expletive/4000-182579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182786/","id":182786,"name":"Kingpin, Part 1","site_detail_url":"https://comicvine.gamespot.com/punishermax-1-kingpin-part-1/4000-182786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182939/","id":182939,"name":"Engines Of Faith, Part Six: Shedding Skin","site_detail_url":"https://comicvine.gamespot.com/jsa-vs-kobra-6-engines-of-faith-part-six-shedding-/4000-182939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183713/","id":183713,"name":"War Crimes, Part 1","site_detail_url":"https://comicvine.gamespot.com/war-machine-11-war-crimes-part-1/4000-183713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183671/","id":183671,"name":"Power To The People, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-612-power-to-the-people-par/4000-183671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183869/","id":183869,"name":"Quality Time","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-604-quality-time/4000-183869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184816/","id":184816,"name":"My Hero, Part 3","site_detail_url":"https://comicvine.gamespot.com/dark-wolverine-80-my-hero-part-3/4000-184816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184820/","id":184820,"name":"The Amazing Spider-Date","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-47-the-amazing-spider-date/4000-184820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184810/","id":184810,"name":"There Will Always Be War","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-10-there-will-always-be-war/4000-184810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184989/","id":184989,"name":"Prince Of Orphans: The Loyal Ten Thousand Dead / The Caretakers, Conclusion","site_detail_url":"https://comicvine.gamespot.com/immortal-weapons-5-prince-of-orphans-the-loyal-ten/4000-184989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184830/","id":184830,"name":"Stark: Disassembled, Part One: Counting Up From Zero","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-20-stark-disassembled-part/4000-184830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185027/","id":185027,"name":"The Clone Saga, Part Three","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-saga-3-the-clone-saga-part-th/4000-185027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184769/","id":184769,"name":"Power To The People, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-613-power-to-the-people-par/4000-184769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184822/","id":184822,"name":"Code Red, Pt. 4: The Conclusion","site_detail_url":"https://comicvine.gamespot.com/hulk-17-code-red-pt-4-the-conclusion/4000-184822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182522/","id":182522,"name":"Hearts and Minds, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-47-hearts-and-minds-part-3/4000-182522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183749/","id":183749,"name":"Franken-Castle Part One","site_detail_url":"https://comicvine.gamespot.com/punisher-11-franken-castle-part-one/4000-183749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191896/","id":191896,"name":"Dark Reign: The List","site_detail_url":"https://comicvine.gamespot.com/list-1-dark-reign-the-list/4000-191896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181637/","id":181637,"name":"The New World According To Peter Parker Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-4-the-new-world-according-to-p/4000-181637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193509/","id":193509,"name":"#3","site_detail_url":"https://comicvine.gamespot.com/cowboy-ninja-viking-3-3/4000-193509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194187/","id":194187,"name":"Almost Human, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-134-almost-human-part-1/4000-194187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191201/","id":191201,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-chill-1-hc/4000-191201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197242/","id":197242,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-sword-21/4000-197242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197799/","id":197799,"name":"Year One Part Six","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-6-year-one-part-six/4000-197799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191195/","id":191195,"name":"","site_detail_url":"https://comicvine.gamespot.com/athena-4/4000-191195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186801/","id":186801,"name":"The Last Words Of Dutch Schultz","site_detail_url":"https://comicvine.gamespot.com/punisher-noir-4-the-last-words-of-dutch-schultz/4000-186801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224962/","id":224962,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fall-of-the-hulks-prelude-1-tpb/4000-224962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185064/","id":185064,"name":"Spinning The Future, Part 3; The Roar of the Sea","site_detail_url":"https://comicvine.gamespot.com/the-web-3-spinning-the-future-part-3-the-roar-of-t/4000-185064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230992/","id":230992,"name":null,"site_detail_url":"https://comicvine.gamespot.com/box-13-1/4000-230992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242321/","id":242321,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-class-actions-1-tpb/4000-242321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248409/","id":248409,"name":"Civil War: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-spider-man-1-civil-war-spider-man/4000-248409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192576/","id":192576,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-6/4000-192576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324533/","id":324533,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/rest-1-volume-1/4000-324533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194435/","id":194435,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-presents-neverland-0/4000-194435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381571/","id":381571,"name":"DC Comics Year By Year","site_detail_url":"https://comicvine.gamespot.com/dc-comics-year-by-year-1-dc-comics-year-by-year/4000-381571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382567/","id":382567,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness-omnibus-1-volume-1/4000-382567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181091/","id":181091,"name":"Honor Among Thieves","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil-4-honor-among-thieves/4000-181091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194436/","id":194436,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-the-space-between-1-volume-3/4000-194436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297094/","id":297094,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-17/4000-297094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258717/","id":258717,"name":"Under the Cowl","site_detail_url":"https://comicvine.gamespot.com/batman-under-the-cowl-1-under-the-cowl/4000-258717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444771/","id":444771,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-black-widow-and-the-avengers-1-t/4000-444771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181678/","id":181678,"name":"Apes Vs. Zombies!","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-evil-evolution-1-apes-vs-zombies/4000-181678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182523/","id":182523,"name":"Ozma: Chapter Four of Witches","site_detail_url":"https://comicvine.gamespot.com/fables-90-ozma-chapter-four-of-witches/4000-182523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181488/","id":181488,"name":"Part One: Stopping Traffic","site_detail_url":"https://comicvine.gamespot.com/cinderella-from-fabletown-with-love-1-part-one-sto/4000-181488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195783/","id":195783,"name":"Choosing Sides!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-9-choosing-sides/4000-195783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275556/","id":275556,"name":"Der Böse Prinz","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-3-der-bose-prinz/4000-275556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355511/","id":355511,"name":"Savage Safari!/Forewarned is Four Armed! (a.k.a. Armed and Dangerous)","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-17-savage-safariforewarned-is-four-a/4000-355511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182518/","id":182518,"name":"Utopian","site_detail_url":"https://comicvine.gamespot.com/the-authority-the-lost-year-reader-1-utopian/4000-182518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175231/","id":175231,"name":"Shock and Awe, Chapter 2: The Sentry's Curse","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-2-shock-and-awe-chapt/4000-175231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176146/","id":176146,"name":"The Ark; His Girl Friday","site_detail_url":"https://comicvine.gamespot.com/iron-man-iron-protocols-1-the-ark-his-girl-friday/4000-176146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176847/","id":176847,"name":"The Unspoken, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-30-the-unspoken-pt-4/4000-176847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178929/","id":178929,"name":"Book Four: Hell Hath No Fury...","site_detail_url":"https://comicvine.gamespot.com/marvel-divas-4-book-four-hell-hath-no-fury/4000-178929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179033/","id":179033,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-avengers-58/4000-179033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179942/","id":179942,"name":"Vigilantes","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-56-vigilantes/4000-179942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189646/","id":189646,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-hood-1-tpb/4000-189646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189657/","id":189657,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-war-of-the-marvels-1-volume-8/4000-189657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190409/","id":190409,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-force-not-forgotten-1-volume-3/4000-190409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190502/","id":190502,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-dark-reign-1-tpb/4000-190502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176009/","id":176009,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-frank-castle-75/4000-176009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196844/","id":196844,"name":"In the Begining","site_detail_url":"https://comicvine.gamespot.com/black-jesus-1-in-the-begining/4000-196844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204762/","id":204762,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-hated-and-feared-1-volum/4000-204762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207630/","id":207630,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-mighty-thorcules-1-hctpb/4000-207630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212759/","id":212759,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-dark-reign-1-volume-7/4000-212759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222654/","id":222654,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/x-factor-overtime-1-volume-8/4000-222654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189609/","id":189609,"name":"The Last Unicorn","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-43-the-last-unicorn/4000-189609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409123/","id":409123,"name":"Part II: From the Bastille to Baghdad","site_detail_url":"https://comicvine.gamespot.com/the-cartoon-history-of-the-modern-world-2-part-ii-/4000-409123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298207/","id":298207,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-33/4000-298207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297906/","id":297906,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-22/4000-297906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292968/","id":292968,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-elektra-1/4000-292968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472871/","id":472871,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-39/4000-472871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553669/","id":553669,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-collected-book-1/4000-553669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190476/","id":190476,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-3-book-3/4000-190476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178919/","id":178919,"name":"Broken House of Cards, Chapter One: Ladies' Harm Journal","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-16-broken-house-of-cards-chapter-one/4000-178919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186240/","id":186240,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-disassembled-1-volume-4/4000-186240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194588/","id":194588,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-young-avengers-1-tpb/4000-194588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207615/","id":207615,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-dark-reign-1-hctpb/4000-207615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221061/","id":221061,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-221061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179104/","id":179104,"name":"Atonement","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-137-atonement/4000-179104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179032/","id":179032,"name":"Code Red, Pt. 3: She","site_detail_url":"https://comicvine.gamespot.com/hulk-16-code-red-pt-3-she/4000-179032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187896/","id":187896,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darknesspitt-3/4000-187896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199293/","id":199293,"name":"Secret Warriors: Nick Fury, Agent of Nothing","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-nick-fury-agent-of-nothing-1-secre/4000-199293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716074/","id":716074,"name":"Growin' Up","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-195-growin-up/4000-716074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259248/","id":259248,"name":"Reflections","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-3-reflections/4000-259248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225077/","id":225077,"name":"Merry Freakin' Christmas / Rock of Ages / Holiday Heat","site_detail_url":"https://comicvine.gamespot.com/marvel-digital-holiday-special-2-merry-freakin-chr/4000-225077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192871/","id":192871,"name":"X-Men/Spider-Man","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man-1-x-menspider-man/4000-192871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203176/","id":203176,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-underside-1-tpb/4000-203176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204292/","id":204292,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-red-headed-stranger-1-hc-tpb/4000-204292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231532/","id":231532,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-deluxe-edition-2-book-two/4000-231532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186204/","id":186204,"name":"The Betrayers Part 6","site_detail_url":"https://comicvine.gamespot.com/gi-joe-12-the-betrayers-part-6/4000-186204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174972/","id":174972,"name":"Leviathan","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-secret-warriors-1-leviathan/4000-174972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174819/","id":174819,"name":"Who Was Ben Reilly?, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-608-who-was-ben-reilly-part/4000-174819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175288/","id":175288,"name":"The New World According to Peter Parker Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-3-the-new-world-according-to-p/4000-175288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175232/","id":175232,"name":"","site_detail_url":"https://comicvine.gamespot.com/strange-tales-2/4000-175232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175141/","id":175141,"name":"Miasma","site_detail_url":"https://comicvine.gamespot.com/magog-2-miasma/4000-175141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175623/","id":175623,"name":"Ghosts of My Country","site_detail_url":"https://comicvine.gamespot.com/captain-america-theater-of-war-ghosts-of-my-countr/4000-175623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176136/","id":176136,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-3-part-three/4000-176136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176838/","id":176838,"name":"Who Was Ben Reilly?, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-609-who-was-ben-reilly-part/4000-176838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176840/","id":176840,"name":"On the Edge","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-10-on-the-edge/4000-176840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176842/","id":176842,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-hulk-1-one-shot/4000-176842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177671/","id":177671,"name":"Space Girls Gone Wild!: Conclusion","site_detail_url":"https://comicvine.gamespot.com/power-girl-6-space-girls-gone-wild-conclusion/4000-177671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179198/","id":179198,"name":"Young Masters, Part Five","site_detail_url":"https://comicvine.gamespot.com/dark-reign-young-avengers-5-young-masters-part-fiv/4000-179198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179194/","id":179194,"name":"War Of The Marvels, Part 5: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-46-war-of-the-marvels-part-5-conclusion/4000-179194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179203/","id":179203,"name":"Necrosha: Chapter One; Binary; The Foretelling","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-1-necrosha-chapter-one-binary-the-foret/4000-179203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179030/","id":179030,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-punisher-1/4000-179030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179206/","id":179206,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-anti-venom-new-ways-to/4000-179206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179209/","id":179209,"name":"Dead End Part Five","site_detail_url":"https://comicvine.gamespot.com/punisher-10-dead-end-part-five/4000-179209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179306/","id":179306,"name":"Home, Come The Heroes!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-10-home-come-the-heroes/4000-179306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179998/","id":179998,"name":"Spinning The Future, Part 2; The Darkness Carries Me Home","site_detail_url":"https://comicvine.gamespot.com/the-web-2-spinning-the-future-part-2-the-darkness-/4000-179998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176848/","id":176848,"name":"Two Down","site_detail_url":"https://comicvine.gamespot.com/punisher-noir-3-two-down/4000-176848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189571/","id":189571,"name":"Chapter Two; Bloodstrike","site_detail_url":"https://comicvine.gamespot.com/image-united-2-chapter-two-bloodstrike/4000-189571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189634/","id":189634,"name":"Brian Michael Bendis: Ten Years At Marvel","site_detail_url":"https://comicvine.gamespot.com/brian-michael-bendis-ten-years-at-marvel-1-brian-m/4000-189634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189939/","id":189939,"name":"Dark Reign","site_detail_url":"https://comicvine.gamespot.com/deadpool-dark-reign-1-dark-reign/4000-189939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189949/","id":189949,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-sinister-spider-man-1-tpb/4000-189949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175921/","id":175921,"name":"Hearts and Minds, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-46-hearts-and-minds-part-2/4000-175921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189955/","id":189955,"name":"Widowmaker","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-widowmaker-1-widowmaker/4000-189955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189519/","id":189519,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-3-volume-three/4000-189519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191515/","id":191515,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-tales-of-weapon-x-1-tpb/4000-191515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189577/","id":189577,"name":"The Bridge, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-133-the-bridge-part-2/4000-189577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196061/","id":196061,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-root-of-all-annoyance-1/4000-196061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195361/","id":195361,"name":"Face Of A Killer","site_detail_url":"https://comicvine.gamespot.com/tracker-2-face-of-a-killer/4000-195361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194581/","id":194581,"name":"Year One Part Five","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-5-year-one-part-five/4000-194581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175229/","id":175229,"name":"Power, Part Three","site_detail_url":"https://comicvine.gamespot.com/black-panther-9-power-part-three/4000-175229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179202/","id":179202,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-50/4000-179202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217937/","id":217937,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/donatello-the-brain-thief-4-part-4/4000-217937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176844/","id":176844,"name":"My Hero, Part 2","site_detail_url":"https://comicvine.gamespot.com/dark-wolverine-79-my-hero-part-2/4000-176844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249316/","id":249316,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/ultimatum-march-on-ultimatum-1-hctpb/4000-249316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177932/","id":177932,"name":"Birth Pains","site_detail_url":"https://comicvine.gamespot.com/vigilante-11-birth-pains/4000-177932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185990/","id":185990,"name":"La Plume De Ma Tante Est Sur La Table","site_detail_url":"https://comicvine.gamespot.com/the-boys-37-la-plume-de-ma-tante-est-sur-la-table/4000-185990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298512/","id":298512,"name":"Voted Off The Island!","site_detail_url":"https://comicvine.gamespot.com/youngblood-2-voted-off-the-island/4000-298512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231273/","id":231273,"name":"Vol. 8","site_detail_url":"https://comicvine.gamespot.com/ex-machina-dirty-tricks-1-vol-8/4000-231273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306569/","id":306569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/no-hero-1-tpb/4000-306569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189611/","id":189611,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-5/4000-189611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224973/","id":224973,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-past-present-and-future-1/4000-224973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327468/","id":327468,"name":"Tornati dall’inferno","site_detail_url":"https://comicvine.gamespot.com/speciale-brad-barron-3-tornati-dallinferno/4000-327468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327651/","id":327651,"name":"Magico Natale","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-306-magico-natale/4000-327651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339538/","id":339538,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/the-boys-definitive-edition-2-vol-2/4000-339538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175932/","id":175932,"name":"Do You See What I See?","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-halloween-annual-1-do-you-see-wha/4000-175932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175922/","id":175922,"name":"Baba Yaga: Chapter Three of Witches","site_detail_url":"https://comicvine.gamespot.com/fables-89-baba-yaga-chapter-three-of-witches/4000-175922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188305/","id":188305,"name":"Working Overtime","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-displaced-aggression-4-working-overti/4000-188305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179944/","id":179944,"name":"Ultimate Comics Armor Wars Part Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-armor-wars-2-ultimate-comics-armor-wars-p/4000-179944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177524/","id":177524,"name":"Pro-Life, Part Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-46-pro-life-part-two/4000-177524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665811/","id":665811,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-mighty-1-volume-1/4000-665811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179918/","id":179918,"name":"The Clone Saga, Part Two","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-saga-2-the-clone-saga-part-tw/4000-179918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373579/","id":373579,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/the-original-johnson-1-book-1/4000-373579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170311/","id":170311,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-avengers-1-untitled/4000-170311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171391/","id":171391,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-daredevil-1/4000-171391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171212/","id":171212,"name":"Shock And Awe, Chapter One: The White Knight; The Macabre Moon Knight!","site_detail_url":"https://comicvine.gamespot.com/vengeance-of-the-moon-knight-1-shock-and-awe-chapt/4000-171212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172381/","id":172381,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-57-untitled/4000-172381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172609/","id":172609,"name":"Exodus Noir, Part Five: Unto the Furnace","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-15-exodus-noir-part-five-unto-the-fu/4000-172609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173419/","id":173419,"name":"Book Three: A Night To Remember","site_detail_url":"https://comicvine.gamespot.com/marvel-divas-3-book-three-a-night-to-remember/4000-173419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173426/","id":173426,"name":"Chain Of Command","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-hood-5-chain-of-command/4000-173426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174015/","id":174015,"name":"I'm the Perfect Means to an End","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-8-i-m-the-perfect-means-to-an-end/4000-174015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174433/","id":174433,"name":"Why I Was Late For Class","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-55-why-i-was-late-for/4000-174433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172849/","id":172849,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-made-men-1/4000-172849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184780/","id":184780,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-edge-of-vision-1-volume-2/4000-184780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204638/","id":204638,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/new-avengers-search-for-the-sorcerer-supreme-1-vol/4000-204638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169517/","id":169517,"name":"With Great Hunger, There Must Also Come Great Hunger!","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-return-1-with-great-hunger-there-mu/4000-169517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172561/","id":172561,"name":"Hulk Smash People Eaters!","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-return-4-hulk-smash-people-eaters/4000-172561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171233/","id":171233,"name":"Totenkinder: Chapter Two of Witches","site_detail_url":"https://comicvine.gamespot.com/fables-88-totenkinder-chapter-two-of-witches/4000-171233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169344/","id":169344,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-torch-1/4000-169344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206460/","id":206460,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-rise-of-the-olympian-1-tpb-hc/4000-206460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298206/","id":298206,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-32/4000-298206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295873/","id":295873,"name":"¡Juego de poder!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-13-juego-de-poder/4000-295873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247233/","id":247233,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/chew-taster-s-choice-1-volume-1/4000-247233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292972/","id":292972,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-los-4-fantasticos-1/4000-292972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428637/","id":428637,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-69/4000-428637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185128/","id":185128,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-ghost-box-1-tpbhc/4000-185128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190885/","id":190885,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra-1-tpb/4000-190885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223072/","id":223072,"name":"The Death of Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-omnibus-1-the-death-of-ca/4000-223072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244367/","id":244367,"name":"World War Hulk part two","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-2-world-war-hulk-part-t/4000-244367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385939/","id":385939,"name":"In the Clutches of the Collector","site_detail_url":"https://comicvine.gamespot.com/hasbroavengers-1-in-the-clutches-of-the-collector/4000-385939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428589/","id":428589,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-68/4000-428589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716073/","id":716073,"name":"Guilt Trip","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-194-guilt-trip/4000-716073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171393/","id":171393,"name":"The Hunt for Reactron, Part 1","site_detail_url":"https://comicvine.gamespot.com/action-comics-881-the-hunt-for-reactron-part-1/4000-171393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172574/","id":172574,"name":"Meeting With The Goddess","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-135-meeting-with-the-goddess/4000-172574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213520/","id":213520,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-dark-reign-1/4000-213520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215412/","id":215412,"name":"War of Kings","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-1-war-of-kings/4000-215412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249871/","id":249871,"name":"Absolute Justice","site_detail_url":"https://comicvine.gamespot.com/absolute-justice-1-absolute-justice/4000-249871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359942/","id":359942,"name":"The Stand American Nightmares HC","site_detail_url":"https://comicvine.gamespot.com/the-stand-american-nightmares-1-the-stand-american/4000-359942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428588/","id":428588,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-67/4000-428588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184220/","id":184220,"name":"They First Make Mad!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-8-they-first-make-mad/4000-184220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211530/","id":211530,"name":"Marvel Zombies 3","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-3-1-marvel-zombies-3/4000-211530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716072/","id":716072,"name":"Family Crisis","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-193-family-crisi/4000-716072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169225/","id":169225,"name":"Unity","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil-2-unity/4000-169225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169284/","id":169284,"name":"The New World According To Peter Parker Part Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-2-the-new-world-according-to-p/4000-169284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170634/","id":170634,"name":"The Next Generation Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-2-the-next-generation-par/4000-170634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170635/","id":170635,"name":"Young Masters, Part Four","site_detail_url":"https://comicvine.gamespot.com/dark-reign-young-avengers-4-young-masters-part-fou/4000-170635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170733/","id":170733,"name":"Widowmaker, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-135-widowmaker-pt-3/4000-170733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170719/","id":170719,"name":"Red-Headed Stranger: The Ancient Gallery","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-604-red-headed-stranger-the/4000-170719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171386/","id":171386,"name":"'Nuff Said","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-9-nuff-said/4000-171386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171404/","id":171404,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/blackest-night-3-part-3/4000-171404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171539/","id":171539,"name":"Dead End Part Four","site_detail_url":"https://comicvine.gamespot.com/punisher-9-dead-end-part-four/4000-171539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171553/","id":171553,"name":"World's Most Wanted, Part 11: Kids With Guns Vs. The Eternal Angel of Death","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-18-worlds-most-wanted-part/4000-171553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171645/","id":171645,"name":"“Red Headed Stranger” Epilogue","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-605-red-headed-stranger-epi/4000-171645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171390/","id":171390,"name":"My Hero, Part 1","site_detail_url":"https://comicvine.gamespot.com/dark-wolverine-78-my-hero-part-1/4000-171390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171721/","id":171721,"name":"Engines Of Faith, Part Four: Lightning in a Bottle","site_detail_url":"https://comicvine.gamespot.com/jsa-vs-kobra-4-engines-of-faith-part-four-lightnin/4000-171721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172423/","id":172423,"name":"Space Girls Gone Wild!","site_detail_url":"https://comicvine.gamespot.com/power-girl-5-space-girls-gone-wild/4000-172423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172477/","id":172477,"name":"Dog Brother #1: Urban Legend; Caretakers, Part 3","site_detail_url":"https://comicvine.gamespot.com/immortal-weapons-3-dog-brother-1-urban-legend-care/4000-172477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173682/","id":173682,"name":"Code Red, Pt. 2: Collision","site_detail_url":"https://comicvine.gamespot.com/hulk-15-code-red-pt-2-collision/4000-173682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173423/","id":173423,"name":"Long-Term Arrangement, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-607-long-term-arrangement-p/4000-173423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173758/","id":173758,"name":"Widowmaker, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-136-widowmaker-pt-4/4000-173758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174020/","id":174020,"name":"Chapter Four: What The #### Is This #### About","site_detail_url":"https://comicvine.gamespot.com/dark-reign-sinister-spider-man-4-chapter-four-what/4000-174020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174144/","id":174144,"name":"Remote Control","site_detail_url":"https://comicvine.gamespot.com/punisher-annual-1-remote-control/4000-174144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148443/","id":148443,"name":"The Clone Saga, Part One","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-saga-1-the-clone-saga-part-on/4000-148443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172379/","id":172379,"name":"War Of The Marvels, Part 4: Variations In Tactics","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-45-war-of-the-marvels-part-4-variations-/4000-172379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173009/","id":173009,"name":"Pro-Life, Part One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-45-pro-life-part-one/4000-173009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173151/","id":173151,"name":"Spinning The Future, Part 1; Bad Men","site_detail_url":"https://comicvine.gamespot.com/the-web-1-spinning-the-future-part-1-bad-men/4000-173151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184802/","id":184802,"name":"Chapter One; Haunt","site_detail_url":"https://comicvine.gamespot.com/image-united-1-chapter-one-haunt/4000-184802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172378/","id":172378,"name":"Long Term Arrangement","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-606-long-term-arrangement/4000-172378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183195/","id":183195,"name":"Survivor","site_detail_url":"https://comicvine.gamespot.com/tracker-1-survivor/4000-183195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186918/","id":186918,"name":"Murderer","site_detail_url":"https://comicvine.gamespot.com/pilot-season-murderer-1-murderer/4000-186918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187205/","id":187205,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-picking-up-where-we-left-off-1-volum/4000-187205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170385/","id":170385,"name":"Hearts and Minds, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-45-hearts-and-minds-part-1/4000-170385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182524/","id":182524,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/luna-park-1-ogn/4000-182524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192805/","id":192805,"name":"Year One Part Four","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-4-year-one-part-four/4000-192805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172617/","id":172617,"name":"Royal Pain! Chapter Three: Dead Man's Hand!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-37-royal-pain-chapter-th/4000-172617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204291/","id":204291,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-died-in-your-arms-tonight-1-hctpb/4000-204291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171566/","id":171566,"name":"Punisher & Son","site_detail_url":"https://comicvine.gamespot.com/punisher-noir-2-punisher-son/4000-171566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174079/","id":174079,"name":"Wrinkles In Time","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-80-page-giant-1-wrinkles/4000-174079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215100/","id":215100,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/timestorm-2009-2099-1-hc/4000-215100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171389/","id":171389,"name":"The Cortex Equation","site_detail_url":"https://comicvine.gamespot.com/x-factor-48-the-cortex-equation/4000-171389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186229/","id":186229,"name":"Utopia","site_detail_url":"https://comicvine.gamespot.com/avengersx-men-utopia-1-utopia/4000-186229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154591/","id":154591,"name":"","site_detail_url":"https://comicvine.gamespot.com/night-of-the-living-dead-new-york-1/4000-154591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228898/","id":228898,"name":"The Arrangement","site_detail_url":"https://comicvine.gamespot.com/tales-from-wonderland-2-the-arrangement/4000-228898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232218/","id":232218,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-deathlok-1-volume-1/4000-232218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244343/","id":244343,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273900/","id":273900,"name":"Spider-Man und die X-Men","site_detail_url":"https://comicvine.gamespot.com/100-marvel-45-spider-man-und-die-x-men/4000-273900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172020/","id":172020,"name":"","site_detail_url":"https://comicvine.gamespot.com/prototype-6/4000-172020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171491/","id":171491,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-anti-venom-new-ways-to/4000-171491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181269/","id":181269,"name":"Nothing Like It in the World, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-36-nothing-like-it-in-the-world-part-two/4000-181269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218826/","id":218826,"name":"The Burning Man","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-64-the-burning-man/4000-218826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171702/","id":171702,"name":"Ultimate Comics Armor Wars Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-armor-wars-1-ultimate-comics-armor-wars-p/4000-171702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301030/","id":301030,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/gen13-worlds-end-1-tpb/4000-301030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186288/","id":186288,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-4/4000-186288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169411/","id":169411,"name":"","site_detail_url":"https://comicvine.gamespot.com/luke-cage-noir-2/4000-169411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172472/","id":172472,"name":"Other Worlds, Other Wars","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-18-other-worlds-other-wars/4000-172472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174958/","id":174958,"name":"Death's Finest Addiction","site_detail_url":"https://comicvine.gamespot.com/dark-reign-zodiac-3-deaths-finest-addiction/4000-174958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171050/","id":171050,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-2-part-two/4000-171050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275542/","id":275542,"name":"Väter Und Söhne","site_detail_url":"https://comicvine.gamespot.com/fables-10-vater-und-sohne/4000-275542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154038/","id":154038,"name":"Number Four","site_detail_url":"https://comicvine.gamespot.com/comic-book-comics-4-number-four/4000-154038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183794/","id":183794,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-talisman-the-road-of-trials-1/4000-183794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355471/","id":355471,"name":"Storm Warning!/Countdown","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-15-storm-warningcountdown/4000-355471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446041/","id":446041,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/black-terror-1-volume-1/4000-446041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166837/","id":166837,"name":"The Next Generation Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-1-the-next-generation-par/4000-166837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166844/","id":166844,"name":"Book Two: A Second Opinion","site_detail_url":"https://comicvine.gamespot.com/marvel-divas-2-book-two-a-second-opinion/4000-166844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166815/","id":166815,"name":"The New World According to Peter Parker","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-1-the-new-world-according-to-p/4000-166815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167081/","id":167081,"name":"The Replacement Thor","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-132-the-replacement-thor/4000-167081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167442/","id":167442,"name":"Negative Reinforcement","site_detail_url":"https://comicvine.gamespot.com/dark-reign-mister-negative-3-negative-reinforcemen/4000-167442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167376/","id":167376,"name":"Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/deadpool-suicide-kings-5-part-5-of-5/4000-167376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168364/","id":168364,"name":"Exodus Noir, Part Four: Sins of the Fathers","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-14-exodus-noir-part-four-sins-of-the/4000-168364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183108/","id":183108,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-1-hctpb/4000-183108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175130/","id":175130,"name":"Just Like Starting Over; Image United Prelude, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-131-just-like-starting-over-image-unite/4000-175130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216669/","id":216669,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-short-halloween-1-hctpb/4000-216669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228822/","id":228822,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-inhumans-1-volume-one/4000-228822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167375/","id":167375,"name":"Family Man","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-hood-4-family-man/4000-167375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168305/","id":168305,"name":"Taken For A Ride","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-54-taken-for-a-ride/4000-168305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168307/","id":168307,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-56-untitled/4000-168307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238687/","id":238687,"name":"Volume 3: Earth","site_detail_url":"https://comicvine.gamespot.com/the-sword-3-volume-3-earth/4000-238687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472870/","id":472870,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-38/4000-472870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184337/","id":184337,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimatum-1-ultimatum/4000-184337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191956/","id":191956,"name":"World's Most Wanted, Part 1","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-worlds-most-wanted-part-one-1-/4000-191956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428587/","id":428587,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-66/4000-428587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166266/","id":166266,"name":"Hulk No More!","site_detail_url":"https://comicvine.gamespot.com/hulk-13-hulk-no-more/4000-166266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198661/","id":198661,"name":"Spider-Man: Death and Dating","site_detail_url":"https://comicvine.gamespot.com/spider-man-death-and-dating-1-spider-man-death-and/4000-198661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187096/","id":187096,"name":"War Machine: Iron Heart","site_detail_url":"https://comicvine.gamespot.com/war-machine-iron-heart-1-war-machine-iron-heart/4000-187096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177272/","id":177272,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/uncle-sam-the-deluxe-edition-1-hc/4000-177272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178699/","id":178699,"name":"Whom Gods Destroy","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-7-whom-gods-destroy/4000-178699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182880/","id":182880,"name":"Captain America: The Man With No Face","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-man-with-no-face-1-captain-ame/4000-182880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426227/","id":426227,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-65/4000-426227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716071/","id":716071,"name":"The Fast Lane","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-192-the-fast-lan/4000-716071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168301/","id":168301,"name":"Solve Everything","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-570-solve-everything/4000-168301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203175/","id":203175,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-fantastic-four-1-tpb/4000-203175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217055/","id":217055,"name":"The Marvel Encyclopedia the Definitive Guide to the Characters of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-marvel-encyclopedia-the-definitive-guide-to-th/4000-217055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166136/","id":166136,"name":"Red-Headed Stranger, Part 1: No Place Like Home; The Best Version Of Myself","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-601-red-headed-stranger-par/4000-166136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166137/","id":166137,"name":"World's Most Wanted, Part 9: Titan of the Nuclear Age","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-16-worlds-most-wanted-part/4000-166137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166792/","id":166792,"name":"Red-Headed Stranger: Tenth of September","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-602-red-headed-stranger-ten/4000-166792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166812/","id":166812,"name":"Bury My Heart - Love & Loss, part 5","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-5-bury-my-heart-love-loss-part-5/4000-166812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166836/","id":166836,"name":"War Of The Marvels, Part. 2: Tactical Dispositions","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-43-war-of-the-marvels-part-2-tactical-di/4000-166836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166887/","id":166887,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/the-marvels-project-1-part-one/4000-166887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166788/","id":166788,"name":"No Future, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-44-no-future-conclusion/4000-166788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167368/","id":167368,"name":"Red-Headed Stranger, Part 3: Deconstructing Peter","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-603-red-headed-stranger-par/4000-167368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167627/","id":167627,"name":"Archie Marries Veronica Part 1: The Proposal","site_detail_url":"https://comicvine.gamespot.com/archie-600-archie-marries-veronica-part-1-the-prop/4000-167627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168465/","id":168465,"name":"Not Forgotten: Part 2","site_detail_url":"https://comicvine.gamespot.com/x-force-18-not-forgotten-part-2/4000-168465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168297/","id":168297,"name":"Chapter Three: Half Man. Half Spider. All Amazing.","site_detail_url":"https://comicvine.gamespot.com/dark-reign-sinister-spider-man-3-chapter-three-hal/4000-168297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170579/","id":170579,"name":"Issue Seven","site_detail_url":"https://comicvine.gamespot.com/kick-ass-7-issue-seven/4000-170579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174965/","id":174965,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-big-book-of-war-1-volume-6/4000-174965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167537/","id":167537,"name":"Ring Out The Old: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-44-ring-out-the-old-conclusion/4000-167537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174961/","id":174961,"name":"Nothing Like It in the World, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-35-nothing-like-it-in-the-world-part-one/4000-174961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178421/","id":178421,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus-1-hc/4000-178421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177527/","id":177527,"name":"Endgame, Part 11; Image United Prelude, Part 4","site_detail_url":"https://comicvine.gamespot.com/spawn-195-endgame-part-11-image-united-prelude-par/4000-177527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176014/","id":176014,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astounding-wolf-man-19/4000-176014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168549/","id":168549,"name":"Identity Crisis","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-18-identity-crisis/4000-168549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185201/","id":185201,"name":"Year One Part Three","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-3-year-one-part-three/4000-185201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204676/","id":204676,"name":"Return of the King","site_detail_url":"https://comicvine.gamespot.com/daredevil-return-of-the-king-1-return-of-the-king/4000-204676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167364/","id":167364,"name":"Girls' Night Out!","site_detail_url":"https://comicvine.gamespot.com/power-girl-4-girls-night-out/4000-167364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167373/","id":167373,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-47/4000-167373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194947/","id":194947,"name":"Casper and the Spectrals","site_detail_url":"https://comicvine.gamespot.com/casper-and-the-spectrals-1-casper-and-the-spectral/4000-194947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167610/","id":167610,"name":"The Return Of The King, Conclusion; Dark Reign: The List Preview; 3 Jacks; Pinup Gallery; Daredevil #191","site_detail_url":"https://comicvine.gamespot.com/daredevil-500-the-return-of-the-king-conclusion-da/4000-167610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166826/","id":166826,"name":"Day of Death, Part III of IV; Armor-Plated, Part 3: Thoroughly Modern Maria","site_detail_url":"https://comicvine.gamespot.com/booster-gold-23-day-of-death-part-iii-of-iv-armor-/4000-166826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167471/","id":167471,"name":"If I Can Kill It Here","site_detail_url":"https://comicvine.gamespot.com/vigilante-9-if-i-can-kill-it-here/4000-167471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167369/","id":167369,"name":"Dead End Part Three","site_detail_url":"https://comicvine.gamespot.com/punisher-8-dead-end-part-three/4000-167369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179252/","id":179252,"name":"The Name of the Game, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-1-dynamite-edition-1-the-name-of-the-game/4000-179252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167023/","id":167023,"name":"","site_detail_url":"https://comicvine.gamespot.com/prototype-5/4000-167023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181647/","id":181647,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-3/4000-181647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317611/","id":317611,"name":"War of Kings: Prologo","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-59-war-of-kings-prologo/4000-317611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212554/","id":212554,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/peter-max-a-fables-novel-1-hc/4000-212554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327652/","id":327652,"name":"L’ultimo convoglio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-305-lultimo-convoglio/4000-327652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168311/","id":168311,"name":"I Know Who You Work For","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-7-i-know-who-you-work-for/4000-168311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166322/","id":166322,"name":"Moon Over Harlem","site_detail_url":"https://comicvine.gamespot.com/luke-cage-noir-1-moon-over-harlem/4000-166322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166789/","id":166789,"name":"Bufkin: Chapter One of Witches","site_detail_url":"https://comicvine.gamespot.com/fables-87-bufkin-chapter-one-of-witches/4000-166789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355508/","id":355508,"name":"Nano Nightmare/The Mitey Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-13-nano-nightmarethe-mitey-avengers/4000-355508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162555/","id":162555,"name":"Book One: Bad News on a Good Day","site_detail_url":"https://comicvine.gamespot.com/marvel-divas-1-book-one-bad-news-on-a-good-day/4000-162555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162737/","id":162737,"name":"Dark Reflection; The Spectacular Spider-Girl; Walking The Talk; Why Not Have Spider-Man Lose Control Of His Spider-Sense?","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-8-dark-reflection-the-sp/4000-162737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163541/","id":163541,"name":"","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-41/4000-163541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163378/","id":163378,"name":"Peter Parker Must Die","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-36-peter-parker-must/4000-163378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163641/","id":163641,"name":"Refuge","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-1-refuge/4000-163641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164007/","id":164007,"name":"Bullseye, Part 3: Knocking Over The Candy Store","site_detail_url":"https://comicvine.gamespot.com/deadpool-12-bullseye-part-3-knocking-over-the-cand/4000-164007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164128/","id":164128,"name":"Battle For Chinatown","site_detail_url":"https://comicvine.gamespot.com/dark-reign-mister-negative-2-battle-for-chinatown/4000-164128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164175/","id":164175,"name":"Monster Makers","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-8-monster-makers/4000-164175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164774/","id":164774,"name":"Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/deadpool-suicide-kings-4-part-4-of-5/4000-164774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164780/","id":164780,"name":"Not Forgotten: Part 1","site_detail_url":"https://comicvine.gamespot.com/x-force-17-not-forgotten-part-1/4000-164780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165068/","id":165068,"name":"Seeing Red; A Hulk of Many Colors; She-Hulk Weapon of A.R.M.O.R.","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-600-seeing-red-a-hulk-of-many-colo/4000-165068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165198/","id":165198,"name":"The Harrowing","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-131-the-harrowing/4000-165198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165499/","id":165499,"name":"Young Masters, Part Three","site_detail_url":"https://comicvine.gamespot.com/dark-reign-young-avengers-3-young-masters-part-thr/4000-165499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165577/","id":165577,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-55-untitled/4000-165577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165512/","id":165512,"name":"Two Wongs","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-17-two-wongs/4000-165512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191698/","id":191698,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-reunion-1-tpb/4000-191698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165857/","id":165857,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-goblin-legacy-1/4000-165857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201172/","id":201172,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thor-by-dan-jurgens-and-john-romita-jr-1-volume-1/4000-201172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205781/","id":205781,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-planet-skaar-1-hctpb/4000-205781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165447/","id":165447,"name":"The Temptation of Cloak And Dagger; Weapon Omega; I Am Daken","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-the-beginning-2-the-temptation-of-cloak/4000-165447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229295/","id":229295,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/pet-avengers-classic-1-tpb/4000-229295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164157/","id":164157,"name":"","site_detail_url":"https://comicvine.gamespot.com/vigilante-8/4000-164157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254739/","id":254739,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nyx-no-way-home-1-tpb/4000-254739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264393/","id":264393,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-182/4000-264393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189774/","id":189774,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-master-of-doom-1-hc/4000-189774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165502/","id":165502,"name":"The Devil In The Details","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-hood-3-the-devil-in-the-details/4000-165502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169330/","id":169330,"name":"The Self-Preservation Society, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-34-the-self-preservation-society-conclusi/4000-169330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165514/","id":165514,"name":"The Heart of A Hero; Moving Target","site_detail_url":"https://comicvine.gamespot.com/iron-man-armored-adventures-1-the-heart-of-a-hero-/4000-165514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493110/","id":493110,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/veronica-s-passport-1-volume-1/4000-493110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497263/","id":497263,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-64/4000-497263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295872/","id":295872,"name":"La Academia de Asesinos","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-12-la-academia-de-asesino/4000-295872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164668/","id":164668,"name":"Murder On Another Planet","site_detail_url":"https://comicvine.gamespot.com/all-select-comics-70th-anniversary-special-1-murde/4000-164668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259261/","id":259261,"name":"Book of the Dead","site_detail_url":"https://comicvine.gamespot.com/spawn-book-of-the-dead-1-book-of-the-dead/4000-259261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165422/","id":165422,"name":"Exodus Noir, Part Three: Wake Not the Dead","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-13-exodus-noir-part-three-wake-not-t/4000-165422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430401/","id":430401,"name":"Kant, Hegel and Schoppenhauer!","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-12-kant-hegel-and-schoppenhaue/4000-430401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716070/","id":716070,"name":"The Last Stand","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-191-the-last-sta/4000-716070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173688/","id":173688,"name":"Bog, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-darkness-80-bog-part-1/4000-173688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175022/","id":175022,"name":"Like A Fury Scorned!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-6-like-a-fury-scorned/4000-175022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178293/","id":178293,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-sting-of-the-widow-1-hc/4000-178293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216553/","id":216553,"name":"Spider-Man Noir","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-1-spider-man-noir/4000-216553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252645/","id":252645,"name":"New Story! The MIGHTY AVENGERS Are Born!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-9-new-story-the-mighty-avenge/4000-252645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426036/","id":426036,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-63/4000-426036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162547/","id":162547,"name":"Doom's Master, Part 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-568-doom-s-master-part-3/4000-162547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176395/","id":176395,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-3-volume-3/4000-176395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192101/","id":192101,"name":"Ultimatum: Spider-Man HC","site_detail_url":"https://comicvine.gamespot.com/ultimatum-spider-man-1-ultimatum-spider-man-hc/4000-192101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246587/","id":246587,"name":"Marvel Superhero Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-superhero-team-up-1-marvel-superhero-team-u/4000-246587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299930/","id":299930,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/titans-lockdown-1-vol-2/4000-299930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225797/","id":225797,"name":"Ape-okolips Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-prime-eight-3-ape-okolips-now/4000-225797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173689/","id":173689,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-2-book-2/4000-173689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183023/","id":183023,"name":"Sinister Six","site_detail_url":"https://comicvine.gamespot.com/spider-man-sinister-six-1-sinister-six/4000-183023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191145/","id":191145,"name":"Marvel Zombies vs. Army Of Darkness","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-1-marvel-zombie/4000-191145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191699/","id":191699,"name":"Amazing Spider-Man: 24/7","site_detail_url":"https://comicvine.gamespot.com/spider-man-247-1-amazing-spider-man-247/4000-191699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205708/","id":205708,"name":"The Private Life of Peter Parker - Part I","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-digital-1-the-private-life-of-p/4000-205708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169229/","id":169229,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/dmz-war-powers-1-volume-7/4000-169229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225796/","id":225796,"name":"Ape-okolips Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-prime-eight-2-ape-okolips-now/4000-225796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426035/","id":426035,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-62/4000-426035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716069/","id":716069,"name":"Urban Knights","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-190-urban-knight/4000-716069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162525/","id":162525,"name":"OK Computer","site_detail_url":"https://comicvine.gamespot.com/exiles-4-ok-computer/4000-162525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164006/","id":164006,"name":"American Son: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-599-american-son-conclusion/4000-164006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164034/","id":164034,"name":"Red, White and Blue-Blood","site_detail_url":"https://comicvine.gamespot.com/captain-america-601-red-white-and-blue-blood/4000-164034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164777/","id":164777,"name":"Last Legs; Identity Crisis; My Brother's Son; If I Was Spider-Man...; The Blessing; Fight At The Museum; Violent Visions","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-600-last-legs-identity-cris/4000-164777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164763/","id":164763,"name":"Gorilla Warfare","site_detail_url":"https://comicvine.gamespot.com/power-girl-3-gorilla-warfare/4000-164763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165471/","id":165471,"name":"Doom's Master, Part 4","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-569-doom-s-master-part-4/4000-165471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165495/","id":165495,"name":"Chapter Two: We Need A Hero","site_detail_url":"https://comicvine.gamespot.com/dark-reign-sinister-spider-man-2-chapter-two-we-ne/4000-165495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165432/","id":165432,"name":"Part Three: Bargain","site_detail_url":"https://comicvine.gamespot.com/the-last-days-of-animal-man-3-part-three-bargain/4000-165432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165443/","id":165443,"name":"Love--and Loss! Part 4 of 5: Strike-Back!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-4-love-and-loss-part-4-of-5-strike-b/4000-165443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170650/","id":170650,"name":"War of the Witchblades, Part 6","site_detail_url":"https://comicvine.gamespot.com/witchblade-130-war-of-the-witchblades-part-6/4000-170650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170939/","id":170939,"name":"Special Edition","site_detail_url":"https://comicvine.gamespot.com/fables-1peter-max-preview-1-special-edition/4000-170939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171516/","id":171516,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-sword-19/4000-171516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174132/","id":174132,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-manmary-janeyou-just-hit-the-jackpot-1-tpb/4000-174132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184207/","id":184207,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-team-up-3-volume-3/4000-184207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164035/","id":164035,"name":"No Future, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-43-no-future-part-2/4000-164035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179985/","id":179985,"name":"Year One Part Two","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-2-year-one-part-two/4000-179985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201643/","id":201643,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-5-volume-5/4000-201643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213816/","id":213816,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/savage-she-hulk-1-tpb/4000-213816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218192/","id":218192,"name":"Absolute Promethea Vol. 1","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea-1-absolute-promethea-vol-1/4000-218192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223256/","id":223256,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/golden-age-of-marvel-comics-omnibus-1-volume-1/4000-223256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241430/","id":241430,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-ninjas-gods-and-divas-1-tpb/4000-241430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189763/","id":189763,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-earth-s-mightiest-1-tpb-hc/4000-189763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186619/","id":186619,"name":"Dark Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-dark-avengers-assemble-1-dark-avenge/4000-186619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164150/","id":164150,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/punisher-7-untitled/4000-164150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251519/","id":251519,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-5-volume-5/4000-251519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163388/","id":163388,"name":"","site_detail_url":"https://comicvine.gamespot.com/prototype-4/4000-163388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175577/","id":175577,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-2/4000-175577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325373/","id":325373,"name":"Rebel","site_detail_url":"https://comicvine.gamespot.com/rebel-1-rebel/4000-325373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165423/","id":165423,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/ultimatum-spider-man-requiem-2-part-two/4000-165423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322459/","id":322459,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-darkness-accursed-2-volume-2/4000-322459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173442/","id":173442,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-1-book-one/4000-173442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207655/","id":207655,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-evolution-starts-here-1-tpb/4000-207655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166538/","id":166538,"name":"Ill-Gotten Gains","site_detail_url":"https://comicvine.gamespot.com/dark-reign-zodiac-2-ill-gotten-gains/4000-166538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164008/","id":164008,"name":"Utopia Chapter 3","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-7-utopia-chapter-3/4000-164008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164033/","id":164033,"name":"Boxing Days","site_detail_url":"https://comicvine.gamespot.com/fables-86-boxing-days/4000-164033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355506/","id":355506,"name":"Like a Moth to a Flame/Heavy Hangs the Head","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-12-like-a-moth-to-a-flameheavy-hangs/4000-355506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275227/","id":275227,"name":"Curse of the Invincible Ruby","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-adventures-2-curse-of-the-invincible/4000-275227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166257/","id":166257,"name":"","site_detail_url":"https://comicvine.gamespot.com/war-machine-8/4000-166257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159239/","id":159239,"name":"Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/deadpool-suicide-kings-3-part-3-of-5/4000-159239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159810/","id":159810,"name":"Disconnected","site_detail_url":"https://comicvine.gamespot.com/titans-14-disconnected/4000-159810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160453/","id":160453,"name":"Random Acts of Redemption","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-gambit-1-random-acts-of-redemption/4000-160453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160413/","id":160413,"name":"Killer Madonna; Daughter of Hulk","site_detail_url":"https://comicvine.gamespot.com/all-new-savage-she-hulk-3-killer-madonna-daughter-/4000-160413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161801/","id":161801,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/dark-reign-lethal-legion-1-untitled/4000-161801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162247/","id":162247,"name":"Women Love Him, Men Want To Be Him","site_detail_url":"https://comicvine.gamespot.com/dark-reign-sinister-spider-man-1-women-love-him-me/4000-162247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162625/","id":162625,"name":"No Substitute","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-52-no-substitute/4000-162625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161769/","id":161769,"name":"Haunted","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-hood-2-haunted/4000-161769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167067/","id":167067,"name":"War of the Witchblades, Part 5","site_detail_url":"https://comicvine.gamespot.com/witchblade-129-war-of-the-witchblades-part-5/4000-167067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171720/","id":171720,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-classic-1-volume-1/4000-171720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172521/","id":172521,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dr-doom-and-the-masters-of-evil-1-tpb/4000-172521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160540/","id":160540,"name":"The Last Stand of Mr. Negative","site_detail_url":"https://comicvine.gamespot.com/dark-reign-mister-negative-1-the-last-stand-of-mr-/4000-160540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168333/","id":168333,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darknesspitt-1/4000-168333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186395/","id":186395,"name":"Dark Reign","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-dark-reign-1-dark-reign/4000-186395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159483/","id":159483,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-max-naked-kill-1/4000-159483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160652/","id":160652,"name":"Dead End Part One","site_detail_url":"https://comicvine.gamespot.com/punisher-6-dead-end-part-one/4000-160652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292937/","id":292937,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-23/4000-292937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160990/","id":160990,"name":"Just An Old Sweet Song; Into The fire; Loa And order;","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-7-just-an-old-sweet-song/4000-160990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166790/","id":166790,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/fables-the-dark-ages-1-volume-12/4000-166790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170154/","id":170154,"name":"Ape-okolips Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-prime-eight-1-ape-okolips-now/4000-170154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297564/","id":297564,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-4/4000-297564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193941/","id":193941,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/thor-2-volume-2/4000-193941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430393/","id":430393,"name":"Self-Help for Stupid, Ugly Losers! (Freud, Jung and Joseph Campbell)","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-4-self-help-for-stupid-ugly-lo/4000-430393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204067/","id":204067,"name":"Cable: Waiting for the End of the World","site_detail_url":"https://comicvine.gamespot.com/cable-waiting-for-the-end-of-the-world-1-cable-wai/4000-204067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161505/","id":161505,"name":"Exodus Noir, Part Two: Ages And Ashes","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-12-exodus-noir-part-two-ages-and-ash/4000-161505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169678/","id":169678,"name":"New Avengers: Power","site_detail_url":"https://comicvine.gamespot.com/new-avengers-power-1-new-avengers-power/4000-169678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424861/","id":424861,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-61/4000-424861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166961/","id":166961,"name":"Regicide Prologue: Pros & Cons","site_detail_url":"https://comicvine.gamespot.com/the-darkness-79-regicide-prologue-pros-cons/4000-166961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167526/","id":167526,"name":"The Archies In New York","site_detail_url":"https://comicvine.gamespot.com/archie-friends-134-the-archies-in-new-york/4000-167526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175021/","id":175021,"name":"Angels And Devils","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-5-angels-and-devils/4000-175021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716068/","id":716068,"name":"Police and Thieves","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-189-police-and-t/4000-716068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159792/","id":159792,"name":"The Masters Of Doom, Part 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-567-the-masters-of-doom-part-2/4000-159792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166318/","id":166318,"name":"The Great Leap","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-great-leap-1-the-great-leap/4000-166318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198660/","id":198660,"name":"Spider-Man: Crime and Punisher","site_detail_url":"https://comicvine.gamespot.com/spider-man-crime-and-punisher-1-spider-man-crime-a/4000-198660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228352/","id":228352,"name":"","site_detail_url":"https://comicvine.gamespot.com/gargoyles-bad-guys-1/4000-228352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166262/","id":166262,"name":"Fantastic Four: Requiem","site_detail_url":"https://comicvine.gamespot.com/ultimatum-fantastic-four-requiem-1-fantastic-four-/4000-166262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424065/","id":424065,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-60/4000-424065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259109/","id":259109,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-2-payback/4000-259109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159270/","id":159270,"name":"Public Exposure, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-5-public-exposure-pt-1/4000-159270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159240/","id":159240,"name":"American Son Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-596-american-son-part-2/4000-159240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159237/","id":159237,"name":"Missing You","site_detail_url":"https://comicvine.gamespot.com/the-authority-11-missing-you/4000-159237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159759/","id":159759,"name":"American Son Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-597-american-son-part-3/4000-159759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159697/","id":159697,"name":"No Future, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-42-no-future-part-1/4000-159697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159389/","id":159389,"name":"","site_detail_url":"https://comicvine.gamespot.com/timestorm-20092099-spider-man-one-shot-1/4000-159389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160420/","id":160420,"name":"Unleashing the Beast","site_detail_url":"https://comicvine.gamespot.com/power-girl-2-unleashing-the-beast/4000-160420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160546/","id":160546,"name":"Homeland Part 2","site_detail_url":"https://comicvine.gamespot.com/war-machine-7-homeland-part-2/4000-160546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160692/","id":160692,"name":"Young Masters, Part Two","site_detail_url":"https://comicvine.gamespot.com/dark-reign-young-avengers-2-young-masters-part-two/4000-160692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160443/","id":160443,"name":"Ring Out The Old, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/ex-machina-43-ring-out-the-old-chapter-3/4000-160443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160454/","id":160454,"name":"World's Most Wanted, Part 7 - The Shape of the World These Days","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-14-worlds-most-wanted-part/4000-160454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161518/","id":161518,"name":"Utopia Chapter 1","site_detail_url":"https://comicvine.gamespot.com/dark-avengersuncanny-x-men-utopia-1-utopia-chapter/4000-161518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161499/","id":161499,"name":"American Son, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-598-american-son-part-4/4000-161499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161527/","id":161527,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra-4-part-four/4000-161527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159712/","id":159712,"name":"Sisterhood Part 4","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-511-sisterhood-part-4/4000-159712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161617/","id":161617,"name":"The Fall of the House of Rand","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-27-the-fall-of-the-house-of/4000-161617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159277/","id":159277,"name":"World Gone Wrong","site_detail_url":"https://comicvine.gamespot.com/the-mighty-5-world-gone-wrong/4000-159277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169585/","id":169585,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-misfits-1-vol-1/4000-169585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167355/","id":167355,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/filthy-rich-1-hc/4000-167355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174069/","id":174069,"name":"Year One Part One","site_detail_url":"https://comicvine.gamespot.com/die-hard-year-one-1-year-one-part-one/4000-174069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178192/","id":178192,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-force-cable-messiah-war-1-tpb/4000-178192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165464/","id":165464,"name":"Endgame, Part 10","site_detail_url":"https://comicvine.gamespot.com/spawn-194-endgame-part-10/4000-165464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189157/","id":189157,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-broken-worlds-1-tpb/4000-189157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191366/","id":191366,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/annihilation-classic-1-tpb/4000-191366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201641/","id":201641,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-4-volume-4/4000-201641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202611/","id":202611,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengersinvaders-1-tpb/4000-202611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200647/","id":200647,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-4-book-four/4000-200647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203577/","id":203577,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-animal-attack-1-volum/4000-203577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160410/","id":160410,"name":"You Can't Get There From Here","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-26-you-can-t-get-there-from-he/4000-160410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160422/","id":160422,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/vigilante-7-untitled/4000-160422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166216/","id":166216,"name":"The Self-Preservation Society, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-33-the-self-preservation-society-part-thr/4000-166216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159300/","id":159300,"name":"","site_detail_url":"https://comicvine.gamespot.com/prototype-3/4000-159300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232118/","id":232118,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-11-volum/4000-232118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161538/","id":161538,"name":"Public Exposure, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-6-public-exposure-pt-2/4000-161538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424953/","id":424953,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-greatest-foes-of-wolverine-1-t/4000-424953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161504/","id":161504,"name":"The Great Fables Crossover, Part 9 of 9: Kill Your Darlings","site_detail_url":"https://comicvine.gamespot.com/literals-3-the-great-fables-crossover-part-9-of-9-/4000-161504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160414/","id":160414,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/ultimatum-spider-man-requiem-1-part-one/4000-160414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355505/","id":355505,"name":"Tech-War/Children of the Revolution","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-11-tech-warchildren-of-the-revolutio/4000-355505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156678/","id":156678,"name":"24/7 Part Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-593-247-part-two/4000-156678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156683/","id":156683,"name":"The Dragon's Corridor, Pt. 3 / Inside America","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-4-the-dragon-s-corridor-pt-3-insid/4000-156683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157164/","id":157164,"name":"Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/deadpool-suicide-kings-2-part-2-of-5/4000-157164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157367/","id":157367,"name":"Universal Monster","site_detail_url":"https://comicvine.gamespot.com/all-new-savage-she-hulk-2-universal-monster/4000-157367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157577/","id":157577,"name":"Deathtrap Part 4","site_detail_url":"https://comicvine.gamespot.com/titans-13-deathtrap-part-4/4000-157577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157784/","id":157784,"name":"Taking the Fall","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-5-taking-the-fall/4000-157784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157850/","id":157850,"name":"Exit Interview; Who Killed Gwen Reilly?; Litter Bugged Out!; Between Flights","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-6-exit-interview-who-kil/4000-157850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158694/","id":158694,"name":"Payday","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-hood-1-payday/4000-158694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162635/","id":162635,"name":"War of the Witchblades, Part 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-128-war-of-the-witchblades-part-4/4000-162635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178305/","id":178305,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-rising-1-hctpb/4000-178305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156625/","id":156625,"name":"Bullseye, Part 1: The Shaft","site_detail_url":"https://comicvine.gamespot.com/deadpool-10-bullseye-part-1-the-shaft/4000-156625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232082/","id":232082,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-3-volume-3/4000-232082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159556/","id":159556,"name":"This Man - This Monkey!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-grunt-line-1-this-man-this-monkey/4000-159556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255725/","id":255725,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nyx-wannabe-1-tpb/4000-255725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163391/","id":163391,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-2-vol-2/4000-163391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187198/","id":187198,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-fighting-chance-denial-1-tpb/4000-187198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396260/","id":396260,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/lost-girls-1-hc/4000-396260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158803/","id":158803,"name":"Raising The Bar!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-11-raising-the-bar/4000-158803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156746/","id":156746,"name":"","site_detail_url":"https://comicvine.gamespot.com/human-torch-comics-70th-anniversary-special-1/4000-156746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236132/","id":236132,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/asterios-polyp-1-hc/4000-236132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163075/","id":163075,"name":"Taster's Choice, Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/chew-2-taster-s-choice-part-2-of-5/4000-163075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298204/","id":298204,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-30/4000-298204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297563/","id":297563,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-3/4000-297563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295871/","id":295871,"name":"¡Karma... Posee a la Gente!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-11-karma-posee-a-la-gente/4000-295871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596054/","id":596054,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/spider-girl-marked-for-death-1-volume-11/4000-596054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472869/","id":472869,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-37/4000-472869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164845/","id":164845,"name":"Captain Britain Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-britain-omnibus-1-captain-britain-omnibus/4000-164845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203100/","id":203100,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-heroes-for-hire-1-tpb/4000-203100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205553/","id":205553,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-punisher-war-journal-1-tpb/4000-205553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286200/","id":286200,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-spectacular-spider-man-4-volume-four/4000-286200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158456/","id":158456,"name":"Exodus Noir, Part One: My Father's Keeper","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-11-exodus-noir-part-one-my-fathers-k/4000-158456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169037/","id":169037,"name":"The Hunter","site_detail_url":"https://comicvine.gamespot.com/richard-starks-parker-1-the-hunter/4000-169037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175490/","id":175490,"name":"Venom: Dark Origin","site_detail_url":"https://comicvine.gamespot.com/venom-dark-origin-1-venom-dark-origin/4000-175490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224211/","id":224211,"name":"1985 Trade Paperback","site_detail_url":"https://comicvine.gamespot.com/1985-1-1985-trade-paperback/4000-224211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256647/","id":256647,"name":"The FINAL BATTLE!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-7-the-final-battle/4000-256647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424064/","id":424064,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-59/4000-424064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716067/","id":716067,"name":"Public Enemy","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-188-public-enemy/4000-716067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251520/","id":251520,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-4-volume-4/4000-251520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158683/","id":158683,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-stand-american-nightmares-3/4000-158683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163262/","id":163262,"name":"Crooked Conclusion: Brought To Light","site_detail_url":"https://comicvine.gamespot.com/the-darkness-78-crooked-conclusion-brought-to-ligh/4000-163262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175020/","id":175020,"name":"There's A New Spider-Girl In Town!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-4-theres-a-new-spider-girl/4000-175020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240258/","id":240258,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spawn-endgame-1-volume-1/4000-240258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430403/","id":430403,"name":"Ayn Rand!","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-0-ayn-rand/4000-430403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157852/","id":157852,"name":"The Masters of Doom Part One of Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-566-the-masters-of-doom-part-one-of/4000-157852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185131/","id":185131,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-thor-4-volume-4/4000-185131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185310/","id":185310,"name":"The Immortal Iron Fist Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-omnibus-1-the-immortal-iron/4000-185310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424063/","id":424063,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-58/4000-424063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156649/","id":156649,"name":"A New Beginning","site_detail_url":"https://comicvine.gamespot.com/power-girl-1-a-new-beginning/4000-156649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156686/","id":156686,"name":"","site_detail_url":"https://comicvine.gamespot.com/prototype-2/4000-156686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156646/","id":156646,"name":"Messiah War, Part 4","site_detail_url":"https://comicvine.gamespot.com/cable-14-messiah-war-part-4/4000-156646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156621/","id":156621,"name":"Dead Run","site_detail_url":"https://comicvine.gamespot.com/the-flash-rebirth-2-dead-run/4000-156621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157216/","id":157216,"name":"","site_detail_url":"https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-1/4000-157216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157288/","id":157288,"name":"Young Masters, Part One","site_detail_url":"https://comicvine.gamespot.com/dark-reign-young-avengers-1-young-masters-part-one/4000-157288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157332/","id":157332,"name":"A Mile In My Moccasins, Part 1 / One-Percenter, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-73-a-mile-in-my-moccasins-part-1-one-per/4000-157332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157778/","id":157778,"name":"24/7 Finale","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-594-247-finale/4000-157778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157889/","id":157889,"name":"","site_detail_url":"https://comicvine.gamespot.com/planet-skaar-prologue-1/4000-157889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157767/","id":157767,"name":"Deathtrap, Conclusion: The Eyes Of Joseph Wilson","site_detail_url":"https://comicvine.gamespot.com/vigilante-6-deathtrap-conclusion-the-eyes-of-josep/4000-157767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157812/","id":157812,"name":"A-One-Two-Three-Four!","site_detail_url":"https://comicvine.gamespot.com/killapalooza-1-a-one-two-three-four/4000-157812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158732/","id":158732,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/teen-titans-71-homecoming/4000-158732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158791/","id":158791,"name":"Disassembled, Part 4","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-24-disassembled-part-4/4000-158791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158793/","id":158793,"name":"Escape from the Eighth City, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-26-escape-from-the-eighth-c/4000-158793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158687/","id":158687,"name":"Alamo","site_detail_url":"https://comicvine.gamespot.com/wildcats-11-alamo/4000-158687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158779/","id":158779,"name":"","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-39/4000-158779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158660/","id":158660,"name":"The Descent","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-129-the-descent/4000-158660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158802/","id":158802,"name":"American Son, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-595-american-son-part-1/4000-158802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159276/","id":159276,"name":"The Baxter Job","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-25-the-baxter-job/4000-159276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157779/","id":157779,"name":"Living In Darkness, Part 5","site_detail_url":"https://comicvine.gamespot.com/punisher-5-living-in-darkness-part-5/4000-157779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166731/","id":166731,"name":"Nobody Does it Better","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-60-nobody-does-it-better/4000-166731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158685/","id":158685,"name":"Rock Gods","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-15-rock-gods/4000-158685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172975/","id":172975,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-girl-maybreak-1-volume-5/4000-172975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176169/","id":176169,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn-1-uncanny-x-men-lovelorn/4000-176169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185468/","id":185468,"name":"Ultimates Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimates-omnibus-1-ultimates-omnibus/4000-185468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153930/","id":153930,"name":"Risky Business","site_detail_url":"https://comicvine.gamespot.com/executive-assistant-iris-1-risky-business/4000-153930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162533/","id":162533,"name":"Endgame, Part 9","site_detail_url":"https://comicvine.gamespot.com/spawn-193-endgame-part-9/4000-162533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199541/","id":199541,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-3-volume-3/4000-199541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199542/","id":199542,"name":"Bad Sports; A Mountain From An Anthill!: Surprise!!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-2-bad-sports-a-mountain-from-/4000-199542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169580/","id":169580,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-disenchanted-1-vol-1/4000-169580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167416/","id":167416,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-beyond-wonderland-1-hc-tpb/4000-167416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233715/","id":233715,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-233715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164784/","id":164784,"name":"Carrie Nation","site_detail_url":"https://comicvine.gamespot.com/ce-murphys-take-a-chance-5-carrie-nation/4000-164784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162553/","id":162553,"name":"The Self-Preservation Society, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-32-the-self-preservation-society-part-two/4000-162553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217059/","id":217059,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/the-boys-we-gotta-go-now-1-vol-4/4000-217059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166282/","id":166282,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-1/4000-166282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158973/","id":158973,"name":"Moving Day","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-48-moving-day/4000-158973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183707/","id":183707,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/preacher-1-book-one/4000-183707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158599/","id":158599,"name":"Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk-6-part-6-of-6/4000-158599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250647/","id":250647,"name":"Wonder Woman:Amazons Attack","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-amazons-attack-1-wonder-womanamazons-/4000-250647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157747/","id":157747,"name":"Ring Out The Old, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/ex-machina-42-ring-out-the-old-chapter-2/4000-157747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716066/","id":716066,"name":"Frightful","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-187-frightful/4000-716066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355503/","id":355503,"name":"The War of the Trolls/Ghetto Defendant","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-10-the-war-of-the-trollsghetto-defen/4000-355503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155142/","id":155142,"name":"Deathtrap Part 1","site_detail_url":"https://comicvine.gamespot.com/titans-12-deathtrap-part-1/4000-155142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155152/","id":155152,"name":"W.M.D. Woman of Mass Destruction","site_detail_url":"https://comicvine.gamespot.com/all-new-savage-she-hulk-1-wmd-woman-of-mass-destru/4000-155152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155490/","id":155490,"name":"Living In Darkness, Part 4","site_detail_url":"https://comicvine.gamespot.com/punisher-4-living-in-darkness-part-4/4000-155490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155782/","id":155782,"name":"Part Three: His Name is Bishop, And Nothing Will Ever Be the Same","site_detail_url":"https://comicvine.gamespot.com/x-men-the-times-life-of-lucas-bishop-3-part-three-/4000-155782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156315/","id":156315,"name":"Galacta in Galacta (or \"The World-Eater's Daughter\"); Elsa Bloodstone Monster Hunter in Daddy's Little Girl and Luke Cage in Citizen Cage","site_detail_url":"https://comicvine.gamespot.com/marvel-assistant-sized-spectacular-2-galacta-in-ga/4000-156315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157043/","id":157043,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-132-ultimatum/4000-157043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155160/","id":155160,"name":"Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/deadpool-suicide-kings-1-part-1-of-5/4000-155160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176170/","id":176170,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-child-of-darkness-child-of-light-/4000-176170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178295/","id":178295,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-secret-wars-1/4000-178295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192667/","id":192667,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel-1-tpb/4000-192667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160425/","id":160425,"name":"Cheshire Cat / The Arrangement, Chapter one","site_detail_url":"https://comicvine.gamespot.com/tales-from-wonderland-the-cheshire-cat-1-cheshire-/4000-160425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155711/","id":155711,"name":"With Great Ape Power...","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-amazing-spider-monkey-special-1-with-g/4000-155711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233678/","id":233678,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-warlock-2-volume-2/4000-233678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154628/","id":154628,"name":"The Dragon's Corridor, Pt. 2 / Interlude at Sea","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-3-the-dragon-s-corridor-pt-2-inter/4000-154628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297901/","id":297901,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-17/4000-297901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297562/","id":297562,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-2/4000-297562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252516/","id":252516,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/jla-the-deluxe-edition-2-vol-2/4000-252516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155633/","id":155633,"name":"Sinister Six(Teenth); Nightmare Commute!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-50-sinister-sixteenth/4000-155633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156097/","id":156097,"name":"Untitled","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-10-untitled/4000-156097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162628/","id":162628,"name":"Issue 12","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-12-issue-12/4000-162628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245373/","id":245373,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson-3-volume-three/4000-245373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423867/","id":423867,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-57/4000-423867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155501/","id":155501,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-stand-american-nightmares-2/4000-155501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198664/","id":198664,"name":"Spider-Man: New Ways to Die","site_detail_url":"https://comicvine.gamespot.com/spider-man-new-ways-to-die-1-spider-man-new-ways-t/4000-198664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251085/","id":251085,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/punisher-max-hardcover-5-volume-5/4000-251085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170734/","id":170734,"name":"Avengers: The Initiative: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion-1-avengers/4000-170734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175024/","id":175024,"name":"Into The Fire","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-3-into-the-fire/4000-175024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189716/","id":189716,"name":"Secret Wars II Omnibus","site_detail_url":"https://comicvine.gamespot.com/secret-wars-ii-omnibus-1-secret-wars-ii-omnibus/4000-189716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344260/","id":344260,"name":"Final Crisis Companion","site_detail_url":"https://comicvine.gamespot.com/final-crisis-companion-1-final-crisis-companion/4000-344260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164373/","id":164373,"name":"Prey For Life...","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-56-prey-for-life/4000-164373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716065/","id":716065,"name":"Night of the Hunter","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-186-night-of-the/4000-716065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203178/","id":203178,"name":"Deadpool: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/deadpool-secret-invasion-1-deadpool-secret-invasio/4000-203178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213954/","id":213954,"name":"Sentry: Age of the Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry-age-of-the-sentry-1-sentry-age-of-the-sentr/4000-213954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213993/","id":213993,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/she-hulk-lady-liberators-1-tpb/4000-213993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140963/","id":140963,"name":"","site_detail_url":"https://comicvine.gamespot.com/prototype-1/4000-140963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154447/","id":154447,"name":"Lightning Strikes Twice","site_detail_url":"https://comicvine.gamespot.com/the-flash-rebirth-1-lightning-strikes-twice/4000-154447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154618/","id":154618,"name":"Nick Fury: Agent of Nothing, Part 3","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-3-nick-fury-agent-of-nothing-part-/4000-154618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155158/","id":155158,"name":"Crosshairs","site_detail_url":"https://comicvine.gamespot.com/dark-reign-hawkeye-1-crosshairs/4000-155158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155239/","id":155239,"name":"Timestorm, Part 1","site_detail_url":"https://comicvine.gamespot.com/timestorm-20092099-1-timestorm-part-1/4000-155239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155455/","id":155455,"name":"Face Front Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-591-face-front-part-2/4000-155455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155548/","id":155548,"name":"Deathtrap Part 2","site_detail_url":"https://comicvine.gamespot.com/vigilante-5-deathtrap-part-2/4000-155548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155748/","id":155748,"name":"24/7 Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-592-247-part-one/4000-155748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155774/","id":155774,"name":"Weapon XI, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-35-weapon-xi-pt-3/4000-155774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155781/","id":155781,"name":"Return of the King, Part Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-118-return-of-the-king-part-three/4000-155781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155930/","id":155930,"name":"A Whole Lot of Paper","site_detail_url":"https://comicvine.gamespot.com/marvels-eye-of-the-camera-5-a-whole-lot-of-paper/4000-155930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156119/","id":156119,"name":"Meet The New Boss...","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-38-meet-the-new-boss/4000-156119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156169/","id":156169,"name":"Head Over Heels","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-131-head-over-heels/4000-156169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156079/","id":156079,"name":"The Great Fables Crossover, Part 3 of 9: Start as Deep in the Story As You Can","site_detail_url":"https://comicvine.gamespot.com/literals-1-the-great-fables-crossover-part-3-of-9-/4000-156079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155738/","id":155738,"name":"Messiah War: Part 3","site_detail_url":"https://comicvine.gamespot.com/x-force-14-messiah-war-part-3/4000-155738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155813/","id":155813,"name":"Issue Six","site_detail_url":"https://comicvine.gamespot.com/kick-ass-6-issue-six/4000-155813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156627/","id":156627,"name":"Deathtrap Part 3","site_detail_url":"https://comicvine.gamespot.com/teen-titans-70-deathtrap-part-3/4000-156627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155806/","id":155806,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra-2-part-two/4000-155806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159269/","id":159269,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-133-ultimatum/4000-159269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159316/","id":159316,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/transformers-revenge-of-the-fallen-official-movie-/4000-159316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155435/","id":155435,"name":"The Great Fables Crossover, Part 1 of 9: The Call","site_detail_url":"https://comicvine.gamespot.com/fables-83-the-great-fables-crossover-part-1-of-9-t/4000-155435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162532/","id":162532,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-sword-18/4000-162532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155203/","id":155203,"name":"Deja Vu","site_detail_url":"https://comicvine.gamespot.com/exiles-1-deja-vu/4000-155203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155148/","id":155148,"name":"Push and Pull: Part Two of the Space Between; A Cress in Every Port","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-12-push-and-pull-part-two-of-the-/4000-155148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155848/","id":155848,"name":"Demon With A Crass Hand","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-14-demon-with-a-crass-hand/4000-155848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154426/","id":154426,"name":"Face Front Part One: Together For The First Time Again","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-590-face-front-part-one-tog/4000-154426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159325/","id":159325,"name":"Endgame, Part 8","site_detail_url":"https://comicvine.gamespot.com/spawn-192-endgame-part-8/4000-159325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155436/","id":155436,"name":"Zee, DMZ","site_detail_url":"https://comicvine.gamespot.com/dmz-41-zee-dmz/4000-155436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189158/","id":189158,"name":"Final Crisis","site_detail_url":"https://comicvine.gamespot.com/final-crisis-1-final-crisis/4000-189158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189938/","id":189938,"name":"Deadpool/Thunderbolts: Dark Reign","site_detail_url":"https://comicvine.gamespot.com/dark-reign-deadpoolthunderbolts-1-deadpoolthunderb/4000-189938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199359/","id":199359,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-1-tpb/4000-199359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266288/","id":266288,"name":"Man of Strength: Part Two","site_detail_url":"https://comicvine.gamespot.com/green-lama-2-man-of-strength-part-two/4000-266288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155757/","id":155757,"name":"Ring Out The Old, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ex-machina-41-ring-out-the-old-chapter-1/4000-155757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159299/","id":159299,"name":"The Self-Preservation Society, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-31-the-self-preservation-society-part-one/4000-159299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160424/","id":160424,"name":"Expose","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-59-expose/4000-160424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249310/","id":249310,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-year-one-1-tpb/4000-249310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317099/","id":317099,"name":"Nova e i Guardiani della Galassia 2 di 2","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-56-nova-e-i-guardiani-della-galas/4000-317099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159927/","id":159927,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolution-0/4000-159927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183706/","id":183706,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-love-stories-for-dead-people-1-vo/4000-183706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155345/","id":155345,"name":"Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk-4-part-4-of-6/4000-155345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472718/","id":472718,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-doctor-strange-4-volume-4/4000-472718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156149/","id":156149,"name":"Rise of the Olympian, Part 6: Uprising","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-31-rise-of-the-olympian-part-6-uprisi/4000-156149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275541/","id":275541,"name":"Wölfe","site_detail_url":"https://comicvine.gamespot.com/fables-9-wolfe/4000-275541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218178/","id":218178,"name":"Sleeper Season One","site_detail_url":"https://comicvine.gamespot.com/sleeper-season-sets-1-sleeper-season-one/4000-218178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355500/","id":355500,"name":"Rumble in the Jungle/Eastern Promises Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-9-rumble-in-the-jungleeastern-promis/4000-355500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619041/","id":619041,"name":"Resonances","site_detail_url":"https://comicvine.gamespot.com/uchronie-s-new-york-2-resonances/4000-619041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160434/","id":160434,"name":"","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-chapter-two-0/4000-160434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153094/","id":153094,"name":"House Of M/Hulk: Punyville; Heart Of The Atom; Development Hell; Post Mortem","site_detail_url":"https://comicvine.gamespot.com/hulk-broken-worlds-1-house-of-mhulk-punyville-hear/4000-153094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153411/","id":153411,"name":"A World Without","site_detail_url":"https://comicvine.gamespot.com/titans-11-a-world-without/4000-153411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153461/","id":153461,"name":"The Hard Way; Endless Stolen Sky, Part 2; Hero's Diner; Mojo Makes A Deal","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-2-the-hard-way-endless-stolen-sk/4000-153461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153982/","id":153982,"name":"","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-darkhawk-2/4000-153982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154516/","id":154516,"name":"Yesterday Gambit","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-9-yesterday-gambit/4000-154516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154427/","id":154427,"name":"Hard to Get","site_detail_url":"https://comicvine.gamespot.com/deadpool-9-hard-to-get/4000-154427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153652/","id":153652,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-stand-american-nightmares-1/4000-153652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155491/","id":155491,"name":"The Way Things Are...","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2009-avengers-1-the-way-things/4000-155491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176370/","id":176370,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-not-dead-yet-1-hctpb/4000-176370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153058/","id":153058,"name":"All Your Base Are Belong to Us","site_detail_url":"https://comicvine.gamespot.com/deadpool-8-all-your-base-are-belong-to-us/4000-153058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213815/","id":213815,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-secret-invasion-1/4000-213815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153668/","id":153668,"name":"With Great Responsibility Comes Great Power - Character Assassination: Coda; Nice Things; Loose Ends","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-extra-3-with-great-responsi/4000-153668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247288/","id":247288,"name":"New Krypton Book 1","site_detail_url":"https://comicvine.gamespot.com/superman-new-krypton-1-new-krypton-book-1/4000-247288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259636/","id":259636,"name":"Thy Kingdom Come: Part Three","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-3-thy-/4000-259636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232259/","id":232259,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-9-volume-9/4000-232259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154583/","id":154583,"name":"Bad Day At The Banana Factory; Charles Darwin Presents: The Awesome Origin Of The Species!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-speedball-special-1-bad-day-at-the-ban/4000-154583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156184/","id":156184,"name":"Who is Gwen Reilly?; Relevant Experience; Treasure Hunted; No More Hay","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-5-who-is-gwen-reilly-rel/4000-156184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153665/","id":153665,"name":"Never Say Die!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-30-never-say-die/4000-153665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298203/","id":298203,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-29/4000-298203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297561/","id":297561,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-1/4000-297561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295870/","id":295870,"name":"Spiderman y la Viuda Negra","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-10-spiderman-y-la-viuda-n/4000-295870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164374/","id":164374,"name":"Wanted... Dead or Alive!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-55-wanted-dead-or-alive/4000-164374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203582/","id":203582,"name":"Bringers of the Storm","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-thor-1-bringers-of-the-storm/4000-203582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301242/","id":301242,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-secret-history-of-the-authority-hawksmoor-1-tp/4000-301242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157762/","id":157762,"name":"Issue 11","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-11-issue-11/4000-157762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225163/","id":225163,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson-2-volume-two/4000-225163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335565/","id":335565,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secret-invasion-2-book-2/4000-335565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716064/","id":716064,"name":"Wing Dings!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-185-wing-dings/4000-716064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258730/","id":258730,"name":"Questions","site_detail_url":"https://comicvine.gamespot.com/spawn-origins-collection-1-questions/4000-258730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175019/","id":175019,"name":"Who Killed Gwen Reilly?","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-2-who-killed-gwen-reilly/4000-175019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169725/","id":169725,"name":"Mighty Avengers: Secret Invasion, Book Two","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-two-1-mighty-/4000-169725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256196/","id":256196,"name":"Planet Hulk","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-81-planet-hulk/4000-256196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260778/","id":260778,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-31/4000-260778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153069/","id":153069,"name":"The Lady Vanishes","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-reunion-1-the-lady-vanishes/4000-153069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153086/","id":153086,"name":"The Bridge, Chapter One","site_detail_url":"https://comicvine.gamespot.com/dark-reign-fantastic-four-1-the-bridge-chapter-one/4000-153086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153061/","id":153061,"name":"Nick Fury: Agent of Nothing, Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-2-nick-fury-agent-of-nothing-part-/4000-153061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153488/","id":153488,"name":"Part Five","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel-5-part-five/4000-153488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153060/","id":153060,"name":"Wasteland Blues, Conclusion","site_detail_url":"https://comicvine.gamespot.com/cable-12-wasteland-blues-conclusion/4000-153060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153677/","id":153677,"name":"Heaven on Earth","site_detail_url":"https://comicvine.gamespot.com/ultimatum-3-heaven-on-earth/4000-153677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153667/","id":153667,"name":"Character Assassination, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-588-character-assassination/4000-153667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153679/","id":153679,"name":"Weapon XI, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-34-weapon-xi-pt-2/4000-153679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153688/","id":153688,"name":"","site_detail_url":"https://comicvine.gamespot.com/vigilante-4/4000-153688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153653/","id":153653,"name":"Suicide Leper: Part 2","site_detail_url":"https://comicvine.gamespot.com/x-force-13-suicide-leper-part-2/4000-153653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153967/","id":153967,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-avengers-51/4000-153967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153981/","id":153981,"name":"End of Story","site_detail_url":"https://comicvine.gamespot.com/nova-23-end-of-story/4000-153981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153978/","id":153978,"name":"Hand in Hand","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-13-hand-in-hand/4000-153978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154017/","id":154017,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/x-forcecable-messiah-war-1-chapter-1/4000-154017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153958/","id":153958,"name":"Return of the King, Part Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-117-return-of-the-king-part-two/4000-153958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155218/","id":155218,"name":"Book 1: The Flood","site_detail_url":"https://comicvine.gamespot.com/universal-war-one-revelations-1-book-1-the-flood/4000-155218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153082/","id":153082,"name":"Mordida","site_detail_url":"https://comicvine.gamespot.com/bang-tango-2-mordida/4000-153082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156702/","id":156702,"name":"Rodeo Fuck","site_detail_url":"https://comicvine.gamespot.com/the-boys-30-rodeo-fuck/4000-156702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156779/","id":156779,"name":"Gods & Monsters, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/fusion-1-gods-and-monsters-part-1-of-3/4000-156779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157576/","id":157576,"name":"War of the Witchblades, Part 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-127-war-of-the-witchblades-part-3/4000-157576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157741/","id":157741,"name":"The Black Terror Goes To Washington (Part 4)","site_detail_url":"https://comicvine.gamespot.com/black-terror-4-the-black-terror-goes-to-washington/4000-157741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158578/","id":158578,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-sword-17/4000-158578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158814/","id":158814,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/transformers-revenge-of-the-fallen-official-movie-/4000-158814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159285/","id":159285,"name":"A Time To Die","site_detail_url":"https://comicvine.gamespot.com/ultimatum-4-a-time-to-die/4000-159285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159358/","id":159358,"name":"The Doom that Came to Robo","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-shadow-from-beyond-time-2-the-/4000-159358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179762/","id":179762,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-2-volume-t/4000-179762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153955/","id":153955,"name":"Marked","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-589-marked/4000-153955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153430/","id":153430,"name":"War Powers, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-40-war-powers-conclusion/4000-153430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153654/","id":153654,"name":"Dead to Rights","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-130-dead-to-rights/4000-153654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200160/","id":200160,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-1-volume-1/4000-200160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157308/","id":157308,"name":"The Buddy System; Walk Tall; Best Of Show","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-1-the-buddy-system-walk-tall-/4000-157308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201642/","id":201642,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-2-volume-2/4000-201642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224086/","id":224086,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimates-3-who-killed-the-scarlet-witch-1-tpb/4000-224086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157295/","id":157295,"name":"FCBD Edition","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1-fcbd-edition/4000-157295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249311/","id":249311,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-trilogy-1-tpb/4000-249311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157750/","id":157750,"name":"","site_detail_url":"https://comicvine.gamespot.com/four-eyes-3/4000-157750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153673/","id":153673,"name":"Living In Darkness, Part 3","site_detail_url":"https://comicvine.gamespot.com/punisher-3-living-in-darkness-part-3/4000-153673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280461/","id":280461,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-spider-women-1-tpb/4000-280461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318260/","id":318260,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-the-other-side-1-vol-1/4000-318260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318459/","id":318459,"name":"A League of Their Own","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own-1-a-/4000-318459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332671/","id":332671,"name":"Savarese","site_detail_url":"https://comicvine.gamespot.com/i-maestri-del-fumetto-9-savarese/4000-332671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154920/","id":154920,"name":"A Timely Family Appearance","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-46-a-timely-famil/4000-154920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153980/","id":153980,"name":"Three Words","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-23-three-words/4000-153980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153666/","id":153666,"name":"Battleground Latveria","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-3-battleground-latveria/4000-153666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183409/","id":183409,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-the-deluxe-edition-2-book-two/4000-183409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317748/","id":317748,"name":"Volume Ten","site_detail_url":"https://comicvine.gamespot.com/invincible-who-s-the-boss-1-volume-ten/4000-317748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153080/","id":153080,"name":"Call and Response: Part One of the Space Between; The City in the Space Between","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-11-call-and-response-part-one-of-/4000-153080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154245/","id":154245,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-noir-4/4000-154245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153650/","id":153650,"name":"Grassroots","site_detail_url":"https://comicvine.gamespot.com/ex-machina-special-4-grassroots/4000-153650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151132/","id":151132,"name":"Haunted; Dawn of the Darkhawk","site_detail_url":"https://comicvine.gamespot.com/war-of-kings-darkhawk-1-haunted-dawn-of-the-darkha/4000-151132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151147/","id":151147,"name":"Madripoor Mixup; Iron Man 2020: Endless Stolen Sky Part 1; Iron Man: Making an Appearance: Bobby and Sam in Mojoworld","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-1-madripoor-mixup-iron-man-2020-/4000-151147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151957/","id":151957,"name":"The End Of Mays","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-29-the-end-of-mays/4000-151957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156285/","id":156285,"name":"War of the Witchblades, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-126-war-of-the-witchblades-part-2/4000-156285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151131/","id":151131,"name":"How Low Can You Go, Part II: What About Bob?","site_detail_url":"https://comicvine.gamespot.com/deadpool-7-how-low-can-you-go-part-ii-what-about-b/4000-151131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155511/","id":155511,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-6/4000-155511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222752/","id":222752,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-1-volume-one/4000-222752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472868/","id":472868,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-36/4000-472868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199887/","id":199887,"name":"Civil War: House of M","site_detail_url":"https://comicvine.gamespot.com/civil-war-house-of-m-1-civil-war-house-of-m/4000-199887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224523/","id":224523,"name":"Spymaster","site_detail_url":"https://comicvine.gamespot.com/dark-reign-made-men-1-spymaster/4000-224523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164375/","id":164375,"name":"Spider-Man Vs Captain America!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-53-spider-man-vs-captai/4000-164375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224090/","id":224090,"name":"Ultimate Iron Man II","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-ii-1-ultimate-iron-man-ii/4000-224090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716063/","id":716063,"name":"Friend or Foe?","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-184-friend-or-fo/4000-716063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172978/","id":172978,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-amazing-spider-man-1-tpb/4000-172978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152817/","id":152817,"name":"Heroic Proportions, Part 2 (Of 2)","site_detail_url":"https://comicvine.gamespot.com/she-hulk-38-heroic-proportions-part-2-of-2/4000-152817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337554/","id":337554,"name":"Guerra Segreta","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-5-guerra-segreta/4000-337554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155492/","id":155492,"name":"Issue 10","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-10-issue-10/4000-155492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198663/","id":198663,"name":"Spider-Man: Kraven's First Hunt","site_detail_url":"https://comicvine.gamespot.com/spider-man-kravens-first-hunt-1-spider-man-kravens/4000-198663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169711/","id":169711,"name":"Mighty Avengers: Secret Invasion, Book One","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one-1-mighty-/4000-169711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422715/","id":422715,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-52/4000-422715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175004/","id":175004,"name":"Who Is Gwen Reilly?","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-girl-1-who-is-gwen-reilly/4000-175004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337551/","id":337551,"name":"Spider-Man Soltanto un altro giorno","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-4-spider-man-soltanto-un/4000-337551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209220/","id":209220,"name":"Marvel Zombies 2","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-1-marvel-zombies-2/4000-209220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716062/","id":716062,"name":"This Man, This Monster!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-183-this-man-thi/4000-716062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335770/","id":335770,"name":"Spder-Man Back in Black","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-3-spder-man-back-in-blac/4000-335770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151125/","id":151125,"name":"Living in Darkness, Part 2","site_detail_url":"https://comicvine.gamespot.com/punisher-2-living-in-darkness-part-2/4000-151125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151148/","id":151148,"name":"World's most Wanted, part 3: No Future","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-10-worlds-most-wanted-part/4000-151148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151129/","id":151129,"name":"Character Assassination, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-585-character-assassination/4000-151129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151290/","id":151290,"name":"Black Dawn; Origins & Omens","site_detail_url":"https://comicvine.gamespot.com/nightwing-153-black-dawn-origins-omens/4000-151290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151826/","id":151826,"name":"Character Assassination, Interlude","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-586-character-assassination/4000-151826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151878/","id":151878,"name":"Victory","site_detail_url":"https://comicvine.gamespot.com/thor-600-victory/4000-151878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152418/","id":152418,"name":"","site_detail_url":"https://comicvine.gamespot.com/nyx-no-way-home-6/4000-152418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151879/","id":151879,"name":"Monsters Myths And Marvels","site_detail_url":"https://comicvine.gamespot.com/marvel-tv-galactus-the-real-story-1-monsters-myths/4000-151879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152694/","id":152694,"name":"To A Shattered Atlantis","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-60-to-a-shattered-atlantis/4000-152694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152756/","id":152756,"name":"The Death Of Ms. Marvel, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-36-the-death-of-ms-marvel-part-2/4000-152756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152794/","id":152794,"name":"The Rapture","site_detail_url":"https://comicvine.gamespot.com/nova-22-the-rapture/4000-152794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152792/","id":152792,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-131-ultimatum/4000-152792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152717/","id":152717,"name":"Dark Reign Part 3","site_detail_url":"https://comicvine.gamespot.com/war-machine-3-dark-reign-part-3/4000-152717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152716/","id":152716,"name":"Weapon XI, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-33-weapon-xi-pt-1/4000-152716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152532/","id":152532,"name":"Black Adam & Isis, Part 2: Family Ties","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-24-black-adam-isis-part/4000-152532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151640/","id":151640,"name":"El Paseo","site_detail_url":"https://comicvine.gamespot.com/bang-tango-1-el-paseo/4000-151640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152744/","id":152744,"name":"The Spiders From Mars (Part 2)","site_detail_url":"https://comicvine.gamespot.com/young-liars-12-the-spiders-from-mars-part-2/4000-152744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156698/","id":156698,"name":"If Looks Could Kill; Ned","site_detail_url":"https://comicvine.gamespot.com/witchblade-annual-1-if-looks-could-kill-ned/4000-156698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156907/","id":156907,"name":"Horror On Houston Street","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-shadow-from-beyond-time-1-horr/4000-156907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157925/","id":157925,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-warriors-official-movie-adaptation-2/4000-157925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171719/","id":171719,"name":"Secret Invasion: New Warriors","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-new-warriors-1-secret-invasion-new/4000-171719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175652/","id":175652,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-the-wonder-years-1-volume-3/4000-175652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176292/","id":176292,"name":"Avengers: Hawkeye","site_detail_url":"https://comicvine.gamespot.com/avengers-hawkeye-1-avengers-hawkeye/4000-176292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152231/","id":152231,"name":"Character Assassination, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-587-character-assassination/4000-152231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156307/","id":156307,"name":"Endgame, Part 7","site_detail_url":"https://comicvine.gamespot.com/spawn-191-endgame-part-7/4000-156307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152519/","id":152519,"name":"War Powers, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-39-war-powers-part-3/4000-152519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190607/","id":190607,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-disassembled-iron-man-thor-and-captain-am/4000-190607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203576/","id":203576,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-jumping-to-conclusion/4000-203576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236731/","id":236731,"name":"Vol. 4: Nova Corps","site_detail_url":"https://comicvine.gamespot.com/nova-nova-corps-1-vol-4-nova-corps/4000-236731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152364/","id":152364,"name":"Vigilante vs. Nightwing","site_detail_url":"https://comicvine.gamespot.com/vigilante-3-vigilante-vs-nightwing/4000-152364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152412/","id":152412,"name":"Last Stand of the Spirits of Vengeance, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-32-last-stand-of-the-spirits-of-vengea/4000-152412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327691/","id":327691,"name":"Meteore","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-302-meteore/4000-327691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151947/","id":151947,"name":"The Blue Horizon: Chapter Five of the Dark Ages","site_detail_url":"https://comicvine.gamespot.com/fables-81-the-blue-horizon-chapter-five-of-the-dar/4000-151947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152204/","id":152204,"name":"Looking for Blood","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-2-looking-for-blood/4000-152204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422703/","id":422703,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-51/4000-422703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152228/","id":152228,"name":"Salvage, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-221-salvage-part-2/4000-152228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181919/","id":181919,"name":"The Invincible Iron Man: The Five Nightmares","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-the-five-nightmares-1-the-invi/4000-181919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255156/","id":255156,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-3/4000-255156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265717/","id":265717,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-4-volume-4/4000-265717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155799/","id":155799,"name":"Conquest Part One","site_detail_url":"https://comicvine.gamespot.com/invincible-61-conquest-part-one/4000-155799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151223/","id":151223,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-noir-3/4000-151223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275554/","id":275554,"name":"Flucht (Nach) Vorn","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-1-flucht-nach-vorn/4000-275554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425266/","id":425266,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-1-tpb/4000-425266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150053/","id":150053,"name":"... Everything You Read...","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-47-everything-you-rea/4000-150053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150060/","id":150060,"name":null,"site_detail_url":"https://comicvine.gamespot.com/nova-origin-of-richard-rider-1/4000-150060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151824/","id":151824,"name":"Cry, D'Spayre","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-8-cry-d-spayre/4000-151824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150037/","id":150037,"name":"Grim, Be My Goblin!; Li'l Benjy - The SPectacular Spider-Baby: Cool Cake!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-28-grim-be-my-goblin-lil-b/4000-150037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153520/","id":153520,"name":"The Death Of The Sentry","site_detail_url":"https://comicvine.gamespot.com/the-age-of-the-sentry-6-the-death-of-the-sentry/4000-153520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153481/","id":153481,"name":"War of the Witchblades, Part 1; Augery","site_detail_url":"https://comicvine.gamespot.com/witchblade-125-war-of-the-witchblades-part-1-auger/4000-153481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150767/","id":150767,"name":"Black And White, A Night Out With Wolverine","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-extra-2-black-and-white-a-n/4000-150767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198669/","id":198669,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-brand-new-day-3-volume-3/4000-198669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150621/","id":150621,"name":"The Big Payoff?","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-32-the-big-payoff/4000-150621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208818/","id":208818,"name":"","site_detail_url":"https://comicvine.gamespot.com/tales-designed-to-thrizzle-5/4000-208818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246529/","id":246529,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-secret-invasion-1-tpb/4000-246529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268838/","id":268838,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/connective-tissue-1-hc/4000-268838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183606/","id":183606,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/moon-knight-the-death-of-marc-spector-1-hctpb/4000-183606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149801/","id":149801,"name":"Living In Darkness, Part 1","site_detail_url":"https://comicvine.gamespot.com/punisher-1-living-in-darkness-part-1/4000-149801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150513/","id":150513,"name":"Doctor Doom and the Sinister Six in Doomed If You Do, Doomed If You Don't!","site_detail_url":"https://comicvine.gamespot.com/dr-doom-and-the-masters-of-evil-1-doctor-doom-and-/4000-150513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150062/","id":150062,"name":"The Resurrection of Ma Gnucci; Part Five","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-5-the-resurrection-of-ma-gnucci-/4000-150062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150707/","id":150707,"name":"The Resurrection of Ma Gnucci; Conclusion","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-6-the-resurrection-of-ma-gnucci-/4000-150707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133118/","id":133118,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-nights-of-wundagore-1-tpb/4000-133118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290349/","id":290349,"name":"Ojo de Halcón","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-presentan-6-ojo-de-halcon/4000-290349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298202/","id":298202,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-28/4000-298202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295869/","id":295869,"name":"No Es Manera DeTratar A Una Dama","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-9-no-es-manera-detratar-a/4000-295869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157052/","id":157052,"name":"","site_detail_url":"https://comicvine.gamespot.com/watchmensch-1/4000-157052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335453/","id":335453,"name":"La Morte di Capitan America","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-2-la-morte-di-capitan-am/4000-335453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154010/","id":154010,"name":"Issue 9","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-9-issue-9/4000-154010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165001/","id":165001,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-mortal-iron-fist-1-volu/4000-165001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192867/","id":192867,"name":"The Death of Captain America: The Man Who Bought America","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-man-who-bought-americ/4000-192867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312111/","id":312111,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-1-civil-war/4000-312111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150689/","id":150689,"name":"Heroic Proportions, Part 1 (Of 2)","site_detail_url":"https://comicvine.gamespot.com/she-hulk-37-heroic-proportions-part-1-of-2/4000-150689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251522/","id":251522,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-2-volume-2/4000-251522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150706/","id":150706,"name":"Captain Trips Part Five","site_detail_url":"https://comicvine.gamespot.com/the-stand-captain-trips-5-captain-trips-part-five/4000-150706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153687/","id":153687,"name":"An Old Pattern Repeating Itself; Weaving Fate","site_detail_url":"https://comicvine.gamespot.com/trinity-42-an-old-pattern-repeating-itself-weaving/4000-153687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172997/","id":172997,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-front-line-1-tpb/4000-172997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213812/","id":213812,"name":"Punisher War Journal: Jigsaw","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-jigsaw-1-punisher-war-journal/4000-213812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385918/","id":385918,"name":"Человек-Паук и Росомаха","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-i-rosomakha-spetsialnoye-isdaniye-1-/4000-385918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422677/","id":422677,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-50/4000-422677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172448/","id":172448,"name":"Captain Britain and MI:13 : Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/captain-britain-and-mi13-secret-invasion-1-captain/4000-172448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716061/","id":716061,"name":"This Man, This Monster!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-182-this-man-thi/4000-716061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183398/","id":183398,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/pluto-urasawa-x-tezuka-2-vol-2/4000-183398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150597/","id":150597,"name":"Mr. & Mrs. Thing","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-563-mr-mrs-thing/4000-150597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153563/","id":153563,"name":"Our Rightful Realm; His Hunger","site_detail_url":"https://comicvine.gamespot.com/trinity-41-our-rightful-realm-his-hunger/4000-153563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154076/","id":154076,"name":"Issue 8","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-8-issue-8/4000-154076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326625/","id":326625,"name":"The Stand: Captain Trips","site_detail_url":"https://comicvine.gamespot.com/the-stand-captain-trips-1-the-stand-captain-trips/4000-326625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167588/","id":167588,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-turning-pages-1-volume-5/4000-167588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149803/","id":149803,"name":"Mind On Fire, Part 2: Burning Questions","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-582-mind-on-fire-part-2-bur/4000-149803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422670/","id":422670,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-49/4000-422670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255157/","id":255157,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-2/4000-255157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149786/","id":149786,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/nyx-no-way-home-5-part-5/4000-149786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150049/","id":150049,"name":"Rex","site_detail_url":"https://comicvine.gamespot.com/house-of-m-civil-war-5-rex/4000-150049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150498/","id":150498,"name":"White Queen, Dark Reign","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual-2-white-queen-dark-reign/4000-150498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150690/","id":150690,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-130-ultimatum/4000-150690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150705/","id":150705,"name":"Lady Bullseye: Conclusion","site_detail_url":"https://comicvine.gamespot.com/daredevil-115-lady-bullseye-conclusion/4000-150705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151120/","id":151120,"name":"Escape from the Eighth City, Chapter One","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-22-escape-from-the-eighth-c/4000-151120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151133/","id":151133,"name":"Let It Be!","site_detail_url":"https://comicvine.gamespot.com/greatest-hits-5-let-it-be/4000-151133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155437/","id":155437,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/last-reign-kings-of-war-5-part-5/4000-155437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153675/","id":153675,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-4/4000-153675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149908/","id":149908,"name":"Platonic","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-583-platonic/4000-149908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150515/","id":150515,"name":"Character Assassination, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-584-character-assassination/4000-150515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153966/","id":153966,"name":"Endgame, Part 6","site_detail_url":"https://comicvine.gamespot.com/spawn-190-endgame-part-6/4000-153966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150241/","id":150241,"name":"War Powers, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-38-war-powers-part-2/4000-150241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204677/","id":204677,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-lady-bullseye-1-tpb/4000-204677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212761/","id":212761,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-ascension-1-volume-6/4000-212761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236732/","id":236732,"name":"Vol. 3: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/nova-secret-invasion-1-vol-3-secret-invasion/4000-236732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238429/","id":238429,"name":"\"Orientation\"","site_detail_url":"https://comicvine.gamespot.com/angel-corps-1-orientation/4000-238429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155759/","id":155759,"name":"Crisscrossing","site_detail_url":"https://comicvine.gamespot.com/ce-murphys-take-a-chance-4-crisscrossing/4000-155759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153188/","id":153188,"name":"We Gotta Go Now, Part Six","site_detail_url":"https://comicvine.gamespot.com/the-boys-28-we-gotta-go-now-part-six/4000-153188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150512/","id":150512,"name":"The Smartest Man in the Room","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-21-the-smartest-man-in-the-roo/4000-150512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150495/","id":150495,"name":"Assemble","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-1-assemble/4000-150495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149819/","id":149819,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-3-4-part-four/4000-149819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150148/","id":150148,"name":"The Darkest Hour: Chapter Four Of The Dark Ages; Mowgli For Dinner, Part Four Of Five","site_detail_url":"https://comicvine.gamespot.com/fables-80-the-darkest-hour-chapter-four-of-the-dar/4000-150148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153703/","id":153703,"name":"The Invincible War","site_detail_url":"https://comicvine.gamespot.com/invincible-60-the-invincible-war/4000-153703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176531/","id":176531,"name":"The Mist and The Phantom of the Fair","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-the-mist-and-the-phantom-o/4000-176531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149802/","id":149802,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-noir-2/4000-149802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472866/","id":472866,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-34/4000-472866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151979/","id":151979,"name":"Burn, Baby, Burn","site_detail_url":"https://comicvine.gamespot.com/vigilante-2-burn-baby-burn/4000-151979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144410/","id":144410,"name":"What If... Scarlet Witch Ended The \"House Of M\" By Saying \"No More Powers\"?; What If... Runaways Became The Young Avengers? Part 1 Of 5","site_detail_url":"https://comicvine.gamespot.com/what-if-house-of-m-1-what-if-scarlet-witch-ended-t/4000-144410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145746/","id":145746,"name":"Last Hunts","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man-2-last-hunts/4000-145746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148697/","id":148697,"name":"What If Mary Jane had been shot instead of Aunt May?; What If The Runaways Became The Young Avengers?, Part 4","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-back-in-black-1-what-if-mary-ja/4000-148697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149289/","id":149289,"name":"Should Old Acquaintance Be Forgot","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-7-should-old-acquaintance-be-for/4000-149289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149359/","id":149359,"name":"The Funeral Of The Invisible Woman: Requiem","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-562-the-funeral-of-the-invisible-wo/4000-149359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149482/","id":149482,"name":"What If...Doctor Doom Kept The Beyonder's Power; What If The Runaways Became The Young Avengers, Part 5 (of 5)","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-wars-1-what-ifdoctor-doom-kept-the-/4000-149482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150655/","id":150655,"name":"Crown Heights: Epilogue","site_detail_url":"https://comicvine.gamespot.com/witchblade-124-crown-heights-epilogue/4000-150655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145540/","id":145540,"name":"Who's Been Sleeping In My Head?!; Flight Slight!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-27-whos-been-sleeping-in-m/4000-145540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145487/","id":145487,"name":"What If...Iron Man Had Died?; What If The Runaways Became The Young Avengers?, Part 2","site_detail_url":"https://comicvine.gamespot.com/what-if-fallen-son-1-what-ifiron-man-had-died-what/4000-145487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147609/","id":147609,"name":"The Resurrection of Ma Gnucci; Part Two","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-2-the-resurrection-of-ma-gnucci-/4000-147609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145478/","id":145478,"name":"The Resurrection of Ma Gnucci; Part One","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-1-the-resurrection-of-ma-gnucci-/4000-145478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145244/","id":145244,"name":"And On Earth Peace, Good Will Toward Men","site_detail_url":"https://comicvine.gamespot.com/punisher-max-x-mas-special-1-and-on-earth-peace-go/4000-145244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149178/","id":149178,"name":"The Resurrection of Ma Gnucci; Part Three","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-3-the-resurrection-of-ma-gnucci-/4000-149178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149313/","id":149313,"name":"The Resurrection of Ma Gnucci; Part Four","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone-4-the-resurrection-of-ma-gnucci-/4000-149313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283287/","id":283287,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-max-punisher-contra-bullseye-1/4000-283287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275487/","id":275487,"name":"Abservierte Leben Länger","site_detail_url":"https://comicvine.gamespot.com/100-bullets-4-abservierte-leben-langer/4000-275487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148100/","id":148100,"name":"Power to the People! Part 6: Powered Up!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-6-power-to-the-people-part-6-powe/4000-148100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149316/","id":149316,"name":"The Punch; Common Ground!; The Amazing Spider-Ma'am; Bridge And Tunnel; Best Of Enemies!","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-3-the-punch-common-groun/4000-149316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290348/","id":290348,"name":"Estatura","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-presentan-5-estatura/4000-290348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148593/","id":148593,"name":"One Shot; Back from the Dead!; The Man with No Face!","site_detail_url":"https://comicvine.gamespot.com/captain-america-theater-of-war-america-first-1-one/4000-148593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149459/","id":149459,"name":"The Anthill and the Apocalypse!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-6-the-anthill-and-t/4000-149459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199294/","id":199294,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-1-tpb/4000-199294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716060/","id":716060,"name":"Space Race!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-181-space-race/4000-716060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149777/","id":149777,"name":"Captain Trips Part Four","site_detail_url":"https://comicvine.gamespot.com/the-stand-captain-trips-4-captain-trips-part-four/4000-149777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172976/","id":172976,"name":"Secret Invasion: Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-captain-marvel-1-secret-invasion-c/4000-172976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151819/","id":151819,"name":"Absolute Darkness","site_detail_url":"https://comicvine.gamespot.com/the-darkness-75-absolute-darkness/4000-151819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421397/","id":421397,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-48/4000-421397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183520/","id":183520,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/dmz-blood-in-the-game-1-volume-6/4000-183520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240152/","id":240152,"name":"Hulk: Red Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk-red-hulk-1-hulk-red-hulk/4000-240152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376041/","id":376041,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/transformers-all-hail-megatron-1-volume-1/4000-376041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231552/","id":231552,"name":"Vol. 5","site_detail_url":"https://comicvine.gamespot.com/battle-royale-ultimate-edition--5-vol-5/4000-231552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172944/","id":172944,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-1-secret-invasion/4000-172944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187188/","id":187188,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/infinity-crusade-2-volume-2/4000-187188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421093/","id":421093,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-47/4000-421093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255164/","id":255164,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-1/4000-255164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716059/","id":716059,"name":"The Good, the Bad and the Spider","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-180-the-good-the/4000-716059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236760/","id":236760,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/starman-omnibus-2-vol-2/4000-236760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222743/","id":222743,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-house-of-mystery-3-volume-three/4000-222743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144886/","id":144886,"name":"Just One Little Thing","site_detail_url":"https://comicvine.gamespot.com/marvels-eye-of-the-camera-1-just-one-little-thing/4000-144886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145533/","id":145533,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel-2-part-two/4000-145533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145545/","id":145545,"name":"Fill in the Blank","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-580-fill-in-the-blank/4000-145545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146813/","id":146813,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-universe-holiday-special-1/4000-146813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146825/","id":146825,"name":"Epilogue","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-20-epilogue/4000-146825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148622/","id":148622,"name":"Lady Bullseye: Part Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-114-lady-bullseye-part-four/4000-148622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148641/","id":148641,"name":"Dark Reign","site_detail_url":"https://comicvine.gamespot.com/new-avengers-48-dark-reign/4000-148641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148919/","id":148919,"name":"","site_detail_url":"https://comicvine.gamespot.com/vigilante-1/4000-148919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149286/","id":149286,"name":"Time's Arrow (Part 3 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-45-times-arrow-part-3-of-3/4000-149286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149287/","id":149287,"name":"Issue Five","site_detail_url":"https://comicvine.gamespot.com/kick-ass-5-issue-five/4000-149287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149317/","id":149317,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-26-untitled/4000-149317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149353/","id":149353,"name":"Ultimatum: Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-99-ultimatum-part-2-of-3/4000-149353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144573/","id":144573,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/nyx-no-way-home-4-part-4/4000-144573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151222/","id":151222,"name":"We Gotta Go Now, Part Five","site_detail_url":"https://comicvine.gamespot.com/the-boys-27-we-gotta-go-now-part-five/4000-151222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152277/","id":152277,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-warriors-official-movie-adaptation-1/4000-152277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151882/","id":151882,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-5/4000-151882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152446/","id":152446,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-3/4000-152446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152724/","id":152724,"name":"","site_detail_url":"https://comicvine.gamespot.com/johnny-monster-1/4000-152724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159884/","id":159884,"name":"","site_detail_url":"https://comicvine.gamespot.com/impaler-2/4000-159884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148888/","id":148888,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-129-ultimatum/4000-148888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145935/","id":145935,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-5/4000-145935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144365/","id":144365,"name":"Unscheduled Stop, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-579-unscheduled-stop-part-2/4000-144365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147327/","id":147327,"name":"Mind On Fire, Part One: The Trouble With Harry","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-581-mind-on-fire-part-one-t/4000-147327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152835/","id":152835,"name":"Endgame, Part 5","site_detail_url":"https://comicvine.gamespot.com/spawn-189-endgame-part-5/4000-152835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147900/","id":147900,"name":"War Powers, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-37-war-powers-part-1/4000-147900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146904/","id":146904,"name":"For Those About to Rock!","site_detail_url":"https://comicvine.gamespot.com/terra-4-for-those-about-to-rock/4000-146904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203768/","id":203768,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-the-new-recruits-1-volu/4000-203768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145098/","id":145098,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-3-3-part-three/4000-145098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146979/","id":146979,"name":"The Death Of Marc Spector, Chapter Five","site_detail_url":"https://comicvine.gamespot.com/moon-knight-25-the-death-of-marc-spector-chapter-f/4000-146979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153732/","id":153732,"name":"China White","site_detail_url":"https://comicvine.gamespot.com/ce-murphys-take-a-chance-3-china-white/4000-153732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152528/","id":152528,"name":"","site_detail_url":"https://comicvine.gamespot.com/four-eyes-2/4000-152528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144393/","id":144393,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-noir-1/4000-144393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148638/","id":148638,"name":"Secret Agent Danvers, Part 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-34-secret-agent-danvers-part-3/4000-148638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192307/","id":192307,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine-4/4000-192307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148357/","id":148357,"name":"Fabletown Unbound: Chapter Three Of The Dark Ages","site_detail_url":"https://comicvine.gamespot.com/fables-79-fabletown-unbound-chapter-three-of-the-d/4000-148357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403687/","id":403687,"name":"","site_detail_url":"https://comicvine.gamespot.com/hraniteli-1/4000-403687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275540/","id":275540,"name":"Arabische Nächte (Und Tage)","site_detail_url":"https://comicvine.gamespot.com/fables-8-arabische-nachte-und-tage/4000-275540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149519/","id":149519,"name":"Helter-Skelter!","site_detail_url":"https://comicvine.gamespot.com/greatest-hits-4-helter-skelter/4000-149519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148134/","id":148134,"name":"Ruthless","site_detail_url":"https://comicvine.gamespot.com/ex-machina-40-ruthless/4000-148134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141990/","id":141990,"name":"New Krypton, Part 4 - Beyond Doomsday","site_detail_url":"https://comicvine.gamespot.com/action-comics-871-new-krypton-part-4-beyond-doomsd/4000-141990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142564/","id":142564,"name":"Man on Fire","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-6-man-on-fire/4000-142564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142791/","id":142791,"name":"The Lady & The Tigra","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-30-the-lady-the-tigra/4000-142791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142489/","id":142489,"name":"Captain Trips Part Three","site_detail_url":"https://comicvine.gamespot.com/the-stand-captain-trips-3-captain-trips-part-three/4000-142489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141555/","id":141555,"name":"The Strangest Teens Of All","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man-1-the-strangest-teens-of-all/4000-141555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185463/","id":185463,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-1-tpb/4000-185463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141605/","id":141605,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-3-2-part-two/4000-141605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228238/","id":228238,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-5-volume-5/4000-228238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176338/","id":176338,"name":null,"site_detail_url":"https://comicvine.gamespot.com/franklin-richards-sons-of-geniuses-1/4000-176338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267921/","id":267921,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/runaways-dead-end-kids-1-tpb/4000-267921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292930/","id":292930,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-16/4000-292930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185211/","id":185211,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-5-volume-5/4000-185211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205860/","id":205860,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-6-volume-6/4000-205860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428792/","id":428792,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ruins-1/4000-428792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475347/","id":475347,"name":"Who Owns the Night?","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-resolute-4-who-owns-the-night/4000-475347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142044/","id":142044,"name":"The Replacement!; Li'l Benjy The Spectacular Spider-Baby in \"Christmas Crisis!\"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-26-the-replacement-lil-ben/4000-142044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298201/","id":298201,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-27/4000-298201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295868/","id":295868,"name":"¡Miedo!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-8-miedo/4000-295868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146803/","id":146803,"name":"A Very Strange Day","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-5-a-very-strange-da/4000-146803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472865/","id":472865,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-33/4000-472865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142782/","id":142782,"name":"Pieces Of The Puzzle","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-45-pieces-of-the-puzz/4000-142782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268637/","id":268637,"name":"Shrugged","site_detail_url":"https://comicvine.gamespot.com/shrugged-1-shrugged/4000-268637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143523/","id":143523,"name":"Untitled","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu-6-untitled/4000-143523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150511/","id":150511,"name":"The Depths Beyond the Depths; Not Much of a Soldier","site_detail_url":"https://comicvine.gamespot.com/trinity-34-the-depths-beyond-the-depths-not-much-o/4000-150511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174246/","id":174246,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-4-volume-4/4000-174246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420976/","id":420976,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-46/4000-420976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251523/","id":251523,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-1-volume-1/4000-251523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181823/","id":181823,"name":"X-Factor: The Only Game in Town","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-only-game-in-town-1-x-factor-the-only/4000-181823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149807/","id":149807,"name":"Lady of Bounty and Teacher To All; A Better World","site_detail_url":"https://comicvine.gamespot.com/trinity-32-lady-of-bounty-and-teacher-to-all-a-bet/4000-149807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420975/","id":420975,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-45/4000-420975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245992/","id":245992,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-lightning-saga-1-vol/4000-245992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141520/","id":141520,"name":"Three Kings","site_detail_url":"https://comicvine.gamespot.com/ultimatum-1-three-kings/4000-141520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141534/","id":141534,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel-1-part-one/4000-141534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141994/","id":141994,"name":"The Great Leap: Conclusion","site_detail_url":"https://comicvine.gamespot.com/nightwing-150-the-great-leap-conclusion/4000-141994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142459/","id":142459,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-58/4000-142459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142533/","id":142533,"name":"The Galactus Engine","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-561-the-galactus-engine/4000-142533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142736/","id":142736,"name":"Dirty Tricks, Chapter 4: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-39-dirty-tricks-chapter-4-conclusion/4000-142736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143155/","id":143155,"name":"Time's Arrow (Part 2 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-44-times-arrow-part-2-of-3/4000-143155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143325/","id":143325,"name":"Blood and Iron: Part 3","site_detail_url":"https://comicvine.gamespot.com/new-warriors-18-blood-and-iron-part-3/4000-143325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143498/","id":143498,"name":"Ultimatium","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-98-ultimatium/4000-143498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142050/","id":142050,"name":"The Ties That Bond","site_detail_url":"https://comicvine.gamespot.com/venom-dark-origin-4-the-ties-that-bond/4000-142050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144233/","id":144233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-8/4000-144233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144346/","id":144346,"name":"Chapter Five: Dark Reign","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-front-line-5-chapter-five-dark-rei/4000-144346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146802/","id":146802,"name":"V-S Day","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-19-v-s-day/4000-146802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148627/","id":148627,"name":"It Gets Worse...","site_detail_url":"https://comicvine.gamespot.com/ultimatum-2-it-gets-worse/4000-148627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145088/","id":145088,"name":"The Mortal Iron Fist: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-20-the-mortal-iron-fist-con/4000-145088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149981/","id":149981,"name":"Crown Heights, Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-123-crown-heights-part-3-of-3/4000-149981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142639/","id":142639,"name":"Home Again, Home Again, Jiggity Jig","site_detail_url":"https://comicvine.gamespot.com/young-liars-9-home-again-home-again-jiggity-jig/4000-142639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150644/","id":150644,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-2/4000-150644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155873/","id":155873,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-hulk-5-volume-5/4000-155873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143519/","id":143519,"name":"The Book Of Leadership: The Books Of War, Volume One","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-28-the-book-of-leadership-the-books/4000-143519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169363/","id":169363,"name":"Part One: A Diamond in the Rough","site_detail_url":"https://comicvine.gamespot.com/trouble-with-katie-rogers-1-part-one-a-diamond-in-/4000-169363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142122/","id":142122,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-4/4000-142122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142472/","id":142472,"name":"Return of the Storyteller","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-special-storyteller-1-return-of-the-stor/4000-142472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172974/","id":172974,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-girl-brand-new-may-1-volume-4/4000-172974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172977/","id":172977,"name":"Secret Invasion: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-secret-invasion-f/4000-172977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177521/","id":177521,"name":"Archie Marries Veronica, Part 3: It's Twins!","site_detail_url":"https://comicvine.gamespot.com/archie-602-archie-marries-veronica-part-3-its-twin/4000-177521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141830/","id":141830,"name":"Beneath the Skin: Chapter Two of Love Stories for Dead People","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-7-beneath-the-skin-chapter-two-of/4000-141830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141535/","id":141535,"name":"Family Ties, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-576-family-ties-part-2/4000-141535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141999/","id":141999,"name":"Old Huntin' Buddies; A Bookie Minute Mystery","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-577-old-huntin-buddies-a-bo/4000-141999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142594/","id":142594,"name":"Unscheduled Stop Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-578-unscheduled-stop-part-1/4000-142594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151911/","id":151911,"name":"Endgame, Part 4","site_detail_url":"https://comicvine.gamespot.com/spawn-188-endgame-part-4/4000-151911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143513/","id":143513,"name":"The Island, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-36-the-island-conclusion/4000-143513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141556/","id":141556,"name":"The Five Nightmares, Epilogue: Clifton Pollard","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-7-the-five-nightmares-epil/4000-141556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172275/","id":172275,"name":"","site_detail_url":"https://comicvine.gamespot.com/athena-1/4000-172275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181419/","id":181419,"name":"","site_detail_url":"https://comicvine.gamespot.com/athena-2/4000-181419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185982/","id":185982,"name":"","site_detail_url":"https://comicvine.gamespot.com/athena-3/4000-185982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209211/","id":209211,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-dead-days-1-hctpb/4000-209211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165922/","id":165922,"name":"Volume I: The Dark, Book 1: Chapter 1: The Battle of Brooklyn Creek","site_detail_url":"https://comicvine.gamespot.com/the-stuff-of-legend-1-volume-i-the-dark-book-1-cha/4000-165922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141547/","id":141547,"name":"Can You Dig It?","site_detail_url":"https://comicvine.gamespot.com/terra-1-can-you-dig-it/4000-141547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142543/","id":142543,"name":"Who Are You?","site_detail_url":"https://comicvine.gamespot.com/terra-2-who-are-you/4000-142543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143157/","id":143157,"name":"Lady Bullseye, Part Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-113-lady-bullseye-part-three/4000-143157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153715/","id":153715,"name":"Candy Rave","site_detail_url":"https://comicvine.gamespot.com/ce-murphys-take-a-chance-2-candy-rave/4000-153715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142547/","id":142547,"name":"Secret Invasion, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-25-secret-invasion-part-2-of-/4000-142547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271104/","id":271104,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-god-war-7-volume-7/4000-271104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141977/","id":141977,"name":"If I Die Before I Wake","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-annual-1-if-i-die-before-i-wa/4000-141977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149787/","id":149787,"name":"We Gotta Go Now, Part Four","site_detail_url":"https://comicvine.gamespot.com/the-boys-26-we-gotta-go-now-part-four/4000-149787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300592/","id":300592,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/james-robinsons-complete-wildcats-1-tpb/4000-300592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233674/","id":233674,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-1-volume-1/4000-233674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300919/","id":300919,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-classics-library-superman-kryptonite-nev/4000-300919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150030/","id":150030,"name":"","site_detail_url":"https://comicvine.gamespot.com/bprd-the-black-goddess-1/4000-150030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340550/","id":340550,"name":"An Army of One","site_detail_url":"https://comicvine.gamespot.com/aafes-7th-edition-7-an-army-of-one/4000-340550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142226/","id":142226,"name":"Boxes: Chapter Two Of The Dark Ages","site_detail_url":"https://comicvine.gamespot.com/fables-78-boxes-chapter-two-of-the-dark-ages/4000-142226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150039/","id":150039,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-death-defying-devil-2/4000-150039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155752/","id":155752,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/apes-babes-the-art-of-frank-cho-1-book-one/4000-155752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150069/","id":150069,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-the-other-side-4/4000-150069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154037/","id":154037,"name":"Comic Book Hell","site_detail_url":"https://comicvine.gamespot.com/comic-book-comics-3-comic-book-hell/4000-154037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149758/","id":149758,"name":"Hunger Pangs","site_detail_url":"https://comicvine.gamespot.com/30-days-of-night-30-days-til-death-2-hunger-pangs/4000-149758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893851/","id":893851,"name":"Sexe, mensonges & DVD (2)","site_detail_url":"https://comicvine.gamespot.com/ultimates-38-sexe-mensonges-and-dvd-2/4000-893851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140126/","id":140126,"name":"Prisoners of War","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-5-prisoners-of-war/4000-140126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140176/","id":140176,"name":"Evil on a Grander Scale","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-44-evil-on-a-grander-/4000-140176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140177/","id":140177,"name":"Captain Trips Part Two","site_detail_url":"https://comicvine.gamespot.com/the-stand-captain-trips-2-captain-trips-part-two/4000-140177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149283/","id":149283,"name":"The Empress, The Chariot and Judgement; The Legend of the Hunting Hawk","site_detail_url":"https://comicvine.gamespot.com/trinity-31-the-empress-the-chariot-and-judgement-t/4000-149283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149869/","id":149869,"name":"","site_detail_url":"https://comicvine.gamespot.com/no-hero-3/4000-149869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140550/","id":140550,"name":"Together. Together Forever","site_detail_url":"https://comicvine.gamespot.com/titans-6-together-together-forever/4000-140550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181914/","id":181914,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/young-x-men-final-genesis-1-volume-1/4000-181914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187175/","id":187175,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/infinity-crusade-1-volume-1/4000-187175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198668/","id":198668,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-brand-new-day-2-volume-2/4000-198668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149972/","id":149972,"name":"No Shoes, No Shirt, No Pants, No Service!","site_detail_url":"https://comicvine.gamespot.com/ultimate-hulk-annual-1-no-shoes-no-shirt-no-pants-/4000-149972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204066/","id":204066,"name":"Cable: Messiah War","site_detail_url":"https://comicvine.gamespot.com/cable-messiah-war-1-cable-messiah-war/4000-204066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140137/","id":140137,"name":"Home Again, Home Again.","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-13-home-again-home-again/4000-140137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245367/","id":245367,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson-1-volume-one/4000-245367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140555/","id":140555,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-worlds-apart-1-part-one/4000-140555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145938/","id":145938,"name":"The Birth Of...The Gibbon!; To Stalk A Spider!; The Final Chapter!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-0-the-birth-ofthe-gibbon-to-stalk-a-sp/4000-145938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139675/","id":139675,"name":"Book Three: Gorilla Warfare!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-3-book-three-gorilla-warfare/4000-139675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173979/","id":173979,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-1-tpb/4000-173979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465416/","id":465416,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/impaler-1-vol-1/4000-465416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473071/","id":473071,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-saga-2-volume-two/4000-473071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140142/","id":140142,"name":"Power to the People! Part 4: Higher Powers and Lower Orders!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-4-power-to-the-people-part-4-high/4000-140142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141253/","id":141253,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-annual-3/4000-141253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141261/","id":141261,"name":"Favorite Son: The Origin of the Black Panther; Training Day","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-annual-1-favorite-son-the/4000-141261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511461/","id":511461,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-silver-surfer-1-tpb/4000-511461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141377/","id":141377,"name":"The Long Road...; Those Who Never Return; The Spectacular Rider-Man: They Call The Doctor... Octopus","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-2-the-long-road-those-wh/4000-141377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140146/","id":140146,"name":"Maybreak!; The Rescue","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-25-maybreak-the-rescue/4000-140146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141146/","id":141146,"name":"Klaw's Good 'Ol Fashioned Country Revival","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-4-klaws-good-ol-fas/4000-141146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148686/","id":148686,"name":"In the Longago; This is what we need to know","site_detail_url":"https://comicvine.gamespot.com/trinity-30-in-the-longago-this-is-what-we-need-to-/4000-148686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256197/","id":256197,"name":"The Hulk Goes to War!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-76-the-hulk-goes-to-war/4000-256197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420974/","id":420974,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-44/4000-420974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149117/","id":149117,"name":"If The Fates Allows / Last Christmas / Werewolf By Eve / Santa Claus vs The Illuminati","site_detail_url":"https://comicvine.gamespot.com/marvel-digital-holiday-special-1-if-the-fates-allo/4000-149117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183821/","id":183821,"name":"Daredevil Yellow","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-1-daredevil-yellow/4000-183821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232258/","id":232258,"name":"Volume Eight","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-8-volume-eight/4000-232258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131652/","id":131652,"name":"Vol 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-compendium-2-vol-2/4000-131652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186307/","id":186307,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/new-x-men-ultimate-collection-3-book-3/4000-186307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198641/","id":198641,"name":"Nova: Annihilation","site_detail_url":"https://comicvine.gamespot.com/nova-annihilation-1-nova-annihilation/4000-198641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259635/","id":259635,"name":"Thy Kingdom Come: Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-2-thy-/4000-259635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420973/","id":420973,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-43/4000-420973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208356/","id":208356,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-punisher-3-volume-3/4000-208356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355443/","id":355443,"name":"The Sands of Time","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-177-the-sands-of/4000-355443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140549/","id":140549,"name":"Chapter Four: The Fall of Manhattan","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-front-line-4-chapter-four-the-fall/4000-140549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140814/","id":140814,"name":"Lady Bullseye, Part Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-112-lady-bullseye-part-two/4000-140814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140827/","id":140827,"name":"Brand New Secret Invasion, Part 3","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man-3-brand-new/4000-140827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140845/","id":140845,"name":"Time's Arrow (Part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-43-times-arrow-part-1-of-3/4000-140845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140847/","id":140847,"name":"Original Sin, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-217-original-sin-part-2/4000-140847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140874/","id":140874,"name":"Blood and Iron: Part 2","site_detail_url":"https://comicvine.gamespot.com/new-warriors-17-blood-and-iron-part-2/4000-140874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140898/","id":140898,"name":"Lady Liberators, Part 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-34-lady-liberators-part-1/4000-140898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140830/","id":140830,"name":"Running the Asylum, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-125-running-the-asylum-pt-4/4000-140830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141294/","id":141294,"name":"The Mortal Iron Fist, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-19-the-mortal-iron-fist-cha/4000-141294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140851/","id":140851,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-7/4000-140851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144019/","id":144019,"name":"","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-witchblade-1/4000-144019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141259/","id":141259,"name":"Ghost Boxes","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-ghost-boxes-1-ghost-boxes/4000-141259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147625/","id":147625,"name":null,"site_detail_url":"https://comicvine.gamespot.com/impaler-1/4000-147625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151481/","id":151481,"name":"Little Orphan Angry","site_detail_url":"https://comicvine.gamespot.com/fin-fang-four-2-little-orphan-angry/4000-151481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140828/","id":140828,"name":"War of the Symbiotes, Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-127-war-of-the-symbiotes-part-/4000-140828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140136/","id":140136,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-3/4000-140136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141684/","id":141684,"name":"Original Sin, Part III of V","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-29-original-sin-part-iii-of-v/4000-141684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140465/","id":140465,"name":"New Ways To Die Part Six: Weapons of Self Destruction; Lo There Shall Come, This Man... This Candidate!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-573-new-ways-to-die-part-si/4000-140465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141332/","id":141332,"name":"Family Ties","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-575-family-ties/4000-141332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148639/","id":148639,"name":"Endgame, Part Three","site_detail_url":"https://comicvine.gamespot.com/spawn-187-endgame-part-three/4000-148639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163390/","id":163390,"name":"A Tale Of Two Jackpots","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-35-a-tale-of-two-jac/4000-163390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141430/","id":141430,"name":"The Island, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-35-the-island-part-1/4000-141430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139969/","id":139969,"name":"The Five Nightmares, Part 6: Irrational Actors","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-6-the-five-nightmares-part/4000-139969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149503/","id":149503,"name":"","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-angelus-1/4000-149503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203574/","id":203574,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-animal-instinct-1-vol/4000-203574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204065/","id":204065,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-tales-to-astonish-1-volume-/4000-204065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146956/","id":146956,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir-1/4000-146956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140897/","id":140897,"name":"The True Kingpin of the Super-Villains","site_detail_url":"https://comicvine.gamespot.com/new-avengers-46-the-true-kingpin-of-the-super-vill/4000-140897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148687/","id":148687,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-4/4000-148687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246349/","id":246349,"name":"","site_detail_url":"https://comicvine.gamespot.com/michelangelo-the-third-kind-4/4000-246349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149113/","id":149113,"name":"City Of Heroes","site_detail_url":"https://comicvine.gamespot.com/ce-murphys-take-a-chance-1-city-of-heroes/4000-149113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139702/","id":139702,"name":"Secret Invasion, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-24-secret-invasion-part-1-of-/4000-139702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144657/","id":144657,"name":"We Gotta Go Now, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-25-we-gotta-go-now-part-three/4000-144657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292361/","id":292361,"name":"The Punisher: Witwenmacher","site_detail_url":"https://comicvine.gamespot.com/max-24-the-punisher-witwenmacher/4000-292361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146902/","id":146902,"name":"","site_detail_url":"https://comicvine.gamespot.com/gigantic-2/4000-146902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140504/","id":140504,"name":"Life in a Headless Empire - Chapter One of The Dark Ages","site_detail_url":"https://comicvine.gamespot.com/fables-77-life-in-a-headless-empire-chapter-one-of/4000-140504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147899/","id":147899,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-death-defying-devil-1/4000-147899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146908/","id":146908,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-the-other-side-3/4000-146908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138179/","id":138179,"name":"One of Us, Part 1: One of Us","site_detail_url":"https://comicvine.gamespot.com/deadpool-1-one-of-us-part-1-one-of-us/4000-138179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138972/","id":138972,"name":"Following The Leader","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-15-following-the-leader/4000-138972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138796/","id":138796,"name":"Incredible Hulk #108 / World War Hulk #2","site_detail_url":"https://comicvine.gamespot.com/hulk-chronicles-wwh-3-incredible-hulk-108-world-wa/4000-138796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139253/","id":139253,"name":"Power, Man.","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-28-power-man/4000-139253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232215/","id":232215,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-5-volum/4000-232215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184077/","id":184077,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-frank-miller-and-klaus-janson-1-volum/4000-184077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358632/","id":358632,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/teen-titans-year-one-1-tpb/4000-358632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137290/","id":137290,"name":"Apes of Wrath!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-1-apes-of-wrath/4000-137290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166496/","id":166496,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/fables-war-and-pieces-1-volume-11/4000-166496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139088/","id":139088,"name":"See No Evil!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-2-see-no-evil/4000-139088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460409/","id":460409,"name":"Gone (Part 2)","site_detail_url":"https://comicvine.gamespot.com/giant-size-astonishing-x-men-2-gone-part-2/4000-460409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139023/","id":139023,"name":"Power to the People! Part 3: Stand or Fall!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-3-power-to-the-people-part-3-stan/4000-139023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183107/","id":183107,"name":"X-Men: Messiah CompleX","site_detail_url":"https://comicvine.gamespot.com/x-men-messiah-complex-1-x-men-messiah-complex/4000-183107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138428/","id":138428,"name":"My Enemy Myself!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-24-my-enemy-myself/4000-138428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290345/","id":290345,"name":"Hulkling","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-presentan-2-hulkling/4000-290345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298200/","id":298200,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-26/4000-298200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295867/","id":295867,"name":"¡Asesinato en Cathedral Canyon!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-7-asesinato-en-cathedral-/4000-295867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-620600/","id":620600,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-punisher-by-garth-ennis-omnibus-1-hc/4000-620600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139485/","id":139485,"name":"You Can't Eat Just Once","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-3-you-cant-eat-just/4000-139485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169708/","id":169708,"name":"Mighty Avengers: Venom Bomb","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-venom-bomb-1-mighty-avengers-venom/4000-169708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420972/","id":420972,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-42/4000-420972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139006/","id":139006,"name":"Love & War, Part 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-121-love-war-part-1/4000-139006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223858/","id":223858,"name":"Ultimate Human","site_detail_url":"https://comicvine.gamespot.com/ultimate-hulk-vs-iron-man-ultimate-human-1-ultimat/4000-223858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138341/","id":138341,"name":"Captain Trips Part One","site_detail_url":"https://comicvine.gamespot.com/the-stand-captain-trips-1-captain-trips-part-one/4000-138341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420971/","id":420971,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-41/4000-420971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716057/","id":716057,"name":"Timely Intervention","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-176-timely-inter/4000-716057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141545/","id":141545,"name":"What Paris Should Be Like; The Easiest Path","site_detail_url":"https://comicvine.gamespot.com/trinity-23-what-paris-should-be-like-the-easiest-p/4000-141545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221008/","id":221008,"name":"Freefall","site_detail_url":"https://comicvine.gamespot.com/nightwing-freefall-1-freefall/4000-221008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137353/","id":137353,"name":"Chapter 2","site_detail_url":"https://comicvine.gamespot.com/venom-dark-origin-2-chapter-2/4000-137353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137354/","id":137354,"name":"Jigsaw (Part 6)","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-23-jigsaw-part-6/4000-137354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138234/","id":138234,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-6/4000-138234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137348/","id":137348,"name":"The Great Leap, Part Two","site_detail_url":"https://comicvine.gamespot.com/nightwing-148-the-great-leap-part-two/4000-137348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138409/","id":138409,"name":"Secret Invasion!, Part 3","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-3-secret-in/4000-138409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138414/","id":138414,"name":"Rise","site_detail_url":"https://comicvine.gamespot.com/house-of-m-civil-war-1-rise/4000-138414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138528/","id":138528,"name":"Teenage Wasteland, Part 2: Hell of a Town; Dane: Loyalties, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/gen-13-22-teenage-wasteland-part-2-hell-of-a-town-/4000-138528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139000/","id":139000,"name":"New Ways to Die, Part Five: Easy Target","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-572-new-ways-to-die-part-fi/4000-139000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138995/","id":138995,"name":"4X","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-16-4x/4000-138995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139334/","id":139334,"name":"House Of M","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-45-house-of-m/4000-139334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139343/","id":139343,"name":"Brothers in Arms","site_detail_url":"https://comicvine.gamespot.com/nova-17-brothers-in-arms/4000-139343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139403/","id":139403,"name":"Blood and Iron: Part 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-16-blood-and-iron-part-1/4000-139403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139385/","id":139385,"name":"Brand New Secret Invasion, Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man-2-brand-new/4000-139385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139795/","id":139795,"name":"B.O.H.I.C.A","site_detail_url":"https://comicvine.gamespot.com/monsterpocalypse-1-bohica/4000-139795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138275/","id":138275,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menultimate-fantastic-four-annual-1/4000-138275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141236/","id":141236,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-11/4000-141236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141871/","id":141871,"name":"","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-3/4000-141871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143275/","id":143275,"name":"Time of Your Life, Part Four","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-eight-19-time-of-y/4000-143275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145615/","id":145615,"name":"Crown Heights: Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-122-crown-heights-part-2-of-3/4000-145615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149806/","id":149806,"name":"","site_detail_url":"https://comicvine.gamespot.com/rest-2/4000-149806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139397/","id":139397,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-fourultimate-x-men-annual-1/4000-139397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139384/","id":139384,"name":"War of the Symbiotes - Part 4.","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-126-war-of-the-symbiotes-part-/4000-139384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139326/","id":139326,"name":"The Man Who Bought America: Part Six","site_detail_url":"https://comicvine.gamespot.com/captain-america-42-the-man-who-bought-america-part/4000-139326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142085/","id":142085,"name":"United We Stand","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-140-united-we-stand/4000-142085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137375/","id":137375,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-2/4000-137375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148040/","id":148040,"name":"One Shot","site_detail_url":"https://comicvine.gamespot.com/how-to-be-a-serial-killer-1-one-shot/4000-148040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137326/","id":137326,"name":"New Ways To Die, Part Three: The Killer Cure","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-570-new-ways-to-die-part-th/4000-137326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138255/","id":138255,"name":"New Ways To Die, Part Four: Opposites Attack","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-571-new-ways-to-die-part-fo/4000-138255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142587/","id":142587,"name":"Endgame, Part 2","site_detail_url":"https://comicvine.gamespot.com/spawn-186-endgame-part-2/4000-142587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137180/","id":137180,"name":"The Five Nightmares, Part 5: Code Black","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-5-the-five-nightmares-part/4000-137180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200201/","id":200201,"name":"JLA / Avengers","site_detail_url":"https://comicvine.gamespot.com/jla-avengers-1-jla-avengers/4000-200201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139400/","id":139400,"name":"Death of the Invisible Woman Part 3: Futureshock","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-560-death-of-the-invisible-woman-pa/4000-139400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142224/","id":142224,"name":"The Superpowers Vs. The Superpowers: The Black Terror Goes To Washington","site_detail_url":"https://comicvine.gamespot.com/black-terror-1-the-superpowers-vs-the-superpowers-/4000-142224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138992/","id":138992,"name":"The Death of Marc Spector, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/moon-knight-22-the-death-of-marc-spector-chapter-t/4000-138992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174152/","id":174152,"name":"","site_detail_url":"https://comicvine.gamespot.com/youngblood-6/4000-174152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139401/","id":139401,"name":"Lady Bullseye, Part One","site_detail_url":"https://comicvine.gamespot.com/daredevil-111-lady-bullseye-part-one/4000-139401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273556/","id":273556,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-archives-4-volume-4/4000-273556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279572/","id":279572,"name":"Dipartimento 51 – L’orrore della miniera","site_detail_url":"https://comicvine.gamespot.com/universo-alfa-3-dipartimento-51-lorrore-della-mini/4000-279572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141293/","id":141293,"name":"We Gotta Go Now, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-24-we-gotta-go-now-part-two/4000-141293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223011/","id":223011,"name":"The Awakening War Conclusion!","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-spawn-2-the-awakening-war-conclu/4000-223011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139413/","id":139413,"name":"Around the Town","site_detail_url":"https://comicvine.gamespot.com/fables-76-around-the-town/4000-139413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424949/","id":424949,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-britain-the-lion-and-the-spider-1-tpb/4000-424949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154929/","id":154929,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-covers-by-james-jean-1/4000-154929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137372/","id":137372,"name":"Scavengers","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-annual-1-scavengers/4000-137372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142301/","id":142301,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-the-other-side-2/4000-142301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705946/","id":705946,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/americas-best-comics-primer-1-tpb/4000-705946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137304/","id":137304,"name":"Chapter Three: Escape","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-front-line-3-chapter-three-escape/4000-137304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893850/","id":893850,"name":"Sexe, mensonges & DVD (1)","site_detail_url":"https://comicvine.gamespot.com/ultimates-37-sexe-mensonges-and-dvd-1/4000-893850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135073/","id":135073,"name":"Chapter Two: Run. As fast as you can.","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-front-line-2-chapter-two-run-as-fa/4000-135073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135076/","id":135076,"name":"Homefront","site_detail_url":"https://comicvine.gamespot.com/cable-6-homefront/4000-135076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135379/","id":135379,"name":"Did Someone Say CLONES?!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-23-did-someone-say-clones/4000-135379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137573/","id":137573,"name":"World War Hulk #1 / Incredible Hulk #107","site_detail_url":"https://comicvine.gamespot.com/hulk-chronicles-wwh-2-world-war-hulk-1-incredible-/4000-137573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141243/","id":141243,"name":"","site_detail_url":"https://comicvine.gamespot.com/no-hero-2/4000-141243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141680/","id":141680,"name":"Ursus The Ultra-Bear!; The Secret Of Area B","site_detail_url":"https://comicvine.gamespot.com/the-age-of-the-sentry-2-ursus-the-ultra-bear-the-s/4000-141680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135111/","id":135111,"name":"Un-Enchanted Evening; Take A Seat; Street Monsters; Paperboy Showdown","site_detail_url":"https://comicvine.gamespot.com/king-size-spider-man-summer-special-1-un-enchanted/4000-135111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183338/","id":183338,"name":"Absolute Ronin","site_detail_url":"https://comicvine.gamespot.com/absolute-ronin-1-absolute-ronin/4000-183338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136848/","id":136848,"name":"Avengers Assemble -- Soooo-Wheeee!! And Some Other Small Problems","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-27-avengers-assemble-so/4000-136848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135960/","id":135960,"name":"48 Hours; The Amazing Ape-Rachnid Spider-Monkey!: The Final Chapter!; Family Ties; Aunt May, Agent of F.E.A.S.T., in Birthday Girl; Venom","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-family-1-48-hours-the-amazing-a/4000-135960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138068/","id":138068,"name":"U.G. Universal Gangstaz","site_detail_url":"https://comicvine.gamespot.com/skrulls-vs-power-pack-2-ug-universal-gangstaz/4000-138068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136209/","id":136209,"name":"Soul Awakening, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/new-exiles-9-soul-awakening-part-3-of-4/4000-136209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138639/","id":138639,"name":"Soul Awakening, Part 4: Cry For Freedom!","site_detail_url":"https://comicvine.gamespot.com/new-exiles-10-soul-awakening-part-4-cry-for-freedo/4000-138639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290344/","id":290344,"name":"Patriota","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-presentan-1-patriota/4000-290344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472864/","id":472864,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-32/4000-472864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216679/","id":216679,"name":"Spider-Man: With Great Power","site_detail_url":"https://comicvine.gamespot.com/spider-man-with-great-power-1-spider-man-with-grea/4000-216679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420969/","id":420969,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-40/4000-420969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140959/","id":140959,"name":"Issue 4","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-4-issue-4/4000-140959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313503/","id":313503,"name":"Library Edition Vol. 2","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-chained-coffin-and-the-right-hand-of-d/4000-313503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295285/","id":295285,"name":"Symbiote Saga","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-175-symbiote-sag/4000-295285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420968/","id":420968,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-39/4000-420968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199301/","id":199301,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/young-avengers-presents-1-tpb/4000-199301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135077/","id":135077,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/venom-dark-origin-1-chapter-1/4000-135077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135069/","id":135069,"name":"Rolling Thunder","site_detail_url":"https://comicvine.gamespot.com/hulk-5-rolling-thunder/4000-135069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135070/","id":135070,"name":"The Great Leap, Part One","site_detail_url":"https://comicvine.gamespot.com/nightwing-147-the-great-leap-part-one/4000-135070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135190/","id":135190,"name":"Jigsaw Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-22-jigsaw-part-5-of-6/4000-135190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135454/","id":135454,"name":"Kraven's First Hunt, Part 3: Legacy","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-567-kravens-first-hunt-part/4000-135454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135468/","id":135468,"name":"Death of the Invisible Woman Part 2: The Hooded Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-559-death-of-the-invisible-woman-pa/4000-135468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135400/","id":135400,"name":"Secret Invasion!, Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-2-secret-in/4000-135400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135669/","id":135669,"name":"Valley Forge, Valley Forge: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-punisher-60-valley-forge-valley-forge-conclusi/4000-135669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136067/","id":136067,"name":"Girls In White Dresses, Part One: Quinceañera","site_detail_url":"https://comicvine.gamespot.com/the-punisher-61-girls-in-white-dresses-part-one-qu/4000-136067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136064/","id":136064,"name":"Stuff Happens","site_detail_url":"https://comicvine.gamespot.com/x-factor-layla-miller-1-stuff-happens/4000-136064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135981/","id":135981,"name":"The Man Who Bought America, Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-41-the-man-who-bought-america-part/4000-135981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136535/","id":136535,"name":"Skrull-$%#@ers!","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-16-skrull-ers/4000-136535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136584/","id":136584,"name":"Walkthrough, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-215-walkthrough-part-1/4000-136584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138394/","id":138394,"name":"The Battle Of Manhattan: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-30-the-battle-of-manhattan-conclusion/4000-138394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135502/","id":135502,"name":"Teenage Wasteland, Part 1: Siege Perilous; Lynch: One Last Thing, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/gen-13-21-teenage-wasteland-part-1-siege-perilous-/4000-135502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139697/","id":139697,"name":"","site_detail_url":"https://comicvine.gamespot.com/march-on-ultimatum-saga-1/4000-139697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139593/","id":139593,"name":"Crown Heights: Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-121-crown-heights-part-1-of-3/4000-139593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140619/","id":140619,"name":"New Reader Halloween Treat!","site_detail_url":"https://comicvine.gamespot.com/hackslash-new-reader-halloween-treat-1-new-reader-/4000-140619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141102/","id":141102,"name":"","site_detail_url":"https://comicvine.gamespot.com/rest-1/4000-141102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141328/","id":141328,"name":"Endgame, Part 1","site_detail_url":"https://comicvine.gamespot.com/spawn-185-endgame-part-1/4000-141328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136536/","id":136536,"name":"Last Will And Testament: Conversions","site_detail_url":"https://comicvine.gamespot.com/dc-universe-last-will-and-testament-1-last-will-an/4000-136536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135467/","id":135467,"name":"Low","site_detail_url":"https://comicvine.gamespot.com/young-liars-6-low/4000-135467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164997/","id":164997,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-book-of-the-iron-fist-1/4000-164997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166630/","id":166630,"name":"Tutti meno uno; Ritorno a New York","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-extra-26-tutti-meno-uno-ritorno-a-new/4000-166630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166845/","id":166845,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-secret-invasion-1-secret-invasion/4000-166845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135084/","id":135084,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2-1/4000-135084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136022/","id":136022,"name":"New Ways To Die, Part One: Back With Vengeance; Fifth Stage","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-568-new-ways-to-die-part-on/4000-136022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135078/","id":135078,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-3-part-3/4000-135078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136526/","id":136526,"name":"New Ways To Die, Part Two: The Osborn Supremacy","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-569-new-ways-to-die-part-tw/4000-136526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136594/","id":136594,"name":"Brand New Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man-1-brand-new/4000-136594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136632/","id":136632,"name":"Blood in the Game, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-34-blood-in-the-game-conclusion/4000-136632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135072/","id":135072,"name":"The Five Nightmares, Part 4: Neutron Bomb Heart","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-4-the-five-nightmares-part/4000-135072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198667/","id":198667,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-brand-new-day-volume-1-1-volume-1/4000-198667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136527/","id":136527,"name":"Issue Four","site_detail_url":"https://comicvine.gamespot.com/kick-ass-4-issue-four/4000-136527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136066/","id":136066,"name":"Fall of the Mutants","site_detail_url":"https://comicvine.gamespot.com/young-x-men-5-fall-of-the-mutants/4000-136066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139683/","id":139683,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-2/4000-139683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141755/","id":141755,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-3/4000-141755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139692/","id":139692,"name":"","site_detail_url":"https://comicvine.gamespot.com/four-eyes-1/4000-139692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138840/","id":138840,"name":"Town & Country","site_detail_url":"https://comicvine.gamespot.com/the-secret-history-of-the-authority-jack-hawksmoor/4000-138840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287541/","id":287541,"name":"Wedding Album","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-the-wedding-album-1-weddin/4000-287541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139681/","id":139681,"name":"We Gotta Go Now, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-23-we-gotta-go-now-part-one/4000-139681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217057/","id":217057,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/the-boys-good-for-the-soul-1-vol-3/4000-217057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135071/","id":135071,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/nyx-no-way-home-1-part-1/4000-135071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141347/","id":141347,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/the-alcoholic-1-hcsc/4000-141347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339535/","id":339535,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-boys-definitive-edition-1-volume-1/4000-339535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139419/","id":139419,"name":"Turning Pages Chapter Two: Priscilla","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-26-turning-pages-chapter-two-prisci/4000-139419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136560/","id":136560,"name":"War of the Symbiotes, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-125-war-of-the-symbiotes-part-/4000-136560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275539/","id":275539,"name":"Heimatland","site_detail_url":"https://comicvine.gamespot.com/fables-7-heimatland/4000-275539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140462/","id":140462,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ghostbusters-the-other-side-1/4000-140462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472746/","id":472746,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-horror-2-volume-two/4000-472746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716056/","id":716056,"name":"Apocalypto Now!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-174-apocalypto-n/4000-716056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132207/","id":132207,"name":"Homefront","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-3-homefront/4000-132207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133675/","id":133675,"name":"Sacred Invasion, Part 3: Contact","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-119-sacred-invasion-part-3-con/4000-133675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133919/","id":133919,"name":"Are You My Mummy?","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-13-are-you-my-mummy/4000-133919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134597/","id":134597,"name":"Death of a Wise Guy; Birthday Boy; The Spartacus Gambit - Character Assassination: Interlude","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-extra-1-death-of-a-wise-guy/4000-134597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137563/","id":137563,"name":"World War Hulk Prologue: World Breaker / Incredible Hulk #106","site_detail_url":"https://comicvine.gamespot.com/hulk-chronicles-wwh-1-world-war-hulk-prologue-worl/4000-137563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139670/","id":139670,"name":"","site_detail_url":"https://comicvine.gamespot.com/no-hero-1/4000-139670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133045/","id":133045,"name":"Deadly Crossroad!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-22-deadly-crossroad/4000-133045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174653/","id":174653,"name":"The Need For Speed Stampede!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-41-the-need-for-speed/4000-174653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169707/","id":169707,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-the-ultron-initiative-1-volume-1/4000-169707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134207/","id":134207,"name":"Best Of Show","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-1-best-of-show/4000-134207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270746/","id":270746,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-circle-1-hctpb/4000-270746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232249/","id":232249,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-11-volume-el/4000-232249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133749/","id":133749,"name":"The Dream and the Nightmare","site_detail_url":"https://comicvine.gamespot.com/american-dream-5-the-dream-and-the-nightmare/4000-133749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208965/","id":208965,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-1-hc-tpb/4000-208965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134005/","id":134005,"name":"Power to the People, Part 1: Four for the Future!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-1-power-to-the-people-part-1-four/4000-134005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134702/","id":134702,"name":"I Was An Intergalactic Juvenile Delinquent!","site_detail_url":"https://comicvine.gamespot.com/skrulls-vs-power-pack-1-i-was-an-intergalactic-juv/4000-134702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298199/","id":298199,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-25/4000-298199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295866/","id":295866,"name":"Para Que Yo Viva... ¡Mi Amor Debe Morir!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-6-para-que-yo-viva-mi-amo/4000-295866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174133/","id":174133,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-3-volume-3/4000-174133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139014/","id":139014,"name":"Issue 3","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-3-issue-3/4000-139014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207612/","id":207612,"name":"Incredible Hercules: Against the World","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-against-the-world-1-incredible/4000-207612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133956/","id":133956,"name":"Chimera: Soul of Fire","site_detail_url":"https://comicvine.gamespot.com/checkmate-28-chimera-soul-of-fire/4000-133956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249312/","id":249312,"name":"Ultimate Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-ultimate-power/4000-249312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716055/","id":716055,"name":"Present Danger!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-173-present-dang/4000-716055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290090/","id":290090,"name":"Countdown To Mystery","site_detail_url":"https://comicvine.gamespot.com/dr-fate-countdown-to-mystery-1-countdown-to-myster/4000-290090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132215/","id":132215,"name":"Chapter One: The End of the World","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-front-line-1-chapter-one-the-end-o/4000-132215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132222/","id":132222,"name":"War Baby, Part 5","site_detail_url":"https://comicvine.gamespot.com/cable-5-war-baby-part-5/4000-132222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133021/","id":133021,"name":"Extinction Agenda","site_detail_url":"https://comicvine.gamespot.com/young-x-men-4-extinction-agenda/4000-133021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133646/","id":133646,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-4-resurrection/4000-133646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133668/","id":133668,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-16-untitled/4000-133668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133768/","id":133768,"name":"Valley Forge, Valley Forge: Part 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-59-valley-forge-valley-forge-part-5/4000-133768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134014/","id":134014,"name":"“The Mortal Iron Fist\" part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-17-the-mortal-iron-fist-par/4000-134014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134094/","id":134094,"name":"Invaded, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-14-invaded-part-1/4000-134094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134595/","id":134595,"name":"No one gets back alive! Part 3: Escape from Fantasy Island","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four-3-no-one-gets-back-/4000-134595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134593/","id":134593,"name":"Secret Invasion: The Battle Of Manhattan. Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-29-secret-invasion-the-battle-of-manhatt/4000-134593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134599/","id":134599,"name":"War of the Symbiotes, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-124-war-of-the-symbiotes-part-/4000-134599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136976/","id":136976,"name":"Girls Night Out","site_detail_url":"https://comicvine.gamespot.com/witchblade-120-girls-night-out/4000-136976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137274/","id":137274,"name":"Time of Your Life, Part Three","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-eight-18-time-of-y/4000-137274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138885/","id":138885,"name":"","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-2/4000-138885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137439/","id":137439,"name":"Remix","site_detail_url":"https://comicvine.gamespot.com/street-fighter-remix-0-remix/4000-137439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139698/","id":139698,"name":"Have You Seen Me?","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-138-have-you-seen-me/4000-139698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134201/","id":134201,"name":"Absolute Power, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-96-absolute-power-part-3-of-4/4000-134201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133035/","id":133035,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-2-part-2/4000-133035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133999/","id":133999,"name":"The Midget & Mr. Johnson","site_detail_url":"https://comicvine.gamespot.com/young-liars-5-the-midget-mr-johnson/4000-133999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140287/","id":140287,"name":"World's Deadliest","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-50-worlds-deadliest/4000-140287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132217/","id":132217,"name":"Threeway Collision!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-564-threeway-collision/4000-132217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132937/","id":132937,"name":"Kraven's First Hunt Part One: To Squash A Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-565-kravens-first-hunt-part/4000-132937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133680/","id":133680,"name":"Kraven's First Hunt, Part Two: Identity Crisis!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-566-kravens-first-hunt-part/4000-133680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134075/","id":134075,"name":"Blood in the Game, Part 5","site_detail_url":"https://comicvine.gamespot.com/dmz-33-blood-in-the-game-part-5/4000-134075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133843/","id":133843,"name":"In the Company of Wolves","site_detail_url":"https://comicvine.gamespot.com/moon-knight-20-in-the-company-of-wolves/4000-133843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190824/","id":190824,"name":"The Tornado's Path","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-tornados-path-1-the-/4000-190824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203572/","id":203572,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-identity-crisis-1-vol/4000-203572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171901/","id":171901,"name":"HC\\TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-kraven-s-last-hunt-1-hc-tpb/4000-171901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134085/","id":134085,"name":"The Only Good Skrull","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-15-the-only-good-skrull/4000-134085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235556/","id":235556,"name":"Apocalypse","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-apocalypse-1-apocalypse/4000-235556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134092/","id":134092,"name":"Cruel & Unusual, Part Three of Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-109-cruel-unusual-part-three-of-four/4000-134092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134160/","id":134160,"name":"Highways & Byways","site_detail_url":"https://comicvine.gamespot.com/the-secret-history-of-the-authority-jack-hawksmoor/4000-134160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132352/","id":132352,"name":"Jigsaw Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-21-jigsaw-part-4-of-6/4000-132352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137325/","id":137325,"name":"I Tell You No Lie, G.I., Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-22-i-tell-you-no-lie-gi-conclusion/4000-137325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289593/","id":289593,"name":"","site_detail_url":"https://comicvine.gamespot.com/green-lantern-sonderband-10/4000-289593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137390/","id":137390,"name":"War & Pieces, Part Three: The Fire Ship; Chapter Four: Fort Bravo!; Epilogue: Amnesty","site_detail_url":"https://comicvine.gamespot.com/fables-75-war-pieces-part-three-the-fire-ship-chap/4000-137390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448278/","id":448278,"name":"Volume 3: Armageddon","site_detail_url":"https://comicvine.gamespot.com/highlander-3-volume-3-armageddon/4000-448278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169573/","id":169573,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/vertigo-encyclopedia-1-hc/4000-169573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140615/","id":140615,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-twelve-1-2/4000-140615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138429/","id":138429,"name":"Dirty Tricks, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/ex-machina-38-dirty-tricks-chapter-3/4000-138429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132926/","id":132926,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-4/4000-132926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276223/","id":276223,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/eternals-by-jack-kirby-2-book-two/4000-276223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131324/","id":131324,"name":"Battlefield Brooklyn","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-2-battlefield-brooklyn/4000-131324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134000/","id":134000,"name":"If I Had a Hammer","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-40-if-i-had-a-hammer/4000-134000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181917/","id":181917,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-death-of-wolverine-1-hctpb/4000-181917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292924/","id":292924,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-11/4000-292924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179390/","id":179390,"name":"Roach Motel","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-37-roach-motel/4000-179390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133981/","id":133981,"name":"To Follow That Dream!","site_detail_url":"https://comicvine.gamespot.com/american-dream-3-to-follow-that-dream/4000-133981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133982/","id":133982,"name":"Even A Dream Can Die!","site_detail_url":"https://comicvine.gamespot.com/american-dream-4-even-a-dream-can-die/4000-133982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133276/","id":133276,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hulk-raging-thunder-1/4000-133276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131487/","id":131487,"name":"The War Day, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/new-exiles-7-the-war-day-part-1-of-4/4000-131487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131515/","id":131515,"name":"Sacred Invasion, Part 2: Dream Time","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-118-sacred-invasion-part-2-dre/4000-131515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131467/","id":131467,"name":"Who's That Girl?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-21-whos-that-girl/4000-131467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472863/","id":472863,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-31/4000-472863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137832/","id":137832,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-saga-1/4000-137832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358012/","id":358012,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-1/4000-358012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136283/","id":136283,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-2/4000-136283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213717/","id":213717,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-classic-1-volume-1/4000-213717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420936/","id":420936,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-35/4000-420936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183605/","id":183605,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/moon-knight-god-and-country-1-hctpb/4000-183605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187095/","id":187095,"name":"Silver Surfer: Requiem","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-requiem-1-silver-surfer-requiem/4000-187095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420932/","id":420932,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-34/4000-420932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131297/","id":131297,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-3/4000-131297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131548/","id":131548,"name":"Salem's Seven, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-55-salems-seven-part-2/4000-131548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131799/","id":131799,"name":"Secret Invasion: The Battle Of Manhattan. Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-28-secret-invasion-the-battle-of-manhatt/4000-131799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131812/","id":131812,"name":"Secret Invasion!, Part 1","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-1-secret-in/4000-131812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131820/","id":131820,"name":"Dead-End Kids, Part 6","site_detail_url":"https://comicvine.gamespot.com/runaways-30-dead-end-kids-part-6/4000-131820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131821/","id":131821,"name":"Savages","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-4-savages/4000-131821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135086/","id":135086,"name":"I Tell You No Lie, G.I., Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-21-i-tell-you-no-lie-gi-part-three/4000-135086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131870/","id":131870,"name":"War of the Symbiotes, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-123-war-of-the-symbiotes-part-/4000-131870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131323/","id":131323,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-1-part-1/4000-131323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135020/","id":135020,"name":"","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-the-darkness-1/4000-135020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135066/","id":135066,"name":"Time of Your Life, Part Two","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-eight-17-time-of-y/4000-135066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135221/","id":135221,"name":"Prelude","site_detail_url":"https://comicvine.gamespot.com/rest-0-prelude/4000-135221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134001/","id":134001,"name":"Bedsheets and Bloodstains","site_detail_url":"https://comicvine.gamespot.com/young-liars-4-bedsheets-and-bloodstains/4000-134001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131810/","id":131810,"name":"The Man Who Bought America, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-39-the-man-who-bought-america-part/4000-131810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136057/","id":136057,"name":"","site_detail_url":"https://comicvine.gamespot.com/immortal-iron-fist-the-origin-of-danny-rand-1/4000-136057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183526/","id":183526,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/dmz-the-hidden-war-1-volume-5/4000-183526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131321/","id":131321,"name":"Peter Parker: Paparazzi, Part 3 of 3: Photo Finished","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-561-peter-parker-paparazzi-/4000-131321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131511/","id":131511,"name":"So Spider-Man Walks Into A Bar AND...","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-563-so-spider-man-walks-int/4000-131511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131395/","id":131395,"name":"The Other Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-562-the-other-spider-man/4000-131395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150839/","id":150839,"name":"Blood in the Game, Part 4","site_detail_url":"https://comicvine.gamespot.com/dmz-32-blood-in-the-game-part-4/4000-150839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132614/","id":132614,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/young-avengers-presents-6-hawkeye/4000-132614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131294/","id":131294,"name":"Issue Three","site_detail_url":"https://comicvine.gamespot.com/kick-ass-3-issue-three/4000-131294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131538/","id":131538,"name":"\"X-It Strategy\"","site_detail_url":"https://comicvine.gamespot.com/x-factor-32-x-it-strategy/4000-131538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168508/","id":168508,"name":"Rage Against the Machine: part two","site_detail_url":"https://comicvine.gamespot.com/dc-special-cyborg-2-rage-against-the-machine-part-/4000-168508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131833/","id":131833,"name":"Cruel & Unusual, Part Two of Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-108-cruel-unusual-part-two-of-four/4000-131833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131791/","id":131791,"name":"Jigsaw Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-20-jigsaw-part-3-of-6/4000-131791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131592/","id":131592,"name":"Valley Forge, Valley Forge: Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-58-valley-forge-valley-forge-part-4/4000-131592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131623/","id":131623,"name":"Louse","site_detail_url":"https://comicvine.gamespot.com/gargoyles-bad-guys-4-louse/4000-131623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131933/","id":131933,"name":"","site_detail_url":"https://comicvine.gamespot.com/mythos-captain-america-1/4000-131933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302503/","id":302503,"name":"And Then You Live!","site_detail_url":"https://comicvine.gamespot.com/deathblow-and-then-you-live-1-and-then-you-live/4000-302503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135209/","id":135209,"name":"1883 - Chapter Three: The Showdown","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-24-1883-chapter-three-the-showdown/4000-135209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131591/","id":131591,"name":"Dirty Tricks, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/ex-machina-37-dirty-tricks-chapter-2/4000-131591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133998/","id":133998,"name":"Model Student","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-39-model-student/4000-133998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129662/","id":129662,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-man-viva-las-vegas-1/4000-129662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129590/","id":129590,"name":"Old Soldiers, New Wars","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-1-old-soldiers-new-wars/4000-129590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292922/","id":292922,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-10/4000-292922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213810/","id":213810,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-hunterhunted-1-volume-3/4000-213810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130637/","id":130637,"name":"The Choice And The Challenge!","site_detail_url":"https://comicvine.gamespot.com/american-dream-2-the-choice-and-the-challenge/4000-130637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299368/","id":299368,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-1/4000-299368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131118/","id":131118,"name":"Hatchlings Gone Wild !","site_detail_url":"https://comicvine.gamespot.com/power-pack-day-one-3-hatchlings-gone-wild/4000-131118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488854/","id":488854,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/ed-burns-dock-walloper-1-hc-tpb/4000-488854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129706/","id":129706,"name":"Shattered Dream","site_detail_url":"https://comicvine.gamespot.com/american-dream-1-shattered-dream/4000-129706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298198/","id":298198,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-24/4000-298198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295865/","id":295865,"name":"¡El Azote del Látigo!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-5-el-azote-del-latigo/4000-295865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472862/","id":472862,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-30/4000-472862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134994/","id":134994,"name":"Beyond Wonderland","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-1-beyond-wonderland/4000-134994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459410/","id":459410,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/power-pack-the-kids-are-all-right-1-hc/4000-459410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131019/","id":131019,"name":"Dark Art","site_detail_url":"https://comicvine.gamespot.com/she-hulk-29-dark-art/4000-131019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169589/","id":169589,"name":"New Avengers: The Trust","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-trust-1-new-avengers-the-trust/4000-169589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246312/","id":246312,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-omnibus-1-hc/4000-246312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231529/","id":231529,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-deluxe-edition-1-book-one/4000-231529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133183/","id":133183,"name":"Issue 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-all-hail-megatron-1-issue-1/4000-133183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192864/","id":192864,"name":"The Death of Captain America: The Death of the Dream","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-death-of-the-dream-1-/4000-192864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217587/","id":217587,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvels-1-hc/4000-217587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256627/","id":256627,"name":"Out of Order/Peace in Our Time/New Kid in Town","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-70-out-of-orderpeace-in/4000-256627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715379/","id":715379,"name":"Green Day","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-170-green-day/4000-715379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132209/","id":132209,"name":"Great. Now He's Holding His Breath; Knight in Shiny Armor","site_detail_url":"https://comicvine.gamespot.com/trinity-5-great-now-hes-holding-his-breath-knight-/4000-132209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210379/","id":210379,"name":"The Sinestro Corps War Vol. 2","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-sinestro-corps-war-2-the-sinestr/4000-210379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132593/","id":132593,"name":"Aphrodite","site_detail_url":"https://comicvine.gamespot.com/witchblade-119-aphrodite/4000-132593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134090/","id":134090,"name":"","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-1/4000-134090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135501/","id":135501,"name":"15 Minutes Part 7","site_detail_url":"https://comicvine.gamespot.com/gen-13-20-15-minutes-part-7/4000-135501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132125/","id":132125,"name":"Time Of Your Life, Part One","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-eight-16-time-of-y/4000-132125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130994/","id":130994,"name":"D.O.A.: The GOD of WAR!","site_detail_url":"https://comicvine.gamespot.com/final-crisis-1-doa-the-god-of-war/4000-130994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130374/","id":130374,"name":"A Hard-Knock Life","site_detail_url":"https://comicvine.gamespot.com/young-liars-3-a-hard-knock-life/4000-130374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134559/","id":134559,"name":"Paperboy Blues; Cereal Quest; Paperboy Showdown; Hulk Date; Round Trip; Rally the Troops; Passing the Torch; The Iron Avengers","site_detail_url":"https://comicvine.gamespot.com/mini-marvels-rock-paper-scissors-1-paperboy-blues-/4000-134559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130969/","id":130969,"name":"Gone","site_detail_url":"https://comicvine.gamespot.com/giant-size-astonishing-x-men-1-gone/4000-130969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129657/","id":129657,"name":"Freak The Third","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-558-freak-the-third/4000-129657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130329/","id":130329,"name":"Peter Parker, Paparazzi: The Money Shot","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-559-peter-parker-paparazzi-/4000-130329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130591/","id":130591,"name":"Peter Parker: Paparazzi Part Two: Flat Out Crazy!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-560-peter-parker-paparazzi-/4000-130591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141751/","id":141751,"name":"Blood in the Game, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-31-blood-in-the-game-part-3/4000-141751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189492/","id":189492,"name":"Operation Rebirth","site_detail_url":"https://comicvine.gamespot.com/captain-america-operation-rebirth-1-operation-rebi/4000-189492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131149/","id":131149,"name":"Stature","site_detail_url":"https://comicvine.gamespot.com/young-avengers-presents-5-stature/4000-131149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192126/","id":192126,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-hulk-vs-the-marvel-universe-1-tpb/4000-192126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129659/","id":129659,"name":"The Five Nightmares, Part 1: Armageddon Days","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-1-the-five-nightmares-part/4000-129659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186276/","id":186276,"name":"Unstoppable","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-unstoppable-1-unstoppable/4000-186276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170885/","id":170885,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-classics-22/4000-170885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130818/","id":130818,"name":"Salem's Seven, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-54-salems-seven-part-1/4000-130818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133902/","id":133902,"name":"Rage Against the Machine","site_detail_url":"https://comicvine.gamespot.com/dc-special-cyborg-1-rage-against-the-machine/4000-133902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131016/","id":131016,"name":"Cruel & Unusual, Part One of Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-107-cruel-unusual-part-one-of-four/4000-131016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131407/","id":131407,"name":"First Strike","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-2-first-strike/4000-131407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169681/","id":169681,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-new-york-four-1-ogn/4000-169681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267105/","id":267105,"name":"Book One: Old Soldiers, New Wars","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-1-director-s-cut-1-book-one-old-/4000-267105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129861/","id":129861,"name":"Jigsaw Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-19-jigsaw-part-2-of-6/4000-129861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130410/","id":130410,"name":"Valley Forge, Valley Forge: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-57-valley-forge-valley-forge-part-3/4000-130410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132223/","id":132223,"name":"I Tell You No Lie, G.I., Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-20-i-tell-you-no-lie-gi-part-two/4000-132223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167092/","id":167092,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/essential-fantastic-four-7-volume-7/4000-167092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385521/","id":385521,"name":"Иллюминаты. Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-105-2/4000-385521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131232/","id":131232,"name":"War and Pieces, Chapter One: Voyage of The Sky Treader","site_detail_url":"https://comicvine.gamespot.com/fables-73-war-and-pieces-chapter-one-voyage-of-the/4000-131232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392659/","id":392659,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-coat-52-page-special-1/4000-392659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130657/","id":130657,"name":"The Only Game In Town, Part 4: The Middle East Side is Burning","site_detail_url":"https://comicvine.gamespot.com/x-factor-31-the-only-game-in-town-part-4-the-middl/4000-130657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130997/","id":130997,"name":"The Worst Day In Peter Parker's Life","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-122-the-worst-day-in-peter-par/4000-130997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129705/","id":129705,"name":"The Quick and the Dead","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-quick-and-the-dead-1-the-quick-and-th/4000-129705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145787/","id":145787,"name":"Our Artists at War!","site_detail_url":"https://comicvine.gamespot.com/comic-book-comics-2-our-artists-at-war/4000-145787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133993/","id":133993,"name":"There's No Bee in Team","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-38-theres-no-bee-in-t/4000-133993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131219/","id":131219,"name":"Advent, Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-118-advent-part-3-of-3/4000-131219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222635/","id":222635,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/x-factor-visionaries-peter-david-4-volume-four/4000-222635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131647/","id":131647,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-origins-1-volume-1/4000-131647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331800/","id":331800,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-iron-prometheus-1-volume-1/4000-331800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166497/","id":166497,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/fables-the-good-prince-1-volume-10/4000-166497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128467/","id":128467,"name":"Meanwhere Elsewere","site_detail_url":"https://comicvine.gamespot.com/power-pack-day-one-2-meanwhere-elsewere/4000-128467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297888/","id":297888,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-5/4000-297888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315524/","id":315524,"name":"Volume One: Will Tomorrow Ever Come?","site_detail_url":"https://comicvine.gamespot.com/the-complete-little-orphan-annie-1-volume-one-will/4000-315524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472861/","id":472861,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-29/4000-472861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202253/","id":202253,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-front-line-1-tpb/4000-202253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131518/","id":131518,"name":"KPLOW; Earth To Rita","site_detail_url":"https://comicvine.gamespot.com/trinity-3-kplow-earth-to-rita/4000-131518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716010/","id":716010,"name":"The Ultron Supremacy!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-169-the-ultron-s/4000-716010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127123/","id":127123,"name":"World's Greatest, Part 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-556-world-s-greatest-part-3/4000-127123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217592/","id":217592,"name":"Local Deluxe Hardcover","site_detail_url":"https://comicvine.gamespot.com/local-1-local-deluxe-hardcover/4000-217592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186465/","id":186465,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-1-world-war-hulk/4000-186465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246738/","id":246738,"name":"The Injustice League","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-the-injustice-league-1-t/4000-246738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131437/","id":131437,"name":"KAMANDI, THE LAST BOY ON EARTH 80-PAGE GIANT","site_detail_url":"https://comicvine.gamespot.com/countdown-special-kamandi-the-last-boy-on-earth-1-/4000-131437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128223/","id":128223,"name":"Father Issues, Part 2","site_detail_url":"https://comicvine.gamespot.com/thor-8-father-issues-part-2/4000-128223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135503/","id":135503,"name":"15 Minutes Part 6","site_detail_url":"https://comicvine.gamespot.com/gen-13-19-15-minutes-part-6/4000-135503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130592/","id":130592,"name":"Thy Kingdom Come: The Good Fight","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-15-thy-kingdom-come-the/4000-130592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126383/","id":126383,"name":"Sometimes it Snows in April - Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-555-sometimes-it-snows-in-a/4000-126383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127108/","id":127108,"name":"The Last Nameless Day","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-556-the-last-nameless-day/4000-127108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127621/","id":127621,"name":"The Complete Edition","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition-/4000-127621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127500/","id":127500,"name":"The Man Who Bought America, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-37-the-man-who-bought-america-part/4000-127500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128596/","id":128596,"name":"Surprise!!","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-class-2-surprise/4000-128596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127548/","id":127548,"name":"Dead of Winter","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-557-dead-of-winter/4000-127548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141750/","id":141750,"name":"Blood in the Game, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-30-blood-in-the-game-part-2/4000-141750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194425/","id":194425,"name":"Director's Cut","site_detail_url":"https://comicvine.gamespot.com/spider-man-swing-shift-directors-cut-1-directors-c/4000-194425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128792/","id":128792,"name":"Omega Red","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-121-omega-red/4000-128792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127117/","id":127117,"name":"Blue & Gold, Chapter 3: Freedom Fighters","site_detail_url":"https://comicvine.gamespot.com/booster-gold-8-blue-gold-chapter-3-freedom-fighter/4000-127117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128357/","id":128357,"name":"Chimera Rising","site_detail_url":"https://comicvine.gamespot.com/dcwildstorm-dreamwar-1-chimera-rising/4000-128357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126448/","id":126448,"name":"Jigsaw Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-18-jigsaw-part-1-of-6/4000-126448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127186/","id":127186,"name":"Valley Forge, Valley Forge: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-56-valley-forge-valley-forge-part-2/4000-127186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276216/","id":276216,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/eternals-by-jack-kirby-1-book-one/4000-276216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280308/","id":280308,"name":"L'orrore oltre la soglia","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-297-lorrore-oltre-la-soglia/4000-280308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131384/","id":131384,"name":"I Tell You No Lie, G.I., Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-19-i-tell-you-no-lie-gi-part-one/4000-131384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128190/","id":128190,"name":"The Secret Invasion!: Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-26-the-secret-invasion-part-2/4000-128190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129089/","id":129089,"name":"CANON","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-11-canon/4000-129089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325394/","id":325394,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-and-the-fightin-scientists-of-tesladyn/4000-325394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134807/","id":134807,"name":"Skulduggery, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/fables-72-skulduggery-part-2-of-2/4000-134807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167580/","id":167580,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-bad-prince-1-volume-3/4000-167580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430909/","id":430909,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/proof-goatsucker-1-book-1/4000-430909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127498/","id":127498,"name":"The Only Game In Town, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-factor-30-the-only-game-in-town-part-2/4000-127498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129181/","id":129181,"name":"1883, Chapter One: The Legend of Smilin' Jack","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-22-1883-chapter-one-the-legend-of-s/4000-129181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317720/","id":317720,"name":"Volume Nine","site_detail_url":"https://comicvine.gamespot.com/invincible-out-of-this-world-1-volume-nine/4000-317720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129066/","id":129066,"name":"Apocalypse, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-93-apocalypse-conclusion/4000-129066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275538/","id":275538,"name":"Finstere Jahreszeiten","site_detail_url":"https://comicvine.gamespot.com/fables-6-finstere-jahreszeiten/4000-275538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129180/","id":129180,"name":"Dirty Tricks, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ex-machina-36-dirty-tricks-chapter-1/4000-129180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-863665/","id":863665,"name":null,"site_detail_url":"https://comicvine.gamespot.com/energy-and-safety-adventures-with-the-jla-1/4000-863665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131017/","id":131017,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-9/4000-131017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162956/","id":162956,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-2-volume-2/4000-162956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125189/","id":125189,"name":"Destiny Falls","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-1-destiny-falls/4000-125189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259634/","id":259634,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-1-part/4000-259634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259823/","id":259823,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-beginning-of-the-end-1-tpb/4000-259823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313501/","id":313501,"name":"Library Edition Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hellboy-seed-of-destruction-and-wake-the-devil-1-l/4000-313501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126339/","id":126339,"name":"Parentnapped By Snarks From Outer Space","site_detail_url":"https://comicvine.gamespot.com/power-pack-day-one-1-parentnapped-by-snarks-from-o/4000-126339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298151/","id":298151,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-2/4000-298151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125195/","id":125195,"name":"My Ally, My Enemy!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-18-my-ally-my-enemy/4000-125195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298197/","id":298197,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-23/4000-298197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295864/","id":295864,"name":"¡Tigra, Tigra, Ardiente Brillo!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-4-tigra-tigra-ardiente-br/4000-295864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460408/","id":460408,"name":"Gone (Part 1)","site_detail_url":"https://comicvine.gamespot.com/giant-size-astonishing-x-men-1-gone-part-1/4000-460408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715233/","id":715233,"name":"From Russia with Hate","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-168-from-russia-/4000-715233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164985/","id":164985,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-seven-capital-cities-of/4000-164985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167688/","id":167688,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-omnibus-1-volume-1/4000-167688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207570/","id":207570,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-incredible-herc-1-tpb/4000-207570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259714/","id":259714,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-new-fantastic-four-1-hctpb/4000-259714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207569/","id":207569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-gamma-corps-1-tpb/4000-207569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286610/","id":286610,"name":"Fall Of The Wall","site_detail_url":"https://comicvine.gamespot.com/checkmate-fall-of-the-wall-1-fall-of-the-wall/4000-286610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125171/","id":125171,"name":"World's Greatest, Part Two of Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-555-world-s-greatest-part-two-of-fo/4000-125171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413260/","id":413260,"name":"Going Underground","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-167-going-underg/4000-413260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127118/","id":127118,"name":"Thy Kingdom Come: GOG","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-14-thy-kingdom-come-gog/4000-127118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149987/","id":149987,"name":"Pericynthion & Untethered","site_detail_url":"https://comicvine.gamespot.com/countdown-to-mystery-7-pericynthion-untethered/4000-149987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125977/","id":125977,"name":"Spider-Man and His Amazing Friends: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-120-spider-man-and-his-amazing/4000-125977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124814/","id":124814,"name":"At a Thousand Miles An Hour","site_detail_url":"https://comicvine.gamespot.com/young-liars-1-at-a-thousand-miles-an-hour/4000-124814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125704/","id":125704,"name":"Father Issues, Part 1","site_detail_url":"https://comicvine.gamespot.com/thor-7-father-issues-part-1/4000-125704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125669/","id":125669,"name":"The Burden of Dreams (Part 6 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-36-the-burden-of-dreams-part-6-of-/4000-125669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167248/","id":167248,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/she-hulk-jaded-1-volume-6/4000-167248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124674/","id":124674,"name":"Just Blame Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-552-just-blame-spider-man/4000-124674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125190/","id":125190,"name":"Freak-Out!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-553-freak-out/4000-125190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125665/","id":125665,"name":"Burned!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-554-burned/4000-125665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141749/","id":141749,"name":"Blood in the Game, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-29-blood-in-the-game-part-1/4000-141749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125180/","id":125180,"name":"Time Is on No One's Side","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-10-time-is-on-no-one-s-side/4000-125180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125718/","id":125718,"name":"Alien Hated","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-4-alien-hated/4000-125718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125717/","id":125717,"name":"Haunted, Part 7","site_detail_url":"https://comicvine.gamespot.com/iron-man-27-haunted-part-7/4000-125717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126399/","id":126399,"name":"Issue Two","site_detail_url":"https://comicvine.gamespot.com/kick-ass-2-issue-two/4000-126399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212987/","id":212987,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/new-avengers-illuminati-1-hctpb/4000-212987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125186/","id":125186,"name":"The Only Game In Town, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-29-the-only-game-in-town-part-1/4000-125186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151883/","id":151883,"name":"Preludes & Intermissions","site_detail_url":"https://comicvine.gamespot.com/beyond-wonderland-0-preludes-intermissions/4000-151883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125975/","id":125975,"name":"Echo","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-39-echo/4000-125975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126028/","id":126028,"name":"Sympathy for the Devil","site_detail_url":"https://comicvine.gamespot.com/daredevil-106-sympathy-for-the-devil/4000-126028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127185/","id":127185,"name":"Valley Forge, Valley Forge: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-55-valley-forge-valley-forge-part-1/4000-127185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125025/","id":125025,"name":"How I Survived The Good Ol' Days","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-17-how-i-survived-the-good-ol/4000-125025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277013/","id":277013,"name":"Il Mondo di Domani","site_detail_url":"https://comicvine.gamespot.com/nathan-never-203-il-mondo-di-domani/4000-277013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190497/","id":190497,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-1-tpb/4000-190497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125974/","id":125974,"name":"The Secret Invasion!: Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-25-the-secret-invasion-part-1/4000-125974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131622/","id":131622,"name":"Gargoyles: Bad Guys #3","site_detail_url":"https://comicvine.gamespot.com/gargoyles-bad-guys-3-gargoyles-bad-guys-3/4000-131622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130022/","id":130022,"name":"Good for the Soul, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-18-good-for-the-soul-conclusion/4000-130022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125748/","id":125748,"name":"Fools Paradise Part 4: Foolproof","site_detail_url":"https://comicvine.gamespot.com/foolkiller-4-fools-paradise-part-4-foolproof/4000-125748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126060/","id":126060,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-ii-4/4000-126060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125768/","id":125768,"name":"Skulduggery, Part One of Two","site_detail_url":"https://comicvine.gamespot.com/fables-71-skulduggery-part-one-of-two/4000-125768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154934/","id":154934,"name":"","site_detail_url":"https://comicvine.gamespot.com/vertigo-first-cut-1/4000-154934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126059/","id":126059,"name":"The Conclusion","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-6/4000-126059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126056/","id":126056,"name":"Four Cubed, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-52-four-cubed-part-3/4000-126056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125979/","id":125979,"name":"Apocalypse Part 3 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-92-apocalypse-part-3-of-4/4000-125979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125818/","id":125818,"name":"The Race","site_detail_url":"https://comicvine.gamespot.com/ex-machina-35-the-race/4000-125818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619040/","id":619040,"name":"Renaissance","site_detail_url":"https://comicvine.gamespot.com/uchronie-s-new-york-1-renaissance/4000-619040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124225/","id":124225,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-5/4000-124225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122686/","id":122686,"name":"Everybody's Gone Surfing H-U-L-K","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-8-everybodys-gone-surfing-h/4000-122686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129067/","id":129067,"name":"Vanguard Chapter 8-Who is Trenton Craft?/Machine Man-Imitation Skin/Cyclops and Wolverine-The Rabbit Hunt/Weapon Omega Part 8 of 12","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-8-vanguard-chapter-8-who-is/4000-129067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127244/","id":127244,"name":"Advent, Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-117-advent-part-2-of-3/4000-127244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124961/","id":124961,"name":"Advent, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-116-advent-part-1-of-3/4000-124961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162314/","id":162314,"name":"Volume 1: The Twelve","site_detail_url":"https://comicvine.gamespot.com/x-men-vs-apocalypse-1-volume-1-the-twelve/4000-162314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176179/","id":176179,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-back-in-black-1-hctpb/4000-176179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122546/","id":122546,"name":"Monster and Marvel, Part 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-24-monster-and-marvel-part-4/4000-122546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213519/","id":213519,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-circle-of-blood-1-hctpb/4000-213519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228347/","id":228347,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-marvel-3-volume-3/4000-228347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285373/","id":285373,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-6/4000-285373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127499/","id":127499,"name":"Danger Room; Home; Blend In; Belong; Migas","site_detail_url":"https://comicvine.gamespot.com/x-men-divided-we-stand-1-danger-room-home-blend-in/4000-127499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497266/","id":497266,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-27/4000-497266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123004/","id":123004,"name":"A Matter of Trust!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-17-a-matter-of-trust/4000-123004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401777/","id":401777,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/people-s-history-of-american-empire-1-hc-sc/4000-401777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472859/","id":472859,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-27/4000-472859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127865/","id":127865,"name":"The Good Son","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-36-the-good-son/4000-127865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497265/","id":497265,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-26/4000-497265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181822/","id":181822,"name":"X-Factor: Heart of Ice","site_detail_url":"https://comicvine.gamespot.com/x-factor-heart-of-ice-1-x-factor-heart-of-ice/4000-181822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413259/","id":413259,"name":"Electric Crazyland","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-166-electric-cra/4000-413259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170500/","id":170500,"name":"Avengers: The Initiative: Basic Training","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-basic-training-1-avengers-/4000-170500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213822/","id":213822,"name":"Secret Invasion: The Infiltration","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-the-infiltration-1-secret-invasion/4000-213822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224882/","id":224882,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-1/4000-224882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150312/","id":150312,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-iron-man-3-volume-3/4000-150312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497264/","id":497264,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-25/4000-497264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135341/","id":135341,"name":"15 Minutes Part 4","site_detail_url":"https://comicvine.gamespot.com/gen-13-17-15-minutes-part-4/4000-135341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154959/","id":154959,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-9-volume-9/4000-154959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139554/","id":139554,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-birth-1/4000-139554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170139/","id":170139,"name":"Four Cubed, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-51-four-cubed-part-2/4000-170139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171946/","id":171946,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/moon-knight-midnight-sun-1-tpb/4000-171946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150837/","id":150837,"name":"Soames","site_detail_url":"https://comicvine.gamespot.com/dmz-28-soames/4000-150837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123372/","id":123372,"name":"Lo, There Shall Come A MENACE!!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-551-lo-there-shall-come-a-m/4000-123372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122068/","id":122068,"name":"The Venom Bomb, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-8-the-venom-bomb-pt-2/4000-122068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124065/","id":124065,"name":"Hulkling","site_detail_url":"https://comicvine.gamespot.com/young-avengers-presents-2-hulkling/4000-124065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123486/","id":123486,"name":"Dead-End Kids, Part 5","site_detail_url":"https://comicvine.gamespot.com/runaways-29-dead-end-kids-part-5/4000-123486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124020/","id":124020,"name":"Issue One","site_detail_url":"https://comicvine.gamespot.com/kick-ass-1-issue-one/4000-124020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203742/","id":203742,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-some-assembling-require/4000-203742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204049/","id":204049,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-defenders-1-volume-2/4000-204049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124075/","id":124075,"name":"The Burden of Dreams (Part 5 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-35-the-burden-of-dreams-part-5-of-/4000-124075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124057/","id":124057,"name":"Without Fear, Part Six of Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-105-without-fear-part-six-of-six/4000-124057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156827/","id":156827,"name":"And Then You Live! Part Nine","site_detail_url":"https://comicvine.gamespot.com/deathblow-9-and-then-you-live-part-nine/4000-156827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123002/","id":123002,"name":"The Survivors Guild","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-16-the-survivors-guild/4000-123002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280305/","id":280305,"name":"Java, addio!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-296-java-addio/4000-280305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131621/","id":131621,"name":"Gargoyles: Bad Guys #2","site_detail_url":"https://comicvine.gamespot.com/gargoyles-bad-guys-2-gargoyles-bad-guys-2/4000-131621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126712/","id":126712,"name":"Good for the Soul, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-17-good-for-the-soul-part-three/4000-126712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312650/","id":312650,"name":"Broken Trinity Prelude","site_detail_url":"https://comicvine.gamespot.com/broken-trinity-prelude-1-broken-trinity-prelude/4000-312650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122768/","id":122768,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-ii-3/4000-122768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131184/","id":131184,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-1-volume-one/4000-131184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125919/","id":125919,"name":"Where The Bodies Are Buried","site_detail_url":"https://comicvine.gamespot.com/the-darkness-butcher-1-where-the-bodies-are-buried/4000-125919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133138/","id":133138,"name":"","site_detail_url":"https://comicvine.gamespot.com/jenna-jamesons-shadow-hunter-2/4000-133138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385515/","id":385515,"name":"Вторжение Мандарина. Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-99-2/4000-385515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275710/","id":275710,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-2-volume-2/4000-275710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122484/","id":122484,"name":"Freefall, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/nightwing-141-freefall-chapter-two/4000-122484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122815/","id":122815,"name":"Aftermath","site_detail_url":"https://comicvine.gamespot.com/x-factor-28-aftermath/4000-122815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124082/","id":124082,"name":"Spider-Man & his Amazing Friends: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-119-spider-man-his-amazing-fri/4000-124082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123416/","id":123416,"name":"Apocalypse, Part 2 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-91-apocalypse-part-2-of-4/4000-123416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122418/","id":122418,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-twelve-2/4000-122418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123435/","id":123435,"name":"World's Finest","site_detail_url":"https://comicvine.gamespot.com/ex-machina-34-worlds-finest/4000-123435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121948/","id":121948,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-4/4000-121948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133159/","id":133159,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-monster-smash-1-volume-4/4000-133159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121661/","id":121661,"name":"Broken Bonds","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-16-broken-bonds/4000-121661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298196/","id":298196,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-22/4000-298196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297885/","id":297885,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-2/4000-297885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295863/","id":295863,"name":"¡Ni Todos Tus Poderes Podrán Salvarte!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-3-ni-todos-tus-poderes-po/4000-295863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431782/","id":431782,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-red-sonja-1-hc-tpb/4000-431782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472858/","id":472858,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-26/4000-472858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413258/","id":413258,"name":"Tentacles of Terror!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-165-tentacles-of/4000-413258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216554/","id":216554,"name":"Spider-Man: Reign","site_detail_url":"https://comicvine.gamespot.com/spider-man-reign-1-spider-man-reign/4000-216554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135803/","id":135803,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-24/4000-135803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196808/","id":196808,"name":"New York","site_detail_url":"https://comicvine.gamespot.com/the-uniques-1-new-york/4000-196808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125341/","id":125341,"name":"Gone Tomorrow","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-7-gone-tomorrow/4000-125341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122074/","id":122074,"name":"Epilogue, Part 3: The End","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-553-epilogue-part-3-the-end/4000-122074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132719/","id":132719,"name":"Who is Wonder Woman?","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-who-is-wonder-woman-1-who-is-wonder-w/4000-132719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413257/","id":413257,"name":"Army of One!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-164-army-of-one/4000-413257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135342/","id":135342,"name":"15 Minutes, Part 3","site_detail_url":"https://comicvine.gamespot.com/gen-13-16-15-minutes-part-3/4000-135342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122408/","id":122408,"name":"Who's That Girl?!?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-549-whos-that-girl/4000-122408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121182/","id":121182,"name":"Ring Quest Part 1","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-20-ring-quest-part-1/4000-121182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140207/","id":140207,"name":"Focus on Decepticons","site_detail_url":"https://comicvine.gamespot.com/transformers-focus-on-decepticons-1-focus-on-decep/4000-140207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150990/","id":150990,"name":"The Death Of Captain America, Act 2, The Burden of Dreams: Part Four. Director's Cut","site_detail_url":"https://comicvine.gamespot.com/captain-america-34-directors-cut-the-death-of-capt/4000-150990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150948/","id":150948,"name":"The Hard Call","site_detail_url":"https://comicvine.gamespot.com/george-rr-martins-wild-cards-the-hard-call-1-the-h/4000-150948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121876/","id":121876,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-2/4000-121876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122644/","id":122644,"name":"The Good Prince, Chapter Nine, Conclusion: Eternal","site_detail_url":"https://comicvine.gamespot.com/fables-69-the-good-prince-chapter-nine-conclusion-/4000-122644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122069/","id":122069,"name":"The Burden of Dreams (Part 4 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-34-the-burden-of-dreams-part-4-of-/4000-122069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141748/","id":141748,"name":"Random Fire","site_detail_url":"https://comicvine.gamespot.com/dmz-27-random-fire/4000-141748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121612/","id":121612,"name":"Crimes of the Heart","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-547-crimes-of-the-heart/4000-121612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121883/","id":121883,"name":"Blood Ties","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-548-blood-ties/4000-121883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122778/","id":122778,"name":"The Menace of...Menace!!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-550-the-menace-ofmenace/4000-122778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121087/","id":121087,"name":"The Venom Bomb, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-7-the-venom-bomb-part-1/4000-121087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121886/","id":121886,"name":"Patriot","site_detail_url":"https://comicvine.gamespot.com/young-avengers-presents-1-patriot/4000-121886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122806/","id":122806,"name":"Deep Background","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-3-deep-background/4000-122806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121100/","id":121100,"name":"Messiah CompleX, Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/x-factor-27-messiah-complex-chapter-eleven/4000-121100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216548/","id":216548,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-untold-team-ups-1-tpb/4000-216548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221631/","id":221631,"name":"The Lost Year","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-lost-year-1-the-lost-year/4000-221631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120865/","id":120865,"name":"In The Beginning...,Part One","site_detail_url":"https://comicvine.gamespot.com/teen-titans-year-one-1-in-the-beginningpart-one/4000-120865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235555/","id":235555,"name":"Volume 17","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-sentinels-1-volume-17/4000-235555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122216/","id":122216,"name":"Without Fear, Part Five of Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-104-without-fear-part-five-of-six/4000-122216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125673/","id":125673,"name":"Blue Blood; A Kiss In The Dreamhouse","site_detail_url":"https://comicvine.gamespot.com/dark-ivory-1-blue-blood-a-kiss-in-the-dreamhouse/4000-125673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121264/","id":121264,"name":"Hunter/Hunted, Part 3","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-15-hunterhunted-part-3/4000-121264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124724/","id":124724,"name":"Good for the Soul, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-16-good-for-the-soul-part-two/4000-124724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217043/","id":217043,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/the-boys-get-some-1-vol-2/4000-217043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121947/","id":121947,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-ii-2/4000-121947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324113/","id":324113,"name":"La porta degli incubi","site_detail_url":"https://comicvine.gamespot.com/dampyr-96-la-porta-degli-incubi/4000-324113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183525/","id":183525,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/dmz-friendly-fire-1-volume-4/4000-183525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120876/","id":120876,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-human-1/4000-120876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121966/","id":121966,"name":"Four Cubed, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-50-four-cubed-part-1/4000-121966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122070/","id":122070,"name":"Apocalypse, Part 1 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-90-apocalypse-part-1-of-4/4000-122070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121126/","id":121126,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-twelve-1/4000-121126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120542/","id":120542,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-3-untitled/4000-120542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132126/","id":132126,"name":"Walk Tall","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-19-walk-tall/4000-132126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121165/","id":121165,"name":"The Residents","site_detail_url":"https://comicvine.gamespot.com/witchblade-114-the-residents/4000-121165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126498/","id":126498,"name":"It's Not Easy Being Green; Endangered; Who Was That Goblin I Saw You With?; \"Have Yourself a Sandman Little Christmas!; Vanishing Spots","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-6-its-not-easy-being-green-endan/4000-126498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120636/","id":120636,"name":"Gossip Girls","site_detail_url":"https://comicvine.gamespot.com/giant-size-avengers-1-gossip-girls/4000-120636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120156/","id":120156,"name":"Dark Destiny!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-15-dark-destiny/4000-120156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472857/","id":472857,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-25/4000-472857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121423/","id":121423,"name":"The Rumors Of My Demise...","site_detail_url":"https://comicvine.gamespot.com/project-superpowers-1-the-rumors-of-my-demise/4000-121423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120315/","id":120315,"name":"Jaded: Episode 3","site_detail_url":"https://comicvine.gamespot.com/she-hulk-24-jaded-episode-3/4000-120315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123401/","id":123401,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-orson-randall-and-the-green/4000-123401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276147/","id":276147,"name":"Blood Will Run","site_detail_url":"https://comicvine.gamespot.com/the-flash-blood-will-run-1-blood-will-run/4000-276147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413256/","id":413256,"name":"London Crawling","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-163-london-crawl/4000-413256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119795/","id":119795,"name":"Epilogue, Part 2: The Middle Of The End","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-552-epilogue-part-2-the-middle-of-t/4000-119795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497260/","id":497260,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-21/4000-497260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120221/","id":120221,"name":"15 Minutes, Part 2","site_detail_url":"https://comicvine.gamespot.com/gen-13-15-15-minutes-part-2/4000-120221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120184/","id":120184,"name":null,"site_detail_url":"https://comicvine.gamespot.com/black-adam-the-dark-age-5/4000-120184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120942/","id":120942,"name":"Sinestro Corps War Part 12: Liberty's Light","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-19-sinestro-corps-war-part-12-/4000-120942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119032/","id":119032,"name":"Sex, Lies & DVD: Improbable Cause","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-1-sex-lies-dvd-improbable-cause/4000-119032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119211/","id":119211,"name":"Thy Kingdom Come: The Second Coming","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-11-thy-kingdom-come-the/4000-119211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138933/","id":138933,"name":"Unearthed","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-5-unearthed/4000-138933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122042/","id":122042,"name":"Divided","site_detail_url":"https://comicvine.gamespot.com/witchblade-115-divided/4000-122042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120541/","id":120541,"name":"The Burden of Dreams (Part 3 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-33-the-burden-of-dreams-part-3-of-/4000-120541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120220/","id":120220,"name":"Kelly","site_detail_url":"https://comicvine.gamespot.com/dmz-26-kelly/4000-120220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121086/","id":121086,"name":"Brand New Day; Park Avenue Interlude; The Astonishing Aunt May!; Harry and the Hollisters","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-546-brand-new-day-park-aven/4000-121086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187161/","id":187161,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m-1-house-of-m/4000-187161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119888/","id":119888,"name":"The Trust, Pt. 6","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-37-the-trust-pt-6/4000-119888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122202/","id":122202,"name":"The Trust, Pt. 7","site_detail_url":"https://comicvine.gamespot.com/new-avengers-annual-2-the-trust-pt-7/4000-122202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120237/","id":120237,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-6-untitled/4000-120237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120875/","id":120875,"name":"Reconstruction","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-2-reconstruction/4000-120875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120560/","id":120560,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-isla-de-la-muerte-1/4000-120560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120540/","id":120540,"name":"Haunted, Part 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-24-haunted-part-4/4000-120540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119874/","id":119874,"name":"Messiah CompleX Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/x-factor-26-messiah-complex-chapter-seven/4000-119874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122499/","id":122499,"name":"Good for the Soul, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-15-good-for-the-soul-part-one/4000-122499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122064/","id":122064,"name":"Spider-Man and his Amazing Friends, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-118-spider-man-and-his-amazing/4000-122064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120657/","id":120657,"name":"Without Fear, Part Four of Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-103-without-fear-part-four-of-six/4000-120657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145781/","id":145781,"name":"Funnies get Famous","site_detail_url":"https://comicvine.gamespot.com/comic-book-comics-1-funnies-get-famous/4000-145781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119798/","id":119798,"name":"Hunter/Hunted, Part 2","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-14-hunterhunted-part-2/4000-119798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237653/","id":237653,"name":"Volume 19","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-death-of-a-goblin-1-volume-19/4000-237653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233670/","id":233670,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-6-volume-6/4000-233670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313287/","id":313287,"name":"","site_detail_url":"https://comicvine.gamespot.com/m-200802/4000-313287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119872/","id":119872,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-ii-1/4000-119872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327693/","id":327693,"name":"Cospirazione Luna","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-295-cospirazione-luna/4000-327693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123604/","id":123604,"name":"","site_detail_url":"https://comicvine.gamespot.com/jenna-jamesons-shadow-hunter-1/4000-123604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120197/","id":120197,"name":"The Good Prince, Chapter Eight: Kingdom","site_detail_url":"https://comicvine.gamespot.com/fables-68-the-good-prince-chapter-eight-kingdom/4000-120197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120872/","id":120872,"name":"Part Three: The Beast Within","site_detail_url":"https://comicvine.gamespot.com/countdown-presents-lord-havok-and-the-extremists-3/4000-120872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125073/","id":125073,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-48/4000-125073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120808/","id":120808,"name":"Ghosts, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-49-ghosts-part-3/4000-120808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183022/","id":183022,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/madrox-multiple-choice-1-hc/4000-183022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275537/","id":275537,"name":"Aufmarsch Der Holzsoldaten","site_detail_url":"https://comicvine.gamespot.com/fables-5-aufmarsch-der-holzsoldaten/4000-275537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120335/","id":120335,"name":"Ex Cathedra Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-33-ex-cathedra-conclusion/4000-120335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819157/","id":819157,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-monsters-1-hc/4000-819157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118645/","id":118645,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-2-untitled/4000-118645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119972/","id":119972,"name":"Bruce Banner and the Half-Monkey Prince; Mini Marvels","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-5-bruce-banner-and-the-half/4000-119972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117893/","id":117893,"name":"The Fickle Hand, Part One: Go East, Young Man.","site_detail_url":"https://comicvine.gamespot.com/titans-east-special-1-the-fickle-hand-part-one-go-/4000-117893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118796/","id":118796,"name":"Big Game; The Goblin's Always Greener; The Spider and the Sorceror; Enter... Elektra!","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-5-big-game-the-goblins-always-gr/4000-118796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118128/","id":118128,"name":"Pt. 3","site_detail_url":"https://comicvine.gamespot.com/penance-relentless-3-pt-3/4000-118128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195981/","id":195981,"name":"Finding Home!","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-4-finding-home/4000-195981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119219/","id":119219,"name":"World War Hulk: Aftersmash; The Mini Marvels Present... World War Hulk: Rally the Troops","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-1-world-war-hulk-aftersm/4000-119219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240183/","id":240183,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/exiles-enemy-of-the-stars-1-volume-15/4000-240183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127863/","id":127863,"name":"The Tenant; Mini Marvels","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-33-the-tenant-mini-ma/4000-127863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292916/","id":292916,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-4/4000-292916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118470/","id":118470,"name":"Doing More; Mini Marvels","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-30-doing-more-min/4000-118470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394141/","id":394141,"name":null,"site_detail_url":"https://comicvine.gamespot.com/beyond-1/4000-394141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118023/","id":118023,"name":"The Enemy of My Enemy","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-14-the-enemy-of-my-enemy/4000-118023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298195/","id":298195,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-21/4000-298195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-296052/","id":296052,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-lobezno-la-materia-de-las-leyendas-1/4000-296052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472856/","id":472856,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-24/4000-472856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198503/","id":198503,"name":"Young Avengers","site_detail_url":"https://comicvine.gamespot.com/young-avengers-1-young-avengers/4000-198503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175648/","id":175648,"name":"Uncanny X-Men: Extremists","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-extremists-1-uncanny-x-men-extremist/4000-175648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216685/","id":216685,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-5-volume-5/4000-216685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221057/","id":221057,"name":"House Of M","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-20-house-of-m/4000-221057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120238/","id":120238,"name":"The Incredible Herc, Part 1: Birds of Stymphalis","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-112-the-incredible-herc-part-1-bir/4000-120238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203200/","id":203200,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-world-war-hulk-1-tpb/4000-203200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116918/","id":116918,"name":"Epilogue, Part 1: The Beginning Of The End","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-551-epilogue-part-1-the-beginning-o/4000-116918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162206/","id":162206,"name":"Volume 2: Grand Theft America","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-2-volume-2-grand-theft-america/4000-162206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203186/","id":203186,"name":"Ghost Rider: Apocalypse Soon","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-apocalypse-soon-1-ghost-rider-apocalyp/4000-203186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164631/","id":164631,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-19/4000-164631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118610/","id":118610,"name":"15 Minutes, Part 1","site_detail_url":"https://comicvine.gamespot.com/gen-13-14-15-minutes-part-1/4000-118610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117753/","id":117753,"name":"The Trust, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-36-the-trust-pt-5/4000-117753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120346/","id":120346,"name":"Sinestro Corps War Part 10: Hammer to Fall","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-18-sinestro-corps-war-part-10-/4000-120346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119950/","id":119950,"name":"Sinestro Corps War Part 11: Birth of the Black Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern-25-sinestro-corps-war-part-11-birth-/4000-119950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129078/","id":129078,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-8-volume-8/4000-129078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126735/","id":126735,"name":"The Other","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-other-1-the-other/4000-126735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120948/","id":120948,"name":"Life in Boxes","site_detail_url":"https://comicvine.gamespot.com/witchblade-113-life-in-boxes/4000-120948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117746/","id":117746,"name":"The Incredible Hulk/The Sentry","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-5-the-incredible-hulkthe-sentry/4000-117746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118235/","id":118235,"name":"The Burden of Dreams (Part 2 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-32-the-burden-of-dreams-part-2-of-/4000-118235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117064/","id":117064,"name":"Tesseract","site_detail_url":"https://comicvine.gamespot.com/supergirl-23-tesseract/4000-117064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117828/","id":117828,"name":"Logan Dies, Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-59-logan-dies-part-3/4000-117828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118143/","id":118143,"name":"Wilson","site_detail_url":"https://comicvine.gamespot.com/dmz-25-wilson/4000-118143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120557/","id":120557,"name":"One More Day, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-545-one-more-day-part-4/4000-120557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117782/","id":117782,"name":"I Am Here","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-1-i-am-here/4000-117782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118194/","id":118194,"name":"The Warrior Wake of Zinda Blake","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-112-the-warrior-wake-of-zinda-blake/4000-118194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118748/","id":118748,"name":"Death of a Goblin, Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-116-death-of-a-goblin-part-5/4000-118748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118613/","id":118613,"name":"Without Fear: Part Three Of Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-102-without-fear-part-three-of-six/4000-118613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260762/","id":260762,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-14/4000-260762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260763/","id":260763,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-15/4000-260763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224885/","id":224885,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-4/4000-224885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224886/","id":224886,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-5/4000-224886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224887/","id":224887,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-6/4000-224887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224888/","id":224888,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-7/4000-224888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224889/","id":224889,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-8/4000-224889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224883/","id":224883,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-2/4000-224883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224884/","id":224884,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-3/4000-224884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120343/","id":120343,"name":"And Then You Live! Part Eight","site_detail_url":"https://comicvine.gamespot.com/deathblow-8-and-then-you-live-part-eight/4000-120343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271001/","id":271001,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-the-fantastic-1-volume-1/4000-271001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271002/","id":271002,"name":"Voume 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-doom-2-voume-2/4000-271002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118022/","id":118022,"name":"Hunter/Hunted","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-13-hunterhunted/4000-118022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270993/","id":270993,"name":"Time to Kill","site_detail_url":"https://comicvine.gamespot.com/terminator-2-infinity-6-time-to-kill/4000-270993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270994/","id":270994,"name":"Time to Kill","site_detail_url":"https://comicvine.gamespot.com/terminator-2-infinity-7-time-to-kill/4000-270994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124998/","id":124998,"name":"Time to Kill Episode 3 of 4","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-5-time-to-kill-episode-3-of-4/4000-124998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291603/","id":291603,"name":"Cursed","site_detail_url":"https://comicvine.gamespot.com/shadowpact-cursed-1-cursed/4000-291603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228160/","id":228160,"name":"Long Cold Dark","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-9-long-cold-dark/4000-228160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183408/","id":183408,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-the-deluxe-edition-1-book-one/4000-183408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228159/","id":228159,"name":"Widowmaker","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-8-widowmaker/4000-228159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183602/","id":183602,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/captain-marvelms-marvel-secret-invasion-infiltrati/4000-183602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126733/","id":126733,"name":"One More Day","site_detail_url":"https://comicvine.gamespot.com/spider-man-one-more-day-1-one-more-day/4000-126733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315479/","id":315479,"name":"Annihilation Conquest, prologo","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-48-annihilation-conquest-prologo/4000-315479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129109/","id":129109,"name":"Coming of Age","site_detail_url":"https://comicvine.gamespot.com/darkness-coming-of-age-1-coming-of-age/4000-129109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292358/","id":292358,"name":"Marvel Zombies: Army of Darkness","site_detail_url":"https://comicvine.gamespot.com/max-21-marvel-zombies-army-of-darkness/4000-292358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292362/","id":292362,"name":"Marvel Zombies 2","site_detail_url":"https://comicvine.gamespot.com/max-25-marvel-zombies-2/4000-292362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313315/","id":313315,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-iron-man-movie-1/4000-313315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166079/","id":166079,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-planet-love-1-volume-6/4000-166079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117844/","id":117844,"name":"Mission Accomplished","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-4-mission-accomplished/4000-117844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118081/","id":118081,"name":"Messiah Complex Chapter Four","site_detail_url":"https://comicvine.gamespot.com/new-x-men-44-messiah-complex-chapter-four/4000-118081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117959/","id":117959,"name":"The Good Prince, Chapter Seven: Haven","site_detail_url":"https://comicvine.gamespot.com/fables-67-the-good-prince-chapter-seven-haven/4000-117959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117961/","id":117961,"name":null,"site_detail_url":"https://comicvine.gamespot.com/black-adam-the-dark-age-4/4000-117961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119336/","id":119336,"name":"Sentinels Epilogue","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-88-sentinels-epilogue/4000-119336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275547/","id":275547,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-1001-schneeweisse-nachte-1/4000-275547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119412/","id":119412,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-twelve-0/4000-119412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118121/","id":118121,"name":"Ex Cathedra Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-32-ex-cathedra-chapter-three/4000-118121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115540/","id":115540,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-1-untitled/4000-115540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115154/","id":115154,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-enter-the-mandarin-2/4000-115154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162316/","id":162316,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-1-volume-1/4000-162316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120321/","id":120321,"name":"Extermination","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-15-extermination/4000-120321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115399/","id":115399,"name":"Dead Again: Part One. Here Comes the Bride","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-1-dead-again-part-one-here/4000-115399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411054/","id":411054,"name":"Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/x-mannen-300-deadly-genesis/4000-411054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115812/","id":115812,"name":"What if the Hulk Died and Caiera Lived?; Peaceful Planet; What if Bruce Banner Had Landed on Sakaar Instead of the Hulk?","site_detail_url":"https://comicvine.gamespot.com/what-if-planet-hulk-1-what-if-the-hulk-died-and-ca/4000-115812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115412/","id":115412,"name":"Bad Seed","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-4-bad-seed/4000-115412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408927/","id":408927,"name":"Part I: From Columbus to the U.S. Constitution","site_detail_url":"https://comicvine.gamespot.com/the-cartoon-history-of-the-modern-world-1-part-i-f/4000-408927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115602/","id":115602,"name":"I, Hobgoblin!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-13-i-hobgoblin/4000-115602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472855/","id":472855,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-23/4000-472855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172987/","id":172987,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-the-final-doom-1-tpb/4000-172987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269246/","id":269246,"name":"Battlin' Jack Murdock","site_detail_url":"https://comicvine.gamespot.com/daredevil-battlin-jack-murdock-1-battlin-jack-murd/4000-269246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164630/","id":164630,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-18/4000-164630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115849/","id":115849,"name":"Jaded: Episode 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-22-jaded-episode-1/4000-115849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208574/","id":208574,"name":"Irredeemable Ant-Man: Small Minded","site_detail_url":"https://comicvine.gamespot.com/irredeemable-ant-man-small-minded-1-irredeemable-a/4000-208574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115398/","id":115398,"name":"Reconstruction, Part 7: Should Eternity Perish","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-550-reconstruction-part-7-should-et/4000-115398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116803/","id":116803,"name":"Sinestro Corps War Part 9: Endgame","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-17-sinestro-corps-war-part-9-e/4000-116803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168868/","id":168868,"name":"New Avengers: Revolution","site_detail_url":"https://comicvine.gamespot.com/new-avengers-revolution-1-new-avengers-revolution/4000-168868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115396/","id":115396,"name":"Embedded: Behind Enemy Lines/Costume Division: Death of an Android/The Top 10 Reasons to Hate Sally Floyd!","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-front-line-5-embedded-behind-enemy-/4000-115396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118696/","id":118696,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-front-line-6/4000-118696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130951/","id":130951,"name":"Tub Club, Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/hackslash-the-series-7-tub-club-part-1-of-3/4000-130951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115811/","id":115811,"name":"Death of a Goblin, Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-115-death-of-a-goblin-part-4/4000-115811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116361/","id":116361,"name":"Thy Kingdom Come: What a Wonderful World","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-10-thy-kingdom-come-wha/4000-116361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118735/","id":118735,"name":"One More Day, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-41-one-more-day-part-3/4000-118735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120180/","id":120180,"name":"Shadows and Lights","site_detail_url":"https://comicvine.gamespot.com/witchblade-112-shadows-and-lights/4000-120180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115395/","id":115395,"name":"The Trust, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-35-the-trust-pt-4/4000-115395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157456/","id":157456,"name":"Harlem(k)nights","site_detail_url":"https://comicvine.gamespot.com/nemrod-2-harlem-k-nights/4000-157456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115675/","id":115675,"name":"The Burden of Dreams (Part 1 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-31-the-burden-of-dreams-part-1-of-/4000-115675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115414/","id":115414,"name":"Logan Dies, Part 2: Curaetar","site_detail_url":"https://comicvine.gamespot.com/wolverine-58-logan-dies-part-2-curaetar/4000-115414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133163/","id":133163,"name":"Operation Lightning Storm","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-operation-lightning-storm-1-operation-li/4000-133163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180740/","id":180740,"name":"Vol. 1: Annihilation Conquest","site_detail_url":"https://comicvine.gamespot.com/nova-annihilation-conquest-1-vol-1-annihilation-co/4000-180740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141747/","id":141747,"name":"Amina","site_detail_url":"https://comicvine.gamespot.com/dmz-24-amina/4000-141747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116718/","id":116718,"name":"Haunted, Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-23-haunted-part-3/4000-116718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115857/","id":115857,"name":"Dead-End Kids, Part 4","site_detail_url":"https://comicvine.gamespot.com/runaways-28-dead-end-kids-part-4/4000-115857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204048/","id":204048,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-misunderstood-monster-1-vol/4000-204048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115855/","id":115855,"name":"Long Cold Dark: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-51-long-cold-dark-part-2/4000-115855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117827/","id":117827,"name":"Triple Threat","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-7-triple-threat/4000-117827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118078/","id":118078,"name":"Warbound, Part 6","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-111-warbound-part-6/4000-118078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260760/","id":260760,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-12/4000-260760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260761/","id":260761,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-13/4000-260761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115853/","id":115853,"name":"World War Frank","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-12-world-war-frank/4000-115853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280302/","id":280302,"name":"Ricordi dal futuro","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-294-ricordi-dal-futuro/4000-280302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128076/","id":128076,"name":"Fool's Paradise, pt. 1: A Day Late and Forty Thousand Dollars Short","site_detail_url":"https://comicvine.gamespot.com/foolkiller-1-fools-paradise-pt-1-a-day-late-and-fo/4000-128076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133137/","id":133137,"name":"Virgin Comics","site_detail_url":"https://comicvine.gamespot.com/jenna-jamesons-shadow-hunter-0-virgin-comics/4000-133137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115568/","id":115568,"name":"The Good Prince, Chapter Six: Envoy","site_detail_url":"https://comicvine.gamespot.com/fables-66-the-good-prince-chapter-six-envoy/4000-115568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150628/","id":150628,"name":"Out of the Frying Pan","site_detail_url":"https://comicvine.gamespot.com/shrugged-7-out-of-the-frying-pan/4000-150628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115410/","id":115410,"name":"The Isolationist, Conclusion; Endangered Species, Chapter 15","site_detail_url":"https://comicvine.gamespot.com/x-factor-24-the-isolationist-conclusion-endangered/4000-115410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142097/","id":142097,"name":"Giant-Sized Thing, Vol 3","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-giant-sized-thing-3-giant-size/4000-142097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115526/","id":115526,"name":"Ex Cathedra Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-31-ex-cathedra-chapter-two/4000-115526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114991/","id":114991,"name":"Revolution, Part 4","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-4-revolution-part-4/4000-114991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207943/","id":207943,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/supergirl-identity-1-volume-3/4000-207943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115067/","id":115067,"name":"The Hunted","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual-1-the-hunted/4000-115067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114426/","id":114426,"name":"Only The Innocent Must Die!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-12-only-the-innocent-must-/4000-114426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114542/","id":114542,"name":"Field Trip Of Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-3-field-trip-of-doom/4000-114542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298194/","id":298194,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-20/4000-298194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295862/","id":295862,"name":"¡Doble pelibro en el Daily Bugle!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-2-doble-pelibro-en-el-dai/4000-295862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472854/","id":472854,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-22/4000-472854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125004/","id":125004,"name":"Time to Kill Episode 1 of 4","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-4-time-to-kill-episode-1-of-4/4000-125004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181821/","id":181821,"name":"X-Factor: Many Lives of Madrox","site_detail_url":"https://comicvine.gamespot.com/x-factor-many-lives-of-madrox-1-x-factor-many-live/4000-181821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140394/","id":140394,"name":"Volume Nine","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-9-volume/4000-140394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211748/","id":211748,"name":"Love and Murder","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-love-and-murder-1-love-and-murder/4000-211748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114953/","id":114953,"name":"Unlimited, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-13-unlimited-chapter-2/4000-114953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114625/","id":114625,"name":"Embedded: Behind Enemy Lines / Costume Division: Death of an Android / War is Heck","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-front-line-4-embedded-behind-enemy-/4000-114625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114199/","id":114199,"name":"One More Day, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-544-one-more-day-part-1/4000-114199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114440/","id":114440,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-adam-the-dark-age-2/4000-114440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114434/","id":114434,"name":"Thy Kingdom Come: Prologue","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-9-thy-kingdom-come-prol/4000-114434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115394/","id":115394,"name":"One More Day, Part 2: The Other Side of Darkness","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-24-one-more-day-p/4000-115394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116653/","id":116653,"name":"Flights of Angels","site_detail_url":"https://comicvine.gamespot.com/witchblade-111-flights-of-angels/4000-116653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114984/","id":114984,"name":"Men of a Certain Deadly Persuasion: A Story of the Immortal Iron Fist","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-annual-1-men-of-a-certain-d/4000-114984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106521/","id":106521,"name":"Death of a Goblin: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-113-death-of-a-goblin-part-2/4000-106521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118447/","id":118447,"name":"Death March","site_detail_url":"https://comicvine.gamespot.com/52-aftermath-the-four-horsemen-2-death-march/4000-118447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114761/","id":114761,"name":"More Pain Comics Part One: Desccent Into The Psycosphere","site_detail_url":"https://comicvine.gamespot.com/countdown-to-mystery-1-more-pain-comics-part-one-d/4000-114761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114624/","id":114624,"name":"Let the Worlds Within and the Worlds Without Tremble in Their Orbits","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-4-let-the-worlds-within-and-the-wor/4000-114624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114665/","id":114665,"name":"Death of the Dream (Part 6 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-30-death-of-the-dream-part-6-of-6/4000-114665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115799/","id":115799,"name":"Procreation","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-14-procreation/4000-115799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114467/","id":114467,"name":"Decade Later","site_detail_url":"https://comicvine.gamespot.com/dmz-23-decade-later/4000-114467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185614/","id":185614,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-panther-four-the-hard-way-1-tpb/4000-185614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114394/","id":114394,"name":"The Trust, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-34-the-trust-pt-3/4000-114394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115529/","id":115529,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-5-untitled/4000-115529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114617/","id":114617,"name":"Children of X-Men, Part 1 of 2; Endangered Species, Chapter 12","site_detail_url":"https://comicvine.gamespot.com/new-x-men-42-children-of-x-men-part-1-of-2-endange/4000-114617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114407/","id":114407,"name":"Unlimited, Chapter 1: Injustice League","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-wedding-special-1-unlimi/4000-114407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114959/","id":114959,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncle-sam-and-the-freedom-fighters-1/4000-114959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114981/","id":114981,"name":"Death of a Goblin, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-114-death-of-a-goblin-part-3/4000-114981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115778/","id":115778,"name":"Without Fear: Part Two Of Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-101-without-fear-part-two-of-six/4000-115778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114203/","id":114203,"name":"Warbound, Part 5","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-110-warbound-part-5/4000-114203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263925/","id":263925,"name":"Kong King of Skull Island","site_detail_url":"https://comicvine.gamespot.com/kong-king-of-skull-island-1-kong-king-of-skull-isl/4000-263925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114414/","id":114414,"name":"Heroes and Villains","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-11-heroes-and-villains/4000-114414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156826/","id":156826,"name":"And Then You Live! Part Seven","site_detail_url":"https://comicvine.gamespot.com/deathblow-7-and-then-you-live-part-seven/4000-156826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116943/","id":116943,"name":"The Iron Prometheus","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-iron-prometheus-3-the-iron-pro/4000-116943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114494/","id":114494,"name":"The Good Prince, Chapter Five: Duel","site_detail_url":"https://comicvine.gamespot.com/fables-65-the-good-prince-chapter-five-duel/4000-114494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114667/","id":114667,"name":"Love and War","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-3-love-and-war/4000-114667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448276/","id":448276,"name":"Volume 1: The Coldest War","site_detail_url":"https://comicvine.gamespot.com/highlander-1-volume-1-the-coldest-war/4000-448276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114395/","id":114395,"name":"The Isolationist, Part 3: True or False; Endangered Species, Chapter 11","site_detail_url":"https://comicvine.gamespot.com/x-factor-23-the-isolationist-part-3-true-or-false-/4000-114395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121512/","id":121512,"name":"The Black","site_detail_url":"https://comicvine.gamespot.com/spider-man-3-the-black-1-the-black/4000-121512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114400/","id":114400,"name":"Sentinels, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-86-sentinels-part-3/4000-114400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114471/","id":114471,"name":"Family Matters","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-11-family-matters/4000-114471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114626/","id":114626,"name":"Ex Cathedra Chapter One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-30-ex-cathedra-chapter-one/4000-114626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-825441/","id":825441,"name":"Hollywood Buzz!","site_detail_url":"https://comicvine.gamespot.com/nickelodeon-magazine-200711-hollywood-buzz/4000-825441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113687/","id":113687,"name":"The Hulks Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-hulk-2-the-hulks-take-manhattan/4000-113687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115677/","id":115677,"name":"Vanguard Chapter 2: No Earthly Means / Hellcat: The Girl Who Could Be You part 2 / Taskmaster: Best Offense / Weapon Omega Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-2-vanguard-chapter-2-no-ear/4000-115677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113540/","id":113540,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-3/4000-113540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113976/","id":113976,"name":"World's End","site_detail_url":"https://comicvine.gamespot.com/the-last-fantastic-four-story-1-worlds-end/4000-113976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222629/","id":222629,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/x-factor-visionaries-peter-david-3-volume-three/4000-222629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259627/","id":259627,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-the-next-age-1-volume-1/4000-259627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155373/","id":155373,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-moon-knight-2-volume-2/4000-155373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292913/","id":292913,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-1/4000-292913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113431/","id":113431,"name":"The Bough Breaks","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-11-the-bough-breaks/4000-113431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260759/","id":260759,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-11/4000-260759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268270/","id":268270,"name":"Semana veinticinco","site_detail_url":"https://comicvine.gamespot.com/52-25-semana-veinticinco/4000-268270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113102/","id":113102,"name":"The Utterly Awesome Adventure of Mass Master & Fabulous Frank!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-2-the-utterly-awesom/4000-113102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298193/","id":298193,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-19/4000-298193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472853/","id":472853,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-21/4000-472853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164625/","id":164625,"name":"Secrets Of The Black Cat","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13-secrets-of-the-black/4000-164625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216550/","id":216550,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-silver-rage-1-tp/4000-216550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413250/","id":413250,"name":"Family Ties","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-157-family-ties/4000-413250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112958/","id":112958,"name":"Embedded: Behind Enemy Lines / Costume Division: Death of an Android / War is Heck","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-front-line-3-embedded-behind-enemy-/4000-112958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113544/","id":113544,"name":"Monitor Duty","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-12-monitor-duty/4000-113544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115406/","id":115406,"name":"The Will to Power","site_detail_url":"https://comicvine.gamespot.com/atomic-robo-1-the-will-to-power/4000-115406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113956/","id":113956,"name":"Secret Weapons","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-5-secret-weapons/4000-113956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152752/","id":152752,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-dazzler-1-volume-1/4000-152752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113551/","id":113551,"name":"Death of a Goblin, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-112-death-of-a-goblin-part-1/4000-113551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112280/","id":112280,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-3/4000-112280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113543/","id":113543,"name":"Death of the Dream (Part 5 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-29-death-of-the-dream-part-5-of-6/4000-113543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114493/","id":114493,"name":"The Bad Prince, Part Three: The Legend of Wicked John","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-14-the-bad-prince-part-three-the-le/4000-114493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150838/","id":150838,"name":"Friendly Fire, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-22-friendly-fire-conclusion/4000-150838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114431/","id":114431,"name":"Incarceration","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-13-incarceration/4000-114431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113549/","id":113549,"name":"Fighting Words","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-23-fighting-words/4000-113549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113758/","id":113758,"name":"The Book Of Peter","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-40-the-book-of-peter/4000-113758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113757/","id":113757,"name":"Back In Black (Part 5 of 5): An Incident on the Fourth Floor","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-543-back-in-black-part-5-of/4000-113757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112291/","id":112291,"name":"Reconstruction, Part 5: Kind Of An Expensive Test","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-548-reconstruction-part-5-kind-of-a/4000-112291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115040/","id":115040,"name":"Temptation","site_detail_url":"https://comicvine.gamespot.com/witchblade-110-temptation/4000-115040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112960/","id":112960,"name":"The Trust, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-33-the-trust-pt-2/4000-112960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113795/","id":113795,"name":"Haunted, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-21-haunted-part-1/4000-113795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111383/","id":111383,"name":"The Extremists, Part 3; Endangered Species, Chapter 6","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-489-the-extremists-part-3-endang/4000-111383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118255/","id":118255,"name":"GoatSucker, Part One","site_detail_url":"https://comicvine.gamespot.com/proof-1-goatsucker-part-one/4000-118255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112738/","id":112738,"name":"Long Cold Dark: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-50-long-cold-dark-part-1/4000-112738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115175/","id":115175,"name":"","site_detail_url":"https://comicvine.gamespot.com/bomb-queen-iv-suicide-bomber-2/4000-115175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113577/","id":113577,"name":"Without Fear: Part One Of Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-100-without-fear-part-one-of-six/4000-113577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112986/","id":112986,"name":"Warbound, Part 4","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-109-warbound-part-4/4000-112986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189772/","id":189772,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus-1-volume-1/4000-189772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268965/","id":268965,"name":"Heart of Steel","site_detail_url":"https://comicvine.gamespot.com/marvel-halloween-ashcan-2007-heart-of-steel/4000-268965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176835/","id":176835,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/absolute-sandman-2-vol-2/4000-176835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317514/","id":317514,"name":"Il terrore che venne dallo schermo","site_detail_url":"https://comicvine.gamespot.com/storie-da-altrove-10-il-terrore-che-venne-dallo-sc/4000-317514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135312/","id":135312,"name":"The Power of the Noor Stones Revealed","site_detail_url":"https://comicvine.gamespot.com/the-99-1-the-power-of-the-noor-stones-revealed/4000-135312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115152/","id":115152,"name":"The Iron Prometheus","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-iron-prometheus-2-the-iron-pro/4000-115152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369694/","id":369694,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-1-hctpb/4000-369694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406276/","id":406276,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-defenders-war-1-hc/4000-406276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114283/","id":114283,"name":"Another Me, Another U.","site_detail_url":"https://comicvine.gamespot.com/she-hulk-21-another-me-another-u/4000-114283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113778/","id":113778,"name":"Origins","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-2-origins/4000-113778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112962/","id":112962,"name":"The Isolationist, Part 2: Natural Order; Endangered Species, Chapter 7","site_detail_url":"https://comicvine.gamespot.com/x-factor-22-the-isolationist-part-2-natural-order-/4000-112962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113430/","id":113430,"name":"Where Dreams to Nightmares Grow","site_detail_url":"https://comicvine.gamespot.com/exiles-97-where-dreams-to-nightmares-grow/4000-113430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218375/","id":218375,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-troll-witch-and-others-1-tpb/4000-218375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113739/","id":113739,"name":"Caged Angels, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-116-caged-angels-pt-1/4000-113739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275536/","id":275536,"name":"Die Letzte Festung","site_detail_url":"https://comicvine.gamespot.com/fables-4-die-letzte-festung/4000-275536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113959/","id":113959,"name":"Masquerade","site_detail_url":"https://comicvine.gamespot.com/ex-machina-special-3-masquerade/4000-113959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703636/","id":703636,"name":"Armageddon","site_detail_url":"https://comicvine.gamespot.com/captain-atom-1-armageddon/4000-703636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111498/","id":111498,"name":"The Stalking Dead","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-5-the-stalking-/4000-111498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114655/","id":114655,"name":"Vanguard 1 of 12 The Two John Does; The Girl Who Could Be You; Unfriendly Neighborhood; Weapon Omega; To Love a Man, Not a Monster","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-1-vanguard-1-of-12-the-two-/4000-114655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157636/","id":157636,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-white-and-blue-1-tpb/4000-157636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111583/","id":111583,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastic-five-1/4000-111583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112030/","id":112030,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-2/4000-112030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113227/","id":113227,"name":"Pop","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-4-pop/4000-113227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110754/","id":110754,"name":"The New Silver Age","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-3-the-new-silver/4000-110754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187093/","id":187093,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/white-tiger-a-heros-compulsion-1-tpb/4000-187093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113362/","id":113362,"name":"Rock and Roll","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-29-rock-and-roll/4000-113362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113320/","id":113320,"name":"The Clock is Ticking","site_detail_url":"https://comicvine.gamespot.com/she-hulk-20-the-clock-is-ticking/4000-113320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111607/","id":111607,"name":"Comes The Carnage!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-10-comes-the-carnage/4000-111607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111690/","id":111690,"name":"Attack of the Super Bullies","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-and-power-pack-1-attack-of-the-supe/4000-111690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298192/","id":298192,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-18/4000-298192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472852/","id":472852,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-20/4000-472852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353523/","id":353523,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-captain-america-deuxieme-mort-1/4000-353523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168677/","id":168677,"name":"Wolverine Origins: Savior","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-savior-1-wolverine-origins-savio/4000-168677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237652/","id":237652,"name":"Ultimate Knights","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-ultimate-knights-1-ultimate-kn/4000-237652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320050/","id":320050,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nightly-news-1-tpb/4000-320050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413249/","id":413249,"name":"Once an Avenger...","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-156-once-an-aven/4000-413249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164408/","id":164408,"name":"On The Prowl...","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-10-on-the-prowl/4000-164408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111727/","id":111727,"name":"Embedded: Behind Enemy Lines / Costume Division: Death of an Android / War is Heck","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-front-line-2-embedded-behind-enemy-/4000-111727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111489/","id":111489,"name":"Indestructable","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-7-indestructable/4000-111489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131617/","id":131617,"name":"Gargoyles #6","site_detail_url":"https://comicvine.gamespot.com/gargoyles-6-gargoyles-6/4000-131617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111670/","id":111670,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-2/4000-111670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111938/","id":111938,"name":"Warbound, Part 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-108-warbound-part-3/4000-111938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111671/","id":111671,"name":"Death of the Dream (Part 4 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-28-death-of-the-dream-part-4-of-6/4000-111671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112929/","id":112929,"name":"Problem Solved","site_detail_url":"https://comicvine.gamespot.com/jsa-classified-28-problem-solved/4000-112929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166493/","id":166493,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-civil-war-1-civil-war/4000-166493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114492/","id":114492,"name":"The Bad Prince, Part 2: I Forget","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-13-the-bad-prince-part-2-i-forget/4000-114492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172751/","id":172751,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-girl-presents-the-buzz-and-darkdevil-1-tpb/4000-172751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134015/","id":134015,"name":"Triptyche / Awww... Rats!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-38-triptyche-awww-rats/4000-134015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141746/","id":141746,"name":"Friendly Fire, Part 4","site_detail_url":"https://comicvine.gamespot.com/dmz-21-friendly-fire-part-4/4000-141746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111934/","id":111934,"name":"Subjugation","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-12-subjugation/4000-111934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113624/","id":113624,"name":"Predator/Prey","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-22-predatorprey/4000-113624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111930/","id":111930,"name":"The Last Temptation of Eddie Brock (part 2 of 2)","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-39-the-last-temptation-/4000-111930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111936/","id":111936,"name":"In Absentia","site_detail_url":"https://comicvine.gamespot.com/iron-man-20-in-absentia/4000-111936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111374/","id":111374,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-10-world-war-hulk/4000-111374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111703/","id":111703,"name":"Hulkbusters","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-1-hulkbusters/4000-111703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111708/","id":111708,"name":"Sworn to Protect","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men-2-sworn-to-protect/4000-111708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213996/","id":213996,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/silent-war-1-tpb/4000-213996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111490/","id":111490,"name":"The Isolationist, Part 1; Endangered Species, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/x-factor-21-the-isolationist-part-1-endangered-spe/4000-111490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111663/","id":111663,"name":"Green Zone","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-4-green-zone/4000-111663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113105/","id":113105,"name":"To The Devil, His Due; Part five (of five)","site_detail_url":"https://comicvine.gamespot.com/daredevil-99-to-the-devil-his-due-part-five-of-fiv/4000-113105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132740/","id":132740,"name":"Titans East","site_detail_url":"https://comicvine.gamespot.com/teen-titans-titans-east-1-titans-east/4000-132740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158571/","id":158571,"name":"And Then You Live! Part Six","site_detail_url":"https://comicvine.gamespot.com/deathblow-6-and-then-you-live-part-six/4000-158571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277145/","id":277145,"name":"Il Mistero Di Sub City","site_detail_url":"https://comicvine.gamespot.com/nathan-never-195-il-mistero-di-sub-city/4000-277145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114207/","id":114207,"name":"Get Some, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-10-get-some-conclusion/4000-114207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112966/","id":112966,"name":"Widowmaker: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-punisher-49-widowmaker-conclusion/4000-112966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151001/","id":151001,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/sentences-the-life-of-mf-grimm-1-hc/4000-151001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114214/","id":114214,"name":"The Iron Prometheus","site_detail_url":"https://comicvine.gamespot.com/lobster-johnson-the-iron-prometheus-1-the-iron-pro/4000-114214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111634/","id":111634,"name":"The Good Prince, Chapter Four: Home","site_detail_url":"https://comicvine.gamespot.com/fables-63-the-good-prince-chapter-four-home/4000-111634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260754/","id":260754,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-10/4000-260754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111933/","id":111933,"name":"Silver Surfer: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-44-silver-surfer-part-3/4000-111933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187208/","id":187208,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x-1-tpb/4000-187208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111596/","id":111596,"name":"The Dream of Two Good Men?","site_detail_url":"https://comicvine.gamespot.com/exiles-96-the-dream-of-two-good-men/4000-111596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111971/","id":111971,"name":"Part Three: Benedictus","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-requiem-3-part-three-benedictus/4000-111971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905750/","id":905750,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-featuring-the-silver-surfer-mag/4000-905750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110694/","id":110694,"name":"Full Throttle: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-flash-the-fastest-man-alive-13-full-throttle-c/4000-110694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111605/","id":111605,"name":"One Good Turn, Part 2; New Arrival, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-109-one-good-turn-part-2-new-arrival-pa/4000-111605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109445/","id":109445,"name":"The New Silver Age","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-2-the-new-silver/4000-109445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283280/","id":283280,"name":"Barracuda","site_detail_url":"https://comicvine.gamespot.com/100-max-punisher-6-barracuda/4000-283280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110443/","id":110443,"name":"Specimen 297!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-9-specimen-297/4000-110443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425516/","id":425516,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-definitive-silver-surfer-1-tpb/4000-425516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141478/","id":141478,"name":"Hulk Smash Everyone!","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack-4-hulk-smash-everyone/4000-141478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111212/","id":111212,"name":"Satana and the Electric Pentacle; The Living Mummy in: Must Die, Eat Soul","site_detail_url":"https://comicvine.gamespot.com/legion-of-monsters-satana-1-satana-and-the-electri/4000-111212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295858/","id":295858,"name":"El secreto de Peter Parker","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-8-el-secreto-de-pete/4000-295858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112287/","id":112287,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/predator-omnibus-1-volume-1/4000-112287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472851/","id":472851,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-19/4000-472851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181817/","id":181817,"name":"Volume 2: Life and Death Matters","site_detail_url":"https://comicvine.gamespot.com/x-factor-life-and-death-matters-1-volume-2-life-an/4000-181817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175596/","id":175596,"name":"Thunderbolts Presents: Zemo: Born Better","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-presents-zemo-born-better-1-thunderbo/4000-175596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171881/","id":171881,"name":"Moon Knight: The Bottom","site_detail_url":"https://comicvine.gamespot.com/moon-knight-the-bottom-1-moon-knight-the-bottom/4000-171881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168856/","id":168856,"name":"New Avengers: Civil War","site_detail_url":"https://comicvine.gamespot.com/new-avengers-civil-war-1-new-avengers-civil-war/4000-168856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246310/","id":246310,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield-1-volume-4/4000-246310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237644/","id":237644,"name":"Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hobgoblin-1-hobgoblin/4000-237644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110269/","id":110269,"name":"The Book of the Dooms","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-4-the-book-of-t/4000-110269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110271/","id":110271,"name":"Bug Hunt","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-3-bug-hunt/4000-110271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111251/","id":111251,"name":"Acceptance","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-5-acceptan/4000-111251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110571/","id":110571,"name":"Dead-End Kids, Part 3","site_detail_url":"https://comicvine.gamespot.com/runaways-27-dead-end-kids-part-3/4000-110571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110675/","id":110675,"name":"Ultimate Knights: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-110-ultimate-knights-conclusio/4000-110675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110435/","id":110435,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-1/4000-110435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110669/","id":110669,"name":"Death of the Dream (Part 3 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-27-death-of-the-dream-part-3-of-6/4000-110669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110270/","id":110270,"name":"Little Miss Perfect","site_detail_url":"https://comicvine.gamespot.com/supergirl-18-little-miss-perfect/4000-110270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110437/","id":110437,"name":"Revolution, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-31-revolution-pt-5/4000-110437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110434/","id":110434,"name":"Home Truths","site_detail_url":"https://comicvine.gamespot.com/nova-3-home-truths/4000-110434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141745/","id":141745,"name":"Friendly Fire, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-20-friendly-fire-part-3/4000-141745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110674/","id":110674,"name":"Infestation, Killer Instincts","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-11-infestation-killer-instincts/4000-110674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110441/","id":110441,"name":"Consuming Passion","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-21-consuming-pass/4000-110441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111929/","id":111929,"name":"Back In Black (Part 4 of 5)","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-542-back-in-black-part-4-of/4000-111929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110673/","id":110673,"name":"The Last Temptation of Eddie Brock","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-38-the-last-temptation-/4000-110673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111932/","id":111932,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-4-untitled/4000-111932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112672/","id":112672,"name":"Puppets, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-18-puppets-part-1/4000-112672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111033/","id":111033,"name":"Reconstruction, Part 4: Never Ask Her If She's Wearing Colored Contact Lenses","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-547-reconstruction-part-4-never-ask/4000-111033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110667/","id":110667,"name":"World War Hulk, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-19-world-war-hulk-part-1/4000-110667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110671/","id":110671,"name":"Apocalypse Soon","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-12-apocalypse-soon/4000-110671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111078/","id":111078,"name":"Front Line","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-front-line-1-front-line/4000-111078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222061/","id":222061,"name":"Love and War","site_detail_url":"https://comicvine.gamespot.com/nightwing-love-and-war-1-love-and-war/4000-222061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157131/","id":157131,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one-2-volume-2/4000-157131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111104/","id":111104,"name":"To the Devil, His Due; Part four of five","site_detail_url":"https://comicvine.gamespot.com/daredevil-98-to-the-devil-his-due-part-four-of-fiv/4000-111104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111133/","id":111133,"name":"Part Two: Sanctus","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-requiem-2-part-two-sanctus/4000-111133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119767/","id":119767,"name":"Supernovas","site_detail_url":"https://comicvine.gamespot.com/x-men-supernovas-1-supernovas/4000-119767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110378/","id":110378,"name":"Widowmaker: Part 6","site_detail_url":"https://comicvine.gamespot.com/the-punisher-48-widowmaker-part-6/4000-110378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277159/","id":277159,"name":"Le strade di New York","site_detail_url":"https://comicvine.gamespot.com/nathan-never-194-le-strade-di-new-york/4000-277159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112965/","id":112965,"name":"Get Some, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-9-get-some-part-three/4000-112965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110490/","id":110490,"name":"Web","site_detail_url":"https://comicvine.gamespot.com/blade-10-web/4000-110490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110817/","id":110817,"name":"Ordinary People","site_detail_url":"https://comicvine.gamespot.com/midnighter-8-ordinary-people/4000-110817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295420/","id":295420,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-91/4000-295420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114491/","id":114491,"name":"The Bad Prince, Part 1: Hit the Road, Jack","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-12-the-bad-prince-part-1-hit-the-ro/4000-114491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366547/","id":366547,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/godland-celestial-edition-1-vol-1/4000-366547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110560/","id":110560,"name":"The Good Prince, Chapter Three: Knighthood","site_detail_url":"https://comicvine.gamespot.com/fables-62-the-good-prince-chapter-three-knighthood/4000-110560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358689/","id":358689,"name":"Paperback","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-against-all-enemies-1-paperback/4000-358689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260752/","id":260752,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-8/4000-260752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260753/","id":260753,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-9/4000-260753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295251/","id":295251,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-75/4000-295251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109737/","id":109737,"name":"X-Cell (Part 4)","site_detail_url":"https://comicvine.gamespot.com/x-factor-20-x-cell-part-4/4000-109737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110439/","id":110439,"name":"Starting Over","site_detail_url":"https://comicvine.gamespot.com/exiles-95-starting-over/4000-110439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111890/","id":111890,"name":"Amazons Attack, Chapter 3 The Road to Hell","site_detail_url":"https://comicvine.gamespot.com/amazons-attack-3-amazons-attack-chapter-3-the-road/4000-111890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265716/","id":265716,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-3-volume-3/4000-265716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111037/","id":111037,"name":"The Underneath, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-83-the-underneath-part-2/4000-111037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149199/","id":149199,"name":"Upstairs, Downstairs","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-8-upstairs-downstairs/4000-149199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110764/","id":110764,"name":"Power Down, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-29-power-down-conclusion/4000-110764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413247/","id":413247,"name":"Dark of the Moon","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-154-dark-of-the-/4000-413247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109272/","id":109272,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-dead-days-1/4000-109272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138868/","id":138868,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-blood-and-sorrow-1-tpb/4000-138868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110064/","id":110064,"name":"Raising the Dead Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-106-raising-the-dead-part-1/4000-110064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181945/","id":181945,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-event-horizon-1-tpb/4000-181945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109832/","id":109832,"name":"Sandman: Year One; Leah","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-annual-1-sandman-/4000-109832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111924/","id":111924,"name":"Part 2- Nothing But Storms","site_detail_url":"https://comicvine.gamespot.com/black-summer-1-part-2-nothing-but-storms/4000-111924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111443/","id":111443,"name":"Attack of the 50 Foot Girl","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-13-attack-of-the-50-foo/4000-111443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109448/","id":109448,"name":"The Closet","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-8-the-closet/4000-109448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111891/","id":111891,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/giant-size-marvel-adventures-avengers-1-untitled/4000-111891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322292/","id":322292,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/dead-already-1-vol-1/4000-322292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110516/","id":110516,"name":"Stop! Gamma Time!","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack-3-stop-gamma-time/4000-110516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295856/","id":295856,"name":"El regreso del Duende Verde","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-6-el-regreso-del-due/4000-295856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472850/","id":472850,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-18/4000-472850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223839/","id":223839,"name":"Irredeemable Ant-Man: Low-Life","site_detail_url":"https://comicvine.gamespot.com/irredeemable-ant-man-low-life-1-irredeemable-ant-m/4000-223839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111121/","id":111121,"name":"The Gamma Defense","site_detail_url":"https://comicvine.gamespot.com/she-hulk-19-the-gamma-defense/4000-111121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109820/","id":109820,"name":"Reconstruction, Part 3: Aw, That's Just Crude","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-546-reconstruction-part-3-aw-that-s/4000-109820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413246/","id":413246,"name":"The Hunted","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-153-the-hunted/4000-413246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350153/","id":350153,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-europa-1/4000-350153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171461/","id":171461,"name":"Civil War: Iron Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-iron-man-1-civil-war-iron-man/4000-171461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113252/","id":113252,"name":"Clan Building: Chapter 5 Bash","site_detail_url":"https://comicvine.gamespot.com/gargoyles-5-clan-building-chapter-5-bash/4000-113252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108930/","id":108930,"name":"Night of the Livid Dead","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-3-night-of-the-/4000-108930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110061/","id":110061,"name":"Of Clowns and Clones","site_detail_url":"https://comicvine.gamespot.com/teen-titans-47-of-clowns-and-clones/4000-110061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109702/","id":109702,"name":"Enemy of the Stars, Part 5 (of 5): We'll Die Another Day","site_detail_url":"https://comicvine.gamespot.com/exiles-94-enemy-of-the-stars-part-5-of-5-well-die-/4000-109702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111387/","id":111387,"name":"One Good Turn, Part 1; New Arrival","site_detail_url":"https://comicvine.gamespot.com/witchblade-108-one-good-turn-part-1-new-arrival/4000-111387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109264/","id":109264,"name":"Alienation","site_detail_url":"https://comicvine.gamespot.com/nova-2-alienation/4000-109264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155258/","id":155258,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-10/4000-155258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109619/","id":109619,"name":"Ultimate Knights, Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-109-ultimate-knights-part-4/4000-109619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109602/","id":109602,"name":"Bargaining","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-3-bargaini/4000-109602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110668/","id":110668,"name":"Depression","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-4-depressi/4000-110668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164843/","id":164843,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-last-iron-fist-story-1-/4000-164843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110672/","id":110672,"name":"Midnight Sun, Chapter Five: One Son Lost","site_detail_url":"https://comicvine.gamespot.com/moon-knight-11-midnight-sun-chapter-five-one-son-l/4000-110672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109267/","id":109267,"name":"Revolution, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-30-revolution-pt-4/4000-109267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111348/","id":111348,"name":"Ready, A.I.M., Fire!, Part 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-17-ready-aim-fire-part-3/4000-111348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150836/","id":150836,"name":"Friendly Fire, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-19-friendly-fire-part-2/4000-150836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108959/","id":108959,"name":"Running Out of Time","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-20-running-out-of/4000-108959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108922/","id":108922,"name":"Warbound, Part 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-106-warbound-part-1/4000-108922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110025/","id":110025,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x-6-part-six/4000-110025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149198/","id":149198,"name":"Assault on Precinct 18","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-7-assault-on-precinct-18/4000-149198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238589/","id":238589,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/exiles-bump-in-the-night-1-volume-9/4000-238589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110094/","id":110094,"name":"Part One: Kyrie","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-requiem-1-part-one-kyrie/4000-110094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171581/","id":171581,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-guardian-protocols-1-tpb/4000-171581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108961/","id":108961,"name":"Widowmaker: Part 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-47-widowmaker-part-5/4000-108961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156825/","id":156825,"name":"And Then You Live! Part Five","site_detail_url":"https://comicvine.gamespot.com/deathblow-5-and-then-you-live-part-five/4000-156825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281382/","id":281382,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/the-hood-blood-from-stones-1-hctpb/4000-281382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282578/","id":282578,"name":"Spade, sfide e magie","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-24-spade-sfide-e-magie/4000-282578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110990/","id":110990,"name":"Get Some, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-8-get-some-part-two/4000-110990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109604/","id":109604,"name":"The Underneath, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-82-the-underneath-part-1/4000-109604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109606/","id":109606,"name":"The Museum of Oddities and other tales","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-special-1-the-museum-of-oddities/4000-109606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108931/","id":108931,"name":"Dead-End Kids, Part 2","site_detail_url":"https://comicvine.gamespot.com/runaways-26-dead-end-kids-part-2/4000-108931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134358/","id":134358,"name":"The Good Prince, Chapter Two: Forsworn","site_detail_url":"https://comicvine.gamespot.com/fables-61-the-good-prince-chapter-two-forsworn/4000-134358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260751/","id":260751,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-7/4000-260751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110052/","id":110052,"name":"Silver Surfer: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-42-silver-surfer-part-1/4000-110052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109616/","id":109616,"name":"Power Down, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-28-power-down-chapter-three/4000-109616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109701/","id":109701,"name":"X-Cell (Part 3)","site_detail_url":"https://comicvine.gamespot.com/x-factor-19-x-cell-part-3/4000-109701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275520/","id":275520,"name":"Märchenhafte Liebschaften","site_detail_url":"https://comicvine.gamespot.com/fables-3-marchenhafte-liebschaften/4000-275520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108524/","id":108524,"name":"The Arrival","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-1-the-arrival/4000-108524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110677/","id":110677,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mythos-spider-man-1/4000-110677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108537/","id":108537,"name":"Revenge!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-7-revenge/4000-108537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124526/","id":124526,"name":"Energy Crisis","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack-2-energy-crisis/4000-124526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109183/","id":109183,"name":"Tarantula, Conclusion","site_detail_url":"https://comicvine.gamespot.com/100-bullets-83-tarantula-conclusion/4000-109183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537380/","id":537380,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-19/4000-537380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298189/","id":298189,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-15/4000-298189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295854/","id":295854,"name":"La amenaza del Duende Verde","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-4-la-amenaza-del-due/4000-295854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295855/","id":295855,"name":"En los tentáculos del Dr. Octupus","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-5-en-los-tentaculos-/4000-295855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413351/","id":413351,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-3-movie-prequel-1/4000-413351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472849/","id":472849,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-17/4000-472849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111149/","id":111149,"name":"Raising the Dead Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-107-raising-the-dead-part-2/4000-111149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251860/","id":251860,"name":"AGENT of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-139-agent-of-shield/4000-251860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236877/","id":236877,"name":"Public Scrutiny","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-public-scrutiny-1-public-scrut/4000-236877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166498/","id":166498,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/fables-sons-of-empire-1-volume-9/4000-166498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228402/","id":228402,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-omnibus-1-volume-one/4000-228402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259385/","id":259385,"name":"Doctor Strange: The Oath","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-oath-1-doctor-strange-the-oath/4000-259385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107997/","id":107997,"name":"Marvel Team-Ups","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-2-marvel-team-u/4000-107997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108563/","id":108563,"name":"Ultimate Knights, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-108-ultimate-knights-part-3/4000-108563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109138/","id":109138,"name":"Titans East Part 4","site_detail_url":"https://comicvine.gamespot.com/teen-titans-46-titans-east-part-4/4000-109138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113774/","id":113774,"name":"","site_detail_url":"https://comicvine.gamespot.com/drain-4/4000-113774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108790/","id":108790,"name":"Enemy of the Stars, Part 4 (of 5): Shall The Past Be Prologue?","site_detail_url":"https://comicvine.gamespot.com/exiles-93-enemy-of-the-stars-part-4-of-5-shall-the/4000-108790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108554/","id":108554,"name":"Cliffhangers","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-81-cliffhangers/4000-108554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108562/","id":108562,"name":"A Call To Arms","site_detail_url":"https://comicvine.gamespot.com/world-war-iii-1-a-call-to-arms/4000-108562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108004/","id":108004,"name":"Denial","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-1-denial/4000-108004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109111/","id":109111,"name":"Director Of S.H.I.E.L.D., Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-17-director-of-shield-part-3/4000-109111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108360/","id":108360,"name":"Revolution, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-29-revolution-pt-3/4000-108360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109262/","id":109262,"name":"Two Plus Two, Part 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-27-two-plus-two-part-2/4000-109262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172771/","id":172771,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-girl-whatever-happened-to-the-daugh/4000-172771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110265/","id":110265,"name":"Ready, A.I.M.; Fire!, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-16-ready-aim-fire-part-2/4000-110265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150835/","id":150835,"name":"Friendly Fire, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-18-friendly-fire-part-1/4000-150835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121176/","id":121176,"name":"Swing Shift","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2007-spider-man-1-swing-shift/4000-121176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124986/","id":124986,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-the-punisher-1/4000-124986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110596/","id":110596,"name":"Back In Black (Part 3 of 5)","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-541-back-in-black-part-3-of/4000-110596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108583/","id":108583,"name":"The Strange Case of... Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-37-the-strange-case-of-/4000-108583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107993/","id":107993,"name":"Sandblasted: Conclusion","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-19-sandblasted-co/4000-107993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108556/","id":108556,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-2-untitled/4000-108556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109841/","id":109841,"name":"Illuminated","site_detail_url":"https://comicvine.gamespot.com/she-hulk-18-illuminated/4000-109841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129075/","id":129075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-marvel-universe-1-tpb/4000-129075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107208/","id":107208,"name":"Part 4 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-4-part-4-of-9/4000-107208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109269/","id":109269,"name":"Part 5 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-5-part-5-of-9/4000-109269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223683/","id":223683,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-omnibus-2-volume-two/4000-223683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190496/","id":190496,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-panther-civil-war-1-tpb/4000-190496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142477/","id":142477,"name":"A Day at the Office","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-6-a-day-at-the-office/4000-142477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108760/","id":108760,"name":"To The Devil, His Due; Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-96-to-the-devil-his-due-part-2/4000-108760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110054/","id":110054,"name":"To The Devil, His Due; Part 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-97-to-the-devil-his-due-part-3/4000-110054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108421/","id":108421,"name":"Love and Murder, Part 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-7-love-and-murder-part-2/4000-108421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113792/","id":113792,"name":"Book Four: Clash of the Queens","site_detail_url":"https://comicvine.gamespot.com/bomb-queen-iii-the-good-the-bad-the-lovely-4-book-/4000-113792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108472/","id":108472,"name":"Goin' Out West","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-6-goin-out-west/4000-108472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108250/","id":108250,"name":"Widowmaker: Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-46-widowmaker-part-4/4000-108250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109665/","id":109665,"name":"Midnight Sun, Chapter Four: His Lord's Banner","site_detail_url":"https://comicvine.gamespot.com/moon-knight-10-midnight-sun-chapter-four-his-lords/4000-109665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111024/","id":111024,"name":"Live by the Sword, Die by the Sword","site_detail_url":"https://comicvine.gamespot.com/shadowpact-12-live-by-the-sword-die-by-the-sword/4000-111024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272833/","id":272833,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-trials-of-shazam-1-vol-1/4000-272833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108018/","id":108018,"name":"Dead-End Kids, Part 1","site_detail_url":"https://comicvine.gamespot.com/runaways-25-dead-end-kids-part-1/4000-108018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127434/","id":127434,"name":"Anger","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-2-anger/4000-127434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134357/","id":134357,"name":"The Good Prince, Chapter One: Flycatcher","site_detail_url":"https://comicvine.gamespot.com/fables-60-the-good-prince-chapter-one-flycatcher/4000-134357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122119/","id":122119,"name":"The Destruction of the Ultimate Universe","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-sampler-1-the-destruction-of-the-u/4000-122119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111688/","id":111688,"name":"Power Down, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-27-power-down-chapter-two/4000-111688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108557/","id":108557,"name":"X-Cell (Part 2)","site_detail_url":"https://comicvine.gamespot.com/x-factor-18-x-cell-part-2/4000-108557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126823/","id":126823,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-42/4000-126823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108363/","id":108363,"name":"Faith In Monsters, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-113-faith-in-monsters-pt-4/4000-108363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-631821/","id":631821,"name":"","site_detail_url":"https://comicvine.gamespot.com/tmnt-the-collected-movie-books-1/4000-631821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115647/","id":115647,"name":"Hack/Slash","site_detail_url":"https://comicvine.gamespot.com/hackslash-the-series-1-hackslash/4000-115647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106791/","id":106791,"name":"Earth's Mightiest Zero","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-1-earths-mighti/4000-106791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118353/","id":118353,"name":"Power Combo!","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack-1-power-combo/4000-118353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107648/","id":107648,"name":"Act 3: The Mother","site_detail_url":"https://comicvine.gamespot.com/silent-war-3-act-3-the-mother/4000-107648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225960/","id":225960,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-peter-parker-spider-man-1-tpb/4000-225960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246734/","id":246734,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-my-secret-life-1-volume/4000-246734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263353/","id":263353,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/blade-undead-again-1-volume-1/4000-263353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353524/","id":353524,"name":"Dupla morte","site_detail_url":"https://comicvine.gamespot.com/demolidor-e-capitao-america-dupla-morte-1-dupla-mo/4000-353524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106959/","id":106959,"name":"Whatever Happened to the Daughter of Spider-Man? Part 6: The Hobgoblin and the Hostage!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-6-whatever-happened-to-the/4000-106959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268246/","id":268246,"name":"Semana tres","site_detail_url":"https://comicvine.gamespot.com/52-3-semana-tres/4000-268246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171221/","id":171221,"name":"Book 9","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-motherland-9-book-9/4000-171221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107789/","id":107789,"name":"Tarantula, Part Two","site_detail_url":"https://comicvine.gamespot.com/100-bullets-82-tarantula-part-two/4000-107789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111119/","id":111119,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-8/4000-111119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298188/","id":298188,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-14/4000-298188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295853/","id":295853,"name":"La última cacería de Kraven","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-3-la-ultima-caceria-/4000-295853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472848/","id":472848,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-16/4000-472848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171452/","id":171452,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/wolverine-civil-war-1-civil-war/4000-171452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251083/","id":251083,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/punisher-max-hardcover-3-volume-3/4000-251083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259709/","id":259709,"name":"Wolverine: The End","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-end-1-wolverine-the-end/4000-259709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413244/","id":413244,"name":"Lesser of Two Evils","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-151-lesser-of-tw/4000-413244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171451/","id":171451,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-fantastic-four-1-tpb/4000-171451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107224/","id":107224,"name":"Enemy of the Stars: Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/exiles-92-enemy-of-the-stars-part-3-of-5/4000-107224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411995/","id":411995,"name":"","site_detail_url":"https://comicvine.gamespot.com/impaler-4/4000-411995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109601/","id":109601,"name":"Last Laugh","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis-50-last-laugh/4000-109601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170811/","id":170811,"name":"Civil War: Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-amazing-spider-man-1-civil-war-amazing-s/4000-170811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171580/","id":171580,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-thunderbolts-1-tpb/4000-171580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109598/","id":109598,"name":"Independence Day","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-13-independence-day/4000-109598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254194/","id":254194,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-war-crimes-1-tpb/4000-254194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107597/","id":107597,"name":"Reconstruction, Part 1: From The Ridiculous To The Sublime","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-544-reconstruction-part-1-from-the-/4000-107597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167631/","id":167631,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/civil-war-1-civil-war/4000-167631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172619/","id":172619,"name":"Sensational Spider-Man: Feral","site_detail_url":"https://comicvine.gamespot.com/sensational-spider-man-feral-1-sensational-spider-/4000-172619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222986/","id":222986,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-omnibus-1-volume-one/4000-222986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234902/","id":234902,"name":"Civil War: Front Line, Book Two","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-book-two-1-civil-war-front-li/4000-234902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413243/","id":413243,"name":"Growing Pains!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-150-growing-pain/4000-413243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168660/","id":168660,"name":"Wolverine Origins: Born in Blood","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-born-in-blood-1-wolverine-origin/4000-168660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135801/","id":135801,"name":"Breakout: Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1-breakout-part-1-of-5/4000-135801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107410/","id":107410,"name":"The Next Age: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-4-the-next-age-chapter-/4000-107410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108364/","id":108364,"name":"Titans East Part 3","site_detail_url":"https://comicvine.gamespot.com/teen-titans-45-titans-east-part-3/4000-108364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113310/","id":113310,"name":"Divine Intervention","site_detail_url":"https://comicvine.gamespot.com/witchblade-105-divine-intervention/4000-113310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107596/","id":107596,"name":"Aftermath Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-80-aftermath-part-2/4000-107596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107267/","id":107267,"name":"Love the Ones We Hurt","site_detail_url":"https://comicvine.gamespot.com/supergirl-15-love-the-ones-we-hurt/4000-107267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107616/","id":107616,"name":"Ultimate Knights, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-107-ultimate-knights-part-2/4000-107616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108558/","id":108558,"name":"Midnight Sun, Chapter 3: For The Occasion","site_detail_url":"https://comicvine.gamespot.com/moon-knight-9-midnight-sun-chapter-3-for-the-occas/4000-108558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109835/","id":109835,"name":"Death of the Dream (Part 2 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-26-death-of-the-dream-part-2-of-6/4000-109835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167091/","id":167091,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-fantastic-four-6-volume-6/4000-167091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106902/","id":106902,"name":"Revolution, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-28-revolution-pt-2/4000-106902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140534/","id":140534,"name":"","site_detail_url":"https://comicvine.gamespot.com/cvo-covert-vampiric-operations-african-blood-4/4000-140534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107598/","id":107598,"name":"Two Plus Two, Part 1 - Home Invasion","site_detail_url":"https://comicvine.gamespot.com/black-panther-26-two-plus-two-part-1-home-invasion/4000-107598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109131/","id":109131,"name":"Ready, A.I.M., Fire!, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-15-ready-aim-fire-part-1/4000-109131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106821/","id":106821,"name":"The Mighty Avengers","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-1-the-mighty-avengers/4000-106821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150834/","id":150834,"name":"Public Works, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-17-public-works-conclusion/4000-150834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111267/","id":111267,"name":"Back In Black (Part 2 of 5)","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-540-back-in-black-part-2-of/4000-111267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107593/","id":107593,"name":"The Strange Case of... Part 2 (of 3)","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-36-the-strange-case-of-/4000-107593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106810/","id":106810,"name":"Sandblasted Part 2","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-18-sandblasted-pa/4000-106810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108358/","id":108358,"name":"Planet Without A Hulk, Part 3: Shock After Shock","site_detail_url":"https://comicvine.gamespot.com/she-hulk-17-planet-without-a-hulk-part-3-shock-aft/4000-108358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203105/","id":203105,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-and-runaways-1-tpb/4000-203105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204068/","id":204068,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men-universe-1-tpb/4000-204068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106933/","id":106933,"name":"NYC Red","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-5-nyc-red/4000-106933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217033/","id":217033,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-boys-the-name-of-the-game-1-volume-one/4000-217033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107649/","id":107649,"name":"To the Devil, His Due; Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-95-to-the-devil-his-due-part-1/4000-107649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107167/","id":107167,"name":"Widowmaker: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-45-widowmaker-part-3/4000-107167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158552/","id":158552,"name":"And Then You Live! Part Four","site_detail_url":"https://comicvine.gamespot.com/deathblow-4-and-then-you-live-part-four/4000-158552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109919/","id":109919,"name":"Pay As You Go, Part Three: Friends, Lovers and Other Strangers","site_detail_url":"https://comicvine.gamespot.com/outsiders-46-pay-as-you-go-part-three-friends-love/4000-109919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110063/","id":110063,"name":"Get Some, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-7-get-some-part-one/4000-110063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110320/","id":110320,"name":"Burning Questions","site_detail_url":"https://comicvine.gamespot.com/fables-59-burning-questions/4000-110320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107207/","id":107207,"name":"X-Cell (Part 1)","site_detail_url":"https://comicvine.gamespot.com/x-factor-17-x-cell-part-1/4000-107207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106822/","id":106822,"name":"Ultimate Knights: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-106-ultimate-knights-part-1/4000-106822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106910/","id":106910,"name":"Faith In Monsters, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-112-faith-in-monsters-pt-3/4000-106910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113309/","id":113309,"name":"New Life","site_detail_url":"https://comicvine.gamespot.com/witchblade-104-new-life/4000-113309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106636/","id":106636,"name":"Act 2: The Child","site_detail_url":"https://comicvine.gamespot.com/silent-war-2-act-2-the-child/4000-106636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282913/","id":282913,"name":"En el fondo","site_detail_url":"https://comicvine.gamespot.com/100-marvel-el-caballero-luna-1-en-el-fondo/4000-282913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106558/","id":106558,"name":"Whatever Happened to the Daughter of Spider-Man? part 5: Priorities!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-5-whatever-happened-to-the/4000-106558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111723/","id":111723,"name":"I Was a Pre-Teen Super-Villain!","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-power-pack-4-i-was-a-pre-teen-super/4000-111723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478930/","id":478930,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/street-magik-1-gn/4000-478930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106485/","id":106485,"name":"Slaves To the Past","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-presents-zemo-born-better-1-slaves-to/4000-106485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106742/","id":106742,"name":"Tarantula","site_detail_url":"https://comicvine.gamespot.com/100-bullets-81-tarantula/4000-106742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109767/","id":109767,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-7/4000-109767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537378/","id":537378,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-17/4000-537378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298187/","id":298187,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-13/4000-298187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295851/","id":295851,"name":"El traje maldito","site_detail_url":"https://comicvine.gamespot.com/spiderman-los-imprescindibles-1-el-traje-maldito/4000-295851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472847/","id":472847,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-15/4000-472847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203204/","id":203204,"name":"Cable and Deadpool: Paved With Good Intentions","site_detail_url":"https://comicvine.gamespot.com/cable-and-deadpool-paved-with-good-intentions-1-ca/4000-203204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107228/","id":107228,"name":"The Deal, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-13-the-deal-part-1/4000-107228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172612/","id":172612,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-mystery-date-1-vo/4000-172612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234901/","id":234901,"name":"Civil War: Front Line, Book One","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-book-one-1-civil-war-front-li/4000-234901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237651/","id":237651,"name":"Clone Saga","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-clone-saga-1-clone-saga/4000-237651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297075/","id":297075,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-150/4000-297075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355432/","id":355432,"name":"Legacy of the Goblin!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-149-legacy-of-th/4000-355432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237593/","id":237593,"name":"Ultimate Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-ultimate-six-1-ultimate-six/4000-237593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115473/","id":115473,"name":"The Others Among Us, Part 7","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-7-the-others-among-us-part-7/4000-115473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106808/","id":106808,"name":"The Tornado's Path, Final Chapter: Iron Man","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-6-the-tornados-path-fina/4000-106808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106505/","id":106505,"name":"The Next Age: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-3-the-next-age-chapter-/4000-106505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106908/","id":106908,"name":"Titans East Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-44-titans-east-part-2/4000-106908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113772/","id":113772,"name":"In A Flash...","site_detail_url":"https://comicvine.gamespot.com/drain-3-in-a-flash/4000-113772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106487/","id":106487,"name":"Main Event: Enemies of the Stars part 2 (of 5)","site_detail_url":"https://comicvine.gamespot.com/exiles-91-main-event-enemies-of-the-stars-part-2-o/4000-106487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141310/","id":141310,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-8-volume-8/4000-141310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106363/","id":106363,"name":"Clone Saga: Epilogue","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-105-clone-saga-epilogue/4000-106363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106904/","id":106904,"name":"Midnight Sun, Chapter 2: The Dead Don't Stay","site_detail_url":"https://comicvine.gamespot.com/moon-knight-8-midnight-sun-chapter-2-the-dead-dont/4000-106904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106708/","id":106708,"name":"War Crimes, Part 3: Thunder And Lightning","site_detail_url":"https://comicvine.gamespot.com/black-panther-25-war-crimes-part-3-thunder-and-lig/4000-106708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106788/","id":106788,"name":"Death of the Dream (Part 1 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-death-of-the-dream-part-1-of-6/4000-106788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108968/","id":108968,"name":"Embedded, Part 11","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-11-embedded-part-11/4000-108968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106789/","id":106789,"name":"The Initiative","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-initiative-1-the-initiative/4000-106789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111806/","id":111806,"name":"Confrontation","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-5-confrontation/4000-111806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106468/","id":106468,"name":"The Strange Case of... [part one]","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-35-the-strange-case-of-/4000-106468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107995/","id":107995,"name":"The Deal, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-14-the-deal-part-2/4000-107995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178425/","id":178425,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection-1-volume-o/4000-178425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106641/","id":106641,"name":"Public Works, Part 4","site_detail_url":"https://comicvine.gamespot.com/dmz-16-public-works-part-4/4000-106641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107203/","id":107203,"name":"Back In Black (Part 1 of 5)","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-539-back-in-black-part-1-of/4000-107203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106365/","id":106365,"name":"Sandblasted: Part 1","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-17-sandblasted-pa/4000-106365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106401/","id":106401,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x-3-part-three/4000-106401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106364/","id":106364,"name":"Revolution, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-27-revolution-pt-1/4000-106364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106721/","id":106721,"name":"The Oath, Chapter 5","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-oath-5-the-oath-chapter-5/4000-106721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106387/","id":106387,"name":"Something Dark Is Coming","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-12-something-dark-is-coming/4000-106387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111510/","id":111510,"name":"Gamma Flight","site_detail_url":"https://comicvine.gamespot.com/she-hulk-16-gamma-flight/4000-111510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106720/","id":106720,"name":"Our Love Story","site_detail_url":"https://comicvine.gamespot.com/daredevil-94-our-love-story/4000-106720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125000/","id":125000,"name":"","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-0/4000-125000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142474/","id":142474,"name":"Ladies' Night","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-4-ladies-night/4000-142474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106633/","id":106633,"name":"Small Wake for a Tall Man","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-4-small-wake-for-a-tall-man/4000-106633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107150/","id":107150,"name":"Widowmaker: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-44-widowmaker-part-2/4000-107150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280820/","id":280820,"name":"Emoticon :-(","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-290-emoticon-/4000-280820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302513/","id":302513,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-captain-america-1-tpb/4000-302513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109469/","id":109469,"name":"Knocking on Heaven's Door","site_detail_url":"https://comicvine.gamespot.com/chronicles-of-wormwood-3-knocking-on-heavens-door/4000-109469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367780/","id":367780,"name":"Fashion Victims!, The Replacements, Microscopic!, The Dance","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-magazine-1-fashion-victims-the-/4000-367780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198004/","id":198004,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-greatest-stories-ever-told-1-tpb/4000-198004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176549/","id":176549,"name":"DR.Death and The Night of the Butcher","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-dr-death-and-the-night-of-/4000-176549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-798202/","id":798202,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-1-volume-1/4000-798202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142476/","id":142476,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-5/4000-142476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165616/","id":165616,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-saga-of-the-sandman-1-tpb/4000-165616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106010/","id":106010,"name":"The Secret Thing","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-14-the-secret-thing/4000-106010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106025/","id":106025,"name":"Act 1: The Warrior","site_detail_url":"https://comicvine.gamespot.com/silent-war-1-act-1-the-warrior/4000-106025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106352/","id":106352,"name":"Binary","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-special-1-binary/4000-106352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143335/","id":143335,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-5/4000-143335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235552/","id":235552,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-magical-1-volume-15/4000-235552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294024/","id":294024,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-frank-miller-and-klaus-janson-omnibus/4000-294024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133202/","id":133202,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/she-hulk-laws-of-attraction-1-volume-4/4000-133202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115544/","id":115544,"name":"What Happened to the Daughter of Spider-Man? Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-4-what-happened-to-the-dau/4000-115544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111722/","id":111722,"name":"Project: Run Away! Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-power-pack-3-project-run-away-part-/4000-111722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141073/","id":141073,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-6/4000-141073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537377/","id":537377,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-16/4000-537377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106287/","id":106287,"name":"Pig Tale","site_detail_url":"https://comicvine.gamespot.com/ultimate-civil-war-spider-ham-1-pig-tale/4000-106287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157575/","id":157575,"name":"Utopian","site_detail_url":"https://comicvine.gamespot.com/the-authority-2-utopian/4000-157575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413242/","id":413242,"name":"Carnage at Coney Island!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-148-carnage-at-c/4000-413242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181572/","id":181572,"name":"X-Factor: The Longest Night","site_detail_url":"https://comicvine.gamespot.com/x-factor-the-longest-night-1-x-factor-the-longest-/4000-181572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222723/","id":222723,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-house-of-mystery-2-volume-two/4000-222723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413241/","id":413241,"name":"Central Park Alamo","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-147-central-park/4000-413241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115472/","id":115472,"name":"The Others Among Us, Part 6","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-6-the-others-among-us-part-6/4000-115472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105742/","id":105742,"name":"The Next Age: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-2-the-next-age-chapter-/4000-105742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106288/","id":106288,"name":"Titans East Part 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-43-titans-east-part-1/4000-106288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106931/","id":106931,"name":"Book 4","site_detail_url":"https://comicvine.gamespot.com/spider-man-reign-4-book-4/4000-106931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146112/","id":146112,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-x-factor-2-volume-2/4000-146112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106630/","id":106630,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/new-avengers-illuminati-2-untitled/4000-106630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108967/","id":108967,"name":"Embedded, Part 10 / The Accused, Part 10","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-10-embedded-part-10-the-accus/4000-108967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108514/","id":108514,"name":"Vendetta's Echo","site_detail_url":"https://comicvine.gamespot.com/blade-5-vendettas-echo/4000-108514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106327/","id":106327,"name":"How I Won the War part 3: Mutually Assured Destruction","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-3-how-i-won-the-war-part-3-mu/4000-106327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106282/","id":106282,"name":"War Crimes, Part 2: The Big Guns","site_detail_url":"https://comicvine.gamespot.com/black-panther-24-war-crimes-part-2-the-big-guns/4000-106282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106627/","id":106627,"name":"The War at Home, Part 7","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-538-the-war-at-home-part-7/4000-106627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106749/","id":106749,"name":"The Daily Grind","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-4-the-daily-grind/4000-106749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108341/","id":108341,"name":"Doomsday","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-11-doomsday/4000-108341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166469/","id":166469,"name":"Best of the Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-best-of-the-best-1-best-of-the-best/4000-166469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141476/","id":141476,"name":"Public Works, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-15-public-works-part-3/4000-141476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113628/","id":113628,"name":"Nothing Can Stop The Rhino!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-34-nothing-can-stop-the/4000-113628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106255/","id":106255,"name":"Taking Wing: Conclusion","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-16-taking-wing-co/4000-106255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106026/","id":106026,"name":"The Oath, Chapter 4","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-oath-4-the-oath-chapter-4/4000-106026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111509/","id":111509,"name":"She-Hulk: Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/she-hulk-15-she-hulk-agent-of-s-h-i-e-l-d/4000-111509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222060/","id":222060,"name":"Brothers In Blood","site_detail_url":"https://comicvine.gamespot.com/nightwing-brothers-in-blood-1-brothers-in-blood/4000-222060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240455/","id":240455,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/spawn-collection-3-volume-3/4000-240455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108119/","id":108119,"name":"Book One: The Good, The Bad & The Lovely","site_detail_url":"https://comicvine.gamespot.com/bomb-queen-iii-the-good-the-bad-the-lovely-1-book-/4000-108119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107151/","id":107151,"name":"Widowmaker: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-43-widowmaker-part-1/4000-107151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158551/","id":158551,"name":"And Then You Live! Part Three","site_detail_url":"https://comicvine.gamespot.com/deathblow-3-and-then-you-live-part-three/4000-158551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284417/","id":284417,"name":"Le dieci piaghe","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-gigante-12-le-dieci-piaghe/4000-284417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304371/","id":304371,"name":"","site_detail_url":"https://comicvine.gamespot.com/tmnt-the-official-movie-adaptation-1/4000-304371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110882/","id":110882,"name":"Raphael","site_detail_url":"https://comicvine.gamespot.com/tmnt-movie-prequel-1-raphael/4000-110882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110952/","id":110952,"name":"Michelangelo","site_detail_url":"https://comicvine.gamespot.com/tmnt-movie-prequel-2-michelangelo/4000-110952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110953/","id":110953,"name":"Donatello","site_detail_url":"https://comicvine.gamespot.com/tmnt-movie-prequel-3-donatello/4000-110953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110954/","id":110954,"name":"April","site_detail_url":"https://comicvine.gamespot.com/tmnt-movie-prequel-4-april/4000-110954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451320/","id":451320,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-riot-at-rykers-i/4000-451320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106353/","id":106353,"name":"God War: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-38-god-war-part-6/4000-106353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275519/","id":275519,"name":"Farm Der Tiere","site_detail_url":"https://comicvine.gamespot.com/fables-2-farm-der-tiere/4000-275519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111687/","id":111687,"name":"Power Down, Chapter One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-26-power-down-chapter-one/4000-111687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697819/","id":697819,"name":"The Method","site_detail_url":"https://comicvine.gamespot.com/mosaic-1-the-method/4000-697819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106454/","id":106454,"name":"Taking Wing - Part 2","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-15-taking-wing-pa/4000-106454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114569/","id":114569,"name":"Part 3 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-3-part-3-of-9/4000-114569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105732/","id":105732,"name":"The Next Age","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-1-the-next-age/4000-105732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228236/","id":228236,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-4-volume-4/4000-228236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267482/","id":267482,"name":"Reborn","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-reborn-1-reborn/4000-267482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115543/","id":115543,"name":"Whatever Happened to the Daughter of Spider-Man? Part 3: A Bitter Frost","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-3-whatever-happened-to-the/4000-115543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111721/","id":111721,"name":"The New Kid, Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-power-pack-2-the-new-kid-part-2/4000-111721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167532/","id":167532,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-the-nearly-great-escape-1-volume-1/4000-167532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106342/","id":106342,"name":"Cry My Beloved Homeworld!","site_detail_url":"https://comicvine.gamespot.com/avengers-next-4-cry-my-beloved-homeworld/4000-106342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140966/","id":140966,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-3/4000-140966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141072/","id":141072,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-4/4000-141072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537376/","id":537376,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-15/4000-537376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298185/","id":298185,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-11/4000-298185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139723/","id":139723,"name":null,"site_detail_url":"https://comicvine.gamespot.com/stan-lee-meets-silver-surfer-1/4000-139723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594854/","id":594854,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/stan-lee-meets-the-marvel-universe-1-hc/4000-594854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107251/","id":107251,"name":"Everything You Always Wanted To Know About Awesome Andy But Were Afraid To Ask","site_detail_url":"https://comicvine.gamespot.com/she-hulk-14-everything-you-always-wanted-to-know-a/4000-107251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203190/","id":203190,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-execute-program-1-volume-2/4000-203190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268630/","id":268630,"name":"A King's Game","site_detail_url":"https://comicvine.gamespot.com/checkmate-a-kings-game-1-a-kings-game/4000-268630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412725/","id":412725,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadowflame-1/4000-412725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413240/","id":413240,"name":"Something Sinister This Way Comes!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-146-something-si/4000-413240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106400/","id":106400,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/spider-man-reign-3-book-three/4000-106400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193513/","id":193513,"name":"The Road to Civil War","site_detail_url":"https://comicvine.gamespot.com/the-road-to-civil-war-1-the-road-to-civil-war/4000-193513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158368/","id":158368,"name":"We Used To Go To Hyperspace Just For Donuts","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-542-we-used-to-go-to-hyperspace-jus/4000-158368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115393/","id":115393,"name":"The Others Among Us, Part 5","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-5-the-others-among-us-part-5/4000-115393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113596/","id":113596,"name":"Clone Saga: Part 7","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-103-clone-saga-part-7/4000-113596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106202/","id":106202,"name":"The Tornado's Path Chapter 5: Born Again","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-5-the-tornados-path-chap/4000-106202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113308/","id":113308,"name":"Transference","site_detail_url":"https://comicvine.gamespot.com/witchblade-103-transference/4000-113308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148358/","id":148358,"name":"What If Legion Had Killed Xavier and Magneto?","site_detail_url":"https://comicvine.gamespot.com/what-if-x-men-age-of-apocalypse-1-what-if-legion-h/4000-148358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108953/","id":108953,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-war-crimes-1/4000-108953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108948/","id":108948,"name":"Embedded, Part 9 / The Accused, Part 9 / Sleeper Cell, Part 7","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-9-embedded-part-9-the-accused/4000-108948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106186/","id":106186,"name":"","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-winter-kills-1/4000-106186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108954/","id":108954,"name":"War Crimes, Part 1: Wartime!","site_detail_url":"https://comicvine.gamespot.com/black-panther-23-war-crimes-part-1-wartime/4000-108954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106104/","id":106104,"name":"The War at Home, Part 6","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-537-the-war-at-home-part-6/4000-106104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108550/","id":108550,"name":"How I Won The War Part 2: Dead Soldiers","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-2-how-i-won-the-war-part-2-de/4000-108550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111805/","id":111805,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-3-homecoming/4000-111805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113627/","id":113627,"name":"Wounds","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-33-wounds/4000-113627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141475/","id":141475,"name":"Public Works, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-14-public-works-part-2/4000-141475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108957/","id":108957,"name":"Rubicon","site_detail_url":"https://comicvine.gamespot.com/iron-mancaptain-america-casualties-of-war-1-rubico/4000-108957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106314/","id":106314,"name":"Beyond Redemption","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-109-beyond-redemption/4000-106314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111333/","id":111333,"name":"The Observer Effect","site_detail_url":"https://comicvine.gamespot.com/beyond-6-the-observer-effect/4000-111333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105990/","id":105990,"name":"The Oath, Chapter 3","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-oath-3-the-oath-chapter-3/4000-105990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203739/","id":203739,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-mischief-1-volume-2/4000-203739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216545/","id":216545,"name":"Death of the Stacys","site_detail_url":"https://comicvine.gamespot.com/spider-man-death-of-the-stacys-1-death-of-the-stac/4000-216545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114553/","id":114553,"name":"Better To Give...","site_detail_url":"https://comicvine.gamespot.com/wolverine-49-better-to-give/4000-114553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105912/","id":105912,"name":"Cherry, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-boys-6-cherry-conclusion/4000-105912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141493/","id":141493,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-2-ghosts/4000-141493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280821/","id":280821,"name":"L'ultimo viaggio di Amelia Earhart","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-289-lultimo-viaggio-di-amelia-earha/4000-280821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106973/","id":106973,"name":"Holy Orders","site_detail_url":"https://comicvine.gamespot.com/chronicles-of-wormwood-2-holy-orders/4000-106973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123558/","id":123558,"name":"Jiminy Christmas","site_detail_url":"https://comicvine.gamespot.com/fables-56-jiminy-christmas/4000-123558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217744/","id":217744,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/universe-x-2-volume-two/4000-217744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111686/","id":111686,"name":"Standalone","site_detail_url":"https://comicvine.gamespot.com/ex-machina-25-standalone/4000-111686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106079/","id":106079,"name":"Multiple Issues, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-14-multiple-issues-part-1/4000-106079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106634/","id":106634,"name":"Who is Wonder Woman? Part 4","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-4-who-is-wonder-woman-part-4/4000-106634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111644/","id":111644,"name":"Cable: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-77-cable-part-3/4000-111644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142093/","id":142093,"name":"Senseless Violence Spectacular","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-8-senseless-violence-spectacul/4000-142093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216682/","id":216682,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-1-hc-tpb/4000-216682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115542/","id":115542,"name":"Whatever Happened to the Daughter of Spider-Man? Part 2: Rocked by Reverb!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-2-whatever-happened-to-the/4000-115542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149202/","id":149202,"name":"Elemental Evil; Nothing Gained; The Date; Homecoming","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-featuring-spider-clan-1-elementa/4000-149202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105387/","id":105387,"name":"Taking Wing - Part 1","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-14-taking-wing-pa/4000-105387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208695/","id":208695,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/defenders-indefensible-1-tpb/4000-208695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114568/","id":114568,"name":"Part 2 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-2-part-2-of-9/4000-114568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118621/","id":118621,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-1/4000-118621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111918/","id":111918,"name":"Justice, Like Lightning","site_detail_url":"https://comicvine.gamespot.com/all-flash-1-justice-like-lightning/4000-111918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186647/","id":186647,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-black-cat-claws-1-hctpb/4000-186647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279024/","id":279024,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-john-buscema-1-hctpb/4000-279024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111544/","id":111544,"name":"Ash Vs. Dracula Part 4","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness-11-ash-vs-dracula-part-4/4000-111544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255912/","id":255912,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-4-volume-4/4000-255912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111692/","id":111692,"name":"The New Kid, Part 1: Everything Old Is Young Again...; Civil Wards Part 1; A New Light","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-power-pack-1-the-new-kid-part-1-eve/4000-111692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113541/","id":113541,"name":"Does the World Still Need the Avengers?","site_detail_url":"https://comicvine.gamespot.com/avengers-next-1-does-the-world-still-need-the-aven/4000-113541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119724/","id":119724,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-2/4000-119724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298184/","id":298184,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-10/4000-298184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472392/","id":472392,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-14/4000-472392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275489/","id":275489,"name":"Sechs Im Roten Kreis","site_detail_url":"https://comicvine.gamespot.com/100-bullets-6-sechs-im-roten-kreis/4000-275489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106020/","id":106020,"name":"Captains Courageous / The Decision","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-return-1-captains-courageous-the-dec/4000-106020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176289/","id":176289,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-1-tpbhc/4000-176289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106176/","id":106176,"name":"","site_detail_url":"https://comicvine.gamespot.com/chronicles-of-wormwood-1/4000-106176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413239/","id":413239,"name":"","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-145/4000-413239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237627/","id":237627,"name":"Carnage","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-carnage-1-carnage/4000-237627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106449/","id":106449,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/spider-man-reign-2-book-two/4000-106449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413238/","id":413238,"name":"Judgement Day","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-144-judgement-da/4000-413238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112679/","id":112679,"name":"Titans Around the World Part 4","site_detail_url":"https://comicvine.gamespot.com/teen-titans-41-titans-around-the-world-part-4/4000-112679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113997/","id":113997,"name":"Bleed with Me","site_detail_url":"https://comicvine.gamespot.com/drain-2-bleed-with-me/4000-113997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113307/","id":113307,"name":"The Eternal Dance","site_detail_url":"https://comicvine.gamespot.com/witchblade-102-the-eternal-dance/4000-113307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105450/","id":105450,"name":"Rock On!","site_detail_url":"https://comicvine.gamespot.com/supergirl-12-rock-on/4000-105450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106133/","id":106133,"name":"Clone Saga part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-102-clone-saga-part-6/4000-106133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108901/","id":108901,"name":"The Drums of War (Part 3 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-24-the-drums-of-war-part-3-of-3/4000-108901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108906/","id":108906,"name":"Many Annoying Things, None Of Them French","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-541-many-annoying-things-none-of-th/4000-108906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111399/","id":111399,"name":"Civil War, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-14-civil-war-part-2/4000-111399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106012/","id":106012,"name":"Midnight Sun, Chapter 1: The Woodwork","site_detail_url":"https://comicvine.gamespot.com/moon-knight-7-midnight-sun-chapter-1-the-woodwork/4000-106012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108549/","id":108549,"name":"How I Won The War Part 1: Bring On The Bad Guys","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-1-how-i-won-the-war-part-1-br/4000-108549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106626/","id":106626,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-7-untitled/4000-106626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111804/","id":111804,"name":"Shock & Awe","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-2-shock-awe/4000-111804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110140/","id":110140,"name":"The Husband or the Spider?","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-32-the-husband-or-the-s/4000-110140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108214/","id":108214,"name":"Doppelganger","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-9-doppelganger/4000-108214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107301/","id":107301,"name":"Savior, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-8-savior-pt-3/4000-107301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108912/","id":108912,"name":"Vendetta Epilogue - Knocking On Heaven's Door","site_detail_url":"https://comicvine.gamespot.com/wolverine-48-vendetta-epilogue-knocking-on-heavens/4000-108912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150833/","id":150833,"name":"Public Works, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-13-public-works-part-1/4000-150833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142763/","id":142763,"name":"What If Spider-Man Had Rejected The Spider - Poison Selves","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-the-other-1-what-if-spider-man-/4000-142763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106313/","id":106313,"name":"Power Full, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-108-power-full-pt-2/4000-106313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108356/","id":108356,"name":"The Ballad of Clint Barton and Wanda Maximoff","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-26-the-ballad-of-clint-barton-and/4000-108356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105988/","id":105988,"name":"The Oath, Chapter 2","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-oath-2-the-oath-chapter-2/4000-105988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214877/","id":214877,"name":"Mother Russia","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-3-mother-russia/4000-214877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216757/","id":216757,"name":"Up Is Down, Black Is White","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-4-up-is-down-black-is-white/4000-216757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106840/","id":106840,"name":"Blood and Circuits, Part 1 - A Chance to Do Good","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-100-blood-and-circuits-part-1-a-chan/4000-106840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105612/","id":105612,"name":"Cherry, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-boys-5-cherry-part-three/4000-105612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249869/","id":249869,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/justice-2-vol-2/4000-249869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141492/","id":141492,"name":"In a New York Minute","site_detail_url":"https://comicvine.gamespot.com/stormwatch-phd-1-in-a-new-york-minute/4000-141492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124761/","id":124761,"name":"We Don't Need No Education","site_detail_url":"https://comicvine.gamespot.com/nightly-news-3-we-dont-need-no-education/4000-124761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264188/","id":264188,"name":"The Others Among Us","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-the-others-among-us-1-the-others/4000-264188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115391/","id":115391,"name":"The Others Among Us, Part 4","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-4-the-others-among-us-part-4/4000-115391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158550/","id":158550,"name":"And Then You Live! Part Two","site_detail_url":"https://comicvine.gamespot.com/deathblow-2-and-then-you-live-part-two/4000-158550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271013/","id":271013,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-n-zone-3-volume-3/4000-271013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289686/","id":289686,"name":"","site_detail_url":"https://comicvine.gamespot.com/homem-aranha-86/4000-289686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122577/","id":122577,"name":"The Adventures of Spawn: Director's Cut","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-spawn-1-the-adventures-of-spawn-/4000-122577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303724/","id":303724,"name":"Ultimate Power Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-directors-cut-1-ultimate-power-pa/4000-303724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229092/","id":229092,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jsa-ghost-stories-1-tpb/4000-229092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140587/","id":140587,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-atlas-era-heroes-3-volume-three/4000-140587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292354/","id":292354,"name":"Marvel Zombies","site_detail_url":"https://comicvine.gamespot.com/max-17-marvel-zombies/4000-292354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387269/","id":387269,"name":"The Death of the Dream Part One","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-directors-cut-25-the-death-of-t/4000-387269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111685/","id":111685,"name":"Smoke Smoke, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-24-smoke-smoke-conclusion/4000-111685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123647/","id":123647,"name":"Over There: Part Four of Sons of Empire; The Road to Paradise","site_detail_url":"https://comicvine.gamespot.com/fables-55-over-there-part-four-of-sons-of-empire-t/4000-123647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444776/","id":444776,"name":"Spider-Man vs. Sandman and Venom Digest","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-1-spider-man-vs-sandm/4000-444776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106073/","id":106073,"name":"Re-X-Aminations","site_detail_url":"https://comicvine.gamespot.com/x-factor-13-re-x-aminations/4000-106073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300784/","id":300784,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/american-way-1-tpb/4000-300784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153523/","id":153523,"name":"Doctor 13: Architecture & Morality","site_detail_url":"https://comicvine.gamespot.com/doctor-13-architecture-mortality-1-doctor-13-archi/4000-153523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111405/","id":111405,"name":"The U-Foes!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-6-the-u-foes/4000-111405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114567/","id":114567,"name":"Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-part-1-of-9/4000-114567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120890/","id":120890,"name":"Titannus Lives!, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-25-titannus-lives-part-2/4000-120890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107015/","id":107015,"name":"The MJ Thing","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-11-the-mj-thing/4000-107015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246733/","id":246733,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-new-girl-1-volume-2/4000-246733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107834/","id":107834,"name":"Whatever Happened To The Daughter Of Spider-Man? Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-1-whatever-happened-to-the/4000-107834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166499/","id":166499,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/fables-wolves-1-volume-8/4000-166499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137800/","id":137800,"name":"Volume Ten","site_detail_url":"https://comicvine.gamespot.com/100-bullets-decayed-1-volume-ten/4000-137800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522548/","id":522548,"name":"The Power of Reading","site_detail_url":"https://comicvine.gamespot.com/target-presents-reading-to-the-rescue-4-the-power-/4000-522548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546164/","id":546164,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocky-200606/4000-546164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298183/","id":298183,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-9/4000-298183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107174/","id":107174,"name":"Enter","site_detail_url":"https://comicvine.gamespot.com/newuniversal-1-enter/4000-107174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472391/","id":472391,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-13/4000-472391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412393/","id":412393,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-complete-invincible-library-1-vol-1/4000-412393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107570/","id":107570,"name":"The Most Wonderful Time Of The Year; The Origin of Martian Manhunter","site_detail_url":"https://comicvine.gamespot.com/52-33-the-most-wonderful-time-of-the-year-the-orig/4000-107570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258651/","id":258651,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/king-kong-1-tpb/4000-258651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220396/","id":220396,"name":"Ghost Rider: The Visual Guide","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-the-visual-guide-1-ghost-rider-the-vis/4000-220396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106101/","id":106101,"name":"X'd Out (part 3)","site_detail_url":"https://comicvine.gamespot.com/x-factor-12-xd-out-part-3/4000-106101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172435/","id":172435,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-avengers-1-tpb/4000-172435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395064/","id":395064,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-coat-a-call-to-arms-1-tpb/4000-395064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106466/","id":106466,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/spider-man-reign-1-book-one/4000-106466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237648/","id":237648,"name":"Warriors","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-warriors-1-warriors/4000-237648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314250/","id":314250,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-compendium-1-vol-1/4000-314250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413237/","id":413237,"name":"Pete's Dragon","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-143-petes-dragon/4000-413237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134174/","id":134174,"name":"Home Again","site_detail_url":"https://comicvine.gamespot.com/ion-guardian-of-the-universe-7-home-again/4000-134174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105351/","id":105351,"name":"Clan-Building","site_detail_url":"https://comicvine.gamespot.com/gargoyles-2-clan-building/4000-105351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107009/","id":107009,"name":"Switching Sides / Conscientious Objector / Choosing Sides / Non-Human-Americans / A New Light","site_detail_url":"https://comicvine.gamespot.com/civil-war-choosing-sides-1-switching-sides-conscie/4000-107009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108882/","id":108882,"name":"Civil Disobedience","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-3-civil-disobedience/4000-108882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108773/","id":108773,"name":"Civil War, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-13-civil-war-part-1/4000-108773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108176/","id":108176,"name":"For The Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-8-for-the-best/4000-108176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108040/","id":108040,"name":"New Avengers: Disassembled, Part 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-25-new-avengers-disassembled-part/4000-108040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108679/","id":108679,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/wolverine-47-payback/4000-108679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106138/","id":106138,"name":"The War at Home, Part 5","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-536-the-war-at-home-part-5/4000-106138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107000/","id":107000,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-6-untitled/4000-107000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105386/","id":105386,"name":"I Hate A Mystery 3/3","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-13-i-hate-a-myste/4000-105386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110158/","id":110158,"name":"Fish Out of Water","site_detail_url":"https://comicvine.gamespot.com/supergirl-11-fish-out-of-water/4000-110158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141474/","id":141474,"name":"New York Times","site_detail_url":"https://comicvine.gamespot.com/dmz-12-new-york-times/4000-141474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105989/","id":105989,"name":"The Oath, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-oath-1-the-oath-chapter-1/4000-105989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107250/","id":107250,"name":"Mind Field","site_detail_url":"https://comicvine.gamespot.com/she-hulk-13-mind-field/4000-107250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200194/","id":200194,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-galactic-storm-2-volume-2/4000-200194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217596/","id":217596,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/universe-x-1-volume-one/4000-217596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108684/","id":108684,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/claws-3-part-three/4000-108684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111347/","id":111347,"name":"Targets, Part 1","site_detail_url":"https://comicvine.gamespot.com/nightwing-125-targets-part-1/4000-111347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105611/","id":105611,"name":"Cherry, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-4-cherry-part-two/4000-105611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235546/","id":235546,"name":"Phoenix","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-phoenix-1-phoenix/4000-235546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124759/","id":124759,"name":"The Voice","site_detail_url":"https://comicvine.gamespot.com/nightly-news-2-the-voice/4000-124759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115390/","id":115390,"name":"The Others Among Us, Part 3","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-3-the-others-among-us-part-3/4000-115390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327694/","id":327694,"name":"Grendel!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-288-grendel/4000-327694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385478/","id":385478,"name":"День \"М\". Часть 8","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-68-8/4000-385478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108596/","id":108596,"name":"The Miser's Coat","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-1-the-misers-coat/4000-108596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122708/","id":122708,"name":"Sons of the Empire, Part Three: The Burning Times; A Thorn In Their Side?","site_detail_url":"https://comicvine.gamespot.com/fables-54-sons-of-the-empire-part-three-the-burnin/4000-122708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155406/","id":155406,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-5/4000-155406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233082/","id":233082,"name":"Chapter One: Old Tales Revisited","site_detail_url":"https://comicvine.gamespot.com/fables-special-edition-1-chapter-one-old-tales-rev/4000-233082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106958/","id":106958,"name":"The Last Iron Fist Story, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-2-the-last-iron-fist-story-/4000-106958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111404/","id":111404,"name":"The Trickster and the Wrecker","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-5-the-trickster-and-the/4000-111404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107658/","id":107658,"name":"Grounded","site_detail_url":"https://comicvine.gamespot.com/the-trials-of-shazam-2-grounded/4000-107658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108310/","id":108310,"name":"Freedom Ring, Part 5; Titannus Lives!, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-24-freedom-ring-part-5-titannus-liv/4000-108310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119069/","id":119069,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-black-and-blue-and-read-all-over-1/4000-119069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416667/","id":416667,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/to-dance-1-gn/4000-416667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298182/","id":298182,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-8/4000-298182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472390/","id":472390,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-12/4000-472390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236774/","id":236774,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-legacy-1-legacy/4000-236774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165094/","id":165094,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier-2-book-two/4000-165094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186088/","id":186088,"name":"Black Panther: The Bride","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-bride-1-black-panther-the-bride/4000-186088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107249/","id":107249,"name":"Remember The Titans","site_detail_url":"https://comicvine.gamespot.com/she-hulk-12-remember-the-titans/4000-107249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248937/","id":248937,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-very-special-holidays-1-tpb/4000-248937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413236/","id":413236,"name":"Trick or Treat","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-142-trick-or-tre/4000-413236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107300/","id":107300,"name":"Savior, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-7-savior-pt-2/4000-107300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300882/","id":300882,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-1-tpb/4000-300882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353521/","id":353521,"name":"Doppia Morte","site_detail_url":"https://comicvine.gamespot.com/devil-and-capitan-america-doppia-morte-1-doppia-mo/4000-353521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133594/","id":133594,"name":"","site_detail_url":"https://comicvine.gamespot.com/nightwing-124/4000-133594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120759/","id":120759,"name":"Rogue Squad, Part One","site_detail_url":"https://comicvine.gamespot.com/checkmate-6-rogue-squad-part-one/4000-120759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115135/","id":115135,"name":"The Others Among Us, Part 2","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-2-the-others-among-us-part-2/4000-115135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113708/","id":113708,"name":"Decades","site_detail_url":"https://comicvine.gamespot.com/drain-1-decades/4000-113708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106625/","id":106625,"name":"The Last Iron Fist Story, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-1-the-last-iron-fist-story-/4000-106625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108776/","id":108776,"name":"Embedded, Part 6 / The Accused, Part 6 / Sleeper Cell, Part 4","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-6-embedded-part-6-the-accused/4000-108776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106446/","id":106446,"name":"A House Divided","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-32-a-house-divided/4000-106446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108673/","id":108673,"name":"The Drums of War (Part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-22-the-drums-of-war-part-1-of-3/4000-108673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108886/","id":108886,"name":"Some Words Can Never Be Taken Back","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-540-some-words-can-never-be-taken-b/4000-108886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108889/","id":108889,"name":"Taking It To The Streets, Part 2","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-2-taking-it-to-the-streets-part-2/4000-108889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108175/","id":108175,"name":"Battle Lines, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-7-battle-lines-part-2/4000-108175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108039/","id":108039,"name":"New Avengers: Disassembled, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-24-new-avengers-disassembled-part/4000-108039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108777/","id":108777,"name":"Embedded, Part 7 / The Accused, Part 7 / Sleeper Cell, Part 5","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-7-embedded-part-7-the-accused/4000-108777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108900/","id":108900,"name":"Embedded, Part 8 / The Accused, Part 8 / Sleeper Cell, Part 6","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-8-embedded-part-8-the-accused/4000-108900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113626/","id":113626,"name":"The Deadly Foes of Peter Parker Part Two of Three","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-30-the-deadly-foes-of-p/4000-113626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110157/","id":110157,"name":"Secret Identities","site_detail_url":"https://comicvine.gamespot.com/supergirl-10-secret-identities/4000-110157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106998/","id":106998,"name":"Savior, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-6-savior-pt-1/4000-106998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108678/","id":108678,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/wolverine-46-payback/4000-108678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108386/","id":108386,"name":"Execute Program, Part 6","site_detail_url":"https://comicvine.gamespot.com/iron-man-12-execute-program-part-6/4000-108386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150832/","id":150832,"name":"Zee, NYC","site_detail_url":"https://comicvine.gamespot.com/dmz-11-zee-nyc/4000-150832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107592/","id":107592,"name":"Clone Saga - Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-100-clone-saga-part-4/4000-107592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108038/","id":108038,"name":"New Avengers: Disassembled, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-23-new-avengers-disassembled-pt-3/4000-108038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106999/","id":106999,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-5-untitled/4000-106999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106311/","id":106311,"name":"Power Hungry","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-106-power-hungry/4000-106311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105556/","id":105556,"name":"The War at Home, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-535-the-war-at-home-part-4/4000-105556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203738/","id":203738,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-heroes-assembled-1-volu/4000-203738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107443/","id":107443,"name":"The Avengers","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-12-the-avengers/4000-107443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105610/","id":105610,"name":"Cherry, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-3-cherry-part-one/4000-105610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124758/","id":124758,"name":"I'm Mad as Hell, and I'm Not Going to Take This Anymore","site_detail_url":"https://comicvine.gamespot.com/nightly-news-1-im-mad-as-hell-and-im-not-going-to-/4000-124758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111786/","id":111786,"name":"God War: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-34-god-war-part-2/4000-111786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273000/","id":273000,"name":"In nome del padre","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-242-in-nome-del-padre/4000-273000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111952/","id":111952,"name":"Back In Action, Part 3: All-Out Action","site_detail_url":"https://comicvine.gamespot.com/action-comics-843-back-in-action-part-3-all-out-ac/4000-111952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111684/","id":111684,"name":"Smoke Smoke, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-23-smoke-smoke-chapter-three/4000-111684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385475/","id":385475,"name":"День \"М\". Часть 5","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-65-5/4000-385475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122707/","id":122707,"name":"Sons of the Empire, Part Two: The Four Plagues; Porky Pine Pie","site_detail_url":"https://comicvine.gamespot.com/fables-53-sons-of-the-empire-part-two-the-four-pla/4000-122707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119669/","id":119669,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-4/4000-119669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106100/","id":106100,"name":"X'd Out (part 2)","site_detail_url":"https://comicvine.gamespot.com/x-factor-11-xd-out-part-2/4000-106100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111611/","id":111611,"name":"Magical: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-74-magical-conclusion/4000-111611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176836/","id":176836,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/absolute-sandman-1-vol-1/4000-176836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109673/","id":109673,"name":"Motherland","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-49-motherland/4000-109673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275518/","id":275518,"name":"Legenden Im Exil","site_detail_url":"https://comicvine.gamespot.com/fables-1-legenden-im-exil/4000-275518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108513/","id":108513,"name":"Splinter Group","site_detail_url":"https://comicvine.gamespot.com/blade-1-splinter-group/4000-108513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107657/","id":107657,"name":"The Boy & The Man","site_detail_url":"https://comicvine.gamespot.com/the-trials-of-shazam-1-the-boy-the-man/4000-107657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140393/","id":140393,"name":"Volume Eight","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-8-volume/4000-140393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120880/","id":120880,"name":"Freedom Ring, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-23-freedom-ring-part-4/4000-120880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111975/","id":111975,"name":"The Justice League of America in: Justice, Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/justice-7-the-justice-league-of-america-in-justice/4000-111975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107248/","id":107248,"name":"6 Shots to the Heart","site_detail_url":"https://comicvine.gamespot.com/she-hulk-11-6-shots-to-the-heart/4000-107248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113648/","id":113648,"name":"The Gwen Thing","site_detail_url":"https://comicvine.gamespot.com/spider-man-loves-mary-jane-9-the-gwen-thing/4000-113648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273555/","id":273555,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-archives-3-volume-3/4000-273555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204688/","id":204688,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-devil-inside-and-out-1-volume-1/4000-204688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216691/","id":216691,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-3-volume-3/4000-216691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106744/","id":106744,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-annual-2/4000-106744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317626/","id":317626,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/invincible-three-s-company-1-volume-seven/4000-317626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298058/","id":298058,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-2/4000-298058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298181/","id":298181,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-7/4000-298181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573684/","id":573684,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-55/4000-573684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232970/","id":232970,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-pulse-fear-1-volume-3/4000-232970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107551/","id":107551,"name":"Liminal Times; The Origin of Nightwing","site_detail_url":"https://comicvine.gamespot.com/52-25-liminal-times-the-origin-of-nightwing/4000-107551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465981/","id":465981,"name":"To Baldly Go!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-141-to-baldly-go/4000-465981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107247/","id":107247,"name":"I Married A Man-Wolf","site_detail_url":"https://comicvine.gamespot.com/she-hulk-10-i-married-a-man-wolf/4000-107247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106748/","id":106748,"name":"Just Imagine; The Origin of Booster Gold","site_detail_url":"https://comicvine.gamespot.com/52-24-just-imagine-the-origin-of-booster-gold/4000-106748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178810/","id":178810,"name":"First Foursaken","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-new-age-5-first-foursaken/4000-178810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249408/","id":249408,"name":"Absolute DC: The New Frontier","site_detail_url":"https://comicvine.gamespot.com/absolute-dc-the-new-frontier-1-absolute-dc-the-new/4000-249408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413235/","id":413235,"name":"Hunted!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-140-hunted/4000-413235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106853/","id":106853,"name":"Fire Down Below","site_detail_url":"https://comicvine.gamespot.com/nightwing-123-fire-down-below/4000-106853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115101/","id":115101,"name":"The Others Among Us, Part 1","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-1-the-others-among-us-part-1/4000-115101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106199/","id":106199,"name":"The Tornado's Path, Chapter One: Life","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-1-the-tornados-path-chap/4000-106199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108696/","id":108696,"name":"Embedded, Part 5 / The Accused, Part 5 / Sleeper Cell, Part 3","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-5-embedded-part-5-the-accused/4000-108696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108695/","id":108695,"name":"Taking It To The Streets, Part 1","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-1-taking-it-to-the-streets-part-1/4000-108695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106445/","id":106445,"name":"Casualties of War","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-31-casualties-of-war/4000-106445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106310/","id":106310,"name":"Swimming With Sharks","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-105-swimming-with-sharks/4000-106310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105682/","id":105682,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-4-untitled/4000-105682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107843/","id":107843,"name":"Clone Saga Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-98-clone-saga-part-2/4000-107843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110139/","id":110139,"name":"The Deadly Foes of Peter Parker, Part One of Three","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-29-the-deadly-foes-of-p/4000-110139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108041/","id":108041,"name":"Battle Lines, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-6-battle-lines-part-1/4000-108041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108617/","id":108617,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/claws-1-part-1/4000-108617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150831/","id":150831,"name":"Body of A Journalist, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-10-body-of-a-journalist-conclusion/4000-150831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122706/","id":122706,"name":"Some Ideas Toward the Prospect of a Final Solution for Fabletown: Part One of Sons of the Empire; Hair","site_detail_url":"https://comicvine.gamespot.com/fables-52-some-ideas-toward-the-prospect-of-a-fina/4000-122706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105609/","id":105609,"name":"The Name of the Game, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-boys-2-the-name-of-the-game-part-two/4000-105609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105593/","id":105593,"name":"The Name of the Game, Part One","site_detail_url":"https://comicvine.gamespot.com/the-boys-1-the-name-of-the-game-part-one/4000-105593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107854/","id":107854,"name":"God War: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-33-god-war-part-1/4000-107854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272999/","id":272999,"name":"Xabaras!","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-241-xabaras/4000-272999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111683/","id":111683,"name":"Smoke Smoke, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-22-smoke-smoke-chapter-two/4000-111683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385473/","id":385473,"name":"День \"М\". Часть 3","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-63-3/4000-385473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385474/","id":385474,"name":"День \"М\". Часть 4","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-64-4/4000-385474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186400/","id":186400,"name":"Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/wolverine-agent-of-shield-1-agent-of-shield/4000-186400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224089/","id":224089,"name":"Ultimate Iron Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-1-ultimate-iron-man/4000-224089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106099/","id":106099,"name":"X'd Out (part 1)","site_detail_url":"https://comicvine.gamespot.com/x-factor-10-xd-out-part-1/4000-106099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125495/","id":125495,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/fables-1001-nights-of-snowfall-1-gn/4000-125495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106947/","id":106947,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimates-annual-2/4000-106947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106756/","id":106756,"name":"Who is Wonder Woman? Part 3","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-3-who-is-wonder-woman-part-3/4000-106756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317206/","id":317206,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-curse-of-the-spawn-1/4000-317206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721060/","id":721060,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/will-eisners-new-york-life-in-the-big-city-new-yor/4000-721060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111403/","id":111403,"name":"Finding Zemo","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-3-finding-zemo/4000-111403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111726/","id":111726,"name":"Conquered! Part 2: Pack to the Future","site_detail_url":"https://comicvine.gamespot.com/avengers-and-power-pack-assemble-4-conquered-part-/4000-111726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113254/","id":113254,"name":"Freedom Ring, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-22-freedom-ring-part-3/4000-113254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259819/","id":259819,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-life-fantastic-1-tpb/4000-259819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276203/","id":276203,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thing-idol-of-millions-1-tpb/4000-276203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111543/","id":111543,"name":"Ash Vs. Dracula Part 3","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness-10-ash-vs-dracula-part-3/4000-111543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290337/","id":290337,"name":"","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-6/4000-290337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298057/","id":298057,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-1/4000-298057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117324/","id":117324,"name":"If Death Be My Destiny!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-100-if-death-be-my-destiny/4000-117324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298180/","id":298180,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-6/4000-298180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573683/","id":573683,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-54/4000-573683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472388/","id":472388,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-10/4000-472388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237609/","id":237609,"name":"Hollywood","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hollywood-1-hollywood/4000-237609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365442/","id":365442,"name":"Vol. 2: Another Sunny Delight","site_detail_url":"https://comicvine.gamespot.com/godland-2-vol-2-another-sunny-delight/4000-365442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237650/","id":237650,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-deadpool-1-deadpool/4000-237650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716052/","id":716052,"name":"Three Times Trouble!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-139-three-times-/4000-716052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198666/","id":198666,"name":"Spider-Girl Presents Avengers Next: Second Coming","site_detail_url":"https://comicvine.gamespot.com/spider-girl-presents-avengers-next-second-coming-1/4000-198666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236884/","id":236884,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-venom-1-venom/4000-236884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121382/","id":121382,"name":"Odd Couples","site_detail_url":"https://comicvine.gamespot.com/nightwing-122-odd-couples/4000-121382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115173/","id":115173,"name":"The Game of Kings, Part 4","site_detail_url":"https://comicvine.gamespot.com/checkmate-4-the-game-of-kings-part-4/4000-115173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106755/","id":106755,"name":"Who is Wonder Woman? Part 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-2-who-is-wonder-woman-part-2/4000-106755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113595/","id":113595,"name":"Clone Saga: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-97-clone-saga-part-1/4000-113595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142219/","id":142219,"name":"Actor Comics Presents","site_detail_url":"https://comicvine.gamespot.com/actor-comics-presents-1-actor-comics-presents/4000-142219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107678/","id":107678,"name":"Old Wounds","site_detail_url":"https://comicvine.gamespot.com/the-darknesswolverine-1-old-wounds/4000-107678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113306/","id":113306,"name":"Death and Birth","site_detail_url":"https://comicvine.gamespot.com/witchblade-101-death-and-birth/4000-113306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111609/","id":111609,"name":"Magical: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-72-magical-part-1/4000-111609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108781/","id":108781,"name":"Decisions Made","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-539-decisions-made/4000-108781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107895/","id":107895,"name":"New Avengers: Disassembled, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-22-new-avengers-disassembled-pt-2/4000-107895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106444/","id":106444,"name":"The Hero Hunter","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-30-the-hero-hunter/4000-106444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105614/","id":105614,"name":"The War at Home, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-534-the-war-at-home-part-3/4000-105614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105339/","id":105339,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways-1/4000-105339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109260/","id":109260,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/wolverine-44-justice/4000-109260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106309/","id":106309,"name":"Homeland Insecurities","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-104-homeland-insecurities/4000-106309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107959/","id":107959,"name":"Embedded, Part 3 / The Accused, Part 3 / Sleeper Cell, Part 1","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-3-embedded-part-3-the-accused/4000-107959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113625/","id":113625,"name":"My Science Teacher is Spider-Man!!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-28-my-science-teacher-i/4000-113625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168841/","id":168841,"name":"New Avengers: Secrets and Lies","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secrets-and-lies-1-new-avengers-secre/4000-168841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106589/","id":106589,"name":"The First Foursaken Part 3: Loose Ends","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-474-the-first-foursaken-part-3-l/4000-106589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108174/","id":108174,"name":"Time And Time Again","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-5-time-and-time-again/4000-108174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181943/","id":181943,"name":"Decimation: Son of M","site_detail_url":"https://comicvine.gamespot.com/decimation-son-of-m-1-decimation-son-of-m/4000-181943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141473/","id":141473,"name":"Body of A Journalist, Part 4","site_detail_url":"https://comicvine.gamespot.com/dmz-9-body-of-a-journalist-part-4/4000-141473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105383/","id":105383,"name":"Jumping The Tracks 3/3","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-10-jumping-the-tr/4000-105383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105624/","id":105624,"name":"Whose Side Are You On?","site_detail_url":"https://comicvine.gamespot.com/civil-war-3-whose-side-are-you-on/4000-105624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110896/","id":110896,"name":"The Great Beyond","site_detail_url":"https://comicvine.gamespot.com/beyond-1-the-great-beyond/4000-110896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240456/","id":240456,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spawn-collection-2-volume-2/4000-240456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245515/","id":245515,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/thor-the-eternals-saga-1-volume-one/4000-245515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259372/","id":259372,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-ultimate-collection-1-tpb/4000-259372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238444/","id":238444,"name":"","site_detail_url":"https://comicvine.gamespot.com/big-apple-shorts-1/4000-238444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135608/","id":135608,"name":"Freedom Fighters","site_detail_url":"https://comicvine.gamespot.com/uncle-sam-and-the-freedom-fighters-1-freedom-fight/4000-135608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152091/","id":152091,"name":"On The Rebound (Part 2)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-15-on-the-rebound-part-2/4000-152091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264972/","id":264972,"name":"The Funeral Of Magneto!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-142-the-funeral-of-magneto/4000-264972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110319/","id":110319,"name":"Big and Small","site_detail_url":"https://comicvine.gamespot.com/fables-51-big-and-small/4000-110319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172847/","id":172847,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-planet-standing-5/4000-172847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385471/","id":385471,"name":"День \"М\". Часть 1","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-61-1/4000-385471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385472/","id":385472,"name":"День \"М\". Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-62-2/4000-385472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106098/","id":106098,"name":"Trust Issues","site_detail_url":"https://comicvine.gamespot.com/x-factor-9-trust-issues/4000-106098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114487/","id":114487,"name":"The Long Hard Fall of Hollywood Jack","site_detail_url":"https://comicvine.gamespot.com/jack-of-fables-1-the-long-hard-fall-of-hollywood-j/4000-114487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281353/","id":281353,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-challengers-of-the-unknown-1-vol/4000-281353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111725/","id":111725,"name":"Conquered! Part 1: In A New York Minute...","site_detail_url":"https://comicvine.gamespot.com/avengers-and-power-pack-assemble-3-conquered-part-/4000-111725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109928/","id":109928,"name":"Freedom Ring, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-21-freedom-ring-part-2/4000-109928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107729/","id":107729,"name":"Gods and Monsters","site_detail_url":"https://comicvine.gamespot.com/witchblade-100-gods-and-monsters/4000-107729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111542/","id":111542,"name":"Ash Vs. Dracula, Part 2","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness-9-ash-vs-dracula-part-2/4000-111542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409877/","id":409877,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-league-of-losers-1-volume-3/4000-409877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120997/","id":120997,"name":"Sergio Aragonés","site_detail_url":"https://comicvine.gamespot.com/solo-11-sergio-aragones/4000-120997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220985/","id":220985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1/4000-220985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106862/","id":106862,"name":"Book 3: The Great And Terrible","site_detail_url":"https://comicvine.gamespot.com/lost-girls-3-book-3-the-great-and-terrible/4000-106862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133621/","id":133621,"name":"Tooth & Claw","site_detail_url":"https://comicvine.gamespot.com/marvel-western-two-gun-kid-1-tooth-claw/4000-133621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117321/","id":117321,"name":"Family Ties!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-99-family-ties/4000-117321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298179/","id":298179,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-5/4000-298179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297481/","id":297481,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-12/4000-297481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573682/","id":573682,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-53/4000-573682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231247/","id":231247,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-statix-presents-dead-girl-1-tpb/4000-231247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472387/","id":472387,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-9/4000-472387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226157/","id":226157,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-luke-cage-power-man-2-volume-two/4000-226157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716051/","id":716051,"name":"Raw Power!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-138-raw-power/4000-716051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107246/","id":107246,"name":"The Big Reveal / My Dinner With Jonah","site_detail_url":"https://comicvine.gamespot.com/she-hulk-9-the-big-reveal-my-dinner-with-jonah/4000-107246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256669/","id":256669,"name":"Ultimate Galactus: Ultimate Extinction","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-ultimate-extinction-1-ultimate-g/4000-256669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280733/","id":280733,"name":"Spider-Man Visionaries: Kurt Busiek","site_detail_url":"https://comicvine.gamespot.com/spider-man-visionaries-kurt-busiek-1-spider-man-vi/4000-280733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716050/","id":716050,"name":"Bitter Victory","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-137-bitter-victo/4000-716050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120392/","id":120392,"name":"Sorry I Brought that Up","site_detail_url":"https://comicvine.gamespot.com/nightwing-121-sorry-i-brought-that-up/4000-120392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135757/","id":135757,"name":"Where Highwaymen Rode","site_detail_url":"https://comicvine.gamespot.com/jsa-86-where-highwaymen-rode/4000-135757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150577/","id":150577,"name":"Underworld (Part 5)","site_detail_url":"https://comicvine.gamespot.com/underworld-5-underworld-part-5/4000-150577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113594/","id":113594,"name":"Morbius: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-96-morbius-part-2/4000-113594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157337/","id":157337,"name":"Volume 2: Two-Edged Sword","site_detail_url":"https://comicvine.gamespot.com/excalibur-classic-2-volume-2-two-edged-sword/4000-157337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109582/","id":109582,"name":"Feral, Part 5: The Rock Of Life","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-27-feral-part-5-the-roc/4000-109582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106588/","id":106588,"name":"The First Foursaken Part 2: Family Lies!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-473-the-first-foursaken-part-2-f/4000-106588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167602/","id":167602,"name":"Brave New World","site_detail_url":"https://comicvine.gamespot.com/brave-new-world-1-brave-new-world/4000-167602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111731/","id":111731,"name":"Frightful: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-31-frightful-part-2/4000-111731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111732/","id":111732,"name":"Frightful: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-32-frightful-part-3/4000-111732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108173/","id":108173,"name":"Traveler's Tales","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-4-travelers-tales/4000-108173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110605/","id":110605,"name":"Bride Of The Panther, Part 4","site_detail_url":"https://comicvine.gamespot.com/black-panther-17-bride-of-the-panther-part-4/4000-110605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150830/","id":150830,"name":"Body of A Journalist, Part 3","site_detail_url":"https://comicvine.gamespot.com/dmz-8-body-of-a-journalist-part-3/4000-150830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108473/","id":108473,"name":"Street Fighting","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-538-street-fighting/4000-108473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105382/","id":105382,"name":"Jumping the Tracks 2/3","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-9-jumping-the-tra/4000-105382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106956/","id":106956,"name":"Last Hand","site_detail_url":"https://comicvine.gamespot.com/the-thing-8-last-hand/4000-106956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105570/","id":105570,"name":"Captain America Goes Underground","site_detail_url":"https://comicvine.gamespot.com/civil-war-2-captain-america-goes-underground/4000-105570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106253/","id":106253,"name":"Taking Civil Liberties","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-103-taking-civil-liberties/4000-106253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106137/","id":106137,"name":"The Night The War Came Home, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-533-the-night-the-war-came-/4000-106137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122506/","id":122506,"name":"","site_detail_url":"https://comicvine.gamespot.com/highlander-1/4000-122506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106754/","id":106754,"name":"Who is Wonder Woman? Part 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-1-who-is-wonder-woman-part-1/4000-106754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107558/","id":107558,"name":"On the Rebound, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-14-on-the-rebound-part-1-of-2/4000-107558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172843/","id":172843,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-planet-standing-2/4000-172843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358688/","id":358688,"name":"Paperback","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-tomorrow-men-1-paperback/4000-358688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106097/","id":106097,"name":"Collision Course","site_detail_url":"https://comicvine.gamespot.com/x-factor-8-collision-course/4000-106097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172844/","id":172844,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-planet-standing-3/4000-172844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172846/","id":172846,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-planet-standing-4/4000-172846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125521/","id":125521,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodrayne-plague-of-dreams-1/4000-125521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122029/","id":122029,"name":"Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-50-happily-ever-after/4000-122029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111700/","id":111700,"name":"Life and Death Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/ex-machina-special-2-life-and-death-part-2-of-2/4000-111700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111682/","id":111682,"name":"Smoke Smoke, Chapter One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-21-smoke-smoke-chapter-one/4000-111682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152222/","id":152222,"name":"Seaside Frights; UFO-No!; The Lost Survivors of Monster Island","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-109-seaside-frights-ufo-no-the-lost-sur/4000-152222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111724/","id":111724,"name":"The Greate$t Reward","site_detail_url":"https://comicvine.gamespot.com/avengers-and-power-pack-assemble-2-the-greatet-rew/4000-111724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108899/","id":108899,"name":"Freedom Ring, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-20-freedom-ring-part-1/4000-108899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134177/","id":134177,"name":"The Super Hero's Apprentice, Part 2: Open House","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-30-the-super-heros-apprentice-par/4000-134177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181650/","id":181650,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastic-four-a-death-in-the-family-1/4000-181650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113305/","id":113305,"name":"In the Darkness...Something Stirs","site_detail_url":"https://comicvine.gamespot.com/witchblade-99-in-the-darknesssomething-stirs/4000-113305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184656/","id":184656,"name":"Past Lives","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-13-past-lives/4000-184656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113612/","id":113612,"name":"Adventure the Fourth: The Endless Nightmare of Leonard Samson, Part 2 / Nightmare Hour","site_detail_url":"https://comicvine.gamespot.com/doc-samson-5-adventure-the-fourth-the-endless-nigh/4000-113612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299486/","id":299486,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-metal-men-archives-1-volume-1/4000-299486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166500/","id":166500,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/fables-arabian-nights-and-days-1-volume-7/4000-166500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117320/","id":117320,"name":"Sacrifices Must Be Made","site_detail_url":"https://comicvine.gamespot.com/spider-girl-98-sacrifices-must-be-made/4000-117320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573681/","id":573681,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-52/4000-573681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108577/","id":108577,"name":"Dead A Long Time Part Five","site_detail_url":"https://comicvine.gamespot.com/x-statix-presents-dead-girl-5-dead-a-long-time-par/4000-108577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106183/","id":106183,"name":"How Spider-Man Learned to Stop Worrying and Learned to Love the Arms!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-15-how-spider-man-lea/4000-106183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107245/","id":107245,"name":"Civil Union","site_detail_url":"https://comicvine.gamespot.com/she-hulk-8-civil-union/4000-107245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171951/","id":171951,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/daily-bugle-0-civil-war/4000-171951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187097/","id":187097,"name":"Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet-1-infinity-gauntlet/4000-187097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716049/","id":716049,"name":"Friend of Foe!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-136-friend-of-fo/4000-716049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259704/","id":259704,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/the-best-of-spider-man-5-volume-five/4000-259704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120391/","id":120391,"name":"Yours, Mind, and Ours","site_detail_url":"https://comicvine.gamespot.com/nightwing-120-yours-mind-and-ours/4000-120391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135754/","id":135754,"name":"…The Living Must Answer!","site_detail_url":"https://comicvine.gamespot.com/jsa-85-the-living-must-answer/4000-135754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142746/","id":142746,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-classic-x-men-2-volume-2/4000-142746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150576/","id":150576,"name":"Underworld (Part 4)","site_detail_url":"https://comicvine.gamespot.com/underworld-4-underworld-part-4/4000-150576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107958/","id":107958,"name":"Embedded, Part 2 / The Accused, Part 2 / The Program","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-2-embedded-part-2-the-accused/4000-107958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106844/","id":106844,"name":"Embedded, Part 1 / The Accused, Part 1","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-1-embedded-part-1-the-accused/4000-106844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113593/","id":113593,"name":"Morbius: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-95-morbius-part-1/4000-113593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108531/","id":108531,"name":"Feral, Part 4: The Beasts Within","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-26-feral-part-4-the-bea/4000-108531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106339/","id":106339,"name":"Born in Blood, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-2-born-in-blood-pt-2/4000-106339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106974/","id":106974,"name":"Vendetta","site_detail_url":"https://comicvine.gamespot.com/wolverine-42-vendetta/4000-106974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108690/","id":108690,"name":"Frightful: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-30-frightful-part-1/4000-108690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174257/","id":174257,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/decimation-generation-m-1-tpb/4000-174257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108311/","id":108311,"name":"Execute Program, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-8-execute-program-part-2/4000-108311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108172/","id":108172,"name":"Brood & Cru!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-3-brood-cru/4000-108172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110528/","id":110528,"name":"Bride Of The Panther, Part 3","site_detail_url":"https://comicvine.gamespot.com/black-panther-16-bride-of-the-panther-part-3/4000-110528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141472/","id":141472,"name":"Body of A Journalist, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-7-body-of-a-journalist-part-2/4000-141472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105381/","id":105381,"name":"Jumping The Tracks 1/3","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-8-jumping-the-tra/4000-105381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114320/","id":114320,"name":"Heroes and Villains and Bride of the Lizard","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-15-heroes-and-villains-and-br/4000-114320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106955/","id":106955,"name":"Dis Man, Dis Monster, Disarmed!","site_detail_url":"https://comicvine.gamespot.com/the-thing-7-dis-man-dis-monster-disarmed/4000-106955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106251/","id":106251,"name":"Rush","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-102-rush/4000-106251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105525/","id":105525,"name":"Things Turn Ugly","site_detail_url":"https://comicvine.gamespot.com/civil-war-1-things-turn-ugly/4000-105525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108482/","id":108482,"name":"The War at Home, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-532-the-war-at-home-part-1/4000-108482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202240/","id":202240,"name":"Infinite Crisis","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-1-infinite-crisis/4000-202240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134183/","id":134183,"name":"America Strikes Back","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-11-america-strikes-back/4000-134183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218556/","id":218556,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-kingdom-come-1-hc/4000-218556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283857/","id":283857,"name":"Oggi, domani e ieri","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-23-oggi-domani-e-ieri/4000-283857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293437/","id":293437,"name":"Liberality For All, Part 3","site_detail_url":"https://comicvine.gamespot.com/liberality-for-all-3-liberality-for-all-part-3/4000-293437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106096/","id":106096,"name":"Two Meetings, One in Person, One Not","site_detail_url":"https://comicvine.gamespot.com/x-factor-7-two-meetings-one-in-person-one-not/4000-106096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111681/","id":111681,"name":"March to War: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-20-march-to-war-conclusion/4000-111681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107100/","id":107100,"name":"Lessons In Nuclear Physics","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-8-lessons-in-nuclear-physi/4000-107100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115539/","id":115539,"name":"Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-5-part-5-of-5/4000-115539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122451/","id":122451,"name":"The Sentry, Act Eight","site_detail_url":"https://comicvine.gamespot.com/sentry-8-the-sentry-act-eight/4000-122451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134176/","id":134176,"name":"The Super Hero's Apprentice, Part 1: Fallout","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-29-the-super-heros-apprentice-par/4000-134176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171668/","id":171668,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-right-of-power-1-volume-3/4000-171668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184655/","id":184655,"name":"Rise (part 3)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-11-rise-part-3/4000-184655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111540/","id":111540,"name":"Old School Part III","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness-7-old-school-part-iii/4000-111540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117319/","id":117319,"name":"I'm Back!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-97-im-back/4000-117319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298177/","id":298177,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-3/4000-298177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573680/","id":573680,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-51/4000-573680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108576/","id":108576,"name":"Dead A Long Time Part Four","site_detail_url":"https://comicvine.gamespot.com/x-statix-presents-dead-girl-4-dead-a-long-time-par/4000-108576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472385/","id":472385,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-7/4000-472385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217491/","id":217491,"name":"Earth X","site_detail_url":"https://comicvine.gamespot.com/earth-x-1-earth-x/4000-217491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107243/","id":107243,"name":"Beaus and Eros, Part 2: Change Of Heart","site_detail_url":"https://comicvine.gamespot.com/she-hulk-7-beaus-and-eros-part-2-change-of-heart/4000-107243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716048/","id":716048,"name":"Big Trouble","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-135-big-trouble/4000-716048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186078/","id":186078,"name":"Black Panther: Bad Mutha","site_detail_url":"https://comicvine.gamespot.com/black-panther-bad-mutha-1-black-panther-bad-mutha/4000-186078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389700/","id":389700,"name":"Marvel Knights 4: Resurrection of Nicholas Scratch","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-resurrection-of-nicholas-scratch-/4000-389700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125384/","id":125384,"name":"Body of A Journalist, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-6-body-of-a-journalist-part-1/4000-125384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120390/","id":120390,"name":"Pleased to Meet You -- Hope you Guess My Name","site_detail_url":"https://comicvine.gamespot.com/nightwing-119-pleased-to-meet-you-hope-you-guess-m/4000-120390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135752/","id":135752,"name":"When the Dead call","site_detail_url":"https://comicvine.gamespot.com/jsa-84-when-the-dead-call/4000-135752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106582/","id":106582,"name":"Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/new-avengers-annual-1-happily-ever-after/4000-106582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150575/","id":150575,"name":"Underworld (Part 3)","site_detail_url":"https://comicvine.gamespot.com/underworld-3-underworld-part-3/4000-150575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113518/","id":113518,"name":"Mr. Parker Goes To Washington, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-531-mr-parker-goes-to-washi/4000-113518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105348/","id":105348,"name":"Clan-Building","site_detail_url":"https://comicvine.gamespot.com/gargoyles-1-clan-building/4000-105348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111176/","id":111176,"name":"The New Teen Titans Part 2","site_detail_url":"https://comicvine.gamespot.com/teen-titans-35-the-new-teen-titans-part-2/4000-111176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106728/","id":106728,"name":"Feral, Part 3: Hunter's Moon","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-25-feral-part-3-hunters/4000-106728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106195/","id":106195,"name":"The Collective, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-18-the-collective-pt-2/4000-106195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108247/","id":108247,"name":"Execute Program, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-7-execute-program-part-1/4000-108247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108171/","id":108171,"name":"Invasion!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-2-invasion/4000-108171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169227/","id":169227,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/dmz-on-the-ground-1-volume-1/4000-169227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106954/","id":106954,"name":"...There Goes The Neighborhood!","site_detail_url":"https://comicvine.gamespot.com/the-thing-6-there-goes-the-neighborhood/4000-106954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113304/","id":113304,"name":"Old Habits, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-98-old-habits-part-2/4000-113304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106380/","id":106380,"name":"The Bottom, Chapter 1: The Fun Stuff","site_detail_url":"https://comicvine.gamespot.com/moon-knight-1-the-bottom-chapter-1-the-fun-stuff/4000-106380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142095/","id":142095,"name":"Giant-Sized Thing, Vol 1","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-giant-sized-thing-1-giant-size/4000-142095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231216/","id":231216,"name":"Power Girl","site_detail_url":"https://comicvine.gamespot.com/power-girl-1-power-girl/4000-231216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133313/","id":133313,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-frightful-1-volume-6/4000-133313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108677/","id":108677,"name":"President Thor: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-29-president-thor-part-3/4000-108677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318772/","id":318772,"name":"\"Detectives dell'impossibile\" - Il potere del Vril","site_detail_url":"https://comicvine.gamespot.com/maxi-martin-mystere-3-detectives-dellimpossibile-i/4000-318772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129102/","id":129102,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/darkness-compendium-1-volume-1/4000-129102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111680/","id":111680,"name":"March to War: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/ex-machina-19-march-to-war-chapter-3/4000-111680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105880/","id":105880,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-4/4000-105880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106095/","id":106095,"name":"The Butterfly Defect","site_detail_url":"https://comicvine.gamespot.com/x-factor-6-the-butterfly-defect/4000-106095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130607/","id":130607,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-33/4000-130607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223084/","id":223084,"name":"Wonder Woman: Destiny Calling","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-destiny-calling-1-wonder-woman-destin/4000-223084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111668/","id":111668,"name":"Life and Death, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/ex-machina-special-1-life-and-death-part-1-of-2/4000-111668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107099/","id":107099,"name":"Who Says The World Needs Saving?","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-7-who-says-the-world-needs/4000-107099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115538/","id":115538,"name":"Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-4-part-4-of-5/4000-115538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106242/","id":106242,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-the-198-3-part-3/4000-106242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159841/","id":159841,"name":"The Hunter Revealed","site_detail_url":"https://comicvine.gamespot.com/spider-man-arana-special-1-the-hunter-revealed/4000-159841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167686/","id":167686,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-1-volume-1/4000-167686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134175/","id":134175,"name":"Private Lives Public Faces","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-28-private-lives-public-faces/4000-134175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106773/","id":106773,"name":"League Of Losers, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-18-league-of-losers-part-4/4000-106773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107085/","id":107085,"name":"Beaus & Eros, Part 1: I'm With Cupid","site_detail_url":"https://comicvine.gamespot.com/she-hulk-6-beaus-eros-part-1-im-with-cupid/4000-107085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124929/","id":124929,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/the-five-fists-of-science-1-gn/4000-124929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106024/","id":106024,"name":"Part 5; What Emma Doesn't Know","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-5-part-5-what-emma-doesnt-kno/4000-106024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232248/","id":232248,"name":"Volume Ten","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-10-volume-te/4000-232248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290333/","id":290333,"name":"","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-2/4000-290333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117318/","id":117318,"name":"Shadows From The Past!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-96-shadows-from-the-past/4000-117318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298176/","id":298176,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-2/4000-298176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573679/","id":573679,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-50/4000-573679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285426/","id":285426,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-36/4000-285426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108575/","id":108575,"name":"Dead A Long Time Part Three","site_detail_url":"https://comicvine.gamespot.com/x-statix-presents-dead-girl-3-dead-a-long-time-par/4000-108575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716044/","id":716044,"name":"Sentinel at Liberty","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-134-sentinel-at-/4000-716044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347368/","id":347368,"name":"First Kiss/Last Date","site_detail_url":"https://comicvine.gamespot.com/i-heart-marvel-masked-intentions-1-first-kisslast-/4000-347368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105803/","id":105803,"name":"New World Order; The History of the DC Universe, Part Two","site_detail_url":"https://comicvine.gamespot.com/52-3-new-world-order-the-history-of-the-dc-univers/4000-105803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186467/","id":186467,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/decimation-x-men-the-day-after-1-tpb/4000-186467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167632/","id":167632,"name":"Megan and Gloria, Apartment 5A","site_detail_url":"https://comicvine.gamespot.com/local-6-megan-and-gloria-apartment-5a/4000-167632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237649/","id":237649,"name":"Silver Sable","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-silver-sable-1-silver-sable/4000-237649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120311/","id":120311,"name":"Gang's all Here","site_detail_url":"https://comicvine.gamespot.com/nightwing-118-gangs-all-here/4000-120311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135751/","id":135751,"name":"Who's Afraid of Ghosts?","site_detail_url":"https://comicvine.gamespot.com/jsa-83-whos-afraid-of-ghosts/4000-135751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120297/","id":120297,"name":"Crosstown","site_detail_url":"https://comicvine.gamespot.com/dmz-5-crosstown/4000-120297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150574/","id":150574,"name":"Underworld (Part 2)","site_detail_url":"https://comicvine.gamespot.com/underworld-2-underworld-part-2/4000-150574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106337/","id":106337,"name":"Generation M, part 5","site_detail_url":"https://comicvine.gamespot.com/generation-m-5-generation-m-part-5/4000-106337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108475/","id":108475,"name":"The Hammer Falls, Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-536-the-hammer-falls-part-1/4000-108475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159020/","id":159020,"name":"The Fall & Rise of Vandal Savage, Part One","site_detail_url":"https://comicvine.gamespot.com/jsa-classified-10-the-fall-rise-of-vandal-savage-p/4000-159020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109187/","id":109187,"name":"Deadpool: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-91-deadpool-part-1/4000-109187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106696/","id":106696,"name":"Feral, Part 2: Cat Scratch Fever","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-24-feral-part-2-cat-scr/4000-106696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106193/","id":106193,"name":"Wand'ring Star Part 2: Gal on the Run!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-470-wandring-star-part-2-gal-on-/4000-106193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132709/","id":132709,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-black-cat-the-evil-that-men-do-/4000-132709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105338/","id":105338,"name":"Best Of The Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-1-best-of-the-best/4000-105338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107855/","id":107855,"name":"Bride Of The Panther, Part 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-14-bride-of-the-panther-part-1/4000-107855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106953/","id":106953,"name":"Give Till It Hurts...","site_detail_url":"https://comicvine.gamespot.com/the-thing-5-give-till-it-hurts/4000-106953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113303/","id":113303,"name":"Old Habits, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-97-old-habits-part-1/4000-113303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113517/","id":113517,"name":"Mr. Parker Goes To Washington, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-530-mr-parker-goes-to-washi/4000-113517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227376/","id":227376,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez-2-volume-t/4000-227376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126732/","id":126732,"name":"The Dead of Winter Part 3","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-3-the-dead-of-winter-part-3/4000-126732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152090/","id":152090,"name":"Rise (Part 4)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-12-rise-part-4/4000-152090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133306/","id":133306,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-crossover-1-volume-5/4000-133306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107757/","id":107757,"name":"President Thor: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-28-president-thor-part-2/4000-107757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107163/","id":107163,"name":"Barracuda: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-31-barracuda-part-1/4000-107163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107486/","id":107486,"name":"Date Night, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-68-date-night-part-3/4000-107486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121861/","id":121861,"name":"The Ballad of Rodney and June (Part 2 of 2)","site_detail_url":"https://comicvine.gamespot.com/fables-47-the-ballad-of-rodney-and-june-part-2-of-/4000-121861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255911/","id":255911,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-3-vol-3/4000-255911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108875/","id":108875,"name":"Forever Flavored Man","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-mr-miracle-4-forever-flavored-man/4000-108875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108878/","id":108878,"name":"Bad Girls","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-bulleteer-4-bad-girls/4000-108878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118514/","id":118514,"name":"Never Say Janus","site_detail_url":"https://comicvine.gamespot.com/godland-11-never-say-janus/4000-118514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118031/","id":118031,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-planet-standing-1/4000-118031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427260/","id":427260,"name":"Een Echte Vitalko","site_detail_url":"https://comicvine.gamespot.com/kiekeboe-109-een-echte-vitalko/4000-427260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105879/","id":105879,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-3/4000-105879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106094/","id":106094,"name":"Captive Audience","site_detail_url":"https://comicvine.gamespot.com/x-factor-5-captive-audience/4000-106094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176550/","id":176550,"name":"The Scorpion","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-the-scorpion-1-the-scorpio/4000-176550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111679/","id":111679,"name":"March to War: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/ex-machina-18-march-to-war-chapter-2/4000-111679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107088/","id":107088,"name":"Origin, Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-4-origin-part-4/4000-107088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115537/","id":115537,"name":"Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-3-part-3-of-5/4000-115537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168644/","id":168644,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-1-volume-1/4000-168644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122444/","id":122444,"name":"The Sentry, Act Six","site_detail_url":"https://comicvine.gamespot.com/sentry-6-the-sentry-act-six/4000-122444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131981/","id":131981,"name":"The Resurrection Of Nicholas Scratch Part 3: Threshold of Revelations","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-27-the-resurrection-of-nicholas-s/4000-131981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106790/","id":106790,"name":"League Of Losers, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-17-league-of-losers-part-3/4000-106790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191690/","id":191690,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-1-book-1/4000-191690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221795/","id":221795,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/runaways-escape-to-new-york-1-volume-5/4000-221795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105971/","id":105971,"name":"Part 4; Kid Vulcan","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-4-part-4-kid-vulcan/4000-105971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108580/","id":108580,"name":"Two Of A Kind","site_detail_url":"https://comicvine.gamespot.com/punisher-vs-bullseye-4-two-of-a-kind/4000-108580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113609/","id":113609,"name":"Adventure the Second: The Orgone Invasion","site_detail_url":"https://comicvine.gamespot.com/doc-samson-2-adventure-the-second-the-orgone-invas/4000-113609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106544/","id":106544,"name":"Sleep, Walker: Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/100-bullets-69-sleep-walker-part-two-of-two/4000-106544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290332/","id":290332,"name":"","site_detail_url":"https://comicvine.gamespot.com/jovenes-vengadores-1/4000-290332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298175/","id":298175,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-1/4000-298175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117317/","id":117317,"name":"And You Don't Mess Around With Jim!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-95-and-you-dont-mess-around-with-jim/4000-117317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573678/","id":573678,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-49/4000-573678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285425/","id":285425,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-35/4000-285425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108551/","id":108551,"name":"Dead A Long Time Part Two","site_detail_url":"https://comicvine.gamespot.com/x-statix-presents-dead-girl-2-dead-a-long-time-par/4000-108551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187116/","id":187116,"name":"Infinity War","site_detail_url":"https://comicvine.gamespot.com/infinity-war-1-infinity-war/4000-187116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107082/","id":107082,"name":"New Kid In Town","site_detail_url":"https://comicvine.gamespot.com/she-hulk-5-new-kid-in-town/4000-107082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147981/","id":147981,"name":"Volume Fifteen","site_detail_url":"https://comicvine.gamespot.com/battle-royale-15-volume-fifteen/4000-147981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106336/","id":106336,"name":"Generation M, part 4","site_detail_url":"https://comicvine.gamespot.com/generation-m-4-generation-m-part-4/4000-106336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120295/","id":120295,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/dmz-4-ghosts/4000-120295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150573/","id":150573,"name":"Underworld (Part 1)","site_detail_url":"https://comicvine.gamespot.com/underworld-1-underworld-part-1/4000-150573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152573/","id":152573,"name":"Sidekicks","site_detail_url":"https://comicvine.gamespot.com/young-avengers-1-sidekicks/4000-152573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122050/","id":122050,"name":"Faith","site_detail_url":"https://comicvine.gamespot.com/infinite-crisis-5-faith/4000-122050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113592/","id":113592,"name":"Silver Sable: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-90-silver-sable-part-5/4000-113592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106921/","id":106921,"name":"Mr. Parker Goes To Washington, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-529-mr-parker-goes-to-washi/4000-106921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151582/","id":151582,"name":"To Be This Monster","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-535-to-be-this-monster/4000-151582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106329/","id":106329,"name":"The Whole Hole","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-18-the-whole-hole/4000-106329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106888/","id":106888,"name":"Paws & Fast Forward","site_detail_url":"https://comicvine.gamespot.com/the-thing-4-paws-fast-forward/4000-106888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113302/","id":113302,"name":"True Confessions","site_detail_url":"https://comicvine.gamespot.com/witchblade-96-true-confessions/4000-113302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107193/","id":107193,"name":"The Slavers: Part 6","site_detail_url":"https://comicvine.gamespot.com/the-punisher-30-the-slavers-part-6/4000-107193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189818/","id":189818,"name":"Bloody Valentine","site_detail_url":"https://comicvine.gamespot.com/punisher-bloody-valentine-1-bloody-valentine/4000-189818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107756/","id":107756,"name":"President Thor: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-27-president-thor-part-1/4000-107756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280825/","id":280825,"name":"Il pavone dell'Imperatore","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-284-il-pavone-dellimperatore/4000-280825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108685/","id":108685,"name":"The Rings Of Fate Part Two: Trial By Fire","site_detail_url":"https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-2-the-rings-of-fa/4000-108685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212570/","id":212570,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellblazer-papa-midnite-1-tpb/4000-212570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118513/","id":118513,"name":"The March of Ides","site_detail_url":"https://comicvine.gamespot.com/godland-10-the-march-of-ides/4000-118513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105380/","id":105380,"name":"Web Log","site_detail_url":"https://comicvine.gamespot.com/friendly-neighborhood-spider-man-5-web-log/4000-105380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108877/","id":108877,"name":"21st Century Schizoid Supermen","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-bulleteer-3-21st-century-schizoid-s/4000-108877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106729/","id":106729,"name":"Feral, Part 1: Cold Blooded","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-23-feral-part-1-cold-bl/4000-106729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105878/","id":105878,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-2/4000-105878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106093/","id":106093,"name":"Lines in the sand","site_detail_url":"https://comicvine.gamespot.com/x-factor-4-lines-in-the-sand/4000-106093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107690/","id":107690,"name":"Wonder Woman and Superman - Friends or Foes?","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-226-wonder-woman-and-superman-friends/4000-107690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107485/","id":107485,"name":"Date Night, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-67-date-night-part-2/4000-107485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148992/","id":148992,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-coat-a-call-to-arms-1/4000-148992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115536/","id":115536,"name":"Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-2-part-2-of-5/4000-115536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106370/","id":106370,"name":"Gene Pool","site_detail_url":"https://comicvine.gamespot.com/son-of-m-2-gene-pool/4000-106370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120327/","id":120327,"name":"One In Four","site_detail_url":"https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-6-one-in-/4000-120327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122450/","id":122450,"name":"The Sentry, Act Five","site_detail_url":"https://comicvine.gamespot.com/sentry-5-the-sentry-act-five/4000-122450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131980/","id":131980,"name":"The Resurrection Of Nicholas Scratch, Part 2: Doctor's Order\"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-26-the-resurrection-of-nicholas-s/4000-131980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106804/","id":106804,"name":"League Of Losers, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-16-league-of-losers-part-2/4000-106804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113301/","id":113301,"name":"Artifacts, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-95-artifacts-part-2/4000-113301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113516/","id":113516,"name":"The Other - Evolve Or Die, Part 12 of 12: Post Mortem","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-528-the-other-evolve-or-die/4000-113516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223857/","id":223857,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/arana-night-of-the-hunter-1-volume-3/4000-223857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120891/","id":120891,"name":"Part 3; Sway","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-3-part-3-sway/4000-120891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108579/","id":108579,"name":"Massacre On 34th Street","site_detail_url":"https://comicvine.gamespot.com/punisher-vs-bullseye-3-massacre-on-34th-street/4000-108579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133204/","id":133204,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/she-hulk-time-trials-1-volume-3/4000-133204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108538/","id":108538,"name":"Dead A Long Time Part One","site_detail_url":"https://comicvine.gamespot.com/x-statix-presents-dead-girl-1-dead-a-long-time-par/4000-108538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113602/","id":113602,"name":"Adventure the First: Grievous Angel","site_detail_url":"https://comicvine.gamespot.com/doc-samson-1-adventure-the-first-grievous-angel/4000-113602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107081/","id":107081,"name":"Back To Bone","site_detail_url":"https://comicvine.gamespot.com/she-hulk-4-back-to-bone/4000-107081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106543/","id":106543,"name":"Sleep, Walker: Part One of Two","site_detail_url":"https://comicvine.gamespot.com/100-bullets-68-sleep-walker-part-one-of-two/4000-106543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298174/","id":298174,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-47/4000-298174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573677/","id":573677,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-48/4000-573677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127229/","id":127229,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-the-tyger-1/4000-127229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285424/","id":285424,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-34/4000-285424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716043/","id":716043,"name":"Metal Mayhem!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-131-metal-mayhem/4000-716043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165012/","id":165012,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier-1-book-one/4000-165012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279280/","id":279280,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jack-kirby-2-volume-two/4000-279280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267962/","id":267962,"name":"Who Is The Black Panther","site_detail_url":"https://comicvine.gamespot.com/black-panther-who-is-the-black-panther-1-who-is-th/4000-267962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155295/","id":155295,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-moon-knight-1-volume-1/4000-155295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200198/","id":200198,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-house-of-m-1-tpb/4000-200198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715378/","id":715378,"name":"Dark Domain","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-130-dark-domain/4000-715378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105765/","id":105765,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-1/4000-105765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106061/","id":106061,"name":"East Coast/West Coast, Part 4","site_detail_url":"https://comicvine.gamespot.com/runaways-12-east-coastwest-coast-part-4/4000-106061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120294/","id":120294,"name":"On the Ground, Conclusion","site_detail_url":"https://comicvine.gamespot.com/dmz-3-on-the-ground-conclusion/4000-120294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106335/","id":106335,"name":"Generation M, part 3","site_detail_url":"https://comicvine.gamespot.com/generation-m-3-generation-m-part-3/4000-106335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108318/","id":108318,"name":"Secrets & Lies, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-15-secrets-lies-pt-2/4000-108318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151580/","id":151580,"name":"Shadow Boxing","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-534-shadow-boxing/4000-151580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106328/","id":106328,"name":"Bad Blood","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-17-bad-blood/4000-106328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114318/","id":114318,"name":"Dinner at MacArthur's Cafe and 24 Hour Bug","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-13-dinner-at-macarthurs-cafe-/4000-114318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106868/","id":106868,"name":"Fun 'N' Games, Part 3: Playing For Keeps","site_detail_url":"https://comicvine.gamespot.com/the-thing-3-fun-n-games-part-3-playing-for-keeps/4000-106868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134190/","id":134190,"name":"Axis of Evil","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-10-axis-of-evil/4000-134190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107484/","id":107484,"name":"Date Night, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-66-date-night-part-1/4000-107484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235669/","id":235669,"name":"House of M: World of M Featuring Wolverine","site_detail_url":"https://comicvine.gamespot.com/house-of-m-world-of-m-featuring-wolverine-1-house-/4000-235669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186528/","id":186528,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m-1-volume-4/4000-186528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126730/","id":126730,"name":"The Dead of Winter Part 2","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-2-the-dead-of-winter-part-2/4000-126730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204764/","id":204764,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-murdock-papers-1-volume-13/4000-204764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152088/","id":152088,"name":"Rise (Part 2)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-10-rise-part-2/4000-152088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268660/","id":268660,"name":"","site_detail_url":"https://comicvine.gamespot.com/jsa-black-vengeance-1/4000-268660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111666/","id":111666,"name":"Ultimate X4, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x4-2-ultimate-x4-part-2-of-2/4000-111666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122705/","id":122705,"name":"Arabian Nights (and Days), Chapter Four: Act Of War","site_detail_url":"https://comicvine.gamespot.com/fables-45-arabian-nights-and-days-chapter-four-act/4000-122705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108615/","id":108615,"name":"The Rings Of Fate Part One: Blow By Blow","site_detail_url":"https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate-1-the-rings-of-fa/4000-108615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108874/","id":108874,"name":"Radio Bedlam","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-mr-miracle-3-radio-bedlam/4000-108874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111499/","id":111499,"name":"A (Bull) Wrinkle In Time","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-21-a-bull-wrinkle-in-time/4000-111499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118512/","id":118512,"name":"Funky Buster Round","site_detail_url":"https://comicvine.gamespot.com/godland-9-funky-buster-round/4000-118512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275766/","id":275766,"name":"Anthem","site_detail_url":"https://comicvine.gamespot.com/anthem-1-anthem/4000-275766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111678/","id":111678,"name":"March to War: Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ex-machina-17-march-to-war-chapter-1/4000-111678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107064/","id":107064,"name":"","site_detail_url":"https://comicvine.gamespot.com/hellboy-makoma-or-a-tale-told-by-a-mummy-in-the-ne/4000-107064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151092/","id":151092,"name":"The Prodigal Son","site_detail_url":"https://comicvine.gamespot.com/supreme-power-hyperion-5-the-prodigal-son/4000-151092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106092/","id":106092,"name":"The Big Bang","site_detail_url":"https://comicvine.gamespot.com/x-factor-3-the-big-bang/4000-106092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107689/","id":107689,"name":"Nothing Finished, Only Abandoned","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-225-nothing-finished-only-abandoned/4000-107689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113591/","id":113591,"name":"Silver Sable: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-89-silver-sable-part-4/4000-113591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143052/","id":143052,"name":"The Ninth Age of Magic","site_detail_url":"https://comicvine.gamespot.com/day-of-vengeance-infinite-crisis-special-1-the-nin/4000-143052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265715/","id":265715,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/invincible-ultimate-collection-2-volume-2/4000-265715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472382/","id":472382,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-4/4000-472382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111429/","id":111429,"name":"The Murdock Papers: Part Six","site_detail_url":"https://comicvine.gamespot.com/daredevil-81-the-murdock-papers-part-six/4000-111429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115533/","id":115533,"name":"Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-1-part-1-of-5/4000-115533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106360/","id":106360,"name":"One Day In The Life Of Pietro Maximoff... Homo Sapiens","site_detail_url":"https://comicvine.gamespot.com/son-of-m-1-one-day-in-the-life-of-pietro-maximoff-/4000-106360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113515/","id":113515,"name":"The Other - Evolve Or Die, Part 9 of 12: Evolution","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-527-the-other-evolve-or-die/4000-113515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103301/","id":103301,"name":"Trickle Down","site_detail_url":"https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-5-trickle/4000-103301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77956/","id":77956,"name":"A Study In Scarlet","site_detail_url":"https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-4-a-study/4000-77956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122448/","id":122448,"name":"TheSentry, Act Four: The Truth","site_detail_url":"https://comicvine.gamespot.com/sentry-4-thesentry-act-four-the-truth/4000-122448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131979/","id":131979,"name":"The Resurrection Of Nicholas Scratch, Part 1: Omens And Portents","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-25-the-resurrection-of-nicholas-s/4000-131979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181638/","id":181638,"name":"My Dinner With Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-special-1-my-dinner-with-doom/4000-181638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186079/","id":186079,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-silent-night-1/4000-186079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106826/","id":106826,"name":"League Of Losers, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-15-league-of-losers-part-1/4000-106826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113300/","id":113300,"name":"Artifacts, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-94-artifacts-part-1/4000-113300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120882/","id":120882,"name":"Part 2; Darwin","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-2-part-2-darwin/4000-120882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108578/","id":108578,"name":"The Drop","site_detail_url":"https://comicvine.gamespot.com/punisher-vs-bullseye-2-the-drop/4000-108578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350225/","id":350225,"name":"","site_detail_url":"https://comicvine.gamespot.com/daughters-of-the-dragon-deadly-hands-special-1/4000-350225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106149/","id":106149,"name":"","site_detail_url":"https://comicvine.gamespot.com/arana-heart-of-the-spider-12/4000-106149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298173/","id":298173,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-46/4000-298173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117284/","id":117284,"name":"Something Osborn This Way Comes!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-93-something-osborn-this-way-comes/4000-117284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103899/","id":103899,"name":"Morningstar, Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/lucifer-69-morningstar-part-6-of-6/4000-103899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150311/","id":150311,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-iron-man-2-volume-2/4000-150311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185472/","id":185472,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-black-panther-wild-kingdom-1-tpb/4000-185472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187290/","id":187290,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-above-and-beyond-1-tpb/4000-187290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716042/","id":716042,"name":"Gods and Monsters","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-129-gods-and-mon/4000-716042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279415/","id":279415,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-roy-thomas-1-hctpb/4000-279415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106060/","id":106060,"name":"East Coast/West Coast, Part 3","site_detail_url":"https://comicvine.gamespot.com/runaways-11-east-coastwest-coast-part-3/4000-106060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111757/","id":111757,"name":"Tomb of Namor: Part 3; Visions, Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-26-tomb-of-namor-part-3-vi/4000-111757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106334/","id":106334,"name":"Generation M, part 2","site_detail_url":"https://comicvine.gamespot.com/generation-m-2-generation-m-part-2/4000-106334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108317/","id":108317,"name":"Secrets & Lies, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-14-secrets-lies-pt-1/4000-108317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126182/","id":126182,"name":"Two The Hard Way, Part 2: Indecent Proposal","site_detail_url":"https://comicvine.gamespot.com/black-panther-11-two-the-hard-way-part-2-indecent-/4000-126182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106326/","id":106326,"name":"Supreme Power","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-16-supreme-power/4000-106326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186473/","id":186473,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-means-and-ends-1-tpb/4000-186473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106852/","id":106852,"name":"Fun 'N' Games, Part 2: Abusement Park","site_detail_url":"https://comicvine.gamespot.com/the-thing-2-fun-n-games-part-2-abusement-park/4000-106852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113299/","id":113299,"name":"Reflections","site_detail_url":"https://comicvine.gamespot.com/witchblade-93-reflections/4000-113299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107187/","id":107187,"name":"The Slavers: Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-28-the-slavers-part-4/4000-107187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202218/","id":202218,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m-1-house-of-m/4000-202218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132605/","id":132605,"name":"The Sentry","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-sentry-1-the-sentry/4000-132605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152087/","id":152087,"name":"Rise (Part 1)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-9-rise-part-1/4000-152087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124044/","id":124044,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-5/4000-124044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284418/","id":284418,"name":"Il Re Rosso","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-gigante-11-il-re-rosso/4000-284418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122657/","id":122657,"name":"Arabian Nights (and Days), Chapter Three: Back to Baghdad","site_detail_url":"https://comicvine.gamespot.com/fables-44-arabian-nights-and-days-chapter-three-ba/4000-122657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118511/","id":118511,"name":"Origin of the Universe","site_detail_url":"https://comicvine.gamespot.com/godland-8-origin-of-the-universe/4000-118511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107028/","id":107028,"name":"","site_detail_url":"https://comicvine.gamespot.com/hellboy-makoma-or-a-tale-told-by-a-mummy-in-the-ne/4000-107028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108873/","id":108873,"name":"Drive by Derby","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-mr-miracle-2-drive-by-derby/4000-108873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108876/","id":108876,"name":"Who Killed Seven Soldiers?","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-bulleteer-2-who-killed-seven-soldie/4000-108876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107080/","id":107080,"name":"Time Of Her Life","site_detail_url":"https://comicvine.gamespot.com/she-hulk-3-time-of-her-life/4000-107080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151091/","id":151091,"name":"Full Circle","site_detail_url":"https://comicvine.gamespot.com/supreme-power-hyperion-4-full-circle/4000-151091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106091/","id":106091,"name":"Star Power","site_detail_url":"https://comicvine.gamespot.com/x-factor-2-star-power/4000-106091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113590/","id":113590,"name":"Silver Sable: Part 3; Visions, Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-88-silver-sable-part-3-visions/4000-113590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132360/","id":132360,"name":"The Books of Doom, Book 2","site_detail_url":"https://comicvine.gamespot.com/books-of-doom-2-the-books-of-doom-book-2/4000-132360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120293/","id":120293,"name":"On the Ground, Part 2","site_detail_url":"https://comicvine.gamespot.com/dmz-2-on-the-ground-part-2/4000-120293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268758/","id":268758,"name":"Sunset Part 1: Blood Opera Overture","site_detail_url":"https://comicvine.gamespot.com/killer7-1-sunset-part-1-blood-opera-overture/4000-268758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109935/","id":109935,"name":"Empowered","site_detail_url":"https://comicvine.gamespot.com/captain-universe-invisible-woman-1-empowered/4000-109935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109936/","id":109936,"name":"Sensory Overload","site_detail_url":"https://comicvine.gamespot.com/captain-universe-daredevil-1-sensory-overload/4000-109936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109911/","id":109911,"name":"Secrets and Origins","site_detail_url":"https://comicvine.gamespot.com/captain-universe-hulk-1-secrets-and-origins/4000-109911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150131/","id":150131,"name":"The Second Chance...","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-6-the-second-chance/4000-150131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122445/","id":122445,"name":"The Sentry, Act Three","site_detail_url":"https://comicvine.gamespot.com/sentry-3-the-sentry-act-three/4000-122445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131978/","id":131978,"name":"Impossible Things Happen Every Day, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-24-impossible-things-happen-every/4000-131978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150718/","id":150718,"name":"The Life Fantastic; Bedlam at the Baxter Building!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-wedding-special-1-the-life-fant/4000-150718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120889/","id":120889,"name":"Spider-Man Meets Invincible","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-14-spider-man-meets-invincible/4000-120889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113514/","id":113514,"name":"The Other - Evolve Or Die, Part 6 of 12: Reckoning","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-526-the-other-evolve-or-die/4000-113514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120892/","id":120892,"name":"Part 1; Petra","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-1-part-1-petra/4000-120892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258530/","id":258530,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-impossible-things-happen-every-da/4000-258530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259825/","id":259825,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-j-michael-straczynski-1-hctpb/4000-259825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108539/","id":108539,"name":"The Man's Got Style","site_detail_url":"https://comicvine.gamespot.com/punisher-vs-bullseye-1-the-mans-got-style/4000-108539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117283/","id":117283,"name":"The Means!; Franklin Richards, Son of a Genius in: Weather or Not","site_detail_url":"https://comicvine.gamespot.com/spider-girl-92-the-means-franklin-richards-son-of-/4000-117283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184560/","id":184560,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/weapon-x-days-of-future-now-5-part-5/4000-184560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166264/","id":166264,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-silver-sable-1-tpb/4000-166264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131206/","id":131206,"name":"","site_detail_url":"https://comicvine.gamespot.com/pact-4/4000-131206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298172/","id":298172,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-45/4000-298172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109938/","id":109938,"name":"Insatiable","site_detail_url":"https://comicvine.gamespot.com/captain-universesilver-surfer-1-insatiable/4000-109938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573675/","id":573675,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-46/4000-573675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716041/","id":716041,"name":"The Mephisto Element","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-128-the-mephisto/4000-716041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107079/","id":107079,"name":"Cause And Effect","site_detail_url":"https://comicvine.gamespot.com/she-hulk-2-cause-and-effect/4000-107079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222785/","id":222785,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-annuals-1-volume-one/4000-222785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229438/","id":229438,"name":"","site_detail_url":"https://comicvine.gamespot.com/michael-turners-soulfire-volume-1-1/4000-229438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255908/","id":255908,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-1/4000-255908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716040/","id":716040,"name":"Snatched!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-127-snatched/4000-716040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106059/","id":106059,"name":"East Coast/West Coast, Part 2","site_detail_url":"https://comicvine.gamespot.com/runaways-10-east-coastwest-coast-part-2/4000-106059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134189/","id":134189,"name":"Grand Theft America","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-9-grand-theft-america/4000-134189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140997/","id":140997,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-2-volume-2/4000-140997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140999/","id":140999,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-3-volume-3/4000-140999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145360/","id":145360,"name":"Collecting Amazing Spider-Man 529-532","site_detail_url":"https://comicvine.gamespot.com/civil-war-amazing-spider-man-decisions-1-collectin/4000-145360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109937/","id":109937,"name":"Double Threat","site_detail_url":"https://comicvine.gamespot.com/captain-universe-x-23-1-double-threat/4000-109937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106303/","id":106303,"name":"Generation M, part 1","site_detail_url":"https://comicvine.gamespot.com/generation-m-1-generation-m-part-1/4000-106303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115308/","id":115308,"name":"The Winter Soldier, Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-13-the-winter-soldier-part-5/4000-115308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151579/","id":151579,"name":"What Happens In Vegas, Stays in Vegas","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-533-what-happens-in-vegas-stays-in-/4000-151579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106215/","id":106215,"name":"","site_detail_url":"https://comicvine.gamespot.com/decimation-house-of-m-the-day-after-1/4000-106215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119676/","id":119676,"name":"End of Greys","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-new-age-4-end-of-greys/4000-119676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131196/","id":131196,"name":"Sign of the Beast; Acts Of Vengeance","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-wolverine-4-sign-of-the-bea/4000-131196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108316/","id":108316,"name":"Ronin, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-13-ronin-pt-3/4000-108316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126181/","id":126181,"name":"Two The Hard Way, Part 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-10-two-the-hard-way-part-1/4000-126181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106325/","id":106325,"name":"Does Anyone Remember The Squadron Sinister?","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-15-does-anyone-remember-the-squad/4000-106325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111369/","id":111369,"name":"Happy Birthday, Kurt !","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-12-happy-birthday-kurt/4000-111369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185343/","id":185343,"name":"The Dark Phoenix Saga","site_detail_url":"https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga-1-the-dark-phoenix-sag/4000-185343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106827/","id":106827,"name":"Fun 'N' Games, Part 1: Money Changes Everything","site_detail_url":"https://comicvine.gamespot.com/the-thing-1-fun-n-games-part-1-money-changes-every/4000-106827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107185/","id":107185,"name":"The Slavers: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-27-the-slavers-part-3/4000-107185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214876/","id":214876,"name":"Kitchen Irish","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-2-kitchen-irish/4000-214876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119634/","id":119634,"name":"The Dead of Winter Part 1","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-1-the-dead-of-winter-part-1/4000-119634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246195/","id":246195,"name":"King of the Monsters!","site_detail_url":"https://comicvine.gamespot.com/essential-godzilla-king-of-the-monsters-1-king-of-/4000-246195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250770/","id":250770,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/punisher-max-hardcover-2-volume-2/4000-250770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111756/","id":111756,"name":"Tomb of Namor: Part 2; Visions, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-25-tomb-of-namor-part-2-vi/4000-111756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228158/","id":228158,"name":"Man Of Stone","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-7-man-of-stone/4000-228158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216769/","id":216769,"name":"The Slavers","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-5-the-slavers/4000-216769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303146/","id":303146,"name":"Civil War #1","site_detail_url":"https://comicvine.gamespot.com/civil-war-directors-cut-1-civil-war-1/4000-303146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122656/","id":122656,"name":"Arabian Nights (and Days), Chapter Two: D'jinn & Tonic With a Twist","site_detail_url":"https://comicvine.gamespot.com/fables-43-arabian-nights-and-days-chapter-two-djin/4000-122656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293436/","id":293436,"name":"Liberality For All, Part 2","site_detail_url":"https://comicvine.gamespot.com/liberality-for-all-2-liberality-for-all-part-2/4000-293436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255910/","id":255910,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-2-vol-2/4000-255910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151344/","id":151344,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ocean-1-tpb/4000-151344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118508/","id":118508,"name":"Trial of the New Century","site_detail_url":"https://comicvine.gamespot.com/godland-6-trial-of-the-new-century/4000-118508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118510/","id":118510,"name":"Acid Rain Drops","site_detail_url":"https://comicvine.gamespot.com/godland-7-acid-rain-drops/4000-118510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365446/","id":365446,"name":"Vol. 1: Hello, Cosmic!","site_detail_url":"https://comicvine.gamespot.com/godland-1-vol-1-hello-cosmic/4000-365446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184278/","id":184278,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/essential-werewolf-by-night-2-vol-2/4000-184278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183796/","id":183796,"name":"The MoleMan's Christmas; Yes, Virginia, There is a Santron; Christmas Day in Manhattan","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-2005-the-molemans-christmas/4000-183796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211650/","id":211650,"name":"One Fish, Two Fish, Blowfish, Doomfish","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-3-one-fish-two-fish-blowfish-doomf/4000-211650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312701/","id":312701,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/alias-omnibus-1-hc/4000-312701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108707/","id":108707,"name":"Ballistic: How The Bulleteer Began","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-bulleteer-1-ballistic-how-the-bulle/4000-108707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165086/","id":165086,"name":"Fathers & Daughters, Part. 3","site_detail_url":"https://comicvine.gamespot.com/case-files-sam-twitch-22-fathers-daughters-part-3/4000-165086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107950/","id":107950,"name":"The Least Resistance","site_detail_url":"https://comicvine.gamespot.com/supreme-power-hyperion-3-the-least-resistance/4000-107950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106090/","id":106090,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor-1-x-factor/4000-106090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113587/","id":113587,"name":"Warriors: Part 7","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-85-warriors-part-7/4000-113587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113588/","id":113588,"name":"Silver Sable: Part 1; Visions, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-86-silver-sable-part-1-visions/4000-113588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132214/","id":132214,"name":"The Books of Doom, Book 1","site_detail_url":"https://comicvine.gamespot.com/books-of-doom-1-the-books-of-doom-book-1/4000-132214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105414/","id":105414,"name":"On the Ground, Part 1","site_detail_url":"https://comicvine.gamespot.com/dmz-1-on-the-ground-part-1/4000-105414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119492/","id":119492,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-archives-3-volume-3/4000-119492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111677/","id":111677,"name":"Off The Grid, Part Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-16-off-the-grid-part-two/4000-111677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264987/","id":264987,"name":"Riot At Xavier's!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-127-riot-at-xaviers/4000-264987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134154/","id":134154,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-horror-1/4000-134154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438562/","id":438562,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-intimate-visions-amanda-conner-1/4000-438562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117219/","id":117219,"name":"Play to Win Part One; Power Corrupted Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-13-play-to-win-part-one-power-corr/4000-117219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117220/","id":117220,"name":"Play to Win Part Two; Power Corrupted Part Two","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-14-play-to-win-part-two-power-corr/4000-117220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122443/","id":122443,"name":"The Sentry, Act Two: The Watchtower","site_detail_url":"https://comicvine.gamespot.com/sentry-2-the-sentry-act-two-the-watchtower/4000-122443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131976/","id":131976,"name":"Impossible Things Happen Every Day, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-23-impossible-things-happen-every/4000-131976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113513/","id":113513,"name":"The Other - Evolve Or Die, Part 3 of 12: Rage","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-525-the-other-evolve-or-die/4000-113513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113297/","id":113297,"name":"Fugitive, Part 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-91-fugitive-part-3/4000-113297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223764/","id":223764,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-master-of-the-ring-1-volume-2/4000-223764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110647/","id":110647,"name":"Fin Fang Four!","site_detail_url":"https://comicvine.gamespot.com/marvel-monsters-fin-fang-4-1-fin-fang-four/4000-110647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150132/","id":150132,"name":"The Unraveling","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-5-the-unraveling/4000-150132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122331/","id":122331,"name":"What Do You Really Deep Down Want","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-things-they-say-about-her-2-what-d/4000-122331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411170/","id":411170,"name":"","site_detail_url":"https://comicvine.gamespot.com/king-kong-the-8th-wonder-of-the-world-1/4000-411170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184559/","id":184559,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/weapon-x-days-of-future-now-4-part-4/4000-184559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298171/","id":298171,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-44/4000-298171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117282/","id":117282,"name":"The Shocking Secret of the Spider Shoppe","site_detail_url":"https://comicvine.gamespot.com/spider-girl-91-the-shocking-secret-of-the-spider-s/4000-117282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573674/","id":573674,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-45/4000-573674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582413/","id":582413,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/spaniel-rage-1-gn/4000-582413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472380/","id":472380,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-2/4000-472380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107056/","id":107056,"name":"Many Happy Returns","site_detail_url":"https://comicvine.gamespot.com/she-hulk-1-many-happy-returns/4000-107056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175488/","id":175488,"name":"Venom vs. Carnage","site_detail_url":"https://comicvine.gamespot.com/venom-vs-carnage-1-venom-vs-carnage/4000-175488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716039/","id":716039,"name":"Battle Stations!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-126-battle-stati/4000-716039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186703/","id":186703,"name":"Marvel Knights Spider-Man: Wild Blue Yonder","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wild-blue-yonder-1-marve/4000-186703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176068/","id":176068,"name":"Toxin: The Devil You Know","site_detail_url":"https://comicvine.gamespot.com/toxin-the-devil-you-know-1-toxin-the-devil-you-kno/4000-176068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104257/","id":104257,"name":"East Coast/West Coast, Part 1","site_detail_url":"https://comicvine.gamespot.com/runaways-9-east-coastwest-coast-part-1/4000-104257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107653/","id":107653,"name":"Magnetic North: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-64-magnetic-north-part-4/4000-107653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140388/","id":140388,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-5-volume-five/4000-140388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115303/","id":115303,"name":"The Winter Soldier, Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-12-the-winter-soldier-part-4/4000-115303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166501/","id":166501,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/fables-homelands-1-volume-6/4000-166501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165725/","id":165725,"name":"Any Day Now...I Shall Be Released","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-532-any-day-now-i-shall-be-released/4000-165725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106320/","id":106320,"name":"Ditch","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-13-ditch/4000-106320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106321/","id":106321,"name":"Made Perfect","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-14-made-perfect/4000-106321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113298/","id":113298,"name":"10th Anniversary Edition","site_detail_url":"https://comicvine.gamespot.com/witchblade-92-10th-anniversary-edition/4000-113298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107179/","id":107179,"name":"The Slavers: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-26-the-slavers-part-2/4000-107179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126717/","id":126717,"name":"Street Angels","site_detail_url":"https://comicvine.gamespot.com/daredevil-father-4-street-angels/4000-126717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171583/","id":171583,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-modern-marvels-1-volume-2/4000-171583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152098/","id":152098,"name":"My World On Fire (Part 2)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-8-my-world-on-fire-part-2/4000-152098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281338/","id":281338,"name":"Il Budda d'oro","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-282-il-budda-doro/4000-281338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122654/","id":122654,"name":"Arabian Nights (and Days), Chapter One: Broken English","site_detail_url":"https://comicvine.gamespot.com/fables-42-arabian-nights-and-days-chapter-one-brok/4000-122654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107092/","id":107092,"name":"A Scream Across The Sky","site_detail_url":"https://comicvine.gamespot.com/captain-atom-armageddon-1-a-scream-across-the-sky/4000-107092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106867/","id":106867,"name":"Secret War Book 5","site_detail_url":"https://comicvine.gamespot.com/secret-war-5-secret-war-book-5/4000-106867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384476/","id":384476,"name":"Rough Cut","site_detail_url":"https://comicvine.gamespot.com/sentry-1-rough-cut-1-rough-cut/4000-384476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108868/","id":108868,"name":"Zor","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-4-zor/4000-108868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211649/","id":211649,"name":"A Beautiful Crime: Part Two","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-2-a-beautiful-crime-part-two/4000-211649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107905/","id":107905,"name":"Falling Angels","site_detail_url":"https://comicvine.gamespot.com/supreme-power-hyperion-2-falling-angels/4000-107905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113586/","id":113586,"name":"Warriors: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-84-warriors-part-6/4000-113586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111676/","id":111676,"name":"Off The Grid, Part One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-15-off-the-grid-part-one/4000-111676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157715/","id":157715,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-silver-surfer-1-volume-1/4000-157715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175292/","id":175292,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic-2-book-2/4000-175292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131975/","id":131975,"name":"The Yancy Street Golem","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-22-the-yancy-street-golem/4000-131975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122436/","id":122436,"name":"The Sentry, Act One: Under the Eye of the Clock","site_detail_url":"https://comicvine.gamespot.com/sentry-1-the-sentry-act-one-under-the-eye-of-the-c/4000-122436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232239/","id":232239,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-mighty-thor-4-volume-4/4000-232239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219050/","id":219050,"name":"Outsiders: Wanted","site_detail_url":"https://comicvine.gamespot.com/outsiders-wanted-1-outsiders-wanted/4000-219050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132596/","id":132596,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/district-x-underground-1-volume-2/4000-132596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150133/","id":150133,"name":"Over the Line","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-4-over-the-line/4000-150133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232247/","id":232247,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-9-volume-9/4000-232247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122330/","id":122330,"name":"The Things They Say About Her","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-things-they-say-about-her-1-the-th/4000-122330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291428/","id":291428,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-85/4000-291428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298170/","id":298170,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-43/4000-298170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117278/","id":117278,"name":"Spider-Girl Interrupted!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-90-spider-girl-interrupted/4000-117278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573673/","id":573673,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-44/4000-573673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285420/","id":285420,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-31/4000-285420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261475/","id":261475,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-mark-waid-3-volume-three/4000-261475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716038/","id":716038,"name":"Hunted!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-125-hunted/4000-716038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147954/","id":147954,"name":"The Absolute Edition","site_detail_url":"https://comicvine.gamespot.com/absolute-crisis-on-infinite-earths-1-the-absolute-/4000-147954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175519/","id":175519,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/vision-yesterday-and-tomorrow-1-tpb/4000-175519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186653/","id":186653,"name":"Spectacular Spider-Man: The Final Curtain","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-the-final-curtain-1-spectac/4000-186653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715373/","id":715373,"name":"Trick or Treat","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-124-trick-or-tre/4000-715373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111754/","id":111754,"name":"Crossover: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-23-crossover-part-3/4000-111754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134188/","id":134188,"name":"Born on the Fourth of July","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-8-born-on-the-fourth-of-july/4000-134188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105979/","id":105979,"name":"World Tour: House of M (Part I of III)","site_detail_url":"https://comicvine.gamespot.com/exiles-69-world-tour-house-of-m-part-i-of-iii/4000-105979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105980/","id":105980,"name":"World Tour: House of M (Part II of III)","site_detail_url":"https://comicvine.gamespot.com/exiles-70-world-tour-house-of-m-part-ii-of-iii/4000-105980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141218/","id":141218,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-7-volume-7/4000-141218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107630/","id":107630,"name":"Magnetic North: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-63-magnetic-north-part-3/4000-107630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153127/","id":153127,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-universe-power-unimaginable-1-tpb/4000-153127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115273/","id":115273,"name":"The Winter Soldier, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-the-winter-soldier-part-3/4000-115273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108314/","id":108314,"name":"Ronin, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-11-ronin-pt-1/4000-108314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122651/","id":122651,"name":"Pax Imperium: Chapter Five of Homelands","site_detail_url":"https://comicvine.gamespot.com/fables-41-pax-imperium-chapter-five-of-homelands/4000-122651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140980/","id":140980,"name":"Curtain Call","site_detail_url":"https://comicvine.gamespot.com/csi-ny-bloody-murder-5-curtain-call/4000-140980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119606/","id":119606,"name":"Wild Blue Yonder, Part 6","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-18-wild-blue-yonder-part/4000-119606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165724/","id":165724,"name":"Many Questions, Some Answered","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-531-many-questions-some-answered/4000-165724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99224/","id":99224,"name":"Living Lies","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-12-living-lies/4000-99224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113512/","id":113512,"name":"All Fall Down","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-524-all-fall-down/4000-113512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119333/","id":119333,"name":"The Razor's Edge","site_detail_url":"https://comicvine.gamespot.com/toxin-6-the-razor-s-edge/4000-119333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113296/","id":113296,"name":"Fugitive, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-90-fugitive-part-2/4000-113296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153492/","id":153492,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-ghost-rider-1-volume-1/4000-153492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152086/","id":152086,"name":"My World On Fire (Part 1)","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-7-my-world-on-fire-part-1/4000-152086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107178/","id":107178,"name":"The Slavers: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-25-the-slavers-part-1/4000-107178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279030/","id":279030,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-john-romita-jr-1-hc/4000-279030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294048/","id":294048,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-by-mark-millar-ultimate-collection-1-hc/4000-294048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124043/","id":124043,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-4/4000-124043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336988/","id":336988,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-1-rebirth/4000-336988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118509/","id":118509,"name":"Combat Rock","site_detail_url":"https://comicvine.gamespot.com/godland-5-combat-rock/4000-118509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108865/","id":108865,"name":"Sex Secrets of the Newsboy Army!","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-guardian-4-sex-secrets-of-the-newsb/4000-108865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108706/","id":108706,"name":"New Godz","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-mr-miracle-1-new-godz/4000-108706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211648/","id":211648,"name":"The Crimes, They Are a'Changin': Part One","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-1-the-crimes-they-are-achangin-par/4000-211648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111675/","id":111675,"name":"Fact V. Fiction Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-14-fact-v-fiction-conclusion/4000-111675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107685/","id":107685,"name":"Pride of the Amazons","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-221-pride-of-the-amazons/4000-107685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113584/","id":113584,"name":"Warriors: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-82-warriors-part-4/4000-113584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113585/","id":113585,"name":"Warriors: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-83-warriors-part-5/4000-113585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159535/","id":159535,"name":"Ame Rouge","site_detail_url":"https://comicvine.gamespot.com/blacksad-3-ame-rouge/4000-159535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184240/","id":184240,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/essential-werewolf-by-night-1-vol-1/4000-184240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150097/","id":150097,"name":"Victory Now!","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-3-victory-now/4000-150097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131974/","id":131974,"name":"Desperate Housewife","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-21-desperate-housewife/4000-131974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120886/","id":120886,"name":"Titannus War, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-11-titannus-war-part-1/4000-120886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118225/","id":118225,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-5-part-5/4000-118225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113294/","id":113294,"name":"Fugitive, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-89-fugitive-part-1/4000-113294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117277/","id":117277,"name":"The Girl Who Fell To Earth","site_detail_url":"https://comicvine.gamespot.com/spider-girl-89-the-girl-who-fell-to-earth/4000-117277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216699/","id":216699,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-2-volume-2/4000-216699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291427/","id":291427,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-84/4000-291427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298169/","id":298169,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-42/4000-298169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573672/","id":573672,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-43/4000-573672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716037/","id":716037,"name":"Riders in the Storm!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-123-riders-in-th/4000-716037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111753/","id":111753,"name":"Crossover: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-22-crossover-part-2/4000-111753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107328/","id":107328,"name":"The Reserves","site_detail_url":"https://comicvine.gamespot.com/ultimates-annual-1-the-reserves/4000-107328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107240/","id":107240,"name":"Wannabe: Part Seven","site_detail_url":"https://comicvine.gamespot.com/nyx-7-wannabe-part-seven/4000-107240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107629/","id":107629,"name":"Magnetic North: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-62-magnetic-north-part-2/4000-107629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115269/","id":115269,"name":"The Winter Soldier Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-9-the-winter-soldier-part-2/4000-115269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108312/","id":108312,"name":"The Sentry conclusion","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-10-the-sentry-conclusion/4000-108312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140979/","id":140979,"name":"Blood Tales","site_detail_url":"https://comicvine.gamespot.com/csi-ny-bloody-murder-4-blood-tales/4000-140979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114510/","id":114510,"name":"Agent Of S.H.I.E.L.D., Part 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-31-agent-of-shield-part-6/4000-114510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119605/","id":119605,"name":"Wild Blue Yonder, Part 5","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-17-wild-blue-yonder-part/4000-119605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162131/","id":162131,"name":"Truth In Flight","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-530-truth-in-flight/4000-162131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104865/","id":104865,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-5/4000-104865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115271/","id":115271,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/captain-america-10-house-of-m/4000-115271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113511/","id":113511,"name":"Extreme Measures","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-523-extreme-measures/4000-113511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119335/","id":119335,"name":"Good Luck, Mulligan, Thanks for the Formaldehyde","site_detail_url":"https://comicvine.gamespot.com/toxin-5-good-luck-mulligan-thanks-for-the-formalde/4000-119335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184079/","id":184079,"name":"Watchmen","site_detail_url":"https://comicvine.gamespot.com/absolute-watchmen-1-watchmen/4000-184079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126715/","id":126715,"name":"Heatwave","site_detail_url":"https://comicvine.gamespot.com/daredevil-father-2-heatwave/4000-126715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240306/","id":240306,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spawn-collection-1-volume-1/4000-240306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152085/","id":152085,"name":"Suffer Not A Corpse To Live","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-6-suffer-not-a-corpse-to-live/4000-152085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110330/","id":110330,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-annual-1/4000-110330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107177/","id":107177,"name":"Up Is Down and Black is White: Part 6","site_detail_url":"https://comicvine.gamespot.com/the-punisher-24-up-is-down-and-black-is-white-part/4000-107177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113582/","id":113582,"name":"Warriors: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-80-warriors-part-2/4000-113582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292526/","id":292526,"name":"Liberality For All, Part 1","site_detail_url":"https://comicvine.gamespot.com/liberality-for-all-1-liberality-for-all-part-1/4000-292526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108871/","id":108871,"name":"The Deviant Ones","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-klarion-3-the-deviant-ones/4000-108871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188209/","id":188209,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/kamandi-archives-1-volume-1/4000-188209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118506/","id":118506,"name":"The Torture Never Stops","site_detail_url":"https://comicvine.gamespot.com/godland-4-the-torture-never-stops/4000-118506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267210/","id":267210,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/hellblazer-1-hunger/4000-267210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165088/","id":165088,"name":"Fathers & Daughters, Part. 1","site_detail_url":"https://comicvine.gamespot.com/case-files-sam-twitch-20-fathers-daughters-part-1/4000-165088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152138/","id":152138,"name":"","site_detail_url":"https://comicvine.gamespot.com/vertigo-first-offenses-1/4000-152138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107684/","id":107684,"name":"Affirmative Defense (Sacrifice, Aftermath)","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-220-affirmative-defense-sacrifice-aft/4000-107684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113583/","id":113583,"name":"Warriors: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-81-warriors-part-3/4000-113583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111921/","id":111921,"name":"Metal Gear Solid #1","site_detail_url":"https://comicvine.gamespot.com/metal-gear-solid-sons-of-liberty-1-metal-gear-soli/4000-111921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265313/","id":265313,"name":"Fallen, Part 2","site_detail_url":"https://comicvine.gamespot.com/midnight-kiss-2-fallen-part-2/4000-265313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150093/","id":150093,"name":"Good Deeds, Bad Seeds","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-1-good-deeds-bad-seeds/4000-150093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150094/","id":150094,"name":"The Big Squeeze","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-punisher-2-the-big-squeeze/4000-150094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130726/","id":130726,"name":"Almost A Good Idea...","site_detail_url":"https://comicvine.gamespot.com/defenders-1-almost-a-good-idea/4000-130726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131973/","id":131973,"name":"Runaways: Inhumame, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-20-runaways-inhumame-part-2/4000-131973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120885/","id":120885,"name":"Master Of The Ring, Part 5 & 6","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-10-master-of-the-ring-part-5-6/4000-120885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118224/","id":118224,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-4-part-4/4000-118224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106145/","id":106145,"name":"","site_detail_url":"https://comicvine.gamespot.com/arana-heart-of-the-spider-8/4000-106145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223856/","id":223856,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/arana-in-the-beginning-1-tpb/4000-223856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110455/","id":110455,"name":"A Plague of One","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-2-a-plague-of-one/4000-110455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298168/","id":298168,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-41/4000-298168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573671/","id":573671,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-42/4000-573671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285418/","id":285418,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-29/4000-285418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162205/","id":162205,"name":"Volume 1: Gods and Monsters","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-1-volume-1-gods-and-monsters/4000-162205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716036/","id":716036,"name":"Don't Look Behind You...","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-122-dont-look-be/4000-716036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250719/","id":250719,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/punisher-max-hardcover-1-volume-1/4000-250719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126177/","id":126177,"name":"Who is the Black Panther? Part 6","site_detail_url":"https://comicvine.gamespot.com/black-panther-6-who-is-the-black-panther-part-6/4000-126177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111752/","id":111752,"name":"Crossover: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-21-crossover-part-1/4000-111752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134187/","id":134187,"name":"Wolf in the Fold","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-7-wolf-in-the-fold/4000-134187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107239/","id":107239,"name":"Wannabe: Part Six","site_detail_url":"https://comicvine.gamespot.com/nyx-6-wannabe-part-six/4000-107239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104864/","id":104864,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-4/4000-104864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116546/","id":116546,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-house-of-m-2/4000-116546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122648/","id":122648,"name":"Meanwhile","site_detail_url":"https://comicvine.gamespot.com/fables-39-meanwhile/4000-122648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140978/","id":140978,"name":"Creatures Of The Night","site_detail_url":"https://comicvine.gamespot.com/csi-ny-bloody-murder-3-creatures-of-the-night/4000-140978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114509/","id":114509,"name":"Agent Of S.H.I.E.L.D., Part 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-30-agent-of-shield-part-5/4000-114509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119604/","id":119604,"name":"Wild Blue Yonder, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-16-wild-blue-yonder-part/4000-119604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136900/","id":136900,"name":"Random Factors","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-528-random-factors/4000-136900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106772/","id":106772,"name":"Appointment Overdue","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-529-appointment-overdue/4000-106772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99222/","id":99222,"name":"Of Mice and Maze","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-10-of-mice-and-maze/4000-99222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104863/","id":104863,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-3/4000-104863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105810/","id":105810,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/the-pulse-10-house-of-m/4000-105810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111273/","id":111273,"name":"The Winding Way, Part 2: Dark Carnival","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-8-the-winding-way-part-2-dark-carniva/4000-111273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113510/","id":113510,"name":"Moving Targets","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-522-moving-targets/4000-113510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119332/","id":119332,"name":"Walking Man","site_detail_url":"https://comicvine.gamespot.com/toxin-4-walking-man/4000-119332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113293/","id":113293,"name":"Partners","site_detail_url":"https://comicvine.gamespot.com/witchblade-88-partners/4000-113293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202252/","id":202252,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill-1-tpb/4000-202252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106293/","id":106293,"name":"House Divided (part 1 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-16-house-divided-part-1-of-4/4000-106293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142088/","id":142088,"name":"Self-Help for Stupid Ugly Losers","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-3-self-help-for-stupid-ugly-lo/4000-142088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107176/","id":107176,"name":"Up Is Down and Black is White: Part 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-23-up-is-down-and-black-is-white-part/4000-107176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231251/","id":231251,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/ex-machina-tag-1-vol-2/4000-231251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118507/","id":118507,"name":"The Seismic Shift","site_detail_url":"https://comicvine.gamespot.com/godland-3-the-seismic-shift/4000-118507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347072/","id":347072,"name":"Ultimate Marvel","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-flip-magazine-1-ultimate-marvel/4000-347072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270401/","id":270401,"name":"Le dernier envol","site_detail_url":"https://comicvine.gamespot.com/dernier-envol-1-le-dernier-envol/4000-270401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108864/","id":108864,"name":"Siege at Century Hollow","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-guardian-3-siege-at-century-hollow/4000-108864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103875/","id":103875,"name":"Sidekicks (Part 6)","site_detail_url":"https://comicvine.gamespot.com/young-avengers-6-sidekicks-part-6/4000-103875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124042/","id":124042,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-3/4000-124042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113581/","id":113581,"name":"Warriors: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-79-warriors-part-1/4000-113581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115761/","id":115761,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-gear-solid-sons-of-liberty-0/4000-115761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111674/","id":111674,"name":"Fact V. Fiction Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-13-fact-v-fiction-chapter-two/4000-111674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122541/","id":122541,"name":"The Darkness vs Mr. Hyde","site_detail_url":"https://comicvine.gamespot.com/monster-war-4-the-darkness-vs-mr-hyde/4000-122541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173978/","id":173978,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thing-freakshow-1-tpb/4000-173978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131972/","id":131972,"name":"Runaways: Inhumane, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-19-runaways-inhumane-part-1/4000-131972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126233/","id":126233,"name":"One Of Us, Part 2","site_detail_url":"https://comicvine.gamespot.com/district-x-14-one-of-us-part-2/4000-126233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120884/","id":120884,"name":"Master Of The Ring, Part 3 & 4","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-9-master-of-the-ring-part-3-4/4000-120884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118223/","id":118223,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-3-part-3/4000-118223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106144/","id":106144,"name":"","site_detail_url":"https://comicvine.gamespot.com/arana-heart-of-the-spider-7/4000-106144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242794/","id":242794,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-1-tpb/4000-242794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298167/","id":298167,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-40/4000-298167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117224/","id":117224,"name":"Family Business 2","site_detail_url":"https://comicvine.gamespot.com/spider-girl-87-family-business-2/4000-117224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573670/","id":573670,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-41/4000-573670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285417/","id":285417,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-28/4000-285417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716035/","id":716035,"name":"Brutal Breakout!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-121-brutal-break/4000-716035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149315/","id":149315,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-fantastic-four-4-volume-4/4000-149315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134551/","id":134551,"name":"Featuring Captain Britain, Psylocke & Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/marvel-milestones-6-featuring-captain-britain-psyl/4000-134551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116494/","id":116494,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-house-of-m-1/4000-116494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119603/","id":119603,"name":"Wild Blue Yonder, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-15-wild-blue-yonder-part/4000-119603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123213/","id":123213,"name":"The Death and Life of Beta Ray Bill","site_detail_url":"https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill-6-the-death/4000-123213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99221/","id":99221,"name":"The T-Bolts vs. The Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-9-the-t-bolts-vs-the-sub-mariner/4000-99221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104861/","id":104861,"name":null,"site_detail_url":"https://comicvine.gamespot.com/house-of-m-1/4000-104861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104862/","id":104862,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-2/4000-104862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106292/","id":106292,"name":"Year's End, Part 2: School's Out Forever","site_detail_url":"https://comicvine.gamespot.com/new-x-men-15-years-end-part-2-schools-out-forever/4000-106292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113509/","id":113509,"name":"Unintended Consequences","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-521-unintended-consequences/4000-113509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119330/","id":119330,"name":"The Answer, My Friend","site_detail_url":"https://comicvine.gamespot.com/toxin-3-the-answer-my-friend/4000-119330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113291/","id":113291,"name":"Heart of the City","site_detail_url":"https://comicvine.gamespot.com/witchblade-87-heart-of-the-city/4000-113291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133121/","id":133121,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/emma-frost-bloom-1-volume-3/4000-133121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126987/","id":126987,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-vignettes-2-volume-two/4000-126987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107175/","id":107175,"name":"Up Is Down and Black is White: Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-22-up-is-down-and-black-is-white-part/4000-107175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279036/","id":279036,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-john-romita-sr-1-hctpb/4000-279036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259448/","id":259448,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/strange-beginnings-and-endings-1-tpb/4000-259448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321738/","id":321738,"name":"L'angelo ribelle","site_detail_url":"https://comicvine.gamespot.com/dampyr-65-langelo-ribelle/4000-321738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118505/","id":118505,"name":"Every Breath You Take","site_detail_url":"https://comicvine.gamespot.com/godland-2-every-breath-you-take/4000-118505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108866/","id":108866,"name":"A Book in the Beginning","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-2-a-book-in-the-beginning/4000-108866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108870/","id":108870,"name":"Badde","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-klarion-2-badde/4000-108870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107682/","id":107682,"name":"The Calm","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-218-the-calm/4000-107682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111385/","id":111385,"name":"Who will be the... Last Hero Standing","site_detail_url":"https://comicvine.gamespot.com/last-hero-standing-1-who-will-be-the-last-hero-sta/4000-111385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111418/","id":111418,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-hero-standing-2/4000-111418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111419/","id":111419,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-hero-standing-3/4000-111419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111420/","id":111420,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-hero-standing-4/4000-111420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111421/","id":111421,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-hero-standing-5/4000-111421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111673/","id":111673,"name":"Fact V. Fiction Chapter One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-12-fact-v-fiction-chapter-one/4000-111673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122540/","id":122540,"name":"Witchblade vs Frankenstein","site_detail_url":"https://comicvine.gamespot.com/monster-war-3-witchblade-vs-frankenstein/4000-122540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269157/","id":269157,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-movie-1/4000-269157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115267/","id":115267,"name":"Interlude: The Lonesome Death of Jack Monroe","site_detail_url":"https://comicvine.gamespot.com/captain-america-7-interlude-the-lonesome-death-of-/4000-115267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131971/","id":131971,"name":"Divine Time, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-18-divine-time-part-4/4000-131971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162125/","id":162125,"name":"Distant Music","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-527-distant-music/4000-162125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126234/","id":126234,"name":"One Of Us, Part 1","site_detail_url":"https://comicvine.gamespot.com/district-x-13-one-of-us-part-1/4000-126234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120883/","id":120883,"name":"Master Of The Ring, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-8-master-of-the-ring-part-2/4000-120883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118222/","id":118222,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-2-part-2/4000-118222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192700/","id":192700,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-brothers-and-keeper/4000-192700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120932/","id":120932,"name":"The Sinister Six, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-3-the-sinister-six-pa/4000-120932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255727/","id":255727,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-force-shatterstar-1-tpb/4000-255727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258529/","id":258529,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-divine-time-1-volume-3/4000-258529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118215/","id":118215,"name":"Doomsday","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-fantastic-four-0-doomsday/4000-118215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114176/","id":114176,"name":"The New Labors of Hercules, Part Two","site_detail_url":"https://comicvine.gamespot.com/hercules-2-the-new-labors-of-hercules-part-two/4000-114176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171225/","id":171225,"name":"Book 5","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-ring-of-truth-5-book-5/4000-171225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291424/","id":291424,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-81/4000-291424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298166/","id":298166,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-39/4000-298166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117211/","id":117211,"name":"Family Business","site_detail_url":"https://comicvine.gamespot.com/spider-girl-86-family-business/4000-117211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573669/","id":573669,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-40/4000-573669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539678/","id":539678,"name":"3 de 3","site_detail_url":"https://comicvine.gamespot.com/lobezno-el-fin-3-3-de-3/4000-539678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285416/","id":285416,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-27/4000-285416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716019/","id":716019,"name":"To Save Tomorrow","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-119-to-save-tomo/4000-716019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223627/","id":223627,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-omnibus-1-volume-one/4000-223627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134186/","id":134186,"name":"The Defenders","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-6-the-defenders/4000-134186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140976/","id":140976,"name":"Beast Moon","site_detail_url":"https://comicvine.gamespot.com/csi-ny-bloody-murder-1-beast-moon/4000-140976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104440/","id":104440,"name":"Wild Blue Yonder, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-14-wild-blue-yonder-part/4000-104440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99220/","id":99220,"name":"A Shock to the System","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-8-a-shock-to-the-system/4000-99220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113508/","id":113508,"name":"Acts Of Aggression","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-520-acts-of-aggression/4000-113508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119329/","id":119329,"name":"Cut to the Chase","site_detail_url":"https://comicvine.gamespot.com/toxin-2-cut-to-the-chase/4000-119329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97363/","id":97363,"name":"Foes, Part 5","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-5-foes-part-5/4000-97363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113290/","id":113290,"name":"Warrior Spirit","site_detail_url":"https://comicvine.gamespot.com/witchblade-86-warrior-spirit/4000-113290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123212/","id":123212,"name":"Omega: The End","site_detail_url":"https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill-5-omega-the/4000-123212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106498/","id":106498,"name":"Innocence Lost, Part 6: Conclusion","site_detail_url":"https://comicvine.gamespot.com/x-23-6-innocence-lost-part-6-conclusion/4000-106498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103524/","id":103524,"name":"Together Again","site_detail_url":"https://comicvine.gamespot.com/spider-manhuman-torch-5-together-again/4000-103524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107173/","id":107173,"name":"Up Is Down and Black is White: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-21-up-is-down-and-black-is-white-part/4000-107173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283855/","id":283855,"name":"L'anno della cometa","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-22-lanno-della-cometa/4000-283855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118504/","id":118504,"name":"Cosmic Wheels in Motion","site_detail_url":"https://comicvine.gamespot.com/godland-1-cosmic-wheels-in-motion/4000-118504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196968/","id":196968,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/promethea-5-book-five/4000-196968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108863/","id":108863,"name":"Homeless Superior","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-guardian-2-homeless-superior/4000-108863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107680/","id":107680,"name":"The Bronze Doors, Part Two","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-216-the-bronze-doors-part-two/4000-107680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107681/","id":107681,"name":"The Bronze Doors, Part Three","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-217-the-bronze-doors-part-three/4000-107681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113579/","id":113579,"name":"Hobgoblin: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-77-hobgoblin-part-6/4000-113579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136417/","id":136417,"name":"Chapter Two: Some Enchantress Evening","site_detail_url":"https://comicvine.gamespot.com/day-of-vengeance-2-chapter-two-some-enchantress-ev/4000-136417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99195/","id":99195,"name":"Black Vengeance, Part 1","site_detail_url":"https://comicvine.gamespot.com/jsa-73-black-vengeance-part-1/4000-99195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111750/","id":111750,"name":"Think Tank: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-19-think-tank-part-1/4000-111750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176552/","id":176552,"name":"","site_detail_url":"https://comicvine.gamespot.com/build-a-fantastic-you-1/4000-176552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122538/","id":122538,"name":"Lara Croft Tomb Raider vs The Wolf-Men","site_detail_url":"https://comicvine.gamespot.com/monster-war-2-lara-croft-tomb-raider-vs-the-wolf-m/4000-122538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111672/","id":111672,"name":"Fortune Favors","site_detail_url":"https://comicvine.gamespot.com/ex-machina-11-fortune-favors/4000-111672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141445/","id":141445,"name":"The Life and Times of Scrooge McDuck","site_detail_url":"https://comicvine.gamespot.com/the-life-and-times-of-scrooge-mcduck-1-the-life-an/4000-141445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-840121/","id":840121,"name":null,"site_detail_url":"https://comicvine.gamespot.com/nintendo-power-193/4000-840121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162123/","id":162123,"name":"Dream Fever, Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-525-dream-fever-part-1/4000-162123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162124/","id":162124,"name":"Dream Fever, Part 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-526-dream-fever-part-2/4000-162124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131970/","id":131970,"name":"Divine Time, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-17-divine-time-part-3/4000-131970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182343/","id":182343,"name":"First Contact, Part 5","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-5-first-contact-part-5/4000-182343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120741/","id":120741,"name":"Underground, Part 6","site_detail_url":"https://comicvine.gamespot.com/district-x-12-underground-part-6/4000-120741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120881/","id":120881,"name":"Master Of The Ring, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-7-master-of-the-ring-part-1/4000-120881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187402/","id":187402,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-kang-time-and-time-again-1-tpb/4000-187402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118068/","id":118068,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-1-part-1/4000-118068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111157/","id":111157,"name":"Witch Hunt, Part 6","site_detail_url":"https://comicvine.gamespot.com/witchblade-85-witch-hunt-part-6/4000-111157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120931/","id":120931,"name":"The Sinister Six, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-2-the-sinister-six-pa/4000-120931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130893/","id":130893,"name":"Widescreen","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-thing-2-widescreen/4000-130893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410974/","id":410974,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-grimoire-4/4000-410974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114175/","id":114175,"name":"The New Labors","site_detail_url":"https://comicvine.gamespot.com/hercules-1-the-new-labors/4000-114175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298165/","id":298165,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-38/4000-298165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101149/","id":101149,"name":"Rescue Me!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-85-rescue-me/4000-101149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285415/","id":285415,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-26/4000-285415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259699/","id":259699,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/the-best-of-spider-man-4-volume-four/4000-259699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716017/","id":716017,"name":"Venom's Back!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-118-venoms-back/4000-716017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239603/","id":239603,"name":"The Hell Makers","site_detail_url":"https://comicvine.gamespot.com/modesty-blaise-6-the-hell-makers/4000-239603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171582/","id":171582,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-one-step-forward-1-volume-1/4000-171582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186702/","id":186702,"name":"Marvel Knights Spider-Man: The Last Stand","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-the-last-stand-1-marvel-/4000-186702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716014/","id":716014,"name":"To Catch A Thief","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-117-to-catch-a-t/4000-716014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104439/","id":104439,"name":"Wild Blue Yonder, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-13-wild-blue-yonder-part/4000-104439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108307/","id":108307,"name":"The Sentry part 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-7-the-sentry-part-1/4000-108307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100923/","id":100923,"name":"American Psycho (Part 2)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-14-american-psycho-part/4000-100923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99219/","id":99219,"name":"Modern Marvels","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-7-modern-marvels/4000-99219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185337/","id":185337,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-1-tpb/4000-185337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113507/","id":113507,"name":"Moving Up","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-519-moving-up/4000-113507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101143/","id":101143,"name":"The Final Curtain","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-27-the-final-curtain/4000-101143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105930/","id":105930,"name":"The Strange Case of Pat Mulligan and Mr. Hyde","site_detail_url":"https://comicvine.gamespot.com/toxin-1-the-strange-case-of-pat-mulligan-and-mr-hy/4000-105930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97362/","id":97362,"name":"Foes, Part 4","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-4-foes-part-4/4000-97362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189479/","id":189479,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/giant-size-marvel-1-tpb/4000-189479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106274/","id":106274,"name":"X-Posed","site_detail_url":"https://comicvine.gamespot.com/new-x-men-12-x-posed/4000-106274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142087/","id":142087,"name":"All-Sex Special","site_detail_url":"https://comicvine.gamespot.com/action-philosophers-2-all-sex-special/4000-142087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227375/","id":227375,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez-1-volume-o/4000-227375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103523/","id":103523,"name":"Cat's Paws","site_detail_url":"https://comicvine.gamespot.com/spider-manhuman-torch-4-cats-paws/4000-103523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272251/","id":272251,"name":"Code Apocalypse","site_detail_url":"https://comicvine.gamespot.com/soda-12-code-apocalypse/4000-272251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107171/","id":107171,"name":"Up Is Down and Black is White: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-19-up-is-down-and-black-is-white-part/4000-107171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107172/","id":107172,"name":"Up Is Down and Black is White: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-20-up-is-down-and-black-is-white-part/4000-107172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100979/","id":100979,"name":"Hobgoblin: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-75-hobgoblin-part-4/4000-100979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113181/","id":113181,"name":"Hobgoblin: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-76-hobgoblin-part-5/4000-113181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101455/","id":101455,"name":"Chrysalis","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-6-chrysalis/4000-101455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117842/","id":117842,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-2/4000-117842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324324/","id":324324,"name":"Fuga da Manhattan","site_detail_url":"https://comicvine.gamespot.com/brad-barron-2-fuga-da-manhattan/4000-324324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111631/","id":111631,"name":"Tag Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-10-tag-conclusion/4000-111631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108704/","id":108704,"name":"Talking Backwards - Sdrawkcab Gniklat","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-1-talking-backwards-sdrawkc/4000-108704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111188/","id":111188,"name":"With a Vengeance!, Chapter One: Here Come The Maximums","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-20-with-a-vengeance-chapter-one-her/4000-111188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350047/","id":350047,"name":"The Pilot","site_detail_url":"https://comicvine.gamespot.com/ex-machina-1-special-edition-1-the-pilot/4000-350047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101029/","id":101029,"name":"The Bronze Doors, Part One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-215-the-bronze-doors-part-one/4000-101029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176551/","id":176551,"name":"The Vamp","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-the-vamp-1-the-vamp/4000-176551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162122/","id":162122,"name":"Tag","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-524-tag/4000-162122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113506/","id":113506,"name":"Skin Deep, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-518-skin-deep-part-4/4000-113506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131969/","id":131969,"name":"Divine Time, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-16-divine-time-part-2/4000-131969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182342/","id":182342,"name":"First Contact, Part 4","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-4-first-contact-part-4/4000-182342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120740/","id":120740,"name":"Underground, Part 5","site_detail_url":"https://comicvine.gamespot.com/district-x-11-underground-part-5/4000-120740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105633/","id":105633,"name":"Golden Child, Part 6","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-6-golden-child-part-6/4000-105633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111156/","id":111156,"name":"Witch Hunt, Part 5","site_detail_url":"https://comicvine.gamespot.com/witchblade-84-witch-hunt-part-5/4000-111156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115601/","id":115601,"name":"Here Comes Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-1-here-comes-spider-m/4000-115601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293108/","id":293108,"name":"Secret war","site_detail_url":"https://comicvine.gamespot.com/secret-war-1-secret-war/4000-293108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131555/","id":131555,"name":"Rogue War 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-220-rogue-war-1/4000-131555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298164/","id":298164,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-37/4000-298164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101148/","id":101148,"name":"I, Hero!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-84-i-hero/4000-101148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297472/","id":297472,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-5/4000-297472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573667/","id":573667,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-38/4000-573667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220423/","id":220423,"name":"Fantastic Four: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-ultimate-guide-1-fantastic-four/4000-220423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715466/","id":715466,"name":"Shock Tactics","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-116-shock-tactic/4000-715466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259583/","id":259583,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/best-of-the-fantastic-four-1-volume-one/4000-259583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165428/","id":165428,"name":"Sidekicks Part One","site_detail_url":"https://comicvine.gamespot.com/young-avengers-1-directors-cut-1-sidekicks-part-on/4000-165428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99718/","id":99718,"name":"The Last Stand, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-12-the-last-stand-part-4/4000-99718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100863/","id":100863,"name":"Agent Of S.H.I.E.L.D., Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-26-agent-of-shield-part-1/4000-100863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121738/","id":121738,"name":"Jack Be Nimble: Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/fables-35-jack-be-nimble-part-two-of-two/4000-121738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99193/","id":99193,"name":"JSA/JSA, Chapter IV: Past Mistakes","site_detail_url":"https://comicvine.gamespot.com/jsa-71-jsa-jsa-chapter-iv-past-mistakes/4000-99193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111173/","id":111173,"name":"The New Adventures of Supergirl, the Girl of Steel","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-19-the-new-adventures-of-supergirl-/4000-111173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100922/","id":100922,"name":"American Psycho (Part 1)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-13-american-psycho-part/4000-100922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99218/","id":99218,"name":"City of Heroes","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-6-city-of-heroes/4000-99218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134185/","id":134185,"name":"Brothers","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-4-brothers/4000-134185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97361/","id":97361,"name":"Foes, Part 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-3-foes-part-3/4000-97361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185471/","id":185471,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-eve-of-destruction-1-tpb/4000-185471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235996/","id":235996,"name":"Talking About My Generation; Man Bites Dog; Shinjuku Incident; Beginning at the End","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-one-shot-1-talking-about-m/4000-235996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240651/","id":240651,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/mystique-quiet-1-volume-4/4000-240651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254506/","id":254506,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/human-torch-burn-1-volume-1/4000-254506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103522/","id":103522,"name":"Auto Motives","site_detail_url":"https://comicvine.gamespot.com/spider-manhuman-torch-3-auto-motives/4000-103522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260049/","id":260049,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-rising-storm-1-tpb/4000-260049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117841/","id":117841,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-iron-man-1/4000-117841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279053/","id":279053,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-steve-ditko-1-hctpb/4000-279053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100978/","id":100978,"name":"Hobgoblin: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-74-hobgoblin-part-3/4000-100978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284799/","id":284799,"name":"Gli Illuminati","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-278-gli-illuminati/4000-284799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101450/","id":101450,"name":"Like Father...","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-1-like-father/4000-101450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101454/","id":101454,"name":"Sinister","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-5-sinister/4000-101454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318771/","id":318771,"name":"","site_detail_url":"https://comicvine.gamespot.com/maxi-martin-mystere-2/4000-318771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324319/","id":324319,"name":"Non umani","site_detail_url":"https://comicvine.gamespot.com/brad-barron-1-non-umani/4000-324319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106866/","id":106866,"name":"Secret War Book 4","site_detail_url":"https://comicvine.gamespot.com/secret-war-4-secret-war-book-4/4000-106866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111630/","id":111630,"name":"Tag Chapter Four","site_detail_url":"https://comicvine.gamespot.com/ex-machina-9-tag-chapter-four/4000-111630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108703/","id":108703,"name":"Pirates of Manhattan","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-guardian-1-pirates-of-manhattan/4000-108703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103871/","id":103871,"name":"Sidekicks (Part 2)","site_detail_url":"https://comicvine.gamespot.com/young-avengers-2-sidekicks-part-2/4000-103871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100977/","id":100977,"name":"Hobgoblin: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-73-hobgoblin-part-2/4000-100977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124420/","id":124420,"name":"Free Comic Book Day 2005","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-gimme-gimme-giveaway-2005-free/4000-124420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-564584/","id":564584,"name":"Corporate America","site_detail_url":"https://comicvine.gamespot.com/ir-7-corporate-america/4000-564584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103870/","id":103870,"name":"Sidekicks (Part 1)","site_detail_url":"https://comicvine.gamespot.com/young-avengers-1-sidekicks-part-1/4000-103870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140392/","id":140392,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-7-volume/4000-140392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162121/","id":162121,"name":"Rising Storm, Part 4","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-523-rising-storm-part-4/4000-162121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166519/","id":166519,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/fables-the-mean-seasons-1-volume-5/4000-166519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113505/","id":113505,"name":"Skin Deep, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-517-skin-deep-part-3/4000-113505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131968/","id":131968,"name":"Divine Time, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-15-divine-time-part-1/4000-131968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182340/","id":182340,"name":"First Contact, Part 3","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-3-first-contact-part-3/4000-182340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120739/","id":120739,"name":"Underground, Part 4","site_detail_url":"https://comicvine.gamespot.com/district-x-10-underground-part-4/4000-120739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105632/","id":105632,"name":"Golden Child, Part 5","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-5-golden-child-part-5/4000-105632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123919/","id":123919,"name":"Truth or Dare Part 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-219-truth-or-dare-part-1/4000-123919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106139/","id":106139,"name":"A Tangled Web","site_detail_url":"https://comicvine.gamespot.com/arana-heart-of-the-spider-2-a-tangled-web/4000-106139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298163/","id":298163,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-36/4000-298163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101147/","id":101147,"name":"Kill Phil!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-83-kill-phil/4000-101147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573666/","id":573666,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-37/4000-573666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120202/","id":120202,"name":"World Against One, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-force-shatterstar-1-world-against-one-part-1/4000-120202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140391/","id":140391,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-6-volume/4000-140391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116854/","id":116854,"name":"Chapter I","site_detail_url":"https://comicvine.gamespot.com/john-constantine-hellblazer-special-papa-midnite-1/4000-116854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386893/","id":386893,"name":"Out of Time Part One; Iron Man Extremis One of Six","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-captain-america-iron-man-1-comme/4000-386893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465980/","id":465980,"name":"Blast to the Past","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-114-blast-to-the/4000-465980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99886/","id":99886,"name":"Quiet, Part 5","site_detail_url":"https://comicvine.gamespot.com/mystique-24-quiet-part-5/4000-99886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99717/","id":99717,"name":"The Last Stand, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-11-the-last-stand-part-3/4000-99717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101415/","id":101415,"name":"Out of Time (Part 4 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-4-out-of-time-part-4-of-6/4000-101415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134184/","id":134184,"name":"The Trial of the Hulk","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-3-the-trial-of-the-hulk/4000-134184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167617/","id":167617,"name":"Superhuman Law","site_detail_url":"https://comicvine.gamespot.com/she-hulk-superhuman-law-1-superhuman-law/4000-167617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168832/","id":168832,"name":"Breakout","site_detail_url":"https://comicvine.gamespot.com/new-avengers-breakout-1-breakout/4000-168832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99217/","id":99217,"name":"Call to Battle","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-5-call-to-battle/4000-99217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99192/","id":99192,"name":"Some Disassembly Required","site_detail_url":"https://comicvine.gamespot.com/she-hulk-12-some-disassembly-required/4000-99192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106272/","id":106272,"name":"Too Much Information, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-10-too-much-information-part-1/4000-106272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111147/","id":111147,"name":"Ghosts On The Tracks, Part 2: Voices Of The Dead","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-6-ghosts-on-the-tracks-part-2-voices-/4000-111147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97360/","id":97360,"name":"Foes, Part 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-2-foes-part-2/4000-97360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132774/","id":132774,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/100-1-tpbhc/4000-132774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103521/","id":103521,"name":"Catch You on the Flipside","site_detail_url":"https://comicvine.gamespot.com/spider-manhuman-torch-2-catch-you-on-the-flipside/4000-103521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280251/","id":280251,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-fourspider-man-classic-1-tpb/4000-280251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284797/","id":284797,"name":"Doppia personalità","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-277-doppia-personalita/4000-284797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103910/","id":103910,"name":"Strange Beginnings and Endings: Conclusion","site_detail_url":"https://comicvine.gamespot.com/strange-6-strange-beginnings-and-endings-conclusio/4000-103910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118087/","id":118087,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-7/4000-118087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118089/","id":118089,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-8/4000-118089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384309/","id":384309,"name":"Venom & Hercules","site_detail_url":"https://comicvine.gamespot.com/marvel-milestones-0-venom-hercules/4000-384309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111629/","id":111629,"name":"Tag Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-8-tag-chapter-three/4000-111629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100976/","id":100976,"name":"Hobgoblin: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-72-hobgoblin-part-1/4000-100976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269284/","id":269284,"name":"Head of the Class","site_detail_url":"https://comicvine.gamespot.com/invincible-head-of-the-class-1-head-of-the-class/4000-269284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916969/","id":916969,"name":"Trzecie życzenie i inne opowieści","site_detail_url":"https://comicvine.gamespot.com/hellboy-8-trzecie-zyczenie-i-inne-opowiesci/4000-916969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105408/","id":105408,"name":"While You Were Out","site_detail_url":"https://comicvine.gamespot.com/majestic-1-while-you-were-out/4000-105408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113504/","id":113504,"name":"Skin Deep, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-516-skin-deep-part-2/4000-113504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131967/","id":131967,"name":"Eyes Without A Face, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-14-eyes-without-a-face-part-2/4000-131967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99191/","id":99191,"name":"Imbalance of Power","site_detail_url":"https://comicvine.gamespot.com/she-hulk-11-imbalance-of-power/4000-99191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120738/","id":120738,"name":"Underground, Part 3","site_detail_url":"https://comicvine.gamespot.com/district-x-9-underground-part-3/4000-120738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106768/","id":106768,"name":"Blood Sacrifice","site_detail_url":"https://comicvine.gamespot.com/x-force-6-blood-sacrifice/4000-106768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105631/","id":105631,"name":"Golden Child, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-4-golden-child-part-4/4000-105631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111153/","id":111153,"name":"Witch Hunt, Part 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-82-witch-hunt-part-3/4000-111153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111155/","id":111155,"name":"Witch Hunt, Part 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-83-witch-hunt-part-4/4000-111155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105353/","id":105353,"name":"","site_detail_url":"https://comicvine.gamespot.com/hunter-killer-1/4000-105353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106077/","id":106077,"name":"Freshman Flu","site_detail_url":"https://comicvine.gamespot.com/arana-heart-of-the-spider-1-freshman-flu/4000-106077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241151/","id":241151,"name":"The Coming of the Scorpion","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-19-the-coming-of-the-scorpio/4000-241151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241152/","id":241152,"name":"Where Flies the Beetle","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-20-where-flies-the-beetle/4000-241152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255729/","id":255729,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-why-not-1-tpb/4000-255729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298162/","id":298162,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-35/4000-298162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101146/","id":101146,"name":"You Only Hurt--!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-82-you-only-hurt-/4000-101146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573665/","id":573665,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-36/4000-573665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285412/","id":285412,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-23/4000-285412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101140/","id":101140,"name":"Sins Remembered: Sarah's Story, Part 2","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-24-sins-remembered-sarahs-s/4000-101140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167592/","id":167592,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-sins-past-1-volume-8/4000-167592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226156/","id":226156,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/essential-luke-cage-power-man-1-volume-one/4000-226156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715465/","id":715465,"name":"Terror from the Deep!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-113-terror-from-/4000-715465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101139/","id":101139,"name":"Sins Remembered: Sarah's Story, Part 1","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-23-sins-remembered-sarahs-s/4000-101139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101409/","id":101409,"name":"Breakout, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-3-breakout-pt-3/4000-101409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98172/","id":98172,"name":"Until the Spring","site_detail_url":"https://comicvine.gamespot.com/fables-33-until-the-spring/4000-98172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99465/","id":99465,"name":"Enemy Of The State, Part 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-24-enemy-of-the-state-part-5/4000-99465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119925/","id":119925,"name":"Dead Man Walking","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-2-dead-man-walking/4000-119925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97649/","id":97649,"name":"The Last Stand, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-10-the-last-stand-part-2/4000-97649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100920/","id":100920,"name":"Brothers & Keepers: Part 4 of 5/Brothers and Keepers: Part 4: I, M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-11-brothers-keepers-par/4000-100920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99216/","id":99216,"name":"Sword and Claw","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-4-sword-and-claw/4000-99216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183008/","id":183008,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-back-to-school-1-volume-1/4000-183008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111146/","id":111146,"name":"Ghosts On The Tracks, Part 1: And Kurt Hopped The A-Train…","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-5-ghosts-on-the-tracks-part-1-and-kur/4000-111146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114065/","id":114065,"name":"Once Burned, Twice Shy","site_detail_url":"https://comicvine.gamespot.com/madrox-5-once-burned-twice-shy/4000-114065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99885/","id":99885,"name":"Quiet, Part 4","site_detail_url":"https://comicvine.gamespot.com/mystique-23-quiet-part-4/4000-99885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114311/","id":114311,"name":"The Cubicle and Hang Tight","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-7-the-cubicle-and-hang-tight/4000-114311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97359/","id":97359,"name":"Foes, Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-1-foes-part-1/4000-97359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120032/","id":120032,"name":"The Read Menace!","site_detail_url":"https://comicvine.gamespot.com/the-simpsons-futurama-crossover-crisis-ii-2-the-re/4000-120032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103520/","id":103520,"name":"Picture Perfect","site_detail_url":"https://comicvine.gamespot.com/spider-manhuman-torch-1-picture-perfect/4000-103520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234969/","id":234969,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-golden-age-captain-america-1-vo/4000-234969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284800/","id":284800,"name":"Assassino implacabile","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-276-assassino-implacabile/4000-284800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103909/","id":103909,"name":"Strange Part 5","site_detail_url":"https://comicvine.gamespot.com/strange-5-strange-part-5/4000-103909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159612/","id":159612,"name":"","site_detail_url":"https://comicvine.gamespot.com/disney-adventures-comic-zone-3/4000-159612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118086/","id":118086,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-6/4000-118086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111330/","id":111330,"name":"The Path","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-9-the-path/4000-111330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101026/","id":101026,"name":"Counting Coup Part 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-212-counting-coup-part-1/4000-101026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118085/","id":118085,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-5/4000-118085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105569/","id":105569,"name":"Golden Child, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-3-golden-child-part-3/4000-105569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113502/","id":113502,"name":"Sins Past, Part 6","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-514-sins-past-part-6/4000-113502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113503/","id":113503,"name":"Skin Deep, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-515-skin-deep-part-1/4000-113503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131966/","id":131966,"name":"Eyes Without A Face, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-13-eyes-without-a-face-part-1/4000-131966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120737/","id":120737,"name":"Underground, Part 2","site_detail_url":"https://comicvine.gamespot.com/district-x-8-underground-part-2/4000-120737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106767/","id":106767,"name":"Revelation","site_detail_url":"https://comicvine.gamespot.com/x-force-5-revelation/4000-106767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189515/","id":189515,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-karen-page-had-lived-1/4000-189515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189816/","id":189816,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-red-x-mas-1/4000-189816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228235/","id":228235,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-3-volume-3/4000-228235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235528/","id":235528,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-aunt-may-had-died-instead-of-uncle-ben-1/4000-235528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241149/","id":241149,"name":"The End of Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-17-the-end-of-spider-man/4000-241149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241150/","id":241150,"name":"Spidey Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-18-spidey-strikes-back/4000-241150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291419/","id":291419,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-76/4000-291419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101145/","id":101145,"name":"I Scorn the Body Electric!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-81-i-scorn-the-body-electric/4000-101145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298161/","id":298161,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-34/4000-298161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285411/","id":285411,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-22/4000-285411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198648/","id":198648,"name":"An Epic Tale of Three Worlds; Part 1 Crossover; Part 2 The Power...and the Publisher; Part 3 With Great Marketing...","site_detail_url":"https://comicvine.gamespot.com/stan-lees-alexa-1-an-epic-tale-of-three-worlds-par/4000-198648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715463/","id":715463,"name":"At the Mercy of the Mandarin!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-112-at-the-mercy/4000-715463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99114/","id":99114,"name":"Bump In The Night, Part 3","site_detail_url":"https://comicvine.gamespot.com/exiles-57-bump-in-the-night-part-3/4000-99114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99113/","id":99113,"name":"Bump In The Night, Part 2","site_detail_url":"https://comicvine.gamespot.com/exiles-56-bump-in-the-night-part-2/4000-99113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186695/","id":186695,"name":"Marvel Knights Spider-Man: Venomous","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-venomous-1-marvel-knight/4000-186695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715236/","id":715236,"name":"Surfing to the Stars!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-111-surfing-to-t/4000-715236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99112/","id":99112,"name":"Bump In The Night, Part 1","site_detail_url":"https://comicvine.gamespot.com/exiles-55-bump-in-the-night-part-1/4000-99112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97648/","id":97648,"name":"The Last Stand, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-9-the-last-stand-part-1/4000-97648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98171/","id":98171,"name":"The Dark, Killing Winter","site_detail_url":"https://comicvine.gamespot.com/fables-32-the-dark-killing-winter/4000-98171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97344/","id":97344,"name":"Enemy Of The State, Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-23-enemy-of-the-state-part-4/4000-97344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107329/","id":107329,"name":"Gods & Monsters","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-1-gods-monsters/4000-107329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101413/","id":101413,"name":"Out of Time (Part 2 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-2-out-of-time-part-2-of-6/4000-101413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99214/","id":99214,"name":"The Games People Play","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-2-the-games-people-play/4000-99214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99215/","id":99215,"name":"Heavy Burdens","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-3-heavy-burdens/4000-99215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96792/","id":96792,"name":"Skeeter","site_detail_url":"https://comicvine.gamespot.com/she-hulk-10-skeeter/4000-96792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110977/","id":110977,"name":"The Devil Inside, Part 4: Exorcism","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-4-the-devil-inside-part-4-exorcism/4000-110977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114064/","id":114064,"name":"The Bigger Heat","site_detail_url":"https://comicvine.gamespot.com/madrox-4-the-bigger-heat/4000-114064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101138/","id":101138,"name":"The Infernal Triangle","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-22-the-infernal-triangle/4000-101138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118082/","id":118082,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-3/4000-118082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100919/","id":100919,"name":"Brothers and Keepers: Part 3: The Killers Club/Brothers and Keepers: Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-10-brothers-and-keepers/4000-100919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279049/","id":279049,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-stan-lee-1-hctpb/4000-279049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284802/","id":284802,"name":"Colpevole di omicidio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-275-colpevole-di-omicidio/4000-284802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301403/","id":301403,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-and-thing-hard-knocks-1-hctpb/4000-301403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268657/","id":268657,"name":"","site_detail_url":"https://comicvine.gamespot.com/jsa-princes-of-darkness-1/4000-268657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103908/","id":103908,"name":"Strange Part 4","site_detail_url":"https://comicvine.gamespot.com/strange-4-strange-part-4/4000-103908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137951/","id":137951,"name":"Devil's Due: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-elektra-5-devils-due-part-5/4000-137951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118084/","id":118084,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-4/4000-118084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111627/","id":111627,"name":"Tag Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-7-tag-chapter-two/4000-111627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101025/","id":101025,"name":"To the Victors, The Spoils","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-211-to-the-victors-the-spoils/4000-101025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100974/","id":100974,"name":"Strange","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-70-strange/4000-100974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110354/","id":110354,"name":"Chapter Seven: The Hero's Life","site_detail_url":"https://comicvine.gamespot.com/identity-crisis-7-chapter-seven-the-heros-life/4000-110354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131965/","id":131965,"name":"The Stuff of Nightmares, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-12-the-stuff-of-nightmares-part-3/4000-131965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150992/","id":150992,"name":"Rising Storm, Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-520-rising-storm-part-1/4000-150992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113501/","id":113501,"name":"Sins Past, Part 5","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-513-sins-past-part-5/4000-113501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118019/","id":118019,"name":"Underground, Part 1","site_detail_url":"https://comicvine.gamespot.com/district-x-7-underground-part-1/4000-118019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124231/","id":124231,"name":"","site_detail_url":"https://comicvine.gamespot.com/whahuh-1/4000-124231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105549/","id":105549,"name":"Golden Child, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-1-golden-child-part-1/4000-105549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105568/","id":105568,"name":"Golden Child, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-2-golden-child-part-2/4000-105568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117113/","id":117113,"name":"Becoming","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-6-becoming/4000-117113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99686/","id":99686,"name":"","site_detail_url":"https://comicvine.gamespot.com/powerless-6/4000-99686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222334/","id":222334,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-directors-cut-1/4000-222334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241146/","id":241146,"name":"Duel With Daredevil","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-15-duel-with-daredevil/4000-241146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241147/","id":241147,"name":"Return of the Green Goblin","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-16-return-of-the-green-gobli/4000-241147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258528/","id":258528,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-the-stuff-of-nightmares-1-volume-/4000-258528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285456/","id":285456,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-john-romita-classic-spiderman-73/4000-285456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158094/","id":158094,"name":"Old Enemies Never Die; Tangled Webs; If He Should Punch Me; Spider-Man 2099; The Devil And Mrs. Parker; To Serve And Protect","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-1-old-enemies-never-die-tangled-/4000-158094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101144/","id":101144,"name":"Secrets Kill!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-80-secrets-kill/4000-101144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298160/","id":298160,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-33/4000-298160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297468/","id":297468,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-1/4000-297468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573663/","id":573663,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-34/4000-573663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285410/","id":285410,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-21/4000-285410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167594/","id":167594,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-skin-deep-1-volume-9/4000-167594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715376/","id":715376,"name":"At the Mercy of Mysterio!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-110-at-the-mercy/4000-715376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240650/","id":240650,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/mystique-unnatural-1-volume-3/4000-240650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101407/","id":101407,"name":"Breakout, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-1-breakout-pt-1/4000-101407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99111/","id":99111,"name":"Rube Goldberg","site_detail_url":"https://comicvine.gamespot.com/exiles-54-rube-goldberg/4000-99111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140992/","id":140992,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-1-volume-1/4000-140992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99751/","id":99751,"name":"Dangerous, Part 1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-7-dangerous-part-1/4000-99751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97345/","id":97345,"name":"Venomous, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-8-venomous-part-4/4000-97345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101412/","id":101412,"name":"Out of Time (Part 1 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-1-out-of-time-part-1-of-6/4000-101412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98170/","id":98170,"name":"The Long, Hard Fall","site_detail_url":"https://comicvine.gamespot.com/fables-31-the-long-hard-fall/4000-98170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97343/","id":97343,"name":"Enemy Of The State, Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-22-enemy-of-the-state-part-3/4000-97343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97339/","id":97339,"name":"Read 'Em an' Weep","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-21-read-em-an-weep/4000-97339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96812/","id":96812,"name":"Chasing Hellfire, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-452-chasing-hellfire-part-1/4000-96812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167043/","id":167043,"name":"The Cruelest Cut","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-new-age-2-the-cruelest-cut/4000-167043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100918/","id":100918,"name":"Brothers and Keepers: Part 2: Hunters/Brothers & Keepers: Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-9-brothers-and-keepers-/4000-100918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174247/","id":174247,"name":"Wolverine; Black Shadow White Shadow; Life's End","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-wolverine-2-wolverine-black/4000-174247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99213/","id":99213,"name":"One Step Forward","site_detail_url":"https://comicvine.gamespot.com/new-thunderbolts-1-one-step-forward/4000-99213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96791/","id":96791,"name":"Strong Enough","site_detail_url":"https://comicvine.gamespot.com/she-hulk-9-strong-enough/4000-96791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110663/","id":110663,"name":"The Devil Inside, Part 3: Fourteen Demons","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-3-the-devil-inside-part-3-fourteen-de/4000-110663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114063/","id":114063,"name":"Dead Dirty Pool","site_detail_url":"https://comicvine.gamespot.com/madrox-3-dead-dirty-pool/4000-114063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111152/","id":111152,"name":"Witch Hunt, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-81-witch-hunt-part-2/4000-111152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120014/","id":120014,"name":"Slaves Of New New York!","site_detail_url":"https://comicvine.gamespot.com/the-simpsons-futurama-crossover-crisis-ii-1-slaves/4000-120014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111553/","id":111553,"name":"Tag Chapter One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-6-tag-chapter-one/4000-111553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214875/","id":214875,"name":"In The Beginning","site_detail_url":"https://comicvine.gamespot.com/the-punisher-max-1-in-the-beginning/4000-214875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223850/","id":223850,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/arana-the-heart-of-the-spider-1-volume-1/4000-223850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213163/","id":213163,"name":"The First Hundred Days","site_detail_url":"https://comicvine.gamespot.com/ex-machina-the-first-hundred-days-1-the-first-hund/4000-213163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233426/","id":233426,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles-1-volume-one/4000-233426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233671/","id":233671,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-5-volume-5/4000-233671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153625/","id":153625,"name":"Prelude to Infinite Crisis","site_detail_url":"https://comicvine.gamespot.com/prelude-to-infinite-crisis-1-prelude-to-infinite-c/4000-153625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100982/","id":100982,"name":"N-Zone: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-13-n-zone-part-1/4000-100982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97749/","id":97749,"name":"Mother Russia: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-13-mother-russia-part-1/4000-97749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284801/","id":284801,"name":"La cella N.13","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-274-la-cella-n13/4000-284801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298060/","id":298060,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-1/4000-298060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97908/","id":97908,"name":"Strange Part 3","site_detail_url":"https://comicvine.gamespot.com/strange-3-strange-part-3/4000-97908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318248/","id":318248,"name":"Progetto Dakota","site_detail_url":"https://comicvine.gamespot.com/nick-raider-200-progetto-dakota/4000-318248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137950/","id":137950,"name":"Devil's Due: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-elektra-4-devils-due-part-4/4000-137950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118075/","id":118075,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-1/4000-118075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118080/","id":118080,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-2/4000-118080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130020/","id":130020,"name":"Enemies Within","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-2-enemies-within/4000-130020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120068/","id":120068,"name":"Jonah's Holiday Carol / An X-Men X-Mas / The True Meaning of...","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-2004-jonah-s-holiday-carol-/4000-120068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336526/","id":336526,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-2-volume-2/4000-336526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444205/","id":444205,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-twilight-experiment-1-tpb/4000-444205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101024/","id":101024,"name":"Stoned Conclusion","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-210-stoned-conclusion/4000-101024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110353/","id":110353,"name":"Chapter Six: Husbands and Wives","site_detail_url":"https://comicvine.gamespot.com/identity-crisis-6-chapter-six-husbands-and-wives/4000-110353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100995/","id":100995,"name":"Cry Wolf: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-53-cry-wolf-conclusion/4000-100995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312447/","id":312447,"name":"Spider-Man and the Fantastic Four in Hard Choices","site_detail_url":"https://comicvine.gamespot.com/elks-custom-comic-book-1-1-spider-man-and-the-fant/4000-312447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288190/","id":288190,"name":"Fábulas: El Último Castillo","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-278-fabulas-el-ultimo-castillo/4000-288190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236301/","id":236301,"name":"Bitter Rivals","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-bitter-rivals-1-bitter-rivals/4000-236301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151198/","id":151198,"name":"Second Coming, Part 3","site_detail_url":"https://comicvine.gamespot.com/warlock-3-second-coming-part-3/4000-151198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131964/","id":131964,"name":"The Stuff of Nightmares, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-11-the-stuff-of-nightmares-part-2/4000-131964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118702/","id":118702,"name":"Do the Right Thing","site_detail_url":"https://comicvine.gamespot.com/venom-vs-carnage-4-do-the-right-thing/4000-118702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99119/","id":99119,"name":"Pt. 5","site_detail_url":"https://comicvine.gamespot.com/identity-disc-5-pt-5/4000-99119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113500/","id":113500,"name":"Sins Past, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-512-sins-past-part-4/4000-113500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116072/","id":116072,"name":"Mister M, Part 6","site_detail_url":"https://comicvine.gamespot.com/district-x-6-mister-m-part-6/4000-116072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117112/","id":117112,"name":"Roaming","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-5-roaming/4000-117112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241144/","id":241144,"name":"The Grotesque Adventure of the Green Goblin!","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-13-the-grotesque-adventure-o/4000-241144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241145/","id":241145,"name":"Kraven The Hunter","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-14-kraven-the-hunter/4000-241145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99685/","id":99685,"name":"","site_detail_url":"https://comicvine.gamespot.com/powerless-5/4000-99685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337002/","id":337002,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/dc-the-new-frontier-1-vol-1/4000-337002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93546/","id":93546,"name":"When Destiny Calls!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-79-when-destiny-calls/4000-93546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187280/","id":187280,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-disassembled-1-tpb/4000-187280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716005/","id":716005,"name":"The Hunt Is On!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-109-the-hunt-is-/4000-716005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186652/","id":186652,"name":"Spectacular Spider-Man: Disassembled","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-disassembled-1-spectacular-/4000-186652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187287/","id":187287,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-disassembled-iron-man-1-tpb/4000-187287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96130/","id":96130,"name":"The Cruel, Hot Summer","site_detail_url":"https://comicvine.gamespot.com/fables-30-the-cruel-hot-summer/4000-96130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129954/","id":129954,"name":"Blackest Night","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-1-blackest-night/4000-129954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96821/","id":96821,"name":"Enemy Of The State, Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-21-enemy-of-the-state-part-2/4000-96821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96811/","id":96811,"name":"The Cruelest Cut, Part 2: Impediments","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-451-the-cruelest-cut-part-2-impe/4000-96811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99922/","id":99922,"name":"The Singularity, Part 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-89-the-singularity-part-4/4000-99922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99110/","id":99110,"name":"Living Planet, Part 2","site_detail_url":"https://comicvine.gamespot.com/exiles-53-living-planet-part-2/4000-99110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96810/","id":96810,"name":"The Cruelest Cut, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-450-the-cruelest-cut-part-1/4000-96810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96927/","id":96927,"name":"Venomous, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-7-venomous-part-3/4000-96927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99097/","id":99097,"name":"Super Patriot (Part 4)","site_detail_url":"https://comicvine.gamespot.com/captain-america-32-super-patriot-part-4/4000-99097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100917/","id":100917,"name":"Brothers and Keepers (Part 1): Death By Design","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-8-brothers-and-keepers-/4000-100917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96790/","id":96790,"name":"Universal Laws, Part 2: Engagement Ring, It's the Lawyer Versus The Warrior","site_detail_url":"https://comicvine.gamespot.com/she-hulk-8-universal-laws-part-2-engagement-ring-i/4000-96790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110610/","id":110610,"name":"The Devil Inside, Part 2: The Knotted Rope","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-2-the-devil-inside-part-2-the-knotted/4000-110610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97935/","id":97935,"name":"The Chicago Whey","site_detail_url":"https://comicvine.gamespot.com/madrox-2-the-chicago-whey/4000-97935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97338/","id":97338,"name":"Changes, Part 4","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-20-changes-part-4/4000-97338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101195/","id":101195,"name":"Chaos (Part 4)","site_detail_url":"https://comicvine.gamespot.com/avengers-503-chaos-part-4/4000-101195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97748/","id":97748,"name":"Kitchen Irish: Part 6","site_detail_url":"https://comicvine.gamespot.com/the-punisher-12-kitchen-irish-part-6/4000-97748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186271/","id":186271,"name":"Gifted","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-gifted-1-gifted/4000-186271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97907/","id":97907,"name":"Strange Part 2","site_detail_url":"https://comicvine.gamespot.com/strange-2-strange-part-2/4000-97907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108479/","id":108479,"name":"","site_detail_url":"https://comicvine.gamespot.com/ocean-1/4000-108479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137355/","id":137355,"name":"Devil's Due: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-elektra-3-devils-due-part-3/4000-137355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119324/","id":119324,"name":"No More, Forever: Book One","site_detail_url":"https://comicvine.gamespot.com/warblade-razors-edge-1-no-more-forever-book-one/4000-119324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101023/","id":101023,"name":"Stoned Part 4","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-209-stoned-part-4/4000-101023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95690/","id":95690,"name":"Even We Don't Believe This","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-66-even-we-dont-believe-this/4000-95690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95691/","id":95691,"name":"Jump the Shark","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-67-jump-the-shark/4000-95691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110351/","id":110351,"name":"Chapter Five: Father's Day","site_detail_url":"https://comicvine.gamespot.com/identity-crisis-5-chapter-five-fathers-day/4000-110351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100994/","id":100994,"name":"Cry Wolf: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-52-cry-wolf-part-3/4000-100994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101004/","id":101004,"name":"Ring of Truth","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-27-ring-of-truth/4000-101004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119058/","id":119058,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-return-of-shadowhawk-1/4000-119058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96682/","id":96682,"name":"State of Emergency, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ex-machina-5-state-of-emergency-conclusion/4000-96682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94296/","id":94296,"name":"Golden Age, Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-66-golden-age-part-1/4000-94296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715643/","id":715643,"name":"The Sting of the Scorpion!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-108-the-sting-of/4000-715643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261060/","id":261060,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-disassembled-1-volume-5/4000-261060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118701/","id":118701,"name":"The Monster Inside Me","site_detail_url":"https://comicvine.gamespot.com/venom-vs-carnage-3-the-monster-inside-me/4000-118701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108151/","id":108151,"name":"","site_detail_url":"https://comicvine.gamespot.com/hunter-killer-0/4000-108151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166523/","id":166523,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/fables-march-of-the-wooden-soldiers-1-volume-4/4000-166523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113499/","id":113499,"name":"Sins Past, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-511-sins-past-part-3/4000-113499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132604/","id":132604,"name":"Fortitude Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-518-fortitude-part-2-of-3/4000-132604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116071/","id":116071,"name":"Mister M, Part 5","site_detail_url":"https://comicvine.gamespot.com/district-x-5-mister-m-part-5/4000-116071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101773/","id":101773,"name":"Twist, Part 5","site_detail_url":"https://comicvine.gamespot.com/venom-18-twist-part-5/4000-101773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117111/","id":117111,"name":"The Sting of Defeat","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-4-the-sting-of-defeat/4000-117111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102171/","id":102171,"name":"Witch Hunt, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-80-witch-hunt-part-1/4000-102171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204696/","id":204696,"name":null,"site_detail_url":"https://comicvine.gamespot.com/venom-twist-1/4000-204696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131963/","id":131963,"name":"The Stuff of Nightmares, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-10-the-stuff-of-nightmares-part-1/4000-131963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241143/","id":241143,"name":"The Menace of Mysterio","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-12-the-menace-of-mysterio/4000-241143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141438/","id":141438,"name":"Unmasked By Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-11-unmasked-by-doctor-octopu/4000-141438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172665/","id":172665,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-2099-1/4000-172665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99684/","id":99684,"name":"","site_detail_url":"https://comicvine.gamespot.com/powerless-4/4000-99684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172918/","id":172918,"name":null,"site_detail_url":"https://comicvine.gamespot.com/black-panther-2099-1/4000-172918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93545/","id":93545,"name":"The People Played By Games!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-78-the-people-played-by-games/4000-93545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99118/","id":99118,"name":"Pt. 4","site_detail_url":"https://comicvine.gamespot.com/identity-disc-4-pt-4/4000-99118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219194/","id":219194,"name":"Outsiders: Sum of All Evil","site_detail_url":"https://comicvine.gamespot.com/outsiders-sum-of-all-evil-1-outsiders-sum-of-all-e/4000-219194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716004/","id":716004,"name":"Crushed by the Kingpin!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-107-crushed-by-t/4000-716004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99109/","id":99109,"name":"Living Planet, Part 1","site_detail_url":"https://comicvine.gamespot.com/exiles-52-living-planet-part-1/4000-99109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99881/","id":99881,"name":"Ingression","site_detail_url":"https://comicvine.gamespot.com/mystique-19-ingression/4000-99881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151196/","id":151196,"name":"Second Coming","site_detail_url":"https://comicvine.gamespot.com/warlock-1-second-coming/4000-151196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96129/","id":96129,"name":"Frankenstein Versus the Wolf Man: War Stories, Part Two","site_detail_url":"https://comicvine.gamespot.com/fables-29-frankenstein-versus-the-wolf-man-war-sto/4000-96129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99921/","id":99921,"name":"The Singularity, Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-88-the-singularity-part-3/4000-99921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96926/","id":96926,"name":"Venomous, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-6-venomous-part-2/4000-96926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166888/","id":166888,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/she-hulk-single-green-female-1-volume-1/4000-166888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94294/","id":94294,"name":"Lost in Translation","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-7-lost-in-translation/4000-94294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96789/","id":96789,"name":"Universal Laws, Part 1: Space Cases","site_detail_url":"https://comicvine.gamespot.com/she-hulk-7-universal-laws-part-1-space-cases/4000-96789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96819/","id":96819,"name":"Return Of The Native, Part 7","site_detail_url":"https://comicvine.gamespot.com/wolverine-19-return-of-the-native-part-7/4000-96819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110544/","id":110544,"name":"The Devil Inside, Part 1: The Locked Room","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-1-the-devil-inside-part-1-the-locked-/4000-110544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105842/","id":105842,"name":"The Burnt Offering, Part 1: Headless Horsemen","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-7-the-burnt-offering-part-1-headles/4000-105842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97934/","id":97934,"name":"Soul of a Gumshoe","site_detail_url":"https://comicvine.gamespot.com/madrox-1-soul-of-a-gumshoe/4000-97934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97337/","id":97337,"name":"Changes, Part 3","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-19-changes-part-3/4000-97337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92161/","id":92161,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-end-5-part-5/4000-92161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224923/","id":224923,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/absolute-planetary-1-vol-1/4000-224923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240632/","id":240632,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/mystique-tinker-tailor-mutant-spy-1-volume-2/4000-240632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97747/","id":97747,"name":"Kitchen Irish: Part 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-11-kitchen-irish-part-5/4000-97747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279248/","id":279248,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jack-kirby-1-volume-one/4000-279248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284805/","id":284805,"name":"La notte dei non-morti","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-272-la-notte-dei-non-morti/4000-284805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97906/","id":97906,"name":"Strange Part 1","site_detail_url":"https://comicvine.gamespot.com/strange-1-strange-part-1/4000-97906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137356/","id":137356,"name":"Devil's Due: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-elektra-2-devils-due-part-2/4000-137356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99295/","id":99295,"name":"Thin Air Part 5","site_detail_url":"https://comicvine.gamespot.com/the-pulse-5-thin-air-part-5/4000-99295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101022/","id":101022,"name":"Stoned Part 3","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-208-stoned-part-3/4000-101022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93551/","id":93551,"name":"Detention","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-65-detention/4000-93551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108241/","id":108241,"name":"Chapter Four: Who Benefits","site_detail_url":"https://comicvine.gamespot.com/identity-crisis-4-chapter-four-who-benefits/4000-108241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100993/","id":100993,"name":"Cry Wolf: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-51-cry-wolf-part-2/4000-100993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96681/","id":96681,"name":"State of Emergency, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/ex-machina-4-state-of-emergency-chapter-three/4000-96681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345493/","id":345493,"name":"You Only Live Once","site_detail_url":"https://comicvine.gamespot.com/the-agents-1-you-only-live-once/4000-345493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303916/","id":303916,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/essential-the-tomb-of-dracula-3-vol-3/4000-303916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134248/","id":134248,"name":"","site_detail_url":"https://comicvine.gamespot.com/witches-4/4000-134248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105922/","id":105922,"name":"Cops and Monsters","site_detail_url":"https://comicvine.gamespot.com/venom-vs-carnage-2-cops-and-monsters/4000-105922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113498/","id":113498,"name":"Sins Past, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-510-sins-past-part-2/4000-113498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116070/","id":116070,"name":"Mister M, Part 4","site_detail_url":"https://comicvine.gamespot.com/district-x-4-mister-m-part-4/4000-116070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101772/","id":101772,"name":"Twist, Part 4","site_detail_url":"https://comicvine.gamespot.com/venom-17-twist-part-4/4000-101772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117110/","id":117110,"name":"Game Set","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-3-game-set/4000-117110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131962/","id":131962,"name":"Frozen, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-9-frozen-part-2/4000-131962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241142/","id":241142,"name":"The Return Of Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/marvel-age-spider-man-10-the-return-of-doctor-octo/4000-241142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397947/","id":397947,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-homeland-1-volume-5/4000-397947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117107/","id":117107,"name":"A Taste for Treachery!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-77-a-taste-for-treachery/4000-117107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132606/","id":132606,"name":"Fortitude Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-517-fortitude-part-1-of-3/4000-132606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99117/","id":99117,"name":"Pt. 3","site_detail_url":"https://comicvine.gamespot.com/identity-disc-3-pt-3/4000-99117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167591/","id":167591,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-book-of-ezekiel-1-volum/4000-167591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716003/","id":716003,"name":"Lizard Let Loose!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-106-lizard-let-l/4000-716003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186694/","id":186694,"name":"Marvel Knights Spider-Man: Down Among the Dead Men","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-down-among-the-dead-men-/4000-186694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110260/","id":110260,"name":"Carnage: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-63-carnage-part-4/4000-110260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93550/","id":93550,"name":"Carnage: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-64-carnage-part-5/4000-93550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96925/","id":96925,"name":"Venomous, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-5-venomous-part-1/4000-96925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99920/","id":99920,"name":"The Singularity, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-87-the-singularity-part-2/4000-99920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96788/","id":96788,"name":"The Big Picture Part 2: Minor Implications","site_detail_url":"https://comicvine.gamespot.com/she-hulk-6-the-big-picture-part-2-minor-implicatio/4000-96788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105832/","id":105832,"name":"If Looks Could Kill, Part 6: I've Got You Under My Skin","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-6-if-looks-could-kill-part-6-ive-go/4000-105832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97336/","id":97336,"name":"Changes, Part 2","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-18-changes-part-2/4000-97336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102170/","id":102170,"name":"Signs and Portents Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-79-signs-and-portents-part-2/4000-102170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96680/","id":96680,"name":"State of Emergency Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ex-machina-3-state-of-emergency-chapter-two/4000-96680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90339/","id":90339,"name":"Chaos (Part 2)","site_detail_url":"https://comicvine.gamespot.com/avengers-501-chaos-part-2/4000-90339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233668/","id":233668,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-4-volume-4/4000-233668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237584/","id":237584,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-return-of-the-native-1-volume-3/4000-237584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97746/","id":97746,"name":"Kitchen Irish: Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-10-kitchen-irish-part-4/4000-97746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268656/","id":268656,"name":"","site_detail_url":"https://comicvine.gamespot.com/jsa-savage-times-1/4000-268656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284808/","id":284808,"name":"L'ora dei lupi","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-271-lora-dei-lupi/4000-284808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155294/","id":155294,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-iron-fist-1-volume-1/4000-155294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125640/","id":125640,"name":"Devil's Due: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-elektra-1-devils-due-part-1/4000-125640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96128/","id":96128,"name":"Dog Company: War Stories, Part One","site_detail_url":"https://comicvine.gamespot.com/fables-28-dog-company-war-stories-part-one/4000-96128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105579/","id":105579,"name":"The Radiant Heavenly City","site_detail_url":"https://comicvine.gamespot.com/promethea-31-the-radiant-heavenly-city/4000-105579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106865/","id":106865,"name":"Secret War Book 3","site_detail_url":"https://comicvine.gamespot.com/secret-war-3-secret-war-book-3/4000-106865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97720/","id":97720,"name":"Candle in a Hurricane","site_detail_url":"https://comicvine.gamespot.com/justice-league-elite-2-candle-in-a-hurricane/4000-97720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101021/","id":101021,"name":"Stoned Part 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-207-stoned-part-2/4000-101021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234279/","id":234279,"name":"Wonder Woman: Challenge of the Gods","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-challenge-of-the-gods-1-wonder-woman-/4000-234279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300622/","id":300622,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/coup-detat-1-tpb/4000-300622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176555/","id":176555,"name":"The Face and the Brute","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-the-face-and-the-brute-1-t/4000-176555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141392/","id":141392,"name":"Breathless (Part 6)","site_detail_url":"https://comicvine.gamespot.com/iron-fist-6-breathless-part-6/4000-141392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348065/","id":348065,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/essential-monster-of-frankenstein-1-tpb/4000-348065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98099/","id":98099,"name":"Street Life","site_detail_url":"https://comicvine.gamespot.com/the-authority-14-street-life/4000-98099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105908/","id":105908,"name":"Baby Please Don't Go","site_detail_url":"https://comicvine.gamespot.com/venom-vs-carnage-1-baby-please-don-t-go/4000-105908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116069/","id":116069,"name":"Mister M, Part 3","site_detail_url":"https://comicvine.gamespot.com/district-x-3-mister-m-part-3/4000-116069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101771/","id":101771,"name":"Twist, Part 3","site_detail_url":"https://comicvine.gamespot.com/venom-16-twist-part-3/4000-101771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117108/","id":117108,"name":"The Promise","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-2-the-promise/4000-117108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131961/","id":131961,"name":"Frozen, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-8-frozen-part-1/4000-131961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186425/","id":186425,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-bright-new-mourning-1-volume-6/4000-186425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258525/","id":258525,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-wolf-at-the-door-1-volume-1/4000-258525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232245/","id":232245,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-7-volume-7/4000-232245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134247/","id":134247,"name":"The Test","site_detail_url":"https://comicvine.gamespot.com/witches-3-the-test/4000-134247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99116/","id":99116,"name":"Pt. 2","site_detail_url":"https://comicvine.gamespot.com/identity-disc-2-pt-2/4000-99116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117104/","id":117104,"name":"Keeping the Faith","site_detail_url":"https://comicvine.gamespot.com/spider-girl-76-keeping-the-faith/4000-117104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716002/","id":716002,"name":"Doomsday for Spidey!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-105-doomsday-for/4000-716002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236453/","id":236453,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-once-an-invader-1-tpb/4000-236453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579458/","id":579458,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/go-girl-the-time-team-1-volume-1/4000-579458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715683/","id":715683,"name":"Rhino Hunt!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-104-rhino-hunt/4000-715683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248222/","id":248222,"name":"In the Shadow on No Towers","site_detail_url":"https://comicvine.gamespot.com/in-the-shadow-of-no-towers-1-in-the-shadow-on-no-t/4000-248222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105413/","id":105413,"name":"Wannabe: Part Five","site_detail_url":"https://comicvine.gamespot.com/nyx-5-wannabe-part-five/4000-105413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150314/","id":150314,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-4-volume-4/4000-150314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96127/","id":96127,"name":"In Like A Lion - Out on the Lam: Chapter Eight - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-27-in-like-a-lion-out-on-the-lam-chapter-ei/4000-96127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94292/","id":94292,"name":"Jimmy's Way","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-5-jimmys-way/4000-94292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99094/","id":99094,"name":"Super Patriot (Part 1)","site_detail_url":"https://comicvine.gamespot.com/captain-america-29-super-patriot-part-1/4000-99094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99919/","id":99919,"name":"The Singularity, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-86-the-singularity-part-1/4000-99919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96924/","id":96924,"name":"Down Among The Dead Men, Part 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-4-down-among-the-dead-me/4000-96924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96787/","id":96787,"name":"The Big Picture Part 1: More than a Handful","site_detail_url":"https://comicvine.gamespot.com/she-hulk-5-the-big-picture-part-1-more-than-a-hand/4000-96787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105830/","id":105830,"name":"If Looks Could Kill, Part 5: Not That There's Anything Wrong With That","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-5-if-looks-could-kill-part-5-not-th/4000-105830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96662/","id":96662,"name":"Homecoming? Part 4","site_detail_url":"https://comicvine.gamespot.com/green-lantern-179-homecoming-part-4/4000-96662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90025/","id":90025,"name":"The Good And The Famous, Part 5","site_detail_url":"https://comicvine.gamespot.com/x-statix-25-the-good-and-the-famous-part-5/4000-90025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99254/","id":99254,"name":"Love Withdrawl and The Old Ways","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-4-love-withdrawl-and-the-old-/4000-99254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97335/","id":97335,"name":"Changes, Part 1","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-17-changes-part-1/4000-97335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102169/","id":102169,"name":"Signs and Portents Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-78-signs-and-portents-part-1/4000-102169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107836/","id":107836,"name":"Pyre Part 1","site_detail_url":"https://comicvine.gamespot.com/michael-turner-s-soulfire-1-pyre-part-1/4000-107836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100991/","id":100991,"name":"The Tempest: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-49-the-tempest-part-4/4000-100991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96679/","id":96679,"name":"State of Emergency, Chapter One","site_detail_url":"https://comicvine.gamespot.com/ex-machina-2-state-of-emergency-chapter-one/4000-96679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254505/","id":254505,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/witches-the-gathering-1-tpb/4000-254505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258470/","id":258470,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-bullseye-1-tpb/4000-258470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97745/","id":97745,"name":"Kitchen Irish: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-9-kitchen-irish-part-3/4000-97745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284809/","id":284809,"name":"Il gatto che sapeva leggere","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-270-il-gatto-che-sapeva-leggere/4000-284809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171864/","id":171864,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-550/4000-171864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98795/","id":98795,"name":"Fourth Gear","site_detail_url":"https://comicvine.gamespot.com/enginehead-4-fourth-gear/4000-98795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125241/","id":125241,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-17/4000-125241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101020/","id":101020,"name":"Stoned Part 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-206-stoned-part-1/4000-101020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110226/","id":110226,"name":"Carnage: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-61-carnage-part-2/4000-110226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110259/","id":110259,"name":"Carnage: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-62-carnage-part-3/4000-110259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108220/","id":108220,"name":"Chapter Two: House of Lies","site_detail_url":"https://comicvine.gamespot.com/identity-crisis-2-chapter-two-house-of-lies/4000-108220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150147/","id":150147,"name":"Breathless (Part 5)","site_detail_url":"https://comicvine.gamespot.com/iron-fist-5-breathless-part-5/4000-150147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90338/","id":90338,"name":"Chaos (Part 1)","site_detail_url":"https://comicvine.gamespot.com/avengers-500-chaos-part-1/4000-90338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99115/","id":99115,"name":"Pt. 1","site_detail_url":"https://comicvine.gamespot.com/identity-disc-1-pt-1/4000-99115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113497/","id":113497,"name":"Sins Past, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-509-sins-past-part-1/4000-113497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116067/","id":116067,"name":"Mister M, Part 2","site_detail_url":"https://comicvine.gamespot.com/district-x-2-mister-m-part-2/4000-116067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110252/","id":110252,"name":"Not An Angel","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-1-not-an-angel/4000-110252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99681/","id":99681,"name":"","site_detail_url":"https://comicvine.gamespot.com/powerless-1/4000-99681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117103/","id":117103,"name":"Team Spider","site_detail_url":"https://comicvine.gamespot.com/spider-girl-75-team-spider/4000-117103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134209/","id":134209,"name":"The Gathering","site_detail_url":"https://comicvine.gamespot.com/witches-1-the-gathering/4000-134209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134210/","id":134210,"name":"The Brood","site_detail_url":"https://comicvine.gamespot.com/witches-2-the-brood/4000-134210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355717/","id":355717,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/powers-the-sellouts-1-vol-6/4000-355717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140372/","id":140372,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/action-heroes-archives-1-volume-1/4000-140372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715682/","id":715682,"name":"Stop the Sandman","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-103-stop-the-san/4000-715682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97744/","id":97744,"name":"Kitchen Irish: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-8-kitchen-irish-part-2/4000-97744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294019/","id":294019,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-mike-deodato-jr-1-tpb/4000-294019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96923/","id":96923,"name":"Down Among The Dead Men, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-3-down-among-the-dead-me/4000-96923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141195/","id":141195,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-6-volume-6/4000-141195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96126/","id":96126,"name":"The Battle of Fabletown: Chapter Seven - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-26-the-battle-of-fabletown-chapter-seven-ma/4000-96126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99917/","id":99917,"name":"Turf War, Part 1: When Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/iron-man-84-turf-war-part-1-when-worlds-collide/4000-99917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96985/","id":96985,"name":"Under My Skin, Part 1","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-15-under-my-skin-part-1/4000-96985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99918/","id":99918,"name":"Turf War, Part 2: Uninvited Guests","site_detail_url":"https://comicvine.gamespot.com/iron-man-85-turf-war-part-2-uninvited-guests/4000-99918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92801/","id":92801,"name":"Earn Your Wings, Part 3","site_detail_url":"https://comicvine.gamespot.com/exiles-48-earn-your-wings-part-3/4000-92801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105831/","id":105831,"name":"If Looks Could Kill, Part 4: Nothing a Little Make-Up Couldn't Fix","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-4-if-looks-could-kill-part-4-nothin/4000-105831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97334/","id":97334,"name":"Under My Skin, Part 2","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-16-under-my-skin-part-2/4000-97334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102168/","id":102168,"name":"Strength and Weakness Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-77-strength-and-weakness-part-2/4000-102168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96678/","id":96678,"name":"The Pilot","site_detail_url":"https://comicvine.gamespot.com/ex-machina-1-the-pilot/4000-96678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111744/","id":111744,"name":"Doom: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-8-doom-part-2/4000-111744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240498/","id":240498,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/mystique-drop-dead-gorgeous-1-volume-1/4000-240498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133327/","id":133327,"name":"Down To Earth","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-down-to-earth-1-down-to-earth/4000-133327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97743/","id":97743,"name":"Kitchen Irish, Part One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-7-kitchen-irish-part-one/4000-97743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111743/","id":111743,"name":"Doom: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-7-doom-part-1/4000-111743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304352/","id":304352,"name":"Sins Past Part One","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-509-directors-cut-1-sins-past-p/4000-304352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318467/","id":318467,"name":"Programma “Multilife”","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-269-programma-multilife/4000-318467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318762/","id":318762,"name":"Gli uomini rettile - La macchina del tempo","site_detail_url":"https://comicvine.gamespot.com/maxi-martin-mystere-1-gli-uomini-rettile-la-macchi/4000-318762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98794/","id":98794,"name":"Third Gear","site_detail_url":"https://comicvine.gamespot.com/enginehead-3-third-gear/4000-98794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383453/","id":383453,"name":"Человек-Паук 2: Спецвыпуск","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-2-spetsvypusk-1--2/4000-383453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96786/","id":96786,"name":"Web of Lies","site_detail_url":"https://comicvine.gamespot.com/she-hulk-4-web-of-lies/4000-96786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108082/","id":108082,"name":"Carnage: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-60-carnage-part-1/4000-108082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125240/","id":125240,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-16/4000-125240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100990/","id":100990,"name":"The Tempest: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-48-the-tempest-part-3/4000-100990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150146/","id":150146,"name":"Breathless (Part 4)","site_detail_url":"https://comicvine.gamespot.com/iron-fist-4-breathless-part-4/4000-150146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116029/","id":116029,"name":"Mister M, Part 1","site_detail_url":"https://comicvine.gamespot.com/district-x-1-mister-m-part-1/4000-116029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113495/","id":113495,"name":"The Book Of Ezekiel: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-507-the-book-of-ezekiel-cha/4000-113495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96954/","id":96954,"name":"Twist, Part 2","site_detail_url":"https://comicvine.gamespot.com/venom-15-twist-part-2/4000-96954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131254/","id":131254,"name":"The Pine Barrens Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-7-the-pine-barrens-part-3-of-3/4000-131254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117102/","id":117102,"name":"All Men Are Jerks!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-73-all-men-are-jerks/4000-117102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117105/","id":117105,"name":"Buried Alive!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-74-buried-alive/4000-117105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715680/","id":715680,"name":"Robot Rampage!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-102-robot-rampag/4000-715680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254184/","id":254184,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-old-soldiers-1-tpb/4000-254184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715678/","id":715678,"name":"Night of the Goblin!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-101-night-of-the/4000-715678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96922/","id":96922,"name":"Down Among The Dead Men, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-2-down-among-the-dead-me/4000-96922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97742/","id":97742,"name":"In The Beginning: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-punisher-6-in-the-beginning-conclusion/4000-97742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96125/","id":96125,"name":"Our Right to Assemble Issue: Chapter Six - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-25-our-right-to-assemble-issue-chapter-six-/4000-96125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92800/","id":92800,"name":"Earn Your Wings, Part 2","site_detail_url":"https://comicvine.gamespot.com/exiles-47-earn-your-wings-part-2/4000-92800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105829/","id":105829,"name":"If Looks Could Kill, Part 3","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-3-if-looks-could-kill-part-3/4000-105829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99876/","id":99876,"name":"Unnatural, Part 1","site_detail_url":"https://comicvine.gamespot.com/mystique-14-unnatural-part-1/4000-99876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102167/","id":102167,"name":"Strength and Weakness Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-76-strength-and-weakness-part-1/4000-102167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96984/","id":96984,"name":"Here There Be Monsters","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-14-here-there-be-monsters/4000-96984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318466/","id":318466,"name":"La pietra caduta dal cielo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-268-la-pietra-caduta-dal-cielo/4000-318466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98793/","id":98793,"name":"Second Gear","site_detail_url":"https://comicvine.gamespot.com/enginehead-2-second-gear/4000-98793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105578/","id":105578,"name":"Everything Must Go!","site_detail_url":"https://comicvine.gamespot.com/promethea-30-everything-must-go/4000-105578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385335/","id":385335,"name":"Человек-Паук, Каратель и Дардевил. Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-9--2/4000-385335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96785/","id":96785,"name":"Dead Certain","site_detail_url":"https://comicvine.gamespot.com/she-hulk-3-dead-certain/4000-96785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114545/","id":114545,"name":"Once an Invader (Part 1)","site_detail_url":"https://comicvine.gamespot.com/avengers-82-once-an-invader-part-1/4000-114545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109048/","id":109048,"name":"Bitter Pills - Part Two","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-204-bitter-pills-part-two/4000-109048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108083/","id":108083,"name":"Hollywood: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-59-hollywood-part-6/4000-108083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100988/","id":100988,"name":"The Tempest: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-46-the-tempest-part-1/4000-100988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150143/","id":150143,"name":"Breathless (Part 3)","site_detail_url":"https://comicvine.gamespot.com/iron-fist-3-breathless-part-3/4000-150143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113494/","id":113494,"name":"The Book Of Ezekiel: Chapter One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-506-the-book-of-ezekiel-cha/4000-113494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102166/","id":102166,"name":"Death Pool Finale","site_detail_url":"https://comicvine.gamespot.com/witchblade-75-death-pool-finale/4000-102166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131270/","id":131270,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-the-end-1/4000-131270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131250/","id":131250,"name":"The Pine Barrens Part 1of 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-5-the-pine-barrens-part-1of-3/4000-131250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131251/","id":131251,"name":"The Pine Barrens Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-6-the-pine-barrens-part-2-of-3/4000-131251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117100/","id":117100,"name":"The Games Villains Play!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-72-the-games-villains-play/4000-117100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108413/","id":108413,"name":"The More Things Change...","site_detail_url":"https://comicvine.gamespot.com/new-mutants-13-the-more-things-change/4000-108413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259633/","id":259633,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/the-best-of-spider-man-3-volume-three/4000-259633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322107/","id":322107,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/sleeper-all-false-moves-2-book-2/4000-322107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295284/","id":295284,"name":"Rampage in the City","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-100-rampage-in-t/4000-295284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92798/","id":92798,"name":"A Blink in Time (part 3 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-45-a-blink-in-time-part-3-of-3/4000-92798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150469/","id":150469,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-2-volume-2/4000-150469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96124/","id":96124,"name":"The Letter: Chapter Five of March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-24-the-letter-chapter-five-of-march-of-the-/4000-96124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162204/","id":162204,"name":"Homeland Security","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-homeland-security/4000-162204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96921/","id":96921,"name":"Down Among The Dead Men, Part One","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-1-down-among-the-dead-me/4000-96921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92799/","id":92799,"name":"Earn Your Wings, Part 1","site_detail_url":"https://comicvine.gamespot.com/exiles-46-earn-your-wings-part-1/4000-92799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105828/","id":105828,"name":"If Looks Could Kill, Part 2","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-2-if-looks-could-kill-part-2/4000-105828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108671/","id":108671,"name":"The Good And The Famous, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-statix-21-the-good-and-the-famous-part-1/4000-108671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165959/","id":165959,"name":"","site_detail_url":"https://comicvine.gamespot.com/nyc-mech-3/4000-165959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106437/","id":106437,"name":"A Bright New Mourning, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-155-a-bright-new-mourning-part-1/4000-106437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196062/","id":196062,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-2-the-movie-1/4000-196062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97741/","id":97741,"name":"In The Beginning: Part 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-5-in-the-beginning-part-5/4000-97741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111716/","id":111716,"name":"The Fantastic: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-5-the-fantastic-part-5/4000-111716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89987/","id":89987,"name":"Dead Reckoning","site_detail_url":"https://comicvine.gamespot.com/elektra-35-dead-reckoning/4000-89987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378251/","id":378251,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/my-new-york-diary-1-gn/4000-378251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385333/","id":385333,"name":"Человек-Паук и Каратель","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-7--/4000-385333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385334/","id":385334,"name":"Человек-Паук, Каратель и Дардевил. Часть 1","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-8--1/4000-385334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96784/","id":96784,"name":"Class Action Comics!","site_detail_url":"https://comicvine.gamespot.com/she-hulk-2-class-action-comics/4000-96784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105559/","id":105559,"name":"Of Darkest Nights, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-442-of-darkest-nights-pt-1/4000-105559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109047/","id":109047,"name":"Bitter Pills - Part One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-203-bitter-pills-part-one/4000-109047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108085/","id":108085,"name":"Hollywood: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-56-hollywood-part-3/4000-108085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108084/","id":108084,"name":"Hollywood: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-57-hollywood-part-4/4000-108084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150145/","id":150145,"name":"Breathless (Part 2)","site_detail_url":"https://comicvine.gamespot.com/iron-fist-2-breathless-part-2/4000-150145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114484/","id":114484,"name":"Lionheart of Avalon: Part 5","site_detail_url":"https://comicvine.gamespot.com/avengers-81-lionheart-of-avalon-part-5/4000-114484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166540/","id":166540,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/fables-storybook-love-1-volume-3/4000-166540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113493/","id":113493,"name":"Vibes","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-505-vibes/4000-113493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111322/","id":111322,"name":"The Worms of Madness, Part 1","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-tmnt-3-the-worms-of-madness-part-1/4000-111322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108412/","id":108412,"name":"The Ties That Bind Conclusion: One of Us","site_detail_url":"https://comicvine.gamespot.com/new-mutants-12-the-ties-that-bind-conclusion-one-o/4000-108412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131156/","id":131156,"name":"Wolf at the Door Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-2-wolf-at-the-door-part-2-of-4/4000-131156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131165/","id":131165,"name":"Wolf at the Door Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-4-wolf-at-the-door-part-4-of-4/4000-131165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117091/","id":117091,"name":"Eye of the Beholder","site_detail_url":"https://comicvine.gamespot.com/spider-girl-71-eye-of-the-beholder/4000-117091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167544/","id":167544,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-happy-birthday-1-volume-6/4000-167544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236903/","id":236903,"name":"Cats and Kings","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-cats-and-kings-1-cats-and-king/4000-236903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715640/","id":715640,"name":"Ultimatum!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-98-ultimatum/4000-715640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92797/","id":92797,"name":"A Blink In Time (Part 2 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-44-a-blink-in-time-part-2-of-3/4000-92797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105412/","id":105412,"name":"Wannabe: Part Four","site_detail_url":"https://comicvine.gamespot.com/nyx-4-wannabe-part-four/4000-105412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96123/","id":96123,"name":"Our Second Amendment Issue: Chapter Four - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-23-our-second-amendment-issue-chapter-four-/4000-96123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105577/","id":105577,"name":"Valley of the Dolls","site_detail_url":"https://comicvine.gamespot.com/promethea-29-valley-of-the-dolls/4000-105577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165957/","id":165957,"name":"","site_detail_url":"https://comicvine.gamespot.com/nyc-mech-2/4000-165957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197577/","id":197577,"name":"Marc Silvestri Book 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-legends-6-marc-silvestri-book-1/4000-197577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99321/","id":99321,"name":"Realization","site_detail_url":"https://comicvine.gamespot.com/thor-75-realization/4000-99321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97740/","id":97740,"name":"In The Beginning: Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-4-in-the-beginning-part-4/4000-97740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111715/","id":111715,"name":"The Fantastic: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-4-the-fantastic-part-4/4000-111715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108075/","id":108075,"name":"Hollywood: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-54-hollywood-part-1/4000-108075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108077/","id":108077,"name":"Hollywood: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-55-hollywood-part-2/4000-108077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93964/","id":93964,"name":"Book Three: The Brave and the Bold","site_detail_url":"https://comicvine.gamespot.com/dc-the-new-frontier-3-book-three-the-brave-and-the/4000-93964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383455/","id":383455,"name":"Дардевил - человек без страха: Спецвыпуск","site_detail_url":"https://comicvine.gamespot.com/dardevil-chelovek-bez-strakha-spetsvypusk-1--/4000-383455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385331/","id":385331,"name":"Человек-Паук и Железный Человек. Часть 1","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-5--1/4000-385331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385332/","id":385332,"name":"Человек-Паук и Железный Человек. Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-6--2/4000-385332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96783/","id":96783,"name":"\"The Girl From Gamma Gamma Gamma\"","site_detail_url":"https://comicvine.gamespot.com/she-hulk-1-the-girl-from-gamma-gamma-gamma/4000-96783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121847/","id":121847,"name":"Countdown to Zero","site_detail_url":"https://comicvine.gamespot.com/weapon-x-21-countdown-to-zero/4000-121847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109046/","id":109046,"name":"Leaks","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-202-leaks/4000-109046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150144/","id":150144,"name":"Breathless, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-fist-1-breathless-part-1/4000-150144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763474/","id":763474,"name":"Spider-Man 2","site_detail_url":"https://comicvine.gamespot.com/filmspecial-19-spider-man-2/4000-763474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134698/","id":134698,"name":"Legion, Part 4","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-legion-4-legion-part-4/4000-134698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113492/","id":113492,"name":"The Coming Of Chaos","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-504-the-coming-of-chaos/4000-113492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131121/","id":131121,"name":"Wolf at the Door Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-1-wolf-at-the-door-part-1-of-4/4000-131121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108411/","id":108411,"name":"The Ties That Bind 5 of 6: Shy Girls","site_detail_url":"https://comicvine.gamespot.com/new-mutants-11-the-ties-that-bind-5-of-6-shy-girls/4000-108411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131162/","id":131162,"name":"Wolf at the Door Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-3-wolf-at-the-door-part-3-of-4/4000-131162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92162/","id":92162,"name":"First Blood","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-1-first-blood/4000-92162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92163/","id":92163,"name":"Seeds of Destruction","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-2-seeds-of-destruction/4000-92163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92164/","id":92164,"name":"Heart of Darkness","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-3-heart-of-darkness/4000-92164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92165/","id":92165,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-4/4000-92165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96950/","id":96950,"name":"Patterns, Part 1","site_detail_url":"https://comicvine.gamespot.com/venom-11-patterns-part-1/4000-96950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287502/","id":287502,"name":"","site_detail_url":"https://comicvine.gamespot.com/demolidor-3/4000-287502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117093/","id":117093,"name":"When the Abyss Looks Back!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-70-when-the-abyss-looks-back/4000-117093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592818/","id":592818,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-girl-legacy-1-volume-1/4000-592818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116489/","id":116489,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure-5/4000-116489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715677/","id":715677,"name":"Out of Sight!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-97-out-of-sight/4000-715677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134192/","id":134192,"name":"How I Learned to Love the Hulk","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-13-how-i-learned-to-love-the-hulk/4000-134192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92796/","id":92796,"name":"A Blink in Time (part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-43-a-blink-in-time-part-1-of-3/4000-92796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99873/","id":99873,"name":"Maker's Mark: Part 1","site_detail_url":"https://comicvine.gamespot.com/mystique-11-makers-mark-part-1/4000-99873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102165/","id":102165,"name":"Death Pool Part 5","site_detail_url":"https://comicvine.gamespot.com/witchblade-74-death-pool-part-5/4000-102165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165955/","id":165955,"name":"","site_detail_url":"https://comicvine.gamespot.com/nyc-mech-1/4000-165955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212582/","id":212582,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/human-target-strike-zones-1-tpb/4000-212582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108251/","id":108251,"name":"In The Beginning: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-3-in-the-beginning-part-3/4000-108251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108076/","id":108076,"name":"Daughters","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-53-daughters/4000-108076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105521/","id":105521,"name":"New Mutants: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-42-new-mutants-part-3/4000-105521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111712/","id":111712,"name":"The Fantastic: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-3-the-fantastic-part-3/4000-111712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106863/","id":106863,"name":"Secret War Book 1","site_detail_url":"https://comicvine.gamespot.com/secret-war-1-secret-war-book-1/4000-106863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385330/","id":385330,"name":"Человек-Паук и Халк. Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-4--2/4000-385330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99291/","id":99291,"name":"Thin Air Part 1","site_detail_url":"https://comicvine.gamespot.com/the-pulse-1-thin-air-part-1/4000-99291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109045/","id":109045,"name":"Ripples","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-201-ripples/4000-109045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96122/","id":96122,"name":"Cinderella Libertine","site_detail_url":"https://comicvine.gamespot.com/fables-22-cinderella-libertine/4000-96122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134697/","id":134697,"name":"Legion, Part 3","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-legion-3-legion-part-3/4000-134697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113491/","id":113491,"name":"Chasing A Dark Shadow","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-503-chasing-a-dark-shadow/4000-113491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108410/","id":108410,"name":"The Ties That Bind 4 of 6: A Few Small Repairs","site_detail_url":"https://comicvine.gamespot.com/new-mutants-10-the-ties-that-bind-4-of-6-a-few-sma/4000-108410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232080/","id":232080,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-6-volume-6/4000-232080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89984/","id":89984,"name":"Fever, Part 1","site_detail_url":"https://comicvine.gamespot.com/elektra-32-fever-part-1/4000-89984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287501/","id":287501,"name":"O julgamento do século - Parte dois","site_detail_url":"https://comicvine.gamespot.com/demolidor-2-o-julgamento-do-seculo-parte-dois/4000-287501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117089/","id":117089,"name":"The Rules","site_detail_url":"https://comicvine.gamespot.com/spider-girl-68-the-rules/4000-117089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117090/","id":117090,"name":"Those Who Hunt Monsters!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-69-those-who-hunt-monsters/4000-117090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715676/","id":715676,"name":"Caged!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-96-caged/4000-715676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118139/","id":118139,"name":"Marvel Knights","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-5-marvel-knights/4000-118139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92794/","id":92794,"name":"A Nocturne's Tale (part 1 of 2)","site_detail_url":"https://comicvine.gamespot.com/exiles-41-a-nocturnes-tale-part-1-of-2/4000-92794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96121/","id":96121,"name":"Stop Me If You've Heard This One, But a Man Walks Into a Bar...: Chapter Three - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-21-stop-me-if-youve-heard-this-one-but-a-ma/4000-96121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99251/","id":99251,"name":"Human Interest and Slyde into Destiny","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-1-human-interest-and-slyde-in/4000-99251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102164/","id":102164,"name":"Death Pool Part 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-73-death-pool-part-4/4000-102164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235443/","id":235443,"name":"Blockbuster","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-blockbuster-1-blockbuster/4000-235443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97739/","id":97739,"name":"In The Beginning: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2-in-the-beginning-part-2/4000-97739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97738/","id":97738,"name":"In The Beginning: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-in-the-beginning-part-1/4000-97738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280736/","id":280736,"name":"Book Three: Todd McFarlane","site_detail_url":"https://comicvine.gamespot.com/spider-man-legends-3-book-three-todd-mcfarlane/4000-280736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280738/","id":280738,"name":"Spider-Man and Wolverine","site_detail_url":"https://comicvine.gamespot.com/spider-man-legends-4-spider-man-and-wolverine/4000-280738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108074/","id":108074,"name":"Cat Fight","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-52-cat-fight/4000-108074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318879/","id":318879,"name":"I predatori","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-264-i-predatori/4000-318879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123480/","id":123480,"name":"Homeland, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-22-homeland-part-2/4000-123480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96656/","id":96656,"name":"Wanted - Part Three","site_detail_url":"https://comicvine.gamespot.com/green-lantern-173-wanted-part-three/4000-96656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109044/","id":109044,"name":"Down to Earth - Part Five","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-200-down-to-earth-part-five/4000-109044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113698/","id":113698,"name":"Devil's Work, Part 1: Sacrifice","site_detail_url":"https://comicvine.gamespot.com/outsiders-8-devils-work-part-1-sacrifice/4000-113698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134696/","id":134696,"name":"Legion, Part 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-legion-2-legion-part-2/4000-134696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98094/","id":98094,"name":"Godhead: Episode Four","site_detail_url":"https://comicvine.gamespot.com/the-authority-9-godhead-episode-four/4000-98094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113241/","id":113241,"name":"You Want Pants With That?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-502-you-want-pants-with-tha/4000-113241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108409/","id":108409,"name":"The Ties That Bind 3 of 6","site_detail_url":"https://comicvine.gamespot.com/new-mutants-9-the-ties-that-bind-3-of-6/4000-108409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238437/","id":238437,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/exiles-unnatural-instincts-1-volume-5/4000-238437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287500/","id":287500,"name":"","site_detail_url":"https://comicvine.gamespot.com/demolidor-1/4000-287500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115200/","id":115200,"name":"The Road To Hell","site_detail_url":"https://comicvine.gamespot.com/sleeper-12-the-road-to-hell/4000-115200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715675/","id":715675,"name":"Secrets!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-95-secrets/4000-715675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105411/","id":105411,"name":"Wannabe: Part Three","site_detail_url":"https://comicvine.gamespot.com/nyx-3-wannabe-part-three/4000-105411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111709/","id":111709,"name":"The Fantastic: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-1-the-fantastic-part-1/4000-111709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140396/","id":140396,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-5-volume/4000-140396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96120/","id":96120,"name":"Red, White and Blue: Chapter Two - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-20-red-white-and-blue-chapter-two-march-of-/4000-96120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90004/","id":90004,"name":"Confederacy Of Dunces Part 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-37-confederacy-of-dunces-part-5/4000-90004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114459/","id":114459,"name":"Planet X, Part 5: Phoenix Invictus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-150-planet-x-part-5-phoenix-invictus/4000-114459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186496/","id":186496,"name":"Planet X","site_detail_url":"https://comicvine.gamespot.com/new-x-men-planet-x-1-planet-x/4000-186496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114480/","id":114480,"name":"Full House","site_detail_url":"https://comicvine.gamespot.com/avengers-76-full-house/4000-114480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99508/","id":99508,"name":"Take Me Out To The Ballgame Part Two: The Strike Zone","site_detail_url":"https://comicvine.gamespot.com/human-target-5-take-me-out-to-the-ballgame-part-tw/4000-99508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228234/","id":228234,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-2-volume-2/4000-228234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283183/","id":283183,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-arrow-the-sounds-of-violence-1-tpb/4000-283183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236737/","id":236737,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-brotherhood-1-volume-1/4000-236737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180763/","id":180763,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-losers-ante-up-1-volume-1/4000-180763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134695/","id":134695,"name":"Legion, Part 1","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-legion-1-legion-part-1/4000-134695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123482/","id":123482,"name":"Homeland, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-21-homeland-part-1/4000-123482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114304/","id":114304,"name":"Mission: Unwanted","site_detail_url":"https://comicvine.gamespot.com/weapon-x-17-mission-unwanted/4000-114304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167080/","id":167080,"name":"Metropolis","site_detail_url":"https://comicvine.gamespot.com/superman-secret-identity-2-metropolis/4000-167080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116276/","id":116276,"name":"Chapter 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-5-chapter-5/4000-116276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109043/","id":109043,"name":"Down to Earth - Part Four","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-199-down-to-earth-part-four/4000-109043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106375/","id":106375,"name":"Black Cat","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-50-black-cat/4000-106375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108073/","id":108073,"name":"Shadow Puppets","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-51-shadow-puppets/4000-108073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113697/","id":113697,"name":"Oedipus Rex","site_detail_url":"https://comicvine.gamespot.com/outsiders-7-oedipus-rex/4000-113697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113490/","id":113490,"name":"Saturday in the Park With May","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-501-saturday-in-the-park-wi/4000-113490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108407/","id":108407,"name":"The Ties That Bind 1 of 6: Higher Learning","site_detail_url":"https://comicvine.gamespot.com/new-mutants-7-the-ties-that-bind-1-of-6-higher-lea/4000-108407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108408/","id":108408,"name":"The Ties That Bind Part 2 of 6: Parents Week","site_detail_url":"https://comicvine.gamespot.com/new-mutants-8-the-ties-that-bind-part-2-of-6-paren/4000-108408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219224/","id":219224,"name":"Outsiders: Looking For Trouble","site_detail_url":"https://comicvine.gamespot.com/outsiders-looking-for-trouble-1-outsiders-looking-/4000-219224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92790/","id":92790,"name":"Fantastic Voyage (part 3 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-37-fantastic-voyage-part-3-of-3/4000-92790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105410/","id":105410,"name":"Wannabe: Part Two","site_detail_url":"https://comicvine.gamespot.com/nyx-2-wannabe-part-two/4000-105410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105518/","id":105518,"name":"Blockbuster: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-39-blockbuster-part-6/4000-105518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96119/","id":96119,"name":"Out of the Woods: Chapter One - March of the Wooden Soldiers","site_detail_url":"https://comicvine.gamespot.com/fables-19-out-of-the-woods-chapter-one-march-of-th/4000-96119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138644/","id":138644,"name":"See You in Valhalla","site_detail_url":"https://comicvine.gamespot.com/thor-vikings-5-see-you-in-valhalla/4000-138644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90002/","id":90002,"name":"Confederacy Of Dunces Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-35-confederacy-of-dunces-part-3/4000-90002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90003/","id":90003,"name":"Confederacy Of Dunces Part 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-36-confederacy-of-dunces-part-4/4000-90003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114458/","id":114458,"name":"Planet X, Part 4: Phoenix in Darkness","site_detail_url":"https://comicvine.gamespot.com/new-x-men-149-planet-x-part-4-phoenix-in-darkness/4000-114458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105576/","id":105576,"name":"Don't they know it's the end of the world?","site_detail_url":"https://comicvine.gamespot.com/promethea-28-dont-they-know-its-the-end-of-the-wor/4000-105576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102163/","id":102163,"name":"Death Pool Part 3","site_detail_url":"https://comicvine.gamespot.com/witchblade-72-death-pool-part-3/4000-102163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216547/","id":216547,"name":"Spider-Man: Blue","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-1-spider-man-blue/4000-216547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99507/","id":99507,"name":"Take Me Out To The Ballgame Part One: The Set-Up Man","site_detail_url":"https://comicvine.gamespot.com/human-target-4-take-me-out-to-the-ballgame-part-on/4000-99507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171043/","id":171043,"name":"The Ravager","site_detail_url":"https://comicvine.gamespot.com/teen-titans-12-the-ravager/4000-171043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96715/","id":96715,"name":"Assumed Names","site_detail_url":"https://comicvine.gamespot.com/supreme-power-4-assumed-names/4000-96715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233669/","id":233669,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-2-volume-2/4000-233669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230117/","id":230117,"name":"Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/x-men-days-of-future-past-1-days-of-future-past/4000-230117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273554/","id":273554,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-archives-2-volume-2/4000-273554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293224/","id":293224,"name":"Confederacy of Dunces","site_detail_url":"https://comicvine.gamespot.com/the-punisher-marvel-knightstrade-paperback-6-confe/4000-293224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301526/","id":301526,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/target-avengers-earths-mightiest-heroes-1-tpb/4000-301526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92323/","id":92323,"name":"Virtue, Vice & Pumpkin Pie","site_detail_url":"https://comicvine.gamespot.com/jsa-54-virtue-vice-pumpkin-pie/4000-92323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334846/","id":334846,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-vikings-1-tpb/4000-334846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96654/","id":96654,"name":"Wanted - Part One","site_detail_url":"https://comicvine.gamespot.com/green-lantern-171-wanted-part-one/4000-96654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292341/","id":292341,"name":"Thor: Vikings","site_detail_url":"https://comicvine.gamespot.com/max-4-thor-vikings/4000-292341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123506/","id":123506,"name":"Cap Lives, Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-20-cap-lives-part-4/4000-123506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116274/","id":116274,"name":"Chapter 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-4-chapter-4/4000-116274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399832/","id":399832,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-complete-history-1-hcsc/4000-399832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109042/","id":109042,"name":"Down to Earth - Part Three","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-198-down-to-earth-part-three/4000-109042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110206/","id":110206,"name":"Hero","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-49-hero/4000-110206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104322/","id":104322,"name":"Big Trouble in Little Mogadishu Part 7: The Crew","site_detail_url":"https://comicvine.gamespot.com/crew-7-big-trouble-in-little-mogadishu-part-7-the-/4000-104322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288170/","id":288170,"name":"Fábulas: Rebelión en la Granja","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-258-fabulas-rebelion-en-la-granj/4000-288170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113696/","id":113696,"name":"Brothers In Blood (Part 3): Pandora's Box","site_detail_url":"https://comicvine.gamespot.com/outsiders-6-brothers-in-blood-part-3-pandoras-box/4000-113696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-257822/","id":257822,"name":"Companion","site_detail_url":"https://comicvine.gamespot.com/alan-moores-the-courtyard-companion-1-companion/4000-257822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-257821/","id":257821,"name":"Alan Moore's The Courtyard","site_detail_url":"https://comicvine.gamespot.com/alan-moores-the-courtyard-1-alan-moores-the-courty/4000-257821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322105/","id":322105,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/sleeper-out-in-the-cold-1-book-1/4000-322105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101084/","id":101084,"name":"Homer's America","site_detail_url":"https://comicvine.gamespot.com/simpsons-comics-90-homers-america/4000-101084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105427/","id":105427,"name":"The Brave... and the Bold","site_detail_url":"https://comicvine.gamespot.com/jlaavengers-4-the-brave-and-the-bold/4000-105427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107505/","id":107505,"name":"Happy Birthday, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-500-happy-birthday-part-3/4000-107505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108406/","id":108406,"name":"(Just Like) Starting Over","site_detail_url":"https://comicvine.gamespot.com/new-mutants-6-just-like-starting-over/4000-108406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89980/","id":89980,"name":"Dead to Rights","site_detail_url":"https://comicvine.gamespot.com/elektra-28-dead-to-rights/4000-89980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150842/","id":150842,"name":"","site_detail_url":"https://comicvine.gamespot.com/fables-the-last-castle-1/4000-150842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117067/","id":117067,"name":"Grave Matters","site_detail_url":"https://comicvine.gamespot.com/spider-girl-65-grave-matters/4000-117067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405076/","id":405076,"name":"","site_detail_url":"https://comicvine.gamespot.com/blacksad-1/4000-405076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167543/","id":167543,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-unintended-consequences-1-v/4000-167543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115198/","id":115198,"name":"Bulletproof","site_detail_url":"https://comicvine.gamespot.com/sleeper-10-bulletproof/4000-115198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99126/","id":99126,"name":"Split Decisions, Part 3: Night Eyes","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-62-split-decisions-part-3-night-ey/4000-99126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140397/","id":140397,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-4-volume/4000-140397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92788/","id":92788,"name":"Fantastic Voyage (part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-35-fantastic-voyage-part-1-of-3/4000-92788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92789/","id":92789,"name":"Fantastic Voyage (part 2 of 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-36-fantastic-voyage-part-2-of-3/4000-92789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99869/","id":99869,"name":"Tinker, Tailor, Mutant, Spy, Part 1","site_detail_url":"https://comicvine.gamespot.com/mystique-7-tinker-tailor-mutant-spy-part-1/4000-99869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130321/","id":130321,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-436/4000-130321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96118/","id":96118,"name":"Barleycorn Brides","site_detail_url":"https://comicvine.gamespot.com/fables-18-barleycorn-brides/4000-96118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138643/","id":138643,"name":"Fight the Good Fight","site_detail_url":"https://comicvine.gamespot.com/thor-vikings-4-fight-the-good-fight/4000-138643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166482/","id":166482,"name":"Sul Bordo Della Notte","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-extra-18-sul-bordo-della-notte/4000-166482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113489/","id":113489,"name":"Happy Birthday, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-58-happy-birthday-part-2/4000-113489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90000/","id":90000,"name":"Confederacy Of Dunces, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-33-confederacy-of-dunces-part-1/4000-90000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90001/","id":90001,"name":"Confederacy Of Dunces Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-34-confederacy-of-dunces-part-2/4000-90001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114454/","id":114454,"name":"Planet X, Part 3: Survivor Type","site_detail_url":"https://comicvine.gamespot.com/new-x-men-148-planet-x-part-3-survivor-type/4000-114454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102162/","id":102162,"name":"Death Pool Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-71-death-pool-part-2/4000-102162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110197/","id":110197,"name":"Suspended: Men of Influence","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-47-suspended-men-of-influence/4000-110197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99506/","id":99506,"name":"The Unshredded Man, Part Two: Ready to Die","site_detail_url":"https://comicvine.gamespot.com/human-target-3-the-unshredded-man-part-two-ready-t/4000-99506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228233/","id":228233,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-1-volume-1/4000-228233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110207/","id":110207,"name":"Suspended","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-48-suspended/4000-110207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92142/","id":92142,"name":"The Box","site_detail_url":"https://comicvine.gamespot.com/wolverine-6-the-box/4000-92142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286684/","id":286684,"name":"Cryptic Issue Vol. 1, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-200304-cryptic-issue-vol-1-no-/4000-286684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96653/","id":96653,"name":"Greetings From Sector 2814","site_detail_url":"https://comicvine.gamespot.com/green-lantern-170-greetings-from-sector-2814/4000-96653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116271/","id":116271,"name":"Chapter 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-3-chapter-3/4000-116271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93367/","id":93367,"name":"Trial by Fire: Part Five","site_detail_url":"https://comicvine.gamespot.com/jla-88-trial-by-fire-part-five/4000-93367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109041/","id":109041,"name":"Down to Earth - Part Two","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-197-down-to-earth-part-two/4000-109041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104321/","id":104321,"name":"Big Trouble in Little Mogadishu Part 6: Triage","site_detail_url":"https://comicvine.gamespot.com/crew-6-big-trouble-in-little-mogadishu-part-6-tria/4000-104321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113714/","id":113714,"name":"Brothers In Blood, Part 2: Finders Sleepers","site_detail_url":"https://comicvine.gamespot.com/outsiders-5-brothers-in-blood-part-2-finders-sleep/4000-113714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303910/","id":303910,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/essential-the-tomb-of-dracula-1-vol-1/4000-303910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107651/","id":107651,"name":"Not One of Us","site_detail_url":"https://comicvine.gamespot.com/new-mutants-5-not-one-of-us/4000-107651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175548/","id":175548,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-4/4000-175548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199200/","id":199200,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/jla-liberty-and-justice-1-ogn/4000-199200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218223/","id":218223,"name":"SC/HC","site_detail_url":"https://comicvine.gamespot.com/batman-detective-27-1-schc/4000-218223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391594/","id":391594,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-punisher-streets-of-laredo-1-volume-5/4000-391594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117066/","id":117066,"name":"Outed!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-64-outed/4000-117066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115197/","id":115197,"name":"For The Wicked","site_detail_url":"https://comicvine.gamespot.com/sleeper-9-for-the-wicked/4000-115197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99124/","id":99124,"name":"Split Decisions, Part 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-60-split-decisions-part-1/4000-99124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232085/","id":232085,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-1-volum/4000-232085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93402/","id":93402,"name":"Echo: Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-52-echo-part-2/4000-93402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114452/","id":114452,"name":"Planet X, Part 2: Magneto Superior","site_detail_url":"https://comicvine.gamespot.com/new-x-men-147-planet-x-part-2-magneto-superior/4000-114452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140919/","id":140919,"name":"Burn Part 6","site_detail_url":"https://comicvine.gamespot.com/human-torch-6-burn-part-6/4000-140919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99868/","id":99868,"name":"Drop Dead Gorgeous, Part 6","site_detail_url":"https://comicvine.gamespot.com/mystique-6-drop-dead-gorgeous-part-6/4000-99868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105318/","id":105318,"name":"Wannabe: Part One","site_detail_url":"https://comicvine.gamespot.com/nyx-1-wannabe-part-one/4000-105318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101294/","id":101294,"name":"The Curse, Part 2","site_detail_url":"https://comicvine.gamespot.com/dr-fate-2-the-curse-part-2/4000-101294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93978/","id":93978,"name":"Strange Adventures","site_detail_url":"https://comicvine.gamespot.com/jlaavengers-3-strange-adventures/4000-93978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154744/","id":154744,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-3-volume-3/4000-154744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96117/","id":96117,"name":"Road-Runner and Coyote Ugly: Storybook Love Part Four","site_detail_url":"https://comicvine.gamespot.com/fables-17-road-runner-and-coyote-ugly-storybook-lo/4000-96117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138642/","id":138642,"name":"Time Like a River","site_detail_url":"https://comicvine.gamespot.com/thor-vikings-3-time-like-a-river/4000-138642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113488/","id":113488,"name":"Happy Birthday, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-57-happy-birthday-part-1/4000-113488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102161/","id":102161,"name":"Death Pool Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-70-death-pool-part-1/4000-102161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190361/","id":190361,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-1-volume-1/4000-190361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165376/","id":165376,"name":"NYC","site_detail_url":"https://comicvine.gamespot.com/demo-1-nyc/4000-165376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99505/","id":99505,"name":"The Unshredded Man, Part One: Ground Zero","site_detail_url":"https://comicvine.gamespot.com/human-target-2-the-unshredded-man-part-one-ground-/4000-99505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89999/","id":89999,"name":"Soap","site_detail_url":"https://comicvine.gamespot.com/the-punisher-32-soap/4000-89999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105575/","id":105575,"name":"When It Blows Its Stacks","site_detail_url":"https://comicvine.gamespot.com/promethea-27-when-it-blows-its-stacks/4000-105575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96974/","id":96974,"name":"The Hunger Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-4-the-hunger-part-4-of-5/4000-96974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98955/","id":98955,"name":"Have You Seen Me? Part 5","site_detail_url":"https://comicvine.gamespot.com/case-files-sam-twitch-5-have-you-seen-me-part-5/4000-98955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116253/","id":116253,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-1-chapter-1/4000-116253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109040/","id":109040,"name":"Down to Earth - Part One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-196-down-to-earth-part-one/4000-109040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110199/","id":110199,"name":"Guilt","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-45-guilt/4000-110199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110198/","id":110198,"name":"Afterwards...","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-46-afterwards/4000-110198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111254/","id":111254,"name":"Brothers in Blood, Part One: Small Potatoes","site_detail_url":"https://comicvine.gamespot.com/outsiders-4-brothers-in-blood-part-one-small-potat/4000-111254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312770/","id":312770,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-19/4000-312770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175546/","id":175546,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-3/4000-175546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216231/","id":216231,"name":"Chapter Two: On the Sidewalks of New York","site_detail_url":"https://comicvine.gamespot.com/arrowsmith-2-chapter-two-on-the-sidewalks-of-new-y/4000-216231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117063/","id":117063,"name":"If This Be My Destiny!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-63-if-this-be-my-destiny/4000-117063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154311/","id":154311,"name":"Ghost to Ghost TV; Lean, Mean Mystery Machine","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-75-ghost-to-ghost-tv-lean-mean-mystery-/4000-154311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115196/","id":115196,"name":"Extraction","site_detail_url":"https://comicvine.gamespot.com/sleeper-8-extraction/4000-115196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715664/","id":715664,"name":"Bid for Freedom!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-91-bid-for-freed/4000-715664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140398/","id":140398,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-3-volume/4000-140398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140896/","id":140896,"name":"Burn Part 5","site_detail_url":"https://comicvine.gamespot.com/human-torch-5-burn-part-5/4000-140896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141672/","id":141672,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-human-torch-1-volume-1/4000-141672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105426/","id":105426,"name":"A Contest of Champions","site_detail_url":"https://comicvine.gamespot.com/jlaavengers-2-a-contest-of-champions/4000-105426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140582/","id":140582,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-1-volume-one/4000-140582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105514/","id":105514,"name":"Blockbuster: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-36-blockbuster-part-3/4000-105514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96116/","id":96116,"name":"Duel: Storybook Love Part Three","site_detail_url":"https://comicvine.gamespot.com/fables-16-duel-storybook-love-part-three/4000-96116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138641/","id":138641,"name":"Kingdom of Iron","site_detail_url":"https://comicvine.gamespot.com/thor-vikings-2-kingdom-of-iron/4000-138641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113487/","id":113487,"name":"The Revolution Within","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-56-the-revolution-within/4000-113487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102160/","id":102160,"name":"Road Trip Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-69-road-trip-part-2/4000-102160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190611/","id":190611,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-coven-1-volume-2/4000-190611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210381/","id":210381,"name":"The Last Line of Defense","site_detail_url":"https://comicvine.gamespot.com/startling-stories-the-thing-1-the-last-line-of-def/4000-210381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99504/","id":99504,"name":"To Be Frank","site_detail_url":"https://comicvine.gamespot.com/human-target-1-to-be-frank/4000-99504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222781/","id":222781,"name":"The Vampire`s Christmas","site_detail_url":"https://comicvine.gamespot.com/the-vampires-christmas-1-the-vampires-christmas/4000-222781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294043/","id":294043,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/daredevil-hardcore-1-volume-7/4000-294043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317081/","id":317081,"name":"La trama del ragno","site_detail_url":"https://comicvine.gamespot.com/zagor-459-la-trama-del-ragno/4000-317081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317515/","id":317515,"name":"L'artiglio che si strinse sull'America","site_detail_url":"https://comicvine.gamespot.com/storie-da-altrove-6-lartiglio-che-si-strinse-sulla/4000-317515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384529/","id":384529,"name":"Геенна огненная. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-26-5/4000-384529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105786/","id":105786,"name":"Purple Part 2","site_detail_url":"https://comicvine.gamespot.com/alias-25-purple-part-2/4000-105786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98954/","id":98954,"name":"Have You Seen Me? Part 4","site_detail_url":"https://comicvine.gamespot.com/case-files-sam-twitch-4-have-you-seen-me-part-4/4000-98954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111253/","id":111253,"name":"Role Call, Part Three: Joke's on You","site_detail_url":"https://comicvine.gamespot.com/outsiders-3-role-call-part-three-jokes-on-you/4000-111253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453153/","id":453153,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-complete-maus-1-hc/4000-453153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358687/","id":358687,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/mythology-the-dc-comics-art-of-alex-ross-1-hc/4000-358687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109039/","id":109039,"name":"The Mission","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-195-the-mission/4000-109039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303730/","id":303730,"name":"Fear Pressure!","site_detail_url":"https://comicvine.gamespot.com/prevent-child-abuse-america-presents-amazing-spide/4000-303730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104319/","id":104319,"name":"Big Trouble in Little Mogadishu Part 4: Pals","site_detail_url":"https://comicvine.gamespot.com/crew-4-big-trouble-in-little-mogadishu-part-4-pals/4000-104319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333158/","id":333158,"name":"","site_detail_url":"https://comicvine.gamespot.com/necronauts-1/4000-333158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98089/","id":98089,"name":"Reality Incorporated Episode Four","site_detail_url":"https://comicvine.gamespot.com/the-authority-4-reality-incorporated-episode-four/4000-98089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175543/","id":175543,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-2/4000-175543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102159/","id":102159,"name":"Road Trip Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-68-road-trip-part-1/4000-102159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197217/","id":197217,"name":null,"site_detail_url":"https://comicvine.gamespot.com/startling-stories-the-thing-night-falls-on-yancy-s/4000-197217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232379/","id":232379,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-mighty-thor-2-volume-2/4000-232379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233664/","id":233664,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-6-volume-six/4000-233664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113874/","id":113874,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/100-bullets-six-feet-under-the-gun-1-volume-six/4000-113874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131579/","id":131579,"name":"Hide In Plain Sight Part 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-55-hide-in-plain-sight-part-1/4000-131579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99121/","id":99121,"name":"Hide in Plain Sight, Part 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-57-hide-in-plain-sight-part-3/4000-99121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99122/","id":99122,"name":"Hide in Plain Sight, Part 4","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-58-hide-in-plain-sight-part-4/4000-99122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117062/","id":117062,"name":"Every Hand Against Her!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-62-every-hand-against-her/4000-117062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115195/","id":115195,"name":"Dead Drop","site_detail_url":"https://comicvine.gamespot.com/sleeper-7-dead-drop/4000-115195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715663/","id":715663,"name":"Gang War!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-90-gang-war/4000-715663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140895/","id":140895,"name":"Burn Part 4","site_detail_url":"https://comicvine.gamespot.com/human-torch-4-burn-part-4/4000-140895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93977/","id":93977,"name":"A Journey Into Mystery","site_detail_url":"https://comicvine.gamespot.com/jlaavengers-1-a-journey-into-mystery/4000-93977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96115/","id":96115,"name":"Into the Woods: Storybook Love Part Two","site_detail_url":"https://comicvine.gamespot.com/fables-15-into-the-woods-storybook-love-part-two/4000-96115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113486/","id":113486,"name":"Unintended Consequences","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-55-unintended-consequences/4000-113486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117845/","id":117845,"name":"Endless Ocean","site_detail_url":"https://comicvine.gamespot.com/thor-vikings-1-endless-ocean/4000-117845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93399/","id":93399,"name":"Hardcore, Part 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-49-hardcore-part-4/4000-93399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109038/","id":109038,"name":"The Game of the Gods - Part Six: The Passion of Trevor!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-194-the-game-of-the-gods-part-six-the/4000-109038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96650/","id":96650,"name":"The Blind Part Two","site_detail_url":"https://comicvine.gamespot.com/green-lantern-167-the-blind-part-two/4000-96650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101120/","id":101120,"name":"Wake Up Dreaming - Part IV","site_detail_url":"https://comicvine.gamespot.com/spawn-128-wake-up-dreaming-part-iv/4000-101120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384527/","id":384527,"name":"Геенна огненная. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-24-3/4000-384527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384528/","id":384528,"name":"Геенна огненная. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-25-4/4000-384528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113352/","id":113352,"name":"Made of Wood, Part 1; Trading Up","site_detail_url":"https://comicvine.gamespot.com/detective-comics-784-made-of-wood-part-1-trading-u/4000-113352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104318/","id":104318,"name":"Big Trouble in Little Mogadishu Part 3: Danny","site_detail_url":"https://comicvine.gamespot.com/crew-3-big-trouble-in-little-mogadishu-part-3-dann/4000-104318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99903/","id":99903,"name":"Vegas Bleeds Neon Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-70-vegas-bleeds-neon-part-1-of-3/4000-99903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111252/","id":111252,"name":"Role Call, Part Two: Lawyers, Guns and Monkeys","site_detail_url":"https://comicvine.gamespot.com/outsiders-2-role-call-part-two-lawyers-guns-and-mo/4000-111252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110201/","id":110201,"name":"Help","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-43-help/4000-110201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105513/","id":105513,"name":"Blockbuster: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-35-blockbuster-part-2/4000-105513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149111/","id":149111,"name":"Ascension, Part 4: The Power and the Price","site_detail_url":"https://comicvine.gamespot.com/black-panther-62-ascension-part-4-the-power-and-th/4000-149111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175541/","id":175541,"name":"Stuff of Legends","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-1-stuff-of-leg/4000-175541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197215/","id":197215,"name":null,"site_detail_url":"https://comicvine.gamespot.com/startling-stories-the-thing-night-falls-on-yancy-s/4000-197215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228244/","id":228244,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-1-volume-1/4000-228244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109344/","id":109344,"name":"The Job","site_detail_url":"https://comicvine.gamespot.com/elektra-24-the-job/4000-109344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99120/","id":99120,"name":"Hide in Plain Sight, Part 2","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-56-hide-in-plain-sight-part-2/4000-99120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90013/","id":90013,"name":"Getting Even","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-80-getting-even/4000-90013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117061/","id":117061,"name":"Marked For Death!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-61-marked-for-death/4000-117061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140399/","id":140399,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-2-volume/4000-140399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715662/","id":715662,"name":"Outta This World!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-89-outta-this-wo/4000-715662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167541/","id":167541,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-life-and-death-of-spiders-1/4000-167541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140894/","id":140894,"name":"Burn Part 3","site_detail_url":"https://comicvine.gamespot.com/human-torch-3-burn-part-3/4000-140894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99865/","id":99865,"name":"Drop Dead Gorgeous, Part 3","site_detail_url":"https://comicvine.gamespot.com/mystique-3-drop-dead-gorgeous-part-3/4000-99865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96114/","id":96114,"name":"The Mouse Police Never Sleep: Storybook Love Part One","site_detail_url":"https://comicvine.gamespot.com/fables-14-the-mouse-police-never-sleep-storybook-l/4000-96114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111214/","id":111214,"name":"Roll Call, Part One: Opening Offers","site_detail_url":"https://comicvine.gamespot.com/outsiders-1-roll-call-part-one-opening-offers/4000-111214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113485/","id":113485,"name":"The Balancing Of Karmic Accounts","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-54-the-balancing-of-karmic-/4000-113485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102158/","id":102158,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-67/4000-102158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98439/","id":98439,"name":"Dead Man's Hand","site_detail_url":"https://comicvine.gamespot.com/the-losers-1-dead-mans-hand/4000-98439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122542/","id":122542,"name":"Issue 1","site_detail_url":"https://comicvine.gamespot.com/the-magdalena-1-issue-1/4000-122542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228380/","id":228380,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-silver-surfer-2-volume-2/4000-228380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89995/","id":89995,"name":"Streets Of Laredo Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-28-streets-of-laredo-part-1/4000-89995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109037/","id":109037,"name":"The Game of the Gods - Part Five: The Passion of Diana!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-193-the-game-of-the-gods-part-five-th/4000-109037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280734/","id":280734,"name":"Spider-Man Visionaries: Todd McFarlane","site_detail_url":"https://comicvine.gamespot.com/spider-man-visionaries-todd-mcfarlane-1-spider-man/4000-280734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96649/","id":96649,"name":"The Blind Part One","site_detail_url":"https://comicvine.gamespot.com/green-lantern-166-the-blind-part-one/4000-96649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101119/","id":101119,"name":"Wake Up Dreaming - Part III","site_detail_url":"https://comicvine.gamespot.com/spawn-127-wake-up-dreaming-part-iii/4000-101119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105574/","id":105574,"name":"later ...","site_detail_url":"https://comicvine.gamespot.com/promethea-26-later/4000-105574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384522/","id":384522,"name":"Геенна огненная. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-22-1/4000-384522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384523/","id":384523,"name":"Геенна огненная. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-23-2/4000-384523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105784/","id":105784,"name":"The Secret Origin of Jessica Jones Part 2","site_detail_url":"https://comicvine.gamespot.com/alias-23-the-secret-origin-of-jessica-jones-part-2/4000-105784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104317/","id":104317,"name":"Kasper","site_detail_url":"https://comicvine.gamespot.com/the-crew-2-kasper/4000-104317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110202/","id":110202,"name":"Temptations","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-42-temptations/4000-110202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105512/","id":105512,"name":"Blockbuster: Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-34-blockbuster-part-one/4000-105512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149110/","id":149110,"name":"Ascension, Part 3: Resurrection Man","site_detail_url":"https://comicvine.gamespot.com/black-panther-61-ascension-part-3-resurrection-man/4000-149110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134330/","id":134330,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-horse-book-of-hauntings-1/4000-134330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152543/","id":152543,"name":"Tango'd Web","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-10-tangod-web/4000-152543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166544/","id":166544,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/fables-animal-farm-1-volume-2/4000-166544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105333/","id":105333,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-snikt-1/4000-105333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232352/","id":232352,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-mighty-thor-1-volume-1/4000-232352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117052/","id":117052,"name":"Legacy!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-60-legacy/4000-117052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128258/","id":128258,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-lords-of-night-1/4000-128258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420031/","id":420031,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/witchblade-blood-relations-1-volume-7/4000-420031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391588/","id":391588,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-punisher-full-auto-1-volume-4/4000-391588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715661/","id":715661,"name":"Payback!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-88-payback/4000-715661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109909/","id":109909,"name":"Average Bear","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-40-average-bear/4000-109909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115193/","id":115193,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/sleeper-5-no-exit/4000-115193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140400/","id":140400,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man-1-volume/4000-140400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280735/","id":280735,"name":"Book Two: Todd McFarlane","site_detail_url":"https://comicvine.gamespot.com/spider-man-legends-2-book-two-todd-mcfarlane/4000-280735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715660/","id":715660,"name":"Shocked, Stunned and Sunk!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-87-shocked-stunn/4000-715660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92317/","id":92317,"name":"Princes of Darkness, Part 3: Enlightenment","site_detail_url":"https://comicvine.gamespot.com/jsa-48-princes-of-darkness-part-3-enlightenment/4000-92317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149109/","id":149109,"name":"Ascension, Part 2: Mama's Got a Brand New Bag","site_detail_url":"https://comicvine.gamespot.com/black-panther-60-ascension-part-2-mamas-got-a-bran/4000-149109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113235/","id":113235,"name":"Holy War, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-423-holy-war-pt-1/4000-113235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96113/","id":96113,"name":"Dirty Business: Part Two of a Two-Part Caper","site_detail_url":"https://comicvine.gamespot.com/fables-13-dirty-business-part-two-of-a-two-part-ca/4000-96113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113484/","id":113484,"name":"Parts And Pieces","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-53-parts-and-pieces/4000-113484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102156/","id":102156,"name":null,"site_detail_url":"https://comicvine.gamespot.com/witchblade-65/4000-102156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102157/","id":102157,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-66/4000-102157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113701/","id":113701,"name":"Holy War, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-424-holy-war-pt-2/4000-113701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89994/","id":89994,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/the-punisher-27-elektra/4000-89994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89993/","id":89993,"name":"Hidden, Part Three","site_detail_url":"https://comicvine.gamespot.com/the-punisher-26-hidden-part-three/4000-89993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283761/","id":283761,"name":"Il mago della pioggia","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-20-il-mago-della-pioggia/4000-283761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322424/","id":322424,"name":"Gli immortali","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-256-gli-immortali/4000-322424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101118/","id":101118,"name":"Wake Up Dreaming - Part II","site_detail_url":"https://comicvine.gamespot.com/spawn-126-wake-up-dreaming-part-ii/4000-101118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196966/","id":196966,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/promethea-4-book-four/4000-196966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384521/","id":384521,"name":"Отставка","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-21-wikiissue/4000-384521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114191/","id":114191,"name":"The Underground, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/weapon-x-9-the-underground-pt-3/4000-114191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110006/","id":110006,"name":"Omnipotence","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-5-omnipotence/4000-110006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104316/","id":104316,"name":"Rhodey","site_detail_url":"https://comicvine.gamespot.com/the-crew-1-rhodey/4000-104316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109036/","id":109036,"name":"The Game of the Gods - Part Four: Sister's Sorrow","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-192-the-game-of-the-gods-part-four-si/4000-109036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110203/","id":110203,"name":"The Letter","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-41-the-letter/4000-110203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149108/","id":149108,"name":"Ascension, Part 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-59-ascension-part-1/4000-149108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157761/","id":157761,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-team-achilles-11/4000-157761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80596/","id":80596,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-10/4000-80596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152538/","id":152538,"name":"Monsters and Gods - Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-8-monsters-and-gods-part-2/4000-152538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102155/","id":102155,"name":null,"site_detail_url":"https://comicvine.gamespot.com/witchblade-64/4000-102155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197210/","id":197210,"name":null,"site_detail_url":"https://comicvine.gamespot.com/startling-stories-the-thing-night-falls-on-yancy-s/4000-197210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239429/","id":239429,"name":"Finding Nemo","site_detail_url":"https://comicvine.gamespot.com/disney-adventures-200306-finding-nemo/4000-239429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135512/","id":135512,"name":"Busted","site_detail_url":"https://comicvine.gamespot.com/green-arrow-23-busted/4000-135512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135513/","id":135513,"name":"Hero Worship","site_detail_url":"https://comicvine.gamespot.com/green-arrow-24-hero-worship/4000-135513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149106/","id":149106,"name":"Coming To America, Part 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-57-coming-to-america-part-1/4000-149106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149107/","id":149107,"name":"Coming To America, Part 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-58-coming-to-america-part-2/4000-149107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117053/","id":117053,"name":"Proof of Life!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-59-proof-of-life/4000-117053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109908/","id":109908,"name":"Therapy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-39-therapy/4000-109908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115192/","id":115192,"name":"Illusions","site_detail_url":"https://comicvine.gamespot.com/sleeper-4-illusions/4000-115192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547382/","id":547382,"name":"Festa Ki Compleanno","site_detail_url":"https://comicvine.gamespot.com/beverly-kerr-2-festa-ki-compleanno/4000-547382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715659/","id":715659,"name":"Running Late, Running Scared!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-86-running-late-/4000-715659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92779/","id":92779,"name":"Hard choices (part 1 of 2)","site_detail_url":"https://comicvine.gamespot.com/exiles-26-hard-choices-part-1-of-2/4000-92779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96112/","id":96112,"name":"A Sharp Operation: Part One of a Two-Part Caper","site_detail_url":"https://comicvine.gamespot.com/fables-12-a-sharp-operation-part-one-of-a-two-part/4000-96112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113483/","id":113483,"name":"Dig This","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-52-dig-this/4000-113483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110004/","id":110004,"name":"Extinction","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-3-extinction/4000-110004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89992/","id":89992,"name":"Hidden, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-punisher-25-hidden-part-two/4000-89992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281869/","id":281869,"name":"The Terror of Trigon","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-the-terror-of-trigon-1-the-ter/4000-281869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99308/","id":99308,"name":"Flames of Passion","site_detail_url":"https://comicvine.gamespot.com/thor-62-flames-of-passion/4000-99308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302507/","id":302507,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/stormwatch-team-achilles-1-volume-1/4000-302507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92778/","id":92778,"name":"With an Iron Fist (Part 3)","site_detail_url":"https://comicvine.gamespot.com/exiles-25-with-an-iron-fist-part-3/4000-92778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109035/","id":109035,"name":"The Game of the Gods - Part Three: Deities and Demons...!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-191-the-game-of-the-gods-part-three-d/4000-109035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149105/","id":149105,"name":"Black And White, Part 6 - Ol' Boy Enters The Life","site_detail_url":"https://comicvine.gamespot.com/black-panther-56-black-and-white-part-6-ol-boy-ent/4000-149105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109907/","id":109907,"name":"Father's Pride","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-38-fathers-pride/4000-109907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80595/","id":80595,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-9/4000-80595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119387/","id":119387,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spidey-and-the-mini-marvels-1/4000-119387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102154/","id":102154,"name":null,"site_detail_url":"https://comicvine.gamespot.com/witchblade-63/4000-102154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222693/","id":222693,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-destiny-1-volume-1/4000-222693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93799/","id":93799,"name":"Good Cop/Bad Cop Part One","site_detail_url":"https://comicvine.gamespot.com/wolverine-188-good-copbad-cop-part-one/4000-93799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117051/","id":117051,"name":"Daddy's Girl!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-58-daddys-girl/4000-117051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219920/","id":219920,"name":"The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-3-the-incredible-hulk/4000-219920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259632/","id":259632,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/the-best-of-spider-man-2-volume-two/4000-259632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115191/","id":115191,"name":"Secrets And Lies","site_detail_url":"https://comicvine.gamespot.com/sleeper-3-secrets-and-lies/4000-115191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109905/","id":109905,"name":"Still","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-37-still/4000-109905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92776/","id":92776,"name":"With an iron fist (part 1)","site_detail_url":"https://comicvine.gamespot.com/exiles-23-with-an-iron-fist-part-1/4000-92776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92777/","id":92777,"name":"With an iron fist (part 2)","site_detail_url":"https://comicvine.gamespot.com/exiles-24-with-an-iron-fist-part-2/4000-92777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113482/","id":113482,"name":"Digger","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-51-digger/4000-113482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154668/","id":154668,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-2-volume-2/4000-154668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114334/","id":114334,"name":"The Prime of Miss Emma Frost","site_detail_url":"https://comicvine.gamespot.com/new-x-men-138-the-prime-of-miss-emma-frost/4000-114334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186487/","id":186487,"name":"Riot at Xavier's","site_detail_url":"https://comicvine.gamespot.com/new-x-men-riot-at-xaviers-1-riot-at-xaviers/4000-186487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89991/","id":89991,"name":"Hidden, Part One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-24-hidden-part-one/4000-89991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89990/","id":89990,"name":"Squid","site_detail_url":"https://comicvine.gamespot.com/the-punisher-23-squid/4000-89990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109997/","id":109997,"name":"Predestination","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-1-predestination/4000-109997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137365/","id":137365,"name":"","site_detail_url":"https://comicvine.gamespot.com/jla-age-of-wonder-2/4000-137365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101117/","id":101117,"name":"Wake Up Dreaming - Part I","site_detail_url":"https://comicvine.gamespot.com/spawn-125-wake-up-dreaming-part-i/4000-101117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105573/","id":105573,"name":"A Higher Court","site_detail_url":"https://comicvine.gamespot.com/promethea-25-a-higher-court/4000-105573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105317/","id":105317,"name":"Dominant Species, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-420-dominant-species-pt-4/4000-105317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99899/","id":99899,"name":"Manhunt, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-66-manhunt-part-2/4000-99899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109034/","id":109034,"name":"The Game of the Gods - Part Two: Red Eyes in the Morning...","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-190-the-game-of-the-gods-part-two-red/4000-109034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149104/","id":149104,"name":"Black And White, Part 5 - Glass House Of The Last Righteous Man","site_detail_url":"https://comicvine.gamespot.com/black-panther-55-black-and-white-part-5-glass-hous/4000-149104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299641/","id":299641,"name":"Deus ama, o homem mata","site_detail_url":"https://comicvine.gamespot.com/x-men-deus-ama-o-homem-mata-1-deus-ama-o-homem-mat/4000-299641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93797/","id":93797,"name":"See Ya Around, Frankie","site_detail_url":"https://comicvine.gamespot.com/wolverine-186-see-ya-around-frankie/4000-93797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118821/","id":118821,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-paradise-found-1-tpb/4000-118821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117050/","id":117050,"name":"Call of Thunder","site_detail_url":"https://comicvine.gamespot.com/spider-girl-57-call-of-thunder/4000-117050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298338/","id":298338,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-1/4000-298338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115190/","id":115190,"name":"The Inquiry","site_detail_url":"https://comicvine.gamespot.com/sleeper-2-the-inquiry/4000-115190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255957/","id":255957,"name":"DEAD-END!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-2-dead-end/4000-255957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547380/","id":547380,"name":"Il Delitto Dell' 11 Settembre","site_detail_url":"https://comicvine.gamespot.com/beverly-kerr-1-il-delitto-dell-11-settembre/4000-547380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463115/","id":463115,"name":"Theme: Diana","site_detail_url":"https://comicvine.gamespot.com/fantomen-kronika-54-theme-diana/4000-463115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120302/","id":120302,"name":"Captain America Vs. Giant Man","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-9-captain-america-vs-giant-man/4000-120302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116446/","id":116446,"name":"Twilight of the Dogs: Part Five of Animal Farm","site_detail_url":"https://comicvine.gamespot.com/fables-10-twilight-of-the-dogs-part-five-of-animal/4000-116446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114410/","id":114410,"name":"Sight Unseen","site_detail_url":"https://comicvine.gamespot.com/avengers-64-sight-unseen/4000-114410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133144/","id":133144,"name":"","site_detail_url":"https://comicvine.gamespot.com/marville-6/4000-133144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235320/","id":235320,"name":"Hellfire and Brimstone","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-hellfire-and-brimstone-1-hellfire-a/4000-235320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77960/","id":77960,"name":"All of Me","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-6-all-of-me/4000-77960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112570/","id":112570,"name":"Abyss, Part 3","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-28-abyss-part-3/4000-112570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89989/","id":89989,"name":"Brotherhood, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-punisher-22-brotherhood-conclusion/4000-89989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105316/","id":105316,"name":"Dominant Species, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-419-dominant-species-pt-3/4000-105316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137364/","id":137364,"name":".","site_detail_url":"https://comicvine.gamespot.com/jla-age-of-wonder-1-wikiissue/4000-137364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139080/","id":139080,"name":"Big Stuff Part 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-66-big-stuff-part-2/4000-139080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101116/","id":101116,"name":"Salvation Road - Part IV","site_detail_url":"https://comicvine.gamespot.com/spawn-124-salvation-road-part-iv/4000-101116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105780/","id":105780,"name":"The Underneath: Part 4","site_detail_url":"https://comicvine.gamespot.com/alias-19-the-underneath-part-4/4000-105780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109033/","id":109033,"name":"The Game of the Gods - Part One: Figure of Earth","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-189-the-game-of-the-gods-part-one-fig/4000-109033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109904/","id":109904,"name":"Today","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-36-today/4000-109904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149103/","id":149103,"name":"Black And White, Part 4 - Kasper Cole Buys A Clue","site_detail_url":"https://comicvine.gamespot.com/black-panther-54-black-and-white-part-4-kasper-col/4000-149103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93796/","id":93796,"name":"Sleeping With The Fishes","site_detail_url":"https://comicvine.gamespot.com/wolverine-185-sleeping-with-the-fishes/4000-93796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167540/","id":167540,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-until-the-stars-turn-cold-1/4000-167540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102153/","id":102153,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-62/4000-102153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197574/","id":197574,"name":"Law of the Jungle","site_detail_url":"https://comicvine.gamespot.com/wolverine-legends-3-law-of-the-jungle/4000-197574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90346/","id":90346,"name":"Everybody's Workin' for the Weekend","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-52-everybodys-workin-for-t/4000-90346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102047/","id":102047,"name":"The Sellouts (Part 6)","site_detail_url":"https://comicvine.gamespot.com/powers-30-the-sellouts-part-6/4000-102047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117048/","id":117048,"name":"Rising Storm!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-55-rising-storm/4000-117048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117049/","id":117049,"name":"Three Minutes!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-56-three-minutes/4000-117049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115142/","id":115142,"name":"Out Of The Cold","site_detail_url":"https://comicvine.gamespot.com/sleeper-1-out-of-the-cold/4000-115142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114271/","id":114271,"name":"The System","site_detail_url":"https://comicvine.gamespot.com/spider-mans-tangled-web-22-the-system/4000-114271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108170/","id":108170,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-35-legacy/4000-108170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150253/","id":150253,"name":"The Official Comic Book Movie Adaptation","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-movie-1-the-official-comic-book-movi/4000-150253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110321/","id":110321,"name":"Warlord of the Flies: Part Four of Animal Farm","site_detail_url":"https://comicvine.gamespot.com/fables-9-warlord-of-the-flies-part-four-of-animal-/4000-110321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113480/","id":113480,"name":"Bad Connections","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-49-bad-connections/4000-113480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149102/","id":149102,"name":"Black & White, Part 3 - Shadrach in the Furnace","site_detail_url":"https://comicvine.gamespot.com/black-panther-53-black-white-part-3-shadrach-in-th/4000-149102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89988/","id":89988,"name":"Brotherhood, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-punisher-21-brotherhood-part-two/4000-89988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138728/","id":138728,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-daredevilelektra-4-part-4/4000-138728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119793/","id":119793,"name":"The Ultimates vs. Ultimate X-Men Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-3-the-ultimates-vs-ultimate-x-men-par/4000-119793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105315/","id":105315,"name":"Dominant Species, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-418-dominant-species-pt-2/4000-105315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139079/","id":139079,"name":"Small Stuff Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-65-small-stuff-part-1/4000-139079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101115/","id":101115,"name":"Salvation Road - Part III","site_detail_url":"https://comicvine.gamespot.com/spawn-123-salvation-road-part-iii/4000-101115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105314/","id":105314,"name":"Dominant Species, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-417-dominant-species-pt-1/4000-105314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107910/","id":107910,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/weapon-x-5-monsters/4000-107910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109032/","id":109032,"name":"Wonder Boys","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-188-wonder-boys/4000-109032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159534/","id":159534,"name":"Arctic Nation","site_detail_url":"https://comicvine.gamespot.com/blacksad-2-arctic-nation/4000-159534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80594/","id":80594,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-8/4000-80594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93795/","id":93795,"name":"When In Rome","site_detail_url":"https://comicvine.gamespot.com/wolverine-184-when-in-rome/4000-93795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102152/","id":102152,"name":"Epologue to Endgame","site_detail_url":"https://comicvine.gamespot.com/witchblade-61-epologue-to-endgame/4000-102152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90345/","id":90345,"name":"Just Another Manic Monday","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-51-just-another-manic-mond/4000-90345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258523/","id":258523,"name":"Ultimate Daredevil & Elektra","site_detail_url":"https://comicvine.gamespot.com/ultimate-daredevil-and-elektra-1-ultimate-daredevi/4000-258523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102046/","id":102046,"name":"The Sellouts (Part 5)","site_detail_url":"https://comicvine.gamespot.com/powers-29-the-sellouts-part-5/4000-102046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117047/","id":117047,"name":"Season of the Serpent","site_detail_url":"https://comicvine.gamespot.com/spider-girl-54-season-of-the-serpent/4000-117047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115167/","id":115167,"name":"","site_detail_url":"https://comicvine.gamespot.com/point-blank-5/4000-115167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715654/","id":715654,"name":"Big Game!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-82-big-game/4000-715654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119760/","id":119760,"name":"The Ultimates vs. Ultimate X-Men Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-1-the-ultimates-vs-ultimate-x-men-par/4000-119760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110352/","id":110352,"name":"The Pirates of Upstate New York: Part Three of Animal Farm","site_detail_url":"https://comicvine.gamespot.com/fables-8-the-pirates-of-upstate-new-york-part-thre/4000-110352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113479/","id":113479,"name":"A Spider's Tale","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-48-a-spider-s-tale/4000-113479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114408/","id":114408,"name":"Broken Hearts","site_detail_url":"https://comicvine.gamespot.com/avengers-62-broken-hearts/4000-114408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112568/","id":112568,"name":"Abyss, Part 1","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-26-abyss-part-1/4000-112568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112569/","id":112569,"name":"Abyss, Part 2","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-27-abyss-part-2/4000-112569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229191/","id":229191,"name":"Homecoming 2 of 2","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-15-homecoming-2-of-2/4000-229191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108030/","id":108030,"name":"Brotherhood, Part One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-20-brotherhood-part-one/4000-108030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148438/","id":148438,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-authority-scorched-earth-1/4000-148438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294041/","id":294041,"name":"Out","site_detail_url":"https://comicvine.gamespot.com/daredevil-out-1-out/4000-294041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138726/","id":138726,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-daredevilelektra-2-part-2/4000-138726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138727/","id":138727,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-daredevilelektra-3-part-3/4000-138727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105484/","id":105484,"name":"Return of the King: Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-26-return-of-the-king-prelude/4000-105484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135545/","id":135545,"name":"The Conduit, Part 4: Don't Stand Alone In These Strangest of Times","site_detail_url":"https://comicvine.gamespot.com/21-down-4-the-conduit-part-4-dont-stand-alone-in-t/4000-135545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105572/","id":105572,"name":"Cross, Moon, Star, Shapes in the Sand","site_detail_url":"https://comicvine.gamespot.com/promethea-24-cross-moon-star-shapes-in-the-sand/4000-105572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384497/","id":384497,"name":"Первая любовь не забывается. Часть 2. Козырная карта","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-15-2/4000-384497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105777/","id":105777,"name":"The Underneath: Part 2","site_detail_url":"https://comicvine.gamespot.com/alias-17-the-underneath-part-2/4000-105777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119789/","id":119789,"name":"The Ultimates vs. Ultimate X-Men Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-2-the-ultimates-vs-ultimate-x-men-par/4000-119789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112536/","id":112536,"name":"Teaching Children About Fractals","site_detail_url":"https://comicvine.gamespot.com/new-x-men-135-teaching-children-about-fractals/4000-112536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108167/","id":108167,"name":"Just a Guy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-32-just-a-guy/4000-108167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108168/","id":108168,"name":"Origins","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-33-origins/4000-108168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126751/","id":126751,"name":"Black And White, Part 2 - Stimey Goes Down For The Long Nap","site_detail_url":"https://comicvine.gamespot.com/black-panther-52-black-and-white-part-2-stimey-goe/4000-126751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134851/","id":134851,"name":"Girl Talk","site_detail_url":"https://comicvine.gamespot.com/green-lantern-157-girl-talk/4000-134851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106723/","id":106723,"name":"Chapter 2","site_detail_url":"https://comicvine.gamespot.com/alan-moores-the-courtyard-2-chapter-2/4000-106723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93794/","id":93794,"name":"...And Got Yourself A Gun; Restraining Order","site_detail_url":"https://comicvine.gamespot.com/wolverine-183-and-got-yourself-a-gun-restraining-o/4000-93794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228788/","id":228788,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-force-final-chapter-1-volume-2/4000-228788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171229/","id":171229,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-unmanned-1-book-1/4000-171229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113661/","id":113661,"name":"And Here My Troubles Begin...","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-50-and-here-my-troubles-be/4000-113661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102044/","id":102044,"name":"The Sellouts (Part 3)","site_detail_url":"https://comicvine.gamespot.com/powers-27-the-sellouts-part-3/4000-102044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391587/","id":391587,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-business-as-usual-1-volume-3/4000-391587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117045/","id":117045,"name":"An Invisible Girl!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-53-an-invisible-girl/4000-117045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231485/","id":231485,"name":"The Machiavelli Conundrum","site_detail_url":"https://comicvine.gamespot.com/vampire-the-masquerade-giovanni-1-the-machiavelli-/4000-231485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115166/","id":115166,"name":"","site_detail_url":"https://comicvine.gamespot.com/point-blank-4/4000-115166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126864/","id":126864,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-mans-get-kraven-6/4000-126864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222694/","id":222694,"name":"X-Treme X-Men: Invasion","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-invasion-1-x-treme-x-men-invasion/4000-222694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97120/","id":97120,"name":"","site_detail_url":"https://comicvine.gamespot.com/sonic-the-hedgehog-116/4000-97120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110350/","id":110350,"name":"The Guns of Fabletown: Part Two of Animal Farm","site_detail_url":"https://comicvine.gamespot.com/fables-7-the-guns-of-fabletown-part-two-of-animal-/4000-110350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153056/","id":153056,"name":"The Target","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-target-1-the-target/4000-153056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113478/","id":113478,"name":"The Life & Death Of Spiders","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-47-the-life-death-of-spider/4000-113478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170621/","id":170621,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/i-classici-del-fumetto-di-repubblica-12-x-men/4000-170621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105482/","id":105482,"name":"Hellfire and Brimstone: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-24-hellfire-and-brimstone-part-4/4000-105482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105483/","id":105483,"name":"Hellfire and Brimstone: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-25-hellfire-and-brimstone-part-5/4000-105483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223689/","id":223689,"name":"vol.4 DC/Marvel","site_detail_url":"https://comicvine.gamespot.com/dcmarvel-crossover-classics-4-vol4-dcmarvel/4000-223689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232767/","id":232767,"name":"Things Change","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1-things-change/4000-232767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232772/","id":232772,"name":"A Better Mousetrap","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-2-a-better-mousetrap/4000-232772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232771/","id":232771,"name":"Attack of the Mousers","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-3-attack-of-the-mouse/4000-232771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232770/","id":232770,"name":"Meet Casey Jones","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-4-meet-casey-jones/4000-232770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232902/","id":232902,"name":"Shadow of the Mind's Eye","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-5-shadow-of-the-minds/4000-232902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232911/","id":232911,"name":"Bend it Like Turtles","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-6-bend-it-like-turtle/4000-232911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232916/","id":232916,"name":"Kali Flower","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-7-kali-flower/4000-232916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259470/","id":259470,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-1-tpb/4000-259470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233658/","id":233658,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-1-volume-one/4000-233658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233661/","id":233661,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-2-volume-two/4000-233661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233662/","id":233662,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-3-volume-three/4000-233662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276369/","id":276369,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thanos-infinity-abyss-1-tpb/4000-276369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138725/","id":138725,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-daredevilelektra-1-part-1/4000-138725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298509/","id":298509,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-brothers-keeper-1-tpb/4000-298509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108166/","id":108166,"name":"Black Van","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-31-black-van/4000-108166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315032/","id":315032,"name":"Daredevil: Yellow","site_detail_url":"https://comicvine.gamespot.com/daredevil-legends-1-daredevil-yellow/4000-315032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135544/","id":135544,"name":"The Conduit, Part 3: I'm Not Sick, But I'm Not Well","site_detail_url":"https://comicvine.gamespot.com/21-down-3-the-conduit-part-3-im-not-sick-but-im-no/4000-135544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300193/","id":300193,"name":"Emerald Twilight/New Dawn","site_detail_url":"https://comicvine.gamespot.com/green-lantern-emerald-twilightnew-dawn-1-emerald-t/4000-300193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261058/","id":261058,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-imaginauts-1-volume-1/4000-261058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101114/","id":101114,"name":"Salvation Road - Part II","site_detail_url":"https://comicvine.gamespot.com/spawn-122-salvation-road-part-ii/4000-101114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243627/","id":243627,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hollow-earth-and-other-stories-1-volume-1/4000-243627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135546/","id":135546,"name":"The Conduit Part 5: Distance From One Into the Other","site_detail_url":"https://comicvine.gamespot.com/21-down-5-the-conduit-part-5-distance-from-one-int/4000-135546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384496/","id":384496,"name":"Первая любовь не забывается. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-14-1/4000-384496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107908/","id":107908,"name":"The Hunt for Sabretooth, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/weapon-x-3-the-hunt-for-sabretooth-pt-3/4000-107908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106499/","id":106499,"name":"Kid Ω","site_detail_url":"https://comicvine.gamespot.com/new-x-men-134-kid/4000-106499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297020/","id":297020,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-95/4000-297020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384677/","id":384677,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-ultimate-guide-to-the-amazon-prin/4000-384677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108165/","id":108165,"name":"Emergency","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-30-emergency/4000-108165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126529/","id":126529,"name":"Black And White, Part 1 - The Last Temptation Of Joe Pushead","site_detail_url":"https://comicvine.gamespot.com/black-panther-51-black-and-white-part-1-the-last-t/4000-126529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288149/","id":288149,"name":"Fábulas: Leyendas en el Exilio","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-237-fabulas-leyendas-en-el-exili/4000-288149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185364/","id":185364,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-sandman-presents-taller-tales-1-tpb/4000-185364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134850/","id":134850,"name":"Walking Tall","site_detail_url":"https://comicvine.gamespot.com/green-lantern-156-walking-tall/4000-134850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274049/","id":274049,"name":"Opération Offshore","site_detail_url":"https://comicvine.gamespot.com/insiders-2-operation-offshore/4000-274049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106717/","id":106717,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/alan-moores-the-courtyard-1-chapter-1/4000-106717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300886/","id":300886,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/challengers-of-the-unknown-archives-1-volume-1/4000-300886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119322/","id":119322,"name":"","site_detail_url":"https://comicvine.gamespot.com/point-blank-1/4000-119322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303972/","id":303972,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jla-golden-perfect-1-tpb/4000-303972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80592/","id":80592,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-6/4000-80592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93793/","id":93793,"name":"Three Funerals And A Wedding","site_detail_url":"https://comicvine.gamespot.com/wolverine-182-three-funerals-and-a-wedding/4000-93793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115165/","id":115165,"name":"","site_detail_url":"https://comicvine.gamespot.com/point-blank-3/4000-115165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108163/","id":108163,"name":"Sidetracked","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-28-sidetracked/4000-108163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408163/","id":408163,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/disney-the-ultimate-visual-guide-1-hc/4000-408163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102043/","id":102043,"name":"The Sellouts (Part 2)","site_detail_url":"https://comicvine.gamespot.com/powers-26-the-sellouts-part-2/4000-102043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113660/","id":113660,"name":"The Big Answer","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-49-the-big-answer/4000-113660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163147/","id":163147,"name":"","site_detail_url":"https://comicvine.gamespot.com/cavewoman-pangaean-sea-5/4000-163147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117040/","id":117040,"name":"Seize the Day!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-52-seize-the-day/4000-117040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101113/","id":101113,"name":"Salvation Road - Part I","site_detail_url":"https://comicvine.gamespot.com/spawn-121-salvation-road-part-i/4000-101113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110326/","id":110326,"name":"Road Trip: Part One of Animal Farm","site_detail_url":"https://comicvine.gamespot.com/fables-6-road-trip-part-one-of-animal-farm/4000-110326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113477/","id":113477,"name":"Unnatural Enemies","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-46-unnatural-enemies/4000-113477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126075/","id":126075,"name":"Black And White, Prologue - Tin Men In The Garden Of Good And Evil","site_detail_url":"https://comicvine.gamespot.com/black-panther-50-black-and-white-prologue-tin-men-/4000-126075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105480/","id":105480,"name":"Hellfire and Brimstone: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-23-hellfire-and-brimstone-part-3/4000-105480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133148/","id":133148,"name":"","site_detail_url":"https://comicvine.gamespot.com/marville-2/4000-133148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237090/","id":237090,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-force-famous-mutant-and-mortal-1-hc/4000-237090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108027/","id":108027,"name":"Aim Low","site_detail_url":"https://comicvine.gamespot.com/the-punisher-17-aim-low/4000-108027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109988/","id":109988,"name":"The Trial of the Century, Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-38-the-trial-of-the-century-part-1/4000-109988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135543/","id":135543,"name":"The Conduit, Part 2: I Like to Wear Sheep's Clothing","site_detail_url":"https://comicvine.gamespot.com/21-down-2-the-conduit-part-2-i-like-to-wear-sheeps/4000-135543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89235/","id":89235,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-glimpse-and-echo-4/4000-89235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139076/","id":139076,"name":"Sentient Part 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-62-sentient-part-1/4000-139076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78207/","id":78207,"name":"Blood from Stones, Pt. 6","site_detail_url":"https://comicvine.gamespot.com/the-hood-6-blood-from-stones-pt-6/4000-78207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105571/","id":105571,"name":"The Serpent and the Dove","site_detail_url":"https://comicvine.gamespot.com/promethea-23-the-serpent-and-the-dove/4000-105571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121589/","id":121589,"name":"Resurrection (Part 1)","site_detail_url":"https://comicvine.gamespot.com/the-darkness-1-resurrection-part-1/4000-121589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108164/","id":108164,"name":"Stolen Identity","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-29-stolen-identity/4000-108164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93792/","id":93792,"name":"Chasers","site_detail_url":"https://comicvine.gamespot.com/wolverine-181-chasers/4000-93792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102151/","id":102151,"name":"Endgame, Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-60-endgame-part-2/4000-102151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116051/","id":116051,"name":"","site_detail_url":"https://comicvine.gamespot.com/fight-for-tomorrow-1/4000-116051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113659/","id":113659,"name":"The Big Question","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-48-the-big-question/4000-113659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102042/","id":102042,"name":"The Sellouts (Part 1)","site_detail_url":"https://comicvine.gamespot.com/powers-25-the-sellouts-part-1/4000-102042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105567/","id":105567,"name":null,"site_detail_url":"https://comicvine.gamespot.com/planetaryjla-terra-occulta-1/4000-105567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117031/","id":117031,"name":"Dearest May","site_detail_url":"https://comicvine.gamespot.com/spider-girl-51-dearest-may/4000-117031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200086/","id":200086,"name":"Vol. 9","site_detail_url":"https://comicvine.gamespot.com/astro-boy-9-vol-9/4000-200086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115164/","id":115164,"name":"","site_detail_url":"https://comicvine.gamespot.com/point-blank-2/4000-115164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110318/","id":110318,"name":"Chapter Five: The Famous Parlor Room Scene (Sans Parlor)","site_detail_url":"https://comicvine.gamespot.com/fables-5-chapter-five-the-famous-parlor-room-scene/4000-110318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134848/","id":134848,"name":"Hate Crime, Part One","site_detail_url":"https://comicvine.gamespot.com/green-lantern-154-hate-crime-part-one/4000-134848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120301/","id":120301,"name":"The Experts","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-8-the-experts/4000-120301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105446/","id":105446,"name":"Hellfire and Brimstone: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-22-hellfire-and-brimstone-part-2/4000-105446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133149/","id":133149,"name":"","site_detail_url":"https://comicvine.gamespot.com/marville-1/4000-133149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112567/","id":112567,"name":"Endgame, Part 1","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-25-endgame-part-1/4000-112567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108026/","id":108026,"name":"Vertical Challenge","site_detail_url":"https://comicvine.gamespot.com/the-punisher-16-vertical-challenge/4000-108026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276371/","id":276371,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-kang-dynasty-1-tpb/4000-276371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109986/","id":109986,"name":"Dancing Between the Raindrops","site_detail_url":"https://comicvine.gamespot.com/daredevil-37-dancing-between-the-raindrops/4000-109986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135542/","id":135542,"name":"The Conduit, Part 1: Simple Kind of Life","site_detail_url":"https://comicvine.gamespot.com/21-down-1-the-conduit-part-1-simple-kind-of-life/4000-135542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89234/","id":89234,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-glimpse-and-echo-3/4000-89234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78206/","id":78206,"name":"Blood from Stones, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/the-hood-5-blood-from-stones-pt-5/4000-78206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105581/","id":105581,"name":"Et In Arcadia Ego ...","site_detail_url":"https://comicvine.gamespot.com/promethea-22-et-in-arcadia-ego/4000-105581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383297/","id":383297,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/wizard-ace-edition-4-avengers/4000-383297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384493/","id":384493,"name":"Возвращение в Оружие Икс. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-12-5/4000-384493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108161/","id":108161,"name":"Circles","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-26-circles/4000-108161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108162/","id":108162,"name":"Illegal","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-27-illegal/4000-108162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77959/","id":77959,"name":"If I Had You","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-5-if-i-had-you/4000-77959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105325/","id":105325,"name":"Hope, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-412-hope-pt-3/4000-105325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109029/","id":109029,"name":"Her Daughter's Mother","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-185-her-daughters-mother/4000-109029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80591/","id":80591,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-5/4000-80591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139073/","id":139073,"name":"The Ever-lovin', Blue-eyed End Of The World, Part 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-58-the-ever-lovin-blue-eyed-end-of-/4000-139073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168481/","id":168481,"name":null,"site_detail_url":"https://comicvine.gamespot.com/green-lantern-evils-might-3/4000-168481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77955/","id":77955,"name":"Hate Crimes","site_detail_url":"https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-3-hate-cr/4000-77955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169131/","id":169131,"name":"Neighbors","site_detail_url":"https://comicvine.gamespot.com/spider-mandaredevil-1-neighbors/4000-169131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98150/","id":98150,"name":"Cole Burns Slow Hand","site_detail_url":"https://comicvine.gamespot.com/100-bullets-38-cole-burns-slow-hand/4000-98150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139074/","id":139074,"name":"Inside Out","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-60-inside-out/4000-139074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121850/","id":121850,"name":"Septic Beauty","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-draft-marrow-1-septic-beauty/4000-121850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117029/","id":117029,"name":"Forgiveness","site_detail_url":"https://comicvine.gamespot.com/spider-girl-50-forgiveness/4000-117029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115163/","id":115163,"name":"","site_detail_url":"https://comicvine.gamespot.com/point-blank-1/4000-115163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111424/","id":111424,"name":"Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-1-marvel-encyclopedia/4000-111424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101112/","id":101112,"name":"A Season in Hell - Part IV","site_detail_url":"https://comicvine.gamespot.com/spawn-120-a-season-in-hell-part-iv/4000-101112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142753/","id":142753,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-1-volume-1/4000-142753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110322/","id":110322,"name":"Chapter Four: Remembrance Day","site_detail_url":"https://comicvine.gamespot.com/fables-4-chapter-four-remembrance-day/4000-110322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150320/","id":150320,"name":"Power Crush","site_detail_url":"https://comicvine.gamespot.com/jsa-39-power-crush/4000-150320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102150/","id":102150,"name":"A Prelude to Endgame","site_detail_url":"https://comicvine.gamespot.com/witchblade-59-a-prelude-to-endgame/4000-102150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113949/","id":113949,"name":"World Trust, Part 1: New Alliances","site_detail_url":"https://comicvine.gamespot.com/avengers-57-world-trust-part-1-new-alliances/4000-113949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105435/","id":105435,"name":"Hellfire and Brimstone: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-21-hellfire-and-brimstone-part-1/4000-105435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77988/","id":77988,"name":"Yesterday and Tomorrow","site_detail_url":"https://comicvine.gamespot.com/avengers-icons-the-vision-1-yesterday-and-tomorrow/4000-77988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175994/","id":175994,"name":"Fantastici Quattro: la Sfida del Dottor Destino","site_detail_url":"https://comicvine.gamespot.com/oscar-bestsellers-1277-fantastici-quattro-la-sfida/4000-175994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108025/","id":108025,"name":"The Exclusive","site_detail_url":"https://comicvine.gamespot.com/the-punisher-15-the-exclusive/4000-108025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278806/","id":278806,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jim-steranko-1-tpb/4000-278806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284436/","id":284436,"name":"Il segreto delle Ombre Diafane","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-gigante-8-il-segreto-delle-ombre-di/4000-284436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-88710/","id":88710,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-36/4000-88710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89233/","id":89233,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-glimpse-and-echo-2/4000-89233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357437/","id":357437,"name":"","site_detail_url":"https://comicvine.gamespot.com/kiss-3/4000-357437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78205/","id":78205,"name":"Blood from Stones, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-hood-4-blood-from-stones-pt-4/4000-78205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74732/","id":74732,"name":"Plasmids","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-25-plasmids/4000-74732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77958/","id":77958,"name":"Autumn in New York","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-4-autumn-in-new-york/4000-77958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105616/","id":105616,"name":"Hope, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-411-hope-pt-2/4000-105616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134847/","id":134847,"name":"You Can Never, Never, Never Go Home Again","site_detail_url":"https://comicvine.gamespot.com/green-lantern-153-you-can-never-never-never-go-hom/4000-134847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113658/","id":113658,"name":"A Death in the Family Part 4","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-47-a-death-in-the-family-p/4000-113658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167479/","id":167479,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-revelations-1-volume-2/4000-167479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168480/","id":168480,"name":null,"site_detail_url":"https://comicvine.gamespot.com/green-lantern-evils-might-2/4000-168480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77954/","id":77954,"name":"A Ruse By Any Other Name...","site_detail_url":"https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-2-a-ruse-/4000-77954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287499/","id":287499,"name":"","site_detail_url":"https://comicvine.gamespot.com/demolidor-amarelo-3/4000-287499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117028/","id":117028,"name":"A Dish Served Cold!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-49-a-dish-served-cold/4000-117028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581494/","id":581494,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/dv8-neighborhood-threat-1-volume-1/4000-581494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114265/","id":114265,"name":"Heartbreaker: Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-mans-tangled-web-16-heartbreaker-part-1/4000-114265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294040/","id":294040,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-underboss-1-volume-4/4000-294040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110325/","id":110325,"name":"Chapter Three: Blood Tells","site_detail_url":"https://comicvine.gamespot.com/fables-3-chapter-three-blood-tells/4000-110325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109744/","id":109744,"name":"The Big Dance","site_detail_url":"https://comicvine.gamespot.com/stormwatch-team-achilles-1-the-big-dance/4000-109744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113474/","id":113474,"name":"Cold Arms","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-43-cold-arms/4000-113474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102149/","id":102149,"name":"Endgame Prelude","site_detail_url":"https://comicvine.gamespot.com/witchblade-58-endgame-prelude/4000-102149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84913/","id":84913,"name":"Out of Our Heads","site_detail_url":"https://comicvine.gamespot.com/green-lantern-152-out-of-our-heads/4000-84913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120092/","id":120092,"name":"Homeland Security","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-7-homeland-security/4000-120092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84923/","id":84923,"name":"Resignation","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-20-resignation/4000-84923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169717/","id":169717,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-loves-labors-lost-1-tpb/4000-169717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107504/","id":107504,"name":"Killin La Vida Loca","site_detail_url":"https://comicvine.gamespot.com/the-punisher-14-killin-la-vida-loca/4000-107504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74731/","id":74731,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-24-ultimatum/4000-74731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89232/","id":89232,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/elektra-glimpse-and-echo-1-part-1/4000-89232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78204/","id":78204,"name":"Blood from Stones, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-hood-3-blood-from-stones-pt-3/4000-78204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382136/","id":382136,"name":"Поиски работы","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-9-wikiissue/4000-382136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382135/","id":382135,"name":"Знакомьтесь, Громилы","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-10-wikiissue/4000-382135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77957/","id":77957,"name":"Anything Goes","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-3-anything-goes/4000-77957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109459/","id":109459,"name":"Unmanned","site_detail_url":"https://comicvine.gamespot.com/y-the-last-man-1-unmanned/4000-109459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130290/","id":130290,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-421/4000-130290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113657/","id":113657,"name":"A Death in the Family Part 3","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-46-a-death-in-the-family-p/4000-113657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110254/","id":110254,"name":null,"site_detail_url":"https://comicvine.gamespot.com/green-lantern-evils-might-1/4000-110254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77953/","id":77953,"name":"What's New Pussy Cat?","site_detail_url":"https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do-1-whats-n/4000-77953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105770/","id":105770,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/alias-10-untitled/4000-105770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109366/","id":109366,"name":"Introspect Part 1","site_detail_url":"https://comicvine.gamespot.com/elektra-11-introspect-part-1/4000-109366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333016/","id":333016,"name":"Medusa Reborn: From a Friend!; Trident: Father's Day; Judo Girl; Orion the Hunter: Leviathan","site_detail_url":"https://comicvine.gamespot.com/the-odyssey-1-medusa-reborn-from-a-friend-trident-/4000-333016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98149/","id":98149,"name":"On Accidental Purpose","site_detail_url":"https://comicvine.gamespot.com/100-bullets-37-on-accidental-purpose/4000-98149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78177/","id":78177,"name":"Remembrance of Things Past","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-56-remembrance-of-things-past/4000-78177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287498/","id":287498,"name":"","site_detail_url":"https://comicvine.gamespot.com/demolidor-amarelo-2/4000-287498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115959/","id":115959,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-1/4000-115959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78316/","id":78316,"name":"A Mad Calling","site_detail_url":"https://comicvine.gamespot.com/infinity-abyss-1-a-mad-calling/4000-78316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120091/","id":120091,"name":"Giant Man Vs. The Wasp","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-6-giant-man-vs-the-wasp/4000-120091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110324/","id":110324,"name":"Chapter Two: The (Un)Usual Suspects","site_detail_url":"https://comicvine.gamespot.com/fables-2-chapter-two-the-unusual-suspects/4000-110324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162203/","id":162203,"name":"Super Human","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-1-super-human/4000-162203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93788/","id":93788,"name":"The Shadow Pulpit Book 1 Of 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-177-the-shadow-pulpit-book-1-of-2/4000-93788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113473/","id":113473,"name":"A Strange Turn of Events","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-42-a-strange-turn-of-events/4000-113473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102148/","id":102148,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-57/4000-102148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77982/","id":77982,"name":"Rock Bottom","site_detail_url":"https://comicvine.gamespot.com/thing-freakshow-1-rock-bottom/4000-77982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84912/","id":84912,"name":"Back in the Saddle","site_detail_url":"https://comicvine.gamespot.com/green-lantern-151-back-in-the-saddle/4000-84912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113947/","id":113947,"name":"The Last Farewell","site_detail_url":"https://comicvine.gamespot.com/avengers-55-the-last-farewell/4000-113947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74730/","id":74730,"name":"Responsible","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-23-responsible/4000-74730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78212/","id":78212,"name":"Blinded By Science","site_detail_url":"https://comicvine.gamespot.com/the-order-5-blinded-by-science/4000-78212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107238/","id":107238,"name":"Cage (Part 5)","site_detail_url":"https://comicvine.gamespot.com/cage-5-cage-part-5/4000-107238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357438/","id":357438,"name":"","site_detail_url":"https://comicvine.gamespot.com/kiss-2/4000-357438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78203/","id":78203,"name":"Blood from Stones, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-hood-2-blood-from-stones-pt-2/4000-78203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80608/","id":80608,"name":"The Wine of Her Fornications","site_detail_url":"https://comicvine.gamespot.com/promethea-21-the-wine-of-her-fornications/4000-80608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382137/","id":382137,"name":"Разоблачение","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-8-wikiissue/4000-382137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114347/","id":114347,"name":"Let's Fall in Love","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-2-lets-fall-in-love/4000-114347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127549/","id":127549,"name":"War Zone TPB","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-1-war-zone-tpb/4000-127549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163543/","id":163543,"name":"Sweet Charity","site_detail_url":"https://comicvine.gamespot.com/spider-man-sweet-charity-1-sweet-charity/4000-163543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80544/","id":80544,"name":"Enemy, Chapter Three: Soft Targets","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-enemy-chapter-three-soft-targets/4000-80544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78220/","id":78220,"name":"Yo! There Shall Be An Ending","site_detail_url":"https://comicvine.gamespot.com/the-punisher-12-yo-there-shall-be-an-ending/4000-78220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76537/","id":76537,"name":"Unemployment","site_detail_url":"https://comicvine.gamespot.com/elektra-10-unemployment/4000-76537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69350/","id":69350,"name":"Spider-Man & Shang-Chi, Master of Kung Fu! Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-16-spider-man-shang-chi-ma/4000-69350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473381/","id":473381,"name":"Spider-Man, Storm, Cage vs. Smokescreen","site_detail_url":"https://comicvine.gamespot.com/spider-man-storm-and-luke-cage-1-spider-man-storm-/4000-473381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77961/","id":77961,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/spider-man-quality-of-life-1-untitled/4000-77961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287497/","id":287497,"name":"","site_detail_url":"https://comicvine.gamespot.com/demolidor-amarelo-1/4000-287497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78228/","id":78228,"name":"Gods and Men","site_detail_url":"https://comicvine.gamespot.com/spider-girl-47-gods-and-men/4000-78228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77981/","id":77981,"name":"One Eye Open","site_detail_url":"https://comicvine.gamespot.com/taskmaster-4-one-eye-open/4000-77981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715650/","id":715650,"name":"Public Enemy Number One!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-78-public-enemy-/4000-715650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120040/","id":120040,"name":"Hulk Does Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-5-hulk-does-manhattan/4000-120040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132453/","id":132453,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nuff-said-1-tpb/4000-132453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110323/","id":110323,"name":"Chapter One: Old Tales Revisited","site_detail_url":"https://comicvine.gamespot.com/fables-1-chapter-one-old-tales-revisited/4000-110323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113472/","id":113472,"name":"Looking Back","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-41-looking-back/4000-113472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102147/","id":102147,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-56/4000-102147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78315/","id":78315,"name":"A Good Day to Die","site_detail_url":"https://comicvine.gamespot.com/avengers-54-a-good-day-to-die/4000-78315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78202/","id":78202,"name":"Blood from Stones, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-hood-1-blood-from-stones-pt-1/4000-78202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105769/","id":105769,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-9/4000-105769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186655/","id":186655,"name":"Peter Parker: Spider-Man: One Small Break","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-one-small-break-1-peter-pa/4000-186655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119053/","id":119053,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pro-1/4000-119053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109984/","id":109984,"name":"The Secret Is Out","site_detail_url":"https://comicvine.gamespot.com/daredevil-33-the-secret-is-out/4000-109984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294039/","id":294039,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daredevil-wake-up-1-tpb/4000-294039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316480/","id":316480,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-authority-earth-inferno-and-other-stories-1-tp/4000-316480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316689/","id":316689,"name":"La vendetta di Loki","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-244-la-vendetta-di-loki/4000-316689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113919/","id":113919,"name":"This Ones For You; End of The Line; Stray","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-36-this-ones-for-you-end-of-the-li/4000-113919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78211/","id":78211,"name":"Norrin's Rib","site_detail_url":"https://comicvine.gamespot.com/the-order-4-norrins-rib/4000-78211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107237/","id":107237,"name":"Cage (Part 4)","site_detail_url":"https://comicvine.gamespot.com/cage-4-cage-part-4/4000-107237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238498/","id":238498,"name":"Spiderman","site_detail_url":"https://comicvine.gamespot.com/mad-46-spiderman/4000-238498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84992/","id":84992,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/promethea-3-book-three/4000-84992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382138/","id":382138,"name":"Час супергероя!","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-7-wikiissue/4000-382138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383452/","id":383452,"name":"Человек-Паук: Спецвыпуск","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-spetsvypusk-1--/4000-383452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114345/","id":114345,"name":"My Funny Valentine","site_detail_url":"https://comicvine.gamespot.com/spider-man-blue-1-my-funny-valentine/4000-114345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114448/","id":114448,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-super-special-1/4000-114448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74729/","id":74729,"name":"Reflections Of. . .","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-22-reflections-of/4000-74729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80588/","id":80588,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-2/4000-80588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78219/","id":78219,"name":"Cabattoir","site_detail_url":"https://comicvine.gamespot.com/the-punisher-11-cabattoir/4000-78219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69349/","id":69349,"name":"Spider-Man & Shang-Chi, Master of Kung Fu! Part One of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-15-spider-man-shang-chi-ma/4000-69349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111561/","id":111561,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/100-bullets-a-foregone-tomorrow-1-volume-four/4000-111561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78227/","id":78227,"name":"Suddenly... the Scarlet Spider!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-46-suddenly-the-scarlet-spider/4000-78227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98060/","id":98060,"name":"Roots/Dirty Job","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-double-shot-1-rootsdirty-job/4000-98060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103525/","id":103525,"name":"Kat Farrell","site_detail_url":"https://comicvine.gamespot.com/deadline-1-kat-farrell/4000-103525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77980/","id":77980,"name":"A Watery Grave","site_detail_url":"https://comicvine.gamespot.com/taskmaster-3-a-watery-grave/4000-77980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120039/","id":120039,"name":"Thunder","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-4-thunder/4000-120039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113471/","id":113471,"name":"Sensitive Issues","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-40-sensitive-issues/4000-113471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219735/","id":219735,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-official-movie-adaptation-1/4000-219735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123563/","id":123563,"name":"The Hiketeia","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-hiketeia-1-the-hiketeia/4000-123563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105767/","id":105767,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-8/4000-105767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248548/","id":248548,"name":"Before the Storm","site_detail_url":"https://comicvine.gamespot.com/fort-prophet-of-the-unexplained-1-before-the-storm/4000-248548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66250/","id":66250,"name":"Enemy, Chapter One: Dust","site_detail_url":"https://comicvine.gamespot.com/captain-america-1-enemy-chapter-one-dust/4000-66250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283757/","id":283757,"name":"La macchina della verità","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-19-la-macchina-della-verit/4000-283757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66280/","id":66280,"name":"Out","site_detail_url":"https://comicvine.gamespot.com/daredevil-32-out/4000-66280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78210/","id":78210,"name":"Ultimatum: Avengers!","site_detail_url":"https://comicvine.gamespot.com/the-order-3-ultimatum-avengers/4000-78210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145021/","id":145021,"name":"Part 4: Soul Food or So Much for Clever Hidden Plans","site_detail_url":"https://comicvine.gamespot.com/the-sandman-presents-the-thessaliad-4-part-4-soul-/4000-145021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101110/","id":101110,"name":"A Season in Hell - Part II","site_detail_url":"https://comicvine.gamespot.com/spawn-118-a-season-in-hell-part-ii/4000-101110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107236/","id":107236,"name":"Cage (Part 3)","site_detail_url":"https://comicvine.gamespot.com/cage-3-cage-part-3/4000-107236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382139/","id":382139,"name":"Уроки жизни","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-6-wikiissue/4000-382139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74727/","id":74727,"name":"Live","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-20-live/4000-74727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74728/","id":74728,"name":"Hunted","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-21-hunted/4000-74728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287644/","id":287644,"name":"Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/der-ultimative-spider-man-8-doctor-octopus/4000-287644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80587/","id":80587,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-1/4000-80587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78218/","id":78218,"name":"This Makes It Personal!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-10-this-makes-it-personal/4000-78218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102146/","id":102146,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-55/4000-102146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176496/","id":176496,"name":"","site_detail_url":"https://comicvine.gamespot.com/webwitch-companion-1/4000-176496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69348/","id":69348,"name":"Spider-Man & Black Widow","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-14-spider-man-black-widow/4000-69348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78226/","id":78226,"name":"Secret Lives!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-45-secret-lives/4000-78226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77979/","id":77979,"name":"Patched Wounds","site_detail_url":"https://comicvine.gamespot.com/taskmaster-2-patched-wounds/4000-77979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120038/","id":120038,"name":"21st Century Boy","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-21st-century-boy/4000-120038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105921/","id":105921,"name":"Invasion From Dimension X Part 1: Beachhead!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-11-invasion-from-dimension-x-part-1-/4000-105921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113470/","id":113470,"name":"Meanwhile...","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-39-meanwhile/4000-113470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173346/","id":173346,"name":"","site_detail_url":"https://comicvine.gamespot.com/thing-and-she-hulk-the-long-night-1/4000-173346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107073/","id":107073,"name":"As I Die Lying","site_detail_url":"https://comicvine.gamespot.com/x-force-126-as-i-die-lying/4000-107073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105768/","id":105768,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-7/4000-105768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131645/","id":131645,"name":"V3s: Part 1","site_detail_url":"https://comicvine.gamespot.com/blade-1-v3s-part-1/4000-131645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291631/","id":291631,"name":"Le dragon et le tigre","site_detail_url":"https://comicvine.gamespot.com/xoco-4-le-dragon-et-le-tigre/4000-291631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51630/","id":51630,"name":"Piece Of Work","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-19-piece-of-work/4000-51630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78174/","id":78174,"name":"The Fire This Time!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-53-the-fire-this-time/4000-78174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316756/","id":316756,"name":"La scure incantata","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-242-la-scure-incantata/4000-316756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78209/","id":78209,"name":"It's Our World","site_detail_url":"https://comicvine.gamespot.com/the-order-2-its-our-world/4000-78209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101109/","id":101109,"name":"A Season in Hell - Part I","site_detail_url":"https://comicvine.gamespot.com/spawn-117-a-season-in-hell-part-i/4000-101109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106919/","id":106919,"name":"Cage (Part 2)","site_detail_url":"https://comicvine.gamespot.com/cage-2-cage-part-2/4000-106919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382140/","id":382140,"name":"Суперсила","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-5-wikiissue/4000-382140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141589/","id":141589,"name":"The Invitation","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-secret-files-origins-3-the-invitation/4000-141589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142026/","id":142026,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-team-up-1-volume-1/4000-142026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80586/","id":80586,"name":null,"site_detail_url":"https://comicvine.gamespot.com/paradise-x-0/4000-80586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78217/","id":78217,"name":"You Talkin' To Me?","site_detail_url":"https://comicvine.gamespot.com/the-punisher-9-you-talkin-to-me/4000-78217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64489/","id":64489,"name":"The Logan Files Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-173-the-logan-files-part-1-of-3/4000-64489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102145/","id":102145,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-54/4000-102145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109365/","id":109365,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-8/4000-109365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131033/","id":131033,"name":null,"site_detail_url":"https://comicvine.gamespot.com/10th-muse-demonslayer-1-2/4000-131033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132498/","id":132498,"name":null,"site_detail_url":"https://comicvine.gamespot.com/10th-muse-demonslayer-1/4000-132498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232261/","id":232261,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-1-volume-1/4000-232261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69347/","id":69347,"name":"Spider-Man & Doctor Strange Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-13-spider-man-doctor-stran/4000-69347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78225/","id":78225,"name":"Cry Uncle!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-44-cry-uncle/4000-78225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259630/","id":259630,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-best-of-spider-man-1-volume-one/4000-259630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187221/","id":187221,"name":"Magneto: Rogue Nation","site_detail_url":"https://comicvine.gamespot.com/magneto-rogue-nation-1-magneto-rogue-nation/4000-187221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256666/","id":256666,"name":"Marvel Mangaverse, Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse-volume-one-1-marvel-mangaverse-v/4000-256666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107785/","id":107785,"name":"Big","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-big/4000-107785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154663/","id":154663,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-1-volume-1/4000-154663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113817/","id":113817,"name":"What Can One Icon Do?","site_detail_url":"https://comicvine.gamespot.com/superman-179-what-can-one-icon-do/4000-113817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105766/","id":105766,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-6/4000-105766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66881/","id":66881,"name":"Part 6: The Man Who Loved the War","site_detail_url":"https://comicvine.gamespot.com/fury-6-part-6-the-man-who-loved-the-war/4000-66881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280253/","id":280253,"name":"Vent'anni di mysteri","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-241-ventanni-di-mysteri/4000-280253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294016/","id":294016,"name":"Black Panther: Enemy of the State","site_detail_url":"https://comicvine.gamespot.com/black-panther-enemy-of-the-state-1-black-panther-e/4000-294016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51629/","id":51629,"name":"The Cycle","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-18-the-cycle/4000-51629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78173/","id":78173,"name":"Shadows of Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-52-shadows-of-doom/4000-78173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268681/","id":268681,"name":"Diabolic Special Vol. 16, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-200201-diabolic-special-vol-16/4000-268681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78208/","id":78208,"name":"The Best Defense","site_detail_url":"https://comicvine.gamespot.com/the-order-1-the-best-defense/4000-78208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145023/","id":145023,"name":"Part 2: The Long Crawl or the Trouble with Riddle Games","site_detail_url":"https://comicvine.gamespot.com/the-sandman-presents-the-thessaliad-2-part-2-the-l/4000-145023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106901/","id":106901,"name":"Cage (Part 1)","site_detail_url":"https://comicvine.gamespot.com/cage-1-cage-part-1/4000-106901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80606/","id":80606,"name":"Fatherland","site_detail_url":"https://comicvine.gamespot.com/promethea-19-fatherland/4000-80606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382141/","id":382141,"name":"Кумир","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-4-wikiissue/4000-382141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384486/","id":384486,"name":"Предательство","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-5-wikiissue/4000-384486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84918/","id":84918,"name":"It Doesn't Have to be This Way","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-15-it-doesnt-have-to-be-this-way/4000-84918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347588/","id":347588,"name":"Coming Home","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-coming-home-1-coming-home/4000-347588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78167/","id":78167,"name":"Enemy of the State II, Part 1 - Mirror","site_detail_url":"https://comicvine.gamespot.com/black-panther-41-enemy-of-the-state-ii-part-1-mirr/4000-78167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78216/","id":78216,"name":"When Frank Sleeps","site_detail_url":"https://comicvine.gamespot.com/the-punisher-8-when-frank-sleeps/4000-78216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158826/","id":158826,"name":"Spider Scroll","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse-spider-man-1-spider-scroll/4000-158826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158829/","id":158829,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse-ghost-riders-1/4000-158829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128972/","id":128972,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse-eternity-twilight-1/4000-128972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69346/","id":69346,"name":"Spider-Man & Doctor Strange Part One of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-12-spider-man-and-doctor-s/4000-69346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468581/","id":468581,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spider-mans-tangled-web-2-volume-2/4000-468581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78223/","id":78223,"name":"Mother's Day","site_detail_url":"https://comicvine.gamespot.com/spider-girl-42-mothers-day/4000-78223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118482/","id":118482,"name":"Planet X-Press Men","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-8-planet-x-press-men/4000-118482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197123/","id":197123,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-firsts-1/4000-197123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76565/","id":76565,"name":"Face the Music!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-9-face-the-music/4000-76565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84917/","id":84917,"name":"Wild Card","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-14-wild-card/4000-84917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77725/","id":77725,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/alias-5-untitled/4000-77725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66277/","id":66277,"name":"Underboss: Part Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-29-underboss-part-four/4000-66277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78172/","id":78172,"name":"Eye of the Beholder","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-51-eye-of-the-beholder/4000-78172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337249/","id":337249,"name":"Il ragazzo che sapeva tutto","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-240-il-ragazzo-che-sapeva-tutto/4000-337249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353777/","id":353777,"name":"Cagliostro!","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-12-cagliostro/4000-353777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145024/","id":145024,"name":"Part 1: The Daughters of Garm or Far too Much About Pie","site_detail_url":"https://comicvine.gamespot.com/the-sandman-presents-the-thessaliad-1-part-1-the-d/4000-145024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101108/","id":101108,"name":"Consequences","site_detail_url":"https://comicvine.gamespot.com/spawn-116-consequences/4000-101108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382142/","id":382142,"name":"Боль","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-3-wikiissue/4000-382142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384485/","id":384485,"name":"Полигон","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-4-wikiissue/4000-384485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163145/","id":163145,"name":"","site_detail_url":"https://comicvine.gamespot.com/cavewoman-pangaean-sea-3/4000-163145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80625/","id":80625,"name":"Doors Wide Open","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-178-doors-wide-open/4000-80625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51628/","id":51628,"name":"Taking Advantage","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-17-taking-advantage/4000-51628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68402/","id":68402,"name":"Nuff Said","site_detail_url":"https://comicvine.gamespot.com/the-punisher-7-nuff-said/4000-68402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102144/","id":102144,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-53/4000-102144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69316/","id":69316,"name":"Generation Gap","site_detail_url":"https://comicvine.gamespot.com/the-titans-36-generation-gap/4000-69316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109363/","id":109363,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-6/4000-109363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69345/","id":69345,"name":"Spider-Man & X-Men: Peter Parker's Day Off","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-11-spider-man-x-men-peter-/4000-69345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347818/","id":347818,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-army-of-one-1-volume-2/4000-347818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118820/","id":118820,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-paradise-lost-1-tpb/4000-118820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78222/","id":78222,"name":"Funeral For A Fiend","site_detail_url":"https://comicvine.gamespot.com/spider-girl-41-funeral-for-a-fiend/4000-78222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384484/","id":384484,"name":"Враг внутри","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-3-wikiissue/4000-384484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114258/","id":114258,"name":"Gentlemen's Agreement: Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-mans-tangled-web-9-gentlemens-agreement-par/4000-114258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141113/","id":141113,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-5-volume-5/4000-141113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142792/","id":142792,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-ant-man-1-volume-1/4000-142792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113469/","id":113469,"name":"The Conversation","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-38-the-conversation/4000-113469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121862/","id":121862,"name":"","site_detail_url":"https://comicvine.gamespot.com/tmnt-teenage-mutant-ninja-turtles-2/4000-121862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211719/","id":211719,"name":"A Moment of Silence","site_detail_url":"https://comicvine.gamespot.com/moment-of-silence-1-a-moment-of-silence/4000-211719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84916/","id":84916,"name":"Thief in the Night","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-13-thief-in-the-night/4000-84916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77724/","id":77724,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-4/4000-77724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274437/","id":274437,"name":"L'Échange","site_detail_url":"https://comicvine.gamespot.com/le-decalogue-6-lechange/4000-274437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136299/","id":136299,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/9-11-2-volume-2/4000-136299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51443/","id":51443,"name":"Inspiration","site_detail_url":"https://comicvine.gamespot.com/jla-incarnations-7-inspiration/4000-51443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66249/","id":66249,"name":"Silent Night, Silent Morning; Keep In Mind; To The Core; Relic; A Moment Of Silence; Stars And Stripes Forever","site_detail_url":"https://comicvine.gamespot.com/captain-america-50-silent-night-silent-morning-kee/4000-66249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-63776/","id":63776,"name":"Silent But Deadly","site_detail_url":"https://comicvine.gamespot.com/defenders-12-silent-but-deadly/4000-63776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80605/","id":80605,"name":"Red Glare!","site_detail_url":"https://comicvine.gamespot.com/promethea-18-red-glare/4000-80605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382143/","id":382143,"name":"Бессилие. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-2-2/4000-382143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51627/","id":51627,"name":"Kraven The Hunter","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-16-kraven-the-hunter/4000-51627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153648/","id":153648,"name":"The Tracks of My Fears; Chili Chiller","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-55-the-tracks-of-my-fears-chili-chiller/4000-153648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181499/","id":181499,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-celestial-madonna-1/4000-181499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287642/","id":287642,"name":"Entdeckungen","site_detail_url":"https://comicvine.gamespot.com/der-ultimative-spider-man-6-entdeckungen/4000-287642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52121/","id":52121,"name":"Anniversary","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-50-anniversary/4000-52121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110989/","id":110989,"name":"Two Minute Warning","site_detail_url":"https://comicvine.gamespot.com/jla-61-two-minute-warning/4000-110989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80564/","id":80564,"name":"Quiet Miracles","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-26-quiet-miracles/4000-80564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107503/","id":107503,"name":"Do Not Fall in New York City","site_detail_url":"https://comicvine.gamespot.com/the-punisher-6-do-not-fall-in-new-york-city/4000-107503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164678/","id":164678,"name":"Friends and Lovers","site_detail_url":"https://comicvine.gamespot.com/the-titans-35-friends-and-lovers/4000-164678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164833/","id":164833,"name":"The Watch / Red Snow","site_detail_url":"https://comicvine.gamespot.com/wolverine-annual-2001-1-the-watch-red-snow/4000-164833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64487/","id":64487,"name":"Stay Alive! Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-170-stay-alive-part-1-of-3/4000-64487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102143/","id":102143,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-52/4000-102143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109362/","id":109362,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-5/4000-109362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55333/","id":55333,"name":"Spider-Man & The Man-Thing","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-10-spider-man-the-man-thin/4000-55333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116509/","id":116509,"name":"A Death In the Family!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-40-a-death-in-the-family/4000-116509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114257/","id":114257,"name":"Gentlemen's Agreement: Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mans-tangled-web-8-gentlemens-agreement-par/4000-114257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715648/","id":715648,"name":"Hunting Season","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-75-hunting-seaso/4000-715648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145625/","id":145625,"name":"","site_detail_url":"https://comicvine.gamespot.com/civilian-justice-1/4000-145625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135313/","id":135313,"name":"The Artists Respond","site_detail_url":"https://comicvine.gamespot.com/9-11-1-the-artists-respond/4000-135313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125062/","id":125062,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-4/4000-125062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113468/","id":113468,"name":"Interlude","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-37-interlude/4000-113468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51626/","id":51626,"name":"Confrontations","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-15-confrontations/4000-51626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172625/","id":172625,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-12/4000-172625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55294/","id":55294,"name":"The Final Bell","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-6-the-final-bell/4000-55294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197124/","id":197124,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-into-the-breach-1/4000-197124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77723/","id":77723,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-3/4000-77723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66878/","id":66878,"name":"Part 3: Here Comes the Pain","site_detail_url":"https://comicvine.gamespot.com/fury-3-part-3-here-comes-the-pain/4000-66878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68514/","id":68514,"name":"Snow Day","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-37-snow-day/4000-68514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211408/","id":211408,"name":"Nagraj America Mein","site_detail_url":"https://comicvine.gamespot.com/nagraj-73-nagraj-america-mein/4000-211408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251477/","id":251477,"name":"Welcome Back, Frank","site_detail_url":"https://comicvine.gamespot.com/punisher-welcome-back-frank-1-welcome-back-frank/4000-251477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50821/","id":50821,"name":"The Once & Future King, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-37-the-once-future-king-part-2-of-2/4000-50821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265059/","id":265059,"name":"The Magneto War Begins!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-81-the-magneto-war-begins/4000-265059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273049/","id":273049,"name":"Il segreto di Altrove","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-nathan-never-2-il-segreto-di-altrov/4000-273049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275685/","id":275685,"name":"La mémoire de Dillon","site_detail_url":"https://comicvine.gamespot.com/berceuse-assassine-3-la-memoire-de-dillon/4000-275685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136301/","id":136301,"name":"9-11: Emergency Relief","site_detail_url":"https://comicvine.gamespot.com/9-11-emergency-relief-1-9-11-emergency-relief/4000-136301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260593/","id":260593,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/green-arrow-quiver-1-volume-1/4000-260593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66248/","id":66248,"name":"Closure","site_detail_url":"https://comicvine.gamespot.com/captain-america-49-closure/4000-66248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322722/","id":322722,"name":"","site_detail_url":"https://comicvine.gamespot.com/who-cares-1/4000-322722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166170/","id":166170,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-archives-1-volume-1/4000-166170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382104/","id":382104,"name":"Бессилие. Часть 1","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-1-1/4000-382104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384482/","id":384482,"name":"Люди будущего. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-2-2/4000-384482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442035/","id":442035,"name":"Oproer in New York","site_detail_url":"https://comicvine.gamespot.com/de-blauwbloezen-45-oproer-in-new-york/4000-442035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187399/","id":187399,"name":"Victor Von Doom, Emperor of Earth!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300892/","id":300892,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/gen-13-superhuman-like-you-1-tpb/4000-300892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52120/","id":52120,"name":"Dark Victory","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-49-dark-victory/4000-52120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118481/","id":118481,"name":"New Year's Rockin' Evil","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-7-new-years-rockin-evil/4000-118481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237221/","id":237221,"name":"The Boulevard of Broken Dreams","site_detail_url":"https://comicvine.gamespot.com/boulevard-of-broken-dreams-1-the-boulevard-of-brok/4000-237221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55293/","id":55293,"name":"Against the Ropes","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-5-against-the-ropes/4000-55293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222109/","id":222109,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-justice-like-lightning-1-tpb/4000-222109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68513/","id":68513,"name":"The Big Score","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-36-the-big-score/4000-68513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55332/","id":55332,"name":"Spider-Man & The Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-9-spider-man-the-fantastic/4000-55332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118359/","id":118359,"name":"","site_detail_url":"https://comicvine.gamespot.com/coven-dark-sister-2/4000-118359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114070/","id":114070,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/paradise-x-heralds-1-chapter-one/4000-114070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116508/","id":116508,"name":"Duty Calls!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-39-duty-calls/4000-116508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114256/","id":114256,"name":"Gentlemen's Agreement: Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-mans-tangled-web-7-gentlemens-agreement-par/4000-114256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53566/","id":53566,"name":"The Witch & The Warrior - Part 2: Girl Frenzy","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-175-the-witch-the-warrior-part-2-girl/4000-53566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133635/","id":133635,"name":"#17-14","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-3-17-14/4000-133635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130133/","id":130133,"name":"#25-22","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-1-25-22/4000-130133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133634/","id":133634,"name":"#21-18","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-2-21-18/4000-133634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76563/","id":76563,"name":"Paradise Lost!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-6-paradise-lost/4000-76563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113467/","id":113467,"name":"\"The Black Issue\"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-36-the-black-issue/4000-113467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121359/","id":121359,"name":"","site_detail_url":"https://comicvine.gamespot.com/tmnt-teenage-mutant-ninja-turtles-1/4000-121359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52119/","id":52119,"name":"World's Apart","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-48-worlds-apart/4000-52119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133637/","id":133637,"name":"#9-6","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-5-9-6/4000-133637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77722/","id":77722,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-2/4000-77722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66877/","id":66877,"name":"Part 2: Apocalypse Shortly","site_detail_url":"https://comicvine.gamespot.com/fury-2-part-2-apocalypse-shortly/4000-66877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236772/","id":236772,"name":"Learning Curve","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-learning-curve-1-learning-curv/4000-236772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50820/","id":50820,"name":"The Once & Future King, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-36-the-once-future-king-part-1-of-2/4000-50820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272252/","id":272252,"name":"Prieres et balistique","site_detail_url":"https://comicvine.gamespot.com/soda-11-prieres-et-balistique/4000-272252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53574/","id":53574,"name":"Sins of the Past","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-11-sins-of-the-past/4000-53574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317544/","id":317544,"name":"Il richiamo dell'abisso","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-237-il-richiamo-dellabisso/4000-317544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51442/","id":51442,"name":"Buddies; Authority","site_detail_url":"https://comicvine.gamespot.com/jla-incarnations-6-buddies-authority/4000-51442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53498/","id":53498,"name":"Head to Head","site_detail_url":"https://comicvine.gamespot.com/defenders-10-head-to-head/4000-53498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133636/","id":133636,"name":"#13-10","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-4-13-10/4000-133636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133639/","id":133639,"name":"#4","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-7-4/4000-133639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221330/","id":221330,"name":"#1","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-10-1/4000-221330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69357/","id":69357,"name":"Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-14-doctor-octopus/4000-69357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80604/","id":80604,"name":"Gold","site_detail_url":"https://comicvine.gamespot.com/promethea-17-gold/4000-80604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384479/","id":384479,"name":"Люди будущего. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-1-1/4000-384479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129170/","id":129170,"name":"","site_detail_url":"https://comicvine.gamespot.com/threshold-45/4000-129170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69263/","id":69263,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-godstorm-2/4000-69263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109332/","id":109332,"name":"Intensive Care","site_detail_url":"https://comicvine.gamespot.com/deadpool-59-intensive-care/4000-109332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228818/","id":228818,"name":"","site_detail_url":"https://comicvine.gamespot.com/joker-last-laugh-secret-files-1/4000-228818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187393/","id":187393,"name":"Doom Triumphant!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117706/","id":117706,"name":"","site_detail_url":"https://comicvine.gamespot.com/cavewoman-pangaean-sea-2/4000-117706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345612/","id":345612,"name":"Books of Peril, Part Two: The Book of Sharate","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-2-books-of-peril-part-two-the-b/4000-345612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132482/","id":132482,"name":"Worlds at War","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-sage-4-worlds-at-war/4000-132482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125922/","id":125922,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-shi-1/4000-125922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69356/","id":69356,"name":"Confessions","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-13-confessions/4000-69356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55331/","id":55331,"name":"Spider-Man & The Punisher & Daredevil Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-8-spider-man-the-punisher-/4000-55331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55292/","id":55292,"name":"Never Lead With Your Left","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-4-never-lead-with-your-left/4000-55292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129489/","id":129489,"name":"The Frankenstein Syndrome, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-46-the-frankenstein-syndrome-part-1/4000-129489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116507/","id":116507,"name":"A New Lease on Life","site_detail_url":"https://comicvine.gamespot.com/spider-girl-38-a-new-lease-on-life/4000-116507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69372/","id":69372,"name":null,"site_detail_url":"https://comicvine.gamespot.com/universe-x-x/4000-69372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53565/","id":53565,"name":"The Witch & the Warrior - Part 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-174-the-witch-the-warrior-part-1/4000-53565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113466/","id":113466,"name":"Coming Out","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-35-coming-out/4000-113466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52118/","id":52118,"name":"Just Imagine...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-47-just-imagine/4000-52118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134347/","id":134347,"name":"Prologue; Righteous; The Innocent; Presumption; The Glittering World; Sonnenblume; Nikki Goes Down!; Tales","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-tales-of-the-slayers-1-pr/4000-134347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77721/","id":77721,"name":"","site_detail_url":"https://comicvine.gamespot.com/alias-1/4000-77721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66876/","id":66876,"name":"Part 1: Be Careful What You Wish for","site_detail_url":"https://comicvine.gamespot.com/fury-1-part-1-be-careful-what-you-wish-for/4000-66876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-85510/","id":85510,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-visionaries-frank-miller-3-volume-3/4000-85510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317517/","id":317517,"name":"L'uomo che raccontava storie","site_detail_url":"https://comicvine.gamespot.com/storie-da-altrove-4-luomo-che-raccontava-storie/4000-317517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317543/","id":317543,"name":"Martin Mystère: Uomo in Nero","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-236-martin-mystere-uomo-in-nero/4000-317543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53497/","id":53497,"name":"While You Were Out...","site_detail_url":"https://comicvine.gamespot.com/defenders-9-while-you-were-out/4000-53497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83193/","id":83193,"name":"The Kingdom, Part VII","site_detail_url":"https://comicvine.gamespot.com/spawn-113-the-kingdom-part-vii/4000-83193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69262/","id":69262,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-godstorm-1/4000-69262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122701/","id":122701,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-lady-death-1/4000-122701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78235/","id":78235,"name":"Beyond Redemption!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-56-beyond-redemption/4000-78235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187386/","id":187386,"name":"On... To Asgard!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670285/","id":670285,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-girl-1-tpb/4000-670285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66270/","id":66270,"name":"Playing to the Camera Part Three: Legal Questions","site_detail_url":"https://comicvine.gamespot.com/daredevil-22-playing-to-the-camera-part-three-lega/4000-66270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185458/","id":185458,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-sentry-1-tpb/4000-185458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102142/","id":102142,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-51/4000-102142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55291/","id":55291,"name":"Stepping into the Ring","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-3-stepping-into-the-ring/4000-55291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55330/","id":55330,"name":"Spider-Man & The Punisher & Daredevil Part One of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-7-spider-man-the-punisher-/4000-55330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129888/","id":129888,"name":"The Big Bang Theory, Conclusion","site_detail_url":"https://comicvine.gamespot.com/iron-man-45-the-big-bang-theory-conclusion/4000-129888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116505/","id":116505,"name":"Betrayed!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-37-betrayed/4000-116505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77555/","id":77555,"name":"Once Upon a Time ... On YANCY STREET ...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1-2-3-4-1-once-upon-a-time-on-yancy/4000-77555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157514/","id":157514,"name":"Zero Zero Uno","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-100-zero-zero-uno/4000-157514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113465/","id":113465,"name":"Meltdown","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-34-meltdown/4000-113465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51375/","id":51375,"name":"Model Behavior","site_detail_url":"https://comicvine.gamespot.com/angel-and-the-ape-1-model-behavior/4000-51375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50819/","id":50819,"name":"Gorilla Warfare, Book 2 of 2 - Masks","site_detail_url":"https://comicvine.gamespot.com/black-panther-35-gorilla-warfare-book-2-of-2-masks/4000-50819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317538/","id":317538,"name":"Minaccia dal passato","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-235-minaccia-dal-passato/4000-317538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69355/","id":69355,"name":"Battle Royal","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-12-battle-royal/4000-69355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80603/","id":80603,"name":"Love and the Law","site_detail_url":"https://comicvine.gamespot.com/promethea-16-love-and-the-law/4000-80603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345611/","id":345611,"name":"Books of Peril, Part One: The Book of Ki'Ari","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-1-books-of-peril-part-one-the-b/4000-345611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52117/","id":52117,"name":"It's Too Late To Stop Now!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-46-its-too-late-to-stop-now/4000-52117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78236/","id":78236,"name":"Storm Clouds Gathering","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-57-storm-clouds-gathering/4000-78236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187382/","id":187382,"name":"Nightmare In The Negative Zone!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118480/","id":118480,"name":"X-Mas Time is Fear","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-6-x-mas-time-is-fear/4000-118480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132481/","id":132481,"name":"Worlds of Trouble","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-sage-3-worlds-of-trouble/4000-132481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138971/","id":138971,"name":"The Devil You Know","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-2001-1-the-devil-you-know/4000-138971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68399/","id":68399,"name":"American Ugly","site_detail_url":"https://comicvine.gamespot.com/the-punisher-3-american-ugly/4000-68399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55290/","id":55290,"name":"The Measure of a Man","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-2-the-measure-of-a-man/4000-55290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55329/","id":55329,"name":"Spider-Man & The Punisher","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-6-spider-man-the-punisher/4000-55329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176316/","id":176316,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-prophecy-1/4000-176316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51232/","id":51232,"name":"The Hunted Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-166-the-hunted-conclusion/4000-51232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145247/","id":145247,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-special-iron-men-1/4000-145247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149824/","id":149824,"name":"Inspiration!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-our-worlds-at-war-1-inspiration/4000-149824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116504/","id":116504,"name":"Getting Involved","site_detail_url":"https://comicvine.gamespot.com/spider-girl-36-getting-involved/4000-116504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353390/","id":353390,"name":"L'Étrange Rendez-Vous","site_detail_url":"https://comicvine.gamespot.com/les-aventures-de-blake-et-mortimer-15-letrange-ren/4000-353390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66986/","id":66986,"name":"The Unreal World","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-15-the-unreal-world/4000-66986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280250/","id":280250,"name":"X-Men: X-Tinction Agenda","site_detail_url":"https://comicvine.gamespot.com/x-men-x-tinction-agenda-1-x-men-x-tinction-agenda/4000-280250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121566/","id":121566,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-1/4000-121566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76560/","id":76560,"name":"Hell To Pay","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-3-hell-to-pay/4000-76560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113464/","id":113464,"name":"All Fall Down","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-33-all-fall-down/4000-113464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201507/","id":201507,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-vignettes-1-volume-one/4000-201507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107070/","id":107070,"name":"And Then There Were Six","site_detail_url":"https://comicvine.gamespot.com/x-force-118-and-then-there-were-six/4000-107070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50818/","id":50818,"name":"Gorilla Warfare, Book 1 of 2 - Hell(o), I Must be Going","site_detail_url":"https://comicvine.gamespot.com/black-panther-34-gorilla-warfare-book-1-of-2-hello/4000-50818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69354/","id":69354,"name":"Discovery","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-11-discovery/4000-69354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317540/","id":317540,"name":"Il mistero dei nani di gesso","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-234-il-mistero-dei-nani-di-gesso/4000-317540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83192/","id":83192,"name":"The Kingdom, Part VI","site_detail_url":"https://comicvine.gamespot.com/spawn-112-the-kingdom-part-vi/4000-83192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69371/","id":69371,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-12/4000-69371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187375/","id":187375,"name":"...To Aid The Avengers!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50744/","id":50744,"name":"Sins of the Father","site_detail_url":"https://comicvine.gamespot.com/exiles-2-sins-of-the-father/4000-50744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52116/","id":52116,"name":"Thou Can't Get There From Here","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-45-thou-cant-get-there-from-here/4000-52116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53571/","id":53571,"name":"First Strike","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-8-first-strike/4000-53571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70489/","id":70489,"name":"Friends and Enemies","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-22-friends-and-enemies/4000-70489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132480/","id":132480,"name":"Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-sage-2-worlds-collide/4000-132480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68397/","id":68397,"name":"Well Come On Everybody and Let's Get Together Tonight","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-well-come-on-everybody-and-lets-get/4000-68397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68398/","id":68398,"name":"Does Whatever a Spider Can","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2-does-whatever-a-spider-can/4000-68398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52004/","id":52004,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-50/4000-52004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118358/","id":118358,"name":"","site_detail_url":"https://comicvine.gamespot.com/coven-dark-sister-1/4000-118358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55328/","id":55328,"name":"Spider-Man & Iron Man Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-5-spider-man-iron-man-part/4000-55328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451696/","id":451696,"name":"For Whom The Bell Tolls","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-dangerous-game-2-for-whom-the-b/4000-451696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108758/","id":108758,"name":"Line of Fire","site_detail_url":"https://comicvine.gamespot.com/spider-girl-35-line-of-fire/4000-108758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53562/","id":53562,"name":"Bird of Prey","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-171-bird-of-prey/4000-53562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66985/","id":66985,"name":"Everything Dies","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-14-everything-dies/4000-66985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110557/","id":110557,"name":"Marvel: The Characters And Their Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-the-characters-and-their-universe-1-marvel-/4000-110557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132705/","id":132705,"name":"Tales of the Phalanx Covenant","site_detail_url":"https://comicvine.gamespot.com/origin-of-generation-x-1-tales-of-the-phalanx-cove/4000-132705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155260/","id":155260,"name":"","site_detail_url":"https://comicvine.gamespot.com/aria-the-soul-market-4/4000-155260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113463/","id":113463,"name":"The Long, Dark Pizza of the Soul","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-32-the-long-dark-pizza-of-t/4000-113463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55289/","id":55289,"name":"The Championship Season","site_detail_url":"https://comicvine.gamespot.com/daredevil-yellow-1-the-championship-season/4000-55289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52003/","id":52003,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-49/4000-52003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50817/","id":50817,"name":"Seduction of the Innocent, Book 3 - War & Love","site_detail_url":"https://comicvine.gamespot.com/black-panther-33-seduction-of-the-innocent-book-3-/4000-50817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280477/","id":280477,"name":"Spider-Man Visionaries: John Romita","site_detail_url":"https://comicvine.gamespot.com/spider-man-visionaries-john-romita-1-spider-man-vi/4000-280477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66267/","id":66267,"name":"Wake Up Part Four","site_detail_url":"https://comicvine.gamespot.com/daredevil-19-wake-up-part-four/4000-66267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294015/","id":294015,"name":"Black Panther: The Client","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-client-1-black-panther-the-clien/4000-294015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317541/","id":317541,"name":"Massacro al Rick's Club","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-233-massacro-al-ricks-club/4000-317541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268679/","id":268679,"name":"Poster Special Vol. 15, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-200102-poster-special-vol-15-n/4000-268679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69353/","id":69353,"name":"The Worst Thing","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-10-the-worst-thing/4000-69353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83191/","id":83191,"name":"The Kingdom Part V","site_detail_url":"https://comicvine.gamespot.com/spawn-111-the-kingdom-part-v/4000-83191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80602/","id":80602,"name":"Mercury Rising","site_detail_url":"https://comicvine.gamespot.com/promethea-15-mercury-rising/4000-80602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307364/","id":307364,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/stormwatch-final-orbit-1-volume-5/4000-307364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53570/","id":53570,"name":"Return to Weapon X","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-7-return-to-weapon-x/4000-53570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69370/","id":69370,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-11/4000-69370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132479/","id":132479,"name":"Worlds Within Worlds","site_detail_url":"https://comicvine.gamespot.com/legend-of-the-sage-1-worlds-within-worlds/4000-132479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52115/","id":52115,"name":"Annihilation!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-44-annihilation/4000-52115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199179/","id":199179,"name":"Gods and Monsters","site_detail_url":"https://comicvine.gamespot.com/jla-gods-and-monsters-1-gods-and-monsters/4000-199179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187374/","id":187374,"name":"...Touched By the Hand of Havoc!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124319/","id":124319,"name":"Let Loose The Dogs of War","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-21-let-loose-the-dogs-of-wa/4000-124319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55327/","id":55327,"name":"Spider-Man & Iron Man Part One of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-4-spider-man-iron-man-part/4000-55327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235317/","id":235317,"name":"The Tomorrow People","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-the-tomorrow-people-1-the-tomorrow-/4000-235317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131888/","id":131888,"name":"The Big Bang Theory","site_detail_url":"https://comicvine.gamespot.com/iron-man-42-the-big-bang-theory/4000-131888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118344/","id":118344,"name":"","site_detail_url":"https://comicvine.gamespot.com/coven-dark-sister-1-2/4000-118344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451490/","id":451490,"name":"Like Sand Through An Hourglass","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-dangerous-game-1-like-sand-thro/4000-451490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51758/","id":51758,"name":"Overkill","site_detail_url":"https://comicvine.gamespot.com/spider-girl-34-overkill/4000-51758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396591/","id":396591,"name":"Vol. 7","site_detail_url":"https://comicvine.gamespot.com/jla-tower-of-babel-1-vol-7/4000-396591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134300/","id":134300,"name":"Everything You Always Wanted to Know About Dreams... But Were Afraid To Ask","site_detail_url":"https://comicvine.gamespot.com/the-sandman-presents-everything-you-always-wanted-/4000-134300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119074/","id":119074,"name":"","site_detail_url":"https://comicvine.gamespot.com/aria-the-soul-market-3/4000-119074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75683/","id":75683,"name":"Valor's Cauldron","site_detail_url":"https://comicvine.gamespot.com/thor-37-valors-cauldron/4000-75683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113462/","id":113462,"name":"Coming Home","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-31-coming-home/4000-113462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64586/","id":64586,"name":"Exit Wounds","site_detail_url":"https://comicvine.gamespot.com/x-force-116-exit-wounds/4000-64586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50816/","id":50816,"name":"Seduction of the Innocent, Book 2 - Innocent Blood","site_detail_url":"https://comicvine.gamespot.com/black-panther-32-seduction-of-the-innocent-book-2-/4000-50816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66266/","id":66266,"name":"Wake Up Part Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-18-wake-up-part-three/4000-66266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69352/","id":69352,"name":"Meet The Enforcers","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-9-meet-the-enforcers/4000-69352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53493/","id":53493,"name":"Headhunt","site_detail_url":"https://comicvine.gamespot.com/defenders-5-headhunt/4000-53493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349084/","id":349084,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/wildcats-serial-boxes-1-vol-3/4000-349084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83190/","id":83190,"name":"The Kingdom, Part IV","site_detail_url":"https://comicvine.gamespot.com/spawn-110-the-kingdom-part-iv/4000-83190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-82535/","id":82535,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/promethea-2-book-two/4000-82535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69369/","id":69369,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-10/4000-69369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53561/","id":53561,"name":"She's a Wonder","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-170-shes-a-wonder/4000-53561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187373/","id":187373,"name":"Mayhem on the Moon!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118479/","id":118479,"name":"Who's Dying to be a Gazillionaire","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-5-whos-dying-to-be-a-gazillionaire/4000-118479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55326/","id":55326,"name":"Spider-Man & Hulk Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-3-spider-man-hulk-part-two/4000-55326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52002/","id":52002,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-48/4000-52002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51757/","id":51757,"name":"Too Many Spiders","site_detail_url":"https://comicvine.gamespot.com/spider-girl-33-too-many-spiders/4000-51757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66983/","id":66983,"name":"The Long, Long Night","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-12-the-long-long-night/4000-66983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715644/","id":715644,"name":"The Terrible Toymaker!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-71-the-terrible-/4000-715644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113461/","id":113461,"name":"Transformations, Literal & Otherwise","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-30-transformations-literal-/4000-113461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52001/","id":52001,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-47/4000-52001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118818/","id":118818,"name":"","site_detail_url":"https://comicvine.gamespot.com/wildstorm-summer-special-1/4000-118818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50815/","id":50815,"name":"Seduction of the Innocent, Book 1 - Disciple","site_detail_url":"https://comicvine.gamespot.com/black-panther-31-seduction-of-the-innocent-book-1-/4000-50815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283739/","id":283739,"name":"La ragazza nella torta","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-18-la-ragazza-nella-torta/4000-283739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50800/","id":50800,"name":"The High Ground","site_detail_url":"https://comicvine.gamespot.com/avengers-41-the-high-ground/4000-50800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66265/","id":66265,"name":"Wake Up: Part Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-17-wake-up-part-two/4000-66265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69351/","id":69351,"name":"Working Stiff","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-8-working-stiff/4000-69351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83189/","id":83189,"name":"The Kingdom, Part III","site_detail_url":"https://comicvine.gamespot.com/spawn-109-the-kingdom-part-iii/4000-83189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80601/","id":80601,"name":"Moon River","site_detail_url":"https://comicvine.gamespot.com/promethea-14-moon-river/4000-80601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176318/","id":176318,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-vengeance-2/4000-176318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187372/","id":187372,"name":"New York Knockdown!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66958/","id":66958,"name":"It Takes a Thief","site_detail_url":"https://comicvine.gamespot.com/jla-53-it-takes-a-thief/4000-66958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55325/","id":55325,"name":"Spider-Man & Hulk Part One of Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-2-spider-man-hulk-part-one/4000-55325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160826/","id":160826,"name":"A Taste Of Infinity","site_detail_url":"https://comicvine.gamespot.com/spider-man-lifeline-3-a-taste-of-infinity/4000-160826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123322/","id":123322,"name":"Alive","site_detail_url":"https://comicvine.gamespot.com/lady-death-alive-1-alive/4000-123322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478841/","id":478841,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/benkei-in-new-york-1-vol-1/4000-478841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51756/","id":51756,"name":"The Steel Spider","site_detail_url":"https://comicvine.gamespot.com/spider-girl-32-the-steel-spider/4000-51756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113538/","id":113538,"name":"D.O.O.P. The Right Thing","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-4-doop-the-right-thing/4000-113538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66982/","id":66982,"name":"Hero for Hire","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-11-hero-for-hire/4000-66982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139943/","id":139943,"name":"Your Favorite Television Super-Team Is Back!","site_detail_url":"https://comicvine.gamespot.com/super-friends-1-your-favorite-television-super-tea/4000-139943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123088/","id":123088,"name":"Across All worlds","site_detail_url":"https://comicvine.gamespot.com/thor-35-across-all-worlds/4000-123088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-82357/","id":82357,"name":"While Rome Burned, Part 5","site_detail_url":"https://comicvine.gamespot.com/green-lantern-136-while-rome-burned-part-5/4000-82357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52000/","id":52000,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-46/4000-52000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50814/","id":50814,"name":"The Story Thus Far","site_detail_url":"https://comicvine.gamespot.com/black-panther-30-the-story-thus-far/4000-50814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50799/","id":50799,"name":"Thoom","site_detail_url":"https://comicvine.gamespot.com/avengers-40-thoom/4000-50799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66264/","id":66264,"name":"Wake Up Part One","site_detail_url":"https://comicvine.gamespot.com/daredevil-16-wake-up-part-one/4000-66264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51625/","id":51625,"name":"Secret Identity","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-7-secret-identity/4000-51625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83188/","id":83188,"name":"The Kingdom, Part II","site_detail_url":"https://comicvine.gamespot.com/spawn-108-the-kingdom-part-ii/4000-83188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176317/","id":176317,"name":"Best Served Cold","site_detail_url":"https://comicvine.gamespot.com/demonslayer-vengeance-1-best-served-cold/4000-176317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69367/","id":69367,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-8/4000-69367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66240/","id":66240,"name":"Duel","site_detail_url":"https://comicvine.gamespot.com/captain-america-41-duel/4000-66240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66957/","id":66957,"name":"Element of Surprise","site_detail_url":"https://comicvine.gamespot.com/jla-52-element-of-surprise/4000-66957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187371/","id":187371,"name":"The Merciless Menace Of MODOK!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113552/","id":113552,"name":"Spider-Man & Wolverine","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-1-spider-man-wolverine/4000-113552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119071/","id":119071,"name":"","site_detail_url":"https://comicvine.gamespot.com/aria-the-soul-market-2/4000-119071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160825/","id":160825,"name":"Snakes In The Grass","site_detail_url":"https://comicvine.gamespot.com/spider-man-lifeline-2-snakes-in-the-grass/4000-160825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160824/","id":160824,"name":"Pieces Of Fate","site_detail_url":"https://comicvine.gamespot.com/spider-man-lifeline-1-pieces-of-fate/4000-160824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51755/","id":51755,"name":"With Friends Like These...","site_detail_url":"https://comicvine.gamespot.com/spider-girl-31-with-friends-like-these/4000-51755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66918/","id":66918,"name":"Quiver Chapter One: The Queen is Dead (Long Live the Queen)","site_detail_url":"https://comicvine.gamespot.com/green-arrow-1-quiver-chapter-one-the-queen-is-dead/4000-66918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158871/","id":158871,"name":"Book Two: Union City Blues","site_detail_url":"https://comicvine.gamespot.com/the-monarchy-2-book-two-union-city-blues/4000-158871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335661/","id":335661,"name":"The Kingdom, Part 1","site_detail_url":"https://comicvine.gamespot.com/spawn-107-the-kingdom-part-1/4000-335661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66981/","id":66981,"name":"The Good With The Bad","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-10-the-good-with-the-bad/4000-66981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715639/","id":715639,"name":"Life Begins at Eighty!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-70-life-begins-a/4000-715639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123084/","id":123084,"name":"Man Of Tommorrow","site_detail_url":"https://comicvine.gamespot.com/thor-34-man-of-tommorrow/4000-123084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78337/","id":78337,"name":"While Rome Burned, Part 4: Hiding in Plain Sight","site_detail_url":"https://comicvine.gamespot.com/green-lantern-135-while-rome-burned-part-4-hiding-/4000-78337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51624/","id":51624,"name":"Big Time Super Hero","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-6-big-time-super-hero/4000-51624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65175/","id":65175,"name":"Eve of Destruction Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-392-eve-of-destruction-part-1/4000-65175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50813/","id":50813,"name":"A Story of Love & War, Book 4 - A Continuation of Politics By Other Means","site_detail_url":"https://comicvine.gamespot.com/black-panther-29-a-story-of-love-war-book-4-a-cont/4000-50813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51633/","id":51633,"name":"Warzone","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-3-warzone/4000-51633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66239/","id":66239,"name":"Fighting Back","site_detail_url":"https://comicvine.gamespot.com/captain-america-40-fighting-back/4000-66239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47449/","id":47449,"name":"The Curse","site_detail_url":"https://comicvine.gamespot.com/defenders-2-the-curse/4000-47449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83187/","id":83187,"name":"The Kingdom, Part I","site_detail_url":"https://comicvine.gamespot.com/spawn-107-the-kingdom-part-i/4000-83187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69366/","id":69366,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-7/4000-69366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187369/","id":187369,"name":"When Strike These Sentinels!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153115/","id":153115,"name":"Diamond Dog; Rest in Pizza","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-45-diamond-dog-rest-in-pizza/4000-153115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66956/","id":66956,"name":"Man and Superman","site_detail_url":"https://comicvine.gamespot.com/jla-51-man-and-superman/4000-66956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119062/","id":119062,"name":"","site_detail_url":"https://comicvine.gamespot.com/aria-the-soul-market-1/4000-119062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59111/","id":59111,"name":"The Mimic","site_detail_url":"https://comicvine.gamespot.com/100-bullets-20-the-mimic/4000-59111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447922/","id":447922,"name":"Day Of Judgment","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-ghosts-of-the-past-1-day-of-jud/4000-447922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49406/","id":49406,"name":"The Winds of War!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-30-the-winds-of-war/4000-49406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51632/","id":51632,"name":"The Enemy Within","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-2-the-enemy-within/4000-51632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47057/","id":47057,"name":"Any Which Way You Can","site_detail_url":"https://comicvine.gamespot.com/the-punisher-11-any-which-way-you-can/4000-47057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47058/","id":47058,"name":"Go Frank Go","site_detail_url":"https://comicvine.gamespot.com/the-punisher-12-go-frank-go/4000-47058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118478/","id":118478,"name":"The Owner Of Mars Attacks!","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-3-the-owner-of-mars-attacks/4000-118478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66980/","id":66980,"name":"Final Matters","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-9-final-matters/4000-66980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132393/","id":132393,"name":"False Truths!","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-mysterio-manifesto-3-false-truths/4000-132393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141614/","id":141614,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-fantastic-four-3-volume-3/4000-141614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142430/","id":142430,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-thor-1-volume-1/4000-142430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125270/","id":125270,"name":"Love Bites","site_detail_url":"https://comicvine.gamespot.com/chastity-love-bites-1-love-bites/4000-125270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152683/","id":152683,"name":"The Million Dollar Debut of Thor Girl","site_detail_url":"https://comicvine.gamespot.com/thor-33-the-million-dollar-debut-of-thor-girl/4000-152683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51623/","id":51623,"name":"Life Lessons","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-5-life-lessons/4000-51623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48843/","id":48843,"name":"Women at Work","site_detail_url":"https://comicvine.gamespot.com/big-town-3-women-at-work/4000-48843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48844/","id":48844,"name":"Big Town A Stan Lee Presentation","site_detail_url":"https://comicvine.gamespot.com/big-town-4-big-town-a-stan-lee-presentation/4000-48844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51999/","id":51999,"name":"Firing Line","site_detail_url":"https://comicvine.gamespot.com/witchblade-45-firing-line/4000-51999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175931/","id":175931,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/heavy-liquid-1-tpb/4000-175931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50812/","id":50812,"name":"A Story of Love & War, Book 3 - The Trade of Kings","site_detail_url":"https://comicvine.gamespot.com/black-panther-28-a-story-of-love-war-book-3-the-tr/4000-50812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-85509/","id":85509,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-visionaries-frank-miller-2-volume-2/4000-85509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49461/","id":49461,"name":"You Win! She's Back!","site_detail_url":"https://comicvine.gamespot.com/blink-1-you-win-shes-back/4000-49461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337447/","id":337447,"name":"Furia omicida","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-228-furia-omicida/4000-337447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47448/","id":47448,"name":"Once More, The End of the World...","site_detail_url":"https://comicvine.gamespot.com/defenders-1-once-more-the-end-of-the-world/4000-47448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342685/","id":342685,"name":"Vol. 12","site_detail_url":"https://comicvine.gamespot.com/spawn-immortality-1-vol-12/4000-342685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51167/","id":51167,"name":"Breakdown (Part 3)","site_detail_url":"https://comicvine.gamespot.com/black-widow-3-breakdown-part-3/4000-51167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157067/","id":157067,"name":"Goin' Back to Cali, to Cali, to Cali","site_detail_url":"https://comicvine.gamespot.com/gen-13-61-goin-back-to-cali-to-cali-to-cali/4000-157067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159170/","id":159170,"name":"Qeelocke's Really Big New York Adventure!","site_detail_url":"https://comicvine.gamespot.com/gen-13fantastic-four-1-qeelockes-really-big-new-yo/4000-159170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48325/","id":48325,"name":"The Virgin Harvest","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-11-the-virgin-harvest/4000-48325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187368/","id":187368,"name":"The Sinister Secret of the Sentry!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51631/","id":51631,"name":"The Tomorrow People","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-1-the-tomorrow-people/4000-51631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65666/","id":65666,"name":"Earth Abides","site_detail_url":"https://comicvine.gamespot.com/cable-88-earth-abides/4000-65666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49405/","id":49405,"name":"Strange Allies","site_detail_url":"https://comicvine.gamespot.com/spider-girl-29-strange-allies/4000-49405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66979/","id":66979,"name":"Dark Matters","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-8-dark-matters/4000-66979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715638/","id":715638,"name":"Planet of the Vampires","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-69-planet-of-the/4000-715638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132392/","id":132392,"name":"Even the Dead can lie!","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-mysterio-manifesto-2-even-the-dead-/4000-132392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51622/","id":51622,"name":"With Great Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-4-with-great-power/4000-51622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48842/","id":48842,"name":"Big Town a Stan Lee Presentation","site_detail_url":"https://comicvine.gamespot.com/big-town-2-big-town-a-stan-lee-presentation/4000-48842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123573/","id":123573,"name":"Bad to the Bone","site_detail_url":"https://comicvine.gamespot.com/spideymarrow-1-bad-to-the-bone/4000-123573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50811/","id":50811,"name":"A Story of Love & War, Book 2 - An Epidemic Insanity","site_detail_url":"https://comicvine.gamespot.com/black-panther-27-a-story-of-love-war-book-2-an-epi/4000-50811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210279/","id":210279,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-the-shadow-1-1/4000-210279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51166/","id":51166,"name":"Breakdown (Part 2)","site_detail_url":"https://comicvine.gamespot.com/black-widow-2-breakdown-part-2/4000-51166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220425/","id":220425,"name":"Spider-Man: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-ultimate-guidethe-amazing-spider-ma/4000-220425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96153/","id":96153,"name":"Firepower","site_detail_url":"https://comicvine.gamespot.com/before-the-fantastic-four-the-storms-3-firepower/4000-96153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65841/","id":65841,"name":"Across the Rubicon","site_detail_url":"https://comicvine.gamespot.com/captain-america-38-across-the-rubicon/4000-65841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100362/","id":100362,"name":"The Big Leagues","site_detail_url":"https://comicvine.gamespot.com/hellspawn-6-the-big-leagues/4000-100362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53556/","id":53556,"name":"Gods of Gotham Part 2 of 4: Avatars","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-165-gods-of-gotham-part-2-of-4-avatar/4000-53556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187354/","id":187354,"name":"The Baxter Building Besieged!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210036/","id":210036,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-all-star-comics-8-1/4000-210036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153049/","id":153049,"name":"Nutcracker Not-So-Sweet; Mascot Madness","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-43-nutcracker-not-so-sweet-mascot-madne/4000-153049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132391/","id":132391,"name":"Jack's Back","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-mysterio-manifesto-1-jacks-back/4000-132391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164832/","id":164832,"name":"Wolverine In Family","site_detail_url":"https://comicvine.gamespot.com/wolverine-annual-2000-1-wolverine-in-family/4000-164832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51998/","id":51998,"name":"Bang","site_detail_url":"https://comicvine.gamespot.com/witchblade-44-bang/4000-51998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124536/","id":124536,"name":null,"site_detail_url":"https://comicvine.gamespot.com/witchblade-12/4000-124536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94974/","id":94974,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/jla-act-of-god-3-book-3/4000-94974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68437/","id":68437,"name":"The Betrayal","site_detail_url":"https://comicvine.gamespot.com/sentry-5-the-betrayal/4000-68437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47796/","id":47796,"name":"Fathers of the Sin","site_detail_url":"https://comicvine.gamespot.com/darkdevil-3-fathers-of-the-sin/4000-47796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49404/","id":49404,"name":"Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/spider-girl-28-unfinished-business/4000-49404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48513/","id":48513,"name":"Glutton for Punishment","site_detail_url":"https://comicvine.gamespot.com/the-punisher-10-glutton-for-punishment/4000-48513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148445/","id":148445,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-the-morgan-conquest-1/4000-148445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118477/","id":118477,"name":"...But Deliver Us To Evil!","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-2-but-deliver-us-to-evil/4000-118477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66978/","id":66978,"name":"Strange Matters","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-7-strange-matters/4000-66978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48323/","id":48323,"name":"In the Air, on Land and Sea...","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-9-in-the-air-on-land-and-sea/4000-48323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141112/","id":141112,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-4-volume-4/4000-141112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152680/","id":152680,"name":"Winter's Eternal Moon","site_detail_url":"https://comicvine.gamespot.com/thor-31-winters-eternal-moon/4000-152680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51621/","id":51621,"name":"Wannabe","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-3-wannabe/4000-51621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48841/","id":48841,"name":"Stan Lee Presents: Big Town","site_detail_url":"https://comicvine.gamespot.com/big-town-1-stan-lee-presents-big-town/4000-48841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70288/","id":70288,"name":"Cruel Summer (part 3 of 3)","site_detail_url":"https://comicvine.gamespot.com/deadpool-48-cruel-summer-part-3-of-3/4000-70288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236771/","id":236771,"name":"Power and Responsibility","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-power-and-responsibility-1-pow/4000-236771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236773/","id":236773,"name":"Double Trouble","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-double-trouble-1-double-troubl/4000-236773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51340/","id":51340,"name":"Hunted","site_detail_url":"https://comicvine.gamespot.com/x-men-search-for-cyclops-2-hunted/4000-51340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64580/","id":64580,"name":"Rage War, Part One Of Four","site_detail_url":"https://comicvine.gamespot.com/x-force-110-rage-war-part-one-of-four/4000-64580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131864/","id":131864,"name":"Lovesick","site_detail_url":"https://comicvine.gamespot.com/the-punisherpainkiller-jane-1-lovesick/4000-131864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298507/","id":298507,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-new-journey-old-path-1-tpb/4000-298507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337452/","id":337452,"name":"La grande truffa","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-226-la-grande-truffa/4000-337452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342902/","id":342902,"name":"Comme s`il en pleuvait","site_detail_url":"https://comicvine.gamespot.com/monsieur-jean-5-comme-sil-en-pleuvait/4000-342902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51165/","id":51165,"name":"Breakdown (Part 1)","site_detail_url":"https://comicvine.gamespot.com/black-widow-1-breakdown-part-1/4000-51165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349083/","id":349083,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/wildcats-vicious-circle-1-vol-2/4000-349083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181501/","id":181501,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-clear-and-present-dangers-1/4000-181501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300626/","id":300626,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/crimson-earth-angel-1-tpb/4000-300626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124797/","id":124797,"name":"Assault and Butchery","site_detail_url":"https://comicvine.gamespot.com/overkill-witchbladealiensdarknesspredator-2-assaul/4000-124797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237167/","id":237167,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/a-life-force-1-tpb/4000-237167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65840/","id":65840,"name":"Brothers","site_detail_url":"https://comicvine.gamespot.com/captain-america-37-brothers/4000-65840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100361/","id":100361,"name":"Selling Fear","site_detail_url":"https://comicvine.gamespot.com/hellspawn-5-selling-fear/4000-100361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50810/","id":50810,"name":"A Story of Love & War, Book 1 - Echoes","site_detail_url":"https://comicvine.gamespot.com/black-panther-26-a-story-of-love-war-book-1-echoes/4000-50810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210042/","id":210042,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-detective-comics-1-1/4000-210042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210253/","id":210253,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-more-fun-comics-73-1/4000-210253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288041/","id":288041,"name":"Flinch 4","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-158-flinch-4/4000-288041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920819/","id":920819,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/cyber-force-the-tin-men-of-war-1-volume-1/4000-920819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51224/","id":51224,"name":"Right Underneath It","site_detail_url":"https://comicvine.gamespot.com/wolverine-157-right-underneath-it/4000-51224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68436/","id":68436,"name":"The Conspiracy","site_detail_url":"https://comicvine.gamespot.com/sentry-4-the-conspiracy/4000-68436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144664/","id":144664,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-special-spidey-1/4000-144664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66946/","id":66946,"name":"Power, Part 3 - The Land","site_detail_url":"https://comicvine.gamespot.com/iron-man-35-power-part-3-the-land/4000-66946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94973/","id":94973,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/jla-act-of-god-2-book-2/4000-94973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113455/","id":113455,"name":"Distinguished Gentleman from New York Part Three: Failure is Not an Option","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-24-distinguished-gentleman-/4000-113455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47795/","id":47795,"name":"The Cursed","site_detail_url":"https://comicvine.gamespot.com/darkdevil-2-the-cursed/4000-47795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49403/","id":49403,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/spider-girl-27-endgame/4000-49403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589195/","id":589195,"name":"Undercover in N.Y.","site_detail_url":"https://comicvine.gamespot.com/joker-1-undercover-in-ny/4000-589195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48512/","id":48512,"name":"From Russia with Love","site_detail_url":"https://comicvine.gamespot.com/the-punisher-9-from-russia-with-love/4000-48512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715637/","id":715637,"name":"The Goblin Who Stole Christmas","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-68-the-goblin-wh/4000-715637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66977/","id":66977,"name":"The Reckoning","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-6-the-reckoning/4000-66977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103140/","id":103140,"name":"The Crossing Guard","site_detail_url":"https://comicvine.gamespot.com/x-men-magik-1-the-crossing-guard/4000-103140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51620/","id":51620,"name":"Growing Pains","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-2-growing-pains/4000-51620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70287/","id":70287,"name":"Cruel Summer (part 2 of 3)","site_detail_url":"https://comicvine.gamespot.com/deadpool-47-cruel-summer-part-2-of-3/4000-70287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65839/","id":65839,"name":"Maelstrom Within","site_detail_url":"https://comicvine.gamespot.com/captain-america-36-maelstrom-within/4000-65839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122425/","id":122425,"name":"Illegal Aliens","site_detail_url":"https://comicvine.gamespot.com/maximum-security-1-illegal-aliens/4000-122425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48322/","id":48322,"name":"Beneath a Crown of Laurel","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-8-beneath-a-crown-of-laurel/4000-48322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46893/","id":46893,"name":"Under Attack!","site_detail_url":"https://comicvine.gamespot.com/promethea-11-under-attack/4000-46893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124753/","id":124753,"name":"The Heat","site_detail_url":"https://comicvine.gamespot.com/overkill-witchbladealiensdarknesspredator-1-the-he/4000-124753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219363/","id":219363,"name":"Masks","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-17-masks/4000-219363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128472/","id":128472,"name":"Winter's Edge","site_detail_url":"https://comicvine.gamespot.com/thor-30-winters-edge/4000-128472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68501/","id":68501,"name":"Warning Signs","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-24-warning-signs/4000-68501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210276/","id":210276,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-the-new-teen-titans-1-1/4000-210276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47794/","id":47794,"name":"From the Abyss...","site_detail_url":"https://comicvine.gamespot.com/darkdevil-1-from-the-abyss/4000-47794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48511/","id":48511,"name":"Desperate Measures","site_detail_url":"https://comicvine.gamespot.com/the-punisher-8-desperate-measures/4000-48511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113454/","id":113454,"name":"How Many Times?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-23-how-many-times/4000-113454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51997/","id":51997,"name":"Single Bullet Theory","site_detail_url":"https://comicvine.gamespot.com/witchblade-43-single-bullet-theory/4000-51997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94972/","id":94972,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/jla-act-of-god-1-book-1/4000-94972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65663/","id":65663,"name":"Undertow","site_detail_url":"https://comicvine.gamespot.com/cable-85-undertow/4000-65663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68435/","id":68435,"name":"The Photograph","site_detail_url":"https://comicvine.gamespot.com/sentry-3-the-photograph/4000-68435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142568/","id":142568,"name":"Who is... Protocide?!","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-2000-1-who-is-protocide/4000-142568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49402/","id":49402,"name":"Passages","site_detail_url":"https://comicvine.gamespot.com/spider-girl-26-passages/4000-49402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346423/","id":346423,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/chrono-crusade-3-vol-3/4000-346423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118476/","id":118476,"name":"Monkey Sea, Monkey Doom!","site_detail_url":"https://comicvine.gamespot.com/futurama-comics-1-monkey-sea-monkey-doom/4000-118476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66976/","id":66976,"name":"Family and Friends","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-5-family-and-friends/4000-66976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48321/","id":48321,"name":"Arcane","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-7-arcane/4000-48321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137279/","id":137279,"name":"... Until Tomorrow Dawns","site_detail_url":"https://comicvine.gamespot.com/twilight-girl-1-until-tomorrow-dawns/4000-137279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152678/","id":152678,"name":"Whence Come Death","site_detail_url":"https://comicvine.gamespot.com/thor-29-whence-come-death/4000-152678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66942/","id":66942,"name":"Dark Horizon","site_detail_url":"https://comicvine.gamespot.com/iron-fist-wolverine-1-dark-horizon/4000-66942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70286/","id":70286,"name":"Cruel Summer (part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/deadpool-46-cruel-summer-part-1-of-3/4000-70286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65838/","id":65838,"name":"When Strikes Protocide","site_detail_url":"https://comicvine.gamespot.com/captain-america-35-when-strikes-protocide/4000-65838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83180/","id":83180,"name":"Milestone","site_detail_url":"https://comicvine.gamespot.com/spawn-100-milestone/4000-83180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159533/","id":159533,"name":"Quelque part entre les ombres","site_detail_url":"https://comicvine.gamespot.com/blacksad-1-quelque-part-entre-les-ombres/4000-159533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69361/","id":69361,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-2/4000-69361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131908/","id":131908,"name":"Power","site_detail_url":"https://comicvine.gamespot.com/iron-man-33-power/4000-131908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136124/","id":136124,"name":"Assassination Game Epilogue: Endgame?","site_detail_url":"https://comicvine.gamespot.com/gambit-2000-1-assassination-game-epilogue-endgame/4000-136124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68434/","id":68434,"name":"Act 2: The Unicorn","site_detail_url":"https://comicvine.gamespot.com/sentry-2-act-2-the-unicorn/4000-68434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195914/","id":195914,"name":"Deja Vu All Over Again","site_detail_url":"https://comicvine.gamespot.com/spider-man-death-and-destiny-3-deja-vu-all-over-ag/4000-195914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124017/","id":124017,"name":"Madness Takes Its Toll!","site_detail_url":"https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin-1-madness-t/4000-124017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49401/","id":49401,"name":"The Savage Six! (or is it seven?)","site_detail_url":"https://comicvine.gamespot.com/spider-girl-25-the-savage-six-or-is-it-seven/4000-49401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48510/","id":48510,"name":"Bring Out Your Dead","site_detail_url":"https://comicvine.gamespot.com/the-punisher-7-bring-out-your-dead/4000-48510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66975/","id":66975,"name":"Zaran","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-4-zaran/4000-66975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51619/","id":51619,"name":"Powerless","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-1-powerless/4000-51619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69360/","id":69360,"name":"","site_detail_url":"https://comicvine.gamespot.com/universe-x-1/4000-69360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152667/","id":152667,"name":"Wrecking Havoc","site_detail_url":"https://comicvine.gamespot.com/thor-28-wrecking-havoc/4000-152667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53636/","id":53636,"name":"Earth Inferno, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-authority-18-earth-inferno-part-2/4000-53636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76619/","id":76619,"name":"Serial Boxes, Part 1: Black Action Falls","site_detail_url":"https://comicvine.gamespot.com/wildcats-14-serial-boxes-part-1-black-action-falls/4000-76619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-85508/","id":85508,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-visionaries-frank-miller-1-volume-1/4000-85508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51339/","id":51339,"name":"Lost","site_detail_url":"https://comicvine.gamespot.com/x-men-search-for-cyclops-1-lost/4000-51339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112459/","id":112459,"name":"Dead Center, Part 2","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-8-dead-center-part-2/4000-112459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65837/","id":65837,"name":"Cache is King!","site_detail_url":"https://comicvine.gamespot.com/captain-america-34-cache-is-king/4000-65837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273382/","id":273382,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-universe-3/4000-273382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273380/","id":273380,"name":"Pomp & Pagentry","site_detail_url":"https://comicvine.gamespot.com/avengers-universe-1-pomp-pagentry/4000-273380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300909/","id":300909,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-authority-under-new-management-1-tpb/4000-300909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349082/","id":349082,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/wildcats-street-smart-1-vol-1/4000-349082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46892/","id":46892,"name":"Sex Stars, and Serpents","site_detail_url":"https://comicvine.gamespot.com/promethea-10-sex-stars-and-serpents/4000-46892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46430/","id":46430,"name":"Chasing Your Own Tail","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-43-chasing-your-own-tail/4000-46430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219361/","id":219361,"name":"Rebirth, Part Three; Dictates Of Age","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-15-rebirth-part-three-dictates-/4000-219361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53552/","id":53552,"name":"A Piece of You 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-161-a-piece-of-you-2/4000-53552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212553/","id":212553,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/witching-hour-1-hctpb/4000-212553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210262/","id":210262,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-sensation-comics-1-1/4000-210262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68433/","id":68433,"name":"Act 1: The Suit","site_detail_url":"https://comicvine.gamespot.com/sentry-1-act-1-the-suit/4000-68433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48509/","id":48509,"name":"Spit Out of Luck","site_detail_url":"https://comicvine.gamespot.com/the-punisher-6-spit-out-of-luck/4000-48509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65661/","id":65661,"name":"Reality Trembles","site_detail_url":"https://comicvine.gamespot.com/cable-83-reality-trembles/4000-65661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48190/","id":48190,"name":"Lost In The Stars...","site_detail_url":"https://comicvine.gamespot.com/avengers-infinity-1-lost-in-the-stars/4000-48190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195913/","id":195913,"name":"The Camera Doesn't Lie","site_detail_url":"https://comicvine.gamespot.com/spider-man-death-and-destiny-2-the-camera-doesnt-l/4000-195913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46422/","id":46422,"name":"Moments of Truth","site_detail_url":"https://comicvine.gamespot.com/the-buzz-3-moments-of-truth/4000-46422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49400/","id":49400,"name":"Dragonfist","site_detail_url":"https://comicvine.gamespot.com/spider-girl-24-dragonfist/4000-49400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268346/","id":268346,"name":"Ground Zero, Part 3","site_detail_url":"https://comicvine.gamespot.com/section-zero-3-ground-zero-part-3/4000-268346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66974/","id":66974,"name":"The Destroyers","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-3-the-destroyers/4000-66974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53635/","id":53635,"name":"Earth Inferno, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-authority-17-earth-inferno-part-1/4000-53635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51996/","id":51996,"name":"A Cold Day in Hell","site_detail_url":"https://comicvine.gamespot.com/witchblade-42-a-cold-day-in-hell/4000-51996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192950/","id":192950,"name":"X-Men: The Movie - Official Comic Book Adaptation","site_detail_url":"https://comicvine.gamespot.com/x-men-the-movie-1-x-men-the-movie-official-comic-b/4000-192950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76618/","id":76618,"name":"Тринадцатб","site_detail_url":"https://comicvine.gamespot.com/wildcats-13-wikiissue/4000-76618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46502/","id":46502,"name":"Nightmare","site_detail_url":"https://comicvine.gamespot.com/black-panther-22-nightmare/4000-46502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219153/","id":219153,"name":"High Society","site_detail_url":"https://comicvine.gamespot.com/hourman-18-high-society/4000-219153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65836/","id":65836,"name":"Impending Rage","site_detail_url":"https://comicvine.gamespot.com/captain-america-33-impending-rage/4000-65836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307361/","id":307361,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/stormwatch-a-finer-world-1-volume-4/4000-307361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46891/","id":46891,"name":"Bringing Down the Temple!","site_detail_url":"https://comicvine.gamespot.com/promethea-9-bringing-down-the-temple/4000-46891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53551/","id":53551,"name":"A Piece of You 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-160-a-piece-of-you-1/4000-53551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210243/","id":210243,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-house-of-mystery-1-1/4000-210243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210051/","id":210051,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-flash-comics-1-1/4000-210051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721055/","id":721055,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/invisible-people-1-tpb/4000-721055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65660/","id":65660,"name":"Irene Must Die!!","site_detail_url":"https://comicvine.gamespot.com/cable-82-irene-must-die/4000-65660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195911/","id":195911,"name":"Focus","site_detail_url":"https://comicvine.gamespot.com/spider-man-death-and-destiny-1-focus/4000-195911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46407/","id":46407,"name":"Kill Switch","site_detail_url":"https://comicvine.gamespot.com/the-buzz-2-kill-switch/4000-46407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-651085/","id":651085,"name":"Anna des Mille Jours","site_detail_url":"https://comicvine.gamespot.com/dallas-barr-5-anna-des-mille-jours/4000-651085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48508/","id":48508,"name":"Even Worse Things","site_detail_url":"https://comicvine.gamespot.com/the-punisher-5-even-worse-things/4000-48508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715460/","id":715460,"name":"Birth of the Man-Spider!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-64-birth-of-the-/4000-715460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66973/","id":66973,"name":"Thunder Below","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-2-thunder-below/4000-66973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715234/","id":715234,"name":"Overload!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-63-overload/4000-715234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53634/","id":53634,"name":"The Nativity, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-authority-16-the-nativity-part-4/4000-53634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76617/","id":76617,"name":"My Fathers' House","site_detail_url":"https://comicvine.gamespot.com/wildcats-12-my-fathers-house/4000-76617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46410/","id":46410,"name":"Tremble Before This Might","site_detail_url":"https://comicvine.gamespot.com/mutant-x-22-tremble-before-this-might/4000-46410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66907/","id":66907,"name":"Assassination Game -3: Beasts Of Burden","site_detail_url":"https://comicvine.gamespot.com/gambit-19-assassination-game-3-beasts-of-burden/4000-66907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277161/","id":277161,"name":"X-Men Visionaries: Joe Madureira","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-joe-madureira-1-x-men-visionarie/4000-277161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46399/","id":46399,"name":"Tower of Babel Part Two of Four: Seven Little Indians","site_detail_url":"https://comicvine.gamespot.com/jla-44-tower-of-babel-part-two-of-four-seven-littl/4000-46399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-82534/","id":82534,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/promethea-1-book-one/4000-82534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66237/","id":66237,"name":"Heart","site_detail_url":"https://comicvine.gamespot.com/captain-america-32-heart/4000-66237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48769/","id":48769,"name":"Second Sight","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-51-second-sight/4000-48769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51995/","id":51995,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-41/4000-51995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105905/","id":105905,"name":"Resurrection of Taras Part 1","site_detail_url":"https://comicvine.gamespot.com/fathom-12-resurrection-of-taras-part-1/4000-105905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65659/","id":65659,"name":"The Nexus of Time and Space","site_detail_url":"https://comicvine.gamespot.com/cable-81-the-nexus-of-time-and-space/4000-65659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46391/","id":46391,"name":"Comes A Hero","site_detail_url":"https://comicvine.gamespot.com/the-buzz-1-comes-a-hero/4000-46391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49398/","id":49398,"name":"Dance Fever","site_detail_url":"https://comicvine.gamespot.com/spider-girl-22-dance-fever/4000-49398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48507/","id":48507,"name":"Wild Kingdom","site_detail_url":"https://comicvine.gamespot.com/the-punisher-4-wild-kingdom/4000-48507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66972/","id":66972,"name":"The Burrowers","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-1-the-burrowers/4000-66972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140033/","id":140033,"name":"The Tyrannical Terror of Sheriff Law","site_detail_url":"https://comicvine.gamespot.com/silver-age-teen-titans-1-the-tyrannical-terror-of-/4000-140033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65801/","id":65801,"name":"The Cruelest Cut","site_detail_url":"https://comicvine.gamespot.com/x-men-102-the-cruelest-cut/4000-65801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76616/","id":76616,"name":"Furious Engines","site_detail_url":"https://comicvine.gamespot.com/wildcats-11-furious-engines/4000-76616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131863/","id":131863,"name":"No One Here Gets Out Alive","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-punisher-1-no-one-here-gets-out-aliv/4000-131863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46890/","id":46890,"name":"Guys and Dolls","site_detail_url":"https://comicvine.gamespot.com/promethea-8-guys-and-dolls/4000-46890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381702/","id":381702,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-york-the-big-city-1/4000-381702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66236/","id":66236,"name":"Hidden Paths","site_detail_url":"https://comicvine.gamespot.com/captain-america-31-hidden-paths/4000-66236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46389/","id":46389,"name":"V for Vexation","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-40-v-for-vexation/4000-46389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210168/","id":210168,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-hellblazer-1-1/4000-210168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210251/","id":210251,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-justice-league-1-1/4000-210251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48506/","id":48506,"name":"The Devil by the Horns","site_detail_url":"https://comicvine.gamespot.com/the-punisher-3-the-devil-by-the-horns/4000-48506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51994/","id":51994,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-40/4000-51994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65658/","id":65658,"name":"Cauldron Bubble","site_detail_url":"https://comicvine.gamespot.com/cable-80-cauldron-bubble/4000-65658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176313/","id":176313,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-into-hell-3/4000-176313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49397/","id":49397,"name":"Earthshaker","site_detail_url":"https://comicvine.gamespot.com/spider-girl-21-earthshaker/4000-49397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131860/","id":131860,"name":"Childs Play","site_detail_url":"https://comicvine.gamespot.com/punisher-vs-daredevil-1-childs-play/4000-131860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66296/","id":66296,"name":"Issue X","site_detail_url":"https://comicvine.gamespot.com/earth-x-x-issue-x/4000-66296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46499/","id":46499,"name":"Freefall / The Job","site_detail_url":"https://comicvine.gamespot.com/black-panther-19-freefall-the-job/4000-46499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65800/","id":65800,"name":"Hard Landing","site_detail_url":"https://comicvine.gamespot.com/x-men-101-hard-landing/4000-65800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66905/","id":66905,"name":"Assassination Game -1: P.In Cushion","site_detail_url":"https://comicvine.gamespot.com/gambit-17-assassination-game-1-pin-cushion/4000-66905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83176/","id":83176,"name":"Rules of Engagement","site_detail_url":"https://comicvine.gamespot.com/spawn-96-rules-of-engagement/4000-83176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48767/","id":48767,"name":"Shatter","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-49-shatter/4000-48767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132849/","id":132849,"name":"","site_detail_url":"https://comicvine.gamespot.com/cavewoman-pangaean-sea-1/4000-132849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210035/","id":210035,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-all-star-comics-3-1/4000-210035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121217/","id":121217,"name":"Primary Actions Conclusion: Follow Those Agonies","site_detail_url":"https://comicvine.gamespot.com/deathlok-11-primary-actions-conclusion-follow-thos/4000-121217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48505/","id":48505,"name":"Badaboom, Badabing","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2-badaboom-badabing/4000-48505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51993/","id":51993,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-39/4000-51993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65657/","id":65657,"name":"Revolution - Fire Burn","site_detail_url":"https://comicvine.gamespot.com/cable-79-revolution-fire-burn/4000-65657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47882/","id":47882,"name":"Once A Goblin - - !","site_detail_url":"https://comicvine.gamespot.com/spider-girl-20-once-a-goblin/4000-47882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176312/","id":176312,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-into-hell-2/4000-176312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48766/","id":48766,"name":"Scary Monsters","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-48-scary-monsters/4000-48766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269232/","id":269232,"name":"The Hellcat Came Back","site_detail_url":"https://comicvine.gamespot.com/avengers-2000-1-the-hellcat-came-back/4000-269232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346422/","id":346422,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/chrono-crusade-2-vol-2/4000-346422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268920/","id":268920,"name":"Guardian of the Night!","site_detail_url":"https://comicvine.gamespot.com/marvels-comics-daredevil-1-1-guardian-of-the-night/4000-268920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137487/","id":137487,"name":"The Menace of Spider Man","site_detail_url":"https://comicvine.gamespot.com/marvels-comics-spider-man-1-1-the-menace-of-spider/4000-137487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46498/","id":46498,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/black-panther-18-legacy/4000-46498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151302/","id":151302,"name":"Book 4: Weaker Vessels; Permanent Fatal Errors (Fall)","site_detail_url":"https://comicvine.gamespot.com/brave-old-world-4-book-4-weaker-vessels-permanent-/4000-151302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151306/","id":151306,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/four-horsemen-4-death/4000-151306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46357/","id":46357,"name":"The Coming","site_detail_url":"https://comicvine.gamespot.com/mutant-x-19-the-coming/4000-46357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65799/","id":65799,"name":"End of Days","site_detail_url":"https://comicvine.gamespot.com/x-men-100-end-of-days/4000-65799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264860/","id":264860,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-60/4000-264860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175817/","id":175817,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/preacher-all-hells-a-coming-1-volume-8/4000-175817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301223/","id":301223,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-authority-relentless-1-tpb/4000-301223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219407/","id":219407,"name":"Duel at Dawn","site_detail_url":"https://comicvine.gamespot.com/blade-6-duel-at-dawn/4000-219407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132390/","id":132390,"name":"No Direction Home, Part One","site_detail_url":"https://comicvine.gamespot.com/x-man-63-no-direction-home-part-one/4000-132390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221279/","id":221279,"name":"Disaffected Youth; Crisis on Infantile Earths; Wisdom Like Age…; Klarion and Kitty Cat;","site_detail_url":"https://comicvine.gamespot.com/sins-of-youth-secret-files-and-origins-1-disaffect/4000-221279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149970/","id":149970,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-cow-special-springsummer-2000-2000/4000-149970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48504/","id":48504,"name":"Welcome Back, Frank","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-welcome-back-frank/4000-48504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51216/","id":51216,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/wolverine-149-resurrection/4000-51216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65798/","id":65798,"name":"Oh, The Humanity!","site_detail_url":"https://comicvine.gamespot.com/x-men-99-oh-the-humanity/4000-65798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118683/","id":118683,"name":"High Noon, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-darkness-30-high-noon-part-2/4000-118683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425794/","id":425794,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-doctor-octopus-1-tpb/4000-425794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47881/","id":47881,"name":"Fantasies","site_detail_url":"https://comicvine.gamespot.com/spider-girl-19-fantasies/4000-47881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46321/","id":46321,"name":"Being Saved","site_detail_url":"https://comicvine.gamespot.com/avengers-united-they-stand-6-being-saved/4000-46321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66295/","id":66295,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/earth-x-12-chapter-twelve/4000-66295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158938/","id":158938,"name":"Heavenly Shades","site_detail_url":"https://comicvine.gamespot.com/wildcats-8-heavenly-shades/4000-158938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46497/","id":46497,"name":"Uptown","site_detail_url":"https://comicvine.gamespot.com/black-panther-17-uptown/4000-46497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151301/","id":151301,"name":"Book 3: A Thousand Natural Shocks; Bugfix (Summer)","site_detail_url":"https://comicvine.gamespot.com/brave-old-world-3-book-3-a-thousand-natural-shocks/4000-151301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151305/","id":151305,"name":"Pestilence","site_detail_url":"https://comicvine.gamespot.com/four-horsemen-3-pestilence/4000-151305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46521/","id":46521,"name":"The Joker's Tale","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-16-the-jokers-tale/4000-46521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83174/","id":83174,"name":"The Children's Hour","site_detail_url":"https://comicvine.gamespot.com/spawn-94-the-childrens-hour/4000-83174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46314/","id":46314,"name":"World War III Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/jla-40-world-war-iii-part-5-of-6/4000-46314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46889/","id":46889,"name":"Rocks and Hard Places","site_detail_url":"https://comicvine.gamespot.com/promethea-7-rocks-and-hard-places/4000-46889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176311/","id":176311,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-into-hell-1/4000-176311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66233/","id":66233,"name":"Grotesqueries","site_detail_url":"https://comicvine.gamespot.com/captain-america-28-grotesqueries/4000-66233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48765/","id":48765,"name":"Trinket","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-47-trinket/4000-48765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112876/","id":112876,"name":"Over My Dead Body","site_detail_url":"https://comicvine.gamespot.com/gen-13-50-over-my-dead-body/4000-112876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194124/","id":194124,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-right-hand-of-doom-1-volume-4/4000-194124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-564579/","id":564579,"name":"La Stratégie Hagen","site_detail_url":"https://comicvine.gamespot.com/ir-2-la-strategie-hagen/4000-564579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48456/","id":48456,"name":"Fifth Column","site_detail_url":"https://comicvine.gamespot.com/marvel-the-lost-generation-11-fifth-column/4000-48456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47880/","id":47880,"name":"Raptor's Regret","site_detail_url":"https://comicvine.gamespot.com/spider-girl-18-raptors-regret/4000-47880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103791/","id":103791,"name":"The Martyr, Part 3","site_detail_url":"https://comicvine.gamespot.com/alley-cat-6-the-martyr-part-3/4000-103791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105553/","id":105553,"name":"To Kill a Wildcat","site_detail_url":"https://comicvine.gamespot.com/wildcats-7-to-kill-a-wildcat/4000-105553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404513/","id":404513,"name":"Coming of Age","site_detail_url":"https://comicvine.gamespot.com/top-cow-classics-in-black-and-white-the-darkness-1/4000-404513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715437/","id":715437,"name":"Savage Land","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-58-savage-land/4000-715437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46496/","id":46496,"name":"Local Hero","site_detail_url":"https://comicvine.gamespot.com/black-panther-16-local-hero/4000-46496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187227/","id":187227,"name":"X-Men: Zero Tolerance","site_detail_url":"https://comicvine.gamespot.com/x-men-zero-tolerance-1-x-men-zero-tolerance/4000-187227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51992/","id":51992,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-38/4000-51992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199682/","id":199682,"name":"Here and Now","site_detail_url":"https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe-/4000-199682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53629/","id":53629,"name":"Outer Dark, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-authority-11-outer-dark-part-3/4000-53629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46296/","id":46296,"name":"Book 2: Melting Pot; Manual Overide (Spring)","site_detail_url":"https://comicvine.gamespot.com/brave-old-world-2-book-2-melting-pot-manual-overid/4000-46296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151304/","id":151304,"name":"War","site_detail_url":"https://comicvine.gamespot.com/four-horsemen-2-war/4000-151304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46292/","id":46292,"name":"Udaku, Part 8","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-8-udaku-part-8/4000-46292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51215/","id":51215,"name":"Ages of Apocalypse - Same As It Never Was","site_detail_url":"https://comicvine.gamespot.com/wolverine-148-ages-of-apocalypse-same-as-it-never-/4000-51215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64570/","id":64570,"name":"Dark Cathedral","site_detail_url":"https://comicvine.gamespot.com/x-force-100-dark-cathedral/4000-64570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66902/","id":66902,"name":"The Sunset Dawn -Book 3: tomorrow starts today","site_detail_url":"https://comicvine.gamespot.com/gambit-14-the-sunset-dawn-book-3-tomorrow-starts-t/4000-66902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83173/","id":83173,"name":"The Devil's Banquet","site_detail_url":"https://comicvine.gamespot.com/spawn-93-the-devils-banquet/4000-83173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302685/","id":302685,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/planetary-all-over-the-world-and-other-stories-1-b/4000-302685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307353/","id":307353,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/stormwatch-lighting-strikes-1-volume-2/4000-307353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46297/","id":46297,"name":"World War III Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/jla-39-world-war-iii-part-4-of-6/4000-46297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46888/","id":46888,"name":"A Warrior Princess of Hy Brasil","site_detail_url":"https://comicvine.gamespot.com/promethea-6-a-warrior-princess-of-hy-brasil/4000-46888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50785/","id":50785,"name":"Under Cover of Night","site_detail_url":"https://comicvine.gamespot.com/avengers-26-under-cover-of-night/4000-50785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66232/","id":66232,"name":"Twisted Tomorrows, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-27-twisted-tomorrows-part-3/4000-66232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48764/","id":48764,"name":"Mirror, Mirror","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-46-mirror-mirror/4000-48764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133392/","id":133392,"name":"","site_detail_url":"https://comicvine.gamespot.com/faust-singhas-talons-1/4000-133392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118682/","id":118682,"name":"High Noon, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-darkness-29-high-noon-part-1/4000-118682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411109/","id":411109,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-horror-of-collier-county-5/4000-411109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47879/","id":47879,"name":"Once A Web-Swinger....","site_detail_url":"https://comicvine.gamespot.com/spider-girl-17-once-a-web-swinger/4000-47879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103790/","id":103790,"name":"The Martyr, Part 2","site_detail_url":"https://comicvine.gamespot.com/alley-cat-5-the-martyr-part-2/4000-103790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345212/","id":345212,"name":"Pancakes; The Nature of The Beast; King Vold; Heads","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-nature-of-the-beast-and-others-1-panca/4000-345212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302266/","id":302266,"name":"Cuando golpea un gladiador","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-28-cuando-golpea-un-gladiador/4000-302266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51214/","id":51214,"name":"Apocalypse: The Twelve Part 5 - Into The Light","site_detail_url":"https://comicvine.gamespot.com/wolverine-147-apocalypse-the-twelve-part-5-into-th/4000-51214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83148/","id":83148,"name":"Dot the I's and Cross the T's","site_detail_url":"https://comicvine.gamespot.com/preacher-58-dot-the-is-and-cross-the-ts/4000-83148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51991/","id":51991,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-37/4000-51991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46259/","id":46259,"name":"Book 1: The Century Turns; Abort, Retry, Reboot? (Winter)","site_detail_url":"https://comicvine.gamespot.com/brave-old-world-1-book-1-the-century-turns-abort-r/4000-46259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151303/","id":151303,"name":"Famine","site_detail_url":"https://comicvine.gamespot.com/four-horsemen-1-famine/4000-151303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46245/","id":46245,"name":"Udaku, Part 7","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-7-udaku-part-7/4000-46245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64569/","id":64569,"name":"Bad Company","site_detail_url":"https://comicvine.gamespot.com/x-force-99-bad-company/4000-64569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46264/","id":46264,"name":"World War III Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/jla-38-world-war-iii-part-3-of-6/4000-46264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46268/","id":46268,"name":"Darkness Falls, Part 1","site_detail_url":"https://comicvine.gamespot.com/jsa-7-darkness-falls-part-1/4000-46268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46887/","id":46887,"name":"Weapon for Liberty","site_detail_url":"https://comicvine.gamespot.com/promethea-5-weapon-for-liberty/4000-46887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50784/","id":50784,"name":"The Ninth Day","site_detail_url":"https://comicvine.gamespot.com/avengers-25-the-ninth-day/4000-50784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48763/","id":48763,"name":"Masques & Hedgehogs","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-45-masques-hedgehogs/4000-48763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136994/","id":136994,"name":"Totems","site_detail_url":"https://comicvine.gamespot.com/totems-1-totems/4000-136994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218093/","id":218093,"name":"Progress; The Dogs of War; Space Wolf; Communications Error; Left for Pixie Dust; The Flashback of Notre Dame; Toy Story","site_detail_url":"https://comicvine.gamespot.com/jla-showcase-80-page-giant-1-progress-the-dogs-of-/4000-218093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46495/","id":46495,"name":"Smash","site_detail_url":"https://comicvine.gamespot.com/black-panther-15-smash/4000-46495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210045/","id":210045,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-detective-comics-27-1/4000-210045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210285/","id":210285,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-wildcats-covert-action-teams-1-/4000-210285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118681/","id":118681,"name":"Witchblade/The Darkness, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-darkness-28-witchbladethe-darkness-part-4/4000-118681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47878/","id":47878,"name":"The Question","site_detail_url":"https://comicvine.gamespot.com/spider-girl-16-the-question/4000-47878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70469/","id":70469,"name":"The Ghost And The Darkness","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hidden-years-2-the-ghost-and-the-darknes/4000-70469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158937/","id":158937,"name":"The Chase","site_detail_url":"https://comicvine.gamespot.com/wildcats-6-the-chase/4000-158937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140745/","id":140745,"name":"","site_detail_url":"https://comicvine.gamespot.com/heavy-liquid-4/4000-140745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353391/","id":353391,"name":"La Machination Voronov","site_detail_url":"https://comicvine.gamespot.com/les-aventures-de-blake-et-mortimer-14-la-machinati/4000-353391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83147/","id":83147,"name":"Of the Irish in America","site_detail_url":"https://comicvine.gamespot.com/preacher-57-of-the-irish-in-america/4000-83147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51213/","id":51213,"name":"Apocalypse: The Twelve Part 4 - Through A Dark Tunnel","site_detail_url":"https://comicvine.gamespot.com/wolverine-146-apocalypse-the-twelve-part-4-through/4000-51213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83124/","id":83124,"name":"Artie and Leech's Day Off!","site_detail_url":"https://comicvine.gamespot.com/generation-x-59-artie-and-leechs-day-off/4000-83124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53627/","id":53627,"name":"Outer Dark, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-authority-9-outer-dark-part-1/4000-53627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171666/","id":171666,"name":"Call To Arms","site_detail_url":"https://comicvine.gamespot.com/x-men-the-movie-special-edition-1-call-to-arms/4000-171666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151008/","id":151008,"name":"The Official Comic Adaption of the Film from Paramount Pictures and Mandalay Pictures","site_detail_url":"https://comicvine.gamespot.com/sleepy-hollow-1-the-official-comic-adaption-of-the/4000-151008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46201/","id":46201,"name":"Udaku, Part 6","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-6-udaku-part-6/4000-46201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111988/","id":111988,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmandaredevil-king-of-new-york-1/4000-111988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110432/","id":110432,"name":"Sunspot's Inferno","site_detail_url":"https://comicvine.gamespot.com/x-force-98-sunspots-inferno/4000-110432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46197/","id":46197,"name":"Target","site_detail_url":"https://comicvine.gamespot.com/green-lantern-120-target/4000-46197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291630/","id":291630,"name":"Douze Rois-Démons","site_detail_url":"https://comicvine.gamespot.com/xoco-3-douze-rois-demons/4000-291630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187601/","id":187601,"name":"The Return of the Justice League!","site_detail_url":"https://comicvine.gamespot.com/realworlds-justice-league-of-america-1-the-return-/4000-187601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83171/","id":83171,"name":"Black Cat Bones I","site_detail_url":"https://comicvine.gamespot.com/spawn-91-black-cat-bones-i/4000-83171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197697/","id":197697,"name":"Chaos, Part 3; Wierder And Wierder","site_detail_url":"https://comicvine.gamespot.com/blade-2-chaos-part-3-wierder-and-wierder/4000-197697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300625/","id":300625,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/crimson-heaven-earth-1-tpb/4000-300625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176166/","id":176166,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-3/4000-176166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65795/","id":65795,"name":"The Gathering","site_detail_url":"https://comicvine.gamespot.com/x-men-96-the-gathering/4000-65795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66230/","id":66230,"name":"Twisted Tomorrows, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-twisted-tomorrows-part-1/4000-66230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48762/","id":48762,"name":"Trinket, Part One: Homesick","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-44-trinket-part-one-homesick/4000-48762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46224/","id":46224,"name":"The Relay / The One You Love","site_detail_url":"https://comicvine.gamespot.com/wild-thing-4-the-relay-the-one-you-love/4000-46224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210281/","id":210281,"name":"","site_detail_url":"https://comicvine.gamespot.com/millennium-edition-watchmen-1-1/4000-210281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104050/","id":104050,"name":"","site_detail_url":"https://comicvine.gamespot.com/wicked-2/4000-104050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51990/","id":51990,"name":"Witchblade/the Darkness, Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-36-witchbladethe-darkness-part-1/4000-51990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47877/","id":47877,"name":"Swingin' N' Slammin' With Speedball!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-15-swingin-n-slammin-with-speedball/4000-47877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113443/","id":113443,"name":"Another Return of the Sinister Six! and Let There Be Light!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-12-another-return-of-the-si/4000-113443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164990/","id":164990,"name":"Crying Wolf!; Beer Run","site_detail_url":"https://comicvine.gamespot.com/wolverine-1999-1-crying-wolf-beer-run/4000-164990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78495/","id":78495,"name":"The Death-Trap of Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/the-avengers-112-the-death-trap-of-doctor-doom/4000-78495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129449/","id":129449,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengelyne-demonslayer-1/4000-129449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46168/","id":46168,"name":"Side by Side With Spider-Girl!","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-3-side-by-side-with-spider-girl/4000-46168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46140/","id":46140,"name":"Parade; The Toy; It Takes A Village","site_detail_url":"https://comicvine.gamespot.com/flinch-7-parade-the-toy-it-takes-a-village/4000-46140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510730/","id":510730,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-simpsons-forever-a-complete-guide-to-our-favor/4000-510730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140743/","id":140743,"name":"","site_detail_url":"https://comicvine.gamespot.com/heavy-liquid-3/4000-140743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48388/","id":48388,"name":"Chip on My Shoulder","site_detail_url":"https://comicvine.gamespot.com/hulk-9-chip-on-my-shoulder/4000-48388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83146/","id":83146,"name":"Smile Like the Gates of Hell","site_detail_url":"https://comicvine.gamespot.com/preacher-56-smile-like-the-gates-of-hell/4000-83146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137000/","id":137000,"name":"Call To Arms; Beauty & The Beast (Part 1): Broken; Sins of the Past (Part 1): In Another Man's Shoes","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-1-call-to-arms-beauty-the-beast-par/4000-137000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75665/","id":75665,"name":"The Deadly Living Talismans!","site_detail_url":"https://comicvine.gamespot.com/thor-18-the-deadly-living-talismans/4000-75665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112872/","id":112872,"name":"The Grunge That Ate Manhattan!","site_detail_url":"https://comicvine.gamespot.com/gen-13-46-the-grunge-that-ate-manhattan/4000-112872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66229/","id":66229,"name":"The Difference!","site_detail_url":"https://comicvine.gamespot.com/captain-america-24-the-difference/4000-66229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46139/","id":46139,"name":"Udaku, Part 5","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-5-udaku-part-5/4000-46139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283392/","id":283392,"name":"La fine?","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-213-la-fine/4000-283392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307349/","id":307349,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/stormwatch-force-of-nature-1-volume-1/4000-307349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208855/","id":208855,"name":"Chaos, Part 1; The Dead Walk/Part 2; Questions","site_detail_url":"https://comicvine.gamespot.com/blade-1-chaos-part-1-the-dead-walkpart-2-questions/4000-208855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124841/","id":124841,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-the-darkness-1-part-2/4000-124841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112584/","id":112584,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/the-darkness-witchblade-1-part-3/4000-112584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176165/","id":176165,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-2/4000-176165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46163/","id":46163,"name":"Awakening","site_detail_url":"https://comicvine.gamespot.com/wild-thing-3-awakening/4000-46163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46092/","id":46092,"name":"Defeated By Kaine","site_detail_url":"https://comicvine.gamespot.com/spider-girl-14-defeated-by-kaine/4000-46092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118680/","id":118680,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-27/4000-118680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46099/","id":46099,"name":"Final Cut","site_detail_url":"https://comicvine.gamespot.com/contest-of-champions-ii-4-final-cut/4000-46099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346421/","id":346421,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/chrono-crusade-1-vol-1/4000-346421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408815/","id":408815,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/hanna-barbera-cartoons-1-hc/4000-408815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158936/","id":158936,"name":"Coda-fied","site_detail_url":"https://comicvine.gamespot.com/wildcats-5-coda-fied/4000-158936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140742/","id":140742,"name":"","site_detail_url":"https://comicvine.gamespot.com/heavy-liquid-2/4000-140742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294518/","id":294518,"name":"Pelear y volar!","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-21-pelear-y-volar/4000-294518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66291/","id":66291,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/earth-x-8-chapter-eight/4000-66291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83145/","id":83145,"name":"Harbinger","site_detail_url":"https://comicvine.gamespot.com/preacher-55-harbinger/4000-83145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127575/","id":127575,"name":"The Eighth Day Part 1","site_detail_url":"https://comicvine.gamespot.com/thor-17-the-eighth-day-part-1/4000-127575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46096/","id":46096,"name":"Women","site_detail_url":"https://comicvine.gamespot.com/green-lantern-118-women/4000-46096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46101/","id":46101,"name":"Udaku, Part 4","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-4-udaku-part-4/4000-46101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65793/","id":65793,"name":"Hidden Lives. Part 2 of 2: Pandora's Box","site_detail_url":"https://comicvine.gamespot.com/x-men-94-hidden-lives-part-2-of-2-pandoras-box/4000-65793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65651/","id":65651,"name":"Pestilence","site_detail_url":"https://comicvine.gamespot.com/cable-73-pestilence/4000-65651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141915/","id":141915,"name":"Angels","site_detail_url":"https://comicvine.gamespot.com/dawn-the-return-of-the-goddess-3-angels/4000-141915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83169/","id":83169,"name":"The Devil You Know","site_detail_url":"https://comicvine.gamespot.com/spawn-89-the-devil-you-know/4000-83169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46886/","id":46886,"name":"A Faerie Romance","site_detail_url":"https://comicvine.gamespot.com/promethea-4-a-faerie-romance/4000-46886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176163/","id":176163,"name":"","site_detail_url":"https://comicvine.gamespot.com/demonslayer-1/4000-176163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47229/","id":47229,"name":"The Summoning","site_detail_url":"https://comicvine.gamespot.com/day-of-judgment-1-the-summoning/4000-47229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47231/","id":47231,"name":"Choosing Sides","site_detail_url":"https://comicvine.gamespot.com/day-of-judgment-3-choosing-sides/4000-47231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47233/","id":47233,"name":"Soul Search","site_detail_url":"https://comicvine.gamespot.com/day-of-judgment-5-soul-search/4000-47233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47232/","id":47232,"name":"The End of the World As We Know It","site_detail_url":"https://comicvine.gamespot.com/day-of-judgment-4-the-end-of-the-world-as-we-know-/4000-47232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46115/","id":46115,"name":"Hanging at the Mall / There Can Be Only One","site_detail_url":"https://comicvine.gamespot.com/wild-thing-2-hanging-at-the-mall-there-can-be-only/4000-46115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47230/","id":47230,"name":"Lost Souls; The Descent","site_detail_url":"https://comicvine.gamespot.com/day-of-judgment-2-lost-souls-the-descent/4000-47230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46048/","id":46048,"name":"And Now, The Avengers","site_detail_url":"https://comicvine.gamespot.com/spider-girl-13-and-now-the-avengers/4000-46048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68487/","id":68487,"name":"Venom Triumphant!","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-10-venom-triumphant/4000-68487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120181/","id":120181,"name":"Guts 'n' Glory","site_detail_url":"https://comicvine.gamespot.com/wolverinecable-1-guts-n-glory/4000-120181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113441/","id":113441,"name":"And Then There Were...","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-10-and-then-there-were/4000-113441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118679/","id":118679,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-26/4000-118679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46069/","id":46069,"name":"Crash Course / 5","site_detail_url":"https://comicvine.gamespot.com/wild-thing-1-crash-course-5/4000-46069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46075/","id":46075,"name":"5","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-1-5/4000-46075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103789/","id":103789,"name":"Part 1 of \"the Martyr\" / Iron Wings Special Preview","site_detail_url":"https://comicvine.gamespot.com/alley-cat-4-part-1-of-the-martyr-iron-wings-specia/4000-103789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115960/","id":115960,"name":"","site_detail_url":"https://comicvine.gamespot.com/heavy-liquid-1/4000-115960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294532/","id":294532,"name":"Tocado","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-22-tocado/4000-294532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161370/","id":161370,"name":"To The Hunter, The Prey","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-loftier-than-mortals-2-to-the-hunter/4000-161370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46082/","id":46082,"name":"The End of Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-12-the-end-of-spider-man/4000-46082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294502/","id":294502,"name":"Una esperanza renace, un pasado reclama","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-19-una-esperanza-renace-un-pasado-re/4000-294502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503990/","id":503990,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-villainy-of-doctor-doom-1-tpb/4000-503990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65813/","id":65813,"name":"Time Loves A Hero","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-1-time-loves-a-hero/4000-65813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141464/","id":141464,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-fantastic-four-2-volume-2/4000-141464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83144/","id":83144,"name":"I Built My Dreams Around You","site_detail_url":"https://comicvine.gamespot.com/preacher-54-i-built-my-dreams-around-you/4000-83144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51989/","id":51989,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-35/4000-51989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46060/","id":46060,"name":"Udaku, Part 3","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-3-udaku-part-3/4000-46060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65792/","id":65792,"name":"Hidden Lives, Part 1 of 2: Open Wounds","site_detail_url":"https://comicvine.gamespot.com/x-men-93-hidden-lives-part-1-of-2-open-wounds/4000-65792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95855/","id":95855,"name":"Cipher","site_detail_url":"https://comicvine.gamespot.com/warlock-1-cipher/4000-95855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281903/","id":281903,"name":"L’albero della vita","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-gigante-5-lalbero-della-vita/4000-281903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283403/","id":283403,"name":"La macchina dell'Armageddon","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-211-la-macchina-dellarmageddon/4000-283403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83168/","id":83168,"name":"Seasons of Change","site_detail_url":"https://comicvine.gamespot.com/spawn-88-seasons-of-change/4000-83168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122109/","id":122109,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-19/4000-122109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142567/","id":142567,"name":"Full Court Press","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-99-1-full-court-press/4000-142567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46885/","id":46885,"name":"Misty Magic Land","site_detail_url":"https://comicvine.gamespot.com/promethea-3-misty-magic-land/4000-46885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113440/","id":113440,"name":"The List","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-9-the-list/4000-113440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46004/","id":46004,"name":"Duel With Darkdevil","site_detail_url":"https://comicvine.gamespot.com/spider-girl-12-duel-with-darkdevil/4000-46004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68486/","id":68486,"name":"Shadows of the Past","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-9-shadows-of-the-past/4000-68486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46012/","id":46012,"name":"The Gathering","site_detail_url":"https://comicvine.gamespot.com/contest-of-champions-ii-1-the-gathering/4000-46012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118678/","id":118678,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-25/4000-118678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46003/","id":46003,"name":"The End of the Avengers!","site_detail_url":"https://comicvine.gamespot.com/a-next-12-the-end-of-the-avengers/4000-46003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46006/","id":46006,"name":"Deadly Reunion!","site_detail_url":"https://comicvine.gamespot.com/j2-12-deadly-reunion/4000-46006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139640/","id":139640,"name":"Misery","site_detail_url":"https://comicvine.gamespot.com/spider-girl-annual-1999-1-misery/4000-139640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294487/","id":294487,"name":"Hombre","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-18-hombre/4000-294487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294486/","id":294486,"name":"Conociendo al enemigo","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-17-conociendo-al-enemigo/4000-294486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46005/","id":46005,"name":"Once Upon a Time","site_detail_url":"https://comicvine.gamespot.com/mutant-x-12-once-upon-a-time/4000-46005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83120/","id":83120,"name":"Sins of the Past Part One: In Another Man's Shoes","site_detail_url":"https://comicvine.gamespot.com/generation-x-55-sins-of-the-past-part-one-in-anoth/4000-83120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83143/","id":83143,"name":"Too Dumb for New York City and Too Ugly for L.A.","site_detail_url":"https://comicvine.gamespot.com/preacher-53-too-dumb-for-new-york-city-and-too-ugl/4000-83143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75663/","id":75663,"name":"At Last Disclosure","site_detail_url":"https://comicvine.gamespot.com/thor-15-at-last-disclosure/4000-75663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51988/","id":51988,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-34/4000-51988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46491/","id":46491,"name":"Enemy of the State, Book 3","site_detail_url":"https://comicvine.gamespot.com/black-panther-11-enemy-of-the-state-book-3/4000-46491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46015/","id":46015,"name":"Udaku, Part 2","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-2-udaku-part-2/4000-46015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69288/","id":69288,"name":"Need For Speed, Part 1: Runner's High","site_detail_url":"https://comicvine.gamespot.com/the-titans-7-need-for-speed-part-1-runners-high/4000-69288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46009/","id":46009,"name":"Machinations, Misconceptions, and Revelations!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-116-machinations-misconceptions-and-/4000-46009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283415/","id":283415,"name":"Il virus di fine millennio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-210-il-virus-di-fine-millennio/4000-283415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83167/","id":83167,"name":"Folklore","site_detail_url":"https://comicvine.gamespot.com/spawn-87-folklore/4000-83167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147958/","id":147958,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-18/4000-147958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300888/","id":300888,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/gen-13-i-love-new-york-1-tpb/4000-300888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46884/","id":46884,"name":"The Judgment of Solomon!","site_detail_url":"https://comicvine.gamespot.com/promethea-2-the-judgment-of-solomon/4000-46884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323010/","id":323010,"name":"Black Dawn","site_detail_url":"https://comicvine.gamespot.com/razorwarrior-nun-areala-dark-prophecy-1-black-dawn/4000-323010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46022/","id":46022,"name":"JLApe: Gorilla Warfare! [Part 1 of 8]","site_detail_url":"https://comicvine.gamespot.com/jla-annual-3-jlape-gorilla-warfare-part-1-of-8/4000-46022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131922/","id":131922,"name":"So This Is Hell","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-4-so-this-is-hell/4000-131922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234906/","id":234906,"name":"The Amazing Jeckel Brothers","site_detail_url":"https://comicvine.gamespot.com/insane-clown-posse-2-the-amazing-jeckel-brothers/4000-234906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120199/","id":120199,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-second-genesis-1/4000-120199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113439/","id":113439,"name":"The Man Behind the Curtain!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-8-the-man-behind-the-curtai/4000-113439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45957/","id":45957,"name":"Slayers, Spiders and Torches-- Oh My!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-11-slayers-spiders-and-torches-oh-my/4000-45957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68485/","id":68485,"name":"Blood Feud","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-8-blood-feud/4000-68485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118677/","id":118677,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-24/4000-118677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45956/","id":45956,"name":"Crucible!","site_detail_url":"https://comicvine.gamespot.com/a-next-11-crucible/4000-45956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119792/","id":119792,"name":"If...","site_detail_url":"https://comicvine.gamespot.com/the-witching-hour-3-if/4000-119792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293975/","id":293975,"name":"Con grandes poderes","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-16-con-grandes-poderes/4000-293975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293968/","id":293968,"name":"El principio del fin: Crepúsculo de los dioses","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-15-el-principio-del-fin-crepusculo-d/4000-293968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66225/","id":66225,"name":"Danger in the Air!","site_detail_url":"https://comicvine.gamespot.com/captain-america-20-danger-in-the-air/4000-66225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83142/","id":83142,"name":"Even Hitgirls Get the Blues","site_detail_url":"https://comicvine.gamespot.com/preacher-52-even-hitgirls-get-the-blues/4000-83142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155635/","id":155635,"name":"Hammer Time","site_detail_url":"https://comicvine.gamespot.com/thor-14-hammer-time/4000-155635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51987/","id":51987,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-33/4000-51987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46490/","id":46490,"name":"Enemy of the State, Book 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-10-enemy-of-the-state-book-2/4000-46490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45969/","id":45969,"name":"Udaku, Part 1","site_detail_url":"https://comicvine.gamespot.com/sam-and-twitch-1-udaku-part-1/4000-45969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142723/","id":142723,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-classic-x-men-1-volume-1/4000-142723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46883/","id":46883,"name":"The Radiant Heavenly City","site_detail_url":"https://comicvine.gamespot.com/promethea-1-the-radiant-heavenly-city/4000-46883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45963/","id":45963,"name":"The Package","site_detail_url":"https://comicvine.gamespot.com/green-lantern-115-the-package/4000-45963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83166/","id":83166,"name":"Abdication","site_detail_url":"https://comicvine.gamespot.com/spawn-86-abdication/4000-83166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147957/","id":147957,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-17/4000-147957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318746/","id":318746,"name":"Zeppelin!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-209-zeppelin/4000-318746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153171/","id":153171,"name":"Wild Times: Gen13","site_detail_url":"https://comicvine.gamespot.com/wild-times-gen-13-1-wild-times-gen13/4000-153171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169588/","id":169588,"name":"Foreign Bodies","site_detail_url":"https://comicvine.gamespot.com/jla-foreign-bodies-1-foreign-bodies/4000-169588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46587/","id":46587,"name":"I'll Take Manhattan Part 6: Requiem for Selina Kyle","site_detail_url":"https://comicvine.gamespot.com/catwoman-71-ill-take-manhattan-part-6-requiem-for-/4000-46587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131921/","id":131921,"name":"One Shot at Heaven","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-3-one-shot-at-heaven/4000-131921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-722750/","id":722750,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-darkness-collected-editions-5-volume-5/4000-722750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113438/","id":113438,"name":"The Perfect World Part 1 Heroes and Villains","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-7-the-perfect-world-part-1-/4000-113438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51986/","id":51986,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-32/4000-51986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140972/","id":140972,"name":"Seeing Isn't Believing","site_detail_url":"https://comicvine.gamespot.com/spider-girl-12-seeing-isnt-believing/4000-140972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68484/","id":68484,"name":"Creatures of the Night","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-7-creatures-of-the-night/4000-68484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118676/","id":118676,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-23/4000-118676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200825/","id":200825,"name":"","site_detail_url":"https://comicvine.gamespot.com/forever-amber-1/4000-200825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45921/","id":45921,"name":"Ragnarok!","site_detail_url":"https://comicvine.gamespot.com/a-next-10-ragnarok/4000-45921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151472/","id":151472,"name":"Chances","site_detail_url":"https://comicvine.gamespot.com/the-witching-hour-2-chances/4000-151472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45922/","id":45922,"name":"Father's Day","site_detail_url":"https://comicvine.gamespot.com/spider-girl-10-father-s-day/4000-45922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45944/","id":45944,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-9/4000-45944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293966/","id":293966,"name":"Siempre es más oscuro...","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-13-siempre-es-mas-oscuro/4000-293966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293967/","id":293967,"name":"Sombras de gris","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-14-sombras-de-gris/4000-293967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131920/","id":131920,"name":"Ascension","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-2-ascension/4000-131920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127574/","id":127574,"name":"The Work Of Odin","site_detail_url":"https://comicvine.gamespot.com/thor-13-the-work-of-odin/4000-127574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156900/","id":156900,"name":"Day of the Remains","site_detail_url":"https://comicvine.gamespot.com/avengers-annual-1999-1-day-of-the-remains/4000-156900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260621/","id":260621,"name":"Le Mille Luci di New York","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-extra-10-le-mille-luci-di-new-york/4000-260621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69286/","id":69286,"name":"Hydrophobia","site_detail_url":"https://comicvine.gamespot.com/the-titans-5-hydrophobia/4000-69286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83165/","id":83165,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/spawn-85-endgame/4000-83165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147956/","id":147956,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-15/4000-147956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318743/","id":318743,"name":"Verso l’Apocalisse","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-208-verso-lapocalisse/4000-318743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51163/","id":51163,"name":"The Itsy-Bitsy Spider Part 2: Ingenue","site_detail_url":"https://comicvine.gamespot.com/black-widow-2-the-itsy-bitsy-spider-part-2-ingenue/4000-51163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46489/","id":46489,"name":"Enemy of the State, Book 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-9-enemy-of-the-state-book-1/4000-46489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119759/","id":119759,"name":"Wishes","site_detail_url":"https://comicvine.gamespot.com/the-witching-hour-1-wishes/4000-119759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68483/","id":68483,"name":"The Whys Have It!","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-6-the-whys-have-it/4000-68483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122578/","id":122578,"name":"Into Darkness","site_detail_url":"https://comicvine.gamespot.com/magneto-rex-2-into-darkness/4000-122578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75628/","id":75628,"name":"With Everything to Lose","site_detail_url":"https://comicvine.gamespot.com/webspinners-tales-of-spider-man-6-with-everything-/4000-75628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45876/","id":45876,"name":"Team Matters","site_detail_url":"https://comicvine.gamespot.com/a-next-9-team-matters/4000-45876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45882/","id":45882,"name":"Big Julie, the Gangster Gorilla / daddy's little girl / J2's Funny Fairy Tales for Fools & Felons: Jack and the Big Score","site_detail_url":"https://comicvine.gamespot.com/j2-9-big-julie-the-gangster-gorilla-daddys-little-/4000-45882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45877/","id":45877,"name":"Training Matters","site_detail_url":"https://comicvine.gamespot.com/spider-girl-9-training-matters/4000-45877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48382/","id":48382,"name":"Heart of Darkness, Soul of Fire","site_detail_url":"https://comicvine.gamespot.com/hulk-3-heart-of-darkness-soul-of-fire/4000-48382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45905/","id":45905,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-8/4000-45905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127573/","id":127573,"name":"The Dark Wars, Part Three","site_detail_url":"https://comicvine.gamespot.com/thor-12-the-dark-wars-part-three/4000-127573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66257/","id":66257,"name":"Guardian Devil Part 8: The Devil's Deliverance","site_detail_url":"https://comicvine.gamespot.com/daredevil-8-guardian-devil-part-8-the-devils-deliv/4000-66257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46488/","id":46488,"name":"That Business With the Avengers","site_detail_url":"https://comicvine.gamespot.com/black-panther-8-that-business-with-the-avengers/4000-46488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45880/","id":45880,"name":"The Uncanny","site_detail_url":"https://comicvine.gamespot.com/mutant-x-9-the-uncanny/4000-45880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83164/","id":83164,"name":"The Waiting","site_detail_url":"https://comicvine.gamespot.com/spawn-84-the-waiting/4000-83164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152894/","id":152894,"name":"Change or Die","site_detail_url":"https://comicvine.gamespot.com/stormwatch-change-or-die-1-change-or-die/4000-152894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318741/","id":318741,"name":"L’enigma del Sator","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-207-lenigma-del-sator/4000-318741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51162/","id":51162,"name":"The Itsy-Bitsy Spider Part 1: Uninvited","site_detail_url":"https://comicvine.gamespot.com/black-widow-1-the-itsy-bitsy-spider-part-1-uninvit/4000-51162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50776/","id":50776,"name":"Cage of Freedom","site_detail_url":"https://comicvine.gamespot.com/avengers-17-cage-of-freedom/4000-50776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45833/","id":45833,"name":"Two Of A Kind","site_detail_url":"https://comicvine.gamespot.com/spider-girl-8-two-of-a-kind/4000-45833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169262/","id":169262,"name":"...A Terrifying Hour!","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-1-a-terrifying-hour/4000-169262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68482/","id":68482,"name":"The Trouble With Girls","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-5-the-trouble-with-girls/4000-68482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45838/","id":45838,"name":"Team-Up Traumas! / J2's Funny Fairy Tales for Fools & Felons: the Three Lawbreaking Pyggs","site_detail_url":"https://comicvine.gamespot.com/j2-8-team-up-traumas-j2s-funny-fairy-tales-for-foo/4000-45838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118674/","id":118674,"name":"Wyrmwood, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-darkness-21-wyrmwood-part-1/4000-118674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122365/","id":122365,"name":"A World Gone Mad!","site_detail_url":"https://comicvine.gamespot.com/mutant-x-annual-1999-1-a-world-gone-mad/4000-122365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70848/","id":70848,"name":"Up In Smoke","site_detail_url":"https://comicvine.gamespot.com/superman-144-up-in-smoke/4000-70848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45832/","id":45832,"name":"Into The Depths!","site_detail_url":"https://comicvine.gamespot.com/a-next-8-into-the-depths/4000-45832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115262/","id":115262,"name":"The All-New, Non-Violent Adventures of Super-Bo!, Part 3: Return to Eden","site_detail_url":"https://comicvine.gamespot.com/lobo-62-the-all-new-non-violent-adventures-of-supe/4000-115262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45859/","id":45859,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-7/4000-45859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293889/","id":293889,"name":"Una voz tan profunda como el trueno","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-8-una-voz-tan-profunda-como-el-truen/4000-293889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113729/","id":113729,"name":"Sign of the End Times Part 2: God's Fingerprints","site_detail_url":"https://comicvine.gamespot.com/cable-67-sign-of-the-end-times-part-2-gods-fingerp/4000-113729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53619/","id":53619,"name":"The Circle, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-authority-1-the-circle-part-1/4000-53619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153095/","id":153095,"name":"The Dark Wars, Part Two","site_detail_url":"https://comicvine.gamespot.com/thor-11-the-dark-wars-part-two/4000-153095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66256/","id":66256,"name":"Guardian Devil Part 7: The Devil's Demon","site_detail_url":"https://comicvine.gamespot.com/daredevil-7-guardian-devil-part-7-the-devils-demon/4000-66256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51985/","id":51985,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-31/4000-51985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45835/","id":45835,"name":"The Reign of the Queen","site_detail_url":"https://comicvine.gamespot.com/mutant-x-8-the-reign-of-the-queen/4000-45835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45822/","id":45822,"name":"Crisis Times Five! Part Two: World Turned","site_detail_url":"https://comicvine.gamespot.com/jla-29-crisis-times-five-part-two-world-turned/4000-45822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45834/","id":45834,"name":"Mansions in Heaven","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-368-mansions-in-heaven/4000-45834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45840/","id":45840,"name":"Standing Tall","site_detail_url":"https://comicvine.gamespot.com/green-lantern-112-standing-tall/4000-45840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83163/","id":83163,"name":"The Conqueror","site_detail_url":"https://comicvine.gamespot.com/spawn-83-the-conqueror/4000-83163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122107/","id":122107,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-13/4000-122107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318633/","id":318633,"name":"¡El Rino desencadenado!","site_detail_url":"https://comicvine.gamespot.com/spiderman-de-john-romita-5-el-rino-desencadenado/4000-318633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45845/","id":45845,"name":"Raptus","site_detail_url":"https://comicvine.gamespot.com/crimson-9-raptus/4000-45845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170203/","id":170203,"name":"A Tale of Two Cities","site_detail_url":"https://comicvine.gamespot.com/batman-and-superman-worlds-finest-2-a-tale-of-two-/4000-170203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46487/","id":46487,"name":"Caged","site_detail_url":"https://comicvine.gamespot.com/black-panther-7-caged/4000-46487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125695/","id":125695,"name":"Starting Over","site_detail_url":"https://comicvine.gamespot.com/nova-1-starting-over/4000-125695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111017/","id":111017,"name":"The Keys to the Kingdom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1999-1-the-keys-to-the-kingdom/4000-111017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45784/","id":45784,"name":"Secrets","site_detail_url":"https://comicvine.gamespot.com/spider-girl-7-secrets/4000-45784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68481/","id":68481,"name":"Beneath It All","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-4-beneath-it-all/4000-68481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45791/","id":45791,"name":"The Last Days of the Original Juggernaut / Girls Night Out / The Day I Nearly Lost 1000 Pounds","site_detail_url":"https://comicvine.gamespot.com/j2-7-the-last-days-of-the-original-juggernaut-girl/4000-45791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118672/","id":118672,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-20/4000-118672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69276/","id":69276,"name":"Saving the World","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-25-saving-the-world/4000-69276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119746/","id":119746,"name":"All told in the Mighty Marvel manner!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-island-adventures-1-all-told-in-/4000-119746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45783/","id":45783,"name":"After The Fall!","site_detail_url":"https://comicvine.gamespot.com/a-next-7-after-the-fall/4000-45783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45811/","id":45811,"name":"Clash","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-6-clash/4000-45811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66221/","id":66221,"name":"Red Glare","site_detail_url":"https://comicvine.gamespot.com/captain-america-16-red-glare/4000-66221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45774/","id":45774,"name":"Landlovers","site_detail_url":"https://comicvine.gamespot.com/aquaman-54-landlovers/4000-45774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-54528/","id":54528,"name":"All Over the World","site_detail_url":"https://comicvine.gamespot.com/planetary-1-all-over-the-world/4000-54528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66255/","id":66255,"name":"Guardian Devil Part 6: The Devil Divested","site_detail_url":"https://comicvine.gamespot.com/daredevil-6-guardian-devil-part-6-the-devil-divest/4000-66255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51984/","id":51984,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-30/4000-51984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45773/","id":45773,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/earth-x-1-chapter-one/4000-45773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134844/","id":134844,"name":"Fatal Attraction","site_detail_url":"https://comicvine.gamespot.com/green-lantern-111-fatal-attraction/4000-134844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170202/","id":170202,"name":"Different Worlds","site_detail_url":"https://comicvine.gamespot.com/batman-and-superman-worlds-finest-1-different-worl/4000-170202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275684/","id":275684,"name":"Les jambes de Martha","site_detail_url":"https://comicvine.gamespot.com/berceuse-assassine-2-les-jambes-de-martha/4000-275684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83162/","id":83162,"name":"Devil Inside II","site_detail_url":"https://comicvine.gamespot.com/spawn-82-devil-inside-ii/4000-83162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122106/","id":122106,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-12/4000-122106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307397/","id":307397,"name":"","site_detail_url":"https://comicvine.gamespot.com/nira-x-history-1/4000-307397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318634/","id":318634,"name":"¡Nace un superheroe!","site_detail_url":"https://comicvine.gamespot.com/spiderman-de-john-romita-4-nace-un-superheroe/4000-318634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187427/","id":187427,"name":"The Infinite Destruction","site_detail_url":"https://comicvine.gamespot.com/supermanfantastic-four-1-the-infinite-destruction/4000-187427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132791/","id":132791,"name":"The Black Embrace","site_detail_url":"https://comicvine.gamespot.com/the-tenth-2-the-black-embrace/4000-132791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210403/","id":210403,"name":"Un Giovane Americano","site_detail_url":"https://comicvine.gamespot.com/speciale-mister-no-13-un-giovane-americano/4000-210403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93754/","id":93754,"name":"The Shores of Sorrow","site_detail_url":"https://comicvine.gamespot.com/aria-2-the-shores-of-sorrow/4000-93754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-564578/","id":564578,"name":"La Voie fiscale","site_detail_url":"https://comicvine.gamespot.com/ir-1-la-voie-fiscale/4000-564578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45734/","id":45734,"name":"And Now, Argo The Almighty!","site_detail_url":"https://comicvine.gamespot.com/a-next-6-and-now-argo-the-almighty/4000-45734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68480/","id":68480,"name":"Eyewitness","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-3-eyewitness/4000-68480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65784/","id":65784,"name":"A Tale of Two Mutants","site_detail_url":"https://comicvine.gamespot.com/x-men-85-a-tale-of-two-mutants/4000-65784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73301/","id":73301,"name":"Misery: Book I: Mercy Killer","site_detail_url":"https://comicvine.gamespot.com/trenchcoat-brigade-1-misery-book-i-mercy-killer/4000-73301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45740/","id":45740,"name":"When Magneta Strikes! / The Letter / Little Red, the Wretched Hood","site_detail_url":"https://comicvine.gamespot.com/j2-6-when-magneta-strikes-the-letter-little-red-th/4000-45740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45735/","id":45735,"name":"Look Out For Ladyhawk","site_detail_url":"https://comicvine.gamespot.com/spider-girl-6-look-out-for-ladyhawk/4000-45735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115260/","id":115260,"name":"The All-New, Non-Violent Adventures of Super-Bo!, Part 1: The New Bo","site_detail_url":"https://comicvine.gamespot.com/lobo-60-the-all-new-non-violent-adventures-of-supe/4000-115260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46486/","id":46486,"name":"Hunted","site_detail_url":"https://comicvine.gamespot.com/black-panther-6-hunted/4000-46486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45761/","id":45761,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-5/4000-45761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45737/","id":45737,"name":"The Trial of the Brute!","site_detail_url":"https://comicvine.gamespot.com/mutant-x-6-the-trial-of-the-brute/4000-45737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83114/","id":83114,"name":"Trophies","site_detail_url":"https://comicvine.gamespot.com/generation-x-49-trophies/4000-83114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45723/","id":45723,"name":"Answers","site_detail_url":"https://comicvine.gamespot.com/thor-9-answers/4000-45723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134843/","id":134843,"name":"Golden Years","site_detail_url":"https://comicvine.gamespot.com/green-lantern-110-golden-years/4000-134843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111940/","id":111940,"name":"Meat and Poison","site_detail_url":"https://comicvine.gamespot.com/gen-13-37-meat-and-poison/4000-111940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45725/","id":45725,"name":"Guardian Devil Part 5: Devil's Despair","site_detail_url":"https://comicvine.gamespot.com/daredevil-5-guardian-devil-part-5-devils-despair/4000-45725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51983/","id":51983,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-29/4000-51983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65644/","id":65644,"name":"Acid Bath","site_detail_url":"https://comicvine.gamespot.com/cable-65-acid-bath/4000-65644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83161/","id":83161,"name":"Devil Inside, Part 1","site_detail_url":"https://comicvine.gamespot.com/spawn-81-devil-inside-part-1/4000-83161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318695/","id":318695,"name":"Il ritorno di Billiken","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-204-il-ritorno-di-billiken/4000-318695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318635/","id":318635,"name":"¡Los cuernos del Rino!","site_detail_url":"https://comicvine.gamespot.com/spiderman-de-john-romita-3-los-cuernos-del-rino/4000-318635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223439/","id":223439,"name":"1 of 6","site_detail_url":"https://comicvine.gamespot.com/martin-mystery-1-1-of-6/4000-223439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46485/","id":46485,"name":"Lord of the Damned","site_detail_url":"https://comicvine.gamespot.com/black-panther-5-lord-of-the-damned/4000-46485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132790/","id":132790,"name":"The Black Embrace","site_detail_url":"https://comicvine.gamespot.com/the-tenth-1-the-black-embrace/4000-132790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45718/","id":45718,"name":"Cat & Mouse","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-22-cat-mouse/4000-45718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51201/","id":51201,"name":"The Great Escape Part 2 of 6 - Choice In The Matter","site_detail_url":"https://comicvine.gamespot.com/wolverine-134-the-great-escape-part-2-of-6-choice-/4000-51201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45678/","id":45678,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/a-next-5-the-gift/4000-45678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45702/","id":45702,"name":"The moon is a lonely place to DIE HARD!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-14-the-moon-is-a-lonely-place-to-di/4000-45702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51982/","id":51982,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-28/4000-51982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45679/","id":45679,"name":"A Touch Of Venom","site_detail_url":"https://comicvine.gamespot.com/spider-girl-5-a-touch-of-venom/4000-45679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68479/","id":68479,"name":"Plaything Of The Gods","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-2-plaything-of-the-gods/4000-68479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45687/","id":45687,"name":"Wild Thing!","site_detail_url":"https://comicvine.gamespot.com/j2-5-wild-thing/4000-45687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45690/","id":45690,"name":"The Tower","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-volume-two-22-the-tower/4000-45690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78406/","id":78406,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/warlock-4-endgame/4000-78406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293888/","id":293888,"name":"Invasión","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-7-invasion/4000-293888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45703/","id":45703,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-chapter-one-4/4000-45703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291024/","id":291024,"name":"Starman: Times Past","site_detail_url":"https://comicvine.gamespot.com/starman-times-past-1-starman-times-past/4000-291024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45683/","id":45683,"name":"Goblins in the Night","site_detail_url":"https://comicvine.gamespot.com/mutant-x-5-goblins-in-the-night/4000-45683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45665/","id":45665,"name":". . . And the Home of the Brave!","site_detail_url":"https://comicvine.gamespot.com/thor-8-and-the-home-of-the-brave/4000-45665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136135/","id":136135,"name":"Paradox Lost!","site_detail_url":"https://comicvine.gamespot.com/team-x-2000-1-paradox-lost/4000-136135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45653/","id":45653,"name":"Guardian Devil Part 4: The Devils Distaff","site_detail_url":"https://comicvine.gamespot.com/daredevil-4-guardian-devil-part-4-the-devils-dista/4000-45653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187365/","id":187365,"name":"Book Two: Weird Wide Web","site_detail_url":"https://comicvine.gamespot.com/moon-knight-high-strangers-2-book-two-weird-wide-w/4000-187365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187366/","id":187366,"name":"Book Three: Mind Maze","site_detail_url":"https://comicvine.gamespot.com/moon-knight-high-strangers-3-book-three-mind-maze/4000-187366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131282/","id":131282,"name":"Purgatory, Part 4: The Hour Of Judgement","site_detail_url":"https://comicvine.gamespot.com/the-punisher-purgatory-4-purgatory-part-4-the-hour/4000-131282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272253/","id":272253,"name":"Dieu seul le sait","site_detail_url":"https://comicvine.gamespot.com/soda-10-dieu-seul-le-sait/4000-272253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83160/","id":83160,"name":"The Cleansing","site_detail_url":"https://comicvine.gamespot.com/spawn-80-the-cleansing/4000-83160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318636/","id":318636,"name":"¡El Fin del Duende Verde!","site_detail_url":"https://comicvine.gamespot.com/spiderman-de-john-romita-2-el-fin-del-duende-verde/4000-318636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202286/","id":202286,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-the-manga-21/4000-202286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46484/","id":46484,"name":"The Price","site_detail_url":"https://comicvine.gamespot.com/black-panther-4-the-price/4000-46484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45659/","id":45659,"name":"All In The Family","site_detail_url":"https://comicvine.gamespot.com/jlatitans-3-all-in-the-family/4000-45659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150946/","id":150946,"name":"The Untold Story","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dc-universe-crisis-on-infinite-eart/4000-150946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68478/","id":68478,"name":"Power Without Responsibility!; Memories","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-1-power-without-responsibi/4000-68478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45617/","id":45617,"name":"Who Shall Be Worthy?","site_detail_url":"https://comicvine.gamespot.com/a-next-4-who-shall-be-worthy/4000-45617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113432/","id":113432,"name":"Where R U Spider-Man??? and Rebirth","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-1-where-r-u-spider-man-and-/4000-113432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45618/","id":45618,"name":"Deadly Is The Dragon King","site_detail_url":"https://comicvine.gamespot.com/spider-girl-4-deadly-is-the-dragon-king/4000-45618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45626/","id":45626,"name":"Father Hunt","site_detail_url":"https://comicvine.gamespot.com/j2-4-father-hunt/4000-45626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126728/","id":126728,"name":"Jane's Addiction","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-0-janes-addiction/4000-126728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277156/","id":277156,"name":"Thor: Resurrection","site_detail_url":"https://comicvine.gamespot.com/thor-resurrection-1-thor-resurrection/4000-277156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118671/","id":118671,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-darkness-19/4000-118671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51200/","id":51200,"name":"The Great Escape Part 1 of 6 - Losing Control","site_detail_url":"https://comicvine.gamespot.com/wolverine-133-the-great-escape-part-1-of-6-losing-/4000-51200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45633/","id":45633,"name":"Sold Out!","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-19-sold-out/4000-45633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302261/","id":302261,"name":"Rayo","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-26-rayo/4000-302261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397319/","id":397319,"name":"Traidor de la causa","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-4-traidor-de-la-causa/4000-397319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45634/","id":45634,"name":"Guardian Devil Part 3: Dystopia","site_detail_url":"https://comicvine.gamespot.com/daredevil-3-guardian-devil-part-3-dystopia/4000-45634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187364/","id":187364,"name":"Book One: Top Secret","site_detail_url":"https://comicvine.gamespot.com/moon-knight-high-strangers-1-book-one-top-secret/4000-187364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131281/","id":131281,"name":"Purgatory, Part 3: A Gathering Of Angels","site_detail_url":"https://comicvine.gamespot.com/the-punisher-purgatory-3-purgatory-part-3-a-gather/4000-131281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273552/","id":273552,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-archives-1-volume-1/4000-273552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83159/","id":83159,"name":"Exterminator","site_detail_url":"https://comicvine.gamespot.com/spawn-79-exterminator/4000-83159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318560/","id":318560,"name":"¡Qué verde era mi Duende!","site_detail_url":"https://comicvine.gamespot.com/spiderman-de-john-romita-1-que-verde-era-mi-duende/4000-318560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119827/","id":119827,"name":"Best Wizard Ever...Honest!","site_detail_url":"https://comicvine.gamespot.com/wizard-the-comics-magazine-89-best-wizard-everhone/4000-119827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46483/","id":46483,"name":"Original Sin","site_detail_url":"https://comicvine.gamespot.com/black-panther-3-original-sin/4000-46483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132756/","id":132756,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-tenth-14/4000-132756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287926/","id":287926,"name":"Uncle Sam 2 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-68-uncle-sam-2-de-2/4000-287926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287939/","id":287939,"name":"Sandman Mystery Theatre: La Cara 1 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-81-sandman-mystery-theatre-la-ca/4000-287939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287942/","id":287942,"name":"Sandman Mystery Theatre: La Cara 2 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-84-sandman-mystery-theatre-la-ca/4000-287942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287959/","id":287959,"name":"Sandman Mystery Theatre: La Bestia 1 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-101-sandman-mystery-theatre-la-b/4000-287959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287961/","id":287961,"name":"Sandman Mystery Theatre: La Bestia 2 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-103-sandman-mystery-theatre-la-b/4000-287961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670284/","id":670284,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-girl-a-fresh-start-1-tpb/4000-670284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93753/","id":93753,"name":"Fairy Tale Endings","site_detail_url":"https://comicvine.gamespot.com/aria-1-fairy-tale-endings/4000-93753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45526/","id":45526,"name":"Fun 'N Games With The Fantastic Five","site_detail_url":"https://comicvine.gamespot.com/spider-girl-3-fun-n-games-with-the-fantastic-five/4000-45526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45525/","id":45525,"name":"Down 'N' Dirty With The Defenders","site_detail_url":"https://comicvine.gamespot.com/a-next-3-down-n-dirty-with-the-defenders/4000-45525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151666/","id":151666,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-1-tpb/4000-151666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45534/","id":45534,"name":"Hittin' N' Hasslin' With the Hulk","site_detail_url":"https://comicvine.gamespot.com/j2-3-hittin-n-hasslin-with-the-hulk/4000-45534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453383/","id":453383,"name":"","site_detail_url":"https://comicvine.gamespot.com/timespell-the-directors-cut-1/4000-453383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150255/","id":150255,"name":"","site_detail_url":"https://comicvine.gamespot.com/celebrate-the-century-super-heroes-stamp-album-1/4000-150255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434167/","id":434167,"name":"","site_detail_url":"https://comicvine.gamespot.com/u-s-1/4000-434167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45543/","id":45543,"name":"Danny and the Pirates","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-18-danny-and-the-pirates/4000-45543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249043/","id":249043,"name":"","site_detail_url":"https://comicvine.gamespot.com/earth-x-sketchbook-1/4000-249043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45515/","id":45515,"name":"What's A God To Do?","site_detail_url":"https://comicvine.gamespot.com/thor-6-whats-a-god-to-do/4000-45515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45544/","id":45544,"name":"Guardian Devil Part 2: The Unexamined Life","site_detail_url":"https://comicvine.gamespot.com/daredevil-2-guardian-devil-part-2-the-unexamined-l/4000-45544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131280/","id":131280,"name":"Purgatory, Part 2: The Mark Of Cain","site_detail_url":"https://comicvine.gamespot.com/the-punisher-purgatory-2-purgatory-part-2-the-mark/4000-131280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119046/","id":119046,"name":"Special","site_detail_url":"https://comicvine.gamespot.com/witchblade-tomb-raider-1-special/4000-119046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317522/","id":317522,"name":"Il trono di Hampton","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-201-il-trono-di-hampton/4000-317522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263408/","id":263408,"name":"La forza invisibile (Magic Patrol) & Naufragio nello spazio","site_detail_url":"https://comicvine.gamespot.com/zona-x-42-la-forza-invisibile-magic-patrol-naufrag/4000-263408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50770/","id":50770,"name":"Always an Avenger","site_detail_url":"https://comicvine.gamespot.com/avengers-11-always-an-avenger/4000-50770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123893/","id":123893,"name":"The Most Supernatural Superheroes Of Them All","site_detail_url":"https://comicvine.gamespot.com/the-supernaturals-1-the-most-supernatural-superher/4000-123893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123894/","id":123894,"name":"Only The Supernaturals Stand Between Us And Oblivion","site_detail_url":"https://comicvine.gamespot.com/the-supernaturals-2-only-the-supernaturals-stand-b/4000-123894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123896/","id":123896,"name":"Can The Supernaturals Overcome Dracula And Frankenstein's Monster?","site_detail_url":"https://comicvine.gamespot.com/the-supernaturals-3-can-the-supernaturals-overcome/4000-123896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419927/","id":419927,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-darkness-deluxe-collected-edition-1-tpb/4000-419927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46482/","id":46482,"name":"Invasion","site_detail_url":"https://comicvine.gamespot.com/black-panther-2-invasion/4000-46482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45510/","id":45510,"name":"One of Ours","site_detail_url":"https://comicvine.gamespot.com/jlatitans-1-one-of-ours/4000-45510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45474/","id":45474,"name":"Secrets and Lines (or Keeping a Dual Identity is a Pain); Alone Against the X-People","site_detail_url":"https://comicvine.gamespot.com/j2-2-secrets-and-lines-or-keeping-a-dual-identity-/4000-45474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45466/","id":45466,"name":"Suddenly...The Sentry","site_detail_url":"https://comicvine.gamespot.com/a-next-2-suddenlythe-sentry/4000-45466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45428/","id":45428,"name":"The Final Chapter (Part 3): The Triumph of the Goblin!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-263-the-final-chapter-p/4000-45428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45467/","id":45467,"name":"Bedeviled","site_detail_url":"https://comicvine.gamespot.com/spider-girl-2-bedeviled/4000-45467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118670/","id":118670,"name":"Spear of Destiny, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-darkness-18-spear-of-destiny-part-4/4000-118670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409830/","id":409830,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/predator-vs-judge-dredd-1-tpb/4000-409830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466265/","id":466265,"name":"Guardian Devil Part 1:...And a Child Shall Lead Them All","site_detail_url":"https://comicvine.gamespot.com/marvel-authentix-daredevil-1-guardian-devil-part-1/4000-466265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141387/","id":141387,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-1-volume-1/4000-141387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45453/","id":45453,"name":"Heroes","site_detail_url":"https://comicvine.gamespot.com/thor-5-heroes/4000-45453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45424/","id":45424,"name":"Guardian Devil Part 1:...And a Child Shall Lead Them All","site_detail_url":"https://comicvine.gamespot.com/daredevil-1-guardian-devil-part-1and-a-child-shall/4000-45424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96306/","id":96306,"name":"Fire in the Sky","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-146-fire-in-the-sky/4000-96306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111915/","id":111915,"name":"But You Can't Hide","site_detail_url":"https://comicvine.gamespot.com/gen-13-35-but-you-cant-hide/4000-111915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111939/","id":111939,"name":"But You Can't Hide / No Good Deed","site_detail_url":"https://comicvine.gamespot.com/gen-13-36-but-you-cant-hide-no-good-deed/4000-111939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51981/","id":51981,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-27/4000-51981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46481/","id":46481,"name":"The Client","site_detail_url":"https://comicvine.gamespot.com/black-panther-1-the-client/4000-46481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259707/","id":259707,"name":"Second Genesis","site_detail_url":"https://comicvine.gamespot.com/marvel-collectible-classics-x-men-5-second-genesis/4000-259707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131271/","id":131271,"name":"Purgatory, Part 1: The Harvest","site_detail_url":"https://comicvine.gamespot.com/the-punisher-purgatory-1-purgatory-part-1-the-harv/4000-131271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279779/","id":279779,"name":"Lo spettro della luce","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-200-lo-spettro-della-luce/4000-279779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83158/","id":83158,"name":"Bloodstains","site_detail_url":"https://comicvine.gamespot.com/spawn-78-bloodstains/4000-83158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122102/","id":122102,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-10/4000-122102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50769/","id":50769,"name":"Pomp & Pageantry","site_detail_url":"https://comicvine.gamespot.com/avengers-10-pomp-pageantry/4000-50769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171656/","id":171656,"name":null,"site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-resurrection-1/4000-171656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99187/","id":99187,"name":"Brother's Keeper","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-26-brothers-keeper/4000-99187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212744/","id":212744,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/uncle-sam-1-tpb/4000-212744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122270/","id":122270,"name":"Almost Live from Big Puce; Guest Stars!","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-16-almost-live-from-big-puce-guest-star/4000-122270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68476/","id":68476,"name":"Legacy...In Black and White!","site_detail_url":"https://comicvine.gamespot.com/spider-girl-0-legacyin-black-and-white/4000-68476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45395/","id":45395,"name":"Choices","site_detail_url":"https://comicvine.gamespot.com/spider-girl-1-choices/4000-45395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46605/","id":46605,"name":"In the Hands of His Deadliest Foe!","site_detail_url":"https://comicvine.gamespot.com/iron-man-9-in-the-hands-of-his-deadliest-foe/4000-46605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45402/","id":45402,"name":"Call the Kid... J2; Decisions, Decisions; Rocked by Rollerblast","site_detail_url":"https://comicvine.gamespot.com/j2-1-call-the-kid-j2-decisions-decisions-rocked-by/4000-45402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269237/","id":269237,"name":"The Night They Killed Big Bear...","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-elektra-annual-98-1-the-ni/4000-269237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45394/","id":45394,"name":"Second Coming!","site_detail_url":"https://comicvine.gamespot.com/a-next-1-second-coming/4000-45394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45364/","id":45364,"name":"The Gathering of Five (Part Four): A Day In the Life","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-262-the-gathering-of-fi/4000-45364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96305/","id":96305,"name":"And In The End...","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-145-and-in-the-end/4000-96305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141428/","id":141428,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-fantastic-four-1-volume-1/4000-141428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45382/","id":45382,"name":"From The Ashes","site_detail_url":"https://comicvine.gamespot.com/thor-4-from-the-ashes/4000-45382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166124/","id":166124,"name":"Creature on the Prowl!","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-5-creature-on-the-prowl/4000-166124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111914/","id":111914,"name":"Overture / I Want My Momaaaaaa !!","site_detail_url":"https://comicvine.gamespot.com/gen-13-34-overture-i-want-my-momaaaaaa/4000-111914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118882/","id":118882,"name":"Gone To Ground","site_detail_url":"https://comicvine.gamespot.com/dv8-23-gone-to-ground/4000-118882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51980/","id":51980,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-26/4000-51980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45379/","id":45379,"name":"The Book of Job - Part One: Termineus/Terminus; untitled; A Funeral in the Woods - Part One","site_detail_url":"https://comicvine.gamespot.com/strange-tales-2-the-book-of-job-part-one-termineus/4000-45379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45387/","id":45387,"name":"Dead Reckoning: Smells Like Prologue","site_detail_url":"https://comicvine.gamespot.com/deadpool-21-dead-reckoning-smells-like-prologue/4000-45387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115239/","id":115239,"name":"Parallel Paradigm","site_detail_url":"https://comicvine.gamespot.com/sonic-super-special-7-parallel-paradigm/4000-115239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280580/","id":280580,"name":"Operazione Gengis Khan","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-199-operazione-gengis-khan/4000-280580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83157/","id":83157,"name":"Relics","site_detail_url":"https://comicvine.gamespot.com/spawn-77-relics/4000-83157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122101/","id":122101,"name":"","site_detail_url":"https://comicvine.gamespot.com/ascension-9/4000-122101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150619/","id":150619,"name":"Snake Eyes","site_detail_url":"https://comicvine.gamespot.com/nighthawk-2-snake-eyes/4000-150619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45367/","id":45367,"name":"Reflections In Emerald","site_detail_url":"https://comicvine.gamespot.com/chase-9-reflections-in-emerald/4000-45367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136746/","id":136746,"name":".","site_detail_url":"https://comicvine.gamespot.com/pitt-19-wikiissue/4000-136746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65725/","id":65725,"name":"Times Change","site_detail_url":"https://comicvine.gamespot.com/x-factor-149-times-change/4000-65725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45278/","id":45278,"name":"Emerald Knights, Part 3","site_detail_url":"https://comicvine.gamespot.com/green-lantern-103-emerald-knights-part-3/4000-45278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65778/","id":65778,"name":"Legacy of the Morlocks!","site_detail_url":"https://comicvine.gamespot.com/x-men-79-legacy-of-the-morlocks/4000-65778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118669/","id":118669,"name":"Spear of Destiny, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-darkness-17-spear-of-destiny-part-3/4000-118669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107041/","id":107041,"name":"A Rare Night Off","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-0-a-rare-night-off/4000-107041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347510/","id":347510,"name":null,"site_detail_url":"https://comicvine.gamespot.com/thor-rough-cut-1/4000-347510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45290/","id":45290,"name":"Goblins At The Gate (Part 3): Bad Business","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-261-goblins-at-the-gate/4000-45290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45338/","id":45338,"name":"Black Science 2, Part 2: Einstein's Monsters","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-volume-two-18-black-science-2-part-/4000-45338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45319/","id":45319,"name":"God And Man","site_detail_url":"https://comicvine.gamespot.com/thor-3-god-and-man/4000-45319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45289/","id":45289,"name":"More Than a Feelin'","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-31-more-than-a-feelin/4000-45289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166123/","id":166123,"name":"Monsters on the Loose!","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-4-monsters-on-the-loose/4000-166123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45315/","id":45315,"name":"Destroyer of Worlds; Love is Colder Than Death - Part Two; A Tomb for Two","site_detail_url":"https://comicvine.gamespot.com/strange-tales-1-destroyer-of-worlds-love-is-colder/4000-45315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45307/","id":45307,"name":"Brave Old World","site_detail_url":"https://comicvine.gamespot.com/what-if-112-brave-old-world/4000-45307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280579/","id":280579,"name":"Il Paradiso non può attendere","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-198-il-paradiso-non-puo-attendere/4000-280579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45318/","id":45318,"name":"Farewell Dance","site_detail_url":"https://comicvine.gamespot.com/spawn-76-farewell-dance/4000-45318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174149/","id":174149,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/preacher-dixie-fried-1-volume-5/4000-174149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150617/","id":150617,"name":"Pitfall","site_detail_url":"https://comicvine.gamespot.com/nighthawk-1-pitfall/4000-150617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48885/","id":48885,"name":"Nightfall","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-137-nightfall/4000-48885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122267/","id":122267,"name":"'ll Take Manhattan; Scooby's Amaze-ing Adventure","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-14-ll-take-manhattan-scoobys-amaze-ing-/4000-122267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120433/","id":120433,"name":"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-the-superman-1/4000-120433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149284/","id":149284,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wildcatsaliens-1/4000-149284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131381/","id":131381,"name":"Stormfront Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-78-stormfront-part-2/4000-131381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45203/","id":45203,"name":"Goblins At The Gate Part 2: Spider in the Middle","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-260-goblins-at-the-gate/4000-45203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45248/","id":45248,"name":"Black Science 2, Part 1: Newton's Sleep","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-volume-two-17-black-science-2-part-/4000-45248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45227/","id":45227,"name":"Deal With The Devil","site_detail_url":"https://comicvine.gamespot.com/thor-2-deal-with-the-devil/4000-45227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51979/","id":51979,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-25/4000-51979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153581/","id":153581,"name":"Truth Or Consquences","site_detail_url":"https://comicvine.gamespot.com/divine-right-the-adventures-of-max-faraday-6-truth/4000-153581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57305/","id":57305,"name":"A Real Boy","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-21-a-real-boy/4000-57305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259703/","id":259703,"name":"Days Of Future Past / Mind Out Of Time!","site_detail_url":"https://comicvine.gamespot.com/marvel-collectible-classics-x-men-2-days-of-future/4000-259703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45226/","id":45226,"name":"Sacred Ground","site_detail_url":"https://comicvine.gamespot.com/spawn-75-sacred-ground/4000-45226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229473/","id":229473,"name":"","site_detail_url":"https://comicvine.gamespot.com/pandorashotgun-mary-1/4000-229473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132754/","id":132754,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-tenth-12/4000-132754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204281/","id":204281,"name":"Made Men","site_detail_url":"https://comicvine.gamespot.com/spider-man-made-men-1-made-men/4000-204281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118668/","id":118668,"name":"Spear of Destiny, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-darkness-16-spear-of-destiny-part-2/4000-118668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45115/","id":45115,"name":"Goblins at the Gate Part 1 - Survivor of the Big Lie","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-259-goblins-at-the-gate/4000-45115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45137/","id":45137,"name":"In Search Of The Gods","site_detail_url":"https://comicvine.gamespot.com/thor-1-in-search-of-the-gods/4000-45137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157513/","id":157513,"name":"Il segreto di Iron","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-61-il-segreto-di-iron/4000-157513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94835/","id":94835,"name":"","site_detail_url":"https://comicvine.gamespot.com/gen-13-bootleg-20/4000-94835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51978/","id":51978,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-24/4000-51978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99148/","id":99148,"name":"Where All Will Come Home & other stories","site_detail_url":"https://comicvine.gamespot.com/shadows-and-light-3-where-all-will-come-home-other/4000-99148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158927/","id":158927,"name":"Flashback, Part 1","site_detail_url":"https://comicvine.gamespot.com/wetworks-42-flashback-part-1/4000-158927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108998/","id":108998,"name":"Love is Colder than Death, Part 1","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-6-love-is-colder-than-death-part/4000-108998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45179/","id":45179,"name":"The Sky is Falling","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-357-the-sky-is-falling/4000-45179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136974/","id":136974,"name":"Flying Blind (Part 2)","site_detail_url":"https://comicvine.gamespot.com/daredevil-377-flying-blind-part-2/4000-136974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266892/","id":266892,"name":"Avengers Vol. 3 1998 Rough Cut","site_detail_url":"https://comicvine.gamespot.com/avengers-rough-cut-1-avengers-vol-3-1998-rough-cut/4000-266892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282119/","id":282119,"name":"Colpo da maestro","site_detail_url":"https://comicvine.gamespot.com/zagor-396-colpo-da-maestro/4000-282119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45136/","id":45136,"name":"The Void","site_detail_url":"https://comicvine.gamespot.com/spawn-74-the-void/4000-45136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321196/","id":321196,"name":"La città dei cinque anelli","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-196-la-citta-dei-cinque-anelli/4000-321196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99183/","id":99183,"name":"Deadland","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-22-deadland/4000-99183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174963/","id":174963,"name":"Girl's Day Out","site_detail_url":"https://comicvine.gamespot.com/chase-6-girl-s-day-out/4000-174963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45110/","id":45110,"name":"Jungle Book","site_detail_url":"https://comicvine.gamespot.com/ka-zar-15-jungle-book/4000-45110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132753/","id":132753,"name":"Gathering of the Children Part 1","site_detail_url":"https://comicvine.gamespot.com/the-tenth-11-gathering-of-the-children-part-1/4000-132753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210115/","id":210115,"name":"Little Odessa / L'Angelo della Morte / Il Segno dei Tre K","site_detail_url":"https://comicvine.gamespot.com/maxi-mister-no-1-little-odessa-langelo-della-morte/4000-210115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153334/","id":153334,"name":"The Fixx","site_detail_url":"https://comicvine.gamespot.com/adventures-in-the-dc-universe-16-the-fixx/4000-153334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65835/","id":65835,"name":"Power and Glory, Part 3: Hoaxed","site_detail_url":"https://comicvine.gamespot.com/captain-america-7-power-and-glory-part-3-hoaxed/4000-65835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118667/","id":118667,"name":"Spear of Destiny, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-darkness-15-spear-of-destiny-part-1/4000-118667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73743/","id":73743,"name":"The Long Cold Kill! - Chapter Two","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-521-the-long-cold-kill-chapte/4000-73743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135792/","id":135792,"name":"Wiser Times","site_detail_url":"https://comicvine.gamespot.com/cable-55-wiser-times/4000-135792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109248/","id":109248,"name":"A Promise to Keep","site_detail_url":"https://comicvine.gamespot.com/elektra-19-a-promise-to-keep/4000-109248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466251/","id":466251,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hulk-beauty-and-the-behemoth-1/4000-466251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69266/","id":69266,"name":"Wanted Dead or Alive!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-15-wanted-dead-or-alive/4000-69266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45077/","id":45077,"name":"Scorpio Rising","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-volume-two-16-scorpio-rising/4000-45077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149825/","id":149825,"name":"Why?","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-donna-troy-1-why/4000-149825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-651070/","id":651070,"name":"Premier Quartier","site_detail_url":"https://comicvine.gamespot.com/dallas-barr-3-premier-quartier/4000-651070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139757/","id":139757,"name":"Kaine Versus The Rhino!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-35-kaine-versus-the-rhi/4000-139757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103746/","id":103746,"name":"Old Feelings!","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-50-old-feelings/4000-103746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126670/","id":126670,"name":"Wizard ½: The Devil Discussed","site_detail_url":"https://comicvine.gamespot.com/daredevil-12-wizard-12-the-devil-discussed/4000-126670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51977/","id":51977,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-23/4000-51977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139390/","id":139390,"name":"Gen12","site_detail_url":"https://comicvine.gamespot.com/gen12-5-gen12/4000-139390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108997/","id":108997,"name":"New Face Revealed","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-5-new-face-revealed/4000-108997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109108/","id":109108,"name":"In the Waters of Eternity - Part One","site_detail_url":"https://comicvine.gamespot.com/man-thing-7-in-the-waters-of-eternity-part-one/4000-109108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45067/","id":45067,"name":"Reunion","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-356-reunion/4000-45067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282117/","id":282117,"name":"Il diabolico Mortimer","site_detail_url":"https://comicvine.gamespot.com/zagor-395-il-diabolico-mortimer/4000-282117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45057/","id":45057,"name":"The Heap","site_detail_url":"https://comicvine.gamespot.com/spawn-73-the-heap/4000-45057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64471/","id":64471,"name":"Fun'N Games with the Four Star Squad","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-435-fun-n-games-with-the-fo/4000-64471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45014/","id":45014,"name":"Better Days","site_detail_url":"https://comicvine.gamespot.com/chase-5-better-days/4000-45014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132752/","id":132752,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-tenth-10/4000-132752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136745/","id":136745,"name":"Ugly Americans","site_detail_url":"https://comicvine.gamespot.com/pitt-18-ugly-americans/4000-136745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148207/","id":148207,"name":"","site_detail_url":"https://comicvine.gamespot.com/american-woman-1/4000-148207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51193/","id":51193,"name":"Invisible Destroyers!","site_detail_url":"https://comicvine.gamespot.com/wolverine-124-invisible-destroyers/4000-51193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73742/","id":73742,"name":"The Long Cold Kill! - Chapter One","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-520-the-long-cold-kill-chapte/4000-73742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135791/","id":135791,"name":"Jungle Action","site_detail_url":"https://comicvine.gamespot.com/cable-54-jungle-action/4000-135791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44952/","id":44952,"name":"What If the Avengers Battled the Carnage Cosmic?","site_detail_url":"https://comicvine.gamespot.com/what-if-108-what-if-the-avengers-battled-the-carna/4000-44952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65721/","id":65721,"name":"Death of Innocence !","site_detail_url":"https://comicvine.gamespot.com/x-factor-145-death-of-innocence/4000-65721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103745/","id":103745,"name":"When Worlds Collide Part 2","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-49-when-worlds-collid/4000-103745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50763/","id":50763,"name":"Too Many Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-4-too-many-avengers/4000-50763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45048/","id":45048,"name":"Nowhere to Run, Nowhere to Hide","site_detail_url":"https://comicvine.gamespot.com/x-man-38-nowhere-to-run-nowhere-to-hide/4000-45048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51976/","id":51976,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-22/4000-51976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158925/","id":158925,"name":"Drawn Swords, Part 1","site_detail_url":"https://comicvine.gamespot.com/wetworks-40-drawn-swords-part-1/4000-158925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139389/","id":139389,"name":"Gen12","site_detail_url":"https://comicvine.gamespot.com/gen12-4-gen12/4000-139389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109107/","id":109107,"name":"The Duck & the Muck","site_detail_url":"https://comicvine.gamespot.com/man-thing-6-the-duck-the-muck/4000-109107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57304/","id":57304,"name":"A Long Way Till Dawn","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-20-a-long-way-till-dawn/4000-57304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125442/","id":125442,"name":"Expressway to Hell; Desiring Martine; In Stone","site_detail_url":"https://comicvine.gamespot.com/strange-tales-dark-corners-1-expressway-to-hell-de/4000-125442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44982/","id":44982,"name":"North & South","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-355-north-south/4000-44982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174190/","id":174190,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generationx-men-second-contact-/4000-174190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282113/","id":282113,"name":"Le armi fatali","site_detail_url":"https://comicvine.gamespot.com/zagor-394-le-armi-fatali/4000-282113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44971/","id":44971,"name":"Bloodless","site_detail_url":"https://comicvine.gamespot.com/spawn-72-bloodless/4000-44971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321242/","id":321242,"name":"La terra trema!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-194-la-terra-trema/4000-321242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44938/","id":44938,"name":"Power and Glory, Part 1: Credibility Gap","site_detail_url":"https://comicvine.gamespot.com/captain-america-5-power-and-glory-part-1-credibili/4000-44938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64470/","id":64470,"name":"'Round and 'Round with Ricochet!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-434-round-and-round-with-ri/4000-64470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171660/","id":171660,"name":"Nor A Liar Run, Aware","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-6-nor-a-liar-run-aware/4000-171660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237750/","id":237750,"name":"Let's Get it On!","site_detail_url":"https://comicvine.gamespot.com/hate-30-lets-get-it-on/4000-237750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44865/","id":44865,"name":"Through the Looking Glass","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-256-through-the-looking/4000-44865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44866/","id":44866,"name":"It Started On Yancy Street... Again!","site_detail_url":"https://comicvine.gamespot.com/spider-man-90-it-started-on-yancy-street-again/4000-44866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46600/","id":46600,"name":"The Art of the Deal","site_detail_url":"https://comicvine.gamespot.com/iron-man-3-the-art-of-the-deal/4000-46600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65774/","id":65774,"name":"Rituals","site_detail_url":"https://comicvine.gamespot.com/x-men-74-rituals/4000-65774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76525/","id":76525,"name":"The Circle Unbroken!","site_detail_url":"https://comicvine.gamespot.com/elektra-17-the-circle-unbroken/4000-76525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118666/","id":118666,"name":"Hearts of Darkness, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-darkness-14-hearts-of-darkness-part-4/4000-118666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153331/","id":153331,"name":"Sometime in New York City","site_detail_url":"https://comicvine.gamespot.com/adventures-in-the-dc-universe-13-sometime-in-new-y/4000-153331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65720/","id":65720,"name":"Points Of View","site_detail_url":"https://comicvine.gamespot.com/x-factor-144-points-of-view/4000-65720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164410/","id":164410,"name":"Inner Demons","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-inner-demons-1-inner-demons/4000-164410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51192/","id":51192,"name":"Better Than Best!","site_detail_url":"https://comicvine.gamespot.com/wolverine-123-better-than-best/4000-51192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44904/","id":44904,"name":"Loose Ends","site_detail_url":"https://comicvine.gamespot.com/green-lantern-97-loose-ends/4000-44904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96298/","id":96298,"name":"The Choice","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-138-the-choice/4000-96298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44875/","id":44875,"name":"Remote Control","site_detail_url":"https://comicvine.gamespot.com/gen-13-28-remote-control/4000-44875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44878/","id":44878,"name":"Breaking Point","site_detail_url":"https://comicvine.gamespot.com/x-man-37-breaking-point/4000-44878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139387/","id":139387,"name":"Gen12","site_detail_url":"https://comicvine.gamespot.com/gen12-3-gen12/4000-139387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109001/","id":109001,"name":"An Empty House","site_detail_url":"https://comicvine.gamespot.com/man-thing-5-an-empty-house/4000-109001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114105/","id":114105,"name":"The Big Game / Banshee's Angels / Half a Face","site_detail_url":"https://comicvine.gamespot.com/generation-x-underground-1-the-big-game-banshees-a/4000-114105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44858/","id":44858,"name":"So Little Time To Save the World","site_detail_url":"https://comicvine.gamespot.com/daredevil-374-so-little-time-to-save-the-world/4000-44858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44885/","id":44885,"name":"Apparitions","site_detail_url":"https://comicvine.gamespot.com/spawn-71-apparitions/4000-44885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321241/","id":321241,"name":"L'isola delle rose","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-193-lisola-delle-rose/4000-321241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95867/","id":95867,"name":"Capmania","site_detail_url":"https://comicvine.gamespot.com/captain-america-4-capmania/4000-95867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155099/","id":155099,"name":"The Legend of the Black Lion","site_detail_url":"https://comicvine.gamespot.com/concrete-jungle-1-the-legend-of-the-black-lion/4000-155099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357475/","id":357475,"name":"The Legend of the Black Lion","site_detail_url":"https://comicvine.gamespot.com/concrete-jungle-retailer-review-1-the-legend-of-th/4000-357475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423607/","id":423607,"name":"Patriotismo","site_detail_url":"https://comicvine.gamespot.com/capitan-america-3-patriotismo/4000-423607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210402/","id":210402,"name":"Giungla d'Asfalto","site_detail_url":"https://comicvine.gamespot.com/speciale-mister-no-12-giungla-dasfalto/4000-210402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202231/","id":202231,"name":null,"site_detail_url":"https://comicvine.gamespot.com/blade-crescent-city-blues-1/4000-202231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46599/","id":46599,"name":"Hidden Assets","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-hidden-assets/4000-46599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76524/","id":76524,"name":"And Ne'er The Twain Shall Meet","site_detail_url":"https://comicvine.gamespot.com/elektra-16-and-neer-the-twain-shall-meet/4000-76524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118665/","id":118665,"name":"Hearts of Darkness, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-darkness-13-hearts-of-darkness-part-3/4000-118665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290885/","id":290885,"name":"Starman: A Wicked Inclination","site_detail_url":"https://comicvine.gamespot.com/starman-a-wicked-inclination-1-starman-a-wicked-in/4000-290885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121488/","id":121488,"name":"Desperate Moments","site_detail_url":"https://comicvine.gamespot.com/maverick-7-desperate-moments/4000-121488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65719/","id":65719,"name":"The Fall Of The Brotherhood (Part 1)","site_detail_url":"https://comicvine.gamespot.com/x-factor-143-the-fall-of-the-brotherhood-part-1/4000-65719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44811/","id":44811,"name":"A Finer World: Part 2","site_detail_url":"https://comicvine.gamespot.com/stormwatch-5-a-finer-world-part-2/4000-44811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44789/","id":44789,"name":"Search and Seizure","site_detail_url":"https://comicvine.gamespot.com/gen-13-27-search-and-seizure/4000-44789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51975/","id":51975,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-21/4000-51975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44781/","id":44781,"name":"Combined Forces!","site_detail_url":"https://comicvine.gamespot.com/unlimited-access-4-combined-forces/4000-44781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109106/","id":109106,"name":"Silent Night","site_detail_url":"https://comicvine.gamespot.com/man-thing-4-silent-night/4000-109106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83101/","id":83101,"name":"Strange Doings","site_detail_url":"https://comicvine.gamespot.com/generation-x-36-strange-doings/4000-83101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44810/","id":44810,"name":"Blackbirds","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-353-blackbirds/4000-44810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139605/","id":139605,"name":"Little Triggers","site_detail_url":"https://comicvine.gamespot.com/turok-1-little-triggers/4000-139605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44832/","id":44832,"name":"Falling Star","site_detail_url":"https://comicvine.gamespot.com/x-man-36-falling-star/4000-44832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249410/","id":249410,"name":"Thunderbolts: Marvel's Most Wanted","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-marvels-most-wanted-1-thunderbolts-ma/4000-249410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44788/","id":44788,"name":"Weight Of The World","site_detail_url":"https://comicvine.gamespot.com/daredevil-373-weight-of-the-world/4000-44788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44703/","id":44703,"name":"Darkness","site_detail_url":"https://comicvine.gamespot.com/spawn-70-darkness/4000-44703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44765/","id":44765,"name":"Museum Piece","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-museum-piece/4000-44765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152329/","id":152329,"name":"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-black-white-8/4000-152329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171659/","id":171659,"name":"Holy Man, Holy Terror Part Two The Widening Gyre","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-5-holy-man-holy-terror-part-two/4000-171659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44749/","id":44749,"name":"Letdowns","site_detail_url":"https://comicvine.gamespot.com/chase-2-letdowns/4000-44749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98075/","id":98075,"name":"Final Play","site_detail_url":"https://comicvine.gamespot.com/bishop-xse-3-final-play/4000-98075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247295/","id":247295,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grandson-of-origins-of-marvel-comics-1-tpb/4000-247295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44770/","id":44770,"name":"Sun-Walkers!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-7-sun-walkers/4000-44770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118664/","id":118664,"name":"Hearts of Darkness, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-darkness-12-hearts-of-darkness-part-2/4000-118664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44681/","id":44681,"name":"Angst!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-254-angst/4000-44681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195116/","id":195116,"name":"Topolino e la scoperta di New York","site_detail_url":"https://comicvine.gamespot.com/topolino-2201-topolino-e-la-scoperta-di-new-york/4000-195116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139381/","id":139381,"name":"New York Confidential","site_detail_url":"https://comicvine.gamespot.com/gen-13-bootleg-annual-1-new-york-confidential/4000-139381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121486/","id":121486,"name":"Hunters","site_detail_url":"https://comicvine.gamespot.com/maverick-6-hunters/4000-121486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166159/","id":166159,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/wildcats-annual-1-untitled/4000-166159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44713/","id":44713,"name":"A Finer World: Part 1","site_detail_url":"https://comicvine.gamespot.com/stormwatch-4-a-finer-world-part-1/4000-44713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44644/","id":44644,"name":"Baptized in Fire","site_detail_url":"https://comicvine.gamespot.com/chase-1-baptized-in-fire/4000-44644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44695/","id":44695,"name":"Whe worlds colide","site_detail_url":"https://comicvine.gamespot.com/gen-13-26-whe-worlds-colide/4000-44695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44687/","id":44687,"name":"LEGACY... IN BLACK AND WHITE","site_detail_url":"https://comicvine.gamespot.com/what-if-105-legacy-in-black-and-white/4000-44687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44724/","id":44724,"name":"Pryde Goeth Before The Fall","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield-3-pryde-goeth-before-t/4000-44724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51974/","id":51974,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-20/4000-51974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44689/","id":44689,"name":"The Greatest Heroes of All Time!","site_detail_url":"https://comicvine.gamespot.com/unlimited-access-3-the-greatest-heroes-of-all-time/4000-44689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108956/","id":108956,"name":"Somewhere South of Heaven","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-1-somewhere-south-of-heaven/4000-108956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153580/","id":153580,"name":"Party Crashers","site_detail_url":"https://comicvine.gamespot.com/divine-right-the-adventures-of-max-faraday-5-party/4000-153580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98074/","id":98074,"name":"Rook vs Bishop","site_detail_url":"https://comicvine.gamespot.com/bishop-xse-2-rook-vs-bishop/4000-98074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176325/","id":176325,"name":"The Resurrection War - Phase 2: Crescents","site_detail_url":"https://comicvine.gamespot.com/moon-knight-the-resurrection-war-2-the-resurrectio/4000-176325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44694/","id":44694,"name":"Devil And The Demon","site_detail_url":"https://comicvine.gamespot.com/daredevil-372-devil-and-the-demon/4000-44694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321219/","id":321219,"name":"Il caso Majorana","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-191-il-caso-majorana/4000-321219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147585/","id":147585,"name":"Meg 141","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-the-megazine-38-meg-141/4000-147585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118856/","id":118856,"name":"The Two Wrong Rhoades","site_detail_url":"https://comicvine.gamespot.com/maze-agency-3-the-two-wrong-rhoades/4000-118856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44728/","id":44728,"name":"Remembrance Day","site_detail_url":"https://comicvine.gamespot.com/sovereign-seven-31-remembrance-day/4000-44728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44663/","id":44663,"name":"Lightning and Stars, Part One","site_detail_url":"https://comicvine.gamespot.com/starman-39-lightning-and-stars-part-one/4000-44663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133077/","id":133077,"name":"Rod In Hell; Should Old Acquaintance...;Down On The Farm;Action Figures; The Hitching Girl; Sweet Chastity","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-29-rod-in-hell-should-old-acquaint/4000-133077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44674/","id":44674,"name":"Show & Tell","site_detail_url":"https://comicvine.gamespot.com/conspiracy-1-show-amp-tell/4000-44674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50760/","id":50760,"name":"Once an Avenger...","site_detail_url":"https://comicvine.gamespot.com/avengers-1-once-an-avenger/4000-50760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153329/","id":153329,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/adventures-in-the-dc-universe-11-no-exit/4000-153329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44598/","id":44598,"name":"The Hellfire Hunt, Part 3: And He Shall Be Called... Man!","site_detail_url":"https://comicvine.gamespot.com/cable-50-the-hellfire-hunt-part-3-and-he-shall-be-/4000-44598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164830/","id":164830,"name":"Heart of the Beast","site_detail_url":"https://comicvine.gamespot.com/wolverine-annual-97-1-heart-of-the-beast/4000-164830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119468/","id":119468,"name":"The Flowers Of Romance; Mazel Tov, Leo; Spirit Of The Season; Deck The Halls; Tell Me; Piss On Earth; Thanks For Nothing; And We're All Police Men","site_detail_url":"https://comicvine.gamespot.com/vertigo-winter-s-edge-1-the-flowers-of-romance-maz/4000-119468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76523/","id":76523,"name":"A Hand Raised Against Her","site_detail_url":"https://comicvine.gamespot.com/elektra-14-a-hand-raised-against-her/4000-76523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306556/","id":306556,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-emerald-knights-1-tpb/4000-306556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118663/","id":118663,"name":"Hearts of Darkness, Part One","site_detail_url":"https://comicvine.gamespot.com/the-darkness-11-hearts-of-darkness-part-one/4000-118663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358035/","id":358035,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/return-to-the-amalgam-age-of-comics-the-marvel-com/4000-358035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44576/","id":44576,"name":"Heroes' Reward","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-10-heroes-reward/4000-44576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64466/","id":64466,"name":"Savage Rebirth!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-430-savage-rebirth/4000-64466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44626/","id":44626,"name":"Freaky","site_detail_url":"https://comicvine.gamespot.com/spawn-69-freaky/4000-44626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139734/","id":139734,"name":"To Battle The New Warriors!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-29-to-battle-the-new-wa/4000-139734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113366/","id":113366,"name":"The Dark Age","site_detail_url":"https://comicvine.gamespot.com/wildcatsx-men-the-dark-age-1-the-dark-age/4000-113366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160700/","id":160700,"name":"Bad Day At The Bugle","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-venom-agenda-1-bad-day-at-the-bugle/4000-160700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51189/","id":51189,"name":"Not Dead Yet - Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-120-not-dead-yet-part-2-of-4/4000-51189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166770/","id":166770,"name":"Silver Surfer: Parable","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-parable-1-silver-surfer-parable/4000-166770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137288/","id":137288,"name":"Head Trips","site_detail_url":"https://comicvine.gamespot.com/dv8-annual-1-head-trips/4000-137288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178809/","id":178809,"name":"What Counts In The End","site_detail_url":"https://comicvine.gamespot.com/venom-the-finale-3-what-counts-in-the-end/4000-178809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44616/","id":44616,"name":"The Mission","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield-2-the-mission/4000-44616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65135/","id":65135,"name":"Hours and Minutes","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-351-hours-and-minutes/4000-65135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44579/","id":44579,"name":"Let's Do the Time Warp Again!","site_detail_url":"https://comicvine.gamespot.com/unlimited-access-2-lets-do-the-time-warp-again/4000-44579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129886/","id":129886,"name":"Dreams Of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/x-factor-141-dreams-of-tomorrow/4000-129886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275184/","id":275184,"name":"Amerika","site_detail_url":"https://comicvine.gamespot.com/amerika-1-amerika/4000-275184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44585/","id":44585,"name":"Fallout","site_detail_url":"https://comicvine.gamespot.com/daredevil-371-fallout/4000-44585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44560/","id":44560,"name":"Intersection","site_detail_url":"https://comicvine.gamespot.com/spawn-68-intersection/4000-44560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44600/","id":44600,"name":"Chasing Clay","site_detail_url":"https://comicvine.gamespot.com/batman-550-chasing-clay/4000-44600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171658/","id":171658,"name":"Holy Man, Holy Terror Part One","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-4-holy-man-holy-terror-part-one/4000-171658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381536/","id":381536,"name":"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-frenzy-1/4000-381536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384469/","id":384469,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bring-back-the-bad-guys-1-tpb/4000-384469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443750/","id":443750,"name":"De Vlucht Van Oscar","site_detail_url":"https://comicvine.gamespot.com/get-ready-2-de-vlucht-van-oscar/4000-443750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291706/","id":291706,"name":"Spider-Man: Abgründe","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-8-spider-man-abgrunde/4000-291706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367205/","id":367205,"name":"2 of 2","site_detail_url":"https://comicvine.gamespot.com/us-tio-sam-2-2-of-2/4000-367205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287895/","id":287895,"name":"Sandman Mystery Theatre: La Tarántula 1 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-37-sandman-mystery-theatre-la-ta/4000-287895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287900/","id":287900,"name":"Sandman Mystery Theatre: La Tarántula 2 de 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-42-sandman-mystery-theatre-la-ta/4000-287900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287897/","id":287897,"name":"Sandman Midnight Theatre","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-39-sandman-midnight-theatre/4000-287897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44392/","id":44392,"name":"The Judgment","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-the-return-1-the-judgment/4000-44392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44409/","id":44409,"name":"Alone in His Head","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-17-alone-in-his-head/4000-44409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44455/","id":44455,"name":"Fourth & Goal","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-the-return-4-fourth-goal/4000-44455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152730/","id":152730,"name":"Kingdom Come","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-1-kingdom-come/4000-152730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76522/","id":76522,"name":"Seppuku","site_detail_url":"https://comicvine.gamespot.com/elektra-13-seppuku/4000-76522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118989/","id":118989,"name":"Vendetta","site_detail_url":"https://comicvine.gamespot.com/tomb-raider-witchblade-special-1-vendetta/4000-118989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118661/","id":118661,"name":"Family Ties, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-darkness-10-family-ties-part-3/4000-118661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468802/","id":468802,"name":"Father's Day is Every Day","site_detail_url":"https://comicvine.gamespot.com/spider-man-fathers-day-is-every-day-1-fathers-day-/4000-468802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44406/","id":44406,"name":"Life Lessons","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-9-life-lessons/4000-44406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109662/","id":109662,"name":"Doubleback","site_detail_url":"https://comicvine.gamespot.com/green-arrow-127-doubleback/4000-109662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-602363/","id":602363,"name":"Dylan \"Cagliostro\"","site_detail_url":"https://comicvine.gamespot.com/serie-magasinet-199701-dylan-cagliostro/4000-602363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80802/","id":80802,"name":"Last Legs","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-459-last-legs/4000-80802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44407/","id":44407,"name":"The Unknown Soldier","site_detail_url":"https://comicvine.gamespot.com/what-if-103-the-unknown-soldier/4000-44407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44426/","id":44426,"name":"With Great Power Comes Great Coincidence","site_detail_url":"https://comicvine.gamespot.com/deadpool-11-with-great-power-comes-great-coinciden/4000-44426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129885/","id":129885,"name":"Going Home","site_detail_url":"https://comicvine.gamespot.com/x-factor-140-going-home/4000-129885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96294/","id":96294,"name":"Blind Eyes","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-134-blind-eyes/4000-96294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51784/","id":51784,"name":"N. D. E. - Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/x-files-36-n-d-e-part-2-of-2/4000-51784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105741/","id":105741,"name":"Sinister Bloodlines","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-age-of-apocalypse-2-sinister-bloodl/4000-105741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51188/","id":51188,"name":"Not Dead Yet - Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-119-not-dead-yet-part-1-of-4/4000-51188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120434/","id":120434,"name":"Saving Time","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-doom-patrol-1-saving-time/4000-120434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44418/","id":44418,"name":"...Where Angels Fear to Tread...","site_detail_url":"https://comicvine.gamespot.com/gen-13-25-where-angels-fear-to-tread/4000-44418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178808/","id":178808,"name":"Slaughter on Fifth Avenue","site_detail_url":"https://comicvine.gamespot.com/venom-the-finale-2-slaughter-on-fifth-avenue/4000-178808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109910/","id":109910,"name":"Trial & Errors","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-350-trial-errors/4000-109910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44438/","id":44438,"name":"The Calling","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield-1-the-calling/4000-44438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121484/","id":121484,"name":"Found and Lost","site_detail_url":"https://comicvine.gamespot.com/maverick-4-found-and-lost/4000-121484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51973/","id":51973,"name":"Family Ties, Part 4","site_detail_url":"https://comicvine.gamespot.com/witchblade-19-family-ties-part-4/4000-51973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44395/","id":44395,"name":"Suspended Sentence","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-4-suspended-sentence/4000-44395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64465/","id":64465,"name":"The Price!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-429-the-price/4000-64465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44410/","id":44410,"name":"No Time Like the Present!","site_detail_url":"https://comicvine.gamespot.com/unlimited-access-1-no-time-like-the-present/4000-44410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153579/","id":153579,"name":"The Love Connection","site_detail_url":"https://comicvine.gamespot.com/divine-right-the-adventures-of-max-faraday-4-the-l/4000-153579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44415/","id":44415,"name":"Immortal Enemies","site_detail_url":"https://comicvine.gamespot.com/strangers-in-paradise-11-immortal-enemies/4000-44415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280313/","id":280313,"name":"Dieci enigmi per dieci città","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-189-dieci-enigmi-per-dieci-citta/4000-280313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172097/","id":172097,"name":"The Movie Adaptation","site_detail_url":"https://comicvine.gamespot.com/spawn-the-movie-1-the-movie-adaptation/4000-172097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263394/","id":263394,"name":"I nomadi dell'infinito (Robinson Hart) & Figli di un mondo perduto","site_detail_url":"https://comicvine.gamespot.com/zona-x-30-i-nomadi-dellinfinito-robinson-hart-figl/4000-263394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110457/","id":110457,"name":"Down Among The Dead Men...","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-91-down-among-the-dead-men/4000-110457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119513/","id":119513,"name":"Round 3","site_detail_url":"https://comicvine.gamespot.com/predator-versus-judge-dredd-3-round-3/4000-119513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176782/","id":176782,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-angel-1/4000-176782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44362/","id":44362,"name":"The Past is Prologue","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-11-the-past-is-prologue/4000-44362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131200/","id":131200,"name":"","site_detail_url":"https://comicvine.gamespot.com/awesome-holiday-special-1/4000-131200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66212/","id":66212,"name":"The Hellfire Hunt Part 1-Dirty Secrets","site_detail_url":"https://comicvine.gamespot.com/cable-48-the-hellfire-hunt-part-1-dirty-secrets/4000-66212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44342/","id":44342,"name":"Hate Crimes Part 2: Fanning the Fire","site_detail_url":"https://comicvine.gamespot.com/green-lantern-92-hate-crimes-part-2-fanning-the-fi/4000-44342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51972/","id":51972,"name":"Family Ties Part 1","site_detail_url":"https://comicvine.gamespot.com/witchblade-18-family-ties-part-1/4000-51972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76521/","id":76521,"name":"Love & Death in New York","site_detail_url":"https://comicvine.gamespot.com/elektra-12-love-death-in-new-york/4000-76521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66812/","id":66812,"name":"All Colors of Hate","site_detail_url":"https://comicvine.gamespot.com/green-arrow-126-all-colors-of-hate/4000-66812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118660/","id":118660,"name":"Family Ties, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-darkness-9-family-ties-part-2/4000-118660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140329/","id":140329,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-archives-1-volume-1/4000-140329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65717/","id":65717,"name":"The Enemy Within","site_detail_url":"https://comicvine.gamespot.com/x-factor-139-the-enemy-within/4000-65717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51783/","id":51783,"name":"N. D. E. - Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/x-files-35-n-d-e-part-1-of-2/4000-51783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103740/","id":103740,"name":"Paradise Lost","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-44-paradise-lost/4000-103740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96293/","id":96293,"name":"The Messiah Syndrome","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-133-the-messiah-syndrome/4000-96293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44333/","id":44333,"name":"Strange Weather, Two Of Three: Red Sky In The Morning","site_detail_url":"https://comicvine.gamespot.com/stormwatch-2-strange-weather-two-of-three-red-sky-/4000-44333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157075/","id":157075,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/gen-13-24-judgment-day/4000-157075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154386/","id":154386,"name":"A Prayer For The Dying","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-7-a-prayer-for-the-dying/4000-154386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178807/","id":178807,"name":"The Spider Strategem","site_detail_url":"https://comicvine.gamespot.com/venom-the-finale-1-the-spider-strategem/4000-178807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65769/","id":65769,"name":"Last Exit","site_detail_url":"https://comicvine.gamespot.com/x-men-69-last-exit/4000-65769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44332/","id":44332,"name":"The Crawl","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-349-the-crawl/4000-44332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44299/","id":44299,"name":"Truth or Death","site_detail_url":"https://comicvine.gamespot.com/new-mutants-truth-or-death-1-truth-or-death/4000-44299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153578/","id":153578,"name":"Enemies Of The State","site_detail_url":"https://comicvine.gamespot.com/divine-right-the-adventures-of-max-faraday-3-enemi/4000-153578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272254/","id":272254,"name":"Et delivre-nous du mal","site_detail_url":"https://comicvine.gamespot.com/soda-9-et-delivre-nous-du-mal/4000-272254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44305/","id":44305,"name":"The Fallen (Part One)","site_detail_url":"https://comicvine.gamespot.com/star-trek-early-voyages-10-the-fallen-part-one/4000-44305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275683/","id":275683,"name":"Le cœur de Telenko","site_detail_url":"https://comicvine.gamespot.com/berceuse-assassine-1-le-cur-de-telenko/4000-275683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44291/","id":44291,"name":"Homeland","site_detail_url":"https://comicvine.gamespot.com/spawn-67-homeland/4000-44291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66505/","id":66505,"name":"Temptation","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-90-temptation/4000-66505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44295/","id":44295,"name":"Crash and Burn","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-458-crash-and-burn/4000-44295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171657/","id":171657,"name":"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-3/4000-171657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118659/","id":118659,"name":"Issue 8","site_detail_url":"https://comicvine.gamespot.com/the-darkness-8-issue-8/4000-118659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66811/","id":66811,"name":"The Fiery Furnace","site_detail_url":"https://comicvine.gamespot.com/green-arrow-125-the-fiery-furnace/4000-66811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44187/","id":44187,"name":"Controlled!","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-4-controlled/4000-44187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76520/","id":76520,"name":"The Good, The Bad, and The Somewhat Confused","site_detail_url":"https://comicvine.gamespot.com/elektra-11-the-good-the-bad-and-the-somewhat-confu/4000-76520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44199/","id":44199,"name":"The Revolt Within","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-7-the-revolt-within/4000-44199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44238/","id":44238,"name":"Sensitive Criminals Pt. 2: Mad Dogs and Englishmen","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-volume-two-9-sensitive-criminals-pt/4000-44238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65716/","id":65716,"name":"Fear Walks Amongst Us","site_detail_url":"https://comicvine.gamespot.com/x-factor-138-fear-walks-amongst-us/4000-65716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127558/","id":127558,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-revelations-1/4000-127558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103739/","id":103739,"name":"The High Road To China","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-43-the-high-road-to-c/4000-103739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96292/","id":96292,"name":"The Messiah Syndrome","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-132-the-messiah-syndrome/4000-96292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44227/","id":44227,"name":"Strange Weather, One Of Three: Hard Rain","site_detail_url":"https://comicvine.gamespot.com/stormwatch-1-strange-weather-one-of-three-hard-rai/4000-44227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118893/","id":118893,"name":"Life in the Big City","site_detail_url":"https://comicvine.gamespot.com/gen-13-23-life-in-the-big-city/4000-118893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77814/","id":77814,"name":"Doomsday!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-12-doomsday/4000-77814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65832/","id":65832,"name":"Let It Be","site_detail_url":"https://comicvine.gamespot.com/captain-america-12-let-it-be/4000-65832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65768/","id":65768,"name":"Heart of the Matter","site_detail_url":"https://comicvine.gamespot.com/x-men-68-heart-of-the-matter/4000-65768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135795/","id":135795,"name":"The Dark Side!","site_detail_url":"https://comicvine.gamespot.com/psylocke-archangel-crimson-dawn-3-the-dark-side/4000-135795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44226/","id":44226,"name":"Because, I Said So","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-348-because-i-said-so/4000-44226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66504/","id":66504,"name":"Doghead and Spiked Tails","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-89-doghead-and-spiked-tails/4000-66504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153577/","id":153577,"name":"Disco Inferno","site_detail_url":"https://comicvine.gamespot.com/divine-right-the-adventures-of-max-faraday-2-disco/4000-153577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175336/","id":175336,"name":"Issue 1","site_detail_url":"https://comicvine.gamespot.com/chi-chian-1-issue-1/4000-175336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280311/","id":280311,"name":"Il sarcofago di pietra","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-187-il-sarcofago-di-pietra/4000-280311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44185/","id":44185,"name":"Demons","site_detail_url":"https://comicvine.gamespot.com/spawn-66-demons/4000-44185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196305/","id":196305,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-vision-22/4000-196305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44193/","id":44193,"name":"Citizen Osborn!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-250-citizen-osborn/4000-44193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153100/","id":153100,"name":"Let Slip the Dogs of War!","site_detail_url":"https://comicvine.gamespot.com/hercules-heart-of-chaos-3-let-slip-the-dogs-of-war/4000-153100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124021/","id":124021,"name":"In Rashomon","site_detail_url":"https://comicvine.gamespot.com/shivampirella-1-in-rashomon/4000-124021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180006/","id":180006,"name":"Venom & Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/venom-sign-of-the-boss-2-venom-ghost-rider/4000-180006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702521/","id":702521,"name":" ","site_detail_url":"https://comicvine.gamespot.com/dr-katz-hey-ive-got-my-own-problems-1/4000-702521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76519/","id":76519,"name":"Flowers & Flamethrowers","site_detail_url":"https://comicvine.gamespot.com/elektra-10-flowers-flamethrowers/4000-76519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44094/","id":44094,"name":"Unstable Elements!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-6-unstable-elements/4000-44094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44060/","id":44060,"name":"Poor Little Rich Girl (Sensitive Criminals Part One)","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-volume-two-8-poor-little-rich-girl-/4000-44060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66810/","id":66810,"name":"Stepfathers and Sons","site_detail_url":"https://comicvine.gamespot.com/green-arrow-124-stepfathers-and-sons/4000-66810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103738/","id":103738,"name":"Endangered Species, Part. 2 : Brothers In Arms","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-42-endangered-species/4000-103738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96291/","id":96291,"name":"Farewell To The Dream","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-131-farewell-to-the-dream/4000-96291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118892/","id":118892,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/gen-13-22-homecoming/4000-118892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154384/","id":154384,"name":"41 Maniacs!","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-5-41-maniacs/4000-154384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77813/","id":77813,"name":"Hark The Herald...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-11-hark-the-herald/4000-77813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65767/","id":65767,"name":"The End of Days","site_detail_url":"https://comicvine.gamespot.com/x-men-67-the-end-of-days/4000-65767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135794/","id":135794,"name":"When the Devil Comes a Calling","site_detail_url":"https://comicvine.gamespot.com/psylocke-archangel-crimson-dawn-2-when-the-devil-c/4000-135794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64462/","id":64462,"name":"Only the Evil Return!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-426-only-the-evil-return/4000-64462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44121/","id":44121,"name":"Big Night","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-347-big-night/4000-44121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51971/","id":51971,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-17/4000-51971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157734/","id":157734,"name":"Magical Mystery Tour","site_detail_url":"https://comicvine.gamespot.com/iron-man-11-magical-mystery-tour/4000-157734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44106/","id":44106,"name":"Cruel & Unusual Punishments","site_detail_url":"https://comicvine.gamespot.com/daredevil-367-cruel-unusual-punishments/4000-44106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44078/","id":44078,"name":"The Past","site_detail_url":"https://comicvine.gamespot.com/spawn-65-the-past/4000-44078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171545/","id":171545,"name":"The Hammer and the Holocaust, Part Two: \"Still Screaming\"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-2-the-hammer-and-the-holocaust-/4000-171545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125402/","id":125402,"name":"God and Country","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-glory-1-god-and-country/4000-125402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99173/","id":99173,"name":"Codename: Priest","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-12-codename-priest/4000-99173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44038/","id":44038,"name":"Ice","site_detail_url":"https://comicvine.gamespot.com/the-dreaming-16-ice/4000-44038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44088/","id":44088,"name":"Into the Light","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-249-into-the-light/4000-44088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153575/","id":153575,"name":"Blaze Of Glory","site_detail_url":"https://comicvine.gamespot.com/divine-right-the-adventures-of-max-faraday-1-blaze/4000-153575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180005/","id":180005,"name":"Government Agent Venom","site_detail_url":"https://comicvine.gamespot.com/venom-sign-of-the-boss-1-government-agent-venom/4000-180005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44073/","id":44073,"name":"","site_detail_url":"https://comicvine.gamespot.com/pitt-15/4000-44073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118658/","id":118658,"name":"Playing God","site_detail_url":"https://comicvine.gamespot.com/the-darkness-7-playing-god/4000-118658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76518/","id":76518,"name":"Four Strong Winds","site_detail_url":"https://comicvine.gamespot.com/elektra-9-four-strong-winds/4000-76518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43981/","id":43981,"name":"Growing Pains","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-5-growing-pains/4000-43981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43973/","id":43973,"name":"Waiting to X-Hale","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-455-waiting-to-x-hale/4000-43973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43957/","id":43957,"name":"Rumors Of War","site_detail_url":"https://comicvine.gamespot.com/preacher-28-rumors-of-war/4000-43957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96290/","id":96290,"name":"End Of A World","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-130-end-of-a-world/4000-96290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65766/","id":65766,"name":"Start Spreadin' the News...","site_detail_url":"https://comicvine.gamespot.com/x-men-66-start-spreadin-the-news/4000-65766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44006/","id":44006,"name":"The Story of the Year!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-346-the-story-of-the-year/4000-44006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123844/","id":123844,"name":"Before the Break of Dawn","site_detail_url":"https://comicvine.gamespot.com/psylocke-archangel-crimson-dawn-1-before-the-break/4000-123844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43970/","id":43970,"name":"Prison Without Walls","site_detail_url":"https://comicvine.gamespot.com/daredevil-366-prison-without-walls/4000-43970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43968/","id":43968,"name":"Checkmate","site_detail_url":"https://comicvine.gamespot.com/spawn-64-checkmate/4000-43968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174185/","id":174185,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/preacher-proud-americans-1-volume-3/4000-174185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321724/","id":321724,"name":"I sentieri del destino","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-185-i-sentieri-del-destino/4000-321724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425796/","id":425796,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-first-strikes-1-tpb/4000-425796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43977/","id":43977,"name":"From the Shadows","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-248-from-the-shadows/4000-43977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153097/","id":153097,"name":"Even an Immortal Can Die!","site_detail_url":"https://comicvine.gamespot.com/hercules-heart-of-chaos-1-even-an-immortal-can-die/4000-153097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44003/","id":44003,"name":"Imaginary Stories","site_detail_url":"https://comicvine.gamespot.com/jla-8-imaginary-stories/4000-44003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44001/","id":44001,"name":"","site_detail_url":"https://comicvine.gamespot.com/turok-timewalker-seventh-sabbath-1/4000-44001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116598/","id":116598,"name":"In Service To Nothing","site_detail_url":"https://comicvine.gamespot.com/dv8-10-in-service-to-nothing/4000-116598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198361/","id":198361,"name":"Love is Blind","site_detail_url":"https://comicvine.gamespot.com/elektra-1-love-is-blind/4000-198361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43868/","id":43868,"name":"End of an Era","site_detail_url":"https://comicvine.gamespot.com/the-darkness-6-end-of-an-era/4000-43868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153063/","id":153063,"name":"Distant Rumblings!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-1-distant-rumblings/4000-153063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356514/","id":356514,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cyberfrog-vs-creed-1/4000-356514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43872/","id":43872,"name":"A Time To Say Farewell","site_detail_url":"https://comicvine.gamespot.com/daredevil--1-a-time-to-say-farewell/4000-43872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43873/","id":43873,"name":"The Beginning of a Beautiful Friendship!","site_detail_url":"https://comicvine.gamespot.com/generation-x--1-the-beginning-of-a-beautiful-frien/4000-43873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43856/","id":43856,"name":"Gunchicks","site_detail_url":"https://comicvine.gamespot.com/preacher-27-gunchicks/4000-43856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104140/","id":104140,"name":"Behold, A Pale Horseman","site_detail_url":"https://comicvine.gamespot.com/bloodshot-1-behold-a-pale-horseman/4000-104140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103736/","id":103736,"name":"Survival Of The Species, Part. 4 : Fight Or Flight","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-40-survival-of-the-sp/4000-103736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51969/","id":51969,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-15/4000-51969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43870/","id":43870,"name":"Identity","site_detail_url":"https://comicvine.gamespot.com/spawn-63-identity/4000-43870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136887/","id":136887,"name":"Krobaa, The Abyss That Walked","site_detail_url":"https://comicvine.gamespot.com/venom-seed-of-darkness--1-krobaa-the-abyss-that-wa/4000-136887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321723/","id":321723,"name":"Il tesoro di Peter Stuyvesant","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-184-il-tesoro-di-peter-stuyvesant/4000-321723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211643/","id":211643,"name":"The Death of Justice Girl","site_detail_url":"https://comicvine.gamespot.com/maze-agency-1-the-death-of-justice-girl/4000-211643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362955/","id":362955,"name":"Spider-Boy Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-dc-crossover-2-spider-boy-team-up/4000-362955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120895/","id":120895,"name":"Royal Blood Act 3","site_detail_url":"https://comicvine.gamespot.com/cyber-force-34-royal-blood-act-3/4000-120895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205973/","id":205973,"name":"New York City Blues","site_detail_url":"https://comicvine.gamespot.com/mister-no-266-new-york-city-blues/4000-205973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43826/","id":43826,"name":"So This Lady Walks into an Espresso Bar...","site_detail_url":"https://comicvine.gamespot.com/adventures-in-the-dc-universe-4-so-this-lady-walks/4000-43826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43918/","id":43918,"name":"Lust for Life part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/2020-visions-3-lust-for-life-part-3-of-3/4000-43918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101785/","id":101785,"name":"Where Have All The Heroes Gone?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man--1-where-have-all-the-heroe/4000-101785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116398/","id":116398,"name":"Act 3 (of 3)","site_detail_url":"https://comicvine.gamespot.com/chastity-theatre-of-pain-3-act-3-of-3/4000-116398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159303/","id":159303,"name":"","site_detail_url":"https://comicvine.gamespot.com/grifter-12/4000-159303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157051/","id":157051,"name":"Paranoid Concpiracies","site_detail_url":"https://comicvine.gamespot.com/dv8-9-paranoid-concpiracies/4000-157051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157856/","id":157856,"name":"Whomsoever fights monsters...","site_detail_url":"https://comicvine.gamespot.com/daredevildeadpool-annual-97-1-whomsoever-fights-mo/4000-157856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76517/","id":76517,"name":"Child of Darkness","site_detail_url":"https://comicvine.gamespot.com/elektra-8-child-of-darkness/4000-76517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305566/","id":305566,"name":"It's Always Darkest...","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-spider-man-97-1-its-always-darkest/4000-305566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43766/","id":43766,"name":"Apocalypse Shortly","site_detail_url":"https://comicvine.gamespot.com/the-darkness-5-apocalypse-shortly/4000-43766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43762/","id":43762,"name":"The Big Wet Kiss Off","site_detail_url":"https://comicvine.gamespot.com/painkiller-jane-1-the-big-wet-kiss-off/4000-43762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139740/","id":139740,"name":"The Truth is Out There!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-22-the-truth-is-out-the/4000-139740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43751/","id":43751,"name":"To the streets of Manhattan I wandered away","site_detail_url":"https://comicvine.gamespot.com/preacher-26-to-the-streets-of-manhattan-i-wandered/4000-43751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103735/","id":103735,"name":"Survival Of The Species, Part. 3 : Predator & Prey","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-39-survival-of-the-sp/4000-103735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96289/","id":96289,"name":"Of Time And Truth","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-129-of-time-and-truth/4000-96289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43800/","id":43800,"name":"Change Or Die: Part Two Of Three","site_detail_url":"https://comicvine.gamespot.com/stormwatch-49-change-or-die-part-two-of-three/4000-43800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157073/","id":157073,"name":"...Where No Gen Has Gone Before!","site_detail_url":"https://comicvine.gamespot.com/gen-13-20-where-no-gen-has-gone-before/4000-157073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64460/","id":64460,"name":"Then Came...Elektra","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-424-then-cameelektra/4000-64460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51182/","id":51182,"name":"For the Snark Was a Roojum, You See!","site_detail_url":"https://comicvine.gamespot.com/wolverine-114-for-the-snark-was-a-roojum-you-see/4000-51182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43785/","id":43785,"name":"Second Contact","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-15-second-contact/4000-43785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65765/","id":65765,"name":"First Blood - Operation: Zero Tolerance Prologue","site_detail_url":"https://comicvine.gamespot.com/x-men-65-first-blood-operation-zero-tolerance-prol/4000-65765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283282/","id":283282,"name":"Il cibo degli Dei","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-14-il-cibo-degli-dei/4000-283282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43771/","id":43771,"name":"A Question of Trust","site_detail_url":"https://comicvine.gamespot.com/daredevil-365-a-question-of-trust/4000-43771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43768/","id":43768,"name":"Return","site_detail_url":"https://comicvine.gamespot.com/spawn-62-return/4000-43768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321722/","id":321722,"name":"Il mistero della Grande Mela","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-183-il-mistero-della-grande-mela/4000-321722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322000/","id":322000,"name":"","site_detail_url":"https://comicvine.gamespot.com/silhouette-special-1/4000-322000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171544/","id":171544,"name":"The Hammer and the Holocaust, Part One: \"The Anvil\"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-1-the-hammer-and-the-holocaust-/4000-171544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135038/","id":135038,"name":"1st Man","site_detail_url":"https://comicvine.gamespot.com/1st-man-1-1st-man/4000-135038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43776/","id":43776,"name":"Mad Jack","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-247-mad-jack/4000-43776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43748/","id":43748,"name":"Scorched","site_detail_url":"https://comicvine.gamespot.com/impulse-26-scorched/4000-43748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43777/","id":43777,"name":"Old Scores","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up-7-old-scores/4000-43777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111181/","id":111181,"name":"Too Many Heroes -- Too Little Time","site_detail_url":"https://comicvine.gamespot.com/spider-boy-team-up-1-too-many-heroes-too-little-ti/4000-111181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111183/","id":111183,"name":"","site_detail_url":"https://comicvine.gamespot.com/challengers-of-the-fantastic-1/4000-111183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152323/","id":152323,"name":"Nemesis; Soul Possession","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-black-white-3-nemesis-soul-possession/4000-152323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111142/","id":111142,"name":"The Unextinguishable Flame","site_detail_url":"https://comicvine.gamespot.com/jlx-unleashed-1-the-unextinguishable-flame/4000-111142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43781/","id":43781,"name":"Deceiving Appearances","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-2-deceiving-appearances/4000-43781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43675/","id":43675,"name":"Brought to Light","site_detail_url":"https://comicvine.gamespot.com/the-darkness-4-brought-to-light/4000-43675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152892/","id":152892,"name":"","site_detail_url":"https://comicvine.gamespot.com/grifter-11/4000-152892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46755/","id":46755,"name":"Shades","site_detail_url":"https://comicvine.gamespot.com/dv8-7-shades/4000-46755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51702/","id":51702,"name":"Part 4: Sirens","site_detail_url":"https://comicvine.gamespot.com/code-of-honor-4-part-4-sirens/4000-51702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43682/","id":43682,"name":"Out of the Night","site_detail_url":"https://comicvine.gamespot.com/elektra-7-out-of-the-night/4000-43682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43696/","id":43696,"name":"Blood Brothers","site_detail_url":"https://comicvine.gamespot.com/x-man-27-blood-brothers/4000-43696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139741/","id":139741,"name":"Opening Statements","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-21-opening-statements/4000-139741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43665/","id":43665,"name":"Cry Blood, Cry Erin","site_detail_url":"https://comicvine.gamespot.com/preacher-25-cry-blood-cry-erin/4000-43665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134841/","id":134841,"name":"Roomie","site_detail_url":"https://comicvine.gamespot.com/green-lantern-86-roomie/4000-134841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96288/","id":96288,"name":"Beneath The Silver Skin","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-128-beneath-the-silver-skin/4000-96288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64459/","id":64459,"name":"Choices","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-423-choices/4000-64459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103734/","id":103734,"name":"Survival Of The Species, Part. 2 : Hits and Mythos","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-38-survival-of-the-sp/4000-103734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134699/","id":134699,"name":"Bad Karma","site_detail_url":"https://comicvine.gamespot.com/the-beast-1-bad-karma/4000-134699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51181/","id":51181,"name":"The Wind From The East","site_detail_url":"https://comicvine.gamespot.com/wolverine-113-the-wind-from-the-east/4000-51181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43717/","id":43717,"name":"Lust for Life part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/2020-visions-1-lust-for-life-part-1-of-3/4000-43717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51968/","id":51968,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-14/4000-51968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66500/","id":66500,"name":"Ashes of My Soul","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-85-ashes-of-my-soul/4000-66500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158415/","id":158415,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-3/4000-158415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43688/","id":43688,"name":"The Legion of Losers!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-246-the-legion-of-loser/4000-43688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43678/","id":43678,"name":"Sanctuary","site_detail_url":"https://comicvine.gamespot.com/spawn-61-sanctuary/4000-43678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321721/","id":321721,"name":"Palenque!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-182-palenque/4000-321721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43719/","id":43719,"name":"Snapshot","site_detail_url":"https://comicvine.gamespot.com/sovereign-seven-22-snapshot/4000-43719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121631/","id":121631,"name":"Trial And Error!","site_detail_url":"https://comicvine.gamespot.com/venom-on-trial-3-trial-and-error/4000-121631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43591/","id":43591,"name":"Justice... Like Lightning!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-1-justice-like-lightning/4000-43591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43594/","id":43594,"name":"Down to Earth","site_detail_url":"https://comicvine.gamespot.com/x-man-26-down-to-earth/4000-43594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51701/","id":51701,"name":"Part 3: The Street","site_detail_url":"https://comicvine.gamespot.com/code-of-honor-3-part-3-the-street/4000-51701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43576/","id":43576,"name":"Fury","site_detail_url":"https://comicvine.gamespot.com/elektra-6-fury/4000-43576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43584/","id":43584,"name":"Secrets","site_detail_url":"https://comicvine.gamespot.com/spider-man-hobgoblin-lives-3-secrets/4000-43584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139742/","id":139742,"name":"The Return of the Green Goblin","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-20-the-return-of-the-gr/4000-139742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107399/","id":107399,"name":"Double Cross","site_detail_url":"https://comicvine.gamespot.com/punisher-18-double-cross/4000-107399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139743/","id":139743,"name":"Crossfire, Part One","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-19-crossfire-part-one/4000-139743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47300/","id":47300,"name":"Survival Of The Species, Part. 1 : Hunting Season!","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-37-survival-of-the-sp/4000-47300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155515/","id":155515,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-2-volume-2/4000-155515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107972/","id":107972,"name":"","site_detail_url":"https://comicvine.gamespot.com/backlash-31/4000-107972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96287/","id":96287,"name":"Puppets","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-127-puppets/4000-96287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43607/","id":43607,"name":"Tolerance","site_detail_url":"https://comicvine.gamespot.com/cable-42-tolerance/4000-43607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64539/","id":64539,"name":"Lower East Side Story","site_detail_url":"https://comicvine.gamespot.com/x-force-65-lower-east-side-story/4000-64539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51180/","id":51180,"name":"The Light at the End of the Day","site_detail_url":"https://comicvine.gamespot.com/wolverine-112-the-light-at-the-end-of-the-day/4000-51180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51967/","id":51967,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-13/4000-51967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66499/","id":66499,"name":"Loss of Blood","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-84-loss-of-blood/4000-66499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200815/","id":200815,"name":"Aces & Eights","site_detail_url":"https://comicvine.gamespot.com/spider-man-dead-mans-hand-1-aces-eights/4000-200815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77808/","id":77808,"name":"Retribution","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-6-retribution/4000-77808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161208/","id":161208,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-the-unexplained-1/4000-161208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43549/","id":43549,"name":"Now You See 'Em","site_detail_url":"https://comicvine.gamespot.com/adventures-in-the-dc-universe-1-now-you-see-em/4000-43549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73760/","id":73760,"name":"Road Trip: Second Stop -- Warriors","site_detail_url":"https://comicvine.gamespot.com/superboy-and-the-ravers-8-road-trip-second-stop-wa/4000-73760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43575/","id":43575,"name":"The City That Never Sleeps","site_detail_url":"https://comicvine.gamespot.com/daredevil-363-the-city-that-never-sleeps/4000-43575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43573/","id":43573,"name":"Dwarfed","site_detail_url":"https://comicvine.gamespot.com/spawn-60-dwarfed/4000-43573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321717/","id":321717,"name":"I cavalieri del tempio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-181-i-cavalieri-del-tempio/4000-321717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43619/","id":43619,"name":"Casey the Spy!","site_detail_url":"https://comicvine.gamespot.com/sovereign-seven-21-casey-the-spy/4000-43619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43583/","id":43583,"name":"Kravinov's Revenge!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-245-kravinovs-revenge/4000-43583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148267/","id":148267,"name":"\"Brooklyn Birds\"","site_detail_url":"https://comicvine.gamespot.com/animaniacs-24-brooklyn-birds/4000-148267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121614/","id":121614,"name":"Disorder In The Court!","site_detail_url":"https://comicvine.gamespot.com/venom-on-trial-2-disorder-in-the-court/4000-121614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124548/","id":124548,"name":"Act 1 (of 3)","site_detail_url":"https://comicvine.gamespot.com/chastity-theatre-of-pain-1-act-1-of-3/4000-124548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46754/","id":46754,"name":"Tonight","site_detail_url":"https://comicvine.gamespot.com/dv8-6-tonight/4000-46754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51700/","id":51700,"name":"Part 2: Verdicts","site_detail_url":"https://comicvine.gamespot.com/code-of-honor-2-part-2-verdicts/4000-51700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43480/","id":43480,"name":"Fourteen Days","site_detail_url":"https://comicvine.gamespot.com/elektra-5-fourteen-days/4000-43480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107398/","id":107398,"name":"Dead Man Walking","site_detail_url":"https://comicvine.gamespot.com/punisher-17-dead-man-walking/4000-107398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43474/","id":43474,"name":"Almost an Angel","site_detail_url":"https://comicvine.gamespot.com/the-darkness-3-almost-an-angel/4000-43474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99167/","id":99167,"name":"Blood And Rain","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-6-blood-and-rain/4000-99167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599690/","id":599690,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampire-girls-new-york-1970-1/4000-599690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139744/","id":139744,"name":"Lives Unlived","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-18-lives-unlived/4000-139744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43467/","id":43467,"name":"Super Freaks and Backstabbers","site_detail_url":"https://comicvine.gamespot.com/starman-28-super-freaks-and-backstabbers/4000-43467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106419/","id":106419,"name":"A Mad Dog Awakens!","site_detail_url":"https://comicvine.gamespot.com/imperial-guard-3-a-mad-dog-awakens/4000-106419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43517/","id":43517,"name":"Retribution, part 2","site_detail_url":"https://comicvine.gamespot.com/green-lantern-84-retribution-part-2/4000-43517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43454/","id":43454,"name":"The Spectre of Vengeance, Part 1: Gotham Welcome","site_detail_url":"https://comicvine.gamespot.com/batman-540-the-spectre-of-vengeance-part-1-gotham-/4000-43454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47298/","id":47298,"name":"Taking Leave (Part 1)","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-35-taking-leave-part-/4000-47298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47299/","id":47299,"name":"Taking Leave (Part 2)","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-36-taking-leave-part-/4000-47299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96286/","id":96286,"name":"The Barrier","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-126-the-barrier/4000-96286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43511/","id":43511,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-46/4000-43511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51179/","id":51179,"name":"Restoration","site_detail_url":"https://comicvine.gamespot.com/wolverine-111-restoration/4000-51179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51966/","id":51966,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-12/4000-51966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66498/","id":66498,"name":"House of Burning Souls","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-83-house-of-burning-souls/4000-66498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107844/","id":107844,"name":"Devil's Reign - Chapter Five","site_detail_url":"https://comicvine.gamespot.com/wolverinewitchblade-1-devils-reign-chapter-five/4000-107844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129386/","id":129386,"name":"The Possession, Part 2","site_detail_url":"https://comicvine.gamespot.com/avengelyne-11-the-possession-part-2/4000-129386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129387/","id":129387,"name":"The Possession, Part 3","site_detail_url":"https://comicvine.gamespot.com/avengelyne-12-the-possession-part-3/4000-129387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129388/","id":129388,"name":"The Possession, Part 4","site_detail_url":"https://comicvine.gamespot.com/avengelyne-13-the-possession-part-4/4000-129388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43477/","id":43477,"name":"Vanished","site_detail_url":"https://comicvine.gamespot.com/spawn-59-vanished/4000-43477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321715/","id":321715,"name":"Il Signore del Nilo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-180-il-signore-del-nilo/4000-321715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357474/","id":357474,"name":"Behold, A Pale Horseman","site_detail_url":"https://comicvine.gamespot.com/bloodshot-retailer-review-1-behold-a-pale-horseman/4000-357474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107845/","id":107845,"name":"Devil's Reign - Chapter Six","site_detail_url":"https://comicvine.gamespot.com/witchbladeelektra-1-devils-reign-chapter-six/4000-107845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99168/","id":99168,"name":"Tombs","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-7-tombs/4000-99168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202257/","id":202257,"name":"My Fair Spidey; Love Hurts; Atom-Age Amore; The Greatest Gift; The Way","site_detail_url":"https://comicvine.gamespot.com/marvel-valentines-day-special-1-my-fair-spidey-lov/4000-202257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171218/","id":171218,"name":"Q&A","site_detail_url":"https://comicvine.gamespot.com/sovereign-seven-20-qa/4000-171218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43487/","id":43487,"name":"Backlash","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-244-backlash/4000-43487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107696/","id":107696,"name":"After The Rain","site_detail_url":"https://comicvine.gamespot.com/cyber-force-31-after-the-rain/4000-107696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121633/","id":121633,"name":"Law & Order","site_detail_url":"https://comicvine.gamespot.com/venom-on-trial-1-law-order/4000-121633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43379/","id":43379,"name":"Deadline!","site_detail_url":"https://comicvine.gamespot.com/daily-bugle-3-deadline/4000-43379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152891/","id":152891,"name":"","site_detail_url":"https://comicvine.gamespot.com/grifter-8/4000-152891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43389/","id":43389,"name":"Back in Business","site_detail_url":"https://comicvine.gamespot.com/spider-man-hobgoblin-lives-2-back-in-business/4000-43389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43381/","id":43381,"name":"A Little Piece of Paradise","site_detail_url":"https://comicvine.gamespot.com/elektra-4-a-little-piece-of-paradise/4000-43381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107640/","id":107640,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobo-mask-1/4000-107640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107397/","id":107397,"name":"Total X-Tinction Part 5: Dead To Rights","site_detail_url":"https://comicvine.gamespot.com/punisher-16-total-x-tinction-part-5-dead-to-rights/4000-107397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139745/","id":139745,"name":"Unholy Alliances!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-17-unholy-alliances/4000-139745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111410/","id":111410,"name":"Dawn of a New Age of Heroes!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-marvel-universe-1-dawn-of-a-new-age-o/4000-111410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106418/","id":106418,"name":"Up From the Depths","site_detail_url":"https://comicvine.gamespot.com/imperial-guard-2-up-from-the-depths/4000-106418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43348/","id":43348,"name":"Played","site_detail_url":"https://comicvine.gamespot.com/impulse-22-played/4000-43348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107763/","id":107763,"name":"Devil's Reign: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/cyblade-ghost-rider-1-devils-reign-chapter-two/4000-107763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65709/","id":65709,"name":"Brotherhood","site_detail_url":"https://comicvine.gamespot.com/x-factor-131-brotherhood/4000-65709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147664/","id":147664,"name":"A History of Violence","site_detail_url":"https://comicvine.gamespot.com/a-history-of-violence-1-a-history-of-violence/4000-147664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47296/","id":47296,"name":"Belling The Cat","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-33-belling-the-cat/4000-47296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47297/","id":47297,"name":"Catechism!","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-34-catechism/4000-47297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96285/","id":96285,"name":"The Heart Of The Beast","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-125-the-heart-of-the-beast/4000-96285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65761/","id":65761,"name":"Bolt","site_detail_url":"https://comicvine.gamespot.com/x-men-61-bolt/4000-65761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43411/","id":43411,"name":"When Strikes a Gladiator!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-341-when-strikes-a-gladiator/4000-43411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107762/","id":107762,"name":"Devil's Reign - Chapter Three: Kill Everyone We See","site_detail_url":"https://comicvine.gamespot.com/ghost-riderballistic-1-devils-reign-chapter-three-/4000-107762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107759/","id":107759,"name":"Devil's Reign - Chapter Four: When The Ball Drops","site_detail_url":"https://comicvine.gamespot.com/ballisticwolverine-1-devils-reign-chapter-four-whe/4000-107759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129385/","id":129385,"name":"The Possession, Part 1","site_detail_url":"https://comicvine.gamespot.com/avengelyne-10-the-possession-part-1/4000-129385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229414/","id":229414,"name":"","site_detail_url":"https://comicvine.gamespot.com/gravediggers-4/4000-229414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43380/","id":43380,"name":"...Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/daredevil-361-unfinished-business/4000-43380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43378/","id":43378,"name":"Orphans","site_detail_url":"https://comicvine.gamespot.com/spawn-58-orphans/4000-43378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43396/","id":43396,"name":"The Kingdom of Cain","site_detail_url":"https://comicvine.gamespot.com/what-if-94-the-kingdom-of-cain/4000-43396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107695/","id":107695,"name":"Devil's Reign Interlude","site_detail_url":"https://comicvine.gamespot.com/cyber-force-30-devils-reign-interlude/4000-107695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169250/","id":169250,"name":"","site_detail_url":"https://comicvine.gamespot.com/osborn-journals-1/4000-169250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48260/","id":48260,"name":"That Which Gods Have Joined Together...","site_detail_url":"https://comicvine.gamespot.com/avengers-4-that-which-gods-have-joined-together/4000-48260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425156/","id":425156,"name":"Children of the Fallen Angel","site_detail_url":"https://comicvine.gamespot.com/children-of-the-fallen-angel-1-children-of-the-fal/4000-425156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171215/","id":171215,"name":"Bolo","site_detail_url":"https://comicvine.gamespot.com/sovereign-seven-19-bolo/4000-171215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43388/","id":43388,"name":"Who Am I?","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-243-who-am-i/4000-43388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66497/","id":66497,"name":"The Duck and the Amok","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-82-the-duck-and-the-amok/4000-66497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43269/","id":43269,"name":"","site_detail_url":"https://comicvine.gamespot.com/daily-bugle-2/4000-43269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46752/","id":46752,"name":"Miss Drugstore","site_detail_url":"https://comicvine.gamespot.com/dv8-4-miss-drugstore/4000-46752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51699/","id":51699,"name":"Part 1: Guns","site_detail_url":"https://comicvine.gamespot.com/code-of-honor-1-part-1-guns/4000-51699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43271/","id":43271,"name":"I Know How You Feel","site_detail_url":"https://comicvine.gamespot.com/elektra-3-i-know-how-you-feel/4000-43271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43278/","id":43278,"name":"Victims","site_detail_url":"https://comicvine.gamespot.com/spider-man-hobgoblin-lives-1-victims/4000-43278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43264/","id":43264,"name":"Underworld","site_detail_url":"https://comicvine.gamespot.com/the-darkness-2-underworld/4000-43264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172358/","id":172358,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-101-ways-to-end-the-clone-saga-1/4000-172358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43285/","id":43285,"name":"Crash Course","site_detail_url":"https://comicvine.gamespot.com/x-man-23-crash-course/4000-43285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139746/","id":139746,"name":"Spider, Spider, Who's Got the Spider?","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-16-spider-spider-whos-g/4000-139746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106404/","id":106404,"name":"Imperious Wrecks!","site_detail_url":"https://comicvine.gamespot.com/imperial-guard-1-imperious-wrecks/4000-106404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65708/","id":65708,"name":"A Mother’s Eyes","site_detail_url":"https://comicvine.gamespot.com/x-factor-130-a-mothers-eyes/4000-65708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47295/","id":47295,"name":"Catharsis!","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-32-catharsis/4000-47295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129157/","id":129157,"name":"","site_detail_url":"https://comicvine.gamespot.com/bettie-page-comics-spicy-adventure-0/4000-129157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66496/","id":66496,"name":"Caught Between a Duck and a Hard Place","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-81-caught-between-a-duck-and-a-hard-pl/4000-66496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129384/","id":129384,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-9/4000-129384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229413/","id":229413,"name":"","site_detail_url":"https://comicvine.gamespot.com/gravediggers-3/4000-229413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175633/","id":175633,"name":"Eye For An Eye","site_detail_url":"https://comicvine.gamespot.com/daredevilbatman-1-eye-for-an-eye/4000-175633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218368/","id":218368,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellboy-wake-the-devil-1-tpb/4000-218368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43270/","id":43270,"name":"Alone Against The Absorbing Man!","site_detail_url":"https://comicvine.gamespot.com/daredevil-360-alone-against-the-absorbing-man/4000-43270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43266/","id":43266,"name":"The Beast","site_detail_url":"https://comicvine.gamespot.com/spawn-57-the-beast/4000-43266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303966/","id":303966,"name":"New World Order","site_detail_url":"https://comicvine.gamespot.com/jla-new-world-order-1-new-world-order/4000-303966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152633/","id":152633,"name":"Without Wings","site_detail_url":"https://comicvine.gamespot.com/valkyrie-1-without-wings/4000-152633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342898/","id":342898,"name":"Vivons heureux sans en avoir l`air","site_detail_url":"https://comicvine.gamespot.com/monsieur-jean-4-vivons-heureux-sans-en-avoir-lair/4000-342898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107765/","id":107765,"name":"Devil's Reign Chapter 1","site_detail_url":"https://comicvine.gamespot.com/weapon-zerosilver-surfer-1-devils-reign-chapter-1/4000-107765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107107/","id":107107,"name":"Relativity","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-340-relativity/4000-107107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370589/","id":370589,"name":"Spawn Book 2: Dark discoveries","site_detail_url":"https://comicvine.gamespot.com/spawn-book-2-dark-discoveries-1-spawn-book-2-dark-/4000-370589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171729/","id":171729,"name":"Spiders in the Brainstem","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-scorpio-rose-3-spiders-in-the-b/4000-171729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44473/","id":44473,"name":"The Dream","site_detail_url":"https://comicvine.gamespot.com/supermanwonder-woman-whom-gods-destroy-1-the-dream/4000-44473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48259/","id":48259,"name":"In Love & War","site_detail_url":"https://comicvine.gamespot.com/avengers-3-in-love-war/4000-48259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438824/","id":438824,"name":"Death - Die Zeit deines Lebens","site_detail_url":"https://comicvine.gamespot.com/sandman-special-3-death-die-zeit-deines-lebens/4000-438824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43277/","id":43277,"name":"Facedancing","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-242-facedancing/4000-43277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118237/","id":118237,"name":"","site_detail_url":"https://comicvine.gamespot.com/azraelash-1/4000-118237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117941/","id":117941,"name":"Do Or Die","site_detail_url":"https://comicvine.gamespot.com/uncle-sam-2-do-or-die/4000-117941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43302/","id":43302,"name":"Them!","site_detail_url":"https://comicvine.gamespot.com/jla-1-them/4000-43302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96284/","id":96284,"name":"A Place Called Home","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-124-a-place-called-home/4000-96284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148264/","id":148264,"name":"\"Radio Daze\"","site_detail_url":"https://comicvine.gamespot.com/animaniacs-21-radio-daze/4000-148264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167996/","id":167996,"name":"The Ghost of Central Park; The Mystery at the Bottom of the Sea","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-16-the-ghost-of-central-park-the-myster/4000-167996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152366/","id":152366,"name":"What Power is This?","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-505-what-power-is-this/4000-152366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118655/","id":118655,"name":"Coming of Age","site_detail_url":"https://comicvine.gamespot.com/the-darkness-1-coming-of-age/4000-118655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43081/","id":43081,"name":"Revelations, Part 2 of 4: Deadly Diversions","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-11-revelations-part-2-o/4000-43081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43073/","id":43073,"name":"Front Page: A Daily Bugle Report","site_detail_url":"https://comicvine.gamespot.com/daily-bugle-1-front-page-a-daily-bugle-report/4000-43073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46751/","id":46751,"name":"Neighborhood Threat","site_detail_url":"https://comicvine.gamespot.com/dv8-3-neighborhood-threat/4000-46751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175968/","id":175968,"name":null,"site_detail_url":"https://comicvine.gamespot.com/logan-shadow-society-1/4000-175968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43075/","id":43075,"name":"Father's Day","site_detail_url":"https://comicvine.gamespot.com/elektra-2-father-s-day/4000-43075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99166/","id":99166,"name":"Suture","site_detail_url":"https://comicvine.gamespot.com/curse-of-the-spawn-5-suture/4000-99166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43091/","id":43091,"name":"Falling Up","site_detail_url":"https://comicvine.gamespot.com/x-man-22-falling-up/4000-43091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105728/","id":105728,"name":"Sins Of The Father","site_detail_url":"https://comicvine.gamespot.com/x-man-annual-96-1-sins-of-the-father/4000-105728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139747/","id":139747,"name":"Schemes & Dreams: For Future Screams","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-15-schemes-and-dreams-f/4000-139747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65759/","id":65759,"name":"Touched","site_detail_url":"https://comicvine.gamespot.com/x-men-59-touched/4000-65759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43105/","id":43105,"name":"Fight and Flight!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-339-fight-and-flight/4000-43105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129097/","id":129097,"name":"Special Preview Edition","site_detail_url":"https://comicvine.gamespot.com/the-darkness-special-preview-edition-0-special-pre/4000-129097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64653/","id":64653,"name":"Revelations Part 4: Night of the Goblin!","site_detail_url":"https://comicvine.gamespot.com/spider-man-75-revelations-part-4-night-of-the-gobl/4000-64653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96283/","id":96283,"name":"Square One","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-123-square-one/4000-96283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64455/","id":64455,"name":"Revelations, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-418-revelations-part-3-of-4/4000-64455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160701/","id":160701,"name":"Burning Bright","site_detail_url":"https://comicvine.gamespot.com/spider-man-redemption-4-burning-bright/4000-160701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51772/","id":51772,"name":"Silver Lining","site_detail_url":"https://comicvine.gamespot.com/x-files-24-silver-lining/4000-51772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107968/","id":107968,"name":"","site_detail_url":"https://comicvine.gamespot.com/backlash-27/4000-107968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43108/","id":43108,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-43/4000-43108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43065/","id":43065,"name":"The Crossing!","site_detail_url":"https://comicvine.gamespot.com/dcmarvel-all-access-1-the-crossing/4000-43065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51965/","id":51965,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-11/4000-51965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129383/","id":129383,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-8/4000-129383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229412/","id":229412,"name":"","site_detail_url":"https://comicvine.gamespot.com/gravediggers-2/4000-229412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137545/","id":137545,"name":"Brain In Vain; On The Road; The Scarred Path To Justice","site_detail_url":"https://comicvine.gamespot.com/showcase-96-11-brain-in-vain-on-the-road-the-scarr/4000-137545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129453/","id":129453,"name":"A Test of Faith","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-and-avengelyne-1-a-test-of-fait/4000-129453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43074/","id":43074,"name":"The Devil You Know!","site_detail_url":"https://comicvine.gamespot.com/daredevil-359-the-devil-you-know/4000-43074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43070/","id":43070,"name":"Kahn","site_detail_url":"https://comicvine.gamespot.com/spawn-56-kahn/4000-43070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48258/","id":48258,"name":"First Blood","site_detail_url":"https://comicvine.gamespot.com/avengers-2-first-blood/4000-48258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127976/","id":127976,"name":"Titans Children, Part 3","site_detail_url":"https://comicvine.gamespot.com/teen-titans-3-titans-children-part-3/4000-127976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43082/","id":43082,"name":"A New Day Dawning","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-241-a-new-day-dawning/4000-43082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66495/","id":66495,"name":"Storm of Blood","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-80-storm-of-blood/4000-66495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107694/","id":107694,"name":"Swan Song","site_detail_url":"https://comicvine.gamespot.com/cyber-force-29-swan-song/4000-107694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204367/","id":204367,"name":"L'Ombra del Nemico","site_detail_url":"https://comicvine.gamespot.com/mister-no-259-lombra-del-nemico/4000-204367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121003/","id":121003,"name":"Still Rippin'","site_detail_url":"https://comicvine.gamespot.com/pitt-12-still-rippin/4000-121003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152889/","id":152889,"name":"","site_detail_url":"https://comicvine.gamespot.com/grifter-6/4000-152889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46750/","id":46750,"name":"Some Weird Sin","site_detail_url":"https://comicvine.gamespot.com/dv8-2-some-weird-sin/4000-46750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51964/","id":51964,"name":"Witchblade & the Darkness","site_detail_url":"https://comicvine.gamespot.com/witchblade-10-witchblade-and-the-darkness/4000-51964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42981/","id":42981,"name":"Afraid of the Dark","site_detail_url":"https://comicvine.gamespot.com/elektra-1-afraid-of-the-dark/4000-42981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112203/","id":112203,"name":"Daze & Knights","site_detail_url":"https://comicvine.gamespot.com/justice-league-a-midsummers-nightmare-3-daze-knigh/4000-112203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42994/","id":42994,"name":"Open Cage","site_detail_url":"https://comicvine.gamespot.com/x-man-21-open-cage/4000-42994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139748/","id":139748,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-14-the-gift/4000-139748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153415/","id":153415,"name":"Kraven's First Hunt","site_detail_url":"https://comicvine.gamespot.com/sensational-spider-man-annual-96-1-kravens-first-h/4000-153415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65706/","id":65706,"name":"Night Of The Hounds","site_detail_url":"https://comicvine.gamespot.com/x-factor-128-night-of-the-hounds/4000-65706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42956/","id":42956,"name":"Light in Darkness","site_detail_url":"https://comicvine.gamespot.com/green-lantern-80-light-in-darkness/4000-42956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42987/","id":42987,"name":"Revelations, Part 1 of 4: Walking Into Spiderwebs","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-240-revelations-part-1-/4000-42987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160704/","id":160704,"name":"Chains","site_detail_url":"https://comicvine.gamespot.com/spider-man-redemption-3-chains/4000-160704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166452/","id":166452,"name":"Spider-Man and Daredevil Greatest Team-Ups","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-daredevil-greatest-team-ups-1-spide/4000-166452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129382/","id":129382,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-7/4000-129382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229410/","id":229410,"name":"","site_detail_url":"https://comicvine.gamespot.com/gravediggers-1/4000-229410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96324/","id":96324,"name":"In the Jaws of Death","site_detail_url":"https://comicvine.gamespot.com/venom-tooth-and-claw-1-in-the-jaws-of-death/4000-96324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272255/","id":272255,"name":"Tuez en paix","site_detail_url":"https://comicvine.gamespot.com/soda-8-tuez-en-paix/4000-272255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281985/","id":281985,"name":"Ombre su Darkwood","site_detail_url":"https://comicvine.gamespot.com/zagor-376-ombre-su-darkwood/4000-281985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42980/","id":42980,"name":"Aftermath","site_detail_url":"https://comicvine.gamespot.com/daredevil-358-aftermath/4000-42980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42978/","id":42978,"name":"Sabotage","site_detail_url":"https://comicvine.gamespot.com/spawn-55-sabotage/4000-42978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183922/","id":183922,"name":"Part Alpha","site_detail_url":"https://comicvine.gamespot.com/widow-luxura-blood-lust-1-part-alpha/4000-183922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171727/","id":171727,"name":"Shadows in the Night","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-scorpio-rose-2-shadows-in-the-n/4000-171727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78427/","id":78427,"name":"Resolutions","site_detail_url":"https://comicvine.gamespot.com/venom-the-hunger-4-resolutions/4000-78427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66494/","id":66494,"name":"Song of the Furies","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-79-song-of-the-furies/4000-66494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107693/","id":107693,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-28/4000-107693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204366/","id":204366,"name":"Ritorno a New York","site_detail_url":"https://comicvine.gamespot.com/mister-no-258-ritorno-a-new-york/4000-204366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131214/","id":131214,"name":"A New Beginning For X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-megazine-1-a-new-beginning-for-x-force/4000-131214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64454/","id":64454,"name":"Secrets!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-417-secrets/4000-64454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64534/","id":64534,"name":"I Know You Are but What am I?","site_detail_url":"https://comicvine.gamespot.com/x-force-60-i-know-you-are-but-what-am-i/4000-64534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152887/","id":152887,"name":"","site_detail_url":"https://comicvine.gamespot.com/grifter-4/4000-152887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112202/","id":112202,"name":"To Know A Veil","site_detail_url":"https://comicvine.gamespot.com/justice-league-a-midsummers-nightmare-2-to-know-a-/4000-112202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42866/","id":42866,"name":"Texas and the Spaceman","site_detail_url":"https://comicvine.gamespot.com/preacher-18-texas-and-the-spaceman/4000-42866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65757/","id":65757,"name":"MAN","site_detail_url":"https://comicvine.gamespot.com/x-men-57-man/4000-65757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267141/","id":267141,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amalgam-age-of-comics-the-dc-comics-collection/4000-267141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164639/","id":164639,"name":"Infestation","site_detail_url":"https://comicvine.gamespot.com/cyberfrog-reservoir-frog-2-infestation/4000-164639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201625/","id":201625,"name":"","site_detail_url":"https://comicvine.gamespot.com/predator-dark-river-1/4000-201625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42883/","id":42883,"name":"I'll Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-446-ill-take-manhattan/4000-42883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107392/","id":107392,"name":"Total X-Tinction Part 1: Capitol Offenses","site_detail_url":"https://comicvine.gamespot.com/punisher-12-total-x-tinction-part-1-capitol-offens/4000-107392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139749/","id":139749,"name":"Truths & Deceptions","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-13-truths-and-deception/4000-139749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42871/","id":42871,"name":"Sand and Stars, Part Four","site_detail_url":"https://comicvine.gamespot.com/starman-23-sand-and-stars-part-four/4000-42871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42904/","id":42904,"name":"Know Thy Enemy","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-337-know-thy-enemy/4000-42904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160703/","id":160703,"name":"War Games","site_detail_url":"https://comicvine.gamespot.com/spider-man-redemption-2-war-games/4000-160703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149746/","id":149746,"name":"All for Love or The World Well Lost","site_detail_url":"https://comicvine.gamespot.com/the-world-needs-heroes-6-all-for-love-or-the-world/4000-149746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107195/","id":107195,"name":"","site_detail_url":"https://comicvine.gamespot.com/backlashspider-man-2/4000-107195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187138/","id":187138,"name":"Closure","site_detail_url":"https://comicvine.gamespot.com/hardware-44-closure/4000-187138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164958/","id":164958,"name":"The Last Ronin; The Golden Temple","site_detail_url":"https://comicvine.gamespot.com/wolverine-96-1-the-last-ronin-the-golden-temple/4000-164958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135927/","id":135927,"name":"Lethal Origins, Part 1: Blast Off","site_detail_url":"https://comicvine.gamespot.com/the-6-1-lethal-origins-part-1-blast-off/4000-135927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43195/","id":43195,"name":"Strike While the Iron is","site_detail_url":"https://comicvine.gamespot.com/dawn-6-strike-while-the-iron-is/4000-43195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47755/","id":47755,"name":"","site_detail_url":"https://comicvine.gamespot.com/crypt-of-dawn-1/4000-47755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267152/","id":267152,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amalgam-age-of-comics-the-marvel-comics-collec/4000-267152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42879/","id":42879,"name":"Reconciliation","site_detail_url":"https://comicvine.gamespot.com/spawn-54-reconciliation/4000-42879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273587/","id":273587,"name":"","site_detail_url":"https://comicvine.gamespot.com/lillith-demon-princess-2/4000-273587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107019/","id":107019,"name":"With Great Power...","site_detail_url":"https://comicvine.gamespot.com/onslaught-marvel-universe-1-with-great-power/4000-107019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42865/","id":42865,"name":"The Wall","site_detail_url":"https://comicvine.gamespot.com/the-power-of-shazam-19-the-wall/4000-42865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78426/","id":78426,"name":"Love and Death","site_detail_url":"https://comicvine.gamespot.com/venom-the-hunger-3-love-and-death/4000-78426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109400/","id":109400,"name":"Sudden Sacrifices","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-239-sudden-sacrifices/4000-109400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66493/","id":66493,"name":"Furious Blood","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-78-furious-blood/4000-66493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107692/","id":107692,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-27/4000-107692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247089/","id":247089,"name":"Scorched Earth Part 2: Prophecy Fever","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-4-scorched-earth-part-2-/4000-247089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42801/","id":42801,"name":"Onslaught Phase 2: Shades of Grey","site_detail_url":"https://comicvine.gamespot.com/x-man-19-onslaught-phase-2-shades-of-grey/4000-42801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77596/","id":77596,"name":"Onslaught Phase 2: Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-416-onslaught-phase-2-unfinished-bu/4000-77596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42795/","id":42795,"name":"Onslaught Impact, Part 2: Dancing In the Dark","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-445-onslaught-impact-part-2-da/4000-42795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51173/","id":51173,"name":"Onslaught Impact 2: Faces In The Fire","site_detail_url":"https://comicvine.gamespot.com/wolverine-105-onslaught-impact-2-faces-in-the-fire/4000-51173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108466/","id":108466,"name":"Onslaught Impact 2: Even the Brave Can Fall","site_detail_url":"https://comicvine.gamespot.com/green-goblin-12-onslaught-impact-2-even-the-brave-/4000-108466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64650/","id":64650,"name":"Onslaught Impact 2: The World's Gone Mad!","site_detail_url":"https://comicvine.gamespot.com/spider-man-72-onslaught-impact-2-the-worlds-gone-m/4000-64650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65756/","id":65756,"name":"Twilight of the Gods","site_detail_url":"https://comicvine.gamespot.com/x-men-56-twilight-of-the-gods/4000-65756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46749/","id":46749,"name":"Lust for Life","site_detail_url":"https://comicvine.gamespot.com/dv8-1-lust-for-life/4000-46749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200223/","id":200223,"name":"DC vs. Marvel","site_detail_url":"https://comicvine.gamespot.com/dc-vs-marvel-1-dc-vs-marvel/4000-200223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112156/","id":112156,"name":"True Lies","site_detail_url":"https://comicvine.gamespot.com/justice-league-a-midsummers-nightmare-1-true-lies/4000-112156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107391/","id":107391,"name":"Onslaught Impact 2: Manhattan Onslaught","site_detail_url":"https://comicvine.gamespot.com/punisher-11-onslaught-impact-2-manhattan-onslaught/4000-107391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42792/","id":42792,"name":"End of the Line","site_detail_url":"https://comicvine.gamespot.com/the-avengers-402-end-of-the-line/4000-42792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42828/","id":42828,"name":"Putting On the Bear Shirt","site_detail_url":"https://comicvine.gamespot.com/thor-502-putting-on-the-bear-shirt/4000-42828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139750/","id":139750,"name":"End Hunt","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-12-end-hunt/4000-139750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64453/","id":64453,"name":"Onslaught Impact 2: The Sentinels Take Manhattan! - Siege","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-415-onslaught-impact-2-the-/4000-64453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42814/","id":42814,"name":"A Voice As Deep As Thunder","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-336-a-voice-as-deep-as-thunder/4000-42814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42816/","id":42816,"name":"It Is Always Darkest...","site_detail_url":"https://comicvine.gamespot.com/cable-35-it-is-always-darkest/4000-42816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158699/","id":158699,"name":"The Pit","site_detail_url":"https://comicvine.gamespot.com/x-files-negative--2-the-pit/4000-158699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160702/","id":160702,"name":"Yesterday","site_detail_url":"https://comicvine.gamespot.com/spider-man-redemption-1-yesterday/4000-160702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149745/","id":149745,"name":"Surrender the Pink","site_detail_url":"https://comicvine.gamespot.com/the-world-needs-heroes-5-surrender-the-pink/4000-149745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47294/","id":47294,"name":"Cats And Dogs","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-31-cats-and-dogs/4000-47294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187137/","id":187137,"name":"Doorway to Nightmares","site_detail_url":"https://comicvine.gamespot.com/hardware-43-doorway-to-nightmares/4000-187137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51963/","id":51963,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-9/4000-51963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158414/","id":158414,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-2/4000-158414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129380/","id":129380,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-6/4000-129380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41892/","id":41892,"name":"Everybody Dies","site_detail_url":"https://comicvine.gamespot.com/dawn-5-everybody-dies/4000-41892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281811/","id":281811,"name":"Xanadu","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-gigante-2-xanadu/4000-281811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307728/","id":307728,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-rocketeer-cliffs-new-york-adventure-1-volume-2/4000-307728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108417/","id":108417,"name":"Onslaught Impact 2: Night Neverending","site_detail_url":"https://comicvine.gamespot.com/iron-man-332-onslaught-impact-2-night-neverending/4000-108417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345641/","id":345641,"name":"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-rituals-1/4000-345641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273585/","id":273585,"name":"","site_detail_url":"https://comicvine.gamespot.com/lillith-demon-princess-1/4000-273585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432514/","id":432514,"name":"Schwurgericht","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-26-schwurgericht/4000-432514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65630/","id":65630,"name":"Suicidal Tendencies","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-238-suicidal-tendencies/4000-65630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66492/","id":66492,"name":"Bitter Smoke","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-77-bitter-smoke/4000-66492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116622/","id":116622,"name":"Heavy Metal, Part 2: The Interlock Crunch","site_detail_url":"https://comicvine.gamespot.com/iron-man-x-o-manowar-1-heavy-metal-part-2-the-inte/4000-116622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120893/","id":120893,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-26/4000-120893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164638/","id":164638,"name":"Getting to Hate You","site_detail_url":"https://comicvine.gamespot.com/cyberfrog-reservoir-frog-1-getting-to-hate-you/4000-164638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151204/","id":151204,"name":"Together Again ... For Their Final Adventure","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-1-together-again-for-their-final-ad/4000-151204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247088/","id":247088,"name":"Scorched Earth: Part 1","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-3-scorched-earth-part-1/4000-247088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144643/","id":144643,"name":"Showdown","site_detail_url":"https://comicvine.gamespot.com/ultraverse-unlimited-2-showdown/4000-144643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65755/","id":65755,"name":"Invasion","site_detail_url":"https://comicvine.gamespot.com/x-men-55-invasion/4000-65755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42649/","id":42649,"name":"Never-Ending Battle","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-4-never-ending-battle/4000-42649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42705/","id":42705,"name":"Onslaught Phase 1: In the Company of Strangers","site_detail_url":"https://comicvine.gamespot.com/x-man-18-onslaught-phase-1-in-the-company-of-stran/4000-42705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139751/","id":139751,"name":"The Hunting","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11-the-hunting/4000-139751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107378/","id":107378,"name":"Last Shot Fired","site_detail_url":"https://comicvine.gamespot.com/punisher-10-last-shot-fired/4000-107378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42699/","id":42699,"name":"Trial by Fire!","site_detail_url":"https://comicvine.gamespot.com/daredevil-355-trial-by-fire/4000-42699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42719/","id":42719,"name":"Apocalypse Lives","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-335-apocalypse-lives/4000-42719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149744/","id":149744,"name":"Help is on the Way","site_detail_url":"https://comicvine.gamespot.com/the-world-needs-heroes-4-help-is-on-the-way/4000-149744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42727/","id":42727,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-38/4000-42727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51962/","id":51962,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-8/4000-51962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64649/","id":64649,"name":"The Promise","site_detail_url":"https://comicvine.gamespot.com/spider-man-71-the-promise/4000-64649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158413/","id":158413,"name":"","site_detail_url":"https://comicvine.gamespot.com/brass-1/4000-158413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96615/","id":96615,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathblow-29/4000-96615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129379/","id":129379,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-5/4000-129379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97945/","id":97945,"name":"","site_detail_url":"https://comicvine.gamespot.com/over-the-edge-10/4000-97945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357932/","id":357932,"name":"Uovo a Sorpresa","site_detail_url":"https://comicvine.gamespot.com/alan-ford-326-uovo-a-sorpresa/4000-357932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42697/","id":42697,"name":"Sins of the Father","site_detail_url":"https://comicvine.gamespot.com/the-avengers-401-sins-of-the-father/4000-42697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42721/","id":42721,"name":"Onslaught Phase 1: Loose Cannons","site_detail_url":"https://comicvine.gamespot.com/cable-34-onslaught-phase-1-loose-cannons/4000-42721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77595/","id":77595,"name":"Onslaught Phase 1: An Enemy Among Us","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-415-onslaught-phase-1-an-enemy-amon/4000-77595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107021/","id":107021,"name":"Traitor To The Cause","site_detail_url":"https://comicvine.gamespot.com/onslaught-x-men-1-traitor-to-the-cause/4000-107021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78424/","id":78424,"name":"The Hunger","site_detail_url":"https://comicvine.gamespot.com/venom-the-hunger-1-the-hunger/4000-78424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109399/","id":109399,"name":"Little Deaths","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-237-little-deaths/4000-109399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120900/","id":120900,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-25/4000-120900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42684/","id":42684,"name":"The Phantom of the Fair, Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-41-the-phantom-of-the-fair/4000-42684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247087/","id":247087,"name":"There Shall Come... A Fleet","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-2-there-shall-come-a-fle/4000-247087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118694/","id":118694,"name":"The Darkness 1/2","site_detail_url":"https://comicvine.gamespot.com/the-darkness-12-the-darkness-12/4000-118694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490652/","id":490652,"name":"","site_detail_url":"https://comicvine.gamespot.com/gold-digger-perfect-memory-1/4000-490652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232573/","id":232573,"name":"The Readiness To Die","site_detail_url":"https://comicvine.gamespot.com/arsenal-special-1-the-readiness-to-die/4000-232573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139752/","id":139752,"name":"A Time to Live!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-10-a-time-to-live/4000-139752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107377/","id":107377,"name":"Tumbling Down","site_detail_url":"https://comicvine.gamespot.com/punisher-9-tumbling-down/4000-107377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42587/","id":42587,"name":"Sand and Stars, Part One","site_detail_url":"https://comicvine.gamespot.com/starman-20-sand-and-stars-part-one/4000-42587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149743/","id":149743,"name":"Home of the Heroes","site_detail_url":"https://comicvine.gamespot.com/the-world-needs-heroes-3-home-of-the-heroes/4000-149743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137306/","id":137306,"name":"Moonlight and Ashes - Fire From Heaven Finale 2","site_detail_url":"https://comicvine.gamespot.com/fire-from-heaven-2-moonlight-and-ashes-fire-from-h/4000-137306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107023/","id":107023,"name":"Backlash and Spider-Man","site_detail_url":"https://comicvine.gamespot.com/backlashspider-man-1-backlash-and-spider-man/4000-107023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42629/","id":42629,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-37/4000-42629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51961/","id":51961,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-7/4000-51961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49213/","id":49213,"name":"","site_detail_url":"https://comicvine.gamespot.com/knights-on-broadway-1/4000-49213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129377/","id":129377,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-4/4000-129377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264173/","id":264173,"name":"The Neal Adams Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-2-the-neal-adams-collection-2-th/4000-264173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42601/","id":42601,"name":"Charming Devils","site_detail_url":"https://comicvine.gamespot.com/daredevil-354-charming-devils/4000-42601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104032/","id":104032,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-2/4000-104032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109398/","id":109398,"name":"Free Will","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-236-free-will/4000-109398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42584/","id":42584,"name":"The Mist: Act Four","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-40-the-mist-act-four/4000-42584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107376/","id":107376,"name":"Vengeance Is Mine!","site_detail_url":"https://comicvine.gamespot.com/punisher-8-vengeance-is-mine/4000-107376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405760/","id":405760,"name":"The Afterlife of Riley","site_detail_url":"https://comicvine.gamespot.com/cyberfrog-4-the-afterlife-of-riley/4000-405760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139753/","id":139753,"name":"Tentacles","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-9-tentacles/4000-139753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42517/","id":42517,"name":"Unspoken Promises","site_detail_url":"https://comicvine.gamespot.com/wolverine-102-unspoken-promises/4000-42517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129123/","id":129123,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-1-inferno/4000-129123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98683/","id":98683,"name":"Double, Double-Cross And Rumble","site_detail_url":"https://comicvine.gamespot.com/bloodshot-49-double-double-cross-and-rumble/4000-98683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51960/","id":51960,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-6/4000-51960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42446/","id":42446,"name":"Truth and Justice","site_detail_url":"https://comicvine.gamespot.com/kingdom-come-2-truth-and-justice/4000-42446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192292/","id":192292,"name":"Sergio Aragones Massacres Marvel","site_detail_url":"https://comicvine.gamespot.com/sergio-aragones-massacres-marvel-1-sergio-aragones/4000-192292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41886/","id":41886,"name":"The Gauntlet","site_detail_url":"https://comicvine.gamespot.com/dawn-4-the-gauntlet/4000-41886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134491/","id":134491,"name":"Bitter Choices","site_detail_url":"https://comicvine.gamespot.com/doom-2099-42-bitter-choices/4000-134491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129376/","id":129376,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-3/4000-129376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97943/","id":97943,"name":"","site_detail_url":"https://comicvine.gamespot.com/over-the-edge-8/4000-97943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42490/","id":42490,"name":"The Devil's Work!","site_detail_url":"https://comicvine.gamespot.com/daredevil-353-the-devils-work/4000-42490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42487/","id":42487,"name":"Choices","site_detail_url":"https://comicvine.gamespot.com/spawn-50-choices/4000-42487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41833/","id":41833,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/hellboy-wake-the-devil-1-chapter-one/4000-41833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172508/","id":172508,"name":"Retribution!","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-rituals-6-retribution/4000-172508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65753/","id":65753,"name":"False Fronts","site_detail_url":"https://comicvine.gamespot.com/x-men-53-false-fronts/4000-65753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109397/","id":109397,"name":"Puppets","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-235-puppets/4000-109397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121394/","id":121394,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-legacy-of-evil-1/4000-121394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120946/","id":120946,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-24/4000-120946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42496/","id":42496,"name":"The Wizards Fantastic","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up-3-the-wizards-fantastic/4000-42496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247085/","id":247085,"name":"Cross Country Part 4: World in Flames","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-0-cross-country-part-4-w/4000-247085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64528/","id":64528,"name":"Q & A","site_detail_url":"https://comicvine.gamespot.com/x-force-54-q-a/4000-64528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42377/","id":42377,"name":"How I Became Invisible","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-20-how-i-became-invisible/4000-42377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405759/","id":405759,"name":"Deathfly by Night!","site_detail_url":"https://comicvine.gamespot.com/cyberfrog-3-deathfly-by-night/4000-405759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139754/","id":139754,"name":"Back From the Edge, Part 3: Deadmen","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-8-back-from-the-edge-pa/4000-139754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109178/","id":109178,"name":"Siege of the Hellriders!","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-59-siege-of-the-hellrid/4000-109178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42372/","id":42372,"name":"Chapter Two: Imaginary Solutions","site_detail_url":"https://comicvine.gamespot.com/death-the-time-of-your-life-2-chapter-two-imaginar/4000-42372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51959/","id":51959,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-5/4000-51959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65752/","id":65752,"name":"Collector's Item","site_detail_url":"https://comicvine.gamespot.com/x-men-52-collectors-item/4000-65752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42392/","id":42392,"name":"The System","site_detail_url":"https://comicvine.gamespot.com/spawn-48-the-system/4000-42392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42436/","id":42436,"name":"Helter Skelter","site_detail_url":"https://comicvine.gamespot.com/spawn-49-helter-skelter/4000-42436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129375/","id":129375,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-2/4000-129375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263302/","id":263302,"name":"L' uomo venuto dal futuro (Robinson Hart) & Lo shuttle perduto (Magic Patrol)","site_detail_url":"https://comicvine.gamespot.com/zona-x-16-l-uomo-venuto-dal-futuro-robinson-hart-l/4000-263302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183003/","id":183003,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-say-you-want-a-revolution-1-volume-/4000-183003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117803/","id":117803,"name":"Deceiver","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-vs-razor-1-deceiver/4000-117803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42416/","id":42416,"name":"The Road to Casablanca","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-332-the-road-to-casablanca/4000-42416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65629/","id":65629,"name":"Blood Brothers, Part 4 of 6: Leap of Faith","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-234-blood-brothers-part/4000-65629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42381/","id":42381,"name":"The Mist: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-38-the-mist-act-two/4000-42381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139755/","id":139755,"name":"Back From the Edge, Part 1: Outcasts!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-7-back-from-the-edge-pa/4000-139755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78428/","id":78428,"name":"The Dunking","site_detail_url":"https://comicvine.gamespot.com/venom-the-hunted-1-the-dunking/4000-78428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150604/","id":150604,"name":"Hunt","site_detail_url":"https://comicvine.gamespot.com/youngblood-7-hunt/4000-150604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150605/","id":150605,"name":"Unspeakable Acts of Cruelty ","site_detail_url":"https://comicvine.gamespot.com/youngblood-8-unspeakable-acts-of-cruelty/4000-150605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42283/","id":42283,"name":"Chester Williams: American Cop","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-165-chester-williams-american-cop/4000-42283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64448/","id":64448,"name":"Web of Carnage, Part 2 of 4: And Now -- Spider Carnage","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-410-web-of-carnage-part-2-o/4000-64448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64527/","id":64527,"name":"Even an X-Ternal Can Die!","site_detail_url":"https://comicvine.gamespot.com/x-force-53-even-an-x-ternal-can-die/4000-64527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42302/","id":42302,"name":"Fireback","site_detail_url":"https://comicvine.gamespot.com/excalibur-96-fireback/4000-42302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105526/","id":105526,"name":"Round Three","site_detail_url":"https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-3-round-three/4000-105526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405758/","id":405758,"name":"Torn Together","site_detail_url":"https://comicvine.gamespot.com/cyberfrog-2-torn-together/4000-405758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77944/","id":77944,"name":"Web of Carnage, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-3-web-of-carnage-part-1/4000-77944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107374/","id":107374,"name":"Hostage To The Devil","site_detail_url":"https://comicvine.gamespot.com/punisher-6-hostage-to-the-devil/4000-107374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139668/","id":139668,"name":"Higher Ground","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-6-higher-ground/4000-139668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98680/","id":98680,"name":"Casualties","site_detail_url":"https://comicvine.gamespot.com/bloodshot-46-casualties/4000-98680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99860/","id":99860,"name":"The Final Analysis","site_detail_url":"https://comicvine.gamespot.com/doc-samson-4-the-final-analysis/4000-99860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42300/","id":42300,"name":"Man Without a Country, Part 1: Executive Action","site_detail_url":"https://comicvine.gamespot.com/captain-america-450-man-without-a-country-part-1-e/4000-42300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137289/","id":137289,"name":"Gamorra Rising - Fire From Heaven Chapter One of Fourteen","site_detail_url":"https://comicvine.gamespot.com/fire-from-heaven-1-gamorra-rising-fire-from-heaven/4000-137289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47292/","id":47292,"name":"Fire From Heaven: Chapter 7","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-29-fire-from-heaven-c/4000-47292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111178/","id":111178,"name":"Opposites Attract","site_detail_url":"https://comicvine.gamespot.com/magneto-and-the-magnetic-men-1-opposites-attract/4000-111178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42267/","id":42267,"name":"Chapter One: Things You Just Do When You're Bored","site_detail_url":"https://comicvine.gamespot.com/death-the-time-of-your-life-1-chapter-one-things-y/4000-42267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51958/","id":51958,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-4/4000-51958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65628/","id":65628,"name":"Web of Carnage, Part 4 of 4: Inner Demons","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-233-web-of-carnage-part/4000-65628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42304/","id":42304,"name":"Fallen Angel","site_detail_url":"https://comicvine.gamespot.com/professor-xavier-and-the-x-men-6-fallen-angel/4000-42304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42301/","id":42301,"name":"Helping Hands","site_detail_url":"https://comicvine.gamespot.com/daredevil-351-helping-hands/4000-42301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42296/","id":42296,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/spawn-46-revenge/4000-42296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42347/","id":42347,"name":"Twisted","site_detail_url":"https://comicvine.gamespot.com/spawn-47-twisted/4000-42347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108750/","id":108750,"name":"Earth","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-42-earth/4000-108750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107106/","id":107106,"name":"The Splinter Of Our Discontent","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-331-the-splinter-of-our-disconte/4000-107106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172509/","id":172509,"name":"Treacherous Liason","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-rituals-5-treacherous-liason/4000-172509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223082/","id":223082,"name":"Wonder Woman: The Challenge of Artemis","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-challenge-of-artemis-1-wonder-wom/4000-223082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96588/","id":96588,"name":"The Phantom Rides Again!; The Creature of the Black Museum!","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-7-the-phantom-rides-again-the-creature-/4000-96588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116415/","id":116415,"name":"Shadowhunt:Part 4 : Hunting","site_detail_url":"https://comicvine.gamespot.com/team-youngblood-22-shadowhuntpart-4-hunting/4000-116415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64646/","id":64646,"name":"Web of Carnage, Part 3 of 4 Who Am I?","site_detail_url":"https://comicvine.gamespot.com/spider-man-67-web-of-carnage-part-3-of-4-who-am-i/4000-64646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42193/","id":42193,"name":"The Parliament of Vapors","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-164-the-parliament-of-vapors/4000-42193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42233/","id":42233,"name":"First Sign, Part 2: Doin' the Zodiac Rag","site_detail_url":"https://comicvine.gamespot.com/thor-496-first-sign-part-2-doin-the-zodiac-rag/4000-42233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105511/","id":105511,"name":"Round Two","site_detail_url":"https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-2-round-two/4000-105511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42203/","id":42203,"name":"First Sign, Part 1: I'll Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/captain-america-449-first-sign-part-1-ill-take-man/4000-42203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137447/","id":137447,"name":"Birds of a Feather; Mercy Killing; Acts Of God","site_detail_url":"https://comicvine.gamespot.com/showcase-96-3-birds-of-a-feather-mercy-killing-act/4000-137447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42175/","id":42175,"name":"King's Revealed and King's Revealing","site_detail_url":"https://comicvine.gamespot.com/extreme-justice-14-kings-revealed-and-kings-reveal/4000-42175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64526/","id":64526,"name":"Bad Girls","site_detail_url":"https://comicvine.gamespot.com/x-force-52-bad-girls/4000-64526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273699/","id":273699,"name":"Zero","site_detail_url":"https://comicvine.gamespot.com/the-phoenix-resurrection-0-zero/4000-273699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42207/","id":42207,"name":"Ghosts of the Future, Part 4: Scapegoat","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-439-ghosts-of-the-future-part-/4000-42207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129133/","id":129133,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-7/4000-129133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107373/","id":107373,"name":"Firepower!","site_detail_url":"https://comicvine.gamespot.com/punisher-5-firepower/4000-107373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139644/","id":139644,"name":"Breakdown","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-5-breakdown/4000-139644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48969/","id":48969,"name":"Mystery Date","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-unplugged-4-mystery-date/4000-48969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139917/","id":139917,"name":"Last Stand","site_detail_url":"https://comicvine.gamespot.com/bloodshot-last-stand-1-last-stand/4000-139917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42157/","id":42157,"name":"Final Round","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-50-final-round/4000-42157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-61247/","id":61247,"name":"Fire From Heaven; Prelude 1","site_detail_url":"https://comicvine.gamespot.com/sword-of-damocles-1-fire-from-heaven-prelude-1/4000-61247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51957/","id":51957,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-3/4000-51957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224635/","id":224635,"name":"Burning Bright","site_detail_url":"https://comicvine.gamespot.com/firebrand-2-burning-bright/4000-224635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42204/","id":42204,"name":"Paradiso - Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-350-paradiso-part-2/4000-42204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42198/","id":42198,"name":"Avenger","site_detail_url":"https://comicvine.gamespot.com/spawn-44-avenger/4000-42198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42246/","id":42246,"name":"Warriors","site_detail_url":"https://comicvine.gamespot.com/spawn-45-warriors/4000-42246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151736/","id":151736,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/preacher-gone-to-texas-1-volume-1/4000-151736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42201/","id":42201,"name":"The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-18-the-amazing-spider-man/4000-42201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176875/","id":176875,"name":"The Mauritz Trippazza Show","site_detail_url":"https://comicvine.gamespot.com/alan-ford-321-the-mauritz-trippazza-show/4000-176875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171939/","id":171939,"name":null,"site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-portraits-1/4000-171939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99859/","id":99859,"name":"Copycats","site_detail_url":"https://comicvine.gamespot.com/doc-samson-3-copycats/4000-99859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-85021/","id":85021,"name":"Married to the Mob: Shades of Red","site_detail_url":"https://comicvine.gamespot.com/22-brides-1-married-to-the-mob-shades-of-red/4000-85021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116248/","id":116248,"name":"","site_detail_url":"https://comicvine.gamespot.com/seven-miles-a-second-1/4000-116248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117531/","id":117531,"name":"","site_detail_url":"https://comicvine.gamespot.com/ripclaw-4/4000-117531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97940/","id":97940,"name":"Magdalena: Black and Red","site_detail_url":"https://comicvine.gamespot.com/over-the-edge-5-magdalena-black-and-red/4000-97940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105431/","id":105431,"name":"Round One","site_detail_url":"https://comicvine.gamespot.com/dc-versus-marvelmarvel-versus-dc-1-round-one/4000-105431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109322/","id":109322,"name":"The Ghosts Of Goblins Past","site_detail_url":"https://comicvine.gamespot.com/green-goblin-5-the-ghosts-of-goblins-past/4000-109322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148000/","id":148000,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-innocence-the-rebirth-of-iron-man-1/4000-148000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42062/","id":42062,"name":"King's Heeling","site_detail_url":"https://comicvine.gamespot.com/extreme-justice-13-kings-heeling/4000-42062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405756/","id":405756,"name":"Directing Traffik","site_detail_url":"https://comicvine.gamespot.com/cyberfrog-1-directing-traffik/4000-405756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107372/","id":107372,"name":"Clash","site_detail_url":"https://comicvine.gamespot.com/punisher-4-clash/4000-107372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139643/","id":139643,"name":"The Monster Within","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-4-the-monster-within/4000-139643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139414/","id":139414,"name":"Mind Bomb!","site_detail_url":"https://comicvine.gamespot.com/carnage-mind-bomb-1-mind-bomb/4000-139414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42095/","id":42095,"name":"Operation Rebirth, Part 4: American Dream","site_detail_url":"https://comicvine.gamespot.com/captain-america-448-operation-rebirth-part-4-ameri/4000-42095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96610/","id":96610,"name":"Brothers In Arms, Part. 5","site_detail_url":"https://comicvine.gamespot.com/deathblow-24-brothers-in-arms-part-5/4000-96610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187154/","id":187154,"name":"Hidden Cities Chapter 5: Elsewhere","site_detail_url":"https://comicvine.gamespot.com/xombi-21-hidden-cities-chapter-5-elsewhere/4000-187154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224634/","id":224634,"name":"Ashes to Ashes","site_detail_url":"https://comicvine.gamespot.com/firebrand-1-ashes-to-ashes/4000-224634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42096/","id":42096,"name":"Paradiso - Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-349-paradiso-part-1/4000-42096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110956/","id":110956,"name":"Evil","site_detail_url":"https://comicvine.gamespot.com/spawn-43-evil/4000-110956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108748/","id":108748,"name":"Judas Goat","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-40-judas-goat/4000-108748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97653/","id":97653,"name":"Nightmare in Scarlet, Part 3: Red Reign","site_detail_url":"https://comicvine.gamespot.com/web-of-scarlet-spider-4-nightmare-in-scarlet-part-/4000-97653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336625/","id":336625,"name":"Wrath of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/x-men-wrath-of-apocalypse-1-wrath-of-apocalypse/4000-336625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172510/","id":172510,"name":"Lovers and Heroes","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-rituals-4-lovers-and-heroes/4000-172510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99858/","id":99858,"name":"Body Double","site_detail_url":"https://comicvine.gamespot.com/doc-samson-2-body-double/4000-99858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106669/","id":106669,"name":"Eyes Of A New York Woman","site_detail_url":"https://comicvine.gamespot.com/x-men-49-eyes-of-a-new-york-woman/4000-106669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65626/","id":65626,"name":"The Return of Kaine Part 1: Reluctant Lazarus","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-231-the-return-of-kaine/4000-65626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117530/","id":117530,"name":"","site_detail_url":"https://comicvine.gamespot.com/ripclaw-3/4000-117530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131861/","id":131861,"name":"The Fall","site_detail_url":"https://comicvine.gamespot.com/spider-manpunisher-family-plot-1-the-fall/4000-131861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166265/","id":166265,"name":"Redemption","site_detail_url":"https://comicvine.gamespot.com/spider-manpunisher-family-plot-2-redemption/4000-166265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134159/","id":134159,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dhampire-stillborn-1/4000-134159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109321/","id":109321,"name":"Haunted By The Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/green-goblin-4-haunted-by-the-hobgoblin/4000-109321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51956/","id":51956,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-2/4000-51956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41953/","id":41953,"name":"Kings Healing","site_detail_url":"https://comicvine.gamespot.com/extreme-justice-12-kings-healing/4000-41953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64524/","id":64524,"name":"Target: Cable","site_detail_url":"https://comicvine.gamespot.com/x-force-50-target-cable/4000-64524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66790/","id":66790,"name":"Bad Blood","site_detail_url":"https://comicvine.gamespot.com/green-arrow-104-bad-blood/4000-66790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77941/","id":77941,"name":"Ultimate Commitment","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-0-ultimate-commitment/4000-77941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41967/","id":41967,"name":"The Roots of Madness, Part 3 of 3: The Fool of the Forth","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-67-the-roots-of-madness-par/4000-41967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139642/","id":139642,"name":"Mother Love... Mother Hate!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-3-mother-love-mother-ha/4000-139642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98676/","id":98676,"name":"The Past Anew","site_detail_url":"https://comicvine.gamespot.com/bloodshot-42-the-past-anew/4000-98676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57297/","id":57297,"name":"The Skull Jackets","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-11-the-skull-jackets/4000-57297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167037/","id":167037,"name":"Spider-Man's Greatest Team-Ups","site_detail_url":"https://comicvine.gamespot.com/spider-mans-greatest-team-ups-1-spider-mans-greate/4000-167037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70438/","id":70438,"name":" The Inner Circle","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-11-the-inner-circle/4000-70438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116215/","id":116215,"name":"Heartbreaker","site_detail_url":"https://comicvine.gamespot.com/evil-ernie-straight-to-hell-3-heartbreaker/4000-116215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41979/","id":41979,"name":"Fugitives 1","site_detail_url":"https://comicvine.gamespot.com/spawn-40-fugitives-1/4000-41979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42036/","id":42036,"name":"Fugitives 2","site_detail_url":"https://comicvine.gamespot.com/spawn-41-fugitives-2/4000-42036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97652/","id":97652,"name":"Nightmare in Scarlet, Part 1: Rude Awakening","site_detail_url":"https://comicvine.gamespot.com/web-of-scarlet-spider-3-nightmare-in-scarlet-part-/4000-97652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41984/","id":41984,"name":"Amazing Adventures","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-17-amazing-adventures/4000-41984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334104/","id":334104,"name":"Twisted Metal 2","site_detail_url":"https://comicvine.gamespot.com/twisted-metal-2-1-twisted-metal-2/4000-334104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373684/","id":373684,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/supreme-madness-1-tpb/4000-373684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99857/","id":99857,"name":"Greenness Envy","site_detail_url":"https://comicvine.gamespot.com/doc-samson-1-greenness-envy/4000-99857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119965/","id":119965,"name":"Not a Creature Was Stirring / Unto Others / Hark! The Herald! / Ambush at Angel Rock / Humbug","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-1996-not-a-creature-was-sti/4000-119965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411228/","id":411228,"name":"Zwarte nacht","site_detail_url":"https://comicvine.gamespot.com/x-mannen-162-zwarte-nacht/4000-411228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272805/","id":272805,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/justice-league-a-midsummers-nightmare-1-tpb/4000-272805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163104/","id":163104,"name":"The Flowers of Hell","site_detail_url":"https://comicvine.gamespot.com/new-gods-4-the-flowers-of-hell/4000-163104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116997/","id":116997,"name":"","site_detail_url":"https://comicvine.gamespot.com/ripclaw-2/4000-116997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41982/","id":41982,"name":"","site_detail_url":"https://comicvine.gamespot.com/velocity-3/4000-41982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78407/","id":78407,"name":"Part 1: Along Came A Spider","site_detail_url":"https://comicvine.gamespot.com/venom-along-came-a-spider-1-part-1-along-came-a-sp/4000-78407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118045/","id":118045,"name":"Mid Day Sun","site_detail_url":"https://comicvine.gamespot.com/2099-ad-genesis-1-mid-day-sun/4000-118045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125955/","id":125955,"name":"","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-12/4000-125955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109320/","id":109320,"name":"Joystick On My Mind","site_detail_url":"https://comicvine.gamespot.com/green-goblin-3-joystick-on-my-mind/4000-109320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78467/","id":78467,"name":"Cyberwar, Part 2: Caught In The Game","site_detail_url":"https://comicvine.gamespot.com/the-amazing-scarlet-spider-2-cyberwar-part-2-caugh/4000-78467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219686/","id":219686,"name":"A Matter of Faith","site_detail_url":"https://comicvine.gamespot.com/spider-man-holiday-special-1-a-matter-of-faith/4000-219686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41753/","id":41753,"name":"","site_detail_url":"https://comicvine.gamespot.com/underworld-unleashed-2/4000-41753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64523/","id":64523,"name":"Target: X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-49-target-x-force/4000-64523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420619/","id":420619,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengelyne-1-volume-1/4000-420619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400398/","id":400398,"name":"","site_detail_url":"https://comicvine.gamespot.com/far-side-gallery-5/4000-400398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41773/","id":41773,"name":"Double or Nothing","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up-1-double-or-nothing/4000-41773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115242/","id":115242,"name":"Soul 2 Soul","site_detail_url":"https://comicvine.gamespot.com/lobo-22-soul-2-soul/4000-115242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107370/","id":107370,"name":"Family","site_detail_url":"https://comicvine.gamespot.com/punisher-2-family/4000-107370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107371/","id":107371,"name":"Hatchet Job","site_detail_url":"https://comicvine.gamespot.com/punisher-3-hatchet-job/4000-107371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139641/","id":139641,"name":"Behind the Walls","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-2-behind-the-walls/4000-139641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149086/","id":149086,"name":"Pitt/Lupe Story","site_detail_url":"https://comicvine.gamespot.com/pitt-12-pittlupe-story/4000-149086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41806/","id":41806,"name":"World Engine - Run Down","site_detail_url":"https://comicvine.gamespot.com/thor-493-world-engine-run-down/4000-41806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41713/","id":41713,"name":"The Human Factor - Part One","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-53-the-human-factor-part-one/4000-41713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41824/","id":41824,"name":"The Human Factor - Part II","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-54-the-human-factor-part-ii/4000-41824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96608/","id":96608,"name":"Brothers In Arms, Part. 3","site_detail_url":"https://comicvine.gamespot.com/deathblow-22-brothers-in-arms-part-3/4000-96608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182822/","id":182822,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/vamps-1-tpb/4000-182822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142536/","id":142536,"name":"","site_detail_url":"https://comicvine.gamespot.com/lunatik-1/4000-142536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41798/","id":41798,"name":"Groddspell","site_detail_url":"https://comicvine.gamespot.com/catwoman-27-groddspell/4000-41798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41792/","id":41792,"name":"The Course of All Things","site_detail_url":"https://comicvine.gamespot.com/primal-force-14-the-course-of-all-things/4000-41792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116214/","id":116214,"name":"I'll Hate You Better","site_detail_url":"https://comicvine.gamespot.com/evil-ernie-straight-to-hell-2-ill-hate-you-better/4000-116214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41768/","id":41768,"name":"Inferno - Part 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-347-inferno-part-3/4000-41768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41987/","id":41987,"name":"Purgatorio","site_detail_url":"https://comicvine.gamespot.com/daredevil-348-purgatorio/4000-41987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41759/","id":41759,"name":"Mindgames","site_detail_url":"https://comicvine.gamespot.com/spawn-38-mindgames/4000-41759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41827/","id":41827,"name":"Noel","site_detail_url":"https://comicvine.gamespot.com/spawn-39-noel/4000-41827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118044/","id":118044,"name":"Midnight In Hell","site_detail_url":"https://comicvine.gamespot.com/2099-ad-apocalypse-1-midnight-in-hell/4000-118044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97651/","id":97651,"name":"Cyberwar, Part 1: True Deceptions","site_detail_url":"https://comicvine.gamespot.com/web-of-scarlet-spider-2-cyberwar-part-1-true-decep/4000-97651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141786/","id":141786,"name":"Cyberwar, Part 3: Along Came A Virtual Spider","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-2-cyberwar-part-3-along-came-a-virt/4000-141786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41765/","id":41765,"name":"An Amazing World","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-16-an-amazing-world/4000-41765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172511/","id":172511,"name":"Triumph of the Will","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-rituals-3-triumph-of-the-will/4000-172511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140446/","id":140446,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghost-and-the-shadow-1/4000-140446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65748/","id":65748,"name":"Big Trouble in Little Italy","site_detail_url":"https://comicvine.gamespot.com/x-men-47-big-trouble-in-little-italy/4000-65748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446403/","id":446403,"name":"Bentornato a New York!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-165-bentornato-a-new-york/4000-446403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125747/","id":125747,"name":"Destiny's Web","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-final-adventure-1-destinys-web/4000-125747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116469/","id":116469,"name":"","site_detail_url":"https://comicvine.gamespot.com/ripclaw-1/4000-116469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41761/","id":41761,"name":"","site_detail_url":"https://comicvine.gamespot.com/velocity-2/4000-41761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121143/","id":121143,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-17/4000-121143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125954/","id":125954,"name":"Official Denial","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-10-official-denial/4000-125954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41645/","id":41645,"name":"Sand Blasted","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-spider-man-3-sand-blasted/4000-41645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109319/","id":109319,"name":"Rampagin’ With the Rhino","site_detail_url":"https://comicvine.gamespot.com/green-goblin-2-rampagin-with-the-rhino/4000-109319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51955/","id":51955,"name":"","site_detail_url":"https://comicvine.gamespot.com/witchblade-1/4000-51955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110386/","id":110386,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/punisher-kills-the-marvel-universe-1-gn/4000-110386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123402/","id":123402,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/the-ray-18-monsters/4000-123402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118062/","id":118062,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-meets-spider-man-1/4000-118062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41663/","id":41663,"name":"Manhattan Rhapsody","site_detail_url":"https://comicvine.gamespot.com/wolverine-95-manhattan-rhapsody/4000-41663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78422/","id":78422,"name":"...So Shall Ye Reap","site_detail_url":"https://comicvine.gamespot.com/venom-sinner-takes-all-4-so-shall-ye-reap/4000-78422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78466/","id":78466,"name":"Virtual Mortality, Part 2: Violated By The Virtual","site_detail_url":"https://comicvine.gamespot.com/the-amazing-scarlet-spider-1-virtual-mortality-par/4000-78466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139626/","id":139626,"name":"An Obituary for Octopus","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1-an-obituary-for-octop/4000-139626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417704/","id":417704,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel-1995/4000-417704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98672/","id":98672,"name":"Mercenaries","site_detail_url":"https://comicvine.gamespot.com/bloodshot-38-mercenaries/4000-98672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98673/","id":98673,"name":"Battlezone","site_detail_url":"https://comicvine.gamespot.com/bloodshot-39-battlezone/4000-98673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41585/","id":41585,"name":"Armed Militia","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-43-armed-militia/4000-41585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41678/","id":41678,"name":"Worldengine - Part 2: Run Through","site_detail_url":"https://comicvine.gamespot.com/thor-492-worldengine-part-2-run-through/4000-41678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124975/","id":124975,"name":"","site_detail_url":"https://comicvine.gamespot.com/mutants-vs-ultras-first-encounters-1/4000-124975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41666/","id":41666,"name":"Severance","site_detail_url":"https://comicvine.gamespot.com/primal-force-13-severance/4000-41666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40184/","id":40184,"name":"New York","site_detail_url":"https://comicvine.gamespot.com/dawn-3-new-york/4000-40184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272256/","id":272256,"name":"Leve-toi et meurs","site_detail_url":"https://comicvine.gamespot.com/soda-7-leve-toi-et-meurs/4000-272256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107344/","id":107344,"name":"Condemned","site_detail_url":"https://comicvine.gamespot.com/punisher-1-condemned/4000-107344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41640/","id":41640,"name":"Inferno - Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-346-inferno-part-2/4000-41640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291629/","id":291629,"name":"Notre seigneur l'écorché","site_detail_url":"https://comicvine.gamespot.com/xoco-2-notre-seigneur-lecorche/4000-291629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41633/","id":41633,"name":"The Freak","site_detail_url":"https://comicvine.gamespot.com/spawn-37-the-freak/4000-41633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108745/","id":108745,"name":"It Tickled When We Kissed","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-37-it-tickled-when-we-kissed/4000-108745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254816/","id":254816,"name":"Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/nira-x-heatwave-series-ii-4-unfinished-business/4000-254816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97650/","id":97650,"name":"Virtual Mortality, Part 1: There's a New Spider In Town","site_detail_url":"https://comicvine.gamespot.com/web-of-scarlet-spider-1-virtual-mortality-part-1-t/4000-97650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65747/","id":65747,"name":"They're Baaack...","site_detail_url":"https://comicvine.gamespot.com/x-men-46-theyre-baaack/4000-65747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446402/","id":446402,"name":"La vita segreta di Diana Lombard","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-164-la-vita-segreta-di-diana-lombar/4000-446402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65696/","id":65696,"name":"Home Comings","site_detail_url":"https://comicvine.gamespot.com/x-factor-116-home-comings/4000-65696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141782/","id":141782,"name":"The Tomb of Kaine","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-unlimited-1-the-tomb-of-kaine/4000-141782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120921/","id":120921,"name":"Impact","site_detail_url":"https://comicvine.gamespot.com/cyber-force-origins-3-impact/4000-120921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295270/","id":295270,"name":"Kraven the Hunter!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-1-kraven-the-hun/4000-295270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41517/","id":41517,"name":"Castles In The Air","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-spider-man-2-castles-in-the-air/4000-41517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108450/","id":108450,"name":"Enter the Green Goblin","site_detail_url":"https://comicvine.gamespot.com/green-goblin-1-enter-the-green-goblin/4000-108450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64444/","id":64444,"name":"The Greatest Responsibility, Part 1 of 3: Crossroads","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-406-the-greatest-responsibi/4000-64444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64642/","id":64642,"name":"The Greatest Responsibility, Part 2 of 3: Squeeze Play!","site_detail_url":"https://comicvine.gamespot.com/spider-man-63-the-greatest-responsibility-part-2-o/4000-64642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65624/","id":65624,"name":"The Greatest Responsibility, Part 3 of 3: No More The Hero!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-229-the-greatest-respon/4000-65624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41516/","id":41516,"name":"Funeral Story","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-434-funeral-story/4000-41516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41534/","id":41534,"name":"Earthquake Logic Part 3: Seismics","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-82-earthquake-logi/4000-41534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41490/","id":41490,"name":"N.Y.P.D. Blue (Naked City Part 3)","site_detail_url":"https://comicvine.gamespot.com/preacher-7-nypd-blue-naked-city-part-3/4000-41490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41556/","id":41556,"name":"\"Worldengine\" part 1, \"Nailed Up.\"","site_detail_url":"https://comicvine.gamespot.com/thor-491-worldengine-part-1-nailed-up/4000-41556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49460/","id":49460,"name":"Feelings Of Unreality Part 1: Wheels Within Wheels","site_detail_url":"https://comicvine.gamespot.com/x-files-10-feelings-of-unreality-part-1-wheels-wit/4000-49460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190511/","id":190511,"name":"Year One","site_detail_url":"https://comicvine.gamespot.com/hawkman-annual-2-year-one/4000-190511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41543/","id":41543,"name":"Virtues","site_detail_url":"https://comicvine.gamespot.com/primal-force-12-virtues/4000-41543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41514/","id":41514,"name":"Inferno - Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-345-inferno-part-1/4000-41514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41506/","id":41506,"name":"Set Up, Part 2","site_detail_url":"https://comicvine.gamespot.com/spawn-36-set-up-part-2/4000-41506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108744/","id":108744,"name":"Venom 2099","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-36-venom-2099/4000-108744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40187/","id":40187,"name":"Shared Lives","site_detail_url":"https://comicvine.gamespot.com/green-lantern-annual-4-shared-lives/4000-40187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41537/","id":41537,"name":"Generation of Evil","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-325-generation-of-evil/4000-41537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116450/","id":116450,"name":"","site_detail_url":"https://comicvine.gamespot.com/vogue-1/4000-116450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116470/","id":116470,"name":"","site_detail_url":"https://comicvine.gamespot.com/ripclaw-special-1/4000-116470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158029/","id":158029,"name":"Regal Vengeance 1 of 3: Fear and Trembling","site_detail_url":"https://comicvine.gamespot.com/union-8-regal-vengeance-1-of-3-fear-and-trembling/4000-158029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116189/","id":116189,"name":"Beyond the Black","site_detail_url":"https://comicvine.gamespot.com/evil-ernie-straight-to-hell-1-beyond-the-black/4000-116189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107455/","id":107455,"name":"X-Over","site_detail_url":"https://comicvine.gamespot.com/the-all-new-exiles-vs-x-men-0-x-over/4000-107455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125950/","id":125950,"name":"Armed Response","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-8-armed-response/4000-125950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41388/","id":41388,"name":"To Serve And Protect","site_detail_url":"https://comicvine.gamespot.com/untold-tales-of-spider-man-1-to-serve-and-protect/4000-41388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239412/","id":239412,"name":"Spiderman!","site_detail_url":"https://comicvine.gamespot.com/disney-adventures-199509-2-spiderman/4000-239412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41375/","id":41375,"name":"Blood Feud Part 4","site_detail_url":"https://comicvine.gamespot.com/spawn-blood-feud-4-blood-feud-part-4/4000-41375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41385/","id":41385,"name":"Punishment Fit the Crime","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-433-punishment-fit-the-crime/4000-41385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129132/","id":129132,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-6/4000-129132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41329/","id":41329,"name":"Chop Shop","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-39-chop-shop/4000-41329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41443/","id":41443,"name":"Body Shop","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-40-body-shop/4000-41443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134665/","id":134665,"name":"Disordered Minds","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-batman-1-disordered-minds/4000-134665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105630/","id":105630,"name":"New York's Finest (Naked City Part 2)","site_detail_url":"https://comicvine.gamespot.com/preacher-6-new-yorks-finest-naked-city-part-2/4000-105630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98668/","id":98668,"name":"Devil Inside","site_detail_url":"https://comicvine.gamespot.com/bloodshot-34-devil-inside/4000-98668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98669/","id":98669,"name":"Rampage Lives!!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-35-rampage-lives/4000-98669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153551/","id":153551,"name":"Ashes Of The Past - Part 2: White Fire, Black Heart","site_detail_url":"https://comicvine.gamespot.com/timewalker-13-ashes-of-the-past-part-2-white-fire-/4000-153551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41416/","id":41416,"name":"Siege","site_detail_url":"https://comicvine.gamespot.com/primal-force-11-siege/4000-41416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40178/","id":40178,"name":"A Bag of Shells","site_detail_url":"https://comicvine.gamespot.com/dawn-2-a-bag-of-shells/4000-40178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41424/","id":41424,"name":"THE STORM AND THE SACRIFICE!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-24-the-storm-and-the-sacrifice/4000-41424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41374/","id":41374,"name":"Set Up, Part 1","site_detail_url":"https://comicvine.gamespot.com/spawn-35-set-up-part-1/4000-41374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108743/","id":108743,"name":"Blood from a Stone","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-35-blood-from-a-stone/4000-108743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152967/","id":152967,"name":"Fall","site_detail_url":"https://comicvine.gamespot.com/doom-2099-33-fall/4000-152967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254815/","id":254815,"name":"Invasions, Decisions","site_detail_url":"https://comicvine.gamespot.com/nira-x-heatwave-series-ii-3-invasions-decisions/4000-254815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150974/","id":150974,"name":"","site_detail_url":"https://comicvine.gamespot.com/sandman-midnight-theatre-1/4000-150974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41349/","id":41349,"name":"Fast Friends?, Part 1","site_detail_url":"https://comicvine.gamespot.com/green-lantern-66-fast-friends-part-1/4000-41349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41406/","id":41406,"name":"Women In Flight","site_detail_url":"https://comicvine.gamespot.com/ruins-2-women-in-flight/4000-41406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66480/","id":66480,"name":"In Chains Part IV: Crimes and Punishements","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-65-in-chains-part-iv-crimes-and-punish/4000-66480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117648/","id":117648,"name":"Hollow Man","site_detail_url":"https://comicvine.gamespot.com/iron-man-320-hollow-man/4000-117648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125949/","id":125949,"name":"","site_detail_url":"https://comicvine.gamespot.com/leonard-nimoys-primortals-7/4000-125949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41189/","id":41189,"name":"Childhood's End - Part One","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-37-childhoods-end-part-one/4000-41189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41312/","id":41312,"name":"Childhood's End - Part Two","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-38-childhoods-end-part-two/4000-41312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196059/","id":196059,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-the-jackal-files-1/4000-196059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41211/","id":41211,"name":"The Once and Future Monarch","site_detail_url":"https://comicvine.gamespot.com/extreme-justice-7-the-once-and-future-monarch/4000-41211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41243/","id":41243,"name":"Blood Feud Part 3","site_detail_url":"https://comicvine.gamespot.com/spawn-blood-feud-3-blood-feud-part-3/4000-41243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41255/","id":41255,"name":"Shades of Green","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-432-shades-of-green/4000-41255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190583/","id":190583,"name":"Maximum Clonage Part 1: ...And the Jackel Cries, \"Death!\"","site_detail_url":"https://comicvine.gamespot.com/spider-man-maximum-clonage-1-maximum-clonage-part-/4000-190583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138964/","id":138964,"name":"X-Men: Mutant Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-genesis-1-x-men-mutant-genesis/4000-138964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41222/","id":41222,"name":"Say A Prayer For Seven Bullets (Naked City Part 1)","site_detail_url":"https://comicvine.gamespot.com/preacher-5-say-a-prayer-for-seven-bullets-naked-ci/4000-41222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98666/","id":98666,"name":"Vampires In The Village","site_detail_url":"https://comicvine.gamespot.com/bloodshot-32-vampires-in-the-village/4000-98666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98667/","id":98667,"name":"Bloodshot Is Mine!!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-33-bloodshot-is-mine/4000-98667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41258/","id":41258,"name":"Hel and High Water","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-489-hel-and-high-water/4000-41258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41254/","id":41254,"name":"Notes From the Underground","site_detail_url":"https://comicvine.gamespot.com/generation-x-6-notes-from-the-underground/4000-41254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109166/","id":109166,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-50-revelations/4000-109166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137421/","id":137421,"name":"Mongul","site_detail_url":"https://comicvine.gamespot.com/showcase-95-7-mongul/4000-137421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41286/","id":41286,"name":"The Inside","site_detail_url":"https://comicvine.gamespot.com/primal-force-10-the-inside/4000-41286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41259/","id":41259,"name":"What If Peter Parker Had to Destroy Spider-Man","site_detail_url":"https://comicvine.gamespot.com/what-if-76-what-if-peter-parker-had-to-destroy-spi/4000-41259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41253/","id":41253,"name":"Recross","site_detail_url":"https://comicvine.gamespot.com/daredevil-343-recross/4000-41253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41242/","id":41242,"name":"Ripples","site_detail_url":"https://comicvine.gamespot.com/spawn-34-ripples/4000-41242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152966/","id":152966,"name":"Rise","site_detail_url":"https://comicvine.gamespot.com/doom-2099-32-rise/4000-152966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254814/","id":254814,"name":"Prime target","site_detail_url":"https://comicvine.gamespot.com/nira-x-heatwave-series-ii-2-prime-target/4000-254814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41250/","id":41250,"name":"Broad Stripes and White Stripes","site_detail_url":"https://comicvine.gamespot.com/captain-america-442-broad-stripes-and-white-stripe/4000-41250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107880/","id":107880,"name":"Sick of It All","site_detail_url":"https://comicvine.gamespot.com/druid-4-sick-of-it-all/4000-107880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172341/","id":172341,"name":"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-rituals-1/4000-172341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41278/","id":41278,"name":"A Nation Rising","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-323-a-nation-rising/4000-41278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107752/","id":107752,"name":"","site_detail_url":"https://comicvine.gamespot.com/cyber-force-15/4000-107752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158028/","id":158028,"name":"One Month","site_detail_url":"https://comicvine.gamespot.com/union-7-one-month/4000-158028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258747/","id":258747,"name":"The Pack Attacks","site_detail_url":"https://comicvine.gamespot.com/gargoyles-7-the-pack-attacks/4000-258747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106333/","id":106333,"name":"Racing the Night","site_detail_url":"https://comicvine.gamespot.com/x-men-prime-1-racing-the-night/4000-106333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123395/","id":123395,"name":"Ray Terrill is Mad as Hell -- and He Isn't Going to Take it Anymore","site_detail_url":"https://comicvine.gamespot.com/the-ray-14-ray-terrill-is-mad-as-hell-and-he-isnt-/4000-123395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41101/","id":41101,"name":"Blood Feud Part 2","site_detail_url":"https://comicvine.gamespot.com/spawn-blood-feud-2-blood-feud-part-2/4000-41101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65621/","id":65621,"name":"The Trial of Peter Parker, Part 4 of 4: The Final Verdict","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-226-the-trial-of-peter-/4000-65621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41115/","id":41115,"name":"Down Under","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-431-down-under/4000-41115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140411/","id":140411,"name":"Planet of the Symbiotes, Part 2: Lurkers","site_detail_url":"https://comicvine.gamespot.com/spider-man-super-special-1-planet-of-the-symbiotes/4000-140411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41046/","id":41046,"name":"Mortal Kin - Part 3: Fatal Thrust","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-35-mortal-kin-part-3-fatal-thrust/4000-41046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41176/","id":41176,"name":"Lest Darkness Fall","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-36-lest-darkness-fall/4000-41176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153547/","id":153547,"name":"In Out In","site_detail_url":"https://comicvine.gamespot.com/timewalker-9-in-out-in/4000-153547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98664/","id":98664,"name":"Enter:Proteus!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-30-enterproteus/4000-98664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98665/","id":98665,"name":"Shut Down!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-31-shut-down/4000-98665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41118/","id":41118,"name":"To Hela and Back!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-488-to-hela-and-back/4000-41118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41114/","id":41114,"name":"Don't Touch That Dial!","site_detail_url":"https://comicvine.gamespot.com/generation-x-5-dont-touch-that-dial/4000-41114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41050/","id":41050,"name":"Brave New World - Part 1","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-46-brave-new-world-part-1/4000-41050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109167/","id":109167,"name":"All the King's Men","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-49-all-the-kings-men/4000-109167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158027/","id":158027,"name":"Sidetracked","site_detail_url":"https://comicvine.gamespot.com/union-6-sidetracked/4000-158027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41150/","id":41150,"name":"Shell Game","site_detail_url":"https://comicvine.gamespot.com/primal-force-9-shell-game/4000-41150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107337/","id":107337,"name":"Ashes to Ashes","site_detail_url":"https://comicvine.gamespot.com/ash-4-ashes-to-ashes/4000-107337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41111/","id":41111,"name":"Malignancy","site_detail_url":"https://comicvine.gamespot.com/daredevil-342-malignancy/4000-41111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41100/","id":41100,"name":"Shadows","site_detail_url":"https://comicvine.gamespot.com/spawn-33-shadows/4000-41100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254813/","id":254813,"name":"Heatwave","site_detail_url":"https://comicvine.gamespot.com/nira-x-heatwave-series-ii-1-heatwave/4000-254813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107429/","id":107429,"name":"Countdown 1: The Murder Men","site_detail_url":"https://comicvine.gamespot.com/the-punisher-104-countdown-1-the-murder-men/4000-107429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107879/","id":107879,"name":"Dream to Me","site_detail_url":"https://comicvine.gamespot.com/druid-3-dream-to-me/4000-107879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41071/","id":41071,"name":"Parallax View: The Resurrection of Hal Jordan, Part 2","site_detail_url":"https://comicvine.gamespot.com/green-lantern-64-parallax-view-the-resurrection-of/4000-41071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41143/","id":41143,"name":"Dark Walk","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-322-dark-walk/4000-41143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145265/","id":145265,"name":"","site_detail_url":"https://comicvine.gamespot.com/barbi-twins-adventures-1/4000-145265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107223/","id":107223,"name":"Winter Carnival, First Night, Deal with the Devil, The Man in the Sky, Open Volley","site_detail_url":"https://comicvine.gamespot.com/x-men-rarities-1-winter-carnival-first-night-deal-/4000-107223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134446/","id":134446,"name":"Night of the Impaler; The Secrets of Spider-Man 2099; Steel Rain; The Dump","site_detail_url":"https://comicvine.gamespot.com/2099-unlimited-9-night-of-the-impaler-the-secrets-/4000-134446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153545/","id":153545,"name":"The Harbinger Wars - Part 2","site_detail_url":"https://comicvine.gamespot.com/timewalker-7-the-harbinger-wars-part-2/4000-153545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40961/","id":40961,"name":"Blood Feud Part 1","site_detail_url":"https://comicvine.gamespot.com/spawn-blood-feud-1-blood-feud-part-1/4000-40961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421164/","id":421164,"name":"Ocean Of Evil; Vessel Of The Doomed","site_detail_url":"https://comicvine.gamespot.com/angela-special-edition-1-ocean-of-evil-vessel-of-t/4000-421164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40954/","id":40954,"name":"Sisters!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-98-sisters/4000-40954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105975/","id":105975,"name":"...Endings","site_detail_url":"https://comicvine.gamespot.com/x-men-omega-1-endings/4000-105975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40973/","id":40973,"name":"Reckonings","site_detail_url":"https://comicvine.gamespot.com/factor-x-4-reckonings/4000-40973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146938/","id":146938,"name":"Postcards","site_detail_url":"https://comicvine.gamespot.com/harbinger-41-postcards/4000-146938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40981/","id":40981,"name":"Hel on Earth!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-487-hel-on-earth/4000-40981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158799/","id":158799,"name":"Showdown With The Skrulls","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-8-showdown-with-/4000-158799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178805/","id":178805,"name":"Like A Piece Of Meat","site_detail_url":"https://comicvine.gamespot.com/prime-23-like-a-piece-of-meat/4000-178805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178806/","id":178806,"name":"Prime Revealed","site_detail_url":"https://comicvine.gamespot.com/prime-24-prime-revealed/4000-178806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218173/","id":218173,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-hells-heat-wave-3/4000-218173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40991/","id":40991,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-2/4000-40991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41013/","id":41013,"name":"Metamorphosis","site_detail_url":"https://comicvine.gamespot.com/primal-force-8-metamorphosis/4000-41013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40159/","id":40159,"name":"Ascension","site_detail_url":"https://comicvine.gamespot.com/dawn-1-ascension/4000-40159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40972/","id":40972,"name":"Duplicity","site_detail_url":"https://comicvine.gamespot.com/daredevil-341-duplicity/4000-40972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40960/","id":40960,"name":"Appearances","site_detail_url":"https://comicvine.gamespot.com/spawn-32-appearances/4000-40960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134488/","id":134488,"name":"American Way","site_detail_url":"https://comicvine.gamespot.com/doom-2099-30-american-way/4000-134488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40970/","id":40970,"name":"Dawn's Early Light","site_detail_url":"https://comicvine.gamespot.com/captain-america-440-dawns-early-light/4000-40970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107428/","id":107428,"name":"Countdown 4: The Butcher's Block","site_detail_url":"https://comicvine.gamespot.com/the-punisher-103-countdown-4-the-butchers-block/4000-107428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107878/","id":107878,"name":"Mind to Meat","site_detail_url":"https://comicvine.gamespot.com/druid-2-mind-to-meat/4000-107878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40935/","id":40935,"name":"Parallax View: The Resurrection of Hal Jordan, Part 1","site_detail_url":"https://comicvine.gamespot.com/green-lantern-63-parallax-view-the-resurrection-of/4000-40935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369165/","id":369165,"name":"Book 1: Beginnings","site_detail_url":"https://comicvine.gamespot.com/spawn-beginnings-1-book-1-beginnings/4000-369165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158026/","id":158026,"name":"Sideways","site_detail_url":"https://comicvine.gamespot.com/union-5-sideways/4000-158026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143698/","id":143698,"name":"\" A Touch of SCANDAL\"","site_detail_url":"https://comicvine.gamespot.com/regulators-1-a-touch-of-scandal/4000-143698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65619/","id":65619,"name":"The Mark of Kaine Part 4: The Assassin With My Face","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-224-the-mark-of-kaine-p/4000-65619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57296/","id":57296,"name":"The Mark of Kaine, Part Five of Five: The Sinister Six Strike!","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-9-the-mark-of-kaine-part-five/4000-57296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258744/","id":258744,"name":"Blood From A Stone","site_detail_url":"https://comicvine.gamespot.com/gargoyles-4-blood-from-a-stone/4000-258744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64440/","id":64440,"name":"The Mark of Kaine, Part Two of Five: Down in the Darkness","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-401-the-mark-of-kaine-part-/4000-64440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40789/","id":40789,"name":"Mortal Kin - Part 1: Sharper Than A Serpent's Tooth","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-33-mortal-kin-part-1-sharper-than-/4000-40789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40823/","id":40823,"name":"Nasty Infections, Part One: Grotesquery","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-59-nasty-infections-part-on/4000-40823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40850/","id":40850,"name":"Open Wounds","site_detail_url":"https://comicvine.gamespot.com/factor-x-3-open-wounds/4000-40850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40864/","id":40864,"name":"Last Stand","site_detail_url":"https://comicvine.gamespot.com/x-universe-1-last-stand/4000-40864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40858/","id":40858,"name":"The Coming of Kurse!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-486-the-coming-of-kurse/4000-40858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153554/","id":153554,"name":"Yearbook","site_detail_url":"https://comicvine.gamespot.com/timewalker-yearbook-1-yearbook/4000-153554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158798/","id":158798,"name":"The Skrulls Strike","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-7-the-skrulls-st/4000-158798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218171/","id":218171,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-hells-heat-wave-2/4000-218171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239430/","id":239430,"name":"Sci-fi special","site_detail_url":"https://comicvine.gamespot.com/disney-adventures-199505-sci-fi-special/4000-239430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40845/","id":40845,"name":"In Excess","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-3-in-excess/4000-40845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40849/","id":40849,"name":"Subversion","site_detail_url":"https://comicvine.gamespot.com/daredevil-340-subversion/4000-40849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40836/","id":40836,"name":"The Homecoming","site_detail_url":"https://comicvine.gamespot.com/spawn-31-the-homecoming/4000-40836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152964/","id":152964,"name":"American Caesar","site_detail_url":"https://comicvine.gamespot.com/doom-2099-29-american-caesar/4000-152964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40867/","id":40867,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengelyne-1/4000-40867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40847/","id":40847,"name":"O'er the Ramparts We Watched","site_detail_url":"https://comicvine.gamespot.com/captain-america-439-oer-the-ramparts-we-watched/4000-40847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107414/","id":107414,"name":"Under The Gun","site_detail_url":"https://comicvine.gamespot.com/the-punisher-102-under-the-gun/4000-107414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107777/","id":107777,"name":"Sick of This","site_detail_url":"https://comicvine.gamespot.com/druid-1-sick-of-this/4000-107777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40812/","id":40812,"name":"Ganthet's Tale Redux","site_detail_url":"https://comicvine.gamespot.com/green-lantern-62-ganthets-tale-redux/4000-40812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80248/","id":80248,"name":"Book Three: Hour of the Wolf","site_detail_url":"https://comicvine.gamespot.com/elektra-root-of-evil-3-book-three-hour-of-the-wolf/4000-80248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411167/","id":411167,"name":"Big Arms Little Scabs!","site_detail_url":"https://comicvine.gamespot.com/king-of-the-dead-4-big-arms-little-scabs/4000-411167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150599/","id":150599,"name":"","site_detail_url":"https://comicvine.gamespot.com/ripclaw-2/4000-150599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118043/","id":118043,"name":"Everything is Fair","site_detail_url":"https://comicvine.gamespot.com/2099-ad-1-everything-is-fair/4000-118043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40838/","id":40838,"name":"Life & Death","site_detail_url":"https://comicvine.gamespot.com/supreme-28-life-death/4000-40838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64439/","id":64439,"name":"A Death in the Family","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-400-a-death-in-the-family/4000-64439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105758/","id":105758,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-the-chosen-1/4000-105758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108738/","id":108738,"name":"Bugaboo","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-30-bugaboo/4000-108738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65618/","id":65618,"name":"Aftershocks Part 2- Schemes And Dreams: For Future Screams; The Parker Legacy, Part Three of Three: The Beginning","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-223-aftershocks-part-2-/4000-65618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129093/","id":129093,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-5/4000-129093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40654/","id":40654,"name":"A Small Conflict","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-32-a-small-conflict/4000-40654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153627/","id":153627,"name":"Layers Upon Layers","site_detail_url":"https://comicvine.gamespot.com/the-visitor-1-layers-upon-layers/4000-153627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40726/","id":40726,"name":"Abandoned Children","site_detail_url":"https://comicvine.gamespot.com/factor-x-2-abandoned-children/4000-40726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40762/","id":40762,"name":"Streets of Fire, Hearts of Rage","site_detail_url":"https://comicvine.gamespot.com/fantastic-force-6-streets-of-fire-hearts-of-rage/4000-40762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98660/","id":98660,"name":"Uzzi And His Killer Clown Commandos!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-26-uzzi-and-his-killer-clown-commandos/4000-98660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146933/","id":146933,"name":"Renegades","site_detail_url":"https://comicvine.gamespot.com/harbinger-39-renegades/4000-146933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137379/","id":137379,"name":"From the Inside Out","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-power-of-terror-4-from-the-inside-o/4000-137379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109171/","id":109171,"name":"Connections","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-46-connections/4000-109171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40687/","id":40687,"name":"The Silent Place","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-98-the-silent-place/4000-40687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218170/","id":218170,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-hells-heat-wave-1/4000-218170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223275/","id":223275,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-greatest-villains-of-the-fantastic-four-1-tpb/4000-223275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105543/","id":105543,"name":"Sacrificial Lambs","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-2-sacrificial-lambs/4000-105543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107432/","id":107432,"name":"Into Into Infinity / If I Should Die--","site_detail_url":"https://comicvine.gamespot.com/runesilver-surfer-1-into-into-infinity-if-i-should/4000-107432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80247/","id":80247,"name":"Book Two: Murderer's Bible","site_detail_url":"https://comicvine.gamespot.com/elektra-root-of-evil-2-book-two-murderer-s-bible/4000-80247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40725/","id":40725,"name":"Betrayal","site_detail_url":"https://comicvine.gamespot.com/daredevil-339-betrayal/4000-40725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40710/","id":40710,"name":"The Clan","site_detail_url":"https://comicvine.gamespot.com/spawn-30-the-clan/4000-40710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40722/","id":40722,"name":"The Bombs Bursting in Air","site_detail_url":"https://comicvine.gamespot.com/captain-america-438-the-bombs-bursting-in-air/4000-40722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121131/","id":121131,"name":"Post-Mortem","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-10-post-mortem/4000-121131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66568/","id":66568,"name":"The River Runs Red","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-32-the-river-runs-red/4000-66568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107413/","id":107413,"name":"Dead Tomorrows","site_detail_url":"https://comicvine.gamespot.com/the-punisher-101-dead-tomorrows/4000-107413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40720/","id":40720,"name":"No Exit","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-2-no-exit/4000-40720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139949/","id":139949,"name":"Part 3 Redemption","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-3-part-3-redemption/4000-139949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223083/","id":223083,"name":"Wonder Woman: The Contest","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-the-contest-1-wonder-woman-the-contes/4000-223083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384400/","id":384400,"name":"\"Dr. Strange Master of Black Magic!\"","site_detail_url":"https://comicvine.gamespot.com/marvel-milestone-edition-strange-tales-1-dr-strang/4000-384400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134447/","id":134447,"name":"Public Enemy Number One; Behind the Eight Ball; Rumors of War","site_detail_url":"https://comicvine.gamespot.com/2099-unlimited-8-public-enemy-number-one-behind-th/4000-134447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258743/","id":258743,"name":"Rude Awakening","site_detail_url":"https://comicvine.gamespot.com/gargoyles-3-rude-awakening/4000-258743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157510/","id":157510,"name":"Codice d'onore","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-21-codice-donore/4000-157510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65547/","id":65547,"name":"Smoke and Mirrors, Part 1: The Call","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-122-smoke-and-mirrors-part-1-the/4000-65547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211817/","id":211817,"name":"Puppet","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-clone-journal-1-puppet/4000-211817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40545/","id":40545,"name":"High Stakes","site_detail_url":"https://comicvine.gamespot.com/extreme-justice-2-high-stakes/4000-40545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108737/","id":108737,"name":"Going Out of Business Sale","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-29-going-out-of-business-sale/4000-108737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65617/","id":65617,"name":"Players and Pawns Part 1: False Truths","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-222-players-and-pawns-p/4000-65617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409615/","id":409615,"name":"The Return of Doomsday!","site_detail_url":"https://comicvine.gamespot.com/superman-and-batman-magazine-7-the-return-of-dooms/4000-409615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40522/","id":40522,"name":"The Immortal War - Part 4: The Last Trap","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-31-the-immortal-war-part-4-the-las/4000-40522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153542/","id":153542,"name":"Mac!","site_detail_url":"https://comicvine.gamespot.com/timewalker-4-mac/4000-153542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105613/","id":105613,"name":"Origins","site_detail_url":"https://comicvine.gamespot.com/x-men-chronicles-1-origins/4000-105613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40587/","id":40587,"name":"Sinister Neglect","site_detail_url":"https://comicvine.gamespot.com/factor-x-1-sinister-neglect/4000-40587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40598/","id":40598,"name":"Unforgiven Trespasses","site_detail_url":"https://comicvine.gamespot.com/weapon-x-1-unforgiven-trespasses/4000-40598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40582/","id":40582,"name":"Once More, With Feeling","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1-once-more-with-feeling/4000-40582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40581/","id":40581,"name":"The Crossing Guards","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-1-the-crossing-guards/4000-40581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146931/","id":146931,"name":"Pierced Hearts","site_detail_url":"https://comicvine.gamespot.com/harbinger-38-pierced-hearts/4000-146931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40597/","id":40597,"name":"The God in the War Machine","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-484-the-god-in-the-war-machine/4000-40597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70142/","id":70142,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-5/4000-70142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137378/","id":137378,"name":"Division of Power","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-power-of-terror-3-division-of-power/4000-137378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40552/","id":40552,"name":"A Burning Coal","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-97-a-burning-coal/4000-40552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40548/","id":40548,"name":"Capital Punishment","site_detail_url":"https://comicvine.gamespot.com/green-lantern-60-capital-punishment/4000-40548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178799/","id":178799,"name":"Cupid's Arrow","site_detail_url":"https://comicvine.gamespot.com/prime-20-cupids-arrow/4000-178799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40558/","id":40558,"name":"Life is Short, Part Three: Dance to the Music","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-57-life-is-short-part-three/4000-40558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116556/","id":116556,"name":"","site_detail_url":"https://comicvine.gamespot.com/looney-tunes-12/4000-116556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40600/","id":40600,"name":"The Infernal Gallop","site_detail_url":"https://comicvine.gamespot.com/x-calibre-1-the-infernal-gallop/4000-40600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176564/","id":176564,"name":"The Tarantula","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-the-tarantula-1-the-tarant/4000-176564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107465/","id":107465,"name":"Something Like Love","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-37-something-like-love/4000-107465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80246/","id":80246,"name":"Book One: The Force of the Killer","site_detail_url":"https://comicvine.gamespot.com/elektra-root-of-evil-1-book-one-the-force-of-the-k/4000-80246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40586/","id":40586,"name":"Treachery","site_detail_url":"https://comicvine.gamespot.com/daredevil-338-treachery/4000-40586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40574/","id":40574,"name":"Father","site_detail_url":"https://comicvine.gamespot.com/spawn-29-father/4000-40574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153036/","id":153036,"name":"Fire with Fire","site_detail_url":"https://comicvine.gamespot.com/punisher-year-one-4-fire-with-fire/4000-153036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40636/","id":40636,"name":"The Armageddon Agenda!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-18-the-armageddon-agenda/4000-40636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121130/","id":121130,"name":"Dead on Arrival","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-9-dead-on-arrival/4000-121130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66567/","id":66567,"name":"Hawk","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-31-hawk/4000-66567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107412/","id":107412,"name":"The Cage","site_detail_url":"https://comicvine.gamespot.com/the-punisher-100-the-cage/4000-107412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40557/","id":40557,"name":"Dr. Death: Final Act","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-24-dr-death-final-act/4000-40557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111662/","id":111662,"name":"","site_detail_url":"https://comicvine.gamespot.com/happy-birthday-martha-washington-1/4000-111662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158024/","id":158024,"name":"Give and Take!","site_detail_url":"https://comicvine.gamespot.com/union-2-give-and-take/4000-158024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258742/","id":258742,"name":"Always Darkest Before Dawn","site_detail_url":"https://comicvine.gamespot.com/gargoyles-2-always-darkest-before-dawn/4000-258742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105731/","id":105731,"name":"Beginnings","site_detail_url":"https://comicvine.gamespot.com/x-men-alpha-1-beginnings/4000-105731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65546/","id":65546,"name":"Web of Life, Part 3: The Hunting","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-121-web-of-life-part-3-the-hunti/4000-65546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40411/","id":40411,"name":"Mad Dogs and Superheroes!","site_detail_url":"https://comicvine.gamespot.com/extreme-justice-1-mad-dogs-and-superheroes/4000-40411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119114/","id":119114,"name":"Creatures of the Night book 1","site_detail_url":"https://comicvine.gamespot.com/vampirella-shadowhawk-1-creatures-of-the-night-boo/4000-119114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40388/","id":40388,"name":"The Immortal War - Part 3: A Friend In Need","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-30-the-immortal-war-part-3-a-frien/4000-40388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104713/","id":104713,"name":"Mac!","site_detail_url":"https://comicvine.gamespot.com/timewalker-3-mac/4000-104713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40465/","id":40465,"name":"The End of the Matter","site_detail_url":"https://comicvine.gamespot.com/what-if-70-the-end-of-the-matter/4000-40465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98658/","id":98658,"name":"The Blind Leading The Blind","site_detail_url":"https://comicvine.gamespot.com/bloodshot-24-the-blind-leading-the-blind/4000-98658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146924/","id":146924,"name":"No Tomorrow , Part 3 of 3: \"The Truth\"","site_detail_url":"https://comicvine.gamespot.com/harbinger-37-no-tomorrow-part-3-of-3-the-truth/4000-146924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64517/","id":64517,"name":"Teapot in a Tempest","site_detail_url":"https://comicvine.gamespot.com/x-force-43-teapot-in-a-tempest/4000-64517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70141/","id":70141,"name":"Atlantis Attacks!","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-4-atlantis-attac/4000-70141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137377/","id":137377,"name":"Warzone","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-power-of-terror-2-warzone/4000-137377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164521/","id":164521,"name":"Forever Evil Chapter 1: Dark Titans","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-119-forever-evil-chapter-1-dark-tit/4000-164521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66566/","id":66566,"name":"New Blood","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-30-new-blood/4000-66566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244945/","id":244945,"name":"Fiends In High Places","site_detail_url":"https://comicvine.gamespot.com/gargoyles-1-fiends-in-high-places/4000-244945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40494/","id":40494,"name":"Hunters","site_detail_url":"https://comicvine.gamespot.com/primal-force-4-hunters/4000-40494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259824/","id":259824,"name":"Fantastic Four: Nobody Gets Out Alive","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-nobody-gets-out-alive-1-fantastic-f/4000-259824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65131/","id":65131,"name":"The Darkest Hour","site_detail_url":"https://comicvine.gamespot.com/the-prowler-4-the-darkest-hour/4000-65131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40443/","id":40443,"name":"Protector","site_detail_url":"https://comicvine.gamespot.com/spawn-28-protector/4000-40443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153037/","id":153037,"name":"In Memoriam","site_detail_url":"https://comicvine.gamespot.com/punisher-year-one-3-in-memoriam/4000-153037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121129/","id":121129,"name":"Rites & Passages","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-8-rites-passages/4000-121129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139950/","id":139950,"name":"","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-2/4000-139950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65616/","id":65616,"name":"Web of Death, 4 of 4: A Time to Die!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-221-web-of-death-4-of-4/4000-65616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57295/","id":57295,"name":"Behind The Terror","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-8-behind-the-terror/4000-57295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120922/","id":120922,"name":"Stryker","site_detail_url":"https://comicvine.gamespot.com/cyber-force-origins-2-stryker/4000-120922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107743/","id":107743,"name":"S.H.O.C. Waves","site_detail_url":"https://comicvine.gamespot.com/cyber-force-10-shoc-waves/4000-107743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40424/","id":40424,"name":"Dr Death: Act Three","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-23-dr-death-act-three/4000-40424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121053/","id":121053,"name":"","site_detail_url":"https://comicvine.gamespot.com/badrock-and-company-6/4000-121053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40361/","id":40361,"name":"The Mask Of Ogun","site_detail_url":"https://comicvine.gamespot.com/wolverine-89-the-mask-of-ogun/4000-40361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129130/","id":129130,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-4/4000-129130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40242/","id":40242,"name":"The Immortal War - Part 2: Burden Of Knowing","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-29-the-immortal-war-part-2-burden-/4000-40242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40280/","id":40280,"name":"Life is Short, Part One: First Third","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-55-life-is-short-part-one-f/4000-40280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366721/","id":366721,"name":"Grudge Match/Krask Force","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-16-gr/4000-366721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186282/","id":186282,"name":"Strange Visitor","site_detail_url":"https://comicvine.gamespot.com/superman-annual-7-strange-visitor/4000-186282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415946/","id":415946,"name":"","site_detail_url":"https://comicvine.gamespot.com/sensational-spider-man-wizard-mini-comic-3/4000-415946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98657/","id":98657,"name":"A Touch Of Fire","site_detail_url":"https://comicvine.gamespot.com/bloodshot-23-a-touch-of-fire/4000-98657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40244/","id":40244,"name":"No Tomorrow, Part 2 of 3: \"Future Shock\"","site_detail_url":"https://comicvine.gamespot.com/harbinger-36-no-tomorrow-part-2-of-3-future-shock/4000-40244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105603/","id":105603,"name":"","site_detail_url":"https://comicvine.gamespot.com/green-lanternsilver-surfer-unholy-alliances-1/4000-105603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40247/","id":40247,"name":"From A World Away","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-40-from-a-world-away/4000-40247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70140/","id":70140,"name":"The Fury of the Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-3-the-fury-of-th/4000-70140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137376/","id":137376,"name":"Beneficial Alliances","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-power-of-terror-1-beneficial-allian/4000-137376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109175/","id":109175,"name":"The Hunted - Part IV: Bird of Prey","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-43-the-hunted-part-iv-b/4000-109175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162512/","id":162512,"name":"The Web of Eternal Vows","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-annual-4-the-web-of-ete/4000-162512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166451/","id":166451,"name":"Spider-Man vs. Green Goblin","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-green-goblin-1-spider-man-vs-green-g/4000-166451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40269/","id":40269,"name":"Conjuring","site_detail_url":"https://comicvine.gamespot.com/green-lantern-58-conjuring/4000-40269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167039/","id":167039,"name":"Spider-Man's Greatest Villains","site_detail_url":"https://comicvine.gamespot.com/spider-mans-greatest-villains-1-spider-mans-greate/4000-167039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66565/","id":66565,"name":"Ashes to Ashes","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-29-ashes-to-ashes/4000-66565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135040/","id":135040,"name":"Proving Groud","site_detail_url":"https://comicvine.gamespot.com/outsiders-14-proving-groud/4000-135040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230170/","id":230170,"name":"Inner Demons","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-marvels-inner-demons-1-inner-demons/4000-230170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40303/","id":40303,"name":"Extreme Sacrifice, Part 2 of 8","site_detail_url":"https://comicvine.gamespot.com/supreme-23-extreme-sacrifice-part-2-of-8/4000-40303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107483/","id":107483,"name":"Final Entry Part 4: Deadstop!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-74-final-entry-part-4-dea/4000-107483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65128/","id":65128,"name":"Enlightened Gloom","site_detail_url":"https://comicvine.gamespot.com/the-prowler-3-enlightened-gloom/4000-65128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40316/","id":40316,"name":"Fathoms Of Humanity - Part 4: Resurrection Of Duty","site_detail_url":"https://comicvine.gamespot.com/daredevil-336-fathoms-of-humanity-part-4-resurrect/4000-40316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40301/","id":40301,"name":"Cursed","site_detail_url":"https://comicvine.gamespot.com/spawn-27-cursed/4000-40301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134448/","id":134448,"name":"Mirrors; Midsummer Knights 2099; Old Red-Eyes is Back","site_detail_url":"https://comicvine.gamespot.com/2099-unlimited-7-mirrors-midsummer-knights-2099-ol/4000-134448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153038/","id":153038,"name":"Post Mortem","site_detail_url":"https://comicvine.gamespot.com/punisher-year-one-2-post-mortem/4000-153038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254798/","id":254798,"name":"","site_detail_url":"https://comicvine.gamespot.com/nira-x-cyberangel-1/4000-254798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254799/","id":254799,"name":"","site_detail_url":"https://comicvine.gamespot.com/nira-x-cyberangel-2/4000-254799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254800/","id":254800,"name":"","site_detail_url":"https://comicvine.gamespot.com/nira-x-cyberangel-3/4000-254800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254801/","id":254801,"name":"","site_detail_url":"https://comicvine.gamespot.com/nira-x-cyberangel-4/4000-254801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40370/","id":40370,"name":"Grudge Match","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-16-grudge-match/4000-40370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40314/","id":40314,"name":"Snake, Battle and Toll","site_detail_url":"https://comicvine.gamespot.com/captain-america-435-snake-battle-and-toll/4000-40314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121128/","id":121128,"name":"Bad to the Bone","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-7-bad-to-the-bone/4000-121128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382209/","id":382209,"name":"Transformation","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-1-transformation/4000-382209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382210/","id":382210,"name":"Vengeance","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-2-vengeance/4000-382210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382211/","id":382211,"name":"To The Rescue","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-3-to-the-rescue/4000-382211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382212/","id":382212,"name":"Dead Air","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-4-dead-air/4000-382212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382213/","id":382213,"name":"Skin Condition","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-5-skin-condition/4000-382213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382214/","id":382214,"name":"Zarathos Unbound","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-6-zarathos-unbound/4000-382214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382243/","id":382243,"name":"Slash Attack!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-8-slash-attack/4000-382243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382252/","id":382252,"name":"Armored Vengeance","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-9-armored-vengeance/4000-382252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382263/","id":382263,"name":"Reprise","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-10-reprise/4000-382263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382273/","id":382273,"name":"Ghost Of The Past","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-special-edition-11-ghost-of-the-past/4000-382273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388489/","id":388489,"name":"","site_detail_url":"https://comicvine.gamespot.com/welcome-to-the-zone-1/4000-388489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142904/","id":142904,"name":"","site_detail_url":"https://comicvine.gamespot.com/extremes-of-violet-0/4000-142904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142910/","id":142910,"name":"","site_detail_url":"https://comicvine.gamespot.com/extremes-of-violet-1/4000-142910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142933/","id":142933,"name":"","site_detail_url":"https://comicvine.gamespot.com/ms-cyanide-ice-0/4000-142933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64436/","id":64436,"name":"Web of Death, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-397-web-of-death-part-1-of-/4000-64436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65615/","id":65615,"name":"Web of Death Part 2: A Time to Live!; Scoop!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-220-web-of-death-part-2/4000-65615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40290/","id":40290,"name":"Violent Beginnings","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-93-violent-beginnings/4000-40290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40309/","id":40309,"name":"Prime Season","site_detail_url":"https://comicvine.gamespot.com/prime-19-prime-season/4000-40309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202027/","id":202027,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-how-to-beat-the-bullyjubilee-peer-press/4000-202027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47433/","id":47433,"name":"","site_detail_url":"https://comicvine.gamespot.com/codename-strykeforce-10/4000-47433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109596/","id":109596,"name":"The Battle for Independents","site_detail_url":"https://comicvine.gamespot.com/cyblade-shi-1-the-battle-for-independents/4000-109596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40278/","id":40278,"name":"Dr. Death: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-22-dr-death-act-two/4000-40278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189635/","id":189635,"name":"Cold Land","site_detail_url":"https://comicvine.gamespot.com/punisher-holiday-special-3-cold-land/4000-189635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111779/","id":111779,"name":"","site_detail_url":"https://comicvine.gamespot.com/freak-force-13/4000-111779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107334/","id":107334,"name":"Hot Child in the City","site_detail_url":"https://comicvine.gamespot.com/ash-2-hot-child-in-the-city/4000-107334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107903/","id":107903,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spawn-batman-1/4000-107903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40023/","id":40023,"name":"Boom Baby","site_detail_url":"https://comicvine.gamespot.com/damage-8-boom-baby/4000-40023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177084/","id":177084,"name":"Rituals, 2 of 2","site_detail_url":"https://comicvine.gamespot.com/razor-12-rituals-2-of-2/4000-177084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300408/","id":300408,"name":"Spider-Man: When Heroes Clash","site_detail_url":"https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-2-2-spi/4000-300408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302156/","id":302156,"name":"Violator Monster Rig Vehicle","site_detail_url":"https://comicvine.gamespot.com/violator-monster-rig-vehicle-1-violator-monster-ri/4000-302156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108731/","id":108731,"name":"Hostile Takeover","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-26-hostile-takeover/4000-108731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433598/","id":433598,"name":"Dark Ages","site_detail_url":"https://comicvine.gamespot.com/medieval-spawn-figure-1-dark-ages/4000-433598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413352/","id":413352,"name":"The Bug Stops Here / No Job Too Big","site_detail_url":"https://comicvine.gamespot.com/spider-man-bug-stops-here-1-the-bug-stops-here-no-/4000-413352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506042/","id":506042,"name":"Tintin in America; Cigars of the Pharaoh; The Blue Lotus","site_detail_url":"https://comicvine.gamespot.com/herge-the-adventures-of-tintin-1-tintin-in-america/4000-506042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40003/","id":40003,"name":"The Immortal War - Part One: Adrift","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-28-the-immortal-war-part-one-adrif/4000-40003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40053/","id":40053,"name":"Angela I","site_detail_url":"https://comicvine.gamespot.com/angela-1-angela-i/4000-40053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131259/","id":131259,"name":"Ghost in the machine","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-23-ghost-in-the-machine/4000-131259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64435/","id":64435,"name":"Back from the Edge, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-396-back-from-the-edge-part/4000-64435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70491/","id":70491,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-the-ultra-collection-1/4000-70491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150254/","id":150254,"name":"Sleeping Giants","site_detail_url":"https://comicvine.gamespot.com/x-mencaptain-universe-1-sleeping-giants/4000-150254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40004/","id":40004,"name":"Resuscitation","site_detail_url":"https://comicvine.gamespot.com/geomancer-2-resuscitation/4000-40004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40005/","id":40005,"name":"No Tomorrow , Part 1 of 3: \"No Place Like Home\"","site_detail_url":"https://comicvine.gamespot.com/harbinger-35-no-tomorrow-part-1-of-3-no-place-like/4000-40005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40086/","id":40086,"name":"The Living Stone, I Presume?","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-481-the-living-stone-i-presume/4000-40086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70139/","id":70139,"name":"Bound By The Puppet Master!!","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-2-bound-by-the-p/4000-70139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40010/","id":40010,"name":"Jurassic Politics - Part Two: White Man Speak With Forked","site_detail_url":"https://comicvine.gamespot.com/turok-dinosaur-hunter-18-jurassic-politics-part-tw/4000-40010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109184/","id":109184,"name":"The Hunted - Part III: Warriors!","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-42-the-hunted-part-iii-/4000-109184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102508/","id":102508,"name":"Hungry For Heroes! (Or a sandwich to die for!)","site_detail_url":"https://comicvine.gamespot.com/prime-17-hungry-for-heroes-or-a-sandwich-to-die-fo/4000-102508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102509/","id":102509,"name":"One-Two Punch","site_detail_url":"https://comicvine.gamespot.com/prime-18-one-two-punch/4000-102509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40072/","id":40072,"name":"Sacred Ground","site_detail_url":"https://comicvine.gamespot.com/the-avengers-381-sacred-ground/4000-40072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119964/","id":119964,"name":"Catastrophe On 34th St. / A Midnight Clear / Losin' The Blues / The Eternal Game / Star Of The Show / The Night Before X-Mas","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-1994-catastrophe-on-34th-st/4000-119964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66564/","id":66564,"name":"Jagged Edge: Part 4 - The Dawning","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-28-jagged-edge-part-4-t/4000-66564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40048/","id":40048,"name":"The Poison Apple","site_detail_url":"https://comicvine.gamespot.com/vamps-5-the-poison-apple/4000-40048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40122/","id":40122,"name":"Dust","site_detail_url":"https://comicvine.gamespot.com/primal-force-2-dust/4000-40122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65126/","id":65126,"name":"Slipping Into Darkness","site_detail_url":"https://comicvine.gamespot.com/the-prowler-2-slipping-into-darkness/4000-65126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40075/","id":40075,"name":"Fathoms Of Humanity - Part 3: Not In My Backyard","site_detail_url":"https://comicvine.gamespot.com/daredevil-335-fathoms-of-humanity-part-3-not-in-my/4000-40075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40060/","id":40060,"name":"The Dark","site_detail_url":"https://comicvine.gamespot.com/spawn-26-the-dark/4000-40060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153039/","id":153039,"name":"Family Business","site_detail_url":"https://comicvine.gamespot.com/punisher-year-one-1-family-business/4000-153039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40073/","id":40073,"name":"Snake Bites","site_detail_url":"https://comicvine.gamespot.com/captain-america-434-snake-bites/4000-40073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139948/","id":139948,"name":"Gods and Beasts","site_detail_url":"https://comicvine.gamespot.com/warrior-nun-areala-1-gods-and-beasts/4000-139948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121127/","id":121127,"name":"Cities of the Red Night","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-6-cities-of-the-red-night/4000-121127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107408/","id":107408,"name":"The Devil's Secret Name","site_detail_url":"https://comicvine.gamespot.com/the-punisher-97-the-devils-secret-name/4000-107408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40082/","id":40082,"name":"Shadowboxing Helena","site_detail_url":"https://comicvine.gamespot.com/secret-defenders-22-shadowboxing-helena/4000-40082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65740/","id":65740,"name":"Birds of a Feather","site_detail_url":"https://comicvine.gamespot.com/x-men-39-birds-of-a-feather/4000-65740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40115/","id":40115,"name":"Untapped Potential","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-319-untapped-potential/4000-40115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384467/","id":384467,"name":"TPB HC/SC","site_detail_url":"https://comicvine.gamespot.com/marvels-1-tpb-hcsc/4000-384467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65614/","id":65614,"name":"Back from the Edge, Part 4 of 4: Two of a Kind","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-219-back-from-the-edge-/4000-65614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40037/","id":40037,"name":"Dr. Death: Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-21-dr-death-act-one/4000-40037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384104/","id":384104,"name":"The Old Bait and Switch!; The Thermal Man is Back!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-15-th/4000-384104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40128/","id":40128,"name":"The Old Bait and Switch!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-15-the-old-bait-and-switch/4000-40128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99009/","id":99009,"name":"The Death of Chapel","site_detail_url":"https://comicvine.gamespot.com/youngblood-10-the-death-of-chapel/4000-99009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111778/","id":111778,"name":"","site_detail_url":"https://comicvine.gamespot.com/freak-force-12/4000-111778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119041/","id":119041,"name":"","site_detail_url":"https://comicvine.gamespot.com/extreme-super-christmas-special-1/4000-119041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121045/","id":121045,"name":"","site_detail_url":"https://comicvine.gamespot.com/badrock-and-company-4/4000-121045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94727/","id":94727,"name":"Marco-Polo","site_detail_url":"https://comicvine.gamespot.com/justice-3-marco-polo/4000-94727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164045/","id":164045,"name":null,"site_detail_url":"https://comicvine.gamespot.com/showcase-94-11/4000-164045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108730/","id":108730,"name":"Truth Hurts","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-25-truth-hurts/4000-108730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124210/","id":124210,"name":"Dreamland Part 1 of 5 / The Angel of Times Square","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-62-dreamla/4000-124210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39897/","id":39897,"name":"Down and Out in Heaven and Hell, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-invisibles-3-down-and-out-in-heaven-and-hell-p/4000-39897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131258/","id":131258,"name":"Sins of the father","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-22-sins-of-the-father/4000-131258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417703/","id":417703,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel-1994/4000-417703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39938/","id":39938,"name":"Mission For A Dead Man!;In The Hands Of Bullseye; Anguish, Once Removed!; Freedom!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-megazine-2-mission-for-a-dead-/4000-39938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98655/","id":98655,"name":"The More Things Change ...","site_detail_url":"https://comicvine.gamespot.com/bloodshot-21-the-more-things-change/4000-98655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39865/","id":39865,"name":"Awakenings","site_detail_url":"https://comicvine.gamespot.com/geomancer-1-awakenings/4000-39865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64514/","id":64514,"name":"Holding On","site_detail_url":"https://comicvine.gamespot.com/x-force-40-holding-on/4000-64514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57294/","id":57294,"name":"Second Rate Choices; A Conflict of Interests!; To Protect and Serve","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-7-second-rate-choices-a-confl/4000-57294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65612/","id":65612,"name":"Back From The Edge Part 2: When Monsters Roam!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-218-back-from-the-edge-/4000-65612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158796/","id":158796,"name":"How It All Began","site_detail_url":"https://comicvine.gamespot.com/marvel-action-hour-fantastic-four-1-how-it-all-beg/4000-158796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166479/","id":166479,"name":"The Very Best of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/very-best-of-spider-man-1-the-very-best-of-spider-/4000-166479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39950/","id":39950,"name":"Take the A Train","site_detail_url":"https://comicvine.gamespot.com/hardware-21-take-the-a-train/4000-39950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109565/","id":109565,"name":"Skin Games","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-55-skin-games/4000-109565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66563/","id":66563,"name":"Jagged Edge III","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-27-jagged-edge-iii/4000-66563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39919/","id":39919,"name":"Showtime Pt. 2","site_detail_url":"https://comicvine.gamespot.com/spawn-20-showtime-pt-2/4000-39919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39912/","id":39912,"name":"Into the Sunrise","site_detail_url":"https://comicvine.gamespot.com/vamps-4-into-the-sunrise/4000-39912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39944/","id":39944,"name":"DREAMS AND MADMEN","site_detail_url":"https://comicvine.gamespot.com/vision-1-dreams-and-madmen/4000-39944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39933/","id":39933,"name":"Mano a Mano","site_detail_url":"https://comicvine.gamespot.com/deadpool-sins-of-the-past-4-mano-a-mano/4000-39933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39981/","id":39981,"name":"Water Signs","site_detail_url":"https://comicvine.gamespot.com/primal-force-1-water-signs/4000-39981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107315/","id":107315,"name":"Burn Baby, Burn","site_detail_url":"https://comicvine.gamespot.com/ash-1-burn-baby-burn/4000-107315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65123/","id":65123,"name":"Approaching Dusk","site_detail_url":"https://comicvine.gamespot.com/the-prowler-1-approaching-dusk/4000-65123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39932/","id":39932,"name":"Fathoms Of Humanity - Part 2: Bearing False Witness","site_detail_url":"https://comicvine.gamespot.com/daredevil-334-fathoms-of-humanity-part-2-bearing-f/4000-39932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159108/","id":159108,"name":"Face off","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-8-face-off/4000-159108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134455/","id":134455,"name":"Been Caught Stealing","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-7-been-caught-stealing/4000-134455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39903/","id":39903,"name":"The Scorpion: Final Act","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-20-the-scorpion-final-act/4000-39903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111777/","id":111777,"name":"","site_detail_url":"https://comicvine.gamespot.com/freak-force-11/4000-111777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121044/","id":121044,"name":"Overt Operations","site_detail_url":"https://comicvine.gamespot.com/badrock-and-company-3-overt-operations/4000-121044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132799/","id":132799,"name":"The Hunted - Prologue","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-0-the-hunted-prologue/4000-132799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39836/","id":39836,"name":"The Call","site_detail_url":"https://comicvine.gamespot.com/primal-force-0-the-call/4000-39836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134771/","id":134771,"name":"The Changing Order","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-0-the-changing-order/4000-134771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107460/","id":107460,"name":"River of Blood Part 2: Comrades","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-32-river-of-blood-part-2-com/4000-107460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108729/","id":108729,"name":"Assault and Batteries","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-24-assault-and-batteries/4000-108729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39788/","id":39788,"name":"Apparently Unrelated Events (Family Reunion Part One)","site_detail_url":"https://comicvine.gamespot.com/clandestine-1-apparently-unrelated-events-family-r/4000-39788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380006/","id":380006,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superman-time-and-time-again-1-tpb/4000-380006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150782/","id":150782,"name":"It Is Late Summer, 1938","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-annual-1-it-is-late-summer/4000-150782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129131/","id":129131,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-3/4000-129131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134859/","id":134859,"name":"Forward Thrust!","site_detail_url":"https://comicvine.gamespot.com/gunfire-0-forward-thrust/4000-134859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185349/","id":185349,"name":"I’d Rather Be-In 1963","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-14-id-rather-be-in-1963/4000-185349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39718/","id":39718,"name":"Risen From The Dead / Fossil Fuel","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-26-risen-from-the-dead-fossil-fuel/4000-39718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39801/","id":39801,"name":"\"This Mortal Coil.\"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-479-this-mortal-coil/4000-39801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64630/","id":64630,"name":"Power and Responsibility, Part 3: A Heart Beat Away!","site_detail_url":"https://comicvine.gamespot.com/spider-man-51-power-and-responsibility-part-3-a-he/4000-64630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111981/","id":111981,"name":"Chimera Lost - Part 4","site_detail_url":"https://comicvine.gamespot.com/felicia-hardy-the-black-cat-4-chimera-lost-part-4/4000-111981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39844/","id":39844,"name":"Man and Beast","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-13-man-and-beast/4000-39844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39777/","id":39777,"name":"Showtime Pt. 1","site_detail_url":"https://comicvine.gamespot.com/spawn-19-showtime-pt-1/4000-39777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70412/","id":70412,"name":"Falling Angel!","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-6-falling-angel/4000-70412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39806/","id":39806,"name":"These Little Town Blues","site_detail_url":"https://comicvine.gamespot.com/hardware-20-these-little-town-blues/4000-39806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66515/","id":66515,"name":"When the spirit moves","site_detail_url":"https://comicvine.gamespot.com/midnight-sons-unlimited-7-when-the-spirit-moves/4000-66515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39794/","id":39794,"name":"Behold the Man-Thing - Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-164-behold-the-man-thing-pa/4000-39794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39790/","id":39790,"name":"Deadpool Sandwich","site_detail_url":"https://comicvine.gamespot.com/deadpool-sins-of-the-past-3-deadpool-sandwich/4000-39790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272257/","id":272257,"name":"Confession express","site_detail_url":"https://comicvine.gamespot.com/soda-6-confession-express/4000-272257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94406/","id":94406,"name":"Crucible of Power, Part Three: Ascent","site_detail_url":"https://comicvine.gamespot.com/annex-3-crucible-of-power-part-three-ascent/4000-94406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39789/","id":39789,"name":"Fathoms Of Humanity - Part 1: Help Unwanted","site_detail_url":"https://comicvine.gamespot.com/daredevil-333-fathoms-of-humanity-part-1-help-unwa/4000-39789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291628/","id":291628,"name":"Papillon obsidienne","site_detail_url":"https://comicvine.gamespot.com/xoco-1-papillon-obsidienne/4000-291628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57131/","id":57131,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-web-of-doom-3/4000-57131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39855/","id":39855,"name":"Tremors","site_detail_url":"https://comicvine.gamespot.com/spawn-25-tremors/4000-39855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108431/","id":108431,"name":"Punisher vs Punisher","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-21-punisher-vs-punisher/4000-108431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274662/","id":274662,"name":"Sabotaggio","site_detail_url":"https://comicvine.gamespot.com/x-force-2-sabotaggio/4000-274662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159107/","id":159107,"name":"Confrontations","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-7-confrontations/4000-159107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121107/","id":121107,"name":"The Drawing of the Three","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-4-the-drawing-of-the-thre/4000-121107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121196/","id":121196,"name":"Jagged Edge II - Silence of the Gargoyles","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-26-jagged-edge-ii-silen/4000-121196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107406/","id":107406,"name":"No Rules Part 2: No Mercy","site_detail_url":"https://comicvine.gamespot.com/the-punisher-95-no-rules-part-2-no-mercy/4000-107406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301393/","id":301393,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-yesterday-quest-1-tpb/4000-301393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65611/","id":65611,"name":"Power and Responsibility, Part 4- Higher Ground","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-217-power-and-responsib/4000-65611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411166/","id":411166,"name":"Welcome to New York!","site_detail_url":"https://comicvine.gamespot.com/king-of-the-dead-3-welcome-to-new-york/4000-411166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103933/","id":103933,"name":"Bent, Folded, Spindled and Mutilated","site_detail_url":"https://comicvine.gamespot.com/prototype-14-bent-folded-spindled-and-mutilated/4000-103933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218367/","id":218367,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellboy-seed-of-destruction-1-tpb/4000-218367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39756/","id":39756,"name":"The Scorpion: Act Three","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-19-the-scorpion-act-three/4000-39756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351900/","id":351900,"name":"The Crack of Doom!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-13-th/4000-351900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121043/","id":121043,"name":"","site_detail_url":"https://comicvine.gamespot.com/badrock-and-company-2/4000-121043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39779/","id":39779,"name":"Overtkill, Part 2","site_detail_url":"https://comicvine.gamespot.com/supreme-20-overtkill-part-2/4000-39779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164018/","id":164018,"name":"The Life and Times of Scrooge McDuck - Chapter 4: Raider of the Copper Hill","site_detail_url":"https://comicvine.gamespot.com/uncle-scrooge-288-the-life-and-times-of-scrooge-mc/4000-164018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109805/","id":109805,"name":"Riptide Exposed","site_detail_url":"https://comicvine.gamespot.com/team-youngblood-14-riptide-exposed/4000-109805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39607/","id":39607,"name":"Losers!","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force-16-losers/4000-39607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39709/","id":39709,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-2-zero-hour/4000-39709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94725/","id":94725,"name":"Rock Crushes Scissors","site_detail_url":"https://comicvine.gamespot.com/justice-1-rock-crushes-scissors/4000-94725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39711/","id":39711,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-0-zero-hour/4000-39711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39710/","id":39710,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-1-zero-hour/4000-39710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134775/","id":134775,"name":"Azrael","site_detail_url":"https://comicvine.gamespot.com/showcase-94-10-azrael/4000-134775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39705/","id":39705,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour-crisis-in-time-3-zero-hour/4000-39705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39601/","id":39601,"name":"Assault & Battery","site_detail_url":"https://comicvine.gamespot.com/green-lantern-55-assault-battery/4000-39601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177083/","id":177083,"name":"Rituals, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/razor-11-rituals-part-1-of-2/4000-177083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39674/","id":39674,"name":"Shadows","site_detail_url":"https://comicvine.gamespot.com/cable-15-shadows/4000-39674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107459/","id":107459,"name":"River of Blood Part 1: Scorched Earth","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-31-river-of-blood-part-1-sco/4000-107459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39644/","id":39644,"name":"Tree of Knowledge - Conclusion: Softwar","site_detail_url":"https://comicvine.gamespot.com/daredevil-332-tree-of-knowledge-conclusion-softwar/4000-39644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39647/","id":39647,"name":"Myth Conceptions, Part 1: Pursuit","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-421-myth-conceptions-part-1-pu/4000-39647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121195/","id":121195,"name":"Jagged Edge I - Night / The Drainage System","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-25-jagged-edge-i-night-/4000-121195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98654/","id":98654,"name":"Tears Of A Clown","site_detail_url":"https://comicvine.gamespot.com/bloodshot-19-tears-of-a-clown/4000-98654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39653/","id":39653,"name":"Come the Lightning!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-478-come-the-lightning/4000-39653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99809/","id":99809,"name":"Fire And Forget","site_detail_url":"https://comicvine.gamespot.com/ninjak-7-fire-and-forget/4000-99809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111980/","id":111980,"name":"Chimera Lost - Part 3","site_detail_url":"https://comicvine.gamespot.com/felicia-hardy-the-black-cat-3-chimera-lost-part-3/4000-111980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39696/","id":39696,"name":"Whyte Out","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-12-whyte-out/4000-39696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65610/","id":65610,"name":"The Predator and the Prey, Part Two: Time is on NO Side!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-216-the-predator-and-th/4000-65610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106939/","id":106939,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodstrike-14/4000-106939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39645/","id":39645,"name":"Luck of the Irish","site_detail_url":"https://comicvine.gamespot.com/deadpool-sins-of-the-past-2-luck-of-the-irish/4000-39645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74630/","id":74630,"name":"All Good Things...","site_detail_url":"https://comicvine.gamespot.com/team-titans-24-all-good-things/4000-74630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268820/","id":268820,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-the-mysterious-3-1/4000-268820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280439/","id":280439,"name":"","site_detail_url":"https://comicvine.gamespot.com/timecop-1/4000-280439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57130/","id":57130,"name":"Caught!","site_detail_url":"https://comicvine.gamespot.com/spider-man-web-of-doom-2-caught/4000-57130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39626/","id":39626,"name":"The Hunt Pt. 4","site_detail_url":"https://comicvine.gamespot.com/spawn-24-the-hunt-pt-4/4000-39626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94474/","id":94474,"name":"THE FINAL CONE-FRONTATION","site_detail_url":"https://comicvine.gamespot.com/coneheads-4-the-final-cone-frontation/4000-94474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39643/","id":39643,"name":"The Next Generation","site_detail_url":"https://comicvine.gamespot.com/captain-america-431-the-next-generation/4000-39643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38407/","id":38407,"name":"Heritage of Hatred","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-13-heritage-of-hatred/4000-38407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121104/","id":121104,"name":"Black Reign","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-3-black-reign/4000-121104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107405/","id":107405,"name":"No Rules Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-94-no-rules-part-1/4000-107405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94405/","id":94405,"name":"Crucible of Power, Part Two: Circuits of Vengeance","site_detail_url":"https://comicvine.gamespot.com/annex-2-crucible-of-power-part-two-circuits-of-ven/4000-94405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39612/","id":39612,"name":"The Scorpion: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-18-the-scorpion-act-two/4000-39612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99007/","id":99007,"name":"","site_detail_url":"https://comicvine.gamespot.com/youngblood-8/4000-99007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121029/","id":121029,"name":"","site_detail_url":"https://comicvine.gamespot.com/badrock-and-company-1/4000-121029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39628/","id":39628,"name":"Overtkill","site_detail_url":"https://comicvine.gamespot.com/supreme-19-overtkill/4000-39628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177081/","id":177081,"name":"Beginnings; Ice...","site_detail_url":"https://comicvine.gamespot.com/razor-10-beginnings-ice/4000-177081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39501/","id":39501,"name":"Tree Of Knowledge - Part 5: The Line Eaters","site_detail_url":"https://comicvine.gamespot.com/daredevil-331-tree-of-knowledge-part-5-the-line-ea/4000-39501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39503/","id":39503,"name":"I Have Loved the Stars Too Fondly to Be Fearful of the Night","site_detail_url":"https://comicvine.gamespot.com/galactic-guardians-2-i-have-loved-the-stars-too-fo/4000-39503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39487/","id":39487,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-11/4000-39487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453892/","id":453892,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-1/4000-453892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153533/","id":153533,"name":"Dream Lover","site_detail_url":"https://comicvine.gamespot.com/the-second-life-of-doctor-mirage-9-dream-lover/4000-153533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108448/","id":108448,"name":"The Dawn Of Vendetta","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-19-the-dawn-of-vendetta/4000-108448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39514/","id":39514,"name":"What If Iron Man went public?","site_detail_url":"https://comicvine.gamespot.com/what-if-64-what-if-iron-man-went-public/4000-39514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141661/","id":141661,"name":"Blood and Roses","site_detail_url":"https://comicvine.gamespot.com/bloodshot-yearbook-1-blood-and-roses/4000-141661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39465/","id":39465,"name":"Heroes Passage","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-91-heroes-passage/4000-39465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39512/","id":39512,"name":"Three Who Ride the Thunder!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-477-three-who-ride-the-thunder/4000-39512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99808/","id":99808,"name":"Full Metal Jacket - Part 2","site_detail_url":"https://comicvine.gamespot.com/ninjak-6-full-metal-jacket-part-2/4000-99808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153180/","id":153180,"name":"Future Shock","site_detail_url":"https://comicvine.gamespot.com/darkhawk-annual-3-future-shock/4000-153180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64511/","id":64511,"name":"The Young and the Restless","site_detail_url":"https://comicvine.gamespot.com/x-force-37-the-young-and-the-restless/4000-64511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108591/","id":108591,"name":"The Death Doctor","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-39-the-death-doctor/4000-108591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111979/","id":111979,"name":"Chimera Lost - Part 2","site_detail_url":"https://comicvine.gamespot.com/felicia-hardy-the-black-cat-2-chimera-lost-part-2/4000-111979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39570/","id":39570,"name":"Yesterday Will Be More Fun Than Tomorrow","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-161-yesterday-will-be-more-/4000-39570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39506/","id":39506,"name":"Book Zero","site_detail_url":"https://comicvine.gamespot.com/marvels-0-book-zero/4000-39506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227415/","id":227415,"name":"","site_detail_url":"https://comicvine.gamespot.com/american-splendor-special-a-step-out-of-the-nest-1/4000-227415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39488/","id":39488,"name":"Supreme Madness, Part 5","site_detail_url":"https://comicvine.gamespot.com/supreme-17-supreme-madness-part-5/4000-39488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39569/","id":39569,"name":"Supreme Madness, Part 6","site_detail_url":"https://comicvine.gamespot.com/supreme-18-supreme-madness-part-6/4000-39569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39502/","id":39502,"name":"If Looks Could Kill","site_detail_url":"https://comicvine.gamespot.com/deadpool-sins-of-the-past-1-if-looks-could-kill/4000-39502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57122/","id":57122,"name":"Styx And Stone May Break Your Bones But The Jury Will Destroy You!","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-arachnis-project-1-styx-and-stone-m/4000-57122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117784/","id":117784,"name":"Lies Part 1","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-27-lies-part-1/4000-117784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38409/","id":38409,"name":"Strangers on an Astral Plane","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-23-strangers-on-an-astral-plan/4000-38409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279770/","id":279770,"name":"Il ritorno dei Magi","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-149-il-ritorno-dei-magi/4000-279770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57129/","id":57129,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-web-of-doom-1/4000-57129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39486/","id":39486,"name":"The Hunt Pt. 3","site_detail_url":"https://comicvine.gamespot.com/spawn-23-the-hunt-pt-3/4000-39486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274660/","id":274660,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-1/4000-274660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294274/","id":294274,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-book-whos-who-1/4000-294274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39560/","id":39560,"name":"Battle Lines!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-11-battle-lines/4000-39560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159106/","id":159106,"name":"Killer on the loose","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-6-killer-on-the-loose/4000-159106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121103/","id":121103,"name":"Red Prophet","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-2-red-prophet/4000-121103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39507/","id":39507,"name":"Return of the Dragon","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-24-return-of-the-dragon/4000-39507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107404/","id":107404,"name":"Killing Streets","site_detail_url":"https://comicvine.gamespot.com/the-punisher-93-killing-streets/4000-107404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65609/","id":65609,"name":"The Predator and the Prey, Part One: The Monster Within","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-215-the-predator-and-th/4000-65609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94404/","id":94404,"name":"Crucible of Power, Part One: Enemy Unknown","site_detail_url":"https://comicvine.gamespot.com/annex-1-crucible-of-power-part-one-enemy-unknown/4000-94404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57293/","id":57293,"name":"By Myself Betrayed!","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-6-by-myself-betrayed/4000-57293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39472/","id":39472,"name":"The Scorpion: Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-17-the-scorpion-act-one/4000-39472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137292/","id":137292,"name":"Once A Hero","site_detail_url":"https://comicvine.gamespot.com/troll-once-a-hero-1-once-a-hero/4000-137292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39327/","id":39327,"name":"All Out of Time","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-66-all-out-of-time/4000-39327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39368/","id":39368,"name":"Tree Of Knowledge - Part 4: Disinformocracy","site_detail_url":"https://comicvine.gamespot.com/daredevil-330-tree-of-knowledge-part-4-disinformoc/4000-39368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108726/","id":108726,"name":"Parlour Games","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-21-parlour-games/4000-108726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39340/","id":39340,"name":"A Hope in Hell","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-144-a-hope-in-hell/4000-39340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66779/","id":66779,"name":"The Hero Descending","site_detail_url":"https://comicvine.gamespot.com/green-arrow-88-the-hero-descending/4000-66779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39380/","id":39380,"name":"Whom the Destroyer Would Destroy","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-476-whom-the-destroyer-would-destr/4000-39380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111968/","id":111968,"name":"Chimera Lost - Part 1 (Sharp Turns)","site_detail_url":"https://comicvine.gamespot.com/felicia-hardy-the-black-cat-1-chimera-lost-part-1-/4000-111968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118809/","id":118809,"name":"Two","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-2-two/4000-118809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39311/","id":39311,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-2/4000-39311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77571/","id":77571,"name":"The Coming of Galactus!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-390-the-coming-of-galactus/4000-77571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66466/","id":66466,"name":"The Spirit is Willing","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-51-the-spirit-is-willing/4000-66466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38375/","id":38375,"name":"Strangers Among Us: Final Curtain","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-annual-4-strangers/4000-38375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39333/","id":39333,"name":"The Vamp: Final Act","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-16-the-vamp-final-act/4000-39333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108447/","id":108447,"name":"Armed And Dangerous","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-18-armed-and-dangerous/4000-108447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39353/","id":39353,"name":"Supreme Madness, Part 3","site_detail_url":"https://comicvine.gamespot.com/supreme-15-supreme-madness-part-3/4000-39353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39426/","id":39426,"name":"Supreme Madness, Part 4","site_detail_url":"https://comicvine.gamespot.com/supreme-16-supreme-madness-part-4/4000-39426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39326/","id":39326,"name":"Judgment Day, Part 4: The Shadow of Death","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-90-judgment-day-part-4-the-/4000-39326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107475/","id":107475,"name":"Pariah Part 4: Bad Turn","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-68-pariah-part-4-bad-turn/4000-107475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279769/","id":279769,"name":"Decameron!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-148-decameron/4000-279769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39354/","id":39354,"name":"The World - Part 3","site_detail_url":"https://comicvine.gamespot.com/violator-3-the-world-part-3/4000-39354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274657/","id":274657,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-0-x-force/4000-274657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166432/","id":166432,"name":"Spider-Man: Round Robin","site_detail_url":"https://comicvine.gamespot.com/spider-man-round-robin-1-spider-man-round-robin/4000-166432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121019/","id":121019,"name":"Dark Visions","site_detail_url":"https://comicvine.gamespot.com/blade-the-vampire-hunter-1-dark-visions/4000-121019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39373/","id":39373,"name":"Dance of the Hunter III - Alliance","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-23-dance-of-the-hunter-/4000-39373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39374/","id":39374,"name":"\"The Long Goodbye\"","site_detail_url":"https://comicvine.gamespot.com/quasar-60-the-long-goodbye/4000-39374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39717/","id":39717,"name":"Alpha - Chaos Rules","site_detail_url":"https://comicvine.gamespot.com/chaos-effect-1-alpha-chaos-rules/4000-39717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134812/","id":134812,"name":"Crash & Burn (Part 6 of 6): Redemption","site_detail_url":"https://comicvine.gamespot.com/iron-man-306-crash-burn-part-6-of-6-redemption/4000-134812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65608/","id":65608,"name":"Bloody Justice","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-214-bloody-justice/4000-65608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57134/","id":57134,"name":"Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames-3-part-3/4000-57134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317426/","id":317426,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-24/4000-317426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103926/","id":103926,"name":"For Good And All","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-annual-4-for-good-and-all/4000-103926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39177/","id":39177,"name":"A Whole New Ball Game","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-65-a-whole-new-ball-g/4000-39177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39219/","id":39219,"name":"Tree of Knowledge - Part 3: The Chernobyl Packet","site_detail_url":"https://comicvine.gamespot.com/daredevil-329-tree-of-knowledge-part-3-the-chernob/4000-39219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129129/","id":129129,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-2/4000-129129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39283/","id":39283,"name":"Shrieking, Part One: Behind the Walls","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-390-shrieking-part-one-behi/4000-39283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104659/","id":104659,"name":"Search And Destroy","site_detail_url":"https://comicvine.gamespot.com/secret-weapons-10-search-and-destroy/4000-104659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39178/","id":39178,"name":"Judgement Day, Part 2: Split Decision","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force-13-judgement-day-part-2-/4000-39178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99807/","id":99807,"name":"Full Metal Jacket","site_detail_url":"https://comicvine.gamespot.com/ninjak-5-full-metal-jacket/4000-99807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39141/","id":39141,"name":"The Deadly Past (Part 4): Two Million Ways To Die","site_detail_url":"https://comicvine.gamespot.com/the-shroud-4-the-deadly-past-part-4-two-million-wa/4000-39141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39229/","id":39229,"name":"Down To Earth: 1","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-93-down-to-earth-1/4000-39229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39160/","id":39160,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-1/4000-39160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39215/","id":39215,"name":"The Last Gathering and A Bigger Man Than I...","site_detail_url":"https://comicvine.gamespot.com/the-avengers-375-the-last-gathering-and-a-bigger-m/4000-39215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39183/","id":39183,"name":"The Vamp: Act Three","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-15-the-vamp-act-three/4000-39183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150277/","id":150277,"name":"Not My Will, But Yours","site_detail_url":"https://comicvine.gamespot.com/charlemagne-4-not-my-will-but-yours/4000-150277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164044/","id":164044,"name":"Huntress","site_detail_url":"https://comicvine.gamespot.com/showcase-94-6-huntress/4000-164044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155532/","id":155532,"name":"Penguin","site_detail_url":"https://comicvine.gamespot.com/showcase-94-7-penguin/4000-155532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39176/","id":39176,"name":"Judgment Day, Part 1: D-Day","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-89-judgment-day-part-1-d-da/4000-39176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117783/","id":117783,"name":"Power Part 4","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-26-power-part-4/4000-117783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279772/","id":279772,"name":"La casa dalle finestre cieche","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-147-la-casa-dalle-finestre-cieche/4000-279772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39203/","id":39203,"name":"The World - Part 2","site_detail_url":"https://comicvine.gamespot.com/violator-2-the-world-part-2/4000-39203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39200/","id":39200,"name":"The Hunt Pt. 2","site_detail_url":"https://comicvine.gamespot.com/spawn-22-the-hunt-pt-2/4000-39200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134494/","id":134494,"name":"Communion","site_detail_url":"https://comicvine.gamespot.com/doom-2099-18-communion/4000-134494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318832/","id":318832,"name":"Monstruos cotidianos","site_detail_url":"https://comicvine.gamespot.com/marvels-2-monstruos-cotidianos/4000-318832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39216/","id":39216,"name":"Policing the Nation","site_detail_url":"https://comicvine.gamespot.com/captain-america-428-policing-the-nation/4000-39216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159104/","id":159104,"name":"Death race","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-5-death-race/4000-159104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48959/","id":48959,"name":"Pax Atlantea","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-unlimited-6-pax-atlantea/4000-48959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39224/","id":39224,"name":"Dance of the Hunter II - Deceptions","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-22-dance-of-the-hunter-/4000-39224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110406/","id":110406,"name":"Strangers Among Us: Act III of IV: He's Back, Right? Wong!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-66-strangers-among/4000-110406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65607/","id":65607,"name":"Typhoid Attack, Part One of Two","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-213-typhoid-attack-part/4000-65607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57133/","id":57133,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames-2-part-2/4000-57133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189702/","id":189702,"name":"A Man Named Frank","site_detail_url":"https://comicvine.gamespot.com/punisher-a-man-named-frank-1-a-man-named-frank/4000-189702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39092/","id":39092,"name":"What If Spider-man's Parents Destroyed His Family?","site_detail_url":"https://comicvine.gamespot.com/what-if-61-what-if-spider-mans-parents-destroyed-h/4000-39092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39079/","id":39079,"name":"Tree Of Knowledge - Extra: Apprehensions","site_detail_url":"https://comicvine.gamespot.com/daredevil-328-tree-of-knowledge-extra-apprehension/4000-39079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108724/","id":108724,"name":"Meltdown","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-19-meltdown/4000-108724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104658/","id":104658,"name":"Search For The Vault","site_detail_url":"https://comicvine.gamespot.com/secret-weapons-9-search-for-the-vault/4000-104658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47731/","id":47731,"name":"Raiders of the Lost Temple!","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-95-raiders-of-the-lost-temple/4000-47731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39004/","id":39004,"name":"A Little Knowledge ...","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-22-a-little-knowledge/4000-39004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153257/","id":153257,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-valiant-universe-1/4000-153257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57292/","id":57292,"name":"Estranged Tales","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-5-estranged-tales/4000-57292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96211/","id":96211,"name":"Carnage!","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-28-carnage/4000-96211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39121/","id":39121,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-8-zero-hour/4000-39121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124588/","id":124588,"name":"One","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-1-one/4000-124588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39077/","id":39077,"name":"Intersecting Parallels","site_detail_url":"https://comicvine.gamespot.com/the-avengers-374-intersecting-parallels/4000-39077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39043/","id":39043,"name":"The Vamp: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-14-the-vamp-act-two/4000-39043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151056/","id":151056,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-heart-of-the-beast-1/4000-151056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117780/","id":117780,"name":"Power Part 3","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-25-power-part-3/4000-117780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39061/","id":39061,"name":"The World - Part 1","site_detail_url":"https://comicvine.gamespot.com/violator-1-the-world-part-1/4000-39061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39058/","id":39058,"name":"The Hunt Pt. 1","site_detail_url":"https://comicvine.gamespot.com/spawn-21-the-hunt-pt-1/4000-39058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318787/","id":318787,"name":"Tiempos de Prodigios","site_detail_url":"https://comicvine.gamespot.com/marvels-1-tiempos-de-prodigios/4000-318787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39083/","id":39083,"name":"Dance of the Hunter I - Stalkers","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-21-dance-of-the-hunter-/4000-39083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39108/","id":39108,"name":"No More Namor! The Sub-Mariner [Strangers Among Us: Act II of IV]","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-65-no-more-namor-t/4000-39108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39084/","id":39084,"name":"Distant Running","site_detail_url":"https://comicvine.gamespot.com/quasar-58-distant-running/4000-39084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39078/","id":39078,"name":"Enemy Fire","site_detail_url":"https://comicvine.gamespot.com/captain-america-427-enemy-fire/4000-39078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64432/","id":64432,"name":"Carnage is Back","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-28-carnage-is-back/4000-64432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65606/","id":65606,"name":"Rain dance","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-212-rain-dance/4000-65606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57132/","id":57132,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames-1-part-1/4000-57132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39015/","id":39015,"name":"The Phoenix Agenda part 4: Genesis","site_detail_url":"https://comicvine.gamespot.com/danger-unlimited-4-the-phoenix-agenda-part-4-genes/4000-39015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148473/","id":148473,"name":"","site_detail_url":"https://comicvine.gamespot.com/beasties-1/4000-148473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108723/","id":108723,"name":"Blown Circuits","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-18-blown-circuits/4000-108723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104657/","id":104657,"name":"The Price","site_detail_url":"https://comicvine.gamespot.com/secret-weapons-8-the-price/4000-104657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59136/","id":59136,"name":"Into The Dark Side","site_detail_url":"https://comicvine.gamespot.com/the-spectre-17-into-the-dark-side/4000-59136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47730/","id":47730,"name":"An Age Undreamed Of","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-94-an-age-undreamed-of/4000-47730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38942/","id":38942,"name":"The Day She Died","site_detail_url":"https://comicvine.gamespot.com/marvels-4-the-day-she-died/4000-38942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98650/","id":98650,"name":"The Hunter: The Hunted","site_detail_url":"https://comicvine.gamespot.com/bloodshot-15-the-hunter-the-hunted/4000-98650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38950/","id":38950,"name":"New Gods For Old","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-473-new-gods-for-old/4000-38950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38981/","id":38981,"name":"Loose Ends!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-7-loose-ends/4000-38981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38935/","id":38935,"name":"Armageddon","site_detail_url":"https://comicvine.gamespot.com/the-avengers-373-armageddon/4000-38935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66513/","id":66513,"name":"The Beguiling; Kindred Spirits, Lost Souls","site_detail_url":"https://comicvine.gamespot.com/midnight-sons-unlimited-5-the-beguiling-kindred-sp/4000-66513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38900/","id":38900,"name":"The Vamp: Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-13-the-vamp-act-one/4000-38900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38878/","id":38878,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-in-the-coils-of-leviathan-4/4000-38878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107191/","id":107191,"name":"Child's Play (Third Move): Rules Were Made To Be Broken","site_detail_url":"https://comicvine.gamespot.com/x-force-33-childs-play-third-move-rules-were-made-/4000-107191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117781/","id":117781,"name":"Power Part 2","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-24-power-part-2/4000-117781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38936/","id":38936,"name":"Graven Images","site_detail_url":"https://comicvine.gamespot.com/captain-america-426-graven-images/4000-38936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159103/","id":159103,"name":"Intruders","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-4-intruders/4000-159103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121194/","id":121194,"name":"Monster in a Box","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-20-monster-in-a-box/4000-121194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38969/","id":38969,"name":"Strangers Among Us: Act I of IV","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-64-strangers-among/4000-38969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66553/","id":66553,"name":"Red Miracles: Sidewalking","site_detail_url":"https://comicvine.gamespot.com/hellstorm-prince-of-lies-13-red-miracles-sidewalki/4000-66553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65605/","id":65605,"name":"Face Value","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-211-face-value/4000-65605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38928/","id":38928,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-glory-3/4000-38928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104655/","id":104655,"name":"The Horror Below - Part 1","site_detail_url":"https://comicvine.gamespot.com/secret-weapons-6-the-horror-below-part-1/4000-104655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108722/","id":108722,"name":"Ye Gods","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-17-ye-gods/4000-108722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38852/","id":38852,"name":"The Thief Of Years","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-387-the-thief-of-years/4000-38852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129128/","id":129128,"name":"","site_detail_url":"https://comicvine.gamespot.com/shi-the-way-of-the-warrior-1/4000-129128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38797/","id":38797,"name":"The Final Phase","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-60-the-final-phase/4000-38797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38836/","id":38836,"name":"Damnation's Flame, Part Four: Hail to the Chief; Act of Union","site_detail_url":"https://comicvine.gamespot.com/hellblazer-75-damnation-s-flame-part-four-hail-to-/4000-38836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47729/","id":47729,"name":"Two Girls out to have Fun","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-93-two-girls-out-to-have-fun/4000-47729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38799/","id":38799,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/marvels-3-judgment-day/4000-38799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126662/","id":126662,"name":"Family Blood","site_detail_url":"https://comicvine.gamespot.com/bloodshot-0-family-blood/4000-126662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98649/","id":98649,"name":"Sins Of The Father","site_detail_url":"https://comicvine.gamespot.com/bloodshot-14-sins-of-the-father/4000-98649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38712/","id":38712,"name":"The Deadly Past (Part 1)","site_detail_url":"https://comicvine.gamespot.com/the-shroud-1-the-deadly-past-part-1/4000-38712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96209/","id":96209,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-26-the-gift/4000-96209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38743/","id":38743,"name":"Cult of the Machine, Part 1: Where the Day Takes You","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-86-cult-of-the-machine-part/4000-38743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38787/","id":38787,"name":"The Folds Gather","site_detail_url":"https://comicvine.gamespot.com/the-avengers-372-the-folds-gather/4000-38787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38749/","id":38749,"name":"The Brute: Final Act","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-12-the-brute-final-act/4000-38749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107190/","id":107190,"name":"Child's Play (First Move): With a Roll of the Dice","site_detail_url":"https://comicvine.gamespot.com/x-force-32-childs-play-first-move-with-a-roll-of-t/4000-107190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105463/","id":105463,"name":"Child's Play, Part 2: Sleeping With The Enemy","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-45-childs-play-part-2-sleeping-wi/4000-105463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38833/","id":38833,"name":"...Show Me The Way To Go Home...","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-310-show-me-the-way-to-go-home/4000-38833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117779/","id":117779,"name":"Power Part 1","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-23-power-part-1/4000-117779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38788/","id":38788,"name":"Super-Patriot Games","site_detail_url":"https://comicvine.gamespot.com/captain-america-425-super-patriot-games/4000-38788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114885/","id":114885,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-medusa-effect-1/4000-114885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134495/","id":134495,"name":"Heaven's Net","site_detail_url":"https://comicvine.gamespot.com/doom-2099-15-heavens-net/4000-134495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121193/","id":121193,"name":"Psychic Consequences","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-19-psychic-consequences/4000-121193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38828/","id":38828,"name":"Is There a Doctor in the House?","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-63-is-there-a-doct/4000-38828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66552/","id":66552,"name":"Red Miracles","site_detail_url":"https://comicvine.gamespot.com/hellstorm-prince-of-lies-12-red-miracles/4000-66552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136916/","id":136916,"name":"And then Came Despair","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-386-and-then-came-despair/4000-136916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65604/","id":65604,"name":"Crashing!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-210-crashing/4000-65604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38775/","id":38775,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-glory-2/4000-38775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38730/","id":38730,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/hellboy-seed-of-destruction-1-chapter-one/4000-38730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672423/","id":672423,"name":"A sangue freddo; Difficoltà tecniche; Menzogne del passato; Diamo il benvenuto a Terrordomo","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-53-a-sangue-freddo-difficolta-tecnic/4000-672423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48958/","id":48958,"name":"The New, Nefarious, And Downright Nasty Frightful Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-unlimited-5-the-new-nefarious-and-d/4000-48958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107737/","id":107737,"name":"Killer Instinct: Chapter Four","site_detail_url":"https://comicvine.gamespot.com/cyber-force-3-killer-instinct-chapter-four/4000-107737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38665/","id":38665,"name":"What If the Punisher Had Killed Spider-Man?","site_detail_url":"https://comicvine.gamespot.com/what-if-58-what-if-the-punisher-had-killed-spider-/4000-38665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108719/","id":108719,"name":"The Fall Of The Hammer, Part 1: The Rise of the Hammer","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-16-the-fall-of-the-hammer-part-1-t/4000-108719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134424/","id":134424,"name":"The Fall of The Hammer, Part 2: Horns of Dilemma","site_detail_url":"https://comicvine.gamespot.com/ravage-2099-15-the-fall-of-the-hammer-part-2-horns/4000-134424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108442/","id":108442,"name":"The Fall of The Hammer, Part 5: All For One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-13-the-fall-of-the-hammer-part-5/4000-108442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107326/","id":107326,"name":"Suicide Run Part 6: False Moves","site_detail_url":"https://comicvine.gamespot.com/the-punisher-87-suicide-run-part-6-false-moves/4000-107326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77474/","id":77474,"name":"Suicide Run Part 5: Shhh!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-24-suicide-run-part-5-shhh/4000-77474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38686/","id":38686,"name":"Damnation's Flame, Part Three: Trail of Tears","site_detail_url":"https://comicvine.gamespot.com/hellblazer-74-damnations-flame-part-three-trail-of/4000-38686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130940/","id":130940,"name":"Bug Hunt","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-60-bug-hunt/4000-130940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38603/","id":38603,"name":"Saturday Night's All Right for Fightin'!","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force-9-saturday-nights-all-ri/4000-38603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38654/","id":38654,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/marvels-2-monsters/4000-38654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146961/","id":146961,"name":"The Other Side","site_detail_url":"https://comicvine.gamespot.com/harbinger-26-the-other-side/4000-146961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57291/","id":57291,"name":"\"The Man Who Would Be Spider-Man!\"","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-4-the-man-who-would-be-spider/4000-57291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38622/","id":38622,"name":"Reflections Pt. 3","site_detail_url":"https://comicvine.gamespot.com/spawn-18-reflections-pt-3/4000-38622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166624/","id":166624,"name":"Crime Syndicate-X","site_detail_url":"https://comicvine.gamespot.com/gold-digger-8-crime-syndicate-x/4000-166624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38607/","id":38607,"name":"The Brute: Act Three","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-11-the-brute-act-three/4000-38607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38585/","id":38585,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-in-the-coils-of-leviathan-3/4000-38585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38648/","id":38648,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-man-without-fear-5/4000-38648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108300/","id":108300,"name":"The Fall of The Hammer, Part 3: Lightning Strike","site_detail_url":"https://comicvine.gamespot.com/x-men-2099-5-the-fall-of-the-hammer-part-3-lightni/4000-108300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134486/","id":134486,"name":"The Fall of The Hammer, Part 4: The Anvil or The Hammer","site_detail_url":"https://comicvine.gamespot.com/doom-2099-14-the-fall-of-the-hammer-part-4-the-anv/4000-134486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19197/","id":19197,"name":"Tailhook","site_detail_url":"https://comicvine.gamespot.com/nova-2-tailhook/4000-19197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38645/","id":38645,"name":"The Last Operation","site_detail_url":"https://comicvine.gamespot.com/captain-america-424-the-last-operation/4000-38645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127097/","id":127097,"name":"Evolution","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-3-evolution/4000-127097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38656/","id":38656,"name":"Wraith Revenge","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-18-wraith-revenge/4000-38656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38653/","id":38653,"name":"Tower of Blood part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-147-tower-of-blood-part-1/4000-38653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232385/","id":232385,"name":"Arena of Doom","site_detail_url":"https://comicvine.gamespot.com/prototype-7-arena-of-doom/4000-232385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191895/","id":191895,"name":"When Comes A Shadow","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-iii-3-when-comes-a-shadow/4000-191895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65603/","id":65603,"name":"Foreign Objects; Fateful Distractions;","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-209-foreign-objects-fat/4000-65603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94422/","id":94422,"name":"All My Sins Remembered!","site_detail_url":"https://comicvine.gamespot.com/blaze-legacy-of-blood-3-all-my-sins-remembered/4000-94422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74673/","id":74673,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-108-rebirth/4000-74673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119991/","id":119991,"name":"Tomb of Dracula!","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-vs-dracula-1-tomb-of-dracula/4000-119991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38652/","id":38652,"name":"Bad Blood","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-59-bad-blood/4000-38652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38621/","id":38621,"name":"The Killing Gate","site_detail_url":"https://comicvine.gamespot.com/pitt-3-the-killing-gate/4000-38621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38584/","id":38584,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics-18/4000-38584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108718/","id":108718,"name":"The Rise of the Hammer","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-15-the-rise-of-the-hammer/4000-108718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18970/","id":18970,"name":"Heavy Mettle","site_detail_url":"https://comicvine.gamespot.com/nova-1-heavy-mettle/4000-18970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107323/","id":107323,"name":"Suicide Run, Part 3: Deadline","site_detail_url":"https://comicvine.gamespot.com/the-punisher-86-suicide-run-part-3-deadline/4000-107323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119962/","id":119962,"name":"Hopes and Fears; Down Time; The Gift of the Marvelites; Mud Pi; Harvey Teabiscuit's Yule Log; Free Will","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-1993-hopes-and-fears-down-t/4000-119962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38487/","id":38487,"name":"Rune","site_detail_url":"https://comicvine.gamespot.com/rune-1-rune/4000-38487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77473/","id":77473,"name":"Suicide Run Part 2: Bringing Down the House","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-23-suicide-run-part-2-bringi/4000-77473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77434/","id":77434,"name":"Suicide Run 4: Standing In The Shadows","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-62-suicide-run-4-standing/4000-77434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38447/","id":38447,"name":"Damnation's Flame, Part Two: Broadway the Hard Way","site_detail_url":"https://comicvine.gamespot.com/hellblazer-73-damnations-flame-part-two-broadway-t/4000-38447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134426/","id":134426,"name":"Clouds of Doom","site_detail_url":"https://comicvine.gamespot.com/ravage-2099-14-clouds-of-doom/4000-134426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256217/","id":256217,"name":"Spider-Man: Maximum Carnage","site_detail_url":"https://comicvine.gamespot.com/spider-man-maximum-carnage-1-spider-man-maximum-ca/4000-256217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38505/","id":38505,"name":"A Time of Marvels","site_detail_url":"https://comicvine.gamespot.com/marvels-1-a-time-of-marvels/4000-38505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36680/","id":36680,"name":"Volume 26 The Mighty Thor II","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-26-volume-26-the-mighty-thor-ii/4000-36680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38555/","id":38555,"name":"Evil Woman!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-4-evil-woman/4000-38555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38470/","id":38470,"name":"Reflections Pt. 2","site_detail_url":"https://comicvine.gamespot.com/spawn-17-reflections-pt-2/4000-38470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166434/","id":166434,"name":"Maximum Carnage","site_detail_url":"https://comicvine.gamespot.com/maximum-carnage-1-maximum-carnage/4000-166434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38514/","id":38514,"name":"The Man Called Electro","site_detail_url":"https://comicvine.gamespot.com/spider-man-classics-10-the-man-called-electro/4000-38514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166623/","id":166623,"name":"Night Flight","site_detail_url":"https://comicvine.gamespot.com/gold-digger-7-night-flight/4000-166623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38499/","id":38499,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-man-without-fear-4/4000-38499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211639/","id":211639,"name":"","site_detail_url":"https://comicvine.gamespot.com/satans-six-hellspawn-1/4000-211639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38454/","id":38454,"name":"The Brute: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-10-the-brute-act-two/4000-38454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73827/","id":73827,"name":"Disorder in the Court","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-59-disorder-in-the-court/4000-73827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117777/","id":117777,"name":"Faith Part 4","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-22-faith-part-4/4000-117777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108441/","id":108441,"name":"Hard Sky","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-12-hard-sky/4000-108441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108780/","id":108780,"name":"Water God; Spare Changes; Kid Current, Online!","site_detail_url":"https://comicvine.gamespot.com/2099-unlimited-3-water-god-spare-changes-kid-curre/4000-108780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38496/","id":38496,"name":"War Zones","site_detail_url":"https://comicvine.gamespot.com/captain-america-423-war-zones/4000-38496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38507/","id":38507,"name":"Siege of Darkness Part 13: Sacrifice and Redemption","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-17-siege-of-darkness-pa/4000-38507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38541/","id":38541,"name":"Siege of Darkness, Part 15 Sacrifice Supreme","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-61-siege-of-darkne/4000-38541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38548/","id":38548,"name":"Once In A Blue Moon","site_detail_url":"https://comicvine.gamespot.com/starblast-1-once-in-a-blue-moon/4000-38548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38432/","id":38432,"name":"","site_detail_url":"https://comicvine.gamespot.com/samuree-4/4000-38432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231279/","id":231279,"name":"Silent Night... Deadly Night!","site_detail_url":"https://comicvine.gamespot.com/the-original-ghost-rider-19-silent-night-deadly-ni/4000-231279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38411/","id":38411,"name":"Bad Girls Don't Cry/Reddevil Meets The Fighting Yank","site_detail_url":"https://comicvine.gamespot.com/femforce-72-bad-girls-don-t-cry-reddevil-meets-the/4000-38411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432254/","id":432254,"name":"Jungfernfahrt","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-18-jungfernfahrt/4000-432254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432255/","id":432255,"name":"Captain America in der Falle","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-19-captain-ameri/4000-432255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432256/","id":432256,"name":"Es Kam aus Weltraumtiefen","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-20-es-kam-aus-we/4000-432256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65602/","id":65602,"name":"Fear Eats The Soul","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-208-fear-eats-the-soul/4000-65602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202024/","id":202024,"name":"The Dromedan Principle","site_detail_url":"https://comicvine.gamespot.com/real-heroes-3-the-dromedan-principle/4000-202024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202023/","id":202023,"name":"The City Above the City Below","site_detail_url":"https://comicvine.gamespot.com/real-heroes-2-the-city-above-the-city-below/4000-202023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202025/","id":202025,"name":"Blowing Smoke","site_detail_url":"https://comicvine.gamespot.com/real-heroes-4-blowing-smoke/4000-202025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202265/","id":202265,"name":"Missing Mutant Mystery","site_detail_url":"https://comicvine.gamespot.com/x-men-the-coming-of-triplikill-1-missing-mutant-my/4000-202265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392499/","id":392499,"name":"The Heartless Man","site_detail_url":"https://comicvine.gamespot.com/pro-action-spider-man-giveaway-1-the-heartless-man/4000-392499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66460/","id":66460,"name":"Seige of Darkness Part 10: Blood","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-45-seige-of-darkness-part-10-blood/4000-66460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66512/","id":66512,"name":"Siege of Darkness Part 17: Moral Courage","site_detail_url":"https://comicvine.gamespot.com/midnight-sons-unlimited-4-siege-of-darkness-part-1/4000-66512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94421/","id":94421,"name":"Brief Reunion","site_detail_url":"https://comicvine.gamespot.com/blaze-legacy-of-blood-2-brief-reunion/4000-94421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38504/","id":38504,"name":"Siege of Darkness Part 11: Speakeasy","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-145-siege-of-darkness-part-/4000-38504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153046/","id":153046,"name":"The Killing Season!","site_detail_url":"https://comicvine.gamespot.com/punisher-holiday-special-2-the-killing-season/4000-153046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38503/","id":38503,"name":"Death in the Family","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-58-death-in-the-family/4000-38503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36674/","id":36674,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics-17/4000-36674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38309/","id":38309,"name":"Trial By Jury - Part 2: Dreams of Innocence","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-384-trial-by-jury-part-2-dr/4000-38309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94946/","id":94946,"name":"Re-disunited","site_detail_url":"https://comicvine.gamespot.com/lethal-foes-of-spider-man-4-re-disunited/4000-94946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108717/","id":108717,"name":"Boiling Point","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-14-boiling-point/4000-108717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77433/","id":77433,"name":"Suicide Run 1: Terminal Objectives; Clock's Ticking","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-61-suicide-run-1-terminal/4000-77433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38199/","id":38199,"name":"Damnation's Flame, Part One: Brave New World","site_detail_url":"https://comicvine.gamespot.com/hellblazer-72-damnations-flame-part-one-brave-new-/4000-38199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73826/","id":73826,"name":"Shock The Shulkie","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-58-shock-the-shulkie/4000-73826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108440/","id":108440,"name":"The Gathering Storm","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-11-the-gathering-storm/4000-108440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38313/","id":38313,"name":"Goblin Night Part 2 of 2: Stage Fright; Techno Phobia! Part 2 of 2: Algorithm of Life; Siege of Darkness Part 6: Like Family, Like Enemy Part 1 of 2; Siege of Darkness Part 6: Treachery Redeemed","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-144-goblin-night-part-2-of-/4000-38313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38171/","id":38171,"name":"Twilight Of The Eighth Day - Part Two: Dead End","site_detail_url":"https://comicvine.gamespot.com/harbinger-24-twilight-of-the-eighth-day-part-two-d/4000-38171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38300/","id":38300,"name":"Sangre Means Blood!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-3-sangre-means-blood/4000-38300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38221/","id":38221,"name":"Reflections Pt. 1","site_detail_url":"https://comicvine.gamespot.com/spawn-16-reflections-pt-1/4000-38221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38259/","id":38259,"name":"Siege of Darkness Part 5: Sanctuary Invasion","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-16-siege-of-darkness-pa/4000-38259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38257/","id":38257,"name":"Siege of Darkness Part 3: Treachery; Goblin Night Part 1 of 2: Little Monsters; Digital Terror Part 1 of 2; Out of Time, In the Time Out Hotel","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-143-siege-of-darkness-part-/4000-38257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38209/","id":38209,"name":"The Brute: Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-9-the-brute-act-one/4000-38209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111737/","id":111737,"name":"","site_detail_url":"https://comicvine.gamespot.com/freak-force-1/4000-111737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38187/","id":38187,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-in-the-coils-of-leviathan-2/4000-38187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117776/","id":117776,"name":"Faith Part 3","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-21-faith-part-3/4000-117776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86451/","id":86451,"name":"Love is War; Grampas & Other Strangers; The Unkindest Cut","site_detail_url":"https://comicvine.gamespot.com/justice-league-quarterly-13-love-is-war-grampas-ot/4000-86451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38252/","id":38252,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-man-without-fear-3/4000-38252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38248/","id":38248,"name":"Going Ballistic","site_detail_url":"https://comicvine.gamespot.com/captain-america-422-going-ballistic/4000-38248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263123/","id":263123,"name":"Il Pianeta Delle Ombre & Effetto Venere","site_detail_url":"https://comicvine.gamespot.com/zona-x-6-il-pianeta-delle-ombre-effetto-venere/4000-263123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124347/","id":124347,"name":"Winds of Change","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-2-winds-of-change/4000-124347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127189/","id":127189,"name":"New Year's Evil","site_detail_url":"https://comicvine.gamespot.com/evil-ernie-0-new-years-evil/4000-127189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38260/","id":38260,"name":"To The Fifth Power","site_detail_url":"https://comicvine.gamespot.com/quasar-53-to-the-fifth-power/4000-38260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104487/","id":104487,"name":"Siege of Darkness Part 1: The Storm before the Storm","site_detail_url":"https://comicvine.gamespot.com/nightstalkers-14-siege-of-darkness-part-1-the-stor/4000-104487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38183/","id":38183,"name":"","site_detail_url":"https://comicvine.gamespot.com/samuree-3/4000-38183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38287/","id":38287,"name":"","site_detail_url":"https://comicvine.gamespot.com/union-3/4000-38287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51669/","id":51669,"name":"Siege of Darkness Part 4: Requiem","site_detail_url":"https://comicvine.gamespot.com/darkhold-pages-from-the-book-of-sins-15-siege-of-d/4000-51669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38256/","id":38256,"name":"Black Sheep","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-57-black-sheep/4000-38256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36673/","id":36673,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics-16/4000-36673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94945/","id":94945,"name":"Power Struggle","site_detail_url":"https://comicvine.gamespot.com/lethal-foes-of-spider-man-3-power-struggle/4000-94945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108716/","id":108716,"name":"Prophet and Loss","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-13-prophet-and-loss/4000-108716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38169/","id":38169,"name":"Fair Arms, Just Intents","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-yearbook-1-fair-arms-just-intents/4000-38169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108439/","id":108439,"name":"Jigsaw 2099","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-10-jigsaw-2099/4000-108439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38012/","id":38012,"name":"Twilight of The Eight Day Part One: The Most Unkindest Cut Of All","site_detail_url":"https://comicvine.gamespot.com/harbinger-23-twilight-of-the-eight-day-part-one-th/4000-38012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105457/","id":105457,"name":"Starlost, Part two: Power Plays","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-41-starlost-part-two-power-plays/4000-105457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57290/","id":57290,"name":"An Obituary for Octopus","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-3-an-obituary-for-octopus/4000-57290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38143/","id":38143,"name":"Family Matters","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-2-family-matters/4000-38143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38066/","id":38066,"name":"Myths Pt.2","site_detail_url":"https://comicvine.gamespot.com/spawn-15-myths-pt2/4000-38066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38098/","id":38098,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-6-rapture/4000-38098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38043/","id":38043,"name":"Guilty as Sin","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-82-guilty-as-sin/4000-38043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121192/","id":121192,"name":"The Calliong","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-15-the-calliong/4000-121192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38053/","id":38053,"name":"The Face: Final Act","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-8-the-face-final-act/4000-38053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109807/","id":109807,"name":"The Final Countdown","site_detail_url":"https://comicvine.gamespot.com/team-youngblood-3-the-final-countdown/4000-109807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117778/","id":117778,"name":"Faith Part 2","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-20-faith-part-2/4000-117778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38094/","id":38094,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-man-without-fear-2/4000-38094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272258/","id":272258,"name":"Fureur chez les saints","site_detail_url":"https://comicvine.gamespot.com/soda-5-fureur-chez-les-saints/4000-272258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107468/","id":107468,"name":"Dogged","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-60-dogged/4000-107468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134478/","id":134478,"name":"Faith and Revival","site_detail_url":"https://comicvine.gamespot.com/doom-2099-11-faith-and-revival/4000-134478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94732/","id":94732,"name":"In the Sights of the Punisher!","site_detail_url":"https://comicvine.gamespot.com/killpower-the-early-years-3-in-the-sights-of-the-p/4000-94732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38133/","id":38133,"name":"Mortal Coils","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-306-mortal-coils/4000-38133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38130/","id":38130,"name":"Sachs & The Single Girl","site_detail_url":"https://comicvine.gamespot.com/sachs-violens-1-sachs-the-single-girl/4000-38130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107644/","id":107644,"name":"Killer Instinct - Prologue","site_detail_url":"https://comicvine.gamespot.com/cyber-force-1-killer-instinct-prologue/4000-107644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38083/","id":38083,"name":"Wrathful Moon ","site_detail_url":"https://comicvine.gamespot.com/prototype-4-wrathful-moon/4000-38083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116995/","id":116995,"name":"Inner Fears","site_detail_url":"https://comicvine.gamespot.com/deathlok-29-inner-fears/4000-116995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38099/","id":38099,"name":"Skeletons in the Closet","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-56-skeletons-in-the-close/4000-38099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157462/","id":157462,"name":"Axis","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-4-axis/4000-157462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94944/","id":94944,"name":"Hate Is a Many Splendored Thing","site_detail_url":"https://comicvine.gamespot.com/lethal-foes-of-spider-man-2-hate-is-a-many-splendo/4000-94944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108438/","id":108438,"name":"Love and Bullets Part three: Requiem","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-9-love-and-bullets-part-three-re/4000-108438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108715/","id":108715,"name":"Death From On High","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-12-death-from-on-high/4000-108715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38015/","id":38015,"name":"Darque Passage Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-second-life-of-doctor-mirage-1-darque-passage-/4000-38015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37860/","id":37860,"name":"Should Old Acquaintances Be Forgotten?","site_detail_url":"https://comicvine.gamespot.com/harbinger-22-should-old-acquaintances-be-forgotten/4000-37860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105456/","id":105456,"name":"The Starlost, Part One: Power Tools","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-40-the-starlost-part-one-power-to/4000-105456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37866/","id":37866,"name":"Strange Bedfellows","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-21-strange-bedfellows/4000-37866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37892/","id":37892,"name":"Do the Right Thing","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-81-do-the-right-thing/4000-37892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113887/","id":113887,"name":"Victims","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-14-victims/4000-113887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94731/","id":94731,"name":"The Tides of Time","site_detail_url":"https://comicvine.gamespot.com/killpower-the-early-years-2-the-tides-of-time/4000-94731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37901/","id":37901,"name":"The Face: Act Three","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-7-the-face-act-three/4000-37901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116992/","id":116992,"name":"The Visitation","site_detail_url":"https://comicvine.gamespot.com/deathlok-28-the-visitation/4000-116992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164049/","id":164049,"name":"Huntress","site_detail_url":"https://comicvine.gamespot.com/showcase-93-10-huntress/4000-164049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37878/","id":37878,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-shadow-in-the-coils-of-leviathan-1/4000-37878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117774/","id":117774,"name":"Faith Part 1","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-19-faith-part-1/4000-117774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37946/","id":37946,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-man-without-fear-1/4000-37946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108755/","id":108755,"name":"Thirty Mile Mall; Remote ; Hoist With His Own Petard","site_detail_url":"https://comicvine.gamespot.com/2099-unlimited-2-thirty-mile-mall-remote-hoist-wit/4000-108755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121151/","id":121151,"name":"Memories of the Future","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1-memories-of-the-fut/4000-121151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127188/","id":127188,"name":"Chaos Rules","site_detail_url":"https://comicvine.gamespot.com/evil-ernie-the-resurrection-4-chaos-rules/4000-127188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37954/","id":37954,"name":"The Conservation Of Angular Momentum","site_detail_url":"https://comicvine.gamespot.com/quasar-51-the-conservation-of-angular-momentum/4000-37954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123033/","id":123033,"name":"A.W.O.L.!","site_detail_url":"https://comicvine.gamespot.com/wild-thing-7-awol/4000-123033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37958/","id":37958,"name":"Light the Night, Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-39-light-the-night-part-2/4000-37958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37974/","id":37974,"name":"","site_detail_url":"https://comicvine.gamespot.com/union-2/4000-37974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37935/","id":37935,"name":"Hero and the Terror","site_detail_url":"https://comicvine.gamespot.com/prototype-3-hero-and-the-terror/4000-37935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37960/","id":37960,"name":"Crisis of Conscience (Part 2 of 3): Soul Gauntlet","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-105-crisis-of-conscience-part-2-/4000-37960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74667/","id":74667,"name":"Original Sinn!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-102-original-sinn/4000-74667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37950/","id":37950,"name":"Holy War!","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-5-holy-war/4000-37950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68456/","id":68456,"name":"Enlightened Allies","site_detail_url":"https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-17-enlightened-alli/4000-68456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37916/","id":37916,"name":"From Here To Alternity!","site_detail_url":"https://comicvine.gamespot.com/1963-6-from-here-to-alternity/4000-37916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37951/","id":37951,"name":"Phalkon Corpse","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-55-phalkon-corpse/4000-37951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37921/","id":37921,"name":"Dead Set On Destruction","site_detail_url":"https://comicvine.gamespot.com/youngblood-strikefile-4-dead-set-on-destruction/4000-37921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362998/","id":362998,"name":"The Power","site_detail_url":"https://comicvine.gamespot.com/invisible-people-2-the-power/4000-362998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94943/","id":94943,"name":"Deadly Reunion","site_detail_url":"https://comicvine.gamespot.com/lethal-foes-of-spider-man-1-deadly-reunion/4000-94943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108714/","id":108714,"name":"Under Seige","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-11-under-seige/4000-108714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37789/","id":37789,"name":"Samson Unleashed","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-381-samson-unleashed/4000-37789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108437/","id":108437,"name":"Love and Bullets Part Two: Passion","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-8-love-and-bullets-part-two-pass/4000-108437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37812/","id":37812,"name":"What If... Iron Man of 2020 had been stranded in the past? Rick Jones remained the Hulk? Spider-Man killed the Lizard?","site_detail_url":"https://comicvine.gamespot.com/what-if-53-what-if-iron-man-of-2020-had-been-stran/4000-37812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37714/","id":37714,"name":"Thicker Than Water","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-14-thicker-than-water/4000-37714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37748/","id":37748,"name":"Running From Justice","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-80-running-from-justice/4000-37748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37722/","id":37722,"name":"Operation: Deep Freeze - Part 3: The Consequences","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-20-operation-deep-freeze-part-3-the-co/4000-37722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37769/","id":37769,"name":"Myths Pt.1","site_detail_url":"https://comicvine.gamespot.com/spawn-14-myths-pt1/4000-37769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37802/","id":37802,"name":"Better Off Dead","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-13-better-off-dead/4000-37802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37756/","id":37756,"name":"The Face: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-6-the-face-act-two/4000-37756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91552/","id":91552,"name":"Punch-Out On the Intergalactic Express!","site_detail_url":"https://comicvine.gamespot.com/darkhawk-31-punch-out-on-the-intergalactic-express/4000-91552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117773/","id":117773,"name":"Fame Part 6","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-18-fame-part-6/4000-117773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138052/","id":138052,"name":"Savage Land Invitational","site_detail_url":"https://comicvine.gamespot.com/super-soldiers-6-savage-land-invitational/4000-138052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259273/","id":259273,"name":"Enter the Savage Dragon!","site_detail_url":"https://comicvine.gamespot.com/savage-dragonteenage-mutant-ninja-turtles-crossove/4000-259273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37803/","id":37803,"name":"Horizon Of Holes","site_detail_url":"https://comicvine.gamespot.com/quasar-50-horizon-of-holes/4000-37803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37800/","id":37800,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-136/4000-37800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37847/","id":37847,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-137/4000-37847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37952/","id":37952,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-138/4000-37952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98932/","id":98932,"name":"In the Beginning...","site_detail_url":"https://comicvine.gamespot.com/brigade-0-in-the-beginning/4000-98932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66456/","id":66456,"name":"Road to Vengeance: The Missing Link","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-41-road-to-vengeance-the-missing-link/4000-66456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122940/","id":122940,"name":"Wild Side Story, Act Two","site_detail_url":"https://comicvine.gamespot.com/wild-thing-6-wild-side-story-act-two/4000-122940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77431/","id":77431,"name":"Blood Red Moon","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-58-blood-red-moon/4000-77431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37811/","id":37811,"name":"Crisis of Conscience (Part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-104-crisis-of-conscience-part-1-/4000-37811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37792/","id":37792,"name":"Television Blind","site_detail_url":"https://comicvine.gamespot.com/captain-america-419-television-blind/4000-37792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107733/","id":107733,"name":"Mindgames!","site_detail_url":"https://comicvine.gamespot.com/cyber-force-0-mindgames/4000-107733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74666/","id":74666,"name":"Aftermath","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-101-aftermath/4000-74666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37797/","id":37797,"name":"Mortal Sins","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-4-mortal-sins/4000-37797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37799/","id":37799,"name":"Mechamorphosis","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-54-mechamorphosis/4000-37799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48956/","id":48956,"name":"Back To The Negative Zone!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-unlimited-3-back-to-the-negative-zo/4000-48956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157461/","id":157461,"name":"Hellraisers","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-2-hellraisers/4000-157461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107494/","id":107494,"name":"Two-Face: 2 Face, Part 2: Bad Judgment / Brainwashed / Shadow of the Honeycreeper","site_detail_url":"https://comicvine.gamespot.com/showcase-93-8-two-face-2-face-part-2-bad-judgment-/4000-107494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108713/","id":108713,"name":"Mother's Day","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-10-mothers-day/4000-108713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37571/","id":37571,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-0/4000-37571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108436/","id":108436,"name":"Love and Bullets Part One: Confession","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-7-love-and-bullets-part-one-conf/4000-108436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110470/","id":110470,"name":"Midnight Massacre - Part 5: Dead Man's Tales","site_detail_url":"https://comicvine.gamespot.com/ghost-riderblaze-spirits-of-vengeance-13-midnight-/4000-110470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37663/","id":37663,"name":"Midnight Massacre - Part 4: The Bait","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-12-midnight-massacre-pa/4000-37663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37576/","id":37576,"name":"Labyrinth Of The Mind","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-13-labyrinth-of-the-mind/4000-37576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153181/","id":153181,"name":"Dreamkiller","site_detail_url":"https://comicvine.gamespot.com/darkhawk-annual-2-dreamkiller/4000-153181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37673/","id":37673,"name":"What If Doom became Sorcerer Supreme?","site_detail_url":"https://comicvine.gamespot.com/what-if-52-what-if-doom-became-sorcerer-supreme/4000-37673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102511/","id":102511,"name":"A Bite Of The Apple","site_detail_url":"https://comicvine.gamespot.com/shadowman-16-a-bite-of-the-apple/4000-102511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57289/","id":57289,"name":"Maximum Carnage, Part 14: The Awesome Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-2-maximum-carnage-part-14-the/4000-57289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65597/","id":65597,"name":"Maximum Carnage, Part 13: War of the Heart","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-203-maximum-carnage-par/4000-65597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37630/","id":37630,"name":"Flashback Pt.2","site_detail_url":"https://comicvine.gamespot.com/spawn-13-flashback-pt2/4000-37630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37703/","id":37703,"name":"Maximum Carnage, Part 11: Soldiers of Hope","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-380-maximum-carnage-part-11/4000-37703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37668/","id":37668,"name":"Maximum Carnage, Part 12: The Light!","site_detail_url":"https://comicvine.gamespot.com/spider-man-37-maximum-carnage-part-12-the-light/4000-37668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37660/","id":37660,"name":"Werewolf by Knight","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-53-werewolf-by-knight/4000-37660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37617/","id":37617,"name":"The Face: Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-5-the-face-act-one/4000-37617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37669/","id":37669,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-classics-5/4000-37669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117772/","id":117772,"name":"Fame Part 5","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-17-fame-part-5/4000-117772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36656/","id":36656,"name":"There Is No Future -- Only the Past Happening Again and Again","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-annual-3-there-is-no-futur/4000-36656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113911/","id":113911,"name":"Emperor of the Mind","site_detail_url":"https://comicvine.gamespot.com/doom-2099-8-emperor-of-the-mind/4000-113911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37653/","id":37653,"name":"To Have And To Have Not","site_detail_url":"https://comicvine.gamespot.com/captain-america-418-to-have-and-to-have-not/4000-37653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37687/","id":37687,"name":"Feeding Frenzy","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-56-feeding-frenzy/4000-37687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107423/","id":107423,"name":"Bodies of Evidence","site_detail_url":"https://comicvine.gamespot.com/the-punisher-81-bodies-of-evidence/4000-107423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37664/","id":37664,"name":"Women On The Verge","site_detail_url":"https://comicvine.gamespot.com/quasar-49-women-on-the-verge/4000-37664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37661/","id":37661,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-134/4000-37661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37708/","id":37708,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-135/4000-37708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37656/","id":37656,"name":"Sketetal Remains","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-39-sketetal-remains/4000-37656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122938/","id":122938,"name":"Wild Side Story, Act One","site_detail_url":"https://comicvine.gamespot.com/wild-thing-5-wild-side-story-act-one/4000-122938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77430/","id":77430,"name":"Blood Money","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-57-blood-money/4000-77430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116989/","id":116989,"name":"The Detriment of Heroics","site_detail_url":"https://comicvine.gamespot.com/deathlok-26-the-detriment-of-heroics/4000-116989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67008/","id":67008,"name":"Family Ties","site_detail_url":"https://comicvine.gamespot.com/night-thrasher-1-family-ties/4000-67008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37658/","id":37658,"name":"The Damned","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-3-the-damned/4000-37658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157460/","id":157460,"name":"Doppia identità","site_detail_url":"https://comicvine.gamespot.com/lazarus-ledd-1-doppia-identita/4000-157460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108721/","id":108721,"name":"Home Again, Home Again","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-9-home-again-home-again/4000-108721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37481/","id":37481,"name":"Knowledge","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-76-knowledge/4000-37481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37560/","id":37560,"name":"The Darkening Part 3: The Brotherhood","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-99-the-darkening-part-3-the-brother/4000-37560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113892/","id":113892,"name":"Sky Above, Death Below","site_detail_url":"https://comicvine.gamespot.com/ravage-2099-8-sky-above-death-below/4000-113892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66454/","id":66454,"name":"Vengeance Is Mine!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-39-vengeance-is-mine/4000-66454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37488/","id":37488,"name":"Dead or Alive","site_detail_url":"https://comicvine.gamespot.com/pitt-2-dead-or-alive/4000-37488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37434/","id":37434,"name":"There Will Be Another Time","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-12-there-will-be-another-time/4000-37434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37436/","id":37436,"name":"Enter Kaliph","site_detail_url":"https://comicvine.gamespot.com/harbinger-19-enter-kaliph/4000-37436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91550/","id":91550,"name":"Shattered Fates (Part 4): Past Shock","site_detail_url":"https://comicvine.gamespot.com/darkhawk-29-shattered-fates-part-4-past-shock/4000-91550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37489/","id":37489,"name":"Fire Fight; The Outpost","site_detail_url":"https://comicvine.gamespot.com/savage-dragon-2-fire-fight-the-outpost/4000-37489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37490/","id":37490,"name":"Flashback Pt.1","site_detail_url":"https://comicvine.gamespot.com/spawn-12-flashback-pt1/4000-37490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37461/","id":37461,"name":"A Ticket to the Cleaners","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-68-a-ticket-to-the-cleaners/4000-37461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107735/","id":107735,"name":"The Tin Men of War: Part Four","site_detail_url":"https://comicvine.gamespot.com/cyber-force-4-the-tin-men-of-war-part-four/4000-107735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37519/","id":37519,"name":"Knight's Gambit","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-52-knights-gambit/4000-37519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37474/","id":37474,"name":"The Tarantula: Final Act","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-4-the-tarantula-final-act/4000-37474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159070/","id":159070,"name":"\"City at War\" Part XII","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-61-city-at-war-part-x/4000-159070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117771/","id":117771,"name":"Fame Part 4","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-16-fame-part-4/4000-117771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108435/","id":108435,"name":"Techno Gladiators","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-6-techno-gladiators/4000-108435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108378/","id":108378,"name":"Nothing Ever Changes!!; Hulk 2099","site_detail_url":"https://comicvine.gamespot.com/2099-unlimited-1-nothing-ever-changes-hulk-2099/4000-108378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37522/","id":37522,"name":"The Killing Season / Stroud's Fate","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-11-the-killing-season-s/4000-37522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37550/","id":37550,"name":"Servant of Dormammu","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-55-servant-of-dorm/4000-37550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107422/","id":107422,"name":"Last Confession","site_detail_url":"https://comicvine.gamespot.com/the-punisher-80-last-confession/4000-107422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37520/","id":37520,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-132/4000-37520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37569/","id":37569,"name":"Brothers in Arms (Part 2) Alone Against the Coven","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-133-brothers-in-arms-part-2/4000-37569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37515/","id":37515,"name":"Beyond The Pale","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-38-beyond-the-pale/4000-37515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122937/","id":122937,"name":"Secret Agendas!","site_detail_url":"https://comicvine.gamespot.com/wild-thing-4-secret-agendas/4000-122937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37450/","id":37450,"name":"","site_detail_url":"https://comicvine.gamespot.com/samuree-2/4000-37450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65596/","id":65596,"name":"Maximum Carnage, Part 9: The Turning Point","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-202-maximum-carnage-par/4000-65596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218214/","id":218214,"name":"Kings of the Ruined Earth","site_detail_url":"https://comicvine.gamespot.com/kamandi-at-earths-end-2-kings-of-the-ruined-earth/4000-218214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209943/","id":209943,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wildcats-compendium-1-tpb/4000-209943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108712/","id":108712,"name":"Flight or Fight","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-8-flight-or-fight/4000-108712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223215/","id":223215,"name":"X","site_detail_url":"https://comicvine.gamespot.com/comics-greatest-world-arcadia-1-x/4000-223215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73820/","id":73820,"name":"To Die and Live in L.A.! Part 1 of 6 \"Visit L.A. and Die!\"","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-52-to-die-and-live-in-l-a/4000-73820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108434/","id":108434,"name":"Punishment Hotel","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-5-punishment-hotel/4000-108434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118097/","id":118097,"name":"The Vengeance of Dragonklaw!","site_detail_url":"https://comicvine.gamespot.com/ravage-2099-7-the-vengeance-of-dragonklaw/4000-118097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37317/","id":37317,"name":"The Tyranny Gun!","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force-1-the-tyranny-gun/4000-37317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37284/","id":37284,"name":"Blood On The Sands Of Time","site_detail_url":"https://comicvine.gamespot.com/bloodshot-5-blood-on-the-sands-of-time/4000-37284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37287/","id":37287,"name":"Friends And Enemies","site_detail_url":"https://comicvine.gamespot.com/harbinger-18-friends-and-enemies/4000-37287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37292/","id":37292,"name":"Afraid Of The Darque Part Two: Where Do Gods Go To Pray?","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-22-afraid-of-the-darque-part/4000-37292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37293/","id":37293,"name":"Push And Shove","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-17-push-and-shove/4000-37293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108552/","id":108552,"name":"Epiphany","site_detail_url":"https://comicvine.gamespot.com/the-infinity-crusade-1-epiphany/4000-108552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37341/","id":37341,"name":"Home Story","site_detail_url":"https://comicvine.gamespot.com/spawn-11-home-story/4000-37341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37331/","id":37331,"name":"When Titans Clash","site_detail_url":"https://comicvine.gamespot.com/miracleman-24-when-titans-clash/4000-37331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170987/","id":170987,"name":"Avviso di Garanzia","site_detail_url":"https://comicvine.gamespot.com/nick-carter-3-avviso-di-garanzia/4000-170987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37321/","id":37321,"name":"The Tarantula: Act Three","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-3-the-tarantula-act-three/4000-37321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159069/","id":159069,"name":"\"City at War\" Part XI","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-60-city-at-war-part-x/4000-159069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37375/","id":37375,"name":"Duel To The Death With The Vulture/The Uncanny Threat Of The Terrible Tinkerer","site_detail_url":"https://comicvine.gamespot.com/spider-man-classics-3-duel-to-the-death-with-the-v/4000-37375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108126/","id":108126,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-punisher-sabretooth-designer-genes-1/4000-108126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117769/","id":117769,"name":"Fame Part 3","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-15-fame-part-3/4000-117769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37400/","id":37400,"name":"","site_detail_url":"https://comicvine.gamespot.com/union-1/4000-37400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37362/","id":37362,"name":"Time Bears All It Sons Away","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-37-time-bears-all-it-sons-/4000-37362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37368/","id":37368,"name":"The Real Monster","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-10-the-real-monster/4000-37368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122723/","id":122723,"name":"Part Four: When the Battle's Lost and Won","site_detail_url":"https://comicvine.gamespot.com/mys-tech-wars-4-part-four-when-the-battle-s-lost-a/4000-122723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37427/","id":37427,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-131/4000-37427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123731/","id":123731,"name":"Mutations","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-45-mutatio/4000-123731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122936/","id":122936,"name":"Old Friends","site_detail_url":"https://comicvine.gamespot.com/wild-thing-3-old-friends/4000-122936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65595/","id":65595,"name":"Maximum Carnage, Part 5: Over the Line","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-201-maximum-carnage-par/4000-65595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37365/","id":37365,"name":"Havoc in Hollywood","site_detail_url":"https://comicvine.gamespot.com/the-invaders-2-havoc-in-hollywood/4000-37365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36637/","id":36637,"name":"The Curse of Kyllian","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-annual-3-the-curse/4000-36637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50681/","id":50681,"name":"Dreadface Lives! / Riddle of the Celestials","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-26-dreadface-lives-riddle-of/4000-50681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123838/","id":123838,"name":"The Darkening Chapter Two- Reign of Blood","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-98-the-darkening-chapter-two-reign-/4000-123838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37366/","id":37366,"name":"Silverbird","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-51-silverbird/4000-37366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57644/","id":57644,"name":"Part 4: Deadly Birth!","site_detail_url":"https://comicvine.gamespot.com/venom-lethal-protector-4-part-4-deadly-birth/4000-57644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103925/","id":103925,"name":"Forces Of Darkness, Forces Of Light (Part 4)","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-annual-3-forces-of-darkness-force/4000-103925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37184/","id":37184,"name":"Destiny's Hand Part III","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-74-destinys-hand-part-iii/4000-37184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37254/","id":37254,"name":"Rocks and Waves","site_detail_url":"https://comicvine.gamespot.com/cable-1-rocks-and-waves/4000-37254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108711/","id":108711,"name":"Wing and A Prayer","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-7-wing-and-a-prayer/4000-108711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65594/","id":65594,"name":"Best of Enemies","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-200-best-of-enemies/4000-65594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101706/","id":101706,"name":"Final Retribution","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-47-final-retribution/4000-101706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406675/","id":406675,"name":"","site_detail_url":"https://comicvine.gamespot.com/life-and-death-of-fritz-the-cat-1/4000-406675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73819/","id":73819,"name":"Chasing Her Tale","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-51-chasing-her-tale/4000-73819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37147/","id":37147,"name":"Blood Of Ages","site_detail_url":"https://comicvine.gamespot.com/bloodshot-4-blood-of-ages/4000-37147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37150/","id":37150,"name":"Camouflage","site_detail_url":"https://comicvine.gamespot.com/harbinger-17-camouflage/4000-37150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57288/","id":57288,"name":"Maximum Carnage, Part 1: Begins Here","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-1-maximum-carnage-part-1-begi/4000-57288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159068/","id":159068,"name":"\"City at War\" Part X","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-59-city-at-war-part-x/4000-159068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37209/","id":37209,"name":"Crossing Over","site_detail_url":"https://comicvine.gamespot.com/spawn-10-crossing-over/4000-37209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107734/","id":107734,"name":"The Tin Men of War: Part Three","site_detail_url":"https://comicvine.gamespot.com/cyber-force-3-the-tin-men-of-war-part-three/4000-107734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212418/","id":212418,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-sandman-a-game-of-you-1-volume-5/4000-212418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37190/","id":37190,"name":"The Tarantula: Act Two","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-2-the-tarantula-act-two/4000-37190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37238/","id":37238,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-classics-2/4000-37238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121556/","id":121556,"name":"One Man's Treasure... ... Is Also Another Man's Treasure","site_detail_url":"https://comicvine.gamespot.com/the-tick-12-one-mans-treasure-is-also-another-mans/4000-121556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37226/","id":37226,"name":"Taste The Deathless Life","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-36-taste-the-deathless-lif/4000-37226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108433/","id":108433,"name":"Heroes Day","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-4-heroes-day/4000-108433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37241/","id":37241,"name":"My Enemy's Enemy, Part 4: Total War","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-100-my-enemys-enemy-part-4-total/4000-37241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37231/","id":37231,"name":"Dreaming Realities","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-9-dreaming-realities/4000-37231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37257/","id":37257,"name":"Nightmare on Bleecker Street","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-53-nightmare-on-bl/4000-37257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122930/","id":122930,"name":"Virtual Mayhem","site_detail_url":"https://comicvine.gamespot.com/wild-thing-2-virtual-mayhem/4000-122930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37164/","id":37164,"name":"","site_detail_url":"https://comicvine.gamespot.com/samuree-1/4000-37164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37221/","id":37221,"name":"A Vision Revealed!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-362-a-vision-revealed/4000-37221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37228/","id":37228,"name":"The Invaders Return!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-1-the-invaders-return/4000-37228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64431/","id":64431,"name":"Prepare Yourself for...Annex!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-27-prepare-yourself-/4000-64431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37268/","id":37268,"name":"The Darkening Part One: An Unholy Pact","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-97-the-darkening-part-one-an-unholy/4000-37268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331835/","id":331835,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/predator-cold-war-1-tpb/4000-331835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37205/","id":37205,"name":"When Wakes The Warbeast!","site_detail_url":"https://comicvine.gamespot.com/1963-2-when-wakes-the-warbeast/4000-37205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37229/","id":37229,"name":"Blood Rites","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-50-blood-rites/4000-37229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37051/","id":37051,"name":"Destiny's Hand Part II","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-73-destinys-hand-part-ii/4000-37051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59124/","id":59124,"name":"A Rage in Hell","site_detail_url":"https://comicvine.gamespot.com/the-spectre-5-a-rage-in-hell/4000-59124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108710/","id":108710,"name":"Downtown Is Deadly","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-6-downtown-is-deadly/4000-108710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73818/","id":73818,"name":"He's Dead?!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-50-hes-dead/4000-73818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70230/","id":70230,"name":"Forces of Darkness, Forces of Light - Act Three: Braking the Back of Love","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-34-forces-of-darkness-forces-of-l/4000-70230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110810/","id":110810,"name":"Storm Clouds","site_detail_url":"https://comicvine.gamespot.com/hellstorm-prince-of-lies-1-storm-clouds/4000-110810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37019/","id":37019,"name":"Crime-Lords Of Flatbush","site_detail_url":"https://comicvine.gamespot.com/bloodshot-3-crime-lords-of-flatbush/4000-37019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37022/","id":37022,"name":"Scrambled","site_detail_url":"https://comicvine.gamespot.com/harbinger-16-scrambled/4000-37022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65593/","id":65593,"name":"Fallen Heroes!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-199-fallen-heroes/4000-65593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159067/","id":159067,"name":"\"City at War\" Part IX","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-58-city-at-war-part-i/4000-159067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37026/","id":37026,"name":"Concrete Jungle","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-15-concrete-jungle/4000-37026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37104/","id":37104,"name":"What if Daredevil had saved Nuke?","site_detail_url":"https://comicvine.gamespot.com/what-if-48-what-if-daredevil-had-saved-nuke/4000-37104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65092/","id":65092,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-272/4000-65092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37056/","id":37056,"name":"The Tarantula: Act One","site_detail_url":"https://comicvine.gamespot.com/sandman-mystery-theatre-1-the-tarantula-act-one/4000-37056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117767/","id":117767,"name":"Fame Part 2","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-next-men-14-fame-part-2/4000-117767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279898/","id":279898,"name":"Nea Heliopolis","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-133-nea-heliopolis/4000-279898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108432/","id":108432,"name":"Last Exit From The Bronx","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-3-last-exit-from-the-bronx/4000-108432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37093/","id":37093,"name":"The Algebra of Need","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-8-the-algebra-of-need/4000-37093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37123/","id":37123,"name":"Field of Bad Dreams","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-52-field-of-bad-dr/4000-37123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122679/","id":122679,"name":"Part Two: Ignorant Armies","site_detail_url":"https://comicvine.gamespot.com/mys-tech-wars-2-part-two-ignorant-armies/4000-122679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122761/","id":122761,"name":"Where the Wild Things are.....","site_detail_url":"https://comicvine.gamespot.com/wild-thing-1-where-the-wild-things-are/4000-122761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37102/","id":37102,"name":"Nightlines","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-299-nightlines/4000-37102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123843/","id":123843,"name":"Patriot Games","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-96-patriot-games/4000-123843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37091/","id":37091,"name":"Whip Hand","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-49-whip-hand/4000-37091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36980/","id":36980,"name":"The Pact","site_detail_url":"https://comicvine.gamespot.com/silver-surferwarlock-resurrection-1-the-pact/4000-36980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108383/","id":108383,"name":"Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-1-deadly-genesis/4000-108383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107565/","id":107565,"name":"","site_detail_url":"https://comicvine.gamespot.com/tribe-1/4000-107565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59123/","id":59123,"name":"Crime and Judgement","site_detail_url":"https://comicvine.gamespot.com/the-spectre-4-crime-and-judgement/4000-59123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36956/","id":36956,"name":"","site_detail_url":"https://comicvine.gamespot.com/stormwatch-1/4000-36956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108709/","id":108709,"name":"Blood Oath","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-5-blood-oath/4000-108709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101704/","id":101704,"name":"The Treachery Within","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-45-the-treachery-within/4000-101704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130937/","id":130937,"name":"Who Is The New She-Hulk?","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-49-who-is-the-new-she-hul/4000-130937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108430/","id":108430,"name":"The Mourning After","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2099-2-the-mourning-after/4000-108430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36977/","id":36977,"name":"A Gathering of Heroes","site_detail_url":"https://comicvine.gamespot.com/secret-defenders-1-a-gathering-of-heroes/4000-36977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70229/","id":70229,"name":"Forces of Darkness, Forces of Light, Act 2 - The Soul Canyons","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-33-forces-of-darkness-forces-of-l/4000-70229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36909/","id":36909,"name":"An Ax To Grind","site_detail_url":"https://comicvine.gamespot.com/bloodshot-2-an-ax-to-grind/4000-36909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36911/","id":36911,"name":"Hard Boiled","site_detail_url":"https://comicvine.gamespot.com/harbinger-15-hard-boiled/4000-36911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36986/","id":36986,"name":"Random Violence: Time Out;","site_detail_url":"https://comicvine.gamespot.com/x-factor-88-random-violence-time-out/4000-36986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65592/","id":65592,"name":"Castles in the Air!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-198-castles-in-the-air/4000-65592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159066/","id":159066,"name":"\"City at War\" Part VIII","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-57-city-at-war-part-v/4000-159066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36954/","id":36954,"name":"Angela","site_detail_url":"https://comicvine.gamespot.com/spawn-9-angela/4000-36954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123032/","id":123032,"name":"Part One: Strange Screams of Death","site_detail_url":"https://comicvine.gamespot.com/mys-tech-wars-1-part-one-strange-screams-of-death/4000-123032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36965/","id":36965,"name":"Alternate Visions","site_detail_url":"https://comicvine.gamespot.com/the-avengers-360-alternate-visions/4000-36965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107691/","id":107691,"name":"The Tin Men of War: Part Two","site_detail_url":"https://comicvine.gamespot.com/cyber-force-2-the-tin-men-of-war-part-two/4000-107691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66450/","id":66450,"name":"Vs. Heart Attack!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-35-vs-heart-attack/4000-66450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36984/","id":36984,"name":"My Enemy's Enemy, Part 2: Uneasy Alliances...","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-98-my-enemys-enemy-part-2-uneasy/4000-36984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36973/","id":36973,"name":"When the Whip Comes Down","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-48-when-the-whip-comes-do/4000-36973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234627/","id":234627,"name":"Daredevil: The Fall of The Kingpin","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-fall-of-the-kingpin-1-daredevil-the-/4000-234627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36920/","id":36920,"name":"Wild Bunch","site_detail_url":"https://comicvine.gamespot.com/animal-man-57-wild-bunch/4000-36920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119458/","id":119458,"name":"Catwoman","site_detail_url":"https://comicvine.gamespot.com/showcase-93-3-catwoman/4000-119458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36975/","id":36975,"name":"Cemetary Dance","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-7-cemetary-dance/4000-36975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139654/","id":139654,"name":"Redemption","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-51-redemption/4000-139654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36863/","id":36863,"name":"Passion Play Part 1 of 8: Clean Slate","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-123-passion-play-part-1-of-/4000-36863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36971/","id":36971,"name":"A Hitchhiker's Guide To The Guardians Of The Galaxy","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-34-a-hitchhikers-guide-to-/4000-36971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36983/","id":36983,"name":"For The Children!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-298-for-the-children/4000-36983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36953/","id":36953,"name":"Enter:The Savage Dragon/Opening Shots-Part II","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-4-enterthe-savage-dragonopening-shots-p/4000-36953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150785/","id":150785,"name":"A New Midian, Part 2 - Here Be Monsters","site_detail_url":"https://comicvine.gamespot.com/clive-barkers-night-breed-25-a-new-midian-part-2-h/4000-150785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37008/","id":37008,"name":"...Into the Fire","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-95-into-the-fire/4000-37008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91546/","id":91546,"name":"Return To Forever (Part 5): Death And Life","site_detail_url":"https://comicvine.gamespot.com/darkhawk-25-return-to-forever-part-5-death-and-lif/4000-91546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57641/","id":57641,"name":"Part 1: Darksoul Drifting","site_detail_url":"https://comicvine.gamespot.com/venom-lethal-protector-1-part-1-darksoul-drifting/4000-57641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108720/","id":108720,"name":"The Specialist","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-4-the-specialist/4000-108720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107389/","id":107389,"name":"Police Action: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-75-police-action-part-3/4000-107389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112038/","id":112038,"name":"Uh-Oh","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-48-uh-oh/4000-112038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132459/","id":132459,"name":"Up Against a Stonewall","site_detail_url":"https://comicvine.gamespot.com/quantum-leap-9-up-against-a-stonewall/4000-132459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36872/","id":36872,"name":"What If... Cable Had Destroyed The X-Men?","site_detail_url":"https://comicvine.gamespot.com/what-if-46-what-if-cable-had-destroyed-the-x-men/4000-36872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99003/","id":99003,"name":"In Final Battle","site_detail_url":"https://comicvine.gamespot.com/youngblood-4-in-final-battle/4000-99003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36800/","id":36800,"name":"Blood Of The Machine","site_detail_url":"https://comicvine.gamespot.com/bloodshot-1-blood-of-the-machine/4000-36800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65591/","id":65591,"name":"Power Play!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-197-power-play/4000-65591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36855/","id":36855,"name":"Gift of the Gods","site_detail_url":"https://comicvine.gamespot.com/the-avengers-359-gift-of-the-gods/4000-36855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159065/","id":159065,"name":"\"City at War\" Part VII","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-56-city-at-war-part-v/4000-159065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59122/","id":59122,"name":"Crimes and Punishments","site_detail_url":"https://comicvine.gamespot.com/the-spectre-3-crimes-and-punishments/4000-59122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272259/","id":272259,"name":"Dieu est mort ce soir","site_detail_url":"https://comicvine.gamespot.com/soda-4-dieu-est-mort-ce-soir/4000-272259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281900/","id":281900,"name":"La grande illusione","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-131-la-grande-illusione/4000-281900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52026/","id":52026,"name":"Mindfield! (Part 3): Mistaken Identities","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-21-mindfield-part-3-mistaken-identitie/4000-52026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36864/","id":36864,"name":"Tooth and Nail","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-6-tooth-and-nail/4000-36864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227627/","id":227627,"name":"Und was macht Madonna?","site_detail_url":"https://comicvine.gamespot.com/mad-282-und-was-macht-madonna/4000-227627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126384/","id":126384,"name":"Crawl-Space! part three","site_detail_url":"https://comicvine.gamespot.com/knights-of-pendragon-8-crawl-space-part-three/4000-126384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36860/","id":36860,"name":"Cut Bait And Run","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-33-cut-bait-and-run/4000-36860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123841/","id":123841,"name":"Double Jeopardy","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-94-double-jeopardy/4000-123841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36862/","id":36862,"name":"The Legacy Quest Scenario","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-47-the-legacy-quest-scena/4000-36862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36776/","id":36776,"name":"Distant Memories","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-12-distant-memories/4000-36776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59121/","id":59121,"name":"Crimes of Passion","site_detail_url":"https://comicvine.gamespot.com/the-spectre-2-crimes-of-passion/4000-59121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108700/","id":108700,"name":"Nothing Gained","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-3-nothing-gained/4000-108700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101702/","id":101702,"name":"The Dead Zone","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-43-the-dead-zone/4000-101702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107379/","id":107379,"name":"Police Action: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-74-police-action-part-2/4000-107379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36762/","id":36762,"name":"The White Room","site_detail_url":"https://comicvine.gamespot.com/quasar-42-the-white-room/4000-36762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150572/","id":150572,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-books-of-magic-1-tpb/4000-150572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36740/","id":36740,"name":"Fight & Flight","site_detail_url":"https://comicvine.gamespot.com/pitt-1-fight-flight/4000-36740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36695/","id":36695,"name":"Vendetta On The Rocks","site_detail_url":"https://comicvine.gamespot.com/the-hard-corps-2-vendetta-on-the-rocks/4000-36695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36696/","id":36696,"name":"Wrath Of The Subterranean Underground Dwellers","site_detail_url":"https://comicvine.gamespot.com/harbinger-13-wrath-of-the-subterranean-underground/4000-36696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65590/","id":65590,"name":"The Death of Vermin, Part 3 - Faces","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-196-the-death-of-vermin/4000-65590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159064/","id":159064,"name":"\"City at War\" Part VI","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-55-city-at-war-part-v/4000-159064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36741/","id":36741,"name":"Payback, Part 2","site_detail_url":"https://comicvine.gamespot.com/spawn-7-payback-part-2/4000-36741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166939/","id":166939,"name":"Spider-Man: Cosmic Adventures","site_detail_url":"https://comicvine.gamespot.com/spider-man-cosmic-adventures-1-spider-man-cosmic-a/4000-166939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166433/","id":166433,"name":"Spider-Man: Venom Returns","site_detail_url":"https://comicvine.gamespot.com/spider-man-venom-returns-1-spider-man-venom-return/4000-166433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107436/","id":107436,"name":"In a Deadly Place","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-11-in-a-deadly-place/4000-107436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36748/","id":36748,"name":"Arkon's Asylum","site_detail_url":"https://comicvine.gamespot.com/the-avengers-358-arkons-asylum/4000-36748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36648/","id":36648,"name":"Only the Lucky Ones Dies","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-annual-7-only-the-lucky-one/4000-36648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110474/","id":110474,"name":"U.N. Force","site_detail_url":"https://comicvine.gamespot.com/un-force-1-un-force/4000-110474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137388/","id":137388,"name":"Catwoman","site_detail_url":"https://comicvine.gamespot.com/showcase-93-1-catwoman/4000-137388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38321/","id":38321,"name":"The World Was At Peace","site_detail_url":"https://comicvine.gamespot.com/the-golden-age-1-the-world-was-at-peace/4000-38321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202434/","id":202434,"name":"Crimes and Punishments","site_detail_url":"https://comicvine.gamespot.com/the-spectre-crimes-and-punishments-1-crimes-and-pu/4000-202434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64596/","id":64596,"name":"Arachnophobia Too","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-372-arachnophobia-too/4000-64596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36760/","id":36760,"name":"Here there be Dragons","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-5-here-there-be-dragons/4000-36760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126368/","id":126368,"name":"Crawl-Space! part two","site_detail_url":"https://comicvine.gamespot.com/knights-of-pendragon-7-crawl-space-part-two/4000-126368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36558/","id":36558,"name":"Dreaming with the Enemy","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-120-dreaming-with-the-enemy/4000-36558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104072/","id":104072,"name":"Golden Boy","site_detail_url":"https://comicvine.gamespot.com/guy-gardner-4-golden-boy/4000-104072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36755/","id":36755,"name":"We Who Are About To Die Salute You","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-32-we-who-are-about-to-die/4000-36755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130936/","id":130936,"name":"Master Puppet","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-47-master-puppet/4000-130936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108237/","id":108237,"name":"Zounds O' silence/Present Tense/The Big X-Mas Blackout/The Spirit Of The Season/Revisionist History/ Yule Memory/Holiday On Ice/The Rapt Lamp","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-1992-zounds-o-silencepresen/4000-108237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431797/","id":431797,"name":"Heller Wahnsinn","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-16-heller-wahnsi/4000-431797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432253/","id":432253,"name":"Unter Legenden","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-17-unter-legende/4000-432253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36682/","id":36682,"name":"V Is For Valkyra","site_detail_url":"https://comicvine.gamespot.com/femforce-62-v-is-for-valkyra/4000-36682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36766/","id":36766,"name":"Return to the Mad Dog Ward, Part 2: Brainstorm!","site_detail_url":"https://comicvine.gamespot.com/spider-man-30-return-to-the-mad-dog-ward-part-2-br/4000-36766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74631/","id":74631,"name":"In the Mind of Chimera","site_detail_url":"https://comicvine.gamespot.com/team-titans-annual-1-in-the-mind-of-chimera/4000-74631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300412/","id":300412,"name":"Danger on the Docks","site_detail_url":"https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-1-2-dan/4000-300412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184318/","id":184318,"name":"Differences!","site_detail_url":"https://comicvine.gamespot.com/marvel-collectors-edition-1-differences/4000-184318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135305/","id":135305,"name":"Out of the Shadows","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-out-of-the-shadows-1-out-of-the-shadows/4000-135305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183612/","id":183612,"name":"Red Christmas","site_detail_url":"https://comicvine.gamespot.com/punisher-holiday-special-1-red-christmas/4000-183612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36757/","id":36757,"name":"Death Watch","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-46-death-watch/4000-36757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77513/","id":77513,"name":"Cyberwar (Part Three): Siege","site_detail_url":"https://comicvine.gamespot.com/deathlok-19-cyberwar-part-three-siege/4000-77513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98801/","id":98801,"name":"Operation: Moonwitch: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/the-hacker-files-6-operation-moonwitch-chapter-2/4000-98801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363241/","id":363241,"name":"Mortal Combat","site_detail_url":"https://comicvine.gamespot.com/invisible-people-3-mortal-combat/4000-363241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36518/","id":36518,"name":"Clash Of Marvels","site_detail_url":"https://comicvine.gamespot.com/quasar-41-clash-of-marvels/4000-36518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-59120/","id":59120,"name":"Crimes of Violence","site_detail_url":"https://comicvine.gamespot.com/the-spectre-1-crimes-of-violence/4000-59120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108699/","id":108699,"name":"Nothing Ventured","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-2-nothing-ventured/4000-108699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104727/","id":104727,"name":"Police Action: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-73-police-action-part-1/4000-104727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108429/","id":108429,"name":"Ravage 2099","site_detail_url":"https://comicvine.gamespot.com/ravage-2099-1-ravage-2099/4000-108429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400102/","id":400102,"name":"The Far Side Gallery 4","site_detail_url":"https://comicvine.gamespot.com/far-side-gallery-4-the-far-side-gallery-4/4000-400102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131350/","id":131350,"name":"The Trial of Venom","site_detail_url":"https://comicvine.gamespot.com/spider-man-special-edition-1-the-trial-of-venom/4000-131350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464485/","id":464485,"name":"Tim und Struppi in Amerika","site_detail_url":"https://comicvine.gamespot.com/die-abenteuer-von-tim-und-struppi-2-tim-und-strupp/4000-464485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36455/","id":36455,"name":"The H.A.R.D. Way","site_detail_url":"https://comicvine.gamespot.com/the-hard-corps-1-the-hard-way/4000-36455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36456/","id":36456,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/harbinger-12-revenge/4000-36456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35181/","id":35181,"name":"Volume 22 Amazing Spider-Man V","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-22-volume-22-amazing-spider-man/4000-35181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65589/","id":65589,"name":"The Death of Vermin, Part 2 - Masquerade","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-195-the-death-of-vermin/4000-65589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107322/","id":107322,"name":"Tight Spot","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-10-tight-spot/4000-107322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36507/","id":36507,"name":"The Night Visitors","site_detail_url":"https://comicvine.gamespot.com/the-avengers-357-the-night-visitors/4000-36507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64594/","id":64594,"name":"Life Stings","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-370-life-stings/4000-64594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36525/","id":36525,"name":"What If Venom Had Possessed the Punisher?","site_detail_url":"https://comicvine.gamespot.com/what-if-44-what-if-venom-had-possessed-the-punishe/4000-36525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121070/","id":121070,"name":"\"City at War\" Part V","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-54-city-at-war-part-v/4000-121070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36476/","id":36476,"name":"The Beast of Vengeance!","site_detail_url":"https://comicvine.gamespot.com/eclipso-2-the-beast-of-vengeance/4000-36476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36513/","id":36513,"name":"Prelude To A Kill","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-31-prelude-to-a-kill/4000-36513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36517/","id":36517,"name":"Bad Medicine","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-4-bad-medicine/4000-36517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126366/","id":126366,"name":"Crawl-Space!","site_detail_url":"https://comicvine.gamespot.com/knights-of-pendragon-6-crawl-space/4000-126366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36522/","id":36522,"name":"Return to the Mad Dog Ward, Part 1: Hope and Other Liars","site_detail_url":"https://comicvine.gamespot.com/spider-man-29-return-to-the-mad-dog-ward-part-1-ho/4000-36522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123837/","id":123837,"name":"The Titans Went On Vacation and All They Got Me Was This Lousy...","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-93-the-titans-went-on-vacation-and-/4000-123837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36515/","id":36515,"name":"Goblin Knight","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-45-goblin-knight/4000-36515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98800/","id":98800,"name":"Operation: Moonwitch: Chapter 1","site_detail_url":"https://comicvine.gamespot.com/the-hacker-files-5-operation-moonwitch-chapter-1/4000-98800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64593/","id":64593,"name":"Electric Doom","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-369-electric-doom/4000-64593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107620/","id":107620,"name":"Spider-Man 2099","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-1-spider-man-2099/4000-107620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104726/","id":104726,"name":"Life During Wartime","site_detail_url":"https://comicvine.gamespot.com/the-punisher-72-life-during-wartime/4000-104726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36399/","id":36399,"name":"Ghost of the Past, Part 3: A Convocation of Politic Worms","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-399-ghost-of-the-past-part-3-a/4000-36399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270366/","id":270366,"name":"O.P.A.","site_detail_url":"https://comicvine.gamespot.com/largo-winch-3-opa/4000-270366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107063/","id":107063,"name":"X-Cutioner's Song Part One: The Overture","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-294-x-cutioners-song-part-one-th/4000-107063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123895/","id":123895,"name":"The Titans $ell Out $pecial (or, The Buck Stops Here!)","site_detail_url":"https://comicvine.gamespot.com/titans-sell-out-1-the-titans-ell-out-pecial-or-the/4000-123895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36331/","id":36331,"name":"Hard Choices","site_detail_url":"https://comicvine.gamespot.com/harbinger-11-hard-choices/4000-36331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77459/","id":77459,"name":"Goners","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-9-goners/4000-77459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64592/","id":64592,"name":"On Razored Wings","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-368-on-razored-wings/4000-64592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36384/","id":36384,"name":"Payback, Part 1","site_detail_url":"https://comicvine.gamespot.com/spawn-6-payback-part-1/4000-36384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159063/","id":159063,"name":"\"City at War\" Part IV","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-53-city-at-war-part-i/4000-159063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107134/","id":107134,"name":"X-Cutioner's Song Part Two: Tough Love","site_detail_url":"https://comicvine.gamespot.com/x-factor-84-x-cutioners-song-part-two-tough-love/4000-107134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164617/","id":164617,"name":"The Red Triangle Agenda","site_detail_url":"https://comicvine.gamespot.com/soviet-super-soldiers-1-the-red-triangle-agenda/4000-164617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36416/","id":36416,"name":"Blood & Metal, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/cable-2-blood-metal-pt-2/4000-36416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57827/","id":57827,"name":"Night of the Sentinels","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-1-night-of-the-sentinels/4000-57827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89456/","id":89456,"name":"Terminated: The Death of Slade Wilson","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-16-terminated-the-death/4000-89456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36436/","id":36436,"name":"My Mother -- My Enemy?!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-92-my-mother-my-enemy/4000-36436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74609/","id":74609,"name":"Out of Chaos!","site_detail_url":"https://comicvine.gamespot.com/team-titans-3-out-of-chaos/4000-74609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36398/","id":36398,"name":"Arguing A Called Strike","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-30-arguing-a-called-strike/4000-36398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201360/","id":201360,"name":"Eternal Vigilance","site_detail_url":"https://comicvine.gamespot.com/punishercaptain-america-blood-glory-2-eternal-vigi/4000-201360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131213/","id":131213,"name":"Sabotage","site_detail_url":"https://comicvine.gamespot.com/x-force-and-spider-man-1-sabotage/4000-131213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36400/","id":36400,"name":"The Animus Engagement","site_detail_url":"https://comicvine.gamespot.com/the-infinity-war-6-the-animus-engagement/4000-36400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337046/","id":337046,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-art-97/4000-337046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36403/","id":36403,"name":"Some of Your Blood","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-3-some-of-your-blood/4000-36403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36425/","id":36425,"name":"Strange Bedfellows Part II","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-47-strange-bedfell/4000-36425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36278/","id":36278,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-115/4000-36278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104070/","id":104070,"name":"What's a Guy to Do?","site_detail_url":"https://comicvine.gamespot.com/guy-gardner-2-whats-a-guy-to-do/4000-104070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36392/","id":36392,"name":"Death in a Gathering Place","site_detail_url":"https://comicvine.gamespot.com/the-avengers-356-death-in-a-gathering-place/4000-36392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52023/","id":52023,"name":"Rest In Peace!","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-18-rest-in-peace/4000-52023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359353/","id":359353,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-2/4000-359353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36401/","id":36401,"name":"The End Has Just Begun","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-44-the-end-has-just-begun/4000-36401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679477/","id":679477,"name":"Prisoners of Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/marvel-milestone-edition-fantastic-four-5-prisoner/4000-679477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77512/","id":77512,"name":"Cyberwar (Part One): The Search For Humanity","site_detail_url":"https://comicvine.gamespot.com/deathlok-17-cyberwar-part-one-the-search-for-human/4000-77512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98799/","id":98799,"name":"Soft War: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/the-hacker-files-4-soft-war-chapter-4/4000-98799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35194/","id":35194,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics-4/4000-35194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105357/","id":105357,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-2-revelations/4000-105357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123835/","id":123835,"name":"Growing Pains","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-91-growing-pains/4000-123835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104725/","id":104725,"name":"Loose Ends","site_detail_url":"https://comicvine.gamespot.com/the-punisher-71-loose-ends/4000-104725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130904/","id":130904,"name":"With Malice Toward All!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-369-with-malice-toward-all/4000-130904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36154/","id":36154,"name":"Typhoid's Kiss & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-113-typhoids-kiss-other-sto/4000-36154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36210/","id":36210,"name":"New Beginnings","site_detail_url":"https://comicvine.gamespot.com/harbinger-10-new-beginnings/4000-36210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36227/","id":36227,"name":"Chasing One's Tail","site_detail_url":"https://comicvine.gamespot.com/aquaman-11-chasing-ones-tail/4000-36227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36289/","id":36289,"name":"Painting the Town","site_detail_url":"https://comicvine.gamespot.com/x-factor-83-painting-the-town/4000-36289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36214/","id":36214,"name":"Rainbow's End","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-14-rainbows-end/4000-36214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159062/","id":159062,"name":"\"City at War\" Part III","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-52-city-at-war-part-i/4000-159062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77458/","id":77458,"name":"The Hunting Ground","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-8-the-hunting-ground/4000-77458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107643/","id":107643,"name":"The Tin Men of War: Part One","site_detail_url":"https://comicvine.gamespot.com/cyber-force-1-the-tin-men-of-war-part-one/4000-107643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36076/","id":36076,"name":"Typhoid's Kiss & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-112-typhoids-kiss-other-sto/4000-36076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36269/","id":36269,"name":"Dark Dawn","site_detail_url":"https://comicvine.gamespot.com/captain-america-408-dark-dawn/4000-36269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36264/","id":36264,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/spawn-5-justice/4000-36264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35180/","id":35180,"name":"Kang's World","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-21-kang-s-world/4000-35180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36239/","id":36239,"name":"A New Guy in Town","site_detail_url":"https://comicvine.gamespot.com/guy-gardner-1-a-new-guy-in-town/4000-36239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89455/","id":89455,"name":"Escape From New York!","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-15-escape-from-new-york/4000-89455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74608/","id":74608,"name":"From the Ashes of Defeat","site_detail_url":"https://comicvine.gamespot.com/team-titans-2-from-the-ashes-of-defeat/4000-74608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36296/","id":36296,"name":"Blood & Metal","site_detail_url":"https://comicvine.gamespot.com/cable-1-blood-metal/4000-36296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35170/","id":35170,"name":"An Epic Adventure","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-11-an-epic-adventure/4000-35170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281899/","id":281899,"name":"L'ultimo mistero","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-127-bis-l-ultimo-mistero/4000-281899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201359/","id":201359,"name":"We The People...","site_detail_url":"https://comicvine.gamespot.com/punishercaptain-america-blood-glory-1-we-the-peopl/4000-201359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36276/","id":36276,"name":"Psychomachia!","site_detail_url":"https://comicvine.gamespot.com/the-infinity-war-5-psychomachia/4000-36276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36280/","id":36280,"name":"Welcome to the Jungle","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-2-welcome-to-the-jungle/4000-36280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36303/","id":36303,"name":"Strange Bedfellows","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-46-strange-bedfell/4000-36303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36324/","id":36324,"name":"When come the Gatherers","site_detail_url":"https://comicvine.gamespot.com/the-avengers-355-when-come-the-gatherers/4000-36324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136856/","id":136856,"name":"Infinite Memory","site_detail_url":"https://comicvine.gamespot.com/wonder-man-14-infinite-memory/4000-136856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36270/","id":36270,"name":"Dead Man's Hand Part 7: Cards On The Table","site_detail_url":"https://comicvine.gamespot.com/daredevil-309-dead-mans-hand-part-7-cards-on-the-t/4000-36270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77511/","id":77511,"name":"Just Following Orders","site_detail_url":"https://comicvine.gamespot.com/deathlok-16-just-following-orders/4000-77511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36277/","id":36277,"name":"Multiple Maniacs","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-43-multiple-maniacs/4000-36277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98798/","id":98798,"name":"Soft War: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/the-hacker-files-3-soft-war-chapter-3/4000-98798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36144/","id":36144,"name":"Skullwork","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-366-skullwork/4000-36144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74607/","id":74607,"name":"Childhood's End","site_detail_url":"https://comicvine.gamespot.com/team-titans-1-childhoods-end/4000-74607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107452/","id":107452,"name":"System Bytes Part 1: Byte by Byte; Vengeance Routine; Icecapade; Top Ten Villains!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual-5-system-bytes-part-1-byte-by-/4000-107452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130903/","id":130903,"name":"Day of the Dark Side!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-368-day-of-the-dark-side/4000-130903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36027/","id":36027,"name":"Typhoid's Kiss & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-111-typhoids-kiss-other-sto/4000-36027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36163/","id":36163,"name":"Sittin by the Dock of the Bay","site_detail_url":"https://comicvine.gamespot.com/x-factor-82-sittin-by-the-dock-of-the-bay/4000-36163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140654/","id":140654,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/peter-cannon-thunderbolt-1-rebirth/4000-140654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149497/","id":149497,"name":"A Thousand Points of Night","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-annual-1-a-thousand-poi/4000-149497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36109/","id":36109,"name":"Eco-Wars, Part 2","site_detail_url":"https://comicvine.gamespot.com/aquaman-10-eco-wars-part-2/4000-36109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159061/","id":159061,"name":"\"City at War\" Part II","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-51-city-at-war-part-i/4000-159061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77457/","id":77457,"name":"Muggers's Picnic","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-7-muggerss-picnic/4000-77457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35155/","id":35155,"name":"Eclipso: The Darkness Within","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-annual-8-eclipso-the-darkness-withi/4000-35155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35956/","id":35956,"name":"Typhoid's Kiss & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-110-typhoids-kiss-other-sto/4000-35956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36146/","id":36146,"name":"Man and Wolf (Part 5): Leader of the Pack; Fight on Skull Mountain!","site_detail_url":"https://comicvine.gamespot.com/captain-america-406-man-and-wolf-part-5-leader-of-/4000-36146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36137/","id":36137,"name":"Questions Pt.4","site_detail_url":"https://comicvine.gamespot.com/spawn-4-questions-pt4/4000-36137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64628/","id":64628,"name":"With Great Responsibility...!","site_detail_url":"https://comicvine.gamespot.com/spider-man-26-with-great-responsibility/4000-64628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222096/","id":222096,"name":"New Warriors: Beginnings","site_detail_url":"https://comicvine.gamespot.com/new-warriors-beginnings-1-new-warriors-beginnings/4000-222096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89454/","id":89454,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-14-childs-play/4000-89454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123833/","id":123833,"name":"That Which Lurks Within a Star!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-90-that-which-lurks-within-a-star/4000-123833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36152/","id":36152,"name":"Mortiferous Artifice","site_detail_url":"https://comicvine.gamespot.com/the-infinity-war-4-mortiferous-artifice/4000-36152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36155/","id":36155,"name":"Rise of the Midnight Sons Part 3","site_detail_url":"https://comicvine.gamespot.com/morbius-the-living-vampire-1-rise-of-the-midnight-/4000-36155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425559/","id":425559,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-1-tpb/4000-425559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36237/","id":36237,"name":"The Book of Answers","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-quarterly-2-the-book-of-answer/4000-36237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36162/","id":36162,"name":"What If... The Avengers Had Fought Galactus?","site_detail_url":"https://comicvine.gamespot.com/what-if-41-what-if-the-avengers-had-fought-galactu/4000-36162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136857/","id":136857,"name":"Into Infinity","site_detail_url":"https://comicvine.gamespot.com/wonder-man-13-into-infinity/4000-136857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107496/","id":107496,"name":"Dead Man's Hand Part 5: Dealing From the Bottom","site_detail_url":"https://comicvine.gamespot.com/daredevil-308-dead-mans-hand-part-5-dealing-from-t/4000-107496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359351/","id":359351,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-1-x-force/4000-359351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98797/","id":98797,"name":"Soft War: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/the-hacker-files-2-soft-war-chapter-2/4000-98797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64627/","id":64627,"name":"Why Me?","site_detail_url":"https://comicvine.gamespot.com/spider-man-25-why-me/4000-64627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105356/","id":105356,"name":"Resurrection Day","site_detail_url":"https://comicvine.gamespot.com/wildcats-covert-action-teams-1-resurrection-day/4000-105356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36582/","id":36582,"name":"","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-american-secrets-1/4000-36582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64498/","id":64498,"name":"Fathers and Sins","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-365-fathers-and-sins/4000-64498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36022/","id":36022,"name":"The Litter","site_detail_url":"https://comicvine.gamespot.com/excalibur-53-the-litter/4000-36022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123829/","id":123829,"name":"With Every Little Step We Take","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-89-with-every-little-step-we-take/4000-123829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130905/","id":130905,"name":"By Reed... Betrayed!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-367-by-reed-betrayed/4000-130905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36014/","id":36014,"name":"Nightmare Walkin’","site_detail_url":"https://comicvine.gamespot.com/shadowhawk-1-nightmare-walkin/4000-36014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35909/","id":35909,"name":"Typhoid's Kiss & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-109-typhoids-kiss-other-sto/4000-35909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35147/","id":35147,"name":"Maximum Eclipse","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-annual-6-maximum-eclipse/4000-35147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36075/","id":36075,"name":"Man and Wolf (Part 4): Dances with Werewolves; Cross Country","site_detail_url":"https://comicvine.gamespot.com/captain-america-405-man-and-wolf-part-4-dances-wit/4000-36075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36025/","id":36025,"name":"Nefarious Rhapsodies","site_detail_url":"https://comicvine.gamespot.com/the-infinity-war-3-nefarious-rhapsodies/4000-36025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36032/","id":36032,"name":"Underbelly","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-291-underbelly/4000-36032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153170/","id":153170,"name":"Assault On Armor City Part 1: Search; Deadly Foes Of Darkhawk; The Fishing Trip; Dawn Of The Darkhawk Revisted; The Cabal","site_detail_url":"https://comicvine.gamespot.com/darkhawk-annual-1-assault-on-armor-city-part-1-sea/4000-153170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36015/","id":36015,"name":"Questions Pt.3","site_detail_url":"https://comicvine.gamespot.com/spawn-3-questions-pt3/4000-36015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76281/","id":76281,"name":"Playing with the Big Boys","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-127-playing-with-the-b/4000-76281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35989/","id":35989,"name":"In the Wonderful Land of Clockwork","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-58-in-the-wonderful-land-of-clockwork/4000-35989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35835/","id":35835,"name":"Male Bonding & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-108-male-bonding-other-stor/4000-35835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36020/","id":36020,"name":"Man and Wolf (Part 3): Children of the Night; Real World;","site_detail_url":"https://comicvine.gamespot.com/captain-america-404-man-and-wolf-part-3-children-o/4000-36020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159060/","id":159060,"name":"\"City at War\" Part I","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-50-city-at-war-part-i/4000-159060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52020/","id":52020,"name":"Color Blindness (Part 3): Journey To The Center Of The Mind","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-15-color-blindness-part-3-journey-to-t/4000-52020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-262812/","id":262812,"name":"Operazione Godzilla & Uomini e Supereroi","site_detail_url":"https://comicvine.gamespot.com/zona-x-2-operazione-godzilla-uomini-e-supereroi/4000-262812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411502/","id":411502,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellblazer-original-sins-1-tpb/4000-411502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36033/","id":36033,"name":"Making Amends Meet","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-91-making-amends-meet/4000-36033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65585/","id":65585,"name":"Eye of the Puma, Part One: The Valley","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-191-eye-of-the-puma-par/4000-65585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107502/","id":107502,"name":"Dead Man's Hand Part 1: Blind Openers","site_detail_url":"https://comicvine.gamespot.com/daredevil-307-dead-mans-hand-part-1-blind-openers/4000-107502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89453/","id":89453,"name":"The Powers That Be","site_detail_url":"https://comicvine.gamespot.com/deathstroke-the-terminator-13-the-powers-that-be/4000-89453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36581/","id":36581,"name":"Book 1 of 3","site_detail_url":"https://comicvine.gamespot.com/guy-gardner-reborn-1-book-1-of-3/4000-36581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77455/","id":77455,"name":"Feeding Frenzy","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-5-feeding-frenzy/4000-77455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64497/","id":64497,"name":"The Pain of Fast Air","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-364-the-pain-of-fast-air/4000-64497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107805/","id":107805,"name":"Big Guns Part One: Gattling's Guns","site_detail_url":"https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-2-big-guns-part-one/4000-107805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123825/","id":123825,"name":"Bringing Up Baby","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-88-bringing-up-baby/4000-123825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35955/","id":35955,"name":"Man and Wolf (Part 2): City of Wolves; Taken to Task","site_detail_url":"https://comicvine.gamespot.com/captain-america-403-man-and-wolf-part-2-city-of-wo/4000-35955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35105/","id":35105,"name":"Eclipso: The Darkness Within, Diamond Rings","site_detail_url":"https://comicvine.gamespot.com/green-lantern-annual-1-eclipso-the-darkness-within/4000-35105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35907/","id":35907,"name":"Ethereal Revisionism","site_detail_url":"https://comicvine.gamespot.com/the-infinity-war-2-ethereal-revisionism/4000-35907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35915/","id":35915,"name":"Frayed","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-290-frayed/4000-35915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35861/","id":35861,"name":"Demons in Thought & Deed","site_detail_url":"https://comicvine.gamespot.com/aquaman-8-demons-in-thought-deed/4000-35861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35903/","id":35903,"name":"Emergency Procedure","site_detail_url":"https://comicvine.gamespot.com/daredevil-306-emergency-procedure/4000-35903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35848/","id":35848,"name":"Power Play","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-6-power-play/4000-35848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64626/","id":64626,"name":"Double Infinity","site_detail_url":"https://comicvine.gamespot.com/spider-man-24-double-infinity/4000-64626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35898/","id":35898,"name":"Only the Swamp Survives","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-thing-4-only-the-swamp-survi/4000-35898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35785/","id":35785,"name":"Male Bonding & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-107-male-bonding-other-stor/4000-35785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35901/","id":35901,"name":"Man and Wolf (Part 1): The Prowling; The Pit and the Pitiful","site_detail_url":"https://comicvine.gamespot.com/captain-america-402-man-and-wolf-part-1-the-prowli/4000-35901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157244/","id":157244,"name":"Spider-Man's 30th Anniversary","site_detail_url":"https://comicvine.gamespot.com/marvel-age-114-spider-mans-30th-anniversary/4000-157244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114276/","id":114276,"name":"Along Came A Spider...","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-84-along-came-a-spider/4000-114276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35128/","id":35128,"name":"The Return of the Defenders Part 4: Hot Spell; His Master's Foes; Future Master of the Mystic Arts; First Blood; Raiders of the Purple Veil","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-annual-2-the-retur/4000-35128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35173/","id":35173,"name":"Mano a Mano; The Return of the Defenders, Part 1: Four on the Floor; Things to Come; Nobody Loves the Hulk; The Running Man","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual-18-mano-a-mano-the-retu/4000-35173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35721/","id":35721,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-106/4000-35721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86093/","id":86093,"name":"Fireworks","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-11-fireworks/4000-86093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424401/","id":424401,"name":"Defend The Earth, Part III","site_detail_url":"https://comicvine.gamespot.com/zen-intergalactic-ninja-3-defend-the-earth-part-ii/4000-424401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333140/","id":333140,"name":"This Time It's War!","site_detail_url":"https://comicvine.gamespot.com/aliens-magazine-1-this-time-its-war/4000-333140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150776/","id":150776,"name":"Midnight Snack","site_detail_url":"https://comicvine.gamespot.com/clive-barkers-night-breed-17-midnight-snack/4000-150776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313332/","id":313332,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-2/4000-313332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35908/","id":35908,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-40-endgame/4000-35908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133805/","id":133805,"name":"Excuse Me Sir, How Do I Get To Carney Hall?","site_detail_url":"https://comicvine.gamespot.com/arion-the-immortal-1-excuse-me-sir-how-do-i-get-to/4000-133805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35783/","id":35783,"name":"Chthonic Maneuvers","site_detail_url":"https://comicvine.gamespot.com/the-infinity-war-1-chthonic-maneuvers/4000-35783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77454/","id":77454,"name":"Closer to the Flame","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-4-closer-to-the-flame/4000-77454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64496/","id":64496,"name":"Carnage, Part Three: Savage Grace!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-363-carnage-part-three-sava/4000-64496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130929/","id":130929,"name":"One Potato, Two Potato","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-40-one-potato-two-potato/4000-130929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461407/","id":461407,"name":"Kolossens hemlighet del 1: Lerkartan","site_detail_url":"https://comicvine.gamespot.com/fantomen-199213-kolossens-hemlighet-del-1-lerkarta/4000-461407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64625/","id":64625,"name":"Revenge of the Sinister Six, Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-man-23-revenge-of-the-sinister-six-conclusi/4000-64625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35787/","id":35787,"name":"Empire of Dust","site_detail_url":"https://comicvine.gamespot.com/quasar-35-empire-of-dust/4000-35787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150645/","id":150645,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-alone-against-the-celestials-1-tpb/4000-150645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35806/","id":35806,"name":"Brave New World","site_detail_url":"https://comicvine.gamespot.com/darkhawk-16-brave-new-world/4000-35806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35780/","id":35780,"name":"Under the Knife","site_detail_url":"https://comicvine.gamespot.com/daredevil-305-under-the-knife/4000-35780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35730/","id":35730,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-5-revelations/4000-35730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35729/","id":35729,"name":"The Man Who Killed The World / Alpha And Omega Part 10","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-10-the-man-who-killed-the-wo/4000-35729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35772/","id":35772,"name":"Questions Pt.2","site_detail_url":"https://comicvine.gamespot.com/spawn-2-questions-pt2/4000-35772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35804/","id":35804,"name":"Galactus, Go Home!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-42-galactus-go-hom/4000-35804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116627/","id":116627,"name":"The Biohazard Agenda (Part One): Rabbit is Dead","site_detail_url":"https://comicvine.gamespot.com/deathlok-12-the-biohazard-agenda-part-one-rabbit-i/4000-116627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281898/","id":281898,"name":"La Quarta Caravella","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-9-la-quarta-caravella/4000-281898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35750/","id":35750,"name":"Prize Fight","site_detail_url":"https://comicvine.gamespot.com/green-lantern-25-prize-fight/4000-35750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35171/","id":35171,"name":"Down And Downer (The Hero Killers Part Two) - First Kill (Part Two) - Sons Of The Tiger - Ten Most Embarrassing Moments - Evil's Light Part One: The Hunt Begins","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-annual-12-down-and-down/4000-35171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35823/","id":35823,"name":"Reflections","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-87-reflections/4000-35823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313331/","id":313331,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-1-x-force/4000-313331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35784/","id":35784,"name":"Impending Doom!","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-39-impending-doom/4000-35784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275218/","id":275218,"name":"","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-fate-of-atlantis-1/4000-275218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137169/","id":137169,"name":"I'll Take Manhattan!","site_detail_url":"https://comicvine.gamespot.com/the-crusaders-2-ill-take-manhattan/4000-137169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77453/","id":77453,"name":"The Frame","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-3-the-frame/4000-77453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64495/","id":64495,"name":"Carnage, Part Two: Savage Alliance!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-362-carnage-part-two-savage/4000-64495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73807/","id":73807,"name":"Date Worse Than Death","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-39-date-worse-than-death/4000-73807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35685/","id":35685,"name":"Strange Alliances","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-447-strange-alliances/4000-35685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35669/","id":35669,"name":"Call Him... Monster!","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-thing-2-call-him-monster/4000-35669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35702/","id":35702,"name":"Heart Of The Hawk (Part 6): The Return","site_detail_url":"https://comicvine.gamespot.com/darkhawk-15-heart-of-the-hawk-part-6-the-return/4000-35702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64624/","id":64624,"name":"Revenge of the Sinister Six, Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-man-22-revenge-of-the-sinister-six-part-fiv/4000-64624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35627/","id":35627,"name":"King's Crossing","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-4-kings-crossing/4000-35627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35511/","id":35511,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-102/4000-35511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35666/","id":35666,"name":"Questions Pt.1","site_detail_url":"https://comicvine.gamespot.com/spawn-1-questions-pt1/4000-35666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107987/","id":107987,"name":"Welcome to the Terrordome","site_detail_url":"https://comicvine.gamespot.com/deathlok-11-welcome-to-the-terrordome/4000-107987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35672/","id":35672,"name":"Murder By Decree","site_detail_url":"https://comicvine.gamespot.com/captain-america-400-murder-by-decree/4000-35672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35679/","id":35679,"name":"Blood Brothers, Part Four: The Avatar of Khonshu","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-38-blood-brothers-part-fo/4000-35679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35682/","id":35682,"name":"The Scorched Sun","site_detail_url":"https://comicvine.gamespot.com/quasar-34-the-scorched-sun/4000-35682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35473/","id":35473,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-101/4000-35473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109573/","id":109573,"name":"Whatever We Do [Male Bonding Part 3 of 8]","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-103-whatever-we-do-male-bon/4000-109573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137548/","id":137548,"name":"Where Is Namor?","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-26-where-is-namor/4000-137548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123821/","id":123821,"name":"If This Be Chaos!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-86-if-this-be-chaos/4000-123821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35551/","id":35551,"name":"A Game of You, Part 5: Over the Sea to Sky","site_detail_url":"https://comicvine.gamespot.com/the-sandman-36-a-game-of-you-part-5-over-the-sea-t/4000-35551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77452/","id":77452,"name":"Blood in the Water","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-2-blood-in-the-water/4000-77452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64316/","id":64316,"name":"The Crunch Conundrum Part 3 of 3 - The Chimerical Mystery Tour!","site_detail_url":"https://comicvine.gamespot.com/wolverine-53-the-crunch-conundrum-part-3-of-3-the-/4000-64316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35595/","id":35595,"name":"The Fearsome Conclusion - The Great Fear Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-40-the-fearsome-co/4000-35595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73806/","id":73806,"name":"Love In Bloom","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-38-love-in-bloom/4000-73806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505413/","id":505413,"name":"Jaulas","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-16-jaulas/4000-505413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35593/","id":35593,"name":"The Fearsome Fate of the High Evolutionary","site_detail_url":"https://comicvine.gamespot.com/warlock-and-the-infinity-watch-3-the-fearsome-fate/4000-35593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132463/","id":132463,"name":"The $50,000 Quest","site_detail_url":"https://comicvine.gamespot.com/quantum-leap-4-the-50000-quest/4000-132463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35597/","id":35597,"name":"Heart Of The Hawk (Part 5): The Antidote For Civilization","site_detail_url":"https://comicvine.gamespot.com/darkhawk-14-heart-of-the-hawk-part-5-the-antidote-/4000-35597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64623/","id":64623,"name":"Revenge of the Sinister Six, Part Four","site_detail_url":"https://comicvine.gamespot.com/spider-man-21-revenge-of-the-sinister-six-part-fou/4000-64623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35519/","id":35519,"name":"The Most Powerful Man In The World!","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-3-the-most-powerful-man-in-the-world/4000-35519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64494/","id":64494,"name":"Carnage, Part One: Savage Genesis!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-361-carnage-part-one-savage/4000-64494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86445/","id":86445,"name":"Take My Wife -- Please!; Fighting Trim; Who's Been Sleeping in my Bed?; Never Less Alone...","site_detail_url":"https://comicvine.gamespot.com/justice-league-quarterly-6-take-my-wife-please-fig/4000-86445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35570/","id":35570,"name":"Twenty Million Light Years From Earth","site_detail_url":"https://comicvine.gamespot.com/captain-america-399-twenty-million-light-years-fro/4000-35570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35579/","id":35579,"name":"Spatial Deliveries","site_detail_url":"https://comicvine.gamespot.com/quasar-33-spatial-deliveries/4000-35579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35568/","id":35568,"name":"World Tour Part 1","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-107-world-tour-part-1/4000-35568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137547/","id":137547,"name":"She Is Driven By A Force She Does Not Even Begin To Understand...","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-25-she-is-driven-by-a-force-/4000-137547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74655/","id":74655,"name":"Dirge","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-85-dirge/4000-74655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35577/","id":35577,"name":"Blood Brothers, Part Three: The Fall and Rise of Moon Knight!","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-37-blood-brothers-part-th/4000-35577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65071/","id":65071,"name":"Confessions","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-260-confessions/4000-65071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77451/","id":77451,"name":"Only the Dead Know Brooklyn","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-1-only-the-dead-know-brookly/4000-77451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35491/","id":35491,"name":"The Great Fear Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-39-the-great-fear-/4000-35491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73805/","id":73805,"name":"The Big Rub Out","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-37-the-big-rub-out/4000-73805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35493/","id":35493,"name":"Heart Of The Hawk (Part 4): Journey","site_detail_url":"https://comicvine.gamespot.com/darkhawk-13-heart-of-the-hawk-part-4-journey/4000-35493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64622/","id":64622,"name":"Revenge of the Sinister Six, Part Three","site_detail_url":"https://comicvine.gamespot.com/spider-man-20-revenge-of-the-sinister-six-part-thr/4000-64622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159049/","id":159049,"name":"Leatherhead, Too","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-45-leatherhead-too/4000-159049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137546/","id":137546,"name":"Greenwich Village, New York. A House Which Few In This Vast City Have Ever Seen...","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-24-greenwich-village-new-yor/4000-137546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35304/","id":35304,"name":"Wild Frontier & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-98-wild-frontier-other-stor/4000-35304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151336/","id":151336,"name":"King Kong The Eighth Wonder Of The World","site_detail_url":"https://comicvine.gamespot.com/king-kong-6-king-kong-the-eighth-wonder-of-the-wor/4000-151336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272152/","id":272152,"name":"David Berkowitz- The Son of Sam","site_detail_url":"https://comicvine.gamespot.com/psycho-killers-2-david-berkowitz-the-son-of-sam/4000-272152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35475/","id":35475,"name":"The Tomb of Mar-Vell","site_detail_url":"https://comicvine.gamespot.com/quasar-32-the-tomb-of-mar-vell/4000-35475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35261/","id":35261,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-97/4000-35261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35368/","id":35368,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-99/4000-35368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107986/","id":107986,"name":"Nightmares of Vengeance","site_detail_url":"https://comicvine.gamespot.com/deathlok-9-nightmares-of-vengeance/4000-107986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35468/","id":35468,"name":"Nocturnal Hunter","site_detail_url":"https://comicvine.gamespot.com/daredevil-302-nocturnal-hunter/4000-35468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74654/","id":74654,"name":"The Jericho Gambit, Part Three: Endings... and Beginnings!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-84-the-jericho-gambit-part-three-en/4000-74654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35472/","id":35472,"name":"Blood Brothers, Part Two: Nothing Can Stop... The Punisher!","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-36-blood-brothers-part-tw/4000-35472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132462/","id":132462,"name":"\"He Knows If You've Been Bad Or Good\" and \"The Infinite Corridor\"","site_detail_url":"https://comicvine.gamespot.com/quantum-leap-3-he-knows-if-youve-been-bad-or-good-/4000-132462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231955/","id":231955,"name":"The Tomb of Mar-Vell","site_detail_url":"https://comicvine.gamespot.com/quasar-special-1-the-tomb-of-mar-vell/4000-231955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35341/","id":35341,"name":"A Game of You, Part 4: Beginning to See the Light","site_detail_url":"https://comicvine.gamespot.com/the-sandman-35-a-game-of-you-part-4-beginning-to-s/4000-35341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64314/","id":64314,"name":"The Crunch Conundrum Part 1 of 3 - Heartbreak Motel!","site_detail_url":"https://comicvine.gamespot.com/wolverine-51-the-crunch-conundrum-part-1-of-3-hear/4000-64314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35388/","id":35388,"name":"The Fury of the Fear Lords - The Great Fear Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-38-the-fury-of-the/4000-35388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35365/","id":35365,"name":"The Return Of Rancor","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-21-the-return-of-rancor/4000-35365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171748/","id":171748,"name":"Spider-Man: Torment","site_detail_url":"https://comicvine.gamespot.com/spider-man-torment-1-spider-man-torment/4000-171748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35312/","id":35312,"name":"Retribution Part 1: Into The Fire","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-1-retribution-part-1-into-the-fire/4000-35312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35390/","id":35390,"name":"Heart Of The Hawk (Part 3): Masks","site_detail_url":"https://comicvine.gamespot.com/darkhawk-12-heart-of-the-hawk-part-3-masks/4000-35390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64621/","id":64621,"name":"Revenge of the Sinister Six, Part Two","site_detail_url":"https://comicvine.gamespot.com/spider-man-19-revenge-of-the-sinister-six-part-two/4000-64621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159047/","id":159047,"name":"The Violent Underground","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-44-the-violent-underg/4000-159047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35319/","id":35319,"name":"Who is That Masked Woman?","site_detail_url":"https://comicvine.gamespot.com/animal-man-44-who-is-that-masked-woman/4000-35319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104714/","id":104714,"name":"Escape From New York","site_detail_url":"https://comicvine.gamespot.com/the-punisher-60-escape-from-new-york/4000-104714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35052/","id":35052,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-95/4000-35052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35053/","id":35053,"name":"In Wild frontier Part 4 - Danger In the Hills","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-96-in-wild-frontier-part-4-/4000-35053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35367/","id":35367,"name":"Blood Brothers, Part One: The Family That Slays Together...","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-35-blood-brothers-part-on/4000-35367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35370/","id":35370,"name":"Brave New Universe","site_detail_url":"https://comicvine.gamespot.com/quasar-31-brave-new-universe/4000-35370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35369/","id":35369,"name":"The Breaking Point","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-20-the-breaking-point/4000-35369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225101/","id":225101,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-pack-holiday-special-1/4000-225101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132716/","id":132716,"name":"You Are Iron Fist . . . And You Are Not Dead . . .","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-23-you-are-iron-fist-and-you/4000-132716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-63511/","id":63511,"name":"An Era Ends For Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-62-an-era-ends-for-wonder-woman/4000-63511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35234/","id":35234,"name":"A Game of You, Part 3: Bad Moon Rising","site_detail_url":"https://comicvine.gamespot.com/the-sandman-34-a-game-of-you-part-3-bad-moon-risin/4000-35234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35284/","id":35284,"name":"Frankensurfer","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-37-frankensurfer/4000-35284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35258/","id":35258,"name":"Major Victory","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-20-major-victory/4000-35258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195705/","id":195705,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/spider-mandr-strange-the-way-to-dusty-death-1-gn/4000-195705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189673/","id":189673,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/punisher-g-force-1-gn/4000-189673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35306/","id":35306,"name":"The Mephisto Waltz","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-443-the-mephisto-waltz/4000-35306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150227/","id":150227,"name":"Marvel 1991 –– The Year In Review","site_detail_url":"https://comicvine.gamespot.com/marvel-year-in-review-3-marvel-1991-the-year-in-re/4000-150227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35286/","id":35286,"name":"Heart Of The Hawk (Part 2): Heart Of Stone","site_detail_url":"https://comicvine.gamespot.com/darkhawk-11-heart-of-the-hawk-part-2-heart-of-ston/4000-35286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64620/","id":64620,"name":"Revenge of the Sinister Six, Part One","site_detail_url":"https://comicvine.gamespot.com/spider-man-18-revenge-of-the-sinister-six-part-one/4000-64620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167734/","id":167734,"name":"","site_detail_url":"https://comicvine.gamespot.com/gay-comics-15/4000-167734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151346/","id":151346,"name":"The Secret Gospel of Maxwell Lord","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-the-secret-gospel-of-/4000-151346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35051/","id":35051,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-94/4000-35051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35275/","id":35275,"name":"Under the Gun","site_detail_url":"https://comicvine.gamespot.com/x-force-6-under-the-gun/4000-35275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35265/","id":35265,"name":"The Final Days Part Six: Hideout!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-58-the-final-days-part-six-hideout/4000-35265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35305/","id":35305,"name":"The Final Days Part Seven: Requiem...","site_detail_url":"https://comicvine.gamespot.com/the-punisher-59-the-final-days-part-seven-requiem/4000-35305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300196/","id":300196,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-road-back-1-tpb/4000-300196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52013/","id":52013,"name":"Night Of The Living Deathlok!","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-8-night-of-the-living-deathlok/4000-52013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35209/","id":35209,"name":"Alien Fire; The Creep; Fancies; Sin City","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-58-alien-fire-the-creep-fancie/4000-35209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35266/","id":35266,"name":"Calling All Lasers","site_detail_url":"https://comicvine.gamespot.com/quasar-30-calling-all-lasers/4000-35266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357786/","id":357786,"name":"","site_detail_url":"https://comicvine.gamespot.com/bogie-man-the-manhattan-project-1/4000-357786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431793/","id":431793,"name":"Ein Mann, Ein Mord","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-13-ein-mann-ein-/4000-431793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431795/","id":431795,"name":"Rote Dämmerung","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-14-rote-dammerun/4000-431795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116985/","id":116985,"name":"Similar Machines (Part Two): Men or Machines?","site_detail_url":"https://comicvine.gamespot.com/deathlok-7-similar-machines-part-two-men-or-machin/4000-116985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35263/","id":35263,"name":"Root Of Evil","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-22-root-of-evil/4000-35263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149154/","id":149154,"name":"The Lesson; Babycakes; The Devil's Absolution; To My Son; Old Wives' Tale","site_detail_url":"https://comicvine.gamespot.com/clive-barkers-hellraiser-summer-special-1-the-less/4000-149154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148169/","id":148169,"name":"Drawing a Blank!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-battles-ignorance-1-drawing/4000-148169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35272/","id":35272,"name":"The Name of the Rose, Part 1: Family Ties","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-84-the-name-of-the-rose-part-1-f/4000-35272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74652/","id":74652,"name":"The Jericho Gambit, Part One: The Saviors!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-82-the-jericho-gambit-part-one-the-/4000-74652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362800/","id":362800,"name":"Sanctum","site_detail_url":"https://comicvine.gamespot.com/invisible-people-1-sanctum/4000-362800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140785/","id":140785,"name":"Burning Bridges","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-special-2-burning-bri/4000-140785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34973/","id":34973,"name":"A Game of You, Part 2: Lullabies of Broadway","site_detail_url":"https://comicvine.gamespot.com/the-sandman-33-a-game-of-you-part-2-lullabies-of-b/4000-34973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34998/","id":34998,"name":"The Gentleman's Name Is Talon","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-19-the-gentlemans-name-is-/4000-34998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35026/","id":35026,"name":"At War With Warlock!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-36-at-war-with-war/4000-35026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34945/","id":34945,"name":"Next Men; The Creep; Grampa Speaks; Alien Fire; Around the World in 80 Frames; Sin City","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-57-next-men-the-creep-grampa-s/4000-34945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73802/","id":73802,"name":"Who Was That Zombie I Saw You With...?","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-34-who-was-that-zombie-i-/4000-73802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409244/","id":409244,"name":"The Cartoon History of the United States","site_detail_url":"https://comicvine.gamespot.com/the-cartoon-history-of-the-united-states-1-the-car/4000-409244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160694/","id":160694,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/spider-man-saga-4-volume-4/4000-160694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35000/","id":35000,"name":"The Final Confrontation","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-6-the-final-confrontation/4000-35000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35029/","id":35029,"name":"Heart Of The Hawk (Part 1): Eyewitness","site_detail_url":"https://comicvine.gamespot.com/darkhawk-10-heart-of-the-hawk-part-1-eyewitness/4000-35029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64619/","id":64619,"name":"No One Gets Outta Here Alive!","site_detail_url":"https://comicvine.gamespot.com/spider-man-17-no-one-gets-outta-here-alive/4000-64619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33695/","id":33695,"name":"Volume 19 The Silver Surfer II","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-19-volume-19-the-silver-surfer-/4000-33695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35018/","id":35018,"name":"Under the Magnifying Glass","site_detail_url":"https://comicvine.gamespot.com/x-force-5-under-the-magnifying-glass/4000-35018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35049/","id":35049,"name":"The Final Days Part Five: Hunt!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-57-the-final-days-part-five-hunt/4000-35049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107061/","id":107061,"name":"Bishop's Crossing","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-283-bishops-crossing/4000-107061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35004/","id":35004,"name":"Call My Land K'un-L'un","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-21-call-my-land-kun-lun/4000-35004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35015/","id":35015,"name":"Entrepreneurs","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-83-entrepreneurs/4000-35015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52012/","id":52012,"name":"The Ties That Bind!","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-7-the-ties-that-bind/4000-52012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94536/","id":94536,"name":"The Terror Master","site_detail_url":"https://comicvine.gamespot.com/destroyer-1-the-terror-master/4000-94536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109862/","id":109862,"name":"A Game of You, Part 1: Slaughter on Fifth Avenue","site_detail_url":"https://comicvine.gamespot.com/the-sandman-32-a-game-of-you-part-1-slaughter-on-f/4000-109862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34846/","id":34846,"name":"Breakdowns Part 8: The Center Cannot Hold","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-32-breakdowns-part-8-the-cen/4000-34846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215815/","id":215815,"name":"The Herod Factor","site_detail_url":"https://comicvine.gamespot.com/eternals-the-herod-factor-1-the-herod-factor/4000-215815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34878/","id":34878,"name":"Punished","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-18-punished/4000-34878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34829/","id":34829,"name":"Aliens / The Next Men / Fancies / Eldgytha / Sin City / The Creep / Earth Boys","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-56-aliens-the-next-men-fancies/4000-34829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34891/","id":34891,"name":"Mole & Wife","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-33-mole-wife/4000-34891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34899/","id":34899,"name":"Sabotage X-Over, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-force-4-sabotage-x-over-part-2/4000-34899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34897/","id":34897,"name":"What if Spider-Man Had Kept His Cosmic Powers","site_detail_url":"https://comicvine.gamespot.com/what-if-31-what-if-spider-man-had-kept-his-cosmic-/4000-34897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34910/","id":34910,"name":"Honor Among Psychotics","site_detail_url":"https://comicvine.gamespot.com/darkhawk-9-honor-among-psychotics/4000-34910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64618/","id":64618,"name":"Sabotage X-Over, Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-16-sabotage-x-over-part-1/4000-64618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34871/","id":34871,"name":"Round Robin: The Sidekick's Revenge! Part One: When Midnight Strikes!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-353-round-robin-the-sidekic/4000-34871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124927/","id":124927,"name":"The Mack Attack Contract","site_detail_url":"https://comicvine.gamespot.com/human-target-special-1-the-mack-attack-contract/4000-124927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34887/","id":34887,"name":"The Final Days Part Two: Attack!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-54-the-final-days-part-two-attack/4000-34887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34933/","id":34933,"name":"The Final Days Part Three: Conviction!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-55-the-final-days-part-three-convicti/4000-34933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34873/","id":34873,"name":"The Crimson Crusade","site_detail_url":"https://comicvine.gamespot.com/captain-america-394-the-crimson-crusade/4000-34873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337077/","id":337077,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-art-85/4000-337077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144624/","id":144624,"name":"","site_detail_url":"https://comicvine.gamespot.com/turtle-soup-1/4000-144624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34889/","id":34889,"name":"Mating Dance","site_detail_url":"https://comicvine.gamespot.com/quasar-28-mating-dance/4000-34889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34895/","id":34895,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-282-payback/4000-34895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34875/","id":34875,"name":"Last Rites Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-298-last-rites-part-2/4000-34875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34884/","id":34884,"name":"My Mother...Myself","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-20-my-mothermyself/4000-34884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34896/","id":34896,"name":"Pumping Up!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-82-pumping-up/4000-34896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52011/","id":52011,"name":"Web Of Confusion (Part 2)","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-6-web-of-confusion-part-2/4000-52011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34882/","id":34882,"name":"Half Life","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-32-half-life/4000-34882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384399/","id":384399,"name":"The Fantastic Four!","site_detail_url":"https://comicvine.gamespot.com/marvel-milestone-edition-fantastic-four-1-the-fant/4000-384399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123712/","id":123712,"name":"Raw Power","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-25-raw-pow/4000-123712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66337/","id":66337,"name":"King of Pain","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-6-king-of-pain/4000-66337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34756/","id":34756,"name":"Final Redemption","site_detail_url":"https://comicvine.gamespot.com/the-avengers-339-final-redemption/4000-34756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34762/","id":34762,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-17-homecoming/4000-34762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34792/","id":34792,"name":"Is There A Doctor NOT In the House?","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-34-is-there-a-doct/4000-34792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34784/","id":34784,"name":"Rubicon","site_detail_url":"https://comicvine.gamespot.com/x-men-1-rubicon/4000-34784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385981/","id":385981,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/new-york-new-york-1-hc/4000-385981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160818/","id":160818,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-saga-2-volume-2/4000-160818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34774/","id":34774,"name":"Attack of the Quantum Banders","site_detail_url":"https://comicvine.gamespot.com/quasar-27-attack-of-the-quantum-banders/4000-34774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34794/","id":34794,"name":"Lodestone!","site_detail_url":"https://comicvine.gamespot.com/darkhawk-8-lodestone/4000-34794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64617/","id":64617,"name":"The Mutant Factor","site_detail_url":"https://comicvine.gamespot.com/spider-man-15-the-mutant-factor/4000-64617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34755/","id":34755,"name":"Death Walk","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-352-death-walk/4000-34755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34783/","id":34783,"name":"Battlecry","site_detail_url":"https://comicvine.gamespot.com/x-force-3-battlecry/4000-34783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34772/","id":34772,"name":"The Final Days #1: Extortion","site_detail_url":"https://comicvine.gamespot.com/the-punisher-53-the-final-days-1-extortion/4000-34772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34761/","id":34761,"name":"Fools Rush In","site_detail_url":"https://comicvine.gamespot.com/foolkiller-10-fools-rush-in/4000-34761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34779/","id":34779,"name":"Fresh Upstart","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-281-fresh-upstart/4000-34779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213901/","id":213901,"name":"The Souvlaki Sewer Syndrome (Part 1): Sinister Slinkers","site_detail_url":"https://comicvine.gamespot.com/toxic-avenger-7-the-souvlaki-sewer-syndrome-part-1/4000-213901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34769/","id":34769,"name":"9 Wives","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-19-9-wives/4000-34769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175093/","id":175093,"name":"Prey for the Night","site_detail_url":"https://comicvine.gamespot.com/black-panther-panthers-prey-4-prey-for-the-night/4000-175093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34780/","id":34780,"name":"Living In Fear","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-81-living-in-fear/4000-34780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883537/","id":883537,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wild-cards-1-tpb/4000-883537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34609/","id":34609,"name":"The Widening Gyre","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-30-the-widening-gyre/4000-34609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34660/","id":34660,"name":"Cages","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-54-cages/4000-34660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64308/","id":64308,"name":"Claws Over Times Square!","site_detail_url":"https://comicvine.gamespot.com/wolverine-45-claws-over-times-square/4000-64308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64309/","id":64309,"name":"Home Is The Hunter...","site_detail_url":"https://comicvine.gamespot.com/wolverine-46-home-is-the-hunter/4000-64309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34639/","id":34639,"name":"Mud and Glory?","site_detail_url":"https://comicvine.gamespot.com/the-avengers-337-mud-and-glory/4000-34639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34692/","id":34692,"name":"Infectious Complusions","site_detail_url":"https://comicvine.gamespot.com/the-avengers-338-infectious-complusions/4000-34692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131763/","id":131763,"name":null,"site_detail_url":"https://comicvine.gamespot.com/predator-cold-war-1/4000-131763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73801/","id":73801,"name":"Interrupted Melody","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-31-interrupted-melody/4000-73801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34635/","id":34635,"name":"First Flight of the Eagle","site_detail_url":"https://comicvine.gamespot.com/adventures-of-captain-america-1-first-flight-of-th/4000-34635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34652/","id":34652,"name":"Double Cross","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-18-double-cross/4000-34652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86442/","id":86442,"name":"When You Wish...","site_detail_url":"https://comicvine.gamespot.com/justice-league-quarterly-3-when-you-wish/4000-86442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34684/","id":34684,"name":"Prelude...","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-79-prelude/4000-34684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111581/","id":111581,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-saga-1-volume-1/4000-111581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198009/","id":198009,"name":"Le Groupe W","site_detail_url":"https://comicvine.gamespot.com/largo-winch-2-le-groupe-w/4000-198009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34647/","id":34647,"name":"Preparations For War","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-3-preparations-for-war/4000-34647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34666/","id":34666,"name":"The Blood Hunters !","site_detail_url":"https://comicvine.gamespot.com/x-force-2-the-blood-hunters/4000-34666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34673/","id":34673,"name":"Sacrifice","site_detail_url":"https://comicvine.gamespot.com/darkhawk-7-sacrifice/4000-34673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64616/","id":64616,"name":"Sub-City, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-14-sub-city-part-2-of-2/4000-64616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34675/","id":34675,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-impossible-man-summer-vacation-spectacular-2/4000-34675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34638/","id":34638,"name":"Three Faces Of Evil!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-351-three-faces-of-evil/4000-34638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138250/","id":138250,"name":"Tangled","site_detail_url":"https://comicvine.gamespot.com/what-the--14-tangled/4000-138250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34656/","id":34656,"name":"Lupe","site_detail_url":"https://comicvine.gamespot.com/the-punisher-52-lupe/4000-34656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34644/","id":34644,"name":"Feast of Fools","site_detail_url":"https://comicvine.gamespot.com/foolkiller-9-feast-of-fools/4000-34644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34650/","id":34650,"name":"Scarlet Redemption, Part Five: Thirst","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-30-scarlet-redemption-par/4000-34650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33691/","id":33691,"name":"Volume 17 Daredevil","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-17-volume-17-daredevil/4000-33691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34658/","id":34658,"name":"The Eight Billion Year Funeral","site_detail_url":"https://comicvine.gamespot.com/quasar-26-the-eight-billion-year-funeral/4000-34658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357789/","id":357789,"name":"Bogie Man - The Manhattan Project","site_detail_url":"https://comicvine.gamespot.com/apocalypse-6-bogie-man-the-manhattan-project/4000-357789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34624/","id":34624,"name":"Hellfire's Web","site_detail_url":"https://comicvine.gamespot.com/war-of-the-gods-1-hellfire-s-web/4000-34624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77996/","id":77996,"name":"The Vibranium Vendetta (Part 3)","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-annual-7-the-vibranium-vendetta-/4000-77996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212378/","id":212378,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-sandman-preludes-and-nocturnes-1-volume-1/4000-212378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65064/","id":65064,"name":"Vampire at Large!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-253-vampire-at-large/4000-65064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34549/","id":34549,"name":"A Force To Be Reckoned With","site_detail_url":"https://comicvine.gamespot.com/x-force-1-a-force-to-be-reckoned-with/4000-34549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34496/","id":34496,"name":"Breakdowns Part 2: Turning and Turning","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-29-breakdowns-part-2-turning/4000-34496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34575/","id":34575,"name":"For Here We Make Our Stand","site_detail_url":"https://comicvine.gamespot.com/the-avengers-336-for-here-we-make-our-stand/4000-34575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64306/","id":64306,"name":"Under The Skin","site_detail_url":"https://comicvine.gamespot.com/wolverine-43-under-the-skin/4000-64306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34557/","id":34557,"name":"SILVER-TONGUED DEVIL","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-32-silver-tongued-/4000-34557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34528/","id":34528,"name":"Small Talk","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-384-small-talk/4000-34528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34564/","id":34564,"name":"While the City Screams!","site_detail_url":"https://comicvine.gamespot.com/deadly-foes-of-spider-man-4-while-the-city-screams/4000-34564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34534/","id":34534,"name":"Fire And Stone","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-17-fire-and-stone/4000-34534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34510/","id":34510,"name":"The Fugitive Kind","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-57-the-fugitive-kind/4000-34510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34567/","id":34567,"name":"Mind Over Machine","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-78-mind-over-machine/4000-34567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34520/","id":34520,"name":"Doom Service!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-350-doom-service/4000-34520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73800/","id":73800,"name":"A Change of Stat: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-30-a-change-of-stat-part-/4000-73800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33634/","id":33634,"name":"Too Much Time","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-annual-2-too-much-time/4000-33634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33689/","id":33689,"name":"Volume 16 Amazing Spider-Man IV","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-16-volume-16-amazing-spider-man/4000-33689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34559/","id":34559,"name":"Triad","site_detail_url":"https://comicvine.gamespot.com/darkhawk-6-triad/4000-34559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64615/","id":64615,"name":"Sub-City, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-13-sub-city-part-1-of-2/4000-64615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159038/","id":159038,"name":"Souls End","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-36-souls-end/4000-159038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33658/","id":33658,"name":"Pawns of Senescence","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-annual-7-pawns-of-senescence/4000-33658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34539/","id":34539,"name":"Golden Buddha","site_detail_url":"https://comicvine.gamespot.com/the-punisher-51-golden-buddha/4000-34539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34541/","id":34541,"name":"All -- Or Nothing","site_detail_url":"https://comicvine.gamespot.com/quasar-25-all-or-nothing/4000-34541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212729/","id":212729,"name":"Crime in Eden","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-23-crime-in-eden/4000-212729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132451/","id":132451,"name":"In The Beginning","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-19-in/4000-132451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175090/","id":175090,"name":"Some Modernistic Theories on Effects of the Anointment Poultice and Powers of the Great Cat","site_detail_url":"https://comicvine.gamespot.com/black-panther-panthers-prey-3-some-modernistic-the/4000-175090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213899/","id":213899,"name":"Dr. Chemo's Biohazard (or: A Myth Of Modern Pollution)","site_detail_url":"https://comicvine.gamespot.com/toxic-avenger-5-dr-chemos-biohazard-or-a-myth-of-m/4000-213899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34529/","id":34529,"name":"From Bad to Worse","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-2-from-bad-to-worse/4000-34529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34524/","id":34524,"name":"Side By Side with the Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/daredevil-295-side-by-side-with-the-ghost-rider/4000-34524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34415/","id":34415,"name":"God","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-1-god/4000-34415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64304/","id":64304,"name":"Down In The Bottoms","site_detail_url":"https://comicvine.gamespot.com/wolverine-41-down-in-the-bottoms/4000-64304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64305/","id":64305,"name":"Papa Was A Rolling Stone!","site_detail_url":"https://comicvine.gamespot.com/wolverine-42-papa-was-a-rolling-stone/4000-64305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123710/","id":123710,"name":"Rat Trap","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-22-rat-tra/4000-123710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34376/","id":34376,"name":"The Battle of the Month?","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-52-the-battle-of-the-month/4000-34376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34408/","id":34408,"name":"Edifice Wrecks","site_detail_url":"https://comicvine.gamespot.com/damage-control-2-edifice-wrecks/4000-34408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34414/","id":34414,"name":"Green Canard","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-383-green-canard/4000-34414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34377/","id":34377,"name":"The Man Who Wears the Star","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-28-the-man-who-wears-the-sta/4000-34377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34420/","id":34420,"name":"Fist Of Iron","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-16-fist-of-iron/4000-34420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34333/","id":34333,"name":"Red Star Rising","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-77-red-star-rising/4000-34333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34444/","id":34444,"name":"To Stop the Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-31-to-stop-the-sil/4000-34444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34405/","id":34405,"name":"Man of Steal!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-349-man-of-steal/4000-34405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73799/","id":73799,"name":"\"The Fourth Wall--And Beyond!\"","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-29-the-fourth-wall-and-be/4000-73799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326378/","id":326378,"name":"","site_detail_url":"https://comicvine.gamespot.com/havoc-1/4000-326378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34447/","id":34447,"name":"Fury From Beyond","site_detail_url":"https://comicvine.gamespot.com/darkhawk-5-fury-from-beyond/4000-34447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52007/","id":52007,"name":"Behind The 8-Ball","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-2-behind-the-8-ball/4000-52007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245322/","id":245322,"name":"Gang War","site_detail_url":"https://comicvine.gamespot.com/daredevil-gang-war-1-gang-war/4000-245322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34407/","id":34407,"name":"Maiden Voyage","site_detail_url":"https://comicvine.gamespot.com/captain-america-387-maiden-voyage/4000-34407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34412/","id":34412,"name":"42 Days","site_detail_url":"https://comicvine.gamespot.com/foolkiller-8-42-days/4000-34412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34417/","id":34417,"name":"Scarlet Redemption, Part Three: Coming Forth","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-28-scarlet-redemption-par/4000-34417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99408/","id":99408,"name":"The Von Strucker Gambit, Part 1: Crippling Death","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-7-the-von-strucker-gambit-part-1-/4000-99408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33705/","id":33705,"name":"The Korvac Quest (Part 1)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-24-the-korvac-quest-part-1/4000-33705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212726/","id":212726,"name":"Magic and Monsters-and Murder","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-22-magic-and-monsters-and-murder/4000-212726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326380/","id":326380,"name":"","site_detail_url":"https://comicvine.gamespot.com/havoc-2/4000-326380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86441/","id":86441,"name":"Designing Humans! / Running Hot and Cold!","site_detail_url":"https://comicvine.gamespot.com/justice-league-quarterly-2-designing-humans-runnin/4000-86441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52006/","id":52006,"name":"To Sleep Perchance to Scream!","site_detail_url":"https://comicvine.gamespot.com/sleepwalker-1-to-sleep-perchance-to-scream/4000-52006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156420/","id":156420,"name":"God-Spawn","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-28-god-spawn/4000-156420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34307/","id":34307,"name":"\"The Cutting Edge\"(Von Strucker Gambit Part 2)","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual-4-the-cutting-edgevon-strucker/4000-34307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34298/","id":34298,"name":"Moving On","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-382-moving-on/4000-34298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34269/","id":34269,"name":"The Vagabond Kings","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-27-the-vagabond-kings/4000-34269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132450/","id":132450,"name":"The Heat Is On...","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-18-th/4000-132450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34268/","id":34268,"name":"My Dinner With G'Nort","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-51-my-dinner-with-gnort/4000-34268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34265/","id":34265,"name":"The Chore... The Core... The Corps...","site_detail_url":"https://comicvine.gamespot.com/green-lantern-13-the-chore-the-core-the-corps/4000-34265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73798/","id":73798,"name":"Licensing Lunacy","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-28-licensing-lunacy/4000-73798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33655/","id":33655,"name":"Tomorrow's League Today!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-annual-5-tomorrows-league-t/4000-33655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34324/","id":34324,"name":"Savage Steel","site_detail_url":"https://comicvine.gamespot.com/darkhawk-4-savage-steel/4000-34324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130749/","id":130749,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-1/4000-130749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34236/","id":34236,"name":"Tower of the Damned!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-76-tower-of-the-damned/4000-34236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34315/","id":34315,"name":"What if the Punisher Had Killed Daredevil?","site_detail_url":"https://comicvine.gamespot.com/what-if-26-what-if-the-punisher-had-killed-daredev/4000-34315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34300/","id":34300,"name":"Scarlet Redemption, Part Two: Snares","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-27-scarlet-redemption-par/4000-34300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34344/","id":34344,"name":"Weapon X Part 8","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-79-weapon-x-part-8/4000-34344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212742/","id":212742,"name":"Valentine's Slay","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-21-valentines-slay/4000-212742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379746/","id":379746,"name":"Ground Zero","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-ground-zero-1-ground-zero/4000-379746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34292/","id":34292,"name":"For Righteousness's Sake","site_detail_url":"https://comicvine.gamespot.com/captain-america-386-for-righteousnesss-sake/4000-34292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65571/","id":65571,"name":"For The Life Of Corona!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-177-for-the-life-of-cor/4000-65571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117059/","id":117059,"name":"Jesus Saves","site_detail_url":"https://comicvine.gamespot.com/deathlok-special-2-jesus-saves/4000-117059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77530/","id":77530,"name":"Dam If He Don't","site_detail_url":"https://comicvine.gamespot.com/deathlok-special-3-dam-if-he-dont/4000-77530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77531/","id":77531,"name":"Ryker's Island","site_detail_url":"https://comicvine.gamespot.com/deathlok-special-4-rykers-island/4000-77531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156419/","id":156419,"name":"Party Up!","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-27-party-up/4000-156419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34223/","id":34223,"name":"Blood Will Tell!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-29-blood-will-tell/4000-34223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34205/","id":34205,"name":"A Child Is Waiting","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-14-a-child-is-waiting/4000-34205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34168/","id":34168,"name":"A Blaze of Glory! / Ktrrogarrx!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-50-a-blaze-of-glory-ktrroga/4000-34168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34216/","id":34216,"name":"What If Set Had Come to Earth?","site_detail_url":"https://comicvine.gamespot.com/what-if-25-what-if-set-had-come-to-earth/4000-34216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34226/","id":34226,"name":"Power Play","site_detail_url":"https://comicvine.gamespot.com/darkhawk-3-power-play/4000-34226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34217/","id":34217,"name":"Endgame (Part 2): Heroic Effort","site_detail_url":"https://comicvine.gamespot.com/x-factor-66-endgame-part-2-heroic-effort/4000-34217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34209/","id":34209,"name":"Spin Cycle","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-30-spin-cycle/4000-34209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123708/","id":123708,"name":"Sun and Steel","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-20-sun-and/4000-123708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34208/","id":34208,"name":"The Battle Gun #2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-48-the-battle-gun-2/4000-34208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34198/","id":34198,"name":"Who the Fools Are","site_detail_url":"https://comicvine.gamespot.com/foolkiller-7-who-the-fools-are/4000-34198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34202/","id":34202,"name":"Scarlet Redemption, Part One: Sinners","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-26-scarlet-redemption-par/4000-34202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33676/","id":33676,"name":"The Von Strucker Gambit, Part 3: Call Of Duty; Brothers; Forgive Us Our Trespasses; Worth Fighting For","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-10-the-von-strucker-gambit-/4000-33676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34210/","id":34210,"name":"A Long Day's Journey Into Death","site_detail_url":"https://comicvine.gamespot.com/quasar-22-a-long-days-journey-into-death/4000-34210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119452/","id":119452,"name":"The Problem of the Devil's Chambers","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-20-the-problem-of-the-devils-chamb/4000-119452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34195/","id":34195,"name":"In Battle With the Punisher","site_detail_url":"https://comicvine.gamespot.com/daredevil-292-in-battle-with-the-punisher/4000-34195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34194/","id":34194,"name":"Going to the Dogs","site_detail_url":"https://comicvine.gamespot.com/captain-america-385-going-to-the-dogs/4000-34194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34215/","id":34215,"name":"Art's Desire","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-76-art-s-desire/4000-34215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65570/","id":65570,"name":"Who--Or What--Is Corona?","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-176-who-or-what-is-coro/4000-65570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65058/","id":65058,"name":"Mayhem is...the Men-Fish","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-249-mayhem-isthe-men-fish/4000-65058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156418/","id":156418,"name":"Food For Villainy","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-26-food-for-villainy/4000-156418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34121/","id":34121,"name":"","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-28/4000-34121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34086/","id":34086,"name":"Elliptical Pursuit!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-346-elliptical-pursuit/4000-34086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34102/","id":34102,"name":"Reap The Whirlwind","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-13-reap-the-whirlwind/4000-34102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34060/","id":34060,"name":"Glory-Bound, Pt 4: Glory and Shame","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-49-glory-bound-pt-4-glory-a/4000-34060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34124/","id":34124,"name":"Goblin's Prey!","site_detail_url":"https://comicvine.gamespot.com/darkhawk-2-goblins-prey/4000-34124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34123/","id":34123,"name":"Endgame (Part 1): Malign Influence","site_detail_url":"https://comicvine.gamespot.com/x-factor-65-endgame-part-1-malign-influence/4000-34123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34093/","id":34093,"name":"Fool's Paradise","site_detail_url":"https://comicvine.gamespot.com/foolkiller-6-fools-paradise/4000-34093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34098/","id":34098,"name":"Ghosts of the Past","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-25-ghosts-of-the-past/4000-34098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34107/","id":34107,"name":"Arms And The Man","site_detail_url":"https://comicvine.gamespot.com/quasar-21-arms-and-the-man/4000-34107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34110/","id":34110,"name":"Requiem For The Wrecker","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-431-requiem-for-the-wrecker/4000-34110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34089/","id":34089,"name":"Lair Of The Ice-Worm","site_detail_url":"https://comicvine.gamespot.com/captain-america-384-lair-of-the-ice-worm/4000-34089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132449/","id":132449,"name":"The Devil You Know","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-17-th/4000-132449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34112/","id":34112,"name":"Art Attack, Part 3: Cold Hands, Warm Art","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-75-art-attack-part-3-cold-hands-/4000-34112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34091/","id":34091,"name":"Rematch ! DD Versus Bullet !","site_detail_url":"https://comicvine.gamespot.com/daredevil-291-rematch-dd-versus-bullet/4000-34091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34135/","id":34135,"name":"Countdown to Doomsday!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-75-countdown-to-doomsday/4000-34135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34134/","id":34134,"name":"The End Of The Beginning","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-100-the-end-of-the-beginning/4000-34134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35093/","id":35093,"name":"The Man Who Made Tomorrow","site_detail_url":"https://comicvine.gamespot.com/omac-one-man-army-corps-4-the-man-who-made-tomorro/4000-35093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156417/","id":156417,"name":"Bad N' Beautiful: The Babes of Bodyslam","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-25-bad-n-beautiful-the-babes-of-bod/4000-156417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34025/","id":34025,"name":"The Beginning of the End Part Two","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-99-the-beginning-of-the-end-part-t/4000-34025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33983/","id":33983,"name":"Gun From The Heart!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-345-gun-from-the-heart/4000-33983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159037/","id":159037,"name":"Souls Withering...","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-35-souls-withering/4000-159037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33937/","id":33937,"name":"","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-fate-of-atlantis-1/4000-33937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33998/","id":33998,"name":"The Invaders Fight Again!","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-12-the-invaders-fight-again/4000-33998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466643/","id":466643,"name":"","site_detail_url":"https://comicvine.gamespot.com/marshal-law-takes-manhattan-1/4000-466643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34009/","id":34009,"name":"What If the All-New All-Different X-Men Had Never Existed?","site_detail_url":"https://comicvine.gamespot.com/what-if-23-what-if-the-all-new-all-different-x-men/4000-34009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33953/","id":33953,"name":"The Last Giant Nazi Robot Story!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-48-the-last-giant-nazi-robo/4000-33953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130926/","id":130926,"name":"Old Flames","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-25-old-flames/4000-130926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34018/","id":34018,"name":"Dawn Of The Darkhawk","site_detail_url":"https://comicvine.gamespot.com/darkhawk-1-dawn-of-the-darkhawk/4000-34018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64610/","id":64610,"name":"Perceptions, Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/spider-man-8-perceptions-part-1-of-5/4000-64610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129887/","id":129887,"name":"The Price","site_detail_url":"https://comicvine.gamespot.com/x-factor-64-the-price/4000-129887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33959/","id":33959,"name":"The Prophet Margin","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-9-the-prophet-margin/4000-33959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33996/","id":33996,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-71/4000-33996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123705/","id":123705,"name":"Mondo Metal","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-18-mondo-m/4000-123705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33940/","id":33940,"name":"Shaking the Family Tree","site_detail_url":"https://comicvine.gamespot.com/angel-and-the-ape-1-shaking-the-family-tree/4000-33940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272260/","id":272260,"name":"Tu ne buteras point","site_detail_url":"https://comicvine.gamespot.com/soda-3-tu-ne-buteras-point/4000-272260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34001/","id":34001,"name":"Cold Cache","site_detail_url":"https://comicvine.gamespot.com/the-punisher-46-cold-cache/4000-34001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33988/","id":33988,"name":"Bullseye!","site_detail_url":"https://comicvine.gamespot.com/daredevil-290-bullseye/4000-33988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34003/","id":34003,"name":"Assault on Eon","site_detail_url":"https://comicvine.gamespot.com/quasar-20-assault-on-eon/4000-34003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34032/","id":34032,"name":"Weapon X Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-72-weapon-x-part-1/4000-34032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33999/","id":33999,"name":"Following The Line Along The Middle","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-9-following-the-line-along-the-mi/4000-33999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211641/","id":211641,"name":"The Adventure of the Mystery League","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-19-the-adventure-of-the-mystery-le/4000-211641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33986/","id":33986,"name":"I Am Legend","site_detail_url":"https://comicvine.gamespot.com/captain-america-383-i-am-legend/4000-33986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74649/","id":74649,"name":"When Pantha Strikes","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-74-when-pantha-strikes/4000-74649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144963/","id":144963,"name":"Paulina the Unauthorized Biography","site_detail_url":"https://comicvine.gamespot.com/personality-comics-presents-1-paulina-the-unauthor/4000-144963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33866/","id":33866,"name":"Hearts and Powers","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-344-hearts-and-powers/4000-33866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-63510/","id":63510,"name":"Speeding Image","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-51-speeding-image/4000-63510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33839/","id":33839,"name":"The Two and Only!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-9-the-two-and-only/4000-33839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33842/","id":33842,"name":"General Glory Fights Again!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-47-general-glory-fights-aga/4000-33842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33889/","id":33889,"name":"Priceless!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-24-priceless/4000-33889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147703/","id":147703,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-real-ghostbusters-28/4000-147703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64609/","id":64609,"name":"Masques: Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-7-masques-part-2/4000-64609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33907/","id":33907,"name":"Family","site_detail_url":"https://comicvine.gamespot.com/x-factor-63-family/4000-33907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156416/","id":156416,"name":"The Lump That Came to Campus","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-24-the-lump-that-came-to-campus/4000-156416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33847/","id":33847,"name":"Love and Haight","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-8-love-and-haight/4000-33847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33886/","id":33886,"name":"One Way Fare","site_detail_url":"https://comicvine.gamespot.com/the-punisher-45-one-way-fare/4000-33886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33930/","id":33930,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-70/4000-33930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132448/","id":132448,"name":"Thrones, Dominions, and Powers","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-16-th/4000-132448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123704/","id":123704,"name":"Fight the Power","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-17-fight-t/4000-123704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281897/","id":281897,"name":"La macchina della follia","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-107-bis-la-macchina-della-follia/4000-281897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33872/","id":33872,"name":"Body Count","site_detail_url":"https://comicvine.gamespot.com/foolkiller-5-body-count/4000-33872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33888/","id":33888,"name":"Refugees","site_detail_url":"https://comicvine.gamespot.com/quasar-19-refugees/4000-33888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33879/","id":33879,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-69/4000-33879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33883/","id":33883,"name":"Devil's at the Doorsteps","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-8-devil-s-at-the-doorsteps/4000-33883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211638/","id":211638,"name":"This Murder Comes to You Live","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-18-this-murder-comes-to-you-live/4000-211638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33869/","id":33869,"name":"Why Does It Always Have to Be Snakes?","site_detail_url":"https://comicvine.gamespot.com/captain-america-382-why-does-it-always-have-to-be-/4000-33869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33885/","id":33885,"name":"Lo, There Shall Be An Ending","site_detail_url":"https://comicvine.gamespot.com/power-pack-62-lo-there-shall-be-an-ending/4000-33885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33895/","id":33895,"name":"What if the Silver Surfer had not escaped Earth?","site_detail_url":"https://comicvine.gamespot.com/what-if-22-what-if-the-silver-surfer-had-not-escap/4000-33895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33894/","id":33894,"name":"Art Attack, Part 1: Head Quest","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-73-art-attack-part-1-head-quest/4000-33894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33878/","id":33878,"name":"The Maze","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-23-the-maze/4000-33878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74648/","id":74648,"name":"Paradise Lost","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-73-paradise-lost/4000-74648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35086/","id":35086,"name":"Brother, Can You Spare an Eye?","site_detail_url":"https://comicvine.gamespot.com/omac-one-man-army-corps-2-brother-can-you-spare-an/4000-35086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33770/","id":33770,"name":"Powers That Be","site_detail_url":"https://comicvine.gamespot.com/the-avengers-328-powers-that-be/4000-33770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33804/","id":33804,"name":"The Cheyenne Gods demand vengeance...and only Black Crow, Red Wolf, and Doc stand in their way!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-25-the-cheyenne-go/4000-33804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118038/","id":118038,"name":"Stretching a Point!","site_detail_url":"https://comicvine.gamespot.com/action-comics-661-stretching-a-point/4000-118038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33783/","id":33783,"name":"Dark Nativity","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-10-dark-nativity/4000-33783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33753/","id":33753,"name":"Embrace the Coming Dawn","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-50-embrace-the-coming-dawn/4000-33753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33740/","id":33740,"name":"Old Glory","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-46-old-glory/4000-33740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33741/","id":33741,"name":"Catnap","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-22-catnap/4000-33741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64608/","id":64608,"name":"Masques: Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-6-masques-part-1/4000-64608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156415/","id":156415,"name":"A Tale of Two Miracles","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-23-a-tale-of-two-miracles/4000-156415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163218/","id":163218,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-collected-series-1-vo/4000-163218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33745/","id":33745,"name":"The Nameless","site_detail_url":"https://comicvine.gamespot.com/shade-the-changing-man-7-the-nameless/4000-33745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97163/","id":97163,"name":"Alliances","site_detail_url":"https://comicvine.gamespot.com/femforce-31-alliances/4000-97163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97164/","id":97164,"name":"The Return Of Garganta, The 50 Foot Woman","site_detail_url":"https://comicvine.gamespot.com/femforce-32-the-return-of-garganta-the-50-foot-wom/4000-97164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97165/","id":97165,"name":"Scattered Moments","site_detail_url":"https://comicvine.gamespot.com/femforce-33-scattered-moments/4000-97165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97166/","id":97166,"name":"Under The Shadow Of The Shroud","site_detail_url":"https://comicvine.gamespot.com/femforce-34-under-the-shadow-of-the-shroud/4000-97166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97167/","id":97167,"name":"","site_detail_url":"https://comicvine.gamespot.com/femforce-35/4000-97167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98222/","id":98222,"name":"Babysitter","site_detail_url":"https://comicvine.gamespot.com/badger-67-babysitter/4000-98222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223686/","id":223686,"name":"The Marvel/DC Collection","site_detail_url":"https://comicvine.gamespot.com/dcmarvel-crossover-classics-1-the-marveldc-collect/4000-223686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33775/","id":33775,"name":"Crisis of Confidence","site_detail_url":"https://comicvine.gamespot.com/foolkiller-4-crisis-of-confidence/4000-33775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318490/","id":318490,"name":"L’Arca ritrovata","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-106-larca-ritrovata/4000-318490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33781/","id":33781,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-67/4000-33781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33825/","id":33825,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-68/4000-33825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134348/","id":134348,"name":"To the Heart of the Storm","site_detail_url":"https://comicvine.gamespot.com/to-the-heart-of-the-storm-1-to-the-heart-of-the-st/4000-134348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33792/","id":33792,"name":"If This Be Juggernaut!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-428-if-this-be-juggernaut/4000-33792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118717/","id":118717,"name":"A Miracle a Few Blocks Down From 32nd Street / A Christmas Coda / Midnight Drear / Twas a Midwinter's Night / Precious Gifts / Ghosts of Christmas Past / It Came and Went on a Midnight Clear / A Spider-Man Carol","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-1991-a-miracle-a-few-blocks/4000-118717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431780/","id":431780,"name":"Zuflucht","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-10-zuflucht/4000-431780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33773/","id":33773,"name":"Whatever Happened to Matt Murdock?","site_detail_url":"https://comicvine.gamespot.com/daredevil-288-whatever-happened-to-matt-murdock/4000-33773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33772/","id":33772,"name":"This Gun's For Hire","site_detail_url":"https://comicvine.gamespot.com/captain-america-381-this-guns-for-hire/4000-33772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33769/","id":33769,"name":"Avengers Reborn, PArt 4- Re/Vision","site_detail_url":"https://comicvine.gamespot.com/avengers-spotlight-40-avengers-reborn-part-4-revis/4000-33769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383544/","id":383544,"name":"Riot at Robotowrld","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-nacme-series-riot-at-robotw/4000-383544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74647/","id":74647,"name":"Death of a Hero!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-72-death-of-a-hero/4000-74647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33780/","id":33780,"name":"The Hate Factory","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-22-the-hate-factory/4000-33780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385192/","id":385192,"name":"","site_detail_url":"https://comicvine.gamespot.com/billy-budd-kgb-1/4000-385192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336976/","id":336976,"name":"","site_detail_url":"https://comicvine.gamespot.com/dinosaurs-attack-the-graphic-novel-1/4000-336976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86440/","id":86440,"name":"Corporate Maneuvers (and leveraged buyouts)","site_detail_url":"https://comicvine.gamespot.com/justice-league-quarterly-1-corporate-maneuvers-and/4000-86440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141814/","id":141814,"name":"What's Black and White and Black and White and Bl...","site_detail_url":"https://comicvine.gamespot.com/justice-league-annual-4-whats-black-and-white-and-/4000-141814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33550/","id":33550,"name":"The Homecoming!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-427-the-homecoming/4000-33550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33539/","id":33539,"name":"Skull Orchard","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-9-skull-orchard/4000-33539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406779/","id":406779,"name":"Druglords","site_detail_url":"https://comicvine.gamespot.com/captain-america-goes-to-war-against-drugs-2-druglo/4000-406779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33526/","id":33526,"name":"Into A Darkling Plain","site_detail_url":"https://comicvine.gamespot.com/the-avengers-327-into-a-darkling-plain/4000-33526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33484/","id":33484,"name":"Rings of Fire","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-473-rings-of-fire/4000-33484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33497/","id":33497,"name":"A Date with Density, Part 2: Hell on Ice!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-45-a-date-with-density-part/4000-33497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64607/","id":64607,"name":"Torment, Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-man-5-torment-part-5/4000-64607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156414/","id":156414,"name":"Passing the Miracle","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-22-passing-the-miracle/4000-156414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33549/","id":33549,"name":"Epiphany","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-44-epiphany/4000-33549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33871/","id":33871,"name":"Big Trouble on Little Earth!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-347-big-trouble-on-little-earth/4000-33871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33531/","id":33531,"name":"Thrill of the Kill","site_detail_url":"https://comicvine.gamespot.com/foolkiller-3-thrill-of-the-kill/4000-33531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33535/","id":33535,"name":"Number One with a Bullet","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-21-number-one-with-a-bull/4000-33535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318487/","id":318487,"name":"Tragico Natale","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-105-tragico-natale/4000-318487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132447/","id":132447,"name":"Men, Beasts, And Gods","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-15-me/4000-132447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33546/","id":33546,"name":"Reborn To Run","site_detail_url":"https://comicvine.gamespot.com/quasar-17-reborn-to-run/4000-33546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33536/","id":33536,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-64/4000-33536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33579/","id":33579,"name":"Baptism of fire!","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-65-baptism-of-fire/4000-33579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33581/","id":33581,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-66/4000-33581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33528/","id":33528,"name":"With Friends Like These...","site_detail_url":"https://comicvine.gamespot.com/captain-america-380-with-friends-like-these/4000-33528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33542/","id":33542,"name":"Ghost Of A Chance","site_detail_url":"https://comicvine.gamespot.com/power-pack-61-ghost-of-a-chance/4000-33542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32154/","id":32154,"name":"The Shadow World","site_detail_url":"https://comicvine.gamespot.com/the-books-of-magic-2-the-shadow-world/4000-32154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33545/","id":33545,"name":"The Sicilian Saga Part 1: Get Out Of Town","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-25-the-sicilian-saga-part/4000-33545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156413/","id":156413,"name":"Movin' Day","site_detail_url":"https://comicvine.gamespot.com/mister-miracle-21-movin-day/4000-156413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33417/","id":33417,"name":"Powerless Part 1: With(out) Great Power","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-341-powerless-part-1-with-o/4000-33417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33455/","id":33455,"name":"The Dark Wars Part 3 of Four","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-23-the-dark-wars-p/4000-33455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74646/","id":74646,"name":"Beginnings... Endings... And (We Promise) New Beginnings!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-71-beginnings-endings-and-we-promis/4000-74646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33432/","id":33432,"name":"Never Bet the Devil Your Head","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-8-never-bet-the-devil-your-h/4000-33432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33403/","id":33403,"name":"Fang and Claw","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-48-fang-and-claw/4000-33403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33393/","id":33393,"name":"Pastiche","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-44-pastiche/4000-33393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33389/","id":33389,"name":"Balance Sheet","site_detail_url":"https://comicvine.gamespot.com/the-flash-44-balance-sheet/4000-33389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33439/","id":33439,"name":"Atomic Secrets!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-21-atomic-secrets/4000-33439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197814/","id":197814,"name":"L'Héritier","site_detail_url":"https://comicvine.gamespot.com/largo-winch-1-lheritier/4000-197814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33433/","id":33433,"name":"The Man Who Stole Tomorrow","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-5-the-man-who-stole-tomorrow/4000-33433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64606/","id":64606,"name":"Torment, Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-man-4-torment-part-4/4000-64606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33446/","id":33446,"name":"X-Tinction Agenda (Part 3): Brotherhood","site_detail_url":"https://comicvine.gamespot.com/x-factor-60-x-tinction-agenda-part-3-brotherhood/4000-33446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33436/","id":33436,"name":"St. Paradines","site_detail_url":"https://comicvine.gamespot.com/the-punisher-42-st-paradines/4000-33436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33424/","id":33424,"name":"The Calling","site_detail_url":"https://comicvine.gamespot.com/foolkiller-2-the-calling/4000-33424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33429/","id":33429,"name":"By the Numbers","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-20-by-the-numbers/4000-33429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33438/","id":33438,"name":"Germ of an Idea","site_detail_url":"https://comicvine.gamespot.com/quasar-16-germ-of-an-idea/4000-33438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33442/","id":33442,"name":"Aftermath!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-426-aftermath/4000-33442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33445/","id":33445,"name":"What if the Vision had Conquered the World?","site_detail_url":"https://comicvine.gamespot.com/what-if-19-what-if-the-vision-had-conquered-the-wo/4000-33445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33422/","id":33422,"name":"The Thief","site_detail_url":"https://comicvine.gamespot.com/daredevil-286-the-thief/4000-33422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33421/","id":33421,"name":"Moonstruck","site_detail_url":"https://comicvine.gamespot.com/captain-america-379-moonstruck/4000-33421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33366/","id":33366,"name":"Back To School!","site_detail_url":"https://comicvine.gamespot.com/power-pack-60-back-to-school/4000-33366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66656/","id":66656,"name":"Patriotic Knights, Part One","site_detail_url":"https://comicvine.gamespot.com/checkmate-31-patriotic-knights-part-one/4000-66656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33306/","id":33306,"name":"Female Trouble!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-340-female-trouble/4000-33306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33308/","id":33308,"name":"Imaginary Borders","site_detail_url":"https://comicvine.gamespot.com/the-avengers-324-imaginary-borders/4000-33308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33364/","id":33364,"name":"Party Games","site_detail_url":"https://comicvine.gamespot.com/the-avengers-325-party-games/4000-33364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33344/","id":33344,"name":"The Dark Wars Part 2 of Four: Baron Mordo is the New Sorcerer Supreme...but for How Long? Long Enough!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-22-the-dark-wars-p/4000-33344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33280/","id":33280,"name":"The Extremist Vector Part Five: Pushing the Button","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-19-the-extremist-vector-part/4000-33280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33279/","id":33279,"name":"If You Play Your Cards Right ...","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-43-if-you-play-your-cards-r/4000-33279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86086/","id":86086,"name":"Mindstorm; Sheer Heart Attack; Scout's Motto; Ember When; This Is Our Story; Shadow Of A Doubt;","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-4-mindstorm-sheer-heart-attack/4000-86086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33310/","id":33310,"name":"The Shadowman","site_detail_url":"https://comicvine.gamespot.com/daredevil-285-the-shadowman/4000-33310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64605/","id":64605,"name":"Torment, Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-3-torment-part-3/4000-64605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33338/","id":33338,"name":"Yesterday's News","site_detail_url":"https://comicvine.gamespot.com/x-factor-59-yesterdays-news/4000-33338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132446/","id":132446,"name":"Eyes and Fire","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-14-ey/4000-132446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33367/","id":33367,"name":"Should A Gentleman Offer A Tiparillo To A Lady","site_detail_url":"https://comicvine.gamespot.com/the-punisher-41-should-a-gentleman-offer-a-tiparil/4000-33367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272907/","id":272907,"name":"Ultima fermata: l'incubo!","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-martin-mystere-1-ultima-fermata-lincubo/4000-272907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48936/","id":48936,"name":"Ryker's Island","site_detail_url":"https://comicvine.gamespot.com/deathlok-4-rykers-island/4000-48936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104503/","id":104503,"name":"","site_detail_url":"https://comicvine.gamespot.com/veronica-11/4000-104503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33318/","id":33318,"name":"Broadway Knights","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-19-broadway-knights/4000-33318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33309/","id":33309,"name":"Grand Stand Play!","site_detail_url":"https://comicvine.gamespot.com/captain-america-378-grand-stand-play/4000-33309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181850/","id":181850,"name":"","site_detail_url":"https://comicvine.gamespot.com/betty-boops-big-break-1/4000-181850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33330/","id":33330,"name":"Death Watch","site_detail_url":"https://comicvine.gamespot.com/quasar-15-death-watch/4000-33330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211637/","id":211637,"name":"If Books Could Kill","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-16-if-books-could-kill/4000-211637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33325/","id":33325,"name":"At The Circus!","site_detail_url":"https://comicvine.gamespot.com/power-pack-59-at-the-circus/4000-33325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33337/","id":33337,"name":"Diamond in the Rough","site_detail_url":"https://comicvine.gamespot.com/wild-cards-2-diamond-in-the-rough/4000-33337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32238/","id":32238,"name":"The Terminus Factor Part 5","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-19-the-terminus-factor-part-5/4000-32238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33236/","id":33236,"name":"Days of Rage - Part 2 (Rage Under Pressure)","site_detail_url":"https://comicvine.gamespot.com/the-huntress-18-days-of-rage-part-2-rage-under-pre/4000-33236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33228/","id":33228,"name":"The Dark Wars Part 1 of Four: The Return of the Dread Dormammu!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-21-the-dark-wars-p/4000-33228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33200/","id":33200,"name":"Out Of Sight Out Of Mind","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-6-out-of-sight-out-of-mind/4000-33200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33161/","id":33161,"name":"Solicitations","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-42-solicitations/4000-33161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33209/","id":33209,"name":"Year Zero","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-19-year-zero/4000-33209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33253/","id":33253,"name":"On the Road & other stories","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-59-on-the-road-other-storie/4000-33253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57806/","id":57806,"name":"Book Two: The Animal Unleashed","site_detail_url":"https://comicvine.gamespot.com/wolverine-saga-2-book-two-the-animal-unleashed/4000-57806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33202/","id":33202,"name":"Apogee of Disaster, Part 1","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-15-apogee-of-disaster-pa/4000-33202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32223/","id":32223,"name":"Volume 13 The Fantastic Four III","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-13-volume-13-the-fantastic-four/4000-32223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33232/","id":33232,"name":"Nevermore","site_detail_url":"https://comicvine.gamespot.com/x-factor-58-nevermore/4000-33232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64604/","id":64604,"name":"Torment, Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-2-torment-part-2/4000-64604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159034/","id":159034,"name":"Toitle Anxiety","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-34-toitle-anxiety/4000-159034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33153/","id":33153,"name":"Hermes, Messenger of Death!","site_detail_url":"https://comicvine.gamespot.com/doc-savage-23-hermes-messenger-of-death/4000-33153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48935/","id":48935,"name":"Dam If He Don't","site_detail_url":"https://comicvine.gamespot.com/deathlok-3-dam-if-he-dont/4000-48935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33191/","id":33191,"name":"Cross Purposes","site_detail_url":"https://comicvine.gamespot.com/captain-america-376-cross-purposes/4000-33191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33252/","id":33252,"name":"The 100% Solution","site_detail_url":"https://comicvine.gamespot.com/captain-america-377-the-100-solution/4000-33252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33201/","id":33201,"name":"I Am, Therefore I Think","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-3-i-am-therefore-i-think/4000-33201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33204/","id":33204,"name":"Star Struck","site_detail_url":"https://comicvine.gamespot.com/power-pack-58-star-struck/4000-33204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33198/","id":33198,"name":"The Trial of Marc Spector, Part 4 - \"Promises\"","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-18-the-trial-of-marc-spec/4000-33198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33215/","id":33215,"name":"Heart of the Matter","site_detail_url":"https://comicvine.gamespot.com/wild-cards-1-heart-of-the-matter/4000-33215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144023/","id":144023,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-factor-prisoner-of-love-1/4000-144023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66655/","id":66655,"name":"Knight Beat","site_detail_url":"https://comicvine.gamespot.com/checkmate-30-knight-beat/4000-66655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33115/","id":33115,"name":"Days of Rage - Part 1","site_detail_url":"https://comicvine.gamespot.com/the-huntress-17-days-of-rage-part-1/4000-33115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33108/","id":33108,"name":"Toys in the Attic","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-20-toys-in-the-att/4000-33108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33084/","id":33084,"name":"All The Rivers Burning!","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-5-all-the-rivers-burning/4000-33084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33045/","id":33045,"name":"The Extremist Vector Part Three: On the Brink!","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-17-the-extremist-vector-part/4000-33045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33044/","id":33044,"name":"Maximum Force","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-41-maximum-force/4000-33044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33094/","id":33094,"name":"The Dentist in the Iron Mask!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-18-the-dentist-in-the-iro/4000-33094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64603/","id":64603,"name":"Torment, Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-1-torment-part-1/4000-64603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77995/","id":77995,"name":"Up from Slavery!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-annual-6-up-from-slavery/4000-77995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33131/","id":33131,"name":"Rites and Wrongs","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-337-rites-and-wrongs/4000-33131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33085/","id":33085,"name":"Mirror Moves","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-2-mirror-moves/4000-33085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33102/","id":33102,"name":"Reflections","site_detail_url":"https://comicvine.gamespot.com/x-factor-57-reflections/4000-33102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66336/","id":66336,"name":"Days of Future Present (Part 2):","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-5-days-of-future-present-part-2/4000-66336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33119/","id":33119,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-impossible-man-summer-vacation-spectacular-1/4000-33119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95271/","id":95271,"name":"The Big Oblivion Scenario","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-13-th/4000-95271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189665/","id":189665,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/punisher-no-escape-1-gn/4000-189665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33091/","id":33091,"name":"Jigsaw Puzzle Part 2: The Neighborhood Defense Fund","site_detail_url":"https://comicvine.gamespot.com/the-punisher-36-jigsaw-puzzle-part-2-the-neighborh/4000-33091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48934/","id":48934,"name":"Jesus Saves","site_detail_url":"https://comicvine.gamespot.com/deathlok-2-jesus-saves/4000-48934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33093/","id":33093,"name":"The Earth You Have Reached","site_detail_url":"https://comicvine.gamespot.com/quasar-13-the-earth-you-have-reached/4000-33093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211636/","id":211636,"name":"Too Much Bliss","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-15-too-much-bliss/4000-211636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211646/","id":211646,"name":"A Night at the Rose Petal","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-annual-1-a-night-at-the-rose-petal/4000-211646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33074/","id":33074,"name":"Falling Out","site_detail_url":"https://comicvine.gamespot.com/captain-america-374-falling-out/4000-33074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33133/","id":33133,"name":"The Devil You Know","site_detail_url":"https://comicvine.gamespot.com/captain-america-375-the-devil-you-know/4000-33133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33081/","id":33081,"name":"The Trial of Marc Spector, Part 3 - \"Secrets\"","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-17-the-trial-of-marc-spec/4000-33081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-931134/","id":931134,"name":null,"site_detail_url":"https://comicvine.gamespot.com/eastman-and-lairds-teenage-mutant-ninja-turtles-th/4000-931134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32970/","id":32970,"name":"From the Ground Up","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-1-from-the-ground-up/4000-32970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32164/","id":32164,"name":"Life Form - - Termination","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-annual-3-life-form-termination/4000-32164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32969/","id":32969,"name":"Black Water","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-4-black-water/4000-32969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32927/","id":32927,"name":"Pursuit of Happiness!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-2-pursuit-of-happiness/4000-32927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66654/","id":66654,"name":"Knight Watch","site_detail_url":"https://comicvine.gamespot.com/checkmate-29-knight-watch/4000-66654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149161/","id":149161,"name":"Welcome To The Wrecking Ball","site_detail_url":"https://comicvine.gamespot.com/the-huntress-16-welcome-to-the-wrecking-ball/4000-149161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366616/","id":366616,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-wolverine-1/4000-366616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32978/","id":32978,"name":"Acts of Peevishness!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-17-acts-of-peevishness/4000-32978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32965/","id":32965,"name":"Strange But True","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-371-strange-but-true/4000-32965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32930/","id":32930,"name":"Hell on Earth","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-40-hell-on-earth/4000-32930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32920/","id":32920,"name":"Chaos Descending!","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-19-chaos-descending/4000-32920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32985/","id":32985,"name":"Ravens","site_detail_url":"https://comicvine.gamespot.com/x-factor-56-ravens/4000-32985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32982/","id":32982,"name":"The Lower Depths","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-263-the-lower-depths/4000-32982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33015/","id":33015,"name":"Hot Pursuit","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-264-hot-pursuit/4000-33015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172183/","id":172183,"name":"Di tutti i colori","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-100-di-tutti-i-colori/4000-172183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32919/","id":32919,"name":"The Air Lord, pt. 3- Death in the Heart of Texas!","site_detail_url":"https://comicvine.gamespot.com/doc-savage-21-the-air-lord-pt-3-death-in-the-heart/4000-32919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107384/","id":107384,"name":"Jigsaw Puzzle: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-35-jigsaw-puzzle-part-1/4000-107384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32975/","id":32975,"name":"The Debt","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-20-the-debt/4000-32975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86085/","id":86085,"name":"Fall Special","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-3-fall-special/4000-86085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32976/","id":32976,"name":"Games Deviants Play","site_detail_url":"https://comicvine.gamespot.com/quasar-12-games-deviants-play/4000-32976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32917/","id":32917,"name":"Broken China","site_detail_url":"https://comicvine.gamespot.com/bugs-bunny-2-broken-china/4000-32917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211634/","id":211634,"name":"Before Midnight","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-14-before-midnight/4000-211634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32960/","id":32960,"name":"Sold on Ice","site_detail_url":"https://comicvine.gamespot.com/captain-america-372-sold-on-ice/4000-32960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33013/","id":33013,"name":"After Blow","site_detail_url":"https://comicvine.gamespot.com/captain-america-373-after-blow/4000-33013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32973/","id":32973,"name":"Fire","site_detail_url":"https://comicvine.gamespot.com/power-pack-57-fire/4000-32973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32977/","id":32977,"name":"The flaming fifties!","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-original-human-torch-4-the-flaming-fif/4000-32977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32888/","id":32888,"name":"If Looks Could Kill","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-67-if-looks-could-kill/4000-32888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115459/","id":115459,"name":"New Deal","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-68-new-deal/4000-115459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32967/","id":32967,"name":"The Trial of Marc Spector, Part 2 - \"Spoils\"","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-16-the-trial-of-marc-spec/4000-32967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32984/","id":32984,"name":"What if the Fantastic Four had Lost the Trial of Galactus","site_detail_url":"https://comicvine.gamespot.com/what-if-15-what-if-the-fantastic-four-had-lost-the/4000-32984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32803/","id":32803,"name":"The Extremist Vector Part One: Kings of the Dust","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-15-the-extremist-vector-part/4000-32803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32799/","id":32799,"name":"Down to Earth","site_detail_url":"https://comicvine.gamespot.com/green-lantern-1-down-to-earth/4000-32799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66653/","id":66653,"name":"Knight Court","site_detail_url":"https://comicvine.gamespot.com/checkmate-28-knight-court/4000-66653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149158/","id":149158,"name":"Out There In TV Land","site_detail_url":"https://comicvine.gamespot.com/the-huntress-15-out-there-in-tv-land/4000-149158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32862/","id":32862,"name":"The Last Act Of Vengeance","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-65-the-last-act-of-vengeance/4000-32862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32840/","id":32840,"name":"Strange Matters","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-370-strange-matters/4000-32840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32839/","id":32839,"name":"Quality of Mercy; You Can't Always Get What You Want; The Nightmare Never Ends!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual-16-quality-of-mercy-you/4000-32839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32845/","id":32845,"name":"Meeting Of The Board","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-3-meeting-of-the-board/4000-32845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406454/","id":406454,"name":"Alone in New York","site_detail_url":"https://comicvine.gamespot.com/club-13-1-alone-in-new-york/4000-406454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32180/","id":32180,"name":"Predator","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-6-predator/4000-32180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32802/","id":32802,"name":"Blow Up","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-39-blow-up/4000-32802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32864/","id":32864,"name":"Desperately Seeking Vera","site_detail_url":"https://comicvine.gamespot.com/x-factor-55-desperately-seeking-vera/4000-32864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32860/","id":32860,"name":"Fear Kills!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-418-fear-kills/4000-32860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32830/","id":32830,"name":"Stalking Feat","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-333-stalking-feat/4000-32830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32861/","id":32861,"name":"Scary Monsters","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-262-scary-monsters/4000-32861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95270/","id":95270,"name":"Duplicity, Deceptions and Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-12-du/4000-95270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57486/","id":57486,"name":"Rhythms of Darkness!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-67-rhythms-of-darkness/4000-57486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123689/","id":123689,"name":"White Light","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-11-white-l/4000-123689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304373/","id":304373,"name":"","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1/4000-304373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32854/","id":32854,"name":"Trauma In Paradise!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-19-trauma-in-paradise/4000-32854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32855/","id":32855,"name":"By The Time I Get To Phoenix","site_detail_url":"https://comicvine.gamespot.com/quasar-11-by-the-time-i-get-to-phoenix/4000-32855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65559/","id":65559,"name":"Knight and Fogg","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-165-knight-and-fogg/4000-65559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211633/","id":211633,"name":"The Adventure of the Bleeding Venus","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-13-the-adventure-of-the-bleeding-v/4000-211633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32834/","id":32834,"name":"Cap's Night Out","site_detail_url":"https://comicvine.gamespot.com/captain-america-371-caps-night-out/4000-32834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32856/","id":32856,"name":"Out of the ashes","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-original-human-torch-3-out-of-the-ashe/4000-32856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165641/","id":165641,"name":"Some Tails Are Gonna Roll!","site_detail_url":"https://comicvine.gamespot.com/cat-and-mouse-4-some-tails-are-gonna-roll/4000-165641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189667/","id":189667,"name":"Punisher Movie Special","site_detail_url":"https://comicvine.gamespot.com/the-punisher-movie-special-1-punisher-movie-specia/4000-189667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32842/","id":32842,"name":"The Trial of Marc Spector, Part 1 - \"Comes the Night\"","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-15-the-trial-of-marc-spec/4000-32842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710387/","id":710387,"name":"Rumble in the Jungle","site_detail_url":"https://comicvine.gamespot.com/the-phantom-951a-rumble-in-the-jungle/4000-710387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66418/","id":66418,"name":"Do Be Afraid of the Dark!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2-do-be-afraid-of-the-dark/4000-66418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-930727/","id":930727,"name":"Die Kugeln des Gelben Schattens","site_detail_url":"https://comicvine.gamespot.com/bob-morane-15-die-kugeln-des-gelben-schattens/4000-930727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32698/","id":32698,"name":"Spy","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-38-spy/4000-32698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66652/","id":66652,"name":"Kidnapped!","site_detail_url":"https://comicvine.gamespot.com/checkmate-27-kidnapped/4000-66652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76485/","id":76485,"name":"Networking","site_detail_url":"https://comicvine.gamespot.com/the-huntress-14-networking/4000-76485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32726/","id":32726,"name":"Silent Screams","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-369-silent-screams/4000-32726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32737/","id":32737,"name":"Secret Warts","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-15-secret-warts/4000-32737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32742/","id":32742,"name":"Once More With Feeling","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-64-once-more-with-feeling/4000-32742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32730/","id":32730,"name":"Eagle's Wing and Lion's Claw","site_detail_url":"https://comicvine.gamespot.com/namor-the-sub-mariner-2-eagles-wing-and-lions-claw/4000-32730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32707/","id":32707,"name":"The Evil Factory","site_detail_url":"https://comicvine.gamespot.com/superman-43-the-evil-factory/4000-32707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32744/","id":32744,"name":"Crimson","site_detail_url":"https://comicvine.gamespot.com/x-factor-54-crimson/4000-32744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32766/","id":32766,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-89-the-gift/4000-32766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32689/","id":32689,"name":"Afterlives","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-17-afterlives/4000-32689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32734/","id":32734,"name":"Kahuna","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-18-kahuna/4000-32734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318757/","id":318757,"name":"Ultimatum a New York","site_detail_url":"https://comicvine.gamespot.com/speciale-martin-mystere-7-ultimatum-a-new-york/4000-318757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32735/","id":32735,"name":"Kree For All","site_detail_url":"https://comicvine.gamespot.com/quasar-10-kree-for-all/4000-32735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32729/","id":32729,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-49/4000-32729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32773/","id":32773,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-50/4000-32773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211474/","id":211474,"name":"Murderer's Mask","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-12-murderers-mask/4000-211474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32849/","id":32849,"name":"Childhood's End","site_detail_url":"https://comicvine.gamespot.com/power-pack-56-childhoods-end/4000-32849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32736/","id":32736,"name":"The world on fire!","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-original-human-torch-2-the-world-on-fi/4000-32736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32768/","id":32768,"name":"Fatal Attraction","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-66-fatal-attraction/4000-32768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66417/","id":66417,"name":"A Spirit Reborn!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-1-a-spirit-reborn/4000-66417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76484/","id":76484,"name":"The Talking Cure","site_detail_url":"https://comicvine.gamespot.com/the-huntress-13-the-talking-cure/4000-76484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32609/","id":32609,"name":"Krypton Man","site_detail_url":"https://comicvine.gamespot.com/superman-42-krypton-man/4000-32609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32655/","id":32655,"name":"The Vampiric Verses Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-16-the-vampiric-ve/4000-32655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32598/","id":32598,"name":"Furballs!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-37-furballs/4000-32598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32641/","id":32641,"name":"Have Brain Will Travel","site_detail_url":"https://comicvine.gamespot.com/quasar-9-have-brain-will-travel/4000-32641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32643/","id":32643,"name":"A Baloney Place of Dying!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-14-a-baloney-place-of-dyi/4000-32643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32602/","id":32602,"name":"The Secret Origin of Ambush Bug: We Thought Him Up!; Stanley and His Monster; The Birth of Rex the Wonder Dog; The Trigger Twins","site_detail_url":"https://comicvine.gamespot.com/secret-origins-48-the-secret-origin-of-ambush-bug-/4000-32602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32650/","id":32650,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/x-factor-53-ghosts/4000-32650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32669/","id":32669,"name":"The Great Escape","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-88-the-great-escape/4000-32669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114500/","id":114500,"name":"Remembrances of Revolutions Past","site_detail_url":"https://comicvine.gamespot.com/inhumans-special-1-remembrances-of-revolutions-pas/4000-114500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32647/","id":32647,"name":"Blam! Star 90","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-260-blam-star-90/4000-32647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95269/","id":95269,"name":"The Marked Man!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-11-th/4000-95269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32589/","id":32589,"name":"My Angel Soul","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-16-my-angel-soul/4000-32589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115450/","id":115450,"name":"Deja Vu","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-65-deja-vu/4000-115450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32640/","id":32640,"name":"Tropical Trouble","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-17-tropical-trouble/4000-32640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32599/","id":32599,"name":"Furballs II","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-13-furballs-ii/4000-32599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32675/","id":32675,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-48/4000-32675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32625/","id":32625,"name":"The Skeleton Crew","site_detail_url":"https://comicvine.gamespot.com/captain-america-369-the-skeleton-crew/4000-32625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211460/","id":211460,"name":"Twas the Crime Before Christmas...","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-11-twas-the-crime-before-christmas/4000-211460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86084/","id":86084,"name":"Summer Special","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-2-summer-special/4000-86084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32637/","id":32637,"name":"Mysterio","site_detail_url":"https://comicvine.gamespot.com/power-pack-55-mysterio/4000-32637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32642/","id":32642,"name":"The Lighted Torch","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-original-human-torch-1-the-lighted-tor/4000-32642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66651/","id":66651,"name":"Knight Job","site_detail_url":"https://comicvine.gamespot.com/checkmate-26-knight-job/4000-66651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32380/","id":32380,"name":"The Conflagaration Man part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/doc-savage-17-the-conflagaration-man-part-2-of-4/4000-32380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76483/","id":76483,"name":"Party At Ground Zero","site_detail_url":"https://comicvine.gamespot.com/the-huntress-12-party-at-ground-zero/4000-76483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32547/","id":32547,"name":"The Vampiric Verses Part 2 of 5: Vampires On Broadway","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-15-the-vampiric-ve/4000-32547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32529/","id":32529,"name":"Still Life With Metal","site_detail_url":"https://comicvine.gamespot.com/quasar-8-still-life-with-metal/4000-32529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32490/","id":32490,"name":"GNort by GNortwest","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-36-gnort-by-gnortwest/4000-32490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32560/","id":32560,"name":"Scourge!","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-64-scourge/4000-32560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140784/","id":140784,"name":"The Show Must Go On...And On... And On... And On","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-special-1-the-show-mu/4000-140784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32539/","id":32539,"name":"Celebrity!","site_detail_url":"https://comicvine.gamespot.com/x-factor-52-celebrity/4000-32539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32559/","id":32559,"name":"A Show of Power","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-87-a-show-of-power/4000-32559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32535/","id":32535,"name":"Dream a Little Dream","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-259-dream-a-little-dream/4000-32535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32480/","id":32480,"name":"The Conflagaration Man part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/doc-savage-18-the-conflagaration-man-part-4-of-4/4000-32480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32481/","id":32481,"name":"Eyeless, I See","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-15-eyeless-i-see/4000-32481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134346/","id":134346,"name":"Elektra Lives Again","site_detail_url":"https://comicvine.gamespot.com/elektra-lives-again-1-elektra-lives-again/4000-134346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32516/","id":32516,"name":"Red Twilight","site_detail_url":"https://comicvine.gamespot.com/captain-america-368-red-twilight/4000-32516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32426/","id":32426,"name":"Dino-Might","site_detail_url":"https://comicvine.gamespot.com/power-pack-54-dino-might/4000-32426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32522/","id":32522,"name":"A Time For Jackals","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-12-a-time-for-jackals/4000-32522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32461/","id":32461,"name":"The Agent of S.H.I.E.L.D. Affair","site_detail_url":"https://comicvine.gamespot.com/damage-control-4-the-agent-of-shield-affair/4000-32461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76482/","id":76482,"name":"Mad Scientists","site_detail_url":"https://comicvine.gamespot.com/the-huntress-11-mad-scientists/4000-76482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32444/","id":32444,"name":"The Vampiric Verses Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-14-the-vampiric-ve/4000-32444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32430/","id":32430,"name":"Terminus Rising","site_detail_url":"https://comicvine.gamespot.com/quasar-7-terminus-rising/4000-32430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32416/","id":32416,"name":"Of Crowns and Horns","site_detail_url":"https://comicvine.gamespot.com/daredevil-277-of-crowns-and-horns/4000-32416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32375/","id":32375,"name":"Speed Kills!","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-463-speed-kills/4000-32375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32388/","id":32388,"name":"Lifeboat","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-35-lifeboat/4000-32388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66650/","id":66650,"name":"Knight after Knight","site_detail_url":"https://comicvine.gamespot.com/checkmate-25-knight-after-knight/4000-66650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32401/","id":32401,"name":"Time Won't Let Me","site_detail_url":"https://comicvine.gamespot.com/time-masters-1-time-wont-let-me/4000-32401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32431/","id":32431,"name":"She-Hulk The Movie","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-12-she-hulk-the-movie/4000-32431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32389/","id":32389,"name":"Family Ties","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-11-family-ties/4000-32389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32437/","id":32437,"name":"Dragon In The Dark","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-61-dragon-in-the-dark/4000-32437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32412/","id":32412,"name":"Power Prey","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-329-power-prey/4000-32412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32448/","id":32448,"name":"Home!","site_detail_url":"https://comicvine.gamespot.com/x-factor-51-home/4000-32448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32435/","id":32435,"name":"Beyond Courage, Must I Strive!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-414-beyond-courage-must-i-strive/4000-32435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32456/","id":32456,"name":"Bang! You’re Dead!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-86-bang-youre-dead/4000-32456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65029/","id":65029,"name":"And Then The X-Men!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-234-and-then-the-x-men/4000-65029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32423/","id":32423,"name":"Strange on the Range","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-49-strange-on-the-range/4000-32423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95268/","id":95268,"name":"The Uncontrollable...X-Force!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-10-th/4000-95268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32428/","id":32428,"name":"Confession","site_detail_url":"https://comicvine.gamespot.com/the-punisher-30-confession/4000-32428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32381/","id":32381,"name":"Over the Wall!","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-14-over-the-wall/4000-32381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113559/","id":113559,"name":"What If the Punisher's Family Had Not Been Killed in Central Park?","site_detail_url":"https://comicvine.gamespot.com/what-if-10-what-if-the-punishers-family-had-not-be/4000-113559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32429/","id":32429,"name":"Headlines!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-15-headlines/4000-32429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336057/","id":336057,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-art-63/4000-336057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211472/","id":211472,"name":"The English Channeler Mystery","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-9-the-english-channeler-mystery/4000-211472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115449/","id":115449,"name":"Into The Darkness","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-63-into-the-darkness/4000-115449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32421/","id":32421,"name":"Distant Thunder","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-11-distant-thunder/4000-32421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32365/","id":32365,"name":"If You Picket, It'll Never Heal!","site_detail_url":"https://comicvine.gamespot.com/damage-control-3-if-you-picket-itll-never-heal/4000-32365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32316/","id":32316,"name":"Thieves Honor","site_detail_url":"https://comicvine.gamespot.com/the-avengers-313-thieves-honor/4000-32316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32356/","id":32356,"name":"The Killing Stroke","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-85-the-killing-stroke/4000-32356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66649/","id":66649,"name":"Peaceful Knights: Part Two","site_detail_url":"https://comicvine.gamespot.com/checkmate-24-peaceful-knights-part-two/4000-66649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76481/","id":76481,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/the-huntress-10-childs-play/4000-76481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251050/","id":251050,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/spider-man-spirits-of-the-earth-1-ogn/4000-251050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32328/","id":32328,"name":"Too Many Dooms","site_detail_url":"https://comicvine.gamespot.com/the-punisher-29-too-many-dooms/4000-32328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32346/","id":32346,"name":"Arkon's New York Adventure","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-13-arkons-new-york/4000-32346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331837/","id":331837,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/predator-concrete-jungle-1-tpb/4000-331837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431166/","id":431166,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-death-of-jean-dewolff-1/4000-431166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32326/","id":32326,"name":"Chinks In The Armor!","site_detail_url":"https://comicvine.gamespot.com/power-pack-53-chinks-in-the-armor/4000-32326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32293/","id":32293,"name":"Club JLI","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-34-club-jli/4000-32293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32322/","id":32322,"name":"Trouble Times 3","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-10-trouble-times-3/4000-32322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32366/","id":32366,"name":"The Adventures of Pseudo-Man!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-11-the-adventures-of-pseu/4000-32366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150637/","id":150637,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/why-i-hate-saturn-1-gn/4000-150637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117805/","id":117805,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-venom-1/4000-117805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32334/","id":32334,"name":"The Fear and the Fury (or The Metal in Men's Souls)","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-160-the-fear-and-the-fu/4000-32334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32338/","id":32338,"name":"The Harder They Fall","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-60-the-harder-they-fall/4000-32338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113265/","id":113265,"name":"Shaw's Gambit","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-328-shaws-gambit/4000-113265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135700/","id":135700,"name":"Homework for Spidey","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-new-mutants-1-homework-for-spid/4000-135700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166761/","id":166761,"name":"The Enslavers","site_detail_url":"https://comicvine.gamespot.com/silver-surfer-the-enslavers-1-the-enslavers/4000-166761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32336/","id":32336,"name":"Within Me Dwells a Monster!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-413-within-me-dwells-a-monster/4000-32336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171667/","id":171667,"name":"The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/adventures-in-reading-starring-the-amazing-spider-/4000-171667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121050/","id":121050,"name":"Green Legs and Gams","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-1-green-le/4000-121050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97162/","id":97162,"name":"Up From The Ashes Rises...Death!","site_detail_url":"https://comicvine.gamespot.com/femforce-30-up-from-the-ashes-risesdeath/4000-97162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189354/","id":189354,"name":"TMNT the movie","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-movie-1-tmnt-the-/4000-189354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186427/","id":186427,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-from-the-ashes-1-tpb/4000-186427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32284/","id":32284,"name":"The Death of Innocence, Part Four: And I Will Rise","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-13-the-death-of-innocence-part-four-an/4000-32284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284414/","id":284414,"name":"Conto alla rovescia","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-94-conto-alla-rovescia/4000-284414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336122/","id":336122,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-atlas-of-the-dc-universe-1/4000-336122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277276/","id":277276,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-action-2/4000-277276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362922/","id":362922,"name":"Die Sage von Ras Al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-klassik-1-die-sage-von-ras-al-ghul/4000-362922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86083/","id":86083,"name":"Spring Special","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-1-spring-special/4000-86083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211647/","id":211647,"name":"Morning: What Goes Up","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-special-1-morning-what-goes-up/4000-211647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431777/","id":431777,"name":"Das Gesetz der Wildnis","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-6-das-gesetz-der/4000-431777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431778/","id":431778,"name":"Später als Du Denkst","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-7-spater-als-du-/4000-431778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149553/","id":149553,"name":"High Heat","site_detail_url":"https://comicvine.gamespot.com/captain-america-goes-to-war-against-drugs-1-high-h/4000-149553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383543/","id":383543,"name":"Managing Materials","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-managing-materials-1-managi/4000-383543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823241/","id":823241,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/bouche-du-diable-1-hc/4000-823241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32051/","id":32051,"name":"No Vault Insurance!","site_detail_url":"https://comicvine.gamespot.com/damage-control-1-no-vault-insurance/4000-32051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32079/","id":32079,"name":"Cruel and Unusual Punisher","site_detail_url":"https://comicvine.gamespot.com/damage-control-2-cruel-and-unusual-punisher/4000-32079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32055/","id":32055,"name":"Has The Whole World Gone Mad?","site_detail_url":"https://comicvine.gamespot.com/the-avengers-312-has-the-whole-world-gone-mad/4000-32055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31993/","id":31993,"name":"The Weakest Point","site_detail_url":"https://comicvine.gamespot.com/the-avengers-311-the-weakest-point/4000-31993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32066/","id":32066,"name":"Change Partners and Dance","site_detail_url":"https://comicvine.gamespot.com/the-punisher-28-change-partners-and-dance/4000-32066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30617/","id":30617,"name":"A Friend In Need...","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-5-a-friend-in-need/4000-30617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32044/","id":32044,"name":"The Quick and The Dead","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-83-the-quick-and-the-dead/4000-32044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32078/","id":32078,"name":"The Swords Edge","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-84-the-swords-edge/4000-32078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218212/","id":218212,"name":"...And Forget...; Descending","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-annual-1-and-forget-descending/4000-218212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76480/","id":76480,"name":"Solitary Confinement","site_detail_url":"https://comicvine.gamespot.com/the-huntress-9-solitary-confinement/4000-76480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95267/","id":95267,"name":"To Battle the Avengers","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-9-to-/4000-95267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140379/","id":140379,"name":"Around the World With the Justice League; The Men I Never Was","site_detail_url":"https://comicvine.gamespot.com/justice-league-annual-3-around-the-world-with-the-/4000-140379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32031/","id":32031,"name":"The Horror of the Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-11-the-horror-of-t/4000-32031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32049/","id":32049,"name":"Some Enchantress Evening","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-12-some-enchantres/4000-32049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32010/","id":32010,"name":"Quantum Theory Made Easy","site_detail_url":"https://comicvine.gamespot.com/quasar-4-quantum-theory-made-easy/4000-32010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32068/","id":32068,"name":"The Absorption Principle","site_detail_url":"https://comicvine.gamespot.com/quasar-5-the-absorption-principle/4000-32068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318871/","id":318871,"name":"Shell Shock","site_detail_url":"https://comicvine.gamespot.com/shell-shock-1-shell-shock/4000-318871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32161/","id":32161,"name":"Flashing on the Past; A Chunk at the JLI!","site_detail_url":"https://comicvine.gamespot.com/the-flash-annual-3-flashing-on-the-past-a-chunk-at/4000-32161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31965/","id":31965,"name":"Nitwits, Knuckleheads & Poozers!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-33-nitwits-knuckleheads-and/4000-31965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-63501/","id":63501,"name":"Strangers in Paradise","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-37-strangers-in-paradise/4000-63501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32001/","id":32001,"name":"Devils In The House","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-8-devils-in-the-house/4000-32001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32061/","id":32061,"name":"Called To Heaven","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-9-called-to-heaven/4000-32061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134694/","id":134694,"name":"Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-ii-3-part-3-of-3/4000-134694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32331/","id":32331,"name":"Mass-market menace!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-10-mass-market-menace/4000-32331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32075/","id":32075,"name":"With Great Power","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-59-with-great-power/4000-32075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32073/","id":32073,"name":"Introducing the New Warriors","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-412-introducing-the-new-warriors/4000-32073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32016/","id":32016,"name":"The Gentleman's Name is Juggernaut","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-411-the-gentleman-s-name-is-jugger/4000-32016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32071/","id":32071,"name":"These Shattered Senses (or A Tale of the Brothers Grimm)","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-159-these-shattered-sen/4000-32071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32053/","id":32053,"name":"Cunning Attractions","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-327-cunning-attractions/4000-32053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65023/","id":65023,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-231/4000-65023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31972/","id":31972,"name":"Bitter Fruit","site_detail_url":"https://comicvine.gamespot.com/the-shadow-strikes-4-bitter-fruit/4000-31972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31991/","id":31991,"name":"Gravity Storm!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-326-gravity-storm/4000-31991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32009/","id":32009,"name":"Contrast in Sin","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-12-contrast-in-sin/4000-32009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32067/","id":32067,"name":"Confession","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-13-confession/4000-32067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32003/","id":32003,"name":"Editori-Al / World's Heroes...Father's Shame!","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-48-editori-al-world-s-heroes-father/4000-32003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211471/","id":211471,"name":"A New Lease on Death","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-8-a-new-lease-on-death/4000-211471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115448/","id":115448,"name":"A Lonely Place of Dying, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-61-a-lonely-place-of-dying-part-4/4000-115448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186269/","id":186269,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-punisher-1/4000-186269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30615/","id":30615,"name":"War Zone: New York","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-annual-5-war-zone-new-york/4000-30615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31906/","id":31906,"name":"Faith","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-81-faith/4000-31906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31940/","id":31940,"name":"The Road to Hel","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-82-the-road-to-hel/4000-31940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31860/","id":31860,"name":"Assault Rivals","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-323-assault-rivals/4000-31860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31916/","id":31916,"name":"Twos Day","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-324-twos-day/4000-31916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31941/","id":31941,"name":"Finale in Red","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-325-finale-in-red/4000-31941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76479/","id":76479,"name":"A Bad Seed","site_detail_url":"https://comicvine.gamespot.com/the-huntress-8-a-bad-seed/4000-76479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47900/","id":47900,"name":"Death at the Hands of Morbius -- the Living Vampire","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-10-death-at-the-ha/4000-47900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31929/","id":31929,"name":"Angles Not Found In Nature","site_detail_url":"https://comicvine.gamespot.com/quasar-3-angles-not-found-in-nature/4000-31929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31880/","id":31880,"name":"I Have No Mouth & I Am Mean","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-7-i-have-no-mouth-i-am-me/4000-31880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31930/","id":31930,"name":"The World's Greatest Detective!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-8-the-worlds-greatest-det/4000-31930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31836/","id":31836,"name":"Life after Death!","site_detail_url":"https://comicvine.gamespot.com/power-of-the-atom-18-life-after-death/4000-31836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134693/","id":134693,"name":"Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-ii-2-part-2-of-3/4000-134693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233592/","id":233592,"name":"The Creep","site_detail_url":"https://comicvine.gamespot.com/the-punisher-15-the-creep/4000-233592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31937/","id":31937,"name":"What If The X-Men Lost Inferno?","site_detail_url":"https://comicvine.gamespot.com/what-if-6-what-if-the-x-men-lost-inferno/4000-31937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30691/","id":30691,"name":"For Crown and Conquest","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-22-for-crown-and-conquest/4000-30691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31874/","id":31874,"name":"The Scream","site_detail_url":"https://comicvine.gamespot.com/nth-man-the-ultimate-ninja-4-the-scream/4000-31874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31938/","id":31938,"name":"Guardian","site_detail_url":"https://comicvine.gamespot.com/x-factor-47-guardian/4000-31938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31824/","id":31824,"name":"The Death of Innocence, Part Two: Anger!","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-11-the-death-of-innocence-part-two-ang/4000-31824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47426/","id":47426,"name":"The Dark Phoenix Saga Part 5","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-39-the-dark-phoenix-saga-part-5/4000-47426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31915/","id":31915,"name":"Shattered Design","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-77-shattered-design/4000-31915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95266/","id":95266,"name":"Pink Elephants on Parade!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-8-pin/4000-95266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31925/","id":31925,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-32/4000-31925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31870/","id":31870,"name":"One Hand in the River","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-6-one-hand-in-the-river/4000-31870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31924/","id":31924,"name":"Zombie Saturday Night","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-7-zombie-saturday-night/4000-31924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30609/","id":30609,"name":"I Must Go Down To The Sea Again","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-4-i-must-go-down-to-the-sea-again/4000-30609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30682/","id":30682,"name":"Avengers Assembled","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-18-avengers-assembled/4000-30682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31724/","id":31724,"name":"Crossed Wires!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-31-crossed-wires/4000-31724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30616/","id":30616,"name":"Here Be Monsters","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-annual-5-here-be-monsters/4000-30616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31756/","id":31756,"name":"Under War","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-321-under-war/4000-31756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31804/","id":31804,"name":"Ceremony","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-322-ceremony/4000-31804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31775/","id":31775,"name":"Triumphs ... and Tragedy","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-12-triumphs-and-tragedy/4000-31775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76478/","id":76478,"name":"Where the Bodies Are Buried","site_detail_url":"https://comicvine.gamespot.com/the-huntress-7-where-the-bodies-are-buried/4000-76478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31720/","id":31720,"name":"The Comfort of a Stranger","site_detail_url":"https://comicvine.gamespot.com/the-flash-31-the-comfort-of-a-stranger/4000-31720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47898/","id":47898,"name":"The Mind-Stunning Climax to The Faust Gambit!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-8-the-mind-stunnin/4000-47898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31733/","id":31733,"name":"Howling Bones","site_detail_url":"https://comicvine.gamespot.com/the-spectre-30-howling-bones/4000-31733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31740/","id":31740,"name":"When Titans Make War...","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-30-when-titans-make-war/4000-31740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233586/","id":233586,"name":"Wild Rose","site_detail_url":"https://comicvine.gamespot.com/the-punisher-12-wild-rose/4000-233586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30666/","id":30666,"name":"Volume 10 Amazing Spider-Man III","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-10-volume-10-amazing-spider-man/4000-30666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31782/","id":31782,"name":"Showdown","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-55-showdown/4000-31782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95265/","id":95265,"name":"Tyrone","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-7-tyr/4000-95265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132314/","id":132314,"name":"Sounds of Silence","site_detail_url":"https://comicvine.gamespot.com/the-nam-35-sounds-of-silence/4000-132314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31773/","id":31773,"name":"Guilt Trip","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-9-guilt-trip/4000-31773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47425/","id":47425,"name":"The Dark Phoenix Saga Part 4","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-38-the-dark-phoenix-saga-part-4/4000-47425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31730/","id":31730,"name":"Citizen Jan; Folk Tales","site_detail_url":"https://comicvine.gamespot.com/secret-origins-45-citizen-jan-folk-tales/4000-31730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466888/","id":466888,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-10/4000-466888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31768/","id":31768,"name":"A Web With Many Strands","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-2-a-web-with-many-strand/4000-31768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115446/","id":115446,"name":"Beest of Burden","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-59-beest-of-burden/4000-115446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31765/","id":31765,"name":"Rockin' at Midnight","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-5-rockin-at-midnight/4000-31765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31755/","id":31755,"name":"Tigers in the Rain","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-75-tigers-in-the-rain/4000-31755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30632/","id":30632,"name":"The Serpent In The Shadow","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-annual-9-the-serpent-in/4000-30632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31698/","id":31698,"name":"License Invoked","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-320-license-invoked/4000-31698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31646/","id":31646,"name":"The Scorpion's Tail Of Woe!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-319-the-scorpions-tail-of-w/4000-31646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31601/","id":31601,"name":"Into the Knight","site_detail_url":"https://comicvine.gamespot.com/checkmate-20-into-the-knight/4000-31601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31664/","id":31664,"name":"Blood Ties","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-11-blood-ties/4000-31664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31608/","id":31608,"name":"Dancing in the Dark","site_detail_url":"https://comicvine.gamespot.com/the-flash-30-dancing-in-the-dark/4000-31608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31663/","id":31663,"name":"Damage","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-8-damage/4000-31663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47897/","id":47897,"name":"My Caterpillar -- My Enemy [The Faust Gambit Part III]","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-7-my-caterpillar-m/4000-47897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134519/","id":134519,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-pachyderms-1/4000-134519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31665/","id":31665,"name":"The Doctor Is In!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-5-the-doctor-is-in/4000-31665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31626/","id":31626,"name":"Ghosts in the Machine Part 6 Doomsday Tuesday","site_detail_url":"https://comicvine.gamespot.com/the-spectre-29-ghosts-in-the-machine-part-6-doomsd/4000-31626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31614/","id":31614,"name":"Teenage Biker Mega-Death!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-30-teenage-biker-mega-death/4000-31614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172734/","id":172734,"name":"King 'Con, Part 4/Deathbringer","site_detail_url":"https://comicvine.gamespot.com/the-transformers-235-king-con-part-4deathbringer/4000-172734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172733/","id":172733,"name":"King 'Con, Part3/Prime's Rib","site_detail_url":"https://comicvine.gamespot.com/the-transformers-234-king-con-part3primes-rib/4000-172733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31659/","id":31659,"name":"The Past Still Haunts","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-1-the-past-still-haunts/4000-31659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31546/","id":31546,"name":"Knight Fight","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual-2-knight-fight/4000-31546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133945/","id":133945,"name":"Forced Play","site_detail_url":"https://comicvine.gamespot.com/gi-joe-special-missions-25-forced-play/4000-133945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76477/","id":76477,"name":"The silence is broken","site_detail_url":"https://comicvine.gamespot.com/the-huntress-6-the-silence-is-broken/4000-76477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31603/","id":31603,"name":"The Death of Innocence, Part One: Denial","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-10-the-death-of-innocence-part-one-den/4000-31603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31645/","id":31645,"name":"Dark Reflections","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-74-dark-reflections/4000-31645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31611/","id":31611,"name":"The \"Y\" Factor","site_detail_url":"https://comicvine.gamespot.com/haywire-13-the-y-factor/4000-31611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466887/","id":466887,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-9/4000-466887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115445/","id":115445,"name":"Controls","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-58-controls/4000-115445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31657/","id":31657,"name":"Wild Midnight","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-4-wild-midnight/4000-31657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31505/","id":31505,"name":"Nabu in My Mind","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-29-nabu-in-my-mind/4000-31505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31579/","id":31579,"name":"Let's Make A Deal","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-78-lets-make-a-deal/4000-31579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31533/","id":31533,"name":"Sting Your Partner!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-318-sting-your-partner/4000-31533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31548/","id":31548,"name":"Losses in Battle","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-10-losses-in-battle/4000-31548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47896/","id":47896,"name":"Introducing: the Dread Daughter of Mephisto [The Faust Gambit Part II]","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-6-introducing-the-/4000-47896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31549/","id":31549,"name":"Tall DisOrder","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-4-tall-disorder/4000-31549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31513/","id":31513,"name":"Master of Dreams, Part 8: The Sound of Her Wings","site_detail_url":"https://comicvine.gamespot.com/the-sandman-8-master-of-dreams-part-8-the-sound-of/4000-31513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31516/","id":31516,"name":"Ghosts in the Machine Part 5: Electrogeddon","site_detail_url":"https://comicvine.gamespot.com/the-spectre-28-ghosts-in-the-machine-part-5-electr/4000-31516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31521/","id":31521,"name":"Worlds Lost and Found","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-28-worlds-lost-and-found/4000-31521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31499/","id":31499,"name":"Casablanca Nights","site_detail_url":"https://comicvine.gamespot.com/the-flash-29-casablanca-nights/4000-31499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233490/","id":233490,"name":"Back To The War","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2-back-to-the-war/4000-233490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31506/","id":31506,"name":"Stagg Party!","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-5-stagg-party/4000-31506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133918/","id":133918,"name":"Ladies' Day","site_detail_url":"https://comicvine.gamespot.com/gi-joe-special-missions-24-ladies-day/4000-133918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65014/","id":65014,"name":"To Smash The Spider!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-226-to-smash-the-spider/4000-65014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31554/","id":31554,"name":"The Light That Failed","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-247-the-light-that-failed/4000-31554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76476/","id":76476,"name":"Everything Changes!","site_detail_url":"https://comicvine.gamespot.com/the-huntress-5-everything-changes/4000-76476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95264/","id":95264,"name":"Agony is Ecstasy","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-6-ago/4000-95264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31494/","id":31494,"name":"Food for Thought","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-9-food-for-thought/4000-31494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31502/","id":31502,"name":"Psychogenesis","site_detail_url":"https://comicvine.gamespot.com/haywire-12-psychogenesis/4000-31502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31545/","id":31545,"name":"Dolphin Dreaming","site_detail_url":"https://comicvine.gamespot.com/power-pack-48-dolphin-dreaming/4000-31545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31520/","id":31520,"name":"The Fifth Man","site_detail_url":"https://comicvine.gamespot.com/the-unknown-soldier-8-the-fifth-man/4000-31520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107609/","id":107609,"name":"Double-X-Cross / Jubilation Day / Serpent in the Garden","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-13-double-x-cross-jubilation-day-serp/4000-107609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31398/","id":31398,"name":"A Date With Density!","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-28-a-date-with-density/4000-31398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31472/","id":31472,"name":"Strange!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-77-strange/4000-31472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31429/","id":31429,"name":"The Sand And The Fury!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-317-the-sand-and-the-fury/4000-31429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31443/","id":31443,"name":"Rendezvous With Destiny","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-9-rendezvous-with-destiny/4000-31443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31442/","id":31442,"name":"Endangered Species","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-7-endangered-species/4000-31442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47895/","id":47895,"name":"The Faust Gambit Part I","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-5-the-faust-gambit/4000-47895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31444/","id":31444,"name":"My Guest-Star,...My Enemy","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-3-my-guest-starmy-enemy/4000-31444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294367/","id":294367,"name":"The Wanderer's Road","site_detail_url":"https://comicvine.gamespot.com/usagi-yojimbo-3-the-wanderers-road/4000-294367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31406/","id":31406,"name":"Master of Dreams, Part 7: Sound and Fury","site_detail_url":"https://comicvine.gamespot.com/the-sandman-7-master-of-dreams-part-7-sound-and-fu/4000-31406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31414/","id":31414,"name":"Meanwhile...","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-27-meanwhile/4000-31414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31387/","id":31387,"name":"The Dead of Knight","site_detail_url":"https://comicvine.gamespot.com/checkmate-19-the-dead-of-knight/4000-31387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172726/","id":172726,"name":"(Double) Deal of the Century!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-228-double-deal-of-the-century/4000-172726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31399/","id":31399,"name":"Bialya Burning!","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-4-bialya-burning/4000-31399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31463/","id":31463,"name":"All that Glitters.....","site_detail_url":"https://comicvine.gamespot.com/x-factor-42-all-that-glitters/4000-31463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31451/","id":31451,"name":"The Day of Other Lights","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-246-the-day-of-other-lights/4000-31451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106879/","id":106879,"name":"Million To One Shot","site_detail_url":"https://comicvine.gamespot.com/the-huntress-4-million-to-one-shot/4000-106879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31390/","id":31390,"name":"Circular Motion","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-8-circular-motion/4000-31390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114140/","id":114140,"name":"","site_detail_url":"https://comicvine.gamespot.com/fred-hembeck-destroys-the-marvel-universe-1/4000-114140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31395/","id":31395,"name":"The Incendiary Man","site_detail_url":"https://comicvine.gamespot.com/haywire-11-the-incendiary-man/4000-31395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31440/","id":31440,"name":"Elsewhere","site_detail_url":"https://comicvine.gamespot.com/power-pack-47-elsewhere/4000-31440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31412/","id":31412,"name":"Gobbledegook","site_detail_url":"https://comicvine.gamespot.com/the-unknown-soldier-7-gobbledegook/4000-31412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115429/","id":115429,"name":"Study in Steel","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-57-study-in-steel/4000-115429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31438/","id":31438,"name":"Hunter's Moon","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-2-hunters-moon/4000-31438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31437/","id":31437,"name":"Yesterday...and Tomorrow","site_detail_url":"https://comicvine.gamespot.com/iron-man-244-yesterdayand-tomorrow/4000-31437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31316/","id":31316,"name":"Dead Meat","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-316-dead-meat/4000-31316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31277/","id":31277,"name":"The Janus Directive, Part 5 - A Hard Day's Knight","site_detail_url":"https://comicvine.gamespot.com/checkmate-17-the-janus-directive-part-5-a-hard-day/4000-31277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31331/","id":31331,"name":"Avengers!","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-8-avengers/4000-31331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127093/","id":127093,"name":"The Time Traveler Returns","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-22-the-time-traveler-/4000-127093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31288/","id":31288,"name":"Mindsnap","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-27-mindsnap/4000-31288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31332/","id":31332,"name":"Attack Of The Terrible Toad Men (or Froggy Came Cavortin')","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-2-attack-of-the-terrible-/4000-31332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31300/","id":31300,"name":"Ghosts in the Machine Part 4 The Million Kill","site_detail_url":"https://comicvine.gamespot.com/the-spectre-27-ghosts-in-the-machine-part-4-the-mi/4000-31300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31307/","id":31307,"name":"Sick Leave","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-26-sick-leave/4000-31307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31284/","id":31284,"name":"Running from Myself","site_detail_url":"https://comicvine.gamespot.com/the-flash-27-running-from-myself/4000-31284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187275/","id":187275,"name":null,"site_detail_url":"https://comicvine.gamespot.com/predator-1/4000-187275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95263/","id":95263,"name":"Cloak is No More!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-5-clo/4000-95263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31353/","id":31353,"name":"Golden Boy!","site_detail_url":"https://comicvine.gamespot.com/x-factor-41-golden-boy/4000-31353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31342/","id":31342,"name":"The Crimelord Of New York","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-51-the-crimelord-of-new-york/4000-31342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31327/","id":31327,"name":"New Moon","site_detail_url":"https://comicvine.gamespot.com/marc-spector-moon-knight-1-new-moon/4000-31327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106877/","id":106877,"name":"Plaster Saints","site_detail_url":"https://comicvine.gamespot.com/the-huntress-3-plaster-saints/4000-106877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31280/","id":31280,"name":"Hark! Vat Light Through Yonder Vindow Breaks?","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-7-hark-vat-light-through-yonder-vindow/4000-31280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31319/","id":31319,"name":"The Cure","site_detail_url":"https://comicvine.gamespot.com/dp7-32-the-cure/4000-31319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118854/","id":118854,"name":"Hearts of Glass","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-7-hearts-of-glass/4000-118854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31285/","id":31285,"name":"Love and Death","site_detail_url":"https://comicvine.gamespot.com/haywire-10-love-and-death/4000-31285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31321/","id":31321,"name":"Cremains","site_detail_url":"https://comicvine.gamespot.com/daredevil-267-cremains/4000-31321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466750/","id":466750,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidey-113/4000-466750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74635/","id":74635,"name":"Transition","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-55-transition/4000-74635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710576/","id":710576,"name":"3 Story Special","site_detail_url":"https://comicvine.gamespot.com/the-phantom-931a-3-story-special/4000-710576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66340/","id":66340,"name":"Excalibur's New York Adventure","site_detail_url":"https://comicvine.gamespot.com/excalibur-8-excaliburs-new-york-adventure/4000-66340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31179/","id":31179,"name":"Slice and Dice! or \"There's Something Very Wrong with the Blue Beetle!\"","site_detail_url":"https://comicvine.gamespot.com/justice-league-america-26-slice-and-dice-or-theres/4000-31179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31207/","id":31207,"name":"A Matter Of Life And Debt","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-315-a-matter-of-life-and-de/4000-31207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31169/","id":31169,"name":"The Janus Directive, Part 1 - Knight Kill","site_detail_url":"https://comicvine.gamespot.com/checkmate-15-the-janus-directive-part-1-knight-kil/4000-31169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31256/","id":31256,"name":"The Janus Directive, Part 3 - Shadow Knights","site_detail_url":"https://comicvine.gamespot.com/checkmate-16-the-janus-directive-part-3-shadow-kni/4000-31256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31220/","id":31220,"name":"Rage and Remembrance","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-7-rage-and-remembrance/4000-31220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31188/","id":31188,"name":"Ghosts in the Machine Part 3 One World Wired","site_detail_url":"https://comicvine.gamespot.com/the-spectre-26-ghosts-in-the-machine-part-3-one-wo/4000-31188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31196/","id":31196,"name":"Armageddon '42; Atom and Evil! Part V","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-25-armageddon-42-atom-and-evil-par/4000-31196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31211/","id":31211,"name":"A Restoration Comedy","site_detail_url":"https://comicvine.gamespot.com/damage-control-1-a-restoration-comedy/4000-31211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31185/","id":31185,"name":"Master of Dreams, Part 5: Passengers","site_detail_url":"https://comicvine.gamespot.com/the-sandman-5-master-of-dreams-part-5-passengers/4000-31185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31233/","id":31233,"name":"Dust to Dust","site_detail_url":"https://comicvine.gamespot.com/x-factor-40-dust-to-dust/4000-31233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133915/","id":133915,"name":"The Lower Depths","site_detail_url":"https://comicvine.gamespot.com/gi-joe-special-missions-21-the-lower-depths/4000-133915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76240/","id":76240,"name":"...Not Fade Away","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-86-not-fade-away/4000-76240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127091/","id":127091,"name":"Return To New York Book 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-21-return-to-new-york/4000-127091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106875/","id":106875,"name":"Uneasy Lies The Head...","site_detail_url":"https://comicvine.gamespot.com/the-huntress-2-uneasy-lies-the-head/4000-106875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31216/","id":31216,"name":"Retribution Affair (Part 2); Panther's Quest (Part 6); X-Mas Tease...; A Christmas Card;","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-18-retribution-affair-part-/4000-31216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318262/","id":318262,"name":"La tela del ragno","site_detail_url":"https://comicvine.gamespot.com/nick-raider-12-la-tela-del-ragno/4000-318262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31209/","id":31209,"name":"The Great Bear","site_detail_url":"https://comicvine.gamespot.com/captain-america-353-the-great-bear/4000-31209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31210/","id":31210,"name":"Cult / Crackdown","site_detail_url":"https://comicvine.gamespot.com/dp7-31-cult-crackdown/4000-31210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31212/","id":31212,"name":"The Devil You Say !","site_detail_url":"https://comicvine.gamespot.com/daredevil-266-the-devil-you-say/4000-31212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118853/","id":118853,"name":"Double Edge","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-6-double-edge/4000-118853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31217/","id":31217,"name":"The Great Goo-Gam Rip-Off!","site_detail_url":"https://comicvine.gamespot.com/power-pack-46-the-great-goo-gam-rip-off/4000-31217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167456/","id":167456,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-parallel-lives-1/4000-167456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31143/","id":31143,"name":"The Right Stuff","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-74-the-right-stuff/4000-31143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31100/","id":31100,"name":"Goblin Morn!","site_detail_url":"https://comicvine.gamespot.com/excalibur-7-goblin-morn/4000-31100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31094/","id":31094,"name":"Down and Out in Forest Hills","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-314-down-and-out-in-forest-/4000-31094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31109/","id":31109,"name":"Dark Destiny","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-6-dark-destiny/4000-31109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31080/","id":31080,"name":"The Axis","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-24-the-axis/4000-31080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111091/","id":111091,"name":"The Return of Savanti Romero","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teenage-mutant-ninja-turtles-7-the-re/4000-111091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31128/","id":31128,"name":"Repossessions","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-25-repossessions/4000-31128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31073/","id":31073,"name":"Ghosts in the Machine Part 2 The Man is Worse","site_detail_url":"https://comicvine.gamespot.com/the-spectre-25-ghosts-in-the-machine-part-2-the-ma/4000-31073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31061/","id":31061,"name":"A Short Drive With Friends","site_detail_url":"https://comicvine.gamespot.com/the-flash-25-a-short-drive-with-friends/4000-31061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31054/","id":31054,"name":"Neighborhood Watch / Knight of the Living Dead / Hot Property","site_detail_url":"https://comicvine.gamespot.com/checkmate-14-neighborhood-watch-knight-of-the-livi/4000-31054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31120/","id":31120,"name":"Ashes to Ashes","site_detail_url":"https://comicvine.gamespot.com/x-factor-39-ashes-to-ashes/4000-31120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127090/","id":127090,"name":"Return To New York Book 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-20-return-to-new-york/4000-127090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106874/","id":106874,"name":"Code of Silence","site_detail_url":"https://comicvine.gamespot.com/the-huntress-1-code-of-silence/4000-106874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31117/","id":31117,"name":"Ashes","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-243-ashes/4000-31117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31108/","id":31108,"name":"Face Off","site_detail_url":"https://comicvine.gamespot.com/the-punisher-18-face-off/4000-31108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31097/","id":31097,"name":"The Tree","site_detail_url":"https://comicvine.gamespot.com/dp7-30-the-tree/4000-31097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118852/","id":118852,"name":"Death Warmed Over","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-5-death-warmed-over/4000-118852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31062/","id":31062,"name":"Past Lives","site_detail_url":"https://comicvine.gamespot.com/haywire-8-past-lives/4000-31062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31096/","id":31096,"name":"Refuge","site_detail_url":"https://comicvine.gamespot.com/captain-america-352-refuge/4000-31096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95262/","id":95262,"name":"Isolation!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-4-iso/4000-95262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31107/","id":31107,"name":"Who Am I This Time?","site_detail_url":"https://comicvine.gamespot.com/power-pack-45-who-am-i-this-time/4000-31107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30989/","id":30989,"name":"Goblin Night","site_detail_url":"https://comicvine.gamespot.com/excalibur-6-goblin-night/4000-30989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113269/","id":113269,"name":"Slithereens","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-313-slithereens/4000-113269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30997/","id":30997,"name":"Invaders!","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-5-invaders/4000-30997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30996/","id":30996,"name":"Sniper","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-4-sniper/4000-30996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30988/","id":30988,"name":"Dragon Circle","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-3-dragon-circle/4000-30988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30972/","id":30972,"name":"Bah, Humbug!","site_detail_url":"https://comicvine.gamespot.com/power-of-the-atom-10-bah-humbug/4000-30972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30987/","id":30987,"name":"Baby Boom!","site_detail_url":"https://comicvine.gamespot.com/daredevil-264-baby-boom/4000-30987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30994/","id":30994,"name":"Revenge Of The Boogeyman (Part 3): What Price Victory?","site_detail_url":"https://comicvine.gamespot.com/power-pack-44-revenge-of-the-boogeyman-part-3-what/4000-30994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30966/","id":30966,"name":"Like a Straw in a Hurricane","site_detail_url":"https://comicvine.gamespot.com/the-flash-24-like-a-straw-in-a-hurricane/4000-30966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30952/","id":30952,"name":"Welcome to Hell; Lady Lost; The Pow! Zap! Wham! Contract; Justice For All; Tommy's Monster; Crack Up, Chapter 6: Unfriendly Takeover!","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-641-welcome-to-hell-lady-lost/4000-30952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31009/","id":31009,"name":"Duet","site_detail_url":"https://comicvine.gamespot.com/x-factor-38-duet/4000-31009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31027/","id":31027,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-73-the-gift/4000-31027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30986/","id":30986,"name":"Deadweight","site_detail_url":"https://comicvine.gamespot.com/dp7-29-deadweight/4000-30986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127089/","id":127089,"name":"Return To New York Book 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-19-return-to-new-york/4000-127089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31006/","id":31006,"name":"Burn","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-242-burn/4000-31006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30995/","id":30995,"name":"Computer War","site_detail_url":"https://comicvine.gamespot.com/the-punisher-17-computer-war/4000-30995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280554/","id":280554,"name":"Morte di una star","site_detail_url":"https://comicvine.gamespot.com/nick-raider-10-morte-di-una-star/4000-280554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31034/","id":31034,"name":"God's Country (Part 6); Panther's Quest (Part 3); The Maiden Phoenix; Desert Tears;","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-15-gods-country-part-6-pant/4000-31034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118850/","id":118850,"name":"The Return of Jack the Ripper","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-4-the-return-of-jack-the-ripper/4000-118850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30967/","id":30967,"name":"White Lotus","site_detail_url":"https://comicvine.gamespot.com/haywire-7-white-lotus/4000-30967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30985/","id":30985,"name":"Changing of the Guard","site_detail_url":"https://comicvine.gamespot.com/captain-america-351-changing-of-the-guard/4000-30985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30913/","id":30913,"name":"The Road Less Travelled / Hostage! / Across a Crowded Room...","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-24-the-road-less-trav/4000-30913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30906/","id":30906,"name":"The Face In The Mirror","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-47-the-face-in-the-mirror/4000-30906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30883/","id":30883,"name":"The Goblin War","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-312-the-goblin-war/4000-30883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30897/","id":30897,"name":"A Fire on the Water","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-4-a-fire-on-the-water/4000-30897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30896/","id":30896,"name":"An Eye For An Eye Chapter 3: A Dish Best Served Cold","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-3-an-eye-for-an-eye-chapt/4000-30896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30863/","id":30863,"name":"Victory Day","site_detail_url":"https://comicvine.gamespot.com/power-of-the-atom-9-victory-day/4000-30863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30866/","id":30866,"name":"Ghosts in the Machine Part 1 Boyz Be Bad","site_detail_url":"https://comicvine.gamespot.com/the-spectre-24-ghosts-in-the-machine-part-1-boyz-b/4000-30866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30855/","id":30855,"name":"The Clipper Returns","site_detail_url":"https://comicvine.gamespot.com/the-flash-23-the-clipper-returns/4000-30855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30893/","id":30893,"name":"God's Country (Part 3); Elements Of Doom (Part 12); Noble Fathers Have Noble Sons; Spring Break","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-12-gods-country-part-3-elem/4000-30893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30908/","id":30908,"name":"A Matter of Honor","site_detail_url":"https://comicvine.gamespot.com/x-factor-37-a-matter-of-honor/4000-30908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30929/","id":30929,"name":"Demon Reign","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-72-demon-reign/4000-30929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95261/","id":95261,"name":"Alienation","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-3-ali/4000-95261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30905/","id":30905,"name":"Fan The Flames","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-241-fan-the-flames/4000-30905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30851/","id":30851,"name":"The Night of Brahma, Part Three: Nightfall","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-4-the-night-of-brahma-part-three-night/4000-30851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280553/","id":280553,"name":"Caccia all'uomo","site_detail_url":"https://comicvine.gamespot.com/nick-raider-9-caccia-alluomo/4000-280553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324937/","id":324937,"name":"Il giorno dei delfini","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-83-il-giorno-dei-delfini/4000-324937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335651/","id":335651,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-art-52/4000-335651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30886/","id":30886,"name":"The Candidate","site_detail_url":"https://comicvine.gamespot.com/dp7-28-the-candidate/4000-30886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118849/","id":118849,"name":"The Case of the Vanishing Vehicle","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-3-the-case-of-the-vanishing-vehicl/4000-118849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30885/","id":30885,"name":"Seeing Red; Resurrection","site_detail_url":"https://comicvine.gamespot.com/captain-america-350-seeing-red-resurrection/4000-30885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30618/","id":30618,"name":"When the Sun Goes Black; Who's Who; Naional-DC Comiquirer","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-annual-5-when-the-sun-goes-black-wh/4000-30618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30773/","id":30773,"name":"Mysteries of the Dead","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-311-mysteries-of-the-dead/4000-30773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30787/","id":30787,"name":"A Prince in New York","site_detail_url":"https://comicvine.gamespot.com/saga-of-the-sub-mariner-3-a-prince-in-new-york/4000-30787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110520/","id":110520,"name":"The Unbearable Lightness of Being!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-2-the-unbearable-l/4000-110520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30785/","id":30785,"name":"Revenge Of The Boogeyman (Part 2): The Bogeyman Must Die","site_detail_url":"https://comicvine.gamespot.com/power-pack-43-revenge-of-the-boogeyman-part-2-the-/4000-30785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132923/","id":132923,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/the-sensational-she-hulk-in-ceremony-1-part-1/4000-132923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153657/","id":153657,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/nick-fury-scorpio-connection-1-gn/4000-153657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30725/","id":30725,"name":"A Death in the Family Chapter 6","site_detail_url":"https://comicvine.gamespot.com/batman-429-a-death-in-the-family-chapter-6/4000-30725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424879/","id":424879,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/monster-masterworks-1-tpb/4000-424879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124345/","id":124345,"name":"Heroes in a Half-Shell!: The Complete Adventure!","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-1-heroes-i/4000-124345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30743/","id":30743,"name":"Eye of the Storm","site_detail_url":"https://comicvine.gamespot.com/power-of-the-atom-8-eye-of-the-storm/4000-30743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30833/","id":30833,"name":"Exiles / No Title / All That Jazz / The Face and the Voice! / Daddy's Girl / Crack Up, Chapter One: Wrong Turn","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-636-exiles-no-title-all-that-/4000-30833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114101/","id":114101,"name":"Total War / Cat and Mouse, Chapter Four / Knock 'Em Dead Part 11 / Breathless! / Rocks and Hard Places, Chapter Nine: The Circle Closes / Coming Down","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-634-total-war-cat-and-mouse-c/4000-114101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30721/","id":30721,"name":"Apocalypse / Knock 'Em Dead Part 10 / Rocks and Hard Places, Chapter Eight: Behind Closed Doors / Blood and Sand / Cat and Mouse, Chapter III / Gremlins at Twelve O'Clock","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-633-apocalypse-knock-em-dead-/4000-30721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30800/","id":30800,"name":"Transformations","site_detail_url":"https://comicvine.gamespot.com/x-factor-36-transformations/4000-30800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30790/","id":30790,"name":"Parable: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-2-parable-part-2/4000-30790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30824/","id":30824,"name":"Limbo","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-71-limbo/4000-30824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57121/","id":57121,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-13/4000-57121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30602/","id":30602,"name":"Pieces of the Puzzle","site_detail_url":"https://comicvine.gamespot.com/secret-origins-annual-3-pieces-of-the-puzzle/4000-30602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139720/","id":139720,"name":null,"site_detail_url":"https://comicvine.gamespot.com/doctor-strange-and-doctor-doom-triumph-and-torment/4000-139720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219397/","id":219397,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-cloak-and-dagger-and-power-pa/4000-219397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30797/","id":30797,"name":"Strike The Match","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-240-strike-the-match/4000-30797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126385/","id":126385,"name":"Return of the Shredder","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-2-return-o/4000-126385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230118/","id":230118,"name":"Double-Sized Issue","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-in-days-of-future-past-1-double-size/4000-230118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128898/","id":128898,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-trial-of-galactus-1-tpb/4000-128898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30786/","id":30786,"name":"To Topple The Kingpin!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-15-to-topple-the-kingpin/4000-30786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30732/","id":30732,"name":"The Night of Brahma, Part Two: Twilight","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-3-the-night-of-brahma-part-two-twiligh/4000-30732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280552/","id":280552,"name":"La valigia insanguinata","site_detail_url":"https://comicvine.gamespot.com/nick-raider-8-la-valigia-insanguinata/4000-280552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348232/","id":348232,"name":"La estatua de la libertad","site_detail_url":"https://comicvine.gamespot.com/coleccion-ole-de-mortadelo-y-filemon-15-la-estatua/4000-348232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424418/","id":424418,"name":"An Alien In New York","site_detail_url":"https://comicvine.gamespot.com/zen-intergalactic-ninja-6-an-alien-in-new-york/4000-424418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118848/","id":118848,"name":"Murder-The Lost Episodes","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-2-murder-the-lost-episodes/4000-118848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431733/","id":431733,"name":"Alptraum-Nächte in Chicago","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-3-alptraum-nacht/4000-431733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431734/","id":431734,"name":"Unter Drogen","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-4-unter-drogen/4000-431734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30735/","id":30735,"name":"Warbonds","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-81-warbonds/4000-30735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466745/","id":466745,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidey-108/4000-466745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220325/","id":220325,"name":"The Dreamwalker","site_detail_url":"https://comicvine.gamespot.com/dreamwalker-1-the-dreamwalker/4000-220325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236786/","id":236786,"name":"City People Notebook","site_detail_url":"https://comicvine.gamespot.com/city-people-notebook-1-city-people-notebook/4000-236786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447871/","id":447871,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-ii-1/4000-447871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30424/","id":30424,"name":"Disaster!!!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-298-disaster/4000-30424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140376/","id":140376,"name":"Hit or Miss!","site_detail_url":"https://comicvine.gamespot.com/justice-league-annual-2-hit-or-miss/4000-140376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30438/","id":30438,"name":"An Eye For An Eye Chapter 2: Tie A Yellow Ribbon","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-2-an-eye-for-an-eye-chapt/4000-30438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30423/","id":30423,"name":"Shrike Force!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-310-shrike-force/4000-30423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148619/","id":148619,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-a-death-in-the-family-1-tpb/4000-148619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30431/","id":30431,"name":"Before the Fall","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-350-before-the-fall/4000-30431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249084/","id":249084,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-the-judas-contract-1-tpb/4000-249084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30435/","id":30435,"name":"Revenge of the Boogyman (Part 1)","site_detail_url":"https://comicvine.gamespot.com/power-pack-42-revenge-of-the-boogyman-part-1/4000-30435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121317/","id":121317,"name":"Heroes in a Half-Shell Part 3","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-3-heroes-i/4000-121317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30398/","id":30398,"name":"Comings and Goings","site_detail_url":"https://comicvine.gamespot.com/power-of-the-atom-5-comings-and-goings/4000-30398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190366/","id":190366,"name":"Ghost, Dead Man, Devil Child...; Fruitful Multiplication","site_detail_url":"https://comicvine.gamespot.com/the-spectre-annual-1-ghost-dead-man-devil-child-fr/4000-190366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30402/","id":30402,"name":"Jenny Dean is Dead","site_detail_url":"https://comicvine.gamespot.com/the-spectre-21-jenny-dean-is-dead/4000-30402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129918/","id":129918,"name":"The Mekanique Paradox; Home Front","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-annual-1-the-mekanique-paradox-hom/4000-129918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30410/","id":30410,"name":"A God Among Men","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-23-a-god-among-men/4000-30410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505180/","id":505180,"name":"Haciendo polvo","site_detail_url":"https://comicvine.gamespot.com/el-castigador-1-haciendo-polvo/4000-505180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505187/","id":505187,"name":"El Reverendo","site_detail_url":"https://comicvine.gamespot.com/el-castigador-4-el-reverendo/4000-505187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525635/","id":525635,"name":"Volume II: 1865-Now","site_detail_url":"https://comicvine.gamespot.com/the-cartoon-guide-to-us-history-2-volume-ii-1865-n/4000-525635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30473/","id":30473,"name":"Who is Wonder Girl? Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-new-titans-50-who-is-wonder-girl-part-1-of-4/4000-30473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30375/","id":30375,"name":"Over the Edge","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-447-over-the-edge/4000-30375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30455/","id":30455,"name":"If It's Tuesday, This Must Be--Apokolips!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-20-if-its-tuesday-thi/4000-30455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30529/","id":30529,"name":"Beyond Phobus / Cat and Mouse, Chapter II / Knock 'Em Dead Part 9 / Holy War / Rocks and Hard Places, Chapter Seven: A Time of Changes / Doing the Horizontal Goosestep","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-632-beyond-phobus-cat-and-mou/4000-30529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30507/","id":30507,"name":"Détente / Knock 'Em Dead Part 8 / Cat and Mouse, Chapter 1 / Point Blank / Rocks and Hard Places, Chapter Six: Old Friends, New Enemies / Kissoff-- That's a Russian Word, Isn't It?","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-631-detente-knock-em-dead-par/4000-30507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30451/","id":30451,"name":"Go To The Orphan Maker","site_detail_url":"https://comicvine.gamespot.com/x-factor-35-go-to-the-orphan-maker/4000-30451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95260/","id":95260,"name":"Straying from the path!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-2-str/4000-95260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30528/","id":30528,"name":"The Americans","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-21-the-americans/4000-30528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30515/","id":30515,"name":"The Battle Joined!","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-80-the-battle-joined/4000-30515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30437/","id":30437,"name":"Social Studies","site_detail_url":"https://comicvine.gamespot.com/the-punisher-14-social-studies/4000-30437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30532/","id":30532,"name":"The Night of Brahma, Part One: Sunset","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-2-the-night-of-brahma-part-one-sunset/4000-30532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280551/","id":280551,"name":"Inchiesta a luci rosse","site_detail_url":"https://comicvine.gamespot.com/nick-raider-7-inchiesta-a-luci-rosse/4000-280551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118808/","id":118808,"name":"The Adventure of the Rogue's Gallery","site_detail_url":"https://comicvine.gamespot.com/the-maze-agency-1-the-adventure-of-the-rogues-gall/4000-118808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30543/","id":30543,"name":"Graveyard Shift","site_detail_url":"https://comicvine.gamespot.com/haywire-5-graveyard-shift/4000-30543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30524/","id":30524,"name":"House of the Secret Enemy","site_detail_url":"https://comicvine.gamespot.com/the-spectre-23-house-of-the-secret-enemy/4000-30524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30487/","id":30487,"name":"Lost, Worthless, and Forgotten...","site_detail_url":"https://comicvine.gamespot.com/the-flash-20-lost-worthless-and-forgotten/4000-30487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30736/","id":30736,"name":"Invaded Lives Part One","site_detail_url":"https://comicvine.gamespot.com/the-flash-21-invaded-lives-part-one/4000-30736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30541/","id":30541,"name":"A Death in the Family Chapter 5","site_detail_url":"https://comicvine.gamespot.com/batman-428-a-death-in-the-family-chapter-5/4000-30541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189636/","id":189636,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-the-punisher-assassins-guild-/4000-189636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30505/","id":30505,"name":"Apokolips... Wow!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-21-apokolips-wow/4000-30505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30711/","id":30711,"name":"Little Murders","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-22-little-murders/4000-30711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30253/","id":30253,"name":"A Thorn in Her Side","site_detail_url":"https://comicvine.gamespot.com/checkmate-8-a-thorn-in-her-side/4000-30253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30316/","id":30316,"name":"An Eye For An Eye Chapter 1: Sunday In The Park","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-1-an-eye-for-an-eye-chapt/4000-30316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30301/","id":30301,"name":"Dread","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-308-dread/4000-30301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30358/","id":30358,"name":"Styx and Stone","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-309-styx-and-stone/4000-30358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30307/","id":30307,"name":"Love Is The Spell, The Spell Is Death!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-1-love-is-the-spel/4000-30307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30274/","id":30274,"name":"The National Snoop Front Page Star!","site_detail_url":"https://comicvine.gamespot.com/the-spectre-20-the-national-snoop-front-page-star/4000-30274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30260/","id":30260,"name":"The Adventures of Speed McGee Part 3","site_detail_url":"https://comicvine.gamespot.com/the-flash-18-the-adventures-of-speed-mcgee-part-3/4000-30260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30337/","id":30337,"name":"No More Mr. Nice-Guy!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-19-no-more-mr-nice-gu/4000-30337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30329/","id":30329,"name":"Death!","site_detail_url":"https://comicvine.gamespot.com/x-factor-34-death/4000-30329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129419/","id":129419,"name":"Ghost Gangsters","site_detail_url":"https://comicvine.gamespot.com/the-real-ghostbusters-4-ghost-gangsters/4000-129419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30244/","id":30244,"name":"Aliens; Race of Scorpions; Homicide; Police Beat","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-24-aliens-race-of-scorpions-ho/4000-30244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30309/","id":30309,"name":"Pride Goeth...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-320-pride-goeth/4000-30309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30314/","id":30314,"name":"Smokeout","site_detail_url":"https://comicvine.gamespot.com/power-pack-41-smokeout/4000-30314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189359/","id":189359,"name":"TMNT Book IV","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-graphic-novel-4-tmnt-/4000-189359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30321/","id":30321,"name":"An Ill Wind...","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-144-an-ill-wind/4000-30321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30128/","id":30128,"name":"Power and Chaos","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-13-power-and-chaos/4000-30128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30173/","id":30173,"name":"Humbugger","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-306-humbugger/4000-30173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30230/","id":30230,"name":"The Thief Who Stole Himself","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-307-the-thief-who-stole-him/4000-30230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30153/","id":30153,"name":"Neptune!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-17-neptune/4000-30153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121316/","id":121316,"name":"Heroes in a Half-Shell Part 2","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-2-heroes-i/4000-121316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30209/","id":30209,"name":"Where No League Has Gone Before! / Raising the Roof!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-18-where-no-league-ha/4000-30209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30141/","id":30141,"name":"The Secret Origin of the Justice Society of America","site_detail_url":"https://comicvine.gamespot.com/secret-origins-31-the-secret-origin-of-the-justice/4000-30141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30143/","id":30143,"name":"Hellbound Creeps","site_detail_url":"https://comicvine.gamespot.com/the-spectre-19-hellbound-creeps/4000-30143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30130/","id":30130,"name":"The Adventures of Speed McGee Part 2","site_detail_url":"https://comicvine.gamespot.com/the-flash-17-the-adventures-of-speed-mcgee-part-2/4000-30130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30231/","id":30231,"name":"Save the Tiger (Part 5); Elements Of Doom (Part 5); Crossing Lines (Part 5); You'll See It When You Believe It;","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-5-save-the-tiger-part-5-ele/4000-30231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29030/","id":29030,"name":"Whom the Gods Would Destroy...","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-annual-4-whom-the-gods-would-d/4000-29030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29036/","id":29036,"name":"Volume 5 Amazing Spider-Man II","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-5-volume-5-amazing-spider-man-i/4000-29036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29037/","id":29037,"name":"Volume 6 The Fantastic Four II","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-6-volume-6-the-fantastic-four-i/4000-29037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30198/","id":30198,"name":"For All The World To See","site_detail_url":"https://comicvine.gamespot.com/x-factor-33-for-all-the-world-to-see/4000-30198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124105/","id":124105,"name":"","site_detail_url":"https://comicvine.gamespot.com/warlock-5-17/4000-124105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95259/","id":95259,"name":"Blind Salvation!","site_detail_url":"https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger-1-bli/4000-95259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280299/","id":280299,"name":"Omicidio al Central Park","site_detail_url":"https://comicvine.gamespot.com/nick-raider-5-omicidio-al-central-park/4000-280299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283634/","id":283634,"name":"La donna immortale","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-79-la-donna-immortale/4000-283634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30191/","id":30191,"name":"Volatile Combination","site_detail_url":"https://comicvine.gamespot.com/strange-tales-19-volatile-combination/4000-30191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30739/","id":30739,"name":"The Alien Alliance","site_detail_url":"https://comicvine.gamespot.com/invasion-1-the-alien-alliance/4000-30739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30968/","id":30968,"name":"World Without Heroes","site_detail_url":"https://comicvine.gamespot.com/invasion-3-world-without-heroes/4000-30968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30527/","id":30527,"name":"...It's Just a Shot Away!","site_detail_url":"https://comicvine.gamespot.com/superman-26-its-just-a-shot-away/4000-30527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258204/","id":258204,"name":"The Runestaff part three","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-3-the-runestaff-part-three/4000-258204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30048/","id":30048,"name":"California Schemin'","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-304-california-schemin/4000-30048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30031/","id":30031,"name":"Leviathan!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-16-leviathan/4000-30031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30054/","id":30054,"name":"I Heard the Jungle Breathe","site_detail_url":"https://comicvine.gamespot.com/daredevil-258-i-heard-the-jungle-breathe/4000-30054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30055/","id":30055,"name":"To Challenge the Negative Zone!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-318-to-challenge-the-negative-zone/4000-30055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30021/","id":30021,"name":"Zombie Transit","site_detail_url":"https://comicvine.gamespot.com/the-spectre-18-zombie-transit/4000-30021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64428/","id":64428,"name":"Drug War Rages","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-22-drug-war-rages/4000-64428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30059/","id":30059,"name":"Fire With Fire","site_detail_url":"https://comicvine.gamespot.com/power-pack-40-fire-with-fire/4000-30059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30008/","id":30008,"name":"The Adventures of Speed McGee Part 1","site_detail_url":"https://comicvine.gamespot.com/the-flash-16-the-adventures-of-speed-mcgee-part-1/4000-30008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30084/","id":30084,"name":"Only the Dead Know Bialya!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-17-only-the-dead-know/4000-30084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30105/","id":30105,"name":"Save the Tiger (Part 3): The Gals; Elements Of Doom (Part 3): Ritual And Belief; Crossing Lines (Part 3): Fish; The Measure Of A Man;","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-3-save-the-tiger-part-3-the/4000-30105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30074/","id":30074,"name":"The Carbon Copy Avengers","site_detail_url":"https://comicvine.gamespot.com/x-factor-32-the-carbon-copy-avengers/4000-30074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30096/","id":30096,"name":"Promise","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-67-promise/4000-30096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30016/","id":30016,"name":"Destiny","site_detail_url":"https://comicvine.gamespot.com/power-girl-4-destiny/4000-30016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280298/","id":280298,"name":"Chinatown","site_detail_url":"https://comicvine.gamespot.com/nick-raider-4-chinatown/4000-280298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283632/","id":283632,"name":"Il ragazzo prodigio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-78-il-ragazzo-prodigio/4000-283632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134670/","id":134670,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-real-ghostbusters-2/4000-134670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30063/","id":30063,"name":"The Sinking of Los Angeles/Token Sacrifice","site_detail_url":"https://comicvine.gamespot.com/solo-avengers-10-the-sinking-of-los-angelestoken-s/4000-30063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364825/","id":364825,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-annual-1989/4000-364825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30067/","id":30067,"name":"Descent Into Darkness","site_detail_url":"https://comicvine.gamespot.com/strange-tales-18-descent-into-darkness/4000-30067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30057/","id":30057,"name":"Fallout!","site_detail_url":"https://comicvine.gamespot.com/iron-man-234-fallout/4000-30057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30005/","id":30005,"name":"The Masquerade is Over","site_detail_url":"https://comicvine.gamespot.com/crimson-avenger-4-the-masquerade-is-over/4000-30005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66335/","id":66335,"name":"Unnatural Selection","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-3-unnatural-selection/4000-66335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29920/","id":29920,"name":"The Arson Fiend and... the Spectre!; The Maniac and... the Spectre!; The Voodoo Hag of Doom!; The Demon Within!","site_detail_url":"https://comicvine.gamespot.com/wrath-of-the-spectre-4-the-arson-fiend-and-the-spe/4000-29920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29936/","id":29936,"name":"Dock Savage","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-303-dock-savage/4000-29936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29948/","id":29948,"name":"The Creep","site_detail_url":"https://comicvine.gamespot.com/the-punisher-10-the-creep/4000-29948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111090/","id":111090,"name":"Leatherhead","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teenage-mutant-ninja-turtles-6-leathe/4000-111090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121306/","id":121306,"name":"Heroes in a Half-Shell Part 1","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-adventures-1-heroes-i/4000-121306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29910/","id":29910,"name":"The Secret Origin of The Atom; \"Kind of,\" The Secret Origin of, Red Tornado / The Secret Origin of Mr. America Alias The Americommando","site_detail_url":"https://comicvine.gamespot.com/secret-origins-29-the-secret-origin-of-the-atom-ki/4000-29910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29943/","id":29943,"name":"Whys and Wherefores","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-346-whys-and-wherefores/4000-29943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29940/","id":29940,"name":"The Bully","site_detail_url":"https://comicvine.gamespot.com/daredevil-257-the-bully/4000-29940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29913/","id":29913,"name":"Every Cop a Criminal","site_detail_url":"https://comicvine.gamespot.com/the-spectre-17-every-cop-a-criminal/4000-29913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29921/","id":29921,"name":"...And Deathbolt Makes Three!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-15-and-deathbolt-makes-three/4000-29921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29896/","id":29896,"name":"Hitting Bottom","site_detail_url":"https://comicvine.gamespot.com/the-flash-15-hitting-bottom/4000-29896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29964/","id":29964,"name":"Bialya, My Bialya","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-16-bialya-my-bialya/4000-29964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29987/","id":29987,"name":"Freaks! / That Was No Lady... / Fatal Distraction Chapter One: Night Patrol / Fatal Flaw? / Chapter Three: Tracks of a Killer! / Bitter Fruit Part 7","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-615-freaks-that-was-no-lady-f/4000-29987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29985/","id":29985,"name":"Head Trip / The Cheshire Contract! / Can't Judge A Book... / Wicked Business! / The Tin Roof Club Part 3 / Bitter Fruit Part 5","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-613-head-trip-the-cheshire-co/4000-29985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29957/","id":29957,"name":"Kiss Off!","site_detail_url":"https://comicvine.gamespot.com/x-factor-31-kiss-off/4000-29957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29952/","id":29952,"name":"Desperate Straits / this Old Man Came Rogging Home","site_detail_url":"https://comicvine.gamespot.com/strange-tales-17-desperate-straits-this-old-man-ca/4000-29952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29907/","id":29907,"name":"Heritage","site_detail_url":"https://comicvine.gamespot.com/power-girl-3-heritage/4000-29907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48866/","id":48866,"name":"Accounts Overdrawn--Checks Returned for Lack of Funds; Bower Brats Meet Clunk and Dagnabbit; When Titans Bunch!; Secret Wars III","site_detail_url":"https://comicvine.gamespot.com/what-the--1-accounts-overdrawn-checks-returned-for/4000-48866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280297/","id":280297,"name":"Lo strangolatore di Manhattan","site_detail_url":"https://comicvine.gamespot.com/nick-raider-3-lo-strangolatore-di-manhattan/4000-280297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57795/","id":57795,"name":"Crusade","site_detail_url":"https://comicvine.gamespot.com/wolfpack-1-crusade/4000-57795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29946/","id":29946,"name":"Lights, Camera, Action!","site_detail_url":"https://comicvine.gamespot.com/power-pack-39-lights-camera-action/4000-29946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134669/","id":134669,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-real-ghostbusters-1/4000-134669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29947/","id":29947,"name":"Evolutionary Jihad","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual-1-evolutionary-jihad/4000-29947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29935/","id":29935,"name":"Inquisition!","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-61-inquisition/4000-29935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29945/","id":29945,"name":"Editori-Al / The Cat's Tale / #*@%&ç!","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-39-editori-al-the-cat-s-tale-c/4000-29945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258203/","id":258203,"name":"The Runestaff part two","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-2-the-runestaff-part-two/4000-258203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29801/","id":29801,"name":"The Human Bombs and... the Spectre; The Spectre Haunts the Museum of Fear; The Voice That Doomed... the Spectre; The Second Death of the... Spectre","site_detail_url":"https://comicvine.gamespot.com/wrath-of-the-spectre-3-the-human-bombs-and-the-spe/4000-29801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29819/","id":29819,"name":"Chaos in Kansas","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-302-chaos-in-kansas/4000-29819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29787/","id":29787,"name":"A Princess' Story; The Secret Origin of Midnight","site_detail_url":"https://comicvine.gamespot.com/secret-origins-28-a-princess-story-the-secret-orig/4000-29787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29852/","id":29852,"name":"Gnort and South!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-15-gnort-and-south/4000-29852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29791/","id":29791,"name":"Secret Weapon","site_detail_url":"https://comicvine.gamespot.com/the-spectre-16-secret-weapon/4000-29791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29802/","id":29802,"name":"Hell Hath No Fury...!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-14-hell-hath-no-fury/4000-29802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29774/","id":29774,"name":"Wipe Out","site_detail_url":"https://comicvine.gamespot.com/the-flash-14-wipe-out/4000-29774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29780/","id":29780,"name":"Visible Objects","site_detail_url":"https://comicvine.gamespot.com/manhunter-1-visible-objects/4000-29780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29842/","id":29842,"name":"Kiss Of Death","site_detail_url":"https://comicvine.gamespot.com/x-factor-30-kiss-of-death/4000-29842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57118/","id":57118,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-10/4000-57118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29835/","id":29835,"name":"Bitter Obligations Like An Unmade Bed / Go Ask Alice","site_detail_url":"https://comicvine.gamespot.com/strange-tales-16-bitter-obligations-like-an-unmade/4000-29835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29785/","id":29785,"name":"Tapestry","site_detail_url":"https://comicvine.gamespot.com/power-girl-2-tapestry/4000-29785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264598/","id":264598,"name":"Il mistero della mano tagliata","site_detail_url":"https://comicvine.gamespot.com/nick-raider-2-il-mistero-della-mano-tagliata/4000-264598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29829/","id":29829,"name":"Little Bo-Peep Has Lost Her Sheep","site_detail_url":"https://comicvine.gamespot.com/power-pack-38-little-bo-peep-has-lost-her-sheep/4000-29829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29705/","id":29705,"name":"Temptation","site_detail_url":"https://comicvine.gamespot.com/daredevil-255-temptation/4000-29705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29685/","id":29685,"name":"The Nightmare Dummies and... the Spectre; The Man Who Stalked the Spectre; The Gasmen and... the Spectre","site_detail_url":"https://comicvine.gamespot.com/wrath-of-the-spectre-2-the-nightmare-dummies-and-t/4000-29685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29701/","id":29701,"name":"The Sable Gauntlet!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-301-the-sable-gauntlet/4000-29701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29669/","id":29669,"name":"A Symphony Of Shadows The Secret Origin of Zatara and Zatanna","site_detail_url":"https://comicvine.gamespot.com/secret-origins-27-a-symphony-of-shadows-the-secret/4000-29669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29726/","id":29726,"name":"Shop ...or Die","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-14-shop-or-die/4000-29726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29674/","id":29674,"name":"The Twenty Third Trump","site_detail_url":"https://comicvine.gamespot.com/the-spectre-15-the-twenty-third-trump/4000-29674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29686/","id":29686,"name":"Deadlier than the Male...?","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-13-deadlier-than-the-male/4000-29686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29657/","id":29657,"name":"Savage Vandalism","site_detail_url":"https://comicvine.gamespot.com/the-flash-13-savage-vandalism/4000-29657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29654/","id":29654,"name":"The Dark Cross Conspiracy, Chapter One: You Go To My Head...","site_detail_url":"https://comicvine.gamespot.com/crimson-avenger-1-the-dark-cross-conspiracy-chapte/4000-29654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29723/","id":29723,"name":"Fame!","site_detail_url":"https://comicvine.gamespot.com/x-factor-29-fame/4000-29723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29667/","id":29667,"name":"Threads!","site_detail_url":"https://comicvine.gamespot.com/power-girl-1-threads/4000-29667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29716/","id":29716,"name":"Gathering Dusk / Interlude #1 and #2 / Cloak & Mayhem / On Having No Head","site_detail_url":"https://comicvine.gamespot.com/strange-tales-15-gathering-dusk-interlude-1-and-2-/4000-29716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191041/","id":191041,"name":"La vittima senza nome","site_detail_url":"https://comicvine.gamespot.com/nick-raider-1-la-vittima-senza-nome/4000-191041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29710/","id":29710,"name":"EditoriGal / Whatever Happened to the Podunk Slam?","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-38-editorigal-whatever-happened-to-/4000-29710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258202/","id":258202,"name":"The Runestaff part one","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-runestaff-1-the-runestaff-part-one/4000-258202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29709/","id":29709,"name":"Reborn Again","site_detail_url":"https://comicvine.gamespot.com/iron-man-231-reborn-again/4000-29709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29533/","id":29533,"name":"A House Divided!","site_detail_url":"https://comicvine.gamespot.com/checkmate-2-a-house-divided/4000-29533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29563/","id":29563,"name":"The Wrath of... the Spectre; The Anguish of... the Spectre; The Swami and... the Spectre; Adventurers' Club...","site_detail_url":"https://comicvine.gamespot.com/wrath-of-the-spectre-1-the-wrath-of-the-spectre-th/4000-29563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111089/","id":111089,"name":"Complete Carnage and Radical","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teenage-mutant-ninja-turtles-5-comple/4000-111089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29547/","id":29547,"name":"The Secret Origin of Black Lightning; The Secret Origin Of Miss America","site_detail_url":"https://comicvine.gamespot.com/secret-origins-26-the-secret-origin-of-black-light/4000-29547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29551/","id":29551,"name":"Major Arcana Part 3 Seeing Smoke","site_detail_url":"https://comicvine.gamespot.com/the-spectre-14-major-arcana-part-3-seeing-smoke/4000-29551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29564/","id":29564,"name":"M is for \"Monster\"!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-12-m-is-for-monster/4000-29564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29542/","id":29542,"name":"Fever Dream","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter-1-fever-dream/4000-29542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29530/","id":29530,"name":"Iron Dreams & Bloody Murder","site_detail_url":"https://comicvine.gamespot.com/blackhawk-3-iron-dreams-bloody-murder/4000-29530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29616/","id":29616,"name":"Collision Course","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-13-collision-course/4000-29616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29536/","id":29536,"name":"Velocity 9 / Light at the End of the Tunnel","site_detail_url":"https://comicvine.gamespot.com/the-flash-12-velocity-9-light-at-the-end-of-the-tu/4000-29536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29607/","id":29607,"name":"Countdown","site_detail_url":"https://comicvine.gamespot.com/x-factor-28-countdown/4000-29607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57117/","id":57117,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-9/4000-57117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29600/","id":29600,"name":"Disorderly Conduct / Apogee","site_detail_url":"https://comicvine.gamespot.com/strange-tales-14-disorderly-conduct-apogee/4000-29600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272261/","id":272261,"name":"Lettres a Satan","site_detail_url":"https://comicvine.gamespot.com/soda-2-lettres-a-satan/4000-272261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29594/","id":29594,"name":"The Ghost of Wall Street","site_detail_url":"https://comicvine.gamespot.com/the-punisher-8-the-ghost-of-wall-street/4000-29594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29593/","id":29593,"name":"Seeing the Light!","site_detail_url":"https://comicvine.gamespot.com/power-pack-37-seeing-the-light/4000-29593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134238/","id":134238,"name":"Cloak & Dagger: Predator & Prey","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-34-cloak-dagger-predator-prey/4000-134238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13651/","id":13651,"name":"Opening Gambit!","site_detail_url":"https://comicvine.gamespot.com/checkmate-1-opening-gambit/4000-13651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29476/","id":29476,"name":"Survival of the Hittest","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-299-survival-of-the-hittest/4000-29476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29502/","id":29502,"name":"Who is Maxwell Lord?","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-12-who-is-maxwell-lor/4000-29502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29446/","id":29446,"name":"Major Arcana: Two Jimmy's Wings","site_detail_url":"https://comicvine.gamespot.com/the-spectre-13-major-arcana-two-jimmys-wings/4000-29446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29432/","id":29432,"name":"Chunk Barges In","site_detail_url":"https://comicvine.gamespot.com/the-flash-11-chunk-barges-in/4000-29432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29438/","id":29438,"name":"Child of Blood!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-42-child-of-blood/4000-29438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29497/","id":29497,"name":"Gifts","site_detail_url":"https://comicvine.gamespot.com/x-factor-27-gifts/4000-29497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29491/","id":29491,"name":"Disorderly Conduct / Ascent Into Hell","site_detail_url":"https://comicvine.gamespot.com/strange-tales-13-disorderly-conduct-ascent-into-he/4000-29491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29493/","id":29493,"name":"The Hero and The Hammer","site_detail_url":"https://comicvine.gamespot.com/thor-390-the-hero-and-the-hammer/4000-29493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29486/","id":29486,"name":"The Twelfth","site_detail_url":"https://comicvine.gamespot.com/power-pack-36-the-twelfth/4000-29486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29365/","id":29365,"name":"Chance Encounter","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-298-chance-encounter/4000-29365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29371/","id":29371,"name":"The Turning Point!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-312-the-turning-point/4000-29371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29392/","id":29392,"name":"Constructions!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-11-constructions/4000-29392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29331/","id":29331,"name":"Major Arcana Story One Willie & Fingers","site_detail_url":"https://comicvine.gamespot.com/the-spectre-12-major-arcana-story-one-willie-finge/4000-29331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29342/","id":29342,"name":"Like Father...","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-10-like-father/4000-29342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258209/","id":258209,"name":"The Sward of the Dawn Part Four","site_detail_url":"https://comicvine.gamespot.com/hawkmoon-the-sword-of-the-dawn-4-the-sward-of-the-/4000-258209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91523/","id":91523,"name":"The Big Apple","site_detail_url":"https://comicvine.gamespot.com/robotech-the-new-generation-22-the-big-apple/4000-91523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29387/","id":29387,"name":"Casualities","site_detail_url":"https://comicvine.gamespot.com/x-factor-26-casualities/4000-29387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29405/","id":29405,"name":"Our Way!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-61-our-way/4000-29405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57116/","id":57116,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-8/4000-57116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29374/","id":29374,"name":"Wild Rose","site_detail_url":"https://comicvine.gamespot.com/the-punisher-7-wild-rose/4000-29374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29380/","id":29380,"name":"Blue Skies / Make Thee Mightier Yet","site_detail_url":"https://comicvine.gamespot.com/strange-tales-12-blue-skies-make-thee-mightier-yet/4000-29380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270425/","id":270425,"name":"Cagliostro!","site_detail_url":"https://comicvine.gamespot.com/dylan-dog-18-cagliostro/4000-270425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29322/","id":29322,"name":"Hidden Agenda","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-41-hidden-agenda/4000-29322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29206/","id":29206,"name":"The Chunk","site_detail_url":"https://comicvine.gamespot.com/the-flash-9-the-chunk/4000-29206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29256/","id":29256,"name":"I'll Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-297-ill-take-manhattan/4000-29256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29261/","id":29261,"name":"I Want To Die!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-311-i-want-to-die/4000-29261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29223/","id":29223,"name":"Housewarming Party","site_detail_url":"https://comicvine.gamespot.com/the-spectre-11-housewarming-party/4000-29223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29235/","id":29235,"name":"...You have nothing to lose but your Souls!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-9-you-have-nothing-to-lose-but-you/4000-29235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29209/","id":29209,"name":"A Feast of Friends","site_detail_url":"https://comicvine.gamespot.com/hellblazer-2-a-feast-of-friends/4000-29209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29276/","id":29276,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/x-factor-25-judgment-day/4000-29276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29263/","id":29263,"name":"The Last Mandroid","site_detail_url":"https://comicvine.gamespot.com/iron-man-227-the-last-mandroid/4000-29263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29270/","id":29270,"name":"Mr. Jip, Usurper Of Souls / This Earth, This Realm","site_detail_url":"https://comicvine.gamespot.com/strange-tales-11-mr-jip-usurper-of-souls-this-eart/4000-29270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29203/","id":29203,"name":"Secret of the Twin Towers","site_detail_url":"https://comicvine.gamespot.com/doc-savage-4-secret-of-the-twin-towers/4000-29203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281820/","id":281820,"name":"Morte al varietà","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-71-morte-al-varieta/4000-281820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29301/","id":29301,"name":"The Rising and Advancing of Ten Spirits","site_detail_url":"https://comicvine.gamespot.com/millennium-8-the-rising-and-advancing-of-ten-spiri/4000-29301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66589/","id":66589,"name":"Once In A Millennium","site_detail_url":"https://comicvine.gamespot.com/teen-titans-spotlight-19-once-in-a-millennium/4000-66589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29264/","id":29264,"name":"Life or Death!","site_detail_url":"https://comicvine.gamespot.com/power-pack-35-life-or-death/4000-29264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64976/","id":64976,"name":"Sword of the She-Devil!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-208-sword-of-the-she-devil/4000-64976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64973/","id":64973,"name":"Fire in the Night!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-207-fire-in-the-night/4000-64973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29168/","id":29168,"name":"Seeing Red / Brief Encounter","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-9-seeing-red-brief-en/4000-29168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29137/","id":29137,"name":"Force of Arms","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-296-force-of-arms/4000-29137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29143/","id":29143,"name":"Things To Come!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-310-things-to-come/4000-29143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29114/","id":29114,"name":"Manhunters of the World, Unite...","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-8-manhunters-of-the-world-unite/4000-29114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137259/","id":137259,"name":"Destro: Down and Out! Part Two; In Search of Candy Part Two; Codename: Combat Colin","site_detail_url":"https://comicvine.gamespot.com/action-force-45-destro-down-and-out-part-two-in-se/4000-137259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29161/","id":29161,"name":"Masks","site_detail_url":"https://comicvine.gamespot.com/x-factor-24-masks/4000-29161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29089/","id":29089,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/hellblazer-1-hunger/4000-29089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57115/","id":57115,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-7/4000-57115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29058/","id":29058,"name":"The Thing From the Egg","site_detail_url":"https://comicvine.gamespot.com/femforce-11-the-thing-from-the-egg/4000-29058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97145/","id":97145,"name":"The Egg and I","site_detail_url":"https://comicvine.gamespot.com/femforce-12-the-egg-and-i/4000-97145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29154/","id":29154,"name":"The Felonious Feline / Hierarchies","site_detail_url":"https://comicvine.gamespot.com/strange-tales-10-the-felonious-feline-hierarchies/4000-29154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29185/","id":29185,"name":"Forth","site_detail_url":"https://comicvine.gamespot.com/millennium-4-forth/4000-29185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214391/","id":214391,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/daredevil-and-the-punisher-childs-play-1-childs-pl/4000-214391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281819/","id":281819,"name":"Minaccia dagli abissi","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-70-minaccia-dagli-abissi/4000-281819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385586/","id":385586,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-york-new-york-1/4000-385586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431731/","id":431731,"name":"Geheimstufe 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-1-geheimstufe-1/4000-431731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431732/","id":431732,"name":"Das Schlangen-Imperium Schlägt Zurück","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-2-das-schlangen-/4000-431732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29147/","id":29147,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/power-pack-34-childs-play/4000-29147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133368/","id":133368,"name":"Papa's Got a Brand New Bag","site_detail_url":"https://comicvine.gamespot.com/faust-love-of-the-damned-1-papas-got-a-brand-new-b/4000-133368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29142/","id":29142,"name":"Boom","site_detail_url":"https://comicvine.gamespot.com/daredevil-250-boom/4000-29142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137517/","id":137517,"name":"Germ Warfare","site_detail_url":"https://comicvine.gamespot.com/justice-league-annual-1-germ-warfare/4000-137517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106838/","id":106838,"name":"Moving Day / Old News","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-8-moving-day-old-news/4000-106838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237730/","id":237730,"name":"The Quest For Peace","site_detail_url":"https://comicvine.gamespot.com/superman-iv-the-quest-for-peace-1-the-quest-for-pe/4000-237730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28879/","id":28879,"name":"Requiem for a Gunfighter; The Secret Origin of the Black Condor","site_detail_url":"https://comicvine.gamespot.com/secret-origins-21-requiem-for-a-gunfighter-the-sec/4000-28879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28923/","id":28923,"name":"Kiss & Kill","site_detail_url":"https://comicvine.gamespot.com/daredevil-249-kiss-kill/4000-28923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28885/","id":28885,"name":"Drowning in a Dry Sea","site_detail_url":"https://comicvine.gamespot.com/the-spectre-9-drowning-in-a-dry-sea/4000-28885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28897/","id":28897,"name":"Somewhere in This Favored Land...","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-7-somewhere-in-this-favored-land/4000-28897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356878/","id":356878,"name":"Abenteur in New York","site_detail_url":"https://comicvine.gamespot.com/spirou-fantasio-37-abenteur-in-new-york/4000-356878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64971/","id":64971,"name":"When Walks the Living Monolith!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-206-when-walks-the-living-monolith/4000-64971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116347/","id":116347,"name":"The Ghost of Superman","site_detail_url":"https://comicvine.gamespot.com/action-comics-595-the-ghost-of-superman/4000-116347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28938/","id":28938,"name":"You Say You Want Some Evolution","site_detail_url":"https://comicvine.gamespot.com/x-factor-23-you-say-you-want-some-evolution/4000-28938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28932/","id":28932,"name":"The Luminous Lady / African Genesis","site_detail_url":"https://comicvine.gamespot.com/strange-tales-9-the-luminous-lady-african-genesis/4000-28932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155422/","id":155422,"name":"TMNT Book III","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-graphic-novel-3-tmnt-/4000-155422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28748/","id":28748,"name":"Super Nature","site_detail_url":"https://comicvine.gamespot.com/the-flash-6-super-nature/4000-28748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94594/","id":94594,"name":"Grownups and Children","site_detail_url":"https://comicvine.gamespot.com/fallen-angels-8-grownups-and-children/4000-94594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28801/","id":28801,"name":"Fasaud!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-308-fasaud/4000-28801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28762/","id":28762,"name":"Armed Against Evil","site_detail_url":"https://comicvine.gamespot.com/the-spectre-8-armed-against-evil/4000-28762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28772/","id":28772,"name":"The War Within!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-6-the-war-within/4000-28772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95182/","id":95182,"name":"BOOK XXIV:","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28828/","id":28828,"name":"Justice League... International!","site_detail_url":"https://comicvine.gamespot.com/justice-league-international-7-justice-league-inte/4000-28828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27558/","id":27558,"name":"Volume 1 Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-1-volume-1-amazing-spider-man/4000-27558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27562/","id":27562,"name":"Volume 2 The Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-2-volume-2-the-fantastic-four/4000-27562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28821/","id":28821,"name":"If I Should Die.......","site_detail_url":"https://comicvine.gamespot.com/x-factor-22-if-i-should-die/4000-28821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28842/","id":28842,"name":"Birds of a Feather","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-57-birds-of-a-feather/4000-28842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166072/","id":166072,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-6/4000-166072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184078/","id":184078,"name":"Watchmen","site_detail_url":"https://comicvine.gamespot.com/watchmen-1-watchmen/4000-184078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28813/","id":28813,"name":"The Black Tear-Drop / If You Meet the Buddha on the Road, Kill Him","site_detail_url":"https://comicvine.gamespot.com/strange-tales-8-the-black-tear-drop-if-you-meet-th/4000-28813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66586/","id":66586,"name":"Second Thoughts","site_detail_url":"https://comicvine.gamespot.com/teen-titans-spotlight-16-second-thoughts/4000-66586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28745/","id":28745,"name":"Into the Silver Pyramid","site_detail_url":"https://comicvine.gamespot.com/doc-savage-1-into-the-silver-pyramid/4000-28745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28817/","id":28817,"name":"Omens & Portents","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-223-omens-portents/4000-28817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28807/","id":28807,"name":"The Rev","site_detail_url":"https://comicvine.gamespot.com/the-punisher-4-the-rev/4000-28807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28805/","id":28805,"name":"Ascending","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-132-ascending/4000-28805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28806/","id":28806,"name":"Special Effects!","site_detail_url":"https://comicvine.gamespot.com/power-pack-33-special-effects/4000-28806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28631/","id":28631,"name":"Speed McGee","site_detail_url":"https://comicvine.gamespot.com/the-flash-5-speed-mcgee/4000-28631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28628/","id":28628,"name":"The Doom Patrol!","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-1-the-doom-patrol/4000-28628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111087/","id":111087,"name":"All Hallow's Thieves","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teenage-mutant-ninja-turtles-3-all-ha/4000-111087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28629/","id":28629,"name":"Incarnations","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-4-incarnations/4000-28629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28709/","id":28709,"name":"Massacre in Gray","site_detail_url":"https://comicvine.gamespot.com/justice-league-6-massacre-in-gray/4000-28709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28647/","id":28647,"name":"Pieces of Zatanna","site_detail_url":"https://comicvine.gamespot.com/the-spectre-7-pieces-of-zatanna/4000-28647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28642/","id":28642,"name":"The Heart of a Stranger","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-1-the-heart-of-a-stranger/4000-28642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95181/","id":95181,"name":"BOOK XXIII:","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66334/","id":66334,"name":"The Man In The Moon","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-2-the-man-in-the-moon/4000-66334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28703/","id":28703,"name":"For Every Action...","site_detail_url":"https://comicvine.gamespot.com/x-factor-21-for-every-action/4000-28703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28724/","id":28724,"name":"Scavenger Hunt!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-56-scavenger-hunt/4000-28724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133724/","id":133724,"name":"The Old Switcheroo","site_detail_url":"https://comicvine.gamespot.com/gi-joe-special-missions-7-the-old-switcheroo/4000-133724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28655/","id":28655,"name":"A Stronger Loving World","site_detail_url":"https://comicvine.gamespot.com/watchmen-12-a-stronger-loving-world/4000-28655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28691/","id":28691,"name":"Descent","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-131-descent/4000-28691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28697/","id":28697,"name":"Doorway To Nightmare!; More Light","site_detail_url":"https://comicvine.gamespot.com/strange-tales-7-doorway-to-nightmare-more-light/4000-28697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66585/","id":66585,"name":"Leaving Home","site_detail_url":"https://comicvine.gamespot.com/teen-titans-spotlight-15-leaving-home/4000-66585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28622/","id":28622,"name":"The Masque; Forgotten; Roma; Dinosaur Tales","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-11-the-masque-forgotten-roma-d/4000-28622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28686/","id":28686,"name":"The Backwards Man","site_detail_url":"https://comicvine.gamespot.com/daredevil-247-the-backwards-man/4000-28686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28692/","id":28692,"name":"Who's The Villain?","site_detail_url":"https://comicvine.gamespot.com/power-pack-32-whos-the-villain/4000-28692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28639/","id":28639,"name":"Beauty and the Wildebeest!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-36-beauty-and-the-wildebeest/4000-28639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28682/","id":28682,"name":"Part 2: Crawling","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-293-part-2-crawling/4000-28682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27570/","id":27570,"name":"Anything You Can Do...","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-annual-3-anything-you-can-do/4000-27570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183337/","id":183337,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ronin-1-tpb/4000-183337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94592/","id":94592,"name":"The Coconut Grove","site_detail_url":"https://comicvine.gamespot.com/fallen-angels-6-the-coconut-grove/4000-94592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28579/","id":28579,"name":"The Wages of Sin","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-30-the-wages-of-sin/4000-28579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28560/","id":28560,"name":"Growing Pains","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-292-growing-pains/4000-28560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28528/","id":28528,"name":"Murder of My Mystery","site_detail_url":"https://comicvine.gamespot.com/the-spectre-6-murder-of-my-mystery/4000-28528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28514/","id":28514,"name":"Kill the Kilg%re!","site_detail_url":"https://comicvine.gamespot.com/the-flash-4-kill-the-kilgre/4000-28514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28537/","id":28537,"name":"Time Passages","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-8-time-passages/4000-28537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28519/","id":28519,"name":"Farewell to Fury!","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-42-farewell-to-fury/4000-28519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28523/","id":28523,"name":"...and the Rocket's Red Glare...","site_detail_url":"https://comicvine.gamespot.com/the-outsiders-23-and-the-rockets-red-glare/4000-28523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28582/","id":28582,"name":"Children's Crusade","site_detail_url":"https://comicvine.gamespot.com/x-factor-20-childrens-crusade/4000-28582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28603/","id":28603,"name":"Flying Wild!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-55-flying-wild/4000-28603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166071/","id":166071,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-5/4000-166071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28573/","id":28573,"name":"Zapper! / Returning","site_detail_url":"https://comicvine.gamespot.com/strange-tales-6-zapper-returning/4000-28573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272262/","id":272262,"name":"Un ange trepasse","site_detail_url":"https://comicvine.gamespot.com/soda-1-un-ange-trepasse/4000-272262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27607/","id":27607,"name":"The Wedding","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-21-the-wedding/4000-27607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211635/","id":211635,"name":"Soup's On!","site_detail_url":"https://comicvine.gamespot.com/turtle-soup-1-soups-on/4000-211635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28522/","id":28522,"name":"Crystal Chaos","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-35-crystal-chaos/4000-28522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276430/","id":276430,"name":"","site_detail_url":"https://comicvine.gamespot.com/comandos-em-acao-2/4000-276430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94591/","id":94591,"name":"Lost And Found","site_detail_url":"https://comicvine.gamespot.com/fallen-angels-5-lost-and-found/4000-94591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28458/","id":28458,"name":"Thing vs Human Torch- Nuff Said!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-305-thing-vs-human-torch-nuff-said/4000-28458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28472/","id":28472,"name":"Showtime","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers-23-showtime/4000-28472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28453/","id":28453,"name":"Dark Journey","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-291-dark-journey/4000-28453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28418/","id":28418,"name":"The Secret Origin of Adam Strange; The Secret Origin of Dr. Occult","site_detail_url":"https://comicvine.gamespot.com/secret-origins-17-the-secret-origin-of-adam-strang/4000-28418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28421/","id":28421,"name":"The Mystery of My Murder","site_detail_url":"https://comicvine.gamespot.com/the-spectre-5-the-mystery-of-my-murder/4000-28421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28431/","id":28431,"name":"A Call to Arms","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-3-a-call-to-arms/4000-28431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134235/","id":134235,"name":"Wolfpack","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-31-wolfpack/4000-134235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170334/","id":170334,"name":"Spirou à New York","site_detail_url":"https://comicvine.gamespot.com/spirou-et-fantasio-39-spirou-a-new-york/4000-170334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27565/","id":27565,"name":"The Lady's Names is... Godiva!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-annual-3-the-ladys-names-is-go/4000-27565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28473/","id":28473,"name":"All Together Now!","site_detail_url":"https://comicvine.gamespot.com/x-factor-19-all-together-now/4000-28473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28490/","id":28490,"name":"Ratrace","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-54-ratrace/4000-28490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28429/","id":28429,"name":"Look On My Works, Ye Mighty...","site_detail_url":"https://comicvine.gamespot.com/watchmen-11-look-on-my-works-ye-mighty/4000-28429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28467/","id":28467,"name":"Vermin / The Snow of Yester-Year","site_detail_url":"https://comicvine.gamespot.com/strange-tales-5-vermin-the-snow-of-yester-year/4000-28467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341302/","id":341302,"name":"Paradax!","site_detail_url":"https://comicvine.gamespot.com/paradax-2-paradax/4000-341302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95179/","id":95179,"name":"BOOK XXI: The Struggle for Power!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28454/","id":28454,"name":"Captives","site_detail_url":"https://comicvine.gamespot.com/the-avengers-282-captives/4000-28454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28463/","id":28463,"name":"Crack Down!","site_detail_url":"https://comicvine.gamespot.com/power-pack-31-crack-down/4000-28463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28415/","id":28415,"name":"Non Compos Mento","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-34-non-compos-mento/4000-28415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431600/","id":431600,"name":"Sinner","site_detail_url":"https://comicvine.gamespot.com/prime-cuts-4-sinner/4000-431600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276429/","id":276429,"name":"Comandos em Ação","site_detail_url":"https://comicvine.gamespot.com/comandos-em-acao-1-comandos-em-acao/4000-276429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28306/","id":28306,"name":"A Gathering of Heroes!","site_detail_url":"https://comicvine.gamespot.com/young-all-stars-2-a-gathering-of-heroes/4000-28306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28294/","id":28294,"name":"The Warlord Exiles; 'Mazing Man; The Secret Origin of the Golden Age Hourman","site_detail_url":"https://comicvine.gamespot.com/secret-origins-16-the-warlord-exiles-mazing-man-th/4000-28294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28284/","id":28284,"name":"Heart... of Stone!","site_detail_url":"https://comicvine.gamespot.com/the-flash-2-heart-of-stone/4000-28284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28337/","id":28337,"name":"Pressure Drop","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-304-pressure-drop/4000-28337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28296/","id":28296,"name":"The Lacquer Look","site_detail_url":"https://comicvine.gamespot.com/the-spectre-4-the-lacquer-look/4000-28296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28282/","id":28282,"name":"Cycles","site_detail_url":"https://comicvine.gamespot.com/doctor-fate-1-cycles/4000-28282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28354/","id":28354,"name":"The Enemy Within","site_detail_url":"https://comicvine.gamespot.com/x-factor-18-the-enemy-within/4000-28354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28378/","id":28378,"name":"Seduced & Abandoned","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-53-seduced-abandoned/4000-28378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57112/","id":57112,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-4/4000-57112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28304/","id":28304,"name":"Two Riders Were Approaching...","site_detail_url":"https://comicvine.gamespot.com/watchmen-10-two-riders-were-approaching/4000-28304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28347/","id":28347,"name":"Perchance To Dream! / Walk on the Wild Side","site_detail_url":"https://comicvine.gamespot.com/strange-tales-4-perchance-to-dream-walk-on-the-wil/4000-28347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28343/","id":28343,"name":"Marching Powder","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-marching-powder/4000-28343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28351/","id":28351,"name":"Where Duty Lies","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-219-where-duty-lies/4000-28351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95178/","id":95178,"name":"BOOK XX: The Battle Eternal","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28333/","id":28333,"name":"By Gods Betrayed!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-281-by-gods-betrayed/4000-28333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28291/","id":28291,"name":"The City Came Tumblin Down","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-33-the-city-came-tumblin-down/4000-28291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28218/","id":28218,"name":"The Hobgoblin Revealed!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-289-the-hobgoblin-revealed/4000-28218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94589/","id":94589,"name":"Every Card Is Wild","site_detail_url":"https://comicvine.gamespot.com/fallen-angels-3-every-card-is-wild/4000-94589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28224/","id":28224,"name":"A Matter of Faith","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-vs-x-men-4-a-matter-of-faith/4000-28224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28171/","id":28171,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-flash-1/4000-28171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28184/","id":28184,"name":"Justice Beyond the Flesh","site_detail_url":"https://comicvine.gamespot.com/the-spectre-3-justice-beyond-the-flesh/4000-28184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28191/","id":28191,"name":"Matters of Life and Death--","site_detail_url":"https://comicvine.gamespot.com/vigilante-42-matters-of-life-and-death-/4000-28191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28237/","id":28237,"name":"Die, Mutants, Die!","site_detail_url":"https://comicvine.gamespot.com/x-factor-17-die-mutants-die/4000-28237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28252/","id":28252,"name":"Grounded Forever","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-52-grounded-forever/4000-28252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28166/","id":28166,"name":"Prometheus Unbound!","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-13-prometheus-unbound/4000-28166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95177/","id":95177,"name":"BOOK XIX: THE OLD ORDER CHANGETH!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28219/","id":28219,"name":"Faithful Servant","site_detail_url":"https://comicvine.gamespot.com/the-avengers-280-faithful-servant/4000-28219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28190/","id":28190,"name":"Breaking Up Is Hard to Do!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-78-breaking-up-is-hard-to/4000-28190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28229/","id":28229,"name":"Crack-Up!","site_detail_url":"https://comicvine.gamespot.com/power-pack-30-crack-up/4000-28229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28178/","id":28178,"name":"Trivial Pursuits","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-32-trivial-pursuits/4000-28178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189358/","id":189358,"name":"TMNT Book II","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-graphic-novel-2-tmnt-/4000-189358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28108/","id":28108,"name":"Gang War Rages On","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-288-gang-war-rages-on/4000-28108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94588/","id":94588,"name":"I'll Take the High Road and I'll Take the Low","site_detail_url":"https://comicvine.gamespot.com/fallen-angels-2-ill-take-the-high-road-and-ill-tak/4000-94588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105729/","id":105729,"name":"Born Again","site_detail_url":"https://comicvine.gamespot.com/justice-league-1-born-again/4000-105729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95176/","id":95176,"name":"BOOK XVIII: THE TRIUMPH AND THE TRAGEDY!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28072/","id":28072,"name":"Fun Couples!","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-corps-212-fun-couples/4000-28072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28082/","id":28082,"name":"First Stirrings","site_detail_url":"https://comicvine.gamespot.com/the-spectre-2-first-stirrings/4000-28082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28088/","id":28088,"name":"Night Moves","site_detail_url":"https://comicvine.gamespot.com/vigilante-41-night-moves/4000-28088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28127/","id":28127,"name":"Playing With Fire!","site_detail_url":"https://comicvine.gamespot.com/x-factor-16-playing-with-fire/4000-28127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57111/","id":57111,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-3/4000-57111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28090/","id":28090,"name":"The Darkness of Mere Being","site_detail_url":"https://comicvine.gamespot.com/watchmen-9-the-darkness-of-mere-being/4000-28090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28067/","id":28067,"name":"Man In The Middle","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-12-man-in-the-middle/4000-28067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302908/","id":302908,"name":"Dark Revelations","site_detail_url":"https://comicvine.gamespot.com/angel-love-special-1-dark-revelations/4000-302908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325370/","id":325370,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-art-33/4000-325370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28109/","id":28109,"name":"Command Decision","site_detail_url":"https://comicvine.gamespot.com/the-avengers-279-command-decision/4000-28109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28077/","id":28077,"name":"Resolution","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-31-resolution/4000-28077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28007/","id":28007,"name":"...And There Shall Come a Reckoning","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-287-and-there-shall-come-a-/4000-28007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94587/","id":94587,"name":"Runaway","site_detail_url":"https://comicvine.gamespot.com/fallen-angels-1-runaway/4000-94587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28013/","id":28013,"name":"By the Soul's Darkest Light","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-vs-x-men-3-by-the-souls-darkest-lig/4000-28013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27968/","id":27968,"name":"Starring Nightwing, Johnny Thunder And The Whip\"","site_detail_url":"https://comicvine.gamespot.com/secret-origins-13-starring-nightwing-johnny-thunde/4000-27968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27971/","id":27971,"name":"Vessels","site_detail_url":"https://comicvine.gamespot.com/the-spectre-1-vessels/4000-27971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28012/","id":28012,"name":"Dark Dreams","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-301-dark-dreams/4000-28012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28026/","id":28026,"name":"Whose Death Is This Anyway?","site_detail_url":"https://comicvine.gamespot.com/x-factor-15-whose-death-is-this-anyway/4000-28026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27978/","id":27978,"name":"Old Ghosts","site_detail_url":"https://comicvine.gamespot.com/watchmen-8-old-ghosts/4000-27978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28045/","id":28045,"name":"Father's Day","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-50-fathers-day/4000-28045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27952/","id":27952,"name":"Havoc Is... The Hybrid!","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-11-havoc-is-the-hybrid/4000-27952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124339/","id":124339,"name":"Silent Partner","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-10-silent-partner/4000-124339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324258/","id":324258,"name":"Il genio del male","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-61-il-genio-del-male/4000-324258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341301/","id":341301,"name":"The Insane People; Blithe Horizons; The Importance of Being Mirkin; Ruff and Reddy","site_detail_url":"https://comicvine.gamespot.com/paradax-1-the-insane-people-blithe-horizons-the-im/4000-341301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95175/","id":95175,"name":"BOOK XVII: Man's Inhumanity","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28008/","id":28008,"name":"Pressure","site_detail_url":"https://comicvine.gamespot.com/the-avengers-278-pressure/4000-28008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28018/","id":28018,"name":"Obsession!","site_detail_url":"https://comicvine.gamespot.com/power-pack-29-obsession/4000-28018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27965/","id":27965,"name":"Revolution","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-30-revolution/4000-27965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27893/","id":27893,"name":"Thy Father's Son","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-286-thy-fathers-son/4000-27893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27896/","id":27896,"name":"O Little Town Of Bethlehem; Quest's End","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-11-o-little-town-of-bethlehem-que/4000-27896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27900/","id":27900,"name":"Dearly Beloved...","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-300-dearly-beloved/4000-27900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27901/","id":27901,"name":"Truths & Consequences","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-vs-x-men-2-truths-consequences/4000-27901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123079/","id":123079,"name":"Andorians thru Dr. Mccoy","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-star-trek-1-andorians-thru-dr-mccoy/4000-123079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27856/","id":27856,"name":"Let Slip the Dogs of War!","site_detail_url":"https://comicvine.gamespot.com/legends-5-let-slip-the-dogs-of-war/4000-27856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27855/","id":27855,"name":"Flesh!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-260-flesh/4000-27855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27915/","id":27915,"name":"The Mutant Program!","site_detail_url":"https://comicvine.gamespot.com/x-factor-14-the-mutant-program/4000-27915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57110/","id":57110,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-comics-magazine-2/4000-57110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133689/","id":133689,"name":"Hush Job","site_detail_url":"https://comicvine.gamespot.com/gi-joe-yearbook-3-hush-job/4000-133689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27869/","id":27869,"name":"A Brother to Dragons","site_detail_url":"https://comicvine.gamespot.com/watchmen-7-a-brother-to-dragons/4000-27869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27841/","id":27841,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-8/4000-27841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324238/","id":324238,"name":"Nella terra dei Dogon","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-60-nella-terra-dei-dogon/4000-324238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27859/","id":27859,"name":"Revelation","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-29-revelation/4000-27859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27744/","id":27744,"name":"Cry Havok...!","site_detail_url":"https://comicvine.gamespot.com/legends-4-cry-havok/4000-27744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27791/","id":27791,"name":"Are You Sure?!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-vs-x-men-1-are-you-sure/4000-27791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27788/","id":27788,"name":"The Tongues of Men and Angels...!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-81-the-tongues-of-men-and-angels/4000-27788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27736/","id":27736,"name":"Past, Present... And Future","site_detail_url":"https://comicvine.gamespot.com/cosmic-boy-3-past-present-and-future/4000-27736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114552/","id":114552,"name":"High Tide","site_detail_url":"https://comicvine.gamespot.com/spider-man-vs-wolverine-1-high-tide/4000-114552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27750/","id":27750,"name":"Ancient Histories; The Secret Origin of the Golden Age Hawkman","site_detail_url":"https://comicvine.gamespot.com/secret-origins-11-ancient-histories-the-secret-ori/4000-27750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27731/","id":27731,"name":"The Origin of the Tarantula","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-66-the-origin-of-the-tarantula/4000-27731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27790/","id":27790,"name":"The Best Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-299-the-best-man/4000-27790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114379/","id":114379,"name":"Homecoming!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-259-homecoming/4000-114379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27806/","id":27806,"name":"Ghosts!","site_detail_url":"https://comicvine.gamespot.com/x-factor-13-ghosts/4000-27806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27826/","id":27826,"name":"Ashes of the Heart","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-48-ashes-of-the-heart/4000-27826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27758/","id":27758,"name":"The Abyss Gazes Also","site_detail_url":"https://comicvine.gamespot.com/watchmen-6-the-abyss-gazes-also/4000-27758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27800/","id":27800,"name":"With Friends Like These...","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-123-with-friends-like-t/4000-27800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27732/","id":27732,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-7/4000-27732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47394/","id":47394,"name":"Merry Christmas, X-Men","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-6-merry-christmas-x-men/4000-47394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324220/","id":324220,"name":"Le piste di Nazca","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-59-le-piste-di-nazca/4000-324220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110165/","id":110165,"name":"Heroes Always Win... Don't They?","site_detail_url":"https://comicvine.gamespot.com/thor-376-heroes-always-win-dont-they/4000-110165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27803/","id":27803,"name":"With Malice Toward All","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-214-with-malice-toward-all/4000-27803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27784/","id":27784,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/the-avengers-276-revenge/4000-27784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27798/","id":27798,"name":"The Breakfast Club!","site_detail_url":"https://comicvine.gamespot.com/power-pack-28-the-breakfast-club/4000-27798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27747/","id":27747,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-28-resurrection/4000-27747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27639/","id":27639,"name":"Send For... The Suicide Squad!","site_detail_url":"https://comicvine.gamespot.com/legends-3-send-for-the-suicide-squad/4000-27639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27629/","id":27629,"name":"Is History Destiny?","site_detail_url":"https://comicvine.gamespot.com/cosmic-boy-2-is-history-destiny/4000-27629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27624/","id":27624,"name":"The Origin of Johnny Quick","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-65-the-origin-of-johnny-quick/4000-27624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411548/","id":411548,"name":"The Number 1 With A Bullet Affair, Part One","site_detail_url":"https://comicvine.gamespot.com/the-man-from-uncle-1-the-number-1-with-a-bullet-af/4000-411548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119547/","id":119547,"name":"Squatter!","site_detail_url":"https://comicvine.gamespot.com/action-comics-584-squatter/4000-119547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172052/","id":172052,"name":"Decepticon Graffiti!; part 2","site_detail_url":"https://comicvine.gamespot.com/the-transformers-95-decepticon-graffiti-part-2/4000-172052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172051/","id":172051,"name":"Decepticon Graffiti!; part 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-94-decepticon-graffiti-part-1/4000-172051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27694/","id":27694,"name":"Boom Boom Boom!","site_detail_url":"https://comicvine.gamespot.com/x-factor-12-boom-boom-boom/4000-27694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27650/","id":27650,"name":"Fearful Symmetry","site_detail_url":"https://comicvine.gamespot.com/watchmen-5-fearful-symmetry/4000-27650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27691/","id":27691,"name":"Psylocke","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-213-psylocke/4000-27691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184741/","id":184741,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/daredevil-born-again-1-tpb-hc/4000-184741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189486/","id":189486,"name":"Summerfall","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-closet-1-summerfall/4000-189486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27673/","id":27673,"name":"Slugfest","site_detail_url":"https://comicvine.gamespot.com/captain-america-325-slugfest/4000-27673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27625/","id":27625,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-6/4000-27625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321957/","id":321957,"name":"Steel Cawl 2","site_detail_url":"https://comicvine.gamespot.com/the-steel-claw-2-steel-cawl-2/4000-321957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197667/","id":197667,"name":"Volume one","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel-comics-1-volume-one/4000-197667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224918/","id":224918,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-1/4000-224918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27690/","id":27690,"name":"Shadows Of The Past","site_detail_url":"https://comicvine.gamespot.com/thor-375-shadows-of-the-past/4000-27690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95172/","id":95172,"name":"BOOK XIV: CONFRONTATIONS!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424097/","id":424097,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cartoon-aid-1/4000-424097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27643/","id":27643,"name":"\"Tarry Till I Come Again\"; \"...and men shall call him Stranger\"; \"Revelations\"; \"Footsteps\"","site_detail_url":"https://comicvine.gamespot.com/secret-origins-10-tarry-till-i-come-again-and-men-/4000-27643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27632/","id":27632,"name":"The Stench of Brimstone","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-55-the-stench-of-brimstone/4000-27632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27676/","id":27676,"name":"It Comes With The Claws","site_detail_url":"https://comicvine.gamespot.com/daredevil-238-it-comes-with-the-claws/4000-27676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192272/","id":192272,"name":"Who Cares?","site_detail_url":"https://comicvine.gamespot.com/spider-man-national-committee-for-prevention-of-ch/4000-192272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111576/","id":111576,"name":"Performance","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-10-performance/4000-111576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27445/","id":27445,"name":"Breach of Faith!","site_detail_url":"https://comicvine.gamespot.com/legends-2-breach-of-faith/4000-27445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26287/","id":26287,"name":"","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-annual-4/4000-26287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27486/","id":27486,"name":"Don't Pay the Ferryman..!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-80-dont-pay-the-ferryman/4000-27486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27437/","id":27437,"name":"Those Who Will Not Learn the Lessons of History...","site_detail_url":"https://comicvine.gamespot.com/cosmic-boy-1-those-who-will-not-learn-the-lessons-/4000-27437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27450/","id":27450,"name":"The Secret Origin of the Star-Spangled Kid and Stripesy / The Secret Origin of the Golden Age Flash","site_detail_url":"https://comicvine.gamespot.com/secret-origins-9-the-secret-origin-of-the-star-spa/4000-27450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27440/","id":27440,"name":"Simple Minds!","site_detail_url":"https://comicvine.gamespot.com/the-green-lantern-corps-207-simple-minds/4000-27440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27455/","id":27455,"name":"Crisis","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-72-crisis/4000-27455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462426/","id":462426,"name":"Missing...","site_detail_url":"https://comicvine.gamespot.com/the-protectors-1-missing/4000-462426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27431/","id":27431,"name":"See You in the Funny Papers!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-64-see-you-in-the-funny-papers/4000-27431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27448/","id":27448,"name":"Twister Shout","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-26-twister-shout/4000-27448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399863/","id":399863,"name":"","site_detail_url":"https://comicvine.gamespot.com/far-side-gallery-2/4000-399863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27504/","id":27504,"name":"Redemption!","site_detail_url":"https://comicvine.gamespot.com/x-factor-11-redemption/4000-27504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27523/","id":27523,"name":"Bloody Sunday","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-46-bloody-sunday/4000-27523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175027/","id":175027,"name":"What Goes Around... Comes Around!","site_detail_url":"https://comicvine.gamespot.com/leonardo-1-what-goes-around-comes-around/4000-175027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27458/","id":27458,"name":"Watchmaker","site_detail_url":"https://comicvine.gamespot.com/watchmen-4-watchmaker/4000-27458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27432/","id":27432,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-5/4000-27432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95171/","id":95171,"name":"BOOK XIII: EVIL DARED!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57442/","id":57442,"name":"Decepticon Graffiti","site_detail_url":"https://comicvine.gamespot.com/the-transformers-23-decepticon-graffiti/4000-57442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377498/","id":377498,"name":"\"The Deadly Ones\"","site_detail_url":"https://comicvine.gamespot.com/street-wolf-3-the-deadly-ones/4000-377498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27482/","id":27482,"name":"Divided...We Fall!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-274-dividedwe-fall/4000-27482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27483/","id":27483,"name":"Speed Trap","site_detail_url":"https://comicvine.gamespot.com/captain-america-324-speed-trap/4000-27483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27494/","id":27494,"name":"Whose Power--?","site_detail_url":"https://comicvine.gamespot.com/power-pack-27-whose-power-/4000-27494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27444/","id":27444,"name":"Coming Down!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-257-coming-down/4000-27444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112515/","id":112515,"name":"Man Of The Year","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-20-man-of-the-year/4000-112515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27379/","id":27379,"name":"The Lady and the Unicorn","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-9-the-lady-and-the-unicorn/4000-27379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27340/","id":27340,"name":"Once Upon a Time...! / Secret of the Temple","site_detail_url":"https://comicvine.gamespot.com/legends-1-once-upon-a-time-secret-of-the-temple/4000-27340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27326/","id":27326,"name":"The Origin of the Golden Age Robotman","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-63-the-origin-of-the-golden-age-/4000-27326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27383/","id":27383,"name":"Homecoming!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-296-homecoming/4000-27383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27344/","id":27344,"name":"Hell Is the Hybrid Part 2","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-25-hell-is-the-hybrid-part-2/4000-27344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95170/","id":95170,"name":"Book XII: A Legend Reborn","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27399/","id":27399,"name":"Falling Angel!","site_detail_url":"https://comicvine.gamespot.com/x-factor-10-falling-angel/4000-27399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27355/","id":27355,"name":"The Judge of All The Earth","site_detail_url":"https://comicvine.gamespot.com/watchmen-3-the-judge-of-all-the-earth/4000-27355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126369/","id":126369,"name":"TMNT Book I","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-graphic-novel-1-tmnt-/4000-126369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27327/","id":27327,"name":"Chemistry","site_detail_url":"https://comicvine.gamespot.com/angel-love-4-chemistry/4000-27327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123136/","id":123136,"name":"Time2","site_detail_url":"https://comicvine.gamespot.com/american-flagg-special-1-time2/4000-123136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27378/","id":27378,"name":"Super-Patriot is Here","site_detail_url":"https://comicvine.gamespot.com/captain-america-323-super-patriot-is-here/4000-27378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27339/","id":27339,"name":"Back to Godhead","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-256-back-to-godhead/4000-27339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27387/","id":27387,"name":"Brave New World","site_detail_url":"https://comicvine.gamespot.com/justice-1-brave-new-world/4000-27387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27409/","id":27409,"name":"The Golden Eagle; The Door; The Saurian Remains","site_detail_url":"https://comicvine.gamespot.com/amazing-high-adventure-4-the-golden-eagle-the-door/4000-27409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66333/","id":66333,"name":"Grand Design","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-1-grand-design/4000-66333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27240/","id":27240,"name":"Starring Green Lantern & The Sandman","site_detail_url":"https://comicvine.gamespot.com/secret-origins-7-starring-green-lantern-the-sandma/4000-27240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27290/","id":27290,"name":"Spots!","site_detail_url":"https://comicvine.gamespot.com/x-factor-9-spots/4000-27290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26277/","id":26277,"name":"Why Do We Do These Things We Do ?","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-annual-2-why-do-we-do-these-things/4000-26277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27249/","id":27249,"name":"Absent Friends","site_detail_url":"https://comicvine.gamespot.com/watchmen-2-absent-friends/4000-27249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26269/","id":26269,"name":"Revenge of the Rusting Reptile from Outer Space!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-annual-2-revenge-of-the-rustin/4000-26269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27221/","id":27221,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-3/4000-27221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324210/","id":324210,"name":"Il tesoro delle sette città","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-55-il-tesoro-delle-sette-citta/4000-324210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95169/","id":95169,"name":"Book XI: Days of Power!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143404/","id":143404,"name":"","site_detail_url":"https://comicvine.gamespot.com/naive-inter-dimensional-commando-koalas-1/4000-143404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27233/","id":27233,"name":"Rising","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-255-rising/4000-27233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27283/","id":27283,"name":"Going Home!","site_detail_url":"https://comicvine.gamespot.com/power-pack-26-going-home/4000-27283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27237/","id":27237,"name":"Hell Is the Hybrid","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-24-hell-is-the-hybrid/4000-27237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27178/","id":27178,"name":"Vacation","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-8-vacation/4000-27178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27149/","id":27149,"name":"Starring Halo and the Golden Age Batman","site_detail_url":"https://comicvine.gamespot.com/secret-origins-6-starring-halo-and-the-golden-age-/4000-27149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534578/","id":534578,"name":"Abenteuer in Manhattan","site_detail_url":"https://comicvine.gamespot.com/andy-morgan-4-abenteuer-in-manhattan/4000-534578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27193/","id":27193,"name":"Lost and Found!","site_detail_url":"https://comicvine.gamespot.com/x-factor-8-lost-and-found/4000-27193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27158/","id":27158,"name":"At Midnight, All The Agents...","site_detail_url":"https://comicvine.gamespot.com/watchmen-1-at-midnight-all-the-agents/4000-27158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124336/","id":124336,"name":"The Passing","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-9-the-passing/4000-124336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27130/","id":27130,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-2/4000-27130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27156/","id":27156,"name":"Deadly Interlude","site_detail_url":"https://comicvine.gamespot.com/vigilante-33-deadly-interlude/4000-27156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95168/","id":95168,"name":"BOOK X: TO STAND UNITED","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388127/","id":388127,"name":"\"Black Rain\"","site_detail_url":"https://comicvine.gamespot.com/street-wolf-2-black-rain/4000-388127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86082/","id":86082,"name":"HARDBALL","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-125-hardball/4000-86082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27189/","id":27189,"name":"Salvation","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-209-salvation/4000-27189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27076/","id":27076,"name":"Savage is the Sable","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-279-savage-is-the-sable/4000-27076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27053/","id":27053,"name":"The Crimson Avenger","site_detail_url":"https://comicvine.gamespot.com/secret-origins-5-the-crimson-avenger/4000-27053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27097/","id":27097,"name":"Fall Out!","site_detail_url":"https://comicvine.gamespot.com/x-factor-7-fall-out/4000-27097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27079/","id":27079,"name":"Armageddon","site_detail_url":"https://comicvine.gamespot.com/daredevil-233-armageddon/4000-27079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27033/","id":27033,"name":"","site_detail_url":"https://comicvine.gamespot.com/angel-love-1/4000-27033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27093/","id":27093,"name":"Retribution","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-208-retribution/4000-27093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27087/","id":27087,"name":"Power Trip!","site_detail_url":"https://comicvine.gamespot.com/power-pack-25-power-trip/4000-27087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26986/","id":26986,"name":"Stowaways","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-7-stowaways/4000-26986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124335/","id":124335,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-8/4000-124335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26948/","id":26948,"name":"Arrival","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-252-arrival/4000-26948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26935/","id":26935,"name":"Out of the Ashes... Mechanique; Shanghaied into Hyperspace! Interlude Eight","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-59-out-of-the-ashes-mechanique-s/4000-26935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26988/","id":26988,"name":"The Man who dreamed the world!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-292-the-man-who-dreamed-the-world/4000-26988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26952/","id":26952,"name":"Interlude","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-22-interlude/4000-26952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26982/","id":26982,"name":"If This Be Justice","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-278-if-this-be-justice/4000-26982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99031/","id":99031,"name":"A Space Station Called Hell!","site_detail_url":"https://comicvine.gamespot.com/the-new-wave-3-a-space-station-called-hell/4000-99031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26987/","id":26987,"name":"God and Country","site_detail_url":"https://comicvine.gamespot.com/daredevil-232-god-and-country/4000-26987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27001/","id":27001,"name":"Apocalypse Now!","site_detail_url":"https://comicvine.gamespot.com/x-factor-6-apocalypse-now/4000-27001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26994/","id":26994,"name":"102 Uses for a Dead Cat","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-116-102-uses-for-a-dead/4000-26994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26946/","id":26946,"name":"Night of the Bat","site_detail_url":"https://comicvine.gamespot.com/hex-11-night-of-the-bat/4000-26946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26999/","id":26999,"name":"Underworld!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-16-underworld/4000-26999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324207/","id":324207,"name":"La follia di Martin Mystère","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-52-la-follia-di-martin-mystere/4000-324207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95166/","id":95166,"name":"BOOK VIII: FATEFUL ENCOUNTERS!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26997/","id":26997,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-207-ghosts/4000-26997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388126/","id":388126,"name":"\"When Angels Cry\"","site_detail_url":"https://comicvine.gamespot.com/street-wolf-1-when-angels-cry/4000-388126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86081/","id":86081,"name":"Crossfire","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-124-crossfire/4000-86081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26884/","id":26884,"name":"The Rules of the Game","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-277-the-rules-of-the-game/4000-26884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26832/","id":26832,"name":"I Sing the Body Robotic!; Shanghaied Into Hyperspace! Interlude Seven","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-58-i-sing-the-body-robotic-shang/4000-26832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26850/","id":26850,"name":"On the Top of the World","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-21-on-the-top-of-the-world/4000-26850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26889/","id":26889,"name":"The Times They are a' Changing!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-291-the-times-they-are-a-changing/4000-26889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95165/","id":95165,"name":"BOOK VII: THE TIES THAT BIND!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26906/","id":26906,"name":"Tapped Out","site_detail_url":"https://comicvine.gamespot.com/x-factor-5-tapped-out/4000-26906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26919/","id":26919,"name":"Saved","site_detail_url":"https://comicvine.gamespot.com/daredevil-231-saved/4000-26919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324203/","id":324203,"name":"La notte dell’Uomo Lupo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-51-la-notte-delluomo-lupo/4000-324203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326622/","id":326622,"name":"","site_detail_url":"https://comicvine.gamespot.com/comic-art-23/4000-326622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26857/","id":26857,"name":"The Origin of Lilith!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-66-the-origin-of-lilith/4000-26857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26885/","id":26885,"name":"The Kang Dynasty","site_detail_url":"https://comicvine.gamespot.com/the-avengers-268-the-kang-dynasty/4000-26885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26886/","id":26886,"name":"Justice is Served!","site_detail_url":"https://comicvine.gamespot.com/captain-america-318-justice-is-served/4000-26886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26846/","id":26846,"name":"Hunters and Prey","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-251-hunters-and-prey/4000-26846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26788/","id":26788,"name":"Festival","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-6-festival/4000-26788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121067/","id":121067,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-7/4000-121067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26798/","id":26798,"name":"Final Solution Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-5-final-solution-part-2/4000-26798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26805/","id":26805,"name":"Sweet Sister","site_detail_url":"https://comicvine.gamespot.com/the-vision-and-the-scarlet-witch-8-sweet-sister/4000-26805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26790/","id":26790,"name":"Risk","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-290-risk/4000-26790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133901/","id":133901,"name":"Matrix-Prime to Mister Tawny-Tawny","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26808/","id":26808,"name":"Trials and Terrors","site_detail_url":"https://comicvine.gamespot.com/x-factor-4-trials-and-terrors/4000-26808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26789/","id":26789,"name":"Born Again","site_detail_url":"https://comicvine.gamespot.com/daredevil-230-born-again/4000-26789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26784/","id":26784,"name":"Time--and Time Again","site_detail_url":"https://comicvine.gamespot.com/the-avengers-267-time-and-time-again/4000-26784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26782/","id":26782,"name":"Honor","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-34-honor/4000-26782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134302/","id":134302,"name":"Getting Ugly","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-123-getting-ugly/4000-134302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26787/","id":26787,"name":"Death-Throws","site_detail_url":"https://comicvine.gamespot.com/captain-america-317-death-throws/4000-26787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26796/","id":26796,"name":"The Key","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-114-the-key/4000-26796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26797/","id":26797,"name":"Trapped!","site_detail_url":"https://comicvine.gamespot.com/power-pack-22-trapped/4000-26797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26753/","id":26753,"name":"The Return of the Justice League of America","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-250-the-return-of-the-ju/4000-26753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26739/","id":26739,"name":"Kaleidoscope","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-57-kaleidoscope/4000-26739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95163/","id":95163,"name":"BOOK V: TERROR IN THE SKIES!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26704/","id":26704,"name":"Final Solution","site_detail_url":"https://comicvine.gamespot.com/the-punisher-4-final-solution/4000-26704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26650/","id":26650,"name":"A Question of Justice!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-92-a-question-of-justice/4000-26650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26659/","id":26659,"name":"Breaking Up is Hard to Do","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-19-breaking-up-is-hard-to-do/4000-26659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171975/","id":171975,"name":"I, Robot Master!; part 2","site_detail_url":"https://comicvine.gamespot.com/the-transformers-56-i-robot-master-part-2/4000-171975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26714/","id":26714,"name":"Regression Obsession","site_detail_url":"https://comicvine.gamespot.com/x-factor-3-regression-obsession/4000-26714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26695/","id":26695,"name":"Pariah","site_detail_url":"https://comicvine.gamespot.com/daredevil-229-pariah/4000-26695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318475/","id":318475,"name":"Sangue a Chinatown","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-49-sangue-a-chinatown/4000-318475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57434/","id":57434,"name":"I, Robot Master!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-15-i-robot-master/4000-57434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26710/","id":26710,"name":"What Happened to Nightcrawler?","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-204-what-happened-to-nightcrawle/4000-26710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26694/","id":26694,"name":"Creatures of Love","site_detail_url":"https://comicvine.gamespot.com/captain-america-316-creatures-of-love/4000-26694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26656/","id":26656,"name":"All Fall Down!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-249-all-fall-down/4000-26656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26703/","id":26703,"name":"The Great Goo-Gam Treasue Hunt!","site_detail_url":"https://comicvine.gamespot.com/power-pack-21-the-great-goo-gam-treasue-hunt/4000-26703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26641/","id":26641,"name":"The Sinister Secret of the Sixth Sense!; \"Shanghaied Into Hyperspace!\"-Interlude Three","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-56-the-sinister-secret-of-the-si/4000-26641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132101/","id":132101,"name":"The Male Machine","site_detail_url":"https://comicvine.gamespot.com/mazing-man-4-the-male-machine/4000-132101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26596/","id":26596,"name":"Introducing Mayhem","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-5-introducing-mayhem/4000-26596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156704/","id":156704,"name":"","site_detail_url":"https://comicvine.gamespot.com/wonder-man-1/4000-156704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26592/","id":26592,"name":"Lo, There Shall Come a Champion","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-274-lo-there-shall-come-a-c/4000-26592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26605/","id":26605,"name":"Slaughterday","site_detail_url":"https://comicvine.gamespot.com/the-punisher-3-slaughterday/4000-26605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121282/","id":121282,"name":"The Triceraton Homeworld.","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-6-the-triceraton-home/4000-121282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26556/","id":26556,"name":"Final Crisis","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-12-final-crisis/4000-26556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26598/","id":26598,"name":"Full Circle","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-288-full-circle/4000-26598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26568/","id":26568,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-18-homecoming/4000-26568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26617/","id":26617,"name":"Bless the Beasts and Children","site_detail_url":"https://comicvine.gamespot.com/x-factor-2-bless-the-beasts-and-children/4000-26617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26612/","id":26612,"name":"Guess Who's Coming To Dinner","site_detail_url":"https://comicvine.gamespot.com/thor-365-guess-whos-coming-to-dinner/4000-26612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26547/","id":26547,"name":"Magnificient Obsession!","site_detail_url":"https://comicvine.gamespot.com/eternals-6-magnificient-obsession/4000-26547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26597/","id":26597,"name":"Purgatory","site_detail_url":"https://comicvine.gamespot.com/daredevil-228-purgatory/4000-26597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318471/","id":318471,"name":"Gli assassini del Kung-Fu","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-48-gli-assassini-del-kung-fu/4000-318471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26595/","id":26595,"name":"The Hard Sell","site_detail_url":"https://comicvine.gamespot.com/captain-america-315-the-hard-sell/4000-26595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26576/","id":26576,"name":".. Torment!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-63-torment/4000-26576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134301/","id":134301,"name":"What's Eating Misty...?","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-122-whats-eating-misty/4000-134301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114378/","id":114378,"name":"Interweavings","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-248-interweavings/4000-114378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26604/","id":26604,"name":"Turning Point","site_detail_url":"https://comicvine.gamespot.com/power-pack-20-turning-point/4000-26604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132100/","id":132100,"name":"Doing What Married People Do","site_detail_url":"https://comicvine.gamespot.com/mazing-man-3-doing-what-married-people-do/4000-132100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26523/","id":26523,"name":"Third Genesis","site_detail_url":"https://comicvine.gamespot.com/x-factor-1-third-genesis/4000-26523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26509/","id":26509,"name":"Back To The War","site_detail_url":"https://comicvine.gamespot.com/the-punisher-2-back-to-the-war/4000-26509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26495/","id":26495,"name":"To Challenge the Beyonder","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-273-to-challenge-the-beyond/4000-26495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26541/","id":26541,"name":"A Snake Coils...","site_detail_url":"https://comicvine.gamespot.com/longshot-6-a-snake-coils/4000-26541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95161/","id":95161,"name":"BOOK III: A GATHERING OF DOOMS!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26505/","id":26505,"name":"Prisoners of the flesh","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-287-prisoners-of-the-flesh/4000-26505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26458/","id":26458,"name":"Feithera by Stormlight!","site_detail_url":"https://comicvine.gamespot.com/infinity-inc-23-feithera-by-stormlight/4000-26458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26501/","id":26501,"name":"The End Of All Songs","site_detail_url":"https://comicvine.gamespot.com/the-defenders-152-the-end-of-all-songs/4000-26501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26542/","id":26542,"name":"Subway to Salvation !","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-36-subway-to-salvation/4000-26542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26518/","id":26518,"name":"Thor Croaks","site_detail_url":"https://comicvine.gamespot.com/thor-364-thor-croaks/4000-26518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26500/","id":26500,"name":"Apocalypse","site_detail_url":"https://comicvine.gamespot.com/daredevil-227-apocalypse/4000-26500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26519/","id":26519,"name":"X-Men...I've Gone To Kill The Beyonder","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-202-x-menive-gone-to-kill-the-be/4000-26519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26521/","id":26521,"name":"Have You Seen...That Vigilante Man!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-11-have-you-seenthat-vigilante-m/4000-26521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26472/","id":26472,"name":"Souls as White as Heaven... as Black as Hell!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-62-souls-as-white-as-heav/4000-26472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26498/","id":26498,"name":"Asylum","site_detail_url":"https://comicvine.gamespot.com/captain-america-314-asylum/4000-26498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26459/","id":26459,"name":"...There's No Place Like Home","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-247-there-s-no-place-lik/4000-26459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26508/","id":26508,"name":"Guess Who's Coming To Dinner?","site_detail_url":"https://comicvine.gamespot.com/power-pack-19-guess-whos-coming-to-dinner/4000-26508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26452/","id":26452,"name":"Aftershock","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-11-aftershock/4000-26452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132099/","id":132099,"name":"Easy Money","site_detail_url":"https://comicvine.gamespot.com/mazing-man-2-easy-money/4000-132099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26392/","id":26392,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-4-ultimatum/4000-26392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26405/","id":26405,"name":"Circle Of Blood!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-1-circle-of-blood/4000-26405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26388/","id":26388,"name":"What Lurks Below?","site_detail_url":"https://comicvine.gamespot.com/the-avengers-263-what-lurks-below/4000-26388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26396/","id":26396,"name":"Like a Phoenix!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-286-like-a-phoenix/4000-26396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26427/","id":26427,"name":"Deadly Lies","site_detail_url":"https://comicvine.gamespot.com/longshot-5-deadly-lies/4000-26427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95160/","id":95160,"name":"BOOK II : TRANSFORMATION AND REBIRTH!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132098/","id":132098,"name":"","site_detail_url":"https://comicvine.gamespot.com/mazing-man-1/4000-132098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26394/","id":26394,"name":"Warriors","site_detail_url":"https://comicvine.gamespot.com/daredevil-226-warriors/4000-26394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134229/","id":134229,"name":"Greenberg The Vampire","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-20-greenberg-the-vampire/4000-134229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26404/","id":26404,"name":"Kurse!","site_detail_url":"https://comicvine.gamespot.com/power-pack-18-kurse/4000-26404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108566/","id":108566,"name":"My Father Bleeds History","site_detail_url":"https://comicvine.gamespot.com/maus-a-survivors-tale-1-my-father-bleeds-history/4000-108566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26390/","id":26390,"name":"Mission: Murder Modok!","site_detail_url":"https://comicvine.gamespot.com/captain-america-313-mission-murder-modok/4000-26390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26355/","id":26355,"name":"Be it Ever So Humble...","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-246-be-it-ever-so-humble/4000-26355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26341/","id":26341,"name":"Worlds in Turmoil","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-53-worlds-in-turmoil/4000-26341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26311/","id":26311,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/fury-of-firestorm-annual-4-venom/4000-26311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376868/","id":376868,"name":"Suddenly, 50 years later...","site_detail_url":"https://comicvine.gamespot.com/fifty-who-made-dc-great-1-suddenly-50-years-later/4000-376868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26183/","id":26183,"name":"Whatever Happened to Crusher Hogan?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-271-whatever-happened-to-cr/4000-26183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26233/","id":26233,"name":"Can't Give It All Away!","site_detail_url":"https://comicvine.gamespot.com/longshot-4-cant-give-it-all-away/4000-26233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26141/","id":26141,"name":"A Long Night's Journey into Day","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-42-a-long-nights-journey-int/4000-26141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140268/","id":140268,"name":"Force of Nature","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-annual-3-force-of-nature/4000-140268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146882/","id":146882,"name":"","site_detail_url":"https://comicvine.gamespot.com/futurians-3/4000-146882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26188/","id":26188,"name":"\"...and then you die!\"","site_detail_url":"https://comicvine.gamespot.com/daredevil-225-and-then-you-die/4000-26188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26184/","id":26184,"name":"\"Many Brave Hearts...\"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-262-many-brave-hearts/4000-26184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26186/","id":26186,"name":"Deface the Nation","site_detail_url":"https://comicvine.gamespot.com/captain-america-312-deface-the-nation/4000-26186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95159/","id":95159,"name":"BOOK I: The Saga Begins...!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26199/","id":26199,"name":"Snark Attack!","site_detail_url":"https://comicvine.gamespot.com/power-pack-17-snark-attack/4000-26199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26071/","id":26071,"name":"The Hero and the Holocaust","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-270-the-hero-and-the-holoca/4000-26071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26076/","id":26076,"name":"Lost and Found","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-3-lost-and-found/4000-26076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144080/","id":144080,"name":"War Stars","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-27-war-stars/4000-144080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26043/","id":26043,"name":"The Light Within...the Dark Without!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-14-the-light-withinthe-dark-wi/4000-26043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64427/","id":64427,"name":"Fun 'N' Games","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-19-fun-n-games/4000-64427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26107/","id":26107,"name":"Local Super Hero!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-8-local-super-hero/4000-26107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146881/","id":146881,"name":"","site_detail_url":"https://comicvine.gamespot.com/futurians-2/4000-146881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26072/","id":26072,"name":"Earth and Beyond!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-261-earth-and-beyond/4000-26072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26087/","id":26087,"name":"Resolutions","site_detail_url":"https://comicvine.gamespot.com/iron-man-200-resolutions/4000-26087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57519/","id":57519,"name":"Despair!","site_detail_url":"https://comicvine.gamespot.com/secret-wars-ii-5-despair/4000-57519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26108/","id":26108,"name":"Sons","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers-2-sons/4000-26108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26082/","id":26082,"name":"Lonely as a Cloud--!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-149-lonely-as-a-cloud-/4000-26082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26095/","id":26095,"name":"Strangers","site_detail_url":"https://comicvine.gamespot.com/questprobe-3-strangers/4000-26095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26074/","id":26074,"name":"Working","site_detail_url":"https://comicvine.gamespot.com/captain-america-311-working/4000-26074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26094/","id":26094,"name":"The Kid Who Fell to Earth","site_detail_url":"https://comicvine.gamespot.com/power-pack-16-the-kid-who-fell-to-earth/4000-26094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25971/","id":25971,"name":"Burn, Spider, Burn","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-269-burn-spider-burn/4000-25971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25977/","id":25977,"name":"The Price","site_detail_url":"https://comicvine.gamespot.com/daredevil-223-the-price/4000-25977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26000/","id":26000,"name":"Lovers","site_detail_url":"https://comicvine.gamespot.com/the-vision-and-the-scarlet-witch-1-lovers/4000-26000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25946/","id":25946,"name":"Victor Victorious!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-58-victor-victorious/4000-25946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25938/","id":25938,"name":"Crisis","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-13-crisis/4000-25938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25943/","id":25943,"name":"When Past and Present Meet!","site_detail_url":"https://comicvine.gamespot.com/super-powers-2-when-past-and-present-meet/4000-25943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109393/","id":109393,"name":"Cloak To Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-3-clo/4000-109393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117738/","id":117738,"name":"Revenge of The Living Monolith","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-17-revenge-of-the-living-mono/4000-117738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146869/","id":146869,"name":"","site_detail_url":"https://comicvine.gamespot.com/futurians-1/4000-146869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25974/","id":25974,"name":"Serpents of the World Unite","site_detail_url":"https://comicvine.gamespot.com/captain-america-310-serpents-of-the-world-unite/4000-25974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25914/","id":25914,"name":"A Mirror for Mortality","site_detail_url":"https://comicvine.gamespot.com/eternals-1-a-mirror-for-mortality/4000-25914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25983/","id":25983,"name":"Bluebeard's Castle","site_detail_url":"https://comicvine.gamespot.com/moon-knight-fist-of-khonshu-4-bluebeards-castle/4000-25983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25985/","id":25985,"name":"And One Of Them Must Die!","site_detail_url":"https://comicvine.gamespot.com/iron-man-199-and-one-of-them-must-die/4000-25985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123224/","id":123224,"name":"The Sensational She-Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-18-the-sensational-she-hulk/4000-123224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25987/","id":25987,"name":"Reckoning","site_detail_url":"https://comicvine.gamespot.com/power-pack-15-reckoning/4000-25987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25919/","id":25919,"name":"Crisis Point","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-50-crisis-point/4000-25919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25866/","id":25866,"name":"This Gold is Mine","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-268-this-gold-is-mine/4000-25866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25871/","id":25871,"name":"Have You Seen Your Mother Baby-- Standing in the Shadows?","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-2-have-you-seen-your-mother-baby-/4000-25871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25852/","id":25852,"name":"A: The End of Cyborg","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-57-a-the-end-of-cyborg/4000-25852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25907/","id":25907,"name":"A Man Without A Past","site_detail_url":"https://comicvine.gamespot.com/longshot-1-a-man-without-a-past/4000-25907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25845/","id":25845,"name":"SIns of the Past","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-12-sins-of-the-past/4000-25845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25850/","id":25850,"name":"Seeds of Doom!","site_detail_url":"https://comicvine.gamespot.com/super-powers-1-seeds-of-doom/4000-25850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465432/","id":465432,"name":"Le journal de Spider-Man","site_detail_url":"https://comicvine.gamespot.com/strange-189-le-journal-de-spider-man/4000-465432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25894/","id":25894,"name":"The Grand Alliance!","site_detail_url":"https://comicvine.gamespot.com/thor-359-the-grand-alliance/4000-25894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25873/","id":25873,"name":"\"Fear in a Handful of Dust...\"","site_detail_url":"https://comicvine.gamespot.com/daredevil-222-fear-in-a-handful-of-dust/4000-25873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25877/","id":25877,"name":"A Madness of Dreams!","site_detail_url":"https://comicvine.gamespot.com/moon-knight-fist-of-khonshu-3-a-madness-of-dreams/4000-25877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25875/","id":25875,"name":"...And Games!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-147-and-games/4000-25875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25903/","id":25903,"name":"The Last Earth-Prime Story","site_detail_url":"https://comicvine.gamespot.com/superman-411-the-last-earth-prime-story/4000-25903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25885/","id":25885,"name":"School Daze","site_detail_url":"https://comicvine.gamespot.com/power-pack-14-school-daze/4000-25885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25785/","id":25785,"name":"With Malice Towards All","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-281-with-malice-towards-all/4000-25785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25741/","id":25741,"name":"The Final Stand","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-12-the-final-stand/4000-25741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25746/","id":25746,"name":"Love Story Part 2","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-11-love-story-part-2/4000-25746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25054/","id":25054,"name":"The Vanguard","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-annual-1-the-vanguard/4000-25054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25800/","id":25800,"name":"When Dalliance Was in Flower","site_detail_url":"https://comicvine.gamespot.com/thor-358-when-dalliance-was-in-flower/4000-25800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25780/","id":25780,"name":"Behold my Vengeance!","site_detail_url":"https://comicvine.gamespot.com/daredevil-221-behold-my-vengeance/4000-25780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280296/","id":280296,"name":"Il potere dell’idolo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-41-il-potere-dellidolo/4000-280296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25781/","id":25781,"name":"Fun!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-146-fun/4000-25781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25801/","id":25801,"name":"What Was That?!!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-196-what-was-that/4000-25801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25790/","id":25790,"name":"Fireworks","site_detail_url":"https://comicvine.gamespot.com/power-pack-13-fireworks/4000-25790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25678/","id":25678,"name":"Sinners All","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-1-sinners-all/4000-25678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25682/","id":25682,"name":"\"Tell them all they love must die... \"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-280-tell-them-all-they-love-must-di/4000-25682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25628/","id":25628,"name":"The Secret Origin of Dr. Fate","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-47-the-secret-origin-of-dr-fate/4000-25628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25649/","id":25649,"name":"Love Story","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-10-love-story/4000-25649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25673/","id":25673,"name":"Jump For My Love, or Spring is in the Air","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-266-jump-for-my-love-or-spr/4000-25673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25651/","id":25651,"name":"Storm Warning","site_detail_url":"https://comicvine.gamespot.com/red-tornado-1-storm-warning/4000-25651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25699/","id":25699,"name":"A New Deal From an Old Deck","site_detail_url":"https://comicvine.gamespot.com/thor-357-a-new-deal-from-an-old-deck/4000-25699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114771/","id":114771,"name":"\"Information, Please...!\" or .... When Destiny Calls!","site_detail_url":"https://comicvine.gamespot.com/marvel-age-annual-1-information-please-or-when-des/4000-114771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25679/","id":25679,"name":"Fog","site_detail_url":"https://comicvine.gamespot.com/daredevil-220-fog/4000-25679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280295/","id":280295,"name":"La reincarnazione di Annabel Lee","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-40-la-reincarnazione-di-annabel-lee/4000-280295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25681/","id":25681,"name":"Five Women","site_detail_url":"https://comicvine.gamespot.com/the-defenders-145-five-women/4000-25681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25701/","id":25701,"name":"It Was a Dark and Stormy Night...!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-195-it-was-a-dark-and-stormy-nig/4000-25701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25693/","id":25693,"name":"Underground","site_detail_url":"https://comicvine.gamespot.com/power-pack-12-underground/4000-25693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25702/","id":25702,"name":"Arms and the Man!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-4-arms-and-the-man/4000-25702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25657/","id":25657,"name":"Shades of Gray!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-55-shades-of-gray/4000-25657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121164/","id":121164,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-4/4000-121164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25575/","id":25575,"name":"This Power Unleashed!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-256-this-power-unleashed/4000-25575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25603/","id":25603,"name":"Iron Bars Do Not A Prison Make...","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-3-iron-bars-do-not-a-prison-make/4000-25603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25539/","id":25539,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-10-rebirth/4000-25539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25522/","id":25522,"name":"Philadelphia--It Tolls for Thee!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-46-philadelphia-it-tolls-for-the/4000-25522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25554/","id":25554,"name":"Blind Justice!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-54-blind-justice/4000-25554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25428/","id":25428,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-crusaders-12/4000-25428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25614/","id":25614,"name":"Soulwar","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-28-soulwar/4000-25614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25602/","id":25602,"name":"Juggernaut's Back In Town","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-194-juggernauts-back-in-town/4000-25602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25592/","id":25592,"name":"Problems","site_detail_url":"https://comicvine.gamespot.com/power-pack-11-problems/4000-25592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25600/","id":25600,"name":"One Man's Prison","site_detail_url":"https://comicvine.gamespot.com/the-thing-24-one-mans-prison/4000-25600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25578/","id":25578,"name":"The Summoning","site_detail_url":"https://comicvine.gamespot.com/captain-america-306-the-summoning/4000-25578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25500/","id":25500,"name":"Warhunt 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-193-warhunt-2/4000-25500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25485/","id":25485,"name":"True Lies","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-278-true-lies/4000-25485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25441/","id":25441,"name":"Time and Time Again","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-2-time-and-time-again/4000-25441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275880/","id":275880,"name":"Scanners!","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-38-scanners/4000-275880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25482/","id":25482,"name":"Walk Upon England","site_detail_url":"https://comicvine.gamespot.com/captain-america-305-walk-upon-england/4000-25482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25501/","id":25501,"name":"Treasures!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-2-treasures/4000-25501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25484/","id":25484,"name":"Another Runner...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-143-another-runner/4000-25484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25450/","id":25450,"name":"Savage Symphony","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-238-savage-symphony/4000-25450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25493/","id":25493,"name":"Sea Hunt","site_detail_url":"https://comicvine.gamespot.com/power-pack-10-sea-hunt/4000-25493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25499/","id":25499,"name":"The Icy Hearts","site_detail_url":"https://comicvine.gamespot.com/thor-355-the-icy-hearts/4000-25499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25407/","id":25407,"name":"'Til Death Do Us Part!","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-1-til-death-do-us-part/4000-25407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25389/","id":25389,"name":"Back from Beyond","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-277-back-from-beyond/4000-25389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25323/","id":25323,"name":"Night and Fog","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-44-night-and-fog/4000-25323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25347/","id":25347,"name":"The Origin of Lilith!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-7-the-origin-of-lilith/4000-25347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25384/","id":25384,"name":"The Sight Stealer","site_detail_url":"https://comicvine.gamespot.com/daredevil-217-the-sight-stealer/4000-25384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172181/","id":172181,"name":"La mente che uccide","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-37-la-mente-che-uccide/4000-172181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25397/","id":25397,"name":"Fish Tale","site_detail_url":"https://comicvine.gamespot.com/power-pack-9-fish-tale/4000-25397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339205/","id":339205,"name":"","site_detail_url":"https://comicvine.gamespot.com/corto-maltese-19/4000-339205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25380/","id":25380,"name":"Absolute Vision","site_detail_url":"https://comicvine.gamespot.com/the-avengers-254-absolute-vision/4000-25380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121153/","id":121153,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-3/4000-121153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162535/","id":162535,"name":"Titansmania!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-6-titansmania/4000-162535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123631/","id":123631,"name":"Suffer A Witch To Live","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-276-suffer-a-witch-to-live/4000-123631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25268/","id":25268,"name":"'Tis Better To Give!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-150-tis-better-to-give/4000-25268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221518/","id":221518,"name":"Firefight","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-7-firefight/4000-221518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116628/","id":116628,"name":"The Wizard City Warrior / $ellout or Manna from Mando","site_detail_url":"https://comicvine.gamespot.com/action-comics-565-the-wizard-city-warrior-ellout-o/4000-116628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133798/","id":133798,"name":"Ultimate Victory!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-43-ultimate-victory/4000-133798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25311/","id":25311,"name":"The Only Thing to Fear...","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-25-the-only-thing-to-fear/4000-25311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25291/","id":25291,"name":"Such Sweet Sorrow...","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-19-such-sweet-sorrow/4000-25291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114112/","id":114112,"name":"The Second Secret","site_detail_url":"https://comicvine.gamespot.com/daredevil-216-the-second-secret/4000-114112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275879/","id":275879,"name":"Il ritorno dei Kundingas","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-36-il-ritorno-dei-kundingas/4000-275879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339204/","id":339204,"name":"","site_detail_url":"https://comicvine.gamespot.com/corto-maltese-18/4000-339204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25295/","id":25295,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/power-pack-8-monsters/4000-25295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25257/","id":25257,"name":"Sea Cruise","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-69-sea-cruise/4000-25257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25214/","id":25214,"name":"Return Flight","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-6-return-flight/4000-25214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25196/","id":25196,"name":"Oh, Say, Can't You See...?","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-42-oh-say-cant-you-see/4000-25196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25279/","id":25279,"name":"An Age Undreamed Of","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-190-an-age-undreamed-of/4000-25279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25250/","id":25250,"name":"The Sins of My Father","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-261-the-sins-of-my-father/4000-25250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25286/","id":25286,"name":"The Hollow Heart","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-24-the-hollow-heart/4000-25286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25277/","id":25277,"name":"Ragnarok and Ruin!","site_detail_url":"https://comicvine.gamespot.com/thor-352-ragnarok-and-ruin/4000-25277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133250/","id":133250,"name":"Amazing Fantasy #15; Amazing Spider-Man #1-29","site_detail_url":"https://comicvine.gamespot.com/the-official-marvel-index-to-the-amazing-spider-ma/4000-133250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25255/","id":25255,"name":"Prophecy","site_detail_url":"https://comicvine.gamespot.com/daredevil-215-prophecy/4000-25255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25253/","id":25253,"name":"\"...And Other Strangers\"","site_detail_url":"https://comicvine.gamespot.com/captain-america-302-and-other-strangers/4000-25253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25231/","id":25231,"name":"Shadows","site_detail_url":"https://comicvine.gamespot.com/vigilante-14-shadows/4000-25231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25251/","id":25251,"name":"Deciding Factor!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-252-deciding-factor/4000-25251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467986/","id":467986,"name":"","site_detail_url":"https://comicvine.gamespot.com/de-new-teen-titans-2/4000-467986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25217/","id":25217,"name":"Heavy Metal","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-235-heavy-metal/4000-25217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25270/","id":25270,"name":"Man and Dragon Man","site_detail_url":"https://comicvine.gamespot.com/power-pack-7-man-and-dragon-man/4000-25270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25220/","id":25220,"name":"The Terror of Trigon!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-5-the-terror-of-trigon/4000-25220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118523/","id":118523,"name":"Myth, Memory and Legend","site_detail_url":"https://comicvine.gamespot.com/captain-britain-1-myth-memory-and-legend/4000-118523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25128/","id":25128,"name":"Claws","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-234-claws/4000-25128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25109/","id":25109,"name":"--Catch a Falling Starman!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-41--catch-a-falling-starman/4000-25109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25178/","id":25178,"name":"Two Girls out to have Fun","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-189-two-girls-out-to-have-fun/4000-25178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25182/","id":25182,"name":"Shadowman","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-23-shadowman/4000-25182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25177/","id":25177,"name":"Ragnarok & Roll, Too!","site_detail_url":"https://comicvine.gamespot.com/thor-351-ragnarok-roll-too/4000-25177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176003/","id":176003,"name":"The Day All Hell Broke Loose","site_detail_url":"https://comicvine.gamespot.com/blue-devil-annual-1-the-day-all-hell-broke-loose/4000-176003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25154/","id":25154,"name":"The Challenge of Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-260-the-challenge-of-hobgob/4000-25154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25074/","id":25074,"name":"Who is Captain Paragon?","site_detail_url":"https://comicvine.gamespot.com/captain-paragon-and-the-sentinels-of-justice-3-who/4000-25074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25155/","id":25155,"name":"Deceptions!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-251-deceptions/4000-25155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25173/","id":25173,"name":"Mysterio Times Two!","site_detail_url":"https://comicvine.gamespot.com/questprobe-2-mysterio-times-two/4000-25173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25131/","id":25131,"name":".. Torment!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-4-torment/4000-25131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25172/","id":25172,"name":"Secrets","site_detail_url":"https://comicvine.gamespot.com/power-pack-6-secrets/4000-25172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95258/","id":95258,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-muppets-take-manhattan-3/4000-95258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25002/","id":25002,"name":"A Child Shall Lead them!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-148-a-child-shall-lead-them/4000-25002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24949/","id":24949,"name":"The Hunting","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-4-the-hunting/4000-24949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23780/","id":23780,"name":"With One Magic Word!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-annual-3-with-one-magic-word/4000-23780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25024/","id":25024,"name":"The Shadow Within","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-22-the-shadow-within/4000-25024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64426/","id":64426,"name":"The Scorpion Takes a Bride!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-18-the-scorpion-take/4000-64426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140262/","id":140262,"name":"The End of the Justice League!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-annual-2-the-end-of-the-/4000-140262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24997/","id":24997,"name":"Terror","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-and-wolverine-2-terror/4000-24997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280291/","id":280291,"name":"Il libro di Toth","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-33-il-libro-di-toth/4000-280291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25006/","id":25006,"name":"The Road Not Taken!","site_detail_url":"https://comicvine.gamespot.com/prince-namor-the-sub-mariner-4-the-road-not-taken/4000-25006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25004/","id":25004,"name":"Hermit-Age!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-97-hermit-age/4000-25004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95257/","id":95257,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-muppets-take-manhattan-2/4000-95257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24961/","id":24961,"name":"The light that failed","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-49-the-light-that-failed/4000-24961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24846/","id":24846,"name":"Flashback (The Origin of Jemm)","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-3-flashback-the-origin-of-jemm/4000-24846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147805/","id":147805,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-new-york-city-outlaws-1/4000-147805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24880/","id":24880,"name":"The Sinister Secret of Spider-Man's New Costume!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-258-the-sinister-secret-of-/4000-24880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24884/","id":24884,"name":"Lies","site_detail_url":"https://comicvine.gamespot.com/daredevil-212-lies/4000-24884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24903/","id":24903,"name":"The Prodigial Son !","site_detail_url":"https://comicvine.gamespot.com/rom-annual-3-the-prodigial-son/4000-24903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24881/","id":24881,"name":"The Snows of Summer","site_detail_url":"https://comicvine.gamespot.com/the-avengers-249-the-snows-of-summer/4000-24881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24901/","id":24901,"name":"The Twain Shall Meet!","site_detail_url":"https://comicvine.gamespot.com/prince-namor-the-sub-mariner-3-the-twain-shall-mee/4000-24901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24851/","id":24851,"name":"Souls as white as heaven... as Black as Hell!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-3-souls-as-white-as-heaven-as-/4000-24851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95256/","id":95256,"name":"The Muppets Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-muppets-take-manhattan-1-the-muppets-take-manh/4000-95256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134308/","id":134308,"name":"Who Is Captain Hero...?","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-111-who-is-captain-hero/4000-134308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24859/","id":24859,"name":"the Re-Combatants","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-48-the-re-combatants/4000-24859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121062/","id":121062,"name":"TMNT vs. the Mousers","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-2-tmnt-vs-the-mousers/4000-121062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24803/","id":24803,"name":"The Dagger At the End of the Tunnel","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-95-the-dagger-at-the-en/4000-24803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24789/","id":24789,"name":"Days of Rage!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-300-days-of-rage/4000-24789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24747/","id":24747,"name":"The Tunnel","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-2-the-tunnel/4000-24747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24760/","id":24760,"name":"Final Conflict!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-47-final-conflict/4000-24760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143110/","id":143110,"name":"Night and Day!","site_detail_url":"https://comicvine.gamespot.com/world-s-finest-comics-308-night-and-day/4000-143110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24734/","id":24734,"name":"Detroit is Dynamite!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-38-detroit-is-dynamite/4000-24734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23785/","id":23785,"name":"The Collected Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-annual-7-the-collected-spider-man/4000-23785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23804/","id":23804,"name":"The Muppets Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-super-special-32-the-muppets-take-ma/4000-23804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24782/","id":24782,"name":"This Hungry God","site_detail_url":"https://comicvine.gamespot.com/daredevil-211-this-hungry-god/4000-24782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24784/","id":24784,"name":"Private Eyes","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-67-private-eyes/4000-24784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24783/","id":24783,"name":"Bodies and Souls!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-136-bodies-and-souls/4000-24783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24800/","id":24800,"name":"The Once and Future Man!","site_detail_url":"https://comicvine.gamespot.com/prince-namor-the-sub-mariner-2-the-once-and-future/4000-24800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24743/","id":24743,"name":"The End of His Rope!","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-28-the-end-of-his-rope/4000-24743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24752/","id":24752,"name":"The Search for Raven","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-2-the-search-for-raven/4000-24752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24759/","id":24759,"name":"The Living Legends of Superman; Last Son of Krypton; The Exile at the Edge of Eternity","site_detail_url":"https://comicvine.gamespot.com/superman-400-the-living-legends-of-superman-last-s/4000-24759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23779/","id":23779,"name":"Justice Society of America","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-3-justice-society-of-amer/4000-23779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24694/","id":24694,"name":"Strange Days Have Found Us!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-299-strange-days-have-found-us/4000-24694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24698/","id":24698,"name":"Hometown Boy","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-145-hometown-boy/4000-24698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24661/","id":24661,"name":"The Arrival","site_detail_url":"https://comicvine.gamespot.com/jemm-son-of-saturn-1-the-arrival/4000-24661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225156/","id":225156,"name":"Secrets; Runaway","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-power-pack-1-secrets-runaway/4000-225156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24692/","id":24692,"name":"Planet-Fall","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-270-planet-fall/4000-24692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24687/","id":24687,"name":"Introducing...Puma!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-256-introducingpuma/4000-24687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24690/","id":24690,"name":"Survivor","site_detail_url":"https://comicvine.gamespot.com/daredevil-210-survivor/4000-24690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279768/","id":279768,"name":"La camera del tempo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-30-la-camera-del-tempo/4000-279768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24701/","id":24701,"name":"A New Age Dawning?","site_detail_url":"https://comicvine.gamespot.com/prince-namor-the-sub-mariner-1-a-new-age-dawning/4000-24701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24665/","id":24665,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-9/4000-24665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24662/","id":24662,"name":"Blessed is the Peacemaker","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-230-blessed-is-the-peace/4000-24662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24653/","id":24653,"name":"\"The Domino Principle!\"","site_detail_url":"https://comicvine.gamespot.com/blackhawk-272-the-domino-principle/4000-24653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76181/","id":76181,"name":"Snake-Eyes: The Origin (Part 2)","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-27-snake-eyes-the-orig/4000-76181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24621/","id":24621,"name":"What If Spider-Man's Uncle Ben Had Lived?","site_detail_url":"https://comicvine.gamespot.com/what-if-46-what-if-spider-mans-uncle-ben-had-lived/4000-24621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24608/","id":24608,"name":"My Sword I Lay Down!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-144-my-sword-i-lay-down/4000-24608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24598/","id":24598,"name":"The Chosen One","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-66-the-chosen-one/4000-24598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24620/","id":24620,"name":"The Past...of Future Days","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-184-the-pastof-future-days/4000-24620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24619/","id":24619,"name":"The Wild Hunt","site_detail_url":"https://comicvine.gamespot.com/thor-346-the-wild-hunt/4000-24619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279767/","id":279767,"name":"Il terzo occhio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-29-il-terzo-occhio/4000-279767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76180/","id":76180,"name":"Subject: Snake-Eyes","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-26-subject-snake-eyes/4000-76180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24594/","id":24594,"name":"Gatherings","site_detail_url":"https://comicvine.gamespot.com/the-avengers-246-gatherings/4000-24594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24560/","id":24560,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-8/4000-24560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24557/","id":24557,"name":"Bitter Ashes","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-229-bitter-ashes/4000-24557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24495/","id":24495,"name":"... And One Shall Surely Die","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-12-and-one-shall-surely-die/4000-24495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24449/","id":24449,"name":"...That Earths May Live!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-35-that-earths-may-live/4000-24449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24532/","id":24532,"name":"The Judas Contract: Book Four - Finale!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-annual-3-the-judas-contra/4000-24532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24518/","id":24518,"name":"He'll never make me cry","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-183-hell-never-make-me-cry/4000-24518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24517/","id":24517,"name":"That Was No Lady","site_detail_url":"https://comicvine.gamespot.com/thor-345-that-was-no-lady/4000-24517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24500/","id":24500,"name":"The Deadliest Night of my Life","site_detail_url":"https://comicvine.gamespot.com/daredevil-208-the-deadliest-night-of-my-life/4000-24500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279764/","id":279764,"name":"La sfera di cristallo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-28-la-sfera-di-cristallo/4000-279764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24465/","id":24465,"name":"War -- of the World?","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-228-war-of-the-world/4000-24465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24496/","id":24496,"name":"With Great Power...","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-254-with-great-power/4000-24496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24468/","id":24468,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-7/4000-24468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24507/","id":24507,"name":"Bring Back My Goblin to Me","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-165-bring-back-my-goblin-to-me/4000-24507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24477/","id":24477,"name":"The Judas Contract: Book Three - There Shall Come a Titan!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-44-the-judas-contract-boo/4000-24477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24420/","id":24420,"name":"What If The Hulk Went Berserk?","site_detail_url":"https://comicvine.gamespot.com/what-if-45-what-if-the-hulk-went-berserk/4000-24420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24395/","id":24395,"name":"Set-Up","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-11-set-up/4000-24395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24357/","id":24357,"name":"Survival of the Fittest!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-70-survival-of-the-fittest/4000-24357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24406/","id":24406,"name":"A Small Loss","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-267-a-small-loss/4000-24406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24375/","id":24375,"name":"The Judas Contract: Book Two - Betrayal!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-43-the-judas-contract-boo/4000-24375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24377/","id":24377,"name":"Origin","site_detail_url":"https://comicvine.gamespot.com/vigilante-7-origin/4000-24377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24418/","id":24418,"name":"Whatever Happened to Balder the Brave?","site_detail_url":"https://comicvine.gamespot.com/thor-344-whatever-happened-to-balder-the-brave/4000-24418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24402/","id":24402,"name":"Chariatan!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-65-chariatan/4000-24402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24368/","id":24368,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-6/4000-24368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24400/","id":24400,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/daredevil-207-ultimatum/4000-24400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121041/","id":121041,"name":null,"site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-1/4000-121041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111120/","id":111120,"name":"Blood Battle!","site_detail_url":"https://comicvine.gamespot.com/alpha-flight-10-blood-battle/4000-111120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24301/","id":24301,"name":"If This Be Walrus...!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-131-if-this-be-walrus/4000-24301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24308/","id":24308,"name":"Turning Point!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-295-turning-point/4000-24308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24262/","id":24262,"name":"Mind Games!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-176-mind-games/4000-24262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24277/","id":24277,"name":"The Judas Contract: Book One - The Eyes of Tara Markov!","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-teen-titans-42-the-judas-contract-boo/4000-24277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24279/","id":24279,"name":"Memories","site_detail_url":"https://comicvine.gamespot.com/vigilante-6-memories/4000-24279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24300/","id":24300,"name":"Every Good and Perfect Gift","site_detail_url":"https://comicvine.gamespot.com/daredevil-206-every-good-and-perfect-gift/4000-24300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24321/","id":24321,"name":"If I Should Die Before I Wake...","site_detail_url":"https://comicvine.gamespot.com/thor-343-if-i-should-die-before-i-wake/4000-24321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24303/","id":24303,"name":"Book Four: Resurrection","site_detail_url":"https://comicvine.gamespot.com/elektra-saga-4-book-four-resurrection/4000-24303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24297/","id":24297,"name":"Homecoming!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-252-homecoming/4000-24297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24269/","id":24269,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-5/4000-24269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24330/","id":24330,"name":"Scaredy Cat!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-15-scaredy-cat/4000-24330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542732/","id":542732,"name":"Mit ÄCHZ und ORKH quer durch New York","site_detail_url":"https://comicvine.gamespot.com/clever-and-smart-70-mit-achz-und-orkh-quer-durch-n/4000-542732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213846/","id":213846,"name":"Fantastic Four Special Edition","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-special-edition-1-fantastic-four-sp/4000-213846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24217/","id":24217,"name":"What if Captain America Were Revived Today?","site_detail_url":"https://comicvine.gamespot.com/what-if-44-what-if-captain-america-were-revived-to/4000-24217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24205/","id":24205,"name":"Boomerang!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-294-boomerang/4000-24205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327918/","id":327918,"name":"The Hatred of the Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-578-the-hatred-/4000-327918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24191/","id":24191,"name":"Endings","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-251-endings/4000-24191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24214/","id":24214,"name":"Marking Time","site_detail_url":"https://comicvine.gamespot.com/the-thing-10-marking-time/4000-24214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24195/","id":24195,"name":"The Gael","site_detail_url":"https://comicvine.gamespot.com/daredevil-205-the-gael/4000-24195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24173/","id":24173,"name":"Witnesses","site_detail_url":"https://comicvine.gamespot.com/vigilante-5-witnesses/4000-24173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24192/","id":24192,"name":"Easy Come...Easy Go!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-242-easy-comeeasy-go/4000-24192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279759/","id":279759,"name":"Ritorno dall'aldilà","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-25-ritorno-dallaldila/4000-279759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24206/","id":24206,"name":"Though My Life Be Forfeit...","site_detail_url":"https://comicvine.gamespot.com/iron-man-181-though-my-life-be-forfeit/4000-24206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24215/","id":24215,"name":"The Last Viking","site_detail_url":"https://comicvine.gamespot.com/thor-342-the-last-viking/4000-24215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24200/","id":24200,"name":"Book Three: Last Hand","site_detail_url":"https://comicvine.gamespot.com/elektra-saga-3-book-three-last-hand/4000-24200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328719/","id":328719,"name":"Il Pescatore","site_detail_url":"https://comicvine.gamespot.com/albi-di-orient-express-3-il-pescatore/4000-328719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24165/","id":24165,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-4/4000-24165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217561/","id":217561,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvel-fumetti-book-1/4000-217561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24147/","id":24147,"name":"Crisis on Earth-X! The Prequel","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-32-crisis-on-earth-x-the-prequel/4000-24147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24097/","id":24097,"name":"Assassin!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-293-assassin/4000-24097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24038/","id":24038,"name":"Uncle Sam Wants You!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-31-uncle-sam-wants-you/4000-24038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24061/","id":24061,"name":"Life blood!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-40-life-blood/4000-24061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24111/","id":24111,"name":"The Past Is A Bucket Of Ashes","site_detail_url":"https://comicvine.gamespot.com/thor-341-the-past-is-a-bucket-of-ashes/4000-24111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24086/","id":24086,"name":"Confessions","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-250-confessions/4000-24086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160823/","id":160823,"name":"1: The Blind Leading The Blind, 2: Ashes To Ashes","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-daredevil-special-edition-1-1-the-b/4000-160823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24093/","id":24093,"name":"Book Two: The Gauntlet","site_detail_url":"https://comicvine.gamespot.com/elektra-saga-2-book-two-the-gauntlet/4000-24093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24112/","id":24112,"name":"What Happened To Kitty ?","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-179-what-happened-to-kitty/4000-24112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24069/","id":24069,"name":"Passion Play","site_detail_url":"https://comicvine.gamespot.com/vigilante-4-passion-play/4000-24069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24089/","id":24089,"name":"Vengeance of the Victim","site_detail_url":"https://comicvine.gamespot.com/daredevil-204-vengeance-of-the-victim/4000-24089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24098/","id":24098,"name":"This Ancient Enemy!","site_detail_url":"https://comicvine.gamespot.com/iron-man-180-this-ancient-enemy/4000-24098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24088/","id":24088,"name":"To Tame a Tumbler","site_detail_url":"https://comicvine.gamespot.com/captain-america-291-to-tame-a-tumbler/4000-24088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23934/","id":23934,"name":"Frost Bite","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-20-frost-bite/4000-23934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23939/","id":23939,"name":"Blood Sport","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-223-blood-sport/4000-23939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133799/","id":133799,"name":"Day of the Black Dragon!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-30-day-of-the-black-dragon/4000-133799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23986/","id":23986,"name":"Starting Over!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-138-starting-over/4000-23986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23969/","id":23969,"name":"Secrets","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-249-secrets/4000-23969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23994/","id":23994,"name":"Hell Hath No Fury...","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-178-hell-hath-no-fury/4000-23994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23970/","id":23970,"name":"The Ghost of Jessica Drew!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-240-the-ghost-of-jessica-drew/4000-23970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23953/","id":23953,"name":"Hunt","site_detail_url":"https://comicvine.gamespot.com/vigilante-3-hunt/4000-23953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23975/","id":23975,"name":"Book One: The Wall","site_detail_url":"https://comicvine.gamespot.com/elektra-saga-1-book-one-the-wall/4000-23975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23974/","id":23974,"name":"Cry of the Spirit","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-63-cry-of-the-spirit/4000-23974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23997/","id":23997,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-classics-starring-the-x-men-3/4000-23997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23977/","id":23977,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/the-falcon-4-resurrection/4000-23977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23865/","id":23865,"name":"True Confessions!","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-4-true-confessions/4000-23865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23831/","id":23831,"name":"Golden Boy","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-19-golden-boy/4000-23831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23882/","id":23882,"name":"Twinkle, Twinkle","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-137-twinkle-twinkle/4000-23882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23876/","id":23876,"name":"Old Soldiers Never Die!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-291-old-soldiers-never-die/4000-23876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23829/","id":23829,"name":"The Slayer from the Dark Dimension","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-65-the-slayer-from-the-dark-dim/4000-23829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23880/","id":23880,"name":"Editori-Gal; The Web Tightens!; Marvel Ann-fare","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-12-editori-gal-the-web-tightens-mar/4000-23880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142117/","id":142117,"name":"The Shadow of the Executioner","site_detail_url":"https://comicvine.gamespot.com/world-s-finest-comics-299-the-shadow-of-the-execut/4000-142117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23836/","id":23836,"name":"Death Games","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-222-death-games/4000-23836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23820/","id":23820,"name":"A Man Called Doome!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-29-a-man-called-doome/4000-23820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23862/","id":23862,"name":"And He Strikes Like A Thunderball; The Kid Who Collects Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-248-and-he-strikes-like-a-t/4000-23862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23892/","id":23892,"name":"Two-Fisted Feet; What Th' ?!;","site_detail_url":"https://comicvine.gamespot.com/the-thing-7-two-fisted-feet-what-th/4000-23892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23894/","id":23894,"name":"Sanction","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-177-sanction/4000-23894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23849/","id":23849,"name":"Guilt","site_detail_url":"https://comicvine.gamespot.com/vigilante-2-guilt/4000-23849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23863/","id":23863,"name":"Late Night of the Super-Stars","site_detail_url":"https://comicvine.gamespot.com/the-avengers-239-late-night-of-the-super-stars/4000-23863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23869/","id":23869,"name":"Savages !","site_detail_url":"https://comicvine.gamespot.com/daredevil-202-savages/4000-23869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23815/","id":23815,"name":"The Jekyll-Hyde Decision / The Ring Quest","site_detail_url":"https://comicvine.gamespot.com/blue-ribbon-comics-4-the-jekyll-hyde-decision-the-/4000-23815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23896/","id":23896,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-classics-starring-the-x-men-2/4000-23896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23666/","id":23666,"name":"","site_detail_url":"https://comicvine.gamespot.com/moon-knight-the-special-edition-3/4000-23666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146373/","id":146373,"name":"Vol. 7, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198401-vol-7-no-10/4000-146373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385589/","id":385589,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-teen-titans-annual-1/4000-385589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23870/","id":23870,"name":"The Debt!","site_detail_url":"https://comicvine.gamespot.com/dazzler-30-the-debt/4000-23870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23873/","id":23873,"name":"Faith","site_detail_url":"https://comicvine.gamespot.com/the-falcon-3-faith/4000-23873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23739/","id":23739,"name":"The Hatred Of The Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-85-the-hatred-of-the-ho/4000-23739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23718/","id":23718,"name":"Dark Is My Love, and Deadly!","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-3-dark-is-my-love-and-deadly/4000-23718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22717/","id":22717,"name":"The Murder Machine","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-annual-2-the-murder-machine/4000-22717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468660/","id":468660,"name":"","site_detail_url":"https://comicvine.gamespot.com/nightslayer-1/4000-468660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140256/","id":140256,"name":"If I Should Die Before I Wake...","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-annual-1-if-i-should-die/4000-140256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23691/","id":23691,"name":"Beasts","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-221-beasts/4000-23691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23676/","id":23676,"name":"By Hatred Possessed!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-28-by-hatred-possessed/4000-23676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23733/","id":23733,"name":"Webs","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-136-webs/4000-23733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23743/","id":23743,"name":"Decisions","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-176-decisions/4000-23743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23726/","id":23726,"name":"Till Death Do Us Part...","site_detail_url":"https://comicvine.gamespot.com/hawkeye-4-till-death-do-us-part/4000-23726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278411/","id":278411,"name":"Il libro degli arcani","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-21-il-libro-degli-arcani/4000-278411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23737/","id":23737,"name":"SOUL GAMES!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-100-soul-games/4000-23737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23728/","id":23728,"name":"Have Armor Will Travel","site_detail_url":"https://comicvine.gamespot.com/iron-man-177-have-armor-will-travel/4000-23728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23717/","id":23717,"name":"Mazes!","site_detail_url":"https://comicvine.gamespot.com/captain-america-288-mazes/4000-23717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398232/","id":398232,"name":"Arcade's Grote Moordspel","site_detail_url":"https://comicvine.gamespot.com/x-mannen-1-arcade-s-grote-moordspel/4000-398232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23723/","id":23723,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/the-falcon-2-legion/4000-23723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23617/","id":23617,"name":"Bellyful of Blues!","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-2-bellyful-of-blues/4000-23617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23635/","id":23635,"name":"Down Deep in Darkness!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-135-down-deep-in-darkness/4000-23635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22714/","id":22714,"name":"The Ultra War!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-2-the-ultra-war/4000-22714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23585/","id":23585,"name":"Squeeze Play","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-18-squeeze-play/4000-23585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23602/","id":23602,"name":"A Fable For Our Times","site_detail_url":"https://comicvine.gamespot.com/vigilante-1-a-fable-for-our-times/4000-23602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23574/","id":23574,"name":"A Spectre Is Haunting the Multiverse!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-27-a-spectre-is-haunting-the-mul/4000-23574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23627/","id":23627,"name":"Beating the Odds","site_detail_url":"https://comicvine.gamespot.com/hawkeye-3-beating-the-odds/4000-23627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23616/","id":23616,"name":"Future Shock","site_detail_url":"https://comicvine.gamespot.com/captain-america-287-future-shock/4000-23616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413358/","id":413358,"name":"Christmas in Dallas","site_detail_url":"https://comicvine.gamespot.com/spider-man-christmas-in-dallas-dallas-times-herald/4000-413358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23624/","id":23624,"name":"Winners and Losers","site_detail_url":"https://comicvine.gamespot.com/the-falcon-1-winners-and-losers/4000-23624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22723/","id":22723,"name":"The Hunters and the Hunted!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-annual-6-the-hunters-and-the-hunted/4000-22723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23534/","id":23534,"name":"Chapter One: The Priest","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-1-chapter-one-the-priest/4000-23534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23491/","id":23491,"name":"Talons Across Time!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-26-talons-across-time/4000-23491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23540/","id":23540,"name":"Choices","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-259-choices/4000-23540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23502/","id":23502,"name":"On Wings of Fire!","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-17-on-wings-of-fire/4000-23502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196308/","id":196308,"name":"This Property is Condemned! / Government Vampire / I... Baby Vampire! / Can't Wait to Get Off Work / I Am a Middle-Aged Werewolf!","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-321-this-property-is-condemned-go/4000-196308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23531/","id":23531,"name":"Sacrifice Play","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-245-sacrifice-play/4000-23531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23542/","id":23542,"name":"Point Blank!","site_detail_url":"https://comicvine.gamespot.com/hawkeye-2-point-blank/4000-23542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23538/","id":23538,"name":"Power be the Prize!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-61-power-be-the-prize/4000-23538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278403/","id":278403,"name":"Orrore nello spazio","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-19-orrore-nello-spazio/4000-278403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23533/","id":23533,"name":"One Man In Search of Himself","site_detail_url":"https://comicvine.gamespot.com/captain-america-286-one-man-in-search-of-himself/4000-23533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23546/","id":23546,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-kree-skrull-war-starring-the-avengers-2/4000-23546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23532/","id":23532,"name":"I Want to be a Avenger!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-236-i-want-to-be-a-avenger/4000-23532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146370/","id":146370,"name":"Vol. 7, No. 7","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198310-vol-7-no-7/4000-146370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23451/","id":23451,"name":"Interlude","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-258-interlude/4000-23451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23419/","id":23419,"name":"Blackout!","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-16-blackout/4000-23419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23406/","id":23406,"name":"The Infinity Syndrome!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-25-the-infinity-syndrome/4000-23406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23460/","id":23460,"name":"Exploding Myths","site_detail_url":"https://comicvine.gamespot.com/moon-knight-33-exploding-myths/4000-23460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23441/","id":23441,"name":"Ordeals","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-244-ordeals/4000-23441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23467/","id":23467,"name":"Turning Point","site_detail_url":"https://comicvine.gamespot.com/the-thing-3-turning-point/4000-23467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321626/","id":321626,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-super-heroes-annual-1984/4000-321626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23458/","id":23458,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-kree-skrull-war-starring-the-avengers-1/4000-23458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23442/","id":23442,"name":"Havoc on the Homefront!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-235-havoc-on-the-homefront/4000-23442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23385/","id":23385,"name":"For Beauty Passed Away","site_detail_url":"https://comicvine.gamespot.com/the-thing-2-for-beauty-passed-away/4000-23385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23325/","id":23325,"name":"The Man Who'll Know Too Much!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-24-the-man-wholl-know-too-much/4000-23325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23338/","id":23338,"name":"Breakout","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-15-breakout/4000-23338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120257/","id":120257,"name":"Showdown!","site_detail_url":"https://comicvine.gamespot.com/action-comics-546-showdown/4000-120257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138215/","id":138215,"name":"Arrivals","site_detail_url":"https://comicvine.gamespot.com/daredevils-8-arrivals/4000-138215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23366/","id":23366,"name":"Journey","site_detail_url":"https://comicvine.gamespot.com/daredevil-197-journey/4000-23366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278401/","id":278401,"name":"La città delle ombre diafane","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-17-la-citta-delle-ombre-diafane/4000-278401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23363/","id":23363,"name":"The Witch's Tale","site_detail_url":"https://comicvine.gamespot.com/the-avengers-234-the-witchs-tale/4000-23363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23297/","id":23297,"name":"The Best Things In Life Are Free... But Everything Else Costs Money!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-131-the-best-things-in-life-are-fre/4000-23297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23268/","id":23268,"name":"","site_detail_url":"https://comicvine.gamespot.com/ronin-1/4000-23268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23244/","id":23244,"name":"When Fate Thy Measure Takes...!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-23-when-fate-thy-measure-takes/4000-23244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23291/","id":23291,"name":"Today is the First Day of the Rest of My Life!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-285-today-is-the-first-day-of-/4000-23291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23257/","id":23257,"name":"Enforcer","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-14-enforcer/4000-23257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23306/","id":23306,"name":"Like a Bat Out of Heaven!","site_detail_url":"https://comicvine.gamespot.com/thor-333-like-a-bat-out-of-heaven/4000-23306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138214/","id":138214,"name":"Rough Justice","site_detail_url":"https://comicvine.gamespot.com/daredevils-7-rough-justice/4000-138214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23305/","id":23305,"name":"Lifelines","site_detail_url":"https://comicvine.gamespot.com/the-thing-1-lifelines/4000-23305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23158/","id":23158,"name":"The Powerstone Corrupts -- Absolutely!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-22-the-powerstone-corrupts-absol/4000-23158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23202/","id":23202,"name":"Trapped!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-255-trapped/4000-23202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138213/","id":138213,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevils-6/4000-138213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23219/","id":23219,"name":"Dancin' in the Dark","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-170-dancin-in-the-dark/4000-23219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275850/","id":275850,"name":"La spada di Re Artù","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-15-la-spada-di-re-artu/4000-275850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23194/","id":23194,"name":"On Your Belly You Shall Crawl, And Dust You Shall Eat!","site_detail_url":"https://comicvine.gamespot.com/captain-america-282-on-your-belly-you-shall-crawl-/4000-23194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23210/","id":23210,"name":"So This Is...The End!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-100-so-this-isthe-end/4000-23210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23075/","id":23075,"name":"A Tale of Three Citadels!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-21-a-tale-of-three-citadels/4000-23075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23117/","id":23117,"name":"The Minds Of Mantracora","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-254-the-minds-of-mantracora/4000-23117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23087/","id":23087,"name":"Howl","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-12-howl/4000-23087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23085/","id":23085,"name":"Days of Future Past!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-57-days-of-future-past/4000-23085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23124/","id":23124,"name":"The Light That Never Was!","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-8-the-light-that-never-was/4000-23124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138212/","id":138212,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevils-5/4000-138212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23071/","id":23071,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-fly-1/4000-23071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23139/","id":23139,"name":"Catacombs","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-169-catacombs/4000-23139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111376/","id":111376,"name":"And Who Shall Clothe Himself In Iron?","site_detail_url":"https://comicvine.gamespot.com/iron-man-170-and-who-shall-clothe-himself-in-iron/4000-111376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275925/","id":275925,"name":"La maledizione","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-14-la-maledizione/4000-275925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301218/","id":301218,"name":"The Invasion Begins!","site_detail_url":"https://comicvine.gamespot.com/thunder-agents-1-the-invasion-begins/4000-301218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23111/","id":23111,"name":"Before The Fall!","site_detail_url":"https://comicvine.gamespot.com/captain-america-281-before-the-fall/4000-23111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23021/","id":23021,"name":"Now Strikes the Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-239-now-strikes-the-hobgobl/4000-23021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23031/","id":23031,"name":"Quest","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-253-quest/4000-23031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108635/","id":108635,"name":"","site_detail_url":"https://comicvine.gamespot.com/obnoxio-the-clown-1/4000-108635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22987/","id":22987,"name":"...For the Dark Things Cannot Stand the Light...!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-20-for-the-dark-things-cannot-st/4000-22987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23028/","id":23028,"name":"The Double!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-118-the-double/4000-23028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22999/","id":22999,"name":"Waking Nightmares","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-11-waking-nightmares/4000-22999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326732/","id":326732,"name":"The Wrath of the Wrecker!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-1-the-wrath-of-the-wrecker/4000-326732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138211/","id":138211,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevils-4/4000-138211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23041/","id":23041,"name":"The Moonwraith, Three Sixes, and a Beast","site_detail_url":"https://comicvine.gamespot.com/moon-knight-30-the-moonwraith-three-sixes-and-a-be/4000-23041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23035/","id":23035,"name":"Blackout!","site_detail_url":"https://comicvine.gamespot.com/iron-man-169-blackout/4000-23035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23018/","id":23018,"name":"E. M. Phone Home","site_detail_url":"https://comicvine.gamespot.com/e-man-1-e-m-phone-home/4000-23018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275924/","id":275924,"name":"Un vampiro a New York","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-13-un-vampiro-a-new-york/4000-275924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117508/","id":117508,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-315/4000-117508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23039/","id":23039,"name":"Vid Wars!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-98-vid-wars/4000-23039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23044/","id":23044,"name":"Riding Shotgun!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-92-riding-shotgun/4000-23044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22956/","id":22956,"name":"Small Miracles","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-127-small-miracles/4000-22956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22908/","id":22908,"name":"Death Considered as a State of Mind!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-19-death-considered-as-a-state-o/4000-22908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22966/","id":22966,"name":"At Death's Door!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-76-at-deaths-door/4000-22966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22920/","id":22920,"name":"Prowl","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-10-prowl/4000-22920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22918/","id":22918,"name":"The Parasite's Power Ploys!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-55-the-parasites-power-ploys/4000-22918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138202/","id":138202,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevils-3/4000-138202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22939/","id":22939,"name":"Shadow of Evils Past","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-238-shadow-of-evils-past/4000-22939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68383/","id":68383,"name":"C-D: Collector to Dracula","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-3-c-d/4000-68383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22928/","id":22928,"name":"First blood","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-29-first-blood/4000-22928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22941/","id":22941,"name":"Of Monsters and Men","site_detail_url":"https://comicvine.gamespot.com/captain-america-279-of-monsters-and-men/4000-22941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22957/","id":22957,"name":"Yesterdaze","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-97-yesterdaze/4000-22957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24099/","id":24099,"name":"\"On Death and Dying\"","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-24-on-death-and-dying/4000-24099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22962/","id":22962,"name":"Paths and Angles","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-91-paths-and-angles/4000-22962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117506/","id":117506,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-314/4000-117506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22960/","id":22960,"name":"Morning Star","site_detail_url":"https://comicvine.gamespot.com/moon-knight-29-morning-star/4000-22960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22823/","id":22823,"name":"Vengeance from Valhalla!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-18-vengeance-from-valhalla/4000-22823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22859/","id":22859,"name":"Two By Two","site_detail_url":"https://comicvine.gamespot.com/the-defenders-116-two-by-two/4000-22859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22865/","id":22865,"name":"Alone in a Crowd!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-280-alone-in-a-crowd/4000-22865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138114/","id":138114,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevils-2/4000-138114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22843/","id":22843,"name":"Terra in the night!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-28-terra-in-the-night/4000-22843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22878/","id":22878,"name":"Ferae Naturae","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-75-ferae-naturae/4000-22878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276095/","id":276095,"name":"Il teschio del destino","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-11-il-teschio-del-destino/4000-276095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22869/","id":22869,"name":"Visiting Hours","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-96-visiting-hours/4000-22869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117507/","id":117507,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-313/4000-117507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22867/","id":22867,"name":"Turning Point","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-148-turning-point/4000-22867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22750/","id":22750,"name":"To Slay the Body Electric!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-17-to-slay-the-body-electric/4000-22750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22789/","id":22789,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-250-x-factor/4000-22789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22801/","id":22801,"name":"Cop Killer!","site_detail_url":"https://comicvine.gamespot.com/moon-knight-27-cop-killer/4000-22801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138106/","id":138106,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevils-1/4000-138106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122122/","id":122122,"name":"The Futurians","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-9-the-futurians/4000-122122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22786/","id":22786,"name":"Fire in the Night!","site_detail_url":"https://comicvine.gamespot.com/dazzler-23-fire-in-the-night/4000-22786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237788/","id":237788,"name":"I Have Met The Enemy... And He Is Me!","site_detail_url":"https://comicvine.gamespot.com/superman-iii-1-i-have-met-the-enemy-and-he-is-me/4000-237788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22785/","id":22785,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/daredevil-190-resurrection/4000-22785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217546/","id":217546,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-no-prize-book-1/4000-217546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22757/","id":22757,"name":"Many Are Called...","site_detail_url":"https://comicvine.gamespot.com/camelot-3000-2-many-are-called/4000-22757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275923/","id":275923,"name":"Il segreto del Lusitania","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-10-il-segreto-del-lusitania/4000-275923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291183/","id":291183,"name":"Chaos On Campus","site_detail_url":"https://comicvine.gamespot.com/special-edition-spider-man-vs-the-hulk-1-chaos-on-/4000-291183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22798/","id":22798,"name":"The Power to Live...The Power to Die!...","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-95-the-power-to-livethe-power-to/4000-22798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22802/","id":22802,"name":"To Honor...To Die!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-89-to-honorto-die/4000-22802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117504/","id":117504,"name":"The Thing In The Tunnels","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-312-the-thing-in-the-tunnels/4000-117504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22668/","id":22668,"name":"A Mystic Reborn!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-56-a-mystic-reborn/4000-22668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22659/","id":22659,"name":"Look Out, There's a Monster Coming!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-235-look-out-theres-a-monst/4000-22659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465788/","id":465788,"name":"Spider-Man: Threat or Menace?","site_detail_url":"https://comicvine.gamespot.com/spider-man-special-1982w-spider-man-threat-or-mena/4000-465788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22629/","id":22629,"name":"The Magnetic Marauder!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-16-the-magnetic-marauder/4000-22629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21795/","id":21795,"name":"X-Men: God Loves, Man Kills","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-5-x-men-god-loves-man-kills/4000-21795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22665/","id":22665,"name":"Siege","site_detail_url":"https://comicvine.gamespot.com/daredevil-189-siege/4000-22665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22636/","id":22636,"name":"The Past and Future King!","site_detail_url":"https://comicvine.gamespot.com/camelot-3000-1-the-past-and-future-king/4000-22636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275922/","id":275922,"name":"Il Triangolo delle Bermude","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-9-il-triangolo-delle-bermude/4000-275922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23729/","id":23729,"name":"It's A Jungle Out There!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-21-its-a-jungle-out-there/4000-23729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113018/","id":113018,"name":"The Power Trap!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-94-the-power-trap/4000-113018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22680/","id":22680,"name":"No Deadly Drug!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-88-no-deadly-drug/4000-22680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22675/","id":22675,"name":"The Man Called Electro","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-146-the-man-called-electro/4000-22675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21775/","id":21775,"name":"The Three Faces of Evil!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-1-the-three-faces-of-evil/4000-21775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22593/","id":22593,"name":"What Friends Are For!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-277-what-friends-are-for/4000-22593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22581/","id":22581,"name":"Now Shall Will-O'-the-Wisp Have His Revenge!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-234-now-shall-will-o-the-wi/4000-22581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108345/","id":108345,"name":"Alison Blaire This Is Your Life!","site_detail_url":"https://comicvine.gamespot.com/dazzler-21-alison-blaire-this-is-your-life/4000-108345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76159/","id":76159,"name":"\"Tanks\" For the Memories","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-5-tanks-for-the-memori/4000-76159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23631/","id":23631,"name":"New York, New York","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-20-new-york-new-york/4000-23631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22587/","id":22587,"name":"The Widow's Bite","site_detail_url":"https://comicvine.gamespot.com/daredevil-188-the-widows-bite/4000-22587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21799/","id":21799,"name":"The Shadows of the Past!","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-6-the-shadows-of-the-past/4000-21799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22600/","id":22600,"name":"And One Shall Die!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-93-and-one-shall-die/4000-22600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22499/","id":22499,"name":"The Ozone-Master comes Calling!; Supergirl","site_detail_url":"https://comicvine.gamespot.com/superman-376-the-ozone-master-comes-calling-superg/4000-22499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22478/","id":22478,"name":"The \"Mystery Men\" of October!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-14-the-mystery-men-of-october/4000-22478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22508/","id":22508,"name":"Two From the Heart","site_detail_url":"https://comicvine.gamespot.com/the-avengers-224-two-from-the-heart/4000-22508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22506/","id":22506,"name":"Where the @$%# is Nose Norton?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-233-where-the-is-nose-norto/4000-22506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22514/","id":22514,"name":"Out of the Past!","site_detail_url":"https://comicvine.gamespot.com/dazzler-20-out-of-the-past/4000-22514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22526/","id":22526,"name":"This Evil Returning!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-92-this-evil-returning/4000-22526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23545/","id":23545,"name":"I'll Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/ka-zar-the-savage-19-ill-take-manhattan/4000-23545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21801/","id":21801,"name":"And they shall call him... Champion !","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-7-and-they-shall-call-him/4000-21801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76158/","id":76158,"name":"Operation: Wingfield","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-4-operation-wingfield/4000-76158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22513/","id":22513,"name":"Overkill","site_detail_url":"https://comicvine.gamespot.com/daredevil-187-overkill/4000-22513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22521/","id":22521,"name":"The Day the Earth Turned Green!; Unus Unchained!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual-11-the-day-the-earth-tu/4000-22521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22451/","id":22451,"name":"Look Before You Leap!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-121-look-before-you-leap/4000-22451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22429/","id":22429,"name":"Stop My Life - - I Want to Get Out! / The Racket! / Who Murdered Me? / The Day the World Changed!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-222-stop-my-life-i-want-to-get/4000-22429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22442/","id":22442,"name":"Too Many Dooms","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-246-too-many-dooms/4000-22442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22435/","id":22435,"name":"Hyde...in Plain Sight!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-232-hydein-plain-sight/4000-22435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22414/","id":22414,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-49/4000-22414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22408/","id":22408,"name":"One Day, During the War...","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-13-one-day-during-the-war/4000-22408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22439/","id":22439,"name":"Stilts","site_detail_url":"https://comicvine.gamespot.com/daredevil-186-stilts/4000-22439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76157/","id":76157,"name":"The Trojan Gambit","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-3-the-trojan-gambit/4000-76157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22437/","id":22437,"name":"Cap and the Howlers...Together Again!","site_detail_url":"https://comicvine.gamespot.com/captain-america-273-cap-and-the-howlerstogether-ag/4000-22437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22424/","id":22424,"name":"Kidnapped!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-23-kidnapped/4000-22424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22459/","id":22459,"name":"The Great Cloak & Dagger Hunt","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-70-the-great-cloak-dagg/4000-22459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193247/","id":193247,"name":"La Città del Crimine","site_detail_url":"https://comicvine.gamespot.com/mister-no-88-la-citta-del-crimine/4000-193247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22343/","id":22343,"name":"A Cold Time in the Old Town Tonight...","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-3-a-cold-time-in-the-old-tow/4000-22343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22365/","id":22365,"name":"A Gathering of Evil","site_detail_url":"https://comicvine.gamespot.com/the-avengers-222-a-gathering-of-evil/4000-22365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22356/","id":22356,"name":"A Trip on the Light Fantastic / Clark Kent is Superman / Fear for Sale! / Arrows of Vengeance!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-221-a-trip-on-the-light-fantas/4000-22356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112838/","id":112838,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-34/4000-112838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22374/","id":22374,"name":"Childhood's End","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-245-childhoods-end/4000-22374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22370/","id":22370,"name":"The Absorbing Man Wants You!","site_detail_url":"https://comicvine.gamespot.com/dazzler-18-the-absorbing-man-wants-you/4000-22370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22389/","id":22389,"name":"In Darkness Seldom Seen!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-69-in-darkness-seldom-s/4000-22389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22367/","id":22367,"name":"Mean Streets","site_detail_url":"https://comicvine.gamespot.com/captain-america-272-mean-streets/4000-22367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273278/","id":273278,"name":"La casa ai confini del mondo","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-5-la-casa-ai-confini-del-mondo/4000-273278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279077/","id":279077,"name":"Il Filtro Diabolico","site_detail_url":"https://comicvine.gamespot.com/zagor-205-il-filtro-diabolico/4000-279077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22369/","id":22369,"name":"Guts","site_detail_url":"https://comicvine.gamespot.com/daredevil-185-guts/4000-22369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76156/","id":76156,"name":"Panic At The North Pole!","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-2-panic-at-the-north-p/4000-76156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22382/","id":22382,"name":"Eyes of the Sorcerer","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-90-eyes-of-the-sorcerer/4000-22382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22386/","id":22386,"name":"Revenge!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-84-revenge/4000-22386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22334/","id":22334,"name":"Doomsday Begins at Dawn!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-12-doomsday-begins-at-dawn/4000-22334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22281/","id":22281,"name":"Beware the Wrath of... Brother Blood!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-21-beware-the-wrath-of-brother/4000-22281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22318/","id":22318,"name":"Night Screams!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-159-night-screams/4000-22318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22299/","id":22299,"name":"Beginnings and Endings","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-244-beginnings-and-endings/4000-22299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22292/","id":22292,"name":"To Fight The Unbeatable Foe!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-230-to-fight-the-unbeatable/4000-22292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22285/","id":22285,"name":"Battle Beneath the Brooklyn Bridge! / Old Friends... New Betrayals! / Dead Men do Tell Tales! / Where Off Earth are You From?","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-220-battle-beneath-the-brookly/4000-22285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22273/","id":22273,"name":"Day of the Bison, Part II: Rage!","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-2-day-of-the-bison-part-ii-r/4000-22273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22284/","id":22284,"name":"Lana Lang’s Farewell to Earth!; An Eye (and Ear) on the World!","site_detail_url":"https://comicvine.gamespot.com/superman-373-lana-langs-farewell-to-earth-an-eye-a/4000-22284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22293/","id":22293,"name":"...New Blood!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-221-new-blood/4000-22293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133800/","id":133800,"name":"Star-Smashers's Secret!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-11-star-smasherss-secret/4000-133800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22297/","id":22297,"name":"The Angel and the Octopus!","site_detail_url":"https://comicvine.gamespot.com/dazzler-17-the-angel-and-the-octopus/4000-22297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22294/","id":22294,"name":"The Mystery of Mr. X","site_detail_url":"https://comicvine.gamespot.com/captain-america-271-the-mystery-of-mr-x/4000-22294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22308/","id":22308,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-89/4000-22308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22312/","id":22312,"name":"War Without End!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-83-war-without-end/4000-22312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57311/","id":57311,"name":"Team America on a Rocky Mountain Death Race!","site_detail_url":"https://comicvine.gamespot.com/team-america-2-team-america-on-a-rocky-mountain-de/4000-57311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22230/","id":22230,"name":"Shall Earth Endure?","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-243-shall-earth-endure/4000-22230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22221/","id":22221,"name":"Nothing Can Stop The Juggernaut!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-229-nothing-can-stop-the-ju/4000-22221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22213/","id":22213,"name":"Cyborg","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-new-teen-titans-1-cyborg/4000-22213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22240/","id":22240,"name":"Cut Adrift Off the Coast of America","site_detail_url":"https://comicvine.gamespot.com/moon-knight-20-cut-adrift-off-the-coast-of-america/4000-22240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22212/","id":22212,"name":"Prison Bars do not a Cell Make! / Paper Tiger! / Jimmy Olsen of the Eagle! / We Lois Lanes have got to Stick Together!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-219-prison-bars-do-not-a-cell-/4000-22212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22199/","id":22199,"name":"Day of the Bison","site_detail_url":"https://comicvine.gamespot.com/the-fury-of-firestorm-1-day-of-the-bison/4000-22199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120768/","id":120768,"name":"H.I.V.E. and Go Seek! / Carnaval of Catastrophe!","site_detail_url":"https://comicvine.gamespot.com/action-comics-532-h-i-v-e-and-go-seek-carnaval-of-/4000-120768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22207/","id":22207,"name":"Dear Mom and Dad","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-20-dear-mom-and-dad/4000-22207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22234/","id":22234,"name":"A Gathering of Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-contest-of-champions-1-a-gatheri/4000-22234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22223/","id":22223,"name":"Someone Who Cares","site_detail_url":"https://comicvine.gamespot.com/captain-america-270-someone-who-cares/4000-22223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273057/","id":273057,"name":"Operazione Arca","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-3-operazione-arca/4000-273057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109898/","id":109898,"name":"Book Two: \"Seven Against Oblivion!\"","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-292-book-two-seven-against-oblivion/4000-109898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117497/","id":117497,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-305/4000-117497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113713/","id":113713,"name":"Operation: Lady Doomsday; ...Hot Potato!","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-1-operation-lady-dooms/4000-113713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22225/","id":22225,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/daredevil-183-childs-play/4000-22225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22159/","id":22159,"name":"Terrax the Untamed","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-242-terrax-the-untamed/4000-22159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22142/","id":22142,"name":"The Goddess from Hell! / The Ones that Almost got Away! / Strangers in the Snow! / Kryptonite-Mare!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-218-the-goddess-from-hell-the-/4000-22142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22152/","id":22152,"name":"Murder By Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-228-murder-by-spider/4000-22152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22135/","id":22135,"name":"Star Fall","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-202-star-fall/4000-22135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22127/","id":22127,"name":"The Chaos Network","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-45-the-chaos-network/4000-22127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22131/","id":22131,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-112/4000-22131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22138/","id":22138,"name":"The Light Fantastic!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-19-the-light-fantastic/4000-22138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22156/","id":22156,"name":"She's Alive","site_detail_url":"https://comicvine.gamespot.com/daredevil-182-shes-alive/4000-22156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237930/","id":237930,"name":"La vendetta di Râ","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-2-la-vendetta-di-ra/4000-237930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22072/","id":22072,"name":"Goin' Straight!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-227-goin-straight/4000-22072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22059/","id":22059,"name":"A Pretty Girl is Like A - - MALADI!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-18-a-pretty-girl-is-like-a-mal/4000-22059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22101/","id":22101,"name":"What If the Avengers Had Become the Pawns of Korvac?","site_detail_url":"https://comicvine.gamespot.com/what-if-32-what-if-the-avengers-had-become-the-paw/4000-22101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22089/","id":22089,"name":"Time Runs Like Sand!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-86-time-runs-like-sand/4000-22089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22060/","id":22060,"name":"The Phantom Planet!","site_detail_url":"https://comicvine.gamespot.com/the-phantom-zone-4-the-phantom-planet/4000-22060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22056/","id":22056,"name":"A Hero For All Seasons","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-201-a-hero-for-all-seaso/4000-22056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22100/","id":22100,"name":"Enter The Starjammers!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-156-enter-the-starjammers/4000-22100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22077/","id":22077,"name":"Last Hand","site_detail_url":"https://comicvine.gamespot.com/daredevil-181-last-hand/4000-22077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147571/","id":147571,"name":"Gli uomini in nero","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-1-gli-uomini-in-nero/4000-147571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22093/","id":22093,"name":"Rich Girls","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-80-rich-girls/4000-22093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22000/","id":22000,"name":"\"But the Cat Came Back...\"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-226-but-the-cat-came-back/4000-22000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22020/","id":22020,"name":"Master Sniper's Legacy; Worship of False Idols","site_detail_url":"https://comicvine.gamespot.com/moon-knight-17-master-snipers-legacy-worship-of-fa/4000-22020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21986/","id":21986,"name":"The Possessing of Francis Kane!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-17-the-possessing-of-francis-k/4000-21986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21991/","id":21991,"name":"Victory is Only 5,000 Centuries Away! / Who's Superman? / Santa's Super-Assistant / Reporters are not Born... / The Comic Strip Avenger!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-216-victory-is-only-5-000-cent/4000-21991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21983/","id":21983,"name":"A League Divided","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-200-a-league-divided/4000-21983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21988/","id":21988,"name":"Boogeymanllgetcha","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-46-boogeymanllgetcha/4000-21988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21992/","id":21992,"name":"Santa Claus Is A Killer!","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-220-santa-claus-is-a-killer/4000-21992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22024/","id":22024,"name":"Cloak and Dagger!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-64-cloak-and-dagger/4000-22024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22027/","id":22027,"name":"First Blood","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-155-first-blood/4000-22027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21998/","id":21998,"name":"When Strikes The Sentinel!","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom-31-when-strikes-the-s/4000-21998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22002/","id":22002,"name":"The Man Who Made A Difference!","site_detail_url":"https://comicvine.gamespot.com/captain-america-267-the-man-who-made-a-difference/4000-22002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22004/","id":22004,"name":"The Damned","site_detail_url":"https://comicvine.gamespot.com/daredevil-180-the-damned/4000-22004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22005/","id":22005,"name":"...Rising...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-105-rising/4000-22005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22021/","id":22021,"name":"Day of the Dredlox","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-79-day-of-the-dredlox/4000-22021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21979/","id":21979,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-110/4000-21979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21940/","id":21940,"name":"Shadows of the Moon; Seekers of Stone","site_detail_url":"https://comicvine.gamespot.com/moon-knight-16-shadows-of-the-moon-seekers-of-ston/4000-21940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21953/","id":21953,"name":"What if Wolverine had Killed the Hulk? \\ What if the Fantastic Four had Never Been?","site_detail_url":"https://comicvine.gamespot.com/what-if-31-what-if-wolverine-had-killed-the-hulk-w/4000-21953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21909/","id":21909,"name":"Crisis at the Crossroads in Time! / Beware the Ultra-Ant! / Take Me Out of the Ball Game / The Man Who Lived Twice! / Charity begins with Death!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-215-crisis-at-the-crossroads-i/4000-21909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21905/","id":21905,"name":"Earth Under Siege!","site_detail_url":"https://comicvine.gamespot.com/the-phantom-zone-2-earth-under-siege/4000-21905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21906/","id":21906,"name":"The Passing of the Power","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-45-the-passing-of-the-pow/4000-21906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21925/","id":21925,"name":"Endless Hate","site_detail_url":"https://comicvine.gamespot.com/dazzler-12-endless-hate/4000-21925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21952/","id":21952,"name":"Reunion","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-154-reunion/4000-21952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21924/","id":21924,"name":"Spiked!","site_detail_url":"https://comicvine.gamespot.com/daredevil-179-spiked/4000-21924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21856/","id":21856,"name":"The Lady Is For Burning!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-238-the-lady-is-for-burning/4000-21856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21840/","id":21840,"name":"The Strange Revenge of Lena Luthor! / Horde of the Insect Queen! / Clark Gives Blood.. Superman Saves Lives... / Fear has Four Walls and no Name! / Caution: Physical Fitness can be Hazardous to Your Health!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-214-the-strange-revenge-of-len/4000-21840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21850/","id":21850,"name":"All The Ways Of Power!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-215-all-the-ways-of-power/4000-21850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21849/","id":21849,"name":"\"Let Fly These Aged Wings!\"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-224-let-fly-these-aged-wing/4000-21849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325148/","id":325148,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-48/4000-325148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113270/","id":113270,"name":"Apokolips... Now!","site_detail_url":"https://comicvine.gamespot.com/marvel-and-dc-present-featuring-the-uncanny-x-men-/4000-113270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21819/","id":21819,"name":"Never Step on a Feathered Serpent!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-5-never-step-on-a-feathered-serp/4000-21819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109893/","id":109893,"name":"Eye of the Beholder!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-287-eye-of-the-beholder/4000-109893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21853/","id":21853,"name":"Paper Chase","site_detail_url":"https://comicvine.gamespot.com/daredevil-178-paper-chase/4000-21853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140230/","id":140230,"name":null,"site_detail_url":"https://comicvine.gamespot.com/stephen-king-s-creepshow-1/4000-140230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21828/","id":21828,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-108/4000-21828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67541/","id":67541,"name":"Meet Captain Britain; The Halloween Party; Blizzard's Ice Age","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-56-meet-captain-britain-the-h/4000-67541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358694/","id":358694,"name":"The Colorado Caper!","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-the-colorado-/4000-358694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20919/","id":20919,"name":"Spider-Man: Threat or Menace?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-15-spider-man-threat/4000-20919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156077/","id":156077,"name":"The Triumph Of The Green Goblin!","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-1-the-triumph-o/4000-156077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21726/","id":21726,"name":"Mind Games!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-102-mind-games/4000-21726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21709/","id":21709,"name":"Bad Day with Blackrock! / Queen of the Insect World! / Superman Interviews Clark Kent! / Watson, Watson Everwhere...And not a Holmes in Sight! / Confucius Say, \"He Who Rekindle Old Flame is Bound to Get Burned!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-213-bad-day-with-blackrock-que/4000-21709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21708/","id":21708,"name":"Revenge, Superman-Style; Perry White's Superboy Scoop!","site_detail_url":"https://comicvine.gamespot.com/superman-366-revenge-superman-style-perry-whites-s/4000-21708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21694/","id":21694,"name":"the Day the Elements Went Wild!; Whatever Happened to the Original Air Wave?","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-40-the-day-the-elements-went-wi/4000-21694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125901/","id":125901,"name":"Smokescreen","site_detail_url":"https://comicvine.gamespot.com/spider-man-storm-and-power-man-1-smokescreen/4000-125901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21722/","id":21722,"name":"The American Dreamers!","site_detail_url":"https://comicvine.gamespot.com/captain-america-264-the-american-dreamers/4000-21722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21724/","id":21724,"name":"Where Angel Fear to Tread","site_detail_url":"https://comicvine.gamespot.com/daredevil-177-where-angel-fear-to-tread/4000-21724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21738/","id":21738,"name":"The Fatal Effects of Virus X!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-82-the-fatal-effects-of-virus-x/4000-21738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21696/","id":21696,"name":"One More Blip and You're Dead/The Heart Is The Hunter","site_detail_url":"https://comicvine.gamespot.com/the-flash-304-one-more-blip-and-you-re-dead-the-he/4000-21696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21725/","id":21725,"name":"In the Darkness a Light","site_detail_url":"https://comicvine.gamespot.com/dazzler-10-in-the-darkness-a-light/4000-21725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21702/","id":21702,"name":"Crisis in Limbo!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-197-crisis-in-limbo/4000-21702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21706/","id":21706,"name":"","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-43/4000-21706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21710/","id":21710,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-217/4000-21710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21646/","id":21646,"name":"Payment on Demand / The Great Superman Hoax / The Newsboy Who Saw Too Much! / A Deadly Day in the Life / The Last Dangerous Days (and Sleepless Nights) of Jimmy Olsen!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-212-payment-on-demand-the-grea/4000-21646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21645/","id":21645,"name":"When Kryptonians Clash!; Where, Oh Where has Superboy Gone?","site_detail_url":"https://comicvine.gamespot.com/superman-365-when-kryptonians-clash-where-oh-where/4000-21645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21654/","id":21654,"name":"Court-Martial","site_detail_url":"https://comicvine.gamespot.com/the-avengers-213-court-martial/4000-21654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21667/","id":21667,"name":"Of Spiders and Serpents!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-111-of-spiders-and-serpents/4000-21667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21629/","id":21629,"name":"The Scepter of the Dragon God!","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-180-the-scepter-of-the-drag/4000-21629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21630/","id":21630,"name":"The Thing That Goes Woof in the Night! / Whatever Happened to Richard Dragon Kung-Fu Fighter","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-39-the-thing-that-goes-woof-in-/4000-21630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21653/","id":21653,"name":"Faster Than the Eye!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-222-faster-than-the-eye/4000-21653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139182/","id":139182,"name":"In the Citadel of the Weapon Master; Assault on Kastle Vertigo!; Victory?; Sivana's Nobel!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-273-in-the-citadel-of-the-wea/4000-139182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21670/","id":21670,"name":"The Origin of the Microverse","site_detail_url":"https://comicvine.gamespot.com/micronauts-35-the-origin-of-the-microverse/4000-21670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21679/","id":21679,"name":"The X-Men Minus One","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-151-the-x-men-minus-one/4000-21679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21657/","id":21657,"name":"Hunters","site_detail_url":"https://comicvine.gamespot.com/daredevil-176-hunters/4000-21657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21668/","id":21668,"name":"No home for heroes!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-81-no-home-for-heroes/4000-21668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21642/","id":21642,"name":"Friends and Foes Alike!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-13-friends-and-foes-alike/4000-21642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21632/","id":21632,"name":"The Top Is Alive And Well In Henry Allen!/\"The Hyena Syndrome!\"","site_detail_url":"https://comicvine.gamespot.com/the-flash-303-the-top-is-alive-and-well-in-henry-a/4000-21632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21638/","id":21638,"name":"Countdown to Crisis!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-196-countdown-to-crisis/4000-21638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21600/","id":21600,"name":"Magma Force!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-110-magma-force/4000-21600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21571/","id":21571,"name":"The Man with the Explosive Mind! / The Kill Kent Contract! / Search for a Secret-Seeker / Lois Lane: Hostage! / Deadlier than the Sword","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-211-the-man-with-the-explosive/4000-21571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21601/","id":21601,"name":"Call Him...Monster!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-80-call-himmonster/4000-21601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21615/","id":21615,"name":"What if the Avengers Defeated Everybody?","site_detail_url":"https://comicvine.gamespot.com/what-if-29-what-if-the-avengers-defeated-everybody/4000-21615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21584/","id":21584,"name":"Men Of Deadly Pride!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-212-men-of-deadly-pride/4000-21584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21583/","id":21583,"name":"Blues For Lonesome Pinky!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-221-blues-for-lonesome-pink/4000-21583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139089/","id":139089,"name":"Assault on the Fortress of Solitude!; A Bloody Crown for a Cold Corpse!; Drive Me to the Moon!; Winds of Change; Chain Lightning","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-272-assault-on-the-fortress-o/4000-139089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21604/","id":21604,"name":"The Nightmare of Morpheus","site_detail_url":"https://comicvine.gamespot.com/moon-knight-12-the-nightmare-of-morpheus/4000-21604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21589/","id":21589,"name":"Hell...Hell is for Harry!","site_detail_url":"https://comicvine.gamespot.com/dazzler-8-hellhell-is-for-harry/4000-21589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138854/","id":138854,"name":"Ou, La La- Badoon","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-5-ou-la-la-badoon/4000-138854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21588/","id":21588,"name":"Gauntlet","site_detail_url":"https://comicvine.gamespot.com/daredevil-175-gauntlet/4000-21588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20908/","id":20908,"name":"Deathwatcher!","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-5-deathwatcher/4000-20908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21557/","id":21557,"name":"\"Lisa Starts With An L and That Stands For Lethal\"/Invitation To Revelation","site_detail_url":"https://comicvine.gamespot.com/the-flash-302-lisa-starts-with-an-l-and-that-stand/4000-21557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21572/","id":21572,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-215/4000-21572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21562/","id":21562,"name":"The Haunting! / Tejano Ranger","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-53-the-haunting-tejano-ranger/4000-21562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21477/","id":21477,"name":"The World on Fire!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-1-the-world-on-fire/4000-21477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21494/","id":21494,"name":"When Titans Clash","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-11-when-titans-clash/4000-21494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21505/","id":21505,"name":",,,By Force Of Mind!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-211-by-force-of-mind/4000-21505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21506/","id":21506,"name":"Celluloid Heroes!","site_detail_url":"https://comicvine.gamespot.com/captain-america-261-celluloid-heroes/4000-21506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21498/","id":21498,"name":"The Spoil Sport of New York! / The Magical Manhunters of Metropolis! / News Before it Happens! / The Case of the Kidnapped Canines! / Vengeance Times Four!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-210-the-spoil-sport-of-new-yor/4000-21498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21487/","id":21487,"name":"The Last Picture Show! / The Final Battle","site_detail_url":"https://comicvine.gamespot.com/green-lantern-144-the-last-picture-show-the-final-/4000-21487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21484/","id":21484,"name":"... And the Beat Goes Off! / How Laughs the Hyena?","site_detail_url":"https://comicvine.gamespot.com/the-flash-301-and-the-beat-goes-off-how-laughs-the/4000-21484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21504/","id":21504,"name":"A Coffin For Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-220-a-coffin-for-spider-man/4000-21504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21518/","id":21518,"name":"Critical Mass!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-109-critical-mass/4000-21518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108339/","id":108339,"name":"\"Fort Apache, The Hulk!\"","site_detail_url":"https://comicvine.gamespot.com/dazzler-7-fort-apache-the-hulk/4000-108339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21508/","id":21508,"name":"The Assassination of Matt Murdock","site_detail_url":"https://comicvine.gamespot.com/daredevil-174-the-assassination-of-matt-murdock/4000-21508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21495/","id":21495,"name":"","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-40/4000-21495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21499/","id":21499,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-214/4000-21499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21433/","id":21433,"name":"You Don't Need the Weathermen to Know Which Way the Wind Blows!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-210-you-dont-need-the-weathermen-to-k/4000-21433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21442/","id":21442,"name":"People in Glass Houses Shouldn't Hurt Hulks!; Foundling!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-262-people-in-glass-houses-sho/4000-21442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21424/","id":21424,"name":"Strike Three--You're Out / George Taylor's Last Scoop / The Bus Bust! / Hide in Plain Fright! / Never Take Candy from a Stranger!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-209-strike-three-youre-out-geo/4000-21424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21432/","id":21432,"name":"Peter Parker -- Criminal!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-219-peter-parker-criminal/4000-21432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21416/","id":21416,"name":"Secrets of Genesis/All Star Squadron","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-193-secrets-of-genesis-a/4000-21416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138950/","id":138950,"name":"A Hole for Killing!; A World Gone Mad!; You and Me Against Our World!; Die, Android--Die!; Our Son, the Monster!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-270-a-hole-for-killing-a-worl/4000-138950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108338/","id":108338,"name":"The Hulk May Be Hazardous to Your Health!","site_detail_url":"https://comicvine.gamespot.com/dazzler-6-the-hulk-may-be-hazardous-to-your-health/4000-108338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21461/","id":21461,"name":"Cry Mutant","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-148-cry-mutant/4000-21461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21443/","id":21443,"name":"Doomquest!","site_detail_url":"https://comicvine.gamespot.com/iron-man-149-doomquest/4000-21443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21419/","id":21419,"name":"Promethium Unbound!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-10-promethium-unbound/4000-21419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21437/","id":21437,"name":"The Hand Closes!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-98-the-hand-closes/4000-21437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21436/","id":21436,"name":"Lady Killer","site_detail_url":"https://comicvine.gamespot.com/daredevil-173-lady-killer/4000-21436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21447/","id":21447,"name":"Monster Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-78-monster-man/4000-21447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21391/","id":21391,"name":"Beware The Bomardiers!","site_detail_url":"https://comicvine.gamespot.com/thor-309-beware-the-bomardiers/4000-21391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21374/","id":21374,"name":"Back To the Basics!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-232-back-to-the-basics/4000-21374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21389/","id":21389,"name":"The Peril... and the Pumpkin?","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-56-the-peril-and-the-pu/4000-21389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21369/","id":21369,"name":"Rite of Passage!","site_detail_url":"https://comicvine.gamespot.com/captain-america-259-rite-of-passage/4000-21369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21376/","id":21376,"name":"Encounter on Easter Island!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-261-encounter-on-easter-island/4000-21376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21356/","id":21356,"name":"The Super-Switch to New York / The 5th-Dimensional Hijack! / The Case of the Stolen Clock / Lois' Dream Scoop! / Mystery of the Missing Mail!","site_detail_url":"https://comicvine.gamespot.com/the-superman-family-208-the-super-switch-to-new-yo/4000-21356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120855/","id":120855,"name":"The Deadly Rampage of the Lady Fox; Grow, Little Growfish!","site_detail_url":"https://comicvine.gamespot.com/action-comics-521-the-deadly-rampage-of-the-lady-f/4000-120855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21380/","id":21380,"name":"This Rumor of Revolution!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-107-this-rumor-of-revolution/4000-21380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138817/","id":138817,"name":"Buried Alive!; Escape Me...Never!!; ...I Must Go Home Again!; All the Bits and Pieces of My Life; Sabbac Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-269-buried-alive-escape-menev/4000-138817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21372/","id":21372,"name":"Tell Joey I Love Him!","site_detail_url":"https://comicvine.gamespot.com/dazzler-5-tell-joey-i-love-him/4000-21372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140620/","id":140620,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-and-marvel-present-superman-and-spider-man-1/4000-140620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21342/","id":21342,"name":"A Stab In The Black!/The Robbery","site_detail_url":"https://comicvine.gamespot.com/the-flash-299-a-stab-in-the-black-the-robbery/4000-21342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21385/","id":21385,"name":"The Mountain Comes to Manhattan","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-71-the-mountain-comes-to-m/4000-21385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21352/","id":21352,"name":"","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-38/4000-21352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21302/","id":21302,"name":"Sunset of a Samurai!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-260-sunset-of-a-samurai/4000-21302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21267/","id":21267,"name":"The Beast-Man that Shouted \"Hate\" at the Heart of the U.N.!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-34-the-beast-man-that-shouted-h/4000-21267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21291/","id":21291,"name":"Here's Mud in Your Eye!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-217-heres-mud-in-your-eye/4000-21291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117485/","id":117485,"name":"The Burning!","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-293-the-burning/4000-117485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21295/","id":21295,"name":"Here Nightmares Abide!","site_detail_url":"https://comicvine.gamespot.com/dazzler-4-here-nightmares-abide/4000-21295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21320/","id":21320,"name":"Murderworld","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-146-murderworld/4000-21320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21278/","id":21278,"name":"A Day In The Lives…","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-8-a-day-in-the-lives/4000-21278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21307/","id":21307,"name":"The Big Top Bandits","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-76-the-big-top-bandits/4000-21307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21293/","id":21293,"name":"Blockbuster!","site_detail_url":"https://comicvine.gamespot.com/captain-america-258-blockbuster/4000-21293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21269/","id":21269,"name":"A Deadly Shade of Peril! / The Multiplex Complex","site_detail_url":"https://comicvine.gamespot.com/the-flash-298-a-deadly-shade-of-peril-the-multiple/4000-21269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21275/","id":21275,"name":"The Key Crisis of the One-Man Justice League!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-191-the-key-crisis-of-th/4000-21275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21279/","id":21279,"name":"","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-37/4000-21279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21271/","id":21271,"name":"The Haunted Hospital","site_detail_url":"https://comicvine.gamespot.com/ghosts-101-the-haunted-hospital/4000-21271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21242/","id":21242,"name":"The Family That Dies Together...!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-259-the-family-that-dies-toget/4000-21242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21240/","id":21240,"name":"Firefrost And The Ebon Seeker","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-230-firefrost-and-the-ebon-seeker/4000-21240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21208/","id":21208,"name":"Man and Supermarvel!; Whatever Will Happen to Star Hawkins?","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-33-man-and-supermarvel-whatever/4000-21208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21232/","id":21232,"name":"Marathon","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-216-marathon/4000-21232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136892/","id":136892,"name":"The Twelve Coins of Power!; The Blade of Death; Whose Body is it Anyways?; Your City or Your Life!; A Sleep and the Deep","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-268-the-twelve-coins-of-power/4000-136892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21250/","id":21250,"name":"The Moon Kings","site_detail_url":"https://comicvine.gamespot.com/moon-knight-7-the-moon-kings/4000-21250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21238/","id":21238,"name":"The Jewels of Doom!","site_detail_url":"https://comicvine.gamespot.com/dazzler-3-the-jewels-of-doom/4000-21238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21258/","id":21258,"name":"Kidnapped!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-145-kidnapped/4000-21258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21219/","id":21219,"name":"Assault On Titans' Tower!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-7-assault-on-titans-tower/4000-21219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21210/","id":21210,"name":"Capt. Cold's Cold, Cold Flame!/\"Multiplex X Means Multiple-Choice...Death!\"","site_detail_url":"https://comicvine.gamespot.com/the-flash-297-capt-cold-s-cold-cold-flame-multiple/4000-21210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21216/","id":21216,"name":"Our Friends, Our Enemies","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-190-our-friends-our-enem/4000-21216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21251/","id":21251,"name":"Victim Times Three!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-69-victim-times-three/4000-21251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192742/","id":192742,"name":"Le Notti di New York","site_detail_url":"https://comicvine.gamespot.com/mister-no-72-le-notti-di-new-york/4000-192742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21175/","id":21175,"name":"The Thing From the Black Hole","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-229-the-thing-from-the-black-hole/4000-21175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21178/","id":21178,"name":"...To Hunt the Hulk!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-258-to-hunt-the-hulk/4000-21178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120908/","id":120908,"name":"Treasure Hunt on a Small Planet! / Beyond the Poseidon Adventure","site_detail_url":"https://comicvine.gamespot.com/action-comics-518-treasure-hunt-on-a-small-planet-/4000-120908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21196/","id":21196,"name":"Fury of the Firelord!","site_detail_url":"https://comicvine.gamespot.com/thor-306-fury-of-the-firelord/4000-21196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21155/","id":21155,"name":"The Lair of Lady Frankenstein / Deathwing / Queen of the Dead World","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-35-the-lair-of-lady-frank/4000-21155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21147/","id":21147,"name":"Till Death Do Us Join! / The Ghost Gladiator / Death... and the Spectre","site_detail_url":"https://comicvine.gamespot.com/ghosts-99-till-death-do-us-join-the-ghost-gladiato/4000-21147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21171/","id":21171,"name":"Where Demons Fear to Dwell!","site_detail_url":"https://comicvine.gamespot.com/dazzler-2-where-demons-fear-to-dwell/4000-21171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21151/","id":21151,"name":"Return of the Starfish Conqueror!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-189-return-of-the-starfi/4000-21151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21183/","id":21183,"name":"A Christmas Peril!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-74-a-christmas-peril/4000-21183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21102/","id":21102,"name":"I Got the Yo-Yo... You Got the String","site_detail_url":"https://comicvine.gamespot.com/bizarre-adventures-25-i-got-the-yo-yo-you-got-the-/4000-21102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21079/","id":21079,"name":"Total Eclipso! / Alanna's New York Adventure!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-138-total-eclipso-alannas-new-york-a/4000-21079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21109/","id":21109,"name":"Crypt Of Chaos!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-257-crypt-of-chaos/4000-21109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21108/","id":21108,"name":"Ego-Spawn","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-228-ego-spawn/4000-21108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21106/","id":21106,"name":"So Bright This Star","site_detail_url":"https://comicvine.gamespot.com/dazzler-1-so-bright-this-star/4000-21106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21113/","id":21113,"name":"The Big Time","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-11-the-big-time/4000-21113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120933/","id":120933,"name":"The War for Peace! / Brother Rat!","site_detail_url":"https://comicvine.gamespot.com/action-comics-517-the-war-for-peace-brother-rat/4000-120933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21100/","id":21100,"name":"Then Shall We Both Be Betrayed!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-214-then-shall-we-both-be-b/4000-21100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21126/","id":21126,"name":"Hark, The Herald Angel Lives!","site_detail_url":"https://comicvine.gamespot.com/thor-305-hark-the-herald-angel-lives/4000-21126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137518/","id":137518,"name":"When Strike the Gravity-Masters!; With This Gun... I Thee Slay!; Future Shock!; The Insect Invasion of Midway City!; Assault of the Rock of Eternity!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-267-when-strike-the-gravity-m/4000-137518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21115/","id":21115,"name":"The Assassin Academy","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-103-the-assassin-academy/4000-21115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117482/","id":117482,"name":"I... Vampire!; An Exercise in Fear; Special Defects","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-290-i-vampire-an-exercise-in-fear/4000-117482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106613/","id":106613,"name":"To Kill a Legend; The \"Too Many Cooks...\" Caper,; Once Upon a Time; The Final Mystery of Edgar Allen Poe!; The Batman Encounters Gray Face; The Strange Death of Dr. Erdel; What Happens When a Batman Dies?","site_detail_url":"https://comicvine.gamespot.com/detective-comics-500-to-kill-a-legend-the-too-many/4000-106613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21116/","id":21116,"name":"Pipeline through Infinity","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-73-pipeline-through-infinity/4000-21116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21076/","id":21076,"name":"\"In Grodd We Trust!\"/\"By The Sea, By The Sea, By The Dangerous Sea!\"\"","site_detail_url":"https://comicvine.gamespot.com/the-flash-295-in-grodd-we-trust-by-the-sea-by-the-/4000-21076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21042/","id":21042,"name":"Samson and Delilah!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-102-samson-and-delilah/4000-21042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21008/","id":21008,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-97/4000-21008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21046/","id":21046,"name":"A Committee of 5","site_detail_url":"https://comicvine.gamespot.com/moon-knight-4-a-committee-of-5/4000-21046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21057/","id":21057,"name":"Mind Out of Time!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-142-mind-out-of-time/4000-21057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21032/","id":21032,"name":"Eternity...Humanity...Oblivion!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-92-eternityhumanityoblivion/4000-21032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21051/","id":21051,"name":"On the Sidewalks of New York!","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-and-his-howling-commandos-162-on-the-side/4000-21051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21006/","id":21006,"name":"The Fiend The World Forgot!/The Typhoon Is A Storm of The Soul","site_detail_url":"https://comicvine.gamespot.com/the-flash-294-the-fiend-the-world-forgot-the-typho/4000-21006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21028/","id":21028,"name":"All They Want to Do is Kill You, Spider-Man...","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-213-all-they-want-to-do-is-/4000-21028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21047/","id":21047,"name":"Power Men","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-67-power-men/4000-21047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827817/","id":827817,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comic-stars-4/4000-827817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827818/","id":827818,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comic-stars-5/4000-827818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20988/","id":20988,"name":"Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/the-x-men-141-days-of-future-past/4000-20988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20969/","id":20969,"name":"Thunder Under the East River!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-255-thunder-under-the-east-riv/4000-20969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20967/","id":20967,"name":"The Samurai Destroyer","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-226-the-samurai-destroyer/4000-20967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20961/","id":20961,"name":"The Coming of Hydroman!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-212-the-coming-of-hydroman/4000-20961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105407/","id":105407,"name":"The Last Laugh of Lady Lunar!; I Shot an Arrow into the Air; God Bless the Child!; Something Sinister in Sewer Seven!; Sivana's Space Armada","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-266-the-last-laugh-of-lady-lu/4000-105407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20979/","id":20979,"name":"Midnight Means Murder","site_detail_url":"https://comicvine.gamespot.com/moon-knight-3-midnight-means-murder/4000-20979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359470/","id":359470,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-winter-special-1980/4000-359470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66606/","id":66606,"name":"The Surfer and the Spider!","site_detail_url":"https://comicvine.gamespot.com/fantasy-masterpieces-14-the-surfer-and-the-spider/4000-66606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218997/","id":218997,"name":"The Mystery of the Power Crown!","site_detail_url":"https://comicvine.gamespot.com/spider-man-captain-america-the-incredible-hulk-and/4000-218997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239649/","id":239649,"name":"Lo! Now Shall Appear the Mimic!","site_detail_url":"https://comicvine.gamespot.com/star-heroes-pocket-book-20-lo-now-shall-appear-the/4000-239649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20966/","id":20966,"name":"Defiance","site_detail_url":"https://comicvine.gamespot.com/the-defenders-91-defiance/4000-20966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20939/","id":20939,"name":"The Pied Piper's Paradox Peril!/The Deadliest Man Alive!","site_detail_url":"https://comicvine.gamespot.com/the-flash-293-the-pied-piper-s-paradox-peril-the-d/4000-20939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291182/","id":291182,"name":"Pipeline to Peril!","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk-1-pipeline-to-p/4000-291182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20925/","id":20925,"name":"Spider-Man and Superman The Heroes and the Holocaust!","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-28-spider-man-and-superman/4000-20925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66605/","id":66605,"name":"The Dawn of the Doomsday Man!","site_detail_url":"https://comicvine.gamespot.com/fantasy-masterpieces-13-the-dawn-of-the-doomsday-m/4000-66605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20839/","id":20839,"name":"Today... The Terminator!","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-2-today-the-terminator/4000-20839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20871/","id":20871,"name":"The Slasher","site_detail_url":"https://comicvine.gamespot.com/moon-knight-2-the-slasher/4000-20871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20867/","id":20867,"name":"A Moving Experience","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-70-a-moving-experience/4000-20867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20866/","id":20866,"name":"...The Reason is Karma!; Cry... Vengeance!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-100-the-reason-is-karma-cry-vengean/4000-20866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407252/","id":407252,"name":"Acme and Dingo Childre's Boots: Absorbing Man breaks Loose","site_detail_url":"https://comicvine.gamespot.com/exclusive-collectors-edition-spider-man-0-acme-and/4000-407252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20853/","id":20853,"name":"Cold Fire!","site_detail_url":"https://comicvine.gamespot.com/captain-america-252-cold-fire/4000-20853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20884/","id":20884,"name":"Rage!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-140-rage/4000-20884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64886/","id":64886,"name":"Gwen Stacy Is Alive...And, Well...?!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-122-gwen-stacy-is-aliveand-well/4000-64886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20829/","id":20829,"name":"\"Mirror, Mirror, Off The Wall...\"/The Hostages Of Precinct 13!","site_detail_url":"https://comicvine.gamespot.com/the-flash-292-mirror-mirror-off-the-wall-the-hosta/4000-20829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20769/","id":20769,"name":"Mind Over Magnetism! / Earth-Ground!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-134-mind-over-magnetism-earth-ground/4000-20769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20793/","id":20793,"name":"The Darkfield Illumination","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-224-the-darkfield-illumination/4000-20793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20787/","id":20787,"name":"The Prophecy of Madame Web!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-210-the-prophecy-of-madame-/4000-20787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20799/","id":20799,"name":"and Machine Man Makes 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-99-and-machine-man-makes-3/4000-20799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137340/","id":137340,"name":"Magic Menace This Way Comes!; One Rose for Never!; This Hostage World; Journey Through the Past!; The Plot Against the Human Race","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-265-magic-menace-this-way-com/4000-137340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20777/","id":20777,"name":"Die From Laughter / For the love of Arlo / Russian Roulette","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-30-die-from-laughter-for-/4000-20777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20768/","id":20768,"name":"The Banshee Bride of Ballybrooke / Great Caesar's Ghost! / A Spirit Was Waiting / The Spectre from the Granite Coffin","site_detail_url":"https://comicvine.gamespot.com/ghosts-94-the-banshee-bride-of-ballybrooke-great-c/4000-20768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20812/","id":20812,"name":"Something Wicked This Way Comes!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-139-something-wicked-this-way-comes/4000-20812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20801/","id":20801,"name":"Agent Syn's Nightmare","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-94-agent-syns-nightmare/4000-20801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20776/","id":20776,"name":"The NEW Teen Titans","site_detail_url":"https://comicvine.gamespot.com/the-new-teen-titans-1-the-new-teen-titans/4000-20776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20792/","id":20792,"name":"A Death in the Family!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-89-a-death-in-the-family/4000-20792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20800/","id":20800,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-69-homecoming/4000-20800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20791/","id":20791,"name":"... The Mauler!; Dark Secrets","site_detail_url":"https://comicvine.gamespot.com/daredevil-167-the-mauler-dark-secrets/4000-20791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20723/","id":20723,"name":"The Child Is Father To...?","site_detail_url":"https://comicvine.gamespot.com/the-avengers-200-the-child-is-father-to/4000-20723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20048/","id":20048,"name":"Time For the Prime Ten","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-15-time-for-the-prime-ten/4000-20048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20704/","id":20704,"name":"Nightmare at the North Pole! / Siege on Ranagar!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-133-nightmare-at-the-north-pole-sieg/4000-20704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20700/","id":20700,"name":"Between Friend and Foe; Where Nightmares Begin; Whatever Happened to Sargon the Sorcerer","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-26-between-friend-and-foe-where/4000-20700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20722/","id":20722,"name":"To Salvage My Honor!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-209-to-salvage-my-honor/4000-20722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20736/","id":20736,"name":"Spiderman & Black Widow","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-98-spiderman-black-widow/4000-20736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20751/","id":20751,"name":"Elegy","site_detail_url":"https://comicvine.gamespot.com/the-x-men-138-elegy/4000-20751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20726/","id":20726,"name":"Lord of the Whales","site_detail_url":"https://comicvine.gamespot.com/the-defenders-88-lord-of-the-whales/4000-20726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20724/","id":20724,"name":"Cap For President!","site_detail_url":"https://comicvine.gamespot.com/captain-america-250-cap-for-president/4000-20724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20737/","id":20737,"name":"Discos and Dungeons","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-68-discos-and-dungeons/4000-20737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20701/","id":20701,"name":"\"Will You Believe Me When I'm Dead?\"/The Secret History Of The Nuclear Man","site_detail_url":"https://comicvine.gamespot.com/the-flash-290-will-you-believe-me-when-i-m-dead-th/4000-20701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20740/","id":20740,"name":"An Eagle In the Aerie","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-65-an-eagle-in-the-aerie/4000-20740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326483/","id":326483,"name":"","site_detail_url":"https://comicvine.gamespot.com/mysteries-in-space-the-best-of-dc-science-fiction-/4000-326483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20655/","id":20655,"name":"Last Stand On Long Island","site_detail_url":"https://comicvine.gamespot.com/the-avengers-199-last-stand-on-long-island/4000-20655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20654/","id":20654,"name":"Fusion!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-208-fusion/4000-20654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20656/","id":20656,"name":"Death, Where is Thy Sting?","site_detail_url":"https://comicvine.gamespot.com/captain-america-249-death-where-is-thy-sting/4000-20656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347049/","id":347049,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-annual-1981/4000-347049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20663/","id":20663,"name":"A Game of Monsters and Kings","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual-9-a-game-of-monsters-an/4000-20663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20039/","id":20039,"name":"Skirmish With Death","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-5-skirmish-with-death/4000-20039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20670/","id":20670,"name":"Passport to Oblivion","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-67-passport-to-oblivion/4000-20670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20633/","id":20633,"name":"The Good...The Bad...And The Unexpected!/Firestorm Is Back In Town!","site_detail_url":"https://comicvine.gamespot.com/the-flash-289-the-good-the-bad-and-the-unexpected-/4000-20633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20658/","id":20658,"name":"Till death do us part!","site_detail_url":"https://comicvine.gamespot.com/daredevil-166-till-death-do-us-part/4000-20658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20613/","id":20613,"name":"Child of Light and Darkness!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-136-child-of-light-and-darkness/4000-20613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20576/","id":20576,"name":"With Friends Like These...","site_detail_url":"https://comicvine.gamespot.com/the-untold-legend-of-the-batman-2-with-friends-lik/4000-20576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20584/","id":20584,"name":"Better Red Than Ronin!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-198-better-red-than-ronin/4000-20584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455685/","id":455685,"name":"","site_detail_url":"https://comicvine.gamespot.com/ein-vertrag-mit-gott-1/4000-455685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20583/","id":20583,"name":"Mesmero's Revenge!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-207-mesmeros-revenge/4000-20583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20596/","id":20596,"name":"Spiderman & Howard the Duck","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-96-spiderman-howard-the-duck/4000-20596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20585/","id":20585,"name":"Dragon Man!","site_detail_url":"https://comicvine.gamespot.com/captain-america-248-dragon-man/4000-20585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20587/","id":20587,"name":"The Left Hand of Silence!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-86-the-left-hand-of-silence/4000-20587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20600/","id":20600,"name":"The Last Gamble","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-64-the-last-gamble/4000-20600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20570/","id":20570,"name":"Cold as Isis","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-27-cold-as-isis/4000-20570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20595/","id":20595,"name":"Wonder Man","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-55-wonder-man/4000-20595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20534/","id":20534,"name":"...and No Birds Sing!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-95-and-no-birds-sing/4000-20534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20546/","id":20546,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/the-x-men-135-dark-phoenix/4000-20546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20521/","id":20521,"name":"Prelude Of The War-Devil!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-197-prelude-of-the-war-devil/4000-20521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112901/","id":112901,"name":"Vengeance Trail; Chapter Two... At War With General Scarr; Fifty Million Tons of Soul!; We Are Experiencing a Slight Delay...; The First Bird","site_detail_url":"https://comicvine.gamespot.com/detective-comics-492-vengeance-trail-chapter-two-a/4000-112901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20526/","id":20526,"name":"... And The Lights Went Out All Over The World!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-220-and-the-lights-went-out-all-ove/4000-20526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20520/","id":20520,"name":"\"A Method in His Madness!\"","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-206-a-method-in-his-madness/4000-20520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67532/","id":67532,"name":"Wanted: Web-Head!; Surprise; Two Against The Top","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-47-wanted-web-head-surprise-t/4000-67532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20525/","id":20525,"name":"Like a Proud Black Panther...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-85-like-a-proud-black-panther/4000-20525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20524/","id":20524,"name":"Arms of the Octopus","site_detail_url":"https://comicvine.gamespot.com/daredevil-165-arms-of-the-octopus/4000-20524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20504/","id":20504,"name":"A Beautiful Evil","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-180-a-beautiful-evil/4000-20504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20445/","id":20445,"name":"...In Love and War!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-205-in-love-and-war/4000-20445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20452/","id":20452,"name":"Leviathans","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-219-leviathans/4000-20452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20477/","id":20477,"name":"Too Late, the Heroes","site_detail_url":"https://comicvine.gamespot.com/the-x-men-134-too-late-the-heroes/4000-20477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20461/","id":20461,"name":"From the Depths","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-64-from-the-depths/4000-20461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20430/","id":20430,"name":"The Siren Song of the Satin Satan","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-179-the-siren-song-of-th/4000-20430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20464/","id":20464,"name":"Luck and Death","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-63-luck-and-death/4000-20464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20379/","id":20379,"name":"The Black Cat Always Lands on Her Feet!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-204-the-black-cat-always-la/4000-20379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20383/","id":20383,"name":"Expose","site_detail_url":"https://comicvine.gamespot.com/daredevil-164-expose/4000-20383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20403/","id":20403,"name":"Wolverine: Alone!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-133-wolverine-alone/4000-20403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20381/","id":20381,"name":"The Calypso Connection!","site_detail_url":"https://comicvine.gamespot.com/captain-america-245-the-calypso-connection/4000-20381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20399/","id":20399,"name":"The Blades of the Grinder!","site_detail_url":"https://comicvine.gamespot.com/spider-woman-26-the-blades-of-the-grinder/4000-20399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100756/","id":100756,"name":"Even An Android Can Cry","site_detail_url":"https://comicvine.gamespot.com/marvel-super-action-19-even-an-android-can-cry/4000-100756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112836/","id":112836,"name":"Creatures of the Night!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-489-creatures-of-the-night/4000-112836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20303/","id":20303,"name":"Interlude","site_detail_url":"https://comicvine.gamespot.com/the-avengers-194-interlude/4000-20303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20308/","id":20308,"name":"Masquerade!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-217-masquerade/4000-20308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20302/","id":20302,"name":"Bewitched, Bothered and Be-Dazzled!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-203-bewitched-bothered-and-/4000-20302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20333/","id":20333,"name":"And Hellfire Is Their Name!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-132-and-hellfire-is-their-name/4000-20333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20304/","id":20304,"name":"The Way of All Flesh!","site_detail_url":"https://comicvine.gamespot.com/captain-america-244-the-way-of-all-flesh/4000-20304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20318/","id":20318,"name":"The Taking of Counter-Earth!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-62-the-taking-of-counter-earth/4000-20318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100755/","id":100755,"name":"Behold...The Vision","site_detail_url":"https://comicvine.gamespot.com/marvel-super-action-18-behold-the-vision/4000-100755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20233/","id":20233,"name":"One For Those Long Gone!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-202-one-for-those-long-gone/4000-20233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20240/","id":20240,"name":"Where There Be Gods!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-216-where-there-be-gods/4000-20240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20217/","id":20217,"name":"The Dream Factories of Doctor Destiny!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-176-the-dream-factories-/4000-20217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20237/","id":20237,"name":"Blind Alley","site_detail_url":"https://comicvine.gamespot.com/daredevil-163-blind-alley/4000-20237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20235/","id":20235,"name":"The Lazarus Conspiracy!","site_detail_url":"https://comicvine.gamespot.com/captain-america-243-the-lazarus-conspiracy/4000-20235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20248/","id":20248,"name":"The Coming of Her!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-61-the-coming-of-her/4000-20248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20225/","id":20225,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-196/4000-20225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20221/","id":20221,"name":"","site_detail_url":"https://comicvine.gamespot.com/secrets-of-haunted-house-22/4000-20221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20172/","id":20172,"name":"Happiness is a Warm Alien!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-60-happiness-is-a-warm-alien/4000-20172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20158/","id":20158,"name":"Man-Hunt!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-201-man-hunt/4000-20158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20171/","id":20171,"name":"Death Rides the Air Waves!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-90-death-rides-the-air-waves/4000-20171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20139/","id":20139,"name":"But Can An Android Dream?","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-175-but-can-an-android-d/4000-20139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20186/","id":20186,"name":"The Dramatic Debut of the Dazzler!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-130-the-dramatic-debut-of-the-dazzler/4000-20186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20170/","id":20170,"name":"Journey Through The Past","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-52-journey-through-the-past/4000-20170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20175/","id":20175,"name":"Who's Been Sleeping In My Grave?","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-61-whos-been-sleeping-in-m/4000-20175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20082/","id":20082,"name":"Whose Face is at My Window?","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-195-whose-face-is-at-my-window/4000-20082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20104/","id":20104,"name":"Shoot Out Over Center Ring!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-89-shoot-out-over-center-ring/4000-20104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201541/","id":201541,"name":"","site_detail_url":"https://comicvine.gamespot.com/448-superheroes-big-big-book-1/4000-201541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20095/","id":20095,"name":"Requiem for A Pug!","site_detail_url":"https://comicvine.gamespot.com/daredevil-162-requiem-for-a-pug/4000-20095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20091/","id":20091,"name":"The Spider and the Burglar...A Sequel","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-200-the-spider-and-the-burg/4000-20091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285851/","id":285851,"name":"L'Arbalete (564)","site_detail_url":"https://comicvine.gamespot.com/pif-gadget-1802-larbalete-564/4000-285851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20070/","id":20070,"name":"Torment of the Phantom Face!","site_detail_url":"https://comicvine.gamespot.com/ghosts-84-torment-of-the-phantom-face/4000-20070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418739/","id":418739,"name":"Een Zak Chips","site_detail_url":"https://comicvine.gamespot.com/kiekeboe-14-een-zak-chips/4000-418739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20114/","id":20114,"name":"God Spare The Child...","site_detail_url":"https://comicvine.gamespot.com/the-x-men-129-god-spare-the-child/4000-20114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109715/","id":109715,"name":"The Power and the Pampas","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-263-the-power-and-the-pampas/4000-109715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291181/","id":291181,"name":"...What Price A Life?","site_detail_url":"https://comicvine.gamespot.com/special-edition-spider-man-and-the-hulk-1-what-pri/4000-291181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20093/","id":20093,"name":"Fear Grows In Brooklyn!","site_detail_url":"https://comicvine.gamespot.com/captain-america-241-fear-grows-in-brooklyn/4000-20093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20067/","id":20067,"name":"The Ice Slaves of Killer Frost!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-17-the-ice-slaves-of-killer-fro/4000-20067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20105/","id":20105,"name":"Trial and Error!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-59-trial-and-error/4000-20105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224964/","id":224964,"name":"In The Grip Of The Green Goblin!","site_detail_url":"https://comicvine.gamespot.com/exclusive-collectors-edition-spider-man-1-in-the-g/4000-224964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20055/","id":20055,"name":"To Destroy The Monster!; The Hate Of The Harpy!; At The Sign Of The Lion!","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-26-to-destroy-the-monster-/4000-20055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20056/","id":20056,"name":"A Friend In Need; The Tomorrow War; Time Bomb; The Doomsday Gambit; Joyride Into Jeopardy;","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-27-a-friend-in-need-the-to/4000-20056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19113/","id":19113,"name":"Cat's Paw!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-14-cats-paw/4000-19113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138857/","id":138857,"name":"A Fire in the Sky","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-3-a-fire-in-the-sky/4000-138857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19982/","id":19982,"name":"To The Death!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-213-to-the-death/4000-19982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19976/","id":19976,"name":"Now You See Me! Now You Die!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-199-now-you-see-me-now-you-/4000-19976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217291/","id":217291,"name":"\"Years Of Glory--Day Of Doom!\"","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-1-years-of-glory-day-of-doom/4000-217291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19991/","id":19991,"name":"A Child is Waiting","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-88-a-child-is-waiting/4000-19991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19955/","id":19955,"name":"Escape from the Haunt of the Amazon Specters / Keep Out! This Theater is Haunted / Revenge of the Spectral Arm","site_detail_url":"https://comicvine.gamespot.com/ghosts-83-escape-from-the-haunt-of-the-amazon-spec/4000-19955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19984/","id":19984,"name":"Shadows in the Heart of the City","site_detail_url":"https://comicvine.gamespot.com/hulk-18-shadows-in-the-heart-of-the-city/4000-19984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19088/","id":19088,"name":"A Mission of Gravity!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-4-a-mission-of-gravity/4000-19088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19980/","id":19980,"name":"The Return of the Original Defenders!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-78-the-return-of-the-original-defend/4000-19980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19990/","id":19990,"name":"The Killing of Windeagle","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-51-the-killing-of-windeagle/4000-19990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19996/","id":19996,"name":"The Terrorist Manifesto!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-60-the-terrorist-manifesto/4000-19996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117468/","id":117468,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-275/4000-117468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19914/","id":19914,"name":"Wings and Arrows!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-189-wings-and-arrows/4000-19914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19096/","id":19096,"name":"Today the Avengers Die","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-9-today-the-avengers-die/4000-19096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19919/","id":19919,"name":"The Battle Of The Titans!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-212-the-battle-of-the-titans/4000-19919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19913/","id":19913,"name":"Mysterio is Deadlier By the Dozen!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-198-mysterio-is-deadlier-by/4000-19913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19925/","id":19925,"name":"The Razor's Edge!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-87-the-razors-edge/4000-19925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19921/","id":19921,"name":"Demon in a Bottle","site_detail_url":"https://comicvine.gamespot.com/iron-man-128-demon-in-a-bottle/4000-19921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109713/","id":109713,"name":"Quest to The Palace at the Edge of Time!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-261-quest-to-the-palace-at-the-edge-o/4000-109713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152577/","id":152577,"name":"Tintin in America","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-tintin-3-tintin-in-america/4000-152577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19836/","id":19836,"name":"The Kingpin's Midnight Massacre!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-197-the-kingpins-midnight-m/4000-19836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19851/","id":19851,"name":"Story of The Year","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-86-story-of-the-year/4000-19851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19861/","id":19861,"name":"Adrift!","site_detail_url":"https://comicvine.gamespot.com/tarzan-29-adrift/4000-19861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19855/","id":19855,"name":"Big Apple Bomber","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-59-big-apple-bomber/4000-19855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19846/","id":19846,"name":"...A Man's Home Is His Battlefield!","site_detail_url":"https://comicvine.gamespot.com/iron-man-127-a-mans-home-is-his-battlefield/4000-19846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112832/","id":112832,"name":"The Vengeance Vow!; The Case of the Cavorting Corpse!; The Fatal Finale!; The Case of the Untouchable Crook!; SST -- The Super-Sonic Threat!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-485-the-vengeance-vow-the-case-of/4000-112832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19773/","id":19773,"name":"Requiem!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-196-requiem/4000-19773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19784/","id":19784,"name":"The Woman Who Never Was!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-85-the-woman-who-never-was/4000-19784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19781/","id":19781,"name":"The Hammer Strikes","site_detail_url":"https://comicvine.gamespot.com/iron-man-126-the-hammer-strikes/4000-19781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19792/","id":19792,"name":"Flight of Terror!","site_detail_url":"https://comicvine.gamespot.com/tarzan-28-flight-of-terror/4000-19792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19777/","id":19777,"name":"In the Hands of Bullseye","site_detail_url":"https://comicvine.gamespot.com/daredevil-160-in-the-hands-of-bullseye/4000-19777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19698/","id":19698,"name":"Nine Lives Has the Black Cat!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-195-nine-lives-has-the-blac/4000-19698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19712/","id":19712,"name":"Catch A Falling Hero","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-84-catch-a-falling-hero/4000-19712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19700/","id":19700,"name":"Death Dive!","site_detail_url":"https://comicvine.gamespot.com/captain-america-236-death-dive/4000-19700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19722/","id":19722,"name":"Concrete Jungle!","site_detail_url":"https://comicvine.gamespot.com/tarzan-27-concrete-jungle/4000-19722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19713/","id":19713,"name":"Blood and Bionics","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-54-blood-and-bionics/4000-19713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19716/","id":19716,"name":"El Aguila Has Landed!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-58-el-aguila-has-landed/4000-19716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19708/","id":19708,"name":"The Monaco Prelude!","site_detail_url":"https://comicvine.gamespot.com/iron-man-125-the-monaco-prelude/4000-19708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19634/","id":19634,"name":"Never Let the Black Cat Cross Your Path!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-194-never-let-the-black-cat/4000-19634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19658/","id":19658,"name":"What If Someone Else Had Become Nova?","site_detail_url":"https://comicvine.gamespot.com/what-if-15-what-if-someone-else-had-become-nova/4000-19658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19616/","id":19616,"name":"Hell Quest!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-118-hell-quest/4000-19616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19648/","id":19648,"name":"Slaughter on 10th Avenue!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-83-slaughter-on-10th-avenue/4000-19648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19657/","id":19657,"name":"The Coming of Karkas","site_detail_url":"https://comicvine.gamespot.com/thor-285-the-coming-of-karkas/4000-19657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123628/","id":123628,"name":"Listen-Stop Me If You've Heard It, But This One Will KILL You!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-123-listen-stop-me-if-youve-heard-it-but/4000-123628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19638/","id":19638,"name":"Marked For Murder!","site_detail_url":"https://comicvine.gamespot.com/daredevil-159-marked-for-murder/4000-19638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109709/","id":109709,"name":"The Case of the Impossible Crimes","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-257-the-case-of-the-impossible-crimes/4000-109709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19636/","id":19636,"name":"To Stalk the Killer Skies!","site_detail_url":"https://comicvine.gamespot.com/captain-america-235-to-stalk-the-killer-skies/4000-19636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19641/","id":19641,"name":"And Lo, A Child Shall Lead Them","site_detail_url":"https://comicvine.gamespot.com/godzilla-24-and-lo-a-child-shall-lead-them/4000-19641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19656/","id":19656,"name":"Tarzan Caged!","site_detail_url":"https://comicvine.gamespot.com/tarzan-26-tarzan-caged/4000-19656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19649/","id":19649,"name":"The Inner War","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-53-the-inner-war/4000-19649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19643/","id":19643,"name":"Pieces of Hate!","site_detail_url":"https://comicvine.gamespot.com/iron-man-124-pieces-of-hate/4000-19643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19580/","id":19580,"name":"No Way to Treat a Lady","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-82-no-way-to-treat-a-lady/4000-19580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19574/","id":19574,"name":"Might of the Monocle!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-207-might-of-the-monocle/4000-19574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19569/","id":19569,"name":"Death On The Hudson!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-184-death-on-the-hudson/4000-19569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19568/","id":19568,"name":"The Wings of the Fearsome Fly!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-193-the-wings-of-the-fearso/4000-19568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19581/","id":19581,"name":"A Little Night Music","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-52-a-little-night-music/4000-19581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19576/","id":19576,"name":"The King Once More","site_detail_url":"https://comicvine.gamespot.com/godzilla-23-the-king-once-more/4000-19576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19570/","id":19570,"name":"Burn, Cap, Burn!","site_detail_url":"https://comicvine.gamespot.com/captain-america-234-burn-cap-burn/4000-19570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19579/","id":19579,"name":"Casino Fatale!","site_detail_url":"https://comicvine.gamespot.com/iron-man-123-casino-fatale/4000-19579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19498/","id":19498,"name":"The Redoubtable Return Of Crusher Creel!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-183-the-redoubtable-return-of-crusher/4000-19498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19497/","id":19497,"name":"24 Hours Till Doomsday!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-192-24-hours-till-doomsday/4000-19497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19513/","id":19513,"name":"Last Rites","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-81-last-rites/4000-19513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19503/","id":19503,"name":"A Grave Mistake!","site_detail_url":"https://comicvine.gamespot.com/daredevil-158-a-grave-mistake/4000-19503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67525/","id":67525,"name":"Spider-Man Meets Toymaker; Lights! Camera! Oops!; Up a Tree","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-40-spider-man-meets-toymaker-/4000-67525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109707/","id":109707,"name":"Menace of the Mental Murderer","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-255-menace-of-the-mental-murderer/4000-109707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19500/","id":19500,"name":"Crossfire","site_detail_url":"https://comicvine.gamespot.com/captain-america-233-crossfire/4000-19500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19514/","id":19514,"name":"A Gathering of Heroes!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-51-a-gathering-of-heroes/4000-19514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19506/","id":19506,"name":"The Devil and the Dinosaur","site_detail_url":"https://comicvine.gamespot.com/godzilla-22-the-devil-and-the-dinosaur/4000-19506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19499/","id":19499,"name":"Revenge of the Black Panther!","site_detail_url":"https://comicvine.gamespot.com/black-panther-15-revenge-of-the-black-panther/4000-19499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19440/","id":19440,"name":"A Sorceror Possessed!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-80-a-sorceror-possessed/4000-19440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124389/","id":124389,"name":"Only Legends Live Forever!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-462-only-legends-live-forever/4000-124389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19441/","id":19441,"name":"Remembrance of Things Past!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-50-remembrance-of-things-past/4000-19441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19422/","id":19422,"name":"Wanted For Murder: Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-191-wanted-for-murder-spide/4000-19422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328178/","id":328178,"name":"Cyclone Strikes!","site_detail_url":"https://comicvine.gamespot.com/spider-man-comic-319-cyclone-strikes/4000-328178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19424/","id":19424,"name":"The Flame and The Fury","site_detail_url":"https://comicvine.gamespot.com/captain-america-232-the-flame-and-the-fury/4000-19424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19430/","id":19430,"name":"The DOOM Trip!","site_detail_url":"https://comicvine.gamespot.com/godzilla-21-the-doom-trip/4000-19430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19445/","id":19445,"name":"The Scarab's Sting!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-56-the-scarabs-sting/4000-19445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117461/","id":117461,"name":"A Strange Way to Die; The Mouse of History; The Lovely Little Lady with the Sea-Green Tail!","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-267-a-strange-way-to-die-the-mous/4000-117461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494600/","id":494600,"name":"L'uomo di Harlem","site_detail_url":"https://comicvine.gamespot.com/un-uomo-unavventura-21-luomo-di-harlem/4000-494600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19358/","id":19358,"name":"In Search of the Man-Wolf!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-190-in-search-of-the-man-wo/4000-19358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19359/","id":19359,"name":"On The Matter Of Heroes!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-181-on-the-matter-of-heroes/4000-19359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19374/","id":19374,"name":"Sword of the She-Devil","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-79-sword-of-the-she-devil/4000-19374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19370/","id":19370,"name":"U-Man Comes to Town!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-38-u-man-comes-to-town/4000-19370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67524/","id":67524,"name":"Who Will Get the Cosmic Cube?","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-39-who-will-get-the-cosmic-cu/4000-67524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19367/","id":19367,"name":"A Night at the Museum!","site_detail_url":"https://comicvine.gamespot.com/godzilla-20-a-night-at-the-museum/4000-19367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324853/","id":324853,"name":"Hello New York","site_detail_url":"https://comicvine.gamespot.com/adventures-of-the-big-boy-263-hello-new-york/4000-324853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112364/","id":112364,"name":"Night of the Body Snatcher!; Fast Death to China!; The Eternity Book; The League of Crime!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-482-night-of-the-body-snatcher-fa/4000-112364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69831/","id":69831,"name":"Take a Look at...Mogol!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-79-take-a-look-atmogol/4000-69831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19365/","id":19365,"name":"The Anything Man!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-69-the-anything-man/4000-19365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19360/","id":19360,"name":"The Beasts in the Jungle!","site_detail_url":"https://comicvine.gamespot.com/black-panther-14-the-beasts-in-the-jungle/4000-19360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117459/","id":117459,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-266/4000-117459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124388/","id":124388,"name":"The Multiple Murders of Mapleville! / Pursuit / Only Legends Live Forever / The Hand That Feeds the Earth / School of the Amazoids","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-461-the-multiple-murders-of-maple/4000-124388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19310/","id":19310,"name":"The Blind Leading the Blind!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-27-the-blind-leading-th/4000-19310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19302/","id":19302,"name":"Claws!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-78-claws/4000-19302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19296/","id":19296,"name":"The Liberty Legion Busts Loose!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-37-the-liberty-legion-busts-loose/4000-19296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19316/","id":19316,"name":"What If Conan The Barbarian Walked The Earth Today?","site_detail_url":"https://comicvine.gamespot.com/what-if-13-what-if-conan-the-barbarian-walked-the-/4000-19316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19292/","id":19292,"name":"With Dugan on the Docks!","site_detail_url":"https://comicvine.gamespot.com/godzilla-19-with-dugan-on-the-docks/4000-19292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19303/","id":19303,"name":"My Master, Machinesmith","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-48-my-master-machinesmith/4000-19303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19284/","id":19284,"name":"Mayhem By Moonlight!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-189-mayhem-by-moonlight/4000-19284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19307/","id":19307,"name":"Chaos At the Coliseum","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-55-chaos-at-the-coliseum/4000-19307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19182/","id":19182,"name":"The Jigsaw is Up!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-188-the-jigsaw-is-up/4000-19182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19200/","id":19200,"name":"If I'm To Live, My Love Must Die","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-77-if-im-to-live-my-love-must-die/4000-19200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99773/","id":99773,"name":"From the dregs of defeat!","site_detail_url":"https://comicvine.gamespot.com/the-man-called-nova-23-from-the-dregs-of-defeat/4000-99773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19201/","id":19201,"name":"Happy Deathday, Mr. Grimm!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-47-happy-deathday-mr-grimm/4000-19201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19185/","id":19185,"name":"Traitors All About Me!","site_detail_url":"https://comicvine.gamespot.com/captain-america-229-traitors-all-about-me/4000-19185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383545/","id":383545,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-1-hc/4000-383545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19189/","id":19189,"name":"Val in Valhalla Part 2: We, The Unliving...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-67-val-in-valhalla-part-2-we-the-unl/4000-19189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19194/","id":19194,"name":"Crushed by Iron Cross","site_detail_url":"https://comicvine.gamespot.com/the-invaders-36-crushed-by-iron-cross/4000-19194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19210/","id":19210,"name":"Psi-War!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-117-psi-war/4000-19210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267618/","id":267618,"name":"Superman vs. Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/all-new-collectors-edition-54-superman-vs-wonder-w/4000-267618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19059/","id":19059,"name":"What If Rick Jones Had Become the Hulk?","site_detail_url":"https://comicvine.gamespot.com/what-if-12-what-if-rick-jones-had-become-the-hulk/4000-19059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19028/","id":19028,"name":"The Power of Electro!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-187-the-power-of-electro/4000-19028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19048/","id":19048,"name":"If Not For Love","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-76-if-not-for-love/4000-19048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18946/","id":18946,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-188/4000-18946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562441/","id":562441,"name":"","site_detail_url":"https://comicvine.gamespot.com/kamandi-le-dernier-garcon-sur-terre-12/4000-562441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18109/","id":18109,"name":"Nightlife, Encounter, Confrontation, Pursuit, Battle","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-13-nightlife-encounter-confr/4000-18109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19047/","id":19047,"name":"The Night Gwen Stacy Died","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-98-the-night-gwen-stacy-died/4000-19047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19030/","id":19030,"name":"A Serpent Lurks Below","site_detail_url":"https://comicvine.gamespot.com/captain-america-228-a-serpent-lurks-below/4000-19030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124384/","id":124384,"name":"A Nightmare to Remember! / The Canvas Inferno / Pursuit to Eternity / The Hunt / Deadly Song of the Wizard / The Quest for the Stolen Soul","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-460-a-nightmare-to-remember-the-c/4000-124384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19036/","id":19036,"name":"Of Lizards Great and Small","site_detail_url":"https://comicvine.gamespot.com/godzilla-17-of-lizards-great-and-small/4000-19036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19041/","id":19041,"name":"Havoc on the Homefront!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-35-havoc-on-the-homefront/4000-19041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19052/","id":19052,"name":"Heroes For Hire!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-54-heroes-for-hire/4000-19052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117456/","id":117456,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-263/4000-117456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18985/","id":18985,"name":"Visions of Death!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-115-visions-of-death/4000-18985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18971/","id":18971,"name":"The Smoke of that Great Burning","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-75-the-smoke-of-that-great-burning/4000-18971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99746/","id":99746,"name":"The Coming of the Comet","site_detail_url":"https://comicvine.gamespot.com/the-man-called-nova-22-the-coming-of-the-comet/4000-99746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18954/","id":18954,"name":"Chaos is--The Chameleon!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-186-chaos-is-the-chameleon/4000-18954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18873/","id":18873,"name":"Elementary!","site_detail_url":"https://comicvine.gamespot.com/super-friends-14-elementary/4000-18873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133746/","id":133746,"name":"The Third Face Is Death ; I Die Screaming ; The Sound of Murder ; The Wrecker ; The Captain and the King","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-253-the-third-face-is-death-i/4000-133746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175517/","id":175517,"name":"Alan Ford e il Gruppo T.N.T.","site_detail_url":"https://comicvine.gamespot.com/oscar-mondadori-909-alan-ford-e-il-gruppo-tnt/4000-175517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18960/","id":18960,"name":"To Die in Darkness!","site_detail_url":"https://comicvine.gamespot.com/daredevil-155-to-die-in-darkness/4000-18960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108033/","id":108033,"name":"Again: Multiplex","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-5-again-multiplex/4000-108033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18972/","id":18972,"name":"The Andromeda Rub-Out!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-45-the-andromeda-rub-out/4000-18972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18904/","id":18904,"name":"Live From New York","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-74-live-from-new-york/4000-18904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18884/","id":18884,"name":"Spider, Spider, Burning Bright!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-185-spider-spider-burning-b/4000-18884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18915/","id":18915,"name":"What if the Original Marvel Bullpen had Become the Fantastic Four?","site_detail_url":"https://comicvine.gamespot.com/what-if-11-what-if-the-original-marvel-bullpen-had/4000-18915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18905/","id":18905,"name":"The Wonderful World of Brother Benjamin J. Grimm","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-44-the-wonderful-world-of-brothe/4000-18905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18889/","id":18889,"name":"A Death for Immortality","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-31-a-death-for-immortality/4000-18889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221356/","id":221356,"name":"Where is She Now?; I'll Never Leave You; Human Beast!; Sewer Patrol","site_detail_url":"https://comicvine.gamespot.com/scary-tales-16-where-is-she-now-i-ll-never-leave-y/4000-221356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18872/","id":18872,"name":"A Scream In The Night!","site_detail_url":"https://comicvine.gamespot.com/steel-the-indestructible-man-5-a-scream-in-the-nig/4000-18872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18782/","id":18782,"name":"The Day of the Devils!","site_detail_url":"https://comicvine.gamespot.com/doorway-to-nightmare-5-the-day-of-the-devils/4000-18782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18815/","id":18815,"name":"Deadlier by the Dozen!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-63-deadlier-by-the-dozen/4000-18815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18824/","id":18824,"name":"A Fluttering of Wings Most Foul!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-73-a-fluttering-of-wings-most-foul/4000-18824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18087/","id":18087,"name":"When Strike The Monitors!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-3-when-strike-the-monitor/4000-18087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18808/","id":18808,"name":"White Dragon! Red Death!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-184-white-dragon-red-death/4000-18808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109646/","id":109646,"name":"Burial at Sea","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-247-burial-at-sea/4000-109646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18811/","id":18811,"name":"Devastation!","site_detail_url":"https://comicvine.gamespot.com/captain-america-225-devastation/4000-18811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18698/","id":18698,"name":"The Tomb of The White Bat","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-19-the-tomb-of-the-white-bat/4000-18698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107992/","id":107992,"name":"When Laughs the Hyena","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-4-when-laughs-the-hyena/4000-107992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18745/","id":18745,"name":"Crack of the Whip!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-72-crack-of-the-whip/4000-18745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100621/","id":100621,"name":"The Brain and the Bomb & Operation Rotten Apple","site_detail_url":"https://comicvine.gamespot.com/e-man-1-the-brain-and-the-bomb-operation-rotten-ap/4000-100621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100625/","id":100625,"name":"The Energy Crisis!, The Battery & Travis in the Dragon Killer","site_detail_url":"https://comicvine.gamespot.com/e-man-3-the-energy-crisis-the-battery-travis-in-th/4000-100625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18728/","id":18728,"name":"Saturday Night Furor!","site_detail_url":"https://comicvine.gamespot.com/captain-america-224-saturday-night-furor/4000-18728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18748/","id":18748,"name":"Mirror, Mirror!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-19-mirror-mirror/4000-18748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18715/","id":18715,"name":"Greed Games of The Gadgeteer!/Manhunt!","site_detail_url":"https://comicvine.gamespot.com/steel-the-indestructible-man-4-greed-games-of-the-/4000-18715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117453/","id":117453,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-259/4000-117453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18625/","id":18625,"name":"Six Claws of the Dragon!","site_detail_url":"https://comicvine.gamespot.com/doorway-to-nightmare-4-six-claws-of-the-dragon/4000-18625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18648/","id":18648,"name":"The Rocket Racer's Back in Town!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-182-the-rocket-racers-back-/4000-18648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18665/","id":18665,"name":"Deathgarden","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-71-deathgarden/4000-18665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18676/","id":18676,"name":"Somewhere Over the Rainbow Bridge!","site_detail_url":"https://comicvine.gamespot.com/thor-273-somewhere-over-the-rainbow-bridge/4000-18676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18539/","id":18539,"name":"The Monstrosity Chase","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-18-the-monstrosity-chase/4000-18539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18655/","id":18655,"name":"Life, Liberty, and the Pursuit of Lunatik!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-61-life-liberty-and-the-pursuit-of-l/4000-18655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18666/","id":18666,"name":"Voodoo And Valor!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-41-voodoo-and-valor/4000-18666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18569/","id":18569,"name":"Holocaust In New York Harbor!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-172-holocaust-in-new-york-harbor/4000-18569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18586/","id":18586,"name":"Whom Gods Destroy!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-70-whom-gods-destroy/4000-18586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18461/","id":18461,"name":"Blood Red Tear","site_detail_url":"https://comicvine.gamespot.com/doorway-to-nightmare-3-blood-red-tear/4000-18461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18597/","id":18597,"name":"The Day the Thunder Failed!","site_detail_url":"https://comicvine.gamespot.com/thor-272-the-day-the-thunder-failed/4000-18597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224594/","id":224594,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-299/4000-224594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18591/","id":18591,"name":"To Avenge The Earth","site_detail_url":"https://comicvine.gamespot.com/rampaging-hulk-9-to-avenge-the-earth/4000-18591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18570/","id":18570,"name":"Monumental Menace!","site_detail_url":"https://comicvine.gamespot.com/captain-america-222-monumental-menace/4000-18570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18589/","id":18589,"name":"The St. Valentine Day Avengers Massacre!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-18-the-st-valentine-day-avengers-massacr/4000-18589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18601/","id":18601,"name":"Getting Smooth","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-25-getting-smooth/4000-18601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107990/","id":107990,"name":"Kiss Not the Lips of Killer Frost","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-3-kiss-not-the-lips-of-k/4000-107990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18587/","id":18587,"name":"Conjure Night!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-40-conjure-night/4000-18587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18559/","id":18559,"name":"When Hammer Meets Steel/A Night Without Heroes","site_detail_url":"https://comicvine.gamespot.com/steel-the-indestructible-man-3-when-hammer-meets-s/4000-18559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117452/","id":117452,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-258/4000-117452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18488/","id":18488,"name":"\"...Where Angels Fear To Tread\"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-171-where-angels-fear-to-tread/4000-18488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18487/","id":18487,"name":"Who Was That Goblin I Saw You With?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-180-who-was-that-goblin-i-s/4000-18487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18503/","id":18503,"name":"Night of the Living God","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-69-night-of-the-living-god/4000-18503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18368/","id":18368,"name":"Scars; Horoscopes of Crime; There's A Demon Born Every Minute","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-17-scars-horoscopes-of-crime-the/4000-18368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461511/","id":461511,"name":"Hostage of the Singh Pirates","site_detail_url":"https://comicvine.gamespot.com/fantomen-197810-hostage-of-the-singh-pirates/4000-461511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212855/","id":212855,"name":"Sheriff in New York","site_detail_url":"https://comicvine.gamespot.com/mad-109-sheriff-in-new-york/4000-212855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18494/","id":18494,"name":"Xenogensis Day of the Demons Part 2: Tyranny and Mutation","site_detail_url":"https://comicvine.gamespot.com/the-defenders-59-xenogensis-day-of-the-demons-part/4000-18494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18490/","id":18490,"name":"Cul-De-Sac!","site_detail_url":"https://comicvine.gamespot.com/captain-america-221-cul-de-sac/4000-18490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18520/","id":18520,"name":"The Night After You Saved The Universe","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-24-the-night-after-you-saved-the-u/4000-18520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18392/","id":18392,"name":"Kingslayer","site_detail_url":"https://comicvine.gamespot.com/super-friends-11-kingslayer/4000-18392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18504/","id":18504,"name":"The Vision Gambit","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-39-the-vision-gambit/4000-18504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107988/","id":107988,"name":"Danger Doubled is Death","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-2-danger-doubled-is-deat/4000-107988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18402/","id":18402,"name":"The Goblin's Always Greener...!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-179-the-goblins-always-gree/4000-18402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18403/","id":18403,"name":"...\"Though Hell Should Bar the Way!\"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-170-though-hell-should-bar-the-way/4000-18403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18381/","id":18381,"name":"Earth's First and Last Super-Hero!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-153-earths-first-and-las/4000-18381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18422/","id":18422,"name":"The Measure Of A Man","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-68-the-measure-of-a-man/4000-18422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18377/","id":18377,"name":"Earth-Asylum for an Alien","site_detail_url":"https://comicvine.gamespot.com/green-lantern-103-earth-asylum-for-an-alien/4000-18377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18291/","id":18291,"name":"","site_detail_url":"https://comicvine.gamespot.com/doorway-to-nightmare-2/4000-18291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18434/","id":18434,"name":"What If The World Knew That Daredevil Is Blind?","site_detail_url":"https://comicvine.gamespot.com/what-if-8-what-if-the-world-knew-that-daredevil-is/4000-18434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18294/","id":18294,"name":"The Amazing Origin/The Deadly Return/The Startling Secret Of The Black Condor","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-13-the-amazing-origin-the-deadly-/4000-18294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18406/","id":18406,"name":"Xenogenesis Day of the Demon Part 1: Agents of Fortune","site_detail_url":"https://comicvine.gamespot.com/the-defenders-58-xenogenesis-day-of-the-demon-part/4000-18406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18404/","id":18404,"name":"The Ameridroid Lives!","site_detail_url":"https://comicvine.gamespot.com/captain-america-220-the-ameridroid-lives/4000-18404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18435/","id":18435,"name":"The 'X'-Sanction!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-110-the-x-sanction/4000-18435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18426/","id":18426,"name":"Freedom!","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-50-freedom/4000-18426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18423/","id":18423,"name":"Doomwatch!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-38-doomwatch/4000-18423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18307/","id":18307,"name":"From Hell is Forged ...a Hero!","site_detail_url":"https://comicvine.gamespot.com/steel-the-indestructible-man-1-from-hell-is-forged/4000-18307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18329/","id":18329,"name":"Show Me The Way To Go Home","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-221-show-me-the-way-to-go-home/4000-18329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107911/","id":107911,"name":"Make Way for Firestorm!","site_detail_url":"https://comicvine.gamespot.com/firestorm-the-nuclear-man-1-make-way-for-firestorm/4000-107911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18333/","id":18333,"name":"Tigra, Tigra, Burning Bright!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-67-tigra-tigra-burning-bright/4000-18333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18210/","id":18210,"name":"Fury of the Five-In-One Foe","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-16-fury-of-the-five-in-one-foe/4000-18210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18221/","id":18221,"name":"The Inheritor Kills","site_detail_url":"https://comicvine.gamespot.com/metal-men-56-the-inheritor-kills/4000-18221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18334/","id":18334,"name":"Game Point!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-37-game-point/4000-18334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18325/","id":18325,"name":"And Along Came... Ms. Marvel!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-57-and-along-came-ms-marvel/4000-18325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18131/","id":18131,"name":"Doorway to Nightmare","site_detail_url":"https://comicvine.gamespot.com/doorway-to-nightmare-1-doorway-to-nightmare/4000-18131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18133/","id":18133,"name":"\"Bust-Out in the Big House\"","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-12-bust-out-in-the-big-house/4000-18133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18240/","id":18240,"name":"One Day in Newfoundland!","site_detail_url":"https://comicvine.gamespot.com/captain-america-218-one-day-in-newfoundland/4000-18240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18270/","id":18270,"name":"If You Knew Soofi...!","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-21-if-you-knew-soofi/4000-18270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18238/","id":18238,"name":"Goblin in the Middle","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-177-goblin-in-the-middle/4000-18238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18256/","id":18256,"name":"Murder-World","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-66-murder-world/4000-18256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18173/","id":18173,"name":"Introducing, Captain Britain","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-65-introducing-captain-britain/4000-18173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18159/","id":18159,"name":"The Big Bang Theory","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-54-the-big-bang-theory/4000-18159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18146/","id":18146,"name":"How to make a Marshland Monster!","site_detail_url":"https://comicvine.gamespot.com/superman-319-how-to-make-a-marshland-monster/4000-18146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18155/","id":18155,"name":"He Who Laughs Last...!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-176-he-who-laughs-last/4000-18155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303801/","id":303801,"name":"Superman vs. Muhammad Ali","site_detail_url":"https://comicvine.gamespot.com/all-new-collectors-edition-56-superman-vs-muhammad/4000-303801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109558/","id":109558,"name":"A Duke Named Deception!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-239-a-duke-named-deception/4000-109558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18158/","id":18158,"name":"The Search for Steve Rogers!","site_detail_url":"https://comicvine.gamespot.com/captain-america-217-the-search-for-steve-rogers/4000-18158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18188/","id":18188,"name":"Scrubba-Dub Death!","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-20-scrubba-dub-death/4000-18188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17996/","id":17996,"name":"The End of the Quest","site_detail_url":"https://comicvine.gamespot.com/super-team-family-14-the-end-of-the-quest/4000-17996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18013/","id":18013,"name":"The Master Machinations of the Missle Men","site_detail_url":"https://comicvine.gamespot.com/metal-men-55-the-master-machinations-of-the-missle/4000-18013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18163/","id":18163,"name":"The Power Principle Part 3: Emotion, Ego... and Empty Expectations!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-55-the-power-principle-part-3-emotio/4000-18163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18064/","id":18064,"name":"Armageddon Now!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-108-armageddon-now/4000-18064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18059/","id":18059,"name":"The Coming of Razorback!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-13-the-coming-of-razorb/4000-18059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18033/","id":18033,"name":"Big Apple Battleground!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-175-big-apple-battleground/4000-18033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18051/","id":18051,"name":"If Death Be My Destiny...","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-64-if-death-be-my-destiny/4000-18051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557732/","id":557732,"name":"","site_detail_url":"https://comicvine.gamespot.com/supermann-197702/4000-557732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267967/","id":267967,"name":"End Game!","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-253-end-game/4000-267967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267968/","id":267968,"name":"How Shall I Kill You?","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-252-how-shall/4000-267968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18068/","id":18068,"name":"Howard the Human","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-19-howard-the-human/4000-18068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17028/","id":17028,"name":"Thunder In The 31st Century!","site_detail_url":"https://comicvine.gamespot.com/thor-annual-6-thunder-in-the-31st-century/4000-17028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17926/","id":17926,"name":"Divided We... Die??","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-11-divided-we-die/4000-17926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17932/","id":17932,"name":"Disasters of Yesteryear","site_detail_url":"https://comicvine.gamespot.com/karate-kid-11-disasters-of-yesteryear/4000-17932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217182/","id":217182,"name":"The Time Killers","site_detail_url":"https://comicvine.gamespot.com/the-eternals-annual-1-the-time-killers/4000-217182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267969/","id":267969,"name":"Murderworld!","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-251-murderwor/4000-267969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17952/","id":17952,"name":"The Hitman's Back in Town!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-174-the-hitmans-back-in-tow/4000-17952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17962/","id":17962,"name":"The Rampage Of Reed Richards!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-188-the-rampage-of-reed-richards/4000-17962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17953/","id":17953,"name":"Hammer of Vengeance!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-165-hammer-of-vengeance/4000-17953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17970/","id":17970,"name":"Night of the Dragon","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-63-night-of-the-dragon/4000-17970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267970/","id":267970,"name":"Terror in the Tunnel of Death!","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-250-terror-in/4000-267970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267971/","id":267971,"name":"Havoc on the High Iron!","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-249-havoc-on-/4000-267971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267972/","id":267972,"name":"The Final Deadly Showdown!","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-248-the-final/4000-267972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17961/","id":17961,"name":"Sersi the Terrible","site_detail_url":"https://comicvine.gamespot.com/the-eternals-17-sersi-the-terrible/4000-17961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17955/","id":17955,"name":"The Way It Really Was!","site_detail_url":"https://comicvine.gamespot.com/captain-america-215-the-way-it-really-was/4000-17955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17965/","id":17965,"name":"Beware the Beehive!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual-6-beware-the-beehive/4000-17965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17984/","id":17984,"name":"Metamorphosis","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-18-metamorphosis/4000-17984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17911/","id":17911,"name":"Ragnarok Night","site_detail_url":"https://comicvine.gamespot.com/super-team-family-13-ragnarok-night/4000-17911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17841/","id":17841,"name":"After the Ending","site_detail_url":"https://comicvine.gamespot.com/metal-men-54-after-the-ending/4000-17841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17960/","id":17960,"name":"The Power Principle Part 1: The Prince and The Presence!; Clea, the Mystic Maiden!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-53-the-power-principle-part-1-the-pr/4000-17960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131773/","id":131773,"name":"Last Hurrah for a Superman?!; Requiem of Rage; Isle of Hate--Isle of Dread!; Deathmaze!; The Man in the Doomsday Mask!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-247-last-hurrah-for-a-superma/4000-131773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17894/","id":17894,"name":"Where No X-Man Has Gone Before","site_detail_url":"https://comicvine.gamespot.com/the-x-men-107-where-no-x-man-has-gone-before/4000-17894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17880/","id":17880,"name":"All This, And The QE2!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-62-all-this-and-the-qe2/4000-17880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17885/","id":17885,"name":"The Hottest Slot In Town!","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-10-the-hottest-slot-in-town/4000-17885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17862/","id":17862,"name":"If You Can't Stand The Heat...!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-173-if-you-cant-stand-the-h/4000-17862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17869/","id":17869,"name":"Trouble times two!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-187-trouble-times-two/4000-17869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356446/","id":356446,"name":"The Secret Of The Silver Surfer!","site_detail_url":"https://comicvine.gamespot.com/rampage-3-the-secret-of-the-silver-surfer/4000-356446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356445/","id":356445,"name":"I Slay By The Stars!","site_detail_url":"https://comicvine.gamespot.com/rampage-2-i-slay-by-the-stars/4000-356445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249080/","id":249080,"name":"While London Gapes in Horror!","site_detail_url":"https://comicvine.gamespot.com/super-spider-man-and-captain-britain-245-while-lon/4000-249080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356415/","id":356415,"name":"A Titan Walks Among Us!","site_detail_url":"https://comicvine.gamespot.com/rampage-1-a-titan-walks-among-us/4000-356415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17868/","id":17868,"name":"Big City Crypt","site_detail_url":"https://comicvine.gamespot.com/the-eternals-16-big-city-crypt/4000-17868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17739/","id":17739,"name":"Murder In Miniature","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-10-murder-in-miniature/4000-17739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17883/","id":17883,"name":"Cry Murder -- Cry Modok!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-10-cry-murder-cry-modok/4000-17883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17830/","id":17830,"name":"\"Old Super-Heroines Never Die-- They Just Fade Away!\"","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-14-old-super-heroines-never-die-/4000-17830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17891/","id":17891,"name":"A World For The Winning","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-14-a-world-for-the-winning/4000-17891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17780/","id":17780,"name":"Home is Where the Hurt Is","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-215-home-is-where-the-hurt-is/4000-17780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17768/","id":17768,"name":"The Demi-God Must Die!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-163-the-demi-god-must-die/4000-17768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17787/","id":17787,"name":"Not All Thy Powers Can Save Thee!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-61-not-all-thy-powers-can-save-thee/4000-17787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67511/","id":67511,"name":"When Monsters Walked The earth","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-26-when-monsters-walked-the-e/4000-67511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217174/","id":217174,"name":"Blitzkrieg in Central Park!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-37-blitzkrieg-in-central-park/4000-217174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17010/","id":17010,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-super-special-1/4000-17010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17774/","id":17774,"name":"Danger is the Death-Stalker!","site_detail_url":"https://comicvine.gamespot.com/daredevil-148-danger-is-the-death-stalker/4000-17774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17731/","id":17731,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostly-haunts-54/4000-17731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17734/","id":17734,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-13/4000-17734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17782/","id":17782,"name":"Enter, The X-Men","site_detail_url":"https://comicvine.gamespot.com/iron-fist-15-enter-the-x-men/4000-17782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109776/","id":109776,"name":"Okay, Axis, Here We Come","site_detail_url":"https://comicvine.gamespot.com/invaders-annual-1-okay-axis-here-we-come/4000-109776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17682/","id":17682,"name":"The Jack of Hearts is Wild!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-214-the-jack-of-hearts-is-wild/4000-17682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17673/","id":17673,"name":"The Bride of Ultron!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-162-the-bride-of-ultron/4000-17673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17700/","id":17700,"name":"... LIKE A TIGER IN THE NIGHT!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-9-like-a-tiger-in-the-n/4000-17700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17693/","id":17693,"name":"A Matter of Love and Death!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-60-a-matter-of-love-and-death/4000-17693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17683/","id":17683,"name":"A Berserker Called Hulk!","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-12-a-berserker-called-hulk/4000-17683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17562/","id":17562,"name":"Blitzkreig at Buffalo","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-9-blitzkreig-at-buffalo/4000-17562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17557/","id":17557,"name":"I Am Batgirl's Brother!","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-12-i-am-batgirls-brother/4000-17557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17685/","id":17685,"name":"Snowfire","site_detail_url":"https://comicvine.gamespot.com/iron-fist-14-snowfire/4000-17685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117414/","id":117414,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-253/4000-117414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17605/","id":17605,"name":"Some Say Spidey Will Die By Fire...Some Say By Ice!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-59-some-say-spidey-will-die-by-fire/4000-17605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17599/","id":17599,"name":"Aftermath: The Eliminator!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-184-aftermath-the-eliminator/4000-17599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17600/","id":17600,"name":"You Just Don't Quarrel With The Quintronic Man!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-213-you-just-dont-quarrel-with/4000-17600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17589/","id":17589,"name":"Beware The Ant-Man!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-161-beware-the-ant-man/4000-17589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17567/","id":17567,"name":"The Black Belt Contract","site_detail_url":"https://comicvine.gamespot.com/karate-kid-9-the-black-belt-contract/4000-17567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17597/","id":17597,"name":"Who Remembers Scorpio? Part 2: Rampage","site_detail_url":"https://comicvine.gamespot.com/the-defenders-49-who-remembers-scorpio-part-2-ramp/4000-17597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17526/","id":17526,"name":"Phoenix Unleashed!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-105-phoenix-unleashed/4000-17526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17502/","id":17502,"name":"Crushed by... The Constrictor!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-212-crushed-by-the-constrictor/4000-17502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17475/","id":17475,"name":"A Tale of Two Satellites!; The Card Crimes Of The Royal Flush Gang!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-143-a-tale-of-two-satell/4000-17475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17496/","id":17496,"name":"Duel!","site_detail_url":"https://comicvine.gamespot.com/daredevil-146-duel/4000-17496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17491/","id":17491,"name":"Confrontation","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-169-confrontation/4000-17491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17512/","id":17512,"name":"Panic on Pier One!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-58-panic-on-pier-one/4000-17512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17503/","id":17503,"name":"Return to Earth!","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-11-return-to-earth/4000-17503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17393/","id":17393,"name":"Till Death Do Us Part!","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-11-till-death-do-us-part/4000-17393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17497/","id":17497,"name":"Who Remebers Scorpio? Part 1: Sinister Savior!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-48-who-remebers-scorpio-part-1-sinis/4000-17497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175196/","id":175196,"name":"Daddy's Little Girl Crimefighter!","site_detail_url":"https://comicvine.gamespot.com/teen-titans-48-daddys-little-girl-crimefighter/4000-175196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17445/","id":17445,"name":"The Power to Purge!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-6-the-power-to-purge/4000-17445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17426/","id":17426,"name":"To Begin Anew!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-50-to-begin-anew/4000-17426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17441/","id":17441,"name":"A Blast From the Past","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-8-a-blast-from-the-past/4000-17441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17402/","id":17402,"name":"Return From Forever!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-142-return-from-forever/4000-17402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17436/","id":17436,"name":"When Slays the Silver Samurai!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-57-when-slays-the-silver-samurai/4000-17436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125029/","id":125029,"name":"Prog 13","site_detail_url":"https://comicvine.gamespot.com/2000-ad-13-prog-13/4000-125029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17015/","id":17015,"name":"Death Watch!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-2-death-watch/4000-17015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17429/","id":17429,"name":"Danger Rides the Bitter Wind!","site_detail_url":"https://comicvine.gamespot.com/daredevil-145-danger-rides-the-bitter-wind/4000-17429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17415/","id":17415,"name":"Tyrannosaurus Rex!","site_detail_url":"https://comicvine.gamespot.com/welcome-back-kotter-4-tyrannosaurus-rex/4000-17415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17430/","id":17430,"name":"Night Moves!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-47-night-moves/4000-17430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17442/","id":17442,"name":"The Death of Luke Cage!","site_detail_url":"https://comicvine.gamespot.com/power-man-43-the-death-of-luke-cage/4000-17442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17399/","id":17399,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-54/4000-17399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17336/","id":17336,"name":"When Avengers Clash!!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-158-when-avengers-clash/4000-17336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17341/","id":17341,"name":"Who Remembers Scorpio?","site_detail_url":"https://comicvine.gamespot.com/the-defenders-46-who-remembers-scorpio/4000-17341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17357/","id":17357,"name":"Double Danger At The Daily Bugle","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-56-double-danger-at-the-daily-bugle/4000-17357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17345/","id":17345,"name":"Side by side with... Annihilus?!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-181-side-by-side-with-annihilus/4000-17345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17358/","id":17358,"name":"The Fixer and Mentallo Are Back","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-26-the-fixer-and-mentallo-are-ba/4000-17358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17343/","id":17343,"name":"Mind Trip!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-22-mind-trip/4000-17343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17366/","id":17366,"name":"Spider-Kill!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-5-spider-kill/4000-17366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17347/","id":17347,"name":"And Call The Doctor...Druid!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-210-and-call-the-doctordruid/4000-17347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17356/","id":17356,"name":"(Don't Fear) The Reaper","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-33-dont-fear-the-reaper/4000-17356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17340/","id":17340,"name":"Man-Bull Means Mayhem","site_detail_url":"https://comicvine.gamespot.com/daredevil-144-man-bull-means-mayhem/4000-17340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67507/","id":67507,"name":"Gone With The Windbag!","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-22-gone-with-the-windbag/4000-67507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17351/","id":17351,"name":"Showdown With The Guardsman!","site_detail_url":"https://comicvine.gamespot.com/iron-man-97-showdown-with-the-guardsman/4000-17351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17337/","id":17337,"name":"The River of Death","site_detail_url":"https://comicvine.gamespot.com/captain-america-208-the-river-of-death/4000-17337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17362/","id":17362,"name":"When Strikes the Goldbug!","site_detail_url":"https://comicvine.gamespot.com/power-man-42-when-strikes-the-goldbug/4000-17362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17350/","id":17350,"name":"Assault on Avengers Mansion!","site_detail_url":"https://comicvine.gamespot.com/iron-fist-12-assault-on-avengers-mansion/4000-17350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17360/","id":17360,"name":"Death is the Doomsday Man!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-4-death-is-the-doomsday-man/4000-17360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17234/","id":17234,"name":"The Emperor Of The North Pole","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-7-the-emperor-of-the-north-pole/4000-17234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17334/","id":17334,"name":"Norton of New York 2040AD","site_detail_url":"https://comicvine.gamespot.com/2001-a-space-odyssey-5-norton-of-new-york-2040ad/4000-17334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175194/","id":175194,"name":"\"Trouble--Which Rhymes With Double!\"","site_detail_url":"https://comicvine.gamespot.com/teen-titans-47-trouble-which-rhymes-with-double/4000-175194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17269/","id":17269,"name":"Bedlam in the Baxter Building!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-180-bedlam-in-the-baxter-building/4000-17269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17283/","id":17283,"name":"The Vulture Is A Bird Of Prey!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-4-the-vulture-is-a-bird/4000-17283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17275/","id":17275,"name":"A Tale of Two Countries","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-25-a-tale-of-two-countries/4000-17275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17259/","id":17259,"name":"A Ghost of Stone!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-157-a-ghost-of-stone/4000-17259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17270/","id":17270,"name":"The Absorbing Man is Out for Blood!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-209-the-absorbing-man-is-out-f/4000-17270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17142/","id":17142,"name":"To Doomsday and Beyond","site_detail_url":"https://comicvine.gamespot.com/super-team-family-9-to-doomsday-and-beyond/4000-17142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17279/","id":17279,"name":"Blockbuster!","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-7-blockbuster/4000-17279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17152/","id":17152,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-144/4000-17152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17154/","id":17154,"name":"Trial By Fear!","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-49-trial-by-fear/4000-17154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17287/","id":17287,"name":"Terrible Threat of the Tri-Animan","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-43-terrible-threat-of-the-tri-an/4000-17287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17267/","id":17267,"name":"We Must Free The Defenders!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-45-we-must-free-the-defenders/4000-17267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17278/","id":17278,"name":"War in space!","site_detail_url":"https://comicvine.gamespot.com/nova-7-war-in-space/4000-17278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17280/","id":17280,"name":"Thunderbolt and Goldbug!","site_detail_url":"https://comicvine.gamespot.com/power-man-41-thunderbolt-and-goldbug/4000-17280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17272/","id":17272,"name":"Only A Friend Can Save Him","site_detail_url":"https://comicvine.gamespot.com/iron-man-96-only-a-friend-can-save-him/4000-17272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17261/","id":17261,"name":"The Tiger and the Swine!","site_detail_url":"https://comicvine.gamespot.com/captain-america-207-the-tiger-and-the-swine/4000-17261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17277/","id":17277,"name":"The Lady's Not For Killing!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-3-the-ladys-not-for-killing/4000-17277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17155/","id":17155,"name":"Our Mentor, The Robot","site_detail_url":"https://comicvine.gamespot.com/metal-men-50-our-mentor-the-robot/4000-17155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17266/","id":17266,"name":"\"Hyde and Go Seek\", Sayeth the Cobra","site_detail_url":"https://comicvine.gamespot.com/daredevil-143-hyde-and-go-seek-sayeth-the-cobra/4000-17266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17182/","id":17182,"name":"A Robinson Crusoe In The Negative Zone!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-179-a-robinson-crusoe-in-the-negati/4000-17182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17180/","id":17180,"name":"The Coming of... Dr. Strange!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-21-the-coming-of-dr-strange/4000-17180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17204/","id":17204,"name":"...And There Was Lightmaster","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-3-and-there-was-lightma/4000-17204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17184/","id":17184,"name":"A Monster In Our Midst!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-208-a-monster-in-our-midst/4000-17184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17185/","id":17185,"name":"The Inhumans!","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-9-the-inhumans/4000-17185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17177/","id":17177,"name":"The Concrete Jungle","site_detail_url":"https://comicvine.gamespot.com/daredevil-142-the-concrete-jungle/4000-17177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17179/","id":17179,"name":"Rage of the Rajah!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-44-rage-of-the-rajah/4000-17179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17201/","id":17201,"name":"Rush Hour to Limbo!","site_detail_url":"https://comicvine.gamespot.com/power-man-40-rush-hour-to-limbo/4000-17201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17188/","id":17188,"name":"Ultimo!","site_detail_url":"https://comicvine.gamespot.com/iron-man-95-ultimo/4000-17188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17173/","id":17173,"name":"Face to Face with the Swine!","site_detail_url":"https://comicvine.gamespot.com/captain-america-206-face-to-face-with-the-swine/4000-17173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17187/","id":17187,"name":"A Fine Day's Dying!","site_detail_url":"https://comicvine.gamespot.com/iron-fist-11-a-fine-days-dying/4000-17187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17181/","id":17181,"name":"The City of Toads","site_detail_url":"https://comicvine.gamespot.com/the-eternals-8-the-city-of-toads/4000-17181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17199/","id":17199,"name":"And so... The Sphinx!","site_detail_url":"https://comicvine.gamespot.com/nova-6-and-so-the-sphinx/4000-17199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17198/","id":17198,"name":"Enigma of Fear!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-2-enigma-of-fear/4000-17198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67506/","id":67506,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-21/4000-67506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17060/","id":17060,"name":"Witching Hour for the Warrior WIzards","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-6-witching-hour-for-the-warrior-w/4000-17060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109511/","id":109511,"name":"Retreat to Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-228-retreat-to-tomorrow/4000-109511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17102/","id":17102,"name":"Call My Killer--The Brute!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-178-call-my-killer-the-brute/4000-17102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17094/","id":17094,"name":"Crucible!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-48-crucible/4000-17094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17109/","id":17109,"name":"Death On The Bridge To Heaven!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-23-death-on-the-bridge-to-heaven/4000-17109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17119/","id":17119,"name":"Kraven is the Hunter!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-2-kraven-is-the-hunter/4000-17119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17103/","id":17103,"name":"Alone Against the Defenders!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-207-alone-against-the-defender/4000-17103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17090/","id":17090,"name":"To Stand Alone!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-155-to-stand-alone/4000-17090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17113/","id":17113,"name":"The Power Of The Wrench!","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-6-the-power-of-the-wrench/4000-17113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17111/","id":17111,"name":"This Woman, This Warrior!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-1-this-woman-this-warrior/4000-17111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17123/","id":17123,"name":"The Marauder and the Man of Iron","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-42-the-marauder-and-the-man-of-i/4000-17123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17099/","id":17099,"name":"This World is Mine!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-43-this-world-is-mine/4000-17099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17115/","id":17115,"name":"Battle With the Baron!","site_detail_url":"https://comicvine.gamespot.com/power-man-39-battle-with-the-baron/4000-17115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17092/","id":17092,"name":"Agron Walks the Earth!","site_detail_url":"https://comicvine.gamespot.com/captain-america-205-agron-walks-the-earth/4000-17092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17112/","id":17112,"name":"Evil is the Earth-Shaker","site_detail_url":"https://comicvine.gamespot.com/nova-5-evil-is-the-earth-shaker/4000-17112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109510/","id":109510,"name":"My World...in Ashes!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-227-my-worldin-ashes/4000-109510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18003/","id":18003,"name":"Find the Batcave and Rule the Underworld","site_detail_url":"https://comicvine.gamespot.com/the-batman-family-15-find-the-batcave-and-rule-the/4000-18003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415186/","id":415186,"name":"","site_detail_url":"https://comicvine.gamespot.com/superhero-women-1/4000-415186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437077/","id":437077,"name":"A Fool's Gold","site_detail_url":"https://comicvine.gamespot.com/willy-and-wanda-8-a-fool-s-gold/4000-437077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17097/","id":17097,"name":"Target: Death!","site_detail_url":"https://comicvine.gamespot.com/daredevil-141-target-death/4000-17097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16976/","id":16976,"name":"Twice Stings the Tarantula!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-1-twice-stings-the-tara/4000-16976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16954/","id":16954,"name":"Look Out For The Frightful Four!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-177-look-out-for-the-frightful-four/4000-16954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16944/","id":16944,"name":"\"When Strikes Attuma?\"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-154-when-strikes-attuma/4000-16944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16978/","id":16978,"name":"The Answer At Last","site_detail_url":"https://comicvine.gamespot.com/thor-254-the-answer-at-last/4000-16978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16969/","id":16969,"name":"Thunder on the Threshold of Death!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-22-thunder-on-the-threshold-of-d/4000-16969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16830/","id":16830,"name":"The Rise and Fall of King Samson","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-5-the-rise-and-fall-of-king-samso/4000-16830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16968/","id":16968,"name":"Danger: Demon On A Rampage","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-52-danger-demon-on-a-rampage/4000-16968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16981/","id":16981,"name":"Who Shall Stop the Juggernaut?","site_detail_url":"https://comicvine.gamespot.com/the-x-men-102-who-shall-stop-the-juggernaut/4000-16981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16953/","id":16953,"name":"Gods and Men at City College!","site_detail_url":"https://comicvine.gamespot.com/the-eternals-6-gods-and-men-at-city-college/4000-16953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16949/","id":16949,"name":"Death Times Two!","site_detail_url":"https://comicvine.gamespot.com/daredevil-140-death-times-two/4000-16949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16951/","id":16951,"name":"And in This Corner: The New Emissaries of Evil!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-42-and-in-this-corner-the-new-emissa/4000-16951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15926/","id":15926,"name":"No Final Victory","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-6-no-final-victory/4000-15926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16945/","id":16945,"name":"The Unburied One!","site_detail_url":"https://comicvine.gamespot.com/captain-america-204-the-unburied-one/4000-16945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16973/","id":16973,"name":"Big Brother Wants You...Dead!","site_detail_url":"https://comicvine.gamespot.com/power-man-38-big-brother-wants-youdead/4000-16973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16977/","id":16977,"name":"Pawns of Attuma!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-9-pawns-of-attuma/4000-16977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16959/","id":16959,"name":"Kung Fu Killer!","site_detail_url":"https://comicvine.gamespot.com/iron-fist-10-kung-fu-killer/4000-16959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16971/","id":16971,"name":"Nova against the Mighty Thor","site_detail_url":"https://comicvine.gamespot.com/nova-4-nova-against-the-mighty-thor/4000-16971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67505/","id":67505,"name":"Day of The Ray!","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-20-day-of-the-ray/4000-67505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16956/","id":16956,"name":"A Man-Brute Berserk!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-206-a-man-brute-berserk/4000-16956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16983/","id":16983,"name":"The Way The Cookie Crumbles","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck-7-the-way-the-cookie-crumbles/4000-16983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16965/","id":16965,"name":"Once Upon a Time...The Silver Surfer!","site_detail_url":"https://comicvine.gamespot.com/marvel-presents-8-once-upon-a-timethe-silver-surfe/4000-16965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56604/","id":56604,"name":"A Fate Worse Than Death!","site_detail_url":"https://comicvine.gamespot.com/plop-24-a-fate-worse-than-death/4000-56604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16865/","id":16865,"name":"Crisis!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-47-crisis/4000-16865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16871/","id":16871,"name":"Improbable As it May Seem--The Impossible Man is Back in Town!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-176-improbable-as-it-may-seem-the-i/4000-16871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16880/","id":16880,"name":"The Trial of the Wraith","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-51-the-trial-of-the-wraith/4000-16880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16861/","id":16861,"name":"Home Is The Hero!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-153-home-is-the-hero/4000-16861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16881/","id":16881,"name":"Black Sun Lives!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-21-black-sun-lives/4000-16881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16811/","id":16811,"name":"","site_detail_url":"https://comicvine.gamespot.com/super-team-family-7/4000-16811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16834/","id":16834,"name":"Crisis on Earth-S!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-136-crisis-on-earth-s/4000-16834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16884/","id":16884,"name":"Through the Rat Hole -- Into the Cat's Lair!","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-5-through-the-rat-hole-into-the-/4000-16884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16860/","id":16860,"name":"Let The Punisher Fit The Crime!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-162-let-the-punisher-fit-th/4000-16860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16867/","id":16867,"name":"A Night in the Life...","site_detail_url":"https://comicvine.gamespot.com/daredevil-139-a-night-in-the-life/4000-16867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16875/","id":16875,"name":"Burn, Hero--Burn!","site_detail_url":"https://comicvine.gamespot.com/iron-man-92-burn-hero-burn/4000-16875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16886/","id":16886,"name":"Chemistro is Back! Deadlier than ever!","site_detail_url":"https://comicvine.gamespot.com/power-man-37-chemistro-is-back-deadlier-than-ever/4000-16886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16874/","id":16874,"name":"The Dragon Dies at Dawn!","site_detail_url":"https://comicvine.gamespot.com/iron-fist-9-the-dragon-dies-at-dawn/4000-16874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16870/","id":16870,"name":"Olympia!","site_detail_url":"https://comicvine.gamespot.com/the-eternals-5-olympia/4000-16870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16883/","id":16883,"name":"The deadly Diamondhead is ready to strike!","site_detail_url":"https://comicvine.gamespot.com/nova-3-the-deadly-diamondhead-is-ready-to-strike/4000-16883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16769/","id":16769,"name":"Love, Anarchy and, oh Yes...The Assassin!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-40-love-anarchy-and-oh-yesthe-assass/4000-16769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16788/","id":16788,"name":"The Mystery of the Wraith!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-50-the-mystery-of-the-wraith/4000-16788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16761/","id":16761,"name":"Nightmare In New Orleans!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-152-nightmare-in-new-orleans/4000-16761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16647/","id":16647,"name":"The Ghost in the Cellar","site_detail_url":"https://comicvine.gamespot.com/ghosts-49-the-ghost-in-the-cellar/4000-16647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16760/","id":16760,"name":"...And The Nightcrawler Came Prowling, Prowling","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-161-and-the-nightcrawler-ca/4000-16760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16780/","id":16780,"name":"Breakout!","site_detail_url":"https://comicvine.gamespot.com/iron-man-91-breakout/4000-16780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16766/","id":16766,"name":"Where is Karen Page?","site_detail_url":"https://comicvine.gamespot.com/daredevil-138-where-is-karen-page/4000-16766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16762/","id":16762,"name":"Mad, Mad Dimension!","site_detail_url":"https://comicvine.gamespot.com/captain-america-202-mad-mad-dimension/4000-16762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16792/","id":16792,"name":"Chemistro!","site_detail_url":"https://comicvine.gamespot.com/power-man-36-chemistro/4000-16792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16779/","id":16779,"name":"Like Tigers in the Night","site_detail_url":"https://comicvine.gamespot.com/iron-fist-8-like-tigers-in-the-night/4000-16779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16772/","id":16772,"name":"The Night of the Demons!","site_detail_url":"https://comicvine.gamespot.com/the-eternals-4-the-night-of-the-demons/4000-16772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16721/","id":16721,"name":"The first night of... the Condor!","site_detail_url":"https://comicvine.gamespot.com/nova-2-the-first-night-of-the-condor/4000-16721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16645/","id":16645,"name":"The Left Hand of Oblivion","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-4-the-left-hand-of-oblivion/4000-16645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16789/","id":16789,"name":"Showdown at Sea!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-20-showdown-at-sea/4000-16789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69813/","id":69813,"name":"Above the Earth - a Titan Rages!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-60-above-the-earth-a-titan-rag/4000-69813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16679/","id":16679,"name":"Riot in Cellblock 12!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-39-riot-in-cellblock-12/4000-16679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16690/","id":16690,"name":"Madness is all in the Mind!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-49-madness-is-all-in-the-mind/4000-16690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16691/","id":16691,"name":"The Claws Of The Cougar!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-19-the-claws-of-the-cougar/4000-16691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16673/","id":16673,"name":"At Last: The Decision!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-151-at-last-the-decision/4000-16673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16695/","id":16695,"name":"Cats and No Dogs!","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-4-cats-and-no-dogs/4000-16695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550129/","id":550129,"name":"Spider-Man Zaps Mr. Zodiac","site_detail_url":"https://comicvine.gamespot.com/western-publishings-big-little-books-5779-2-spider/4000-550129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16694/","id":16694,"name":"Nova","site_detail_url":"https://comicvine.gamespot.com/nova-1-nova/4000-16694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16686/","id":16686,"name":"When Calls The Controller","site_detail_url":"https://comicvine.gamespot.com/iron-man-90-when-calls-the-controller/4000-16686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16677/","id":16677,"name":"The Murder Maze Strikes Twice!","site_detail_url":"https://comicvine.gamespot.com/daredevil-137-the-murder-maze-strikes-twice/4000-16677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16674/","id":16674,"name":"The Night People!","site_detail_url":"https://comicvine.gamespot.com/captain-america-201-the-night-people/4000-16674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16697/","id":16697,"name":"Of Memories, Both Vicious and Haunting","site_detail_url":"https://comicvine.gamespot.com/power-man-35-of-memories-both-vicious-and-haunting/4000-16697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16681/","id":16681,"name":"The Devil in New York!","site_detail_url":"https://comicvine.gamespot.com/the-eternals-3-the-devil-in-new-york/4000-16681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117404/","id":117404,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-245/4000-117404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69812/","id":69812,"name":"This Monster Unleashed!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-59-this-monster-unleashed/4000-69812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16608/","id":16608,"name":"Dark, Dark Demon-Night!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-18-dark-dark-demon-night/4000-16608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16584/","id":16584,"name":"Avengers Assemble!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-150-avengers-assemble/4000-16584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16607/","id":16607,"name":"A Fine Night for Dying","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-48-a-fine-night-for-dying/4000-16607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16471/","id":16471,"name":null,"site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-3/4000-16471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16580/","id":16580,"name":"Prophet Of Peace","site_detail_url":"https://comicvine.gamespot.com/star-trek-39-prophet-of-peace/4000-16580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16589/","id":16589,"name":"A Hanging for a Hero!","site_detail_url":"https://comicvine.gamespot.com/daredevil-136-a-hanging-for-a-hero/4000-16589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16611/","id":16611,"name":"Death, Taxes, and Springtime Vendettas","site_detail_url":"https://comicvine.gamespot.com/power-man-34-death-taxes-and-springtime-vendettas/4000-16611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16496/","id":16496,"name":"The Gods And The Gang!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-149-the-gods-and-the-gang/4000-16496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16514/","id":16514,"name":"I Have To Fight The Basilisk","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-47-i-have-to-fight-the-basilisk/4000-16514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16506/","id":16506,"name":"Cry, the Bedeviled Planet!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-172-cry-the-bedeviled-planet/4000-16506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16515/","id":16515,"name":"This City -- Afire!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-17-this-city-afire/4000-16515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16517/","id":16517,"name":"Burn While You Learn!","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown-3-burn-while-you-learn/4000-16517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16494/","id":16494,"name":"Hammerhead is Out!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-158-hammerhead-is-out/4000-16494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16476/","id":16476,"name":"\"The Beasts Who Fought Like Men!\"","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-132-the-beasts-who-fough/4000-16476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16477/","id":16477,"name":"A Connecticut Mutant in Great Casesar's Court","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-43-a-connecticut-mut/4000-16477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109507/","id":109507,"name":"Wonder Woman vs the United States!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-224-wonder-woman-vs-the-united-states/4000-109507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16519/","id":16519,"name":"Sticks and Stones will break your bones, but Spears can kill you","site_detail_url":"https://comicvine.gamespot.com/power-man-33-sticks-and-stones-will-break-your-bon/4000-16519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69811/","id":69811,"name":"Ring Around the Rhino!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-58-ring-around-the-rhino/4000-69811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16415/","id":16415,"name":"Death Is A Golden Gorilla!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-171-death-is-a-golden-gorilla/4000-16415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16427/","id":16427,"name":"Am I Now Or Have I Ever Been?","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-46-am-i-now-or-have-i-ever-been/4000-16427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16387/","id":16387,"name":"\"The Beasts Who Thought Like Men\"","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-131-the-beasts-who-thoug/4000-16387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16436/","id":16436,"name":"There Shall Come Revolution!","site_detail_url":"https://comicvine.gamespot.com/thor-248-there-shall-come-revolution/4000-16436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16396/","id":16396,"name":"Superman, 2001!","site_detail_url":"https://comicvine.gamespot.com/superman-300-superman-2001/4000-16396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16307/","id":16307,"name":"Rampage!","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-2-rampage/4000-16307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101427/","id":101427,"name":"Before My Eyes, Nick Fury Died!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-16-before-my-eyes-nick-fury-/4000-101427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15916/","id":15916,"name":"Their Name Is Legion!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-1-their-name-is-legion/4000-15916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16424/","id":16424,"name":"Hey, Ma! They're Blitzin' the Bronx!","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-30-hey-ma-theyre-blitzin-the-bronx/4000-16424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16432/","id":16432,"name":"The Fire This Time!","site_detail_url":"https://comicvine.gamespot.com/power-man-32-the-fire-this-time/4000-16432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56601/","id":56601,"name":"The Rise and Fall of Stanley Steamer","site_detail_url":"https://comicvine.gamespot.com/plop-21-the-rise-and-fall-of-stanley-steamer/4000-56601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16338/","id":16338,"name":"Bring Back My Body To Me, To Me...!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-35-bring-back-my-body-to-me-to-me/4000-16338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16348/","id":16348,"name":"The Return Of The Living Eraser","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-15-the-return-of-the-living-eras/4000-16348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16340/","id":16340,"name":"A Sky-Full of Fear!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-170-a-sky-full-of-fear/4000-16340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16347/","id":16347,"name":"Future-Shock!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-45-future-shock/4000-16347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16352/","id":16352,"name":"Over the Years They Murdered the Stars","site_detail_url":"https://comicvine.gamespot.com/power-man-31-over-the-years-they-murdered-the-star/4000-16352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16204/","id":16204,"name":"The Revenge of Solomon Grundy","site_detail_url":"https://comicvine.gamespot.com/super-team-family-4-the-revenge-of-solomon-grundy/4000-16204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16342/","id":16342,"name":". . . And Let the Battle Begin!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-6-and-let-the-battle-begin/4000-16342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69810/","id":69810,"name":"And Now... The Space Parasite","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-57-and-now-the-space-parasite/4000-69810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16275/","id":16275,"name":"The Fury of Firelord!","site_detail_url":"https://comicvine.gamespot.com/thor-246-the-fury-of-firelord/4000-16275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16244/","id":16244,"name":"The Assassin Never Fails!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-146-the-assassin-never-fails/4000-16244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16278/","id":16278,"name":"The Sentinels are Back!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-98-the-sentinels-are-back/4000-16278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16243/","id":16243,"name":"Whodunit!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-155-whodunit/4000-16243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16249/","id":16249,"name":"Battle Beneath the Big Top!","site_detail_url":"https://comicvine.gamespot.com/daredevil-132-battle-beneath-the-big-top/4000-16249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16267/","id":16267,"name":"Death In The Year Before Yesterday","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-44-death-in-the-year-before-yesterd/4000-16267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16257/","id":16257,"name":"The Doom Called Shatterstar!","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-4-the-doom-called-shatterstar/4000-16257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16271/","id":16271,"name":"Look what they've done to our lives, ma","site_detail_url":"https://comicvine.gamespot.com/power-man-30-look-what-theyve-done-to-our-lives-ma/4000-16271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16133/","id":16133,"name":"The Freedom Fighters","site_detail_url":"https://comicvine.gamespot.com/freedom-fighters-1-the-freedom-fighters/4000-16133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16274/","id":16274,"name":"...And Be a Villain!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-5-and-be-a-villain/4000-16274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101426/","id":101426,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-15/4000-101426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244434/","id":244434,"name":"Mirror, Mirror, On the Wall; I Want to Be a Star!; Child's Play; The Snake God; What's Inside Roger?","site_detail_url":"https://comicvine.gamespot.com/scary-tales-5-mirror-mirror-on-the-wall-i-want-to-/4000-244434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16263/","id":16263,"name":"Lo, the Liberty Legion!","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-29-lo-the-liberty-legion/4000-16263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16158/","id":16158,"name":"The Taking Of The Avengers!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-145-the-taking-of-the-avengers/4000-16158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16163/","id":16163,"name":"Watch Out for Bullseye, He Never Misses","site_detail_url":"https://comicvine.gamespot.com/daredevil-131-watch-out-for-bullseye-he-never-miss/4000-16163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16166/","id":16166,"name":"Where Have All the Powers Gone?","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-168-where-have-all-the-powers-gone/4000-16166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16174/","id":16174,"name":"Ghost Town!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-14-ghost-town/4000-16174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16169/","id":16169,"name":"Night Of The Walking Bomb!","site_detail_url":"https://comicvine.gamespot.com/iron-man-84-night-of-the-walking-bomb/4000-16169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16051/","id":16051,"name":"Fangs of the Kobra!","site_detail_url":"https://comicvine.gamespot.com/kobra-1-fangs-of-the-kobra/4000-16051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16123/","id":16123,"name":"Starman","site_detail_url":"https://comicvine.gamespot.com/1st-issue-special-12-starman/4000-16123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16168/","id":16168,"name":"Red Skull in the Sunset","site_detail_url":"https://comicvine.gamespot.com/the-invaders-5-red-skull-in-the-sunset/4000-16168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16069/","id":16069,"name":"The Longest Hundred Yards!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-153-the-longest-hundred-yar/4000-16069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16076/","id":16076,"name":"Musical Minds!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-32-musical-minds/4000-16076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101425/","id":101425,"name":"The Golden Ghost; And Men Shall Call Him Traitor; The Coming Of...Whiplash!; And So It Begins....!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-14-the-golden-ghost-and-men-/4000-101425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16041/","id":16041,"name":"Codename: Assassin","site_detail_url":"https://comicvine.gamespot.com/1st-issue-special-11-codename-assassin/4000-16041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16039/","id":16039,"name":"Hidden Paradise; The Unbelievers; That Old Gang of Mine; A Dead Man's Due","site_detail_url":"https://comicvine.gamespot.com/monster-hunters-4-hidden-paradise-the-unbelievers-/4000-16039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251300/","id":251300,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-124/4000-251300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15991/","id":15991,"name":"Shattered By the Shocker!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-152-shattered-by-the-shocke/4000-15991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16012/","id":16012,"name":"I Created Braggadoom! The Mountain That Walked Like A Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-13-i-created-braggadoom-the-moun/4000-16012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15998/","id":15998,"name":"Man-Bull in a China Town!","site_detail_url":"https://comicvine.gamespot.com/daredevil-129-man-bull-in-a-china-town/4000-15998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153647/","id":153647,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-action-1/4000-153647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16013/","id":16013,"name":"Cages of Myth, Managerie of Mirrors!","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-36-cages-of-myth-managerie-of-mi/4000-16013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251297/","id":251297,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-121/4000-251297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339448/","id":339448,"name":"","site_detail_url":"https://comicvine.gamespot.com/valiant-760110/4000-339448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327068/","id":327068,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-super-heroes-45/4000-327068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112157/","id":112157,"name":"","site_detail_url":"https://comicvine.gamespot.com/superman-vs-the-amazing-spider-man-1/4000-112157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15935/","id":15935,"name":"The Duck and the Defenders","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-12-the-duck-and-the-defend/4000-15935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178537/","id":178537,"name":"","site_detail_url":"https://comicvine.gamespot.com/hansi-the-girl-who-loved-the-swastika-1/4000-178537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279220/","id":279220,"name":"Pull of the Prodigy","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-vs-the-prodigy-1-pull-of-th/4000-279220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16005/","id":16005,"name":"Plunder Of The Apes!","site_detail_url":"https://comicvine.gamespot.com/iron-man-82-plunder-of-the-apes/4000-16005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15994/","id":15994,"name":"The Madbomb. Screamer in the Brain!","site_detail_url":"https://comicvine.gamespot.com/captain-america-193-the-madbomb-screamer-in-the-br/4000-15994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16966/","id":16966,"name":"Man-God","site_detail_url":"https://comicvine.gamespot.com/marvel-preview-9-man-god/4000-16966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15862/","id":15862,"name":"The Light of Other Worlds!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-165-the-light-of-other-worlds/4000-15862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14896/","id":14896,"name":"Mission: Murder!; Do or Die, Baby!","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-2-mission-murder-do-or-die-baby/4000-14896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15859/","id":15859,"name":"Shall I Love the Bird of Fire?","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-19-shall-i-love-the-bi/4000-15859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15867/","id":15867,"name":"Valley of the Damned!","site_detail_url":"https://comicvine.gamespot.com/iron-fist-2-valley-of-the-damned/4000-15867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15855/","id":15855,"name":"Skirmish Beneath the Streets!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-151-skirmish-beneath-the-st/4000-15855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417916/","id":417916,"name":"T'was The Night Before Christmas; Spidey Goes Mad!; Jingle Bombs!; Heaven Is A Very Small Place!; Eternity! Eternity!","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-8-twas-the-night-before-ch/4000-417916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15884/","id":15884,"name":"When the Servitor Commands","site_detail_url":"https://comicvine.gamespot.com/thor-242-when-the-servitor-commands/4000-15884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15874/","id":15874,"name":"Murder's Better the Second Time Around!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-40-murders-better-the-second-time-a/4000-15874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15878/","id":15878,"name":"The Man Who Killed Jiminy Cricket","site_detail_url":"https://comicvine.gamespot.com/power-man-28-the-man-who-killed-jiminy-cricket/4000-15878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251294/","id":251294,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-avengers-119/4000-251294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338820/","id":338820,"name":"","site_detail_url":"https://comicvine.gamespot.com/valiant-751220/4000-338820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15856/","id":15856,"name":"Mad-Flight!","site_detail_url":"https://comicvine.gamespot.com/captain-america-192-mad-flight/4000-15856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15886/","id":15886,"name":"How Strange My Destiny","site_detail_url":"https://comicvine.gamespot.com/warlock-10-how-strange-my-destiny/4000-15886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101424/","id":101424,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-13/4000-101424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15782/","id":15782,"name":"The Doctor's Name Is... Samson!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-193-the-doctors-name-is-samson/4000-15782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15780/","id":15780,"name":"The Crusader Syndrome!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-164-the-crusader-syndrome/4000-15780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15778/","id":15778,"name":"Secret of the Dragon","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-18-secret-of-the-drago/4000-15778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15813/","id":15813,"name":"The Phantom Empire!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-141-the-phantom-empire/4000-15813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15772/","id":15772,"name":"Spider-Man...or Spider-Clone?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-150-spider-manor-spider-clo/4000-15772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15750/","id":15750,"name":"Avenging Ghosts of the Justice Society!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-124-avenging-ghosts-of-t/4000-15750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15791/","id":15791,"name":"Any Number Can Slay!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-39-any-number-can-slay/4000-15791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15784/","id":15784,"name":"A Duel of Iron!","site_detail_url":"https://comicvine.gamespot.com/iron-fist-1-a-duel-of-iron/4000-15784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109519/","id":109519,"name":"The Man Who Wiped Out Time!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-220-the-man-who-wiped-out-time/4000-109519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117394/","id":117394,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-237/4000-117394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15668/","id":15668,"name":"Even If I Live, I Die","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-149-even-if-i-live-i-die/4000-15668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15699/","id":15699,"name":"Just a guy named \"X\"!","site_detail_url":"https://comicvine.gamespot.com/power-man-27-just-a-guy-named-x/4000-15699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15669/","id":15669,"name":"Journey to the Center of the Ant","site_detail_url":"https://comicvine.gamespot.com/the-avengers-140-journey-to-the-center-of-the-ant/4000-15669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15641/","id":15641,"name":"Where on Earth Am I?","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-123-where-on-earth-am-i/4000-15641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15694/","id":15694,"name":"Night of the Griffin","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-38-night-of-the-griffin/4000-15694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76783/","id":76783,"name":"","site_detail_url":"https://comicvine.gamespot.com/young-romance-207/4000-76783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15691/","id":15691,"name":"Mind-Storm!","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-25-mind-storm/4000-15691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101423/","id":101423,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-12/4000-101423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15909/","id":15909,"name":"The Web and The Flame","site_detail_url":"https://comicvine.gamespot.com/giant-size-spider-man-6-the-web-and-the-flame/4000-15909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334887/","id":334887,"name":"","site_detail_url":"https://comicvine.gamespot.com/arcade-3/4000-334887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15574/","id":15574,"name":"Rocky Mountain 'Bye!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-40-rocky-mountain-bye/4000-15574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15623/","id":15623,"name":"Prescription: Violence","site_detail_url":"https://comicvine.gamespot.com/the-avengers-139-prescription-violence/4000-15623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15594/","id":15594,"name":"The Thing Goes South!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-11-the-thing-goes-south/4000-15594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15602/","id":15602,"name":"Time-Quake","site_detail_url":"https://comicvine.gamespot.com/thor-239-time-quake/4000-15602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15572/","id":15572,"name":"Jackal, Jackal...Who's Got the Jackal?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-148-jackal-jackalwhos-got-t/4000-15572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158554/","id":158554,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-of-monsters-1/4000-158554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15591/","id":15591,"name":"SUMMERKill","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-24-summerkill/4000-15591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15478/","id":15478,"name":"All the Worlds At Once!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-161-all-the-worlds-at-once/4000-15478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15503/","id":15503,"name":"Night of the Troll","site_detail_url":"https://comicvine.gamespot.com/thor-238-night-of-the-troll/4000-15503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15491/","id":15491,"name":"Once Upon a Time, In a Castle...","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-36-once-upon-a-time-in-a-castle/4000-15491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15488/","id":15488,"name":"The Nightmare Box","site_detail_url":"https://comicvine.gamespot.com/man-thing-20-the-nightmare-box/4000-15488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124856/","id":124856,"name":"The Second Death of the... Spectre; Kings Make a Full House","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-440-the-second-death-of-the-spect/4000-124856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15441/","id":15441,"name":"Me","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-32-me/4000-15441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15516/","id":15516,"name":"Fear Times Three!","site_detail_url":"https://comicvine.gamespot.com/giant-size-man-thing-5-fear-times-three/4000-15516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15499/","id":15499,"name":"Spider-Woman?","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-11-spider-woman/4000-15499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15489/","id":15489,"name":"The Name is... Warhawk","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-23-the-name-is-warhawk/4000-15489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101422/","id":101422,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-11/4000-101422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15373/","id":15373,"name":"In One World--And Out the Other!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-160-in-one-world-and-out-the-other/4000-15373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15425/","id":15425,"name":"We Do Seek Out New Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers-137-we-do-seek-out-new-avengers/4000-15425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15396/","id":15396,"name":"Ulik Unchained","site_detail_url":"https://comicvine.gamespot.com/thor-237-ulik-unchained/4000-15396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15387/","id":15387,"name":"Blood Church!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-35-blood-church/4000-15387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15371/","id":15371,"name":"The Serpent Sheds Its Skin","site_detail_url":"https://comicvine.gamespot.com/the-defenders-25-the-serpent-sheds-its-skin/4000-15371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15375/","id":15375,"name":"Eelar Moves In Mysterious Ways!","site_detail_url":"https://comicvine.gamespot.com/giant-size-defenders-5-eelar-moves-in-mysterious-w/4000-15375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109516/","id":109516,"name":"Revolt of the Wonder Weapons!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-218-revolt-of-the-wonder-weapons/4000-109516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15283/","id":15283,"name":"Beware the Death Crusade!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-34-beware-the-death-crusade/4000-15283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15267/","id":15267,"name":"Havoc in the Hidden Land!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-159-havoc-in-the-hidden-land/4000-15267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15321/","id":15321,"name":"Iron Man : D. O. A.","site_detail_url":"https://comicvine.gamespot.com/the-avengers-136-iron-man-d-o-a/4000-15321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15263/","id":15263,"name":"HYDRA - AND - SEEK","site_detail_url":"https://comicvine.gamespot.com/daredevil-122-hydra-and-seek/4000-15263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15259/","id":15259,"name":"Gwen Stacy is Alive...and, Well...?!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-145-gwen-stacy-is-aliveand-/4000-15259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116125/","id":116125,"name":"The Voice That Doomed...the Spectre; Father Time's Inn","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-439-the-voice-that-doomedthe-spec/4000-116125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15290/","id":15290,"name":"The Day of Doom","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-9-the-day-of-doom/4000-15290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15281/","id":15281,"name":"Death Is a Ninja","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-22-death-is-a-ninja/4000-15281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15261/","id":15261,"name":"Mind Cage","site_detail_url":"https://comicvine.gamespot.com/captain-america-186-mind-cage/4000-15261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15265/","id":15265,"name":"-- In The Jaws of the Serpent!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-24--in-the-jaws-of-the-serpent/4000-15265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101421/","id":101421,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-10/4000-101421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15233/","id":15233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-132/4000-15233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15270/","id":15270,"name":"Let All Men Bring Together","site_detail_url":"https://comicvine.gamespot.com/giant-size-avengers-4-let-all-men-bring-together/4000-15270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15064/","id":15064,"name":"The Power Broker Resolution!","site_detail_url":"https://comicvine.gamespot.com/marvel-preview-2-the-power-broker-resolution/4000-15064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14890/","id":14890,"name":"Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-1-deadly-genesis/4000-14890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15191/","id":15191,"name":"Anybody Here Know a Guy Named Meteor Man?","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-33-anybody-here-know-a-guy-named-me/4000-15191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15179/","id":15179,"name":"Invaders from the 5th Dimension!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-158-invaders-from-the-5th-dimension/4000-15179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165544/","id":165544,"name":"The Green Team","site_detail_url":"https://comicvine.gamespot.com/1st-issue-special-2-the-green-team/4000-165544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15198/","id":15198,"name":"Who Lurks Beyond the Labyrinth","site_detail_url":"https://comicvine.gamespot.com/thor-235-who-lurks-beyond-the-labyrinth/4000-15198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15193/","id":15193,"name":"Death of A Spirit!","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-28-death-of-a-spirit/4000-15193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-944174/","id":944174,"name":"Des Todes goldene Maske - Teil I - Bruder, wo bist du ?","site_detail_url":"https://comicvine.gamespot.com/superman-197511-des-todes-goldene-maske-teil-i-bru/4000-944174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155680/","id":155680,"name":"This Night, An Avenger Is Born!","site_detail_url":"https://comicvine.gamespot.com/justice-inc-1-this-night-an-avenger-is-born/4000-155680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15177/","id":15177,"name":"...The Snakes Shall Inherit The Earth!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-23-the-snakes-shall-inherit-the-eart/4000-15177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15181/","id":15181,"name":"Divide --and Conquer!","site_detail_url":"https://comicvine.gamespot.com/giant-size-fantastic-four-5-divide-and-conquer/4000-15181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124013/","id":124013,"name":"When Calls Galactus!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-56-when-calls-galactus/4000-124013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56592/","id":56592,"name":"What Are Little Ghouls Made Of?","site_detail_url":"https://comicvine.gamespot.com/plop-12-what-are-little-ghouls-made-of/4000-56592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15180/","id":15180,"name":"Code Name; Berserker","site_detail_url":"https://comicvine.gamespot.com/the-frankenstein-monster-16-code-name-berserker/4000-15180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113537/","id":113537,"name":"All The Fires In Hell!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-32-all-the-fires-in-hell/4000-113537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169005/","id":169005,"name":"Confrontation","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-27-confrontation/4000-169005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327037/","id":327037,"name":"The Good, the Bad, and the Uncanny!/The Brotherhood of Evil Mutants","site_detail_url":"https://comicvine.gamespot.com/the-super-heroes-7-the-good-the-bad-and-the-uncann/4000-327037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124872/","id":124872,"name":"The Spectre Haunts the Museum of Fear; Land of Magic","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-438-the-spectre-haunts-the-museum/4000-124872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144086/","id":144086,"name":"The Vanisher Shows Up","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-7-the-vanisher-shows-up/4000-144086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133579/","id":133579,"name":"Fangs Of Fire And Blood!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-22-fangs-of-fire-and-blood/4000-133579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152688/","id":152688,"name":"Too Cold A Night For Dying!","site_detail_url":"https://comicvine.gamespot.com/giant-size-defenders-4-too-cold-a-night-for-dying/4000-152688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132445/","id":132445,"name":"Mourning at Dawn!","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-21-mourning-at-dawn/4000-132445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15148/","id":15148,"name":"Fires of Rebirth","site_detail_url":"https://comicvine.gamespot.com/giant-size-master-of-kung-fu-3-fires-of-rebirth/4000-15148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15142/","id":15142,"name":"They're Tearing Down Fogwell's Gym!","site_detail_url":"https://comicvine.gamespot.com/daredevil-119-theyre-tearing-down-fogwells-gym/4000-15142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15143/","id":15143,"name":"Slay Now - Die Later!","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-10-slay-now-die-later/4000-15143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113536/","id":113536,"name":"For A Few Fists More!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-31-for-a-few-fists-more/4000-113536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15137/","id":15137,"name":"Dead Man's Bluff","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-142-dead-mans-bluff/4000-15137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15145/","id":15145,"name":"Pit of Death pt. 2- Agent of Hell","site_detail_url":"https://comicvine.gamespot.com/dracula-lives-11-pit-of-death-pt-2-agent-of-hell/4000-15145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15138/","id":15138,"name":"Nomad No More","site_detail_url":"https://comicvine.gamespot.com/captain-america-183-nomad-no-more/4000-15138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15144/","id":15144,"name":"Enter: The Headmen!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-21-enter-the-headmen/4000-15144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15149/","id":15149,"name":"Encounter at Land's End!","site_detail_url":"https://comicvine.gamespot.com/giant-size-super-villain-team-up-1-encounter-at-la/4000-15149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114572/","id":114572,"name":"Silent Night... Deadly Night!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-8-silent-night-deadly-night/4000-114572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15114/","id":15114,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-36/4000-15114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15126/","id":15126,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-162/4000-15126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15147/","id":15147,"name":"Trapped in a Nightmare! And The Time--There is NO Escape!","site_detail_url":"https://comicvine.gamespot.com/the-frankenstein-monster-15-trapped-in-a-nightmare/4000-15147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127318/","id":127318,"name":"Daughters of the Death-Goddess","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-21-daughters-of-the-death-goddess/4000-127318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131238/","id":131238,"name":"Death Flaunts its Golden Grin","site_detail_url":"https://comicvine.gamespot.com/world-s-finest-comics-227-death-flaunts-its-golden/4000-131238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15054/","id":15054,"name":"Battle Royal","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-155-battle-royal/4000-15054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15078/","id":15078,"name":"Lo, the Raging Battle","site_detail_url":"https://comicvine.gamespot.com/thor-232-lo-the-raging-battle/4000-15078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15059/","id":15059,"name":"Madrox the Multiple Man!; We Have to Fight the X-Men!","site_detail_url":"https://comicvine.gamespot.com/giant-size-fantastic-four-4-madrox-the-multiple-ma/4000-15059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124871/","id":124871,"name":"The Human Bombs and... the Spectre / A Quiet Day In Atlantis","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-437-the-human-bombs-and-the-spect/4000-124871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15057/","id":15057,"name":"What Time Hath Put Asunder","site_detail_url":"https://comicvine.gamespot.com/giant-size-avengers-3-what-time-hath-put-asunder/4000-15057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15063/","id":15063,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-8/4000-15063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123069/","id":123069,"name":"The Death's Gemini Commision","site_detail_url":"https://comicvine.gamespot.com/the-scorpion-1-the-deaths-gemini-commision/4000-123069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15056/","id":15056,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-10-ghost-rider/4000-15056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15067/","id":15067,"name":"All that Glitters is Not Gold!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-30-all-that-glitters-is-not-gold/4000-15067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15070/","id":15070,"name":"The Frankenstein Monster","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-10-the-frankenstein-monster/4000-15070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14990/","id":14990,"name":"A Spectre from the Past!","site_detail_url":"https://comicvine.gamespot.com/thor-231-a-spectre-from-the-past/4000-14990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413180/","id":413180,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-origins-of-marvel-comics-1/4000-413180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142381/","id":142381,"name":"Visit to New York","site_detail_url":"https://comicvine.gamespot.com/addams-family-2-visit-to-new-york/4000-142381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114571/","id":114571,"name":"Name That Doom!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-7-name-that-doom/4000-114571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14814/","id":14814,"name":"Night of the Mummy","site_detail_url":"https://comicvine.gamespot.com/the-shadow-8-night-of-the-mummy/4000-14814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158555/","id":158555,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-annual-1/4000-158555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265145/","id":265145,"name":"The Spectacular Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-special-edition-featuring-the-spectacular-s/4000-265145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14976/","id":14976,"name":"Batroc And Other Assassins","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-20-batroc-and-other-assassins/4000-14976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14954/","id":14954,"name":"The Mark of Madness!","site_detail_url":"https://comicvine.gamespot.com/captain-america-181-the-mark-of-madness/4000-14954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14988/","id":14988,"name":"Spidey: Beware of the Hair","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-4-spidey-beware-of-the-hair/4000-14988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14979/","id":14979,"name":"He Who Strikes the Silver Surfer/ The Monarch And The Monster","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-48-he-who-strikes-the-silver-s/4000-14979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14960/","id":14960,"name":"Doomball!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-19-doomball/4000-14960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109513/","id":109513,"name":"Amazon Attack Against Atlantis!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-215-amazon-attack-against-atlantis/4000-109513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14952/","id":14952,"name":"...And One Will Fall!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-140-and-one-will-fall/4000-14952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117383/","id":117383,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-228/4000-117383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15907/","id":15907,"name":"The Monstrous Master Plan of the Mandarin!","site_detail_url":"https://comicvine.gamespot.com/giant-size-avengers-5-the-monstrous-master-plan-of/4000-15907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14963/","id":14963,"name":"Fury of the Night-Creature!","site_detail_url":"https://comicvine.gamespot.com/the-frankenstein-monster-14-fury-of-the-night-crea/4000-14963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266686/","id":266686,"name":"À New York","site_detail_url":"https://comicvine.gamespot.com/tif-et-tondu-23-a-new-york/4000-266686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14855/","id":14855,"name":"The Broadway Mayhem of 1974","site_detail_url":"https://comicvine.gamespot.com/power-man-22-the-broadway-mayhem-of-1974/4000-14855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14850/","id":14850,"name":"River of Death!","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-23-river-of-death/4000-14850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464353/","id":464353,"name":"Tim in Amerika","site_detail_url":"https://comicvine.gamespot.com/tim-und-struppi-2-tim-in-amerika/4000-464353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309480/","id":309480,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantomet-197402/4000-309480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14827/","id":14827,"name":"Day of the Grizzly","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-139-day-of-the-grizzly/4000-14827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133854/","id":133854,"name":"Open Your Mouth and Go Arrgh!","site_detail_url":"https://comicvine.gamespot.com/arrgh-1-open-your-mouth-and-go-arrgh/4000-133854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14833/","id":14833,"name":"Rampage!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-18-rampage/4000-14833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14828/","id":14828,"name":"The Fury of War-Wolf/Dead Reckoning","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-27-the-fury-of-war-wolfdead-reck/4000-14828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14730/","id":14730,"name":"Captain Marvel Meets Lex Luthor!?! / The Man in the Paper Armor","site_detail_url":"https://comicvine.gamespot.com/shazam-15-captain-marvel-meets-lex-luthor-the-man-/4000-14730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14848/","id":14848,"name":"The City Stealers!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-28-the-city-stealers/4000-14848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14852/","id":14852,"name":"Wendigo","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-9-wendigo/4000-14852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14750/","id":14750,"name":"Death Stalks The City!","site_detail_url":"https://comicvine.gamespot.com/daredevil-115-death-stalks-the-city/4000-14750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14770/","id":14770,"name":"A Friend in Need!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-27-a-friend-in-need/4000-14770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14777/","id":14777,"name":"Where Darkness Dwells, Dwell I","site_detail_url":"https://comicvine.gamespot.com/thor-229-where-darkness-dwells-dwell-i/4000-14777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124870/","id":124870,"name":"The Gasmen and... the Spectre / The King is Dead; Long Live the King!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-436-the-gasmen-and-the-spectre-th/4000-124870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109512/","id":109512,"name":"Wish Upon a Star!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-214-wish-upon-a-star/4000-109512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14752/","id":14752,"name":"Power Play","site_detail_url":"https://comicvine.gamespot.com/the-defenders-17-power-play/4000-14752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14766/","id":14766,"name":"Death-Cult","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-19-death-cult/4000-14766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-62763/","id":62763,"name":"Of Monsters and Men!","site_detail_url":"https://comicvine.gamespot.com/giant-size-man-thing-2-of-monsters-and-men/4000-62763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14746/","id":14746,"name":"Slings and Arrows","site_detail_url":"https://comicvine.gamespot.com/captain-america-179-slings-and-arrows/4000-14746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14768/","id":14768,"name":"It Walks Like A Man!/ Turning Point!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-47-it-walks-like-a-man-turning/4000-14768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14754/","id":14754,"name":"World of Madness--World of Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-152-world-of-madness-world-of-doom/4000-14754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14755/","id":14755,"name":"All Pieces of Fear!","site_detail_url":"https://comicvine.gamespot.com/the-frankenstein-monster-13-all-pieces-of-fear/4000-14755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14690/","id":14690,"name":"\"Night of the Blood Stalker!\"","site_detail_url":"https://comicvine.gamespot.com/tomb-of-dracula-25-night-of-the-blood-stalker/4000-14690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14683/","id":14683,"name":"The killer with my name!","site_detail_url":"https://comicvine.gamespot.com/power-man-21-the-killer-with-my-name/4000-14683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14654/","id":14654,"name":"Bewitched, Bothered, and Dead","site_detail_url":"https://comicvine.gamespot.com/the-avengers-128-bewitched-bothered-and-dead/4000-14654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334503/","id":334503,"name":"Gli Aristocratici a New York","site_detail_url":"https://comicvine.gamespot.com/corriere-dei-ragazzi-197441-gli-aristocratici-a-ne/4000-334503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124869/","id":124869,"name":"The Man Who Stalked the Spectre / As the Undersea City Sleeps","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-435-the-man-who-stalked-the-spect/4000-124869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14676/","id":14676,"name":"The Fire This Time!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-26-the-fire-this-time/4000-14676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14664/","id":14664,"name":"H… as in Hulk… Hell… and Holocaust!","site_detail_url":"https://comicvine.gamespot.com/giant-size-defenders-2-h-as-in-hulk-hell-and-holoc/4000-14664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14671/","id":14671,"name":"Lair Of Shattered Vengeance","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-18-lair-of-shattered-vengeance/4000-14671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14657/","id":14657,"name":"A Quiet Night In The Swamp!","site_detail_url":"https://comicvine.gamespot.com/daredevil-114-a-quiet-night-in-the-swamp/4000-14657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14670/","id":14670,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-6/4000-14670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14659/","id":14659,"name":"Alpha, the Ultimate Mutant!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-16-alpha-the-ultimate-mutant/4000-14659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14666/","id":14666,"name":"The Frankenstein Monster Meets Werewolf by Night","site_detail_url":"https://comicvine.gamespot.com/giant-size-werewolf-2-the-frankenstein-monster-mee/4000-14666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14680/","id":14680,"name":"Frenzy-- In the House of the Freaks","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-8-frenzy-in-the-house-of-the-fr/4000-14680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14595/","id":14595,"name":"Three Into Two Won't Go!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-25-three-into-two-wont-go/4000-14595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14574/","id":14574,"name":"When Strikes The Gladiator!","site_detail_url":"https://comicvine.gamespot.com/daredevil-113-when-strikes-the-gladiator/4000-14574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109483/","id":109483,"name":"The War-No-More Machine!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-213-the-war-no-more-machine/4000-109483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14469/","id":14469,"name":"Night of the Ninja","site_detail_url":"https://comicvine.gamespot.com/the-shadow-6-night-of-the-ninja/4000-14469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14590/","id":14590,"name":"Citadel of Vengeance!","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-17-citadel-of-vengeance/4000-14590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14570/","id":14570,"name":"Lucifer Be Thy Name","site_detail_url":"https://comicvine.gamespot.com/captain-america-177-lucifer-be-thy-name/4000-14570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112435/","id":112435,"name":"Panic Beneath the Earth","site_detail_url":"https://comicvine.gamespot.com/the-defenders-15-panic-beneath-the-earth/4000-112435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14579/","id":14579,"name":"A Cold And Lasting Tomb!","site_detail_url":"https://comicvine.gamespot.com/the-frankenstein-monster-12-a-cold-and-lasting-tom/4000-14579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14512/","id":14512,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampire-tales-6/4000-14512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14487/","id":14487,"name":"To Love, Honor and Destroy","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-149-to-love-honor-and-destroy/4000-14487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14484/","id":14484,"name":"Death Of A Nation?","site_detail_url":"https://comicvine.gamespot.com/daredevil-112-death-of-a-nation/4000-14484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14490/","id":14490,"name":"Nuklo--The Invader That Time Forgot","site_detail_url":"https://comicvine.gamespot.com/giant-size-avengers-1-nuklo-the-invader-that-time-/4000-14490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124868/","id":124868,"name":"The Nightmare Dummies and... the Spectre","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-434-the-nightmare-dummies-and-the/4000-124868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14500/","id":14500,"name":"Moondog Is Another Name For Murder!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-24-moondog-is-another-name-for-murd/4000-14500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14482/","id":14482,"name":"Captain America Must Die","site_detail_url":"https://comicvine.gamespot.com/captain-america-176-captain-america-must-die/4000-14482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14463/","id":14463,"name":"Requiem For Igor","site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-122-requiem-for-igor/4000-14463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14503/","id":14503,"name":"A tale of two monsters!","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-7-a-tale-of-two-monsters/4000-14503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14410/","id":14410,"name":"The God Himself!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-33-the-god-himself/4000-14410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14413/","id":14413,"name":"Sword Of The Samurai!","site_detail_url":"https://comicvine.gamespot.com/daredevil-111-sword-of-the-samurai/4000-14413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14439/","id":14439,"name":"The Coming of the Firelord!","site_detail_url":"https://comicvine.gamespot.com/thor-225-the-coming-of-the-firelord/4000-14439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14432/","id":14432,"name":"The Night of the Frozen Inferno","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-23-the-night-of-the-frozen-inferno/4000-14432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14317/","id":14317,"name":"Night of Neptune's Death","site_detail_url":"https://comicvine.gamespot.com/the-shadow-5-night-of-neptunes-death/4000-14317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14420/","id":14420,"name":"The Way They Were!","site_detail_url":"https://comicvine.gamespot.com/giant-size-defenders-1-the-way-they-were/4000-14420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14428/","id":14428,"name":"Heart of the Dragon","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-16-heart-of-the-dragon/4000-14428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144773/","id":144773,"name":"Crime Is Out of Fashion!; Bedlam Beat; The Next Stop.....The Cemetery; 2 To Get Ready and 4 To Go!","site_detail_url":"https://comicvine.gamespot.com/super-cops-1-crime-is-out-of-fashion-bedlam-beat-t/4000-144773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179280/","id":179280,"name":"When Opens The Cocoon!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-50-when-opens-the-cocoon/4000-179280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14408/","id":14408,"name":"Danger is a Man Called Tarantula!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-134-danger-is-a-man-called-/4000-14408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14422/","id":14422,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-haunt-of-horror-2/4000-14422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14347/","id":14347,"name":"The Messiah Machine!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-22-the-messiah-machine/4000-14347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14332/","id":14332,"name":"Birthright!","site_detail_url":"https://comicvine.gamespot.com/daredevil-110-birthright/4000-14332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121801/","id":121801,"name":"The Super-Cigars of Perry White!; Young Man with a Drum!","site_detail_url":"https://comicvine.gamespot.com/action-comics-436-the-super-cigars-of-perry-white-/4000-121801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14348/","id":14348,"name":"Attack!","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-18-attack/4000-14348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14354/","id":14354,"name":"The Return of the Living Mummy!","site_detail_url":"https://comicvine.gamespot.com/supernatural-thrillers-7-the-return-of-the-living-/4000-14354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14303/","id":14303,"name":"The Energy Crisis!, The Battery & Travis in the Dragon Killer","site_detail_url":"https://comicvine.gamespot.com/e-man-3-the-energy-crisis-the-battery-travis-in-th/4000-14303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14328/","id":14328,"name":"The Molten Man Breaks Out","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-133-the-molten-man-breaks-o/4000-14328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179277/","id":179277,"name":"Man-Wolf At Midnight!","site_detail_url":"https://comicvine.gamespot.com/giant-size-super-heroes-1-man-wolf-at-midnight/4000-179277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124867/","id":124867,"name":"The Swami and... the Spectre; Revolt and Revenge!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-433-the-swami-and-the-spectre-rev/4000-124867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56775/","id":56775,"name":"The House That Death Built","site_detail_url":"https://comicvine.gamespot.com/secrets-of-sinister-house-18-the-house-that-death-/4000-56775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14350/","id":14350,"name":"Frankenstein 1974","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-6-frankenstein-1974/4000-14350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14255/","id":14255,"name":"The Master Plan of the Molten Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-132-the-master-plan-of-the-/4000-14255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14260/","id":14260,"name":"Dying For Dollars!","site_detail_url":"https://comicvine.gamespot.com/daredevil-109-dying-for-dollars/4000-14260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14277/","id":14277,"name":"Inside Black Spectre!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-3-inside-black-spectre/4000-14277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132601/","id":132601,"name":"The Mind of the Monster","site_detail_url":"https://comicvine.gamespot.com/giant-size-super-stars-1-the-mind-of-the-monster/4000-132601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14275/","id":14275,"name":"The Spider and the Sorcerer!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-21-the-spider-and-the-sorcerer/4000-14275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14274/","id":14274,"name":"A Stranger Strikes From Space!/ Boomerang And The Brute!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-43-a-stranger-strikes-from-spa/4000-14274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14203/","id":14203,"name":"Dinosaurs On Broadway!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-20-dinosaurs-on-broadway/4000-14203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124893/","id":124893,"name":"The Anguish of... the Spectre / Night of the Slaves","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-432-the-anguish-of-the-spectre-ni/4000-124893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14192/","id":14192,"name":"The Testing of Shang-Chi","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-1-the-testing-of-shang/4000-14192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14188/","id":14188,"name":"My Uncle...My Enemy?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-131-my-unclemy-enemy/4000-14188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14205/","id":14205,"name":"The Mark of the Man-Thing","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-5-the-mark-of-the-man-thing/4000-14205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14123/","id":14123,"name":"Cry Beetle!","site_detail_url":"https://comicvine.gamespot.com/daredevil-108-cry-beetle/4000-14123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14127/","id":14127,"name":"Anybody Out There Remember...The Cobalt Man?","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-173-anybody-out-there-remember/4000-14127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14135/","id":14135,"name":"The Coming of... Stegron the Dinosaur Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-19-the-coming-of-stegron-the-dinosa/4000-14135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14030/","id":14030,"name":"A Slay Ride With Santa!","site_detail_url":"https://comicvine.gamespot.com/forbidden-tales-of-dark-mansion-15-a-slay-ride-wit/4000-14030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109480/","id":109480,"name":"The Golden Women and the White Star","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-210-the-golden-women-and-the-white-st/4000-109480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14039/","id":14039,"name":"The Kingdom of the Cobra","site_detail_url":"https://comicvine.gamespot.com/the-shadow-3-the-kingdom-of-the-cobra/4000-14039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14134/","id":14134,"name":"Moment Of Truth!/ The Humanoid And The Hero!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-42-moment-of-truth-the-humanoi/4000-14134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14118/","id":14118,"name":"Bust-Out","site_detail_url":"https://comicvine.gamespot.com/captain-america-171-bust-out/4000-14118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123964/","id":123964,"name":"I Accuse!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-48-i-accuse/4000-123964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14131/","id":14131,"name":"\"Sise-Neg Genesis\"","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-14-sise-neg-genesis/4000-14131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14070/","id":14070,"name":"Rich man: Iron Man -- Power Man: Thief!","site_detail_url":"https://comicvine.gamespot.com/power-man-17-rich-man-iron-man-power-man-thief/4000-14070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14072/","id":14072,"name":"Midnight Brings Dark Death!","site_detail_url":"https://comicvine.gamespot.com/special-marvel-edition-16-midnight-brings-dark-dea/4000-14072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124892/","id":124892,"name":"The Wrath of... the Spectre; Is a Snerl Human?","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-431-the-wrath-of-the-spectre-is-a/4000-124892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14053/","id":14053,"name":"J'Accuse","site_detail_url":"https://comicvine.gamespot.com/captain-america-170-j-accuse/4000-14053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105443/","id":105443,"name":"The Punisher Strikes Twice","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-129-the-punisher-strikes-tw/4000-105443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14064/","id":14064,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-2/4000-14064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14055/","id":14055,"name":"The Titan Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-12-the-titan-strikes-back/4000-14055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14068/","id":14068,"name":"Frankenstein 1973--Chapter Two!","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-4-frankenstein-1973-chapter-two/4000-14068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13999/","id":13999,"name":"Chaos at the Earth's Core!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-17-chaos-at-the-earths-core/4000-13999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142591/","id":142591,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-special-giant-superhero-holiday-gr/4000-142591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13978/","id":13978,"name":"The Vulture Hangs High","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-128-the-vulture-hangs-high/4000-13978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13980/","id":13980,"name":"When a Legend Dies","site_detail_url":"https://comicvine.gamespot.com/captain-america-169-when-a-legend-dies/4000-13980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384298/","id":384298,"name":"The Mark of the Man-Wolf!","site_detail_url":"https://comicvine.gamespot.com/book-and-record-set-pr-10-the-mark-of-the-man-wolf/4000-384298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259594/","id":259594,"name":"And a Phoenix Shall Arise!","site_detail_url":"https://comicvine.gamespot.com/book-and-record-set-pr-12-and-a-phoenix-shall-aris/4000-259594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384261/","id":384261,"name":"The Way it Began!","site_detail_url":"https://comicvine.gamespot.com/book-and-record-set-pr-13-the-way-it-began/4000-384261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13981/","id":13981,"name":"...To Be Free From Control!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-30-to-be-free-from-control/4000-13981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13998/","id":13998,"name":"The Wrath Of Warlord Krang!/ The Birth...Of The Hulk-Killer!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-41-the-wrath-of-warlord-krang-/4000-13998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179279/","id":179279,"name":"The Sentry Sinister!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-47-the-sentry-sinister/4000-179279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13893/","id":13893,"name":"Shang Chi, Master of Kung Fu!","site_detail_url":"https://comicvine.gamespot.com/special-marvel-edition-15-shang-chi-master-of-kung/4000-13893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13880/","id":13880,"name":"A Dark and Stormy Knight","site_detail_url":"https://comicvine.gamespot.com/the-defenders-11-a-dark-and-stormy-knight/4000-13880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13891/","id":13891,"name":"Beware The Basilisk My Son!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-16-beware-the-basilisk-my-son/4000-13891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13915/","id":13915,"name":"To The Death!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-118-to-the-death/4000-13915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13875/","id":13875,"name":"The Dark Wings of Death","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-127-the-dark-wings-of-death/4000-13875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13877/","id":13877,"name":"... And a Phoenix Shall Arise!","site_detail_url":"https://comicvine.gamespot.com/captain-america-168-and-a-phoenix-shall-arise/4000-13877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13889/","id":13889,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-1/4000-13889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13884/","id":13884,"name":"Shake Hands With Stiletto","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-16-shake-hands-with-stiletto/4000-13884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13883/","id":13883,"name":"Wheels On Fire","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-3-wheels-on-fire/4000-13883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13662/","id":13662,"name":"The Doom Puzzle!","site_detail_url":"https://comicvine.gamespot.com/the-shadow-1-the-doom-puzzle/4000-13662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13790/","id":13790,"name":"Breakthrough!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-10-breakthrough/4000-13790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13795/","id":13795,"name":"Calamity In the Clouds","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-169-calamity-in-the-clouds/4000-13795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13805/","id":13805,"name":"If An Eye Offend Thee...","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-15-if-an-eye-offend-thee/4000-13805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13803/","id":13803,"name":"--And One Shall Die/ The Missile And The Monster!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-40-and-one-shall-die-the-missi/4000-13803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177436/","id":177436,"name":"Blaastar, The Living Bomb-Burst","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-46-blaastar-the-living-bom/4000-177436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13782/","id":13782,"name":"Cry Killraven!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-21-cry-killraven/4000-13782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13794/","id":13794,"name":"Retribution: Part II","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-15-retribution-part-ii/4000-13794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13688/","id":13688,"name":"Divide...and Conquer","site_detail_url":"https://comicvine.gamespot.com/the-defenders-9-divideand-conquer/4000-13688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13706/","id":13706,"name":"Mayhem is... The Men-Fish!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-14-mayhem-is-the-men-fish/4000-13706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13697/","id":13697,"name":"The Hate of the Harpy","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-168-the-hate-of-the-harpy/4000-13697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13719/","id":13719,"name":"The Blood Sacrifice of Amanda Saint","site_detail_url":"https://comicvine.gamespot.com/vampire-tales-2-the-blood-sacrifice-of-amanda-sain/4000-13719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13696/","id":13696,"name":"Retribution","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-14-retribution/4000-13696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13640/","id":13640,"name":"The Beginning","site_detail_url":"https://comicvine.gamespot.com/e-man-1-the-beginning/4000-13640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13689/","id":13689,"name":"","site_detail_url":"https://comicvine.gamespot.com/doc-savage-7/4000-13689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13685/","id":13685,"name":"Night of the Lurking Dead","site_detail_url":"https://comicvine.gamespot.com/captain-america-166-night-of-the-lurking-dead/4000-13685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13704/","id":13704,"name":"Like A Beast At Bay!/ Rampage In The City!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-39-like-a-beast-at-bay-rampage/4000-13704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13694/","id":13694,"name":"Shake Hands with Satan!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2-shake-hands-with-satan/4000-13694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13573/","id":13573,"name":"If Atlantis Should Fall","site_detail_url":"https://comicvine.gamespot.com/the-defenders-8-if-atlantis-should-fall/4000-13573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13589/","id":13589,"name":"The Granite Sky!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-13-the-granite-sky/4000-13589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13579/","id":13579,"name":"To Destroy the Monster","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-167-to-destroy-the-monster/4000-13579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13584/","id":13584,"name":"Cry Monster","site_detail_url":"https://comicvine.gamespot.com/marvel-feature-11-cry-monster/4000-13584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13578/","id":13578,"name":"The Claws Of Lion-Fang","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-13-the-claws-of-lion-fang/4000-13578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13564/","id":13564,"name":"The Mark of the Man-Wolf","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-124-the-mark-of-the-man-wol/4000-13564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13587/","id":13587,"name":"The Sub-Mariner Strikes!/ Less Than Monster, More Than Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-38-the-sub-mariner-strikes-les/4000-13587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13477/","id":13477,"name":"From here to infinity!","site_detail_url":"https://comicvine.gamespot.com/adventure-into-fear-15-from-here-to-infinity/4000-13477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13349/","id":13349,"name":"Wolf in the Fold!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-106-wolf-in-the-fold/4000-13349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13487/","id":13487,"name":"Wolf at Bay","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-12-wolf-at-bay/4000-13487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13480/","id":13480,"name":"The Destroyer From the Dynamo","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-166-the-destroyer-from-the-dyn/4000-13480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13474/","id":13474,"name":"War Below the Waves!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-7-war-below-the-waves/4000-13474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13468/","id":13468,"name":"And Men Shall Name Him Victorius","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-19-and-men-shall-name-him-victor/4000-13468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13467/","id":13467,"name":"Just a Man Called Cage","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-123-just-a-man-called-cage/4000-13467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13450/","id":13450,"name":"Rain Of The Missile Men","site_detail_url":"https://comicvine.gamespot.com/metal-men-44-rain-of-the-missile-men/4000-13450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117363/","id":117363,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-216/4000-117363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13395/","id":13395,"name":"Doomsday Gambit!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-11-doomsday-gambit/4000-13395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12781/","id":12781,"name":"The Goblin Lives","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-9-the-goblin-lives/4000-12781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13377/","id":13377,"name":"The Goblin's Last Stand!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-122-the-goblins-last-stand/4000-13377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13378/","id":13378,"name":"Your Young Men Shall Slay Visions","site_detail_url":"https://comicvine.gamespot.com/the-avengers-113-your-young-men-shall-slay-visions/4000-13378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56770/","id":56770,"name":"A Very Cold Guy","site_detail_url":"https://comicvine.gamespot.com/secrets-of-sinister-house-12-a-very-cold-guy/4000-56770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13285/","id":13285,"name":"Time Bomb!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-10-time-bomb/4000-13285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13271/","id":13271,"name":"The Dreams of Death!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-6-the-dreams-of-death/4000-13271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121793/","id":121793,"name":"Gorilla Grodd's Grandstand Play! / The Candy Kitchen Caper!","site_detail_url":"https://comicvine.gamespot.com/action-comics-424-gorilla-grodd-s-grandstand-play-/4000-121793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13296/","id":13296,"name":"Journey to the Golden Star","site_detail_url":"https://comicvine.gamespot.com/thor-212-journey-to-the-golden-star/4000-13296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13274/","id":13274,"name":"The Eternity Machine!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-135-the-eternity-machine/4000-13274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13263/","id":13263,"name":"The Night Gwen Stacy Died","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-121-the-night-gwen-stacy-di/4000-13263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13264/","id":13264,"name":"Gog Cometh","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-18-gog-cometh/4000-13264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13265/","id":13265,"name":"The Lion God Lives!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-112-the-lion-god-lives/4000-13265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13278/","id":13278,"name":"The Lucky...and the Dead!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-10-the-luckyand-the-dead/4000-13278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13243/","id":13243,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-15/4000-13243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13186/","id":13186,"name":"The Tomorrow War!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-9-the-tomorrow-war/4000-13186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304056/","id":304056,"name":"","site_detail_url":"https://comicvine.gamespot.com/young-romance-193/4000-304056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13172/","id":13172,"name":"Betrayal!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-26-betrayal/4000-13172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177435/","id":177435,"name":"Where Soars The Silver Surfer!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-42-where-soars-the-silver-/4000-177435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13125/","id":13125,"name":"The Invasion of New York","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-60-the-invasion-of-new-york/4000-13125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13106/","id":13106,"name":"Thundra at Dawn","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-133-thundra-at-dawn/4000-13106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13104/","id":13104,"name":"World Without End?","site_detail_url":"https://comicvine.gamespot.com/the-defenders-5-world-without-end/4000-13104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13118/","id":13118,"name":"The Man-Killer Moves at Midnight!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-8-the-man-killer-moves-at-midnight/4000-13118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13098/","id":13098,"name":"...And Now Magneto!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-110-and-now-magneto/4000-13098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13096/","id":13096,"name":"The Gentleman's Name is Hulk","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-119-the-gentlemans-name-is-/4000-13096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13097/","id":13097,"name":"Target: Ka-Zar","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-17-target-ka-zar/4000-13097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13110/","id":13110,"name":"Crescendo!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-8-crescendo/4000-13110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13024/","id":13024,"name":"Thunder Over The Seas!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-59-thunder-over-the-seas/4000-13024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13017/","id":13017,"name":"A Hitch in Time!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-7-a-hitch-in-time/4000-13017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13009/","id":13009,"name":"Jingle Bombs!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-7-jingle-bombs/4000-13009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13002/","id":13002,"name":"A Taste Of Madness","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-25-a-taste-of-madness/4000-13002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13001/","id":13001,"name":"Turning Point!","site_detail_url":"https://comicvine.gamespot.com/captain-america-159-turning-point/4000-13001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12896/","id":12896,"name":"The Deathless Doom","site_detail_url":"https://comicvine.gamespot.com/metal-men-42-the-deathless-doom/4000-12896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13007/","id":13007,"name":"Bedlam at the Baxter Building","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-10-bedlam-at-the-baxter-buil/4000-13007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12923/","id":12923,"name":"Revolt in Paradise!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-131-revolt-in-paradise/4000-12923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12942/","id":12942,"name":"The Fourth-Dimensional Man!","site_detail_url":"https://comicvine.gamespot.com/thor-208-the-fourth-dimensional-man/4000-12942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12917/","id":12917,"name":"The Crime Wave Breaks!","site_detail_url":"https://comicvine.gamespot.com/captain-america-158-the-crime-wave-breaks/4000-12917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12915/","id":12915,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-16/4000-12915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12926/","id":12926,"name":"Knights and White Satin!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-6-knights-and-white-satin/4000-12926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12831/","id":12831,"name":"Battleground: The Baxter Building!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-130-battleground-the-baxter-buildin/4000-12831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278957/","id":278957,"name":"Bibbergoud","site_detail_url":"https://comicvine.gamespot.com/suske-wiske-138-bibbergoud/4000-278957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12825/","id":12825,"name":"Death In High Places!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-24-death-in-high-places/4000-12825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12840/","id":12840,"name":"...As Those Who Will Not See!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-6-as-those-who-will-not-see/4000-12840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12713/","id":12713,"name":"Year of the Rat!","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-2-year-of-the-rat/4000-12713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12839/","id":12839,"name":"The Titan and the Torment/ When Rises The Behemoth","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-34-the-titan-and-the-torment-w/4000-12839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12822/","id":12822,"name":"Suddenly the Smasher","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-116-suddenly-the-smasher/4000-12822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12799/","id":12799,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-11/4000-12799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12737/","id":12737,"name":"The Frightful Four - - Plus One!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-129-the-frightful-four-plus-one/4000-12737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109473/","id":109473,"name":"The Grandee Caper!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-203-the-grandee-caper/4000-109473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12740/","id":12740,"name":"Cry Fear...Cry Phantom!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-4-cry-fearcry-phantom/4000-12740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12731/","id":12731,"name":"Two Into One Won't Go!","site_detail_url":"https://comicvine.gamespot.com/captain-america-156-two-into-one-wont-go/4000-12731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12639/","id":12639,"name":"The Coming of...The Griffin!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-15-the-coming-ofthe-griffin/4000-12639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12643/","id":12643,"name":"Death at the End of the World!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-23-death-at-the-end-of-the-world/4000-12643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121786/","id":121786,"name":"The Attack of the Phantom Super-Foes! / The Fountain of Death!","site_detail_url":"https://comicvine.gamespot.com/action-comics-418-the-attack-of-the-phantom-super-/4000-121786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12658/","id":12658,"name":"A Passion of the Mind!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-5-a-passion-of-the-mind/4000-12658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12541/","id":12541,"name":"The Last Boy on Earth!","site_detail_url":"https://comicvine.gamespot.com/kamandi-the-last-boy-on-earth-1-the-last-boy-on-ea/4000-12541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217400/","id":217400,"name":"Stories of New York!","site_detail_url":"https://comicvine.gamespot.com/sad-sack-usa-1-stories-of-new-york/4000-217400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12656/","id":12656,"name":"The Prince And The Puppet!; The Hulk Must Die!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-33-the-prince-and-the-puppet-t/4000-12656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12655/","id":12655,"name":"The Lurker in the Labyrnth!","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-5-the-lurker-in-the-labyrnth/4000-12655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12651/","id":12651,"name":"Raga: Son of Fire!","site_detail_url":"https://comicvine.gamespot.com/iron-man-52-raga-son-of-fire/4000-12651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12572/","id":12572,"name":"Where the Sun Dares Not Shine!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-127-where-the-sun-dares-not-shine/4000-12572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12589/","id":12589,"name":"The Demon From the Depths!","site_detail_url":"https://comicvine.gamespot.com/thor-204-the-demon-from-the-depths/4000-12589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12570/","id":12570,"name":"The Secret of The Silver Surfer!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-2-the-secret-of-the-silver-surfer/4000-12570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123959/","id":123959,"name":"This Man- This Monster!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-38-this-man-this-monster/4000-123959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12563/","id":12563,"name":"They Call the Doctor...Octopus!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-113-they-call-the-doctoroct/4000-12563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12583/","id":12583,"name":"This Hostage Earth!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-6-this-hostage-earth/4000-12583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12575/","id":12575,"name":"Mark of the Mace!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-3-mark-of-the-mace/4000-12575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12566/","id":12566,"name":"The Falcon Fights Alone!","site_detail_url":"https://comicvine.gamespot.com/captain-america-154-the-falcon-fights-alone/4000-12566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12472/","id":12472,"name":"Behind the Mask...a Monster!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-14-behind-the-maska-monster/4000-12472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12476/","id":12476,"name":"To Live Again!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-22-to-live-again/4000-12476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12489/","id":12489,"name":"And Then-- The X-Men!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-4-and-then-the-x-men/4000-12489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12473/","id":12473,"name":"Spidey Cops Out","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-112-spidey-cops-out/4000-12473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12474/","id":12474,"name":"The Sentinels Are Alive And Well!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-103-the-sentinels-are-alive-and-well/4000-12474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12490/","id":12490,"name":"The Avengers Break Up!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-5-the-avengers-break-up/4000-12490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12482/","id":12482,"name":"The Curtain Rises On...\"Deathplay!\"","site_detail_url":"https://comicvine.gamespot.com/iron-man-50-the-curtain-rises-ondeathplay/4000-12482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12422/","id":12422,"name":"Origin of the Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-5-origin-of-the-ghost-rider/4000-12422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12417/","id":12417,"name":"The Monster's Secret!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-125-the-monsters-secret/4000-12417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12429/","id":12429,"name":"Ego-Prime vs. the Earth!","site_detail_url":"https://comicvine.gamespot.com/thor-202-ego-prime-vs-the-earth/4000-12429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12416/","id":12416,"name":"I Slay by the Stars!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-1-i-slay-by-the-stars/4000-12416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12412/","id":12412,"name":"Terror in the Night!","site_detail_url":"https://comicvine.gamespot.com/captain-america-152-terror-in-the-night/4000-12412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12409/","id":12409,"name":"To Stalk a Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-111-to-stalk-a-spider/4000-12409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12411/","id":12411,"name":"What To Do Till The Sentinels Come!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-102-what-to-do-till-the-sentinels-com/4000-12411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12424/","id":12424,"name":"The Peril and the Power!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-4-the-peril-and-the-power/4000-12424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12418/","id":12418,"name":"Vengeance is Mine!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-2-vengeance-is-mine/4000-12418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12338/","id":12338,"name":"The Return of the Monster!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-124-the-return-of-the-monster/4000-12338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12331/","id":12331,"name":"Evil Is All In Your Mind!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-13-evil-is-all-in-your-mind/4000-12331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12339/","id":12339,"name":"The World, My Jury!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-153-the-world-my-jury/4000-12339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12345/","id":12345,"name":"The Power To Purge!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-3-the-power-to-purge/4000-12345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12314/","id":12314,"name":"The Kid who stole Superman's Powers! / The Baby who walked through Walls!","site_detail_url":"https://comicvine.gamespot.com/superman-254-the-kid-who-stole-superman-s-powers-t/4000-12314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12334/","id":12334,"name":"Panic on Park Avenue","site_detail_url":"https://comicvine.gamespot.com/captain-america-151-panic-on-park-avenue/4000-12334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12332/","id":12332,"name":"The Birth of ...the Gibbon","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-110-the-birth-of-the-gibbon/4000-12332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12350/","id":12350,"name":"100th Anniversary","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-100-100th-anniversary/4000-12350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12333/","id":12333,"name":"Five Dooms To Save Tomorrow","site_detail_url":"https://comicvine.gamespot.com/the-avengers-101-five-dooms-to-save-tomorrow/4000-12333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12344/","id":12344,"name":"While the World Spins Mad","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-3-while-the-world-spins-mad/4000-12344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12264/","id":12264,"name":"This World Enslaved!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-123-this-world-enslaved/4000-12264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12267/","id":12267,"name":"But Who Will Judge the Hulk?","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-152-but-who-will-judge-the-hul/4000-12267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12266/","id":12266,"name":"Out of Hell - A Hero!","site_detail_url":"https://comicvine.gamespot.com/hero-for-hire-1-out-of-hell-a-hero/4000-12266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12260/","id":12260,"name":"Whatever Gods There Be","site_detail_url":"https://comicvine.gamespot.com/the-avengers-100-whatever-gods-there-be/4000-12260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12258/","id":12258,"name":"Enter: Dr. Strange","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-109-enter-dr-strange/4000-12258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12261/","id":12261,"name":"Mirror, Mirror...!","site_detail_url":"https://comicvine.gamespot.com/captain-america-150-mirror-mirror/4000-12261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12272/","id":12272,"name":"Doomsday Means Death!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-3-doomsday-means-death/4000-12272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12269/","id":12269,"name":"A Titan Walks Among Us!","site_detail_url":"https://comicvine.gamespot.com/marvel-feature-3-a-titan-walks-among-us/4000-12269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123957/","id":123957,"name":"The Coming Of Galactus!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-35-the-coming-of-galactus/4000-123957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12188/","id":12188,"name":"Galactus Unleashed","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-122-galactus-unleashed/4000-12188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12181/","id":12181,"name":"One Avenger: Dead on Arrival!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-12-one-avenger-dead-on-arrival/4000-12181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12196/","id":12196,"name":"And Spidey Makes Four!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-2-and-spidey-makes-four/4000-12196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12187/","id":12187,"name":"From Stage Left,Enter:Elektro!","site_detail_url":"https://comicvine.gamespot.com/daredevil-87-from-stage-leftenterelektro/4000-12187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112693/","id":112693,"name":"The Most Dangerous Twenty Miles in Gotham City ; Candidate for Danger!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-423-the-most-dangerous-twenty-mil/4000-112693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12184/","id":12184,"name":"All The Colors... of Evil!","site_detail_url":"https://comicvine.gamespot.com/captain-america-149-all-the-colors-of-evil/4000-12184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12197/","id":12197,"name":"The Dismal Dregs of Defeat!","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-2-the-dismal-dregs-of-defeat/4000-12197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12193/","id":12193,"name":"The Hounds of Helios","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-2-the-hounds-of-helios/4000-12193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12174/","id":12174,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-135/4000-12174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12122/","id":12122,"name":"The Mysterious Mind-Blowing Secret of Gabriel!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-121-the-mysterious-mind-blowing-sec/4000-12122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12121/","id":12121,"name":"Once Upon A Time,The Ox!","site_detail_url":"https://comicvine.gamespot.com/daredevil-86-once-upon-a-timethe-ox/4000-12121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166751/","id":166751,"name":"The Weeping Ghost","site_detail_url":"https://comicvine.gamespot.com/ripleys-believe-it-or-not-32-the-weeping-ghost/4000-166751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109336/","id":109336,"name":"Tribunal of Fear - Part One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-199-tribunal-of-fear-part-one/4000-109336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12119/","id":12119,"name":"Let Slip The Dogs Of War","site_detail_url":"https://comicvine.gamespot.com/the-avengers-98-let-slip-the-dogs-of-war/4000-12119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12117/","id":12117,"name":"Spidey Smashes Thru!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-107-spidey-smashes-thru/4000-12117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12053/","id":12053,"name":"The Horror That Walks on Air!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-120-the-horror-that-walks-on-air/4000-12053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12046/","id":12046,"name":"Lo! A Beast Is Born","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-11-lo-a-beast-is-born/4000-12046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12058/","id":12058,"name":"Have Yourself a Sandman Little Christmas!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-1-have-yourself-a-sandman-little-ch/4000-12058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12052/","id":12052,"name":"Night Flight!","site_detail_url":"https://comicvine.gamespot.com/daredevil-85-night-flight/4000-12052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12057/","id":12057,"name":"Nightmare on Bald Mountain!","site_detail_url":"https://comicvine.gamespot.com/marvel-feature-2-nightmare-on-bald-mountain/4000-12057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11991/","id":11991,"name":"At Last--The Assassin!","site_detail_url":"https://comicvine.gamespot.com/daredevil-84-at-last-the-assassin/4000-11991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117345/","id":117345,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-199/4000-117345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11918/","id":11918,"name":"Something Inhuman This Way Comes..!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-95-something-inhuman-this-way-comes/4000-11918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11924/","id":11924,"name":"Enter Spider-Man","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-3-enter-spider-man/4000-11924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11923/","id":11923,"name":"All This--And Mr. Hyde Too!","site_detail_url":"https://comicvine.gamespot.com/daredevil-83-all-this-and-mr-hyde-too/4000-11923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11843/","id":11843,"name":"Now Send...The Scorpion","site_detail_url":"https://comicvine.gamespot.com/daredevil-82-now-sendthe-scorpion/4000-11843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11812/","id":11812,"name":"Lo, There Shall Be An Ending","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-9-lo-there-shall-be-an-endin/4000-11812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11840/","id":11840,"name":"More Than Inhuman!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-94-more-than-inhuman/4000-11840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11846/","id":11846,"name":"The Day of the Defenders!","site_detail_url":"https://comicvine.gamespot.com/marvel-feature-1-the-day-of-the-defenders/4000-11846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11762/","id":11762,"name":"Image In Wax/The Threat Of The Horrible Hex/And The Corpse Cried \"Murder!\"","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-16-image-in-wax-the-threat-of/4000-11762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123953/","id":123953,"name":"The Gentleman's Name is Gorgon!; Meet The Beatles!; Among Us Hide... The Inhumans","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-33-the-gentlemans-name-is-/4000-123953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11855/","id":11855,"name":"The Power and The Pendant!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-73-the-power-and-the-pendant/4000-11855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11852/","id":11852,"name":"They Strike From Space!","site_detail_url":"https://comicvine.gamespot.com/thor-annual-4-they-strike-from-space/4000-11852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11795/","id":11795,"name":"Mind-Quake!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-43-mind-quake/4000-11795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11782/","id":11782,"name":"The Alien, The Ally, and...Armageddon!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-116-the-alien-the-ally-andarmageddo/4000-11782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11759/","id":11759,"name":"Where Strikes Demonfang?; The Sandman/Starman","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-94-where-strikes-demonfa/4000-11759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138679/","id":138679,"name":"Divided-We Fall!; To Save a City","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-2-divided-we-fall-to-save-a-city/4000-138679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11776/","id":11776,"name":"Vampire at Large!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-102-vampire-at-large/4000-11776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11781/","id":11781,"name":"And Death is a Woman Called Widow","site_detail_url":"https://comicvine.gamespot.com/daredevil-81-and-death-is-a-woman-called-widow/4000-11781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11790/","id":11790,"name":"Rhino on the Rampage","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-32-rhino-on-the-rampage/4000-11790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11789/","id":11789,"name":"Alone Against the Underworld","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-31-alone-against-the-underworl/4000-11789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11721/","id":11721,"name":"The Secret of the Eternals!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-115-the-secret-of-the-eternals/4000-11721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11722/","id":11722,"name":"The Monster and the Madman","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-144-the-monster-and-the-madman/4000-11722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153308/","id":153308,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-1/4000-153308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109355/","id":109355,"name":"Target for Today?","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-196-target-for-today/4000-109355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11717/","id":11717,"name":"A Monster Called Morbius","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-101-a-monster-called-morbiu/4000-11717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11638/","id":11638,"name":"Wanted The World's Most Dangerous Villains","site_detail_url":"https://comicvine.gamespot.com/dc-special-14-wanted-the-worlds-most-dangerous-vil/4000-11638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11723/","id":11723,"name":"When Demons Wail!","site_detail_url":"https://comicvine.gamespot.com/iron-man-42-when-demons-wail/4000-11723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11663/","id":11663,"name":"But Who Shall Stop the Over-Mind?","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-114-but-who-shall-stop-the-over-min/4000-11663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11656/","id":11656,"name":"An Hour for Thunder; How Shall I Kill Thee? Let Me Count the Ways!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-8-an-hour-for-thunder-how-shall/4000-11656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11664/","id":11664,"name":"Sanctuary!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-143-sanctuary/4000-11664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11648/","id":11648,"name":"The Ultimate Battle!","site_detail_url":"https://comicvine.gamespot.com/superman-242-the-ultimate-battle/4000-11648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11674/","id":11674,"name":"Conflagration","site_detail_url":"https://comicvine.gamespot.com/thor-192-conflagration/4000-11674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11657/","id":11657,"name":"The Spider Or The Man?","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-100-the-spider-or-the-man/4000-11657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11662/","id":11662,"name":"In the Eyes...of the Owl","site_detail_url":"https://comicvine.gamespot.com/daredevil-80-in-the-eyesof-the-owl/4000-11662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123958/","id":123958,"name":"To Save You, Why Must I Kill You?","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-32-to-save-you-why-must-i-/4000-123958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11672/","id":11672,"name":"While a Universe Trembles!; The Grandeur and the Glory!; When Meet the Immortals!; Tales of Asgard: The Coming of Loki!","site_detail_url":"https://comicvine.gamespot.com/special-marvel-edition-3-while-a-universe-trembles/4000-11672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11659/","id":11659,"name":"The Unholy Alliance!","site_detail_url":"https://comicvine.gamespot.com/captain-america-141-the-unholy-alliance/4000-11659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11603/","id":11603,"name":"The Power of the Over-Mind!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-113-the-power-of-the-over-mind/4000-11603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11604/","id":11604,"name":"They Shoot Hulks, Don't They?","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-142-they-shoot-hulks-dont-they/4000-11604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11589/","id":11589,"name":"The Shape of Fear!","site_detail_url":"https://comicvine.gamespot.com/superman-241-the-shape-of-fear/4000-11589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11609/","id":11609,"name":"...Under the Name of Ritual","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-40-under-the-name-of-ritual/4000-11609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275336/","id":275336,"name":"Superciuk","site_detail_url":"https://comicvine.gamespot.com/alan-ford-26-superciuk/4000-275336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11597/","id":11597,"name":"A Day in the Life of... Featuring","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-99-a-day-in-the-life-of-fea/4000-11597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11602/","id":11602,"name":"Murder! Cries The Man-Bull!","site_detail_url":"https://comicvine.gamespot.com/daredevil-79-murder-cries-the-man-bull/4000-11602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11591/","id":11591,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-126/4000-11591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11611/","id":11611,"name":"I, Lucifer...","site_detail_url":"https://comicvine.gamespot.com/the-x-men-71-i-lucifer/4000-11611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11600/","id":11600,"name":"In the Grip of Gargoyle!","site_detail_url":"https://comicvine.gamespot.com/captain-america-140-in-the-grip-of-gargoyle/4000-11600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11553/","id":11553,"name":"... And Here I'll Stand!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-39-and-here-ill-stand/4000-11553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11544/","id":11544,"name":"Battle of the Behemoths!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-112-battle-of-the-behemoths/4000-11544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11537/","id":11537,"name":"An Evening's Wait For Death; The Sting of the Widow","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-7-an-evenings-wait-for-death-th/4000-11537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11554/","id":11554,"name":"...And So,To Die!","site_detail_url":"https://comicvine.gamespot.com/thor-190-and-soto-die/4000-11554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11543/","id":11543,"name":"On the Horns of the Man-Bull!","site_detail_url":"https://comicvine.gamespot.com/daredevil-78-on-the-horns-of-the-man-bull/4000-11543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11538/","id":11538,"name":"The Goblin's Last Gasp","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-98-the-goblins-last-gasp/4000-11538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11540/","id":11540,"name":"The Badge and The Betrayal!","site_detail_url":"https://comicvine.gamespot.com/captain-america-139-the-badge-and-the-betrayal/4000-11540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11549/","id":11549,"name":"Once Upon a Time, There Was a Robot","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-31-once-upon-a-time-there-was-a-robot/4000-11549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11547/","id":11547,"name":"A Twist of Memory -- A Turn of Mind!","site_detail_url":"https://comicvine.gamespot.com/iron-man-39-a-twist-of-memory-a-turn-of-mind/4000-11547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11539/","id":11539,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/the-avengers-90-judgment-day/4000-11539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11496/","id":11496,"name":"Namor Agonises!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-38-namor-agonises/4000-11496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11489/","id":11489,"name":"The Thing Runs Amok!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-111-the-thing-runs-amok/4000-11489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11497/","id":11497,"name":"The Icy Touch of Death!","site_detail_url":"https://comicvine.gamespot.com/thor-189-the-icy-touch-of-death/4000-11497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11484/","id":11484,"name":"'Ware The Winds of Death; The Tentacles of the Tyrant","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-6-ware-the-winds-of-death-the-te/4000-11484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11488/","id":11488,"name":"...And So Enters the Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/daredevil-77-and-so-enters-the-amazing-spider-man/4000-11488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11485/","id":11485,"name":"The Only Good Alien...","site_detail_url":"https://comicvine.gamespot.com/the-avengers-89-the-only-good-alien/4000-11485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11483/","id":11483,"name":"In the Grip of the Goblin","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-97-in-the-grip-of-the-gobli/4000-11483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11486/","id":11486,"name":"It Happens in Harlem!","site_detail_url":"https://comicvine.gamespot.com/captain-america-138-it-happens-in-harlem/4000-11486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123956/","id":123956,"name":"A Blind Man Shall Lead Them","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-31-a-blind-man-shall-lead-/4000-123956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11491/","id":11491,"name":"When Calls Jonah..!","site_detail_url":"https://comicvine.gamespot.com/iron-man-38-when-calls-jonah/4000-11491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112680/","id":112680,"name":"\"Into the Den of the Death-Dealers!\" ; Cut... and Run!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-411-into-the-den-of-the-death-dea/4000-112680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11430/","id":11430,"name":"One From Four Leaves Three!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-110-one-from-four-leaves-three/4000-11430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11423/","id":11423,"name":"Hell On Earth !; Blood Will Tell !","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-6-hell-on-earth-blood-will-tell/4000-11423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11440/","id":11440,"name":"\"The End of Infinity!\"","site_detail_url":"https://comicvine.gamespot.com/thor-188-the-end-of-infinity/4000-11440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11424/","id":11424,"name":"...And Now, the Goblin!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-96-and-now-the-goblin/4000-11424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11426/","id":11426,"name":"To Stalk The Spider-Man","site_detail_url":"https://comicvine.gamespot.com/captain-america-137-to-stalk-the-spider-man/4000-11426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11432/","id":11432,"name":"In This Hour of Earthdoom!","site_detail_url":"https://comicvine.gamespot.com/iron-man-37-in-this-hour-of-earthdoom/4000-11432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11425/","id":11425,"name":"The Summons of Psyklop","site_detail_url":"https://comicvine.gamespot.com/the-avengers-88-the-summons-of-psyklop/4000-11425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11428/","id":11428,"name":"Moomba is Here!","site_detail_url":"https://comicvine.gamespot.com/creatures-on-the-loose-11-moomba-is-here/4000-11428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11389/","id":11389,"name":"What Gods Have Joined Together!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-36-what-gods-have-joined-together/4000-11389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11380/","id":11380,"name":"Death in the Negative Zone!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-109-death-in-the-negative-zone/4000-11380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11390/","id":11390,"name":"\"The World is Lost!\"","site_detail_url":"https://comicvine.gamespot.com/thor-187-the-world-is-lost/4000-11390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175391/","id":175391,"name":"La Paura fa Spavento","site_detail_url":"https://comicvine.gamespot.com/alan-ford-22-la-paura-fa-spavento/4000-175391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11384/","id":11384,"name":"To Kill a Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-30-to-kill-a-spider-man/4000-11384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11383/","id":11383,"name":"And Men Shall Call Him Ox","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-30-and-men-shall-call-him-ox/4000-11383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11391/","id":11391,"name":"The Supreme Sacrifice! -- Lo! Now Shall Appear...The Mimic!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-69-the-supreme-sacrifice-lo-now-shall-ap/4000-11391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11374/","id":11374,"name":"Trap For a Terrorist","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-95-trap-for-a-terrorist/4000-11374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11387/","id":11387,"name":"A Little Town In France...","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-86-a-little-town-in-france/4000-11387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11377/","id":11377,"name":"The World Below","site_detail_url":"https://comicvine.gamespot.com/captain-america-136-the-world-below/4000-11377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11382/","id":11382,"name":"...Among Men Stalks the Ramrod!","site_detail_url":"https://comicvine.gamespot.com/iron-man-36-among-men-stalks-the-ramrod/4000-11382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11376/","id":11376,"name":"Look Homeward, Avenger!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-87-look-homeward-avenger/4000-11376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46619/","id":46619,"name":"I Brought the Roc to Life!; One Last Wish!","site_detail_url":"https://comicvine.gamespot.com/monsters-on-the-prowl-10-i-brought-the-roc-to-life/4000-46619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11388/","id":11388,"name":"With My Hammer in Hand...!; The Power! The Passion! The Pride!; Tales of Asgard: The Secret of Sigurd!; Where Mortals Fear to Tread!","site_detail_url":"https://comicvine.gamespot.com/special-marvel-edition-2-with-my-hammer-in-hand-th/4000-11388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11325/","id":11325,"name":"The Monstrous Mystery of the Nega-Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-108-the-monstrous-mystery-of-the-ne/4000-11325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11319/","id":11319,"name":"His Brother's Keeper; And To All a Good Night","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-5-his-brothers-keeper-and-to-al/4000-11319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11279/","id":11279,"name":"Klaatu! The Behemoth from Beyond Space!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-136-klaatu-the-behemoth-from-b/4000-11279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11334/","id":11334,"name":"Confrontation!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-35-confrontation/4000-11334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11335/","id":11335,"name":"Worlds at War!","site_detail_url":"https://comicvine.gamespot.com/thor-186-worlds-at-war/4000-11335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11324/","id":11324,"name":"In The Country Of The Blind!","site_detail_url":"https://comicvine.gamespot.com/daredevil-74-in-the-country-of-the-blind/4000-11324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11321/","id":11321,"name":"Brain-Child To The Dark Tower Came...!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-86-brain-child-to-the-dark-tower-came/4000-11321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11329/","id":11329,"name":"If This Be Justice","site_detail_url":"https://comicvine.gamespot.com/ka-zar-3-if-this-be-justice/4000-11329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132598/","id":132598,"name":"Behold! A Distant Star!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-30-behold-a-distant-star/4000-132598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11336/","id":11336,"name":"","site_detail_url":"https://comicvine.gamespot.com/where-creatures-roam-5/4000-11336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11328/","id":11328,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/iron-man-35-revenge/4000-11328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11320/","id":11320,"name":"On Wings of Death","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-94-on-wings-of-death/4000-11320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11330/","id":11330,"name":"Who Strikes at SHIELD?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-18-who-strikes-at-shield/4000-11330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11322/","id":11322,"name":"More Monster Than Man!","site_detail_url":"https://comicvine.gamespot.com/captain-america-135-more-monster-than-man/4000-11322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11278/","id":11278,"name":"And Now...The THING!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-107-and-nowthe-thing/4000-11278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11286/","id":11286,"name":"In the Grip of Infinity","site_detail_url":"https://comicvine.gamespot.com/thor-185-in-the-grip-of-infinity/4000-11286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11273/","id":11273,"name":"The World Is Not For Burning","site_detail_url":"https://comicvine.gamespot.com/the-avengers-85-the-world-is-not-for-burning/4000-11273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11274/","id":11274,"name":"They Call Him--Stone-Face!","site_detail_url":"https://comicvine.gamespot.com/captain-america-134-they-call-him-stone-face/4000-11274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11271/","id":11271,"name":"The Lady and the Prowler","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-93-the-lady-and-the-prowler/4000-11271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11277/","id":11277,"name":"While the City Sleeps","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-2-while-the-city-sleeps/4000-11277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11276/","id":11276,"name":"Behold... The Brotherhood!","site_detail_url":"https://comicvine.gamespot.com/daredevil-73-behold-the-brotherhood/4000-11276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11201/","id":11201,"name":"Walk Not In The Desert's Sun ...","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-11-walk-not-in-the-deserts-su/4000-11201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11288/","id":11288,"name":"Among Us...Stalk the Sentinels! -- Prisoners of the Mysterio...","site_detail_url":"https://comicvine.gamespot.com/the-x-men-68-among-usstalk-the-sentinels-prisoners/4000-11288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11280/","id":11280,"name":"Crisis and Calamity","site_detail_url":"https://comicvine.gamespot.com/iron-man-34-crisis-and-calamity/4000-11280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11213/","id":11213,"name":"With These Rings, I Thee Kill!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-4-with-these-rings-i-thee-kill/4000-11213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123629/","id":123629,"name":"The Monster's Secret","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-106-the-monsters-secret/4000-123629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11214/","id":11214,"name":"When Iceman Attacks","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-92-when-iceman-attacks/4000-11214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169629/","id":169629,"name":"Frit Frut","site_detail_url":"https://comicvine.gamespot.com/alan-ford-20-frit-frut/4000-169629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11216/","id":11216,"name":"The Sword And The Sorceress!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-84-the-sword-and-the-sorceress/4000-11216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11218/","id":11218,"name":"The Origin of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-1-the-origin-of-captain-ame/4000-11218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11219/","id":11219,"name":"Lo! The Lord Of The Leopards!","site_detail_url":"https://comicvine.gamespot.com/daredevil-72-lo-the-lord-of-the-leopards/4000-11219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11224/","id":11224,"name":"How Green Was My Goblin!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-29-how-green-was-my-goblin/4000-11224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11234/","id":11234,"name":"A World Gone Mad!","site_detail_url":"https://comicvine.gamespot.com/thor-annual-3-a-world-gone-mad/4000-11234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11215/","id":11215,"name":"The Invasion Of The Lava Men, Meet The Maters Of Evil","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-4-the-invasion-of-the-lava-men/4000-11215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11217/","id":11217,"name":"Madness in the Slums!","site_detail_url":"https://comicvine.gamespot.com/captain-america-133-madness-in-the-slums/4000-11217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11222/","id":11222,"name":"Destroy Stark Industries","site_detail_url":"https://comicvine.gamespot.com/iron-man-33-destroy-stark-industries/4000-11222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11157/","id":11157,"name":"The Monster in the Streets","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-105-the-monster-in-the-streets/4000-11157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11151/","id":11151,"name":"Doom Must Die!; Back to the Savage Land","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-3-doom-must-die-back-to-the-sava/4000-11151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11166/","id":11166,"name":"Trapped in Doomsland","site_detail_url":"https://comicvine.gamespot.com/thor-183-trapped-in-doomsland/4000-11166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138675/","id":138675,"name":"Enter,The Avengers!; The Triumph of Magneto","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-1-enterthe-avengers-the-triumph-of-ma/4000-138675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11150/","id":11150,"name":"To Smash the Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-91-to-smash-the-spider/4000-11150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11171/","id":11171,"name":"I 3 di Yuma","site_detail_url":"https://comicvine.gamespot.com/alan-ford-19-i-3-di-yuma/4000-11171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11126/","id":11126,"name":"Sub-Mariner versus The Human Race","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-8-sub-mariner-versus-the-hum/4000-11126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11153/","id":11153,"name":"The Fearful Secret of Bucky Barnes!","site_detail_url":"https://comicvine.gamespot.com/captain-america-132-the-fearful-secret-of-bucky-ba/4000-11153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215055/","id":215055,"name":"The Fantastic Four meets The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-29-the-fantastic-four-meet/4000-215055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49495/","id":49495,"name":"Love Is Not a Happy Ending","site_detail_url":"https://comicvine.gamespot.com/secret-hearts-148-love-is-not-a-happy-ending/4000-49495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11156/","id":11156,"name":"If An Eye Offend Thee...!","site_detail_url":"https://comicvine.gamespot.com/daredevil-71-if-an-eye-offend-thee/4000-11156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11152/","id":11152,"name":"The Revolution's Fine","site_detail_url":"https://comicvine.gamespot.com/the-avengers-83-the-revolutions-fine/4000-11152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11125/","id":11125,"name":"Spider-Man vs The Chameleon","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-7-spider-man-vs-the-/4000-11125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11160/","id":11160,"name":"Sightless In a Savage Land","site_detail_url":"https://comicvine.gamespot.com/ka-zar-2-sightless-in-a-savage-land/4000-11160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11109/","id":11109,"name":"The Prisoner, The Power And Dr.Doom!","site_detail_url":"https://comicvine.gamespot.com/thor-182-the-prisoner-the-power-and-drdoom/4000-11109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11099/","id":11099,"name":"Our World Enslaved!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-104-our-world-enslaved/4000-11099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11094/","id":11094,"name":"Pawns of the Mandarin","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-3-pawns-of-the-mandarin/4000-11094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11108/","id":11108,"name":"Attuma Triumphant!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-31-attuma-triumphant/4000-11108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11095/","id":11095,"name":"And Death Shall Come","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-90-and-death-shall-come/4000-11095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11115/","id":11115,"name":"Il Cane da un Milione di Dollari","site_detail_url":"https://comicvine.gamespot.com/alan-ford-18-il-cane-da-un-milione-di-dollari/4000-11115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11096/","id":11096,"name":"Hostage!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-82-hostage/4000-11096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11098/","id":11098,"name":"The Tribune","site_detail_url":"https://comicvine.gamespot.com/daredevil-70-the-tribune/4000-11098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11104/","id":11104,"name":"Find Fury or Die!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-16-find-fury-or-die/4000-11104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11100/","id":11100,"name":"I Found Monstrom, the Dweller in the Black Swamp!","site_detail_url":"https://comicvine.gamespot.com/adventure-into-fear-1-i-found-monstrom-the-dweller/4000-11100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11054/","id":11054,"name":"At War With Atlantis!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-103-at-war-with-atlantis/4000-11054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11048/","id":11048,"name":"Revolution!; Frenzy On the Fortieth Floor!","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-2-revolution-frenzy-on-the-forti/4000-11048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11047/","id":11047,"name":"Doc Ock Lives!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-89-doc-ock-lives/4000-11047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11019/","id":11019,"name":"Cure Termali","site_detail_url":"https://comicvine.gamespot.com/alan-ford-17-cure-termali/4000-11019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11053/","id":11053,"name":"A Life On The Line","site_detail_url":"https://comicvine.gamespot.com/daredevil-69-a-life-on-the-line/4000-11053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11063/","id":11063,"name":"One God Must Fall!","site_detail_url":"https://comicvine.gamespot.com/thor-181-one-god-must-fall/4000-11063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11049/","id":11049,"name":"When Dies a Legend!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-81-when-dies-a-legend/4000-11049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11012/","id":11012,"name":"Fear Is The Hunter!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-29-fear-is-the-hunter/4000-11012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11005/","id":11005,"name":"The Strength Of The Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-102-the-strength-of-the-sub-mariner/4000-11005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11000/","id":11000,"name":"Friend Against Friend","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-2-friend-against-friend/4000-11000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11001/","id":11001,"name":"The Arms of Doctor Octopus!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-88-the-arms-of-doctor-octop/4000-11001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11002/","id":11002,"name":"The Coming Of Red Wolf!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-80-the-coming-of-red-wolf/4000-11002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11004/","id":11004,"name":"Phoenix And The Fighter!","site_detail_url":"https://comicvine.gamespot.com/daredevil-68-phoenix-and-the-fighter/4000-11004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11013/","id":11013,"name":"When Gods Go Mad!","site_detail_url":"https://comicvine.gamespot.com/thor-180-when-gods-go-mad/4000-11013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10962/","id":10962,"name":"Youthquake","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-28-youthquake/4000-10962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10953/","id":10953,"name":"Bedlam in the Baxter Building","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-101-bedlam-in-the-baxter-building/4000-10953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10946/","id":10946,"name":"Beware the Inhumans!; The Sting of The Black Widow","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-1-beware-the-inhumans-the-sting/4000-10946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10948/","id":10948,"name":"Unto you is Born the Doomsman; The Power of Ka-zar","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-1-unto-you-is-born-the-doomsman-/4000-10948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10957/","id":10957,"name":"The Mystery of the Midnight Stalker","site_detail_url":"https://comicvine.gamespot.com/ka-zar-1-the-mystery-of-the-midnight-stalker/4000-10957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10961/","id":10961,"name":"Through the Past, Darkly","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-annual-6-through-the-past-darkly/4000-10961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10949/","id":10949,"name":"Lo! The Lethal Legion!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-79-lo-the-lethal-legion/4000-10949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10914/","id":10914,"name":"Il Colpo di Fulmine","site_detail_url":"https://comicvine.gamespot.com/alan-ford-15-il-colpo-di-fulmine/4000-10914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10947/","id":10947,"name":"Unmasked at Last!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-87-unmasked-at-last/4000-10947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123954/","id":123954,"name":"The Frightful Four!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-28-the-frightful-four/4000-123954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10950/","id":10950,"name":"Mission: Stamp Out Satan's Angels!","site_detail_url":"https://comicvine.gamespot.com/captain-america-128-mission-stamp-out-satans-angel/4000-10950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10963/","id":10963,"name":"No More the Thunder God!","site_detail_url":"https://comicvine.gamespot.com/thor-179-no-more-the-thunder-god/4000-10963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114021/","id":114021,"name":"Stilt-Man Stalks The Soundstage","site_detail_url":"https://comicvine.gamespot.com/daredevil-67-stilt-man-stalks-the-soundstage/4000-114021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10908/","id":10908,"name":"When Wakes The Kraken!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-27-when-wakes-the-kraken/4000-10908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10895/","id":10895,"name":"Beware the Black Widow!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-86-beware-the-black-widow/4000-10895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10896/","id":10896,"name":"The Man-Ape Always Strikes Twice!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-78-the-man-ape-always-strikes-twice/4000-10896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137452/","id":137452,"name":"Family Affair No. 3","site_detail_url":"https://comicvine.gamespot.com/family-affair-3-family-affair-no-3/4000-137452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260315/","id":260315,"name":"Family Affair No. 4","site_detail_url":"https://comicvine.gamespot.com/family-affair-4-family-affair-no-4/4000-260315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10901/","id":10901,"name":"The Fury of the Firebrand!","site_detail_url":"https://comicvine.gamespot.com/iron-man-27-the-fury-of-the-firebrand/4000-10901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10865/","id":10865,"name":"\"Kill!\" Cried the Raven!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-26-kill-cried-the-raven/4000-10865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10853/","id":10853,"name":"Heroes For Hire!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-77-heroes-for-hire/4000-10853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10852/","id":10852,"name":"The Secret of the Schemer","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-85-the-secret-of-the-scheme/4000-10852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10735/","id":10735,"name":"Strangest Sports Stories Ever Told!","site_detail_url":"https://comicvine.gamespot.com/dc-special-7-strangest-sports-stories-ever-told/4000-10735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10814/","id":10814,"name":"A World My Enemy!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-25-a-world-my-enemy/4000-10814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10803/","id":10803,"name":"Mystery on the Moon","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-98-mystery-on-the-moon/4000-10803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10804/","id":10804,"name":"Mogol!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-127-mogol/4000-10804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329936/","id":329936,"name":"Lo strano Dr Octopus","site_detail_url":"https://comicvine.gamespot.com/luomo-ragno-3-lo-strano-dr-octopus/4000-329936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329500/","id":329500,"name":"L'Avvoltoio","site_detail_url":"https://comicvine.gamespot.com/luomo-ragno-2-lavvoltoio/4000-329500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10800/","id":10800,"name":"The Blaze Of Battle... The Flames Of Love!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-76-the-blaze-of-battle-the-flames-of-/4000-10800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10799/","id":10799,"name":"The Kingpin Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-84-the-kingpin-strikes-back/4000-10799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10764/","id":10764,"name":"The Flame and the Fury!","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-15-the-flame-and-the-fury/4000-10764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329254/","id":329254,"name":"L'Uomo Ragno","site_detail_url":"https://comicvine.gamespot.com/luomo-ragno-1-luomo-ragno/4000-329254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10766/","id":10766,"name":"The Fall of Asgard!","site_detail_url":"https://comicvine.gamespot.com/thor-175-the-fall-of-asgard/4000-10766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225298/","id":225298,"name":"La Cité des eaux mouvantes","site_detail_url":"https://comicvine.gamespot.com/valerian-1-la-cite-des-eaux-mouvantes/4000-225298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10754/","id":10754,"name":"The Warlord And The Witch","site_detail_url":"https://comicvine.gamespot.com/the-avengers-75-the-warlord-and-the-witch/4000-10754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10770/","id":10770,"name":"La Triste Storia di un Giovane Ricco","site_detail_url":"https://comicvine.gamespot.com/alan-ford-12-la-triste-storia-di-un-giovane-ricco/4000-10770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10753/","id":10753,"name":"The Coming of… the Schemer!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-83-the-coming-of-the-scheme/4000-10753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123952/","id":123952,"name":"A House Divided","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-26-a-house-divided/4000-123952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10719/","id":10719,"name":"The Surfer and the Spider!","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-14-the-surfer-and-the-spider/4000-10719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10712/","id":10712,"name":"The Mad Thinker and His Androids of Death","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-96-the-mad-thinker-and-his-androids/4000-10712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10708/","id":10708,"name":"Pursue The Panther!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-74-pursue-the-panther/4000-10708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10726/","id":10726,"name":"Il Numero 1","site_detail_url":"https://comicvine.gamespot.com/alan-ford-11-il-numero-1/4000-10726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10709/","id":10709,"name":"Suprema, The Deadliest of The Species!","site_detail_url":"https://comicvine.gamespot.com/captain-america-123-suprema-the-deadliest-of-the-s/4000-10709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10711/","id":10711,"name":"Quoth The Nighthawk, 'Nevermore!'","site_detail_url":"https://comicvine.gamespot.com/daredevil-62-quoth-the-nighthawk-nevermore/4000-10711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10707/","id":10707,"name":"And Then Came Electro!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-82-and-then-came-electro/4000-10707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10721/","id":10721,"name":"The Challenge of the Crypto-Man!","site_detail_url":"https://comicvine.gamespot.com/thor-174-the-challenge-of-the-crypto-man/4000-10721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10716/","id":10716,"name":"Man on a Rampage","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-25-man-on-a-rampage/4000-10716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10673/","id":10673,"name":"The Dawn of the Doomsday Man!","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-13-the-dawn-of-the-doomsday-man/4000-10673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10667/","id":10667,"name":"Tomorrow World War Three!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-95-tomorrow-world-war-three/4000-10667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10663/","id":10663,"name":"The Sting of the Serpent","site_detail_url":"https://comicvine.gamespot.com/the-avengers-73-the-sting-of-the-serpent/4000-10663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10664/","id":10664,"name":"The Sting of The Scorpion!","site_detail_url":"https://comicvine.gamespot.com/captain-america-122-the-sting-of-the-scorpion/4000-10664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10676/","id":10676,"name":"Before I'd Be Slave","site_detail_url":"https://comicvine.gamespot.com/the-x-men-65-before-id-be-slave/4000-10676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10662/","id":10662,"name":"The Coming of the Kangaroo!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-81-the-coming-of-the-kangar/4000-10662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10631/","id":10631,"name":"Invasion From the Ocean Floor","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-21-invasion-from-the-ocean-floor/4000-10631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10621/","id":10621,"name":"The Return of the Frightful Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-94-the-return-of-the-frightful-four/4000-10621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10622/","id":10622,"name":"No More the Monster!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-123-no-more-the-monster/4000-10622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10616/","id":10616,"name":"On The Trail of...the Chameleon!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-80-on-the-trail-ofthe-chame/4000-10616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10635/","id":10635,"name":"The Coming of Sunfire","site_detail_url":"https://comicvine.gamespot.com/the-x-men-64-the-coming-of-sunfire/4000-10635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10617/","id":10617,"name":"Did You Hear The One About Scorpio?","site_detail_url":"https://comicvine.gamespot.com/the-avengers-72-did-you-hear-the-one-about-scorpio/4000-10617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169628/","id":169628,"name":"Zoo Symphony","site_detail_url":"https://comicvine.gamespot.com/alan-ford-9-zoo-symphony/4000-169628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116220/","id":116220,"name":"","site_detail_url":"https://comicvine.gamespot.com/beneath-the-planet-of-the-apes-1/4000-116220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10618/","id":10618,"name":"The Coming of...The Man-Brute!","site_detail_url":"https://comicvine.gamespot.com/captain-america-121-the-coming-ofthe-man-brute/4000-10618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10551/","id":10551,"name":"Requiem for a Robot!","site_detail_url":"https://comicvine.gamespot.com/metal-men-41-requiem-for-a-robot/4000-10551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10632/","id":10632,"name":"The Immortal and the Mind-Slave!","site_detail_url":"https://comicvine.gamespot.com/thor-172-the-immortal-and-the-mind-slave/4000-10632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10572/","id":10572,"name":"The Hulk's Last Fight!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-122-the-hulks-last-fight/4000-10572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10578/","id":10578,"name":"In the Darkness Dwells...Doom!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-20-in-the-darkness-dwellsdoom/4000-10578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553234/","id":553234,"name":"Mawa y el regreso de Goondor","site_detail_url":"https://comicvine.gamespot.com/jungla-59-mawa-y-el-regreso-de-goondor/4000-553234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10566/","id":10566,"name":"To Prowl No More!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-79-to-prowl-no-more/4000-10566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10567/","id":10567,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/the-avengers-71-endgame/4000-10567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10568/","id":10568,"name":"Crack-Up on Campus!","site_detail_url":"https://comicvine.gamespot.com/captain-america-120-crack-up-on-campus/4000-10568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10579/","id":10579,"name":"\"The Wrath of the Wrecker!\"","site_detail_url":"https://comicvine.gamespot.com/thor-171-the-wrath-of-the-wrecker/4000-10579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123950/","id":123950,"name":"Death of a Hero!","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-24-death-of-a-hero/4000-123950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10496/","id":10496,"name":"There Is Laughter In Hell This Day!; Out Of This World","site_detail_url":"https://comicvine.gamespot.com/the-phantom-stranger-4-there-is-laughter-in-hell-t/4000-10496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10434/","id":10434,"name":"The Secret Lives of Joe Kubert","site_detail_url":"https://comicvine.gamespot.com/dc-special-5-the-secret-lives-of-joe-kubert/4000-10434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10523/","id":10523,"name":"Support Your Local Sting-Ray","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-19-support-your-local-sting-ray/4000-10523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10513/","id":10513,"name":"Ben Grimm, Killer!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-92-ben-grimm-killer/4000-10513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10520/","id":10520,"name":"The Assassination Of Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-15-the-assassination-of-/4000-10520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10506/","id":10506,"name":"The Night of the Prowler!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-78-the-night-of-the-prowler/4000-10506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10507/","id":10507,"name":"Enter the Squadron Sinister!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-70-enter-the-squadron-sinister/4000-10507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10485/","id":10485,"name":"The Fantastic Four Meet the Mole Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-7-the-fantastic-four-meet-th/4000-10485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10484/","id":10484,"name":"The Sinister Six","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-6-the-sinister-six/4000-10484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10439/","id":10439,"name":"The Dreadful Hunt!","site_detail_url":"https://comicvine.gamespot.com/metal-men-40-the-dreadful-hunt/4000-10439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10524/","id":10524,"name":"The Thunder God and the Thermal Man!","site_detail_url":"https://comicvine.gamespot.com/thor-170-the-thunder-god-and-the-thermal-man/4000-10524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115003/","id":115003,"name":"The Dictator of Earth! / The Hapless Hero","site_detail_url":"https://comicvine.gamespot.com/action-comics-381-the-dictator-of-earth-the-haples/4000-115003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10467/","id":10467,"name":"The Thing--Enslaved","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-91-the-thing-enslaved/4000-10467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10464/","id":10464,"name":"And A Child Shall Lead You!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-17-and-a-child-shall-lead-you/4000-10464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10461/","id":10461,"name":"In the Blaze of Battle!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-77-in-the-blaze-of-battle/4000-10461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10462/","id":10462,"name":"Let The Game Begin","site_detail_url":"https://comicvine.gamespot.com/the-avengers-69-let-the-game-begin/4000-10462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10466/","id":10466,"name":"In The Midst Of Life...!","site_detail_url":"https://comicvine.gamespot.com/daredevil-57-in-the-midst-of-life/4000-10466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10469/","id":10469,"name":"Even Heroes Die","site_detail_url":"https://comicvine.gamespot.com/iron-man-18-even-heroes-die/4000-10469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123907/","id":123907,"name":"The Mad Menace of the Macabre Mole Man","site_detail_url":"https://comicvine.gamespot.com/marvels-greatest-comics-23-the-mad-menace-of-the-m/4000-123907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10474/","id":10474,"name":"The Awesome Answer!","site_detail_url":"https://comicvine.gamespot.com/thor-169-the-awesome-answer/4000-10474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114020/","id":114020,"name":"...And Death Came Riding","site_detail_url":"https://comicvine.gamespot.com/daredevil-56-and-death-came-riding/4000-114020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10406/","id":10406,"name":"The Skrull Takes A Slave","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-90-the-skrull-takes-a-slave/4000-10406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10401/","id":10401,"name":"...And We Battle For The Earth","site_detail_url":"https://comicvine.gamespot.com/the-avengers-68-and-we-battle-for-the-earth/4000-10401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10411/","id":10411,"name":"Nick Fury... A Day In the Life","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-14-nick-fury-a-day-in-th/4000-10411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10408/","id":10408,"name":"The Beginning of the End","site_detail_url":"https://comicvine.gamespot.com/iron-man-17-the-beginning-of-the-end/4000-10408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10399/","id":10399,"name":"The Lizard Lives!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-76-the-lizard-lives/4000-10399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10405/","id":10405,"name":"And Juggernaut Makes Three!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-182-and-juggernaut-makes-three/4000-10405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130542/","id":130542,"name":"The Sacrifice of Jimmy Olsen!; The Robber Robot!; The Puzzles of Space and Time!","site_detail_url":"https://comicvine.gamespot.com/supermans-pal-jimmy-olsen-123-the-sacrifice-of-jim/4000-130542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169624/","id":169624,"name":"Date! Date! Date!","site_detail_url":"https://comicvine.gamespot.com/alan-ford-5-date-date-date/4000-169624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306978/","id":306978,"name":"","site_detail_url":"https://comicvine.gamespot.com/adventures-of-the-big-boy-159/4000-306978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10402/","id":10402,"name":"The Coming of the Falcon","site_detail_url":"https://comicvine.gamespot.com/captain-america-117-the-coming-of-the-falcon/4000-10402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10338/","id":10338,"name":"The Beauty of the Beast!","site_detail_url":"https://comicvine.gamespot.com/metal-men-39-the-beauty-of-the-beast/4000-10338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10415/","id":10415,"name":"Galactus Found!","site_detail_url":"https://comicvine.gamespot.com/thor-168-galactus-found/4000-10415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10362/","id":10362,"name":"The Fangs of the Desert Fox","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-annual-5-the-fangs-of-the-desert-fox/4000-10362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10340/","id":10340,"name":"Come Darkness, Come Death!","site_detail_url":"https://comicvine.gamespot.com/showcase-84-come-darkness-come-death/4000-10340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10352/","id":10352,"name":"Death Without Warning!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-75-death-without-warning/4000-10352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10366/","id":10366,"name":"Do or Die, Baby!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-59-do-or-die-baby/4000-10366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10365/","id":10365,"name":"This World Renounced","site_detail_url":"https://comicvine.gamespot.com/thor-167-this-world-renounced/4000-10365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10369/","id":10369,"name":"La Casa dei Fantasmi","site_detail_url":"https://comicvine.gamespot.com/alan-ford-4-la-casa-dei-fantasmi/4000-10369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10354/","id":10354,"name":"Far Worse Than Death","site_detail_url":"https://comicvine.gamespot.com/captain-america-116-far-worse-than-death/4000-10354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10353/","id":10353,"name":"We Stand at Armageddon","site_detail_url":"https://comicvine.gamespot.com/the-avengers-67-we-stand-at-armageddon/4000-10353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10356/","id":10356,"name":"Cry Coward!","site_detail_url":"https://comicvine.gamespot.com/daredevil-55-cry-coward/4000-10356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10343/","id":10343,"name":"Clark Kent, Hero...Superman, Public Enemy! / The Super Heat-Wave of Metropolis!","site_detail_url":"https://comicvine.gamespot.com/superman-219-clark-kent-hero-superman-public-enemy/4000-10343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10309/","id":10309,"name":"A House There Was","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-88-a-house-there-was/4000-10309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10313/","id":10313,"name":"The Super-Patriot!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-13-the-super-patriot/4000-10313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10308/","id":10308,"name":"If A World Should Die Before I Wake...","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-181-if-a-world-should-die-before-i-/4000-10308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10302/","id":10302,"name":"If This Be Bedlam","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-74-if-this-be-bedlam/4000-10302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10320/","id":10320,"name":"Operazione Frankenstein","site_detail_url":"https://comicvine.gamespot.com/alan-ford-3-operazione-frankenstein/4000-10320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10314/","id":10314,"name":"Welcome Home, Soldier!","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-68-welcome-home-soldier/4000-10314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10304/","id":10304,"name":"Now Begins The Nightmare","site_detail_url":"https://comicvine.gamespot.com/captain-america-115-now-begins-the-nightmare/4000-10304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10307/","id":10307,"name":"Call Him... Fear!","site_detail_url":"https://comicvine.gamespot.com/daredevil-54-call-him-fear/4000-10307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10241/","id":10241,"name":"On a Witch Hunt","site_detail_url":"https://comicvine.gamespot.com/metal-men-38-on-a-witch-hunt/4000-10241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10268/","id":10268,"name":"Burn, Namor... Burn!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-14-burn-namor-burn/4000-10268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10243/","id":10243,"name":"Sing a Song of Sorcery!","site_detail_url":"https://comicvine.gamespot.com/showcase-83-sing-a-song-of-sorcery/4000-10243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10257/","id":10257,"name":"The Web Closes!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-73-the-web-closes/4000-10257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10270/","id":10270,"name":"The Sentinels Live","site_detail_url":"https://comicvine.gamespot.com/the-x-men-57-the-sentinels-live/4000-10270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10274/","id":10274,"name":"Il Dente Cariato","site_detail_url":"https://comicvine.gamespot.com/alan-ford-2-il-dente-cariato/4000-10274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10260/","id":10260,"name":"As It Was In The Beginning...","site_detail_url":"https://comicvine.gamespot.com/daredevil-53-as-it-was-in-the-beginning/4000-10260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10259/","id":10259,"name":"The Man Behind The Mask","site_detail_url":"https://comicvine.gamespot.com/captain-america-114-the-man-behind-the-mask/4000-10259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10269/","id":10269,"name":"HIM","site_detail_url":"https://comicvine.gamespot.com/thor-165-him/4000-10269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10210/","id":10210,"name":"Hell Hath No Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-12-hell-hath-no-fury/4000-10210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10206/","id":10206,"name":"Lo, the Leader Lives!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-115-lo-the-leader-lives/4000-10206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10204/","id":10204,"name":"Eternity, Eternity!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-180-eternity-eternity/4000-10204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10188/","id":10188,"name":"Some Forbidden Fate","site_detail_url":"https://comicvine.gamespot.com/showcase-82-some-forbidden-fate/4000-10188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10198/","id":10198,"name":"Rocked by the Shocker!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-72-rocked-by-the-shocker/4000-10198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10207/","id":10207,"name":"Captives of the Controller","site_detail_url":"https://comicvine.gamespot.com/iron-man-13-captives-of-the-controller/4000-10207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10218/","id":10218,"name":"Il Gruppo TNT","site_detail_url":"https://comicvine.gamespot.com/alan-ford-1-il-gruppo-tnt/4000-10218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10203/","id":10203,"name":"The Night Of The Panther!","site_detail_url":"https://comicvine.gamespot.com/daredevil-52-the-night-of-the-panther/4000-10203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10200/","id":10200,"name":"The Strange Death of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-113-the-strange-death-of-captain-a/4000-10200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10199/","id":10199,"name":"Like A Death Ray From The Sky!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-64-like-a-death-ray-from-the-sky/4000-10199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10130/","id":10130,"name":"To Walk Among Men","site_detail_url":"https://comicvine.gamespot.com/metal-men-37-to-walk-among-men/4000-10130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10214/","id":10214,"name":"Lest Mankind Fall","site_detail_url":"https://comicvine.gamespot.com/thor-164-lest-mankind-fall/4000-10214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10215/","id":10215,"name":"What is... the Power?","site_detail_url":"https://comicvine.gamespot.com/the-x-men-56-what-is-the-power/4000-10215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10157/","id":10157,"name":"The 1st Million Megaton Explosion","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-11-the-1st-million-megat/4000-10157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10136/","id":10136,"name":"Titans Fit The Battle Of Jericho","site_detail_url":"https://comicvine.gamespot.com/teen-titans-20-titans-fit-the-battle-of-jericho/4000-10136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10146/","id":10146,"name":"The Speedster and the Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-71-the-speedster-and-the-sp/4000-10146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10155/","id":10155,"name":"The Coming of the Controller","site_detail_url":"https://comicvine.gamespot.com/iron-man-12-the-coming-of-the-controller/4000-10155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10148/","id":10148,"name":"Lest We Forget","site_detail_url":"https://comicvine.gamespot.com/captain-america-112-lest-we-forget/4000-10148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10147/","id":10147,"name":"And In This Corner... Goliath!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-63-and-in-this-corner-goliath/4000-10147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10151/","id":10151,"name":"Run, Murdock, Run!","site_detail_url":"https://comicvine.gamespot.com/daredevil-51-run-murdock-run/4000-10151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10162/","id":10162,"name":"Where Dwell the Demons!","site_detail_url":"https://comicvine.gamespot.com/thor-163-where-dwell-the-demons/4000-10162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10103/","id":10103,"name":"Twas the Night Before Christmas","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-10-twas-the-night-before/4000-10103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10099/","id":10099,"name":"Where Fall the Shifting Sands!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-113-where-fall-the-shifting-sa/4000-10099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10091/","id":10091,"name":"Spider-Man Wanted!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-70-spider-man-wanted/4000-10091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10100/","id":10100,"name":"Unmasked!","site_detail_url":"https://comicvine.gamespot.com/iron-man-11-unmasked/4000-10100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10096/","id":10096,"name":"If In Battle I Fall...!","site_detail_url":"https://comicvine.gamespot.com/daredevil-50-if-in-battle-i-fall/4000-10096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10093/","id":10093,"name":"Tomorrow You Live, Tonight I Die","site_detail_url":"https://comicvine.gamespot.com/captain-america-111-tomorrow-you-live-tonight-i-di/4000-10093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10023/","id":10023,"name":"The Cruel Clowns","site_detail_url":"https://comicvine.gamespot.com/metal-men-36-the-cruel-clowns/4000-10023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10049/","id":10049,"name":"The Name Of The Game Is... Hate!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-9-the-name-of-the-game-i/4000-10049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10026/","id":10026,"name":"The Three Signs of Evil... / I Talked With the Dead!","site_detail_url":"https://comicvine.gamespot.com/showcase-80-the-three-signs-of-evil-i-talked-with-/4000-10026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10038/","id":10038,"name":"Mission: Crush The Kingpin!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-69-mission-crush-the-kingpi/4000-10038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10047/","id":10047,"name":"Once More...The Mandarin!","site_detail_url":"https://comicvine.gamespot.com/iron-man-10-once-morethe-mandarin/4000-10047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10039/","id":10039,"name":"Some Say The World Will End In Fire... Some Say In Ice!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-61-some-say-the-world-will-end-in-fir/4000-10039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10040/","id":10040,"name":"No Longer Alone","site_detail_url":"https://comicvine.gamespot.com/captain-america-110-no-longer-alone/4000-10040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10043/","id":10043,"name":"Daredevil Drops Out","site_detail_url":"https://comicvine.gamespot.com/daredevil-49-daredevil-drops-out/4000-10043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9998/","id":9998,"name":"Thus Speaks Supremus!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-8-thus-speaks-supremus/4000-9998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9986/","id":9986,"name":"Crisis on the Campus!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-68-crisis-on-the-campus/4000-9986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9995/","id":9995,"name":"...There Lives A Green Goliath","site_detail_url":"https://comicvine.gamespot.com/iron-man-9-there-lives-a-green-goliath/4000-9995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9991/","id":9991,"name":"Farewell To Foggy!","site_detail_url":"https://comicvine.gamespot.com/daredevil-48-farewell-to-foggy/4000-9991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135973/","id":135973,"name":"Danger--Doom Dummies","site_detail_url":"https://comicvine.gamespot.com/metal-men-35-danger-doom-dummies/4000-135973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10001/","id":10001,"name":"And Now... Galactus!","site_detail_url":"https://comicvine.gamespot.com/thor-160-and-now-galactus/4000-10001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9987/","id":9987,"name":"... Till Death Do Us Part","site_detail_url":"https://comicvine.gamespot.com/the-avengers-60-till-death-do-us-part/4000-9987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109023/","id":109023,"name":"In the Rage of Battle!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-8-in-the-rage-of-battle/4000-109023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136909/","id":136909,"name":"Enter the Exquisite Elemental!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-81-enter-the-exquisite-elemental/4000-136909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114327/","id":114327,"name":"Hours of Madness, Days of Death","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-7-hours-of-madness-days-/4000-114327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552725/","id":552725,"name":"La Captura de Mawa","site_detail_url":"https://comicvine.gamespot.com/jungla-34-la-captura-de-mawa/4000-552725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109504/","id":109504,"name":"To Squash A Spider!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-67-to-squash-a-spider/4000-109504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114019/","id":114019,"name":"Brother, Take My Hand!","site_detail_url":"https://comicvine.gamespot.com/daredevil-47-brother-take-my-hand/4000-114019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113995/","id":113995,"name":"The Name Is... Yellowjacket","site_detail_url":"https://comicvine.gamespot.com/the-avengers-59-the-name-is-yellowjacket/4000-113995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109148/","id":109148,"name":"The Snares of the Trapster","site_detail_url":"https://comicvine.gamespot.com/captain-america-108-the-snares-of-the-trapster/4000-109148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124587/","id":124587,"name":"The Answer At Last!","site_detail_url":"https://comicvine.gamespot.com/thor-159-the-answer-at-last/4000-124587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136908/","id":136908,"name":"Where Treads the Living Totem!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-80-where-treads-the-living-totem/4000-136908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109022/","id":109022,"name":"For President--The Man Called Destiny!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-7-for-president-the-man-called-destiny/4000-109022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304046/","id":304046,"name":"","site_detail_url":"https://comicvine.gamespot.com/young-romance-156/4000-304046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109503/","id":109503,"name":"The Madness of Mysterio!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-66-the-madness-of-mysterio/4000-109503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111514/","id":111514,"name":"At Long Last...The Parents of Peter Parker!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-5-at-long-lastthe-pa/4000-111514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110105/","id":110105,"name":"Let There Be..Life!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-6-let-there-belife/4000-110105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109147/","id":109147,"name":"If the Past Be Not Dead","site_detail_url":"https://comicvine.gamespot.com/captain-america-107-if-the-past-be-not-dead/4000-109147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109563/","id":109563,"name":"The Final Jest","site_detail_url":"https://comicvine.gamespot.com/daredevil-46-the-final-jest/4000-109563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166098/","id":166098,"name":"The Goblin Lives!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-magazine-2-the-goblin-l/4000-166098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135972/","id":135972,"name":"Death Comes Calling","site_detail_url":"https://comicvine.gamespot.com/metal-men-34-death-comes-calling/4000-135972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124586/","id":124586,"name":"The Way It Was!","site_detail_url":"https://comicvine.gamespot.com/thor-158-the-way-it-was/4000-124586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113994/","id":113994,"name":"Even An Android Can Cry","site_detail_url":"https://comicvine.gamespot.com/the-avengers-58-even-an-android-can-cry/4000-113994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136906/","id":136906,"name":"This Monster Forever!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-79-this-monster-forever/4000-136906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109884/","id":109884,"name":"When Lands The Saucer","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-2-when-lands-the-saucer/4000-109884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139652/","id":139652,"name":"While A World Waits!","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-173-while-a-world-waits/4000-139652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109502/","id":109502,"name":"The Impossible Escape!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-65-the-impossible-escape/4000-109502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114018/","id":114018,"name":"The Dismal Dregs of Defeat!","site_detail_url":"https://comicvine.gamespot.com/daredevil-45-the-dismal-dregs-of-defeat/4000-114018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134796/","id":134796,"name":"Death to Green Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern-64-death-to-green-lantern/4000-134796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114325/","id":114325,"name":"Whatever Happened to Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-5-whatever-happened-to-s/4000-114325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113991/","id":113991,"name":"Behold...The Vision","site_detail_url":"https://comicvine.gamespot.com/the-avengers-57-beholdthe-vision/4000-113991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114322/","id":114322,"name":"Origin of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-4-origin-of-shield/4000-114322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123673/","id":123673,"name":"Beware Computo, Commander of the Robot Hive!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-48-beware-computo-commander-of-the-robot/4000-123673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136905/","id":136905,"name":"The Thing No More!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-78-the-thing-no-more/4000-136905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304045/","id":304045,"name":"","site_detail_url":"https://comicvine.gamespot.com/young-romance-155/4000-304045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109501/","id":109501,"name":"The Vulture's Prey","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-64-the-vultures-prey/4000-109501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124563/","id":124563,"name":"And Time, The Rushing River...!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-2-and-time-the-rushing-river/4000-124563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109518/","id":109518,"name":"I, Murderer!","site_detail_url":"https://comicvine.gamespot.com/daredevil-44-i-murderer/4000-109518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135971/","id":135971,"name":"Recipe To Kill a Robot","site_detail_url":"https://comicvine.gamespot.com/metal-men-33-recipe-to-kill-a-robot/4000-135971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136907/","id":136907,"name":"Shall Earth Endure?","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-77-shall-earth-endure/4000-136907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109500/","id":109500,"name":"Wings in the Night!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-63-wings-in-the-night/4000-109500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113988/","id":113988,"name":"Mayhem Over Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-avengers-55-mayhem-over-manhattan/4000-113988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114017/","id":114017,"name":"In Combat With Captain America!","site_detail_url":"https://comicvine.gamespot.com/daredevil-43-in-combat-with-captain-america/4000-114017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111619/","id":111619,"name":"Above the Earth...a Titan Rages!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-106-above-the-eartha-titan-rag/4000-111619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123672/","id":123672,"name":"The Warlock Wears Three Faces","site_detail_url":"https://comicvine.gamespot.com/the-x-men-47-the-warlock-wears-three-faces/4000-123672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136904/","id":136904,"name":"Stranded in Sub-Atomica!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-76-stranded-in-sub-atomica/4000-136904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222665/","id":222665,"name":"Issue #154","site_detail_url":"https://comicvine.gamespot.com/young-romance-154-issue-154/4000-222665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109499/","id":109499,"name":"Make Way For---Medusa!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-62-make-way-for-medusa/4000-109499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120044/","id":120044,"name":"My Friend, My Foe...The Freak!","site_detail_url":"https://comicvine.gamespot.com/iron-man-3-my-friend-my-foethe-freak/4000-120044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114016/","id":114016,"name":"Nobody Laughs At The Jester!","site_detail_url":"https://comicvine.gamespot.com/daredevil-42-nobody-laughs-at-the-jester/4000-114016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111620/","id":111620,"name":"This Monster Unleashed!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-105-this-monster-unleashed/4000-111620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106382/","id":106382,"name":"...And Deliver Us From--The Masters of Evil","site_detail_url":"https://comicvine.gamespot.com/the-avengers-54-and-deliver-us-from-the-masters-of/4000-106382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114321/","id":114321,"name":"So Shall Ye Reap... Death!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-2-so-shall-ye-reap-death/4000-114321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166097/","id":166097,"name":"Lo, This Monster!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-magazine-1-lo-this-mons/4000-166097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135970/","id":135970,"name":"The Metal Women Blues","site_detail_url":"https://comicvine.gamespot.com/metal-men-32-the-metal-women-blues/4000-135970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136903/","id":136903,"name":"Worlds Within Worlds!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-75-worlds-within-worlds/4000-136903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109467/","id":109467,"name":"What a Tangled Web We Weave ...!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-61-what-a-tangled-web-we-we/4000-109467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120042/","id":120042,"name":"The Day Of The Demolisher!","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-the-day-of-the-demolisher/4000-120042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74824/","id":74824,"name":"","site_detail_url":"https://comicvine.gamespot.com/king-kong-1/4000-74824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113987/","id":113987,"name":"In Battle Joined!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-53-in-battle-joined/4000-113987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114015/","id":114015,"name":"The Death Of Mike Murdock!","site_detail_url":"https://comicvine.gamespot.com/daredevil-41-the-death-of-mike-murdock/4000-114015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111603/","id":111603,"name":"Ring Around the Rhino","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-104-ring-around-the-rhino/4000-111603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136902/","id":136902,"name":"When Calls Galactus!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-74-when-calls-galactus/4000-136902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109016/","id":109016,"name":"Years Of Glory, Day Of Doom","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-1-years-of-glory-day-of-doom/4000-109016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144009/","id":144009,"name":"The Flash--Fact or Fiction?","site_detail_url":"https://comicvine.gamespot.com/the-flash-179-the-flash-fact-or-fiction/4000-144009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121687/","id":121687,"name":"The Leper from Krypton! / The Landmark Looters!","site_detail_url":"https://comicvine.gamespot.com/action-comics-363-the-leper-from-krypton-the-landm/4000-121687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109466/","id":109466,"name":"O Bitter Victory!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-60-o-bitter-victory/4000-109466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113986/","id":113986,"name":"Death Calls For The Arch-Heroes","site_detail_url":"https://comicvine.gamespot.com/the-avengers-52-death-calls-for-the-arch-heroes/4000-113986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114014/","id":114014,"name":"The Fallen Hero!","site_detail_url":"https://comicvine.gamespot.com/daredevil-40-the-fallen-hero/4000-114014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111602/","id":111602,"name":"And Now...the Space Parasite!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-103-and-nowthe-space-parasite/4000-111602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135969/","id":135969,"name":"The Amazing School For Robots","site_detail_url":"https://comicvine.gamespot.com/metal-men-31-the-amazing-school-for-robots/4000-135969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169116/","id":169116,"name":"The Doorway into Time","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-106-the-doorway-into-time/4000-169116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136901/","id":136901,"name":"Giant Guest Star Bonanza!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-73-giant-guest-star-bonanza/4000-136901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109464/","id":109464,"name":"The Brand of the Brainwasher!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-59-the-brand-of-the-brainwa/4000-109464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113985/","id":113985,"name":"In The Clutches Of... The Collector","site_detail_url":"https://comicvine.gamespot.com/the-avengers-51-in-the-clutches-of-the-collector/4000-113985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114013/","id":114013,"name":"The Exterminator And The Super-Powered Unholy Three","site_detail_url":"https://comicvine.gamespot.com/daredevil-39-the-exterminator-and-the-super-powere/4000-114013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111735/","id":111735,"name":"Where Soars the Silver Surfer!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-72-where-soars-the-silver-surfer/4000-111735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115904/","id":115904,"name":"Where Stalks the Sentry!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-13-where-stalks-the-sentry/4000-115904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109460/","id":109460,"name":"To Kill A Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-58-to-kill-a-spider-man/4000-109460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139559/","id":139559,"name":"The Robin Hood Raider!","site_detail_url":"https://comicvine.gamespot.com/kid-colt-outlaw-139-the-robin-hood-raider/4000-139559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113984/","id":113984,"name":"To Tame A Titan","site_detail_url":"https://comicvine.gamespot.com/the-avengers-50-to-tame-a-titan/4000-113984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114012/","id":114012,"name":"The Living Prison!","site_detail_url":"https://comicvine.gamespot.com/daredevil-38-the-living-prison/4000-114012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9920/","id":9920,"name":"Terrors of the Forbidden Dimension","site_detail_url":"https://comicvine.gamespot.com/metal-men-30-terrors-of-the-forbidden-dimension/4000-9920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9937/","id":9937,"name":"And So It Ends","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-71-and-so-it-ends/4000-9937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9944/","id":9944,"name":"When Falls a Hero!","site_detail_url":"https://comicvine.gamespot.com/thor-149-when-falls-a-hero/4000-9944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9934/","id":9934,"name":"The Coming of Ka-Zar","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-57-the-coming-of-ka-zar/4000-9934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9945/","id":9945,"name":"Now Strikes... the Sub-Human","site_detail_url":"https://comicvine.gamespot.com/the-x-men-41-now-strikes-the-sub-human/4000-9945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9935/","id":9935,"name":"Mine Is the Power","site_detail_url":"https://comicvine.gamespot.com/the-avengers-49-mine-is-the-power/4000-9935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9936/","id":9936,"name":"Don't Look Now, But It's... Dr. Doom!","site_detail_url":"https://comicvine.gamespot.com/daredevil-37-dont-look-now-but-its-dr-doom/4000-9936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9880/","id":9880,"name":"When Fall the Mighty","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-70-when-fall-the-mighty/4000-9880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9879/","id":9879,"name":"The Name of the Game is Mayhem!","site_detail_url":"https://comicvine.gamespot.com/daredevil-36-the-name-of-the-game-is-mayhem/4000-9879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9887/","id":9887,"name":"Let There Be Chaos!","site_detail_url":"https://comicvine.gamespot.com/thor-148-let-there-be-chaos/4000-9887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9876/","id":9876,"name":"Disaster","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-56-disaster/4000-9876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9888/","id":9888,"name":"The Mark of the Monster!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-40-the-mark-of-the-monster/4000-9888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9877/","id":9877,"name":"The Black Knight Lives Again","site_detail_url":"https://comicvine.gamespot.com/the-avengers-48-the-black-knight-lives-again/4000-9877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9794/","id":9794,"name":"The Robot-Eater From Metalas 5","site_detail_url":"https://comicvine.gamespot.com/metal-men-29-the-robot-eater-from-metalas-5/4000-9794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345234/","id":345234,"name":"Tintín en América","site_detail_url":"https://comicvine.gamespot.com/las-aventuras-de-tintin-2-tintin-en-america/4000-345234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9816/","id":9816,"name":"By Ben Betrayed!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-69-by-ben-betrayed/4000-9816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9824/","id":9824,"name":"The Wrath of Odin!","site_detail_url":"https://comicvine.gamespot.com/thor-147-the-wrath-of-odin/4000-9824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9732/","id":9732,"name":"What Swings, Fiddle Strings?","site_detail_url":"https://comicvine.gamespot.com/showcase-71-what-swings-fiddle-strings/4000-9732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9813/","id":9813,"name":"Doc Ock Wins!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-55-doc-ock-wins/4000-9813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9825/","id":9825,"name":"The Fateful Finale!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-39-the-fateful-finale/4000-9825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9815/","id":9815,"name":"Daredevil Dies First!","site_detail_url":"https://comicvine.gamespot.com/daredevil-35-daredevil-dies-first/4000-9815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9814/","id":9814,"name":"Magneto Walks The Earth","site_detail_url":"https://comicvine.gamespot.com/the-avengers-47-magneto-walks-the-earth/4000-9814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9754/","id":9754,"name":"His Mission: Destroy the Fantastic Four!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-68-his-mission-destroy-the-fantasti/4000-9754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9751/","id":9751,"name":"The Tentacles And The Trap!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-54-the-tentacles-and-the-tr/4000-9751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9752/","id":9752,"name":"The Agony and The Anthill","site_detail_url":"https://comicvine.gamespot.com/the-avengers-46-the-agony-and-the-anthill/4000-9752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9714/","id":9714,"name":"The Web And The Flame!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-4-the-web-and-the-fl/4000-9714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9715/","id":9715,"name":"Divide and Conquer!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-5-divide-and-conquer/4000-9715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9685/","id":9685,"name":"When Opens The Cocoon!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-67-when-opens-the-cocoon/4000-9685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9694/","id":9694,"name":"Abandoned On Earth!","site_detail_url":"https://comicvine.gamespot.com/thor-145-abandoned-on-earth/4000-9694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9682/","id":9682,"name":"Enter: Dr. Octopus","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-53-enter-dr-octopus/4000-9682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9683/","id":9683,"name":"Blitzkrieg In Central Park","site_detail_url":"https://comicvine.gamespot.com/the-avengers-45-blitzkrieg-in-central-park/4000-9683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110841/","id":110841,"name":"The Second Doom","site_detail_url":"https://comicvine.gamespot.com/strange-tales-161-the-second-doom/4000-110841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242260/","id":242260,"name":"Admit It... You Love Me","site_detail_url":"https://comicvine.gamespot.com/career-girl-romances-42-admit-it-you-love-me/4000-242260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9615/","id":9615,"name":"What Lurks Behind the Beehive?","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-66-what-lurks-behind-the-beehive/4000-9615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9614/","id":9614,"name":"Electro and The Emissaries of Evil","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-1-electro-and-the-emissaries-of-e/4000-9614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9624/","id":9624,"name":"This Battleground Earth!","site_detail_url":"https://comicvine.gamespot.com/thor-144-this-battleground-earth/4000-9624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9610/","id":9610,"name":"To Die A Hero!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-52-to-die-a-hero/4000-9610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9625/","id":9625,"name":"Mekano Lives!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-36-mekano-lives/4000-9625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9612/","id":9612,"name":"The Valiant Also Die","site_detail_url":"https://comicvine.gamespot.com/the-avengers-44-the-valiant-also-die/4000-9612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9611/","id":9611,"name":"The Monstrous Master Plan of the Mandarin","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-1-the-monstrous-master-plan-of/4000-9611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9529/","id":9529,"name":"The Startling Origin of the Metal Men","site_detail_url":"https://comicvine.gamespot.com/metal-men-27-the-startling-origin-of-the-metal-men/4000-9529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110842/","id":110842,"name":"Project: Blackout","site_detail_url":"https://comicvine.gamespot.com/strange-tales-160-project-blackout/4000-110842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9552/","id":9552,"name":"In The Clutches Of...The Kingpin!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-51-in-the-clutches-ofthe-ki/4000-9552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9554/","id":9554,"name":"From the Deadly Lips of Ronan: \"I Accuse!\"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-65-from-the-deadly-lips-of-ronan-i-/4000-9554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9534/","id":9534,"name":"Superman's Race with the Flash!","site_detail_url":"https://comicvine.gamespot.com/superman-199-superman-s-race-with-the-flash/4000-9534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9564/","id":9564,"name":"\"-- And Soon Shall Come: \"The Enchanters!\"","site_detail_url":"https://comicvine.gamespot.com/thor-143--and-soon-shall-come-the-enchanters/4000-9564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9560/","id":9560,"name":"The Valor and the Victory!","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-annual-3-the-valor-and-the-victory/4000-9560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9464/","id":9464,"name":"Poor Richard's Maniak!","site_detail_url":"https://comicvine.gamespot.com/showcase-69-poor-richards-maniak/4000-9464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9553/","id":9553,"name":"Color Him -- The Red Guardian","site_detail_url":"https://comicvine.gamespot.com/the-avengers-43-color-him-the-red-guardian/4000-9553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9483/","id":9483,"name":"Spider-Man No More!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-50-spider-man-no-more/4000-9483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9486/","id":9486,"name":"The Sentry Sinister!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-64-the-sentry-sinister/4000-9486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9491/","id":9491,"name":"The Monarch And The Monster; He Who Strikes The Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-93-the-monarch-and-the-monster-h/4000-9491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9480/","id":9480,"name":"Incredible Space Menace","site_detail_url":"https://comicvine.gamespot.com/mandrake-the-magician-6-incredible-space-menace/4000-9480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9485/","id":9485,"name":"If There Should Be A Thunder God!","site_detail_url":"https://comicvine.gamespot.com/daredevil-30-if-there-should-be-a-thunder-god/4000-9485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9492/","id":9492,"name":"The Scourge of the Super-Skrull!","site_detail_url":"https://comicvine.gamespot.com/thor-142-the-scourge-of-the-super-skrull/4000-9492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9426/","id":9426,"name":"Blastaar the Living Bomb-Burst!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-63-blastaar-the-living-bomb-burst/4000-9426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9432/","id":9432,"name":"It Walks Like A Man!; Turning Point!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-92-it-walks-like-a-man-turning-p/4000-9432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9431/","id":9431,"name":"The Golden Ghost / And Men Shall Call Him Traitor","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-90-the-golden-ghost-and-men-shal/4000-9431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9433/","id":9433,"name":"The Wrath of Replicus","site_detail_url":"https://comicvine.gamespot.com/thor-141-the-wrath-of-replicus/4000-9433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9423/","id":9423,"name":"From the Depths of Defeat!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-49-from-the-depths-of-defea/4000-9423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9425/","id":9425,"name":"Unmasked!","site_detail_url":"https://comicvine.gamespot.com/daredevil-29-unmasked/4000-9425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242258/","id":242258,"name":"Sorrow Song","site_detail_url":"https://comicvine.gamespot.com/career-girl-romances-40-sorrow-song/4000-242258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9269/","id":9269,"name":"Return of Chemo, the Chemical Menace","site_detail_url":"https://comicvine.gamespot.com/metal-men-25-return-of-chemo-the-chemical-menace/4000-9269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9363/","id":9363,"name":"The Growing Man","site_detail_url":"https://comicvine.gamespot.com/thor-140-the-growing-man/4000-9363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9353/","id":9353,"name":"The Wings of the Vulture!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-48-the-wings-of-the-vulture/4000-9353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111072/","id":111072,"name":"The Tribunal!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-156-the-tribunal/4000-111072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9364/","id":9364,"name":"Beware the Juggernaut, my Son!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-32-beware-the-juggernaut-my-son/4000-9364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9354/","id":9354,"name":"Suddenly... The Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/the-avengers-40-suddenly-the-sub-mariner/4000-9354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9370/","id":9370,"name":"","site_detail_url":"https://comicvine.gamespot.com/many-ghosts-of-dr-graves-1/4000-9370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9293/","id":9293,"name":"Where Stalks the Sandman?","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-61-where-stalks-the-sandman/4000-9293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9301/","id":9301,"name":"To Die Like a God","site_detail_url":"https://comicvine.gamespot.com/thor-139-to-die-like-a-god/4000-9301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9290/","id":9290,"name":"In the Hands of the Hunter","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-47-in-the-hands-of-the-hunt/4000-9290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113671/","id":113671,"name":"The Owl","site_detail_url":"https://comicvine.gamespot.com/owl-1-the-owl/4000-113671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9281/","id":9281,"name":"Solar vs. Solar / Part II: Only One Shall Survive","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom-19-solar-vs-solar-par/4000-9281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9291/","id":9291,"name":"The Torment... And The Triumph","site_detail_url":"https://comicvine.gamespot.com/the-avengers-39-the-torment-and-the-triumph/4000-9291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9302/","id":9302,"name":"We Must Destroy... the Cobalt Man!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-31-we-must-destroy-the-cobalt-man/4000-9302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9231/","id":9231,"name":"Crisis...At the Earth's Core!/ Wanted: Captain America","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-87-crisisat-the-earths-core-want/4000-9231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9233/","id":9233,"name":"The Flames of Battle!","site_detail_url":"https://comicvine.gamespot.com/thor-138-the-flames-of-battle/4000-9233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9223/","id":9223,"name":"The Sinister Shocker!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-46-the-sinister-shocker/4000-9223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9224/","id":9224,"name":"In Our Midst... An Immortal!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-38-in-our-midst-an-immortal/4000-9224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9226/","id":9226,"name":"The Peril and the Power!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-60-the-peril-and-the-power/4000-9226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9132/","id":9132,"name":"The Balloon Man Hangs High!","site_detail_url":"https://comicvine.gamespot.com/metal-men-24-the-balloon-man-hangs-high/4000-9132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9160/","id":9160,"name":"A Stranger Strikes From Space!; Boomerang And The Brute!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-88-a-stranger-strikes-from-space/4000-9160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9161/","id":9161,"name":"The Thunder God and the Troll!","site_detail_url":"https://comicvine.gamespot.com/thor-137-the-thunder-god-and-the-troll/4000-9161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9150/","id":9150,"name":"Spidey Smashes Out!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-45-spidey-smashes-out/4000-9150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9153/","id":9153,"name":"Doomsday!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-59-doomsday/4000-9153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9058/","id":9058,"name":"O.G.R.E. Strikes Again!","site_detail_url":"https://comicvine.gamespot.com/aquaman-31-ogre-strikes-again/4000-9058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9096/","id":9096,"name":"Moment Of Truth!; The Humanoid And The Hero!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-87-moment-of-truth-the-humanoid-/4000-9096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9087/","id":9087,"name":"Where Crawls the Lizard!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-44-where-crawls-the-lizard/4000-9087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9088/","id":9088,"name":"The Ultroids Attack","site_detail_url":"https://comicvine.gamespot.com/the-avengers-36-the-ultroids-attack/4000-9088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9098/","id":9098,"name":"The Wail of the Banshee","site_detail_url":"https://comicvine.gamespot.com/the-x-men-28-the-wail-of-the-banshee/4000-9098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9090/","id":9090,"name":"The Dismal Dregs of Defeat","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-58-the-dismal-dregs-of-defeat/4000-9090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8988/","id":8988,"name":"Rage of the Lizard","site_detail_url":"https://comicvine.gamespot.com/metal-men-23-rage-of-the-lizard/4000-8988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9089/","id":9089,"name":"The Mystery of the Midnight Stalker!","site_detail_url":"https://comicvine.gamespot.com/daredevil-24-the-mystery-of-the-midnight-stalker/4000-9089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9023/","id":9023,"name":"The Wrath Of Warlord Krang!; The Birth...Of The Hulk-Killer!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-86-the-wrath-of-warlord-krang-th/4000-9023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9014/","id":9014,"name":"Rhino on the Rampage!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-43-rhino-on-the-rampage/4000-9014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9016/","id":9016,"name":"DD Goes Wild!","site_detail_url":"https://comicvine.gamespot.com/daredevil-23-dd-goes-wild/4000-9016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9025/","id":9025,"name":"Re-enter: the Mimic!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-27-re-enter-the-mimic/4000-9025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9017/","id":9017,"name":"Enter Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-57-enter-doctor-doom/4000-9017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9015/","id":9015,"name":"The Light That Failed","site_detail_url":"https://comicvine.gamespot.com/the-avengers-35-the-light-that-failed/4000-9015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119261/","id":119261,"name":"An Inspirational Life Story","site_detail_url":"https://comicvine.gamespot.com/adlai-stevenson-1-an-inspirational-life-story/4000-119261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8949/","id":8949,"name":"--And One Shall Die; The Missile And The Monster!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-85-and-one-shall-die-the-missile/4000-8949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8940/","id":8940,"name":"The Birth of a Super-Hero!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-42-the-birth-of-a-super-her/4000-8940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8943/","id":8943,"name":"Klaw the Murderous Master of Sound","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-56-klaw-the-murderous-master-of-sou/4000-8943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8907/","id":8907,"name":"The Torch That Was","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-4-the-torch-that-was/4000-8907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8941/","id":8941,"name":"The Living Laser","site_detail_url":"https://comicvine.gamespot.com/the-avengers-34-the-living-laser/4000-8941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8905/","id":8905,"name":"To Become An Avenger; Turning Point; Unmasked by Dr. Octopus","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-3-to-become-an-aveng/4000-8905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8942/","id":8942,"name":"The Tri-Man Lives!","site_detail_url":"https://comicvine.gamespot.com/daredevil-22-the-tri-man-lives/4000-8942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8948/","id":8948,"name":"Victory / Enter the Tumbler","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-83-victory-enter-the-tumbler/4000-8948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8883/","id":8883,"name":"Like A Beast At Bay!; Rampage In The City!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-84-like-a-beast-at-bay-rampage-i/4000-8883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8885/","id":8885,"name":"The Power and the Pendant!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-25-the-power-and-the-pendant/4000-8885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8873/","id":8873,"name":"The Horns of the Rhino!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-41-the-horns-of-the-rhino/4000-8873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8874/","id":8874,"name":"To Smash A Serpent","site_detail_url":"https://comicvine.gamespot.com/the-avengers-33-to-smash-a-serpent/4000-8874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214853/","id":214853,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-king-size-special-1/4000-214853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8817/","id":8817,"name":"Rigel: Where Gods May Fear to Tread","site_detail_url":"https://comicvine.gamespot.com/thor-132-rigel-where-gods-may-fear-to-tread/4000-8817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8816/","id":8816,"name":"The Sub-Mariner Strikes!; Less Than Monster, More Than Man!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-83-the-sub-mariner-strikes-less-/4000-8816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8807/","id":8807,"name":"Spidey Saves the Day!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-40-spidey-saves-the-day/4000-8807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8808/","id":8808,"name":"The Sign Of The Serpent","site_detail_url":"https://comicvine.gamespot.com/the-avengers-32-the-sign-of-the-serpent/4000-8808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8710/","id":8710,"name":"The Metal Men Vs. the Plastic Perils","site_detail_url":"https://comicvine.gamespot.com/metal-men-21-the-metal-men-vs-the-plastic-perils/4000-8710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8739/","id":8739,"name":"They Strike From Space","site_detail_url":"https://comicvine.gamespot.com/thor-131-they-strike-from-space/4000-8739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8729/","id":8729,"name":"How Green Was My Goblin!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-39-how-green-was-my-goblin/4000-8729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8731/","id":8731,"name":"Alone Against the Underworld!","site_detail_url":"https://comicvine.gamespot.com/daredevil-19-alone-against-the-underworld/4000-8731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8663/","id":8663,"name":"Just a Guy Named Joe!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-38-just-a-guy-named-joe/4000-8663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8674/","id":8674,"name":"Divided We Fall!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-22-divided-we-fall/4000-8674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8664/","id":8664,"name":"Frenzy in a Far-Off Land!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-30-frenzy-in-a-far-off-land/4000-8664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8666/","id":8666,"name":"Introducing the Sensational Black Panther","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-52-introducing-the-sensational-blac/4000-8666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8589/","id":8589,"name":"Birthday Cake For a Cannibal Robot","site_detail_url":"https://comicvine.gamespot.com/metal-men-20-birthday-cake-for-a-cannibal-robot/4000-8589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8620/","id":8620,"name":"The Verdict of Zeus!","site_detail_url":"https://comicvine.gamespot.com/thor-129-the-verdict-of-zeus/4000-8620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8610/","id":8610,"name":"Once Upon A Time...There Was A Robot!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-37-once-upon-a-timethere-wa/4000-8610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8604/","id":8604,"name":"The War of the Suns","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom-16-the-war-of-the-sun/4000-8604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111105/","id":111105,"name":"Lo! The Eggs Shall Hatch!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-145-lo-the-eggs-shall-hatch/4000-111105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8611/","id":8611,"name":"This Power Unleashed!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-29-this-power-unleashed/4000-8611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8613/","id":8613,"name":"\"This Man...This Monster!\"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-51-this-manthis-monster/4000-8613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8551/","id":8551,"name":"When Rises The Behemoth; The Titan And The Torment!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-79-when-rises-the-behemoth-the-t/4000-8551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8463/","id":8463,"name":"The Flash and the Doom Patrol: \"Alias Negative Man\"","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-65-the-flash-and-the-doom-p/4000-8463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8543/","id":8543,"name":"When Falls the Meteor!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-36-when-falls-the-meteor/4000-8543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8553/","id":8553,"name":"I, Lucifer...","site_detail_url":"https://comicvine.gamespot.com/the-x-men-20-i-lucifer/4000-8553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8546/","id":8546,"name":"The Startling Saga of the Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-50-the-startling-saga-of-the-silver/4000-8546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8544/","id":8544,"name":"Among Us Walks... a Goliath","site_detail_url":"https://comicvine.gamespot.com/the-avengers-28-among-us-walks-a-goliath/4000-8544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8497/","id":8497,"name":"The Hammer and the Holocaust!; The Meaning of... Ragnarok!","site_detail_url":"https://comicvine.gamespot.com/thor-127-the-hammer-and-the-holocaust-the-meaning-/4000-8497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8496/","id":8496,"name":"The Prince And The Puppet!; The Hulk Must Die!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-78-the-prince-and-the-puppet-the/4000-8496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8487/","id":8487,"name":"The Molten Man Regrets..!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-35-the-molten-man-regrets/4000-8487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8498/","id":8498,"name":"Lo! Now Shall Appear the Mimic!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-19-lo-now-shall-appear-the-mimic/4000-8498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8490/","id":8490,"name":"If This Be Doomsday!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-49-if-this-be-doomsday/4000-8490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8488/","id":8488,"name":"Four Against the Floodtide","site_detail_url":"https://comicvine.gamespot.com/the-avengers-27-four-against-the-floodtide/4000-8488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8425/","id":8425,"name":"The Thrill Of The Hunt!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-34-the-thrill-of-the-hunt/4000-8425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8434/","id":8434,"name":"Whom the Gods Would Destroy!","site_detail_url":"https://comicvine.gamespot.com/thor-126-whom-the-gods-would-destroy/4000-8434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8426/","id":8426,"name":"The Voice of The Wasp","site_detail_url":"https://comicvine.gamespot.com/the-avengers-26-the-voice-of-the-wasp/4000-8426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8346/","id":8346,"name":"The Dinosaur Who Stayed For Dinner","site_detail_url":"https://comicvine.gamespot.com/metal-men-18-the-dinosaur-who-stayed-for-dinner/4000-8346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8428/","id":8428,"name":"The Coming of Galactus!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-48-the-coming-of-galactus/4000-8428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8291/","id":8291,"name":"War That Shook the Universe!","site_detail_url":"https://comicvine.gamespot.com/showcase-60-war-that-shook-the-universe/4000-8291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8364/","id":8364,"name":"The Final Chapter","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-33-the-final-chapter/4000-8364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8367/","id":8367,"name":"Beware The Hidden Land!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-47-beware-the-hidden-land/4000-8367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8365/","id":8365,"name":"Enter...Dr. Doom!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-25-enterdr-doom/4000-8365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8369/","id":8369,"name":"\"When Meet The Immortals!\"","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-125-when-meet-the-immortals/4000-8369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8366/","id":8366,"name":"The Secret of Ka-Zar's Origin!","site_detail_url":"https://comicvine.gamespot.com/daredevil-13-the-secret-of-ka-zars-origin/4000-8366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8210/","id":8210,"name":"I Married a Robot","site_detail_url":"https://comicvine.gamespot.com/metal-men-17-i-married-a-robot/4000-8210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438536/","id":438536,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-nembo-kid-77/4000-438536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8305/","id":8305,"name":"Man on a Rampage!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-32-man-on-a-rampage/4000-8305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8315/","id":8315,"name":"The Supreme Sacrifice!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-16-the-supreme-sacrifice/4000-8315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8308/","id":8308,"name":"Those Who Would Destroy Us","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-46-those-who-would-destroy-us/4000-8308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8309/","id":8309,"name":"\"The Grandeur And The Glory!\"","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-124-the-grandeur-and-the-glor/4000-8309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8228/","id":8228,"name":"If This Be My Destiny","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-31-if-this-be-my-destiny/4000-8228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8232/","id":8232,"name":"While A Universe Trembles!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-123-while-a-universe-trembles/4000-8232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8224/","id":8224,"name":"Doomsday Minus One Minute /","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom-15-doomsday-minus-one/4000-8224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8231/","id":8231,"name":"Among Us Hide The Inhumans!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-45-among-us-hide-the-inhumans/4000-8231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8229/","id":8229,"name":"Once an Avenger","site_detail_url":"https://comicvine.gamespot.com/the-avengers-23-once-an-avenger/4000-8229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8230/","id":8230,"name":"A Time To Unmask!","site_detail_url":"https://comicvine.gamespot.com/daredevil-11-a-time-to-unmask/4000-8230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8139/","id":8139,"name":"The super-Hero who betrayed the world!","site_detail_url":"https://comicvine.gamespot.com/the-flash-156-the-super-hero-who-betrayed-the-worl/4000-8139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8161/","id":8161,"name":"The Claws of the Cat!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-30-the-claws-of-the-cat/4000-8161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8164/","id":8164,"name":"\"Where Mortals Fear To Tread!\"","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-122-where-mortals-fear-to-tre/4000-8164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8170/","id":8170,"name":"Among Us Stalk... the Sentinels!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-14-among-us-stalk-the-sentinels/4000-8170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8163/","id":8163,"name":"The Gentleman's Name is...Gorgon!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-44-the-gentlemans-name-isgorgon/4000-8163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8162/","id":8162,"name":"The Road Back","site_detail_url":"https://comicvine.gamespot.com/the-avengers-22-the-road-back/4000-8162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8100/","id":8100,"name":"Never Step on a Scorpion!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-29-never-step-on-a-scorpion/4000-8100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7504/","id":7504,"name":"Bedlam At The Baxter Building!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-3-bedlam-at-the-baxter-build/4000-7504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8104/","id":8104,"name":"The Power! The Passion! The Pride!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-121-the-power-the-passion-the/4000-8104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7502/","id":7502,"name":"The Wondrous Worlds of Dr. Strange!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-2-the-wondrous-world/4000-7502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8103/","id":8103,"name":"Lo, There Shall Be an Ending!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-43-lo-there-shall-be-an-ending/4000-8103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8101/","id":8101,"name":"The Bitter Taste of Defeat","site_detail_url":"https://comicvine.gamespot.com/the-avengers-21-the-bitter-taste-of-defeat/4000-8101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8102/","id":8102,"name":"While the City Sleeps!","site_detail_url":"https://comicvine.gamespot.com/daredevil-10-while-the-city-sleeps/4000-8102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8084/","id":8084,"name":"Clark Kent's Great Superman Hunt! / The Girl Who Was Mightier Than Superman!","site_detail_url":"https://comicvine.gamespot.com/superman-180-clark-kent-s-great-superman-hunt-the-/4000-8084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8028/","id":8028,"name":"The Menace of the Molten Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-28-the-menace-of-the-molten/4000-8028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8031/","id":8031,"name":"\"With My Hammer In Hand...!\"","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-120-with-my-hammer-in-hand/4000-8031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341953/","id":341953,"name":"","site_detail_url":"https://comicvine.gamespot.com/tv-century-21-32/4000-341953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7958/","id":7958,"name":"Bring Back My Goblin to Me!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-27-bring-back-my-goblin-to-/4000-7958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7961/","id":7961,"name":"The Betrayal Of Ben Grimm!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-41-the-betrayal-of-ben-grimm/4000-7961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7960/","id":7960,"name":"That He May See!","site_detail_url":"https://comicvine.gamespot.com/daredevil-9-that-he-may-see/4000-7960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111067/","id":111067,"name":"The Challenge Of...The Watcher!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-134-the-challenge-ofthe-watcher/4000-111067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109209/","id":109209,"name":"I Married A Monster","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-155-i-married-a-monster/4000-109209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7899/","id":7899,"name":"Oh, Wasp, Where Is Thy Sting? / Trapped in the Lair of the Leader!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-69-oh-wasp-where-is-thy-sting-tr/4000-7899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107547/","id":107547,"name":"The Man In The Crime-Master's Mask","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-26-the-man-in-the-crime-mas/4000-107547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7893/","id":7893,"name":"The Battle of the Baxter Building!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-40-the-battle-of-the-baxter-buildin/4000-7893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243201/","id":243201,"name":"Tragic Love; Bride of the Year; Painful Lesson; Find That Girl; Model of Misbehavior","site_detail_url":"https://comicvine.gamespot.com/just-married-42-tragic-love-bride-of-the-year-pain/4000-243201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7834/","id":7834,"name":"Captured By J. Jonah Jameson","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-25-captured-by-j-jonah-jame/4000-7834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7837/","id":7837,"name":"A Blind Man Shall Lead Them","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-39-a-blind-man-shall-lead-them/4000-7837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7838/","id":7838,"name":"Into The Blaze Of Battle!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-117-into-the-blaze-of-battle/4000-7838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7835/","id":7835,"name":"Four Against the Minotaur","site_detail_url":"https://comicvine.gamespot.com/the-avengers-17-four-against-the-minotaur/4000-7835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7781/","id":7781,"name":"The Mystery Of The Hidden Man And His Rays Of Doom! / Where Strides The Behemoth","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-67-the-mystery-of-the-hidden-man/4000-7781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7773/","id":7773,"name":"Spider-Man Goes Mad!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-24-spider-man-goes-mad/4000-7773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7774/","id":7774,"name":"The Old Order Changeth","site_detail_url":"https://comicvine.gamespot.com/the-avengers-16-the-old-order-changeth/4000-7774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7775/","id":7775,"name":"Defeated by the Frightful Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-38-defeated-by-the-frightful-four/4000-7775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7776/","id":7776,"name":"The Trial Of The Gods","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-116-the-trial-of-the-gods/4000-7776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7732/","id":7732,"name":"The Menace Of Madam Macabre! / The Power Of Dr. Banner!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-66-the-menace-of-madam-macabre-t/4000-7732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7723/","id":7723,"name":"The Goblin and the Gangsters","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-23-the-goblin-and-the-gangs/4000-7723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7724/","id":7724,"name":"Now, By My Hand, Shall Die a Villain","site_detail_url":"https://comicvine.gamespot.com/the-avengers-15-now-by-my-hand-shall-die-a-villain/4000-7724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7725/","id":7725,"name":"In Mortal Combat With... The Sub-Mariner!","site_detail_url":"https://comicvine.gamespot.com/daredevil-7-in-mortal-combat-with-the-sub-mariner/4000-7725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113849/","id":113849,"name":null,"site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-annual-1/4000-113849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7672/","id":7672,"name":"Somewhere Lurks The Phantom!; The Origin of Captain America!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-63-somewhere-lurks-the-phantom-t/4000-7672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7673/","id":7673,"name":"The New Giant-Man / On The Rampage Against The Reds!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-65-the-new-giant-man-on-the-ramp/4000-7673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111042/","id":111042,"name":"Meet The Beatles!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-130-meet-the-beatles/4000-111042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7665/","id":7665,"name":"Preeeeeesenting...the Clown, and His Masters of Menace!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-22-preeeeeesentingthe-clown/4000-7665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7667/","id":7667,"name":"The Frightful Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-36-the-frightful-four/4000-7667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7666/","id":7666,"name":"Even Avengers Can Die","site_detail_url":"https://comicvine.gamespot.com/the-avengers-14-even-avengers-can-die/4000-7666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7668/","id":7668,"name":"The Stronger I Am, the Sooner I Die!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-114-the-stronger-i-am-the-soo/4000-7668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7607/","id":7607,"name":"Where Flies the Beetle","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-21-where-flies-the-beetle/4000-7607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7616/","id":7616,"name":"When Attuma Strikes!; The Horde of Humanoids!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-64-when-attuma-strikes-the-horde/4000-7616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111041/","id":111041,"name":"The Terrible Trio!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-129-the-terrible-trio/4000-111041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7609/","id":7609,"name":"Trapped by the Fellowship of Fear!","site_detail_url":"https://comicvine.gamespot.com/daredevil-6-trapped-by-the-fellowship-of-fear/4000-7609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7611/","id":7611,"name":"A World Gone Mad!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-113-a-world-gone-mad/4000-7611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123906/","id":123906,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-collectors-item-classics-1/4000-123906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7608/","id":7608,"name":"The Castle of Count Nefaria","site_detail_url":"https://comicvine.gamespot.com/the-avengers-13-the-castle-of-count-nefaria/4000-7608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7558/","id":7558,"name":"The Gangsters And The Giant/A Titan Rides the Train","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-63-the-gangsters-and-the-gianta-/4000-7558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111040/","id":111040,"name":"Quicksilver And The Scarlet Witch; The Demon's Disciple!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-128-quicksilver-and-the-scarlet-witc/4000-111040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7550/","id":7550,"name":"The Coming of the Scorpion! (or \"Spidey Battles Scorpey!\")","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-20-the-coming-of-the-scorpi/4000-7550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7552/","id":7552,"name":"A House Divided","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-34-a-house-divided/4000-7552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7551/","id":7551,"name":"This Hostage Earth","site_detail_url":"https://comicvine.gamespot.com/the-avengers-12-this-hostage-earth/4000-7551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7557/","id":7557,"name":"The Death Of Tony Stark!; The Strength of the Sumo!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-61-the-death-of-tony-stark-the-s/4000-7557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7490/","id":7490,"name":"Giant-Man Versus The Wonderful Wasp!/Enter...the Chameleon!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-62-giant-man-versus-the-wonderfu/4000-7490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-586243/","id":586243,"name":"","site_detail_url":"https://comicvine.gamespot.com/elsie-at-the-new-york-worlds-fair-1/4000-586243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7481/","id":7481,"name":"Spidey Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-19-spidey-strikes-back/4000-7481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7482/","id":7482,"name":"The Mighty Avengers Meet Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-avengers-11-the-mighty-avengers-meet-spider-ma/4000-7482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7483/","id":7483,"name":"The Mysterious Masked Matador!","site_detail_url":"https://comicvine.gamespot.com/daredevil-5-the-mysterious-masked-matador/4000-7483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7484/","id":7484,"name":"Side By Side with the Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-33-side-by-side-with-the-sub-marine/4000-7484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7489/","id":7489,"name":"Suspected Of Murder!; The Army of Assassins Strikes!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-60-suspected-of-murder-the-army-/4000-7489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7425/","id":7425,"name":"Every Hand Against Him!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-110-every-hand-against-him/4000-7425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7430/","id":7430,"name":"Now Walks The Android!/Captured at Last!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-61-now-walks-the-androidcaptured/4000-7430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110997/","id":110997,"name":"Pawns Of The Deadly Duo!; The Domain Of The Dread Dormammu!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-126-pawns-of-the-deadly-duo-the-doma/4000-110997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120153/","id":120153,"name":"How Lois Fell in Love with Superman!; Superman's Home-Town Sweetheart!; When Lois and Lana were Brides!","site_detail_url":"https://comicvine.gamespot.com/supermans-girl-friend-lois-lane-53-how-lois-fell-i/4000-120153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7422/","id":7422,"name":"The End of Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-18-the-end-of-spider-man/4000-7422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7424/","id":7424,"name":"Death of a Hero!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-32-death-of-a-hero/4000-7424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7423/","id":7423,"name":"The Avengers Break Up","site_detail_url":"https://comicvine.gamespot.com/the-avengers-10-the-avengers-break-up/4000-7423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7429/","id":7429,"name":"The Black Knight; Captain America","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-59-the-black-knight-captain-amer/4000-7429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95891/","id":95891,"name":"Symbol Simon!/Fair Enough/Midway Madness/Guided Guys","site_detail_url":"https://comicvine.gamespot.com/life-with-archie-31-symbol-simonfair-enoughmidway-/4000-95891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7431/","id":7431,"name":"Unus the Untouchable!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-8-unus-the-untouchable/4000-7431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7378/","id":7378,"name":"The Beasts Of Berlin!/The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-60-the-beasts-of-berlinthe-incre/4000-7378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110996/","id":110996,"name":"The Sub-Mariner Must Be Stopped!; Mordo Must Not Catch Me!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-125-the-sub-mariner-must-be-stopped-/4000-110996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7370/","id":7370,"name":"The Return of the Green Goblin!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-17-the-return-of-the-green-/4000-7370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7374/","id":7374,"name":"When Magneto Strikes!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-109-when-magneto-strikes/4000-7374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7371/","id":7371,"name":"The Coming of the Wonder Man","site_detail_url":"https://comicvine.gamespot.com/the-avengers-9-the-coming-of-the-wonder-man/4000-7371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7373/","id":7373,"name":"The Mad Menace of the Macabre Mole-Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-31-the-mad-menace-of-the-macabre-mo/4000-7373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7372/","id":7372,"name":"Killgrave, The Unbelievable Purple Man","site_detail_url":"https://comicvine.gamespot.com/daredevil-4-killgrave-the-unbelievable-purple-man/4000-7372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7377/","id":7377,"name":"In Mortal Combat with Captain America","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-58-in-mortal-combat-with-captain/4000-7377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110995/","id":110995,"name":"Paste-Pot Pete; The Lady From Nowhere!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-124-paste-pot-pete-the-lady-from-now/4000-110995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6838/","id":6838,"name":"The Fantastic Origin of Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-2-the-fantastic-origin-of-do/4000-6838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7309/","id":7309,"name":"Enter: The Hulk!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-59-enter-the-hulk/4000-7309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7301/","id":7301,"name":"Duel with Daredevil","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-16-duel-with-daredevil/4000-7301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7310/","id":7310,"name":"The Return of the Blob","site_detail_url":"https://comicvine.gamespot.com/the-x-men-7-the-return-of-the-blob/4000-7310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7304/","id":7304,"name":"At The Mercy Of Loki, Prince Of Evil!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-108-at-the-mercy-of-loki-prin/4000-7304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7302/","id":7302,"name":"Kang, The Conqueror!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-8-kang-the-conqueror/4000-7302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7308/","id":7308,"name":"Hawkeye, The Marksman","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-57-hawkeye-the-marksman/4000-7308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6837/","id":6837,"name":"The Sinister Six!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-1-the-sinister-six/4000-6837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110994/","id":110994,"name":"The Birth Of The Beetle!; The Challenge of Loki!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-123-the-birth-of-the-beetle-the-chal/4000-110994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7261/","id":7261,"name":"The Coming Of...Colossus","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-58-the-coming-ofcolossus/4000-7261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7182/","id":7182,"name":"Hunters of the Whispering Gallery! / Thunder Over Thailand!","site_detail_url":"https://comicvine.gamespot.com/showcase-51-hunters-of-the-whispering-gallery-thun/4000-7182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120712/","id":120712,"name":"The Juvenile Delinquents from Space!; The Menace of Supergirl's Mother!","site_detail_url":"https://comicvine.gamespot.com/action-comics-315-the-juvenile-delinquents-from-sp/4000-120712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7253/","id":7253,"name":"Kraven The Hunter!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-15-kraven-the-hunter/4000-7253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7256/","id":7256,"name":"It Started On Yancy Street","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-29-it-started-on-yancy-street/4000-7256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114777/","id":114777,"name":"The Eight Impossible Missions!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-323-the-eight-impossible-missions/4000-114777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7254/","id":7254,"name":"Their Darkest Hour","site_detail_url":"https://comicvine.gamespot.com/the-avengers-7-their-darkest-hour/4000-7254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7255/","id":7255,"name":"The Owl, Ominous Overlord of Crime!","site_detail_url":"https://comicvine.gamespot.com/daredevil-3-the-owl-ominous-overlord-of-crime/4000-7255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7257/","id":7257,"name":"When The Grey Gargoyle Strike!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-107-when-the-grey-gargoyle-st/4000-7257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7260/","id":7260,"name":"The Uncanny Unicorn","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-56-the-uncanny-unicorn/4000-7260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7198/","id":7198,"name":"The Grotesque Adventure of the Green Goblin","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-14-the-grotesque-adventure-/4000-7198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110993/","id":110993,"name":"3 Against The Torch!; The World Beyond","site_detail_url":"https://comicvine.gamespot.com/strange-tales-122-3-against-the-torch-the-world-be/4000-110993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7206/","id":7206,"name":"On The Trail Of The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-57-on-the-trail-of-the-amazing-s/4000-7206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7200/","id":7200,"name":"We Have To Fight The X-Men!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-28-we-have-to-fight-the-x-men/4000-7200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7199/","id":7199,"name":"Masters of Evil","site_detail_url":"https://comicvine.gamespot.com/the-avengers-6-masters-of-evil/4000-7199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74274/","id":74274,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-88/4000-74274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7201/","id":7201,"name":"The Thunder God Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-106-the-thunder-god-strikes-b/4000-7201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7205/","id":7205,"name":"No One Escapes the Mandarin","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-55-no-one-escapes-the-mandarin/4000-7205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110950/","id":110950,"name":"Prisoner Of The Plantman; Witchcraft In The Wax Museum","site_detail_url":"https://comicvine.gamespot.com/strange-tales-121-prisoner-of-the-plantman-witchcr/4000-110950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7163/","id":7163,"name":"The Coming Of The Magician","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-56-the-coming-of-the-magician/4000-7163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7092/","id":7092,"name":"Spy Train! / Hangman's House!","site_detail_url":"https://comicvine.gamespot.com/showcase-50-spy-train-hangmans-house/4000-7092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7156/","id":7156,"name":"The Menace of Mysterio","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-13-the-menace-of-mysterio/4000-7156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7125/","id":7125,"name":"","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-1/4000-7125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7158/","id":7158,"name":"The Search for the Sub Mariner!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-27-the-search-for-the-sub-mariner/4000-7158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7159/","id":7159,"name":"The Cobra And Mr. Hyde!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-105-the-cobra-and-mr-hyde/4000-7159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7157/","id":7157,"name":"The Evil Menace of Electro!","site_detail_url":"https://comicvine.gamespot.com/daredevil-2-the-evil-menace-of-electro/4000-7157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7162/","id":7162,"name":"The Mandarin's Revenge","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-54-the-mandarins-revenge/4000-7162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110949/","id":110949,"name":"The Torch Meets Iceman!; The House Of Shadows!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-120-the-torch-meets-iceman-the-house/4000-110949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7113/","id":7113,"name":"On The Trail Of The Human Top","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-55-on-the-trail-of-the-human-top/4000-7113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7105/","id":7105,"name":"Unmasked by Dr. Octopus!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-12-unmasked-by-dr-octopus/4000-7105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7108/","id":7108,"name":"Giants Walk the Earth!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-104-giants-walk-the-earth/4000-7108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7107/","id":7107,"name":"The Avengers Take Over!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-26-the-avengers-take-over/4000-7107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7106/","id":7106,"name":"The Invasion of the Lava Men!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-5-the-invasion-of-the-lava-men/4000-7106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7112/","id":7112,"name":"The Black Widow Strikes Again!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-53-the-black-widow-strikes-again/4000-7112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110948/","id":110948,"name":"The Torch Goes Wild!; Beyond The Purple Veil","site_detail_url":"https://comicvine.gamespot.com/strange-tales-119-the-torch-goes-wild-beyond-the-p/4000-110948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7073/","id":7073,"name":"No Place To Hide","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-54-no-place-to-hide/4000-7073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7066/","id":7066,"name":"Turning Point","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-11-turning-point/4000-7066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7068/","id":7068,"name":"The Hulk Vs Thing!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-25-the-hulk-vs-thing/4000-7068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7067/","id":7067,"name":"The Origin of Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil-1-the-origin-of-daredevil/4000-7067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7069/","id":7069,"name":"The Enchantress And The Executioner!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-103-the-enchantress-and-the-e/4000-7069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7072/","id":7072,"name":"The Crimson Dynamo Strikes Again!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-52-the-crimson-dynamo-strikes-ag/4000-7072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110883/","id":110883,"name":"The Man Who Became The Torch!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-118-the-man-who-became-the-torch/4000-110883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7025/","id":7025,"name":"Captain America Joins the Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers-4-captain-america-joins-the-avengers/4000-7025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7001/","id":7001,"name":"The Trail of the Terrible Titan, A Medal For 'Go-Buggy 3'!","site_detail_url":"https://comicvine.gamespot.com/doom-patrol-86-the-trail-of-the-terrible-titan-a-m/4000-7001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7031/","id":7031,"name":"Trapped By The Porcupine","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-53-trapped-by-the-porcupine/4000-7031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7024/","id":7024,"name":"The Enforcers!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-10-the-enforcers/4000-7024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7002/","id":7002,"name":"Trail of the False Green Lanterns!","site_detail_url":"https://comicvine.gamespot.com/the-flash-143-trail-of-the-false-green-lanterns/4000-7002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7026/","id":7026,"name":"The Infant Terrible","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-24-the-infant-terrible/4000-7026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7027/","id":7027,"name":"Slave Of Zarrko, The Tomorrow Man!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-102-slave-of-zarrko-the-tomor/4000-7027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7030/","id":7030,"name":"The Sinister Scarecrow","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-51-the-sinister-scarecrow/4000-7030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110874/","id":110874,"name":"The Return Of The Eel!; The Terrible Traps Of BARON MORDO!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-117-the-return-of-the-eel-the-terrib/4000-110874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6991/","id":6991,"name":"The Black Knight Strikes","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-52-the-black-knight-strikes/4000-6991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6985/","id":6985,"name":"The Man Called Electro","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-9-the-man-called-electro/4000-6985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6986/","id":6986,"name":"The Master Plan Of Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-23-the-master-plan-of-doctor-doom/4000-6986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6987/","id":6987,"name":"The Return Of Zarrko, The Tomorrow Man!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-101-the-return-of-zarrko-the-/4000-6987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110873/","id":110873,"name":"In The Clutches Of The Puppet Master!; Return To The Nightmare World!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-116-in-the-clutches-of-the-puppet-ma/4000-110873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6938/","id":6938,"name":"The Avengers Meet Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/the-avengers-3-the-avengers-meet-sub-mariner/4000-6938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6945/","id":6945,"name":"Showdown With The Human Top!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-51-showdown-with-the-human-top/4000-6945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6937/","id":6937,"name":"The Terrible Threat Of The Living Brain; Spider-Man Tackles The Torch","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-8-the-terrible-threat-of-th/4000-6937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6944/","id":6944,"name":"The New Iron Man Meets The Angel!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-49-the-new-iron-man-meets-the-an/4000-6944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6939/","id":6939,"name":"The Return of the Mole Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-22-the-return-of-the-mole-man/4000-6939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6940/","id":6940,"name":"The Master Plan Of Mr. Hyde!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-100-the-master-plan-of-mr-hyd/4000-6940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119574/","id":119574,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-1/4000-119574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6848/","id":6848,"name":"Beware of ... The Hooded Menace","site_detail_url":"https://comicvine.gamespot.com/daring-adventures-15-beware-of-the-hooded-menace/4000-6848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110872/","id":110872,"name":"The Sandman Strikes!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-115-the-sandman-strikes/4000-110872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6826/","id":6826,"name":"The Hate Monger","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-21-the-hate-monger/4000-6826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105844/","id":105844,"name":"The Return Of The Vulture","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-7-the-return-of-the-vulture/4000-105844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6827/","id":6827,"name":"The Mysterious Mister Hyde!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-99-the-mysterious-mister-hyde/4000-6827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110871/","id":110871,"name":"The Human Torch Meets... Captain America; The Return Of The Omnipotent Baron Mordo!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-114-the-human-torch-meets-captain-am/4000-110871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6778/","id":6778,"name":"Face-To-Face With The Lizard","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-6-face-to-face-with-the-liz/4000-6778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6780/","id":6780,"name":"The Mysterious Molecule Man!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-20-the-mysterious-molecule-man/4000-6780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6781/","id":6781,"name":"Challenged By The Human Cobra!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-98-challenged-by-the-human-co/4000-6781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6779/","id":6779,"name":"The Avengers Battle the Space Phantom","site_detail_url":"https://comicvine.gamespot.com/the-avengers-2-the-avengers-battle-the-space-phant/4000-6779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6785/","id":6785,"name":"Iron Man Battles The Mysterious Melter!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-47-iron-man-battles-the-mysterio/4000-6785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6240/","id":6240,"name":"On the Trail of the Amazing Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-annual-2-on-the-trail-of-the-amazing/4000-6240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6740/","id":6740,"name":"Ant-Man And The Wasp Defy The Porcupine!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-48-ant-man-and-the-wasp-defy-the/4000-6740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6734/","id":6734,"name":"Marked For Destruction By Dr. Doom","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-5-marked-for-destruction-by/4000-6734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6735/","id":6735,"name":"Prisoners of the Pharoah!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-19-prisoners-of-the-pharoah/4000-6735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6736/","id":6736,"name":"The Lava Man","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-97-the-lava-man/4000-6736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6739/","id":6739,"name":"The Crimson Dynamo","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-46-the-crimson-dynamo/4000-6739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6666/","id":6666,"name":"Three Against Earth","site_detail_url":"https://comicvine.gamespot.com/my-greatest-adventure-82-three-against-earth/4000-6666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6685/","id":6685,"name":"The Amazing Spider-Man #4 Nothing Can Stop The Sandman","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-4-the-amazing-spider-man-4-/4000-6685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6687/","id":6687,"name":"A Skrull Walks Among Us!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-18-a-skrull-walks-among-us/4000-6687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6681/","id":6681,"name":"The Crystallized Killers / The New Man of the Atom","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom-5-the-crystallized-ki/4000-6681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6688/","id":6688,"name":"Mad Merlin!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-96-mad-merlin/4000-6688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110869/","id":110869,"name":"The Living Bomb!; The Man Who Dared!; I Saw The Impossible World!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-112-the-living-bomb-the-man-who-dare/4000-110869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6692/","id":6692,"name":"The Icy Fingers of Jack Frost!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-45-the-icy-fingers-of-jack-frost/4000-6692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6686/","id":6686,"name":"The Coming of the Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers-1-the-coming-of-the-avengers/4000-6686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110808/","id":110808,"name":"Fighting To The Death With The Asbestos Man! / Beware - - The Machine!!! / Face To Face With The Magic Of Baron Mordo!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-111-fighting-to-the-death-with-the-a/4000-110808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6643/","id":6643,"name":"Defeated By Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-17-defeated-by-doctor-doom/4000-6643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110835/","id":110835,"name":"","site_detail_url":"https://comicvine.gamespot.com/strange-tales-110/4000-110835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6595/","id":6595,"name":"Spider-Man Versus Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-3-spider-man-versus-doctor-/4000-6595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6598/","id":6598,"name":"Thor And Loki Attack The Human Race!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-94-thor-and-loki-attack-the-h/4000-6598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6596/","id":6596,"name":"The Micro-World of Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-16-the-micro-world-of-doctor-doom/4000-6596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6556/","id":6556,"name":"The Creature From Kosmos!!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-44-the-creature-from-kosmos/4000-6556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6551/","id":6551,"name":"The Mad Thinker and His Awesome Android!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-15-the-mad-thinker-and-his-awesome-/4000-6551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6552/","id":6552,"name":"The Mysterious Radio-Active Man!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-93-the-mysterious-radio-activ/4000-6552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6239/","id":6239,"name":"The Undersea Legions of Sub-Mariner!; The Fabulous Fantastic Four Meet Spider-Man!; The Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-1-the-undersea-legions-of-su/4000-6239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110834/","id":110834,"name":"The Sorcerer And Pandora's Box","site_detail_url":"https://comicvine.gamespot.com/strange-tales-109-the-sorcerer-and-pandoras-box/4000-110834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6503/","id":6503,"name":"Duel To The Death With The Vulture; The Uncanny Threat Of The Terrible Tinkerer","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-2-duel-to-the-death-with-th/4000-6503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6504/","id":6504,"name":"The Merciless Puppet-Master!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-14-the-merciless-puppet-master/4000-6504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6506/","id":6506,"name":"The Day Loki Stole Thor's Magic Hammer","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-92-the-day-loki-stole-thors-m/4000-6506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6443/","id":6443,"name":"Rain of the Missile Men!","site_detail_url":"https://comicvine.gamespot.com/metal-men-1-rain-of-the-missile-men/4000-6443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6463/","id":6463,"name":"The Red Ghost and his Indescribable Super-Apes!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-13-the-red-ghost-and-his-indescriba/4000-6463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6464/","id":6464,"name":"Sandu, Master Of The Supernatural","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-91-sandu-master-of-the-supern/4000-6464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6422/","id":6422,"name":"Spider-Man; Spider-Man Vs. The Chameleon","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-1-spider-man-spider-man-vs-/4000-6422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6423/","id":6423,"name":"The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-12-the-incredible-hulk/4000-6423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6426/","id":6426,"name":"Trapped By The Carbon-Copy Man!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-90-trapped-by-the-carbon-copy/4000-6426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182177/","id":182177,"name":"Phantom of the Soap Opera; Trick or Treat?; Woodchopper's Ball; Pottsylvanian Pitch; A Dog's Life; Bat-Ball Batty","site_detail_url":"https://comicvine.gamespot.com/bullwinkle-2-phantom-of-the-soap-opera-trick-or-tr/4000-182177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110798/","id":110798,"name":"The Threat Of The Torrid Twosome!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-106-the-threat-of-the-torrid-twosome/4000-110798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6378/","id":6378,"name":"A Visit With The Fantastic Four; The Impossible Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-11-a-visit-with-the-fantastic-four-/4000-6378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6379/","id":6379,"name":"The Thunder God And The Thug!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-89-the-thunder-god-and-the-th/4000-6379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6178/","id":6178,"name":"Strange Sports Stories: \"Challenge of the Headless Baseball Team!\"","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-45-strange-sports-stories-c/4000-6178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6335/","id":6335,"name":"Vengeance Of The Scarlet Beetle!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-39-vengeance-of-the-scarlet-beet/4000-6335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6328/","id":6328,"name":"The Return of Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-10-the-return-of-doctor-doom/4000-6328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6331/","id":6331,"name":"The Terrible Vengeance Of Loki!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-88-the-terrible-vengeance-of-/4000-6331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6211/","id":6211,"name":"Betrayed By The Ants!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-38-betrayed-by-the-ants/4000-6211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6206/","id":6206,"name":"The End of the Fantastic Four!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-9-the-end-of-the-fantastic-four/4000-6206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6207/","id":6207,"name":"Prisoner Of The Reds!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-87-prisoner-of-the-reds/4000-6207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165822/","id":165822,"name":"The United Nations","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated-special-issue-168-the-united-/4000-165822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6158/","id":6158,"name":"Prisoners of the Puppet-Master!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-8-prisoners-of-the-puppet-master/4000-6158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6115/","id":6115,"name":"Prisoners of Kuurgo, Master of Planet X!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-7-prisoners-of-kuurgo-master-of-pla/4000-6115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6051/","id":6051,"name":"The Day the Metal Men Melted!","site_detail_url":"https://comicvine.gamespot.com/showcase-40-the-day-the-metal-men-melted/4000-6051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6116/","id":6116,"name":"Trapped By Loki, The God Of Mischief!","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-85-trapped-by-loki-the-god-of/4000-6116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6063/","id":6063,"name":"Captives of the Deadly Duo!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-6-captives-of-the-deadly-duo/4000-6063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105342/","id":105342,"name":null,"site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-15/4000-105342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121456/","id":121456,"name":"The New Superman! / The Bride of Mr. Mxyzptlk!","site_detail_url":"https://comicvine.gamespot.com/action-comics-291-the-new-superman-the-bride-of-mr/4000-121456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5959/","id":5959,"name":"The Deathless Doom!","site_detail_url":"https://comicvine.gamespot.com/showcase-39-the-deathless-doom/4000-5959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5974/","id":5974,"name":"Prisoners of Doctor Doom!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-5-prisoners-of-doctor-doom/4000-5974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5926/","id":5926,"name":"The Unsuspecting","site_detail_url":"https://comicvine.gamespot.com/amazing-adult-fantasy-13-the-unsuspecting/4000-5926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5869/","id":5869,"name":"The Nightmare Menace!","site_detail_url":"https://comicvine.gamespot.com/showcase-38-the-nightmare-menace/4000-5869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497299/","id":497299,"name":"","site_detail_url":"https://comicvine.gamespot.com/look-and-learn-19/4000-497299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5881/","id":5881,"name":"The Coming of the Sub-Mariner!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-4-the-coming-of-the-sub-mariner/4000-5881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5788/","id":5788,"name":"The Flaming Doom!","site_detail_url":"https://comicvine.gamespot.com/showcase-37-the-flaming-doom/4000-5788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5796/","id":5796,"name":"The Menace of the Miracle Man!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-3-the-menace-of-the-miracle-man/4000-5796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-6220/","id":6220,"name":"...Modern Man versus Ancient Beast!!","site_detail_url":"https://comicvine.gamespot.com/four-color-1256-modern-man-versus-ancient-beast/4000-6220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121453/","id":121453,"name":"The World's Greatest Heroine","site_detail_url":"https://comicvine.gamespot.com/action-comics-285-the-worlds-greatest-heroine/4000-121453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156046/","id":156046,"name":"","site_detail_url":"https://comicvine.gamespot.com/gorgo-5/4000-156046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149717/","id":149717,"name":"America's First Young Lady","site_detail_url":"https://comicvine.gamespot.com/caroline-kennedy-1-americas-first-young-lady/4000-149717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5558/","id":5558,"name":"The Fantastic Four!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1-the-fantastic-four/4000-5558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155973/","id":155973,"name":"The Return of Gorgo","site_detail_url":"https://comicvine.gamespot.com/gorgo-2-the-return-of-gorgo/4000-155973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117236/","id":117236,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-112/4000-117236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5346/","id":5346,"name":"Torr!; Midnight In The Wax Museum; I Am The Fantastic Dr. Droom!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-1-torr-midnight-in-the-wax-muse/4000-5346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5103/","id":5103,"name":"Secret of the Rocket-Destroyer! / Earthboy Meets Spaceboy! / The Cavemen of New York!","site_detail_url":"https://comicvine.gamespot.com/strange-adventures-123-secret-of-the-rocket-destro/4000-5103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4989/","id":4989,"name":"The World of No Return!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-1-the-world-of-no-return/4000-4989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4912/","id":4912,"name":"Threat of the Tornado Tyrant!","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-61-threat-of-the-tornado-tyrant/4000-4912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4893/","id":4893,"name":"I Was Trapped By Titano the Monster That Time Forgot!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-10-i-was-trapped-by-titano-the-m/4000-4893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218847/","id":218847,"name":"The 2nd Man in Space","site_detail_url":"https://comicvine.gamespot.com/space-adventures-34-the-2nd-man-in-space/4000-218847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4823/","id":4823,"name":"DROOM! The Living Lizard!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-9-droom-the-living-lizard/4000-4823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741670/","id":741670,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kuifje-196014/4000-741670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4609/","id":4609,"name":"I Saw The Invasion Of The Stone Men!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-6-i-saw-the-invasion-of-the-ston/4000-4609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191649/","id":191649,"name":"","site_detail_url":"https://comicvine.gamespot.com/little-dot-50/4000-191649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109115/","id":109115,"name":"The Bridge of Crocodiles","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-110-the-bridge-of-crocodiles/4000-109115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243173/","id":243173,"name":"Mama's Little Girl","site_detail_url":"https://comicvine.gamespot.com/just-married-10-mama-s-little-girl/4000-243173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109113/","id":109113,"name":"Wanted - Wonder Woman!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-108-wanted-wonder-woman/4000-109113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4406/","id":4406,"name":"I Was A Prisoner Of The Martians!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-4-i-was-a-prisoner-of-the-martia/4000-4406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233927/","id":233927,"name":"I Forgot That I Had Left Home To Escape A Boy Like This!","site_detail_url":"https://comicvine.gamespot.com/first-love-illustrated-88-i-forgot-that-i-had-left/4000-233927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3982/","id":3982,"name":"The Secret of the Space Monster; The Riddle of the Lost Race","site_detail_url":"https://comicvine.gamespot.com/showcase-16-the-secret-of-the-space-monster-the-ri/4000-3982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95870/","id":95870,"name":"Rise and Shine/Please Be Seated/Mummy Knows Best/Water Boy/U.N. Antics/By Hook or Cook/And So to Bed","site_detail_url":"https://comicvine.gamespot.com/life-with-archie-1-rise-and-shineplease-be-seatedm/4000-95870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3975/","id":3975,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-secrets-12/4000-3975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3885/","id":3885,"name":"The Great Plutonium Plot; The Robot Planet","site_detail_url":"https://comicvine.gamespot.com/showcase-15-the-great-plutonium-plot-the-robot-pla/4000-3885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121191/","id":121191,"name":"The Super-Duel in Space / The Traffic Cop of 2058, A.D. / Safari from Space!","site_detail_url":"https://comicvine.gamespot.com/action-comics-242-the-super-duel-in-space-the-traf/4000-121191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164317/","id":164317,"name":"Leave it to Beaver","site_detail_url":"https://comicvine.gamespot.com/four-color-912-leave-it-to-beaver/4000-164317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355357/","id":355357,"name":"","site_detail_url":"https://comicvine.gamespot.com/treasure-chest-of-fun-facts-244/4000-355357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117178/","id":117178,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-74/4000-117178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243878/","id":243878,"name":"Stolen Kisses!","site_detail_url":"https://comicvine.gamespot.com/my-secret-life-22-stolen-kisses/4000-243878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243166/","id":243166,"name":"","site_detail_url":"https://comicvine.gamespot.com/just-married-2/4000-243166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91680/","id":91680,"name":"The Rough Rider","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated-special-issue-141-the-rough-r/4000-91680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3214/","id":3214,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-39/4000-3214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243615/","id":243615,"name":"Affairs of the Heart","site_detail_url":"https://comicvine.gamespot.com/my-secret-life-19-affairs-of-the-heart/4000-243615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3064/","id":3064,"name":"The Secret of the Empty Box! / The Coldest Man on Earth!","site_detail_url":"https://comicvine.gamespot.com/showcase-8-the-secret-of-the-empty-box-the-coldest/4000-3064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-2960/","id":2960,"name":"ULTIVAC is Loose!","site_detail_url":"https://comicvine.gamespot.com/showcase-7-ultivac-is-loose/4000-2960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557022/","id":557022,"name":"Flash Gordon","site_detail_url":"https://comicvine.gamespot.com/treasure-books-905-flash-gordon/4000-557022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-2753/","id":2753,"name":"The Greatest Villain of All Time / The Two Faces of Mr. X / The Human Eel","site_detail_url":"https://comicvine.gamespot.com/showcase-5-the-greatest-villain-of-all-time-the-tw/4000-2753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117159/","id":117159,"name":"The Town of Secrets Faces","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-54-the-town-of-secrets-faces/4000-117159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-2544/","id":2544,"name":"The Frogmen!","site_detail_url":"https://comicvine.gamespot.com/showcase-3-the-frogmen/4000-2544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100779/","id":100779,"name":"","site_detail_url":"https://comicvine.gamespot.com/my-secret-marriage-24/4000-100779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361035/","id":361035,"name":"","site_detail_url":"https://comicvine.gamespot.com/every-days-a-holly-day-1/4000-361035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117145/","id":117145,"name":"I Was a Prisoner in a Roman Galley","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-39-i-was-a-prisoner-in-a-roman-ga/4000-117145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155682/","id":155682,"name":"","site_detail_url":"https://comicvine.gamespot.com/avenger-2/4000-155682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1677/","id":1677,"name":"Mr Mxyzplk, Mayor of Metropolis","site_detail_url":"https://comicvine.gamespot.com/superman-96-mr-mxyzplk-mayor-of-metropolis/4000-1677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109068/","id":109068,"name":"The Seeds of Peril!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-69-the-seeds-of-peril/4000-109068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1300/","id":1300,"name":"Invasion","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-35-invasion/4000-1300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1297/","id":1297,"name":"The World's End; in Korea; The Octopus-Men; Flame On!","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-38-the-worlds-end-in-korea-the-oct/4000-1297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1184/","id":1184,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-37/4000-1184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1061/","id":1061,"name":"The Atomic Blaster; The Beast From the Egg; The Devil Octopus; The Ape","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-36-the-atomic-blaster-the-beast-fr/4000-1061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109063/","id":109063,"name":"The 3-D Terror!","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-64-the-3-d-terror/4000-109063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911/","id":911,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-of-buster-crabbe-1/4000-911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450/","id":450,"name":"Operation Annie K!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-33-operation-annie-k/4000-450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138892/","id":138892,"name":"Buffalo Bill","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated-106-buffalo-bill/4000-138892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149226/","id":149226,"name":"The Theater of a Thousand Thrills","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-13-the-theater-of-a-thousand-thri/4000-149226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313/","id":313,"name":"The Bad Luck Clues!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-32-the-bad-luck-clues/4000-313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186/","id":186,"name":"The Phantom of the Highway!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-31-the-phantom-of-the-highway/4000-186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384219/","id":384219,"name":"","site_detail_url":"https://comicvine.gamespot.com/our-presidents-from-washington-to-eisenhower-1/4000-384219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121054/","id":121054,"name":"The Super-Superboy!","site_detail_url":"https://comicvine.gamespot.com/superboy-23-the-super-superboy/4000-121054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49/","id":49,"name":"The Man of a Thousand Faces!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-30-the-man-of-a-thousand-face/4000-49/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119923/","id":119923,"name":"","site_detail_url":"https://comicvine.gamespot.com/atomic-war-1/4000-119923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101/","id":101,"name":"","site_detail_url":"https://comicvine.gamespot.com/skeleton-hand-in-secrets-of-the-supernatural-2/4000-101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259893/","id":259893,"name":"The Crimes of Mr. Jumbo","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-29-the-crimes-of-mr-jumbo/4000-259893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258021/","id":258021,"name":"","site_detail_url":"https://comicvine.gamespot.com/thrilling-true-story-of-the-baseball-yankees-1/4000-258021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110491/","id":110491,"name":"","site_detail_url":"https://comicvine.gamespot.com/skeleton-hand-in-secrets-of-the-supernatural-1/4000-110491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241311/","id":241311,"name":"The Immortal Chaplains","site_detail_url":"https://comicvine.gamespot.com/thrilling-adventures-in-stamps-comics-6-the-immort/4000-241311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423839/","id":423839,"name":"Death and Destruction!","site_detail_url":"https://comicvine.gamespot.com/all-famous-police-cases-6-death-and-destruction/4000-423839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259892/","id":259892,"name":"Beware the Bogus Beggars!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-28-beware-the-bogus-beggars/4000-259892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361243/","id":361243,"name":"Attack of the Wasp Women","site_detail_url":"https://comicvine.gamespot.com/space-detective-4-attack-of-the-wasp-women/4000-361243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386668/","id":386668,"name":"Heartbreak!","site_detail_url":"https://comicvine.gamespot.com/darling-love-9-heartbreak/4000-386668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259891/","id":259891,"name":"The Case of the Secret Six","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-27-the-case-of-the-secret-six/4000-259891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220264/","id":220264,"name":"The Death Drug","site_detail_url":"https://comicvine.gamespot.com/doll-man-39-the-death-drug/4000-220264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259890/","id":259890,"name":"The Case of the Wanted Criminals","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-26-the-case-of-the-wanted-cri/4000-259890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294390/","id":294390,"name":"","site_detail_url":"https://comicvine.gamespot.com/famous-stars-6/4000-294390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361242/","id":361242,"name":"Sea Nymphs of Neptune","site_detail_url":"https://comicvine.gamespot.com/space-detective-3-sea-nymphs-of-neptune/4000-361242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259889/","id":259889,"name":" I Hired My Killer! ","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-25-i-hired-my-killer/4000-259889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361219/","id":361219,"name":"Robotmen of the Lost Planet","site_detail_url":"https://comicvine.gamespot.com/robotmen-of-the-lost-planet-1-robotmen-of-the-lost/4000-361219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116429/","id":116429,"name":"Wanda Was a Werewolf","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-1-wanda-was-a-werewolf/4000-116429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162210/","id":162210,"name":"The Outcast Of Lost World!","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-5-the-outcast-of-lost-world/4000-162210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294387/","id":294387,"name":"","site_detail_url":"https://comicvine.gamespot.com/famous-stars-5/4000-294387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216340/","id":216340,"name":"The Killer in the Iron Mask!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-24-the-killer-in-the-iron-mas/4000-216340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361241/","id":361241,"name":"","site_detail_url":"https://comicvine.gamespot.com/space-detective-2/4000-361241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259888/","id":259888,"name":"The Diary of a Criminal!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-23-the-diary-of-a-criminal/4000-259888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231767/","id":231767,"name":"Reckless Redhead","site_detail_url":"https://comicvine.gamespot.com/first-love-illustrated-14-reckless-redhead/4000-231767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259887/","id":259887,"name":"The Marksman of Crime!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-22-the-marksman-of-crime/4000-259887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393204/","id":393204,"name":"Mad Dog of Manhattan","site_detail_url":"https://comicvine.gamespot.com/crime-clinic-1-mad-dog-of-manhattan/4000-393204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361240/","id":361240,"name":"","site_detail_url":"https://comicvine.gamespot.com/space-detective-1/4000-361240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162214/","id":162214,"name":"Jesse James - Highwayman of Space","site_detail_url":"https://comicvine.gamespot.com/mystery-in-space-2-jesse-james-highwayman-of-space/4000-162214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259886/","id":259886,"name":"Killer's Bodyguard","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-21-killers-bodyguard/4000-259886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124565/","id":124565,"name":"\"Incredible Story of an Ape with a Human Brain\"","site_detail_url":"https://comicvine.gamespot.com/strange-adventures-8-incredible-story-of-an-ape-wi/4000-124565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111468/","id":111468,"name":"100 Year Duel","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-103-100-year-duel/4000-111468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294384/","id":294384,"name":null,"site_detail_url":"https://comicvine.gamespot.com/famous-stars-4/4000-294384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259885/","id":259885,"name":"Eyewitness!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-20-eyewitness/4000-259885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116889/","id":116889,"name":"Miss Robinson Crusoe / Pest of the Planeteers / The Octopus League / The Covered Wagon Cavalcade","site_detail_url":"https://comicvine.gamespot.com/action-comics-154-miss-robinson-crusoe-pest-of-the/4000-116889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108853/","id":108853,"name":"The Trail of the Lost Hours","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-46-the-trail-of-the-lost-hours/4000-108853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159036/","id":159036,"name":"The Zero Hour!","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-2-the-zero-hour/4000-159036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259884/","id":259884,"name":"The 4 Kings of Crime!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-19-the-4-kings-of-crime/4000-259884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361522/","id":361522,"name":"Future Death","site_detail_url":"https://comicvine.gamespot.com/the-spirit-556-future-death/4000-361522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386667/","id":386667,"name":"Cottage of Love","site_detail_url":"https://comicvine.gamespot.com/darling-love-8-cottage-of-love/4000-386667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111466/","id":111466,"name":"Battle For the Atom World","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-101-battle-for-the-atom-world/4000-111466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161846/","id":161846,"name":"The Terror of the Northwest!; Reign of Terror!; Mad-Dog Killer Vincent Coll!; Forecast for Death!","site_detail_url":"https://comicvine.gamespot.com/the-hooded-menace-1-the-terror-of-the-northwest-re/4000-161846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126403/","id":126403,"name":"The Invaders From The Nth Dimension","site_detail_url":"https://comicvine.gamespot.com/strange-adventures-4-the-invaders-from-the-nth-dim/4000-126403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401898/","id":401898,"name":"Bibbergoud","site_detail_url":"https://comicvine.gamespot.com/suske-wiske-8-bibbergoud/4000-401898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152762/","id":152762,"name":"Death Map of Thunder Hill","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-111-death-map-of-thunder-hill/4000-152762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259883/","id":259883,"name":"The Twelve O'Clock Killer!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-18-the-twelve-oclock-killer/4000-259883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128035/","id":128035,"name":"The Impossible Task","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-158-the-impossible-task/4000-128035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115760/","id":115760,"name":"The Last City; The Mysterious Ray From Another Dimmension; Second Childhood; Trip to a Star","site_detail_url":"https://comicvine.gamespot.com/weird-fantasy-16-the-last-city-the-mysterious-ray-/4000-115760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259882/","id":259882,"name":"A Baffling Murder Mystery!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-17-a-baffling-murder-mystery/4000-259882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156607/","id":156607,"name":"Don Newcombe","site_detail_url":"https://comicvine.gamespot.com/fawcetts-baseball-heroes-6-don-newcombe/4000-156607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126400/","id":126400,"name":"The Menace of the Green Nebula!","site_detail_url":"https://comicvine.gamespot.com/strange-adventures-1-the-menace-of-the-green-nebul/4000-126400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259881/","id":259881,"name":"The Wire Tap Crimes!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-16-the-wire-tap-crimes/4000-259881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259880/","id":259880,"name":"Prison Train!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-15-prison-train/4000-259880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115422/","id":115422,"name":"Clark Kent's Career","site_detail_url":"https://comicvine.gamespot.com/action-comics-144-clark-kents-career/4000-115422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128029/","id":128029,"name":"Superboy Hunts For a Job","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-152-superboy-hunts-for-a-job/4000-128029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115421/","id":115421,"name":"The Bride of Superman","site_detail_url":"https://comicvine.gamespot.com/action-comics-143-the-bride-of-superman/4000-115421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138697/","id":138697,"name":"Around the World in 80 Days","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated-69-around-the-world-in-80-day/4000-138697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259879/","id":259879,"name":"The Innocent Man in Murderers' Row!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-14-the-innocent-man-in-murder/4000-259879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115420/","id":115420,"name":"The Conquest of Superman","site_detail_url":"https://comicvine.gamespot.com/action-comics-142-the-conquest-of-superman/4000-115420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259878/","id":259878,"name":"Murder Suspect to Face Lie Detector Test","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-13-murder-suspect-to-face-lie/4000-259878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218956/","id":218956,"name":"I Defended the Monkey Man!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-12-i-defended-the-monkey-man/4000-218956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259877/","id":259877,"name":"The Game That Has No Winners","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-11-the-game-that-has-no-winne/4000-259877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112224/","id":112224,"name":"The Ghost of Gotham City","site_detail_url":"https://comicvine.gamespot.com/detective-comics-150-the-ghost-of-gotham-city/4000-112224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151210/","id":151210,"name":"The Man with the Midas Touch","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-95-the-man-with-the-midas-tou/4000-151210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197955/","id":197955,"name":"The D.A. Takes a Vacation!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-10-the-da-takes-a-vacation/4000-197955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498095/","id":498095,"name":"","site_detail_url":"https://comicvine.gamespot.com/al-capps-dogpatch-comics-1/4000-498095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259876/","id":259876,"name":"The District Attorney's Double!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-9-the-district-attorneys-doub/4000-259876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404766/","id":404766,"name":"True Crime Stories","site_detail_url":"https://comicvine.gamespot.com/album-of-crime-nn-true-crime-stories/4000-404766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435298/","id":435298,"name":"","site_detail_url":"https://comicvine.gamespot.com/famous-crimes-9/4000-435298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189669/","id":189669,"name":"","site_detail_url":"https://comicvine.gamespot.com/phantom-lady-23/4000-189669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135354/","id":135354,"name":"Flame of Fury / Flaming Victory / the Killer Ray / the Outer World of Doom","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-35-flame-of-fury-flaming-victory-t/4000-135354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105075/","id":105075,"name":"The Lost Civilization, The Jungle Rythms of Death","site_detail_url":"https://comicvine.gamespot.com/nyoka-the-jungle-girl-29-the-lost-civilization-the/4000-105075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197954/","id":197954,"name":"The Rise and Fall of 'Lucky' Lynn!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-8-the-rise-and-fall-of-lucky-/4000-197954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225321/","id":225321,"name":"The Man Who Wouldn't Die","site_detail_url":"https://comicvine.gamespot.com/rulah-jungle-goddess-23-the-man-who-wouldnt-die/4000-225321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159344/","id":159344,"name":"Malu the Slave Girl","site_detail_url":"https://comicvine.gamespot.com/slave-girl-comics-1-malu-the-slave-girl/4000-159344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105074/","id":105074,"name":"The Human Statues of the Jungle, The Legendary Jungle Bird","site_detail_url":"https://comicvine.gamespot.com/nyoka-the-jungle-girl-28-the-human-statues-of-the-/4000-105074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135352/","id":135352,"name":"The Flat of the Land / They All Died Laughing / the Brain Monster","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-34-the-flat-of-the-land-they-all-d/4000-135352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185077/","id":185077,"name":"","site_detail_url":"https://comicvine.gamespot.com/juke-box-comics-6/4000-185077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115272/","id":115272,"name":"The Adventure of Little Red","site_detail_url":"https://comicvine.gamespot.com/action-comics-128-the-adventure-of-little-red/4000-115272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381368/","id":381368,"name":"The Life of Lou Gehrig","site_detail_url":"https://comicvine.gamespot.com/pride-of-the-yankees-1-the-life-of-lou-gehrig/4000-381368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197953/","id":197953,"name":"The People vs. Killer Kale!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-7-the-people-vs-killer-kale/4000-197953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135359/","id":135359,"name":"The Ray of Madness / Horror Hotel / A Jinx for Georgie Jenks","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-33-the-ray-of-madness-horror-hotel/4000-135359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185076/","id":185076,"name":"","site_detail_url":"https://comicvine.gamespot.com/juke-box-comics-5/4000-185076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259875/","id":259875,"name":"The Thrilling Manhunt That Led to Scotland Yard!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-6-the-thrilling-manhunt-that-/4000-259875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460452/","id":460452,"name":"The Silent City","site_detail_url":"https://comicvine.gamespot.com/the-hotspur-630-the-silent-city/4000-460452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135360/","id":135360,"name":"Double Cross In Death","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-32-double-cross-in-death/4000-135360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185075/","id":185075,"name":"","site_detail_url":"https://comicvine.gamespot.com/juke-box-comics-4/4000-185075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201368/","id":201368,"name":"The Counterfeit Medicine Mob!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-5-the-counterfeit-medicine-mo/4000-201368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187174/","id":187174,"name":"Johnny Thunder: \"Introducing Johnny Thunder\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-100-johnny-thunder-introducing/4000-187174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112209/","id":112209,"name":"The Invisible Crimes","site_detail_url":"https://comicvine.gamespot.com/detective-comics-138-the-invisible-crimes/4000-112209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185001/","id":185001,"name":"","site_detail_url":"https://comicvine.gamespot.com/juke-box-comics-3/4000-185001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215564/","id":215564,"name":"Merchants of Death!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-4-merchants-of-death/4000-215564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116710/","id":116710,"name":"DADDY SUPERMAN","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-35-daddy-superman/4000-116710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112207/","id":112207,"name":"The Dead Mans Chest","site_detail_url":"https://comicvine.gamespot.com/detective-comics-136-the-dead-mans-chest/4000-112207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408034/","id":408034,"name":"Knave of Scarlet","site_detail_url":"https://comicvine.gamespot.com/zoot-comics-14-b-knave-of-scarlet/4000-408034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135357/","id":135357,"name":"Gay Nineties Gamble / The Beast of the Bowery Barge / The Hyena Strikes","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-30-gay-nineties-gamble-the-beast-o/4000-135357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185000/","id":185000,"name":"","site_detail_url":"https://comicvine.gamespot.com/juke-box-comics-2/4000-185000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197952/","id":197952,"name":"The Honest Convicts!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-3-the-honest-convicts/4000-197952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49046/","id":49046,"name":"","site_detail_url":"https://comicvine.gamespot.com/murder-incorporated-3/4000-49046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116634/","id":116634,"name":"THE UN-SUPER SUPERMAN","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-34-the-un-super-superman/4000-116634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112199/","id":112199,"name":"A Modern Dr. Jekyl","site_detail_url":"https://comicvine.gamespot.com/detective-comics-134-a-modern-dr-jekyl/4000-112199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184999/","id":184999,"name":null,"site_detail_url":"https://comicvine.gamespot.com/juke-box-comics-1/4000-184999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197951/","id":197951,"name":"How Gangland's Sinister Disc Jockey Was Trapped!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-2-how-ganglands-sinister-disc/4000-197951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133786/","id":133786,"name":"","site_detail_url":"https://comicvine.gamespot.com/zoot-comics-13-a/4000-133786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113681/","id":113681,"name":"The Hatred of Badra","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade-25-the-hatred-of-badra/4000-113681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112197/","id":112197,"name":"The Human Key","site_detail_url":"https://comicvine.gamespot.com/detective-comics-132-the-human-key/4000-112197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112195/","id":112195,"name":"The Underworld Surgeon","site_detail_url":"https://comicvine.gamespot.com/detective-comics-131-the-underworld-surgeon/4000-112195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180160/","id":180160,"name":"The Five Days That Shook a City!","site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney-1-the-five-days-that-shook-a-/4000-180160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516484/","id":516484,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-animal-picture-stories-1/4000-516484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422694/","id":422694,"name":"","site_detail_url":"https://comicvine.gamespot.com/48-famous-americans-1/4000-422694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512221/","id":512221,"name":null,"site_detail_url":"https://comicvine.gamespot.com/negro-heroes-1/4000-512221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413211/","id":413211,"name":"","site_detail_url":"https://comicvine.gamespot.com/sparkling-stars-29/4000-413211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129769/","id":129769,"name":"Captain Marvel Meets Mr. Atom","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-adventures-78-captain-marvel-meets-/4000-129769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93818/","id":93818,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-traps-the-guilty-1/4000-93818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361811/","id":361811,"name":"","site_detail_url":"https://comicvine.gamespot.com/it-really-happened-11/4000-361811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118186/","id":118186,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-84/4000-118186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104769/","id":104769,"name":"The Star Gazer","site_detail_url":"https://comicvine.gamespot.com/the-saint-2-the-star-gazer/4000-104769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153410/","id":153410,"name":"Green Lantern: \"The Harlequin\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-89-green-lantern-the-harlequin/4000-153410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361821/","id":361821,"name":"","site_detail_url":"https://comicvine.gamespot.com/it-really-happened-10/4000-361821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146015/","id":146015,"name":"Perils of the Stone Age","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-71-perils-of-the-stone-age/4000-146015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260234/","id":260234,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-comics-62/4000-260234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166039/","id":166039,"name":"The Twins Who Weren't","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-28-the-twins-who-werent/4000-166039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108812/","id":108812,"name":"The Challenge of the Mask","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-24-the-challenge-of-the-mask/4000-108812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361820/","id":361820,"name":"The Story of Old Ironsides","site_detail_url":"https://comicvine.gamespot.com/it-really-happened-9-the-story-of-old-ironsides/4000-361820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237731/","id":237731,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-negro-comics-1/4000-237731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260233/","id":260233,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-comics-61/4000-260233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361819/","id":361819,"name":"","site_detail_url":"https://comicvine.gamespot.com/it-really-happened-8/4000-361819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112176/","id":112176,"name":"Black Cat Crimes","site_detail_url":"https://comicvine.gamespot.com/detective-comics-122-black-cat-crimes/4000-112176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135353/","id":135353,"name":"Meet the Asbestos Lady / Mystery of the Old Curiosity Shop / Murder Deadline","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-27-meet-the-asbestos-lady-mystery-/4000-135353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217152/","id":217152,"name":"Day He Faced The Octopus","site_detail_url":"https://comicvine.gamespot.com/captain-flight-comics-11-day-he-faced-the-octopus/4000-217152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112172/","id":112172,"name":"The Case of the Famous Foes","site_detail_url":"https://comicvine.gamespot.com/detective-comics-119-the-case-of-the-famous-foes/4000-112172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94866/","id":94866,"name":"","site_detail_url":"https://comicvine.gamespot.com/picture-stories-from-american-history-3/4000-94866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157313/","id":157313,"name":"Criminal Cruise","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-64-criminal-cruise/4000-157313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135358/","id":135358,"name":"Her Diary of Terror / One of Us Is a Killer / The Ghost of Shadow Manor / The Fatal Curse of the Sea Witch","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-26-her-diary-of-terror-one-of-us-i/4000-135358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118398/","id":118398,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-80/4000-118398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361817/","id":361817,"name":"","site_detail_url":"https://comicvine.gamespot.com/it-really-happened-6/4000-361817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361818/","id":361818,"name":"","site_detail_url":"https://comicvine.gamespot.com/it-really-happened-7/4000-361818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415980/","id":415980,"name":"","site_detail_url":"https://comicvine.gamespot.com/your-united-states-1/4000-415980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157177/","id":157177,"name":"Code of the Newsstand","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-63-code-of-the-newsstand/4000-157177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113674/","id":113674,"name":"The Menace of the Rebel Manlings/Detour","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade-18-the-menace-of-the-rebel-manling/4000-113674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118399/","id":118399,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-79/4000-118399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157097/","id":157097,"name":"Prevue of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-62-prevue-of-tomorrow/4000-157097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118425/","id":118425,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-78/4000-118425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256755/","id":256755,"name":"Beasts on Broadway","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr-43-beasts-on-broadway/4000-256755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119541/","id":119541,"name":"Trapping the Masked Monster / Death by Prophecy / The Lost Son Fraud / Ghost Hangman","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-25-trapping-the-masked-monster-dea/4000-119541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156993/","id":156993,"name":"The Great Balloon Race","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-61-the-great-balloon-race/4000-156993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118426/","id":118426,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-77/4000-118426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149941/","id":149941,"name":"Steve Brodie Da Second","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-60-steve-brodie-da-second/4000-149941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118427/","id":118427,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-76/4000-118427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156910/","id":156910,"name":"Answers Inc.","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-59-answers-inc/4000-156910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118428/","id":118428,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-75/4000-118428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135369/","id":135369,"name":"The Werewolf Horror / The Invisible Terror / The House Killer / The Statue of Death","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-24-the-werewolf-horror-the-invisib/4000-135369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122874/","id":122874,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-42/4000-122874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118429/","id":118429,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-74/4000-118429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118430/","id":118430,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-73/4000-118430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118431/","id":118431,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-72/4000-118431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120395/","id":120395,"name":"The Paintings that Walked the Earth!","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-28-the-paintings-that-walked-the-e/4000-120395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110345/","id":110345,"name":"","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-comics-19/4000-110345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135368/","id":135368,"name":"The Amazing Swindle / Firebug Terror / Jekyll-Hyde Murders / Politicians in Crime","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-23-the-amazing-swindle-firebug-ter/4000-135368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171032/","id":171032,"name":"The Money Doubler! ","site_detail_url":"https://comicvine.gamespot.com/all-flash-quarterly-22-the-money-doubler/4000-171032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112151/","id":112151,"name":"Batman and Robin in Scotland Yard!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-110-batman-and-robin-in-scotland-/4000-112151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156452/","id":156452,"name":"Gabby Strikes a Gusher","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-55-gabby-strikes-a-gusher/4000-156452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114288/","id":114288,"name":"Battle of The Redwoods!","site_detail_url":"https://comicvine.gamespot.com/action-comics-94-battle-of-the-redwoods/4000-114288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172255/","id":172255,"name":"Facing Death in a Panda's Mouth","site_detail_url":"https://comicvine.gamespot.com/heroic-comics-35-facing-death-in-a-pandas-mouth/4000-172255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156336/","id":156336,"name":"Dead-Shot Dade's Revenge","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-54-dead-shot-dades-revenge/4000-156336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115671/","id":115671,"name":"Featuring Superman- Batman- Boy Commandos and Other Top Flight Favorites!","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-21-featuring-superman-batman-/4000-115671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116382/","id":116382,"name":"The Big Guy","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-54-the-big-guy/4000-116382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112149/","id":112149,"name":"The Goat of Gotham City!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-108-the-goat-of-gotham-city/4000-112149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156247/","id":156247,"name":"The Poet of Suicide Slum","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-53-the-poet-of-suicide-slum/4000-156247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94361/","id":94361,"name":"","site_detail_url":"https://comicvine.gamespot.com/picture-stories-from-american-history-2/4000-94361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135367/","id":135367,"name":"The Sentence of Death / the Baffling Mystery of the Pawnshop Murder / the Fatal Fifth Bullet / the Doomed Fishermen","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-22-the-sentence-of-death-the-baffl/4000-135367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156159/","id":156159,"name":"Rehearsal for a Crime","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-52-rehearsal-for-a-crime/4000-156159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118435/","id":118435,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-67/4000-118435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111008/","id":111008,"name":"The Lawbreakers' League","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-46-the-lawbreakers-league/4000-111008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113864/","id":113864,"name":"Abracadabra ... Alacazam ... Carpet, Go Faster! : Another Adventure Featuring Those Zany Magicians by Accident- Hocus and Pocus","site_detail_url":"https://comicvine.gamespot.com/action-comics-88-abracadabra-alacazam-carpet-go-fa/4000-113864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188837/","id":188837,"name":"Home Front Renegades","site_detail_url":"https://comicvine.gamespot.com/daring-comics-12-home-front-renegades/4000-188837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111006/","id":111006,"name":"Chains And Bracelets","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-44-chains-and-bracelets/4000-111006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140014/","id":140014,"name":null,"site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-49/4000-140014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135365/","id":135365,"name":"Cult of Evil / Witness to Murder / the Carnival Murders","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-20-cult-of-evil-witness-to-murder-/4000-135365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193389/","id":193389,"name":"King Shark Comes Back!","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-67-king-shark-comes-back/4000-193389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140012/","id":140012,"name":"The Mark of the Satyre","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-48-the-mark-of-the-satyre/4000-140012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120378/","id":120378,"name":"The Mystery of the Forgotten Crime","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-25-the-mystery-of-the-forgotten-cr/4000-120378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135364/","id":135364,"name":"Blackmailer of Death / the Chambers of Horror / Holiday with Murder","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-19-blackmailer-of-death-the-chambe/4000-135364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140228/","id":140228,"name":"Invitation to Murder","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-46-invitation-to-murder/4000-140228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112824/","id":112824,"name":"The Doom Of Metal","site_detail_url":"https://comicvine.gamespot.com/usa-comics-15-the-doom-of-metal/4000-112824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135363/","id":135363,"name":"Death Plays the Violin / Death Takes a Journey / Dungeon of Terror","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-18-death-plays-the-violin-death-ta/4000-135363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135487/","id":135487,"name":"The Secret of the Masked Horror","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-61-the-secret-of-the-masked-/4000-135487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110828/","id":110828,"name":"Battle Against Revenge","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-36-battle-against-revenge/4000-110828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129578/","id":129578,"name":"The Bamboo Knife Butcher","site_detail_url":"https://comicvine.gamespot.com/all-select-comics-5-the-bamboo-knife-butcher/4000-129578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155457/","id":155457,"name":"Two Guardians Are a Crowd","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-39-two-guardians-are-a-crowd/4000-155457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135486/","id":135486,"name":"Death Spins the Wheel","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-60-death-spins-the-wheel/4000-135486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110299/","id":110299,"name":"","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-comics-15/4000-110299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179713/","id":179713,"name":"","site_detail_url":"https://comicvine.gamespot.com/fox-comics-annual-1/4000-179713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155413/","id":155413,"name":"Roll Out the Barrels","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-38-roll-out-the-barrels/4000-155413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218422/","id":218422,"name":"The Crack of Doom","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr-25-the-crack-of-doom/4000-218422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135362/","id":135362,"name":"The Ghostly Horror / the Skulking Killer / Devil's Double / the Zombie Terror","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-17-the-ghostly-horror-the-skulking/4000-135362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122856/","id":122856,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-35/4000-122856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143837/","id":143837,"name":"","site_detail_url":"https://comicvine.gamespot.com/master-comics-55/4000-143837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129479/","id":129479,"name":"The Legend Of The Murderous Falcon!","site_detail_url":"https://comicvine.gamespot.com/mystic-comics-1-the-legend-of-the-murderous-falcon/4000-129479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159361/","id":159361,"name":"Only Green Lantern Need Apply!; The Lord Haw-Haw of Crime!; Da Tantrim of Green Lantrin!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-13-only-green-lantern-need-apply-the/4000-159361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155261/","id":155261,"name":"Kidnapping in Ten Easy Lessons; The Cowboy of Suicide Slum","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-36-kidnapping-in-ten-easy-les/4000-155261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122855/","id":122855,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-34/4000-122855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188834/","id":188834,"name":"The Nazis Take Little America","site_detail_url":"https://comicvine.gamespot.com/daring-comics-9-the-nazis-take-little-america/4000-188834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237559/","id":237559,"name":"","site_detail_url":"https://comicvine.gamespot.com/hit-comics-33/4000-237559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135484/","id":135484,"name":"The Nazi Super Spy","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-58-the-nazi-super-spy/4000-135484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159857/","id":159857,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-56/4000-159857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155240/","id":155240,"name":"Then Short Weight Blues; The Proud Poppas","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-35-then-short-weight-blues-th/4000-155240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122854/","id":122854,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-33/4000-122854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140215/","id":140215,"name":"The Killer Beasts of Notre Dame","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-41-the-killer-beasts-of-not/4000-140215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135356/","id":135356,"name":"Yellow Monkeys of Death / Sons of Evil / the Robber Baron / Journey to Death","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-16-yellow-monkeys-of-death-sons-of/4000-135356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155208/","id":155208,"name":"From Rags to Ruin","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-34-from-rags-to-ruin/4000-155208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135483/","id":135483,"name":"Death Rides the Rails!","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-57-death-rides-the-rails/4000-135483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256750/","id":256750,"name":"The Indian Braves of Wall St.","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr-20-the-indian-braves-of-wall-st/4000-256750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127339/","id":127339,"name":"The Tough Guy/The Saving Scot And The Gypsy Gyp/ The Bookworm That Turned/ \"The Three Comets!\"/The Spirit of Korea/The Hand Of Doom","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-92-the-tough-guy-the-saving-scot-/4000-127339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155183/","id":155183,"name":"Case of the Baleful Bride","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-33-case-of-the-baleful-bride/4000-155183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122853/","id":122853,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-31/4000-122853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139592/","id":139592,"name":"Terror of the Ghost Harpoon","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-39-terror-of-the-ghost-harp/4000-139592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135482/","id":135482,"name":"Berlin's Master Spy","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-56-berlins-master-spy/4000-135482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110856/","id":110856,"name":"Adventure of the Escaped Prisoner","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-29-adventure-of-the-escaped-priso/4000-110856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155085/","id":155085,"name":"The Good Samaritan","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-32-the-good-samaritan/4000-155085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135481/","id":135481,"name":"The Terrorists of Time","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-55-the-terrorists-of-time/4000-135481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119560/","id":119560,"name":"Keeper Of The Monsters","site_detail_url":"https://comicvine.gamespot.com/all-select-comics-3-keeper-of-the-monsters/4000-119560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135828/","id":135828,"name":"The Blood of Dr. Necrosis","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-36-the-blood-of-dr-necrosis/4000-135828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135479/","id":135479,"name":"Master Plan For Destruction","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-53-master-plan-for-destructi/4000-135479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110286/","id":110286,"name":"","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-comics-13/4000-110286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154822/","id":154822,"name":"Cabbages and Comics","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-29-cabbages-and-comics/4000-154822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135826/","id":135826,"name":"The Gargoyle Strikes","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-35-the-gargoyle-strikes/4000-135826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135478/","id":135478,"name":"Tyrants Must Die","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-52-tyrants-must-die/4000-135478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154667/","id":154667,"name":"The Poor Man's Rich Man","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-28-the-poor-mans-rich-man/4000-154667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122851/","id":122851,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-29/4000-122851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129445/","id":129445,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-51/4000-129445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166044/","id":166044,"name":"Sky Demons Over America!","site_detail_url":"https://comicvine.gamespot.com/all-winners-comics-11-sky-demons-over-america/4000-166044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154522/","id":154522,"name":"Turn on the Head","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-27-turn-on-the-head/4000-154522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139058/","id":139058,"name":"The Horror Of The Doll-Devil","site_detail_url":"https://comicvine.gamespot.com/young-allies-comics-10-the-horror-of-the-doll-devi/4000-139058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154310/","id":154310,"name":"Louie the Lug Goes Literate","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-26-louie-the-lug-goes-literat/4000-154310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211884/","id":211884,"name":"","site_detail_url":"https://comicvine.gamespot.com/hit-comics-30/4000-211884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135351/","id":135351,"name":"Horror of the Mad Dogs; Wings of Death; Smashing the Bloody Plasma Pool; Message to Moscow","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-14-horror-of-the-mad-dogs-wings-of/4000-135351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154166/","id":154166,"name":"Victuals for Victory","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-25-victuals-for-victory/4000-154166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220269/","id":220269,"name":"The Floating Island","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr-12-the-floating-island/4000-220269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112110/","id":112110,"name":"Destiny's Auction","site_detail_url":"https://comicvine.gamespot.com/detective-comics-79-destinys-auction/4000-112110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154096/","id":154096,"name":"Death Strikes a Bargain","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-24-death-strikes-a-bargain/4000-154096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117575/","id":117575,"name":"The house of the laughing death","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-30-the-house-of-the-laughin/4000-117575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159429/","id":159429,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-44/4000-159429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154046/","id":154046,"name":"Art for Scrapper's Sake","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-23-art-for-scrappers-sake/4000-154046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117130/","id":117130,"name":"The End; Purple Ghost and His Reign of Terror; Deep Sea Lair of the Murdering Octopus; New York's Black Menace","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-13-the-end-purple-ghost-and-his-re/4000-117130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154030/","id":154030,"name":"Brains for Sale","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-22-brains-for-sale/4000-154030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246634/","id":246634,"name":"","site_detail_url":"https://comicvine.gamespot.com/wow-comics-15/4000-246634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112106/","id":112106,"name":"Slay 'em with Flowers","site_detail_url":"https://comicvine.gamespot.com/detective-comics-76-slay-em-with-flowers/4000-112106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152035/","id":152035,"name":"The House Where Time Stood Still","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-21-the-house-where-time-stood/4000-152035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115442/","id":115442,"name":"","site_detail_url":"https://comicvine.gamespot.com/worlds-finest-comics-10/4000-115442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112817/","id":112817,"name":"Invasion Of The Killer Beasts","site_detail_url":"https://comicvine.gamespot.com/usa-comics-8-invasion-of-the-killer-beasts/4000-112817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135474/","id":135474,"name":"Mystery of the Air Raid Spotters","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-43-mystery-of-the-air-raid-s/4000-135474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152506/","id":152506,"name":"The Newsboys and the Champ","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-20-the-newsboys-and-the-champ/4000-152506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171024/","id":171024,"name":"\"The Case of the Curious Cat\"","site_detail_url":"https://comicvine.gamespot.com/all-flash-quarterly-10-the-case-of-the-curious-cat/4000-171024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112104/","id":112104,"name":"Tweedledum And Tweedledee!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-74-tweedledum-and-tweedledee/4000-112104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108770/","id":108770,"name":"The Adventure of the Mole Men","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-4-the-adventure-of-the-mole-men/4000-108770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135350/","id":135350,"name":"Riding a Rocket to Doom; Unmask a Gestapo Rabbit; Lair of the Pig Boats","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-12-riding-a-rocket-to-doom-unmask-/4000-135350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155043/","id":155043,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-42/4000-155043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112816/","id":112816,"name":"Case Of The Flying Submarine","site_detail_url":"https://comicvine.gamespot.com/usa-comics-7-case-of-the-flying-submarine/4000-112816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153322/","id":153322,"name":"The Wizard of Odds!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-7-the-wizard-of-odds/4000-153322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152241/","id":152241,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-41/4000-152241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123358/","id":123358,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-19/4000-123358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205822/","id":205822,"name":"A Leader Against Crime!","site_detail_url":"https://comicvine.gamespot.com/clue-comics-2-a-leader-against-crime/4000-205822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149601/","id":149601,"name":"The College of Criminal Knowledge","site_detail_url":"https://comicvine.gamespot.com/flash-comics-38-the-college-of-criminal-knowledge/4000-149601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113558/","id":113558,"name":"The Origin Of Captain Wonder","site_detail_url":"https://comicvine.gamespot.com/kid-komics-1-the-origin-of-captain-wonder/4000-113558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129468/","id":129468,"name":"Flaming Terror; The Morale Murder Menace; The Case of the Eager Diplomat; Mastermind; The Monster of Negley Hall; The Shining Castle of Ra; Tapping the Code; The Mystery of the Missing Stars","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-40-flaming-terror-the-morale/4000-129468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154990/","id":154990,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-40/4000-154990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113257/","id":113257,"name":"Design for Doom; Melody of Menace; Warhawks of Greenland; The Man the Whole World Feared; The Game for Life; The Case of the Phoney Funny Man","site_detail_url":"https://comicvine.gamespot.com/action-comics-56-design-for-doom-melody-of-menace-/4000-113257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139053/","id":139053,"name":"School For Sabotage","site_detail_url":"https://comicvine.gamespot.com/young-allies-comics-6-school-for-sabotage/4000-139053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163993/","id":163993,"name":"Meet Captain Triumph","site_detail_url":"https://comicvine.gamespot.com/crack-comics-27-meet-captain-triumph/4000-163993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52351/","id":52351,"name":"","site_detail_url":"https://comicvine.gamespot.com/boy-commandos-2/4000-52351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135349/","id":135349,"name":"Blackout for Doom; Mystery of the Blue Diamond; Hitler's Hoax","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-11-blackout-for-doom-mystery-of-th/4000-135349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223076/","id":223076,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-39/4000-223076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143823/","id":143823,"name":"","site_detail_url":"https://comicvine.gamespot.com/master-comics-34/4000-143823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132194/","id":132194,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-38/4000-132194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137778/","id":137778,"name":"Green Arrow: \"The Man Who Purchased Lives\"","site_detail_url":"https://comicvine.gamespot.com/more-fun-comics-86-green-arrow-the-man-who-purchas/4000-137778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152240/","id":152240,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-38/4000-152240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122812/","id":122812,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-beetle-18/4000-122812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132193/","id":132193,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-37/4000-132193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237800/","id":237800,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-37/4000-237800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153400/","id":153400,"name":"The Scoop of Suicide Slum","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-13-the-scoop-of-suicide-slum/4000-153400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110416/","id":110416,"name":"The Danger of Dolly Dancer","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-10-the-danger-of-dolly-dancer/4000-110416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52350/","id":52350,"name":"","site_detail_url":"https://comicvine.gamespot.com/boy-commandos-1/4000-52350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135348/","id":135348,"name":"Death Dance of the Atlantic","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-10-death-dance-of-the-atlantic/4000-135348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154898/","id":154898,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-36/4000-154898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112097/","id":112097,"name":"Crime's Early Bird!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-67-crimes-early-bird/4000-112097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153298/","id":153298,"name":"Prevue of Peril","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-12-prevue-of-peril/4000-153298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259675/","id":259675,"name":"We Give You Midnight","site_detail_url":"https://comicvine.gamespot.com/smash-comics-35-we-give-you-midnight/4000-259675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153253/","id":153253,"name":"Paradise Prison","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-11-paradise-prison/4000-153253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130040/","id":130040,"name":"The Hooded Gang; Ghost; Queer Case of Johnny Clostro","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-9-the-hooded-gang-ghost-queer-case/4000-130040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154995/","id":154995,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-34/4000-154995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152943/","id":152943,"name":"Kings for a Day","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-10-kings-for-a-day/4000-152943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153111/","id":153111,"name":"The Rookie Takes the Rap","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-9-the-rookie-takes-the-rap/4000-153111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149595/","id":149595,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-30/4000-149595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122967/","id":122967,"name":"The Finger of Frozen Death","site_detail_url":"https://comicvine.gamespot.com/the-flame-8-the-finger-of-frozen-death/4000-122967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153076/","id":153076,"name":"Last Mile Alley","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-8-last-mile-alley/4000-153076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264064/","id":264064,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-33/4000-264064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159674/","id":159674,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-28/4000-159674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153047/","id":153047,"name":"The Guardian / The Crime Escradille / The Gas Bombs / The Birth of Robotman / The Dwarf / The Picture that Killed","site_detail_url":"https://comicvine.gamespot.com/star-spangled-comics-7-the-guardian-the-crime-escr/4000-153047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362047/","id":362047,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-famous-heroes-magazine-4/4000-362047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129474/","id":129474,"name":"Human Torch vs. Sub-Mariner; Python's Power; The Fiery Monster; The Python Strikes; Underground Terror; The Amazing Awakening","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-8-human-torch-vs-sub-mariner-pytho/4000-129474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139050/","id":139050,"name":"The Coming Of The Khan!","site_detail_url":"https://comicvine.gamespot.com/young-allies-comics-3-the-coming-of-the-khan/4000-139050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411985/","id":411985,"name":"","site_detail_url":"https://comicvine.gamespot.com/national-comics-21/4000-411985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264065/","id":264065,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-32/4000-264065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112403/","id":112403,"name":"Superman: \"Superman's Ark\"","site_detail_url":"https://comicvine.gamespot.com/action-comics-45-superman-supermans-ark/4000-112403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132142/","id":132142,"name":"Green Lantern: \"Doiby Discovers Green Lantern's Identity\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-35-green-lantern-doiby-discove/4000-132142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152239/","id":152239,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-31/4000-152239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112402/","id":112402,"name":"Galloping Gold!","site_detail_url":"https://comicvine.gamespot.com/action-comics-44-galloping-gold/4000-112402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110315/","id":110315,"name":"Wonder Woman Arrives in Man's World","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-1-wonder-woman-arrives-in-mans-wo/4000-110315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119660/","id":119660,"name":"The Agent of Death; Dreadnaught Disaster","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-7-the-agent-of-death-dreadnaught-d/4000-119660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238927/","id":238927,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-30/4000-238927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116412/","id":116412,"name":"Justice Society: \"Two New Members Win Their Spurs\"","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-8-justice-society-two-new-members-/4000-116412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116144/","id":116144,"name":null,"site_detail_url":"https://comicvine.gamespot.com/all-winners-comics-3/4000-116144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112089/","id":112089,"name":"One Of The Most Perfect Frame-Ups","site_detail_url":"https://comicvine.gamespot.com/detective-comics-58-one-of-the-most-perfect-frame-/4000-112089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139585/","id":139585,"name":"Blueprint For Crime","site_detail_url":"https://comicvine.gamespot.com/leading-comics-1-blueprint-for-crime/4000-139585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237799/","id":237799,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-29/4000-237799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361661/","id":361661,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-famous-heroes-magazine-2/4000-361661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117552/","id":117552,"name":"The Strange Mystery of the Ruby of the Nile and Its Heritage of Horror; Murder Stalks the Maneuvers; The Strange Riddle of the Plague of Death; Case of the Black Witch; Carnival of Crime; Vault of Doom","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-8-the-strange-mystery-of-th/4000-117552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116392/","id":116392,"name":"Doctor Fate: \"Mr. Who\"","site_detail_url":"https://comicvine.gamespot.com/more-fun-comics-73-doctor-fate-mr-who/4000-116392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123913/","id":123913,"name":"The King Crime Syndicate; The Little People; The Patriot Downs a Nazi; The Forest Fire Saboteur; The Vengeance of Saba; The Book of Sorcery; The Python and the Prison Riot","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-25-the-king-crime-syndicate-/4000-123913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112811/","id":112811,"name":null,"site_detail_url":"https://comicvine.gamespot.com/usa-comics-2/4000-112811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123814/","id":123814,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-comics-5/4000-123814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264926/","id":264926,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-28/4000-264926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117551/","id":117551,"name":"The Red Skull","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-7-the-red-skull/4000-117551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129305/","id":129305,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-24/4000-129305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119659/","id":119659,"name":"Secret Arsenal; Murder Afloat","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-6-secret-arsenal-murder-afloat/4000-119659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237798/","id":237798,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-27/4000-237798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128962/","id":128962,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-23/4000-128962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117549/","id":117549,"name":"The Camera Fiend and His Darts of Doom","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-6-the-camera-fiend-and-his-/4000-117549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237797/","id":237797,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-26/4000-237797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112781/","id":112781,"name":null,"site_detail_url":"https://comicvine.gamespot.com/usa-comics-1/4000-112781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128897/","id":128897,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-22/4000-128897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149588/","id":149588,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-20/4000-149588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115066/","id":115066,"name":"Superman, Batman and Robin, Red, White & Blue, Zatara","site_detail_url":"https://comicvine.gamespot.com/world-s-finest-comics-3-superman-batman-and-robin-/4000-115066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152238/","id":152238,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-25/4000-152238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128664/","id":128664,"name":"The Idol of Death","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-21-the-idol-of-death/4000-128664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119658/","id":119658,"name":"The Human Torch Battles the Sub-Mariner As the World Faces Destruction","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-5-b-the-human-torch-battles-the-su/4000-119658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237796/","id":237796,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-24/4000-237796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118436/","id":118436,"name":"The Hunt For Hawk Rivers","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-20-the-hunt-for-hawk-rivers/4000-118436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109594/","id":109594,"name":"Carnival Of Fiends","site_detail_url":"https://comicvine.gamespot.com/all-winners-comics-1-carnival-of-fiends/4000-109594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237795/","id":237795,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-23/4000-237795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123912/","id":123912,"name":"The Hag","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-19-the-hag/4000-123912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236107/","id":236107,"name":"Amazing-Man; Shark; Iron Skull; Minimidget; Mighty Man; Reef Kinkaid","site_detail_url":"https://comicvine.gamespot.com/stars-and-stripes-2-amazing-man-shark-iron-skull-m/4000-236107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165081/","id":165081,"name":"The Incredible Robberies/The Sky Hijackers/The Daring Daylight Diamond Robbery/Adventure In Central America/Riddle Of The Statuette/The Flying Dragons/The Mystery Message/Death In The Saloon/The Origin Of Doctor Fate","site_detail_url":"https://comicvine.gamespot.com/more-fun-comics-67-the-incredible-robberies-the-sk/4000-165081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107872/","id":107872,"name":"The Return of the Red Skull","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-3-the-return-of-the-red-sku/4000-107872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237794/","id":237794,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-22/4000-237794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116241/","id":116241,"name":"We Give You..The Thunderer","site_detail_url":"https://comicvine.gamespot.com/daring-mystery-comics-7-we-give-youthe-thunderer/4000-116241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119770/","id":119770,"name":"The Man Who Framed the Torch","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-18-the-man-who-framed-the-to/4000-119770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149585/","id":149585,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-16/4000-149585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119657/","id":119657,"name":"The March of Death; Blitzkrieg of the Living Dead","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-5-a-the-march-of-death-blitzkrieg-/4000-119657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237793/","id":237793,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-21/4000-237793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129056/","id":129056,"name":"","site_detail_url":"https://comicvine.gamespot.com/blue-ribbon-comics-11/4000-129056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118609/","id":118609,"name":"Fighting Side-By-Side","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-17-fighting-side-by-side/4000-118609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109025/","id":109025,"name":"Deep-Sea Blitzkrieg","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-comics-1-deep-sea-blitzkrieg/4000-109025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107870/","id":107870,"name":"Meet Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-comics-1-meet-captain-america/4000-107870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118103/","id":118103,"name":"Pinhead and His Underworld Army","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-16-pinhead-and-his-underworl/4000-118103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129054/","id":129054,"name":"","site_detail_url":"https://comicvine.gamespot.com/blue-ribbon-comics-9/4000-129054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118102/","id":118102,"name":"Search For the Fire-Monsters","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-15-search-for-the-fire-monst/4000-118102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119481/","id":119481,"name":"The Mystery of the Disappearing Criminals","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-4-3-the-mystery-of-the-disappearin/4000-119481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141989/","id":141989,"name":"\"The First Meeting of the Justice Society of America\"","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-3-the-first-meeting-of-the-justice/4000-141989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119478/","id":119478,"name":"Toro's Parents-----Alive?","site_detail_url":"https://comicvine.gamespot.com/the-human-torch-3-toro-s-parents-alive/4000-119478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117540/","id":117540,"name":"The Cult of Fire-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-14-the-cult-of-fire-men/4000-117540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152237/","id":152237,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-17/4000-152237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240994/","id":240994,"name":"Slim Pickens","site_detail_url":"https://comicvine.gamespot.com/the-spirit-29-slim-pickens/4000-240994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117539/","id":117539,"name":"Terror In the Subway","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-13-terror-in-the-subway/4000-117539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207238/","id":207238,"name":"Patriot; Jungle Rescue","site_detail_url":"https://comicvine.gamespot.com/thrilling-comics-10-patriot-jungle-rescue/4000-207238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162747/","id":162747,"name":"Strongman, the Mighty Man of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/crash-comics-adventures-5-strongman-the-mighty-man/4000-162747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237789/","id":237789,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-16/4000-237789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255634/","id":255634,"name":"The Ray That Turned Steel To Dust","site_detail_url":"https://comicvine.gamespot.com/fantastic-comics-11-the-ray-that-turned-steel-to-d/4000-255634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261768/","id":261768,"name":"On the government construction job...","site_detail_url":"https://comicvine.gamespot.com/fantoman-3-on-the-government-construction-job/4000-261768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247856/","id":247856,"name":"The Old Man of the Pyramids visits Lightning's city apartment","site_detail_url":"https://comicvine.gamespot.com/sure-fire-comics-3b-the-old-man-of-the-pyramids-vi/4000-247856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117011/","id":117011,"name":"The Search For JB","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-12-the-search-for-jb/4000-117011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264903/","id":264903,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-15/4000-264903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235784/","id":235784,"name":"","site_detail_url":"https://comicvine.gamespot.com/feature-comics-37/4000-235784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116239/","id":116239,"name":"Introducing Marvel Boy","site_detail_url":"https://comicvine.gamespot.com/daring-mystery-comics-6-introducing-marvel-boy/4000-116239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175244/","id":175244,"name":"National Comics","site_detail_url":"https://comicvine.gamespot.com/national-comics-3-national-comics/4000-175244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149580/","id":149580,"name":"","site_detail_url":"https://comicvine.gamespot.com/flash-comics-9/4000-149580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154531/","id":154531,"name":"Death Rides the Airways","site_detail_url":"https://comicvine.gamespot.com/fantastic-comics-10-death-rides-the-airways/4000-154531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158093/","id":158093,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-14/4000-158093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235785/","id":235785,"name":"","site_detail_url":"https://comicvine.gamespot.com/feature-comics-36/4000-235785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261766/","id":261766,"name":"Dive of Death","site_detail_url":"https://comicvine.gamespot.com/fantoman-2-dive-of-death/4000-261766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112073/","id":112073,"name":"The Case Of The Prophetic Pictures","site_detail_url":"https://comicvine.gamespot.com/detective-comics-42-the-case-of-the-prophetic-pict/4000-112073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123008/","id":123008,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-13/4000-123008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123009/","id":123009,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-14/4000-123009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116859/","id":116859,"name":"The Gasoline Profiteering Racket","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-10-the-gasoline-profiteering/4000-116859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237625/","id":237625,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-13/4000-237625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167496/","id":167496,"name":"","site_detail_url":"https://comicvine.gamespot.com/crackajack-funnies-25/4000-167496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153120/","id":153120,"name":"National Comics","site_detail_url":"https://comicvine.gamespot.com/national-comics-1-national-comics/4000-153120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249170/","id":249170,"name":"Palyachi, the Killer Clown","site_detail_url":"https://comicvine.gamespot.com/the-spirit-9-palyachi-the-killer-clown/4000-249170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240962/","id":240962,"name":"Eldas Thayer","site_detail_url":"https://comicvine.gamespot.com/the-spirit-8-eldas-thayer/4000-240962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240961/","id":240961,"name":"Mr. Midnight","site_detail_url":"https://comicvine.gamespot.com/the-spirit-7-mr-midnight/4000-240961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240960/","id":240960,"name":"The Black Queen's Army","site_detail_url":"https://comicvine.gamespot.com/the-spirit-6-the-black-queens-army/4000-240960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114895/","id":114895,"name":"Superman, Batman and Robin, The Sandman, Slam Bradley : 96 Thrilling Pages in Full Color!","site_detail_url":"https://comicvine.gamespot.com/new-york-worlds-fair-comics-2-superman-batman-and-/4000-114895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112072/","id":112072,"name":"The Masked Menace Of The Boys' School","site_detail_url":"https://comicvine.gamespot.com/detective-comics-41-the-masked-menace-of-the-boys-/4000-112072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154530/","id":154530,"name":"The Plot of Prince Diablo","site_detail_url":"https://comicvine.gamespot.com/fantastic-comics-8-the-plot-of-prince-diablo/4000-154530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116706/","id":116706,"name":"The Human Torch Vs. the Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-9-the-human-torch-vs-the-sub/4000-116706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112756/","id":112756,"name":"Menace of The Star Gazer; The Origin of Hercules; The Cold-Blooded Iron Duke; Land of the Missing Rockets; The Ring of Saboteurs; Thieves Retribution; The Pool of Nordu; The Haunted Forest; The Dreaded Hood; The Grave Robber","site_detail_url":"https://comicvine.gamespot.com/mystic-comics-3-menace-of-the-star-gazer-the-origi/4000-112756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116704/","id":116704,"name":"The Human Torch and the Sub-Mariner Meet","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-8-the-human-torch-and-the-su/4000-116704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179740/","id":179740,"name":"In This Issue - A Triple Fantom of the Fair Feature","site_detail_url":"https://comicvine.gamespot.com/amazing-adventure-funnies-1-in-this-issue-a-triple/4000-179740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122985/","id":122985,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-11/4000-122985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143978/","id":143978,"name":"The Spectre: \"Terror at Lytell's\"","site_detail_url":"https://comicvine.gamespot.com/more-fun-comics-56-the-spectre-terror-at-lytells/4000-143978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116694/","id":116694,"name":"Policeman","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-7-policeman/4000-116694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122984/","id":122984,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-10/4000-122984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155861/","id":155861,"name":"Menace of the Vandal","site_detail_url":"https://comicvine.gamespot.com/flash-comics-5-menace-of-the-vandal/4000-155861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155601/","id":155601,"name":"Robberies Baffle Police","site_detail_url":"https://comicvine.gamespot.com/shadow-comics-2-robberies-baffle-police/4000-155601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255630/","id":255630,"name":"Eelo the Fish Man","site_detail_url":"https://comicvine.gamespot.com/fantastic-comics-5-eelo-the-fish-man/4000-255630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149576/","id":149576,"name":"The Gambling Ship","site_detail_url":"https://comicvine.gamespot.com/flash-comics-4-the-gambling-ship/4000-149576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114558/","id":114558,"name":"The Forest Fire Felons","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-6-the-forest-fire-felons/4000-114558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122673/","id":122673,"name":"The Mask Strikes; A Real Waddy","site_detail_url":"https://comicvine.gamespot.com/exciting-comics-1-the-mask-strikes-a-real-waddy/4000-122673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122980/","id":122980,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-9/4000-122980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122974/","id":122974,"name":"","site_detail_url":"https://comicvine.gamespot.com/green-mask-1/4000-122974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112755/","id":112755,"name":"Introducing Flexo the Rubber Man; The Origin of the Blue Blaze; Journey to Cygni; The Green Terror; Tough Hombre; The Deep Sea Demon; The Blooded Ruby of Chung; The Origin of Dynamic Man","site_detail_url":"https://comicvine.gamespot.com/mystic-comics-1-introducing-flexo-the-rubber-man-t/4000-112755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149575/","id":149575,"name":"The Trial of Major Williams","site_detail_url":"https://comicvine.gamespot.com/flash-comics-3-the-trial-of-major-williams/4000-149575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122983/","id":122983,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-8/4000-122983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114556/","id":114556,"name":"New York Hit by Green Flame","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-4-new-york-hit-by-green-flam/4000-114556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197116/","id":197116,"name":"The Giant Mystery Plane","site_detail_url":"https://comicvine.gamespot.com/fantastic-comics-3-the-giant-mystery-plane/4000-197116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149574/","id":149574,"name":"The Terror of Goll","site_detail_url":"https://comicvine.gamespot.com/flash-comics-2-the-terror-of-goll/4000-149574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122982/","id":122982,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-7/4000-122982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122472/","id":122472,"name":"Lady in Evening Clothes","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-47-lady-in-evening-clothes/4000-122472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197115/","id":197115,"name":"The Attack of Dragor","site_detail_url":"https://comicvine.gamespot.com/fantastic-comics-2-the-attack-of-dragor/4000-197115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114455/","id":114455,"name":"The Menace From Mars","site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-3-the-menace-from-mars/4000-114455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116418/","id":116418,"name":"Origin of the Flash","site_detail_url":"https://comicvine.gamespot.com/flash-comics-1-origin-of-the-flash/4000-116418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187179/","id":187179,"name":"Red White & Blue: \"Lightning Over New York\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-10-red-white-and-blue-lightnin/4000-187179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123271/","id":123271,"name":"","site_detail_url":"https://comicvine.gamespot.com/wonderworld-comics-9/4000-123271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112067/","id":112067,"name":"The Case Of The Ruby Idol","site_detail_url":"https://comicvine.gamespot.com/detective-comics-35-the-case-of-the-ruby-idol/4000-112067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110298/","id":110298,"name":"The Zombies; The Gorilla King","site_detail_url":"https://comicvine.gamespot.com/action-comics-19-the-zombies-the-gorilla-king/4000-110298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114447/","id":114447,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-mystery-comics-2/4000-114447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237980/","id":237980,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-5/4000-237980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112065/","id":112065,"name":"The Batman Wars Against The Dirigible Of Doom","site_detail_url":"https://comicvine.gamespot.com/detective-comics-33-the-batman-wars-against-the-di/4000-112065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237979/","id":237979,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-4/4000-237979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109462/","id":109462,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-1/4000-109462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112064/","id":112064,"name":"Batman Versus The Vampire: Part Two","site_detail_url":"https://comicvine.gamespot.com/detective-comics-32-batman-versus-the-vampire-part/4000-112064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112063/","id":112063,"name":"Batman Versus The Vampire: Part One","site_detail_url":"https://comicvine.gamespot.com/detective-comics-31-batman-versus-the-vampire-part/4000-112063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123265/","id":123265,"name":"An Adventure with Tommy Taylor, His exciting exploits in the jungles of Africa","site_detail_url":"https://comicvine.gamespot.com/wonderworld-comics-5-an-adventure-with-tommy-taylo/4000-123265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237978/","id":237978,"name":"","site_detail_url":"https://comicvine.gamespot.com/smash-comics-2/4000-237978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110175/","id":110175,"name":"The Ice Menace","site_detail_url":"https://comicvine.gamespot.com/action-comics-15-the-ice-menace/4000-110175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122950/","id":122950,"name":"The Case of Tintype's Will; The Haunted House","site_detail_url":"https://comicvine.gamespot.com/mystery-men-comics-1-the-case-of-tintypes-will-the/4000-122950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123263/","id":123263,"name":"Ambushing the Smoky Hill Stage; Buddy learns about the pirate's weapons; Old Uncle Calab spins a yarn","site_detail_url":"https://comicvine.gamespot.com/wonderworld-comics-4-ambushing-the-smoky-hill-stag/4000-123263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112059/","id":112059,"name":"The Batman Meets Doctor Death","site_detail_url":"https://comicvine.gamespot.com/detective-comics-29-the-batman-meets-doctor-death/4000-112059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225326/","id":225326,"name":"The Children's Crusade; The Iron Horse Goes Through.","site_detail_url":"https://comicvine.gamespot.com/wonder-comics-2-the-childrens-crusade-the-iron-hor/4000-225326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112055/","id":112055,"name":"Frenchy Blake's Jewel Gang","site_detail_url":"https://comicvine.gamespot.com/detective-comics-28-frenchy-blake-s-jewel-gang/4000-112055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154110/","id":154110,"name":"","site_detail_url":"https://comicvine.gamespot.com/feature-comics-21/4000-154110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105764/","id":105764,"name":"The Case of the Chemical Syndicate","site_detail_url":"https://comicvine.gamespot.com/detective-comics-27-the-case-of-the-chemical-syndi/4000-105764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114852/","id":114852,"name":"Superman, Zatara, Butch the Pup, The Sandman, Gingersnap : The Above Favorites and many Others! Also Interesting and Unusual Features, Stories and Pictures of the Fair : Mystery Thrills Adventure : 96 Pages in Full Color!","site_detail_url":"https://comicvine.gamespot.com/new-york-worlds-fair-comics-1-superman-zatara-butc/4000-114852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364089/","id":364089,"name":"Phantom Rider","site_detail_url":"https://comicvine.gamespot.com/star-comics-18-phantom-rider/4000-364089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112007/","id":112007,"name":"The Ski Murder","site_detail_url":"https://comicvine.gamespot.com/detective-comics-23-the-ski-murder/4000-112007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112006/","id":112006,"name":"The Return Of Fui Onyui","site_detail_url":"https://comicvine.gamespot.com/detective-comics-22-the-return-of-fui-onyui/4000-112006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111987/","id":111987,"name":"The Glass of Poison","site_detail_url":"https://comicvine.gamespot.com/detective-comics-21-the-glass-of-poison/4000-111987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111984/","id":111984,"name":"The Jade Buddha / The Island of Wanatoba / The Door of Death / Saving Senator Barkley / The Insdious Dr. Fu Manchu / Give and Take / The Song of Death / Block Buster / Boat Race of Doom / The Magican","site_detail_url":"https://comicvine.gamespot.com/detective-comics-20-the-jade-buddha-the-island-of-/4000-111984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111973/","id":111973,"name":"The Hilton Diamond","site_detail_url":"https://comicvine.gamespot.com/detective-comics-18-the-hilton-diamond/4000-111973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411470/","id":411470,"name":"From Start to Finish","site_detail_url":"https://comicvine.gamespot.com/star-comics-9-from-start-to-finish/4000-411470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167713/","id":167713,"name":"","site_detail_url":"https://comicvine.gamespot.com/feature-funnies-3/4000-167713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111900/","id":111900,"name":"A Stowaway In Need","site_detail_url":"https://comicvine.gamespot.com/detective-comics-3-a-stowaway-in-need/4000-111900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109977/","id":109977,"name":"Skyscraper Death","site_detail_url":"https://comicvine.gamespot.com/detective-comics-2-skyscraper-death/4000-109977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105763/","id":105763,"name":"The Murders of Cap'n Scum","site_detail_url":"https://comicvine.gamespot.com/detective-comics-1-the-murders-of-cap-n-scum/4000-105763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165583/","id":165583,"name":"The Nation's Comic Monthly","site_detail_url":"https://comicvine.gamespot.com/famous-funnies-10-the-nation-s-comic-monthly/4000-165583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162954/","id":162954,"name":"","site_detail_url":"https://comicvine.gamespot.com/famous-funnies-9/4000-162954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161127/","id":161127,"name":"over 100 comics games Puzzles Magic","site_detail_url":"https://comicvine.gamespot.com/famous-funnies-3-over-100-comics-games-puzzles-mag/4000-161127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154782/","id":154782,"name":"100 Comics and Games","site_detail_url":"https://comicvine.gamespot.com/famous-funnies-2-100-comics-and-games/4000-154782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154781/","id":154781,"name":"100 Comics and Games","site_detail_url":"https://comicvine.gamespot.com/famous-funnies-1-100-comics-and-games/4000-154781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403016/","id":403016,"name":null,"site_detail_url":"https://comicvine.gamespot.com/famous-funnies-series-1-nn/4000-403016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224536/","id":224536,"name":"The Swooping Vengence Attacks the Statue of Liberty","site_detail_url":"https://comicvine.gamespot.com/the-hotspur-10-the-swooping-vengence-attacks-the-s/4000-224536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201057/","id":201057,"name":"Funnies on Parade","site_detail_url":"https://comicvine.gamespot.com/funnies-on-parade-nn-funnies-on-parade/4000-201057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336372/","id":336372,"name":"Famous Funnies: A Carnival of Comics","site_detail_url":"https://comicvine.gamespot.com/famous-funnies-carnival-of-comics-nn-famous-funnie/4000-336372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399873/","id":399873,"name":"Century of Comics","site_detail_url":"https://comicvine.gamespot.com/century-of-comics-nn-century-of-comics/4000-399873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201737/","id":201737,"name":"Tintin En Amerique","site_detail_url":"https://comicvine.gamespot.com/les-aventures-de-tintin-3-tintin-en-amerique/4000-201737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74825/","id":74825,"name":"","site_detail_url":"https://comicvine.gamespot.com/king-kong-1/4000-74825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156605/","id":156605,"name":"Phil Rizzuto","site_detail_url":"https://comicvine.gamespot.com/fawcetts-baseball-heroes-4-phil-rizzuto/4000-156605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148557/","id":148557,"name":"","site_detail_url":"https://comicvine.gamespot.com/baseball-legends-comics-1/4000-148557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183721/","id":183721,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadlocke-1/4000-183721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248271/","id":248271,"name":"La Guerra de los Mundos","site_detail_url":"https://comicvine.gamespot.com/tesoro-de-cuentos-clasicos-39-la-guerra-de-los-mun/4000-248271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265976/","id":265976,"name":"L'erreur de Madame Atomos","site_detail_url":"https://comicvine.gamespot.com/atomos-10-lerreur-de-madame-atomos/4000-265976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266151/","id":266151,"name":"L'homme Qui Terrorisait New -York","site_detail_url":"https://comicvine.gamespot.com/fantax-4-lhomme-qui-terrorisait-new-york/4000-266151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270517/","id":270517,"name":"","site_detail_url":"https://comicvine.gamespot.com/princess-lucinda-1/4000-270517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283798/","id":283798,"name":"Brimstone and The Borderhounds: Another Cold Day Part Four","site_detail_url":"https://comicvine.gamespot.com/brimstone-and-the-borderhounds-4-brimstone-and-the/4000-283798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293220/","id":293220,"name":"Army of One","site_detail_url":"https://comicvine.gamespot.com/the-punisher-marvel-knightstrade-paperback-2-army-/4000-293220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293221/","id":293221,"name":"Business as Usual","site_detail_url":"https://comicvine.gamespot.com/the-punisher-marvel-knightstrade-paperback-3-busin/4000-293221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293222/","id":293222,"name":"Full Auto","site_detail_url":"https://comicvine.gamespot.com/the-punisher-marvel-knightstrade-paperback-4-full-/4000-293222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293223/","id":293223,"name":"Streets of Laredo","site_detail_url":"https://comicvine.gamespot.com/the-punisher-marvel-knightstrade-paperback-5-stree/4000-293223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307424/","id":307424,"name":"Rakin' & Bakin' First Issue","site_detail_url":"https://comicvine.gamespot.com/maac-vigilante-1-rakin-bakin-first-issue/4000-307424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309246/","id":309246,"name":"","site_detail_url":"https://comicvine.gamespot.com/harry-dickson-5/4000-309246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341607/","id":341607,"name":"Voodoo Child: The Illustrated Legend of Jimi Hendrix","site_detail_url":"https://comicvine.gamespot.com/voodoo-child-the-illustrated-legend-of-jimi-hendri/4000-341607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289706/","id":289706,"name":"","site_detail_url":"https://comicvine.gamespot.com/homem-aranha-kids-3/4000-289706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289708/","id":289708,"name":"","site_detail_url":"https://comicvine.gamespot.com/homem-aranha-kids-5/4000-289708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289710/","id":289710,"name":"","site_detail_url":"https://comicvine.gamespot.com/homem-aranha-kids-7/4000-289710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289711/","id":289711,"name":"","site_detail_url":"https://comicvine.gamespot.com/homem-aranha-kids-8/4000-289711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289712/","id":289712,"name":"","site_detail_url":"https://comicvine.gamespot.com/homem-aranha-kids-9/4000-289712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357013/","id":357013,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-y-los-outsiders-20/4000-357013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357773/","id":357773,"name":"Colpo Gobbo","site_detail_url":"https://comicvine.gamespot.com/alan-ford-314-colpo-gobbo/4000-357773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357934/","id":357934,"name":"Spirito (Non Alcol) Natalizio","site_detail_url":"https://comicvine.gamespot.com/alan-ford-318-spirito-non-alcol-natalizio/4000-357934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359720/","id":359720,"name":"Der Spuk von New York","site_detail_url":"https://comicvine.gamespot.com/echten-ghostbusters-4-der-spuk-von-new-york/4000-359720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363297/","id":363297,"name":"Grupa TNT (Il gruppo TNT)","site_detail_url":"https://comicvine.gamespot.com/alan-ford-1-grupa-tnt-il-gruppo-tnt/4000-363297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365099/","id":365099,"name":"Punisher Max: Jagt Castle!","site_detail_url":"https://comicvine.gamespot.com/max-45-punisher-max-jagt-castle/4000-365099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292368/","id":292368,"name":"The Punisher: Die Auferstehung von Ma Gnucci","site_detail_url":"https://comicvine.gamespot.com/max-30-the-punisher-die-auferstehung-von-ma-gnucci/4000-292368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292365/","id":292365,"name":"The Punisher: Valley Forge, Valley Forge","site_detail_url":"https://comicvine.gamespot.com/max-28-the-punisher-valley-forge-valley-forge/4000-292365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292339/","id":292339,"name":"Spider-Man: Kingpin","site_detail_url":"https://comicvine.gamespot.com/max-2-spider-man-kingpin/4000-292339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292340/","id":292340,"name":"Supreme Power","site_detail_url":"https://comicvine.gamespot.com/max-3-supreme-power/4000-292340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292343/","id":292343,"name":"The Punisher: Der Erste Schritt","site_detail_url":"https://comicvine.gamespot.com/max-6-the-punisher-der-erste-schritt/4000-292343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292344/","id":292344,"name":"The Punisher: Irisches Erbe","site_detail_url":"https://comicvine.gamespot.com/max-7-the-punisher-irisches-erbe/4000-292344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292346/","id":292346,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-9/4000-292346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292349/","id":292349,"name":"The Punisher: Oben ist Unten und Schwarz ist Weiss","site_detail_url":"https://comicvine.gamespot.com/max-12-the-punisher-oben-ist-unten-und-schwarz-ist/4000-292349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292351/","id":292351,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-14/4000-292351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292353/","id":292353,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-16/4000-292353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292363/","id":292363,"name":"The Punisher: Die Lange, Kalte Nacht","site_detail_url":"https://comicvine.gamespot.com/max-26-the-punisher-die-lange-kalte-nacht/4000-292363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292364/","id":292364,"name":"Foolkiller: Paradies der Narren","site_detail_url":"https://comicvine.gamespot.com/max-27-foolkiller-paradies-der-narren/4000-292364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292370/","id":292370,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-32/4000-292370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292375/","id":292375,"name":"The Punisher: Willkommen im Bayou","site_detail_url":"https://comicvine.gamespot.com/max-37-the-punisher-willkommen-im-bayou/4000-292375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292376/","id":292376,"name":"","site_detail_url":"https://comicvine.gamespot.com/max-38/4000-292376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292378/","id":292378,"name":"Punisher: Kingpin","site_detail_url":"https://comicvine.gamespot.com/max-40-punisher-kingpin/4000-292378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386701/","id":386701,"name":"Mulligan : New-York 1933","site_detail_url":"https://comicvine.gamespot.com/collectie-fenix-30-mulligan-new-york-1933/4000-386701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398271/","id":398271,"name":"Ween Voor De Kinderen.","site_detail_url":"https://comicvine.gamespot.com/x-mannen-4-ween-voor-de-kinderen/4000-398271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398275/","id":398275,"name":"Wolverine: Alleen!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-5-wolverine-alleen/4000-398275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398276/","id":398276,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-mannen-6-dark-phoenix/4000-398276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398296/","id":398296,"name":"...Want Het Kwaad Is Onderweg!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-9-want-het-kwaad-is-onderweg/4000-398296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398323/","id":398323,"name":"Woede!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-10-woede/4000-398323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398379/","id":398379,"name":"Sterven In De Toekomst!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-11-sterven-in-de-toekomst/4000-398379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398381/","id":398381,"name":"Ontvoering","site_detail_url":"https://comicvine.gamespot.com/x-mannen-13-ontvoering/4000-398381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398383/","id":398383,"name":"Caliban","site_detail_url":"https://comicvine.gamespot.com/x-mannen-15-caliban/4000-398383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325515/","id":325515,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-32/4000-325515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398835/","id":398835,"name":"De Eerste Dode!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-20-de-eerste-dode/4000-398835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399081/","id":399081,"name":"Achtervolging","site_detail_url":"https://comicvine.gamespot.com/x-mannen-21-achtervolging/4000-399081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399083/","id":399083,"name":"Een Schreeuw In De Nacht","site_detail_url":"https://comicvine.gamespot.com/x-mannen-23-een-schreeuw-in-de-nacht/4000-399083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399178/","id":399178,"name":"Kitty Vecht Terug!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-31-kitty-vecht-terug/4000-399178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399179/","id":399179,"name":"Dansen In Het Donker...","site_detail_url":"https://comicvine.gamespot.com/x-mannen-32-dansen-in-het-donker/4000-399179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399382/","id":399382,"name":"The Coming of the Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-34-the-coming-of-the-sub-mariner/4000-399382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399383/","id":399383,"name":"Meet Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-36-meet-doctor-doom/4000-399383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399389/","id":399389,"name":"Creepy Worlds","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-38-creepy-worlds/4000-399389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399391/","id":399391,"name":"Creepy Worlds","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-67-creepy-worlds/4000-399391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399410/","id":399410,"name":"Creepy Worlds","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-71-creepy-worlds/4000-399410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399385/","id":399385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-37/4000-399385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399386/","id":399386,"name":"Beslissingen","site_detail_url":"https://comicvine.gamespot.com/x-mannen-38-beslissingen/4000-399386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399388/","id":399388,"name":"Wat Is Er Met Kitty Gebeurd??","site_detail_url":"https://comicvine.gamespot.com/x-mannen-40-wat-is-er-met-kitty-gebeurd/4000-399388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399524/","id":399524,"name":"Creepy Worlds","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-103-creepy-worlds/4000-399524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325519/","id":325519,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-worlds-104/4000-325519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399688/","id":399688,"name":"Het Verleden... Dat Ons Wacht","site_detail_url":"https://comicvine.gamespot.com/x-mannen-43-het-verleden-dat-ons-wacht/4000-399688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399709/","id":399709,"name":"De Dames Zoeken Een Verzetje","site_detail_url":"https://comicvine.gamespot.com/x-mannen-47-de-dames-zoeken-een-verzetje/4000-399709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399710/","id":399710,"name":"Andere Tijden, Gelijke Gewoonten","site_detail_url":"https://comicvine.gamespot.com/x-mannen-48-andere-tijden-gelijke-gewoonten/4000-399710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399711/","id":399711,"name":"Spelletjes","site_detail_url":"https://comicvine.gamespot.com/x-mannen-49-spelletjes/4000-399711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399712/","id":399712,"name":"Op Oorlogspad","site_detail_url":"https://comicvine.gamespot.com/x-mannen-50-op-oorlogspad/4000-399712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325602/","id":325602,"name":"","site_detail_url":"https://comicvine.gamespot.com/astounding-stories-93/4000-325602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400959/","id":400959,"name":"Juggernaut is terug!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-51-juggernaut-is-terug/4000-400959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400961/","id":400961,"name":"Het Was Een Donkere, Stormachtige Nacht..!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-52-het-was-een-donkere-stormachtige-nacht/4000-400961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400990/","id":400990,"name":"Wat Was Dat?!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-53-wat-was-dat/4000-400990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407286/","id":407286,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/artifacts-deluxe-edition-1-hc/4000-407286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407648/","id":407648,"name":"De Gewonde Wolf","site_detail_url":"https://comicvine.gamespot.com/x-mannen-59-de-gewonde-wolf/4000-407648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407650/","id":407650,"name":"Spoken","site_detail_url":"https://comicvine.gamespot.com/x-mannen-61-spoken/4000-407650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407651/","id":407651,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-62/4000-407651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407653/","id":407653,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-64/4000-407653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407704/","id":407704,"name":"Psylocke","site_detail_url":"https://comicvine.gamespot.com/x-mannen-66-psylocke/4000-407704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407705/","id":407705,"name":"Malice Is Terug!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-67-malice-is-terug/4000-407705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407757/","id":407757,"name":"Voorspellingen","site_detail_url":"https://comicvine.gamespot.com/x-mannen-73-voorspellingen/4000-407757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411438/","id":411438,"name":"Der Ultimative Held","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-1-der-ultimative-held/4000-411438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421388/","id":421388,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/witchblade-deluxe-collected-edition-1-tpb/4000-421388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421415/","id":421415,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/witchblade-revelations-2-volume-2/4000-421415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421482/","id":421482,"name":"Das Ding & She-Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-dc-crossover-32-das-ding-she-hulk/4000-421482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402183/","id":402183,"name":"Spider-Men","site_detail_url":"https://comicvine.gamespot.com/100-marvel-67-spider-men/4000-402183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422122/","id":422122,"name":"Incursion","site_detail_url":"https://comicvine.gamespot.com/brimstone-and-the-borderhounds-7-incursion/4000-422122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422428/","id":422428,"name":null,"site_detail_url":"https://comicvine.gamespot.com/brimstone-and-the-borderhounds-critical-mass-blood/4000-422428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430404/","id":430404,"name":"Künstlerische Freiheit; Unter Null; Magneto tritt an; Besuch aus dem Innenreich; Bittere Medizin; Kopfsalat; Im Bann der Mad Bomb; Schädelweh; Ein Himmel voller... Roboter; Erste Schritte","site_detail_url":"https://comicvine.gamespot.com/die-avengers-tv-comic-2-kunstlerische-freiheit-unt/4000-430404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431187/","id":431187,"name":"Vol. 44 - Captain America - Wintersoldat","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-21-vol-44-cap/4000-431187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431353/","id":431353,"name":"Cavemen of New York","site_detail_url":"https://comicvine.gamespot.com/captain-hazzard-4-cavemen-of-new-york/4000-431353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431327/","id":431327,"name":"Python Men of the Lost City","site_detail_url":"https://comicvine.gamespot.com/captain-hazzard-1-python-men-of-the-lost-city/4000-431327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431333/","id":431333,"name":"Citadel of Fear","site_detail_url":"https://comicvine.gamespot.com/captain-hazzard-2-citadel-of-fear/4000-431333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431788/","id":431788,"name":"Vol. 21 - Spider-Man - Heimkehr","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-1-vol-21-spid/4000-431788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437608/","id":437608,"name":"","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes-7/4000-437608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438605/","id":438605,"name":"Vol. 33 - Secret War","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-10-vol-33-sec/4000-438605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445398/","id":445398,"name":"Vol. 41 - House of M","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-20-vol-41-hou/4000-445398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445990/","id":445990,"name":"Vol. 12 - Marvels","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-18-vol-12-mar/4000-445990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260748/","id":260748,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-4/4000-260748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449383/","id":449383,"name":"Vol. 34 - Heldenfall","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-5-vol-34-held/4000-449383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318831/","id":318831,"name":"El Dia del Juicio","site_detail_url":"https://comicvine.gamespot.com/marvels-3-el-dia-del-juicio/4000-318831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450321/","id":450321,"name":"Vol. 27 - Captain America - Neue Gegner","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-15-vol-27-cap/4000-450321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453092/","id":453092,"name":"The Uncanny X-Men: God Loves, Man Kills","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-9-the-uncanny-x-men-god-loves-ma/4000-453092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453093/","id":453093,"name":"The Uncanny X-Men: Blood Feud","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-12-the-uncanny-x-men-blood-feud/4000-453093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453097/","id":453097,"name":"The Uncanny X-Men: Scarlet In Glory","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-11-the-uncanny-x-men-scarlet-in-/4000-453097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453107/","id":453107,"name":"The Uncanny X-Men: Love and Madness","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-13-the-uncanny-x-men-love-and-ma/4000-453107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453110/","id":453110,"name":"The Uncanny X-Men: Legacy of the Lost","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-14-the-uncanny-x-men-legacy-of-t/4000-453110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453111/","id":453111,"name":"The Uncanny X-Men: Night Screams","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-10-the-uncanny-x-men-night-screa/4000-453111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453151/","id":453151,"name":"The Uncanny X-Men: Rogue Storm","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-8-the-uncanny-x-men-rogue-storm/4000-453151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453152/","id":453152,"name":"The Uncanny X-Men: Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-6-the-uncanny-x-men-dark-phoenix/4000-453152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335523/","id":335523,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-75/4000-335523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367063/","id":367063,"name":"","site_detail_url":"https://comicvine.gamespot.com/spawn-75/4000-367063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453255/","id":453255,"name":"The Uncanny X-Men: Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-7-the-uncanny-x-men-days-of-futu/4000-453255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453258/","id":453258,"name":"Fantastic Four: The Coming of Galactus!","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-18-fantastic-four-the-coming-of-/4000-453258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453262/","id":453262,"name":"Fantastic Four: Doomsday","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-19-fantastic-four-doomsday/4000-453262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453267/","id":453267,"name":"Fantastic Four: Where Stalks The Sandman","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-20-fantastic-four-where-stalks-t/4000-453267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453278/","id":453278,"name":"Fantastic Four: The Flames of Battle","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-21-fantastic-four-the-flames-of-/4000-453278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453283/","id":453283,"name":"The Amazing Spider-Man: The End of the Green Goblin!","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-22-the-amazing-spider-man-the-en/4000-453283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453286/","id":453286,"name":"The Amazing Spider-Man: The Wings of the Vulture","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-23-the-amazing-spider-man-the-wi/4000-453286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453289/","id":453289,"name":"The Amazing Spider-Man: To Kill A Spider-Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-24-the-amazing-spider-man-to-kil/4000-453289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453311/","id":453311,"name":"The Amazing Spider-Man: The Madness of Mysterio!","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-25-the-amazing-spider-man-the-ma/4000-453311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453313/","id":453313,"name":"The Amazing Spider-Man: To Crush The Kingpin","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-26-the-amazing-spider-man-to-cru/4000-453313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453315/","id":453315,"name":"The Amazing Spider-Man: Night Of The Prowler","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-27-the-amazing-spider-man-night-/4000-453315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453316/","id":453316,"name":"The Amazing Spider-Man: The Death Of Captain Stacy","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-28-the-amazing-spider-man-the-de/4000-453316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453502/","id":453502,"name":"The Amazing Spider-Man: In The Grip of the Goblin","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-29-the-amazing-spider-man-in-the/4000-453502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453503/","id":453503,"name":"The Amazing Spider-Man: The Spider Slayer","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-30-the-amazing-spider-man-the-sp/4000-453503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453504/","id":453504,"name":"The Amazing Spider-Man: Countdown to Chaos!","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-31-the-amazing-spider-man-countd/4000-453504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453505/","id":453505,"name":"The Amazing Spider-Man: The Night Gwen Stacy Died","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-32-the-amazing-spider-man-the-ni/4000-453505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453506/","id":453506,"name":"The Amazing Spider-Man: The Punisher Strikes Twice","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-33-the-amazing-spider-man-the-pu/4000-453506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453507/","id":453507,"name":"The Amazing Spider-Man: The Green Goblin Lives Again","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-34-the-amazing-spider-man-the-gr/4000-453507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453702/","id":453702,"name":"Amazing Spider-Man:The Delusion Conspiracy","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-35-amazing-spider-man-the-delusi/4000-453702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453703/","id":453703,"name":"The Amazing Spider-Man: Shattered by the Shocker","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-36-the-amazing-spider-man-shatte/4000-453703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453705/","id":453705,"name":"The Amazing Spider-Man: Green Grows the Goblin","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-38-the-amazing-spider-man-green-/4000-453705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453708/","id":453708,"name":"The Invincible Iron Man: Unmasked","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-40-the-invincible-iron-man-unmas/4000-453708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455963/","id":455963,"name":"","site_detail_url":"https://comicvine.gamespot.com/kusse-aus-new-york-1/4000-455963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456124/","id":456124,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-art-of-assassins-creed-iii-1/4000-456124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459513/","id":459513,"name":"Trouble in New York","site_detail_url":"https://comicvine.gamespot.com/harry-und-platte-8-trouble-in-new-york/4000-459513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459605/","id":459605,"name":"Vol. 4 - Thor - Der letzte Wikinger","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-39-vol-4-thor/4000-459605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460829/","id":460829,"name":"Vol. 49 - Civil War","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-30-vol-49-civ/4000-460829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460830/","id":460830,"name":"Vol. 50 - Fallen Son - Der Tod von Captain America","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-31-vol-50-fal/4000-460830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463830/","id":463830,"name":"Vol. 42 - Avengers - Ausbruch!","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-33-vol-42-ave/4000-463830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466470/","id":466470,"name":"Vol. 25 - Spider-Man - Blue","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-34-vol-25-spi/4000-466470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466901/","id":466901,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-23/4000-466901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467995/","id":467995,"name":"","site_detail_url":"https://comicvine.gamespot.com/de-new-teen-titans-13/4000-467995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467999/","id":467999,"name":"","site_detail_url":"https://comicvine.gamespot.com/de-new-teen-titans-20/4000-467999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468368/","id":468368,"name":"","site_detail_url":"https://comicvine.gamespot.com/de-new-teen-titans-11/4000-468368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255913/","id":255913,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/alan-moore-wild-worlds-1-tpb/4000-255913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228611/","id":228611,"name":"","site_detail_url":"https://comicvine.gamespot.com/box-office-poison-1/4000-228611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476395/","id":476395,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-universe-4/4000-476395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476424/","id":476424,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-8/4000-476424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476447/","id":476447,"name":"","site_detail_url":"https://comicvine.gamespot.com/mighty-world-of-marvel-7/4000-476447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351521/","id":351521,"name":"","site_detail_url":"https://comicvine.gamespot.com/king-kong-1/4000-351521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237646/","id":237646,"name":"","site_detail_url":"https://comicvine.gamespot.com/mutants-and-misfits-2/4000-237646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481722/","id":481722,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ufo-encounters-1/4000-481722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482842/","id":482842,"name":"Vol. 57 - Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-45-vol-57-sec/4000-482842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462149/","id":462149,"name":"The Amazing Spiderman: Birth of Venom","site_detail_url":"https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-9-the-amazi/4000-462149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389711/","id":389711,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-41/4000-389711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497599/","id":497599,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-6/4000-497599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497680/","id":497680,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-23/4000-497680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498315/","id":498315,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/galactus-hunger-1-sc/4000-498315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498317/","id":498317,"name":"Krieg","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-3-krieg/4000-498317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498510/","id":498510,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/marvel-klassiker-fantastic-four-1-sc/4000-498510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498563/","id":498563,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/marvel-movies-iron-man-3-die-vorgeschichte-zum-fil/4000-498563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498588/","id":498588,"name":"Heisse Wut, Kaltes Herz","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-2-heisse-wut-kaltes-herz/4000-498588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500072/","id":500072,"name":"","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-mythen-und-legenden-2/4000-500072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500754/","id":500754,"name":"Il Gigante Sommerso","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-178-il-gigante-sommerso/4000-500754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505122/","id":505122,"name":"Mysterious Doings","site_detail_url":"https://comicvine.gamespot.com/pro-action-spider-man-giveaway-3-mysterious-doings/4000-505122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507518/","id":507518,"name":"RanXerox in New York","site_detail_url":"https://comicvine.gamespot.com/carlsen-pocket-13-ranxerox-in-new-york/4000-507518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513252/","id":513252,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-21/4000-513252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514604/","id":514604,"name":"Mane Baronen: Truselen mot New York","site_detail_url":"https://comicvine.gamespot.com/supertempo-198101-mane-baronen-truselen-mot-new-yo/4000-514604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466751/","id":466751,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-1/4000-466751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519693/","id":519693,"name":"Abenteuer in New York","site_detail_url":"https://comicvine.gamespot.com/spirou-und-fantasio-37-abenteuer-in-new-york/4000-519693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522519/","id":522519,"name":"Der Hexer von New York","site_detail_url":"https://comicvine.gamespot.com/gespenster-geschichten-702-der-hexer-von-new-york/4000-522519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526276/","id":526276,"name":"A Picture Story of the United States","site_detail_url":"https://comicvine.gamespot.com/a-picture-story-of-the-united-states-1-a-picture-s/4000-526276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474857/","id":474857,"name":"The Origin","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-unknown-137-the-origin/4000-474857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400475/","id":400475,"name":"The Origin","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-unknown-167-the-origin/4000-400475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400636/","id":400636,"name":"The Origin","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-unknown-205-the-origin/4000-400636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359991/","id":359991,"name":"Spirit's Casebook of True Haunted Houses & Ghosts","site_detail_url":"https://comicvine.gamespot.com/tempo-books-12521-spirits-casebook-of-true-haunted/4000-359991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531146/","id":531146,"name":"Terra II","site_detail_url":"https://comicvine.gamespot.com/perry-65-terra-ii/4000-531146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533851/","id":533851,"name":"Die Katakomben von New York","site_detail_url":"https://comicvine.gamespot.com/perry-83-die-katakomben-von-new-york/4000-533851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545873/","id":545873,"name":"Punisher - Blodets brödraskap, del 2","site_detail_url":"https://comicvine.gamespot.com/marvels-universum-198909-punisher-blodets-brodrask/4000-545873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545872/","id":545872,"name":"Punisher","site_detail_url":"https://comicvine.gamespot.com/marvels-universum-198905-punisher/4000-545872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546883/","id":546883,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/marvels-universum-198904-captain-america/4000-546883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540882/","id":540882,"name":"Años del Futuro Pasado 2 - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-31-anos-del-futuro-pasado-2-se/4000-540882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581266/","id":581266,"name":"Where Did We Come From? Who Are We? Where Are We Going?","site_detail_url":"https://comicvine.gamespot.com/art-in-shambles-1-where-did-we-come-from-who-are-w/4000-581266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235617/","id":235617,"name":"Around the World in 80 Days","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated-55-around-the-world-in-80-day/4000-235617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405077/","id":405077,"name":"Arctic Nation","site_detail_url":"https://comicvine.gamespot.com/blacksad-2-arctic-nation/4000-405077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591311/","id":591311,"name":"Bernard Prince I New York","site_detail_url":"https://comicvine.gamespot.com/tempo-197103-bernard-prince-i-new-york/4000-591311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386236/","id":386236,"name":"","site_detail_url":"https://comicvine.gamespot.com/human-gargoyles-1/4000-386236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608428/","id":608428,"name":"Official Annual 1984","site_detail_url":"https://comicvine.gamespot.com/superman-annual-1984-official-annual-1984/4000-608428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408767/","id":408767,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-season-one-1/4000-408767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616888/","id":616888,"name":"De Onaantastbaren: New York - New York!","site_detail_url":"https://comicvine.gamespot.com/collectie-charlie-34-de-onaantastbaren-new-york-ne/4000-616888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649983/","id":649983,"name":"Farväl till De djupa skogarna","site_detail_url":"https://comicvine.gamespot.com/fantomen-201725-26-farval-till-de-djupa-skogarna/4000-649983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659454/","id":659454,"name":"Robbedoes in New York","site_detail_url":"https://comicvine.gamespot.com/robbedoes-2560-robbedoes-in-new-york/4000-659454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665723/","id":665723,"name":"Aqui, Comissario Norton","site_detail_url":"https://comicvine.gamespot.com/mundo-de-aventuras-520-aqui-comissario-norton/4000-665723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683604/","id":683604,"name":"Clifton in New York","site_detail_url":"https://comicvine.gamespot.com/collectie-jong-europa-15-clifton-in-new-york/4000-683604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691593/","id":691593,"name":"¡Batalla en Nueva York!","site_detail_url":"https://comicvine.gamespot.com/el-asombroso-hombre-arana-171-batalla-en-nueva-yor/4000-691593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691679/","id":691679,"name":"¡Otra Vez en Nueva York el Cohete!","site_detail_url":"https://comicvine.gamespot.com/el-asombroso-hombre-arana-178-otra-vez-en-nueva-yo/4000-691679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327864/","id":327864,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-611/4000-327864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716022/","id":716022,"name":"Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/gigant-200307-ultimate-spider-man/4000-716022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156603/","id":156603,"name":"Eddie Stanky","site_detail_url":"https://comicvine.gamespot.com/fawcetts-baseball-heroes-2-eddie-stanky/4000-156603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156604/","id":156604,"name":"Roy Campanella","site_detail_url":"https://comicvine.gamespot.com/fawcetts-baseball-heroes-3-roy-campanella/4000-156604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156608/","id":156608,"name":"Yogi Berra","site_detail_url":"https://comicvine.gamespot.com/fawcetts-baseball-heroes-7-yogi-berra/4000-156608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334585/","id":334585,"name":"","site_detail_url":"https://comicvine.gamespot.com/building-1/4000-334585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363976/","id":363976,"name":"","site_detail_url":"https://comicvine.gamespot.com/spirou-3329/4000-363976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319088/","id":319088,"name":"Fantomet fra Bronx","site_detail_url":"https://comicvine.gamespot.com/fantomet-199802-fantomet-fra-bronx/4000-319088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319104/","id":319104,"name":"Døden i Central Park","site_detail_url":"https://comicvine.gamespot.com/fantomet-199812-doden-i-central-park/4000-319104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320776/","id":320776,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantomet-201023/4000-320776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763070/","id":763070,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ghetto-brother-1/4000-763070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381221/","id":381221,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-35/4000-381221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381220/","id":381220,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-34/4000-381220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381219/","id":381219,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-33/4000-381219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381212/","id":381212,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-32/4000-381212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381211/","id":381211,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-31/4000-381211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381210/","id":381210,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-30/4000-381210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381209/","id":381209,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-29/4000-381209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381223/","id":381223,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-37/4000-381223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381175/","id":381175,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-14/4000-381175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381243/","id":381243,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-56/4000-381243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381245/","id":381245,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-58/4000-381245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381237/","id":381237,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-50/4000-381237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381239/","id":381239,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-52/4000-381239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381240/","id":381240,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-53/4000-381240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381242/","id":381242,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-55/4000-381242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381246/","id":381246,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-59/4000-381246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381247/","id":381247,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-60/4000-381247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381232/","id":381232,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-46/4000-381232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381163/","id":381163,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-2/4000-381163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381162/","id":381162,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-1/4000-381162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381164/","id":381164,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-3/4000-381164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381165/","id":381165,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-4/4000-381165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381167/","id":381167,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-6/4000-381167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381176/","id":381176,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-15/4000-381176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381174/","id":381174,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-13/4000-381174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381173/","id":381173,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-12/4000-381173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381172/","id":381172,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-11/4000-381172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381171/","id":381171,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-10/4000-381171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381201/","id":381201,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-21/4000-381201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381226/","id":381226,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-40/4000-381226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381227/","id":381227,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-41/4000-381227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381225/","id":381225,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-39/4000-381225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381228/","id":381228,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-42/4000-381228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381229/","id":381229,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-43/4000-381229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381230/","id":381230,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-44/4000-381230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381231/","id":381231,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-45/4000-381231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381234/","id":381234,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-48/4000-381234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381236/","id":381236,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-49/4000-381236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381204/","id":381204,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-24/4000-381204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381203/","id":381203,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-23/4000-381203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381202/","id":381202,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-22/4000-381202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381205/","id":381205,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-25/4000-381205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381206/","id":381206,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-26/4000-381206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381207/","id":381207,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-27/4000-381207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381166/","id":381166,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-5/4000-381166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381168/","id":381168,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-7/4000-381168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381169/","id":381169,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-8/4000-381169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381170/","id":381170,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-9/4000-381170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381197/","id":381197,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-17/4000-381197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381177/","id":381177,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-16/4000-381177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381198/","id":381198,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-18/4000-381198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381199/","id":381199,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-19/4000-381199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381200/","id":381200,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-20/4000-381200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381208/","id":381208,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-28/4000-381208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381222/","id":381222,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-36/4000-381222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381224/","id":381224,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-38/4000-381224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381244/","id":381244,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-57/4000-381244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682463/","id":682463,"name":"Car 54, Where Are You?","site_detail_url":"https://comicvine.gamespot.com/gwandanaland-comics-648-car-54-where-are-you/4000-682463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843334/","id":843334,"name":null,"site_detail_url":"https://comicvine.gamespot.com/arlequina-9/4000-843334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-844684/","id":844684,"name":null,"site_detail_url":"https://comicvine.gamespot.com/arlequina-14/4000-844684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-845279/","id":845279,"name":"La mauvaise fortune de Thomas Shaper","site_detail_url":"https://comicvine.gamespot.com/jukebox-motel-1-la-mauvaise-fortune-de-thomas-shap/4000-845279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846757/","id":846757,"name":"De Blauwbloezen: Oproer in New York","site_detail_url":"https://comicvine.gamespot.com/het-belang-van-limburg-62-de-blauwbloezen-oproer-i/4000-846757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-869056/","id":869056,"name":"Nécropsie","site_detail_url":"https://comicvine.gamespot.com/le-territoire-1-necropsie/4000-869056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884581/","id":884581,"name":"Revolt of the Wonder Weapons","site_detail_url":"https://comicvine.gamespot.com/superman-presents-worlds-finest-comic-monthly-127-/4000-884581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897606/","id":897606,"name":"Target-- Wonder Woman!","site_detail_url":"https://comicvine.gamespot.com/superman-presents-worlds-finest-comic-monthly-102-/4000-897606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906650/","id":906650,"name":"Kamandi","site_detail_url":"https://comicvine.gamespot.com/batman-683-kamandi/4000-906650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843705/","id":843705,"name":"Cracked Big Pictures","site_detail_url":"https://comicvine.gamespot.com/cracked-collectors-edition-21-cracked-big-pictures/4000-843705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-930012/","id":930012,"name":"Fantomet i New York","site_detail_url":"https://comicvine.gamespot.com/fantomet-spesialutgave-8-fantomet-i-new-york/4000-930012/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2679/","id":2679,"name":"Doctor Strange in the Multiverse of Madness","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-in-the-multiverse-of-madness/4025-2679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2656/","id":2656,"name":"Morbius","site_detail_url":"https://comicvine.gamespot.com/morbius/4025-2656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2619/","id":2619,"name":"Spider-Man: No Way Home","site_detail_url":"https://comicvine.gamespot.com/spider-man-no-way-home/4025-2619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2550/","id":2550,"name":"Shang-Chi and the Legend of the Ten Rings","site_detail_url":"https://comicvine.gamespot.com/shang-chi-and-the-legend-of-the-ten-rings/4025-2550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2551/","id":2551,"name":"Justice Society: World War II","site_detail_url":"https://comicvine.gamespot.com/justice-society-world-war-ii/4025-2551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2532/","id":2532,"name":"Tom & Jerry","site_detail_url":"https://comicvine.gamespot.com/tom-and-jerry/4025-2532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2447/","id":2447,"name":"Wonder Woman 1984","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-1984/4025-2447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2367/","id":2367,"name":"Spider-Man: Far From Home","site_detail_url":"https://comicvine.gamespot.com/spider-man-far-from-home/4025-2367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2368/","id":2368,"name":"Men in Black: International","site_detail_url":"https://comicvine.gamespot.com/men-in-black-international/4025-2368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2377/","id":2377,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/dark-phoenix/4025-2377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2640/","id":2640,"name":"The Secret Life of Pets 2","site_detail_url":"https://comicvine.gamespot.com/the-secret-life-of-pets-2/4025-2640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2360/","id":2360,"name":"Avengers: Endgame","site_detail_url":"https://comicvine.gamespot.com/avengers-endgame/4025-2360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2329/","id":2329,"name":"Spider-Man: Into the Spider-Verse","site_detail_url":"https://comicvine.gamespot.com/spider-man-into-the-spider-verse/4025-2329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2365/","id":2365,"name":"Marvel Rising: Secret Warriors","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-secret-warriors/4025-2365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2324/","id":2324,"name":"Teen Titans Go! To the Movies","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go-to-the-movies/4025-2324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2297/","id":2297,"name":"Avengers: Infinity War","site_detail_url":"https://comicvine.gamespot.com/avengers-infinity-war/4025-2297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2292/","id":2292,"name":"Black Panther","site_detail_url":"https://comicvine.gamespot.com/black-panther/4025-2292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2278/","id":2278,"name":"Thor: Ragnarok","site_detail_url":"https://comicvine.gamespot.com/thor-ragnarok/4025-2278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2239/","id":2239,"name":"Spider-Man Homecoming","site_detail_url":"https://comicvine.gamespot.com/spider-man-homecoming/4025-2239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2274/","id":2274,"name":"Resident Evil: Vendetta","site_detail_url":"https://comicvine.gamespot.com/resident-evil-vendetta/4025-2274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2183/","id":2183,"name":"Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/doctor-strange/4025-2183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2217/","id":2217,"name":"Ghostbusters","site_detail_url":"https://comicvine.gamespot.com/ghostbusters/4025-2217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2639/","id":2639,"name":"The Secret Life of Pets","site_detail_url":"https://comicvine.gamespot.com/the-secret-life-of-pets/4025-2639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2157/","id":2157,"name":"Teenage Mutant Ninja Turtles: Out of the Shadows","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-out-of-the-shadows/4025-2157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2143/","id":2143,"name":"Captain America: Civil War","site_detail_url":"https://comicvine.gamespot.com/captain-america-civil-war/4025-2143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2150/","id":2150,"name":"Marvel Super Hero Adventures: Frost Fight!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-frost-fight/4025-2150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1950/","id":1950,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4025-1950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1563/","id":1563,"name":"Avengers: Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/avengers-age-of-ultron/4025-1563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1913/","id":1913,"name":"Teenage Mutant Ninja Turtles","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles/4025-1913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2088/","id":2088,"name":"Scooby-Doo! Frankencreepy","site_detail_url":"https://comicvine.gamespot.com/scoobydoo-frankencreepy/4025-2088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1549/","id":1549,"name":"X-Men: Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/x-men-days-of-future-past/4025-1549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1651/","id":1651,"name":"The Amazing Spider-Man 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-2/4025-1651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1915/","id":1915,"name":"Mr. Peabody & Sherman","site_detail_url":"https://comicvine.gamespot.com/mr-peabody-sherman/4025-1915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1959/","id":1959,"name":"I, Frankenstein","site_detail_url":"https://comicvine.gamespot.com/i-frankenstein/4025-1959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1933/","id":1933,"name":"LEGO Marvel Super Heroes: Maximum Overload","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes-maximum-overload/4025-1933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1945/","id":1945,"name":"Phineas and Ferb: Mission Marvel","site_detail_url":"https://comicvine.gamespot.com/phineas-and-ferb-mission-marvel/4025-1945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1562/","id":1562,"name":"Kick-Ass 2","site_detail_url":"https://comicvine.gamespot.com/kick-ass-2/4025-1562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1869/","id":1869,"name":"Rise of the Black Bat","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-black-bat/4025-1869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1546/","id":1546,"name":"Marvel One-Shot: Item 47","site_detail_url":"https://comicvine.gamespot.com/marvel-one-shot-item-47/4025-1546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1213/","id":1213,"name":"The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man/4025-1213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1463/","id":1463,"name":"Men in Black 3","site_detail_url":"https://comicvine.gamespot.com/men-in-black-3/4025-1463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-936/","id":936,"name":"The Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers/4025-936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1476/","id":1476,"name":"Ben 10/Generator Rex: Heroes United","site_detail_url":"https://comicvine.gamespot.com/ben-10generator-rex-heroes-united/4025-1476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-993/","id":993,"name":"The Smurfs","site_detail_url":"https://comicvine.gamespot.com/the-smurfs/4025-993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1048/","id":1048,"name":"X-Men: First Class","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class/4025-1048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1225/","id":1225,"name":"Gulliver's Travels","site_detail_url":"https://comicvine.gamespot.com/gullivers-travels/4025-1225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1941/","id":1941,"name":"With Great Power: The Stan Lee Story","site_detail_url":"https://comicvine.gamespot.com/with-great-power-the-stan-lee-story/4025-1941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-951/","id":951,"name":"Defendor","site_detail_url":"https://comicvine.gamespot.com/defendor/4025-951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-707/","id":707,"name":"Kick-Ass","site_detail_url":"https://comicvine.gamespot.com/kick-ass/4025-707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1308/","id":1308,"name":"Percy Jackson & the Olympians: The Lightning Thief","site_detail_url":"https://comicvine.gamespot.com/percy-jackson-the-olympians-the-lightning-thief/4025-1308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1023/","id":1023,"name":"The Phantom","site_detail_url":"https://comicvine.gamespot.com/the-phantom/4025-1023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-726/","id":726,"name":"Turtles Forever","site_detail_url":"https://comicvine.gamespot.com/turtles-forever/4025-726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-67/","id":67,"name":"Transformers: Revenge Of The Fallen","site_detail_url":"https://comicvine.gamespot.com/transformers-revenge-of-the-fallen/4025-67/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2625/","id":2625,"name":"G.I. Joe Resolute","site_detail_url":"https://comicvine.gamespot.com/gi-joe-resolute/4025-2625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1/","id":1,"name":"Watchmen","site_detail_url":"https://comicvine.gamespot.com/watchmen/4025-1/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-85/","id":85,"name":"Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/wonder-woman/4025-85/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-57/","id":57,"name":"Punisher: War Zone","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone/4025-57/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1535/","id":1535,"name":"Bolt","site_detail_url":"https://comicvine.gamespot.com/bolt/4025-1535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-155/","id":155,"name":"Futurama: Bender's Game","site_detail_url":"https://comicvine.gamespot.com/futurama-benders-game/4025-155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-229/","id":229,"name":"Watchmen : The Motion Comic","site_detail_url":"https://comicvine.gamespot.com/watchmen-the-motion-comic/4025-229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-49/","id":49,"name":"Hellboy II: The Golden Army","site_detail_url":"https://comicvine.gamespot.com/hellboy-ii-the-golden-army/4025-49/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-964/","id":964,"name":"Hancock","site_detail_url":"https://comicvine.gamespot.com/hancock/4025-964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-154/","id":154,"name":"Futurama: The Beast with a Billion Backs","site_detail_url":"https://comicvine.gamespot.com/futurama-the-beast-with-a-billion-backs/4025-154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-45/","id":45,"name":"The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4025-45/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-381/","id":381,"name":"Jumper","site_detail_url":"https://comicvine.gamespot.com/jumper/4025-381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-317/","id":317,"name":"I Am Legend","site_detail_url":"https://comicvine.gamespot.com/i-am-legend/4025-317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-153/","id":153,"name":"Futurama: Bender's Big Score","site_detail_url":"https://comicvine.gamespot.com/futurama-benders-big-score/4025-153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2496/","id":2496,"name":"Bee Movie","site_detail_url":"https://comicvine.gamespot.com/bee-movie/4025-2496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-103/","id":103,"name":"Doctor Strange: The Sorcerer Supreme","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-the-sorcerer-supreme/4025-103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-686/","id":686,"name":"Highlander: The Search for Vengeance","site_detail_url":"https://comicvine.gamespot.com/highlander-the-search-for-vengeance/4025-686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-54/","id":54,"name":"Spider-Man 3","site_detail_url":"https://comicvine.gamespot.com/spider-man-3/4025-54/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-269/","id":269,"name":"TMNT","site_detail_url":"https://comicvine.gamespot.com/tmnt/4025-269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-18/","id":18,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4025-18/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-749/","id":749,"name":"Mosaic","site_detail_url":"https://comicvine.gamespot.com/mosaic/4025-749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1697/","id":1697,"name":"Lupin III: Seven Days Rhapsody","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-seven-days-rhapsody/4025-1697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-24/","id":24,"name":"X-Men: The Last Stand","site_detail_url":"https://comicvine.gamespot.com/x-men-the-last-stand/4025-24/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-131/","id":131,"name":"Ultimate Avengers","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers/4025-131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-72/","id":72,"name":"Hellboy: Sword of Storms","site_detail_url":"https://comicvine.gamespot.com/hellboy-sword-of-storms/4025-72/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-522/","id":522,"name":"King Kong","site_detail_url":"https://comicvine.gamespot.com/king-kong/4025-522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-40/","id":40,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4025-40/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1155/","id":1155,"name":"Spider-Man: The Venom Saga","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-venom-saga/4025-1155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-126/","id":126,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4025-126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-346/","id":346,"name":"Godzilla Final Wars","site_detail_url":"https://comicvine.gamespot.com/godzilla-final-wars/4025-346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1103/","id":1103,"name":"Sky Captain and the World of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/sky-captain-and-the-world-of-tomorrow/4025-1103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-219/","id":219,"name":"Immortal","site_detail_url":"https://comicvine.gamespot.com/immortal/4025-219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-42/","id":42,"name":"Spider-Man 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-2/4025-42/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2494/","id":2494,"name":"Elf","site_detail_url":"https://comicvine.gamespot.com/elf/4025-2494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2637/","id":2637,"name":"The Animatrix","site_detail_url":"https://comicvine.gamespot.com/the-animatrix/4025-2637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-3/","id":3,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4025-3/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-662/","id":662,"name":"Daredevil VS Spider-Man","site_detail_url":"https://comicvine.gamespot.com/daredevil-vs-spider-man/4025-662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1153/","id":1153,"name":"Spider-Man: The Return of the Green Goblin","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-return-of-the-green-goblin/4025-1153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1182/","id":1182,"name":"Lupin III: Episode 0 - First Contact","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-episode-0-first-contact/4025-1182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-207/","id":207,"name":"Men in Black 2","site_detail_url":"https://comicvine.gamespot.com/men-in-black-2/4025-207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-34/","id":34,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4025-34/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1152/","id":1152,"name":"Spider-Man: The Ultimate Villain Showdown","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-ultimate-villain-showdown/4025-1152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1302/","id":1302,"name":"Final Fantasy: The Spirits Within","site_detail_url":"https://comicvine.gamespot.com/final-fantasy-the-spirits-within/4025-1302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-214/","id":214,"name":"Josie and the Pussycats","site_detail_url":"https://comicvine.gamespot.com/josie-and-the-pussycats/4025-214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1003/","id":1003,"name":"Digimon: The Movie","site_detail_url":"https://comicvine.gamespot.com/digimon-the-movie/4025-1003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-167/","id":167,"name":"Highlander: Endgame","site_detail_url":"https://comicvine.gamespot.com/highlander-endgame/4025-167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1392/","id":1392,"name":"Witchblade","site_detail_url":"https://comicvine.gamespot.com/witchblade/4025-1392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1688/","id":1688,"name":"Lupin III: $1 Money Wars","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-1-money-wars/4025-1688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-22/","id":22,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4025-22/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-956/","id":956,"name":"The Adventures of Rocky & Bullwinkle","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-rocky-bullwinkle/4025-956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1846/","id":1846,"name":"Annie","site_detail_url":"https://comicvine.gamespot.com/annie/4025-1846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-420/","id":420,"name":"Alice Underground","site_detail_url":"https://comicvine.gamespot.com/alice-underground/4025-420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2485/","id":2485,"name":"Antz","site_detail_url":"https://comicvine.gamespot.com/antz/4025-2485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-467/","id":467,"name":"Godzilla","site_detail_url":"https://comicvine.gamespot.com/godzilla/4025-467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-544/","id":544,"name":"Species 2","site_detail_url":"https://comicvine.gamespot.com/species-2/4025-544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1083/","id":1083,"name":"Todd McFarlane's Spawn","site_detail_url":"https://comicvine.gamespot.com/todd-mcfarlanes-spawn/4025-1083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1224/","id":1224,"name":"Lupin III: In Memory of the Walther P38","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-in-memory-of-the-walther-p38/4025-1224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-38/","id":38,"name":"Spawn","site_detail_url":"https://comicvine.gamespot.com/spawn/4025-38/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-989/","id":989,"name":"George of the Jungle","site_detail_url":"https://comicvine.gamespot.com/george-of-the-jungle/4025-989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-206/","id":206,"name":"Men in Black","site_detail_url":"https://comicvine.gamespot.com/men-in-black/4025-206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-137/","id":137,"name":"The Phantom","site_detail_url":"https://comicvine.gamespot.com/the-phantom/4025-137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1832/","id":1832,"name":"James and the Giant Peach","site_detail_url":"https://comicvine.gamespot.com/james-and-the-giant-peach/4025-1832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2650/","id":2650,"name":"Die Hard with a Vengeance","site_detail_url":"https://comicvine.gamespot.com/die-hard-with-a-vengeance/4025-2650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1926/","id":1926,"name":"Crumb","site_detail_url":"https://comicvine.gamespot.com/crumb/4025-1926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-224/","id":224,"name":"Highlander III : The Final Dimension","site_detail_url":"https://comicvine.gamespot.com/highlander-iii-the-final-dimension/4025-224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-235/","id":235,"name":"Timecop","site_detail_url":"https://comicvine.gamespot.com/timecop/4025-235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-584/","id":584,"name":"Nadja","site_detail_url":"https://comicvine.gamespot.com/nadja/4025-584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-138/","id":138,"name":"The Shadow","site_detail_url":"https://comicvine.gamespot.com/the-shadow/4025-138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-633/","id":633,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4025-633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1088/","id":1088,"name":"Super Mario Bros.","site_detail_url":"https://comicvine.gamespot.com/super-mario-bros/4025-1088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-268/","id":268,"name":"Teenage Mutant Ninja Turtles III","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-iii/4025-268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1729/","id":1729,"name":"An American Tail: Fievel Goes West","site_detail_url":"https://comicvine.gamespot.com/an-american-tail-fievel-goes-west/4025-1729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1209/","id":1209,"name":"Lupin III: Steal Napoleon's Dictionary","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-steal-napoleons-dictionary/4025-1209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1215/","id":1215,"name":"Lupin III: From Russia with Love","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-from-russia-with-love/4025-1215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-249/","id":249,"name":"Teenage Mutant Ninja Turtles II: The Secret of the Ooze","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-ii-the-secret-of-the-/4025-249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-963/","id":963,"name":"Sgt. Kabukiman N.Y.P.D.","site_detail_url":"https://comicvine.gamespot.com/sgt-kabukiman-nypd/4025-963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-825/","id":825,"name":"The Rescuers Down Under","site_detail_url":"https://comicvine.gamespot.com/the-rescuers-down-under/4025-825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1875/","id":1875,"name":"Gremlins 2: The New Batch","site_detail_url":"https://comicvine.gamespot.com/gremlins-2-the-new-batch/4025-1875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-166/","id":166,"name":"Teenage Mutant Ninja Turtles","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles/4025-166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-479/","id":479,"name":"Friday the 13th Part VIII: Jason Takes Manhattan","site_detail_url":"https://comicvine.gamespot.com/friday-the-13th-part-viii-jason-takes-manhattan/4025-479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-118/","id":118,"name":"Ghostbusters 2","site_detail_url":"https://comicvine.gamespot.com/ghostbusters-2/4025-118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1206/","id":1206,"name":"Lupin III: Bye-Bye Liberty Crisis","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-bye-bye-liberty-crisis/4025-1206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-897/","id":897,"name":"Oliver & Company","site_detail_url":"https://comicvine.gamespot.com/oliver-company/4025-897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1450/","id":1450,"name":"Daffy Duck's Quackbusters","site_detail_url":"https://comicvine.gamespot.com/daffy-ducks-quackbusters/4025-1450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-9/","id":9,"name":"Superman IV: The Quest For Peace","site_detail_url":"https://comicvine.gamespot.com/superman-iv-the-quest-for-peace/4025-9/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-954/","id":954,"name":"Little Shop Of Horrors","site_detail_url":"https://comicvine.gamespot.com/little-shop-of-horrors/4025-954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1728/","id":1728,"name":"An American Tail","site_detail_url":"https://comicvine.gamespot.com/an-american-tail/4025-1728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-76/","id":76,"name":"Highlander","site_detail_url":"https://comicvine.gamespot.com/highlander/4025-76/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1179/","id":1179,"name":"Remo Williams: The Adventure Begins","site_detail_url":"https://comicvine.gamespot.com/remo-williams-the-adventure-begins/4025-1179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1126/","id":1126,"name":"Lupin III: Legend of the Gold of Babylon","site_detail_url":"https://comicvine.gamespot.com/lupin-iii-legend-of-the-gold-of-babylon/4025-1126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1012/","id":1012,"name":"The Muppets Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-muppets-take-manhattan/4025-1012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-117/","id":117,"name":"Ghostbusters","site_detail_url":"https://comicvine.gamespot.com/ghostbusters/4025-117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-239/","id":239,"name":"Scarface","site_detail_url":"https://comicvine.gamespot.com/scarface/4025-239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-183/","id":183,"name":"Annie","site_detail_url":"https://comicvine.gamespot.com/annie/4025-183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-245/","id":245,"name":"Heavy Metal","site_detail_url":"https://comicvine.gamespot.com/heavy-metal/4025-245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-112/","id":112,"name":"Escape from New York","site_detail_url":"https://comicvine.gamespot.com/escape-from-new-york/4025-112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-828/","id":828,"name":"Spider Man: The Dragon's Challenge","site_detail_url":"https://comicvine.gamespot.com/spider-man-the-dragons-challenge/4025-828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-101/","id":101,"name":"The Warriors","site_detail_url":"https://comicvine.gamespot.com/the-warriors/4025-101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1092/","id":1092,"name":"The Wiz","site_detail_url":"https://comicvine.gamespot.com/the-wiz/4025-1092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-829/","id":829,"name":"Spider-Man Strikes Back","site_detail_url":"https://comicvine.gamespot.com/spider-man-strikes-back/4025-829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-433/","id":433,"name":"Big Apple Birthday","site_detail_url":"https://comicvine.gamespot.com/big-apple-birthday/4025-433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-831/","id":831,"name":"The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man/4025-831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-769/","id":769,"name":"The Rescuers","site_detail_url":"https://comicvine.gamespot.com/the-rescuers/4025-769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-944/","id":944,"name":"King Kong","site_detail_url":"https://comicvine.gamespot.com/king-kong/4025-944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-653/","id":653,"name":"Doc Savage: The Man of Bronze","site_detail_url":"https://comicvine.gamespot.com/doc-savage-the-man-of-bronze/4025-653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-498/","id":498,"name":"Live and Let Die","site_detail_url":"https://comicvine.gamespot.com/live-and-let-die/4025-498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-295/","id":295,"name":"Beneath the Planet of the Apes","site_detail_url":"https://comicvine.gamespot.com/beneath-the-planet-of-the-apes/4025-295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1365/","id":1365,"name":"Hercules in New York","site_detail_url":"https://comicvine.gamespot.com/hercules-in-new-york/4025-1365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-805/","id":805,"name":"Night of the Living Dead","site_detail_url":"https://comicvine.gamespot.com/night-of-the-living-dead/4025-805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-453/","id":453,"name":"Destroy All Monsters","site_detail_url":"https://comicvine.gamespot.com/destroy-all-monsters/4025-453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1000/","id":1000,"name":"The Three Stooges in Orbit","site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-in-orbit/4025-1000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-553/","id":553,"name":"Tarzan's New York Adventure","site_detail_url":"https://comicvine.gamespot.com/tarzans-new-york-adventure/4025-553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1143/","id":1143,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4025-1143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-532/","id":532,"name":"The `Saint' in New York","site_detail_url":"https://comicvine.gamespot.com/the-saint-in-new-york/4025-532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-523/","id":523,"name":"King Kong","site_detail_url":"https://comicvine.gamespot.com/king-kong/4025-523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2539/","id":2539,"name":"Destination: Moonbase Alpha","site_detail_url":"https://comicvine.gamespot.com/destination-moonbase-alpha/4025-2539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1954/","id":1954,"name":"World War Z","site_detail_url":"https://comicvine.gamespot.com/world-war-z/4025-1954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1989/","id":1989,"name":"Sleepy Hollow","site_detail_url":"https://comicvine.gamespot.com/sleepy-hollow/4025-1989/"}],"name":"New York City","site_detail_url":"https://comicvine.gamespot.com/new-york-city/4020-41183/","start_year":"1932","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143328/","id":143328,"name":"Fantomet spesialutgave","site_detail_url":"https://comicvine.gamespot.com/fantomet-spesialutgave/4050-143328/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/location-list-item/locations.json b/samples/api-data/location-list-item/locations.json new file mode 100644 index 0000000..bb25dde --- /dev/null +++ b/samples/api-data/location-list-item/locations.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":10358,"status_code":1,"results":[{"aliases":"Wildes Land","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-21766/","count_of_issue_appearances":728,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-04-15 08:24:01","deck":"A tropical, prehistoric land hidden in Antarctica. It was created during the Triassic by the alien Nuwali for another alien race, The Beyonders, for observation and research purposes.","description":"

    Overview

    \"Rule #1 for survival in in the Savage Land: Never let your guard down, even for an instant because your first mistake is all too often your last\".

    There, nestled in the eternity mountain range of Antarctica, lies a realm out of time... a prehistoric jungle, forever hidden from the outside world by a shroud of billowing clouds.

    In Antarctica, there were many volcanoes, where the alien race known as the Nuwali installed devices to maintain a tropical climate. To be observed however, they would need living life forms. These living life forms were taken all over the centuries, including the Man-Apes. Soon after, the Nuwali and their masters the Beyonders decided to stop the experiment because of boredom. However, the devices were still running and the species living in the Savage Land continued to live.

    Later on, a group of humans from Atlantis discovered the Savage Land and claimed it their home. They also discovered the climate-controlling technology and used it to keep the volcanoes working. They mastered genetic engineering. They experimented on the various species living in the Savage Land, and were then forced to work for the Atlanteans until they revolted. The Atlanteans used the technology to expand the Savage Land. However, the Atlanteans were overthrown and the expanded areas in the Savage Land remained.

    After some years, the Savage Land was discovered by a man named Lord Robert Plunder who took back a metal which could liquefy all other metals. The discovery of this metal meant that others would want to steal his discovery, so he took his eldest son Kevin, and went back to the Savage Land. However, Lord Robert Plunder was killed by a local tribe of Man-Apes, and Kevin grew up in the Savage Land, known better as Ka-Zar.

    Alternate Realities

    Age of Apocalypse

    \"AoA
    AoA Savage Land.

    In this reality, Avalon was the last refuge of Humans and Mutants who wanted to escape Apocalypse´s tyranny. The place was a real paradise full of life where humans and mutants coexisted in peace and harmony. The place was ruled by Destiny and Cypher (her adoptive son).

    It was located hidden at the Antarctica, reassembled Savage Land of main reality but with different topography, this site was one of the only places in earth free from interference of Apocalypse until Shadow King mindcontrolled every inhabitant making them kill each other. Thus it was abandoned.

    In order to reach the Sanctuary, people must get passage from the tribe Ghost Dance in the \"Infernal Gallop\", then Mystique ferried refugees from an Antarctic station to the shores of Avalon. Then the travelers would be conduced into Avalon by Cain (a massive monk).

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-128897/","id":128897,"name":null,"issue_number":"22"},"id":21766,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7665885-rco003_1570022148.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7665885-rco003_1570022148.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7665885-rco003_1570022148.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7665885-rco003_1570022148.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7665885-rco003_1570022148.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7665885-rco003_1570022148.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7665885-rco003_1570022148.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7665885-rco003_1570022148.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7665885-rco003_1570022148.jpg","image_tags":"All Images"},"name":"Savage Land","site_detail_url":"https://comicvine.gamespot.com/savage-land/4020-21766/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-23199/","count_of_issue_appearances":213,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-10-05 23:38:30","deck":"The Shi'ar Empire is a vast group of species led by the Aerie and its current Emperor: Gladiator. The Shi'ar is one of the most important alien species in the Marvel Universe and is currently the most powerful after the demise of the Skrulls and the Kree.","description":"Trial of Galactus

    \"Galactus\"
    Galactus
    The Shi'ar put Reed Richards on trial for the crimes of genocide. He was guilty of reviving Galactus after he was defeated on Earth. Shortly after his revival, Galactus proceeded to consume the Skrull throneworld, resulting in the death of billions. Uatu the Watcher, acting as his lawyer and with the help of Odin and Galactus himself, convinced the gathered tribunal that Galactus is a necessary force of betterment of the universe, not a villain. This was done by summoning Eternity. The truth as shown by Eternity however, is so grand and overpowering that none of the tribunal's members can remember it fully, although the comprehension stays. 

    Phoenix Saga

    \"Dark
    Dark Phoenix
    D'Ken Neramani, a corrupt Shi'ar ruler, attempted to use the powerful M'Kraan Crystal to take over the universe. His younger sister Lilandra and her new allies, the X-Men, foiled his plans. He was rendered comatose by the crystal, and Lilandra then took over as the Majestrix of the Shi'ar Empire. The X-Men, as well as most of Earth's other superheroes, have had cordial if not friendly relations with the Shi'ar Empire ever since.
    Deathbird

    In the 1980s, Lilandra and D'Ken's unstable exiled elder sibling, Deathbird, made several attempts to overthrow her sister from power. Deathbird even resorted to attacking Lilandra's Earth-based allies in order to achieve her goals. She is also responsible for initially directing the alien parasites known as the Brood towards the Earth and its heroes. Deathbird was eventually deposed with the assistance of the X-Men. In the 1992 crossover Operation: Galactic Storm, the Shi'ar annexed the Kree Empire at the end of the Kree-Shi'ar War and Deathbird was placed into a prominent position as viceroy of Hala, the Kree homeworld. However, Deathbird did not last long in this position and the current status of the Kree territories is unclear. The Shi'ar have had recent contact with the Spartoi, described as an equally advanced distant race, noted for Star-Lord's citizenship.

    Cassandra Nova

    Professor Xavier's evil twin sister, Cassandra Nova, single-handedly destroys a good portion of the Shi'ar Empire. Inhabiting the body of her brother, Nova asserts control of Empress Lilandra and causes a Shi'ar civil war. Jean Grey is instrumental in ending this threat.

    Phoenix Endsong & End of Greys

    Even though Jean Grey did the Shi'ar a big favor by eliminating the threat of Cassandra Nova, the Shi'ar still want her dead. In the Phoenix Endsong series, a group of Shi'ar tried to permanently kill the Phoenix Force and Jean Grey. Jean, however, escaped their suicide bomb attack and returned to the White Hot Room to restore herself. In the recent \"End of Greys\" story arc, the Shi'ar wanted to wipe out the Grey genome and Quentin Quire with the purpose of eliminating the possibility of a new Omega-level mutant becoming a host for the Phoenix Force. The Shi'ar Death Commandos murdered Jean Grey's father, niece, nephew, and other relatives in an alien invasion on Earth, thus inciting the wrath of Jean's daughter Rachel Summers, who has vowed vengeance on the entire Shi'ar Empire. Recent events seem to indicate the Shi'ar Council was responsible for this, and that Lilandra is unaware of what has been done in her name.

    Captain Universe: Universal Heroes

    \"Captain
    Captain Universe

    After learning that The Uni-Power was malfunctioning Empress Lilandra and the Shi'ar Council dispatched Gladiator to Earth under the belief that it had become a threat to all civilized worlds and needed to be contained. Once he arrived on Earth, Gladiator came into conflict with The Fantastic Four and was forced to face Captain Universe (who had merged with The Invisible Woman) in combat, which nearly cost Gladiator his life. The Uni-Power then merged with the badly injured Gladiator and showed him that it did not pose a threat to anyone. After saving Los Angeles from a tsunami, Gladiator extended to The Uni-Power, an invitation to come back with him to The  Shi'ar Throneworld as a guest while their scientists tried to solve The Uni-Power's dilemma.

    Unfortunately while Gladiator and The Uni-Power were en route to the Empire both of them were captured by an energy-consuming reptilian space vampire who called himself Krosakis, who not only stripped Gladiator of all his power but also forced The Uni-Power into merging with him, thus turning Krosakis into Captain Universe. Luckily The Silver Surfer was able to sense The Uni-Power's plight and defeated Krosakis by overloading him with The Power Cosmic. The Surfer then permanently infused a portion of The Power Cosmic into The Uni-Power and repaired it, considering all they had been through over the years Gladiator believed The Surfer when he said The Uni-Power had been cured and allowed it to return to Earth while he took Krosakis back to The Shi'ar Throneworld so he could be placed on trial for his crimes.

    Annihilation


    As the war against Annihilus' invasion forces tore countless neighboring Star Empires asunder Peter Quill a.k.a. Star-Lord contacted The Shi'ar Empire on the behalf of Richard Rider a.k.a. Nova and his United Front hoping that The Shi'ar would help them bring Annihilus down once and for all. However The Shi'ar decided that it would be best, for them anyways, if they kept their position as a neutral party for the time being and would wait to see how the War played out.

    \"Fall
    Fall of the Shi'ar
    Fall of the Shi'ar

    A few years after the events of Phoenix: Endsong and Captain Universe: Universal Heroes; The Shi'ar were brutally assaulted by an X-Men villain called Vulcan. During his tenure as majestor of the empire, D'Ken killed Vulcan's mother Katherine Summers (also mother to long time X-Men Scott and Alex Summers) and made him a slave for most of his adolescent life. Bent on revenge against D'Ken, Vulcan attacks the Empire. Not only that, but within the empire, there is a coup to dethrone Lilandra and return D'Ken to power, with the aid of Deathbird. The X-Men once again team up with their space allies, the Starjammers, to stop both Vulcan and the plot to return rulership of the empire to D'Ken. In the end, Vulcan kills his father, Corsair, and D'Ken, and assumes the throne of the Shi'ar Empire for himself, with Deathbird as his queen; Lilandra and the Starjammers now lead a resistance against Vulcan's rule.

    Emperor Vulcan

    \"Vulcan\"
    Vulcan
    The civil war between Vulcan's forces and those loyal the dethroned Lilandra rages on. Led by Havok and the Starjammers, Lilandra's forces gradually whittle away at Vulcan's forces, which are plagued by defections. The Shi'ar, contrary to Vulcan's expectations, are not happy to have an outsider as their ruler. Vulcan is discouraged by this, but Deathbird convinces him that they will come to accept him. Warned in advance of a rebel raid on Feather's Edge, Vulcan and his fleet ambush the Starjammers. However, in the middle of the battle, his ship, the Hammer, is destroyed by the Scy'ar Tal (translates as \"Death to the Shi'ar\"). Vulcan and Gladiator (still the praetor of his Imperial Guard) attack the leader of the Scy'ar Tal and are easily defeated, whereupon they retreat deeper into Shi'ar space. Marvel Girl makes contact with the Eldest Scy'ar Tal and discovers their true origin. The Scy'ar Tal were originally called the M'Kraan. Early in their history, the Shi'ar attacked them, killed a great number of their people, making the rest flee for their lives. Eventually, the Shi'ar settled on their planet, took the M'Kraan Crystal as their own, and passed down the legend of the M'Kraan Crystal as a sacred gift from their deities, Sharra & K'ythri. The M'Kraan then changed their name to Scy'ar Tal and devoted their culture and society to the destruction of the Shi'ar Empire. With their first attack, they destroyed Feather's Edge by transporting a star to obliterate it. After which, Vulcan makes contact with the Starjammers to call a temporary ceasefire. Under the ceasefire, the Shi'ar and the Starjammers decide to take out the Finality, thus crippling the Scy'ar's biggest threat. Once Havok and Vulcan are in position to destroy Finality, the Eldest Scy'ar trys to stop them. Once Vulcan figures out how the Eldest is powered, he severs the connection Eldest has with his brothers, making him powerless. Once the connection is severed, the Scy'ar become unorganized, and the tide of the battle shifts to the Shi`ar. The Shi'ar then proceed to attack both the Scy'ar and the Starjammers. Meanwhile, Vulcan blasts Havok into a sun. Vulcan decides to use Finality to destroy the Scy'ar by using the weapon to place a star in the middle of their fleet. Alex returns and, having absorbed enough power to burn him, decides to end things with Vulcan. While they battle, Rachael and Korvus try, but fail to stop the beacon that will initiate the attack by the Shi'ar. The Shi'ar Imperial Guard end Alex's battle with Vulcan by appearing with the Starjammers in captivity, threatening to kill them. Before surrendering, Alex destroys Finality. With Alex and the Starjammers in custody Vulcan declares that he will return the Shi'ar Empire to its former glory.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-16100/","id":16100,"name":"My Brother...My Enemy!","issue_number":"97"},"id":23199,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/1434784-chandilar.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/1434784-chandilar.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/1434784-chandilar.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/1434784-chandilar.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/1434784-chandilar.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/1434784-chandilar.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/1434784-chandilar.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/1434784-chandilar.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/1434784-chandilar.jpg","image_tags":"All Images,The Empire"},"name":"Shi'ar Empire","site_detail_url":"https://comicvine.gamespot.com/shiar-empire/4020-23199/","start_year":"1976"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-23611/","count_of_issue_appearances":9017,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-09 14:32:33","deck":"Gotham City is under the protection of Batman and his proteges from the criminally insane supervillains, gangs, and mobs that litter its streets.","description":"

    History

    Gotham City is one of the oldest Eastern urban centers in the US. It nestles at the mouth of the turbid Gotham River upon islands once peopled by the vanished Miagani tribe of

    \"No

    Native Americans. A Norwegian mercenary founded Gotham City in 1635, but the British later took it over. It was also the site for a major battle in the American Revolution.

    There is also a story that 17th-century Gotham Village´s first dwelling was, in fact a asylum that predated city´s infamous Arkham Asylum. A man called Hiram was first building a chapel but his partner in crime of murder insisted it to became a sanatorium.

    Gotham´s 19th-century patrons envisioned their community as a concrete and steel stronghold for pious righteousness and booming industrial growth, and for many generations the wealth and business ventures of Wayne family bolstered the city´s economy, but it is best known for it´s soaring crime rate, urban legends and Gothic spires.

    Geography

    Gotham City’s actual location was never fully explained. The location would vary depending on the writer. A majority of writers usually put Gotham City on the eastern coast on the shores of Lake Gotham. There have been maps created for Gotham but it has also varied many times. Sometimes Gotham City is based on the actual eastern coast and sometimes it would reside around Manhattan or Vancouver.

    \"No

    During the No Man’s Land story arc, it showed a map of Gotham and it seems to be based on Rhode Island’s geography. Sometimes it has been shown to be a completely original eastern coast and would tie Gotham in with Metropolis. In this version, Gotham is placed on opposite sides of a large bay. It is also located right next to Bludhaven. The distance between Gotham City and Metropolis was never fully stated so therefore it would vary over the years. It has been as close as a neighboring city, to as far as several hundreds of miles away. When the Atlas of the DC universe was finally published in the 90s, it revealed that Gotham City was south of New Jersey and Metropolis. However, various references in the comic books indicate that it's somewhere in New Jersey it has other references saying that it is in New York.

    According to DC legend Neal Adams, Gotham's real world counterparts are New York City and Chicago.

    Architecture

    \"No

    Gotham City was Commissioned by Judge Solomon Wayne to Cyrus Pinkney. Solomon Wayne saw Pinkney's Plans and decided to promote his art.

    Throughout the years, the architectural appearance of Gotham City has varied greatly. Currently, Gotham is portrayed as having a mix of Art Deco, Neo-Gothic and Post-Modernist styling, characterized by enormous sky-scrapers, high-reaching spires, and the presence of gargoyles and other iconic statuary. A constant factor in the depiction of

    \"No

    Gotham City is element of urban decay, which plagues the city even after it's reconstruction.

    In all rendition, regardless of creator, Gotham's architecture acts as a major literary device, used to set the atmosphere and tone. Writer Dennis O'Neill has described Gotham, figuratively, as \"... Manhattan below Fourteenth Street at eleven minutes past midnight on the coldest night in November.\"

    Notable Residents

    Batman was not actually the first DC hero in Gotham. During the Golden Age, Alan Scott (Green Lantern) and the Golden Age Black Canary lived in Gotham.

    Gotham City is the city where the crime fighters Batman and Dick Grayson operate. Eventually the Batman Family would grow and include Tim Drake, Damian Wayne, Barbara Gordon, Huntress, Batgirl and Batwoman.

    Though Batman is the first superhero that comes to mind when Gotham City is raised, many other DC characters are known to be living in Gotham City: Plastic Man, Zatanna, Zatara, The Question, The Creeper and Simon Dark . The Justice Society of America has also been shown to operate in Gotham City.

    Also many important criminal reside in Gotham such as the Joker, Harley Quinn, Killer Croc, the Riddler, Two-Face, the Penguin and many others.

    Cyrus Gold was wealthy Gotham gentleman and philanthropist who was killed in 'Slaughter Swap', and later resurrected as the monstrous villain Solomon Grundy. Grundy typically resides in Gotham's sewer system and has been an inconvenient, and often reluctant, enemy of Batman.

    Important places

    Underground Power-grid

    The Gotham power-grid is located underneath the city, and has been there for ages; nearly since the city's conception and colonization. It was originally designed for a smaller load and with more antique equipment, and as a result it has trouble handling the power demands of such a large, sprawling, modern city such as Gotham. This is prevented by workers such as Harper Row who work on the electrical grid, to keep it afloat.

    Over time, power-grids and power-lines have grown more sophisticated, one example of which being the liquid nitrogen lines packed with the power-lines in Gotham's subways, seen in Nightwing #9, to keep everything running at an optimal temperature. Another example of the modernization is Batman's own addition of his secret Bat-boxes, which he uses to siphon power from the city anonymously and safely, and to disable various tracking devices and security camera's throughout the city when he operates. He does this to maintain his status as legend, and to inspire fear in criminals, as well as to help keep his secret identity hidden.

    Notable Neighborhoods

    Gotham Heights

    Gotham Heights is an upper-middle class neighborhood in Gotham City, and was under the protection of a teenaged Tim Drake as Robin. The neighborhood is markedly nicer than most areas of the city with little sign of urban decay and poverty.

    The Bowery

    One of Gotham City´s worst neighborhoods. It is located to north of Crime Alley and includes Crown Point, a smaller inner-district ridden with crime, homelessness and prostitution.

    The Cauldron

    An area known for organized crime, it is run by the Irish Mob.

    Chinatown

    Gotham City´s Asian neighborhood.

    Diamond District

    Fashion District

    Financial District

    The East End

    An underdeveloped part of Gotham troubled with crime, drugs, poverty and prostitution.

    Gotham Docks

    Gotham City´s harbour.

    Gotham Village

    Bohemian area of the city. Similar to New York City´s Greenwich Village.

    Old Gotham

    Old part of the city where GCPD headquarters are located.

    Toxic Acres

    Abandoned neighborhood of newly built houses, but unsuitable for habitation due to closeness of a toxic waste dump.

    Organized Crime

    Falcone Crime Family (Italian)

    Run by Carmine \"The Roman\" Falcone , and after his death by his daughter Sofia Gigante until her death.

    Galante Crime Family (Italian)

    Control´s the East side of Gotham.

    Maroni Crime Family (Italian)

    Run by Luigi \"Big Lou\" Maroni and after his death by his son Sal Maroni who was responsible for scarring Harvey Dent.

    Odessa Crime Family (Ukrainian)

    Arms dealers.

    Riley Crime Family (Irish)

    Run by Peyton Riley's father Sean Riley until his death.

    Sabatino Crime Family (Italian)

    The first crime family of Gotham.

    Dimitrov Crime Family (Russian)

    Run by Yuri Dimitrov. Arch enemies of the Maroni Crime Family.

    Bars and Nightclubs

    Finnigan´s

    A bar frequented by the uniformed cops.

    The Iceberg Lounge

    Fancy nightclub located in downtown Gotham and operated by the Penguin.

    My Alibi

    An underworld bar.

    The Stacked Deck

    An underworld nightclub.

    Sports Teams

    Football: Gotham Wildcats, Gotham Knights, Gotham Rogues

    Basketball: Gotham Guardsmen

    Baseball: Gotham Knights, Gotham Griffins

    Ice Hockey: The Gotham Blades

    The Location

    The actual location of Gotham City is said to be in New York, along the eastern coast of the state.

    Media

    Gotham City is also seeing in the Batman: The Animated Series in the 1992 Batman Series up to 1999 and in 2001-2006 the Justice League animated series and also in Batman: The Brave and the Bold in 2008. In the Teen Titans animated series from 2003 to 2006. Beast Boy and the Teen Titans where playing football in the park and Beast Boy said while playing the game 1 Gotham City 2 Gotham City 3 Gotham City. Terra said to Beast Boy when they were going out to have some pie at a bar. She told Beast Boy that she just moved to LA from Gotham City. Cyborg said to the Titans that he was punched and got thrown half way to Gotham City.

    In 2014 and 2015 there will be a show called Gotham. There will be no Batman or Bruce Wayne on the TV because Bruce Wayne is traveling the World to become Batman. This Gotham will be about the life of Jim Gordon from his younger life up to Gotham Police Department where he works. The Gotham villain's will be on the show or mentioned in the series.

    Films

    Gotham appears in every Batman film.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105764/","id":105764,"name":"The Case of the Chemical Syndicate","issue_number":"27"},"id":23611,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/2130173-photo_dec_18__12_49_12_pm.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/2130173-photo_dec_18__12_49_12_pm.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/2130173-photo_dec_18__12_49_12_pm.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/2130173-photo_dec_18__12_49_12_pm.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/2130173-photo_dec_18__12_49_12_pm.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/2130173-photo_dec_18__12_49_12_pm.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/2130173-photo_dec_18__12_49_12_pm.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/2130173-photo_dec_18__12_49_12_pm.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/2130173-photo_dec_18__12_49_12_pm.png","image_tags":"All Images"},"name":"Gotham City","site_detail_url":"https://comicvine.gamespot.com/gotham-city/4020-23611/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-30670/","count_of_issue_appearances":547,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-06-15 08:28:52","deck":"A fictional planet in the DC Universe and the native world for Kryptonians.","description":"

    Location of Krypton

    Krypton was located close to Earth, at least in cosmic terms. It was 50 light years from Earth and orbited a red giant star known as Rao. Krypton is roughly Earth sized and was part of Green Lantern sector 2813 (Earth is in sector 2814). However, in the story \"Superman: Birthright\", Krypton was said to be in another galaxy, approximately 2.2 million light-years away. Krypton is home to a race of people known as Kryptonians that are similar to humans but are more closely related to Daxamites. Under their red sun, the Kryptonians became a more technologically advanced society.

    The People and Culture

    Krypton was a world renowned for its scientific achievement. As a culture, the people led an idyllic life surrounded by robots and followed a ritual path through life. One of their achievements was their Clone Banks. Their mastery of cloning allowed them to live an eternal youth and their society grew ever more hedonistic. In these banks each Kryptonian would maintain three mindless Clones which could be used as spare parts if their \"owner\" was ever injured. There was growing concern however, that the clones too had rights. At first what started out to be a pacifist movement ended up being The Clone Rights Movement that began with the teachings of Sem-M. One clone gained independent sentience, causing the debate to escalate into conflict.

    Eventually the Clone Rights Movement formed such a large force that they rebelled against the ruling authority. The advanced scientific knowledge of the Kryptonians was turned into super weapons and Krypton's Clone War began. Two weapons were created at this time, the Eradicator and the Destroyer. The Eradicator had altered the genes of Kryptonians so that they could never leave their planet again. The Destroyer was aimed at the planet's core, by pro-clone forces causing a chain reaction. The Destroyer was stopped when the government ended hostilities and the planet was saved.

    Krypton would never be the same. The world was left with no wildlife and the people began living in isolation from one another and other races. Direct physical contact became prohibited and procreation was facilitated by birthing matrices. Krypton had peace again, but their world was sterile and joyless.

    Daxamites

    The people of Daxam originated on Krypton. They left to explore the universe, though they were altered by the Eradicator as they left, leaving them fatally vulnerable to lead.

    Points of Interest

    The Anti-Gravity Sky Palace

    A marvel of Kryptonian engineering - this domed structure hovers above the planet's surface.

    Argo City

    This city was flung into space by a Krypton-quake. It was accompanied by a huge air bubble. On this space-fragment, later was born Supergirl.

    Atomic Town

    One of Krypton's largest cities.

    Fire Falls

    A place where Krypton's inner fires pour through a fissure and create a spectacular sight.

    Fort Rozz

    A massive stronghold.

    The Gold Volcano

    A volcano that spews forth molten gold.

    Great Krypton Sea

    The planet's largest body of water.

    The Hall of Worlds

    A museum containing replicas of hundreds of known planets and their moons.

    Jewel Mountains

    An immense geologic formation of gem stones.

    Jor-El's Laboratory

    Site from which the rocket bearing the infant Superman (Kal-El) was launched by Jor-El.

    Kandor Crater

    Before Krypton blew up, this city was reduced in size by space-villain Brainiac and placed in a bottle the crater left behind is both a memorial site and one of scientific interest for the geological samples exposed. The city of Kandor is now kept in Superman's Fortress of Solitude.

    Kryptonian Zoo

    Home to such creatures as the Metal-Eating Beast, The Living Wheel Creature, and the Radium-Eating Gorilla.

    Lake Trom

    A large lake on the continent's south eastern side.

    Meteor Valley

    Long before life existed on Krypton, this valley was created by a monstrously gigantic meteor that glanced off the surface of the planet.

    The Planetary Weather-Control Tower

    The science facility tasked with maintaining control over the planet's weather.

    Rainbow Canyon

    Site where a perpetual rainbow exists.

    Robot Factory

    Where Krypton's robotic labor force is built.

    The Scarlet Jungle

    A place of red vegetation; created by a weird experiment.

    Small Kryptonian Sea

    A picturesque getaway in the continent's south west.

    The Xeno River

    Krypton's largest West-East river, it feeds into Lake Trom.

    Global Catastrophe

    The planet's core became increasingly unstable, due to the reactions the Destroyer had caused and began emitting deadly radiation. The scientist, Jor-El discovered that the planet would soon explode. Jor-El was unable to convince his associates of the impending danger, who could not conceive of leaving Krypton and was himself prevented from leaving. However, he sent his child's birthing matrix to safety shortly before the planet exploded.

    Notable Residents

    Krypton is most famous for being the birthplace of Kal-El, better known as Superman. It was also home to his parents, Jor-El and Lara and his cousin, Kara Zor-El ( Supergirl). It was also the birthplace of General Zod (General Dru-Zod) and his allies Ursa and Non. The monster, Doomsday, was also created there by a scientist known as Betron. Betron is known for teaching Kryptonians the science of genetic engineering and for later being killed by his creation Doomsday.

    Notable Cities

    • Antarctic City
    • Argo City
    • Atomic Town
    • Bokos Island
    • Erkol
    • Kandor
    • Kryptonopolis
    • Vathlo Island
    • Xan
    • Borga City

    Neighboring Planets

    • Rao (sun)
    • Dheron (5th planet from Rao, Krypton was the 4th. According to Superman: Earth One, Krypton and Dheron were fierce enemies, who warred every 20 years when their orbit around Rao brought them within range.)
    • Mithen (moon)
    • Wegthor (moon)
    • Xenon (Possible former moon that spun out of Krypton's orbit.)

    Note: There may have been another four unnamed planets in the Rao system. The sun Rao has also been designated Negus-12.

    Other versions of Krypton

    Krypton of Earth-One

    Silver-Age[Earth-One]Krypton

    The Silver Age Krypton happened between the 50's and 70's. In Superman #238, in the story \"A Name is Born!\" the planet Krypton was discovered by the space explorers Kryp & Tonn. In recognition of their discovery the planet was named Krypton. Many people looking to add something new to Krypton, trying to find different ways about the dead planet's origin as their inspiration , began to realize that for a planet that exploded had a lot of survivors. So in Superman: The Movie this allowed designer John Barry (who also did Star Wars and A Clockwork Orange) to create Krypton into a crystalline utopia. This version of Krypton featured a highly advanced society, where this planet is crime-free. Criminals will be banished into outer space until the criminal's crime intention was completely erased and he/she will be put to use again after his/her sentence is over.This kind of sentence was completely ignored after Jor-El discovered the Phantom Zone.This Planet Krypton was destroyed due to Krypton's unstable uranium core exploding.

    Krypton of Earth-Prime

    This version of Krypton is where Superboy-Prime comes from. This Krypton had a unstable red sun that threatened to consume the whole planet. Jor-El and Lara initially tried to build a device that could teleport them across the galaxy. The prototype of the machine that they built was able to carry no more than fifty Kryptonian pounds of weight. Jor-El knew that the council of science was not considering taking action. At the very last moment when their red sun threatens to consumed their world, he put Kal-El in his prototype machine, where the machine transmitted Kal-El's atoms across the galaxy, so the child would be safely rematerialized on Earth. Moments after that, a large radioactive solar flare that was generated by Krypton's red sun completely consumed the entire planet. Everyone there died instantly.

    Krypton of Earth-Two

    This is where the Golden Age Superman comes from.There is nothing much to know about this Krypton. However, it is stated that everyone of this Krypton possessed super-powers due to their \"millions of years of evolution\",although to a quite lower extant.This Krypton was destroyed due to \"old-age\".

    Krypton In JLU

    \"Krypton:
    Krypton: In The Mind Of Superman

    In the Justice League Unlimited Episode, \"For The Man Who Has Everything\" Mongul enters the Fortress of Solitude on Superman's birthday and gives him a gift called the Black Mercy, an animal that attaches to your chest and grants people their every desire. When the animal attached itself to Superman, it made Superman a Krypton and on this planet his parents was still alive and he had a his own wife Loana and son Van-El. After having many tremors and hearing the voices of Batman and Wonder Woman, he realized that it was all a dream and he had to end up giving up everything he loved. Despite much pain from having to give up knowing what he had come to love more than anything, he was able to tear away from this dream world, resulting in another destruction of Krypton but this one being nothing more than just a dream. This episode was based on Superman Annual #11 by Alan Moore.

    Smallville

    Prehistory

    When the Scrolls of Rao were written, the Ruling Council decided that, should Krypton be destroyed, a chosen Kryptonian could rise on another planet and make a utopia. They hid all of their knowledge in the form of a crystal that was broken into three parts, creating the Stones of Power. The chosen Kryptonian journeyed to the planet Earth where he hid the stones at three different locations; this Kryptonian also came across a tribe of Indians known as the Kawatche and started a new prophecy on Earth about how he would return from the stars to save their world or send another chosen Kryptonian.

    Dax-Ur was one of the greatest scientists to live on Krypton. He designed the Brain InterActive Construct, a self-aware, conscious supercomputer that could permanently run Krypton on a day-to-day basis without the need for manual labor. Dax-Ur then realized the destruction his creation could cause if it fell into the wrong hands and abandoned his designs without completing their construction. He fled Krypton, seeking solace on Earth, where he planned to study the effects that the planet's yellow sun had on various Kryptonian minerals.

    In 1961, Jor-El traveled to Earth as a rite of passage by his father, and unwittingly fell in love with Louise McCallum and met Hiram and Jessica Kent. He left his memories, stored in a memory pendant, behind on Earth and returned to Krypton.

    Jor-El and Lara met sometime after his adventures on Earth, and the two were married sometime before he became a member of the Ruling Council.

    In 1966, a terrible war was fought against the forces of Black Zero, who succeeded in destroying the Kryptonian city of Kandor; among those killed were the wife and young son of Zod who, at that time, was a major in Krypton's military. During this time, the Council commissioned Jor-El to construct an Orb containing the DNA of Krypton's strongest (including Zod and Jor-El himself) with the intent of sending it to Earth so they would be resurrected if Krypton was ever destroyed. Kandor was re-built sometime after its destruction by Black Zero.

    Years after the death of his wife and son, Zod rose to the rank of General, married Faora and began his plans to take over Krypton.

    The War

    Early War

    Zod was a strong believer in the old barbaric ways of Kryptonian society, and believed that his people had become weak and therefore needed to be dictated. So over the years as he grew in power, he gathered loyal disciples and forces that he would use in an attempt to overthrow the Ruling Council and conquer Krypton. When he believed that he had enough forces, Zod mounted an attack on Krypton, beginning a war with the Council.

    After the war had been going on for some time, Zod had caused damage to the Council, so they asked Jor-El to create Dax-Ur's Brain InterActive Construct to aid in the war against Zod, using its extensive knowledge to help the Council defeat Zod. However, Zod learned of the creation of Brainiac and was able to corrupt it, making it an ally to him and his disciples.

    During this time, Zor-El attempted to kill Jor-El, believing that his brother had stolen Lara from him. After his assassination attempt on Jor-El, he was disgraced as a scientist and became the operator for Kandor's mine. Zod used Zor-El's hatred of Jor-El against Krypton, and Zor-El joined Zod's efforts to take over Krypton.

    Since Zod and Faora were unable to conceive children after trying for so long, they decided that, by using genetic engineering, they would create their own ultimate son. Zod and Faora gathered the DNA of the most violent Kryptonian species and fused them all together with their own DNA. They planned to send their \"son\" to Earth, where he would destroy the population, leaving the planet deserted so that, in case Zod could not rule Krypton, they would rule Earth as a family instead.

    Zod gave major roles in the war to his two closest disciples, Aethyr and Nam-Ek, whom he would let make decisions on where their forces should attack. Nam-Ek and Aethyr often conversed with Zor-El, who would tell them of the Council's plans and where would be best to attack and weaken the Council.

    Leading to Krypton's Destruction

    Krypton began experiencing massive tremors during the war, and the Council asked Jor-El to investigate. Jor-El suspected that the tremors were caused because Zor-El was operating Kandor's mine (the last one remaining not in Zod's hands) at full capacity, mining too deep. When the Council questioned Zor-El, he claimed that, without the mine working at full power, the Council would not have enough resources for the war, and that the tremors were temporary and caused by the attacks suffered during the war. Convinced, the Council allowed Zor-El to continue operating the mine at the same capacity.

    Zor-El, however, had a different agenda. A strong believer in Rao's prophecy, he believed himself to be the chosen Kryptonian who would rise on Earth and create a paradise. Because of this, when he realized that Zod was starting to fulfill the prophecy by ravaging Krypton, Zor-El decided that he would complete the prophecy by igniting the planet's core and destroying Krypton.

    Jor-El and the Council eventually managed to apprehend Zod and most of his followers Jor-El convinced the Council to destroy all portals leading to Earth in order to prevent the rest of Zod's followers from escaping through them. The Council and Jor-El destroyed Zod's physical body and placed his essence in the Phantom Zone, along with his wife Faora, leaving them with no escape unless they inhabited a Kryptonian vessel.

    After Zod was captured, Jor-El learned about his association with Zor-El. He forced his brother to stop the dangerous mining operations and placed him under arrest by locking him inside the powered-off mine control room. Zor-El was almost finished with the ignition of the planet's core, so he commanded Brainiac to override the lockdown, allowing him to complete the ignition and escape.

    Destruction

    Zor-El made plans for him and Kara to flee Krypton before its destruction, but she found out about his ties with Zod and tried to expose him. Zor-El, with the help of his disciple Augo, tried to stop Kara, but she was able to notify Lara. When Zor-El tried to stop Kara, she pushed him into a cluster of hologram crystals, injuring him. Zor-El then erased Kara's memory and sent her away to Earth in a spaceship along with a blue crystal that contained his DNA, which could create a clone of him since his injury prevented him from traveling to Earth with Kara. He also put Lara's DNA in the crystal for two reasons: Because of his feelings towards her, and to lure his nephew Kal-El to the crystal should Kara fail to complete her task.

    After Kara contacted Lara, she warned Jor-El about Zor-El's plan to ignite Krypton's core. So they sent their only son Kal-El in a spaceship to Earth away from Krypton's doom. Sometime before Kal-El left Krypton, Zod and Faora had attached the genetic matter that was their \"son\" to Kal-El's ship.

    Jor-El placed his assistant Raya in the Phantom Zone to escape while he and Lara went to try and stop Krypton's destruction.

    In 2008, Brainiac traveled with Kara back through time to Krypton just before its destruction, in an attempt to kill Kal-El before he grew up to save Earth. He tracked down Kal-El and his ship, presumably killing Jor-El and Lara, before Kara attempted to stop him. Brainiac easily overpowered Kara (who was powerless due to Krypton's red sun) when Clark arrived from the future; Brainiac overpowered him as well. That distracted him enough for Kara to find a sharp crystal and stab it through Brainiac, weakening him as Clark placed baby Kal-El in his ship, sending him to Earth as planned.

    After Brainiac began igniting the planet's core, he contacted Nam-Ek and Aethyr, and told them that Zod had indeed been placed in the Phantom Zone and that the only way they could release him was to locate the Stones of Power before Kal-El; otherwise, they would have to force Kal-El. The three of them were able to escape from Krypton in another spaceship, known as the Black Ship.

    Shortly after they all escaped, Krypton's core eventually ignited, leading to the total destruction of the planet, killing billions of people, including Jor-El, Lara, Zor-El, and the Ruling Council.

    Interplanetary Relationships

    Krypton had noticeable relationships with other planets and galaxies, as it was one of the most powerful and advanced civilizations in the universe. Some planets saw Kryptonians as a cold and harsh race. Many other planets looked up to Kryptonians as god-like creatures whereas others would despise their power and greatly hate Kryptonians.

    Some planets, such as Earth and Mars, had good relationships with Krypton, with Kryptonians traveling to Earth frequently via portals. These trips to Earth spawned many Kryptonian connections to Earth, including the birth of the Kawatche tribe and the occult interests in the Stones of Power by the witches Margaret Isobel Thoreaux and her disciples Brianna Withridge and Madelyn Hibbins. Kryptonians, benevolent or otherwise, saw Earth as a paradise due to the powers and abilities they gained under the planet's yellow sun; this caused Earth to become the prime conduit of Krypton's affairs. Martians also had a good relationship with Krypton, as the Martian Manhunter would often go to Krypton to aid his friend Jor-El, but some Kryptonians would look down on Martians as a lower species. The planet Almerac was a distant planet to Krypton, and their young would often be told stories about Krypton, in particular Kryptonian men and about how brave and gallant they were and many Kryptonian men were desired as mates by Almeracian women.

    The destruction of Krypton is well-known throughout the universe, with many species having knowledge of its destruction.

    Notable Citizens

    • Ruling Council: A democratic group that were established and appointed to office sometime after the Kryptonians evolved from strict, lethal warriors to gentle, technologically efficient people.
    • Jor-El's Father: A citizen of Krypton, and father of Jor-El and Zor-El; he sent his son Jor-El to Earth as a rite of passage in 1961.
    • Jor-El: The father of Kal-El, Jor-El was a highly-respected scientist on Krypton and an influential member of the Ruling Council.
    • Lara-El: The mother of Kal-El and loyal wife to Jor-El, Lara was a loving mother and also aunt to Kara, and notified Jor-El about Zor-El's plan to destroy Krypton, giving their son a chance to get off the planet alive.
    • Kal-El: The son of Jor-El and Lara, Kal-El was born on Krypton a couple of weeks prior to its destruction and sent to Earth by his parents, who believed he would be safe there and destined to save Earth from destruction.
    • Zor-El: The father of Kara and brother of Jor-El, he caused Krypton's destruction by igniting its core, believing in Rao's prophecy that he would be resurrected on Earth and create utopia.
    • Dax-Ur: A scientist who designed the Brain InterActive Construct, later dubbed Brainiac. He abandoned his life on Krypton and retreated to Earth.
    • Kara Zor-El: The daughter of Zor-El, she too was sent to Earth with Kal-El along with a blue crystal so she could unknowingly resurrect her father and create a Kryptonian utopia on Earth.
    • General Zod: A renegade army leader, he started a civil war with the Ruling Council in an attempt to conquer the planet with the aid of Brainiac and Zor-El as well as his army of followers.
    • Faora: The second wife of Zod, as well as a former soldier in his army. Before marrying Zod, Faora's DNA was taken and placed in the Orb.
    • Vala: Female member of Zod's army and sister of Faora. Vala's DNA was taken and placed in the Orb, which later resurrected her as a clone after Krypton was destroyed.
    • Disciples of Zod: Loyal servants to Zod, they were given major roles in the civil war and, after Zod's capture, fled with Brainiac to Earth to locate Kal-El to release Zod and create a new Krypton on Earth.
    • Basqat: A member of Zod's army, his DNA was taken and placed in the Orb that was sent to Earth. Years later, he was resurrected as a clone.
    • Alia: A female member of Zod's army, her DNA was taken and placed in the Orb, which later resurrected her after Krypton was destroyed.
    • Raya: An assistant to Jor-El and loyal to the House of El, she tried to help Jor-El and Lara save Krypton, but was put in the Phantom Zone by Jor-El to be safe along with a Crystal of El to protect her from the phantoms.
    • Augo: A student at Kara's school in Kandor, he was also Zor-El's disciple who strongly believed in Rao's prophecy and aided in any way he could to fulfill the prophecy.
    • Bizarro: Created by accident in a laboratory experiment on Krypton, he was a backwards Kryptonian and was placed in the Phantom Zone for his cruel attitude and dislike for life.
    • Brainiac: Krypton's supercomputer that ran every system on the planet, designed by Dax-Ur. Jor-El created a version of Brainiac that took a humanoid form to help win the war with Zod, but was corrupted so that it aided in the destruction of the planet, fleeing before its impending doom.

    Geography

    Krypton orbited the red sun. The planet's terrain was slightly similar to Earth's except for the crystalline architecture of its buildings, its constant cold temperatures and its icy ground; therefore, the Fortress of Solitude, with its crystalline appearance, is a re-creation of Kryptonian landscape, with its crisscrossing crystal towers. Krypton had oceans that ran between the massive continents of frozen plateaus, much like Earth's geography with its land sea.

    Krypton's climate was cold and still. It is unknown how far Krypton was from its red sun, but had to be close enough to sustain life and water.

    Doomsday is the result of his parents Zod and Faora fusing their genetic matter with DNA taken from the most violent, vicious and malevolent creatures that, apparently, can be found on Krypton; these creatures roamed the planet, and were most likely avoided by most Kryptonians.

    Education

    In Kara and the Chronicles of Krypton, Kara attended an educational facility with other young Kryptonians. It was a crystalline structure similar in design to the Fortress of Solitude. The building was destroyed during the war with Zod, after Zor-El planned for it to be attacked by Zod's army in Kandor. Both Kara and Augo narrowly escaped damage from the blast.

    Location

    Clark tells Chloe Sullivan that he's \"not from anywhere near this galaxy.\" Later, Kara asks Clark how pieces of their home planet traveled through 23 galaxies. There are 28 known and inhabited galaxies in the Smallville universe, so that suggests that Earth and Krypton are very far apart.

    The closest galaxy of comparable scope to the Milky Way Galaxy is the Andromeda Galaxy, which is approximately 2,560,000 light-years away. The closest body capable of being called a galaxy is the Canis Major Dwarf Galaxy, approximately 25,000 light-years away. Even if Krypton was in this mini-galaxy, it would still take at least 25,000 years before Earth would notice its disappearance. However, since kryptonite traveled across 23 galaxies, Krypton must be much further away than this.

    We know that Jor-El came to Earth in the early 1960s, therefore meaning that Krypton may have existed at least until 40 years earlier. However, since Kryptonian technology has demonstrated the capacity to manipulate time, it is possible the teleportation portals connected different points in time as well as space. This would be consistent with our present understanding of the consequences of a fold in space-time, or wormhole.

    Also, Dr. Virgil Swann states that he traced the signal from Krypton \"billions of miles\" to where the star should have been. While this is not technically wrong, a more logical and comfortable measure of the distance to the stars would be given in trillions of miles, not billions.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105403/","id":105403,"name":"Superman, Champion of the Oppressed...","issue_number":"1"},"id":30670,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/102295/2614356-krypton__02__001__01_.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/102295/2614356-krypton__02__001__01_.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/102295/2614356-krypton__02__001__01_.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/102295/2614356-krypton__02__001__01_.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/102295/2614356-krypton__02__001__01_.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/102295/2614356-krypton__02__001__01_.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/102295/2614356-krypton__02__001__01_.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/102295/2614356-krypton__02__001__01_.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/102295/2614356-krypton__02__001__01_.png","image_tags":"All Images,DCnU,The Empire"},"name":"Krypton","site_detail_url":"https://comicvine.gamespot.com/krypton/4020-30670/","start_year":"1938"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-30759/","count_of_issue_appearances":643,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-09-18 09:47:49","deck":"The Scientific and Technological Advanced Research Laboratories is a privately run research facilities.","description":"

    Garrison Slate had a dream to use his scientific genius to create a nationwide chain of research laboratories that wouldn't be have the federal government involved but was still able to conduct serious research.

    Even though this took some time it was accomplished and people had come to work there for different reasons. S.T.A.R Labs opened up a dozen facilities from all over coast. Their inventions have been licensed out to countries around the world, and such revenues have allowed Slate to run the company without bowing to stockholder pressures. They have also helped to fund the Teen Titans and also upgrade Cyborg's machinery.

    S.T.A.R. Lab Locations:

    First Appearance: Superman #246.

    Other Media

    Smallville (TV Series)

    S.T.A.R. Labs (aka Swann Technology and Research) was first introduced into the \"Smallville\"-Continuity after the end of the TV Series. It was shown in the comics, that S.T.A.R. Labs was founded by Virgil Swann.

    The Flash (TV Series)

    In 2000, Harrison Wells thought up the idea along with his fiancee, Tess Morgan. Wells wanted to name it \"Technological Engineering Scientific Studies\" or T.E.S.S. for short. She suggested S.T.A.R. Labs. However, Eobard Thawne orchestrated a car accident, killed them both, and took Wells' place. He built S.T.A.R. Labs, and purposefully let the particle accelerator explode, for the express purpose of creating the Flash.

    S.T.A.R. Labs has helped the Flash ever since and other friendly metahumans ever since, and has had a hand in putting away quite a few of the bad ones. Within the main building in Central City there is a main control room, where they can monitor everything that goes on in the building, the remains of the particle accelerator, which was converted into a prison for metahumans, a \"Time Vault\" that was built in by Thawne, living quarters, and a basement. The basement had at one point a trap for the Reverse-Flash, and until recently held a portal to Earth Two.

    Currently, Barry Allen owns S.T.A.R. Labs, and has Cisco Ramon, Dr. Caitlin Snow, and a version of Harrison Wells from Earth Two as employees.

    It has been shown that the S.T.A.R. Labs in Earth One's Central City is not the only location. There was a branch in Starling City that shut down, and there is a version of the lab in Earth Two's Central City as well. Harrison Wells owned it, and it was shown to be a very large and successful business, and seemed to be a tourist attraction.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11864/","id":11864,"name":"Danger-Monster at Work! / Marriage, Kryptonian Style!","issue_number":"246"},"id":30759,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/4972451-image.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/4972451-image.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/4972451-image.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/4972451-image.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/4972451-image.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/4972451-image.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/4972451-image.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/4972451-image.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/4972451-image.jpeg","image_tags":"All Images"},"name":"S.T.A.R. Labs","site_detail_url":"https://comicvine.gamespot.com/star-labs/4020-30759/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-31340/","count_of_issue_appearances":2663,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-08-19 09:50:24","deck":"The Batcave is the secret headquarters for Batman, located in a cavernous cave system beneath Wayne Manor.","description":"

    Description

    The Batcave is Batman’s command center for his war against the criminal underworld of Gotham City. The Batcave is powered by a Hydrogen Generator, allowing its power source to be completely off the grid. The batcave has a supercomputer in it that is more powerful than even the computer systems used by national intelligence agencies(in the Pre-Catacylsm blueprints of the Batcave, it was stated that the Batcomputer was a Quantum-Computer). The batcomputer allows Batman to have around the clock global surveillance and information on all of Bruce’s enemies and allies. The Batcave is linked up to many Wayne Enterprises satellites and is also linked to Oracle allowing her to monitor the cave's security systems.

    Common Objects

    There are three items that are in every incarnation of the Batcave: a full size Tyrannosaurus Rex in which Batman gained when he was on an adventure in Dinosaur Land, the giant size U.S. Penny was taken as a trophy when he defeated the Penny Plunderer (later retconned to have come from Two-Face instead), and a Giant Joker Playing Card. Batman has a trophy case of all the previous Bat-Suit incarnations. Jason Todd's Robin Uniform costume was put on display after his death in “Death in the Family,\" Barbara Gordon’s Batgirl costume was also put behind glass after she was forcibly retired by the Joker in \"The Killing Joke.\"

    Entrances

    There are also many different secret entrances and exits. One of the most used entrances is behind a grandfather clock, in which he turns the dials to 10:47, which was the time of his parents murder, and it would open the door. A waterfall or camouflaged door is used for connecting to the road for the Batmobile. Also almost anyone who knows who Bruce really is knows how to enter and exit the cave safely.

    Several other caves were set up throughout Gotham to accommodate Batman's needs.

    Major Locations

    The Central Batcave

    Located fifty feet below the bottom of Robinson Park Reservoir, is accessible through a secret entrance at the foot of one of the Twelve Caesar statues at the north end of the park. This safe house was put out of commission by Poison Ivy, her \"Feraks,\" and Clayface.

    The Batcave South

    It is a boiler room of a derelict shipping yard on the docks across from Paris Island. This safe house is accessible through a number of false manholes planted throughout Old Gotham streets.

    The Batcave South-Central

    Is located in the Old Gotham prototype subway station, a four-block stretch of track sealed in 1896 and forgotten.

    The Northwest Batcave

    Is a safe house located in the sub-basement of Arkham Asylum. Batman secretly stocked it with emergency rations, all-terrain vehicles, and battery-powered communication equipment.

    Batcave East

    Is an abandoned oil refinery owned by Wayne Enterprises. It fell out of use during a gasoline crisis when the company moved all its holdings offshore decades ago.

    The Los Angeles Batcave

    Was used as a headquarters by the Outsiders when Batman rejoined the group. Another was introduced in 2002's Fugitive story arc, this time in the form of an abandoned submarine.

    Bat Bunker

    Under the penthouse of the Wayne Foundation building, there is a secret bunker. As of Batman #687, Dick Grayson has taken to using this as his Batcave, stating that he wishes to embody the role of Batman in a way that is specific to him as well as getting closer to the action in the city. The bunker is as well-equipped as the original Batcave, including the Subway Rocket vehicle stationed beneath the bunker.

    Arkham Cave

    Bruce created an Arkham Bat-cave when he found a secret location in Arkham Asylum called \"Dead-Man's Point.\" This was where criminals came to commit suicide. Batman jumps off and bat-glides to this location from 100 feet up. An armored Bat-suit, batgrapple and bat bombs are examples of what is stored here.

    There are also various secured penthouses scattered across Gotham City, as well as both across the country and around the world. Each has some form of emergency lock down and comes equipped with gadgets, vehicles, rations and medical supplies.

    Versions

    Pre-Crisis

    \"No

    This was the very first version that was detailed and included areas which batman needed to fight crime in the modern day. Batman's aerial vehicles were housed in a mountain, and the Batcave included a workshop where Batman developed new technology to fight his enemies.

    Pre-Cataclysm

    \"No

    The cave contains a crime lab (which is compromised of a DNA spectrograph and electron microscope), a gym (where Batman works out at daily to keep up his physique), a shooting range (since Batman is a master of all firearms), a training facility, and a library. The batcave also contains a bat-costume vault where Batman works on his batsuit and utility belt, a ramp where his batmobile drives off of (his batmobile exists on a hydraulic turntable), a hangar for his batplane and batjet, a mooring where he houses his batboat, and a subway rocket inside the Batcave when it was used for Jean Paul Valley subbing for Batman.

    Post-Cataclysm

    After the events of Cataclysm the batcave received a major redesign and was built not only to be earthquake proof but serve as a bomb shelter and panic room. Batman added more room and made the entire cave operate on different levels to more efficiently use limited space.

    DC's Relaunch

    \"No

    In the 2011 DC major relaunch, the batcave received a major redesign. It now contains several batmobiles, an airplane hanger for batman's batplane and batjet, a workshop, digital library, and a host of other equipment.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105812/","id":105812,"name":"Batman and Robin","issue_number":"2"},"id":31340,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8624939-ezgif-1-25bf9cc5d2.jpg","image_tags":"All Images"},"name":"Batcave","site_detail_url":"https://comicvine.gamespot.com/batcave/4020-31340/","start_year":"1940"},{"aliases":"Elizabeth Arkham Asylum For the Criminally Insane\r\nThe Crane Center for Health and Wellness","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-31682/","count_of_issue_appearances":1188,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-04-24 09:16:32","deck":"Arkham Asylum for the Criminally Insane is a fictional prison that is located in Gotham City. It is where most of Batman's enemies are imprisoned for treatment.","description":"

    Created by

    Arkham Asylum was created by Denny O'Neil (one of the editors for DC) who is also the co-creator of Ra's Al Ghul, Talia al Ghul and Man Bat. In 1974 it was Dennis O'Neil who first explored the deep psychology of Batman's inner ego. It was this that later lead O'Neil to creating a Psych Ward aka Arkham Asylum, which has since inspired origin stories, video games, and graphic novels.

    It is noted that the name of Arkham comes from the HP Lovecraft's Cthulhu Mythos and its the setting for a majority stories within this cycle. However it is unknown if O'Neil had used this as inspiration.

    Over the years, the depictions of Arkham Asylum have shifted from a rehabilitative mental institution to an anachronistic madhouse fit for gothic storylines to a foreboding prison that happens to have psychiatrists as part of its staff. During the Silver Age of superhero comic books, placement in Arkham Asylum seemed a more merciful sentence than time in prison, in keeping with the more playful depictions of such supervillains as The Joker and The Penguin. However, beginning in the Bronze Age, Arkham Asylum has slowly come to be depicted as a far worse fate than any sort of prison sentence, and most of the Bat Villains in Arkham would find even a high security prison to be a relief in comparison to their stays in Arkham. Midway into the Dark Age, depictions of the regular Gotham prison system showed it to be almost \"comfy\" in comparison to Arkham Asylum.

    Origin

    \"Welcome
    Welcome to Arkham

    The history of Arkham Asylum began in the early 1900s. Arkham Asylum for the Criminally Insane is named after Elizabeth Arkham, who was the mother of Amadeus Arkham, the founder. Amadeus’s mother was suffering from mental illness and eventually committed suicide. Amadeus became the sole heir to the Arkham estate and decided to treat mentally ill patients in order for those to not go through what his mother went though. Amadeus also got married to a woman named Constance and had a daughter name Harriet. He decided to turn his family home into an asylum to treat patients, but while it was being built he treated patients at the State Psychiatric Hospital, while also living at the Hospital with his family. Eventually the family would move back to their home at the Arkham house, while back at home Arkham was notified by the police that one of his patient named Martin “ Mad Dog” Hawkins had escaped from prison.

    On April 1, 1921 Arkham returns home and discovers his wife raped and murdered laying next to their lifeless daughter with “Mad Dog” carved on her body. The same year Arkham Asylum for the Criminally Insane officially opened in November. One of the first patients was Martin Hawkins himself, who Arkham personally insisted on treating. On April 1, 1922 Martin Hawkins was strapped to an electric chair for “treatment” and was electrocuted to death. The death was covered up as an “accident” and Arkham began to fall into madness, believing that the reason he lives is to be an executioner. Arkham would be institutionalized at his own mental hospital, Arkham Asylum, later in life. Arkham died as an inmate in his own asylum.

    There are rumors that he haunts Arkham Asylum to this day or that, in his final madness, he managed to curse Arkham Asylum with a ... something ... that feeds off the madness within and will therefore never allow any patient to recover.

    Arkham Asylum would later be used to imprison some truly insane characters, for example, the Joker and Two-Face who were one of the first inmates of Arkham Asylum. Arkham soon came to imprison all of Batman’s supervillain enemies whether they are insane or not, in part because it had containment facilities for supervillains far superior to those at the regular prisons.

    Notable Arkham Staff

    Ex-Members of Arkham:

    • Jeremiah Arkham - Nephew of Amadeus. Like his uncle, he was incarcerated in his own facility
    • Amadeus Arkham - Founder of the facility. Died as an inmate in his own asylum

    Most Notable Inmates

    • Joker is the Batman's arch foe. He was the cause of much pain in Bruce Wayne's life; such as the death of Jason Todd (Robin II) and he shot Barbara Gordon, (Batgirl) ultimately confining her to a wheel chair for the rest of her days.
    • Two-Face used to be district attorney, but went insane after having acid thrown on his once beautiful face.
    • Scarecrow is a former professor of psychology who uses chemical compounds to cause intense fear.
    • Harley Quinn used to work at Arkham Asylum until she fell in love with her patient, mister Joker.
    • Penguin is a short, chubby man who is known to be seen in the iceberg lounge with beautiful women.
    • Mr. Freeze was in love and happy until a freak accident occurred and the only way for him to survive was to stay encased in ice cold armor.
    • Poison Ivy is known for her obsessive behavior towards plants and almost sister like relationship with Harley.
    • Bane is a large man with superhuman abilities thanks to steroids. He is also incredibly brilliant and is compared to some of the most intelligent beings by the master of assassins, Ra's al Ghul (see below).
    • Ra's al Ghul wasn’t claimed to be insane until of recent. It was the only way to rid the world of his evil without resorting to murder.
    • Riddler has a compulsive behavior to always speak the truth even if it’s masked in the form of a riddle.

    In Alphabetical Order

    In Other Media

    Television

    Arkham appears in several different series.

    Film

    Arkham appears in Batman: Forever. The Riddler is incarcerated there.

    Arkham appears in Batman and Robin. Mr Freeze escapes from there and later becomes the cellmate of Poison Ivy.

    It also appears in Batman Begins. The Scarecrow, Jonathan Crane, works there as a doctor.

    Video Games

    Arkham appears in the Batman Begins video game.

    Arkham appears in Lego Batman: The Video game and offers 15 villain levels plus a bonus Arkham Asylum level.

    Batman: Arkham Asylum involves the Joker taking over Arkham and Batman exploring the island to stop him and the other inmates.

    Injustice: Gods Among Us the Arkham is one of the fighting stages but features two versions of the Asylum, featuring one controlled by the Joker.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-14632/","id":14632,"name":"\"The Threat of the Two-Headed Coin\"","issue_number":"258"},"id":31682,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69462/5492128-rco010_1476864622.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69462/5492128-rco010_1476864622.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69462/5492128-rco010_1476864622.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69462/5492128-rco010_1476864622.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69462/5492128-rco010_1476864622.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69462/5492128-rco010_1476864622.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69462/5492128-rco010_1476864622.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69462/5492128-rco010_1476864622.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69462/5492128-rco010_1476864622.jpg","image_tags":"All Images,Arkham Asylum"},"name":"Arkham Asylum","site_detail_url":"https://comicvine.gamespot.com/arkham-asylum/4020-31682/","start_year":"1974"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-32583/","count_of_issue_appearances":115,"date_added":"2008-06-06 11:27:50","date_last_updated":"2020-11-15 12:36:32","deck":"At the center of the Universe; between light and dark stands Castle Grayskull. For ages the Sorceress has kept harmony. For those who control Grayskull have the Power to be Masters of the Universe.","description":"

    Castle Grayskull is a fortress on the planet Eternia. It is home to the Sorceress who keeps the secrets of Grayskull protected and is the source of He-Man's powers. While the fortress has been redesigned in He-Man's various incarnations, the building always features a prominent skull in it's design. The castle is regularly threatened by Skeletor, who wants the castle's power for himself.

    Though it never mentions who the architects were. the original origin of the castle was build as part of the kingdom of King Grayskull back in the early dark ages of eternian history, its been said at 1000 years old. The castle since the loss of its original owner has been taken care of by generations of women taking upon the mantle called the sorceress, the first was Queen Veena the wife of King Grayskull. many centuries have pass and the current caretaker is the Sorceress (Teela-na), Mother of Teela.

    The castle itself lies in the lands owned by the eternian kingdom Eternos, which is control by King Randor, ancient descendant of King Grayskull. much of the history of Castle Grayskull faded into obscurity and legend as the Council of Elders took over as watchers of Eternia. The Castle sits in the northern region of the evergreen forest of the Light Hemisphere. It would be only after the appearance of He-man that the castle becomes a point of interest and a military focal point between the palace of Eternos and the variety of creatures that would seek to gain access to the castle.

    Alternate Realities

    Injustice vs. Masters of the Universe

    In the series Injustice vs. Masters of the Universe, Castle Grayskull becomes the place where the Anti-Life Equation resides, found by He-Ro and guarded in place since the castle itself is the nexus of all realities and Eternia's equivalent to the Rock of Eternity from DC. Because of this, Darkseid decides to attack Eternia and the Castle of Grayskull in order to finally get their long-awaited power.

    Other Media

    He-man and the Masters of the Universe (Filmation 1983)

    During the original series, There was no origin of the castle stated, only just a legend that it would appear when all hope was lost. This series also does not mention what the secret of Castle Grayskull was, but that Skeletor was determined to capture, destroy, or get what ever secret there was inside. No real consistency was made with the castle as much of it was a plug to push the toy lines for the series.

    Masters of the Universe Movie (1986)

    The opening to the movie introduces us to the castle and its design. much of the design was a mixture of the Eternia playset from the he-man toy collection. it was given key point of focus but little was given in the way of showing. outside of opening intro, nothing is scene of the outside of the castle, The interior was showcased as a large hall with statues of that of elders, or ancients of the past. though the writers stated that much of the design was hard to create due to lack of background information. The main room itself contained drapes, and several pitfalls that seemed to have lead into part of the moat that surrounds the castle. The key factor in the movie that at a certain pinnacle of the moons height sends down periodical rays of energy which given to a person gives them god like status.

    He-man and the Masters of the Universe (2002 Mike Young Productions)

    Mattel decided to bring back and revamp the old Masters of the Universe franchise, this time characters and places were given deeper and more complex story lines. this true was said to be of Castle Grayskull. In the beginning and middle of the first season we are treated to the secret that was kept behind the walls from the first series. the second was the origins of the castle itself and its original ruler. the castle itself has seen and survived many enemies, the likes of which of Hordak, King Hiss and the Snakemen, and Skeletor and his evil warriors. much of the original continuity and designs tried to stay true to the original series.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-122969/","id":122969,"name":"He-Man and the Power Sword","issue_number":"1"},"id":32583,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1481/154480-31021-castle-greyskull.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1481/154480-31021-castle-greyskull.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1481/154480-31021-castle-greyskull.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1481/154480-31021-castle-greyskull.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1481/154480-31021-castle-greyskull.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1481/154480-31021-castle-greyskull.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1481/154480-31021-castle-greyskull.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1481/154480-31021-castle-greyskull.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1481/154480-31021-castle-greyskull.jpg","image_tags":"All Images,Cartoon"},"name":"Castle Grayskull","site_detail_url":"https://comicvine.gamespot.com/castle-grayskull/4020-32583/","start_year":"1981"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-40699/","count_of_issue_appearances":412,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-04-23 12:55:26","deck":"The Negative Zone is an parallel antimatter universe. Discovered by Reed Richards of the Fantastic Four, it was initially referred to as Sub-Space. It is the birthplace of Annihilus.","description":"

    Nature

    The Negative Zone is a largely uninhabited parallel universe within the Marvel Multiverse. Unlike most universes (which came into existence based on deviations from the 616 timeline), the Negative Zone is unique and separate in its existence.

    The Negative Zone has a few bizarre qualities. It is completely composed of antimatter so entering the Zone requires reversing the polarity of all atoms arriving from a positively-charged universe. The entire universe is filled with a pressurized oxygen-rich atmosphere, making it possible to live in space. However there is a mysterious lack of gravitational pull; few planets are able to acquire sufficient mass to sustain life.

    Currently the Negative Zone is collapsing into a singularity, the process resembling the \"Big Crunch\" theorized to be the end of our universe. Most of the inhabitants of the Zone believed that the singularity leads to death. In reality it is the Crossroads to Infinity, a dimensional gateway that conceivably leads to all other universes.

    Civil War

    During the Civil War, it is used as a jail for captured mutants who refuse the Super-Human Registration Act. The area is monitored by robots, and the specific jail is officially known as the Negative Zone Prison Alpha, yet it is more commonly known as 42. Shortly before Secret Invasion, an amount of exotic radiation was found within the Negative Zone and held with the Quantum Flask.

    Dark Reign

    After gathering several reports from various spies Blastaar, who was recently appointed supreme ruler of The Negative Zone by Emperor Ronan of the Kree, and a massive army of Negative Zone inhabitants have stormed 42 and are preparing for a full-scale invasion of Earth. Peter Quill a.k.a. Star-Lord, who was recently exiled to The Negative Zone by Ronan, is being forced to aid Blastaar in the attack on 42. Thanks to the timely assistance of The Guardians of The Galaxy along with the unregistered super-hero Jack Flag; StarLord was able to escape and warned Reed Richards, Gauntlet and Baron Von Blitzschalg about Blastaar's armies.

    The gates to 42 were shut down and The Negative Zone was sealed off from Earth-616. At the same time Blastaar turned 42 into his own personal fortress where he met with the last two surviving members of The Fraternity of Raptors - Talon and Razor - who forged an alliance with Blastaar and as a sign of good faith gave him The Cosmic Control Rod. One major problem has arisen however, due to lack of information transference, Norman Osborn knows nothing about Blastaar having taken control of 42 and following the capture of Hardball has reopened the gates to 42. With the gates back online Blastaar and his armies are waiting in hiding as the gates reopen, ready to strike and cross over to Earth-616 at a moment's notice.

    Other Realities

    Fantastic Five

    When Big Brain went offline, the remaining members of the Fantastic Five went to investigate what happened to Mr. Fantastic. As well as Human Torch, Thing, Ms. Fantastic and Franklin Richards, Stinger replaced Big Brain. They found Reed to be protecting his wife Susan, aka Invisible Woman from dying whilst she patched together holes in reality.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8613/","id":8613,"name":"\"This Man...This Monster!\"","issue_number":"51"},"id":40699,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2862893-ohotmu_a_to_z__4___page_25.jpg","image_tags":"All Images,The Zone"},"name":"The Negative Zone","site_detail_url":"https://comicvine.gamespot.com/the-negative-zone/4020-40699/","start_year":"1966"},{"aliases":"Stark Tower","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-40830/","count_of_issue_appearances":840,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-01-19 13:01:14","deck":"Owned by billionaire industrialist Tony Stark, AKA Iron Man, it was formally called Stark Tower but is now known as Avengers Tower. It is the current headquarters and main base of operations for \"Earth's Mightiest Heroes\".","description":"

    Overview

    Stark Tower was formally the main hub for most of the scientific and entrepreneurial endeavors of Stark Industries. Through an act of philanthropy Tony Stark donated the use the top floors to the Avengers, and had the space outfitted with all of the latest gadgets and security.

    During the events of Civil War Tony Stark let Peter Parker and his family stay in the tower. After Peter turned against Tony and sided with Steve Rogers, he was kicked out. Later, Avengers Tower was used by Tony's Pro-Register Team, the Mighty Avengers.

    After the tower's destruction during World War Hulk, Tony rebuilt it using S.H.I.E.L.D. funds. Tony was eventually removed from his position as Director of S.H.I.E.L.D. in the wake of the Secret Invasion, and replaced by Norman Osborn who took possession of all of Stark's belongings while reforming S.H.I.E.L.D. into H.A.M.M.E.R. (this included the tower, which he then made headquarters for his own Avengers team).

    Soon after the fall of Norman Osborn and the Sentry during the siege on Asgard, Sentry's watch tower disappeared after his death. It had formally existed atop of Avengers Tower. Tony Stark was then given back the building, after which Thor placed a pillar on top to let the world know that both Earth (Midgard) and Asgard are allies.

    The main tower is 93 stories high, and measures roughly 1130 feet in height (without including the now additional Asgardian pillars) The Avengers section of the building, also houses sufficient space for the many Avengers members, a communications room, hooked to various other important organizations, a general Avengers library (electronic), a forensics laboratory, a war room, a pathology research wing, and various hangars for various Quinjets and helicopters. The non related Avengers areas feature a children's hospital (Maria Stark Memorial Children's Hospital) and a substance abuse clinic.

    In Other Media

    The Avengers

    \"No

    In the 2012 film, at the end, Tony Stark's central hub that could provide renewable energy for all of New York City non-stop for a year was partially destroyed, only one letter remained: the letter \"A.\" This was a nod to the fact that it will serve as the team's future base of operations.

    Avengers: Age of Ultron

    \"No

    In the 2015 sequel, the rebuilt Stark Tower, now known as Avengers Tower, acts as the home base of the Avengers.

    Spider-man: Homecoming

    Although no longer used by the Avengers. Happy Hogan was put in charge for operation: Moving Day. And is seen loading the remains of the building for the move to the Avengers new location in upstate New York. The plane carrying the cargo from Avengers towers to the new Avengers facility would later be attacked by Vulture.

    Television

    Avengers Assemble

    \"No

    Avengers Tower appears as the team's base of operations in Avengers Assemble. The heroes first move into Avengers Tower at the end of the two-part series premier, with the building acting as their new HQ after Avengers Mansion is destroyed. It also appears in Ultimate Spider-Man, which is set in the same continuity.

    Video Games

    Marvel: Ultimate Alliance

    In this videogame, Avengers Tower was still named Stark Tower and is very frequently visited throughout the game.

    Marvel Heroes

    In the MMOARPG game Marvel Heroes Avengers Tower (or Stark Tower) is the main headquarters of the players. There you can find vendors, healers and the storage system S.T.A.S.H. (Starktech Armory and Supply Hoard). Famous non-playable superheroes and other characters can be found within the building.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-131882/","id":131882,"name":"Danger Deep","issue_number":"36"},"id":40830,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/39027/3461879-avengers%20tower.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/39027/3461879-avengers%20tower.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/39027/3461879-avengers%20tower.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/39027/3461879-avengers%20tower.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/39027/3461879-avengers%20tower.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/39027/3461879-avengers%20tower.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/39027/3461879-avengers%20tower.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/39027/3461879-avengers%20tower.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/39027/3461879-avengers%20tower.jpg","image_tags":"All Images"},"name":"Avengers Tower","site_detail_url":"https://comicvine.gamespot.com/avengers-tower/4020-40830/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-40910/","count_of_issue_appearances":14,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-01-19 19:19:40","deck":"Khera is the planet that all the Kherubim in the various Image and Wildstorm titles originate from.","description":"

    To outsiders, Khera seems like a utopia, with its highly advanced technology, crime-free cities and fair government. In reality this is the furthest thing from the truth. Despite how things may have been in the past, present-day Khera is a planet populated by elitists. They live in a system that separates people by race, sex, species and type of superhuman ability. There are 3 types of being that are considered true Kherubim on Khera. The Pantheon (of which Mr. Majestic, Mythos, Spartan, Imperator, Lord Entropy and Emp are members) consists of all males who possess a Superman power set. High ranking Pantheon members are also called \"Lords\" and are capable of becoming \"High Lords\". High Lords can abandon their physical bodies and ascend to a higher level of being. After the Pantheon there are males and females who are \"normal\" by Kheran standards. All their physical attributes are superhuman (though not nearly as high as that of Pantheon members) and they extremely long lived. The Coda (of which Zealot is a member) are the females who are trained from birth to be warriors. The Pantheon and the Coda make up the government of Khera and are usually in opposition. The Pantheon prefers to ignore their violence-filled past and strive for intellectual and scientific advances. The Coda feels they should always be ready for war and actively looking to conquer others. In both groups there are Lords, beings with vast psychic powers and the ability to control energy. The last group is the Shaper’s Guild. Genetically they are not true Kherubim but they are not considered different by the other two groups. The Shapers are all like Warblade; they can turn their bodies into liquid metal, shape it, and harden it into various bladed weapons as well as create projectiles. They are the architects and engineers of Khera. There is also a whole population of sentient robots like Spartan that are used for personal protection. The Titanthropes, or Titans, are the original race of Khera. They live underground and are used for heavy labor. Maul was a Titan-human hybrid. They are treated unfairly by the “true” Kherubim and not considered as good as even the human-Kherubim hybrids, but they are not as bad off as the Daemonites. After the war, all Daemonites were made slaves. They are the lowest of society and live in the hidden ghettos of Khera.

    Every Kherubim is a member of one of 7 military factions. They are called factions like membership is a choice, but membership is decided when a Kherubim is born and is connected to the type of being each Kherubim is. Members of the Kherubim Pantheon are Warlords that lead other Kherubim into battle and thanks to their amazing abilities can handle the biggest threats on their own. Not all Pantheon members are Warlords, but all Warlords come from the Pantheon. Warlords all all have a Superman power set and they are the \"most highly evolved members of the Kheran nobility\". The normal Kherubim are split into two groups, the Coda and the Brotherhood of the Blade. The Coda, as mentioned, are all female and the Brotherhood are all male. Other than sex, the two groups are basically the same but the Coda has more political power. Some members of the Brotherhood have taken to splicing Shaper DNA into their own to give themselves similar metallic-blade powers. The Titans are all Titanthropes and are used for their brute strength and massive size. The Shapers Guild and the Spartan Guards don't change at all from how it is when they are not in war. The last faction is the Adrastea. They are like the normal Kherubim but they all have psychic powers (many are empaths). The group was originally a slave caste but became a powerful underground criminal organization.

    In Majestic, Mr. Majestic's second solo series, the true history of Khera and the Kherubim was revealed. The original Kherubim came from somewhere else a long time ago and the Kherubim race that exists now are just copies, made and distributed through space thanks to Kherubim Technology. The first Kherubim created Planet-Shapers, massive terraforming machines that could be sent to suitable planets and through a long process, would rebuild the Kherubim race there. The Planet-Shapers would land on a still-forming planet and stay dormant beneath the mantle until sentient life evolved on the planet. At this point, the Planet-Shaper would release Kherubim (made inside the machine from \"pure Kherubim gene-stock\" it carried) and the natural sentient race of the planet would be made into a servitor race. To ensure that the new Kherubim flourished, the Planet-Shapers would restructure climate and geographic conditions to best suit the Kherubim. Also, giant robots would come from the Planet-Shapers and kill most of the servitor race, thinning down their numbers so they would never pose a threat to the new Kherubim. Sometimes the native sentient race was considered \"unusable or deviant\" and therefore had to be destroyed. The Daemonites (the Kherubim's worst enemy) are just a slave species that were able to fight back, not actually evil creatures. The only people that know this secret history are Mr. Majestic, Zealot and Helspont.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-47286/","id":47286,"name":"Cat's Cradle","issue_number":"22"},"id":40910,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/82240-179573-khera.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/82240-179573-khera.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/82240-179573-khera.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/82240-179573-khera.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/82240-179573-khera.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/82240-179573-khera.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/82240-179573-khera.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/82240-179573-khera.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/82240-179573-khera.jpg","image_tags":"All Images,Khera"},"name":"Khera","site_detail_url":"https://comicvine.gamespot.com/khera/4020-40910/","start_year":"1995"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-40924/","count_of_issue_appearances":466,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-09-03 04:06:36","deck":"Home of two of the four Flashes, Keystone City, Kansas, is also the sister city of Central City, Missouri. Keystone City is sometimes known as the \"blue collar\" capital of the US; it is an industrial city of tough, hard-working people and even tougher superheroes.","description":"

    Keystone City is the city, in which the Flash, the Fastest Man Alive, resides.

    Location, History, and Culture

    Like Gotham City (home to Batman), Metropolis (Superman's turf), and Star City (Green Arrow's stomping grounds), Keystone City is home to a superhero - the Scarlet Speedster. However, it is different in a large way. Instead of being dark, like Gotham, or huge, like Metropolis, Keystone City is a small blue-collar town. Keystone City is in Kansas on the Kansas-Missouri border. Keystone City is approximately 35 miles north of Kansas City. The Missouri River separates Keystone City from its sister city, Central City, Missouri. The golden age Keystone City was a fictional town near Philadelphia, Pennsylvania (see Secret Origins #9). Pennsylvania is known as the \"Keystone State\".

    Keystone City is near a few landmarks, such as Iron Heights. Iron Heights is a super villain prison that is specially used for Flash's villains.

    After the Louisiana Purchase, a small settlement was created near the Missouri River in 1806. Following the Civil War. Keystone City became a supply center, as most business dealt with heavy industry. The transcontinental railroad through the city caused it to become a major transportation hub, from which the city could manufacture and distribute its industrial products. During World War II, the city retooled for the war effort, manufacturing aircraft and supplies for the huge war waged against the Axis.

    Keystone City has been described as the blue-collar capital of America. “Keystone City, the backbone of the Midwest.\" When the town was established in 1727, horseshoeing was the major occupation. Times change. Iron and steel forging, automobiles, coal, machinery tools, all of them come from this city.... The blue-collar capital of the U.S. and proud of it... It’s a tough place, but a good place. With honest people who aren’t afraid to get their hands dirty.” This quote describes the place perfectly-it's a tough, friendly poor town full of hard-working people. Keystone is a huge center of manufacturing goods and supplies, too-supplies include iron, cars, and heavy machinery. The union is also huge, as the workers have combined to form one of the biggest unions in America.

    Flashes

    The first Flash, Jay Garrick, was the first and longest staying in Keystone City. He was introduced in 1940, and was in Keystone from the start. He fought villains like Thinker, Shade, Fiddler, and the especially evil Turtle. Eventually, though, after ten years, Jay Garrick retired as Flash. This gave Turtle an opportunity, and he built a criminal empire in Keystone that flourished for years. However, the third Flash (Wally West) arrived and brought Turtle's empire down. Barry Allen and Bart Allen, the other two Flashes, never have resided in Keystone City.

    Continuity Crisis

    Originally, in Pre-Crisis history, Jay Garrick lived and fought villains from his base residence in Keystone City before retiring at a historical period when comics started to fall out of popularity. But when DC introduced the Barry Allen Flash, starting the Silver Age, it was said that Allen lived in Central City-which had never been mentioned Pre-Crisis. DC's initial solution was oft-used before 1986--DC writers set Barry Allen's Central City on another Earth. It was noted that Keystone City was on Earth-2 with Garrick, while Central City was the Earth-1 home of Barry Allen. However, DC pulled all of the universes together in the universe-altering Crisis on Infinite Earths, which bound all the universes together. DC covered the problem by making the two sister cities across from each other, while keeping each Flash in his respective city.

    Right now, the Infinite Crisis event has sucked both the Flashes that were in Keystone City into the Speed Force. What is Keystone's future without a Flash to protect them? We'll have to wait and see.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159690/","id":159690,"name":null,"issue_number":"34"},"id":40924,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/787/86274-137272-keystone-city.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/787/86274-137272-keystone-city.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/787/86274-137272-keystone-city.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/787/86274-137272-keystone-city.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/787/86274-137272-keystone-city.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/787/86274-137272-keystone-city.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/787/86274-137272-keystone-city.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/787/86274-137272-keystone-city.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/787/86274-137272-keystone-city.jpg","image_tags":"All Images,Keystone City"},"name":"Keystone City","site_detail_url":"https://comicvine.gamespot.com/keystone-city/4020-40924/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-40967/","count_of_issue_appearances":347,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-08-15 11:57:46","deck":"An island nation off the east coast of Africa. Once known for the enslavement of mutants, Genosha was ruled by Magneto before being destroyed by Cassandra Nova.","description":"

    Origin

    For most of Genosha's time, it was an island off the east coast of Africa. Its capital was Hammer Bay. At a glance, it seemed to be a good, prosperous nation. The standard of living was high and the citizens were well-treated. The economy was excellent and growing all the time. Political or racial turmoil was non-existent. Good things seemed to be happening in little Genosha. But all these things only applied for the humans of this small, inconspicuous, seemingly unimportant island nation.

    Creation

    Genosha was created by Chris Claremont and first appeared in Uncanny X-Men issue 235 (1988).

    Major Story Arcs

    Genosha

    \"The
    The capital

    In Genosha, the mutant population was enslaved. David Moreau, a scientist, was known as the Genengineer. Anyone with the mutant gene was forced through a horrific treatment developed by the Genengineer. They were genetically modified and enhanced for their powers, and stripped of free will. They were treated like animals and given numbers, identified by those numbers. Their powers were changed to fit the needs of the economy. Then they were shipped off and worked as slaves until they died. No one was allowed in or out of Genosha. If you are a citizen, you will stay a citizen until you die. If you are not a citizen, then you're not getting in Genosha. The Magistrates were a special police force that tracked down people who tried to escape and brought them back forcibly, and the Press Gang handled mutant problems. All in all, it was a horrible place.

    The island of Genosha was often an enemy of the X-Men and other teams in the Xavier Institute (including X-Force, X-Factor, and Generation X). Since mutants are horribly treated there, they often go to rescue the poor people, and Magistrates often attack them to bring them into Genosha, Wolverine, Rogue, and Madelyne Pryor were kidnapped by Magistrates under the orders of the Genengineer and Cameron Hodge. Hodge used to be an ally of X-Factor, but he became a mutant hater. They were rescued, though. Later, Wolfsbane and Storm were kidnapped and going to brainwashed to be Genoshan \"citizens\". The X-Men freed their compatriots and toppled the Hodge and the Gengineer's regime. The new government promised kindness and humane treating of mutants, but spurred on by the Fabian Cortez, Civil War broke out between the Mutates and Magistrate forces.

    Magneto's Regime and the Fall of Genosha

    \"Civil
    Civil War in the tiny nation

    Playing on his reputation, Magneto made his last blackmail attempt on the world threatening to destroy planetary EM field if he was not granted territory to create a mutant homeland. Despite the efforts of the X-Men to stop him, including the ultimate sacrifice of Magneto's clone Joseph, the U.N. granted Magneto Genosha. The island nation had been torn apart by civil war between the Magistrate regime and the Mutate rebellion for months (perhaps years) and the U.N. hoped Magneto would be so bogged down in fighting this war, the Legacy Virus sweeping through the population, and Genosha's failed economy that he would never trouble the world again.

    They were wrong. Within six months, Magneto had led the mutants and mutates to victory, and the Legacy Virus was cured. Magneto quickly rebuilt Genosha into a prosperous mutant paradise. Overconfident, Magneto declared war on humanity again. The X-Men snuck into Genosha to intervene and in the course of battle, Magneto's spine was severed by Wolverine. As Magneto's powers are dependent on his nervous system being intact, this not only left him paralyzed but unable to use his powers. This event would end up costing millions of lives.

    After Cassandra Nova's Attack

    \"The
    The destruction of Genosha

    In revenge for Xavier's mistreatment of her, Cassandra Nova found the last living relative of Bolivar Trask, who had created the Sentinels. She then convinced him to give her control over the Sentinels. She sent them them to Genosha where they began wiping out the population. Depowered, Magneto was unable to stop them. The entire island was reduced to a pile of rubble, and all the progress was lost. 16 million people were killed, leaving perhaps a couple hundred survivors. Nova was eventually defeated by the X-Men back in New York, but the damage was done.

    Magneto and Xavier: Back on Genosha

    \"No

    Magneto and Professor X joined forces to reform Genosha, but their work was interrupted by the Scarlet Witch's nervous breakdown and the events of House of M. In the world of House of M, Geonsha was Magneto's seat of powers, and therefore the most prosperous nation in the world. However, when Wanda revered the world to normal, not only was Genosha restored to it's decimated state, but her entire mutant population, including its leader, was turned into normal humans. SHIELD eventually removed the last of the Genosha population for medical treatment, but Magneto remained. When they attempted to remove an unconscious Magneto from Genosha after his and the Avenger's encounter with the Collective, Magneto escaped.

    Whether Magneto retains legal possession of Genosha is unknown.

    Necrosha

    Selene's plans involve resurrecting the millions of dead mutants on the island and to make it the start of her kingdom.

    Magneto: Return

    Some months after Magneto had joined the Uncanny X-Men, the events of Avengers vs. X-Men happened. This caused the mutant team to again hide from the law. During this time, Magneto became embittered again when he saw the raw hatred some humans had against his kind. He left the X-Men and eventually returned to Genosha with a number of new mutants whom he sought to guide into the future. Among them where Briar Raleigh and a number of clones of the Marauders. Magneto left Genosha again when the Universal Incursion started to happen which caused the Secret Wars.

    Sinking the Island

    \"Genosha's
    Genosha's final destruction by the hand of Magneto

    After the events of Secret Wars and the war with the Inhumans, which released the Terrigen Mists, Magneto recruited a number of old allies, among them where the X-Men's Psylocke, Archangel, Fantomax and M as well as former villains Sabretooth and Mysticque. It was then that Magneto detonated the complete island of Genosha with a large nunber of explosives. While at first he told his teammates that he did it to 'send humanity a message', he later revealed to Shen Xorn (the mad Xorn's brother) that he actually did it to keep himself from trying to rebuild his former nation, thinking it would always end up in dissaster.

    Other Versions

    X-Factor Forever

    Through unknown means Apocalypse managed to convince The Celestials that Genosha was a threat to Mutantkind much like The Deviants had been a threat to Humankind and so, like Lemuria before it, Genosha was obliterated by Arishem the Judge and his Host. While much of its population managed to escape, not all of Genosha's inhabitants were fortunate enough to escape the wrath of their Celestial creators.

    Ultimate Genosha

    Ultimate Genosha is a small island south of Madagascar. It mostly does television programs, and the Ultimate versions of Longshot and Mojo live there. It seems to be crossed between Earth-616 Genosha and the Mojoworld, as mutants are only second-class citizens there.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-30194/","id":30194,"name":"\"Welcome to Genosha\"","issue_number":"235"},"id":40967,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3101920-xmen13201.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3101920-xmen13201.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3101920-xmen13201.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3101920-xmen13201.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3101920-xmen13201.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3101920-xmen13201.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3101920-xmen13201.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3101920-xmen13201.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3101920-xmen13201.jpg","image_tags":"All Images,Artwork,Genosha"},"name":"Genosha","site_detail_url":"https://comicvine.gamespot.com/genosha/4020-40967/","start_year":"1988"},{"aliases":"Asgardia","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-40990/","count_of_issue_appearances":1439,"date_added":"2008-06-06 11:27:49","date_last_updated":"2022-06-06 13:58:23","deck":"Asgard is the dimension that is inhabited by the Asgardians or Norse gods. It is the highest of the nine worlds that make up Norse cosmology. Asgard refers to both the dimensions, kingdom, and city of the Norse gods.","description":"

    Origin

    \"Asgard
    Asgard - Home of the Aesir

    Asgard, even though inhabited, is physically different from Earth and other planets. Asgard is not a sphere-like shape, but a piece of land that floats in space. Asgard also doesn't rotate on an axis nor does it rotate around the sun, though there may be an object of some sort that gives it its sunlight. Gravity is similarly like Earth, although heavier. For example, a chair made of wood would be considerably heavier than one on Earth. What keeps the land together is unknown, but it keeps it together. Water doesn't pour from the land, as the gravity keeps it there as well.

    \"I say unto thee... The good fight have ye fought!! The enemy is vanquished! The cause is won! The realm eternal still doth stand! So Be It! And now, I bid thee, one and all... Draw closer to thy liege! Immortals of the realm... Ye may approach the kingly presence! Thanks to thy valour... Thy matchless devotion... Asgard endures! But, many are the battles that lie ahead! Many are the foes We yet must face! Many the dangers to be overcome! Yet, verily I say unto thee... Whate'er may befall... We shall face it together!! Thus shall ever be... Odin, thy king, stands with thy warlord, the mighty God of Thunder! And with us stands Asgard... Forever united! Now let thy voices make the very heavens ring..! HAIL ASGARD!\" -- Odin (after Troll War).

    Asgard itself is connected to nine other dimensions which form the nine worlds of Asgardian cosmology through naturally occurring dimensional portals. Sometimes the nine different worlds have been treated as the same dimension with Midgard (Earth) being separate.

    Creation

    \"Heimdall
    Heimdall guarding the Bifrost Bridge

    Asgard's true origin is unknown due to the cycle of Ragnaroks. According to one story, originally there was a void, Ginnungagap, bounded on either side by Muspelheim, the land of fire and Niflheim, the land of ice. When fire and ice met, they combined to form a giant named Ymir and a cow named Audhumbla who nourished Ymir. She survived by licking the salty ice blocks. From her licking emerged Buri who fathered Bor and through him the Asgardian race. Bor took the frost giant Bestia as his wife and fathered three children: Odin, Vili, and Ve. Bor is attributed with founding the city of Asgard and being its first king. The three brothers eventually slew Ymir and from his body made the Earth and humanity. After Bor's disappearance and the deaths of his brothers in battle with Surtur Odin became the sole ruler of the gods.

    Another version states Asgard as it exist now only came into being about two thousand years ago. Every few thousand years Asgard is destroyed in Ragnarok only for a new Odin to form, rebuild the city and start the cycle anew with the gods living similar lives as they did before with slight differences. This cycle was perpetuated by mysterious beings called Those Who Sit Above in Shadow so they could feed off the energy released before being broken by Thor.

    Another version given recently by Odin states when Odin and his brothers were children Bor took a seed from a dimensional rift and planted it in the ground creating the World Tree. It is unknown if this merely connected the nine worlds, created all of them including Asgard, or some combination.

    Another version suggests the beings who became known as the Norse gods were formed from the \"godstuff\" scattered by Atum the God-Eater after he slew the evil elder gods. This godstuff was shaped by early human perceptions which formed all modern pantheons. The gods then eventually traveled from Earth to the dimension that became known as Asgard.

    Another version suggests the gods were originally tribes of mortals that somehow ascended to godhood and eventually moved to Asgard.

    It is unknown to what extent any of these stories are true. It is possible several of them are true or bits and pieces from various ones from the true origin. It is also possible none of them are true.

    \"Thor
    Thor with Asgard in the background

    Whatever the original beginnings, Odin's desire to lead Asgard led him to betray his father during a battle with frost giants. With Bor turned to snow then scattered by the winds and his brothers fallen in battle with Surtur, Odin became the High Father of Asgard. As the years passed, Odin's wisdom grew stronger and he sought to understand more of the universe beyond the nine worlds. His curiosity lead to war with the Dark Gods, a pantheon of alien gods that were Asgard's opposite in every way that mattered. War broke out between them and Asgard fell for the first time. After Thor aided his father in battle, Odin retook Asgard and banished the Dark Gods. Centuries passed and Asgard fell victim to Sutur of Muspelhiem, and in a final battle, Odin and Sutur were killed in battle and Asgard fell once again. However, they both returned alive and Odin return to rule the kingdom.

    Odin learned of the cycle of Ragnarok and kept it secret from his people. At one point, the Egyptian god, Seth sought to destroy Asgard and with Thor lost in Onslaught, he saw it as the perfect time to claim Asgard and end the cycle to reshape the kingdom to his rule. However, the Asgardians rose and stopped Seth but in their weakened state, the Dark Gods returned and destroyed Asgard to reshape in their own image. Eventually, Thor returned and freed his people and Asgard returned to its wondrous state again. However, those times grew dark again as Surtur returned to Earth and Odin was once again lost and Thor took over as ruler. Thor moved Asgard to Earth and attempted to better life for all humans, but due to Resistance from without and treachery from within eventually subjugated the Earth to his rule. In time, he was forced to face his crimes and returning to the past prevented that timeline from ever coming about. His actions during this caused the Odinforce to leave him making Asgard vulnerable. It was during this time that Loki started Ragnarok and sought to reshape Asgard in his own way. He devastated Asgard until Thor had discovered the truth and used the powers of the Rune Stones to end Loki's rule and break the endless cycle of Those who Sit above in Shadow for good.

    Attractions

    • Dome of Combat
    • Giant Bust of Odin
    • Hall of Heroes
    • Monument to the Unknown Warrior
    • Museum of Weaponry
    • Shopping Center
    • Temple of Titans
    • Warlock's Haven
    • Warrior's Walk
    • Yggasdral (Tree of Life) Monument

    Post Destruction

    \"Fall
    Fall of Asgard

    After the destruction of Asgard and the Civil War had concluded Thor returned from the dead. Choosing an appropriate spot in the Oklahoma desert Thor re-created the city of Asgard exactly as it was before Ragnarok. When the farmer that owned the barren land resented Thor putting a mystical land above the land he owned Thor offered to purchase the land, allowing him to enter Asgard's vaults and take whatever price that he deemed the land worth from the treasure stores. Asgard currently hovers above this spot in Broxton, Oklahoma. It was targeted by the Skrulls during Secret Invasion.

    During Siege, Asgard was invaded by Norman Osborn and the majority of his forces. As a result of the battle, Asgard was toppled and destroyed by the Sentry. With their city in rubble the Asgardians had no choice but to try and rebuild. To strengthen the relationship with Midgard, Thor relocates Heimdall's observatory on top of Stark Tower. It was renamed Asgardia.

    The Nine Worlds

    \"Asgard
    Asgard at the top of the World Tree

    There are Nine Worlds in the Asgardian cosmology. Over the years they have been treated both as separate dimensions and as one dimension.

    • Asgard which is the home of the Asgardians.
    • Vanaheim which is the home of the Vanir.
    • Alfheim which is home to the Light Elves.
    • Midgard which is the Earthy plane of existence.
    • Jotunheim which is the home of the Frost Giants.
    • Nidavellir which is home to the Dwarves.
    • Svartalfheim which is home to the Dark Elves.
    • Muspelheim which is home to the Demons
    • Hel which is the realm of the dead.

    Ultimate Asgard

    \"Ultimate
    Ultimate Asgard and Yggasdral

    In the Ultimate Marvel universe, Asgard is also home to Norse gods. In 1939, Loki, posing as Baron Zemo, made an alliance with the Frost Giants who laid siege to Asgard, intending to cause Ragnarok, the end of all things. Odin banished Loki to the room without doors, saving his life. The leader of the Frost Giants, Mammoth killed Odin, Thor in despair over his father's death and his brother's betrayal, used Mjolnir to destroy Asgard, along with the Frost Giants and the rest of the Asgardians. As he was confined to the room without doors, Loki was the only Asgardian god to survive the destruction of Asgard. Thor and Balder were reborn as humans on Earth in the late 20th century. During the events of Ultimate Comics: New Ultimates, Thor was killed, and reborn as an Asgardian, shortly after this in Ultimate Comics: Fallout, Asgard was recreated in the skies above Europe, as part of Odin's greater plan to remake two worlds, Asgard into what it once was, and Earth into what it can be. Asgard was destroyed in Ultimate Comics: Ultimates issue 2, by Reed Richards and the children of tomorrow. Thor placed his son, along with Mjolnir in the room without doors to save his life, as Odin once did for Loki.

    Other Media

    Television

    \"Animated
    Animated Asgard
    • Asgard appears in the Spider-Man and His Amazing Friends episode \"The Vengeance of Loki.\" Thor shows the Spider-Friends what Asgard is like.
    • Asgard is featured in The Super Hero Squad Show. It is shown as a floating city with Bifröst Bridge going from Asgard to Super Hero City. In \"Oh Brother,\" Loki persuades Doctor Doom into lending some of his Lethal Legion members into helping him invade Asgard.
    • Asgard is introduced in The Avengers: Earth's Mightiest Heroes episode, \" The Siege of Asgard\".

    Film

    \"Asgard
    Asgard in the live action Thor movie
    • Asgard is the setting of Marvel Animation film, Hulk vs. Thor.
    • Asgard has appeared in the live-action Marvel Studios film, Thor directed by Kenneth Branagh. It looks like a shining city suspended at some point in the universe with celestial stuff surrounding it. It was later attacked by Frost giants lead by Loki to take the throne but his plans where thwarted by Thor. The Bifrost was broken at the end.
    • Asgard is scheduled to be the setting of the upcoming animated film, Thor: Tales of Asgard.

    Video Games

    • Asgard is featured in Marvel: Ultimate Alliance. Loki attacks Asgard with an army of super-soldiers while Odin battles the Frost Giants and Thor is on earth. In order to release a conquered Asgard, the heroes open the doors of Bifröst Gate so that reinforcements can arrive and release Balder, Tyr, and Heimdall before going to look Odin in Niffleheim.
    • Asgard is featured in the Marvel Super Hero Squad video game.
    • Asgard is featured in Thor: God of Thunder based on the live-action film.
    • Asgard is a stage in the fighting game Marvel vs. Capcom 3: Fate of Two Worlds.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-324523/","id":324523,"name":"Vikings","issue_number":"29"},"id":40990,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3496668-earthsmightiest00604.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3496668-earthsmightiest00604.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3496668-earthsmightiest00604.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3496668-earthsmightiest00604.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3496668-earthsmightiest00604.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3496668-earthsmightiest00604.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3496668-earthsmightiest00604.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3496668-earthsmightiest00604.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3496668-earthsmightiest00604.jpg","image_tags":"All Images,Asgard,Earth-616 Odin,Scott Kolins' Art"},"name":"Asgard","site_detail_url":"https://comicvine.gamespot.com/asgard/4020-40990/","start_year":"1961"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41019/","count_of_issue_appearances":4,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-06-05 10:23:01","deck":"An American concentration camp in the 1950s where horrible genetic experiments were performed.","description":"

    The 1950s were a difficult time for the United States. Post-war internationalism coupled with a fear of Communism's spread forced the American government to go to extreme measures to protect itself. One of these measures was Science City Zero.

    Located somewhere in the American Southwest, Science City Zero was a top-secret research installation. Human subjects were brought in - usually political dissidents, reactionaries, vagrants, drinkers and, well, anyone who was generally disapproved of - and used to test the limits of biotechnology and the human body.

    Subjects were rendered invisible, grown to giant sizes, had their brains replaced with energy fields, and resurrected from the dead, for starters. The grounds were patrolled by atomic dogs and giant ants, and getting out was nearly impossible.

    The lead scientist in Science City Zero was Randall Dowling, one of the greatest scientist of the time, who had an obsession with metahumans. He was not one himself, but aspired to it, a personality flaw that would eventually make him one of the most powerful people on the planet. His work was backed not only by the U.S. Government, but also by private concerns, the Hark Corporation being chief among them.

    By the end of the decade, unable to sustain such atrocity, Science City Zero was shut down and quickly evacuated. Much of the equipment and research were left behind, but undiscovered until the site was investigated by Planetary on a tip from a young woman named Allison, who had been a subject there.

    Some subjects left Science City Zero alive, but changed. Some developed metahuman abilities, and passed those on to their children. One such child was Ambrose Chase of Planetary, who could bend the laws of physics in his vicinity. Other descendants of Science City Zero were recruited by Jim Wilder to serve as the crew of a long-buried Bleed-ship.

    Though the facility is long abandoned, its legacy is far from finished.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-54535/","id":54535,"name":"The Day the Earth Turned Slower","issue_number":"8"},"id":41019,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/83471-80250-science-city-zero.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/83471-80250-science-city-zero.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/83471-80250-science-city-zero.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/83471-80250-science-city-zero.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/83471-80250-science-city-zero.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/83471-80250-science-city-zero.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/83471-80250-science-city-zero.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/83471-80250-science-city-zero.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/83471-80250-science-city-zero.jpg","image_tags":"All Images,Science City Zero Gallery"},"name":"Science City Zero","site_detail_url":"https://comicvine.gamespot.com/science-city-zero/4020-41019/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41027/","count_of_issue_appearances":696,"date_added":"2008-06-06 11:27:49","date_last_updated":"2022-02-10 11:51:59","deck":"Wakanda is an African nation in the Marvel universe ruled by the Black Panther. It is technologically superior to most developed nations and rich in natural resources, particularly the rare metal vibranium.","description":"

    Origin

    First shown in Fantastic Four #52 (July '66), Wakanda possesses the largest stores of Vibranium on Earth, the result of a massive meteor strike. The radiation emitted by the meteorite caused mutations in small portions of the Wakandan population, turning some into \"demons spirits\", who attacked their fellow tribe members. The first Black Panther, Bashenga, sealed off the meteorite and formed the nation's religion: the Panther Cult.

    \"Gods
    Gods of Wakanda: Toth, Bastet, Kokou, Mujaji and Ptah

    The Panther God is one of the names used by Bast, the Egyptian black cat goddess. Bast is responsible for the powers received by the Black Panther, leader of the Wakanda nation. Before the founding of the Nation of Wakanda, African humans and the Orisha, the pantheon of Wakanda expelled the Originators of Wakanda, a group of animal species, these gods form the pantheon of Wakanda and are formed by gods of various origins in Africa: Bast, Thot and Ptah (Egyptian Gods), Kokou (Benin) and Mujaji (South Africa), the Pantheon of Wakanda is called The Orisha, orisha being a Yoruba word meaning spirit or deity.

    Years later, under the ruling of King T'Chaka the Great (father of the modern Black Panther, T'Challa), Wakanda was cut off from the rest of the world. T'Chaka knew that the rare vibranium would bring Wakanda many enemies. Using only small amounts of the nation's mineral wealth, T'Chaka sent Wakanda's most intellectual citizens to the corners of the Earth, to learn everything they could in tandem with their own discoveries. As a result, Wakanda's level of technological and economic achievements exceeded those of the traditional world, making it the most advanced civilization on Earth. Wakanda has never been conquered in the entire history of it's existence. Although it did suffer great damage during AvX.

    Statistics

    \"No

    Government: Monarchy

    Major languages: Wakandian, Yoruba, Hausa, English; Afroasiatic, Nilo-Saharan, Niger-Congo, Khoe, Austronesian, Indo-European

    Currency: Wakandian Dollar

    Religions: Although there is a main Pantheon, there are different cults in Wakanda.

    Panther cult,: dedicated to Bast, the Panther goddess.

    White Gorilla Cult: present at the Jabari Tribe. The cult to Ghekre (from the Baoulé people). Previously, the tribe had a cult to Ngi (from the Yaoundé people).

    Lion Cult: Dedicated to Sekhmet, Bast's sister.

    Crocodile Cult: Dedicated to another Egyptian deity, Sobek.

    Hyena Clan: A nomadic group in Wakanda.

    Localization:

    \"No

    The first map of Wakanda, published in Jungle Action Vol 2 #6, places the country close to the Atlantic Ocean.

    In Marvel Atlas #2, Wakanda is located in northeastern Africa, bordering Lake Turkana, near Somalia, Kenya and Ethiopia, along with Narobia, Canaan, Niganda, Rudyarda, Ujanka, Ghudaza, Mohannda, Zwartheid and Azania.

    In Black Panther Vol 4 #1, Wakanda is located between Sudan in the north and the Democratic Republic of Congo in the south.

    In, Black Panther Vol 6 #4, the country is close to \"Nyanza\" (Lake Victoria) to the east and surrounded by Mohannda to the north, Niganda to the southeast, Azania to the southwest and Canaan to the west.

    Known Rulers

    \"Bashenga,
    Bashenga, the first King of Wakanda

    Bashenga (first king of Wakanda)

    Azzari the Wise (grandfather of T'Challa & Shuri)

    T'Chaka the Great (father of T'Challa & Shuri)

    S'yan the Swift (uncle of T'Challa & Shuri)

    T'Challa (the most recognized and default Black Panther in Marvel Comics. T'Challa is the titular hero of the Black Panther mythos. All other Panthers were created after him and are supporting characters to him)

    Shuri (younger sister of T'Challa, current ruler of Wakanda and Black Panther)

    In Other Media

    Television

    \"Wakanda
    Wakanda in the FF animated series

    Film

    Ultimate Avengers 2

    \"The
    The Avengers in Wakanda

    Wakanda appears as the main setting in the movie, with the country targeted by Chitauri invaders who want to steal all of the vibranium.

    Iron Man 2

    \"The
    The map

    Wakanda makes a cameo on a map Nick Fury shows to Tony Stark. It is shown marked as one of the locations where SHIELD believes superhumans reside.

    Avengers: Age of Ultron

    \"Concept
    Concept art of the Wakandan mine

    Wakanda is explicitly referenced for the first time in the MCU in this movie, with the Avengers learning that Ulysses Klaue stole a large amount of vibranium from the country some time ago. For his actions, the Wakandans branded Klaue's neck with their word for \"thief\", forever marking him as a criminal. Earlier drafts of the script featured Ultron taking of a Wakandan mine in order to create a new body for himself, but this was cut from the finalized movie.

    Captain America: Civil War

    \"A
    A glimpse of Wakanda

    Wakanda is again referenced in the film. At the beginning of the movie, a group of Wakandan delegates are accidentally killed during a badly botched Avengers operation in Nigeria, leading to global outrage. This proves to be the final straw that leads to the nations of the world crafting the Sokovia Accords, a series of laws designed to keep the Avengers in check.

    At the close of the film, Black Panther provides safe harbor for Captain America and Bucky Barnes in Wakanda.

    Wakanda is localizated around Lake Turkana, a point where Uganda, Kenya, South Sudan and Ethiopia meet.

    Black Panther

    \"No

    Wakanda will be heavily featured in the live-action film, marking its first full appearance in the Marvel Cinematic Universe.

    • In the film, Wakanda has two languages, the main Xhosa (language spoken in South Africa and Zimbabwe) and Igbo (spoken in Nigeria), spoken by the Jabari Tribe. On a rescue mission in Nigeria, Nakia (Lupita Nyong'o) appears speaking Hausa.
    • The clothing was inspired by clothing from the Maasai, Himba, Dogon, Sotho, Tuareg, Turkana, Xhosa Zulu, Suri and Dinka tribes.
    • Although it does not describe a Wakandan martial art, the actors trained in a few well-known styles, Chadwick Boseman (T'Challa/Black Panther) trained in Dambe, Capoeira Angola, and Zulu stick fighting, Lupita Nyong'o trained in judo, jujitsu, silat, and Filipino martial arts.

    An artbook from the film artbook locating Wakanda in the East African Rift Valley, bordering Rwanda, the Democratic Republic of the Congo, and Uganda.

    Video Games

    \"Valkanda
    Valkanda in MVC: Infinite
    • Wakanda is a setting in Marvel Ultimate Alliance 2, and is where the final battle with the nanite-controlled heroes takes place.
    • Wakanda appears in Storm's ending for Marvel vs. Capcom 3.
    • Wakanda can be visited in Marvel Heroes.
    • Wakanda appears as a stage in Marvel vs. Capcom: Infinite. Due to the merger of the Marvel and Capcom universes, Wakanda has been combined with Val Harbor from the Monster Hunter games to create Valkanda.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8666/","id":8666,"name":"Introducing the Sensational Black Panther","issue_number":"52"},"id":41027,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/6713901-flag_of_wakanda.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/6713901-flag_of_wakanda.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/6713901-flag_of_wakanda.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/6713901-flag_of_wakanda.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/6713901-flag_of_wakanda.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/6713901-flag_of_wakanda.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/6713901-flag_of_wakanda.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/6713901-flag_of_wakanda.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/6713901-flag_of_wakanda.png","image_tags":"All Images"},"name":"Wakanda","site_detail_url":"https://comicvine.gamespot.com/wakanda/4020-41027/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41030/","count_of_issue_appearances":1335,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-06-20 03:53:42","deck":"Atlantis was a myth described by Plato as an advanced society that sank into the sea. Many comics use it as a source of technology, magic, or advanced beings, either in the ancient past or undersea.","description":"

    Overview

    Plato

    In Plato's Timaeus, he gives a brief account of Atlantis. The day after the Republic, one of Socrates' friends, Critias, recounts a marvelous tale of the ancient civilization. Apparently, Atlantis had been one of the dominant societies of the past, threatening to over-take almost all of the civilizations around the Mediterranean Sea. It wasn't until Athens stood against Atlantis that it had faced any threats. One night, the entire Atlantean army sank into the ground. And, the island of Atlantis (which had been located on the Straight of Gibralter) plummeted beneath the sea.

    The tale is expounded on in Plato's other work, Critias.

    Marvel Comics

    Marvel's version of Atlantis first appeared in Motion Picture Funnies Weekly #1, in April 1939 , but it wasn't named Atlantis until April 1949 issue of Sub-Mariner Comics #31. In the Marvel universe, Atlantis is a the city under the sea ruled by Namor, the Sub-Mariner.

    It was originally a small continent with human settlements but this all changed 21,000 years ago during an event known as the Great Cataclysm and it was swallowed by the depths of the sea. This event was caused by King Kamuu when he tried to defend it from the Deviants of Lemuria by opening the city's magma pits. Several settlements survived including Atlantis and Netheria, as they had built a glass dome to shield each before this catastrophe took place.

    Sole survivors included such beings as Varnae, Stygyro and Dakhimh the Enchanter. But it was only 13,000 years later than the city of Atlantis was re inhabited, as it was discovered by some Homo Merman's who made it their first mighty city, and becoming the Atlanteans.

    After 500 years living in Atlantis another city was rebuilt, Lemuria, by Atlanteans who left Atlantis. And so it was that the Lemurians differed from their former people when they discovered the Serpent Crown in their ruins and they began to develop a more serpentine appearance.

    Homo Sapiens and Homo Mermanus have interacted several times, usually with hostility as the Homo Mermanus have invaded the surface world multiple times. Though the current ruler of Atlantis, Prince Namor fought against the Axis Powers in World War II.

    In Atlantis there are two specimens of architecture: the towering spires of fair Atlantis, reaching proudly, majestically toward the surface world, a glistening reminder, a haunting portent of the beauty and danger that lurk here, beneath the seas.

    In modern times, the Old Kingdom of Atlantis revealed itself and claimed rule to all of the sea. Namor went to war with them, but the war was stopped as soon as it began when the Invisible Woman became its ruler.

    DC Comics

    DC's version of Atlantis first appeared in Adventure Comics #260 in 1959. In the DC universe, Atlantis is the city under the sea ruled by Aquaman.

    The Kingdom of Atlantis is generally considered to be the earliest known civilization on Earth, existing as long as 1,000,000 years ago. How the Atlantean race of homo sapiens arose hundreds of thousands of years before the rise of current-day humanity is unknown, but this anomaly of evolution is believed to be linked to the strong presence of magical energy, or mana, that then existed around Earth.

    The original Atlanteans were highly mystical beings; their society and the very structure of the world was based on the use of this magical energy. Over the millennia, the mana was eventually depleted, and the powers of science and technology replaced sorcery as the dominant force of nature.

    While it flourished, Atlantis was a great civilization; it ruled the world through the power of its twelve major city-states, which were located on all the continents of Earth. Each of these city-states was ruled by a sorcerer-monarch who wielded the mystic power of his part of the world. At the head of the entire Atlantean Empire was the most powerful kings and queens. Less the master of the eleven other monarchs than a sort of chairman of the Royal Conclave of Twelve, this monarch also reigned over the first and largest of the Atlantean city-states, the magnificent City of the Golden Gate.

    In its early years however, Atlantis was ruled by a body of mad sorcerers. These sorcerers were eventually wiped out and replaced by saner rulers who sought peace rather than the the endless warfare of their predecessors. Atlantis' first great era of peace and prosperity came during the reign of Calculha, about half a million years ago. To Calculha and his queen Majiestra were born two sons, Ahri'ahn and Garn. Majiestra was a student of the dark forces, and in seeking power, she stole the Twelve Crystals of the Zodiac, which were keyed to the magical nexi of the twelve major cities. To save Atlantis from her evil Ahri'ahn sacrificed himself. His soul was sent out into the stars in the form of pure magical energy, where it traveled for hundreds of thousands of years before being drawn back to Earth for its rebirth as Arion.

    The Atlanteans grew in stature and power. Soon, their eyes turned to the world beyond Earth, leading them to begin an extensive study and survey of the universe. These efforts culminated in the creation of magically-fueled spacecraft, which carried hordes of Atlantean colonists out into interstellar space, they lost contact with Earth. Years later, it was learned that the farther they traveled away from Earth, the weaker the magic that propelled their ships became. The Atlanteans found refuge on an uninhabited world and created a civilization based on science. Technology-powered space flight was eventually rediscovered and the Atlanteans, having evolved along different biological and ethical paths, set out on a warlike conquest of neighboring worlds.

    Although the Atlanteans were virtually the all-powerful masters of the world and their environment, they were confronted with certain insurmountable problems. Foremost among these problems was the disappearance of the magical mana. Also, the Atlanteans encountered a savage race of barbaric sub-men, Homo Erectus, which were the precursors to our own civilization. The people of Atlantis also shared the Earth with a variety of magical beings and creatures, as well as other-dimensional visitors from neighboring mystically-based realms.

    As the magic waned, Atlantis' hold over the Earth began to weaken as all of the Atlanteans' energies were focused on maintaining their hold on existence. Cities built on magic crumbled, and the creatures of sorcerous origins lapsed into extinction and myth. Arion had returned during this era and attempted to gold his world together, but the forces of change were to great for even his magic, and the great civilization that was Atlantis crumbled.

    The kingdom of Atlantis held on for several years after that, with Arion at it's helm, before the final fall and the Atlanteans' virtual extinction at the hands of the barbarous hordes of emerging mankind. Before this, Lord Norrad the Younger fled Atlantis with a small group of followers. They eventually sailed through the inter-dimensional nexus linking the Earth and Skartaris.

    Cities of Atlantis

    Atlantis has split into several different cities since its sinking. The main of these being Poseidonis, the domed city where Aquaman is seen most often, but there are many more.

    • Poseidonis: The main city of Atlantis, it is a large domed city. Aquaman is seen here most often. It is the location of the King's throne. It was destroyed by the Spectre, during Infinite Crisis, on his rampage against magic. Garth tried to stop it but was unable to. It has been rebuilt now.
    • Tritonis: A land of rough living mermen and women that view their way of life (living with the creatures of the deep) clean and natural, feeling it makes them stronger. This was the home of the Merman King Iqula, whom challenged and nearly defeated Aquaman. After being defeated in a one-on-one battle with Aquaman he swore to help protect Poseidonis as best he can.
    • Thierna Na Oge: A land of mystics that are ruled by a mystical Conclave.
    • Shayeris (formerly Crastnus): The Capital of the Hidden Valley. Home to extremely secluded mystics and pacifists. The birthplace of Garth, the first Aqualad.
    • Xebel: A penal colony locked beneath the Bermuda Triangle, Mera is from here. Mera's father rules in Xebel. Mera's sister, Siren, was sent from Xebel to kill Aquaman along with some Xebel soldiers. It's unclear how she and the soldiers managed to get out of their imprisonment.
    • Sub Diego: Sub Diego was a portion of San Diego that sunk into the sea, and became part of the kingdom of Atlantis. Some of the people who sunk with the part of the city gained the ability to breath water. One of these people was Lorena Marquez who became Aquagirl when granted her powers.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159689/","id":159689,"name":"Here is the Sub-Mariner!","issue_number":"1"},"id":41030,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/2631156-aquaman__zone_020.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/2631156-aquaman__zone_020.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/2631156-aquaman__zone_020.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/2631156-aquaman__zone_020.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/2631156-aquaman__zone_020.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/2631156-aquaman__zone_020.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/2631156-aquaman__zone_020.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/2631156-aquaman__zone_020.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/2631156-aquaman__zone_020.jpg","image_tags":"All Images,DC"},"name":"Atlantis","site_detail_url":"https://comicvine.gamespot.com/atlantis/4020-41030/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41031/","count_of_issue_appearances":768,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-09-29 02:51:33","deck":"An Eastern European country ruled by Victor Von Doom. Its capital city is Doomstadt.","description":"

    Information

    • Population: 500,000
    • Type of Government: Dictatorship (\"Enforced Monarchy\")
    • Languages: German, Hungarian, Latverian (local dialect, derivative of Hungarian), Romanian
    • Ethnic Groups: Mixed European, Gypsy
    • Currency: Latverian Franc
    • Law Enforcement: Doombot patrols

    Latveria lies in eastern Europe where Hungary, Romania, and Serbia conjoin.

    History

    Latveria was once a monarchy ruled by King Vladimir Vassily Gonereo Trstian Mangegi Fortunov, Baron of Sabbat, Baron of Haasen, Baron of Krozi. It's capital city was Haasenstadt.

    A young genius named Victor Von Doom, a resident, waged a war with the monarchy with his incredible inventions. Von Doom left to be schooled in America and upon his return he slayed the King and imprisoned his son Rudolfo. Doom created a robot of Rudolfo that surrendered the crown to him before the people. Doom also created a puppet prime minister and remained anonymous for many years as ruler to the outside world. He changed the capital to Doomstadt.

    The country was taken over by Rudolfo in a coup. He impersonated Doom on the throne, only to have the Red Skull assassinate him and take control of the country. Doom returned and forced Red Skull out, taking his rightful place as ruler.

    The country was briefly ruled by Prince Zorba, the younger brother of Rudolfo, when Doom fell into madness. The country went into a state of civil war. Once Doom recovered, he killed Zorba and took back leadership of the country.

    Latveria was annihilated by Doctor Doom's former Master, The Marquis of Death. It is presumed that all 500,000 inhabitants save for Doom himself were wiped off the face of the Earth.

    It has since been rebuilt and repopulated.

    Other Timelines

    • In Marvel 1602, Latveria is ruled by Count Otto von Doom (Otto the Handsome).
    • On Earth-1610 (Ultimate Marvel), Latveria is an impoverished nation that was made wealthy by Doctor Doom.
    • On Earth-2301, Latveria is ruled by the younger sister of T'Challa (The Black Panther) who was Victor Von Doom's apprentice until she slew him and took his place as Doctor Doom.
    • On Earth-691, Latveria doesn't exist anymore as a independent country, but on its ruins was build an inpenetrable dome-refuge for the European survivors of the Badoon invasion.

    Other Media

    Film

    In the Fantastic Four film, Latveria is mentioned initially in reference to Victor Von Doom's past and is described as \"the old country\", possibly indicating his birth there. After \"The End\" has appeared, Von Doom's incarcerated body is shown on board a ship bound for Latveria. Also during the scene where he first dons his trademark metal mask, a plaque can be seen declaring it as a gift to Doom from the people of Latveria. In the sequel, Doom is reawakened in his castle by the Silver Surfer's passage through Latveria.

    Video games

    • In the 1980s computer game Accolade's Comics the protagonist Steve Keene is offered tickets to the Latverian Ballet.
    • In Spider-Man: The Game, a billboard can be seen in the first level advertising tourism in Latvania, a misspelling of Latveria.
    • Latveria is referred to in the Spider-Man 2 video game when J. Jonah Jameson says that a Latverian diplomat is landing at the United Nations building by helicopter, although circumstances force the player to miss sighting any such diplomat.
    • In the Ultimate Spider-Man video game, the Beetle was reported to have ducked into the Latverian Embassy after evading Spider-Man. In the special edition of the game, the player can look at concept art that shows what happens to Beetle after his confrontation with Spider-Man. He flies into the embassy and walks up to a throne, kneels down, and presents the Sandman vial to Doctor Doom in some plot to develop super-soldiers for Latveria. Later on in the game, the Green Goblin is later seen escaping from the Latverian Embassy.
    • In Marvel: Ultimate Alliance, Castle Doom in Latveria is a level. If the player asks about Latveria to Vision, he mentions that there is barely any crime there since Doom's robots are always patrolling the country.
    • The Latverian Embassy is featured in The Incredible Hulk video game.
    • Latveria is featured in Marvel: Ultimate Alliance 2. The first part of the game is based on the Secret War storyline. Nick Fury leads the heroes to Latveria to deal with Lucia von Bardas after the President does not want to take action against her illegal activities.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6735/","id":6735,"name":"Prisoners of the Pharoah!","issue_number":"19"},"id":41031,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/105824-84260-latveria.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/105824-84260-latveria.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/105824-84260-latveria.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/105824-84260-latveria.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/105824-84260-latveria.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/105824-84260-latveria.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/105824-84260-latveria.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/105824-84260-latveria.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/105824-84260-latveria.png","image_tags":"All Images,Latverian flag"},"name":"Latveria","site_detail_url":"https://comicvine.gamespot.com/latveria/4020-41031/","start_year":"1963"},{"aliases":"721 Fifth Avenue\r\n890 Fifth Avenue\r\nAvengers Embassy\r\nAvengers Headquarters\r\nAvengers HQ\r\nAvengers Memorial\r\nStark Mansion\r\nStark Townhouse\r\nTony Stark's House\r\nAvengers Park","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41036/","count_of_issue_appearances":1549,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-08-18 02:16:08","deck":"A luxurious town house located on Fifth Avenue in Manhattan, New York, the Avengers Mansion is the home and main base of the Avengers.","description":"

    History

    The Avengers began using Tony Stark's town house as a place to come together as a group and hold meetings. Upon joining the team, Captain America began living in Avengers Mansion.

    The mansion was attacked by the Masters of Evil leading to the team and the mansion building was relocated to Hydrobase. The mansion was subsequently destroyed and submerged under water after an attack on Hydrobase by Doctor Doom.

    The Avengers returned to the original site of the Mansion, now dubbed \"Avengers Park\" and used the still existent sub-basements of the former mansion for their base of operations for a while. With help from architect Eric Masterson, Avengers Mansion was rebuilt and remodelled as a more modern complex. The complex was destroyed by Sersi during a conflict with the Gatherers. Ute the Watcher rewarded the Avengers for helping defeat the Gatherers by pulling from the multiverse an alternate reality version of the original Avengers Mansion in place of their destroyed headquarters.

    The mansion served as their base for a long time until it was destroyed by Scarlet Witch. The Mansion was used in secret by the Young Avengers during a short period of time. Hank Pym's Infinite Avengers Mansion was connected with the main entrance of the regular Avengers Mansion for easy travel. Tony renovated the mansion and gave the property to Luke Cage for $1. The mansion served as the headquarters for the New Avengers.

    The mansion is now used by the newly established Avengers Unity Squad, now a home of both Avengers and X-Men.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6779/","id":6779,"name":"The Avengers Battle the Space Phantom","issue_number":"2"},"id":41036,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3496496-earthsmightiest00102.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3496496-earthsmightiest00102.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3496496-earthsmightiest00102.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3496496-earthsmightiest00102.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3496496-earthsmightiest00102.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3496496-earthsmightiest00102.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3496496-earthsmightiest00102.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3496496-earthsmightiest00102.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3496496-earthsmightiest00102.jpg","image_tags":"All Images,Earth-616 Avengers Mansion,Scott Kolins' Art"},"name":"Avengers Mansion","site_detail_url":"https://comicvine.gamespot.com/avengers-mansion/4020-41036/","start_year":"1963"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41038/","count_of_issue_appearances":103,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-12-24 10:13:15","deck":"Zenn-La is the homeworld of the Silver Surfer in the Marvel Universe.","description":"

    Origin

    A Utopian paradise that had eliminated all forms of disease, poverty, and hardship from their society, Zenn-La was the first planet selected by Galactus to provide him with sustenance that he spared due to Norrin Radd's agreement to become his herald, the Silver Surfer.

    Location

    Zenn-La is located in the Cygnus constellation. It is the fourth planet of thirty-seven revolving around the star Deneb. The planet rotates faster than Earth causing shorter days.
     

    Religion

     In the distant past the Zenn-Lavians worshiped several pantheons of gods that are now known as the Old Gods of Zenn-La Thrann, the Saint of Science taught them to embrace science ironically bringing an end to the worship of the gods despite their attempt to reconnect.  The Zenn-Lavians turning their backs on the gods led the gods to turn their backs on them even in the face of disaster.

    History

    From Chaos to Enlightenment

    \"Norrin
    Norrin Konn - Father of Zenn-La
    Originally, Zenn-Lavians were full of lust and hate. Once some realized that they would eventually exterminate themselves in a few generations, they turned to science.  The god Thrann is credited with bringing about this change.  Some would not follow the path of the rationality and logic and civil war broke out on the planet. The technological side was led by Norrin Konn and the people that wished to follow the old ways was led by a female Warlord. The Warlord was eventually defeated and Zenn-La came to be in a technological, enlightened era.

    Zenn-La became a supremely technologically advanced world. Marvels in science made it so no Zenn-Lavian need ever dirty their hands. Everything was controlled by computers and robots. Zenn-Lavians had a peaceful utopia with no need for war or violence. Before this time though, Zenn-Lavians waged war on each other for ten thousand centuries, as do most civilizations. This ended and the Zenn-Lavians began to explore space but eventually their technology advanced so much that this became an old practice.

    This advanced society became bored with having nothing to do. Some people resorted to drugs to send them into mind-altering adventures. Others used psycho-recreational arts, a form of leisure device that transfers dreams into one's mind. Others still could not bare this type of life and committed suicide. Some believed the the advances in science were wasting the people away from their prior greatness.

    When Galactus' spaceship approached the planet, the Zenn-Lavians being a peaceful race they were defenseless. The people panicked, and in desperation they used a museum piece, the last remaining weapon on Zenn-La. They called it the Supreme Weapon and fired it at the ship. It was so destructive it knocked nearby planets from their orbits and created worldwide destruction. Zenn-La itself only survived because of it's force field. Zenn-La was to be consumed by Galactus but Norrin Radd gave himself to the being in exchange for the safety of his people. He thus became the Silver Surfer.

    Destruction and Rebirth

    When the Surfer rebelled against his master he imprisoned him on Earth and returned to Zenn-La, consuming it's energy. In a rare moment, Galactus gave the residents of the planet 24 hours to escape. The planet was left barren but the Zenn-Lavians survived. After the heat and smoke settled, they returned and created large camps to live in. The planet remained barren with only weeds growing from the soil.

    When Mephisto brought Shalla Bal, Norrin's long lost love, to Earth only to take her away to torment the Surfer he was able to give her some of his Power Cosmic. With this power she was able to start growth on the dead planet wherever she stepped foot. Because of this power she was named Empress of Zenn-La. They began to rebuild and with their technologic expertise they were able to quickly rebuilt their society.

    Kree-Skrull War

    Zenn-La was threatened to be in the middle of the Second Kree-Skrull War. When the Skrulls approached the planet to make it an ally the Silver Surfer turned them away. He vowed to Shall Bal to be protector of the planet. When the Kree came to recruit them the Surfer destroyed their ships. Later in a meeting with Nenora, Supreme Leader of the Kree Empire, she agreed to leave the planet out of the war.

    After helping to save Galactus' life from the Elders of the Universe, Galactus has agreed to never devour Zenn-La ever again.

    The planet's population was then attacked by the Obliterator, who decimated the population. He threatened to destroy the entire planet. Silver Surfer managed to lure him away.

    The planet was again attacked by the Kree Empire after a misunderstanding between Supreme Leader Nenora and the Silver Surfer. Zenn-La allies with the Skrulls against the common enemy. Again, the Surfer managed to persuade her to leave the planet out of the war. She tells him though that the empire will hunt him wherever he goes and he is not to return to the planet. By the end of the war, the Surfer had no obligations to hold up this agreement. With the Kree defeated, the Empress witnessed the truce between the waring races. But this was only temporary and the planet was still at risk.
     

    The Enslavers

    The entire race of the Zenn-Lavians was captured by the Enslavers, and they left no trace of what happened. The Silver Surfer consulted Mr. Fantastic on Earth and decided he should search harder. He was eventually led to the Enslavers ship and their ruler Mrrungo-Mu. He was able to defeat Mrrungo and free all of his captors, including the Zenn-Lavians. Along with Shalla Bal, he returned them back to their planet.

     A Chance for Peace

    \"The
    The Great One
    Zenn-La was then met by the Great One, who preserved worlds in his own mind. He gave the people the choice to leave the universe behind and be protected forever. They unanimously voted to stay with the Great One. Inside his mind, all Zenn-Lavians were made immortal and lived  peaceful, happy lives. The Silver Surfer even returned with the help of Moondragon and lived in peace for the first time since meeting Galactus. But out of fear, the Great One attacked him and received a mortal wound. If he were to die then so would Zenn-La. With the help of Moondragon, he was able to rescue the planet from destruction, but not before losing Empress Shalla Bal in the process. The citizens blamed the loss of both the Great One's protection and their Empress on the Silver Surfer.

    Return of the Empress

    With the help of Adam Warlock, the Silver Surfer was able to resurrect Shalla and she once again returned to be the Empress of Zenn-La. It was here that she met Fennan Radd and formed a relationship with him. He believed the people to be falling into irresponsibility and laziness due to the level of advancement their society had achieved and their Silver Surfer worship.
     

    All An Illusion

    The Silver Surfer was alerted that their was trouble on Zenn-La and rushed there to see the planet falling apart. The current Captain Marvel was trying to stop the source, but the Surfer stopped him. They watched as the planet just evaporated into thin air. The Surfer lost his emotions and certain memories after this.
     
    The Surfer went back in time to unlock his emotions and memories and discovered the truth. Zenn-La was destroyed in the Earth year 1947 by The Other. Galactus knew one day his herald would leave him and return home, so he created an illusion so lifelike that no one would ever know.

    Zenn-Lavian People

    Origin Galaxy: Milky Way
    Star System: Deneb
    Planet: Zenn-La, 4th from the sun
    Estimated Population: 500
    Physical Characteristics:
    • Type: Humanoid
    • Eyes: Two
    • Fingers: Five, with opposable thumb
    • Toes: Five
    • Skin Color: Pink
    • Average Height: 6'0''
    Special Adaptations: Zenn-Lavians have average lifespans of thousands of years
    Level of Technology: Advanced
    Type of Government: Utopia
    Names of Representatives: Yarro Gort, Norrin Konn, Elmar Radd, Jartran Radd, Fennan Radd, Shalla Bal, Warlord, Norrin Radd, Anddar Bal
     
    Called Zenn-Lans in some later stories.

    Places of Interest

    \"Zenn-La
    Zenn-La City
    The City of Zenn-La - The first city to give itself over to technology before the civil war. Inside is the great Hall of Science, which still stands currently.

    The Paths of Jendu-Van - Once a huge metropolis before Galactus, it is now a series of clearings in the woods.

    The Birth-Bloc - One of the first areas reforested after Galactus' attack

    Silver Surfer Monument - Placed by the Surfer himself, it is a small memorial about two feet high where he was born. It states 'Here was born the Silver Surfer a son of Zenn-La.' It originally said Norrin Radd, but he changed it.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109883/","id":109883,"name":"The Origin of the Silver Surfer","issue_number":"1"},"id":41038,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6539/392676-18355-zenn-la.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6539/392676-18355-zenn-la.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6539/392676-18355-zenn-la.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6539/392676-18355-zenn-la.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6539/392676-18355-zenn-la.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6539/392676-18355-zenn-la.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6539/392676-18355-zenn-la.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6539/392676-18355-zenn-la.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6539/392676-18355-zenn-la.jpg","image_tags":"All Images,Zenn-La gallery"},"name":"Zenn-La","site_detail_url":"https://comicvine.gamespot.com/zenn-la/4020-41038/","start_year":"1968"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41042/","count_of_issue_appearances":165,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-10-14 16:37:45","deck":"The interdimensional \"buffer zone\" between universes.","description":"

    The universe is a big place. But not nearly as big as the multiverse. By some accounts, there are as many Earths as there are atoms in the planet Earth. In a less organized multiverse, these universes would be falling all over each other, but in the Wildstorm multiverse, each Earth is secure within The Bleed. Reasonably secure, anyway.

    As perceived by humans, The Bleed is a red, swirling maelstrom, and the image is apt. The Bleed is not a pleasant place, and not safe for the average traveler. There are entities living in The Bleed what hate and despise the billions of Earths. Every human incursion in The Bleed has repercussions and echoes, so traveling there without a specially designed Bleed Ship is not a good idea.

    There are two Bleed Ships currently known. One is The Carrier, which is operated by The Authority. The other is operated by Jim Wilder and metahuman descendants of Science City Zero. Thanks to Kherubim Technology, some Kherubim ships are able to travel The Bleed also. These ships aren't built just for The Bleed though, that is more of a secondary function. These ships can enter and leave The Bleed at will, moving between universes.

    In 1945, a group of adventurers led by Dr. Axel Brass built a computer capable of mapping the multiverse, which allowed for a Bleed incursion. All of Brass' teammates died closing the rift. Nearly sixty years later, a disgruntled employee of *Planetary* opened a second rift, nearly overrunning the Earth with self-replicating destroyer robots. They were stopped by Planetary and The Authority.

    Since the combining of the WSU and the DCU, Wildstorm Earth has become one of the 52 Earths in the multiverse but the exact nature of the Bleed (and worlds seen through it) is unknown. According to the Guardians Of The Universe, the Bleed lies beyond the Source Wall, but no other information was given.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6621/","id":6621,"name":"Crisis on Earth-One!","issue_number":"21"},"id":41042,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/83804-182896-the-bleed.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/83804-182896-the-bleed.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/83804-182896-the-bleed.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/83804-182896-the-bleed.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/83804-182896-the-bleed.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/83804-182896-the-bleed.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/83804-182896-the-bleed.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/83804-182896-the-bleed.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/83804-182896-the-bleed.jpg","image_tags":"All Images,The Bleed Gallery"},"name":"The Bleed","site_detail_url":"https://comicvine.gamespot.com/the-bleed/4020-41042/","start_year":"1963"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41057/","count_of_issue_appearances":3,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-05-05 16:59:22","deck":"The hidden city in the jungles of Africa.","description":"

    In the early 20th Century, a family of freebooters brought back to England some strange artifacts from the jungles of Africa. The Cummings Scientific Club found a televideo set made from gold on an abandoned boat just north of the port of Oshanga. There was something strange hidden in that wilderness - the city of Opak-re.

    Situated on a dark river and guarded by a bio-engineered river serpent named Esin-ka, Opak-re liked being unknown. They possessed technology far beyond what the rest of the world had achieved. The city was governed by five elders, and organized in a fairly communal structure. They are very fond of their children, calling them \"our kings and queens.\" Any crimes committed by outsiders were usually punished less harshly than those by citizens, on the grounds that the outsiders don't know any better.

    This was fortunate for people such as Elijah Snow and Lord Blackstock.

    Blackstock was a well-known visitor to Opak-re, and despite their advanced culture and civilization still thought of them in terms of being black. He found the women there fascinating due to their exotic nature, but no more than a kind of sexual novelty. This kind of attitude led to the downfall of Opak-re.

    He met a woman named Anaykah, one of the city's leading scientists. She fell in love with both Snow and Blackstock, and became pregnant with the latter's child. This was a violation of one of the city's strongest prohibitions - no interbreeding. They were happy to have visitors, but the elders of Opak-re valued their genetic purity more.

    The birth of the child led to the city being sealed off from the world forever. Before it went, however, Anaykah gove her infant daughter to Elijah Snow, who promised to look after her. The girl was raised by a couple in Germany, and was named Jakita Wagner. Jakita is, technically, the last survivor of Opak-re.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-54544/","id":54544,"name":"Opak-Re","issue_number":"17"},"id":41057,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/83801-111428-opak-re.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/83801-111428-opak-re.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/83801-111428-opak-re.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/83801-111428-opak-re.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/83801-111428-opak-re.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/83801-111428-opak-re.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/83801-111428-opak-re.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/83801-111428-opak-re.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/83801-111428-opak-re.jpg","image_tags":"All Images,Opak-re Gallery"},"name":"Opak-re","site_detail_url":"https://comicvine.gamespot.com/opak-re/4020-41057/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41058/","count_of_issue_appearances":12,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-05-05 16:59:14","deck":"Otherspace is a dimension of untapped energy.","description":"

    Otherspace is a location that has shown up in the comics of Mr. Majestic and the WildC.A.T.s. It exists as a vaguely described space that can be reached from our reality if the right equipment is used. Mr. Majestic built and used a portal to venture into Otherspace and the Wildcats used an atom-sized ship and Spartan's (former) teleportation abilities. The only thing that is really there that has been identified is pre-dimensional star-stuff, or \"sleeping stars\". Unprotected entry into Otherspace has proven fatal for anyone except Mr. Majestic. According to him, Otherspace is a place where reality is variable and basic existence can never be proven. He traveled into Otherspace to collect a sleeping star which he would use to power a robotic duplicate of his son. The Wildcats went into Otherspace for much the same reason. Spartan planned to use the same kind of sleeping stars to power batteries that would last longer than forever. He was able to and the secret behind his batteries made the Halo Company incredibly successful. However when he lost the teleportation abilities granted to him by the Void, he also lost the ability to enter Otherspace.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159158/","id":159158,"name":"Crime Machine","issue_number":"1"},"id":41058,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/86158-139264-otherspace.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/86158-139264-otherspace.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/86158-139264-otherspace.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/86158-139264-otherspace.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/86158-139264-otherspace.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/86158-139264-otherspace.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/86158-139264-otherspace.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/86158-139264-otherspace.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/86158-139264-otherspace.jpg","image_tags":"All Images,Otherspace"},"name":"Otherspace","site_detail_url":"https://comicvine.gamespot.com/otherspace/4020-41058/","start_year":"1997"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41059/","count_of_issue_appearances":4,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-10-25 18:12:43","deck":"A frozen wasteland of wonders between Japan and Russia.","description":"

    Officially, Island Zero is a no-man's land. It's at the northern tip of the archipelago of disputed islands between Japan and Russia, and is claimed by both countries.

    The unofficial story is, of course, more interesting.

    The day after the bombing of Hiroshima, witnesses described seeing a bright light and a terrible storm over the island. The cause of the light and the storm are still unknown - perhaps a bomb, or a mutagenic accident or a portal opened from another world. Whatever happened, five years later the island was populated by monsters.

    These monsters were huge and terrifying. Three-headed dragons, fire-breathing dinosaurs, moths the size of airplanes. They had free rein on the island, but never left, and never bred. By the mid-seventies, all the monsters had died. An international guard was put on the island with an observation post to see that no one from the outside saw what was there.

    In 1999, a small cult led by a charismatic Japanese writer got onto the island, with the intention of using it as their base of operations for the takeover of the nation. They were stopped by *Planetary*. At the same time, a new, living monster was seen flying over the island, suggesting that not all of the monsters died after all.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105479/","id":105479,"name":"Island","issue_number":"2"},"id":41059,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/83798-4619-island-zero.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/83798-4619-island-zero.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/83798-4619-island-zero.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/83798-4619-island-zero.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/83798-4619-island-zero.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/83798-4619-island-zero.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/83798-4619-island-zero.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/83798-4619-island-zero.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/83798-4619-island-zero.jpg","image_tags":"All Images,Island Zero Gallery"},"name":"Island Zero","site_detail_url":"https://comicvine.gamespot.com/island-zero/4020-41059/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41062/","count_of_issue_appearances":53,"date_added":"2008-06-06 11:27:49","date_last_updated":"2013-07-04 14:45:43","deck":"The Cube is a S.H.I.E.L.D. prison and testing center for their \"Villain Rehabilitation Program\". Falling into disuse after most the inmates escaped during the Secret Invasion, it served as the base of operations of Norman Osborn's Thunderbolts.","description":"

    Following his declared war on Earth, the Kree scout Noh-Varr was imprisoned in The Cube which he proclaimed as the \"start of the new Kree Empire\".

    During the Civil War, the Cube was used as a villain correction facility placed by S.H.I.E.L.D.

    By the time the Secret Invasion hit Earth, Noh-Varr had assumed control of the entire facility and had become it's self-appointed Warden.

    Following Norman Osborn's acension to power, Noh-Varr became Captain Marvel and his duties meant he was no longer incarcerated. The Cube instead became the headquarters to Osborn's black-ops Thunderbolts squad.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-77827/","id":77827,"name":"Mindless: The End","issue_number":"6"},"id":41062,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3151488-cube.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3151488-cube.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3151488-cube.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3151488-cube.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3151488-cube.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3151488-cube.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3151488-cube.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3151488-cube.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3151488-cube.jpg","image_tags":"All Images,Earth-616 The Cube"},"name":"The Cube","site_detail_url":"https://comicvine.gamespot.com/the-cube/4020-41062/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41069/","count_of_issue_appearances":97,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-16 10:16:47","deck":"A harsh, war-torn planet in which both the Hulk and Silver Surfer were stranded on, and forced into fighting as gladiators. Many of its inhabitants believe the Hulk to be their Savior.","description":"

    Origin

    Sakaar is the home-world of the alien hybrid Skaar, Sakaar is a planet that is war-torn, and its culture is about as advanced of the Romans, but their technology they get from people who have died coming through the wormhole to Sakaar. It's natives are insectoids who are in conflict with pinkies about who is the real native species.

    Creation

    Sakaar was created by writer Greg Pak and artsist Carlo Pagulayan and first appeared in Incredible Hulk Vol.3 issue 92 (2006). Natives of the planet Sakaar are, among others, Elloe Kaifi, Hiroim, Caiera, Skaar, Miek and Lavin Skee .

    Major Story Arcs

    Planet Hulk

    Destruction

    Return

    Some time ago, the planet mystriously returned in space. Without any acknowledgement of it's destruction, Amadeus Cho (the Totally Awesome Hulk) was stranded on the planet and forced to fight as a gladiator by the new ruler. Many months later, it was revealed that one of the Infinity Gems, the Time-Stone, lay on the planet's ground, which was also the cause for the return of the planet Sakaar.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108947/","id":108947,"name":"Planet Hulk: Exile, Part 1 of 4","issue_number":"92"},"id":41069,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/558425-0002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/558425-0002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/558425-0002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/558425-0002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/558425-0002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/558425-0002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/558425-0002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/558425-0002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/558425-0002.jpg","image_tags":"All Images,Sakaar"},"name":"Sakaar","site_detail_url":"https://comicvine.gamespot.com/sakaar/4020-41069/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41078/","count_of_issue_appearances":57,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-04-06 02:35:06","deck":"Headquarters for the Weapon Plus project, this secret lab was created with stolen equipment from AIM.","description":"

    Brief History

    Inside The World scientists modify and create super humans using various processes including nanotechnology and eugenics. Sentinel technology is utilized in the experiments. Thanks to technology stolen from A.I.M, time is artificially and completely controllable. It can be sped up, slowed down and even stopped completely. This along with controlled bursts of radiation gives scientists the ability to experiment with artificial evolution as a way to create super humans. The population of The World function in isolation, believing themselves to be the only normal humans left on a barren Earth. Other than people, there are many experiments and prototypes of Weapon Plus, like car-cops and massive machines powered by whale brains.

    Fantomex later was able to shrink The World to hand-held size with stolen technology from Doctor Doom so that he could keep it safe.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114449/","id":114449,"name":"Assault on Weapon Plus, Part 2: The World","issue_number":"143"},"id":41078,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3127029-secretavengers03401.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3127029-secretavengers03401.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3127029-secretavengers03401.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3127029-secretavengers03401.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3127029-secretavengers03401.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3127029-secretavengers03401.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3127029-secretavengers03401.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3127029-secretavengers03401.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3127029-secretavengers03401.jpg","image_tags":"All Images,Artwork,Earth-616 The World"},"name":"The World","site_detail_url":"https://comicvine.gamespot.com/the-world/4020-41078/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41102/","count_of_issue_appearances":28,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-02-07 10:45:07","deck":"A city created after World War II in the USA to be the home of all the super-powered beings. Everyone in Neopolis has super Powers. It is protected by the 10th Police precinct and the Top 10 team.","description":"

    History

    Neopolis was created shortly after World War II to house the ever expanding population of science beings. The city as designed by Nazi super scientist ,recruited from the fallen Nazi reign, to house all science beings, whether they be hero, heroine, villain, sentient robot, alien etc.. Initially crime rates were high in the city and because of the large concentration of super powered beings in one area the city couldn't be police using normal methods so it is policed by the tenth precinct (the tenth referring to the world being parallel ten, the other precincts are housed in other parallel realities) of a special multi world police force head quartered on Grand Central, a world were the Roman empire never fell. After the introduction of the new police force crime rates fell and are now no higher than a normal a city. In the modern day the police force, known affectionately as top 10, are held in high regard and are treated like celebrities.

    Culture

    The robot population, who prefer to be known as Ferro-American, were and are discriminated against and treated like second class citizens, most of the robot population live in ghettoes. Despite the discrimination against Ferro-American the population of the city is extremely tolerant of peoples religious beliefs. Because of the extreme verity of people, robots and aliens in the city it is extremely diverse in its art, culture and architect.

    Architecture

    When the government found the daunting challenge of designing a city to house science-beings before them, they recruited various Nazi mad scientists for the task. These \"reformed\" science-villains had been granted amnesty so that the government could utilize their engineering and scientific prowess for just such situations. Much of Neopolis's unique architecture is their work.

    The city is composed of multiple tiers, like a wedding cake, rising several levels in the sky. The Neopolis population being an eclectic mix of mystic beings, advanced scientists, non-human sentient and more, the individual buildings are dizzying in their variety and diversity, mystic temples rubbing roofs with sci-fi towers and alien architectures.

    Significant places

    Transworld Station: Very similar to an are port but mainly transports people to alternate realities and other worlds.

    Neopolis Tenth Precinct: Headquarters of Neopolis's branch of the multi world police.

    Tin Town: The main Robot ghetto

    Neopolis Museum of Modern History: Originally the institute of science, where the \"reformed\" Nazi scientist work, was changed into a museum once they were finished. But because the museum mainly focused on the builders of the city, and no one like Nazis, the museum fell into disrepair.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46873/","id":46873,"name":"Top 10","issue_number":"1"},"id":41102,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/787/84229-7049-neopolis.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/787/84229-7049-neopolis.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/787/84229-7049-neopolis.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/787/84229-7049-neopolis.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/787/84229-7049-neopolis.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/787/84229-7049-neopolis.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/787/84229-7049-neopolis.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/787/84229-7049-neopolis.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/787/84229-7049-neopolis.jpg","image_tags":"All Images,Neopolis"},"name":"Neopolis","site_detail_url":"https://comicvine.gamespot.com/neopolis/4020-41102/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41103/","count_of_issue_appearances":271,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-08-17 11:14:29","deck":"Titan is the largest moon of the planet Saturn and the only natural satellite known to have a dense atmosphere. In the Marvel Universe, it is home to the race of Titans (an offshoot of the Eternals), including the mutant Thanos. In the 30th Century DC Universe, Titan is populated by a race of telepaths and is the homeworld of Saturn Girl, a founding member of the Legion of Super-Heroes.","description":"

    History

    Marvel Universe

    Originally, the Titans (or Titanians) had no connection to the Eternals; the two groups were independently created based on Greek mythology. When the Eternals were made part of the mainstream Marvel canon, the Titans were retconned as a branch of the Eternal race.

    At the dawn of the Eternal race, they were divided into two societies, one which remained on Earth, and one which fled into space. When the Earth Eternals conducted an experiment in cosmic energy which unleashed the full potential of their godlike powers, the Titanians were too far away to receive the full benefit, and therefore developed less degrees of power. This experiment turned the leader Kronos into an immaterial being; his sons, Zuras and A'Lars, both wished to become the next leader, but when Zuras was voted to lead, A'Lars left for Titan to avoid another conflict. He eventually became the leader of the Titan colony, and took the name Mentor.

    Titan has been altered by the advanced technology and powers of its inhabitants; under the surface, an entire balanced artificial ecology supports a colony of several thousand Titans with varying degrees of superhuman powers and longevity. The system is maintained by ISAAC, an artificial intelligence with vast power and knowledge. The core of Titan has been replaced with a massive fusion power generator, which supplies artificial sunlight to an array of lush gardens seeded with plant life from Earth.

    DC Universe

    In the late 20th century, Titan was colonized by humans from Earth who were willing participants in experimental genetic adaptation. Over the next thousand years, the Titanians evolved into a race of highly accomplished telepaths. One of the most powerful and famous Titanians is Saturn Girl (Imra Ardeen), who became a founding member of the Legion of Super-Heroes. Other well-known Titanians are Saturn Queen and Esper Lass (both members of the Legion of Super-Villains) and Mentalla (who tried but failed to join the Legion of Super-Heroes and later joined the Fatal Five to avenge her rejection).

    Other Universes

    • In the 2000 AD universe of Judge Dredd, Titan is used as a penal colony for holding the solar system's most dangerous criminals. It was erroneously placed in orbit around Jupiter rather than Saturn, but this was later explained as being the result of a scientific experiment in teleportation.
    • Titan was the setting of one issue of Mystery in Space, where it was known as the Scarecrow World.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-115181/","id":115181,"name":"Superman Takes the Consequences","issue_number":"127"},"id":41103,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5732095-titan_in_true_color.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5732095-titan_in_true_color.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5732095-titan_in_true_color.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5732095-titan_in_true_color.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5732095-titan_in_true_color.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5732095-titan_in_true_color.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5732095-titan_in_true_color.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5732095-titan_in_true_color.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/5732095-titan_in_true_color.jpg","image_tags":"All Images"},"name":"Titan","site_detail_url":"https://comicvine.gamespot.com/titan/4020-41103/","start_year":"1948"},{"aliases":"1407 Graymalkin Lane\r\nXavier's School for Gifted Youngsters\r\nXavier Mansion\r\nX-Mansion\r\nXavier Academy\r\nWestchester School\r\nXavier Estate\r\nMutant High\r\nGraymalkin Homestead\r\nXavier's School for Gifted Children\r\nJean Grey School for Higher Learning\r\nXavier Institute For Mutant Education and Outreach","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41138/","count_of_issue_appearances":2331,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-22 23:34:58","deck":"The Xavier Mansion has been home to the X-Men since their inception, and has always been a school and safe haven for any mutants in need.","description":"

    Origin

    This mansion, located at 1407 Graymalkin Lane in Salem Center, New York, had been inherited by Charles Xavier and has been in his family for a 100 years.

    The saying of the Institute is 'Mutatis Mutandis', which is Latin meaning 'with those things having been changed which need to be changed'.

    Layout

    Located at 1407 Graymalkin Lane in Salem Center, New York, the Xavier Mansion has been home to the X-Men since their inception, and has always been a school and safe haven for any mutants in need. The mansion has been the subject of damage due to battles and has even been destroyed twice. Once during the events of Inferno, in which Mr. Sinister destroyed the whole mansion, except for its underlying basement (which included the X-Men training-ground; the Danger Room). After some time the mansion was rebuild with funds from investors in Xavier's school.

    The mansion was later badly damaged during an attack by a former instructor, the mutant known as Xorn, who was posing as Magneto. The end of the battle left long time X-Man Jean Grey dead at the hands of the mad mutant. The mansion got a large renovation after these events, in which almost nothing of the original school could be rebuilt. The school was now in the shape of a giant \"X\". In the middle, there was a courtyard, where mutants could pay respects to the deceased Jean Grey.

    Mutants could train their unique abilities in the a training-room known as the Danger Room. There also resides other high-tech equipment such as Cerebro, a mutant tracking device utilized by telepaths like Professor X. This device is in a highly-secured room and is available for only select few people such as Charles Xavier and the Stepford Cuckoos

    There is also a basketball court and a swimming-pool where the students can hang out and play sports, though there is also an opening for the hangar at this location, where many vehicles are parked. The mansion itself acts as a school (see the Xavier Institute page) and safe haven for mutants everywhere. Its role as a safe place for mutants has extended to all mutants, including former enemies of the X-Men since M-Day, after witch almost 90% of the mutants lost their powers. To safeguard the remaining mutants, the government ordered human-operated Sentinels to stay at the school premises, making sure that the school would not be attacked by outsiders. Although this seemed a bad idea at first to most mutants, (after all Sentinels where originally designed to hunt mutants) most got used to them pretty quickly.

    However, disaster struck the school not long after M-Day. The Sentinels where away on a mission and during this time the school was attacked. The mutants who had lost their powers during M-day were technically no longer mutants and were to go home. A bus with all ex-mutants was about to take off when a rocket was fired at the bus. Nobody could stop it in time and almost everyone inside died that day, including mutants DJ, Rubbermaid and Tag. After this, all mutants were to stay on the premises of the mansion.

    After the superhuman Civil War, the mutants were allowed to leave the mansion more often, but the Sentinels remained to safeguard. Not soon after this the mansion was destroyed (for a second time) by those same Sentinels, who were corrupted by Cassandra Nova's technology. This was done by former X-Man Bishop during the events of the Messiah Complex. After this, the X-Men no longer resided in the area of the school. The team and it's students left the New York area and took Graymalkin Industries as their new base. Not soon after the events of Utopia X, they abandoned this place as well and they now reside on the base they dubbed Utopia, an island made from the remnants of Asteroid M, just of the coast of San Fransisco.

    Teachers

    The teachers currently teaching and that have taught at some time are:

    1. Beast taught science and mathematics, but has left the Institute.
    2. Emma Frost is the co-headmistress of the school, and teaches ethics. She is also the new co-leader of X-Men, teaching them teamwork with the help of senior members including Colossus. She was also the former mentor of the Hellions.
    3. Cyclops is the co-headmaster of the school. He also teaches elective leadership and tactics. He was also the mentor of the Corsairs and one of the founding student body members.
    4. Iceman teaches math/accounting.
    5. Karma taught French and took care of mutants who were too young to join the New Mutants. She took over the library and was formerly the replacement mentor of Alpha Squadron.
    6. Nightcrawler is the Drama teacher.
    7. Northstar taught flight and business, he was also the mentor of Alpha Squadron.
    8. Jean Grey was a telekinesis teacher and the former headmistress.
    9. Kitty Pryde teaches computer science classes.
    10. Wolverine teaches self-defense, close-combat and survival classes.
    11. Moira MacTaggert was formerly the housekeeper when she was Charles' lover, she is now deceased.
    12. Annie was the school nurse and the mother of a student, Carter, but has left the Institute.
    13. Wolfsbane was a teaching assistant.
    14. Banshee was formerly the headmaster of the Xavier Institute, but is now deceased.
    15. Moonstar was formerly the teacher of American History, but she was fired by Emma Frost after she was de-powered by M-Day.
    16. Storm was formerly a mentor of a squad at the mansion but she left to teach students in Africa.
    17. Gambit was a mentor at the Institute but has recently been a member of both the Horsemen of the Apocalypse and the Marauders.
    18. Prodigy's gifts have allowed him to become a substitute instructor at the Institute.
    19. Tom Corsi's enhanced strength made him the perfect candidate for his position as the teacher of physical education.
    20. Rogue is a squad leader.
    21. Magma was the Geology teacher.
    22. Colossus is the Art teacher.

    Renovation

    Jean Grey School For Higher Learning was created by Wolverine in the aftermath of the X-Men's Schism. He named it after the first female X-Man and long lost love, Jean Grey. Built with the idea that there is a brighter future for the next generation of mutants, the Jean Grey School is staffed by the X-Men who are either teachers, mentors or administrative assistance.

    Similar to the Xavier's School in the past, the Jean Grey School has already accepted both mutant and alien students, with Kid Gladiator from the Shi'Ar Empire, and similar to the New MutantWarlock who developed a pacifist mutation is the first Brood student, Broo. However, they have yet to incorporate any non-mutant human students or staff.

    School Motto: \"The best there is at what we do\"

    Overview

    School Grounds

    The school has incorporated Shi'Ar technology into the entire building, incorporating a zero gravity unit and eliminating the need for a Danger Room. Instead any room can be instantly transformed into a training arena with offensive capabilities, as was demonstrated when Wolverine turned the Men's Room into a lazer-filled punishment for Hellion & Glob Herman after they were caught bullying Broo. However, any mess still has to be cleaned up the old fashioned way, leaving Toad (the janitor) alone with his bucket & mop. The vast amount of technology & damages in the school are a constant drain on the school's finances which are overseen by qualified accountant, Iceman. He has recently gained the financial support from Angel, since he was enroled as a student.

    \"Faculty
    Faculty & Students With Krakoa

    The land that the school was built upon wasn't actually Earth. Due to a scheme by the Hellfire Club's Kade Kilgore, the school campus was constructed on a descendant of the former X-Men for, Krakoa. After telepathic communication from Kid Omega, the Krakoa turned against its Hellfire masters and opted to live a peaceful life as a mutable outdoors version of the Danger Room technology inside. It responds to the needs or abuse of anyone who lives there, for instance it provided a tree to shelter Husk from the sun but also attacked Hellion after he urinated on a flower bed.

    Before the official opening of the school, the building became infested with dozens of small blue inter-dimensional imps who deeply resemble the deceased X-Man Nightcrawler. The creatures colloquially known as Bamfs accidentally escaped into the school through an experimental portal created by the Beast. They have instantly become a constant source of mischief & mayhem stealing whiskey and Wolverine's martial arts videos.

    Faculty

    \"Wolverine
    Wolverine & the X-Men Roster

    The original Staff Roster (presented in order of hierarchy):

    Guest Teachers

    Similar to the Avengers Academy, the Jean Grey School has opened it's doors to guest teachers. They tend to be known super heroes & associates of the X-Men. Guest teachers who have appeared at the school include:

    • Deathlok - Guest Teacher of Future History 101

    Students

    The original student body consisted:

    \"No

    Due to events in Uncanny X-Force, the student body quickly gained two more students:

    Time Displaced Students

    During the series All New X-Men, the original five X-Men have traveled into the past and have became students under the supervision of Kitty Pyde at the Jean Grey School for Higher Learning

    • Angel
    • Beast
    • Cyclops
    • Iceman
    • Jean Grey

    Other

    Not everyone who resides at the Jean Grey School for Higher Learning is a member of staff or a student. These include:

    • Warbird - Junior Staff Member
    • Krakoa - The grounds of the school
    • Blink - Unknown position as of yet
    • Ariel - Unknown position as of yet

    Curriculum

    A list of lessons was provided in the first issue of Wolverine & The X-Men (and on Marvel's dedicated site for the Jean Grey School). The syllabus consists of:

    Class List

    • World History (1880 - 1950): An Eyewitness Account, with Headmaster Logan
    • The History of Mutant Art: From Jumbo Carnation to Kenji Uedo, with Professor Paige Guthrie
    • Brain Spelunking: Exploring the Recesses of Your Own Mind, with Professor Rachel Grey
    • Quantum Biophysics, Molecular Phylogenetics and Other Elementary Scientific Concepts, with Dr Hank McCoy
    • Ethics 101: Forgetting Everything You Ever Learned From Emma Frost, with Headmistress Pryde
    • Algebra Sucks: I Know, But You Still Have To Learn It, with Professor Bobby Drake
    • How to Weaponize Household Products: With Professor Remy LeBeau
    • Diction and Linguistics: With Professor Rogue
    • Outer Space Survival Skills: My Time As A Starjammer, with Professor Rachel Grey
    • Future History 101: Mapping What We Know About the World of Tomorrow, with Headmistress Kitty Pryde
    • Mutant Philosophy: The Teachings of Xavier, the Lessons of Magneto, with Dr. Hank McCoy
    • The Art of Fighting Without Fighting: With Headmaster Logan
    • The Art of Fighting With Fighting: With Headmaster Logan
    • Zen and the Art of Ice Sculpture: With Professor Bobby Drake
    • Computer-Hacking 101: ONLY FOR USE TO SAVE THE DAY! With Headmistress Kitty Pryde
    • Downloading Foreign Languages: With Professor Rachel Grey
    • Sex Ed: With Professor Remy LeBeau
    • Know Your Alien Races. And How to Kill Them: With Professor Lockheed
    • Mutant Literature: With Professor Paige Guthrie
    • Flying Into Things First: With Professor Sam \"Cannonball\" Guthrie
    • Psychic Self Defense: With Professor Rachel Grey
    • Future History 101: With Deathlok

    Extracurricular Activities

    • Telepathic Debate Squad: With Professor Grey
    • Fencing Team: With Headmistress Pryde
    • Alternate Dimension Explorer's Club: With Dr. Hank McCoy
    • Comic Book Club: Reading the Classics from Kirby to Morrison, with Professor Guthrie
    • Polar Bear Club: with Professor Drake
    • The \"Let's All Clean Up After Ourselves\" Club: with Custodian Toad
    • Bamf Hunting Club: with Headmaster Logan
    • Choir: with Professor Doop
    • Study Abroad Program: Spend a Semester in Attilan, K'un-Lun, Wakanda or Chandilar, the throneworld of the Shi'ar

    Special Events

    Alternate Realities

    Ultimate Universe

    In this version, the mansion was funded by Magneto and rejected donations. Ever since he left, Xavier took over, and the policies have changed. The students wonder why the mansion runs completely on donations and do not believe that it is totally supported by donations, however there are many donors; though they are anonymous due to anti-mutant groups. A big donor was the Hellfire Club but they only donated to attend to their private agendas. Xavier discovers from Lilandra that SHIELD was one of the major donors before falling out and now the Shi'ar are the major donors.

    Age of Apocalypse

    In this reality, the mansion is taken by Magneto´s X-Men as headquarters, the building is ruined but it has devices of high technology. It is later destroyed by Apocalypse.

    In other media

    Animation

    The Mansion's first animated appearance was in the series Spider-Man and his Amazing Friends.

    The Institute is a pivotal setting in the animated show X-Men: The Animated Series, and also appears in Spider-Man: The Animated Series, during the X-Men's guest appearances in the latter show.

    Again, it was a main setting during the production of the animated series, X-Men: Evolution.

    The Mansion is destroyed at the beginning of the animated series, Wolverine and the X-Men, during an event that set the motions of the whole series in play. It was later rebuilt, funded by Angel.

    Movies

    • The Institute appears in the made-for-TV film, Generation X, featuring the junior team of mutants of the same name.
    • It also appears in the X-Men: Trilogy, in all three films (X-Men, X-Men 2, and X-Men 3: The Last Stand)

    Video games

    • It appears in X-Men: Next Dimension as an arena.
    • The mansion serves as a player's hub in X-Men Legends.
    • It's ruins act as a temporary hub in X-Men Legends 2: Rise of Apocalypse.
    • It is mentioned in Marvel: Ultimate Alliance.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6694/","id":6694,"name":"X-Men","issue_number":"1"},"id":41138,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/2056891-jeangreyschool.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/2056891-jeangreyschool.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/2056891-jeangreyschool.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/2056891-jeangreyschool.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/2056891-jeangreyschool.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/2056891-jeangreyschool.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/2056891-jeangreyschool.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/2056891-jeangreyschool.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/2056891-jeangreyschool.jpeg","image_tags":"All Images,Jean Grey School"},"name":"Xavier Institute","site_detail_url":"https://comicvine.gamespot.com/xavier-institute/4020-41138/","start_year":"1963"},{"aliases":"The Big Apple\r\nThe City That Never Sleeps\r\nGotham\r\nModern Babylon\r\nNew York, New York\r\nNew Genosha\r\nNYC\r\nNew K'un-Lun\r\nThe Regency","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41183/","count_of_issue_appearances":21343,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-28 22:11:29","deck":"The most populous city in the United States.","description":"

    Overview

    New York City is one of the largest cities in the world in terms of population and encompasses a huge area, spanning over three states (Connecticut, New York State, New Jersey). Additionally, New York forms one of the main centers of the East Coast urbanized areas along with Philadelphia, Washington D.C. and Boston. Due to its important role at the beginning of the spread of mass media, the city has been prominently featured in all its forms, including comic books. One of the most famous police forces in the world is the New York Police Department.

    History

    Although inhabited long before the arrival of Europeans, the development of the area into an urban center did not occur until visited by explorers. The city was first a Dutch colony, then British until the secession of the United States of America in the American Revolution of 1776. Since then New York has been one of the main centers of urbanization which has resulted in both the progress of science as well as social problems, such as the rise of crime. In the 20th and 21st centuries these roles have become prominent as well in the media. As one of the world's primary financial centers, the images of Black Tuesday in 1929 which led to the Great Depression are tied directly to the public consciousness surrounding this case. The drug and gang-related problems in later years also served as a statement to others in the United States and beyond that there was a disparity within the country.

    All of the factors listed above also served to make it a target of attacks on September 11, 2001. Terrorists linked to al-Qaeda flew two airplanes into the World Trade Center towers which resulted in the deaths of thousands. This tragic event dramatically altered the perception of the United States both at home and abroad which has been additionally linked to its portrayal in the media.

    Depiction in Comics

    In the early years of comics, it was more common for comics to be based in fictional cities as opposed to real ones. Thus, in the 1960s, when Stan Lee decided to reboot Marvel Comics, one of the decisions which he made was to include real places in comics as opposed to fictional ones as it would better connect with the reader. Thus among comic book publishers, New York City is the most prominent at Marvel. Despite this, various writers at DC used New York City as a model: for instance, Frank Miller said that \"Metropolis is New York in the daytime, Gotham City is New York at night.\" Numerous characters were based or have been based in New York City, including the Spectre, Power Girl, Catwoman, Vigilante and the Justice League International. Additionally, the big two publishers are based in New York City as well as many smaller ones, thus the depiction of the city is something that traditionally many creators were very familiar with.

    The city was also featured in many early comic books which sought to capture the noirish aspects of the city. This was evident in such characters as the Spirit and the Sandman. Such depictions formed a basis for the city's depiction later in comics attempting a retroactive capture of the same atmosphere, as with Vertigo.

    The following depictions of New York City are also notable: the setting for 22 Brides and Painkiller Jane; the New York Disaster in the Uniques; the setting for the Beyond Wonderland series; Brian Wood's hot zone in DMZ. Zenescope also often uses New York's iconic locations for their own covers which portray its main characters as versions of icons, some of which include Americana.

    Boroughs

    Due to its prominent role as a prominently featured city in media in general and specifically for comic books, specific areas within New York City have been spotlighted unlike those in other cities. The following is a list of boroughs and neighbourhoods within specific boroughs. There are also outlying areas of New York City which feature prominently from time to time, including towns and cities in Long Island and the adjoining areas of Connecticut and New Jersey (which are often included in the same geographic area).

    The Bronx

    The northernmost of boroughs, the Bronx is noted for its diverse immigrant population. It is generally less famous than other areas within the city as there are not as many landmarks of note here, and although it has been at times a dangerous area of the city in terms of crime, other areas such as Harlem have been more prominently featured in such regards.

    Prominent Appearances: Blue Beetle, The Boys, Minor Miracles.

    Brooklyn

    Brooklyn is the second most famous of New York City boroughs and correspondingly appears second most often compared to them. Generally speaking, this portion of the city is known for the same reasons as the Bronx: the influx of immigrants and the rise of crime in later years. It has more famous landmarks than the other boroughs (except for Manhattan) such as the Brooklyn Bridge. It also contains the neighbourhood Coney Island.

    Prominent Appearances: 21 Down, The Amazing Spider-Man, Bad Medicine, Captain America, Corriere dei Ragazzi, Fear Itself, G.I. Joe: A Real American Hero, Hawkeye: Blind Spot, Herc, The Hood, Justice League, Marvel Comics Presents, Mystique, Tarzan/Carson of Venus, Venom, X-Factor.

    Queens

    Queens has the same general presentation in comics as does the Bronx. There are fewer landmarks of note here, and, generally speaking, it is also an ethnically diverse area.

    Prominent Appearances: The 100 Greatest Marvels of All Time, Fantastic Four, Ultimate Spider-Man.

    Staten Island

    Generally speaking, Staten Island is the least prominent of New York boroughs as it is isolated from them. It is generally a higher income part of the city.

    Prominent Appearances: None

    Manhattan

    The island of Manhattan forms the heart of the city and serves as home to most of the notable landmarks.

    Prominent Appearances: Outside of the other boroughs, Manhattan is generally used in the same context as New York City.

    Neighbourhoods

    Coney Island

    New York City's seaside resort. Coney Island is well-known for its famous boardwalk and amusement rides. It is one of the only prominent neighbourhoods outside of Manhattan.

    Notable Appearances: The Pirates of Coney Island, The Warriors Official Movie Adaptation.

    Greenwich Village

    Somewhat upscale neighbourhood known for a bohemian lifestyle, as well as being a source of the hippie movement in the 1960s. Served as the base of operations for both Doctor Strange and Wonder Woman.

    Notable appearances: The Darkness, Howard the Duck, Witches.

    Harlem

    Often associated with crime and poverty, Harlem has undergone heavy gentrification in recent years. Despite this, it is still often displayed as a tough area of the city centered around African-American culture.

    Notable Appearances: Hero for Hire, Power Man.

    Hell's Kitchen

    Hell's Kitchen is associated prominently with Daredevil and his enemies, most notably Kingpin. It is also the birthplace of Frank Castle. The version of Hell's Kitchen featured in Marvel comics is substantially different from its real-life counterpart which is known for clothing and fabric wholesalers, not for crime.

    Notable appearances: Daredevil, Hawkeye.

    Prominent Landmarks

    New York City is home to a number of famous landmarks, often seen to be iconic with the city or the United States as a whole. Included among these are the Ellis Island, Grand Central Station, Statue of Liberty, Wall Street and the others. Additionally, some other institutions are known for their connection to the city, notably some of the universities (NYU, Columbia) which occasionally are shown as centers of research. The following have been featured prominently in comics:

    American Museum of Natural History

    A museum on the West side of Central Park featuring exhibits on zoology and anthropology.

    Notable appearances: Has been featured occasionally in Captain America related series.

    Central Park

    The largest park inside of the city and one of the most famous and largest city parks in the world. It has occasionally been seen as a location where criminals lurk, though equally it is famous for its other depictions.

    Notable appearances: It is often featured from time to time in any comics related to New York City. It features fairly regularly in The Boys (2006). At the end of the movie The Avengers (2012), Thor leaves for Asgard with Loki from Bethesda Fountain, one of the prominent landmarks within the Park.

    Empire State Building

    For a period the tallest free standing structure in the world, the towering building has been associated with New York City since it was built. Although other large skyscrapers are equally famous (such as the Chrysler Building) the Empire State building remains one of the most prominent buildings in the city.

    Notable appearances: The Punisher (2001), Preacher (1995), Chronicles of Wormwood (2007), 2000 AD (1977), Beyond Wonderland (2008), Doc Savage (1998), Mystery Man (2011). It is also used as a somewhat token high spot to view the city from. In the 1993 movie the Shadow, the villains inspect the city from above to decide how far the blast radius will be.

    Riker’s Island

    This real life prison is featured prominently in the Marvel Universe as a holding location for many street level heroes.

    Times Square

    At one point the automated newsfeeds served as a way to stay connected to the happenings in the world before the advent of television and radio. Ever since then Times Square has maintained a link to media in the city, and is seen by many to be a prominent landmark and meeting point (though this is not as accurate as it relates to people that live in New York City.)

    Notable Appearances: It often serves as a place of large battles in comics as has been featured in Spider Island and Green Lantern New Guardians.

    United Nations Headquarters

    After the establishment of the United Nations following the Second World War, New York City was chosen as one of its locations as it is a “global capital” (this despite the fact that politically New York City is not the capital of anything.) Generally speaking the HQ is featured either for its general assembly or for its security council (which is also based in here.) It occupies a small portion of land granted international status by the USA.

    Notable Appearances: For a time in the 1970s, Diana Prince maintained a job at the United Nations Headquarters. It also featured prominently in the Death in the Family story arc when the Joker attempts to poison the General Assembly after being made the ambassador from Iran.

    Fictional Locations

    As the setting for many comic book stories, the city has many fictional locations as well which have been featured regularly.

    Avengers’ Mansion

    One of the main bases of operations for Marvel’s superhero team. It is featured often as the meeting point and planning space for the team.

    Baxter Building

    The most prominent of headquarters for the Fantastic Four.

    Daily Bugle

    A fictional newspaper with its headquarters in New York City. Closely associated with Spider-Man stories (as he was employed there) as well as with Daredevil through Ben Ulrich, one of the Bugle’s reporters.

    Diana Prince’s Fashion Boutique

    During her depowered phase in the 1960s and 1970s, Diana Prince relocated to Greenwich Village and opened a fashion boutique. It was more used as a base of operations, but her interaction with locals was sometimes featured, most prominent among them the gang Them!

    Empire State University

    Borrowing its name from the nickname of New York State (the Empire State) this university is the alma mater of many famous Marvel characters and inventors.

    Fabletown

    One of the key locations in the Fables setting from Vertigo.

    Four Freedoms Plaza

    A one-time headquarters of the Fantastic Four. It has since been destroyed.

    Midtown High School

    The high school attended by many of Peter Parker’s friends and colleagues. Featured prominently in Spider-Man stories, especially those dealing with his early years.

    Morlock Tunnels

    A system of tunnels underneath New York City inhabited by the mutant Morlocks in the Marvel Universe.

    Sanctum Santorum

    The base of operations of Doctor Strange, located in Greenwich Village.

    Stark Tower

    The base of operations for Tony Stark and Iron Man, as well as generally serving as the main location for Stark Industries.

    Triskelion

    A SHIELD base of operations, located off the coast from New York City.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-201737/","id":201737,"name":"Tintin En Amerique","issue_number":"3"},"id":41183,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/4342928-500px-flag_of_new_york_city.svg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/4342928-500px-flag_of_new_york_city.svg.png","image_tags":"All Images"},"name":"New York City","site_detail_url":"https://comicvine.gamespot.com/new-york-city/4020-41183/","start_year":"1932"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41184/","count_of_issue_appearances":5042,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-03-17 18:55:53","deck":"Metropolis is much more than a bustling urban center. Like many east coast American cities, Metropolis is a melting pot of peoples and cultures from around the world. The city is often referred to as the Big Apricot, and the City of Tomorrow.","description":"

    The City of Tomorrow

    It comes as no surprise that Superman chose to make his home here. With a population almost 11 million citizens strong, Metropolis is as big and exciting as any young boy from Smallville, Kansas, could imagine. This city of opportunity gave young Clark Kent his big break as a reporter on the prestigious Daily Planet newspaper. And in those very offices he would find not only lifelong friendship, but true love! Metropolis is a home base for Superman, a home away from home, and it is also a city with its own unique problems. It always needs a helping hand. Both driven by and dependent upon Lex Luthor and LexCorp for its economic well being, Metropolis also faces the constant threat of alien attacks and super-villains. Despite all that, Metropolis is a city in which optimism shines through. It is a city that looks forward, never back.

    Attractions

    The Ark

    Metropolis University (Clark Kent's alma mater) has a floating aquarium anchored just offshore known as the 'Ark'.

    Centennial Park

    Metropolis's Centennial Park is home to the Superman Monument, a bronze statue celebrating the Man of Steel. Previously, it served as a crypt for Superman's body after he appeared to perish in his first great clash with Doomsday. It now also holds both a statue of Superboy as well as his body, after he died saving the world during Infinite Crisis.

    Business & Industry

    The Avenue of Tomorrow is an area of Metropolis that houses the greatest minds of this generation. It is a place of science and discovery.

    Robotwise Industries

    Robotwise Industries manufactures fully automated, remote controlled machines for construction and other applications.

    LexCorp

    LexCorp endeavors into all aspects of technology, communication, medical science, technical science, architectural engineering and future technology and more.

    Steelworks

    Steelworks is the laboratory of Dr. John Henry Irons and has come to rival LexCorp as it has expanded its reach into many different industries. John Henry renamed it Ironworks to further himself from his superhero life as Steel.

    Media

    The primary news outlet is the Daily Planet newspaper.

    WGBS: is a broadcast network based in Metropolis. Clark Kent & Lana Lang are the evening news anchors.

    WMET: was a TV station in the Pre-Crisis universe. Lana Lang was employed here during the Silver Age.

    WXR: was the Metropolis TV station that Lana Lang had initially auditioned for.

    UBC: United Broadcasting Company was the competitor of WGBS in the Pre-Crisis universe. It was headed by President Samuel Tanner.

    Notable Residents

    Senator Ballard, a Senator who worked in Metropolis.

    Booster Gold, was born in the future but made Metropolis his home in his own past. When Booster arrived in Metropolis he was

    \"Booster
    Booster Gold

    the main hero as Superman was absent. Booster while living in Metropolis tried to make himself the most famous hero of the city while Superman was absent. Where Superman was the \"Man of Steel\" Booster was the \"Man of Gold\". When Superman came back he didn't much like Booster but over the years has come to respect him.

    Edge, Morgan, the senior news editor for WGBS.

    Goldstar, Trixie Collins a friend of Booster Gold's who lived in Metropolis and became his partner Goldstar for a short time. Trixie like Superman was from Kansas. After Trixie became Goldstar, Booster's sister did as well.

    Fire Chief Hogan, Chief of the Metropolis Fire Department.

    Lane, Lois, ace reporter for the Daily Planet.

    Lombard, Steve, sportscaster for WGBS.

    Rowland, Jeb, morning newscaster for WGBS.

    Superman, Metropolis is the home town of many heroes but Superman has made it his own home. Superman has made three

    \"No

    places his home. He was born on Krypton and sent to earth as a baby. He landed in Smallville, Kansas where he was raised until he went college in Metropolis. After college he got a job as a reporter at the Daily Planet.

    The work Superman does in Metropolis can not be measured. He has helped police and politicians whenever he could and felt is was right to do so. Superman was such a protector of Metropolis that when he got married Batman made sure that the city was protected by virtually every hero in the DC Universe so that Superman could relax and enjoy his honeymoon.

    Thorn, lived in Metropolis and her father worked for the Metropolis police department. She became a hero when her father was killed by a criminal organization known as the 100.

    White, Perry, editor-in-chief of the Daily Planet.

    Y2K

    All over the world, many feared that the Y2K virus would signal the end of computers and mechanized life, causing a riot of chaos and confusion. But for Metropolis, the dawn of a new millennium brought with it an astounding, convulsive makeover courtesy of Brainiac 13. From Suicide Slums to Hob's Bay the city's buildings and infrastructure were remade and upgraded. In a matter of hours, Metropolis had truly become \"the City of Tomorrow\".

    The Boroughs of Metropolis

    Situated on an island separated from the mainland by Hob's River to the north and West River to the south, Metropolis is a city that has never quite outgrown its \"expansion phase.\" New Troy encompasses the urban boroughs of the island itself. Little Africa is the largest predominantly African American neighborhood in Metropolis, it bears a great resemblance to Harlem. Park Ridge and its subdivisions are Metropolis's oldest suburbs, while Bakerline is home to the city's middle class, for example Jimmy Olsen. Only the wealthiest can afford the ocean front real estate of St. Martin's Island. Hell's Gate and Queenland Park are home to the city's growing immigrant population.

    The Future

    Metropolis is the future location for the Legion of Super-Heroes headquarters. It has become the symbol of a shared universe because of its connections to Superman. Over the years Metropolis has a technologically futuristic landscape.

    Location

    Technically, if looked at geographically on our maps, Metropolis is in the state of Delaware.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112007/","id":112007,"name":"The Ski Murder","issue_number":"23"},"id":41184,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/6334730-qwadf.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/6334730-qwadf.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/6334730-qwadf.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/6334730-qwadf.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/6334730-qwadf.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/6334730-qwadf.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/6334730-qwadf.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/6334730-qwadf.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/6334730-qwadf.png","image_tags":"All Images"},"name":"Metropolis","site_detail_url":"https://comicvine.gamespot.com/metropolis/4020-41184/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41185/","count_of_issue_appearances":1033,"date_added":"2008-06-06 11:27:49","date_last_updated":"2019-04-12 12:41:09","deck":"The first Fortress of Solitude belonged to Doc Savage, the original for Superman. The second and most famous Fortress is Superman's headquarters created by the Eradicator. It contains various Kryptonian artifacts as well as a way of communicating with Jor-El.","description":"

    Fortress of Solitude

    \"A
    A version of the fortress of solitude

    The Fortress of Solitude is a relic of the planet Krypton hidden in a tesseract sphere in the Andes mountains. It was created by Eradicator when Superman brought it Earth as his base. It was supposed to turn Earth into the new Krypton. Stopping this from happening, the Fortress would stay hidden as Superman's secret base hidden in the arctic as a way to find out information about his past and purpose of Krypton and why he was placed on Earth.

    The Early Fortress

    Golden Age

    The first Fortress of Solitude appeared in Superman #17. The fortress was built into a remote mountainside. The fortress contained various items such as trophies and objects that Superman's enemies used on him. These items include: The Archer's bow and arrows, Lex Luthor's ray gun, Count Bergac's monocle and Righab Bey's turban to name a few. Superman also used the fortress as a personal gym.

    Silver Age

    Entrance

    During the Silver Age, Superman has a fortress built on a cliff side with a giant keyhole. Superman uses a giant key buried in the snow to open the fortress door. When the key is buried, its top can be seen and is disguised as an Airplane path-indicator. The key is so heavy that only Superman can lift it. The origin of the metal entrance doorway is told in Action Comics #409.

    Trophy Room

    This room contains souvenirs of missions performed all over the universe.

    Superman Room

    There are several rooms in the Fortress dedicated to friends of Superman like a wax museum. The Superman Room contains statures of Superman and Clark Kent.

    Batcave

    A room dedicated to the world's greatest detective. A privately locked chamber containing various souvenirs acquired during his many adventures with Batman. Many of the souvenirs contained within the Batman room are also similar to what is found in Batman's own sanctuary, the Batcave. Batman & Robin.

    Super-Mural

    On one wall of the Fortress, there is a mural that was painted by Superman, depicting how he once created an entire solar system all by himself.

    Supergirl Room

    A room dedicated to his cousin Supergirl.

    Robot Room

    A room containing the atomic-powered robots that aid Superman in training and in emergencies.

    Jor-el and Lara Arch

    Statues of Jor-El and Lara, (Superman's parents), supporting a Krypton globe, form an archway.

    Ma and Pa Kent Room

    A room dedicated to the memory of Superman's foster parents, Jonathan and Martha Kent.

    Clark Kent Room

    A room dedicated to Superman's alter ego. Shown in Superman #152.

    Daily Planet Room

    A replica of Clark Kent's office at the Daily Planet.

    Jimmy Olsen Room.

    A room dedicated to Superman's Pal. Shown in Superman #152.

    Perry White Room.

    A room dedicated to Superman's friend and his alter ego's boss. Shown in Superman #152.

    Lois Lane Room

    \"No

    A room dedicated to Superman's girlfriend Lois Lane. Shown in Superman #152.

    Lana Lang Room

    \"No

    A room dedicated to Clark Kent's Smallville sweetheart Lana Lang.

    Lori Lemaris Room

    \"No

    A room dedicated to Clark Kent's college sweetheart the Atlantean Lori Lemaris.

    Lyla Lerrol Room

    \"No

    A room dedicated to Superman's love the Kryptonian actress Lyla Lerrol.

    Interplantary Zoo

    A room filled with various space creatures and specimens that Superman collected from around the universe.

    Supermobile

    Superman once used the Supermobile when an asteroid with the properties of a red sun passed over earth. The Android got free and battled the JLA and only Superman was left. Superman escaped to the Fortress and used the Supermobile to defeat the Android. It also houses a steel diary, it's pen is actually thought guided and writes whatever Superman thinks.

    Other Artifacts found at the Fortress

    Phantom Zone Projector: In those day, when you beam someone with the Phantom Zone Projector they would turn into a Phantom, no one can see, hear or feel them but they can see and hear you. Superman communicates with them using a form of telepathy. Most of the Zoner's reside on Earth since Jor-El (Superman's father) was the one who imprisoned him. Thy only way to see a Phantom Zone prisoner is by a special pill. The prisoner is given a pill before he is sent to a ghost like state and when light is passed on to him his skeleton becomes visible. So far only one prisoner who swallowed the pill escaped from the authorities. This prompted the Prisoners to make an oath to help a fellow Prisoner and (even Superman) if the need be.

    Zone-O-Phone: Was a two-way television device used by Superman during the Silver Age to communicate with the Phantom Zone Criminals. The Zone-O-Phone was used mostly for parole hearings.

    Bottle City of Kandor: Just like the T-Rex, Giant Penny and Giant Joker Playing Card in the Batcave, the 'Bottle City of Kandor' is a staple of the Superman lore. Originally it was the city of Kandor on Krypton before it was shrunk by the villain Brainiac.

    Kandor-Scope: Was a two-way television used by Superman and the Kandorians during the Silver Age to communicate with each other.

    Kandorian Shrinking Ray Projector: Was a device used by Superman during the Silver Age to shrink in size when he needed to enter the Bottle City of Kandor.

    Kandorian Enlarging Ray Projector: Was a device used by Superman during the Silver Age to return to normal size once he left the Bottle City of Kandor.

    Superman's Underwater Fortress of Solitude

    In Action Comics #244, Superman had an underwater Fortress of Solitude located at grid coordinates 28 degrees North Latitude and 50 degrees West Latitude, which is in the Sargasso Sea section of the Atlantic Ocean. Superman used the underwater fortress while trapping two alien invaders. The underwater fortress made a cameo appearance in Superman #176. Superman abandoned the underwater fortress due to its location was discovered by divers. The Atlanteans use the underwater fortress as a \"showplace and tourist attraction\".

    Doc Savage's Fortress of Solitude

    In 1933 author Lester Dent created Doc Savage in his first Doc Savage novel The Man of Bronze, along with Doc he created the Fortress of Solitude-Doc's arctic retreat. Doc's Fortress was quite different from Superman's with his containing a gym, a laboratory, a hangar, a solar observatory, a hospital, a factory, and many other rooms and buildings.

    Doc Savage was a big inspiration for the creation of Superman, with his first name being Clark and he had a Fortress of Solitude which Superman would later have. His original adventures also served as an inspiration for Superman and Batman.

    Modern Age

    The New 52

    Following the aftermath of Flashpoint, Brainiac's origins were reset. Brainiac now is known as \"the Collector\" an artificial intelligences that originally developed on Culon where it believed that the only way to preserve the universe was to save the best of civilizations by micronizing them and then leaving. The Collector would infect various worlds that had a high level of AI systems with its presence before taking the main cities of those worlds. It attacked Krypton years ago and claimed Kandor before later realizing years later that a lone survivor of Krypton had escaped to Earth. Seeking out the Last Son of Krypton, the Collector made contact with Lex Luthor in order to draw Superman out. He then infected John Corben with his influence and transformed him into a cyborg under his control before taking Metropolis like he had taken Kandor years earlier.

    Superman eventually stormed Brainiac's ship and made a deal that if he defeated the Collector, Metropolis would go free. The Collector sent Corben after Superman, but due to Superman reasoning with Corben over his feelings for Lois Lane, he broke free of the Collector's control and joined Superman in his attack. Superman then used his rocket from Krypton that had also been micronized with Metropolis to attack the Collector's mind, which the rocket was able to due since it's primary program was to project Kal-El. In doing so, Metropolis was returned to Earth and Superman took possession of the Collector's ship and made it his new Fortress of Solitude.

    \"Crystal
    Crystal Palace

    At some point after, Superman abandons his \"Space Fortress\" and gains a new Arctic one, unlike the older versions, this new Fortress has the appearance of a giant spiky crystal ball. How Superman obtained this Fortress and whats become of the Space one is still unknown due to the 5 year time gap.

    'Super Friends' TV show

    The Fortress of Solitude is included in the Super Friends television series. The Fortress of Solitude was essentially the same as the comic version. In one episode of the Super Friends which Superman died, the Super Friends visited the Fortress of Solitude and it required a giant key to enter the fortress, just like the comic version.

    Superman movies

    The Fortress of Solitude has appeared in various Superman films since the 1970s. This version is considerably different than in the comics. In these films, it is usually depicted as a crystal cave that was created by throwing a Kryptonian crystalline object onto the permafrost in the vicinity of the North Pole.

    Man of Steel movie

    In the new Superman Movie: Man of Steel. The fortress is a crashed Krypton colonization ship equipped with a birthing matrix to create new Kryptonians, It is unlike its previous incarnations made of a Kryptonian metal like substance rather then sunstone crystal.

    It was destroyed during a fight between General Zod & Kal-El it remains unknown how much if any of the ship survived it's destruction!

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-115336/","id":115336,"name":"Fall Issue","issue_number":"7"},"id":41185,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117229/6514835-6509260-fortress%2Bof%2Bsolitude.jpg","image_tags":"All Images"},"name":"Fortress of Solitude","site_detail_url":"https://comicvine.gamespot.com/fortress-of-solitude/4020-41185/","start_year":"1942"},{"aliases":"The Alley","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41282/","count_of_issue_appearances":241,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-05-05 04:48:14","deck":"The original home of the Morlocks was a system of abandoned tunnels in Manhattan, New York. These were the site of the \"Mutant Massacre\" in which several of the Morlocks were killed. Also called the Alley.","description":"

    These tunnels were abandoned by the military and the fugitive mutants ran freely undetected through them. These tunnels led to the sewers, New Jersey, Connecticut, New York state and Monster Metropolis.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-23139/","id":23139,"name":"Catacombs","issue_number":"169"},"id":41282,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3204483-weaponx01001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3204483-weaponx01001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3204483-weaponx01001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3204483-weaponx01001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3204483-weaponx01001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3204483-weaponx01001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3204483-weaponx01001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3204483-weaponx01001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3204483-weaponx01001.jpg","image_tags":"All Images,Artwork"},"name":"Morlock Tunnels","site_detail_url":"https://comicvine.gamespot.com/morlock-tunnels/4020-41282/","start_year":"1983"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41283/","count_of_issue_appearances":35,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-09-03 17:07:55","deck":"The floating headquarters for the mutant group, the Acolytes, which has since been destroyed.","description":"

    History

    Avalon was salvaged from parts of Cable's ship Graymalkin. X-Force deceptively destroyed Graymalkin after S.H.I.E.L.D. attempted to invade it and use it for their own purposes, but most of its critical parts remained cloaked or within X-Force's possession.

    The mutant messiah Magneto later acquired several parts, eventually building the mutant sanctuary Avalon, a haven for mutants that floated in space. The base became headquarters to Magneto's group the Acolytes, including high ranking member Exodus. While Exodus tried to recruit Magneto's former students from the New Mutants (who were now part of the Cable-led militant group X-Force) to stay in Avalon, Cable returned to his former ship and tried to destroy it.

    Unfortunately, the ship was later destroyed when Onslaught attacked the base leading to it crash landing into unknown parts of Australia. Many members of the Acolytes died, but several--including Exodus, Scanner, Frenzy, the Kleinstock brothers, and Unuscione--were able to survive.

    Ironically, Avalon's parts once again came into the possession of Cable, who used the remnants of Avalon to build his isolated island nation Providence.

    Alternate Realities

    Earth 295: Age of apocalypse

    \"
    AoA

    In this reality, Avalon was the last refuge of Humans and Mutants who wanted to escape Apocalypse´s tyranny. The place was a real paradise full of life where humans and mutants coexisted in peace and harmony. The placed was ruled by Destiny and Cypher (her adoptive son).

    It was located hidden at the Antarctica, ressembled Savage Land of main reality but with different topography, this site was one of the only places in earth free from interference of Apocalypse until Shadow King mindcontrolled every inhabitant making them kill each other and burn the villages. Thus it was abandoned.

    In order to reach the Sanctuary, people must get passage from the tribe Ghost Dance in the \"Infernal Gallop\", then Mystique ferried refugees from an Antarctic station to the shores of Avalon. Then the travelers would be conduced into Avalon by Cain (a massive monk).

    In Other Media

    Video Games

    \"Avalon
    Avalon as seen in Children of the Atom
    • Avalon is featured in X-Men: Mutant Apocalypse, where Magneto uses it as his base of operations. He plans to destroy Genosha from Avalon, but the station is infiltrated by the X-Men, who manage to defeat both Magneto and Exodus.
    • Avalon is featured as Magneto's stage in the Japanese fighting game X-Men: Children of the Atom. The game's final battle is fought there, and Avalon is destroyed after Magneto is defeated.
    • Avalon is featured as a stage in X-Men 2: Clone Wars.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-64502/","id":64502,"name":"Fatal Attractions Part 2: Back to Front","issue_number":"25"},"id":41283,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/35816/737456-414px_avalon_001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/35816/737456-414px_avalon_001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/35816/737456-414px_avalon_001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/35816/737456-414px_avalon_001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/35816/737456-414px_avalon_001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/35816/737456-414px_avalon_001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/35816/737456-414px_avalon_001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/35816/737456-414px_avalon_001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/35816/737456-414px_avalon_001.jpg","image_tags":"All Images"},"name":"Avalon","site_detail_url":"https://comicvine.gamespot.com/avalon/4020-41283/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41284/","count_of_issue_appearances":32,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-11-27 14:45:02","deck":"A military base in Florida, this location marks the site of the first battle between Magneto and the X-Men.","description":"

    Origin

    The X-Men (chronologically) faced their first mutant super villain Magneto at Cape Citadel.

    Creation

    Cape Citadel was created by writer Stan Lee and artist Jack Kirby in 1963.

    History

    Similarly to The Cape which appears in Captain Marvel, Cape Citadel is based on Cape Canavral.

    Other Media

    Cape Citadel appears in X-Men The Animated Series in an episode that uses almost the exact same story line as X-Men #1 (Sep. 1963), apart from changing the roster and replacing Iceman and Angel with Storm, Rogue and Wolverine.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6694/","id":6694,"name":"X-Men","issue_number":"1"},"id":41284,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/37015/1305008-canaveral1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/37015/1305008-canaveral1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/37015/1305008-canaveral1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/37015/1305008-canaveral1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/37015/1305008-canaveral1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/37015/1305008-canaveral1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/37015/1305008-canaveral1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/37015/1305008-canaveral1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/37015/1305008-canaveral1.jpg","image_tags":"All Images,Cape Citadel"},"name":"Cape Citadel","site_detail_url":"https://comicvine.gamespot.com/cape-citadel/4020-41284/","start_year":"1963"},{"aliases":"Mount Wundagore\r\nMt. Wundagore","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41286/","count_of_issue_appearances":170,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-09-20 18:27:28","deck":"Wundagore Mountain (alternatively \"Mount Wundagore\" or \"Mt. Wundagore\") is a part of the mountain range in Transia. ","description":"

    Creation

    Wundagore Mountain was created as a location in the fictional country Transia by Stan Lee and Jack Kirby, first appearing in Thor #134.

    General Information

    Geography: Transian Mountain Range, Transia

    Locations: Hall of Darkhold, Darque Hold, Drew Family House, and Citadel of Science

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8950/","id":8950,"name":"The People-Breeders","issue_number":"134"},"id":41286,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89258-94435-wundagore-mountain.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89258-94435-wundagore-mountain.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89258-94435-wundagore-mountain.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89258-94435-wundagore-mountain.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89258-94435-wundagore-mountain.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89258-94435-wundagore-mountain.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89258-94435-wundagore-mountain.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89258-94435-wundagore-mountain.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89258-94435-wundagore-mountain.jpg","image_tags":"All Images,Wundagore Mountain"},"name":"Wundagore Mountain","site_detail_url":"https://comicvine.gamespot.com/wundagore-mountain/4020-41286/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41290/","count_of_issue_appearances":347,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-02-07 20:12:49","deck":"Originally the greatest city of Krypton, Kandor was shrunk by the intergalactic criminal Brainiac. After Superman defeated Brainiac, he took the bottle to the Fortress of Solitude for safe-keeping, hoping one day to restore it to full size. Meanwhile, thousands live out their lives in the confines of the bottle.","description":"

    KANDOR

    History

    \"Cross
    Cross Section of Kandor

    Pre-shrinking

    Archaeological evidence shows there were settlements in the vicinity of Kandor going all the way back to Krypton's prehistory. The Crystal Hills region contains caves that contained demonic cult activity. It is known that these people (primitive by modern Kryptonian standards) had electronic technology, including holography.

    Eventually Kandor grew to become one of the largest cities on Krypton.

    Shrinking of Kandor

    In the late 1950s, an intergalactic criminal called Brainiac used a shrinking ray on Kandor (and the cities of many other worlds) to miniaturize it and store it in a bottle for space travel. Brainiac intended to restore the cities on a composite world which he would rule over - a project that would take many years to complete.

    Post Shrinking

    Sometime after the shrinking of Kandor, and after Krypton itself was destroyed, Superman encountered Brainiac and took the Bottle City of Kandor back to Earth for safekeeping in his Fortress of Solitude, until such time as he can restore the city to full size.

    Years later, when a kryptonite warhead decimated Superman's secret sanctuary, desperate Kandorian scientists had no choice but to cast their bottle city adrift in the Phantom Zone.

    Superman has since collected the city and placed it in a bottle containment once more. In All Star Superman #10 Superman let the hero Quintum go inside of Kandor and speak to the Council. They then decide to let Quintum take Kandor to Mars so they can live there as super-people, away from human society.

    Superman explored the remains of Kandor while visiting an alternate Krypton before its destruction. Instead of finding the ruins of the once great capital razed by Black Zero's nuclear device, the Man of Steel also learned that Kandor - prior to its trans-dimensional disappearance - was a vast internment camp for aliens.

    The mighty Ceritak, son of gentle Cerimul, a late Elder of Kandor's ruling Council. While Cerimul struggled to unite Kandor in peace following its liberation from Tolos, Ceritak escaped the bottle city and fled to Metropolis. His misunderstood attempts to overcome the language barrier earned the horned Kandorian the nickname \"Scorn\" from the Metropolitan media chronicling his exploits.

    Points of Interest

    The Crystal Hills of Kandor - The Crystal Hills is a restricted historic zone. The old historic scrolls say the hills were a sacred area in prehistoric times. Remains left by the Torgs, a Kryptonian prehistoric cult that worshiped the demon-god Kvorg, including ancient writings and luminescent statuary can be found in caves in the area.

    Notable Residents

    Arvor - a top inventor

    Ken-Dal - a renowned scientist

    Yllura - an accomplished archaeologist

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-121191/","id":121191,"name":"The Super-Duel in Space / The Traffic Cop of 2058, A.D. / Safari from Space!","issue_number":"242"},"id":41290,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62058/2244494-sm.kandor_travel.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62058/2244494-sm.kandor_travel.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62058/2244494-sm.kandor_travel.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62058/2244494-sm.kandor_travel.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62058/2244494-sm.kandor_travel.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62058/2244494-sm.kandor_travel.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62058/2244494-sm.kandor_travel.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62058/2244494-sm.kandor_travel.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62058/2244494-sm.kandor_travel.jpg","image_tags":"All Images,P-P 2012,Profile Picture (Cover)"},"name":"Kandor","site_detail_url":"https://comicvine.gamespot.com/kandor/4020-41290/","start_year":"1958"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41317/","count_of_issue_appearances":50,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-03-21 21:25:27","deck":"A country in the Middle East that has been ruled by Rumaan Harjavti and Queen Bee.","description":"

    Bialya, with it's capital being the city of Bialya, and was ruled by petty dictator Rumaan Harjavarti. He tricked the extra-dimensional Champions of Angor into aiding him against the major world powers. He clashed with the Justice League International several times before being assassinated by the mysterious Queen Bee (not Zazzala) who took his place as ruler of Bialya.

    Queen Bee brainwashed the Global Guardians to serve her. She was later killed by Rumaan's brother, Sumaan. He continued to use the Global Guardians until Dr. Mist broke their conditioning and they left Bialya.

    Bialya was one of the first countries to fall victim to the rage of the criminal/superhero named Black Adam following the deaths of his wife, Isis, and brother-in-law, Osiris. As Black Adam slowly went mad he became unstable. Later on, in a talk between Atom Smasher and Black Adam, it was revealed that Death of the Four Horsemen was responsible for their deaths.

    Other Media

    Bialya, ruled by Queen Bee is seen in the Young Justice episode Bereft. The Young Justice are in the desert of Bialya, where an extraterrestrial sphere has landed.

    Batman battles Chemo off the coast of Bialya, but is poisoned by the radiation. Aquaman and The Atom journey into Batman's body to cure him just in time to stop Chemo's rampage and expose the Brain as the mastermind of the attack.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-28244/","id":28244,"name":"Make War No More!","issue_number":"2"},"id":41317,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/505061-000.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/505061-000.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/505061-000.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/505061-000.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/505061-000.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/505061-000.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/505061-000.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/505061-000.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/505061-000.jpg","image_tags":"All Images,Bialya"},"name":"Bialya","site_detail_url":"https://comicvine.gamespot.com/bialya/4020-41317/","start_year":"1987"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41360/","count_of_issue_appearances":575,"date_added":"2008-06-06 11:27:49","date_last_updated":"2019-09-07 13:35:04","deck":"Oa is one of the oldest planets in the DC Universe. It is home to the Guardians of the Universe and the headquarters of the Green Lantern Corps. According to the Guardians, Oa is placed at the center of the universe.","description":"

    Overview

    Oa is one of the oldest planets in the DCU. It is the home and headquarters of the Guardians of the Universe, an alien race of blue-skinned, white-haired scientifically powerful humanoids. These aliens have evolved from a planet called Maltus. The Guardians administer their brand of policing the Universe by creating champions know as the Green Lantern Corps, a group of powerful universal police officers. Each member of the Green Lantern Corps is equipped by the Guardians with Green Power Rings and a Green Lantern Power Battery with which to charge the rings. Oa was chosen to be the headquarters of the universe, because it is said by the Guardians that it lies in the center of the universe if we imagine the universe as a sphere. This sphere is divided equally into segments all leading to Oa and those are the patrolling sectors of the Green Lantern Corps.

    Oa appears to have no indigenous life. The plant of Oa's only features are what the Guardians have created on its surface.

    During Emerald Twilight story arc, the Guardians of the Universe sacrificed themselves to create one final power ring. This power ring is extremely powerful and may be the strongest power ring held by a Green Lantern. This Power Ring was given to the \"Torch-bearer\" Kyle Rayner. The legendary Green Lantern Corps member Hal Jordan, the Green Lantern of sector 2814, who has now gone rogue under the influence of the evil entity Parallax, killed all but one of the Guardians, Ganthet, and most of the Corps before draining Oa's Central Power Battery of its energy. The planet is later destroyed during a battle between Jordan and his successor, Green Lantern Kyle Rayner.

    What was the remains of the planet Oa served as a base of operations for the villain Oblivion during the Circle of Fire story arc.

    In the graphic novel Legacy: The Last Will and Testament of Hal Jordan Oa is rebuilt as the final wish of Hal Jordan's former power ring. The Central Battery is recharged and the now resurrected Guardians promote Kyle Rayner to the near-omnipotent Ion, solidifying him as the Torch-Bearer and a key element to Oa.

    The Guardians later decide that the Green Lantern Corps is not enough protection for the plant Oa. Now fortified by creating a planet-wide armor and defensive system to prevent attacks, Oa can defend itself. The outer shell is eventually destroyed by the Scarred Guardian in order to make Oa vulnerable for the coming of Blackest Night.

    In the 31st Century Oa is a barren wasteland with only one Green Lantern, Rond Vidar, and one Guardian, Sodam Yat, remaining. When Rond Vidar is killed during the events of Legion of 3 Worlds, a downtrodden Yat believes this is the end of the Corps because he has not been able to recreate the Green Lantern Corps for a long time. Eventually he regains the Willpower to restart the Corps, reigniting the Central Power Battery and sending the inert rings out into the universe to find suitable bearers.

    Destruction

    \"The
    The (second) death of Oa

    When the villain Relic used his collectors to drain and destroy the Central Power Battery, a chain reaction was triggered through Oa's core, obliterating the planet.

    Green Lanterns Corps Headquarters

    Meeting Hall: Large meeting area for roll call, assignments, briefings and general meetings.

    Inner Sanctuary: A large room where the Guardians of the Universe reside. It is often locked and the Guardians refuse to see anyone they do not specifically call on. The inside of the sanctuary itself is an empty void that projects all of space, allowing the Guardians to view the status of the universe from inside their sanctuary.

    Central Power Battery: The central feature of Oa. It contains the energy that all Green Lantern Rings use to power their rings.

    The Foundry: Subterranean foundry where Power Rings and Batteries are forged from pure Willpower.

    Hazard Simulation Facility:This is a training ground. Drill Sergeant Kilowog trains rookies to help them understand how to wield their new power rings.

    Dining Hall: The central eating location on Oa. To maintain and sustain any Green Lantern's nutritional needs there is an executive chef, Greet, who specializes in replicating dishes from across the universe.

    Hall of Great Service: The hall of great service works as a library and safehouse for the recorded stories and deeds of the finest Green Lanterns of all time. These stories and deeds are recorded in the Book of Oa, which serves as the law book.

    Sector Houses: Sector Houses work as remote jail-houses used to hold criminals as they await escort back to the Oan Sciencells. These safe-houses serve as sector headquarters for the sector Lanterns.

    The Sciencells: Are the jailing system of the Green Lantern Corps.

    Memorial Hall: A Green Lantern named Morro, and his pet Dratures, are the crypt keepers to the Memorial Hall. Many Lanterns have dies in the line of duty and to honor fallen Green Lanterns they have a statue erected in their memory.

    Guy's Place or \"The Big W\":Was a restaurant owned by Guy Gardner and Kyle Rayner, serving Earth's American foods and beverages. Guy Gardner wanted to re-establish this once proud brand of American Fast Food to his fellow Green Lantern Corps and new residence on Oa. The restaurant is eventually wrecked during the Emerald Eclipse arc.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-4869/","id":4869,"name":"The Planet of Doomed Men; Menace of the Giant Puppet!","issue_number":"1"},"id":41360,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/28028/861317-cracked_oa_002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/28028/861317-cracked_oa_002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/28028/861317-cracked_oa_002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/28028/861317-cracked_oa_002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/28028/861317-cracked_oa_002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/28028/861317-cracked_oa_002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/28028/861317-cracked_oa_002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/28028/861317-cracked_oa_002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/28028/861317-cracked_oa_002.jpg","image_tags":"All Images,Oa"},"name":"Oa","site_detail_url":"https://comicvine.gamespot.com/oa/4020-41360/","start_year":"1960"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41398/","count_of_issue_appearances":16,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-06-20 21:18:48","deck":"A small, corrupt little town where Jesse Custer begins his ministry.","description":"

    There's not much good to be said about Annville. It was a small town with a lot of dirty little secrets, and Jesse Custer knew them all. He was the preacher, the reverend of a small church. It was his first posting, arranged for him by his grandmother, Marie L'Angell, and he hated it.

    Two hundred citizens of Annville died in the explosion of Custer's church when the Genesis entity possessed Custer. The police force was decimated when the Saint of Killers came through, hunting for Custer.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-40691/","id":40691,"name":"The Time of the Preacher","issue_number":"1"},"id":41398,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/612117-00t.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/612117-00t.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/612117-00t.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/612117-00t.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/612117-00t.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/612117-00t.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/612117-00t.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/612117-00t.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/612117-00t.jpg","image_tags":"All Images,Annville, Texas"},"name":"Annville, Texas","site_detail_url":"https://comicvine.gamespot.com/annville-texas/4020-41398/","start_year":"1995"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41399/","count_of_issue_appearances":15,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-01-02 11:02:22","deck":"A plantation on the Texas/Louisiana border.","description":"

    Nearly in the swamps, on the border of Texas and Louisiana, sits Angelville. According to Jesse Custer, \"If the devil created Texas like some folks say he did, this is where he rested on the seventh day.\"

    The matriarch of Angelville was Marie L'Angell, a dried-up old woman who ruled her family with an iron grip, or at least tried to. She hired the worst thugs she could find, and gave them the liberty to indulge their perversions and their vices so long as they stay obedient to her.

    Angelville was burned down by Custer in his final escape from Angelville, killing L'Angell and all of her henchmen.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-41613/","id":41613,"name":"All In the Family","issue_number":"8"},"id":41399,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/86620-69448-angelville.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/86620-69448-angelville.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/86620-69448-angelville.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/86620-69448-angelville.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/86620-69448-angelville.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/86620-69448-angelville.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/86620-69448-angelville.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/86620-69448-angelville.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/86620-69448-angelville.jpg","image_tags":"All Images,Angelville Gallery"},"name":"Angelville","site_detail_url":"https://comicvine.gamespot.com/angelville/4020-41399/","start_year":"1995"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41400/","count_of_issue_appearances":14,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-05-08 14:19:49","deck":"The secret fortress of The Grail, located in France.","description":"

    The Grail is a secret organization, bent on world domination, and so they need a secret headquarters. That headquarters is Masada, a great fortress carved into the mountains of France. Masada is named after an ancient Israeli fortress, and was named to honor The Grail's purpose - to guard the ancient lineage of Jesus Christ.

    Masada can house hundreds of troops and contains prison, housing and medical facilities.

    It was destroyed by Starr, who had planted explosives throughout the facilities as a last resort.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-42779/","id":42779,"name":"Miracle Man (Hunters Epilogue)","issue_number":"17"},"id":41400,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Masada","site_detail_url":"https://comicvine.gamespot.com/masada/4020-41400/","start_year":"1996"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41402/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-05-05 16:59:26","deck":"A bar in New York City and a haven for Irish expatriats","description":"

    McSorley's was a home away from home for many of those who had decided to leave Ireland's shores, for one reason or another. Men congregated there to talk about the news of the homeland, and to argue over and over again about what should be done, and why they're not the ones to do it.

    For many years, McSorley's was a boys' club - women weren't allowed in until about 1965.

    The atmosphere changed over the years. Now it's a hangout for young people and college kids, young folk looking for a bit of the nostalgia of an early 20th Century Irish pub.

    ","first_appeared_in_issue":null,"id":41402,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/86625-38870-mcsorleys-old-ale-h.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/86625-38870-mcsorleys-old-ale-h.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/86625-38870-mcsorleys-old-ale-h.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/86625-38870-mcsorleys-old-ale-h.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/86625-38870-mcsorleys-old-ale-h.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/86625-38870-mcsorleys-old-ale-h.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/86625-38870-mcsorleys-old-ale-h.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/86625-38870-mcsorleys-old-ale-h.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/86625-38870-mcsorleys-old-ale-h.jpg","image_tags":"All Images,McSorley's Gallery"},"name":"McSorley's Old Ale House","site_detail_url":"https://comicvine.gamespot.com/mcsorleys-old-ale-house/4020-41402/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41403/","count_of_issue_appearances":14,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-01-02 12:02:32","deck":"A small town in rural Texas, a dying town that eventually lives up to its name.","description":"

    It is said of Salvation that, \"it's the kind of place you ain't left by the time you're twenty-five, you're stuck.\" It is a town of hopelessness and mundanity, overshadowed by the Quincannon meat processing plant.

    Odin Quincannon ruled the town of Salvation. The sheriff was on his payroll, and his workers had free rein in the town. The people of Salvation were at Quincannon's mercy, and none of them had the spirit to oppose him.

    Until the arrival of Jesse Custer.

    Custer came in and broke up a group of men who were picking on young Lorie Bobbs. Seeing that Jesse was not afraid to get his hands dirty, Sheriff Jim Bewley offered him a position as deputy. Custer countered the offer, saying that he would rather become the Sheriff. Bewley saw his chance to get out of Salvation and handed the badge over to Jesse.

    Jesse immediately started moving against Quincannon. He arrested every one of his workers who caused trouble in the town, and imposed heavy fines on them. He exercised the law to its fullest extent and then some. Quincannon's retaliation was to try and kill Custer.

    He wired Custer's truck to blow up, but the timing was off. He convinced the Klu Klux Klan to try to kill him, but Custer, with his deputy Cindy Daggett, made short work of them. Then Quincannon wired the entire town to explode, and nearly destroyed it but for a bolt of lightning that lanced down from the sky and nearly killed him. After Quincannon's death, Custer and Daggett used the explosives to destroy the meat packing plant, and Salvation prepared for its slow death. With no money coming into the local economy, the town was doomed.

    It was at that point that Conan Quincannon, Odin's brother, moved into the area. He knew the terrible things his brother had done, and swore to make them right. He opened a waste processing plant, opened up jobs to the residents of Salvation, and turned the town around. It appears that the town is on its way to a bright future.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-45317/","id":45317,"name":"The Man From God Knows Where","issue_number":"41"},"id":41403,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/760/86631-123799-salvation-texas.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/760/86631-123799-salvation-texas.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/760/86631-123799-salvation-texas.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/760/86631-123799-salvation-texas.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/760/86631-123799-salvation-texas.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/760/86631-123799-salvation-texas.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/760/86631-123799-salvation-texas.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/760/86631-123799-salvation-texas.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/760/86631-123799-salvation-texas.jpg","image_tags":"All Images,Salvation, TX Gallery"},"name":"Salvation, Texas","site_detail_url":"https://comicvine.gamespot.com/salvation-texas/4020-41403/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41410/","count_of_issue_appearances":128,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-09-03 04:33:41","deck":"A maximum security prison for metahuman criminals set three miles outside of Keystone City.","description":"

    Iron Heights State Penitentiary is home to almost all of the Flash's Rogues and countless other thugs.

    Iron Heights is known for one main thing: Its un-earthly treatment of the prisoners that reside in it. It is deemed a \"living hellhole\" by those unlucky enough to be imprisoned in it, its all because the Warden has a deep hatred for metahumans as he beats the prisoners regularly and orders the prison guards to kill any prisoner stupid enough to be caught outside prison grounds or trying to escape. This prison has a seperate area in the building called the Pipeline, this is for metahuman prisoners, where living conditions are barely survivable.

    \"Iron
    Iron Heights

    Despite all this there have been breakouts in the past once when Murmer released a viral outbreak in the prison killing guards and prisoners letting him, Girder and Weather Wizard escape. Another instance was when Gorrila Grodd instructed other primates to break him out. The Outsiders also attempted to break Black Lightning out resulting in the power dampeners going offline, causing a massive riot where somewhere around 44 people died.

    Iron Heights' Most Infamous Inmates Include:

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-132157/","id":132157,"name":null,"issue_number":"1"},"id":41410,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/3366897-iron%20heights.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/3366897-iron%20heights.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/3366897-iron%20heights.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/3366897-iron%20heights.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/3366897-iron%20heights.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/3366897-iron%20heights.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/3366897-iron%20heights.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/3366897-iron%20heights.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/3366897-iron%20heights.jpg","image_tags":"All Images,Artwork,Iron Heights"},"name":"Iron Heights","site_detail_url":"https://comicvine.gamespot.com/iron-heights/4020-41410/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41453/","count_of_issue_appearances":323,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-01-19 13:24:19","deck":"The home and headquarters of Doctor Doom. Overlooking Doomstadt (formerly Hassenstadt), Latveria, it's a 110 room castle built in the 16th century by a Latverian noble, Count Sabbat.","description":"

    Castle Doom is highly fortified with extreme measures such as Doom-Knights, Warrior Robots, human Latverian Guardsmen, Guardian Robots for detection and protection. Also included in Doom's stronghold are stunners, shock fields, gas emitters, and possibly Rainbow Missiles or Vortex Machines.

    Marvel Zombies

    in this world Doom used his castle to protect the worlds humans

    Other Media

    Marvel Ultimate Alliance

    While trying to find NightCrawler, the team of superheroes find themselves at Castle Doom. It is the final level in the game.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-5974/","id":5974,"name":"Prisoners of Doctor Doom!","issue_number":"5"},"id":41453,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/28028/784744-castle_doom.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/28028/784744-castle_doom.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/28028/784744-castle_doom.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/28028/784744-castle_doom.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/28028/784744-castle_doom.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/28028/784744-castle_doom.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/28028/784744-castle_doom.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/28028/784744-castle_doom.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/28028/784744-castle_doom.jpg","image_tags":"All Images,Castle Doom"},"name":"Castle Doom","site_detail_url":"https://comicvine.gamespot.com/castle-doom/4020-41453/","start_year":"1962"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41454/","count_of_issue_appearances":1639,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-11-20 08:57:27","deck":"Just east of Fifth Ave. in Midtown Manhattan stands the Baxter Building. The 6 top floors are the home of the Fantastic Four. It's a 35-story building located at 42nd Street and Madison Avenue in New York City. It had been built in 1949 by the Leland Baxter Paper Company.","description":"

    History

    The Fantastic Four originally owned a high rise building in Central City, the top floors of which housed their base of operations and living quarters. It was the prototype for their future headquarters, the Baxter Building of New York City.

    Upon relocating to NYC, the Fantastic Four originally originally just rented the top five floors of the 35 story Baxter Building; but Mr. Fantastic eventually bought the entire building to protect the other tenants from super villain attack. It is located on 42nd and Madison Avenue in New York City. The top six floors are now completely air-tight, with every door being an air-lock. A special elevator would take the team to their floors, with an activator in their belts.

    One of the most well known people to work in the building is mailman Willie Lumpkin who has his daily rounds in the building.

    Early in the team's history, the building was rocketed into space towards the Sun by Doctor Doom and Namor. Namor eventually realized a double cross and helped the team located the device he planted in the building that put it under Doom's control. They were able to put the building back in place with little to no damage.

    When the team temporarily split up, the Mad Thinker took control of the Baxter Building and encased it in an unknown crystalline compound and took control of it. The Mad Thinker's overconfidence caused his defeat when he allowed the Four to enter the building.

    The adoptive son of Doctor Doom eventually sent the whole building into orbit and blew it up in an attempt to kill the Fantastic Four. When the building that replaced it, the Four Freedoms Plaza, was also destroyed, Reed reconstructed the original Baxter Building in orbit and teleported it it's original place. The bottom floor is currently being used as a Fantastic Four museum and gift shop.

    During the Civil War the Baxter building held the teleporter to the Negative zone prison, where captured anti registration super humans were held. During this time Sue blasted a hole though the building.

    After the death of the Human Torch, the building became the home of the Future Foundation, a group of bright and intelligent young people studying under the auspices of the Fantastic Four. After the events of the Annihilus attack and the war between the Kree and the Inhumans, the higher plants were transferred to Antarctica and, shortly after, and after paralyzing the war, they returned to their place of origin.Until the events of Secret Wars, the building remained the home of the Fantastic Four.

    Following the apparent death of the Richards family at this event, the building is bought by Parker Industries, until Peter Parker himself has to file for bankruptcy and loses the building accordingly. When the Human Torch and the Thing reunite with the Richards family against the Griever at the End of All Things and reform the Fantastic Four, the team decides to return to the Baxter Building to continue their life, but discover that now it is the Fantastix who reside. at. Reed decides that they don't need the building and they move to 4 Yancy Street, a place owned by Ben Grimm and his new base of operations. After the events that happened in Empyre, in Fantastic Four # 25, a cosmic being looking for an ancient artifact of power attacks and destroys the Baxter Building which has as a consequence that the place exists a space-time door, causing Reed Richards to claim of again in place for proper surveillance and supervision under the Fantastic Four. Later, Reed Richards built a new Baxter Building at the same place as the original.

    Features of the Baxter Building

    • Ammo Room - ammunition is stored in it's own room on the 35th floor
    • Armory - a combined weapon collection and trophy room is on the 35th floor
    • Ben's Room - Ben Grimm is one of the two permanent residents of the Fantastic Four, with a large apartment
    • Biological Research Lab - located on the 32nd floor
    • Chemistry Lab - located on the 32nd floor
    • Computer Room - the computer room is on the 34th floor of the building
    • Conference Room - a conference room containing the Fantastic Fours files is located on the 33rd floor
    • Dining Room - located on the 30th floor
    • Electronics Lab - located on the 32nd floor
    • Fantasticar Hangar - the Fantasticar hangar is on the 37th floor of the building; like all the vehicle hangars, it is accessible from rooftop elevators, and from the maintenance shop below
    • Fantasticopter Hangar - the Fantasti-copter hangar is on the 37th floor of the building; like all the vehicle hangars, it is accessible from rooftop elevators, and from the maintenance shop below
    • Gymnasium - the gymnasium is on the 31st floor of the building
    • Hidden Elevator - a concealed elevator runs up one corner of the building it is only accessible via an invisible beam device contained in the belt buckles of Fantastic Four member uniforms
    • Living Quarters - the four team members living quarters are on the 35th floor of the building
    • Map Room - a room containing a giant map of the world is located on the 33rd floor
    • Missile Monitoring Room - the flight control room for the Passenger Missile is located on the 33rd floor
    • Missile Ready Room - the Passenger Missile ready room lies between the Missile Monitoring room and the missile silo
    • Missile Silo - the Fantastic Four's Long-Range ICBM Type Passenger Missile is housed in a silo running up one of the corners of the building. At it's base is a launch pad, and it is shielded from the rest of the building by a thick anti-vibration wall. The exhaust is channeled down pipes to expend its heat in the river
    • Projection Room - a room with a projector and closed circuit TV controls is located on the 36th floor
    • Observatory - an astronomical observatory is situated on top of the building
    • Photo Analysis Lab - the only laboratory not located on the 32nd floor is this large room under the observatory for analyzing photographic data
    • Pogo Orbit Plane Hangar - the Pogo Orbit Plane hangar is located at one of the top corners of the building
    • Projection Room - a theater on the 33rd floor
    • Radio Sending and Receiving Room - a radio studio located on the 31st floor
    • Reception Room - a comfortable lobby on the 30th floor where the Fantastic Four host visitors
    • Recreation Room - located on the 31st floor, above the Reception Room
    • Reed's Apartment - one of the two permanent residents, Reed Richards has a large apartment
    • Sue Storm's Room - the Storm siblings commute from the suburbs, but each has a small apartment in the building for convenience.
    • Pogo Orbit Plane Hangar - the Pogo Orbit Plane hangar is located at one of the top corners of the building
    • Storage and Supply Rooms - located on the 34th floor
    • Telestar - continental, local and closed circuit TV monitor room
    • Torch's Asbestos Room - the Storm siblings commute from the suburbs, but each has a small apartment in the building for convenience. Johnny's is made of asbestos so that he may be aflame at will without danger to the furnishings.
    • TV Sending Studio - a fully operational television studio located on the 31st floor
    • Vehicle Maintenance Shops - located on the 34th floor of the building beneath each vehicle's hangar
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-5796/","id":5796,"name":"The Menace of the Miracle Man!","issue_number":"3"},"id":41454,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/1743906-baxter_building___silver_surfer_requiem_1.jpg","image_tags":"All Images,Baxter Building,Marvel"},"name":"Baxter Building","site_detail_url":"https://comicvine.gamespot.com/baxter-building/4020-41454/","start_year":"1962"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41458/","count_of_issue_appearances":23,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-02-13 11:57:55","deck":"The cursed tainted ghost town of Silent Hill is home to many scary stories and haunted souls.","description":"

    History

    Silent Hill is a fictional town in the United States of America which is home to many strange paranormal phenomena which may be related to a strong flow of mystical energies. It could be seen as a gateway point between the so called “normal” world and an alternate reality or realities.

    Geography and Location

    The town of Silent Hill could be located somewhere in California since it is supposed to be located at the shores of Toluca Lake and there is such a Lake in California. Other possible locations suggested for Silent Hill are Michigan and Maine. In the movie “Silent Hill” the town is located in West Virginia.

    Wherever the location of the town might be, it is clear that this is a small and -one would expect to be- quiet little town on a landscape of forest and mountain and, of course, the Toluca lake. Silent Hill combines the rural landscapes with small semi urban settings.

    Housing and Businesses

    The urban development seems to be mild, since the town presents all of the basic accommodations of modern urban life and even some leisure and entertainment. There are a few hotels and motels; there are several stores; two hospitals; a school; houses and apartment buildings; gas stations; a bowling alley; an orphanage; and at least one church.

    A Haunted Place

    Silent Hill is sometimes referred to as a convergence point between realities. It’s a place where mystic energies flow so freely that reality, fantasy, and worse mix together and successfully turn this once peaceful town into a horrible land governed by the dead and by forces that humans are not able to understand.

    Not a Haunted Place

    Silent Hill is also considered by some to be nothing but a point in which stories of mentally ill beings take place. All in their heads, the town only provides a setting for the dreaded stories their minds come up with to unfold in.

    A common theme in the comics, books and games of Silent Hill is the hinted or sometimes outright told possibility that none of it is real. But never is it confirmed. An important aspect of the town is this very doubt. You never know if you’re witnessing a ghost story or a reality created by a madman in himself.

    Recurrent Themes

    Every story about the town is different. However, most of them exhibit certain elements that together create the ambience of the stories and that make it very distinctive as a Silent Hill story and not just any other horror tale.

    Among these themes are:

    Biblical References

    Silent Hill often makes references to passages and characters named in the bible. Such is the case of demons or verses that can be interpreted in certain ways to fit the story or to aid the characters on their journey.

    Dead Relatives

    One of the many “powers” the town has is the ability to present apparitions of what is inside a character’s mind. One of the most common apparitions is that of loved ones that are no longer living, as a form of psychological torture.

    Witchcraft

    Spells and incantations are often part of Silent Hill’s stories. Some characters are knowledgeable in the arts of witchcraft and there are many manifestations of it both in the games and comics. One of the most common forms of magic use by the characters is the use of symbols or seals. Sometimes these work as ways of blocking evil out or protecting someone. Sometimes their purpose is to hurt people in some way or control them.

    Numbers and Riddles

    A person inside Silent Hill will most likely be presented with certain riddles that may give a sense of hope to the character, be it false or true hope. Many times, these riddles present themselves as mathematical or numerical problems that a character must either solve or memorize.

    Children

    There are two main roles that children take in the Silent Hill world. One of them is to represent innocence and a worry free life. The other one is as sinister beings that haunt or somehow try to harm the main characters.

    Children are rarely just normal people in Silent Hill. They may be undead, or ghosts. Some are magical in nature.

    Along with children per se, there is also the subject of infancy since some grown up characters have been shown to have some particular trauma or very specific memory from childhood that plays a part in the stories of Silent Hill.

    Guilt

    Most of the main characters in the stories of Silent Hill are somehow troubled souls and some of them are suffering from past mistakes. Regret is usually one of the subtexts of the story. Some characters are too burdened with guilt to live a normal life and Silent Hill plays on these regrets by manifesting guilty images straight from the character’s subconscious mind.

    Since Silent Hill can be seen as a sort of psychological purgatory, characters are often atoning for their misdeeds.

    Stories in Silent Hill

    Among the Damned

    This comic tells the story of Jason a tormented soldier that wants to kill himself. He dreams about Silent Hill and his old unit. They’re all there fighting the demons of Silent Hill.

    He arrives at the town to have some food before he goes up the mountain and kills himself.

    We hear about Dahlia, a singer that is often in Jason’s dreams. Somewhere a radio is playing and we hear some speculation about Dahlia killing herself.

    Apparently Jason had some sort of accident and he wakes inside his upside down car. He seems to remember seeing a girl in front of the car before the accident happened. He goes back to town to get help, but the town seems empty. He finds a payphone and intends to use it, but it isn’t working properly. Then he is attacked by the monsters of his dreams. He runs and finds himself a pistol shop where he gets a shot gun and uses it against the creatures.

    He finds Dahlia in an amusement park and helps her escape from the monsters. She is wounded in the process. They are helped by Aaron, Jason’s dead friend from the military.

    Dahlia and Jason retreat into a store where people are hiding. It appears that the demons are kept out of this place because of some sacred signs painted in blood. Jason takes Dahlia to the infirmary where she begins having strange visions of herself surrounded by monsters, she’s some sort of a queen or goddess. She wakes up and has sex with Jason.

    When daylight comes the beasts retreat so Jason and Dahlia leave the sanctuary to try to escape from the town. Soon they encounter the dead soldiers from Jason’s unit Aaron is calling out to Jason, telling him that it is time. Jason shoots him and runs with Dahlia. They go into a church. There they are attacked by more monsters and Dahlia turns into a monster herself, yet she saves Jason, throwing him out of the church and she gives him her heart (literally). Outside Jason meets his soldier friends again. Aaron tells him that the reason that he’s alive is that Aaron made some sort of deal to exchange his life for the life of his friend so that Jason could go on.

    Jason and Dahlia both leave Silent Hill and it is hinted that they might start a new life.

    Dying Inside

    Famed psychiatrist named Troy Abernathy is called on his talent wasting ways by a coworker of his. Dr. Abernathy used to be a great therapist; he used to connect with his patients. However, after his wife’s suicide, he’s not the same. The guilt and grief changed him.

    He takes a new patient. A young film student named Lynn who had recently gone to Silent Hill to take stock footage and sell it to major companies. He tried every method he new, including heavy medication but nothing worked.

    As a last measure, he decides to take Lynn back to Silent Hill; to make her confront her fears and finally be able to come to terms with whatever she had suffered that had traumatized her so.

    To Troy’s surprise, Silent Hill receives him with imagery of his dead wife, Juliana, and hellish beasts. Lynn snaps out of her sedative induced state and both of them try to run. They find a little girl named Christabella who seems to be controlling the beasts. She tells Lynn that she let her go in the first place and that she was supposed to bring people with the footage she had shot.

    They are saved by a man named Brett, who is revealed to be Juliana’s ex-husband. Lynn and Troy run from Brett, as he was also supposed to be dead and exhibits a fracture in the back of the skull.

    It is explained that Troy had killed Brett because he had abused Juliana when they were married. Juliana, upon learning that, killed herself.

    They are again confronted by Christabella. Troy offers himself in exchange for his patient’s safe passage. Christabella accepts the deal.

    The footage Lynn had initially shot is stolen by a group of young rebels. Clown, as he called himself, tells his friends about how the tape had changed from the first time he had seen it. And he, along with Lauryn (his girlfriend), Payne (his brother) and his large group of friends embark on a journey to Silent Hill at the request of Lauryn.

    When they arrive, they are attacked by the beasts. And Lauryn takes out a few books on magic and demons that are supposed to help them in their journey. Little by little they are confronted with what the town has to offer and what was inside Dr. Abernathy’s mind. Eventually, Lauryn casts a spell to rid herself of Christabella, who is explained to be Lauryn’s dead sister. As a young girl she had been brutally murdered in Silent Hill and Lauryn blamed herself for it. The spell fails and she is forced to run.

    She finds the deceased Dr. Abernathy and comes to realize that the monsters that are in control of Troy are different from the ones her sister controls.

    The dead friends that Christabella calls back to her aid had been marked by Lauryn prior to their trip. And thus become Lauryn’s beasts instead.

    After realizing that she must destroy her sister, she finds Dr. Abernathy again, who tells her that behind a certain door there is a patient that must be awakened for Christabella’s existence to cease.

    The door is locked, however, by a mathematical problem. The armies of Christabella’s beasts fight against those Abernathy and Lauryn control.

    Finally, she opens the door and the story Troy had told her is revealed false.

    Lauryn then realizes that the town is actually under her control. That it’s all in her mind due to her guilt of Christabella’s death. She casts every monster off with a thought and leaves a now powerless Christabella under the care of Dr. Troy.

    She tells Clown and Payne, the only surviving friends, to leave. Lauryn had been born in silent hill, her sister had died there. That’s what caused it all. Clown and Payne leave and Lauryn stays in Silent Hill, the only town in the world that made sense to her. She stays there to make sure that what happened to her sister wouldn’t happen again to anyone.

    Dead/Alive

    Christabella finds herself longing to hold the power she once held. The creatures in Silent Hill, though still existing are under the rule of Lauryn. They are prohibited to harm any tourists that might come into town.

    The little eight-year-old, though, feels that things should go back to the way they used to be: Herself holding the power. She wakes up one day, finds that the mist that used to cover the whole town is back, and that the beasts roam free again. She finds Lauryn’s room locked and chained and knows that the book inside will grant her the power again.

    She orders a beast to aid her, but is bitten instead and finds she’s no longer her ghouly self, but flesh and blood once again. Chistabella runs, but soon comes to a dead end and is confronted by many beasts with whom she offers to deal.

    Meanwhile, famous actor Kenneth Carter, who enjoys collecting paintings of a place called Silent Hill, receives a phone call. He is told of the disappearance of his lost love, Connie.

    That same night, he sees his very bathroom bleed. The walls turn to flesh and monstrous beings form from it. His whole house is like this; except for the places his paintings used to occupy… they’re blank empty spaces now.

    In comes a woman who identifies herself as Lenora. She says she will allow him to search for Connie. Kenneth enters one of the paintings following Bear, his dog, and finds himself inside Silent Hill.

    He runs into a lost girl who’s looking for help. Her name: Christabella.

    The two of then explore the town, where the beasts seem to notice their presence, but do not attack. They reach an old office where they find files and pictures regarding Kenneth’s life before adoption. Information he had been paying large sums of money for to no avail.

    They reach a movie theatre, inside; a projection of Connie appears on the screen. She’s been turned into a monster by Lenora and sends Dr. Abernathy after them, also informing Kenneth that he has killed his current girlfriend, Jessica. Christabella finds herself with power once again and destroys the doctor.

    Thy run out and find a heavily armed man named Ike Isaacs, he’s the painter of the pictures Kenneth collects, and tells them a “hot goth chick” sent him to help them.

    They team up and run through own, destroying the beasts as they come. They reach a festival filled with monsters and Ike finds a Keris, an ancient mystical Indonesian dagger that absorbs souls. It is, however, rendered ineffective by the monsters.

    Lenora, the witch, arrives and presents Kenneth with a choice. He must murder Christabella, Bear or Connie or the three of them will die.

    Christabella attacks Lenora with the Keris, however this doesn’t work. Bear runs away and Kenneth, using the axe with which he is supposed to kill one of his companions, breaks Connie’s chains instead. She also runs and the fated hour is postponed.

    It is later reveled that Lenora is actually Lauryn working undercover to fight the Whatelys, a group that is somehow responsible for the evils of Silent Hill.

    Kenneth gets hold of the book and Christabella is confronted by a monster the Whatelys have sent disguised in the flesh of Connie.

    Kenneth’s real father, a dead man, tells him that he is the son of a monster (his mother) and himself and that his purpose in the world was to ring the terror and nightmares of Silent Hill to everyone.

    Lauryn fights the Whatelys and is in time saved by Kenneth, using he book as a weapon.

    The beast inside Connie now attacks them and Lauryn fights head on. While Kenneth discovers that killing Connie is the only way out. He does, and wakes up from a dream. He’s not Kenneth Carter, the actor. He’s a dirt farmer and is living happily with Connie somewhere else.

    Paint it Black

    This comic tells the story of Ike Isaacs, a slacker and artist that is always leeching off his friends while he dedicates to his paintings. He is attracted to Silent Hill and he goes there to live. He finds himself a place to live and the town itself seems to provide him with everything he needs. All of the monsters that attack every other person that come into the town leave him be and allow him to work on his paintings. They seem to be interested in being portrayed as art pieces by the hands of the artist.

    Ike has been in Silent Hill for several months when he finds out that someone has been selling his paintings, and that he’s made a name for himself in the outside world. He tries to leave town to cash in on his newly acquired fame, but it is forced by the town to remain there, as every time he gets close to the exit the fog drags him back to the center of the town. Somehow he accepts this and goes back to his work and his lonely life.

    One day a group of cheerleaders, leaded by decisive Cheryl, arrives at Silent Hill. Ike is unwilling to help them and he wants them to leave as soon as possible and let him be. He feels the cheerleaders have invaded his personal space and he warns them that the beasts in his paintings are in fact real, and that they will kill them. The girls take the warning very lightly and after locking Ike away in a room, they continue to make themselves at home. Then a couple of the girls (Missy and Chrissy) are kidnapped by the monsters so Cheryl asks for Ike’s help to get them back. He tells them what he knows about the monster’s hiding places and he points out to a bowling alley as the probable spot for them to keep the girls.

    Ike and the cheerleaders go to the rescue. The girls have found guns and ammunition and they are heavily armed. They face the demons fearlessly and they make it to the interior of the bowling alley. There Ike and Cheryl go to help Missy while the rest of the girls is in charge of getting Chrissy.

    Ike and Cheryl find themselves cornered by the monsters without a way out until Ike paints a black hole on the wall and they exit through it. He explains later that he sort of felt like the hole was already there and he just painted on it. They find themselves in a place filled with Ike’s paintings and after fighting some monsters they set the paintings on fire. Then they walk through a hallway and they spot some of the monsters. They are working in some sort of assembly factory. They continue on until the find both Missy and Chrissy tied up and about to be eaten by the monsters. One of them is talking about how fear flavors the meat.

    They engage the demons in combat and Cheryl is hit and looses her weapon. Ike tells the demons to stop, he tells them that if they want him to keep painting, that they should let them go. They get mad at him and get ready to attack, but Ike’s bought enough time for Cheryl and the other two cheerleaders to get a hold of a flamethrower. They use it and Ike throws a can of red paint against the wall. The girls escape through the hole and he stays behind to hold off the monsters. Cheryl told Ike that she would come back for him, but in the end she decides to leave him behind. As the cheerleaders are driving off away from Silent Hill, Missy and Chrissy are consoling Cheryl. They tell her that soon there is going to be so much going on that she won’t even remember his name. We see that the two of them have been turned into monsters themselves.

    The Grinning Man

    The story begins with a mysterious grinning guy who after blowing up someone in a mine hitches a ride towards Silent Hill.

    Robert Tower has been a state trooper for years. He’s on his final day before retiring and getting a new life in the Keys. He’s familiar with the town of Silent Hill and knows of the stories about ghosts and demons that supposedly inhabit the place. However in all his years of patrolling he’s never seen anything paranormal so he believes that all of the strange disappearances and deaths are due to drug lords taking over the town’s abandoned buildings.

    He gets a call to a murder scene on the road where he meets FBI agent Mayberry who tells him that this crime scene was obviously staged to divert the police attention from the people that are missing. Tower suggests that the one responsible might be in Silent Hill since the treads on the road seem to be headed that way.

    He goes there with Mayberry who tells him about his believes that the town is haunted and inhabited by some creatures that are of paranormal nature. He’s quite exited about exploring the place.

    As this goes on we see that the Grinning Man is killing the monsters in Silent Hill, he rescues some people from the creatures and then he tells them that he’s got plans for them.

    Meanwhile, inside the Lakeview Hotel, some policemen are preparing to play a joke on Mayberry. They’ve disguised as monsters and they expect to scare the FBI agent. Instead, they are murdered by the Grinning Man who was chasing some of the creatures.

    Mayberry and Tower see a light coming out of the Lakeview Hotel. They go to check it out and they are met by the monsters that recognize Tower and they let them go. Then they find a couple of girls in a room unable to leave because of some seals that the Grinning Man has drawn on them and on the walls. Mayberry says that those look like druidic drawings or maybe kabalistic. Tower shoots at the seals on the walls, destroying them and thus setting the girls free. Then outside the hotel they are met by “Sawbones” and “Stiff” who ask Tower to kill them as they have been under the control of the Grinning Man for quite some time. Tower abides and goes looking for the man responsible for all of it.

    When they find the Grinning Man they notice that he is not being attacked by the creatures. They cannot harm him but he can harm them. They escape from the grinning man and Tower tells Mayberry to stay behind as he’s going back to save the rest of the people. He realizes that the reason the monsters had let him live and had not manifested themselves to him in the past was because he was helping them by spreading the word that the town was nothing out of this world.

    Tower finds more people that seem undead. They tell him that is too late for him to help them but that they will help him to get back at the Grinning Man. He shoots the seals on the walls to finally set the people free and one dead kid tells him that the monsters do not want to harm him because they want him to help them defeat the Grinning Man, but also that the magic that this guy exerts on them is making them mad and hungry and they might eventually attack him.

    Tower finds the Grinning Man and he has just killed Mayberry. They go into one final showdown in which tower kills the Grinning Man who cannot believe that his magic has been beaten.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106760/","id":106760,"name":"Among the Damned","issue_number":"1"},"id":41458,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/455/94486-181695-silent-hill.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/455/94486-181695-silent-hill.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/455/94486-181695-silent-hill.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/455/94486-181695-silent-hill.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/455/94486-181695-silent-hill.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/455/94486-181695-silent-hill.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/455/94486-181695-silent-hill.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/455/94486-181695-silent-hill.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/455/94486-181695-silent-hill.jpg","image_tags":"All Images,Scenes from Silent Hill"},"name":"Silent Hill","site_detail_url":"https://comicvine.gamespot.com/silent-hill/4020-41458/","start_year":"2004"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41464/","count_of_issue_appearances":102,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-04-17 01:30:54","deck":"In the DC Universe, Nanda Parbat is a hidden city located high in either the Himalayas or the Hindu Kush. The city is watched over by the goddess Rama Kushna.","description":"

    Nanda Parbat is the home of Rama Kushna, the one who gave Deadman his power. This place is also believed to be the home of Green Lantern Kai-Ro. It figured heavily into the story arc 52 as it focused on numerous characters visiting there including Ralph Dibny, Renee Montoya and Vic Sage.

    Within the walls of Nanda Parbat, time passes differently. While its inhabitants may experience decades, they will continue to retain their youth, and when venturing outside again, they will find that less time has past. As Renee Montoya put it: \"Time stands still in Nanda Parbat. Days, weeks, months... I can't tell. Life is defined by routines, not time.\" Though most of the citizens who live in Nanda Parbat are monks in service of Rama Kushna, its walls are also made home to those who come wishing to find peace and enlightenment.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-10689/","id":10689,"name":"Can This Be Death?","issue_number":"50"},"id":41464,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/244908-3967-nanda-parbat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/244908-3967-nanda-parbat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/244908-3967-nanda-parbat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/244908-3967-nanda-parbat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/244908-3967-nanda-parbat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/244908-3967-nanda-parbat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/244908-3967-nanda-parbat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/244908-3967-nanda-parbat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/244908-3967-nanda-parbat.jpg","image_tags":"All Images,Nanda Parbat,Shangri-La"},"name":"Nanda Parbat","site_detail_url":"https://comicvine.gamespot.com/nanda-parbat/4020-41464/","start_year":"1970"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41469/","count_of_issue_appearances":563,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-09 14:51:26","deck":"The secret headquarters of the Justice League of America. It is accessible via teleportation tubes located in the JLA's public headquarters, the Hall of Justice.","description":"

    Overview

    The Watchtower has been shown as being on the moon, the base is supplied with the most highly advanced technology of many planets including Earth, Thanagar, Mars, Krypton, New Genesis and Apokolips as members hail from these various planets. It is made of promethium, a nigh-indestructible metal. Since it is not on Earth, it can be reached through the use of its teleportation tubes.

    Rooms in it include: The Hall of Justice, Promenade, Monitor Womb, Trophy Room, Armory/Hangar, Hydroponics, Aquarium, Power Core, Recreation Area, Holographic Training Room, Laboratories, Med-Lab, Technology/Engineering Workshops, Containment Cells and each members individual private quarters.

    First Watchtower

    \"No

    The first Watchtower debuted in JLA #4 during Grant Morrison's acclaimed run on the title. Its layout was shown when the super-villain Prometheus used his computerized helmet to download all of the information from JLA servers.

    Main areas are:

    • Solar Tower
    • Observation Deck
    • Laboratory Building
    • Armory
    • Steel’s Workshop
    • Hall of Justice
    • Monitor Womb
    • Hydroponic Forests
    • Aquaman's deep water tanks(connected via tunnels to surface pools)
    • Teleporters
    • Reception
    • Secure facility
    • Living quarters
    • Bulk teleport hangar

    Sub-divisions include:

    • Research Lab
    • Medical Lab
    • Martian Jumpshuttle hangar
    • Lounge
    • Kitchen
    • Dining Area

    Other areas include:

    • Engineering control
    • Trophy Room
    • Villain Gallery
    • Games/Recreation/Simulators
    • Gymnasium/Saunas
    • Pool(connected to deep water tank)
    • Park
    • Private teleporters
    • Air control
    • Tunnels to shuttle bay
    • Stairs to lower levels

    Second Watchtower

    \"No

    This Watchtower was rebuilt and redesigned after the Injustice Gang razed the original structure during the onset of World War III.

    Areas

    Areas in the Watchtower are as follows:

    • Solar Tower- Photovoltaic cells convert sunlight to power Watchtower's operating systems.
    • Observation Deck-Accessible in elevator shaft in Solar Tower, Deck houses security scanners that monitor lunar landscape for interlopers.
    • Power Annex-Distributes power to base's circulatory nexus. Excess energy stored in redundant batteries for emergency life-support.
    • Exterior Panels-Virtually impenetrable promethium-reinforced titanium/verdanium loses little heat or energy to cold lunar near-vaccuum.
    • View-port- Liquid-crystal portals several inches thick provide unaltered view of moonscape.
    • Stellar Telescope-Optical arrays chart stellar anomalies and astronomical phenomena.
    • Guest Quarters-Living space for associated and reserve members, as well as authorized visitors.
    • Long-Range Scanners-Microwave and multispectral arrays monitor cosmic radiation levels and detect unannounced visitors to Earth's orbit.
    • Jump Shuttle Hangar-Martian-designed spacecraft repaired, maintained, and launched from self-sealing annex.
    • Steel's Workshop-High-tech foundry and lab includes secondary surveillance controls.
    • Armory-Secure vault for \"last resort\" weapons and other technological countermeasures.
    • Trophy Room-Contains mementos-some authentic, some facsimile-of JLA adventures.
    • Additional Storage-Spare parts, supplies, and items from previous headquarters kept here.
    • Hall of Justice-The JLA's meeting chamber.
    • Monitor Womb-Interactive computer systems monitor global mass media and feed \"real-time\" holographic displays around floating suspensor chair. League member on monitor duty assesses potential \"trouble-alerts.\"
    • Teleport Tube-Sender/receiver unit utilizes \"ambient matter\" to teleport organic beings.
    • Living Quarters-Personalized suites for all active members.
    • Galley-Kitchen and dining area provides Earthly and extraterrestrial cuisine and is stocked with dietary requirements of each League member.
    • Bulk Teleporter-Larger teleporter unit transmits only inorganic matter, ferrying supplies to and from the Watchtower.
    • Central Hub-An external casing surrounds the shielded hub-core with its meeting and living areas protected by individual self-sealing air locks.
    • Spoke Terminus-Each of the Watchtower's three \"spoke\" wings can be hermetically isolated from the hub, or jettisoned using minimal ion-propulsion units to break lunar orbit during emergency egresses.
    • Gymnasium-Includes training areas and virtual-reality battle environments.
    • Pool-Low-saline pool provides exercise and relaxation for League members.
    • Arboretum-Endangered species of flora and fauna find safe haven in segregated micro-ecosystems.
    • Flight Bride-Contains navigational controls and flight-support systems.
    • JLA-1 Larger multi-seat sub-light shuttle takes off and lands like traditional aircraft.
    • Entry Port-Provides access for incoming ships to disembark in primary hangar.
    • Seismic Sensors-Early warning system to detect \"moonquakes\" in lunar substrata.
    • Primary Hangar-Launch platform and berthing for JLA-1.
    • CO2 Scrubbers-Sweep internal air systems for carbon dioxide, removing pathogens before feeding to hydroponic forest.
    • Hydrogen Generator-PODS backup power-systems split hydrogen atoms from mixed water for fusion in reactors. Oxygen by-product released into ventilation ducts.
    • Deep-bore Ice Miner-Extracts ice buried beneath lunar soil,cleansing and purifying resulting H20 for use throughout base.
    • Deep Water Tank-Stores fresh water produced by deep-bore ice miner in large aquifer. Adjacent artificial \"hot spring\" doubles as sauna.
    • Hydroponic Forest-Photosynthetic-reliant plants convert CO2 into oxygen, providing base with recyclable air supply.

    Some items seen in the Trophy Room:

    • Z'onn Z'orr Globe - Model reveals the White Martians' planned realignment of Earth's continents.
    • I.F. - The \"implicate field\" is a 32nd-century quantum technology weapon confiscated from the Lord of Time.
    • The Key's Key-Ring - A sample of the villains skeleton keys and psychotropic chemical injectors
    • The Royal Flush Gang - Over-sized playing cards replicate a two-dimensional trap once holding the Gangs Ten, Hi-Jack, Queen, King, and Ace.
    • Solaris - Illuminating facsimile of the 853rd-century tyrant sun, a super-computer defeated by the JLA and Justice Legion A.
    • Piranha Penguins - Justice League Antarctica encountered Adelie penguins bioengineered to have the teeth and voraciousness of Amazonian piranha.
    • Traumiel's Ashes - Remains of the angel loyal to Asmodel who was disintegrated by Zauriel's sonic scream are mounted on canvas with runes etched by Zauriel to describe the event.
    • Engine of Chance - Deceased quantum physicist Julian September's probability-altering machine, capable of re-ordering reality by a factor of \"lucky\" seven.
    • Kirby Dots - Bits of \"dark matter\" sealed in a vacuum chamber pending study.
    • Artificial Kryptonite - Radiation-depleted isotope of the rare element.
    • The Bug - Miniature model of Blue Beetle's scarab-shaped hover-ship.
    • Worlogog - Kyle Rayner's sculpted interpretation of the \"Philosopher's Stone\" - the reality-altering Worlogog that Lex Luthor wielded against the JLA.
    • Parademon Armor - Headpiece worn by Darkseid's elite flying stormtroopers
    • Prometheus' Helmet - The murderous mastermind's computerized helmet was scuttled by Batman after downloading its wealth of information onto JLA archive servers.
    • Amazo's Head - Deactivated central processing unit from one of the android's early prototype bodies.
    • The Ray's Crash Helmet - Spare helmet worn by Ray Terrill (The Ray), briefly a member of the Justice League Task Force before joining Young Justice.
    • Little Leaguers - Malicious micro-robot duplicates of the Justice League built by the Toyman and Abra Kadabra.
    • Brain Storm's Thinking Cap - This channels stellar energy to boost intelligence, animates objects, enables its wearer to hurl \"star-bolts,\" and permits teleportation.
    • Starro Probe - Stasis tank keeps the Star Conqueror's face-hugging mental probe inert. Occasional feeding is required.
    • Power Battery - Replica of original Green Lantern Alan Scott's emerald power battery, carved from the meteoric Starheart, repository of the universe's random magicks.
    • Triumph - The Justice League's \"lost\" founding member William MacIntyre (Triumph) is forever frozen, transformed into a statue of ice for his treachery by the Spectre. Cooling units keep sublimation to a minimum, should the Spirit of Wrath choose to offer McIntryre a reprieve.
    • Trick Arrows - A sample of Green Arrow Oliver Queen's shafts.
    • Potrait Gallery - Holographic bank depicts constantly rotating assemblage of every JLA hero and heroine.
    • Gamma Gong - Dhorian dictator Kanjar Ro's paralyzing weapon. When struck, the Gong incapacitates anyone in its vicinity.
    • Superman-Robot Costume - Uniform worn by one of the robotic Men of Steel created by Superman to police the Earth
    • Batarangs - Working samples of Batman's signature weapon.
    • Blue Beetle's Weaponry - Compressed air-firing B.B. Gun; replica of first Beetle Dan Garrett's mystical scarab; hand-held remote for the high-flying Bug.
    • Wandjina's Labyris - Battleaxe belonging to \" The Thunderer,\" a parallel dimension hero who perished stopping a Russian nuclear reactor meltdown after attempting to rid the communist nation of its deadly atomic arsenal.
    • Aztek's Helm - The late Justice Leaguer's sunmotif helmet was the source of his 4-dimensional powers. It remains in JLA possession pending a custody battle initiated by Aztek's former benefactors, the Q Foundation.
    • Martian Jump-Ship - Unaltered model of the Martian shuttle, seen in its primary configuration.
    • Key-Men - The Key's helper automatons with their clockwork motivators safely removed.
    • S.T.A.R. Labs Shuttle - Scale model of a prototype spacecraft rescued by the JLA.

    There are hundreds more items in the Trophy Room. The more dangerous items are stored in vaults accessible only to core JLA members.

    Note: The Watchtower was destroyed by Superboy-Prime and as such has been replaced by the Satellite Watchtower (in space) and the Hall (on Earth).

    New 52

    \"No

    The New 52 Satellite Watchtower orbits 22,300 miles above Earth. How it was built has been left unexplained. Areas shown thus far are a main meeting chamber, spacecraft bay, teleporter, and Monitor Center. The Watchtower is defended by several small warships.

    Other Media

    Television

    Justice League (2001 - 2004) DC Animated Universe

    \"The
    The First Watchtower

    Following the attack of Earth by the White Martians, Batman would donate a secret Wayne Enterprises satellite station that is orbiting Earth as the base of operations for the newly formed Justice League.

    The various members would utilize the Javelin-7 spaceplanes to shuttle back and forth. The Watchtower was subsequently destroyed in the season finale, \"Starcrossed\" by Batman, who used it to destroy a Thanagarian hyperspace generator that would have destroyed Earth.

    Justice League Unlimited (2004 - 2006) DC Animated Universe

    \"The
    The Second Watchtower

    In the sequel series; Justice League Unlimited which would continue where the first series ended; the Justice League would build a newer and much larger space station, accompanying the radical expansion of the League as well.

    The new Watchtower is run by a vast support crew, possesses dozens of upgraded Javelin-7 space-planes, hosts a new teleportation transport system, and incorporates a powerful laser cannon. In addition, the Watchtower is defended by a series of smaller weapon sub-satellites.

    Justice League: Crisis On Two Earths (2010)

    The Watchtower appeared in the DC animated movie, Justice League Crisis On Two Earths, and it appeared multiple times throughout the movie. Such as when Superwoman went looking for something in the Watchtower.

    Within the Watchtower, there is a meeting room, a teleporter and a lot of space to store up equipment.

    Smallville (2001 - 2011) TV Series

    \"Smallville
    Smallville Watchtower

    Computer whiz and bona fide genius Chloe Sullivan, utilized the pseudonym \"Watchtower\" when she acted as the eyes and ears of the fledgling Justice League. The Metropolis penthouse apartment, given to her by Jimmy Olsen, became the base of operations for Watchtower.

    After Chloe Sullivan resigned, the building continued to be known by this name, as it is was the home and headquarters for the Justice League, and the position was taken up by Tess Mercer.

    Young Justice (2011-Present) TV Series

    \"No

    The Justice League watchtower in the TV show Young Justice appears to be built into an orbiting asteroid of some kind, and serves as the Justice League's actual base of operations, as opposed to their Hall of Justice on Earth's surface, which is just a cover story. It contains a large meeting hall and ready room, where the teleporters are located; this is where the League receives most information, has it's main computer system, and has most briefings that we've seen in the show thus far. It is also the site of Vandal Savage's mind control of the entire Justice League, and where he controlled them from.

    It also contains at least one spacecraft bay.

    Justice League Doom (2012)

    The Watchtower also appeared in the DC animated movie, Justice League Doom. It was also in space in this movie as well. Within the Watchtower, there was a meeting room and a teleporter.

    \"No

    Videogames

    MK Vs DC Universe

    \"No

    The Watchtower is referred to as the \"U.N. Satellite Space Station.\" In the game, it is an arena where Batman and other members of the League gather to fight against tyranny and monitor global threats. Although it is occupied by the League, the satellite was funded by the U.N., as a united global effort to protect humanity.

    DC Universe Online

    \"No

    This is perhaps the most detailed non-canon version of the Watchtower. True to comic origins, it is an orbiting satellite 22,300 miles above Earth that was financed by Batman and built by John Stewart. The following areas that inhabit the Watchtower are:

    • Monitor Womb: A holographic projector of the Earth is visible 24/7. This is where unstable regions and threats are analyzed and prioritized, allowing the League to coordinate appropriate responses in promoting democracy and stability throughout the planet.
    • Hall of Justice: Not to be confused with the \"Hall of Heroes,\" the Hall of Justice serves as the main meeting chamber for core members of the League.
    • Hall of Heroes: This room contains three large statues of the League's \"Holy Trinity,\"-Superman, Batman, and Wonder Woman.
    • War Room: This is a large facility dedicated to the training of all League members. Although most simulations are holographic, some require members to fight solid constructs that can actually harm them.
    • Hangar: Where the Watchtower's spacecraft fleet reside in case the League requires vehicles that are capable of interplanetary or interstellar travel.
    • Containment Facility: A highly patrolled area that serves as holding cells for the Justice League's most dangerous villains. Each cell is specialized to render the inhabiting villain's abilities inert and keep them in stasis.
    • Aqua-cultural Area: Room where many species(both human and alien in origin) of plants reside. They provide the Watchtower with a recyclable air supply.
    • Reactor Core: A nuclear reactor which powers the entire Satellite system.
    • Meta Wing: Training area for all Superhuman heroes that are mentored by Superman.
    • Magic Wing: Training area for magical heroes that are mentored by Wonder Woman.
    • Tech Wing: Training area for all heroes that uses technology that are mentored by Batman.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-184773/","id":184773,"name":"Justice League of America","issue_number":"46"},"id":41469,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/39027/2094684-jla_watchtower.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/39027/2094684-jla_watchtower.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/39027/2094684-jla_watchtower.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/39027/2094684-jla_watchtower.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/39027/2094684-jla_watchtower.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/39027/2094684-jla_watchtower.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/39027/2094684-jla_watchtower.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/39027/2094684-jla_watchtower.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/39027/2094684-jla_watchtower.jpg","image_tags":"All Images,Watchtower"},"name":"Justice League Watchtower","site_detail_url":"https://comicvine.gamespot.com/justice-league-watchtower/4020-41469/","start_year":"1976"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41470/","count_of_issue_appearances":517,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-06-15 12:21:33","deck":"The hellish planet of Apokolips is ruled by the god Darkseid, with most of the population enslaved to his will. From this base, Darkseid builds cosmic weapons and armies to wage war with New Genesis.","description":"

    Creation

    Apokolips was created by Jack Kirby and was part of Kirby's Fourth World.

    Origin

    Apokolips is a large planet that is ruled by Darkseid. Occupied in another dimension of the reality, Apokolips is the counterpart to the idyllic New Genesis. This dimension can only be accessed via a Boom Tube enabling device (such as a Mother Box or a Lantern Power Ring zeroed in on the frequency). The face of the planet is comprised of a single industrial complex, dotted with roaring fire pits (constantly erupting molten fire and heat from the center). Every aspect of the planet is devoted to a war that can be waged on a universal level. Training, constructing, maintaining instruments of war, whether it be against the heroes of Earth or the inevitable war with New Genesis that will end this age of Gods. As such, Apokoliptian technology is considered the most dangerous in all the universe, and has been the cause of innumerable sufferings and miseries.

    The general population is comprised of a broken, submissive peoples known as Lowlies. Many of these lowlies were captured from conquered or destroyed planets. The fighting force of Apokolips are the Parademons. These brutes are equipped with armor and weapons forged in the pits of Apokolips. These shock troops possess strength, invulnerability and an immunity to pain burned into them from the fires of Apokolips. The most feared fighting force of all the New Gods, are The Furies. The Female Furies are trained to be the personal guard of Darkseid. Lastly there are Darkseid's Elite, akin to a King's Court. These are Kanto (master assassin), Granny Goodness (Headmistress and leader of the Furies), Grayven & Kalibak (the sons of Darkseid), Devilance (expert hunter), Steppenwolf (Master General) and Desaad (Torture expert and counselor who manages the day to day operations of Apokolips)

    Kingdom Come

    In Kingdom Come, Darkseid's son, Orion, is shown to have inherited Darseid's mantle and to have become the ruler of Apokolips. What is shown of Apokolips in this story is quite similar to how it is typically depictied but It remains unclear if overall living conditions had improved for it's inhabitants under Orion's rule.

    Technology

    Apokoliptan technology is the most advanced in the entire DC universe. All gadgets are at the disposal of Apokolips's supreme monarch, Darkseid. Such gadgets include but are not limited to: energy weapons, boom tubes, mother boxes, force field technology, starships capable of instellar travel, and mass mind control devices. Apokoliptan technology is so advanced that Darkseid uses it to wreck havoc upon entire alien civilizations.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-131289/","id":131289,"name":"Evil Factory!","issue_number":"135"},"id":41470,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/6469380-qwadf.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/6469380-qwadf.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/6469380-qwadf.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/6469380-qwadf.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/6469380-qwadf.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/6469380-qwadf.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/6469380-qwadf.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/6469380-qwadf.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/6469380-qwadf.png","image_tags":"All Images"},"name":"Apokolips","site_detail_url":"https://comicvine.gamespot.com/apokolips/4020-41470/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41471/","count_of_issue_appearances":202,"date_added":"2008-06-06 11:27:49","date_last_updated":"2022-08-04 08:59:25","deck":"The paradise-like planet, home to the New Gods, good Gods of the Fourth world. A golden island of gleaming spires that orbits a sunlit unspoiled wordl of green forests, white mountains, and bright waters...","description":"

    New Genesis was created after the cataclysm that claimed the Old Gods. It is a paradise world, considered the true place of peace. It is inhabited by the New Gods of the Fourth World. It is in direct contrast to the hellish Apokolips, abode of the evil Gods, and the two opposite God-worlds have been at war since their creation.

    New Genesis is an unspoiled paradise with virtually no artificial structures on it's surface, save for the city of the Gods, a giant flying city which in no way interferes with the wild life below it. The powerful and benevolent Highfather is the lord of New Genesis.

    Aside from the Gods, New Genesis is also home to the Bugs, a race which evolved from the micro life, a weapon used by Apokoliptians in the early days of their titanic conflict. The Bugs are viewed as lesser being by the Gods of Supertown, and there is some animosity between the two species. Although some bugs have come to serve either Highfather or Darkseid of Apokolips, the Bugs have generally been left out of the conflict of Gods.

    Beneath the surface of New Genesis is the Necropolis, a labyrinth where the Dreggs (surviving yet mindless Old Gods) reside and beneath that is the labyrinth where the Old God Sirius was imprisoned. In these labyrinths, many amazing artifacts of power are found, as they were created by the Old Gods before Urgrund. This is also where Lonar found his War Horse, Thunderer.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11260/","id":11260,"name":"Orion Fights for Earth!","issue_number":"1"},"id":41471,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89211-128316-new-genesis.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89211-128316-new-genesis.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89211-128316-new-genesis.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89211-128316-new-genesis.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89211-128316-new-genesis.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89211-128316-new-genesis.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89211-128316-new-genesis.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89211-128316-new-genesis.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89211-128316-new-genesis.jpg","image_tags":"All Images,New Genesis"},"name":"New Genesis","site_detail_url":"https://comicvine.gamespot.com/new-genesis/4020-41471/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41480/","count_of_issue_appearances":94,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-09 15:08:59","deck":"The Clocktower in Gotham City used to be the base of Oracle's operation as well as the home of Barbara Gordon. It was destroyed in the Gang War by Oracle herself.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-123072/","id":123072,"name":"Huntress","issue_number":"9"},"id":41480,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89213-96760-clocktower.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89213-96760-clocktower.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89213-96760-clocktower.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89213-96760-clocktower.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89213-96760-clocktower.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89213-96760-clocktower.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89213-96760-clocktower.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89213-96760-clocktower.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89213-96760-clocktower.jpg","image_tags":"All Images,Clocktower"},"name":"Clocktower","site_detail_url":"https://comicvine.gamespot.com/clocktower/4020-41480/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41510/","count_of_issue_appearances":72,"date_added":"2008-06-06 11:27:49","date_last_updated":"2019-10-09 08:37:16","deck":"The Nexus of All Realities is a Multi-Demensional portal which causes multiple dimensions to transverse.","description":"

    The Nexus of All Realities exists in the Florida Everglades. It was initially opened in the early 1970s by Jennifer and Andrew Kale.

    While the gateway in the Everglades is generally referred to as 'The Nexus of All Realities', other possible Nexus points have been suggested, including the M'Kraan Crystal, and an unspecified point in deep space. Another Nexus is located on an unpopulated red-brown planed called Makray, into the Milky Way.

    All these nexuses are multiversal and supposedly exists in all realities simultaneously.

    The Nexus of All Realities located in the Everglades has been consistently protected for years by the Man-Thing, who is currently its sole guardian. Many different creatures, aliens, and humans have been sucked into different nexuses (the most well-known example being that of Howard the Duck), and placed into the Everglades, with many of them having to deal with Man-Thing. Man-Thing can also use the gateway as a sense of teleportation to travel through different alternate realities.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-13107/","id":13107,"name":"Where Worlds Collide!","issue_number":"13"},"id":41510,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/7100606-man-thing_vol_5_4_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/7100606-man-thing_vol_5_4_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/7100606-man-thing_vol_5_4_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/7100606-man-thing_vol_5_4_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/7100606-man-thing_vol_5_4_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/7100606-man-thing_vol_5_4_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/7100606-man-thing_vol_5_4_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/7100606-man-thing_vol_5_4_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/7100606-man-thing_vol_5_4_textless.jpg","image_tags":"All Images"},"name":"Nexus of All Realities","site_detail_url":"https://comicvine.gamespot.com/nexus-of-all-realities/4020-41510/","start_year":"1973"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41530/","count_of_issue_appearances":125,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-07-28 22:06:05","deck":"Kahndaq is a fictional country in DC Comics, located in the Sinai Peninsula of the Middle East. It is defended by anti-hero Black Adam, with a capital named after his late wife Shiruta.","description":"

    It is ruled by Black Adam, and was one of the countries that spearheaded the Freedom of Power Treaty. Its capital city is named Shiruta. At least one of its official languages is Arabic.

    Culturally, the country is similar to Egypt. As such, the majority of the Kahndaqi population are relatively liberal Sunni Muslims who are willing to view Black Adam as a prophet along the lines of Mohammed. Due to the relatively liberal culture, the social barriers to women in Kahndaq are by no means as stringent as they are in Muslim countries that impose a strict interpretation of Islamic law.

    Over 3,600 years ago, Kahndaq was the birth place of Black Adam. In 1600 B.C. Kahndaq was attacked and burned to the ground by the super-villain Ahk-Ton, in which Black Adam's first wife and children were among those killed. The deaths of his wife and children drove Black Adam to take extreme measures to protect Kahndaq. This in turn forces the wizard Shazam to remove Adam's powers and entomb him for centuries.

    By modern times, Kahndaq fell under the rule of dictator Asim Muhunnad, who was eventually overthrown by Black Adam and a group of former Justice Society of America members, and executed by Atom Smasher. Black Adam soon declared himself ruler of Kahndaq. Kahndaq was heavily damaged shortly thereafter by the Spectre, during the Day of Vengeance.

    Kahndaq became a major setting for the events that surround the Black Marvel Family, consisting Black Adam's bride Isis and his brother-in-law Osiris. After the Infinite Crisis, Black Adam became the \"guardian\" of Kahndaq, though he is treated like a god amongst the nation's citizens. He issued several draconian laws, including public executions every Wednesday (which Black Adam carried out himself). However, these harsh policies are tempered by Isis, who along with Osiris encouraged Black Adam to turn Kahndaq into a paradise. Unfortunately, the Black Marvel Family's plans were short-lived, as Kahndaq is attacked by the Four Horsemen of Apokolips, a quartet of artificially enhanced beings based in the nearby country of Bialya. Isis and Osiris were killed, which prompted a deeply vengeful Black Adam to kill the Horsemen and attacking Bialya, killing nearly every inhabitant.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-151520/","id":151520,"name":"Hunting For History","issue_number":"19"},"id":41530,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/4162812-kahndaq1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/4162812-kahndaq1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/4162812-kahndaq1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/4162812-kahndaq1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/4162812-kahndaq1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/4162812-kahndaq1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/4162812-kahndaq1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/4162812-kahndaq1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/4162812-kahndaq1.jpg","image_tags":"All Images"},"name":"Kahndaq","site_detail_url":"https://comicvine.gamespot.com/kahndaq/4020-41530/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41563/","count_of_issue_appearances":47,"date_added":"2008-06-06 11:27:49","date_last_updated":"2015-10-03 11:57:20","deck":"Capital of Spain and largest city of the country.","description":"

    .

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-449424/","id":449424,"name":"El Coyote Cabalga","issue_number":"1"},"id":41563,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/4834734-800px-bandera_de_madrid.svg.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/4834734-800px-bandera_de_madrid.svg.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/4834734-800px-bandera_de_madrid.svg.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/4834734-800px-bandera_de_madrid.svg.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/4834734-800px-bandera_de_madrid.svg.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/4834734-800px-bandera_de_madrid.svg.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/4834734-800px-bandera_de_madrid.svg.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/4834734-800px-bandera_de_madrid.svg.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/4834734-800px-bandera_de_madrid.svg.png","image_tags":"All Images"},"name":"Madrid","site_detail_url":"https://comicvine.gamespot.com/madrid/4020-41563/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41589/","count_of_issue_appearances":25,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-04-19 08:20:46","deck":"Capital of Romania.","description":"

    .

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-165895/","id":165895,"name":"The Robot Masters of Venus","issue_number":"3"},"id":41589,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5162906-rou_bucharest_flag.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5162906-rou_bucharest_flag.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5162906-rou_bucharest_flag.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5162906-rou_bucharest_flag.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5162906-rou_bucharest_flag.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5162906-rou_bucharest_flag.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5162906-rou_bucharest_flag.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5162906-rou_bucharest_flag.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/5162906-rou_bucharest_flag.png","image_tags":"All Images"},"name":"Bucharest","site_detail_url":"https://comicvine.gamespot.com/bucharest/4020-41589/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41619/","count_of_issue_appearances":117,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-12-26 15:54:12","deck":"Center of the Anti-Matter Universe.","description":"

    A planet situated in the center of the Anti-Matter Universe, often called the Qwardian universe. Home to the Weaponers of Qward, the Thunderers of Qward, and the fear-instilling Sinestro Corps.

    Qward is the center of the Anti-Matter Universe; basically, it is the Oa of the Underverse, labeled by the Guardians of the Universe as Sector -1. Qward is a desolate world and, under the surface of the planet, enslaved weapon-smiths forge yellow power rings and power batteries for the members of the Sinestro Corps.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-4944/","id":4944,"name":"The Secret of the Golden Thunderbolts!; Riddle of the Frozen Ghost Town!","issue_number":"2"},"id":41619,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89195-88340-qward.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89195-88340-qward.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89195-88340-qward.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89195-88340-qward.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89195-88340-qward.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89195-88340-qward.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89195-88340-qward.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89195-88340-qward.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89195-88340-qward.jpg","image_tags":"All Images,Qward"},"name":"Qward","site_detail_url":"https://comicvine.gamespot.com/qward/4020-41619/","start_year":"1960"},{"aliases":"Utopia Island","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41621/","count_of_issue_appearances":8,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-07-19 13:40:57","deck":"Utopia Isle is located on Earth-712. Power Princess of Squadron Supreme was born here.","description":"

    Creation

    Utopia Isle is a fictional location created for the Marvel Universe comic series the Squadron Supreme and first appeared in a description by member Power Princess. It appeared in issue Squadron Supreme #1 (1985). The second Utopia Isle also in an alternate universe designated as Earth-31916 appeared in Supreme Power #10-11 also in Marvel Comics.

    History

    \"Crumbling
    Crumbling Utopia Isle

    In the alternate universe of Earth-712 the small island in the southern sea called Utopia Isle stands untouched by outside civilization for countless eons. The people who originally resided on the island calling themselves the Utopians believed themselves to be the result of the alien Kree experimenting on the genetics of Homo sapiens. Due to these genetic enhancements generations to come would become powerful beings, indeed the equivalent of Earth's universe of the Inhumans. The Utopians would develop a culture based upon a peaceful coexisting culture whose people would not have injustice, poverty, crime, illnesses, or sexual discrimination. However the Utopians would stay on Utopia Isle and seclude themselves from all human involvement and therefore develop a sophisticated and peaceful culture in the Island.

    As time went on and the outside world modernized and developed nuclear weapons on Earth the Utopians started to worry about the future of not only their way of life but also the worlds. With the use of the Atom bomb they soon decided to leave the planet altogether and designed and created a starship and returned to stars of their fore-bearers to find a new settlement world.

    \"Last
    Last of the Utopian's

    Zarda, also naming herself Power Princess, would stay behind as the Utopians emissary to the Earth. It would be learned later that on Earth-616 at the same location where Utopia Isle was on Earth-712 that the sunken city of Atlantis would be. This indicates that the Utopians were a large civilization, whose counterparts on Earth-616 comprised both the Inhumans and the Atlanteans. The Utopians had used their advanced technology to create an almost indestructible transparent shield. The shield was gifted to Zarda as the chosen ambassador of their culture and to represent as a symbol of Utopians ideals, almost serving as her standard.

    It remains unknown what became of the Utopians, but the Squadron Supreme used the ruins on Utopia Isle as their command post and speculated that at some future point they would return to aid their princess in her war against wayward humanity.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-25891/","id":25891,"name":"The Utopia Principle","issue_number":"1"},"id":41621,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3406707-exiles07704.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3406707-exiles07704.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3406707-exiles07704.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3406707-exiles07704.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3406707-exiles07704.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3406707-exiles07704.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3406707-exiles07704.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3406707-exiles07704.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3406707-exiles07704.jpg","image_tags":"All Images,Earth-712 Utopia Isle,Marvel art"},"name":"Utopia Isle","site_detail_url":"https://comicvine.gamespot.com/utopia-isle/4020-41621/","start_year":"1985"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41624/","count_of_issue_appearances":7,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-06-27 03:02:29","deck":"A little cesspool of a town in Texas that met a violent and bloody end.","description":"

    A small town in Texas and home to mostly drunks, whores and sinners. The entire town was wiped out in one night by the Saint of Killers on his quest for revenge.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-42650/","id":42650,"name":"Part 1","issue_number":"1"},"id":41624,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/662943-24791_20080223110600_large.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/662943-24791_20080223110600_large.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/662943-24791_20080223110600_large.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/662943-24791_20080223110600_large.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/662943-24791_20080223110600_large.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/662943-24791_20080223110600_large.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/662943-24791_20080223110600_large.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/662943-24791_20080223110600_large.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/662943-24791_20080223110600_large.jpg","image_tags":"All Images,Ratwater, Texas"},"name":"Ratwater, Texas","site_detail_url":"https://comicvine.gamespot.com/ratwater-texas/4020-41624/","start_year":"1996"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41633/","count_of_issue_appearances":49,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-04-06 11:51:18","deck":"A province in Canada","description":"

    Overview

    There has been human habitation in Newfoundland and Labrador for about 9000 years, beginning with the Maritime Archaic peoples, who lived in the area from about 7000 BCE to 1500 BCE. These were later largely replaced with various other native peoples, particularly the Dorset and later the Inuit and Beothuk. First European contact was established with the area by the Vikings in about 1001 CE, but this failed to produce a stable European colony in the area, and the native peoples were left largely undisturbed until 1497 when John Cabot landed in what is believed to be Cape Bonavista. His arrival was followed by that of Portuguese explorers who mapped the region, and later claimed the area for Portugal. Portuguese control of the area was maintained throughout most of the 1500s, until 1583 when Sir Humphrey Gilbert took possession of Newfoundland under the authority of Queen Elizabeth I. The discovery of the excellent fishing resources of the area lead to a boom in the fishing industry that lasted well into the 1600s and drew colonization efforts from numerous European powers, with the French taking root in 1655. Skirmishes between the French and English, and between these European powers and native populations, continued until the French ceded their holdings to the English in 1713. Attempts to retake control by the French and Spanish occurred in the mid-to-late 1700s, but were largely repulsed. In 1854 the region, now thoroughly British, was given responsible government. Despite the best efforts of the Canadian government, Newfoundland consistently rejected efforts at confederation throughout the late nineteenth and early twentieth centuries, and became a dominion in 1907. Maintenance of a regiment during the First World War put the dominion on shaky economic ground. Despite the absorption of the mainland Labrador into the dominion in 1927, the region remained so economically unstable that in 1933 the government voted itself out of existence and handed power to an unelected group of British-appointed officials. This Commission of Government went unchallenged from 1934 until economic prosperity began to return to the area in 1942 and Newfoundlanders began to call for a new governmental system. The British government chose to allow the Newfoundlanders to make their own decision about their government. This lead to two referendums which ultimately decided to confederate with Canada. Newfoundland and Labrador officially became part of Canada through the British North America Act, 1949, which came into force on March 31st, 1949.

    The Province

    The province of Newfoundland and Labrador is made up of two major constituent regions, the mainland Labrador, which is bordered by the province of Quebec and the Atlantic Ocean, and the island of Newfoundland, which is surrounded by the Atlantic Ocean. The mainland and island are separated by the Strait of Belle Isle. It also contains over 7,000 smaller islands. The capital of Newfoundland is St John's, which is also its largest city.

    There are just over 514,000 people living in the province, a majority of whom live on the island. A majority of the population report their ethnic origin as Canadian, with smaller populations identifying as Irish, English, Scottish, French, Native, Inuit, German and Métis. 0.7% of the population describe themselves as \"Newfoundlander\" in origin. Other ethnicities are identified by very small proportions of the population, none of which exceed 0.55%. Christianity is the dominant religion, with only 2.7% of the population identifying with another religion. Of this 2.7%, 2.5% identify as having no religion.

    Newfoundland is Canada's most linguistically homogenous region, with 97.7% of the population identifying English as their native language. Other languages, such as French and native languages, each account for less that 0.4% of residents. Newfoundlanders are noted throughout Canada for their distinctive accent and vocabulary, which borrows heavily from British and Irish immigrants.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-237800/","id":237800,"name":null,"issue_number":"37"},"id":41633,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/50734/3116230-newfoundland-flag.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/50734/3116230-newfoundland-flag.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/50734/3116230-newfoundland-flag.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/50734/3116230-newfoundland-flag.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/50734/3116230-newfoundland-flag.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/50734/3116230-newfoundland-flag.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/50734/3116230-newfoundland-flag.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/50734/3116230-newfoundland-flag.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/50734/3116230-newfoundland-flag.png","image_tags":"All Images"},"name":"Newfoundland and Labrador","site_detail_url":"https://comicvine.gamespot.com/newfoundland-and-labrador/4020-41633/","start_year":"1942"},{"aliases":"Asteroid M\r\nUtopia Island","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41752/","count_of_issue_appearances":467,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-10-06 04:41:43","deck":"Asteroid M was Magneto's lair in orbit over the Earth. Destroyed, rebuilt & replaced various times; Asteroid M was destroyed in the sun & eventually fell to Earth after a conflict with the X-Men.","description":"

    History

    Asteroid M

    As the name implies, Asteroid M was an asteroid that orbited the Earth. It was primarily the home of Magneto on several different occasions, and has repeatedly come under attack. It was a mostly composed of nickel and iron, which made it very susceptible to Magneto's magnetic powers. The asteroid also contained various life-supporting habitats on the surface and most likely underground as well. One frequently used tactic by Magneto was to suspend it within the Earth's atmosphere by magnetic levitation directly over any target he wished to intimidate.

    Magneto often withdrew from regular human society, and took up residence on Asteroid M. At various times, it was also the home of Exodus and the other Acolytes, including the X-Man Colossus and the former New Mutants Rusty and Skids. However, it had been attacked and knocked out of orbit on different occasions. One such attack was the result of the Age of Apocalypse, when Holocaust first arrived in the Earth-616 universe he appeared on Asteroid M wantonly murdering and killing anyone who stood in his way.

    \"Asteroid
    Asteroid M in Orbit

    Asteroid M was also used as part of Magneto's plans when he was disguised as Xorn. When Cyclops, Wolverine & Fantomex infiltrated Weapon Plus, they were sent into space. It wasn't until Magneto began to set his plans into motion that they realised the space station was really Asteroid M in disguise. Part of Magneto's plan was to destroy the trapped X-Men by sending Asteroid M crashing into the sun.

    There have been a few different versions of Asteroid M, although the concept was usually the same: to provide a safe secluded home for mutants. Sometimes Magneto was able to repair it through using his own magnetic powers. Other times he simply replaced it and started again on a new asteroid. It is yet unrevealed which version of Asteroid M was located on the floor of San Francisco Bay.

    Utopia

    \"Utopia\"
    Utopia

    Asteroid M had crashed down to Earth, and had seemingly been forgotten. However, the X-Men's specialist science team known as the X-Club located the remains of Asteroid M underwater in San Francisco Bay. Working in submarines and scuba apparatus they managed to repair the life support systems and turned the asteroid's technology into reclamation hardware. The asteroid was rocketed from the floor of San Francisco Bay up to the surface where it became an island in the middle of the bay. The X-Men took over the remains of Asteroid M and turned it into their new home, named Utopia. There, they offered all the remaining mutants and their families a home and a chance to live in peace, without fear of persecution.

    Magneto (after regaining his mutant powers) flew to Utopia and offered to peacefully join the X-Men.

    In Other Media

    Television

    \"Asteroid
    Asteroid M in Pryde of the X-Men
    • Asteroid M appears as the headquarters of Magneto and the Brotherhood of Evil Mutants in the Pryde of the X-Men pilot.
    • Asteroid M is prominently featured in the two-part X-Men: The Animated Series episode \"Sanctuary.\" Following the comics, it is created as a refuge for all of the world's mutants, though it is ultimately destroyed.
    • Asteroid M is featured in the two-part X-Men: Evolution episode \"The Cauldron.\" In a departure from the comics, it is located a few miles above the Arctic Circle rather than in space. The Asteroid comes crashing down towards Earth after its engines are damaged, but Cyclops and Havok are able to destroy it before it can land.

    Video Games

    \"Asteroid
    Asteroid M in Marvel Super Heroes
    • Asteroid M is featured in the X-Men game for the Sega Genesis.
    • Asteroid M is featured as the final stage in the X-Men arcade game from Konami, which was based off of Pryde of the X-Men.
    • Asteroid M is featured as Magneto's stage in the Japanese fighting game Marvel Super Heroes.
    • Asteroid M is featured as a stage in the fighting game X-Men: Mutant Academy 2.
    • Asteroid M appears as a stage in the fighting game X-Men: Next Dimension.
    • Asteroid M is featured as the final stage in X-Men Legends.
    • Asteroid M appears in Marvel Super Hero Squad and Marvel Super Hero Squad: The Infinity Gauntlet.
    • Asteroid M appears in Lego Marvel Super Heroes.
    • Asteroid M is featured as a stage in the fighting game Marvel Contest of Champions.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7114/","id":7114,"name":"Trapped: One X-man!","issue_number":"5"},"id":41752,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/212051-58241-asteroid-m.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/212051-58241-asteroid-m.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/212051-58241-asteroid-m.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/212051-58241-asteroid-m.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/212051-58241-asteroid-m.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/212051-58241-asteroid-m.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/212051-58241-asteroid-m.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/212051-58241-asteroid-m.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/212051-58241-asteroid-m.jpg","image_tags":"All Images,Asteroid M"},"name":"Utopia/Asteroid M","site_detail_url":"https://comicvine.gamespot.com/utopiaasteroid-m/4020-41752/","start_year":"1964"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41765/","count_of_issue_appearances":9,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-05-08 21:05:01","deck":"Clark's Bar & Grill is a superhero bar in the Wildstorm Universe.","description":"

    Clark's Bar & Grill is a bar for super heroes, crime fighters, super powered beings and pretty much any person with a dual/secret identity. The bar has appeared in WildC.A.T.S: Covert Action Teams and Mr. Majestic. Some patrons of Clark's include: John Lynch, members of Stormwatch (the original team), Condition Red, Ladytron, Deathblow, Grifter, Tao, Mr. Majestic, Spawn, Beast, Killer Croc,Wolverine, Spider-Man, Joker, Savage Dragon, Colossus, Juggernaut, Nightcrawler, Batman, Nick Fury, Jackson Dane, Darkseid, Thor, Captain America, Thing, Sasquatch, Super Skrull and others. The owner of Clark's is a surprisingly familiar-looking man named (big surprise) Clark. He is (or was) a superhero, or at the very least, an SPB (Super-Powered Being) whose powers include laser vision.

    In the background during a number of issues, especially during Warren Ellis' run on Stormwatch, familiar faces could be seen throughout the bar. Characters that look similar to Spider-man, Juggernaut, Wolverine, and Spawn are among the notable doppelgangers.

    In Gang War, Max Cash and Ladytron went to the bar for drinks after a battle. Ladytron thought it was a date even though Max kept on telling her otherwise. While they were there, Tao had a criminal deliver a bomb to the building and blew it up, destroying the bar and injuring several people, including Max. The bomb left him in the hospital and eventually caused him to leave the team. The WildC.A.T.s figured out that Tao was behind the bombing (among other crimes) and tried to take him down for it, but he escaped. In the Mr. Majestic solo series, Ladytron and Mr. Majestic go on a date and meet up at Mars bar. It's never explicitly stated, but Mars is the same bar as Clark's, just with a new name and owner. Superheroes don't get there as much, but sidekicks do.

    Fighting in the bar is ok since, to get into Clark's, patron's must present secret ID and the owner can make them pay for any damage. Other than that, there are only 6 rules.

    Bar Rules

    1. No Gorillas
    2. No Bizarros
    3. No Evil Duplicates
    4. No Wing Tip Haircuts
    5. No Amalgaming
    6. No Exceptions
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-47289/","id":47289,"name":"Catfight","issue_number":"25"},"id":41765,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/89265-159654-clarks.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/89265-159654-clarks.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/89265-159654-clarks.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/89265-159654-clarks.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/89265-159654-clarks.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/89265-159654-clarks.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/89265-159654-clarks.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/89265-159654-clarks.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/89265-159654-clarks.jpg","image_tags":"All Images,Clark's Bar & Grill"},"name":"Clark's","site_detail_url":"https://comicvine.gamespot.com/clarks/4020-41765/","start_year":"1995"},{"aliases":"Avalon\nTír na nÓg\nAnnwn","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41768/","count_of_issue_appearances":235,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-10-02 13:43:14","deck":"Annwn is the afterlife world in Welsh mythology and is ruled by the Celtic god Arawn. ","description":"

    Classic Depiction:

    Ruled by the god Arawn, Annwn is the otherworld of Welsh and Irish mythology. Originally it was a heavenly place filled with food and goods, and without diseases, but later tales it assumed negative connotations. Many stories talks about Annwn, notably the Book of Taliesin, which tells about the journey of King Arthur and his knights to Annwn, in search of a magical cauldron.

    Marvel:

    Otherworld is the home of the Omniversal Guardian Roma, her father Merlin, the Captain Britain Corps and the Celtic Gods.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8810/","id":8810,"name":"Whosoever Finds the Evil Eye","issue_number":"54"},"id":41768,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/60598/2187740-4f29a91792dd2.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/60598/2187740-4f29a91792dd2.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/60598/2187740-4f29a91792dd2.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/60598/2187740-4f29a91792dd2.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/60598/2187740-4f29a91792dd2.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/60598/2187740-4f29a91792dd2.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/60598/2187740-4f29a91792dd2.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/60598/2187740-4f29a91792dd2.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/60598/2187740-4f29a91792dd2.png","image_tags":"All Images,Artwork,Earth-616 Captain Britain,Earth-616 Fantomex,Otherworld,Psylocke"},"name":"Otherworld","site_detail_url":"https://comicvine.gamespot.com/otherworld/4020-41768/","start_year":"1966"},{"aliases":"The Hub","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41803/","count_of_issue_appearances":54,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-04-26 03:19:24","deck":"The floating castle residence of Omniversal Guardian Roma in Otherworld. Sometimes known as the Hub.","description":"

    House of the Dimensional Development Court, Merlyn and Roma, and used as home of other figures and corporations.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-138106/","id":138106,"name":null,"issue_number":"1"},"id":41803,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/28028/675270-starlight_citadel_2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/28028/675270-starlight_citadel_2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/28028/675270-starlight_citadel_2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/28028/675270-starlight_citadel_2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/28028/675270-starlight_citadel_2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/28028/675270-starlight_citadel_2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/28028/675270-starlight_citadel_2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/28028/675270-starlight_citadel_2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/28028/675270-starlight_citadel_2.jpg","image_tags":"All Images,Starlight Citadel,The Chaos Wave"},"name":"Starlight Citadel","site_detail_url":"https://comicvine.gamespot.com/starlight-citadel/4020-41803/","start_year":"1983"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41841/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-05-05 16:59:30","deck":"A.R.M.S. Installation (Air Reconnaissance and Missile Strike Base) is a militay installation hidden within the Colorado Rockies. This is one of many hidden military installations arouynd the world.","description":"

    The A.R.M.S Installation is under the leadership of General Marion Barnett Higgins. A.R.M.S. is the most vital military installation in the United States of America, second only to the Pentagon. It houses a full accompaignment of all prototype and functional offensive weapons in the United States military. All major new pieces of technology are tested at the A.R.M.S. Installation. There are 1500 personal stationed at the A.R.M.S. base at any one time.

    A.R.M.S. was responsible for Project: Shield which hoped to replicate the indestructible power suit worn by the 1950's superhero of the same name.

    ","first_appeared_in_issue":null,"id":41841,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1202/90767-83084-a-r-m-s-installatio.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1202/90767-83084-a-r-m-s-installatio.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1202/90767-83084-a-r-m-s-installatio.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1202/90767-83084-a-r-m-s-installatio.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1202/90767-83084-a-r-m-s-installatio.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1202/90767-83084-a-r-m-s-installatio.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1202/90767-83084-a-r-m-s-installatio.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1202/90767-83084-a-r-m-s-installatio.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1202/90767-83084-a-r-m-s-installatio.jpg","image_tags":"All Images,gallery"},"name":"A.R.M.S. Installation","site_detail_url":"https://comicvine.gamespot.com/arms-installation/4020-41841/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41918/","count_of_issue_appearances":582,"date_added":"2008-06-06 11:27:49","date_last_updated":"2022-03-13 08:42:52","deck":"The Danger Room is the training area for the X-Men and is located in Xavier Mansion.","description":"

    History

    The Danger Room has played an important role in the everyday lives of the X-Men since the beginning. It provides a central and controlled location for training where the X-Men can learn to control and develop their abilities in normal and combat-like situations.

    Beneath the staid facade of a Mansion in upstate New York lies a mass of state-of-the-art technology known as the Danger Room or War Room too.

    \"Plan
    Plan View

    The original Danger Room employed many mechanical weapons and dangers including flying projectiles similar to missiles, obstacle courses, trap-floors, fire, crushing walls, and much more. The layout of the Danger Room has not changed considerably since its earliest mention. The room itself is quite large, and there is a central control room and observatory overlooking it where the entire room can be controlled by a single person.

    Since the beginning the Danger Room has underwent a series of upgrades. The first was the addition of robots to the room for combat training. Later, Shi'ar technology was incorporated by Beast, upgrading the room to incorporate realistic holograms to the training and adding to the weapons and traps that the X-Men faced while training.

    At some point the Danger Room has gained sentience. It is unclear when this happened, but it was revealed that Professor Xavier was aware it and chose to leave it imprisoned in the room. The room began to attack students that were inside, and its core was accidentally freed by Wolverine. Constructing a body resembling a human female, Danger has become an enemy of the X-Men. Currently the Danger Room is inactive as it has lost its control system. Prodigy, a student at the Xavier Institute, constructed a \"Danger Cave\" with similar functionality before losing his powers as a result of M-Day.

    Alternate Realities

    Age of Apocalypse

    \"Killing
    Killing zone

    Killing zone: This zone resembles the actual Danger Room, it is a state of the art in training technology and it is located in Wundagore Mountain at Magneto's mutant Sanctuary.

    Other Media

    Animated

    X-Men The Animated Series

    The Danger Room was seen in the first episode and was mainly used as a training simulator.

    X-Men: Evolution

    Used to train and practice but was also used to clean the X-Jet. It was also used to simulate results and one of the more common uses was to protect something of value to the X-Men or to protect someone like Professor X or injured teammates while away on a mission or during a siege or attack on the X-Mansion.

    For a very short time it was used to protect Cerebro from Mystique while everyone was away on a mission.

    Live Action

    X-Men: The Last Stand

    \"Finishing
    Finishing session

    It appears at the beginning of the movie. It is used by Iceman, Shadowcat, Rogue, Colossus, Wolverine and Storm, the latter two were leading the training session. The team was fighting a Sentinel.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6694/","id":6694,"name":"X-Men","issue_number":"1"},"id":41918,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11079/254137-93018-danger-room.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11079/254137-93018-danger-room.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11079/254137-93018-danger-room.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11079/254137-93018-danger-room.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11079/254137-93018-danger-room.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11079/254137-93018-danger-room.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11079/254137-93018-danger-room.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11079/254137-93018-danger-room.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11079/254137-93018-danger-room.jpg","image_tags":"All Images,Earth-616 Danger Room"},"name":"Danger Room","site_detail_url":"https://comicvine.gamespot.com/danger-room/4020-41918/","start_year":"1963"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41963/","count_of_issue_appearances":128,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-06-28 14:51:52","deck":"A series of locations used by the assassin for hire, Arcade. They are technological wonders that often place their victims in ironic situations.","description":"

    To learn about and understand the hellish place called Murderworld, one first must learn about its psychotic creator, funder, and user: the madman known as Arcade.

    Murderworld is constantly changing to fit the unlucky person stuck in it. There are many Murderworld facilities, designed for a different hero. For instance, when Thing was trapped in a Murderworld, Arcade designed robot versions of the past versions of the Hulk, such as Maestro and Joe Fixit. Poor Thing had to fight each one, right in a row. He barely made it out alive. There are a few small idiosyncrasies of Murderworld. Murderworld is designed like an amusement park or a carnival. Clown-robots, huge flowers that squirt acid, bumper cars with spikes that go towards someone at 100 mph, all the traps are somehow carnival related. It costs 1,000,000 dollars to send someone to Murderworld, although Arcade doesn't need it. Only two people work with Arcade on Murderworld, the mysterious Miss Locke and Mr. Chambers. They clean out Murderworld, fix traps, feed Arcade, create new traps, organize files, whatever is needed to keep the carnival going. Almost nothing is known about them. Arcade has one similarity to Joker, too-unlike your typical mastermind who believes his trap is unbeatable, Arcade leaves a tiny, miniscule chance for his victim to escape. This is often his downfall, but Arcade has a simple reason. \"If you're going to kill them, at least have the decency to do it quickly, painlessly!\" said someone who learned about Murderworld. Arcade laughed and replied, \"Decency's dull... besides, miss, your way, they're dead and that's that. My way, they've got a chance. Not much of one, but a chance.\"

    Murderworld History

    The first people ever caught in Murderworld were a duo. In Marvel Team-Up #65, Spider-Man and Captain Britain were trapped in Murderworld. They made it out, but were shaken by the experience. It was the world's first taste of Murderworld. Over the years, many victims were trapped in Murderworld, including Longshot, Phil Urich(also known as Green Goblin), Ghost Rider, and Doctor Doom. He also fights teams like X-Men, X-Factor, Alpha Flight, Excalibur, and the Micronauts. And occasionally, two people get trapped in Murderworld and have to fight out together. Examples are Wolverine and Gambit, Archangel and Iceman, and Colossus and Kitty Pryde. Murderworld hasn't killed any major heroes yet. Recently, Arcade sold one of his Murderworlds to Viper, who tried to kill a powerless Storm and the Queen of England. However, they escaped.

    Murderworld has also been reduced to a traveling show, bringing the entertainment in a more versatile manner. One stop was in Phoenix, Arizona, where Arcade kidnapped Shatterstar and Adam X and pitted them against each other, controlling the action with mind games. Neither man died, however, and Arcade escaped due to the fact that an android acted as proxy.

    Ultimate Murderworld

    In the Ultimate universe, Arcade is an assassin but does not use Murderworld. It is only mentioned as the name of a video game he designed which got him his fortune.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-18256/","id":18256,"name":"Murder-World","issue_number":"66"},"id":41963,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2567388-198805_official_marvel_index_to_the_x_men__6___page_3.jpg","image_tags":"All Images,Art,Earth-616 Arcade,Earth-616 Magneto,Earth-616 Mastermind,Earth-616 Mesmero,Earth-616 Proteus,Earth-616 Sauron,Earth-616 Wolverine,Murderworld"},"name":"Murderworld","site_detail_url":"https://comicvine.gamespot.com/murderworld/4020-41963/","start_year":"1978"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41978/","count_of_issue_appearances":602,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-03-17 11:37:20","deck":"Homeworld of the Transformers, a race of sentient robots whose civil war has ravaged the planet for over 4 million years.","description":"

    Transformers G1 (Marvel Comics)

    It was first revealed that Cybertron was actually Primus, the creator of all Transformers.

    Other Media

    Transformers G1

    Cybertron is first introduced in the very first episode of Transformers entitled \"More Than Meets the Eye.\" It is the home world of the Transformers and the ultimate battleground in the war between the Autobots and the Decepticons.

    Transformers Cybertron

    Cybertron appeared and was mentioned in many episodes of this series. The Transformers learned that Primus was in fact Cybertron in episode 30, entitled \"Cybertron.\"

    Transformers: Robots in Disguise

    Unlike most incarnations of Transformers, Cybertron appears to be green when seen from outer space.

    Transformers (2007)

    Cybertron makes its Live Action debut in the first film as a hologram created by Optimus Prime, showing early days of the war when it was taken over.

    Transformers: Revenge of the Fallen

    Although Cybertron did not appear in Revenge of the Fallen, it was mentioned a few times.

    Transformers: Dark of the Moon

    In the third entry of the trilogy, Cybertron has more of a purpose, showing the days of Sentinel Prime as he escapes in the Ark with five of the Pillars. Later it is revealed that the Decepticons where transporting the planet to Earth so the humans could \"rebuild\" it. Cybertron was then believed to be destroyed.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-307691/","id":307691,"name":"Battle For Cybertron","issue_number":"1"},"id":41978,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5754126-750px-darknessrising4-cybertron.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5754126-750px-darknessrising4-cybertron.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5754126-750px-darknessrising4-cybertron.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5754126-750px-darknessrising4-cybertron.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5754126-750px-darknessrising4-cybertron.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5754126-750px-darknessrising4-cybertron.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5754126-750px-darknessrising4-cybertron.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5754126-750px-darknessrising4-cybertron.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/5754126-750px-darknessrising4-cybertron.jpg","image_tags":"All Images,Gallery"},"name":"Cybertron","site_detail_url":"https://comicvine.gamespot.com/cybertron/4020-41978/","start_year":"1984"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41985/","count_of_issue_appearances":101,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-05-27 17:57:53","deck":"Originally called Romeyn Falls, when it was rebuilt after WWII, It was renamed in honor of the Astronaut, a superhero who gave his life to save the city. It's the Seat of Hood County.","description":"

    Astro city is split into a variety of neighborhoods, each with its own unique feel. Some of the most recognizable are:

    • The haunted, immigrant-laden Shadow Hill, where no sane man would be out at night and the sinister hero the Hanged Man floats through the streets.
    • The City Center, a neo-modern teeming metropolis of mega-towers which represents the city to all who don't live there.
    • Keifer Square, a slum home to many retired supervillains, including Steeljack, Donnelly Ferguson, Golden Glove, Handgun, and The Chain.
    • Biro Island, the Alcatraz-like penitentiary for supervillains.

    Notable locations within these neighborhoods are:

    • The Astrobank Tower, home of the Astro City Beacon, a warning system, and a statue of Air Ace.
    • Bruiser's, a bar catering to superheroes that is owned and operated by K.O. Carson, formerly The Black Badge.

    No matter where you are in Astro City, the most notable thing is the constant battles between superheroes and supervillains. Not only are superheroes found in every conceivable nook and cranny, but the citizens of the city also do their bit to rebuild and help the city recover from the perennial destruction.

    Ironically, the superheroes bring people in as tourists, but due to their regular high-powered battles in the city, also keep them away. However, the general good of the plain old heroes nobody knows about cause them to makes Astro City their home.

    Many locations and businesses within the Astro City universe are named after notable figures from the comics industry (for instance, Mount Kirby, named after Jack Kirby).

    Please note that Astro City was originally published by Image and is now published by Homage, a division of Wildstorm. Astro City is creator-owned by Kurt Busiek, not a DC property.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106373/","id":106373,"name":"In Dreams","issue_number":"1"},"id":41985,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/787/90510-50374-astro-city.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/787/90510-50374-astro-city.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/787/90510-50374-astro-city.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/787/90510-50374-astro-city.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/787/90510-50374-astro-city.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/787/90510-50374-astro-city.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/787/90510-50374-astro-city.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/787/90510-50374-astro-city.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/787/90510-50374-astro-city.jpg","image_tags":"All Images,Astro City"},"name":"Astro City","site_detail_url":"https://comicvine.gamespot.com/astro-city/4020-41985/","start_year":"1995"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42034/","count_of_issue_appearances":88,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-04-23 05:36:04","deck":"Iacon is the Autobots' headquarters and capital located near the north pole of Cybertron.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-170889/","id":170889,"name":null,"issue_number":"1"},"id":42034,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/2469392-iacon_tf_the_war_within_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/2469392-iacon_tf_the_war_within_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/2469392-iacon_tf_the_war_within_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/2469392-iacon_tf_the_war_within_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/2469392-iacon_tf_the_war_within_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/2469392-iacon_tf_the_war_within_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/2469392-iacon_tf_the_war_within_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/2469392-iacon_tf_the_war_within_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/2469392-iacon_tf_the_war_within_1.jpg","image_tags":"All Images,Gallery"},"name":"Iacon","site_detail_url":"https://comicvine.gamespot.com/iacon/4020-42034/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42058/","count_of_issue_appearances":20,"date_added":"2008-06-06 11:27:49","date_last_updated":"2013-01-12 01:05:59","deck":"Cable's base in space assembled with technology from his future timeline. SHIELD attacked it and partially destroyed it, sending several parts of it to Earth. Magneto later reformed it into Avalon.","description":"

    Named after the Xavier Institute's address, Graymalkin was operated by the Professor, Cable's sentient computer that was formerly X-Factor's Ship, and later became Prosh. It had technology allowing Cable to teleport or bodyslide as he called it as well as a timecore that allowed for time travel.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36164/","id":36164,"name":"Payback!","issue_number":"14"},"id":42058,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/90995-114348-graymalkin.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/90995-114348-graymalkin.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/90995-114348-graymalkin.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/90995-114348-graymalkin.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/90995-114348-graymalkin.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/90995-114348-graymalkin.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/90995-114348-graymalkin.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/90995-114348-graymalkin.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/90995-114348-graymalkin.jpg","image_tags":"All Images,Graymalkin"},"name":"Graymalkin","site_detail_url":"https://comicvine.gamespot.com/graymalkin/4020-42058/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42072/","count_of_issue_appearances":1741,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-01-03 14:48:14","deck":"Earth's only natural satellite.","description":"

    Topography

    Unlike other planetary bodies away from Earth, the surface of the Moon is somewhat familiar to astronomers (the surface of the Moon is more easily observed with the naked eye than planets are with telescopes). The Moon does not have its own atmosphere as its gravity is too weak to maintain one. Its surface is marked by many meteor strikes, including among them Copernicus.

    The DC Universe

    The most notably variant aspect of the Moon as it stands in the DC Universe is that for the better part of the last decade, it housed the legendary Justice League Watchtower. Because of their presence there, the Moon experienced quite a few world-shattering events first hand. Throughout the Justice League Of America's tenure on the surface of the Moon, it has been pulled from orbit several times, nearly destroyed, and been hit by all manner of different weapons and entities.

    However, with the advent of the JLA story arc \"Crisis of Conscience\", and the Infinite Crisis, the Watchtower has been destroyed by Superman Prime and Alex Luthor. Its towering ruins still stand to this day.

    The Marvel Universe

    The Moon of the Marvel Universe is notable in that it contains an area known as the Blue Area of the Moon. The Blue Area lies on the far side of the Moon in the Luther Crater. This portion of the Moon was artificially altered and given an Earth-like environment approximately 100,000 years ago as a result of a competition between two alien races, the Kree and the Cotati, to see who could create a better habitat. The Cotati won but the Kree, angry in defeat, attacked the Skrulls and initiated the Kree-Skrull War. Not only was the Moon the cause for this war that had a major impact on the Marvel Universe, it also became a home to various beings.

    When the Fantastic Four made a trip to the Moon they found that it was where Uatu the Watcher lived and from where he watched all of humanity. Apart from Uatu, the Blue Area of the Moon was where the Inhumans made their home. The Inhumans moved their city (called Attilan) from Earth to the Blue Area after conflicts with Humans. The Blue Area also sustained the life of another alien race, but they died long before humans ever knew they existed and all that remains are ruins.

    The other big thing that the Marvel Moon is known for is as the stage for the ending of the Dark Phoenix Saga. The Shi'ar, fearing the power of the Phoenix Force, bring the X-Men to the Moon where they must fight the Imperial Guard, with the winner deciding the fate of the Phoenix. The X-Men were losing and, after going crazy, Jean regained control and used a Kree weapon to kill herself and save everyone else. The X-Men were returned safely to Earth, and the Moon was left intact.

    The Wildstorm Universe

    \"caption\"
    caption

    The Wildstorm Moon doesn't have regular inhabitants like DC and Marvel, but a few things have happened there. In August of 1974, the Moon was moved from it's orbit by Mr. Majestic. It was the first test of his Planet Movers and first step in hiding the solar system from the Cosmic Negator. Not only was it moved though, it was moved in total secret. With machines set up all over the Earth and everyone watching the President resign on TV, the Moon was moved out of it's orbit. Another secret of the Wildstorm Moon is that it contains a Daemonite outpost. The base is small but has computers that hold massive amounts of information from all over the multiverse and also access to The Bleed.

    The Bleed gates on the Moon provide a way to get to different dimensions and also let things from different dimensions into the Wildstorm one. Mr. Majestic got pulled into the gate by a Daemonite scout and ended up in the DC Universe. While he was gone from the Wildstorm Universe, Daemonites from another reality broke through and took over the planet Earth. Majestic eventually got back to his reality and, after traveling back in time to before the Daemonites got through, destroyed the base, so currently there is no Daemonite base on the moon. The last feature of the Moon is actually very similar to the DC Moon, if it exists. In a special issue of Planetary it was revealed that Planetary has a base on the Moon called the Watchtower. However, the issue (Terra Occulta) was crossover with the JLA and was an Elseworlds tale so there may not actually be a Planetary Watchtower.

    In The Authority and tried to terraform the moon. It wasn't actually God, but that's what The Authority started calling the alien being that had sparked life on Earth. The whole process started right before the new millennium with giant, worm-like creatures landing on the Moon (and in Africa). In order to rid the Moon of its worm infestation (and also protect Earth), Apollo supercharged himself by taking a dip in the sun and then releasing all that energy onto the Moon, sterilizing it. After the Moon and Africa were cleared, the team took on God (a giant pyramid thing) and Jenny Sparks died killing it.

    At the start of World's End, The High smashed one of his clones into the moon, destroying a large part of it.

    Power Rangers

    The moon was home to Rita Repulsa, Lord Zedd, Goldar, Finster, Baboo, Squatt, until the Machine Empire ran them from their home after the invasion.

    Image

    In the Image Universe, the Noble Family has a base on the moon. Also, in one issue of Brit, a ship full of stoned aliens crash landed on the surface of the moon.

    Other/All

    Other than the places on the Moon, the Moon itself has often been used as a place for superheroes to get away from the troubles of the world and think for a while. Most of the heroes that handle problems on a global scale and can fly and survive in space have at some point gone to the Moon for some peace and quiet. Superman types especially (for some reason) like the Sentry, Invincible and Superman himself frequently take time to relax in the comfort of the Moon.

    There are also heroes that get their powers from the Moon. The most well known of these would be Moon Knight (or even Sailor Moon). Moon Knight gets his powers from Khonshu, the Egyptian moon god. There are also heroes who use the moon as a symbol even if they don't get powers from it. Midnighter, for example.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-122950/","id":122950,"name":"The Case of Tintype's Will; The Haunted House","issue_number":"1"},"id":42072,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/3489006-moon%202.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/3489006-moon%202.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/3489006-moon%202.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/3489006-moon%202.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/3489006-moon%202.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/3489006-moon%202.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/3489006-moon%202.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/3489006-moon%202.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/3489006-moon%202.jpg","image_tags":"All Images,Art work,The Moon"},"name":"The Moon","site_detail_url":"https://comicvine.gamespot.com/the-moon/4020-42072/","start_year":"1939"},{"aliases":"Crystal Palace","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42089/","count_of_issue_appearances":76,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-08-30 16:58:42","deck":"The headquarters of the Exiles. The Panoptichron is also referred to as the Crystal Palace.","description":"

    The Panoptichron is a mysterious palace, said to exist outside space and time, from where you can observe and have access to any reality in the Marvel multiverse.

    The Panoptichron was somehow found by the Timebreakers and while studying it they accidentally damaged several realities, setting off a chain-reaction. Being pacifists themselves they got the idea to gather heroes from various realities and basically force them to fix the damaged time-lines, and that is how the Exiles  and Weapon X was born.

    Much later on a mission the Exiles got hold of a piece of the M'Kraan Crystal and managed to use it to teleport to the Panoptichron and take over. They now use the Panoptichron as their headquarters.


    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-49464/","id":49464,"name":"Full Blink Recall","issue_number":"4"},"id":42089,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66472/1224607-exiles___panoptichron_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66472/1224607-exiles___panoptichron_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66472/1224607-exiles___panoptichron_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66472/1224607-exiles___panoptichron_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66472/1224607-exiles___panoptichron_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66472/1224607-exiles___panoptichron_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66472/1224607-exiles___panoptichron_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66472/1224607-exiles___panoptichron_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66472/1224607-exiles___panoptichron_1.jpg","image_tags":"All Images"},"name":"Panoptichron","site_detail_url":"https://comicvine.gamespot.com/panoptichron/4020-42089/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42170/","count_of_issue_appearances":4,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-10-07 06:14:59","deck":"The Place is the last refuge for living beings at the end of the Wildstorm Universe.","description":"
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105396/","id":105396,"name":"The Big Chill","issue_number":"1"},"id":42170,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/100647/4144032-91946-46723-the-place.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/100647/4144032-91946-46723-the-place.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/100647/4144032-91946-46723-the-place.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/100647/4144032-91946-46723-the-place.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/100647/4144032-91946-46723-the-place.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/100647/4144032-91946-46723-the-place.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/100647/4144032-91946-46723-the-place.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/100647/4144032-91946-46723-the-place.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/100647/4144032-91946-46723-the-place.jpg","image_tags":"All Images,Images From Editing,The Place"},"name":"The Place","site_detail_url":"https://comicvine.gamespot.com/the-place/4020-42170/","start_year":"1997"},{"aliases":"Mojoworld","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42277/","count_of_issue_appearances":105,"date_added":"2008-06-06 11:27:49","date_last_updated":"2022-03-06 00:31:52","deck":"The Mojoverse is a dimension inhabited by its namesake and ruler, Mojo.","description":"

    Origin

    It's not really known whether Mojoverse is an alternate reality or a different dimension. It is said that the Mojoverse and it's inhabitants is unique to the Multiverse, so there's supposedly no alternate versions of Longshot and Mojo.

    Creation

    The Mojoverse was created by Ann Nocenti and Art Adams and first appeared in Longshot Vol.1 issue 1 (1985).

    Major Story Arcs

    A Brief History

    The universe is inhabited by races that watch television all day long. Mojo is the ruler of this reality/dimension and is the only producer that decides what will air on television and what will not. But in more recent times, a resistance to Mojo's rule has begun, most prominent players have been Longshot and (for some time) Dazzler and Shatterstar.

    Due to Longshot's ties to the X-Men, the mutantgroup has had their fair share of trips and fights towards and in the Mojoverse. More recently, even Howard the Duck was revealed to have his own show in the Mojoverse.

    Other Versions

    Earth 1610 (Ultimate Universe)

    In the Ultimate Universe there exists counterparts of Mojo and Longshot. These counterparts originates from Earth and are human, so it could be argued that they are not really counterparts, just happens to share the same name, and in Longshot's case the same powers.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-25907/","id":25907,"name":"A Man Without A Past","issue_number":"1"},"id":42277,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11126/111269625/6829576-mr%26mrs%239.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11126/111269625/6829576-mr%26mrs%239.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11126/111269625/6829576-mr%26mrs%239.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11126/111269625/6829576-mr%26mrs%239.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11126/111269625/6829576-mr%26mrs%239.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11126/111269625/6829576-mr%26mrs%239.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11126/111269625/6829576-mr%26mrs%239.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11126/111269625/6829576-mr%26mrs%239.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11126/111269625/6829576-mr%26mrs%239.jpg","image_tags":"All Images,Earth-616 Gambit,Gambit,Mojoverse"},"name":"Mojoverse","site_detail_url":"https://comicvine.gamespot.com/mojoverse/4020-42277/","start_year":"1985"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42278/","count_of_issue_appearances":24,"date_added":"2008-06-06 11:27:49","date_last_updated":"2012-09-04 21:36:09","deck":"The Breakworld is a planet in the Marvel Universe whose inhabitants believe the X-men's Colossus is destined to destroy.","description":"

    What if? Astonishing X-Men

     
    In this reality, Jean is revived by Ord instead of Colossus. It is the Phoenix Force that is believed to cause the destruction of Breakworld. Jean coming back cause conflict with Emma, who is being controlled by Cassandra Nova. Cassandra convinces Emma to use the Phoenix Force stealing it from the Stepford Cukoos, who die in the process. Emma kills Ord and travels to Breakworld and does in fact destroy it.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-93543/","id":93543,"name":"Gifted, Part 4","issue_number":"4"},"id":42278,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/1123959-as1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/1123959-as1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/1123959-as1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/1123959-as1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/1123959-as1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/1123959-as1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/1123959-as1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/1123959-as1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/1123959-as1.jpg","image_tags":"All Images,Breakworld"},"name":"Breakworld","site_detail_url":"https://comicvine.gamespot.com/breakworld/4020-42278/","start_year":"2004"},{"aliases":"Clinton\r\nMidtown West\r\nShadowland","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42295/","count_of_issue_appearances":651,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-12-12 18:13:05","deck":"A neighborhood of Manhattan where Daredevil is the protector of the citizens.","description":"

    Clinton (also known as Hell's Kitchen) is a part of New York City with a western boundary of 12th Ave, eastern boundary of 8th Ave, northern boundary of 59th St and southern boundary of 34th St.

    Daredevil is this neighborhood's resident hero. He fights criminals such as the Kingpin, Bullseye, Owl, and more.

    Nicholas Joseph \"Nick\" Fury was born and raised here.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7067/","id":7067,"name":"The Origin of Daredevil","issue_number":"1"},"id":42295,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7711256-rco014_1606318733.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7711256-rco014_1606318733.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7711256-rco014_1606318733.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7711256-rco014_1606318733.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7711256-rco014_1606318733.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7711256-rco014_1606318733.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7711256-rco014_1606318733.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7711256-rco014_1606318733.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7711256-rco014_1606318733.jpg","image_tags":"All Images"},"name":"Hell's Kitchen","site_detail_url":"https://comicvine.gamespot.com/hells-kitchen/4020-42295/","start_year":"1964"},{"aliases":"District X\r\nFreak City\r\nMiddle East Side\r\nMutopia\r\nMutopia X\r\nNYX","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42359/","count_of_issue_appearances":105,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-06-01 18:57:17","deck":"Before M-Day, Mutant Town was a poor area of New York (Lower East Side) that was primarily inhabited by mutants. While it was a poorer area, mutants found it to be a place where they could be themselves.","description":"

    Overview

    District X or Mutant Town was the setting of much mutant criminal activity as it was where the population was dominated by mutants, most of them with useless powers but nonetheless the majority of this area's citizens were criminals or involved in illegal activities. 

    House of M

    This shift in reality turns District X into “Mutopia X”, the center of art and culture in the new mutant-dominated world. The denizens of District X find themselves in a newly elevated societal status. Lara the Illusionist is a movie star married to entertainment mogul, Daniel “Shaky” Kaufman. Absolon Mercator and Gregor Smerdyakov have founded the Center for Transformation and Illumination and are the center of a spiritual following as they help mutants achieve their genetic potential.

    After the Decimation

    Mutant Town is inhabited by depowered mutants. There have been several riots in Mutant Town for various reasons. Mutant Town is being protected by X-Factor. Wolfsbane and Strong Guy have stopped a riot, and when the army tried to enter and take control, the two of them plus Siryn stopped them from entering.


    Mutants that lived in Mutant Town at some point in time:


    Bishop

    Mr. M

    Lorelei

    Lara the Illusionist

    Hannah Levy

    Jazz

    Felon

    X-23

    Kiden Nixon

    Catiana

    Gregor Smerdyakov

    Toad

    Johnny Dee

    Armena Ortega

    Winston Hobbes

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-78331/","id":78331,"name":"Of Living and Dying","issue_number":"127"},"id":42359,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/95917-41279-mutant-town.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/95917-41279-mutant-town.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/95917-41279-mutant-town.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/95917-41279-mutant-town.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/95917-41279-mutant-town.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/95917-41279-mutant-town.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/95917-41279-mutant-town.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/95917-41279-mutant-town.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/95917-41279-mutant-town.jpg","image_tags":"All Images,Mutant Town"},"name":"Mutant Town","site_detail_url":"https://comicvine.gamespot.com/mutant-town/4020-42359/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42362/","count_of_issue_appearances":14,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-04-25 13:43:19","deck":"The Temple of Cyttorak is a shrine located in South Korea, Southeast Asia.","description":"

    The Temple of Cyttorak houses the Crimson Gem of Cyttorak, the artifact that created the Juggernaut.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-25268/","id":25268,"name":"'Tis Better To Give!","issue_number":"150"},"id":42362,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3227818-newexcalibur01409.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3227818-newexcalibur01409.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3227818-newexcalibur01409.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3227818-newexcalibur01409.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3227818-newexcalibur01409.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3227818-newexcalibur01409.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3227818-newexcalibur01409.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3227818-newexcalibur01409.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3227818-newexcalibur01409.jpg","image_tags":"All Images,Earth-616 Juggernaut,Earth-616 Temple of Cyttorak,Marvel art"},"name":"Temple of Cyttorak","site_detail_url":"https://comicvine.gamespot.com/temple-of-cyttorak/4020-42362/","start_year":"1985"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42370/","count_of_issue_appearances":279,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-07-15 02:00:39","deck":"Jor-El (Superman's Kryptonian father) discovered this dimension absent of time and space. He believed the dimension to be an ideal prison and alternative to death for the criminals of Krypton.","description":"

    Overview

    It has been home to many nefarious villains including General Zod and his conspirators. The Phantom Zone has been used or discovered by other cultures and been referred to as the Still Zone (White Martians), Ghost Zone (Prometheus), Buffer Zone (Bgztlians), Stasis Zone (Loophole) and Honeycomb (Queen Bee). The villain Prometheus used it as a base of operations and the White Martians used it to hide their invasion fleet. They were later imprisoned there by the Martian Manhunter using Superman's Phantom Zone Projector.

    The Phantom Zone has not just been used as a prison or a place to hide. Superboy used it to save the life of the hero Mon-El when he was dying from lead poisoning, since time does not pass in the Phantom Zone, and there he would not succumb to his illness.

    In the Pre-Crisis DC Universe, while in the Zone one does not require sustenance and becomes telepathic; they are able to observe the normal universe, but are unable to interact with it.

    Superman once possessed an arrow that would trap whoever it struck in the Phantom Zone, Roy Harper then stole it but never used it rather passing it down to his successor Mia Dearden who used it to entrap Superboy-Prime. He proved to be too powerful and managed to break free of the Phantom Zone.

    After spending centuries in the Phantom Zone, Cyborg Superman discovered The Phantom Zone is the projection of a living mind. The mind of a god(Aethyr) more powerful than most could perceive.

    Inmates or Other Inhabitants

    Phantoms: Hate that others use their dimension as a prison where their worst criminals are imprisoned and so they seek revenge on those responsible.

    General Zod: Perhaps the most famed criminal in the Phantom Zone he is the one most commonly portrayed in television and movies. He is seen as the one who destroyed Krypton and for that reason was sentenced to dwelling in the Phantom Zone for eternity. While there he and Ursa had a child, Lor-Zod who eventually managed to be free of the Phantom Zone.

    Ursa: Originally banished to the Phantom Zone with Zod and Non. Ursa is now General Zod's lieutenant on New Krypton. She is the mother of Lor-Zod (Chris Kent)

    Jax-Ur: The self-proclaimed \"worst criminal in the Phantom Zone\" he is the first to actually be exiled to it. The Kryptonians did this because of the fact that he performed illegal experiments that resulted in the destruction of one of Krypton's moons.

    Mon-El: Mon-El, a traveling companion of Superboy once contracted lead poisoning and though he was temporarily granted a cure it eventually began to wear off. So Superboy placed him in the Stasis Zone (only later realizing what it was) where Mon-El remained so that he could continue living.

    Lara Lor-Van: It has been stated that Jor-El have broken her free multiple times from the zone in the new 52. Presumably for murder.

    Other Media

    In Smallville, the Phantom Zone is a prison that can only be accessed through crystals. Jor-El imprisoned the worst prisoners from all the 28 known galaxies there and when he died with Krypton he sent his apprentice, Raya there in case anything should happen, to keep the prisoners in check.

    In the Phantom Zone, prisoners who spend enough time in there become Phantoms, beings that can possess others and are only harmed by Jor-El's crystal. Also it seems Kryptonians (and perhaps other species) become powerless in the Phantom Zone.

    Some ways to create portals to the Phantom Zone are through bracelets possessed by General Zod and his disciples, the Fortress of Solitude, and with blood of the House of El.

    When Clark opened the gateway he accidentally released several criminals from the Phantom Zone onto earth where they murdered many and Clark made it his personal mission to send all criminals back to the Phantom Zone (with the crystal) or kill them.

    Beings who were known to at least at some time be imprisoned in there were:

    Kal-El: Imprisoned there by General Zod when he refused to become his servant, accidentally released many other criminals to wreak havoc on Earth.

    Raya: The \"Gatekeeper\" of the Phantom Zone, she was the apprentice of Jor-El and imprisoned there to save her from Krypton's destruction and to watch the criminals.

    General Zod: Destroyer of Krypton, he was trapped there but freed by the joint efforts of his Disciples, Brainiac and Kal-El (who unleashed him unintentionally). He was eventually sent back to the Phantom Zone after being \"torn out\" of his vessel, Lex Luthor, when the crystal was put in the palm of his hand by Kal-El.

    Nam-Ek: Kryptonian. The male Disciple of Zod. He was sent into the Phantom Zone by Kal-El where he was eventually killed by Raya.

    Aethyr: Kryptonian. The female Disciple of Zod. She was sent into the Phantom Zone by Kal-El but what happened since is unknown.

    Gloria: Her powers are similar to that of Poison Ivy and she was imprisoned for killing her whole urban planet with the plant life that she manipulates. In Smallville she stole power from males by using her plants, plants that could harm Kal-El. She was electrocuted by Kal-El and killed.

    Baern: He became a Phantom in the Phantom Zone and on Earth possessed a boy from the East Coast. He could sense and absorb energy, usually radioactive, and expel it in powerful blasts. He fought both Raya and Kal-El eventually gaining power from a limitless power source, Brainiac. He then killed Raya but was sent by to the Phantom Zone by Kal-El.

    Aldar: He was found by Kal-El in Seattle as he had killed thirty or so people when he ripped out the bones and feasted on their marrow. He appears to be far stronger than Kal-El and was about to kill Kal-El when the Martian Manhunter killed him.

    \"Dr. Hudson\": A Phantom. He attempted to possess Kal-El, but his Kryptonian nature made it a battle for the Phantom to possess Kal-El. \"Dr. Hudson\" had to convince Kal-El, his life was a lie, so that he would give up on it, but the Martian Manhunter helped Clark expel the Phantom and then sent him back to the Phantom Zone.

    Titan: He is a warrior who kills for sport. He was put in an illegal cage match, life or death, gladiatorial combat arena where he killed \"meteor-freaks\" from Belle-Reve. Kal-El wished to fight him and when there fight came, Titan seemed to be far stronger than Kal-El but eventually Kal-El overpowered him after a huge battle, and for the first time he wanted to kill and Titan was impaled on the own spike that he kept on his wrist to impale his victims.

    Bizarro: Phantom. He was created by Kryptonians but he would not be complete until he had bonded with a Kryptonian. On Earth he killed many civilians as they were inadequate as hosts for him. He nearly killed the Martian Manhunter and then proceeded to pass through Kal-El, becoming just like him, \"just a little more bizarre\". The two fought and Bizarro was impaled but survived to fight Clark again. With the sage advice of Martian Manhunter, Kal-El learnt that though Kryptonite makes Bizarro more powerful the sun makes him weaker. So Kal-El and the Martian Manhunter worked together to send Bizarro into the sun, where it is presumed he died.

    In the book \"The Last Days of Krypton\" Jor-El uses a series of crystals during a solar flare of the red sun Rao. He rips a hole in the space time continuum and after doing a test he gets sucked in. Eventually Lara comes in and finds Jor-El and helps her reverse the polarity of it and it shoots him out.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-126389/","id":126389,"name":null,"issue_number":"283"},"id":42370,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/102295/4335141-phantom%20zone%20%2802%3B%20001%3B%2001%29.png","image_tags":"All Images,Phantom Zone,Wiki Subs"},"name":"Phantom Zone","site_detail_url":"https://comicvine.gamespot.com/phantom-zone/4020-42370/","start_year":"1961"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42378/","count_of_issue_appearances":232,"date_added":"2008-06-06 11:27:49","date_last_updated":"2020-11-15 12:29:16","deck":"The old HQ of the Fantastic Four on 42nd and Madison Avenue in New York City.","description":"

    This had been the homebase of the Fantastic Four for quite some time, until the team returned to their original headquarters at the Baxter Building.

    History

    The headquarters of the Fantastic Four after the destruction of the Baxter Building original at the hands of Kristoff Vernard, occupying the same lot as the Baxter Building itself. It was the team's main base of operations until his apparent death at the hands of Onslaught. After the disappearance of the Fantastic Four and the Avengers, it became the headquarters of the Thunderbolts until the destruction of the building, when a vacant lot was left. Over the years it was the target of different attacks against the First Family, such as the one that occurred in the Infinity Wars, which destroyed the upper floors of the building. After the reconstruction of the same, with the arrival of Onslaught they were demolished again and later readapted by the Thunderbolts until the destruction of the building and the move of this team to a new base of operations.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-22165/","id":22165,"name":"Editori-Al; To Sacrifice My Soul; Annihilation","issue_number":"2"},"id":42378,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/95232-83724-four-freedoms-plaza.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/95232-83724-four-freedoms-plaza.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/95232-83724-four-freedoms-plaza.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/95232-83724-four-freedoms-plaza.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/95232-83724-four-freedoms-plaza.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/95232-83724-four-freedoms-plaza.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/95232-83724-four-freedoms-plaza.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/95232-83724-four-freedoms-plaza.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/95232-83724-four-freedoms-plaza.gif","image_tags":"All Images,Four Freedoms Plaza"},"name":"Four Freedoms Plaza","site_detail_url":"https://comicvine.gamespot.com/four-freedoms-plaza/4020-42378/","start_year":"1982"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42416/","count_of_issue_appearances":52,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-04-24 04:44:42","deck":"Located in Space Sector 1760, the planet Daxam originated as a colony of Kryptonians who left Krypton to explore the universe. It is the homeworld of Mon-El, Sodam Yat and Andromeda.","description":"

    Millennia ago, a group of Kryptonians left Krypton to wander the universe in exploration. An astronomer, Val-Or, discovered a distant sun (which was named after him). Eventually journeying to Val-Or's star system, the explorer, Dax-Am (who also discovered Imsk, Durla and Schwar) founded the planet which was named after him. The Kryptonian colonists were able to mate with the natives and so interbred to create a new species, Daxamites. After several generations, the Daxamites forgot about their Kryptonian origins.

    Eventually, Daxamites decided to expand in the universe. Young Zax Vane led a peaceful exploration to several worlds including Rann, Korugar and Krypton. During their exploration of the universe, the Daxamite explorers discovered they had great powers under a yellow sun. And, unlike Kryptonians, Daxamites could breed with some other humanoid races.

    One explorer, Bal Gand, visited Earth and fell in love with Juyu, a native. They conceived a child and Gand left Earth, fearing what would might happen by raising a Daxamite baby in Earth's primitive culture. When Bal Gand returned to Daxam, she kept her ship ready for a return voyage to Earth, worried that her mixed-race child might not be accepted on Daxam. Bal Gand's descendants were born with a natural curiousity about the universe.

    Xenophobia grew strong in the other Daxamites, however. A Science War broke-out over the issue, and cost the lives of a quarter of the total population. Over the years, this fostered a Sorrow Cult, who feared all things alien. Over hundreds of years, their leader altered written history to omit the Science War and any relation to Krypton.

    Young Lar Gand and his friend Van discovered Bal Gand's old ship. The Sorrow Cult chased them, and Lar fled inside the ship, which followed its preprogrammed course back to Earth. While sleeping on the trip, Lar learned of Krypton, and when he arrived on Earth, his memory was clouded, and he believed he had come from Krypton, not Daxam. Lar was named Mon-El, being mistaken for a Kryptonian by a young Clark Kent who wished for Lar to be his brother from Krypton. When exposed to lead, however, Mon-El regained his memory, but Clark was forced to project him into the Phantom Zone to save his life until a cure for the lead poisoning could be discovered.

    Sodam Yat grew up on Daxam as well. This was a tough life for Sodam who was interested in space and alien life. This also brought him into conflict with his parents. When he was about 8 years old he nursed a crashed alien back to health and the two became close friends. When his parents found out, the alien was captured and killed. Sodam's parents put him through psychiatric conditioning to help him get over his fascination with space. This worked until Sodam took a trip the museum, where he saw his alien friend stuffed and made to look evil. From then on, he put on an act for his parents, but he spent his spare time rebuilding his friend's spaceship. The day that he was going to leave Daxam, was the day he was offered a Power Ring to join the Green Lantern Corps.

    The people of Daxam encountered earthlings during the Invasion event, when a number of alien worlds took an interest in Earth for it’s propensity to breed numerous super-powered beings. The Dominators, looking to create an army for their own purposes, contacted the Gil’Dishpan, the Khunds, the Thanagarians, the Durlans, the Okaarans, the Psions, and the Daxamites. All species agreed to invade Earth, except the Daxamites who sent an observation team, refusing to take part in any of the fighting.

    Once the invasion force had invaded Australia, the Daxamite group began to exhibit their yellow-sun activated powers. The seven of them attacked Superman, beating him nearly senseless. They fought for several minutes but being exposed to the high contents of lead in Earth’s atmosphere left the Daxamites dying. Only the quick thinking of Superman saved them.

    The Daxamites realized they were on the wrong side. One of them, Kel Gand, sacrificed himself to radio the other Daxamites to involve itself in this unjust invasion. Many Daxamite vessels intercepted the Alliance warships and attacked, using their new found powers. They turned the tide of the invasion.

    During the war with Imperiex, Daxam was attacked by dozens of Imperiex Probes, which were responsible for killing hundreds of Daxamites. The Justice Society of America and others, traveled to Daxam and liberated the planet without suffering a single lose of life.

    Later, Daxam was taken over by the galactic despot known as Mongul. Armed with a handful of Yellow Power Rings, Mongul made Daxam the new base of operations for the Sinestro Corps. Green Lanterns Arisia and Sodam Yat flew to Daxam to save the people from Mongul. Sodam realized the only way to save Daxam was to get the people to fight for themselves. Sodam flew into Daxam's red sun and infused it with the power of Ion, changing it from a red sun into a yellow sun. This act gave the Daxamites their inherent super-powers. It seemingly cost Sodam Yat his life, but the people of Daxam now had the power to defend themselves.

    The Future of Daxam

    By the latter part of the 30th Century, Daxam's sun is once again red. It is not as yet, known when or how this happened. It also appears that the major Xenophobia that the people once had is now gone. In fact, Daxam is considered to be the leaders in the field of xenobiology.

    Once the Legion of Super-Heroes formed, one of their members, Brainiac 5 of Colu, was able to come up with a cure for Daxamite lead poisoning. So, after being forced into exile in the Phantom Zone for approximately 1000 years, Mon-El was freed. Mon-El was possibly the most powerful member of the Legion, and brought great pride to Daxam. When Lightning Lad gave his life fighting Zaryan the Conqueror, Mon-El went to Daxam to try to find a way to bring Lightning Lad back to life.

    Later, during the Great Darkness Saga, Mon-El faced the Master of the darkness alone. The master, Darkseid, defeated Mon-El, putting him into a coma. Darkseid learned of Daxam from Mon-El's mind, and use his god-like powers to switch the locations of Daxam and Apokolips, putting Daxam under Apokolips' yellow sun. The Daxamite's were enslaved under Darkseid's control, and he forced them to use their heat vision to burn the planet, carving it into Darkseid's image. It took all of the Legion, the Legion of Substitute Heroes, The Heroes of Lallor, The Wanderers, Dev-Em, and the Science Police to fight off the Daxamite's and defeat Darkseid.

    It took month's of recovery. The Legion helped repair the world of Daxam, but even though the Daxamite's were mind controlled, the people of the United Planet's still look at them with a little fear.

    Native Powers

    Possessed of genome similar to that of Kryptonians, modified by the Eradicator, become deathly ill when exposed to lead. Thus, the people of Daxam rarely leave their home planet. The Daxamites, when exposed to the radiant light of a yellow sun gain powers and abilities similar to that of Superman, including super strength, flight, near-invulnerability, super-senses, super-speed, arctic breath, heat vision and x-ray vision. Unlike Kryptonians, Daxamites can breed with other species.

    Other Media

    TV

    Supergirl

    Many scenes of planet Daxam have been shown in season 2 of the series. Notable Daxamites, like Mon El, are on the show. The Daxam language is even shown

    \"The
    The Daxamite language

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114628/","id":114628,"name":"Superboy's Big Brother","issue_number":"89"},"id":42416,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/24019/770657-daxam.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/24019/770657-daxam.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/24019/770657-daxam.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/24019/770657-daxam.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/24019/770657-daxam.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/24019/770657-daxam.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/24019/770657-daxam.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/24019/770657-daxam.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/24019/770657-daxam.jpg","image_tags":"All Images,Daxam,Sinestro Corps Sentry"},"name":"Daxam","site_detail_url":"https://comicvine.gamespot.com/daxam/4020-42416/","start_year":"1961"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42436/","count_of_issue_appearances":164,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-04-09 20:54:37","deck":"A place that exists outside of time and space. Created around 5,000 years ago from two rocks. One from Heaven, the other from Hell. Home of the wizard Shazam, The Rock of Eternity was recently destroyed by the Spectre, but has since been reconstituted.","description":"

    History

    Thousands of years ago, a Champion named Vlarem, created a large prison to hold a dragon-like demon named \"Three Faces of Evil\" captive. The prison was made out of both a chunk of Heaven and a chunk of Hell. The prison was called The Rock of Eternity, and it later also became the prison of the Seven Deadly sins (Lust, Gluttony, Greed, Sloth, Wrath, Envy and Pride).

    \"No

    As time went on, Vlarem (now known as the Wizard Shazam), grew weary of battling evil. As the gods who had empowered him where long forgotten, Shazam petitioned for the powers of different gods, and bestowed them upon a new champion. At that time, the Rock of Eternity also became a nexus of power. It channels the power to all those who were empowered by Shazam.

    The Rock was once destroyed by the Spectre and the Sins freed, but has since been re-created and the sins re-imprisoned.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-251584/","id":251584,"name":"Ashcan","issue_number":"1"},"id":42436,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/100647/4145209-494927-scan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/100647/4145209-494927-scan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/100647/4145209-494927-scan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/100647/4145209-494927-scan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/100647/4145209-494927-scan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/100647/4145209-494927-scan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/100647/4145209-494927-scan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/100647/4145209-494927-scan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/100647/4145209-494927-scan.jpg","image_tags":"All Images,Images From Editing,The Rock of Eternity"},"name":"Rock of Eternity","site_detail_url":"https://comicvine.gamespot.com/rock-of-eternity/4020-42436/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42453/","count_of_issue_appearances":13,"date_added":"2008-06-06 11:27:49","date_last_updated":"2014-12-23 03:08:17","deck":"Within the Milky Way Galaxy, the planet of Kalanor is the birthplace of the psychic tyrant Despero.","description":"

    Within the Milky Way Galaxy, the planet of Kalanor is the birthplace of the psychic tyrant Despero.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-4989/","id":4989,"name":"The World of No Return!","issue_number":"1"},"id":42453,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/24019/1095279-kalanor.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/24019/1095279-kalanor.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/24019/1095279-kalanor.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/24019/1095279-kalanor.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/24019/1095279-kalanor.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/24019/1095279-kalanor.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/24019/1095279-kalanor.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/24019/1095279-kalanor.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/24019/1095279-kalanor.jpg","image_tags":"All Images,Kalanor"},"name":"Kalanor","site_detail_url":"https://comicvine.gamespot.com/kalanor/4020-42453/","start_year":"1960"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42470/","count_of_issue_appearances":331,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-08-05 20:07:32","deck":"Ruled by God, filled with angels and people that were good or pious in life, Heaven is where all good superheroes go when they die.","description":"

    This page is meant to list all beings that have ever been within the boundaries of Heaven in a comic book, though it does NOT include beings that were merely \"assumed\" or \"mentioned\" as having gone to/been in Heaven, it only lists those who have been seen in it. The page is broken down by comic book publisher, then series.

    DC/Vertigo

    Swamp Thing (1982-1996)

    List of Rulers, Inhabitants and Visitors

    Swamp Thing Annual (1985-1993)

    List of Rulers, Inhabitants and Visitors

    Hellblazer (1988-Present)

    List of Rulers, Inhabitants and Visitors

    The Spectre (1992-1998)

    List of Rulers, Inhabitants and Visitors

    Preacher (1995-2000)

    List of Rulers, Inhabitants and Visitors

    Lucifer (2000-2006)

    List of Rulers, Inhabitants and Visitors

    Swamp Thing (2004-2006)

    List of Rulers, Inhabitants and Visitors

    Chaos

    Lady Death: Judgement War #3 (2000)

    Lady Death attacks heaven with her allies. Lucifer masquerades as God, Lady Death sees through his deception and kills him, then she destroys Jehovex Machine. After that Heaven and its angels fell to earth.

    List of Rulers, Inhabitants and Visitors

    Maximum Press

    Avengelyne: Vol 2 #0 (1996)

    List of Rulers, Inhabitants and Visitors

    Currently Unsorted

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-413421/","id":413421,"name":"All right!","issue_number":"2"},"id":42470,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/3090333-angels%202.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/3090333-angels%202.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/3090333-angels%202.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/3090333-angels%202.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/3090333-angels%202.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/3090333-angels%202.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/3090333-angels%202.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/3090333-angels%202.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/3090333-angels%202.jpg","image_tags":"All Images"},"name":"Heaven","site_detail_url":"https://comicvine.gamespot.com/heaven/4020-42470/","start_year":"1937"},{"aliases":"Hades\r\nMakai\r\nMajigen","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42471/","count_of_issue_appearances":1697,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-11-09 01:37:18","deck":"A place where all evil people go after they die and suffer for all eternity for whatever sins they committed during life.","description":"

    Overview

    There are many different Hells, in many different comics, in many different Universes, but you can think of this as the place where each and everyone of them, including Hell and Hades are collected, and broken down for you by universe, than by series.

    Sublocations

    NOTE: Characters that are spoken of as going to Hell, or who rule/live in Hell-like dimensions (such as Hel, or the Brimstone Dimension) are not listed, only those who have been in Hell within a comic book.

    America's Best Comics

    Promethea (1999-2005)

    One of the primary villain groups in the Promethea series are the Demons of the Goetia who all inhabit the multiple-personality disordered Mayor Sonny Baskerville in classic \"Legion\" style. However, while they are in his mind, they are still in Hell.

    List of Rulers, Inhabitants and Visitors

    Antarctica Press

    Warrior Nun Areala (1994-2006)

    Nemesis and sometimes ally of Warrior Nun Areala is Lillith, the Demon Princess who rules over her own corner of Hell.

    List of Rulers, Inhabitants and Visitors

    Avatar Press

    Pandora (1997-2007)

    Pandora frequently visits Hell because many demons reside there. It is her job to sent the demons back to Pandora's Box.

    List of Rulers, Inhabitants and Visitors

    Chaos! Comics

    Evil Ernie: Revenge (1994-1995)

    Lady Death's earthly beginnings as Hope came to an end when she was taken to Hell by demons to save herself from burning at the stake. From there she charges Evil Ernie to commit murder in her name and to fill her Endless Graveyard with the souls of all the living. Purgatori was taken to hell by Lucifer at her own request. Ernie visits Hell in his dreams and the dreams of others so technically never goes to hell itself as far as has been shown in print.

    List of Inhabitants and Visitors

    Lady Death (1994-2000)

    List of Rulers, Inhabitants and Visitors

    Purgatori: (1996-2000)

    List of Rulers, Inhabitants and Visitors

    DC/Vertigo

    Note: Vertigo is listed here because some of the books under its imprint use some variation of the DCU Hell, however, Wildstorm is in its own section as it is an imprint independent of DC.

    Swamp Thing (1982-1996)

    List of Rulers, Inhabitants and Visitors

    Swamp Thing Annual (1985-1993)

    List of Rulers, Inhabitants and Visitors

    Secret Origins (1986-1990)

    List of Rulers, Inhabitants and Visitors

    Hellblazer (1988-ongoing)

    List of Rulers, Inhabitants and Visitors

    The Sandman (1989-1996)

    \"Once upon a time, there was a place that wasn't a place. It had many names: Avernus, Gehenna, Tartarus, Hades, Abaddon, Sheol... It was an inferno of pain and flame and ice, where every nightmare had come true long since. It was not considered a pleasant place by the majority of its inhabitants; however being dead, and being there (as they imagined) against their will, their opinions counted for little. And indeed, had Hell been pleasant, they would have felt cheated: they were there for pain, for suffering, for torment. Which they received in abundance. The other inhabitants of this place were not dead; however, neither were they alive, in any biological sense of the word. Humanity called them demons without understanding what it had named. There was little that demonkind had in common with the legions of damned souls with whom they shared the infernal marches. However, they were all agreed on one thing. This was as bad as it got. It couldn't get any worse.\" -Excerpt taken from Neil Gaiman's The Sandman #22.

    This series is where the Hell that became famous throughout DC and Vertigo comics of the 90's began, in issue 4 of the Sandman, Dream is forced to go to Hell to retrieve his helm. It is that Hell which was continuously used through many comics, usually just cameo appearances, until it met its end in Lucifer. The Hell was a place of many wonders, from the forest of suicides, to the cells where those cursed by the \"gods\" were kept. From the demons that lived within it, to the Damned that were tormented forever, it was quite a complicated place.

    Another thing about this Hell is there was an entire monarchy, and unlike it most universes, Lucifer/Satan/The Devil was not the sole ruler of Hell, yes he was one of them, but it was a Triumvirate and Azazel and Belial ruled at his sides, splitting the kingdom in three. Eventually in the series however, Lucifer grows tired of ruling over Hell and retires, emptying the realm and passing on the key to Dream who then is met with numerous contenders for the possession of the Key. In the final end he is forced to give it to Duma and Remiel by order of Yahweh and the two angels are left to rule over it, though they try to distance themselves from the scum that inhabits the realm. This is the Hell that is further established in Sandman's spin-off, Lucifer (see below).

    List of Rulers, Inhabitants and Visitors

    The Books of Magic (1990)

    List of Rulers, Inhabitants and Visitors

    The Demon (1990-1995)

    Kid Eternity (1991)

    List of Rulers, Inhabitants and Visitors

    The Spectre (1992-1998)

    List of Rulers, Inhabitants and Visitors

    \"Shathan:
    Shathan: Lord of Lies

    The Phantom Stranger (1993)

    List of Rulers, Inhabitants and Visitors

    Starman (1994-2001)

    List of Rulers, Inhabitants and Visitors

    The Books of Magic (1994-2000)

    List of Rulers, Inhabitants and Visitors

    House of Secrets (1996-1998)

    List of Rulers, Inhabitants and Visitors

    Preacher Special: Saint of Killers (1996)

    When we first see this Hell it is being run by two down-and-out \"deities\" playing poker, The Devil and The Angel of Death. Things take a turn for the worse when the burning fires of Hell die out and in their place comes a cold, harsh winter...the Saint's hatred-filled soul had just entered the Gates. The Devil couldn't allow this to stand and he went to the Saint, he whipped the Saint for hours and hours, trying to beat the hatred out of his soul but to no avail, the Saint couldn't stop hating and so Hell was temporarily out of order.

    The Angel of Death came to a solution, and had his sword melted down into guns and the Saint became the new Angel of Death and as he left Hell, the inferno returned. The Devil shouted his relief (and insulted the Saint) only to get shot through the head, leaving this restored Hell without a devil to watch over it. How this impacted the realm was never shown.

    List of Rulers, Inhabitants and Visitors

    Sandman Presents: Lucifer (1999)

    Spinning out of The Sandman, Hell is briefly glimpsed in this bridge between The Sandman and Lucifer but merely as a place Lucifer goes to gain unrelated information from the new Keyholder, Duma.

    List of Rulers, Inhabitants and Visitors

    Lucifer (2000-2006)

    In Lucifer we pick up where things left off in The Sandman, with Remiel and Duma ruling over Hell and Remiel is shown to quickly be tainted by the whole experience and often tries to manipulate events to kill Lucifer. However, things begin to change in Hell when a faction of demons believe if they could get Lucifer to return, he would save them and return the dominion to its former glory.

    Lucifer does not take kindly to their trying to manipulate him and destroys them and their efforts but events were set in motion and one of the Damned slowly gains status in Hell, Christopher Rudd. Due to the chaotic events brought about by Yahweh abandoning the universe, Hell is met with major re-working and Rudd becomes the new possessor of the Key to Hell and creates his own Army of the Damned with intent to take down Heaven.

    But in the end, another army goes after Heaven and Hell is forced to come to their aid. Eventually Christopher Rudd is granted forgiveness for his sins, Hell is dissolved and things are left open to interpretation in how things are recreated in the new universe under its new god, Elaine.

    List of Rulers, Inhabitants and Visitors

    Swamp Thing (2004-2006)

    List of Rulers, Inhabitants and Visitors

    Constantine - The Official Movie Adaption (2005)

    List of Rulers, Inhabitants and Visitors

    House of Mystery (2008-ongoing)

    List of Rulers, Inhabitants and Visitors

    Reign in Hell (2008-2009)

    Provinces of the Infernal Dominion in Reign in Hell

    • Eighth: Err
    • Seventh: Labyrinth
    • Sixth: Ament
    • Fifth: Internecia
    • Fourth: Praetori
    • Third: The Gull
    • Second: The Odium
    • First: Pandemonia

    List of Rulers, Inhabitants and Visitors

    Dark Entries (2009)

    List of Rulers, Inhabitants and Visitors

    Eros Comix

    Alraune (2001)

    List of Rulers, Inhabitants and Visitors

    Heavy Metal

    The Four Horsemen of the Apocalypse (2012-X)

    List of Rulers, Inhabitants and Visitors

    Image Comics

    Spawn (1992-X)

    List of Rulers, Inhabitants and Visitors

    Marvel Comics

    Ghost Rider: The Road to Damnation (2005-2006)

    West Coast Avengers #14-15 (1986)

    West Coast Avengers travel to Hell with the help of Hellstorm and Hellcat to save kidnapped Tigra and Hank Pym from Allatou. They end up on a boat on River of Death that leads to Land Within, what then is revealed to be part of hell. Master Pandemonium followed them to seek his missing soul pieces.

    List of Rulers, Inhabitants and Visitors

    Slingers #10-12 (1999)

    Slingers are pulled to hell to fight Mephisto for Black Marvel's soul.

    List of Rulers, Inhabitants and Visitors

    Marvel Divas (2009)

    Photon, Firestar and Black Cat go to hell to save Hellcat from Hellstorm.

    List of Rulers, Inhabitants and Visitors

    Nickel Editions

    Requiem: Vampire Knight (2000-2009)

    Here hell is another form of afterlife, every one won't end up here, but most of people do. It is mirror image of earth. There are several races here, depending on what they did in life.

    Vampires were cold blooded killers; Centaurs were rapists; Lamias were murder victims; Werewolves were religious fanatics full of hate; Architects were scientist who built weapons; Zombies were ordinary people who were too afraid to do anything with their lives; Ghouls were people who did evil but believed to do good. There were also some demons there.

    List of Rulers, Inhabitants and Visitors

    Claudia: Vampire Knight (2004-2009)

    List of Rulers, Inhabitants and Visitors

    Rebellion

    2000 AD (1977-X)

    Hell is the setting for 2000 AD's newest thrill, Necrophim.

    List of Rulers, Inhabitants and Visitors

    Top Cow

    Inferno: Hellbound (2001-2002)

    A group of criminals are recruited by military to enter the gates of hell in Jerusalem to retrieve a key that closes it. Why criminals? Because an innocent can't enter hell and survive. Mr Black however has his own agenda.

    List of Rulers, Inhabitants and Visitors

    The Darkness Vol 2 ( 2002-2005)

    Jackie remembers pieces of his time in hell.

    List of Rulers, Inhabitants and Visitors

    Universe (2001-2002)

    Hell is only place one can go after life on earth, it's just the natural stage of order. There human souls are currency, harvested and sold as seen fit by it's inhabitants. There is artifact named Rapture that can release ones soul from hell if given hope.

    List of Rulers, Inhabitants and Visitors

    Vampirella / Witchblade (2004)

    Vampirella and Sara Pezzini are pulled to hell. Battle is fought to keep Vampirella from being wed to son of Satan.

    List of Rulers, Inhabitants and Visitors

    Wildstorm

    Dante's Inferno (2010)

    List of Rulers, Inhabitants and Visitors

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-143978/","id":143978,"name":"The Spectre: \"Terror at Lytell's\"","issue_number":"56"},"id":42471,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/661687-hell3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/661687-hell3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/661687-hell3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/661687-hell3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/661687-hell3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/661687-hell3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/661687-hell3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/661687-hell3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/661687-hell3.jpg","image_tags":"All Images,art,Nickel Editions,Requiem"},"name":"Hell","site_detail_url":"https://comicvine.gamespot.com/hell/4020-42471/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42497/","count_of_issue_appearances":501,"date_added":"2008-06-06 11:27:49","date_last_updated":"2018-11-07 14:06:15","deck":"The hometown of the Simpsons.","description":"

    Location

    Springfield's exact location in the United States is never revealed. However, there have been hints pointing out possibilities of the actual location. Springfield is perceived to be located in middle America. However, in some episodes they show Springfield near a very large body of water. Springfield is also surrounded by some mountains and is near a giant gorge. Shelbyville is the neighboring city, and the \"Capital City of the state\" is called \"Capital City\", and is also located near Springfield. In The Simpsons Movie, it is revealed that the four states bordering Springfield are Ohio, Nevada, Kentucky, and Maine, Making it's location a majority of the United States.

    Residents

    742 Evergreen Terrace

    The Flanders' House

    Powers' House

    Springfield Nuclear Power Plant

    The Merchants

    Springfield Elementary Staff & Students

    The Law & Government

    Crime

    The Entertainment

    The Religion

    Elderly & Forgotten at Springfield Retirement Castle

    Everyone Else

    Trivia

    • The Springfield theater is called the \"Googoplex\" - the same word as the mathematical term for the number 10^{10^{100}}.

    • Movies that have been featured at the Googoplex include \"Editor-In-Chimp,\" \"Chocolate 2: The Vanilla-ing,\" \"Wedgie: The Movie\" and \"Final Chapter: A New Beginning.\"

    • Springfield has a strong and bitter rivalry with neighboring city, Shelbyville that dates back to the founders, Jebediah Springfield and Shelbyville Manhattan.

    • The town baseball team are the the Springfield Isotopes.

    • \"Whacking Day\" dates back to May 10, 1775 when Jebediah Springfield was said to have killed all the snakes in Springfield. This was later proven false by Bart Simpson.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-131739/","id":131739,"name":"Lo, There Shall Come...A Bartman!","issue_number":"1"},"id":42497,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/98344-179476-springfield.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/98344-179476-springfield.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/98344-179476-springfield.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/98344-179476-springfield.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/98344-179476-springfield.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/98344-179476-springfield.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/98344-179476-springfield.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/98344-179476-springfield.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/98344-179476-springfield.jpg","image_tags":"All Images,Springfield"},"name":"Springfield","site_detail_url":"https://comicvine.gamespot.com/springfield/4020-42497/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42569/","count_of_issue_appearances":121,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-06-26 22:49:19","deck":"At the edge of the known universe lies the Source Wall also known as the Wall of Souls. Beyond which is the Source, the answer to everything. Trapped on the Source Wall are those that have failed to reach the Source.","description":"

    What is the Source Wall?

    \"Wall
    Wall of Souls

    It can be considered a shared Cosmic Consciousness in the DC Universe, where it is the non-religious equivalent to Buddha nature. It is the \"source\" of all that exists. Alternatively, it can be considered a description of the Creator of the Universe, a science fiction analogue based on Judeo-Christian doctrine. Mostly associated with the New Gods, the Source was the supposed origin of the “god-wave” that is believed to have been responsible for creating and empowering the \"Gods\" of the DC Universe with their divine abilities. It also seems to be partially responsible for the ability of DC residents to develop super-powers, especially those which defy physics. Lying at the edge of the known universe in the Promethean Galaxy is the Source Wall, which protects the Source, and traps all those who attempt to pass beyond it. Very few have interacted with it outside of Highfather of the New Gods; therefore, not much is known concretely about its many aspects.

    \"Superman
    Superman and Darkseid at the Source Wall

    Now that the DC Universe is revealed to be 52 universes it is stated that each reality has a Source Wall separating it from the others with The Bleed in between them. Superman-Prime managed to destroy a Source Wall causing the destruction of Earth-15. The Monitors caution that passing between realities breaks down a Source Wall and eventually other Earths could end up like Earth-15. During the Twilight of the New Gods, it is seen that the New Gods are no longer passing on to the Source and instead they are forming a second Source Wall as the God-Killer is stealing their souls.

    While investigating the death of the New Gods, Metron encountered the Source. The Source revealed it was behind the deaths to build a new \"Fifth World.\" It revealed that the most powerful gods of three pantheons of the Third World--the \"Old Gods\"--attacked it and caused it to split into separate beings. The other being evolved into the Anti-Life entity. In retribution, the Source destroyed the Old Gods and created the New Gods. However, its diminished state caused the New Gods to be flawed. The Source seeks to reunite with its other half and start anew. It has apparently manipulated several beings such as Alexander Luthor and Rip Hunter, as it never resided behind the Source Wall, to create the 52 worlds of the multiverse to ease the reunion.

    Following the Teen Titans defeat of Superboy Prime, he is imprisoned in the Source Wall by Superboy and Supergirl, citing it was the only place they could put him he couldn't break out of, since he has breached both the Phantom Zone and escaped the Green Lantern Corp's custody previously.

    Who Makes Up The Wall?

    1. Yuga Khan: Darkseid's father attempted to breach the Source Wall, however, like many others who have tried, he was imprisoned.
    2. Ligea: Ligea was on the wall and freed by Orion. After her freedom she tricked Orion and tossed him to the wall. Once she escaped the wall her image disappeared.
    3. Orion: Orion was not fully apart of the wall as he was able to escape with the help of the mother box before it closed in on him. He believed he was able to escape because he did not truly intend to breach the wall.
    4. Ares, god of war, once attempted to breach the wall for the powers on the other side by was like all others trapped in it, how he escaped is unknown.
    5. Darkseid: After seemingly killing Supergirl, an enraged Superman seals Darkseid into the Wall. An alternate version of Darkseid later helps Superman and Batman correct their altered timeline and in return Superman removes Darkseid from the Wall.
    6. Superman: When Superman releases Darkseid from the Wall he is thrown in himself, until a group of alternate Supergirls help free him. He is imprisoned again by Desaad, but Batman help to free him.
    7. Gog: The last survivor of the Third World was thrown into the Wall by Superman in order to save the Earth from his influence.
    8. Superboy-Prime: After attacking the Teen Titans, he is sealed in the Wall as the only means to finally imprison him.
    9. Doctor Doom: He is sealed in the Wall during JLA/Avengers.
    10. Relic: At the climax of Lights Out, Relic is taken into the Wall by Kyle Rayner. While he passes on to the Source, Relic is sealed in the Wall.

    Some have managed to pass the Final Barrier and entered the Source, all viewing it differently:

    1. Lucifer: A huge, yellowish man made of rock.
    2. Hal Jordan/ Spectre: A giant Green Lantern battery.
    3. Barry Allen: Unremembered, his sole purpose was to find a cure for the New God, Orion.
    4. Superboy-Prime: During the events of Countdown, where he was trying to find his own Earth in the Multiverse, the even more powerful Superman-Prime is able to easily blast through the Source Wall with his heat vision and completely destroy whole universes on the way.
    5. Superman: Once mind controlled by Desaad and sent to retrieve the staff of the Highfather of New Genesis in an effort to re-ignite Darkseid's Omega powers that were lost after his time in the Source Wall. While beyond the wall Superman encountered what he thought was Highfather's spirit who guided him back to Batman, Bekka and his staff, allowing Superman to escape.
    6. Lex Luthor: In Justice League Unlimited Lex travels past the Source Wall in order to find the Anti-Life Equation and stop Darkseid's attack on Earth, though Metron warns him that only a 12th level intellect (the highest level in the DCAU) had the slightest chance of surviving, something Metron himself wouldn't risk, Lex on teh other hand calls himself over qualified and leaps into the wall to be confronted with the strange sights and sound on the other side.
    7. Kyle Rayner: At the climax of Lights Out, Kyle took Relic and himself into the Source Wall. While Relic is fused to the Wall, Kyle is able to reach the Source itself. While there, Kyle not only completes his mission to replenish the Emotional Spectrum, he also inadvertently alters the Source, leading to the creation of his enemy Oblivion, and the taking of the Life Equation into himself.

    Alternate Versions

    New Teen Titans/Uncanny X-Men: Apokalips now

    In the non-canon story of the meeting between the New Teen Titans and Uncanny X-Men, the Source Wall played a role similar to the M'Kraan Crysta l and served as the barrier which the Phoenix Forced live behind, only from the perspective of the Fourth World. As a part of his ploy to conquer Earth, Darkseid had first absorbed the X-Men's memories of Phoenix before collecting residue and data from sites where it had manifested in the past (like in New Mexico, though that site was ultimately foiled) before he summoned a Dark Phoenix from beyond the Source Wall. Before this, he had Metron enter the Wall, leaving his Chair behind, thinking him gone for good. Ultimately Darkseid is defeated and a sliver of Jean Grey awakened in Dark Phoenix who proceeded to attack Darkseid before carrying him to the wall, leaving him embedded in it while Metron emerges from it and reclaims his chair, claiming it was an interesting experience.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-18281/","id":18281,"name":"Gulliver Effect!","issue_number":"15"},"id":42569,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/799554-gog_source_wall.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/799554-gog_source_wall.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/799554-gog_source_wall.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/799554-gog_source_wall.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/799554-gog_source_wall.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/799554-gog_source_wall.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/799554-gog_source_wall.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/799554-gog_source_wall.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/799554-gog_source_wall.jpg","image_tags":"All Images,Gog,Source Wall"},"name":"Source Wall","site_detail_url":"https://comicvine.gamespot.com/source-wall/4020-42569/","start_year":"1978"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42665/","count_of_issue_appearances":467,"date_added":"2008-06-06 11:27:49","date_last_updated":"2021-04-02 04:40:23","deck":"Madripoor is a fictional island and city-state in Southeast Asia in the Marvel Universe. It is located in the Strait of Malacca - between Singapore and the island of Sumatra.","description":"

    Madripoor

    Madripoor is a small island nation in Indonesian archipelago. Like Genosha, Madripoor was a sanctuary for pirates many years ago. In fact the pirate ethic has shaped Madripoor's history and society. Its recently deceased ruler, Prince Baran, was descended from the freebooters who settled on the island and founded the country. Just as Madripoor's rulers tolerated piracy in the past, its government today has a relaxed policy toward most business dealings that do not threaten the regime's stability. As a result, Madripoor has become one of the business capitals of the Pacific Rim. However, it is also a notorious center for crime, especially the narcotics trade and slavery. Since Madripoor does not permit other nations to extradite criminals, the island has become a refuge for international crime lords and criminal organizations, who make payoffs to the government to ensure good relations.

    Tale of Two Cities

    The capital of Madripoor, also named Madripoor, is divided in two. Madripoor Hightown is one of the worlds wealthiest areas, populated by rich and powerful. Its spectacular architecture and advanced technology make it truly a city of the 21st century. However, Madripoor Lowtown is one of the most impoverished areas in the world. Lowtown is a throwback to the lawlessness of a thousand years ago: a place of rampant crime and depravity where anything can be bought. Yet certain places, such as Wolverine's Princess Bar, have a certain rough charm reminiscent of the exotic settings of old movies.

    Princess Bar

    Amid the squalor of Lowtown, the Princess Bar is an oasis of elegance and style. Frightened by Lowtown's dangerous reputation, tourist avoid the Princess Bar after dark. At night, it becomes a gathering place for local residents from both Hightown and Lowtown. The Princess Bar is also a fine restaurant with cabaret entertainment.

    The bar takes its name from a woman nicknamed 'Princess' who was somehow connected with its previous owner, a mysterious Englishman known as O'Donnell, who is now dead. O'Donnell sold a 50 percent interest in the bar to Wolverine, who became his silent partner.

    Other Media

    The Falcon and The Winter Soldier

    \"No

    We see Madripoor in episode 3 of the The Falcon and The Winter Soldier. Sam, Bucky and Zemo travel to Madripoor in order to find the scientist who has been working on a new super-soldier serum.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-26014/","id":26014,"name":"To the Ends of the Earth","issue_number":"32"},"id":42665,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/98822/3474957-mad.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/98822/3474957-mad.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/98822/3474957-mad.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/98822/3474957-mad.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/98822/3474957-mad.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/98822/3474957-mad.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/98822/3474957-mad.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/98822/3474957-mad.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/98822/3474957-mad.png","image_tags":"All Images"},"name":"Madripoor","site_detail_url":"https://comicvine.gamespot.com/madripoor/4020-42665/","start_year":"1985"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42789/","count_of_issue_appearances":82,"date_added":"2008-06-06 11:27:49","date_last_updated":"2016-07-18 12:14:40","deck":"Camp Hammond is the training base to the recruits of The Initiative, it was built on the location of the Stamford disaster.","description":"

    Camp Hammond is named after Jim Hammond, the original Human Torch and it is where registered heroes are trained.

    Current Staff List

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108003/","id":108003,"name":"Happy Accidents","issue_number":"1"},"id":42789,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2145741-ts.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2145741-ts.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2145741-ts.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2145741-ts.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2145741-ts.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2145741-ts.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2145741-ts.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2145741-ts.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2145741-ts.jpg","image_tags":"All Images"},"name":"Camp Hammond","site_detail_url":"https://comicvine.gamespot.com/camp-hammond/4020-42789/","start_year":"2007"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42971/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:49","date_last_updated":"2015-11-04 21:03:34","deck":"One of the many floating islands on the planet of Demetria. Home of Sephie, who becomes the island's Minister after her father's death.","description":null,"first_appeared_in_issue":null,"id":42971,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/103648-85822-meridian.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/103648-85822-meridian.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/103648-85822-meridian.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/103648-85822-meridian.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/103648-85822-meridian.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/103648-85822-meridian.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/103648-85822-meridian.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/103648-85822-meridian.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/103648-85822-meridian.jpg","image_tags":"All Images,Meridian"},"name":"Meridian","site_detail_url":"https://comicvine.gamespot.com/meridian/4020-42971/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42972/","count_of_issue_appearances":23,"date_added":"2008-06-06 11:27:49","date_last_updated":"2013-09-24 20:34:58","deck":"River in hell.","description":"

    .

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-269218/","id":269218,"name":"Epoxy","issue_number":"1"},"id":42972,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/3333009-river_acheron-gustave_dorecc81_-_dante_alighieri_-_inferno_-_plate_10_canto_iii_-_charon_herds_the_sinners_onto_his_boat.jpg","image_tags":"All Images,Classical Depictions"},"name":"Acheron","site_detail_url":"https://comicvine.gamespot.com/acheron/4020-42972/","start_year":"1968"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42973/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:49","date_last_updated":"2015-11-04 21:01:28","deck":"A planet on the edge of the bleak zone in the Sigilverse (Bright Universe). Demetria's most notable feature is its floating planets. Primary among these are Meridian and Cadador.","description":null,"first_appeared_in_issue":null,"id":42973,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/103239-109431-demetria.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/103239-109431-demetria.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/103239-109431-demetria.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/103239-109431-demetria.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/103239-109431-demetria.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/103239-109431-demetria.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/103239-109431-demetria.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/103239-109431-demetria.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/103239-109431-demetria.jpg","image_tags":"All Images,Demetria"},"name":"Demetria","site_detail_url":"https://comicvine.gamespot.com/demetria/4020-42973/","start_year":null},{"aliases":"Otherplace","api_detail_url":"https://comicvine.gamespot.com/api/location/4020-42990/","count_of_issue_appearances":232,"date_added":"2008-06-06 11:27:49","date_last_updated":"2017-08-10 03:08:35","deck":"Limbo is a hellish dimension inhabited by demons, most often associated to Catholicism.","description":"

    Overview

    Limbo is sometimes referred to as \"Otherplace\" and it is a pocket dimension where the laws of nature are mainly magic. Its appearance is that of a solid land where gravity still has a hold but the sky suffers from an absence of stars. The general landscape changes with each ruler usually very mountainous terrain.

    In Dante's Divine Comedy Limbo is described as the first circle of hell.

    Limbo In Marvel Comics

    Limbo is first shown in Uncanny X-Men #160, when its ruler Belasco kidnaps Illyana Rasputin to Limbo and when the X-Men rescue her, she is seemingly aged several years. In reality, during the moments they lost her grasp, those several years really passed for her, such is the magic of time in Limbo.

    Those that dwell within its boundaries are a vast variety of demons of all shapes and sizes who all have some sort of magical skill. Time is peculiar in this dimension as the present is non-existent and can only be stated to be so by an individual. Limbo is also spotted by magical \"stepping discs\" which travel through time as well as space allowing a traveler, if he or she could control them, to be anywhere instantly. As an adolescent, Illyana developed the mutant ability to control these discs, giving her a natural affinity to Limbo. The farther the jump in time or space she tried to make with the discs though, the less accurate she was able to be.

    The beings of Limbo will blindly serve their master who is most commonly a Supreme Sorcerer, but if not kept in check they may betray their overlord or plague other realities. The appearance of Limbo can change quite drastically based on whatever its ruler fancies or even sometimes based on their unconscious desires.

    Also, if a human enters Limbo it is considered inevitable that eventually they shall gain demonic physical aspects (i.e. horns, tails, hooves, etc) and though this transformation will give them mastery over sorcery it typically costs the person their souls (examples are Magik and the Bogeyman

    Limbo is kept alive by what appears to be a giant animal heart hidden deep beneath its surface in a cavern. But truthfully it is simply a small deposit of promethium that would cause Limbo to disappear if it was removed.

    Magik's Soulsword has become a symbol of the ruler of Limbo.

    Rulers of Limbo

    • Belasco: He is not as savage as the other demons and has a more human appearance, perhaps meaning that he was once human, he is the longest-running known ruler of Limbo and recently tried to claim it as his own again and kidnapped the students at the Xavier Institute but this attempt was halted.
    • Witchfire: The daughter of Limbo's former ruler Belasco. She recently tried to claim her fathers place at the Hell Lords' table by taking over Limbo for herself. She was defeated by the newly resurrected Magik and the New X-men team. She is currently trapped in the Elder God's dimension along with several Bloodstones.
    • Illyana Rasputin: She was kidnapped by Belasco as a child and after learning from him she eventually overthrew him to become the ruler of Limbo. She has the ability to leave at will but chose to rule it instead, until she died of the Legacy Virus. She has recently returned when Belasco tried to reclaim Limbo and has now retaken the throne.
    • Sym and N'astirh: These two were of the greatest demons inhabiting Limbo, S'ym being the master of physical power and N'astirh of magical power. The two became servants of Belasco and then Illyana but betrayed Illyana after her temporary absence. They then crossed into Earth where they wreaked havoc after fooling Illyana into making a permanent portal into the Earthly realm (see Inferno). N'astirh died int his attempt and S'ym was later killed by Darkoth. They were recently seen as the servants of Illyana yet again now that she has retaken the throne, but this has been left unexplained.
    • Doctor Doom: Victor von Doom temporarily took over Limbo when he wished to steal its source, the deposit of promethium, which he wished to use to permanently power his Earthly nation of Latveria.
    • Darkoth: Darkoth ruled Limbo for an unknown period of time and at this time also possessed the Soulsword that he had taken from Doctor Doom.
    • Margali Szardos: She stole the Soulsword from Kitty Pryde so that she could become the greatest follower of The Winding Way and also used it to take over Limbo.
    • Amanda Sefton: Jimaine Szardos took the Soulsword from her mother and became the ruler of Limbo for some time, taking the name Magik as Illyana had before her. She eventually lost control of Limbo when Belasco banished her, after Illyana regained control she found she was unable to return to Limbo.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-12391/","id":12391,"name":"Beyond His Imagination","issue_number":"99"},"id":42990,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/290147-75597-limbo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/290147-75597-limbo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/290147-75597-limbo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/290147-75597-limbo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/290147-75597-limbo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/290147-75597-limbo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/290147-75597-limbo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/290147-75597-limbo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/290147-75597-limbo.jpg","image_tags":"All Images,gallery"},"name":"Limbo (hell)","site_detail_url":"https://comicvine.gamespot.com/limbo-hell/4020-42990/","start_year":"1972"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-43027/","count_of_issue_appearances":42,"date_added":"2008-06-06 11:27:49","date_last_updated":"2011-12-05 20:13:35","deck":"The plane on which the First dwell in the Sigilverse (Bright Universe). The city of Elysia was split in two by Altwaal placing the Eidolon in between, keeping Houses Dexter and Sinister separate.","description":"

    Elysia is the home planet of the Firstand is an extremely rich and beautiful place that would make mortals cry by the simple sight of it. Its food is also forbidden to mortals as their senses are not capable enough to handle it. Elysia is also very difficult to locate. Not even extremely advanced technology, such as the Negation's tracking devices, can locate it. Also this plane of existence is reserved only for the First, mortals have no means of getting here without the aid of a First, which also includes the newly created Sigil-Bearers who's power rivals the self-proclaimed Gods. Solusandra, who created the First, said Elysia is actually quite easy to locate, if one knows where to look. She stated that you must imagine yourself in the center of all creation when teleporting in order to even have a chance of arriving on Elysia. Elysia has been used in both times of peace and war for the First, but was eventually split in two by Altwaal creating House Dexter and House Sinister. If a First wants to cross from one House to another, they must traverse through the Eidolon Rift which diminishes their power greatly. Elysia seems to follw the normal laws of physics, such as gravity. It is unknown how large the planet of Elysia is or how much of it they use, as most of the stories seem to take place in their main city. There does not seem to be a name for this city other than Elysia and it is uknown if any other cities exist on the planet and if so, what they would be called.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-126222/","id":126222,"name":null,"issue_number":"1"},"id":43027,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15723/343256-58406-elysia.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15723/343256-58406-elysia.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15723/343256-58406-elysia.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15723/343256-58406-elysia.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15723/343256-58406-elysia.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15723/343256-58406-elysia.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15723/343256-58406-elysia.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15723/343256-58406-elysia.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15723/343256-58406-elysia.jpg","image_tags":"All Images,Elysia"},"name":"Elysia","site_detail_url":"https://comicvine.gamespot.com/elysia/4020-43027/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-43036/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:49","date_last_updated":"2015-11-04 21:40:24","deck":"A massive, and mostly artificial, island floating in the skies above Demetria. Torbel falls into the ocean after Ilahn of Cadador enforces his trade embargo on the island, stopping shipments of ore.","description":null,"first_appeared_in_issue":null,"id":43036,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/104268-167969-torbel.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/104268-167969-torbel.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/104268-167969-torbel.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/104268-167969-torbel.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/104268-167969-torbel.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/104268-167969-torbel.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/104268-167969-torbel.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/104268-167969-torbel.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/104268-167969-torbel.jpg","image_tags":"All Images,Torbel"},"name":"Torbel","site_detail_url":"https://comicvine.gamespot.com/torbel/4020-43036/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-43052/","count_of_issue_appearances":9,"date_added":"2008-06-06 11:27:49","date_last_updated":"2015-01-21 17:12:40","deck":"Capital of Saudi Arabia.","description":"

    .

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-21614/","id":21614,"name":"I, Magneto","issue_number":"150"},"id":43052,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/4343170-batha_street%2C_riyadh%2C_saudi_arabia.jpg","image_tags":"All Images"},"name":"Riyadh","site_detail_url":"https://comicvine.gamespot.com/riyadh/4020-43052/","start_year":"1981"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-43053/","count_of_issue_appearances":16,"date_added":"2008-06-06 11:27:49","date_last_updated":"2013-06-18 12:09:44","deck":"A province in Canada","description":"

    Overview

    There has been human habitation in New Brunswick since 6000-8000 BCE, beginning with the native Mi'kmaq, Wolastoqiyuk, and Passamaquoddy populations. First known European activity in the area occurred in 1534, with the arrival of French explorer Jacques Cartier. The area then went largely undisturbed until 1604 when French explorers Pierre du Gua de Monts and Samuel de Champlain established a winter settlement in the area. This marked the beginning of French colonization of the area, establishing it as part of the French province of Acadia for the next 150 years. 1713 marked the beginning of English domination of the region, which was largely completed by 1763 despite native and Acadian resistance. The are was then absorbed into the new English province of Nova Scotia, becoming Sunbury County. Settlement was slow until after the Revolutionary War, when Loyalist refugees flooded the region. Tensions between pre-existing populations and Loyalists spurred the partitioning of Nova Scotia and the creation of the Colony of New Brunswick in 1784. The capital was established at St Anne's Point, now Fredericton. The University of New Brunswick, the first English-speaking university in Canada, and first public university in North America, was established there the following year. A period of sustained and varied immigration followed for several centuries, with Acadian populations returning to the area along with immigrants from England, Ireland, and Scotland. The hotly contested boundary between New Brunswick and the American state of Maine was settled by the Webster-Ashburton Treaty following a brief war in 1842. In 1867 New Brunswick joined with the provinces of Nova Scotia and Canada (now Ontario and Quebec) to form the Dominion of Canada, despite resistance from some inhabitants of the province. As feared by these resistors, New Brunswick underwent economic troubles due to federal policies, as well as the decline of the wooden shipbuilding industry and the Great Fire of 1877. The twentieth century saw recovery in the manufacturing boom and the growth of the railway industry. As in other areas of Canada and the world, setbacks were experienced during the Great Depression, but were largely recovered from during the Second World War and post-war boom. Efforts to integrate the French-speaking Acadian population began in 1960, and resulted in the adoption of French as a second official language with the Official Languages Act of 1969, making New Brunswick the only officially bilingual province.

    The Province

    New Brunswick is one of the three Maritime provinces in Canada. It is the only one of the three to have a significant land border. It is bordered to the north by the Gaspé Peninsula, to the east by the Gulf of St Lawrence and the Northumberland Strait, to the southeast by Nova Scotia, to the south by the Bay of Fundy, and to the west by Maine. It contains major mountain ranges in the form of the Appalachian Mountains and the Notre Dame Mountains, as well as other highlands. Its capital is Fredericton, while its most populous city is Saint John.

    There are just over 750,000 people in New Brunswick. A majority of the population reports their ethnic origin as Canadian, with just over 57% of the population identifying as such. There are also major populations reporting their origin as French, English, Irish, and Scottish, with smaller populations reporting German, Acadian, Native, Dutch, or Welsh origins, and a small fraction of the population claiming Italian, Métis, American or Danish ancestry. Christianity is the dominant religion, with 86% of the population claiming adherence to some denomination.

    A majority of the population speaks English as a first language, while a large minority, about 33%, reports speaking French as a first language. There are a number of other languages identified as native by residents, none of which exceed 0.4% of the population.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-99067/","id":99067,"name":"Wildlife","issue_number":"6"},"id":43053,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124278/2697950-800px_flag_of_new_brunswick.svg.png","image_tags":"All Images"},"name":"New Brunswick","site_detail_url":"https://comicvine.gamespot.com/new-brunswick/4020-43053/","start_year":"1998"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/movie-details/movie-4025-31.json b/samples/api-data/movie-details/movie-4025-31.json new file mode 100644 index 0000000..59b6623 --- /dev/null +++ b/samples/api-data/movie-details/movie-4025-31.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-31/","box_office_revenue":"104454762","budget":"80000000","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71575/","id":71575,"name":"Eliot Ness","site_detail_url":"https://comicvine.gamespot.com/eliot-ness/4005-71575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159708/","id":159708,"name":"Michael O'Sullivan","site_detail_url":"https://comicvine.gamespot.com/michael-osullivan/4005-159708/"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55702/","id":55702,"name":"Organized Crime","site_detail_url":"https://comicvine.gamespot.com/organized-crime/4015-55702/"}],"date_added":"2009-07-08 16:35:16","date_last_updated":"2013-06-03 16:54:46","deck":"Tom Hanks stars in this adaptation of the graphic novel that focuses on a small boy's reaction to his hit-man father's profession.","description":"
    ","distributor":null,"has_staff_review":null,"id":31,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/869074-road_to_perdition.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/869074-road_to_perdition.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/869074-road_to_perdition.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/869074-road_to_perdition.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/869074-road_to_perdition.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/869074-road_to_perdition.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/869074-road_to_perdition.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/869074-road_to_perdition.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/869074-road_to_perdition.jpg","image_tags":"All Images"},"locations":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-55728/","id":55728,"name":"Chicago","site_detail_url":"https://comicvine.gamespot.com/chicago/4020-55728/"}],"name":"Road to Perdition","objects":[],"producers":null,"rating":"4","release_date":"2013-06-03 16:54:46","runtime":"117","site_detail_url":"https://comicvine.gamespot.com/road-to-perdition/4025-31/","studios":null,"teams":[],"total_revenue":"181001478","writers":null},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/movie-details/movie-4025-36.json b/samples/api-data/movie-details/movie-4025-36.json new file mode 100644 index 0000000..454e275 --- /dev/null +++ b/samples/api-data/movie-details/movie-4025-36.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-36/","box_office_revenue":"52300000","budget":"62000000","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48350/","id":48350,"name":"Æon Flux","site_detail_url":"https://comicvine.gamespot.com/on-flux/4005-48350/"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55828/","id":55828,"name":"Clone","site_detail_url":"https://comicvine.gamespot.com/clone/4015-55828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56015/","id":56015,"name":"Cyberpunk","site_detail_url":"https://comicvine.gamespot.com/cyberpunk/4015-56015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55822/","id":55822,"name":"Dystopia","site_detail_url":"https://comicvine.gamespot.com/dystopia/4015-55822/"}],"date_added":"2009-07-08 16:48:54","date_last_updated":"2021-04-24 11:49:59","deck":"A movie that had a comic book tie-in of the same name, published by Dark Horse.","description":null,"distributor":null,"has_staff_review":null,"id":36,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869093-aeon_flux_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869093-aeon_flux_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869093-aeon_flux_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869093-aeon_flux_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869093-aeon_flux_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869093-aeon_flux_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869093-aeon_flux_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869093-aeon_flux_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869093-aeon_flux_poster.jpg","image_tags":"All Images"},"locations":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-57183/","id":57183,"name":"Earth","site_detail_url":"https://comicvine.gamespot.com/earth/4020-57183/"}],"name":"Æon Flux","objects":[],"producers":null,"rating":"PG-13","release_date":"2021-04-24 11:49:59","runtime":"93","site_detail_url":"https://comicvine.gamespot.com/on-flux/4025-36/","studios":null,"teams":[],"total_revenue":"52300000","writers":null},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/movie-details/movie-4025-4.json b/samples/api-data/movie-details/movie-4025-4.json new file mode 100644 index 0000000..ae3289e --- /dev/null +++ b/samples/api-data/movie-details/movie-4025-4.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-4/","box_office_revenue":"251188924","budget":"35000000","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159758/","id":159758,"name":"Alexander Knox","site_detail_url":"https://comicvine.gamespot.com/alexander-knox/4005-159758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5556/","id":5556,"name":"Alfred Pennyworth","site_detail_url":"https://comicvine.gamespot.com/alfred-pennyworth/4005-5556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170492/","id":170492,"name":"Alicia Hunt","site_detail_url":"https://comicvine.gamespot.com/alicia-hunt/4005-170492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170489/","id":170489,"name":"Antoine Rotelli","site_detail_url":"https://comicvine.gamespot.com/antoine-rotelli/4005-170489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1699/","id":1699,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4005-1699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170491/","id":170491,"name":"Bob Hawkins","site_detail_url":"https://comicvine.gamespot.com/bob-hawkins/4005-170491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170487/","id":170487,"name":"Carl Grissom","site_detail_url":"https://comicvine.gamespot.com/carl-grissom/4005-170487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3727/","id":3727,"name":"James Gordon","site_detail_url":"https://comicvine.gamespot.com/james-gordon/4005-3727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1702/","id":1702,"name":"Joker","site_detail_url":"https://comicvine.gamespot.com/joker/4005-1702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170567/","id":170567,"name":"Lawrence the Boombox Goon","site_detail_url":"https://comicvine.gamespot.com/lawrence-the-boombox-goon/4005-170567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3603/","id":3603,"name":"Martha Wayne","site_detail_url":"https://comicvine.gamespot.com/martha-wayne/4005-3603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170490/","id":170490,"name":"Max Eckhardt","site_detail_url":"https://comicvine.gamespot.com/max-eckhardt/4005-170490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170488/","id":170488,"name":"Peter McElroy","site_detail_url":"https://comicvine.gamespot.com/peter-mcelroy/4005-170488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176768/","id":176768,"name":"Swordsman Joker Goon","site_detail_url":"https://comicvine.gamespot.com/swordsman-joker-goon/4005-176768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3602/","id":3602,"name":"Thomas Wayne","site_detail_url":"https://comicvine.gamespot.com/thomas-wayne/4005-3602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5555/","id":5555,"name":"Two-Face","site_detail_url":"https://comicvine.gamespot.com/two-face/4005-5555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8264/","id":8264,"name":"Vicki Vale","site_detail_url":"https://comicvine.gamespot.com/vicki-vale/4005-8264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170493/","id":170493,"name":"Vinnie Ricorso","site_detail_url":"https://comicvine.gamespot.com/vinnie-ricorso/4005-170493/"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56187/","id":56187,"name":"Academy Awards","site_detail_url":"https://comicvine.gamespot.com/academy-awards/4015-56187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55720/","id":55720,"name":"Batman Villains","site_detail_url":"https://comicvine.gamespot.com/batman-villains/4015-55720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56087/","id":56087,"name":"Burtonverse","site_detail_url":"https://comicvine.gamespot.com/burtonverse/4015-56087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-57632/","id":57632,"name":"Henchmen","site_detail_url":"https://comicvine.gamespot.com/henchmen/4015-57632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55702/","id":55702,"name":"Organized Crime","site_detail_url":"https://comicvine.gamespot.com/organized-crime/4015-55702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56019/","id":56019,"name":"Police Misconduct","site_detail_url":"https://comicvine.gamespot.com/police-misconduct/4015-56019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-57333/","id":57333,"name":"Secret Headquarters","site_detail_url":"https://comicvine.gamespot.com/secret-headquarters/4015-57333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55686/","id":55686,"name":"Terrorism","site_detail_url":"https://comicvine.gamespot.com/terrorism/4015-55686/"}],"date_added":"2009-07-08 11:25:01","date_last_updated":"2022-02-26 12:48:01","deck":"The first film in the Batman universe. Featuring Michael Keaton as Batman and Jack Nicholson as the Joker.","description":"

    The movie begins in an alley at Gotham City where two thugs are being attacked by a mysterious figure dressed up as a bat. One thug begs not to be killed, but the figure tells him that he has no intention to kill him. When he asks who he is, the figure replies that he is Batman.

    In the night, the mayor makes a speech of how Gotham is corrupt by the hands of crime boss, Carl Grissom, and because of that, the cops have became corrupt as well. A man named Jack Napier is watching this with Alicia, his boss' mistress. She is worried that they'll be in trouble if Grissom found out about them being together. Napier then leaves afterwards.

    A reporter named Alex Knox is trying to interview a corrupt cop named Lt. Eckhart, but fails. Just then, the latter is confronted by Napier, who reminds him that his problems are their problems. Eckhart remarks that he'll only take orders from Grissom, not to psychos. When Eckhart insults him about being an A-1 boy, Napier pushes him to a wall and has his henchman, Bob, to put him at gunpoint in order to convince him.

    Meanwhile, Knox is talking with reporter Vicky Vale about Batman.

    At the same time, Grissom is upset about how Harvey Dent has a connection to him with Axis Chemicals. When Napier says about going there, Grissom orders him to go to Axis Chemicals. After the meeting, Napier complains about he doesn't want to go there, and Grissom tells him that he needs someone he can trust and that, Napier is his number 1 guy. When Napier leaves, Grissom goes to the phone to call Eckhart.

    In Wayne Manor, a party occurs. Vicky asks a man for Bruce Wayne, but he states that he doesn't know him. Knox is interviewing Commissioner Gordon and the mayor. The former is told by a policeman that Napier is cleaning up Axis Chemicals and that Eckhart didn't tell him about it.

    Vicky and Knox go to a place to see armors. They don't know one, and a man states that he bought is from Japan and reveals that he is Bruce Wayne. Just then, his butler, Alfred, calls him about to go somewhere.

    Bruce is watching the conversation between Vicky and Knox by camera and gets a conversation between Gordon and a policeman about Napier cleaning up Axis Chemicals.

    In Axis Chemicals, Eckhart orders his men to find Napier and kill him. Meanwhile, Napier and his men open a safe to find no papers there. The former realizes that they've been ratted out. Just then, they were attacked by the policemen.

    Gordon arrives to tell Eckhart that he is charge of the investigation, not Grissom. He orders the policemen to take Napier alive and the one who will open fire on him will be in trouble. At the same time, Batman arrives and captures one of the criminals.

    Napier runs around the plant with Batman following him. He tries to kill Gordon, but Batman grabs him. However, Bob points Gordon at gunpoint in order to get Batman to release Napier. Napier points his gun at Batman, but he escapes. Just then, he finds Eckhart and kills him. Napier fires a shot at Batman, but the latter ricochets the bullet to the former's face, causing him to fall to a vat of chemicals. Batman tries to save him, but Napier falls to the chemicals. Gordon tries to get Batman, but he escapes. In the sewers, Napier's hand emerges from the waters.

    Meanwhile, Bruce is having a date with Vicky. At the same time, Grissom is greeted by Napier, who is upset that he betrayed him for being with his mistress. He tries to tell him that they could have a deal, but Napier tells him to call him Joker and reveals his clown-like appearance. He kills Grissom afterwards. Bruce is kissing with Vicky at the stairway. Joker is planning to show himself to Gotham.

    In the morning, Vicky leaves. Meanwhile, Alicia is greeted by Joker and is scared that she fainted.

    Joker has a meeting with the crime bosses and tells them that he is charge of Grissom's empire. When Rotelli refuses to do such orders from him, Joker electrocutes him to death with his joybuzzer, and his men puts all of the crime bosses at gunpoint. Ricorso remarks that he is crazy for what he did. Joker orders the crime bosses to leave. He orders Bob to find the Batman and calls him to be his number 1 guy. Joker begins insulting Rotelli's corpse that he is glad that he's dead.

    Meanwhile, Bruce is putting flowers on a floor. What he didn't know is that Vicky is following him.

    At City Hall, Knox interviews about Grissom's death. Just then, Joker shows up and kills Ricorso by stabbing him in the neck with a feather. He orders the mimes to open fire. Vicky tries to warn Bruce, but he is not hurt and looks at Joker as he leaves.

    Joker is watching the news and is upset of how Batman gets his presses. Bruce is shocked that Joker is still alive after the incident at Axis Chemicals and wants a profile of him.

    Joker is cutting pictures at his table. Just then, Bob shows him photos of Knox and Vicky. Joker begins to fall in love with the latter and orders Bob to get a phone book for her. He dances afterwards.

    In the night, Joker orders the scientists at Axis Chemicals to ship his chemical. In the news, one reporter dies after laughing too much. Just then, Joker shows a commercial of his products with the secret ingredient: Smiley. He reveals of how he those products to kill people with a smile just like what happened to the reporter.

    Bruce is watching this and Alfred gives him a profile of Jack Napier. It is revealed that he begins to commit crimes as a kid and has knowledge of arts and chemistry. Meanwhile, Joker puts on his makeup and Alicia asks him where they are going. He replies about making art.

    In Gotham Art Museum, Vicky is meeting with someone, but after waiting for too long, gets a package to put on a gas mask. Just then, people are knocked out by a gas and Vicky puts on the mask for protection.

    Just then, Joker and his men arrive and vandalize the museum before meeting with Vicky. After scaring her by showing Alicia's face being damaged, Joker attempts to kill her by using acid, but she escapes and throws water at his face. When Vicky tries to comfort him, Joker scares her by showing his clown-like face underneath. Just then, Batman arrives and rescues Vicky. He takes on Joker's men and takes Vicky to the Batcave where he makes her asleep.

    The next morning, the news announces about what are Joker's products to stay away from. Joker is watching this and plans on having Batman killed.

    Bruce goes to Vicky's apartment to tell her the reason why he didn't show up at the Gotham Art Museum. However, Joker and his men arrive. The former is upset that Vicky has run out of him and tells her that bad news: Alicia threw herself out of the window. Just then, Bruce tells Joker a story about a mean kid who is crazy and has his lights out. The latter shoots him, and leaves with his men. Vicky goes to Bruce only to find him gone and that he uses a tray to protect himself. She opens a present from Joker and faints when it shows a hand holding flowers.

    Meanwhile, Bruce is looking at the news about the murder of his parents. At the same time, Joker announces of having a parade tonight. Bruce has a flashback that he, as Napier, is responsible for the death of his parents. Vicky arrives to the Batcave and now knows that Bruce Wayne is Batman.

    As Batman, he goes to Axis Chemicals and destroys it. However, Joker taunts him that he misses him.

    Meanwhile, Joker has drop $20,000,000 to the people and plans to kill them with his gas. However, Batman grabs the balloons and lets them fly away. Joker is complaining of how he could have a vehicle that could let him fly and kills Bob. While his men are causing trouble, Joker orders Batman to shoot him down, but misses the shot, and he shots the latter down.

    When Vicky tries to look for Batman, Joker puts her at gunpoint and orders transportation from Gotham Cathedral. Batman emerges from the wrecked vehicle and follows Joker. When getting to the top of the tower, Joker has his men get Batman while he dances with Vicky.

    After defeating them, Batman punches Joker and plans to have him killed. The latter states that he can't do that because he made him the way he is after the incident at Axis Chemicals. Batman fights Joker and punches him out of the tower. However, he grabs Batman and Vicky down to the ledge of the tower. Joker tries to have Batman and Vicky fall to their deaths. Just then, a helicopter came and Joker plans to leave the two there. While trying to escape, Batman uses his grapple to attach Joker's foot to a gargoyle. Because of this, Joker falls to his death. Batman saves Vicky from falling.

    The police surrounds Joker's corpse and Gordon finds a laughing voice on his pocket.

    Gordon gets a letter about how to use the Bat-like signal to call Batman whenever Gotham City is in danger. Vicky looks at the top of a building to find him standing there with the Bat signal activated.

    ","distributor":null,"has_staff_review":null,"id":4,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/1152186-0abbatman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/1152186-0abbatman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/1152186-0abbatman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/1152186-0abbatman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/1152186-0abbatman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/1152186-0abbatman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/1152186-0abbatman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/1152186-0abbatman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/1152186-0abbatman.jpg","image_tags":"All Images"},"locations":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-57342/","id":57342,"name":"Ace Chemical Processing Plant","site_detail_url":"https://comicvine.gamespot.com/ace-chemical-processing-plant/4020-57342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-31340/","id":31340,"name":"Batcave","site_detail_url":"https://comicvine.gamespot.com/batcave/4020-31340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-55715/","id":55715,"name":"Crime Alley","site_detail_url":"https://comicvine.gamespot.com/crime-alley/4020-55715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-66078/","id":66078,"name":"Flugelheim Museum","site_detail_url":"https://comicvine.gamespot.com/flugelheim-museum/4020-66078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-23611/","id":23611,"name":"Gotham City","site_detail_url":"https://comicvine.gamespot.com/gotham-city/4020-23611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-66000/","id":66000,"name":"Gotham Globe building","site_detail_url":"https://comicvine.gamespot.com/gotham-globe-building/4020-66000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-57341/","id":57341,"name":"Monarch Theater","site_detail_url":"https://comicvine.gamespot.com/monarch-theater/4020-57341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-55767/","id":55767,"name":"Wayne Manor","site_detail_url":"https://comicvine.gamespot.com/wayne-manor/4020-55767/"}],"name":"Batman","objects":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-58688/","id":58688,"name":"BANG! Flag Gun","site_detail_url":"https://comicvine.gamespot.com/bang-flag-gun/4055-58688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-55819/","id":55819,"name":"Bat-Signal","site_detail_url":"https://comicvine.gamespot.com/bat-signal/4055-55819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46297/","id":46297,"name":"Batarang","site_detail_url":"https://comicvine.gamespot.com/batarang/4055-46297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-57354/","id":57354,"name":"Batcomputer","site_detail_url":"https://comicvine.gamespot.com/batcomputer/4055-57354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41463/","id":41463,"name":"Batmobile","site_detail_url":"https://comicvine.gamespot.com/batmobile/4055-41463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-49918/","id":49918,"name":"Batplane","site_detail_url":"https://comicvine.gamespot.com/batplane/4055-49918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-60101/","id":60101,"name":"Gotham Globe","site_detail_url":"https://comicvine.gamespot.com/gotham-globe/4055-60101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-57374/","id":57374,"name":"Joker Venom","site_detail_url":"https://comicvine.gamespot.com/joker-venom/4055-57374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-57343/","id":57343,"name":"Joker's Joy Buzzer","site_detail_url":"https://comicvine.gamespot.com/jokers-joy-buzzer/4055-57343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46369/","id":46369,"name":"Utility Belt","site_detail_url":"https://comicvine.gamespot.com/utility-belt/4055-46369/"}],"producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111163/","id":111163,"name":"Paul Guber","site_detail_url":"https://comicvine.gamespot.com/paul-guber/4040-111163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111164/","id":111164,"name":"Jon Peters","site_detail_url":"https://comicvine.gamespot.com/jon-peters/4040-111164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111165/","id":111165,"name":"Chris Kenny","site_detail_url":"https://comicvine.gamespot.com/chris-kenny/4040-111165/"}],"rating":"PG-13","release_date":"2022-02-26 12:48:01","runtime":"126","site_detail_url":"https://comicvine.gamespot.com/batman/4025-4/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"teams":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-42090/","id":42090,"name":"Gotham City Police Department","site_detail_url":"https://comicvine.gamespot.com/gotham-city-police-department/4060-42090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-65255/","id":65255,"name":"Gotham Globe staff","site_detail_url":"https://comicvine.gamespot.com/gotham-globe-staff/4060-65255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-65393/","id":65393,"name":"Grissom Syndicate","site_detail_url":"https://comicvine.gamespot.com/grissom-syndicate/4060-65393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-58724/","id":58724,"name":"Wayne Family","site_detail_url":"https://comicvine.gamespot.com/wayne-family/4060-58724/"}],"total_revenue":"411348924","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-41467/","id":41467,"name":"Sam Hamm","site_detail_url":"https://comicvine.gamespot.com/sam-hamm/4040-41467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111162/","id":111162,"name":"Warren Skaaren","site_detail_url":"https://comicvine.gamespot.com/warren-skaaren/4040-111162/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/movie-details/movie-4025-52.json b/samples/api-data/movie-details/movie-4025-52.json new file mode 100644 index 0000000..ea202c2 --- /dev/null +++ b/samples/api-data/movie-details/movie-4025-52.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-52/","box_office_revenue":null,"budget":"15000000","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59285/","id":59285,"name":"Albrecht","site_detail_url":"https://comicvine.gamespot.com/albrecht/4005-59285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59236/","id":59236,"name":"Funboy","site_detail_url":"https://comicvine.gamespot.com/funboy/4005-59236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81631/","id":81631,"name":"Gabriel","site_detail_url":"https://comicvine.gamespot.com/gabriel/4005-81631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59260/","id":59260,"name":"Gideon","site_detail_url":"https://comicvine.gamespot.com/gideon/4005-59260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65379/","id":65379,"name":"Myca","site_detail_url":"https://comicvine.gamespot.com/myca/4005-65379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81638/","id":81638,"name":"Sandy Skin","site_detail_url":"https://comicvine.gamespot.com/sandy-skin/4005-81638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58948/","id":58948,"name":"Sarah Mohr","site_detail_url":"https://comicvine.gamespot.com/sarah-mohr/4005-58948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59247/","id":59247,"name":"Shelly Webster","site_detail_url":"https://comicvine.gamespot.com/shelly-webster/4005-59247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59246/","id":59246,"name":"Skank","site_detail_url":"https://comicvine.gamespot.com/skank/4005-59246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59252/","id":59252,"name":"T-Bird","site_detail_url":"https://comicvine.gamespot.com/t-bird/4005-59252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42251/","id":42251,"name":"The Crow","site_detail_url":"https://comicvine.gamespot.com/the-crow/4005-42251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59253/","id":59253,"name":"Tin-Tin","site_detail_url":"https://comicvine.gamespot.com/tin-tin/4005-59253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57039/","id":57039,"name":"Top Dollar","site_detail_url":"https://comicvine.gamespot.com/top-dollar/4005-57039/"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55861/","id":55861,"name":"Afterlife","site_detail_url":"https://comicvine.gamespot.com/afterlife/4015-55861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56207/","id":56207,"name":"Flashback ","site_detail_url":"https://comicvine.gamespot.com/flashback/4015-56207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55702/","id":55702,"name":"Organized Crime","site_detail_url":"https://comicvine.gamespot.com/organized-crime/4015-55702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55709/","id":55709,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/rebirth/4015-55709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56347/","id":56347,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/resurrection/4015-56347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56588/","id":56588,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/revenge/4015-56588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56217/","id":56217,"name":"Sexual Violence","site_detail_url":"https://comicvine.gamespot.com/sexual-violence/4015-56217/"}],"date_added":"2009-07-09 00:11:46","date_last_updated":"2020-06-18 18:00:33","deck":"Eric Draven and his new wife Shelley Webster are murdered in a random act of violence. A year later Eric returns to get revenge on his killers as the Crow.","description":"

    Plot

    Eric Draven and his new wife Shelley Webster are murdered in a random act of violence. A year later Eric returns to get revenge on his killers as the Crow.

    Creation

    This film was made more famous by the death of Brandon Lee (the son of Bruce Lee) who died on set due to a freak accident. A blank shot went into Brandon, killing him. This event gave new life to the Lee family curse and the popularity of the film was boosted. The ending of the film was played out by Brandon's stunt double.

    ","distributor":null,"has_staff_review":null,"id":52,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/869486-crow_ver2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/869486-crow_ver2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/869486-crow_ver2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/869486-crow_ver2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/869486-crow_ver2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/869486-crow_ver2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/869486-crow_ver2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/869486-crow_ver2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/869486-crow_ver2.jpg","image_tags":"All Images"},"locations":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-55783/","id":55783,"name":"Detroit","site_detail_url":"https://comicvine.gamespot.com/detroit/4020-55783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-56282/","id":56282,"name":"Michigan","site_detail_url":"https://comicvine.gamespot.com/michigan/4020-56282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-58136/","id":58136,"name":"North America","site_detail_url":"https://comicvine.gamespot.com/north-america/4020-58136/"}],"name":"The Crow","objects":[],"producers":null,"rating":"4","release_date":"2020-06-18 18:00:33","runtime":"102","site_detail_url":"https://comicvine.gamespot.com/the-crow/4025-52/","studios":null,"teams":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-58854/","id":58854,"name":"Detroit Police Department","site_detail_url":"https://comicvine.gamespot.com/detroit-police-department/4060-58854/"}],"total_revenue":"94000000","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46520/","id":46520,"name":"James O'Barr","site_detail_url":"https://comicvine.gamespot.com/james-obarr/4040-46520/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/movie-details/movie-4025-76.json b/samples/api-data/movie-details/movie-4025-76.json new file mode 100644 index 0000000..030b727 --- /dev/null +++ b/samples/api-data/movie-details/movie-4025-76.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-76/","box_office_revenue":"5735847","budget":"16000000","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47561/","id":47561,"name":"Connor MacLeod","site_detail_url":"https://comicvine.gamespot.com/connor-macleod/4005-47561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58223/","id":58223,"name":"Ramirez","site_detail_url":"https://comicvine.gamespot.com/ramirez/4005-58223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61330/","id":61330,"name":"The Kurgan","site_detail_url":"https://comicvine.gamespot.com/the-kurgan/4005-61330/"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56049/","id":56049,"name":"Immortality","site_detail_url":"https://comicvine.gamespot.com/immortality/4015-56049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56043/","id":56043,"name":"Middle Ages","site_detail_url":"https://comicvine.gamespot.com/middle-ages/4015-56043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-47581/","id":47581,"name":"Quickenings","site_detail_url":"https://comicvine.gamespot.com/quickenings/4015-47581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56025/","id":56025,"name":"World War II","site_detail_url":"https://comicvine.gamespot.com/world-war-ii/4015-56025/"}],"date_added":"2009-07-09 16:09:56","date_last_updated":"2021-01-07 19:44:56","deck":"Connor Macleod is an immortal born in Scotland circa 1518. Shortly after being cast out of his village, he meets another immortal named Ramirez. Ramirez teaches Connor in the ways of the immortals in order so that he can prepare himself for \"The Gathering,\" a battle of the few remaining immortals who compete to the end for \"The Prize.\"","description":null,"distributor":null,"has_staff_review":null,"id":76,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871278-highlander.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871278-highlander.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871278-highlander.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871278-highlander.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871278-highlander.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871278-highlander.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871278-highlander.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871278-highlander.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871278-highlander.jpg","image_tags":"All Images"},"locations":[{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-55777/","id":55777,"name":"Germany","site_detail_url":"https://comicvine.gamespot.com/germany/4020-55777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-41183/","id":41183,"name":"New York City","site_detail_url":"https://comicvine.gamespot.com/new-york-city/4020-41183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/location/4020-55911/","id":55911,"name":"Scotland","site_detail_url":"https://comicvine.gamespot.com/scotland/4020-55911/"}],"name":"Highlander","objects":[],"producers":null,"rating":"4","release_date":"2021-01-07 19:44:56","runtime":"110","site_detail_url":"https://comicvine.gamespot.com/highlander/4025-76/","studios":null,"teams":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57310/","id":57310,"name":"New York Police Department","site_detail_url":"https://comicvine.gamespot.com/new-york-police-department/4060-57310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-55923/","id":55923,"name":"The Immortals","site_detail_url":"https://comicvine.gamespot.com/the-immortals/4060-55923/"}],"total_revenue":"12885193","writers":null},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/movie-list-item/movies.json b/samples/api-data/movie-list-item/movies.json new file mode 100644 index 0000000..4d96185 --- /dev/null +++ b/samples/api-data/movie-list-item/movies.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":2505,"status_code":1,"results":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1/","box_office_revenue":"107509799","budget":"130000000","date_added":"2009-07-08 10:55:50","date_last_updated":"2022-04-30 13:31:08","deck":"Adaptation of Moore and Gibbons' seminal miniseries.","description":"

    The Watchmen, follows a group of retired superheros, as they attempt to foil a plot to kill off masked superheroes. As they race to find the killer, the Doomsday clock draws closer to Nuclear War. Soon they find themselves entangled in a web of lies and deceit, that just might save humanity, but at what cost. And just how far will they go to save the world?

    ","distributor":null,"has_staff_review":null,"id":1,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868515-watchmen_final_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868515-watchmen_final_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868515-watchmen_final_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868515-watchmen_final_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868515-watchmen_final_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868515-watchmen_final_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868515-watchmen_final_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868515-watchmen_final_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868515-watchmen_final_poster.jpg","image_tags":"All Images,Watchmen"},"name":"Watchmen","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107931/","id":107931,"name":"Deborah Snyder","site_detail_url":"https://comicvine.gamespot.com/deborah-snyder/4040-107931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111156/","id":111156,"name":"Lawrence Gordon","site_detail_url":"https://comicvine.gamespot.com/lawrence-gordon/4040-111156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111157/","id":111157,"name":"Lloyd Levin","site_detail_url":"https://comicvine.gamespot.com/lloyd-levin/4040-111157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111158/","id":111158,"name":"Wesley Collier","site_detail_url":"https://comicvine.gamespot.com/wesley-collier/4040-111158/"}],"rating":"R","release_date":"2022-04-30 13:31:08","runtime":"162","site_detail_url":"https://comicvine.gamespot.com/watchmen/4025-1/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4615/","id":4615,"name":"Paramount Pictures","site_detail_url":"https://comicvine.gamespot.com/paramount-pictures/4010-4615/"}],"total_revenue":"185258983","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111154/","id":111154,"name":"Alex Tse","site_detail_url":"https://comicvine.gamespot.com/alex-tse/4040-111154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111155/","id":111155,"name":"David Hayter","site_detail_url":"https://comicvine.gamespot.com/david-hayter/4040-111155/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2/","box_office_revenue":"134218018","budget":"55000000","date_added":"2009-07-08 10:57:51","date_last_updated":"2021-11-23 19:19:15","deck":"The 1978 film released by Warner Brothers was the first big-budget comic-to-film adaptation and became a blockbuster around the world, following in the footsteps of Star Wars.","description":null,"distributor":null,"has_staff_review":null,"id":2,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/868526-superman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/868526-superman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/868526-superman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/868526-superman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/868526-superman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/868526-superman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/868526-superman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/868526-superman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/868526-superman.jpg","image_tags":"All Images"},"name":"Superman","producers":null,"rating":"PG","release_date":"2021-11-23 19:19:15","runtime":"143","site_detail_url":"https://comicvine.gamespot.com/superman/4025-2/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"300218018","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-3/","box_office_revenue":"179179718","budget":"78000000","date_added":"2009-07-08 11:15:16","date_last_updated":"2021-01-20 17:22:12","deck":"Daredevil is a film adaptation of the Daredevil comic book series. It features Kingpin as the main villain, alongside Bullseye, and has Elektra, Foggy Nelson, Ben Urich and Father Everett as supporting characters.","description":"

    The film Daredevil starts off with Daredevil at a church, weakened and nearly unconscious. He is found by Father Everett, who unmasks him to see that it is Matthew Murdock, a blind lawyer. Matt's mind then goes back to how he got his powers.

    An unknown time ago, young Matt was growing up with his father, a boxer named Jack \"The Devil\" Murdock. Jack frequently made Matt promise that he would study hard, and not end up a loser like him. A few days later, Matt is walking home from school along the docks, when he sees his father attacking someone. Out of fear, Matt runs away, but has radioactive waste sprayed into his eye when a forklift accidentally opens a barrel. Matt wakes up in hospital some time later, blind, but with his remaining senses superhumanly sharp. His father and him make a silent promise to each other to never give up.

    Matt's father regrets this promise later, as he is supposed to purposely lose a fight, but doesn't for Matt's sake. As a result of this, Matt's father is murdered.

    Going forwards about ten years later, Matt is a lawyer alongside his colleague Franklin \"Foggy\" Nelson. In court, he uses his super hearing to tell that a man is guilty, but cannot prove it. As a result, the criminal goes free, but Matt decides to stop him. That night, he gets into his Daredevil costume and tracks down the man to a bar. After he defeats everyone else in the bar, he chases the man to a subway station, and pushes the man onto the tracks, where he is run over by a subway. The next day, the police find the body, and a reporter named Ben Urich tries to convince them it was Daredevil's work, but the police don't believe him.

    That same day, Foggy and Matt are in a cafe, where Matt notices a young woman. He follows her out of the cafe, insisting that she should give him her name, but she refuses. The two have a fight in a playground, where neither are able to gain an advantage over the other, which is a first for both of them. Eventually the woman tells Matt that her name is Elektra Natchios. Elektra is the daughter of Nikolas Natchios, a billionaire, who is secretly working for the Kingpin of crime. Nikolas tells the Kingpin (Wilson Fisk) that he is going to stop crime, but after he does so, Wilson makes plans to frame him as being the Kingpin.

    Shortly afterwards, the assassin Bullseye manages to kill Nikolas Natchios, and makes it look as if Daredevil is the murderer. Elektra swears revenge on Daredevil, which leads to her and Daredevil fighting. Elektra manages to badly wound and unmask Daredevil, and realises that he didn't kill her father. Just after Elektra unmasks Daredevil, she is attacked and killed by Bullseye. Daredevil escapes to a church, where the movie began, but is followed by Bullseye. The two fight until Daredevil manages to get a police sniper to shoot Bullseye's hands. Daredevil then throws Bullseye to the ground from the top of the church.

    Daredevil then goes to Wilson Fisk, as Bullseye mentioned that he was the real Kingpin. Daredevil and Kingpin fight, and for a moment it seems as if Kingpin has won, but then Daredevil smashes a window, bringing rain in which makes it easier for Matt to fight in. With the advantage, Kingpin is soon defeated.

    Director's Cut

    In November 2004, a DVD director's cut of the film which removed unnecessary content, upgraded the film to an R-rating and added in a thirty minute sub-plot. The subplot has Matt Murdock solving the case of Lisa Tazio's murder with him and Foggy Nelson defending Dante Jackson. Dante was proven innocent since Tazio was killed by Wesley Owen Welch on August 9th.

    ","distributor":null,"has_staff_review":null,"id":3,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868557-daredevil_ver2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868557-daredevil_ver2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868557-daredevil_ver2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868557-daredevil_ver2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868557-daredevil_ver2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868557-daredevil_ver2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868557-daredevil_ver2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868557-daredevil_ver2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868557-daredevil_ver2.jpg","image_tags":"All Images"},"name":"Daredevil","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103630/","id":103630,"name":"Gary Foster","site_detail_url":"https://comicvine.gamespot.com/gary-foster/4040-103630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103631/","id":103631,"name":"Arnon Milchan","site_detail_url":"https://comicvine.gamespot.com/arnon-milchan/4040-103631/"}],"rating":"PG-13","release_date":"2021-01-20 17:22:12","runtime":"103","site_detail_url":"https://comicvine.gamespot.com/daredevil/4025-3/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"102543518","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-103629/","id":103629,"name":"Mark Steven Johnson","site_detail_url":"https://comicvine.gamespot.com/mark-steven-johnson/4040-103629/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-4/","box_office_revenue":"251188924","budget":"35000000","date_added":"2009-07-08 11:25:01","date_last_updated":"2022-02-26 12:48:01","deck":"The first film in the Batman universe. Featuring Michael Keaton as Batman and Jack Nicholson as the Joker.","description":"

    The movie begins in an alley at Gotham City where two thugs are being attacked by a mysterious figure dressed up as a bat. One thug begs not to be killed, but the figure tells him that he has no intention to kill him. When he asks who he is, the figure replies that he is Batman.

    In the night, the mayor makes a speech of how Gotham is corrupt by the hands of crime boss, Carl Grissom, and because of that, the cops have became corrupt as well. A man named Jack Napier is watching this with Alicia, his boss' mistress. She is worried that they'll be in trouble if Grissom found out about them being together. Napier then leaves afterwards.

    A reporter named Alex Knox is trying to interview a corrupt cop named Lt. Eckhart, but fails. Just then, the latter is confronted by Napier, who reminds him that his problems are their problems. Eckhart remarks that he'll only take orders from Grissom, not to psychos. When Eckhart insults him about being an A-1 boy, Napier pushes him to a wall and has his henchman, Bob, to put him at gunpoint in order to convince him.

    Meanwhile, Knox is talking with reporter Vicky Vale about Batman.

    At the same time, Grissom is upset about how Harvey Dent has a connection to him with Axis Chemicals. When Napier says about going there, Grissom orders him to go to Axis Chemicals. After the meeting, Napier complains about he doesn't want to go there, and Grissom tells him that he needs someone he can trust and that, Napier is his number 1 guy. When Napier leaves, Grissom goes to the phone to call Eckhart.

    In Wayne Manor, a party occurs. Vicky asks a man for Bruce Wayne, but he states that he doesn't know him. Knox is interviewing Commissioner Gordon and the mayor. The former is told by a policeman that Napier is cleaning up Axis Chemicals and that Eckhart didn't tell him about it.

    Vicky and Knox go to a place to see armors. They don't know one, and a man states that he bought is from Japan and reveals that he is Bruce Wayne. Just then, his butler, Alfred, calls him about to go somewhere.

    Bruce is watching the conversation between Vicky and Knox by camera and gets a conversation between Gordon and a policeman about Napier cleaning up Axis Chemicals.

    In Axis Chemicals, Eckhart orders his men to find Napier and kill him. Meanwhile, Napier and his men open a safe to find no papers there. The former realizes that they've been ratted out. Just then, they were attacked by the policemen.

    Gordon arrives to tell Eckhart that he is charge of the investigation, not Grissom. He orders the policemen to take Napier alive and the one who will open fire on him will be in trouble. At the same time, Batman arrives and captures one of the criminals.

    Napier runs around the plant with Batman following him. He tries to kill Gordon, but Batman grabs him. However, Bob points Gordon at gunpoint in order to get Batman to release Napier. Napier points his gun at Batman, but he escapes. Just then, he finds Eckhart and kills him. Napier fires a shot at Batman, but the latter ricochets the bullet to the former's face, causing him to fall to a vat of chemicals. Batman tries to save him, but Napier falls to the chemicals. Gordon tries to get Batman, but he escapes. In the sewers, Napier's hand emerges from the waters.

    Meanwhile, Bruce is having a date with Vicky. At the same time, Grissom is greeted by Napier, who is upset that he betrayed him for being with his mistress. He tries to tell him that they could have a deal, but Napier tells him to call him Joker and reveals his clown-like appearance. He kills Grissom afterwards. Bruce is kissing with Vicky at the stairway. Joker is planning to show himself to Gotham.

    In the morning, Vicky leaves. Meanwhile, Alicia is greeted by Joker and is scared that she fainted.

    Joker has a meeting with the crime bosses and tells them that he is charge of Grissom's empire. When Rotelli refuses to do such orders from him, Joker electrocutes him to death with his joybuzzer, and his men puts all of the crime bosses at gunpoint. Ricorso remarks that he is crazy for what he did. Joker orders the crime bosses to leave. He orders Bob to find the Batman and calls him to be his number 1 guy. Joker begins insulting Rotelli's corpse that he is glad that he's dead.

    Meanwhile, Bruce is putting flowers on a floor. What he didn't know is that Vicky is following him.

    At City Hall, Knox interviews about Grissom's death. Just then, Joker shows up and kills Ricorso by stabbing him in the neck with a feather. He orders the mimes to open fire. Vicky tries to warn Bruce, but he is not hurt and looks at Joker as he leaves.

    Joker is watching the news and is upset of how Batman gets his presses. Bruce is shocked that Joker is still alive after the incident at Axis Chemicals and wants a profile of him.

    Joker is cutting pictures at his table. Just then, Bob shows him photos of Knox and Vicky. Joker begins to fall in love with the latter and orders Bob to get a phone book for her. He dances afterwards.

    In the night, Joker orders the scientists at Axis Chemicals to ship his chemical. In the news, one reporter dies after laughing too much. Just then, Joker shows a commercial of his products with the secret ingredient: Smiley. He reveals of how he those products to kill people with a smile just like what happened to the reporter.

    Bruce is watching this and Alfred gives him a profile of Jack Napier. It is revealed that he begins to commit crimes as a kid and has knowledge of arts and chemistry. Meanwhile, Joker puts on his makeup and Alicia asks him where they are going. He replies about making art.

    In Gotham Art Museum, Vicky is meeting with someone, but after waiting for too long, gets a package to put on a gas mask. Just then, people are knocked out by a gas and Vicky puts on the mask for protection.

    Just then, Joker and his men arrive and vandalize the museum before meeting with Vicky. After scaring her by showing Alicia's face being damaged, Joker attempts to kill her by using acid, but she escapes and throws water at his face. When Vicky tries to comfort him, Joker scares her by showing his clown-like face underneath. Just then, Batman arrives and rescues Vicky. He takes on Joker's men and takes Vicky to the Batcave where he makes her asleep.

    The next morning, the news announces about what are Joker's products to stay away from. Joker is watching this and plans on having Batman killed.

    Bruce goes to Vicky's apartment to tell her the reason why he didn't show up at the Gotham Art Museum. However, Joker and his men arrive. The former is upset that Vicky has run out of him and tells her that bad news: Alicia threw herself out of the window. Just then, Bruce tells Joker a story about a mean kid who is crazy and has his lights out. The latter shoots him, and leaves with his men. Vicky goes to Bruce only to find him gone and that he uses a tray to protect himself. She opens a present from Joker and faints when it shows a hand holding flowers.

    Meanwhile, Bruce is looking at the news about the murder of his parents. At the same time, Joker announces of having a parade tonight. Bruce has a flashback that he, as Napier, is responsible for the death of his parents. Vicky arrives to the Batcave and now knows that Bruce Wayne is Batman.

    As Batman, he goes to Axis Chemicals and destroys it. However, Joker taunts him that he misses him.

    Meanwhile, Joker has drop $20,000,000 to the people and plans to kill them with his gas. However, Batman grabs the balloons and lets them fly away. Joker is complaining of how he could have a vehicle that could let him fly and kills Bob. While his men are causing trouble, Joker orders Batman to shoot him down, but misses the shot, and he shots the latter down.

    When Vicky tries to look for Batman, Joker puts her at gunpoint and orders transportation from Gotham Cathedral. Batman emerges from the wrecked vehicle and follows Joker. When getting to the top of the tower, Joker has his men get Batman while he dances with Vicky.

    After defeating them, Batman punches Joker and plans to have him killed. The latter states that he can't do that because he made him the way he is after the incident at Axis Chemicals. Batman fights Joker and punches him out of the tower. However, he grabs Batman and Vicky down to the ledge of the tower. Joker tries to have Batman and Vicky fall to their deaths. Just then, a helicopter came and Joker plans to leave the two there. While trying to escape, Batman uses his grapple to attach Joker's foot to a gargoyle. Because of this, Joker falls to his death. Batman saves Vicky from falling.

    The police surrounds Joker's corpse and Gordon finds a laughing voice on his pocket.

    Gordon gets a letter about how to use the Bat-like signal to call Batman whenever Gotham City is in danger. Vicky looks at the top of a building to find him standing there with the Bat signal activated.

    ","distributor":null,"has_staff_review":null,"id":4,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/1152186-0abbatman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/1152186-0abbatman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/1152186-0abbatman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/1152186-0abbatman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/1152186-0abbatman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/1152186-0abbatman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/1152186-0abbatman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/1152186-0abbatman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/1152186-0abbatman.jpg","image_tags":"All Images"},"name":"Batman","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111163/","id":111163,"name":"Paul Guber","site_detail_url":"https://comicvine.gamespot.com/paul-guber/4040-111163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111164/","id":111164,"name":"Jon Peters","site_detail_url":"https://comicvine.gamespot.com/jon-peters/4040-111164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111165/","id":111165,"name":"Chris Kenny","site_detail_url":"https://comicvine.gamespot.com/chris-kenny/4040-111165/"}],"rating":"PG-13","release_date":"2022-02-26 12:48:01","runtime":"126","site_detail_url":"https://comicvine.gamespot.com/batman/4025-4/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"411348924","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-41467/","id":41467,"name":"Sam Hamm","site_detail_url":"https://comicvine.gamespot.com/sam-hamm/4040-41467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111162/","id":111162,"name":"Warren Skaaren","site_detail_url":"https://comicvine.gamespot.com/warren-skaaren/4040-111162/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-5/","box_office_revenue":"190400000","budget":"54000000","date_added":"2009-07-08 11:25:47","date_last_updated":"2018-03-23 14:01:53","deck":"Although Superman II was shot partially in step with the first movie, director Richard Lester replaced Donner behind the camera. The film's plot picks up immediately after the original film. Despite the behind the scenes drama, the film was a box office smash.","description":"

    Superman faces off against a group of Kryptonian villains that had been captured in the Phantom Zone as well as his old nemesis Lex Luthor. Previous to these problems he reveals his true identity to Lois as he determines that if he is to have a real relationship with her that he must let her know both sides of his life. This further causes him to give up his powers, which occurs at a bad time as this is when the villains choose to strike.

    ","distributor":null,"has_staff_review":null,"id":5,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/2725437-superman_ii.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/2725437-superman_ii.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/2725437-superman_ii.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/2725437-superman_ii.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/2725437-superman_ii.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/2725437-superman_ii.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/2725437-superman_ii.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/2725437-superman_ii.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/2725437-superman_ii.jpg","image_tags":"All Images"},"name":"Superman II","producers":null,"rating":"PG","release_date":"2018-03-23 14:01:53","runtime":"127","site_detail_url":"https://comicvine.gamespot.com/superman-ii/4025-5/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"190400000","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-6/","box_office_revenue":"$80.2 million","budget":"$39 million","date_added":"2009-07-08 11:28:57","date_last_updated":"2017-06-08 09:20:35","deck":"Richard Pryor adds some comedy to the Superman movie franchise with the third movie starring Christopher Reeve. Although the film did okay at the box office, it was mostly panned.","description":null,"distributor":null,"has_staff_review":null,"id":6,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/868571-superman_iii.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/868571-superman_iii.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/868571-superman_iii.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/868571-superman_iii.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/868571-superman_iii.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/868571-superman_iii.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/868571-superman_iii.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/868571-superman_iii.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/868571-superman_iii.jpg","image_tags":"All Images"},"name":"Superman III","producers":null,"rating":"PG","release_date":"2017-06-08 09:20:35","runtime":"125","site_detail_url":"https://comicvine.gamespot.com/superman-iii/4025-6/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"59950623","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-7/","box_office_revenue":"$162 million","budget":"$80 million","date_added":"2009-07-08 11:30:53","date_last_updated":"2022-05-21 17:29:58","deck":"Michael Keaton returns as Batman who must now contend with the Penguin and Catwoman.","description":"

    Overview

    Batman Returns is the 1992 Tim Burton-directed sequel to the 1989 hit Batman. Michael Keaton returns as Batman/ Bruce Wayne.

    Meet Max Shreck. Gotham City power magnate, in more ways than one. The shining light of Gotham. He sees a bright future for Gotham, and he'll eliminate any obstacle to that end. Including the current Mayor, and possibly Bruce Wayne. Enter the Penguin, from the sewers, with his Red Triangle Circus Gang. He and Max, working together to scratch each other's backs. Exit Selina Kyle, an unfortunate casualty in Max's crusade. Inspired by an earlier encounter with the Batman, she reinvents herself as Catwoman.

    Plot

    The movie opens with a glimpse into the Penguin's early life when he was born into privilege at a large mansion owned by Tucker Cobblepot. Tucker and his wife were horrified and ashamed of the boy's deformities. As young Oswald grew into a toddler the coupe found to be vicious and uncontrollable, to the point where the Cobblepots locked him in iron cage for a playpin. After he pulled the family cat into his cage and killed it the Cobblepots decided to dump his baby carriage into a sewer grate at a Gotham Park creek. As the credits roll his carriage washes up in the Arctic World pavilion inside Gotham Park's Zoo.

    The story begins with Alfred shopping for Christmas gifts at Gotham Plaza. After a paper boy tries to sell him a cover story about monstrous Bird-Man living in the sewer the camera pans up the offices of Shreck Tower, high above Shreck's Downtown Store. Here CEO Max Shreck attempts convince the Mayor to let him build a new power plant. Shortly thereafter Max's son Chip Shreck enters to escort his father down to the Lighting of Tree ceremony taking place in the plaza. After improvising a speech to the adoring crowd, a giant red Christmas package appears in the center of Gotham Plaza. The Red Triangle Gang, a disgraced circus trope turned into a violent street gang emerge from the package. The Organ Grinder, leader of the group uses a mini-gun in his music box to destroy the Christmas lights on the tree. While citizens are being attacked the gang demands to have Max handed over to them. His son Chip steps forward urging his father to flee the area, which he does. Commissioner Gordon orders the Bat-Signal to be turned on and it doesn't take long for the Batmobile to show up, which frightens the gang away after launching Bat-Discs at various thugs. Batman himself chooses to emerge from the car after coming upon Selina Kyle being held hostage by a clown with a stungun. After a quickdraw of his grappling hook pistol, the Dark Knight pulls a chunk of concrete from behind the clown's head to knock him out. Selina attempts to thank the Batman but only glares at her and struts down the street where he barely acknowledges the GCPD's attempts to communicate with him.

    Shreck is still hiding in an alleyway when the Penguin removes the sewer grate Shreck is standing on, pulling into the sewer and knocking him out. It is revealed the sewer grate is used as trap door by the gang to travel around the city as clasps back up into place by a hinge. Shreck awakens to find himself in the Arctic World pavilion at the now abandoned zoo. Penguin blackmails him and convinces Max to arrange a kidnapping of the Mayor's baby to make Penguin appear heroic to the public. That night Shreck returns to his office where he discovers that his secretary has opened protected files on his proposed power plant. Shreck pushes her out the window thinking that she will surely die from the fall, but Selina is saved by a series of red awnings on the side of the building. She awakens with a bump on the head, surrounded by the local alleycats she feeds at her nearby apartment. Upon returning home Selina is triggered a perfume ad left on her answering machine by Shreck's department store. She then has a complete psychotic breakdown and begins trashing all the 'girly' items in her apartment. Selina fashions a catsuit for herself out of a black vinyl coat in her closet, hoping to challenge Batman on the rooftops by creating chaos.

    In the following days the Penguin's plan works and the public is charmed by the heroics of the ugly little bird-man. This is all a ruse so that the Penguin can collect research in the Hall of Records, which is guarded by Shreck Security guards and GCPD officers alike. Shreck convinces the press that their freedom is intrusive to the city's shy new savior. Bruce Wayne sympathizes with Oswald's quest at first but quickly becomes suspicious of his time spent at the Hall of Records - realizing his claims just don't add up with the facts. Wayne believes that he always knew who his parents were and is therefore collecting information on his enemies. Max's greed blinds to any danger of enabling of Cobblepot's criminality, as he convinces him to run for Mayor so that Penguin will eventually grant him permission to build the power plant. Cobblepot takes delight the idea of reclaiming his birthright, as his father served the city as District Attorney long ago. Penguin begins wearing nicer clothing from Shreck's \"image consultants\" but outright rejects the use of a cigarette holder they give him.

    Cobblepot sends his circus gang out to ransack downstown storefronts to defame the current Mayor, but they now refrain from attacking the plaza area. Catwoman sees this as the perfect cover to commit purrrrfect crime, blowing up the storefront of Shreck's. She beheads female mannequins with her bullwhip and smashes a jewelry case before rigging the store to explode. Batman appears while the gang are attacking local denizens again, he uses a Super-Batarang when when surrounded by six clowns. Before the self-propelled boomerang hits its final target, a ratty circus poodle snatches the Batarang out of the air. The Dark Knight makes way to the plaza cathedral when he spots Penguin himself surveying the devastation. Suddenly they are interrupted as Catwoman wildly flips toward with taunting \"meow\" as the department store explodes behind her. After seemingly vanishing Batman spots her climbing up a building and immediately gives chase. Catwoman kicks and slashes at him and Bruce seems to not know how to react, eventually ending her attack with one blow, easily knocking her to the ground. Catwoman feigns defeat, criticizing him for hitting a woman. As he attempts to apologize she lands a surprise kick and pulls him over the side of the rooftop with her whip. While she taunts him, Batman pulls a chemical weapon from his Utility Belt and throws it at her arm. Batman saves her as she struggles to climb shingles and the pair share an intimate moment as she deceives him again, stabbing him at weak point in his armor. Angered, Batman retaliates by knocking her off the building where she is luckily saved by a passing truck hauling sand.

    Bruce and Selina meet again at Shreck's office in their civilian identities but the pair do not recognize each other. Sometime later Catwoman goes to Penguin's office to propose a plan to frame Batman as criminal rather than simply killing him. Later Bruce approaches in the plaza where he invites her to watch the Re-Lighting of the Tree ceremony with him at Wayne Manor. As things heat up between the couple, Batman sees his stolen Batarang in an evidence bag and learns that the Ice Princess has been kidnapped by Penguin. Selina realizes she's running late to take part in the plan. The pair make up excuse for Alfred to tell the other before the leave, Selina struggles to dress herself in the Catwoman costume while driving away from the mansion. The couple then fight again in their alter-egos where Catwoman takes the hostage to the rooftop and disappears. Penguin then throws an umbrella full of bats at the girl and frightens into falling to her death on the christmas tree button. Someone in the crowd thinks Batman pushed the girl and when the tree lights up hundreds of bats are released on the shoppers, in their minds confirming that Batman was behind the murder. The police arrive and open fire on Batman, but the Commissioner tries to stop them.

    While Batman lay stunned after falling on a rooftop below, Catwoman sits on his chest to revel in her victory over him. She finds another weakpoint and stabs him again but Bruce tosses her off transforms his cape into a hang-glider, which he uses to flee the area and return to the Batmobile. Once inside he finds himself locked in, and that Penguin's gang have somehow rigged the car to be driven remotely while he was fighting Catwoman. Penguin then further smears Batman's reputation by driving into the crowd and destroying public property. Batman manages to scan the vehicle for the source of the signal and punches through the floor of the car to remove the receiver. While being chased by GCPD cruisers, the Dark Knight is left with no choice but to jettison the sides of the car, transforming into Batmissile mode to slide through an alleyway as an emergency escape. This results in a massive pile up of the cop cars behind him.

    The next day Bruce and Alfred ruin a Cobblepot Rally from the Batcave by jamming his sound system and playing recordings of his taunts while driving the Batmobile the previous night. The public realize that Penguin has lied to them from the beginning and he is then rejected by Gotham's citizens. The GCPD chase into Gotham Park where he dives into the same creek his parents threw his carriage into. Penguin then swims back to his Duck Boat where left in the sewer beneath Gotham Plaza. Upon returning to his hideout at the zoo, he gives a list of names to his gang. They kidnap the first born sons of the wealthy families attending Shreck's masquerade ball. Bruce Wayne recognizes something Selina said to him as Catwoman and the couple realize the the alter-egos. Before they can sort it out Penguin emerges from an explosion in the center of the dance floor. Max pleads that he should be taken rather his son, Charles, and Penguin agrees. Bruce then rushes to free the children from the Red Triangle Gang while Selina heads to the zoo in the hopes of killing Shreck before Penguin does.

    Batman learns of Penguin's hideout in the old zoo and uses the Batskiboat to traverse the waterways of the sewer tunnels beneath Gotham. When Penguin learns the children were freed, he decides to send Penguin Commandos as suicide bombers to destroy Gotham Plaza. Once again Alfred jams the signal and redirects the army back to the zoo. What little remains of Penguin's gang abandons him when they hear the Dark Knight's vehicle approaching. Penguin then takes his Duck Boat into land-mode, revealing set of six off-road tires that take him up the steps to the surface of the zoo grounds. Batman intercepts this by revealing an amphibious mode of his own, turning the watercraft into a snowmobile before it smashes the Duck Cart to pieces. As the struggle on the zoo grounds Batman tricks Penguin into taking a remote control for the Commandos. After launching rockets from the backs of the animals, a swarm of bats also is released from the Batski. This causes Penguin to fall backward into a skylight in much the same way he way he murdered the Ice Princess. Batman then glides below towards Catwoman where she is preparing to kill Shreck by Penguin's generator.

    Batman attempts to defuse the situation, insisting that a magnate like Shreck must be arrested for his crimes. While they ponder the moral quandary, Shreck shoots Batman's torso, knocking him unconscious. He then begins shooting at Selina, but only manages to hit limbs with his fourth shot missing completely. Shreck looks at the revolver in disbelief, as she stammers toward him she rants and claiming she has nine lives with no mortal wounds. She presses her abdomen into the empty pistol. As she prepares to kiss Max goodbye she pulls a large generator cable from above and presses her stungun under Shreck's chin. As Bruce regains consciousness he see the pair disappear in the resulting explosion of the generator. Sometime later while being chauffeured by Alfred, Bruce thinks he spots Selina's shadow in an alleyway only to find a black cat, which he takes home.

    Production

    Principal photography began in June of 1991.

    ","distributor":null,"has_staff_review":null,"id":7,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868574-batmanreturns_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868574-batmanreturns_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868574-batmanreturns_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868574-batmanreturns_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868574-batmanreturns_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868574-batmanreturns_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868574-batmanreturns_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868574-batmanreturns_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868574-batmanreturns_poster.jpg","image_tags":"All Images,Batman Returns"},"name":"Batman Returns","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111168/","id":111168,"name":"Larry Franco","site_detail_url":"https://comicvine.gamespot.com/larry-franco/4040-111168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-119641/","id":119641,"name":"Denise Di Novi","site_detail_url":"https://comicvine.gamespot.com/denise-di-novi/4040-119641/"}],"rating":"PG-13","release_date":"2022-05-21 17:29:58","runtime":"126","site_detail_url":"https://comicvine.gamespot.com/batman-returns/4025-7/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"$266.8 million","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-100355/","id":100355,"name":"Daniel Waters","site_detail_url":"https://comicvine.gamespot.com/daniel-waters/4040-100355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-100356/","id":100356,"name":"Wesley Strick","site_detail_url":"https://comicvine.gamespot.com/wesley-strick/4040-100356/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-8/","box_office_revenue":"184031112","budget":"100000000","date_added":"2009-07-08 11:36:01","date_last_updated":"2021-11-24 08:41:48","deck":"The third Batman film. The first one to star Val Kilmer as Batman and featuring Tommy Lee Jones as Two-Face and Jim Carrey as the Riddler. It also stars Nicole Kidman as Doctor Chase Meridan and Chris O'Donnell as Dick Grayson/Robin.","description":"

    Overview

    Batman Forever was the third entry in Warner Brothers initial string of Batman movies. In it Batman and Robin have to stop Two-Face and the Riddler from brain-draining Gotham City. It was directed by a man called Joel Schumacher. The film was also Val Kilmer's debut as Batman, he only played Batman in one film due to fighting with Schumacher amidst filming. Joel was eager to recast Val by the end and he did not get along with Michael Keaton during pre-production negotiations. They eventually settled on George Clooney for the final sequel.

    Plot

    Batman Forever begins with a robbery and hostage situation by Two-Face (Harvey Dent, former District Attorney and friend to Bruce Wayne. A gangster threw acid at him and he was able to cover half his face, leaving only half of it scarred. He was driven mad and developed the need to make all his decisions based on the flip of a coin. Heads for good, tails for evil). After a fight with Batman, Two-Face escapes. Soon after we are introduced to Edward Nygma, a mad scientist of sorts employed at Wayne Enterprises. He approaches Bruce Wayne and with his machine that can beam television straight into a person’s brain. rejects the invention on the notion that in the wrong hands the technology could have malicious applications. This sends Nygma over the edge; he kills his supervisor and makes it appear a suicide and resigns from his post due to grief over his death.

    Soon after this Bruce Wayne meets psychiatrist Chase Meridan (although Batman met her previously at the Two-Face hostage incident). Bruce invites her to a charity event held at a circus. Two-Face coincidentally crashes the event in an attempt to force the high-ranking elite to surrender Batman’s secret identity, else he will blow up the circus. He kills the Flying Graysons (an acrobat-family in the circus) while making his demands. Dick Grayson (the youngest) survives and even removes the explosive device, then returns to find his parents dead. Bruce takes Dick in and lets him stay at Wayne Manor as long as he wants. Dick, however says he is not interested, but is dissuaded by Bruce and Alfred. He then declares that he is going to kill Two-Face and get revenge on the killer of his family, and when he accidentally discovers Bruce in the Batcave he wants to become Batman’s partner.

    Edward has come to blame Bruce for rejecting his invention and becomes obsessed with making him pay. He begins leaving unsigned riddles for Bruce and becomes a criminal calling himself “The Riddler”. He locates Two-Face and persuades him to become allies. Edward realizes he can use his invention to read minds and also literally the IQ of anyone who uses it. It is unknown exactly how this works, as it does not make the victim less intelligent, only Nygma moreso. Two-Face and Riddler begin a string of robberies, their goal being the mass production of Edward’s device. During a party for the success of his device on the market, Riddler reads Bruce Wayne’s mind and finds he has ‘bats on the brain.’ He deduces is Batman moments before Two-Face crashes and robs the party. Two-Face nearly kills Batman, but Dick arrives in the nick of time to save him. Two-Face and Riddler assault the Manor soon after. Riddler destroys most of the equipment in the Batcave, while Two-Face flips his coin to decide whether he can shoot Bruce. It comes up saying no, and Two-Face flips again and again until it finally says yes and he shoots Bruce, but not fatally. The two villains then proceed to kidnap Dr. Chase. Before he leaves, however, Riddler leaves Bruce one last riddle. Bruce and Alfred later solve the riddles, finding they are all together a number/alphabet riddle which spells “Mr. E” a pun on “mystery” which is a synonym for “enigma”. Bruce realizes that enigma can also be read “E. Nygma” as in Edward Nygma.

    After this, Batman and the newly christened Robin attack Riddler’s island-base. They avoid his sea mines, evil frogmen and anti-aircraft beam and approach the Riddler’s hideout. The two are separated upon reaching the island. Robin finds himself facing Two-Face and defeats him. Two-Face falls over a ledge and holds on barely, pleading for his life. Robin searches himself and finds he cannot kill Two-Face, then helps him up. Two-Face takes his advantage and captures Robin with his pistol. Batman, meanwhile, makes his way to the inner part of the lair and finds the Riddler himself. Riddler then reveals Robin and Dr. Chase, both tied, gagged and caged, and offers Batman the chance to save one of them by letting the other die. Riddler is trying to destroy Batman by proving he cannot be both Bruce Wayne and Batman. Batman asks Riddler a fairly simple riddle, the answer to which is ‘bat’, and buys himself enough time to draw a Sonar Batarang and destroy the core of the system connecting all of Riddler’s machines, which is also connected directly to Riddler’s brain. The backlash of the machine drives Riddler instantly insane, however he manages to drop Chase and Robin into a pit filled with water and sharp metal. Batman manages to rescue both and swings them onto a ledge in the middle of the pit. Two-Face then appears and flips his coin, hoping to kill all three of them. Batman throws several coins up to confuse Two-Face, who cannot keep track of his own coin and loses his balance. He falls to his death at the bottom of the pit. The insane Riddler is packed off to Arkham Asylum and Chase consults on his case. Riddler offers to reveal Batman’s identity to her, but then begins raving madly that he is Batman. Bruce meets Chase outside and she informs him that Nygma is in no position to tell anyone Bruce is Batman. The end of the movie shows Batman and Robin running off to another crime.

    ","distributor":null,"has_staff_review":null,"id":8,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/8254533-foreverposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/8254533-foreverposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/8254533-foreverposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/8254533-foreverposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/8254533-foreverposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/8254533-foreverposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/8254533-foreverposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/8254533-foreverposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/8254533-foreverposter.png","image_tags":"All Images"},"name":"Batman Forever","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-119639/","id":119639,"name":"Peter MacGregor-Scott","site_detail_url":"https://comicvine.gamespot.com/peter-macgregor-scott/4040-119639/"}],"rating":"PG-13","release_date":"2021-11-24 08:41:48","runtime":"122","site_detail_url":"https://comicvine.gamespot.com/batman-forever/4025-8/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"336529144","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-119640/","id":119640,"name":"Akiva Goldsman","site_detail_url":"https://comicvine.gamespot.com/akiva-goldsman/4040-119640/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-9/","box_office_revenue":"15681020","budget":"17000000","date_added":"2009-07-08 11:42:00","date_last_updated":"2017-05-04 08:36:31","deck":"Superman battles the Russians and the threat of nuclear holocaust in this cold-war inspired film. In addition, Lex Luthor cooks up a scheme to finish Superman once and for all... the creation of Nuclear Man, an evil being spawned from Superman's own genetic material. Christopher Reeve's final film appearance as Superman. This was a box-office and critical bomb and was panned by many. It would be almost 20 years until another Superman movie would be made.","description":null,"distributor":null,"has_staff_review":null,"id":9,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/868592-superman_4.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/868592-superman_4.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/868592-superman_4.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/868592-superman_4.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/868592-superman_4.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/868592-superman_4.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/868592-superman_4.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/868592-superman_4.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/868592-superman_4.jpg","image_tags":"All Images"},"name":"Superman IV: The Quest For Peace","producers":null,"rating":"PG","release_date":"2017-05-04 08:36:31","runtime":"93","site_detail_url":"https://comicvine.gamespot.com/superman-iv-the-quest-for-peace/4025-9/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"15681020","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-68332/","id":68332,"name":"Christopher Reeve","site_detail_url":"https://comicvine.gamespot.com/christopher-reeve/4040-68332/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-10/","box_office_revenue":"107325195","budget":"125000000","date_added":"2009-07-08 11:42:39","date_last_updated":"2022-02-11 16:26:21","deck":"The fourth Batman major motion picture tells the story-arc of Batman and Robin's relationship while they try to defeat Mr. Freeze, Poison Ivy, and Bane from from destroying Gotham City.","description":"

    Plot Summary

    The movie starts off with Batman and Robin plummeting into action, trying to stop Mr. Freeze from stealing a very large diamond. A battle ensues, with Batman and Robin pitted against Mr. Freeze and his henchmen at a museum. The Bat-Duo fails to stop Mr. Freeze when Robin gets ahead of himself and ends up getting frozen by Mr. Freeze, allowing him to escape while Batman tries to thaw Robin.

    Meanwhile, Dr. Pamela Isley, a botanist, discovers that her boss, Dr. Woodrue, is using her venoms to create a criminal called Bane. He kills her for discovering this secret; however, she survives the poisons that are intoxicating her and kills Woodrue after she reawakens.

    Back at the Batcave, Batman and Robin are doing research on Mr. Freeze. Alfred has begun to show signs of fatigue, apparently due to his old age. The next day, Alfred’s niece, Barbara Wilson, drops by on a surprise visit. The day after that, Bruce unveils a new powerful telescope for which he has donated the funds. This is where Pamela Isley forces her way up to ask Bruce for funding, which he rejects. Later, Bruce decides to conduct a diamond auction in an attempt to lure Mr. Freeze into a trap. However, Poison Ivy comes in and mesmerizes everyone with her spores. Mr. Freeze comes in to steal the diamond, and with Poison Ivy there already, it distracts Batman and Robin from capturing Mr. Freeze. However, the duo go after him anyway. Batman disables Robin’s bike from jumping a bridge. Batman jumps the bridge himself and is able to land on Mr. Freeze and arrest him. Back at the Batcave, Robin gets into an argument about trust with Batman.

    While Dick is doing some research in the Batcave, he catches Barbara sneaking out with a motorcycle and decides to follow her this time. He follows her to an underground motorcycle race, and participates himself. But he ends up saving Barbara from falling off the bridge when the biker gang trips her. Back at the mansion, Barbara reveals to Dick that she wants to take Alfred away from his life of servitude. Bruce then reveals to Dick that Alfred is dying.

    Meanwhile, at Arkham Asylum, Poison Ivy breaks in to free Mr. Freeze in order for them to team up. Dick then alerts Bruce that Mr. Freeze has escaped, and the Bat-Duo rushes over to Mr. Freeze’s former hideout. Batman and Robin go deeper into Mr. Freeze’s hideout, where they encounter Bane and Poison Ivy. The Bat-Duo ends up fighting each other instead, giving Ivy and Bane enough time to escape. When Ivy returns to her own hideout, she tells Mr. Freeze that Batman killed his wife, when in fact it was Ivy who did it. Back at the mansion, the doctor reveals that Alfred has stage 1 of MacGreggor’s syndrome, which is the same stage to which Freeze already has the cure. Later, after Alfred gives Barbara a CD containing secrets and telling her to give it to Alfred’s brother, Barbara tries to hack into it to see what it is. She is eventually successful and discovers the secrets about Batman and Robin.

    Later that night, Bruce is finally able to convince Dick to trust him before he goes to see Poison Ivy. Meanwhile, Mr. Freeze plans to take over the telescope that Bruce Wayne had donated in order to freeze the entire city. Barbara eventually finds her way down to the Batcave, where Alfred has already tailored a Bat-costume for her. Robin goes to meet Poison Ivy, who tries to poison him by kissing him. However, Robin has trusted Batman, and he had a rubber cover over his lips. Batman drops in to help him but all the vines tangle them up. Eventually, Batgirl comes and rescues the Bat-Duo.

    Afterwards, the three of them rush over to try and stop Mr. Freeze. All three of them eventually fight their way to Mr. Freeze, whose plan they foil. They are able to thaw the city by using the satellites to reflect the sun towards the city. Batman also succeeds in obtaining a cure for Alfred from Mr. Freeze, and afterwards they use it on Alfred. The next morning Alfred awakens and seems to be healthy again. The film ends with Poison Ivy hallucinating inside her cell in Arkham Asylum.

    ","distributor":null,"has_staff_review":null,"id":10,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868593-batmanandrobinposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868593-batmanandrobinposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868593-batmanandrobinposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868593-batmanandrobinposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868593-batmanandrobinposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868593-batmanandrobinposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868593-batmanandrobinposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868593-batmanandrobinposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868593-batmanandrobinposter.jpg","image_tags":"All Images,Movie Posters"},"name":"Batman & Robin","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-119639/","id":119639,"name":"Peter MacGregor-Scott","site_detail_url":"https://comicvine.gamespot.com/peter-macgregor-scott/4040-119639/"}],"rating":"PG-13","release_date":"2022-02-11 16:26:21","runtime":"125","site_detail_url":"https://comicvine.gamespot.com/batman-robin/4025-10/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"238207122","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-119640/","id":119640,"name":"Akiva Goldsman","site_detail_url":"https://comicvine.gamespot.com/akiva-goldsman/4040-119640/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-11/","box_office_revenue":"200081192","budget":"270000000","date_added":"2009-07-08 11:57:18","date_last_updated":"2018-07-06 21:52:46","deck":"Superman Returns brought the franchise back to the big screen after a 20 year absence with newcomer Brandon Routh putting on the cape. The continuity of the film is set just after Superman II (1980), where Superman had a romantic relationship with Lois Lane.","description":"

    Five long years have passed since Superman disappeared mysteriously. The crisis took the world without limits. Without Superman, crime has risen in the city of Metropolis, and that's not counting the future criminal acts of Lex Luthor. The criminal has left prison with a clear plan: using Superman's technological secrets for his glory and benefit.

    Lois Lane, star reporter for the newspaper \"Daily Planet\", and true love in the life of Superman, has resumed his life after the sudden disappearance of five years of Superman. He left without saying a word. Lois even won a Pulitzer Prize for his note \"Why the World Does not Need Superman\". Now the journalist is engaged to the nephew of the editor of \"The Planet\" and has a young son, Jason, to look after. For Superman on the other hand, the search for a place in the universe ends when he returns to the Kent farm, the only family he knew. But finally he returns to Metropolis. There, just look into the eyes of Lois Lane, he knows he is in the right place, among people full of defects, but in the end, good people. Undoubtedly, the Earth is his true home. Meanwhile, Lex Luthor has a plan to be carried out just now that Superman has returned.

    The world needs the Man of Steel more than ever.

    Superman was born on a planet that long ago no longer exists. A couple of farmers, the Kent´s, who live in a small farm in the state of Kansas, adopt him. The child's name is Kal-El, but they changed his name to Clark Kent, and although he grows between humans, he is not one of them. Under the influence of a yellow sunlight on Earth, Kal-El takes superpowers and can make things impossible for humans.

    However, in order to live among them, he must lead a double life as if he were simply a human, without showing off his great gifts. And so, as Clark Kent, he lives like a normal person, but he transformed into the Man of Steel when the world needs.

    ","distributor":null,"has_staff_review":null,"id":11,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/868612-superman_returns_ver2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/868612-superman_returns_ver2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/868612-superman_returns_ver2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/868612-superman_returns_ver2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/868612-superman_returns_ver2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/868612-superman_returns_ver2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/868612-superman_returns_ver2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/868612-superman_returns_ver2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/868612-superman_returns_ver2.jpg","image_tags":"All Images"},"name":"Superman Returns","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-64499/","id":64499,"name":"Bryan Singer","site_detail_url":"https://comicvine.gamespot.com/bryan-singer/4040-64499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-71643/","id":71643,"name":"Thomas Tull","site_detail_url":"https://comicvine.gamespot.com/thomas-tull/4040-71643/"}],"rating":"PG-13","release_date":"2018-07-06 21:52:46","runtime":"154","site_detail_url":"https://comicvine.gamespot.com/superman-returns/4025-11/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"391081192","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-53375/","id":53375,"name":"Dan Harris","site_detail_url":"https://comicvine.gamespot.com/dan-harris/4040-53375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61850/","id":61850,"name":"Michael Dougherty","site_detail_url":"https://comicvine.gamespot.com/michael-dougherty/4040-61850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-64499/","id":64499,"name":"Bryan Singer","site_detail_url":"https://comicvine.gamespot.com/bryan-singer/4040-64499/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-12/","box_office_revenue":"206,852,432","budget":"150000000","date_added":"2009-07-08 11:58:43","date_last_updated":"2020-08-01 01:42:34","deck":"The first in The Dark Knight Trilogy. Batman Begins takes a darker, edgier tone than past films. Batman is portrayed by Christian Bale.","description":"

    The movie starts off in a flashback. Bruce was still a young child, playing in the backyard of his home with Rachel Dawes. Bruce falls into a well and into a cave, where he is attacked by a horde of bats. His dad eventually gets him out and takes him into the house, and then Bruce awakens from the dream. He is a young adult in a foreign prison, where he fights criminals one by one. Eventually Bruce meets a man named Henri Ducard, who offers him a chance to join the League of Shadows as long as he gathers a rare flower. Bruce succeeds and climbs the mountain up to Henri Ducard. After he arrives, he meets Ra’s al Ghul and tells Ducard about how his parent

    died and the guilt and anger that he carries. Ducard begins training Bruce the way of the ninja. During the training, Bruce tells Ducard about the reason he did not avenge his parents during the trial of Joe Chill (killer of the Waynes and also the same killer in the comics), and then how he became a criminal in order to learn how they think, which is how Bruce ended up in prison in the first place. Bruce completes his final test; however, he has to execute a criminal in order to become a full member. But Bruce does not want to become an executioner. He instead flings a hot brand onto the explosives, detonating them all. Bruce fights Ra’s Al Ghul until the roof collapses onto the latter. Bruce then saves Ducard from falling off the cliff, then he returns to Gotham via private jet with Alfred. Back in Gotham, Bruce discovers a huge cave underneath the mansion. Later, Bruce shows up at Wayne Enterprises, surprising all the executives because Bruce had been declared dead years ago.

    Bruce asks for a job at the applied sciences department. Heading over there, he discovers the vast amount of technology there. He meets Lucius Fox (Morgan Freeman) and gets a tour. Bruce asks to “borrow” the suit for cave diving. He then continues working on the cave, installing lights and then discovering more areas in the cave. Bruce then began ordering parts from dummy corporations to build himself a Bat costume. Later that night, Bruce goes out with the armor and a ski mask. He sneaks up on Officer James Gordon, and tells him about the plan to put criminals behind bars. He tells him to look for his sign.

    \"No

    Bruce eventually gets all the equipment needed to make his Bat Suit and on his first night out on patrol he encounters Carmine Falcone and his goons exporting /importing drugs with a crooked cop. Once he takes care of all Falcone's men he goes after Falcone after asking who he is he simply says \"I'm Batman.\" Afterward Gordon arrives seeing Falcone's men, but doesn't think anything of it because there is no connection to Falcone. However he learns that Falcone is on the grounds tied up to a Flood light and when Gordon looks out to see how it shines we get our first crude Bat Signal.

    After Bruce''s first night out on the job, Alfred notices the bruises and advises Bruce to get an alibi for all his injuries, he suggests Polo. Dr. Crane goes to see Falcone in prison, who wants to be transferred to Arkham. We learn that Crane is working for someone and shows Falcone the scarecrow mask. Bruce goes out to insure his Public identity as Bruce Wayne, coming across as a spoiled playboy, buying a hotel after his dates start swimming in a pool. He later goes on Patrol and finds Crane's hideout, however he is affected by the fear gas and has to flee, calling Alfred for help.

    Days go by and eventually Bruce recovers, Alfred tells him Lucius Fox helped supply an antidote for the weaponized hallucinogen. Bruce asks Fox to make some more. Rachel stops by and drops off his birthday present before having to go to the Narrows to talk to Crane. Bruce rushes to his cave telling Alfred to entertain his guests until he returns.

    At Arkham when Rachel asks too many questions Crane is forced to give a concentrated dose of his fear Toxin. Batman arrives and having been immunized against the toxin, uses it on Crane, who talks. He says Ra's Al Ghul is the person behind everything, including adding the toxin to the water supply. Before Batman can get anything more out of him the police arrive. The cops want to wait for SWAT but Gordon goes in anyway. Batman grabs him explaining the situation and asks him to take her and meet him out back. Once there Batman takes her to the Bat Cave, although making some additions to the nightly news on the way. When he releases Rachel from the Toxin he gives her a sedative and goes upstairs to the party. Alfred tells him he needs to be careful and not show off to which Bruce replies Rachel is downstairs, take her home. As Bruce enters the party he goes to Fox, who tells him he was just fired, but Bruce wants him back at Wayne Enterprises to make more Vaccines for the Toxin. As Bruce tries to make his way around the party he is introduced to Ra's Al Ghul, who he believes to be dead, however it turns out that Ra's is actually Ducard. Ra's tells him to either get the people out of the house or he will make a scene. Bruce takes this time to become \"drunk\" and tells his guests to get the hell out. As the guest leave Bruce sees all the Assassins in the room. Ra's tells him his plans of destroying Gotham and wants Bruce to join him. He also learns that this isn't the first time Gotham has been targeted for destruction. Bruce tells him Gotham isn't beyond saving. Ra's gives the order to his men to start burning his house, as Ra's tells him he never minded his surroundings as a beam falls on Bruce. \"You burned my house and left me for dead. Consider us even.\" As Wayne Manor is burning Alfred returns and finds Bruce helping him down to the cave.

    Bruce is distraught, everything his father built is burning because of him. Alfred sees that Bruce is bleeding but tells him \"Why do we fall, Sir? So we can learn to pick ourselves back up.\" A line his father told him when he was little. As Bruce heads out to save Gotham, Rachel goes to the Narrows to give Gordon his anti-Toxin. As the bridges close and the gas released Gordon is the only one left and calls for back-up. Commissioner Loeb tells him there is no one left, as Batman, in the Batmobile jumps the gap. He has Gordon go to Wayne Tower to try to Blow up the tracks as he goes to fight Ra's. Along the way, he saves Rachel, who asks who he is. He responds \"It's not who I am underneath, but what I do that defines me.\" Something she told Bruce Wayne earlier and realizes who Batman really is. As Bruce begins to fight Ra's on the train, Ra's believes he's trying to stop the train, but instead he insures that the train doesn't stop. As Gordon blows up the tracks he tells Ra's he never did mind his own surroundings. Ra's believes Bruce is going to kill him to which he replies \"I won't kill you, but I don't have to save you.\" As he leaves Ra's on the train as it crashes.

    \"No

    The following day Bruce hires Fox as CEO and fires the previous one. Heading back to Wayne Manor he talks to Rachel who tells him, if one day Gotham doesn't need Batman she will be there waiting for him. When asked what he will do with the Manor he replies \"Rebuild it, Brick by Brick\" exactly the way it was. Alfred tells him they could do something in the southeast corner, referring to the Bat-cave.

    Jim Gordon has been promoted and signals Batman with a Bat Signal, joking that he couldn't find any mob bosses. He then questions about the escalation that is going to happen because of Batman. He gives Batman a case. Double Homicide and leaves a calling card. It is revealed to be a Joker card. Batman says he'll look into it. Gordon says he never got to thank him, to which Batman replies \"and You'll never have to.\" Batman jumps off the building and circles around as the movie ends.

    Comic Book Adaptations

    1) Batman Begins: The Movie and Other Tales of the Dark Knight

    2) Batman Begins: Official Movie Adaptation

    ","distributor":null,"has_staff_review":null,"id":12,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868618-movieposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868618-movieposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868618-movieposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868618-movieposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868618-movieposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868618-movieposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868618-movieposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868618-movieposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868618-movieposter.jpg","image_tags":"All Images,Movie Posters"},"name":"Batman Begins","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107930/","id":107930,"name":"Emma Thomas","site_detail_url":"https://comicvine.gamespot.com/emma-thomas/4040-107930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107932/","id":107932,"name":"Charles Roven","site_detail_url":"https://comicvine.gamespot.com/charles-roven/4040-107932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111168/","id":111168,"name":"Larry Franco","site_detail_url":"https://comicvine.gamespot.com/larry-franco/4040-111168/"}],"rating":"PG-13","release_date":"2020-08-01 01:42:34","runtime":"141","site_detail_url":"https://comicvine.gamespot.com/batman-begins/4025-12/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4218/","id":4218,"name":"Syncopy Films","site_detail_url":"https://comicvine.gamespot.com/syncopy-films/4010-4218/"}],"total_revenue":"379,694,153","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46778/","id":46778,"name":"David S. Goyer","site_detail_url":"https://comicvine.gamespot.com/david-s-goyer/4040-46778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-71087/","id":71087,"name":"Christopher Nolan","site_detail_url":"https://comicvine.gamespot.com/christopher-nolan/4040-71087/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-13/","box_office_revenue":"70496802","budget":"54000000","date_added":"2009-07-08 12:30:11","date_last_updated":"2015-05-24 08:25:35","deck":"A film adaption of Alan Moore's famed comic. Unsurprisingly, he wasn't thrilled about it.","description":"

    The movie is loosely based on the ten issue maxi-series of the same name. Many details and plot points have been changed or completely removed. The screenplay focuses more on the relationship between Evey and V than the source material did. The characters of Mr. Almond and his wife are non-existent, and the both the opening and the climax. As a result, writer Alan Moore kept his name off the project, and it is credited as being based on graphic novels \"illustrated by David Lloyd.\" In the short Freedom! Forever! Making V for Vendetta, available as a special feature on the DVD (and presumably the BluRay), these changes are justified by the density of the source material versus time and budgetary constraints.

    Now, over a decade after the film's theatrical release, V's distinctive mask and costume can still be found in costume shops and is a popular item during Halloween. The film, not the comics, prompted the direct action group Anonymous to take up the Guy Fawkes mask as their symbol.

    ","distributor":null,"has_staff_review":null,"id":13,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/1076585-0v4.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/1076585-0v4.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/1076585-0v4.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/1076585-0v4.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/1076585-0v4.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/1076585-0v4.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/1076585-0v4.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/1076585-0v4.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/1076585-0v4.jpg","image_tags":"All Images"},"name":"V for Vendetta","producers":null,"rating":"R","release_date":"2015-05-24 08:25:35","runtime":"132","site_detail_url":"https://comicvine.gamespot.com/v-for-vendetta/4025-13/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"132511035","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61219/","id":61219,"name":"Lana Wachowski","site_detail_url":"https://comicvine.gamespot.com/lana-wachowski/4040-61219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-64773/","id":64773,"name":"Lilly Wachowski","site_detail_url":"https://comicvine.gamespot.com/lilly-wachowski/4040-64773/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-14/","box_office_revenue":"74103820","budget":"40000000","date_added":"2009-07-08 12:52:53","date_last_updated":"2017-01-10 19:37:41","deck":"Based on the graphic novels Sin City: The Hard Good-Bye, The Big Fat Kill and That Yellow Bastard by Frank Miller.\n\nIntro short is The Customer is Always Right from The Babe Wore Red. \n\nDirected by Robert Rodriguez","description":"
    ","distributor":null,"has_staff_review":null,"id":14,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/868722-sin_city.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/868722-sin_city.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/868722-sin_city.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/868722-sin_city.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/868722-sin_city.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/868722-sin_city.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/868722-sin_city.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/868722-sin_city.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/868722-sin_city.jpg","image_tags":"All Images,Sin city"},"name":"Sin City","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-7082/","id":7082,"name":"Frank Miller","site_detail_url":"https://comicvine.gamespot.com/frank-miller/4040-7082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60201/","id":60201,"name":"Robert Rodriguez","site_detail_url":"https://comicvine.gamespot.com/robert-rodriguez/4040-60201/"}],"rating":"R","release_date":"2017-01-10 19:37:41","runtime":"147","site_detail_url":"https://comicvine.gamespot.com/sin-city/4025-14/","studios":null,"total_revenue":"158753820","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-7082/","id":7082,"name":"Frank Miller","site_detail_url":"https://comicvine.gamespot.com/frank-miller/4040-7082/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-15/","box_office_revenue":"535,234,033","budget":"185000000","date_added":"2009-07-08 13:05:37","date_last_updated":"2020-08-01 01:42:41","deck":"A year after the events of Batman Begins, a new era begins for Batman, as he settles in as Gotham's Caped Crusader, a new threat reveals itself, The Joker, a Clown Prince of Crime raiding banks in Gotham. The Batman must join forces with Commissioner Gordon and Harvey Dent to bring the Joker down before anyone suffers from the his plans. But they are not ready for what the Joker has in store for The People of Gotham. The movie serves as the second part of The Dark Knight Trilogy.","description":"

    Plot

    In Gotham City, the Joker robs a mob bank with his accomplices, who he tricks into killing one another, ultimately killing the last one himself. That night, Batman and Lieutenant James Gordon contemplate including new district attorney Harvey Dent in their plan to eradicate the mob. However, Batman questions if Dent can be trusted. Bruce runs into Rachel Dawes and Dent, who are dating, and after talking to Dent, he realizes Dent's sincerity and decides to host a fundraiser for him. Mob bosses Sal Maroni, Gambol, and the Chechen meet with other underworld gangsters to discuss both Batman and Dent, who have been cracking down on the mobster's operations. Lau, a Chinese mafia accountant, informs them that he has hidden their money and fled to Hong Kong in an attempt to preempt Gordon's plan to seize the mobsters' funds and hide from Dent's jurisdiction. The Joker appears and offers to kill Batman for half of the mafia's money, but they flatly refuse and Gambol places a bounty on the Joker's head. Not long after, the Joker kills Gambol and takes control of his men.

    In Hong Kong, Batman captures Lau and delivers him to the Gotham City police, where Lau agrees to testify against the mob. In retaliation, the mobsters hire the Joker to kill Batman and Lau. The Joker issues an ultimatum to Gotham: people will die each day until Batman reveals his identity. When Commissioner Gillian B. Loeb and Judge Surillo are murdered by corrupt police, the public readily blames Batman, prompting Bruce to decide to reveal his identity. Before Bruce can turn himself in, Dent holds a press conference to try and persuade the public not to sell Batman out just because of one terrorist, but the public, though grateful for everything Batman has done for the city, insists that things have now reached a point where Batman must make the sacrifice, so Dent announces that he himself is Batman and is arrested as part of a plan to draw the Joker out of hiding. The Joker attempts to ambush the police convoy carrying Dent, but Batman and Gordon intervene and capture him. In recognition of his actions, Gordon is appointed the new police commissioner.

    Later that night, Dent and Dawes disappear. At the police station, Batman interrogates the Joker, who reveals that Dent and Dawes' police escorts were on Maroni's payroll and have placed them in warehouses rigged with explosives on opposite sides of the city — far enough apart so that Batman cannot save them both. Batman leaves to save Dawes, while Gordon and the police head after Dent. With the aid of a smuggled bomb, the Joker escapes police custody with Lau. Batman arrives, but finds Dent instead of Dawes. Batman successfully saves Dent, but the ensuing explosion disfigures Dent's face. Gordon arrives at Dawes' location too late, and she perishes when the bomb detonates. Unable to cope with this new level of chaos, Maroni goes to Gordon and offers him the Joker's location.

    Aboard a cargo ship, the Joker burns Lau to death atop a pile of the mob's money, and has the Chechen killed before taking control of his men. Meanwhile, an accountant at Wayne Enterprises, Coleman Reese, finds out Batman's identity and after failing to blackmail the company, decides to go public. However, realizing that he does what he does only because of Batman, The Joker changes his mind about revealing Batman's identity and issues a public ultimatum: either Reese is killed, or he will blow up a hospital. When the police refuse to carry out his demands, The Joker goes to the evacuated hospital, disguised as a nurse, and frees Dent from his restraints, convincing him to exact revenge on the people responsible for Dawes' death, as well as Batman and Gordon for not saving her. Dent begins by flipping for the Joker's life, and spares him. The Joker destroys the hospital on his way out, and then escapes with a hijacked bus full of hospital patients.

    Out of the hospital, Dent goes on a personal vendetta, confronting Maroni and the corrupt cops one by one. Now with complete control over the Gotham mob, the Joker announces to the public that anyone left in Gotham at nightfall will be subject to his rule. With the bridges and tunnels out of the city closed due to a bomb threat by the Joker, authorities begin evacuating people by ferry. The Joker has explosives placed on two of the ferries—one ferry with convicts, who were evacuated in an effort to keep the Joker from freeing them, and the other with civilians—telling the passengers the only way to save themselves is to trigger the explosives on the other ferry; otherwise, he will destroy both at midnight. Batman locates the Joker and the hostages he has taken. Realizing the Joker has disguised the hostages as his own men, Batman is forced to attack both Gordon's SWAT team and the Joker's henchmen in order to save the real hostages.

    The Joker's plan to destroy the ferries fails after the passengers on both decide not to destroy each other. Batman finds the Joker, and after a brief fight, is able to subdue him, preventing him from destroying both ferries. When Batman refuses to kill the Joker, the Joker acknowledges that Batman is truly incorruptible, but that Dent was not, and that he has unleashed Dent upon the city. Leaving the Joker for the SWAT team, Batman searches for Dent. At the remains of the building where Dawes died, Batman finds Dent holding Gordon and his family at gunpoint. Dent judges the innocence of Batman, himself, and Gordon's son through three coin tosses. As the result of the first two flips, he shoots Batman and spares himself. Before Dent can determine the boy's fate, Batman, who’s body armor blocked most of the damage, tackles him over the side of the building. Gordon's son is saved, but Dent and Batman fall to the ground below resulting in Dent's death. Knowing that the citizens of Gotham will lose hope and all morale if Dent's rampage goes public, Batman convinces Gordon to hold him responsible for the murders. Police swarm the building, and Batman flees as Gordon and his son watch as Batman manages to escape the Police. Later Gordon is shown delivering the eulogy at Dent's funeral and smashing the Bat-Signal.

    ","distributor":null,"has_staff_review":null,"id":15,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868727-hr_the_dark_knight_51.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868727-hr_the_dark_knight_51.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868727-hr_the_dark_knight_51.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868727-hr_the_dark_knight_51.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868727-hr_the_dark_knight_51.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868727-hr_the_dark_knight_51.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868727-hr_the_dark_knight_51.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868727-hr_the_dark_knight_51.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868727-hr_the_dark_knight_51.jpg","image_tags":"All Images,Dark Knight,Good Pics"},"name":"The Dark Knight","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-71087/","id":71087,"name":"Christopher Nolan","site_detail_url":"https://comicvine.gamespot.com/christopher-nolan/4040-71087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107930/","id":107930,"name":"Emma Thomas","site_detail_url":"https://comicvine.gamespot.com/emma-thomas/4040-107930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107932/","id":107932,"name":"Charles Roven","site_detail_url":"https://comicvine.gamespot.com/charles-roven/4040-107932/"}],"rating":"PG-13","release_date":"2020-08-01 01:42:41","runtime":"152","site_detail_url":"https://comicvine.gamespot.com/the-dark-knight/4025-15/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4218/","id":4218,"name":"Syncopy Films","site_detail_url":"https://comicvine.gamespot.com/syncopy-films/4010-4218/"}],"total_revenue":"1,037,989,858","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46778/","id":46778,"name":"David S. Goyer","site_detail_url":"https://comicvine.gamespot.com/david-s-goyer/4040-46778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-55546/","id":55546,"name":"Jonathan Nolan","site_detail_url":"https://comicvine.gamespot.com/jonathan-nolan/4040-55546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-71087/","id":71087,"name":"Christopher Nolan","site_detail_url":"https://comicvine.gamespot.com/christopher-nolan/4040-71087/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-16/","box_office_revenue":"210614939","budget":"65000000","date_added":"2009-07-08 13:22:17","date_last_updated":"2016-11-22 13:34:54","deck":"Based on the graphic novel 300 by Frank Miller. Directed by Zack Snyder.","description":"

    A retelling of the Battle of Thermopylae, where the Spartan King Leonidas led 300 warriors against the 1,000,000-strong Persian army, successfully holding off the invaders until the Greek city-states could muster an army large enough to defeat the invaders.

    ","distributor":null,"has_staff_review":null,"id":16,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/868742-300_poster_premiere_425.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/868742-300_poster_premiere_425.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/868742-300_poster_premiere_425.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/868742-300_poster_premiere_425.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/868742-300_poster_premiere_425.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/868742-300_poster_premiere_425.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/868742-300_poster_premiere_425.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/868742-300_poster_premiere_425.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/868742-300_poster_premiere_425.jpeg","image_tags":"All Images"},"name":"300","producers":null,"rating":"R","release_date":"2016-11-22 13:34:54","runtime":"117","site_detail_url":"https://comicvine.gamespot.com/300/4025-16/","studios":null,"total_revenue":"456068181","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-17/","box_office_revenue":"318412101","budget":"140000000","date_added":"2009-07-08 13:39:24","date_last_updated":"2020-08-11 23:03:56","deck":"Feature-length live action film based around the Marvel character Iron Man. Released in 2008 and starring Robert Downey Jr, it serves as the productive beginning of the Marvel Cinematic Universe, but comes third, chronologically.","description":"

    Plot Summary

    Playboy and genius engineer Tony Stark, who is in Afghanistan to introduce his company's new weaponry, is severely wounded in an explosion and captured by a terrorist organization known as the Ten Rings. The terrorists imprison him in a cave, along with Yinsen, a meek engineer. Slowly dying from the injuries sustained in his capture, Tony creates an electromagnet with the help of Yinsen, which keeps the shrapnel in his chest away from his heart. Soon they begin work on an arc reactor and a power suit, which will aid in their escape. Completing it in secret, Stark manages to escape, destroying much of the terrorist base with his suit's weapons in the process. He crashes it in the desert shortly after departing and is rescued.

    Upon returning home, Stark insists that Stark Industries cease production of weaponry, to the consternation of Obadiah Stane, Stark's father's business partner and manager of the company, who believes this will ruin the business. Meanwhile, Stark works on creating a vastly improved version of his suit. Learning that the Ten Rings are using Stark weapons and that Stane is attempting to take control of the company, an angered Stark flies to Afghanistan and stops a Ten Rings attack on Yinsen's home village. On his return flight, he is attacked by members of the US Air Force and is forced to reveal his secret identity to James Rhodes in order to end the attack. In Afghanistan, members of the Ten Rings, working together with Stane, salvage the wrecked remains of Stark's original suit. Stane has the group destroyed, and reverse-engineers a version of the suit. In pursuit of the person who is leaking Stark technology to the Ten Rings, Stark sends his assistant Pepper Potts to investigate the computer systems at Stark Industries. She learns of Stane's involvement, and later reveals this information to Agent Coulson of SHIELD.

    Stane, frustrated by his inability to create a working arc reactor, attacks Stark and steals his arc reactor, paralyzing and dooming him to a slow death from the shrapnel. Stark is able to save himself using his original arc reactor. He confronts Stane wearing his armor, while Stane is similarly outfitted in his reverse-engineered suit. The pair fight, and Stark is able to defeat Stane by orchestrating the overload of a massive arc reactor; Stane dies in the explosion. Stark reveals his identity as Iron Man at a press conference, contravening the orders of Agent Coulson.

    ","distributor":null,"has_staff_review":null,"id":17,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/868768-ironmanposter3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/868768-ironmanposter3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/868768-ironmanposter3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/868768-ironmanposter3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/868768-ironmanposter3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/868768-ironmanposter3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/868768-ironmanposter3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/868768-ironmanposter3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/868768-ironmanposter3.jpg","image_tags":"All Images,Iron Man"},"name":"Iron Man","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-74372/","id":74372,"name":"Kevin Feige","site_detail_url":"https://comicvine.gamespot.com/kevin-feige/4040-74372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111177/","id":111177,"name":"Victoria Alonso","site_detail_url":"https://comicvine.gamespot.com/victoria-alonso/4040-111177/"}],"rating":"PG-13","release_date":"2020-08-11 23:03:56","runtime":"126","site_detail_url":"https://comicvine.gamespot.com/iron-man/4025-17/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4615/","id":4615,"name":"Paramount Pictures","site_detail_url":"https://comicvine.gamespot.com/paramount-pictures/4010-4615/"}],"total_revenue":"585174222","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-4068/","id":4068,"name":"Larry Lieber","site_detail_url":"https://comicvine.gamespot.com/larry-lieber/4040-4068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-5614/","id":5614,"name":"Jack Kirby","site_detail_url":"https://comicvine.gamespot.com/jack-kirby/4040-5614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-6609/","id":6609,"name":"Don Heck","site_detail_url":"https://comicvine.gamespot.com/don-heck/4040-6609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111173/","id":111173,"name":"Mark Fergus","site_detail_url":"https://comicvine.gamespot.com/mark-fergus/4040-111173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111174/","id":111174,"name":"Hawk Ostby","site_detail_url":"https://comicvine.gamespot.com/hawk-ostby/4040-111174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111175/","id":111175,"name":"Art Marcum","site_detail_url":"https://comicvine.gamespot.com/art-marcum/4040-111175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111176/","id":111176,"name":"Matt Holloway","site_detail_url":"https://comicvine.gamespot.com/matt-holloway/4040-111176/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-18/","box_office_revenue":"115802596","budget":"110000000","date_added":"2009-07-08 14:21:17","date_last_updated":"2020-12-28 22:56:25","deck":"Nicolas Cage stars in this feature film based on the comic Ghost Rider.","description":"

    An old legend of the West is that of the Ghost Rider. Supposedly, when someone sold their sold to the devil, they would be transformed into the Ghost Rider, the devil's bounty hunter. The devil's most recent Ghost Rider was around 150 years ago, but disobeyed the devil by refusing to bring him the contract of San Venganza, which would give him the power of 1000 souls.

    In the present, a stunt rider called Barton Blaze and his son Johnny Blaze are carnival daredevils. Johnny is currently dating a young girl his age named Roxanne Simpson. After a show one day, Johnny goes home to find that his father is dying of cancer. That night, a mysterious man appears, and claims that he can cure Johnny's cancer, in return for Johnny's soul. Thinking it's a joke, Johnny agrees. The next day, Johnny's father is healthy once more, but during the performance that day, Johnny's father dies in an accident. Johnny finds the mysterious man who he made the deal with, and claims he's cheated on their deal, but the mysterious man points out that he saved him from the cancer as promised. He says that one day he'll come back to make sure Johnny fulfils his end of the deal.

    About ten years later, Johnny is a famous stunt rider, who is famous for surviving incredibly unbelievable feats. Just before he jumps a football pitch, Johnny bumps into Roxanne Simpson again, who is now a reporter. After the show, Johnny follows Roxanne and asks her out on a date. Roxanne reluctantly agrees.

    Meanwhile, the demon Blackheart is on Earth, looking for the contract of San Venganza. He enlists the aid of three demons named Gressil, Abigor, and Wallow, who represent the elements of earth, air and water respectively. The mysterious man who made the deal with Johnny is revealed to be Mephistopholes (shortened to Mephisto), Blackheart's father and a high-ranking demon. Mephisto wants the contract of San Vanganza for himself, so calls on Johnny to fulfil his end of the deal.

    Johnny is turned into the latest Ghost Rider, and is sent to stop Blackheart. Blackheart, Gressil, Abigor and Wallow are at a trainyard where a graveyard used to be which held the contract of San Venganza. Ghost Rider appears, and manages to use a nearby chain to kill Gressil, although Blackheart, Abigor and Wallow escape. After the fight, Ghost Rider keeps the chain, and keeps riding. He saves a civilian from a mugger, and uses his patented Penance Stare for the first time.

    The next morning, Johnny wakes up in the cemetary of a church. There, a mysterious old man tells Johnny about his curse, and a bit about how to control it. Johnny also goes home and reads a few books on how he can control it. Roxanne arrives, thinking Johnny stood her up on their date. Johnny tries to explain to Roxanne about how he turned into Ghost Rider, but she naturally doesn't believe him.

    Johnny is then arrested by the police, believed to be connected to the murder at the trainyard. The police take him into a cell, where Johnny turns into Ghost Rider. He then attempts to find Blackheart, but Blackheart sends Abigor to delay him. Ghost Rider chases Abigor to the top of a building, and manages to use his chains to suck him up. While Ghost Rider is chasing Abigor, Roxanne sees him and realises Johnny was telling the truth. Roxanne is part of a crowd which watches Ghost Rider leave, and Blackheart realises she is Ghost Rider's weakness.

    The next day, Johnny returns to his apartment to find that Roxanne is held captive by Blackheart and he will kill her if he doesn't get the contract of San Venganza. Johnny tries the Penance Stare on Blackheart, but it doesn't work as Blackheart has no soul.

    Johnny then goes to the caretaker at the cemetary, who reveals that he was Carter Slade, the last Ghost Rider, and the one who has hidden the contract all these years. Carter gives Johnny the contract, which is hidden in his hollowed-out spade. Carter can turn into Ghost Rider one last time, and rides with Johnny to the town of San Venganza. He gives Johnny a shotgun then leaves.

    Johnny approaches the town, but is ambushed by Wallow. Fortunately, he is killed by Ghost Rider's hellfire, allowing him to continue on his way. Inside the town, Johnny gives the contract to Blackheart, who then attempts to kill Ghost Rider. Johnny manages to turn the shotgun Carter gave him into a \"hellfire shotgun\", but it still isn't enough to kill Blackheart. Johnny then attempts a Penance Stare, which works this time as Blackheart has 1000 souls in him.

    Mephisto then tells Johnny that he has kept his side of the bargain, and is free to go. Johnny decides that he wants to keep the Ghost Rider curse so that he can use it for good.

    The film ends on Johnny and Roxanne kissing at a tree where they carved their initials when they were younger.

    ","distributor":null,"has_staff_review":null,"id":18,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/868846-ghostriderposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/868846-ghostriderposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/868846-ghostriderposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/868846-ghostriderposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/868846-ghostriderposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/868846-ghostriderposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/868846-ghostriderposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/868846-ghostriderposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/868846-ghostriderposter.jpg","image_tags":"All Images,Movie Posters"},"name":"Ghost Rider","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"}],"rating":"PG-13","release_date":"2020-12-28 22:56:25","runtime":"114","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4025-18/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"228738393","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-103629/","id":103629,"name":"Mark Steven Johnson","site_detail_url":"https://comicvine.gamespot.com/mark-steven-johnson/4040-103629/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-19/","box_office_revenue":"46704056","budget":"40000000","date_added":"2009-07-08 14:28:27","date_last_updated":"2017-08-07 05:29:46","deck":"A film rendition of the Rocketeer comics.","description":null,"distributor":null,"has_staff_review":null,"id":19,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871231-rocketeer.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871231-rocketeer.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871231-rocketeer.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871231-rocketeer.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871231-rocketeer.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871231-rocketeer.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871231-rocketeer.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871231-rocketeer.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871231-rocketeer.jpg","image_tags":"All Images"},"name":"The Rocketeer","producers":null,"rating":"2","release_date":"2017-08-07 05:29:46","runtime":"108","site_detail_url":"https://comicvine.gamespot.com/the-rocketeer/4025-19/","studios":null,"total_revenue":"46704056","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-20/","box_office_revenue":"705304357","budget":"32000000","date_added":"2009-07-08 14:41:00","date_last_updated":"2017-02-24 23:09:19","deck":"Josh Harnett stars in this Vampire saga set in a sleepy little town in Alaska.","description":"

    In the Northern Wastes of Alaska, night falls and stays for a LONG time. Barrow is the most isolated, northernmost town occupied through the long night. And the Vampires have just realized it.

    They send in an agent to prepare the way for them: kill dogs, dispose of cell and satellite phones, etc. This agent is quite mad.

    Now, night has fallen and the residents of Barrow who've decided to stay in town for the long night are in for a surprise. Because vampires are real, fast and ruthless.

    ","distributor":null,"has_staff_review":null,"id":20,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/868866-30.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/868866-30.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/868866-30.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/868866-30.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/868866-30.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/868866-30.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/868866-30.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/868866-30.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/868866-30.jpg","image_tags":"All Images"},"name":"30 Days of Night","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-45055/","id":45055,"name":"Mike Richardson","site_detail_url":"https://comicvine.gamespot.com/mike-richardson/4040-45055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-58534/","id":58534,"name":"Ted Adams","site_detail_url":"https://comicvine.gamespot.com/ted-adams/4040-58534/"}],"rating":"R","release_date":"2017-02-24 23:09:19","runtime":"113","site_detail_url":"https://comicvine.gamespot.com/30-days-of-night/4025-20/","studios":null,"total_revenue":null,"writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-41105/","id":41105,"name":"Ben Templesmith","site_detail_url":"https://comicvine.gamespot.com/ben-templesmith/4040-41105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-42741/","id":42741,"name":"Steve Niles","site_detail_url":"https://comicvine.gamespot.com/steve-niles/4040-42741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-72894/","id":72894,"name":"Stuart Beattie","site_detail_url":"https://comicvine.gamespot.com/stuart-beattie/4040-72894/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-21/","box_office_revenue":"31504633","budget":"32000000","date_added":"2009-07-08 14:55:46","date_last_updated":"2016-12-29 18:43:38","deck":"Viggo Mortenson stars in David Cronenberg's adaptation of the graphic novel about a man trying to escape his violence-riddled past in a small town.","description":"

    Tom Stall (Viggo Mortensen) is living a happy and quiet life with his wife (Maria Bello) and their two children in the small town of Millbrook, Indiana, but one night their idyllic existence is shattered when Tom foils a vicious attempted robbery in his diner. Sensing danger, he takes action and saves his customers and friends in the self-defense killings of two-sought-after criminals.

    Heralded as a hero, Tom's life is changed overnight, attracting a national media circus, which forces him into the spotlight. Uncomfortable with his newfound celebrity, Tom tries to return to the normalcy of his ordinary life only to be confronted by a mysterious and threatening man (Ed Harris) who arrives in town believing Tom is the man who's wronged him in the past. As Tom and his family fight back and struggle to cope with their changed reality, they are forced to confront their relationships and the divisive issues which surface as a result.

    A History of Violence is directed by acclaimed filmmaker David Cronenberg (Dead Ringers). The film stars Viggo Mortensen (The Lord of the Rings), Maria Bello (The Cooler), William Hurt (The Village) and Ed Harris (Pollack).

    Names of characters were changed from the movie because the actors wouldn't be able to pull off Italians and the mobster connection wasn't supposed to be figured out right away.

    ","distributor":null,"has_staff_review":null,"id":21,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/868882-history_of_violence.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/868882-history_of_violence.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/868882-history_of_violence.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/868882-history_of_violence.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/868882-history_of_violence.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/868882-history_of_violence.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/868882-history_of_violence.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/868882-history_of_violence.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/868882-history_of_violence.jpg","image_tags":"All Images"},"name":"A History of Violence","producers":null,"rating":"R","release_date":"2016-12-29 18:43:38","runtime":"96","site_detail_url":"https://comicvine.gamespot.com/a-history-of-violence/4025-21/","studios":null,"total_revenue":"60740827","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-12433/","id":12433,"name":"Vincent Locke","site_detail_url":"https://comicvine.gamespot.com/vincent-locke/4040-12433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-41829/","id":41829,"name":"John Wagner","site_detail_url":"https://comicvine.gamespot.com/john-wagner/4040-41829/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-22/","box_office_revenue":"157299717","budget":"75000000","date_added":"2009-07-08 15:08:53","date_last_updated":"2022-04-30 13:41:49","deck":"The original X-Men movie, Where Professor X leads his group of mutants, and teaches them to use their superhuman abilities.","description":"

    Plot Summary

    As Congress debates the passing of the Mutant Registration Act, more and more humans find themselves changing, receiving strange abilities, becoming mutants. In Mississippi, a young girl finds herself in this very situation and runs away from home to Canada. Here the young girl, named Rogue, meets a cage fighter named Wolverine and the two flee persecution only to be attacked by Sabretooth and Toad, members of the Brotherhood of Mutants. Cyclops and Storm of the X-Men rescue the two, and bring them back to the Xavier School for Gifted Youngsters to meet Professor Charles Xavier and Jean Grey, who explain the purpose of the X-Men. Meanwhile, Toad and a mutant named Mystique kidnap Senator Robert Kelly, a supporter of the Mutant Registration Act. Bringing him to Magneto, their leader, the Brotherhood turns Senator Kelly into a mutant through a machine Magneto controls.

    Soon, an incident at the Xavier School causes Rogue to run away, which the Brotherhood sees as an opportunity to abduct her. After a battle, Rogue is taken by the Brotherhood and brought to their base, where she learns that they intend to use her for their machine. When Senator Kelly arrives at the Xavier School and dies, the X-Men race to save Rogue. The Brotherhood takes Rogue and the machine to Ellis Island and places them in the Statue of Liberty. The X-Men arrive to fight them, but find themselves caught off guard and are quickly beaten, only for them to get their second wind and take down the Brotherhood, saving Rogue and destroying the machine.

    After these events, the X-Men learn that Mystique is alive and impersonating Senator Kelly. Wolverine is sent to Alkali Lake in an attempt to learn more about his mysterious past. And finally, Professor X and Magneto meet up in Magneto's jail cell to play chess and discuss the events that are sure to come, for Magneto will continue his fight. But as Xavier says, the X-Men will always be there to stop him.

    ","distributor":null,"has_staff_review":null,"id":22,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871237-xmen.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871237-xmen.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871237-xmen.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871237-xmen.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871237-xmen.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871237-xmen.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871237-xmen.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871237-xmen.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871237-xmen.jpg","image_tags":"All Images"},"name":"X-Men","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-74372/","id":74372,"name":"Kevin Feige","site_detail_url":"https://comicvine.gamespot.com/kevin-feige/4040-74372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107919/","id":107919,"name":"Lauren Shuler Donner","site_detail_url":"https://comicvine.gamespot.com/lauren-shuler-donner/4040-107919/"}],"rating":"PG-13","release_date":"2022-04-30 13:41:49","runtime":"104","site_detail_url":"https://comicvine.gamespot.com/x-men/4025-22/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9730/","id":9730,"name":"Donner's Company","site_detail_url":"https://comicvine.gamespot.com/donners-company/4010-9730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9731/","id":9731,"name":"Bad Hat Harry Productions","site_detail_url":"https://comicvine.gamespot.com/bad-hat-harry-productions/4010-9731/"}],"total_revenue":"296339527","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-64499/","id":64499,"name":"Bryan Singer","site_detail_url":"https://comicvine.gamespot.com/bryan-singer/4040-64499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111155/","id":111155,"name":"David Hayter","site_detail_url":"https://comicvine.gamespot.com/david-hayter/4040-111155/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-23/","box_office_revenue":"214949694","budget":"110000000","date_added":"2009-07-08 15:16:55","date_last_updated":"2021-08-07 09:46:01","deck":"X2: X-Men United is the sequel to the original film \"X-Men\". The mutants must work together to stop a mutant assassin who has made an attempt on the President's life.","description":"

    Having returned from the north after finding nothing, Wolverine/Logan watches over the school students for a night as Charles Xavier visits Magneto in his plastic confinement prison and Storm and Jean Grey search for a teleporter mutant known as Nightcrawler who attempted to assassinate the president.

    Things become deadly as William Stryker, a scientist who has experimented on mutants, leads a siege on Xavier's mansion- few mutants escape.

    With the school no longer safe, Magneto out of prison and forming a temporary alliance with the X-Men, and Professor Xavier in the hands of Stryker; the mutants team up to stop Stryker's plans to wipe the mutants off the face of the Earth.

    ","distributor":null,"has_staff_review":null,"id":23,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/29350/932575-x_men_two_ver3_xlg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/29350/932575-x_men_two_ver3_xlg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/29350/932575-x_men_two_ver3_xlg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/29350/932575-x_men_two_ver3_xlg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/29350/932575-x_men_two_ver3_xlg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/29350/932575-x_men_two_ver3_xlg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/29350/932575-x_men_two_ver3_xlg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/29350/932575-x_men_two_ver3_xlg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/29350/932575-x_men_two_ver3_xlg.jpg","image_tags":"All Images,X Men"},"name":"X2: X-Men United","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-67098/","id":67098,"name":"Tom DeSanto","site_detail_url":"https://comicvine.gamespot.com/tom-desanto/4040-67098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-74372/","id":74372,"name":"Kevin Feige","site_detail_url":"https://comicvine.gamespot.com/kevin-feige/4040-74372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-107919/","id":107919,"name":"Lauren Shuler Donner","site_detail_url":"https://comicvine.gamespot.com/lauren-shuler-donner/4040-107919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111305/","id":111305,"name":"Ralph Winter","site_detail_url":"https://comicvine.gamespot.com/ralph-winter/4040-111305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111307/","id":111307,"name":"Ross Fanger","site_detail_url":"https://comicvine.gamespot.com/ross-fanger/4040-111307/"}],"rating":"PG-13","release_date":"2021-08-07 09:46:01","runtime":"134","site_detail_url":"https://comicvine.gamespot.com/x2-x-men-united/4025-23/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9730/","id":9730,"name":"Donner's Company","site_detail_url":"https://comicvine.gamespot.com/donners-company/4010-9730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9731/","id":9731,"name":"Bad Hat Harry Productions","site_detail_url":"https://comicvine.gamespot.com/bad-hat-harry-productions/4010-9731/"}],"total_revenue":"407711549","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-53375/","id":53375,"name":"Dan Harris","site_detail_url":"https://comicvine.gamespot.com/dan-harris/4040-53375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61850/","id":61850,"name":"Michael Dougherty","site_detail_url":"https://comicvine.gamespot.com/michael-dougherty/4040-61850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-64499/","id":64499,"name":"Bryan Singer","site_detail_url":"https://comicvine.gamespot.com/bryan-singer/4040-64499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-65489/","id":65489,"name":"Zak Penn","site_detail_url":"https://comicvine.gamespot.com/zak-penn/4040-65489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111155/","id":111155,"name":"David Hayter","site_detail_url":"https://comicvine.gamespot.com/david-hayter/4040-111155/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-24/","box_office_revenue":"234362462","budget":"210000000","date_added":"2009-07-08 15:22:33","date_last_updated":"2018-09-01 19:02:15","deck":"The third and (at the time) final instalment in the X-Men trilogy. Loosely based upon the Dark Phoenix Saga/Gifted storyline, new director Brett Ratner directs the epic, containing a vast array of characters from the X-Universe.","description":"

    X-Men: The Last Stand is the sequel to X-Men: First Class, X-Men and X2: X-Men United.

    The film recreates the famous Dark Phoenix Saga, and also the \"Gifted\" story arc from Astonishing X-Men, which involves a cure for mutants.

    The X Men discover that Jean Grey did not perish after the escape from Stryker and the Weapon X program.

    They go to investigate only to find her greatly changed.

    She joins with Magneto and his brotherhood in their attack on Worthington Industries, makers of the cure for the mutant gene.

    ","distributor":null,"has_staff_review":null,"id":24,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/868931-x3p_003.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/868931-x3p_003.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/868931-x3p_003.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/868931-x3p_003.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/868931-x3p_003.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/868931-x3p_003.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/868931-x3p_003.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/868931-x3p_003.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/868931-x3p_003.jpg","image_tags":"All Images"},"name":"X-Men: The Last Stand","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"}],"rating":"PG-13","release_date":"2018-09-01 19:02:15","runtime":"104","site_detail_url":"https://comicvine.gamespot.com/x-men-the-last-stand/4025-24/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"459359555","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-65489/","id":65489,"name":"Zak Penn","site_detail_url":"https://comicvine.gamespot.com/zak-penn/4040-65489/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-25/","box_office_revenue":"179883157","budget":"150000000","date_added":"2009-07-08 15:31:59","date_last_updated":"2016-10-22 19:19:21","deck":"The fourth X-Men movie, and a prequel to the original trilogy that tells the origins of Wolverine.","description":"

    Plot

    The film takes place over the first stages of James \"Logan\" Howlett's life as he becomes the Wolverine, undergoing the Weapon X program and facing off against comic book characters such as Sabretooth, the Blob and Deadpool.

    ","distributor":null,"has_staff_review":null,"id":25,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/868942-wolverinetheatricalposter_a.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/868942-wolverinetheatricalposter_a.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/868942-wolverinetheatricalposter_a.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/868942-wolverinetheatricalposter_a.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/868942-wolverinetheatricalposter_a.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/868942-wolverinetheatricalposter_a.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/868942-wolverinetheatricalposter_a.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/868942-wolverinetheatricalposter_a.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/868942-wolverinetheatricalposter_a.jpg","image_tags":"All Images,Posters"},"name":"X-Men Origins: Wolverine","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-64499/","id":64499,"name":"Bryan Singer","site_detail_url":"https://comicvine.gamespot.com/bryan-singer/4040-64499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-68404/","id":68404,"name":"Hugh Jackman","site_detail_url":"https://comicvine.gamespot.com/hugh-jackman/4040-68404/"}],"rating":"PG-13","release_date":"2016-10-22 19:19:21","runtime":"107","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-wolverine/4025-25/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"373062864","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-26/","box_office_revenue":"75500759","budget":"100000000","date_added":"2009-07-08 15:39:24","date_last_updated":"2021-01-24 16:58:00","deck":"A Hellblazer adaption based off of Garth Ennis' Dangerous Habits storyline and Jamie Delano's early Hellblazer stories. Keanu Reeves stars as John Constantine, a demon exorcist. ","description":"

    Based on the DC/Vertigo comic book Hellblazer and written by Kevin Brodbin, Mark Bomback and Frank Capello, Constantine tells the story of irreverent supernatural detective John Constantine (Keanu Reeves), who has literally been to hell and back.

    ","distributor":null,"has_staff_review":null,"id":26,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/868950-constantine_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/868950-constantine_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/868950-constantine_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/868950-constantine_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/868950-constantine_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/868950-constantine_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/868950-constantine_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/868950-constantine_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/868950-constantine_poster.jpg","image_tags":"All Images"},"name":"Constantine","producers":null,"rating":"R","release_date":"2021-01-24 16:58:00","runtime":"121","site_detail_url":"https://comicvine.gamespot.com/constantine/4025-26/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"230884728","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-40642/","id":40642,"name":"Jamie Delano","site_detail_url":"https://comicvine.gamespot.com/jamie-delano/4040-40642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-40644/","id":40644,"name":"Garth Ennis","site_detail_url":"https://comicvine.gamespot.com/garth-ennis/4040-40644/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-27/","box_office_revenue":"7986084","budget":"2000000","date_added":"2009-07-08 16:11:59","date_last_updated":"2014-05-11 23:20:50","deck":"A fictionalized documentary about the life of Harvey Pekar, the down-on-his-luck writer responsible for the American Splendor comic book.","description":"

      

    ","distributor":null,"has_staff_review":null,"id":27,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/869048-american_splendor.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/869048-american_splendor.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/869048-american_splendor.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/869048-american_splendor.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/869048-american_splendor.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/869048-american_splendor.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/869048-american_splendor.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/869048-american_splendor.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/869048-american_splendor.jpg","image_tags":"All Images"},"name":"American Splendor","producers":null,"rating":"R","release_date":"2014-05-11 23:20:50","runtime":"101","site_detail_url":"https://comicvine.gamespot.com/american-splendor/4025-27/","studios":null,"total_revenue":"7986084","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-28/","box_office_revenue":null,"budget":"78000000","date_added":"2009-07-08 16:22:01","date_last_updated":"2017-10-03 18:06:46","deck":"Loosely based on Alan Moore's graphic novel of the same name, The League of Extraordinary Gentleman stars Sean Connery as Allan Quartermain.","description":null,"distributor":null,"has_staff_review":null,"id":28,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/869051-league.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/869051-league.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/869051-league.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/869051-league.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/869051-league.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/869051-league.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/869051-league.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/869051-league.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/869051-league.jpg","image_tags":"All Images"},"name":"League of Extraordinary Gentlemen","producers":null,"rating":"3","release_date":"2017-10-03 18:06:46","runtime":"110","site_detail_url":"https://comicvine.gamespot.com/league-of-extraordinary-gentlemen/4025-28/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"179265204","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-29/","box_office_revenue":"3793614","budget":null,"date_added":"2009-07-08 16:22:03","date_last_updated":"2022-02-23 17:52:33","deck":"Film based on the Dark Horse comic of the same name, starring the buxom Pamela Andersen. Whether or not that's a good thing is for you to decide.","description":null,"distributor":null,"has_staff_review":null,"id":29,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869052-barbwireposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869052-barbwireposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869052-barbwireposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869052-barbwireposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869052-barbwireposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869052-barbwireposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869052-barbwireposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869052-barbwireposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869052-barbwireposter.jpg","image_tags":"All Images"},"name":"Barb Wire","producers":null,"rating":"R","release_date":"2022-02-23 17:52:33","runtime":"98","site_detail_url":"https://comicvine.gamespot.com/barb-wire/4025-29/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-364/","id":364,"name":"Dark Horse Comics","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics/4010-364/"}],"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-30/","box_office_revenue":"60000000","budget":"45000000","date_added":"2009-07-08 16:32:06","date_last_updated":"2021-11-07 09:31:18","deck":"First film in the Blade trilogy.","description":"

    In 1998, a Blade movie was made by New Line Cinema and directed by Stephen Norrington. Wesley Snipes played Blade in the film (he was originally going to be in a Black Panther film but it was cancelled). In the film, Blade was teamed up with Whistler to try to find and kill Deacon Frost (played by Stephen Dorff) trying to resurrect La Magra the Blood God.

    Synopsis

    While trying to look for clues on Frost, he encountered his lackey Quinn who he left to burn after a vampire rave. He was still alive, and attacked the coroners inspecting him. He also bit a woman named Karen Jenson. Blade feels sorry for what happened to her, and decides to take her back to his hideout to try and help her before she turns.

    Blade also discovers that Frost needs him for the ceremony to resurrect the Blood God. After returning to his hideout, he finds Whistler is nearly dead and Karen taken hostage by Frost's men. Whistler then asked him to kill him before he turns into a vampire, Blade regrets at first but Whistler forces him to do so. So Blade walks away as Whistler kill himself. Blade then prepares for his battle with Frost, and makes his way to his hideout. After killing many familiars and vampires, he discovers his mother was still alive but now a vampire, and it was Deacon who bit her. They then knock him out and take him to the Temple of Eternal Night. He is locked into a device where his wrists are cut and his blood drips into a hole in the floor where it seeps down the to the sacrificed pure bloods and eventually Frost. Karen then arrives to free him and lets him suck her blood so he can regain his strength. His mother arrives to kill but he is able to stop her, she then says \"are you going to kill your mother\". To which he says, \"I must release you\" and kills her. In anger, he grabs his clothes and goes after Frost.

    He finally kills Quinn and all of the other enemy soldiers, and finally faces Frost. Blade is able to slice off his arm and and cut him in half. but he discovers he is still alive when he reattaches his body and grows a new arm. Frost begins to beat Blade until he finds the EDTA he brought with him, and throws all of them into Frost which causes him to explode. He and Karen then leave the temple and she asks she going to make more of the antidote to cure him. But Blade says to keep and just make him a new serum to stop his thirsts. He is then seen in Russia killing a vampire as the film ends.

    Influence on Comics

    The movie took many liberties with character's mythology. The character's only \"powers\" in comics were that he was immune to vampire bites and had a prolonged lifespan. In the film, he is born with all the vampire strengths and none of their weaknesses. This is more similar to Vampire Hunter D, a series of novels that began publication in Japan in 1983, and the first animated movie followed in 85. A year after the Blade film's release, Marvel Comics gave Blade the powers of the daywalker in Peter Parker: Spider-Man #8 - Blood Feud. Blade gains these powers by being bitten by Morbius the Living Vampire. He also started wearing sunglasses and a black trench coat. His wooden stakes turned to steel, and he starting carrying other side weapons seen in the film.

    ","distributor":null,"has_staff_review":null,"id":30,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/2615005-bladeposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/2615005-bladeposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/2615005-bladeposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/2615005-bladeposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/2615005-bladeposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/2615005-bladeposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/2615005-bladeposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/2615005-bladeposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/2615005-bladeposter.jpg","image_tags":"All Images"},"name":"Blade","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-96344/","id":96344,"name":"Wesley Snipes","site_detail_url":"https://comicvine.gamespot.com/wesley-snipes/4040-96344/"}],"rating":"R","release_date":"2021-11-07 09:31:18","runtime":"120","site_detail_url":"https://comicvine.gamespot.com/blade/4025-30/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"131183530","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46778/","id":46778,"name":"David S. Goyer","site_detail_url":"https://comicvine.gamespot.com/david-s-goyer/4040-46778/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-31/","box_office_revenue":"104454762","budget":"80000000","date_added":"2009-07-08 16:35:16","date_last_updated":"2013-06-03 16:54:46","deck":"Tom Hanks stars in this adaptation of the graphic novel that focuses on a small boy's reaction to his hit-man father's profession.","description":"
    ","distributor":null,"has_staff_review":null,"id":31,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/869074-road_to_perdition.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/869074-road_to_perdition.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/869074-road_to_perdition.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/869074-road_to_perdition.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/869074-road_to_perdition.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/869074-road_to_perdition.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/869074-road_to_perdition.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/869074-road_to_perdition.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/869074-road_to_perdition.jpg","image_tags":"All Images"},"name":"Road to Perdition","producers":null,"rating":"4","release_date":"2013-06-03 16:54:46","runtime":"117","site_detail_url":"https://comicvine.gamespot.com/road-to-perdition/4025-31/","studios":null,"total_revenue":"181001478","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-32/","box_office_revenue":null,"budget":"54000000","date_added":"2009-07-08 16:35:30","date_last_updated":"2018-03-04 19:46:24","deck":"The second film in the Blade trilogy.","description":"

    Blade teams-up with a vampire group named Bloodpack to take on a new threat.

    ","distributor":null,"has_staff_review":null,"id":32,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869075-blade_ii_movie.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869075-blade_ii_movie.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869075-blade_ii_movie.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869075-blade_ii_movie.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869075-blade_ii_movie.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869075-blade_ii_movie.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869075-blade_ii_movie.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869075-blade_ii_movie.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869075-blade_ii_movie.jpg","image_tags":"All Images"},"name":"Blade II","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-96344/","id":96344,"name":"Wesley Snipes","site_detail_url":"https://comicvine.gamespot.com/wesley-snipes/4040-96344/"}],"rating":"R","release_date":"2018-03-04 19:46:24","runtime":"117","site_detail_url":"https://comicvine.gamespot.com/blade-ii/4025-32/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"155010032","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46778/","id":46778,"name":"David S. Goyer","site_detail_url":"https://comicvine.gamespot.com/david-s-goyer/4040-46778/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-33/","box_office_revenue":"52397389","budget":"65000000","date_added":"2009-07-08 16:38:46","date_last_updated":"2021-02-06 15:46:30","deck":"The final film in the Blade trilogy.","description":"

    Blade teams up with the Nightstalkers, a group of vampire hunters, to stop the resurrection of Dracula.

    ","distributor":null,"has_staff_review":null,"id":33,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869077-blade_trinity_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869077-blade_trinity_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869077-blade_trinity_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869077-blade_trinity_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869077-blade_trinity_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869077-blade_trinity_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869077-blade_trinity_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869077-blade_trinity_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869077-blade_trinity_poster.jpg","image_tags":"All Images"},"name":"Blade: Trinity","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-46778/","id":46778,"name":"David S. Goyer","site_detail_url":"https://comicvine.gamespot.com/david-s-goyer/4040-46778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-96344/","id":96344,"name":"Wesley Snipes","site_detail_url":"https://comicvine.gamespot.com/wesley-snipes/4040-96344/"}],"rating":"R","release_date":"2021-02-06 15:46:30","runtime":"113","site_detail_url":"https://comicvine.gamespot.com/blade-trinity/4025-33/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"128905366","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46778/","id":46778,"name":"David S. Goyer","site_detail_url":"https://comicvine.gamespot.com/david-s-goyer/4040-46778/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-34/","box_office_revenue":"403706375","budget":"140000000","date_added":"2009-07-08 16:42:42","date_last_updated":"2021-02-02 16:47:45","deck":"The first Spider-Man movie directed by Sam Raimi and starring Tobey Maguire as Peter Parker/Spider-Man.","description":"

    Plot

    Peter Parker is a shy, nerdy senior in high school. He is a brilliant scientist for his age, and lives with his elderly Uncle Ben and Aunt May, who have raised him, presumably since his parents were killed. In the first scene, Peter sees and narrates his love for Mary Jane Watson, the literal ‘girl next door’ to Peter. She is pretty and popular, the kind of girl Peter could never dream of having. Peter’s best friend is Harry Osborn, and along with being friends, the two help each other with school (usually Peter assisting Harry with math and science). Harry’s father is the workaholic Norman Osborn, president of the Oscorp Manufacturing Corporation, a primary supplier of advanced weapons to the United States Army.

    The first few scenes introduce us to the protagonist, Peter Parker, as well as his best friend Harry Osborn and crush Mary Jane Watson. Peter is going on a field trip with his class to a highly respected genetics lab. During the tour, someone notes a spider is missing, but the tour guide dismisses the observation, saying it’s probably in testing. Peter is then bitten by the spider (although he does not know it is the test spider) and crushes it.

    At the lab of his company, Norman Osborn shows off his latest invention to an Army general: an advanced flying glider with various weapons that a man can ride. He then turns to what the general seems most interested in: a chemical that enhances physical human attributes to super-human levels. He tells the general the formula is ready, but his bumbling partner Dr. Stromm pipes in that it is not, as it has shown an increase in aggression and irrational violence in all test subjects. Osborn is angered by the undermining, and the general dismisses both men as well as the formula, informing Osborn of the Army’s intent to pull all funding and transfer all contracts to Oscorp’s biggest competitor.

    Back home, Ben and May are discussing money issues when Peter arrives and goes upstairs, claiming he feels ill. He passes out on the floor and has confusing dreams. We zoom in on his DNA, seeing it transform to that of a spider.

    Meanwhile, back at Oscorp, Osborn is proceeding to human testing, but without approval from anyone he has only one test subject: himself. He proceeds to ignore Stromm’s protests. When the test goes awry, he loses his mind and kills Stromm in a fit of rage.

    The next day, Parker rushes out of to the bus and finds that, as he bangs on the side, the banner sticks to his unclenched hand. Later, during lunch of the same day, he sits down at a table in the cafeteria. Watson passes him, and in Parker's mind he sees her slipping on a puddle, falling back and throwing her lunch into the air. Parker reacts almost before it happens and catches her, then her tray, then all of her lunch items on the tray. They have a short conversation, and then Mary Jane goes back to her popular friends. Parker tries to put down a fork, but finds that it too is stuck to his hand. He pulls it off with his other hand and finds a strand of webbing shoots out of his wrist. It snags a tray of food, and Parker jerks it, trying to detach the webbing. It instead pulls the whole tray, which lands on Flash and covers him in food. Parker quickly gets up and exits, only to drag the tray behind him by his webbing. Flash looks around for whoever hit him with a lunch and sees Parker exit.

    The two fight outside and Parker easily bests him, watching the punches fly by his head. Parker flees his school and finds that he can crawl up walls and has incredible agility, as well as an organic webbing he can use to swing from building to building. Later, Parker takes out the trash and has a conversation with MJ; it is cut short, however, by her boyfriend driving up in his fancy new sports car. The next few scenes show Parker practicing his new abilities and designing a basic costume. He also looks in the paper and sees several car ads. They are all very expensive. He then sees an ad for a fight club, offering $3,000 for anyone who can last three minutes with the champion.

    Parker has a heated argument with Uncle Ben on his way to the fight club. After he gets there, he easily bests the champion in less than two minutes. When he goes to collect his winnings, the promoter refuses to pay him. As Parker turns to leave, the promoter is robbed, and Parker lets the thief walk right past him in revenge. Later, Parker sees Uncle Ben in the middle of a crowd. Ben has been shot. Parker holds Ben until he dies, then overhears two cops saying they’ve found the killer and are chasing him. Parker quickly joins the chase and catches the guy, recognizing him as the thief from the fight club. Parker realizes if he’d done the right thing Ben would still be alive. During their fight, the thief trips and falls out of a window, to his death.

    Later in the night, the general that fired Osborn and Oscorp is at a demonstration at the competitor’s facility. A masked and cackling figure comes out of the sky and kills them all.

    Soon after graduation, Parker moves into an apartment with Harry and designs a new Spider-Man outfit. He assumes his identity as the protector of New York. He begins taking pictures of himself as Spidey for the Daily Bugle, only to find their unscrupulous editor J. Jonah Jameson is using the pictures and headlines to paint Spider-Man as a menace to the city. Also, Parker discovers that Harry and MJ are dating, but does not tell Harry he knows.

    Osborn’s company decides to sell out to their competitor, but also fires him. At a large parade a day or so after, all the members of the Oscorp board, as well as Parker, MJ and Harry, are attending. During the parade, the masked figure kills all the board members and attacks Mary Jane, but is defeated by Spider-Man. The villain slinks off to lick his wounds.

    The next day, Parker goes to deliver his pictures of the festival and of the fight to Jameson, who has just named the villain the Green Goblin. Just as Parker leaves, the Goblin attacks, trying to find a link to Spider-Man. Spidey shows up to save Jameson, but is captured by the Goblin, who tries to talk him into becoming his partner. Spider-Man refuses and the Goblin lets him go, telling him the city will turn against him sooner or later.

    Soon after, MJ is attacked and saved by Spider-Man, and the two share a passionate kiss. Spider-Man then goes to save someone from a burning building, but finds it is the Goblin, who attacks and injures him. Both escape and switch into their secret identities. They then both go to a dinner with the Parkers, Osborns and Watson all in attendance. During the meal, Osborn sees Parker's scratch and realizes he is Spider-Man, but says nothing. Later that night, he and the Goblin argue with each other about how to deal with Spider-Man. In the end, they decide to kill those close to him and then Spidey himself. Goblin attacks May but does no permanent damage, and then kidnaps MJ. Spider-Man finds him and barely saves MJ and a few civilians the Goblin also endangered. The Goblin then drags Parker off to a new location where the two fight; Parker emerges victorious. Osborn reveals his true identity and presses a button on his suit, which positions his glider silently behind Spider-Man. He then hits another button and it flies forward, but Parker dodges and it kills the Goblin instead. His last words are a request that Parker not tell Harry about his alter ego.

    Parker delivers Osborn’s body to the Osborn residence, but Harry catches him. However, he only sees the Spider-Man outfit and vows to make Spider-Man pay, thinking he killed his father. The last scene of the movie is the funeral, at which MJ tells Parker she loves him. However, he has realized that if any of his enemies find out his identity, being close is only endagering her. Parker tells MJ he does not love her, so he can continue being Spider-Man without endangering her.

    Legacy

    Spider-Man was critically and financially successful at the box office, with critics liking the performances of Maguire, Dafoe and Simmons as well as the light direction and tone. The success of the film helped green light a better received sequel in 2004 and green light tons of Marvel films, leading up to Iron Man (2008), the genesis of the Marvel Cinematic Universe. Maguire's performance has been praised by his successor actors Andrew Garfield (The Amazing Spider-Man) and Tom Holland (MCU).

    ","distributor":null,"has_staff_review":null,"id":34,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/869105-spiderman_the_movie_poster_starring_tobey_maguire.jpg","image_tags":"All Images"},"name":"Spider-Man","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"}],"rating":"PG-13","release_date":"2021-02-02 16:47:45","runtime":"121","site_detail_url":"https://comicvine.gamespot.com/spider-man/4025-34/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"821708551","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-113953/","id":113953,"name":"David Koepp","site_detail_url":"https://comicvine.gamespot.com/david-koepp/4040-113953/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-35/","box_office_revenue":"38395030","budget":"53000000","date_added":"2009-07-08 16:45:05","date_last_updated":"2017-06-29 14:22:38","deck":"Frank Miller returned to the director's chair to tackle Eisner's Spirit comic.","description":"

    The Spirit, killed and reborn a hero, must work with the police to take down the evil Octopus before he becomes immortal.

    ","distributor":null,"has_staff_review":null,"id":35,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/869090-spirit_ver14.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/869090-spirit_ver14.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/869090-spirit_ver14.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/869090-spirit_ver14.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/869090-spirit_ver14.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/869090-spirit_ver14.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/869090-spirit_ver14.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/869090-spirit_ver14.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/869090-spirit_ver14.jpg","image_tags":"All Images"},"name":"The Spirit","producers":null,"rating":"3","release_date":"2017-06-29 14:22:38","runtime":"102","site_detail_url":"https://comicvine.gamespot.com/the-spirit/4025-35/","studios":null,"total_revenue":null,"writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-7082/","id":7082,"name":"Frank Miller","site_detail_url":"https://comicvine.gamespot.com/frank-miller/4040-7082/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-36/","box_office_revenue":"52300000","budget":"62000000","date_added":"2009-07-08 16:48:54","date_last_updated":"2021-04-24 11:49:59","deck":"A movie that had a comic book tie-in of the same name, published by Dark Horse.","description":null,"distributor":null,"has_staff_review":null,"id":36,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869093-aeon_flux_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869093-aeon_flux_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869093-aeon_flux_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869093-aeon_flux_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869093-aeon_flux_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869093-aeon_flux_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869093-aeon_flux_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869093-aeon_flux_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869093-aeon_flux_poster.jpg","image_tags":"All Images"},"name":"Æon Flux","producers":null,"rating":"PG-13","release_date":"2021-04-24 11:49:59","runtime":"93","site_detail_url":"https://comicvine.gamespot.com/on-flux/4025-36/","studios":null,"total_revenue":"52300000","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-37/","box_office_revenue":"34687912","budget":"85000000","date_added":"2009-07-08 16:51:05","date_last_updated":"2017-06-13 20:23:12","deck":"Film based on one of Britain's most popular comic characters, the star of 2000 AD, Judge Dredd.","description":"

    Judge Dredd must might to clear his name.

    ","distributor":null,"has_staff_review":null,"id":37,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871186-dread.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871186-dread.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871186-dread.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871186-dread.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871186-dread.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871186-dread.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871186-dread.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871186-dread.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871186-dread.jpg","image_tags":"All Images"},"name":"Judge Dredd","producers":null,"rating":"R","release_date":"2017-06-13 20:23:12","runtime":"96","site_detail_url":"https://comicvine.gamespot.com/judge-dredd/4025-37/","studios":null,"total_revenue":"78800000","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-38/","box_office_revenue":"54870175","budget":"40000000","date_added":"2009-07-08 17:00:23","date_last_updated":"2020-08-06 16:05:14","deck":"The film featuring Image Comics most renowned character, good ol' Al Simmons.","description":"

    Based on the character Spawn created by Todd McFarlane, assassin Al Simmons is double crossed and murdered by Jason Wynn. Al makes a deal with the devil to retun to see his wife. He is then ordered by Clown (one of the devil's minions) to kill Wynn who has made a deal with Clown to start the Amageddon and allow Hell to attack Heaven.

    ","distributor":null,"has_staff_review":null,"id":38,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/872151-spawn.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/872151-spawn.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/872151-spawn.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/872151-spawn.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/872151-spawn.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/872151-spawn.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/872151-spawn.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/872151-spawn.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/872151-spawn.jpg","image_tags":"All Images"},"name":"Spawn","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-3380/","id":3380,"name":"Todd McFarlane","site_detail_url":"https://comicvine.gamespot.com/todd-mcfarlane/4040-3380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-48161/","id":48161,"name":"Brian Witten","site_detail_url":"https://comicvine.gamespot.com/brian-witten/4040-48161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111311/","id":111311,"name":"Clint Goldman","site_detail_url":"https://comicvine.gamespot.com/clint-goldman/4040-111311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111312/","id":111312,"name":"Alan C. Blomquist","site_detail_url":"https://comicvine.gamespot.com/alan-c-blomquist/4040-111312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111313/","id":111313,"name":"Adriana A.J. Cohen","site_detail_url":"https://comicvine.gamespot.com/adriana-aj-cohen/4040-111313/"}],"rating":"PG-13","release_date":"2020-08-06 16:05:14","runtime":"96","site_detail_url":"https://comicvine.gamespot.com/spawn/4025-38/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9732/","id":9732,"name":"McFarlane Films","site_detail_url":"https://comicvine.gamespot.com/mcfarlane-films/4010-9732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9733/","id":9733,"name":"New Line Cinema","site_detail_url":"https://comicvine.gamespot.com/new-line-cinema/4010-9733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9734/","id":9734,"name":"Pull Down Your Pants Pictures","site_detail_url":"https://comicvine.gamespot.com/pull-down-your-pants-pictures/4010-9734/"}],"total_revenue":"87840042","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-3380/","id":3380,"name":"Todd McFarlane","site_detail_url":"https://comicvine.gamespot.com/todd-mcfarlane/4040-3380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-62233/","id":62233,"name":"Alan McElroy","site_detail_url":"https://comicvine.gamespot.com/alan-mcelroy/4040-62233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-105719/","id":105719,"name":"Mark A.Z. Dippé","site_detail_url":"https://comicvine.gamespot.com/mark-az-dippe/4040-105719/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-39/","box_office_revenue":"37962774","budget":"37000000","date_added":"2009-07-08 17:02:37","date_last_updated":"2013-04-03 12:06:36","deck":"George Lucas produced this Howard the Duck adaptation, widely considered to be the largest mis-step in his career.","description":"

    \"Howard the Duck\", a sarcastic humanoid duck is accidentally brought to Earth through an experiment being performed by a Cleveland physicist and his assistant Phil Blumburtt (Tim Robbins). After he rescues singer Beverly Switzer (Lea Thompson) they must stop an alien invader.

    ","distributor":null,"has_staff_review":null,"id":39,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/869101-howard_the_duck_ver1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/869101-howard_the_duck_ver1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/869101-howard_the_duck_ver1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/869101-howard_the_duck_ver1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/869101-howard_the_duck_ver1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/869101-howard_the_duck_ver1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/869101-howard_the_duck_ver1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/869101-howard_the_duck_ver1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/869101-howard_the_duck_ver1.jpg","image_tags":"All Images"},"name":"Howard the Duck","producers":null,"rating":"2","release_date":"2013-04-03 12:06:36","runtime":"110","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck/4025-39/","studios":null,"total_revenue":"47962774","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-40/","box_office_revenue":"154695569","budget":"100000000","date_added":"2009-07-08 17:08:55","date_last_updated":"2021-11-06 00:52:26","deck":"The first [official] Fantastic Four movie to receive a cinema release.","description":null,"distributor":null,"has_staff_review":null,"id":40,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869104-fantastic_four_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869104-fantastic_four_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869104-fantastic_four_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869104-fantastic_four_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869104-fantastic_four_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869104-fantastic_four_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869104-fantastic_four_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869104-fantastic_four_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869104-fantastic_four_poster.jpg","image_tags":"All Images"},"name":"Fantastic Four","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"}],"rating":"PG-13","release_date":"2021-11-06 00:52:26","runtime":"106","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4025-40/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"330579719","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111317/","id":111317,"name":"Michael France","site_detail_url":"https://comicvine.gamespot.com/michael-france/4040-111317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-119432/","id":119432,"name":"Mark Frost","site_detail_url":"https://comicvine.gamespot.com/mark-frost/4040-119432/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-41/","box_office_revenue":"131921738","budget":"130000000","date_added":"2009-07-08 17:13:35","date_last_updated":"2021-11-06 00:52:33","deck":"Galactus is coming and he sends his trusted herald to find a suitable planet to consume. Sequel to the 2005 Tim Story Fantastic Four movie.","description":null,"distributor":null,"has_staff_review":null,"id":41,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869109-fanfour2_newposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869109-fanfour2_newposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869109-fanfour2_newposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869109-fanfour2_newposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869109-fanfour2_newposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869109-fanfour2_newposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869109-fanfour2_newposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869109-fanfour2_newposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869109-fanfour2_newposter.jpg","image_tags":"All Images"},"name":"Fantastic Four: Rise of the Silver Surfer","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"}],"rating":"PG","release_date":"2021-11-06 00:52:33","runtime":"89","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-rise-of-the-silver-surfer/4025-41/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"289047763","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-119436/","id":119436,"name":"Don Payne","site_detail_url":"https://comicvine.gamespot.com/don-payne/4040-119436/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-42/","box_office_revenue":"373585825","budget":"200000000","date_added":"2009-07-08 17:18:46","date_last_updated":"2021-02-02 16:47:34","deck":"Spider-Man returns in this smash hit sequel and has to face off against the deadly genius Doc Ock as well as his own sense of morality and responsibility.","description":"

    Plot

    After the traumatic events of the previous film, Spider-man (Tobey Maguire) continues his duties as the Spectacular Spider-man whilst still trying to form a relationship with the beautiful Mary Jane Watson. (Kirsten Dunst) Peter starts to learn what he must sacrifice in order to fulfill his duties as Spider-man, as his attendence at college starts slipping.

    Peters lecturer Dr. Curt Conners (Dylan Baker) organises for his dear friend and former colleague Dr. Otto Octavius (Alfred Molina) to meet with Peter in terms of teaching purposes as well as hopes to teach some dicipline. Peter joins Dr. Octavius and his wife where the Doctor explains his profound love for his wife and the promising results his new experiment with tridium may create.

    Meanwhile, Mary Jane is audtioning for music productions just off broadway with high hopes for Peter to watch her. When Peters responsibility of Spider-man rears its head, he misses Mary Janes shows and in the process she falls for John Jameson (Daniel Gillies) the son of Peters harsh and arrogant boss of the daily bugle; J Jonah Jameson. (J. K. Simmons) While his best friend Harry Osborn (James Franco) starts to obsess over the assumption Spider-man killed his father.

    Peter is left questioning whether or his responsibilites of being Spider-man is worth the trouble its causing his alter ego but reminds himself of the guilt of his uncle Ben's death. The reveal of Dr. Octavius's new experiment comes to the light of day as multiple scientists, Peter and Harry go to witness the new event. Since Harry has taken over his fathers business of Oscorp he supplies the tridium for the experiment. The doctor reveals his new equipment in order to carry out the experiment, a set of 4 mechanical arms which attach to his body. He points out a microchip that keeps him in control of them and not vice versa. The experiment starts to lose control as the tridium is added causing beams of energy to reach out of bounds and smash the ceiling and walls. Panic spreads as Harry demands for the Doctor to stop it all, but he beleives he has it all under control. When a beam of energy strikes the Doctors wife and glass kills her, Spider-Man swoops in to save Harry from impending death. Distraught that his wife has been killed, Otto turns around only to recieve an energy beam that fuses the arms to his body and fries the microchip. Spider-man tears out the energy source and stops the experiment as everyone is escorted to Hospital.

    Before surgery, Otto awakes in a frenzy and kills the orderlys with his 'Tentacles' and Doctor Octopus is born.

    Peter and his aunt May (Rosemary Harris) go to the bank hoping for a loan to aid them with thier financial difficulties. Doc Ock breaks into the bank by force and attempts to steal all the money in order to Re-create his experiment in an abondoned warehouse. In fear that anyone could be seriously injured including his aunt, Peter changes into Spider-man and battles Ock. Mid-battle he realises his powers aren't working properly, this gives Ock the chance to take his aunt may and climb a building. After another battle Spider-man saves his aunt, but Ock gets away.

    Next, Peter is heartbroken after he makes it to one of Mary Janes shows and she reveals she's engaged to John Jameson. This causes Peters powers to malfunction yet again and continue to question whether being Spider-Man is worth it. Heartbroken and unsure of himself, he literally bins the suit and tries to focus on his social life instead. Meanwhile, Doc Ock invades Oscorp and attacks Harry Osborn in hopes of stealing the vital Tridium he can supply. Upon realisation he has none, Harry strikes a deal that if Doc Ock can bring Spider-Man to him alive, he will gather enough Tridium as a reward. Harry gives him Peter Parkers name as he knows he takes multiple Spider-Man photos for the Daily Bugle. After Ock has left, Harry realises what he has just sent after his best friend.

    Because of Peter's decision to give up Spider-Man, he gains a newfound confidence. He decides to share his secret identity with Mary Jane. A passionate talk at a cafe' is disturbed as Doc Ock breaks in stealing Mary Jane away. This forces Peter to pick up his costume (Now as the Daily Bugle, much to J Jonah Jamesons discontent) and chase Ock. They meet on a train and fight an incredibly grueling battle. Ock destroys the Train controls and escapes leaving Spider-Man to save everyone on board. Using his webs, he stops the train but passes out due to exhaustion. He is unmasked by the train passengers who are shocked to see he is only a young man. Ock returns and sucker punches Spidey only to whisk him away.

    At Oscorp, Spidey is dropped off for Harry and lays unconscious upon a table, Ock leaves with his Tridium. Harry, wielding a knife unmasked Spidey only to learn he is actually his best friend Peter. Peter wakes up and informs Harry theres no time to explain, Mary janes been kidnapped. Harry, shocked lets him go. As Peter goes off as Spider-Man in search for Ock, Harry hallucinates and see's his father talking to him, pointing him to his hidden laboratory. Harry walks through to discover the Goblin Serum, glider and masks.

    When Spidey finds Ock, the experiment has begun. The final battle insues which results in Spidey's mask being torn, revealing his face. Mary Jane notices this during the fight. Ock is hit hard as the experiment starts to lose control. Peter reasons with Ock and begs him to stop it, he reveals it can't be stopped only drowned. As Spidey saves Mary Jane, Ock tears down the experiment and the whole warehouse with it. Stopping the reaction, but drowning himself in the process.

    Without a chance to talk, Spidey lets Mary Jane go, and run into her fiancee's arms.

    The next day Peter refuses to go to Mary Janes wedding but is suprised as she shows up at his flat. After sharing a kiss, its revealed she left John for Peter. Unfortunately for Peter, Police sirens are heard, looking at Mary Jane she smiles and utters the famous line 'Go Get 'em Tiger'.

    The Film ends as Spidey swings from his flat window with Mary Jane Looking on.

    Reception

    The film was critically and financially successful. It is considered one of the best and most influential superhero films of all time alongside The Dark Knight, Into the Spider-Verse and Logan. The film won an Oscar for Best Visual Effects, making the first Spider-Man film to win an Oscar followed by Into the Spider-Verse in 2018 when it won Best Animated Feature.

    ","distributor":null,"has_staff_review":null,"id":42,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/869113-spiderman2_2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/869113-spiderman2_2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/869113-spiderman2_2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/869113-spiderman2_2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/869113-spiderman2_2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/869113-spiderman2_2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/869113-spiderman2_2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/869113-spiderman2_2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/869113-spiderman2_2.jpg","image_tags":"All Images"},"name":"Spider-Man 2","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"}],"rating":"PG-13","release_date":"2021-02-02 16:47:34","runtime":"127","site_detail_url":"https://comicvine.gamespot.com/spider-man-2/4025-42/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"783766341","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-76650/","id":76650,"name":"Alvin Sargent","site_detail_url":"https://comicvine.gamespot.com/alvin-sargent/4040-76650/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-43/","box_office_revenue":null,"budget":null,"date_added":"2009-07-08 17:21:38","date_last_updated":"2013-01-14 21:32:43","deck":"Animated film based on Brian Pulido's Lady Death.","description":"

    In 15th Century Sweden lived a young woman named Hope who is the daughter of a ruthless mercenary named Matthias. Matthias is in fact Lucifer in disguise and upon performing a satanic ritual he was about to be detain by a mob of raging villagers not only for being the devil but for causing the village so much grief and sorrow for his actions of sacrificing young men to eternal damnation. Matthias or rather Lucifer escapes the mob by transporting himself to Hell leaving his own daughter behind who ends up paying for her father's crimes. Hope now a prisoner wearing rags is being sentenced to be burn on a stake for being the daughter of the devil. As the fire begins to burn at the base of the stake, Lucifer contacts her through a proxy with a choice to either have her life spared by joining him in Hell or suffer by being burn to death. Hope agrees to her father's terms and thus two flying demons comes from a portal to Hell extract her from the burn stake and took her into the portal leading to Hell itself.

    Before Hope knows it she finds herself in Lucifer's court where he offers her to join his side, but after being taken prisoner and having her whole life change over the course of one day Hope decline her father's offer with resistance that leads Lucifer to cast her out of his palace. Hope now lost within the wastelands of Hell, as she tries to survive something within her awakens as she discovers that she now processes demonic powers which she didn't had in the land of the living. After taming two demon dogs that tried to kill her she encounters Cremator. A former servant to Lucifer only end up being abandon by his master as has since lived out in the wastelands doing what he does best: making weapons. As both out casts turn to have similar goals, Cremator helps train Hope to become a warrior who'll defeat Lucifer. As time pass by, Hope's appearance changes as her skin gradually became lighter as well as her hair. By the time she's fully succeeded in using a sword her skin & hair is now as white as snow. The innocent and kind woman known as Hope was no more as she now proclaims to be known as Lady Death.

    With Lady Death being Hell's new female warrior, she and Cremator search and seek demons who oppose Lucifer's rule. And eventually an army is form consisting of hellspawn creatures all being lead by the fearless yet beautiful female warrior Lady Death. Upon attacking Lucifer's palace, Lady Death eventually comes face to face with her father over a challenge on who should take control over hell. After the battling against him, Lady Death manages to kill Lucifer and thus she is now Hell's new ruler. Even though she succeeded in defeating her own father, Lady Death is unable to return to the land of the living. In order for her to be able to leave Hell is by killing off all of Lucifer's henchmen who have fled sometime before the battle occurred. Lady Death is determine to hunt them down one by one.

    ","distributor":null,"has_staff_review":null,"id":43,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869114-photo1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869114-photo1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869114-photo1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869114-photo1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869114-photo1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869114-photo1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869114-photo1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869114-photo1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869114-photo1.jpg","image_tags":"All Images"},"name":"Lady Death","producers":null,"rating":"4","release_date":"2013-01-14 21:32:43","runtime":"80","site_detail_url":"https://comicvine.gamespot.com/lady-death/4025-43/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-44/","box_office_revenue":"132177234","budget":"137000000","date_added":"2009-07-08 17:27:54","date_last_updated":"2021-02-02 17:39:42","deck":"Dr. Bruce Krenzler, working on a way to help heal and advance frogs, accidentally, while attempting to save someone's life, gets an overdose of gamma radiation. This radiation infused with nanomeds, turns him into a being of psychological trauma known as the Hulk.","description":"

    Plot

    In the 1960s, Dr. David Banner was creating an idea to add on to the immune system, which General Ross declined to use since it is unethical to experiment on humans. David experimented on himself against Ross' protocol. His wife was conceived by his altered sperm and gave birth to Robert Bruce Banner by 1968. David researched his experiment and how the genes passed on to his son. By 1972, he plotted an attempt to explode his hometown and eventually kill his son. His wife, Edith got in the way. This resulted in repressed memories for his son, now known as Bruce Krenzler for the next thirty years as David stayed in prison.

    Bruce Krenzler works at Berkeley Institute, with Betty Ross to test nanomeds and gamma radiation on frogs. The first test failed, resulting in a frog reduced to blood. During the aftermath, Bruce met Talbot, a narcissistic member of Atheon and a former military general. As Bruce began another test, his colleague Harper accidentally started the gamma radiation, which caused Bruce to get an amount of radiation. At the lab hospital, Betty paid a visit and worried how he could have died from the test. All of a sudden, Bruce encounters his real father, David and three dogs he has for test subjects. David explained that Bruce's surname is actually Banner and not Krenzler. Bruce felt angry from seeing his father, which made him become the Hulk and destroy a half of Berkeley, including the Gammasphere.

    The morning after, Betty saw Bruce at her house and wondered what happened at Berkeley. Bruce later confronted General Ross, who knew what Bruce's heritage is. Betty visited David and talked about how he passed on his genes to his son. Hours later, David called Bruce and explained that he mutated his three dogs with his son's DNA and the nanomeds to become feral beasts. He also said that he sent them towards Betty. Talbot arrived, causing Bruce to get more anxious. This caused Bruce to go towards Betty and kill the three dogs.

    After two exhausting nights, Bruce felt very worried about his \"disease\" while he talked to Betty. He was tranquilized by the General's soldiers and sent to a desert base. Meanwhile, David experimented on himself with his son's DNA and the nanomeds. Since he is elderly, he gained the ability to absorb everything he touched.

    Talbot was seen psychologically torturing Bruce so the earlier can make an army based on Bruce's DNA. Bruce was put to sleep inside an underwater tank, but the repressed memories inside him made Bruce wake up and become the Hulk. He escaped the facility and ran towards the desert, the canyons and the Golden Gate Bridge, destroying military vehicles in the process.

    Betty gently intervened so Bruce would calm down and see his father for one last time. David became delusional and upset, claiming the military is full of dictators, which made him bite into the electric cable and become a being of lightning. Bruce became the Hulk and followed his father to Pear Lake. David was able to absorb Bruce's energy, but it made him became a giant green bubble of memories. A missile sent by Ross killed David and left Bruce alive.

    One year later, Bruce stayed in South America to help the poor and warned the paramilitary in the Spanish language that they wouldn't like him when he's angry.

    Reception

    While the film got number 1 at the first weekend at the box office, the film had polarized reception. Contemporary reviewers didn't like how the Hulk showed up rarely as well as the scenes of dialogue and visual effects. Over time, people have been more kind to the film that it is an analysis of psychodrama meshed with a superhero movie, which might have influenced future films such as The Dark Knight and Logan, which have similar bleak tones yet got more acclaim.

    ","distributor":null,"has_staff_review":null,"id":44,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869115-hulk_movie.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869115-hulk_movie.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869115-hulk_movie.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869115-hulk_movie.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869115-hulk_movie.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869115-hulk_movie.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869115-hulk_movie.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869115-hulk_movie.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869115-hulk_movie.jpg","image_tags":"All Images"},"name":"Hulk","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-74372/","id":74372,"name":"Kevin Feige","site_detail_url":"https://comicvine.gamespot.com/kevin-feige/4040-74372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-98603/","id":98603,"name":"James Schamus","site_detail_url":"https://comicvine.gamespot.com/james-schamus/4040-98603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111168/","id":111168,"name":"Larry Franco","site_detail_url":"https://comicvine.gamespot.com/larry-franco/4040-111168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111316/","id":111316,"name":"Gale Anne Hurd","site_detail_url":"https://comicvine.gamespot.com/gale-anne-hurd/4040-111316/"}],"rating":"PG-13","release_date":"2021-02-02 17:39:42","runtime":"138","site_detail_url":"https://comicvine.gamespot.com/hulk/4025-44/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9735/","id":9735,"name":"Universal Pictures","site_detail_url":"https://comicvine.gamespot.com/universal-pictures/4010-9735/"}],"total_revenue":"245285165","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-59966/","id":59966,"name":"John Turman","site_detail_url":"https://comicvine.gamespot.com/john-turman/4040-59966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-98603/","id":98603,"name":"James Schamus","site_detail_url":"https://comicvine.gamespot.com/james-schamus/4040-98603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111317/","id":111317,"name":"Michael France","site_detail_url":"https://comicvine.gamespot.com/michael-france/4040-111317/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-45/","box_office_revenue":"134806913","budget":"150000000","date_added":"2009-07-08 17:30:45","date_last_updated":"2020-08-06 20:44:54","deck":"The reboot of the HULK movie. This film takes place 5 years after Banner was irradiated and became the Hulk. It's the second Marvel Cinematic Universe movie.","description":"

    5 years ago, Bruce Banner, a military scientist, attempted to recreate the super soldier serum. Unfortunately, he is now on the run from the U.S. military, who want to capture the Hulk and use him as a weapon. At the moment, Bruce is living in Brazil, and communicating over the internet with someone known only as \"Mr. Blue\", in the hopes of a cure for his condition. When not looking for a cure, he works at a bottling plant.

    Unfortunately for Bruce, some of his gamma-infected blood falls into a bottle at work one day, which kills the old man who ends up drinking the bottle. General \"Thunderbolt\" Ross deduces that Banner must be at the bottling plant, so he sends in a special team to get him, led by a Russian named Emil Blonsky. When the team finds Bruce, he ends up having to transform to the Hulk to escape. All of the soldiers except Blonsky are killed.

    In order to get more research for Mr. Blue, Bruce has to return to his university in Virginia, where he first did his research. While he's there, he accidentally bumps into Betty Ross, who he was dating a few years ago. On the day that Bruce is ready to leave the university, he is attacked by the army once more, who want the Hulk. With them is Blonsky, who has taken an experimental super soldier serum and is now faster and stronger than before. Despite this, the Hulk still manages to stop him.

    Betty and Bruce go on the run, and end up going to New York to meet Mr. Blue. Mr. Blue turns out to be a scientist named Samuel Sterns, who believes he has made a successful cure. They manage to get Bruce to transform to the Hulk, where the cure is tested and is successful. Sterns then reveals that he synthesized a sample of Bruce's blood that was sent to him, which he intends to use to help evolve mankind. Bruce is appalled by this and tries to convince him to destroy it, but the Army arrives and Bruce is captured.

    When the Army leaves Sterns, Emil Blonsky bursts in and demands the gamma treatment that Sterns has made from Bruce's blood, as he wants the power of the Hulk. Sterns is reluctant at first, as the experimental super-soldier serum combined with the gamma treatment could mutate him in unexpected ways, but after Blonsky starts threatening him Sterns gives him the treatment. As Sterns predicted, the treatment mutates him, into something with the Hulk's strength but Blonsky's intelligence. As he leaves, Blonsky hits Sterns across the room, which makes some of the gamma treatment drip into Sterns' head.

    Bruce convinces General Ross that he is the only person who can stop Blonsky, and is let out of the helicopter they are in. He falls to the ground and manages to transform to the Hulk just in time, as the cure wasn't completely perfect. The Hulk and Blonsky then battle, and the Hulk almost loses, before managing to get the upper hand. He then flees.

    Thirty-one days later, Bruce is attempting to gain control of his transformations willingly. At the same time as he attempts this, General Ross is told by Tony Stark that a team is being put together.

    ","distributor":null,"has_staff_review":null,"id":45,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869116-hulk_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869116-hulk_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869116-hulk_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869116-hulk_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869116-hulk_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869116-hulk_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869116-hulk_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869116-hulk_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869116-hulk_poster.jpg","image_tags":"All Images"},"name":"The Incredible Hulk","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-74372/","id":74372,"name":"Kevin Feige","site_detail_url":"https://comicvine.gamespot.com/kevin-feige/4040-74372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111319/","id":111319,"name":"David Maisel","site_detail_url":"https://comicvine.gamespot.com/david-maisel/4040-111319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111320/","id":111320,"name":"Michael J. Malone","site_detail_url":"https://comicvine.gamespot.com/michael-j-malone/4040-111320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111321/","id":111321,"name":"Jim Van Wyck","site_detail_url":"https://comicvine.gamespot.com/jim-van-wyck/4040-111321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111322/","id":111322,"name":"Kurt Williams","site_detail_url":"https://comicvine.gamespot.com/kurt-williams/4040-111322/"}],"rating":"PG-13","release_date":"2020-08-06 20:44:54","runtime":"112","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4025-45/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-9735/","id":9735,"name":"Universal Pictures","site_detail_url":"https://comicvine.gamespot.com/universal-pictures/4010-9735/"}],"total_revenue":"264770996","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-65489/","id":65489,"name":"Zak Penn","site_detail_url":"https://comicvine.gamespot.com/zak-penn/4040-65489/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-46/","box_office_revenue":"40198710","budget":"100000000","date_added":"2009-07-08 17:35:09","date_last_updated":"2021-10-21 14:24:45","deck":"An adaptation of DC's Catwoman, abandoning much of the character's history and abilities. The movie was poorly reviewed by critics.","description":"

    In this movie Catwoman's origin is slightly tweaked. Catwoman is Patience Phillips. She works in the art department of a cosmetics company. She accidentally stumbles across the dark, deadly secret behind the new cosmetics line, and is killed. She is eventually revived by the Egyptian Cat-god with new powers of agility and heightened senses and reflexes.

    ","distributor":null,"has_staff_review":null,"id":46,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869129-catwoman_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869129-catwoman_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869129-catwoman_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869129-catwoman_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869129-catwoman_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869129-catwoman_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869129-catwoman_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869129-catwoman_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869129-catwoman_poster.jpg","image_tags":"All Images"},"name":"Catwoman","producers":null,"rating":"PG-13","release_date":"2021-10-21 14:24:45","runtime":"104","site_detail_url":"https://comicvine.gamespot.com/catwoman/4025-46/","studios":null,"total_revenue":"82102379","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-47/","box_office_revenue":"351,583,407","budget":"23,000,000","date_added":"2009-07-08 18:06:29","date_last_updated":"2021-12-02 13:13:08","deck":"Another one of those \"are you seriously trying to tell me this was based on the comic of the same name?!\" films. A nice comedic film whereas the comic is a horror story.","description":"

    Shy and luckless clerk Stanley Ipkiss works at an Edge City bank. He is bullied by nearly everyone he is around including his boss Mr. Dickey and his land-lady Mrs. Peenman. His only friends are his Jack Russell Terrior Milo and his co-worker Charlie Schumaker. Meanwhile, gangster Dorian Tyrell operates a nightclub called the Coco Bongo while plotting to overthrow his boss Niko. Tyrell sends his singer girlfriend Tina Carlyle into Stanley's bank to record its layout, in preparation to rob the bank.

    Stanley is attracted to Tina, and she seems to reciprocate. After being denied entrance to the Coco Bongo, near the city's harbor, he finds a mysterious wooden mask. Placing it on his face transforms him into a zoot-suited, green-faced, bizarre trickster known as the Mask, who is able to cartoonishly alter himself and his surroundings at will. The transformed Stanley exacts revenge on some of Stanley's tormentors, including the auto mechanics who ripped him off the night before, and scares a street gang that attempts to rob him by turning a balloon into a tommy gun.

    The next morning, Stanley encounters detective Lieutenant Kellaway and newspaper reporter Peggy Brandt investigating the Mask's activity. To attend Tina's performance and, despite being sought by the police, he again becomes the Mask in order to steal money targeted by Tyrell. At the Coco Bongo, the Mask dances exuberantly with Tina. Following a confrontation with Tyrell, the Mask flees, leaving behind a scrap of cloth belonging to himself.

    Kellaway accuses Stanley of the bank-robbery, but he escapes trouble and later consults an expert on masks named Arthur Neuman, who tells him that the object is a depiction of Loki, the Norse god of darkness and mischief. Despite this, Stanley arranges for Tina to meet the Mask at the local Landfill Park. The meeting is proceeding as planned when Lt. Kellaway attempts to arrest him. The Mask tricks a large group of Edge City police officers into joining him in a mass-performance of the Desi Arnaz song \"Cuban Pete\". Stanley flees with Peggy, but he is betrayed to Tyrell for a $50,000 bounty. Tyrell tries on the mask and becomes a malevolent green-faced being. Forced to reveal the location of the stolen money, Stanley is kept hostage in one of the mob's cars while Tyrell's henchmen reclaim the money. Stanley is later given to Kellaway along with a rubber green mask to be detained.

    When Tina visits Stanley in his cell, he urges her to flee the city. Tina thanks Stanley for treating her with respect and tells him that she knew that he was the Mask all along. She attempts to leave the city, but is captured by Orlando and Tyrell and taken to a charity ball hosted by Niko and attended by the city's elite, including the city's mayor Mitchell Tilton. Upon arrival, the masked Tyrell kills Niko, and prepares to destroy both the club and Tina. Milo helps Stanley escape prison, and they, bringing Kellaway as a cover and hostage, go to stop Tyrell.

    After the brief, initial success of securing the assistance of Charlie, Stanley is spotted by Orlando and captured. Tina tricks Tyrell into taking off the mask, which is recovered and donned by Milo, turning the dog into a cartoonish pitbull who defeats Tyrell's men, while Stanley fights Tyrell. Stanley then recovers the mask and uses its abilities to save Tina by swallowing Tyrell's bomb and flushing Tyrell down the drain of the club's ornamental fountain. The police arrive and arrest Tyrell's remaining henchmen while Kellaway arrests Stanley again, then Tilton announces to everyone that Tyrell was The Mask the whole time, as a way for Kellaway to let Stanley go. Tilton tells Stanley that he is a hero, and thanks him for saving lives. He goes on to say that he needs to have a meeting with Kellaway in his office the next morning, and all charges against Stanley are dropped.

    As the sun rises the following day, Stanley, Tina, Milo, and Charlie take the mask back down to the harbor, where Tina throws it into the water and she and Stanley begin to kiss before Stanley can say in the mask's voice, \"Smoking.\" and kiss again. Charlie attempts to retrieve the mask for himself, only to find Milo swimming away with it.

    ","distributor":null,"has_staff_review":null,"id":47,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869167-the_mask.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869167-the_mask.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869167-the_mask.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869167-the_mask.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869167-the_mask.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869167-the_mask.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869167-the_mask.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869167-the_mask.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869167-the_mask.jpg","image_tags":"All Images"},"name":"The Mask","producers":null,"rating":"PG-13","release_date":"2021-12-02 13:13:08","runtime":"101","site_detail_url":"https://comicvine.gamespot.com/the-mask/4025-47/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-364/","id":364,"name":"Dark Horse Comics","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics/4010-364/"}],"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-48/","box_office_revenue":"59035104","budget":"66000000","date_added":"2009-07-08 18:08:46","date_last_updated":"2018-05-13 18:10:30","deck":"The first film based on the Dark Horse character Hellboy.","description":"

    In 1944, as a last-ditch attempt to win the war, the Nazis hired the undead Russian mystic Grigori Rasputin to open up an inter-dimensional portal in order to awaken the Ogdru Jahad, merciless entities that had been imprisoned. Rasputin actually planned to use them to meet his own ends - to destroy the world. Also present at the ritual are the immortal Ilsa Haupstein and Nazi Lieutenant Colonel Karl Ruprecht Kroenen. Shortly thereafter, a small team from the United States Army interrupts, aided by Professor Trevor Broom. In the ensuing fight, Rasputin is seemingly killed and the portal is destroyed, with Llsa and Kroenen narrowly escaping. After searching the grounds, the team find a small, red demon-boy with a right hand made of stone. Professor Broom lures the demon-boy towards him with a candy bar, and takes him in, eventually naming him Hellboy.

    Sixty years pass, and the young FBI agent, John Myers, arrives at the Bureau for Paranormal Research and Defense , which is operated by Broom. He is introduced to agents Abe Sapien (an amphibious man with psychic abilities) and Liz Sherman (a pyrokinetic). Liz is yet to gain control over her powers, and as a result has often been admitted to psychiatric care.

    Meanwhile, Ilsa and Kroenen resurrect Rasputin. They travel to New York's Machen Library of Paranormal Artifacts to manipulate a statue and release a vicious hell-hound known as Sammael. With his magical powers, Rasutin gives Sammael the ability to regenerate - when one hound dies, two are born and grown within minutes. He then visits Liz at the mental hospital and reactivates her powers. This causes her to burn down the hospital in her sleep. After a chat with Myers, she later returns to the Bureau.

    After encountering Sammael, Hellboy kills it repeatedly, which in turn creates dozens more. The team is sent to track the hounds in the sewers of New York, but the endeavor ends badly with Abe and two agents injured, and another two dead. As Kroenen's undead body is run by clockwork, he uses his ability to shut himself down to appear dead. His body is brought to the Bureau to be examined. After witnessing an argument between Hellboy and FBI Director Tom Manning, Liz is frustrated and goes out for coffee with Myers. This leaves Hellboy jealous and he secretly follows them.

    Back at the Bureau, Rasputin revives Kroenen and they go after Broom. Before killing him, Rasputin shows Broom a future featuring Hellboy as destroyer of the world, his destiny.

    Under the guidance of Manning, the BPRD team go to Rasputin's mausoleum, where they soon are separated. Hellboy and Manning arrive at Kroenen's lair, where they team up to defeat him. Leaving Manning behind, Hellboy reunites with Liz and Myers in Sammael's nest. With Hellboy overhelmed by the vast numbers of hounds that are attacking him, Liz has no choice but to overcome her fears and use her powers to destroy the beasts and their eggs. But the blast is so powerful that Myers, Liz and Hellboy are knocked unconsious and captured by Rasputin.

    In the catacombs, Rasputin plans to use Hellboy to release the Ogdru Jahad. To force Hellboy to comply, he sucks out Liz's soul, promising to reverse the action if Hellboy does as he asks. As he does not want to harm Liz, Hellboy agrees, and unleashes the inner power of Anung Un Rama. Witnessing this, Myers attempts to remind Hellboy of whom he is before he releases the Ogdru Jahad, and that he has a choice. Remembering whom Professor Broom had brought him up to be, Hellboy snaps off his horns and prevents the Ogdru Jahad from being released. Furious, Rasputin screams with rage but Hellboy stabs him with one of his horns.

    However, Rasputin turns into the enormous Behemoth, a creature of the Ogdru Jahad. Hellboy attempts to defeat the monster with a sword from a stone statue, but realizes the only way to win is to allow himself to be swallowed whilst detonating a belt of live hand grenades. After killing the monster, Hellboy returns to Liz, who appears to be dead, but he whispers in her ear and she awakens. Hellboy subsequently tells her that he restored her soul by telling the creatures on the other side that they'll 'be sorry' if they don't let it go. The couple embrace surrounded by flames as Myers, in a voice over, states that what truly makes a man a man is 'not how he starts things, but how he decides to end them'.

    ","distributor":null,"has_staff_review":null,"id":48,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869172-hellboy_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869172-hellboy_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869172-hellboy_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869172-hellboy_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869172-hellboy_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869172-hellboy_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869172-hellboy_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869172-hellboy_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869172-hellboy_poster.jpg","image_tags":"All Images"},"name":"Hellboy","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-45055/","id":45055,"name":"Mike Richardson","site_detail_url":"https://comicvine.gamespot.com/mike-richardson/4040-45055/"}],"rating":"PG-13","release_date":"2018-05-13 18:10:30","runtime":"120","site_detail_url":"https://comicvine.gamespot.com/hellboy/4025-48/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-364/","id":364,"name":"Dark Horse Comics","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics/4010-364/"}],"total_revenue":"99318987","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-1672/","id":1672,"name":"Mike Mignola","site_detail_url":"https://comicvine.gamespot.com/mike-mignola/4040-1672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-62750/","id":62750,"name":"Guillermo del Toro","site_detail_url":"https://comicvine.gamespot.com/guillermo-del-toro/4040-62750/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-49/","box_office_revenue":"75754670","budget":"85000000","date_added":"2009-07-08 18:12:51","date_last_updated":"2021-01-22 12:47:48","deck":"The second film based on the Dark Horse character Hellboy.","description":"

    The film starts with a flashback to Christmas, 1955, when Trevor Broom tells the young Hellboy a bedtime story about a battle between man and elves. After years of fighting, elf Prince Nuada convinces his father, King Balor to have blacksmiths build an indestructible golden clockwork army controlled by a golden crown. The Golden Army proved to be so effective against the humans that Balor created a truce with the humans to prevent more carnage from happening. They agreed that the humans would keep to their cities and the magical creatures to their forests. This enraged the Prince, and he left in exile. The crown was broken into three pieces - one was given to the humans, and the other two kept by the elves - so that the Golden Army would never be used again, remaining dormant for hundreds of years.

    In the present, Nuada, still bitter over his father's truce, declares war on the humans. After finding out the location of the first piece of crown at an auction house, he kills all humans present by releasing vicious tooth fairies upon them. The then kills his father and takes the second piece of crown. The final piece remains safe with his twin sister, Nuala. Hellboy and the B.P.R.D. quickly investigate the mysterious massacre at the auction house, where Abe finds out that Liz is pregnant with Hellboy's child. Hellboy, who is frustrated that the B.P.R.D. must remain a secret, reveals himself to the world by allowing himself to be pushed out of a window.

    Upon hearing the news of Hellboy's public display, Washington sends a new agent to take charge of the B.P.R.D., Johann Krauss. Krauss is a medium who lost his body during a seance; his ectoplasm is therefore contained in a special suit. Krauss and the team discover that the tooth fairies had been purchased at a troll market which is located under Brooklyn Bridge. The team goes there to search for more clues, and in the process Abe encounters Princess Nuala, with whom he quickly falls in love. Nuala has obtained a map that leads to the Golden Army. Prince Nuada, however, attempts to stop the team and the Princess from escaping and sends his troll after them. Hellboy subdues the troll, but Nuada attacks with an enourmous magical creature, the Elemental, which proves more difficult to defeat. During the fight, Nuada taunts Hellboy and questions his affiliation with the humans as they, too, treat him like a monster.

    Despite their eventual escape, Nuada tracks the team back to the B.P.R.D. headquarters using the magical bond between himself and his sister. Nuala senses her brother's approach and hides the final piece of crown in a book, throwing the map and its container into the fire. However, upon arriving, Nuala plucks the map's container out of the fire, revealing that the map is visible on the canister. Abe and Hellboy, who had been drinking, arrive to save the Princess, but fail because they were drunk. During the encounter, Nuala implants a deadly blade into Hellboy's chest which edges closer to his heart as the minutes pass, and he kidnaps his sister.

    The team takes the mortally wounded Hellboy to the location of the Golden Army in Northern Ireland, where they convince a Bethmoora goblin to take them to the angel of death. The angel of death warns Liz that Hellboy is destined to doom humanity, but Liz pleads for Hellboy's life. The angel eventually removes the blade from Hellboy's chest and tells Liz to give him a reason to live. Hellboy awakens when she tells him of her pregancy.

    Nuada is awaiting the arrival of Hellboy and the team at the hall that the Golden Army rests in. He bargains with Abe and exchanges Nuala for the last piece of crown. Nuala awakens the Army using the completed crown, and a battle ensues. After believing they had won the fight, the team is horrified when the Army begins to piece itself back together with ease. At this point, Hellboy remembers he is of royal blood (as the Son of the Fallen One, a Prince of Sheol), and uses his status to challenge Nuada. After subduing Nuada, Hellboy nobally lets him live, only for Nuada to try to stab him when he turns his back. Nuala sacrifices her life to stop her brother - their sibling bond means that anything that happens to her, also happens to the Prince. Abe rushes to Nuala's side and tells him of his feelings for her before she and her brother turn to stone. Using her pyrokinetic powers, Liz melts the crown, and the Golden Army is once again made dormant.

    When they leave the underground compound, Tom Manning is angry at them for going to Ireland without being ordered to do so, but Hellboy, Liz, Abe and Kraus let him know that they're all resigning from the B.P.R.D.. As they walk away, Hellboy and Liz talk about their future with their baby, at which Liz points out she is actually having twins.

    ","distributor":null,"has_staff_review":null,"id":49,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/869189-hellboy_2_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/869189-hellboy_2_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/869189-hellboy_2_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/869189-hellboy_2_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/869189-hellboy_2_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/869189-hellboy_2_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/869189-hellboy_2_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/869189-hellboy_2_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/869189-hellboy_2_poster.jpg","image_tags":"All Images"},"name":"Hellboy II: The Golden Army","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-1672/","id":1672,"name":"Mike Mignola","site_detail_url":"https://comicvine.gamespot.com/mike-mignola/4040-1672/"}],"rating":"PG-13","release_date":"2021-01-22 12:47:48","runtime":"120","site_detail_url":"https://comicvine.gamespot.com/hellboy-ii-the-golden-army/4025-49/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-364/","id":364,"name":"Dark Horse Comics","site_detail_url":"https://comicvine.gamespot.com/dark-horse-comics/4010-364/"}],"total_revenue":"160328789","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-1672/","id":1672,"name":"Mike Mignola","site_detail_url":"https://comicvine.gamespot.com/mike-mignola/4040-1672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-62750/","id":62750,"name":"Guillermo del Toro","site_detail_url":"https://comicvine.gamespot.com/guillermo-del-toro/4040-62750/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-50/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 00:03:17","date_last_updated":"2012-07-21 05:55:41","deck":"Movie by Mario Bava based on Italian anti-hero Diabolik.","description":null,"distributor":null,"has_staff_review":null,"id":50,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/869461-dangerdiabolik.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/869461-dangerdiabolik.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/869461-dangerdiabolik.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/869461-dangerdiabolik.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/869461-dangerdiabolik.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/869461-dangerdiabolik.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/869461-dangerdiabolik.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/869461-dangerdiabolik.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/869461-dangerdiabolik.jpg","image_tags":"All Images"},"name":"Danger: Diabolik","producers":null,"rating":null,"release_date":"2012-07-21 05:55:41","runtime":"100","site_detail_url":"https://comicvine.gamespot.com/danger-diabolik/4025-50/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-51/","box_office_revenue":"613285","budget":"9000000","date_added":"2009-07-09 00:07:39","date_last_updated":"2013-04-03 11:52:29","deck":null,"description":"

      

    ","distributor":null,"has_staff_review":null,"id":51,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/869478-barbarella_ver2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/869478-barbarella_ver2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/869478-barbarella_ver2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/869478-barbarella_ver2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/869478-barbarella_ver2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/869478-barbarella_ver2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/869478-barbarella_ver2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/869478-barbarella_ver2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/869478-barbarella_ver2.jpg","image_tags":"All Images"},"name":"Barbarella","producers":null,"rating":null,"release_date":"2013-04-03 11:52:29","runtime":"98","site_detail_url":"https://comicvine.gamespot.com/barbarella/4025-51/","studios":null,"total_revenue":"613285","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-52/","box_office_revenue":null,"budget":"15000000","date_added":"2009-07-09 00:11:46","date_last_updated":"2020-06-18 18:00:33","deck":"Eric Draven and his new wife Shelley Webster are murdered in a random act of violence. A year later Eric returns to get revenge on his killers as the Crow.","description":"

    Plot

    Eric Draven and his new wife Shelley Webster are murdered in a random act of violence. A year later Eric returns to get revenge on his killers as the Crow.

    Creation

    This film was made more famous by the death of Brandon Lee (the son of Bruce Lee) who died on set due to a freak accident. A blank shot went into Brandon, killing him. This event gave new life to the Lee family curse and the popularity of the film was boosted. The ending of the film was played out by Brandon's stunt double.

    ","distributor":null,"has_staff_review":null,"id":52,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/869486-crow_ver2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/869486-crow_ver2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/869486-crow_ver2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/869486-crow_ver2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/869486-crow_ver2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/869486-crow_ver2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/869486-crow_ver2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/869486-crow_ver2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/869486-crow_ver2.jpg","image_tags":"All Images"},"name":"The Crow","producers":null,"rating":"4","release_date":"2020-06-18 18:00:33","runtime":"102","site_detail_url":"https://comicvine.gamespot.com/the-crow/4025-52/","studios":null,"total_revenue":"94000000","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-46520/","id":46520,"name":"James O'Barr","site_detail_url":"https://comicvine.gamespot.com/james-obarr/4040-46520/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-53/","box_office_revenue":null,"budget":"35000000","date_added":"2009-07-09 00:20:29","date_last_updated":"2021-11-12 08:00:44","deck":null,"description":null,"distributor":null,"has_staff_review":null,"id":53,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11146/111464511/8241814-mv5bn2y4zdbjmjetzwq0os00nzyyltg0m2itmmuzytewn2rmmgvlxkeyxkfqcgdeqxvymjgyoti1ody%40._v1_sy1000_cr0%2C0%2C650%2C1000_al_.jpg","image_tags":"All Images"},"name":"Flash Gordon","producers":null,"rating":"2","release_date":"2021-11-12 08:00:44","runtime":"111","site_detail_url":"https://comicvine.gamespot.com/flash-gordon/4025-53/","studios":null,"total_revenue":"27107960","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-52269/","id":52269,"name":"Alex Raymond","site_detail_url":"https://comicvine.gamespot.com/alex-raymond/4040-52269/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-54/","box_office_revenue":"890,871,626\t ","budget":"258000000","date_added":"2009-07-09 01:57:07","date_last_updated":"2021-05-23 21:05:51","deck":"The third installment of the Spider-Man franchise. Spider-Man battles Harry Osborn as the New Green Goblin, Flint Marko as the Sandman, and the infamous Eddie Brock as Venom.","description":"

    Plot

    Peter Parker and Spider-Man are both on top of the world at the start of the movie. Spider-Man is extremely popular and Peter Parker has got the girl, the photo’s and is even making it to Mary Jane’s new Broadway Starring show. However not everyone is okay with that. At the opening night of the show, Harry Osborn is shown in the balcony looking at MJ and down towards Peter. After the show, Peter spots Harry, but Harry wants nothing to do with him. Peter then goes backstage to see MJ, who is clearly extremely excited after her first night on Broadway. The two have a date in the park where they look at the stars while in the comfort of Peter’s webbing. As they watch, a meteorite crashes in the park and an extra-terrestrial symbiote oozes out of the rock. Before Peter and MJ leave the park, it attaches itself to the back of his bike.

    Meanwhile it appears that Harry has taken the Goblin Serum as he looks towards his table of updated equipment. Also, in an unidentified apartment, a man, seemingly an escaped convict enters a bedroom of a young girl. It is revealed that this girl is his daughter and that he has escaped prison. His daughter is very sick and his wife wants nothing to do with him. His name is Flint Marko and he claims he was wrongfully accused of a crime he did not commit. He promises to get his wife the money they need for their daughter, but she yells for him to leave.

    Peter then goes to visit Aunt May and tells her he wants to propose to MJ. She tells him a man must put his wife first. Peter believes he can and Aunt May gives him the ring that Uncle Ben proposed to her with. With the ring in his pocket, Peter rides through the city on his bike. He is then ripped off his bike by Harry on a flying glider that is more on par with a snowboard. The two fight along the rooftops and in the ensuing chaos, peter nearly loses the ring Aunt May gave him. While slinging through an alleyway, Peter sets a line that knocks Harry off his Glider, however, by doing so injures Harry to the point where he has temporary amnesia. Peter takes him to the hospital where he acts like the man he was before his father died.

    The Police have caught up with Flint Marko and basically have him cornered in a facility. While running away, he falls into a sand pit that is actually a particle accelerator. With no escape Flint is caught in the research field, unbeknownst to anyone. He disintegrates into the sand. However, the next day, seemingly, a sand figure emerges. He learns how to control the power he has been given.

    MJ’s play doesn’t get a favorable review, particularly MJ herself. She is hurt by the paper’s assessment of her talent. Peter, in an attempt to comfort her comes across as a little arrogant when he talks about overcoming criticism as Spider-Man. When he realizes this he tries to comfort her, but there is trouble and Spider-Man is needed. The black symbiote now is in Peter’s apartment.

    An out of control crane crashes into a building that has a photo shoot going on. It is revealed that the photo shoot is of one of Peter’s classmates, Gwen Stacy. The crane crashes into the building, causing a partial collapse. Meanwhile on the ground Police Captain Stacy is introduced to Gwen’s supposed boyfriend, Eddie Brock, a rival photographer to Peter Parker. After Spider-Man saves Gwen from falling off the building, Brock tries to approach him stating that he is the new photographer in town. Spider-Man is not a fan of this. Later, when Peter arrives to sell the pictures to J. Jonah Jameson, Brock is there and has his pictures chosen over Peter’s. Brock and Peter are then told that there is a staff opening for photographer, Jameson tells them that whoever gets a picture of Spider-Man committing a crime will get the job.

    Later at a ceremony honoring Spider-Man for saving Gwen, he re-enacts the kiss that MJ and him first shared with Gwen, while MJ looks on. In the middle of the ceremony it is reported that there is a bank robbery. Sandman robs a bank and Spider-Man is unsuccessful in apprehending him.

    Later that night Peter prepares to propose to Mary Jane at this fancy French restaurant. His plans for proposing don’t go so well. Mary Jane is already a little frustrated as she had been fired from her show. When she arrives, Gwen Stacey stops by the table to thank Peter for helping her in class and introduces herself to MJ as Peter’s lab partner. Once she leaves Mary Jane wonders if he is pushing her away. She is furious that he shared their kiss with another woman. She leaves the restaurant in a fury and Peter fails to propose.

    The next day Peter tries to call her, however she ignores his calls and his message. Police Captain Stacey then calls Peter and Aunt May into the Police Station. It is revealed that Peter’s Uncle was killed by another man. This man is revealed to be Flint Marko, the Sandman. Peter begins obsessing over finding Marko, sitting in his costume listening to the police radio. When Mary Jane comes to visit him, he does push her away. She tells him everyone needs help, even Spider-Man. As Peter falls asleep listening to the Radio, the Symbiote, crawls towards him and covers his costume. Peter wakes up hanging upside down on a skyscraper with no knowledge of how he got there or where this new suit came from.

    Curious about the suit, Peter brings a sample to his friend and professor, Curt Conners. Dr. Conners warns him of its symbiotic behavior. He tells him not to get any on him. Once home, he hears of Marko robbing a bank over the police wire. Instead of opting for his traditional red and blues, he goes for the dark black suit in order to apprehend him. As he catches up to Sandman, the suit starts feeding and fueling his anger towards Sandman. His strength increases as well as his recklessness. When Brock tries to take a picture of Spider-Man in his new costume, he smashes his camera. Brock pulls out a digital camera and takes some pictures. Meanwhile Spider-Man has followed Sandman underground and seemingly dorwns him with a surplus of water.

    The suit continues to feed on Peter, making him easily moody. When his land lord asks for his rent, he outbursts angrily and slams the door uncharacteristically. Peter becomes aware of his behavior and takes the suit off and goes to visit Aunt May to tell her that Spider-Man killed Marko. She warns Peter that revenge is like a poison.

    Meanwhile Mary Jane is feeling lonely and instead of calling Peter she calls Harry. The two banter playfully in his house. While cooking an omelet the two share a moment that MJ immediately regrets and leaves abruptly. This causes Harry to regain his memories and his partial insanity. He sees his father and is told to attack Spider-Man’s heart. Mary Jane arrives home and hears a message on the answering machine from Peter. Before she is able to answer, Harry, in his goblin attire threatens to kill Peter if she doesn’t do as he tells her to do.

    The next day Mary Jane and Peter meet at a park and she breaks up with him. When his pleas become too much she painfully cries there’s someone else. Peter, heartbroken, goes to a café to talk to Harry, where he reveals that he is the other man in her life. As Peter leaves he turns around and sees the devious look in Harry’s eyes. Furiously Peter returns home and gives himself over to the Black Suit. He then confront Harry at his house and the two fight. Peter, fueled by his fury and the suit, relentlessly attacks Harry, going as far as emotionally challenging him. Harry throws one of his pumpkin bombs towards Peter, but before it explodes Peter sends it back to Harry, disfiguring his face.

    The following day Peter sees a picture of Spider-Man apparently stealing from the bank that Sandman actually did. The photo is Brock’s however Peter knows this didn’t happen. He goes to the Bugle and confronts Brock about this, when Brock pleads with him not to say anything about the forged pictures, Peter angrily responds to the staff that they should check their sources next time. It is revealed that the picture is photo shopped and Brock is immediately fired.

    Peter walks around the city with an arrogance that is not lost on some of the people around him. At the Bugle he begins to flirt with Betty Brant. Dr. Conners tells Peter that if he has any of the symbiote left he should get rid of it because it feeds on aggression. Elsewhere the Sandman begins to reform from the attack that left him a pile of mud. Later that night, Peter learns that MJ is working at a jazz club and takes Gwen there in an attempt to make her jealous. Gwen soon realizes that this is all an act for her, and she apologizes to MJ and runs out, clearly upset. Peter then tries to talk to MJ, but the bouncers are preventing that from happening. His aggression fueled by the symbiote overcomes him and he attacks the bouncers. In an effort to stop Peter, MJ is struck by him. She is sent flying and asks him who he is, Peter doesn’t know.

    Realizing the suit is taking complete control of his actions he goes to a church tower and tries tearing the costume off. It doesn’t seem to be working, however Peter struggles reveal the suits weakness to sound. At the same time, Eddie Brock is in the church and asks God to kill Peter Parker. Hearing the church bell ringing because of the struggle between Peter and the suit, Brock investigates and see’s Peter’s face as the suit slowly drips down. It reaches Brock and soon takes him as Peter is finally released of the symbiote, unaware that Brock has become one with the suit, Venom.

    Later, at Peter’s apartment, Aunt May visits and Peter confides in her that he hurt MJ and doesn’t think it will be okay. She tells him he’ll find a way to make it up to her somehow. Meanwhile, Sandman is trying to find Spider-Man and runs into Venom. They make a deal because they both want the same thing, Spider-Man dead.

    Venom kidnaps MJ by pretending to be a Taxi Driver. He suspends her cab at a construction complex. Peter see’s this on the news and finally breaks out the old Red and Blue Costume, becoming the hero everyone remembers. He knows that he can’t fight both Venom and Sandman on his own. He stops by Harry’s and pleads with him to help him. Harry refuses, angrily telling him to leave. Harry’s butler then tells Harry that his father died from his own Glider.

    As the crowd watches in utter horror, a girl screams\"LOOK\" As everyone turns there heads, Spider-Man arrives at the construction site, greeted with roaring applause. As he reaches the cab mary jane screams\"look out!\" Venom then throws him through the car’s windshield. He reveals himself to peter as Eddie Brock. As the battle begins, Venom pins peter down saying that you destroyed my life and now I'll destroy yours. Peter tries to warn him against the dangers of the suit, but Brock refuses to listen, and becomes Venom once again. Just as he is about to make finishing blow, mary jane throw a brick at venom's head giving peter just enough time to break free and slip through the venom's webs causing them to fight in mid air. As the air battle insues, venom gets the upper hand and Peter falls to the bottom, where Sandman is waiting for him. Because of the massive amount of sand at the site, Sandman becomes a behemoth. As Spider-Man tries to escape is tied, by the throat, to a steel bar, by Venom as Sandman relentlessly pounds his fist on Spider-Man. When all hope seem lost, a bomb is thrown into Sandman’s face and it is revealed that Harry has come to help Spider-Man.

    The two friends fight back to back, Spider-Man against Venom and Harry against Sandman. Harry is able to take down Sandman and sends Peter after MJ as he takes on Venom. Harry attempts to stab him, but Venom grabs the hoverboard and throws him down. Venom almost stabs Spider-Man with the board, but Harry jumps in front of him, being stabbed like his father was. Venom throws Harry down a few floors. While falling Harry hits some rebars which make a certain type of sound. Through this, however, Peter remembers the annoyance the Symbiote had to certain sounds. Peter circles Venom with the bars, and the clanging sound pains Venom as each one is slammed into the ground. Peter grabs Eddie from inside the suit with his webbing and pulls him out, once free he then throws a bomb from Harry's glider at the symbiote. Eddie rushes towards the symbiote while the bomb flies through the air, and is killed in the explosion.

    Sandman approaches Peter and tells him that the killing of Uncle Ben was an accident. He got startled when his partner ran into him making his gun going off and hit Uncle Ben. Sandman tells Peter that his Uncle was trying to help him, even with a gun pointed at him. Sandman then goes to explain that the only reason that he committed the crimes was to save his dying daughter. Peter forgives him and Sandman looking at peter with thanks for the forgiveness he just received, drifted away in a sand cloud through. the buildings. Peter swings down to Harry where Mary Jane is trying to comfort him, Peter joins in. Mary Jane asks to go get help, but harry says that all he wants is to be with his best friends. And saying that dies with peace of mind and heart.

    Peter, MJ, Gwen, Aunt May and several others attend Harry's funeral. Later MJ is singing at the jazz club. She stops singing as Peter walks in, and then he steps forwards, his hand reaching out to her. She takes it and the two embrace, slowly dancing.

    Reception

    While the film made more money than the first two films, it received mixed reviews, mainly for three villains in one film with subplots and recycled music by Danny Elfman from the first two films. Critics didn't like \"Emo Peter Parker\", including where he dances along to James Brown in the middle of the sidewalk. The mixed reception caused Sam Raimi to abandon plans to make Spider-Man 4, which resulted in a reboot duology directed by Marc Webb and starring Andrew Garfield as Spider-Man and Emma Stone as Gwen Stacy. Shailene Woodley played Mary Jane in deleted scenes of the second film. The mixed reception of the second film resulted in an MCU reboot. The film helped start development of a Venom film, which switched Topher Grace with Tom Hardy playing Eddie Brock in Sony's Marvel Universe and was eventually released on October 2018. In 2017, it got an editor's cut which reinserted some scenes and removed others such as where Peter takes a look in the mirror with the black suit and saw Venom and where Harry makes up his mind on helping Peter by himself. It also had Christopher Young's score restored and is considered better than the theatrical cut. It is now considered an underrated Spider-Man film.

    ","distributor":null,"has_staff_review":null,"id":54,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/869559-sm3_int_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/869559-sm3_int_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/869559-sm3_int_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/869559-sm3_int_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/869559-sm3_int_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/869559-sm3_int_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/869559-sm3_int_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/869559-sm3_int_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/869559-sm3_int_poster.jpg","image_tags":"All Images"},"name":"Spider-Man 3","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103466/","id":103466,"name":"Grant Curtis","site_detail_url":"https://comicvine.gamespot.com/grant-curtis/4040-103466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103467/","id":103467,"name":"Laura Ziskin","site_detail_url":"https://comicvine.gamespot.com/laura-ziskin/4040-103467/"}],"rating":"PG-13","release_date":"2021-05-23 21:05:51","runtime":"139","site_detail_url":"https://comicvine.gamespot.com/spider-man-3/4025-54/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"}],"total_revenue":"336,530,303","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61963/","id":61963,"name":"Sam Raimi","site_detail_url":"https://comicvine.gamespot.com/sam-raimi/4040-61963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-64557/","id":64557,"name":"Ivan Raimi","site_detail_url":"https://comicvine.gamespot.com/ivan-raimi/4040-64557/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-55/","box_office_revenue":null,"budget":"1377800","date_added":"2009-07-09 10:47:52","date_last_updated":"2018-04-09 16:25:16","deck":"Based on the lampoon comedy 1960s television series that saved the character from folding. Batman and Robin team up against four of their greatest enemies, who have taken the United World Security Council hostage.","description":null,"distributor":null,"has_staff_review":null,"id":55,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871194-batman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871194-batman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871194-batman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871194-batman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871194-batman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871194-batman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871194-batman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871194-batman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871194-batman.jpg","image_tags":"All Images"},"name":"Batman: The Movie","producers":null,"rating":"2","release_date":"2018-04-09 16:25:16","runtime":"105","site_detail_url":"https://comicvine.gamespot.com/batman-the-movie/4025-55/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-56/","box_office_revenue":null,"budget":"10000000","date_added":"2009-07-09 11:07:23","date_last_updated":"2021-10-07 20:49:20","deck":"The first of the Punisher films, Dolph Lundgren takes the roll of Frank Castle, hellbent on \"punishing\" the mobsters who murdered his family.","description":null,"distributor":null,"has_staff_review":null,"id":56,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/870065-punisher_dolph_lundgren.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/870065-punisher_dolph_lundgren.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/870065-punisher_dolph_lundgren.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/870065-punisher_dolph_lundgren.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/870065-punisher_dolph_lundgren.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/870065-punisher_dolph_lundgren.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/870065-punisher_dolph_lundgren.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/870065-punisher_dolph_lundgren.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/870065-punisher_dolph_lundgren.jpg","image_tags":"All Images"},"name":"The Punisher","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-119125/","id":119125,"name":"Robert Mark Kamen","site_detail_url":"https://comicvine.gamespot.com/robert-mark-kamen/4040-119125/"}],"rating":"R","release_date":"2021-10-07 20:49:20","runtime":"89","site_detail_url":"https://comicvine.gamespot.com/the-punisher/4025-56/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-10451/","id":10451,"name":"New World Pictures","site_detail_url":"https://comicvine.gamespot.com/new-world-pictures/4010-10451/"}],"total_revenue":null,"writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-60570/","id":60570,"name":"Boaz Yakin","site_detail_url":"https://comicvine.gamespot.com/boaz-yakin/4040-60570/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-57/","box_office_revenue":"10100036","budget":"35000000","date_added":"2009-07-09 13:39:27","date_last_updated":"2017-06-29 14:18:33","deck":"The 2008 adaptation of \"The Punisher\" from martial artist director Lexi Alexander. The Punisher is portayed here as he is known in the comics.","description":"

    When Frank Castle (aka the Punisher) screws up an FBI investigation by killing an undercover agent, he creates new enemies on both sides of the law. And when the self-proclaimed \"Jigsaw\" resurfaces with the murderous intentions, Castle takes it upon himself to wage a war against the criminal underworld and clean up the mess he made.

    ","distributor":null,"has_staff_review":null,"id":57,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870463-punisherwarzoneteaser.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870463-punisherwarzoneteaser.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870463-punisherwarzoneteaser.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870463-punisherwarzoneteaser.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870463-punisherwarzoneteaser.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870463-punisherwarzoneteaser.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870463-punisherwarzoneteaser.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870463-punisherwarzoneteaser.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870463-punisherwarzoneteaser.jpg","image_tags":"All Images"},"name":"Punisher: War Zone","producers":null,"rating":"4","release_date":"2017-06-29 14:18:33","runtime":"103","site_detail_url":"https://comicvine.gamespot.com/punisher-war-zone/4025-57/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-7942/","id":7942,"name":"Lionsgate","site_detail_url":"https://comicvine.gamespot.com/lionsgate/4010-7942/"}],"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-58/","box_office_revenue":"33,810,189","budget":"33,000,000","date_added":"2009-07-09 13:42:49","date_last_updated":"2021-06-10 20:35:52","deck":"An undercover FBI agent becomes a vigilante assassin and sets out to unleash his wrath upon the corrupt businessman who slaughtered his entire family at a reunion.","description":"

    The film opens with Bobby Saint and Mickey Duka meet with their contact, European arms dealer Otto Krieg, during an arms deal at the Tampa, Florida seaport . The deal soon goes south as the FBI raid the deal and both Bobby and Otto are killed in the ensuing attack. Mickey is arrested on the spot but it is soon revealed that Otto Krieg was an undercover FBI agent named, Frank Castle. A former military and war vet. The sting operation was Castle's final assignment and decides to take an early retirement from the field and decides to celebrate at his father's resort in Puerto Rico. It is soon revealed at the funeral of Bobby Saint that is father is a well known crime lord, Howard Saint. Howard and his right-hand man, Quentin Glass, bribe the FBI for confidential information about Otto Krieg and find his true identity. At Bobby's funeral, Howard learns Frank is in Puerto Rico before leaving for London afterwards.. Howard orders Frank murdered, but his conniving wife, Livia, demands that they kill Frank's entire family as well to \"settle the score\".

    in Puerto Rico, Saint's men, along with Bobby's twin brother, Tommy attack Castle's family and kill everyone at the home and Frank is shot and blown off the pier and left to drown in the ocean by Glass. He however, washes up on shore alive and finds a black shirt that his son was making him, which now has the form of a skull on the front of the shirt. Later, o nce his injuries are fully healed, Frank returns to Tampa and takes refuge in an old tenement building where three young outcasts named, Dave, Bumpo and Joan live. Frank kidnaps Mickey Duka and at first frightens him into giving him information about the Saints, but Mickey, who hates the Saints, willingly joins Frank as a mole. Frank begins his mission of revenge after learning that the police and the FBI have been bribed by the Saints to close the investigation of his family's murder. In the process, Frank sabotages Saint's money-laundering business and severs Saint's partnership with the Cuban mobsters, the Toro Brothers, and starts tailing Livia and Quentin and learns that Quentin is gay and has been carrying on a secret affair unknown to everyone but Livia.

    Frank begins to set up photos and other types of clues to make it look like Quentin is having an affair with Livia, which starts to succeed. However, Tommy discovers that Castle is in fact alive and starts sending his various agents to kill him for good. He first sends a guitar player named Harry Heck who, after a brief car chase, is killed when Frank shoots a knife into Heck's throat. The second is the Russian, a behemoth who mercilessly beats Castle in a brutal fight, but is defeated when Frank throws boiling oil in his face, which blinds him long enough for Frank to throw him down the staircase, breaking his neck. Quentin and his men eventually seek out Castle themselves and attack Frank's friends going as far as pulling out all of Dave's piercings before Castle eventually kills them all off. Howard, unaware that Quentin is gay, and believing Livia to be capable of cheating on him, kills them both personally, neither of them knowing why.

    Frank then attacks Howard's headquarters, the downtown Tampa nightclub, \"Saints and Sinners\", killing Howard's henchmen. He then finds John, whom he leaves to die by trapping him with an eight-pound, trip-wire activated grenade placed in his outstretched hand. Eventually, John's strength gives way and the grenade explodes, killing him as Howard hears his son crying for help. Frank wounds Howard with a pistol when Howard attempts to shoot him in the parking lot of the nightclub. Howard is then tied to a slow-moving car in the club's parking lot, but not before he reveals to Howard that Quentin and Livia were not having an affair and that he had set everyone up to see his family in both aspects die around him the same way Saint did. As Howard cries out over being tricked by Castle, several hidden bombs go off, and the destruction and wreckage culminates in the shape of Frank's iconic skull.

    Not long afterwards, Frank prepares to commit suicide but after seeing a vision of his wife and son decides not to. He leaves a countless amount of cash left over from the Saint's estate to Dave, Bumpo and Joan before leaving. The final scene is Frank Castle looking over the ocean saying that he will punish crime and that Frank Castle is gone, call him: \"The Punisher\"

    ","distributor":null,"has_staff_review":null,"id":58,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870471-punisher_ver2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870471-punisher_ver2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870471-punisher_ver2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870471-punisher_ver2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870471-punisher_ver2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870471-punisher_ver2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870471-punisher_ver2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870471-punisher_ver2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870471-punisher_ver2.jpg","image_tags":"All Images"},"name":"The Punisher","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-60564/","id":60564,"name":"Avi Arad","site_detail_url":"https://comicvine.gamespot.com/avi-arad/4040-60564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-74372/","id":74372,"name":"Kevin Feige","site_detail_url":"https://comicvine.gamespot.com/kevin-feige/4040-74372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111316/","id":111316,"name":"Gale Anne Hurd","site_detail_url":"https://comicvine.gamespot.com/gale-anne-hurd/4040-111316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111349/","id":111349,"name":"Christopher Eberts","site_detail_url":"https://comicvine.gamespot.com/christopher-eberts/4040-111349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111350/","id":111350,"name":"Andreas Grosch","site_detail_url":"https://comicvine.gamespot.com/andreas-grosch/4040-111350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111351/","id":111351,"name":"Chris Roberts","site_detail_url":"https://comicvine.gamespot.com/chris-roberts/4040-111351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111352/","id":111352,"name":"Andreas Schmid","site_detail_url":"https://comicvine.gamespot.com/andreas-schmid/4040-111352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-111353/","id":111353,"name":"John Starke","site_detail_url":"https://comicvine.gamespot.com/john-starke/4040-111353/"}],"rating":"R","release_date":"2021-06-10 20:35:52","runtime":"124","site_detail_url":"https://comicvine.gamespot.com/the-punisher/4025-58/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-7942/","id":7942,"name":"Lionsgate","site_detail_url":"https://comicvine.gamespot.com/lionsgate/4010-7942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-8792/","id":8792,"name":"Columbia Pictures","site_detail_url":"https://comicvine.gamespot.com/columbia-pictures/4010-8792/"}],"total_revenue":"54700105","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111317/","id":111317,"name":"Michael France","site_detail_url":"https://comicvine.gamespot.com/michael-france/4040-111317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-111348/","id":111348,"name":"Jonathan Hensleigh","site_detail_url":"https://comicvine.gamespot.com/jonathan-hensleigh/4040-111348/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-59/","box_office_revenue":"9603139","budget":"20000000","date_added":"2009-07-09 15:10:11","date_last_updated":"2021-01-17 18:07:26","deck":"The classic fantasy hero Conan The Barbarian makes his feature film debut.","description":"

    Conan the Barbarian was released in 1982, and starred the then-unknown Arnold Schwarzenegger. The movie was a box-office winner, and sent the actor into stardom. This film follows Conan life, from his early years as a child in Cimmeria, to a slave, to a gladiator, to a thief, and finally to the warrior and barbarian that fans know and love. His quest is one of revenge, as he moves to exact justice on the warlord and cultist Thulsa Doom, for killing his village and enslaving the barbarian.

    PLOT

    The Wizard narrates throughout this epic tale. The film opens with narration and switches to a Young barbarian boy, and his father. We then see young Conan witness his village and family being butchered in an abrupt attack by Thulsa Doom’s men. The Children of the village then become slaves and are forced to push the ‘Wheel of Pain’ (a man powered mill). Conan grows into a man pushing that mill, and in time is the only one left pushing the wheel all by himself. Soon a man comes and buys Conan to fight as a gladiator and as Conan proves his worth he is taken to the Far East and trained by the sword. One evening his master sets him free and then Conan is set on his quest of Vengeance against Doom.

    Conan will soon meet Subotai and Valeria (both are thieves) and a kinship forms between the three of them. They sneak into a Temple adorned by snakes, to steal a large red jewel (The Eye of The Serpent). There is a sacrifice going on as the three enter the temple from the roof. Conan and Subotai are faced with an enormous snake that is asleep at the base of where the jewel is held. Conan retrieves the Jewel but his sweat awakes the beast. As Conan takes a jade amulet off the wall (which he recognizes as the symbol of the man who killed his family) above the exit the Snake attempts to kill him, but with the help of Subotai, Conan is able to kill it first.

    Valeria and Conan become lovers. Later a King Osric of Ophir asks the group to return his daughter from Thulsa Doom, and offers them great riches in return. Separating from the group Conan meets the Wizard before he continues on to the Mountain of Power. Conan is caught as an intruder and is ‘Crucified’ by being strapped to the tree of woe in the desert. Subotai and Valeria find him and bring him back to the Wizard. Since Conan is near death Valeria agrees to pay the price to return Conan – Saying that she will rise against death to fight by his side. Conan, Subotai and Valeria enter the Mountain of power and in a battle against numerous guards retrieve the Kings daughter. Valeria is shot by a snake arrow and later dies in Conan’s arms – she is cremated.

    While waiting for the battle against Doom, Conan prays to Crom (his ‘God’). Subotai and Conan manage to defeat Doom’s men, with the assistance of the Spirit of Valeria. Doom attempts to kill the Kings daughter but Subotai averted the snake arrow with his shield. Doom retreats into the distance.

    That same night Conan, led by the Kings daughter, come forward from the shadows behind Doom and beheads him in front of a large following of his torch-bearing cult. The followers of Doom extinguish their torches in a fountain and leave. Conan then ignites the Mountain of Power by hurling a hanging lantern at it. Conan Carries the Princess off. At the end of the film, there is an Epilogue showing an older Conan on a thrown, narrated with the final lines ‘This story shall also be told’.

    ","distributor":null,"has_staff_review":null,"id":59,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870646-cbc.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870646-cbc.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870646-cbc.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870646-cbc.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870646-cbc.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870646-cbc.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870646-cbc.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870646-cbc.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870646-cbc.jpg","image_tags":"All Images"},"name":"Conan The Barbarian","producers":null,"rating":"4","release_date":"2021-01-17 18:07:26","runtime":"129","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian/4025-59/","studios":null,"total_revenue":"37567440","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-60/","box_office_revenue":null,"budget":"10000000","date_added":"2009-07-09 15:17:31","date_last_updated":"2013-10-23 04:01:03","deck":"Frozen in the ice for decades, Captain America is freed to battle against arch-criminal, The Red Skull","description":null,"distributor":null,"has_staff_review":null,"id":60,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/37908/870651-captain_america_1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/37908/870651-captain_america_1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/37908/870651-captain_america_1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/37908/870651-captain_america_1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/37908/870651-captain_america_1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/37908/870651-captain_america_1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/37908/870651-captain_america_1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/37908/870651-captain_america_1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/37908/870651-captain_america_1_.jpg","image_tags":"All Images"},"name":"Captain America","producers":null,"rating":"PG-13","release_date":"2013-10-23 04:01:03","runtime":"97","site_detail_url":"https://comicvine.gamespot.com/captain-america/4025-60/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-61/","box_office_revenue":"38291056","budget":"60000000","date_added":"2009-07-09 15:25:10","date_last_updated":"2016-12-14 00:17:52","deck":"Two of the greatest horror monsters ever come to clash. Whoever wins, we lose.","description":"

    Deep in the arctic, a mysterious pyramid has been discovered. When a group of explorers enter it, they find themselves caught in a war that has been waging for centuries, between the savage Aliens, and skilled Predators.

    For years, fans waited for the two famous horror icons to come together, and this was the suitably violent result.

    ","distributor":null,"has_staff_review":null,"id":61,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870682-avpp.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870682-avpp.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870682-avpp.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870682-avpp.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870682-avpp.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870682-avpp.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870682-avpp.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870682-avpp.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870682-avpp.jpg","image_tags":"All Images"},"name":"Alien Vs. Predator","producers":null,"rating":"PG-13","release_date":"2016-12-14 00:17:52","runtime":"101","site_detail_url":"https://comicvine.gamespot.com/alien-vs-predator/4025-61/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"172543519","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-63/","box_office_revenue":"78900000","budget":"11000000","date_added":"2009-07-09 15:37:46","date_last_updated":"2022-02-19 17:41:16","deck":"The special effects extravaganza that kick-started the famous franchise.","description":"

    Far in the future, a space-ship is hauling it's cargo load back to Earth when it intercepts a transmission of unknown origin from a nearby planet. After touching down, a extraterrestrial creature boards their ship. What ensues afterwards has been the stuff of nightmares for millions of viewers around the world, and the crew of the ship find out all too well that in space, no one can hear you scream.

    Alien was nominated and won the 1979 Academy Award for Special Effects.

    ","distributor":null,"has_staff_review":null,"id":63,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/872572-alien2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/872572-alien2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/872572-alien2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/872572-alien2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/872572-alien2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/872572-alien2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/872572-alien2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/872572-alien2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/872572-alien2.jpg","image_tags":"All Images"},"name":"Alien","producers":null,"rating":"R","release_date":"2022-02-19 17:41:16","runtime":"119","site_detail_url":"https://comicvine.gamespot.com/alien/4025-63/","studios":null,"total_revenue":"104931801","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-64/","box_office_revenue":"474,544,677","budget":"115000000","date_added":"2009-07-09 15:42:38","date_last_updated":"2022-06-17 20:02:16","deck":"The first of the prequel trilogy of Star Wars films.","description":"

    Turmoil has engulfed the Galactic Republic. The taxation of trade routes to outlying star systems is in dispute.

    Hoping to resolve the matter with the blockade of deadly battleships, the greedy Trade Federation has stopped all shipping to the small planet of Naboo.

    While the Congress of the Republic endlessly debates this alarming chain of events, the Supreme Chancellor has secretly dispatched two Jedi Knights, the guardians of peace and justice in the galaxy to settle the conflict.

    ","distributor":null,"has_staff_review":null,"id":64,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870715-star_wars_phantom_menace_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870715-star_wars_phantom_menace_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870715-star_wars_phantom_menace_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870715-star_wars_phantom_menace_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870715-star_wars_phantom_menace_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870715-star_wars_phantom_menace_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870715-star_wars_phantom_menace_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870715-star_wars_phantom_menace_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870715-star_wars_phantom_menace_poster.jpg","image_tags":"All Images"},"name":"Star Wars Episode I: The Phantom Menace","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-62110/","id":62110,"name":"Rick McCollum","site_detail_url":"https://comicvine.gamespot.com/rick-mccollum/4040-62110/"}],"rating":"PG","release_date":"2022-06-17 20:02:16","runtime":"133","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-i-the-phantom-menace/4025-64/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"1,027,082,707","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-65/","box_office_revenue":null,"budget":"150000000","date_added":"2009-07-09 15:45:59","date_last_updated":"2022-02-09 16:47:42","deck":"An ancient struggle re-erupts on Earth between two extraterrestrial clans, the heroic Autobots and the evil Decepticons, with a clue to the ultimate power held by a young teenager.","description":"

    \"For centuries, two races of robotic aliens – the Autobots and the Decepticons – have waged a war, with the fate of the universe at stake. When the battle comes to Earth, all that stands between the evil Decepticons and ultimate power is a clue held by young Sam Witwicky (Shia LaBeouf). An average teenager, Sam is consumed with everyday worries about school, friends, cars and girls. Unaware that he alone is mankind’s last chance for survival, Sam and his friend Mikaela (Megan Fox) find themselves in a tug of war between the Autobots and Decepticons. With the world hanging in the balance, Sam comes to realize the true meaning behind the Witwicky family motto – “No sacrifice, no victory!”

    ","distributor":null,"has_staff_review":null,"id":65,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/37908/870721-transformersmovieposter325_1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/37908/870721-transformersmovieposter325_1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/37908/870721-transformersmovieposter325_1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/37908/870721-transformersmovieposter325_1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/37908/870721-transformersmovieposter325_1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/37908/870721-transformersmovieposter325_1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/37908/870721-transformersmovieposter325_1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/37908/870721-transformersmovieposter325_1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/37908/870721-transformersmovieposter325_1_.jpg","image_tags":"All Images,Transformers"},"name":"Transformers","producers":null,"rating":"PG-13","release_date":"2022-02-09 16:47:42","runtime":"143","site_detail_url":"https://comicvine.gamespot.com/transformers/4025-65/","studios":null,"total_revenue":"708272592","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-57571/","id":57571,"name":"Alex Kurtzman","site_detail_url":"https://comicvine.gamespot.com/alex-kurtzman/4040-57571/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-66/","box_office_revenue":"4020663","budget":"6500000","date_added":"2009-07-09 15:46:03","date_last_updated":"2021-04-24 16:00:15","deck":"One of the most famous and critically acclaimed sci-fi action movies of all time.","description":"

    The story of humanity's battle for survival, and the one woman in the center of it all that could change everything.

    In 2029, human civilization has been pushed to the brink of extinction by self-aware machines. Skynet, the center of the machines sends a Terminator (a hyper-advance, superhuman cyborg) back in time to kill Sarah Connor, the mother of John Connor, the leader of the human resistance still battling Skynet.

    By doing so, John Connor will never have been born and the resistance would never have existed. To combat this, John Conner sends one of his own men - Kyle Reese (his to-be father), to protect Sarah Connor so that humanity can continue fighting.

    ","distributor":null,"has_staff_review":null,"id":66,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870722-terminator.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870722-terminator.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870722-terminator.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870722-terminator.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870722-terminator.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870722-terminator.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870722-terminator.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870722-terminator.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870722-terminator.jpg","image_tags":"All Images"},"name":"The Terminator","producers":null,"rating":"R","release_date":"2021-04-24 16:00:15","runtime":"108","site_detail_url":"https://comicvine.gamespot.com/the-terminator/4025-66/","studios":null,"total_revenue":"38371200","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-67/","box_office_revenue":"$402,111,870","budget":"$200,000,000","date_added":"2009-07-09 15:51:19","date_last_updated":"2021-11-02 15:01:06","deck":"Decepticon forces return to Earth on a mission to take Sam Witwicky prisoner, after the young hero learns the truth about the ancient origins of the Transformers. Joining the mission to protect humankind is Optimus Prime, who forms an alliance with international armies for a second epic battle.","description":"

    \"In the highly-anticipated Transformers: Revenge of the Fallen, debuting June 24, 2009, Sam Witwicky (Shia LaBeouf) again joins with the Autobots against their sworn enemies, the Decepticons. Michael Bay directs from a screenplay written by Ehren Kruger & Roberto Orci & Alex Kurtzman.\"

    ","distributor":null,"has_staff_review":null,"id":67,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/873357-revenge.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/873357-revenge.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/873357-revenge.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/873357-revenge.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/873357-revenge.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/873357-revenge.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/873357-revenge.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/873357-revenge.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/873357-revenge.jpg","image_tags":"All Images,Revenge of the fallen"},"name":"Transformers: Revenge Of The Fallen","producers":null,"rating":"PG-13","release_date":"2021-11-02 15:01:06","runtime":"2:24:00","site_detail_url":"https://comicvine.gamespot.com/transformers-revenge-of-the-fallen/4025-67/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4615/","id":4615,"name":"Paramount Pictures","site_detail_url":"https://comicvine.gamespot.com/paramount-pictures/4010-4615/"}],"total_revenue":"$836,303,693","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-72812/","id":72812,"name":"Ehren Kruger","site_detail_url":"https://comicvine.gamespot.com/ehren-kruger/4040-72812/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-68/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 15:54:02","date_last_updated":"2009-09-05 13:50:05","deck":"This movie was an utter failure but based on a comic strip, so unfortunately, it has a place here.","description":null,"distributor":null,"has_staff_review":null,"id":68,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870743-brendastarrposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870743-brendastarrposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870743-brendastarrposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870743-brendastarrposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870743-brendastarrposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870743-brendastarrposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870743-brendastarrposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870743-brendastarrposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870743-brendastarrposter.jpg","image_tags":"All Images"},"name":"Brenda Starr","producers":null,"rating":"2","release_date":"2009-09-05 13:50:05","runtime":"93","site_detail_url":"https://comicvine.gamespot.com/brenda-starr/4025-68/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-69/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 15:58:28","date_last_updated":"2013-04-03 11:46:29","deck":"A movie released in the 1940s.","description":"  ","distributor":null,"has_staff_review":null,"id":69,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870748-brenda_starr__reporter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870748-brenda_starr__reporter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870748-brenda_starr__reporter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870748-brenda_starr__reporter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870748-brenda_starr__reporter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870748-brenda_starr__reporter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870748-brenda_starr__reporter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870748-brenda_starr__reporter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870748-brenda_starr__reporter.jpg","image_tags":"All Images"},"name":"Brenda Starr, Reporter","producers":null,"rating":null,"release_date":"2013-04-03 11:46:29","runtime":"243","site_detail_url":"https://comicvine.gamespot.com/brenda-starr-reporter/4025-69/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-70/","box_office_revenue":"31765506","budget":"102000000","date_added":"2009-07-09 15:59:47","date_last_updated":"2020-12-28 16:28:30","deck":"The sequel to The Terminator, this is the continued story of humanity's last hope in a teenage John Connor.","description":"

    Following after the events of the first film, Skynet once again sends back a Terminator, this time with the objective of killing John Connor himself , who is a teenager. The resistance, once again, sends back a fighter of their own-a reprogrammed T-800 model, the original antagonist from the first movie. Together, Sarah (Linda Hamilton), John (Edward Furlong), and the T-800 (Arnold Sahwartzenegger) must stop the T-1000 and prevent Judgment Day from occurring.

    Terminator 2: Judgment Day is widely regarded as one of the greatest action movies ever created, and was hailed for it's intense action scenes as well as it's special effects. It was a massive box-office smash.

    ","distributor":null,"has_staff_review":null,"id":70,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870750-terminator2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870750-terminator2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870750-terminator2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870750-terminator2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870750-terminator2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870750-terminator2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870750-terminator2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870750-terminator2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870750-terminator2.jpg","image_tags":"All Images"},"name":"Terminator 2: Judgment Day","producers":null,"rating":"R","release_date":"2020-12-28 16:28:30","runtime":"137","site_detail_url":"https://comicvine.gamespot.com/terminator-2-judgment-day/4025-70/","studios":null,"total_revenue":"204843345","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-113842/","id":113842,"name":"William Wisher","site_detail_url":"https://comicvine.gamespot.com/william-wisher/4040-113842/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-71/","box_office_revenue":"338800000","budget":"120000000","date_added":"2009-07-09 16:05:26","date_last_updated":"2022-09-15 16:08:36","deck":"The second movie in the prequel trilogy of Star Wars films.","description":"

    Set ten years after Star Wars: Episode I. We meet a now adult Anakin Skywalker and his master Obi-Won Kenobi. They are assigned to protect an old friend, Senator Padme Amidala, from an assassination attempt. While trying to figure out who is out the senator, they discover some secrets about the galactic senate, the jedi order, and each other.

    ","distributor":null,"has_staff_review":null,"id":71,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870756-aotc.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870756-aotc.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870756-aotc.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870756-aotc.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870756-aotc.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870756-aotc.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870756-aotc.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870756-aotc.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870756-aotc.jpg","image_tags":"All Images,Attack of the Clones"},"name":"Star Wars Episode II: Attack of the Clones","producers":null,"rating":"2","release_date":"2022-09-15 16:08:36","runtime":"142","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-ii-attack-of-the-clones/4025-71/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":null,"writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-81545/","id":81545,"name":"Jonathan Hales","site_detail_url":"https://comicvine.gamespot.com/jonathan-hales/4040-81545/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-72/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 16:08:01","date_last_updated":"2019-07-18 05:31:41","deck":"Hellboy delves into Japanese mythology.","description":null,"distributor":null,"has_staff_review":null,"id":72,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870812-storm.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870812-storm.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870812-storm.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870812-storm.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870812-storm.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870812-storm.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870812-storm.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870812-storm.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870812-storm.jpg","image_tags":"All Images"},"name":"Hellboy: Sword of Storms","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-62750/","id":62750,"name":"Guillermo del Toro","site_detail_url":"https://comicvine.gamespot.com/guillermo-del-toro/4040-62750/"}],"rating":"2","release_date":"2019-07-18 05:31:41","runtime":"74","site_detail_url":"https://comicvine.gamespot.com/hellboy-sword-of-storms/4025-72/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-73/","box_office_revenue":"162700000","budget":"46000000","date_added":"2009-07-09 16:08:41","date_last_updated":"2017-07-20 20:45:27","deck":"The comic strip character battles crime-lords.","description":"
    ","distributor":null,"has_staff_review":null,"id":73,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/42/870856-mov366510.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/42/870856-mov366510.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/42/870856-mov366510.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/42/870856-mov366510.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/42/870856-mov366510.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/42/870856-mov366510.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/42/870856-mov366510.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/42/870856-mov366510.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/42/870856-mov366510.jpg","image_tags":"All Images"},"name":"Dick Tracy","producers":null,"rating":"2","release_date":"2017-07-20 20:45:27","runtime":"105","site_detail_url":"https://comicvine.gamespot.com/dick-tracy/4025-73/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-74/","box_office_revenue":"44041440","budget":"200000000","date_added":"2009-07-09 16:09:24","date_last_updated":"2017-07-05 18:36:07","deck":"The second sequel to the groundbreaking action film The Terminator. This time, an adult John Connor must attempt to stop SkyNet from initiating Judgment Day with an even more advanced Terminator hunting him.","description":"

    John Connor is now an adult and living as a drifter in America. However, SkyNet once more sends back a Terminator, their most advanced model yet-the T-X. The resistance, now lead by his future wife, sends back another reprogrammed T-800 to protect him. Together, John, The Terminator, and Kate Brewster (his future wife) must prevent Judgment Day once and for all, with SkyNet activated.

    ","distributor":null,"has_staff_review":null,"id":74,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870766-terminator3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870766-terminator3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870766-terminator3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870766-terminator3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870766-terminator3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870766-terminator3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870766-terminator3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870766-terminator3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870766-terminator3.jpg","image_tags":"All Images"},"name":"Terminator 3: Rise of The Machines","producers":null,"rating":"3","release_date":"2017-07-05 18:36:07","runtime":"109","site_detail_url":"https://comicvine.gamespot.com/terminator-3-rise-of-the-machines/4025-74/","studios":null,"total_revenue":"150371112","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-75/","box_office_revenue":"848754768","budget":"113000000","date_added":"2009-07-09 16:09:40","date_last_updated":"2022-06-17 19:23:26","deck":"The final movie in the prequel trilogy of Star Wars films.","description":"

    Star Wars Episode III: Revenge of the Sith depicts the final days of the Galactic Republic and The Jedi Order, along with the birth and rise of Darth Vader.

    ","distributor":null,"has_staff_review":null,"id":75,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870771-ep3_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870771-ep3_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870771-ep3_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870771-ep3_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870771-ep3_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870771-ep3_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870771-ep3_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870771-ep3_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870771-ep3_poster.jpg","image_tags":"All Images,Revenge of the Sith"},"name":"Star Wars Episode III: Revenge of the Sith","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103635/","id":103635,"name":"Rick McCallum","site_detail_url":"https://comicvine.gamespot.com/rick-mccallum/4040-103635/"}],"rating":"7.6","release_date":"2022-06-17 19:23:26","runtime":"140","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-iii-revenge-of-the-sith/4025-75/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"380270577","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-76/","box_office_revenue":"5735847","budget":"16000000","date_added":"2009-07-09 16:09:56","date_last_updated":"2021-01-07 19:44:56","deck":"Connor Macleod is an immortal born in Scotland circa 1518. Shortly after being cast out of his village, he meets another immortal named Ramirez. Ramirez teaches Connor in the ways of the immortals in order so that he can prepare himself for \"The Gathering,\" a battle of the few remaining immortals who compete to the end for \"The Prize.\"","description":null,"distributor":null,"has_staff_review":null,"id":76,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871278-highlander.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871278-highlander.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871278-highlander.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871278-highlander.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871278-highlander.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871278-highlander.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871278-highlander.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871278-highlander.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871278-highlander.jpg","image_tags":"All Images"},"name":"Highlander","producers":null,"rating":"4","release_date":"2021-01-07 19:44:56","runtime":"110","site_detail_url":"https://comicvine.gamespot.com/highlander/4025-76/","studios":null,"total_revenue":"12885193","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-77/","box_office_revenue":null,"budget":"11000000","date_added":"2009-07-09 16:12:48","date_last_updated":"2022-06-04 11:01:43","deck":"The original Star Wars film.","description":"

    The original Star Wars film, directed by George Lucas. Luke Skywalker must leave his life on a farm with his uncle to save a princess from an evil General.

    ","distributor":null,"has_staff_review":null,"id":77,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870776-starwarsmovieposter1977.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870776-starwarsmovieposter1977.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870776-starwarsmovieposter1977.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870776-starwarsmovieposter1977.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870776-starwarsmovieposter1977.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870776-starwarsmovieposter1977.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870776-starwarsmovieposter1977.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870776-starwarsmovieposter1977.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870776-starwarsmovieposter1977.jpg","image_tags":"All Images"},"name":"Star Wars Episode IV: A New Hope","producers":null,"rating":"2","release_date":"2022-06-04 11:01:43","runtime":"121","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-iv-a-new-hope/4025-77/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"775398007","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-78/","box_office_revenue":"557,800,000.00","budget":"18000000","date_added":"2009-07-09 16:14:47","date_last_updated":"2021-12-16 17:18:21","deck":"The second movie in the original Star Wars trilogy.","description":"

    The Plot

    3 years after the ending of A New Hope, The Rebel Alliance has suffered severe setbacks in the war against the Galactic Empire. Princess Leia is the leader of the base of the ice planet in the Hoth system and her two greatest fighters are Han Solo and Luke Skywalker.

    A probe droid sent by Darth Vader lands on Hoth which Luke goes to investigate. Before he has a chance to check out the object that hit the surface he is taken down by a wampa. The rebels report that Luke has never reported back in. Han then goes searching for Luke after he has been gone for a long time. Luke manages to escape the wampa and sees a vision of Obi-Wan Kenobi telling him to go to the Planet Dagobah to train with Master Yoda. Han then finds him and they wait till their rescuers arrive.

    Luke recovers in time to see the Imperial fleet attack with the AT-AT Walkers. The rebels put up a strong defense but couldn’t defend against the great might of the empire.

    Han and Leia escape on the Millennium Falcon with Chewbacca and C-3PO and barely escape.

    Luke crash lands on Dagobah and meets the mysterious Yoda who pretends to be a average swamp inhabitant in order to test his patience. After talking with Obi-Wan, Yoda accepts him as his pupil.

    Han and Leia soon discover their ship is in a giant asteroid worm and after escaping they go to the side of a Star Destroyer in Vader’s fleet to escape them yet again.

    Darth Vader the loses his patience with the fleet and sends out several bounty hunters to catch them.

    At the same time, Luke begins his training and his power grows exponentially. He suffers a setback though in his training when he fails one of his tests and sees his head in Darth Vader’s helmet.

    He then becomes greatly troubled by visions of Han and Leia in trouble, and despite protestations from his teachers he leaves to save his friends.

    Han takes the ship to Cloud City but unknowingly has the bounty hunter Boba Fett follow them and then he goes ahead of them and sets up Han and Leia’s capture. Vader then uses them as bait to bring Luke in.

    Vader reveals his plan to put Luke in suspended animation and uses Han as a test subject. Before being frozen Han and Leia profess their love for each other. Boba Fett then takes Han’s frozen body to Jabba for his reward.

    Lando then frees Leia and the rest of them but are to late to save Han and are forced to retreat without him.

    Luke arrives on Cloud City like Vader planned and they duel. After loses his arm, Luke discovers that Darth Vader is his father and instead of joining him he jumps into the Tube system and is ejected from Cloud City. He manages to grab hold of an antenna and mentally contacts Leia and the Falcon come and save him.

    With the Hyperdrive finally repaired, The Falcon escapes and Luke is given an artificial hand. Movie ends with Luke hearing a message from his father and he looks out with the rest of them staring out into space.

    ","distributor":null,"has_staff_review":null,"id":78,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870778-sw___empire_strikes_back.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870778-sw___empire_strikes_back.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870778-sw___empire_strikes_back.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870778-sw___empire_strikes_back.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870778-sw___empire_strikes_back.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870778-sw___empire_strikes_back.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870778-sw___empire_strikes_back.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870778-sw___empire_strikes_back.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870778-sw___empire_strikes_back.jpg","image_tags":"All Images"},"name":"Star Wars Episode V: The Empire Strikes Back","producers":null,"rating":"PG","release_date":"2021-12-16 17:18:21","runtime":"121","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-v-the-empire-strikes-back/4025-78/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":null,"writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-57747/","id":57747,"name":"Leigh Brackett","site_detail_url":"https://comicvine.gamespot.com/leigh-brackett/4040-57747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-57748/","id":57748,"name":"Lawrence Kasdan","site_detail_url":"https://comicvine.gamespot.com/lawrence-kasdan/4040-57748/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-79/","box_office_revenue":"475106177","budget":"32500000","date_added":"2009-07-09 16:16:19","date_last_updated":"2022-05-21 14:17:28","deck":"The final movie in the original trilogy of Star Wars.","description":"

    Leia has to rescue Han Solo from the clutches of Jabba the Hutt and once again the forces of the Rebel Alliance have to face the menace that is a newly rebuilt Death Star.

    ","distributor":null,"has_staff_review":null,"id":79,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870779-returnofthejediposter1983.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870779-returnofthejediposter1983.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870779-returnofthejediposter1983.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870779-returnofthejediposter1983.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870779-returnofthejediposter1983.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870779-returnofthejediposter1983.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870779-returnofthejediposter1983.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870779-returnofthejediposter1983.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870779-returnofthejediposter1983.jpg","image_tags":"All Images,Return of the Jedi"},"name":"Star Wars Episode VI: Return of the Jedi","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103635/","id":103635,"name":"Rick McCallum","site_detail_url":"https://comicvine.gamespot.com/rick-mccallum/4040-103635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-103641/","id":103641,"name":"Howard Kazanjian","site_detail_url":"https://comicvine.gamespot.com/howard-kazanjian/4040-103641/"}],"rating":"8.3","release_date":"2022-05-21 14:17:28","runtime":"136","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-vi-return-of-the-jedi/4025-79/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"252583617","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-57748/","id":57748,"name":"Lawrence Kasdan","site_detail_url":"https://comicvine.gamespot.com/lawrence-kasdan/4040-57748/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-80/","box_office_revenue":"10052042","budget":"18500000","date_added":"2009-07-09 16:17:30","date_last_updated":"2018-01-24 21:13:27","deck":"The sequel to the Academy Award winning horror film. Aliens adds more action, more characters, and many, many more Aliens.","description":"

    After the events of the first film, Ellen Ripley is awakened after fifty years of drifting in space whilst in cryo-sleep. She loses her license because of the destruction of her original ship, and is horrified to learn that the planet that the Alien originated on is now home to a colony of humans. However, after contact is lost with the colony, her employer, Weyland Yutani, offers Ripley the chance to advise the marines being sent to investigate.

    Upon their arrival, they find that the colony, save for one little girl, have been wiped out by the Aliens. Thus begins one of the most thrilling sci-fi films ever created.

    Aliens was nominated for seven academy awards, and won two-Sound Effects Editing and Visual Effects.

    ","distributor":null,"has_staff_review":null,"id":80,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/1152181-0abryo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/1152181-0abryo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/1152181-0abryo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/1152181-0abryo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/1152181-0abryo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/1152181-0abryo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/1152181-0abryo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/1152181-0abryo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/1152181-0abryo.jpg","image_tags":"All Images"},"name":"Aliens","producers":null,"rating":"4","release_date":"2018-01-24 21:13:27","runtime":"137","site_detail_url":"https://comicvine.gamespot.com/aliens/4025-80/","studios":null,"total_revenue":"131060248","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-69184/","id":69184,"name":"Walter Hill","site_detail_url":"https://comicvine.gamespot.com/walter-hill/4040-69184/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-81/","box_office_revenue":null,"budget":"185000000","date_added":"2009-07-09 16:19:17","date_last_updated":"2013-07-29 06:57:23","deck":"Indy's finally back and proving that you can still have fun even at an older age!","description":"

    It's 1957 and even though the times might be different, the life of Dr. Henry Jones Jr. hasn't changed. Indiana Jones is approached by a young college drop out and greaser Mutt Williams about helping his friend and Indy's colleague Dr. Harold Oxley. Oxley has gone missing while searching for the Crystal Skull and mythical city of Akator. Together, along with Indy's pal Mac Mchale and one time flame Marion Williams, they travel to Peru while being chased by Colonel Dr. Irina Spalko and the Soviets and encounter nuclear bombs, Soviets, and giant ants. The adventure will lead to a discovery bigger than time and space itself.

    ","distributor":null,"has_staff_review":null,"id":81,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870808-kingdomofthecrystalskull.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870808-kingdomofthecrystalskull.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870808-kingdomofthecrystalskull.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870808-kingdomofthecrystalskull.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870808-kingdomofthecrystalskull.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870808-kingdomofthecrystalskull.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870808-kingdomofthecrystalskull.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870808-kingdomofthecrystalskull.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870808-kingdomofthecrystalskull.jpg","image_tags":"All Images"},"name":"Indiana Jones and the Kingdom of the Crystal Skull","producers":null,"rating":"PG-13","release_date":"2013-07-29 06:57:23","runtime":"124","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-kingdom-of-the-crystal-skull/4025-81/","studios":null,"total_revenue":"786636033","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-82/","box_office_revenue":"5617391","budget":"6000000","date_added":"2009-07-09 16:23:47","date_last_updated":"2017-07-26 01:59:59","deck":"Batman: Mask of the Phantasm is a tie-in film to Batman: The Animated Series and the only animated Batman film to get a theatrical release. It premiered in theaters on Christmas Day, 1993. It follows Batman as he investigates a mysterious gangster murderer, the Phantasm while also showing his life and relationship with Andrea Beaumont shortly before his time as Batman.","description":"

    It all begins in Gotham city where Batman breaks up a counterfeiters ring who were planning to launder the phony bills through a casino. The leader of the group a man by the name of Chuckie Sol manages to elude Batman by running into a parking structure where he is confronted by the Phantasm whom he at first mistakes for Batman. He attempt to kill the Phantasm by shooting at it but bullets seem to have no affect. Chuckie in an act of desperation tries to run the Phantasm over with his car but ends up crashing through the Wall of the parking structure slamming into an adjacent building which kills him.

    Batman arrives on scene and give chase to the Phantasm who manages to escape before he can even see the villain. Before leaving the scene Batman finds a clue in the form of a piece of glass from Chuckie Sol's car. Meanwhile one of Bruce Wayne's old flames is returning to Gotham by plane her name is Aundrea Beaumont. As the plane prepare to land she talks about meeting an old friend of her's by the name of Arthur Reeves for dinner that very night. Back at the Bat cave and begins analyzing the glass to which he find a strange chemical able to produce fog. The Phantasm next target is Buzz Bronski whom after a lengthy chase across a cemetery falls into an open grave and is crushed to death when the Phantasm pushes a staute of an Angel on top of him.

    Bronski's bodyguards find his body and mistake the Phantasm for Batman a try to kill the Phantasm but again the Phantasm manages to get away. Later Batman comes to investigate the crime scene and finds the same chemical agents he found on Chuckie Sol's windshield. While at the cemetery Batman visits the grave of his parents and see's Aundrea visiting the grave of her mother she see's him as Batman flees she looks at the grave and correctly guesses that Batman is Bruce Wayne.

    Later on Batman spies on Andrea and Arthur Reeves as they have dinner in a high class restaurant. Throughout the story Batman flashes back to when he and Aundrea were dating many years prior from the time they first met as well as when they visit the World of the future theme park and Bruce tries to stop a mugging much to the dismay of Aundrea. What is also shown is his marriage proposal to her which is ruined when a swarm of bats flies out of what will one day be the Bat-Cave.

    Aundrea is forced to turn down the proposal after she and her father are forced to flee the country after he fails to pay off money he owed to the mob leaving Bruce and giving him the final push that made him Batman. The aged Leader of the Sal Velestra crime family that Buzz and Chuckie were once members of reads of their demise in the paper and fearing that Batman is the killer goes to the only person that he feels can protect him...The Joker who is hiding out at the World of the Future theme park.

    After offering the Joker a large amount of cash he agrees to help him. Later the Phantasm breaks into Sal Velestra's mansion and prepares to kill him but Joker has beaten the Phantasm to the punch and has already killed him with his patented Joker Venom. The Joker then blows up the mansion but the Phantasm again manages to escape by jumping out the window just as the building explodes. The Phantasm is then chased by Batman in the Batplane across the rooftops of Gotham and the duo have their first battle after a few blows are exchanged the Phantasm tells Batman \"Stay away this is not your fight!\" and Escapes using a huge smoke cloud just as the Gotham Police Department arrives who think Batman is the killer. They chase batman to a construction site

    ","distributor":null,"has_staff_review":null,"id":82,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/870817-phantasm.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/870817-phantasm.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/870817-phantasm.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/870817-phantasm.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/870817-phantasm.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/870817-phantasm.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/870817-phantasm.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/870817-phantasm.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/870817-phantasm.jpg","image_tags":"All Images"},"name":"Batman: Mask of the Phantasm","producers":null,"rating":"PG","release_date":"2017-07-26 01:59:59","runtime":"76","site_detail_url":"https://comicvine.gamespot.com/batman-mask-of-the-phantasm/4025-82/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"5617391","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-42061/","id":42061,"name":"Paul Dini","site_detail_url":"https://comicvine.gamespot.com/paul-dini/4040-42061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-45108/","id":45108,"name":"Alan Burnett","site_detail_url":"https://comicvine.gamespot.com/alan-burnett/4040-45108/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-84/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 16:25:31","date_last_updated":"2010-11-17 09:47:34","deck":"Buckaroo Banzai battles Lord John Worfin for control of a device that can travel through dimensions","description":null,"distributor":null,"has_staff_review":null,"id":84,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870822-adventures_of_buckaroo_banzai.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870822-adventures_of_buckaroo_banzai.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870822-adventures_of_buckaroo_banzai.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870822-adventures_of_buckaroo_banzai.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870822-adventures_of_buckaroo_banzai.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870822-adventures_of_buckaroo_banzai.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870822-adventures_of_buckaroo_banzai.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870822-adventures_of_buckaroo_banzai.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870822-adventures_of_buckaroo_banzai.jpg","image_tags":"All Images"},"name":"The Adventures of Buckaroo Banzai Across the 8th Dimension","producers":null,"rating":"2","release_date":"2010-11-17 09:47:34","runtime":"103","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-buckaroo-banzai-across-the-8th-d/4025-84/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-85/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 16:26:14","date_last_updated":"2021-04-24 18:22:17","deck":"The first full length wonder Woman movie. Partially based off of the Gods and Mortals story by George Perez.","description":"

    A young Diana enters a competition to escort a stranded Steve Trevor back to Man's World, but her mission gains a new element when Ares, the God of War, escapes from the Amazons' prison.

    Special features includes creator commentary and an exclusive first look at the (then-)upcoming Green Lantern animated movie.

    ","distributor":null,"has_staff_review":null,"id":85,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870824-wwposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870824-wwposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870824-wwposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870824-wwposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870824-wwposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870824-wwposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870824-wwposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870824-wwposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870824-wwposter.jpg","image_tags":"All Images,Wonder Woman"},"name":"Wonder Woman","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-7365/","id":7365,"name":"Bruce Timm","site_detail_url":"https://comicvine.gamespot.com/bruce-timm/4040-7365/"}],"rating":"PG-13","release_date":"2021-04-24 18:22:17","runtime":"74","site_detail_url":"https://comicvine.gamespot.com/wonder-woman/4025-85/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"8,743,983","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-41294/","id":41294,"name":"Gail Simone","site_detail_url":"https://comicvine.gamespot.com/gail-simone/4040-41294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-81633/","id":81633,"name":"Michael Jelenic","site_detail_url":"https://comicvine.gamespot.com/michael-jelenic/4040-81633/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-86/","box_office_revenue":"$6,093,526","budget":"3500000","date_added":"2009-07-09 16:27:15","date_last_updated":"2018-08-28 13:26:52","deck":"An alternate history of the Justice League of America which imagines Superman, Wonder Woman, Batman and other iconic DC Comics heroes pulling together to battle an alien menace during the Cold War, taking place from 1953 to 1961.","description":"

    Plot

    The film begins in 1953 with whom we later learn is The Centre explaining how it witnessed the evolution of the Earth and mankind. The explanation is shown being written and illustrated into a book titled \"The Last Story\" by a mysterious person who then proceeds to commit suicide. Then cutting to the Korean war where US Air Force pilot Hal Jordan and his partner Ace Morgan are attacked by North Korean fighters who are apparently uninformed of the cease fire just put into effect. Hal is shot down and parachutes down to a trench where a North Korean soldier is. He is attacked and is forced to kill the soldier by shooting him in the face. The event causes great trauma to Hal and he is placed in a mental hospital for the next two years.

    It then cuts to Gotham Observatory where J'onn J'onzz is inadvertently teleported to Earth from Mars by a scientist. His arrival proved to be too much for the scientist and he died of a heart attack due to the shock of seeing a Martian. Being unable to return to Mars he adopts the guise of the scientist and goes out into Gotham City.

    The following year, 1954 Superman goes to Indochina (Modern day Vietnam) to meet Wonder Woman who is celebrating with rebel women she freed. Superman is shocked to learn of Diana's and The Amazons moral and legal code, they allowed the women to exact their justice on their captors. Superman reminds her that the government already doesn't trust superheroes, which led to the disbanding of the Justice Society of America, the death of Hourman, and Batman being branded as fugitive vigilante who is now wanted by the government. Diana however states the she does what she feels is right and leaves for Paradise Island.

    In Gotham, J'onn is living in an apartment under the guise of Dr. Erbel, mistaking a television for a source of information on Earth culture. While watching television he demonstrates his shape-shifting powers by becoming Bugs Bunny, Groucho Marx, and finally a detective like character. In Las Vegas Iris West is interviewing famous nightclub singer Buddy Blake at a casino where Hal Jordan and Ace Morgan also happen to be. Iris then goes to call her boyfriend, Barry Allen when Captain Cold breaks in. Hearing the events over the phone Barry uses his costume ring and becomes The Flash, racing from Central City to Las Vegas he confronts Cold who tells him there are six bombs hidden around the city. Zipping around the city Barry finds five of the bombs, zipping around the city a few more times looking for the sixth bomb he deduces that there is no sixth bomb. He then zips into the casino upstairs into a room and out the window, leaping into Cold's helicopter; knocking Cold down into a fountain along with himself. Before Barry could subdue cold he was possessed by an unknown creature who asks him why he is different from the \"lesser beings\".

    Hal and Ace leave the casino and head into the desert to Ferris Aircraft where Hal is going to be tested as a pilot.

    Back in Gotham, J'onn is now with the Gotham City Police Department, under the guise of John Jones. John quickly rises to the rank of detective within two years, mostly due to him being able to solve crimes by using his powers. After investigating the kidnapping of a child which he later determined was part of a sacrificial cult, John and his partner Slam Bradley encounter Batman who is also investigating the kidnapping. They join Batman in fighting the cult members, a fire starts rendering J'onn useless because fire is Martians only weakness. His partner slam puts it out with a fire extinguisher, Batman then attempts to cut the boy loose from his bonds, terrifying the child. J'onn arrives and calms down the child, then he and his partner cut him down. The same creature that possessed Captain Cold takes possession of the cult leader, identifying itself for the first time as \"The Centre\" and warning of an impending judgment.

    While at Ferris Industries Hal begins his training under Col. Rick Flag Sr., his joking daredevil like ways don't agree with Flag but Carol Ferris understands Hal and recognizes Hal's natural ability at flying planes. She also informs Flag that Hal should know the truth of his training and his mission. She takes him to an enormous underground hangar, to a conference room with the project's leader, Special Agent King Faraday. There he tells Jordan that several years earlier a scientist named Dr. Saul Erbel contacted Mars and accidentally transported a Martian to Earth. He then informs Hal that the mission is a flight to Mars to determine whether or not the Martians pose a threat to the Earth.

    In Gotham, Batman reveals his knowledge of J'onn's true nature in his apartment, as he has found a way to shield his mind from J'onn's telepathy. Suggesting they should form an alliance since they're both investigating the ever growing cult that is spreading across the world. His act of kindness towards the boy leads him to think that he can be trusted. He warns him however that if he were to betray he is fully aware of and would use his weakness to fire against him if he felt he had to do so.

    Meanwhile in Central City The Flash destroys a robotic copy of Gorilla Grodd but is then attacked by a group of government agents including Faraday and Mademoiselle Marie. They fire off tear gas and then throw a net over Barry but he phases through it and escapes.

    At the Gotham city police station J'onn interrogates Harry Leiter, a former employee of Ferris Aircraft who was arrested for murder while under the influence of The Centre. During questioning, Harry slips and mentions the mars mission, then Agent Faraday arrives to take custody of Harry. J'onn greets him and when he shakes his hand he reads his thoughts and goes into his mind, uncovering the truth about the mars mission. He then goes to a local bar and on teh television he witnesses The Flash announce his retirements as a hero, he leaves and heads for the Batcave. He reveals to Batman that he's lost his faith in humanity and is planning to sneak on boar the space shuttle bound for mars. His response to J'onn's statement is cold and brief, telling him that not everyone has the luxury of leaving Earth.

    He then goes to Ferris Aircraft and attempts to enter the ship but is seen on camera by Faraday. He confronts J'onn and attempts to shoot him but J'onn beats him and as the rocket was about to launch he grabbed Faraday and landed on a platform, then collapsing right before armed guards showed up. The rocket is damaged and malfunctions several minutes into flight. Hal wants to land the plane as he is skilled enough to do so but his co-pilot, Flag won't risk it as there are weapons on board. After a brief struggle with Flag, he ejects him and Flag then proceeds to initiate the self destruct sequence. When he is falling towards the Earth Superman comes to his rescue and safely brings him back to down to Earth to the launchpad. Superman then confronts Faraday for treating J'onn differently just because he doesn't look like everyone else. He also points out to Faraday that J'onn could have left any time he wanted to but he decided to stay and that should teach him something.

    On Paradise Island wonder Woman is training with Mala, telling her of how much America has changed since the war over ten years earlier. She replies back saying that the island has changed, many Amazons no longer want Hippolyta in charge. The two of them stop training when they realize a huge creature, The Centre is approaching.

    Back at Ferris Aircraft, while Hal is in a training simulator, it begins to shake and a green glow encircles it and it starts to fly. It takes him out into teh desert where he finds a crashed spaceship belonging to Abin Sur, the Green Lantern of Sector 2814. He tells him in his dying breath that he has been chosen to become the next Green Lantern of Sector 2814. He mentions that his ship was hit by massive amount of yellow energy, likely caused by Hal's ship exploding and that he was forced to crash land on Earth and send his ring out to find the next worthy man to become his replacement. He leaves his ring with Hal and warns him of the threat that The Centre poses to mankind before dying.

    In the Batcave, Superman and Batman review the evidence gathered by J'onn and Superman meets Robin for the first time. Superman asks him why the change in his costume and why the boy, he replies that he set out to strike terror in the hearts of the guilty not the innocent. As they talk they hear Lois come on over the radio, reporting the attack of a giant pterodactyl at Cape Canaveral, Florida. Superman flies to Cape Canaveral an quickly takes out the creature. Right after Wonder Woman's invisible plane makes a crash landing, its cockpit smothered in blood along with Diana. Before losing consciousness she warns Superman of The Centre's arrival.

    Faraday and J'onn are now shown to be friends, occasionally chess with one another. J'onn reveals that he decided to stay because of the upcoming battle with The Centre and that he telepathically linked his with him on the platform before his capture. He found that Faraday believes that one day humanity won't live in a world with fear and hate. Being able to find that within Faraday renews J'onn's hope in humanity and decides to participate in the upcoming battle against The Centre to save the Earth. Before leaving with Faraday to Cape Canaveral J'onn adopts a new friendlier look and becomes a superhero calling himself the Martian Manhunter.

    The Centre then begins its attack on the east coast of Florida, finally revealing itself for the first time. The Centre is massive island like creature with an army of mutated dinosaurs on it's surface. The threat draws the world's heroes including The Flash (Who was convinced by Iris to come out of retirement), Adam Strange, Green Arrow, the Challengers of The Unknown, and The Blackhawk Squadron who clashed with the soldiers at the base. The clash was stopped by Superman who wants cooperation between both sides. Surprisingly Faraday agrees and seconds Superman's proposal along with J'onn, who feels that the government and heroes should work together for freedom. Superman then heads out to attack the Centre but is shockingly defeated in a second, leaving the other heroes and soldiers shocked.

    The rest of the heroes and soldiers decide to band together, to fight the Centre in honor of Superman. Batman then interrupts a meeting between Faraday, J'onn, Will Magnus and the Challengers in order to present Ray Palmer, a scientist known for his work on matter reduction. One of the Challengers argue that it's a waste of time, the technology is too unreliable, causing everything it shrinks to become destabilized. Batman points out that that's the exact point, everything it shrinks becomes unstable, meaning his invention could be used against the Centre. Ace argues that no could get fast enough to go over the entire island with the machine, Batman points out that The Flash is fast enough. Their plan is to distract The Centre with an air attack on the outside and a small two man team comprised of Hal and Ace attacking inside while The Flash runs across The Centre.

    Together Batman in the Batplane, Green Arrow in the Arrowplane, and Challengers of The Unknown lead the air assault but are soon outmatched until the Blackhawk Squadron intervenes, though Faraday and the ground forces are quickly outnumbered as well as they find themselves up against an army of mutated dinosaurs. J'onn is then overwhelmed by The Centre's immense telepathic abilities, Faraday then comes to his rescue but is captured by a dinosaur. As he is about be eaten Faraday grabs an entire belt of grenads, pulling off two and then pulling the pins before landing in the creature's mouth.

    The shock of Faraday's death helps J'onn overcome The Centre's psychic attack and then he and Wonder Woman help turn the tides on the battle. Hal and Ace shoot their way into The Centre and once entering they find themselves in a bizarre psychedelic world, disorienting them at first. A thick red liquid then starts to secrete from the creature, jamming the controls of their planes. Right before his plane is about to explode Hal's ring activates, along with a message from The Guardians instructing him on the use of his ring.

    As Ace is about to detonate his plane Hal rescues him, now dressed in a costume identical to the one worn by Abin Sur. The explosion gives the ground force enough time to send the Flash in. Racing across he reaches the Centre in a matter of seconds and leaps up onto it, circling around the entire thing before leaping off into th ocean. As The Centre begins to shrink it heads towards the coast, to take humanity with it.

    Realizing the destruction that will cause Hal uses his ring on it, enveloping the creature with his energy and then hauling it into space to let it explode. As the entire world begins to celebrate Hal celebrates the achievement of his goal, finally being able to fly through space. Amidst the celebration comes Aquaman or Arthur of Atlantis as he is called along with Superman who he says has been calling for a woman named Lois for some time. The heroes gather together for a photo by Jimmy Olsen of the Daily Planet, making the front page.

    Awards

    The series received Eisner Award for Best Limited Series, Best Coloring and Best Publication Design, Harvey Awards for Best Artist, Best Colorist and Best Continuing or Limited Series and received the Shuster Award for Outstanding Canadian Comic Book Cartoonist (Writer-Artist). In 2007, when the series was released as an Absolute Edition, it received an Eisner Award for Best Graphic Album (Reprint) and a Harvey Award for Best Graphic Album of Previously Published Work.

    ","distributor":null,"has_staff_review":null,"id":86,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870848-newfrontier2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870848-newfrontier2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870848-newfrontier2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870848-newfrontier2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870848-newfrontier2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870848-newfrontier2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870848-newfrontier2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870848-newfrontier2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870848-newfrontier2.jpg","image_tags":"All Images"},"name":"Justice League : The New Frontier","producers":null,"rating":"3","release_date":"2018-08-28 13:26:52","runtime":"75","site_detail_url":"https://comicvine.gamespot.com/justice-league-the-new-frontier/4025-86/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-574/","id":574,"name":"Warner Brothers","site_detail_url":"https://comicvine.gamespot.com/warner-brothers/4010-574/"}],"total_revenue":"$2,593,526","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-12914/","id":12914,"name":"Darwyn Cooke","site_detail_url":"https://comicvine.gamespot.com/darwyn-cooke/4040-12914/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-87/","box_office_revenue":"12031638","budget":"18000000","date_added":"2009-07-09 16:28:51","date_last_updated":"2018-11-23 17:01:01","deck":"The first movie in the Predator franchise. One of them is the hunter, and one the prey-but which one?","description":"

    A group of army commandos led by Major Alan \"Dutch\" Schaefer is ordered to rescue a cabinet minister from terrorists in Guatemala. However, soon after embarking on their mission, they find that they are not the hunters, but the prey.....and the Predator is something that is not of this earth.

    Notes:

    ","distributor":null,"has_staff_review":null,"id":87,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870823-predator.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870823-predator.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870823-predator.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870823-predator.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870823-predator.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870823-predator.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870823-predator.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870823-predator.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870823-predator.jpg","image_tags":"All Images"},"name":"Predator","producers":null,"rating":"4","release_date":"2018-11-23 17:01:01","runtime":"107","site_detail_url":"https://comicvine.gamespot.com/predator/4025-87/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-5453/","id":5453,"name":"20th Century Fox","site_detail_url":"https://comicvine.gamespot.com/20th-century-fox/4010-5453/"}],"total_revenue":"60000000","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-88/","box_office_revenue":"51970690","budget":"22000000","date_added":"2009-07-09 16:30:10","date_last_updated":"2022-07-26 07:14:19","deck":"The first release of the Underworld saga, this film acquaints viewers with the immortal war between vampires and lycans.","description":"
    ","distributor":null,"has_staff_review":null,"id":88,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870825-underworld_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870825-underworld_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870825-underworld_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870825-underworld_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870825-underworld_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870825-underworld_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870825-underworld_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870825-underworld_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870825-underworld_poster.jpg","image_tags":"All Images"},"name":"Underworld","producers":null,"rating":"R","release_date":"2022-07-26 07:14:19","runtime":"121","site_detail_url":"https://comicvine.gamespot.com/underworld/4025-88/","studios":null,"total_revenue":"95708457","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-44600/","id":44600,"name":"Kevin Grevioux","site_detail_url":"https://comicvine.gamespot.com/kevin-grevioux/4040-44600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61192/","id":61192,"name":"Danny McBride","site_detail_url":"https://comicvine.gamespot.com/danny-mcbride/4040-61192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-124169/","id":124169,"name":"Len Wiseman","site_detail_url":"https://comicvine.gamespot.com/len-wiseman/4040-124169/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-89/","box_office_revenue":"62318875","budget":"50000000","date_added":"2009-07-09 16:32:21","date_last_updated":"2021-04-24 18:07:17","deck":"The second movie of the Underworld Franchise, this story concentrates primarily on William and Markus Corvinus.","description":"
    ","distributor":null,"has_staff_review":null,"id":89,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870828-underworld2evolution.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870828-underworld2evolution.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870828-underworld2evolution.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870828-underworld2evolution.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870828-underworld2evolution.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870828-underworld2evolution.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870828-underworld2evolution.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870828-underworld2evolution.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870828-underworld2evolution.jpg","image_tags":"All Images"},"name":"Underworld: Evolution","producers":null,"rating":"R","release_date":"2021-04-24 18:07:17","runtime":"106","site_detail_url":"https://comicvine.gamespot.com/underworld-evolution/4025-89/","studios":null,"total_revenue":"95708457","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-90/","box_office_revenue":"45802315","budget":"35000000","date_added":"2009-07-09 16:34:18","date_last_updated":"2021-04-24 18:07:08","deck":"This prequel of the Underworld saga centers around the story of Lucian. It tells of his love for Sonja, his dream of freedom, and his struggle to attain that freedom.","description":"
    ","distributor":null,"has_staff_review":null,"id":90,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/870829-underworld_rise_of_the_lycans_poster.jpg","image_tags":"All Images"},"name":"Underworld: Rise of the Lycans","producers":null,"rating":"R","release_date":"2021-04-24 18:07:08","runtime":"92","site_detail_url":"https://comicvine.gamespot.com/underworld-rise-of-the-lycans/4025-90/","studios":null,"total_revenue":"89971676","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-91/","box_office_revenue":"8784943","budget":"35000000","date_added":"2009-07-09 16:37:36","date_last_updated":"2017-02-11 19:18:28","deck":"The sequel to Predator, Predator 2 changes the setting to Los Angeles 1997, the near future.","description":"

    The year is 1997. The city of Los Angeles is suffering from a brutal heatwave. Amidst this, the carnage of a gang war ravages the city streets. Unknown to the city's inhabitants, a predator is in town.

    Following a search and capture operation during a gang-war, LAPD cop Harrigan's team senses something amiss. Someone seems to have gotten to their targets before them, and has literally butchered them. As more such incidents follow, Harrigan decides to visit the local \"powder prince\", King Willie, who is also an occult practitioner. Willie tells him that an unknown and powerful force is behind the murders of the policemen and the gang members. The predator then kills Willie.

    Harrigan loses his best friend Danny, to the predator. After some hot talks with a special agent, Keyes, he loses another man of his team, when the predator attacks a metro-rail. The predator however releases LAPD cop Cantrell, when it realises that she is pregnant. Going to Danny's grave, he catches sight of Danny's necklace hanging from a tree. He knows that he is being followed by the killer.

    One night, Harrigan sees the predator and follows it. After a lengthy chase, the predator stops at a slaughterhouse. But Harrigan is intercepted by Keyes' men and brought to their mobile base. Keyes tells him that they have been keeping tabs on the predator for some time, and have devised a way to capture it. The special agents dress up in special suits and go into the slaughterhouse. However, all their efforts fall in vain, when the predator switches its vision to a different wavelength and notices the men. Harrigan notices the predator's cautious movements and knows that the agents have lost their cover.

    Soon after the predator kills all of the agents, Harrigan engages in a one-on-one fight with it and manages to wound it with his big guns. But the predator refuses to be put down, and kills Keyes who seemingly had survived the predator before. They make their way to the rooftop and Harrigan pushes both of them over the ledge. As the predator arms his nuclear bomb, Harrigan uses the predator's cutter disc to disarm the bomb and cut the predator's hand.

    The action shifts to the next building and into the predators' spaceship. Inside a grand chamber, the predator engages Harrigan, but Harrigan still wins, using the predator's own weapon against it. The other predators come and take away their fallen comrade, and gift Harrigan with an antique flint-lock gun. Theh their spaceship blasts away, leaving Harrigan on the ground.

    The special agents arrive too late, but Harrigan anticipates that the predators will return.

    ","distributor":null,"has_staff_review":null,"id":91,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871203-pred2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871203-pred2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871203-pred2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871203-pred2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871203-pred2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871203-pred2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871203-pred2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871203-pred2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871203-pred2.jpg","image_tags":"All Images"},"name":"Predator 2","producers":null,"rating":"4","release_date":"2017-02-11 19:18:28","runtime":"108","site_detail_url":"https://comicvine.gamespot.com/predator-2/4025-91/","studios":null,"total_revenue":"57000000","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-92/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 16:42:21","date_last_updated":"2015-09-13 11:15:52","deck":"A loose adaption of the Wake the Devil storyline from the Hellboy series by Mike Mignola.","description":"

    Hellboy and the BPRD are called in to investigate a haunted house and soon find that there is more then cold spots and shadowy apperitions. Two withces are conspiring to raise Erzsebet Ondrushko, a vampire high priestess of Hecate who wants to bring Hellboy over to the side of evil.

    ","distributor":null,"has_staff_review":null,"id":92,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870853-hbbloodiron_3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870853-hbbloodiron_3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870853-hbbloodiron_3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870853-hbbloodiron_3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870853-hbbloodiron_3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870853-hbbloodiron_3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870853-hbbloodiron_3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870853-hbbloodiron_3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870853-hbbloodiron_3.jpg","image_tags":"All Images"},"name":"Hellboy: Blood and Iron","producers":null,"rating":"5","release_date":"2015-09-13 11:15:52","runtime":"75","site_detail_url":"https://comicvine.gamespot.com/hellboy-blood-and-iron/4025-92/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-93/","box_office_revenue":"10059425","budget":"40000000","date_added":"2009-07-09 16:45:29","date_last_updated":"2013-10-03 13:39:43","deck":"Once again, the forces of Aliens and Predators clash on Earth.","description":"

    Picking up after the events of the first AVP, the Predator ship crash lands on Earth after a Predalien (a Predator/Alien hybrid) wreaks havoc on it. The Aliens contained onboard descend upon an unsuspecting town in America, and a group of survivors try desperately to escape the town, caught between the combined crossfire of Aliens and the US Army. However, one lone, highly skilled Predator enters the town, seeking to clean up the incident-and hunt the most deadly game of all.

    ","distributor":null,"has_staff_review":null,"id":93,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870854-avpr.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870854-avpr.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870854-avpr.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870854-avpr.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870854-avpr.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870854-avpr.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870854-avpr.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870854-avpr.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870854-avpr.jpg","image_tags":"All Images"},"name":"Alien Vs. Predator-Requiem","producers":null,"rating":"4","release_date":"2013-10-03 13:39:43","runtime":"94","site_detail_url":"https://comicvine.gamespot.com/alien-vs-predator-requiem/4025-93/","studios":null,"total_revenue":"129000000","writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-94/","box_office_revenue":"$53424681","budget":"$13000000","date_added":"2009-07-09 16:51:02","date_last_updated":"2017-07-22 21:50:02","deck":"Murphy is reborn as RoboCop, part man, part machine, all cop.","description":"

    Taking place in Detroit city and in a future timeline, crime has became a huge problem for Detroit city. With the police force on the verge of going on strike, Omni Consumer Products (OCP) tries to find a way to bring down crime and rebuild Detroit City.

    When Officer Murphy is killed in a violent death, his body was taken too OCP and used for the RoboCop program. Built as a cyborg with no memory of his former life, RoboCop started to become a success in the police force and bringing down crime.

    Then Murphy slowly starts to remember who he was and how he died which leads him to bring down the people who was responsible for his death. As RoboCop continues his manhunt, he finds out that a member of OCP is also involved in the crimewave.

    ","distributor":null,"has_staff_review":null,"id":94,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/870855-robocopposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/870855-robocopposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/870855-robocopposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/870855-robocopposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/870855-robocopposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/870855-robocopposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/870855-robocopposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/870855-robocopposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/870855-robocopposter.jpg","image_tags":"All Images"},"name":"RoboCop","producers":null,"rating":"4","release_date":"2017-07-22 21:50:02","runtime":"102","site_detail_url":"https://comicvine.gamespot.com/robocop/4025-94/","studios":null,"total_revenue":null,"writers":null},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-95/","box_office_revenue":"242000000","budget":"20000000","date_added":"2009-07-09 17:02:53","date_last_updated":"2021-03-30 11:14:15","deck":"One of the most famous heroes of cinema makes his debut in Raiders of the Lost Ark.","description":"

    One of the greatest adventure films of all time, Raiders of the Lost Ark (later retitled \"Indiana Jones and the Raiders of the Lost Ark\") follows College Professor and \"Collector of Rare Antiquities\" Indiana Jones on his quest to find the Ark of the Covenant, and prevent it from falling into Nazi hands.

    f the greatest adventure films of all time, Raiders of the Lost Ark follows College Professor and \"Collector of Rare Antiquities\" Indiana Jones on his quest to find the Ark of the Covenant, and prevent it from falling into Nazi hands.

    Plot

    WARNING PLOT WILL CONTAINS SPOILERS

    In 1936 an American archaeologist named \"Indiana Jones\" goes to a temple in Peru that is full of booby traps so he can retrieve the golden idol. After escaping the temple and surviving two traitorous guides, Indiana is met by a fellow archaeologist named René Belloq and the Hovitos. Indiana is forced to hand over the idol and and escapes on a seaplane, which has a snake in it (showing Indiana's fear of snakes for the first time).

    Not long after returning to the college he teaches at, Indian is met by two Army inelegance agents who inform him that Nazi German forces are after Indiana’s mentor, Abner Ravenwood, whom they believe has an artifact called \"the Staff of Ra\", which Indiana tells them is supposed to show the way to the location of the Ark of the Covenant, the chest that holds the Ten Commandments.

    Indiana travels to Nepal to find that Ravenwood is dead and his daughter Marion Marion is in possession of the headpiece to the Staff of Ra. Indiana offers to buy the headpiece for $3,000, and an additional $2,000 so Marion can return to the States. A group of men commanded by Toht raid Marion’s tavern looking for the headpiece. During this melee the tavern is burned to the ground and Toht burns his hand on the hot headpiece. Indiana and Marion escape with the headpiece and head to search for the Ark.

    They travel to Cairo where they meet Sallah who tells them that Belloq and the Nazis lead by Colonel Dietrich, are digging for the Well of Souls using a replica of the headpiece (using the scar from Toht's hand to design it). Nazis kidnap Marion and as Indian chases them it appears she dies in an explosion. Indiana and Sallah whilst deciphering the markings on the headpiece realize that the Nazis are digging in the wrong location. They then infiltrate the dig site and use the Staff of Ra to find the right location to the Well of Souls. Once there they find the well is full of snakes, but Indiana fends them off using petrol and fire to find the Ark. Once Sallah and the Ark are out Belloq, Dietrich and the Nazis dispose of Indiana’s rope and take the Ark for them self. They throw Marion (who is still alive) into the well and seal them in. They both escape and after fighting a huge Nazi steals the Ark back before it leaves for Berlin.

    Indiana and Marion leave to escort the Ark to England on a steamer, but the next morning they are boarded by Belloq, Dietrich and the Nazis who steal the Ark back and also kidnap Marion again. Indiana sneaks onto their U-boat which is heading to an island in the Aegean Sea. There Belloq is going to test out the power of the Ark before giving it to Hitler. Indiana threatens to blow up the Ark, but is instead captured.

    Indiana and Marion are tied to a post whilst Belloq performs a ritual to open the Ark, which appears to contain nothing. Suddenly spirits exit form the Ark. Indian tells Marion to close her eyes and not look at the Ark, as the spirits kill the Nazi soldiers with lightning bolts, and kill Belloq, Dietrich and Toht more gruesomely. They then go back into the Ark and the Ark closes.

    Once back in America the Army intelligence agents tell Indiana and Brody that the Ark is some place safe and to be studied by “top men”. The Ark is actually sealed in a wooden crate and marked “top secret” being stored in a giant government warehouse, which hold’s a vast amount of government secrets.

    ","distributor":null,"has_staff_review":null,"id":95,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870867-raiders.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870867-raiders.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870867-raiders.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870867-raiders.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870867-raiders.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870867-raiders.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870867-raiders.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870867-raiders.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870867-raiders.jpg","image_tags":"All Images"},"name":"Indiana Jones and The Raiders of The Lost Ark","producers":null,"rating":"PG","release_date":"2021-03-30 11:14:15","runtime":"115","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-raiders-of-the-lost-ark/4025-95/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"384000000","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-96/","box_office_revenue":"179000000","budget":"28000000","date_added":"2009-07-09 17:09:00","date_last_updated":"2016-11-04 21:56:52","deck":"The continued adventures of the tomb raiding Indiana Jones.","description":"

    Taking place before Raiders of the Lost Ark, Temple of Doom follows Indiana Jones' quest to recover a sacred artifact from a evil cult. It once again starred Harrison Ford as the adventurous Dr. Jones, although this time he was accompanied by kid sidekick Short Round, and the female singer Willie Scott.

    Plot

    WARNING PLOT WILL CONTAINS SPOILERS

    In 1935 (1 year before the events of Raiders of the Lost Ark) Indiana Jones barley escapes from the Shanghai crime boss Lao Che who had even poisoned Indiana. He leaves the country in a place, which (unknown to him) is owned by Lao Che, along with his eleven year old sidekick Short Round and a singer named Willie Scott , who Indiana picked up whilst escaping from Lao Che. The pilots use the only two parachutes to leave the plane which then crashes over the Himalayas. Before it actually crashes though Indiana, Short Round, and Willie escape on an inflatable boat which takes them to Mayapore, a village in the north of India.

    The villagers believe that Indiana, Short Round, and Willie have been sent by the Hindu god Shiva to help them retrieve a sacred Sivalinga stone, and their children, both of whom were stolen from them, and taken by Thuggee cult to Pankot Palace. Indiana realises that the stone may be one of the five mythical Sankara stones, which are meant to bring fortune and glory.

    The trio head for Pankot Palace and once there are greeted by Prime Minister Chattar Lal and the Maharajah Zalim Singh, who Willie realises once he appears is only a child. During a banquet Indiana brings up the villagers accusations which offends Chattar Lal. Later after arguing with Willie, Indiana is attacked by an assassin. Indiana then searches Willie’s room and finds a secret passage way which is full of booby traps and bugs.

    Once past the booby traps they find the Thuggee cult, lead by their evil high priest Mola Ram, who are worshiping the Hindu goddess Kali with a human sacrifice. Indiana notice that the Thuggee have three of the five Sankara stones, as well as having the children, including the Maharajah mine for the remaining two. Whilst tying to steal the stones Indian and the others are captured. Indiana is then whipped and forced to drink the Blood of Kali which puts him into a trance state called the Black Sleep of Kali Ma.

    Indiana now in the trance is forced to help them as they try to sacrifice Willie until Short Round (who has escaped from the mine) burns him with a torch knocking him out of the trance. Indiana (who has fended of the guards) and Short Round rescue Willie and they set of to free the children. During this the Maharajah, who is still under the same trance Indiana was in tries to stop him using Voodoo. Short Round then goes up and fights with the Maharajah eventually using a torch on him to knock him out of the trance the same way he did with Indiana. The Maharajah tells Short Round the correct passage out of the mine and the trio leave on a cart being chased by two groups of Mola Ra’s men.

    After escaping the mine they are cornered over a bridge by Mola Ra and him men. Indiana after telling Short Round and Willie in code to hang on cuts the rope and the few of Mola Ra’s men remaining, Mola Ra himself, Indiana, Short Round and Willie are left hanging. Indiana uses an incantation on the stones which turn them red hot, with two of them falling into the water below. Mola Ram then falls in after trying to catch the remaining red hot stone which Indiana catches after it’s cooled down.

    The Thuggee across the river try shooting Indiana with arrows until the British Indian Army from Pankot arrive. Indiana, Short Round and Willie then return the stone to the village, along with the already returned children.

    ","distributor":null,"has_staff_review":null,"id":96,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870875-temple_of_doom.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870875-temple_of_doom.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870875-temple_of_doom.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870875-temple_of_doom.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870875-temple_of_doom.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870875-temple_of_doom.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870875-temple_of_doom.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870875-temple_of_doom.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870875-temple_of_doom.jpg","image_tags":"All Images"},"name":"Indiana Jones and the Temple of Doom","producers":null,"rating":"PG","release_date":"2016-11-04 21:56:52","runtime":"118","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-temple-of-doom/4025-96/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"333000000","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-97/","box_office_revenue":"25504513","budget":"1800000","date_added":"2009-07-09 17:10:01","date_last_updated":"2013-05-10 01:59:44","deck":"The one that started it all. Freddy Krueger terrorizes children while they sleep.","description":"

    Plot Summary

    In the early 80's a technical mistake made by Springwood police officers freed the child killer known as The Springwood Slasher (AKA Fred Krueger). The families of the children that were killed became outraged and hunted down Krueger, before taking the law into their own hands and burning him alive. Now years later after the mysterious murder of a teenager, her friend Nancy has suddenly become the newest target of this deadly game. Returning in the children's dreams his reign of terror returns and with more force than ever. Using his new-found powers Freddy now not only slaughters the children but uses some of their greatest fears to do so. With only her boyfriend supporting her Nancy must discover her inner strength and find a way to destroy \"The Boogey Man\" if she is to survive the night.

    ","distributor":null,"has_staff_review":null,"id":97,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870878-nightmare01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870878-nightmare01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870878-nightmare01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870878-nightmare01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870878-nightmare01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870878-nightmare01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870878-nightmare01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870878-nightmare01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870878-nightmare01.jpg","image_tags":"All Images"},"name":"Nightmare on Elm Street","producers":null,"rating":"4","release_date":"2013-05-10 01:59:44","runtime":"90","site_detail_url":"https://comicvine.gamespot.com/nightmare-on-elm-street/4025-97/","studios":null,"total_revenue":null,"writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61909/","id":61909,"name":"Wes Craven","site_detail_url":"https://comicvine.gamespot.com/wes-craven/4040-61909/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-98/","box_office_revenue":"21500000","budget":"13000000","date_added":"2009-07-09 17:12:47","date_last_updated":"2022-02-19 17:52:09","deck":"Ash fights medival Deadites and his own doppelganger to get back to his own time.","description":"  
     
    Bound in human flesh, inked in blood - and amazingly hard to pronounce  the ancient \" Necronomicon\" (Book of the Dead) unleashes uspeakable evil upon mankind in director Sam Raimi's (Darkman) outrageously hilarious sword-and-sorcery epic.
     
    Back to do battle with the hideous \"Deadites\", Bruce Campbell reprises his role from the Evil Dead series as Ash, the handsome, shotgun-toting, chainsaw-armed department store derk from S-Mart's housewares division. Demonic forces time warp him - and his '73 Oldsmobile - into England's Dark Ages, where he romances a beauty (Embeth Davidtz) and faces legions of undead beasts, including a fhastly army of skeletons. Can Ash save the living from the evil dead, rescue his girlfriend, and get back to his own time? 
     
    Overflowing with spectacular specials effects, Army of Darkness will make you scream with fear and laughter. In the words of The Washington Post. it's \"drop-dead fun!\"","distributor":null,"has_staff_review":null,"id":98,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871235-poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871235-poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871235-poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871235-poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871235-poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871235-poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871235-poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871235-poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871235-poster.jpg","image_tags":"All Images"},"name":"Army of Darkness","producers":null,"rating":"4","release_date":"2022-02-19 17:52:09","runtime":"81","site_detail_url":"https://comicvine.gamespot.com/army-of-darkness/4025-98/","studios":null,"total_revenue":"21500000","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61963/","id":61963,"name":"Sam Raimi","site_detail_url":"https://comicvine.gamespot.com/sam-raimi/4040-61963/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-99/","box_office_revenue":null,"budget":"16000000","date_added":"2009-07-09 17:15:16","date_last_updated":"2017-03-06 13:35:46","deck":"A disfigured scientist gets revenge on the people that ruined his life.","description":null,"distributor":null,"has_staff_review":null,"id":99,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/871201-darkman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/871201-darkman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/871201-darkman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/871201-darkman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/871201-darkman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/871201-darkman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/871201-darkman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/871201-darkman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/871201-darkman.jpg","image_tags":"All Images"},"name":"Darkman","producers":null,"rating":"4","release_date":"2017-03-06 13:35:46","runtime":"96","site_detail_url":"https://comicvine.gamespot.com/darkman/4025-99/","studios":null,"total_revenue":"48878520","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-61963/","id":61963,"name":"Sam Raimi","site_detail_url":"https://comicvine.gamespot.com/sam-raimi/4040-61963/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-100/","box_office_revenue":"29000000","budget":"55000000","date_added":"2009-07-09 17:18:15","date_last_updated":"2016-06-16 19:39:19","deck":"The third installment of the Indiana Jones series. This time, Indiana Jones must team up with his father to prevent the Nazis from discovering perhaps the most sacred artifact of all: the Holy Grail.","description":"

    The year is 1938. Indiana Jones' father, Henry Jones, has been kidnapped by the Nazis. Now it comes down to the greatest adventurer of all time to rescue his father, defeat the Nazis, and find the greatest artifact of all-the Holy Grail.

    ","distributor":null,"has_staff_review":null,"id":100,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870891-last_crusade.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870891-last_crusade.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870891-last_crusade.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870891-last_crusade.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870891-last_crusade.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870891-last_crusade.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870891-last_crusade.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870891-last_crusade.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870891-last_crusade.jpg","image_tags":"All Images"},"name":"Indiana Jones and the Last Crusade","producers":[{"api_detail_url":"https://comicvine.gamespot.com/api/producer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}],"rating":"PG-13","release_date":"2016-06-16 19:39:19","runtime":"127","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-last-crusade/4025-100/","studios":[{"api_detail_url":"https://comicvine.gamespot.com/api/studio/4010-4381/","id":4381,"name":"Lucasfilm Ltd.","site_detail_url":"https://comicvine.gamespot.com/lucasfilm-ltd/4010-4381/"}],"total_revenue":"474000000","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-56180/","id":56180,"name":"George Lucas","site_detail_url":"https://comicvine.gamespot.com/george-lucas/4040-56180/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-101/","box_office_revenue":null,"budget":null,"date_added":"2009-07-09 17:22:25","date_last_updated":"2016-12-14 15:07:23","deck":"A street gang fight off an army to get back to their turf. The movie was adapted into a comic and Dabel/Dynamite produced a sequel volume called \"Jailbreak.\"","description":"

    Plot Summary

    Based loosely on the book by Sol Yurick, The Warriors follows a street gang who find themselves on the run from every other gang in Coney Island after being framed for a crime they did not commit.

    ","distributor":null,"has_staff_review":null,"id":101,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/870896-thewarriors_1979_movie_poster.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/870896-thewarriors_1979_movie_poster.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/870896-thewarriors_1979_movie_poster.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/870896-thewarriors_1979_movie_poster.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/870896-thewarriors_1979_movie_poster.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/870896-thewarriors_1979_movie_poster.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/870896-thewarriors_1979_movie_poster.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/870896-thewarriors_1979_movie_poster.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/870896-thewarriors_1979_movie_poster.jpg","image_tags":"All Images,Posters"},"name":"The Warriors","producers":null,"rating":"4","release_date":"2016-12-14 15:07:23","runtime":"92","site_detail_url":"https://comicvine.gamespot.com/the-warriors/4025-101/","studios":null,"total_revenue":"22490039","writers":[{"api_detail_url":"https://comicvine.gamespot.com/api/writer/4040-69285/","id":69285,"name":"Sol Yurick","site_detail_url":"https://comicvine.gamespot.com/sol-yurick/4040-69285/"}]},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-102/","box_office_revenue":"67000000","budget":"200000000","date_added":"2009-07-09 17:28:11","date_last_updated":"2017-02-28 20:45:18","deck":"James Bond is out for revenge against Quantum, the vast criminal organization that caused the death of his lover, Vesper.","description":"

    Quantum of Solace takes place immediately after the events of the previous film, Casino Royale. Bond, stricken with grief and rage, heads out to take revenge against the criminal organization known as Quantum, for causing the death of his lover. Bond goes rogue from MI6, and with no one to trust, must stop a dictator's plot to control the world's most valuable resource.

    ","distributor":null,"has_staff_review":null,"id":102,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6827/870904-quantum_of_solace.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6827/870904-quantum_of_solace.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6827/870904-quantum_of_solace.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6827/870904-quantum_of_solace.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6827/870904-quantum_of_solace.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6827/870904-quantum_of_solace.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6827/870904-quantum_of_solace.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6827/870904-quantum_of_solace.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6827/870904-quantum_of_solace.jpg","image_tags":"All Images"},"name":"Quantum of Solace","producers":null,"rating":"3","release_date":"2017-02-28 20:45:18","runtime":"106","site_detail_url":"https://comicvine.gamespot.com/quantum-of-solace/4025-102/","studios":null,"total_revenue":"586000000","writers":null}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/origin-details/origin-4030-1.json b/samples/api-data/origin-details/origin-4030-1.json new file mode 100644 index 0000000..b194c40 --- /dev/null +++ b/samples/api-data/origin-details/origin-4030-1.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","character_set":null,"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1268/","id":1268,"name":"Lemnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1281/","id":1281,"name":"Tyrannosaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1282/","id":1282,"name":"Neuronne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1283/","id":1283,"name":"Taboo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1286/","id":1286,"name":"Grenade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1288/","id":1288,"name":"Lady Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1289/","id":1289,"name":"Naiad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1300/","id":1300,"name":"Beater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1301/","id":1301,"name":"M.C. Zed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1306/","id":1306,"name":"Atom Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1307/","id":1307,"name":"Byter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1309/","id":1309,"name":"Brazen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1310/","id":1310,"name":"Generator X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1311/","id":1311,"name":"Lightshow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1425/","id":1425,"name":"Lucas Jackson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1440/","id":1440,"name":"Wolverine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1441/","id":1441,"name":"Magneto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1444/","id":1444,"name":"Storm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1446/","id":1446,"name":"Rogue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1447/","id":1447,"name":"Layla Miller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1457/","id":1457,"name":"Emma Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1459/","id":1459,"name":"Cyclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1460/","id":1460,"name":"Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1461/","id":1461,"name":"Nightcrawler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1462/","id":1462,"name":"Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1463/","id":1463,"name":"Moonstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1464/","id":1464,"name":"Iceman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1466/","id":1466,"name":"Scarlet Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1467/","id":1467,"name":"Quicksilver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1469/","id":1469,"name":"Mystique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1470/","id":1470,"name":"Toad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1473/","id":1473,"name":"Polaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1476/","id":1476,"name":"Namor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1496/","id":1496,"name":"Cannonball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1498/","id":1498,"name":"Dazzler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1499/","id":1499,"name":"Gambit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1503/","id":1503,"name":"Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1505/","id":1505,"name":"Professor X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1536/","id":1536,"name":"Typhoid Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1665/","id":1665,"name":"Livewire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1936/","id":1936,"name":"Molly Hayes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2021/","id":2021,"name":"Mandala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2095/","id":2095,"name":"Asylum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2101/","id":2101,"name":"Firestar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2112/","id":2112,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2113/","id":2113,"name":"Namorita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2119/","id":2119,"name":"Silhouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2125/","id":2125,"name":"Sphinx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2138/","id":2138,"name":"Catseye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2139/","id":2139,"name":"Beef"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2140/","id":2140,"name":"Tarot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2141/","id":2141,"name":"Bevatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2142/","id":2142,"name":"Roulette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2143/","id":2143,"name":"Jetstream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2154/","id":2154,"name":"Harness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2155/","id":2155,"name":"Piecemeal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2157/","id":2157,"name":"Cable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2158/","id":2158,"name":"Warpath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2159/","id":2159,"name":"Boom-Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2160/","id":2160,"name":"Feral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2161/","id":2161,"name":"Domino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2162/","id":2162,"name":"Gideon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2163/","id":2163,"name":"Frenzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2165/","id":2165,"name":"Proteus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2166/","id":2166,"name":"Major Victory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2173/","id":2173,"name":"Empath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2174/","id":2174,"name":"Thunderbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2175/","id":2175,"name":"Sebastian Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2176/","id":2176,"name":"Selene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2177/","id":2177,"name":"Namora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2178/","id":2178,"name":"Llyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2235/","id":2235,"name":"Emily Crowe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2244/","id":2244,"name":"Chamber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2245/","id":2245,"name":"Ricochet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2371/","id":2371,"name":"Cimarron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2487/","id":2487,"name":"Flatman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2489/","id":2489,"name":"Doorman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2490/","id":2490,"name":"Big Bertha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2901/","id":2901,"name":"Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2903/","id":2903,"name":"Johnny Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2924/","id":2924,"name":"Atalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3020/","id":3020,"name":"Ethan Harrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3034/","id":3034,"name":"Warmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3065/","id":3065,"name":"Bobin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3139/","id":3139,"name":"Manslaughter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3174/","id":3174,"name":"Silver Samurai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3175/","id":3175,"name":"Sunfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3176/","id":3176,"name":"Betsy Braddock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3177/","id":3177,"name":"Charles Lehnsherr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3179/","id":3179,"name":"Mr. Sinister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3181/","id":3181,"name":"Siryn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3182/","id":3182,"name":"Blob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3183/","id":3183,"name":"Xorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3186/","id":3186,"name":"Elizabeth Guthrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3188/","id":3188,"name":"Beak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3189/","id":3189,"name":"Aurora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3190/","id":3190,"name":"Northstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3192/","id":3192,"name":"Thornn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3193/","id":3193,"name":"Leech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3194/","id":3194,"name":"Skids"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3197/","id":3197,"name":"Kirika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3205/","id":3205,"name":"John Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3230/","id":3230,"name":"Slug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3365/","id":3365,"name":"Spider-Girl (Parker)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3405/","id":3405,"name":"Grace Choi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3407/","id":3407,"name":"Thunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3422/","id":3422,"name":"Dark Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3423/","id":3423,"name":"Callisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3424/","id":3424,"name":"Shola Inkosi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3425/","id":3425,"name":"Wicked"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3426/","id":3426,"name":"Husk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3427/","id":3427,"name":"Askari The Spear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3430/","id":3430,"name":"Broadband"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3432/","id":3432,"name":"Hub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3433/","id":3433,"name":"Purge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3435/","id":3435,"name":"Sugar Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3438/","id":3438,"name":"Unus the Untouchable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3546/","id":3546,"name":"Havok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3547/","id":3547,"name":"Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3548/","id":3548,"name":"Kitty Pryde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3552/","id":3552,"name":"Jean Grey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3553/","id":3553,"name":"Avalanche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3554/","id":3554,"name":"Pyro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3555/","id":3555,"name":"Harry Leland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3557/","id":3557,"name":"Destiny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3560/","id":3560,"name":"X-23"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3566/","id":3566,"name":"Rachel Grey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3582/","id":3582,"name":"Damage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3601/","id":3601,"name":"Echo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3610/","id":3610,"name":"Zuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3715/","id":3715,"name":"Mr. Freeze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3752/","id":3752,"name":"Alonzo Malrey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3777/","id":3777,"name":"Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3810/","id":3810,"name":"Nameless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3930/","id":3930,"name":"Stigmata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4270/","id":4270,"name":"Jamie Braddock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4279/","id":4279,"name":"Forge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4280/","id":4280,"name":"Shortpack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4281/","id":4281,"name":"Fantomex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4282/","id":4282,"name":"Shepard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4283/","id":4283,"name":"Johnny Kitano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4284/","id":4284,"name":"Prudence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4288/","id":4288,"name":"Viktor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4289/","id":4289,"name":"Spencer Bronson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4291/","id":4291,"name":"The Host"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4297/","id":4297,"name":"Evangelina Rivera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4299/","id":4299,"name":"Steinbeck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4382/","id":4382,"name":"Arkady Borkov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4423/","id":4423,"name":"Gorgeous George"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4433/","id":4433,"name":"Shredder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4441/","id":4441,"name":"Abigail Brand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4442/","id":4442,"name":"Armor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4452/","id":4452,"name":"Brick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4552/","id":4552,"name":"Elixir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4555/","id":4555,"name":"Dust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4556/","id":4556,"name":"Lila Cheney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4557/","id":4557,"name":"Wolfsbane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4558/","id":4558,"name":"Magma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4559/","id":4559,"name":"Sage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4562/","id":4562,"name":"Jubilee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4563/","id":4563,"name":"Sabretooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4565/","id":4565,"name":"Nocturne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4566/","id":4566,"name":"Carter Ghazikhanian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4567/","id":4567,"name":"Exodus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4568/","id":4568,"name":"Black Tom Cassidy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4569/","id":4569,"name":"Mammomax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4572/","id":4572,"name":"Squid-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4574/","id":4574,"name":"Flare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4584/","id":4584,"name":"Murciélaga She-Bat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4594/","id":4594,"name":"Peter Grimm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4596/","id":4596,"name":"Faghag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4644/","id":4644,"name":"Sunspot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4646/","id":4646,"name":"Gateway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4657/","id":4657,"name":"John Howlett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4811/","id":4811,"name":"Justice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4814/","id":4814,"name":"Andrea von Strucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4815/","id":4815,"name":"Andreas von Strucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4816/","id":4816,"name":"Flashback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4838/","id":4838,"name":"Llyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4842/","id":4842,"name":"Tremolo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4963/","id":4963,"name":"Obersmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4994/","id":4994,"name":"Freakshow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4995/","id":4995,"name":"Hack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4997/","id":4997,"name":"Appraiser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4998/","id":4998,"name":"Book"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5001/","id":5001,"name":"Sabra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5002/","id":5002,"name":"Lifeguard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5003/","id":5003,"name":"Thunderbird (Shaara)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5011/","id":5011,"name":"Murmur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5012/","id":5012,"name":"Radius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5013/","id":5013,"name":"Flex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5021/","id":5021,"name":"Diamond Lil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5053/","id":5053,"name":"Luther Arkwright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5056/","id":5056,"name":"Ghost Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5065/","id":5065,"name":"Mesmero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5120/","id":5120,"name":"Dot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5128/","id":5128,"name":"Impulse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5163/","id":5163,"name":"The Fink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5175/","id":5175,"name":"Bugman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5176/","id":5176,"name":"Daniel Kaufman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5177/","id":5177,"name":"Frank Zapruder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5185/","id":5185,"name":"Knight Sabre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5186/","id":5186,"name":"Psilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5201/","id":5201,"name":"Race Noble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5203/","id":5203,"name":"Celeste Noble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5206/","id":5206,"name":"Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5207/","id":5207,"name":"Zephyr Noble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5211/","id":5211,"name":"Lightning Rod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5219/","id":5219,"name":"Hyrdo-Foil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5226/","id":5226,"name":"Dr. Mombassa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5227/","id":5227,"name":"Dr. Prize"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5237/","id":5237,"name":"Byrd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5257/","id":5257,"name":"Quantum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5258/","id":5258,"name":"Roman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5263/","id":5263,"name":"Seahawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5264/","id":5264,"name":"Coldsnap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5280/","id":5280,"name":"Cougar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5298/","id":5298,"name":"Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5313/","id":5313,"name":"Mammoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5518/","id":5518,"name":"Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5609/","id":5609,"name":"Brain Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5901/","id":5901,"name":"Aquagirl (Marquez)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5915/","id":5915,"name":"Precious Matson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5920/","id":5920,"name":"Feral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6011/","id":6011,"name":"Paul Revere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6015/","id":6015,"name":"Dyno-mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6021/","id":6021,"name":"Swift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6029/","id":6029,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6048/","id":6048,"name":"Shard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6050/","id":6050,"name":"Randall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6056/","id":6056,"name":"Shadowbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6057/","id":6057,"name":"Razorback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6062/","id":6062,"name":"Evans the Fist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6063/","id":6063,"name":"Torso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6067/","id":6067,"name":"Stix Brothers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6120/","id":6120,"name":"Stringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6121/","id":6121,"name":"Clay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6122/","id":6122,"name":"Carol Campbell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6123/","id":6123,"name":"Sheila Desoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6161/","id":6161,"name":"Freeway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6470/","id":6470,"name":"Nemesis Enforcer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6471/","id":6471,"name":"Pythona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6532/","id":6532,"name":"Tasmanian Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6535/","id":6535,"name":"Little Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6647/","id":6647,"name":"The Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6756/","id":6756,"name":"Vanisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6773/","id":6773,"name":"Yekaterina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6789/","id":6789,"name":"Native"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6828/","id":6828,"name":"Whirlwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6829/","id":6829,"name":"Mandrill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6853/","id":6853,"name":"Voxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6858/","id":6858,"name":"Roland Desmond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6959/","id":6959,"name":"Mace Blitzkrieg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6963/","id":6963,"name":"Madison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6968/","id":6968,"name":"Bit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6970/","id":6970,"name":"Luz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6971/","id":6971,"name":"Mr. Pandora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7088/","id":7088,"name":"Dirt Nap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7182/","id":7182,"name":"Toyo Harada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7188/","id":7188,"name":"Stronghold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7203/","id":7203,"name":"Lorelei Travis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7252/","id":7252,"name":"Masque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7332/","id":7332,"name":"Hope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7333/","id":7333,"name":"Psimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7334/","id":7334,"name":"Psiren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7339/","id":7339,"name":"Jenny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7353/","id":7353,"name":"Mint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7399/","id":7399,"name":"Flint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7509/","id":7509,"name":"Salvo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7514/","id":7514,"name":"Psiphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7538/","id":7538,"name":"The Verb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7539/","id":7539,"name":"Crimson Daffodil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7567/","id":7567,"name":"Nanny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7586/","id":7586,"name":"Spitfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7597/","id":7597,"name":"Cyber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7599/","id":7599,"name":"Strong Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7600/","id":7600,"name":"Michael Pointer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7604/","id":7604,"name":"Meggan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7612/","id":7612,"name":"Apocalypse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7616/","id":7616,"name":"Stryfe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7836/","id":7836,"name":"Black Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7851/","id":7851,"name":"David Bank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7870/","id":7870,"name":"Fold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7876/","id":7876,"name":"Kid Knee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7883/","id":7883,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7896/","id":7896,"name":"Bella Donna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7900/","id":7900,"name":"Candra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7901/","id":7901,"name":"Tithe Collector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7910/","id":7910,"name":"Madrox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7934/","id":7934,"name":"Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7947/","id":7947,"name":"Dr. Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7969/","id":7969,"name":"Sunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8080/","id":8080,"name":"Trickster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8296/","id":8296,"name":"Witness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8298/","id":8298,"name":"Living Monolith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8300/","id":8300,"name":"Trevor Fitzroy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8303/","id":8303,"name":"Magik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8304/","id":8304,"name":"Moira MacTaggert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8306/","id":8306,"name":"Mastermind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8307/","id":8307,"name":"Maverick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8425/","id":8425,"name":"Outlaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8426/","id":8426,"name":"Mary Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8466/","id":8466,"name":"Flux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8679/","id":8679,"name":"Wing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8718/","id":8718,"name":"Bantam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8777/","id":8777,"name":"Jinx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9044/","id":9044,"name":"Nudge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9319/","id":9319,"name":"Brainwave Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9338/","id":9338,"name":"Brainwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9350/","id":9350,"name":"Mr. Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9359/","id":9359,"name":"Obsidian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9451/","id":9451,"name":"Portal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9476/","id":9476,"name":"Wild Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9556/","id":9556,"name":"Kondor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9589/","id":9589,"name":"Clayface (Karlo)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9607/","id":9607,"name":"Coldsnap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9608/","id":9608,"name":"Heatstroke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9637/","id":9637,"name":"Caliban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9653/","id":9653,"name":"Senyaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9657/","id":9657,"name":"Deadair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9658/","id":9658,"name":"Arize"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9661/","id":9661,"name":"Cancellator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9664/","id":9664,"name":"Amalgam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9704/","id":9704,"name":"Shinobi Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9705/","id":9705,"name":"Benedict Kine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9706/","id":9706,"name":"Benazir Kaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9707/","id":9707,"name":"Reeva Payge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9708/","id":9708,"name":"Banshee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9709/","id":9709,"name":"Kwannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9710/","id":9710,"name":"Empyrean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9713/","id":9713,"name":"Phantazia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9716/","id":9716,"name":"Quark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9728/","id":9728,"name":"Fabian Cortez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9729/","id":9729,"name":"Omega Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9732/","id":9732,"name":"Riptide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9733/","id":9733,"name":"Harpoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9734/","id":9734,"name":"Scalphunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9735/","id":9735,"name":"Scrambler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9736/","id":9736,"name":"Prism"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9737/","id":9737,"name":"Blockbuster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9739/","id":9739,"name":"Icarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9751/","id":9751,"name":"Collective Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9845/","id":9845,"name":"Silicon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9849/","id":9849,"name":"Karma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9865/","id":9865,"name":"Amber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9928/","id":9928,"name":"Shimmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9949/","id":9949,"name":"Jericho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10071/","id":10071,"name":"Tuatara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10072/","id":10072,"name":"Thunderlord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10073/","id":10073,"name":"Rising Sun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10198/","id":10198,"name":"Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10220/","id":10220,"name":"Luminesca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10255/","id":10255,"name":"Larry Trask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10317/","id":10317,"name":"Reaper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10566/","id":10566,"name":"Skin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10567/","id":10567,"name":"Adrienne Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10571/","id":10571,"name":"Cordelia Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10572/","id":10572,"name":"Mondo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10573/","id":10573,"name":"Hollow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10574/","id":10574,"name":"Artie Maddicks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10576/","id":10576,"name":"Synch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10577/","id":10577,"name":"Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10579/","id":10579,"name":"Emplate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10581/","id":10581,"name":"Wrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10583/","id":10583,"name":"Nightwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10585/","id":10585,"name":"Dragonwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10586/","id":10586,"name":"Spoilsport"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10588/","id":10588,"name":"Jet-Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10589/","id":10589,"name":"Tough Love"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10866/","id":10866,"name":"Armageddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10890/","id":10890,"name":"Fly Eyes Wagner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10892/","id":10892,"name":"Maeve the Many-Armed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10956/","id":10956,"name":"Jade Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10978/","id":10978,"name":"Tower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10981/","id":10981,"name":"Madelyne Pryor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10988/","id":10988,"name":"Rictor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10990/","id":10990,"name":"Darkstar (Petrovna)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11010/","id":11010,"name":"Hellgrammite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11154/","id":11154,"name":"Monkian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11156/","id":11156,"name":"Vultureman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11170/","id":11170,"name":"Jackalman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11383/","id":11383,"name":"Lady Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11384/","id":11384,"name":"Moonrock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11479/","id":11479,"name":"Venus Dee Milo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11481/","id":11481,"name":"Sharon Ginsberg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11483/","id":11483,"name":"Dead Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11487/","id":11487,"name":"Mysterious Fanboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11488/","id":11488,"name":"Ocean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11489/","id":11489,"name":"Overkill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11490/","id":11490,"name":"Phat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11491/","id":11491,"name":"Vivisector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11492/","id":11492,"name":"Orchid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11493/","id":11493,"name":"Optoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11494/","id":11494,"name":"Ozone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11497/","id":11497,"name":"Corkscrew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11517/","id":11517,"name":"Stacy X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11592/","id":11592,"name":"Trace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11630/","id":11630,"name":"Neutrino Annihilator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11654/","id":11654,"name":"Marvin Hoffman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11655/","id":11655,"name":"Orwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11656/","id":11656,"name":"Malon Reeves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11657/","id":11657,"name":"Michael Asher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11658/","id":11658,"name":"Fagin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11659/","id":11659,"name":"Marshal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11660/","id":11660,"name":"Jane Smythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11664/","id":11664,"name":"Bryson Bale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11665/","id":11665,"name":"Malcolm Reeves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11666/","id":11666,"name":"Bela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11832/","id":11832,"name":"Hyperstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11877/","id":11877,"name":"Malice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11917/","id":11917,"name":"Killjoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11932/","id":11932,"name":"Bushwacker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12018/","id":12018,"name":"Jackson King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12052/","id":12052,"name":"Red Lotus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12055/","id":12055,"name":"Lady Mastermind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12062/","id":12062,"name":"Sir Gordon Philips"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12139/","id":12139,"name":"Phil Kelly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12140/","id":12140,"name":"The Waterman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12148/","id":12148,"name":"Friendly Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12154/","id":12154,"name":"Flemgem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12182/","id":12182,"name":"Payback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12311/","id":12311,"name":"Cranius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12333/","id":12333,"name":"Magpie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12411/","id":12411,"name":"Mutant Street Beatniks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12459/","id":12459,"name":"Zephyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12460/","id":12460,"name":"Peter Stanchek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12469/","id":12469,"name":"Archer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12498/","id":12498,"name":"Baby Wildebeest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12546/","id":12546,"name":"Mimic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12547/","id":12547,"name":"Morph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12548/","id":12548,"name":"Blink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12599/","id":12599,"name":"Jeffrey Garrett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12624/","id":12624,"name":"Kangaroo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12641/","id":12641,"name":"Scaleface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12666/","id":12666,"name":"Sparx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12668/","id":12668,"name":"Aura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12679/","id":12679,"name":"Anastasia Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12694/","id":12694,"name":"Hardrock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12854/","id":12854,"name":"Evolvo Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12856/","id":12856,"name":"Blast-Off"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12873/","id":12873,"name":"Cherry Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12890/","id":12890,"name":"Rose Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12911/","id":12911,"name":"U-Go Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12912/","id":12912,"name":"Orphan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12913/","id":12913,"name":"Anarchist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12915/","id":12915,"name":"Lacuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13141/","id":13141,"name":"Outburst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13144/","id":13144,"name":"White Lotus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13146/","id":13146,"name":"Pyrogen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13311/","id":13311,"name":"Copycat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13312/","id":13312,"name":"Tempo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13315/","id":13315,"name":"Forearm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13318/","id":13318,"name":"Ashley Martin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13321/","id":13321,"name":"Krueger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13322/","id":13322,"name":"Deluge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13349/","id":13349,"name":"Legion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13350/","id":13350,"name":"Ruckus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13353/","id":13353,"name":"Domina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13365/","id":13365,"name":"Healer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13366/","id":13366,"name":"Erg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13368/","id":13368,"name":"Ape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13369/","id":13369,"name":"Arclight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13376/","id":13376,"name":"Rusty Collins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13377/","id":13377,"name":"Zeek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13386/","id":13386,"name":"Timeslip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13393/","id":13393,"name":"Sparrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13404/","id":13404,"name":"Fiona Dunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13488/","id":13488,"name":"Abraxas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13561/","id":13561,"name":"Axis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13563/","id":13563,"name":"Scorcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13567/","id":13567,"name":"Eli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13570/","id":13570,"name":"Dolphin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13592/","id":13592,"name":"Torrent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13679/","id":13679,"name":"The Swarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13726/","id":13726,"name":"Marrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13748/","id":13748,"name":"Lightbright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13753/","id":13753,"name":"Cassandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13804/","id":13804,"name":"Vanguard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13826/","id":13826,"name":"Ursa Major"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13849/","id":13849,"name":"Solarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13850/","id":13850,"name":"Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13859/","id":13859,"name":"Scanner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13879/","id":13879,"name":"Brutacus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13883/","id":13883,"name":"Reptilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13886/","id":13886,"name":"Piper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13896/","id":13896,"name":"Nekra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13901/","id":13901,"name":"Artemis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13922/","id":13922,"name":"Mentallo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14021/","id":14021,"name":"Double Trouble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14060/","id":14060,"name":"Bandit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14061/","id":14061,"name":"Scorch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14066/","id":14066,"name":"Aardwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14074/","id":14074,"name":"Bloodyfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14079/","id":14079,"name":"Ugly John"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14119/","id":14119,"name":"Trouble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14120/","id":14120,"name":"Needler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14121/","id":14121,"name":"Gun Nut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14122/","id":14122,"name":"Rex Mundi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14150/","id":14150,"name":"New Son"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14152/","id":14152,"name":"Quiet Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14154/","id":14154,"name":"Courier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14155/","id":14155,"name":"Rax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14160/","id":14160,"name":"Singer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14172/","id":14172,"name":"Questa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14173/","id":14173,"name":"Fontanelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14176/","id":14176,"name":"Gris-Gris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14177/","id":14177,"name":"Cecilia Reyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14187/","id":14187,"name":"Burke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14188/","id":14188,"name":"Absalom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14189/","id":14189,"name":"Nicodemus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14202/","id":14202,"name":"The Pig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14203/","id":14203,"name":"Shirow Ishihara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14229/","id":14229,"name":"Kiwi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14422/","id":14422,"name":"Whizzer (Frank)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14423/","id":14423,"name":"Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14473/","id":14473,"name":"Annalee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14474/","id":14474,"name":"Blow-Hard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14475/","id":14475,"name":"Cybelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14476/","id":14476,"name":"Tommy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14505/","id":14505,"name":"Basilisk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14543/","id":14543,"name":"Honcho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14544/","id":14544,"name":"Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14546/","id":14546,"name":"Wrench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14547/","id":14547,"name":"Cowboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14548/","id":14548,"name":"Georgianna Sue Castleberry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14552/","id":14552,"name":"Beautiful Dreamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14553/","id":14553,"name":"Tar Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14554/","id":14554,"name":"Burner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14555/","id":14555,"name":"Lifter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14557/","id":14557,"name":"Slither"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14559/","id":14559,"name":"Cypher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14560/","id":14560,"name":"Nuklo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14564/","id":14564,"name":"Smart Alec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14584/","id":14584,"name":"Illusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14588/","id":14588,"name":"Blindspot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14645/","id":14645,"name":"Belphegor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14676/","id":14676,"name":"Two-Bad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14690/","id":14690,"name":"Kylun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14768/","id":14768,"name":"Succubus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14773/","id":14773,"name":"Agent-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14795/","id":14795,"name":"Obituary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14812/","id":14812,"name":"Micromax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14819/","id":14819,"name":"Pete Wisdom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14830/","id":14830,"name":"Mikhail Rasputin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14836/","id":14836,"name":"Ogun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14841/","id":14841,"name":"Unuscione"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14842/","id":14842,"name":"Wildside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14843/","id":14843,"name":"Spoor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14847/","id":14847,"name":"Scratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14849/","id":14849,"name":"Scribe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14850/","id":14850,"name":"Mountjoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14865/","id":14865,"name":"Siena Blaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14866/","id":14866,"name":"Gamesmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14868/","id":14868,"name":"Amelia Voght"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14869/","id":14869,"name":"Katu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14882/","id":14882,"name":"Cooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14883/","id":14883,"name":"Bash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14889/","id":14889,"name":"Shadow King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14906/","id":14906,"name":"Crimson Commando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14907/","id":14907,"name":"Super Sabre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14908/","id":14908,"name":"Aminedi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14910/","id":14910,"name":"The Veil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14922/","id":14922,"name":"Blind Faith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14923/","id":14923,"name":"Mentac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14924/","id":14924,"name":"Concussion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14925/","id":14925,"name":"Iron Curtain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15005/","id":15005,"name":"Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15007/","id":15007,"name":"Nom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15010/","id":15010,"name":"Tracker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15011/","id":15011,"name":"Thumper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15012/","id":15012,"name":"Note"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15013/","id":15013,"name":"Seer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15014/","id":15014,"name":"Tull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15019/","id":15019,"name":"Omerta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15020/","id":15020,"name":"Random"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15022/","id":15022,"name":"Jennifer Ransome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15028/","id":15028,"name":"Ransome Sole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15029/","id":15029,"name":"Big Casino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15032/","id":15032,"name":"Static"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15033/","id":15033,"name":"Elysia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15034/","id":15034,"name":"Helix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15044/","id":15044,"name":"Sanguine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15045/","id":15045,"name":"Beldame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15047/","id":15047,"name":"Wanderer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15051/","id":15051,"name":"X-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15060/","id":15060,"name":"Greystone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15063/","id":15063,"name":"Joseph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15066/","id":15066,"name":"Neophyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15068/","id":15068,"name":"Kamal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15069/","id":15069,"name":"Vindaloo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15070/","id":15070,"name":"Meld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15071/","id":15071,"name":"Holocaust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15072/","id":15072,"name":"Maggott"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15075/","id":15075,"name":"Post"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15078/","id":15078,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15089/","id":15089,"name":"Infectia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15096/","id":15096,"name":"Karima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15099/","id":15099,"name":"Fatale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15104/","id":15104,"name":"Javitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15108/","id":15108,"name":"Adam X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15111/","id":15111,"name":"Black Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15115/","id":15115,"name":"Sunset Grace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15116/","id":15116,"name":"Threnody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15126/","id":15126,"name":"Milan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15127/","id":15127,"name":"Archer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15128/","id":15128,"name":"Fixx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15134/","id":15134,"name":"Ever"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15138/","id":15138,"name":"Trevor Chase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15142/","id":15142,"name":"Haven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15157/","id":15157,"name":"Gina Anderson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15159/","id":15159,"name":"Blaquesmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15160/","id":15160,"name":"Dark Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15164/","id":15164,"name":"Shin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15167/","id":15167,"name":"Martinique Jason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15172/","id":15172,"name":"Wall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15173/","id":15173,"name":"Key"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15175/","id":15175,"name":"Sandella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15178/","id":15178,"name":"Randall Shire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15179/","id":15179,"name":"Blockade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15182/","id":15182,"name":"Clarity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15193/","id":15193,"name":"Sanctity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15198/","id":15198,"name":"Aliya Dayspring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15203/","id":15203,"name":"Grizzly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15232/","id":15232,"name":"Shriek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15257/","id":15257,"name":"Pulse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15312/","id":15312,"name":"Scorch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15322/","id":15322,"name":"Fever Pitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15323/","id":15323,"name":"Abyss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15324/","id":15324,"name":"Sunpyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15329/","id":15329,"name":"Bedlam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15337/","id":15337,"name":"Farahd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15339/","id":15339,"name":"Requiem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15341/","id":15341,"name":"Desolation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15342/","id":15342,"name":"Lament"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15448/","id":15448,"name":"Robin Vega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15458/","id":15458,"name":"The Noun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15465/","id":15465,"name":"Airborne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15466/","id":15466,"name":"Hurricane Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15469/","id":15469,"name":"Judas Traveller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15520/","id":15520,"name":"Reignfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15524/","id":15524,"name":"Martin Strong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15529/","id":15529,"name":"Crule"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15531/","id":15531,"name":"Zeitgeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15532/","id":15532,"name":"Battering Ram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15533/","id":15533,"name":"Plazm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15534/","id":15534,"name":"Gin Genie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15535/","id":15535,"name":"La Nuit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15536/","id":15536,"name":"Sluk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15537/","id":15537,"name":"Coach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15551/","id":15551,"name":"Risque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15553/","id":15553,"name":"Arcadia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15573/","id":15573,"name":"Armageddon Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15574/","id":15574,"name":"Paradigm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15575/","id":15575,"name":"Switch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15576/","id":15576,"name":"King Bedlam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15578/","id":15578,"name":"Locus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15590/","id":15590,"name":"Dragoness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15598/","id":15598,"name":"Mindmeld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15605/","id":15605,"name":"Saul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15623/","id":15623,"name":"Mister X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15673/","id":15673,"name":"Geldoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15676/","id":15676,"name":"Modulok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15682/","id":15682,"name":"Mosquitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15691/","id":15691,"name":"Abscissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15696/","id":15696,"name":"Silver Fox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15729/","id":15729,"name":"La Bandera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15730/","id":15730,"name":"Sister Salvation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15785/","id":15785,"name":"Slab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15786/","id":15786,"name":"Hairbag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16119/","id":16119,"name":"Nico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16125/","id":16125,"name":"Sibercat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16189/","id":16189,"name":"Rancor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16481/","id":16481,"name":"Deadlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16486/","id":16486,"name":"Killerwatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16513/","id":16513,"name":"Ignition"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16826/","id":16826,"name":"Antonio Argent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17600/","id":17600,"name":"Hark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17694/","id":17694,"name":"Blue Ice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17726/","id":17726,"name":"Cherub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17727/","id":17727,"name":"Epiphany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17758/","id":17758,"name":"Short-Cut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17767/","id":17767,"name":"Four Armed Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17839/","id":17839,"name":"Widow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17841/","id":17841,"name":"Powerhouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17872/","id":17872,"name":"Ricochet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17873/","id":17873,"name":"Horridus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17903/","id":17903,"name":"Janey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17921/","id":17921,"name":"Cesspool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17923/","id":17923,"name":"Open Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17931/","id":17931,"name":"Hornet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17952/","id":17952,"name":"Simon Kane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17962/","id":17962,"name":"Animal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17979/","id":17979,"name":"Cadaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17989/","id":17989,"name":"Earth Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18311/","id":18311,"name":"Lullaby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18386/","id":18386,"name":"Meathead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18433/","id":18433,"name":"Bluestreak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18555/","id":18555,"name":"Tung Lashor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18567/","id":18567,"name":"Andra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18749/","id":18749,"name":"Dynamic Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18783/","id":18783,"name":"Choir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19091/","id":19091,"name":"Jace Allen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19207/","id":19207,"name":"Anais"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19225/","id":19225,"name":"Millionex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19349/","id":19349,"name":"Headhunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19354/","id":19354,"name":"Peepers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19357/","id":19357,"name":"Axe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19365/","id":19365,"name":"Fugue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19371/","id":19371,"name":"Reanimator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19388/","id":19388,"name":"Pale Flower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19680/","id":19680,"name":"New Wave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19758/","id":19758,"name":"Recoil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19961/","id":19961,"name":"Mordred the Evil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20010/","id":20010,"name":"Tad Carter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20015/","id":20015,"name":"Castenado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20118/","id":20118,"name":"Sabreclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20283/","id":20283,"name":"Radiance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21114/","id":21114,"name":"Dow Cook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21137/","id":21137,"name":"Composite Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21203/","id":21203,"name":"Gadfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21206/","id":21206,"name":"Oxbow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21233/","id":21233,"name":"Vulcan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21292/","id":21292,"name":"Abby Holland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21320/","id":21320,"name":"DiNA"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21445/","id":21445,"name":"Twelve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21509/","id":21509,"name":"Chemical King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21575/","id":21575,"name":"Marlene Blackgar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21789/","id":21789,"name":"Blowhard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21847/","id":21847,"name":"Arachnid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21860/","id":21860,"name":"Rex Dexter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21882/","id":21882,"name":"Rushmore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21917/","id":21917,"name":"The Adverb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21923/","id":21923,"name":"Stryker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21924/","id":21924,"name":"Black Anvil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21925/","id":21925,"name":"Tempest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21963/","id":21963,"name":"Archer Braun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21979/","id":21979,"name":"Deathtrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22448/","id":22448,"name":"Sublime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22449/","id":22449,"name":"Frostbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22450/","id":22450,"name":"Evo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22451/","id":22451,"name":"Copycat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22454/","id":22454,"name":"Bliss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22460/","id":22460,"name":"Hellstrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22592/","id":22592,"name":"Ferro Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22598/","id":22598,"name":"Windshear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22632/","id":22632,"name":"Goldfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22711/","id":22711,"name":"Shakti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22712/","id":22712,"name":"Divinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22714/","id":22714,"name":"Technarx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22800/","id":22800,"name":"Wild Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22828/","id":22828,"name":"Blubberlips"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22857/","id":22857,"name":"Gombezis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22875/","id":22875,"name":"Turvy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22895/","id":22895,"name":"Inque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22920/","id":22920,"name":"Torus Storm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23020/","id":23020,"name":"Angry Eagle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23021/","id":23021,"name":"Simian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23022/","id":23022,"name":"Spanner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23041/","id":23041,"name":"Magneta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23042/","id":23042,"name":"Daze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23097/","id":23097,"name":"Enthralla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23111/","id":23111,"name":"Parody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23118/","id":23118,"name":"Gaia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23183/","id":23183,"name":"Lionmane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23193/","id":23193,"name":"Skull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23194/","id":23194,"name":"Scarlet Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23230/","id":23230,"name":"Jomo Kimane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23256/","id":23256,"name":"Mardi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23272/","id":23272,"name":"William Blood Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23330/","id":23330,"name":"Pipeline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23331/","id":23331,"name":"Punchout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23395/","id":23395,"name":"Synergy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23436/","id":23436,"name":"Chain Lightning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23471/","id":23471,"name":"Grunge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23472/","id":23472,"name":"Freefall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23473/","id":23473,"name":"Rainmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23474/","id":23474,"name":"Burnout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23578/","id":23578,"name":"Caitlin Fairchild"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23623/","id":23623,"name":"Isaiah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23625/","id":23625,"name":"Professor Tindalos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23640/","id":23640,"name":"Acidia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23641/","id":23641,"name":"Crackle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23644/","id":23644,"name":"Sharpe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23660/","id":23660,"name":"Fahrenheit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23687/","id":23687,"name":"Gibbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23719/","id":23719,"name":"Monkey Fist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23764/","id":23764,"name":"The Gilded Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23853/","id":23853,"name":"Jerry Harris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23924/","id":23924,"name":"Ice Maiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24011/","id":24011,"name":"Jackknife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24048/","id":24048,"name":"Hammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24084/","id":24084,"name":"Ms. Steed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24133/","id":24133,"name":"Plague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24134/","id":24134,"name":"War (Kieros)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24135/","id":24135,"name":"Famine (Rolfson)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24189/","id":24189,"name":"Landscape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24208/","id":24208,"name":"Primal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24317/","id":24317,"name":"Wish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24319/","id":24319,"name":"Smoke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24399/","id":24399,"name":"Madison Jeffries"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24467/","id":24467,"name":"Cyblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24581/","id":24581,"name":"Dismember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24633/","id":24633,"name":"Corrosion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24635/","id":24635,"name":"Catalyst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24642/","id":24642,"name":"Bullmoose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24643/","id":24643,"name":"Mr. Luv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24652/","id":24652,"name":"Alyosha Kravinoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24927/","id":24927,"name":"Dervish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24929/","id":24929,"name":"Alter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24974/","id":24974,"name":"Synth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24990/","id":24990,"name":"Neptune Perkins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25112/","id":25112,"name":"Threshold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25115/","id":25115,"name":"Cutter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25193/","id":25193,"name":"Genesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25194/","id":25194,"name":"Lifeforce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25196/","id":25196,"name":"Deadbolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25198/","id":25198,"name":"Spyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25210/","id":25210,"name":"Bat-Wing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25212/","id":25212,"name":"Bulwark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25301/","id":25301,"name":"Hawkshaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25313/","id":25313,"name":"Josephine Pulaski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25324/","id":25324,"name":"New Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25441/","id":25441,"name":"Plastique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25520/","id":25520,"name":"Vessel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25521/","id":25521,"name":"Hemingway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25522/","id":25522,"name":"Sack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25523/","id":25523,"name":"Reverb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25770/","id":25770,"name":"Nautika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25772/","id":25772,"name":"Brutus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25774/","id":25774,"name":"Diva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25825/","id":25825,"name":"Strafe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25826/","id":25826,"name":"Pagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25841/","id":25841,"name":"Taxi Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25872/","id":25872,"name":"Delgado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25875/","id":25875,"name":"Undertow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25897/","id":25897,"name":"Hancock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25911/","id":25911,"name":"Orphan Maker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25921/","id":25921,"name":"Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25931/","id":25931,"name":"Bar Sinister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25972/","id":25972,"name":"Crypt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26033/","id":26033,"name":"Bond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26058/","id":26058,"name":"Wyldheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26194/","id":26194,"name":"Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26195/","id":26195,"name":"Hardcase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26196/","id":26196,"name":"Contrary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26197/","id":26197,"name":"Pixx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26209/","id":26209,"name":"Mongrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26227/","id":26227,"name":"Headbutt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26301/","id":26301,"name":"Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26312/","id":26312,"name":"Marl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26324/","id":26324,"name":"Stitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26344/","id":26344,"name":"Plasma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26380/","id":26380,"name":"Bloodfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26409/","id":26409,"name":"Krakoa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26461/","id":26461,"name":"Monsoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26475/","id":26475,"name":"Feedback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26478/","id":26478,"name":"Manikin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26479/","id":26479,"name":"Goblyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26485/","id":26485,"name":"Bile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26495/","id":26495,"name":"Dash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26496/","id":26496,"name":"Exit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26498/","id":26498,"name":"Cabbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26536/","id":26536,"name":"Eddie Passim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26542/","id":26542,"name":"Kilgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26553/","id":26553,"name":"Airstryke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26578/","id":26578,"name":"Static"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26627/","id":26627,"name":"Mindscan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26659/","id":26659,"name":"Mnemo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26846/","id":26846,"name":"Birdy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26898/","id":26898,"name":"Shaddo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26948/","id":26948,"name":"Masada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26949/","id":26949,"name":"Ion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26950/","id":26950,"name":"Lancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26999/","id":26999,"name":"The Moth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27004/","id":27004,"name":"Fourplay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27045/","id":27045,"name":"Seamus Mellencamp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27086/","id":27086,"name":"Epsilon Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27090/","id":27090,"name":"Skinner Of Souls"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27092/","id":27092,"name":"Lukas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27093/","id":27093,"name":"Pirouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27120/","id":27120,"name":"Kristin Austin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27141/","id":27141,"name":"Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27159/","id":27159,"name":"Razer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27324/","id":27324,"name":"Sleepwalk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27417/","id":27417,"name":"Aldo Ferro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27418/","id":27418,"name":"Strobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27460/","id":27460,"name":"Mastodon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27461/","id":27461,"name":"Sumo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27464/","id":27464,"name":"Hazard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27471/","id":27471,"name":"Puff Adder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27509/","id":27509,"name":"Prodigal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27510/","id":27510,"name":"Shrew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27516/","id":27516,"name":"Brain Cell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27527/","id":27527,"name":"Crystal Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27549/","id":27549,"name":"Siberion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27564/","id":27564,"name":"Rhapsody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27565/","id":27565,"name":"Briquette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27566/","id":27566,"name":"Vague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27590/","id":27590,"name":"Burn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27630/","id":27630,"name":"Flambe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27652/","id":27652,"name":"Emerald Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27695/","id":27695,"name":"Eyeball Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27721/","id":27721,"name":"Styglut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27755/","id":27755,"name":"Thumbelina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27763/","id":27763,"name":"Sidestep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27852/","id":27852,"name":"Malcolm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27936/","id":27936,"name":"Wiz Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27972/","id":27972,"name":"Johnny Hit & Run"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28053/","id":28053,"name":"Greta Rabin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28244/","id":28244,"name":"Ent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28287/","id":28287,"name":"Mother Inferior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28289/","id":28289,"name":"Manacle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28315/","id":28315,"name":"Spark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28316/","id":28316,"name":"Bora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28351/","id":28351,"name":"Hump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28479/","id":28479,"name":"Knockout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28480/","id":28480,"name":"Bloodlust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28529/","id":28529,"name":"Sirocco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28530/","id":28530,"name":"Griffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28583/","id":28583,"name":"Wipeout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28627/","id":28627,"name":"Auric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28628/","id":28628,"name":"Silver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28649/","id":28649,"name":"Kamikaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28770/","id":28770,"name":"Persuasion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28852/","id":28852,"name":"Blindside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28872/","id":28872,"name":"Mole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28880/","id":28880,"name":"Asp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28977/","id":28977,"name":"Teleplex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28994/","id":28994,"name":"Emanuel McDoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29013/","id":29013,"name":"Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29143/","id":29143,"name":"Banjo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29188/","id":29188,"name":"Eduardo Lobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29189/","id":29189,"name":"Carlos Lobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29255/","id":29255,"name":"Alchemy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29259/","id":29259,"name":"Dr. Nemesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29340/","id":29340,"name":"Anne-Marie Cortez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29371/","id":29371,"name":"Shadow Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29561/","id":29561,"name":"Sharkskin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29693/","id":29693,"name":"Tomas Gottman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29753/","id":29753,"name":"Timeshadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29758/","id":29758,"name":"Persuader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29764/","id":29764,"name":"Friedrich Von Roehm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29786/","id":29786,"name":"Tension"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29787/","id":29787,"name":"Temptress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29788/","id":29788,"name":"Lockup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29789/","id":29789,"name":"Spitball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29790/","id":29790,"name":"Whiphand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29853/","id":29853,"name":"Brickbat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29854/","id":29854,"name":"Dive-Bomber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29855/","id":29855,"name":"Stonewall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30010/","id":30010,"name":"Iceboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30077/","id":30077,"name":"Minotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30119/","id":30119,"name":"Reverend Sammy Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30152/","id":30152,"name":"Glow Worm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30157/","id":30157,"name":"Lil' Archangel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30159/","id":30159,"name":"Lil' Dazzler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30160/","id":30160,"name":"Lil' Gambit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30161/","id":30161,"name":"Lil' Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30164/","id":30164,"name":"Lil' Longshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30165/","id":30165,"name":"Lil' Havok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30179/","id":30179,"name":"Breakdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30198/","id":30198,"name":"Richard Grey Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30331/","id":30331,"name":"Slider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30332/","id":30332,"name":"The Light"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30370/","id":30370,"name":"Polecat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30510/","id":30510,"name":"Sara Grey-Bailey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30558/","id":30558,"name":"Celsius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30559/","id":30559,"name":"Captain Comet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30570/","id":30570,"name":"Berzerker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30681/","id":30681,"name":"Bulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30717/","id":30717,"name":"Licorice Calhoun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30755/","id":30755,"name":"Hodag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30897/","id":30897,"name":"The Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31249/","id":31249,"name":"Alexander Flynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31257/","id":31257,"name":"Gloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31267/","id":31267,"name":"Selby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31281/","id":31281,"name":"Worry Wart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31287/","id":31287,"name":"Windfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31361/","id":31361,"name":"Poltergeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31398/","id":31398,"name":"Durham Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31539/","id":31539,"name":"Middenface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31944/","id":31944,"name":"Hunter Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31964/","id":31964,"name":"Cyclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31996/","id":31996,"name":"Mad Jim Jaspers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32060/","id":32060,"name":"Silent Majority"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32069/","id":32069,"name":"Iron Butterfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32082/","id":32082,"name":"Yak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32083/","id":32083,"name":"Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32108/","id":32108,"name":"Trojan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32134/","id":32134,"name":"R.U. Reddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32186/","id":32186,"name":"Jake Grimm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32196/","id":32196,"name":"Golden Web"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32258/","id":32258,"name":"Skein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32304/","id":32304,"name":"Silhouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32345/","id":32345,"name":"The Coil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32523/","id":32523,"name":"Kaleidescope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32736/","id":32736,"name":"El Aguila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32757/","id":32757,"name":"Timmorn Yellow Eyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32876/","id":32876,"name":"Forever Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32889/","id":32889,"name":"Senses Taker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32937/","id":32937,"name":"Dead Ringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33109/","id":33109,"name":"Ramrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33152/","id":33152,"name":"Executioner Majini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33154/","id":33154,"name":"The Mole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33762/","id":33762,"name":"Fusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33918/","id":33918,"name":"Ridge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34065/","id":34065,"name":"Snowfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34273/","id":34273,"name":"Topspin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34526/","id":34526,"name":"Humus Sapien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34795/","id":34795,"name":"Whale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35080/","id":35080,"name":"Mr. Buzzz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35104/","id":35104,"name":"Evil Xavier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35140/","id":35140,"name":"Cal Durham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35309/","id":35309,"name":"Father Balthazar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35345/","id":35345,"name":"Fireball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35363/","id":35363,"name":"Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35584/","id":35584,"name":"Necro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35728/","id":35728,"name":"The Adjective"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35862/","id":35862,"name":"Darkstrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36026/","id":36026,"name":"Black Shadow/White Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36116/","id":36116,"name":"Jeremiah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36207/","id":36207,"name":"Mindworm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36424/","id":36424,"name":"Kate Fraser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36554/","id":36554,"name":"Jenny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36587/","id":36587,"name":"Anthony Lupus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36614/","id":36614,"name":"Rotten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37370/","id":37370,"name":"The Lump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37528/","id":37528,"name":"Kid Psycho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37565/","id":37565,"name":"Johnny Dune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37637/","id":37637,"name":"Demitrius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37714/","id":37714,"name":"Tattooed Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37764/","id":37764,"name":"Raphael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38485/","id":38485,"name":"Bernard the Poet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38614/","id":38614,"name":"Tinyman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39819/","id":39819,"name":"Dzemal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39822/","id":39822,"name":"Worm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40454/","id":40454,"name":"Hellion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40456/","id":40456,"name":"Rockslide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40458/","id":40458,"name":"Anole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40460/","id":40460,"name":"M"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40475/","id":40475,"name":"Prodigy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40505/","id":40505,"name":"Wiccan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40509/","id":40509,"name":"Surge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40511/","id":40511,"name":"Wither"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40518/","id":40518,"name":"Speed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40522/","id":40522,"name":"Maximus Lobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40526/","id":40526,"name":"Azazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40535/","id":40535,"name":"Wallflower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40537/","id":40537,"name":"Wind Dancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40539/","id":40539,"name":"Tag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40542/","id":40542,"name":"Fusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40583/","id":40583,"name":"Quentin Quire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40586/","id":40586,"name":"Glob Herman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40587/","id":40587,"name":"Skybolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40588/","id":40588,"name":"Phaser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40589/","id":40589,"name":"Longstrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40593/","id":40593,"name":"Angel Salvadore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40597/","id":40597,"name":"Blindfold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40600/","id":40600,"name":"Darwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40602/","id":40602,"name":"Mr. M"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40604/","id":40604,"name":"Gazer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40640/","id":40640,"name":"Wolf Cub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40657/","id":40657,"name":"Network"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40669/","id":40669,"name":"Bling!"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40670/","id":40670,"name":"Onyxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40671/","id":40671,"name":"Indra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40672/","id":40672,"name":"Loa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40673/","id":40673,"name":"Pixie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40674/","id":40674,"name":"Match"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40676/","id":40676,"name":"Mutant 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40695/","id":40695,"name":"Slag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40702/","id":40702,"name":"Kiden Nixon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40704/","id":40704,"name":"Catiana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40708/","id":40708,"name":"Damian Tryp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40710/","id":40710,"name":"Biomass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40719/","id":40719,"name":"Mesa-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40785/","id":40785,"name":"Johnny Dee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40786/","id":40786,"name":"Jazz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40842/","id":40842,"name":"Nightstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40847/","id":40847,"name":"Leela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40854/","id":40854,"name":"Petra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40855/","id":40855,"name":"Sway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40859/","id":40859,"name":"Microbe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40868/","id":40868,"name":"Ernst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40885/","id":40885,"name":"Trance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40909/","id":40909,"name":"Aliyah Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40934/","id":40934,"name":"Gene Hayes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40935/","id":40935,"name":"Alice Hayes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40947/","id":40947,"name":"Atom Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40954/","id":40954,"name":"Slipstream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40979/","id":40979,"name":"Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40989/","id":40989,"name":"John Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40998/","id":40998,"name":"Vincente"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41001/","id":41001,"name":"Quietus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41011/","id":41011,"name":"Switchback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41014/","id":41014,"name":"Newt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41033/","id":41033,"name":"Jack-In-The-Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41080/","id":41080,"name":"Samantha Argent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41083/","id":41083,"name":"Network"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41087/","id":41087,"name":"Morningstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41088/","id":41088,"name":"Cloaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41118/","id":41118,"name":"Transporter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41120/","id":41120,"name":"Cassandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41121/","id":41121,"name":"Cerebella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41122/","id":41122,"name":"Rubbermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41124/","id":41124,"name":"Gentle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41149/","id":41149,"name":"Quill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41163/","id":41163,"name":"Furnace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41178/","id":41178,"name":"Negasonic Teenage Warhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41203/","id":41203,"name":"Angstrom Levy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41235/","id":41235,"name":"August General in Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41240/","id":41240,"name":"Seven Deadly Brothers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41259/","id":41259,"name":"Sungirl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41270/","id":41270,"name":"M Twins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41272/","id":41272,"name":"Spellbinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41306/","id":41306,"name":"Anteus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41307/","id":41307,"name":"Kilmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41310/","id":41310,"name":"Junction"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41315/","id":41315,"name":"Jaeger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41316/","id":41316,"name":"Barbican"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41318/","id":41318,"name":"Cerebra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41319/","id":41319,"name":"Desert Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41320/","id":41320,"name":"Krystalin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41321/","id":41321,"name":"Meanstreak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41322/","id":41322,"name":"Metalhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41323/","id":41323,"name":"Skullfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41324/","id":41324,"name":"Junkpile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41365/","id":41365,"name":"Auntie Maim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41418/","id":41418,"name":"Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41422/","id":41422,"name":"Brimstone Love"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41424/","id":41424,"name":"Bloodhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41425/","id":41425,"name":"Book"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41426/","id":41426,"name":"Breakdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41437/","id":41437,"name":"Clarion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41438/","id":41438,"name":"Contagion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41439/","id":41439,"name":"Darkson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41442/","id":41442,"name":"December"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41443/","id":41443,"name":"La Lunatica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41444/","id":41444,"name":"Dorian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41446/","id":41446,"name":"Frostbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41449/","id":41449,"name":"Serpentina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41491/","id":41491,"name":"Positron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41522/","id":41522,"name":"Gregor type Zoanoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41523/","id":41523,"name":"Enzyme type Hyperzoanoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41526/","id":41526,"name":"Glitterspike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41528/","id":41528,"name":"Instant Karma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41591/","id":41591,"name":"Deadlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41620/","id":41620,"name":"Evangeline Whedon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41638/","id":41638,"name":"Flubber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41639/","id":41639,"name":"Rain Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41640/","id":41640,"name":"Dryad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41660/","id":41660,"name":"Michael Nowlan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41676/","id":41676,"name":"Torque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41689/","id":41689,"name":"Chrome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41698/","id":41698,"name":"Kidogo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41699/","id":41699,"name":"Specter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41700/","id":41700,"name":"Preview"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41701/","id":41701,"name":"Aero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41703/","id":41703,"name":"DJ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41704/","id":41704,"name":"Litterbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41710/","id":41710,"name":"Reign"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41711/","id":41711,"name":"Kodiak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41712/","id":41712,"name":"Pilot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41713/","id":41713,"name":"Ch'Vayre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41733/","id":41733,"name":"Tito Bohusk, Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41755/","id":41755,"name":"Lilah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41796/","id":41796,"name":"Bombshell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41823/","id":41823,"name":"Destoroyah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41824/","id":41824,"name":"Ballistic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41844/","id":41844,"name":"Biollante"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41846/","id":41846,"name":"Chicken Wings"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41847/","id":41847,"name":"MeMe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41849/","id":41849,"name":"Impact"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41868/","id":41868,"name":"Warp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41900/","id":41900,"name":"Slaughterhouse Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42031/","id":42031,"name":"Freestyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42032/","id":42032,"name":"Doc Rocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42052/","id":42052,"name":"Fade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42059/","id":42059,"name":"Golobulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42091/","id":42091,"name":"Black Swan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42158/","id":42158,"name":"Providence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42193/","id":42193,"name":"Decay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42212/","id":42212,"name":"Strator Umbridge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42250/","id":42250,"name":"Fred the Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42391/","id":42391,"name":"General Haight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42393/","id":42393,"name":"Tribune Haight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42394/","id":42394,"name":"Frisco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42407/","id":42407,"name":"Master Splinter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42422/","id":42422,"name":"Jon Spectre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42501/","id":42501,"name":"Daken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42503/","id":42503,"name":"Tag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42547/","id":42547,"name":"Undertow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42558/","id":42558,"name":"Genie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42564/","id":42564,"name":"Cairo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42565/","id":42565,"name":"Beowulf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42570/","id":42570,"name":"Kursk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42571/","id":42571,"name":"Magnattack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42573/","id":42573,"name":"Red Rush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42575/","id":42575,"name":"Shrinking Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42600/","id":42600,"name":"Lord Sharpe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42603/","id":42603,"name":"Psidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42610/","id":42610,"name":"Warwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42611/","id":42611,"name":"Blackrock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42621/","id":42621,"name":"Cayman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42628/","id":42628,"name":"Hellblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42634/","id":42634,"name":"Choice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42637/","id":42637,"name":"Phade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42638/","id":42638,"name":"Elven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42641/","id":42641,"name":"Shuriken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42642/","id":42642,"name":"Strike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42644/","id":42644,"name":"Tinsel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42645/","id":42645,"name":"Doctor Deming"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42646/","id":42646,"name":"Mustang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42647/","id":42647,"name":"Catapult"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42648/","id":42648,"name":"Deadeye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42649/","id":42649,"name":"Trax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42693/","id":42693,"name":"Blanka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42773/","id":42773,"name":"Maureen Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42798/","id":42798,"name":"Magician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42806/","id":42806,"name":"Tomcat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42855/","id":42855,"name":"Brass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42917/","id":42917,"name":"Fateball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42995/","id":42995,"name":"Eel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43002/","id":43002,"name":"Doctor Goodwrench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43008/","id":43008,"name":"Washout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43016/","id":43016,"name":"Ruby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43156/","id":43156,"name":"Seoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43159/","id":43159,"name":"Willow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43160/","id":43160,"name":"Uproar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43161/","id":43161,"name":"Wulff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43162/","id":43162,"name":"Twilight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43163/","id":43163,"name":"Nostromo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43164/","id":43164,"name":"Metalsmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43167/","id":43167,"name":"Morphine Somers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43175/","id":43175,"name":"Mortis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43186/","id":43186,"name":"Eye-Scream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43243/","id":43243,"name":"Dropkick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43249/","id":43249,"name":"Gate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43291/","id":43291,"name":"Tech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43308/","id":43308,"name":"Godhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43337/","id":43337,"name":"Elijah Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43412/","id":43412,"name":"El Guapo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43463/","id":43463,"name":"Henrietta Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43469/","id":43469,"name":"Pathway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43497/","id":43497,"name":"The Alchemist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43498/","id":43498,"name":"Arthur Joseph Curry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43524/","id":43524,"name":"M-Plate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43543/","id":43543,"name":"Avatar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43544/","id":43544,"name":"Terrayne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43545/","id":43545,"name":"Mosquito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43546/","id":43546,"name":"Silver Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43547/","id":43547,"name":"Silkie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43548/","id":43548,"name":"Werehawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43549/","id":43549,"name":"Blackmane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43550/","id":43550,"name":"Sunswift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43723/","id":43723,"name":"Tundra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43736/","id":43736,"name":"Centrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43757/","id":43757,"name":"Vandervecken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43766/","id":43766,"name":"Chief Authier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43774/","id":43774,"name":"Johnston Coffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43845/","id":43845,"name":"Wingspan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43852/","id":43852,"name":"Tantrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43854/","id":43854,"name":"Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43856/","id":43856,"name":"Destra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43858/","id":43858,"name":"Empty Vee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43867/","id":43867,"name":"Psyclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43868/","id":43868,"name":"Mama Hurricane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43869/","id":43869,"name":"Master Zhao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43889/","id":43889,"name":"Psycho-K"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43890/","id":43890,"name":"One-Eyed Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43892/","id":43892,"name":"Driver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43894/","id":43894,"name":"Rosa Navarro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43947/","id":43947,"name":"Ramotith type Zoanoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43953/","id":43953,"name":"Vamore type Zoanoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44119/","id":44119,"name":"Dingo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44167/","id":44167,"name":"Alias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44169/","id":44169,"name":"Avi Barak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44170/","id":44170,"name":"Buzz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44173/","id":44173,"name":"Deadhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44214/","id":44214,"name":"Midnight's Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44264/","id":44264,"name":"Projector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44286/","id":44286,"name":"Gargouille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44287/","id":44287,"name":"Rem-Ram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44288/","id":44288,"name":"Bloke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44355/","id":44355,"name":"Whisper A'Daire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44446/","id":44446,"name":"Mahkinot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44472/","id":44472,"name":"Sephiroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44474/","id":44474,"name":"Shane Shooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44498/","id":44498,"name":"Hutch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44505/","id":44505,"name":"Elena Ivanova"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44506/","id":44506,"name":"Ivan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44577/","id":44577,"name":"Sham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44578/","id":44578,"name":"Quiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44591/","id":44591,"name":"Hot-Streak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44603/","id":44603,"name":"Bliss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44685/","id":44685,"name":"Verminous Skumm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44693/","id":44693,"name":"Alexander Anderson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44709/","id":44709,"name":"Donatello"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44711/","id":44711,"name":"Michelangelo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44712/","id":44712,"name":"Leonardo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44757/","id":44757,"name":"Airhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44759/","id":44759,"name":"Garbage Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44760/","id":44760,"name":"Blasting Cap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44761/","id":44761,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44762/","id":44762,"name":"Crazy Legs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44763/","id":44763,"name":"Razor Cut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44809/","id":44809,"name":"Johnny Alpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44812/","id":44812,"name":"Reptile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44830/","id":44830,"name":"Ace Spencer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44914/","id":44914,"name":"Chance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45020/","id":45020,"name":"Zetsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45038/","id":45038,"name":"Diamanda Nero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45039/","id":45039,"name":"Lexii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45040/","id":45040,"name":"Malachi Hark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45043/","id":45043,"name":"Qua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45044/","id":45044,"name":"Lisa Hendricks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45045/","id":45045,"name":"Tom Lennox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45046/","id":45046,"name":"Alison Double"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45049/","id":45049,"name":"Astrid Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45050/","id":45050,"name":"Christian Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45096/","id":45096,"name":"Horns"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45103/","id":45103,"name":"Ivich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45104/","id":45104,"name":"Lexi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45105/","id":45105,"name":"Max Rocker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45107/","id":45107,"name":"Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45119/","id":45119,"name":"The Doofer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45121/","id":45121,"name":"Jeb Guthrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45125/","id":45125,"name":"Black Womb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45144/","id":45144,"name":"Larry Bodine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45191/","id":45191,"name":"Gailyn Bailey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45192/","id":45192,"name":"Joey Bailey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45214/","id":45214,"name":"Jacob Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45217/","id":45217,"name":"Elias Bogan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45226/","id":45226,"name":"Sean Garrison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45332/","id":45332,"name":"Ixis Naugus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45380/","id":45380,"name":"Samarra Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45391/","id":45391,"name":"Stinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45396/","id":45396,"name":"Grimer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45403/","id":45403,"name":"Element Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45532/","id":45532,"name":"Lighttrakker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45550/","id":45550,"name":"The Profile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45566/","id":45566,"name":"Kiwi Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45567/","id":45567,"name":"Yidrazil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45568/","id":45568,"name":"Ginniyeh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45569/","id":45569,"name":"Ophis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45570/","id":45570,"name":"Raven LeBeau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45585/","id":45585,"name":"Megatox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45590/","id":45590,"name":"Scotty Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45613/","id":45613,"name":"Angel Dust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45614/","id":45614,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45615/","id":45615,"name":"Armena Ortega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45616/","id":45616,"name":"Electric Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45617/","id":45617,"name":"Hannah Levy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45618/","id":45618,"name":"Lara the Illusionist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45619/","id":45619,"name":"Mist Mistress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45620/","id":45620,"name":"Postman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45622/","id":45622,"name":"Shatter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45636/","id":45636,"name":"Jillian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45754/","id":45754,"name":"Mulholland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45761/","id":45761,"name":"Eosimias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45930/","id":45930,"name":"Glamor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45938/","id":45938,"name":"Maggie Reed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45939/","id":45939,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45940/","id":45940,"name":"Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45941/","id":45941,"name":"Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46069/","id":46069,"name":"Iris West"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46070/","id":46070,"name":"Jai West"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46191/","id":46191,"name":"Quake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46233/","id":46233,"name":"Lewis Guthrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46246/","id":46246,"name":"Mindblast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46250/","id":46250,"name":"Exomorphic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46432/","id":46432,"name":"Nestling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46433/","id":46433,"name":"Megan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46434/","id":46434,"name":"Mangacide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46435/","id":46435,"name":"Sweet Sally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46437/","id":46437,"name":"Arson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46438/","id":46438,"name":"Silicon Stiletto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46439/","id":46439,"name":"Ajita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46454/","id":46454,"name":"Rolling Thunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46455/","id":46455,"name":"Revenant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46460/","id":46460,"name":"Griffin Grey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46501/","id":46501,"name":"Jackson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46516/","id":46516,"name":"Base"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46517/","id":46517,"name":"Krista Marwan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46519/","id":46519,"name":"Push"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46525/","id":46525,"name":"Astra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46526/","id":46526,"name":"Vesper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46527/","id":46527,"name":"Leong Coy Manh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46528/","id":46528,"name":"Nga Coy Manh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46536/","id":46536,"name":"Bobby Soul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46599/","id":46599,"name":"Neurotap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46618/","id":46618,"name":"Kid Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46632/","id":46632,"name":"Snake Whip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46678/","id":46678,"name":"Mindwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46686/","id":46686,"name":"Xavi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46705/","id":46705,"name":"Static"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46768/","id":46768,"name":"Spider-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46793/","id":46793,"name":"BloodRayne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46802/","id":46802,"name":"Wolvie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46805/","id":46805,"name":"Shower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46806/","id":46806,"name":"Cike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46807/","id":46807,"name":"Colossusus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46808/","id":46808,"name":"Shugah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46813/","id":46813,"name":"Sakki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46837/","id":46837,"name":"Forearm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46838/","id":46838,"name":"Longneck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46839/","id":46839,"name":"Tantra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46849/","id":46849,"name":"Molecule"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46874/","id":46874,"name":"Tick Tock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46955/","id":46955,"name":"Bogatyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46984/","id":46984,"name":"Blowtorch Brand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47027/","id":47027,"name":"Mindboggler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47028/","id":47028,"name":"Badb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47029/","id":47029,"name":"Agni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47031/","id":47031,"name":"Jaculi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47032/","id":47032,"name":"Rustam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47052/","id":47052,"name":"Pravda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47076/","id":47076,"name":"Putty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47080/","id":47080,"name":"Dark Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47148/","id":47148,"name":"Flare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47259/","id":47259,"name":"Captain Speed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47290/","id":47290,"name":"Creepy Crawler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47291/","id":47291,"name":"Boyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47292/","id":47292,"name":"Charlie X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47293/","id":47293,"name":"Shadowkitty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47298/","id":47298,"name":"Nighteyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47299/","id":47299,"name":"Amazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47310/","id":47310,"name":"Swat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47311/","id":47311,"name":"India"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47312/","id":47312,"name":"Novo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47313/","id":47313,"name":"Lucky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47314/","id":47314,"name":"Beck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47362/","id":47362,"name":"Nia Noble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47396/","id":47396,"name":"Major Oak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47441/","id":47441,"name":"Mary Purcell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47475/","id":47475,"name":"Tores"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47514/","id":47514,"name":"Spyke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47521/","id":47521,"name":"Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47531/","id":47531,"name":"Kazuma Torisuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47583/","id":47583,"name":"Reynolds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47642/","id":47642,"name":"Paralyzer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47662/","id":47662,"name":"Crusader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47663/","id":47663,"name":"Ando Masahashi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47664/","id":47664,"name":"Claire Bennet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47665/","id":47665,"name":"Claude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47666/","id":47666,"name":"D.L. Hawkins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47667/","id":47667,"name":"Haitian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47668/","id":47668,"name":"Hiro Nakamura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47670/","id":47670,"name":"Isaac Mendez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47671/","id":47671,"name":"Niki Sanders"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47672/","id":47672,"name":"Kaito Nakamura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47673/","id":47673,"name":"Matt Parkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47675/","id":47675,"name":"Micah Sanders"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47676/","id":47676,"name":"Mohinder Suresh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47677/","id":47677,"name":"Nathan Petrelli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47678/","id":47678,"name":"Peter Petrelli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47679/","id":47679,"name":"Sylar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47728/","id":47728,"name":"Yolanda Montez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47748/","id":47748,"name":"West"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47761/","id":47761,"name":"Ted Sprague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47801/","id":47801,"name":"Professor Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47803/","id":47803,"name":"Psi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47816/","id":47816,"name":"Jon Farmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47817/","id":47817,"name":"Vox Populi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47824/","id":47824,"name":"Caleb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47875/","id":47875,"name":"Mystiq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47941/","id":47941,"name":"Captain Mako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47951/","id":47951,"name":"Silver Mantis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48032/","id":48032,"name":"Mynx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48062/","id":48062,"name":"Slick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48078/","id":48078,"name":"Saint Anna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48116/","id":48116,"name":"Marabeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48118/","id":48118,"name":"Trioccula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48119/","id":48119,"name":"Dummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48120/","id":48120,"name":"Rust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48121/","id":48121,"name":"Maury Parkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48122/","id":48122,"name":"Charlie Andrews"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48135/","id":48135,"name":"Kamar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48165/","id":48165,"name":"Pester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48197/","id":48197,"name":"Qwerty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48231/","id":48231,"name":"Psi-Storm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48232/","id":48232,"name":"Hatchet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48303/","id":48303,"name":"Snow Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48315/","id":48315,"name":"Gorc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48316/","id":48316,"name":"Pic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48346/","id":48346,"name":"Overrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48379/","id":48379,"name":"Agent Sum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48431/","id":48431,"name":"Hana Gitelman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48432/","id":48432,"name":"Eden McCain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48537/","id":48537,"name":"Pavane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48597/","id":48597,"name":"Au Co"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48656/","id":48656,"name":"Tito Bohusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48804/","id":48804,"name":"Charnel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48851/","id":48851,"name":"Leatherhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48883/","id":48883,"name":"Waver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48884/","id":48884,"name":"Pressure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48885/","id":48885,"name":"Plug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48886/","id":48886,"name":"Sweetface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48887/","id":48887,"name":"Boom Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48888/","id":48888,"name":"Anything"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48889/","id":48889,"name":"A.J."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48890/","id":48890,"name":"Old Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48892/","id":48892,"name":"Lost Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48893/","id":48893,"name":"Lukasz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48899/","id":48899,"name":"Malcolm Cortez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48940/","id":48940,"name":"Tildie Soames"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49005/","id":49005,"name":"Lionel Jeffries"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49037/","id":49037,"name":"Overlay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49048/","id":49048,"name":"Sketch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49105/","id":49105,"name":"Cheyenne Freemont"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49160/","id":49160,"name":"Ryuhou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49222/","id":49222,"name":"Walter Pratt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49240/","id":49240,"name":"Four-Legged Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49329/","id":49329,"name":"Hope Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49331/","id":49331,"name":"Robert Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49342/","id":49342,"name":"The Angler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49467/","id":49467,"name":"Michelle Heart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49494/","id":49494,"name":"Baraka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49564/","id":49564,"name":"Elle Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49575/","id":49575,"name":"Adam Monroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49617/","id":49617,"name":"Spider-Boy 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49783/","id":49783,"name":"Murmur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49797/","id":49797,"name":"Dirge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49798/","id":49798,"name":"T'Channa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49801/","id":49801,"name":"Rei Ayanami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49806/","id":49806,"name":"Tartarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49807/","id":49807,"name":"The Goth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49813/","id":49813,"name":"Seth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49966/","id":49966,"name":"Beastling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49982/","id":49982,"name":"Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50029/","id":50029,"name":"The Blitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50031/","id":50031,"name":"Ultragirl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50048/","id":50048,"name":"Merdude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50049/","id":50049,"name":"Bebop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50050/","id":50050,"name":"Rocksteady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50065/","id":50065,"name":"Ray Fillet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50072/","id":50072,"name":"Phade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50114/","id":50114,"name":"Verminator X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50117/","id":50117,"name":"Bette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50119/","id":50119,"name":"Madam Drache"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50131/","id":50131,"name":"Hot Rox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50137/","id":50137,"name":"Timothy Halloran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50156/","id":50156,"name":"Frenzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50157/","id":50157,"name":"Quiz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50161/","id":50161,"name":"Kalki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50181/","id":50181,"name":"Kidomaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50213/","id":50213,"name":"Warp Savant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50215/","id":50215,"name":"Miss Saccharine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50216/","id":50216,"name":"Cyclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50217/","id":50217,"name":"Harmony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50219/","id":50219,"name":"Burning Puddle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50220/","id":50220,"name":"Double Helix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50221/","id":50221,"name":"Carla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50222/","id":50222,"name":"Torso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50226/","id":50226,"name":"Grip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50238/","id":50238,"name":"Foxfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50248/","id":50248,"name":"Forsa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50249/","id":50249,"name":"Starburst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50250/","id":50250,"name":"D.J. Blast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50251/","id":50251,"name":"Head Knocker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50280/","id":50280,"name":"Hardwire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50281/","id":50281,"name":"Glare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50285/","id":50285,"name":"Backstabber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50286/","id":50286,"name":"Heater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50292/","id":50292,"name":"Death Dance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50293/","id":50293,"name":"Book"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50315/","id":50315,"name":"Solara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50324/","id":50324,"name":"Turf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50394/","id":50394,"name":"Amy Brewer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50410/","id":50410,"name":"Wrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50453/","id":50453,"name":"Mangle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50456/","id":50456,"name":"Rush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50481/","id":50481,"name":"Jumbo Carnation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50486/","id":50486,"name":"Celeste Cuckoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50487/","id":50487,"name":"Esme Cuckoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50488/","id":50488,"name":"Mindee Cuckoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50489/","id":50489,"name":"Phoebe Cuckoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50490/","id":50490,"name":"Sophie Cuckoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50528/","id":50528,"name":"Arc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50541/","id":50541,"name":"Hurricane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50563/","id":50563,"name":"Merwoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50576/","id":50576,"name":"Casino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50699/","id":50699,"name":"Scar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50700/","id":50700,"name":"Sangre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50701/","id":50701,"name":"Sandblast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50702/","id":50702,"name":"Yardarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50703/","id":50703,"name":"Gecko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50704/","id":50704,"name":"Jolly Roger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50705/","id":50705,"name":"Centipede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50707/","id":50707,"name":"Empire-7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50708/","id":50708,"name":"Supra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50791/","id":50791,"name":"Trauma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50798/","id":50798,"name":"Graymalkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50817/","id":50817,"name":"Heinkel Wolfe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50827/","id":50827,"name":"Powerhouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50873/","id":50873,"name":"Iron Maiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50952/","id":50952,"name":"Molly Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50961/","id":50961,"name":"Zealot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50987/","id":50987,"name":"Liam Connaughton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51087/","id":51087,"name":"Maggie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51181/","id":51181,"name":"Stinkor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51235/","id":51235,"name":"Seraph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51246/","id":51246,"name":"Chokehold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51345/","id":51345,"name":"Rubble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51420/","id":51420,"name":"Slash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51423/","id":51423,"name":"Mondo Gecko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51485/","id":51485,"name":"Rafaella Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51516/","id":51516,"name":"Future Raphael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51525/","id":51525,"name":"Detonator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51539/","id":51539,"name":"Scumbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51542/","id":51542,"name":"Syndicate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51588/","id":51588,"name":"Future Donatello"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51617/","id":51617,"name":"Jin Kazama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51650/","id":51650,"name":"Kritter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51651/","id":51651,"name":"Penny Dreadful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51652/","id":51652,"name":"Tao Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51653/","id":51653,"name":"Hazard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51655/","id":51655,"name":"Bootleg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51767/","id":51767,"name":"Dino-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51823/","id":51823,"name":"Ethan York"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52015/","id":52015,"name":"Janelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52170/","id":52170,"name":"Maze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52210/","id":52210,"name":"Lionel Barstow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52271/","id":52271,"name":"Lightning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52424/","id":52424,"name":"Sparrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52445/","id":52445,"name":"Chip MacNally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52447/","id":52447,"name":"Demon Scum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52448/","id":52448,"name":"Megawatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52449/","id":52449,"name":"Mindgame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52460/","id":52460,"name":"Hope Kintobor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52480/","id":52480,"name":"T-Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52483/","id":52483,"name":"Maya Herrera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52493/","id":52493,"name":"Ping the Elastic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52495/","id":52495,"name":"Charma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52552/","id":52552,"name":"Sister Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52557/","id":52557,"name":"Cynder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52558/","id":52558,"name":"Dohrsyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52720/","id":52720,"name":"Margaret Slade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52721/","id":52721,"name":"Hamilton Slade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52722/","id":52722,"name":"Frederick Slade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52723/","id":52723,"name":"Jack Starsmore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52724/","id":52724,"name":"Kabar Brashir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52732/","id":52732,"name":"Ferak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52737/","id":52737,"name":"Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52757/","id":52757,"name":"Monica Dawson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52812/","id":52812,"name":"Elastigirl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52813/","id":52813,"name":"Violet Parr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52822/","id":52822,"name":"Critical Mass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52857/","id":52857,"name":"Dash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52862/","id":52862,"name":"Guillame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52877/","id":52877,"name":"Empty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52948/","id":52948,"name":"White Ninja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53099/","id":53099,"name":"Chameleon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53130/","id":53130,"name":"Nightblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53149/","id":53149,"name":"Wyrm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53158/","id":53158,"name":"Loria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53238/","id":53238,"name":"Silver Sword"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53243/","id":53243,"name":"Visi-Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53328/","id":53328,"name":"Ben Boxer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53385/","id":53385,"name":"Linda Tavara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53449/","id":53449,"name":"Doctor Denton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53492/","id":53492,"name":"Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53676/","id":53676,"name":"Evan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53699/","id":53699,"name":"Zane Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53979/","id":53979,"name":"Janus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53985/","id":53985,"name":"Bedlam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53989/","id":53989,"name":"Gregor Smerdyakov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54001/","id":54001,"name":"Joshua Clay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54005/","id":54005,"name":"Karma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54035/","id":54035,"name":"Ox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54036/","id":54036,"name":"Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54044/","id":54044,"name":"Scott Fisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54100/","id":54100,"name":"Pasco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54105/","id":54105,"name":"Adahm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54124/","id":54124,"name":"Afterburner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54174/","id":54174,"name":"Possessor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54196/","id":54196,"name":"Fable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54228/","id":54228,"name":"Candice Willmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54325/","id":54325,"name":"N2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54406/","id":54406,"name":"Jughandle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54407/","id":54407,"name":"Mize"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54423/","id":54423,"name":"Justice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54523/","id":54523,"name":"Donna Dunlap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54534/","id":54534,"name":"Ankhi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54555/","id":54555,"name":"Klara Prast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54591/","id":54591,"name":"Splitzkrieg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54592/","id":54592,"name":"Wyldfyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54593/","id":54593,"name":"Slam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54676/","id":54676,"name":"Judgement"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54700/","id":54700,"name":"Fly Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54701/","id":54701,"name":"Comanche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54702/","id":54702,"name":"Vise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54703/","id":54703,"name":"Jack Rabbit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54705/","id":54705,"name":"Little John"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54710/","id":54710,"name":"Prism"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54721/","id":54721,"name":"Muezzini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54722/","id":54722,"name":"Saladin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54723/","id":54723,"name":"Blitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54741/","id":54741,"name":"Damascus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54743/","id":54743,"name":"Sand Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54744/","id":54744,"name":"Cheops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54745/","id":54745,"name":"Sahara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54748/","id":54748,"name":"Uzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54749/","id":54749,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54750/","id":54750,"name":"Scythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54751/","id":54751,"name":"Fractal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54754/","id":54754,"name":"Maccabee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54762/","id":54762,"name":"Father"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54767/","id":54767,"name":"Wang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54768/","id":54768,"name":"Astig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54769/","id":54769,"name":"Brown-Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54770/","id":54770,"name":"Kadi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54771/","id":54771,"name":"Kupcake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54772/","id":54772,"name":"Pammy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54773/","id":54773,"name":"Randie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54774/","id":54774,"name":"Tol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54805/","id":54805,"name":"Lamplight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54810/","id":54810,"name":"Wolfie Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54862/","id":54862,"name":"No-Name"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54863/","id":54863,"name":"Rico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54864/","id":54864,"name":"Pavel Rasputin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54865/","id":54865,"name":"Oliver Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54866/","id":54866,"name":"Becka Munroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54875/","id":54875,"name":"Widow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54883/","id":54883,"name":"Night Mask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54885/","id":54885,"name":"The Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54911/","id":54911,"name":"Mighty Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54931/","id":54931,"name":"Jackdaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54947/","id":54947,"name":"Maarten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54949/","id":54949,"name":"Liquid Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55018/","id":55018,"name":"Piper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55019/","id":55019,"name":"Tanya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55056/","id":55056,"name":"Sara Hingle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55100/","id":55100,"name":"Goro Ayase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55101/","id":55101,"name":"Parasite Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55102/","id":55102,"name":"Yuka Kuroki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55120/","id":55120,"name":"Toxin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55121/","id":55121,"name":"Tokka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55166/","id":55166,"name":"Hyena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55204/","id":55204,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55222/","id":55222,"name":"Rahzar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55320/","id":55320,"name":"Apollo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55323/","id":55323,"name":"Mariner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55328/","id":55328,"name":"Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55362/","id":55362,"name":"Barnacle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55421/","id":55421,"name":"Ferro Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55431/","id":55431,"name":"Powerpax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55501/","id":55501,"name":"Kazuya Mishima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55522/","id":55522,"name":"Slate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55523/","id":55523,"name":"Surge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55526/","id":55526,"name":"Felicia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55544/","id":55544,"name":"Detective O'mega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55551/","id":55551,"name":"Quantum Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55556/","id":55556,"name":"Emery Arcenaux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55618/","id":55618,"name":"Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55624/","id":55624,"name":"Dusk Blackthorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55625/","id":55625,"name":"Dawn Blackthorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55627/","id":55627,"name":"Mercury Blackthorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55629/","id":55629,"name":"Kitty Blackthorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55648/","id":55648,"name":"Blueblood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55743/","id":55743,"name":"Micro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55755/","id":55755,"name":"Elemental"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55805/","id":55805,"name":"Starbright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55828/","id":55828,"name":"Henge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55850/","id":55850,"name":"Rakkus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55855/","id":55855,"name":"Blind Ali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55856/","id":55856,"name":"Miz Tree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55857/","id":55857,"name":"Oxford Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55858/","id":55858,"name":"Surrender Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55860/","id":55860,"name":"Wall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55866/","id":55866,"name":"Tempest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55914/","id":55914,"name":"Pierce Blackthorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55916/","id":55916,"name":"Penumbra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55936/","id":55936,"name":"Winter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55994/","id":55994,"name":"Woof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56022/","id":56022,"name":"Booga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56103/","id":56103,"name":"Elasti-Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56106/","id":56106,"name":"Dial H.U.S.K."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56117/","id":56117,"name":"Cheshire of Caith Sith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56184/","id":56184,"name":"Gwen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56201/","id":56201,"name":"Sarah Purser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56202/","id":56202,"name":"Ned Ralston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56203/","id":56203,"name":"Dynamite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56204/","id":56204,"name":"Tony Romeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56226/","id":56226,"name":"Tattoo Artist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56255/","id":56255,"name":"Alfie O'Meagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56272/","id":56272,"name":"Targa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56346/","id":56346,"name":"Shrewmanoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56446/","id":56446,"name":"Naiad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56491/","id":56491,"name":"Barracuda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56522/","id":56522,"name":"Miss Sinister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56615/","id":56615,"name":"Lourdes Chantel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56621/","id":56621,"name":"Sultan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56685/","id":56685,"name":"The Termite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56771/","id":56771,"name":"Lil' Bro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56802/","id":56802,"name":"Julius Akerman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56807/","id":56807,"name":"Echo De'mille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56826/","id":56826,"name":"Savage Fin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56831/","id":56831,"name":"Holly-Ann Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56853/","id":56853,"name":"Gavin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56877/","id":56877,"name":"Sapphire Styx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56883/","id":56883,"name":"Subject X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56960/","id":56960,"name":"The Millennium Earl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56967/","id":56967,"name":"Max Ride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57040/","id":57040,"name":"Ruby Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57054/","id":57054,"name":"Linqon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57070/","id":57070,"name":"Bug Baron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57094/","id":57094,"name":"Aquamaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57095/","id":57095,"name":"Alejandro Herrera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57114/","id":57114,"name":"Gunfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57116/","id":57116,"name":"Visionary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57122/","id":57122,"name":"Firebird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57127/","id":57127,"name":"Angel Hawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57173/","id":57173,"name":"Bloodhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57297/","id":57297,"name":"Nuwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57299/","id":57299,"name":"Groonk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57408/","id":57408,"name":"Locomotive Breath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57428/","id":57428,"name":"Pixie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57429/","id":57429,"name":"Missy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57432/","id":57432,"name":"Supermax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57443/","id":57443,"name":"Carnivore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57448/","id":57448,"name":"Dragon Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57546/","id":57546,"name":"Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57547/","id":57547,"name":"Paper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57548/","id":57548,"name":"Scissors"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57612/","id":57612,"name":"Chekari Van Burden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57660/","id":57660,"name":"Medea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57671/","id":57671,"name":"Alex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57706/","id":57706,"name":"Angela Petrelli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57708/","id":57708,"name":"Carver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57713/","id":57713,"name":"Natalie X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57720/","id":57720,"name":"Powerhouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57753/","id":57753,"name":"Otomo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57764/","id":57764,"name":"Knox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57952/","id":57952,"name":"Lucy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57987/","id":57987,"name":"Peace Monger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57995/","id":57995,"name":"Latonya Jefferson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58000/","id":58000,"name":"Tracy Strauss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58229/","id":58229,"name":"Mali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58230/","id":58230,"name":"Transfaser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58231/","id":58231,"name":"Leecher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58253/","id":58253,"name":"Eloise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58291/","id":58291,"name":"Voodoo Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58292/","id":58292,"name":"Trauma Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58293/","id":58293,"name":"Tommy Twenty-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58294/","id":58294,"name":"Nate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58326/","id":58326,"name":"Arthur Petrelli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58334/","id":58334,"name":"Isabella Fermi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58352/","id":58352,"name":"Marne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58370/","id":58370,"name":"TNTeena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58371/","id":58371,"name":"The Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58372/","id":58372,"name":"Pristine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58374/","id":58374,"name":"Poprocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58446/","id":58446,"name":"Meredith Gordon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58448/","id":58448,"name":"Queen of Blades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58520/","id":58520,"name":"Eric Doyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58547/","id":58547,"name":"Cipher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58548/","id":58548,"name":"Long-Dong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58554/","id":58554,"name":"Nocturne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58610/","id":58610,"name":"Boogieman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58700/","id":58700,"name":"Petrified Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58701/","id":58701,"name":"Seafarer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58713/","id":58713,"name":"Taipan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58715/","id":58715,"name":"Tinderbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58726/","id":58726,"name":"El Bagual"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58732/","id":58732,"name":"Yomiko Readman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58820/","id":58820,"name":"Tina Ramierez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58821/","id":58821,"name":"Michael Fitzgerald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58842/","id":58842,"name":"Blitzen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58843/","id":58843,"name":"Donner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58845/","id":58845,"name":"Brick House"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58846/","id":58846,"name":"Third Rail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58876/","id":58876,"name":"Kokoro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58877/","id":58877,"name":"Magneto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58926/","id":58926,"name":"Flamingo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58955/","id":58955,"name":"Tangerine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58977/","id":58977,"name":"Ricardo Silva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58979/","id":58979,"name":"Savanti Romero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58986/","id":58986,"name":"Dusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58987/","id":58987,"name":"Conductra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58988/","id":58988,"name":"Toughlon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58993/","id":58993,"name":"Shaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58994/","id":58994,"name":"Travel Agent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58995/","id":58995,"name":"Human Shield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59015/","id":59015,"name":"Felicity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59019/","id":59019,"name":"Ebony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59020/","id":59020,"name":"Ivory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59021/","id":59021,"name":"Ghetto Blaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59030/","id":59030,"name":"Godfrey Calthrop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59061/","id":59061,"name":"Bubbasaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59075/","id":59075,"name":"Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59099/","id":59099,"name":"Icegirl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59103/","id":59103,"name":"Jack White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59107/","id":59107,"name":"Walking Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59110/","id":59110,"name":"Dirty Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59124/","id":59124,"name":"Stunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59148/","id":59148,"name":"The Visitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59158/","id":59158,"name":"Matt Neuenberg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59172/","id":59172,"name":"The Marquis of Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59213/","id":59213,"name":"Thriller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59220/","id":59220,"name":"Lefty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59257/","id":59257,"name":"The Familiar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59288/","id":59288,"name":"N-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59305/","id":59305,"name":"Maria Muradyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59334/","id":59334,"name":"Cinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59336/","id":59336,"name":"Glyder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59348/","id":59348,"name":"Conquistador"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59356/","id":59356,"name":"Phaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59369/","id":59369,"name":"David Richards"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59377/","id":59377,"name":"Monte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59408/","id":59408,"name":"Iceberg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59410/","id":59410,"name":"Runaway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59411/","id":59411,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59451/","id":59451,"name":"Porous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59455/","id":59455,"name":"Purge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59506/","id":59506,"name":"Agent Brian Rinehart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59523/","id":59523,"name":"Beacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59534/","id":59534,"name":"Rok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59570/","id":59570,"name":"Salamander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59598/","id":59598,"name":"Silkworm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59609/","id":59609,"name":"Fright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59627/","id":59627,"name":"Sureshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59628/","id":59628,"name":"Surgeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59707/","id":59707,"name":"Kate Brandt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59723/","id":59723,"name":"Tom Diedrich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59744/","id":59744,"name":"LeGault"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59768/","id":59768,"name":"Blast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59769/","id":59769,"name":"Quell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59772/","id":59772,"name":"Warp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59773/","id":59773,"name":"Spikeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59774/","id":59774,"name":"TseTse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59775/","id":59775,"name":"Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59783/","id":59783,"name":"Breakdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59784/","id":59784,"name":"Windsprint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59785/","id":59785,"name":"Ditto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59786/","id":59786,"name":"Hardbody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59787/","id":59787,"name":"Runt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59873/","id":59873,"name":"Jenny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59877/","id":59877,"name":"Curlew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59879/","id":59879,"name":"Tara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59882/","id":59882,"name":"Weasel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59883/","id":59883,"name":"Eel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59889/","id":59889,"name":"Swallow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59890/","id":59890,"name":"Sparrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59893/","id":59893,"name":"Daze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59902/","id":59902,"name":"Fort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59903/","id":59903,"name":"Bazooka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59904/","id":59904,"name":"Puff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59905/","id":59905,"name":"Thumper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59906/","id":59906,"name":"Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59910/","id":59910,"name":"Wise Son"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59919/","id":59919,"name":"Rad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59951/","id":59951,"name":"Scout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59979/","id":59979,"name":"Camouflage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59980/","id":59980,"name":"Screen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59991/","id":59991,"name":"Sonix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59992/","id":59992,"name":"Jolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59993/","id":59993,"name":"Anvil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59994/","id":59994,"name":"Tyger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60006/","id":60006,"name":"The Harbinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60019/","id":60019,"name":"Holocaust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60020/","id":60020,"name":"Tarmack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60110/","id":60110,"name":"Amina Synge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60260/","id":60260,"name":"Dianne Davidson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60285/","id":60285,"name":"Valeria Fen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60305/","id":60305,"name":"Atomic-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60349/","id":60349,"name":"Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60353/","id":60353,"name":"Revelation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60402/","id":60402,"name":"Cool Million"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60437/","id":60437,"name":"Plague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60462/","id":60462,"name":"Doppelganger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60558/","id":60558,"name":"P.J. James"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60593/","id":60593,"name":"Nevermind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60598/","id":60598,"name":"Razorhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60622/","id":60622,"name":"Static Annie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60714/","id":60714,"name":"Human Torch 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60909/","id":60909,"name":"Killer Tomato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60934/","id":60934,"name":"Russ Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61052/","id":61052,"name":"Fearless Flint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61072/","id":61072,"name":"Scimidar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61131/","id":61131,"name":"Dishman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61176/","id":61176,"name":"Master Key"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61212/","id":61212,"name":"Shakira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61219/","id":61219,"name":"Shock Gibson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61287/","id":61287,"name":"War Chest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61326/","id":61326,"name":"Pig-Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61360/","id":61360,"name":"Bridgit Shane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61366/","id":61366,"name":"Lodon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61415/","id":61415,"name":"Douglas Nolan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61433/","id":61433,"name":"Brother Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61435/","id":61435,"name":"Scarlet Warlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61457/","id":61457,"name":"Daemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61458/","id":61458,"name":"Hecat'e"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61470/","id":61470,"name":"Weight Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61472/","id":61472,"name":"Sandra Silke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61496/","id":61496,"name":"Cerena Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61516/","id":61516,"name":"D'narda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61541/","id":61541,"name":"Damien Kane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61657/","id":61657,"name":"Mr. Punch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61776/","id":61776,"name":"Mayhem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61784/","id":61784,"name":"Anna Korolenko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61797/","id":61797,"name":"The Mariner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61804/","id":61804,"name":"Damper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61805/","id":61805,"name":"Architect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61885/","id":61885,"name":"Lucy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61910/","id":61910,"name":"Dyesebel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61927/","id":61927,"name":"Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61932/","id":61932,"name":"Gull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61933/","id":61933,"name":"Metallique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61934/","id":61934,"name":"Violet Sanchez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61935/","id":61935,"name":"Dezmond Harris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61942/","id":61942,"name":"Roach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61956/","id":61956,"name":"Changeling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61989/","id":61989,"name":"Rei-Ginsei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61993/","id":61993,"name":"Chullah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61994/","id":61994,"name":"Gimlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61995/","id":61995,"name":"Golem the Tortureless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62012/","id":62012,"name":"Megan Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62023/","id":62023,"name":"Melter (Colchiss)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62037/","id":62037,"name":"Nana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62039/","id":62039,"name":"Mariko Kurama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62040/","id":62040,"name":"Stormfront"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62041/","id":62041,"name":"Tran Coy Manh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62055/","id":62055,"name":"Professor Ojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62057/","id":62057,"name":"Wolverina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62072/","id":62072,"name":"Manifold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62083/","id":62083,"name":"Fog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62127/","id":62127,"name":"Mary Margaret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62178/","id":62178,"name":"Strongarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62191/","id":62191,"name":"Grimace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62193/","id":62193,"name":"Sentry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62194/","id":62194,"name":"Silver Sky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62196/","id":62196,"name":"Sin Buster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62197/","id":62197,"name":"The Wire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62198/","id":62198,"name":"Casket Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62199/","id":62199,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62200/","id":62200,"name":"Tele-Tech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62201/","id":62201,"name":"American Ace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62205/","id":62205,"name":"Salvé"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62206/","id":62206,"name":"Urban Assault Commando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62245/","id":62245,"name":"Kid Empty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62254/","id":62254,"name":"Penelope Pink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62260/","id":62260,"name":"Doctor Dinosaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62449/","id":62449,"name":"Point Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62457/","id":62457,"name":"Vance Cosmic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62459/","id":62459,"name":"Psi-Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62465/","id":62465,"name":"Dream Date"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62471/","id":62471,"name":"Phoenetix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62475/","id":62475,"name":"Xcel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62478/","id":62478,"name":"Phantom Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62479/","id":62479,"name":"Mass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62596/","id":62596,"name":"Boa Hancock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62610/","id":62610,"name":"John Maddox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62625/","id":62625,"name":"Mutant Leader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62861/","id":62861,"name":"Gareth Thomas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62904/","id":62904,"name":"Boom Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62968/","id":62968,"name":"Quill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63070/","id":63070,"name":"Sideshow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63075/","id":63075,"name":"Oro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63077/","id":63077,"name":"Coil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63078/","id":63078,"name":"Puff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63079/","id":63079,"name":"Virus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63222/","id":63222,"name":"Crosta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63246/","id":63246,"name":"Cole MacGrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63292/","id":63292,"name":"Plague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63296/","id":63296,"name":"Corona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63297/","id":63297,"name":"Beast (X-Punks)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63331/","id":63331,"name":"Slimeface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63385/","id":63385,"name":"Alexander Lexington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63419/","id":63419,"name":"Hanover Fiste"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63425/","id":63425,"name":"King Billy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63585/","id":63585,"name":"Lapidus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63592/","id":63592,"name":"Lenore Wilkinson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63625/","id":63625,"name":"Leather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63716/","id":63716,"name":"Iggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63775/","id":63775,"name":"David Rice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63795/","id":63795,"name":"Shift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63796/","id":63796,"name":"Stinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63798/","id":63798,"name":"BloodRage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63803/","id":63803,"name":"Chat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63849/","id":63849,"name":"Kyi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63899/","id":63899,"name":"Synaptic Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64055/","id":64055,"name":"Mr. Truck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64274/","id":64274,"name":"Commando X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64337/","id":64337,"name":"Josh Jackham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64418/","id":64418,"name":"Nudge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64419/","id":64419,"name":"Gasman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64420/","id":64420,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64421/","id":64421,"name":"Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64535/","id":64535,"name":"Junkyard Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64565/","id":64565,"name":"Amelia Mintz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64579/","id":64579,"name":"Healer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64748/","id":64748,"name":"Hydro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64811/","id":64811,"name":"Phosphorus Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64878/","id":64878,"name":"Stratos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64882/","id":64882,"name":"Incognito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64885/","id":64885,"name":"Ned Horrocks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64990/","id":64990,"name":"The Rubberband Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64991/","id":64991,"name":"Brat-atat-tat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65000/","id":65000,"name":"Silver Shade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65069/","id":65069,"name":"Charm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65083/","id":65083,"name":"Loss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65187/","id":65187,"name":"Membrain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65194/","id":65194,"name":"Integer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65208/","id":65208,"name":"Aaron Langstrom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65352/","id":65352,"name":"Abelard Snazz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65520/","id":65520,"name":"Byakko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65531/","id":65531,"name":"Headly Foot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65606/","id":65606,"name":"Orator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65688/","id":65688,"name":"Gus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65774/","id":65774,"name":"Psychedelia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66127/","id":66127,"name":"Lavonna Jackson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66181/","id":66181,"name":"Doc Virtual"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66219/","id":66219,"name":"Michael Dorie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66224/","id":66224,"name":"Bengus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66225/","id":66225,"name":"Akiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66248/","id":66248,"name":"Andrew Warner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66718/","id":66718,"name":"Big Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66719/","id":66719,"name":"Dream Crystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66720/","id":66720,"name":"Medusa Moonrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66721/","id":66721,"name":"Triserinak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66722/","id":66722,"name":"Vykin the Black Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66793/","id":66793,"name":"Edouard Laslo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66848/","id":66848,"name":"Condom-man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66897/","id":66897,"name":"Webwitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66991/","id":66991,"name":"Warbuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66992/","id":66992,"name":"Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67013/","id":67013,"name":"Mighty Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67020/","id":67020,"name":"Tom Morrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67052/","id":67052,"name":"Opsidian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67114/","id":67114,"name":"The Judge Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67261/","id":67261,"name":"Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67309/","id":67309,"name":"Campbell Saint-Ange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67349/","id":67349,"name":"Rebecca Raven Lebeau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67380/","id":67380,"name":"Samuel Sullivan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67398/","id":67398,"name":"Ari Batchelder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67463/","id":67463,"name":"Cynder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67519/","id":67519,"name":"Marilyn Bronson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67605/","id":67605,"name":"Gagambino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67718/","id":67718,"name":"Malcolm Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67811/","id":67811,"name":"Scylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67870/","id":67870,"name":"D-Struct"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67888/","id":67888,"name":"Issa Koblev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67924/","id":67924,"name":"Diesel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67953/","id":67953,"name":"Cheyenne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67958/","id":67958,"name":"Gary Concord the Ultra-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67995/","id":67995,"name":"Amazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68042/","id":68042,"name":"Sparky Watts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68060/","id":68060,"name":"Chimichanga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68068/","id":68068,"name":"Reprise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68091/","id":68091,"name":"Babe Boone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68144/","id":68144,"name":"The Pill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68266/","id":68266,"name":"Chicago Bull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68269/","id":68269,"name":"Slab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68331/","id":68331,"name":"Heine Rammsteiner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68335/","id":68335,"name":"Giovanni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68337/","id":68337,"name":"Nill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68343/","id":68343,"name":"Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68344/","id":68344,"name":"Luki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68345/","id":68345,"name":"Noki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68346/","id":68346,"name":"Lily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68347/","id":68347,"name":"Granny Liza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68368/","id":68368,"name":"Campanella Frühling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68443/","id":68443,"name":"Scour"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68446/","id":68446,"name":"Scylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68503/","id":68503,"name":"Firebolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68524/","id":68524,"name":"Lethal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68525/","id":68525,"name":"Sharona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68560/","id":68560,"name":"Wallestein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68729/","id":68729,"name":"Lydia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68746/","id":68746,"name":"Bulletproof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68747/","id":68747,"name":"Scar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68748/","id":68748,"name":"Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68749/","id":68749,"name":"Transit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68750/","id":68750,"name":"Slag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68751/","id":68751,"name":"Headmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68753/","id":68753,"name":"Catholic Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68755/","id":68755,"name":"Joyride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68770/","id":68770,"name":"Arnold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68801/","id":68801,"name":"Ramjet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68902/","id":68902,"name":"Silver Star"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68905/","id":68905,"name":"Darius Drumm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68920/","id":68920,"name":"Norma Richmond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68924/","id":68924,"name":"Babalon Mandrill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68941/","id":68941,"name":"Aurik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68943/","id":68943,"name":"Seera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68944/","id":68944,"name":"Dijit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68945/","id":68945,"name":"The Kreech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68960/","id":68960,"name":"Eli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69059/","id":69059,"name":"Jimmy Hudson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69112/","id":69112,"name":"Little Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69113/","id":69113,"name":"Zach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69174/","id":69174,"name":"Remy McKenzie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69187/","id":69187,"name":"Getaway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69188/","id":69188,"name":"Los Hermanos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69191/","id":69191,"name":"Gill Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69242/","id":69242,"name":"Bobby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69337/","id":69337,"name":"Weasel Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69341/","id":69341,"name":"Nerd Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69342/","id":69342,"name":"Anubis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69348/","id":69348,"name":"Ace of Diamonds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69352/","id":69352,"name":"Moray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69410/","id":69410,"name":"Shalimar Fox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69411/","id":69411,"name":"Jesse Kilmartin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69412/","id":69412,"name":"Brennan Mulwray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69413/","id":69413,"name":"Emma DeLauro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69420/","id":69420,"name":"Mary Beck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69423/","id":69423,"name":"Panther Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69429/","id":69429,"name":"General Meltdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69434/","id":69434,"name":"Mudslide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69435/","id":69435,"name":"Dust-Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69542/","id":69542,"name":"Future Leonardo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69576/","id":69576,"name":"Doctor Skuba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69587/","id":69587,"name":"Summers-Frost Twins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69594/","id":69594,"name":"Alex Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69624/","id":69624,"name":"Future Michaelangelo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69718/","id":69718,"name":"Doctor Calomar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69737/","id":69737,"name":"Batman Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69855/","id":69855,"name":"Richard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69894/","id":69894,"name":"Barjo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69895/","id":69895,"name":"Mugaluna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69896/","id":69896,"name":"Mu-Tant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69942/","id":69942,"name":"Dixie Dexter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69953/","id":69953,"name":"Trioculus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69982/","id":69982,"name":"Wallace Sage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70030/","id":70030,"name":"Warren Worthington IV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70085/","id":70085,"name":"Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70143/","id":70143,"name":"Scratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70155/","id":70155,"name":"Bloodsucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70250/","id":70250,"name":"Jeffers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70292/","id":70292,"name":"Snake Eyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70354/","id":70354,"name":"Lord Ghast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70359/","id":70359,"name":"Scattermane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70388/","id":70388,"name":"Ned Campbell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70391/","id":70391,"name":"Doctor Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70486/","id":70486,"name":"Kristin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70487/","id":70487,"name":"Sarin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70501/","id":70501,"name":"Victor Hudson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70580/","id":70580,"name":"Nocturno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70581/","id":70581,"name":"Nevermore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70586/","id":70586,"name":"Nessie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70594/","id":70594,"name":"Jonah Reeves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70616/","id":70616,"name":"Lafitte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70677/","id":70677,"name":"Zyklon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70696/","id":70696,"name":"Specimen-13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70782/","id":70782,"name":"Edna Tilby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70794/","id":70794,"name":"War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70796/","id":70796,"name":"Gwendolyne Matsura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70798/","id":70798,"name":"Hamza Mansour Al-Rashad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70808/","id":70808,"name":"Anya Rasputin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70809/","id":70809,"name":"Marti Rasputin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70811/","id":70811,"name":"Ariana McKenzie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70812/","id":70812,"name":"Colony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70815/","id":70815,"name":"Erin McKenzie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70818/","id":70818,"name":"Johnny McKenzie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70820/","id":70820,"name":"Legion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70821/","id":70821,"name":"Purge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70824/","id":70824,"name":"Sandstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70825/","id":70825,"name":"Shadowclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70827/","id":70827,"name":"Wolftrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70829/","id":70829,"name":"Cerise Wagner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70830/","id":70830,"name":"Ciaran McCoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70831/","id":70831,"name":"Doug Pryde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70832/","id":70832,"name":"Francesca McCoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70833/","id":70833,"name":"Meredith Pryde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70834/","id":70834,"name":"Miguel McCoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70835/","id":70835,"name":"Sarah Pryde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70836/","id":70836,"name":"Thomas Guthrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70837/","id":70837,"name":"TJ Wagner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70845/","id":70845,"name":"Orora Munroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70861/","id":70861,"name":"Shiftor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70862/","id":70862,"name":"Boojum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70980/","id":70980,"name":"Nina Cheney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71015/","id":71015,"name":"Damper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71016/","id":71016,"name":"Bonita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71017/","id":71017,"name":"Esteban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71018/","id":71018,"name":"Probe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71019/","id":71019,"name":"Thumper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71020/","id":71020,"name":"Piñata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71022/","id":71022,"name":"Barbara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71063/","id":71063,"name":"Cal Cutta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71064/","id":71064,"name":"Dreena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71092/","id":71092,"name":"Bedbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71107/","id":71107,"name":"Battling Bernice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71108/","id":71108,"name":"Zippy Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71157/","id":71157,"name":"Azari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71201/","id":71201,"name":"Crackshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71202/","id":71202,"name":"Slick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71203/","id":71203,"name":"Burnout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71207/","id":71207,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71208/","id":71208,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71213/","id":71213,"name":"Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71216/","id":71216,"name":"Illyana Rasputin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71287/","id":71287,"name":"Jono Hex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71288/","id":71288,"name":"White Whip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71292/","id":71292,"name":"Aurora Trigger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71293/","id":71293,"name":"Northstar Trigger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71296/","id":71296,"name":"Retribution"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71297/","id":71297,"name":"Skinhunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71298/","id":71298,"name":"Johnny Random"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71299/","id":71299,"name":"Madame Banshee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71364/","id":71364,"name":"The Persian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71386/","id":71386,"name":"Prosimian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71396/","id":71396,"name":"Raptarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71397/","id":71397,"name":"Swamp Thang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71405/","id":71405,"name":"Hot Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71406/","id":71406,"name":"Stretchmark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71407/","id":71407,"name":"Nuggets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71408/","id":71408,"name":"See-Through"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71459/","id":71459,"name":"One Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71475/","id":71475,"name":"Orb Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71493/","id":71493,"name":"Spinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71500/","id":71500,"name":"Samurai Chote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71636/","id":71636,"name":"Derek Morgan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71718/","id":71718,"name":"Smoke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71743/","id":71743,"name":"Mr. Braunze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71771/","id":71771,"name":"Tempest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71868/","id":71868,"name":"Wytch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71869/","id":71869,"name":"Rainsaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71873/","id":71873,"name":"Funyl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71874/","id":71874,"name":"Dr. Nemo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71875/","id":71875,"name":"Split"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71879/","id":71879,"name":"Larry Hawkins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71880/","id":71880,"name":"Sadie Hawkins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71884/","id":71884,"name":"Snakefinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71885/","id":71885,"name":"Trapshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71928/","id":71928,"name":"Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71965/","id":71965,"name":"Archibald Scythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71966/","id":71966,"name":"Joe Yimbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72024/","id":72024,"name":"Mr. Mole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72025/","id":72025,"name":"Hob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72046/","id":72046,"name":"Ratar-O"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72055/","id":72055,"name":"American Eagle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72090/","id":72090,"name":"Battering Ram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72106/","id":72106,"name":"Captain Squid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72123/","id":72123,"name":"Amp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72169/","id":72169,"name":"Spitfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72185/","id":72185,"name":"Dorsal Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72242/","id":72242,"name":"Dana Moonstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72275/","id":72275,"name":"Bumbleboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72307/","id":72307,"name":"Scratchmen Apoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72324/","id":72324,"name":"Kuroobi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72325/","id":72325,"name":"Kaneshiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72363/","id":72363,"name":"Talogan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72401/","id":72401,"name":"Night Harpy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72443/","id":72443,"name":"Klyness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72451/","id":72451,"name":"Man-Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72484/","id":72484,"name":"Transonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72541/","id":72541,"name":"Suzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72545/","id":72545,"name":"Franklin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72547/","id":72547,"name":"Cristina Kyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72549/","id":72549,"name":"Alfred Cranston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72558/","id":72558,"name":"Snow Owl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72559/","id":72559,"name":"Signal Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72560/","id":72560,"name":"Pellmell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72561/","id":72561,"name":"Shock Treatment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72565/","id":72565,"name":"Spiral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72567/","id":72567,"name":"Corrode"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72579/","id":72579,"name":"Charles Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72580/","id":72580,"name":"Jeannette Summers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72634/","id":72634,"name":"Namora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72656/","id":72656,"name":"Pestilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72663/","id":72663,"name":"Captain America-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72700/","id":72700,"name":"Jura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72701/","id":72701,"name":"Luc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72702/","id":72702,"name":"Markita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72703/","id":72703,"name":"Ralf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72704/","id":72704,"name":"Sasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72705/","id":72705,"name":"Tanya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72706/","id":72706,"name":"Vanessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72741/","id":72741,"name":"Velocidad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72818/","id":72818,"name":"Uther"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72827/","id":72827,"name":"Rockslide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72839/","id":72839,"name":"Ultima Powers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72840/","id":72840,"name":"Sovereign Powers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72844/","id":72844,"name":"Polymer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72845/","id":72845,"name":"The Flea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72877/","id":72877,"name":"Aurora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72917/","id":72917,"name":"Poppy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72928/","id":72928,"name":"Huxley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72936/","id":72936,"name":"Mojo Jojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72946/","id":72946,"name":"Goldie Gal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72949/","id":72949,"name":"Drip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72951/","id":72951,"name":"Cold Heart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72964/","id":72964,"name":"Lauren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72967/","id":72967,"name":"84"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72971/","id":72971,"name":"Stormhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73013/","id":73013,"name":"Queen Shrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73022/","id":73022,"name":"Botfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73024/","id":73024,"name":"Rainmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73035/","id":73035,"name":"Embrace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73036/","id":73036,"name":"Mister Liu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73037/","id":73037,"name":"Set"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73085/","id":73085,"name":"Sherry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73103/","id":73103,"name":"Jackie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73104/","id":73104,"name":"Bruce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73105/","id":73105,"name":"Chuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73106/","id":73106,"name":"Clint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73115/","id":73115,"name":"Charles Brigman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73118/","id":73118,"name":"Dennis Hogan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73175/","id":73175,"name":"Cannon Foot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73179/","id":73179,"name":"Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73182/","id":73182,"name":"Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73216/","id":73216,"name":"Wolverine Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73262/","id":73262,"name":"Generic Insecticon Swarm Member"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73384/","id":73384,"name":"Tarantula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73388/","id":73388,"name":"Oya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73481/","id":73481,"name":"Manmoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73605/","id":73605,"name":"Jun-Gal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73611/","id":73611,"name":"Bombshell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73632/","id":73632,"name":"Fusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73699/","id":73699,"name":"Pirouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73700/","id":73700,"name":"Headcase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73701/","id":73701,"name":"Impact"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73707/","id":73707,"name":"Fleshpot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73708/","id":73708,"name":"Bouncer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73720/","id":73720,"name":"War (Furius)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73770/","id":73770,"name":"Wendy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73781/","id":73781,"name":"Crassus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73783/","id":73783,"name":"Gill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73985/","id":73985,"name":"Mister Midnite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73988/","id":73988,"name":"El Chupacabra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73992/","id":73992,"name":"Keito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74004/","id":74004,"name":"Tarantula Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74035/","id":74035,"name":"Scab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74036/","id":74036,"name":"Fancy Feet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74109/","id":74109,"name":"Koenig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74110/","id":74110,"name":"Yohra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74134/","id":74134,"name":"Toko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74139/","id":74139,"name":"Tarantula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74176/","id":74176,"name":"Primal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74204/","id":74204,"name":"Lori Baumgartner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74328/","id":74328,"name":"Samuel John Fleisig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74389/","id":74389,"name":"Buddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74458/","id":74458,"name":"Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74501/","id":74501,"name":"Black Python"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74510/","id":74510,"name":"Shock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74511/","id":74511,"name":"Bonehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74513/","id":74513,"name":"Luftwaffe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74515/","id":74515,"name":"Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74517/","id":74517,"name":"Shauna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74518/","id":74518,"name":"Telepath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74537/","id":74537,"name":"Scout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74538/","id":74538,"name":"Quake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74539/","id":74539,"name":"Singe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74540/","id":74540,"name":"Kid Quick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74541/","id":74541,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74581/","id":74581,"name":"Spidra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74590/","id":74590,"name":"Death (Javeed)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74591/","id":74591,"name":"Famine (Lee)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74592/","id":74592,"name":"Pestilence (Ichisumi)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74594/","id":74594,"name":"Trista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74595/","id":74595,"name":"Alex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74596/","id":74596,"name":"Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74623/","id":74623,"name":"Traktir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74843/","id":74843,"name":"Technocrat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74844/","id":74844,"name":"Alpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74845/","id":74845,"name":"Servant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74847/","id":74847,"name":"Steel Rain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74859/","id":74859,"name":"Sahreed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74860/","id":74860,"name":"Scarab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74945/","id":74945,"name":"Funerella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74963/","id":74963,"name":"Cernunnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74964/","id":74964,"name":"Minotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74992/","id":74992,"name":"Maw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74993/","id":74993,"name":"Russell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74996/","id":74996,"name":"Timothy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75024/","id":75024,"name":"Cell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75043/","id":75043,"name":"Trader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75047/","id":75047,"name":"Caiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75048/","id":75048,"name":"Glamour"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75049/","id":75049,"name":"Lightning Rod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75050/","id":75050,"name":"Toad-In-Waiting"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75081/","id":75081,"name":"Loca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75125/","id":75125,"name":"Leon Matheson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75263/","id":75263,"name":"Garbage Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75385/","id":75385,"name":"Super-Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75389/","id":75389,"name":"Freelance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75512/","id":75512,"name":"King Lizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75597/","id":75597,"name":"Axe-Grinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75598/","id":75598,"name":"Frank Lamb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75621/","id":75621,"name":"Calibre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75622/","id":75622,"name":"Reata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75623/","id":75623,"name":"Plainsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75624/","id":75624,"name":"Trinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75625/","id":75625,"name":"Burner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75626/","id":75626,"name":"Bomber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75627/","id":75627,"name":"Breaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75631/","id":75631,"name":"Wolf Ferrell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75633/","id":75633,"name":"Cutter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75634/","id":75634,"name":"Blackbelt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75636/","id":75636,"name":"Optics"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75642/","id":75642,"name":"Cassandra Michaels"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75681/","id":75681,"name":"Sweep-Zweak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75723/","id":75723,"name":"Rhapsody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75724/","id":75724,"name":"Vapor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75738/","id":75738,"name":"Boyd Mack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75767/","id":75767,"name":"Microwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75768/","id":75768,"name":"Lethargy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75769/","id":75769,"name":"Eagle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75770/","id":75770,"name":"Elmore Meyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75783/","id":75783,"name":"PSmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75811/","id":75811,"name":"Anvil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75812/","id":75812,"name":"Aurora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75813/","id":75813,"name":"Crystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75814/","id":75814,"name":"Droom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75815/","id":75815,"name":"Silver Shield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75881/","id":75881,"name":"Kessler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75893/","id":75893,"name":"Eyrth Mover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75897/","id":75897,"name":"Doctor Keats"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75947/","id":75947,"name":"Counterstrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75948/","id":75948,"name":"Scream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75953/","id":75953,"name":"Sawtooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75960/","id":75960,"name":"Paper Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76033/","id":76033,"name":"The Vulture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76098/","id":76098,"name":"Jenny Monroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76100/","id":76100,"name":"Malcolm Monroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76118/","id":76118,"name":"Bugeye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76170/","id":76170,"name":"Ryan Kendall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76197/","id":76197,"name":"The Cobra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76226/","id":76226,"name":"The Scourge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76228/","id":76228,"name":"Ornitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76269/","id":76269,"name":"Green Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76354/","id":76354,"name":"Marto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76357/","id":76357,"name":"The Lynx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76399/","id":76399,"name":"Mantis-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76431/","id":76431,"name":"The Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76592/","id":76592,"name":"Ill Billy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76659/","id":76659,"name":"Cast Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76660/","id":76660,"name":"Pegasus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76730/","id":76730,"name":"Barracuda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76738/","id":76738,"name":"Slackjaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76835/","id":76835,"name":"Wolverine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77025/","id":77025,"name":"Ronnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77037/","id":77037,"name":"Nathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77038/","id":77038,"name":"Jasmine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77047/","id":77047,"name":"Bethany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77074/","id":77074,"name":"Danny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77075/","id":77075,"name":"Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77098/","id":77098,"name":"Horned Depowered-Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77105/","id":77105,"name":"Paula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77106/","id":77106,"name":"Roc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77107/","id":77107,"name":"Nathan Patrofsky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77123/","id":77123,"name":"Sathanas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77127/","id":77127,"name":"Will Everett Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77153/","id":77153,"name":"Downtime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77172/","id":77172,"name":"David"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77215/","id":77215,"name":"Teddy Allen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77217/","id":77217,"name":"Ignis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77234/","id":77234,"name":"Sandy Tolliver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77240/","id":77240,"name":"Gillian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77292/","id":77292,"name":"Gasbag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77293/","id":77293,"name":"Sizzler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77294/","id":77294,"name":"Slammazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77299/","id":77299,"name":"Pretty Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77327/","id":77327,"name":"Icarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77471/","id":77471,"name":"Ornk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77472/","id":77472,"name":"Kordala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77493/","id":77493,"name":"Blockade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77494/","id":77494,"name":"Blaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77495/","id":77495,"name":"Rhodney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77498/","id":77498,"name":"Sky Panther"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77516/","id":77516,"name":"Musician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77547/","id":77547,"name":"Ida Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77605/","id":77605,"name":"Tumult"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77611/","id":77611,"name":"Rob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77612/","id":77612,"name":"Don"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77672/","id":77672,"name":"Gunshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77696/","id":77696,"name":"Susan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77737/","id":77737,"name":"Element Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77814/","id":77814,"name":"Terra-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77859/","id":77859,"name":"Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77886/","id":77886,"name":"Jump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77945/","id":77945,"name":"Roach Wrangler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78011/","id":78011,"name":"Badger Teeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78180/","id":78180,"name":"Lizard Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78327/","id":78327,"name":"Thunder-Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78330/","id":78330,"name":"Tina Shepard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78438/","id":78438,"name":"Prom Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78510/","id":78510,"name":"Golden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78665/","id":78665,"name":"Cockroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78780/","id":78780,"name":"Nata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78781/","id":78781,"name":"Riek Bukenya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78782/","id":78782,"name":"Seiji Honda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78805/","id":78805,"name":"Duncan Sebast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78808/","id":78808,"name":"Tattoo (Sokuto)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78872/","id":78872,"name":"Mamma Pain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78873/","id":78873,"name":"Telescopic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78912/","id":78912,"name":"Surge Thunderbolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78913/","id":78913,"name":"Photograph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78957/","id":78957,"name":"Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78981/","id":78981,"name":"Mary Campbell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79022/","id":79022,"name":"Alice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79023/","id":79023,"name":"Jimmy Jupiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79035/","id":79035,"name":"Alexandra Gianopoulos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79076/","id":79076,"name":"Riot Grrl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79122/","id":79122,"name":"Grip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79123/","id":79123,"name":"Nuage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79125/","id":79125,"name":"Picaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79126/","id":79126,"name":"Danger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79130/","id":79130,"name":"Suede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79134/","id":79134,"name":"Blue Condor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79146/","id":79146,"name":"Naiad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79155/","id":79155,"name":"Elsewhere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79156/","id":79156,"name":"Updraft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79158/","id":79158,"name":"Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79159/","id":79159,"name":"Skylark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79160/","id":79160,"name":"Boggart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79161/","id":79161,"name":"Hothead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79162/","id":79162,"name":"Pinpoint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79163/","id":79163,"name":"Trovao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79164/","id":79164,"name":"Audio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79165/","id":79165,"name":"Butterfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79166/","id":79166,"name":"Pinocchio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79167/","id":79167,"name":"Umbra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79168/","id":79168,"name":"Hitch-Hiker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79169/","id":79169,"name":"Cryptid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79170/","id":79170,"name":"Protozoa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79171/","id":79171,"name":"Xenon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79172/","id":79172,"name":"Cudgel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79173/","id":79173,"name":"Lipid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79174/","id":79174,"name":"Iolanthe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79175/","id":79175,"name":"Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79194/","id":79194,"name":"Invisible Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79203/","id":79203,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79204/","id":79204,"name":"Cephalopod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79213/","id":79213,"name":"Guvnor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79214/","id":79214,"name":"Amy Stringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79215/","id":79215,"name":"Contact"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79216/","id":79216,"name":"Puppeteer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79217/","id":79217,"name":"Andre Mexer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79231/","id":79231,"name":"Samurai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79238/","id":79238,"name":"Eques"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79260/","id":79260,"name":"Stealth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79261/","id":79261,"name":"Noise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79262/","id":79262,"name":"Zapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79264/","id":79264,"name":"Colin Hardy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79269/","id":79269,"name":"Streetman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79283/","id":79283,"name":"Old Hob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79296/","id":79296,"name":"Flood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79297/","id":79297,"name":"View"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79367/","id":79367,"name":"Flare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79368/","id":79368,"name":"Orb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79369/","id":79369,"name":"Pillar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79371/","id":79371,"name":"Repulse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79372/","id":79372,"name":"Zeeshan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79375/","id":79375,"name":"Jericho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79389/","id":79389,"name":"Avery Connor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79405/","id":79405,"name":"Eric Kleinstock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79406/","id":79406,"name":"Harlan Kleinstock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79407/","id":79407,"name":"Sven Kleinstock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79415/","id":79415,"name":"Doctor Polygon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79439/","id":79439,"name":"Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79440/","id":79440,"name":"Tony Robb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79441/","id":79441,"name":"William Evans, Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79442/","id":79442,"name":"Irving Bank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79443/","id":79443,"name":"Meyer Banciewicz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79447/","id":79447,"name":"Jessie Drake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79488/","id":79488,"name":"Crawler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79489/","id":79489,"name":"Leiko Tan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79491/","id":79491,"name":"Stalwart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79492/","id":79492,"name":"Keratin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79493/","id":79493,"name":"Polymer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79494/","id":79494,"name":"Mentat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79495/","id":79495,"name":"Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79496/","id":79496,"name":"Saurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79497/","id":79497,"name":"Gelatin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79498/","id":79498,"name":"Viskid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79499/","id":79499,"name":"Caput"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79500/","id":79500,"name":"Ruth Durie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79501/","id":79501,"name":"Elanor Sandford"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79502/","id":79502,"name":"Pako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79503/","id":79503,"name":"Crater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79504/","id":79504,"name":"Roger Fieldston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79560/","id":79560,"name":"Mist-Rider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79561/","id":79561,"name":"Moonwalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79696/","id":79696,"name":"Eclipso Twins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79769/","id":79769,"name":"Tasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79771/","id":79771,"name":"Rush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79772/","id":79772,"name":"Vanessa Vasko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79787/","id":79787,"name":"Smoking Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79788/","id":79788,"name":"Blind Lemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79810/","id":79810,"name":"Kate Sawyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79812/","id":79812,"name":"Paco Perez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79832/","id":79832,"name":"Dynamix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79833/","id":79833,"name":"Doppelganger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79834/","id":79834,"name":"Supercharge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79846/","id":79846,"name":"Piranha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79849/","id":79849,"name":"Guillotina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79963/","id":79963,"name":"Liquidator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80239/","id":80239,"name":"Wild Tiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80370/","id":80370,"name":"Carrie Allen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80380/","id":80380,"name":"Sasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80383/","id":80383,"name":"David Warner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80385/","id":80385,"name":"Lucy Kuo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80386/","id":80386,"name":"John White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80423/","id":80423,"name":"Calligrapher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80532/","id":80532,"name":"Charlie Arrows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80533/","id":80533,"name":"River Baldwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80641/","id":80641,"name":"Orson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80689/","id":80689,"name":"Legacy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80708/","id":80708,"name":"Big Top"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80742/","id":80742,"name":"Ekin Tzu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80762/","id":80762,"name":"Coldmoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80763/","id":80763,"name":"Dragonfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80778/","id":80778,"name":"Rico Estevez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80927/","id":80927,"name":"Deacon Brimstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80998/","id":80998,"name":"Thrice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81016/","id":81016,"name":"Modern Nero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81036/","id":81036,"name":"Nathan Beame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81185/","id":81185,"name":"Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81191/","id":81191,"name":"Soteira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81192/","id":81192,"name":"Amanda Fallows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81221/","id":81221,"name":"Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81222/","id":81222,"name":"Tank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81223/","id":81223,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81224/","id":81224,"name":"Saral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81225/","id":81225,"name":"Boomer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81226/","id":81226,"name":"Kane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81227/","id":81227,"name":"Mace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81228/","id":81228,"name":"Razor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81229/","id":81229,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81230/","id":81230,"name":"Rocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81231/","id":81231,"name":"Strife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81251/","id":81251,"name":"Phantom Thief X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81256/","id":81256,"name":"Sicks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81257/","id":81257,"name":"Zenjirō Kasai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81258/","id":81258,"name":"DR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81259/","id":81259,"name":"Genuine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81260/","id":81260,"name":"Tierra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81261/","id":81261,"name":"Vijaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81315/","id":81315,"name":"Dragon-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81391/","id":81391,"name":"Alopex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81445/","id":81445,"name":"Grey Lora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81451/","id":81451,"name":"Spinebender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81538/","id":81538,"name":"Genesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81724/","id":81724,"name":"Carcass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81812/","id":81812,"name":"Boost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81813/","id":81813,"name":"D'Gard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81814/","id":81814,"name":"Tether"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81815/","id":81815,"name":"Preacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81915/","id":81915,"name":"Gork"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81941/","id":81941,"name":"Michael Bright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81983/","id":81983,"name":"Supermutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81984/","id":81984,"name":"Cannonflash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81985/","id":81985,"name":"Icebreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81988/","id":81988,"name":"Redwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81990/","id":81990,"name":"Jean Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81991/","id":81991,"name":"Quick Freeze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82115/","id":82115,"name":"Johnny Quicksilver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82176/","id":82176,"name":"Critter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82288/","id":82288,"name":"Skinless Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82355/","id":82355,"name":"Billy Glum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82376/","id":82376,"name":"Drew Triggert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82404/","id":82404,"name":"Magdalena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82414/","id":82414,"name":"Jonas Keller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82465/","id":82465,"name":"Sheeva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82658/","id":82658,"name":"Creep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82773/","id":82773,"name":"Hiss Weerd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82774/","id":82774,"name":"Cuss Weerd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82775/","id":82775,"name":"Silent Weerd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82839/","id":82839,"name":"Stormhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82845/","id":82845,"name":"Butterfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82914/","id":82914,"name":"Tatiana Maximoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82915/","id":82915,"name":"Tyler Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82926/","id":82926,"name":"Safe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82927/","id":82927,"name":"Wildhalf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82957/","id":82957,"name":"Ratfink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83050/","id":83050,"name":"Boss Bishonen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83201/","id":83201,"name":"Krakoa (Grandchild)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83488/","id":83488,"name":"Vitus Dance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83511/","id":83511,"name":"The Bulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83591/","id":83591,"name":"Rogers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83759/","id":83759,"name":"Ginny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83763/","id":83763,"name":"Kaith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83800/","id":83800,"name":"Konam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83836/","id":83836,"name":"Omega Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83837/","id":83837,"name":"Omega Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83838/","id":83838,"name":"Omega White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83878/","id":83878,"name":"Overtake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83923/","id":83923,"name":"Benjamin Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83943/","id":83943,"name":"Danny Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84021/","id":84021,"name":"Scorpion (Clone)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84175/","id":84175,"name":"Long"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84218/","id":84218,"name":"Kuhrra Daizonest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84614/","id":84614,"name":"Dr. Ichabod Gideon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84627/","id":84627,"name":"Sycamore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84628/","id":84628,"name":"Mant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84629/","id":84629,"name":"Lightning Bug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84631/","id":84631,"name":"Anti-Matter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84635/","id":84635,"name":"Solomon O'Sullivan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84682/","id":84682,"name":"Max Bubba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84767/","id":84767,"name":"Halfshell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84833/","id":84833,"name":"The Jackal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84849/","id":84849,"name":"Back-to-Front Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84872/","id":84872,"name":"Francis Klum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84879/","id":84879,"name":"Teryx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84880/","id":84880,"name":"Steg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84915/","id":84915,"name":"Nanya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84918/","id":84918,"name":"Nikolas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85073/","id":85073,"name":"Joanie Jordan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85083/","id":85083,"name":"Ramon Raymond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85110/","id":85110,"name":"Regenerate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85112/","id":85112,"name":"The Present"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85114/","id":85114,"name":"Mindfull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85118/","id":85118,"name":"Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85120/","id":85120,"name":"Holo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85146/","id":85146,"name":"Erik Wender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85259/","id":85259,"name":"The Bleeding Monk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85272/","id":85272,"name":"Darpan The Mirror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85289/","id":85289,"name":"Hardball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85290/","id":85290,"name":"Dogface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85316/","id":85316,"name":"Rachel Hopson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85318/","id":85318,"name":"Hidden Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85321/","id":85321,"name":"Ingrid Hillcraft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85325/","id":85325,"name":"Ion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85343/","id":85343,"name":"Tedrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85384/","id":85384,"name":"Mach 2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85397/","id":85397,"name":"Zelgadis Greywords"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85534/","id":85534,"name":"Erik Drekken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85710/","id":85710,"name":"Lars Wender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85725/","id":85725,"name":"Elongated Lass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85746/","id":85746,"name":"Halle the Hooters Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85765/","id":85765,"name":"Lemongrab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85775/","id":85775,"name":"The Weird Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85836/","id":85836,"name":"Ilya Koblev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85837/","id":85837,"name":"Ioakim Koblev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85849/","id":85849,"name":"Backhand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85850/","id":85850,"name":"Sinew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85851/","id":85851,"name":"Singularity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85852/","id":85852,"name":"Stare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85854/","id":85854,"name":"Bayonet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85855/","id":85855,"name":"Black Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85859/","id":85859,"name":"Eva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85868/","id":85868,"name":"Virus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85870/","id":85870,"name":"Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85970/","id":85970,"name":"Stone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85974/","id":85974,"name":"Hound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85981/","id":85981,"name":"Luke Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86027/","id":86027,"name":"Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86028/","id":86028,"name":"Jean-Claude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86029/","id":86029,"name":"Arnold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86030/","id":86030,"name":"Lucy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86031/","id":86031,"name":"Steven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86085/","id":86085,"name":"Emily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86296/","id":86296,"name":"Eye Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86297/","id":86297,"name":"Sprite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86424/","id":86424,"name":"Shark-Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86425/","id":86425,"name":"Mudbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86432/","id":86432,"name":"Tempus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86433/","id":86433,"name":"Triage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86435/","id":86435,"name":"Forrest Goldendawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86436/","id":86436,"name":"Leonine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86437/","id":86437,"name":"Meteor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86438/","id":86438,"name":"Scout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86439/","id":86439,"name":"Shadowshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86440/","id":86440,"name":"Tithe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86450/","id":86450,"name":"Susan Hatchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86473/","id":86473,"name":"He"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86555/","id":86555,"name":"Felix Harmon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86567/","id":86567,"name":"Paul Patterson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86808/","id":86808,"name":"Cluster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86831/","id":86831,"name":"Murtoise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86836/","id":86836,"name":"Benjamin Deeds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86839/","id":86839,"name":"Karasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86841/","id":86841,"name":"Sojobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86898/","id":86898,"name":"Abnormal Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86912/","id":86912,"name":"Iron Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86942/","id":86942,"name":"Alpha-152"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86996/","id":86996,"name":"Nephilim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87022/","id":87022,"name":"Sublime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87104/","id":87104,"name":"Weapon XIII"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87108/","id":87108,"name":"Esmerelda Lobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87180/","id":87180,"name":"Double-Paige"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87213/","id":87213,"name":"Tin Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87214/","id":87214,"name":"Yellow Jacket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87274/","id":87274,"name":"Alistair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87282/","id":87282,"name":"Johnny Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87318/","id":87318,"name":"Anthony Miller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87326/","id":87326,"name":"Luca Aldine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87333/","id":87333,"name":"Peter Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87334/","id":87334,"name":"Natalie Turner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87567/","id":87567,"name":"Greg Arkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87570/","id":87570,"name":"Jodi Melville"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87574/","id":87574,"name":"Kanami Yuta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87640/","id":87640,"name":"Egg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87795/","id":87795,"name":"Rapture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87796/","id":87796,"name":"Thunderpunch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87830/","id":87830,"name":"Fangfeng"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87913/","id":87913,"name":"Krakken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87990/","id":87990,"name":"Peppermint Butler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87998/","id":87998,"name":"Stag Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88000/","id":88000,"name":"Lady Lemongrab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88001/","id":88001,"name":"Princess Chewypaste"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88006/","id":88006,"name":"Hot Dog Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88105/","id":88105,"name":"Talyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88106/","id":88106,"name":"Ironside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88107/","id":88107,"name":"Swift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88152/","id":88152,"name":"Billy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88159/","id":88159,"name":"Talia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88208/","id":88208,"name":"Danica Williams"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88224/","id":88224,"name":"Uriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88225/","id":88225,"name":"Eimin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88244/","id":88244,"name":"Tomas Blood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88245/","id":88245,"name":"Lars Blood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88335/","id":88335,"name":"Big Pan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88437/","id":88437,"name":"Amber Twelve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88479/","id":88479,"name":"Griffon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88480/","id":88480,"name":"Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88654/","id":88654,"name":"Hack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88737/","id":88737,"name":"Sumatran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88738/","id":88738,"name":"Saluki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88739/","id":88739,"name":"Kathleen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88744/","id":88744,"name":"Hard-Drive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88746/","id":88746,"name":"Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88953/","id":88953,"name":"Openface Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89089/","id":89089,"name":"Queen Otohime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89092/","id":89092,"name":"Shirahoshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89093/","id":89093,"name":"Hody Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89094/","id":89094,"name":"King Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89106/","id":89106,"name":"Camie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89115/","id":89115,"name":"Choo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89127/","id":89127,"name":"Daruma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89130/","id":89130,"name":"Den"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89139/","id":89139,"name":"Dorry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89140/","id":89140,"name":"Dosun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89148/","id":89148,"name":"Fillonce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89149/","id":89149,"name":"Fisher Tiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89152/","id":89152,"name":"Fukaboshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89183/","id":89183,"name":"Gyaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89186/","id":89186,"name":"Hammond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89189/","id":89189,"name":"Harisenbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89196/","id":89196,"name":"Hildon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89197/","id":89197,"name":"Hiramera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89203/","id":89203,"name":"Hyouzou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89206/","id":89206,"name":"Ikaros Much"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89221/","id":89221,"name":"Ishilly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89224/","id":89224,"name":"Jaguar D. Saul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89231/","id":89231,"name":"Kairen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89233/","id":89233,"name":"Capote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89235/","id":89235,"name":"Kasagoba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89236/","id":89236,"name":"Kashii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89253/","id":89253,"name":"Kokoro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89265/","id":89265,"name":"Lulis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89266/","id":89266,"name":"Macro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89270/","id":89270,"name":"Mamboshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89273/","id":89273,"name":"Maria Napole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89278/","id":89278,"name":"Ichika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89279/","id":89279,"name":"Nika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89280/","id":89280,"name":"Sanka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89281/","id":89281,"name":"Yonka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89282/","id":89282,"name":"Yonka 2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89284/","id":89284,"name":"Mero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89287/","id":89287,"name":"Minister of the Left"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89288/","id":89288,"name":"Minister of the Right"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89297/","id":89297,"name":"Minokoala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89298/","id":89298,"name":"Minorhinoceros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89299/","id":89299,"name":"Minotaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89300/","id":89300,"name":"Minozebra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89317/","id":89317,"name":"Namule"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89330/","id":89330,"name":"Little Oars Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89331/","id":89331,"name":"Octopako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89333/","id":89333,"name":"Oimo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89336/","id":89336,"name":"Pappagu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89360/","id":89360,"name":"Pekoms"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89397/","id":89397,"name":"Ryuboshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89457/","id":89457,"name":"Tansui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89463/","id":89463,"name":"Tom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89468/","id":89468,"name":"Vander Decken IX"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89472/","id":89472,"name":"Lacroix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89473/","id":89473,"name":"Lonz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89478/","id":89478,"name":"Wadatsumi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89497/","id":89497,"name":"Zeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89502/","id":89502,"name":"John Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89579/","id":89579,"name":"The Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89584/","id":89584,"name":"Patricia Hamilton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89587/","id":89587,"name":"Toad Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89589/","id":89589,"name":"Arturo Falcone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89590/","id":89590,"name":"Manfred Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89591/","id":89591,"name":"Sylvie Lauziere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89592/","id":89592,"name":"Chamayra Ortega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89593/","id":89593,"name":"Esteban Ortega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89596/","id":89596,"name":"Zippermouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89602/","id":89602,"name":"Nemesio Petri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89603/","id":89603,"name":"Melek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89604/","id":89604,"name":"Billy Bates"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89605/","id":89605,"name":"Triporter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89606/","id":89606,"name":"Jacob Gunterson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89607/","id":89607,"name":"Machine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89830/","id":89830,"name":"Inazuman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89852/","id":89852,"name":"Carmen Drake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90079/","id":90079,"name":"Infestation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90097/","id":90097,"name":"Spiral Harley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90107/","id":90107,"name":"Shen Xorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90112/","id":90112,"name":"Martel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90207/","id":90207,"name":"Mikoto Misaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90208/","id":90208,"name":"Shirai Kuroko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90331/","id":90331,"name":"Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90332/","id":90332,"name":"Cub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90333/","id":90333,"name":"Flapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90334/","id":90334,"name":"Gancho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90335/","id":90335,"name":"Wicka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90468/","id":90468,"name":"Snot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90512/","id":90512,"name":"H.I.V.E. Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90575/","id":90575,"name":"Jerome Guizbatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90605/","id":90605,"name":"Lil' Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90664/","id":90664,"name":"Hans the Perfect Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90758/","id":90758,"name":"Hijack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91033/","id":91033,"name":"Little Meg the Witch Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91050/","id":91050,"name":"Tammy Blake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91051/","id":91051,"name":"Sheila Blake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91419/","id":91419,"name":"Milo Gunderson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91440/","id":91440,"name":"Zilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91477/","id":91477,"name":"Port"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91486/","id":91486,"name":"Flair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91592/","id":91592,"name":"Gramma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91593/","id":91593,"name":"Mancherie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91792/","id":91792,"name":"Discordia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91793/","id":91793,"name":"Tantrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91831/","id":91831,"name":"Doctor Nitro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91945/","id":91945,"name":"Bian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91991/","id":91991,"name":"Gezora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92086/","id":92086,"name":"Mowgli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92182/","id":92182,"name":"Animax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92186/","id":92186,"name":"Radial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92187/","id":92187,"name":"Depresso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92188/","id":92188,"name":"Leafmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92189/","id":92189,"name":"Sneezing Louise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92357/","id":92357,"name":"Lucius Farnsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92358/","id":92358,"name":"Vincent Farnsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92386/","id":92386,"name":"Bull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92397/","id":92397,"name":"Kim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92491/","id":92491,"name":"Sally Fortune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92561/","id":92561,"name":"Doc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92633/","id":92633,"name":"Santi Sardina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92634/","id":92634,"name":"The Sixth Light"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92733/","id":92733,"name":"Mad Gobi Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92734/","id":92734,"name":"The Thinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92739/","id":92739,"name":"The Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92740/","id":92740,"name":"The Fiend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92760/","id":92760,"name":"Coco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92761/","id":92761,"name":"Sunny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92762/","id":92762,"name":"Zebra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92798/","id":92798,"name":"Cinu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92884/","id":92884,"name":"Stan Munson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92909/","id":92909,"name":"Zobbo the Man Ape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92925/","id":92925,"name":"Krunk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93013/","id":93013,"name":"Kymera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93059/","id":93059,"name":"Melody Maxwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93075/","id":93075,"name":"Park"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93095/","id":93095,"name":"Erik Johnson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93123/","id":93123,"name":"Raze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93151/","id":93151,"name":"Kuroageha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93228/","id":93228,"name":"Varan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93297/","id":93297,"name":"Keynes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93477/","id":93477,"name":"Boss Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93606/","id":93606,"name":"Dogpound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93832/","id":93832,"name":"Xavier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93893/","id":93893,"name":"Ginny Guzman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93894/","id":93894,"name":"Cronus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93895/","id":93895,"name":"Telic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93896/","id":93896,"name":"Traveler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93897/","id":93897,"name":"Hive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93899/","id":93899,"name":"Little Castle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93900/","id":93900,"name":"Astral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93901/","id":93901,"name":"Atomus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93902/","id":93902,"name":"Serenade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93903/","id":93903,"name":"Ramsey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93904/","id":93904,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93948/","id":93948,"name":"Gaira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94266/","id":94266,"name":"Mental Mouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94316/","id":94316,"name":"Mutagen Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94477/","id":94477,"name":"Kouen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94579/","id":94579,"name":"Krystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94709/","id":94709,"name":"Fishface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94838/","id":94838,"name":"Vollemur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94901/","id":94901,"name":"Flukeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95466/","id":95466,"name":"'Orrible Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95475/","id":95475,"name":"Oddball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95549/","id":95549,"name":"Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95623/","id":95623,"name":"Amp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95878/","id":95878,"name":"Mane-iac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96276/","id":96276,"name":"Arson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96292/","id":96292,"name":"Clayface (Williams)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96340/","id":96340,"name":"Goliath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96353/","id":96353,"name":"Rampo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96391/","id":96391,"name":"Snakeweed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96833/","id":96833,"name":"Doctor Musclebump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96834/","id":96834,"name":"Farmer Diablo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96835/","id":96835,"name":"Painting King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96836/","id":96836,"name":"Princess Painting"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96925/","id":96925,"name":"Sharpshooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96926/","id":96926,"name":"Big Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96927/","id":96927,"name":"Chernobyl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96928/","id":96928,"name":"Coldwar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96977/","id":96977,"name":"Homunculus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97003/","id":97003,"name":"Shepherd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97074/","id":97074,"name":"Darla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97482/","id":97482,"name":"Nate Xavier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97977/","id":97977,"name":"Koya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98102/","id":98102,"name":"Unagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98104/","id":98104,"name":"Delphi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98451/","id":98451,"name":"Siege"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98591/","id":98591,"name":"Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98644/","id":98644,"name":"Monkey Brains"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98652/","id":98652,"name":"Velvet Fist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98658/","id":98658,"name":"Rocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98660/","id":98660,"name":"Blast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98849/","id":98849,"name":"T'Mark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98970/","id":98970,"name":"Sharon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99087/","id":99087,"name":"MeMe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99088/","id":99088,"name":"Nature Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99353/","id":99353,"name":"Volga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99388/","id":99388,"name":"Scalpel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99510/","id":99510,"name":"Cloud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99511/","id":99511,"name":"Headspace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99513/","id":99513,"name":"James Zygos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99514/","id":99514,"name":"Katherine Zygos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99515/","id":99515,"name":"Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99516/","id":99516,"name":"Saturn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99521/","id":99521,"name":"Graham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99522/","id":99522,"name":"Maggie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99535/","id":99535,"name":"Howl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99536/","id":99536,"name":"Eliphas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99985/","id":99985,"name":"Clara Creed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100130/","id":100130,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100340/","id":100340,"name":"Nur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100777/","id":100777,"name":"Duke Thomas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100945/","id":100945,"name":"Ruiko Saten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100946/","id":100946,"name":"Kazari Uiharu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101188/","id":101188,"name":"Spider Bytez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101423/","id":101423,"name":"Pete"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101680/","id":101680,"name":"Mallorie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101681/","id":101681,"name":"Minette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101698/","id":101698,"name":"Miki Saegusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101759/","id":101759,"name":"Saul Creed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101777/","id":101777,"name":"Decay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101901/","id":101901,"name":"Forget Me Not"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102919/","id":102919,"name":"Lori Winston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103233/","id":103233,"name":"Radiance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103243/","id":103243,"name":"Creeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103568/","id":103568,"name":"Memento Mori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103583/","id":103583,"name":"Gummi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103585/","id":103585,"name":"Feuer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103642/","id":103642,"name":"Marcus Tsung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104139/","id":104139,"name":"Great Red Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104419/","id":104419,"name":"Antjie Qoboza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104471/","id":104471,"name":"Taser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104473/","id":104473,"name":"Psych"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104474/","id":104474,"name":"Fangg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104475/","id":104475,"name":"Landslide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104476/","id":104476,"name":"Kritter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104568/","id":104568,"name":"7781"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105062/","id":105062,"name":"Baby Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105092/","id":105092,"name":"Ellie Camacho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105239/","id":105239,"name":"Lorelei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105240/","id":105240,"name":"Erin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105242/","id":105242,"name":"Angela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105243/","id":105243,"name":"Vikki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105244/","id":105244,"name":"Belushi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105348/","id":105348,"name":"Julius Dupree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105481/","id":105481,"name":"Hybrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105589/","id":105589,"name":"Marisol Guerra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105737/","id":105737,"name":"Toxzon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105783/","id":105783,"name":"Scorpion Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105785/","id":105785,"name":"Caerula Sanguis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105843/","id":105843,"name":"Faithful John"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105875/","id":105875,"name":"Katinya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105952/","id":105952,"name":"Matthew Malloy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106177/","id":106177,"name":"Scorpia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106332/","id":106332,"name":"Inner Sea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106397/","id":106397,"name":"Lily Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106519/","id":106519,"name":"Bludgeon "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106585/","id":106585,"name":"Law"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106634/","id":106634,"name":"Maggie Matheson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107098/","id":107098,"name":"Sidewinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107483/","id":107483,"name":"Vasty Moses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107711/","id":107711,"name":"Ziggy Karst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107814/","id":107814,"name":"Raptore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108011/","id":108011,"name":"Tyrone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108012/","id":108012,"name":"Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108161/","id":108161,"name":"Herman the Hermit Crab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108447/","id":108447,"name":"Josiah Guthrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108531/","id":108531,"name":"Craymok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108764/","id":108764,"name":"Ice Cream Kitty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108969/","id":108969,"name":"Jason Stryker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108973/","id":108973,"name":"Dr. Inside-Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109146/","id":109146,"name":"Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109181/","id":109181,"name":"Redwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109563/","id":109563,"name":"Termina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109921/","id":109921,"name":"Ajna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110247/","id":110247,"name":"Zaragira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110430/","id":110430,"name":"Vibe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110431/","id":110431,"name":"Enertia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110443/","id":110443,"name":"Dilemma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110444/","id":110444,"name":"Michael Monday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110450/","id":110450,"name":"Bedbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110511/","id":110511,"name":"Blue Meanie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110666/","id":110666,"name":"Tiger Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110818/","id":110818,"name":"Overload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110992/","id":110992,"name":"Danny Warburton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110993/","id":110993,"name":"Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111068/","id":111068,"name":"Ripvoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111509/","id":111509,"name":"Man-Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111636/","id":111636,"name":"Katie Ka-Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112128/","id":112128,"name":"Dray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112362/","id":112362,"name":"Astonishing Moth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112416/","id":112416,"name":"Cocheta Drisden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112465/","id":112465,"name":"Pizza Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112512/","id":112512,"name":"Roku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112786/","id":112786,"name":"Adolf Reinhard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112787/","id":112787,"name":"Marcos Eringrad Garcia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112788/","id":112788,"name":"Alex K. Stewart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112789/","id":112789,"name":"Liu Yiwu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112791/","id":112791,"name":"Keiji Onizuka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113687/","id":113687,"name":"Green Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113688/","id":113688,"name":"Scatter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114791/","id":114791,"name":"Anita King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114792/","id":114792,"name":"Maggie Mui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114793/","id":114793,"name":"Michelle Cheung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115238/","id":115238,"name":"Mutate 01"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115381/","id":115381,"name":"Aquaman (Earth-D)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115497/","id":115497,"name":"Carmen Cruise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115534/","id":115534,"name":"Liona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115535/","id":115535,"name":"Troya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115541/","id":115541,"name":"Raygor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115557/","id":115557,"name":"Kaliber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115558/","id":115558,"name":"Metamorpheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116119/","id":116119,"name":"Orchid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116162/","id":116162,"name":"John Dee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116383/","id":116383,"name":"Rochelle the Teen Cockroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116685/","id":116685,"name":"Aquaflash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117214/","id":117214,"name":"Sally Pride "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117231/","id":117231,"name":"Springheeled Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117233/","id":117233,"name":"La Muerte en Vida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117243/","id":117243,"name":"Mr. Mortis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117585/","id":117585,"name":"The Nightmare Brigade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117640/","id":117640,"name":"Bo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117642/","id":117642,"name":"Amy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117653/","id":117653,"name":"Stalagmite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117918/","id":117918,"name":"Aquawoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118166/","id":118166,"name":"Renzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118167/","id":118167,"name":"Steve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118722/","id":118722,"name":"Bulletproof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118840/","id":118840,"name":"Christina Pryde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118841/","id":118841,"name":"Cameron Howlett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119289/","id":119289,"name":"Lamprey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119422/","id":119422,"name":"Megamorpho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119757/","id":119757,"name":"Mr. Reiss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119832/","id":119832,"name":"Mina Ashido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119836/","id":119836,"name":"Kouji Kouda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119959/","id":119959,"name":"Adrian Castorp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120704/","id":120704,"name":"Shadowblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120916/","id":120916,"name":"Father Earth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121389/","id":121389,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121395/","id":121395,"name":"Frank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121396/","id":121396,"name":"Don"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121401/","id":121401,"name":"Doppler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121403/","id":121403,"name":"Jim Macauley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121414/","id":121414,"name":"Asura Rhino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121610/","id":121610,"name":"Erich Paine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121622/","id":121622,"name":"Dale Evans McGillicutty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121825/","id":121825,"name":"Sydney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121937/","id":121937,"name":"Kara Bohusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121938/","id":121938,"name":"Axel Bohusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121997/","id":121997,"name":"Billy Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122309/","id":122309,"name":"Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122310/","id":122310,"name":"Mirror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122311/","id":122311,"name":"Ether"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122312/","id":122312,"name":"Anchor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122313/","id":122313,"name":"The Captain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122454/","id":122454,"name":"Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122727/","id":122727,"name":"General Armz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122794/","id":122794,"name":"Eugene Tooms"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123247/","id":123247,"name":"Fabius Bile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123660/","id":123660,"name":"Napoleon Bonafrog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123679/","id":123679,"name":"Culebra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124346/","id":124346,"name":"Aries"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124347/","id":124347,"name":"Azimuth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124348/","id":124348,"name":"Coda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124349/","id":124349,"name":"Sapna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124525/","id":124525,"name":"Scout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124599/","id":124599,"name":"Thirst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124925/","id":124925,"name":"Warg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125054/","id":125054,"name":"Gwenpool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125069/","id":125069,"name":"Jennika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125164/","id":125164,"name":"Adam Harrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125206/","id":125206,"name":"Dr. Crab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125503/","id":125503,"name":"Bailey Hoskins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126186/","id":126186,"name":"Jack the Drought"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126217/","id":126217,"name":"Shea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126218/","id":126218,"name":"Gala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126288/","id":126288,"name":"Juice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126289/","id":126289,"name":"Pillar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126290/","id":126290,"name":"Uppercut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126291/","id":126291,"name":"Tarpit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126292/","id":126292,"name":"Sebastian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127181/","id":127181,"name":"Skitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127182/","id":127182,"name":"Stringfellow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127885/","id":127885,"name":"Waxworker "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129312/","id":129312,"name":"Marcus Arlington III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129546/","id":129546,"name":"Nightmary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129568/","id":129568,"name":"X-Tinctor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129577/","id":129577,"name":"Gross Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129581/","id":129581,"name":"Blow Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129736/","id":129736,"name":"Kit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129822/","id":129822,"name":"Kimahri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129914/","id":129914,"name":"Baron Hydro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130070/","id":130070,"name":"Muscular"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130075/","id":130075,"name":"Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130699/","id":130699,"name":"Muckman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130700/","id":130700,"name":"Joe Eyeball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130818/","id":130818,"name":"Angleron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130819/","id":130819,"name":"Soakorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130821/","id":130821,"name":"Spite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130827/","id":130827,"name":"Dragonfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130905/","id":130905,"name":"Julie Harrison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131270/","id":131270,"name":"Sir Malachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131367/","id":131367,"name":"The Host"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131608/","id":131608,"name":"Raikou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131652/","id":131652,"name":"Rochelle Planeta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131890/","id":131890,"name":"Zoomax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131926/","id":131926,"name":"Breaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131949/","id":131949,"name":"Ernest Scope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131950/","id":131950,"name":"Craig Farnsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131951/","id":131951,"name":"Gene Bitner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131952/","id":131952,"name":"Simon Lestron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131953/","id":131953,"name":"Lucy Robinson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131954/","id":131954,"name":"Gracie Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131955/","id":131955,"name":"Tobias Messenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132733/","id":132733,"name":"Spinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132858/","id":132858,"name":"Gibachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132916/","id":132916,"name":"The Drip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133154/","id":133154,"name":"Tankograd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133155/","id":133155,"name":"Cosmonut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133205/","id":133205,"name":"Torikabuto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133464/","id":133464,"name":"Tunguska"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133512/","id":133512,"name":"Silent Monk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133613/","id":133613,"name":"Elder Centipede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133617/","id":133617,"name":"Vaccine Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133661/","id":133661,"name":"Eyesight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133663/","id":133663,"name":"Beast King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133664/","id":133664,"name":"Armored Gorilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133665/","id":133665,"name":"Marugori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133666/","id":133666,"name":"Mosquito Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133667/","id":133667,"name":"Awakened Cockroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133740/","id":133740,"name":"Bu Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133924/","id":133924,"name":"Windrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134048/","id":134048,"name":"Emmanuel Cugat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134059/","id":134059,"name":"Great Fred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134127/","id":134127,"name":"Gang Orca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134186/","id":134186,"name":"Squall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134428/","id":134428,"name":"Preta Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134429/","id":134429,"name":"Echidna Parass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134430/","id":134430,"name":"Charden Flamberg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134431/","id":134431,"name":"Kyoko Kirisaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134433/","id":134433,"name":"Shiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134435/","id":134435,"name":"Kousuke Kanzaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134436/","id":134436,"name":"Deek Slathky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134438/","id":134438,"name":"Durham Glaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134439/","id":134439,"name":"Gyanza Rujike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134582/","id":134582,"name":"Charliehorse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134614/","id":134614,"name":"Big Don Drummont"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134785/","id":134785,"name":"Obra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134893/","id":134893,"name":"Hindsight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135232/","id":135232,"name":"Monstress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135387/","id":135387,"name":"Quarterflash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135626/","id":135626,"name":"Concussion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135628/","id":135628,"name":"Prana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135629/","id":135629,"name":"Zahara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136096/","id":136096,"name":"Owen Cho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136098/","id":136098,"name":"Martin Tyus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136099/","id":136099,"name":"Avichal Malakar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136121/","id":136121,"name":"Burke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136122/","id":136122,"name":"Kroeger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136123/","id":136123,"name":"Stylles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136259/","id":136259,"name":"Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136785/","id":136785,"name":"Lucy Arrows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136860/","id":136860,"name":"Wilbur the Electromutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137495/","id":137495,"name":"Ronnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137621/","id":137621,"name":"Ozaki Kei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137880/","id":137880,"name":"Rags"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137881/","id":137881,"name":"Riches"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137883/","id":137883,"name":"Mrs. Hoskins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137884/","id":137884,"name":"Mr. Hoskins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137976/","id":137976,"name":"Silla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137979/","id":137979,"name":"Miranda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138049/","id":138049,"name":"Windshear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138050/","id":138050,"name":"Run"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138051/","id":138051,"name":"Jump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138052/","id":138052,"name":"Burn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138062/","id":138062,"name":"Doctor Kilgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138080/","id":138080,"name":"Cockroach Andy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138097/","id":138097,"name":"Ribbert Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138128/","id":138128,"name":"Ripslashbloodclawmaimblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138159/","id":138159,"name":"Darcy Purnelli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138160/","id":138160,"name":"Joseph Stucci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138186/","id":138186,"name":"Oggar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138217/","id":138217,"name":"Comrade Cockroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138306/","id":138306,"name":"Becky Davis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138307/","id":138307,"name":"Eric Kramer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138308/","id":138308,"name":"Vlad the Impaler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138309/","id":138309,"name":"Sarina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138336/","id":138336,"name":"Spoof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138384/","id":138384,"name":"Beans"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138609/","id":138609,"name":"Leot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138641/","id":138641,"name":"Vesuvius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138651/","id":138651,"name":"Shine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138682/","id":138682,"name":"Stormer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139282/","id":139282,"name":"Belen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139358/","id":139358,"name":"Popinjay "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139463/","id":139463,"name":"Simon Lasker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139465/","id":139465,"name":"Avalanche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139470/","id":139470,"name":"Tgurneu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139479/","id":139479,"name":"Nikki Finch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140031/","id":140031,"name":"Ms. Hoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140194/","id":140194,"name":"Deadaim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140336/","id":140336,"name":"Harak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140475/","id":140475,"name":"Hexadecimal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140476/","id":140476,"name":"Whisper Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140477/","id":140477,"name":"Norio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140478/","id":140478,"name":"Gazing Nightshade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140780/","id":140780,"name":"Damage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140962/","id":140962,"name":"Antrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141077/","id":141077,"name":"Kadaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141318/","id":141318,"name":"Lux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141319/","id":141319,"name":"Warhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141321/","id":141321,"name":"Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141323/","id":141323,"name":"Dj Chill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141356/","id":141356,"name":"Mantra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141357/","id":141357,"name":"Ben"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141358/","id":141358,"name":"Hotspur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141514/","id":141514,"name":"Mimic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141519/","id":141519,"name":"Serenity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141580/","id":141580,"name":"Nina Atomic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141581/","id":141581,"name":"Sally Atomic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141595/","id":141595,"name":"Paifu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141661/","id":141661,"name":"Kyella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141662/","id":141662,"name":"Sebrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141663/","id":141663,"name":"Fallone "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141734/","id":141734,"name":"Karl Serr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141874/","id":141874,"name":"Billy Zedd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141875/","id":141875,"name":"Rainmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141877/","id":141877,"name":"Quickdeath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141903/","id":141903,"name":"Polymre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142185/","id":142185,"name":"Yumesaki Harumu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142278/","id":142278,"name":"Ashiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142475/","id":142475,"name":"Devastator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142977/","id":142977,"name":"Lycopene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143002/","id":143002,"name":"Man-Up"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143296/","id":143296,"name":"Fidel Finnegan III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143552/","id":143552,"name":"Dust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143665/","id":143665,"name":"Calo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144288/","id":144288,"name":"Tatyana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144290/","id":144290,"name":"Rat King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144320/","id":144320,"name":"Siphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144474/","id":144474,"name":"Matthus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144575/","id":144575,"name":"Zach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144576/","id":144576,"name":"Michaela Ladak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144710/","id":144710,"name":"Maddie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144714/","id":144714,"name":"Guppy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144731/","id":144731,"name":"Gigantomachia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144898/","id":144898,"name":"Null"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145108/","id":145108,"name":"Marmelzat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145109/","id":145109,"name":"'Strator Porus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145195/","id":145195,"name":"King Sturgeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145418/","id":145418,"name":"Margaret Braddock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145557/","id":145557,"name":"Sparkplug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145558/","id":145558,"name":"Fireball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145681/","id":145681,"name":"Trinary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145710/","id":145710,"name":"Yasuhisa Nashiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145711/","id":145711,"name":"Yasuhisa Kurona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145885/","id":145885,"name":"Dragonson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145945/","id":145945,"name":"Johnny Justice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145975/","id":145975,"name":"Orange Crusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146095/","id":146095,"name":"Singularity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146654/","id":146654,"name":"Krisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146681/","id":146681,"name":"Crazy Maisie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147216/","id":147216,"name":"Greywing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147311/","id":147311,"name":"Fakeface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147345/","id":147345,"name":"Obsydian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147413/","id":147413,"name":"Kingfish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147434/","id":147434,"name":"Gnomon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147654/","id":147654,"name":"Speedwall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147690/","id":147690,"name":"Grim 80's Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147842/","id":147842,"name":"Allure Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148207/","id":148207,"name":"Asahi Verschlagen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148664/","id":148664,"name":"Bernard LeBranche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148679/","id":148679,"name":"Exomorph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148728/","id":148728,"name":"The Red Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148732/","id":148732,"name":"Burst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148794/","id":148794,"name":"Toma Zaslon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149037/","id":149037,"name":"Baxter Frunnt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149235/","id":149235,"name":"Prototype"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149236/","id":149236,"name":"Cynthia Rossini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149238/","id":149238,"name":"Chameleon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149255/","id":149255,"name":"Croc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149495/","id":149495,"name":"Talleyrand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149502/","id":149502,"name":"Earl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149503/","id":149503,"name":"Dann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149793/","id":149793,"name":"Venturestein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149845/","id":149845,"name":"Wide Wale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149851/","id":149851,"name":"Steppenwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149852/","id":149852,"name":"Mommy Longlegs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149902/","id":149902,"name":"Ned"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149907/","id":149907,"name":"Otto Aquarius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149916/","id":149916,"name":"Dr. Dugong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149968/","id":149968,"name":"Haranguetan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150022/","id":150022,"name":"Tiger Shark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150033/","id":150033,"name":"Catclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150199/","id":150199,"name":"Frederick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150244/","id":150244,"name":"Geech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150253/","id":150253,"name":"Gethrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150283/","id":150283,"name":"Glass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150290/","id":150290,"name":"Phoenix 1,000,000 BC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150450/","id":150450,"name":"Lightning Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150960/","id":150960,"name":"Dear Lois"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150973/","id":150973,"name":"Jeremy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150976/","id":150976,"name":"Joey Bugs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151157/","id":151157,"name":"Joey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151158/","id":151158,"name":"Cain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151162/","id":151162,"name":"Jorge Santiago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151218/","id":151218,"name":"Xandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151425/","id":151425,"name":"Lariat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151430/","id":151430,"name":"Lev "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151820/","id":151820,"name":"Mukus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151823/","id":151823,"name":"Madin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151841/","id":151841,"name":"Marked Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151843/","id":151843,"name":"Mass "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151952/","id":151952,"name":"Merman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152050/","id":152050,"name":"Nighthowl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152494/","id":152494,"name":"Phantom Bats of the Twelve Minds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152557/","id":152557,"name":"Meat Sweats"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152571/","id":152571,"name":"Redeye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152833/","id":152833,"name":"Simian "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152834/","id":152834,"name":"Icemaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152835/","id":152835,"name":"Brutus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152836/","id":152836,"name":"Simon Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153027/","id":153027,"name":"Raoul Inglis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153135/","id":153135,"name":"Warren Stone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153164/","id":153164,"name":"Syth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153198/","id":153198,"name":"North Korean Thunderbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153378/","id":153378,"name":"Manon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153379/","id":153379,"name":"Maxime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153609/","id":153609,"name":"Metus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153636/","id":153636,"name":"Hawks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153663/","id":153663,"name":"End Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153691/","id":153691,"name":"Justin Gaines"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153840/","id":153840,"name":"Cutter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153890/","id":153890,"name":"Nanachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153891/","id":153891,"name":"Mitty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154135/","id":154135,"name":"Warthog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154137/","id":154137,"name":"Weapon Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154203/","id":154203,"name":"Darkveil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154243/","id":154243,"name":"Dervish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154244/","id":154244,"name":"Derek Petrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154288/","id":154288,"name":"King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154392/","id":154392,"name":"Moneta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154423/","id":154423,"name":"Zero (Adam)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154443/","id":154443,"name":"Kayleigh Ravenwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154498/","id":154498,"name":"Weapon Hex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154505/","id":154505,"name":"Emmet Burke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154507/","id":154507,"name":"Angorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154516/","id":154516,"name":"Slugfest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154526/","id":154526,"name":"Tuoks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154535/","id":154535,"name":"Mayhem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154536/","id":154536,"name":"Mini Shredder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154537/","id":154537,"name":"Shiva Shredder "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154538/","id":154538,"name":"Claw Shredder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154582/","id":154582,"name":"General Sluggfest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154597/","id":154597,"name":"Katt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154609/","id":154609,"name":"Mongrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154773/","id":154773,"name":"Billy Briggs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154777/","id":154777,"name":"Fright Mask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154850/","id":154850,"name":"Slurt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154851/","id":154851,"name":"Soul-Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154852/","id":154852,"name":"Shiv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154853/","id":154853,"name":"Warbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154856/","id":154856,"name":"William"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154958/","id":154958,"name":"Vyolet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154959/","id":154959,"name":"Dwayne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154960/","id":154960,"name":"Leg Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154961/","id":154961,"name":"Turanga Morris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154962/","id":154962,"name":"Turanga Munda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154966/","id":154966,"name":"Sally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154984/","id":154984,"name":"Crash Brittanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154987/","id":154987,"name":"Mr. Apollo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154997/","id":154997,"name":"Ace Hart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155013/","id":155013,"name":"El Chupanibre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155383/","id":155383,"name":"Unveil "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155477/","id":155477,"name":"Scope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155492/","id":155492,"name":"Apate "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155493/","id":155493,"name":"Scripture "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155542/","id":155542,"name":"Nezumi Sen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155823/","id":155823,"name":"Heartbreak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155824/","id":155824,"name":"Raider X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155889/","id":155889,"name":"Major X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155974/","id":155974,"name":"Conduit "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155975/","id":155975,"name":"Triptych "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155976/","id":155976,"name":"Andrei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156301/","id":156301,"name":"Slam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156302/","id":156302,"name":"Handgunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156352/","id":156352,"name":"T-Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156353/","id":156353,"name":"Glarg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156370/","id":156370,"name":"Sunspot (Grey)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156422/","id":156422,"name":"Diamond Patch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156613/","id":156613,"name":"The Siberian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156628/","id":156628,"name":"Speed Weasel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156629/","id":156629,"name":"Hellhound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156974/","id":156974,"name":"Muti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157016/","id":157016,"name":"The Marshall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157018/","id":157018,"name":"Father Gideon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157036/","id":157036,"name":"Reine du Rien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157113/","id":157113,"name":"Deathstrique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157151/","id":157151,"name":"The A"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157152/","id":157152,"name":"Phatty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157153/","id":157153,"name":"Mirror Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157154/","id":157154,"name":"Uno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157155/","id":157155,"name":"Hurt John"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157350/","id":157350,"name":"Rasputin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157351/","id":157351,"name":"Cylobel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157352/","id":157352,"name":"Cardinal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157567/","id":157567,"name":"North"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157657/","id":157657,"name":"Breathtaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157659/","id":157659,"name":"Siamese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157664/","id":157664,"name":"Brickhouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157665/","id":157665,"name":"Rain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157810/","id":157810,"name":"DNA"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157941/","id":157941,"name":"Persephone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157945/","id":157945,"name":"Percival"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158103/","id":158103,"name":"Sumasshu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158459/","id":158459,"name":"Mirko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158474/","id":158474,"name":"Windrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158475/","id":158475,"name":"Night Troller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158604/","id":158604,"name":"Rhino Wrestler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158747/","id":158747,"name":"Sidewaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158846/","id":158846,"name":"Compound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158988/","id":158988,"name":"Stencil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159120/","id":159120,"name":"Squid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159416/","id":159416,"name":"Hotshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159473/","id":159473,"name":"Teena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159597/","id":159597,"name":"Kestle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159600/","id":159600,"name":"Tank "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159601/","id":159601,"name":"M'Koy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159888/","id":159888,"name":"Blood Widow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159999/","id":159999,"name":"Wrench "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160000/","id":160000,"name":"Sonos Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160001/","id":160001,"name":"Fauna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160068/","id":160068,"name":"Hardrock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160118/","id":160118,"name":"Sparks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160191/","id":160191,"name":"Genius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160211/","id":160211,"name":"Mona Lisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160212/","id":160212,"name":"Grollo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160241/","id":160241,"name":"Sparky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160373/","id":160373,"name":"Guy-with-Claws"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160382/","id":160382,"name":"Monkey Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160394/","id":160394,"name":"Mr. Mimico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160417/","id":160417,"name":"Naked Blue Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160774/","id":160774,"name":"Gned"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160775/","id":160775,"name":"Gnatalie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160776/","id":160776,"name":"Gnarly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161242/","id":161242,"name":"Penultiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161293/","id":161293,"name":"Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161312/","id":161312,"name":"Carapace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161391/","id":161391,"name":"Curse "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161392/","id":161392,"name":"Cosmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161401/","id":161401,"name":"Janet Sorenson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161555/","id":161555,"name":"Flogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161566/","id":161566,"name":"Lizorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161619/","id":161619,"name":"Optikk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161623/","id":161623,"name":"Quakke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161682/","id":161682,"name":"M'Gyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161818/","id":161818,"name":"Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162059/","id":162059,"name":"Corona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162070/","id":162070,"name":"White Dwarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162071/","id":162071,"name":"Vermin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162146/","id":162146,"name":"Blood Congress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162181/","id":162181,"name":"Sub Earth Ruler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162877/","id":162877,"name":"Summoner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162983/","id":162983,"name":"Lucius Marvell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163248/","id":163248,"name":"Lita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163348/","id":163348,"name":"Pale Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163433/","id":163433,"name":"Kaoru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163434/","id":163434,"name":"Mari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163435/","id":163435,"name":"Takahisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163478/","id":163478,"name":"Higashiyama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163479/","id":163479,"name":"Yoshikazu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163482/","id":163482,"name":"Satoru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163483/","id":163483,"name":"Hanakuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163484/","id":163484,"name":"Otoki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163485/","id":163485,"name":"Satoshi Isa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163486/","id":163486,"name":"Mariko Glaccias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163487/","id":163487,"name":"Anna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163488/","id":163488,"name":"Kanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163489/","id":163489,"name":"Archbishop Maximillian "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163625/","id":163625,"name":"Jelby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163746/","id":163746,"name":"Saucier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163760/","id":163760,"name":"Crimson Riot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163953/","id":163953,"name":"Alice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163955/","id":163955,"name":"Aida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163956/","id":163956,"name":"Michiru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164038/","id":164038,"name":"Psykos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164185/","id":164185,"name":"Morph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164186/","id":164186,"name":"Noriko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164189/","id":164189,"name":"Zanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164190/","id":164190,"name":"Mushroom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164191/","id":164191,"name":"Zink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164219/","id":164219,"name":"Walkabout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164472/","id":164472,"name":"Kayla "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164491/","id":164491,"name":"Showerhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164584/","id":164584,"name":"Tooru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164709/","id":164709,"name":"Tobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164710/","id":164710,"name":"Marilou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164739/","id":164739,"name":"Death "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164740/","id":164740,"name":"Famine "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164741/","id":164741,"name":"War "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164742/","id":164742,"name":"Pestilence "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164774/","id":164774,"name":"D-Cel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164812/","id":164812,"name":"Genesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164813/","id":164813,"name":"White Sword"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164814/","id":164814,"name":"Isca the Unbeaten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164864/","id":164864,"name":"Solem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165160/","id":165160,"name":"Bei the Blood Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165162/","id":165162,"name":"Redroot, the Forest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165175/","id":165175,"name":"Idyll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165203/","id":165203,"name":"Kaitora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165204/","id":165204,"name":"Kariu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165205/","id":165205,"name":"Boneless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165216/","id":165216,"name":"Daruma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165256/","id":165256,"name":"Kikuko Munekata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165284/","id":165284,"name":"Sora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165549/","id":165549,"name":"Tarn the Uncaring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165556/","id":165556,"name":"Speed-Freak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165557/","id":165557,"name":"Mudgear the Recanter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165558/","id":165558,"name":"Monitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165573/","id":165573,"name":"Mother Rapture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165574/","id":165574,"name":"Hex Butcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165575/","id":165575,"name":"Sick Bird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165576/","id":165576,"name":"Amino Fetus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165608/","id":165608,"name":"Mr. Magnificent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165669/","id":165669,"name":"Nadira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165670/","id":165670,"name":"Ransik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166040/","id":166040,"name":"Puggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166041/","id":166041,"name":"Bandit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166043/","id":166043,"name":"Jay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166046/","id":166046,"name":"Highwalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166092/","id":166092,"name":"Orta'Ka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166354/","id":166354,"name":"Arakko "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166368/","id":166368,"name":"Mermanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166459/","id":166459,"name":"Zack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166594/","id":166594,"name":"Chaney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166595/","id":166595,"name":"Duff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166619/","id":166619,"name":"Baron Wasteland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166673/","id":166673,"name":"Halcyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166677/","id":166677,"name":"Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166856/","id":166856,"name":"Veffir Voon lyax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166857/","id":166857,"name":"Benedict Milhous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167166/","id":167166,"name":"Magus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167168/","id":167168,"name":"Turk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167169/","id":167169,"name":"Mercy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167170/","id":167170,"name":"Gistaldo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167175/","id":167175,"name":"Tracey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167176/","id":167176,"name":"Skell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167179/","id":167179,"name":"Cooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167245/","id":167245,"name":"Submoron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167266/","id":167266,"name":"The Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167396/","id":167396,"name":"Basilisk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167397/","id":167397,"name":"Icarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167398/","id":167398,"name":"The Ape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167399/","id":167399,"name":"Winter Wonderland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167400/","id":167400,"name":"Pterano Don Juan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167401/","id":167401,"name":"Mr. Amoeba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167402/","id":167402,"name":"Frog Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167408/","id":167408,"name":"Lucia Rosetti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167466/","id":167466,"name":"Robert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167741/","id":167741,"name":"Camille Phoenix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167767/","id":167767,"name":"Casey Marie Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167781/","id":167781,"name":"Vulpine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167974/","id":167974,"name":"Gimmick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168821/","id":168821,"name":"Diamond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168835/","id":168835,"name":"Khora of the Burning Heart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168965/","id":168965,"name":"Castor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168966/","id":168966,"name":"Pollux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168988/","id":168988,"name":"Explodey Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168991/","id":168991,"name":"Lucid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168992/","id":168992,"name":"Doc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169042/","id":169042,"name":"Bud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169044/","id":169044,"name":"Ackroyd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169045/","id":169045,"name":"Sluggo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169046/","id":169046,"name":"Zygote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169048/","id":169048,"name":"The Sea Horse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169049/","id":169049,"name":"Douglas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169051/","id":169051,"name":"Lost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169055/","id":169055,"name":"Shannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169283/","id":169283,"name":"The Bogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169291/","id":169291,"name":"Posse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169293/","id":169293,"name":"Bone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169346/","id":169346,"name":"Jimmy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169446/","id":169446,"name":"Veiny Morty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169448/","id":169448,"name":"Multi Morty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169508/","id":169508,"name":"Nathaniel Gelson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169588/","id":169588,"name":"Cicak-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169689/","id":169689,"name":"Reflux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169972/","id":169972,"name":"Lux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170172/","id":170172,"name":"Richard Foley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170192/","id":170192,"name":"Lactuca the Knower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170193/","id":170193,"name":"Sobunar of the Depths"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170194/","id":170194,"name":"Xilo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170206/","id":170206,"name":"Katsuo Sasaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170304/","id":170304,"name":"Hue Vile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170409/","id":170409,"name":"Galura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170410/","id":170410,"name":"Somnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170476/","id":170476,"name":"Carrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171005/","id":171005,"name":"Agent Snowbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171006/","id":171006,"name":"Lucia Alonzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171071/","id":171071,"name":"Kevin Mulhearn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171072/","id":171072,"name":"Vicki Reppion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171209/","id":171209,"name":"Ragnarok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171241/","id":171241,"name":"Samhain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171242/","id":171242,"name":"Lughnasa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171243/","id":171243,"name":"Beltane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171291/","id":171291,"name":"Kappa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171292/","id":171292,"name":"Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171293/","id":171293,"name":"Brutha Nature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171370/","id":171370,"name":"Sister Staff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171542/","id":171542,"name":"X-24"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171558/","id":171558,"name":"Sevyr Blackmore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171572/","id":171572,"name":"Bracken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171617/","id":171617,"name":"Imbolc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171739/","id":171739,"name":"Monica Sellers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171740/","id":171740,"name":"Julia "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171741/","id":171741,"name":"Liana "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171742/","id":171742,"name":"Jersey Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171826/","id":171826,"name":"Abigail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171837/","id":171837,"name":"Lift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171838/","id":171838,"name":"Fracas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171850/","id":171850,"name":"Cybernet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171856/","id":171856,"name":"Father Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171895/","id":171895,"name":"Cam Long"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171900/","id":171900,"name":"Michael Diwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171901/","id":171901,"name":"Jamie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171902/","id":171902,"name":"Aura Charles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171913/","id":171913,"name":"Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171914/","id":171914,"name":"Arrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171915/","id":171915,"name":"Tucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171916/","id":171916,"name":"Ruthie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171917/","id":171917,"name":"Tobey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171918/","id":171918,"name":"Kylie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172295/","id":172295,"name":"Cry-o"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172494/","id":172494,"name":"Breakdown "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172496/","id":172496,"name":"Davey Miller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172606/","id":172606,"name":"Rampage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172628/","id":172628,"name":"Lodus Logos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172735/","id":172735,"name":"Mosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172800/","id":172800,"name":"Scott"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172802/","id":172802,"name":"Jeremy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172893/","id":172893,"name":"Chronicler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172898/","id":172898,"name":"Plymo the Rubber Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173021/","id":173021,"name":"Riverwalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173043/","id":173043,"name":"Pinkie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173198/","id":173198,"name":"Stoltz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173199/","id":173199,"name":"Riff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173200/","id":173200,"name":"Kidd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173201/","id":173201,"name":"Fetus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173217/","id":173217,"name":"Death Grip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173573/","id":173573,"name":"Yozakura Mutsumi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173574/","id":173574,"name":"Yozakura Kyoichiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173575/","id":173575,"name":"Yozakura Futaba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173576/","id":173576,"name":"Yozakura Shinzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173577/","id":173577,"name":"Yozakura Shion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173578/","id":173578,"name":"Yozakura Kengo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173579/","id":173579,"name":"Yozakura Nanao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173879/","id":173879,"name":"Ishmael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174062/","id":174062,"name":"Rosie Rodriguez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174063/","id":174063,"name":"Hector Pullman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174064/","id":174064,"name":"Markos Argyros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174066/","id":174066,"name":"Christopher O’Leary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174067/","id":174067,"name":"Alice Campbell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174068/","id":174068,"name":"Jason Jackson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174069/","id":174069,"name":"Alec Walsh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174177/","id":174177,"name":"Benjamin Russell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174334/","id":174334,"name":"Seadragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174538/","id":174538,"name":"Vornak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174671/","id":174671,"name":"D'murr Pilru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175081/","id":175081,"name":"Sha-Har-A-Zath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175117/","id":175117,"name":"Onyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175118/","id":175118,"name":"Shiv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175119/","id":175119,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175335/","id":175335,"name":"Joe Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175336/","id":175336,"name":"Rosa Lemper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175506/","id":175506,"name":"Slyme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175568/","id":175568,"name":"Dukse Drengen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175668/","id":175668,"name":"Ebon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175703/","id":175703,"name":"Bird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175705/","id":175705,"name":"Adam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175735/","id":175735,"name":"Manaconda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175776/","id":175776,"name":"Third Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176089/","id":176089,"name":"Miraculo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176106/","id":176106,"name":"Jasper Barlow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176116/","id":176116,"name":"Arak Wind-Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176135/","id":176135,"name":"Cici"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176136/","id":176136,"name":"Young Ago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176260/","id":176260,"name":"Nameless, the Shape-Shifter Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176261/","id":176261,"name":"Kobak Never-Held"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176286/","id":176286,"name":"Sights"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176396/","id":176396,"name":"Ocelot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176397/","id":176397,"name":"Orbit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176398/","id":176398,"name":"Ooze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176399/","id":176399,"name":"Orifice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176400/","id":176400,"name":"Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176401/","id":176401,"name":"Oink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176416/","id":176416,"name":"Buzz Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176434/","id":176434,"name":"Wayland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176435/","id":176435,"name":"Queen Dazboh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176436/","id":176436,"name":"Escher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176437/","id":176437,"name":"Twodee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176448/","id":176448,"name":"Miyabi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176451/","id":176451,"name":"Toukichi Murata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176465/","id":176465,"name":"Kate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176466/","id":176466,"name":"Lucy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176467/","id":176467,"name":"Bumpkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176468/","id":176468,"name":"Douglas Hutchison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176469/","id":176469,"name":"Grace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176470/","id":176470,"name":"Kiza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176471/","id":176471,"name":"Milo Smutts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176472/","id":176472,"name":"Poppa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176473/","id":176473,"name":"Marc Dale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176474/","id":176474,"name":"Tasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176581/","id":176581,"name":"Shrine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176584/","id":176584,"name":"Antoni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176585/","id":176585,"name":"Cara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176586/","id":176586,"name":"Heather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176587/","id":176587,"name":"Kyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176588/","id":176588,"name":"Toby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176589/","id":176589,"name":"Oscar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176590/","id":176590,"name":"Jack Freestone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176591/","id":176591,"name":"Paint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176592/","id":176592,"name":"Dervish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176603/","id":176603,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176604/","id":176604,"name":"Luke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176605/","id":176605,"name":"Irene Schank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176606/","id":176606,"name":"Mutalien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176608/","id":176608,"name":"Nightvoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176609/","id":176609,"name":"Brian Swaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176610/","id":176610,"name":"Rebecca Agee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176611/","id":176611,"name":"Marilyn Hannah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176613/","id":176613,"name":"Hector Orozeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176614/","id":176614,"name":"Ellison Payton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176696/","id":176696,"name":"Sonny Bean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176697/","id":176697,"name":"Arthur Swift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176699/","id":176699,"name":"Ao Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176702/","id":176702,"name":"Bludgeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176703/","id":176703,"name":"Chela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176704/","id":176704,"name":"Clive Vickers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176705/","id":176705,"name":"Ms. Fingers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176706/","id":176706,"name":"Oswald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176709/","id":176709,"name":"Jake "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176710/","id":176710,"name":"Sister Bonita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176711/","id":176711,"name":"Connie Moore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176715/","id":176715,"name":"Inza Cuzco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176716/","id":176716,"name":"The Renegade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176717/","id":176717,"name":"Teresa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176718/","id":176718,"name":"Maria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176719/","id":176719,"name":"Soft Serve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176724/","id":176724,"name":"Paradise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176730/","id":176730,"name":"Musclehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176731/","id":176731,"name":"Juliana Jararaca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176732/","id":176732,"name":"Thiago Piranha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176733/","id":176733,"name":"Xande"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176734/","id":176734,"name":"Lazarus Ganglion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176735/","id":176735,"name":"Chetfield Murray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176736/","id":176736,"name":"Jo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176738/","id":176738,"name":"Marlena Petrokova"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176744/","id":176744,"name":"Phillip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176746/","id":176746,"name":"Josette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176747/","id":176747,"name":"Mandy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176748/","id":176748,"name":"Peter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176749/","id":176749,"name":"Sanji Yamamoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176750/","id":176750,"name":"Scree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176751/","id":176751,"name":"Teddy Matson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176752/","id":176752,"name":"Tommy Reichert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176753/","id":176753,"name":"Vampyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176754/","id":176754,"name":"Vladimir Zaitsev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176755/","id":176755,"name":"Aurelia Santiago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176756/","id":176756,"name":"Billy Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176757/","id":176757,"name":"Wendy Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176758/","id":176758,"name":"Mrs. Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176759/","id":176759,"name":"Mr. Taylor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176760/","id":176760,"name":"Tamara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176761/","id":176761,"name":"Faye Livingstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176762/","id":176762,"name":"Whitney James"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176764/","id":176764,"name":"Asher Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176765/","id":176765,"name":"Brian Morrison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176766/","id":176766,"name":"Mr. Nance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176767/","id":176767,"name":"Skelter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176772/","id":176772,"name":"Ashton Wither"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176773/","id":176773,"name":"Malcolm Whitman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176774/","id":176774,"name":"Mutate 24-601"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176775/","id":176775,"name":"Piecemeal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176776/","id":176776,"name":"Ricochet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176777/","id":176777,"name":"Vincent Bloch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176778/","id":176778,"name":"Wesley Robb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176779/","id":176779,"name":"Antonio Aggasiz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176780/","id":176780,"name":"Gordon Lefferts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176781/","id":176781,"name":"Gregori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176782/","id":176782,"name":"Short Circuit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176783/","id":176783,"name":"Jonathan McFee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176784/","id":176784,"name":"Lewis Hammond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176785/","id":176785,"name":"Selena Ciscernos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176786/","id":176786,"name":"Ms. Kaufman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176787/","id":176787,"name":"Matvey Tarasov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176788/","id":176788,"name":"Vanna Herald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176789/","id":176789,"name":"Zalme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176790/","id":176790,"name":"Benji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176791/","id":176791,"name":"David Montgomery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176792/","id":176792,"name":"Ahmed "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176793/","id":176793,"name":"Sarah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176794/","id":176794,"name":"Andrea Hobbes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176795/","id":176795,"name":"Walker Hobbes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176801/","id":176801,"name":"Carl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176802/","id":176802,"name":"Colin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176805/","id":176805,"name":"Matthew "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176806/","id":176806,"name":"Alina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176808/","id":176808,"name":"Father Phillip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176809/","id":176809,"name":"Beth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176810/","id":176810,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176811/","id":176811,"name":"Blowhard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176812/","id":176812,"name":"Voodoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176813/","id":176813,"name":"Slimeball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176814/","id":176814,"name":"Buzzsaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176815/","id":176815,"name":"Mohawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176818/","id":176818,"name":"Lazarus "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176822/","id":176822,"name":"Alphonse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176823/","id":176823,"name":"Stone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176824/","id":176824,"name":"Gary Peterson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176825/","id":176825,"name":"Collider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176826/","id":176826,"name":"Jeannie Martin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176827/","id":176827,"name":"John Mairs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176828/","id":176828,"name":"Minnie Floyd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176829/","id":176829,"name":"Nelson Cragg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176830/","id":176830,"name":"Tim Hacker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176831/","id":176831,"name":"Susan Catrini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176835/","id":176835,"name":"Anne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176836/","id":176836,"name":"Charmaine Grand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176837/","id":176837,"name":"Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176838/","id":176838,"name":"Raya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176839/","id":176839,"name":"Jason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176840/","id":176840,"name":"Janine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176841/","id":176841,"name":"Theo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176842/","id":176842,"name":"Gabbi Sotelo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176843/","id":176843,"name":"Dia Sloane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176844/","id":176844,"name":"Glowboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176845/","id":176845,"name":"Neil Langram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176846/","id":176846,"name":"Glowbrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176847/","id":176847,"name":"Slamazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176848/","id":176848,"name":"Gerhart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176854/","id":176854,"name":"Jonathon White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176855/","id":176855,"name":"Alesky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176856/","id":176856,"name":"Antonio Fernandez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176857/","id":176857,"name":"Grimlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176858/","id":176858,"name":"Mr. Poklemba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176859/","id":176859,"name":"Julian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176860/","id":176860,"name":"Genus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176861/","id":176861,"name":"Pete Gehringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176862/","id":176862,"name":"King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176863/","id":176863,"name":"Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176864/","id":176864,"name":"Rook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176865/","id":176865,"name":"Lash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176866/","id":176866,"name":"Jonas Murphy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176867/","id":176867,"name":"Whisper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176868/","id":176868,"name":"Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176869/","id":176869,"name":"Skitter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176870/","id":176870,"name":"Jemail Karami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176871/","id":176871,"name":"Ronny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176872/","id":176872,"name":"Philip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176873/","id":176873,"name":"Firebolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176874/","id":176874,"name":"Rebecca Sloan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176875/","id":176875,"name":"Gretchen Carrenna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176876/","id":176876,"name":"Hattie Saint-Ange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176877/","id":176877,"name":"Leonard Gary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176878/","id":176878,"name":"Bethany Bellamy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176879/","id":176879,"name":"Wynter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176880/","id":176880,"name":"Sabre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176881/","id":176881,"name":"Ms. Yoshida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176887/","id":176887,"name":"Cruncho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176889/","id":176889,"name":"Mr. Beckham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176890/","id":176890,"name":"Helen Burnside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177019/","id":177019,"name":"Yozakura Keiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177023/","id":177023,"name":"Yozakura Tsubomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177166/","id":177166,"name":"Fisher King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177312/","id":177312,"name":"Whoosh "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177313/","id":177313,"name":"Stripe "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177314/","id":177314,"name":"Fluff "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177390/","id":177390,"name":"Weaponless Zsen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177424/","id":177424,"name":"Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177449/","id":177449,"name":"Ora Serrata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177450/","id":177450,"name":"Paulie DiCosta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177568/","id":177568,"name":"Captain Bretland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177569/","id":177569,"name":"Elspeth Braddock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177611/","id":177611,"name":"Queen Elizabeth III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177764/","id":177764,"name":"Deke Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177770/","id":177770,"name":"Escapade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177771/","id":177771,"name":"Morgan Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177829/","id":177829,"name":"Richard Salmons"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177930/","id":177930,"name":"Alan Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178090/","id":178090,"name":"Jinguu Masato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178091/","id":178091,"name":"Nakata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178119/","id":178119,"name":"Huey Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178219/","id":178219,"name":"Hilary Astrovik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178321/","id":178321,"name":"Neil Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178354/","id":178354,"name":"Etienne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178745/","id":178745,"name":"Kaylie "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178905/","id":178905,"name":"Blackstar"}],"id":1,"name":"Mutant","profiles":[],"site_detail_url":"https://comicvine.gamespot.com/mutant/4030-1/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/origin-details/origin-4030-5.json b/samples/api-data/origin-details/origin-4030-5.json new file mode 100644 index 0000000..52514f0 --- /dev/null +++ b/samples/api-data/origin-details/origin-4030-5.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-5/","character_set":null,"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1295/","id":1295,"name":"Teknight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1296/","id":1296,"name":"Electrocute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1323/","id":1323,"name":"Bron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1504/","id":1504,"name":"Vision"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1544/","id":1544,"name":"Wacky Squirrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1688/","id":1688,"name":"Red Tornado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1789/","id":1789,"name":"L-Ron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2024/","id":2024,"name":"MCP"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2242/","id":2242,"name":"Ultron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2243/","id":2243,"name":"Lightspeed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2266/","id":2266,"name":"Growing Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2594/","id":2594,"name":"R2-D2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2605/","id":2605,"name":"Cornfed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3318/","id":3318,"name":"Jocasta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3370/","id":3370,"name":"Mainframe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3408/","id":3408,"name":"Indigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3466/","id":3466,"name":"Mogol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3481/","id":3481,"name":"Social Butterfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3496/","id":3496,"name":"Dragorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3541/","id":3541,"name":"Umbu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3654/","id":3654,"name":"Zed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3737/","id":3737,"name":"Amazo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3779/","id":3779,"name":"Harvester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3869/","id":3869,"name":"Elec Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4100/","id":4100,"name":"Combatra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4103/","id":4103,"name":"Megatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4104/","id":4104,"name":"Raydeen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4107/","id":4107,"name":"Dangard Ace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4155/","id":4155,"name":"Talos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4467/","id":4467,"name":"Unit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4470/","id":4470,"name":"Mok The War Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4570/","id":4570,"name":"Homebrew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4616/","id":4616,"name":"Artin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4621/","id":4621,"name":"Dark Flea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4705/","id":4705,"name":"Computron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4728/","id":4728,"name":"Vault"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4848/","id":4848,"name":"Sgt. Tommy Tinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4944/","id":4944,"name":"Awesome Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5023/","id":5023,"name":"Baymax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5119/","id":5119,"name":"Megabyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5205/","id":5205,"name":"Cosmic Rae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5218/","id":5218,"name":"Icarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5377/","id":5377,"name":"Eradicator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5783/","id":5783,"name":"Construct"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6328/","id":6328,"name":"Hermos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6335/","id":6335,"name":"C-3PO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6408/","id":6408,"name":"Giza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6414/","id":6414,"name":"Dark Trooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6449/","id":6449,"name":"Grimlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6458/","id":6458,"name":"Cyclonus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6459/","id":6459,"name":"Perceptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6463/","id":6463,"name":"Slag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6464/","id":6464,"name":"Sludge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6465/","id":6465,"name":"Snarl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6466/","id":6466,"name":"Swoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6467/","id":6467,"name":"Optimus Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6741/","id":6741,"name":"The Suit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6804/","id":6804,"name":"Recorder Zeta-9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6823/","id":6823,"name":"Dragon Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6879/","id":6879,"name":"Diderot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7080/","id":7080,"name":"Bootleg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7105/","id":7105,"name":"Dog Tag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7106/","id":7106,"name":"Deus X Machina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7110/","id":7110,"name":"Cy-Phyrr-4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7143/","id":7143,"name":"The Rev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7148/","id":7148,"name":"Basilisk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7150/","id":7150,"name":"Warmonger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7155/","id":7155,"name":"Gabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7242/","id":7242,"name":"Machine Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7245/","id":7245,"name":"M-11"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7325/","id":7325,"name":"Mrs. Redd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7351/","id":7351,"name":"Gatekeeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7402/","id":7402,"name":"Starscream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7403/","id":7403,"name":"Wheeljack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7405/","id":7405,"name":"Soundwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7406/","id":7406,"name":"Rumble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7408/","id":7408,"name":"Ratchet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7409/","id":7409,"name":"Jazz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7410/","id":7410,"name":"Ironhide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7411/","id":7411,"name":"Gears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7412/","id":7412,"name":"Reflector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7480/","id":7480,"name":"Robota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7507/","id":7507,"name":"Mechamorph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7643/","id":7643,"name":"Hourman (Matthew Tyler)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7742/","id":7742,"name":"Overkill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7752/","id":7752,"name":"BATS"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7791/","id":7791,"name":"Dynomutt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7968/","id":7968,"name":"Superconductor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7977/","id":7977,"name":"Sir Gawain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8065/","id":8065,"name":"Hollowpoint Ninja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8074/","id":8074,"name":"Automaton X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8181/","id":8181,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8195/","id":8195,"name":"Dr. Wilker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8712/","id":8712,"name":"Ham-Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8741/","id":8741,"name":"Ultrog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8792/","id":8792,"name":"Mechano-Hog-Zilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8952/","id":8952,"name":"Coyote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8963/","id":8963,"name":"Alpha Nine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9058/","id":9058,"name":"Kelex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9076/","id":9076,"name":"Rosie The Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9167/","id":9167,"name":"Pneuman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9480/","id":9480,"name":"Servitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9576/","id":9576,"name":"Superman Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9645/","id":9645,"name":"Robin 1000000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9717/","id":9717,"name":"Major Domo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9918/","id":9918,"name":"Befadoc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10017/","id":10017,"name":"Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10023/","id":10023,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10038/","id":10038,"name":"Brainiac 13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10232/","id":10232,"name":"Thermal Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10254/","id":10254,"name":"Master Mold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10715/","id":10715,"name":"M-21"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10730/","id":10730,"name":"Ambassador"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10765/","id":10765,"name":"Servbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10766/","id":10766,"name":"Wood Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10861/","id":10861,"name":"Super-Adaptoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10880/","id":10880,"name":"Trinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11281/","id":11281,"name":"Tomorrow Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11510/","id":11510,"name":"Future Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11516/","id":11516,"name":"The Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11865/","id":11865,"name":"Roberta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11891/","id":11891,"name":"Devastator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11923/","id":11923,"name":"Mechadoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11933/","id":11933,"name":"Ruby Thursday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12207/","id":12207,"name":"Shockwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12273/","id":12273,"name":"Grand-Slam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12300/","id":12300,"name":"Calibretto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12344/","id":12344,"name":"Recorder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12419/","id":12419,"name":"Astroman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12428/","id":12428,"name":"Machina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12550/","id":12550,"name":"Crimson Sage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12605/","id":12605,"name":"Jim Hammond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12619/","id":12619,"name":"War Zone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12702/","id":12702,"name":"Lead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13107/","id":13107,"name":"Skeets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13134/","id":13134,"name":"Viroxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13152/","id":13152,"name":"Override"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13155/","id":13155,"name":"Output"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13314/","id":13314,"name":"Nimrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13445/","id":13445,"name":"Super Humanoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13511/","id":13511,"name":"Joe Pi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13519/","id":13519,"name":"Modular Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13682/","id":13682,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13683/","id":13683,"name":"Gold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13684/","id":13684,"name":"Tin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13685/","id":13685,"name":"Platinum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14020/","id":14020,"name":"Robotman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14118/","id":14118,"name":"Ogma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14250/","id":14250,"name":"PLATO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14398/","id":14398,"name":"Faker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14437/","id":14437,"name":"Sting"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14462/","id":14462,"name":"Detonator X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14470/","id":14470,"name":"Shakara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14563/","id":14563,"name":"Delphine Courtney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14602/","id":14602,"name":"Dominus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14618/","id":14618,"name":"The Eliminator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14859/","id":14859,"name":"Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14942/","id":14942,"name":"Tora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15015/","id":15015,"name":"GOL-19 Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15065/","id":15065,"name":"Ferris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15105/","id":15105,"name":"Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15237/","id":15237,"name":"Chill Penguin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15340/","id":15340,"name":"Dirge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15390/","id":15390,"name":"Shiva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15394/","id":15394,"name":"Rakks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15550/","id":15550,"name":"Meatspores"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15607/","id":15607,"name":"XM2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15626/","id":15626,"name":"Chatterbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15690/","id":15690,"name":"Elsie Dee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15721/","id":15721,"name":"Eleven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16027/","id":16027,"name":"URL"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16188/","id":16188,"name":"EV-9D9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16716/","id":16716,"name":"Camillino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16773/","id":16773,"name":"Flame Mammoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16788/","id":16788,"name":"Toad Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16798/","id":16798,"name":"Reverend Preacherbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16821/","id":16821,"name":"Armored Armadillo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17108/","id":17108,"name":"Ranxerox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17622/","id":17622,"name":"Sword Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17623/","id":17623,"name":"Junk Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17858/","id":17858,"name":"Wally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17948/","id":17948,"name":"Undermind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17951/","id":17951,"name":"Nuclear Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17986/","id":17986,"name":"Exroe-5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18010/","id":18010,"name":"Plant Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18015/","id":18015,"name":"Burner Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18053/","id":18053,"name":"Charge Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18054/","id":18054,"name":"Tomahawk Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18058/","id":18058,"name":"Toxic Seahorse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18070/","id":18070,"name":"Magic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18072/","id":18072,"name":"Wind Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18073/","id":18073,"name":"Blizzard Buffalo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18086/","id":18086,"name":"Yamato Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18101/","id":18101,"name":"Wave Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18150/","id":18150,"name":"Split Mushroom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18438/","id":18438,"name":"Roboto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18481/","id":18481,"name":"Stridor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18488/","id":18488,"name":"Multibot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18512/","id":18512,"name":"Elektro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18564/","id":18564,"name":"Horde Trooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18620/","id":18620,"name":"Ravage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18776/","id":18776,"name":"Mekano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19079/","id":19079,"name":"Bethlehem Steele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19684/","id":19684,"name":"Ultimo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19941/","id":19941,"name":"Dreadnought"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19946/","id":19946,"name":"Alkhema"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19948/","id":19948,"name":"Doomsday Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19950/","id":19950,"name":"Dominex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20109/","id":20109,"name":"Data"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20377/","id":20377,"name":"Mr. Lovebomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20378/","id":20378,"name":"Doc Maniacus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20402/","id":20402,"name":"Hoagy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20567/","id":20567,"name":"Erotica Ann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20592/","id":20592,"name":"Myrmidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20672/","id":20672,"name":"Fumble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20989/","id":20989,"name":"Blythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21672/","id":21672,"name":"Lyla Lay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21848/","id":21848,"name":"Master Atom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21951/","id":21951,"name":"Jahf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21952/","id":21952,"name":"Modt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22002/","id":22002,"name":"ISAAC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22039/","id":22039,"name":"Mordecai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22273/","id":22273,"name":"The Painted Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22311/","id":22311,"name":"Technozoic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22331/","id":22331,"name":"Grease Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22573/","id":22573,"name":"Newton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22679/","id":22679,"name":"Gax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22783/","id":22783,"name":"Shaggy Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22999/","id":22999,"name":"Ion Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23107/","id":23107,"name":"Polly Alloy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23252/","id":23252,"name":"Dherk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23299/","id":23299,"name":"Klik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23348/","id":23348,"name":"Baba Yaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23371/","id":23371,"name":"Raz-Putin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23372/","id":23372,"name":"Gulag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23385/","id":23385,"name":"Easy Steam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23393/","id":23393,"name":"Ghengiz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23402/","id":23402,"name":"Volkong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23466/","id":23466,"name":"Neutron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23488/","id":23488,"name":"Mastermind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23512/","id":23512,"name":"Cerberus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23707/","id":23707,"name":"Long John Silicon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23714/","id":23714,"name":"Frank Decker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23720/","id":23720,"name":"H.E.R.B.I.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24715/","id":24715,"name":"Tik-Tok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24836/","id":24836,"name":"Steelbow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25453/","id":25453,"name":"Call-Me-Kenneth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25458/","id":25458,"name":"Stogie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25694/","id":25694,"name":"Mr. Roboto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25741/","id":25741,"name":"Monolith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25829/","id":25829,"name":"Kyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25889/","id":25889,"name":"Reverend Slaggingham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25907/","id":25907,"name":"Tabula Rasa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25908/","id":25908,"name":"Anti-Vision"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25925/","id":25925,"name":"Laurinha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25954/","id":25954,"name":"Lawyer SEM-165"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26192/","id":26192,"name":"Monstroid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26269/","id":26269,"name":"Gyak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26359/","id":26359,"name":"Officer ZERO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26443/","id":26443,"name":"Skeletron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26564/","id":26564,"name":"Hi-Tech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27181/","id":27181,"name":"Gothic Lolita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27896/","id":27896,"name":"Tachyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27934/","id":27934,"name":"Cyberlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27943/","id":27943,"name":"Ilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27982/","id":27982,"name":"Sizer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28156/","id":28156,"name":"Robot Archie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28207/","id":28207,"name":"Ripster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28208/","id":28208,"name":"Slambeaux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28210/","id":28210,"name":"Twit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28398/","id":28398,"name":"Tara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28570/","id":28570,"name":"Waldo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28637/","id":28637,"name":"Dybbuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28848/","id":28848,"name":"Ship"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28982/","id":28982,"name":"Tri-Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29005/","id":29005,"name":"Zee Zee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29014/","id":29014,"name":"T.E.S.S.-One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29284/","id":29284,"name":"Motherboard 49.7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29391/","id":29391,"name":"Humbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29696/","id":29696,"name":"Irona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29801/","id":29801,"name":"Luther Ironheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30091/","id":30091,"name":"Living Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30094/","id":30094,"name":"THROB"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30224/","id":30224,"name":"Kelco Security Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30292/","id":30292,"name":"Mekanique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30486/","id":30486,"name":"Omega Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30488/","id":30488,"name":"Superion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30511/","id":30511,"name":"Bumblebee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30818/","id":30818,"name":"K-9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31409/","id":31409,"name":"Honest Crocus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31470/","id":31470,"name":"Ultivac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31503/","id":31503,"name":"Thief-Master of Ramox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31558/","id":31558,"name":"Real American"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31621/","id":31621,"name":"Elektro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31681/","id":31681,"name":"The Challenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32169/","id":32169,"name":"Murdermek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32269/","id":32269,"name":"Omnivac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32368/","id":32368,"name":"Ootha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32422/","id":32422,"name":"G.I. Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32800/","id":32800,"name":"Platinum Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32802/","id":32802,"name":"Gold Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32803/","id":32803,"name":"Mercury Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32804/","id":32804,"name":"Lead Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32842/","id":32842,"name":"Herbie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32854/","id":32854,"name":"Starpatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32855/","id":32855,"name":"Quark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32986/","id":32986,"name":"Microtron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32987/","id":32987,"name":"Nanotron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33033/","id":33033,"name":"Luann Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33073/","id":33073,"name":"Candy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33375/","id":33375,"name":"Kator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33405/","id":33405,"name":"Automan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33412/","id":33412,"name":"Toy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33647/","id":33647,"name":"Biotron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33993/","id":33993,"name":"Skrull X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34288/","id":34288,"name":"Manners"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34349/","id":34349,"name":"Brynocki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34564/","id":34564,"name":"Ten-For"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34739/","id":34739,"name":"Seaquake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34780/","id":34780,"name":"Alex Stone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34803/","id":34803,"name":"PRK-20"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34938/","id":34938,"name":"Chloroform"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34987/","id":34987,"name":"The Cossack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34997/","id":34997,"name":"A.H.A.B."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35106/","id":35106,"name":"Adam-II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35219/","id":35219,"name":"Mechanon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35277/","id":35277,"name":"Brutag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35305/","id":35305,"name":"Kra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35325/","id":35325,"name":"Tri-Animan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35369/","id":35369,"name":"Metalloid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35378/","id":35378,"name":"Helium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35379/","id":35379,"name":"Oxygen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35380/","id":35380,"name":"Carbon Dioxide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35381/","id":35381,"name":"Carbon Monoxide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35397/","id":35397,"name":"Earth-Shaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35501/","id":35501,"name":"Crypto-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35610/","id":35610,"name":"Thunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35611/","id":35611,"name":"Lightning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36080/","id":36080,"name":"Rog 2000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36299/","id":36299,"name":"Prime Mover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36430/","id":36430,"name":"HAL-9000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37106/","id":37106,"name":"Mystivac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37305/","id":37305,"name":"Nameless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37468/","id":37468,"name":"Mr. Kline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37618/","id":37618,"name":"Ocana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37620/","id":37620,"name":"Sagutai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37900/","id":37900,"name":"Doomsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37985/","id":37985,"name":"Tyrrel Duckard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38167/","id":38167,"name":"Plastoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38178/","id":38178,"name":"Tomazooma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38275/","id":38275,"name":"The Frankenstein Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38613/","id":38613,"name":"Captain Marvel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38789/","id":38789,"name":"Kranus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38806/","id":38806,"name":"The Fourth Sleeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38964/","id":38964,"name":"Inspector Edaw-8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39060/","id":39060,"name":"Rombo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39198/","id":39198,"name":"Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39207/","id":39207,"name":"Tin Amazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39235/","id":39235,"name":"Multi-Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39248/","id":39248,"name":"Wonder-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39263/","id":39263,"name":"Superboy Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39279/","id":39279,"name":"Barium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39280/","id":39280,"name":"Aluminum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39281/","id":39281,"name":"Calcium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39282/","id":39282,"name":"Zirconium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39283/","id":39283,"name":"Sodium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39284/","id":39284,"name":"Plutonium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39286/","id":39286,"name":"Spaceman X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39337/","id":39337,"name":"Astounding Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39341/","id":39341,"name":"Krypto Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39373/","id":39373,"name":"Kurrgos Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39562/","id":39562,"name":"Automaton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40075/","id":40075,"name":"Gigi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40496/","id":40496,"name":"Unicron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40497/","id":40497,"name":"Death's Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40543/","id":40543,"name":"Colonel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40548/","id":40548,"name":"The Carrier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40568/","id":40568,"name":"Bastion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40813/","id":40813,"name":"Android 19"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40845/","id":40845,"name":"Bender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40849/","id":40849,"name":"Robot Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40862/","id":40862,"name":"Danger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40974/","id":40974,"name":"Alpha Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41177/","id":41177,"name":"The Amazing Screw-On Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41241/","id":41241,"name":"Shaolin Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41570/","id":41570,"name":"Adronicus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41577/","id":41577,"name":"Intello"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41675/","id":41675,"name":"Attackoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41691/","id":41691,"name":"Rodimus Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41732/","id":41732,"name":"Rover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41825/","id":41825,"name":"Mechagodzilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41831/","id":41831,"name":"Metroplex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41833/","id":41833,"name":"Prowl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41834/","id":41834,"name":"Shrapnel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41835/","id":41835,"name":"Predaking"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41836/","id":41836,"name":"Skywarp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41837/","id":41837,"name":"Thundercracker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41838/","id":41838,"name":"Astrotrain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41854/","id":41854,"name":"Lazerbeak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41855/","id":41855,"name":"Ramjet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41856/","id":41856,"name":"Scourge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41859/","id":41859,"name":"Mirage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41860/","id":41860,"name":"Hook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41861/","id":41861,"name":"Mixmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41862/","id":41862,"name":"Long Haul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41863/","id":41863,"name":"Scavenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41864/","id":41864,"name":"Bonecrusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41865/","id":41865,"name":"Scrapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41889/","id":41889,"name":"Vortex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41890/","id":41890,"name":"Trailcutter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41891/","id":41891,"name":"Swindle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41892/","id":41892,"name":"Brawl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41893/","id":41893,"name":"Blast Off"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41894/","id":41894,"name":"Onslaught"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41897/","id":41897,"name":"Blitzwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41898/","id":41898,"name":"Bruticus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41899/","id":41899,"name":"Sunstreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41901/","id":41901,"name":"Ultra Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41902/","id":41902,"name":"Galvatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41903/","id":41903,"name":"Frenzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41904/","id":41904,"name":"Abominus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41905/","id":41905,"name":"Blaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41906/","id":41906,"name":"Ramhorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41907/","id":41907,"name":"Runamuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41908/","id":41908,"name":"Runabout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41909/","id":41909,"name":"Jetfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41910/","id":41910,"name":"Tracks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41911/","id":41911,"name":"Trypticon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41913/","id":41913,"name":"Broadside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41914/","id":41914,"name":"Smokescreen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41915/","id":41915,"name":"Barrage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41921/","id":41921,"name":"Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41923/","id":41923,"name":"Huffer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41933/","id":41933,"name":"Motormaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41934/","id":41934,"name":"Cliffjumper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41936/","id":41936,"name":"Warpath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41937/","id":41937,"name":"Buzzsaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41938/","id":41938,"name":"Wildrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41939/","id":41939,"name":"Dead End"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41940/","id":41940,"name":"Drag Strip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41941/","id":41941,"name":"Menasor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41942/","id":41942,"name":"Breakdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41943/","id":41943,"name":"Windcharger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41944/","id":41944,"name":"Nosecone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41955/","id":41955,"name":"Steeljaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41956/","id":41956,"name":"Afterburner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41958/","id":41958,"name":"Computron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41959/","id":41959,"name":"Defensor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41960/","id":41960,"name":"Grapple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41961/","id":41961,"name":"Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41962/","id":41962,"name":"Kup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41971/","id":41971,"name":"Sky Lynx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41972/","id":41972,"name":"Hound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41973/","id":41973,"name":"Strafe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41974/","id":41974,"name":"Hoist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41975/","id":41975,"name":"Chromedome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41980/","id":41980,"name":"Thrust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41982/","id":41982,"name":"Doublecross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41983/","id":41983,"name":"Doubledealer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41984/","id":41984,"name":"Scattershot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41987/","id":41987,"name":"Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41994/","id":41994,"name":"Beachcomber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41995/","id":41995,"name":"Piranacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41996/","id":41996,"name":"Nightbeat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41997/","id":41997,"name":"Twinstrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41998/","id":41998,"name":"Landfill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41999/","id":41999,"name":"Fireflight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42000/","id":42000,"name":"Streetwise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42002/","id":42002,"name":"Hun-Gurrr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42003/","id":42003,"name":"Blight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42004/","id":42004,"name":"Divebomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42005/","id":42005,"name":"Razorclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42006/","id":42006,"name":"Tantrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42007/","id":42007,"name":"Needlenose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42008/","id":42008,"name":"Sixshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42013/","id":42013,"name":"Chop Shop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42014/","id":42014,"name":"Brawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42015/","id":42015,"name":"Sunstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42018/","id":42018,"name":"Kickback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42019/","id":42019,"name":"Overbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42020/","id":42020,"name":"Sideswipe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42021/","id":42021,"name":"Skydive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42022/","id":42022,"name":"Rippersnapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42024/","id":42024,"name":"Windrazor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42026/","id":42026,"name":"Squeezeplay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42027/","id":42027,"name":"Squawkbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42028/","id":42028,"name":"Apeface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42029/","id":42029,"name":"Overkill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42033/","id":42033,"name":"Slugfest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42047/","id":42047,"name":"Agent Cheesecake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42167/","id":42167,"name":"Gemeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42334/","id":42334,"name":"Praxagora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42559/","id":42559,"name":"Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42652/","id":42652,"name":"Maxis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42975/","id":42975,"name":"Ghost Rider 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43028/","id":43028,"name":"Steel Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43289/","id":43289,"name":"NM-E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43572/","id":43572,"name":"Automatic Kafka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43579/","id":43579,"name":"Tracer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43637/","id":43637,"name":"Hot Shot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43737/","id":43737,"name":"Chrysalis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43754/","id":43754,"name":"Praetor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43865/","id":43865,"name":"Ratbat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43928/","id":43928,"name":"Ironhorse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44100/","id":44100,"name":"Huitzil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44112/","id":44112,"name":"Cross Wordo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44346/","id":44346,"name":"Supremor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44364/","id":44364,"name":"Arcee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44432/","id":44432,"name":"Death's Head 3.0"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44549/","id":44549,"name":"Tom Tom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45041/","id":45041,"name":"Ozana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45067/","id":45067,"name":"Arch-E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45097/","id":45097,"name":"Hugo Longride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45326/","id":45326,"name":"Armoured Gideon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45336/","id":45336,"name":"Metal Sonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45344/","id":45344,"name":"A.D.A.M."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45349/","id":45349,"name":"Heavy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45350/","id":45350,"name":"Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45392/","id":45392,"name":"Scratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45393/","id":45393,"name":"Grounder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45394/","id":45394,"name":"Coconuts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45582/","id":45582,"name":"Commander Brutus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45586/","id":45586,"name":"Metamorphia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45606/","id":45606,"name":"Geena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45627/","id":45627,"name":"Bokkun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45628/","id":45628,"name":"Decoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45629/","id":45629,"name":"Bocoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45631/","id":45631,"name":"Emerl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45634/","id":45634,"name":"E-102 γ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45640/","id":45640,"name":"E-123 Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45665/","id":45665,"name":"Nicole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45686/","id":45686,"name":"E-10000R"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45707/","id":45707,"name":"Android 16"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45789/","id":45789,"name":"Coldfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45791/","id":45791,"name":"Coldsteel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45897/","id":45897,"name":"Marvin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46006/","id":46006,"name":"Zeta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46474/","id":46474,"name":"NoMan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46558/","id":46558,"name":"The Executioner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46577/","id":46577,"name":"Dynamic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46606/","id":46606,"name":"The Commissar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46630/","id":46630,"name":"Zotarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46641/","id":46641,"name":"Cauldron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46684/","id":46684,"name":"T-Infinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46820/","id":46820,"name":"Rashell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46870/","id":46870,"name":"Monstrollo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46885/","id":46885,"name":"Karel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46886/","id":46886,"name":"Capek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46887/","id":46887,"name":"Asimov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47012/","id":47012,"name":"Super Duper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47059/","id":47059,"name":"Djinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47069/","id":47069,"name":"Electro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47078/","id":47078,"name":"Ulthro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47195/","id":47195,"name":"Marvex the Super-Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47279/","id":47279,"name":"Stel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47321/","id":47321,"name":"Computo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47380/","id":47380,"name":"Golden Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47515/","id":47515,"name":"The Protector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47551/","id":47551,"name":"Kilg%re"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47586/","id":47586,"name":"Carapax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47594/","id":47594,"name":"Peabody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47629/","id":47629,"name":"Zybox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47760/","id":47760,"name":"Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47767/","id":47767,"name":"Astro Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47784/","id":47784,"name":"Atomic Robo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47929/","id":47929,"name":"4-LOM"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47938/","id":47938,"name":"IG 88"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48011/","id":48011,"name":"Scud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48089/","id":48089,"name":"Mr. Pendulum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48210/","id":48210,"name":"Citadel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48331/","id":48331,"name":"Clank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48356/","id":48356,"name":"Flexo the Rubber Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48454/","id":48454,"name":"Bombshell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48483/","id":48483,"name":"Jorlan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48510/","id":48510,"name":"Octane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48561/","id":48561,"name":"Silverbolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48562/","id":48562,"name":"Slingshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48563/","id":48563,"name":"Air Raid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48567/","id":48567,"name":"Skids"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48568/","id":48568,"name":"Powerglide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48569/","id":48569,"name":"Seaspray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48573/","id":48573,"name":"Blades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48574/","id":48574,"name":"Groove"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48575/","id":48575,"name":"First Aid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48576/","id":48576,"name":"Hot Spot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48580/","id":48580,"name":"Mindwipe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48581/","id":48581,"name":"Skullcruncher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48582/","id":48582,"name":"Weirdwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48662/","id":48662,"name":"Galactiac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48727/","id":48727,"name":"Bludgeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48728/","id":48728,"name":"Octopunch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48729/","id":48729,"name":"Stranglehold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48841/","id":48841,"name":"Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49074/","id":49074,"name":"Molecular Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49204/","id":49204,"name":"Robot Santa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49205/","id":49205,"name":"Flexo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49446/","id":49446,"name":"Quake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49447/","id":49447,"name":"Dreadwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49448/","id":49448,"name":"Darkwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49449/","id":49449,"name":"Fangry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49451/","id":49451,"name":"Headstrong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49452/","id":49452,"name":"Rampage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49538/","id":49538,"name":"Necro Cop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49665/","id":49665,"name":"Megistus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49668/","id":49668,"name":"Galfrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49693/","id":49693,"name":"RRU-9-2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49715/","id":49715,"name":"Krydel-4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49727/","id":49727,"name":"T-Cher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49874/","id":49874,"name":"X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49962/","id":49962,"name":"Fugitoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49972/","id":49972,"name":"Sigma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50037/","id":50037,"name":"Mega Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50112/","id":50112,"name":"Lois Lane Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50282/","id":50282,"name":"Prototype 2000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50290/","id":50290,"name":"Optimus Primal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50321/","id":50321,"name":"Megatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50364/","id":50364,"name":"Rhinox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50365/","id":50365,"name":"Cheetor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50368/","id":50368,"name":"Depth Charge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50369/","id":50369,"name":"Rattrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50404/","id":50404,"name":"Quickstrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50405/","id":50405,"name":"Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50407/","id":50407,"name":"Magmatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50411/","id":50411,"name":"Blackarachnia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50412/","id":50412,"name":"Rampage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50414/","id":50414,"name":"Tarantulas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50419/","id":50419,"name":"Proto Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50443/","id":50443,"name":"Rush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50446/","id":50446,"name":"Treble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50582/","id":50582,"name":"Hammerstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50584/","id":50584,"name":"Deadlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50585/","id":50585,"name":"Joe Pineapples"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50586/","id":50586,"name":"Blackblood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50587/","id":50587,"name":"Mongrol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50588/","id":50588,"name":"Mek-Quake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50589/","id":50589,"name":"Steelhorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50590/","id":50590,"name":"Morrigun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50591/","id":50591,"name":"Ro-Jaws"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50726/","id":50726,"name":"Happy Shrapnel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50730/","id":50730,"name":"Protoman.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50740/","id":50740,"name":"Mad Ronn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50783/","id":50783,"name":"Yron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50856/","id":50856,"name":"Cerebro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50908/","id":50908,"name":"T1-LB"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51321/","id":51321,"name":"Anna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51351/","id":51351,"name":"REMAC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51362/","id":51362,"name":"Inquisitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51379/","id":51379,"name":"Steelgauntlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51483/","id":51483,"name":"Brother EYE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51496/","id":51496,"name":"Dinobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51499/","id":51499,"name":"Twistoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51512/","id":51512,"name":"Sarnath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51644/","id":51644,"name":"Ricky Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51708/","id":51708,"name":"Magna Guard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51782/","id":51782,"name":"Guri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51787/","id":51787,"name":"LE-BO2D9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51887/","id":51887,"name":"Jimmy Olsen Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51954/","id":51954,"name":"T-1000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52002/","id":52002,"name":"Tigatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52007/","id":52007,"name":"Lo-Karr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52043/","id":52043,"name":"R5-D4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52045/","id":52045,"name":"Fists of the Guardians"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52063/","id":52063,"name":"Scorponok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52090/","id":52090,"name":"Robot-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52160/","id":52160,"name":"Babbage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52297/","id":52297,"name":"Shagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52443/","id":52443,"name":"T.I.M.M.I.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52444/","id":52444,"name":"C.C."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52466/","id":52466,"name":"Agent Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52467/","id":52467,"name":"The Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52468/","id":52468,"name":"Merovingian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52664/","id":52664,"name":"8T88"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52800/","id":52800,"name":"XP-2000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52825/","id":52825,"name":"TC-14"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52881/","id":52881,"name":"Arale Norimaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52925/","id":52925,"name":"R4-P17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53045/","id":53045,"name":"Mouser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53103/","id":53103,"name":"Zippo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53105/","id":53105,"name":"Hitaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53183/","id":53183,"name":"Batman Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53195/","id":53195,"name":"Mecha-Maid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53399/","id":53399,"name":"OOM-9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53406/","id":53406,"name":"4-NG"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53505/","id":53505,"name":"2-1B"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53711/","id":53711,"name":"Red Alert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53738/","id":53738,"name":"Scavenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53947/","id":53947,"name":"Walter the Wobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54177/","id":54177,"name":"Red Volcano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54191/","id":54191,"name":"The Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54491/","id":54491,"name":"Beepie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54510/","id":54510,"name":"Android Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54511/","id":54511,"name":"Android X-4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54535/","id":54535,"name":"Antigone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54719/","id":54719,"name":"ED-209"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54747/","id":54747,"name":"Jihad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54753/","id":54753,"name":"Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55130/","id":55130,"name":"Big Brother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55193/","id":55193,"name":"Mocker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55324/","id":55324,"name":"Barricade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55326/","id":55326,"name":"Blackout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55419/","id":55419,"name":"Bozo the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55494/","id":55494,"name":"Tinny Tim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55506/","id":55506,"name":"Colonel.exe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55515/","id":55515,"name":"Mecha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55608/","id":55608,"name":"Mary Schott"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55637/","id":55637,"name":"Flipside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55771/","id":55771,"name":"Spider-Man Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55790/","id":55790,"name":"Dialga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55795/","id":55795,"name":"Fortress Maximus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55796/","id":55796,"name":"Cerebros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55797/","id":55797,"name":"Alpha Trion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55827/","id":55827,"name":"Evangelion Unit 01"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55839/","id":55839,"name":"Evangelion Unit 02"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55840/","id":55840,"name":"Evangelion Unit 00"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55846/","id":55846,"name":"Agent Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55847/","id":55847,"name":"Agent Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55922/","id":55922,"name":"Copper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55949/","id":55949,"name":"Hardtop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55950/","id":55950,"name":"Wreckage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55952/","id":55952,"name":"Camshaft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55953/","id":55953,"name":"Landmine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55954/","id":55954,"name":"Dreadwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56167/","id":56167,"name":"Droideka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56232/","id":56232,"name":"Cybersaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56297/","id":56297,"name":"Arsenal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56299/","id":56299,"name":"Iguanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56300/","id":56300,"name":"Bomb-Burst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56301/","id":56301,"name":"Skullgrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56302/","id":56302,"name":"Thunderwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56303/","id":56303,"name":"T3-M4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56325/","id":56325,"name":"Silent Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56340/","id":56340,"name":"Phong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56396/","id":56396,"name":"Bluestreak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56450/","id":56450,"name":"Greta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56452/","id":56452,"name":"Snaptrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56453/","id":56453,"name":"Skalor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56454/","id":56454,"name":"Nautilator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56456/","id":56456,"name":"Tentakil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56458/","id":56458,"name":"Springer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56459/","id":56459,"name":"Stockade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56460/","id":56460,"name":"Longarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56461/","id":56461,"name":"Salvage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56487/","id":56487,"name":"Wheelie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56490/","id":56490,"name":"Luminary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56527/","id":56527,"name":"Palkia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56598/","id":56598,"name":"Passion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56655/","id":56655,"name":"Searchlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56656/","id":56656,"name":"Blurr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56679/","id":56679,"name":"Stem Cell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56684/","id":56684,"name":"Wreck-Gar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56705/","id":56705,"name":"Joyride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56783/","id":56783,"name":"Samurai Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56836/","id":56836,"name":"Megalith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56837/","id":56837,"name":"Quintronic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56865/","id":56865,"name":"Torgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56925/","id":56925,"name":"Gonzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56934/","id":56934,"name":"Robot Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57025/","id":57025,"name":"PROXY"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57050/","id":57050,"name":"Lala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57228/","id":57228,"name":"Payload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57229/","id":57229,"name":"Crankcase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57230/","id":57230,"name":"Grindcore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57231/","id":57231,"name":"Signal Flare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57232/","id":57232,"name":"Elita-One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57233/","id":57233,"name":"Clocker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57234/","id":57234,"name":"Crosshairs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57235/","id":57235,"name":"Skyblast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57236/","id":57236,"name":"Wingblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57237/","id":57237,"name":"Breakaway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57247/","id":57247,"name":"C2DT42"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57255/","id":57255,"name":"Colosso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57279/","id":57279,"name":"Blastfurnace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57301/","id":57301,"name":"Liege Maximo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57327/","id":57327,"name":"The Helper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57404/","id":57404,"name":"Metal Scourge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57509/","id":57509,"name":"Bulkhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57627/","id":57627,"name":"Finback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57637/","id":57637,"name":"Ruckus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57638/","id":57638,"name":"Roadgrabber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57639/","id":57639,"name":"Roadbuster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57640/","id":57640,"name":"Impactor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57641/","id":57641,"name":"Topspin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57642/","id":57642,"name":"Sandstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57643/","id":57643,"name":"Scoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57644/","id":57644,"name":"Twin Twist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57645/","id":57645,"name":"Whirl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57646/","id":57646,"name":"Dogfight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57647/","id":57647,"name":"Pointblank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57651/","id":57651,"name":"Sentinel Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57652/","id":57652,"name":"Decimus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57662/","id":57662,"name":"Bumper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57663/","id":57663,"name":"Fastback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57664/","id":57664,"name":"Cy-Kill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57666/","id":57666,"name":"Hubcap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57667/","id":57667,"name":"Chromia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57668/","id":57668,"name":"Crasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57674/","id":57674,"name":"Detour"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57675/","id":57675,"name":"Road Hugger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57676/","id":57676,"name":"Blackjack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57677/","id":57677,"name":"Hyperdrive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57678/","id":57678,"name":"Download"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57679/","id":57679,"name":"Gizmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57680/","id":57680,"name":"Backbeat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57681/","id":57681,"name":"Gutcruncher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57682/","id":57682,"name":"Banzai-Tron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57707/","id":57707,"name":"Khaji Da"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57810/","id":57810,"name":"Hardhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57812/","id":57812,"name":"Alex Ultron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57815/","id":57815,"name":"Outback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57816/","id":57816,"name":"Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57817/","id":57817,"name":"Sizzle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57830/","id":57830,"name":"Leadfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57831/","id":57831,"name":"Skram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57832/","id":57832,"name":"Road Rocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57833/","id":57833,"name":"Nova Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57842/","id":57842,"name":"Roller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57846/","id":57846,"name":"Alloy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57852/","id":57852,"name":"Icepick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57853/","id":57853,"name":"Birdbrain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57855/","id":57855,"name":"Scowl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57856/","id":57856,"name":"Slog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57857/","id":57857,"name":"Wildfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57858/","id":57858,"name":"Monstructor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57865/","id":57865,"name":"Jhiaxus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57867/","id":57867,"name":"Spinister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57868/","id":57868,"name":"Getaway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57869/","id":57869,"name":"Kick-Off"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57870/","id":57870,"name":"Pincher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57871/","id":57871,"name":"Gunrunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57872/","id":57872,"name":"Downshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57873/","id":57873,"name":"Overdrive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57874/","id":57874,"name":"Backstreet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57880/","id":57880,"name":"Axer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57881/","id":57881,"name":"Roadblock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57882/","id":57882,"name":"Fastlane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57883/","id":57883,"name":"Cloudraker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57885/","id":57885,"name":"Jackpot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57886/","id":57886,"name":"Rollout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57887/","id":57887,"name":"Over-Run"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57888/","id":57888,"name":"Skyfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57889/","id":57889,"name":"Sprocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57890/","id":57890,"name":"Vroom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57891/","id":57891,"name":"Windbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57892/","id":57892,"name":"Turbofire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57893/","id":57893,"name":"Ransack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57894/","id":57894,"name":"Repugnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57895/","id":57895,"name":"Longtooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57896/","id":57896,"name":"Straxus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57900/","id":57900,"name":"Viewfinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57901/","id":57901,"name":"Spyglass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57902/","id":57902,"name":"Spectro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57906/","id":57906,"name":"Atlas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57915/","id":57915,"name":"Fixit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57918/","id":57918,"name":"Locrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57945/","id":57945,"name":"Waverider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57948/","id":57948,"name":"Cloudburst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57949/","id":57949,"name":"Groundbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57950/","id":57950,"name":"Manta Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57951/","id":57951,"name":"Drench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57973/","id":57973,"name":"Billy Bird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57974/","id":57974,"name":"Guns Gummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57975/","id":57975,"name":"The Ham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58083/","id":58083,"name":"Hulk Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58206/","id":58206,"name":"T-1000000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58232/","id":58232,"name":"WeeGee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58264/","id":58264,"name":"Super Battle Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58358/","id":58358,"name":"Tekik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58363/","id":58363,"name":"Project 2501"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58385/","id":58385,"name":"Piston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58386/","id":58386,"name":"Fasttrack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58393/","id":58393,"name":"Naxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58490/","id":58490,"name":"JU7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58626/","id":58626,"name":"Qubit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58632/","id":58632,"name":"Drift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58724/","id":58724,"name":"The Fallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58838/","id":58838,"name":"Sinistron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58855/","id":58855,"name":"Nickel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58857/","id":58857,"name":"Bismuth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58858/","id":58858,"name":"Antimony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58866/","id":58866,"name":"Cobalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58867/","id":58867,"name":"Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58910/","id":58910,"name":"Met-L"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58929/","id":58929,"name":"Gantz Sphere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58992/","id":58992,"name":"Strong-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59063/","id":59063,"name":"Captain Blake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59152/","id":59152,"name":"1-A"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59153/","id":59153,"name":"Tekla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59226/","id":59226,"name":"Talpa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59228/","id":59228,"name":"E-7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59230/","id":59230,"name":"Malev Emperor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59231/","id":59231,"name":"Malevolents"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59233/","id":59233,"name":"0-1X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59234/","id":59234,"name":"Grand One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59235/","id":59235,"name":"Grandmother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59250/","id":59250,"name":"Dynamic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59293/","id":59293,"name":"Agantha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59321/","id":59321,"name":"Moonracer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59323/","id":59323,"name":"Firestar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59379/","id":59379,"name":"Mortoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59486/","id":59486,"name":"Oswald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59552/","id":59552,"name":"Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59590/","id":59590,"name":"Android Andy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59659/","id":59659,"name":"The Dire Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59779/","id":59779,"name":"Paradox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59806/","id":59806,"name":"Aemeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59850/","id":59850,"name":"Conserve and Protect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59874/","id":59874,"name":"Subliminal Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59947/","id":59947,"name":"Deluge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59966/","id":59966,"name":"Charlie the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60033/","id":60033,"name":"Lampy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60034/","id":60034,"name":"Posty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60153/","id":60153,"name":"Benedict"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60162/","id":60162,"name":"Quisling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60200/","id":60200,"name":"Diver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60201/","id":60201,"name":"Bonecrusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60202/","id":60202,"name":"Noctorro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60203/","id":60203,"name":"Grizzly-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60204/","id":60204,"name":"Bantor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60205/","id":60205,"name":"Cohrada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60231/","id":60231,"name":"Razorbeast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60234/","id":60234,"name":"Ramulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60235/","id":60235,"name":"Lio Convoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60295/","id":60295,"name":"Liger Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60324/","id":60324,"name":"Fracture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60326/","id":60326,"name":"Overcast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60327/","id":60327,"name":"Jetstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60328/","id":60328,"name":"Dropkick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60330/","id":60330,"name":"Incinerator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60336/","id":60336,"name":"Modra-6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60407/","id":60407,"name":"H8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60444/","id":60444,"name":"Eradikator 6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60485/","id":60485,"name":"Wildwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60510/","id":60510,"name":"Assassin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60727/","id":60727,"name":"Grotusque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60728/","id":60728,"name":"Big Daddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60782/","id":60782,"name":"Walking Stiletto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60915/","id":60915,"name":"Strongarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60926/","id":60926,"name":"IQ-9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60936/","id":60936,"name":"Good Shepherd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61119/","id":61119,"name":"B-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61232/","id":61232,"name":"Neutro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61294/","id":61294,"name":"Sho-Gun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61321/","id":61321,"name":"Boudicca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61425/","id":61425,"name":"Turmoil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61431/","id":61431,"name":"Lucifer 7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61512/","id":61512,"name":"Wick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61534/","id":61534,"name":"Nano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61613/","id":61613,"name":"Toshiki Shirasaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61620/","id":61620,"name":"Night Tenjou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61745/","id":61745,"name":"Computo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61750/","id":61750,"name":"Android 8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61768/","id":61768,"name":"Sergeant Metallic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62018/","id":62018,"name":"Egghead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62160/","id":62160,"name":"VIRGIL"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62218/","id":62218,"name":"Jocasta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62241/","id":62241,"name":"Voltron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62353/","id":62353,"name":"Dropshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62371/","id":62371,"name":"CLINT"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62543/","id":62543,"name":"Sideways"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62544/","id":62544,"name":"Mudflap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62569/","id":62569,"name":"Ice Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62592/","id":62592,"name":"Robot OU-8-2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62604/","id":62604,"name":"Alice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62605/","id":62605,"name":"Scalpel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62631/","id":62631,"name":"The Battery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62735/","id":62735,"name":"Demolishor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62745/","id":62745,"name":"Silver Sonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62825/","id":62825,"name":"Eryx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62874/","id":62874,"name":"Hightower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62875/","id":62875,"name":"Overload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62876/","id":62876,"name":"Rampage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62884/","id":62884,"name":"Powerdive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62885/","id":62885,"name":"Jolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62969/","id":62969,"name":"Nanny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62971/","id":62971,"name":"Ultra-Metallo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63172/","id":63172,"name":"Cache"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63250/","id":63250,"name":"Botanica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63269/","id":63269,"name":"Amazoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63287/","id":63287,"name":"Waspinator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63288/","id":63288,"name":"Obsidian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63289/","id":63289,"name":"Strika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63295/","id":63295,"name":"Gamma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63312/","id":63312,"name":"Wolfang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63319/","id":63319,"name":"Shadow Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63376/","id":63376,"name":"Drone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63447/","id":63447,"name":"Emirate Xaaron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63448/","id":63448,"name":"Punch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63449/","id":63449,"name":"Tailgate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63450/","id":63450,"name":"Swerve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63451/","id":63451,"name":"Pipes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63453/","id":63453,"name":"Scamper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63455/","id":63455,"name":"Slammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63456/","id":63456,"name":"Six-Gun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63458/","id":63458,"name":"Eject"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63459/","id":63459,"name":"Rewind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63460/","id":63460,"name":"Raindance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63461/","id":63461,"name":"Fizzle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63462/","id":63462,"name":"Guzzle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63463/","id":63463,"name":"Chase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63464/","id":63464,"name":"Freeway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63465/","id":63465,"name":"Rollbar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63466/","id":63466,"name":"Wideload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63468/","id":63468,"name":"Brainstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63469/","id":63469,"name":"Highbrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63470/","id":63470,"name":"Hosehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63471/","id":63471,"name":"Sureshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63472/","id":63472,"name":"Quickmix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63473/","id":63473,"name":"Joyride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63474/","id":63474,"name":"Slapdash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63475/","id":63475,"name":"Sky High"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63476/","id":63476,"name":"Chainclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63477/","id":63477,"name":"Doubleheader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63479/","id":63479,"name":"Catilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63480/","id":63480,"name":"Flak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63481/","id":63481,"name":"Sidetrack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63482/","id":63482,"name":"Sunrunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63484/","id":63484,"name":"Big Shot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63485/","id":63485,"name":"Mudslinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63486/","id":63486,"name":"Tote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63487/","id":63487,"name":"Powertrain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63488/","id":63488,"name":"Roadhandler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63489/","id":63489,"name":"Tailspin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63490/","id":63490,"name":"Freewheeler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63491/","id":63491,"name":"Stakeout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63492/","id":63492,"name":"Fixit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63493/","id":63493,"name":"Big Hauler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63494/","id":63494,"name":"Slowpoke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63495/","id":63495,"name":"Heavy Tread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63496/","id":63496,"name":"Hydraulic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63497/","id":63497,"name":"Blaze Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63498/","id":63498,"name":"Treadbolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63499/","id":63499,"name":"Eagle Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63500/","id":63500,"name":"Neutro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63501/","id":63501,"name":"Takedown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63503/","id":63503,"name":"Acid Storm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63504/","id":63504,"name":"Venom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63505/","id":63505,"name":"Pounce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63506/","id":63506,"name":"Wingspan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63507/","id":63507,"name":"Battletrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63508/","id":63508,"name":"Flywheels"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63509/","id":63509,"name":"Cindersaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63510/","id":63510,"name":"Flamefeather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63511/","id":63511,"name":"Sparkstalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63512/","id":63512,"name":"Snapdragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63513/","id":63513,"name":"Horri-Bull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63514/","id":63514,"name":"Misfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63515/","id":63515,"name":"Slugslinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63516/","id":63516,"name":"Triggerhappy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63517/","id":63517,"name":"Bugly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63518/","id":63518,"name":"Submarauder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63519/","id":63519,"name":"Carnivac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63520/","id":63520,"name":"Snarler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63521/","id":63521,"name":"Whisper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63522/","id":63522,"name":"Nightflight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63523/","id":63523,"name":"Stormcloud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63524/","id":63524,"name":"Tailwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63525/","id":63525,"name":"Groundhog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63526/","id":63526,"name":"Motorhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63527/","id":63527,"name":"Roller Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63528/","id":63528,"name":"Bombshock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63529/","id":63529,"name":"Growl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63530/","id":63530,"name":"Skyhopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63531/","id":63531,"name":"Skystalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63532/","id":63532,"name":"Airwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63533/","id":63533,"name":"Greasepit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63534/","id":63534,"name":"Flattop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63535/","id":63535,"name":"Roughstuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63590/","id":63590,"name":"Scientific Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63645/","id":63645,"name":"Toady-Drone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63865/","id":63865,"name":"Batch-13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63907/","id":63907,"name":"FE-9Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63938/","id":63938,"name":"Viper Probe Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63943/","id":63943,"name":"Infiltrator Probe Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63944/","id":63944,"name":"Z-X3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63991/","id":63991,"name":"K-3PX"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64000/","id":64000,"name":"LE-914"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64081/","id":64081,"name":"A-3DO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64114/","id":64114,"name":"D-4R5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64115/","id":64115,"name":"B3 Ultra Battle Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64117/","id":64117,"name":"9BD"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64133/","id":64133,"name":"IG-97"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64231/","id":64231,"name":"Unit 101101"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64405/","id":64405,"name":"HK-24"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64530/","id":64530,"name":"Peebri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64531/","id":64531,"name":"Peegi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64532/","id":64532,"name":"Peebrit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64547/","id":64547,"name":"Assemble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64590/","id":64590,"name":"SD-9 Battle Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64591/","id":64591,"name":"SD-10 Battle Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64654/","id":64654,"name":"Crabmeat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64664/","id":64664,"name":"R-55"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64689/","id":64689,"name":"Ganger 5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64713/","id":64713,"name":"Widget"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64721/","id":64721,"name":"RA-7 Protocol Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64732/","id":64732,"name":"Flek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64752/","id":64752,"name":"Magneto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64753/","id":64753,"name":"Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64754/","id":64754,"name":"Capitan Rivet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64772/","id":64772,"name":"68-RKO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64791/","id":64791,"name":"3DVO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64911/","id":64911,"name":"9-A9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65071/","id":65071,"name":"Treadshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65072/","id":65072,"name":"Erector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65109/","id":65109,"name":"Highjump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65110/","id":65110,"name":"Swindler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65111/","id":65111,"name":"Red Hot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65113/","id":65113,"name":"Seawatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65135/","id":65135,"name":"Clench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65136/","id":65136,"name":"Airazor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65137/","id":65137,"name":"B'Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65138/","id":65138,"name":"Cybershark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65139/","id":65139,"name":"Dead End"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65140/","id":65140,"name":"Drill Bit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65141/","id":65141,"name":"Insecticon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65142/","id":65142,"name":"Manterror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65143/","id":65143,"name":"Optimus Minor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65144/","id":65144,"name":"Polar Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65145/","id":65145,"name":"Retrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65146/","id":65146,"name":"Spittor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65147/","id":65147,"name":"Stinkbomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65148/","id":65148,"name":"Terrorsaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65149/","id":65149,"name":"Torca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65150/","id":65150,"name":"Transquito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65158/","id":65158,"name":"Electric Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65207/","id":65207,"name":"Suzy Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65219/","id":65219,"name":"H.E.R.B."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65255/","id":65255,"name":"M.I.C.R.A."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65305/","id":65305,"name":"Tungsten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65558/","id":65558,"name":"Red Torpedo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65559/","id":65559,"name":"Red Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65760/","id":65760,"name":"Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65812/","id":65812,"name":"Al-Badur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65813/","id":65813,"name":"Judge Deliberata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65814/","id":65814,"name":"General Ghyrik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65815/","id":65815,"name":"Cryotek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65816/","id":65816,"name":"Blastcharge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65817/","id":65817,"name":"Tankor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65819/","id":65819,"name":"Derodomontatus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65820/","id":65820,"name":"Apelinq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65821/","id":65821,"name":"Primal Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65822/","id":65822,"name":"Nightscream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65823/","id":65823,"name":"Rotorbolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65824/","id":65824,"name":"Devcon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65825/","id":65825,"name":"Fractyl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65826/","id":65826,"name":"Tap-Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65827/","id":65827,"name":"Glyph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65828/","id":65828,"name":"Sentinel Maximus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65829/","id":65829,"name":"CatSCAN"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65830/","id":65830,"name":"Arblus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65845/","id":65845,"name":"Blast Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65848/","id":65848,"name":"Cement-Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65849/","id":65849,"name":"Countdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65850/","id":65850,"name":"Crossblades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65851/","id":65851,"name":"Crumble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65852/","id":65852,"name":"Direct-Hit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65854/","id":65854,"name":"Excavator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65855/","id":65855,"name":"Fireshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65857/","id":65857,"name":"Full-Barrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65858/","id":65858,"name":"Gatoraider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65859/","id":65859,"name":"Glitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65860/","id":65860,"name":"Gnaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65861/","id":65861,"name":"Greaser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65862/","id":65862,"name":"Grit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65863/","id":65863,"name":"Groundpounder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65864/","id":65864,"name":"Grommet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65865/","id":65865,"name":"Groundshaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65866/","id":65866,"name":"Gusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65867/","id":65867,"name":"Half-Track"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65869/","id":65869,"name":"Heave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65871/","id":65871,"name":"Hot House"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65872/","id":65872,"name":"Hubs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65873/","id":65873,"name":"Ironworks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65874/","id":65874,"name":"Knockout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65878/","id":65878,"name":"Krok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65879/","id":65879,"name":"Lionizer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65883/","id":65883,"name":"Sights"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65887/","id":65887,"name":"Skar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65890/","id":65890,"name":"Push-Button"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65891/","id":65891,"name":"Mainframe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65892/","id":65892,"name":"Meltdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65893/","id":65893,"name":"Mini-spy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65894/","id":65894,"name":"Missile Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65895/","id":65895,"name":"Razor-Sharp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65896/","id":65896,"name":"Moonrock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65897/","id":65897,"name":"Oiler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65898/","id":65898,"name":"Overflow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65899/","id":65899,"name":"Phaser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65900/","id":65900,"name":"Pipeline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65901/","id":65901,"name":"Power Punch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65902/","id":65902,"name":"Power Run"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65903/","id":65903,"name":"Quickswitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65904/","id":65904,"name":"Rad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65906/","id":65906,"name":"Retro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65913/","id":65913,"name":"Seawing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65915/","id":65915,"name":"Skyhammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65916/","id":65916,"name":"Slamdance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65917/","id":65917,"name":"Sledge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65918/","id":65918,"name":"Slide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65919/","id":65919,"name":"Spaceshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65920/","id":65920,"name":"Splashdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65921/","id":65921,"name":"Stonecruncher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65922/","id":65922,"name":"Strikedown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65923/","id":65923,"name":"Surge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65924/","id":65924,"name":"Top-Heavy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65927/","id":65927,"name":"Catgut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65928/","id":65928,"name":"Full-Tilt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65934/","id":65934,"name":"Terror-Tread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65935/","id":65935,"name":"Tracer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65936/","id":65936,"name":"Trip-Up"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65937/","id":65937,"name":"Vanquish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65938/","id":65938,"name":"Wheelblaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65939/","id":65939,"name":"Windsweeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65942/","id":65942,"name":"Bluster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65946/","id":65946,"name":"Crosscut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65947/","id":65947,"name":"Darklight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65949/","id":65949,"name":"Deep Cover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65952/","id":65952,"name":"Gigantron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65953/","id":65953,"name":"Junkyard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65954/","id":65954,"name":"Landshark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65955/","id":65955,"name":"Nightbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65956/","id":65956,"name":"Skyquake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65958/","id":65958,"name":"Small Foot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65961/","id":65961,"name":"Vibes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65963/","id":65963,"name":"Wheezel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65971/","id":65971,"name":"Backfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65972/","id":65972,"name":"Megadeath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65973/","id":65973,"name":"Ripsnorter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65974/","id":65974,"name":"Stampede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65975/","id":65975,"name":"Steamhammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65976/","id":65976,"name":"Switchblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65978/","id":65978,"name":"Dirt Boss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65979/","id":65979,"name":"Incinerator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65980/","id":65980,"name":"Jolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65981/","id":65981,"name":"Leader-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65983/","id":65983,"name":"Rollbar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65984/","id":65984,"name":"Sparkplug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65985/","id":65985,"name":"Buzzsaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65986/","id":65986,"name":"Crumplezone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65987/","id":65987,"name":"Drill Bit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65988/","id":65988,"name":"Dualor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65989/","id":65989,"name":"Jetstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65990/","id":65990,"name":"Runway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65991/","id":65991,"name":"Sonar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65997/","id":65997,"name":"Grindor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65998/","id":65998,"name":"High Wire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65999/","id":65999,"name":"Perceptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66000/","id":66000,"name":"Sureshock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66002/","id":66002,"name":"Blackout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66003/","id":66003,"name":"Liftor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66004/","id":66004,"name":"Bonecrusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66005/","id":66005,"name":"Knockout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66006/","id":66006,"name":"Wreckage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66007/","id":66007,"name":"Laserbeak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66008/","id":66008,"name":"Astroscope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66009/","id":66009,"name":"Comettor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66010/","id":66010,"name":"Crosswise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66011/","id":66011,"name":"Dune Runner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66012/","id":66012,"name":"Mirage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66013/","id":66013,"name":"Oval"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66014/","id":66014,"name":"Payload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66015/","id":66015,"name":"Ransack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66016/","id":66016,"name":"Rook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66017/","id":66017,"name":"Sky Blast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66018/","id":66018,"name":"Spiral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66021/","id":66021,"name":"Backtrack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66022/","id":66022,"name":"Downshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66023/","id":66023,"name":"Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66025/","id":66025,"name":"Iceberg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66028/","id":66028,"name":"Over-Run"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66031/","id":66031,"name":"Overload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66033/","id":66033,"name":"Firebot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66034/","id":66034,"name":"Makeshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66038/","id":66038,"name":"Refute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66039/","id":66039,"name":"Tidal Wave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66040/","id":66040,"name":"Wind Sheer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66062/","id":66062,"name":"Armorhide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66063/","id":66063,"name":"Dark Scream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66064/","id":66064,"name":"Gas Skunk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66065/","id":66065,"name":"Mega-Octane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66066/","id":66066,"name":"Midnight Express"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66067/","id":66067,"name":"Movor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66068/","id":66068,"name":"Rail Racer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66069/","id":66069,"name":"Railspike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66070/","id":66070,"name":"Rapid Run"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66071/","id":66071,"name":"Ro-Tor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66072/","id":66072,"name":"Ruination"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66073/","id":66073,"name":"Side Burn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66074/","id":66074,"name":"Sky-Byte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66075/","id":66075,"name":"Slapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66080/","id":66080,"name":"Brassneck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66133/","id":66133,"name":"Air Hammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66134/","id":66134,"name":"Antagony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66135/","id":66135,"name":"Armordillo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66137/","id":66137,"name":"Autocrasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66138/","id":66138,"name":"Autojetter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66139/","id":66139,"name":"Autolauncher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66140/","id":66140,"name":"Autostinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66141/","id":66141,"name":"Big Convoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66142/","id":66142,"name":"Bigmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66143/","id":66143,"name":"Buzz Saw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66155/","id":66155,"name":"Lugnut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66157/","id":66157,"name":"Sparkplug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66191/","id":66191,"name":"Silica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66228/","id":66228,"name":"XC-PU 126"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66290/","id":66290,"name":"Iwanbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66358/","id":66358,"name":"Tornado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66425/","id":66425,"name":"Blacker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66426/","id":66426,"name":"Braver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66428/","id":66428,"name":"Dashtacker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66429/","id":66429,"name":"Deathsaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66430/","id":66430,"name":"Dinoking"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66431/","id":66431,"name":"Doryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66432/","id":66432,"name":"Drillhorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66433/","id":66433,"name":"Gaihawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66434/","id":66434,"name":"Gairyu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66435/","id":66435,"name":"Galaxy Shuttle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66436/","id":66436,"name":"Goryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66437/","id":66437,"name":"Hellbat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66438/","id":66438,"name":"Holi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66440/","id":66440,"name":"Jarugar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66442/","id":66442,"name":"Kakuryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66443/","id":66443,"name":"Killbison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66444/","id":66444,"name":"Landcross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66445/","id":66445,"name":"Laster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66446/","id":66446,"name":"Leozack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66447/","id":66447,"name":"Liokaiser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66448/","id":66448,"name":"Lyzack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66449/","id":66449,"name":"Machtackle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66452/","id":66452,"name":"Rairyu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66453/","id":66453,"name":"Road Caesar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66456/","id":66456,"name":"Star Saber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66457/","id":66457,"name":"Victory Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66458/","id":66458,"name":"Wingwaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66459/","id":66459,"name":"Yokuryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66460/","id":66460,"name":"Hawkbreast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66462/","id":66462,"name":"Lionbreast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66478/","id":66478,"name":"Gargantus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66530/","id":66530,"name":"Chuffer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66561/","id":66561,"name":"Boltax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66562/","id":66562,"name":"Last Autobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66563/","id":66563,"name":"Tyrannitron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66600/","id":66600,"name":"R. Dorothy Wayneright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66695/","id":66695,"name":"Black Vulture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66697/","id":66697,"name":"Kultron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66698/","id":66698,"name":"Soniklaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66703/","id":66703,"name":"Chemodam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66704/","id":66704,"name":"Quasimodox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66725/","id":66725,"name":"Ultivac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66835/","id":66835,"name":"Hanna Control"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66891/","id":66891,"name":"Pete Ford"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66907/","id":66907,"name":"Octon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66908/","id":66908,"name":"Garrox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67148/","id":67148,"name":"Replicus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67224/","id":67224,"name":"Annie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67225/","id":67225,"name":"Carrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67226/","id":67226,"name":"Betty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67355/","id":67355,"name":"WALL•E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67356/","id":67356,"name":"EVE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67387/","id":67387,"name":"Agat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67396/","id":67396,"name":"Rack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67536/","id":67536,"name":"Hailfire Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67688/","id":67688,"name":"Klim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67749/","id":67749,"name":"Doctor Perceptron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67754/","id":67754,"name":"Roberto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67770/","id":67770,"name":"V.I.N.CENT"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67774/","id":67774,"name":"Metal Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67936/","id":67936,"name":"The Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67947/","id":67947,"name":"Factor Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67949/","id":67949,"name":"Marrie and Warren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68279/","id":68279,"name":"Canti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68307/","id":68307,"name":"Q-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68320/","id":68320,"name":"Dragon-Slayer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68327/","id":68327,"name":"G.L.7177.6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68355/","id":68355,"name":"Host Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68360/","id":68360,"name":"AK-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68361/","id":68361,"name":"SS-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68362/","id":68362,"name":"NH-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68376/","id":68376,"name":"Robot Click"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68441/","id":68441,"name":"Roxy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68586/","id":68586,"name":"Manowar, The White Streak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68642/","id":68642,"name":"AA-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68661/","id":68661,"name":"Mytek the Mighty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68835/","id":68835,"name":"Paraman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68870/","id":68870,"name":"Robomonkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68910/","id":68910,"name":"Plutonium Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68919/","id":68919,"name":"Cosmic Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69016/","id":69016,"name":"Barbelith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69189/","id":69189,"name":"The Platinum Blonde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69270/","id":69270,"name":"Porygon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69340/","id":69340,"name":"Ultimo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69431/","id":69431,"name":"Number Two"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69437/","id":69437,"name":"Chi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69438/","id":69438,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69441/","id":69441,"name":"Plum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69547/","id":69547,"name":"Shade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69656/","id":69656,"name":"Thinko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69748/","id":69748,"name":"King Mondo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69754/","id":69754,"name":"Cosmo Racer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69807/","id":69807,"name":"Nightracer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69843/","id":69843,"name":"Brong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69849/","id":69849,"name":"Gigantor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69924/","id":69924,"name":"IT-O Interrogation Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69947/","id":69947,"name":"C-3PX"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69948/","id":69948,"name":"FX-7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69950/","id":69950,"name":"EG-6 Power Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69951/","id":69951,"name":"Bollux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70083/","id":70083,"name":"Matau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70086/","id":70086,"name":"Tahnok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70311/","id":70311,"name":"R5-F7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70315/","id":70315,"name":"M-TD"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70316/","id":70316,"name":"R5-A2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70317/","id":70317,"name":"G8-R3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70318/","id":70318,"name":"R5-K6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70319/","id":70319,"name":"R5-M2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70320/","id":70320,"name":"R5-X2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70321/","id":70321,"name":"R3-A2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70322/","id":70322,"name":"R7-T1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70323/","id":70323,"name":"R7-Z0"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70329/","id":70329,"name":"TT-8L"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70330/","id":70330,"name":"8D8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70374/","id":70374,"name":"Mentor the Magnificent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70402/","id":70402,"name":"CZ-3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70403/","id":70403,"name":"A71"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70404/","id":70404,"name":"XR-85 Tank Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70405/","id":70405,"name":"Fromm Tower Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70407/","id":70407,"name":"Krath War Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70408/","id":70408,"name":"SD-6 Hulk Infantry Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70446/","id":70446,"name":"Gammadroid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70839/","id":70839,"name":"Heroman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70863/","id":70863,"name":"Genetitron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70870/","id":70870,"name":"Garm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70916/","id":70916,"name":"Cyclotron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70975/","id":70975,"name":"Klaash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71167/","id":71167,"name":"Watson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71317/","id":71317,"name":"Obotchaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71333/","id":71333,"name":"Rusty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71358/","id":71358,"name":"Chorus Sentry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71368/","id":71368,"name":"Berserker Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71501/","id":71501,"name":"The Wild Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71512/","id":71512,"name":"Scrap Heap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71515/","id":71515,"name":"XR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71997/","id":71997,"name":"Andromon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72021/","id":72021,"name":"Super-Teacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72122/","id":72122,"name":"The Iron Teacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72124/","id":72124,"name":"B-9D7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72328/","id":72328,"name":"Sharkman.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72330/","id":72330,"name":"Stoneman.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72331/","id":72331,"name":"Skullman.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72333/","id":72333,"name":"Blasterman.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72336/","id":72336,"name":"Roll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72337/","id":72337,"name":"Heat Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72390/","id":72390,"name":"Motherboard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72458/","id":72458,"name":"Archon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72628/","id":72628,"name":"Tahnok-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72629/","id":72629,"name":"Gahlok-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72630/","id":72630,"name":"Nuhvok-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72631/","id":72631,"name":"Lehvak-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72632/","id":72632,"name":"Kohrak-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72633/","id":72633,"name":"Pahrak-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72635/","id":72635,"name":"Krana-Kal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72647/","id":72647,"name":"Vice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72781/","id":72781,"name":"Warbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72783/","id":72783,"name":"Manhunter Lud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72784/","id":72784,"name":"U.N.I.O.N."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72816/","id":72816,"name":"Rack'n'Ruin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72831/","id":72831,"name":"Doctor Positron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72864/","id":72864,"name":"Crash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72908/","id":72908,"name":"Goldheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72927/","id":72927,"name":"Clockwork Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72929/","id":72929,"name":"Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72960/","id":72960,"name":"Cryssia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72978/","id":72978,"name":"Flatline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73096/","id":73096,"name":"Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73097/","id":73097,"name":"Dad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73098/","id":73098,"name":"Brat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73099/","id":73099,"name":"Mom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73100/","id":73100,"name":"Sis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73246/","id":73246,"name":"Rotorstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73248/","id":73248,"name":"Overlord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73307/","id":73307,"name":"Lokryna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73385/","id":73385,"name":"Chameleon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73391/","id":73391,"name":"Executioner Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73482/","id":73482,"name":"Salvation One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73489/","id":73489,"name":"Skull Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73490/","id":73490,"name":"Pharaoh Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73491/","id":73491,"name":"Bright Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73492/","id":73492,"name":"Cut Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73493/","id":73493,"name":"Guts Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73494/","id":73494,"name":"Ice Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73495/","id":73495,"name":"Fire Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73496/","id":73496,"name":"Bomb Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73497/","id":73497,"name":"Quick Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73498/","id":73498,"name":"Stone Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73499/","id":73499,"name":"Gyro Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73514/","id":73514,"name":"Vile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73533/","id":73533,"name":"Clanky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73553/","id":73553,"name":"Hooligan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73574/","id":73574,"name":"FoxBox630"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73584/","id":73584,"name":"ESEXY3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73590/","id":73590,"name":"Gobots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73811/","id":73811,"name":"Quackwerks Crimebots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73904/","id":73904,"name":"Scrounge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73929/","id":73929,"name":"Girl Two"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73944/","id":73944,"name":"Arwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73994/","id":73994,"name":"Claudio Kilgannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74039/","id":74039,"name":"Lockdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74322/","id":74322,"name":"Roboduck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74324/","id":74324,"name":"Sigma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74340/","id":74340,"name":"Detonator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74343/","id":74343,"name":"Inorganic Technotroid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74441/","id":74441,"name":"Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74614/","id":74614,"name":"Nightingale 51"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74640/","id":74640,"name":"Oogar The Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74642/","id":74642,"name":"Lootvig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74686/","id":74686,"name":"Benjamin Beau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74695/","id":74695,"name":"T-Pup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74707/","id":74707,"name":"Pesimus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74886/","id":74886,"name":"The Iron Warrior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75102/","id":75102,"name":"Calculon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75103/","id":75103,"name":"Clamps"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75104/","id":75104,"name":"Destructor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75164/","id":75164,"name":"Thunderdog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75254/","id":75254,"name":"Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75421/","id":75421,"name":"Klank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75422/","id":75422,"name":"Queen Machina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75442/","id":75442,"name":"Mountbatten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75577/","id":75577,"name":"Nimrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75726/","id":75726,"name":"Shamus A.I."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75834/","id":75834,"name":"Janice Em"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75896/","id":75896,"name":"Moka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76051/","id":76051,"name":"Tobor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76259/","id":76259,"name":"Trix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76389/","id":76389,"name":"Dynavac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76398/","id":76398,"name":"Psiborg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76404/","id":76404,"name":"Hooligan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76419/","id":76419,"name":"Najar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76762/","id":76762,"name":"Alpha 5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76877/","id":76877,"name":"Defender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76892/","id":76892,"name":"Electric Warrior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76894/","id":76894,"name":"Uncle Orville"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76958/","id":76958,"name":"Asimov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76975/","id":76975,"name":"Millie the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77034/","id":77034,"name":"Diamond Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77036/","id":77036,"name":"Super-Cobalt Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77124/","id":77124,"name":"Kia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77213/","id":77213,"name":"Mark IV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77395/","id":77395,"name":"Omac Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77407/","id":77407,"name":"F.R.A.N.K.I.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77463/","id":77463,"name":"Wheels"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77565/","id":77565,"name":"GLaDOS"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77655/","id":77655,"name":"Interface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77683/","id":77683,"name":"Honeybun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77688/","id":77688,"name":"Fearswoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77786/","id":77786,"name":"Industrielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77952/","id":77952,"name":"Spark Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77953/","id":77953,"name":"Cloud Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77954/","id":77954,"name":"Shade Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77955/","id":77955,"name":"Slash Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77972/","id":77972,"name":"Snake Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77973/","id":77973,"name":"Magnet Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77974/","id":77974,"name":"Top Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77975/","id":77975,"name":"Turbo Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77976/","id":77976,"name":"Spring Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77991/","id":77991,"name":"Needle Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77992/","id":77992,"name":"Gemini Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78034/","id":78034,"name":"Air Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78035/","id":78035,"name":"Flash Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78036/","id":78036,"name":"Metal Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78037/","id":78037,"name":"Crash Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78038/","id":78038,"name":"Bubble Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78039/","id":78039,"name":"Hard Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78121/","id":78121,"name":"Yellow Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78143/","id":78143,"name":"Latas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78162/","id":78162,"name":"Space Case"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78175/","id":78175,"name":"YVH 1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78176/","id":78176,"name":"Buzz Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78242/","id":78242,"name":"Snare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78299/","id":78299,"name":"XO-Mach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78342/","id":78342,"name":"Airachnid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78445/","id":78445,"name":"Tok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78590/","id":78590,"name":"R4-K5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78605/","id":78605,"name":"Bronk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78627/","id":78627,"name":"Iris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78686/","id":78686,"name":"Maximillion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78728/","id":78728,"name":"Computress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78739/","id":78739,"name":"Banpei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78833/","id":78833,"name":"Maria Boole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78851/","id":78851,"name":"Manipulator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78898/","id":78898,"name":"Geoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78910/","id":78910,"name":"Annie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78954/","id":78954,"name":"Hesione"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79062/","id":79062,"name":"Cosmic Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79199/","id":79199,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79517/","id":79517,"name":"Recordasphere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79520/","id":79520,"name":"Time Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79521/","id":79521,"name":"Oil Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79552/","id":79552,"name":"Andrea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79553/","id":79553,"name":"Ruk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79570/","id":79570,"name":"Melfina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79738/","id":79738,"name":"Matrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80319/","id":80319,"name":"Red Guardian (Anton)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80449/","id":80449,"name":"Buzzsaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80462/","id":80462,"name":"Emperor Metallix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80464/","id":80464,"name":"Knuckles Metallix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80556/","id":80556,"name":"Max the Computer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80568/","id":80568,"name":"Manix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80571/","id":80571,"name":"The Amstor Computer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80607/","id":80607,"name":"Populators of Pollux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80794/","id":80794,"name":"Winston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80871/","id":80871,"name":"TOE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81002/","id":81002,"name":"Detritus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81107/","id":81107,"name":"Nullitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81142/","id":81142,"name":"Chip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81143/","id":81143,"name":"She-Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81146/","id":81146,"name":"Paratron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81147/","id":81147,"name":"Octo-Sapien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81155/","id":81155,"name":"Mecho-Assassin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81156/","id":81156,"name":"Iron Despot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81158/","id":81158,"name":"Detective Zed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81186/","id":81186,"name":"Examiner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81189/","id":81189,"name":"Failure Five"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81190/","id":81190,"name":"Failsafe Protocol Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81214/","id":81214,"name":"Blood Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81216/","id":81216,"name":"Shokaract"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81241/","id":81241,"name":"Quid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81250/","id":81250,"name":"Electronic HAL"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81278/","id":81278,"name":"Belde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81304/","id":81304,"name":"Psydrozon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81374/","id":81374,"name":"Jango"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81405/","id":81405,"name":"King of the Missle Men"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81669/","id":81669,"name":"Jane Crothers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81700/","id":81700,"name":"Grag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81712/","id":81712,"name":"Giru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81802/","id":81802,"name":"Dion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81817/","id":81817,"name":"Sentinel Mark IV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81889/","id":81889,"name":"Vector Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81913/","id":81913,"name":"Cyclopter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81916/","id":81916,"name":"Fact"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81936/","id":81936,"name":"Auto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81973/","id":81973,"name":"Duo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82063/","id":82063,"name":"Giant Robot Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82065/","id":82065,"name":"Robot Doc Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82075/","id":82075,"name":"The Cruel One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82082/","id":82082,"name":"Skyscraper Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82138/","id":82138,"name":"The Hand of God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82208/","id":82208,"name":"Invisible Girl Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82209/","id":82209,"name":"Human Torch Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82210/","id":82210,"name":"Thing Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82212/","id":82212,"name":"Mr. Fantastic Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82237/","id":82237,"name":"Crocbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82344/","id":82344,"name":"BMO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82349/","id":82349,"name":"Combots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82464/","id":82464,"name":"Wallbanger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82614/","id":82614,"name":"Mechanismo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82827/","id":82827,"name":"Braintrust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83040/","id":83040,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83092/","id":83092,"name":"Legion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83228/","id":83228,"name":"Fearstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83240/","id":83240,"name":"Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83241/","id":83241,"name":"Christopher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83275/","id":83275,"name":"Emperor Doombot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83279/","id":83279,"name":"Sentinaught"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83280/","id":83280,"name":"Lord Ultravision"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83375/","id":83375,"name":"X-13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83384/","id":83384,"name":"Barada-2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83407/","id":83407,"name":"Predicto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83410/","id":83410,"name":"Porker Metallix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83417/","id":83417,"name":"D.A.V.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83469/","id":83469,"name":"Demolisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83566/","id":83566,"name":"Buffybot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83572/","id":83572,"name":"Badnik Sonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83611/","id":83611,"name":"Mekanik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83613/","id":83613,"name":"Nutzan Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83666/","id":83666,"name":"Sentry #459"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83824/","id":83824,"name":"Buggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83844/","id":83844,"name":"Quake Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83863/","id":83863,"name":"Ro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83879/","id":83879,"name":"The Golden Age Reverse-Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83912/","id":83912,"name":"Aya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83915/","id":83915,"name":"Orbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83916/","id":83916,"name":"Cubot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83958/","id":83958,"name":"Kintobor Computer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83959/","id":83959,"name":"Bomberman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83960/","id":83960,"name":"T.T."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84056/","id":84056,"name":"Holly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84057/","id":84057,"name":"Kryten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84156/","id":84156,"name":"Man-Slayer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84157/","id":84157,"name":"Manhunter Highmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84179/","id":84179,"name":"Time-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84202/","id":84202,"name":"Cyberex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84242/","id":84242,"name":"Alpha Achromic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84355/","id":84355,"name":"Grunwalder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84389/","id":84389,"name":"Puppet King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84393/","id":84393,"name":"Kardiak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84599/","id":84599,"name":"Zeta Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84657/","id":84657,"name":"Johnny Cash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84664/","id":84664,"name":"Monsteroso M16"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84675/","id":84675,"name":"Steelgrip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84709/","id":84709,"name":"Armageddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84723/","id":84723,"name":"Shard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84766/","id":84766,"name":"21"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84809/","id":84809,"name":"Tarn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84832/","id":84832,"name":"Black Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84845/","id":84845,"name":"Dianna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84856/","id":84856,"name":"Vorahk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84857/","id":84857,"name":"Kurahk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84858/","id":84858,"name":"Guurahk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84859/","id":84859,"name":"Lerahk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84861/","id":84861,"name":"Turahk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84887/","id":84887,"name":"Striker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84896/","id":84896,"name":"Ironfist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84897/","id":84897,"name":"Pyro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84982/","id":84982,"name":"Satellat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85016/","id":85016,"name":"Mazinger Z"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85020/","id":85020,"name":"Helex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85021/","id":85021,"name":"Kaon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85022/","id":85022,"name":"Tesarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85023/","id":85023,"name":"Vos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85104/","id":85104,"name":"Kamelion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85188/","id":85188,"name":"Tomorrow Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85195/","id":85195,"name":"Gizmo Sprocket Esq."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85311/","id":85311,"name":"Death-Dealer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85347/","id":85347,"name":"Officer Farrington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85471/","id":85471,"name":"Goht"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85491/","id":85491,"name":"Canal Vorfeed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85578/","id":85578,"name":"Metalhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85614/","id":85614,"name":"Toonami Tom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85649/","id":85649,"name":"Grendizer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85670/","id":85670,"name":"Metal Tails"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85671/","id":85671,"name":"Metal Knuckles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85672/","id":85672,"name":"Metal Amy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85708/","id":85708,"name":"Q'Wynkennon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85760/","id":85760,"name":"Concrete Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85784/","id":85784,"name":"Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85801/","id":85801,"name":"Ra Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85802/","id":85802,"name":"Microwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85930/","id":85930,"name":"Krudzu Hybrid Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85942/","id":85942,"name":"General Ironicus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85944/","id":85944,"name":"Vesuvius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86005/","id":86005,"name":"Pastor Hail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86033/","id":86033,"name":"Aveeare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86048/","id":86048,"name":"2K"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86125/","id":86125,"name":"Titan Metal Sonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86141/","id":86141,"name":"Tails Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86217/","id":86217,"name":"Kevin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86281/","id":86281,"name":"Tin-Can Tommy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86289/","id":86289,"name":"HOMER"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86290/","id":86290,"name":"VOR/TEX"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86304/","id":86304,"name":"Tin Teacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86305/","id":86305,"name":"Autoteach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86358/","id":86358,"name":"Nominus Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86463/","id":86463,"name":"IN-GA 44"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86475/","id":86475,"name":"Aaln-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86482/","id":86482,"name":"Splash Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86572/","id":86572,"name":"Jaxson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86575/","id":86575,"name":"Monarch Machine Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86624/","id":86624,"name":"Thinkbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86639/","id":86639,"name":"Backbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86640/","id":86640,"name":"Ser-Ket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86672/","id":86672,"name":"Aleph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86707/","id":86707,"name":"Metrotitan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86731/","id":86731,"name":"Tappet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86732/","id":86732,"name":"Hippotank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86743/","id":86743,"name":"Jeri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86750/","id":86750,"name":"Barrage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86754/","id":86754,"name":"Mega Man Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86755/","id":86755,"name":"Ballade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86756/","id":86756,"name":"Enker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86757/","id":86757,"name":"Punk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86758/","id":86758,"name":"Buster Rod G"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86759/","id":86759,"name":"Mega Water S"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86760/","id":86760,"name":"Hyper Storm H"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86761/","id":86761,"name":"King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86762/","id":86762,"name":"Terra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86763/","id":86763,"name":"Quint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86764/","id":86764,"name":"Eddie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86765/","id":86765,"name":"Gamma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86778/","id":86778,"name":"Omega Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86785/","id":86785,"name":"Rooster Cockburn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86786/","id":86786,"name":"Tailgunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86787/","id":86787,"name":"Southpaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86799/","id":86799,"name":"Rung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86826/","id":86826,"name":"Nemesis Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86856/","id":86856,"name":"Dead End"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86857/","id":86857,"name":"Jolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86860/","id":86860,"name":"Dead End"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86866/","id":86866,"name":"Reverb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86867/","id":86867,"name":"Armorhide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86975/","id":86975,"name":"Burt-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87031/","id":87031,"name":"Packrat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87032/","id":87032,"name":"Windrazor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87034/","id":87034,"name":"Smokescreen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87039/","id":87039,"name":"Razorclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87040/","id":87040,"name":"Snarl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87045/","id":87045,"name":"Rook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87097/","id":87097,"name":"Oracle of Ancient Knowledge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87123/","id":87123,"name":"Galactus' Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87234/","id":87234,"name":"Dr. Kochin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87250/","id":87250,"name":"Android 13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87251/","id":87251,"name":"Android 14"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87301/","id":87301,"name":"Anita Erskine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87302/","id":87302,"name":"Spanner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87490/","id":87490,"name":"Heavy Load"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87491/","id":87491,"name":"Barrel Roll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87529/","id":87529,"name":"Berserk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87554/","id":87554,"name":"Sagittarius (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87555/","id":87555,"name":"Gemini (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87556/","id":87556,"name":"Gemini (Female LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87557/","id":87557,"name":"Leo (Tigra LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87558/","id":87558,"name":"Leo (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87559/","id":87559,"name":"Taurus (Female LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87560/","id":87560,"name":"Taurus (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87561/","id":87561,"name":"Taurus (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87563/","id":87563,"name":"Aquarius (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87564/","id":87564,"name":"Libra (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87565/","id":87565,"name":"Libra (Female LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87566/","id":87566,"name":"Pisces (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87568/","id":87568,"name":"Pisces (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87569/","id":87569,"name":"Pisces (Female LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87579/","id":87579,"name":"Capricorn (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87580/","id":87580,"name":"Virgo (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87581/","id":87581,"name":"Capricorn (Female LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87591/","id":87591,"name":"Aries (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87592/","id":87592,"name":"Cancer (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87613/","id":87613,"name":"Gemini (Ecliptic's Zodiac)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87655/","id":87655,"name":"Goldbug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87747/","id":87747,"name":"Metalek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87798/","id":87798,"name":"Terradive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87802/","id":87802,"name":"Rage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87803/","id":87803,"name":"Aquablast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87805/","id":87805,"name":"Hydradread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87810/","id":87810,"name":"Hawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87812/","id":87812,"name":"Tornado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87819/","id":87819,"name":"Fireball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87824/","id":87824,"name":"Prima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87827/","id":87827,"name":"Drench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87828/","id":87828,"name":"Snipe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87829/","id":87829,"name":"Dirt Boss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87836/","id":87836,"name":"Dirtbag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87841/","id":87841,"name":"Rapido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87859/","id":87859,"name":"Captain Gavin Capacitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87874/","id":87874,"name":"Mike the TV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87884/","id":87884,"name":"Evac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87885/","id":87885,"name":"Safeguard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87886/","id":87886,"name":"Magnificus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87894/","id":87894,"name":"The scale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87907/","id":87907,"name":"Dai Atlas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87909/","id":87909,"name":"Trepan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87912/","id":87912,"name":"Pharma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87914/","id":87914,"name":"Ambulon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87915/","id":87915,"name":"Animus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87995/","id":87995,"name":"Neptr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87997/","id":87997,"name":"Kevin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88019/","id":88019,"name":"Hammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88085/","id":88085,"name":"Landquake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88087/","id":88087,"name":"Landquake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88095/","id":88095,"name":"Aquarius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88097/","id":88097,"name":"Heatwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88098/","id":88098,"name":"Ricochet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88101/","id":88101,"name":"Topspin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88102/","id":88102,"name":"Nexus Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88108/","id":88108,"name":"Scrapmetal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88109/","id":88109,"name":"Thunder Clash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88110/","id":88110,"name":"Ricochet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88111/","id":88111,"name":"Falcon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88112/","id":88112,"name":"Crosscut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88115/","id":88115,"name":"Hauler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88118/","id":88118,"name":"Aquafend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88119/","id":88119,"name":"Electro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88120/","id":88120,"name":"Circuit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88121/","id":88121,"name":"Zetca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88122/","id":88122,"name":"Slipstream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88128/","id":88128,"name":"Gunbarrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88129/","id":88129,"name":"Thunderwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88130/","id":88130,"name":"Thunderclash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88131/","id":88131,"name":"Terradive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88132/","id":88132,"name":"Roulette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88133/","id":88133,"name":"Shadow Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88169/","id":88169,"name":"Tigerhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88170/","id":88170,"name":"Anti-Blaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88173/","id":88173,"name":"Scythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88174/","id":88174,"name":"Checkpoint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88205/","id":88205,"name":"Adam Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88213/","id":88213,"name":"El Hombre Electrico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88235/","id":88235,"name":"Flame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88262/","id":88262,"name":"Pentius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88285/","id":88285,"name":"Hack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88286/","id":88286,"name":"Slash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88288/","id":88288,"name":"Old Man Pearson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88290/","id":88290,"name":"Al's Waiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88295/","id":88295,"name":"Cyrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88296/","id":88296,"name":"Princess Bula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88297/","id":88297,"name":"Specky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88375/","id":88375,"name":"X-35"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88481/","id":88481,"name":"Clone #2716057"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88482/","id":88482,"name":"Clone #3370318"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88485/","id":88485,"name":"Rartorata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88486/","id":88486,"name":"Elephorca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88487/","id":88487,"name":"Drancron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88488/","id":88488,"name":"Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88489/","id":88489,"name":"Archadis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88490/","id":88490,"name":"Sling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88491/","id":88491,"name":"Saberback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88492/","id":88492,"name":"Guiledart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88493/","id":88493,"name":"Stampy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88494/","id":88494,"name":"Longrack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88495/","id":88495,"name":"Heinrad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88496/","id":88496,"name":"Break"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88498/","id":88498,"name":"Drill Nuts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88499/","id":88499,"name":"Double Punch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88500/","id":88500,"name":"Claw Jaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88501/","id":88501,"name":"Cicadacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88502/","id":88502,"name":"Buzzclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88503/","id":88503,"name":"Bump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88504/","id":88504,"name":"BB"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88505/","id":88505,"name":"Bazooka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88506/","id":88506,"name":"Apache"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88514/","id":88514,"name":"451"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88517/","id":88517,"name":"Scylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88520/","id":88520,"name":"Jetstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88521/","id":88521,"name":"Beastbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88523/","id":88523,"name":"Cyclonus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88524/","id":88524,"name":"K.I.T.T."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88528/","id":88528,"name":"Cyril"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88537/","id":88537,"name":"Tow-Line"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88538/","id":88538,"name":"Wing Saber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88545/","id":88545,"name":"Kagami Uchiha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88552/","id":88552,"name":"Tornado Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88553/","id":88553,"name":"Magma Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88554/","id":88554,"name":"Plug Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88555/","id":88555,"name":"Jewel Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88556/","id":88556,"name":"Hornet Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88557/","id":88557,"name":"Galaxy Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88558/","id":88558,"name":"Beat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88559/","id":88559,"name":"Copybot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88713/","id":88713,"name":"Atomizer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88880/","id":88880,"name":"Tango"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88907/","id":88907,"name":"Labrys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88922/","id":88922,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88923/","id":88923,"name":"Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88924/","id":88924,"name":"Mars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88925/","id":88925,"name":"Jupiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88926/","id":88926,"name":"Saturn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88927/","id":88927,"name":"Uranus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88928/","id":88928,"name":"Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88929/","id":88929,"name":"Pluto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88930/","id":88930,"name":"Sunstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88931/","id":88931,"name":"Reggae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88936/","id":88936,"name":"Motorized Patriot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88942/","id":88942,"name":"Godseye "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88951/","id":88951,"name":"Sonar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89034/","id":89034,"name":"Aigis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89418/","id":89418,"name":"Doombot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89433/","id":89433,"name":"Tronica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89494/","id":89494,"name":"Sagittarius (Hawkeye LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89515/","id":89515,"name":"Speed Buggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89539/","id":89539,"name":"EDI"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89578/","id":89578,"name":"Sovereign"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89654/","id":89654,"name":"Arsenal Alpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89691/","id":89691,"name":"D.R.H.E.R.B.I.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89714/","id":89714,"name":"Mr Starr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89741/","id":89741,"name":"Den-O"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89794/","id":89794,"name":"Hornitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89795/","id":89795,"name":"Scorpitron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89797/","id":89797,"name":"Prince Sprocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89798/","id":89798,"name":"Orbus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89831/","id":89831,"name":"Doraemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89832/","id":89832,"name":"Robot Detective K"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89869/","id":89869,"name":"Karen Plankton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90006/","id":90006,"name":"Frankenstein, Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90145/","id":90145,"name":"Mainframe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90210/","id":90210,"name":"Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90238/","id":90238,"name":"Agent Beefcake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90264/","id":90264,"name":"Rocket Red (Manhunter)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90324/","id":90324,"name":"Egg Swat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90340/","id":90340,"name":"Robrox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90366/","id":90366,"name":"Sheep Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90367/","id":90367,"name":"Blade Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90368/","id":90368,"name":"Pump Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90369/","id":90369,"name":"Commando Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90370/","id":90370,"name":"Chill Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90371/","id":90371,"name":"Strike Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90372/","id":90372,"name":"Nitro Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90373/","id":90373,"name":"Solar Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90399/","id":90399,"name":"Cold Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90400/","id":90400,"name":"Dynamo Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90401/","id":90401,"name":"Ground Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90402/","id":90402,"name":"Pirate Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90471/","id":90471,"name":"Deftwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90472/","id":90472,"name":"Tyrest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90473/","id":90473,"name":"Ransack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90592/","id":90592,"name":"Alexis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90743/","id":90743,"name":"Unit 3.14159"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90807/","id":90807,"name":"Pero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90841/","id":90841,"name":"Super Sentry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91052/","id":91052,"name":"Aria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91151/","id":91151,"name":"Alisa Bosconovitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91162/","id":91162,"name":"Probot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91212/","id":91212,"name":"Gundan I"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91213/","id":91213,"name":"Gundan II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91214/","id":91214,"name":"Gundan III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91215/","id":91215,"name":"Gundan IV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91314/","id":91314,"name":"M-12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91315/","id":91315,"name":"M-8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91316/","id":91316,"name":"M-5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91317/","id":91317,"name":"M-3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91318/","id":91318,"name":"M-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91321/","id":91321,"name":"R.O.B."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91335/","id":91335,"name":"Orlaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91345/","id":91345,"name":"The Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91388/","id":91388,"name":"Call"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91430/","id":91430,"name":"Joanie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91482/","id":91482,"name":"Mech-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91487/","id":91487,"name":"Sentry #666"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91671/","id":91671,"name":"Air-Walker Prototype"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91759/","id":91759,"name":"Backbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91875/","id":91875,"name":"Supergirl Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91963/","id":91963,"name":"Grid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92046/","id":92046,"name":"The Doomsday Machine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92243/","id":92243,"name":"Skar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92265/","id":92265,"name":"Para-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92393/","id":92393,"name":"War-Walker Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92423/","id":92423,"name":"Sol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92431/","id":92431,"name":"Ma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92505/","id":92505,"name":"Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92532/","id":92532,"name":"Aphrodite XV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92537/","id":92537,"name":"Mangatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92580/","id":92580,"name":"Carny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92609/","id":92609,"name":"Ra Thor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92622/","id":92622,"name":"Mr. Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92625/","id":92625,"name":"Grandmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92694/","id":92694,"name":"Toolbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92702/","id":92702,"name":"Z"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92706/","id":92706,"name":"Atom Ed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92895/","id":92895,"name":"X9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92932/","id":92932,"name":"Female Doombot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92958/","id":92958,"name":"Charlie the Funland Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93004/","id":93004,"name":"Drone R-11"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93039/","id":93039,"name":"Overload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93070/","id":93070,"name":"Extremax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93101/","id":93101,"name":"G.E.N.I.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93291/","id":93291,"name":"Brideshead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93412/","id":93412,"name":"Udarnik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93416/","id":93416,"name":"Factor-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93417/","id":93417,"name":"Servo-Robot "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93584/","id":93584,"name":"Gumball Guardians"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93595/","id":93595,"name":"Iron Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93624/","id":93624,"name":"Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93626/","id":93626,"name":"Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93628/","id":93628,"name":"Monmouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93629/","id":93629,"name":"Fawkes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93630/","id":93630,"name":"Brutus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93813/","id":93813,"name":"Tut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93931/","id":93931,"name":"Zane Julien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94000/","id":94000,"name":"Tailpipe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94001/","id":94001,"name":"Ada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94089/","id":94089,"name":"Jealousy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94091/","id":94091,"name":"Désir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94161/","id":94161,"name":"Armory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94162/","id":94162,"name":"H.E.L.E.N."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94212/","id":94212,"name":"Row Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94340/","id":94340,"name":"Byron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94756/","id":94756,"name":"FR4NK"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94757/","id":94757,"name":"D4VE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94765/","id":94765,"name":"MILL-247-EE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94794/","id":94794,"name":"Captain Metal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94795/","id":94795,"name":"Swash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94796/","id":94796,"name":"Buckle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94798/","id":94798,"name":"Mini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94799/","id":94799,"name":"Johnny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94800/","id":94800,"name":"Captain Whisker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94828/","id":94828,"name":"Hadron-Class Kilgore Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94829/","id":94829,"name":"Gibson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94830/","id":94830,"name":"Anthony Hicke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94831/","id":94831,"name":"Ada the Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94832/","id":94832,"name":"Iron Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94995/","id":94995,"name":"Praetor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94996/","id":94996,"name":"Pandora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95005/","id":95005,"name":"Jet Jaguar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95323/","id":95323,"name":"Nightshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95324/","id":95324,"name":"Strongbox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95360/","id":95360,"name":"Ultra-Adaptoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95361/","id":95361,"name":"Paragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95507/","id":95507,"name":"Darksteel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95508/","id":95508,"name":"Skylynx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95597/","id":95597,"name":"Robot Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95618/","id":95618,"name":"Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95744/","id":95744,"name":"Vocadroid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95911/","id":95911,"name":"Sheriff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95971/","id":95971,"name":"Destructo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96068/","id":96068,"name":"Destroya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96160/","id":96160,"name":"Zoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96291/","id":96291,"name":"Steel Commando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96304/","id":96304,"name":"Prowl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96559/","id":96559,"name":"Gao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96560/","id":96560,"name":"Pluto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96571/","id":96571,"name":"Astro Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96573/","id":96573,"name":"Rag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96586/","id":96586,"name":"Chiruchiru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96618/","id":96618,"name":"Milko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96790/","id":96790,"name":"Daniel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96986/","id":96986,"name":"Damdam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96999/","id":96999,"name":"Robbie the Robot Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97002/","id":97002,"name":"Pixel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97336/","id":97336,"name":"Grax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97366/","id":97366,"name":"Nautica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97448/","id":97448,"name":"Mr. Roboto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97458/","id":97458,"name":"Adventure Man Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97544/","id":97544,"name":"Blitzkrieg Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97640/","id":97640,"name":"Copernicus Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97736/","id":97736,"name":"Little James"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97737/","id":97737,"name":"Hux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97738/","id":97738,"name":"Mairead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97818/","id":97818,"name":"R.O.B."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97832/","id":97832,"name":"Windblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97859/","id":97859,"name":"Benny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97860/","id":97860,"name":"Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97892/","id":97892,"name":"Ripot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97893/","id":97893,"name":"Plum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97894/","id":97894,"name":"Chest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97965/","id":97965,"name":"China"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97991/","id":97991,"name":"Omochao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98023/","id":98023,"name":"Sechs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98212/","id":98212,"name":"Trixxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98405/","id":98405,"name":"Henshinhero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98714/","id":98714,"name":"Dan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98751/","id":98751,"name":"Toyboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98959/","id":98959,"name":"Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98960/","id":98960,"name":"Sonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99077/","id":99077,"name":"Z"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99164/","id":99164,"name":"Agile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99165/","id":99165,"name":"Serges"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99166/","id":99166,"name":"Violen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99171/","id":99171,"name":"Dr. Doppler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99172/","id":99172,"name":"Bit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99173/","id":99173,"name":"Byte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99174/","id":99174,"name":"Colonel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99191/","id":99191,"name":"Double"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99193/","id":99193,"name":"General"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99194/","id":99194,"name":"Alia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99195/","id":99195,"name":"Layer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99196/","id":99196,"name":"Pallette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99200/","id":99200,"name":"Signas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99201/","id":99201,"name":"Douglas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99202/","id":99202,"name":"Lifesaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99203/","id":99203,"name":"Dynamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99647/","id":99647,"name":"Churchill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99703/","id":99703,"name":"Hurricane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99704/","id":99704,"name":"Gripper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99735/","id":99735,"name":"Helper Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100179/","id":100179,"name":"Aiden Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100180/","id":100180,"name":"Boo Hoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100182/","id":100182,"name":"Mecha Eel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100216/","id":100216,"name":"Donbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100217/","id":100217,"name":"Joey Mousepad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100256/","id":100256,"name":"Kalibos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100259/","id":100259,"name":"Necrobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100272/","id":100272,"name":"Cherubim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100344/","id":100344,"name":"Robot 1-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100482/","id":100482,"name":"E-106 Eta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100503/","id":100503,"name":"Mayhem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100627/","id":100627,"name":"Etheran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100631/","id":100631,"name":"Ping"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100819/","id":100819,"name":"Brody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101078/","id":101078,"name":"Transmutate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101079/","id":101079,"name":"Magnaboss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101080/","id":101080,"name":"Jawbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101081/","id":101081,"name":"Geckobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101219/","id":101219,"name":"GIN_GR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101246/","id":101246,"name":"Fixit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101259/","id":101259,"name":"Albertron Toomes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101353/","id":101353,"name":"Kaef"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101500/","id":101500,"name":"Riptide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101550/","id":101550,"name":"Baal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101552/","id":101552,"name":"Pagliacci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101553/","id":101553,"name":"Remington Thunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101554/","id":101554,"name":"Wendy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101710/","id":101710,"name":"Bubbles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101800/","id":101800,"name":"Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101807/","id":101807,"name":"Maguire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101860/","id":101860,"name":"Beta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101881/","id":101881,"name":"Brains"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101973/","id":101973,"name":"M.O.G.U.E.R.A."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102007/","id":102007,"name":"Hammerclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102014/","id":102014,"name":"Ares XV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102035/","id":102035,"name":"Gungnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102072/","id":102072,"name":"RoboChuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102109/","id":102109,"name":"Ten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102121/","id":102121,"name":"Sena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102486/","id":102486,"name":"Dad 2.0"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102592/","id":102592,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102630/","id":102630,"name":"Maskatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102818/","id":102818,"name":"Daisy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102848/","id":102848,"name":"Kevin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103090/","id":103090,"name":"Mad Grinder "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103351/","id":103351,"name":"Metal Head "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103695/","id":103695,"name":"Reggie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104078/","id":104078,"name":"Zip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104157/","id":104157,"name":"Fantastobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104178/","id":104178,"name":"Derek Malloy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104297/","id":104297,"name":"Matrix-Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104303/","id":104303,"name":"Trilogy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104304/","id":104304,"name":"Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104420/","id":104420,"name":"Dynamo "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104444/","id":104444,"name":"Blip "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104446/","id":104446,"name":"Dipstick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104469/","id":104469,"name":"Doc Robot "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104927/","id":104927,"name":"Matilda Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104950/","id":104950,"name":"Dementachip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105067/","id":105067,"name":"Ammo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105469/","id":105469,"name":"Knucklehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105470/","id":105470,"name":"Great Convoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105516/","id":105516,"name":"Robecca Steam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105537/","id":105537,"name":"iGOR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106002/","id":106002,"name":"Squawktalk "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106003/","id":106003,"name":"The Core"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106421/","id":106421,"name":"Robocalypse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106439/","id":106439,"name":"Velguarder "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106527/","id":106527,"name":"Slinger "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106528/","id":106528,"name":"Blackwall "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106797/","id":106797,"name":"Engine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106801/","id":106801,"name":"Calculus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107070/","id":107070,"name":"Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107142/","id":107142,"name":"Sky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107149/","id":107149,"name":"MOTHER"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107163/","id":107163,"name":"King Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107164/","id":107164,"name":"Dengo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107225/","id":107225,"name":"Errol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107301/","id":107301,"name":"Fulcrum "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107343/","id":107343,"name":"Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107444/","id":107444,"name":"Lydia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107528/","id":107528,"name":"Elden "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107531/","id":107531,"name":"Seegson Working Joe 937"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107533/","id":107533,"name":"Apollo "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107627/","id":107627,"name":"TBD-089"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107725/","id":107725,"name":"E-113 Xi "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108065/","id":108065,"name":"Alpha Bravo "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108207/","id":108207,"name":"Tama "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108544/","id":108544,"name":"Sorceroid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108577/","id":108577,"name":"Pietr Von Harbou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108578/","id":108578,"name":"Fritz Von Harbou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108591/","id":108591,"name":"Auntie Tank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108592/","id":108592,"name":"Speedtrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108593/","id":108593,"name":"Gouge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108594/","id":108594,"name":"Slaughter Steelgrave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108595/","id":108595,"name":"Deadeye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108596/","id":108596,"name":"Backfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108597/","id":108597,"name":"Cricket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108598/","id":108598,"name":"Sawtooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108623/","id":108623,"name":"Bouncer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108658/","id":108658,"name":"Nipper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108659/","id":108659,"name":"Thinktank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108660/","id":108660,"name":"Crank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108661/","id":108661,"name":"Tinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108662/","id":108662,"name":"Hotshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108663/","id":108663,"name":"Runabout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108664/","id":108664,"name":"Motormouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108665/","id":108665,"name":"Cut-up"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108796/","id":108796,"name":"Eli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108807/","id":108807,"name":"D.0.C."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108990/","id":108990,"name":"Snakey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109060/","id":109060,"name":"S.A.M."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109117/","id":109117,"name":"Micro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109190/","id":109190,"name":"Cornelia-17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109220/","id":109220,"name":"Rectifier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109244/","id":109244,"name":"Rock-cyborg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109314/","id":109314,"name":"Trio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109455/","id":109455,"name":"Pyronanos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110172/","id":110172,"name":"Super Android Model F-4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110203/","id":110203,"name":"Heatwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110309/","id":110309,"name":"Mech Major"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110484/","id":110484,"name":"Flying Dynamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110485/","id":110485,"name":"E-110 Lambda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110486/","id":110486,"name":"E-109 Kappa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110494/","id":110494,"name":"Ai Roborovskii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110529/","id":110529,"name":"DJ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110595/","id":110595,"name":"BuddyBot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110599/","id":110599,"name":"The One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110804/","id":110804,"name":"Richard Parker (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110805/","id":110805,"name":"Mary Parker (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110806/","id":110806,"name":"Oil Slick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110815/","id":110815,"name":"Bruno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110816/","id":110816,"name":"Randolph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110931/","id":110931,"name":"Flamewar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110959/","id":110959,"name":"Servabot T96R"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110985/","id":110985,"name":"Crash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111464/","id":111464,"name":"Urr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111593/","id":111593,"name":"Tama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111596/","id":111596,"name":"No.502"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111598/","id":111598,"name":"No.305"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111864/","id":111864,"name":"Metallus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111944/","id":111944,"name":"Red Amazo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112073/","id":112073,"name":"Balloon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112182/","id":112182,"name":"Space-Age Specter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112396/","id":112396,"name":"Nightshade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112453/","id":112453,"name":"Pigswilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112510/","id":112510,"name":"Egg Antlion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112551/","id":112551,"name":"Helkon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112556/","id":112556,"name":"Contessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112768/","id":112768,"name":"Fireball "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112769/","id":112769,"name":"Heavy Barrel "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112779/","id":112779,"name":"Prometheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113516/","id":113516,"name":"Casshern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113554/","id":113554,"name":"F.A.U.S.T."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113564/","id":113564,"name":"N4256"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113770/","id":113770,"name":"M.A.M.M.A."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113937/","id":113937,"name":"Tim-21"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114026/","id":114026,"name":"Jawbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114214/","id":114214,"name":"Ruler of the Earth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114264/","id":114264,"name":"Roy C. Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114618/","id":114618,"name":"Guide 72-B"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114952/","id":114952,"name":"Professor Salvini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115007/","id":115007,"name":"CBX-825"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115008/","id":115008,"name":"CBX-023"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115009/","id":115009,"name":"CBX-004"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115010/","id":115010,"name":"CBX-001"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115244/","id":115244,"name":"Mason Jar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115498/","id":115498,"name":"Terrane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115761/","id":115761,"name":"Houston 3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115890/","id":115890,"name":"The Woodsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115909/","id":115909,"name":"Tear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115946/","id":115946,"name":"Peacenik 2000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115948/","id":115948,"name":"Mecha Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115987/","id":115987,"name":"Chopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116125/","id":116125,"name":"Bandit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116369/","id":116369,"name":"Evil Ted"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116370/","id":116370,"name":"Evil Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116412/","id":116412,"name":"Temp-bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116420/","id":116420,"name":"Robo Chris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116482/","id":116482,"name":"Hardcore Roboto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116483/","id":116483,"name":"Petey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116484/","id":116484,"name":"Sanchez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116576/","id":116576,"name":"Mechano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116827/","id":116827,"name":"Eight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117079/","id":117079,"name":"Solus Prime "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117080/","id":117080,"name":"Mistress of Flame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117098/","id":117098,"name":"Sam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117372/","id":117372,"name":"Bacchus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117373/","id":117373,"name":"Nickel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117514/","id":117514,"name":"Bobert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117546/","id":117546,"name":"Sleazy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117547/","id":117547,"name":"5COTTY"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117548/","id":117548,"name":"TIN4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117549/","id":117549,"name":"54LLY"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117563/","id":117563,"name":"ARC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117654/","id":117654,"name":"Mechasaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117672/","id":117672,"name":"Megaclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117742/","id":117742,"name":"Kranix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117743/","id":117743,"name":"Hotwire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117859/","id":117859,"name":"Burnbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117860/","id":117860,"name":"Moto Bug "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117952/","id":117952,"name":"David Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117970/","id":117970,"name":"Nth Metal Hawkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118147/","id":118147,"name":"Driller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118200/","id":118200,"name":"Froid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118202/","id":118202,"name":"Fritz Winterbottom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118203/","id":118203,"name":"Bot-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118243/","id":118243,"name":"Panza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118337/","id":118337,"name":"Artifax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118396/","id":118396,"name":"Shiza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118397/","id":118397,"name":"Gabbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118403/","id":118403,"name":"Jarvis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118564/","id":118564,"name":"Optimus Maximus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118594/","id":118594,"name":"Javelin "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118595/","id":118595,"name":"Roadmaster "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118596/","id":118596,"name":"Proxima "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118597/","id":118597,"name":"Velocity "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118719/","id":118719,"name":"Gun Volt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118753/","id":118753,"name":"Powerman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118757/","id":118757,"name":"Adam Newman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118900/","id":118900,"name":"Phage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118955/","id":118955,"name":"Defective Superman Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119025/","id":119025,"name":"GIR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119044/","id":119044,"name":"Gemerl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119142/","id":119142,"name":"Yara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119172/","id":119172,"name":"Bubo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119312/","id":119312,"name":"Gearshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119337/","id":119337,"name":"Lightbright "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119676/","id":119676,"name":"Ride Boarski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119677/","id":119677,"name":"Mattrex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119678/","id":119678,"name":"Burn Rooster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119689/","id":119689,"name":"Goliath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119887/","id":119887,"name":"Misère"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119888/","id":119888,"name":"Zeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120126/","id":120126,"name":"Syl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120190/","id":120190,"name":"Ultron Eight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120216/","id":120216,"name":"Danny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120234/","id":120234,"name":"Zain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120235/","id":120235,"name":"Vanishing Gungaroo "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120236/","id":120236,"name":"Tornado Tonion "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120237/","id":120237,"name":"Skiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120238/","id":120238,"name":"Techno "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120239/","id":120239,"name":"Squid Adler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120240/","id":120240,"name":"Splash Warfly "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120241/","id":120241,"name":"Solider Stonekong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120242/","id":120242,"name":"Snipe Anteater "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120243/","id":120243,"name":"Shield Sheldon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120244/","id":120244,"name":"Rainy Turtloid "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120246/","id":120246,"name":"Middy "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120247/","id":120247,"name":"Metal Shark Player "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120248/","id":120248,"name":"Izzy Glow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120249/","id":120249,"name":"Infinity Mijinion "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120250/","id":120250,"name":"Ground Scaravich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120251/","id":120251,"name":"Grizzly Slash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120252/","id":120252,"name":"Gravity Antonion "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120253/","id":120253,"name":"Gigabolt Man-O-War "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120254/","id":120254,"name":"Geemel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120255/","id":120255,"name":"Gareth "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120257/","id":120257,"name":"Earthrock Trilobyte "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120258/","id":120258,"name":"Duff McWhalen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120259/","id":120259,"name":"Dark Mantis "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120260/","id":120260,"name":"Dark Dizzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120261/","id":120261,"name":"Commander Yammark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120262/","id":120262,"name":"Blizzard Wolfang "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120263/","id":120263,"name":"Blaze Heatnix "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120264/","id":120264,"name":"Berkana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120265/","id":120265,"name":"Bamboo Pandamonium "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120266/","id":120266,"name":"Axle the Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120267/","id":120267,"name":"Avalanche Yeti "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120280/","id":120280,"name":"Mister X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120283/","id":120283,"name":"Digitus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120298/","id":120298,"name":"The Metal-Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120518/","id":120518,"name":"A.P.E."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120583/","id":120583,"name":"Carl The End-Of-Life Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120620/","id":120620,"name":"Strongarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120825/","id":120825,"name":"Honey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120831/","id":120831,"name":"Wind Crowrang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120888/","id":120888,"name":"Pyra Magna "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120889/","id":120889,"name":"Skyburst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120890/","id":120890,"name":"Dustup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120891/","id":120891,"name":"Jumpstream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120892/","id":120892,"name":"Stormclash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120893/","id":120893,"name":"Rust Dust "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120894/","id":120894,"name":"Victorion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120917/","id":120917,"name":"Captain Skank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121060/","id":121060,"name":"Assembly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121227/","id":121227,"name":"Fighter-class"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121228/","id":121228,"name":"Assassin-class"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121229/","id":121229,"name":"Science-class"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121230/","id":121230,"name":"Stealth-class"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121231/","id":121231,"name":"Tactician-class"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121483/","id":121483,"name":"Gormon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121623/","id":121623,"name":"Harold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121624/","id":121624,"name":"Alarm Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121647/","id":121647,"name":"Android"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121699/","id":121699,"name":"Herman The Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121885/","id":121885,"name":"Transit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122005/","id":122005,"name":"Tiberia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122012/","id":122012,"name":"Mister Air"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122121/","id":122121,"name":"DYSON-V"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122159/","id":122159,"name":"BB-8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122260/","id":122260,"name":"Teknor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122271/","id":122271,"name":"Rickets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122425/","id":122425,"name":"Zach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122449/","id":122449,"name":"Tech-class"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122482/","id":122482,"name":"BR4D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122483/","id":122483,"name":"ST3V3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122484/","id":122484,"name":"PNUT"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122486/","id":122486,"name":"FR3D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122487/","id":122487,"name":"B3TH"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122514/","id":122514,"name":"Tina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122712/","id":122712,"name":"Chela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122713/","id":122713,"name":"Greenlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122714/","id":122714,"name":"Lancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122768/","id":122768,"name":"Setekh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123013/","id":123013,"name":"Curtis Mayfield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123124/","id":123124,"name":"Iron Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123245/","id":123245,"name":"Spinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123246/","id":123246,"name":"Clipshade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123381/","id":123381,"name":"Nacelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123382/","id":123382,"name":"Volt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123383/","id":123383,"name":"Overhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123385/","id":123385,"name":"Mekkog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123518/","id":123518,"name":"Gigatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123541/","id":123541,"name":"Row-Butt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123620/","id":123620,"name":"The Steam Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123705/","id":123705,"name":"Aileron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123708/","id":123708,"name":"Lumine "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123709/","id":123709,"name":"Vesper Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123760/","id":123760,"name":"Roland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123892/","id":123892,"name":"Swift "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123896/","id":123896,"name":"Strafe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124053/","id":124053,"name":"Vin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124054/","id":124054,"name":"Viv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124055/","id":124055,"name":"Virginia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124209/","id":124209,"name":"Sentry Silent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124222/","id":124222,"name":"Grutan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124297/","id":124297,"name":"Click"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124350/","id":124350,"name":"Cerebra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124598/","id":124598,"name":"Kegger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124657/","id":124657,"name":"Haf Wey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124659/","id":124659,"name":"Cobalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124662/","id":124662,"name":"Mitsuko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124668/","id":124668,"name":"Kino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124675/","id":124675,"name":"Epsilon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124676/","id":124676,"name":"Hercules"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124677/","id":124677,"name":"Gerhardt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124678/","id":124678,"name":"Brando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124679/","id":124679,"name":"North #2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124680/","id":124680,"name":"Mont Blanc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124681/","id":124681,"name":"Colt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124682/","id":124682,"name":"Dr. Goji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124684/","id":124684,"name":"Bora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124685/","id":124685,"name":"Lord Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124800/","id":124800,"name":"Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124863/","id":124863,"name":"Binary Babysmasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124901/","id":124901,"name":"B.E.E.B.L.E.S."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125112/","id":125112,"name":"803"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125272/","id":125272,"name":"Rickets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125319/","id":125319,"name":"H.U.B.E.R.T."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125465/","id":125465,"name":"Copy X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125466/","id":125466,"name":"Sage Harpuia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125469/","id":125469,"name":"Dark Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125539/","id":125539,"name":"Hidden Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125540/","id":125540,"name":"Fighting Fefnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125541/","id":125541,"name":"Fairy Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125627/","id":125627,"name":"OVER-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125628/","id":125628,"name":"Nero L"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125769/","id":125769,"name":"Coulier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125775/","id":125775,"name":"Joan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125785/","id":125785,"name":"TC-70"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125803/","id":125803,"name":"Duke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125821/","id":125821,"name":"Kedzie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125874/","id":125874,"name":"Princess Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126028/","id":126028,"name":"Yologarch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126116/","id":126116,"name":"Puzzlerbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126149/","id":126149,"name":"Veet-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126185/","id":126185,"name":"Alouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126190/","id":126190,"name":"Pook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126204/","id":126204,"name":"Baro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126417/","id":126417,"name":"J'K"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126503/","id":126503,"name":"Mira Yurizaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126591/","id":126591,"name":"Robuttinski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126606/","id":126606,"name":"Robo-Merc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126691/","id":126691,"name":"Shelly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126752/","id":126752,"name":"P.A.C.O."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126827/","id":126827,"name":"Elektron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126835/","id":126835,"name":"Tinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127033/","id":127033,"name":"Monokuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127157/","id":127157,"name":"The Iron Bard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127862/","id":127862,"name":"Euro-Adaptoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128036/","id":128036,"name":"Sentry #213"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128125/","id":128125,"name":"Spydor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128485/","id":128485,"name":"Sondra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128770/","id":128770,"name":"Squish the Sogmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128791/","id":128791,"name":"Chiren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128916/","id":128916,"name":"UNa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129181/","id":129181,"name":"Karate Ninja Nobu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129182/","id":129182,"name":"Ranger Mike Danger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129187/","id":129187,"name":"Mr. Steampaddle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129285/","id":129285,"name":"Mister Click"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129442/","id":129442,"name":"Goliath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129467/","id":129467,"name":"Dorami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129473/","id":129473,"name":"Roboko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129490/","id":129490,"name":"Director Burger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129511/","id":129511,"name":"Triple-Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129512/","id":129512,"name":"Beetee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129526/","id":129526,"name":"Sentry #9168"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129655/","id":129655,"name":"Clembot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130029/","id":130029,"name":"The Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130090/","id":130090,"name":"Momo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130128/","id":130128,"name":"Golly-G"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130134/","id":130134,"name":"Electro 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130249/","id":130249,"name":"Red-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130406/","id":130406,"name":"Tim-22"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130540/","id":130540,"name":"Kintoki Sakata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130652/","id":130652,"name":"R304"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130728/","id":130728,"name":"Kodoja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130810/","id":130810,"name":"Kjell Sinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130820/","id":130820,"name":"The Overseer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130919/","id":130919,"name":"Eugene the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131035/","id":131035,"name":"Dominus Ambus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131126/","id":131126,"name":"Ms. Robota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131225/","id":131225,"name":"Zoga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131311/","id":131311,"name":"Agent 42"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131418/","id":131418,"name":"Sparky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131436/","id":131436,"name":"Magnesium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131437/","id":131437,"name":"Lithium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131501/","id":131501,"name":"Rocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131517/","id":131517,"name":"The Iron Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131519/","id":131519,"name":"Silicon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131599/","id":131599,"name":"Offroad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131600/","id":131600,"name":"Rook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131681/","id":131681,"name":"Talky-Walky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131815/","id":131815,"name":"Psius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131851/","id":131851,"name":"Galvatronus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131852/","id":131852,"name":"Sky Reign"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131857/","id":131857,"name":"Carb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131960/","id":131960,"name":"Terminus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132074/","id":132074,"name":"O.M.N.I.T.R.O.N.I.C.U.S."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132198/","id":132198,"name":"J.J."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132224/","id":132224,"name":"Stinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132315/","id":132315,"name":"Wing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132326/","id":132326,"name":"Black Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132348/","id":132348,"name":"Davis 01"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132476/","id":132476,"name":"Malware"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132609/","id":132609,"name":"Hamidento"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132612/","id":132612,"name":"Onyx Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132825/","id":132825,"name":"Luud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133139/","id":133139,"name":"Micronus Prime "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133163/","id":133163,"name":"Iron Punisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133249/","id":133249,"name":"Venus Compiler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133624/","id":133624,"name":"Metallo of Krypton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133659/","id":133659,"name":"Mechanoid Scout MK-5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133660/","id":133660,"name":"G4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133748/","id":133748,"name":"Tori-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133987/","id":133987,"name":"Watson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133988/","id":133988,"name":"Squealer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134238/","id":134238,"name":"Bulldozer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134257/","id":134257,"name":"Maximillian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134258/","id":134258,"name":"Old B.O.B."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134336/","id":134336,"name":"Rog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134564/","id":134564,"name":"Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134569/","id":134569,"name":"Vincent Doonan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134646/","id":134646,"name":"The Keeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134680/","id":134680,"name":"Warsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135096/","id":135096,"name":"Rochester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135123/","id":135123,"name":"Gimlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135134/","id":135134,"name":"Anode"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135162/","id":135162,"name":"Lizbeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135198/","id":135198,"name":"Gato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135223/","id":135223,"name":"Archbishop Emoji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135278/","id":135278,"name":"Inheritor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135314/","id":135314,"name":"Serina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135383/","id":135383,"name":"Super-Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135392/","id":135392,"name":"Tank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135455/","id":135455,"name":"Penny Polendina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135459/","id":135459,"name":"Anomaly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135645/","id":135645,"name":"Dr. Whitney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135692/","id":135692,"name":"Mr. Time"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135801/","id":135801,"name":"Atlas "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135824/","id":135824,"name":"Caramel Man 001"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135847/","id":135847,"name":"Kaihatsu 003-gō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135866/","id":135866,"name":"Rum-Maj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135918/","id":135918,"name":"Marude Dametarō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135921/","id":135921,"name":"Kaihatsu 002-gō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135969/","id":135969,"name":"Kaihatsu 001-gō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135970/","id":135970,"name":"Doikari Honōnosuke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135988/","id":135988,"name":"Klax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135989/","id":135989,"name":"Nujin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135990/","id":135990,"name":"Bakin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136012/","id":136012,"name":"Chester 5000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136234/","id":136234,"name":"Ascalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136269/","id":136269,"name":"Ramrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136287/","id":136287,"name":"Cybertiamat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136288/","id":136288,"name":"Mechzalcoatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136405/","id":136405,"name":"Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136495/","id":136495,"name":"Scavenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136812/","id":136812,"name":"GL3NN"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136813/","id":136813,"name":"S4M"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136891/","id":136891,"name":"Robinbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137461/","id":137461,"name":"RyuZU"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137773/","id":137773,"name":"Kung Fu Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137785/","id":137785,"name":"Bastion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137794/","id":137794,"name":"Owen the Vulture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137795/","id":137795,"name":"Artie the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137892/","id":137892,"name":"Tekhartha Zenyatta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138060/","id":138060,"name":"K-2SO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138329/","id":138329,"name":"Tekno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138441/","id":138441,"name":"Master Cylinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138496/","id":138496,"name":"Mister Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138598/","id":138598,"name":"Roger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138871/","id":138871,"name":"Metabee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139219/","id":139219,"name":"Quintus Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139220/","id":139220,"name":"Alchemist Prime "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139221/","id":139221,"name":"Amalgamous Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139320/","id":139320,"name":"Judge Harvey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139401/","id":139401,"name":"Blue Senturion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139533/","id":139533,"name":"C.H.A.D."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139664/","id":139664,"name":"Mantron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139963/","id":139963,"name":"Dahlia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140028/","id":140028,"name":"0101"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140139/","id":140139,"name":"Eddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140232/","id":140232,"name":"Ian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140301/","id":140301,"name":"Owly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140328/","id":140328,"name":"Hophni Mason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140347/","id":140347,"name":"Greenpeace Crolis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140394/","id":140394,"name":"C-21 Highsinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140436/","id":140436,"name":"AnchoR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140487/","id":140487,"name":"FE-B3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140504/","id":140504,"name":"Tey-Zuka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140576/","id":140576,"name":"Junkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140744/","id":140744,"name":"Animatronic Daisy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140745/","id":140745,"name":"Animatronic Donald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140746/","id":140746,"name":"Animatronic Goofy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140961/","id":140961,"name":"Stardrive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141079/","id":141079,"name":"Brill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141115/","id":141115,"name":"N-K Necrosis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141127/","id":141127,"name":"C.R.O.S.S."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141532/","id":141532,"name":"Tank Tankuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141578/","id":141578,"name":"Verne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141659/","id":141659,"name":"Semisweet ChocoWitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141692/","id":141692,"name":"Nyabi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141749/","id":141749,"name":"Centurion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141887/","id":141887,"name":"Doomwings"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141889/","id":141889,"name":"Robonyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142057/","id":142057,"name":"Do-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142113/","id":142113,"name":"Zoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142180/","id":142180,"name":"Mech-Zangief"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142273/","id":142273,"name":"Roodown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142337/","id":142337,"name":"XVI"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142631/","id":142631,"name":"CR-8R"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142632/","id":142632,"name":"BB-00"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142780/","id":142780,"name":"Dowa-chan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142819/","id":142819,"name":"Troybot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143112/","id":143112,"name":"Robo-Sleazy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143330/","id":143330,"name":"AD-W4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143540/","id":143540,"name":"Gargantuoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143610/","id":143610,"name":"Mectoplasm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143643/","id":143643,"name":"Vincent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143662/","id":143662,"name":"Sky-Bite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143668/","id":143668,"name":"Asimov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143685/","id":143685,"name":"Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144232/","id":144232,"name":"Gregory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144454/","id":144454,"name":"Metal Metro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144718/","id":144718,"name":"Durable Dave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145105/","id":145105,"name":"Peg Amy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145133/","id":145133,"name":"Magrada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145134/","id":145134,"name":"Praesidia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145378/","id":145378,"name":"Robot Dracula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145442/","id":145442,"name":"Baz-L"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145505/","id":145505,"name":"Amazo-Maxi-Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145928/","id":145928,"name":"All-Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146026/","id":146026,"name":"Mikas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146058/","id":146058,"name":"Arsenal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146139/","id":146139,"name":"Ejad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146164/","id":146164,"name":"B.E.R.T."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146169/","id":146169,"name":"Digory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146237/","id":146237,"name":"Goddard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146396/","id":146396,"name":"Garon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146462/","id":146462,"name":"FELIX"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146644/","id":146644,"name":"Cell Phone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146645/","id":146645,"name":"Coffee Pot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146763/","id":146763,"name":"Waddul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146800/","id":146800,"name":"EG-30"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146987/","id":146987,"name":"Autonomy Gage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147188/","id":147188,"name":"Jewbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147277/","id":147277,"name":"Android Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147302/","id":147302,"name":"I.C. Moto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147303/","id":147303,"name":"Tundrahiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147304/","id":147304,"name":"Sloshiburo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147305/","id":147305,"name":"Frosteemoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147337/","id":147337,"name":"Animan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147551/","id":147551,"name":"TATM"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147626/","id":147626,"name":"Tiny Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147691/","id":147691,"name":"Hilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147754/","id":147754,"name":"Archive V"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148070/","id":148070,"name":"Psycho Blue "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148100/","id":148100,"name":"Armada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148271/","id":148271,"name":"Antons"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148272/","id":148272,"name":"Hoverby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148319/","id":148319,"name":"L3-37"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148658/","id":148658,"name":"Mr. Banks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148984/","id":148984,"name":"Cat-Stro-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149120/","id":149120,"name":"Karth Arn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149313/","id":149313,"name":"Difference Engine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149385/","id":149385,"name":"Dreadbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149410/","id":149410,"name":"Crow T. Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149411/","id":149411,"name":"Tom Servo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149508/","id":149508,"name":"AP-5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149675/","id":149675,"name":"Wheeler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149713/","id":149713,"name":"Biff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149786/","id":149786,"name":"H.E.L.P.eR."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149805/","id":149805,"name":"Twiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149846/","id":149846,"name":"Vendata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149859/","id":149859,"name":"Ro-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149864/","id":149864,"name":"Subsea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149865/","id":149865,"name":"Rest-Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149866/","id":149866,"name":"Detritus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149875/","id":149875,"name":"M.U.T.H.E.R."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149924/","id":149924,"name":"Mercury Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149926/","id":149926,"name":"Gold Superman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149927/","id":149927,"name":"Lead Green Arrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149928/","id":149928,"name":"Iron Batman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149929/","id":149929,"name":"Tin Elongated Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149930/","id":149930,"name":"Platinum Wonder Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149980/","id":149980,"name":"Barbie-Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149982/","id":149982,"name":"Ghost Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150098/","id":150098,"name":"Knightboat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150185/","id":150185,"name":"Spina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150186/","id":150186,"name":"E-107 Theta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150232/","id":150232,"name":"HALE-19"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150233/","id":150233,"name":"AMBER-7T"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150242/","id":150242,"name":"Ducotron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150262/","id":150262,"name":"Robert the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150350/","id":150350,"name":"Redbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150408/","id":150408,"name":"Robby the Automaton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150430/","id":150430,"name":"Goliath Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150454/","id":150454,"name":"Iko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150800/","id":150800,"name":"Iron Man Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150864/","id":150864,"name":"Mac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150975/","id":150975,"name":"Jimmy Robotface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151054/","id":151054,"name":"Getter-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151055/","id":151055,"name":"Getter-2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151056/","id":151056,"name":"Getter-3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151149/","id":151149,"name":"Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151267/","id":151267,"name":"Rur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151376/","id":151376,"name":"Michi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151506/","id":151506,"name":"Teddy Ruxpin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151513/","id":151513,"name":"Atom Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151580/","id":151580,"name":"Ambassador Magma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151588/","id":151588,"name":"Atlas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151728/","id":151728,"name":"Ro-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151730/","id":151730,"name":"Chani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151731/","id":151731,"name":"Q the Automaton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152041/","id":152041,"name":"Robot Paul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152354/","id":152354,"name":"Sebastian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152443/","id":152443,"name":"Terry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152488/","id":152488,"name":"Gort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152490/","id":152490,"name":"Funzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152497/","id":152497,"name":"Protector-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152701/","id":152701,"name":"Seeker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152820/","id":152820,"name":"S.A.M."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152823/","id":152823,"name":"Almondis Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152824/","id":152824,"name":"Major Nougat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152825/","id":152825,"name":"Nougatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152826/","id":152826,"name":"Gooey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152827/","id":152827,"name":"Cocoa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152936/","id":152936,"name":"Malfunctioning Eddie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152937/","id":152937,"name":"The Crushinator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152938/","id":152938,"name":"Monique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152956/","id":152956,"name":"Klikkit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152966/","id":152966,"name":"Starktech 9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153028/","id":153028,"name":"iZac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153029/","id":153029,"name":"Fender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153039/","id":153039,"name":"Helping Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153040/","id":153040,"name":"Rawhide Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153041/","id":153041,"name":"Mars Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153043/","id":153043,"name":"Snow Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153048/","id":153048,"name":"Dinosaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153065/","id":153065,"name":"Tamuka the Ghost Bull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153079/","id":153079,"name":"Bing Bong the Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153113/","id":153113,"name":"Stark Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153332/","id":153332,"name":"No-Face Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153407/","id":153407,"name":"Leader-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153409/","id":153409,"name":"Scooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153411/","id":153411,"name":"Turbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153781/","id":153781,"name":"Alberto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154030/","id":154030,"name":"Iron Man 2.0"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154165/","id":154165,"name":"Whiz Bang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154304/","id":154304,"name":"Metalmorpho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154379/","id":154379,"name":"Fitzer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154552/","id":154552,"name":"Crowd Control"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154617/","id":154617,"name":"Overseer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154618/","id":154618,"name":"Predator 37"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154895/","id":154895,"name":"Mrs. Hargreeves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154967/","id":154967,"name":"Boxy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154988/","id":154988,"name":"Fat-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155001/","id":155001,"name":"Gearshift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155002/","id":155002,"name":"Robot Gypsy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155004/","id":155004,"name":"Lisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155005/","id":155005,"name":"Cartridge Unit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155006/","id":155006,"name":"Femputer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155007/","id":155007,"name":"Sinclair 2K"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155010/","id":155010,"name":"Countess de la Roca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155011/","id":155011,"name":"Humorbot 5.0"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155012/","id":155012,"name":"Killbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155014/","id":155014,"name":"Liubot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155028/","id":155028,"name":"Pickler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155029/","id":155029,"name":"Oily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155033/","id":155033,"name":"Hermaphrobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155047/","id":155047,"name":"7¹¹ Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155052/","id":155052,"name":"Robot General"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155060/","id":155060,"name":"Robby the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155061/","id":155061,"name":"Sunset Squad Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155062/","id":155062,"name":"Barrier-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155103/","id":155103,"name":"Billionaire Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155122/","id":155122,"name":"Emperor Nikolai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155123/","id":155123,"name":"Princess Flavia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155126/","id":155126,"name":"Sportsbot 5000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155131/","id":155131,"name":"The Gunslinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155132/","id":155132,"name":"Kwanzaa-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155133/","id":155133,"name":"Angle-ine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155176/","id":155176,"name":"Unit 1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155247/","id":155247,"name":"Rubble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155406/","id":155406,"name":"Alpha 1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155479/","id":155479,"name":"Superoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155531/","id":155531,"name":"Good Robot Ted"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155532/","id":155532,"name":"Good Robot Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155544/","id":155544,"name":"BillTed 1.0"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155638/","id":155638,"name":"K1 Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155643/","id":155643,"name":"Conky 2000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155765/","id":155765,"name":"Pouli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155822/","id":155822,"name":"Holo-Pearl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155914/","id":155914,"name":"Sister Ivry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156312/","id":156312,"name":"Motherboard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156326/","id":156326,"name":"Anubis Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156327/","id":156327,"name":"Horus Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156328/","id":156328,"name":"Khnum Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156329/","id":156329,"name":"Sobek Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156403/","id":156403,"name":"Geomotus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156408/","id":156408,"name":"Captain America A.I."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156417/","id":156417,"name":"Britanotron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156452/","id":156452,"name":"Obix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156513/","id":156513,"name":"Sea-Rat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156514/","id":156514,"name":"Whack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156515/","id":156515,"name":"Smack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156516/","id":156516,"name":"Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156718/","id":156718,"name":"Pixelix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156736/","id":156736,"name":"Codexa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156810/","id":156810,"name":"A.F.C. Blinky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156900/","id":156900,"name":"Plug-In Maniac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157004/","id":157004,"name":"The Noosphere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157013/","id":157013,"name":"Raptor Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157051/","id":157051,"name":"Termagax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157139/","id":157139,"name":"M-41 Zu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157158/","id":157158,"name":"Machine Mandrill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157221/","id":157221,"name":"Isaac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157426/","id":157426,"name":"ASIMO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157818/","id":157818,"name":"XI"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157942/","id":157942,"name":"KARL"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158006/","id":158006,"name":"E.C.H.O."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158041/","id":158041,"name":"P.A.L."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158046/","id":158046,"name":"Inui Juuzou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158055/","id":158055,"name":"Death's Head V"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158374/","id":158374,"name":"Behemoth (Kay-Twelve)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158444/","id":158444,"name":"I.N.S.T.I.G.A.T.O.R."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158606/","id":158606,"name":"G5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158748/","id":158748,"name":"Tutu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158749/","id":158749,"name":"NAAC-P30"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158987/","id":158987,"name":"Sentinel-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159266/","id":159266,"name":"Robi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159461/","id":159461,"name":"I.S.L.A."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159734/","id":159734,"name":"Black Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160008/","id":160008,"name":"H1ll4ry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160009/","id":160009,"name":"L4rry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160010/","id":160010,"name":"Roombo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160121/","id":160121,"name":"Moletron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160214/","id":160214,"name":"Syntho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160265/","id":160265,"name":"Apoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160402/","id":160402,"name":"Neutro, the robot with no brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160540/","id":160540,"name":"Guide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160635/","id":160635,"name":"Road Rage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160636/","id":160636,"name":"Heretech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160803/","id":160803,"name":"Ezra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160814/","id":160814,"name":"Hitler Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160860/","id":160860,"name":"Kyl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160906/","id":160906,"name":"Lodestar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161055/","id":161055,"name":"Dataxen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161090/","id":161090,"name":"Reaper Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161093/","id":161093,"name":"Statue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161324/","id":161324,"name":"Gauge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161438/","id":161438,"name":"Robo-Octo-Ape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161451/","id":161451,"name":"Skytread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161796/","id":161796,"name":"Mother Mold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161865/","id":161865,"name":"N1-ZX "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161881/","id":161881,"name":"En-Threelo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162417/","id":162417,"name":"Artfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162418/","id":162418,"name":"Beta Maxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162428/","id":162428,"name":"Overcast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162429/","id":162429,"name":"Prowl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162430/","id":162430,"name":"Bighorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162431/","id":162431,"name":"K-9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162437/","id":162437,"name":"Air Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162438/","id":162438,"name":"Frostbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162439/","id":162439,"name":"Greejeeber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162440/","id":162440,"name":"Megabolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162441/","id":162441,"name":"Moon Jet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162442/","id":162442,"name":"Reptilion "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162448/","id":162448,"name":"Smokejumper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162449/","id":162449,"name":"Viper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162450/","id":162450,"name":"Rodimus Ucronius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162451/","id":162451,"name":"Dinobot II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162453/","id":162453,"name":"Aerobolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162454/","id":162454,"name":"Blastwave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162478/","id":162478,"name":"Carzap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162479/","id":162479,"name":"Lug "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162481/","id":162481,"name":"Hightail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162482/","id":162482,"name":"Meteorfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162483/","id":162483,"name":"Wild Wheel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162499/","id":162499,"name":"Clear Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162500/","id":162500,"name":"Delta Seeker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162501/","id":162501,"name":"Padlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162502/","id":162502,"name":"Windsail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162506/","id":162506,"name":"Sky Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162514/","id":162514,"name":"Speedstream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162515/","id":162515,"name":"Boss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162516/","id":162516,"name":"Cab "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162595/","id":162595,"name":"Scrap Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162596/","id":162596,"name":"Junkheap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162598/","id":162598,"name":"Highbrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162599/","id":162599,"name":"Tomahawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162600/","id":162600,"name":"Labrat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162601/","id":162601,"name":"Nightglider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162615/","id":162615,"name":"Heatseeker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162616/","id":162616,"name":"Phantomjaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162617/","id":162617,"name":"Steeljaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162634/","id":162634,"name":"Hefter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162635/","id":162635,"name":"Nemesis Breaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162670/","id":162670,"name":"Dirt Rocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162672/","id":162672,"name":"Death Cobra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162674/","id":162674,"name":"Battleslash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162675/","id":162675,"name":"Roadtrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162676/","id":162676,"name":"Brimstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162689/","id":162689,"name":"Little Shot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162699/","id":162699,"name":"Crowbar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162706/","id":162706,"name":"The Automaterror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162717/","id":162717,"name":"Space Scar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162718/","id":162718,"name":"Doom-Lock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162729/","id":162729,"name":"Bug Bite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162730/","id":162730,"name":"Injector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162731/","id":162731,"name":"Sea Clamp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162742/","id":162742,"name":"Driller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162965/","id":162965,"name":"The Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163068/","id":163068,"name":"Mechandro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163278/","id":163278,"name":"Helium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163279/","id":163279,"name":"Fluorine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163280/","id":163280,"name":"Oxygen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163281/","id":163281,"name":"Nitrogen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163282/","id":163282,"name":"Neon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163283/","id":163283,"name":"Xenon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163717/","id":163717,"name":"Zui-Zoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163741/","id":163741,"name":"Accelerator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163809/","id":163809,"name":"The Automaton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163943/","id":163943,"name":"Turtlebot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163996/","id":163996,"name":"Iron Archer\t"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164107/","id":164107,"name":"Sico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164355/","id":164355,"name":"Valkyrie Yuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164356/","id":164356,"name":"Ziggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164367/","id":164367,"name":"Sister "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164374/","id":164374,"name":"Seth Anderson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164473/","id":164473,"name":"Aluminum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164474/","id":164474,"name":"Calcium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164475/","id":164475,"name":"Zirconium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164476/","id":164476,"name":"Sodium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164477/","id":164477,"name":"Plutonium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164518/","id":164518,"name":"Andromeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164519/","id":164519,"name":"Raijin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164823/","id":164823,"name":"Nana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164844/","id":164844,"name":"Gigawatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164853/","id":164853,"name":"Battle Unicorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164859/","id":164859,"name":"Antepenultiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164993/","id":164993,"name":"Blastarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164997/","id":164997,"name":"Soaron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165033/","id":165033,"name":"Lounge Lizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165038/","id":165038,"name":"Thunder Stick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165052/","id":165052,"name":"Ace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165053/","id":165053,"name":"Bent Wing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165060/","id":165060,"name":"Blaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165061/","id":165061,"name":"Block Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165062/","id":165062,"name":"Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165063/","id":165063,"name":"Buggy Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165064/","id":165064,"name":"Cop-Tur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165065/","id":165065,"name":"Dive-Dive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165066/","id":165066,"name":"Dozer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165068/","id":165068,"name":"Flip Top"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165069/","id":165069,"name":"Geeper-Creeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165070/","id":165070,"name":"Good Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165071/","id":165071,"name":"Hans-Cuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165072/","id":165072,"name":"Heat Seeker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165073/","id":165073,"name":"Loco "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165094/","id":165094,"name":"Ejector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165095/","id":165095,"name":"T-Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165112/","id":165112,"name":"Road Ranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165118/","id":165118,"name":"Screw-Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165119/","id":165119,"name":"Sky-Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165120/","id":165120,"name":"Stallion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165121/","id":165121,"name":"Tank "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165122/","id":165122,"name":"Tux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165123/","id":165123,"name":"Twin Spin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165124/","id":165124,"name":"Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165126/","id":165126,"name":"Royal-T"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165127/","id":165127,"name":"Staks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165188/","id":165188,"name":"Megabot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165189/","id":165189,"name":"Mini-Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165431/","id":165431,"name":"Mecha Manta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165656/","id":165656,"name":"Composite Batman/Superman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165673/","id":165673,"name":"Circuit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165928/","id":165928,"name":"D-O"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166044/","id":166044,"name":"T-7T"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166045/","id":166045,"name":"T-1002"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166068/","id":166068,"name":"A.I.D.A."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166089/","id":166089,"name":"Father"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166090/","id":166090,"name":"Fusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166093/","id":166093,"name":"Noah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166094/","id":166094,"name":"Tekus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166162/","id":166162,"name":"Staggatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166280/","id":166280,"name":"Admiral Razorbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166499/","id":166499,"name":"Jackson Storm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166500/","id":166500,"name":"Cruz Ramirez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166501/","id":166501,"name":"Natalie Certain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166583/","id":166583,"name":"Zephyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166584/","id":166584,"name":"Cronk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166586/","id":166586,"name":"Mr. Klink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166662/","id":166662,"name":"Jenny Wakeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166780/","id":166780,"name":"Ro-Bear-Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166783/","id":166783,"name":"Amaz-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166811/","id":166811,"name":"Ro-Bear Belle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166848/","id":166848,"name":"Quick-Pick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166935/","id":166935,"name":"Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166966/","id":166966,"name":"Dee-Dee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166971/","id":166971,"name":"Stormranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167014/","id":167014,"name":"Rodney Copperbottom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167015/","id":167015,"name":"Fender Pinwheeler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167017/","id":167017,"name":"Wonderbot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167135/","id":167135,"name":"Orrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167138/","id":167138,"name":"Robomom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167139/","id":167139,"name":"Robodad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167208/","id":167208,"name":"Trashcan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167270/","id":167270,"name":"Vanessa Kensington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167420/","id":167420,"name":"Nyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167421/","id":167421,"name":"Ram Horn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167458/","id":167458,"name":"Dr. Kahl's Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167479/","id":167479,"name":"Omnidroid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167497/","id":167497,"name":"Carl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167502/","id":167502,"name":"DOR-15"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167521/","id":167521,"name":"Rusty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167555/","id":167555,"name":"Susie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167556/","id":167556,"name":"Star Dream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167576/","id":167576,"name":"Heavy Mole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167596/","id":167596,"name":"Gim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167602/","id":167602,"name":"Heavy Lobster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167627/","id":167627,"name":"Yadogaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167652/","id":167652,"name":"Great Gear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168122/","id":168122,"name":"Skilz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168588/","id":168588,"name":"Sigma-Seven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168633/","id":168633,"name":"Pam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168752/","id":168752,"name":"Katzenwagen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168768/","id":168768,"name":"Mr. Chimes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168794/","id":168794,"name":"Sirio-10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168825/","id":168825,"name":"Roboboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169047/","id":169047,"name":"Trivee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169068/","id":169068,"name":"U-3PO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169077/","id":169077,"name":"Gypsy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169104/","id":169104,"name":"BB-9E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169105/","id":169105,"name":"R2-A3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169112/","id":169112,"name":"WED-15-77"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169298/","id":169298,"name":"DD-BD"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169321/","id":169321,"name":"Dum-E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169467/","id":169467,"name":"Scaramouche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169484/","id":169484,"name":"Tina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169520/","id":169520,"name":"Lawrence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169553/","id":169553,"name":"Samuel L. Chang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169566/","id":169566,"name":"The Iron Lung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169707/","id":169707,"name":"Gort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169912/","id":169912,"name":"Cortosis Battle Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169913/","id":169913,"name":"Red Barber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169914/","id":169914,"name":"Red Rover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169915/","id":169915,"name":"Red Suspenders"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169933/","id":169933,"name":"Killmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170117/","id":170117,"name":"Rover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170144/","id":170144,"name":"NOS-4-A2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170174/","id":170174,"name":"Spider-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170315/","id":170315,"name":"Watchtower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170395/","id":170395,"name":"B1-66ER"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170469/","id":170469,"name":"Gun-R II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170813/","id":170813,"name":"Iris Humphries"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170909/","id":170909,"name":"Little Yama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170923/","id":170923,"name":"Mandy Sleek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171168/","id":171168,"name":"Pete"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171316/","id":171316,"name":"Mark Seven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171454/","id":171454,"name":"Babyface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171484/","id":171484,"name":"V.D. Madness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171607/","id":171607,"name":"Pathfinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171672/","id":171672,"name":"KL-03"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171699/","id":171699,"name":"Lila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171800/","id":171800,"name":"V-18"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171818/","id":171818,"name":"Multitude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171874/","id":171874,"name":"Ose Riro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171883/","id":171883,"name":"The Experiment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172351/","id":172351,"name":"Norm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173409/","id":173409,"name":"Darling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173738/","id":173738,"name":"Buggles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173767/","id":173767,"name":"Kill-Vearn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173847/","id":173847,"name":"Pulse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173975/","id":173975,"name":"R3-Y2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174000/","id":174000,"name":"Verminator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174363/","id":174363,"name":"Mangle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174364/","id":174364,"name":"Twisted Freddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174365/","id":174365,"name":"Twisted Bonnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174366/","id":174366,"name":"Twisted Foxy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174367/","id":174367,"name":"Twisted Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174410/","id":174410,"name":"R-3X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174429/","id":174429,"name":"Redstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174639/","id":174639,"name":"Taln"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174999/","id":174999,"name":"Brian's Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175226/","id":175226,"name":"Ted"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175306/","id":175306,"name":"XB723-51"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175409/","id":175409,"name":"Bad Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175610/","id":175610,"name":"Sam the Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175665/","id":175665,"name":"Harvey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175675/","id":175675,"name":"Topar "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175765/","id":175765,"name":"Innocent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175766/","id":175766,"name":"Pious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175767/","id":175767,"name":"Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175769/","id":175769,"name":"Sixtus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175770/","id":175770,"name":"Sextus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175837/","id":175837,"name":"Lore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175866/","id":175866,"name":"B-U4D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175915/","id":175915,"name":"Danny Chan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175965/","id":175965,"name":"King Aradon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176072/","id":176072,"name":"Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176073/","id":176073,"name":"Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176074/","id":176074,"name":"White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176115/","id":176115,"name":"Fido-5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176227/","id":176227,"name":"Petal Starchild"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176250/","id":176250,"name":"CAL"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176293/","id":176293,"name":"Ares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176298/","id":176298,"name":"Rover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176315/","id":176315,"name":"Wonder Woman Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176316/","id":176316,"name":"Abdul the Love Tool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176331/","id":176331,"name":"Katy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176402/","id":176402,"name":"A-3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176430/","id":176430,"name":"Jetter Mars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176547/","id":176547,"name":"R.A.L.P.H."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176713/","id":176713,"name":"Hulkbuster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176981/","id":176981,"name":"Scooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177182/","id":177182,"name":"Electroid Zaborger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177244/","id":177244,"name":"Cerebex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177506/","id":177506,"name":"Count Karnakus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177672/","id":177672,"name":"Vulpa Six"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178084/","id":178084,"name":"Billy the Droid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178114/","id":178114,"name":"Failsafe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178115/","id":178115,"name":"Executor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178840/","id":178840,"name":"Rivets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178889/","id":178889,"name":"Elle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178893/","id":178893,"name":"WOL-421313"}],"id":5,"name":"Robot","profiles":[],"site_detail_url":"https://comicvine.gamespot.com/robot/4030-5/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/origin-details/origin-4030-6.json b/samples/api-data/origin-details/origin-4030-6.json new file mode 100644 index 0000000..cf7ecc9 --- /dev/null +++ b/samples/api-data/origin-details/origin-4030-6.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-6/","character_set":null,"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1259/","id":1259,"name":"Sun Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1271/","id":1271,"name":"Colossal Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1449/","id":1449,"name":"She-Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1454/","id":1454,"name":"Sentry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1465/","id":1465,"name":"Wonder Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1478/","id":1478,"name":"Sasquatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1907/","id":1907,"name":"Doctor Eclipse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1945/","id":1945,"name":"Swarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2050/","id":2050,"name":"Captain Atom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2114/","id":2114,"name":"Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2120/","id":2120,"name":"Human Torch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2151/","id":2151,"name":"Mr. Fantastic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2190/","id":2190,"name":"Invisible Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2238/","id":2238,"name":"Jeronimus Corneliszoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2267/","id":2267,"name":"Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2384/","id":2384,"name":"Metamorpho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3013/","id":3013,"name":"Nucleus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3445/","id":3445,"name":"Betty Ross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3457/","id":3457,"name":"Thunderbolt Ross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3489/","id":3489,"name":"Abomination"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3544/","id":3544,"name":"Sandman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3621/","id":3621,"name":"Wildfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4087/","id":4087,"name":"Negative Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4315/","id":4315,"name":"Doc Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4425/","id":4425,"name":"Teen-Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4597/","id":4597,"name":"Genocide Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4690/","id":4690,"name":"Parasite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4807/","id":4807,"name":"Radioactive Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4835/","id":4835,"name":"Bloodtide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5302/","id":5302,"name":"Plasmus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5694/","id":5694,"name":"Halo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6297/","id":6297,"name":"Looter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6790/","id":6790,"name":"Vapor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6820/","id":6820,"name":"Vector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6821/","id":6821,"name":"Ironclad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6822/","id":6822,"name":"X-Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6941/","id":6941,"name":"Major Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7177/","id":7177,"name":"Solar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7246/","id":7246,"name":"Volcana Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7407/","id":7407,"name":"Ravage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7508/","id":7508,"name":"Flashpoint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7617/","id":7617,"name":"Leader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7655/","id":7655,"name":"Dr. Light (Hoshi)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7865/","id":7865,"name":"Maestro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8966/","id":8966,"name":"Radioactive Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10214/","id":10214,"name":"Texas Twister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10364/","id":10364,"name":"Death-Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10468/","id":10468,"name":"Fallout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10868/","id":10868,"name":"Jailbait"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11187/","id":11187,"name":"Grossout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11246/","id":11246,"name":"Doctor Phosphorus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11340/","id":11340,"name":"Presence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11880/","id":11880,"name":"Molecule Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12471/","id":12471,"name":"Erica Pierce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12526/","id":12526,"name":"The Leader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12615/","id":12615,"name":"Abominatrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12664/","id":12664,"name":"Half-Life"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12843/","id":12843,"name":"Radion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13418/","id":13418,"name":"Morton Clegstead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13423/","id":13423,"name":"Inheritor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13436/","id":13436,"name":"Missing Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14099/","id":14099,"name":"Joey Stagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15235/","id":15235,"name":"Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15258/","id":15258,"name":"Silence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15986/","id":15986,"name":"Major Disaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16523/","id":16523,"name":"Man-Mountain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17838/","id":17838,"name":"Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17852/","id":17852,"name":"Megaton Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17861/","id":17861,"name":"Barbaric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17934/","id":17934,"name":"Max Damage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17937/","id":17937,"name":"Boogan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17966/","id":17966,"name":"Humongous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17988/","id":17988,"name":"Moe Muscle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18270/","id":18270,"name":"Spot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18611/","id":18611,"name":"The Thousand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19931/","id":19931,"name":"Starlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19999/","id":19999,"name":"Blight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21599/","id":21599,"name":"Godzilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21624/","id":21624,"name":"Vendetta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22436/","id":22436,"name":"Flux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22461/","id":22461,"name":"Fuji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22522/","id":22522,"name":"Bruttu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24342/","id":24342,"name":"VanDoom Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25073/","id":25073,"name":"Omnibus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25211/","id":25211,"name":"Ogress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25874/","id":25874,"name":"Despot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26079/","id":26079,"name":"Neutron Bum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26157/","id":26157,"name":"Talos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26708/","id":26708,"name":"Devlin O'Ryan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27807/","id":27807,"name":"Doctor Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28304/","id":28304,"name":"Spiderboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28509/","id":28509,"name":"Sunturion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30464/","id":30464,"name":"Rattilore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31858/","id":31858,"name":"Huntarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32123/","id":32123,"name":"Meltdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32497/","id":32497,"name":"Digger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33611/","id":33611,"name":"Korgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33892/","id":33892,"name":"Meteor Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34113/","id":34113,"name":"Vanadium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34114/","id":34114,"name":"Phosphorus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34115/","id":34115,"name":"Carbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34116/","id":34116,"name":"Radium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34560/","id":34560,"name":"Singularity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35739/","id":35739,"name":"Kryptonite Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36192/","id":36192,"name":"King Cadaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37640/","id":37640,"name":"Sand Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39119/","id":39119,"name":"Anomaly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39277/","id":39277,"name":"Doctor Solar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40677/","id":40677,"name":"Hulk 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40887/","id":40887,"name":"Jalila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41242/","id":41242,"name":"Socialist Red Guardsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41532/","id":41532,"name":"Street"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41575/","id":41575,"name":"Manfred Mota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41976/","id":41976,"name":"Samaritan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42121/","id":42121,"name":"Suprema"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42629/","id":42629,"name":"Primevil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43587/","id":43587,"name":"Amadeus Cho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43658/","id":43658,"name":"Captain Dynamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43659/","id":43659,"name":"Ramjet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43660/","id":43660,"name":"Smasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43663/","id":43663,"name":"Menagerie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43664/","id":43664,"name":"Supervision"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43704/","id":43704,"name":"Toxic Avenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44386/","id":44386,"name":"Danger Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44683/","id":44683,"name":"Duke Nukem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44739/","id":44739,"name":"The Great Video"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45113/","id":45113,"name":"Atom (Thompson)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46194/","id":46194,"name":"Synergy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46634/","id":46634,"name":"Ion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46823/","id":46823,"name":"Brain-Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46981/","id":46981,"name":"Ephraim Soles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47100/","id":47100,"name":"Prodigy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48730/","id":48730,"name":"Reactron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49010/","id":49010,"name":"Captain Future"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49694/","id":49694,"name":"Alia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49905/","id":49905,"name":"Geiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50513/","id":50513,"name":"Blossom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50543/","id":50543,"name":"Buttercup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50544/","id":50544,"name":"Bubbles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50833/","id":50833,"name":"Aura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50983/","id":50983,"name":"Mad Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51822/","id":51822,"name":"Soljer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51862/","id":51862,"name":"Hericane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52013/","id":52013,"name":"The Midnight Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52772/","id":52772,"name":"Vibrex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52868/","id":52868,"name":"Digger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53788/","id":53788,"name":"All-American Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54539/","id":54539,"name":"Appala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55666/","id":55666,"name":"Neon Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55667/","id":55667,"name":"Crystal Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55668/","id":55668,"name":"Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55669/","id":55669,"name":"Kid Dynamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55808/","id":55808,"name":"Skulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55908/","id":55908,"name":"Supersonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55920/","id":55920,"name":"Mister Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56406/","id":56406,"name":"Geiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56418/","id":56418,"name":"Professor Radium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56671/","id":56671,"name":"Volcana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56907/","id":56907,"name":"Halflife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57033/","id":57033,"name":"Blue Marvel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57325/","id":57325,"name":"Wesley Cassady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57931/","id":57931,"name":"Otis Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57932/","id":57932,"name":"Charlie Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57933/","id":57933,"name":"Bobbi-Jo Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57983/","id":57983,"name":"Griz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57989/","id":57989,"name":"Patchwork"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58457/","id":58457,"name":"Cinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58485/","id":58485,"name":"Hulk Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58491/","id":58491,"name":"The Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60071/","id":60071,"name":"Rainbow Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60281/","id":60281,"name":"Blue Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60410/","id":60410,"name":"Alpha One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60583/","id":60583,"name":"Powersurge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61154/","id":61154,"name":"Velta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61307/","id":61307,"name":"Red Blazer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61389/","id":61389,"name":"Wildstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62118/","id":62118,"name":"Ravenus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62263/","id":62263,"name":"Russian Radiation Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62295/","id":62295,"name":"Feldstadt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62452/","id":62452,"name":"Atomicus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62462/","id":62462,"name":"Fantastic Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62464/","id":62464,"name":"Cannonfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62472/","id":62472,"name":"Invisible Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62554/","id":62554,"name":"Atomo Bleep-Bleep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63173/","id":63173,"name":"Muk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63894/","id":63894,"name":"Gargoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63900/","id":63900,"name":"Savage Skull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65429/","id":65429,"name":"Aberration"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65470/","id":65470,"name":"Morass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65471/","id":65471,"name":"Axon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67555/","id":67555,"name":"Carbon Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68239/","id":68239,"name":"Skullface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68370/","id":68370,"name":"Major Battle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68665/","id":68665,"name":"Hubert St. Johns"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69159/","id":69159,"name":"Grimer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69454/","id":69454,"name":"Latex Avenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69524/","id":69524,"name":"Swamp Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69732/","id":69732,"name":"Virus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69800/","id":69800,"name":"Yu Komori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69913/","id":69913,"name":"Mettle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70026/","id":70026,"name":"Slag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70449/","id":70449,"name":"Beau Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70450/","id":70450,"name":"Billy Bob Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70451/","id":70451,"name":"Elrod Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70453/","id":70453,"name":"Luke Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70455/","id":70455,"name":"Rufus Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70458/","id":70458,"name":"Woody Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70488/","id":70488,"name":"Hot Dog Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70518/","id":70518,"name":"Octavia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71206/","id":71206,"name":"Tyrone Cash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71311/","id":71311,"name":"La Donna Ragna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71404/","id":71404,"name":"Spider-Femme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72542/","id":72542,"name":"Bernard Brenner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72824/","id":72824,"name":"Stan Silver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73080/","id":73080,"name":"Wonderboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73392/","id":73392,"name":"The Superior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74137/","id":74137,"name":"Spider Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74417/","id":74417,"name":"Leopard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75282/","id":75282,"name":"Sun Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75903/","id":75903,"name":"The Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75923/","id":75923,"name":"Nukeface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76260/","id":76260,"name":"Angstrom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76261/","id":76261,"name":"Mortar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76262/","id":76262,"name":"Splinter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76698/","id":76698,"name":"Kluh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76898/","id":76898,"name":"Spectrumonster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78097/","id":78097,"name":"Max Hammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78105/","id":78105,"name":"Vapor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78499/","id":78499,"name":"Night Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79295/","id":79295,"name":"Benjamin Krullen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79327/","id":79327,"name":"Abominite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79382/","id":79382,"name":"Sunstreak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79420/","id":79420,"name":"Miles Morales"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80978/","id":80978,"name":"Adonai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80994/","id":80994,"name":"Anti-Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81271/","id":81271,"name":"Human Torch (Mangaverse)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82539/","id":82539,"name":"Phazer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82615/","id":82615,"name":"Mondo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82843/","id":82843,"name":"Ener-Jeannie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83326/","id":83326,"name":"Captain Universe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83642/","id":83642,"name":"SOLAM"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83732/","id":83732,"name":"Hakkou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83748/","id":83748,"name":"Ombra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84710/","id":84710,"name":"The Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84891/","id":84891,"name":"Sea Urchin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85398/","id":85398,"name":"Space Ace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85806/","id":85806,"name":"Bullet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85811/","id":85811,"name":"Order"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85817/","id":85817,"name":"The Ant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85825/","id":85825,"name":"Man-Bot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85984/","id":85984,"name":"Inedible Bulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86072/","id":86072,"name":"Wall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86073/","id":86073,"name":"Tempest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86074/","id":86074,"name":"Bedlam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86114/","id":86114,"name":"Coyote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86165/","id":86165,"name":"Wolverine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86173/","id":86173,"name":"Rogue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86294/","id":86294,"name":"Clay Ramsay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86802/","id":86802,"name":"Nuclear Norseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86820/","id":86820,"name":"Brick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86821/","id":86821,"name":"Boomer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86822/","id":86822,"name":"Butch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86832/","id":86832,"name":"Berserk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86833/","id":86833,"name":"Brat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86834/","id":86834,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87573/","id":87573,"name":"Argh!Yle!"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88214/","id":88214,"name":"El Hombre Araña"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88850/","id":88850,"name":"Abomination (Lam)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88878/","id":88878,"name":"Billy "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90067/","id":90067,"name":"Horde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90604/","id":90604,"name":"Darix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92000/","id":92000,"name":"Reverse-Flash (Tangent)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92143/","id":92143,"name":"Identity Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92691/","id":92691,"name":"Jet Headstrong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92692/","id":92692,"name":"Buzzsaw Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92693/","id":92693,"name":"Ms. Megawatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93292/","id":93292,"name":"Jhen the Gammazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95474/","id":95474,"name":"Jessie Wingfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99326/","id":99326,"name":"Gorosaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99497/","id":99497,"name":"Millirem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104282/","id":104282,"name":"Adam Bomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104376/","id":104376,"name":"Arthur Thompson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104401/","id":104401,"name":"The Atom (Tangent)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106804/","id":106804,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106806/","id":106806,"name":"Frank Future"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107344/","id":107344,"name":"Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108329/","id":108329,"name":"Allen Adam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108989/","id":108989,"name":"Johnny Future"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109212/","id":109212,"name":"Barbe-Cutie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109213/","id":109213,"name":"Elastic Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109614/","id":109614,"name":"Teen Abomination"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113823/","id":113823,"name":"Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115617/","id":115617,"name":"Flame-Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116167/","id":116167,"name":"Vibranium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116251/","id":116251,"name":"Aquaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118197/","id":118197,"name":"Captain Adam Strange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118754/","id":118754,"name":"Spiderling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124096/","id":124096,"name":"Longshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124097/","id":124097,"name":"Dazzler (Schau)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124552/","id":124552,"name":"Petra Parker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125649/","id":125649,"name":"Maiden Amerika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125655/","id":125655,"name":"Becca Starr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125696/","id":125696,"name":"Zirconium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125697/","id":125697,"name":"Iron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125698/","id":125698,"name":"Hafnium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125699/","id":125699,"name":"Cobalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125700/","id":125700,"name":"Barium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125701/","id":125701,"name":"Scandium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125703/","id":125703,"name":"Europium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125704/","id":125704,"name":"Cadmium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126476/","id":126476,"name":"Kevin Brashear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126646/","id":126646,"name":"Fi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126648/","id":126648,"name":"Boilermaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126649/","id":126649,"name":"Paintball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126650/","id":126650,"name":"Psi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126651/","id":126651,"name":"Mints"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126652/","id":126652,"name":"Rotatory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126714/","id":126714,"name":"Andreji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126764/","id":126764,"name":"Yelena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129394/","id":129394,"name":"Rad-Man "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129637/","id":129637,"name":"Igor Stancheck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129890/","id":129890,"name":"Solar Superman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132543/","id":132543,"name":"Kwezi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132592/","id":132592,"name":"Powerman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133335/","id":133335,"name":"Maker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133432/","id":133432,"name":"Matt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133516/","id":133516,"name":"Dani Matrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133517/","id":133517,"name":"Red Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133518/","id":133518,"name":"Checkers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133519/","id":133519,"name":"Dirty Al"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134273/","id":134273,"name":"Libellula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134274/","id":134274,"name":"Elastica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134468/","id":134468,"name":"Il Disegnatore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134470/","id":134470,"name":"Artiglio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135180/","id":135180,"name":"#$%& King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138104/","id":138104,"name":"Ultramax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138339/","id":138339,"name":"Radical"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141563/","id":141563,"name":"Cobalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141576/","id":141576,"name":"Steve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141577/","id":141577,"name":"Jim Garrison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141717/","id":141717,"name":"Hypnotia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142054/","id":142054,"name":"Possum Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142472/","id":142472,"name":"Cambria Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144052/","id":144052,"name":"Freon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147095/","id":147095,"name":"Atomo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149176/","id":149176,"name":"Doctor Frye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150279/","id":150279,"name":"Spider-Punk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150961/","id":150961,"name":"Kentclark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151444/","id":151444,"name":"Del Frye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151572/","id":151572,"name":"Ami Ozawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152567/","id":152567,"name":"Smilin' Joe Fission"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153257/","id":153257,"name":"Spiders-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154411/","id":154411,"name":"Nucleon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154433/","id":154433,"name":"Dickhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155129/","id":155129,"name":"Bulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155168/","id":155168,"name":"Mosquito Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155359/","id":155359,"name":"Fantabulaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155366/","id":155366,"name":"Radiationman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156205/","id":156205,"name":"Manimal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156439/","id":156439,"name":"Hot Rocks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156440/","id":156440,"name":"Mister Invisible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157102/","id":157102,"name":"Headman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157137/","id":157137,"name":"Zzzyclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157236/","id":157236,"name":"Weapon Hex 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159385/","id":159385,"name":"Invisible Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159386/","id":159386,"name":"Andie Mugh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159387/","id":159387,"name":"Sian Cortez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159388/","id":159388,"name":"Bela Cortez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161173/","id":161173,"name":"Web-Slinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161228/","id":161228,"name":"Garden-Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161229/","id":161229,"name":"Spider-Requiem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161232/","id":161232,"name":"Spidair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161233/","id":161233,"name":"Sea-Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161234/","id":161234,"name":"Spider-Sting"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161235/","id":161235,"name":"Sun-Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161236/","id":161236,"name":"White Widow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162154/","id":162154,"name":"Stardust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162256/","id":162256,"name":"Spider-Man Noir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163640/","id":163640,"name":"Strong Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163641/","id":163641,"name":"Rope Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163642/","id":163642,"name":"Tornado Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163643/","id":163643,"name":"Cuckoo Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163644/","id":163644,"name":"Diaper Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163893/","id":163893,"name":"Fivestar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168485/","id":168485,"name":"Ricardo Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168591/","id":168591,"name":"Go-Getter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168592/","id":168592,"name":"Press-On"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168905/","id":168905,"name":"Lady Heumarkt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169076/","id":169076,"name":"FLO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169603/","id":169603,"name":"Peräsmies"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169829/","id":169829,"name":"Walt Arnold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170903/","id":170903,"name":"Globby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174135/","id":174135,"name":"Peräsmiehen Poika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175501/","id":175501,"name":"Binary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175923/","id":175923,"name":"Kapitan Aksyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176129/","id":176129,"name":"Firehawk (Theresa)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176130/","id":176130,"name":"Al-Faristaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176223/","id":176223,"name":"Behemoth"}],"id":6,"name":"Radiation","profiles":[],"site_detail_url":"https://comicvine.gamespot.com/radiation/4030-6/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/origin-details/origin-4030-7.json b/samples/api-data/origin-details/origin-4030-7.json new file mode 100644 index 0000000..2086b9c --- /dev/null +++ b/samples/api-data/origin-details/origin-4030-7.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-7/","character_set":null,"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1542/","id":1542,"name":"Ivar Anni-Padda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1569/","id":1569,"name":"X(A/N)th"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1668/","id":1668,"name":"Eternal Warrior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1847/","id":1847,"name":"Lady Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1884/","id":1884,"name":"Petalwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2068/","id":2068,"name":"Cooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2072/","id":2072,"name":"Oliver Stoker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2106/","id":2106,"name":"Terrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2118/","id":2118,"name":"Sersi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2149/","id":2149,"name":"Galactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2153/","id":2153,"name":"Uranian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2164/","id":2164,"name":"Phoenix Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2200/","id":2200,"name":"Rose Tattoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2205/","id":2205,"name":"Dormammu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2227/","id":2227,"name":"Neron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2268/","id":2268,"name":"Thor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2349/","id":2349,"name":"Darkseid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2350/","id":2350,"name":"Billy Batson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2356/","id":2356,"name":"Mary Marvel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2359/","id":2359,"name":"Artemis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2361/","id":2361,"name":"Spectre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2363/","id":2363,"name":"Orion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2364/","id":2364,"name":"Takion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2365/","id":2365,"name":"The Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2492/","id":2492,"name":"Deathurge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2496/","id":2496,"name":"Oblivion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2503/","id":2503,"name":"Hercules"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2510/","id":2510,"name":"Sushil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2635/","id":2635,"name":"Mephisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2636/","id":2636,"name":"Pluto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2637/","id":2637,"name":"Umar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2638/","id":2638,"name":"Malevolence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2646/","id":2646,"name":"Nightmare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2678/","id":2678,"name":"Charybdis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2763/","id":2763,"name":"Hypnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2807/","id":2807,"name":"Circe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2857/","id":2857,"name":"Hephaestus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2858/","id":2858,"name":"Iris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2878/","id":2878,"name":"Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2988/","id":2988,"name":"Mandrac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2993/","id":2993,"name":"Catequil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3010/","id":3010,"name":"Super-Shock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3153/","id":3153,"name":"Science Fiction"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3291/","id":3291,"name":"Nabu the Wise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3298/","id":3298,"name":"Phantom Stranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3332/","id":3332,"name":"Nergal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3342/","id":3342,"name":"Rosacarnis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3381/","id":3381,"name":"Spawn (Simmons)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3383/","id":3383,"name":"Redeemer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3384/","id":3384,"name":"Mammon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3390/","id":3390,"name":"Violator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3507/","id":3507,"name":"Odin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3508/","id":3508,"name":"Heimdall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3511/","id":3511,"name":"Hogun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3512/","id":3512,"name":"Fandral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3513/","id":3513,"name":"Volstagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3517/","id":3517,"name":"Executioner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3616/","id":3616,"name":"Metron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3628/","id":3628,"name":"Big Barda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3629/","id":3629,"name":"Granny Goodness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3631/","id":3631,"name":"Bernadeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3632/","id":3632,"name":"Lashina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3633/","id":3633,"name":"Mad Harriet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3634/","id":3634,"name":"Stompa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3684/","id":3684,"name":"Azsum-Gandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3725/","id":3725,"name":"Killer Croc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3763/","id":3763,"name":"Eclipso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3830/","id":3830,"name":"Kama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3836/","id":3836,"name":"Parvati"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3840/","id":3840,"name":"Belial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3861/","id":3861,"name":"Dahut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3884/","id":3884,"name":"Sarasvati"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3963/","id":3963,"name":"Tzadqiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3985/","id":3985,"name":"Lakshmi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3988/","id":3988,"name":"Indra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4085/","id":4085,"name":"Nao Yut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4232/","id":4232,"name":"Helen Gable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4290/","id":4290,"name":"Brimer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4311/","id":4311,"name":"Ariadne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4324/","id":4324,"name":"Loki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4325/","id":4325,"name":"Queen Knorda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4335/","id":4335,"name":"Forseti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4342/","id":4342,"name":"Hela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4666/","id":4666,"name":"Morningstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4667/","id":4667,"name":"Monolith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4668/","id":4668,"name":"Fathom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4669/","id":4669,"name":"Vortex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4679/","id":4679,"name":"Kanto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4680/","id":4680,"name":"Kalibak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4681/","id":4681,"name":"Desaad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4684/","id":4684,"name":"Brainiac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4704/","id":4704,"name":"Superwoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4757/","id":4757,"name":"Perdissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4812/","id":4812,"name":"Overmind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4900/","id":4900,"name":"Shocko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4904/","id":4904,"name":"Mordru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4916/","id":4916,"name":"Black Adam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4929/","id":4929,"name":"Hippolyta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4957/","id":4957,"name":"Malebolgia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4959/","id":4959,"name":"Abdiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4962/","id":4962,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4974/","id":4974,"name":"Phlegethonyarre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4975/","id":4975,"name":"Bune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4976/","id":4976,"name":"Abaddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4978/","id":4978,"name":"Nightmares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4982/","id":4982,"name":"Desiccator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5028/","id":5028,"name":"Dargil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5085/","id":5085,"name":"Tolometh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5090/","id":5090,"name":"Skalla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5092/","id":5092,"name":"Hylda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5093/","id":5093,"name":"Gudrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5241/","id":5241,"name":"Graves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5310/","id":5310,"name":"Trigon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5316/","id":5316,"name":"Arzaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5317/","id":5317,"name":"Lightray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5322/","id":5322,"name":"Stayne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5324/","id":5324,"name":"Highfather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5335/","id":5335,"name":"Merlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5372/","id":5372,"name":"Röskva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5406/","id":5406,"name":"Darth Maul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5466/","id":5466,"name":"Hellboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5470/","id":5470,"name":"Sif"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5471/","id":5471,"name":"Balder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5493/","id":5493,"name":"Heimdall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5501/","id":5501,"name":"Hecate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5502/","id":5502,"name":"Sadu-Hem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5529/","id":5529,"name":"Baba Yaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5645/","id":5645,"name":"Doctor Orlando Doyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5703/","id":5703,"name":"Mr. Miracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5825/","id":5825,"name":"Emmanuelle Chekhov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5894/","id":5894,"name":"Ptah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5955/","id":5955,"name":"Jack Horner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5963/","id":5963,"name":"North Wind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5966/","id":5966,"name":"Mistral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5968/","id":5968,"name":"Grimble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5969/","id":5969,"name":"Kay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5970/","id":5970,"name":"Beauty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5972/","id":5972,"name":"Whiff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5975/","id":5975,"name":"Flycatcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5977/","id":5977,"name":"Mr. Web"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6129/","id":6129,"name":"Bane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6143/","id":6143,"name":"Epoch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6237/","id":6237,"name":"Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6239/","id":6239,"name":"Mystico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6264/","id":6264,"name":"Mr. Ashbless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6339/","id":6339,"name":"Crom Dubh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6342/","id":6342,"name":"Darth Vader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6344/","id":6344,"name":"Jango Fett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6513/","id":6513,"name":"Haokah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6521/","id":6521,"name":"Ludi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6554/","id":6554,"name":"Hephaestus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6557/","id":6557,"name":"Erato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6558/","id":6558,"name":"Artemis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6568/","id":6568,"name":"Nemesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6575/","id":6575,"name":"Hera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6579/","id":6579,"name":"Amethyst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6582/","id":6582,"name":"Flaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6583/","id":6583,"name":"Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6593/","id":6593,"name":"Felix Faust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6595/","id":6595,"name":"Danu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6651/","id":6651,"name":"Gorgana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6760/","id":6760,"name":"Kierrok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6809/","id":6809,"name":"Valkyrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6811/","id":6811,"name":"Living Tribunal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6891/","id":6891,"name":"Morgan le Fay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6902/","id":6902,"name":"Zauriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6912/","id":6912,"name":"Power Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6950/","id":6950,"name":"Lianna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6951/","id":6951,"name":"Ganthet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6982/","id":6982,"name":"Slough Throt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7021/","id":7021,"name":"Avagddu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7090/","id":7090,"name":"Grundroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7108/","id":7108,"name":"Firelord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7197/","id":7197,"name":"Frigga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7198/","id":7198,"name":"Karnilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7199/","id":7199,"name":"Rimthursar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7200/","id":7200,"name":"Sif"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7201/","id":7201,"name":"Balder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7202/","id":7202,"name":"Hoder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7218/","id":7218,"name":"Jonz Rickard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7225/","id":7225,"name":"Enchantress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7257/","id":7257,"name":"Starfox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7265/","id":7265,"name":"Snow White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7266/","id":7266,"name":"Bigby Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7267/","id":7267,"name":"Weyland Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7280/","id":7280,"name":"Death of the Endless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7295/","id":7295,"name":"Gabriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7322/","id":7322,"name":"Milla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7354/","id":7354,"name":"Celestine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7361/","id":7361,"name":"Gatekeeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7367/","id":7367,"name":"Etrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7525/","id":7525,"name":"Omm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7572/","id":7572,"name":"Hel Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7607/","id":7607,"name":"Thanos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7683/","id":7683,"name":"Purson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7741/","id":7741,"name":"Attis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7766/","id":7766,"name":"Selene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7869/","id":7869,"name":"The Lord Weird Slough Feg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7877/","id":7877,"name":"Moloch of the Many Swords"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7990/","id":7990,"name":"Elysius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8057/","id":8057,"name":"Haumea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8090/","id":8090,"name":"Bes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8117/","id":8117,"name":"Mademoiselle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8137/","id":8137,"name":"Omen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8192/","id":8192,"name":"Imperious Leader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8223/","id":8223,"name":"Manassa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8247/","id":8247,"name":"Avengelyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8281/","id":8281,"name":"Origin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8342/","id":8342,"name":"Solomon Grundy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8440/","id":8440,"name":"Perg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8474/","id":8474,"name":"Snowbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8588/","id":8588,"name":"Kildare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8613/","id":8613,"name":"Pug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8617/","id":8617,"name":"Dark One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9042/","id":9042,"name":"Gaea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9048/","id":9048,"name":"Penelope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9238/","id":9238,"name":"Yuga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9272/","id":9272,"name":"Arwen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9408/","id":9408,"name":"Yum Kaax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9409/","id":9409,"name":"Hector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9410/","id":9410,"name":"Jacawitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9477/","id":9477,"name":"Goddess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9535/","id":9535,"name":"Amazing Grace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9538/","id":9538,"name":"Slig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9555/","id":9555,"name":"Destiny of the Endless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9632/","id":9632,"name":"Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9646/","id":9646,"name":"Cain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9679/","id":9679,"name":"Jack Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9749/","id":9749,"name":"Mother Nature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9805/","id":9805,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9806/","id":9806,"name":"Abel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9822/","id":9822,"name":"Smaug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9927/","id":9927,"name":"Bloody Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9945/","id":9945,"name":"Lord Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10000/","id":10000,"name":"Grayven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10006/","id":10006,"name":"Imperiex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10015/","id":10015,"name":"Mixcoatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10031/","id":10031,"name":"Kismet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10032/","id":10032,"name":"Black Racer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10054/","id":10054,"name":"Garuda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10195/","id":10195,"name":"Wundajin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10202/","id":10202,"name":"Mr. Nebula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10226/","id":10226,"name":"Zeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10233/","id":10233,"name":"Kundrig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10266/","id":10266,"name":"Skagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10267/","id":10267,"name":"Ymir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10300/","id":10300,"name":"Beyonder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10311/","id":10311,"name":"Bres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10329/","id":10329,"name":"Xane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10427/","id":10427,"name":"Valdoll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10522/","id":10522,"name":"Saint of Killers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10526/","id":10526,"name":"God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10533/","id":10533,"name":"Genesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10540/","id":10540,"name":"DeBlanc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10541/","id":10541,"name":"Fiore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10605/","id":10605,"name":"Lament"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10618/","id":10618,"name":"Bael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10619/","id":10619,"name":"Asmodeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10620/","id":10620,"name":"Marchosias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10622/","id":10622,"name":"Valdor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10649/","id":10649,"name":"Ereshkigal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10651/","id":10651,"name":"Radiant Sun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10656/","id":10656,"name":"Thoth-Hermes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10665/","id":10665,"name":"Bright Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10813/","id":10813,"name":"Urushira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10885/","id":10885,"name":"Wonder Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10900/","id":10900,"name":"Anaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10907/","id":10907,"name":"Rhea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10909/","id":10909,"name":"Phillipus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10914/","id":10914,"name":"Demeter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10916/","id":10916,"name":"Mammitu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10917/","id":10917,"name":"Neith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10918/","id":10918,"name":"Hestia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10920/","id":10920,"name":"Antiope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10921/","id":10921,"name":"Hades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10924/","id":10924,"name":"Circe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10929/","id":10929,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10931/","id":10931,"name":"Queen Mab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10932/","id":10932,"name":"Hurmizah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10934/","id":10934,"name":"Blithe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10941/","id":10941,"name":"Twilight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10947/","id":10947,"name":"Belasco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10967/","id":10967,"name":"Surtur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11153/","id":11153,"name":"Mumm-Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11171/","id":11171,"name":"Dream of the Endless (Morpheus)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11226/","id":11226,"name":"Pamila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11254/","id":11254,"name":"Fastbak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11277/","id":11277,"name":"Mageddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11298/","id":11298,"name":"Hermes Tris Megestus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11332/","id":11332,"name":"Eternity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11333/","id":11333,"name":"Infinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11718/","id":11718,"name":"Checkered Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11727/","id":11727,"name":"Phoebe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11761/","id":11761,"name":"Angela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11940/","id":11940,"name":"Ares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11941/","id":11941,"name":"Kratos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11942/","id":11942,"name":"Bia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11965/","id":11965,"name":"Thalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11970/","id":11970,"name":"AlyXa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11993/","id":11993,"name":"Rip Roar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12033/","id":12033,"name":"Göndul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12102/","id":12102,"name":"Himon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12105/","id":12105,"name":"Glorious Godfrey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12158/","id":12158,"name":"Rama Kushna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12165/","id":12165,"name":"Anti-Monitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12309/","id":12309,"name":"Bulgrim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12314/","id":12314,"name":"Thialfi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12316/","id":12316,"name":"Jmyrsk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12317/","id":12317,"name":"Ggorgstog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12318/","id":12318,"name":"Volla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12319/","id":12319,"name":"Perrikus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12320/","id":12320,"name":"Adva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12324/","id":12324,"name":"Geirrodur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12325/","id":12325,"name":"Orikal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12327/","id":12327,"name":"Jargsa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12328/","id":12328,"name":"Neffethesk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12329/","id":12329,"name":"Cyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12330/","id":12330,"name":"Kurse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12343/","id":12343,"name":"Marnot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12347/","id":12347,"name":"Jagrfelm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12350/","id":12350,"name":"Magnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12351/","id":12351,"name":"Enrakt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12352/","id":12352,"name":"Brona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12362/","id":12362,"name":"Red Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12363/","id":12363,"name":"Troika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12369/","id":12369,"name":"Kar Dathra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12382/","id":12382,"name":"Canis Major"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12470/","id":12470,"name":"Armstrong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12485/","id":12485,"name":"Tulpar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12525/","id":12525,"name":"Lilith Clay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12536/","id":12536,"name":"Themis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12537/","id":12537,"name":"Hyperion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12538/","id":12538,"name":"Thia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12539/","id":12539,"name":"Oceanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12540/","id":12540,"name":"Tethys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12541/","id":12541,"name":"Creus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12542/","id":12542,"name":"Mnemosyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12620/","id":12620,"name":"Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12656/","id":12656,"name":"Michael Demiurgos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12658/","id":12658,"name":"Typhon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12667/","id":12667,"name":"Kalibre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12675/","id":12675,"name":"Predator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12718/","id":12718,"name":"Seth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12719/","id":12719,"name":"Hermod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12748/","id":12748,"name":"Carl Cthulhu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12825/","id":12825,"name":"Zonaquel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12903/","id":12903,"name":"Lord Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12904/","id":12904,"name":"Master Order"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12907/","id":12907,"name":"Deuteronomy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12910/","id":12910,"name":"Ve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12926/","id":12926,"name":"Cyborg Superman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13018/","id":13018,"name":"Dagda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13019/","id":13019,"name":"Misa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13025/","id":13025,"name":"Contessa Erica Alexandra Del Portenza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13083/","id":13083,"name":"War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13120/","id":13120,"name":"Buna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13180/","id":13180,"name":"Neven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13205/","id":13205,"name":"Evinlea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13210/","id":13210,"name":"Corrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13211/","id":13211,"name":"Zaida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13215/","id":13215,"name":"Iress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13217/","id":13217,"name":"Qztr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13218/","id":13218,"name":"Charon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13230/","id":13230,"name":"Aristophanes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13239/","id":13239,"name":"Jaleeta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13240/","id":13240,"name":"Theolona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13241/","id":13241,"name":"Dizor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13242/","id":13242,"name":"Garwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13243/","id":13243,"name":"Euna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13244/","id":13244,"name":"Pyrem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13245/","id":13245,"name":"Gannish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13246/","id":13246,"name":"Ingra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13247/","id":13247,"name":"Shinnsa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13248/","id":13248,"name":"Orium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13249/","id":13249,"name":"Seahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13250/","id":13250,"name":"Enson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13251/","id":13251,"name":"Persha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13252/","id":13252,"name":"Tiena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13253/","id":13253,"name":"Empher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13254/","id":13254,"name":"Wyture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13255/","id":13255,"name":"Yala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13256/","id":13256,"name":"Viham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13257/","id":13257,"name":"Gracos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13258/","id":13258,"name":"Muse Of Giatan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13263/","id":13263,"name":"JeMerik Meer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13265/","id":13265,"name":"Trenin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13275/","id":13275,"name":"Mai Shen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13283/","id":13283,"name":"Bernd Rechts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13292/","id":13292,"name":"Duke Abaddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13295/","id":13295,"name":"Skitter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13302/","id":13302,"name":"Darrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13303/","id":13303,"name":"Animora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13313/","id":13313,"name":"Wendigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13332/","id":13332,"name":"Stranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13334/","id":13334,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13348/","id":13348,"name":"Eon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13352/","id":13352,"name":"Onslaught"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13354/","id":13354,"name":"In-Betweener"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13372/","id":13372,"name":"Hilde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13452/","id":13452,"name":"Asteroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13456/","id":13456,"name":"Duma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13457/","id":13457,"name":"Ramiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13464/","id":13464,"name":"Brandor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13478/","id":13478,"name":"Sigyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13533/","id":13533,"name":"Devilina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13584/","id":13584,"name":"Ullr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13593/","id":13593,"name":"Torrent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13675/","id":13675,"name":"Lady Blaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13730/","id":13730,"name":"Tokkots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13750/","id":13750,"name":"Terror Inc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13751/","id":13751,"name":"Priapus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13796/","id":13796,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13798/","id":13798,"name":"Zuras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13799/","id":13799,"name":"Satannish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13801/","id":13801,"name":"Yama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13802/","id":13802,"name":"Obingealean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13822/","id":13822,"name":"Thena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13889/","id":13889,"name":"Shaper of Worlds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13899/","id":13899,"name":"Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13904/","id":13904,"name":"Vesta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13907/","id":13907,"name":"Hippolyta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13925/","id":13925,"name":"Morgan Le Fay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13945/","id":13945,"name":"Makkari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13961/","id":13961,"name":"Horus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13962/","id":13962,"name":"Osiris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13963/","id":13963,"name":"Isis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13964/","id":13964,"name":"Geb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13965/","id":13965,"name":"Nut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13967/","id":13967,"name":"Ikaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13987/","id":13987,"name":"Collector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13994/","id":13994,"name":"Zarathos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13995/","id":13995,"name":"Baphomet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13997/","id":13997,"name":"Ningal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13998/","id":13998,"name":"Thog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13999/","id":13999,"name":"Dweller In Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14000/","id":14000,"name":"Shuma-Gorath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14001/","id":14001,"name":"Allatum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14002/","id":14002,"name":"Asmodeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14003/","id":14003,"name":"Dagoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14010/","id":14010,"name":"Toro Rojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14104/","id":14104,"name":"Ilmatar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14144/","id":14144,"name":"Chang'e"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14263/","id":14263,"name":"Raguel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14334/","id":14334,"name":"Herne The Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14405/","id":14405,"name":"Vampiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14467/","id":14467,"name":"Korvac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14469/","id":14469,"name":"Malekith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14471/","id":14471,"name":"Midgard Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14485/","id":14485,"name":"Fafnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14522/","id":14522,"name":"Mentor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14533/","id":14533,"name":"Enigmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14561/","id":14561,"name":"Dionysus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14605/","id":14605,"name":"Interloper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14662/","id":14662,"name":"Therese Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14695/","id":14695,"name":"Hellstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14704/","id":14704,"name":"Marduk Kurios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14728/","id":14728,"name":"Blackheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14764/","id":14764,"name":"Nakota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14810/","id":14810,"name":"Roma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14820/","id":14820,"name":"Merlyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14966/","id":14966,"name":"Tlaloc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14974/","id":14974,"name":"Baal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15031/","id":15031,"name":"Antaeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15081/","id":15081,"name":"Negafook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15112/","id":15112,"name":"Harvest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15132/","id":15132,"name":"Micah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15226/","id":15226,"name":"Elvon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15292/","id":15292,"name":"Calculus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15389/","id":15389,"name":"Brahma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15392/","id":15392,"name":"Vishnu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15393/","id":15393,"name":"Agni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15410/","id":15410,"name":"Berith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15569/","id":15569,"name":"Astarte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15570/","id":15570,"name":"Electryon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15577/","id":15577,"name":"Pandemonia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15683/","id":15683,"name":"Chthon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15753/","id":15753,"name":"Gilotina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15757/","id":15757,"name":"Devastation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15758/","id":15758,"name":"Uranus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15762/","id":15762,"name":"Disdain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15763/","id":15763,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15764/","id":15764,"name":"Slaughter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15765/","id":15765,"name":"Arch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15767/","id":15767,"name":"Harmonia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15768/","id":15768,"name":"Deimos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15769/","id":15769,"name":"Eris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15770/","id":15770,"name":"Phobos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15771/","id":15771,"name":"Iphthime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15773/","id":15773,"name":"Harrier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15778/","id":15778,"name":"Gaea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15795/","id":15795,"name":"Menalippe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15796/","id":15796,"name":"Pythia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15800/","id":15800,"name":"Hellene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15809/","id":15809,"name":"Swamp Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15844/","id":15844,"name":"Shathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15937/","id":15937,"name":"Gardener"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15951/","id":15951,"name":"Paranoia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15952/","id":15952,"name":"Necromancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16094/","id":16094,"name":"Mroht"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16117/","id":16117,"name":"Pyllar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16138/","id":16138,"name":"Ekak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16164/","id":16164,"name":"Emperor Palpatine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16220/","id":16220,"name":"Thnat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16297/","id":16297,"name":"Kalki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16424/","id":16424,"name":"Skeletor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16428/","id":16428,"name":"Zodac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16452/","id":16452,"name":"Kanaloa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16570/","id":16570,"name":"Zembria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16571/","id":16571,"name":"Barr-Find"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16572/","id":16572,"name":"Jargoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16611/","id":16611,"name":"Volga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16650/","id":16650,"name":"Ifrit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16701/","id":16701,"name":"Anubis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16729/","id":16729,"name":"Lone Sloane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16799/","id":16799,"name":"Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17049/","id":17049,"name":"Karna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17236/","id":17236,"name":"Zu'ul Janahayn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17402/","id":17402,"name":"Cupidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17414/","id":17414,"name":"Jupiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17415/","id":17415,"name":"Allah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17417/","id":17417,"name":"Odin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17564/","id":17564,"name":"Gaark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17565/","id":17565,"name":"Tarook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17568/","id":17568,"name":"Grundor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17658/","id":17658,"name":"Lyta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17662/","id":17662,"name":"Clotho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17663/","id":17663,"name":"Lachesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17664/","id":17664,"name":"Atropos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17665/","id":17665,"name":"Ananke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17667/","id":17667,"name":"Euboea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17679/","id":17679,"name":"Akila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17684/","id":17684,"name":"Aella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17686/","id":17686,"name":"Myrrha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17702/","id":17702,"name":"Lord Rrall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17703/","id":17703,"name":"Lord Heraphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17704/","id":17704,"name":"Ravana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17705/","id":17705,"name":"Durga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17709/","id":17709,"name":"Mahadevi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17711/","id":17711,"name":"Kartikeya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17719/","id":17719,"name":"Zelah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17771/","id":17771,"name":"Knockout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17850/","id":17850,"name":"Radical"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17907/","id":17907,"name":"Zeek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18099/","id":18099,"name":"Sha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18138/","id":18138,"name":"Snagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18166/","id":18166,"name":"Nephthys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18167/","id":18167,"name":"Apep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18219/","id":18219,"name":"Samyaza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18221/","id":18221,"name":"Raum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18236/","id":18236,"name":"Chernobog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18246/","id":18246,"name":"Abraxas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18315/","id":18315,"name":"B'Ngudja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18379/","id":18379,"name":"Jaguar God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18403/","id":18403,"name":"Dawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18435/","id":18435,"name":"Donny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18445/","id":18445,"name":"Conner Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18450/","id":18450,"name":"Ambrose Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18484/","id":18484,"name":"Blossom Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18501/","id":18501,"name":"Darien Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18674/","id":18674,"name":"Aphrodite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18676/","id":18676,"name":"Skögul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18683/","id":18683,"name":"Hera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18719/","id":18719,"name":"Comedy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18724/","id":18724,"name":"Shesha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18726/","id":18726,"name":"Western"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18792/","id":18792,"name":"Battletide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18821/","id":18821,"name":"Captain Courageous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18824/","id":18824,"name":"Julius Salvius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18901/","id":18901,"name":"Haurvatat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18903/","id":18903,"name":"Asha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18910/","id":18910,"name":"Armaiti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18914/","id":18914,"name":"Romance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18916/","id":18916,"name":"Horror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18919/","id":18919,"name":"Literature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18923/","id":18923,"name":"Vohu Manah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18925/","id":18925,"name":"Kshathra Vairya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18927/","id":18927,"name":"Kuara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18930/","id":18930,"name":"Ahriman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18999/","id":18999,"name":"Gray Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19033/","id":19033,"name":"Mullissu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19035/","id":19035,"name":"Enkimdu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19037/","id":19037,"name":"Lugal-Irra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19041/","id":19041,"name":"Tiamat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19042/","id":19042,"name":"Utu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19043/","id":19043,"name":"Enlil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19150/","id":19150,"name":"Quoggoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19162/","id":19162,"name":"Koschei the Deathless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19164/","id":19164,"name":"Dagda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19167/","id":19167,"name":"Azzael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19181/","id":19181,"name":"Gruagach of Lough Leane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19204/","id":19204,"name":"Baraka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19417/","id":19417,"name":"Manotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19501/","id":19501,"name":"War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19538/","id":19538,"name":"Blockbuster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19546/","id":19546,"name":"Gary, the Pathetic Fallacy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19603/","id":19603,"name":"Dynaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19609/","id":19609,"name":"Noir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19814/","id":19814,"name":"Seker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19816/","id":19816,"name":"Pluto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19819/","id":19819,"name":"Maahes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19820/","id":19820,"name":"Olorun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19837/","id":19837,"name":"Juno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19839/","id":19839,"name":"Gullveig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19846/","id":19846,"name":"Minerva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19847/","id":19847,"name":"Ceres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19848/","id":19848,"name":"Kingu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19936/","id":19936,"name":"Ego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19943/","id":19943,"name":"Peliali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20022/","id":20022,"name":"Kubik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20086/","id":20086,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20093/","id":20093,"name":"Cordelia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20326/","id":20326,"name":"Chronos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20588/","id":20588,"name":"Sprite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20589/","id":20589,"name":"Arex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20590/","id":20590,"name":"Khoryphos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20591/","id":20591,"name":"Phastos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20593/","id":20593,"name":"Bellam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20594/","id":20594,"name":"Blitziana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20595/","id":20595,"name":"Anak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20596/","id":20596,"name":"Zefra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20608/","id":20608,"name":"Paris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20663/","id":20663,"name":"Phoenix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20773/","id":20773,"name":"Saga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20928/","id":20928,"name":"Belial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20976/","id":20976,"name":"Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20986/","id":20986,"name":"Ganesha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20994/","id":20994,"name":"Nuala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21000/","id":21000,"name":"Elaine Belloc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21032/","id":21032,"name":"Oberon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21033/","id":21033,"name":"Cluracan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21040/","id":21040,"name":"Obrey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21065/","id":21065,"name":"Anton Arcane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21146/","id":21146,"name":"Neh-Buh-Loh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21158/","id":21158,"name":"Oonaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21174/","id":21174,"name":"Canis Minor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21175/","id":21175,"name":"Hellga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21176/","id":21176,"name":"Gedirath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21180/","id":21180,"name":"Big Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21181/","id":21181,"name":"Mark Moonrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21182/","id":21182,"name":"Serafina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21183/","id":21183,"name":"Beautiful Dreamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21185/","id":21185,"name":"Justeen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21205/","id":21205,"name":"Pixie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21297/","id":21297,"name":"Ekimus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21303/","id":21303,"name":"Sapha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21354/","id":21354,"name":"Helmwige"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21356/","id":21356,"name":"Grimgerde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21357/","id":21357,"name":"Rossweisse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21358/","id":21358,"name":"Gerhilde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21359/","id":21359,"name":"Brynhildr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21559/","id":21559,"name":"Ahti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21583/","id":21583,"name":"Mephista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21584/","id":21584,"name":"Agamotto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21649/","id":21649,"name":"Niobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21660/","id":21660,"name":"Audumbla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21663/","id":21663,"name":"Videon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21680/","id":21680,"name":"Morrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21697/","id":21697,"name":"Orcus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21699/","id":21699,"name":"Nissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21701/","id":21701,"name":"The Dark One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21761/","id":21761,"name":"Garokk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21810/","id":21810,"name":"The Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21823/","id":21823,"name":"Neooqtoq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21842/","id":21842,"name":"Fever"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21871/","id":21871,"name":"Allgod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21892/","id":21892,"name":"Tohil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21893/","id":21893,"name":"Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21953/","id":21953,"name":"Soul-Drinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22019/","id":22019,"name":"Asmodel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22020/","id":22020,"name":"Nebiros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22071/","id":22071,"name":"Orochi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22171/","id":22171,"name":"Viracocha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22212/","id":22212,"name":"Ameretat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22230/","id":22230,"name":"Inti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22239/","id":22239,"name":"Asena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22247/","id":22247,"name":"Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22266/","id":22266,"name":"Andras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22267/","id":22267,"name":"Buer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22270/","id":22270,"name":"Agares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22287/","id":22287,"name":"Jenny-in-the-Wood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22288/","id":22288,"name":"Promethea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22332/","id":22332,"name":"Woden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22333/","id":22333,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22334/","id":22334,"name":"Thunor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22335/","id":22335,"name":"Lokk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22338/","id":22338,"name":"Zeus Ammon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22339/","id":22339,"name":"Hod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22409/","id":22409,"name":"Quetzalcoatl-9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22502/","id":22502,"name":"Barbatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22505/","id":22505,"name":"Lord of the Hunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22506/","id":22506,"name":"Alpanu Lasas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22518/","id":22518,"name":"Rosehip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22554/","id":22554,"name":"Nelvanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22575/","id":22575,"name":"Bastet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22612/","id":22612,"name":"The Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22621/","id":22621,"name":"Carnivore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22639/","id":22639,"name":"Virman Vundabar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22650/","id":22650,"name":"Helios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22657/","id":22657,"name":"Famine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22660/","id":22660,"name":"Joe Nowhere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22665/","id":22665,"name":"Undersoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22694/","id":22694,"name":"Loki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22700/","id":22700,"name":"Jord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22706/","id":22706,"name":"Glimmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22720/","id":22720,"name":"Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22722/","id":22722,"name":"Barbatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22835/","id":22835,"name":"Ashema"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22836/","id":22836,"name":"Dreaming Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22892/","id":22892,"name":"Tarzan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22925/","id":22925,"name":"Thor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22948/","id":22948,"name":"Dis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22992/","id":22992,"name":"Jotunheim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23002/","id":23002,"name":"Argo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23047/","id":23047,"name":"LKZ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23060/","id":23060,"name":"Nekhrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23120/","id":23120,"name":"Captain Absalom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23134/","id":23134,"name":"Majeston Zelia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23170/","id":23170,"name":"Bat-Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23208/","id":23208,"name":"Pestilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23224/","id":23224,"name":"Poliahu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23238/","id":23238,"name":"Queen Mab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23320/","id":23320,"name":"Damballah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23321/","id":23321,"name":"Bravado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23356/","id":23356,"name":"Poseidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23357/","id":23357,"name":"Sedna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23375/","id":23375,"name":"Mystery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23394/","id":23394,"name":"Wally Johnson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23444/","id":23444,"name":"Suli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23459/","id":23459,"name":"Ixion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23462/","id":23462,"name":"Cogliostro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23484/","id":23484,"name":"Tundra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23485/","id":23485,"name":"Kolomaq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23486/","id":23486,"name":"Somon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23495/","id":23495,"name":"Leah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23505/","id":23505,"name":"Chantinelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23511/","id":23511,"name":"Triton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23554/","id":23554,"name":"Chalchiuhtlique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23557/","id":23557,"name":"Araquel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23593/","id":23593,"name":"Futsunushi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23594/","id":23594,"name":"Orthrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23614/","id":23614,"name":"Charon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23647/","id":23647,"name":"Metatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23663/","id":23663,"name":"Callisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23668/","id":23668,"name":"Thanatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23684/","id":23684,"name":"Bathala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23699/","id":23699,"name":"Atan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23702/","id":23702,"name":"Helena Seleski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23745/","id":23745,"name":"Kirby Hero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23788/","id":23788,"name":"Raphael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23789/","id":23789,"name":"Nandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23790/","id":23790,"name":"Leib-Olmai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23791/","id":23791,"name":"Parashurama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23823/","id":23823,"name":"Skirnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23825/","id":23825,"name":"Plyck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23833/","id":23833,"name":"Lady of the Lake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23837/","id":23837,"name":"Baron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23847/","id":23847,"name":"Patriot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23866/","id":23866,"name":"Crom Cruach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23869/","id":23869,"name":"Kekona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23890/","id":23890,"name":"Cupid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23898/","id":23898,"name":"Trelane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23967/","id":23967,"name":"Straasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23994/","id":23994,"name":"Cerberus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24010/","id":24010,"name":"Llan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24050/","id":24050,"name":"Sto-Oa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24052/","id":24052,"name":"Nikki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24160/","id":24160,"name":"Orunmilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24201/","id":24201,"name":"Wally Ut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24223/","id":24223,"name":"Herman Von Starkenfaust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24232/","id":24232,"name":"Lucifer Morningstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24240/","id":24240,"name":"Kushinada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24299/","id":24299,"name":"Lono"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24305/","id":24305,"name":"Taik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24306/","id":24306,"name":"Huon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24307/","id":24307,"name":"Yarrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24308/","id":24308,"name":"Lord Satanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24312/","id":24312,"name":"Weatherman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24314/","id":24314,"name":"Rite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24320/","id":24320,"name":"The Eidolon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24333/","id":24333,"name":"Maat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24402/","id":24402,"name":"Glorian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24461/","id":24461,"name":"Tolomaq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24481/","id":24481,"name":"Arioch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24497/","id":24497,"name":"Amadan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24504/","id":24504,"name":"Gilgamesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24509/","id":24509,"name":"Buddha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24511/","id":24511,"name":"Jaweh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24514/","id":24514,"name":"Tempus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24619/","id":24619,"name":"Xiuhcoatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24737/","id":24737,"name":"Coatlicue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24741/","id":24741,"name":"Darrian Ashoka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24743/","id":24743,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24786/","id":24786,"name":"Starseed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24873/","id":24873,"name":"Synraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24894/","id":24894,"name":"Hel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24895/","id":24895,"name":"Dalkriig-Hath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24899/","id":24899,"name":"Angel of Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24949/","id":24949,"name":"Cyttorak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24968/","id":24968,"name":"Decay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24973/","id":24973,"name":"Cupid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24995/","id":24995,"name":"The Green Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25000/","id":25000,"name":"Glory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25018/","id":25018,"name":"Tempto the Intuiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25063/","id":25063,"name":"Midir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25067/","id":25067,"name":"Prometheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25098/","id":25098,"name":"Afterlife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25111/","id":25111,"name":"Damocles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25134/","id":25134,"name":"Mayari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25139/","id":25139,"name":"Ranaq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25162/","id":25162,"name":"Pandora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25182/","id":25182,"name":"Tiffany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25201/","id":25201,"name":"Apo Laki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25316/","id":25316,"name":"Shub-Niggurath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25416/","id":25416,"name":"Cataclysm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25505/","id":25505,"name":"American Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25568/","id":25568,"name":"Grand Vizier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25633/","id":25633,"name":"Equinox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25675/","id":25675,"name":"Sister Nil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25678/","id":25678,"name":"Kismet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25718/","id":25718,"name":"Ninsun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25719/","id":25719,"name":"Ninhursag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25728/","id":25728,"name":"Xuthl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25732/","id":25732,"name":"Farsung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25759/","id":25759,"name":"Aman Sinaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25780/","id":25780,"name":"Pan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25791/","id":25791,"name":"Karrien Excalibus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25796/","id":25796,"name":"Gole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25797/","id":25797,"name":"Trok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25798/","id":25798,"name":"Shaligo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25801/","id":25801,"name":"Nanuq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25802/","id":25802,"name":"Tekkeitsertok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25803/","id":25803,"name":"Aswang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25804/","id":25804,"name":"Amihan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25855/","id":25855,"name":"Corona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25894/","id":25894,"name":"Tyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25947/","id":25947,"name":"Tapio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25948/","id":25948,"name":"Kadlu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25963/","id":25963,"name":"Sigurd Silverbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25967/","id":25967,"name":"Agamemnon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25986/","id":25986,"name":"Kingdom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25998/","id":25998,"name":"Time Trapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26014/","id":26014,"name":"Lady Def"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26040/","id":26040,"name":"Gabrielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26081/","id":26081,"name":"Champion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26084/","id":26084,"name":"Siingard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26085/","id":26085,"name":"Hoarfen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26094/","id":26094,"name":"Jonakand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26100/","id":26100,"name":"Bloodstain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26101/","id":26101,"name":"ThunderSpawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26107/","id":26107,"name":"Kashyap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26113/","id":26113,"name":"Cu Chulainn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26116/","id":26116,"name":"The Viewer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26123/","id":26123,"name":"Woden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26127/","id":26127,"name":"Cybele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26141/","id":26141,"name":"Aruna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26144/","id":26144,"name":"Vayu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26147/","id":26147,"name":"Father Time"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26166/","id":26166,"name":"Lakshmana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26252/","id":26252,"name":"Rati"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26253/","id":26253,"name":"Ganga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26256/","id":26256,"name":"Taraka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26260/","id":26260,"name":"Sita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26271/","id":26271,"name":"Jatayu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26318/","id":26318,"name":"Prince Wayfinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26356/","id":26356,"name":"General J.E.B. Stuart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26371/","id":26371,"name":"Mutaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26401/","id":26401,"name":"Perun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26402/","id":26402,"name":"Psi-Hawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26463/","id":26463,"name":"Luminor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26464/","id":26464,"name":"Loga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26506/","id":26506,"name":"Gothodaemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26656/","id":26656,"name":"Surya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26700/","id":26700,"name":"Sagara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26709/","id":26709,"name":"Huitzilopochtli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26728/","id":26728,"name":"Anomaly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26792/","id":26792,"name":"Indrajit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26823/","id":26823,"name":"Malice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26837/","id":26837,"name":"Hayagriva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26854/","id":26854,"name":"Varuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26882/","id":26882,"name":"Centaurion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26883/","id":26883,"name":"Sybilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26914/","id":26914,"name":"Appa Ali Apsa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26968/","id":26968,"name":"Sugreeva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26976/","id":26976,"name":"Cernunnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26977/","id":26977,"name":"Morrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26979/","id":26979,"name":"Taranis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26995/","id":26995,"name":"Adversary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27005/","id":27005,"name":"Nyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27029/","id":27029,"name":"Sati"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27097/","id":27097,"name":"Kariooq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27109/","id":27109,"name":"Jann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27177/","id":27177,"name":"Surma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27182/","id":27182,"name":"Arko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27193/","id":27193,"name":"Captain Universe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27202/","id":27202,"name":"Hathor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27215/","id":27215,"name":"Watoomb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27216/","id":27216,"name":"Ikonn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27217/","id":27217,"name":"Ilmarinen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27219/","id":27219,"name":"Hoggoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27220/","id":27220,"name":"Oshtur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27231/","id":27231,"name":"Deathspawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27246/","id":27246,"name":"Krona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27250/","id":27250,"name":"Python"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27251/","id":27251,"name":"Alecto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27272/","id":27272,"name":"Samhain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27280/","id":27280,"name":"Tala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27298/","id":27298,"name":"Gemini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27310/","id":27310,"name":"Terror-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27375/","id":27375,"name":"Pfil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27380/","id":27380,"name":"The Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27382/","id":27382,"name":"Megaera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27387/","id":27387,"name":"Tali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27389/","id":27389,"name":"Tisiphone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27431/","id":27431,"name":"First of the Fallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27432/","id":27432,"name":"Triskele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27434/","id":27434,"name":"Mandodari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27436/","id":27436,"name":"Mr. Mxyzptlk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27443/","id":27443,"name":"Kubera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27456/","id":27456,"name":"Tribunal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27468/","id":27468,"name":"Maman Brigitte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27470/","id":27470,"name":"Yinglong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27485/","id":27485,"name":"Infinity Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27489/","id":27489,"name":"Bacchus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27596/","id":27596,"name":"Vritra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27598/","id":27598,"name":"Saker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27599/","id":27599,"name":"Shapeshifter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27626/","id":27626,"name":"Tuoni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27667/","id":27667,"name":"Grog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27670/","id":27670,"name":"Octobriana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27672/","id":27672,"name":"Mistress Love"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27673/","id":27673,"name":"Master Hate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27679/","id":27679,"name":"Vammatar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27693/","id":27693,"name":"Shat-Ru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27700/","id":27700,"name":"Husque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27703/","id":27703,"name":"Conquest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27724/","id":27724,"name":"Necrom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27748/","id":27748,"name":"Valac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27750/","id":27750,"name":"Bog Roosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27791/","id":27791,"name":"Khepri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27818/","id":27818,"name":"Lurking Unknown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27921/","id":27921,"name":"Wild One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27947/","id":27947,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27975/","id":27975,"name":"Blunder Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27994/","id":27994,"name":"Xochiquetzal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27995/","id":27995,"name":"Xolotl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27996/","id":27996,"name":"Ozomatli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27997/","id":27997,"name":"Xipe Totec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28005/","id":28005,"name":"Kronos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28090/","id":28090,"name":"Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28118/","id":28118,"name":"Protege"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28129/","id":28129,"name":"Atlas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28217/","id":28217,"name":"Botis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28236/","id":28236,"name":"Jack Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28311/","id":28311,"name":"Supremacy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28312/","id":28312,"name":"Divinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28366/","id":28366,"name":"Zukala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28401/","id":28401,"name":"Dr. Glitternight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28462/","id":28462,"name":"Calumet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28463/","id":28463,"name":"Nanabozho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28464/","id":28464,"name":"Hotamitanio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28465/","id":28465,"name":"Owayodata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28489/","id":28489,"name":"Petey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28491/","id":28491,"name":"Wotan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28558/","id":28558,"name":"Mayasura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28565/","id":28565,"name":"Uroc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28568/","id":28568,"name":"Takhisis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28609/","id":28609,"name":"Zom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28618/","id":28618,"name":"Leir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28658/","id":28658,"name":"Tazza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28714/","id":28714,"name":"Äkräs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28726/","id":28726,"name":"Nobilus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28751/","id":28751,"name":"Legba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28795/","id":28795,"name":"Black Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28868/","id":28868,"name":"Baron Samedi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28902/","id":28902,"name":"Eitri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28910/","id":28910,"name":"Nyyrikki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28975/","id":28975,"name":"Dyke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29053/","id":29053,"name":"Lugh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29072/","id":29072,"name":"Queen Ula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29073/","id":29073,"name":"Buri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29092/","id":29092,"name":"Set"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29120/","id":29120,"name":"Badasss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29157/","id":29157,"name":"Gilgamesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29193/","id":29193,"name":"Thrushbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29232/","id":29232,"name":"Riger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29253/","id":29253,"name":"Indra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29291/","id":29291,"name":"Brother Efram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29462/","id":29462,"name":"Malefik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29480/","id":29480,"name":"Nelvana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29483/","id":29483,"name":"Gesar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29583/","id":29583,"name":"Euryale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29688/","id":29688,"name":"Erlik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29705/","id":29705,"name":"Lonar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29840/","id":29840,"name":"Talaoc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29861/","id":29861,"name":"One Above All"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29997/","id":29997,"name":"Etienne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30011/","id":30011,"name":"Terpsichore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30015/","id":30015,"name":"Ghost Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30076/","id":30076,"name":"Morpheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30123/","id":30123,"name":"Clio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30124/","id":30124,"name":"Melpomene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30136/","id":30136,"name":"Ithaqua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30142/","id":30142,"name":"Varua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30143/","id":30143,"name":"Genii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30144/","id":30144,"name":"Caduceus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30145/","id":30145,"name":"Bright Sword"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30146/","id":30146,"name":"Mindsinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30147/","id":30147,"name":"Sea Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30148/","id":30148,"name":"Highnote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30149/","id":30149,"name":"Splice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30184/","id":30184,"name":"Echidna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30193/","id":30193,"name":"Skoll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30262/","id":30262,"name":"Shiva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30283/","id":30283,"name":"Modgud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30284/","id":30284,"name":"Utgard-Loki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30317/","id":30317,"name":"Sandman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30396/","id":30396,"name":"Winter Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30407/","id":30407,"name":"Stribog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30418/","id":30418,"name":"Ularic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30462/","id":30462,"name":"Wormwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30562/","id":30562,"name":"Jack Ketch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30598/","id":30598,"name":"Ullikummis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30616/","id":30616,"name":"Big Round Glowing White Strange Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30711/","id":30711,"name":"Kossi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30712/","id":30712,"name":"Unn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30713/","id":30713,"name":"Gertha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30806/","id":30806,"name":"Laima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30867/","id":30867,"name":"Harokin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31018/","id":31018,"name":"The Monitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31045/","id":31045,"name":"Briareus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31078/","id":31078,"name":"Mordonna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31139/","id":31139,"name":"Nanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31155/","id":31155,"name":"Haag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31156/","id":31156,"name":"Frey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31157/","id":31157,"name":"Gerd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31194/","id":31194,"name":"Angerboda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31297/","id":31297,"name":"Quisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31300/","id":31300,"name":"Star-Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31304/","id":31304,"name":"Mopee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31333/","id":31333,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31461/","id":31461,"name":"Grudge-Father"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31565/","id":31565,"name":"Slorioth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31574/","id":31574,"name":"Vili"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31590/","id":31590,"name":"Chaon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31657/","id":31657,"name":"Mr. Justice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31821/","id":31821,"name":"Laufey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31882/","id":31882,"name":"Hyrm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31884/","id":31884,"name":"Bestla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31893/","id":31893,"name":"Ukko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32047/","id":32047,"name":"Vidar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32050/","id":32050,"name":"Otny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32255/","id":32255,"name":"Crom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32274/","id":32274,"name":"Fire Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32362/","id":32362,"name":"Pantha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32363/","id":32363,"name":"Hrungnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32449/","id":32449,"name":"Verdandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32450/","id":32450,"name":"Skuld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32451/","id":32451,"name":"Urd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32474/","id":32474,"name":"Nedra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32485/","id":32485,"name":"Gullin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32507/","id":32507,"name":"Null the Living Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32545/","id":32545,"name":"Idunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32546/","id":32546,"name":"Jolena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32567/","id":32567,"name":"Elatha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32569/","id":32569,"name":"Indech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32570/","id":32570,"name":"Tethra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32571/","id":32571,"name":"Dulb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32590/","id":32590,"name":"The Sorceress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32611/","id":32611,"name":"The Olympian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32687/","id":32687,"name":"Blood Red Queen Of Hearts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32702/","id":32702,"name":"Writer's Block"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32735/","id":32735,"name":"Grandmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32815/","id":32815,"name":"Ishiti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32857/","id":32857,"name":"Arishem the Judge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32878/","id":32878,"name":"Hlökk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33024/","id":33024,"name":"Valtrauta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33061/","id":33061,"name":"Leita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33091/","id":33091,"name":"Hildegarde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33092/","id":33092,"name":"Krista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33126/","id":33126,"name":"Thunderbolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33143/","id":33143,"name":"Casiolena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33150/","id":33150,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33155/","id":33155,"name":"Ame-no-Uzume-no-mikoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33229/","id":33229,"name":"Uranos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33385/","id":33385,"name":"Aegir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33638/","id":33638,"name":"Yu-Huang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33687/","id":33687,"name":"Gammenon the Gatherer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33688/","id":33688,"name":"Ziran the Tester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33689/","id":33689,"name":"Nezarr the Calculator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33690/","id":33690,"name":"Oneg the Prober"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33698/","id":33698,"name":"Manitou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33817/","id":33817,"name":"Jaime Slade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33899/","id":33899,"name":"The Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33980/","id":33980,"name":"Maleficent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34015/","id":34015,"name":"Anansi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34020/","id":34020,"name":"Hodiak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34121/","id":34121,"name":"Nubia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34422/","id":34422,"name":"Helen of Troy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34438/","id":34438,"name":"King of Madagao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34442/","id":34442,"name":"Squire Vulco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34480/","id":34480,"name":"Professor Turk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34491/","id":34491,"name":"Gudrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34559/","id":34559,"name":"The Red Lord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34671/","id":34671,"name":"Jezebelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34672/","id":34672,"name":"The Antagonist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34681/","id":34681,"name":"Rongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34683/","id":34683,"name":"Mauri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34700/","id":34700,"name":"Britomartis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34717/","id":34717,"name":"Brola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34746/","id":34746,"name":"Gudrun The Golden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34854/","id":34854,"name":"Azoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34878/","id":34878,"name":"Esak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34944/","id":34944,"name":"Mimir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34945/","id":34945,"name":"Valkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34946/","id":34946,"name":"Ajak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34947/","id":34947,"name":"Druig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34960/","id":34960,"name":"Magrat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34961/","id":34961,"name":"Snaykar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34962/","id":34962,"name":"Kroda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35086/","id":35086,"name":"Dr. Bedlam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35128/","id":35128,"name":"Jaffar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35145/","id":35145,"name":"Brother Joel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35150/","id":35150,"name":"Sayge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35249/","id":35249,"name":"The Unimaginable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35276/","id":35276,"name":"Hawk-God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35310/","id":35310,"name":"King of Bornegascar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35415/","id":35415,"name":"Mr. Keeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35489/","id":35489,"name":"Three Who Are All"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35504/","id":35504,"name":"Domo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35541/","id":35541,"name":"Juno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35543/","id":35543,"name":"Antonitus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35546/","id":35546,"name":"Ursus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35608/","id":35608,"name":"Dagon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35649/","id":35649,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35669/","id":35669,"name":"10th Muse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35751/","id":35751,"name":"Yamata no Orochi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35779/","id":35779,"name":"Possessor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35809/","id":35809,"name":"Koth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35975/","id":35975,"name":"Typhon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36020/","id":36020,"name":"Donar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36021/","id":36021,"name":"Froh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36345/","id":36345,"name":"Legion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36463/","id":36463,"name":"Avlekete"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36464/","id":36464,"name":"Kui Xing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36465/","id":36465,"name":"Ghekre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36466/","id":36466,"name":"Ay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36467/","id":36467,"name":"Koyash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36488/","id":36488,"name":"Asclepius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36691/","id":36691,"name":"Igron The Invincible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36756/","id":36756,"name":"Morduk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36795/","id":36795,"name":"Sorrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36819/","id":36819,"name":"Chimera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36836/","id":36836,"name":"Manannan mac Lir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36844/","id":36844,"name":"Hymir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36845/","id":36845,"name":"Princess Rinda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36961/","id":36961,"name":"The Bog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37120/","id":37120,"name":"Phorcys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37303/","id":37303,"name":"Genghis Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37309/","id":37309,"name":"Devilance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37310/","id":37310,"name":"Vykin the Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37324/","id":37324,"name":"Wonderful Willik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37368/","id":37368,"name":"Prime One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37407/","id":37407,"name":"Count Aucassin de Beaucaire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37463/","id":37463,"name":"Satrina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37500/","id":37500,"name":"Steppenwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37501/","id":37501,"name":"Heggra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37502/","id":37502,"name":"Avia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37669/","id":37669,"name":"Damon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37684/","id":37684,"name":"Seagrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37761/","id":37761,"name":"King Pellinore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37763/","id":37763,"name":"Bearskin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37801/","id":37801,"name":"Jake Long"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37804/","id":37804,"name":"Borri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38093/","id":38093,"name":"Kyknos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38181/","id":38181,"name":"Zha-Vam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38228/","id":38228,"name":"The Stag God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38350/","id":38350,"name":"Fantasy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38381/","id":38381,"name":"Callisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38382/","id":38382,"name":"Adonis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38448/","id":38448,"name":"Crusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38450/","id":38450,"name":"Lonny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38453/","id":38453,"name":"Johnny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38608/","id":38608,"name":"Quetzalcoatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38620/","id":38620,"name":"Ratatoskr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38622/","id":38622,"name":"Deus Ex Machina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38784/","id":38784,"name":"Demon of the Mask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38916/","id":38916,"name":"Braggi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38925/","id":38925,"name":"Namaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38995/","id":38995,"name":"Haakun The Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38997/","id":38997,"name":"Osra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39032/","id":39032,"name":"Hardol The Healer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39063/","id":39063,"name":"Arkin The Weak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39168/","id":39168,"name":"Dark Night"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39180/","id":39180,"name":"Skarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39199/","id":39199,"name":"Spirit of the Moor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39335/","id":39335,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39467/","id":39467,"name":"Whiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39484/","id":39484,"name":"Ukko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39510/","id":39510,"name":"Delphyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39608/","id":39608,"name":"Mageth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39626/","id":39626,"name":"Buluku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39643/","id":39643,"name":"Baphomet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39733/","id":39733,"name":"King Triton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39818/","id":39818,"name":"Kū"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39867/","id":39867,"name":"Leto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40107/","id":40107,"name":"Turoq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40175/","id":40175,"name":"Saturn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40176/","id":40176,"name":"Epimetheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40208/","id":40208,"name":"Orpheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40329/","id":40329,"name":"Taia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40614/","id":40614,"name":"Sparda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40648/","id":40648,"name":"Tanaraq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40654/","id":40654,"name":"The Statesman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40662/","id":40662,"name":"Tapestry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40687/","id":40687,"name":"Lord Recluse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40701/","id":40701,"name":"Cosmic Negator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40722/","id":40722,"name":"Vegeta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40737/","id":40737,"name":"Frieza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40756/","id":40756,"name":"Superboy Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40831/","id":40831,"name":"Destruction"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40832/","id":40832,"name":"Desire of the Endless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40851/","id":40851,"name":"Despair of the Endless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40852/","id":40852,"name":"Delirium of the Endless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40873/","id":40873,"name":"Entropy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40874/","id":40874,"name":"Epiphany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40994/","id":40994,"name":"Cthulhu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41134/","id":41134,"name":"Damien Darkblood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41157/","id":41157,"name":"Moonstalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41247/","id":41247,"name":"The Seraphim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41251/","id":41251,"name":"Pilo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41266/","id":41266,"name":"Mathias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41280/","id":41280,"name":"Trader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41293/","id":41293,"name":"Parallax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41354/","id":41354,"name":"Ertuu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41459/","id":41459,"name":"Jason Voorhees"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41460/","id":41460,"name":"Freddy Krueger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41465/","id":41465,"name":"Pinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41494/","id":41494,"name":"Mamaragan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41559/","id":41559,"name":"Kon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41564/","id":41564,"name":"Judge Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41603/","id":41603,"name":"Skink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41605/","id":41605,"name":"Animus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41648/","id":41648,"name":"Mothra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41670/","id":41670,"name":"Danny Wormwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41705/","id":41705,"name":"Urkonn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41707/","id":41707,"name":"Zombie Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41749/","id":41749,"name":"Demeityr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41842/","id":41842,"name":"Atum the God Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41843/","id":41843,"name":"Astronomer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41845/","id":41845,"name":"Lord Pumpkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41867/","id":41867,"name":"Sylene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41895/","id":41895,"name":"Thunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41946/","id":41946,"name":"Fenris Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41977/","id":41977,"name":"Winged Victory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42001/","id":42001,"name":"Powerboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42082/","id":42082,"name":"Pumpkinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42151/","id":42151,"name":"Gabreality"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42152/","id":42152,"name":"Canis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42153/","id":42153,"name":"Polymorpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42154/","id":42154,"name":"AO Major"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42155/","id":42155,"name":"Xonstructacles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42171/","id":42171,"name":"Jijimotu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42172/","id":42172,"name":"Lord Math"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42173/","id":42173,"name":"Dantalion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42237/","id":42237,"name":"Ahpuch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42324/","id":42324,"name":"Shirak the Devourer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42387/","id":42387,"name":"Khonshu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42414/","id":42414,"name":"Lady Styx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42482/","id":42482,"name":"Purgatori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42495/","id":42495,"name":"Azmodus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42543/","id":42543,"name":"D'Spayre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42566/","id":42566,"name":"Kenpachi Zaraki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42577/","id":42577,"name":"War Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42607/","id":42607,"name":"Aegis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42608/","id":42608,"name":"Tenebrous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42657/","id":42657,"name":"Apocryphus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42685/","id":42685,"name":"Akuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42799/","id":42799,"name":"Dread Rorkannu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42858/","id":42858,"name":"Gin Ichimaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42859/","id":42859,"name":"Sosuke Aizen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42864/","id":42864,"name":"Cheiron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42869/","id":42869,"name":"N'astirh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42951/","id":42951,"name":"Altwaal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42955/","id":42955,"name":"Braag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42957/","id":42957,"name":"Ervulsh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42958/","id":42958,"name":"Ihroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42959/","id":42959,"name":"Kerspan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42960/","id":42960,"name":"Raamia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42961/","id":42961,"name":"Rhorf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42962/","id":42962,"name":"Tulity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42966/","id":42966,"name":"Danik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42974/","id":42974,"name":"Solusandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43021/","id":43021,"name":"Kisuke Urahara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43022/","id":43022,"name":"Renji Abarai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43025/","id":43025,"name":"Appolyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43070/","id":43070,"name":"Rhiannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43092/","id":43092,"name":"Thunderhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43095/","id":43095,"name":"Helia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43121/","id":43121,"name":"Unnameable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43132/","id":43132,"name":"Rama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43141/","id":43141,"name":"Black Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43185/","id":43185,"name":"Necromon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43219/","id":43219,"name":"Lord Bala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43250/","id":43250,"name":"Iyam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43251/","id":43251,"name":"Dusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43267/","id":43267,"name":"Thamuz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43279/","id":43279,"name":"Zera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43294/","id":43294,"name":"Katha-Hem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43499/","id":43499,"name":"Ikaeden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43500/","id":43500,"name":"Kurassus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43755/","id":43755,"name":"Lord Volcanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43769/","id":43769,"name":"Hat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43983/","id":43983,"name":"Ryuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44033/","id":44033,"name":"Colopatiron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44076/","id":44076,"name":"Abraxas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44098/","id":44098,"name":"Byakuya Kuchiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44099/","id":44099,"name":"Pyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44136/","id":44136,"name":"Aku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44172/","id":44172,"name":"Citizen Soldier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44182/","id":44182,"name":"Laurel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44183/","id":44183,"name":"Soul Stealer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44252/","id":44252,"name":"Straw Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44259/","id":44259,"name":"Orochimaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44282/","id":44282,"name":"Kkallakku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44289/","id":44289,"name":"Akhenaten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44322/","id":44322,"name":"Krishna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44336/","id":44336,"name":"Moloch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44337/","id":44337,"name":"Astarte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44338/","id":44338,"name":"Atum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44339/","id":44339,"name":"Melchizedek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44340/","id":44340,"name":"Elijah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44365/","id":44365,"name":"Izanagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44366/","id":44366,"name":"Ame-No-Mi-Kumari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44367/","id":44367,"name":"Hotei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44368/","id":44368,"name":"Mikaboshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44369/","id":44369,"name":"Kaminari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44370/","id":44370,"name":"Inari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44380/","id":44380,"name":"Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44389/","id":44389,"name":"Bishamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44445/","id":44445,"name":"Blackbody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44452/","id":44452,"name":"Visimajoris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44455/","id":44455,"name":"Arimathes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44459/","id":44459,"name":"Unbeing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44473/","id":44473,"name":"One-Above-All"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44485/","id":44485,"name":"Fiddler's Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44488/","id":44488,"name":"Mazikeen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44497/","id":44497,"name":"Pazuzu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44523/","id":44523,"name":"Kabuto Yakushi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44552/","id":44552,"name":"Ganon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44582/","id":44582,"name":"General Grievous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44583/","id":44583,"name":"Alucard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44658/","id":44658,"name":"Captain Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44688/","id":44688,"name":"Captain Pollution"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44703/","id":44703,"name":"Lord Nod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44738/","id":44738,"name":"Atali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44794/","id":44794,"name":"Darth Bane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44863/","id":44863,"name":"Illyria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44936/","id":44936,"name":"Achelous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44937/","id":44937,"name":"Exitar the Exterminator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44940/","id":44940,"name":"Atlas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44962/","id":44962,"name":"Geryon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44976/","id":44976,"name":"Hobbes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45000/","id":45000,"name":"Tobi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45048/","id":45048,"name":"Rao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45074/","id":45074,"name":"Obliterator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45112/","id":45112,"name":"Green Lantern (Tangent)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45145/","id":45145,"name":"Lorelei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45219/","id":45219,"name":"Phobos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45324/","id":45324,"name":"Shadow the Hedgehog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45339/","id":45339,"name":"Mammoth Mogul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45354/","id":45354,"name":"Hrimhari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45364/","id":45364,"name":"Darth Krayt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45368/","id":45368,"name":"Hiei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45371/","id":45371,"name":"InuYasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45374/","id":45374,"name":"Yusuke Urameshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45424/","id":45424,"name":"Wayep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45446/","id":45446,"name":"Orana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45453/","id":45453,"name":"Athena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45469/","id":45469,"name":"Sesshomaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45527/","id":45527,"name":"Guts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45625/","id":45625,"name":"Spawn (Llanso)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45650/","id":45650,"name":"Nafertari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45697/","id":45697,"name":"Sayd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45745/","id":45745,"name":"Nekron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45769/","id":45769,"name":"Yuga Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45785/","id":45785,"name":"Evil Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45799/","id":45799,"name":"Eterneon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45800/","id":45800,"name":"Griffith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45803/","id":45803,"name":"Mirth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45917/","id":45917,"name":"Puck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45922/","id":45922,"name":"Red Power Ranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46021/","id":46021,"name":"Papa Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46022/","id":46022,"name":"Mamma Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46023/","id":46023,"name":"Boo Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46049/","id":46049,"name":"Toguro Ototo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46085/","id":46085,"name":"Doktor Sleepless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46106/","id":46106,"name":"Anu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46108/","id":46108,"name":"Ereshkigal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46109/","id":46109,"name":"Martu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46110/","id":46110,"name":"Marduk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46111/","id":46111,"name":"Inanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46186/","id":46186,"name":"Tefral the Surveyor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46245/","id":46245,"name":"Coyote Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46257/","id":46257,"name":"Botan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46273/","id":46273,"name":"Sub-Earth Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46278/","id":46278,"name":"Koenma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46355/","id":46355,"name":"Rukia Kuchiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46357/","id":46357,"name":"Toshiro Hitsugaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46398/","id":46398,"name":"Kurama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46481/","id":46481,"name":"Yukina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46531/","id":46531,"name":"Urizen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46628/","id":46628,"name":"Caber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46685/","id":46685,"name":"Kaname Tosen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46781/","id":46781,"name":"Gamemnae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46825/","id":46825,"name":"Michael Myers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46842/","id":46842,"name":"Devron the Experimenter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46843/","id":46843,"name":"Gamiel the Manipulator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46844/","id":46844,"name":"Jemiah the Analyzer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46845/","id":46845,"name":"Hargen the Measurer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46848/","id":46848,"name":"Little Barda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46892/","id":46892,"name":"Hebe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46893/","id":46893,"name":"Neptunia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46920/","id":46920,"name":"Tharamus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46923/","id":46923,"name":"Adjudicator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46958/","id":46958,"name":"Ecce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47008/","id":47008,"name":"Saule"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47037/","id":47037,"name":"ARC Trooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47062/","id":47062,"name":"Incubus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47093/","id":47093,"name":"Jill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47096/","id":47096,"name":"Snow Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47112/","id":47112,"name":"Durge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47121/","id":47121,"name":"Yachiru Kusajishi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47122/","id":47122,"name":"Jūshirō Ukitake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47125/","id":47125,"name":"Yumichika Ayasegawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47126/","id":47126,"name":"Yoruichi Shihōin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47169/","id":47169,"name":"Kthara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47234/","id":47234,"name":"Bekka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47529/","id":47529,"name":"Kragonn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47582/","id":47582,"name":"Anielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47585/","id":47585,"name":"The Thirst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47619/","id":47619,"name":"Momo Hinamori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47802/","id":47802,"name":"The Metropolitan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47806/","id":47806,"name":"Tigress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47892/","id":47892,"name":"Darth Malak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47899/","id":47899,"name":"Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48052/","id":48052,"name":"Jugo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48055/","id":48055,"name":"Speed Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48056/","id":48056,"name":"Malice Vundabar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48057/","id":48057,"name":"Wunda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48058/","id":48058,"name":"Artemiz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48072/","id":48072,"name":"Armaziel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48093/","id":48093,"name":"Eurystheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48128/","id":48128,"name":"Chroma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48312/","id":48312,"name":"Pandora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48428/","id":48428,"name":"Yog-Sothoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48443/","id":48443,"name":"Pteor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48452/","id":48452,"name":"Yig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48453/","id":48453,"name":"Hastur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48503/","id":48503,"name":"Nyarlathotep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48521/","id":48521,"name":"Alkyone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48541/","id":48541,"name":"Ratri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48542/","id":48542,"name":"Sobek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48543/","id":48543,"name":"Marzana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48587/","id":48587,"name":"Dracus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48658/","id":48658,"name":"Thanoseid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48660/","id":48660,"name":"Speed Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48661/","id":48661,"name":"Thorion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48663/","id":48663,"name":"L'ok D'saad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48702/","id":48702,"name":"Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48718/","id":48718,"name":"Silver Racer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48726/","id":48726,"name":"Sekhmet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48738/","id":48738,"name":"Tsathougga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48739/","id":48739,"name":"Buluc Chabtán"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48806/","id":48806,"name":"Tarim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48836/","id":48836,"name":"Lady Justice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48867/","id":48867,"name":"Uatu the Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48894/","id":48894,"name":"Argus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48964/","id":48964,"name":"Farallah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49020/","id":49020,"name":"Geralt of Rivia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49036/","id":49036,"name":"Vindicator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49069/","id":49069,"name":"Solomon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49070/","id":49070,"name":"Nix Uotan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49087/","id":49087,"name":"Medieval Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49093/","id":49093,"name":"Amaterasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49128/","id":49128,"name":"Brigid the Protector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49161/","id":49161,"name":"Alexiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49182/","id":49182,"name":"Mighty Agrippa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49221/","id":49221,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49294/","id":49294,"name":"Asura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49353/","id":49353,"name":"Kitana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49388/","id":49388,"name":"Jaggta-Noga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49418/","id":49418,"name":"Belldandy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49423/","id":49423,"name":"Raiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49430/","id":49430,"name":"Shao Kahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49437/","id":49437,"name":"Antiphon the Overseer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49438/","id":49438,"name":"Brio of Life"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49439/","id":49439,"name":"Diableri of Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49442/","id":49442,"name":"The Disciple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49508/","id":49508,"name":"Vandalizer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49524/","id":49524,"name":"Bairn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49533/","id":49533,"name":"Urshrek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49545/","id":49545,"name":"Ikkaku Madarame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49562/","id":49562,"name":"Zor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49598/","id":49598,"name":"Predalien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49767/","id":49767,"name":"Supreme Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49788/","id":49788,"name":"Gadriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49790/","id":49790,"name":"Sariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49791/","id":49791,"name":"Azazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49792/","id":49792,"name":"Armaros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49793/","id":49793,"name":"Ezekeel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49821/","id":49821,"name":"Kaworu Nagisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49833/","id":49833,"name":"Supay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49835/","id":49835,"name":"Hellboy Junior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49853/","id":49853,"name":"Gorgalac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49921/","id":49921,"name":"Akarl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49923/","id":49923,"name":"Atinai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49990/","id":49990,"name":"Ab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49991/","id":49991,"name":"Zab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49997/","id":49997,"name":"Necromina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50056/","id":50056,"name":"Gunslinger Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50261/","id":50261,"name":"War Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50334/","id":50334,"name":"Misran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50335/","id":50335,"name":"Meleos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50347/","id":50347,"name":"Achiriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50350/","id":50350,"name":"Gaudium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50351/","id":50351,"name":"Spera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50354/","id":50354,"name":"Uriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50375/","id":50375,"name":"Divinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50482/","id":50482,"name":"Sailor Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50493/","id":50493,"name":"Daniel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50495/","id":50495,"name":"Sergeant Superior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50518/","id":50518,"name":"Sailor Pluto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50647/","id":50647,"name":"Brijit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50653/","id":50653,"name":"War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50654/","id":50654,"name":"Pestilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50655/","id":50655,"name":"Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50681/","id":50681,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50694/","id":50694,"name":"Yoh Asakura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50710/","id":50710,"name":"Bastinado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50717/","id":50717,"name":"Khem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50793/","id":50793,"name":"Hao Asakura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50871/","id":50871,"name":"Ghast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50876/","id":50876,"name":"Sailor Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50973/","id":50973,"name":"Tahu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50995/","id":50995,"name":"Zork the Dark One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50999/","id":50999,"name":"Omega Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51054/","id":51054,"name":"Kopaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51072/","id":51072,"name":"Maya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51093/","id":51093,"name":"Judge Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51094/","id":51094,"name":"Judge Mortis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51095/","id":51095,"name":"Judge Fear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51113/","id":51113,"name":"Lewa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51120/","id":51120,"name":"Amidamaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51163/","id":51163,"name":"Kibito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51243/","id":51243,"name":"Gali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51255/","id":51255,"name":"Raven Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51256/","id":51256,"name":"Moss Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51286/","id":51286,"name":"The Jersey Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51297/","id":51297,"name":"Evilseed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51313/","id":51313,"name":"Anahita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51335/","id":51335,"name":"Chaak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51353/","id":51353,"name":"Infinite Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51385/","id":51385,"name":"Pohatu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51431/","id":51431,"name":"Onua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51440/","id":51440,"name":"Spawn (Covenant)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51533/","id":51533,"name":"Valtorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51534/","id":51534,"name":"Raggadorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51535/","id":51535,"name":"Krakkan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51536/","id":51536,"name":"Balthakk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51662/","id":51662,"name":"Zadkiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51667/","id":51667,"name":"Grimmjow Jaegerjaquez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51693/","id":51693,"name":"Vandala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51716/","id":51716,"name":"Ulquiorra Cifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51755/","id":51755,"name":"Vulnavia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51814/","id":51814,"name":"Apollyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51924/","id":51924,"name":"Mogul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51929/","id":51929,"name":"Gozza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51950/","id":51950,"name":"Darth Plagueis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51987/","id":51987,"name":"Hermes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52011/","id":52011,"name":"Imperion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52039/","id":52039,"name":"Ryuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52097/","id":52097,"name":"Pravda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52128/","id":52128,"name":"Kuan Yin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52132/","id":52132,"name":"Lilitu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52244/","id":52244,"name":"The Goddess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52245/","id":52245,"name":"The God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52291/","id":52291,"name":"Nebethet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52300/","id":52300,"name":"Camazotz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52321/","id":52321,"name":"Man of Miracles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52325/","id":52325,"name":"Mandarin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52429/","id":52429,"name":"Saranyu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52446/","id":52446,"name":"Heresy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52501/","id":52501,"name":"Shaggy 2 Dope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52502/","id":52502,"name":"Violent J"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52504/","id":52504,"name":"Ra's A-Pocalypse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52513/","id":52513,"name":"Kantuu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52654/","id":52654,"name":"Lordess of Many Leagues"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52662/","id":52662,"name":"Stitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52700/","id":52700,"name":"Surielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52762/","id":52762,"name":"Mysterium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52801/","id":52801,"name":"Mnemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52818/","id":52818,"name":"Jaster Mereel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52898/","id":52898,"name":"Azazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52901/","id":52901,"name":"Bookwurm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52924/","id":52924,"name":"Animus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52954/","id":52954,"name":"Jio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52969/","id":52969,"name":"Ghirretur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53004/","id":53004,"name":"Beelzebub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53006/","id":53006,"name":"Wyehold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53007/","id":53007,"name":"Minity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53009/","id":53009,"name":"Magin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53010/","id":53010,"name":"Mharrut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53011/","id":53011,"name":"Cahesse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53012/","id":53012,"name":"Immotus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53013/","id":53013,"name":"Syeniess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53028/","id":53028,"name":"Ordial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53029/","id":53029,"name":"Reash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53030/","id":53030,"name":"Antem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53031/","id":53031,"name":"Schullun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53032/","id":53032,"name":"Gani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53037/","id":53037,"name":"Indorienne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53041/","id":53041,"name":"Laia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53042/","id":53042,"name":"The Bard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53047/","id":53047,"name":"Kwe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53069/","id":53069,"name":"Noi Tai Dar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53070/","id":53070,"name":"Demoness of Yomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53098/","id":53098,"name":"Celyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53104/","id":53104,"name":"Svantovit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53110/","id":53110,"name":"Ravaca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53118/","id":53118,"name":"Minotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53131/","id":53131,"name":"Abysss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53144/","id":53144,"name":"Nevole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53171/","id":53171,"name":"Kinetic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53257/","id":53257,"name":"Quan Chi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53310/","id":53310,"name":"Dragon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53329/","id":53329,"name":"Kuhul Ajaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53335/","id":53335,"name":"Osiris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53411/","id":53411,"name":"The Brothers Yin and Yang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53413/","id":53413,"name":"Grendel's Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53428/","id":53428,"name":"Xxtr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53450/","id":53450,"name":"Ammut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53459/","id":53459,"name":"Asteroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53460/","id":53460,"name":"Séance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53461/","id":53461,"name":"Pagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53469/","id":53469,"name":"Shinnok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53493/","id":53493,"name":"Speed Centaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53499/","id":53499,"name":"Chasca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53521/","id":53521,"name":"Genocide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53532/","id":53532,"name":"Mongwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53541/","id":53541,"name":"Agony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53545/","id":53545,"name":"Virako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53566/","id":53566,"name":"Reaper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53583/","id":53583,"name":"Memi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53639/","id":53639,"name":"Lord Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53652/","id":53652,"name":"Alexander Corvinus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53674/","id":53674,"name":"Chatterer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53677/","id":53677,"name":"Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53682/","id":53682,"name":"The High Priestess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53687/","id":53687,"name":"BCRM"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53688/","id":53688,"name":"BLYQ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53689/","id":53689,"name":"LKQR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53691/","id":53691,"name":"QRYN"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53693/","id":53693,"name":"Miranda Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53705/","id":53705,"name":"Emma Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53714/","id":53714,"name":"Soujiro-San"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53715/","id":53715,"name":"Demonatrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53716/","id":53716,"name":"Aquiessence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53778/","id":53778,"name":"Armageddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53809/","id":53809,"name":"Ardia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53810/","id":53810,"name":"Wiseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53816/","id":53816,"name":"Evila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53818/","id":53818,"name":"Zakros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53819/","id":53819,"name":"Knossos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53820/","id":53820,"name":"Malia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53821/","id":53821,"name":"Phaistos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53849/","id":53849,"name":"Infoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53863/","id":53863,"name":"Zug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53883/","id":53883,"name":"Tharg the Mighty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53967/","id":53967,"name":"Bee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54021/","id":54021,"name":"Cheveyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54042/","id":54042,"name":"Nemases"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54092/","id":54092,"name":"Pyramid Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54095/","id":54095,"name":"Kurin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54096/","id":54096,"name":"Pyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54103/","id":54103,"name":"Milda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54106/","id":54106,"name":"Tammuz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54122/","id":54122,"name":"Aesklos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54125/","id":54125,"name":"Kukulkan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54162/","id":54162,"name":"Izuru Kira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54165/","id":54165,"name":"Thunderdog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54167/","id":54167,"name":"The Outrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54176/","id":54176,"name":"Rangiku Matsumoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54195/","id":54195,"name":"Bifrost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54219/","id":54219,"name":"Sajin Komamura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54232/","id":54232,"name":"Anveena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54275/","id":54275,"name":"Engineer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54280/","id":54280,"name":"Archmage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54307/","id":54307,"name":"Coeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54317/","id":54317,"name":"Iapetus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54364/","id":54364,"name":"Nnoitra Gilga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54375/","id":54375,"name":"Mother Herrae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54376/","id":54376,"name":"Red One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54381/","id":54381,"name":"Celestia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54382/","id":54382,"name":"Magnar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54387/","id":54387,"name":"White Horseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54395/","id":54395,"name":"Alibar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54399/","id":54399,"name":"Alioth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54417/","id":54417,"name":"Altjira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54455/","id":54455,"name":"Enkar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54456/","id":54456,"name":"Vayla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54457/","id":54457,"name":"Big Breeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54458/","id":54458,"name":"Tyrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54459/","id":54459,"name":"Jovita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54466/","id":54466,"name":"Fujin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54506/","id":54506,"name":"Cethlann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54530/","id":54530,"name":"Vaporizer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54541/","id":54541,"name":"Shunsui Kyōraku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54543/","id":54543,"name":"Zaggot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54546/","id":54546,"name":"Abacus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54578/","id":54578,"name":"Genryūsai Shigekuni Yamamoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54619/","id":54619,"name":"Mama Cocha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54623/","id":54623,"name":"Uruchillay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54630/","id":54630,"name":"Commander Gideon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54667/","id":54667,"name":"Daanvi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54729/","id":54729,"name":"Susano-O"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54764/","id":54764,"name":"Shinji Hirako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54803/","id":54803,"name":"Lisa Yadōmaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54804/","id":54804,"name":"Hiyori Sarugaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54806/","id":54806,"name":"Love Aikawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54830/","id":54830,"name":"Soi Fon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54893/","id":54893,"name":"Mama Quilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54904/","id":54904,"name":"Genie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54909/","id":54909,"name":"Legba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54913/","id":54913,"name":"Thresher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54920/","id":54920,"name":"Primus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54938/","id":54938,"name":"Tia Dalma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54956/","id":54956,"name":"Stay Puft Marshmallow Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55036/","id":55036,"name":"Innocence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55108/","id":55108,"name":"Tier Harribel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55226/","id":55226,"name":"Isane Kotetsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55227/","id":55227,"name":"Retsu Unohana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55272/","id":55272,"name":"Mashiro Kuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55308/","id":55308,"name":"Davy Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55315/","id":55315,"name":"Thor-El"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55394/","id":55394,"name":"Isobu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55402/","id":55402,"name":"The Fool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55403/","id":55403,"name":"The Lovers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55407/","id":55407,"name":"The Hermit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55408/","id":55408,"name":"The Wheel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55410/","id":55410,"name":"Justice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55413/","id":55413,"name":"The Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55415/","id":55415,"name":"The Hanged Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55435/","id":55435,"name":"Kelda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55450/","id":55450,"name":"Princess Nuala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55451/","id":55451,"name":"Prince Nuada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55478/","id":55478,"name":"Nelliel Tu Odelschwanck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55481/","id":55481,"name":"Coyote Starrk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55490/","id":55490,"name":"Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55502/","id":55502,"name":"Yammy Riyalgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55503/","id":55503,"name":"Szayel Aporro Granz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55537/","id":55537,"name":"Nanao Ise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55538/","id":55538,"name":"Mayuri Kurotsuchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55539/","id":55539,"name":"Nemu Kurotsuchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55540/","id":55540,"name":"Chojiro Sasakibe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55541/","id":55541,"name":"Marechiyo Omaeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55557/","id":55557,"name":"Arisnaub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55609/","id":55609,"name":"Tigra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55664/","id":55664,"name":"Gog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55715/","id":55715,"name":"Poseidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55718/","id":55718,"name":"Daniel Hall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55749/","id":55749,"name":"Queen of Thorns"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55750/","id":55750,"name":"Kratos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55751/","id":55751,"name":"Yuan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55794/","id":55794,"name":"Mandalore the Ultimate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55832/","id":55832,"name":"Agamemno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55835/","id":55835,"name":"Sauron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55841/","id":55841,"name":"Cestis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55845/","id":55845,"name":"Amenadiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55849/","id":55849,"name":"Lord Sinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55852/","id":55852,"name":"Flonne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55867/","id":55867,"name":"Sloth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55868/","id":55868,"name":"Pride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55869/","id":55869,"name":"Greed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55870/","id":55870,"name":"Wrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55871/","id":55871,"name":"Envy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55872/","id":55872,"name":"Gluttony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55873/","id":55873,"name":"Lust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55884/","id":55884,"name":"Sandalphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55892/","id":55892,"name":"Dareus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55893/","id":55893,"name":"The Holy Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55894/","id":55894,"name":"Balera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55897/","id":55897,"name":"Lady Lys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55934/","id":55934,"name":"Knoll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55942/","id":55942,"name":"Hemlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55947/","id":55947,"name":"Chakan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55957/","id":55957,"name":"Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55990/","id":55990,"name":"Shiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55996/","id":55996,"name":"Cameron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55999/","id":55999,"name":"Duke Seviram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56004/","id":56004,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56005/","id":56005,"name":"Phalyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56006/","id":56006,"name":"Necro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56030/","id":56030,"name":"Elyon Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56046/","id":56046,"name":"Chibi Chibi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56072/","id":56072,"name":"First Fallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56083/","id":56083,"name":"Hades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56086/","id":56086,"name":"Thanatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56087/","id":56087,"name":"Hypnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56088/","id":56088,"name":"Phantasos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56101/","id":56101,"name":"Synnar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56116/","id":56116,"name":"Charon of Acheron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56191/","id":56191,"name":"Takanuva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56233/","id":56233,"name":"Gekido-Jin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56242/","id":56242,"name":"Kagutsuchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56244/","id":56244,"name":"The Presence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56279/","id":56279,"name":"Jesus Christ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56292/","id":56292,"name":"Caleb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56293/","id":56293,"name":"King Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56294/","id":56294,"name":"Izanami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56308/","id":56308,"name":"Goblin Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56315/","id":56315,"name":"Mona Doyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56389/","id":56389,"name":"Kly'bn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56391/","id":56391,"name":"Shenlong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56429/","id":56429,"name":"Cirucci Sanderwicci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56442/","id":56442,"name":"Aaroniero Arruruerie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56445/","id":56445,"name":"Qabiri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56462/","id":56462,"name":"The Chariot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56463/","id":56463,"name":"The Magician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56464/","id":56464,"name":"Lord Arux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56496/","id":56496,"name":"Bergelmir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56497/","id":56497,"name":"Musubi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56499/","id":56499,"name":"Ibriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56502/","id":56502,"name":"Saul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56506/","id":56506,"name":"Pharamond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56510/","id":56510,"name":"Kingo Sunen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56513/","id":56513,"name":"Winter King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56515/","id":56515,"name":"Abonsam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56516/","id":56516,"name":"Garamas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56549/","id":56549,"name":"Mamba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56559/","id":56559,"name":"Ashur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56578/","id":56578,"name":"Adam Archer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56591/","id":56591,"name":"Plo'raach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56595/","id":56595,"name":"Iboga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56601/","id":56601,"name":"Herupa Hando Hu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56602/","id":56602,"name":"Dawlakispokpok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56606/","id":56606,"name":"Thwarcharchura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56624/","id":56624,"name":"J'Rhogan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56665/","id":56665,"name":"Y Ddraig Goch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56686/","id":56686,"name":"Killer Bee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56693/","id":56693,"name":"Scar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56718/","id":56718,"name":"Shinigami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56721/","id":56721,"name":"Death the Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56743/","id":56743,"name":"Zodd Nosferatu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56766/","id":56766,"name":"Sun King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56777/","id":56777,"name":"Zommari Rureaux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56778/","id":56778,"name":"Baraggan Louisenbairn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56780/","id":56780,"name":"Luppi Antenor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56787/","id":56787,"name":"Shūhei Hisagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56788/","id":56788,"name":"Kensei Muguruma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56801/","id":56801,"name":"M'Nagalah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56842/","id":56842,"name":"Iblis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56844/","id":56844,"name":"Skanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56849/","id":56849,"name":"Duke of Deception"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56885/","id":56885,"name":"Xenon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56918/","id":56918,"name":"Mitra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56928/","id":56928,"name":"Dragon Of The Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56951/","id":56951,"name":"Captain Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56975/","id":56975,"name":"Noble Kale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57012/","id":57012,"name":"Islington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57027/","id":57027,"name":"Galilean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57028/","id":57028,"name":"Lachryma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57029/","id":57029,"name":"Gabriella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57031/","id":57031,"name":"Santa Gloria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57064/","id":57064,"name":"Vacillator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57099/","id":57099,"name":"Godstalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57100/","id":57100,"name":"Chi-Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57113/","id":57113,"name":"Anti-Claus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57136/","id":57136,"name":"Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57155/","id":57155,"name":"Tsukiyomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57156/","id":57156,"name":"Prackspoor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57168/","id":57168,"name":"Bet Jo'gie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57176/","id":57176,"name":"Berim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57184/","id":57184,"name":"Luba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57185/","id":57185,"name":"Endarno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57198/","id":57198,"name":"Jezrael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57211/","id":57211,"name":"Kazantra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57226/","id":57226,"name":"Ceyote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57239/","id":57239,"name":"Aurelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57292/","id":57292,"name":"Divinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57306/","id":57306,"name":"Aginar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57315/","id":57315,"name":"Numinus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57331/","id":57331,"name":"Aethyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57424/","id":57424,"name":"Millennius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57435/","id":57435,"name":"Effrul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57488/","id":57488,"name":"Outcast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57490/","id":57490,"name":"Scathan the Approver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57519/","id":57519,"name":"The Radiant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57526/","id":57526,"name":"Oldar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57556/","id":57556,"name":"Weeja Dell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57557/","id":57557,"name":"Zillo Valla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57594/","id":57594,"name":"Artume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57617/","id":57617,"name":"Silk Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57621/","id":57621,"name":"Choronzon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57632/","id":57632,"name":"Mahu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57633/","id":57633,"name":"Briadach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57751/","id":57751,"name":"Gill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57794/","id":57794,"name":"The Stormbringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57795/","id":57795,"name":"Jarnsaxa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57848/","id":57848,"name":"Allura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57958/","id":57958,"name":"Gorrl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57962/","id":57962,"name":"The Crimson King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57992/","id":57992,"name":"Culex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58009/","id":58009,"name":"Zahgurim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58042/","id":58042,"name":"Seth the Immortal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58094/","id":58094,"name":"Serendipity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58095/","id":58095,"name":"Jeremiah Collins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58096/","id":58096,"name":"Mr. Suit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58113/","id":58113,"name":"Khatylis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58120/","id":58120,"name":"Patience"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58237/","id":58237,"name":"Tezcatlipoca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58238/","id":58238,"name":"Itzamna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58240/","id":58240,"name":"Svarog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58241/","id":58241,"name":"Nuada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58270/","id":58270,"name":"Lycus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58339/","id":58339,"name":"Victory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58349/","id":58349,"name":"Mister Jyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58353/","id":58353,"name":"Eyedol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58361/","id":58361,"name":"Grand Fisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58381/","id":58381,"name":"Rem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58387/","id":58387,"name":"Ultra-Sphinx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58396/","id":58396,"name":"Black Glider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58406/","id":58406,"name":"The Lich King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58435/","id":58435,"name":"Mr. Termineus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58447/","id":58447,"name":"Porunga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58459/","id":58459,"name":"Queen Aga'po"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58501/","id":58501,"name":"Magni Thorson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58517/","id":58517,"name":"Celeste"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58533/","id":58533,"name":"Ms. Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58536/","id":58536,"name":"Nurgle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58543/","id":58543,"name":"Daydreamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58589/","id":58589,"name":"Conductor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58590/","id":58590,"name":"Nick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58606/","id":58606,"name":"Belphir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58607/","id":58607,"name":"Rhezus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58608/","id":58608,"name":"Paxtan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58609/","id":58609,"name":"Amatus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58654/","id":58654,"name":"Lilynette Gingerbuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58655/","id":58655,"name":"Emilou Apacci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58656/","id":58656,"name":"Franceska Mila Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58657/","id":58657,"name":"Cyan Sung-Sun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58687/","id":58687,"name":"Calliope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58698/","id":58698,"name":"Big Bard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58710/","id":58710,"name":"Enmity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58826/","id":58826,"name":"Time Traveler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58827/","id":58827,"name":"Khyber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58859/","id":58859,"name":"Udates"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58860/","id":58860,"name":"Epophus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58861/","id":58861,"name":"Rhomus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58862/","id":58862,"name":"Honzu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58865/","id":58865,"name":"Lacerto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58894/","id":58894,"name":"Bor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58905/","id":58905,"name":"H'ronmeer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58943/","id":58943,"name":"Nebulos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58954/","id":58954,"name":"Adam K'ad-Mon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58980/","id":58980,"name":"Lord Simultaneous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59066/","id":59066,"name":"Satanika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59067/","id":59067,"name":"Dalkiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59084/","id":59084,"name":"Gawd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59088/","id":59088,"name":"Cythonna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59105/","id":59105,"name":"Blue Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59109/","id":59109,"name":"Ferryman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59134/","id":59134,"name":"Igrat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59154/","id":59154,"name":"Beelzeboul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59173/","id":59173,"name":"Devilman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59212/","id":59212,"name":"Super-Ego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59245/","id":59245,"name":"Ultimator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59249/","id":59249,"name":"Mephiles the Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59270/","id":59270,"name":"Lonkarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59299/","id":59299,"name":"M'Gubgub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59303/","id":59303,"name":"Ezili Dantor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59304/","id":59304,"name":"Lusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59307/","id":59307,"name":"Mawu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59313/","id":59313,"name":"Dark Kahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59328/","id":59328,"name":"Negal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59330/","id":59330,"name":"Elysa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59331/","id":59331,"name":"Cybile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59337/","id":59337,"name":"Ea the Wise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59371/","id":59371,"name":"The Red-Blue Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59372/","id":59372,"name":"The Alien Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59373/","id":59373,"name":"Anthropomorpho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59378/","id":59378,"name":"Moondog the Malicious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59382/","id":59382,"name":"Elalyth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59398/","id":59398,"name":"Neri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59400/","id":59400,"name":"Njord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59404/","id":59404,"name":"Skadi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59427/","id":59427,"name":"Pele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59444/","id":59444,"name":"Eulogy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59445/","id":59445,"name":"Expediency"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59459/","id":59459,"name":"Galacta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59463/","id":59463,"name":"Ku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59469/","id":59469,"name":"Saja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59487/","id":59487,"name":"Dax Novu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59524/","id":59524,"name":"Caregiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59525/","id":59525,"name":"Explorer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59572/","id":59572,"name":"Samhain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59594/","id":59594,"name":"Rox Ogama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59608/","id":59608,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59637/","id":59637,"name":"Euphemus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59660/","id":59660,"name":"Latch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59685/","id":59685,"name":"Monsieur Stigmonius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59789/","id":59789,"name":"The Nameless One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59830/","id":59830,"name":"Gwynnion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59853/","id":59853,"name":"Passover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59854/","id":59854,"name":"B'liale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59856/","id":59856,"name":"Lord Evitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59864/","id":59864,"name":"Morwen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59894/","id":59894,"name":"Universe Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59911/","id":59911,"name":"Scathach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60008/","id":60008,"name":"Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60046/","id":60046,"name":"Rawhead Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60063/","id":60063,"name":"Nolo Goth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60115/","id":60115,"name":"Night Spectre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60131/","id":60131,"name":"Ogdru Jahad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60132/","id":60132,"name":"Miss Douglas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60233/","id":60233,"name":"Oa the Living Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60242/","id":60242,"name":"Riding Hood Impostor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60245/","id":60245,"name":"Abrogate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60261/","id":60261,"name":"Egma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60275/","id":60275,"name":"Nero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60283/","id":60283,"name":"Urgo-Hem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60304/","id":60304,"name":"Kane Milohai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60306/","id":60306,"name":"Sister Sentry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60335/","id":60335,"name":"Ruth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60348/","id":60348,"name":"D'Chel the Deceptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60351/","id":60351,"name":"Kazann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60368/","id":60368,"name":"Gilgamesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60377/","id":60377,"name":"Tserron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60386/","id":60386,"name":"Uni-Lord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60404/","id":60404,"name":"Devourer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60422/","id":60422,"name":"Surisha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60440/","id":60440,"name":"The First Evil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60447/","id":60447,"name":"Equinox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60458/","id":60458,"name":"Glorificus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60469/","id":60469,"name":"Kometes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60534/","id":60534,"name":"Erdammeru, the Void Hound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60590/","id":60590,"name":"Dark Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60591/","id":60591,"name":"Desire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60668/","id":60668,"name":"Zath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60681/","id":60681,"name":"Terhali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60683/","id":60683,"name":"Megaira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60709/","id":60709,"name":"Sui-San"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60724/","id":60724,"name":"Menoly Mallia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60726/","id":60726,"name":"Loly Aivirrne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60733/","id":60733,"name":"Thanatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60742/","id":60742,"name":"Vext"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60755/","id":60755,"name":"The Fulcrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60794/","id":60794,"name":"Scary Godmother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60873/","id":60873,"name":"Guan Yu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60940/","id":60940,"name":"Captain Victory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60947/","id":60947,"name":"Nahmat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61007/","id":61007,"name":"X'Hal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61014/","id":61014,"name":"The Great Evil Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61060/","id":61060,"name":"Narahdarn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61084/","id":61084,"name":"Julunggul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61115/","id":61115,"name":"Urd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61116/","id":61116,"name":"Skuld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61127/","id":61127,"name":"Daramulum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61166/","id":61166,"name":"Marmoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61222/","id":61222,"name":"Demon of the Poster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61245/","id":61245,"name":"Valion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61246/","id":61246,"name":"Uriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61247/","id":61247,"name":"Neboron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61248/","id":61248,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61249/","id":61249,"name":"Cythea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61279/","id":61279,"name":"Shaiana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61285/","id":61285,"name":"Goodfellow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61297/","id":61297,"name":"Fishnet Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61317/","id":61317,"name":"Storm-God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61331/","id":61331,"name":"Agnar of Vanaheim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61332/","id":61332,"name":"Greyval Grimson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61443/","id":61443,"name":"Barter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61487/","id":61487,"name":"Atar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61488/","id":61488,"name":"Baiame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61489/","id":61489,"name":"Hunab-Ku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61490/","id":61490,"name":"Ndrianadhary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61491/","id":61491,"name":"Nyame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61493/","id":61493,"name":"Jubal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61499/","id":61499,"name":"Kāne Milohai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61514/","id":61514,"name":"Shou-Hsing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61515/","id":61515,"name":"Ulgen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61520/","id":61520,"name":"Doctor Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61527/","id":61527,"name":"Okonorote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61538/","id":61538,"name":"Shango"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61539/","id":61539,"name":"Tawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61544/","id":61544,"name":"Nergal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61547/","id":61547,"name":"Eshu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61548/","id":61548,"name":"Jerzgal Zadu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61550/","id":61550,"name":"Yama-No-Kami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61551/","id":61551,"name":"Mister Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61553/","id":61553,"name":"Malachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61571/","id":61571,"name":"Miss Bloss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61580/","id":61580,"name":"Dark Mousy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61584/","id":61584,"name":"Krad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61586/","id":61586,"name":"Sebastian Michaelis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61588/","id":61588,"name":"Dabura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61609/","id":61609,"name":"Grell Sutcliff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61626/","id":61626,"name":"Eddie Underfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61627/","id":61627,"name":"Colonel Wuddershanks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61628/","id":61628,"name":"Johnny Bullhorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61630/","id":61630,"name":"The Good Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61632/","id":61632,"name":"Mr. Grandours"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61666/","id":61666,"name":"Tahoteh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61698/","id":61698,"name":"Mr. Revise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61722/","id":61722,"name":"Hanyuu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61798/","id":61798,"name":"Squall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61803/","id":61803,"name":"Bimbeau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61808/","id":61808,"name":"Tapeworm Cosmic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61838/","id":61838,"name":"Lillith the Demon Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61839/","id":61839,"name":"Kali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61875/","id":61875,"name":"Narashima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61876/","id":61876,"name":"Hanuman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61898/","id":61898,"name":"Shezada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61930/","id":61930,"name":"Thetis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61966/","id":61966,"name":"Anitun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61976/","id":61976,"name":"Highfather Odin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61977/","id":61977,"name":"Granny Harkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61988/","id":61988,"name":"Mayerling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62056/","id":62056,"name":"King Hyperion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62080/","id":62080,"name":"Grim Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62081/","id":62081,"name":"Sygnet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62098/","id":62098,"name":"Sabato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62099/","id":62099,"name":"Dokuro-chan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62100/","id":62100,"name":"Zansu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62269/","id":62269,"name":"He Who Remains"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62319/","id":62319,"name":"Virtual Reality"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62414/","id":62414,"name":"Bolabogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62436/","id":62436,"name":"Judicator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62448/","id":62448,"name":"Hellsignor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62455/","id":62455,"name":"Kang the Time Conqueror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62515/","id":62515,"name":"Ixchel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62547/","id":62547,"name":"Seidring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62555/","id":62555,"name":"Donna Wonder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62566/","id":62566,"name":"Dryminextes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62624/","id":62624,"name":"Beetlejuice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62636/","id":62636,"name":"Andromeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62651/","id":62651,"name":"Lucky Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62684/","id":62684,"name":"Bitterhorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62719/","id":62719,"name":"Big Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62732/","id":62732,"name":"Devourer the Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62734/","id":62734,"name":"Basilisk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62740/","id":62740,"name":"Gandalf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62747/","id":62747,"name":"Kalima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62751/","id":62751,"name":"Feist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62765/","id":62765,"name":"Saruman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62766/","id":62766,"name":"The Balrog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62823/","id":62823,"name":"Snake God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62838/","id":62838,"name":"Wish-Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62839/","id":62839,"name":"Tartessus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62840/","id":62840,"name":"Gormac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62844/","id":62844,"name":"Kx'ulthuum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62846/","id":62846,"name":"Molub the Undying Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62849/","id":62849,"name":"Zagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62855/","id":62855,"name":"Demon Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62880/","id":62880,"name":"Tanya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62903/","id":62903,"name":"Menoetius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62905/","id":62905,"name":"Chaos, Deity of Space"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62906/","id":62906,"name":"Dionysus of Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62907/","id":62907,"name":"Tartarus, God of the Abyss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62908/","id":62908,"name":"Hilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62909/","id":62909,"name":"Mista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62910/","id":62910,"name":"Sangrida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62921/","id":62921,"name":"Thelius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62922/","id":62922,"name":"Monolith Gatherer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62924/","id":62924,"name":"Dementia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62925/","id":62925,"name":"Phobia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62928/","id":62928,"name":"Exile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62929/","id":62929,"name":"Delusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62976/","id":62976,"name":"Lorelei of Fairyland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63064/","id":63064,"name":"She"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63092/","id":63092,"name":"Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63206/","id":63206,"name":"Mars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63262/","id":63262,"name":"Samhain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63291/","id":63291,"name":"Redbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63293/","id":63293,"name":"Nanook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63373/","id":63373,"name":"Wonderweiss Margela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63421/","id":63421,"name":"James"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63424/","id":63424,"name":"Sise-Neg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63428/","id":63428,"name":"Ghoulgotha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63445/","id":63445,"name":"Spirit of Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63710/","id":63710,"name":"Apolyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63711/","id":63711,"name":"Arhiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63863/","id":63863,"name":"Lacewing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63864/","id":63864,"name":"Leatherwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63886/","id":63886,"name":"Ataros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63887/","id":63887,"name":"Brooke Of The Denim Shield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63898/","id":63898,"name":"Ship"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63901/","id":63901,"name":"Lord L"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63960/","id":63960,"name":"Toll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63986/","id":63986,"name":"Hachigen Ushoda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64113/","id":64113,"name":"Satin Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64263/","id":64263,"name":"Mandalore the Indomitable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64268/","id":64268,"name":"Marka Ragnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64600/","id":64600,"name":"Gnowee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64661/","id":64661,"name":"Earl of Greed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64690/","id":64690,"name":"Lord Conquest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64717/","id":64717,"name":"Stheno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64751/","id":64751,"name":"Diabolique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64800/","id":64800,"name":"Zatavu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64809/","id":64809,"name":"Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64836/","id":64836,"name":"Lady Luck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64841/","id":64841,"name":"Kesa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64842/","id":64842,"name":"Kevat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64843/","id":64843,"name":"The Bookburner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64846/","id":64846,"name":"Slue Foot Sue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64854/","id":64854,"name":"Scrier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64875/","id":64875,"name":"Fifth Horseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64936/","id":64936,"name":"Arioch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64951/","id":64951,"name":"Seetah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64957/","id":64957,"name":"Sama-D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64959/","id":64959,"name":"Brahmanes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65006/","id":65006,"name":"Ahura Mazda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65017/","id":65017,"name":"King Yemma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65018/","id":65018,"name":"Elder Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65024/","id":65024,"name":"Lada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65025/","id":65025,"name":"Xi Wangmu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65042/","id":65042,"name":"Sacrilege"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65060/","id":65060,"name":"Birdman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65077/","id":65077,"name":"Veles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65078/","id":65078,"name":"Svarozvitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65081/","id":65081,"name":"Amaterasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65114/","id":65114,"name":"Dazhbog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65186/","id":65186,"name":"Dracula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65224/","id":65224,"name":"Kathra'Natir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65343/","id":65343,"name":"Decreator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65489/","id":65489,"name":"Proteus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65513/","id":65513,"name":"Wy'east"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65514/","id":65514,"name":"Loowit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65515/","id":65515,"name":"Klickitat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65516/","id":65516,"name":"Prose Page"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65532/","id":65532,"name":"Mr Sun and Mr Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65619/","id":65619,"name":"Kathulos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65628/","id":65628,"name":"Bran the Blessed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65629/","id":65629,"name":"Gwynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65769/","id":65769,"name":"Hancock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65771/","id":65771,"name":"Pollux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65777/","id":65777,"name":"La Gatta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65795/","id":65795,"name":"Aqhat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65834/","id":65834,"name":"Prodigian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65835/","id":65835,"name":"S'ivaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65837/","id":65837,"name":"Rodney Bubos-Ganglia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65838/","id":65838,"name":"Bella Donna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66024/","id":66024,"name":"Janie Chin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66105/","id":66105,"name":"Hell Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66106/","id":66106,"name":"Zhu Rong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66107/","id":66107,"name":"Nezha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66108/","id":66108,"name":"Yen-Lo Wang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66109/","id":66109,"name":"Lei Gong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66110/","id":66110,"name":"Tian-Mu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66165/","id":66165,"name":"Mother Birdie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66170/","id":66170,"name":"Lord Silverfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66186/","id":66186,"name":"Lord Zedd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66193/","id":66193,"name":"Xiuhtecutli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66197/","id":66197,"name":"Cleito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66220/","id":66220,"name":"Baby Kate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66346/","id":66346,"name":"Kid Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66348/","id":66348,"name":"Merlin (Amalgam)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66406/","id":66406,"name":"Shareekh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66461/","id":66461,"name":"Sniq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66485/","id":66485,"name":"Iblis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66496/","id":66496,"name":"The Librarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66502/","id":66502,"name":"Ogun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66545/","id":66545,"name":"Red God of Ys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66780/","id":66780,"name":"Wazir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66812/","id":66812,"name":"Brigand Doom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66866/","id":66866,"name":"Leison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66886/","id":66886,"name":"King Ra-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66989/","id":66989,"name":"Traumiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67022/","id":67022,"name":"Nyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67031/","id":67031,"name":"Lord Hades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67105/","id":67105,"name":"Hapi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67123/","id":67123,"name":"Valkyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67124/","id":67124,"name":"Circe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67126/","id":67126,"name":"Donna Mia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67170/","id":67170,"name":"Kratos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67187/","id":67187,"name":"Gus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67188/","id":67188,"name":"Mr. O'Malley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67208/","id":67208,"name":"Cad Bane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67219/","id":67219,"name":"Slototh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67236/","id":67236,"name":"Flora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67237/","id":67237,"name":"Fauna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67267/","id":67267,"name":"Hercules"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67282/","id":67282,"name":"Fatsis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67285/","id":67285,"name":"Jeriven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67297/","id":67297,"name":"Gorgg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67324/","id":67324,"name":"Vigo the Carpathian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67329/","id":67329,"name":"Mad God Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67359/","id":67359,"name":"Panic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67379/","id":67379,"name":"Skanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67381/","id":67381,"name":"Tul'uth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67419/","id":67419,"name":"Thoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67444/","id":67444,"name":"Mr. Danton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67452/","id":67452,"name":"Morrigan Lugus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67453/","id":67453,"name":"Krishna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67454/","id":67454,"name":"Malak Al-Maut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67456/","id":67456,"name":"Jerry Craven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67514/","id":67514,"name":"Mother Zed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67545/","id":67545,"name":"Columbia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67549/","id":67549,"name":"Herateq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67550/","id":67550,"name":"Tiamaq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67664/","id":67664,"name":"Erinni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67713/","id":67713,"name":"Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67738/","id":67738,"name":"Powerhouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67755/","id":67755,"name":"Iktomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67767/","id":67767,"name":"Yra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67792/","id":67792,"name":"Torunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67814/","id":67814,"name":"Maitreya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67815/","id":67815,"name":"Novaya Goraj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67817/","id":67817,"name":"Chu Jiang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67819/","id":67819,"name":"Feng Po"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67820/","id":67820,"name":"Gong Gong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67831/","id":67831,"name":"Red Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67901/","id":67901,"name":"Yag-Kosha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67944/","id":67944,"name":"Yivo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68017/","id":68017,"name":"Dragonoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68026/","id":68026,"name":"Jasmine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68045/","id":68045,"name":"Astriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68096/","id":68096,"name":"Skull-Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68105/","id":68105,"name":"Io"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68106/","id":68106,"name":"Eros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68147/","id":68147,"name":"Astarte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68162/","id":68162,"name":"Shakti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68186/","id":68186,"name":"Arachne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68187/","id":68187,"name":"Aluwyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68202/","id":68202,"name":"Cottus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68225/","id":68225,"name":"The One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68257/","id":68257,"name":"Spawn (Downing)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68291/","id":68291,"name":"Jallakuntilliokan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68372/","id":68372,"name":"Warhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68409/","id":68409,"name":"Deirdre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68442/","id":68442,"name":"Maev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68531/","id":68531,"name":"Jandar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68532/","id":68532,"name":"Raelin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68558/","id":68558,"name":"Utgar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68562/","id":68562,"name":"Sartael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68563/","id":68563,"name":"Arzal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68564/","id":68564,"name":"Paraqlitos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68656/","id":68656,"name":"Discord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68699/","id":68699,"name":"Nemesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68714/","id":68714,"name":"The King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68721/","id":68721,"name":"Second of the Fallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68722/","id":68722,"name":"Third of the Fallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68728/","id":68728,"name":"Edward Cullen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68731/","id":68731,"name":"Le Bete Noir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68766/","id":68766,"name":"Jacob Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68827/","id":68827,"name":"Morte Mamme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68842/","id":68842,"name":"Varvara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68845/","id":68845,"name":"Eos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68894/","id":68894,"name":"Left Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68909/","id":68909,"name":"Zwarte Piet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68959/","id":68959,"name":"Mo'lock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69002/","id":69002,"name":"The Baby God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69022/","id":69022,"name":"Mictlantecuhtli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69024/","id":69024,"name":"Itzpapalotl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69035/","id":69035,"name":"Quetzlotl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69145/","id":69145,"name":"Virtus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69181/","id":69181,"name":"Belzeba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69259/","id":69259,"name":"Cimiteria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69349/","id":69349,"name":"Death Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69351/","id":69351,"name":"Pan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69362/","id":69362,"name":"Arvin Sloane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69380/","id":69380,"name":"C'Thulon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69383/","id":69383,"name":"Richard Faulkner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69445/","id":69445,"name":"Lord Arc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69479/","id":69479,"name":"Uridimmu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69480/","id":69480,"name":"Ishtar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69536/","id":69536,"name":"Rimbaud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69537/","id":69537,"name":"The Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69555/","id":69555,"name":"Burning Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69566/","id":69566,"name":"The Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69591/","id":69591,"name":"Mammon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69720/","id":69720,"name":"Mot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69768/","id":69768,"name":"Tullus The Damned"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69814/","id":69814,"name":"Vohc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69819/","id":69819,"name":"Joey Eliot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69838/","id":69838,"name":"Kraken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69861/","id":69861,"name":"Perseus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69870/","id":69870,"name":"Petunia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69897/","id":69897,"name":"The Huntsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69919/","id":69919,"name":"Psyche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70002/","id":70002,"name":"Keeper of the Tide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70008/","id":70008,"name":"Aegaeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70036/","id":70036,"name":"Zeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70037/","id":70037,"name":"Ares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70041/","id":70041,"name":"Athena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70043/","id":70043,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70044/","id":70044,"name":"Persephone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70045/","id":70045,"name":"Io"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70048/","id":70048,"name":"Hades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70104/","id":70104,"name":"Dajjal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70106/","id":70106,"name":"Perun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70177/","id":70177,"name":"Alu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70234/","id":70234,"name":"Blacksmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70239/","id":70239,"name":"Dalma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70357/","id":70357,"name":"Sadaharu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70375/","id":70375,"name":"Eye of Horus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70376/","id":70376,"name":"The Other"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70577/","id":70577,"name":"Angantyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70622/","id":70622,"name":"Persephone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70637/","id":70637,"name":"Green Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70664/","id":70664,"name":"Pagus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70687/","id":70687,"name":"Wizeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70688/","id":70688,"name":"The Gatekeeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70771/","id":70771,"name":"Althea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70789/","id":70789,"name":"The Brain-Ship"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70840/","id":70840,"name":"Kronnitt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70847/","id":70847,"name":"Cancerverse Daemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70875/","id":70875,"name":"Frightful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70921/","id":70921,"name":"Odious Kamodius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70922/","id":70922,"name":"Mantis Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70941/","id":70941,"name":"Haruhi Suzumiya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70973/","id":70973,"name":"Astra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71058/","id":71058,"name":"Pristine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71059/","id":71059,"name":"Virus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71130/","id":71130,"name":"Prince Brandish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71136/","id":71136,"name":"Colonel Thunderfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71137/","id":71137,"name":"Frog Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71139/","id":71139,"name":"Mersey Dotes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71160/","id":71160,"name":"Thena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71273/","id":71273,"name":"Gatchan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71336/","id":71336,"name":"Ophidian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71338/","id":71338,"name":"Adara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71339/","id":71339,"name":"Proselyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71340/","id":71340,"name":"The Butcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71366/","id":71366,"name":"Cronos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71369/","id":71369,"name":"War Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71432/","id":71432,"name":"Apalala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71482/","id":71482,"name":"Death Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71638/","id":71638,"name":"General Destruction"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71742/","id":71742,"name":"General Shroud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71774/","id":71774,"name":"Mercy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71829/","id":71829,"name":"Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71910/","id":71910,"name":"Jack in the Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71929/","id":71929,"name":"Wargod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71930/","id":71930,"name":"Turel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71932/","id":71932,"name":"Lord Hark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71939/","id":71939,"name":"Decray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71949/","id":71949,"name":"Sin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71950/","id":71950,"name":"Red Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71963/","id":71963,"name":"Lucifer's Duinum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72022/","id":72022,"name":"Brün"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72023/","id":72023,"name":"Kára"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72029/","id":72029,"name":"Nordik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72033/","id":72033,"name":"Nicola Provenzano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72037/","id":72037,"name":"Cameron Nemo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72097/","id":72097,"name":"Roger Szothstromael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72098/","id":72098,"name":"Lance Szothstromael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72099/","id":72099,"name":"Lucy Szothstromael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72100/","id":72100,"name":"Valera Szothstromael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72101/","id":72101,"name":"Raphael Szothstromael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72102/","id":72102,"name":"Szothstromael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72113/","id":72113,"name":"Dr. Trouvaille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72119/","id":72119,"name":"Ritter Twins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72147/","id":72147,"name":"MoonShadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72180/","id":72180,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72214/","id":72214,"name":"Sam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72293/","id":72293,"name":"Shar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72297/","id":72297,"name":"Gaia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72339/","id":72339,"name":"Uranos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72360/","id":72360,"name":"Unagor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72361/","id":72361,"name":"Artemis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72410/","id":72410,"name":"Queen Arachna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72543/","id":72543,"name":"Murphy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72546/","id":72546,"name":"Ambriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72572/","id":72572,"name":"The Man in Black, Called Fate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72585/","id":72585,"name":"Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72586/","id":72586,"name":"Aisha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72587/","id":72587,"name":"Flora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72589/","id":72589,"name":"Stella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72590/","id":72590,"name":"Tecna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72598/","id":72598,"name":"Kalazzar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72732/","id":72732,"name":"Danica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72736/","id":72736,"name":"Neena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72740/","id":72740,"name":"Ray Connor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72753/","id":72753,"name":"Kareena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72800/","id":72800,"name":"Harlot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72801/","id":72801,"name":"Nodens"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72820/","id":72820,"name":"Hestia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72826/","id":72826,"name":"Malphast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72910/","id":72910,"name":"Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73043/","id":73043,"name":"Alera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73072/","id":73072,"name":"Wisp O'Smoke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73123/","id":73123,"name":"Predator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73144/","id":73144,"name":"Serene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73185/","id":73185,"name":"War Dancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73236/","id":73236,"name":"Coral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73237/","id":73237,"name":"Amphitrite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73239/","id":73239,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73372/","id":73372,"name":"Oblivion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73427/","id":73427,"name":"Lolth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73432/","id":73432,"name":"Shadowy Mr. Evans"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73455/","id":73455,"name":"Myrwann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73488/","id":73488,"name":"Frank Seleski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73518/","id":73518,"name":"Rowan Morrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73537/","id":73537,"name":"Spider Goddess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73600/","id":73600,"name":"Carter Clark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73601/","id":73601,"name":"Graham Fallwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73651/","id":73651,"name":"Charro Negro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73772/","id":73772,"name":"Star Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73778/","id":73778,"name":"Goddess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73905/","id":73905,"name":"Gloria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73948/","id":73948,"name":"Wolverine Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74022/","id":74022,"name":"Doctor Nowhere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74077/","id":74077,"name":"Six-Tell Amlah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74173/","id":74173,"name":"Man in Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74277/","id":74277,"name":"The Demon of Destruction"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74344/","id":74344,"name":"Alex Olsen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74356/","id":74356,"name":"Glory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74463/","id":74463,"name":"Diana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74519/","id":74519,"name":"Thrann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74521/","id":74521,"name":"Iroxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74522/","id":74522,"name":"Dark One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74523/","id":74523,"name":"Siri Ullall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74536/","id":74536,"name":"Don Juan De Leon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74554/","id":74554,"name":"Ai Apaec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74608/","id":74608,"name":"Kestus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74611/","id":74611,"name":"Apollo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74616/","id":74616,"name":"Shuren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74637/","id":74637,"name":"Brank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74744/","id":74744,"name":"Gyges"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74746/","id":74746,"name":"Twilight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74748/","id":74748,"name":"The Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74760/","id":74760,"name":"Tall Trees"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74761/","id":74761,"name":"Windstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74762/","id":74762,"name":"Thundercloud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74763/","id":74763,"name":"Fire Horse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74782/","id":74782,"name":"Tocotl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74793/","id":74793,"name":"Malacoda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74794/","id":74794,"name":"Minos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74796/","id":74796,"name":"Nimrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74797/","id":74797,"name":"Ephialtes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74815/","id":74815,"name":"Mirage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74837/","id":74837,"name":"Maitresse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74893/","id":74893,"name":"The Masque of Red Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74897/","id":74897,"name":"Conqueror Worm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74919/","id":74919,"name":"Belaam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74921/","id":74921,"name":"Brenda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74922/","id":74922,"name":"Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74924/","id":74924,"name":"Mephistopheles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74925/","id":74925,"name":"Mark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74930/","id":74930,"name":"Dark Schneider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74935/","id":74935,"name":"Nicol Bolas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74960/","id":74960,"name":"Bellona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74961/","id":74961,"name":"Anann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75016/","id":75016,"name":"Gruenhilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75127/","id":75127,"name":"Uravo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75138/","id":75138,"name":"Yarsyg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75165/","id":75165,"name":"Yruku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75196/","id":75196,"name":"Horned King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75208/","id":75208,"name":"Khyrana the Accursed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75308/","id":75308,"name":"Ryder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75404/","id":75404,"name":"Oshus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75446/","id":75446,"name":"Mrs. Someone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75477/","id":75477,"name":"Forever Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75485/","id":75485,"name":"The White Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75490/","id":75490,"name":"Tier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75503/","id":75503,"name":"Demon John"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75507/","id":75507,"name":"Ah-Kin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75508/","id":75508,"name":"Ix-Chel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75509/","id":75509,"name":"Nacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75510/","id":75510,"name":"Yum-Kimil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75530/","id":75530,"name":"Pharyngula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75536/","id":75536,"name":"Eris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75537/","id":75537,"name":"Lost Johnny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75538/","id":75538,"name":"Mania"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75551/","id":75551,"name":"Nameless One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75578/","id":75578,"name":"Fenris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75585/","id":75585,"name":"Shrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75602/","id":75602,"name":"The Warrior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75641/","id":75641,"name":"Boreas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75666/","id":75666,"name":"Savage Opress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75667/","id":75667,"name":"Xeniac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75808/","id":75808,"name":"Jara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75848/","id":75848,"name":"Omegex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75851/","id":75851,"name":"Prime Mover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75872/","id":75872,"name":"Cyleni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75873/","id":75873,"name":"Pratea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75906/","id":75906,"name":"Brimstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75916/","id":75916,"name":"Akasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76064/","id":76064,"name":"Vandella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76067/","id":76067,"name":"Cherlindrea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76092/","id":76092,"name":"Aeshma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76189/","id":76189,"name":"Syththunu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76233/","id":76233,"name":"Eric Daniels"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76234/","id":76234,"name":"Caos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76314/","id":76314,"name":"The Apparition"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76334/","id":76334,"name":"Taros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76376/","id":76376,"name":"Silene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76377/","id":76377,"name":"Kaim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76388/","id":76388,"name":"Tiamat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76410/","id":76410,"name":"Rahan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76426/","id":76426,"name":"Kyle Brody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76502/","id":76502,"name":"Kemette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76569/","id":76569,"name":"Samael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76570/","id":76570,"name":"Straga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76572/","id":76572,"name":"The Griever"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76573/","id":76573,"name":"Stygian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76574/","id":76574,"name":"Silitha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76578/","id":76578,"name":"Vulgrim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76582/","id":76582,"name":"Azrael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76583/","id":76583,"name":"Ulthane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76584/","id":76584,"name":"Strife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76585/","id":76585,"name":"Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76605/","id":76605,"name":"Rowant Mor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76610/","id":76610,"name":"Arsgomor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76621/","id":76621,"name":"Lord Diamond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76623/","id":76623,"name":"Cabracan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76682/","id":76682,"name":"Enyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76940/","id":76940,"name":"Achilles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76990/","id":76990,"name":"Andhrimnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76991/","id":76991,"name":"Bragi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77026/","id":77026,"name":"Hakon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77119/","id":77119,"name":"K'athanoa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77155/","id":77155,"name":"Baphomet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77160/","id":77160,"name":"Azathoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77174/","id":77174,"name":"Tataka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77239/","id":77239,"name":"Phantom Zone God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77251/","id":77251,"name":"Din"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77306/","id":77306,"name":"The Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77335/","id":77335,"name":"Farore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77337/","id":77337,"name":"Nayru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77351/","id":77351,"name":"Grayson Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77392/","id":77392,"name":"Ikol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77432/","id":77432,"name":"Superego, the Living Atom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77504/","id":77504,"name":"Aeolus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77521/","id":77521,"name":"Epione"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77541/","id":77541,"name":"Gyuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77545/","id":77545,"name":"Matatabi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77562/","id":77562,"name":"Oracle of Themyscira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77707/","id":77707,"name":"Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77745/","id":77745,"name":"Caged Demonwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77747/","id":77747,"name":"Gnives"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77770/","id":77770,"name":"Baphomet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77783/","id":77783,"name":"Calobis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77792/","id":77792,"name":"Maranatha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77799/","id":77799,"name":"Ashrah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77810/","id":77810,"name":"The Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77813/","id":77813,"name":"Yag-Ath Vermellus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77838/","id":77838,"name":"Jack Attack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77840/","id":77840,"name":"Baby Oopsie Daisy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77847/","id":77847,"name":"Rankor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77871/","id":77871,"name":"Khara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77879/","id":77879,"name":"Viradha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78014/","id":78014,"name":"The Shadow from Beyond Time"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78051/","id":78051,"name":"Great Tiger Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78068/","id":78068,"name":"Kwahu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78072/","id":78072,"name":"Labelas Enoreth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78161/","id":78161,"name":"Hiroshima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78214/","id":78214,"name":"Sir Hugo Wormfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78249/","id":78249,"name":"Antagon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78262/","id":78262,"name":"Sun Wukong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78369/","id":78369,"name":"Leah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78373/","id":78373,"name":"Damien Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78442/","id":78442,"name":"Väinämöinen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78455/","id":78455,"name":"Celestia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78478/","id":78478,"name":"King Jerrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78526/","id":78526,"name":"Shifting Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78543/","id":78543,"name":"Dios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78550/","id":78550,"name":"C'th The Undying"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78595/","id":78595,"name":"Joshua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78596/","id":78596,"name":"Phantom of the Sewers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78663/","id":78663,"name":"Otto von Todt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78664/","id":78664,"name":"Thurim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78669/","id":78669,"name":"Kayako Saeki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78670/","id":78670,"name":"Toshio Saeki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78693/","id":78693,"name":"Peorth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78695/","id":78695,"name":"Marller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78724/","id":78724,"name":"Lord Mortis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78831/","id":78831,"name":"Lunatik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78903/","id":78903,"name":"Elfric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78935/","id":78935,"name":"Ashe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78936/","id":78936,"name":"Naamah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78941/","id":78941,"name":"Fetch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78955/","id":78955,"name":"Shattered God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78960/","id":78960,"name":"Grey Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78994/","id":78994,"name":"The Guide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79015/","id":79015,"name":"Life"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79034/","id":79034,"name":"Penthesileia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79081/","id":79081,"name":"Kuurth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79101/","id":79101,"name":"Flying Buttress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79205/","id":79205,"name":"Wendigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79219/","id":79219,"name":"Verti-Cal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79220/","id":79220,"name":"Horizont-Al"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79226/","id":79226,"name":"Flabber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79230/","id":79230,"name":"The Tall Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79234/","id":79234,"name":"Ghaszaszh Nyirh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79246/","id":79246,"name":"Torment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79270/","id":79270,"name":"Sojourn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79272/","id":79272,"name":"Water Elemental"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79273/","id":79273,"name":"Kurrupt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79292/","id":79292,"name":"Cù Sìth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79294/","id":79294,"name":"Okami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79305/","id":79305,"name":"Abariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79313/","id":79313,"name":"Samsun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79370/","id":79370,"name":"Kiki Manito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79379/","id":79379,"name":"Akuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79428/","id":79428,"name":"Jack in the Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79430/","id":79430,"name":"One-Eyed Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79435/","id":79435,"name":"Sister Mary Helena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79454/","id":79454,"name":"Falki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79457/","id":79457,"name":"Sigmund"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79475/","id":79475,"name":"Morgan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79633/","id":79633,"name":"Zvilpogghua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79643/","id":79643,"name":"Robolactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79645/","id":79645,"name":"The Purge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79653/","id":79653,"name":"Skanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79673/","id":79673,"name":"Demogorgan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79719/","id":79719,"name":"Boraxis Megatheros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79783/","id":79783,"name":"Tooth Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79959/","id":79959,"name":"Exoristos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79965/","id":79965,"name":"Suriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80001/","id":80001,"name":"Juubi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80140/","id":80140,"name":"Veritas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80262/","id":80262,"name":"Dream Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80394/","id":80394,"name":"Sethe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80424/","id":80424,"name":"Macha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80425/","id":80425,"name":"Badb Catha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80428/","id":80428,"name":"Anthos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80454/","id":80454,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80455/","id":80455,"name":"Ambellina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80494/","id":80494,"name":"Ducra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80536/","id":80536,"name":"Librarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80560/","id":80560,"name":"Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80726/","id":80726,"name":"Nul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80760/","id":80760,"name":"S'aru the Proctor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80765/","id":80765,"name":"Den Vakre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80827/","id":80827,"name":"Madara Uchiha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80867/","id":80867,"name":"Aleka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80868/","id":80868,"name":"Dessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80883/","id":80883,"name":"Winter Moran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80911/","id":80911,"name":"Son of Morning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81091/","id":81091,"name":"Nezaral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81109/","id":81109,"name":"Kagrok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81133/","id":81133,"name":"Barrachus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81144/","id":81144,"name":"Rose of Purity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81154/","id":81154,"name":"Modebl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81168/","id":81168,"name":"Ehrthold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81325/","id":81325,"name":"The Red Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81476/","id":81476,"name":"Balduur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81478/","id":81478,"name":"Honir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81479/","id":81479,"name":"Ramses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81480/","id":81480,"name":"Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81645/","id":81645,"name":"Parrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81654/","id":81654,"name":"Anaximandro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81659/","id":81659,"name":"Trino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81660/","id":81660,"name":"The Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81661/","id":81661,"name":"Pandora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81705/","id":81705,"name":"Vanora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81731/","id":81731,"name":"Syn Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81779/","id":81779,"name":"Pandora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81790/","id":81790,"name":"Sweet Leilani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81852/","id":81852,"name":"Kalfu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81858/","id":81858,"name":"Erzulie Freda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81960/","id":81960,"name":"Skept"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81970/","id":81970,"name":"Deathgate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82044/","id":82044,"name":"Lennox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82130/","id":82130,"name":"Invictus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82172/","id":82172,"name":"Acheron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82236/","id":82236,"name":"God of the Razor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82272/","id":82272,"name":"Xitalu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82284/","id":82284,"name":"Horoam'ce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82286/","id":82286,"name":"Krokwel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82299/","id":82299,"name":"Mrs. Nyxly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82300/","id":82300,"name":"Raissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82328/","id":82328,"name":"South Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82416/","id":82416,"name":"Kibito Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82420/","id":82420,"name":"Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82503/","id":82503,"name":"Dante"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82504/","id":82504,"name":"Epiphany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82505/","id":82505,"name":"Silhouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82518/","id":82518,"name":"D-Void"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82562/","id":82562,"name":"Xenya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82595/","id":82595,"name":"Cain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82627/","id":82627,"name":"Valora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82628/","id":82628,"name":"Silver Tornado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82672/","id":82672,"name":"The Purple-Blue Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82673/","id":82673,"name":"Rachel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82678/","id":82678,"name":"Amos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82701/","id":82701,"name":"Gideon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82702/","id":82702,"name":"D'Orka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82706/","id":82706,"name":"Strife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82716/","id":82716,"name":"Koza'Rai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82720/","id":82720,"name":"Gozer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82737/","id":82737,"name":"The Green Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82744/","id":82744,"name":"Angelus's Familiar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82745/","id":82745,"name":"Darkus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82746/","id":82746,"name":"The Gray-Green Celestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82756/","id":82756,"name":"Beset"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82757/","id":82757,"name":"Electrolyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82758/","id":82758,"name":"Strobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82759/","id":82759,"name":"Teragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82760/","id":82760,"name":"Trance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82789/","id":82789,"name":"Vulcan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82791/","id":82791,"name":"Maelstrom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82792/","id":82792,"name":"Captain Constanta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82793/","id":82793,"name":"Hans Schmitt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82807/","id":82807,"name":"Bacchus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82835/","id":82835,"name":"Black Siddha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82857/","id":82857,"name":"Shazzan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82876/","id":82876,"name":"D'Grth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82877/","id":82877,"name":"Darren Dead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82878/","id":82878,"name":"Malachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82919/","id":82919,"name":"Twilight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83002/","id":83002,"name":"Limbo Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83062/","id":83062,"name":"Scythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83105/","id":83105,"name":"Bastard Zane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83116/","id":83116,"name":"Quarra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83117/","id":83117,"name":"Archor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83118/","id":83118,"name":"Tzodar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83161/","id":83161,"name":"Isis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83178/","id":83178,"name":"Shinikami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83252/","id":83252,"name":"Primo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83314/","id":83314,"name":"Judge Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83346/","id":83346,"name":"Living Nightmare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83351/","id":83351,"name":"Taweret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83354/","id":83354,"name":"Khnum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83366/","id":83366,"name":"Mizery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83374/","id":83374,"name":"Ragniel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83465/","id":83465,"name":"Hummingbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83503/","id":83503,"name":"Blizzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83504/","id":83504,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83505/","id":83505,"name":"Diablo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83506/","id":83506,"name":"Sauron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83507/","id":83507,"name":"Armadon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83508/","id":83508,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83509/","id":83509,"name":"Vertigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83582/","id":83582,"name":"Enerjak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83599/","id":83599,"name":"Jacques Sangreal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83600/","id":83600,"name":"Bethany Luperci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83602/","id":83602,"name":"Theronia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83604/","id":83604,"name":"Ello"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83652/","id":83652,"name":"The Crystal One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83709/","id":83709,"name":"Shepherd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83712/","id":83712,"name":"Bonegrinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83725/","id":83725,"name":"Sigurd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83785/","id":83785,"name":"Serina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83795/","id":83795,"name":"Xurio Rio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83796/","id":83796,"name":"Uriel Rio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83797/","id":83797,"name":"Riodo Rio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83798/","id":83798,"name":"Krio Rio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83799/","id":83799,"name":"Ariel Rio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83816/","id":83816,"name":"Alpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83870/","id":83870,"name":"Majora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83871/","id":83871,"name":"Tikhaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83872/","id":83872,"name":"Fujin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83928/","id":83928,"name":"Rectomm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83929/","id":83929,"name":"Bogrol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84007/","id":84007,"name":"Denak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84016/","id":84016,"name":"Wynna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84026/","id":84026,"name":"Keenn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84027/","id":84027,"name":"Hyninn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84028/","id":84028,"name":"Glórienn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84029/","id":84029,"name":"Azgher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84030/","id":84030,"name":"Allihanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84031/","id":84031,"name":"Sszzaas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84032/","id":84032,"name":"Nimb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84033/","id":84033,"name":"Tenebra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84034/","id":84034,"name":"Khalmyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84035/","id":84035,"name":"Tauron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84036/","id":84036,"name":"Tanna-Toh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84037/","id":84037,"name":"Ragnar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84038/","id":84038,"name":"Grande Oceano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84039/","id":84039,"name":"Megalokk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84040/","id":84040,"name":"Marah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84041/","id":84041,"name":"Lin-Wu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84042/","id":84042,"name":"Lena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84043/","id":84043,"name":"Valkaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84044/","id":84044,"name":"Thyatis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84059/","id":84059,"name":"Areto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84076/","id":84076,"name":"Umbra Sprite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84078/","id":84078,"name":"Fisher King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84082/","id":84082,"name":"Emil Grackleflint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84083/","id":84083,"name":"Piet Grackleflint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84084/","id":84084,"name":"Lazlo Grackleflint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84085/","id":84085,"name":"Radu Grackleflint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84086/","id":84086,"name":"Stanis Grackleflint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84087/","id":84087,"name":"Master of the Hunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84099/","id":84099,"name":"Old Jack Crow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84106/","id":84106,"name":"Captain Rene Deschamps"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84107/","id":84107,"name":"Deputy Carl Frears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84191/","id":84191,"name":"Serpentina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84196/","id":84196,"name":"Asura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84232/","id":84232,"name":"Dhananjay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84239/","id":84239,"name":"Master Mayhem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84246/","id":84246,"name":"King Korozon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84256/","id":84256,"name":"Outcast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84273/","id":84273,"name":"The Celestial Pharaoh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84334/","id":84334,"name":"Modi Thorson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84362/","id":84362,"name":"Orobas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84363/","id":84363,"name":"Verdelet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84371/","id":84371,"name":"HIM"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84502/","id":84502,"name":"Purgatory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84555/","id":84555,"name":"Mördare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84674/","id":84674,"name":"Guledig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84705/","id":84705,"name":"Grimnismal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84744/","id":84744,"name":"Yavana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84745/","id":84745,"name":"Aquila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84771/","id":84771,"name":"Clarisse La Rue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84810/","id":84810,"name":"The Horsemaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85009/","id":85009,"name":"Master Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85051/","id":85051,"name":"Void-Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85071/","id":85071,"name":"Queen of Spades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85075/","id":85075,"name":"Mother Earth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85081/","id":85081,"name":"Maria Mendoza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85122/","id":85122,"name":"Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85133/","id":85133,"name":"Miss Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85141/","id":85141,"name":"Krampus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85145/","id":85145,"name":"Innocence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85147/","id":85147,"name":"Fel Yaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85148/","id":85148,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85158/","id":85158,"name":"Barr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85162/","id":85162,"name":"Nyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85213/","id":85213,"name":"Wieland Lorst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85215/","id":85215,"name":"Darius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85221/","id":85221,"name":"Lu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85251/","id":85251,"name":"Splitlip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85300/","id":85300,"name":"Gojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85301/","id":85301,"name":"Tilismdev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85366/","id":85366,"name":"Sir Sigmoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85385/","id":85385,"name":"Runesmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85388/","id":85388,"name":"Regina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85408/","id":85408,"name":"Xellos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85411/","id":85411,"name":"Demon Dragon King Gaav"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85418/","id":85418,"name":"Lizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85488/","id":85488,"name":"Kento Canto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85620/","id":85620,"name":"Thunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85634/","id":85634,"name":"Ikari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85635/","id":85635,"name":"Zetsobou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85636/","id":85636,"name":"Kanki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85653/","id":85653,"name":"Grigory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85666/","id":85666,"name":"Brok the Crusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85667/","id":85667,"name":"Drom the Spirit Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85668/","id":85668,"name":"Galp of the Steel Arm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85669/","id":85669,"name":"Tyr of the Blinding Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85675/","id":85675,"name":"Quor'toth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85692/","id":85692,"name":"Rot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85807/","id":85807,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85810/","id":85810,"name":"Law"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85869/","id":85869,"name":"White Tiger God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85887/","id":85887,"name":"Agent Larrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85924/","id":85924,"name":"Celestial Toymaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85925/","id":85925,"name":"Jerry Dandrige"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85926/","id":85926,"name":"Regine Dandrige"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86050/","id":86050,"name":"Black Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86068/","id":86068,"name":"Kuja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86088/","id":86088,"name":"Crackers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86123/","id":86123,"name":"Siracca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86149/","id":86149,"name":"First Born"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86177/","id":86177,"name":"Redeemer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86215/","id":86215,"name":"Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86316/","id":86316,"name":"The Sith Emperor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86323/","id":86323,"name":"Shmyg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86324/","id":86324,"name":"Goriman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86325/","id":86325,"name":"Zorek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86373/","id":86373,"name":"Vyndktvx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86449/","id":86449,"name":"Fatin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86452/","id":86452,"name":"Starkiller Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86614/","id":86614,"name":"West Wind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86615/","id":86615,"name":"East Wind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86616/","id":86616,"name":"South Wind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86622/","id":86622,"name":"Peter Piper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86684/","id":86684,"name":"Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86730/","id":86730,"name":"Jonah Wright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86767/","id":86767,"name":"Raziel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86769/","id":86769,"name":"Ellisien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86772/","id":86772,"name":"Tokage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86780/","id":86780,"name":"Stocking"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86781/","id":86781,"name":"Panty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86807/","id":86807,"name":"Milan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86868/","id":86868,"name":"Metra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86896/","id":86896,"name":"Derwyddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86964/","id":86964,"name":"Tengu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87000/","id":87000,"name":"Sol Invictus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87010/","id":87010,"name":"Perpetu-Hedron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87050/","id":87050,"name":"Spring-Heeled Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87131/","id":87131,"name":"Alf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87132/","id":87132,"name":"Burt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87172/","id":87172,"name":"Urriard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87173/","id":87173,"name":"Slissat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87174/","id":87174,"name":"Fara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87192/","id":87192,"name":"Aerndis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87193/","id":87193,"name":"Arnor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87194/","id":87194,"name":"Falligar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87227/","id":87227,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87259/","id":87259,"name":"Janemba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87298/","id":87298,"name":"Glimda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87316/","id":87316,"name":"Garrtak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87317/","id":87317,"name":"Selena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87320/","id":87320,"name":"Hinkon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87335/","id":87335,"name":"Shadrak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87347/","id":87347,"name":"Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87495/","id":87495,"name":"Kryptos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87497/","id":87497,"name":"The Infernal One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87500/","id":87500,"name":"Avaddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87501/","id":87501,"name":"Gorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87502/","id":87502,"name":"Nebezil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87530/","id":87530,"name":"Charlie Llama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87724/","id":87724,"name":"Vorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87731/","id":87731,"name":"Cassandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87840/","id":87840,"name":"Madame Nature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87879/","id":87879,"name":"Mister Eleven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87947/","id":87947,"name":"Thoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87992/","id":87992,"name":"Flame King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87993/","id":87993,"name":"Devilsh Devourer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88002/","id":88002,"name":"Ceto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88011/","id":88011,"name":"Hunson Abadeer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88076/","id":88076,"name":"Bodvar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88077/","id":88077,"name":"Einhar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88078/","id":88078,"name":"Svip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88083/","id":88083,"name":"Irkalla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88086/","id":88086,"name":"Zanthos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88099/","id":88099,"name":"Ebon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88100/","id":88100,"name":"Nartanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88113/","id":88113,"name":"Atla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88209/","id":88209,"name":"Ulfrin the Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88210/","id":88210,"name":"Norn Hag "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88255/","id":88255,"name":"Jade Yashiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88287/","id":88287,"name":"Gigabyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88345/","id":88345,"name":"Vetis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88368/","id":88368,"name":"Dire-Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88544/","id":88544,"name":"Zeke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88572/","id":88572,"name":"Pazu Pinder Pol "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88608/","id":88608,"name":"Aldvi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88609/","id":88609,"name":"Arnleif"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88610/","id":88610,"name":"Balda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88611/","id":88611,"name":"Daggaerdh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88612/","id":88612,"name":"Disthora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88614/","id":88614,"name":"Hermotha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88617/","id":88617,"name":"Sigotta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88687/","id":88687,"name":"Barbatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88692/","id":88692,"name":"Bellona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88774/","id":88774,"name":"Bartuzan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88779/","id":88779,"name":"Baffort Rakshor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88794/","id":88794,"name":"Great Forest Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88803/","id":88803,"name":"Sin Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88804/","id":88804,"name":"Nightmare Nurse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88935/","id":88935,"name":"Tomoko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89015/","id":89015,"name":"The Rainbow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89058/","id":89058,"name":"Circe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89060/","id":89060,"name":"T:D:H:D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89554/","id":89554,"name":"Scanty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89555/","id":89555,"name":"Kneesocks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89557/","id":89557,"name":"Will o' the Wisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89566/","id":89566,"name":"Escalate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89608/","id":89608,"name":"Idris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89638/","id":89638,"name":"The Other"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89742/","id":89742,"name":"Oh-Etsu Nimaiya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89761/","id":89761,"name":"Maslun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90186/","id":90186,"name":"Tenchi Masaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90194/","id":90194,"name":"Rain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90196/","id":90196,"name":"Daegon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90320/","id":90320,"name":"Iblis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90395/","id":90395,"name":"Tenjirō Kirinji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90396/","id":90396,"name":"Senshumaru Shutara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90397/","id":90397,"name":"Oshō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90412/","id":90412,"name":"Kūkaku Shiba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90454/","id":90454,"name":"Laord of the Hunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90470/","id":90470,"name":"Carrion Crow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90513/","id":90513,"name":"Kaiyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90518/","id":90518,"name":"Abyss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90551/","id":90551,"name":"Hope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90552/","id":90552,"name":"Britannia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90553/","id":90553,"name":"Marianne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90579/","id":90579,"name":"Luders Friegen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90737/","id":90737,"name":"Reiō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90936/","id":90936,"name":"Kyubey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90966/","id":90966,"name":"World Turtle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90967/","id":90967,"name":"Mara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91038/","id":91038,"name":"Bacuchara Mata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91079/","id":91079,"name":"Amakusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91106/","id":91106,"name":"Genjuumaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91184/","id":91184,"name":"Joya "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91198/","id":91198,"name":"The Wanderer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91230/","id":91230,"name":"Cosmoses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91231/","id":91231,"name":"Black Sabbyth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91381/","id":91381,"name":"The Beguiler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91407/","id":91407,"name":"Katagiri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91443/","id":91443,"name":"Marejirosaburo Omaeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91445/","id":91445,"name":"Akon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91446/","id":91446,"name":"Tetsuzaemon Iba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91453/","id":91453,"name":"Tyrus the Terrible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91474/","id":91474,"name":"Katherine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91475/","id":91475,"name":"Raenis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91545/","id":91545,"name":"The Celestial Gardener"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91597/","id":91597,"name":"Time Agent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91605/","id":91605,"name":"Agathon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91623/","id":91623,"name":"Kaos Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91672/","id":91672,"name":"Wick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91773/","id":91773,"name":"Foxy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91806/","id":91806,"name":"Haiganu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91823/","id":91823,"name":"Bandrhude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91847/","id":91847,"name":"Kah-Tah-Den"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91856/","id":91856,"name":"Kharis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91916/","id":91916,"name":"All-Devourer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91951/","id":91951,"name":"Argog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92054/","id":92054,"name":"Russell Daboia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92134/","id":92134,"name":"Harmattan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92254/","id":92254,"name":"The Prince of Good"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92285/","id":92285,"name":"Ice King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92348/","id":92348,"name":"Clot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92398/","id":92398,"name":"Sylvanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92424/","id":92424,"name":"Pleistoros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92425/","id":92425,"name":"Gebeleizis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92517/","id":92517,"name":"Adam I"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92638/","id":92638,"name":"Galactic Axe Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92715/","id":92715,"name":"Tsubaki Shinra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92749/","id":92749,"name":"Negative Forbush Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92750/","id":92750,"name":"Angel of Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92763/","id":92763,"name":"Yugam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92777/","id":92777,"name":"Sir Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92860/","id":92860,"name":"Anqi Sheng"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92886/","id":92886,"name":"Demona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92924/","id":92924,"name":"Valhallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92928/","id":92928,"name":"Demongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92942/","id":92942,"name":"Atra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92943/","id":92943,"name":"Antilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92944/","id":92944,"name":"Phraug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92945/","id":92945,"name":"Nolem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92986/","id":92986,"name":"Hakeldama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93062/","id":93062,"name":"Sirzechs Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93081/","id":93081,"name":"Screwbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93144/","id":93144,"name":"Mitu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93199/","id":93199,"name":"East Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93411/","id":93411,"name":"Ion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93441/","id":93441,"name":"Dyrge of All Sorrows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93465/","id":93465,"name":"Spot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93553/","id":93553,"name":"Benjamin Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93616/","id":93616,"name":"Habaek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93621/","id":93621,"name":"Tae-eul-jin-in"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93622/","id":93622,"name":"Murah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93623/","id":93623,"name":"Nakbin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93668/","id":93668,"name":"Keres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93739/","id":93739,"name":"Lady Weeds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93822/","id":93822,"name":"The Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93850/","id":93850,"name":"Tom Harrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93943/","id":93943,"name":"The Great Devourer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93977/","id":93977,"name":"Terataya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94261/","id":94261,"name":"Magrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94333/","id":94333,"name":"Cloud God of Sasquatch Mountain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94471/","id":94471,"name":"Kamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94476/","id":94476,"name":"Jason Blood "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94568/","id":94568,"name":"Darth Malgus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94724/","id":94724,"name":"Lamashtu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94975/","id":94975,"name":"Blight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94991/","id":94991,"name":"Kutkh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95314/","id":95314,"name":"Hessia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95473/","id":95473,"name":"Bombshell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95486/","id":95486,"name":"Itaku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95490/","id":95490,"name":"Kiyone Kotetsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95540/","id":95540,"name":"Victoria "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95559/","id":95559,"name":"Zexoctal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95570/","id":95570,"name":"Battling Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95572/","id":95572,"name":"Pantros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95718/","id":95718,"name":"King of Limbs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95726/","id":95726,"name":"Oberoth'm'gozz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95764/","id":95764,"name":"Anya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95765/","id":95765,"name":"Lucien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95964/","id":95964,"name":"Eryx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96003/","id":96003,"name":"Suula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96025/","id":96025,"name":"Calculha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96090/","id":96090,"name":"No-Amun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96218/","id":96218,"name":"Kosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96223/","id":96223,"name":"Elbe Sister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96225/","id":96225,"name":"Rhine Sister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96229/","id":96229,"name":"Grynt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96230/","id":96230,"name":"Moon Sister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96231/","id":96231,"name":"Tigris Sister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96275/","id":96275,"name":"Pallas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96382/","id":96382,"name":"Saltire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96519/","id":96519,"name":"Galaxa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96681/","id":96681,"name":"Queen Xandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96745/","id":96745,"name":"Materna Minxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96832/","id":96832,"name":"Kuchisake-Onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96880/","id":96880,"name":"Bonnie Bennett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96976/","id":96976,"name":"Warrior Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97129/","id":97129,"name":"Baby Joe Sheppard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97130/","id":97130,"name":"Seamus McGuire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97216/","id":97216,"name":"Astra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97227/","id":97227,"name":"Ayida-Weddo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97416/","id":97416,"name":"Macaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97428/","id":97428,"name":"Althea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97443/","id":97443,"name":"Shiklah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97484/","id":97484,"name":"Thor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97508/","id":97508,"name":"Augus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97509/","id":97509,"name":"Yasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97512/","id":97512,"name":"Chibiterasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97534/","id":97534,"name":"Bowldarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97563/","id":97563,"name":"Asura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97590/","id":97590,"name":"Errata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97685/","id":97685,"name":"Melchior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97766/","id":97766,"name":"Amjad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97767/","id":97767,"name":"Baqir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97782/","id":97782,"name":"Numano Himemiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97841/","id":97841,"name":"Glykon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97881/","id":97881,"name":"The Minotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97913/","id":97913,"name":"K'ythri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98040/","id":98040,"name":"Andromeda "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98115/","id":98115,"name":"Ulysses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98227/","id":98227,"name":"Avia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98390/","id":98390,"name":"The Bane of Cluracan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98458/","id":98458,"name":"Flying Spaghetti Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98531/","id":98531,"name":"Ugo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98589/","id":98589,"name":"Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98850/","id":98850,"name":"Zagreus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99300/","id":99300,"name":"Tsukuyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99323/","id":99323,"name":"The Bogeyman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99364/","id":99364,"name":"Adramelech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99437/","id":99437,"name":"Lord Cumulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99494/","id":99494,"name":"Sargon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99495/","id":99495,"name":"Lugulbanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99496/","id":99496,"name":"Prince Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99500/","id":99500,"name":"Xander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99615/","id":99615,"name":"Symax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99674/","id":99674,"name":"Ego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99675/","id":99675,"name":"He Who Dreams"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99676/","id":99676,"name":"Infinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99707/","id":99707,"name":"La Siguanaba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99708/","id":99708,"name":"La Carreta Sin Bueyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99848/","id":99848,"name":"Cascade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99911/","id":99911,"name":"Poppo The Cunning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99912/","id":99912,"name":"Ollerus The Unmerciful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100092/","id":100092,"name":"Cerulean King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100117/","id":100117,"name":"Joshua Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100124/","id":100124,"name":"Never Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100203/","id":100203,"name":"Aquarius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100341/","id":100341,"name":"Wretched Polish Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100350/","id":100350,"name":"Outrider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100351/","id":100351,"name":"Archangel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100359/","id":100359,"name":"Forest Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100408/","id":100408,"name":"Scooby-Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100500/","id":100500,"name":"Pansy Smith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100502/","id":100502,"name":"Violet Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100589/","id":100589,"name":"Anvil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100630/","id":100630,"name":"Seraphim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100695/","id":100695,"name":"Monkey King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100756/","id":100756,"name":"Zidane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100805/","id":100805,"name":"Paimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100940/","id":100940,"name":"Andre Payne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100970/","id":100970,"name":"The Ghost Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101224/","id":101224,"name":"Forever Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101327/","id":101327,"name":"Ubik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101434/","id":101434,"name":"Ouroboros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101643/","id":101643,"name":"The Trickster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101656/","id":101656,"name":"Galaxorg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101676/","id":101676,"name":"Zeref Dragneel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101766/","id":101766,"name":"Nhut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101788/","id":101788,"name":"Natalie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101817/","id":101817,"name":"Lady Hel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101866/","id":101866,"name":"Aten Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101874/","id":101874,"name":"Phantasm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101922/","id":101922,"name":"Miki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102077/","id":102077,"name":"Sister Immaculata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102099/","id":102099,"name":"Yukio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102100/","id":102100,"name":"Aziza El Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102101/","id":102101,"name":"Grace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102102/","id":102102,"name":"Griffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102103/","id":102103,"name":"Hitomi Hachiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102192/","id":102192,"name":"Lord Jabu-Jabu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102260/","id":102260,"name":"Li'l Pan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102288/","id":102288,"name":"Malus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102495/","id":102495,"name":"Atli Wodendottir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102496/","id":102496,"name":"Frigg Wodendottir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102497/","id":102497,"name":"Ellisiv Wodendottir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102646/","id":102646,"name":"Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102958/","id":102958,"name":"Colecionador"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103227/","id":103227,"name":"Kerunnos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103258/","id":103258,"name":"Titanis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103302/","id":103302,"name":"Otr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103306/","id":103306,"name":"Regin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103365/","id":103365,"name":"Bezeruul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103435/","id":103435,"name":"Dark "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103691/","id":103691,"name":"Nike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103754/","id":103754,"name":"Thomas Mims"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103755/","id":103755,"name":"Gaby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103756/","id":103756,"name":"Sebastian Reed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103758/","id":103758,"name":"Idulnas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103787/","id":103787,"name":"Saci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103788/","id":103788,"name":"Coyote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103794/","id":103794,"name":"Arke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103796/","id":103796,"name":"Perses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103979/","id":103979,"name":"Davy Tenzer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103983/","id":103983,"name":"No-Name"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104054/","id":104054,"name":"Amorpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104296/","id":104296,"name":"Gorgonel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104344/","id":104344,"name":"Ixto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104358/","id":104358,"name":"Anamede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104465/","id":104465,"name":"The Women's Liberator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104492/","id":104492,"name":"Campe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104593/","id":104593,"name":"Chip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104652/","id":104652,"name":"Kali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104817/","id":104817,"name":"Damien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104834/","id":104834,"name":"Aatan-Soolu the Monster God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104919/","id":104919,"name":"Wonder Woman 1000000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104923/","id":104923,"name":"Kingdom Come Wonder Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104990/","id":104990,"name":"Magni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105182/","id":105182,"name":"Sadham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105184/","id":105184,"name":"Awadhi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105264/","id":105264,"name":"Kor Phaeron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105323/","id":105323,"name":"Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105329/","id":105329,"name":"The Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105330/","id":105330,"name":"The Reaper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105399/","id":105399,"name":"Deuce Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105403/","id":105403,"name":"Queen of Angels"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105746/","id":105746,"name":"Belia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105758/","id":105758,"name":"Beerus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105829/","id":105829,"name":"Maloker "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105859/","id":105859,"name":"The Norseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105891/","id":105891,"name":"Lucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105892/","id":105892,"name":"Sakhmet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105893/","id":105893,"name":"Urdr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105894/","id":105894,"name":"Amaterasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105932/","id":105932,"name":"The Morrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105933/","id":105933,"name":"Ananke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105934/","id":105934,"name":"Baal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105970/","id":105970,"name":"The Defacer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106337/","id":106337,"name":"Madripoor Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106358/","id":106358,"name":"Sveinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106426/","id":106426,"name":"Celaeno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106491/","id":106491,"name":"John Tower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106514/","id":106514,"name":"Terrana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106520/","id":106520,"name":"James"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106590/","id":106590,"name":"Mia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106700/","id":106700,"name":"Nanaue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106712/","id":106712,"name":"Thunderer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106811/","id":106811,"name":"Viking"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107063/","id":107063,"name":"Dame Merciless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107064/","id":107064,"name":"Hellmachine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107065/","id":107065,"name":"Lord Broken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107066/","id":107066,"name":"Demogorgunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107319/","id":107319,"name":"Helios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107365/","id":107365,"name":"The Processor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107464/","id":107464,"name":"Godiva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107465/","id":107465,"name":"Demise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107537/","id":107537,"name":"Masodik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107726/","id":107726,"name":"Baobhan Sith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107727/","id":107727,"name":"Brochan Weir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107733/","id":107733,"name":"Gugalanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107734/","id":107734,"name":"Antu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107860/","id":107860,"name":"Xmucane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107861/","id":107861,"name":"Xpiacoc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108015/","id":108015,"name":"Baphomet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108017/","id":108017,"name":"Minerva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108103/","id":108103,"name":"Coffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108120/","id":108120,"name":"Lord All-Blud the Inexorable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108121/","id":108121,"name":"Lady Vile the Goddess of Atrocities"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108122/","id":108122,"name":"Krawskin the Cruel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108179/","id":108179,"name":"Lord Ganok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108221/","id":108221,"name":"Hyalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108222/","id":108222,"name":"Malhedron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108223/","id":108223,"name":"Shadowfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108224/","id":108224,"name":"Uggha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108238/","id":108238,"name":"Adriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108350/","id":108350,"name":"Kamaji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108353/","id":108353,"name":"No-Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108354/","id":108354,"name":"Lin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108356/","id":108356,"name":"Radish Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108456/","id":108456,"name":"Kreator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108703/","id":108703,"name":"Aram Syn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108704/","id":108704,"name":"Mr. First"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108890/","id":108890,"name":"Arcanis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108891/","id":108891,"name":"Paternus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108956/","id":108956,"name":"Intri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108964/","id":108964,"name":"Najimi Ajimu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108974/","id":108974,"name":"Asurraj Shambhuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109171/","id":109171,"name":"Lucy Diamond Sky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109186/","id":109186,"name":"Aki-Onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109211/","id":109211,"name":"The Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109514/","id":109514,"name":"Luca Del Portenza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109538/","id":109538,"name":"Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109591/","id":109591,"name":"Pernida Parnkgjas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109680/","id":109680,"name":"Apokolips"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109687/","id":109687,"name":"Era"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109724/","id":109724,"name":"Nimraa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109725/","id":109725,"name":"Sydenn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109726/","id":109726,"name":"Ya'aka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109727/","id":109727,"name":"Zalkoat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109900/","id":109900,"name":"Neekta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110096/","id":110096,"name":"The Poet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110146/","id":110146,"name":"Ghia'ta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110167/","id":110167,"name":"Norfulthing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110182/","id":110182,"name":"Stanley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110183/","id":110183,"name":"Dia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110210/","id":110210,"name":"Metis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110252/","id":110252,"name":"Grandpa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110375/","id":110375,"name":"Sera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110376/","id":110376,"name":"Cha'sa'dra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110401/","id":110401,"name":"Atalanta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110415/","id":110415,"name":"Obelisk the Tormentor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110416/","id":110416,"name":"Slifer the Sky Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110417/","id":110417,"name":"The Winged Dragon of Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110508/","id":110508,"name":"Beelzebub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110581/","id":110581,"name":"Exodia the Forbidden One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110693/","id":110693,"name":"Pantheon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110694/","id":110694,"name":"Brahma Dess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110695/","id":110695,"name":"Derinoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110706/","id":110706,"name":"Inanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110832/","id":110832,"name":"Party God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110849/","id":110849,"name":"Ardora of Heart's Desire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110896/","id":110896,"name":"Azur Te"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110907/","id":110907,"name":"Evets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110921/","id":110921,"name":"Inferna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111017/","id":111017,"name":"Ari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111018/","id":111018,"name":"Karis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111061/","id":111061,"name":"Cthylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111332/","id":111332,"name":"Ichibē Hyōsube"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111541/","id":111541,"name":"Blinth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111554/","id":111554,"name":"Nemhain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111555/","id":111555,"name":"Neit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111694/","id":111694,"name":"The White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111695/","id":111695,"name":"The Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111696/","id":111696,"name":"The Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111697/","id":111697,"name":"The Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111726/","id":111726,"name":"Sentience of the Universe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111901/","id":111901,"name":"The Vortex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111938/","id":111938,"name":"Libitina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112030/","id":112030,"name":"Yūki Terumi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112247/","id":112247,"name":"Sin-Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112361/","id":112361,"name":"Flemeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112367/","id":112367,"name":"Rathraq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112518/","id":112518,"name":"Kotal Kahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112594/","id":112594,"name":"Superdemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112857/","id":112857,"name":"Gamble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113359/","id":113359,"name":"Mephisto Pheles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113361/","id":113361,"name":"Amaimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113375/","id":113375,"name":"Enchanthrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113376/","id":113376,"name":"Thumpa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113377/","id":113377,"name":"Killsandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113410/","id":113410,"name":"Antimache"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113447/","id":113447,"name":"Deathspawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113540/","id":113540,"name":"Melana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113541/","id":113541,"name":"Crisis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113607/","id":113607,"name":"Master Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113824/","id":113824,"name":"Devilfist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113891/","id":113891,"name":"Vlasphemia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114009/","id":114009,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114177/","id":114177,"name":"Kiviuq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114189/","id":114189,"name":"St'nn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114190/","id":114190,"name":"Jakk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114199/","id":114199,"name":"Primera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114211/","id":114211,"name":"Simon Vesper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114234/","id":114234,"name":"Ashura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114235/","id":114235,"name":"Yasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114280/","id":114280,"name":"Delphi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114281/","id":114281,"name":"Thesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114363/","id":114363,"name":"Zashiki-Warashi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114365/","id":114365,"name":"Ame-Warashi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114366/","id":114366,"name":"Neko-Musume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114579/","id":114579,"name":"Moloch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114580/","id":114580,"name":"Prometheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114600/","id":114600,"name":"The Harvester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114654/","id":114654,"name":"Divinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115022/","id":115022,"name":"Godhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115222/","id":115222,"name":"Woden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115267/","id":115267,"name":"Nisos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115335/","id":115335,"name":"Hellion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115358/","id":115358,"name":"Harshem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115429/","id":115429,"name":"Quetzalpetlatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115430/","id":115430,"name":"Silenus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115496/","id":115496,"name":"Kurukulla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115612/","id":115612,"name":"Lucia, Infernicus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115613/","id":115613,"name":"Zhsmael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115614/","id":115614,"name":"Inquisitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115625/","id":115625,"name":"Empty Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115649/","id":115649,"name":"Dionysus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115716/","id":115716,"name":"Caretaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115718/","id":115718,"name":"Crateis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115732/","id":115732,"name":"Pralaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115738/","id":115738,"name":"Karaku, The Volcano God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115742/","id":115742,"name":"Ikkondrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115783/","id":115783,"name":"Senta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115829/","id":115829,"name":"Ismael the Deceiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115978/","id":115978,"name":"Acantha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116013/","id":116013,"name":"Pythia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116017/","id":116017,"name":"Timandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116025/","id":116025,"name":"Calyce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116026/","id":116026,"name":"Consivia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116027/","id":116027,"name":"Egeria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116028/","id":116028,"name":"Mnemosyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116029/","id":116029,"name":"Phthia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116030/","id":116030,"name":"Venilia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116033/","id":116033,"name":"Oenone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116036/","id":116036,"name":"Lydia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116037/","id":116037,"name":"Carya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116045/","id":116045,"name":"Meda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116079/","id":116079,"name":"Clio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116080/","id":116080,"name":"Ismure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116082/","id":116082,"name":"Dyctinna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116101/","id":116101,"name":"Hellen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116102/","id":116102,"name":"Danthis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116111/","id":116111,"name":"Jocasta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116112/","id":116112,"name":"Helen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116137/","id":116137,"name":"Aagog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116141/","id":116141,"name":"Eudia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116142/","id":116142,"name":"Althesia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116143/","id":116143,"name":"Simone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116144/","id":116144,"name":"Alexis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116145/","id":116145,"name":"Dimita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116158/","id":116158,"name":"Echielias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116166/","id":116166,"name":"Sir Isaac Ray Peram Westcott"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116187/","id":116187,"name":"Nyrese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116189/","id":116189,"name":"Catalyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116190/","id":116190,"name":"Ale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116194/","id":116194,"name":"Carrisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116199/","id":116199,"name":"Callisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116213/","id":116213,"name":"Sadeh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116214/","id":116214,"name":"Tekla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116215/","id":116215,"name":"Sitra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116216/","id":116216,"name":"Iolan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116217/","id":116217,"name":"Danae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116218/","id":116218,"name":"Didiu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116220/","id":116220,"name":"Bryony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116221/","id":116221,"name":"Felicia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116222/","id":116222,"name":"Pallas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116223/","id":116223,"name":"Niobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116280/","id":116280,"name":"Helene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116281/","id":116281,"name":"Alpha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116287/","id":116287,"name":"Marta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116289/","id":116289,"name":"Gennes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116290/","id":116290,"name":"Agrippe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116291/","id":116291,"name":"Antinus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116350/","id":116350,"name":"The Volcano Goddess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116365/","id":116365,"name":"Phinea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116603/","id":116603,"name":"Saffire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116676/","id":116676,"name":"Venna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116783/","id":116783,"name":"The Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116814/","id":116814,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116821/","id":116821,"name":"Weisslogia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116822/","id":116822,"name":"Skiadrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116823/","id":116823,"name":"Metalicana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116844/","id":116844,"name":"Kokuton Shuu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116925/","id":116925,"name":"Morgana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117026/","id":117026,"name":"Malefor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117036/","id":117036,"name":"Gashadokuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117196/","id":117196,"name":"Daalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117304/","id":117304,"name":"Darklens"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117357/","id":117357,"name":"Black Mass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117591/","id":117591,"name":"Kylo Ren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117618/","id":117618,"name":"Orcus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117750/","id":117750,"name":"Arklothac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117758/","id":117758,"name":"Ometochtli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117906/","id":117906,"name":"Grail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117965/","id":117965,"name":"Myrina Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118179/","id":118179,"name":"Ogopogo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118180/","id":118180,"name":"Kohaku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118181/","id":118181,"name":"B. L. Bubba Crisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118187/","id":118187,"name":"Waterson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118266/","id":118266,"name":"Cetus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118305/","id":118305,"name":"Hermuz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118327/","id":118327,"name":"Slogutis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118328/","id":118328,"name":"Ragana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118355/","id":118355,"name":"Rio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118379/","id":118379,"name":"Shibou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118402/","id":118402,"name":"Riel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118543/","id":118543,"name":"Laussa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118613/","id":118613,"name":"Love"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118694/","id":118694,"name":"Dusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118695/","id":118695,"name":"Night"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118759/","id":118759,"name":"Queen Aclippe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118760/","id":118760,"name":"Charax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118965/","id":118965,"name":"Blythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118966/","id":118966,"name":"Haluk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119099/","id":119099,"name":"Thor the Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119425/","id":119425,"name":"Cailleach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119986/","id":119986,"name":"Jane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120131/","id":120131,"name":"Alphina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120133/","id":120133,"name":"The Void"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120186/","id":120186,"name":"J.P. Yorick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120199/","id":120199,"name":"Zeebub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120330/","id":120330,"name":"Lapetus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120481/","id":120481,"name":"Argox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120484/","id":120484,"name":"Blue Baron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120491/","id":120491,"name":"Lanawyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120659/","id":120659,"name":"Bloody Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120775/","id":120775,"name":"Azgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120792/","id":120792,"name":"Magali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120896/","id":120896,"name":"The Sun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120942/","id":120942,"name":"Mr. Kind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120943/","id":120943,"name":"Mr. Goode"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120982/","id":120982,"name":"Tarissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120989/","id":120989,"name":"Malachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121000/","id":121000,"name":"Mountain King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121095/","id":121095,"name":"Tara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121202/","id":121202,"name":"Nzykmulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121243/","id":121243,"name":"Marian Quin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121296/","id":121296,"name":"Horrace the Horrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121333/","id":121333,"name":"Meridian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121813/","id":121813,"name":"Keldegarde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121828/","id":121828,"name":"Seshat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121861/","id":121861,"name":"Slan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121927/","id":121927,"name":"Oraculum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121996/","id":121996,"name":"F'rahsti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122097/","id":122097,"name":"Smertae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122098/","id":122098,"name":"Cait"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122099/","id":122099,"name":"Riata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122230/","id":122230,"name":"Gaya: The Mentor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122233/","id":122233,"name":"Khaos: The Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122424/","id":122424,"name":"The Star Donkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122576/","id":122576,"name":"Mikra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122665/","id":122665,"name":"Freddy Chtonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122731/","id":122731,"name":"Khorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122733/","id":122733,"name":"Tzeentch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122734/","id":122734,"name":"God-Emperor of Mankind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122747/","id":122747,"name":"Slaanesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123076/","id":123076,"name":"Miz Bijou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123102/","id":123102,"name":"Coleridge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123173/","id":123173,"name":"Pati'"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123189/","id":123189,"name":"Tink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123299/","id":123299,"name":"Mynoghra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123380/","id":123380,"name":"Ceres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123517/","id":123517,"name":"Don Slime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123537/","id":123537,"name":"Champa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123645/","id":123645,"name":"Primogenitor "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123664/","id":123664,"name":"Eirene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123923/","id":123923,"name":"Haemosu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123957/","id":123957,"name":"Hell's Prophet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123960/","id":123960,"name":"Aron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124201/","id":124201,"name":"Anapel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124202/","id":124202,"name":"Ate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124226/","id":124226,"name":"Glauce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124240/","id":124240,"name":"Question (Trinity of Sin)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124327/","id":124327,"name":"Moridun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124344/","id":124344,"name":"Ahrimaan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124496/","id":124496,"name":"Rollins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124543/","id":124543,"name":"Draugr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124568/","id":124568,"name":"Anapa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124578/","id":124578,"name":"Ramor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124660/","id":124660,"name":"Marlinspike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124712/","id":124712,"name":"Ak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124842/","id":124842,"name":"Demonikka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124843/","id":124843,"name":"Malazaar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124844/","id":124844,"name":"Venomen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124845/","id":124845,"name":"Sergiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124966/","id":124966,"name":"Chichinika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125150/","id":125150,"name":"Kabyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125309/","id":125309,"name":"Dichara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125362/","id":125362,"name":"Anita Christ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125486/","id":125486,"name":"Nebelhexa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125553/","id":125553,"name":"Lady Crime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125556/","id":125556,"name":"Iblifika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125597/","id":125597,"name":"Ah-Muzencab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125601/","id":125601,"name":"Hunahpu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125663/","id":125663,"name":"Nefertari Hormakhet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125679/","id":125679,"name":"Ao Guang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125740/","id":125740,"name":"Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125823/","id":125823,"name":"Enbarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126144/","id":126144,"name":"Potato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126306/","id":126306,"name":"Maka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126379/","id":126379,"name":"Kitsune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126474/","id":126474,"name":"Explosion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126475/","id":126475,"name":"Gravitation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126483/","id":126483,"name":"Belatucadros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126485/","id":126485,"name":"Ness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126609/","id":126609,"name":"Takemikazuchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126615/","id":126615,"name":"Moppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126616/","id":126616,"name":"Drassus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126617/","id":126617,"name":"Ire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126618/","id":126618,"name":"Cryptomnesia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126619/","id":126619,"name":"Catastrophobia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126620/","id":126620,"name":"Horrorscope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126726/","id":126726,"name":"Xbalanque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127017/","id":127017,"name":"Shivering Jemmy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127018/","id":127018,"name":"Kilderkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127042/","id":127042,"name":"Angel of the Lord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127043/","id":127043,"name":"Hell Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127057/","id":127057,"name":"The Great Chaos Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127210/","id":127210,"name":"Hollie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127211/","id":127211,"name":"Denzel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127218/","id":127218,"name":"Anti-Beyonditor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127279/","id":127279,"name":"Tharmic Null"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127281/","id":127281,"name":"The Virgin of the Wall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127286/","id":127286,"name":"Mr. Hemlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127302/","id":127302,"name":"Orihime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127624/","id":127624,"name":"Pemphredo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127625/","id":127625,"name":"Deino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127626/","id":127626,"name":"Enyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127743/","id":127743,"name":"Gyūki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127744/","id":127744,"name":"Gagoze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127850/","id":127850,"name":"Nosferath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127860/","id":127860,"name":"The Voyager"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127889/","id":127889,"name":"Guardian Deity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127934/","id":127934,"name":"The Abyss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127943/","id":127943,"name":"Aotabō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127944/","id":127944,"name":"Shōkera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128034/","id":128034,"name":"Shastra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128035/","id":128035,"name":"Astron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128037/","id":128037,"name":"Arlok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128065/","id":128065,"name":"The Great Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128170/","id":128170,"name":"Horokoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128171/","id":128171,"name":"Serpos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128188/","id":128188,"name":"Fuxi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128193/","id":128193,"name":"Myshka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128296/","id":128296,"name":"Zalmoxis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128329/","id":128329,"name":"Algol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128514/","id":128514,"name":"Gabriel Belmont"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128911/","id":128911,"name":"Grimalkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129047/","id":129047,"name":"Ouroboros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129067/","id":129067,"name":"Mahishasura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129068/","id":129068,"name":"Great Peacemaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129232/","id":129232,"name":"Sequana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129242/","id":129242,"name":"Syksy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129289/","id":129289,"name":"Bird Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129313/","id":129313,"name":"Pitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129397/","id":129397,"name":"Frosty Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129407/","id":129407,"name":"Avatarex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129423/","id":129423,"name":"Necalli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129438/","id":129438,"name":"Humongous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129477/","id":129477,"name":"Kid Reaper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129782/","id":129782,"name":"Batsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129886/","id":129886,"name":"Barremargox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129887/","id":129887,"name":"Drax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130012/","id":130012,"name":"Jason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130195/","id":130195,"name":"Zeno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130288/","id":130288,"name":"Barra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130308/","id":130308,"name":"Celestial Destructor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130329/","id":130329,"name":"Lady Bandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130330/","id":130330,"name":"Kanekozo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130346/","id":130346,"name":"Maimai-Onba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130347/","id":130347,"name":"Fudō Myōō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130353/","id":130353,"name":"Shikeh Nyudo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130393/","id":130393,"name":"Antenmaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130465/","id":130465,"name":"Super Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130663/","id":130663,"name":"Fuwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130771/","id":130771,"name":"Beelzebub IV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130894/","id":130894,"name":"Castiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130967/","id":130967,"name":"Bhagadatta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131032/","id":131032,"name":"Corrie Volmaan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131033/","id":131033,"name":"Izzy Mercego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131290/","id":131290,"name":"Castalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131297/","id":131297,"name":"Wonder-Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131373/","id":131373,"name":"Chronos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131457/","id":131457,"name":"Black Goku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131482/","id":131482,"name":"Laughing Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131808/","id":131808,"name":"Nasse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131817/","id":131817,"name":"Luta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131819/","id":131819,"name":"Misa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131886/","id":131886,"name":"Lepel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131927/","id":131927,"name":"Jami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131929/","id":131929,"name":"Egura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131930/","id":131930,"name":"Emaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132006/","id":132006,"name":"Gorōzaemon Yamamoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132185/","id":132185,"name":"Cupiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132186/","id":132186,"name":"Kokoro Roko Rokoko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132260/","id":132260,"name":"Urzkartaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132351/","id":132351,"name":"Star God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132355/","id":132355,"name":"Sylph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132396/","id":132396,"name":"Multiple Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132425/","id":132425,"name":"Paree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132438/","id":132438,"name":"Ellis Lapesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132444/","id":132444,"name":"Bushyasta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132460/","id":132460,"name":"E’Rah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132473/","id":132473,"name":"Gäap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132474/","id":132474,"name":"Sargatanas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132492/","id":132492,"name":"Nahradhan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132546/","id":132546,"name":"Mohau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132611/","id":132611,"name":"Aka Manah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132687/","id":132687,"name":"Hasan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132689/","id":132689,"name":"Succubus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132692/","id":132692,"name":"The Creator God of Light, Horakhty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132756/","id":132756,"name":"Gusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132759/","id":132759,"name":"Salamander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132788/","id":132788,"name":"Agaliarept"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132792/","id":132792,"name":"Ryūga Genshiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132807/","id":132807,"name":"Apaosha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132812/","id":132812,"name":"Satanachia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132817/","id":132817,"name":"Supreme Kai of Time"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132842/","id":132842,"name":"Fleurety"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132846/","id":132846,"name":"Murmur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132852/","id":132852,"name":"Demigra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132853/","id":132853,"name":"Towa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132862/","id":132862,"name":"West Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132863/","id":132863,"name":"Grand Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132881/","id":132881,"name":"Zamasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132882/","id":132882,"name":"Gowasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132884/","id":132884,"name":"Toaowquid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133192/","id":133192,"name":"Checker Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133308/","id":133308,"name":"God-Train"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133328/","id":133328,"name":"Mister Misery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133552/","id":133552,"name":"Paen-Umbra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133625/","id":133625,"name":"Akuto Sai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133683/","id":133683,"name":"Lord High Librarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133692/","id":133692,"name":"Numagozen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133788/","id":133788,"name":"Koma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133836/","id":133836,"name":"Iczer-1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133869/","id":133869,"name":"Mechikabura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133998/","id":133998,"name":"Tokitoki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134011/","id":134011,"name":"Goddess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134018/","id":134018,"name":"þórr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134087/","id":134087,"name":"Water Lily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134122/","id":134122,"name":"Mastema"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134173/","id":134173,"name":"Eramis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134174/","id":134174,"name":"Akpaxa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134175/","id":134175,"name":"Pannix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134218/","id":134218,"name":"Mother Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134318/","id":134318,"name":"Sirian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134378/","id":134378,"name":"Night"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134381/","id":134381,"name":"World War I Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134392/","id":134392,"name":"Cloud of Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134396/","id":134396,"name":"Exdeath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134398/","id":134398,"name":"Kefka Palazzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134408/","id":134408,"name":"Zyana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134434/","id":134434,"name":"David Jehoahaz Abraham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134566/","id":134566,"name":"Grand Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134599/","id":134599,"name":"Romm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134677/","id":134677,"name":"Ravenous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134711/","id":134711,"name":"Chivil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134730/","id":134730,"name":"Agarafelgor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134732/","id":134732,"name":"Galaxseal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134755/","id":134755,"name":"Bingo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134756/","id":134756,"name":"Hellion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134814/","id":134814,"name":"Ikusa-Tsunagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134816/","id":134816,"name":"Celestial Spirit King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134897/","id":134897,"name":"Gleedle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135019/","id":135019,"name":"Balta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135047/","id":135047,"name":"Vodyanar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135066/","id":135066,"name":"Lala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135092/","id":135092,"name":"Rory Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135133/","id":135133,"name":"Torgo The Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135273/","id":135273,"name":"Jade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135299/","id":135299,"name":"Maui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135437/","id":135437,"name":"Slather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135438/","id":135438,"name":"Chatter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135440/","id":135440,"name":"Pale Herder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135527/","id":135527,"name":"Tarurūto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135538/","id":135538,"name":"Tenten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135636/","id":135636,"name":"Taizō Momote"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135662/","id":135662,"name":"Captain USA"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135670/","id":135670,"name":"Rika Hanayama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135684/","id":135684,"name":"Satan Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135708/","id":135708,"name":"Torakuma-Dōji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135709/","id":135709,"name":"Hoshikuma-Dōji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135710/","id":135710,"name":"Kuma-Dōji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135711/","id":135711,"name":"Kaminari Gorosuke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135754/","id":135754,"name":"Prophecy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135828/","id":135828,"name":"Morasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135836/","id":135836,"name":"Koume Hanayama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135873/","id":135873,"name":"Yael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135939/","id":135939,"name":"N'Hal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135942/","id":135942,"name":"Bellimyth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135943/","id":135943,"name":"Saphryne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136031/","id":136031,"name":"Foras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136145/","id":136145,"name":"Uncegila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136153/","id":136153,"name":"Chulyen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136262/","id":136262,"name":"Sharra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136263/","id":136263,"name":"Zhong Kui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136486/","id":136486,"name":"Anubis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136542/","id":136542,"name":"Poro Kurokami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136606/","id":136606,"name":"Fū"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136607/","id":136607,"name":"Rai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136623/","id":136623,"name":"Cream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136747/","id":136747,"name":"Lucoa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136786/","id":136786,"name":"Southern Supreme Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136788/","id":136788,"name":"Grand Supreme Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136815/","id":136815,"name":"Ruika Kagami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136917/","id":136917,"name":"Dūin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137317/","id":137317,"name":"Tsurara Oikawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137338/","id":137338,"name":"Cheap Trick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137594/","id":137594,"name":"Daji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137942/","id":137942,"name":"Thalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137943/","id":137943,"name":"Euphrosyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137944/","id":137944,"name":"Aglaea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137945/","id":137945,"name":"Zephyrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137981/","id":137981,"name":"Putine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137982/","id":137982,"name":"Gravy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138032/","id":138032,"name":"Suijin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138119/","id":138119,"name":"Urania"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138120/","id":138120,"name":"Euterpe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138141/","id":138141,"name":"Brother Sunbeam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138248/","id":138248,"name":"Technical Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138249/","id":138249,"name":"Mad Sweeney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138324/","id":138324,"name":"Avatar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138634/","id":138634,"name":"Chronos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138809/","id":138809,"name":"Erl-King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138831/","id":138831,"name":"Kokou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138833/","id":138833,"name":"Obatala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139001/","id":139001,"name":"Elli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139228/","id":139228,"name":"Shikhandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139348/","id":139348,"name":"Alitha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139464/","id":139464,"name":"Demon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139474/","id":139474,"name":"Wang Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139510/","id":139510,"name":"Girl Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139537/","id":139537,"name":"Tze-Yo-Tzuh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139541/","id":139541,"name":"Zhu Bajie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139559/","id":139559,"name":"Guanyin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139565/","id":139565,"name":"Mu Guiying"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139566/","id":139566,"name":"Zhang Fei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140054/","id":140054,"name":"Spinning Jemmy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140055/","id":140055,"name":"Zorya Polunochnaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140144/","id":140144,"name":"Lelania"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140151/","id":140151,"name":"Zorya Utrennaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140152/","id":140152,"name":"Zorya Vechernyaya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140186/","id":140186,"name":"First Firmament"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140221/","id":140221,"name":"Raijin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140279/","id":140279,"name":"Mr. Chimney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140300/","id":140300,"name":"Susanoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140303/","id":140303,"name":"Brunhilde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140304/","id":140304,"name":"Eros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140305/","id":140305,"name":"Phobos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140306/","id":140306,"name":"Nike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140308/","id":140308,"name":"Eir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140311/","id":140311,"name":"Great Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140419/","id":140419,"name":"Aka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140671/","id":140671,"name":"Calleen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140710/","id":140710,"name":"Navath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140720/","id":140720,"name":"Kitsune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140755/","id":140755,"name":"Author"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140855/","id":140855,"name":"Kuzuko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140856/","id":140856,"name":"Hu Li Jing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140882/","id":140882,"name":"Ghost Fist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140883/","id":140883,"name":"Red Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140935/","id":140935,"name":"Dogura Magura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140936/","id":140936,"name":"Ranpoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140939/","id":140939,"name":"Lewis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140940/","id":140940,"name":"Petan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140941/","id":140941,"name":"Sengan Majin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140945/","id":140945,"name":"Hameln"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140946/","id":140946,"name":"Baltec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140947/","id":140947,"name":"Gonbesu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140971/","id":140971,"name":"Jeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140988/","id":140988,"name":"Leica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140989/","id":140989,"name":"Hibiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141108/","id":141108,"name":"Harebare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141138/","id":141138,"name":"Shen Gongbao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141139/","id":141139,"name":"Yuanshi Tianzun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141141/","id":141141,"name":"Pipa Jing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141142/","id":141142,"name":"Chen Tong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141145/","id":141145,"name":"Jiutou Zhiji Jing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141149/","id":141149,"name":"Li Jing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141151/","id":141151,"name":"Taiyi Zhenren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141152/","id":141152,"name":"Yang Jian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141240/","id":141240,"name":"Leizhenzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141242/","id":141242,"name":"Wen Zhong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141292/","id":141292,"name":"Namazu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141345/","id":141345,"name":"Joshua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141443/","id":141443,"name":"Avalokiteśvara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141462/","id":141462,"name":"Kshitigarbha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141495/","id":141495,"name":"Jinzha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141496/","id":141496,"name":"Muzha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141511/","id":141511,"name":"Hunter Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141522/","id":141522,"name":"Tongtian Jiaozhu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141566/","id":141566,"name":"Chong Heihu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141572/","id":141572,"name":"Yunzhongzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141593/","id":141593,"name":"Zhao Gongming"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141596/","id":141596,"name":"Deng Chan-Yu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141601/","id":141601,"name":"Yao Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141621/","id":141621,"name":"Herusii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141622/","id":141622,"name":"Yunker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141623/","id":141623,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141677/","id":141677,"name":"Madonna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141678/","id":141678,"name":"Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141679/","id":141679,"name":"Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141688/","id":141688,"name":"Aamnon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141742/","id":141742,"name":"Puxian Zhenren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141743/","id":141743,"name":"Zhang Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141747/","id":141747,"name":"Yu-Ding Zhenren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141780/","id":141780,"name":"Sindr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141800/","id":141800,"name":"Sun Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141807/","id":141807,"name":"Dong Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141809/","id":141809,"name":"Yuan Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141816/","id":141816,"name":"Zhao Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141817/","id":141817,"name":"Wei-Hu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141819/","id":141819,"name":"Jin-Guang Sheng-Mu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141855/","id":141855,"name":"Bai Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141856/","id":141856,"name":"Qin Tian-Jun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141927/","id":141927,"name":"Rimuru Tempest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141984/","id":141984,"name":"Daode Tianzun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142058/","id":142058,"name":"The Merciless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142060/","id":142060,"name":"Nüwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142133/","id":142133,"name":"Randeng Daoren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142165/","id":142165,"name":"Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142166/","id":142166,"name":"Palette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142217/","id":142217,"name":"Eye-God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142324/","id":142324,"name":"Promoter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142354/","id":142354,"name":"Jiren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142655/","id":142655,"name":"Asclepia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142670/","id":142670,"name":"Grandmaster Meio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142687/","id":142687,"name":"Awamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142688/","id":142688,"name":"Iwne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142689/","id":142689,"name":"Anato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142690/","id":142690,"name":"Sawar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142691/","id":142691,"name":"Heles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142692/","id":142692,"name":"Pell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142693/","id":142693,"name":"Kampari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142694/","id":142694,"name":"Mosco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142695/","id":142695,"name":"Eyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142696/","id":142696,"name":"Conic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142697/","id":142697,"name":"Quitela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142698/","id":142698,"name":"Kuru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142699/","id":142699,"name":"Cucatail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142700/","id":142700,"name":"Arack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142701/","id":142701,"name":"Ogma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142702/","id":142702,"name":"Korun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142703/","id":142703,"name":"Liquiir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142704/","id":142704,"name":"Ille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142705/","id":142705,"name":"Mohito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142706/","id":142706,"name":"Sidra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142707/","id":142707,"name":"Roh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142708/","id":142708,"name":"Kusu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142709/","id":142709,"name":"Rumsshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142710/","id":142710,"name":"Marcarita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142711/","id":142711,"name":"Belmod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142712/","id":142712,"name":"Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142713/","id":142713,"name":"Martinne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142714/","id":142714,"name":"Geene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142715/","id":142715,"name":"Agu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142889/","id":142889,"name":"Razan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142926/","id":142926,"name":"Laima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142945/","id":142945,"name":"Starlok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143070/","id":143070,"name":"Mokugyo Daruma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143071/","id":143071,"name":"Kubinashi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143087/","id":143087,"name":"Zen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143120/","id":143120,"name":"Kyuso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143148/","id":143148,"name":"Ryōta Neko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143149/","id":143149,"name":"Mezumaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143150/","id":143150,"name":"Gozumaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143237/","id":143237,"name":"Rag'Mux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143246/","id":143246,"name":"Is'nana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143263/","id":143263,"name":"Scamander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143273/","id":143273,"name":"Inugamigyōbu Tamazuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143295/","id":143295,"name":"Shōei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143305/","id":143305,"name":"Somnambula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143311/","id":143311,"name":"Asmodon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143327/","id":143327,"name":"The Shambler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143328/","id":143328,"name":"Kafir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143631/","id":143631,"name":"Dai Zong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143637/","id":143637,"name":"Setsura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143679/","id":143679,"name":"Mother Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143715/","id":143715,"name":"Lin Chong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143716/","id":143716,"name":"Liu Tang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143717/","id":143717,"name":"Wang Dingliu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143718/","id":143718,"name":"Jiang Jing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143719/","id":143719,"name":"Zhang Qing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143720/","id":143720,"name":"Sun Erniang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143721/","id":143721,"name":"Song Jiang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143734/","id":143734,"name":"Shi Jin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143735/","id":143735,"name":"Hu Sanniang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143736/","id":143736,"name":"Chao Gai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143737/","id":143737,"name":"Wu Yong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143739/","id":143739,"name":"Zhu Gui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143743/","id":143743,"name":"Dryad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143744/","id":143744,"name":"Knightshade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143745/","id":143745,"name":"Oak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143747/","id":143747,"name":"Fenris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143772/","id":143772,"name":"Crusader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143782/","id":143782,"name":"Du Qian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143783/","id":143783,"name":"Akagappa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143784/","id":143784,"name":"Song Wan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143787/","id":143787,"name":"Kidomaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143788/","id":143788,"name":"Awashima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143795/","id":143795,"name":"Minagoroshi Jizo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144155/","id":144155,"name":"Mimir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144268/","id":144268,"name":"Disappointment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144456/","id":144456,"name":"Melan Collie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144473/","id":144473,"name":"Raijin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144506/","id":144506,"name":"Yamabuki Otome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144508/","id":144508,"name":"Hawk God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144513/","id":144513,"name":"Tōryanse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144529/","id":144529,"name":"Enchō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144530/","id":144530,"name":"Yanagida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144531/","id":144531,"name":"Kyōsai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144534/","id":144534,"name":"Willard H. Wright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144626/","id":144626,"name":"Nokaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144643/","id":144643,"name":"Raiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144644/","id":144644,"name":"Tamasaburo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144707/","id":144707,"name":"Rūaumoko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144971/","id":144971,"name":"Dassai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145008/","id":145008,"name":"Superhero G"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145052/","id":145052,"name":"Voyager"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145114/","id":145114,"name":"Shishime Iihiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145427/","id":145427,"name":"Astra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145433/","id":145433,"name":"Cimmeria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145501/","id":145501,"name":"Timber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145502/","id":145502,"name":"Stray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145503/","id":145503,"name":"Reload"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145713/","id":145713,"name":"Challenger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145734/","id":145734,"name":"Watatsumi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145737/","id":145737,"name":"Sarutahiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145745/","id":145745,"name":"Ninigi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145905/","id":145905,"name":"Tempus Fuginaut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146060/","id":146060,"name":"Troy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146068/","id":146068,"name":"Crone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146137/","id":146137,"name":"Unbled"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146224/","id":146224,"name":"Heryshaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146225/","id":146225,"name":"Syrinx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146226/","id":146226,"name":"Hermaphroditus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146227/","id":146227,"name":"Maia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146276/","id":146276,"name":"Imadre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146363/","id":146363,"name":"Keegan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146377/","id":146377,"name":"Being X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146457/","id":146457,"name":"Velaska"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146578/","id":146578,"name":"Jacob Free"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146587/","id":146587,"name":"Kumara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146687/","id":146687,"name":"Scythian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146814/","id":146814,"name":"Bitterhand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146826/","id":146826,"name":"Ahl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146891/","id":146891,"name":"Stormdrake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146993/","id":146993,"name":"Michael Fleet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147026/","id":147026,"name":"The Salesman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147443/","id":147443,"name":"Acitua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147447/","id":147447,"name":"The Creeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147548/","id":147548,"name":"Bai Suzhen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147682/","id":147682,"name":"Alexstrasza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147847/","id":147847,"name":"Wisdom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148003/","id":148003,"name":"Faolan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148071/","id":148071,"name":"Koragg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148099/","id":148099,"name":"Angrir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148148/","id":148148,"name":"Raava"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148149/","id":148149,"name":"Vaatu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148240/","id":148240,"name":"Sila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148495/","id":148495,"name":"Karnell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148530/","id":148530,"name":"Mob God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148531/","id":148531,"name":"The God With No Name"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148533/","id":148533,"name":"Savage Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148626/","id":148626,"name":"Entropy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148627/","id":148627,"name":"Mystery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148628/","id":148628,"name":"Wonder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148673/","id":148673,"name":"King Best"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148723/","id":148723,"name":"Sargeras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148784/","id":148784,"name":"Bereaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148789/","id":148789,"name":"Chelsea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148790/","id":148790,"name":"Olympia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149119/","id":149119,"name":"Masterman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149130/","id":149130,"name":"Cleo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149185/","id":149185,"name":"The Monad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149257/","id":149257,"name":"Lord Crash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149285/","id":149285,"name":"Daillus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149462/","id":149462,"name":"Progenitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149463/","id":149463,"name":"Zgreb the Sorrower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149505/","id":149505,"name":"Upside Down Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149543/","id":149543,"name":"Flowa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149552/","id":149552,"name":"Knull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149567/","id":149567,"name":"Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149568/","id":149568,"name":"Tiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149569/","id":149569,"name":"Tortoise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149816/","id":149816,"name":"Angus Mac Og"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149823/","id":149823,"name":"Larzod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149838/","id":149838,"name":"King Vold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149844/","id":149844,"name":"Dr. Henry Killinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149871/","id":149871,"name":"Oni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149933/","id":149933,"name":"Communion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149934/","id":149934,"name":"Kill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150053/","id":150053,"name":"Abigail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150255/","id":150255,"name":"Ghost Rider 1,000,000 BC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150258/","id":150258,"name":"Chief Hellhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150433/","id":150433,"name":"Gotron the Agile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150434/","id":150434,"name":"Greithoth "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150467/","id":150467,"name":"Guntharr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150499/","id":150499,"name":"Empousa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150510/","id":150510,"name":"Hell-Driver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150563/","id":150563,"name":"Ghelmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150564/","id":150564,"name":"Agwel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150565/","id":150565,"name":"Aleda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150566/","id":150566,"name":"Jinmen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150571/","id":150571,"name":"Poirsenus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150572/","id":150572,"name":"Nafiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150673/","id":150673,"name":"Eoffren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150759/","id":150759,"name":"Warrior Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150874/","id":150874,"name":"Badaxe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150955/","id":150955,"name":"Constant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150956/","id":150956,"name":"Forever Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150971/","id":150971,"name":"Griever at the End of All Things"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151047/","id":151047,"name":"All-Widow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151164/","id":151164,"name":"Jymrsk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151227/","id":151227,"name":"Keep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151228/","id":151228,"name":"Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151229/","id":151229,"name":"Perpetua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151230/","id":151230,"name":"Mrs. Whatsit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151231/","id":151231,"name":"Mrs. Who"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151232/","id":151232,"name":"Mrs. Which"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151868/","id":151868,"name":"Skuld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151869/","id":151869,"name":"Verdandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151871/","id":151871,"name":"Set"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151872/","id":151872,"name":"Amon-Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151873/","id":151873,"name":"Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151931/","id":151931,"name":"Agwé"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151975/","id":151975,"name":"Pachamama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151984/","id":151984,"name":"Ēostre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151987/","id":151987,"name":"Mokk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152007/","id":152007,"name":"Captain Gall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152008/","id":152008,"name":"Commander Drogue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152009/","id":152009,"name":"Fleet Admiral Tyyde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152067/","id":152067,"name":"Yao Mo Jin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152147/","id":152147,"name":"Media"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152413/","id":152413,"name":"Pentigaar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152508/","id":152508,"name":"Callus the Void"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152565/","id":152565,"name":"Qareen "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152648/","id":152648,"name":"Iron Hammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152707/","id":152707,"name":"Old Scratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152863/","id":152863,"name":"Cendrée"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152864/","id":152864,"name":"Turgo of Nor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152902/","id":152902,"name":"Maldor the Malevolent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152903/","id":152903,"name":"Queen Morbidia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152904/","id":152904,"name":"Reflector Specter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152905/","id":152905,"name":"Zomba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152906/","id":152906,"name":"Bermuda Triangle Ghosts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152907/","id":152907,"name":"Nekara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152908/","id":152908,"name":"Marcella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152909/","id":152909,"name":"Time Slime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152910/","id":152910,"name":"Demondo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152911/","id":152911,"name":"Rankor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152912/","id":152912,"name":"Professor Phantazmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152913/","id":152913,"name":"Zimbulu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152929/","id":152929,"name":"Star Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153009/","id":153009,"name":"Chenoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153011/","id":153011,"name":"Aniwye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153018/","id":153018,"name":"Enki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153091/","id":153091,"name":"Lava Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153114/","id":153114,"name":"Sverrik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153165/","id":153165,"name":"Tae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153337/","id":153337,"name":"Shakpana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153604/","id":153604,"name":"Dark Elder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153613/","id":153613,"name":"Cosmic Ghost Rider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153678/","id":153678,"name":"One Below All"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153753/","id":153753,"name":"Atreus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153822/","id":153822,"name":"Gib"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153824/","id":153824,"name":"Caille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153825/","id":153825,"name":"Namma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153855/","id":153855,"name":"Pochita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153882/","id":153882,"name":"Tongar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153978/","id":153978,"name":"Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154060/","id":154060,"name":"Valknar the Exhumer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154074/","id":154074,"name":"The Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154109/","id":154109,"name":"Volsak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154129/","id":154129,"name":"Vraniel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154134/","id":154134,"name":"Warmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154182/","id":154182,"name":"Wormsong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154204/","id":154204,"name":"X'axal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154413/","id":154413,"name":"Mammoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154514/","id":154514,"name":"Oizys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154519/","id":154519,"name":"Aurelie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154611/","id":154611,"name":"Cosmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154612/","id":154612,"name":"Wanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154835/","id":154835,"name":"Sarge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154836/","id":154836,"name":"Boy-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154932/","id":154932,"name":"Apate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154933/","id":154933,"name":"Dolos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155106/","id":155106,"name":"Galactic Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155172/","id":155172,"name":"Jarasandh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155226/","id":155226,"name":"Morjak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155233/","id":155233,"name":"Mundus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155287/","id":155287,"name":"Eurynome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155288/","id":155288,"name":"Pyrrha of Thessaly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155305/","id":155305,"name":"The Great Intelligence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155317/","id":155317,"name":"The Trickster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155392/","id":155392,"name":"Chiyoko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155558/","id":155558,"name":"Mandragora Helix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155811/","id":155811,"name":"The Praetor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155951/","id":155951,"name":"World Forger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155968/","id":155968,"name":"Kamohoalii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156219/","id":156219,"name":"Eldred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156240/","id":156240,"name":"Betty Grof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156268/","id":156268,"name":"God of Basketball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156331/","id":156331,"name":"Glane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156338/","id":156338,"name":"Atlantiades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156354/","id":156354,"name":"Godsend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156397/","id":156397,"name":"Fire King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156407/","id":156407,"name":"Gogor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156418/","id":156418,"name":"Marrow God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156429/","id":156429,"name":"Hel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156517/","id":156517,"name":"Kumungwe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156518/","id":156518,"name":"Tangaroa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156519/","id":156519,"name":"Amanikable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156520/","id":156520,"name":"Atabey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156521/","id":156521,"name":"Repun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156585/","id":156585,"name":"Rafael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156618/","id":156618,"name":"Mother Shark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156630/","id":156630,"name":"Madame Hel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156649/","id":156649,"name":"Kvasir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156686/","id":156686,"name":"Gemimn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156687/","id":156687,"name":"Dark Majistra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156688/","id":156688,"name":"Deedra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156741/","id":156741,"name":"Ninja Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156752/","id":156752,"name":"Brigid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156762/","id":156762,"name":"Tonton Macoute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156826/","id":156826,"name":"Jake Fitzgerald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156827/","id":156827,"name":"Katie Fitzgerald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156901/","id":156901,"name":"Sadurang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156906/","id":156906,"name":"Hades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156919/","id":156919,"name":"Red-Sleeves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156942/","id":156942,"name":"Honolulu Jo "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157026/","id":157026,"name":"Hestia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157028/","id":157028,"name":"Morpheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157029/","id":157029,"name":"Thoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157111/","id":157111,"name":"Dormammu Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157127/","id":157127,"name":"Doctor Doomactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157133/","id":157133,"name":"Pepper the Wise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157134/","id":157134,"name":"Toni the Grim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157135/","id":157135,"name":"Rhodey the Bold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157177/","id":157177,"name":"Elman España"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157353/","id":157353,"name":"Brock Fennel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157817/","id":157817,"name":"Blue Emissary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157918/","id":157918,"name":"Bo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157919/","id":157919,"name":"Rim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157964/","id":157964,"name":"Now"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157965/","id":157965,"name":"Then"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158124/","id":158124,"name":"Dreamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158350/","id":158350,"name":"Dark Specter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158357/","id":158357,"name":"Red Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158436/","id":158436,"name":"The Soup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158437/","id":158437,"name":"The Conjoined"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158438/","id":158438,"name":"The Offspring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158439/","id":158439,"name":"The Rip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158680/","id":158680,"name":"Donny Juice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158733/","id":158733,"name":"Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158763/","id":158763,"name":"Gallu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158983/","id":158983,"name":"Zeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159209/","id":159209,"name":"Lady Satanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159711/","id":159711,"name":"Nanook Illiak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159715/","id":159715,"name":"Mikaela "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159857/","id":159857,"name":"Mr. Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160011/","id":160011,"name":"Pennywise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160040/","id":160040,"name":"The Dictator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160049/","id":160049,"name":"Jog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160202/","id":160202,"name":"Roxy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160272/","id":160272,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160281/","id":160281,"name":"Kymberli "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160500/","id":160500,"name":"Gideon Johnson "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160501/","id":160501,"name":"Bonz Chillin "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161013/","id":161013,"name":"Sunjata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161017/","id":161017,"name":"Popocatépetl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161018/","id":161018,"name":"Iztaccíhuatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161033/","id":161033,"name":"Undine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161034/","id":161034,"name":"Zagred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161181/","id":161181,"name":"Shaylee Moonpeddle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161182/","id":161182,"name":"Iric Brorson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161183/","id":161183,"name":"Alvi Brorson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161184/","id":161184,"name":"Guslaug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161185/","id":161185,"name":"Doyle Dormammu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161188/","id":161188,"name":"Dessy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161443/","id":161443,"name":"Gargoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161515/","id":161515,"name":"The Heart of Heavens"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161531/","id":161531,"name":"Castle Grayskullman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161657/","id":161657,"name":"Ngi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161658/","id":161658,"name":"Malleus "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161690/","id":161690,"name":"Xulody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161691/","id":161691,"name":"Shlikah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161695/","id":161695,"name":"Xhiatyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161715/","id":161715,"name":"Sung-Haklh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162177/","id":162177,"name":"Razazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162839/","id":162839,"name":"Elias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162967/","id":162967,"name":"Thor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163012/","id":163012,"name":"Father Sea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163027/","id":163027,"name":"Xanadoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163262/","id":163262,"name":"Kaemqed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163372/","id":163372,"name":"The Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163468/","id":163468,"name":"Mordiggian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163469/","id":163469,"name":"Thasaidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163898/","id":163898,"name":"Thunder Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164225/","id":164225,"name":"Fountainhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164380/","id":164380,"name":"Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164430/","id":164430,"name":"Makima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164760/","id":164760,"name":"Our Lady of Comets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164761/","id":164761,"name":"The Meat Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164762/","id":164762,"name":"The Prince of Soot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164763/","id":164763,"name":"The Lord of Roots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164834/","id":164834,"name":"Skullspitter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164880/","id":164880,"name":"Child of Perception "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165128/","id":165128,"name":"Hermes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165129/","id":165129,"name":"Ishtar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165130/","id":165130,"name":"Loki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165131/","id":165131,"name":"Hephaestus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165132/","id":165132,"name":"Apollo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165141/","id":165141,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165142/","id":165142,"name":"Ganesha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165143/","id":165143,"name":"Chronicler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165196/","id":165196,"name":"Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165197/","id":165197,"name":"Poison Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165198/","id":165198,"name":"Hair Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165201/","id":165201,"name":"Voice Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165217/","id":165217,"name":"Blue Oni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165221/","id":165221,"name":"White Oni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165285/","id":165285,"name":"Brigid Thorsdottir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165490/","id":165490,"name":"Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165494/","id":165494,"name":"Ludociel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165506/","id":165506,"name":"Supreme Deity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165507/","id":165507,"name":"Demon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165508/","id":165508,"name":"Original Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165547/","id":165547,"name":"Greyback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165645/","id":165645,"name":"23"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165650/","id":165650,"name":"Yara Flor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165665/","id":165665,"name":"Zarin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165731/","id":165731,"name":"Sigmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165788/","id":165788,"name":"Gamayun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165792/","id":165792,"name":"Shu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165793/","id":165793,"name":"Tefnut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165794/","id":165794,"name":"Apis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165830/","id":165830,"name":"Lucina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166036/","id":166036,"name":"Briar Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166059/","id":166059,"name":"Huonnor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166176/","id":166176,"name":"Zanta Maria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166540/","id":166540,"name":"Caipora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166852/","id":166852,"name":"Crusader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166972/","id":166972,"name":"Tanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167103/","id":167103,"name":"Skirn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167265/","id":167265,"name":"Princess Power"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167283/","id":167283,"name":"Conrad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167336/","id":167336,"name":"Bannister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167345/","id":167345,"name":"Potira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167354/","id":167354,"name":"Jophiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167432/","id":167432,"name":"Aura Bella Fiora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167769/","id":167769,"name":"Quan Yin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167907/","id":167907,"name":"Berzerker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167947/","id":167947,"name":"Lanfeust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168274/","id":168274,"name":"Oshun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168282/","id":168282,"name":"Ragnok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168283/","id":168283,"name":"Grüenhildä"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168349/","id":168349,"name":"Foreverbush Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168663/","id":168663,"name":"Lucretia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168699/","id":168699,"name":"Rūna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168719/","id":168719,"name":"Baran "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168902/","id":168902,"name":"Taranis the Thunderlord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168908/","id":168908,"name":"Blaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168980/","id":168980,"name":"God Tree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169146/","id":169146,"name":"Shakra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169251/","id":169251,"name":"The Hierophant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169509/","id":169509,"name":"Trajana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169617/","id":169617,"name":"Váli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169618/","id":169618,"name":"Narfi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169657/","id":169657,"name":"N'Vir Free"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169832/","id":169832,"name":"The Truth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169898/","id":169898,"name":"The Man of the Book"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170070/","id":170070,"name":"Mary Embrey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170161/","id":170161,"name":"Psycho-pomp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170466/","id":170466,"name":"The General"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170468/","id":170468,"name":"Mr. Enigma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170555/","id":170555,"name":"Corset"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171439/","id":171439,"name":"Shoukichi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171455/","id":171455,"name":"Okkoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171457/","id":171457,"name":"Ōtori-Sama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171458/","id":171458,"name":"Foreman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171669/","id":171669,"name":"Capmarv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171767/","id":171767,"name":"22"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171857/","id":171857,"name":"Lester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171858/","id":171858,"name":"Nightmare Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171859/","id":171859,"name":"Lydia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171861/","id":171861,"name":"Komox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171870/","id":171870,"name":"Second Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171871/","id":171871,"name":"Third Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171872/","id":171872,"name":"Fifth Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171873/","id":171873,"name":"Sixth Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171880/","id":171880,"name":"Hydros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171945/","id":171945,"name":"Urizen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171956/","id":171956,"name":"The Faun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172289/","id":172289,"name":"Demon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172925/","id":172925,"name":"King Bull Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172926/","id":172926,"name":"Princess Iron Fan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172927/","id":172927,"name":"Red Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172928/","id":172928,"name":"Erlang-Shen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172929/","id":172929,"name":"Pigsy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172946/","id":172946,"name":"The Crown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172947/","id":172947,"name":"The Crawling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173102/","id":173102,"name":"Myst-Vearn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173136/","id":173136,"name":"Alyphar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173140/","id":173140,"name":"Kyma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173146/","id":173146,"name":"Adryel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173147/","id":173147,"name":"Yrso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173196/","id":173196,"name":"Amycos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173210/","id":173210,"name":"Rei Kurorogi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173253/","id":173253,"name":"Tartarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173259/","id":173259,"name":"Geppo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173501/","id":173501,"name":"Jack of Knives"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173502/","id":173502,"name":"Daina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173503/","id":173503,"name":"Argos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173526/","id":173526,"name":"Elo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173551/","id":173551,"name":"Valkyrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173704/","id":173704,"name":"Kirill - Guardian of the Video Distribution"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173727/","id":173727,"name":"The Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173746/","id":173746,"name":"Delphine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173747/","id":173747,"name":"Karessi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173748/","id":173748,"name":"Zina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173749/","id":173749,"name":"Andromeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173750/","id":173750,"name":"Bia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173766/","id":173766,"name":"Vearn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173775/","id":173775,"name":"Zaboera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174101/","id":174101,"name":"Sora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174102/","id":174102,"name":"Yomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174162/","id":174162,"name":"Taxes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174163/","id":174163,"name":"Cosmic Comptroller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174304/","id":174304,"name":"Anos Voldigoad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174306/","id":174306,"name":"Reno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174307/","id":174307,"name":"Militia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174310/","id":174310,"name":"Misha Necron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174311/","id":174311,"name":"Zepes Indu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174312/","id":174312,"name":"Leorig Indu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174313/","id":174313,"name":"Emilia Ludowell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174314/","id":174314,"name":"Sasha Necron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174315/","id":174315,"name":"Ivis Necron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174316/","id":174316,"name":"Eugo La Raviaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174330/","id":174330,"name":"Theus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174372/","id":174372,"name":"Dan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174393/","id":174393,"name":"Pyros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174394/","id":174394,"name":"Stratos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174417/","id":174417,"name":"Whately"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174428/","id":174428,"name":"Hauhet "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174437/","id":174437,"name":"Annihilator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174446/","id":174446,"name":"Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174588/","id":174588,"name":"Abaddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174597/","id":174597,"name":"The Forsaken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174598/","id":174598,"name":"Pirate Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174599/","id":174599,"name":"Noir Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174600/","id":174600,"name":"Centurion Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174601/","id":174601,"name":"Sorcerer Spawn "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174674/","id":174674,"name":"Yemọja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174675/","id":174675,"name":"Oba "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174685/","id":174685,"name":"Lyra Bloodstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174686/","id":174686,"name":"Krakkan the Jailer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174758/","id":174758,"name":"Meloney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174771/","id":174771,"name":"Damballah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174798/","id":174798,"name":"Ihy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174799/","id":174799,"name":"Fetket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174800/","id":174800,"name":"Peteese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174801/","id":174801,"name":"Pihor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174802/","id":174802,"name":"Nehemetawy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174803/","id":174803,"name":"Shed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174833/","id":174833,"name":"Xamul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175283/","id":175283,"name":"The Traveler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175318/","id":175318,"name":"Kuat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175319/","id":175319,"name":"Iae "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175425/","id":175425,"name":"Black Azazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175555/","id":175555,"name":"Luci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175738/","id":175738,"name":"Iris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175875/","id":175875,"name":"Oceanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175917/","id":175917,"name":"Morgana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176225/","id":176225,"name":"Avatar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176279/","id":176279,"name":"Dame Christabel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176289/","id":176289,"name":"Magda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176314/","id":176314,"name":"Aurora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176409/","id":176409,"name":"Antinoös "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176411/","id":176411,"name":"Ampelos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176489/","id":176489,"name":"Galactipool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177068/","id":177068,"name":"Cenit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177116/","id":177116,"name":"Umpfal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177139/","id":177139,"name":"Niomaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177144/","id":177144,"name":"The One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177296/","id":177296,"name":"Nakare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177298/","id":177298,"name":"Yugame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177455/","id":177455,"name":"Yami Bakura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177458/","id":177458,"name":"The Great Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177459/","id":177459,"name":"Timaeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177461/","id":177461,"name":"Hermos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177498/","id":177498,"name":"Olgrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177615/","id":177615,"name":"Kuzure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177616/","id":177616,"name":"Enya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177670/","id":177670,"name":"Non"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177690/","id":177690,"name":"Cyber Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177789/","id":177789,"name":"Icarion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177938/","id":177938,"name":"Dynamus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177939/","id":177939,"name":"Archivus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178122/","id":178122,"name":"Dai Shi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178162/","id":178162,"name":"Idea of Evil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178174/","id":178174,"name":"Aphrodite Ourania"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178190/","id":178190,"name":"Paprika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178191/","id":178191,"name":"Dill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178242/","id":178242,"name":"Ghost Ronin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178256/","id":178256,"name":"Radcliffe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178259/","id":178259,"name":"Marius Chung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178260/","id":178260,"name":"Morien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178261/","id":178261,"name":"Dawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178262/","id":178262,"name":"Gudrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178293/","id":178293,"name":"Nightshroud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178329/","id":178329,"name":"The Light of Destruction"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178344/","id":178344,"name":"Ruijerd Superdia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178363/","id":178363,"name":"Desumi Magahara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178384/","id":178384,"name":"Crimson Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178391/","id":178391,"name":"Tumult"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178406/","id":178406,"name":"Pink Emissary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178410/","id":178410,"name":"Red Emissary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178411/","id":178411,"name":"Yellow Emissary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178412/","id":178412,"name":"Green Emissary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178413/","id":178413,"name":"Black Emissary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178427/","id":178427,"name":"Ultimate Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178430/","id":178430,"name":"Culverin Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178431/","id":178431,"name":"Supreme Leader Bosslar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178456/","id":178456,"name":"Scabra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178457/","id":178457,"name":"Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178458/","id":178458,"name":"Mammona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178467/","id":178467,"name":"Bindle Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178496/","id":178496,"name":"Syne the Memotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178501/","id":178501,"name":"Ordeal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178574/","id":178574,"name":"Titan the World-Shaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178612/","id":178612,"name":"Robert Goldman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178638/","id":178638,"name":"Grace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178738/","id":178738,"name":"Blaise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178869/","id":178869,"name":"Argus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178870/","id":178870,"name":"Cadiclus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178888/","id":178888,"name":"John Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178928/","id":178928,"name":"Dark Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178936/","id":178936,"name":"Yagher Dien "}],"id":7,"name":"God/Eternal","profiles":[],"site_detail_url":"https://comicvine.gamespot.com/godeternal/4030-7/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/origin-details/origin-4030-9.json b/samples/api-data/origin-details/origin-4030-9.json new file mode 100644 index 0000000..10c6a93 --- /dev/null +++ b/samples/api-data/origin-details/origin-4030-9.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-9/","character_set":null,"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1378/","id":1378,"name":"Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1380/","id":1380,"name":"Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1405/","id":1405,"name":"Kkrapp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1548/","id":1548,"name":"Skywise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1549/","id":1549,"name":"Bearclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1558/","id":1558,"name":"Treestump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1562/","id":1562,"name":"Kroosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1563/","id":1563,"name":"Puffer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1565/","id":1565,"name":"Wavecatcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1566/","id":1566,"name":"Wavelet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1567/","id":1567,"name":"Darshek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1579/","id":1579,"name":"Scouter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1580/","id":1580,"name":"Tyleet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1581/","id":1581,"name":"Pike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1582/","id":1582,"name":"Krim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1584/","id":1584,"name":"Dewshine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1585/","id":1585,"name":"Pool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1586/","id":1586,"name":"Sust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1589/","id":1589,"name":"Spine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1590/","id":1590,"name":"Longfin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1591/","id":1591,"name":"Krill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1592/","id":1592,"name":"Brill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1599/","id":1599,"name":"Redcrest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1604/","id":1604,"name":"Shale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1612/","id":1612,"name":"No-Ripple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1614/","id":1614,"name":"Jethel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1654/","id":1654,"name":"Ahnn-Li"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1686/","id":1686,"name":"Kon-El"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1697/","id":1697,"name":"Poison Ivy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1702/","id":1702,"name":"Joker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1750/","id":1750,"name":"Baroshtok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1757/","id":1757,"name":"Bloodstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1849/","id":1849,"name":"Cutter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1851/","id":1851,"name":"Leetah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1864/","id":1864,"name":"Miria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1870/","id":1870,"name":"Clearbrook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1873/","id":1873,"name":"Ripley Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1891/","id":1891,"name":"Rahnee The She-Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1896/","id":1896,"name":"Tanner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1971/","id":1971,"name":"Pac-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2044/","id":2044,"name":"Dementor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2048/","id":2048,"name":"Wonder Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2070/","id":2070,"name":"Venus Bluegenes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2115/","id":2115,"name":"Crystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2133/","id":2133,"name":"Skybreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2134/","id":2134,"name":"Terraformer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2186/","id":2186,"name":"Condor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2202/","id":2202,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2251/","id":2251,"name":"Piledriver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2287/","id":2287,"name":"Toad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2302/","id":2302,"name":"Vortigern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2305/","id":2305,"name":"Grandma Dickman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2357/","id":2357,"name":"Aquaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2382/","id":2382,"name":"Tempest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2486/","id":2486,"name":"Mr. Immortal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2488/","id":2488,"name":"Squirrel Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2493/","id":2493,"name":"Maelstrom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2498/","id":2498,"name":"Dinah Soar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2501/","id":2501,"name":"Captain Ultra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2512/","id":2512,"name":"Cessair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2621/","id":2621,"name":"Dahib"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2631/","id":2631,"name":"Vitchen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2640/","id":2640,"name":"Brutus Klor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2641/","id":2641,"name":"Siffror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2674/","id":2674,"name":"Scylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2702/","id":2702,"name":"Cteno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2706/","id":2706,"name":"Chronos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2724/","id":2724,"name":"Elmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2743/","id":2743,"name":"Casper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2775/","id":2775,"name":"Calypso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2804/","id":2804,"name":"Pokey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2886/","id":2886,"name":"Victor Guillermos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2937/","id":2937,"name":"Howdy Doody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2940/","id":2940,"name":"Hot Stuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2949/","id":2949,"name":"Aunt Clinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2952/","id":2952,"name":"Nightmare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2954/","id":2954,"name":"Shaddox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2960/","id":2960,"name":"Ophelia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2980/","id":2980,"name":"Psiclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2990/","id":2990,"name":"Croglin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2992/","id":2992,"name":"Crazy Harry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2998/","id":2998,"name":"Wolfe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3011/","id":3011,"name":"Ultrabright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3140/","id":3140,"name":"Coldfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3141/","id":3141,"name":"Milou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3160/","id":3160,"name":"Nitro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3164/","id":3164,"name":"Barrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3165/","id":3165,"name":"Battra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3372/","id":3372,"name":"Dragon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3409/","id":3409,"name":"Shift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3447/","id":3447,"name":"Maximus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3448/","id":3448,"name":"Falcona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3449/","id":3449,"name":"Stallior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3450/","id":3450,"name":"Leonus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3451/","id":3451,"name":"Timberius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3535/","id":3535,"name":"Pixil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3567/","id":3567,"name":"Raina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3568/","id":3568,"name":"Masano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3569/","id":3569,"name":"Kaidan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3584/","id":3584,"name":"Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3586/","id":3586,"name":"Beast Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3625/","id":3625,"name":"Uncle Sam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3651/","id":3651,"name":"Putill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3682/","id":3682,"name":"Bamill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3751/","id":3751,"name":"Anton Geist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3754/","id":3754,"name":"Vulko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3757/","id":3757,"name":"Salvatore Asano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3758/","id":3758,"name":"Ocean Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3807/","id":3807,"name":"The Vault-Keeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3821/","id":3821,"name":"The Frog Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3855/","id":3855,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3857/","id":3857,"name":"Lo Scuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3870/","id":3870,"name":"Max Brendel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3920/","id":3920,"name":"The Crypt-Keeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4125/","id":4125,"name":"Alexandra Allston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4160/","id":4160,"name":"Calibos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4213/","id":4213,"name":"Karasu Tengu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4238/","id":4238,"name":"The Little Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4327/","id":4327,"name":"Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4329/","id":4329,"name":"Black Bolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4330/","id":4330,"name":"Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4369/","id":4369,"name":"Golgotha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4409/","id":4409,"name":"Marie Dread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4411/","id":4411,"name":"Arkady Dread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4413/","id":4413,"name":"Simon Benedict"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4417/","id":4417,"name":"Bruno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4575/","id":4575,"name":"Icicle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4623/","id":4623,"name":"Vandal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4638/","id":4638,"name":"Harpyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4674/","id":4674,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4683/","id":4683,"name":"Skinwalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4685/","id":4685,"name":"Warhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4686/","id":4686,"name":"Tula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4734/","id":4734,"name":"Chronodile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4766/","id":4766,"name":"Mrs. Potts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4770/","id":4770,"name":"The Grinch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4781/","id":4781,"name":"Chip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4782/","id":4782,"name":"Lumière"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4790/","id":4790,"name":"Featherduster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4792/","id":4792,"name":"Cogsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4793/","id":4793,"name":"Wardrobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4808/","id":4808,"name":"Blizzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4833/","id":4833,"name":"Manowar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4834/","id":4834,"name":"Sea Leopard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4845/","id":4845,"name":"Blue Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4851/","id":4851,"name":"Tapeworm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4932/","id":4932,"name":"Worm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4934/","id":4934,"name":"Brother Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4984/","id":4984,"name":"Werewolf By Night"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4988/","id":4988,"name":"Man-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5069/","id":5069,"name":"Gauntlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5129/","id":5129,"name":"Avalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5159/","id":5159,"name":"Zombie Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5165/","id":5165,"name":"Zxaxz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5171/","id":5171,"name":"Maegog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5173/","id":5173,"name":"Gargantua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5183/","id":5183,"name":"Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5248/","id":5248,"name":"Battlestone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5348/","id":5348,"name":"Hugh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5350/","id":5350,"name":"The Werewolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5468/","id":5468,"name":"Roger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5479/","id":5479,"name":"Johann Kraus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5481/","id":5481,"name":"The Crooked Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5504/","id":5504,"name":"Vladimir Giurescu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5507/","id":5507,"name":"Mister Morgan's Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5508/","id":5508,"name":"William Grenier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5511/","id":5511,"name":"Monsteroso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5534/","id":5534,"name":"Cinnibar Brenneka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5537/","id":5537,"name":"Urchin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5617/","id":5617,"name":"Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5690/","id":5690,"name":"Deadman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5713/","id":5713,"name":"Creeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5738/","id":5738,"name":"Suit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5768/","id":5768,"name":"Scarface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5892/","id":5892,"name":"Ned Moriarty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5965/","id":5965,"name":"Mary Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6023/","id":6023,"name":"The Doctor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6201/","id":6201,"name":"Wolfwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6258/","id":6258,"name":"Rexa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6277/","id":6277,"name":"Shogran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6282/","id":6282,"name":"Baroness Blood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6293/","id":6293,"name":"Master Programmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6387/","id":6387,"name":"Bagman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6497/","id":6497,"name":"Uncle Deadly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6503/","id":6503,"name":"Mahna Mahna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6507/","id":6507,"name":"The Snowths"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6516/","id":6516,"name":"Tonga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6526/","id":6526,"name":"Goraiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6528/","id":6528,"name":"Glob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6552/","id":6552,"name":"Athena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6587/","id":6587,"name":"Ezarat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6616/","id":6616,"name":"Lady Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6627/","id":6627,"name":"Mildred Huxtetter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6659/","id":6659,"name":"Magic Lantern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6667/","id":6667,"name":"Purple Claw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6742/","id":6742,"name":"Leona McBride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6787/","id":6787,"name":"Uncle Creepy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6788/","id":6788,"name":"Cousin Eerie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6805/","id":6805,"name":"Adam Warlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6914/","id":6914,"name":"Amphibian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6969/","id":6969,"name":"Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6993/","id":6993,"name":"Quagslime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7005/","id":7005,"name":"Balor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7078/","id":7078,"name":"Anger Management"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7113/","id":7113,"name":"Coroner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7162/","id":7162,"name":"Alloy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7232/","id":7232,"name":"Tempus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7236/","id":7236,"name":"Mourning Prey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7285/","id":7285,"name":"Shock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7304/","id":7304,"name":"Kristina, Queen of Vampires"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7340/","id":7340,"name":"Grandma Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7358/","id":7358,"name":"Breschau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7378/","id":7378,"name":"Scurff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7379/","id":7379,"name":"Lionleaper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7380/","id":7380,"name":"Behtia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7381/","id":7381,"name":"Acorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7395/","id":7395,"name":"Roadblock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7444/","id":7444,"name":"Stumbo The Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7446/","id":7446,"name":"Sharko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7546/","id":7546,"name":"Yip Yap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7550/","id":7550,"name":"Miss Piggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7551/","id":7551,"name":"Animal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7552/","id":7552,"name":"Scooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7555/","id":7555,"name":"Fozzie Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7558/","id":7558,"name":"Beauregard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7560/","id":7560,"name":"Zoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7561/","id":7561,"name":"Dr. Teeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7562/","id":7562,"name":"Janice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7563/","id":7563,"name":"Floyd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7565/","id":7565,"name":"Waldorf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7566/","id":7566,"name":"Skeeter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7570/","id":7570,"name":"Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7717/","id":7717,"name":"Astaroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7802/","id":7802,"name":"Babu The Genie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7829/","id":7829,"name":"Mustard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7848/","id":7848,"name":"Buzz Lightyear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7868/","id":7868,"name":"Tinker Bell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7940/","id":7940,"name":"Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8041/","id":8041,"name":"Roadkill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8043/","id":8043,"name":"Lorna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8047/","id":8047,"name":"Shelob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8054/","id":8054,"name":"Charnel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8098/","id":8098,"name":"Jack O'Bite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8170/","id":8170,"name":"Starbuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8230/","id":8230,"name":"Tooth Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8239/","id":8239,"name":"Proffy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8240/","id":8240,"name":"Technowolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8278/","id":8278,"name":"Mr. Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8312/","id":8312,"name":"Bizarro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8336/","id":8336,"name":"Cir-El"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8343/","id":8343,"name":"Brimstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8453/","id":8453,"name":"Overthrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8524/","id":8524,"name":"Silvara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8616/","id":8616,"name":"Childe Roland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8649/","id":8649,"name":"Lizardman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8651/","id":8651,"name":"Astaroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8653/","id":8653,"name":"Cervantes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8676/","id":8676,"name":"Darkdevil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8720/","id":8720,"name":"Nightmare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8728/","id":8728,"name":"Remora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8811/","id":8811,"name":"Jacob Marley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8960/","id":8960,"name":"T'mat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8961/","id":8961,"name":"Alera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8964/","id":8964,"name":"Array"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8984/","id":8984,"name":"Debra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8992/","id":8992,"name":"Dreadwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8997/","id":8997,"name":"Exthilion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8998/","id":8998,"name":"Gar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8999/","id":8999,"name":"Ancient Gina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9011/","id":9011,"name":"Lard Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9046/","id":9046,"name":"Crucifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9059/","id":9059,"name":"Natasha Volstov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9108/","id":9108,"name":"Nemesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9111/","id":9111,"name":"Myriam Leclair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9115/","id":9115,"name":"Tyrant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9141/","id":9141,"name":"Hamm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9170/","id":9170,"name":"Pojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9178/","id":9178,"name":"Pangaean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9182/","id":9182,"name":"Raphiel Rey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9265/","id":9265,"name":"Randall Boggs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9266/","id":9266,"name":"Fungus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9291/","id":9291,"name":"Romeo Ellis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9320/","id":9320,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9363/","id":9363,"name":"Kid Eternity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9372/","id":9372,"name":"Maelstrom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9436/","id":9436,"name":"Mr. Crime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9446/","id":9446,"name":"Mister Overhill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9497/","id":9497,"name":"Michelin Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9521/","id":9521,"name":"Captain McMorgan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9564/","id":9564,"name":"Aqualord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9573/","id":9573,"name":"Brainiac 12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9575/","id":9575,"name":"Moisha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9577/","id":9577,"name":"Montara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9624/","id":9624,"name":"Uncle Sam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9644/","id":9644,"name":"Impulse 1000000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9701/","id":9701,"name":"Lydia Iceron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9742/","id":9742,"name":"The Ghostly Trio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9744/","id":9744,"name":"Spooky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9766/","id":9766,"name":"Lycanklutz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9769/","id":9769,"name":"Puck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9771/","id":9771,"name":"Thaug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9790/","id":9790,"name":"Galadriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9801/","id":9801,"name":"Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9821/","id":9821,"name":"Treebeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9827/","id":9827,"name":"Fairy Godmother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9846/","id":9846,"name":"Heather McDaniel Hudson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9870/","id":9870,"name":"Iceron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9885/","id":9885,"name":"N'Gabthoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9908/","id":9908,"name":"Charaxes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9915/","id":9915,"name":"Cruk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9920/","id":9920,"name":"Brafu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9921/","id":9921,"name":"Brendan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9922/","id":9922,"name":"Brod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9923/","id":9923,"name":"Burnhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9937/","id":9937,"name":"Dagon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9954/","id":9954,"name":"Senadra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9958/","id":9958,"name":"Sherisha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9991/","id":9991,"name":"J. P. Grosse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10004/","id":10004,"name":"Chemo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10033/","id":10033,"name":"Sith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10110/","id":10110,"name":"Dmitri Mishkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10133/","id":10133,"name":"Blair Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10140/","id":10140,"name":"Deborah Dancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10180/","id":10180,"name":"Tyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10256/","id":10256,"name":"Ms. Monster From The Lost Lagoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10289/","id":10289,"name":"Jeannie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10291/","id":10291,"name":"S'ym"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10305/","id":10305,"name":"Vladimir Karnov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10330/","id":10330,"name":"Xerses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10337/","id":10337,"name":"Old Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10411/","id":10411,"name":"Pinheads"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10424/","id":10424,"name":"Neo Dio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10436/","id":10436,"name":"Pumice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10499/","id":10499,"name":"Little My"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10500/","id":10500,"name":"Moominpappa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10501/","id":10501,"name":"Moominmamma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10502/","id":10502,"name":"Mymlan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10503/","id":10503,"name":"Gafsan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10504/","id":10504,"name":"Snofsan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10505/","id":10505,"name":"Snork Maiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10507/","id":10507,"name":"Moomin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10508/","id":10508,"name":"Sniff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10510/","id":10510,"name":"Stinky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10511/","id":10511,"name":"Filifjonkan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10599/","id":10599,"name":"Rider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10601/","id":10601,"name":"Hooker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10608/","id":10608,"name":"Mike Wazowski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10616/","id":10616,"name":"Stolas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10741/","id":10741,"name":"Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10781/","id":10781,"name":"Kongou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10782/","id":10782,"name":"Dendrok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10794/","id":10794,"name":"Dorhun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10804/","id":10804,"name":"Sulley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10808/","id":10808,"name":"Hydron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10844/","id":10844,"name":"Smocke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10872/","id":10872,"name":"Goodfellow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10913/","id":10913,"name":"Wonderdome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10927/","id":10927,"name":"Buzz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10942/","id":10942,"name":"Lagoon Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10943/","id":10943,"name":"Nuliajuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10962/","id":10962,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10975/","id":10975,"name":"Karnak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11099/","id":11099,"name":"Frostbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11168/","id":11168,"name":"Shadowmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11185/","id":11185,"name":"Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11189/","id":11189,"name":"Slither"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11221/","id":11221,"name":"Rodunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11252/","id":11252,"name":"Bliss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11253/","id":11253,"name":"Merritt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11311/","id":11311,"name":"Oblivion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11358/","id":11358,"name":"Witchfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11361/","id":11361,"name":"Starshrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11370/","id":11370,"name":"Bunnyhopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11374/","id":11374,"name":"Ulysses Highwater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11426/","id":11426,"name":"Senso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11428/","id":11428,"name":"Triton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11441/","id":11441,"name":"Squire Shade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11484/","id":11484,"name":"Doop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11531/","id":11531,"name":"Yith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11559/","id":11559,"name":"Sam Wantling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11578/","id":11578,"name":"Foe-Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11609/","id":11609,"name":"Giganto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11661/","id":11661,"name":"Vodyanoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11680/","id":11680,"name":"Rose the Puppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11722/","id":11722,"name":"Frosty The Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11723/","id":11723,"name":"Mr. Potato Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11800/","id":11800,"name":"Waya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11809/","id":11809,"name":"Tessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11814/","id":11814,"name":"Shy Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11815/","id":11815,"name":"Bob-Omb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11822/","id":11822,"name":"Lakitu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11831/","id":11831,"name":"Thibbledorf Pwent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11835/","id":11835,"name":"Toro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11846/","id":11846,"name":"General Ator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11848/","id":11848,"name":"Eelak The Agile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11849/","id":11849,"name":"Margoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11850/","id":11850,"name":"Glaboo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11851/","id":11851,"name":"Pulssus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11862/","id":11862,"name":"Devlor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11915/","id":11915,"name":"Moses Magnum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11937/","id":11937,"name":"Pagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11939/","id":11939,"name":"Kro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11976/","id":11976,"name":"Klarion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11989/","id":11989,"name":"Harm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12014/","id":12014,"name":"Warblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12035/","id":12035,"name":"Moonshadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12064/","id":12064,"name":"Hate-Monger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12078/","id":12078,"name":"Nina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12100/","id":12100,"name":"Bette Noir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12131/","id":12131,"name":"Baytor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12146/","id":12146,"name":"Mawzir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12166/","id":12166,"name":"Mike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12306/","id":12306,"name":"Ramasith Ironhanded"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12323/","id":12323,"name":"Ulik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12345/","id":12345,"name":"Mangog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12390/","id":12390,"name":"Mushu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12451/","id":12451,"name":"Kilroy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12457/","id":12457,"name":"Magnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12475/","id":12475,"name":"Magic Pickle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12483/","id":12483,"name":"Administrator Ceorel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12511/","id":12511,"name":"Sinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12576/","id":12576,"name":"White Spy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12601/","id":12601,"name":"Dorma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12602/","id":12602,"name":"Suma-Ket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12604/","id":12604,"name":"Shakirbuuti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12626/","id":12626,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12629/","id":12629,"name":"Mahkizmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12632/","id":12632,"name":"Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12635/","id":12635,"name":"Divinity Drake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12647/","id":12647,"name":"Montgomery H. Price"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12672/","id":12672,"name":"Bouncer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12715/","id":12715,"name":"Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12738/","id":12738,"name":"Simbus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12826/","id":12826,"name":"Xiu-Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12827/","id":12827,"name":"Hungry Sally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12878/","id":12878,"name":"Scarlett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12899/","id":12899,"name":"Doctor Cyber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12920/","id":12920,"name":"Rikuo Nura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13012/","id":13012,"name":"The Preacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13014/","id":13014,"name":"Lori Lemaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13036/","id":13036,"name":"Torcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13040/","id":13040,"name":"Sissy Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13138/","id":13138,"name":"Kosnor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13149/","id":13149,"name":"Mokkari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13150/","id":13150,"name":"Simyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13183/","id":13183,"name":"Bohr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13186/","id":13186,"name":"Shiara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13187/","id":13187,"name":"Neth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13188/","id":13188,"name":"Kheera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13189/","id":13189,"name":"Tornud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13190/","id":13190,"name":"Leehn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13191/","id":13191,"name":"Ghorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13219/","id":13219,"name":"Gammid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13224/","id":13224,"name":"Capricia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13225/","id":13225,"name":"Verityn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13226/","id":13226,"name":"Galvan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13227/","id":13227,"name":"Zephyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13228/","id":13228,"name":"Tug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13279/","id":13279,"name":"Exeter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13305/","id":13305,"name":"Jinai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13307/","id":13307,"name":"Mindoka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13319/","id":13319,"name":"Avia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13388/","id":13388,"name":"Kendo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13400/","id":13400,"name":"Orka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13401/","id":13401,"name":"Krang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13432/","id":13432,"name":"Psyklop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13444/","id":13444,"name":"Nebulo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13472/","id":13472,"name":"Thing-That-Cannot-Die"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13480/","id":13480,"name":"The Flame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13482/","id":13482,"name":"Aeltri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13575/","id":13575,"name":"Cerdian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13585/","id":13585,"name":"Godstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13597/","id":13597,"name":"Malesur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13607/","id":13607,"name":"Next Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13618/","id":13618,"name":"Hawke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13632/","id":13632,"name":"Thomestharustra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13644/","id":13644,"name":"Tunring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13645/","id":13645,"name":"Jessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13646/","id":13646,"name":"Skald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13700/","id":13700,"name":"Angry Charlie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13701/","id":13701,"name":"Mordred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13728/","id":13728,"name":"Shadrac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13745/","id":13745,"name":"Man-Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13758/","id":13758,"name":"CLOC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13768/","id":13768,"name":"Rattack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13783/","id":13783,"name":"Satana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13785/","id":13785,"name":"Varnae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13787/","id":13787,"name":"Lucas Brand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13791/","id":13791,"name":"Edith Harker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13793/","id":13793,"name":"Lianda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13794/","id":13794,"name":"Harold H. Harold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13812/","id":13812,"name":"Zzzax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13857/","id":13857,"name":"Assar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13858/","id":13858,"name":"Seeker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13913/","id":13913,"name":"Razor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13934/","id":13934,"name":"Kree-Tor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13936/","id":13936,"name":"Karkas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13939/","id":13939,"name":"Living Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13942/","id":13942,"name":"Phobius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13975/","id":13975,"name":"Nadar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13977/","id":13977,"name":"Glytra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13978/","id":13978,"name":"Iridia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13996/","id":13996,"name":"Belathauzer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14004/","id":14004,"name":"Vira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14005/","id":14005,"name":"Brother Tode"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14007/","id":14007,"name":"Dragona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14008/","id":14008,"name":"Zakka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14009/","id":14009,"name":"Shelmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14011/","id":14011,"name":"Broop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14012/","id":14012,"name":"Ragar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14013/","id":14013,"name":"Sluice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14024/","id":14024,"name":"Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14073/","id":14073,"name":"Night Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14127/","id":14127,"name":"His Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14234/","id":14234,"name":"Volkvhy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14248/","id":14248,"name":"Foundry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14357/","id":14357,"name":"Lupek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14358/","id":14358,"name":"Dragorin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14404/","id":14404,"name":"Lenore Castle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14411/","id":14411,"name":"Turac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14413/","id":14413,"name":"Blade Doppelganger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14414/","id":14414,"name":"Adri Nital"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14415/","id":14415,"name":"Torgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14500/","id":14500,"name":"Ape-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14517/","id":14517,"name":"Woodgod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14518/","id":14518,"name":"Sir Ram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14527/","id":14527,"name":"Uni-Mind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14538/","id":14538,"name":"Cabbage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14591/","id":14591,"name":"Agon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14592/","id":14592,"name":"Rynda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14593/","id":14593,"name":"Makoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14594/","id":14594,"name":"Randac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14595/","id":14595,"name":"Phaeder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14596/","id":14596,"name":"Kaliban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14597/","id":14597,"name":"Chiron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14599/","id":14599,"name":"Avius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14600/","id":14600,"name":"Pinyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14601/","id":14601,"name":"Piskas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14603/","id":14603,"name":"Budan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14604/","id":14604,"name":"Romnar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14614/","id":14614,"name":"Infinks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14619/","id":14619,"name":"Magus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14650/","id":14650,"name":"King Thar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14653/","id":14653,"name":"Footstool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14654/","id":14654,"name":"Mera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14666/","id":14666,"name":"Gwildor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14684/","id":14684,"name":"Lobster Random"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14689/","id":14689,"name":"Khaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14700/","id":14700,"name":"Bailiff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14709/","id":14709,"name":"Creed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14713/","id":14713,"name":"Dark Dwarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14726/","id":14726,"name":"Wallow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14757/","id":14757,"name":"Centurious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14759/","id":14759,"name":"Vengeance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14760/","id":14760,"name":"Caretaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14763/","id":14763,"name":"Outcast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14766/","id":14766,"name":"Quill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14782/","id":14782,"name":"Deathwatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14783/","id":14783,"name":"Hag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14784/","id":14784,"name":"Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14822/","id":14822,"name":"Captain U.K."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14828/","id":14828,"name":"Bamf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14877/","id":14877,"name":"Balam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14879/","id":14879,"name":"Son Of Krakoa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14887/","id":14887,"name":"Crusader X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14911/","id":14911,"name":"Black Raazer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14921/","id":14921,"name":"Belial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15009/","id":15009,"name":"Chronotroopers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15035/","id":15035,"name":"Gyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15036/","id":15036,"name":"Coil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15037/","id":15037,"name":"Ringlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15077/","id":15077,"name":"Grey King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15079/","id":15079,"name":"Landslide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15080/","id":15080,"name":"Crux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15161/","id":15161,"name":"Casper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15177/","id":15177,"name":"Semijan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15238/","id":15238,"name":"Puma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15272/","id":15272,"name":"Demogoblin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15274/","id":15274,"name":"Doppelganger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15280/","id":15280,"name":"Black Annis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15354/","id":15354,"name":"Butte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15356/","id":15356,"name":"Gila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15415/","id":15415,"name":"Thermo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15436/","id":15436,"name":"Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15452/","id":15452,"name":"Crown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15476/","id":15476,"name":"Karel Toten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15478/","id":15478,"name":"Belphegor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15541/","id":15541,"name":"Shang Tsung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15552/","id":15552,"name":"Demon Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15554/","id":15554,"name":"Ulysses Dragonblood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15555/","id":15555,"name":"Sledge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15557/","id":15557,"name":"Odysseus Indigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15562/","id":15562,"name":"Stranglehold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15580/","id":15580,"name":"Jinku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15612/","id":15612,"name":"Eye Killers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15656/","id":15656,"name":"Dragonfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15678/","id":15678,"name":"Mantisaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15693/","id":15693,"name":"Plasma Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15719/","id":15719,"name":"Goro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15732/","id":15732,"name":"Spore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15734/","id":15734,"name":"Bloodscream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15755/","id":15755,"name":"Bizarro Superboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15779/","id":15779,"name":"Attuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15783/","id":15783,"name":"Warlord Seth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15784/","id":15784,"name":"Andromeda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15808/","id":15808,"name":"Gardener"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15839/","id":15839,"name":"Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16017/","id":16017,"name":"Papa Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16075/","id":16075,"name":"Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16179/","id":16179,"name":"Imperial Commander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16208/","id":16208,"name":"Homo Arachnis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16301/","id":16301,"name":"Halloween Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16361/","id":16361,"name":"Java"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16391/","id":16391,"name":"Fox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16493/","id":16493,"name":"Oscar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16537/","id":16537,"name":"Firfin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16540/","id":16540,"name":"Morkai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16556/","id":16556,"name":"Alcide Nikopol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16565/","id":16565,"name":"Tarn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16576/","id":16576,"name":"Deepo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16578/","id":16578,"name":"Animah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16579/","id":16579,"name":"Techno Pope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16590/","id":16590,"name":"Solune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16593/","id":16593,"name":"Tanatah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16594/","id":16594,"name":"Kill Wolfhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16595/","id":16595,"name":"Necro-Robot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16597/","id":16597,"name":"Gorgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16600/","id":16600,"name":"Jordella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16613/","id":16613,"name":"J'on"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16637/","id":16637,"name":"Riff the Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16653/","id":16653,"name":"The Ghost of Christmas Future"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16665/","id":16665,"name":"Dølle Døck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16697/","id":16697,"name":"Arzach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16755/","id":16755,"name":"Devil Chef"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16756/","id":16756,"name":"Nelanthe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16822/","id":16822,"name":"Samuel Yates"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16840/","id":16840,"name":"Julius The Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17073/","id":17073,"name":"Leina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17180/","id":17180,"name":"The Ghost of Christmas Present"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17181/","id":17181,"name":"The Ghost of Christmas Past"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17210/","id":17210,"name":"The Fly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17223/","id":17223,"name":"Old Bog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17269/","id":17269,"name":"Neyrelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17280/","id":17280,"name":"Jacques"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17300/","id":17300,"name":"Ernest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17381/","id":17381,"name":"Bride of Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17464/","id":17464,"name":"Nelson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17513/","id":17513,"name":"Barbaralice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17613/","id":17613,"name":"Morlun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17715/","id":17715,"name":"Phoebus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17756/","id":17756,"name":"Serpenteen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17759/","id":17759,"name":"Gray Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17763/","id":17763,"name":"Gene-Gnome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17772/","id":17772,"name":"King Shark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17782/","id":17782,"name":"Nosferata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17797/","id":17797,"name":"Bi-Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17834/","id":17834,"name":"The Demolisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17845/","id":17845,"name":"Mindwarp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17875/","id":17875,"name":"June"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17883/","id":17883,"name":"Man-Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17886/","id":17886,"name":"Atlantean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17901/","id":17901,"name":"Damien Darklord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17963/","id":17963,"name":"Bloop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17968/","id":17968,"name":"Molten Magma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18172/","id":18172,"name":"Baron Weirwulf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18243/","id":18243,"name":"'Breed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18282/","id":18282,"name":"Cobweb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18286/","id":18286,"name":"Psyko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18298/","id":18298,"name":"Manic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18299/","id":18299,"name":"Depression"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18319/","id":18319,"name":"Witchblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18358/","id":18358,"name":"Gentleman Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18399/","id":18399,"name":"Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18412/","id":18412,"name":"King Folc Grison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18413/","id":18413,"name":"General Arro Lentra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18416/","id":18416,"name":"Pang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18505/","id":18505,"name":"Scare Glow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18522/","id":18522,"name":"Stomper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18562/","id":18562,"name":"Metarchus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18568/","id":18568,"name":"Diabolique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18570/","id":18570,"name":"Monstrosity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18579/","id":18579,"name":"Speakeasy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18587/","id":18587,"name":"It The Living Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18738/","id":18738,"name":"Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18779/","id":18779,"name":"Super Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18826/","id":18826,"name":"Sally Carrera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18839/","id":18839,"name":"Sheriff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18840/","id":18840,"name":"Doc Hudson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18842/","id":18842,"name":"Sarge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18848/","id":18848,"name":"Strip Weathers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18851/","id":18851,"name":"Flo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18853/","id":18853,"name":"Dirk Ravenscore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18856/","id":18856,"name":"Fillmore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18864/","id":18864,"name":"Cynas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18865/","id":18865,"name":"Targon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18866/","id":18866,"name":"Arcadius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18867/","id":18867,"name":"Furgar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18868/","id":18868,"name":"Sapphiras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18875/","id":18875,"name":"Nisanti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19008/","id":19008,"name":"Johnny Sorrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19022/","id":19022,"name":"Amazing-Man (Clay)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19086/","id":19086,"name":"Bloodskull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19092/","id":19092,"name":"Sela Allen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19126/","id":19126,"name":"King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19180/","id":19180,"name":"The Gay Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19288/","id":19288,"name":"Zankuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19316/","id":19316,"name":"Gandara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19353/","id":19353,"name":"Shiver Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19408/","id":19408,"name":"Lulubell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19453/","id":19453,"name":"Merete Morrisey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19589/","id":19589,"name":"Drew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19676/","id":19676,"name":"Tezcatlipoca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19751/","id":19751,"name":"Hoss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19778/","id":19778,"name":"Lily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19871/","id":19871,"name":"The Wanderer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19922/","id":19922,"name":"Deviant Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19933/","id":19933,"name":"Serestus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19935/","id":19935,"name":"Lord Templar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19973/","id":19973,"name":"Redlance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19994/","id":19994,"name":"T-Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20085/","id":20085,"name":"Timebroker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20094/","id":20094,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20126/","id":20126,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20127/","id":20127,"name":"Drusilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20136/","id":20136,"name":"Galatia 9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20238/","id":20238,"name":"Bianca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20239/","id":20239,"name":"Sapphire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20261/","id":20261,"name":"Throk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20405/","id":20405,"name":"Fira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20576/","id":20576,"name":"Glot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20582/","id":20582,"name":"Kargul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20586/","id":20586,"name":"Rootar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20600/","id":20600,"name":"Molten Man-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20610/","id":20610,"name":"Ahura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20824/","id":20824,"name":"Omaha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20993/","id":20993,"name":"Lucien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21011/","id":21011,"name":"Visage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21031/","id":21031,"name":"Titania"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21041/","id":21041,"name":"Dymphna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21046/","id":21046,"name":"Corinthian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21066/","id":21066,"name":"Fashion Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21085/","id":21085,"name":"Lavia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21098/","id":21098,"name":"Fasolt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21153/","id":21153,"name":"Uncle Clem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21154/","id":21154,"name":"Raggedy Andy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21155/","id":21155,"name":"Raggedy Ann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21219/","id":21219,"name":"Vyrra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21231/","id":21231,"name":"Positron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21259/","id":21259,"name":"Chris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21283/","id":21283,"name":"Kudzu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21295/","id":21295,"name":"Alex Elder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21299/","id":21299,"name":"Victor Van Fleet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21300/","id":21300,"name":"Zophiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21321/","id":21321,"name":"Letifos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21322/","id":21322,"name":"Slizzath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21324/","id":21324,"name":"Berra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21328/","id":21328,"name":"Friday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21347/","id":21347,"name":"Legion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21350/","id":21350,"name":"Lamia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21375/","id":21375,"name":"Do-Do"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21444/","id":21444,"name":"Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21457/","id":21457,"name":"Vapora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21480/","id":21480,"name":"Saw-Horse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21493/","id":21493,"name":"Ice King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21527/","id":21527,"name":"Bombie the Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21556/","id":21556,"name":"Victor Strange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21568/","id":21568,"name":"Branko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21590/","id":21590,"name":"Chiantang the Black Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21594/","id":21594,"name":"Cyanide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21595/","id":21595,"name":"Sukh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21602/","id":21602,"name":"Dark Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21625/","id":21625,"name":"Doyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21626/","id":21626,"name":"Darla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21642/","id":21642,"name":"Grimm Chamber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21644/","id":21644,"name":"Demon-Ock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21665/","id":21665,"name":"Trixie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21668/","id":21668,"name":"Lynx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21687/","id":21687,"name":"Bolder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21696/","id":21696,"name":"Prince Thun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21703/","id":21703,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21704/","id":21704,"name":"Gruel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21755/","id":21755,"name":"Banzai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21785/","id":21785,"name":"Nyssa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21834/","id":21834,"name":"Bud Ugly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21841/","id":21841,"name":"Abner Cadaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21846/","id":21846,"name":"Shrew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21856/","id":21856,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21864/","id":21864,"name":"Big Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21887/","id":21887,"name":"Shard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21889/","id":21889,"name":"Dung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22008/","id":22008,"name":"Blue Diamond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22121/","id":22121,"name":"Smurfette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22188/","id":22188,"name":"Ra'ktar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22193/","id":22193,"name":"Yao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22197/","id":22197,"name":"Giunchiglia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22198/","id":22198,"name":"Basara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22202/","id":22202,"name":"Mizuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22213/","id":22213,"name":"Gladys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22218/","id":22218,"name":"Louis Kazagger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22241/","id":22241,"name":"Mack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22275/","id":22275,"name":"Nervous Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22298/","id":22298,"name":"Vepar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22503/","id":22503,"name":"Accasbel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22524/","id":22524,"name":"Tragg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22531/","id":22531,"name":"King of Tears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22627/","id":22627,"name":"Mongo Ironhand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22629/","id":22629,"name":"Arrakhat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22666/","id":22666,"name":"Snatcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22667/","id":22667,"name":"Susquatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22668/","id":22668,"name":"Moondog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22692/","id":22692,"name":"Alberich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22695/","id":22695,"name":"Aske"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22701/","id":22701,"name":"Woglinde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22702/","id":22702,"name":"Wellgunde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22703/","id":22703,"name":"Flosshilde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22730/","id":22730,"name":"Mime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22834/","id":22834,"name":"Shrew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22886/","id":22886,"name":"Sea Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22917/","id":22917,"name":"Loblolly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22975/","id":22975,"name":"Elessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22977/","id":22977,"name":"Prince Aalok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22981/","id":22981,"name":"Vardemis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22986/","id":22986,"name":"Queen Eltyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22990/","id":22990,"name":"Count Azzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22994/","id":22994,"name":"Nemesus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23004/","id":23004,"name":"Web-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23006/","id":23006,"name":"Exalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23007/","id":23007,"name":"Margali Szardos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23056/","id":23056,"name":"Brother Power"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23076/","id":23076,"name":"Mendicus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23077/","id":23077,"name":"Nahrees"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23078/","id":23078,"name":"Neifi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23079/","id":23079,"name":"Dinu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23080/","id":23080,"name":"Tonaja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23082/","id":23082,"name":"Woz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23090/","id":23090,"name":"Phoney Bone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23091/","id":23091,"name":"Fone Bone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23092/","id":23092,"name":"Smiley Bone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23140/","id":23140,"name":"Sligguth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23184/","id":23184,"name":"Sai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23201/","id":23201,"name":"Flow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23202/","id":23202,"name":"Warmaker One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23210/","id":23210,"name":"Ness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23226/","id":23226,"name":"Salt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23265/","id":23265,"name":"Gondolier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23273/","id":23273,"name":"Solaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23292/","id":23292,"name":"Folma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23293/","id":23293,"name":"Kraken Of Vexjor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23300/","id":23300,"name":"Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23301/","id":23301,"name":"Tormina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23335/","id":23335,"name":"Doktor Grobari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23386/","id":23386,"name":"Shalako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23387/","id":23387,"name":"Lorelei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23388/","id":23388,"name":"Orin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23389/","id":23389,"name":"Koryak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23390/","id":23390,"name":"Honsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23415/","id":23415,"name":"Nettles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23416/","id":23416,"name":"Chambliss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23417/","id":23417,"name":"Munson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23463/","id":23463,"name":"Heap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23497/","id":23497,"name":"Jei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23513/","id":23513,"name":"Dardan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23533/","id":23533,"name":"Vashti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23553/","id":23553,"name":"High Pixie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23607/","id":23607,"name":"Mr. Vasuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23634/","id":23634,"name":"Warlord Keerg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23642/","id":23642,"name":"Radiant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23648/","id":23648,"name":"Centauron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23662/","id":23662,"name":"Spought"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23683/","id":23683,"name":"Jessie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23701/","id":23701,"name":"Ingrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23724/","id":23724,"name":"Leanan Sidhe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23734/","id":23734,"name":"Lusiphur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23735/","id":23735,"name":"Jace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23736/","id":23736,"name":"Lirilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23742/","id":23742,"name":"Zaphkiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23744/","id":23744,"name":"Joe Phat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23762/","id":23762,"name":"Nebiros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23768/","id":23768,"name":"Magic Mirror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23798/","id":23798,"name":"The Wobbly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23812/","id":23812,"name":"Pfaultz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23813/","id":23813,"name":"Clius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23814/","id":23814,"name":"Nian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23815/","id":23815,"name":"Digol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23816/","id":23816,"name":"Ruby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23851/","id":23851,"name":"Thinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23852/","id":23852,"name":"The Word"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23865/","id":23865,"name":"Furfur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23868/","id":23868,"name":"B'Arr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23876/","id":23876,"name":"Claything"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23881/","id":23881,"name":"Polyphemus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23887/","id":23887,"name":"Daphne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23904/","id":23904,"name":"Buel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23908/","id":23908,"name":"Nestor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23976/","id":23976,"name":"Parintachin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23991/","id":23991,"name":"Rhombus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24013/","id":24013,"name":"Ogur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24019/","id":24019,"name":"Iosif Nichayko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24022/","id":24022,"name":"Peter Keele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24026/","id":24026,"name":"Lupe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24067/","id":24067,"name":"Nue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24068/","id":24068,"name":"Yomotsu-Shikome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24148/","id":24148,"name":"Little Toot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24174/","id":24174,"name":"Rayman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24181/","id":24181,"name":"Daemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24184/","id":24184,"name":"Firebrand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24185/","id":24185,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24187/","id":24187,"name":"Serendeh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24190/","id":24190,"name":"King Iqula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24191/","id":24191,"name":"Queen S'Ona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24214/","id":24214,"name":"Batwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24247/","id":24247,"name":"Mervyn Pumpkinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24259/","id":24259,"name":"Cassy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24291/","id":24291,"name":"Jaunty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24327/","id":24327,"name":"Nuada Silver-Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24340/","id":24340,"name":"Gigantus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24343/","id":24343,"name":"Blip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24357/","id":24357,"name":"Zip The Puppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24378/","id":24378,"name":"Widowmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24379/","id":24379,"name":"Cynthia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24380/","id":24380,"name":"Morachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24385/","id":24385,"name":"Scum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24386/","id":24386,"name":"Scuzz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24387/","id":24387,"name":"Buttercup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24421/","id":24421,"name":"Nora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24422/","id":24422,"name":"Bess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24423/","id":24423,"name":"Dulcie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24429/","id":24429,"name":"Tommy-Lee Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24449/","id":24449,"name":"Toxin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24451/","id":24451,"name":"Rhuell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24478/","id":24478,"name":"Svialoch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24479/","id":24479,"name":"Dru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24535/","id":24535,"name":"Chris Townsend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24593/","id":24593,"name":"Mor Ronne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24693/","id":24693,"name":"Hellshock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24712/","id":24712,"name":"Jack Pumpkinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24726/","id":24726,"name":"Scarecrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24740/","id":24740,"name":"Aim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24776/","id":24776,"name":"Scraps"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24827/","id":24827,"name":"Elf with a Gun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24837/","id":24837,"name":"Flatulence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24851/","id":24851,"name":"Lhiannan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24896/","id":24896,"name":"Belyllioth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24903/","id":24903,"name":"Jena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24906/","id":24906,"name":"Kordax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24933/","id":24933,"name":"Woodbine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24940/","id":24940,"name":"Chakat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24941/","id":24941,"name":"Kendra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24943/","id":24943,"name":"Shaxak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24948/","id":24948,"name":"Spite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24969/","id":24969,"name":"Floronic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24980/","id":24980,"name":"Rillaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24981/","id":24981,"name":"Grogach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24982/","id":24982,"name":"Truana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24985/","id":24985,"name":"Elianthe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25041/","id":25041,"name":"Mothman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25061/","id":25061,"name":"Bres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25131/","id":25131,"name":"Staci"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25142/","id":25142,"name":"Jeremy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25190/","id":25190,"name":"Mardu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25195/","id":25195,"name":"Jamil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25199/","id":25199,"name":"Hyleyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25200/","id":25200,"name":"Queen Of Hy-Brasil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25237/","id":25237,"name":"Two-Spear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25241/","id":25241,"name":"Willowgreen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25242/","id":25242,"name":"Rellah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25266/","id":25266,"name":"Tobias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25272/","id":25272,"name":"Darshine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25283/","id":25283,"name":"Count Ambrosio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25292/","id":25292,"name":"Prey-Pacer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25376/","id":25376,"name":"Flicker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25377/","id":25377,"name":"Nome King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25379/","id":25379,"name":"Gump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25381/","id":25381,"name":"Troll King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25417/","id":25417,"name":"Tornado Tyrant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25442/","id":25442,"name":"Crimple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25443/","id":25443,"name":"Vuall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25444/","id":25444,"name":"Tanger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25462/","id":25462,"name":"Thanatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25468/","id":25468,"name":"Beanish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25474/","id":25474,"name":"Velena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25479/","id":25479,"name":"Grande Dame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25498/","id":25498,"name":"Bounty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25506/","id":25506,"name":"Igor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25513/","id":25513,"name":"Skyhook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25516/","id":25516,"name":"Lady Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25519/","id":25519,"name":"Token"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25546/","id":25546,"name":"Moregore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25591/","id":25591,"name":"Tuc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25594/","id":25594,"name":"John Sansker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25624/","id":25624,"name":"Maxam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25666/","id":25666,"name":"Spidercide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25674/","id":25674,"name":"King Thesily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25708/","id":25708,"name":"Lucifuge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25721/","id":25721,"name":"Paradox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25722/","id":25722,"name":"Kronik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25723/","id":25723,"name":"John Crow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25737/","id":25737,"name":"Alpha the Ultimate Mutant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25762/","id":25762,"name":"Chief Largo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25795/","id":25795,"name":"Abe Sapien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25800/","id":25800,"name":"Shushen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25838/","id":25838,"name":"Orlando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25904/","id":25904,"name":"Vincent Stevens"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25942/","id":25942,"name":"Barrage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25943/","id":25943,"name":"Tusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25978/","id":25978,"name":"Backlash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25984/","id":25984,"name":"Steeljacket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25997/","id":25997,"name":"Ivolina Yugher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25999/","id":25999,"name":"Grandma Tenia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26005/","id":26005,"name":"Dumb Dumb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26010/","id":26010,"name":"Invisible Destroyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26013/","id":26013,"name":"Mikal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26015/","id":26015,"name":"Safety-Belt Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26069/","id":26069,"name":"Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26078/","id":26078,"name":"Sally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26175/","id":26175,"name":"Hitchcock Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26233/","id":26233,"name":"Rift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26242/","id":26242,"name":"Countess Vladimira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26323/","id":26323,"name":"St. Elmo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26339/","id":26339,"name":"Grizlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26351/","id":26351,"name":"Feralyce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26367/","id":26367,"name":"Master Darque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26388/","id":26388,"name":"Porcupine Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26390/","id":26390,"name":"Mazaran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26412/","id":26412,"name":"Vibhishana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26481/","id":26481,"name":"Witchfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26580/","id":26580,"name":"Iconoclast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26611/","id":26611,"name":"Spanng"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26612/","id":26612,"name":"Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26615/","id":26615,"name":"Shealth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26616/","id":26616,"name":"Gymcrack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26633/","id":26633,"name":"Salomé"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26666/","id":26666,"name":"Albina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26699/","id":26699,"name":"Big Toot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26740/","id":26740,"name":"Newstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26742/","id":26742,"name":"Dart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26743/","id":26743,"name":"Kimo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26757/","id":26757,"name":"Marilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26778/","id":26778,"name":"Echo-Chamber Chet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26805/","id":26805,"name":"Hellspawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26828/","id":26828,"name":"Celeste McCauley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26880/","id":26880,"name":"Celery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26892/","id":26892,"name":"Foxbat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26924/","id":26924,"name":"Wing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26926/","id":26926,"name":"Rainsong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26962/","id":26962,"name":"Nightwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27033/","id":27033,"name":"Echo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27034/","id":27034,"name":"Lady Dannae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27038/","id":27038,"name":"Haken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27062/","id":27062,"name":"Valindra Shadowmantle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27064/","id":27064,"name":"Kusia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27066/","id":27066,"name":"Belysra Starbreeze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27067/","id":27067,"name":"Malus Darkblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27070/","id":27070,"name":"Trag Highmountain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27071/","id":27071,"name":"Tyrygosa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27073/","id":27073,"name":"Lor'themar Theron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27077/","id":27077,"name":"Drek'Thar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27079/","id":27079,"name":"Lith Kasti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27083/","id":27083,"name":"Telandria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27174/","id":27174,"name":"Regency Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27205/","id":27205,"name":"Thorgrim Grudgebearer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27223/","id":27223,"name":"Foxfur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27236/","id":27236,"name":"Chrissie Claus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27237/","id":27237,"name":"Icestar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27303/","id":27303,"name":"Rebis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27405/","id":27405,"name":"Lyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27416/","id":27416,"name":"Dark Thanos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27428/","id":27428,"name":"Orang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27444/","id":27444,"name":"Sulochana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27454/","id":27454,"name":"Silvermist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27498/","id":27498,"name":"Elden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27503/","id":27503,"name":"Bert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27504/","id":27504,"name":"Ernie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27524/","id":27524,"name":"Demonfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27528/","id":27528,"name":"Lou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27531/","id":27531,"name":"Ratman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27542/","id":27542,"name":"Baron Ruthven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27575/","id":27575,"name":"Wren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27592/","id":27592,"name":"Iridessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27593/","id":27593,"name":"Rosetta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27594/","id":27594,"name":"Fawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27654/","id":27654,"name":"Hreidmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27704/","id":27704,"name":"Parthenope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27728/","id":27728,"name":"Torumjumala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27743/","id":27743,"name":"Jenny Greenteeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27790/","id":27790,"name":"Eligor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27798/","id":27798,"name":"Kiyohime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27821/","id":27821,"name":"Monkey King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27858/","id":27858,"name":"Doughboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27895/","id":27895,"name":"Philoctetes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27907/","id":27907,"name":"Trotsky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27946/","id":27946,"name":"Sphinx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28013/","id":28013,"name":"American Scream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28079/","id":28079,"name":"Annihilator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28140/","id":28140,"name":"Psycho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28176/","id":28176,"name":"Schrek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28215/","id":28215,"name":"Mr. Mobius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28237/","id":28237,"name":"Isabella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28238/","id":28238,"name":"The Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28239/","id":28239,"name":"Damion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28267/","id":28267,"name":"Mose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28285/","id":28285,"name":"Psynapse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28305/","id":28305,"name":"Citrus Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28308/","id":28308,"name":"Dave Dragavon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28384/","id":28384,"name":"Whore of Babylon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28427/","id":28427,"name":"Captain Erotica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28429/","id":28429,"name":"Greysire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28492/","id":28492,"name":"Cyan Bloodbane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28499/","id":28499,"name":"Verminaard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28526/","id":28526,"name":"Witch Bytch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28528/","id":28528,"name":"Pinocchia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28553/","id":28553,"name":"Surpanakha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28564/","id":28564,"name":"Gurggy Tate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28590/","id":28590,"name":"Kalthanan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28631/","id":28631,"name":"Benny The Cab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28643/","id":28643,"name":"The Notional Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28657/","id":28657,"name":"Zog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28665/","id":28665,"name":"Sluj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28669/","id":28669,"name":"Vostok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28674/","id":28674,"name":"Tyrak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28697/","id":28697,"name":"The Front Page"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28703/","id":28703,"name":"Bupu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28704/","id":28704,"name":"Lily Munster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28705/","id":28705,"name":"Coral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28756/","id":28756,"name":"Daniel Drumm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28765/","id":28765,"name":"Nth Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28804/","id":28804,"name":"Oedi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28819/","id":28819,"name":"Grouchy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28826/","id":28826,"name":"Shazana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28861/","id":28861,"name":"Cora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28889/","id":28889,"name":"Cheeks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28903/","id":28903,"name":"Father Bordia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28935/","id":28935,"name":"Narmea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28936/","id":28936,"name":"Dardanus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28937/","id":28937,"name":"Alloroc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28938/","id":28938,"name":"Bazil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28945/","id":28945,"name":"Dittomaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28963/","id":28963,"name":"Pellon Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28965/","id":28965,"name":"Captain Alfonse Kierch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28978/","id":28978,"name":"Redeemer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28984/","id":28984,"name":"Holocaust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28988/","id":28988,"name":"Kindra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29023/","id":29023,"name":"Floater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29035/","id":29035,"name":"Carcass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29089/","id":29089,"name":"Go-Gog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29094/","id":29094,"name":"Thulsa Doom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29095/","id":29095,"name":"Morophla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29096/","id":29096,"name":"Uathacht"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29113/","id":29113,"name":"Demon-Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29137/","id":29137,"name":"Homer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29155/","id":29155,"name":"Butch The Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29161/","id":29161,"name":"Princess Charma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29165/","id":29165,"name":"Grandpa Blaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29168/","id":29168,"name":"Poil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29170/","id":29170,"name":"Uncle Burnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29185/","id":29185,"name":"Captain Cadaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29204/","id":29204,"name":"Porter Scott"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29221/","id":29221,"name":"Nick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29230/","id":29230,"name":"Fantasia Faust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29231/","id":29231,"name":"Gumby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29235/","id":29235,"name":"Hilary Raintree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29243/","id":29243,"name":"Thoth-Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29247/","id":29247,"name":"Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29257/","id":29257,"name":"Giggles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29323/","id":29323,"name":"Andrew Bennett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29343/","id":29343,"name":"Crotus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29396/","id":29396,"name":"Lurgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29425/","id":29425,"name":"Red Fraggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29530/","id":29530,"name":"U-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29540/","id":29540,"name":"Zeg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29545/","id":29545,"name":"Zomuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29551/","id":29551,"name":"Kil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29564/","id":29564,"name":"Karthon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29565/","id":29565,"name":"Priestess Of Set"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29566/","id":29566,"name":"Ikthon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29568/","id":29568,"name":"Hebus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29577/","id":29577,"name":"Naga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29591/","id":29591,"name":"Tala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29621/","id":29621,"name":"Tyldak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29651/","id":29651,"name":"Teträm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29658/","id":29658,"name":"Astaroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29743/","id":29743,"name":"Urda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29878/","id":29878,"name":"Yakin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29917/","id":29917,"name":"Azazello"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29940/","id":29940,"name":"Will-o'-the-wisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29974/","id":29974,"name":"Lillith Weiss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29994/","id":29994,"name":"Argent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30070/","id":30070,"name":"Ultra Violet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30129/","id":30129,"name":"Alraune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30156/","id":30156,"name":"Flare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30177/","id":30177,"name":"Yori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30192/","id":30192,"name":"Molto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30212/","id":30212,"name":"Randolph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30253/","id":30253,"name":"Ekuar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30341/","id":30341,"name":"The Nameless One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30420/","id":30420,"name":"Grendell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30459/","id":30459,"name":"Tujiro XIV"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30480/","id":30480,"name":"Belial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30485/","id":30485,"name":"Fragment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30620/","id":30620,"name":"Zaniac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30634/","id":30634,"name":"Walking Broom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30635/","id":30635,"name":"Bushroot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30639/","id":30639,"name":"The Heap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30726/","id":30726,"name":"Jonni DC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30739/","id":30739,"name":"Slaggnbir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30747/","id":30747,"name":"Khat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30753/","id":30753,"name":"Weterlackus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30843/","id":30843,"name":"Looker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31202/","id":31202,"name":"Corum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31232/","id":31232,"name":"Black Marauder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31306/","id":31306,"name":"Glop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31321/","id":31321,"name":"Chi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31343/","id":31343,"name":"Quantis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31502/","id":31502,"name":"Crudlick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31535/","id":31535,"name":"The Idiot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31536/","id":31536,"name":"White Light"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31567/","id":31567,"name":"Edward"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31568/","id":31568,"name":"Abigail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31583/","id":31583,"name":"Brainy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31592/","id":31592,"name":"Diana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31632/","id":31632,"name":"Grimbat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31635/","id":31635,"name":"Ms. Mystic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31698/","id":31698,"name":"Hanrak Of Leenn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31723/","id":31723,"name":"Bizarro-Joker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31726/","id":31726,"name":"Bizarro-Shaggy Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31747/","id":31747,"name":"Lord Voll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31774/","id":31774,"name":"Captain Flag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31793/","id":31793,"name":"Aven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31795/","id":31795,"name":"Ozel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31800/","id":31800,"name":"Hellequin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31845/","id":31845,"name":"Ursula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31886/","id":31886,"name":"Aftermath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31889/","id":31889,"name":"Neon the Unknown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31904/","id":31904,"name":"The Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31973/","id":31973,"name":"Arlo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31992/","id":31992,"name":"Dr. Haunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32015/","id":32015,"name":"Captain Durzzak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32016/","id":32016,"name":"Raksos B’Quen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32017/","id":32017,"name":"Alhambra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32037/","id":32037,"name":"Winnie the Pooh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32048/","id":32048,"name":"Horvald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32049/","id":32049,"name":"Grolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32052/","id":32052,"name":"Aerivar XVIII"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32102/","id":32102,"name":"Cableman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32103/","id":32103,"name":"Spyderr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32104/","id":32104,"name":"Serpentina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32106/","id":32106,"name":"Aurora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32107/","id":32107,"name":"Solar Dynamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32109/","id":32109,"name":"Titaness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32129/","id":32129,"name":"Spider Spry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32130/","id":32130,"name":"Princess Fen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32148/","id":32148,"name":"Decibel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32150/","id":32150,"name":"Electron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32154/","id":32154,"name":"Chimera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32198/","id":32198,"name":"Power Pirate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32202/","id":32202,"name":"Bigfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32262/","id":32262,"name":"Vertzebelion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32268/","id":32268,"name":"Jackdaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32300/","id":32300,"name":"Haïgwépa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32301/","id":32301,"name":"Estregone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32302/","id":32302,"name":"Ceres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32303/","id":32303,"name":"Mala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32321/","id":32321,"name":"Belaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32322/","id":32322,"name":"Granch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32376/","id":32376,"name":"Warren Griffith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32425/","id":32425,"name":"Girl Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32427/","id":32427,"name":"Leon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32431/","id":32431,"name":"Ogren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32434/","id":32434,"name":"Mary, Queen of Blood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32493/","id":32493,"name":"Tristan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32501/","id":32501,"name":"Rook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32521/","id":32521,"name":"The Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32522/","id":32522,"name":"Chain Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32559/","id":32559,"name":"Cookie Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32578/","id":32578,"name":"Hector Helvetica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32732/","id":32732,"name":"Fairgold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32798/","id":32798,"name":"Floating Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32823/","id":32823,"name":"Sock Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32848/","id":32848,"name":"Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32866/","id":32866,"name":"Ch'i-Lin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32918/","id":32918,"name":"Dark-Crawler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32980/","id":32980,"name":"Demonatrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33133/","id":33133,"name":"Rumpelstiltskin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33277/","id":33277,"name":"Diadem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33283/","id":33283,"name":"Khordes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33285/","id":33285,"name":"Naramsin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33325/","id":33325,"name":"Gremlin Gus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33331/","id":33331,"name":"Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33429/","id":33429,"name":"Mistress Prem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33517/","id":33517,"name":"Fashima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33519/","id":33519,"name":"The Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33521/","id":33521,"name":"Ravenna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33553/","id":33553,"name":"Captain Fate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33557/","id":33557,"name":"Ligea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33623/","id":33623,"name":"Professor Zapotec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33650/","id":33650,"name":"Elephantine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33778/","id":33778,"name":"Doorman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33789/","id":33789,"name":"Purple Ogres Of La Hacienda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33813/","id":33813,"name":"Cheyanne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33814/","id":33814,"name":"Qwami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33857/","id":33857,"name":"Crash Bandicoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33906/","id":33906,"name":"Adonis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33929/","id":33929,"name":"Doctor Horus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33964/","id":33964,"name":"Swine-Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34006/","id":34006,"name":"Narg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34112/","id":34112,"name":"Stephen Tuval"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34123/","id":34123,"name":"El Espectro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34152/","id":34152,"name":"K'chama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34194/","id":34194,"name":"Buttview"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34322/","id":34322,"name":"Bizarro-Morgan Edge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34348/","id":34348,"name":"Atleza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34473/","id":34473,"name":"Pinocchio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34521/","id":34521,"name":"Khadar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34522/","id":34522,"name":"Haemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34527/","id":34527,"name":"Judge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34622/","id":34622,"name":"Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34655/","id":34655,"name":"Peanut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34661/","id":34661,"name":"Erishad's Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34704/","id":34704,"name":"Britanicus Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34709/","id":34709,"name":"Vampire Zuvembi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34753/","id":34753,"name":"Devourer Of The Dead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34766/","id":34766,"name":"King Kull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34866/","id":34866,"name":"Kaecillius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34886/","id":34886,"name":"Cyclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34948/","id":34948,"name":"Dromedan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34949/","id":34949,"name":"Tutinax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35001/","id":35001,"name":"Xoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35002/","id":35002,"name":"Leron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35016/","id":35016,"name":"Lightning McQueen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35031/","id":35031,"name":"The Kraken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35039/","id":35039,"name":"Host"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35075/","id":35075,"name":"Velanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35117/","id":35117,"name":"Pursuer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35118/","id":35118,"name":"Olivier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35143/","id":35143,"name":"The Cuckoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35147/","id":35147,"name":"The Empathoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35171/","id":35171,"name":"First Minister Kamarand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35197/","id":35197,"name":"Ayrn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35240/","id":35240,"name":"Maha Yogi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35282/","id":35282,"name":"Man-Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35292/","id":35292,"name":"Sabnock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35316/","id":35316,"name":"Lizzie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35326/","id":35326,"name":"Sporr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35342/","id":35342,"name":"Barracuda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35404/","id":35404,"name":"Agron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35408/","id":35408,"name":"The Count"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35451/","id":35451,"name":"Proffit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35495/","id":35495,"name":"Trogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35499/","id":35499,"name":"Topographical Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35538/","id":35538,"name":"Tral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35557/","id":35557,"name":"Man-Tiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35602/","id":35602,"name":"Mack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35631/","id":35631,"name":"Karanada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35652/","id":35652,"name":"Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35653/","id":35653,"name":"Guido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35654/","id":35654,"name":"Luigi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35655/","id":35655,"name":"Mario"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35900/","id":35900,"name":"Grok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35944/","id":35944,"name":"Belaric Marcosa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35950/","id":35950,"name":"Dansker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35977/","id":35977,"name":"Bat-Thing From The Tower In The High Mist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36008/","id":36008,"name":"Mr. Dedd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36012/","id":36012,"name":"Countess Von Bludd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36014/","id":36014,"name":"Saru-San"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36023/","id":36023,"name":"Centaurius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36032/","id":36032,"name":"Fish Lecan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36077/","id":36077,"name":"E-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36085/","id":36085,"name":"Kor-Konn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36089/","id":36089,"name":"Helleyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36095/","id":36095,"name":"Alchemoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36132/","id":36132,"name":"Phantom Horseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36148/","id":36148,"name":"Winnie The Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36248/","id":36248,"name":"Geezer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36254/","id":36254,"name":"Agahnim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36284/","id":36284,"name":"Bealzabella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36286/","id":36286,"name":"Janus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36289/","id":36289,"name":"Verdelet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36304/","id":36304,"name":"Shokkoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36315/","id":36315,"name":"Laz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36320/","id":36320,"name":"Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36398/","id":36398,"name":"Laurox The Lecherous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36400/","id":36400,"name":"Dromek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36426/","id":36426,"name":"Xaltotun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36428/","id":36428,"name":"Thakos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36432/","id":36432,"name":"Silent One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36433/","id":36433,"name":"Tavashtri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36527/","id":36527,"name":"Fleur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36539/","id":36539,"name":"Grigar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36559/","id":36559,"name":"Ternak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36560/","id":36560,"name":"Lilitu the Werewoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36607/","id":36607,"name":"Avalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36619/","id":36619,"name":"Lenora Lemaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36660/","id":36660,"name":"Brilliant Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36707/","id":36707,"name":"Attu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36778/","id":36778,"name":"Mr. Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36815/","id":36815,"name":"Boss Smiley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36820/","id":36820,"name":"Rychen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36841/","id":36841,"name":"Elanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36842/","id":36842,"name":"Orrek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36846/","id":36846,"name":"War-Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36870/","id":36870,"name":"Jake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36921/","id":36921,"name":"King Kamuu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36923/","id":36923,"name":"Ocar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36924/","id":36924,"name":"Zapal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36929/","id":36929,"name":"Khobra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36937/","id":36937,"name":"Phantom Quarterback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36958/","id":36958,"name":"Shadow Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36997/","id":36997,"name":"Lorvex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37004/","id":37004,"name":"Tex Dinoco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37005/","id":37005,"name":"Bob Cutlass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37006/","id":37006,"name":"Darrell Cartrip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37012/","id":37012,"name":"Chick Hicks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37061/","id":37061,"name":"Half-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37202/","id":37202,"name":"Galactic Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37221/","id":37221,"name":"Dr. Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37228/","id":37228,"name":"Zurline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37290/","id":37290,"name":"Shakkoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37312/","id":37312,"name":"Haukk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37393/","id":37393,"name":"Elric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37394/","id":37394,"name":"Prince Gaynor The Damned"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37411/","id":37411,"name":"Sheriff Woody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37491/","id":37491,"name":"Lock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37709/","id":37709,"name":"Toadwart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37729/","id":37729,"name":"Weasel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37730/","id":37730,"name":"Lady Tuvia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37848/","id":37848,"name":"Winged One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37860/","id":37860,"name":"The Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37928/","id":37928,"name":"Ariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37974/","id":37974,"name":"Oogie Boogie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37975/","id":37975,"name":"Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37977/","id":37977,"name":"Mayor of Halloween Town"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37978/","id":37978,"name":"Dr. Finkelstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38013/","id":38013,"name":"Jerro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38029/","id":38029,"name":"The Old Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38071/","id":38071,"name":"Draculina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38075/","id":38075,"name":"Chrys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38092/","id":38092,"name":"Kormok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38226/","id":38226,"name":"King Krono"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38292/","id":38292,"name":"Aquababy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38294/","id":38294,"name":"Jafar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38295/","id":38295,"name":"Bizarro-Perry White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38296/","id":38296,"name":"Bizarro-Krypto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38301/","id":38301,"name":"Bizarro-Kltpzyxm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38308/","id":38308,"name":"Bizarro-Lois Lane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38309/","id":38309,"name":"Bizarro Lana Lang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38310/","id":38310,"name":"Bizarro Lucy Lane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38321/","id":38321,"name":"Abominable Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38406/","id":38406,"name":"Shape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38467/","id":38467,"name":"Ghost Pilot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38491/","id":38491,"name":"The Thing from 40,000 A.D."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38508/","id":38508,"name":"Hestera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38509/","id":38509,"name":"Olin Parr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38577/","id":38577,"name":"The Sizzler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38627/","id":38627,"name":"Mother Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38642/","id":38642,"name":"Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38650/","id":38650,"name":"Kamorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38671/","id":38671,"name":"Sponge Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38695/","id":38695,"name":"Nemesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38698/","id":38698,"name":"The Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38790/","id":38790,"name":"Volcano Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38812/","id":38812,"name":"Helio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38832/","id":38832,"name":"Katerina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38838/","id":38838,"name":"Olan Parr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38840/","id":38840,"name":"Frankenstein's Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38880/","id":38880,"name":"Seaweed Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38915/","id":38915,"name":"Gargantus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38926/","id":38926,"name":"Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38935/","id":38935,"name":"Eganko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39013/","id":39013,"name":"Atrelegis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39024/","id":39024,"name":"Zoraster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39079/","id":39079,"name":"Sindri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39148/","id":39148,"name":"Pit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39179/","id":39179,"name":"Alter-Ego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39251/","id":39251,"name":"Mr. Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39293/","id":39293,"name":"King Neptune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39393/","id":39393,"name":"Tron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39432/","id":39432,"name":"Magic Carpet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39449/","id":39449,"name":"Monster From Mars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39518/","id":39518,"name":"Molok Mak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39547/","id":39547,"name":"The Crawling Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39551/","id":39551,"name":"I.Q."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39633/","id":39633,"name":"Gor-Kill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39672/","id":39672,"name":"Tyanon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39719/","id":39719,"name":"Mickey Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39746/","id":39746,"name":"Mokey Fraggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39748/","id":39748,"name":"Uno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39750/","id":39750,"name":"Wembley Fraggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39770/","id":39770,"name":"The Man Who Wears His Ego on the Outside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39771/","id":39771,"name":"The Fated Cajun Bride of 1900"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39774/","id":39774,"name":"Casey Jr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39780/","id":39780,"name":"Humpty Dumpty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39852/","id":39852,"name":"Jezebel and Gretchen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39853/","id":39853,"name":"Peter Pan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39858/","id":39858,"name":"Blue Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39879/","id":39879,"name":"Wilhelm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39880/","id":39880,"name":"Nakoruru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39892/","id":39892,"name":"Due"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40076/","id":40076,"name":"Ravange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40137/","id":40137,"name":"Tha-Korr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40260/","id":40260,"name":"Masterman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40366/","id":40366,"name":"Fafnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40520/","id":40520,"name":"Debrii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40527/","id":40527,"name":"Dr. Manhattan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40612/","id":40612,"name":"Dante"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40613/","id":40613,"name":"Vergil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40745/","id":40745,"name":"Goten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40980/","id":40980,"name":"Ellis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41050/","id":41050,"name":"Shithead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41054/","id":41054,"name":"Fuckwit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41125/","id":41125,"name":"Aquarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41226/","id":41226,"name":"Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41245/","id":41245,"name":"Aspen Matthews"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41254/","id":41254,"name":"Cannon Hawke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41255/","id":41255,"name":"Killian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41256/","id":41256,"name":"Kiani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41312/","id":41312,"name":"Primogenitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41313/","id":41313,"name":"Finn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41346/","id":41346,"name":"Lady Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41349/","id":41349,"name":"Baha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41355/","id":41355,"name":"Bruenor Battlehammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41414/","id":41414,"name":"Jolen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41415/","id":41415,"name":"Alaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41416/","id":41416,"name":"San"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41440/","id":41440,"name":"Daze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41451/","id":41451,"name":"Casque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41492/","id":41492,"name":"Taras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41535/","id":41535,"name":"Goliath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41538/","id":41538,"name":"Demona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41540/","id":41540,"name":"Hudson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41541/","id":41541,"name":"Broadway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41542/","id":41542,"name":"Lexington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41543/","id":41543,"name":"Brooklyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41562/","id":41562,"name":"Rogue Trooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41579/","id":41579,"name":"Evil Ernie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41642/","id":41642,"name":"Anita Blake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41645/","id":41645,"name":"Theresa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41646/","id":41646,"name":"Jean-Claude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41653/","id":41653,"name":"Valentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41726/","id":41726,"name":"Black Axe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41727/","id":41727,"name":"Bloodseed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41738/","id":41738,"name":"Ero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41756/","id":41756,"name":"Shathra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41763/","id":41763,"name":"Klyzyzk Klzntplkz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41820/","id":41820,"name":"Blackout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41919/","id":41919,"name":"Mogo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41945/","id":41945,"name":"Lilith Drake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41990/","id":41990,"name":"Kingmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42075/","id":42075,"name":"Hanged Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42098/","id":42098,"name":"The Living Nightmare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42100/","id":42100,"name":"Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42175/","id":42175,"name":"Eucrastia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42243/","id":42243,"name":"Scorpion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42244/","id":42244,"name":"Sub-Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42245/","id":42245,"name":"Noob Saibot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42252/","id":42252,"name":"The Mask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42279/","id":42279,"name":"Willie McCoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42285/","id":42285,"name":"Aubrey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42309/","id":42309,"name":"Beautie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42406/","id":42406,"name":"Shredder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42583/","id":42583,"name":"Sabbac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42622/","id":42622,"name":"Sludge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42661/","id":42661,"name":"Ssith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42772/","id":42772,"name":"Tink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42795/","id":42795,"name":"Rani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42811/","id":42811,"name":"Robert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42814/","id":42814,"name":"Buzz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42846/","id":42846,"name":"Cloud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42902/","id":42902,"name":"Kestrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42904/","id":42904,"name":"Milk and Cheese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42920/","id":42920,"name":"Raksasa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42967/","id":42967,"name":"Grace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42979/","id":42979,"name":"Stephen Loss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42983/","id":42983,"name":"Slapstick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43101/","id":43101,"name":"Mister Smartie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43172/","id":43172,"name":"Rahm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43187/","id":43187,"name":"Khiva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43231/","id":43231,"name":"Devi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43371/","id":43371,"name":"Inuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43413/","id":43413,"name":"Asteroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43468/","id":43468,"name":"Homer's Conscience"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43472/","id":43472,"name":"Drizzt Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43473/","id":43473,"name":"Belwar Dissengulp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43474/","id":43474,"name":"Dinin Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43475/","id":43475,"name":"Faceless One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43477/","id":43477,"name":"Hatch'net"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43479/","id":43479,"name":"Kelnozz Kenafen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43480/","id":43480,"name":"Malice Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43481/","id":43481,"name":"Masoj Hun'ett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43482/","id":43482,"name":"Yvonnel Baenre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43483/","id":43483,"name":"Briza Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43484/","id":43484,"name":"Maya Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43485/","id":43485,"name":"Nalfein Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43486/","id":43486,"name":"Sinafey Hun'ett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43487/","id":43487,"name":"Vierna Do'urden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43488/","id":43488,"name":"Zaknafein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43531/","id":43531,"name":"D.O.A."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43554/","id":43554,"name":"King Schnicktick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43555/","id":43555,"name":"Firble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43556/","id":43556,"name":"Clacker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43560/","id":43560,"name":"Jarlaxle Baenre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43567/","id":43567,"name":"Rizzen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43601/","id":43601,"name":"Warren Mears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43638/","id":43638,"name":"Catwalk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43640/","id":43640,"name":"Dice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43641/","id":43641,"name":"Moonstomp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43642/","id":43642,"name":"Riot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43643/","id":43643,"name":"Ryder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43680/","id":43680,"name":"Ulgulu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43683/","id":43683,"name":"Kempfana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43684/","id":43684,"name":"Tephanis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43696/","id":43696,"name":"Kellindil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43697/","id":43697,"name":"Fret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43741/","id":43741,"name":"Graul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43744/","id":43744,"name":"Morrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43745/","id":43745,"name":"Rikuo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43751/","id":43751,"name":"Walter Declun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43756/","id":43756,"name":"Kratorr The Invincible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43793/","id":43793,"name":"Victor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43799/","id":43799,"name":"Demitri Maximoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43909/","id":43909,"name":"Kool-Aid Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44003/","id":44003,"name":"Balin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44007/","id":44007,"name":"Dwalin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44011/","id":44011,"name":"Thorin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44019/","id":44019,"name":"Oin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44020/","id":44020,"name":"Gloin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44021/","id":44021,"name":"Bifur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44022/","id":44022,"name":"Fili"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44023/","id":44023,"name":"Bofur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44024/","id":44024,"name":"Ori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44025/","id":44025,"name":"Kili"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44026/","id":44026,"name":"Bombur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44030/","id":44030,"name":"Leshy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44036/","id":44036,"name":"Dori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44037/","id":44037,"name":"Nori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44040/","id":44040,"name":"Bannik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44041/","id":44041,"name":"Domovoi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44103/","id":44103,"name":"Hsien-Ko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44106/","id":44106,"name":"Sasquatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44107/","id":44107,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44108/","id":44108,"name":"Jedah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44109/","id":44109,"name":"Q-Bee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44110/","id":44110,"name":"Dhylec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44118/","id":44118,"name":"Tarbeige"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44144/","id":44144,"name":"Carthus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44145/","id":44145,"name":"Veritus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44154/","id":44154,"name":"Kalikya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44223/","id":44223,"name":"Regis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44349/","id":44349,"name":"Senschi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44350/","id":44350,"name":"Somnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44351/","id":44351,"name":"Kurani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44352/","id":44352,"name":"Desidera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44353/","id":44353,"name":"Marista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44354/","id":44354,"name":"Ultarnt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44356/","id":44356,"name":"Elejea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44358/","id":44358,"name":"Rexel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44359/","id":44359,"name":"Johnny C"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44360/","id":44360,"name":"Ikarys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44361/","id":44361,"name":"Arvak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44363/","id":44363,"name":"Videmus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44421/","id":44421,"name":"Nallo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44483/","id":44483,"name":"Dr Dough-Naught"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44524/","id":44524,"name":"Vivi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44536/","id":44536,"name":"Dreamqueen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44559/","id":44559,"name":"Mister Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44675/","id":44675,"name":"Sabina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44697/","id":44697,"name":"Shadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44714/","id":44714,"name":"Jim Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44715/","id":44715,"name":"Templar Richards"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44716/","id":44716,"name":"Wilbur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44733/","id":44733,"name":"Vidia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44811/","id":44811,"name":"Vorty Krill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44848/","id":44848,"name":"Connor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44949/","id":44949,"name":"Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44954/","id":44954,"name":"Malcolm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44958/","id":44958,"name":"Devourer of Souls"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45037/","id":45037,"name":"Minxi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45047/","id":45047,"name":"Sol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45114/","id":45114,"name":"Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45116/","id":45116,"name":"Superman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45136/","id":45136,"name":"Seras Victoria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45174/","id":45174,"name":"Star Sapphire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45193/","id":45193,"name":"Lyla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45235/","id":45235,"name":"Coheed Kilgannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45237/","id":45237,"name":"Cambria Kilgannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45425/","id":45425,"name":"Harlan Draka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45440/","id":45440,"name":"Igor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45447/","id":45447,"name":"Hive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45493/","id":45493,"name":"Shippo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45589/","id":45589,"name":"Roxas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45592/","id":45592,"name":"Lorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45593/","id":45593,"name":"Luke Valentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45600/","id":45600,"name":"Jan Valentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45621/","id":45621,"name":"Hybrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45633/","id":45633,"name":"The Black Stranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45649/","id":45649,"name":"Khosatral Khel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45677/","id":45677,"name":"Zechariah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45701/","id":45701,"name":"Kagura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45703/","id":45703,"name":"Koga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45709/","id":45709,"name":"E.V.A"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45713/","id":45713,"name":"Isolationist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45719/","id":45719,"name":"Mr. Popo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45722/","id":45722,"name":"Minotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45725/","id":45725,"name":"Wilhelm Ryan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45763/","id":45763,"name":"Biggrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45764/","id":45764,"name":"Brentwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45765/","id":45765,"name":"Burbank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45766/","id":45766,"name":"Delilah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45767/","id":45767,"name":"Hollywood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45768/","id":45768,"name":"Malibu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45779/","id":45779,"name":"Thailog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45840/","id":45840,"name":"Griff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45845/","id":45845,"name":"Seph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45846/","id":45846,"name":"Nala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45847/","id":45847,"name":"Dex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45848/","id":45848,"name":"Faye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45849/","id":45849,"name":"Troy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45858/","id":45858,"name":"Onyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45905/","id":45905,"name":"Yama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45978/","id":45978,"name":"Sschaaronn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45991/","id":45991,"name":"Dead Dave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45992/","id":45992,"name":"Adam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46042/","id":46042,"name":"Genbu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46043/","id":46043,"name":"Byakko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46044/","id":46044,"name":"Seiryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46045/","id":46045,"name":"Suzaku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46050/","id":46050,"name":"Toguro Ani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46051/","id":46051,"name":"Bui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46052/","id":46052,"name":"Karasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46054/","id":46054,"name":"Shishiwakamaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46055/","id":46055,"name":"Kuro Momotaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46056/","id":46056,"name":"Makintaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46057/","id":46057,"name":"Ura Urashima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46059/","id":46059,"name":"Suzuka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46107/","id":46107,"name":"Subbie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46130/","id":46130,"name":"Quoi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46177/","id":46177,"name":"Skinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46192/","id":46192,"name":"Rip van Winkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46193/","id":46193,"name":"Kon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46210/","id":46210,"name":"Naraku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46213/","id":46213,"name":"Jaken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46228/","id":46228,"name":"Jin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46229/","id":46229,"name":"Toya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46230/","id":46230,"name":"Gama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46231/","id":46231,"name":"Princess Zelda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46235/","id":46235,"name":"Bakken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46236/","id":46236,"name":"Risho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46244/","id":46244,"name":"Thok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46252/","id":46252,"name":"Rinku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46253/","id":46253,"name":"Roto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46254/","id":46254,"name":"Zeru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46255/","id":46255,"name":"Chu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46272/","id":46272,"name":"Super-Slave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46291/","id":46291,"name":"Yomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46292/","id":46292,"name":"Mukuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46293/","id":46293,"name":"Raizen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46328/","id":46328,"name":"Kirin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46329/","id":46329,"name":"Hokushin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46346/","id":46346,"name":"Anya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46388/","id":46388,"name":"Girth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46415/","id":46415,"name":"Kore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46443/","id":46443,"name":"Rando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46446/","id":46446,"name":"Goki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46449/","id":46449,"name":"Miyuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46450/","id":46450,"name":"Inmaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46451/","id":46451,"name":"Gokumonki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46477/","id":46477,"name":"Tri-Clops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46486/","id":46486,"name":"Natsume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46488/","id":46488,"name":"Kujou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46489/","id":46489,"name":"Souketsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46490/","id":46490,"name":"Enki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46491/","id":46491,"name":"Poppa Rocks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46499/","id":46499,"name":"Brass Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46565/","id":46565,"name":"Doc Benton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46594/","id":46594,"name":"Yamanh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46600/","id":46600,"name":"Prilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46610/","id":46610,"name":"Oz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46624/","id":46624,"name":"Chinatsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46627/","id":46627,"name":"Enitharmon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46631/","id":46631,"name":"Bloodthirst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46682/","id":46682,"name":"Rahger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46708/","id":46708,"name":"Thornn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46729/","id":46729,"name":"Shayde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46741/","id":46741,"name":"Destrii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46754/","id":46754,"name":"Rubach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46755/","id":46755,"name":"Topher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46776/","id":46776,"name":"Alter Ego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46792/","id":46792,"name":"Charzin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46796/","id":46796,"name":"Baron Von Donut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46809/","id":46809,"name":"Psychild"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46814/","id":46814,"name":"Spiders Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46840/","id":46840,"name":"Yagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46850/","id":46850,"name":"Young Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46864/","id":46864,"name":"KhLΘG"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46866/","id":46866,"name":"X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46868/","id":46868,"name":"Zzutak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46872/","id":46872,"name":"Slobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46900/","id":46900,"name":"Amir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46942/","id":46942,"name":"Ego-Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46987/","id":46987,"name":"Fantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47000/","id":47000,"name":"Phenomena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47020/","id":47020,"name":"Chak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47021/","id":47021,"name":"Hellrazer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47049/","id":47049,"name":"Clone Commander Neyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47113/","id":47113,"name":"Quislet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47117/","id":47117,"name":"Loony Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47143/","id":47143,"name":"Predator X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47166/","id":47166,"name":"Kaballa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47247/","id":47247,"name":"Sweetums"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47261/","id":47261,"name":"Infinite Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47345/","id":47345,"name":"Smiley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47363/","id":47363,"name":"Sun-Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47398/","id":47398,"name":"Dogface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47399/","id":47399,"name":"Tower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47400/","id":47400,"name":"Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47401/","id":47401,"name":"Charmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47402/","id":47402,"name":"Double-Header"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47408/","id":47408,"name":"Kartag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47494/","id":47494,"name":"Deadfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47516/","id":47516,"name":"Seraph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47559/","id":47559,"name":"Uncle Iroh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47560/","id":47560,"name":"Methos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47590/","id":47590,"name":"Zhered-Na"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47616/","id":47616,"name":"Beck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47644/","id":47644,"name":"Gossamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47734/","id":47734,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47794/","id":47794,"name":"Simon Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47874/","id":47874,"name":"Darth Nihilus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47915/","id":47915,"name":"Tyndall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47916/","id":47916,"name":"Mud-Butt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47917/","id":47917,"name":"Lord Majister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47919/","id":47919,"name":"Murkandor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47922/","id":47922,"name":"Wulfbuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47928/","id":47928,"name":"Eben Olemaun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47967/","id":47967,"name":"Bizarro-Flash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47968/","id":47968,"name":"Bizarro-Lex Luthor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47969/","id":47969,"name":"Bizarro-Hawkgirl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47971/","id":47971,"name":"Yellow Lantern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47973/","id":47973,"name":"Bizarro-Aquaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47974/","id":47974,"name":"Bizarro-Green Arrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47975/","id":47975,"name":"Bizarro-Doomsday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47976/","id":47976,"name":"Bizarro-Jimmy Olsen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47977/","id":47977,"name":"Bizarro-Brainiac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47982/","id":47982,"name":"Stella Olemaun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48012/","id":48012,"name":"Drywall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48021/","id":48021,"name":"Gecko Moria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48040/","id":48040,"name":"Y'Garon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48071/","id":48071,"name":"Sammael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48084/","id":48084,"name":"Wormwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48137/","id":48137,"name":"Zoran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48147/","id":48147,"name":"The Old Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48256/","id":48256,"name":"Xander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48258/","id":48258,"name":"Goth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48259/","id":48259,"name":"Ngh the Unspeakable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48402/","id":48402,"name":"Marlow Roderick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48404/","id":48404,"name":"Vicente"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48419/","id":48419,"name":"Dev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48420/","id":48420,"name":"Ange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48421/","id":48421,"name":"Ember Silva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48429/","id":48429,"name":"Dane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48430/","id":48430,"name":"Yuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48441/","id":48441,"name":"Miya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48448/","id":48448,"name":"Ragman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48540/","id":48540,"name":"Agent Norris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48552/","id":48552,"name":"Elder Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48570/","id":48570,"name":"Undertaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48588/","id":48588,"name":"Charlotte Pincer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48591/","id":48591,"name":"Brianna Diggers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48592/","id":48592,"name":"Maurglon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48598/","id":48598,"name":"Genn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48623/","id":48623,"name":"Valeera Sanguinar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48624/","id":48624,"name":"Broll Bearmantle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48644/","id":48644,"name":"Sear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48648/","id":48648,"name":"The Gargoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48659/","id":48659,"name":"Doctor Doomsday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48673/","id":48673,"name":"The Antithesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48733/","id":48733,"name":"Zorin Blitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48741/","id":48741,"name":"Tark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48742/","id":48742,"name":"Mesha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48745/","id":48745,"name":"El Morte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48781/","id":48781,"name":"Cremator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48798/","id":48798,"name":"Brande"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48799/","id":48799,"name":"Siphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48800/","id":48800,"name":"Thalassar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48801/","id":48801,"name":"Kreeg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48802/","id":48802,"name":"Marqueses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48808/","id":48808,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48847/","id":48847,"name":"Cyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48856/","id":48856,"name":"Lich King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48857/","id":48857,"name":"Jetta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48859/","id":48859,"name":"Sander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48862/","id":48862,"name":"Thabian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48901/","id":48901,"name":"Proof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48929/","id":48929,"name":"Ab-Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48930/","id":48930,"name":"Persephone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48938/","id":48938,"name":"Ashe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49001/","id":49001,"name":"Zibarro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49053/","id":49053,"name":"Karas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49075/","id":49075,"name":"Tog-Mar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49077/","id":49077,"name":"Megaman.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49085/","id":49085,"name":"Rakshasa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49089/","id":49089,"name":"Trish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49135/","id":49135,"name":"Terence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49140/","id":49140,"name":"Jingle Belle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49148/","id":49148,"name":"Chairface Chippendale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49150/","id":49150,"name":"Stoolface Chippendale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49229/","id":49229,"name":"Johnny Wingless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49317/","id":49317,"name":"Alphonse Elric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49404/","id":49404,"name":"Dire Wreath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49407/","id":49407,"name":"The Candyman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49416/","id":49416,"name":"Mileena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49424/","id":49424,"name":"Smoke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49425/","id":49425,"name":"Kintaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49499/","id":49499,"name":"Detective Fantôme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49595/","id":49595,"name":"Halibastard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49612/","id":49612,"name":"Firebreather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49629/","id":49629,"name":"King Lizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49630/","id":49630,"name":"Iguana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49631/","id":49631,"name":"Salamander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49632/","id":49632,"name":"Komodo Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49691/","id":49691,"name":"Dkrtzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49696/","id":49696,"name":"Volk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49761/","id":49761,"name":"Král Groznyj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49766/","id":49766,"name":"Arlong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49786/","id":49786,"name":"Esphares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49787/","id":49787,"name":"Tariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49789/","id":49789,"name":"Hafaza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49810/","id":49810,"name":"Rapture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49824/","id":49824,"name":"Ansem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49887/","id":49887,"name":"Xemnas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49912/","id":49912,"name":"Bad Timing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49925/","id":49925,"name":"Choopie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49926/","id":49926,"name":"Big"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49942/","id":49942,"name":"Dark Legion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49943/","id":49943,"name":"SpitFire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49957/","id":49957,"name":"MG"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49958/","id":49958,"name":"Molly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49965/","id":49965,"name":"Bat-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49995/","id":49995,"name":"Karl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50024/","id":50024,"name":"Jack of Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50025/","id":50025,"name":"Bagman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50053/","id":50053,"name":"Helix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50054/","id":50054,"name":"Torque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50069/","id":50069,"name":"Bass.EXE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50077/","id":50077,"name":"Raw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50078/","id":50078,"name":"Dr. Weird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50172/","id":50172,"name":"Aberdeen Angus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50209/","id":50209,"name":"Durok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50210/","id":50210,"name":"Xaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50212/","id":50212,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50224/","id":50224,"name":"Lady of Light"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50225/","id":50225,"name":"Deathwish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50262/","id":50262,"name":"Wrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50263/","id":50263,"name":"Xaldin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50264/","id":50264,"name":"Vexen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50265/","id":50265,"name":"Axel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50266/","id":50266,"name":"Lexaeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50267/","id":50267,"name":"Saïx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50268/","id":50268,"name":"Zexion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50269/","id":50269,"name":"Xigbar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50270/","id":50270,"name":"Demyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50271/","id":50271,"name":"Marluxia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50272/","id":50272,"name":"Luxord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50273/","id":50273,"name":"Larxene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50274/","id":50274,"name":"Elwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50279/","id":50279,"name":"The Alternate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50299/","id":50299,"name":"Father"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50300/","id":50300,"name":"Lust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50301/","id":50301,"name":"Envy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50302/","id":50302,"name":"Gluttony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50303/","id":50303,"name":"Pride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50304/","id":50304,"name":"Sloth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50305/","id":50305,"name":"Greed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50337/","id":50337,"name":"Noema Presto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50348/","id":50348,"name":"Esa-Corla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50349/","id":50349,"name":"Weneth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50355/","id":50355,"name":"Atrocity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50356/","id":50356,"name":"Ranter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50391/","id":50391,"name":"Shendu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50422/","id":50422,"name":"Belthera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50476/","id":50476,"name":"Rehgar Earthfury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50512/","id":50512,"name":"Old Man Zangetsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50604/","id":50604,"name":"Maaldor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50606/","id":50606,"name":"Overman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50671/","id":50671,"name":"Queen Beryl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50711/","id":50711,"name":"The Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50786/","id":50786,"name":"The Captain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50787/","id":50787,"name":"Tubalcain Alhambra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50839/","id":50839,"name":"Moot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50840/","id":50840,"name":"The Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50869/","id":50869,"name":"Abnegazar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50870/","id":50870,"name":"Rath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50877/","id":50877,"name":"Helios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50913/","id":50913,"name":"Happy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50950/","id":50950,"name":"Mr. Eff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50978/","id":50978,"name":"C.C."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50988/","id":50988,"name":"Anti-Being"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51007/","id":51007,"name":"Tylot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51051/","id":51051,"name":"Lyth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51069/","id":51069,"name":"Moonchild"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51080/","id":51080,"name":"King-in-Chains"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51092/","id":51092,"name":"Scavengers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51184/","id":51184,"name":"Buzz-Off"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51260/","id":51260,"name":"Harvest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51305/","id":51305,"name":"Braggadoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51398/","id":51398,"name":"Mr. Null"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51462/","id":51462,"name":"Willie Nagel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51515/","id":51515,"name":"Chucky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51541/","id":51541,"name":"Silver Wings"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51543/","id":51543,"name":"Tarantula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51546/","id":51546,"name":"Aan Taanu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51558/","id":51558,"name":"Brande"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51568/","id":51568,"name":"Blood Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51591/","id":51591,"name":"Callindra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51594/","id":51594,"name":"Worldmind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51602/","id":51602,"name":"Clement the Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51656/","id":51656,"name":"Crystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51660/","id":51660,"name":"Daz Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51677/","id":51677,"name":"Ludo Kressh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51685/","id":51685,"name":"Eddie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51687/","id":51687,"name":"Bert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51694/","id":51694,"name":"Vex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51726/","id":51726,"name":"Hohenheim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51766/","id":51766,"name":"Devlin Trask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51792/","id":51792,"name":"D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51813/","id":51813,"name":"Kamric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51818/","id":51818,"name":"Nieves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51930/","id":51930,"name":"Gramalkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52006/","id":52006,"name":"LEGION"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52018/","id":52018,"name":"Kamin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52024/","id":52024,"name":"The Glob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52129/","id":52129,"name":"Lastic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52137/","id":52137,"name":"Drakken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52153/","id":52153,"name":"Macrosupreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52155/","id":52155,"name":"Magnar Teufelsun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52165/","id":52165,"name":"Madness Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52194/","id":52194,"name":"War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52205/","id":52205,"name":"Famine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52206/","id":52206,"name":"Pestilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52230/","id":52230,"name":"Marta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52243/","id":52243,"name":"The Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52246/","id":52246,"name":"Guardian of the Graves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52247/","id":52247,"name":"Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52248/","id":52248,"name":"Azure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52249/","id":52249,"name":"Crypt Chick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52279/","id":52279,"name":"Frost Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52282/","id":52282,"name":"Digital Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52302/","id":52302,"name":"Cell Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52310/","id":52310,"name":"Charlie McCarthy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52329/","id":52329,"name":"Messenger Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52330/","id":52330,"name":"Mudwart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52396/","id":52396,"name":"Piece"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52416/","id":52416,"name":"Lucas Caravaggio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52426/","id":52426,"name":"Roe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52452/","id":52452,"name":"Dragon Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52453/","id":52453,"name":"The Twins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52498/","id":52498,"name":"Shadow Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52515/","id":52515,"name":"The Wretch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52568/","id":52568,"name":"Smut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52599/","id":52599,"name":"Mr. Socrates"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52608/","id":52608,"name":"Rip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52609/","id":52609,"name":"Carcass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52615/","id":52615,"name":"War Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52652/","id":52652,"name":"Licorice Dust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52653/","id":52653,"name":"Madam Mako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52676/","id":52676,"name":"Khar'Tha'Naa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52706/","id":52706,"name":"Wiz-Diz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52707/","id":52707,"name":"Franken-Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52725/","id":52725,"name":"Blathoxi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52733/","id":52733,"name":"Ticki-Tacki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52740/","id":52740,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52750/","id":52750,"name":"War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52756/","id":52756,"name":"Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52826/","id":52826,"name":"Ecstasy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52827/","id":52827,"name":"Agony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52852/","id":52852,"name":"Starlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52853/","id":52853,"name":"Starbright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52866/","id":52866,"name":"Staghart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52869/","id":52869,"name":"Twin Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52888/","id":52888,"name":"Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52890/","id":52890,"name":"Satana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52902/","id":52902,"name":"Monstrex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52959/","id":52959,"name":"Ojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52963/","id":52963,"name":"Jenny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52964/","id":52964,"name":"Queen of Trolls"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52993/","id":52993,"name":"Sean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53002/","id":53002,"name":"Omen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53005/","id":53005,"name":"Fate Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53044/","id":53044,"name":"Eyam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53048/","id":53048,"name":"Matango"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53050/","id":53050,"name":"Abadon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53057/","id":53057,"name":"Canan Cax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53059/","id":53059,"name":"Ohtehrah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53073/","id":53073,"name":"Yggdrasil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53086/","id":53086,"name":"Green Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53132/","id":53132,"name":"Soul Slug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53216/","id":53216,"name":"Dark Conrad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53217/","id":53217,"name":"Ya-Ya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53220/","id":53220,"name":"The Vampire Lestat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53221/","id":53221,"name":"Kaname Kuran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53263/","id":53263,"name":"Styranofoamus Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53267/","id":53267,"name":"Lady Jane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53308/","id":53308,"name":"Irving Griswold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53324/","id":53324,"name":"Tumbleweed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53330/","id":53330,"name":"Toru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53331/","id":53331,"name":"Kumiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53333/","id":53333,"name":"Raidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53387/","id":53387,"name":"Son of Mor-Meb-Dred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53397/","id":53397,"name":"Grendel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53417/","id":53417,"name":"Morax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53418/","id":53418,"name":"Lord Scapegoat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53421/","id":53421,"name":"Flora Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53435/","id":53435,"name":"Archibald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53443/","id":53443,"name":"Suzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53451/","id":53451,"name":"Pandemonium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53457/","id":53457,"name":"Serendipity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53462/","id":53462,"name":"Demonica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53463/","id":53463,"name":"Diabolica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53475/","id":53475,"name":"Nocturne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53497/","id":53497,"name":"Grum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53510/","id":53510,"name":"Brock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53517/","id":53517,"name":"Sinestra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53518/","id":53518,"name":"Scorpia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53520/","id":53520,"name":"Antigone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53529/","id":53529,"name":"Videoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53536/","id":53536,"name":"Leviatha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53537/","id":53537,"name":"Malady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53538/","id":53538,"name":"Macabre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53554/","id":53554,"name":"Fandral Staghelm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53555/","id":53555,"name":"Tyrande Whisperwind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53567/","id":53567,"name":"Virgil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53612/","id":53612,"name":"Groosalugg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53634/","id":53634,"name":"Autopsy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53635/","id":53635,"name":"Janelle Armstrong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53650/","id":53650,"name":"Markus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53651/","id":53651,"name":"William"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53680/","id":53680,"name":"Headless Horseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53695/","id":53695,"name":"Edwin Paine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53703/","id":53703,"name":"Elissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53717/","id":53717,"name":"Shrill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53745/","id":53745,"name":"Death Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53751/","id":53751,"name":"Cookee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53753/","id":53753,"name":"Gal-Rog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53759/","id":53759,"name":"Gorge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53798/","id":53798,"name":"Kaorinite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53877/","id":53877,"name":"Kilala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53972/","id":53972,"name":"Pestilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54003/","id":54003,"name":"Lodestone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54076/","id":54076,"name":"Shadowpax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54111/","id":54111,"name":"The Living Corpse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54116/","id":54116,"name":"Sundiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54120/","id":54120,"name":"Zargheba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54121/","id":54121,"name":"Aeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54153/","id":54153,"name":"Boulder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54154/","id":54154,"name":"Dr. Odd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54155/","id":54155,"name":"Hot Shot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54156/","id":54156,"name":"Afterlife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54172/","id":54172,"name":"Tricephalous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54192/","id":54192,"name":"Minerva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54197/","id":54197,"name":"Tangaroa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54198/","id":54198,"name":"Menagerie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54205/","id":54205,"name":"Eden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54207/","id":54207,"name":"Stonehenge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54231/","id":54231,"name":"Megaman DarkSoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54243/","id":54243,"name":"Kalec"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54247/","id":54247,"name":"Dar'Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54249/","id":54249,"name":"Sylvanas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54272/","id":54272,"name":"Butterball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54276/","id":54276,"name":"Female Cenobite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54285/","id":54285,"name":"Slimer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54298/","id":54298,"name":"Rasa Nekroy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54306/","id":54306,"name":"Brook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54311/","id":54311,"name":"Dampyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54336/","id":54336,"name":"Octoboss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54379/","id":54379,"name":"Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54380/","id":54380,"name":"Raptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54401/","id":54401,"name":"King Gorbak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54411/","id":54411,"name":"Peter Platinum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54449/","id":54449,"name":"Virmin Vundavort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54479/","id":54479,"name":"Frank Cotton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54481/","id":54481,"name":"Hellhound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54482/","id":54482,"name":"Channard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54492/","id":54492,"name":"Lobros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54505/","id":54505,"name":"King Toad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54521/","id":54521,"name":"Jabra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54533/","id":54533,"name":"Angel of Vengeance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54536/","id":54536,"name":"Lew Zealand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54537/","id":54537,"name":"Anung-Ite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54552/","id":54552,"name":"Myoga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54587/","id":54587,"name":"El-Ron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54608/","id":54608,"name":"Malibu Stacy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54609/","id":54609,"name":"Malibu Muffy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54610/","id":54610,"name":"Tad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54632/","id":54632,"name":"The Kombatant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54633/","id":54633,"name":"Nurse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54654/","id":54654,"name":"Forget-Me-Not"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54717/","id":54717,"name":"Tarsem Vox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54725/","id":54725,"name":"Chrysalis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54727/","id":54727,"name":"Electrocutioner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54757/","id":54757,"name":"Amaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54758/","id":54758,"name":"Impetus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54761/","id":54761,"name":"Crow Jane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54826/","id":54826,"name":"Doctor Hurt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54853/","id":54853,"name":"Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54868/","id":54868,"name":"Lord Erevos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54879/","id":54879,"name":"Gravestone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54888/","id":54888,"name":"Complete Carnage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55037/","id":55037,"name":"Narcisse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55067/","id":55067,"name":"Aaron Boone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55071/","id":55071,"name":"Skull Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55091/","id":55091,"name":"Alexander Sterling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55094/","id":55094,"name":"Genesis 6:4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55095/","id":55095,"name":"Exodus 10:21"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55096/","id":55096,"name":"Leviticus 26:22"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55097/","id":55097,"name":"Judges 15:14"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55098/","id":55098,"name":"Matthew 27:51"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55099/","id":55099,"name":"Isaiah 6:2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55161/","id":55161,"name":"Oge K'Tion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55170/","id":55170,"name":"Evergreen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55192/","id":55192,"name":"Hauntress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55197/","id":55197,"name":"Brother Drive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55198/","id":55198,"name":"Brother Think"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55202/","id":55202,"name":"Intercontinental Ballistic Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55247/","id":55247,"name":"Bengala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55258/","id":55258,"name":"The Royal Larry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55268/","id":55268,"name":"Buzzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55271/","id":55271,"name":"Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55286/","id":55286,"name":"Uncle Gabby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55363/","id":55363,"name":"Marysal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55441/","id":55441,"name":"Chirox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55445/","id":55445,"name":"Icarax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55448/","id":55448,"name":"Teridax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55457/","id":55457,"name":"Krika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55461/","id":55461,"name":"Id"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55463/","id":55463,"name":"Phaser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55497/","id":55497,"name":"Unknown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55531/","id":55531,"name":"Clare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55543/","id":55543,"name":"Ophelia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55550/","id":55550,"name":"Riful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55554/","id":55554,"name":"Arath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55584/","id":55584,"name":"Amazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55591/","id":55591,"name":"The Emperor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55597/","id":55597,"name":"Surrealist Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55601/","id":55601,"name":"Doorknob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55621/","id":55621,"name":"Isley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55631/","id":55631,"name":"Killgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55671/","id":55671,"name":"Tigress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55675/","id":55675,"name":"Hitomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55676/","id":55676,"name":"Yoshitsune Miyamoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55677/","id":55677,"name":"Harvest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55690/","id":55690,"name":"Athena Areios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55723/","id":55723,"name":"Cloneblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55756/","id":55756,"name":"Ikonn The Unlimited"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55761/","id":55761,"name":"Saya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55782/","id":55782,"name":"The Traveller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55798/","id":55798,"name":"Hexus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55816/","id":55816,"name":"Bolvar Fordragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55817/","id":55817,"name":"Thargas Anvilmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55819/","id":55819,"name":"Vezon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55826/","id":55826,"name":"Overlord Laharl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55853/","id":55853,"name":"Etna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55901/","id":55901,"name":"Teresa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55902/","id":55902,"name":"Omnius Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55905/","id":55905,"name":"Irene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55912/","id":55912,"name":"Miria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55929/","id":55929,"name":"Torment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56010/","id":56010,"name":"Axentius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56019/","id":56019,"name":"Ignika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56020/","id":56020,"name":"Antroz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56035/","id":56035,"name":"Shinku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56036/","id":56036,"name":"Ambush the Lunatik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56048/","id":56048,"name":"Susie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56050/","id":56050,"name":"Kanaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56052/","id":56052,"name":"Suigintou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56053/","id":56053,"name":"Suiseiseki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56054/","id":56054,"name":"Souseiseki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56055/","id":56055,"name":"Kirakishou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56056/","id":56056,"name":"Hinaichigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56057/","id":56057,"name":"Harry Bailey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56066/","id":56066,"name":"Kuenhor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56095/","id":56095,"name":"Luciela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56112/","id":56112,"name":"Mr. 5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56157/","id":56157,"name":"The Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56158/","id":56158,"name":"Harmony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56159/","id":56159,"name":"Marcus Hamilton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56160/","id":56160,"name":"Alicia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56161/","id":56161,"name":"Beth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56162/","id":56162,"name":"Jean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56163/","id":56163,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56181/","id":56181,"name":"Kr'ph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56182/","id":56182,"name":"Burge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56183/","id":56183,"name":"Bro'os"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56192/","id":56192,"name":"Wiseau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56193/","id":56193,"name":"Beck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56196/","id":56196,"name":"Anna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56197/","id":56197,"name":"Sadako Yamamura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56207/","id":56207,"name":"Angelus Puppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56208/","id":56208,"name":"Marco, The Puppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56209/","id":56209,"name":"Ratio Hornblower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56216/","id":56216,"name":"Jack Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56218/","id":56218,"name":"Murray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56222/","id":56222,"name":"Misty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56228/","id":56228,"name":"Trots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56229/","id":56229,"name":"Fauna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56230/","id":56230,"name":"Cat-Scratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56231/","id":56231,"name":"Puppet Ninjas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56235/","id":56235,"name":"Snuff, The Dragon Puppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56243/","id":56243,"name":"Daria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56245/","id":56245,"name":"Juri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56247/","id":56247,"name":"Merlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56262/","id":56262,"name":"Esa-Kira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56278/","id":56278,"name":"Sistine Centuria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56280/","id":56280,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56285/","id":56285,"name":"Cortes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56286/","id":56286,"name":"Dr. Sangre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56287/","id":56287,"name":"Saeko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56288/","id":56288,"name":"Argento"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56328/","id":56328,"name":"Caleb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56332/","id":56332,"name":"Dot Matrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56335/","id":56335,"name":"Mouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56336/","id":56336,"name":"Daemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56337/","id":56337,"name":"Hexadecimal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56338/","id":56338,"name":"Enzo Matrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56341/","id":56341,"name":"Ray Tracer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56347/","id":56347,"name":"Raziel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56348/","id":56348,"name":"Kain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56358/","id":56358,"name":"Dauf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56359/","id":56359,"name":"Priscilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56360/","id":56360,"name":"Rigardo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56361/","id":56361,"name":"Helen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56366/","id":56366,"name":"Deneve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56369/","id":56369,"name":"Cynthia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56377/","id":56377,"name":"Misty Kilgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56385/","id":56385,"name":"Gabriel Moore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56398/","id":56398,"name":"Magni Bronzebeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56399/","id":56399,"name":"Kyokotsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56400/","id":56400,"name":"Jakotsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56401/","id":56401,"name":"Mukotsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56403/","id":56403,"name":"Renkotsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56404/","id":56404,"name":"Suikotsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56407/","id":56407,"name":"Monolith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56411/","id":56411,"name":"Roshinu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56414/","id":56414,"name":"Hagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56468/","id":56468,"name":"Annabelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56482/","id":56482,"name":"Infernal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56494/","id":56494,"name":"Calumon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56532/","id":56532,"name":"BoneDaddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56540/","id":56540,"name":"Grandma Furness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56544/","id":56544,"name":"Mizar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56545/","id":56545,"name":"Zim'et"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56547/","id":56547,"name":"Nyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56548/","id":56548,"name":"Cold Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56550/","id":56550,"name":"Sir Benedict"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56589/","id":56589,"name":"Basil Cronus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56593/","id":56593,"name":"Nickelhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56600/","id":56600,"name":"Josephine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56623/","id":56623,"name":"King Janus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56625/","id":56625,"name":"The Never"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56648/","id":56648,"name":"Cinderblock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56649/","id":56649,"name":"Renee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56657/","id":56657,"name":"Kyosuke Tamamo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56658/","id":56658,"name":"Yukime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56675/","id":56675,"name":"Doghead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56710/","id":56710,"name":"Earth-Mover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56711/","id":56711,"name":"Technovore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56731/","id":56731,"name":"Dr. Franken Stein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56733/","id":56733,"name":"Ragnarok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56735/","id":56735,"name":"Sid Barett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56742/","id":56742,"name":"Excalibur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56744/","id":56744,"name":"Skull Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56745/","id":56745,"name":"Locus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56754/","id":56754,"name":"Free"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56755/","id":56755,"name":"Arachne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56756/","id":56756,"name":"Zarko the Flying Squid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56763/","id":56763,"name":"Mr. Gray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56772/","id":56772,"name":"Nick Nixon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56805/","id":56805,"name":"Hawk Erickson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56819/","id":56819,"name":"Zeke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56822/","id":56822,"name":"Grunbeld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56834/","id":56834,"name":"Elianne Turac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56866/","id":56866,"name":"BlackWarGreymon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56884/","id":56884,"name":"Mercy Sparx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56916/","id":56916,"name":"Pseudos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56935/","id":56935,"name":"Ice Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56936/","id":56936,"name":"Lava Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56939/","id":56939,"name":"Lady Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56942/","id":56942,"name":"Larry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56943/","id":56943,"name":"Dreadnaught"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56944/","id":56944,"name":"Topaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56945/","id":56945,"name":"Aurora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56948/","id":56948,"name":"Karate Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56953/","id":56953,"name":"Rosemary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56961/","id":56961,"name":"Lero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56966/","id":56966,"name":"Atom Ant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56983/","id":56983,"name":"Boris The Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57019/","id":57019,"name":"Q'Wake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57024/","id":57024,"name":"Rahm Kota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57048/","id":57048,"name":"Eliade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57057/","id":57057,"name":"SpongeBob SquarePants"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57060/","id":57060,"name":"Hjalmar Anvilmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57069/","id":57069,"name":"Chomesuke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57080/","id":57080,"name":"Groudon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57084/","id":57084,"name":"Tom Kirk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57135/","id":57135,"name":"Dr. Bongface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57165/","id":57165,"name":"Thole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57178/","id":57178,"name":"Chlorine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57197/","id":57197,"name":"Cryptus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57199/","id":57199,"name":"Him who Sleeps"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57200/","id":57200,"name":"Redguard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57209/","id":57209,"name":"Kalen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57210/","id":57210,"name":"Kalumai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57224/","id":57224,"name":"Sisyphus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57238/","id":57238,"name":"Alexis the Duck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57286/","id":57286,"name":"Dara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57293/","id":57293,"name":"H'Lana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57309/","id":57309,"name":"Cataphrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57310/","id":57310,"name":"Ahqlau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57311/","id":57311,"name":"Wapol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57328/","id":57328,"name":"Nightwitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57352/","id":57352,"name":"Fifi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57362/","id":57362,"name":"Gingerbread Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57365/","id":57365,"name":"Platinum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57366/","id":57366,"name":"Cesium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57367/","id":57367,"name":"Neodymium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57369/","id":57369,"name":"Sodium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57390/","id":57390,"name":"Juvan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57391/","id":57391,"name":"Zon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57407/","id":57407,"name":"Lady Trident"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57421/","id":57421,"name":"Megataur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57441/","id":57441,"name":"Mud-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57444/","id":57444,"name":"Neurotica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57452/","id":57452,"name":"Kiwi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57478/","id":57478,"name":"Belinda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57491/","id":57491,"name":"Ragamuffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57492/","id":57492,"name":"Pooty Applewater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57493/","id":57493,"name":"Taxidermy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57541/","id":57541,"name":"Jonah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57584/","id":57584,"name":"Balnazzar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57585/","id":57585,"name":"Varimathras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57592/","id":57592,"name":"Golem Lord Argelmach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57596/","id":57596,"name":"Salamandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57603/","id":57603,"name":"Suitengu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57606/","id":57606,"name":"Flora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57607/","id":57607,"name":"Fauna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57608/","id":57608,"name":"Merryweather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57654/","id":57654,"name":"Argost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57684/","id":57684,"name":"Pachy-Doom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57687/","id":57687,"name":"Arachnophilia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57702/","id":57702,"name":"Man Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57703/","id":57703,"name":"Demon Gray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57767/","id":57767,"name":"Wild Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57776/","id":57776,"name":"Brosag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57802/","id":57802,"name":"Phaedo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57809/","id":57809,"name":"Georgi Koska"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57821/","id":57821,"name":"De-Mo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57834/","id":57834,"name":"Medu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57851/","id":57851,"name":"Saber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57899/","id":57899,"name":"Tabitha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57955/","id":57955,"name":"Void"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57956/","id":57956,"name":"Dolphus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57961/","id":57961,"name":"Old Hag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57965/","id":57965,"name":"Witch Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57966/","id":57966,"name":"Rak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57977/","id":57977,"name":"Hydraxon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57979/","id":57979,"name":"Serenade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57980/","id":57980,"name":"Psykos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57998/","id":57998,"name":"Cookies"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58001/","id":58001,"name":"Red Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58007/","id":58007,"name":"Night Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58020/","id":58020,"name":"Plokta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58039/","id":58039,"name":"Vortex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58040/","id":58040,"name":"Dementia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58041/","id":58041,"name":"Shard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58048/","id":58048,"name":"Greed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58049/","id":58049,"name":"Sloth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58050/","id":58050,"name":"Gluttony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58056/","id":58056,"name":"Lizard-Faced Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58061/","id":58061,"name":"Genocide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58062/","id":58062,"name":"Anti-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58063/","id":58063,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58069/","id":58069,"name":"Everwraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58080/","id":58080,"name":"Old Soldier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58090/","id":58090,"name":"Deluge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58097/","id":58097,"name":"Praedus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58105/","id":58105,"name":"Emperor Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58143/","id":58143,"name":"Modulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58150/","id":58150,"name":"Avandalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58222/","id":58222,"name":"Dark Nebula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58224/","id":58224,"name":"Stalfos Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58228/","id":58228,"name":"Metabo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58244/","id":58244,"name":"Blubber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58245/","id":58245,"name":"Sheeva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58267/","id":58267,"name":"Gillian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58268/","id":58268,"name":"Krystof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58296/","id":58296,"name":"Zabra Hexx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58300/","id":58300,"name":"Kel'Thuzad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58301/","id":58301,"name":"Grunn'holde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58321/","id":58321,"name":"Colabrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58329/","id":58329,"name":"Chaos God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58366/","id":58366,"name":"Alex Merkel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58402/","id":58402,"name":"Elsa Grimston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58407/","id":58407,"name":"Megasaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58419/","id":58419,"name":"The Host"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58436/","id":58436,"name":"Doc Horror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58437/","id":58437,"name":"Starfish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58438/","id":58438,"name":"Polychrome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58441/","id":58441,"name":"The Gunwitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58442/","id":58442,"name":"Komodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58443/","id":58443,"name":"Raccoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58454/","id":58454,"name":"Spinal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58472/","id":58472,"name":"Redford Firefox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58488/","id":58488,"name":"Nosa'elg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58506/","id":58506,"name":"Morph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58513/","id":58513,"name":"Nessus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58560/","id":58560,"name":"Garona Halforcen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58587/","id":58587,"name":"Sanctity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58588/","id":58588,"name":"Aynguish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58612/","id":58612,"name":"Kwai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58658/","id":58658,"name":"Shrek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58660/","id":58660,"name":"Fiona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58679/","id":58679,"name":"Requiem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58680/","id":58680,"name":"Dolgen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58686/","id":58686,"name":"Claudia Demona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58705/","id":58705,"name":"Ragamuffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58709/","id":58709,"name":"Unum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58712/","id":58712,"name":"Fear and Loathing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58714/","id":58714,"name":"Skeleton Crew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58735/","id":58735,"name":"Kuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58831/","id":58831,"name":"Gingerbread Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58889/","id":58889,"name":"Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58892/","id":58892,"name":"Gleeto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58895/","id":58895,"name":"Baron Von Bloodsucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58898/","id":58898,"name":"Beanman Suit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58940/","id":58940,"name":"Replicoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58942/","id":58942,"name":"Cull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58969/","id":58969,"name":"Dot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58973/","id":58973,"name":"Wakko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58974/","id":58974,"name":"Yakko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58975/","id":58975,"name":"General D'Coolette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58998/","id":58998,"name":"Mister E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59003/","id":59003,"name":"Darrel Daniel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59004/","id":59004,"name":"Doggerel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59005/","id":59005,"name":"Fangor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59017/","id":59017,"name":"Flugron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59044/","id":59044,"name":"Ruth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59045/","id":59045,"name":"Eudaemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59048/","id":59048,"name":"Magdelene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59049/","id":59049,"name":"Ga-Ga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59068/","id":59068,"name":"Genis Sage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59073/","id":59073,"name":"Pistonhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59076/","id":59076,"name":"Dreamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59077/","id":59077,"name":"Camerahead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59078/","id":59078,"name":"Barbie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59079/","id":59079,"name":"CD"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59085/","id":59085,"name":"Julia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59090/","id":59090,"name":"Wonderous Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59095/","id":59095,"name":"Demon Fox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59112/","id":59112,"name":"Madek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59113/","id":59113,"name":"Idiot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59128/","id":59128,"name":"Akuma-She"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59133/","id":59133,"name":"Morella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59136/","id":59136,"name":"Sage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59140/","id":59140,"name":"Hydroman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59143/","id":59143,"name":"Tiger Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59144/","id":59144,"name":"Ephemera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59182/","id":59182,"name":"Duncan Corley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59185/","id":59185,"name":"Brannigan Thundermaul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59186/","id":59186,"name":"Ferelyn Bloodscorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59187/","id":59187,"name":"Thane Kor'Thazz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59197/","id":59197,"name":"Jeremy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59201/","id":59201,"name":"Cougar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59218/","id":59218,"name":"Lance Gwynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59243/","id":59243,"name":"Skull Cowboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59244/","id":59244,"name":"Petra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59248/","id":59248,"name":"Drom The Backwards Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59255/","id":59255,"name":"Rowina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59277/","id":59277,"name":"Jack Skellington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59319/","id":59319,"name":"Marinette Bwa Chech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59325/","id":59325,"name":"Tillie the Hun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59332/","id":59332,"name":"Elinor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59341/","id":59341,"name":"Leprechaun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59358/","id":59358,"name":"Rotwrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59385/","id":59385,"name":"Maurice Fortuit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59387/","id":59387,"name":"Florence Destine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59395/","id":59395,"name":"Agonistes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59435/","id":59435,"name":"The Unknown Lantern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59443/","id":59443,"name":"Super-Menace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59450/","id":59450,"name":"Pinta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59491/","id":59491,"name":"Stasia Fallshadow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59493/","id":59493,"name":"Med'an"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59495/","id":59495,"name":"Meryl Felstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59496/","id":59496,"name":"Thrall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59498/","id":59498,"name":"Garrosh Hellscream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59510/","id":59510,"name":"Pn'Zo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59512/","id":59512,"name":"Hodinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59533/","id":59533,"name":"Rock Monster Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59547/","id":59547,"name":"Sean Madrox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59606/","id":59606,"name":"The Dancing Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59614/","id":59614,"name":"El Zombo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59615/","id":59615,"name":"Kildare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59629/","id":59629,"name":"Syphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59642/","id":59642,"name":"Eli Bard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59661/","id":59661,"name":"Lisa Beckman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59742/","id":59742,"name":"Ermac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59760/","id":59760,"name":"Nobert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59795/","id":59795,"name":"Sonja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59847/","id":59847,"name":"Vashti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59855/","id":59855,"name":"Magog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59859/","id":59859,"name":"Kyle Wagner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59913/","id":59913,"name":"Haunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59927/","id":59927,"name":"Agent !"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59929/","id":59929,"name":"Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59952/","id":59952,"name":"Jeannette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59969/","id":59969,"name":"Annie Belle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59970/","id":59970,"name":"Silas Irons"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59973/","id":59973,"name":"Beelzebub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60015/","id":60015,"name":"Doomsboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60022/","id":60022,"name":"Ryan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60023/","id":60023,"name":"Erika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60047/","id":60047,"name":"Peloquin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60065/","id":60065,"name":"Zector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60066/","id":60066,"name":"Zespio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60093/","id":60093,"name":"Dream Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60102/","id":60102,"name":"Ekl'r"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60116/","id":60116,"name":"Shuna Sassi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60140/","id":60140,"name":"Bubbles the Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60179/","id":60179,"name":"Lampwick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60241/","id":60241,"name":"Wooden Nickel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60253/","id":60253,"name":"Britney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60278/","id":60278,"name":"Powerplex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60317/","id":60317,"name":"Eitrigg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60322/","id":60322,"name":"Vibravore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60338/","id":60338,"name":"Bane-Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60343/","id":60343,"name":"Muck Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60344/","id":60344,"name":"Six"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60373/","id":60373,"name":"Xraven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60397/","id":60397,"name":"Cha-Cha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60398/","id":60398,"name":"Hazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60401/","id":60401,"name":"Consumption"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60412/","id":60412,"name":"Hamid Ali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60424/","id":60424,"name":"Gabriel Cole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60445/","id":60445,"name":"Aquon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60455/","id":60455,"name":"Sergeant Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60466/","id":60466,"name":"Kai-Mak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60480/","id":60480,"name":"Metoxo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60482/","id":60482,"name":"Turulla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60484/","id":60484,"name":"Touchstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60528/","id":60528,"name":"Eblis O'Shaughnessy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60537/","id":60537,"name":"Crush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60565/","id":60565,"name":"Meriam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60571/","id":60571,"name":"Miri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60612/","id":60612,"name":"Noble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60619/","id":60619,"name":"Anton Quigley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60639/","id":60639,"name":"Scarlet Personage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60656/","id":60656,"name":"Timekeeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60661/","id":60661,"name":"Carnelian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60672/","id":60672,"name":"Tarkas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60718/","id":60718,"name":"The Hive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60729/","id":60729,"name":"Vulbogliagh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60730/","id":60730,"name":"The Archenemy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60741/","id":60741,"name":"Red Rajah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60750/","id":60750,"name":"Johnny Two Dicks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60763/","id":60763,"name":"Vile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60770/","id":60770,"name":"Caprice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60773/","id":60773,"name":"Sagos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60775/","id":60775,"name":"Gatekeeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60781/","id":60781,"name":"Stigmata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60872/","id":60872,"name":"Muppet Newscaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60875/","id":60875,"name":"Sabine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60939/","id":60939,"name":"The Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60958/","id":60958,"name":"Mary Shelley Lovecraft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60985/","id":60985,"name":"Mixyezpitelik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60995/","id":60995,"name":"Nancy Hedford"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61001/","id":61001,"name":"Evenor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61040/","id":61040,"name":"Johnny Yen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61065/","id":61065,"name":"Khan Noonien Singh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61078/","id":61078,"name":"Ripperman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61088/","id":61088,"name":"Vamfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61137/","id":61137,"name":"Jasmine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61138/","id":61138,"name":"Lance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61187/","id":61187,"name":"Cho'gall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61188/","id":61188,"name":"Stonehoof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61189/","id":61189,"name":"Koron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61200/","id":61200,"name":"Signet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61201/","id":61201,"name":"Tartan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61202/","id":61202,"name":"Tally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61203/","id":61203,"name":"Docket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61205/","id":61205,"name":"Balzon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61206/","id":61206,"name":"Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61207/","id":61207,"name":"Sigil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61208/","id":61208,"name":"Animus Prime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61221/","id":61221,"name":"Cauldron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61229/","id":61229,"name":"Swannie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61230/","id":61230,"name":"Bug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61242/","id":61242,"name":"Maureen Marine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61244/","id":61244,"name":"Avarrish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61250/","id":61250,"name":"Hyrokkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61253/","id":61253,"name":"Neptunus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61255/","id":61255,"name":"Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61270/","id":61270,"name":"Adam Xero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61282/","id":61282,"name":"Count Kohler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61289/","id":61289,"name":"Puishannt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61290/","id":61290,"name":"Unnthinnk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61291/","id":61291,"name":"Hyppokri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61310/","id":61310,"name":"Obergeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61318/","id":61318,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61333/","id":61333,"name":"Ahh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61339/","id":61339,"name":"Cranius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61349/","id":61349,"name":"B'ox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61371/","id":61371,"name":"Crona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61447/","id":61447,"name":"Bête Noir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61455/","id":61455,"name":"Aaron Thorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61549/","id":61549,"name":"Guardian of Izanami's House"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61555/","id":61555,"name":"The Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61566/","id":61566,"name":"Tanea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61576/","id":61576,"name":"Zero Kiryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61577/","id":61577,"name":"Yuuki Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61585/","id":61585,"name":"Argentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61589/","id":61589,"name":"Maria Kurenai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61591/","id":61591,"name":"Ophidian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61595/","id":61595,"name":"Black Jubal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61636/","id":61636,"name":"Dr. Bunsen Honeydew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61637/","id":61637,"name":"Beaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61642/","id":61642,"name":"Hanabusa Aidou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61643/","id":61643,"name":"Tsukiko Aidou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61646/","id":61646,"name":"Shizuka Hio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61647/","id":61647,"name":"Takuma Ichijou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61648/","id":61648,"name":"Juuri Kuran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61649/","id":61649,"name":"Rido Kuran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61650/","id":61650,"name":"Haruka Kuran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61651/","id":61651,"name":"Senri Shiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61652/","id":61652,"name":"Ruka Souen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61653/","id":61653,"name":"Rima Touya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61658/","id":61658,"name":"Rob Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61661/","id":61661,"name":"Alakazam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61670/","id":61670,"name":"Crag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61671/","id":61671,"name":"Avian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61673/","id":61673,"name":"Big Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61674/","id":61674,"name":"Mind-Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61705/","id":61705,"name":"Karin Maaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61726/","id":61726,"name":"Eran Shadowstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61742/","id":61742,"name":"Gorilla Boss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61747/","id":61747,"name":"Pilaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61765/","id":61765,"name":"Buyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61771/","id":61771,"name":"Bellil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61801/","id":61801,"name":"Blume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61809/","id":61809,"name":"Baron Zastrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61823/","id":61823,"name":"Dracula Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61824/","id":61824,"name":"Suke-san"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61825/","id":61825,"name":"Mira-kun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61828/","id":61828,"name":"Akkuman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61883/","id":61883,"name":"Seawitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61886/","id":61886,"name":"Yvaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61893/","id":61893,"name":"Rodney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61921/","id":61921,"name":"Tambourine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61922/","id":61922,"name":"Cymbal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61945/","id":61945,"name":"Mr. Nobody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61952/","id":61952,"name":"Mermista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61971/","id":61971,"name":"Cheese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62007/","id":62007,"name":"Pilgrim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62009/","id":62009,"name":"Bog Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62010/","id":62010,"name":"Kettle Hole Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62011/","id":62011,"name":"Saint Columba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62029/","id":62029,"name":"Master Judge of the Lower Depths"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62030/","id":62030,"name":"Haazareth Three"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62046/","id":62046,"name":"Bizarra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62085/","id":62085,"name":"Alias the Blur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62110/","id":62110,"name":"Pluto VIII"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62112/","id":62112,"name":"Satsuki Akiyoshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62113/","id":62113,"name":"Touya Kanou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62145/","id":62145,"name":"Earth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62180/","id":62180,"name":"Fire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62181/","id":62181,"name":"Air"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62195/","id":62195,"name":"Fin Fang Flame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62232/","id":62232,"name":"Maraad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62244/","id":62244,"name":"Gynosure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62310/","id":62310,"name":"Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62352/","id":62352,"name":"Garek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62375/","id":62375,"name":"Shaggy Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62394/","id":62394,"name":"Meta-Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62422/","id":62422,"name":"Un-Human"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62429/","id":62429,"name":"Malachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62445/","id":62445,"name":"Madame Majestrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62509/","id":62509,"name":"Doomstroke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62595/","id":62595,"name":"The Skin-Bender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62611/","id":62611,"name":"Agony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62612/","id":62612,"name":"Basilisk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62635/","id":62635,"name":"Hungry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62669/","id":62669,"name":"N-Emy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62690/","id":62690,"name":"Mynce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62691/","id":62691,"name":"Kestrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62712/","id":62712,"name":"Ms Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62715/","id":62715,"name":"Deshwitat L. Rudbich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62738/","id":62738,"name":"Frodo Baggins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62760/","id":62760,"name":"Meriadoc Brandybuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62761/","id":62761,"name":"Peregrin Took"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62762/","id":62762,"name":"Legolas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62763/","id":62763,"name":"Gimli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62764/","id":62764,"name":"Samwise Gamgee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62813/","id":62813,"name":"Yūko Ichihara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62841/","id":62841,"name":"Void Hound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62868/","id":62868,"name":"Nate Mare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62873/","id":62873,"name":"Gollum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62882/","id":62882,"name":"Reiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62911/","id":62911,"name":"Gohma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62930/","id":62930,"name":"Nagraj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62933/","id":62933,"name":"Madam Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62934/","id":62934,"name":"Professor Mistyk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62962/","id":62962,"name":"King Boom Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63066/","id":63066,"name":"Birdo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63067/","id":63067,"name":"Piranha Sue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63068/","id":63068,"name":"Wooster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63072/","id":63072,"name":"Big Bertha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63074/","id":63074,"name":"Roy Koopa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63087/","id":63087,"name":"Princess Lana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63090/","id":63090,"name":"Eggplant Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63091/","id":63091,"name":"King Hippo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63142/","id":63142,"name":"General Wolfram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63143/","id":63143,"name":"Redeemer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63144/","id":63144,"name":"Doctor Everything"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63145/","id":63145,"name":"Eleven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63146/","id":63146,"name":"Dementoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63162/","id":63162,"name":"Tally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63166/","id":63166,"name":"Mudd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63171/","id":63171,"name":"Sara Shirabuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63260/","id":63260,"name":"Mr. Lao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63304/","id":63304,"name":"T-AI"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63317/","id":63317,"name":"Cortex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63330/","id":63330,"name":"Three-Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63336/","id":63336,"name":"Rox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63356/","id":63356,"name":"Jennifer Check"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63394/","id":63394,"name":"Wrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63395/","id":63395,"name":"Princess Lucinda Nightbane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63401/","id":63401,"name":"D'Kay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63433/","id":63433,"name":"Meer'Lyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63434/","id":63434,"name":"Archduke Sebassis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63435/","id":63435,"name":"Cyvus Vail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63436/","id":63436,"name":"Helen Brucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63437/","id":63437,"name":"Non"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63444/","id":63444,"name":"Mr. Gray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63467/","id":63467,"name":"Kim Liang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63591/","id":63591,"name":"The Unspoken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63593/","id":63593,"name":"Death Z"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63715/","id":63715,"name":"Devimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63753/","id":63753,"name":"Zosara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63756/","id":63756,"name":"Zekkir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63757/","id":63757,"name":"Xeethra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63758/","id":63758,"name":"Thasaidon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63759/","id":63759,"name":"Anaxor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63762/","id":63762,"name":"Trinity Cabranes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63768/","id":63768,"name":"BlackRose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63771/","id":63771,"name":"Boogieman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63772/","id":63772,"name":"Quinn Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63797/","id":63797,"name":"Prime Evil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63845/","id":63845,"name":"Artys-Gran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63847/","id":63847,"name":"Bat Out Of Hell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63862/","id":63862,"name":"Jeeves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63874/","id":63874,"name":"Behemoth From Below"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63932/","id":63932,"name":"Broom-Hilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64034/","id":64034,"name":"Izzerial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64241/","id":64241,"name":"Black Surfer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64297/","id":64297,"name":"Weezing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64387/","id":64387,"name":"She"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64429/","id":64429,"name":"Suparsva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64430/","id":64430,"name":"Brother Boma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64453/","id":64453,"name":"Brad Spencer, Wonderman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64477/","id":64477,"name":"Mount Sorrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64488/","id":64488,"name":"Thorn Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64580/","id":64580,"name":"Fauntleroy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64605/","id":64605,"name":"Irwin Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64653/","id":64653,"name":"Acidwire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64716/","id":64716,"name":"Clay Surfer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64734/","id":64734,"name":"Spring-Heeled Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64786/","id":64786,"name":"Tilotny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64801/","id":64801,"name":"Yoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64824/","id":64824,"name":"Billy Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64825/","id":64825,"name":"Tanman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64828/","id":64828,"name":"Cosmic Messiah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64835/","id":64835,"name":"Noelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64847/","id":64847,"name":"Sheila Silvear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64884/","id":64884,"name":"The Green Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64958/","id":64958,"name":"Danny the Street"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64960/","id":64960,"name":"Regis Tyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64965/","id":64965,"name":"The Telephone Avatar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64979/","id":64979,"name":"Pinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64980/","id":64980,"name":"Leech Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64981/","id":64981,"name":"Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64982/","id":64982,"name":"Tunneler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64983/","id":64983,"name":"Jester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64986/","id":64986,"name":"Draconis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65041/","id":65041,"name":"Nocturne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65061/","id":65061,"name":"Shadowstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65067/","id":65067,"name":"Number None"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65068/","id":65068,"name":"Other Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65086/","id":65086,"name":"Dibbuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65126/","id":65126,"name":"Shiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65160/","id":65160,"name":"Fizzgig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65161/","id":65161,"name":"Jen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65162/","id":65162,"name":"Kira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65169/","id":65169,"name":"Grover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65184/","id":65184,"name":"The Steward"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65188/","id":65188,"name":"Didymus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65189/","id":65189,"name":"Hoggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65190/","id":65190,"name":"Jareth the Goblin King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65191/","id":65191,"name":"Ludo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65200/","id":65200,"name":"Atlanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65201/","id":65201,"name":"Lust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65210/","id":65210,"name":"Phantom of Washington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65236/","id":65236,"name":"Wallpaper Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65242/","id":65242,"name":"Breed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65306/","id":65306,"name":"Candlemaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65316/","id":65316,"name":"Shroud On Stilts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65329/","id":65329,"name":"Goth Ghost Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65330/","id":65330,"name":"Albakor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65341/","id":65341,"name":"Creature King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65376/","id":65376,"name":"Basallo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65411/","id":65411,"name":"Shellshock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65412/","id":65412,"name":"Clarion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65426/","id":65426,"name":"Stamar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65460/","id":65460,"name":"Quink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65461/","id":65461,"name":"Quirk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65493/","id":65493,"name":"Alflyse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65504/","id":65504,"name":"Kalesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65561/","id":65561,"name":"Tow Mater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65597/","id":65597,"name":"Hefty Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65605/","id":65605,"name":"Katinka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65681/","id":65681,"name":"Dalton Cartwright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65768/","id":65768,"name":"Cockroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65782/","id":65782,"name":"Impa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65794/","id":65794,"name":"Skull Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65799/","id":65799,"name":"Ellie Waters"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65808/","id":65808,"name":"Singularity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65810/","id":65810,"name":"Ayaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65841/","id":65841,"name":"Chloe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65842/","id":65842,"name":"Magellan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66104/","id":66104,"name":"Cathy Cthulu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66123/","id":66123,"name":"Bayarmaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66128/","id":66128,"name":"Tessa Em"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66129/","id":66129,"name":"Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66130/","id":66130,"name":"Scryer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66169/","id":66169,"name":"Vandal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66171/","id":66171,"name":"Croglin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66177/","id":66177,"name":"Blackbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66179/","id":66179,"name":"Lady Feign"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66203/","id":66203,"name":"Drift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66204/","id":66204,"name":"Toddler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66206/","id":66206,"name":"Sheriff Leonard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66289/","id":66289,"name":"Fuji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66301/","id":66301,"name":"Ishmael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66303/","id":66303,"name":"Jabberwocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66312/","id":66312,"name":"Olwen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66314/","id":66314,"name":"Gloriana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66319/","id":66319,"name":"Guilt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66322/","id":66322,"name":"Strato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66324/","id":66324,"name":"Mister Melmoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66333/","id":66333,"name":"Beulah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66335/","id":66335,"name":"Charity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66336/","id":66336,"name":"Ezekiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66337/","id":66337,"name":"Horigal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66338/","id":66338,"name":"Gargora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66359/","id":66359,"name":"Auntie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66393/","id":66393,"name":"Talita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66470/","id":66470,"name":"Gwydion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66471/","id":66471,"name":"Ebeneezer Badde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66501/","id":66501,"name":"MacDuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66513/","id":66513,"name":"Alice the Goon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66523/","id":66523,"name":"Domo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66541/","id":66541,"name":"Rohan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66542/","id":66542,"name":"Krank Axeljink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66544/","id":66544,"name":"Hamuul Runetotem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66550/","id":66550,"name":"Dalynnia Wrathscar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66587/","id":66587,"name":"Mr. Veech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66588/","id":66588,"name":"Nandy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66614/","id":66614,"name":"Devasura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66630/","id":66630,"name":"Celia Mae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66631/","id":66631,"name":"George Sanderson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66637/","id":66637,"name":"Bile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66638/","id":66638,"name":"Roz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66640/","id":66640,"name":"Waxford"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66641/","id":66641,"name":"Needleman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66642/","id":66642,"name":"Smitty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66643/","id":66643,"name":"Henry J. Waternoose III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66644/","id":66644,"name":"Kurt Kilgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66702/","id":66702,"name":"Mister Mastermind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66747/","id":66747,"name":"Brutus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66753/","id":66753,"name":"Tempter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66790/","id":66790,"name":"Arson Fiend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66813/","id":66813,"name":"Friday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66843/","id":66843,"name":"Arc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66844/","id":66844,"name":"D'Compose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66845/","id":66845,"name":"Metlar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66846/","id":66846,"name":"Tendril"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66861/","id":66861,"name":"Gwen Dylan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66863/","id":66863,"name":"Spot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66873/","id":66873,"name":"Slammu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66880/","id":66880,"name":"Po the Ghost Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66916/","id":66916,"name":"Wetform A.I."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66924/","id":66924,"name":"Ganjaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66928/","id":66928,"name":"Miss Stellamaris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66939/","id":66939,"name":"Herman Munster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66948/","id":66948,"name":"Shams"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66950/","id":66950,"name":"Sporr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66956/","id":66956,"name":"Jackie Slade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66977/","id":66977,"name":"Roam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66978/","id":66978,"name":"Zummazumma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66985/","id":66985,"name":"Valdez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66986/","id":66986,"name":"King Gerark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67030/","id":67030,"name":"Zorg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67042/","id":67042,"name":"Duey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67081/","id":67081,"name":"Wruk Buk Tuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67082/","id":67082,"name":"Brak Pak K'rak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67087/","id":67087,"name":"Obsidia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67094/","id":67094,"name":"Naga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67095/","id":67095,"name":"Jinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67097/","id":67097,"name":"Nivada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67115/","id":67115,"name":"X. Drake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67159/","id":67159,"name":"Kauldron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67161/","id":67161,"name":"Jolly Hangar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67162/","id":67162,"name":"Inner Child"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67163/","id":67163,"name":"George"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67164/","id":67164,"name":"Marion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67165/","id":67165,"name":"Master Cleaner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67182/","id":67182,"name":"Gorgeous Riter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67199/","id":67199,"name":"Darling-Come Home"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67200/","id":67200,"name":"Dark Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67222/","id":67222,"name":"Larry The Cranky Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67256/","id":67256,"name":"Reno Reagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67258/","id":67258,"name":"Nick Philo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67326/","id":67326,"name":"Skeleton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67346/","id":67346,"name":"Grandfather Oak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67358/","id":67358,"name":"Pain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67362/","id":67362,"name":"Balloonatic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67382/","id":67382,"name":"Jellaby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67440/","id":67440,"name":"Magellan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67469/","id":67469,"name":"Hell's Maiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67495/","id":67495,"name":"Skragg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67534/","id":67534,"name":"Fireface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67543/","id":67543,"name":"Ahna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67547/","id":67547,"name":"Blueno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67595/","id":67595,"name":"Tifanny 'Gia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67600/","id":67600,"name":"Sturm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67742/","id":67742,"name":"Lord Midian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67743/","id":67743,"name":"The Cherish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67757/","id":67757,"name":"Dirge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67758/","id":67758,"name":"Bilbo Baggins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67778/","id":67778,"name":"Cloyster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67804/","id":67804,"name":"Thog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67808/","id":67808,"name":"Nephthys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67810/","id":67810,"name":"Gallows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67856/","id":67856,"name":"Origami, the Folding Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67857/","id":67857,"name":"Mentallium Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67863/","id":67863,"name":"John Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67866/","id":67866,"name":"Ravager of Worlds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67874/","id":67874,"name":"Dinosaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67880/","id":67880,"name":"Oddish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67882/","id":67882,"name":"Vileplume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67887/","id":67887,"name":"White Tiger (Earth X)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67889/","id":67889,"name":"Diglett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67896/","id":67896,"name":"Machop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67897/","id":67897,"name":"Machoke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67898/","id":67898,"name":"Machamp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67950/","id":67950,"name":"Six"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67951/","id":67951,"name":"Thirty-Eight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67964/","id":67964,"name":"Snow Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68002/","id":68002,"name":"Homer, The Happy Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68025/","id":68025,"name":"Horror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68028/","id":68028,"name":"Highperion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68056/","id":68056,"name":"Prince Aspen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68057/","id":68057,"name":"Princess Alder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68081/","id":68081,"name":"Montgomery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68086/","id":68086,"name":"Beatrice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68097/","id":68097,"name":"Flying Robert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68098/","id":68098,"name":"Damn All"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68131/","id":68131,"name":"Ice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68134/","id":68134,"name":"Gertie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68136/","id":68136,"name":"Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68155/","id":68155,"name":"Aptom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68157/","id":68157,"name":"Masaki Murakami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68190/","id":68190,"name":"Anthony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68223/","id":68223,"name":"The Word"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68236/","id":68236,"name":"Fiend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68299/","id":68299,"name":"Graveler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68302/","id":68302,"name":"Gabriel Van Helsing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68373/","id":68373,"name":"Slaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68386/","id":68386,"name":"Iris Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68394/","id":68394,"name":"Dawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68395/","id":68395,"name":"Dusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68406/","id":68406,"name":"Frau"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68445/","id":68445,"name":"Shard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68465/","id":68465,"name":"Karen Clancy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68492/","id":68492,"name":"Anti-Dad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68500/","id":68500,"name":"King-of-all-Tears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68501/","id":68501,"name":"Nan Flanagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68504/","id":68504,"name":"Sam Merlotte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68505/","id":68505,"name":"Eric Northman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68506/","id":68506,"name":"Bill Compton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68507/","id":68507,"name":"Sookie Stackhouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68510/","id":68510,"name":"Lamar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68512/","id":68512,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68513/","id":68513,"name":"Hirata-San"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68517/","id":68517,"name":"Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68538/","id":68538,"name":"Arturo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68559/","id":68559,"name":"Nekrodamus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68576/","id":68576,"name":"Captain Glory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68581/","id":68581,"name":"Ormond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68582/","id":68582,"name":"Ness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68590/","id":68590,"name":"Orion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68599/","id":68599,"name":"Abraham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68600/","id":68600,"name":"Maleval"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68604/","id":68604,"name":"Guardian of the Woods"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68605/","id":68605,"name":"Ribiero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68617/","id":68617,"name":"Billy Badmouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68618/","id":68618,"name":"Tabor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68619/","id":68619,"name":"Reprobus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68643/","id":68643,"name":"Sid the Dummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68659/","id":68659,"name":"Tohno Shiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68672/","id":68672,"name":"Lord Gore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68700/","id":68700,"name":"Liz Van der Heim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68702/","id":68702,"name":"Bill Jensen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68703/","id":68703,"name":"Yasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68730/","id":68730,"name":"Bella Swan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68734/","id":68734,"name":"Aya Brea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68754/","id":68754,"name":"Nun of the Above"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68762/","id":68762,"name":"Alice Cullen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68763/","id":68763,"name":"Jasper Hale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68765/","id":68765,"name":"Carlisle Cullen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68767/","id":68767,"name":"Emmett Cullen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68768/","id":68768,"name":"Rosalie Hale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68771/","id":68771,"name":"G'nolga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68792/","id":68792,"name":"Zoo Keeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68798/","id":68798,"name":"Demi the Demoness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68799/","id":68799,"name":"Mother Dirt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68808/","id":68808,"name":"Mr. Brump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68809/","id":68809,"name":"Mr. Cutliver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68810/","id":68810,"name":"Grinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68812/","id":68812,"name":"Dwight Phry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68813/","id":68813,"name":"Fearless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68814/","id":68814,"name":"Wicked Uncle Ernie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68815/","id":68815,"name":"The End"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68816/","id":68816,"name":"Fuzzy Wuzzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68817/","id":68817,"name":"Silverhammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68818/","id":68818,"name":"Yoko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68819/","id":68819,"name":"Desperado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68828/","id":68828,"name":"Ovid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68831/","id":68831,"name":"Merkova"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68854/","id":68854,"name":"Inkabod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68858/","id":68858,"name":"Alpha-Sapiens"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68862/","id":68862,"name":"Jimbei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68881/","id":68881,"name":"King of the Vampires"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68889/","id":68889,"name":"Hugo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68890/","id":68890,"name":"Laverne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68893/","id":68893,"name":"Victor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68899/","id":68899,"name":"X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68921/","id":68921,"name":"Ultra-Humanitarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68925/","id":68925,"name":"Karen Cooper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68937/","id":68937,"name":"Lorelei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68948/","id":68948,"name":"Eddie Hope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68952/","id":68952,"name":"Magna Mater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68954/","id":68954,"name":"Calibraxis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68971/","id":68971,"name":"Janus Junior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68972/","id":68972,"name":"Garance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68973/","id":68973,"name":"Lily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68974/","id":68974,"name":"Shiloh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68980/","id":68980,"name":"Grog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68983/","id":68983,"name":"Ferril"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69056/","id":69056,"name":"Professor Banzai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69058/","id":69058,"name":"Bolt Crank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69061/","id":69061,"name":"Ulula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69074/","id":69074,"name":"Tursig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69084/","id":69084,"name":"Kakistos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69087/","id":69087,"name":"Mookie Bleak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69088/","id":69088,"name":"Jenny Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69130/","id":69130,"name":"Gout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69186/","id":69186,"name":"Grim Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69194/","id":69194,"name":"The Agent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69233/","id":69233,"name":"Bottom Feeder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69243/","id":69243,"name":"Hura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69254/","id":69254,"name":"Owen Cooley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69255/","id":69255,"name":"The Lightning Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69256/","id":69256,"name":"Mommy's Bull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69257/","id":69257,"name":"Black Jesus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69350/","id":69350,"name":"Tinker Belle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69358/","id":69358,"name":"Mr. Big"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69384/","id":69384,"name":"Deadcoil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69385/","id":69385,"name":"Mrs. Gwynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69398/","id":69398,"name":"Drake Rippinngton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69399/","id":69399,"name":"Karl Steinman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69456/","id":69456,"name":"Neon Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69518/","id":69518,"name":"Duke Durovallis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69519/","id":69519,"name":"Duke Cloy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69520/","id":69520,"name":"Vampiress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69522/","id":69522,"name":"Vampire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69523/","id":69523,"name":"Wingnut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69528/","id":69528,"name":"Darren Shan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69532/","id":69532,"name":"Larten Crepsley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69533/","id":69533,"name":"Steve Leonard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69534/","id":69534,"name":"Agumon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69550/","id":69550,"name":"Ralphie Hutchins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69572/","id":69572,"name":"Tabitha Gance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69607/","id":69607,"name":"Orian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69610/","id":69610,"name":"Stunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69618/","id":69618,"name":"Luke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69647/","id":69647,"name":"Shadow of War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69649/","id":69649,"name":"Gobo Fraggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69657/","id":69657,"name":"Flaky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69659/","id":69659,"name":"Skinny Ha Ha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69661/","id":69661,"name":"The Grotesque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69665/","id":69665,"name":"Ironhoof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69672/","id":69672,"name":"Isilra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69677/","id":69677,"name":"Loreli Fallglade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69678/","id":69678,"name":"Brink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69699/","id":69699,"name":"Ul-Uhar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69765/","id":69765,"name":"Auron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69771/","id":69771,"name":"Blessed Mother of Clan MacDougal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69801/","id":69801,"name":"Cleah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69811/","id":69811,"name":"Renamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69812/","id":69812,"name":"Terriermon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69813/","id":69813,"name":"Guilmon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69823/","id":69823,"name":"NiGHTS"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69829/","id":69829,"name":"Gabriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69835/","id":69835,"name":"Mini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69836/","id":69836,"name":"Reala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69842/","id":69842,"name":"Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69848/","id":69848,"name":"Mogré-Ür"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69852/","id":69852,"name":"Kid Fusion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69875/","id":69875,"name":"The Doppelganger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69885/","id":69885,"name":"Stefani Gwen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69886/","id":69886,"name":"Jola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69887/","id":69887,"name":"Wisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69905/","id":69905,"name":"Morlagan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69906/","id":69906,"name":"Lynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69954/","id":69954,"name":"Blakfu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70052/","id":70052,"name":"Slinky Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70054/","id":70054,"name":"Sarge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70055/","id":70055,"name":"RC Race Car"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70056/","id":70056,"name":"Etch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70057/","id":70057,"name":"Lenny the Binoculars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70058/","id":70058,"name":"Hockey Puck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70059/","id":70059,"name":"Rocky Gibraltar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70071/","id":70071,"name":"Mer-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70077/","id":70077,"name":"Nuju"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70080/","id":70080,"name":"Vakama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70081/","id":70081,"name":"Nokama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70084/","id":70084,"name":"Onewa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70110/","id":70110,"name":"Sir Ulrik the Unspeakable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70116/","id":70116,"name":"Krana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70122/","id":70122,"name":"Cahdok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70134/","id":70134,"name":"Mike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70135/","id":70135,"name":"Wheezy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70137/","id":70137,"name":"Master Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70148/","id":70148,"name":"Julian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70185/","id":70185,"name":"Colonel Burke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70204/","id":70204,"name":"One Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70208/","id":70208,"name":"Barry the Chopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70212/","id":70212,"name":"PointyFace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70215/","id":70215,"name":"Pandora Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70223/","id":70223,"name":"Bason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70237/","id":70237,"name":"Dal Damoc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70351/","id":70351,"name":"Jack Hammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70352/","id":70352,"name":"Reginald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70353/","id":70353,"name":"Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70424/","id":70424,"name":"Empyrean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70429/","id":70429,"name":"Leonid Tesla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70463/","id":70463,"name":"Kid Intense"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70470/","id":70470,"name":"Micron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70471/","id":70471,"name":"Rat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70499/","id":70499,"name":"Soda Jerk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70535/","id":70535,"name":"Savanti Juliet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70536/","id":70536,"name":"Marked"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70538/","id":70538,"name":"Red Son Superman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70546/","id":70546,"name":"Desolation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70548/","id":70548,"name":"Fat Momma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70573/","id":70573,"name":"Merigold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70632/","id":70632,"name":"Brownbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70641/","id":70641,"name":"Count Berlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70653/","id":70653,"name":"Elfboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70663/","id":70663,"name":"Snake 'n' Bacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70689/","id":70689,"name":"Happy Noodleboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70726/","id":70726,"name":"S.A.R.A.H."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70772/","id":70772,"name":"Bird-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70780/","id":70780,"name":"Harry The Werewolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70781/","id":70781,"name":"Cadille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70784/","id":70784,"name":"Minette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70813/","id":70813,"name":"Colyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70907/","id":70907,"name":"Night Glider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70908/","id":70908,"name":"Bombast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70923/","id":70923,"name":"Racal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70927/","id":70927,"name":"Hotaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70928/","id":70928,"name":"Havik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70929/","id":70929,"name":"Dairou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71024/","id":71024,"name":"Moonmirror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71025/","id":71025,"name":"Tumble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71026/","id":71026,"name":"Strand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71028/","id":71028,"name":"Foam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71030/","id":71030,"name":"Reef"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71031/","id":71031,"name":"Sandsparkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71032/","id":71032,"name":"Salt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71033/","id":71033,"name":"Spray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71036/","id":71036,"name":"Drift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71040/","id":71040,"name":"Gull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71041/","id":71041,"name":"Sandspinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71043/","id":71043,"name":"Zephyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71045/","id":71045,"name":"Gibra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71047/","id":71047,"name":"Deir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71048/","id":71048,"name":"Adya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71049/","id":71049,"name":"Aerth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71050/","id":71050,"name":"Kaslen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71051/","id":71051,"name":"Kalil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71052/","id":71052,"name":"Rillfisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71053/","id":71053,"name":"Sefra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71055/","id":71055,"name":"Yurek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71061/","id":71061,"name":"Doctor Roag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71083/","id":71083,"name":"William Nelson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71089/","id":71089,"name":"Stormlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71090/","id":71090,"name":"Talen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71111/","id":71111,"name":"Bacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71112/","id":71112,"name":"Pickle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71129/","id":71129,"name":"Coalheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71164/","id":71164,"name":"Clem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71177/","id":71177,"name":"Xarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71180/","id":71180,"name":"Grom Hellscream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71184/","id":71184,"name":"Brother Night"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71205/","id":71205,"name":"Diva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71212/","id":71212,"name":"Johnny Savage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71300/","id":71300,"name":"Saturnine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71316/","id":71316,"name":"Daigoro Kurigashira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71346/","id":71346,"name":"Junkyard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71350/","id":71350,"name":"Tong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71351/","id":71351,"name":"Mik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71352/","id":71352,"name":"Turg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71353/","id":71353,"name":"Korr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71360/","id":71360,"name":"Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71361/","id":71361,"name":"Romalthi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71384/","id":71384,"name":"Nazi Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71423/","id":71423,"name":"Fairy Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71426/","id":71426,"name":"Civet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71428/","id":71428,"name":"Miss Poltergeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71431/","id":71431,"name":"Brazen Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71435/","id":71435,"name":"Acheron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71436/","id":71436,"name":"Major Victory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71447/","id":71447,"name":"Tinkerballa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71450/","id":71450,"name":"Clara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71451/","id":71451,"name":"Zaboo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71474/","id":71474,"name":"Ziggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71476/","id":71476,"name":"Nemia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71487/","id":71487,"name":"Iron Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71490/","id":71490,"name":"Cypher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71494/","id":71494,"name":"Jackson Hyde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71502/","id":71502,"name":"Prue Halliwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71507/","id":71507,"name":"Cole Turner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71510/","id":71510,"name":"Olik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71511/","id":71511,"name":"Stephen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71513/","id":71513,"name":"Scrubb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71519/","id":71519,"name":"Conroy Macgregor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71522/","id":71522,"name":"Unown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71536/","id":71536,"name":"Moray Earl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71542/","id":71542,"name":"Claire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71603/","id":71603,"name":"Psychodoughboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71605/","id":71605,"name":"Reverend Meat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71620/","id":71620,"name":"Lord Sardonyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71622/","id":71622,"name":"Tanis Half-Elven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71623/","id":71623,"name":"Tasslehoff Burrfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71641/","id":71641,"name":"Goatman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71642/","id":71642,"name":"Kid Zippo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71643/","id":71643,"name":"Swampman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71682/","id":71682,"name":"Zak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71687/","id":71687,"name":"Crimson Centipede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71693/","id":71693,"name":"Jack the Giant Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71702/","id":71702,"name":"Tsin Hark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71704/","id":71704,"name":"Rhinosaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71714/","id":71714,"name":"Allegra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71763/","id":71763,"name":"Comet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71775/","id":71775,"name":"Scream Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71778/","id":71778,"name":"Joseph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71791/","id":71791,"name":"Zankou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71794/","id":71794,"name":"Alyssa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71809/","id":71809,"name":"Macro Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71831/","id":71831,"name":"Legate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71832/","id":71832,"name":"Bettina Kaposvar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71833/","id":71833,"name":"Emese Kisfaludi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71834/","id":71834,"name":"Nikolett Bodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71836/","id":71836,"name":"Judge Doom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71852/","id":71852,"name":"G.E.M."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71882/","id":71882,"name":"Pru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71883/","id":71883,"name":"Blunderboar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71896/","id":71896,"name":"Reynardine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71911/","id":71911,"name":"Jessica Hamby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71927/","id":71927,"name":"Bizarro All-Star"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71937/","id":71937,"name":"Stephen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71938/","id":71938,"name":"Brad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71953/","id":71953,"name":"Orun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71964/","id":71964,"name":"Sandra Verdugo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71975/","id":71975,"name":"Jokey Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71976/","id":71976,"name":"Handy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71977/","id":71977,"name":"Baker Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71978/","id":71978,"name":"Vanity Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71979/","id":71979,"name":"Greedy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71980/","id":71980,"name":"Clumsy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71999/","id":71999,"name":"Biyomon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72000/","id":72000,"name":"Tentomon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72001/","id":72001,"name":"Palmon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72002/","id":72002,"name":"Gomamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72003/","id":72003,"name":"Patamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72004/","id":72004,"name":"Kuwagamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72005/","id":72005,"name":"Shellmon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72006/","id":72006,"name":"Seadramon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72007/","id":72007,"name":"Meramon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72008/","id":72008,"name":"Monzaemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72010/","id":72010,"name":"Ogremon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72012/","id":72012,"name":"Bakemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72013/","id":72013,"name":"Numemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72014/","id":72014,"name":"Monochromon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72015/","id":72015,"name":"Frigimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72016/","id":72016,"name":"Mojyamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72017/","id":72017,"name":"Chuumon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72018/","id":72018,"name":"Sukamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72019/","id":72019,"name":"Centarumon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72047/","id":72047,"name":"John Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72056/","id":72056,"name":"Green Glob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72061/","id":72061,"name":"Darkstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72072/","id":72072,"name":"Glyph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72073/","id":72073,"name":"Ravyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72081/","id":72081,"name":"Karg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72108/","id":72108,"name":"Plasmo the Mystic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72146/","id":72146,"name":"Blue Damsel Fly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72168/","id":72168,"name":"Mr. Percy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72177/","id":72177,"name":"Onyx the Invincible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72178/","id":72178,"name":"Timoth Eyesbright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72179/","id":72179,"name":"Kyriani of Shadowdale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72224/","id":72224,"name":"The Schoolbus kids"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72227/","id":72227,"name":"Maria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72228/","id":72228,"name":"Janet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72229/","id":72229,"name":"Danielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72232/","id":72232,"name":"Laurie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72234/","id":72234,"name":"Jean Ovington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72244/","id":72244,"name":"Foxilon Cardluck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72245/","id":72245,"name":"Vartan Hai Sylvar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72247/","id":72247,"name":"Minder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72252/","id":72252,"name":"The Abyss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72272/","id":72272,"name":"Coop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72279/","id":72279,"name":"Myrrth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72281/","id":72281,"name":"Jack Griffin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72291/","id":72291,"name":"Xanathar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72294/","id":72294,"name":"Dunstanny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72296/","id":72296,"name":"Ellaya Halfmoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72302/","id":72302,"name":"Clownfish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72303/","id":72303,"name":"Krusivax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72322/","id":72322,"name":"Hatchan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72346/","id":72346,"name":"Callet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72368/","id":72368,"name":"Bran-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72370/","id":72370,"name":"Choco Doom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72371/","id":72371,"name":"Green Vegetable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72372/","id":72372,"name":"Mean Cuisine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72373/","id":72373,"name":"Mister Plant'r"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72386/","id":72386,"name":"Heartbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72442/","id":72442,"name":"Moka Akashiya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72467/","id":72467,"name":"Pohrager"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72472/","id":72472,"name":"Piscator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72478/","id":72478,"name":"House of Shadows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72491/","id":72491,"name":"Luz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72501/","id":72501,"name":"Mr. Polyphemus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72518/","id":72518,"name":"Fuseli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72531/","id":72531,"name":"Jodie Christianson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72569/","id":72569,"name":"Martillo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72588/","id":72588,"name":"Musa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72600/","id":72600,"name":"Sssnakeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72606/","id":72606,"name":"Barry West"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72709/","id":72709,"name":"Ra-Ka-Tep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72712/","id":72712,"name":"Baron Tibor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72739/","id":72739,"name":"K'ai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72742/","id":72742,"name":"Xorkon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72780/","id":72780,"name":"Secret Servant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72782/","id":72782,"name":"Body-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72785/","id":72785,"name":"Granite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72786/","id":72786,"name":"Lye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72787/","id":72787,"name":"Bizmuth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72788/","id":72788,"name":"Onyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72808/","id":72808,"name":"Sysyphyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72809/","id":72809,"name":"Gnruk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72810/","id":72810,"name":"The Masked Mute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72811/","id":72811,"name":"Gith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72813/","id":72813,"name":"Mark Harris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72814/","id":72814,"name":"Director Robbins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72830/","id":72830,"name":"Guardian Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72832/","id":72832,"name":"Mahatma KaalDoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72846/","id":72846,"name":"Stickboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72904/","id":72904,"name":"Vendetta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72932/","id":72932,"name":"Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72974/","id":72974,"name":"Dead Cert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72986/","id":72986,"name":"Destine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73002/","id":73002,"name":"The Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73003/","id":73003,"name":"Brimstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73004/","id":73004,"name":"Khylund"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73021/","id":73021,"name":"Porcelain Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73030/","id":73030,"name":"The Never Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73078/","id":73078,"name":"Black Hole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73082/","id":73082,"name":"Black Tarantula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73087/","id":73087,"name":"Abira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73089/","id":73089,"name":"Husam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73090/","id":73090,"name":"Husni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73091/","id":73091,"name":"Kadar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73092/","id":73092,"name":"Oudvrou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73121/","id":73121,"name":"Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73137/","id":73137,"name":"CereCere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73138/","id":73138,"name":"PallaPalla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73139/","id":73139,"name":"JunJun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73140/","id":73140,"name":"VesVes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73146/","id":73146,"name":"Segura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73151/","id":73151,"name":"Vannar Treece"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73153/","id":73153,"name":"Lord Daiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73154/","id":73154,"name":"Gorlan Palladane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73165/","id":73165,"name":"Bepo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73190/","id":73190,"name":"Chasm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73201/","id":73201,"name":"Skøj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73222/","id":73222,"name":"Rainbow Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73242/","id":73242,"name":"King of Hyrule"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73244/","id":73244,"name":"Wizzrobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73249/","id":73249,"name":"Ghost Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73279/","id":73279,"name":"Lord Bottom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73281/","id":73281,"name":"Thrahkahl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73283/","id":73283,"name":"Mule"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73320/","id":73320,"name":"Johnny Fiama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73321/","id":73321,"name":"Hilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73322/","id":73322,"name":"Wayne & Wanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73335/","id":73335,"name":"Foaly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73351/","id":73351,"name":"Issitoq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73360/","id":73360,"name":"Guilt-Na-Zan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73386/","id":73386,"name":"Ginger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73398/","id":73398,"name":"Kuei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73434/","id":73434,"name":"Argos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73446/","id":73446,"name":"Kimora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73456/","id":73456,"name":"Max Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73458/","id":73458,"name":"Selach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73470/","id":73470,"name":"Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73472/","id":73472,"name":"Glow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73476/","id":73476,"name":"Olvido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73479/","id":73479,"name":"Mali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73502/","id":73502,"name":"Lord Thane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73511/","id":73511,"name":"Jo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73523/","id":73523,"name":"Camellia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73552/","id":73552,"name":"Duke of Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73575/","id":73575,"name":"Jian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73588/","id":73588,"name":"Quelin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73589/","id":73589,"name":"Ambur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73619/","id":73619,"name":"Deathstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73642/","id":73642,"name":"Karista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73704/","id":73704,"name":"Minderel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73710/","id":73710,"name":"Benjamin Raymond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73712/","id":73712,"name":"Achak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73713/","id":73713,"name":"Damen Kilgallen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73716/","id":73716,"name":"Leo Zimm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73718/","id":73718,"name":"Mato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73719/","id":73719,"name":"Sheba Sugarfang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73744/","id":73744,"name":"Barry Kuda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73752/","id":73752,"name":"Doctor Horror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73768/","id":73768,"name":"Sentinel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73817/","id":73817,"name":"Berzelius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73826/","id":73826,"name":"Abbey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73829/","id":73829,"name":"Ralph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73832/","id":73832,"name":"Sid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73890/","id":73890,"name":"Green Goblin Construct"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73895/","id":73895,"name":"Zombie Fetuses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73897/","id":73897,"name":"Satanas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73928/","id":73928,"name":"Cobalt Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73965/","id":73965,"name":"The Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74017/","id":74017,"name":"Warlash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74023/","id":74023,"name":"Nuclear Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74040/","id":74040,"name":"Kathana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74079/","id":74079,"name":"Sapphire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74081/","id":74081,"name":"Strider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74121/","id":74121,"name":"Anhikiahl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74122/","id":74122,"name":"Ailwon San Fennlach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74123/","id":74123,"name":"Lucius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74145/","id":74145,"name":"Bubbles & Bibber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74160/","id":74160,"name":"The Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74163/","id":74163,"name":"Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74164/","id":74164,"name":"Solomon Negus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74166/","id":74166,"name":"Miko Mido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74171/","id":74171,"name":"Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74179/","id":74179,"name":"Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74211/","id":74211,"name":"Invunche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74218/","id":74218,"name":"Ghost Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74222/","id":74222,"name":"Hostile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74223/","id":74223,"name":"Chavez Raoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74225/","id":74225,"name":"Tygrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74301/","id":74301,"name":"Stanley Osborn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74352/","id":74352,"name":"Trick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74353/","id":74353,"name":"Hale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74354/","id":74354,"name":"Dyson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74355/","id":74355,"name":"Bo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74359/","id":74359,"name":"Anju Maaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74373/","id":74373,"name":"Jihad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74392/","id":74392,"name":"Galatea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74448/","id":74448,"name":"Tisha Swornheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74452/","id":74452,"name":"Clu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74468/","id":74468,"name":"Scythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74480/","id":74480,"name":"The Mysterious Traveler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74494/","id":74494,"name":"Bowling Ball Darkwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74516/","id":74516,"name":"Piedra Dura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74529/","id":74529,"name":"Bat-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74530/","id":74530,"name":"Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74570/","id":74570,"name":"Remus Lupin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74601/","id":74601,"name":"Logomancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74631/","id":74631,"name":"I-Force"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74646/","id":74646,"name":"Charger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74666/","id":74666,"name":"Corpus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74682/","id":74682,"name":"Txigon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74683/","id":74683,"name":"Orgrathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74685/","id":74685,"name":"Hybrid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74691/","id":74691,"name":"Magnum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74692/","id":74692,"name":"Warpath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74693/","id":74693,"name":"Crossfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74709/","id":74709,"name":"Contagion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74736/","id":74736,"name":"Shogun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74755/","id":74755,"name":"Death Masque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74804/","id":74804,"name":"Vampire X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74862/","id":74862,"name":"The Source"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74864/","id":74864,"name":"Vampire Darkwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74867/","id":74867,"name":"Paddywhack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74915/","id":74915,"name":"Bean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74946/","id":74946,"name":"Whistler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74950/","id":74950,"name":"Megumi Shimizu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74951/","id":74951,"name":"Alcide Herveaux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74952/","id":74952,"name":"Natsuno Yuuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74985/","id":74985,"name":"Mustakrakish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74988/","id":74988,"name":"Ceres"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74989/","id":74989,"name":"Everett Colvin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74991/","id":74991,"name":"Geza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74995/","id":74995,"name":"Svetlana Krol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75003/","id":75003,"name":"The Bouncer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75082/","id":75082,"name":"Lava Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75090/","id":75090,"name":"Timcanpy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75105/","id":75105,"name":"Gin Goh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75142/","id":75142,"name":"Dr. Cockroach, Ph.D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75219/","id":75219,"name":"Quorra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75300/","id":75300,"name":"Quackerjack's Teeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75307/","id":75307,"name":"Rowena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75312/","id":75312,"name":"Hoshimaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75321/","id":75321,"name":"Push Dagger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75322/","id":75322,"name":"Ein Sof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75327/","id":75327,"name":"Hainuwele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75328/","id":75328,"name":"Trickster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75329/","id":75329,"name":"Amapola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75330/","id":75330,"name":"Vagina Dentata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75338/","id":75338,"name":"Skald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75341/","id":75341,"name":"Melina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75342/","id":75342,"name":"Sera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75348/","id":75348,"name":"Calavera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75390/","id":75390,"name":"Fuzzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75392/","id":75392,"name":"Dinosaur Soldier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75400/","id":75400,"name":"Ciela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75405/","id":75405,"name":"Kitchen Sink Darkwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75409/","id":75409,"name":"Kazanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75489/","id":75489,"name":"Fex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75683/","id":75683,"name":"Mr. Oliver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75700/","id":75700,"name":"Black Widow (Clone)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75761/","id":75761,"name":"Percy Jackson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75771/","id":75771,"name":"Coven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75800/","id":75800,"name":"Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75941/","id":75941,"name":"Futuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75949/","id":75949,"name":"Shiron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75962/","id":75962,"name":"Van Kleiss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76007/","id":76007,"name":"Sotrold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76050/","id":76050,"name":"The Unknown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76082/","id":76082,"name":"Dr. Loy's Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76145/","id":76145,"name":"Flap Trap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76174/","id":76174,"name":"Khal Khalundurrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76175/","id":76175,"name":"Varis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76176/","id":76176,"name":"Bree Three-Hands"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76185/","id":76185,"name":"Khalis-Wu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76196/","id":76196,"name":"Slink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76216/","id":76216,"name":"Thingummyblob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76229/","id":76229,"name":"Mechomen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76276/","id":76276,"name":"Awinita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76277/","id":76277,"name":"Britt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76278/","id":76278,"name":"Bools"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76279/","id":76279,"name":"Benny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76280/","id":76280,"name":"Cross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76292/","id":76292,"name":"Butterworm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76321/","id":76321,"name":"Baron Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76322/","id":76322,"name":"Aracula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76324/","id":76324,"name":"Shriek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76329/","id":76329,"name":"Dr. Cyborn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76332/","id":76332,"name":"Yuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76333/","id":76333,"name":"Vito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76335/","id":76335,"name":"Wiglaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76337/","id":76337,"name":"Hector Spectre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76338/","id":76338,"name":"Juito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76339/","id":76339,"name":"Kuyuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76345/","id":76345,"name":"Green Sorceress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76352/","id":76352,"name":"Li'l Depressed Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76360/","id":76360,"name":"Oscar Hampel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76365/","id":76365,"name":"Trikon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76371/","id":76371,"name":"Count Rostavic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76379/","id":76379,"name":"Secret Skull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76405/","id":76405,"name":"Phough"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76406/","id":76406,"name":"Phummm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76407/","id":76407,"name":"Phay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76408/","id":76408,"name":"Phee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76409/","id":76409,"name":"Phy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76429/","id":76429,"name":"Mirrorman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76438/","id":76438,"name":"Phlopp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76439/","id":76439,"name":"Phlegm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76464/","id":76464,"name":"Aquagirl (Mareena)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76492/","id":76492,"name":"Elijah Delaney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76495/","id":76495,"name":"Tusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76497/","id":76497,"name":"Trench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76508/","id":76508,"name":"Barghest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76509/","id":76509,"name":"Mind Flayer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76525/","id":76525,"name":"Blimpy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76588/","id":76588,"name":"Zeron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76606/","id":76606,"name":"Rennek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76616/","id":76616,"name":"Deathless Druid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76639/","id":76639,"name":"Dr. Seuss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76642/","id":76642,"name":"Puck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76664/","id":76664,"name":"Rok-Korr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76668/","id":76668,"name":"Baron of Hell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76669/","id":76669,"name":"Cacodemon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76670/","id":76670,"name":"Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76672/","id":76672,"name":"Hell Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76673/","id":76673,"name":"Mech-Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76684/","id":76684,"name":"Fate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76731/","id":76731,"name":"Lost Soul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76736/","id":76736,"name":"Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76741/","id":76741,"name":"Spectre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76757/","id":76757,"name":"The Talking Blob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76775/","id":76775,"name":"Doc Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76850/","id":76850,"name":"Sunflower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76851/","id":76851,"name":"Grain Belt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76852/","id":76852,"name":"Pioneer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76853/","id":76853,"name":"Doctor Theopolis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76899/","id":76899,"name":"Freakazoid!"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76925/","id":76925,"name":"Crimson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76931/","id":76931,"name":"Fran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76932/","id":76932,"name":"Xion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76944/","id":76944,"name":"Auron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76945/","id":76945,"name":"Duckthulhu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76953/","id":76953,"name":"Amazing-Man (Will Everett)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76954/","id":76954,"name":"Amazing-Man (Will Everett III)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76983/","id":76983,"name":"Id the Selfish Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76994/","id":76994,"name":"Madu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76996/","id":76996,"name":"Wu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76997/","id":76997,"name":"Vil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77016/","id":77016,"name":"Erewhon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77027/","id":77027,"name":"Aslak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77045/","id":77045,"name":"Pineapple Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77090/","id":77090,"name":"Mr. Hell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77122/","id":77122,"name":"Carolei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77161/","id":77161,"name":"Wan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77170/","id":77170,"name":"Ferret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77183/","id":77183,"name":"Jana Bodie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77185/","id":77185,"name":"Iggy Koopa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77219/","id":77219,"name":"Saria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77220/","id":77220,"name":"Great Deku Tree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77230/","id":77230,"name":"Mido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77231/","id":77231,"name":"Fado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77232/","id":77232,"name":"Navi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77237/","id":77237,"name":"Raizo Kodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77244/","id":77244,"name":"Hikawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77253/","id":77253,"name":"Gor-Tok I"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77254/","id":77254,"name":"Thera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77255/","id":77255,"name":"Ingar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77266/","id":77266,"name":"Killkrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77267/","id":77267,"name":"Blackspell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77270/","id":77270,"name":"Grave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77274/","id":77274,"name":"Mystacina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77295/","id":77295,"name":"Sally"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77298/","id":77298,"name":"Keeper of the Deeper Well"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77307/","id":77307,"name":"Hex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77322/","id":77322,"name":"Mr. Bubbles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77340/","id":77340,"name":"Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77356/","id":77356,"name":"Lazarus Churchyard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77415/","id":77415,"name":"Royal Scientist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77437/","id":77437,"name":"The Absolutely"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77464/","id":77464,"name":"Tricerachops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77496/","id":77496,"name":"Moon Knight 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77534/","id":77534,"name":"Origami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77637/","id":77637,"name":"Fiddle O'Diddle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77643/","id":77643,"name":"Flip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77663/","id":77663,"name":"Madison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77687/","id":77687,"name":"Ikthalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77705/","id":77705,"name":"Bliss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77706/","id":77706,"name":"Ford"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77739/","id":77739,"name":"Jakkaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77740/","id":77740,"name":"Lord Kodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77741/","id":77741,"name":"Ryuhei Kodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77742/","id":77742,"name":"Suzume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77753/","id":77753,"name":"Tanpopo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77775/","id":77775,"name":"Lord Odacon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77780/","id":77780,"name":"Whispering Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77781/","id":77781,"name":"Hoodman Blind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77782/","id":77782,"name":"Hoodman Shame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77785/","id":77785,"name":"Bellmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77824/","id":77824,"name":"Scissorman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77860/","id":77860,"name":"Splodge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77885/","id":77885,"name":"Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77893/","id":77893,"name":"Urkor Malravenus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77894/","id":77894,"name":"Gunnar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77895/","id":77895,"name":"Helm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77926/","id":77926,"name":"Gornak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77927/","id":77927,"name":"Dragonbait"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77940/","id":77940,"name":"Grudvik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77943/","id":77943,"name":"Copernicus Jinx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77960/","id":77960,"name":"Sora Katra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77961/","id":77961,"name":"Sora Teraza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77962/","id":77962,"name":"Sora Maenya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77963/","id":77963,"name":"Suradin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77964/","id":77964,"name":"Mace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78048/","id":78048,"name":"Yonkers Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78062/","id":78062,"name":"Nina Mazursky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78074/","id":78074,"name":"Murilantilathenes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78107/","id":78107,"name":"Sylence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78114/","id":78114,"name":"Bellossom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78141/","id":78141,"name":"El Bruto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78144/","id":78144,"name":"Mana Cerace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78149/","id":78149,"name":"Doubleface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78200/","id":78200,"name":"Jack O'Ryan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78213/","id":78213,"name":"The Lost One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78215/","id":78215,"name":"Kennedy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78218/","id":78218,"name":"Power of Thought"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78237/","id":78237,"name":"Aradnea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78291/","id":78291,"name":"Tohru Mutou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78310/","id":78310,"name":"Krieger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78314/","id":78314,"name":"Adam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78386/","id":78386,"name":"Sean Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78421/","id":78421,"name":"Canterbury Cricket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78433/","id":78433,"name":"Sunako Kirishiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78435/","id":78435,"name":"Sam Wilder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78453/","id":78453,"name":"Theros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78454/","id":78454,"name":"Catharta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78463/","id":78463,"name":"Captain Scarlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78502/","id":78502,"name":"Jabe the Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78506/","id":78506,"name":"Eilah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78585/","id":78585,"name":"Alice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78601/","id":78601,"name":"Yyrkoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78602/","id":78602,"name":"Cymoril"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78603/","id":78603,"name":"Dyvim Tvar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78619/","id":78619,"name":"Lunette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78631/","id":78631,"name":"Sōki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78653/","id":78653,"name":"Mrs. Hyde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78692/","id":78692,"name":"Biowulf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78702/","id":78702,"name":"Skalamander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78703/","id":78703,"name":"Breach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78707/","id":78707,"name":"Nosepass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78729/","id":78729,"name":"Bloo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78731/","id":78731,"name":"Mother Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78804/","id":78804,"name":"Plank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78806/","id":78806,"name":"Fugue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78807/","id":78807,"name":"Karbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78811/","id":78811,"name":"Fractal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78812/","id":78812,"name":"Bubble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78813/","id":78813,"name":"Shrapnel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78816/","id":78816,"name":"Sugar Plum Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78817/","id":78817,"name":"Elliot the Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78841/","id":78841,"name":"Mr. Herriman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78842/","id":78842,"name":"Wilt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78843/","id":78843,"name":"Coco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78847/","id":78847,"name":"Eduardo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78883/","id":78883,"name":"Kay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78888/","id":78888,"name":"Tome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78889/","id":78889,"name":"Jake Spidermonkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78892/","id":78892,"name":"Windsor Gorilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78893/","id":78893,"name":"Bull Sharkowski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78894/","id":78894,"name":"Slips Python"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78899/","id":78899,"name":"Jawbone Grief"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78916/","id":78916,"name":"Le-Roj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78920/","id":78920,"name":"The Boggart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78963/","id":78963,"name":"Kandrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78984/","id":78984,"name":"Eben Took"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78992/","id":78992,"name":"Hachabialshka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78993/","id":78993,"name":"Hokkobialshka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79085/","id":79085,"name":"Super-Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79094/","id":79094,"name":"Kid Pestilence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79095/","id":79095,"name":"Famine Lass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79096/","id":79096,"name":"Plague Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79097/","id":79097,"name":"Skippy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79098/","id":79098,"name":"Lord Ronson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79099/","id":79099,"name":"C'est Hay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79127/","id":79127,"name":"Mandala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79128/","id":79128,"name":"Front"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79129/","id":79129,"name":"Balance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79136/","id":79136,"name":"Tiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79137/","id":79137,"name":"Argento"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79186/","id":79186,"name":"Caitiff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79196/","id":79196,"name":"Atticus Kane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79249/","id":79249,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79256/","id":79256,"name":"Fred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79257/","id":79257,"name":"Pedro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79258/","id":79258,"name":"Slim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79259/","id":79259,"name":"Tuuru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79277/","id":79277,"name":"Marcus Liberius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79278/","id":79278,"name":"Vortigar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79285/","id":79285,"name":"Alan Hallman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79293/","id":79293,"name":"Kasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79312/","id":79312,"name":"Sudana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79314/","id":79314,"name":"Milu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79322/","id":79322,"name":"Clayface (Russell)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79351/","id":79351,"name":"Nightmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79357/","id":79357,"name":"Judge Slauberius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79366/","id":79366,"name":"Evolutionary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79385/","id":79385,"name":"Mater Morbi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79398/","id":79398,"name":"Phobia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79413/","id":79413,"name":"Swamp Thing's Doppelganger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79449/","id":79449,"name":"Temper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79451/","id":79451,"name":"Alecto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79462/","id":79462,"name":"Ricky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79471/","id":79471,"name":"Volker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79525/","id":79525,"name":"El Conquistador"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79533/","id":79533,"name":"Mako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79568/","id":79568,"name":"H'sbiah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79573/","id":79573,"name":"Dream Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79614/","id":79614,"name":"Weeping Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79629/","id":79629,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79663/","id":79663,"name":"Rocky Horror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79675/","id":79675,"name":"Hagen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79680/","id":79680,"name":"Dagon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79681/","id":79681,"name":"Little Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79723/","id":79723,"name":"Lava Lord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79724/","id":79724,"name":"Weisbogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79730/","id":79730,"name":"Uriah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79731/","id":79731,"name":"Gamesmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79734/","id":79734,"name":"Abesaloma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79740/","id":79740,"name":"Sora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79741/","id":79741,"name":"Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79759/","id":79759,"name":"Chooch Chew"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79761/","id":79761,"name":"Pariah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79797/","id":79797,"name":"Volbragg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79798/","id":79798,"name":"Asher Cobb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79883/","id":79883,"name":"Drake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79901/","id":79901,"name":"Victor Alexander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79902/","id":79902,"name":"Marilyn de Fontesque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79932/","id":79932,"name":"Scourge of Worlds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79938/","id":79938,"name":"Khalis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79956/","id":79956,"name":"Obmoz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79973/","id":79973,"name":"Inka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79974/","id":79974,"name":"Karrik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79975/","id":79975,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79976/","id":79976,"name":"Quickshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79977/","id":79977,"name":"Ghost Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79978/","id":79978,"name":"Visigoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80021/","id":80021,"name":"Pam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80024/","id":80024,"name":"The Magister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80030/","id":80030,"name":"Lorena Krasiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80031/","id":80031,"name":"Ted, the Imp Shaloop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80033/","id":80033,"name":"Godric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80045/","id":80045,"name":"Big Howler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80075/","id":80075,"name":"The Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80127/","id":80127,"name":"Essence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80263/","id":80263,"name":"Les Perdu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80264/","id":80264,"name":"Temptress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80313/","id":80313,"name":"Jackson Whittemore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80314/","id":80314,"name":"Lydia Martin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80315/","id":80315,"name":"Derek Hale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80335/","id":80335,"name":"The Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80420/","id":80420,"name":"Calbraith A.H. Rodgers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80427/","id":80427,"name":"Baba Yaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80507/","id":80507,"name":"Hana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80525/","id":80525,"name":"Kurod Ormaon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80561/","id":80561,"name":"Ghastly McNasty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80637/","id":80637,"name":"Black Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80664/","id":80664,"name":"The Living Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80665/","id":80665,"name":"The Dark Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80712/","id":80712,"name":"Sōjirō Kusaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80725/","id":80725,"name":"Nighteyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80739/","id":80739,"name":"Fetish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80786/","id":80786,"name":"Rana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80835/","id":80835,"name":"Rice Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80839/","id":80839,"name":"Bloodbath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80879/","id":80879,"name":"Mother Globin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80889/","id":80889,"name":"Kurumu Kuruno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80913/","id":80913,"name":"Water God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80928/","id":80928,"name":"Echinodermos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80948/","id":80948,"name":"Trog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80967/","id":80967,"name":"Zebethyial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81039/","id":81039,"name":"Bzzk'Joh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81042/","id":81042,"name":"Blowfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81077/","id":81077,"name":"Gummige"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81079/","id":81079,"name":"Grateful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81148/","id":81148,"name":"Funky Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81149/","id":81149,"name":"Mr. Skeleton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81165/","id":81165,"name":"Katmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81177/","id":81177,"name":"Exploitinator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81187/","id":81187,"name":"Aldes Yancey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81218/","id":81218,"name":"Styx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81235/","id":81235,"name":"Enoch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81236/","id":81236,"name":"Marlissa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81237/","id":81237,"name":"Sophocles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81238/","id":81238,"name":"Marcus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81245/","id":81245,"name":"Neuro Nougami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81253/","id":81253,"name":"Zera Aomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81323/","id":81323,"name":"Firewalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81338/","id":81338,"name":"Florus Homo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81367/","id":81367,"name":"King Balor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81383/","id":81383,"name":"Devilman Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81384/","id":81384,"name":"Lan Asuka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81390/","id":81390,"name":"Rin Okumura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81393/","id":81393,"name":"Reddy Kilowatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81435/","id":81435,"name":"Monster Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81436/","id":81436,"name":"Sea Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81437/","id":81437,"name":"Ogre Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81438/","id":81438,"name":"Spider Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81558/","id":81558,"name":"LLandra da Silva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81559/","id":81559,"name":"Nocturna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81575/","id":81575,"name":"Rhames"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81582/","id":81582,"name":"Hideous Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81584/","id":81584,"name":"Ucky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81596/","id":81596,"name":"Hester Mather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81607/","id":81607,"name":"Gen Shishio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81626/","id":81626,"name":"Zatch Bell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81627/","id":81627,"name":"Tia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81656/","id":81656,"name":"Jajan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81666/","id":81666,"name":"Death-Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81682/","id":81682,"name":"Kaguro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81695/","id":81695,"name":"Selby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81725/","id":81725,"name":"King Valen Brand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81729/","id":81729,"name":"Eis Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81730/","id":81730,"name":"Haze Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81732/","id":81732,"name":"Nuova Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81733/","id":81733,"name":"Rage Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81734/","id":81734,"name":"Oceanus Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81735/","id":81735,"name":"Naturon Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81746/","id":81746,"name":"Black Smoke Shenron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81962/","id":81962,"name":"Worzel Gummidge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82026/","id":82026,"name":"Remnant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82035/","id":82035,"name":"Larry Rambow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82119/","id":82119,"name":"Cynthia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82154/","id":82154,"name":"Zoey Redbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82156/","id":82156,"name":"Damien Maslin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82160/","id":82160,"name":"Erin Bates"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82161/","id":82161,"name":"Shaunee Cole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82162/","id":82162,"name":"Stevie Ray Johnson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82245/","id":82245,"name":"Lupagar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82250/","id":82250,"name":"Zero Patient"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82273/","id":82273,"name":"Ubasti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82274/","id":82274,"name":"Francisco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82285/","id":82285,"name":"Dack Fayden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82287/","id":82287,"name":"Savage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82337/","id":82337,"name":"Richard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82341/","id":82341,"name":"Ice King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82342/","id":82342,"name":"Princess Bubblegum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82343/","id":82343,"name":"Marceline the Vampire Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82347/","id":82347,"name":"Cinnamon Bun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82348/","id":82348,"name":"The Lich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82353/","id":82353,"name":"Salamander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82368/","id":82368,"name":"Nicholas Gaunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82378/","id":82378,"name":"Encephalon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82379/","id":82379,"name":"Evangelist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82380/","id":82380,"name":"Gari Oyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82383/","id":82383,"name":"Ichor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82384/","id":82384,"name":"Ideal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82393/","id":82393,"name":"Origin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82396/","id":82396,"name":"Swine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82397/","id":82397,"name":"Urn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82399/","id":82399,"name":"X-666"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82425/","id":82425,"name":"Great Uncle Bulgaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82426/","id":82426,"name":"Wellington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82427/","id":82427,"name":"Tobermory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82430/","id":82430,"name":"Ivor the Engine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82432/","id":82432,"name":"Morph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82472/","id":82472,"name":"Black★Rock Shooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82516/","id":82516,"name":"Father"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82564/","id":82564,"name":"Guttlekraw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82629/","id":82629,"name":"Salacia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82630/","id":82630,"name":"Magdalyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82631/","id":82631,"name":"Dinah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82645/","id":82645,"name":"Fell Seer Whore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82646/","id":82646,"name":"Orctzar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82649/","id":82649,"name":"The Norman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82650/","id":82650,"name":"Schnoz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82651/","id":82651,"name":"Choppy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82686/","id":82686,"name":"Lobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82689/","id":82689,"name":"Beard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82690/","id":82690,"name":"Bowie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82691/","id":82691,"name":"Zazu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82692/","id":82692,"name":"Mountain Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82693/","id":82693,"name":"Dead-Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82703/","id":82703,"name":"Frank Bancroft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82704/","id":82704,"name":"Samuel Hain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82708/","id":82708,"name":"Possessed Turkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82713/","id":82713,"name":"Blotto the Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82717/","id":82717,"name":"Rachel Unglighter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82718/","id":82718,"name":"Slime Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82727/","id":82727,"name":"Aldous Morrigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82810/","id":82810,"name":"The Slug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82819/","id":82819,"name":"Swamp Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82840/","id":82840,"name":"Liquid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82841/","id":82841,"name":"Solid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82842/","id":82842,"name":"Vapor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82849/","id":82849,"name":"Skitter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82862/","id":82862,"name":"Cecelia The Cyclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82863/","id":82863,"name":"Mrs Cyclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82867/","id":82867,"name":"The Pale Horseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82869/","id":82869,"name":"Gloo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82882/","id":82882,"name":"Lattice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82885/","id":82885,"name":"Henry Dubble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82900/","id":82900,"name":"Cheech Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82921/","id":82921,"name":"Jonah Panghammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82924/","id":82924,"name":"Big Wreck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82925/","id":82925,"name":"Uppercut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82928/","id":82928,"name":"Kobold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82941/","id":82941,"name":"Abigor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82942/","id":82942,"name":"Atkins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82944/","id":82944,"name":"It!"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82960/","id":82960,"name":"Orb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82973/","id":82973,"name":"Secutor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82975/","id":82975,"name":"Rhapsody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82987/","id":82987,"name":"Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83048/","id":83048,"name":"Maxon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83078/","id":83078,"name":"Nameless One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83129/","id":83129,"name":"Baron Eckhart Von Falkenrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83130/","id":83130,"name":"Sifa Grent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83165/","id":83165,"name":"Redline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83209/","id":83209,"name":"Cronide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83242/","id":83242,"name":"Lump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83243/","id":83243,"name":"Deltite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83244/","id":83244,"name":"Little 'Orror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83259/","id":83259,"name":"Beloved"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83277/","id":83277,"name":"Mr. Sabahnur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83278/","id":83278,"name":"Mrs. Sabahnur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83297/","id":83297,"name":"Jonathan Tam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83301/","id":83301,"name":"Axle Munshine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83302/","id":83302,"name":"Musky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83331/","id":83331,"name":"Motalla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83358/","id":83358,"name":"Keko el Mago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83371/","id":83371,"name":"D'Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83386/","id":83386,"name":"Omni-Viewer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83387/","id":83387,"name":"J. Percival Poplaski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83397/","id":83397,"name":"Eldre Koh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83404/","id":83404,"name":"Mr. Fry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83406/","id":83406,"name":"Lilitu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83416/","id":83416,"name":"Malachi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83435/","id":83435,"name":"Miranda Cheung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83449/","id":83449,"name":"The Spawn of Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83468/","id":83468,"name":"Flower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83477/","id":83477,"name":"Highgate Vampire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83501/","id":83501,"name":"Re di Picche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83502/","id":83502,"name":"Zagar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83510/","id":83510,"name":"Unbeatable Foe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83520/","id":83520,"name":"Cerebrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83571/","id":83571,"name":"Mysterious Traveller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83575/","id":83575,"name":"Pearl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83576/","id":83576,"name":"Nash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83577/","id":83577,"name":"Mal Fraser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83578/","id":83578,"name":"Kuurth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83579/","id":83579,"name":"Baphon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83581/","id":83581,"name":"Yuki Makimura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83584/","id":83584,"name":"Tansy Fry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83585/","id":83585,"name":"Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83616/","id":83616,"name":"Liss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83631/","id":83631,"name":"Chucky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83639/","id":83639,"name":"Metazoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83654/","id":83654,"name":"Mammoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83659/","id":83659,"name":"Colombe Tiredaile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83696/","id":83696,"name":"Dmitri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83711/","id":83711,"name":"Bjurg Shieldwall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83719/","id":83719,"name":"Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83723/","id":83723,"name":"Sarstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83737/","id":83737,"name":"Vitruvian Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83767/","id":83767,"name":"Dark Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83857/","id":83857,"name":"Janus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83880/","id":83880,"name":"Ruby Crescent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83883/","id":83883,"name":"Izabel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83886/","id":83886,"name":"Enginehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83898/","id":83898,"name":"Lisandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83899/","id":83899,"name":"Niele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83903/","id":83903,"name":"Desert Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83920/","id":83920,"name":"Odara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83933/","id":83933,"name":"Nekapeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83936/","id":83936,"name":"King Firtf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83937/","id":83937,"name":"Skip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83940/","id":83940,"name":"Veran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83944/","id":83944,"name":"Onox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83945/","id":83945,"name":"Vaati"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83965/","id":83965,"name":"Chow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83991/","id":83991,"name":"Jakara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83995/","id":83995,"name":"Loriane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83997/","id":83997,"name":"Deenar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83998/","id":83998,"name":"Tarso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84000/","id":84000,"name":"Lenora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84015/","id":84015,"name":"Beluhga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84017/","id":84017,"name":"Sckhar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84054/","id":84054,"name":"Arnold Rimmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84067/","id":84067,"name":"Aspis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84068/","id":84068,"name":"Princess Tanya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84069/","id":84069,"name":"Throw Ironfist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84070/","id":84070,"name":"Camaleão"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84071/","id":84071,"name":"Tasloi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84081/","id":84081,"name":"Marhault Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84088/","id":84088,"name":"Sil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84089/","id":84089,"name":"Klaus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84090/","id":84090,"name":"Kabof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84091/","id":84091,"name":"Puck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84092/","id":84092,"name":"Domenik Windslasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84093/","id":84093,"name":"Tellerimm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84109/","id":84109,"name":"Pit Bull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84119/","id":84119,"name":"Face de Lune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84162/","id":84162,"name":"Loial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84217/","id":84217,"name":"Alucard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84224/","id":84224,"name":"Shadow Walker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84227/","id":84227,"name":"Donald Blake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84249/","id":84249,"name":"Man-Mountain of Dzoxk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84283/","id":84283,"name":"Mirkin the Mystic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84284/","id":84284,"name":"Lee Pyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84293/","id":84293,"name":"Tokagero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84299/","id":84299,"name":"Frankensurfer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84317/","id":84317,"name":"Kororo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84318/","id":84318,"name":"Eliza Faust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84327/","id":84327,"name":"Fren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84329/","id":84329,"name":"Holgor Greatfang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84397/","id":84397,"name":"Sara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84450/","id":84450,"name":"Barb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84452/","id":84452,"name":"Link"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84458/","id":84458,"name":"Monet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84459/","id":84459,"name":"Caesar Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84460/","id":84460,"name":"Smiley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84525/","id":84525,"name":"Tama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84549/","id":84549,"name":"Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84550/","id":84550,"name":"Karabasan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84554/","id":84554,"name":"Luke Castellan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84556/","id":84556,"name":"Grover Underwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84560/","id":84560,"name":"Lord Battle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84597/","id":84597,"name":"Sister Helena Hanbasquette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84609/","id":84609,"name":"Murder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84613/","id":84613,"name":"Honey Island Swamp Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84642/","id":84642,"name":"Gardenia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84662/","id":84662,"name":"Azure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84700/","id":84700,"name":"Frankie Stein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84743/","id":84743,"name":"Varric Tethras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84749/","id":84749,"name":"Phantom Ganon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84750/","id":84750,"name":"Elider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84754/","id":84754,"name":"Keila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84755/","id":84755,"name":"Bongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84763/","id":84763,"name":"Assistant Manager"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84770/","id":84770,"name":"Stinz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84827/","id":84827,"name":"Draken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84911/","id":84911,"name":"Flippy the Sea Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84919/","id":84919,"name":"Boneless Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85012/","id":85012,"name":"Sabrebak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85049/","id":85049,"name":"Draculass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85058/","id":85058,"name":"Grizzly Bearhug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85065/","id":85065,"name":"The Witness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85068/","id":85068,"name":"Kiva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85080/","id":85080,"name":"Mrs. Potato Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85218/","id":85218,"name":"Scraggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85222/","id":85222,"name":"Lord Thornwic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85274/","id":85274,"name":"Black Boris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85337/","id":85337,"name":"The Seven Enemies of Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85367/","id":85367,"name":"Noid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85368/","id":85368,"name":"Tequila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85389/","id":85389,"name":"Volthoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85392/","id":85392,"name":"Simon Glass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85431/","id":85431,"name":"Emil Cruikshank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85432/","id":85432,"name":"Jedidiah McMahon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85468/","id":85468,"name":"Odolwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85502/","id":85502,"name":"One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85503/","id":85503,"name":"Two"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85523/","id":85523,"name":"False God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85553/","id":85553,"name":"Noddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85554/","id":85554,"name":"Big Ears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85560/","id":85560,"name":"Haigus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85594/","id":85594,"name":"Madness Valkyrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85601/","id":85601,"name":"Bumper Carla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85604/","id":85604,"name":"Aynos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85639/","id":85639,"name":"Merisiel Sillvari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85645/","id":85645,"name":"Frank Kafka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85664/","id":85664,"name":"Wyatt Crowley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85690/","id":85690,"name":"Non"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85701/","id":85701,"name":"Madam Sharley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85704/","id":85704,"name":"Shinji Yagami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85733/","id":85733,"name":"Togekiss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85759/","id":85759,"name":"Octopus Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85778/","id":85778,"name":"Happy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85798/","id":85798,"name":"Martha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85828/","id":85828,"name":"Vegetable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85860/","id":85860,"name":"Hag of the Pits"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85875/","id":85875,"name":"Jabberwocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85901/","id":85901,"name":"Panthea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85940/","id":85940,"name":"Meltron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85947/","id":85947,"name":"Mele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85963/","id":85963,"name":"The Fixer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86004/","id":86004,"name":"Pinus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86007/","id":86007,"name":"Vaşak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86016/","id":86016,"name":"Snarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86038/","id":86038,"name":"Litwick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86054/","id":86054,"name":"Amphibian Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86069/","id":86069,"name":"Gilgamesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86094/","id":86094,"name":"Superdoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86113/","id":86113,"name":"King Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86120/","id":86120,"name":"Zebedee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86150/","id":86150,"name":"Tanith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86163/","id":86163,"name":"Charles Danvers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86176/","id":86176,"name":"Little Green Men"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86189/","id":86189,"name":"Yamara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86209/","id":86209,"name":"Elrond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86210/","id":86210,"name":"Celeborn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86230/","id":86230,"name":"Pandaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86232/","id":86232,"name":"Brökk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86241/","id":86241,"name":"Lord Gouzar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86258/","id":86258,"name":"Professor Yaffle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86270/","id":86270,"name":"Apocalypse Device"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86303/","id":86303,"name":"Fred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86352/","id":86352,"name":"Johnny Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86356/","id":86356,"name":"Selke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86360/","id":86360,"name":"Peas-In-A-Pod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86368/","id":86368,"name":"Creature Teacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86423/","id":86423,"name":"Plasti-Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86461/","id":86461,"name":"Drusilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86470/","id":86470,"name":"Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86471/","id":86471,"name":"Balberith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86472/","id":86472,"name":"Cousin Itt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86474/","id":86474,"name":"Gehenna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86494/","id":86494,"name":"Myranah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86495/","id":86495,"name":"Jenifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86509/","id":86509,"name":"Elicia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86512/","id":86512,"name":"Zorgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86517/","id":86517,"name":"Claudia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86518/","id":86518,"name":"Louis de Pointe du Lac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86557/","id":86557,"name":"Mzee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86569/","id":86569,"name":"The Weasel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86583/","id":86583,"name":"Mr. Twist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86600/","id":86600,"name":"Gurien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86601/","id":86601,"name":"Scartac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86602/","id":86602,"name":"Gael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86603/","id":86603,"name":"Gamael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86604/","id":86604,"name":"Gwent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86605/","id":86605,"name":"Bran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86612/","id":86612,"name":"Ariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86613/","id":86613,"name":"Caliban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86629/","id":86629,"name":"Malfegor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86664/","id":86664,"name":"Big Mom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86666/","id":86666,"name":"Alaric de Marnac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86667/","id":86667,"name":"Waldemar Daninsky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86671/","id":86671,"name":"Ex Nihilo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86673/","id":86673,"name":"Abyss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86686/","id":86686,"name":"Hunger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86687/","id":86687,"name":"Flagellum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86694/","id":86694,"name":"Faelar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86705/","id":86705,"name":"Plue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86706/","id":86706,"name":"Celty Sturluson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86710/","id":86710,"name":"Hadeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86711/","id":86711,"name":"Alyas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86712/","id":86712,"name":"Ionna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86713/","id":86713,"name":"Katrya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86726/","id":86726,"name":"Leysa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86727/","id":86727,"name":"Nyura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86728/","id":86728,"name":"Sofiya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86729/","id":86729,"name":"Yeva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86733/","id":86733,"name":"Polychrome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86742/","id":86742,"name":"Nara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86744/","id":86744,"name":"Tracia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86747/","id":86747,"name":"The Gorilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86793/","id":86793,"name":"Galley-wag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86794/","id":86794,"name":"Dutch Dolls"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86814/","id":86814,"name":"Fuzzy Lumpkins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86815/","id":86815,"name":"Ace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86816/","id":86816,"name":"Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86817/","id":86817,"name":"Lil' Arturo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86818/","id":86818,"name":"Grubber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86819/","id":86819,"name":"Big Billy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86844/","id":86844,"name":"Boatman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86897/","id":86897,"name":"Gargoyle (Son of Pan)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86916/","id":86916,"name":"Oak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86940/","id":86940,"name":"Eyghon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86947/","id":86947,"name":"Yeoman U.K."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86954/","id":86954,"name":"Auchter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86979/","id":86979,"name":"Thumpty Dumpty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86991/","id":86991,"name":"Clone 45"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87009/","id":87009,"name":"Shadow Runner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87035/","id":87035,"name":"Phelix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87036/","id":87036,"name":"Phit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87037/","id":87037,"name":"Phiend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87038/","id":87038,"name":"Phop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87046/","id":87046,"name":"Snoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87051/","id":87051,"name":"Ocelot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87052/","id":87052,"name":"Lodestone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87053/","id":87053,"name":"Static"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87054/","id":87054,"name":"Sponge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87099/","id":87099,"name":"Butane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87114/","id":87114,"name":"Edvard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87117/","id":87117,"name":"Giggles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87129/","id":87129,"name":"Brin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87142/","id":87142,"name":"Rock-Jaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87144/","id":87144,"name":"Shiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87145/","id":87145,"name":"Ghouldilocks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87146/","id":87146,"name":"Shiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87151/","id":87151,"name":"Saa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87159/","id":87159,"name":"Ice Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87160/","id":87160,"name":"Marshall Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87162/","id":87162,"name":"Prince Gumball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87228/","id":87228,"name":"Ghastel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87235/","id":87235,"name":"Kishime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87236/","id":87236,"name":"Ebifurya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87237/","id":87237,"name":"Misokatsun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87303/","id":87303,"name":"Eppie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87321/","id":87321,"name":"Dangerous Jinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87325/","id":87325,"name":"Living Wind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87371/","id":87371,"name":"Sinistrari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87372/","id":87372,"name":"Lala Wah-Wah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87373/","id":87373,"name":"Aggregate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87374/","id":87374,"name":"Jimmy Olsen Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87447/","id":87447,"name":"Infernal Core"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87452/","id":87452,"name":"Gunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87454/","id":87454,"name":"Point"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87455/","id":87455,"name":"Cleaner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87456/","id":87456,"name":"Command"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87481/","id":87481,"name":"Cassandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87517/","id":87517,"name":"Randall Jessup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87601/","id":87601,"name":"Pisces (Ecliptic's Zodiac)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87634/","id":87634,"name":"Entoma Vasilissa Zeta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87654/","id":87654,"name":"Mister Zimmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87664/","id":87664,"name":"Mr. Peanut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87670/","id":87670,"name":"Rubber Maid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87707/","id":87707,"name":"Bazrys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87709/","id":87709,"name":"Brother Daniel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87711/","id":87711,"name":"The Phantom Viking"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87719/","id":87719,"name":"Sir Simon de Canterville"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87728/","id":87728,"name":"Shadoweyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87735/","id":87735,"name":"Whim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87745/","id":87745,"name":"Pupshaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87746/","id":87746,"name":"Pushpaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87777/","id":87777,"name":"Fatalist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87821/","id":87821,"name":"Fungus the Bogeyman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87844/","id":87844,"name":"Murk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87853/","id":87853,"name":"AndrAIa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87854/","id":87854,"name":"Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87860/","id":87860,"name":"Daecon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87861/","id":87861,"name":"Megabyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87875/","id":87875,"name":"Turbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87876/","id":87876,"name":"Maxine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87877/","id":87877,"name":"Cecil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87887/","id":87887,"name":"Blood Dupre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87901/","id":87901,"name":"Jusef Sardu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87908/","id":87908,"name":"The Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87932/","id":87932,"name":"Suge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87933/","id":87933,"name":"Ruskoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87946/","id":87946,"name":"Xee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87956/","id":87956,"name":"Ego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87964/","id":87964,"name":"Treacle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87965/","id":87965,"name":"Brimstone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87968/","id":87968,"name":"Shiver Editor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87986/","id":87986,"name":"D’ginn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87991/","id":87991,"name":"Flame Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87994/","id":87994,"name":"Starchy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87996/","id":87996,"name":"Tuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87999/","id":87999,"name":"Kewlboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88003/","id":88003,"name":"Raggedy Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88004/","id":88004,"name":"Toast Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88005/","id":88005,"name":"Breakfast Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88007/","id":88007,"name":"Water Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88008/","id":88008,"name":"Ocean Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88009/","id":88009,"name":"Slime Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88010/","id":88010,"name":"Ghost Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88021/","id":88021,"name":"Kurui-No-Oni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88022/","id":88022,"name":"Iron Maiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88023/","id":88023,"name":"Jade Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88048/","id":88048,"name":"Aaron Hayley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88057/","id":88057,"name":"The Creep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88071/","id":88071,"name":"V.V."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88116/","id":88116,"name":"Judge Gallows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88117/","id":88117,"name":"Bigmouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88156/","id":88156,"name":"Nightmask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88171/","id":88171,"name":"Mara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88172/","id":88172,"name":"Canor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88185/","id":88185,"name":"Mr. Karswell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88187/","id":88187,"name":"Dietrich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88192/","id":88192,"name":"The Yenaldooshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88221/","id":88221,"name":"Urn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88247/","id":88247,"name":"Selena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88256/","id":88256,"name":"Cam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88257/","id":88257,"name":"Hex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88258/","id":88258,"name":"Princess Pentangle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88259/","id":88259,"name":"Prince Frothbar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88260/","id":88260,"name":"The Chief Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88298/","id":88298,"name":"Welman Matrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88299/","id":88299,"name":"Killabyte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88313/","id":88313,"name":"Absalom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88314/","id":88314,"name":"Adele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88317/","id":88317,"name":"Aladdin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88352/","id":88352,"name":"Morning Glory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88361/","id":88361,"name":"Broggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88376/","id":88376,"name":"Neferet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88377/","id":88377,"name":"Dragon Lankford"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88379/","id":88379,"name":"Lenobia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88383/","id":88383,"name":"Rasa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88413/","id":88413,"name":"Mother Talon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88416/","id":88416,"name":"Torch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88418/","id":88418,"name":"Shikal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88439/","id":88439,"name":"White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88531/","id":88531,"name":"Reptisaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88536/","id":88536,"name":"Sergeant Edwards"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88570/","id":88570,"name":"N'Aall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88579/","id":88579,"name":"Alkion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88624/","id":88624,"name":"Lyban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88625/","id":88625,"name":"Fillayne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88628/","id":88628,"name":"Lemoray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88629/","id":88629,"name":"Sisatii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88630/","id":88630,"name":"Tatsi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88631/","id":88631,"name":"Barrha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88632/","id":88632,"name":"Kraygon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88633/","id":88633,"name":"Ehnet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88634/","id":88634,"name":"Sandah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88635/","id":88635,"name":"Spax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88636/","id":88636,"name":"Jayshu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88638/","id":88638,"name":"Razbi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88641/","id":88641,"name":"Ponji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88642/","id":88642,"name":"Pekti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88699/","id":88699,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88700/","id":88700,"name":"Black Chack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88701/","id":88701,"name":"Elmer Kittenclaws"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88734/","id":88734,"name":"Leviathan "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88735/","id":88735,"name":"Sten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88752/","id":88752,"name":"Gwig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88765/","id":88765,"name":"Boq"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88812/","id":88812,"name":"Swatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88814/","id":88814,"name":"Nereus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88877/","id":88877,"name":"Teddie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88889/","id":88889,"name":"Tomoe Gozen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88910/","id":88910,"name":"China Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88915/","id":88915,"name":"Marshal Mallow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88921/","id":88921,"name":"Queen of the Scoodlers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88932/","id":88932,"name":"General Blug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88946/","id":88946,"name":"Sphinx "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88968/","id":88968,"name":"Dumpling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88969/","id":88969,"name":"Blossom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88971/","id":88971,"name":"Snappy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88972/","id":88972,"name":"Slouchy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88973/","id":88973,"name":"Natural Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88974/","id":88974,"name":"Sassette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88982/","id":88982,"name":"Kaliko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88989/","id":88989,"name":"Bigfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89007/","id":89007,"name":"John Dough"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89010/","id":89010,"name":"Queen Dolly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89011/","id":89011,"name":"The Candy Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89018/","id":89018,"name":"Kirkuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89019/","id":89019,"name":"Skuld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89020/","id":89020,"name":"Tubold "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89031/","id":89031,"name":"Drahmin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89032/","id":89032,"name":"Moloch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89059/","id":89059,"name":"Sus Antigoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89072/","id":89072,"name":"Schanulleke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89078/","id":89078,"name":"Kludde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89079/","id":89079,"name":"Lange Wapper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89084/","id":89084,"name":"Ginji Kusanagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89097/","id":89097,"name":"Bokbaard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89099/","id":89099,"name":"Bhébhé"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89141/","id":89141,"name":"Mizore Shirayuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89158/","id":89158,"name":"Hi Five Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89159/","id":89159,"name":"Benson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89213/","id":89213,"name":"Skips"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89216/","id":89216,"name":"Yukari Sendo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89228/","id":89228,"name":"Jigoro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89258/","id":89258,"name":"Kumacy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89264/","id":89264,"name":"Zombie Lola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89290/","id":89290,"name":"Griffon Kato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89292/","id":89292,"name":"Ruby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89303/","id":89303,"name":"Berreg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89323/","id":89323,"name":"Brom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89325/","id":89325,"name":"Ferdie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89329/","id":89329,"name":"Oars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89334/","id":89334,"name":"Oinkchuck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89382/","id":89382,"name":"Zadori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89394/","id":89394,"name":"Zombie Risky Brothers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89432/","id":89432,"name":"Henry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89458/","id":89458,"name":"Taralan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89489/","id":89489,"name":"Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89491/","id":89491,"name":"Scotch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89508/","id":89508,"name":"Lassoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89509/","id":89509,"name":"Funkfreed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89549/","id":89549,"name":"Mondo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89647/","id":89647,"name":"Tiger Ingwe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89686/","id":89686,"name":"Blarrgh the Unliving"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89693/","id":89693,"name":"Ul-Waa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89757/","id":89757,"name":"The Red Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89859/","id":89859,"name":"Dadingra Ummon Tarru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89864/","id":89864,"name":"Man Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89866/","id":89866,"name":"Dirty Bubble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89872/","id":89872,"name":"Grandma SquarePants"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89900/","id":89900,"name":"Mr. Tumnus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90017/","id":90017,"name":"Horror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90018/","id":90018,"name":"Fantasy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90019/","id":90019,"name":"Adventure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90057/","id":90057,"name":"Lord Neveling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90058/","id":90058,"name":"Nutmarrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90066/","id":90066,"name":"Feathertop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90091/","id":90091,"name":"Gogo Dodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90101/","id":90101,"name":"Anne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90102/","id":90102,"name":"Suture"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90124/","id":90124,"name":"Calcifer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90193/","id":90193,"name":"Skarlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90195/","id":90195,"name":"Sareena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90209/","id":90209,"name":"Energumen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90268/","id":90268,"name":"Hollow Ichigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90290/","id":90290,"name":"Sulumor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90313/","id":90313,"name":"Jexter The Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90329/","id":90329,"name":"Bizarro Lois Lane Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90343/","id":90343,"name":"Junebug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90357/","id":90357,"name":"Nylese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90359/","id":90359,"name":"Anjaha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90360/","id":90360,"name":"Luna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90362/","id":90362,"name":"Misery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90376/","id":90376,"name":"Pixie King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90387/","id":90387,"name":"Booster Cogburn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90403/","id":90403,"name":"Amingo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90413/","id":90413,"name":"The Lord of Nothing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90475/","id":90475,"name":"Doctor Rhodon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90481/","id":90481,"name":"Hopalong Bunny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90562/","id":90562,"name":"Jabes Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90580/","id":90580,"name":"Asguiaro Ebern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90719/","id":90719,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90720/","id":90720,"name":"Koroviev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90963/","id":90963,"name":"DarkAlien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90964/","id":90964,"name":"General Guph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90965/","id":90965,"name":"Chief of the Whimsies"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90981/","id":90981,"name":"Mr. Sunflower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90983/","id":90983,"name":"Red Cap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91024/","id":91024,"name":"Setsuna Sakurazaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91123/","id":91123,"name":"Lord Demonpimp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91127/","id":91127,"name":"Gun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91172/","id":91172,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91208/","id":91208,"name":"Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91211/","id":91211,"name":"Gunsmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91216/","id":91216,"name":"The Dead King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91232/","id":91232,"name":"Heroine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91233/","id":91233,"name":"Human Shield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91237/","id":91237,"name":"Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91287/","id":91287,"name":"Tulem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91289/","id":91289,"name":"Skulora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91290/","id":91290,"name":"Al-Shalizar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91301/","id":91301,"name":"Anansa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91306/","id":91306,"name":"Dordoni Alessandro Del Socaccio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91307/","id":91307,"name":"Gantenbainne Mosqueda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91308/","id":91308,"name":"Rudbornn Chelute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91325/","id":91325,"name":"Tara Normal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91352/","id":91352,"name":"Big Roy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91406/","id":91406,"name":"Dimitrios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91442/","id":91442,"name":"Kyros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91478/","id":91478,"name":"White Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91480/","id":91480,"name":"Lava"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91497/","id":91497,"name":"Grand Gallipoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91530/","id":91530,"name":"Sinful Suzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91533/","id":91533,"name":"Felicia Valentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91550/","id":91550,"name":"Elmer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91591/","id":91591,"name":"Milo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91596/","id":91596,"name":"Relf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91614/","id":91614,"name":"Tree-Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91629/","id":91629,"name":"Great Beast of Pol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91631/","id":91631,"name":"Kirren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91635/","id":91635,"name":"Tolos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91670/","id":91670,"name":"Devil's Heart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91680/","id":91680,"name":"Scorpiarius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91701/","id":91701,"name":"Amelia Greene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91731/","id":91731,"name":"Monster in the Cellar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91735/","id":91735,"name":"Seeka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91736/","id":91736,"name":"Boudica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91737/","id":91737,"name":"Sasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91738/","id":91738,"name":"The Architect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91742/","id":91742,"name":"Gray Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91746/","id":91746,"name":"Slave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91747/","id":91747,"name":"Skirmish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91751/","id":91751,"name":"Inquisitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91753/","id":91753,"name":"Captain Haki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91754/","id":91754,"name":"Dr. Goyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91755/","id":91755,"name":"The Protector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91765/","id":91765,"name":"Bala"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91766/","id":91766,"name":"Kanu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91767/","id":91767,"name":"King Ku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91769/","id":91769,"name":"Zythor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91770/","id":91770,"name":"Sopo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91771/","id":91771,"name":"Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91820/","id":91820,"name":"Banara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91827/","id":91827,"name":"Black Streak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91834/","id":91834,"name":"Padma Singh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91848/","id":91848,"name":"Kai-Ra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91850/","id":91850,"name":"Kalibar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91854/","id":91854,"name":"Ika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91861/","id":91861,"name":"Brother Jonah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91866/","id":91866,"name":"Quantum Mechanic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91962/","id":91962,"name":"Sea King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91965/","id":91965,"name":"Adolf Impossible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91969/","id":91969,"name":"Miss Moonbeam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91970/","id":91970,"name":"Man In the Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91988/","id":91988,"name":"Nekal-Gehep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92050/","id":92050,"name":"Zhadorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92072/","id":92072,"name":"Mayfair Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92075/","id":92075,"name":"Jocko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92078/","id":92078,"name":"Damon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92102/","id":92102,"name":"Maia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92112/","id":92112,"name":"Green Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92116/","id":92116,"name":"Smogger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92118/","id":92118,"name":"Lord Contaminous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92119/","id":92119,"name":"Lights Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92120/","id":92120,"name":"Lawnranger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92121/","id":92121,"name":"Bottle Bandit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92122/","id":92122,"name":"Pulp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92123/","id":92123,"name":"Can-It"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92124/","id":92124,"name":"Oil Slick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92125/","id":92125,"name":"Garbageman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92126/","id":92126,"name":"Sulfura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92129/","id":92129,"name":"Stone-Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92140/","id":92140,"name":"Tanakadon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92142/","id":92142,"name":"Tareva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92150/","id":92150,"name":"Star Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92154/","id":92154,"name":"Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92164/","id":92164,"name":"Organism 0.9B"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92193/","id":92193,"name":"Ogarth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92274/","id":92274,"name":"Barani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92281/","id":92281,"name":"Zombie Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92327/","id":92327,"name":"Mubahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92344/","id":92344,"name":"Kentari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92349/","id":92349,"name":"King Kleaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92350/","id":92350,"name":"First and Foremost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92351/","id":92351,"name":"Cinnamon Bunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92352/","id":92352,"name":"Captain Dipp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92387/","id":92387,"name":"Loch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92395/","id":92395,"name":"Weed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92479/","id":92479,"name":"Amalga-Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92488/","id":92488,"name":"Lobok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92521/","id":92521,"name":"Sumo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92524/","id":92524,"name":"Hyoudou Issei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92525/","id":92525,"name":"Rias Gremory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92546/","id":92546,"name":"Betty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92562/","id":92562,"name":"Tiny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92563/","id":92563,"name":"Vince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92564/","id":92564,"name":"Vicki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92566/","id":92566,"name":"Sasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92567/","id":92567,"name":"Rick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92568/","id":92568,"name":"Anna Romanova"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92595/","id":92595,"name":"Asia Argento"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92601/","id":92601,"name":"Lantida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92602/","id":92602,"name":"Naulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92604/","id":92604,"name":"Akeno Himejima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92606/","id":92606,"name":"Yuuto Kiba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92626/","id":92626,"name":"Raynare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92628/","id":92628,"name":"Koneko Toujou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92630/","id":92630,"name":"Xenovia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92656/","id":92656,"name":"Irina Shidou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92662/","id":92662,"name":"Ravel Phenex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92663/","id":92663,"name":"Viser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92703/","id":92703,"name":"Bram Thirla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92730/","id":92730,"name":"Pizga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92731/","id":92731,"name":"Thetis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92738/","id":92738,"name":"King Kelpa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92745/","id":92745,"name":"Eelo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92751/","id":92751,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92755/","id":92755,"name":"Sona Sitri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92796/","id":92796,"name":"Giant of the Castle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92887/","id":92887,"name":"Pan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92888/","id":92888,"name":"Morg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92889/","id":92889,"name":"Meliodas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92929/","id":92929,"name":"Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92963/","id":92963,"name":"Senketsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92977/","id":92977,"name":"Chongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92979/","id":92979,"name":"King of the Redskinned Fiends"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92999/","id":92999,"name":"Eallal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93005/","id":93005,"name":"The Polymath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93043/","id":93043,"name":"Pyscatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93044/","id":93044,"name":"Jhandark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93045/","id":93045,"name":"Bekkit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93046/","id":93046,"name":"Aurwel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93047/","id":93047,"name":"Balaal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93048/","id":93048,"name":"Ossem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93049/","id":93049,"name":"Trittex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93050/","id":93050,"name":"Llyna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93051/","id":93051,"name":"Magdalena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93052/","id":93052,"name":"Edith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93053/","id":93053,"name":"Beatrice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93058/","id":93058,"name":"Mr. Cloot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93078/","id":93078,"name":"Lady Waziria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93079/","id":93079,"name":"Ud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93080/","id":93080,"name":"Oggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93082/","id":93082,"name":"Ivory Honeyshot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93104/","id":93104,"name":"Ren Kimura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93112/","id":93112,"name":"Ricardio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93122/","id":93122,"name":"A.J."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93143/","id":93143,"name":"Fulmina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93158/","id":93158,"name":"Land Shark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93183/","id":93183,"name":"Sass Squash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93187/","id":93187,"name":"Mistress Fara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93198/","id":93198,"name":"Alice Kedzierski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93209/","id":93209,"name":"Lamprey Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93210/","id":93210,"name":"Truth Field Projection Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93211/","id":93211,"name":"Dr. Broccoli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93213/","id":93213,"name":"Muscle Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93214/","id":93214,"name":"Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93216/","id":93216,"name":"Tiffany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93218/","id":93218,"name":"Jungle Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93219/","id":93219,"name":"Turtle Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93220/","id":93220,"name":"Wildberry Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93225/","id":93225,"name":"Goliad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93233/","id":93233,"name":"Doctor Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93234/","id":93234,"name":"Lord Monochromicorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93235/","id":93235,"name":"Lumpy Space Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93236/","id":93236,"name":"Embryo Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93244/","id":93244,"name":"Satyricus "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93253/","id":93253,"name":"Janus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93267/","id":93267,"name":"Yuri Nakamura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93284/","id":93284,"name":"Sadao Maou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93301/","id":93301,"name":"Craven One "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93308/","id":93308,"name":"Ombu-Doksi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93311/","id":93311,"name":"Blossom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93312/","id":93312,"name":"Demon Of The Diamonds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93314/","id":93314,"name":"Bone Wrangler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93315/","id":93315,"name":"Barnabus Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93322/","id":93322,"name":"Verona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93323/","id":93323,"name":"Cassian Steele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93324/","id":93324,"name":"Discord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93325/","id":93325,"name":"Colossux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93326/","id":93326,"name":"Booper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93327/","id":93327,"name":"KWAAAH"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93328/","id":93328,"name":"Figwillop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93329/","id":93329,"name":"Erf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93340/","id":93340,"name":"Lord Barthus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93341/","id":93341,"name":"Vitriol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93346/","id":93346,"name":"Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93378/","id":93378,"name":"Shadi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93405/","id":93405,"name":"Mathematician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93415/","id":93415,"name":"Junketsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93418/","id":93418,"name":"Skeleton Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93420/","id":93420,"name":"Purple Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93424/","id":93424,"name":"Old Lady Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93425/","id":93425,"name":"Engagement Ring Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93427/","id":93427,"name":"Cotton Candy Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93428/","id":93428,"name":"Bee Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93431/","id":93431,"name":"Agent Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93433/","id":93433,"name":"Brad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93438/","id":93438,"name":"Mr. Cupcake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93439/","id":93439,"name":"Huntress Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93440/","id":93440,"name":"Sir Slicer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93443/","id":93443,"name":"Carmen Nobili"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93444/","id":93444,"name":"Joseph Nobili"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93445/","id":93445,"name":"Deathface Ginny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93446/","id":93446,"name":"Sarah Garza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93461/","id":93461,"name":"Birthday Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93469/","id":93469,"name":"Chizuru Minamoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93474/","id":93474,"name":"Halloween"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93475/","id":93475,"name":"Tasha Godspell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93476/","id":93476,"name":"Kamaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93499/","id":93499,"name":"Tom Fraley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93524/","id":93524,"name":"Trish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93526/","id":93526,"name":"Thomasina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93530/","id":93530,"name":"Prince Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93532/","id":93532,"name":"Meghan Chase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93539/","id":93539,"name":"Lord Conall Maccon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93540/","id":93540,"name":"Alexia Tarabotti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93541/","id":93541,"name":"Jacob Portman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93549/","id":93549,"name":"Crimson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93551/","id":93551,"name":"Haechi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93554/","id":93554,"name":"Porcupinus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93556/","id":93556,"name":"Lisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93557/","id":93557,"name":"Luke Ainsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93559/","id":93559,"name":"Aria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93561/","id":93561,"name":"Donny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93574/","id":93574,"name":"Royal Tart Toter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93575/","id":93575,"name":"Iceclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93576/","id":93576,"name":"Cute King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93577/","id":93577,"name":"Diane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93583/","id":93583,"name":"Mini Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93588/","id":93588,"name":"Abracadaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93597/","id":93597,"name":"Antichrist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93674/","id":93674,"name":"Nene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93675/","id":93675,"name":"Haruna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93676/","id":93676,"name":"Chris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93677/","id":93677,"name":"Eucliwood Hellscythe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93678/","id":93678,"name":"Ariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93684/","id":93684,"name":"Kirika Kure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93685/","id":93685,"name":"Oriko Mikuni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93688/","id":93688,"name":"Yuma Chitose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93691/","id":93691,"name":"Selma the Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93692/","id":93692,"name":"Elvis the Airpuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93695/","id":93695,"name":"Farlaine the Goblin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93696/","id":93696,"name":"Knightingail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93705/","id":93705,"name":"Baron Blizzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93710/","id":93710,"name":"Raze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93714/","id":93714,"name":"Purefire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93715/","id":93715,"name":"Maragus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93719/","id":93719,"name":"Dread Xulu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93772/","id":93772,"name":"Cyril"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93780/","id":93780,"name":"Mary Isabella Hippo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93781/","id":93781,"name":"Rocky the Hippo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93793/","id":93793,"name":"Mid-Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93805/","id":93805,"name":"Louise Francoise Le Blanc de La Valliere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93806/","id":93806,"name":"Viscount Wardes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93807/","id":93807,"name":"Winter Wonderlass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93819/","id":93819,"name":"Steven Universe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93854/","id":93854,"name":"Mr. Ives"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93864/","id":93864,"name":"Saki Asami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93865/","id":93865,"name":"Niko Kanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93866/","id":93866,"name":"Satomi Usagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93867/","id":93867,"name":"Mirai Wakaba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93869/","id":93869,"name":"Kaoru Maki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93870/","id":93870,"name":"Umika Misaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93871/","id":93871,"name":"Kazumi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93890/","id":93890,"name":"Sir 8th Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93918/","id":93918,"name":"King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93919/","id":93919,"name":"Yuuri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93920/","id":93920,"name":"Juubey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93921/","id":93921,"name":"Yuuri Asuka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93922/","id":93922,"name":"Sumire Akane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93923/","id":93923,"name":"Ayase Souju"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93934/","id":93934,"name":"Samukai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93986/","id":93986,"name":"Kelly Burkhardt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93987/","id":93987,"name":"Monroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93995/","id":93995,"name":"Janus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93996/","id":93996,"name":"Maya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93997/","id":93997,"name":"Lazlo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93999/","id":93999,"name":"Stingy Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94006/","id":94006,"name":"Dark Hour"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94009/","id":94009,"name":"Devil-Inside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94014/","id":94014,"name":"Dura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94018/","id":94018,"name":"Diva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94048/","id":94048,"name":"Ageha Yoshina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94049/","id":94049,"name":"Miroku Amagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94062/","id":94062,"name":"Elmore Tenjuin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94063/","id":94063,"name":"Usui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94064/","id":94064,"name":"Nemesis Q"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94065/","id":94065,"name":"Kabuto Kirisaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94066/","id":94066,"name":"Oboro Mochizuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94067/","id":94067,"name":"Hiryu Asaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94068/","id":94068,"name":"Junas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94069/","id":94069,"name":"Kagetora Hyodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94070/","id":94070,"name":"Matsuri Yagumo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94078/","id":94078,"name":"Niche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94086/","id":94086,"name":"Yamato Agari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94093/","id":94093,"name":"Roman Goodwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94094/","id":94094,"name":"Kalin Kessler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94097/","id":94097,"name":"Lazar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94098/","id":94098,"name":"Rex Goodwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94118/","id":94118,"name":"Kamala Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94143/","id":94143,"name":"John Ravane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94163/","id":94163,"name":"Horsey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94215/","id":94215,"name":"No'Lar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94216/","id":94216,"name":"Spaceboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94217/","id":94217,"name":"Wonder Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94218/","id":94218,"name":"Trident"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94222/","id":94222,"name":"Kip the Ghost Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94246/","id":94246,"name":"White Tiger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94265/","id":94265,"name":"Friend "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94268/","id":94268,"name":"Minotaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94272/","id":94272,"name":"Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94318/","id":94318,"name":"Triton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94323/","id":94323,"name":"Mitsuo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94326/","id":94326,"name":"Dr. Bradley Morgenstern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94334/","id":94334,"name":"Mastodon Mathematician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94335/","id":94335,"name":"Sabertooth Swordsman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94342/","id":94342,"name":"Kenshin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94375/","id":94375,"name":"Dart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94376/","id":94376,"name":"Javelin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94377/","id":94377,"name":"Pylon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94378/","id":94378,"name":"Charlie Manx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94381/","id":94381,"name":"Simon Ambrose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94387/","id":94387,"name":"Kyoko Naraku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94388/","id":94388,"name":"Nozomi Gokuraku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94389/","id":94389,"name":"Himeno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94408/","id":94408,"name":"Rinne Rokudo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94409/","id":94409,"name":"Left"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94410/","id":94410,"name":"Right"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94418/","id":94418,"name":"Pippy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94422/","id":94422,"name":"Tejirov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94423/","id":94423,"name":"Nel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94427/","id":94427,"name":"Mikage Celestine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94432/","id":94432,"name":"Hysterica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94433/","id":94433,"name":"Lord Ivanovic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94439/","id":94439,"name":"Ageha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94440/","id":94440,"name":"Kain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94441/","id":94441,"name":"Sabato Rokudo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94442/","id":94442,"name":"Masato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94443/","id":94443,"name":"Shoma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94444/","id":94444,"name":"Oboro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94446/","id":94446,"name":"Genie the Genius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94448/","id":94448,"name":"Vermillion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94449/","id":94449,"name":"The Gloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94457/","id":94457,"name":"C'thulu Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94459/","id":94459,"name":"Noah Freeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94463/","id":94463,"name":"Trevor K. Trevinski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94481/","id":94481,"name":"Bodie Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94490/","id":94490,"name":"Jeff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94492/","id":94492,"name":"Cascade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94493/","id":94493,"name":"Dr. Synn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94495/","id":94495,"name":"Oddball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94496/","id":94496,"name":"Princess Valana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94497/","id":94497,"name":"Omni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94498/","id":94498,"name":"Wynde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94499/","id":94499,"name":"Rokk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94500/","id":94500,"name":"Bloodhawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94506/","id":94506,"name":"Saint Peter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94526/","id":94526,"name":"Chloe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94527/","id":94527,"name":"Cactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94528/","id":94528,"name":"Stupid Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94535/","id":94535,"name":"Professor Catapult"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94553/","id":94553,"name":"Naanis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94559/","id":94559,"name":"Daedalus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94569/","id":94569,"name":"Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94644/","id":94644,"name":"Haruna Niekawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94649/","id":94649,"name":"Blastor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94650/","id":94650,"name":"Humron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94651/","id":94651,"name":"Sensurian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94652/","id":94652,"name":"Sutura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94663/","id":94663,"name":"Schierke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94667/","id":94667,"name":"Battery"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94668/","id":94668,"name":"Ms. Murder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94669/","id":94669,"name":"High Guard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94670/","id":94670,"name":"Panterdactyl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94671/","id":94671,"name":"Captain Chrome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94672/","id":94672,"name":"Discharge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94673/","id":94673,"name":"Dr. Blaqk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94678/","id":94678,"name":"Dax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94679/","id":94679,"name":"Hild"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94683/","id":94683,"name":"The Junkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94684/","id":94684,"name":"Sean Renard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94685/","id":94685,"name":"The Cheetah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94686/","id":94686,"name":"The Lynx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94706/","id":94706,"name":"Dat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94707/","id":94707,"name":"Dis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94713/","id":94713,"name":"Gary the Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94715/","id":94715,"name":"Craig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94725/","id":94725,"name":"Black Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94749/","id":94749,"name":"Scathe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94785/","id":94785,"name":"Furdlegurr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94786/","id":94786,"name":"Blounder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94787/","id":94787,"name":"Dapple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94788/","id":94788,"name":"Mr. Poopson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94789/","id":94789,"name":"Poopert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94790/","id":94790,"name":"Dumperly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94791/","id":94791,"name":"Fecelia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94803/","id":94803,"name":"Moonshade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94816/","id":94816,"name":"Gyula Kadar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94819/","id":94819,"name":"Ingeborg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94820/","id":94820,"name":"The Savior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94824/","id":94824,"name":"Bo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94876/","id":94876,"name":"The Human"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94877/","id":94877,"name":"Archibald McCrae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94878/","id":94878,"name":"Charles Baxter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94881/","id":94881,"name":"Raimund Diestel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94887/","id":94887,"name":"Whalesong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94894/","id":94894,"name":"Chief Churple Rottooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94895/","id":94895,"name":"Ak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94896/","id":94896,"name":"Muttonchomp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94909/","id":94909,"name":"Harmony Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94910/","id":94910,"name":"Lazy Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94919/","id":94919,"name":"Vincent Valentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94927/","id":94927,"name":"Alexia Maccon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94928/","id":94928,"name":"Vihyungrang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94935/","id":94935,"name":"Bigoodee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94939/","id":94939,"name":"Plague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94960/","id":94960,"name":"Ymir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94998/","id":94998,"name":"Yggardis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95002/","id":95002,"name":"Appleman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95014/","id":95014,"name":"Zamira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95029/","id":95029,"name":"Kendra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95030/","id":95030,"name":"Rand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95031/","id":95031,"name":"Mike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95032/","id":95032,"name":"Marah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95036/","id":95036,"name":"Tos'un Armgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95037/","id":95037,"name":"Doum'wielle Armgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95038/","id":95038,"name":"Teirflin Armgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95048/","id":95048,"name":"Raisa Vasilyeva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95050/","id":95050,"name":"Chomsky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95059/","id":95059,"name":"Prometheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95061/","id":95061,"name":"Jingles the Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95062/","id":95062,"name":"Druid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95064/","id":95064,"name":"Creepox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95065/","id":95065,"name":"Fokion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95070/","id":95070,"name":"Gray Ringmarc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95071/","id":95071,"name":"Clockmaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95074/","id":95074,"name":"Kagura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95083/","id":95083,"name":"Cate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95092/","id":95092,"name":"Alluka Zoldyck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95104/","id":95104,"name":"Benni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95106/","id":95106,"name":"Mermin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95111/","id":95111,"name":"Monitor-Mind The Over-Void"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95117/","id":95117,"name":"Skullcrusher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95118/","id":95118,"name":"Laura the Robo Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95119/","id":95119,"name":"Warren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95137/","id":95137,"name":"Sugarplum the Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95144/","id":95144,"name":"Bill$ Murray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95145/","id":95145,"name":"Carl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95155/","id":95155,"name":"Ventice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95156/","id":95156,"name":"Raven Raspbury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95165/","id":95165,"name":"The Reverend"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95186/","id":95186,"name":"Sasquatch Alfredo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95205/","id":95205,"name":"CroMagnon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95212/","id":95212,"name":"The Thixotrope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95221/","id":95221,"name":"Ghost Soldier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95222/","id":95222,"name":"Mike Morningstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95237/","id":95237,"name":"Quickfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95262/","id":95262,"name":"Brother Enoch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95265/","id":95265,"name":"Miranda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95266/","id":95266,"name":"Mrs. Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95267/","id":95267,"name":"Mrs. Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95268/","id":95268,"name":"Charlotte Branwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95269/","id":95269,"name":"Henry Branwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95270/","id":95270,"name":"Will Herondale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95271/","id":95271,"name":"Theresa Gray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95276/","id":95276,"name":"Jem Carstairs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95277/","id":95277,"name":"Jessamine Lovelace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95281/","id":95281,"name":"Gabriel Lightwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95282/","id":95282,"name":"Magnus Bane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95283/","id":95283,"name":"The Inquisitor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95294/","id":95294,"name":"Lady Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95295/","id":95295,"name":"Metatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95304/","id":95304,"name":"Ezren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95312/","id":95312,"name":"Greg Pincus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95318/","id":95318,"name":"Sea-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95319/","id":95319,"name":"Wolfy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95320/","id":95320,"name":"Drac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95321/","id":95321,"name":"Jackie Jekyll jr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95330/","id":95330,"name":"Ded Moroz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95335/","id":95335,"name":"Ballymar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95336/","id":95336,"name":"Tulan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95337/","id":95337,"name":"Caerra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95338/","id":95338,"name":"Lord Magos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95342/","id":95342,"name":"Jacob the Burner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95343/","id":95343,"name":"Tim Woods"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95345/","id":95345,"name":"El Diablo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95349/","id":95349,"name":"Arata Hinohara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95350/","id":95350,"name":"Halvir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95352/","id":95352,"name":"Nagate Tanikaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95353/","id":95353,"name":"Origami Cyclone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95355/","id":95355,"name":"Hime Kino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95357/","id":95357,"name":"Yuhata Midorikawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95362/","id":95362,"name":"Agent Summer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95364/","id":95364,"name":"Onyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95373/","id":95373,"name":"Maneater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95374/","id":95374,"name":"Warmaiden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95375/","id":95375,"name":"Jagged Jill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95386/","id":95386,"name":"Doris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95421/","id":95421,"name":"Ollie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95425/","id":95425,"name":"Silhouette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95426/","id":95426,"name":"Sanawel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95428/","id":95428,"name":"Mosel Pearlman Ramirez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95442/","id":95442,"name":"Bob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95443/","id":95443,"name":"Felix Herbert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95450/","id":95450,"name":"Volcanikka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95461/","id":95461,"name":"Fiona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95463/","id":95463,"name":"Flynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95464/","id":95464,"name":"Petras Petragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95465/","id":95465,"name":"Geldhoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95479/","id":95479,"name":"Chelwid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95511/","id":95511,"name":"Water Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95537/","id":95537,"name":"Jeff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95545/","id":95545,"name":"Ursula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95553/","id":95553,"name":"Humbaba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95561/","id":95561,"name":"Coil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95562/","id":95562,"name":"Nails"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95563/","id":95563,"name":"Rum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95564/","id":95564,"name":"Sadisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95565/","id":95565,"name":"Grieg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95573/","id":95573,"name":"Hyena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95574/","id":95574,"name":"The Stain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95575/","id":95575,"name":"Muckmouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95603/","id":95603,"name":"Hollow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95606/","id":95606,"name":"Furious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95608/","id":95608,"name":"Li'l Daisy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95611/","id":95611,"name":"Malcom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95629/","id":95629,"name":"Aunt Marie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95637/","id":95637,"name":"Lorelai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95644/","id":95644,"name":"Stone Pharaoh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95645/","id":95645,"name":"Dalone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95649/","id":95649,"name":"Chloe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95653/","id":95653,"name":"Hinata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95654/","id":95654,"name":"Tsukimiya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95655/","id":95655,"name":"Nick Gautier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95658/","id":95658,"name":"En"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95660/","id":95660,"name":"Caiman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95661/","id":95661,"name":"Utsuho Azako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95662/","id":95662,"name":"Kuroha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95666/","id":95666,"name":"Kyrian of Thrace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95672/","id":95672,"name":"Noi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95673/","id":95673,"name":"Shin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95674/","id":95674,"name":"Fujita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95675/","id":95675,"name":"Kasukabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95677/","id":95677,"name":"Aikawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95678/","id":95678,"name":"Risu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95681/","id":95681,"name":"Pochi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95683/","id":95683,"name":"Tenka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95684/","id":95684,"name":"Neya Muito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95685/","id":95685,"name":"Rihan Nura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95686/","id":95686,"name":"Gorozaemon Sanmoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95687/","id":95687,"name":"Leo Baskerville"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95692/","id":95692,"name":"Livebearer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95696/","id":95696,"name":"Yuichiro Hyakuya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95711/","id":95711,"name":"Sicari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95715/","id":95715,"name":"Merc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95766/","id":95766,"name":"Witch Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95812/","id":95812,"name":"Sha Lux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95824/","id":95824,"name":"Hate-Monger (Construct)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95860/","id":95860,"name":"Stote Leveret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95861/","id":95861,"name":"Agger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95862/","id":95862,"name":"Breekle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95863/","id":95863,"name":"Sal Leveret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95864/","id":95864,"name":"Lith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95865/","id":95865,"name":"Fig Leveret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95866/","id":95866,"name":"Tael Leveret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95867/","id":95867,"name":"Noro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95868/","id":95868,"name":"Tibitha Leveret"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95869/","id":95869,"name":"Krome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95870/","id":95870,"name":"Klust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95871/","id":95871,"name":"Suhlie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95872/","id":95872,"name":"Thadio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95873/","id":95873,"name":"Mr. Ushkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95874/","id":95874,"name":"Mr. Tinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95875/","id":95875,"name":"Clatt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95880/","id":95880,"name":"King Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95881/","id":95881,"name":"King Trevis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95886/","id":95886,"name":"Dragas, the Pathfinder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95898/","id":95898,"name":"Falconer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95899/","id":95899,"name":"Michelangelo Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95900/","id":95900,"name":"Immortal Victor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95904/","id":95904,"name":"Smart Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95905/","id":95905,"name":"Sir Reginald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95906/","id":95906,"name":"Sir Roland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95920/","id":95920,"name":"Thatababy Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95928/","id":95928,"name":"The Grey Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95930/","id":95930,"name":"Elesar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95931/","id":95931,"name":"Kirbbus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95932/","id":95932,"name":"Simuntok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95934/","id":95934,"name":"Donna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95935/","id":95935,"name":"Tyrn Krystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95937/","id":95937,"name":"L'Par Krystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95939/","id":95939,"name":"Minkis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95940/","id":95940,"name":"Echson Krystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95941/","id":95941,"name":"F'ancha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95943/","id":95943,"name":"Keerg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95944/","id":95944,"name":"Beaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95946/","id":95946,"name":"Doctor Diade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95947/","id":95947,"name":"Marin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95952/","id":95952,"name":"Elaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95956/","id":95956,"name":"Ritar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95957/","id":95957,"name":"Merd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95960/","id":95960,"name":"Prince Kraken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95961/","id":95961,"name":"Sett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95962/","id":95962,"name":"Thoran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95963/","id":95963,"name":"Jared"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95979/","id":95979,"name":"Anika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95987/","id":95987,"name":"G.L.O.M."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96004/","id":96004,"name":"Loma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96005/","id":96005,"name":"Camilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96006/","id":96006,"name":"Drago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96009/","id":96009,"name":"Fiona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96010/","id":96010,"name":"Britton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96011/","id":96011,"name":"Thorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96012/","id":96012,"name":"Maia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96013/","id":96013,"name":"King Stearn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96014/","id":96014,"name":"Ronel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96015/","id":96015,"name":"Morisca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96016/","id":96016,"name":"Viro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96017/","id":96017,"name":"Gulacia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96018/","id":96018,"name":"Illya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96019/","id":96019,"name":"Regin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96020/","id":96020,"name":"Dan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96021/","id":96021,"name":"Haumond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96024/","id":96024,"name":"Makaira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96027/","id":96027,"name":"Sreng of the Firbolg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96066/","id":96066,"name":"Brent Marks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96080/","id":96080,"name":"Obsidian Stone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96085/","id":96085,"name":"Dona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96089/","id":96089,"name":"Shayera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96091/","id":96091,"name":"Kalandro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96119/","id":96119,"name":"Alex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96120/","id":96120,"name":"Sam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96121/","id":96121,"name":"Thalna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96122/","id":96122,"name":"Papapom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96123/","id":96123,"name":"Mira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96127/","id":96127,"name":"Destiny Harper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96130/","id":96130,"name":"Mari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96131/","id":96131,"name":"The Witness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96133/","id":96133,"name":"Tyris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96147/","id":96147,"name":"Claudio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96148/","id":96148,"name":"ZeeZegg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96149/","id":96149,"name":"Captain Gruhm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96162/","id":96162,"name":"Harsk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96188/","id":96188,"name":"Adam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96208/","id":96208,"name":"Maham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96210/","id":96210,"name":"Encantar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96222/","id":96222,"name":"Skokul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96224/","id":96224,"name":"Modg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96228/","id":96228,"name":"Man o'War"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96247/","id":96247,"name":"Willie The Wisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96249/","id":96249,"name":"Frank Ullman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96260/","id":96260,"name":"Geraldo Flores"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96261/","id":96261,"name":"Marcia Flores"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96264/","id":96264,"name":"Hector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96265/","id":96265,"name":"Kyle Jergen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96266/","id":96266,"name":"Chandra Abbott"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96267/","id":96267,"name":"Frank Bolland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96269/","id":96269,"name":"Risi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96272/","id":96272,"name":"Sorc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96314/","id":96314,"name":"Mol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96317/","id":96317,"name":"James Lightwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96318/","id":96318,"name":"Thammuz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96319/","id":96319,"name":"Benedict Lightwood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96320/","id":96320,"name":"Consul Wayland"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96323/","id":96323,"name":"Ella Herondale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96324/","id":96324,"name":"Cecily Herondale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96326/","id":96326,"name":"Aloysius Starkweather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96328/","id":96328,"name":"Marbas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96330/","id":96330,"name":"Elizabeth Gray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96392/","id":96392,"name":"Blue Nura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96412/","id":96412,"name":"Black Bard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96449/","id":96449,"name":"Miia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96453/","id":96453,"name":"Takashi Natsume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96454/","id":96454,"name":"Shuuichi Natori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96455/","id":96455,"name":"Madara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96456/","id":96456,"name":"Reiko Natsume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96458/","id":96458,"name":"Kaname Tanuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96459/","id":96459,"name":"Seiji Matoba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96482/","id":96482,"name":"Dr. Faker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96483/","id":96483,"name":"Reginald Kastle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96492/","id":96492,"name":"James WIlliams"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96493/","id":96493,"name":"Shi Long Pang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96494/","id":96494,"name":"Cannibal Fuckface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96497/","id":96497,"name":"Vasilisa Dragomir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96498/","id":96498,"name":"Dimitri Belikov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96499/","id":96499,"name":"Rosemarie Hathaway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96504/","id":96504,"name":"Lightshow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96505/","id":96505,"name":"Night Stalker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96506/","id":96506,"name":"Shadowmist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96507/","id":96507,"name":"Yolanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96508/","id":96508,"name":"Silver Oak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96520/","id":96520,"name":"Raoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96522/","id":96522,"name":"Julius Destructus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96529/","id":96529,"name":"Siesta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96530/","id":96530,"name":"Kirche Augusta Frederica von Anhalt Zerbst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96531/","id":96531,"name":"Blastosaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96540/","id":96540,"name":"Justin Time"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96596/","id":96596,"name":"Ukur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96686/","id":96686,"name":"Hangy the Rope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96692/","id":96692,"name":"Prima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96694/","id":96694,"name":"Protogeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96743/","id":96743,"name":"Grandpa Portman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96746/","id":96746,"name":"Hugh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96747/","id":96747,"name":"Fiona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96748/","id":96748,"name":"Claire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96749/","id":96749,"name":"Bronwyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96750/","id":96750,"name":"Enoch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96751/","id":96751,"name":"Olive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96752/","id":96752,"name":"Horace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96753/","id":96753,"name":"Miss Peregrine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96754/","id":96754,"name":"Emma Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96755/","id":96755,"name":"Millard Nullings"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96756/","id":96756,"name":"Esmerelda Avocet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96757/","id":96757,"name":"Victor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96759/","id":96759,"name":"Malthus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96774/","id":96774,"name":"Mr. Fiddlesticks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96807/","id":96807,"name":"Stronghold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96808/","id":96808,"name":"Emerald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96809/","id":96809,"name":"Vanguard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96821/","id":96821,"name":"Annoying Orange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96825/","id":96825,"name":"Appalonia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96826/","id":96826,"name":"Adrienne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96873/","id":96873,"name":"Power Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96874/","id":96874,"name":"Glamazonia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96877/","id":96877,"name":"Stars Edge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96891/","id":96891,"name":"Morbella, Mistress of the Boneyard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96892/","id":96892,"name":"The Bright-Eyed Prefect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96893/","id":96893,"name":"Aten, The Scarlet Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97011/","id":97011,"name":"Bess the Munchkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97012/","id":97012,"name":"Phadrig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97013/","id":97013,"name":"Victoria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97036/","id":97036,"name":"Silver Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97079/","id":97079,"name":"Green Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97116/","id":97116,"name":"Calexa Rose Dunhill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97178/","id":97178,"name":"The Exile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97181/","id":97181,"name":"Atsiul "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97182/","id":97182,"name":"Juriti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97183/","id":97183,"name":"Tejaia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97184/","id":97184,"name":"Daki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97185/","id":97185,"name":"Ptero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97186/","id":97186,"name":"Nenomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97187/","id":97187,"name":"Jesset Clesion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97191/","id":97191,"name":"Willie Wetworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97200/","id":97200,"name":"Sea Bishop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97201/","id":97201,"name":"Pardoner "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97202/","id":97202,"name":"Candi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97203/","id":97203,"name":"Bambi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97204/","id":97204,"name":"Sandi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97205/","id":97205,"name":"Kyesha Salton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97206/","id":97206,"name":"Cryptid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97208/","id":97208,"name":"Leah "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97209/","id":97209,"name":"Lady Pelikaia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97210/","id":97210,"name":"Dr. Arkelon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97211/","id":97211,"name":"Mother Skorpa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97250/","id":97250,"name":"David"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97254/","id":97254,"name":"The Holy One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97263/","id":97263,"name":"Lucky Dawg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97264/","id":97264,"name":"Darreon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97269/","id":97269,"name":"Demonman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97270/","id":97270,"name":"The Demon Duck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97272/","id":97272,"name":"Gan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97275/","id":97275,"name":"Gebedhia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97276/","id":97276,"name":"Maggie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97277/","id":97277,"name":"Martha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97278/","id":97278,"name":"Magda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97284/","id":97284,"name":"Corvan Moore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97287/","id":97287,"name":"Mike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97308/","id":97308,"name":"Yum Yum Chocobuns"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97371/","id":97371,"name":"C'rel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97434/","id":97434,"name":"King Yascom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97537/","id":97537,"name":"Joe Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97545/","id":97545,"name":"Azlando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97627/","id":97627,"name":"Kudan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97630/","id":97630,"name":"Yuto Amakawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97649/","id":97649,"name":"Buttany"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97653/","id":97653,"name":"Marwood Clay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97681/","id":97681,"name":"M"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97694/","id":97694,"name":"Dreamscape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97733/","id":97733,"name":"Queen Telsche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97734/","id":97734,"name":"Jubal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97735/","id":97735,"name":"Starla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97752/","id":97752,"name":"Dark Nebula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97753/","id":97753,"name":"Tedhaun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97755/","id":97755,"name":"Mr. Frosty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97760/","id":97760,"name":"Daroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97769/","id":97769,"name":"Paint Roller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97770/","id":97770,"name":"Drawcia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97776/","id":97776,"name":"Eco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97780/","id":97780,"name":"Tomoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97787/","id":97787,"name":"Koyori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97788/","id":97788,"name":"Mizuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97789/","id":97789,"name":"Jirou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97790/","id":97790,"name":"Nishiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97794/","id":97794,"name":"Bravoman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97806/","id":97806,"name":"Whispy Woods"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97812/","id":97812,"name":"Gooey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97816/","id":97816,"name":"Chef Kawasaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97836/","id":97836,"name":"Charlie Croc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97877/","id":97877,"name":"The Adversary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97895/","id":97895,"name":"Lemmy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97904/","id":97904,"name":"JurgoBeast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97957/","id":97957,"name":"Doktor Doll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97964/","id":97964,"name":"Rags"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97975/","id":97975,"name":"Angorfarax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97976/","id":97976,"name":"Jaramsheela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97978/","id":97978,"name":"Moe the Charming"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97998/","id":97998,"name":"Minerva Orlando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98000/","id":98000,"name":"Doriate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98004/","id":98004,"name":"Sagittarius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98014/","id":98014,"name":"Rosalee Calvert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98024/","id":98024,"name":"Zwölf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98025/","id":98025,"name":"Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98070/","id":98070,"name":"Coeval"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98124/","id":98124,"name":"Kuesu Jinguuji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98125/","id":98125,"name":"Shizuku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98126/","id":98126,"name":"Ageha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98127/","id":98127,"name":"Hitsugi Yakouin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98128/","id":98128,"name":"Shuten-Douji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98129/","id":98129,"name":"Tamamo-no-mae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98134/","id":98134,"name":"Ukyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98135/","id":98135,"name":"Asagiri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98138/","id":98138,"name":"Rurijo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98160/","id":98160,"name":"Ba-al Takkar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98216/","id":98216,"name":"Ela D'Snal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98242/","id":98242,"name":"Stringz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98326/","id":98326,"name":"Natohk Djinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98342/","id":98342,"name":"Fuyumi Yanagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98343/","id":98343,"name":"Neyn Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98354/","id":98354,"name":"Knell Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98356/","id":98356,"name":"Bell Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98364/","id":98364,"name":"Jack Frost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98367/","id":98367,"name":"Der Freischütz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98368/","id":98368,"name":"Hansen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98369/","id":98369,"name":"Ethan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98373/","id":98373,"name":"Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98387/","id":98387,"name":"Amorphis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98456/","id":98456,"name":"Richarz Blood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98457/","id":98457,"name":"Captain Goyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98472/","id":98472,"name":"Pol Manning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98489/","id":98489,"name":"Blagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98490/","id":98490,"name":"Gulog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98493/","id":98493,"name":"The Maker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98495/","id":98495,"name":"Wraith King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98507/","id":98507,"name":"Magna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98544/","id":98544,"name":"Koyemshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98549/","id":98549,"name":"Kuromado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98553/","id":98553,"name":"Starjun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98554/","id":98554,"name":"Tommyrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98555/","id":98555,"name":"Joe Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98556/","id":98556,"name":"Nijsseni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98558/","id":98558,"name":"Midora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98559/","id":98559,"name":"Alfaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98560/","id":98560,"name":"Dress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98561/","id":98561,"name":"Kytra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98562/","id":98562,"name":"Joie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98588/","id":98588,"name":"Red Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98592/","id":98592,"name":"Yoshida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98593/","id":98593,"name":"Saty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98595/","id":98595,"name":"Yamada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98596/","id":98596,"name":"Dek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98598/","id":98598,"name":"Tobi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98599/","id":98599,"name":"Kiji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98600/","id":98600,"name":"Franken Stein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98619/","id":98619,"name":"Duela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98621/","id":98621,"name":"Delmont"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98622/","id":98622,"name":"Grangor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98648/","id":98648,"name":"Tyrannosaurus-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98674/","id":98674,"name":"Kronika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98682/","id":98682,"name":"Bizarro-Hawkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98692/","id":98692,"name":"Red Velvet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98693/","id":98693,"name":"Carrot Cake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98694/","id":98694,"name":"Vanilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98728/","id":98728,"name":"Lily Rose Shadowlyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98904/","id":98904,"name":"Shara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98905/","id":98905,"name":"Aram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98906/","id":98906,"name":"Mark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98907/","id":98907,"name":"Marsha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98913/","id":98913,"name":"Murasaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98943/","id":98943,"name":"Lady Mahoroba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98946/","id":98946,"name":"Papradon Akim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98947/","id":98947,"name":"Constable Beros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98948/","id":98948,"name":"Wolf Daddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98949/","id":98949,"name":"Heads Hydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98950/","id":98950,"name":"Sabao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98951/","id":98951,"name":"Yookey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98954/","id":98954,"name":"Mono"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98961/","id":98961,"name":"Pontius Vanthor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98962/","id":98962,"name":"Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98980/","id":98980,"name":"Ivory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98981/","id":98981,"name":"Kyou Usui"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98989/","id":98989,"name":"Hoki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99000/","id":99000,"name":"Carracosta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99001/","id":99001,"name":"Druddigon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99002/","id":99002,"name":"Vanillish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99003/","id":99003,"name":"Cryogonal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99006/","id":99006,"name":"Renge Shima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99010/","id":99010,"name":"Zazie Shrine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99011/","id":99011,"name":"Emil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99018/","id":99018,"name":"Gwendolyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99084/","id":99084,"name":"Marcus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99159/","id":99159,"name":"Grizzle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99160/","id":99160,"name":"Mosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99162/","id":99162,"name":"Angiru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99163/","id":99163,"name":"Tut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99176/","id":99176,"name":"Umu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99231/","id":99231,"name":"Theana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99258/","id":99258,"name":"Femt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99273/","id":99273,"name":"William del Negro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99274/","id":99274,"name":"Salvador"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99275/","id":99275,"name":"Bernard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99345/","id":99345,"name":"Judge Choke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99346/","id":99346,"name":"Judge Burroughs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99347/","id":99347,"name":"Judge Fistula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99348/","id":99348,"name":"Judge Sleep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99349/","id":99349,"name":"Judge Stigma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99350/","id":99350,"name":"Judge Sludge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99354/","id":99354,"name":"Judge Skinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99355/","id":99355,"name":"Judge Metastasis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99400/","id":99400,"name":"Marisa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99401/","id":99401,"name":"Lillemor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99404/","id":99404,"name":"Likkebord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99419/","id":99419,"name":"Lucky Abrahms"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99424/","id":99424,"name":"Don Arlelelle Eruca Fulgrouche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99425/","id":99425,"name":"K.K."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99426/","id":99426,"name":"Banrai Minamigata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99427/","id":99427,"name":"Lel Demisos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99428/","id":99428,"name":"Gilbert Altstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99440/","id":99440,"name":"Omnipresident"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99501/","id":99501,"name":"King Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99502/","id":99502,"name":"Krustax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99503/","id":99503,"name":"Soemarina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99504/","id":99504,"name":"Nikki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99505/","id":99505,"name":"Akuwax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99506/","id":99506,"name":"Animalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99508/","id":99508,"name":"Cataclysm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99509/","id":99509,"name":"Apex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99529/","id":99529,"name":"Elvis the Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99537/","id":99537,"name":"Nautilus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99579/","id":99579,"name":"Kuro Gokokuji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99586/","id":99586,"name":"Armaiti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99614/","id":99614,"name":"Zwam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99627/","id":99627,"name":"Ashiok, the Nightmare Weaver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99634/","id":99634,"name":"Bau Zikia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99665/","id":99665,"name":"Dotti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99666/","id":99666,"name":"Kaie Homura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99667/","id":99667,"name":"Konaki-Jijī"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99750/","id":99750,"name":"Hippus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99787/","id":99787,"name":"Atlena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99789/","id":99789,"name":"Manfried"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99790/","id":99790,"name":"Sewer S. Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99791/","id":99791,"name":"Forest Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99792/","id":99792,"name":"Snakeamancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99793/","id":99793,"name":"Humongous Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99794/","id":99794,"name":"Awesome Collar Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99795/","id":99795,"name":"Troll Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99796/","id":99796,"name":"Elbow Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99797/","id":99797,"name":"Basketball Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99798/","id":99798,"name":"Corn Syrup Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99815/","id":99815,"name":"Lord Slicko Vandalstine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99816/","id":99816,"name":"Shoe Wizard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99837/","id":99837,"name":"Crasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99838/","id":99838,"name":"Amanite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99841/","id":99841,"name":"Pandigole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99846/","id":99846,"name":"Sybil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99872/","id":99872,"name":"Mr. Hines"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99885/","id":99885,"name":"Darleanna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99889/","id":99889,"name":"Ivo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99891/","id":99891,"name":"Korrus Null"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99937/","id":99937,"name":"Diane Dillisch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99955/","id":99955,"name":"Chief Teacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99963/","id":99963,"name":"King Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99982/","id":99982,"name":"Danny Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100021/","id":100021,"name":"Hank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100022/","id":100022,"name":"Aria Godspell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100024/","id":100024,"name":"Ame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100025/","id":100025,"name":"Yuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100052/","id":100052,"name":"El Padre Sin Cabeza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100053/","id":100053,"name":"La Tulevieja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100127/","id":100127,"name":"Zeta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100192/","id":100192,"name":"Loke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100252/","id":100252,"name":"Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100258/","id":100258,"name":"Jennifer Welles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100265/","id":100265,"name":"Talia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100279/","id":100279,"name":"Maya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100287/","id":100287,"name":"Lash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100288/","id":100288,"name":"Kristian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100317/","id":100317,"name":"Shawn Stronghand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100318/","id":100318,"name":"Sam Stronghand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100349/","id":100349,"name":"Phaeton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100364/","id":100364,"name":"Inferno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100366/","id":100366,"name":"Rronko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100367/","id":100367,"name":"Juolie-Annn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100368/","id":100368,"name":"Blendorr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100468/","id":100468,"name":"Shirojin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100533/","id":100533,"name":"Chimaera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100694/","id":100694,"name":"Magpie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100733/","id":100733,"name":"Nena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100749/","id":100749,"name":"Runt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100750/","id":100750,"name":"Big Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100843/","id":100843,"name":"South"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100845/","id":100845,"name":"Bari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100846/","id":100846,"name":"Queen Guinevere"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100854/","id":100854,"name":"Surtr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100890/","id":100890,"name":"Fergus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100897/","id":100897,"name":"Rayfell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100909/","id":100909,"name":"Tusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100912/","id":100912,"name":"Vampo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100921/","id":100921,"name":"Beleth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100978/","id":100978,"name":"Agent Porcelain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100996/","id":100996,"name":"Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101001/","id":101001,"name":"Brontosaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101004/","id":101004,"name":"Lilyth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101011/","id":101011,"name":"Sheriff Gearwall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101051/","id":101051,"name":"Marina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101067/","id":101067,"name":"Valkyrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101069/","id":101069,"name":"Derflinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101128/","id":101128,"name":"Bubba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101131/","id":101131,"name":"Spender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101133/","id":101133,"name":"Ottershaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101135/","id":101135,"name":"Carter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101143/","id":101143,"name":"Shamkid-sama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101144/","id":101144,"name":"Rando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101145/","id":101145,"name":"Roy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101146/","id":101146,"name":"Jasmine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101147/","id":101147,"name":"Sam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101148/","id":101148,"name":"Right Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101149/","id":101149,"name":"Orine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101150/","id":101150,"name":"Angry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101207/","id":101207,"name":"Colt Yukimiya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101209/","id":101209,"name":"Quake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101210/","id":101210,"name":"Wavess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101272/","id":101272,"name":"Grieves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101273/","id":101273,"name":"Ravenskull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101566/","id":101566,"name":"Mermaid Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101635/","id":101635,"name":"Takeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101636/","id":101636,"name":"Osen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101637/","id":101637,"name":"The Demon King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101638/","id":101638,"name":"Shiratki Kamuy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101639/","id":101639,"name":"Dai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101640/","id":101640,"name":"Rin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101641/","id":101641,"name":"Mother Tanaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101642/","id":101642,"name":"Fumiyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101679/","id":101679,"name":"Hakudoshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101771/","id":101771,"name":"A.L.F.R.E.D."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101774/","id":101774,"name":"Princess Tersia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101780/","id":101780,"name":"Courtney Bow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101787/","id":101787,"name":"Daddy Long Legs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101793/","id":101793,"name":"Drauz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101795/","id":101795,"name":"Astra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101796/","id":101796,"name":"Betta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101797/","id":101797,"name":"Coridora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101820/","id":101820,"name":"Centorea Shianus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101821/","id":101821,"name":"Tad Adelbertsmiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101853/","id":101853,"name":"Beryl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101858/","id":101858,"name":"Lindsay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101873/","id":101873,"name":"Silvio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101885/","id":101885,"name":"Alisik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101900/","id":101900,"name":"Ken Kaneki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101902/","id":101902,"name":"Beatrice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101969/","id":101969,"name":"Ringo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102015/","id":102015,"name":"Jackie Khones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102018/","id":102018,"name":"Lady Bernadette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102019/","id":102019,"name":"Orc Dave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102020/","id":102020,"name":"Braga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102021/","id":102021,"name":"Barrie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102024/","id":102024,"name":"Faeyri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102029/","id":102029,"name":"Blood Hunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102040/","id":102040,"name":"Headhunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102052/","id":102052,"name":"Viro Reganto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102056/","id":102056,"name":"Aki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102069/","id":102069,"name":"Galactic Green Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102106/","id":102106,"name":"Crusher the Chao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102112/","id":102112,"name":"Eli Morrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102125/","id":102125,"name":"Kiwi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102126/","id":102126,"name":"Fruit Bat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102164/","id":102164,"name":"Cherri Creeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102174/","id":102174,"name":"Blissful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102176/","id":102176,"name":"Air"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102180/","id":102180,"name":"Tael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102181/","id":102181,"name":"Tatl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102182/","id":102182,"name":"Deku Butler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102185/","id":102185,"name":"Goron Elder's Son"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102186/","id":102186,"name":"Lulu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102189/","id":102189,"name":"Darunia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102191/","id":102191,"name":"Princess Ruto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102193/","id":102193,"name":"King Zora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102200/","id":102200,"name":"Charity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102268/","id":102268,"name":"Snaffletwat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102308/","id":102308,"name":"Celeana "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102309/","id":102309,"name":"Vasago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102310/","id":102310,"name":"Kirië Sakurame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102311/","id":102311,"name":"Jinbei Shishido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102312/","id":102312,"name":"Ishuto Karin Ōte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102313/","id":102313,"name":"Ikkū Ameya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102314/","id":102314,"name":"Makabe Gengorō"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102315/","id":102315,"name":"Kurōumaru Tokisaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102414/","id":102414,"name":"Science Officer 0718"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102415/","id":102415,"name":"Raga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102473/","id":102473,"name":"River Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102475/","id":102475,"name":"Nebulor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102502/","id":102502,"name":"Vladimir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102522/","id":102522,"name":"Myron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102636/","id":102636,"name":"Tomie Kawakami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102793/","id":102793,"name":"Akeem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102794/","id":102794,"name":"Gabriela Pertuz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102797/","id":102797,"name":"Harold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102805/","id":102805,"name":"Solomon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102819/","id":102819,"name":"Dio Brando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102823/","id":102823,"name":"Elokim Shaer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102832/","id":102832,"name":"Vinatos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102851/","id":102851,"name":"Drikka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102853/","id":102853,"name":"Horlogh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102854/","id":102854,"name":"Coronel Barba Branca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102858/","id":102858,"name":"Krackers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102859/","id":102859,"name":"Scout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102860/","id":102860,"name":"Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102861/","id":102861,"name":"Patch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102862/","id":102862,"name":"Zelda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102863/","id":102863,"name":"Blaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102918/","id":102918,"name":"Kinski"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102921/","id":102921,"name":"Dirk Lylesburg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102922/","id":102922,"name":"Rachel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102923/","id":102923,"name":"Babette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102924/","id":102924,"name":"Ohnaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102925/","id":102925,"name":"Baphomet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102929/","id":102929,"name":"Achacha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102931/","id":102931,"name":"Golinda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102932/","id":102932,"name":"Kashii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102933/","id":102933,"name":"Fachan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102934/","id":102934,"name":"Aello"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102936/","id":102936,"name":"Mulciber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102937/","id":102937,"name":"Oral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102938/","id":102938,"name":"Dagon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102941/","id":102941,"name":"Zakk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102942/","id":102942,"name":"Bonn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102947/","id":102947,"name":"Nickneven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102948/","id":102948,"name":"Tater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102949/","id":102949,"name":"Spiderbaby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102954/","id":102954,"name":"Mandel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102959/","id":102959,"name":"Chynae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102964/","id":102964,"name":"Guido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102981/","id":102981,"name":"Gallows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102982/","id":102982,"name":"Xaphan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102983/","id":102983,"name":"Yama Vidatu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102984/","id":102984,"name":"Charun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102985/","id":102985,"name":"Chalkis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102986/","id":102986,"name":"Aeshma Deva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102987/","id":102987,"name":"Alastor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102993/","id":102993,"name":"Lord Adi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102994/","id":102994,"name":"Saryn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102995/","id":102995,"name":"Lude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103035/","id":103035,"name":"Master of Universal Love"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103036/","id":103036,"name":"Lil' Silly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103037/","id":103037,"name":"Grandfather Beard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103047/","id":103047,"name":"Ignatius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103062/","id":103062,"name":"Mumu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103063/","id":103063,"name":"Zeeza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103089/","id":103089,"name":"Tragic Mick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103093/","id":103093,"name":"The Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103185/","id":103185,"name":"Luke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103197/","id":103197,"name":"Iron Fist (H'ylthri)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103203/","id":103203,"name":"Meruda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103248/","id":103248,"name":"Hornet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103262/","id":103262,"name":"Kapitan Kreatur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103357/","id":103357,"name":"Master Teed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103359/","id":103359,"name":"Tarok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103361/","id":103361,"name":"Roxie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103362/","id":103362,"name":"Ray-Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103363/","id":103363,"name":"Charlie Paulson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103364/","id":103364,"name":"Derek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103423/","id":103423,"name":"Buldeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103430/","id":103430,"name":"Butterfield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103459/","id":103459,"name":"Joseph Neithercoate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103570/","id":103570,"name":"Elween"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103575/","id":103575,"name":"Lady Selenn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103626/","id":103626,"name":"Tengu Brunch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103702/","id":103702,"name":"Lope the Wolf Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103709/","id":103709,"name":"Straw Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103815/","id":103815,"name":"Œufcoque Penteano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103827/","id":103827,"name":"Lady Poppa Rocks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103828/","id":103828,"name":"J"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103830/","id":103830,"name":"Gun Kan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103831/","id":103831,"name":"Pickle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103832/","id":103832,"name":"CarMan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103835/","id":103835,"name":"Torpedo Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103836/","id":103836,"name":"Service Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103842/","id":103842,"name":"Dengaku Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103843/","id":103843,"name":"Softon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103844/","id":103844,"name":"Jelly Jiggler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103866/","id":103866,"name":"Lady Ema"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103867/","id":103867,"name":"Ose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103876/","id":103876,"name":"Fallah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103877/","id":103877,"name":"Gimesu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103883/","id":103883,"name":"Access Time"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103886/","id":103886,"name":"Finn Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103921/","id":103921,"name":"The Chosen One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103958/","id":103958,"name":"Bile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103969/","id":103969,"name":"Doodler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103978/","id":103978,"name":"Sexy Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104007/","id":104007,"name":"Sayla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104010/","id":104010,"name":"Pantherlily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104018/","id":104018,"name":"Jackal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104021/","id":104021,"name":"Franmalth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104025/","id":104025,"name":"Brain "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104026/","id":104026,"name":"Kyouka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104027/","id":104027,"name":"Angel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104028/","id":104028,"name":"Cobra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104029/","id":104029,"name":"Crawford Seam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104031/","id":104031,"name":"Yakdoriga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104050/","id":104050,"name":"Baby Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104051/","id":104051,"name":"Sliver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104071/","id":104071,"name":"Aranya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104084/","id":104084,"name":"Zombie Cousin Ray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104085/","id":104085,"name":"Zombie Butler Roy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104086/","id":104086,"name":"Grimmiss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104101/","id":104101,"name":"Taran Tu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104123/","id":104123,"name":"Rize Kamishiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104125/","id":104125,"name":"Touka Kirishima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104132/","id":104132,"name":"Yomo Renji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104133/","id":104133,"name":"Hinami Fueguchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104134/","id":104134,"name":"Ryouko Fueguchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104143/","id":104143,"name":"Chuckles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104144/","id":104144,"name":"Drive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104179/","id":104179,"name":"The Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104208/","id":104208,"name":"Dingle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104277/","id":104277,"name":"Abigail Trask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104280/","id":104280,"name":"Maria Trask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104281/","id":104281,"name":"Aldus Trask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104318/","id":104318,"name":"Jake Sully"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104321/","id":104321,"name":"Richard Watterson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104322/","id":104322,"name":"Penny Fitzgerald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104323/","id":104323,"name":"Harold Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104324/","id":104324,"name":"Banana Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104325/","id":104325,"name":"Tobias Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104328/","id":104328,"name":"Anais Watterson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104335/","id":104335,"name":"Tsuzuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104336/","id":104336,"name":"Satsuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104347/","id":104347,"name":"Launcelot McSnoyd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104386/","id":104386,"name":"Detective Hizz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104408/","id":104408,"name":"Roob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104426/","id":104426,"name":"Tohka Yatogami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104437/","id":104437,"name":"Yoshino Himekawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104440/","id":104440,"name":"Kurumi Tokisaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104442/","id":104442,"name":"Yuzuru Yamai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104443/","id":104443,"name":"Kaguya Yamai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104459/","id":104459,"name":"Hollow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104460/","id":104460,"name":"Fume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104461/","id":104461,"name":"Mister Whiskers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104462/","id":104462,"name":"Spark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104520/","id":104520,"name":"Klaproth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104554/","id":104554,"name":"Chimera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104610/","id":104610,"name":"Elena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104611/","id":104611,"name":"Rubel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104638/","id":104638,"name":"Orsay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104712/","id":104712,"name":"Misaki Kurogane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104713/","id":104713,"name":"Tetsuo Tanba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104715/","id":104715,"name":"Pes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104739/","id":104739,"name":"Oomanor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104741/","id":104741,"name":"Monastes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104743/","id":104743,"name":"Aksholur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104761/","id":104761,"name":"Ormon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104795/","id":104795,"name":"Terrain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104827/","id":104827,"name":"Bane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104843/","id":104843,"name":"Forest Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104850/","id":104850,"name":"Cyke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104905/","id":104905,"name":"Olaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104917/","id":104917,"name":"The Rat-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104941/","id":104941,"name":"Jack Chain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104944/","id":104944,"name":"The Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104971/","id":104971,"name":"Rick Hammich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104972/","id":104972,"name":"Adelaide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104973/","id":104973,"name":"Svitz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104974/","id":104974,"name":"Sylvia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104975/","id":104975,"name":"Hook Crook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104976/","id":104976,"name":"Fisho the Colossal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104977/","id":104977,"name":"Skateboard Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104978/","id":104978,"name":"Princess Samantha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104979/","id":104979,"name":"Spookette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104980/","id":104980,"name":"Cloche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104982/","id":104982,"name":"Orphan Ice Prince Timothy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104993/","id":104993,"name":"Primo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105007/","id":105007,"name":"Light Entity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105008/","id":105008,"name":"Root Beer Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105011/","id":105011,"name":"Periwinkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105012/","id":105012,"name":"Iona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105028/","id":105028,"name":"Mushroom Pup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105032/","id":105032,"name":"Limbo Cell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105044/","id":105044,"name":"Louis Wu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105068/","id":105068,"name":"Master Mahan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105083/","id":105083,"name":"Petra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105084/","id":105084,"name":"General Clawson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105112/","id":105112,"name":"Gilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105113/","id":105113,"name":"Rags"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105114/","id":105114,"name":"Francesca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105169/","id":105169,"name":"Alyce Stonecliff "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105173/","id":105173,"name":"Mashiro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105174/","id":105174,"name":"Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105178/","id":105178,"name":"Sunflower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105183/","id":105183,"name":"Pret Uncle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105202/","id":105202,"name":"Barrie Rosemoor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105217/","id":105217,"name":"Akino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105225/","id":105225,"name":"Triple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105228/","id":105228,"name":"Judge Blank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105286/","id":105286,"name":"Fancyboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105287/","id":105287,"name":"Fireball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105288/","id":105288,"name":"Necktie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105311/","id":105311,"name":"Sporkman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105350/","id":105350,"name":"Oboroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105355/","id":105355,"name":"Cadhla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105356/","id":105356,"name":"Pat Bogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105357/","id":105357,"name":"Ardal Bogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105358/","id":105358,"name":"Dougal Bogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105395/","id":105395,"name":"Draculaura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105396/","id":105396,"name":"Spectra Vondergeist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105397/","id":105397,"name":"Operetta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105398/","id":105398,"name":"Heath Burns"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105400/","id":105400,"name":"Ghoulia Yelps"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105401/","id":105401,"name":"Frankie Stein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105402/","id":105402,"name":"Cleo de Nile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105420/","id":105420,"name":"Demetheus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105426/","id":105426,"name":"The Blockheads"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105427/","id":105427,"name":"Gumba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105428/","id":105428,"name":"Gumbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105465/","id":105465,"name":"Kidale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105466/","id":105466,"name":"Jasara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105467/","id":105467,"name":"Faka Kun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105468/","id":105468,"name":"Wind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105494/","id":105494,"name":"Infernal Service Provider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105508/","id":105508,"name":"Venus McFlytrap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105509/","id":105509,"name":"Rochelle Goyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105511/","id":105511,"name":"Skelita Calaveras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105512/","id":105512,"name":"Scarah Screams"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105514/","id":105514,"name":"Headless Headmistress Bloodgood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105518/","id":105518,"name":"Abbey Bominable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105519/","id":105519,"name":"G.I. Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105536/","id":105536,"name":"Frankenride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105539/","id":105539,"name":"Cadillacula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105551/","id":105551,"name":"Grandmother Willow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105561/","id":105561,"name":"Mappy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105563/","id":105563,"name":"Nosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105564/","id":105564,"name":"Dinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105565/","id":105565,"name":"Akagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105574/","id":105574,"name":"Phobia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105575/","id":105575,"name":"Nausea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105576/","id":105576,"name":"Pumk'yl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105582/","id":105582,"name":"Luminae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105603/","id":105603,"name":"Tabatha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105653/","id":105653,"name":"Tanero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105676/","id":105676,"name":"The Brute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105681/","id":105681,"name":"Motorcycle Samurai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105715/","id":105715,"name":"Duncan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105716/","id":105716,"name":"Wynchel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105721/","id":105721,"name":"Wreck-It Ralph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105725/","id":105725,"name":"Ripslinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105726/","id":105726,"name":"El Chupacabra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105727/","id":105727,"name":"Dusty Crophopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105788/","id":105788,"name":"Magelica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105846/","id":105846,"name":"Charlotte Cuhlhourne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105847/","id":105847,"name":"Cheadle Yorkshire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105851/","id":105851,"name":"Saccho Kobayakawa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105867/","id":105867,"name":"Charlie-72"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105897/","id":105897,"name":"Sakutarou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105920/","id":105920,"name":"Cat-Mandu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105935/","id":105935,"name":"Lucius Hartwell "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105936/","id":105936,"name":"Ronnie Strickland "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105938/","id":105938,"name":"Bloch "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105955/","id":105955,"name":"Pup"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105956/","id":105956,"name":"Boots"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105960/","id":105960,"name":"Norman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105961/","id":105961,"name":"Mr Fishy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105968/","id":105968,"name":"Agatha Blue Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105979/","id":105979,"name":"Admiral Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105982/","id":105982,"name":"Ariel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105983/","id":105983,"name":"Tiger Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105984/","id":105984,"name":"Librarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105994/","id":105994,"name":"Aurélien Zahner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106024/","id":106024,"name":"John Travis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106048/","id":106048,"name":"Pineau Rouge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106049/","id":106049,"name":"Chevalier Bayard Gran d’Or"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106067/","id":106067,"name":"Nocculus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106068/","id":106068,"name":"Sheath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106115/","id":106115,"name":"Ezel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106134/","id":106134,"name":"Mr. Macabre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106166/","id":106166,"name":"Madame Razz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106167/","id":106167,"name":"Broom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106176/","id":106176,"name":"Light Hope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106193/","id":106193,"name":"Sytry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106212/","id":106212,"name":"Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106214/","id":106214,"name":"Armod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106215/","id":106215,"name":"Hakon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106282/","id":106282,"name":"Pawn Broker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106283/","id":106283,"name":"Ghost Librarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106325/","id":106325,"name":"Nightfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106381/","id":106381,"name":"Skullboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106382/","id":106382,"name":"Cesar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106420/","id":106420,"name":"Ruhk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106445/","id":106445,"name":"Sterilon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106446/","id":106446,"name":"Flint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106461/","id":106461,"name":"Elyse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106466/","id":106466,"name":"Alastor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106470/","id":106470,"name":"Dark Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106471/","id":106471,"name":"Asterdol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106474/","id":106474,"name":"Seimei Aoyagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106478/","id":106478,"name":"Jimmy Yee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106480/","id":106480,"name":"Anomaly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106591/","id":106591,"name":"Wanda Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106665/","id":106665,"name":"The Inventor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106670/","id":106670,"name":"Mnemonoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106671/","id":106671,"name":"Gum Drop Lass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106672/","id":106672,"name":"Gingerbread Muto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106681/","id":106681,"name":"Papi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106685/","id":106685,"name":"Mokona Modoki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106688/","id":106688,"name":"Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106689/","id":106689,"name":"Elf King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106727/","id":106727,"name":"The Creator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106746/","id":106746,"name":"Barbarica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106747/","id":106747,"name":"Original Hippie Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106748/","id":106748,"name":"Spike Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106749/","id":106749,"name":"Sergeant Reptilion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106750/","id":106750,"name":"Hrothgar The Faceless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106751/","id":106751,"name":"Pascale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106752/","id":106752,"name":"Deco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106764/","id":106764,"name":"Sekhent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106774/","id":106774,"name":"Papamanu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106868/","id":106868,"name":"Hundred Eyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106870/","id":106870,"name":"Sau-Si"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106914/","id":106914,"name":"Mailman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106915/","id":106915,"name":"TJ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106924/","id":106924,"name":"Grudge Samurai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107045/","id":107045,"name":"Hailey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107062/","id":107062,"name":"Intellectron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107084/","id":107084,"name":"Armida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107115/","id":107115,"name":"Reader"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107162/","id":107162,"name":"King of Pain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107196/","id":107196,"name":"David"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107229/","id":107229,"name":"Bad Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107230/","id":107230,"name":"Bigfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107231/","id":107231,"name":"Infi-Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107276/","id":107276,"name":"Mother Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107277/","id":107277,"name":"Grove"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107298/","id":107298,"name":"Iso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107299/","id":107299,"name":"Old Man Winter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107328/","id":107328,"name":"Kara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107341/","id":107341,"name":"Drago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107390/","id":107390,"name":"Gnoma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107396/","id":107396,"name":"Lillypad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107397/","id":107397,"name":"Hornia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107398/","id":107398,"name":"Ka'r-num"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107403/","id":107403,"name":"Dagamon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107415/","id":107415,"name":"Thimblewitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107420/","id":107420,"name":"Artema"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107482/","id":107482,"name":"Chocolat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107498/","id":107498,"name":"Gellir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107499/","id":107499,"name":"Haefnir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107500/","id":107500,"name":"Kuinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107501/","id":107501,"name":"Ygoaer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107502/","id":107502,"name":"Nafni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107503/","id":107503,"name":"Vog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107504/","id":107504,"name":"Vulgg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107505/","id":107505,"name":"Steingrim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107506/","id":107506,"name":"Bothvar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107507/","id":107507,"name":"Vonkarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107526/","id":107526,"name":"Oggie Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107549/","id":107549,"name":"HE"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107551/","id":107551,"name":"Yves"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107580/","id":107580,"name":"Stinker Pirate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107589/","id":107589,"name":"Squatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107606/","id":107606,"name":"Blank Slater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107639/","id":107639,"name":"Karn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107670/","id":107670,"name":"Köinzell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107689/","id":107689,"name":"Gnaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107697/","id":107697,"name":"Hamura Otsutsuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107707/","id":107707,"name":"The Ant Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107723/","id":107723,"name":"Yum Kimil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107940/","id":107940,"name":"Naamurah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107947/","id":107947,"name":"Yogi Boo Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107948/","id":107948,"name":"Fluffer Nutter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107953/","id":107953,"name":"Glumdalclitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107959/","id":107959,"name":"The Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107987/","id":107987,"name":"Holo the Wisewolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107994/","id":107994,"name":"Mr. Void"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108020/","id":108020,"name":"Unicornea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108024/","id":108024,"name":"Kitten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108025/","id":108025,"name":"Balthazar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108049/","id":108049,"name":"Smudge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108067/","id":108067,"name":"Susie Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108078/","id":108078,"name":"Naja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108079/","id":108079,"name":"Anna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108082/","id":108082,"name":"Brix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108083/","id":108083,"name":"Bora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108084/","id":108084,"name":"Daemos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108085/","id":108085,"name":"Verna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108086/","id":108086,"name":"Jennix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108123/","id":108123,"name":"Hoggscar The Harsh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108124/","id":108124,"name":"Dr Jest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108149/","id":108149,"name":"Chandkaal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108157/","id":108157,"name":"Pop Fizz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108158/","id":108158,"name":"Trigger Happy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108159/","id":108159,"name":"Stealth Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108160/","id":108160,"name":"Spyro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108174/","id":108174,"name":"Arach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108277/","id":108277,"name":"Drain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108313/","id":108313,"name":"Bailey X60"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108319/","id":108319,"name":"Sir Sadlygrove Percedal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108321/","id":108321,"name":"Ruel Stroud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108322/","id":108322,"name":"Evangelyne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108323/","id":108323,"name":"Amalia Sheran Sharm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108324/","id":108324,"name":"Yugo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108342/","id":108342,"name":"Grinderstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108397/","id":108397,"name":"Cotterpin Doozer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108398/","id":108398,"name":"Madame Cymbaline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108399/","id":108399,"name":"Elena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108410/","id":108410,"name":"Tsuchigumo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108411/","id":108411,"name":"Yura Keikain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108412/","id":108412,"name":"Nianzol Weizol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108413/","id":108413,"name":"Faydra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108419/","id":108419,"name":"Klem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108466/","id":108466,"name":"Alisa Southerncross"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108487/","id":108487,"name":"Omiyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108534/","id":108534,"name":"3-D Cowboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108535/","id":108535,"name":"Star Grass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108553/","id":108553,"name":"Mr. Gooseberry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108558/","id":108558,"name":"Gronk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108574/","id":108574,"name":"The Gargoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108614/","id":108614,"name":"Fidelitas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108615/","id":108615,"name":"Black Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108616/","id":108616,"name":"Geofri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108617/","id":108617,"name":"Lady Dialla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108618/","id":108618,"name":"Maligaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108619/","id":108619,"name":"Malachai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108624/","id":108624,"name":"Chopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108626/","id":108626,"name":"Weeruptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108627/","id":108627,"name":"Flynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108628/","id":108628,"name":"Food Fight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108629/","id":108629,"name":"Jet-Vac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108634/","id":108634,"name":"Pizza Steve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108638/","id":108638,"name":"Kei Nagai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108640/","id":108640,"name":"Skin&Bone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108641/","id":108641,"name":"Wicked Walter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108642/","id":108642,"name":"Mr. Sloth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108643/","id":108643,"name":"Carrion Jane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108667/","id":108667,"name":"Candyman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108702/","id":108702,"name":"Faye Celeste"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108717/","id":108717,"name":"The She Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108758/","id":108758,"name":"Cyc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108759/","id":108759,"name":"Beanpole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108760/","id":108760,"name":"Lil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108761/","id":108761,"name":"Tubes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108762/","id":108762,"name":"Mem-Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108763/","id":108763,"name":"Poly-Chaos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108765/","id":108765,"name":"Detective Daphnia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108778/","id":108778,"name":"Swivel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108791/","id":108791,"name":"Metifa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108792/","id":108792,"name":"John Pozner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108794/","id":108794,"name":"Delina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108828/","id":108828,"name":"Cavallo Zoppo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108888/","id":108888,"name":"Splorko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108897/","id":108897,"name":"Birch Squatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108942/","id":108942,"name":"Beast Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108943/","id":108943,"name":"Faceless Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108970/","id":108970,"name":"Enchantra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109015/","id":109015,"name":"Kimidori-san"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109022/","id":109022,"name":"Mori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109023/","id":109023,"name":"Kusabi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109024/","id":109024,"name":"Tsurugi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109028/","id":109028,"name":"The Alienist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109070/","id":109070,"name":"Achilles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109099/","id":109099,"name":"Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109112/","id":109112,"name":"Cillian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109150/","id":109150,"name":"Auran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109159/","id":109159,"name":"Nur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109183/","id":109183,"name":"The Dark Commander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109185/","id":109185,"name":"Oracle "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109198/","id":109198,"name":"Gomorrah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109199/","id":109199,"name":"Samuel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109202/","id":109202,"name":"Scarlett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109203/","id":109203,"name":"Marax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109204/","id":109204,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109224/","id":109224,"name":"Balazar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109230/","id":109230,"name":"Underboss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109241/","id":109241,"name":"Rocky Robinson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109249/","id":109249,"name":"Valen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109250/","id":109250,"name":"Fritz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109261/","id":109261,"name":"Ninufa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109300/","id":109300,"name":"Goblin Gruesome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109301/","id":109301,"name":"Creepella Gruesome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109302/","id":109302,"name":"Weirdly Gruesome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109315/","id":109315,"name":"God King Lore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109316/","id":109316,"name":"Shavo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109317/","id":109317,"name":"Rya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109318/","id":109318,"name":"Ansari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109324/","id":109324,"name":"Rook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109339/","id":109339,"name":"Grahh-Nola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109422/","id":109422,"name":"Wolfie Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109424/","id":109424,"name":"Tico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109444/","id":109444,"name":"Bobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109471/","id":109471,"name":"Oogump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109501/","id":109501,"name":"The Nutcracker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109530/","id":109530,"name":"Ultimorte"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109584/","id":109584,"name":"Rokumon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109604/","id":109604,"name":"Lady Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109697/","id":109697,"name":"Wulla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109698/","id":109698,"name":"Scattle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109701/","id":109701,"name":"Zethka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109702/","id":109702,"name":"Mr. Vestish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109703/","id":109703,"name":"Mr. Jenks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109704/","id":109704,"name":"Hursel Silt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109705/","id":109705,"name":"Haohl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109707/","id":109707,"name":"Steve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109716/","id":109716,"name":"Queen Seles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109734/","id":109734,"name":"Krigari Ironhand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109741/","id":109741,"name":"Shandie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109745/","id":109745,"name":"Leaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109758/","id":109758,"name":"Starless Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109759/","id":109759,"name":"Speran King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109761/","id":109761,"name":"Yonder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109762/","id":109762,"name":"Princess Lono"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109763/","id":109763,"name":"Princess Pira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109764/","id":109764,"name":"General Zeal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109791/","id":109791,"name":"Deep Sea King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109834/","id":109834,"name":"Ragmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109835/","id":109835,"name":"Zombo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109840/","id":109840,"name":"Alpoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109845/","id":109845,"name":"Helbram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109936/","id":109936,"name":"The Horror That Walked"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109941/","id":109941,"name":"Undina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109954/","id":109954,"name":"Endo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109955/","id":109955,"name":"Neuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109986/","id":109986,"name":"Wheellock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109987/","id":109987,"name":"Whiskers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109988/","id":109988,"name":"Auric"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109989/","id":109989,"name":"Tessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109990/","id":109990,"name":"Cali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109991/","id":109991,"name":"Barkley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109992/","id":109992,"name":"Night Shift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109993/","id":109993,"name":"Wildfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110003/","id":110003,"name":"Zamora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110009/","id":110009,"name":"Kylar Stern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110010/","id":110010,"name":"Durzo Blint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110017/","id":110017,"name":"Chainsaw Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110049/","id":110049,"name":"Mrs. Yoop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110051/","id":110051,"name":"Long-Eared Hearer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110061/","id":110061,"name":"Chopfyt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110063/","id":110063,"name":"Bumpy Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110085/","id":110085,"name":"Dragon-Mage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110106/","id":110106,"name":"Okira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110118/","id":110118,"name":"High Pilot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110125/","id":110125,"name":"Prince Ziph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110129/","id":110129,"name":"Anubis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110155/","id":110155,"name":"Sam-I-Am"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110160/","id":110160,"name":"The BFG"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110186/","id":110186,"name":"Nuparu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110200/","id":110200,"name":"Junk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110248/","id":110248,"name":"Gur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110250/","id":110250,"name":"Elg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110254/","id":110254,"name":"Eddie Munster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110333/","id":110333,"name":"Grim Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110347/","id":110347,"name":"Arnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110372/","id":110372,"name":"Greykil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110414/","id":110414,"name":"Blue Eyes White Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110418/","id":110418,"name":"Dark Magician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110440/","id":110440,"name":"Lugweed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110477/","id":110477,"name":"Professor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110499/","id":110499,"name":"Herbert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110500/","id":110500,"name":"Zakutu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110501/","id":110501,"name":"Dust King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110507/","id":110507,"name":"Necrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110513/","id":110513,"name":"Dark Magician Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110516/","id":110516,"name":"Winged Kuriboh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110531/","id":110531,"name":"Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110547/","id":110547,"name":"Phil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110548/","id":110548,"name":"Zoltakk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110582/","id":110582,"name":"Madelyn Grimoire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110610/","id":110610,"name":"Red Eyes Black Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110617/","id":110617,"name":"Esmeralda The Fortune Teller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110618/","id":110618,"name":"Faith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110677/","id":110677,"name":"Smoke Scream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110707/","id":110707,"name":"Deconstructed Superhero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110736/","id":110736,"name":"Tim the Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110744/","id":110744,"name":"Jubee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110791/","id":110791,"name":"Mudd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110813/","id":110813,"name":"Lazlo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110833/","id":110833,"name":"Mr. Fitzgerald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110871/","id":110871,"name":"Mona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110873/","id":110873,"name":"Jo-Joy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110876/","id":110876,"name":"Henni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110877/","id":110877,"name":"Iris Clops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110878/","id":110878,"name":"Herk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110890/","id":110890,"name":"Kokoro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110901/","id":110901,"name":"Mickey Da Saw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110902/","id":110902,"name":"Fishy Pete"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110966/","id":110966,"name":"Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110967/","id":110967,"name":"Moe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110968/","id":110968,"name":"Manny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110977/","id":110977,"name":"Fantomelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110989/","id":110989,"name":"Selyara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111057/","id":111057,"name":"Dobby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111107/","id":111107,"name":"Claude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111117/","id":111117,"name":"Montgomery Knox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111198/","id":111198,"name":"Korosensei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111210/","id":111210,"name":"Ritsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111276/","id":111276,"name":"Undertaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111277/","id":111277,"name":"Prince Soma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111280/","id":111280,"name":"William T. Spears"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111286/","id":111286,"name":"Snake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111300/","id":111300,"name":"Ronald Knox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111308/","id":111308,"name":"Margaret Connor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111316/","id":111316,"name":"Derrick Arden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111325/","id":111325,"name":"Johan Agares"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111326/","id":111326,"name":"The Principal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111335/","id":111335,"name":"Torafusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111336/","id":111336,"name":"Tempesta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111338/","id":111338,"name":"Mard Geer Tartarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111339/","id":111339,"name":"Lector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111340/","id":111340,"name":"Jiemma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111341/","id":111341,"name":"Frosch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111413/","id":111413,"name":"Ebina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111414/","id":111414,"name":"Yoremon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111416/","id":111416,"name":"Mutsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111424/","id":111424,"name":"Nezumya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111431/","id":111431,"name":"Onijishi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111439/","id":111439,"name":"Hedoro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111481/","id":111481,"name":"Linn Regiostar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111492/","id":111492,"name":"Azazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111493/","id":111493,"name":"Gasper Vladi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111494/","id":111494,"name":"Serafall Leviathan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111495/","id":111495,"name":"Albion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111535/","id":111535,"name":"Kid Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111574/","id":111574,"name":"Ben"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111608/","id":111608,"name":"Kamenashi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111609/","id":111609,"name":"Kai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111610/","id":111610,"name":"Iwanofu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111612/","id":111612,"name":"Bushy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111631/","id":111631,"name":"Mr. Skullhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111658/","id":111658,"name":"Tagosaku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111659/","id":111659,"name":"Rei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111674/","id":111674,"name":"Gedoumaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111763/","id":111763,"name":"Spore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111783/","id":111783,"name":"Ragna the Bloodedge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111803/","id":111803,"name":"Calliope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111804/","id":111804,"name":"Fling Kong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111805/","id":111805,"name":"Trail Blazer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111806/","id":111806,"name":"Fist Bump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111807/","id":111807,"name":"Torch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111808/","id":111808,"name":"Déjà Vu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111809/","id":111809,"name":"Brock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111814/","id":111814,"name":"Yama-Uba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111820/","id":111820,"name":"Kaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111859/","id":111859,"name":"Little Gruesome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111963/","id":111963,"name":"Lis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112016/","id":112016,"name":"Chen Lo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112021/","id":112021,"name":"Crow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112022/","id":112022,"name":"Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112083/","id":112083,"name":"Hi-Riser"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112084/","id":112084,"name":"Scrambles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112085/","id":112085,"name":"Revs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112086/","id":112086,"name":"Chopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112087/","id":112087,"name":"Rota Ree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112088/","id":112088,"name":"Wheelie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112096/","id":112096,"name":"Sol Badguy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112166/","id":112166,"name":"Rakkesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112184/","id":112184,"name":"Kolobus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112190/","id":112190,"name":"Kachina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112191/","id":112191,"name":"Aemon Price"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112192/","id":112192,"name":"Ambrosia White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112206/","id":112206,"name":"Stitchface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112207/","id":112207,"name":"Gris-Gris Gal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112208/","id":112208,"name":"Voodoo Queen Kulev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112230/","id":112230,"name":"Dahlia White"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112260/","id":112260,"name":"Ardat-Lili"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112272/","id":112272,"name":"Ignatius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112278/","id":112278,"name":"Chair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112285/","id":112285,"name":"The Bloke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112308/","id":112308,"name":"Laila McCarthy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112325/","id":112325,"name":"Arden"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112331/","id":112331,"name":"Amecareth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112334/","id":112334,"name":"Asbeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112337/","id":112337,"name":"Deniak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112354/","id":112354,"name":"Mr. Horrible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112379/","id":112379,"name":"Haruna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112385/","id":112385,"name":"Sylvester Asimov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112410/","id":112410,"name":"Mike Nesmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112448/","id":112448,"name":"Mr. J. Evil Scientist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112449/","id":112449,"name":"Mrs. J. Evil Scientist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112450/","id":112450,"name":"Junior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112466/","id":112466,"name":"The Lady of Birds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112467/","id":112467,"name":"Lucky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112503/","id":112503,"name":"King Pomp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112504/","id":112504,"name":"Flirtacia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112505/","id":112505,"name":"Glum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112506/","id":112506,"name":"Edgar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112507/","id":112507,"name":"Bunko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112529/","id":112529,"name":"Freddy the Flute"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112530/","id":112530,"name":"Clang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112531/","id":112531,"name":"Cling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112536/","id":112536,"name":"Society Tree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112544/","id":112544,"name":"Time-Sink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112545/","id":112545,"name":"Chain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112546/","id":112546,"name":"Susan in Sunshine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112547/","id":112547,"name":"Bleeding Image"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112548/","id":112548,"name":"Endgame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112590/","id":112590,"name":"Astrina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112665/","id":112665,"name":"Midnight Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112765/","id":112765,"name":"Gloriana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112771/","id":112771,"name":"Chao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112772/","id":112772,"name":"Kyuin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112773/","id":112773,"name":"Maujii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112774/","id":112774,"name":"Inhel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112777/","id":112777,"name":"Wellington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112814/","id":112814,"name":"Chief Blue Meanie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112815/","id":112815,"name":"Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112817/","id":112817,"name":"Jeremy Hillary Boob, Ph.D."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113088/","id":113088,"name":"Shindia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113122/","id":113122,"name":"Murray Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113123/","id":113123,"name":"Mr. Snuffleupagus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113124/","id":113124,"name":"Rosita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113127/","id":113127,"name":"Telly Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113129/","id":113129,"name":"Abby Cadabby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113143/","id":113143,"name":"Zoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113182/","id":113182,"name":"Hex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113187/","id":113187,"name":"Aouka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113245/","id":113245,"name":"Dark Shaman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113345/","id":113345,"name":"Atomic Sea-Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113370/","id":113370,"name":"Samson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113378/","id":113378,"name":"Lips"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113380/","id":113380,"name":"Thog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113383/","id":113383,"name":"Green Frackle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113384/","id":113384,"name":"Blue Frackle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113385/","id":113385,"name":"Gorgon Heap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113388/","id":113388,"name":"Mad Monty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113408/","id":113408,"name":"Heron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113409/","id":113409,"name":"Adelphos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113551/","id":113551,"name":"Kryllk the Cruel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113583/","id":113583,"name":"Oruthu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113615/","id":113615,"name":"Wimpy Sidekick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113627/","id":113627,"name":"LarryBoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113679/","id":113679,"name":"Dark Paladin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113700/","id":113700,"name":"Slim Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113701/","id":113701,"name":"Beard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113703/","id":113703,"name":"Big Mean Carl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113705/","id":113705,"name":"Carter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113706/","id":113706,"name":"Angel Marie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113707/","id":113707,"name":"Banana Nose Maldonado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113710/","id":113710,"name":"Zeke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113711/","id":113711,"name":"Gramps"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113712/","id":113712,"name":"Lubbock Lou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113713/","id":113713,"name":"Shakey Sanchez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113717/","id":113717,"name":"Santa Sasaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113718/","id":113718,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113719/","id":113719,"name":"Fleet Scribbler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113736/","id":113736,"name":"Zelda Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113738/","id":113738,"name":"Three-Headed Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113739/","id":113739,"name":"Hugga Wugga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113740/","id":113740,"name":"Java"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113741/","id":113741,"name":"Nigel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113742/","id":113742,"name":"Koozebanian Phoob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113743/","id":113743,"name":"Mean Mama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113744/","id":113744,"name":"Talking Houses"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113745/","id":113745,"name":"Beautiful Day Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113753/","id":113753,"name":"Granny the Gouger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113755/","id":113755,"name":"The Mutations"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113757/","id":113757,"name":"Bobby Benson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113758/","id":113758,"name":"Big V"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113776/","id":113776,"name":"Jim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113777/","id":113777,"name":"Lou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113778/","id":113778,"name":"Marvin Suggs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113780/","id":113780,"name":"Doglion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113781/","id":113781,"name":"Geri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113796/","id":113796,"name":"Luncheon Counter Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113797/","id":113797,"name":"Timmy Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113798/","id":113798,"name":"Headless Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113799/","id":113799,"name":"Dead Tom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113843/","id":113843,"name":"Delta Nine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113864/","id":113864,"name":"Prairie Dawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113867/","id":113867,"name":"Walter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113872/","id":113872,"name":"The Witch Doctor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113874/","id":113874,"name":"Mary Louise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113879/","id":113879,"name":"Mary Louise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113885/","id":113885,"name":"Mr. Poodlepants"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113933/","id":113933,"name":"Hagoromo Gitsune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113938/","id":113938,"name":"Herry Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113939/","id":113939,"name":"Guy Smiley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113940/","id":113940,"name":"Mr. Johnson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113941/","id":113941,"name":"Roosevelt Franklin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113942/","id":113942,"name":"Sherlock Hemlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114001/","id":114001,"name":"Psamira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114008/","id":114008,"name":"Starky Gripes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114032/","id":114032,"name":"Medora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114033/","id":114033,"name":"SkekSil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114034/","id":114034,"name":"SkekSo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114035/","id":114035,"name":"Neffi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114037/","id":114037,"name":"Lahr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114038/","id":114038,"name":"SkekTek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114039/","id":114039,"name":"SkekLach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114054/","id":114054,"name":"Poe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114070/","id":114070,"name":"Gurgazon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114084/","id":114084,"name":"The Liberaider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114087/","id":114087,"name":"Mother-Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114175/","id":114175,"name":"Moth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114176/","id":114176,"name":"Peaseblossom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114215/","id":114215,"name":"Red Rain Batman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114247/","id":114247,"name":"Grey Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114248/","id":114248,"name":"Scath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114294/","id":114294,"name":"Guise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114314/","id":114314,"name":"Snake and Sybilis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114317/","id":114317,"name":"Sheena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114318/","id":114318,"name":"Rynor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114319/","id":114319,"name":"Pan Sing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114320/","id":114320,"name":"George the Angel-Hawk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114321/","id":114321,"name":"Cinnabar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114361/","id":114361,"name":"Aquaman 1000000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114459/","id":114459,"name":"Lamy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114596/","id":114596,"name":"Suspencer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114597/","id":114597,"name":"Great Warrior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114651/","id":114651,"name":"Kitsune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114652/","id":114652,"name":"Chibi-Kitsune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114794/","id":114794,"name":"Audrey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114819/","id":114819,"name":"Kotal K'etz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115027/","id":115027,"name":"Borlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115112/","id":115112,"name":"Meatlug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115115/","id":115115,"name":"Regis Cutler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115116/","id":115116,"name":"Ulysses Grant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115119/","id":115119,"name":"Cheshire Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115124/","id":115124,"name":"White Rabbit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115132/","id":115132,"name":"Dodo Bird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115167/","id":115167,"name":"Karal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115270/","id":115270,"name":"Underwaterman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115325/","id":115325,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115336/","id":115336,"name":"Isabel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115357/","id":115357,"name":"Overlord Baron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115432/","id":115432,"name":"Utnapishtim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115437/","id":115437,"name":"Thomas Raith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115438/","id":115438,"name":"Hestia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115447/","id":115447,"name":"Bork"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115448/","id":115448,"name":"Jocasta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115506/","id":115506,"name":"Komandir Koschei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115507/","id":115507,"name":"Dr. Kovsky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115518/","id":115518,"name":"Holt Hyde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115519/","id":115519,"name":"Gillington Webber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115520/","id":115520,"name":"Invisi Billy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115522/","id":115522,"name":"Sloman Mortavitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115525/","id":115525,"name":"Hoodude Voodoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115527/","id":115527,"name":"Gilda Goldstag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115529/","id":115529,"name":"Neighthan Rot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115530/","id":115530,"name":"Lorna McNessie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115531/","id":115531,"name":"Nefera de Nile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115556/","id":115556,"name":"Ferra/Torr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115568/","id":115568,"name":"Zreate'th"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115585/","id":115585,"name":"April"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115588/","id":115588,"name":"Woof the Wolf Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115589/","id":115589,"name":"Zoe Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115590/","id":115590,"name":"Harriet the Happy Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115592/","id":115592,"name":"Phantasm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115605/","id":115605,"name":"Hitomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115632/","id":115632,"name":"Agon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115653/","id":115653,"name":"Uber Alles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115655/","id":115655,"name":"Treplaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115701/","id":115701,"name":"Mimihagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115728/","id":115728,"name":"Marshmallow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115739/","id":115739,"name":"Ovovo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115740/","id":115740,"name":"Ikkt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115741/","id":115741,"name":"Amodr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115769/","id":115769,"name":"Ellen Gold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115772/","id":115772,"name":"Ray's Spirit Guide"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115774/","id":115774,"name":"Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115777/","id":115777,"name":"Hungry Manitou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115786/","id":115786,"name":"Grundel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115794/","id":115794,"name":"Dinah the Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115795/","id":115795,"name":"Old Lady Myrtle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115815/","id":115815,"name":"Crybaby Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115816/","id":115816,"name":"Phantom Truck Driver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115821/","id":115821,"name":"Marie Laveau II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115841/","id":115841,"name":"Ghost Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115842/","id":115842,"name":"Megaspook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115869/","id":115869,"name":"Garou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115870/","id":115870,"name":"Penny Dreadful"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115871/","id":115871,"name":"Cymbeline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115889/","id":115889,"name":"Lynessa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115916/","id":115916,"name":"Zinna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115917/","id":115917,"name":"Luminous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115920/","id":115920,"name":"Bugger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115922/","id":115922,"name":"Crank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115923/","id":115923,"name":"Sparky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115924/","id":115924,"name":"Crumb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115925/","id":115925,"name":"Scarecrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115929/","id":115929,"name":"Iago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115951/","id":115951,"name":"Lenu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115952/","id":115952,"name":"Zeekil Neol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115955/","id":115955,"name":"Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115956/","id":115956,"name":"Koah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115968/","id":115968,"name":"Skeleton Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115969/","id":115969,"name":"Igraine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115970/","id":115970,"name":"Gorlois"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115974/","id":115974,"name":"Woody"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115999/","id":115999,"name":"Bog Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116001/","id":116001,"name":"Neverboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116002/","id":116002,"name":"Tiamat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116022/","id":116022,"name":"Minivan Helsing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116121/","id":116121,"name":"Paragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116133/","id":116133,"name":"Veiled Lady"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116185/","id":116185,"name":"The Old Cray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116186/","id":116186,"name":"Cray Mayor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116196/","id":116196,"name":"Plague Weasel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116267/","id":116267,"name":"Taffy T. Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116349/","id":116349,"name":"Big Woogee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116352/","id":116352,"name":"Mr. Christmas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116363/","id":116363,"name":"The Basilisk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116368/","id":116368,"name":"Kevin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116444/","id":116444,"name":"L'Odium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116469/","id":116469,"name":"Nain Rouge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116537/","id":116537,"name":"Cotton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116542/","id":116542,"name":"Zaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116574/","id":116574,"name":"Howld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116620/","id":116620,"name":"Pridak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116624/","id":116624,"name":"Kongu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116625/","id":116625,"name":"Hewkii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116626/","id":116626,"name":"Hahli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116627/","id":116627,"name":"Jaller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116658/","id":116658,"name":"Keystone Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116662/","id":116662,"name":"Tarduk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116663/","id":116663,"name":"Vastus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116664/","id":116664,"name":"Stronius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116665/","id":116665,"name":"Kiina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116666/","id":116666,"name":"Gelu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116667/","id":116667,"name":"Ackar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116668/","id":116668,"name":"Nektann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116728/","id":116728,"name":"Empyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116752/","id":116752,"name":"Princess Coral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116753/","id":116753,"name":"Lord Hydro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116755/","id":116755,"name":"Hisashi Ogura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116778/","id":116778,"name":"Tar Baby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116788/","id":116788,"name":"The Spoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116789/","id":116789,"name":"The Dish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116865/","id":116865,"name":"Ende"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116887/","id":116887,"name":"Bloppy Pants"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116916/","id":116916,"name":"Holly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116922/","id":116922,"name":"Lily"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116937/","id":116937,"name":"Peter Pumpkinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116959/","id":116959,"name":"Snapdragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116970/","id":116970,"name":"Emilia Yusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116978/","id":116978,"name":"Fate Averruncus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117000/","id":117000,"name":"Eldrac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117009/","id":117009,"name":"Hopcross Jilly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117013/","id":117013,"name":"Synergy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117020/","id":117020,"name":"Captain Frightbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117021/","id":117021,"name":"Gurglefin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117022/","id":117022,"name":"Mags"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117023/","id":117023,"name":"Wallop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117024/","id":117024,"name":"Knight Light"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117025/","id":117025,"name":"Chef Pepper Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117027/","id":117027,"name":"Persephone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117061/","id":117061,"name":"Ultra Comics"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117085/","id":117085,"name":"The Balloon Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117102/","id":117102,"name":"Vögelein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117103/","id":117103,"name":"Jakob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117159/","id":117159,"name":"Tsukumo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117204/","id":117204,"name":"Cale'anon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117205/","id":117205,"name":"Seltyiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117223/","id":117223,"name":"Zarina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117224/","id":117224,"name":"Roid Rage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117225/","id":117225,"name":"Buster Glark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117285/","id":117285,"name":"Belly Bag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117301/","id":117301,"name":"Vulturella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117302/","id":117302,"name":"Lizard Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117303/","id":117303,"name":"Dragonmaster of Klarn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117365/","id":117365,"name":"The Valusian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117368/","id":117368,"name":"Queen Haydon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117370/","id":117370,"name":"Scorpan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117433/","id":117433,"name":"The Missing Bride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117472/","id":117472,"name":"Agent Breadman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117486/","id":117486,"name":"Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117503/","id":117503,"name":"Clayton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117504/","id":117504,"name":"Carmen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117505/","id":117505,"name":"Masami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117506/","id":117506,"name":"Teri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117508/","id":117508,"name":"Alan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117509/","id":117509,"name":"Carrie Krueger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117510/","id":117510,"name":"Leslie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117511/","id":117511,"name":"Mr. Small"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117512/","id":117512,"name":"Jamie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117513/","id":117513,"name":"Gaylord Robinson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117515/","id":117515,"name":"Anton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117516/","id":117516,"name":"Rachel Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117517/","id":117517,"name":"Idaho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117518/","id":117518,"name":"Hector Jötunheim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117519/","id":117519,"name":"Larry Needlemeyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117520/","id":117520,"name":"Margaret Robinson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117521/","id":117521,"name":"Principal Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117522/","id":117522,"name":"Coach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117523/","id":117523,"name":"Bandage Doctor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117524/","id":117524,"name":"Sarah G. Lato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117525/","id":117525,"name":"Bomb Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117526/","id":117526,"name":"Ocho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117528/","id":117528,"name":"Doughnut Sheriff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117529/","id":117529,"name":"Juke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117530/","id":117530,"name":"Marvin Finklehimer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117543/","id":117543,"name":"Kamran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117580/","id":117580,"name":"Ara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117581/","id":117581,"name":"Ivana Ghoul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117590/","id":117590,"name":"Bloodsquirt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117620/","id":117620,"name":"Grandmother Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117632/","id":117632,"name":"Red Squirrel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117645/","id":117645,"name":"Ayane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117648/","id":117648,"name":"Nurarihyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117649/","id":117649,"name":"Kyokotsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117650/","id":117650,"name":"Suiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117651/","id":117651,"name":"Akaname"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117688/","id":117688,"name":"Bo' Rai Cho "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117691/","id":117691,"name":"Aero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117701/","id":117701,"name":"Lisara Restole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117709/","id":117709,"name":"Orvax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117713/","id":117713,"name":"Kaboom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117735/","id":117735,"name":"Knight Mare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117736/","id":117736,"name":"Doctor Krankcase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117737/","id":117737,"name":"Hugo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117738/","id":117738,"name":"Buzz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117739/","id":117739,"name":"Tree Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117740/","id":117740,"name":"Swarm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117751/","id":117751,"name":"Janice Bizzle Thatcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117806/","id":117806,"name":"The Gargoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117810/","id":117810,"name":"Hank Steiner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117814/","id":117814,"name":"The Bricklayer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117850/","id":117850,"name":"Uncle Pockets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117851/","id":117851,"name":"Duchess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117852/","id":117852,"name":"Berry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117856/","id":117856,"name":"Fitzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117861/","id":117861,"name":"Artemis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117891/","id":117891,"name":"Pix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117892/","id":117892,"name":"Adaire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117912/","id":117912,"name":"Adam Familiar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117926/","id":117926,"name":"Slap Wilkerson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117927/","id":117927,"name":"Star-Spangled Danner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117930/","id":117930,"name":"Blacksnake McQuirt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117932/","id":117932,"name":"Kacy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117951/","id":117951,"name":"Bonnie Shaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117956/","id":117956,"name":"The Wiseman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117961/","id":117961,"name":"Wrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117964/","id":117964,"name":"Cassidy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117972/","id":117972,"name":"Flying Fury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118003/","id":118003,"name":"The Fart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118100/","id":118100,"name":"Guts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118138/","id":118138,"name":"Astoroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118139/","id":118139,"name":"Mathilda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118150/","id":118150,"name":"Bunny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118161/","id":118161,"name":"King Ryus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118186/","id":118186,"name":"Fionn mac Cumhaill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118194/","id":118194,"name":"The Shriek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118198/","id":118198,"name":"Lord Golgatha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118206/","id":118206,"name":"The Plague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118210/","id":118210,"name":"Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118211/","id":118211,"name":"Squire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118212/","id":118212,"name":"Sarah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118224/","id":118224,"name":"Immortal Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118234/","id":118234,"name":"John Jones "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118254/","id":118254,"name":"Jack Hallow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118265/","id":118265,"name":"Bullet Gal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118294/","id":118294,"name":"Garf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118306/","id":118306,"name":"Major Patriot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118321/","id":118321,"name":"Thom Talesi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118325/","id":118325,"name":"Habetrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118326/","id":118326,"name":"Grindylow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118330/","id":118330,"name":"Johnny Colossus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118332/","id":118332,"name":"Se'adet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118334/","id":118334,"name":"Sargasso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118338/","id":118338,"name":"Lava"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118357/","id":118357,"name":"Fortress Kia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118367/","id":118367,"name":"The Courier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118368/","id":118368,"name":"Pacifica Slasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118384/","id":118384,"name":"Killstrike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118405/","id":118405,"name":"Dee'em"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118406/","id":118406,"name":"Bugie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118414/","id":118414,"name":"The Vile Tapeworm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118416/","id":118416,"name":"She-Man-Thing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118428/","id":118428,"name":"Sir Omphalos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118445/","id":118445,"name":"Chili Chili Bang Bang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118446/","id":118446,"name":"Phantom Carrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118447/","id":118447,"name":"Romaine Gladiator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118448/","id":118448,"name":"Squish Squash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118449/","id":118449,"name":"Peashooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118455/","id":118455,"name":"Loconut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118462/","id":118462,"name":"Miss Jomla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118511/","id":118511,"name":"The Traveller "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118512/","id":118512,"name":"The Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118588/","id":118588,"name":"Dark Gaia Titan "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118599/","id":118599,"name":"Zavok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118615/","id":118615,"name":"Zor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118616/","id":118616,"name":"Zomom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118617/","id":118617,"name":"Zik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118618/","id":118618,"name":"Zeena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118619/","id":118619,"name":"Zazz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118639/","id":118639,"name":"Apama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118657/","id":118657,"name":"Churlish Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118683/","id":118683,"name":"Blackhole Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118684/","id":118684,"name":"Starpunch Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118693/","id":118693,"name":"Lazarus Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118711/","id":118711,"name":"Veronica Delacroix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118718/","id":118718,"name":"Fox Mother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118750/","id":118750,"name":"Sergeant Binghamton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118768/","id":118768,"name":"Darlene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118771/","id":118771,"name":"Tirga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118772/","id":118772,"name":"Onoli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118773/","id":118773,"name":"Thropan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118774/","id":118774,"name":"Gaja"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118793/","id":118793,"name":"Chance D'Estaing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118797/","id":118797,"name":"Rockfel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118809/","id":118809,"name":"Mort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118810/","id":118810,"name":"Syd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118811/","id":118811,"name":"Oswald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118812/","id":118812,"name":"Maharishi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118815/","id":118815,"name":"Redwing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118816/","id":118816,"name":"Gluss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118825/","id":118825,"name":"Sevara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118848/","id":118848,"name":"Dougan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118849/","id":118849,"name":"Heartbreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118879/","id":118879,"name":"Calandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118883/","id":118883,"name":"Dusque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118884/","id":118884,"name":"Kyra Sundance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118885/","id":118885,"name":"Twylight Skye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118886/","id":118886,"name":"Iga Fayde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118887/","id":118887,"name":"Serpentus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118888/","id":118888,"name":"Kat Lywi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118889/","id":118889,"name":"Kit Lywi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118890/","id":118890,"name":"Naan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118892/","id":118892,"name":"Xercie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118895/","id":118895,"name":"Cactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118898/","id":118898,"name":"Constance Wright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118920/","id":118920,"name":"Elia Fawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118925/","id":118925,"name":"Caroline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118926/","id":118926,"name":"Mannequin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118941/","id":118941,"name":"Final Boss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118952/","id":118952,"name":"Futakuchi-Onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118987/","id":118987,"name":"Agen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118990/","id":118990,"name":"Portia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119047/","id":119047,"name":"Aquaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119050/","id":119050,"name":"Gridlock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119080/","id":119080,"name":"Turaxx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119088/","id":119088,"name":"Archaeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119131/","id":119131,"name":"Krag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119132/","id":119132,"name":"Gork"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119167/","id":119167,"name":"Adon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119168/","id":119168,"name":"Greyson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119169/","id":119169,"name":"Yoten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119170/","id":119170,"name":"Mitsuko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119171/","id":119171,"name":"Terio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119193/","id":119193,"name":"Lurgi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119252/","id":119252,"name":"Furry Qaileny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119316/","id":119316,"name":"Agent Double 'O' Candy Bar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119321/","id":119321,"name":"Dragon Puncher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119322/","id":119322,"name":"Spoony-E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119327/","id":119327,"name":"Ryan Fisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119328/","id":119328,"name":"Megumi Suzuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119457/","id":119457,"name":"Devilfish "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119545/","id":119545,"name":"Count D"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119608/","id":119608,"name":"Shå"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119705/","id":119705,"name":"Singularity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119718/","id":119718,"name":"Dragon Witch of Winter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119730/","id":119730,"name":"Tsubasa Rainuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119732/","id":119732,"name":"Aoi Kurosaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119733/","id":119733,"name":"Coulcure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119771/","id":119771,"name":"Smiling Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119778/","id":119778,"name":"Emrys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119779/","id":119779,"name":"Kyrie Rivers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119791/","id":119791,"name":"Dick Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119792/","id":119792,"name":"Silas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119794/","id":119794,"name":"Zipman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119803/","id":119803,"name":"Toki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119804/","id":119804,"name":"Rumpuss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119805/","id":119805,"name":"Shump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119824/","id":119824,"name":"Kamui Wood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119835/","id":119835,"name":"Lunch-Rush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119845/","id":119845,"name":"Vihara Headgear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119854/","id":119854,"name":"Noumu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119861/","id":119861,"name":"Black Mist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119892/","id":119892,"name":"Mr. Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119953/","id":119953,"name":"Sub-Mariner 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119995/","id":119995,"name":"Bambo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120002/","id":120002,"name":"Blinky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120004/","id":120004,"name":"Cruncher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120005/","id":120005,"name":"Snitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120006/","id":120006,"name":"Radar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120007/","id":120007,"name":"Brainy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120018/","id":120018,"name":"Island of No Return"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120027/","id":120027,"name":"Lion-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120055/","id":120055,"name":"Kumo-Onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120059/","id":120059,"name":"Calista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120062/","id":120062,"name":"Yaronath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120063/","id":120063,"name":"Deltwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120067/","id":120067,"name":"The Necromancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120104/","id":120104,"name":"Krampus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120118/","id":120118,"name":"Severina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120128/","id":120128,"name":"Dead Duck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120129/","id":120129,"name":"Zombie Chick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120137/","id":120137,"name":"Fender"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120169/","id":120169,"name":"Makie Osakabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120196/","id":120196,"name":"Dean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120197/","id":120197,"name":"Dracula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120329/","id":120329,"name":"Grid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120354/","id":120354,"name":"Micro X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120364/","id":120364,"name":"Virgo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120370/","id":120370,"name":"Libra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120385/","id":120385,"name":"Cancer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120486/","id":120486,"name":"Ralaan ad-Zaliir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120489/","id":120489,"name":"Vaalann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120496/","id":120496,"name":"Amos Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120506/","id":120506,"name":"Vaxdor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120507/","id":120507,"name":"Frank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120512/","id":120512,"name":"Laura Carrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120513/","id":120513,"name":"Junior Asparagus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120562/","id":120562,"name":"Zange Natsume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120563/","id":120563,"name":"Banri Watanuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120564/","id":120564,"name":"Mikoto Inugami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120599/","id":120599,"name":"No Heart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120600/","id":120600,"name":"Beastly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120601/","id":120601,"name":"Aargh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120602/","id":120602,"name":"Horn Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120603/","id":120603,"name":"Slobulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120604/","id":120604,"name":"Bash Brain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120605/","id":120605,"name":"Oculus Orbus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120606/","id":120606,"name":"Skull Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120608/","id":120608,"name":"Screamin' Meemie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120609/","id":120609,"name":"Wolf Breath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120610/","id":120610,"name":"Fist Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120632/","id":120632,"name":"Astaroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120650/","id":120650,"name":"Swine Sucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120651/","id":120651,"name":"Bruise Brother"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120654/","id":120654,"name":"Lock Lips"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120655/","id":120655,"name":"Freaky Fullback"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120656/","id":120656,"name":"Snake Bait"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120673/","id":120673,"name":"Extriax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120674/","id":120674,"name":"Scylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120752/","id":120752,"name":"Lesky Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120757/","id":120757,"name":"The Candy Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120770/","id":120770,"name":"Queen Mag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120777/","id":120777,"name":"Queen Trench"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120797/","id":120797,"name":"Marine Marauder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120830/","id":120830,"name":"Garr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120882/","id":120882,"name":"Lucy Hanover"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120895/","id":120895,"name":"Snitikus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120897/","id":120897,"name":"Minimoose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120906/","id":120906,"name":"Craynobi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120911/","id":120911,"name":"Brother Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120913/","id":120913,"name":"Toombora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120992/","id":120992,"name":"Tannika Wynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120993/","id":120993,"name":"Etan Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120997/","id":120997,"name":"Witch of the Red Keep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120998/","id":120998,"name":"Sin Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120999/","id":120999,"name":"Lady Riftheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121001/","id":121001,"name":"Max"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121006/","id":121006,"name":"False Bride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121012/","id":121012,"name":"Man of the Mountain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121062/","id":121062,"name":"Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121071/","id":121071,"name":"Lem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121107/","id":121107,"name":"Starla Gutsmandottir-Sorrenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121109/","id":121109,"name":"Drippy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121112/","id":121112,"name":"Lizard Baron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121121/","id":121121,"name":"Friday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121144/","id":121144,"name":"Death Adder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121153/","id":121153,"name":"Rei "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121154/","id":121154,"name":"Peco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121224/","id":121224,"name":"Samurai Slasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121226/","id":121226,"name":"SpaceSquatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121242/","id":121242,"name":"Torment"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121244/","id":121244,"name":"Decimator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121246/","id":121246,"name":"Waeglaf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121247/","id":121247,"name":"Faedhlan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121248/","id":121248,"name":"Waelthea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121249/","id":121249,"name":"Iokaine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121251/","id":121251,"name":"Dang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121257/","id":121257,"name":"Rachnera Arachnera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121258/","id":121258,"name":"Suu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121285/","id":121285,"name":"Gulliver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121293/","id":121293,"name":"Sir Percival Orifice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121295/","id":121295,"name":"Barry the Beastly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121330/","id":121330,"name":"Underbelly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121440/","id":121440,"name":"Kyra Hanson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121452/","id":121452,"name":"Bacon Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121453/","id":121453,"name":"Mallow Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121454/","id":121454,"name":"Dr. Micron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121548/","id":121548,"name":"Kirai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121552/","id":121552,"name":"Ryuko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121607/","id":121607,"name":"Shaggy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121608/","id":121608,"name":"The Grimmorax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121609/","id":121609,"name":"Queen Moonbeam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121613/","id":121613,"name":"Orrible Orvie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121614/","id":121614,"name":"Awful Annie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121615/","id":121615,"name":"Mildew Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121616/","id":121616,"name":"Demonica Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121671/","id":121671,"name":"Demon Nic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121682/","id":121682,"name":"Eries"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121758/","id":121758,"name":"Dani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121759/","id":121759,"name":"Mags"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121760/","id":121760,"name":"Jen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121763/","id":121763,"name":"Dmitri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121789/","id":121789,"name":"Komodo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121829/","id":121829,"name":"Izumi Shimomura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121835/","id":121835,"name":"Shirogane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121836/","id":121836,"name":"Roze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121837/","id":121837,"name":"Kuro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121844/","id":121844,"name":"Slappy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121882/","id":121882,"name":"Pet-Vac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121883/","id":121883,"name":"Gill Runt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121890/","id":121890,"name":"Synapse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121901/","id":121901,"name":"Julie Marquez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121902/","id":121902,"name":"Calvin Bordo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121903/","id":121903,"name":"Jet Chan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121906/","id":121906,"name":"Aman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121911/","id":121911,"name":"Usagi Jane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121918/","id":121918,"name":"Moon O'Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121939/","id":121939,"name":"Quarmers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121953/","id":121953,"name":"Hen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122059/","id":122059,"name":"Mao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122060/","id":122060,"name":"Yu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122066/","id":122066,"name":"Thrillipede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122067/","id":122067,"name":"Splat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122068/","id":122068,"name":"High Volt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122069/","id":122069,"name":"Smash Hit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122070/","id":122070,"name":"Dive-Clops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122073/","id":122073,"name":"Slam Bam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122074/","id":122074,"name":"Sunburn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122075/","id":122075,"name":"Scratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122076/","id":122076,"name":"Zap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122077/","id":122077,"name":"Chill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122078/","id":122078,"name":"Dreadyacht"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122079/","id":122079,"name":"Stormblade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122080/","id":122080,"name":"Fiesta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122081/","id":122081,"name":"Spitfire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122082/","id":122082,"name":"Washbuckler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122084/","id":122084,"name":"Head Rush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122086/","id":122086,"name":"Glumshanks"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122087/","id":122087,"name":"Gill Grunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122088/","id":122088,"name":"Eruptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122091/","id":122091,"name":"Mr. Fuzzyface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122123/","id":122123,"name":"Black Odin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122130/","id":122130,"name":"Bizarro Atom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122146/","id":122146,"name":"Vultak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122148/","id":122148,"name":"Baron Konig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122150/","id":122150,"name":"Annaliese Brezina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122151/","id":122151,"name":"Katharina Brezina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122155/","id":122155,"name":"Guire Guido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122157/","id":122157,"name":"Octavia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122158/","id":122158,"name":"Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122161/","id":122161,"name":"Konosuke Mori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122164/","id":122164,"name":"Mummy King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122193/","id":122193,"name":"Koku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122209/","id":122209,"name":"Jhaakob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122212/","id":122212,"name":"Spectral Wayfarer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122245/","id":122245,"name":"Luna Miyawaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122247/","id":122247,"name":"Wrath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122265/","id":122265,"name":"Haggis McBenton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122277/","id":122277,"name":"Llali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122289/","id":122289,"name":"Jorōgumo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122290/","id":122290,"name":"Hyakume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122297/","id":122297,"name":"Emily Reilly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122329/","id":122329,"name":"Astro Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122340/","id":122340,"name":"Pumpkin Patch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122342/","id":122342,"name":"Poet Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122343/","id":122343,"name":"Baby Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122344/","id":122344,"name":"Farmer Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122345/","id":122345,"name":"Painter Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122346/","id":122346,"name":"Flying Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122347/","id":122347,"name":"Chef Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122349/","id":122349,"name":"Tailor Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122350/","id":122350,"name":"Sculptor Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122355/","id":122355,"name":"Doctor Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122380/","id":122380,"name":"Wild Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122384/","id":122384,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122388/","id":122388,"name":"John Reinhardt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122393/","id":122393,"name":"Miller Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122394/","id":122394,"name":"Carpenter Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122411/","id":122411,"name":"Rawhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122432/","id":122432,"name":"Emory Rains"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122434/","id":122434,"name":"Skisquatch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122439/","id":122439,"name":"Miner Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122440/","id":122440,"name":"Timber Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122580/","id":122580,"name":"Fair Fox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122595/","id":122595,"name":"Satano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122605/","id":122605,"name":"Pete the Meatball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122612/","id":122612,"name":"Ritchie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122613/","id":122613,"name":"Scorch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122636/","id":122636,"name":"Hitaki Miyajima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122637/","id":122637,"name":"Isuka Bernstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122641/","id":122641,"name":"Tsubaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122666/","id":122666,"name":"Mister Genie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122671/","id":122671,"name":"Célestin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122673/","id":122673,"name":"Monsieur Léclair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122674/","id":122674,"name":"Monsieur Snarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122675/","id":122675,"name":"Kiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122676/","id":122676,"name":"King Merus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122719/","id":122719,"name":"Xenia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122964/","id":122964,"name":"Mockingbird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122966/","id":122966,"name":"Fienalia Glengard Flamveil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122971/","id":122971,"name":"Muku Shiroishi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122980/","id":122980,"name":"Alia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122985/","id":122985,"name":"Nila Nyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123005/","id":123005,"name":"Hot Dog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123006/","id":123006,"name":"Black Ham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123007/","id":123007,"name":"Col. Bird"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123008/","id":123008,"name":"Chip of the Mousse Coalition"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123009/","id":123009,"name":"Empress Pineapple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123018/","id":123018,"name":"T-Rider Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123033/","id":123033,"name":"Vinz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123034/","id":123034,"name":"Angelino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123036/","id":123036,"name":"Oswald"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123040/","id":123040,"name":"Lazarus the Walking Dead Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123099/","id":123099,"name":"Beatrice Rappacini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123106/","id":123106,"name":"Madame Apsara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123107/","id":123107,"name":"Ragdoll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123109/","id":123109,"name":"King Of Fear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123113/","id":123113,"name":"Multaa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123147/","id":123147,"name":"Cynthia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123151/","id":123151,"name":"Gary the Tentacle Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123155/","id":123155,"name":"Trudy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123156/","id":123156,"name":"Corky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123201/","id":123201,"name":"August"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123202/","id":123202,"name":"Frostbite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123218/","id":123218,"name":"Worm Captain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123219/","id":123219,"name":"Takasu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123220/","id":123220,"name":"Wakasa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123226/","id":123226,"name":"Whisper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123286/","id":123286,"name":"Ank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123384/","id":123384,"name":"Oro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123392/","id":123392,"name":"Amilyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123397/","id":123397,"name":"Kirihito Mori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123401/","id":123401,"name":"Detective Tuesday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123405/","id":123405,"name":"Anica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123406/","id":123406,"name":"Immortal Krov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123407/","id":123407,"name":"Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123418/","id":123418,"name":"Fernando"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123419/","id":123419,"name":"Miss Fluffykins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123420/","id":123420,"name":"Wilma Bunny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123421/","id":123421,"name":"Tristan the Teddy Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123451/","id":123451,"name":"Aryana Lightbow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123471/","id":123471,"name":"Karloff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123472/","id":123472,"name":"Erika Five"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123499/","id":123499,"name":"Wilder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123500/","id":123500,"name":"Madame Leech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123573/","id":123573,"name":"Z"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123593/","id":123593,"name":"Maxi-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123607/","id":123607,"name":"Last Order"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123612/","id":123612,"name":"Shu Tsukiyama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123655/","id":123655,"name":"Twinkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123656/","id":123656,"name":"Phobos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123681/","id":123681,"name":"Krakatoa, Beast of Java"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123723/","id":123723,"name":"Ryuu Lyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123785/","id":123785,"name":"Takane Enomoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123812/","id":123812,"name":"Carrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123813/","id":123813,"name":"Ryunosuke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123818/","id":123818,"name":"Mr. Medusa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123829/","id":123829,"name":"Frankenbabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123863/","id":123863,"name":"Spellslamzer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123864/","id":123864,"name":"Nightfall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123865/","id":123865,"name":"Boomer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123866/","id":123866,"name":"Ghost Roaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123867/","id":123867,"name":"Voodood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123868/","id":123868,"name":"Clownface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123874/","id":123874,"name":"Michael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123895/","id":123895,"name":"Wallace Bordeaux"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123899/","id":123899,"name":"Dook Poopson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123904/","id":123904,"name":"Moon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123905/","id":123905,"name":"Belle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123906/","id":123906,"name":"Kit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123954/","id":123954,"name":"Olive"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123958/","id":123958,"name":"Brad Fenrison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123962/","id":123962,"name":"Rainbow Serpent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123982/","id":123982,"name":"Aztekoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124017/","id":124017,"name":"Wanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124018/","id":124018,"name":"BB"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124019/","id":124019,"name":"Roddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124044/","id":124044,"name":"Joe Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124045/","id":124045,"name":"Mr. Empty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124067/","id":124067,"name":"Maika Halfwolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124074/","id":124074,"name":"Niobe Ayutami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124083/","id":124083,"name":"Araragi Koyomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124085/","id":124085,"name":"Shinobu Oshino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124193/","id":124193,"name":"Novo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124207/","id":124207,"name":"Camille Kenney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124242/","id":124242,"name":"Walter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124358/","id":124358,"name":"Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124372/","id":124372,"name":"Ioni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124383/","id":124383,"name":"Sia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124384/","id":124384,"name":"Brun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124391/","id":124391,"name":"Agent Joel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124409/","id":124409,"name":"Moon Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124413/","id":124413,"name":"Hyena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124419/","id":124419,"name":"Snakebite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124430/","id":124430,"name":"She-Krampus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124464/","id":124464,"name":"Six-Shooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124466/","id":124466,"name":"Kahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124467/","id":124467,"name":"Vampire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124468/","id":124468,"name":"Totem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124505/","id":124505,"name":"Wud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124516/","id":124516,"name":"Duke Dogstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124517/","id":124517,"name":"Shishilian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124524/","id":124524,"name":"Bellona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124526/","id":124526,"name":"Zelda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124556/","id":124556,"name":"Swain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124564/","id":124564,"name":"Tripwire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124601/","id":124601,"name":"Pickles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124626/","id":124626,"name":"Fern Redoak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124641/","id":124641,"name":"Grit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124711/","id":124711,"name":"Necile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124718/","id":124718,"name":"Neo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124719/","id":124719,"name":"AIR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124720/","id":124720,"name":"ANOTHER"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124721/","id":124721,"name":"PAIR"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124722/","id":124722,"name":"NEWS"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124723/","id":124723,"name":"ATOM"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124726/","id":124726,"name":"Cat Viper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124741/","id":124741,"name":"Oloch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124742/","id":124742,"name":"Meligaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124743/","id":124743,"name":"Damiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124749/","id":124749,"name":"Gnym"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124768/","id":124768,"name":"Ishani"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124769/","id":124769,"name":"Zed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124770/","id":124770,"name":"Ned"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124771/","id":124771,"name":"Rochelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124772/","id":124772,"name":"Bulldog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124773/","id":124773,"name":"Chug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124774/","id":124774,"name":"Leadbottom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124775/","id":124775,"name":"Sparky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124776/","id":124776,"name":"Dottie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124777/","id":124777,"name":"Skipper Riley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124784/","id":124784,"name":"Munemori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124787/","id":124787,"name":"Nobara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124789/","id":124789,"name":"Yiegren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124798/","id":124798,"name":"Efrem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124808/","id":124808,"name":"Despair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124813/","id":124813,"name":"Morbis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124834/","id":124834,"name":"Scapula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124838/","id":124838,"name":"Rukata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124848/","id":124848,"name":"Mayakul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124849/","id":124849,"name":"Anonde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124852/","id":124852,"name":"Brad Thomson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124871/","id":124871,"name":"Shirogane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124872/","id":124872,"name":"Kurogane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124891/","id":124891,"name":"Franken Berry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124892/","id":124892,"name":"Lucky the Leprechaun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124893/","id":124893,"name":"Count Chocula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124894/","id":124894,"name":"Boo Berry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124897/","id":124897,"name":"Chip Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124899/","id":124899,"name":"Whistleman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124906/","id":124906,"name":"Goleta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124922/","id":124922,"name":"Panacea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124941/","id":124941,"name":"Francesca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124943/","id":124943,"name":"Mean McMudda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124944/","id":124944,"name":"Max Zillion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124979/","id":124979,"name":"Fritz & Jocko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124983/","id":124983,"name":"Brick Head Johnny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125053/","id":125053,"name":"Telekinian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125079/","id":125079,"name":"Two-Headed Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125083/","id":125083,"name":"The Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125092/","id":125092,"name":"Meresyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125096/","id":125096,"name":"Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125110/","id":125110,"name":"Ora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125144/","id":125144,"name":"The Vanisher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125151/","id":125151,"name":"Rowen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125157/","id":125157,"name":"Chibi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125159/","id":125159,"name":"Master Joris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125172/","id":125172,"name":"Gurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125175/","id":125175,"name":"Rachacha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125219/","id":125219,"name":"Bill Mudd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125224/","id":125224,"name":"Bog Lurk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125250/","id":125250,"name":"Count Moneybone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125253/","id":125253,"name":"Mother Corpse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125254/","id":125254,"name":"Monkey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125258/","id":125258,"name":"Nakajima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125263/","id":125263,"name":"Ekimu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125271/","id":125271,"name":"Prester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125295/","id":125295,"name":"Vilhelm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125297/","id":125297,"name":"Varney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125299/","id":125299,"name":"Finn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125300/","id":125300,"name":"Pirate King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125301/","id":125301,"name":"Karen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125302/","id":125302,"name":"Kharon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125314/","id":125314,"name":"Navid Hassan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125315/","id":125315,"name":"Tharg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125316/","id":125316,"name":"Thok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125317/","id":125317,"name":"Thorn-Teeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125324/","id":125324,"name":"Rionette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125325/","id":125325,"name":"Ron Glace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125326/","id":125326,"name":"Racas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125327/","id":125327,"name":"Ltiangle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125328/","id":125328,"name":"Let Dahaka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125336/","id":125336,"name":"Berial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125337/","id":125337,"name":"Celia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125339/","id":125339,"name":"Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125340/","id":125340,"name":"Franken Billy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125341/","id":125341,"name":"Doryu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125343/","id":125343,"name":"Crush Cookie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125344/","id":125344,"name":"Julia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125356/","id":125356,"name":"Jiero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125357/","id":125357,"name":"Uta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125358/","id":125358,"name":"Asura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125359/","id":125359,"name":"Megido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125380/","id":125380,"name":"Teppei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125385/","id":125385,"name":"Zahrshippe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125386/","id":125386,"name":"Gnet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125402/","id":125402,"name":"Papajima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125403/","id":125403,"name":"Mamajima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125404/","id":125404,"name":"Didi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125405/","id":125405,"name":"Saga Pentragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125406/","id":125406,"name":"Gawara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125407/","id":125407,"name":"Gocco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125408/","id":125408,"name":"Yanma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125409/","id":125409,"name":"Gob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125410/","id":125410,"name":"Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125414/","id":125414,"name":"Unicorn Watanabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125442/","id":125442,"name":"Fumia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125448/","id":125448,"name":"Freya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125470/","id":125470,"name":"Takao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125471/","id":125471,"name":"Hyuga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125473/","id":125473,"name":"Nee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125477/","id":125477,"name":"Demon Foster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125478/","id":125478,"name":"Bloodshed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125487/","id":125487,"name":"Dark Dweller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125488/","id":125488,"name":"Brother Slither"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125489/","id":125489,"name":"Trivak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125490/","id":125490,"name":"Lagarow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125564/","id":125564,"name":"Bella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125567/","id":125567,"name":"Gannon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125582/","id":125582,"name":"Sister Gwineth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125611/","id":125611,"name":"Maria Naruse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125612/","id":125612,"name":"Mio Naruse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125644/","id":125644,"name":"Memo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125689/","id":125689,"name":"Amphibonaut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125692/","id":125692,"name":"Ribbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125702/","id":125702,"name":"Baron Robot XXIII"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125716/","id":125716,"name":"King Fluminox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125719/","id":125719,"name":"Norma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125735/","id":125735,"name":"The Sculptor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125738/","id":125738,"name":"Franint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125744/","id":125744,"name":"Namorina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125746/","id":125746,"name":"Iron Mariner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125750/","id":125750,"name":"Deucalion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125777/","id":125777,"name":"Sven Olafsen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125783/","id":125783,"name":"Redwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125814/","id":125814,"name":"Star Babe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125841/","id":125841,"name":"Lalita Bertram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125842/","id":125842,"name":"Mariah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125845/","id":125845,"name":"William Bertram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125862/","id":125862,"name":"Norman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125935/","id":125935,"name":"Hacka Doll No.3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125936/","id":125936,"name":"Hacka Doll No.2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125937/","id":125937,"name":"Hacka Doll No.1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125950/","id":125950,"name":"Veera Suominen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125953/","id":125953,"name":"Cici"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125957/","id":125957,"name":"Pollum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125971/","id":125971,"name":"Keshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125972/","id":125972,"name":"Gwisin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125979/","id":125979,"name":"Gruffyd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126024/","id":126024,"name":"Winchell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126062/","id":126062,"name":"Akaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126078/","id":126078,"name":"Quietus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126117/","id":126117,"name":"Antimatter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126125/","id":126125,"name":"Astra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126126/","id":126126,"name":"Thrasher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126127/","id":126127,"name":"Zapatak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126131/","id":126131,"name":"Blip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126161/","id":126161,"name":"Frankenstein's Monster (Clone)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126214/","id":126214,"name":"General Gourd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126225/","id":126225,"name":"Experiment X-51"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126238/","id":126238,"name":"Perduron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126252/","id":126252,"name":"Skinless Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126263/","id":126263,"name":"Whispers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126264/","id":126264,"name":"Foulroot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126265/","id":126265,"name":"Shiver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126266/","id":126266,"name":"Blacktooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126273/","id":126273,"name":"Rhonda Fleming"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126295/","id":126295,"name":"Hub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126300/","id":126300,"name":"Naah-Taal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126311/","id":126311,"name":"Maluuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126321/","id":126321,"name":"Rage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126335/","id":126335,"name":"Davros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126343/","id":126343,"name":"Kanade Tachibana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126344/","id":126344,"name":"Hideki Hinata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126345/","id":126345,"name":"Veronica Madaraki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126346/","id":126346,"name":"Fran Madaraki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126352/","id":126352,"name":"The Unbelievable Laundry Detergent Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126374/","id":126374,"name":"Lucy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126375/","id":126375,"name":"Charli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126377/","id":126377,"name":"The Heart Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126384/","id":126384,"name":"Pilli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126385/","id":126385,"name":"IVI"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126422/","id":126422,"name":"Treste"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126423/","id":126423,"name":"Flagman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126472/","id":126472,"name":"Boogers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126482/","id":126482,"name":"Mystic Moot and His Magic Snoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126484/","id":126484,"name":"Steppin Orc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126491/","id":126491,"name":"Angler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126492/","id":126492,"name":"Steela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126493/","id":126493,"name":"Asterio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126501/","id":126501,"name":"Zilch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126519/","id":126519,"name":"Peke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126563/","id":126563,"name":"Gingerdead Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126590/","id":126590,"name":"Headclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126592/","id":126592,"name":"Clari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126593/","id":126593,"name":"Arcus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126594/","id":126594,"name":"Thurn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126605/","id":126605,"name":"Cuhullin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126608/","id":126608,"name":"Man in Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126622/","id":126622,"name":"Living Dream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126663/","id":126663,"name":"Danielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126664/","id":126664,"name":"Luyin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126680/","id":126680,"name":"Cthulhu Williams"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126721/","id":126721,"name":"Michele Silenzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126732/","id":126732,"name":"Quinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126756/","id":126756,"name":"Felyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126801/","id":126801,"name":"Kobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126824/","id":126824,"name":"Kobik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126924/","id":126924,"name":"Neala-Tok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126927/","id":126927,"name":"Sycorax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126936/","id":126936,"name":"Doctor Once"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126937/","id":126937,"name":"Lord Baalikar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126938/","id":126938,"name":"Thea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126939/","id":126939,"name":"Morgan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126959/","id":126959,"name":"The Mighty Atom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126967/","id":126967,"name":"Zhivago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127001/","id":127001,"name":"Aristaeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127004/","id":127004,"name":"Tristran Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127006/","id":127006,"name":"Punpun Onodera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127012/","id":127012,"name":"Mars Del Rey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127040/","id":127040,"name":"Surgeon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127054/","id":127054,"name":"Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127055/","id":127055,"name":"Hazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127056/","id":127056,"name":"Dr. Mortis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127075/","id":127075,"name":"Lam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127078/","id":127078,"name":"Quivering Annie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127093/","id":127093,"name":"Irelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127094/","id":127094,"name":"Capo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127097/","id":127097,"name":"Necromaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127098/","id":127098,"name":"Big Johnson Bone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127127/","id":127127,"name":"Gertie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127132/","id":127132,"name":"Flavius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127138/","id":127138,"name":"Charter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127141/","id":127141,"name":"Dalish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127145/","id":127145,"name":"Skinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127146/","id":127146,"name":"Rocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127167/","id":127167,"name":"The Rot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127212/","id":127212,"name":"Vergil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127225/","id":127225,"name":"Lord of the Locusts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127282/","id":127282,"name":"Drugo Sunder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127305/","id":127305,"name":"Amamiya Kyouka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127329/","id":127329,"name":"Maugys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127330/","id":127330,"name":"Lord Glory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127331/","id":127331,"name":"Snout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127367/","id":127367,"name":"Mako"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127369/","id":127369,"name":"Dratania"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127587/","id":127587,"name":"Grimace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127611/","id":127611,"name":"Corvath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127613/","id":127613,"name":"Gabrielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127632/","id":127632,"name":"Xiu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127633/","id":127633,"name":"Roi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127636/","id":127636,"name":"Tsukiumi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127646/","id":127646,"name":"Eye-Brawl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127681/","id":127681,"name":"King Bognarsh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127683/","id":127683,"name":"Banana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127741/","id":127741,"name":"Kitaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127756/","id":127756,"name":"Poze-Khes-Oep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127769/","id":127769,"name":"Keyli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127772/","id":127772,"name":"Plok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127808/","id":127808,"name":"Brahm Allvar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127836/","id":127836,"name":"American Kaiju"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127871/","id":127871,"name":"Unified"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127882/","id":127882,"name":"Lord Limbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127958/","id":127958,"name":"Phony McRing-Ring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127968/","id":127968,"name":"Squiggle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127978/","id":127978,"name":"Barnacle Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127979/","id":127979,"name":"Spirit Animal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128066/","id":128066,"name":"Charn-el"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128194/","id":128194,"name":"Madame Leota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128196/","id":128196,"name":"Pickwick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128267/","id":128267,"name":"Frank the Lesser Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128268/","id":128268,"name":"Major Magnam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128273/","id":128273,"name":"Ordo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128306/","id":128306,"name":"Worm-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128370/","id":128370,"name":"Steph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128379/","id":128379,"name":"Halvanylila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128448/","id":128448,"name":"Na-Rune-Tok Mair'alyn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128453/","id":128453,"name":"Borian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128489/","id":128489,"name":"Strangeblob Nopants"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128504/","id":128504,"name":"Emlyn the Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128518/","id":128518,"name":"Grubel Kaidan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128522/","id":128522,"name":"King Tosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128628/","id":128628,"name":"Sergeant Kurp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128629/","id":128629,"name":"Captain Arturo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128631/","id":128631,"name":"Chester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128632/","id":128632,"name":"Captain Wolfrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128655/","id":128655,"name":"Airi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128714/","id":128714,"name":"Ulmore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128715/","id":128715,"name":"Humberjon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128716/","id":128716,"name":"Doctor Jolimump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128719/","id":128719,"name":"Minister Gustrolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128720/","id":128720,"name":"King Rumbold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128730/","id":128730,"name":"Sister Creepy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128732/","id":128732,"name":"Pop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128733/","id":128733,"name":"Crackle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128734/","id":128734,"name":"Snap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128744/","id":128744,"name":"Ernest J. Keebler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128745/","id":128745,"name":"Punchy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128746/","id":128746,"name":"Twinkie the Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128750/","id":128750,"name":"Fruit Pie the Magician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128752/","id":128752,"name":"Captain Cupcake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128754/","id":128754,"name":"Marky Maypo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128763/","id":128763,"name":"Sir Nimbus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128766/","id":128766,"name":"Kaboom the Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128767/","id":128767,"name":"Yummy Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128773/","id":128773,"name":"Fung Father"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128774/","id":128774,"name":"Barque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128777/","id":128777,"name":"Lord Darketh Deaddeath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128778/","id":128778,"name":"Skullkill the Bloodbringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128779/","id":128779,"name":"Dot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128780/","id":128780,"name":"Burr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128785/","id":128785,"name":"Thaddeus J. Star"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128792/","id":128792,"name":"Kuchi-kun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128802/","id":128802,"name":"Wendy Naugus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128965/","id":128965,"name":"Hieronymus Hellgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129080/","id":129080,"name":"The Thinker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129164/","id":129164,"name":"Tomoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129184/","id":129184,"name":"Scarlett"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129185/","id":129185,"name":"Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129186/","id":129186,"name":"Figure A"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129188/","id":129188,"name":"Silly Nan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129193/","id":129193,"name":"Corporal Zan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129194/","id":129194,"name":"Private Bondle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129196/","id":129196,"name":"Doctor Karlo Van Kongmacher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129197/","id":129197,"name":"Gentleman Wendigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129230/","id":129230,"name":"Mutant Corn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129239/","id":129239,"name":"Cobweb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129240/","id":129240,"name":"Mustardseed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129245/","id":129245,"name":"Man O' Fruit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129248/","id":129248,"name":"The Comanche Skeleton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129262/","id":129262,"name":"Knifejohns"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129278/","id":129278,"name":"Ikelli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129279/","id":129279,"name":"Irellis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129348/","id":129348,"name":"McTootle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129352/","id":129352,"name":"Thunderdell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129362/","id":129362,"name":"The Stick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129389/","id":129389,"name":"Dorak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129448/","id":129448,"name":"Clark "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129455/","id":129455,"name":"Quetzalcoatl Sassassul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129483/","id":129483,"name":"Nathaniel Monroe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129484/","id":129484,"name":"Lucas Wilson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129496/","id":129496,"name":"Profiler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129582/","id":129582,"name":"Mayor McCheese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129600/","id":129600,"name":"Gaw'er"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129604/","id":129604,"name":"Chisato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129605/","id":129605,"name":"Jeong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129606/","id":129606,"name":"Green Humongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129607/","id":129607,"name":"Red Humongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129720/","id":129720,"name":"Kars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129721/","id":129721,"name":"Toadsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129726/","id":129726,"name":"Kalmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129727/","id":129727,"name":"Klevar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129728/","id":129728,"name":"Mamar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129730/","id":129730,"name":"Skolar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129731/","id":129731,"name":"Misstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129732/","id":129732,"name":"Eldstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129778/","id":129778,"name":"Old Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129808/","id":129808,"name":"Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129819/","id":129819,"name":"The Captain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129843/","id":129843,"name":"Ludo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129885/","id":129885,"name":"Blunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129941/","id":129941,"name":"Rosie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129975/","id":129975,"name":"E.S. Pea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129992/","id":129992,"name":"Yuuki Anzai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129994/","id":129994,"name":"Kyoka Kagamiin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130003/","id":130003,"name":"Papa Yagga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130105/","id":130105,"name":"Ôkuninushi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130135/","id":130135,"name":"Doctor Octopus 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130136/","id":130136,"name":"She-Squirt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130212/","id":130212,"name":"Sark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130213/","id":130213,"name":"Corum Rath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130394/","id":130394,"name":"Adam Astronomo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130397/","id":130397,"name":"Lawrence"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130400/","id":130400,"name":"Mephistopheles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130401/","id":130401,"name":"Homunculus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130417/","id":130417,"name":"Tennis Ball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130428/","id":130428,"name":"Aral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130444/","id":130444,"name":"Athena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130445/","id":130445,"name":"Knightcom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130446/","id":130446,"name":"Devel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130461/","id":130461,"name":"Militia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130462/","id":130462,"name":"Rival"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130472/","id":130472,"name":"Ainz Ooal Gown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130493/","id":130493,"name":"Davros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130569/","id":130569,"name":"Bram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130577/","id":130577,"name":"Sandy the Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130592/","id":130592,"name":"Mordawwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130610/","id":130610,"name":"Izzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130613/","id":130613,"name":"Rachel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130614/","id":130614,"name":"Crystal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130617/","id":130617,"name":"Fallon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130672/","id":130672,"name":"Charlotte Praline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130686/","id":130686,"name":"Filo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130687/","id":130687,"name":"Raphtalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130707/","id":130707,"name":"Constance the Bride"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130732/","id":130732,"name":"Thousand Faces"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130737/","id":130737,"name":"Mosaic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130783/","id":130783,"name":"Moira Bronzebeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130885/","id":130885,"name":"Vyrde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130892/","id":130892,"name":"Tikki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130895/","id":130895,"name":"Sera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130896/","id":130896,"name":"Solas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130904/","id":130904,"name":"Xenon the Antiquarian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130913/","id":130913,"name":"Krull-Gor The Mighty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130934/","id":130934,"name":"Multi-Monst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130959/","id":130959,"name":"Rogers Wilbury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130972/","id":130972,"name":"Globcow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130975/","id":130975,"name":"BeetoGor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130996/","id":130996,"name":"Janus Jardeesh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130999/","id":130999,"name":"Butterfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131010/","id":131010,"name":"Reaper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131020/","id":131020,"name":"Catrina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131030/","id":131030,"name":"Gul’dan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131031/","id":131031,"name":"Nandi Lopez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131086/","id":131086,"name":"Dawn Uttershaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131089/","id":131089,"name":"Mazzari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131105/","id":131105,"name":"Gorgantus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131109/","id":131109,"name":"Admiral Quo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131146/","id":131146,"name":"General Stadler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131183/","id":131183,"name":"Junior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131184/","id":131184,"name":"Tiny Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131197/","id":131197,"name":"Greed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131202/","id":131202,"name":"Ting"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131203/","id":131203,"name":"Zak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131222/","id":131222,"name":"Akane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131230/","id":131230,"name":"Arsippé"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131231/","id":131231,"name":"Leucippe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131232/","id":131232,"name":"Alcathoé"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131240/","id":131240,"name":"Sanagi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131322/","id":131322,"name":"Retro-Blade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131323/","id":131323,"name":"Retro-Pinhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131324/","id":131324,"name":"Drill Sergeant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131327/","id":131327,"name":"Hellwitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131332/","id":131332,"name":"Pony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131333/","id":131333,"name":"Vee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131334/","id":131334,"name":"Phoebe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131335/","id":131335,"name":"Kyoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131336/","id":131336,"name":"Ao-Lung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131342/","id":131342,"name":"Yfass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131375/","id":131375,"name":"The Dark One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131444/","id":131444,"name":"Infinaut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131458/","id":131458,"name":"Cloud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131463/","id":131463,"name":"Z.W.E.I."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131590/","id":131590,"name":"Berrykin Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131637/","id":131637,"name":"Effluvia the Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131676/","id":131676,"name":"Anti-God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131698/","id":131698,"name":"Lock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131699/","id":131699,"name":"Glow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131700/","id":131700,"name":"Tongue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131777/","id":131777,"name":"Bera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131780/","id":131780,"name":"Burnu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131789/","id":131789,"name":"Natalya Maximoff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131832/","id":131832,"name":"Serrata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131875/","id":131875,"name":"Mr. Button"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131896/","id":131896,"name":"Llhupa Sanders"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131897/","id":131897,"name":"Gordon Sanders"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131920/","id":131920,"name":"Cecil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131922/","id":131922,"name":"Terrible Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131948/","id":131948,"name":"Plagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131990/","id":131990,"name":"Hellboy's Wife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131991/","id":131991,"name":"The Vampire Of Prague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131999/","id":131999,"name":"Time Donut"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132004/","id":132004,"name":"Princess Lucia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132020/","id":132020,"name":"Rabbit Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132021/","id":132021,"name":"Giraffe-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132034/","id":132034,"name":"Pig-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132035/","id":132035,"name":"Great Horned Owl-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132037/","id":132037,"name":"Sanara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132038/","id":132038,"name":"Daya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132040/","id":132040,"name":"Squirrelpool"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132044/","id":132044,"name":"Calypso Alexander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132069/","id":132069,"name":"Retro-Six Shooter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132070/","id":132070,"name":"Dr. Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132071/","id":132071,"name":"Cyclops"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132082/","id":132082,"name":"Grotus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132108/","id":132108,"name":"Oösram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132203/","id":132203,"name":"Commander Video"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132244/","id":132244,"name":"Mr. Crypt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132251/","id":132251,"name":"Banyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132252/","id":132252,"name":"Kludge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132256/","id":132256,"name":"Enoch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132257/","id":132257,"name":"Spectra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132278/","id":132278,"name":"Madogiwa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132280/","id":132280,"name":"Bloato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132286/","id":132286,"name":"ZX-Tole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132287/","id":132287,"name":"Thancrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132288/","id":132288,"name":"Gaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132290/","id":132290,"name":"Elegen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132291/","id":132291,"name":"Enzyme II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132292/","id":132292,"name":"Shizu Onuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132293/","id":132293,"name":"Apollon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132295/","id":132295,"name":"Passcode"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132296/","id":132296,"name":"Puppeteer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132328/","id":132328,"name":"Jimm Salabim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132330/","id":132330,"name":"Stalogron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132363/","id":132363,"name":"Dryad Tree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132392/","id":132392,"name":"Rumscheyliesha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132420/","id":132420,"name":"Stormo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132421/","id":132421,"name":"Skeleton Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132422/","id":132422,"name":"Pastry Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132423/","id":132423,"name":"Fluoride King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132424/","id":132424,"name":"Toothpaste Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132429/","id":132429,"name":"Guildmaster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132452/","id":132452,"name":"The Collector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132461/","id":132461,"name":"Captain Siron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132477/","id":132477,"name":"Grace Skybourne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132478/","id":132478,"name":"Thomas Skybourne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132493/","id":132493,"name":"Wilka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132494/","id":132494,"name":"Kilara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132588/","id":132588,"name":"Captain Clamity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132623/","id":132623,"name":"Zackster, Kid Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132636/","id":132636,"name":"Captain Ivro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132681/","id":132681,"name":"Amity Arkham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132696/","id":132696,"name":"Adalind Schade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132702/","id":132702,"name":"King of Ooo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132703/","id":132703,"name":"Candy Law Professor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132709/","id":132709,"name":"Aunt Hazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132716/","id":132716,"name":"Mei-Hood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132717/","id":132717,"name":"Fah-Laën"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132724/","id":132724,"name":"Romeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132725/","id":132725,"name":"Doris Bray"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132766/","id":132766,"name":"Jack The Lantern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132773/","id":132773,"name":"Shigaraki Koyuzu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132791/","id":132791,"name":"Oboro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132822/","id":132822,"name":"Gaia the Fierce Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132823/","id":132823,"name":"Spark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132837/","id":132837,"name":"Asaya Toyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132860/","id":132860,"name":"Beelzebub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132865/","id":132865,"name":"Gibborim Sentry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132869/","id":132869,"name":"Golden Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132871/","id":132871,"name":"Mea Kurosaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132873/","id":132873,"name":"Nemesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132890/","id":132890,"name":"Goat Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132894/","id":132894,"name":"Rowa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132895/","id":132895,"name":"Jurok Byss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132896/","id":132896,"name":"Carcharodor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132897/","id":132897,"name":"Seneschal Kae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132919/","id":132919,"name":"Amy Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132920/","id":132920,"name":"Tyrone Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132921/","id":132921,"name":"Jack Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132953/","id":132953,"name":"Blue Evans"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133018/","id":133018,"name":"In a Silent Way"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133078/","id":133078,"name":"Bug-A-Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133079/","id":133079,"name":"Skully Pettibone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133088/","id":133088,"name":"Harry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133089/","id":133089,"name":"Ruby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133090/","id":133090,"name":"Count Maxwell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133093/","id":133093,"name":"Orson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133170/","id":133170,"name":"Bullmarket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133176/","id":133176,"name":"Master Shake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133178/","id":133178,"name":"Mr. Met"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133190/","id":133190,"name":"Bermuda von Veckenschtein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133191/","id":133191,"name":"Jager"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133197/","id":133197,"name":"Viper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133202/","id":133202,"name":"Kikyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133204/","id":133204,"name":"Bluebell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133211/","id":133211,"name":"Kaiju Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133233/","id":133233,"name":"Skull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133234/","id":133234,"name":"Verde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133283/","id":133283,"name":"Citron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133285/","id":133285,"name":"Rose"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133302/","id":133302,"name":"Captain Quenterindy Quirk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133316/","id":133316,"name":"Saigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133320/","id":133320,"name":"Silex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133323/","id":133323,"name":"Vul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133349/","id":133349,"name":"Zeldris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133350/","id":133350,"name":"Derieri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133351/","id":133351,"name":"Monspeet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133352/","id":133352,"name":"Estarossa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133357/","id":133357,"name":"Nooroo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133392/","id":133392,"name":"Mantor the Magician"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133402/","id":133402,"name":"Reverend Mother Cetea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133439/","id":133439,"name":"Tsukimi Taiga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133450/","id":133450,"name":"Lilu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133455/","id":133455,"name":"Luce"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133463/","id":133463,"name":"Gulag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133470/","id":133470,"name":"Kippa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133479/","id":133479,"name":"Good Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133504/","id":133504,"name":"Cottonmouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133567/","id":133567,"name":"Pillsbury Doughboy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133579/","id":133579,"name":"Sweet Mask"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133590/","id":133590,"name":"Keel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133595/","id":133595,"name":"The Little Engine That Could"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133598/","id":133598,"name":"Puff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133601/","id":133601,"name":"Zombieman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133629/","id":133629,"name":"Klagguu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133632/","id":133632,"name":"Llyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133634/","id":133634,"name":"The Steadfast Tin Soldier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133662/","id":133662,"name":"Do-S"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133682/","id":133682,"name":"Downer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133690/","id":133690,"name":"Thulgroon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133714/","id":133714,"name":"Alice Michaels"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133717/","id":133717,"name":"Branch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133718/","id":133718,"name":"Poppy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133721/","id":133721,"name":"Tiss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133722/","id":133722,"name":"Brahm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133723/","id":133723,"name":"Lyra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133762/","id":133762,"name":"Man-Goat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133807/","id":133807,"name":"The Painter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133831/","id":133831,"name":"Elaine Reed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133852/","id":133852,"name":"Beroul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133870/","id":133870,"name":"Stuffolino the Gnome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133916/","id":133916,"name":"Jiaying"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133921/","id":133921,"name":"Itsy Bitsy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133926/","id":133926,"name":"Silversmith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133928/","id":133928,"name":"Nullifier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133934/","id":133934,"name":"Phantasm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133935/","id":133935,"name":"Arsenal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133939/","id":133939,"name":"Chondak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133942/","id":133942,"name":"Marionette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133949/","id":133949,"name":"Cancero, the Electrical Crab Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133955/","id":133955,"name":"Grockk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133960/","id":133960,"name":"Mindful One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133995/","id":133995,"name":"Toz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134024/","id":134024,"name":"Atrocitas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134046/","id":134046,"name":"Yukine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134114/","id":134114,"name":"Rou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134115/","id":134115,"name":"Maymay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134116/","id":134116,"name":"Kakino Kish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134117/","id":134117,"name":"Picnic Bomber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134118/","id":134118,"name":"Condor Window"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134189/","id":134189,"name":"Dollface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134192/","id":134192,"name":"Frostina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134197/","id":134197,"name":"Elid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134272/","id":134272,"name":"Georgie the Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134317/","id":134317,"name":"Lah'Saa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134319/","id":134319,"name":"Traxis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134321/","id":134321,"name":"Kalis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134323/","id":134323,"name":"Fugg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134338/","id":134338,"name":"Gata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134401/","id":134401,"name":"Shantotto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134402/","id":134402,"name":"Prishe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134443/","id":134443,"name":"Eve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134452/","id":134452,"name":"Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134464/","id":134464,"name":"Bogat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134532/","id":134532,"name":"Vera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134538/","id":134538,"name":"Tundra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134555/","id":134555,"name":"Bro-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134570/","id":134570,"name":"Lucky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134589/","id":134589,"name":"Enfuego"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134617/","id":134617,"name":"The Blue Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134657/","id":134657,"name":"Merrill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134674/","id":134674,"name":"David Wilcox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134712/","id":134712,"name":"Ro Bloodroot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134713/","id":134713,"name":"Titanya Vaetilda Vinnsuvius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134733/","id":134733,"name":"The Grumpass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134762/","id":134762,"name":"Bloodman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134767/","id":134767,"name":"Ak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134786/","id":134786,"name":"Nullpudding"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134801/","id":134801,"name":"Seilah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134805/","id":134805,"name":"Grandeeney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134806/","id":134806,"name":"Zirconis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134807/","id":134807,"name":"Atlas Flame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134808/","id":134808,"name":"Motherglare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134809/","id":134809,"name":"Lullaby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134810/","id":134810,"name":"Deliora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134894/","id":134894,"name":"The Stag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134895/","id":134895,"name":"Dark Star"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134907/","id":134907,"name":"Kid Kaiju"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134908/","id":134908,"name":"Count Griffon Walters"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134929/","id":134929,"name":"Kardunn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134960/","id":134960,"name":"Wei Chiang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134962/","id":134962,"name":"Flippie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134963/","id":134963,"name":"Dhobbel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134978/","id":134978,"name":"Kogure Deimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134985/","id":134985,"name":"Momiji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134987/","id":134987,"name":"Ms. Kaede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134988/","id":134988,"name":"The Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135013/","id":135013,"name":"Garan Orcos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135043/","id":135043,"name":"Mercury"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135087/","id":135087,"name":"Albedo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135099/","id":135099,"name":"Blake Belladonna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135101/","id":135101,"name":"Velvet Scarlatina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135173/","id":135173,"name":"Eliseii"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135247/","id":135247,"name":"Adam Taurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135266/","id":135266,"name":"Carolyn Kaye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135291/","id":135291,"name":"Cupid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135296/","id":135296,"name":"Jay Tucker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135301/","id":135301,"name":"Ditto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135306/","id":135306,"name":"Neon Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135318/","id":135318,"name":"Spoonlicker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135321/","id":135321,"name":"Lord Ubel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135379/","id":135379,"name":"Christian Sung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135384/","id":135384,"name":"Sun Wukong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135476/","id":135476,"name":"Adrien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135477/","id":135477,"name":"The White Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135493/","id":135493,"name":"Kiriko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135559/","id":135559,"name":"Nilanthe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135560/","id":135560,"name":"Kjell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135561/","id":135561,"name":"Lord Gryttmort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135562/","id":135562,"name":"Saarvin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135565/","id":135565,"name":"Karin Nanase"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135569/","id":135569,"name":"Rin Fushimi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135570/","id":135570,"name":"Andvari"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135575/","id":135575,"name":"Velvet Glorioza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135590/","id":135590,"name":"Demone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135619/","id":135619,"name":"Boldween"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135632/","id":135632,"name":"Kenny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135706/","id":135706,"name":"Ukon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135729/","id":135729,"name":"Superguy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135743/","id":135743,"name":"Kostiy the Deathless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135744/","id":135744,"name":"Queen of the Buggers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135752/","id":135752,"name":"Sasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135756/","id":135756,"name":"Cressida"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135802/","id":135802,"name":"Kruul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135809/","id":135809,"name":"Chutriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135813/","id":135813,"name":"Crude"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135863/","id":135863,"name":"Mordecai Cull"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135867/","id":135867,"name":"Mirka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135872/","id":135872,"name":"Torminox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135889/","id":135889,"name":"Phil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135928/","id":135928,"name":"Yomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135931/","id":135931,"name":"Centichoro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135938/","id":135938,"name":"Keeg Bovo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135940/","id":135940,"name":"Dirty Deeds Done Dirt Cheap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135948/","id":135948,"name":"Chocolate Disco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135974/","id":135974,"name":"Poop-Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136050/","id":136050,"name":"Evil Ed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136081/","id":136081,"name":"Korbin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136124/","id":136124,"name":"Whale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136143/","id":136143,"name":"Malekyth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136174/","id":136174,"name":"Napoleon The Bicorn Hat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136175/","id":136175,"name":"Zeus The Stormcloud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136176/","id":136176,"name":"Prometheus The Sun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136185/","id":136185,"name":"Proteus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136214/","id":136214,"name":"Eugene Plankton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136222/","id":136222,"name":"Kessah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136232/","id":136232,"name":"Emperor Super-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136235/","id":136235,"name":"Bizarress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136246/","id":136246,"name":"Lha'saa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136247/","id":136247,"name":"Fall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136286/","id":136286,"name":"Yummy Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136289/","id":136289,"name":"Special Snowflake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136290/","id":136290,"name":"Fairy Dustdevil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136291/","id":136291,"name":"Protean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136349/","id":136349,"name":"Darkness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136350/","id":136350,"name":"Megumin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136351/","id":136351,"name":"Aqua"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136361/","id":136361,"name":"Neneko Iizuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136366/","id":136366,"name":"Champion of the Oppressed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136376/","id":136376,"name":"Groa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136377/","id":136377,"name":"Margrave"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136390/","id":136390,"name":"Theodore Bearsly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136395/","id":136395,"name":"The Creator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136412/","id":136412,"name":"Ninjor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136416/","id":136416,"name":"White Mercy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136475/","id":136475,"name":"Ash Tuesday"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136537/","id":136537,"name":"Daniel Aston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136538/","id":136538,"name":"Bart Curlish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136549/","id":136549,"name":"Amon Patricia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136563/","id":136563,"name":"Alchemist Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136564/","id":136564,"name":"Sickly Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136578/","id":136578,"name":"Wizord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136581/","id":136581,"name":"Andromache of Scythia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136585/","id":136585,"name":"Kensho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136586/","id":136586,"name":"Thurma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136605/","id":136605,"name":"Apollyon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136674/","id":136674,"name":"Mrs. Billingsley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136725/","id":136725,"name":"Samuel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136726/","id":136726,"name":"Monty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136727/","id":136727,"name":"Scout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136728/","id":136728,"name":"Maxwell the Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136731/","id":136731,"name":"Insect Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136783/","id":136783,"name":"Glass Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136822/","id":136822,"name":"Monan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136851/","id":136851,"name":"Worta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136885/","id":136885,"name":"Death Bat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136944/","id":136944,"name":"Minister of Massage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136950/","id":136950,"name":"Balor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136953/","id":136953,"name":"Adam Roderick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136977/","id":136977,"name":"Firebug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137099/","id":137099,"name":"Fredrick The Frost Gnome"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137146/","id":137146,"name":"Winston"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137147/","id":137147,"name":"Silent-But-Deadly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137148/","id":137148,"name":"Doc Saint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137149/","id":137149,"name":"Fisticuffs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137150/","id":137150,"name":"High Caliber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137151/","id":137151,"name":"Sarge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137152/","id":137152,"name":"Hardtack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137153/","id":137153,"name":"Snowblind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137154/","id":137154,"name":"Crimson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137155/","id":137155,"name":"Firehouse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137156/","id":137156,"name":"Sopworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137158/","id":137158,"name":"Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137159/","id":137159,"name":"Skratch Commander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137160/","id":137160,"name":"Taurette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137219/","id":137219,"name":"Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137220/","id":137220,"name":"Lay-Zee-Boyee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137221/","id":137221,"name":"Gorgonzola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137263/","id":137263,"name":"Composite Trinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137349/","id":137349,"name":"Fryguy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137353/","id":137353,"name":"Wanda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137359/","id":137359,"name":"Goombario"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137360/","id":137360,"name":"Lady Bow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137362/","id":137362,"name":"Goombella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137364/","id":137364,"name":"Doopliss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137368/","id":137368,"name":"Lord Crump"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137380/","id":137380,"name":"Sir Grodus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137382/","id":137382,"name":"Princess Shroob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137418/","id":137418,"name":"Elecantha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137457/","id":137457,"name":"Iko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137459/","id":137459,"name":"Mensab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137463/","id":137463,"name":"Hōzuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137477/","id":137477,"name":"No Name"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137497/","id":137497,"name":"Slizzik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137498/","id":137498,"name":"Hi-Vo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137499/","id":137499,"name":"Aegis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137500/","id":137500,"name":"Scragg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137501/","id":137501,"name":"Mekara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137502/","id":137502,"name":"Fireclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137503/","id":137503,"name":"Isabel Giovanni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137505/","id":137505,"name":"Madeleine Giovanni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137538/","id":137538,"name":"Danann Atreyu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137540/","id":137540,"name":"Twylyth Tegg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137552/","id":137552,"name":"Gloria Reynolds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137570/","id":137570,"name":"Anput"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137585/","id":137585,"name":"Charley Kingsley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137604/","id":137604,"name":"Stevonnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137606/","id":137606,"name":"Cindy Lou Who"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137616/","id":137616,"name":"Monsteroso"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137617/","id":137617,"name":"Doc.X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137620/","id":137620,"name":"Greg Garlick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137656/","id":137656,"name":"Doodle-Bug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137692/","id":137692,"name":"Morgans"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137696/","id":137696,"name":"Craig Terrell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137706/","id":137706,"name":"Kazamori"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137753/","id":137753,"name":"Vila"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137890/","id":137890,"name":"Hillevi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137891/","id":137891,"name":"Karduk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138001/","id":138001,"name":"Maple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138027/","id":138027,"name":"Chloe Kowloon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138053/","id":138053,"name":"Greasestain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138054/","id":138054,"name":"Bunface"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138123/","id":138123,"name":"Marsyas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138158/","id":138158,"name":"Rathia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138185/","id":138185,"name":"Horrible Hand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138211/","id":138211,"name":"Judge Squash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138247/","id":138247,"name":"The Maw Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138274/","id":138274,"name":"Djall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138283/","id":138283,"name":"Bud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138284/","id":138284,"name":"Ennay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138285/","id":138285,"name":"Deckhand Dottie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138286/","id":138286,"name":"Fanboy Beard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138287/","id":138287,"name":"Szazs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138291/","id":138291,"name":"Time Vampire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138292/","id":138292,"name":"Raingod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138326/","id":138326,"name":"Sirius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138331/","id":138331,"name":"the Eerie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138337/","id":138337,"name":"Gold Key"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138341/","id":138341,"name":"Tsunami Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138404/","id":138404,"name":"King Flavor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138490/","id":138490,"name":"Mrs. Bellhauer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138531/","id":138531,"name":"Ulrog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138532/","id":138532,"name":"Jorun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138538/","id":138538,"name":"Demonika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138550/","id":138550,"name":"Young Gentleman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138554/","id":138554,"name":"Aranos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138590/","id":138590,"name":"Goblex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138594/","id":138594,"name":"Heinous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138645/","id":138645,"name":"Choze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138646/","id":138646,"name":"Gouketsu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138654/","id":138654,"name":"Mayor Juke-Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138655/","id":138655,"name":"Stanley The Timid Scarecrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138656/","id":138656,"name":"Michelle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138681/","id":138681,"name":"Bill Stiles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138697/","id":138697,"name":"Bashenga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138755/","id":138755,"name":"Euphoria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138800/","id":138800,"name":"Moldrock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138804/","id":138804,"name":"Momma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138909/","id":138909,"name":"Chaoschild"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138912/","id":138912,"name":"Neo-Nate"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138913/","id":138913,"name":"Bloodfang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138916/","id":138916,"name":"Eto Yoshimura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138959/","id":138959,"name":"Ravina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138978/","id":138978,"name":"El Facóquero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139123/","id":139123,"name":"Mal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139133/","id":139133,"name":"Mr. Computer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139135/","id":139135,"name":"Evil Spirit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139146/","id":139146,"name":"Slingsby Sandwich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139147/","id":139147,"name":"Helmut The Hot Dog Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139148/","id":139148,"name":"Yod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139174/","id":139174,"name":"Vaea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139242/","id":139242,"name":"Rodney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139250/","id":139250,"name":"Scary Terry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139322/","id":139322,"name":"Zana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139378/","id":139378,"name":"Faded Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139395/","id":139395,"name":"Derous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139419/","id":139419,"name":"Carla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139428/","id":139428,"name":"Gremmy the Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139429/","id":139429,"name":"Mr. Bottle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139430/","id":139430,"name":"Scientist Supreme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139435/","id":139435,"name":"Mohyan Shaishai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139453/","id":139453,"name":"Hakutaku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139461/","id":139461,"name":"Nashetania Loei Piena Augustra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139610/","id":139610,"name":"Greg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139614/","id":139614,"name":"Crimson Volania Mulch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139648/","id":139648,"name":"Greylight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139653/","id":139653,"name":"Brian McAllister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139675/","id":139675,"name":"Ashurasaurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139678/","id":139678,"name":"Ocean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139864/","id":139864,"name":"Hanei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139866/","id":139866,"name":"Mikleo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139873/","id":139873,"name":"Rago The Blackstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139883/","id":139883,"name":"Estrogina Lugubrious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139885/","id":139885,"name":"Sawborg Destructo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139888/","id":139888,"name":"Bonesnapper the Cave Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139889/","id":139889,"name":"Pustulus Maximus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139890/","id":139890,"name":"Jizmak Da Gusha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139891/","id":139891,"name":"Balsac the Jaws of Death"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139892/","id":139892,"name":"Blothar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139893/","id":139893,"name":"Mr. Perfect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139902/","id":139902,"name":"Feur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139905/","id":139905,"name":"Rickety Stitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139922/","id":139922,"name":"Forneus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139925/","id":139925,"name":"Normalhead Regulararms"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139933/","id":139933,"name":"Haazheel Thorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139941/","id":139941,"name":"Sami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139942/","id":139942,"name":"Princess Natty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139984/","id":139984,"name":"Taka-Onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139985/","id":139985,"name":"Kage-Onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139986/","id":139986,"name":"Gancanagh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140006/","id":140006,"name":"Greater Darojo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140010/","id":140010,"name":"Liberty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140011/","id":140011,"name":"Dawns Earlylight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140012/","id":140012,"name":"Stonewall Jackson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140013/","id":140013,"name":"Stars"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140014/","id":140014,"name":"Stripes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140017/","id":140017,"name":"Bomb-Burst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140052/","id":140052,"name":"Changeling-Tim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140066/","id":140066,"name":"Dyfeline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140073/","id":140073,"name":"Bjorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140114/","id":140114,"name":"Rico"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140170/","id":140170,"name":"Shurra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140174/","id":140174,"name":"The King Behind the Screen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140198/","id":140198,"name":"Hyouma Yoshimura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140199/","id":140199,"name":"Fuurouta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140200/","id":140200,"name":"Emi Kino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140201/","id":140201,"name":"Kikko Hoshino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140206/","id":140206,"name":"Kaito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140208/","id":140208,"name":"Izuna Hatsuse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140238/","id":140238,"name":"Kimiko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140251/","id":140251,"name":"Ulrich the Twice Damned"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140254/","id":140254,"name":"September Mourning"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140277/","id":140277,"name":"Spirit of Some Guy You Once Saw at the Bus Stop and Made Eye Contact With"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140310/","id":140310,"name":"Rebecca Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140325/","id":140325,"name":"Manticore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140326/","id":140326,"name":"Brother Chiang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140334/","id":140334,"name":"Urcell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140335/","id":140335,"name":"Krush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140363/","id":140363,"name":"Prixat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140386/","id":140386,"name":"Ivan Rodriguez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140413/","id":140413,"name":"Strife"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140418/","id":140418,"name":"Gothano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140425/","id":140425,"name":"Goo Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140435/","id":140435,"name":"Sana Kashimura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140443/","id":140443,"name":"Phosphophyllite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140447/","id":140447,"name":"Fukami"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140448/","id":140448,"name":"Dolphi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140449/","id":140449,"name":"Memoca"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140548/","id":140548,"name":"Ninth Assassin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140641/","id":140641,"name":"Tordenkakerlakk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140642/","id":140642,"name":"Bright Eyes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140645/","id":140645,"name":"Professor Garbanzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140661/","id":140661,"name":"Vesuvius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140680/","id":140680,"name":"Mai Kamio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140700/","id":140700,"name":"The Vameter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140775/","id":140775,"name":"Lint Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140776/","id":140776,"name":"Lint Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140779/","id":140779,"name":"Kingbutcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140817/","id":140817,"name":"The Creature from Devil’s Creek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140887/","id":140887,"name":"Hobo Cookie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140888/","id":140888,"name":"Sugar Cookie Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140923/","id":140923,"name":"Baragoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140994/","id":140994,"name":"King Brian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141006/","id":141006,"name":"Chet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141007/","id":141007,"name":"Julie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141075/","id":141075,"name":"Magister Loke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141174/","id":141174,"name":"Riku Replica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141331/","id":141331,"name":"Browne Jenkynne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141333/","id":141333,"name":"Thetty-Jill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141334/","id":141334,"name":"Ranphril"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141336/","id":141336,"name":"Negathlia-Lou Boggs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141339/","id":141339,"name":"Tobit Boggs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141340/","id":141340,"name":"Zeke Hillman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141347/","id":141347,"name":"Willard Wheatley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141350/","id":141350,"name":"Sycorax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141401/","id":141401,"name":"King George"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141507/","id":141507,"name":"Kinju Dayal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141553/","id":141553,"name":"Rexxar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141556/","id":141556,"name":"Froggy the Gremlin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141575/","id":141575,"name":"Buu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141594/","id":141594,"name":"José Rodriguez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141630/","id":141630,"name":"Trixie Tangle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141631/","id":141631,"name":"Polly Fume"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141632/","id":141632,"name":"Minky Mermille"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141654/","id":141654,"name":"Tara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141655/","id":141655,"name":"Leer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141657/","id":141657,"name":"Stormbringer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141702/","id":141702,"name":"Boola the Mean"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141735/","id":141735,"name":"Lucile Serr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141736/","id":141736,"name":"Aunt Serr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141771/","id":141771,"name":"Calla Tafali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141812/","id":141812,"name":"Ondine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141866/","id":141866,"name":"Randy Kthulhu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141879/","id":141879,"name":"Ember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141880/","id":141880,"name":"Catscratch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141881/","id":141881,"name":"Russian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141882/","id":141882,"name":"Arcadian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141888/","id":141888,"name":"Snartle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141917/","id":141917,"name":"Athena Haruka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141932/","id":141932,"name":"Nure-onna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141933/","id":141933,"name":"Nurikabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141954/","id":141954,"name":"Zoe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141972/","id":141972,"name":"Herr Reich"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141975/","id":141975,"name":"Frau Helga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141977/","id":141977,"name":"Haxan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142022/","id":142022,"name":"Sherlock Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142056/","id":142056,"name":"Calvin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142086/","id":142086,"name":"Uzma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142106/","id":142106,"name":"Mara Agosti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142125/","id":142125,"name":"Reimei Isshiki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142129/","id":142129,"name":"Kuri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142138/","id":142138,"name":"Thief"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142147/","id":142147,"name":"Goo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142152/","id":142152,"name":"Moz-Ga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142156/","id":142156,"name":"The Bloody Cardinal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142305/","id":142305,"name":"Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142313/","id":142313,"name":"Cyko KO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142339/","id":142339,"name":"Anal Takeshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142340/","id":142340,"name":"Takeshi Ketsueki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142345/","id":142345,"name":"Unō Takeshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142346/","id":142346,"name":"Sanō Takeshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142347/","id":142347,"name":"Sekizui Takeshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142369/","id":142369,"name":"Owen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142371/","id":142371,"name":"Ocho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142387/","id":142387,"name":"Theodosia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142388/","id":142388,"name":"Lechuza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142391/","id":142391,"name":"Crying Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142405/","id":142405,"name":"Nō Takeshi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142484/","id":142484,"name":"Sizzajee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142504/","id":142504,"name":"Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142524/","id":142524,"name":"Aegis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142527/","id":142527,"name":"Lorenzo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142543/","id":142543,"name":"Pcell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142544/","id":142544,"name":"Davine Lu Linvega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142602/","id":142602,"name":"Vince Charming"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142603/","id":142603,"name":"Nebulara, Queen of the Battle Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142604/","id":142604,"name":"Sweetina Von Bonne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142605/","id":142605,"name":"Unicole Safari-Sidekick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142606/","id":142606,"name":"Bunnard Safari-Sidekick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142609/","id":142609,"name":"Pike Trickfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142610/","id":142610,"name":"Keyleth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142611/","id":142611,"name":"Scanlan Shorthalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142613/","id":142613,"name":"Vex'ahlia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142614/","id":142614,"name":"Vax'ildan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142630/","id":142630,"name":"Ghouliana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142635/","id":142635,"name":"Mira Fallegeros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142637/","id":142637,"name":"Little Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142677/","id":142677,"name":"Grayroad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142680/","id":142680,"name":"Gloxinia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142681/","id":142681,"name":"Haise Sasaki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142728/","id":142728,"name":"Zercat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142741/","id":142741,"name":"Ianthe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142786/","id":142786,"name":"Spooky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142820/","id":142820,"name":"Fawndolyn Safari-Sidekick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142821/","id":142821,"name":"Lilly Liku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142822/","id":142822,"name":"Dia de los Marco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142823/","id":142823,"name":"Dandelillian Fae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142824/","id":142824,"name":"Becky Badluck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142825/","id":142825,"name":"Angel Inx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142857/","id":142857,"name":"Kid Kraken"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142864/","id":142864,"name":"Almond"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142865/","id":142865,"name":"Cucumber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142869/","id":142869,"name":"Guardian of the Forest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142870/","id":142870,"name":"May"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142871/","id":142871,"name":"Mia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142872/","id":142872,"name":"Maya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142910/","id":142910,"name":"Penny Smith-Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142911/","id":142911,"name":"Benna Smith-Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142912/","id":142912,"name":"Gretta Smith-Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142956/","id":142956,"name":"Hachune Miku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142979/","id":142979,"name":"Midnight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142992/","id":142992,"name":"Mertali"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143000/","id":143000,"name":"Butterscotch Butler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143028/","id":143028,"name":"Aloysius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143029/","id":143029,"name":"Brownie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143030/","id":143030,"name":"Tinkaree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143031/","id":143031,"name":"Holda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143032/","id":143032,"name":"Madame Allbright"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143033/","id":143033,"name":"Mistress Dusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143069/","id":143069,"name":"Remorse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143092/","id":143092,"name":"Mr. Higgins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143132/","id":143132,"name":"Elder Null"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143140/","id":143140,"name":"Flog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143152/","id":143152,"name":"Amon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143158/","id":143158,"name":"Queen Lee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143235/","id":143235,"name":"Rex Roman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143249/","id":143249,"name":"Bowling Ball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143279/","id":143279,"name":"The Unliving"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143287/","id":143287,"name":"The Gorla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143308/","id":143308,"name":"Draaga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143310/","id":143310,"name":"The Soul Snatcher"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143326/","id":143326,"name":"Rakenstein's Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143358/","id":143358,"name":"Curly the Skeleton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143390/","id":143390,"name":"Mummy Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143391/","id":143391,"name":"Them! Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143392/","id":143392,"name":"Werewolf Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143396/","id":143396,"name":"La Befana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143411/","id":143411,"name":"The Breaded Boremamuu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143444/","id":143444,"name":"Chickenstein's Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143486/","id":143486,"name":"Gabriel White Tenma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143492/","id":143492,"name":"Hap Hazzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143512/","id":143512,"name":"Jellie Mae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143513/","id":143513,"name":"Mister Money"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143514/","id":143514,"name":"Torg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143515/","id":143515,"name":"Fex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143525/","id":143525,"name":"K-A N.G."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143566/","id":143566,"name":"Xxirys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143600/","id":143600,"name":"Ingrediento"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143609/","id":143609,"name":"The Concretestador"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143629/","id":143629,"name":"Slime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143650/","id":143650,"name":"Ghashnath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143651/","id":143651,"name":"Gothog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143673/","id":143673,"name":"Fushi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143678/","id":143678,"name":"The Star Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143690/","id":143690,"name":"Noah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143740/","id":143740,"name":"Bridey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143770/","id":143770,"name":"Nicodemus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143843/","id":143843,"name":"Colt Rain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144045/","id":144045,"name":"Ilaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144063/","id":144063,"name":"Dead Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144086/","id":144086,"name":"Emilia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144089/","id":144089,"name":"Rem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144090/","id":144090,"name":"Ram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144102/","id":144102,"name":"The Forgotten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144175/","id":144175,"name":"Tyrant Tooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144176/","id":144176,"name":"Graham"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144178/","id":144178,"name":"Dottie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144180/","id":144180,"name":"Meteor Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144192/","id":144192,"name":"True Tsar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144220/","id":144220,"name":"Nukadoko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144221/","id":144221,"name":"Momo Belia Deviluke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144233/","id":144233,"name":"Cthu-lou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144263/","id":144263,"name":"Polly Peachpit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144269/","id":144269,"name":"Brutalist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144271/","id":144271,"name":"50% Chad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144278/","id":144278,"name":"Dragonel, Queen of the Hornets"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144287/","id":144287,"name":"Jailer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144339/","id":144339,"name":"Gorgonus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144355/","id":144355,"name":"Clay Critter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144357/","id":144357,"name":"X'Andria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144471/","id":144471,"name":"Grael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144486/","id":144486,"name":"Goggles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144510/","id":144510,"name":"The Caretaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144526/","id":144526,"name":"Enma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144568/","id":144568,"name":"Mander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144581/","id":144581,"name":"Carol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144582/","id":144582,"name":"Noel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144583/","id":144583,"name":"Holly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144585/","id":144585,"name":"Tinselbottom The Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144587/","id":144587,"name":"Dewie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144588/","id":144588,"name":"Balsa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144589/","id":144589,"name":"Mulpy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144590/","id":144590,"name":"Grzzlrr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144591/","id":144591,"name":"Cora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144599/","id":144599,"name":"Chandler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144631/","id":144631,"name":"Petite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144634/","id":144634,"name":"Gyvv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144637/","id":144637,"name":"Lanky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144638/","id":144638,"name":"Cranky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144652/","id":144652,"name":"Turuk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144729/","id":144729,"name":"Duke Leuvis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144730/","id":144730,"name":"Lord Bayon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144753/","id":144753,"name":"The Orc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144755/","id":144755,"name":"Lisa Fernandez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144756/","id":144756,"name":"Tim Silver"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144789/","id":144789,"name":"Pinyakorata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144794/","id":144794,"name":"Montaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144888/","id":144888,"name":"Adolfo Rootless"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144954/","id":144954,"name":"Minga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144956/","id":144956,"name":"Nobuckle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144957/","id":144957,"name":"Thinbuckle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144960/","id":144960,"name":"Ginger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144961/","id":144961,"name":"Professor Kapp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144963/","id":144963,"name":"Sour Note"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144975/","id":144975,"name":"Tswana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144978/","id":144978,"name":"Tare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144990/","id":144990,"name":"Master Xandred"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145028/","id":145028,"name":"Lou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145029/","id":145029,"name":"Bud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145055/","id":145055,"name":"Abaddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145058/","id":145058,"name":"Hora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145060/","id":145060,"name":"Katsuragi Miria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145130/","id":145130,"name":"Meth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145221/","id":145221,"name":"Dallas Goat Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145222/","id":145222,"name":"Plano Goat Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145223/","id":145223,"name":"Safrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145226/","id":145226,"name":"Maddie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145228/","id":145228,"name":"Ellfen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145229/","id":145229,"name":"Wilma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145236/","id":145236,"name":"Herg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145237/","id":145237,"name":"Booger Boggins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145245/","id":145245,"name":"Menthu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145254/","id":145254,"name":"P.P. Head the III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145255/","id":145255,"name":"Squarehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145256/","id":145256,"name":"Roundhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145257/","id":145257,"name":"Matchhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145299/","id":145299,"name":"Mike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145332/","id":145332,"name":"Aurora Moonwillow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145333/","id":145333,"name":"Rory"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145357/","id":145357,"name":"Rock Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145368/","id":145368,"name":"Saltev"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145437/","id":145437,"name":"Pavos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145444/","id":145444,"name":"Higher Evolutionary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145446/","id":145446,"name":"Mrs. Dawood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145462/","id":145462,"name":"The Mantoid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145469/","id":145469,"name":"Pariah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145484/","id":145484,"name":"Wendy Blob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145485/","id":145485,"name":"Pedro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145486/","id":145486,"name":"Hank N. Stein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145495/","id":145495,"name":"Milkman Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145497/","id":145497,"name":"Negative One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145552/","id":145552,"name":"Banjo Kazuichi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145559/","id":145559,"name":"Wildstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145573/","id":145573,"name":"G.E.O."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145587/","id":145587,"name":"Monster Master"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145590/","id":145590,"name":"Kowa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145591/","id":145591,"name":"Tyr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145592/","id":145592,"name":"Pato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145593/","id":145593,"name":"Ahtan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145626/","id":145626,"name":"Dr. Eli"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145627/","id":145627,"name":"Ayato Kirishima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145629/","id":145629,"name":"Kira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145685/","id":145685,"name":"Schreckgespenst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145705/","id":145705,"name":"Gilhooley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145709/","id":145709,"name":"Roma Hoito"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145747/","id":145747,"name":"Piper Brandylock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145748/","id":145748,"name":"Gashub Brightclaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145755/","id":145755,"name":"Nowhere Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145759/","id":145759,"name":"Bakar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145760/","id":145760,"name":"Felosial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145766/","id":145766,"name":"Susie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145774/","id":145774,"name":"Serpina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145776/","id":145776,"name":"Bruno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145777/","id":145777,"name":"Sarita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145823/","id":145823,"name":"Jumpstreet Siren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145824/","id":145824,"name":"Jockbully"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145826/","id":145826,"name":"Pete"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145842/","id":145842,"name":"Velocity Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145884/","id":145884,"name":"Vengeance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145895/","id":145895,"name":"Needleman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145914/","id":145914,"name":"Scat Skellington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145917/","id":145917,"name":"Mister Finkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145958/","id":145958,"name":"Decoy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145966/","id":145966,"name":"Sid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145968/","id":145968,"name":"Urik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145982/","id":145982,"name":"Captain Zolandia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145983/","id":145983,"name":"Zola Iron Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145984/","id":145984,"name":"Zola Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145985/","id":145985,"name":"Zola Thor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145991/","id":145991,"name":"Koontz Satellite Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146021/","id":146021,"name":"Alyana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146022/","id":146022,"name":"Arran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146023/","id":146023,"name":"Scylla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146059/","id":146059,"name":"Aqualad 1000000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146069/","id":146069,"name":"Thorpe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146079/","id":146079,"name":"Emma Brightness"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146113/","id":146113,"name":"Zombie Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146138/","id":146138,"name":"Dwan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146158/","id":146158,"name":"Rammerhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146254/","id":146254,"name":"Lobstar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146310/","id":146310,"name":"Obsidian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146312/","id":146312,"name":"Rollerball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146332/","id":146332,"name":"Azetodeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146334/","id":146334,"name":"Mink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146339/","id":146339,"name":"Sssearr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146357/","id":146357,"name":"Scar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146389/","id":146389,"name":"Supernova"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146415/","id":146415,"name":"Venus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146442/","id":146442,"name":"Abraxas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146459/","id":146459,"name":"Akta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146467/","id":146467,"name":"Palanquin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146481/","id":146481,"name":"Agent Sheridan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146487/","id":146487,"name":"The Daylight Savior"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146488/","id":146488,"name":"Haunted Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146513/","id":146513,"name":"Patty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146553/","id":146553,"name":"Munch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146624/","id":146624,"name":"Scrubby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146635/","id":146635,"name":"Eebee the Evil Bong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146682/","id":146682,"name":"Count Spankulot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146683/","id":146683,"name":"Imrijka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146696/","id":146696,"name":"Miss Mech"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146705/","id":146705,"name":"Hope"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146715/","id":146715,"name":"Bizarro-Sinestro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146717/","id":146717,"name":"Bizarro-Cheetah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146719/","id":146719,"name":"Bizarro-Scarecrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146720/","id":146720,"name":"Bizarro-Riddler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146729/","id":146729,"name":"Big Shot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146730/","id":146730,"name":"Hard Line"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146741/","id":146741,"name":"Irwin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146797/","id":146797,"name":"David Amadio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146806/","id":146806,"name":"Judge Smoif"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146807/","id":146807,"name":"Chief O'Hara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146824/","id":146824,"name":"Ascendant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146863/","id":146863,"name":"Helena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146879/","id":146879,"name":"Chuck the Dwarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146913/","id":146913,"name":"Mister Smiley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146920/","id":146920,"name":"Ecclesiastes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146950/","id":146950,"name":"SI'Ur'Boroth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146967/","id":146967,"name":"Ward"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146970/","id":146970,"name":"Lizzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146992/","id":146992,"name":"Wendigo (Spirit)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147006/","id":147006,"name":"Oya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147019/","id":147019,"name":"Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147030/","id":147030,"name":"Piney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147042/","id":147042,"name":"Glori Murphy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147082/","id":147082,"name":"Aico Tachibana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147096/","id":147096,"name":"Malerik"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147100/","id":147100,"name":"Laura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147101/","id":147101,"name":"Khalek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147116/","id":147116,"name":"Chiyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147118/","id":147118,"name":"Kroel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147174/","id":147174,"name":"Pumpkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147175/","id":147175,"name":"Tanu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147407/","id":147407,"name":"Rune"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147446/","id":147446,"name":"Ember Quade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147487/","id":147487,"name":"Widow Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147495/","id":147495,"name":"Weird Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147534/","id":147534,"name":"Crimson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147552/","id":147552,"name":"Kirsten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147572/","id":147572,"name":"Cynder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147611/","id":147611,"name":"Robin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147684/","id":147684,"name":"Puzzlestick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147697/","id":147697,"name":"Lavish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147705/","id":147705,"name":"Wyrm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147876/","id":147876,"name":"Dröh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147897/","id":147897,"name":"Rhaegal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147898/","id":147898,"name":"Viserion"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147899/","id":147899,"name":"Drogon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147917/","id":147917,"name":"Skriker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147927/","id":147927,"name":"Natalia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147931/","id":147931,"name":"Baron Frankenstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147952/","id":147952,"name":"Sti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148000/","id":148000,"name":"Ciall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148007/","id":148007,"name":"Kyouko Machi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148096/","id":148096,"name":"Ajort"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148120/","id":148120,"name":"Toll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148215/","id":148215,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148217/","id":148217,"name":"Lammia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148228/","id":148228,"name":"Benhazin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148229/","id":148229,"name":"Chronologius Rex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148230/","id":148230,"name":"Bern"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148238/","id":148238,"name":"Behemoth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148241/","id":148241,"name":"Elias Ainsworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148324/","id":148324,"name":"Aquisto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148325/","id":148325,"name":"Geos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148326/","id":148326,"name":"Wini"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148327/","id":148327,"name":"Kyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148345/","id":148345,"name":"Aeristron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148353/","id":148353,"name":"Vincent Vulpes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148359/","id":148359,"name":"Jake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148360/","id":148360,"name":"Blackmouth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148361/","id":148361,"name":"Pearl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148497/","id":148497,"name":"Bad Samaritan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148529/","id":148529,"name":"Becky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148566/","id":148566,"name":"Andras"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148614/","id":148614,"name":"Hinokagutsuchi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148643/","id":148643,"name":"Bruno Roarke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148644/","id":148644,"name":"Maura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148651/","id":148651,"name":"Myth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148657/","id":148657,"name":"Bannerman Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148661/","id":148661,"name":"Ooahk Kung"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148675/","id":148675,"name":"Bestial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148724/","id":148724,"name":"Vereesa Windrunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148725/","id":148725,"name":"Alleria Windrunner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148731/","id":148731,"name":"Buth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148735/","id":148735,"name":"Tama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148736/","id":148736,"name":"Pochi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148739/","id":148739,"name":"Liza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148770/","id":148770,"name":"Cacus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148772/","id":148772,"name":"Cal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148778/","id":148778,"name":"Meme"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148819/","id":148819,"name":"Ishmael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148845/","id":148845,"name":"Siphram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148860/","id":148860,"name":"Jeff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148861/","id":148861,"name":"Carson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148862/","id":148862,"name":"Steve"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148863/","id":148863,"name":"Jason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148864/","id":148864,"name":"Shmebulock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149011/","id":149011,"name":"Leaderaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149012/","id":149012,"name":"Chutzpar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149042/","id":149042,"name":"Vespertine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149043/","id":149043,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149044/","id":149044,"name":"Portia Palkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149050/","id":149050,"name":"Djinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149068/","id":149068,"name":"Hamish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149082/","id":149082,"name":"Lotzi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149099/","id":149099,"name":"Sneaks the Goblin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149122/","id":149122,"name":"Detritus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149123/","id":149123,"name":"Petite Tina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149160/","id":149160,"name":"Lohesifi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149170/","id":149170,"name":"Gryfenfer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149171/","id":149171,"name":"Shimy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149188/","id":149188,"name":"Spencer Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149195/","id":149195,"name":"Yuzu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149196/","id":149196,"name":"Satsuki"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149203/","id":149203,"name":"Smoky Quartz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149208/","id":149208,"name":"Captain America (Doppleganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149209/","id":149209,"name":"Captiotron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149225/","id":149225,"name":"Buffalo Stu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149239/","id":149239,"name":"Chaynn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149242/","id":149242,"name":"Colossus (Doppleganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149247/","id":149247,"name":"Abby May"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149252/","id":149252,"name":"Copper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149256/","id":149256,"name":"Cyclops (Doppleganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149268/","id":149268,"name":"Thibault"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149275/","id":149275,"name":"Berrga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149290/","id":149290,"name":"Innocent Bystander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149296/","id":149296,"name":"Demi-God"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149311/","id":149311,"name":"Devil Rig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149314/","id":149314,"name":"Disprosium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149383/","id":149383,"name":"Dragon-Fist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149384/","id":149384,"name":"Drang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149517/","id":149517,"name":"Demon Bitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149527/","id":149527,"name":"Punk Taco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149541/","id":149541,"name":"Electron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149542/","id":149542,"name":"Elematrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149545/","id":149545,"name":"Emmael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149548/","id":149548,"name":"Erbium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149759/","id":149759,"name":"Too and Loo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149819/","id":149819,"name":"Edmund"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149870/","id":149870,"name":"Thomas the Tank Engine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149874/","id":149874,"name":"Toaster Face"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149931/","id":149931,"name":"Ernst"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149935/","id":149935,"name":"Esk'odin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149939/","id":149939,"name":"Faradei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149955/","id":149955,"name":"Watermelon Steven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149956/","id":149956,"name":"Felor "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149961/","id":149961,"name":"Evil Monkey Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150019/","id":150019,"name":"Fist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150021/","id":150021,"name":"Flag-Smasher (LMD)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150034/","id":150034,"name":"Manic 8-Ball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150085/","id":150085,"name":"Gabbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150129/","id":150129,"name":"Mr. Sparkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150154/","id":150154,"name":"Captain Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150181/","id":150181,"name":"Captain Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150198/","id":150198,"name":"Fraxix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150223/","id":150223,"name":"Mr. Teeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150237/","id":150237,"name":"Gambit (Doppleganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150238/","id":150238,"name":"Garft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150240/","id":150240,"name":"Gargoyle Brother One"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150245/","id":150245,"name":"Gelt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150249/","id":150249,"name":"Gar-Kuva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150254/","id":150254,"name":"Ghost Flyer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150268/","id":150268,"name":"Titan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150282/","id":150282,"name":"Glagg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150293/","id":150293,"name":"Aphony"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150305/","id":150305,"name":"Vahn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150429/","id":150429,"name":"Golem (Smoke Elves)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150431/","id":150431,"name":"Goran Maledicta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150432/","id":150432,"name":"Gorgul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150436/","id":150436,"name":"Grim Guardian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150437/","id":150437,"name":"Grog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150483/","id":150483,"name":"Crystal Cryptid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150484/","id":150484,"name":"Sir Locks-A-Lot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150508/","id":150508,"name":"Hawkeye (Doppleganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150529/","id":150529,"name":"Heno "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150541/","id":150541,"name":"Horguun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150543/","id":150543,"name":"Skye Harper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150545/","id":150545,"name":"Torchy the Battery Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150546/","id":150546,"name":"Twizzle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150548/","id":150548,"name":"Chalky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150550/","id":150550,"name":"Lopsy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150606/","id":150606,"name":"Vire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150782/","id":150782,"name":"Dora"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150785/","id":150785,"name":"Horth "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150788/","id":150788,"name":"Human Torch (Doppleganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150790/","id":150790,"name":"I'xx'II'tk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150795/","id":150795,"name":"Adamant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150799/","id":150799,"name":"Iron Man (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150801/","id":150801,"name":"Bloodraven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150803/","id":150803,"name":"Greenskyn Smash Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150813/","id":150813,"name":"Pogo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150899/","id":150899,"name":"Gillbert the Sea Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150937/","id":150937,"name":"Gri’im"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150944/","id":150944,"name":"Deathlight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150945/","id":150945,"name":"Darkwater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150948/","id":150948,"name":"Ja'Rou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150958/","id":150958,"name":"Rant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150962/","id":150962,"name":"Perrus the Benevolent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150963/","id":150963,"name":"Ms. Chloe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150968/","id":150968,"name":"Wolverine Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150986/","id":150986,"name":"Jack Grimm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150990/","id":150990,"name":"Umex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150991/","id":150991,"name":"Dan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151022/","id":151022,"name":"Uugo the Conscious Planet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151138/","id":151138,"name":"Pale Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151159/","id":151159,"name":"Jolt (Eurth)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151170/","id":151170,"name":"Sweet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151179/","id":151179,"name":"Blobby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151180/","id":151180,"name":"Wayne the Wolf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151181/","id":151181,"name":"Dennis Loughran"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151192/","id":151192,"name":"Gardt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151210/","id":151210,"name":"Sarkun'hr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151241/","id":151241,"name":"Knight Errant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151244/","id":151244,"name":"Krogg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151245/","id":151245,"name":"Nightcrawler Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151250/","id":151250,"name":"Ōgon Bat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151255/","id":151255,"name":"Gen-Omega"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151266/","id":151266,"name":"Emmet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151274/","id":151274,"name":"AAARRRGGHH!!!"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151275/","id":151275,"name":"Blinky Galadrigal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151276/","id":151276,"name":"Gunmar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151277/","id":151277,"name":"Draal the Deadly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151279/","id":151279,"name":"King Harold"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151403/","id":151403,"name":"Mighty Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151404/","id":151404,"name":"Terrible Tina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151472/","id":151472,"name":"Donga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151474/","id":151474,"name":"Chunho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151516/","id":151516,"name":"Jundo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151575/","id":151575,"name":"Ricky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151667/","id":151667,"name":"Mo Wang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151687/","id":151687,"name":"Stricklander"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151688/","id":151688,"name":"Vendel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151689/","id":151689,"name":"Kanjigar the Courageous"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151690/","id":151690,"name":"Bular the Vicious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151691/","id":151691,"name":"Bagdwella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151692/","id":151692,"name":"Nomura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151693/","id":151693,"name":"Dictatious Galadrigal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151795/","id":151795,"name":"Gou"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151796/","id":151796,"name":"Resak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151797/","id":151797,"name":"Tuya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151821/","id":151821,"name":"M'Dom Typ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151824/","id":151824,"name":"Magnesium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151831/","id":151831,"name":"Mamadou Fall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151855/","id":151855,"name":"Moon Knight Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151866/","id":151866,"name":"Algon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151934/","id":151934,"name":"Jeanie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151935/","id":151935,"name":"Hank"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151939/","id":151939,"name":"King Cone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151945/","id":151945,"name":"Michael (Man-Ape)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151980/","id":151980,"name":"Baron Draxum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151990/","id":151990,"name":"Moon Shade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151995/","id":151995,"name":"Multiple Man (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152049/","id":152049,"name":"Nickel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152060/","id":152060,"name":"Elfuda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152062/","id":152062,"name":"Northstar (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152063/","id":152063,"name":"Nova (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152065/","id":152065,"name":"Null-Set"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152076/","id":152076,"name":"Wally Tusket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152334/","id":152334,"name":"NotEnrique"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152335/","id":152335,"name":"Gnome Chompsky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152336/","id":152336,"name":"Marta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152340/","id":152340,"name":"Orto "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152341/","id":152341,"name":"Opistho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152379/","id":152379,"name":"Petit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152380/","id":152380,"name":"Aunt Desdée"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152438/","id":152438,"name":"Dippy the Dead Kid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152439/","id":152439,"name":"Lil Satan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152481/","id":152481,"name":"Leprechaun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152495/","id":152495,"name":"Puck (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152506/","id":152506,"name":"Rotjaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152507/","id":152507,"name":"Rok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152509/","id":152509,"name":"Iceman Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152546/","id":152546,"name":"The Scream"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152548/","id":152548,"name":"Kieran Valentine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152568/","id":152568,"name":"Ragnar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152569/","id":152569,"name":"Raman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152631/","id":152631,"name":"Mister Fantastic (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152656/","id":152656,"name":"Sasquatch (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152671/","id":152671,"name":"Cyclops (Clone)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152672/","id":152672,"name":"Scumtongue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152699/","id":152699,"name":"Scythe (Eurth)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152739/","id":152739,"name":"Spooky Speedster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152744/","id":152744,"name":"Yellow Toad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152745/","id":152745,"name":"Blue Toad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152750/","id":152750,"name":"Green Sprixie Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152751/","id":152751,"name":"Yellow Sprixie Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152752/","id":152752,"name":"Blue Sprixie Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152753/","id":152753,"name":"Orange Sprixie Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152755/","id":152755,"name":"Cyan Sprixie Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152756/","id":152756,"name":"Red Sprixie Princess"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152762/","id":152762,"name":"Captain Toad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152805/","id":152805,"name":"Bogel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152806/","id":152806,"name":"Weerd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152816/","id":152816,"name":"Brrronica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152828/","id":152828,"name":"Shiv"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152829/","id":152829,"name":"King Boo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152830/","id":152830,"name":"King Bob-omb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152832/","id":152832,"name":"Petey Piranha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152879/","id":152879,"name":"Smasher (Monster)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152883/","id":152883,"name":"Snarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152888/","id":152888,"name":"High-End "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152889/","id":152889,"name":"Skorch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152915/","id":152915,"name":"Sourfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152928/","id":152928,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152944/","id":152944,"name":"Springy the Springfield Spring"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152962/","id":152962,"name":"Acheri"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152968/","id":152968,"name":"Steve Rogers Clone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152969/","id":152969,"name":"Stinger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152996/","id":152996,"name":"The Plat-Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153003/","id":153003,"name":"Calchona"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153014/","id":153014,"name":"Azeman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153087/","id":153087,"name":"Rock Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153104/","id":153104,"name":"Centaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153170/","id":153170,"name":"Thermatron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153180/","id":153180,"name":"Murky Dismal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153181/","id":153181,"name":"Lurky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153195/","id":153195,"name":"Deep Dweller"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153229/","id":153229,"name":"King Crab"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153238/","id":153238,"name":"Gardener"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153247/","id":153247,"name":"Selfish Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153248/","id":153248,"name":"Cornish Ogre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153250/","id":153250,"name":"Little Dwarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153251/","id":153251,"name":"Happy Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153252/","id":153252,"name":"Remarkable Rocket"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153259/","id":153259,"name":"Io"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153268/","id":153268,"name":"Jadal the Evil Djinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153272/","id":153272,"name":"Pat O'Wiley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153274/","id":153274,"name":"Cat Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153280/","id":153280,"name":"Globby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153329/","id":153329,"name":"Count Zarko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153330/","id":153330,"name":"Vampire Foreman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153331/","id":153331,"name":"Sylvester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153376/","id":153376,"name":"Golem of Prague"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153386/","id":153386,"name":"Kurt Barlow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153388/","id":153388,"name":"Callie Maggotbone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153389/","id":153389,"name":"Randall Skeffington"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153390/","id":153390,"name":"Twayne Boneraper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153391/","id":153391,"name":"David Powers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153489/","id":153489,"name":"Chocola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153495/","id":153495,"name":"Tink"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153500/","id":153500,"name":"Spider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153752/","id":153752,"name":"Cthu-Louise"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154013/","id":154013,"name":"Bakael"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154037/","id":154037,"name":"Triton (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154038/","id":154038,"name":"Tungsten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154058/","id":154058,"name":"Utand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154100/","id":154100,"name":"Vision (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154103/","id":154103,"name":"Sprout"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154104/","id":154104,"name":"SmurfBlossom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154140/","id":154140,"name":"Wild Child (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154152/","id":154152,"name":"Wonder Man (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154153/","id":154153,"name":"Wolverine (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154207/","id":154207,"name":"Painted Xan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154241/","id":154241,"name":"Cirin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154242/","id":154242,"name":"Darkhawk (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154247/","id":154247,"name":"Naomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154268/","id":154268,"name":"Bel Dame"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154276/","id":154276,"name":"Blaast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154277/","id":154277,"name":"Krush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154278/","id":154278,"name":"Living Lightning (Doppelganger)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154292/","id":154292,"name":"Prowler (Clone)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154420/","id":154420,"name":"Siegsoldat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154494/","id":154494,"name":"Hermes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154518/","id":154518,"name":"Grundette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154522/","id":154522,"name":"Hyperia-3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154531/","id":154531,"name":"Da'an Bakslyyde"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154542/","id":154542,"name":"Urzuul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154573/","id":154573,"name":"Uncle Traveling Matt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154615/","id":154615,"name":"Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154718/","id":154718,"name":"Ephex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154723/","id":154723,"name":"Charles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154753/","id":154753,"name":"Webby-Two"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154772/","id":154772,"name":"Saviour"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154790/","id":154790,"name":"Sa'ar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154832/","id":154832,"name":"Rat Bomber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154833/","id":154833,"name":"Snowsnake"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154834/","id":154834,"name":"The Carpathian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154842/","id":154842,"name":"Madame Heap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154843/","id":154843,"name":"Junior Gorg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154846/","id":154846,"name":"Pa Gorg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154847/","id":154847,"name":"Ma Gorg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154894/","id":154894,"name":"Dolores"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154907/","id":154907,"name":"Mitra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154908/","id":154908,"name":"Tongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154909/","id":154909,"name":"Kaspar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154911/","id":154911,"name":"Majeed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154912/","id":154912,"name":"Harsooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154924/","id":154924,"name":"Creeper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154941/","id":154941,"name":"Kardum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154954/","id":154954,"name":"Nerdanus XII"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155031/","id":155031,"name":"Bludd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155043/","id":155043,"name":"Mr. Hat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155102/","id":155102,"name":"Cosmos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155115/","id":155115,"name":"Gamesman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155116/","id":155116,"name":"Sable"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155117/","id":155117,"name":"Brian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155141/","id":155141,"name":"Vanessa Held"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155142/","id":155142,"name":"Ammon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155179/","id":155179,"name":"Unit 3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155201/","id":155201,"name":"Not Me"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155204/","id":155204,"name":"Stinky Pete"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155218/","id":155218,"name":"Sherman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155255/","id":155255,"name":"Moppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155265/","id":155265,"name":"Vanitas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155282/","id":155282,"name":"Meatball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155283/","id":155283,"name":"Spaghetti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155285/","id":155285,"name":"Mukey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155315/","id":155315,"name":"Meta Crisis Doctor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155380/","id":155380,"name":"Poison"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155427/","id":155427,"name":"Kid Noize"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155433/","id":155433,"name":"Manosaur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155642/","id":155642,"name":"Chairry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155646/","id":155646,"name":"Globey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155647/","id":155647,"name":"Jambi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155771/","id":155771,"name":"Mung Daal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155772/","id":155772,"name":"Shnitzel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155773/","id":155773,"name":"Truffles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155874/","id":155874,"name":"Darkstorm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155913/","id":155913,"name":"Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155916/","id":155916,"name":"Mosco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155971/","id":155971,"name":"Acorn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156007/","id":156007,"name":"Mr. Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156174/","id":156174,"name":"Layla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156190/","id":156190,"name":"Hambo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156239/","id":156239,"name":"Banana Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156261/","id":156261,"name":"Park Avenue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156262/","id":156262,"name":"CJ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156264/","id":156264,"name":"Low Five Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156297/","id":156297,"name":"Gene"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156330/","id":156330,"name":"Bragmir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156339/","id":156339,"name":"Misan-Ha-Gorath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156356/","id":156356,"name":"Orange Hulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156359/","id":156359,"name":"Rasta "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156395/","id":156395,"name":"Allene Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156430/","id":156430,"name":"Simon Pure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156433/","id":156433,"name":"Solomon Pure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156447/","id":156447,"name":"Sherbert"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156448/","id":156448,"name":"Anne Phibian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156470/","id":156470,"name":"Fuzzizz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156488/","id":156488,"name":"Fey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156489/","id":156489,"name":"Tawny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156490/","id":156490,"name":"Temple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156507/","id":156507,"name":"Metalshark Bro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156511/","id":156511,"name":"Brewster McPunch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156526/","id":156526,"name":"Krimson Kurse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156589/","id":156589,"name":"Tarmiel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156594/","id":156594,"name":"Kasyckla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156622/","id":156622,"name":"Birdarang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156623/","id":156623,"name":"Beat Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156624/","id":156624,"name":"Fernande"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156650/","id":156650,"name":"Thrym"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156659/","id":156659,"name":"Kataw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156724/","id":156724,"name":"Countess Sinistra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156727/","id":156727,"name":"Elyra Barovna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156744/","id":156744,"name":"Mr. Game & Watch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156769/","id":156769,"name":"Kite-Eating Tree"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156790/","id":156790,"name":"Croquette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156791/","id":156791,"name":"Empanada"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156857/","id":156857,"name":"Raka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156899/","id":156899,"name":"Vicky Slime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156904/","id":156904,"name":"Sickle Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156918/","id":156918,"name":"Ghost Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156922/","id":156922,"name":"Cavo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156939/","id":156939,"name":"Ricky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156977/","id":156977,"name":"Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156978/","id":156978,"name":"Canto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156987/","id":156987,"name":"Dawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156990/","id":156990,"name":"Wolfram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157000/","id":157000,"name":"Reemul"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157009/","id":157009,"name":"Rosemarie Palewood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157027/","id":157027,"name":"The Creature"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157037/","id":157037,"name":"Khal "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157043/","id":157043,"name":"Kushuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157044/","id":157044,"name":"The Albino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157046/","id":157046,"name":"Saya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157047/","id":157047,"name":"Carol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157048/","id":157048,"name":"The Glance"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157049/","id":157049,"name":"Nicholas Jones "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157050/","id":157050,"name":"Napoleon Jones "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157052/","id":157052,"name":"Dixon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157065/","id":157065,"name":"Santaria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157068/","id":157068,"name":"Eli Paris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157071/","id":157071,"name":"Eclipse"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157109/","id":157109,"name":"Man-Thing Thang Thoom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157110/","id":157110,"name":"Bucky Wong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157112/","id":157112,"name":"M.O.R.D.OC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157115/","id":157115,"name":"Ulysses Klorb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157118/","id":157118,"name":"Cameron Belasco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157130/","id":157130,"name":"Kamala Kang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157140/","id":157140,"name":"Theo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157150/","id":157150,"name":"Jenny the Werecat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157159/","id":157159,"name":"Dylan Brock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157162/","id":157162,"name":"Drrf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157178/","id":157178,"name":"Abrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157228/","id":157228,"name":"Detective Ash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157271/","id":157271,"name":"Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157284/","id":157284,"name":"Honda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157291/","id":157291,"name":"Tibalt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157313/","id":157313,"name":"Mujika"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157336/","id":157336,"name":"Bonebreaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157338/","id":157338,"name":"Gutt Ghost"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157356/","id":157356,"name":"Nomak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157358/","id":157358,"name":"Asad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157359/","id":157359,"name":"Priest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157360/","id":157360,"name":"Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157362/","id":157362,"name":"Lighthammer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157363/","id":157363,"name":"Chupa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157364/","id":157364,"name":"Reinhardt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157365/","id":157365,"name":"Damaskinos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157451/","id":157451,"name":"Ayraak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157452/","id":157452,"name":"Yeld"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157469/","id":157469,"name":"Sir Scotiar of Blacksand"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157470/","id":157470,"name":"Sir Dahvlan the Swift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157477/","id":157477,"name":"Reporter Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157518/","id":157518,"name":"Chained Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157554/","id":157554,"name":"Punk Teen Demon Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157744/","id":157744,"name":"Angor Rot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157745/","id":157745,"name":"Queen Usurna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157748/","id":157748,"name":"Gatto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157775/","id":157775,"name":"Bioncle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157776/","id":157776,"name":"Brucale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157777/","id":157777,"name":"Crokus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157778/","id":157778,"name":"Crubius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157779/","id":157779,"name":"Magistrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157780/","id":157780,"name":"Diam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157781/","id":157781,"name":"Entrecon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157782/","id":157782,"name":"Georagle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157783/","id":157783,"name":"Gorloth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157785/","id":157785,"name":"Hoankit"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157786/","id":157786,"name":"Kilcare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157787/","id":157787,"name":"Lamag"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157788/","id":157788,"name":"Lopsal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157789/","id":157789,"name":"Neruys"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157790/","id":157790,"name":"Oysnas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157791/","id":157791,"name":"Piebrun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157792/","id":157792,"name":"Rarbekitra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157795/","id":157795,"name":"Tounum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157796/","id":157796,"name":"Tronpeleph"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157797/","id":157797,"name":"Zonnele"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157798/","id":157798,"name":"Schultz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157799/","id":157799,"name":"Psycho Jenny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157800/","id":157800,"name":"Zann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157801/","id":157801,"name":"Lord Zennon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157841/","id":157841,"name":"Rena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157842/","id":157842,"name":"Izak Orato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157868/","id":157868,"name":"Flubber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157885/","id":157885,"name":"Ted Pauley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158017/","id":158017,"name":"Zombie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158018/","id":158018,"name":"Dr. Cerebrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158102/","id":158102,"name":"Bloodhunter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158146/","id":158146,"name":"Mr. Terrible"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158147/","id":158147,"name":"Change-o Shape-o"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158148/","id":158148,"name":"Figment Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158153/","id":158153,"name":"Ghost Cat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158351/","id":158351,"name":"Red"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158352/","id":158352,"name":"Yellow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158353/","id":158353,"name":"Blue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158354/","id":158354,"name":"Green"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158355/","id":158355,"name":"Orange"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158356/","id":158356,"name":"Ms. Brown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158424/","id":158424,"name":"Father of All Worlds"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158425/","id":158425,"name":"Soul-Beast"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158478/","id":158478,"name":"Bluster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158479/","id":158479,"name":"Dibble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158494/","id":158494,"name":"Dummy Robin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158571/","id":158571,"name":"Dr. Magnuts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158580/","id":158580,"name":"Carina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158582/","id":158582,"name":"Cthulhu Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158583/","id":158583,"name":"Kyungtae Kim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158589/","id":158589,"name":"Orochi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158608/","id":158608,"name":"Pureblood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158615/","id":158615,"name":"Red Raven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158620/","id":158620,"name":"Sunfyre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158637/","id":158637,"name":"Last Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158677/","id":158677,"name":"Alexandra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158678/","id":158678,"name":"Candace"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158679/","id":158679,"name":"Simone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158889/","id":158889,"name":"Diskun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158891/","id":158891,"name":"Chao"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158895/","id":158895,"name":"Ms. Pac-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158900/","id":158900,"name":"Cap’n Oz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159313/","id":159313,"name":"Redjaw"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159342/","id":159342,"name":"Nivyx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159344/","id":159344,"name":"Glog"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159346/","id":159346,"name":"Grub"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159372/","id":159372,"name":"Blech Beard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159379/","id":159379,"name":"Fang Thang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159381/","id":159381,"name":"Shrunk Punk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159390/","id":159390,"name":"Lilith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159396/","id":159396,"name":"Touchdown Terror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159397/","id":159397,"name":"Goal Eater"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159514/","id":159514,"name":"O'Malley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159515/","id":159515,"name":"Jink-go"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159550/","id":159550,"name":"Masaru"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159566/","id":159566,"name":"Sir Daniel Fortesque"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159598/","id":159598,"name":"Varkis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159718/","id":159718,"name":"Boom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159724/","id":159724,"name":"Reese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159853/","id":159853,"name":"Frau Perchta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159854/","id":159854,"name":"Hans Trapp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159855/","id":159855,"name":"Jólakötturinn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160035/","id":160035,"name":"Entea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160046/","id":160046,"name":"Fin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160047/","id":160047,"name":"Scale"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160056/","id":160056,"name":"Wither"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160059/","id":160059,"name":"Nth Metal Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160077/","id":160077,"name":"Joe Cactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160083/","id":160083,"name":"Miss McGargoyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160097/","id":160097,"name":"Nimrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160201/","id":160201,"name":"SkekOk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160204/","id":160204,"name":"SkekZok"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160205/","id":160205,"name":"SkekMal"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160207/","id":160207,"name":"Tritannus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160208/","id":160208,"name":"Clark Osterman "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160308/","id":160308,"name":"Naia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160310/","id":160310,"name":"Maj"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160319/","id":160319,"name":"SkekShod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160321/","id":160321,"name":"Seladon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160322/","id":160322,"name":"Gurjin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160339/","id":160339,"name":"Barfinnious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160348/","id":160348,"name":"The Grad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160353/","id":160353,"name":"Hay-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160355/","id":160355,"name":"Little Green Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160357/","id":160357,"name":"Lethargic Lass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160361/","id":160361,"name":"Tavra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160362/","id":160362,"name":"Kylan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160363/","id":160363,"name":"Onica"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160364/","id":160364,"name":"UrVa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160365/","id":160365,"name":"UrGoh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160366/","id":160366,"name":"Urlm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160367/","id":160367,"name":"UrSol"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160368/","id":160368,"name":"SkekGra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160372/","id":160372,"name":"The Aztec Mummy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160374/","id":160374,"name":"Ghost Guy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160380/","id":160380,"name":"Lad of Tomorrow"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160381/","id":160381,"name":"Truckstop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160391/","id":160391,"name":"Ladfall Lethargic Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160393/","id":160393,"name":"Letharg-X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160396/","id":160396,"name":"Professor Monkeyhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160437/","id":160437,"name":"The Ultimate Weiner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160439/","id":160439,"name":"Pickle Puss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160440/","id":160440,"name":"Hangnail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160441/","id":160441,"name":"The Sponge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160443/","id":160443,"name":"Robot Monster 1000"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160466/","id":160466,"name":"UrAc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160480/","id":160480,"name":"The Ugly Blackhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160488/","id":160488,"name":"Ghost Guy 2099"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160512/","id":160512,"name":"SkekNa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160548/","id":160548,"name":"Ted"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160638/","id":160638,"name":"853rd century Lethargic Lad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160641/","id":160641,"name":"Straw Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160768/","id":160768,"name":"Varkias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160784/","id":160784,"name":"Rie Kasukabe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160793/","id":160793,"name":"El Mikamoto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160840/","id":160840,"name":"Paradox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160873/","id":160873,"name":"Eidolon "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160910/","id":160910,"name":"Minister of Blades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160940/","id":160940,"name":"Lots-o'-Huggin' Bear"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160941/","id":160941,"name":"Ducky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160942/","id":160942,"name":"Bunny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160943/","id":160943,"name":"Duke Caboom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160944/","id":160944,"name":"Giggle McDimples"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160945/","id":160945,"name":"Combat Carl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160956/","id":160956,"name":"Chuckles the Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160958/","id":160958,"name":"Forky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160959/","id":160959,"name":"Gabby Gabby"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161056/","id":161056,"name":"Caliban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161058/","id":161058,"name":"Jeepers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161059/","id":161059,"name":"Scapegoat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161060/","id":161060,"name":"Evil Eye"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161061/","id":161061,"name":"The Red Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161062/","id":161062,"name":"Mr. Merry-Go-Round"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161063/","id":161063,"name":"The Crocodile Men"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161064/","id":161064,"name":"Vespa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161065/","id":161065,"name":"Thread"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161066/","id":161066,"name":"Tusk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161077/","id":161077,"name":"Mighty Martian"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161078/","id":161078,"name":"Devil Dawg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161079/","id":161079,"name":"Vampire Vixen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161080/","id":161080,"name":"Sun Wukong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161081/","id":161081,"name":"Sha Wujing"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161086/","id":161086,"name":"Kon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161087/","id":161087,"name":"Margoth the Unliving"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161100/","id":161100,"name":"Gordon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161146/","id":161146,"name":"Ramrod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161147/","id":161147,"name":"King Cobra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161174/","id":161174,"name":"Spider-Monster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161189/","id":161189,"name":"Toth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161222/","id":161222,"name":"Ian Lightfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161223/","id":161223,"name":"Barley Lightfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161224/","id":161224,"name":"Dak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161237/","id":161237,"name":"Mayrin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161317/","id":161317,"name":"Fire Disciple"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161323/","id":161323,"name":"Groundswell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161328/","id":161328,"name":"African Tentacle Vine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161329/","id":161329,"name":"Mediterranean Poison Cornflower"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161332/","id":161332,"name":"Man-Eating Clam Plant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161343/","id":161343,"name":"Myling"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161412/","id":161412,"name":"Lili Ardat"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161430/","id":161430,"name":"The Witch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161463/","id":161463,"name":"Tengu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161492/","id":161492,"name":"Blue Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161501/","id":161501,"name":"Princess Andy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161508/","id":161508,"name":"Keldor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161509/","id":161509,"name":"Aquarus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161513/","id":161513,"name":"Raptor "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161522/","id":161522,"name":"Dr. Wade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161526/","id":161526,"name":"Cuphead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161527/","id":161527,"name":"Mugman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161529/","id":161529,"name":"Batros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161546/","id":161546,"name":"Dark Orko "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161618/","id":161618,"name":"Megator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161622/","id":161622,"name":"Prahvus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161631/","id":161631,"name":"Tytus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161644/","id":161644,"name":"War Wraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161668/","id":161668,"name":"Corporal Romeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161671/","id":161671,"name":"Ferros"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161672/","id":161672,"name":"Rachney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161677/","id":161677,"name":"Phoss"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161753/","id":161753,"name":"Lividia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161824/","id":161824,"name":"Vindicator (Clone)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162282/","id":162282,"name":"Glezke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162399/","id":162399,"name":"Ve'trock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162400/","id":162400,"name":"Phthira"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162401/","id":162401,"name":"Crematrix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162402/","id":162402,"name":"Macrothrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162455/","id":162455,"name":"Jester"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162487/","id":162487,"name":"Tula II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162508/","id":162508,"name":"Sleroku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162586/","id":162586,"name":"Belial"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162589/","id":162589,"name":"Bashiva"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162652/","id":162652,"name":"Cathal Cade"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162705/","id":162705,"name":"Phaedra Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162710/","id":162710,"name":"Metamage"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162711/","id":162711,"name":"Armageddon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162716/","id":162716,"name":"Maxixe Aquamarine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162750/","id":162750,"name":"Wynd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162755/","id":162755,"name":"She Dwarf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162819/","id":162819,"name":"Taliesin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162821/","id":162821,"name":"Lernaea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162824/","id":162824,"name":"Carolyn Bronnicke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162831/","id":162831,"name":"Neyton Finn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162835/","id":162835,"name":"Dragon of Naga"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162851/","id":162851,"name":"Bifrons"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162858/","id":162858,"name":"Manetho"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162862/","id":162862,"name":"A1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162863/","id":162863,"name":"A2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162870/","id":162870,"name":"Ha-Satan, the Grand Adversary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162951/","id":162951,"name":"Sir Varney"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163061/","id":163061,"name":"Mr. Smile"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163062/","id":163062,"name":"Mr. Sulk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163063/","id":163063,"name":"Grimlack the Troll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163064/","id":163064,"name":"Ragnor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163084/","id":163084,"name":"Kerey Khan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163135/","id":163135,"name":"Xeethra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163239/","id":163239,"name":"Child of Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163261/","id":163261,"name":"Charles Moore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163320/","id":163320,"name":"Cadiratra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163436/","id":163436,"name":"Ross Krieger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163547/","id":163547,"name":"Mistress Mordeth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163555/","id":163555,"name":"CanHaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163612/","id":163612,"name":"Ruin "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163814/","id":163814,"name":"MAL"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163873/","id":163873,"name":"SkekSa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163874/","id":163874,"name":"Dragon Lord"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164026/","id":164026,"name":"Charles"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164065/","id":164065,"name":"Chuckie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164149/","id":164149,"name":"Falco"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164150/","id":164150,"name":"Rikta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164151/","id":164151,"name":"Veratta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164152/","id":164152,"name":"Malorex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164180/","id":164180,"name":"Jerry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164182/","id":164182,"name":"Black Winter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164218/","id":164218,"name":"Hillbilly Singer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164257/","id":164257,"name":"Zeep, the Living Sponge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164325/","id":164325,"name":"Thranduil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164343/","id":164343,"name":"Ratmir"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164347/","id":164347,"name":"Vitruvian Man Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164373/","id":164373,"name":"Maria Slime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164458/","id":164458,"name":"Ramon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164493/","id":164493,"name":"Officer Big Mac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164606/","id":164606,"name":"Wonder of U"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164734/","id":164734,"name":"Antithesis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164784/","id":164784,"name":"Yeteral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164785/","id":164785,"name":"Chonchon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164786/","id":164786,"name":"Lumbricus Stein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164794/","id":164794,"name":"Akrotiri Phantom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164872/","id":164872,"name":"Ha'wea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164898/","id":164898,"name":"Sukuna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164979/","id":164979,"name":"Nudine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164980/","id":164980,"name":"Pip the Pipsqueak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165034/","id":165034,"name":"Jake Gomez"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165154/","id":165154,"name":"Ookla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165306/","id":165306,"name":"Pound"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165307/","id":165307,"name":"Blanko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165308/","id":165308,"name":"Bang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165309/","id":165309,"name":"Bupkus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165310/","id":165310,"name":"Nawt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165339/","id":165339,"name":"Batman Who Frags"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165342/","id":165342,"name":"Annihilation "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165368/","id":165368,"name":"Eugeo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165369/","id":165369,"name":"Alice Zuberg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165370/","id":165370,"name":"Quinella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165371/","id":165371,"name":"Tiese Shtolienen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165372/","id":165372,"name":"Ronye Arabel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165465/","id":165465,"name":"Manami Mitama"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165486/","id":165486,"name":"In the No"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165572/","id":165572,"name":"Grootslang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165613/","id":165613,"name":"Hellbent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165615/","id":165615,"name":"Half-Life"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165618/","id":165618,"name":"Jeannie Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165619/","id":165619,"name":"Jimmy Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165620/","id":165620,"name":"Mama Day"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165711/","id":165711,"name":"The CEO"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165712/","id":165712,"name":"The Perfect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165714/","id":165714,"name":"Veep"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165746/","id":165746,"name":"Jolly Jim Dandy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165773/","id":165773,"name":"Belle the Tinkerer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165785/","id":165785,"name":"Old Tooth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165828/","id":165828,"name":"Gabriel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165829/","id":165829,"name":"Kiron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165845/","id":165845,"name":"Talos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165846/","id":165846,"name":"Taurus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165847/","id":165847,"name":"Nashville"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165849/","id":165849,"name":"Frost King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165933/","id":165933,"name":"Kelpie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165935/","id":165935,"name":"Snakes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165956/","id":165956,"name":"Power"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166003/","id":166003,"name":"Vihn Nem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166007/","id":166007,"name":"Pilot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166018/","id":166018,"name":"Abyssal Dark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166021/","id":166021,"name":"Isidore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166029/","id":166029,"name":"Hepti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166037/","id":166037,"name":"Bongsquall"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166038/","id":166038,"name":"Ya'akov Ben Shimon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166039/","id":166039,"name":"Trigris"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166042/","id":166042,"name":"Sojobo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166047/","id":166047,"name":"Ove"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166053/","id":166053,"name":"The Mountain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166079/","id":166079,"name":"Thnita"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166117/","id":166117,"name":"Loggerhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166164/","id":166164,"name":"Klarienne the witch girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166169/","id":166169,"name":"Gyro-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166187/","id":166187,"name":"Monolith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166188/","id":166188,"name":"Plague Spawn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166255/","id":166255,"name":"Ripto"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166268/","id":166268,"name":"Motaro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166269/","id":166269,"name":"Chameleon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166272/","id":166272,"name":"Three-Eyed Jack"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166278/","id":166278,"name":"The Gorgon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166294/","id":166294,"name":"Aku Aku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166330/","id":166330,"name":"Goat the Greybeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166344/","id":166344,"name":"Murfy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166434/","id":166434,"name":"Dean Hardscrabble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166435/","id":166435,"name":"Professor Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166437/","id":166437,"name":"Squishy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166440/","id":166440,"name":"Mouth of Sauron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166465/","id":166465,"name":"Thing 1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166466/","id":166466,"name":"Thing 2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166474/","id":166474,"name":"Abominable Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166479/","id":166479,"name":"Ly the Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166493/","id":166493,"name":"Hector's Stomach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166535/","id":166535,"name":"Brain Cells"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166536/","id":166536,"name":"Calla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166537/","id":166537,"name":"Indigo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166538/","id":166538,"name":"Vruk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166539/","id":166539,"name":"Heather"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166557/","id":166557,"name":"Mindy the Mermaid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166592/","id":166592,"name":"Beathán"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166629/","id":166629,"name":"Velkan Valerious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166632/","id":166632,"name":"Mayor Augustus May-Who"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166633/","id":166633,"name":"Martha May Whovier"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166634/","id":166634,"name":"Betty Lou Who"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166635/","id":166635,"name":"Lou Lou Who"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166786/","id":166786,"name":"The Flood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166792/","id":166792,"name":"Gorilla Gregg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166794/","id":166794,"name":"Chupacabra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166889/","id":166889,"name":"Clone Commander Wolffe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166891/","id":166891,"name":"Demonseed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166956/","id":166956,"name":"Skadi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166997/","id":166997,"name":"Gnasty Gnorc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166999/","id":166999,"name":"The Sorceress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167003/","id":167003,"name":"Crush"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167004/","id":167004,"name":"Gulp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167008/","id":167008,"name":"Papa Elf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167076/","id":167076,"name":"Bob the Tomato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167077/","id":167077,"name":"Larry the Cucumber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167078/","id":167078,"name":"Pa Grape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167079/","id":167079,"name":"Archibald Asparagus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167080/","id":167080,"name":"Jimmy Gourd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167081/","id":167081,"name":"Jerry Gourd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167082/","id":167082,"name":"Jean-Claude Pea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167083/","id":167083,"name":"Phillipe Pea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167085/","id":167085,"name":"Mr. Lunt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167132/","id":167132,"name":"Goliath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167153/","id":167153,"name":"Clembrane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167165/","id":167165,"name":"Dahak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167171/","id":167171,"name":"Bramble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167172/","id":167172,"name":"Fizzure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167173/","id":167173,"name":"Flare "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167174/","id":167174,"name":"Gnash"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167178/","id":167178,"name":"Lowdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167180/","id":167180,"name":"Crackdown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167181/","id":167181,"name":"Arc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167182/","id":167182,"name":"Bass"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167183/","id":167183,"name":"Hook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167184/","id":167184,"name":"Glaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167185/","id":167185,"name":"Lava"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167186/","id":167186,"name":"Cubist"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167187/","id":167187,"name":"Belle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167188/","id":167188,"name":"Krunch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167190/","id":167190,"name":"Carmilla Vanstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167191/","id":167191,"name":"Shigure"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167197/","id":167197,"name":"Ash Clad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167213/","id":167213,"name":"Murmur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167214/","id":167214,"name":"Network"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167215/","id":167215,"name":"Ripper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167216/","id":167216,"name":"Slime"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167217/","id":167217,"name":"Spike"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167218/","id":167218,"name":"Tailspin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167219/","id":167219,"name":"T.K.O."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167220/","id":167220,"name":"Triplex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167291/","id":167291,"name":"Mister Frosty"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167292/","id":167292,"name":"Fishhead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167293/","id":167293,"name":"Shiny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167299/","id":167299,"name":"Va'lan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167357/","id":167357,"name":"Angel Dust"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167358/","id":167358,"name":"Vaggie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167359/","id":167359,"name":"Charlie Magne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167361/","id":167361,"name":"Valentino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167403/","id":167403,"name":"Angel Fish"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167409/","id":167409,"name":"Roy Mason"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167438/","id":167438,"name":"Ms. Chalice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167439/","id":167439,"name":"Elder Kettle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167441/","id":167441,"name":"King Dice"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167442/","id":167442,"name":"Goopy Le Grande"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167443/","id":167443,"name":"Sal Spudder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167444/","id":167444,"name":"Ollie Bulb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167445/","id":167445,"name":"Chauncey Chantenay"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167448/","id":167448,"name":"Hilda Berg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167449/","id":167449,"name":"Cagney Carnation"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167450/","id":167450,"name":"Baroness Von Bon Bon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167451/","id":167451,"name":"Djimmi The Great"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167452/","id":167452,"name":"Beppi The Clown"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167456/","id":167456,"name":"Cala Maria"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167461/","id":167461,"name":"Chips Bettigan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167462/","id":167462,"name":"Pip and Dot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167463/","id":167463,"name":"Mr. Wheezy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167465/","id":167465,"name":"Pirouletta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167470/","id":167470,"name":"Phil Winkelstein"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167484/","id":167484,"name":"Mongo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167487/","id":167487,"name":"Farkle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167526/","id":167526,"name":"Waddle Dee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167532/","id":167532,"name":"Gordo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167534/","id":167534,"name":"Chilly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167536/","id":167536,"name":"Kracko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167537/","id":167537,"name":"Waddle Doo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167538/","id":167538,"name":"Poppy Bros. Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167539/","id":167539,"name":"Sir Kibble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167540/","id":167540,"name":"Rocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167546/","id":167546,"name":"Burning Leo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167547/","id":167547,"name":"Knuckle Joe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167548/","id":167548,"name":"Noddy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167550/","id":167550,"name":"Plasma Wisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167551/","id":167551,"name":"Foley"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167552/","id":167552,"name":"Wheelie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167553/","id":167553,"name":"Walky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167554/","id":167554,"name":"Simirror"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167557/","id":167557,"name":"Elline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167558/","id":167558,"name":"Claycia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167560/","id":167560,"name":"Clown Acrobot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167562/","id":167562,"name":"Broom Hatter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167563/","id":167563,"name":"Tiff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167564/","id":167564,"name":"Tuff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167567/","id":167567,"name":"Nightmare"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167568/","id":167568,"name":"Chief Bookem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167569/","id":167569,"name":"Hana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167570/","id":167570,"name":"Mayor Len Blustergas"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167571/","id":167571,"name":"Sir Ebrum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167572/","id":167572,"name":"Lady Like"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167574/","id":167574,"name":"Kabula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167577/","id":167577,"name":"Bomber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167578/","id":167578,"name":"Hot Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167579/","id":167579,"name":"Pengy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167580/","id":167580,"name":"Sparky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167582/","id":167582,"name":"Togezo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167583/","id":167583,"name":"Twister"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167585/","id":167585,"name":"Kabu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167587/","id":167587,"name":"Bounder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167592/","id":167592,"name":"Dark Matter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167598/","id":167598,"name":"Iron Mam"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167599/","id":167599,"name":"Poppy Bros. Sr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167601/","id":167601,"name":"Wham Bam Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167603/","id":167603,"name":"Marx"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167607/","id":167607,"name":"Zero"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167608/","id":167608,"name":"Gryll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167609/","id":167609,"name":"Tick-Tock Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167610/","id":167610,"name":"Ribbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167613/","id":167613,"name":"King Golem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167615/","id":167615,"name":"Dark Mind"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167616/","id":167616,"name":"Bang-Bang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167617/","id":167617,"name":"Blado"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167619/","id":167619,"name":"Flamer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167621/","id":167621,"name":"Painting"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167622/","id":167622,"name":"Para Sorceress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167623/","id":167623,"name":"Snoppy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167624/","id":167624,"name":"Soarar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167625/","id":167625,"name":"Tick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167629/","id":167629,"name":"Boxy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167631/","id":167631,"name":"Big Metalun"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167632/","id":167632,"name":"Buboo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167634/","id":167634,"name":"Phan Phan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167635/","id":167635,"name":"Capsule J2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167639/","id":167639,"name":"Yin-Yarn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167644/","id":167644,"name":"Cyclod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167645/","id":167645,"name":"Uniclod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167646/","id":167646,"name":"Lady Ivy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167647/","id":167647,"name":"Necrodeus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167648/","id":167648,"name":"Beanbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167649/","id":167649,"name":"Bigger Stactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167655/","id":167655,"name":"Mummbon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167657/","id":167657,"name":"Stactus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167658/","id":167658,"name":"Blucko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167659/","id":167659,"name":"Dekofloof"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167661/","id":167661,"name":"Zombon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167663/","id":167663,"name":"Flappon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167665/","id":167665,"name":"Gobchomplin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167666/","id":167666,"name":"Grindarr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167667/","id":167667,"name":"Helmee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167669/","id":167669,"name":"Little Woods"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167670/","id":167670,"name":"Magu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167673/","id":167673,"name":"Puff"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167674/","id":167674,"name":"Skully"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167675/","id":167675,"name":"Snoozroot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167678/","id":167678,"name":"Taranza"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167680/","id":167680,"name":"Paintra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167683/","id":167683,"name":"Sportle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167684/","id":167684,"name":"Hooplagoon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167688/","id":167688,"name":"Cotta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167689/","id":167689,"name":"Bzztbulb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167690/","id":167690,"name":"Bombzway"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167691/","id":167691,"name":"Bastron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167692/","id":167692,"name":"President Haltmann"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167694/","id":167694,"name":"Dethskullk"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167734/","id":167734,"name":"Kibosh"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167799/","id":167799,"name":"Loh-ee-nah"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167834/","id":167834,"name":"Old Sharky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167865/","id":167865,"name":"Levi Kamei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167997/","id":167997,"name":"Bem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167998/","id":167998,"name":"Bela"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167999/","id":167999,"name":"Belo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168182/","id":168182,"name":"Stitch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168190/","id":168190,"name":"Dane"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168236/","id":168236,"name":"Billi Uft-Imp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168237/","id":168237,"name":"Creeoux Sharmae"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168238/","id":168238,"name":"Marmont the Stone Eyed"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168259/","id":168259,"name":"Pisellino"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168288/","id":168288,"name":"Lady Shimmering Lights"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168291/","id":168291,"name":"Attina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168292/","id":168292,"name":"Arista"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168293/","id":168293,"name":"Alana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168294/","id":168294,"name":"Adella"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168295/","id":168295,"name":"Aquata"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168296/","id":168296,"name":"Andrina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168344/","id":168344,"name":"The Instigator"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168345/","id":168345,"name":"Razorline"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168357/","id":168357,"name":"Locus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168358/","id":168358,"name":"Patient X"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168398/","id":168398,"name":"Monkey Prince"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168496/","id":168496,"name":"Kenjaku"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168620/","id":168620,"name":"Lady Nozomi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168622/","id":168622,"name":"Light Bulb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168685/","id":168685,"name":"Horse-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168733/","id":168733,"name":"Horace Radiche"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168734/","id":168734,"name":"Mac"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168735/","id":168735,"name":"Canteen Hughes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168736/","id":168736,"name":"Quint"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168737/","id":168737,"name":"Chip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168739/","id":168739,"name":"Kernel Von Pop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168740/","id":168740,"name":"Lord Gob Packer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168741/","id":168741,"name":"Muffsky Chernikov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168742/","id":168742,"name":"Sargent Gumbo Gumball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168743/","id":168743,"name":"Sir Waffington III"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168744/","id":168744,"name":"Cuppet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168747/","id":168747,"name":"Quadratus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168748/","id":168748,"name":"Ginger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168749/","id":168749,"name":"Buster"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168750/","id":168750,"name":"Lucien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168754/","id":168754,"name":"Blind Specter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168755/","id":168755,"name":"Conductor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168756/","id":168756,"name":"Lollipop Ghouls"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168757/","id":168757,"name":"Head of the Train"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168758/","id":168758,"name":"Ludwig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168759/","id":168759,"name":"Wolfgang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168762/","id":168762,"name":"Silverworth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168763/","id":168763,"name":"Ol' Ethan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168764/","id":168764,"name":"Ginette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168765/","id":168765,"name":"Rumulus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168767/","id":168767,"name":"Mangosteen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168769/","id":168769,"name":"Chef Saltbaker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168770/","id":168770,"name":"Glumstone the Giant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168818/","id":168818,"name":"Cojacaru the Skinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168823/","id":168823,"name":"Noriko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168838/","id":168838,"name":"Phillip"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168852/","id":168852,"name":"Zaha Sanko"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168904/","id":168904,"name":"Donauweibchen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168933/","id":168933,"name":"Threadneedle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168953/","id":168953,"name":"Shava Nailo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168954/","id":168954,"name":"Oskar Frostbeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168955/","id":168955,"name":"Vola"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168957/","id":168957,"name":"Feng"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168990/","id":168990,"name":"Tony Stark (A.I.)"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169053/","id":169053,"name":"Kukla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169056/","id":169056,"name":"Salami Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169080/","id":169080,"name":"Katya Belyakov"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169126/","id":169126,"name":"Ghastly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169177/","id":169177,"name":"Sylphiette"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169212/","id":169212,"name":"E"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169295/","id":169295,"name":"Muck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169297/","id":169297,"name":"Yakumo Fuuji"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169395/","id":169395,"name":"Iara"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169431/","id":169431,"name":"Mask of Dark Earth"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169465/","id":169465,"name":"Ashi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169469/","id":169469,"name":"The Omen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169498/","id":169498,"name":"Redcap"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169558/","id":169558,"name":"Assessor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169579/","id":169579,"name":"Psycho Delic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169611/","id":169611,"name":"Hole"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169675/","id":169675,"name":"Yura of the Hair"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169676/","id":169676,"name":"Mistress Centipede"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169683/","id":169683,"name":"Nothing Woman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169710/","id":169710,"name":"Monstruo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169771/","id":169771,"name":"Manten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169772/","id":169772,"name":"Hiten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169783/","id":169783,"name":"Cheese"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169842/","id":169842,"name":"Kurenai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169850/","id":169850,"name":"Reshin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169868/","id":169868,"name":"Spider Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169869/","id":169869,"name":"Urasue"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169871/","id":169871,"name":"Bonehead"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169873/","id":169873,"name":"Fishstick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169874/","id":169874,"name":"Eternal Voyager"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169906/","id":169906,"name":"Phan Tone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169910/","id":169910,"name":"Paladin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169968/","id":169968,"name":"Frylock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169969/","id":169969,"name":"Meatwad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170019/","id":170019,"name":"Osmosis Jones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170020/","id":170020,"name":"Leah Estrogen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170021/","id":170021,"name":"Thrax"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170022/","id":170022,"name":"Drix"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170023/","id":170023,"name":"Tom Colonic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170024/","id":170024,"name":"Scabies"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170026/","id":170026,"name":"Joe Cramp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170027/","id":170027,"name":"Chill the Flu Shot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170030/","id":170030,"name":"Mayor Phlegmming"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170033/","id":170033,"name":"Kidney Rock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170036/","id":170036,"name":"White Blood Cell Chief"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170037/","id":170037,"name":"Latino Germ"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170039/","id":170039,"name":"André the Black Lum"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170052/","id":170052,"name":"Cotton Candy Glob"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170079/","id":170079,"name":"Homestar Runner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170080/","id":170080,"name":"Bubs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170086/","id":170086,"name":"Strong Sad"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170087/","id":170087,"name":"Homsar"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170200/","id":170200,"name":"Frieren"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170226/","id":170226,"name":"Clint The Carrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170241/","id":170241,"name":"Dizzy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170242/","id":170242,"name":"Kookler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170243/","id":170243,"name":"Cool Spook"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170246/","id":170246,"name":"Jumper Shoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170249/","id":170249,"name":"Popon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170251/","id":170251,"name":"Blocky"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170252/","id":170252,"name":"Jukid"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170253/","id":170253,"name":"Gabon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170254/","id":170254,"name":"Madoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170340/","id":170340,"name":"Niatpac Levram"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170399/","id":170399,"name":"The Twins"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170402/","id":170402,"name":"The Architect"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170403/","id":170403,"name":"Persephone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170427/","id":170427,"name":"Shiju"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170449/","id":170449,"name":"Jericho "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170518/","id":170518,"name":"The Patchwork Girl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170545/","id":170545,"name":"Fastener"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170791/","id":170791,"name":"Malazel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170827/","id":170827,"name":"Feilong"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170934/","id":170934,"name":"Slicer Brothers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171032/","id":171032,"name":"Kuro Hito "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171033/","id":171033,"name":"Al-G Rhythm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171166/","id":171166,"name":"Mortos der Soulstealer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171245/","id":171245,"name":"Mindspinner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171246/","id":171246,"name":"Selim"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171247/","id":171247,"name":"Shift"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171371/","id":171371,"name":"Prinz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171445/","id":171445,"name":"Mr. Spell"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171447/","id":171447,"name":"Tubby the Tuba"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171449/","id":171449,"name":"Luxo, Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171453/","id":171453,"name":"Tinny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171488/","id":171488,"name":"Flashback Fairy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171499/","id":171499,"name":"Ponyo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171643/","id":171643,"name":"Dr. Bloodroot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171680/","id":171680,"name":"Droplet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171711/","id":171711,"name":"Multi-Killer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171721/","id":171721,"name":"Amoreena"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171722/","id":171722,"name":"Sulibak"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171762/","id":171762,"name":"Luca Paguro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171763/","id":171763,"name":"Alberto Scorfano"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171765/","id":171765,"name":"Corey the Manticore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171786/","id":171786,"name":"Phantom Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171805/","id":171805,"name":"Stanley the Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171817/","id":171817,"name":"Lola-La"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171824/","id":171824,"name":"Wonder-Mite"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171842/","id":171842,"name":"Master Villain"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171877/","id":171877,"name":"Ace of Hearts"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171878/","id":171878,"name":"Ace of Spades"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171879/","id":171879,"name":"Lythos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171884/","id":171884,"name":"Hostile Program"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171885/","id":171885,"name":"Black Guard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171886/","id":171886,"name":"Darkside"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171937/","id":171937,"name":"The Ghost of a Flea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171947/","id":171947,"name":"Slender Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172172/","id":172172,"name":"Battle-taur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172329/","id":172329,"name":"Wisp"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172403/","id":172403,"name":"Nightevil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172409/","id":172409,"name":"Louhi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172410/","id":172410,"name":"Cadilan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172411/","id":172411,"name":"Alva: The Dark Mistress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172412/","id":172412,"name":"Trig"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172413/","id":172413,"name":"Cyron"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172435/","id":172435,"name":"Doctor Gelsemium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172452/","id":172452,"name":"Blopper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172455/","id":172455,"name":"Floaty the Drifter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172456/","id":172456,"name":"Laser Ball"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172457/","id":172457,"name":"Sword Knight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172458/","id":172458,"name":"Sasuke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172459/","id":172459,"name":"Efreeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172460/","id":172460,"name":"Loud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172461/","id":172461,"name":"Boboo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172463/","id":172463,"name":"Mr. Tick-Tock"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172464/","id":172464,"name":"Waiu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172465/","id":172465,"name":"Cookin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172467/","id":172467,"name":"Dogon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172468/","id":172468,"name":"Mopoo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172470/","id":172470,"name":"Yaban"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172471/","id":172471,"name":"Wappa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172472/","id":172472,"name":"Boten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172473/","id":172473,"name":"Kracko Jr."},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172474/","id":172474,"name":"Faragonda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172476/","id":172476,"name":"Diana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172491/","id":172491,"name":"Jug"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172495/","id":172495,"name":"Akasha"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172518/","id":172518,"name":"Emerelda Stone"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172519/","id":172519,"name":"Tangerina Turkin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172520/","id":172520,"name":"Skylene Lavenders"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172521/","id":172521,"name":"Xanthous Hayfield"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172522/","id":172522,"name":"Rosette Meadows"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172523/","id":172523,"name":"Violetta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172524/","id":172524,"name":"Coral"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172531/","id":172531,"name":"Kitty Cheshire"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172532/","id":172532,"name":"Cedar Wood"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172544/","id":172544,"name":"Grand Pabbie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172547/","id":172547,"name":"Bumble"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172549/","id":172549,"name":"Hermey"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172550/","id":172550,"name":"Sam the Snowman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172552/","id":172552,"name":"Spotted Elephant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172553/","id":172553,"name":"Charlie-in-a-Box"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172554/","id":172554,"name":"Dolly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172571/","id":172571,"name":"Dismember"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172640/","id":172640,"name":"The Ghost of Champions"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172655/","id":172655,"name":"Madre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172656/","id":172656,"name":"Diamante"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172678/","id":172678,"name":"Remina Kanbe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172685/","id":172685,"name":"Hedera"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172740/","id":172740,"name":"Countex Oublia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172741/","id":172741,"name":"Countex Oscura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172743/","id":172743,"name":"Daphne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172744/","id":172744,"name":"Selina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172745/","id":172745,"name":"Professor Palladium"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172746/","id":172746,"name":"King Radius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172748/","id":172748,"name":"Queen Niobe"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172749/","id":172749,"name":"King Teredor"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172752/","id":172752,"name":"Nebula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172753/","id":172753,"name":"Morgana"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172798/","id":172798,"name":"Diaspro"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172865/","id":172865,"name":"OMAC II"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172879/","id":172879,"name":"Pi-Pío"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172902/","id":172902,"name":"Danielle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172905/","id":172905,"name":"Moloch"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172920/","id":172920,"name":"Anthr'll"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172957/","id":172957,"name":"A'charr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172974/","id":172974,"name":"Frank the Plant"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172989/","id":172989,"name":"Zofis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172997/","id":172997,"name":"Vesper"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173028/","id":173028,"name":"Malbaaze"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173085/","id":173085,"name":"Sour Bill"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173086/","id":173086,"name":"King Candy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173128/","id":173128,"name":"Human Firework"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173184/","id":173184,"name":"Something"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173214/","id":173214,"name":"Mr. Eloquent"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173215/","id":173215,"name":"The Electric Head"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173216/","id":173216,"name":"Orbis Extremis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173221/","id":173221,"name":"Pussyfoot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173222/","id":173222,"name":"Yuck-It-Up"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173224/","id":173224,"name":"Half-Black"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173254/","id":173254,"name":"Enkidu"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173258/","id":173258,"name":"Inspector Insector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173260/","id":173260,"name":"Erichthonios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173267/","id":173267,"name":"Grandpa Smurf"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173268/","id":173268,"name":"Mephitic"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173304/","id":173304,"name":"Howie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173320/","id":173320,"name":"Jester Lavorre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173446/","id":173446,"name":"Zola Telsa"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173480/","id":173480,"name":"Deluge"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173500/","id":173500,"name":"Eidolon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173507/","id":173507,"name":"Megalith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173530/","id":173530,"name":"Tolau the Delirious"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173542/","id":173542,"name":"Doctor Devil"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173771/","id":173771,"name":"Father Tom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173777/","id":173777,"name":"Lady Slimer"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173778/","id":173778,"name":"Mayhem"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173786/","id":173786,"name":"Rowan North"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173867/","id":173867,"name":"Alastor the Radio Demon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173868/","id":173868,"name":"Vox"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173869/","id":173869,"name":"Madame Blueberry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173870/","id":173870,"name":"Percy Pea"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173882/","id":173882,"name":"Dad Asparagus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173883/","id":173883,"name":"Mom Asparagus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173906/","id":173906,"name":"General Anderton"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173924/","id":173924,"name":"Mumbo Jumbo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173978/","id":173978,"name":"Lenny Carrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173979/","id":173979,"name":"Tom Grape"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173981/","id":173981,"name":"Petunia Rhubarb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173983/","id":173983,"name":"Gaddis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173984/","id":173984,"name":"Conach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174002/","id":174002,"name":"Wyldstyle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174003/","id":174003,"name":"Benny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174004/","id":174004,"name":"Vitruvius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174005/","id":174005,"name":"MetalBeard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174007/","id":174007,"name":"Bad Cop"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174010/","id":174010,"name":"Rex Dangervest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174014/","id":174014,"name":"Minnesota Cuke"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174015/","id":174015,"name":"Apollo Gourd"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174016/","id":174016,"name":"The Scallions"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174018/","id":174018,"name":"Scooter Carrot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174043/","id":174043,"name":"Why-Man"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174073/","id":174073,"name":"Grandpa George"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174074/","id":174074,"name":"Chog Norrius"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174109/","id":174109,"name":"The Peach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174110/","id":174110,"name":"Dr. Flurry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174157/","id":174157,"name":"Madame Null"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174329/","id":174329,"name":"Dakota"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174331/","id":174331,"name":"Cyrus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174354/","id":174354,"name":"Jibanyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174355/","id":174355,"name":"Shogunyan"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174371/","id":174371,"name":"David Buckler"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174397/","id":174397,"name":"Chirithy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174416/","id":174416,"name":"Christabella LaRoache"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174427/","id":174427,"name":"Joker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174465/","id":174465,"name":"Williams Gin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174496/","id":174496,"name":"Bomb Teen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174559/","id":174559,"name":"Garra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174586/","id":174586,"name":"Mazarin"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174608/","id":174608,"name":"Rilvakath"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174694/","id":174694,"name":"Xenon Bloom"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174741/","id":174741,"name":"Tuma"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174750/","id":174750,"name":"Quarra"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174891/","id":174891,"name":"Naenia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174943/","id":174943,"name":"Meeka"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174950/","id":174950,"name":"Lilliput King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174951/","id":174951,"name":"Lilliput Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174997/","id":174997,"name":"Kalevipoeg"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175015/","id":175015,"name":"Orlin Bar Harr"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175042/","id":175042,"name":"Sully"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175043/","id":175043,"name":"Drago"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175049/","id":175049,"name":"Eustankhios"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175051/","id":175051,"name":"Draculina"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175057/","id":175057,"name":"Armadyl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175170/","id":175170,"name":"Iselda"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175172/","id":175172,"name":"V'ger"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175174/","id":175174,"name":"Kradin Grimthorne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175177/","id":175177,"name":"Priscilla"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175178/","id":175178,"name":"Mercedes"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175187/","id":175187,"name":"Zylaven"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175235/","id":175235,"name":"Mr. Trick"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175284/","id":175284,"name":"Marion Lavorre"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175285/","id":175285,"name":"Bluud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175299/","id":175299,"name":"Vlad Drachül"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175323/","id":175323,"name":"The Oracle"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175324/","id":175324,"name":"Anne Pratt"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175326/","id":175326,"name":"Olaf the Trollgod"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175327/","id":175327,"name":"Halfrek"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175328/","id":175328,"name":"Doc"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175330/","id":175330,"name":"Gnarl"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175338/","id":175338,"name":"Phantom Dennis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175398/","id":175398,"name":"Tiger Queen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175399/","id":175399,"name":"Princess Peregrine"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175400/","id":175400,"name":"King Cockroach"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175401/","id":175401,"name":"Prince Nematode"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175435/","id":175435,"name":"Doc Scary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175436/","id":175436,"name":"Amazing Ronnie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175437/","id":175437,"name":"Hairy Larry"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175438/","id":175438,"name":"Billy the Bighead Boy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175439/","id":175439,"name":"Lizard Johnny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175440/","id":175440,"name":"Mighty Mary"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175554/","id":175554,"name":"Elfo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175595/","id":175595,"name":"Mud"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175622/","id":175622,"name":"Mark"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175652/","id":175652,"name":"Yeti"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175732/","id":175732,"name":"Troll King"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175733/","id":175733,"name":"Simon Magus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175734/","id":175734,"name":"Saturna"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175742/","id":175742,"name":"Bogman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175743/","id":175743,"name":"Aten"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175887/","id":175887,"name":"Desnoirs"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175911/","id":175911,"name":"Guardian of Forever"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175952/","id":175952,"name":"Nullifex"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176069/","id":176069,"name":"Mister Scarlet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176071/","id":176071,"name":"Etrigan the Brainiac 666"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176075/","id":176075,"name":"Dragonknight"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176082/","id":176082,"name":"King Crimson"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176123/","id":176123,"name":"Manta"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176248/","id":176248,"name":"WEB-STER"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176299/","id":176299,"name":"IRAC"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176300/","id":176300,"name":"Sardor "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176424/","id":176424,"name":"Orno"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176425/","id":176425,"name":"Griot"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176452/","id":176452,"name":"Master "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176461/","id":176461,"name":"Ida Know"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176483/","id":176483,"name":"Czesio"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176560/","id":176560,"name":"Oyabun Nakajima"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176593/","id":176593,"name":"Vanessa Z. Schneider"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176597/","id":176597,"name":"Arthur"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176615/","id":176615,"name":"Specter Collector"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176741/","id":176741,"name":"Carnivore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176943/","id":176943,"name":"Mistress Murder"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177045/","id":177045,"name":"Sweetheart"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177070/","id":177070,"name":"Luna Díaz"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177072/","id":177072,"name":"Flazzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177200/","id":177200,"name":"Tiger Barb"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177280/","id":177280,"name":"Elf-Thing "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177388/","id":177388,"name":"Trinity"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177460/","id":177460,"name":"Critias"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177600/","id":177600,"name":"Fang"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177641/","id":177641,"name":"Potato"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177684/","id":177684,"name":"Shellestriah "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177977/","id":177977,"name":"Christopher Hargreeves "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178014/","id":178014,"name":"Lyman Banner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178025/","id":178025,"name":"Tragoedia"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178135/","id":178135,"name":"Zeiste"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178143/","id":178143,"name":"Octo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178216/","id":178216,"name":"Jupiter"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178217/","id":178217,"name":"Kilgore"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178230/","id":178230,"name":"Marilyn Weathers"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178246/","id":178246,"name":"Snizzard"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178255/","id":178255,"name":"Shinto Samurai"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178266/","id":178266,"name":"Bones"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178274/","id":178274,"name":"Mr. Slumber"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178277/","id":178277,"name":"The Candle Maker"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178278/","id":178278,"name":"Camula"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178279/","id":178279,"name":"Tanya"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178280/","id":178280,"name":"Yubel"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178281/","id":178281,"name":"Bronn"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178282/","id":178282,"name":"Elemental HERO Neos"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178289/","id":178289,"name":"Shar-Pei"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178313/","id":178313,"name":"Killer Wail"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178332/","id":178332,"name":"Trueman"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178333/","id":178333,"name":"Honest"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178346/","id":178346,"name":"Almanfi"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178383/","id":178383,"name":"Stardust Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178419/","id":178419,"name":"Bruno Maroni"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178460/","id":178460,"name":"Honeysweet"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178461/","id":178461,"name":"Frido"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178465/","id":178465,"name":"Gray Sorceress"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178466/","id":178466,"name":"Breezy"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178492/","id":178492,"name":"Necro the Tattooist "},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178659/","id":178659,"name":"Anubis"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178660/","id":178660,"name":"Dragon"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178674/","id":178674,"name":"Wayne"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178675/","id":178675,"name":"Lanny"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178676/","id":178676,"name":"Magee"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178752/","id":178752,"name":"Eisen"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178754/","id":178754,"name":"Qual"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178757/","id":178757,"name":"Lügner"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178758/","id":178758,"name":"Aura"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178760/","id":178760,"name":"Linie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178761/","id":178761,"name":"Draht"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178762/","id":178762,"name":"Kraft"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178796/","id":178796,"name":"Moon Butterfly"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178797/","id":178797,"name":"Glossaryck"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178800/","id":178800,"name":"Santiago Gallo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178804/","id":178804,"name":"Broomie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178812/","id":178812,"name":"Annie"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178851/","id":178851,"name":"Wafflecus"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178862/","id":178862,"name":"Mudo"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178863/","id":178863,"name":"Lucien"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178878/","id":178878,"name":"The Arm"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178887/","id":178887,"name":"StitchWraith"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178924/","id":178924,"name":"Badgey"}],"id":9,"name":"Other","profiles":[],"site_detail_url":"https://comicvine.gamespot.com/other/4030-9/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/origin-list-item/origins.json b/samples/api-data/origin-list-item/origins.json new file mode 100644 index 0000000..332e688 --- /dev/null +++ b/samples/api-data/origin-list-item/origins.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":10,"number_of_total_results":10,"status_code":1,"results":[{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-1/","id":1,"name":"Mutant","site_detail_url":"https://comicvine.gamespot.com/mutant/4030-1/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-2/","id":2,"name":"Cyborg","site_detail_url":"https://comicvine.gamespot.com/cyborg/4030-2/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-3/","id":3,"name":"Alien","site_detail_url":"https://comicvine.gamespot.com/alien/4030-3/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-4/","id":4,"name":"Human","site_detail_url":"https://comicvine.gamespot.com/human/4030-4/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-5/","id":5,"name":"Robot","site_detail_url":"https://comicvine.gamespot.com/robot/4030-5/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-6/","id":6,"name":"Radiation","site_detail_url":"https://comicvine.gamespot.com/radiation/4030-6/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-7/","id":7,"name":"God/Eternal","site_detail_url":"https://comicvine.gamespot.com/godeternal/4030-7/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-8/","id":8,"name":"Animal","site_detail_url":"https://comicvine.gamespot.com/animal/4030-8/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-9/","id":9,"name":"Other","site_detail_url":"https://comicvine.gamespot.com/other/4030-9/"},{"api_detail_url":"https://comicvine.gamespot.com/api/origin/4030-10/","id":10,"name":"Infection","site_detail_url":"https://comicvine.gamespot.com/infection/4030-10/"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1252.json b/samples/api-data/person-details/person-4040-1252.json new file mode 100644 index 0000000..6fe73ae --- /dev/null +++ b/samples/api-data/person-details/person-4040-1252.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1252/","birth":null,"count_of_isssue_appearances":null,"country":"United States","created_characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93197/","id":93197,"name":"Erin McKillen","site_detail_url":"https://comicvine.gamespot.com/erin-mckillen/4005-93197/"}],"date_added":"2008-06-06 11:28:12","date_last_updated":"2013-05-11 04:05:55","death":null,"deck":"Michael Gray is a comic book Inker. He is best known for his frequent collaborations with artist JH Williams III on titles such as Promethea and Chase, and with artist Patrick Gleason on Batman and Robin for DC Comics. He has been nominated a few times for \"Best Inker\" at the Harvey Awards.","description":null,"email":null,"gender":1,"hometown":"Cupertino, CA","id":1252,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/386202-80098-mick-gray.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/386202-80098-mick-gray.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/386202-80098-mick-gray.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/386202-80098-mick-gray.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/386202-80098-mick-gray.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/386202-80098-mick-gray.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/386202-80098-mick-gray.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/386202-80098-mick-gray.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/386202-80098-mick-gray.jpg","image_tags":"All Images,Mick"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1097753/","id":1097753,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-1097753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1048371/","id":1048371,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-1048371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1044356/","id":1044356,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/pete-townshends-life-house-1-hc/4000-1044356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1038299/","id":1038299,"name":null,"site_detail_url":"https://comicvine.gamespot.com/special-strange-6/4000-1038299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-922422/","id":922422,"name":"¡Mundos salvados!; ¡El mundo del caballero!; El mundo del mañana","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-el-archivo-de-mundos-6-mundos-salva/4000-922422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-960763/","id":960763,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-the-archive-of-worlds-1-hc/4000-960763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882788/","id":882788,"name":"The World of the Knight!; The World of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-2021-annual-1-the-world-of-the-knig/4000-882788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-899014/","id":899014,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-liberty-brigade-1/4000-899014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902195/","id":902195,"name":"Pequeñas Maravillas; Concéntrate; Noche de juegos","site_detail_url":"https://comicvine.gamespot.com/la-guerra-del-joker-6-pequenas-maravillas-concentr/4000-902195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897467/","id":897467,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dc-celebration-catwoman-1/4000-897467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826304/","id":826304,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dc-universe-doug-mahnke-1-hc/4000-826304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821728/","id":821728,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-3-book-t/4000-821728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819323/","id":819323,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition-1-hc/4000-819323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818619/","id":818619,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/underworld-unleashed-the-25th-anniversary-edition-/4000-818619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768243/","id":768243,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/joker-the-deluxe-edition-1-hc/4000-768243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766104/","id":766104,"name":null,"site_detail_url":"https://comicvine.gamespot.com/catwoman-80th-anniversary-100-page-super-spectacul/4000-766104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731663/","id":731663,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-2-book-t/4000-731663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730190/","id":730190,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-deluxe-edition-1-hc/4000-730190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889375/","id":889375,"name":"Der Tod der Familie (Teil 2)","site_detail_url":"https://comicvine.gamespot.com/batman-graphic-novel-collection-24-der-tod-der-fam/4000-889375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714166/","id":714166,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-13/4000-714166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-710050/","id":710050,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dog-days-of-summer-1/4000-710050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705907/","id":705907,"name":"Giants War Finale","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-68-giants-war-finale/4000-705907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703040/","id":703040,"name":"Giants War Part 1","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-66-giants-war-part-1/4000-703040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704777/","id":704777,"name":"Blow Out","site_detail_url":"https://comicvine.gamespot.com/batgirl-33-blow-out/4000-704777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704800/","id":704800,"name":"Giants War Part 2","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-67-giants-war-part-2/4000-704800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702448/","id":702448,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-1-book-o/4000-702448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694899/","id":694899,"name":"The Just War Part III","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-60-the-just-war-part-iii/4000-694899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692055/","id":692055,"name":"The Just War Part I","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-58-the-just-war-part-i/4000-692055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693452/","id":693452,"name":"The Just War Part II","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-59-the-just-war-part-ii/4000-693452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694223/","id":694223,"name":null,"site_detail_url":"https://comicvine.gamespot.com/worlds-greatest-super-heroes-holiday-special-1/4000-694223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695619/","id":695619,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/super-sons-omnibus-1-hc/4000-695619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691347/","id":691347,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-bad-blood-dc-essential-edition-1-/4000-691347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-925338/","id":925338,"name":"Enfants des Dieux","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-rebirth-5-enfants-des-dieux/4000-925338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680712/","id":680712,"name":"For the Wicked, No Rest","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-annual-1-for-the-wicked-no-rest/4000-680712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676680/","id":676680,"name":"Constriction Conclusion","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-44-constriction-conclusion/4000-676680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672268/","id":672268,"name":"Call of the Unknown: Part One - Punch First","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-1-call-of-the-unknown-part-one-punc/4000-672268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1014628/","id":1014628,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aquaman-sub-diego-1/4000-1014628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671309/","id":671309,"name":"Part One: From This Day Forward","site_detail_url":"https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4000-671309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667624/","id":667624,"name":"Mind Over Matter","site_detail_url":"https://comicvine.gamespot.com/titans-annual-2-mind-over-matter/4000-667624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658701/","id":658701,"name":"Superhuman Trafficking Part One","site_detail_url":"https://comicvine.gamespot.com/green-lanterns-40-superhuman-trafficking-part-one/4000-658701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660634/","id":660634,"name":"Superhuman Trafficking Part Two","site_detail_url":"https://comicvine.gamespot.com/green-lanterns-41-superhuman-trafficking-part-two/4000-660634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661134/","id":661134,"name":"Amazons Attacked Part One","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-41-amazons-attacked-part-one/4000-661134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652599/","id":652599,"name":"Twilight of the Guardians Conclusion: What We Leave Behind","site_detail_url":"https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps-36-twilight/4000-652599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663593/","id":663593,"name":"Volume 0","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-reunion-1-volume-0/4000-663593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649701/","id":649701,"name":"A Cold Day In Hell Part Two","site_detail_url":"https://comicvine.gamespot.com/the-flash-37-a-cold-day-in-hell-part-two/4000-649701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636361/","id":636361,"name":"The World Stops Part 2: The Fall of Troy","site_detail_url":"https://comicvine.gamespot.com/titans-17-the-world-stops-part-2-the-fall-of-troy/4000-636361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636365/","id":636365,"name":"Children of the Gods Part 3","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-34-children-of-the-gods-part-3/4000-636365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626261/","id":626261,"name":"Legacy Part Five","site_detail_url":"https://comicvine.gamespot.com/justice-league-30-legacy-part-five/4000-626261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636335/","id":636335,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-636335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643020/","id":643020,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/superman-black-dawn-1-volume-4/4000-643020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609285/","id":609285,"name":"Son of Superman Part One","site_detail_url":"https://comicvine.gamespot.com/dc-justice-league-essentials-superman-1-son-of-sup/4000-609285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621601/","id":621601,"name":"Reborn","site_detail_url":"https://comicvine.gamespot.com/superman-reborn-1-reborn/4000-621601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625293/","id":625293,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/superman-rebirth-deluxe-edition-1-book-1/4000-625293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599849/","id":599849,"name":"Black Dawn Chapter 5","site_detail_url":"https://comicvine.gamespot.com/superman-24-black-dawn-chapter-5/4000-599849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603105/","id":603105,"name":"Black Dawn Chapter 6: Fade To Black","site_detail_url":"https://comicvine.gamespot.com/superman-25-black-dawn-chapter-6-fade-to-black/4000-603105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611986/","id":611986,"name":"Multiplicity ","site_detail_url":"https://comicvine.gamespot.com/superman-multiplicity-1-multiplicity/4000-611986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613733/","id":613733,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-clayface-1-tpb/4000-613733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672545/","id":672545,"name":"Super-Söhne","site_detail_url":"https://comicvine.gamespot.com/superman-sonderband-2-super-sohne/4000-672545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590782/","id":590782,"name":"Black Dawn Chapter 1","site_detail_url":"https://comicvine.gamespot.com/superman-20-black-dawn-chapter-1/4000-590782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592580/","id":592580,"name":"Black Dawn Chapter 2","site_detail_url":"https://comicvine.gamespot.com/superman-21-black-dawn-chapter-2/4000-592580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583707/","id":583707,"name":"Superman: Reborn Part 1","site_detail_url":"https://comicvine.gamespot.com/superman-18-superman-reborn-part-1/4000-583707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587394/","id":587394,"name":"Superman: Reborn Part 3: Don't Pass Go","site_detail_url":"https://comicvine.gamespot.com/superman-19-superman-reborn-part-3-dont-pass-go/4000-587394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672544/","id":672544,"name":"Volumen 1","site_detail_url":"https://comicvine.gamespot.com/superman-sonderband-1-volumen-1/4000-672544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590783/","id":590783,"name":"Trials of the Super Son","site_detail_url":"https://comicvine.gamespot.com/superman-trials-of-the-super-son-1-trials-of-the-s/4000-590783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574854/","id":574854,"name":"Multiplicity Part 1","site_detail_url":"https://comicvine.gamespot.com/superman-14-multiplicity-part-1/4000-574854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670633/","id":670633,"name":null,"site_detail_url":"https://comicvine.gamespot.com/robin-der-sohn-des-dunklen-ritters-2/4000-670633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556460/","id":556460,"name":"In the Name of the Father: World's Smallest Part 1","site_detail_url":"https://comicvine.gamespot.com/superman-10-in-the-name-of-the-father-worlds-small/4000-556460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558402/","id":558402,"name":"In the Name of the Father: World's Smallest Part 2","site_detail_url":"https://comicvine.gamespot.com/superman-11-in-the-name-of-the-father-worlds-small/4000-558402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574855/","id":574855,"name":"Son of Superman","site_detail_url":"https://comicvine.gamespot.com/superman-son-of-superman-1-son-of-superman/4000-574855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548567/","id":548567,"name":"Son of Superman Part Six","site_detail_url":"https://comicvine.gamespot.com/superman-6-son-of-superman-part-six/4000-548567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550337/","id":550337,"name":"Our Town","site_detail_url":"https://comicvine.gamespot.com/superman-7-our-town/4000-550337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542602/","id":542602,"name":"The Death and Life of Oliver Queen Part Four: Burn Your Bridges","site_detail_url":"https://comicvine.gamespot.com/green-arrow-4-the-death-and-life-of-oliver-queen-p/4000-542602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542613/","id":542613,"name":"Son of Superman Part Four","site_detail_url":"https://comicvine.gamespot.com/superman-4-son-of-superman-part-four/4000-542613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544972/","id":544972,"name":"Son of Superman Part Five","site_detail_url":"https://comicvine.gamespot.com/superman-5-son-of-superman-part-five/4000-544972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920230/","id":920230,"name":null,"site_detail_url":"https://comicvine.gamespot.com/robinhijo-de-batman-2/4000-920230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538494/","id":538494,"name":"Son of Superman Part Two","site_detail_url":"https://comicvine.gamespot.com/superman-2-son-of-superman-part-two/4000-538494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540058/","id":540058,"name":"Son of Superman Part Three","site_detail_url":"https://comicvine.gamespot.com/superman-3-son-of-superman-part-three/4000-540058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548563/","id":548563,"name":"Volume 2: Dawn of the Demons","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-2-volume-2-dawn-of-the-demons/4000-548563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535341/","id":535341,"name":"Son of Superman Part One","site_detail_url":"https://comicvine.gamespot.com/superman-1-son-of-superman-part-one/4000-535341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537209/","id":537209,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-killer-croc-1-tpb/4000-537209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520182/","id":520182,"name":"Son Is Rising","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-10-son-is-rising/4000-520182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920229/","id":920229,"name":null,"site_detail_url":"https://comicvine.gamespot.com/robinhijo-de-batman-1/4000-920229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514417/","id":514417,"name":"Harmed and Dangerous Part Two","site_detail_url":"https://comicvine.gamespot.com/red-hoodarsenal-9-harmed-and-dangerous-part-two/4000-514417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516064/","id":516064,"name":"Better Angels","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-9-better-angels/4000-516064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517120/","id":517120,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-essentials-batman-and-robin-1/4000-517120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511496/","id":511496,"name":"Heart of Ice","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-8-heart-of-ice/4000-511496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521313/","id":521313,"name":"Volume 1: Year of Blood","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-1-volume-1-year-of-blood/4000-521313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508873/","id":508873,"name":"Robin War Part 5: Fight the Nightmare","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-7-robin-war-part-5-fight-the-n/4000-508873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506636/","id":506636,"name":"Year of Blood Part Six","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-6-year-of-blood-part-six/4000-506636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504323/","id":504323,"name":"Year of Blood, Part Five","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-5-year-of-blood-part-five/4000-504323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893237/","id":893237,"name":"Superpoder: Vuela, Robin, vuela; Superpoder: Chico maravilla; Superpoder: El dúo dinámico; Programa espacial","site_detail_url":"https://comicvine.gamespot.com/batman-y-robin-12-superpoder-vuela-robin-vuela-sup/4000-893237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500276/","id":500276,"name":"Year of Blood, Part Four","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-4-year-of-blood-part-four/4000-500276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506138/","id":506138,"name":"Volume 7: Robin Rises","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-7-volume-7-robin-rises/4000-506138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497922/","id":497922,"name":"Year of Blood, Part Three","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-3-year-of-blood-part-three/4000-497922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-963039/","id":963039,"name":"Année Cinq","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-5-annee-cinq/4000-963039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495256/","id":495256,"name":"Year of Blood, Part Two","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-2-year-of-blood-part-two/4000-495256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492165/","id":492165,"name":"Year of Blood, Part One","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-1-year-of-blood-part-one/4000-492165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893236/","id":893236,"name":"Robin resurge: Caos; Robin resurge: Hijo de un agujero negro; Robin resurge: Alfa","site_detail_url":"https://comicvine.gamespot.com/batman-y-robin-11-robin-resurge-caos-robin-resurge/4000-893236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493026/","id":493026,"name":"Volume 6: The Hunt For Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-6-volume-6-the-hunt-for-robin/4000-493026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483299/","id":483299,"name":"Superpower - The Dynamic Duo","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-40-superpower-the-dynamic-duo/4000-483299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489252/","id":489252,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman-1/4000-489252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479927/","id":479927,"name":"Superpower - Boy Wonder","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-39-superpower-boy-wonder/4000-479927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893235/","id":893235,"name":"Robin resurge: Omega; Robin resurge: Justicia fría; Robin resurge: Lazos de unión; Robin resurge: Al infierno","site_detail_url":"https://comicvine.gamespot.com/batman-y-robin-10-robin-resurge-omega-robin-resurg/4000-893235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497777/","id":497777,"name":"Die Jago Nach Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-6-die-jago-nach-robin/4000-497777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476739/","id":476739,"name":"Superpower - Fly Robin, Fly","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-38-superpower-fly-robin-fly/4000-476739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473583/","id":473583,"name":"Robin Rises, Part Five: Black Hole Son","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-37-robin-rises-part-five-black-ho/4000-473583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470365/","id":470365,"name":"Robin Rises Part Four: Chaos","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-36-robin-rises-part-four-chaos/4000-470365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468016/","id":468016,"name":"Robin Rises Part Three: Hellbound","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-35-robin-rises-part-three-hellbou/4000-468016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473618/","id":473618,"name":"Volume 5: The Big Burn","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-5-volume-5-the-big-burn/4000-473618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465789/","id":465789,"name":"Brothers in Arms","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-futures-end-1-brothers-in-arms/4000-465789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462846/","id":462846,"name":"Robin Rises Part Two: Ties That Bind","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-34-robin-rises-part-two-ties-that/4000-462846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460260/","id":460260,"name":"Robin Rises, Part One: Cold Justice","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-33-robin-rises-part-one-cold-just/4000-460260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456496/","id":456496,"name":"The Hunt for Robin: Dark of the Son","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-32-the-hunt-for-robin-dark-of-the/4000-456496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453354/","id":453354,"name":"The Hunt for Robin: City of Cold","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-31-the-hunt-for-robin-city-of-col/4000-453354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459664/","id":459664,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-batman-j-h-williams-iii-1-hc/4000-459664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450511/","id":450511,"name":"The Hunt for Robin: Paradise and Wonder","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-30-the-hunt-for-robin-paradise-an/4000-450511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455469/","id":455469,"name":"Volume 4: Requiem For Damian","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-4-volume-4-requiem-for-damian/4000-455469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447948/","id":447948,"name":"The Hunt for Robin: Devil and the Deep Blue Sea","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-29-the-hunt-for-robin-devil-and-t/4000-447948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445763/","id":445763,"name":"The Big Burn: Inferno","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-28-the-big-burn-inferno/4000-445763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442870/","id":442870,"name":"The Big Burn: Ablaze","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-27-the-big-burn-ablaze/4000-442870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443938/","id":443938,"name":"Batman and Robin: Week One","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-annual-2-batman-and-robin-week-on/4000-443938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443940/","id":443940,"name":"Book Four: Full Circle","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman-4-book-four-full-circle/4000-443940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437417/","id":437417,"name":"The Big Burn: Ignition","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-26-the-big-burn-ignition/4000-437417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433786/","id":433786,"name":"The Big Burn: Sparks","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-25-the-big-burn-sparks/4000-433786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428251/","id":428251,"name":"Batman Death March","site_detail_url":"https://comicvine.gamespot.com/forever-evil-arkham-war-1-batman-death-march/4000-428251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436184/","id":436184,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus-1-hc/4000-436184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503333/","id":503333,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-18/4000-503333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428823/","id":428823,"name":"The Big Burn: First Strike","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-24-the-big-burn-first-strike/4000-428823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425893/","id":425893,"name":"The Demon's Tower","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-23-3-the-demon-s-tower/4000-425893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426806/","id":426806,"name":"Blood in the Water","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-23-4-blood-in-the-water/4000-426806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435038/","id":435038,"name":"Volume 3: Death of the Family","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-3-volume-3-death-of-the-family/4000-435038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446882/","id":446882,"name":"Jokers Todesspiel","site_detail_url":"https://comicvine.gamespot.com/batman-robin-3-jokers-todesspiel/4000-446882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424494/","id":424494,"name":"A Rising Star of Red!","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight-23-1-a-rising-star-of-red/4000-424494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424985/","id":424985,"name":"Exquisite Dread","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-23-2-exquisite-dread/4000-424985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423635/","id":423635,"name":"Split Screen","site_detail_url":"https://comicvine.gamespot.com/batman-superman-3-split-screen/4000-423635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422432/","id":422432,"name":"Acceptance","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-23-acceptance/4000-422432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417791/","id":417791,"name":"Despair","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-22-despair/4000-417791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411784/","id":411784,"name":"The Bargain","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-21-the-bargain/4000-411784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401171/","id":401171,"name":"Rage","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-20-rage/4000-401171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396588/","id":396588,"name":"Denial","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-19-denial/4000-396588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408981/","id":408981,"name":"Volume 2: Pearl","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-2-volume-2-pearl/4000-408981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392309/","id":392309,"name":"Undone","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-18-undone/4000-392309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386089/","id":386089,"name":"Life is But a Dream","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-17-life-is-but-a-dream/4000-386089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403280/","id":403280,"name":"Terminus","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-2-terminus/4000-403280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380317/","id":380317,"name":"Cast a Giant Shadow","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-16-cast-a-giant-shadow/4000-380317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395491/","id":395491,"name":"Batman: Night of the Owls","site_detail_url":"https://comicvine.gamespot.com/dc-definitive-edition-1301-batman-night-of-the-owl/4000-395491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372335/","id":372335,"name":"Little Big Man","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-15-little-big-man/4000-372335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387249/","id":387249,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-after-the-fire-deluxe-edition-1-hc/4000-387249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419929/","id":419929,"name":"¡La Guerra de los Robins!","site_detail_url":"https://comicvine.gamespot.com/batman-y-robin-3-la-guerra-de-los-robins/4000-419929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367687/","id":367687,"name":"Devoured","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-14-devoured/4000-367687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360792/","id":360792,"name":"Eclipsed","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-13-eclipsed/4000-360792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-374635/","id":374635,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/dc-absolute-edition-2-brightest-day/4000-374635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356720/","id":356720,"name":"Someday Never Comes","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-0-someday-never-comes/4000-356720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403279/","id":403279,"name":"Geboren zum Töten","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-1-geboren-zum-toten/4000-403279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349622/","id":349622,"name":"Terminus Last Gasp","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-12-terminus-last-gasp/4000-349622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419928/","id":419928,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-y-robin-2/4000-419928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345343/","id":345343,"name":"Terminus Branded","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-11-terminus-branded/4000-345343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340149/","id":340149,"name":"Terminus, Scar of the Bat","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-10-terminus-scar-of-the-bat/4000-340149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344164/","id":344164,"name":"Volume 1: Born to Kill","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-1-volume-1-born-to-kill/4000-344164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335018/","id":335018,"name":"Robin Hears a Hoo","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-9-robin-hears-a-hoo/4000-335018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329215/","id":329215,"name":"Born to Kill: Black Dawn","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-8-born-to-kill-black-dawn/4000-329215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343072/","id":343072,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-y-robin-1/4000-343072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321188/","id":321188,"name":"Driven","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-7-driven/4000-321188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314711/","id":314711,"name":"The Real Me","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-6-the-real-me/4000-314711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310553/","id":310553,"name":"Mutineer","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-5-mutineer/4000-310553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306480/","id":306480,"name":"Matter of Trust","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-4-matter-of-trust/4000-306480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326658/","id":326658,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hawkman-omnibus-by-geoff-johns-1-vol-1/4000-326658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350269/","id":350269,"name":"Volume 2: Starring The Hawk And The Dove","site_detail_url":"https://comicvine.gamespot.com/steve-ditko-omnibus-2-volume-2-starring-the-hawk-a/4000-350269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356426/","id":356426,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-1-tpb/4000-356426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301535/","id":301535,"name":"Knightmoves","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-3-knightmoves/4000-301535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313102/","id":313102,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-dark-knight-vs-white-knight-1-vol/4000-313102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313241/","id":313241,"name":"Chase TPB","site_detail_url":"https://comicvine.gamespot.com/chase-1-chase-tpb/4000-313241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294840/","id":294840,"name":"Bad Blood","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-2-bad-blood/4000-294840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292562/","id":292562,"name":"Born to Kill","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-1-born-to-kill/4000-292562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309982/","id":309982,"name":"Vol. 11","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-bury-me-in-hell-1-vol-11/4000-309982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309378/","id":309378,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-movie-prequels-1-tpb/4000-309378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283920/","id":283920,"name":"Weird Western","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-70-weird-western/4000-283920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286176/","id":286176,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/brightest-day-3-volume-3/4000-286176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270254/","id":270254,"name":"100-Page Spectacular","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-son-of-superman-1-100-page-spec/4000-270254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274516/","id":274516,"name":"A Small Unremarkable Planet","site_detail_url":"https://comicvine.gamespot.com/green-lantern-movie-prequel-abin-sur-1-a-small-unr/4000-274516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268723/","id":268723,"name":"War of the Green Lanterns, Part Four","site_detail_url":"https://comicvine.gamespot.com/green-lantern-65-war-of-the-green-lanterns-part-fo/4000-268723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268212/","id":268212,"name":"Dark Knight vs. White Knight: Tree of Blood, Conclusion","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-22-dark-knight-vs-white-knight-tr/4000-268212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268974/","id":268974,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/brightest-day-24-brightest-day/4000-268974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475037/","id":475037,"name":"","site_detail_url":"https://comicvine.gamespot.com/starman-2/4000-475037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265495/","id":265495,"name":"Dark Knight vs. White Knight, Part 2 of 3: Tree of Blood","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-21-dark-knight-vs-white-knight-pa/4000-265495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261127/","id":261127,"name":"Dark Knight vs. White Knight, Part 1 of 3: Tree of Blood","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-20-dark-knight-vs-white-knight-pa/4000-261127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263849/","id":263849,"name":"DC Comics Presents: Batman Conspiracy","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-batman-conspiracy-1-dc-comics-p/4000-263849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264821/","id":264821,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/brightest-day-2-volume-2/4000-264821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247373/","id":247373,"name":"Whatever Happened to the Manhunter from Mars?","site_detail_url":"https://comicvine.gamespot.com/brightest-day-15-whatever-happened-to-the-manhunte/4000-247373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250640/","id":250640,"name":"All the Rage, Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/batman-annual-28-all-the-rage-part-two-of-two/4000-250640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259584/","id":259584,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-the-deluxe-editio/4000-259584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313305/","id":313305,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-2-volume-two/4000-313305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241081/","id":241081,"name":"DC Comics Presents: Chase","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-chase-1-dc-comics-presents-chas/4000-241081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246719/","id":246719,"name":"Of Friends & Enemies","site_detail_url":"https://comicvine.gamespot.com/the-outsiders-34-of-friends-enemies/4000-246719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300603/","id":300603,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/outsiders-the-great-divide-1-vol-6/4000-300603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239026/","id":239026,"name":"All This Useless Beauty","site_detail_url":"https://comicvine.gamespot.com/brightest-day-12-all-this-useless-beauty/4000-239026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238432/","id":238432,"name":"DC Comics Presents: Brightest Day 100-Page Spectacular #1","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-brightest-day-1-dc-comics-prese/4000-238432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238131/","id":238131,"name":"Masquerade","site_detail_url":"https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-5-masquerade/4000-238131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240418/","id":240418,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/luthor-1-tpb/4000-240418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218193/","id":218193,"name":"Absolute Promethea Vol. 2","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea-2-absolute-promethea-vol-2/4000-218193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219973/","id":219973,"name":"Operation: Gunslinger, Part 3: Never Say Die; The Fox","site_detail_url":"https://comicvine.gamespot.com/the-shield-10-operation-gunslinger-part-3-never-sa/4000-219973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213925/","id":213925,"name":"Operation: Gunslinger; The Fox, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-shield-9-operation-gunslinger-the-fox-part-3/4000-213925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301846/","id":301846,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-one/4000-301846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201389/","id":201389,"name":"Operation Gunslinger, Part 1: Down Range; The Fox, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-shield-7-operation-gunslinger-part-1-down-rang/4000-201389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249411/","id":249411,"name":"Absolute Green Lantern: Rebirth","site_detail_url":"https://comicvine.gamespot.com/absolute-green-lantern-rebirth-1-absolute-green-la/4000-249411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196846/","id":196846,"name":"Rockets Red Glare Ghost part 3; Seeking Heat, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/the-shield-6-rockets-red-glare-ghost-part-3-seekin/4000-196846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192697/","id":192697,"name":"Jungle Warfare: Ghosts, Part 2; Seeking Heat, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/the-shield-5-jungle-warfare-ghosts-part-2-seeking-/4000-192697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300928/","id":300928,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-dance-1-tpb/4000-300928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182945/","id":182945,"name":"Hearts & Minds Kicking Down the Door part 3; Second Feature:Inferno-Burning Inside part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/the-shield-3-hearts-minds-kicking-down-the-door-pa/4000-182945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300929/","id":300929,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-escape-1-tpb/4000-300929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176276/","id":176276,"name":"Kicking Down The Door, Part 2: Alpha Dogs; Burning Inside, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-shield-2-kicking-down-the-door-part-2-alpha-do/4000-176276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252454/","id":252454,"name":"The Wrath","site_detail_url":"https://comicvine.gamespot.com/batman-the-wrath-1-the-wrath/4000-252454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170795/","id":170795,"name":"Kicking Down The Door, Part 1; Burning Inside, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-shield-1-kicking-down-the-door-part-1-burning-/4000-170795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164166/","id":164166,"name":"Breaking Peace","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-escape-3-breaking-peace/4000-164166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218192/","id":218192,"name":"Absolute Promethea Vol. 1","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea-1-absolute-promethea-vol-1/4000-218192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159767/","id":159767,"name":"Part 2: Pawns","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-escape-2-part-2-pawns/4000-159767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157517/","id":157517,"name":"Part 1: The Electric City","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-escape-1-part-1-the-electri/4000-157517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157822/","id":157822,"name":"This Is How We Do It","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-dance-1-this-is-how-we-do-i/4000-157822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198686/","id":198686,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-wars-omnibus-menace-revealed-1-tpb/4000-198686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318459/","id":318459,"name":"A League of Their Own","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own-1-a-/4000-318459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259636/","id":259636,"name":"Thy Kingdom Come: Part Three","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-3-thy-/4000-259636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150537/","id":150537,"name":"Compound Fracture","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-annual-3-compound-fracture/4000-150537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236760/","id":236760,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/starman-omnibus-2-vol-2/4000-236760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142001/","id":142001,"name":"Stars In Your Eyes, Part 2","site_detail_url":"https://comicvine.gamespot.com/booster-gold-14-stars-in-your-eyes-part-2/4000-142001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172977/","id":172977,"name":"Secret Invasion: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-secret-invasion-f/4000-172977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189473/","id":189473,"name":"The Real Me","site_detail_url":"https://comicvine.gamespot.com/jsa-kingdom-come-special-magog-1-the-real-me/4000-189473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189475/","id":189475,"name":"The Kingdom","site_detail_url":"https://comicvine.gamespot.com/jsa-kingdom-come-special-the-kingdom-1-the-kingdom/4000-189475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259635/","id":259635,"name":"Thy Kingdom Come: Part Two","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-2-thy-/4000-259635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140479/","id":140479,"name":"Stars In Your Eyes, Part 1","site_detail_url":"https://comicvine.gamespot.com/booster-gold-13-stars-in-your-eyes-part-1/4000-140479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136524/","id":136524,"name":"One World, Under Gog Part III: War Lords","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-18-one-world-under-gog-/4000-136524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141427/","id":141427,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/joker-1-hcsc/4000-141427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134595/","id":134595,"name":"No one gets back alive! Part 3: Escape from Fantasy Island","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four-3-no-one-gets-back-/4000-134595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131504/","id":131504,"name":"No one gets back alive! Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four-2-no-one-gets-back-/4000-131504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130245/","id":130245,"name":"No One Gets Back Alive! Part 1: Negative Energy","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-no-one-gets-back-/4000-130245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127226/","id":127226,"name":"Wrath Child, Conclusion","site_detail_url":"https://comicvine.gamespot.com/batman-confidential-16-wrath-child-conclusion/4000-127226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133986/","id":133986,"name":"Dial H for Hero","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go-52-dial-h-for-hero/4000-133986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127421/","id":127421,"name":"Wrath Child, Part One","site_detail_url":"https://comicvine.gamespot.com/batman-confidential-13-wrath-child-part-one/4000-127421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120389/","id":120389,"name":"The Blood-Soaked Sands","site_detail_url":"https://comicvine.gamespot.com/countdown-arena-1-the-blood-soaked-sands/4000-120389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209075/","id":209075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-new-gods-1-tpb/4000-209075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267887/","id":267887,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-the-domin/4000-267887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114997/","id":114997,"name":"The Wanderers","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-30-the-wa/4000-114997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114995/","id":114995,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-28/4000-114995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244818/","id":244818,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-to-be-a-lantern-1-hc-tpb/4000-244818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114994/","id":114994,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-27/4000-114994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267886/","id":267886,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-adult-edu/4000-267886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114993/","id":114993,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-26/4000-114993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114978/","id":114978,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-25/4000-114978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114977/","id":114977,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-24/4000-114977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114975/","id":114975,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-23/4000-114975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249691/","id":249691,"name":"Lex Luthor: Man of Steel","site_detail_url":"https://comicvine.gamespot.com/lex-luthor-man-of-steel-1-lex-luthor-man-of-steel/4000-249691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818982/","id":818982,"name":null,"site_detail_url":"https://comicvine.gamespot.com/sette-soldati-della-vittoria-1/4000-818982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267799/","id":267799,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-strange-v/4000-267799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106850/","id":106850,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-3-homecoming/4000-106850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114972/","id":114972,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-20/4000-114972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114916/","id":114916,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-18/4000-114916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114915/","id":114915,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-17/4000-114915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114907/","id":114907,"name":"","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-16/4000-114907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309770/","id":309770,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream-2-volume-2/4000-309770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255911/","id":255911,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-3-vol-3/4000-255911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114963/","id":114963,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-13/4000-114963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255908/","id":255908,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-1/4000-255908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114962/","id":114962,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-12/4000-114962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255910/","id":255910,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory-2-vol-2/4000-255910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114923/","id":114923,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-11/4000-114923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108868/","id":108868,"name":"Zor","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-4-zor/4000-108868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309762/","id":309762,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution-1-volume/4000-309762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336988/","id":336988,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-1-rebirth/4000-336988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99199/","id":99199,"name":"Mixed Signals","site_detail_url":"https://comicvine.gamespot.com/jsa-77-mixed-signals/4000-99199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191684/","id":191684,"name":null,"site_detail_url":"https://comicvine.gamespot.com/lex-luthor-man-of-steel-5/4000-191684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108867/","id":108867,"name":"Three Days of the Dead","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-3-three-days-of-the-dead/4000-108867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108866/","id":108866,"name":"A Book in the Beginning","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-2-a-book-in-the-beginning/4000-108866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196968/","id":196968,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/promethea-5-book-five/4000-196968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108704/","id":108704,"name":"Talking Backwards - Sdrawkcab Gniklat","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna-1-talking-backwards-sdrawkc/4000-108704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105296/","id":105296,"name":"Fight the Power","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-4-fight-the-power/4000-105296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130088/","id":130088,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-6-brightest-day/4000-130088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261306/","id":261306,"name":"Promethea Number Omega","site_detail_url":"https://comicvine.gamespot.com/promethea-covers-book-number-omega-o-promethea-num/4000-261306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100873/","id":100873,"name":"Retroverse Two: Brother vs. Brother!","site_detail_url":"https://comicvine.gamespot.com/aquaman-27-retroverse-two-brother-vs-brother/4000-100873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130086/","id":130086,"name":"Rings","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-5-rings/4000-130086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103849/","id":103849,"name":"Tomorrow's Heroes Today!","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-2-tomorrows-heroes-today/4000-103849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98296/","id":98296,"name":"Escape","site_detail_url":"https://comicvine.gamespot.com/aquaman-25-escape/4000-98296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98340/","id":98340,"name":"The Tower of Silence","site_detail_url":"https://comicvine.gamespot.com/hawkman-35-the-tower-of-silence/4000-98340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96793/","id":96793,"name":"And We Are Legion","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-1-and-we-are-legion/4000-96793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98295/","id":98295,"name":"Plunder","site_detail_url":"https://comicvine.gamespot.com/aquaman-24-plunder/4000-98295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98339/","id":98339,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/hawkman-34-the-gift/4000-98339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97715/","id":97715,"name":"Joyride","site_detail_url":"https://comicvine.gamespot.com/firestorm-6-joyride/4000-97715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133275/","id":133275,"name":"Fates Warning (Part 4)","site_detail_url":"https://comicvine.gamespot.com/hawkman-31-fates-warning-part-4/4000-133275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96647/","id":96647,"name":"Past Tense","site_detail_url":"https://comicvine.gamespot.com/justice-league-adventures-34-past-tense/4000-96647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133274/","id":133274,"name":"Fates Warning (Part 3)","site_detail_url":"https://comicvine.gamespot.com/hawkman-30-fates-warning-part-3/4000-133274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133273/","id":133273,"name":"Fates Warning (Part 2)","site_detail_url":"https://comicvine.gamespot.com/hawkman-29-fates-warning-part-2/4000-133273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133272/","id":133272,"name":"Fates Warning (Part 1)","site_detail_url":"https://comicvine.gamespot.com/hawkman-28-fates-warning-part-1/4000-133272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105578/","id":105578,"name":"Everything Must Go!","site_detail_url":"https://comicvine.gamespot.com/promethea-30-everything-must-go/4000-105578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105577/","id":105577,"name":"Valley of the Dolls","site_detail_url":"https://comicvine.gamespot.com/promethea-29-valley-of-the-dolls/4000-105577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276363/","id":276363,"name":"Allies And Enemies","site_detail_url":"https://comicvine.gamespot.com/hawkman-allies-and-enemies-1-allies-and-enemies/4000-276363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-880579/","id":880579,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-auf-der-flucht-2/4000-880579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132643/","id":132643,"name":"Martian Manhunter to Zatanna","site_detail_url":"https://comicvine.gamespot.com/jla-z-3-martian-manhunter-to-zatanna/4000-132643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120848/","id":120848,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284198/","id":284198,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-morder-2/4000-284198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-880592/","id":880592,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-nach-dem-feuer-3/4000-880592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196966/","id":196966,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/promethea-4-book-four/4000-196966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151362/","id":151362,"name":"Killers (Part 1)","site_detail_url":"https://comicvine.gamespot.com/hawkman-13-killers-part-1/4000-151362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315079/","id":315079,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-after-the-fire-1-tpb/4000-315079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203730/","id":203730,"name":"","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-fugitive-2/4000-203730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175485/","id":175485,"name":"The Day Before","site_detail_url":"https://comicvine.gamespot.com/jlajsa-secret-files-origins-1-the-day-before/4000-175485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143491/","id":143491,"name":"","site_detail_url":"https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168493/","id":168493,"name":null,"site_detail_url":"https://comicvine.gamespot.com/green-arrow-secret-files-and-origins-1/4000-168493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211895/","id":211895,"name":"","site_detail_url":"https://comicvine.gamespot.com/hawkman-secret-files-and-origins-1/4000-211895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175057/","id":175057,"name":"","site_detail_url":"https://comicvine.gamespot.com/batgirl-secret-files-and-origins-1/4000-175057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159157/","id":159157,"name":"","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-after-the-fire-3/4000-159157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78434/","id":78434,"name":"Hard-Loving Heroes","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files-and-origins-3-hard-lovi/4000-78434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201506/","id":201506,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-murderer-1-tpb/4000-201506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84992/","id":84992,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/promethea-3-book-three/4000-84992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113283/","id":113283,"name":"Purity (Part 1); Lost Voices (Part 6);","site_detail_url":"https://comicvine.gamespot.com/detective-comics-768-purity-part-1-lost-voices-par/4000-113283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113282/","id":113282,"name":"Timeles; Lost Voices (Part 5);","site_detail_url":"https://comicvine.gamespot.com/detective-comics-767-timeles-lost-voices-part-5/4000-113282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174505/","id":174505,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-starfighter-crossbones-3/4000-174505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89257/","id":89257,"name":"Now, More Than Ever--For Truth, Justice & The American Way!","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-600-now-more-than-ever-for-/4000-89257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108330/","id":108330,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-millennial-visions-1/4000-108330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174504/","id":174504,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-starfighter-crossbones-2/4000-174504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80605/","id":80605,"name":"Red Glare!","site_detail_url":"https://comicvine.gamespot.com/promethea-18-red-glare/4000-80605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127290/","id":127290,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-starfighter-crossbones-1/4000-127290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303970/","id":303970,"name":"Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/jla-divided-we-fall-1-divided-we-fall/4000-303970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80604/","id":80604,"name":"Gold","site_detail_url":"https://comicvine.gamespot.com/promethea-17-gold/4000-80604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228818/","id":228818,"name":"","site_detail_url":"https://comicvine.gamespot.com/joker-last-laugh-secret-files-1/4000-228818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140291/","id":140291,"name":"Rogues; Moments Too Late","site_detail_url":"https://comicvine.gamespot.com/flash-secret-files-3-rogues-moments-too-late/4000-140291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80603/","id":80603,"name":"Love and the Law","site_detail_url":"https://comicvine.gamespot.com/promethea-16-love-and-the-law/4000-80603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51449/","id":51449,"name":"Breaking Storms","site_detail_url":"https://comicvine.gamespot.com/jsa-secret-files-2-breaking-storms/4000-51449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51232/","id":51232,"name":"The Hunted Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-166-the-hunted-conclusion/4000-51232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80602/","id":80602,"name":"Mercury Rising","site_detail_url":"https://comicvine.gamespot.com/promethea-15-mercury-rising/4000-80602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-82535/","id":82535,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/promethea-2-book-two/4000-82535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94059/","id":94059,"name":"My Brother, My Enemy","site_detail_url":"https://comicvine.gamespot.com/gambit-bishop-genesis-4-my-brother-my-enemy/4000-94059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80601/","id":80601,"name":"Moon River","site_detail_url":"https://comicvine.gamespot.com/promethea-14-moon-river/4000-80601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94061/","id":94061,"name":"What Goes 'Round Comes 'Round!","site_detail_url":"https://comicvine.gamespot.com/gambit-bishop-genesis-6-what-goes-round-comes-roun/4000-94061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94060/","id":94060,"name":"Are We Ourselves","site_detail_url":"https://comicvine.gamespot.com/gambit-bishop-genesis-5-are-we-ourselves/4000-94060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94058/","id":94058,"name":"That's Stryfe That's What People Say","site_detail_url":"https://comicvine.gamespot.com/gambit-and-bishop-3-thats-stryfe-thats-what-people/4000-94058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51228/","id":51228,"name":"The Best There Is Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-161-the-best-there-is-part-3-of-3/4000-51228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94057/","id":94057,"name":"Enter... The Witness","site_detail_url":"https://comicvine.gamespot.com/gambit-bishop-genesis-2-enter-the-witness/4000-94057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80600/","id":80600,"name":"The Fields We Know","site_detail_url":"https://comicvine.gamespot.com/promethea-13-the-fields-we-know/4000-80600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51227/","id":51227,"name":"The Best There Is Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-160-the-best-there-is-part-2-of-3/4000-51227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94056/","id":94056,"name":"I See A Bad Moon Rising","site_detail_url":"https://comicvine.gamespot.com/gambit-bishop-genesis-1-i-see-a-bad-moon-rising/4000-94056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46894/","id":46894,"name":"The Magic Theater: A Pop Art Happening","site_detail_url":"https://comicvine.gamespot.com/promethea-12-the-magic-theater-a-pop-art-happening/4000-46894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46893/","id":46893,"name":"Under Attack!","site_detail_url":"https://comicvine.gamespot.com/promethea-11-under-attack/4000-46893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66953/","id":66953,"name":"The Queen of Fables, Part 2 of 3: Truth is Stranger","site_detail_url":"https://comicvine.gamespot.com/jla-48-the-queen-of-fables-part-2-of-3-truth-is-st/4000-66953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46892/","id":46892,"name":"Sex Stars, and Serpents","site_detail_url":"https://comicvine.gamespot.com/promethea-10-sex-stars-and-serpents/4000-46892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96381/","id":96381,"name":"Witch's Son/Die, Fish, Die","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-157-witchs-sondie-fish-die/4000-96381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46891/","id":46891,"name":"Bringing Down the Temple!","site_detail_url":"https://comicvine.gamespot.com/promethea-9-bringing-down-the-temple/4000-46891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123750/","id":123750,"name":"Something Worth Fighting For","site_detail_url":"https://comicvine.gamespot.com/magneto-dark-seduction-3-something-worth-fighting-/4000-123750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108260/","id":108260,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-millennial-visions-1/4000-108260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96380/","id":96380,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-156/4000-96380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-82534/","id":82534,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/promethea-1-book-one/4000-82534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46890/","id":46890,"name":"Guys and Dolls","site_detail_url":"https://comicvine.gamespot.com/promethea-8-guys-and-dolls/4000-46890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151460/","id":151460,"name":"","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-i-hate-it-here-1/4000-151460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46889/","id":46889,"name":"Rocks and Hard Places","site_detail_url":"https://comicvine.gamespot.com/promethea-7-rocks-and-hard-places/4000-46889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46888/","id":46888,"name":"A Warrior Princess of Hy Brasil","site_detail_url":"https://comicvine.gamespot.com/promethea-6-a-warrior-princess-of-hy-brasil/4000-46888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199682/","id":199682,"name":"Here and Now","site_detail_url":"https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe-/4000-199682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46887/","id":46887,"name":"Weapon for Liberty","site_detail_url":"https://comicvine.gamespot.com/promethea-5-weapon-for-liberty/4000-46887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261542/","id":261542,"name":"","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-17/4000-261542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123076/","id":123076,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/son-of-superman-1-hcsc/4000-123076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46886/","id":46886,"name":"A Faerie Romance","site_detail_url":"https://comicvine.gamespot.com/promethea-4-a-faerie-romance/4000-46886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46885/","id":46885,"name":"Misty Magic Land","site_detail_url":"https://comicvine.gamespot.com/promethea-3-misty-magic-land/4000-46885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46884/","id":46884,"name":"The Judgment of Solomon!","site_detail_url":"https://comicvine.gamespot.com/promethea-2-the-judgment-of-solomon/4000-46884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51448/","id":51448,"name":"Gathering Storms;Lost Pages:Black Canary & Doctor Fate in Dead Ends;History 101","site_detail_url":"https://comicvine.gamespot.com/jsa-secret-files-1-gathering-stormslost-pagesblack/4000-51448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46883/","id":46883,"name":"The Radiant Heavenly City","site_detail_url":"https://comicvine.gamespot.com/promethea-1-the-radiant-heavenly-city/4000-46883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69285/","id":69285,"name":"The Dissing","site_detail_url":"https://comicvine.gamespot.com/the-titans-4-the-dissing/4000-69285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172544/","id":172544,"name":"The Evil that We Do","site_detail_url":"https://comicvine.gamespot.com/dcu-villains-secret-files-and-origins-1-the-evil-t/4000-172544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174969/","id":174969,"name":"\"Spies Like Us\"; A Guide to Resurrection Man's Powers; An Anarky Primer; Vext: The Formative Years; Lost Pages; Stars and S.T.R.I.P.E. Yearbook","site_detail_url":"https://comicvine.gamespot.com/dcu-heroes-secret-files-1-spies-like-us-a-guide-to/4000-174969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291024/","id":291024,"name":"Starman: Times Past","site_detail_url":"https://comicvine.gamespot.com/starman-times-past-1-starman-times-past/4000-291024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45594/","id":45594,"name":"Dreams End","site_detail_url":"https://comicvine.gamespot.com/x-man-47-dreams-end/4000-45594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45556/","id":45556,"name":"Stormfront","site_detail_url":"https://comicvine.gamespot.com/x-man-46-stormfront/4000-45556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241690/","id":241690,"name":"Legends of the DC Universe 3-D","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dc-universe-3-d-1-legends-of-the-dc/4000-241690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45431/","id":45431,"name":"Don't Believe It!","site_detail_url":"https://comicvine.gamespot.com/chase-1000000-dont-believe-it/4000-45431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47226/","id":47226,"name":"Time On My Hands","site_detail_url":"https://comicvine.gamespot.com/chronos-1000000-time-on-my-hands/4000-47226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45367/","id":45367,"name":"Reflections In Emerald","site_detail_url":"https://comicvine.gamespot.com/chase-9-reflections-in-emerald/4000-45367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45295/","id":45295,"name":"The Unmasking!","site_detail_url":"https://comicvine.gamespot.com/chase-8-the-unmasking/4000-45295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120458/","id":120458,"name":"Brightest Light; Darkest Light; Know Evil","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-tales-of-the-green-lantern-1-bright/4000-120458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45207/","id":45207,"name":"Shadowing the Bat","site_detail_url":"https://comicvine.gamespot.com/chase-7-shadowing-the-bat/4000-45207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45257/","id":45257,"name":"Mental Block","site_detail_url":"https://comicvine.gamespot.com/the-creeper-9-mental-block/4000-45257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68985/","id":68985,"name":"Blood Wedding","site_detail_url":"https://comicvine.gamespot.com/wolverine-126-blood-wedding/4000-68985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78433/","id":78433,"name":"Guy Talk","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files-1-guy-talk/4000-78433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174963/","id":174963,"name":"Girl's Day Out","site_detail_url":"https://comicvine.gamespot.com/chase-6-girl-s-day-out/4000-174963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45014/","id":45014,"name":"Better Days","site_detail_url":"https://comicvine.gamespot.com/chase-5-better-days/4000-45014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44926/","id":44926,"name":"Weep For The Future","site_detail_url":"https://comicvine.gamespot.com/chase-4-weep-for-the-future/4000-44926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218225/","id":218225,"name":null,"site_detail_url":"https://comicvine.gamespot.com/starman-secret-files-and-origins-1/4000-218225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44845/","id":44845,"name":"Pickups","site_detail_url":"https://comicvine.gamespot.com/chase-3-pickups/4000-44845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290885/","id":290885,"name":"Starman: A Wicked Inclination","site_detail_url":"https://comicvine.gamespot.com/starman-a-wicked-inclination-1-starman-a-wicked-in/4000-290885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44749/","id":44749,"name":"Letdowns","site_detail_url":"https://comicvine.gamespot.com/chase-2-letdowns/4000-44749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44644/","id":44644,"name":"Baptized in Fire","site_detail_url":"https://comicvine.gamespot.com/chase-1-baptized-in-fire/4000-44644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306358/","id":306358,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-special-2/4000-306358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120435/","id":120435,"name":"\"From Beyond The Unknown\"","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-green-lantern-1-from-beyond-the-unk/4000-120435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120450/","id":120450,"name":"Secrets & Lies","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-metal-men-1-secrets-lies/4000-120450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140289/","id":140289,"name":"A Run of Luck; Fast as Fast Can Be; The Case of the Screaming Skull;","site_detail_url":"https://comicvine.gamespot.com/flash-secret-files-1-a-run-of-luck-fast-as-fast-ca/4000-140289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43850/","id":43850,"name":"Hell Breaks Loose","site_detail_url":"https://comicvine.gamespot.com/the-flash-127-hell-breaks-loose/4000-43850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43669/","id":43669,"name":"Rupert and Marguerite: 1865 & 1931","site_detail_url":"https://comicvine.gamespot.com/the-shade-2-rupert-and-marguerite-1865-1931/4000-43669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316548/","id":316548,"name":"The Batman Chronicles Gallery","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles-gallery-1-the-batman-chronic/4000-316548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-82306/","id":82306,"name":"The Screams of the Green Dragon","site_detail_url":"https://comicvine.gamespot.com/batman-annual-21-the-screams-of-the-green-dragon/4000-82306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142606/","id":142606,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-riders-1/4000-142606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43256/","id":43256,"name":"To Hell and Back, Conclusion","site_detail_url":"https://comicvine.gamespot.com/starman-26-to-hell-and-back-conclusion/4000-43256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42952/","id":42952,"name":"Conspiracy Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-88-conspiracy-pa/4000-42952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42956/","id":42956,"name":"Light in Darkness","site_detail_url":"https://comicvine.gamespot.com/green-lantern-80-light-in-darkness/4000-42956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42856/","id":42856,"name":"Conspiracy Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-87-conspiracy-pa/4000-42856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42769/","id":42769,"name":"Conspiracy Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-86-conspiracy-pa/4000-42769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98681/","id":98681,"name":"Badblood - Part One","site_detail_url":"https://comicvine.gamespot.com/bloodshot-47-badblood-part-one/4000-98681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107018/","id":107018,"name":"","site_detail_url":"https://comicvine.gamespot.com/battlezones-dream-team-2-1/4000-107018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41854/","id":41854,"name":"Legends of the Dead Earth","site_detail_url":"https://comicvine.gamespot.com/starman-annual-1-legends-of-the-dead-earth/4000-41854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41948/","id":41948,"name":"Constant Whitewater","site_detail_url":"https://comicvine.gamespot.com/batman-526-constant-whitewater/4000-41948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246320/","id":246320,"name":"Jack Kirby's Fourth World Gallery","site_detail_url":"https://comicvine.gamespot.com/jack-kirbys-fourth-world-gallery-1-jack-kirbys-fou/4000-246320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41900/","id":41900,"name":"Silent Running","site_detail_url":"https://comicvine.gamespot.com/the-flash-annual-9-silent-running/4000-41900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136327/","id":136327,"name":"Wired!","site_detail_url":"https://comicvine.gamespot.com/steel-23-wired/4000-136327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135963/","id":135963,"name":"Over Dark Evil","site_detail_url":"https://comicvine.gamespot.com/underworld-unleashed-abyss-hells-sentinel-1-over-d/4000-135963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116721/","id":116721,"name":"The Official Comic Book Adaptation of the Hit Film","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie-1-the-offic/4000-116721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41113/","id":41113,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield-4/4000-41113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40975/","id":40975,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield-3/4000-40975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40851/","id":40851,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield-2/4000-40851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40817/","id":40817,"name":"Chok II","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force-23-chok-ii/4000-40817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64981/","id":64981,"name":"Fire Of Freedom","site_detail_url":"https://comicvine.gamespot.com/spider-man-friends-and-enemies-4-fire-of-freedom/4000-64981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40688/","id":40688,"name":"Chokula","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force-22-chokula/4000-40688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107412/","id":107412,"name":"The Cage","site_detail_url":"https://comicvine.gamespot.com/the-punisher-100-the-cage/4000-107412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64978/","id":64978,"name":"Stolen Lives","site_detail_url":"https://comicvine.gamespot.com/spider-man-friends-and-enemies-3-stolen-lives/4000-64978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64975/","id":64975,"name":"Targets","site_detail_url":"https://comicvine.gamespot.com/spider-man-friends-and-enemies-2-targets/4000-64975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107480/","id":107480,"name":"Last Entry Part 1: Road to Death; Trouble Part 5: Father's Day","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-71-last-entry-part-1-road/4000-107480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65611/","id":65611,"name":"Power and Responsibility, Part 4: Higher Ground; The Double, Part Four: The Burial","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-217-power-and-responsib/4000-65611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107476/","id":107476,"name":"Pariah Part 5: Strict Time!; Trouble Part 3: Homecoming","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-69-pariah-part-5-strict-t/4000-107476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357116/","id":357116,"name":"","site_detail_url":"https://comicvine.gamespot.com/phantom-force-6/4000-357116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107475/","id":107475,"name":"Pariah Part 4: Bad Turn; Trouble Part 2: Family Values","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-68-pariah-part-4-bad-turn/4000-107475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357114/","id":357114,"name":"","site_detail_url":"https://comicvine.gamespot.com/phantom-force-4/4000-357114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77439/","id":77439,"name":"Pariah Part Three; Trouble Part One: Return of the Prodigal","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-67-pariah-part-three-trou/4000-77439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77438/","id":77438,"name":"Pariah Part Two; Last Exit","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-66-pariah-part-two-last-e/4000-77438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77437/","id":77437,"name":"Pariah Part One: Pariah!","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-65-pariah-part-one-pariah/4000-77437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107327/","id":107327,"name":"Suicide Run Part 9: Past The Point Of Rescue","site_detail_url":"https://comicvine.gamespot.com/the-punisher-88-suicide-run-part-9-past-the-point-/4000-107327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107326/","id":107326,"name":"Suicide Run Part 6: False Moves","site_detail_url":"https://comicvine.gamespot.com/the-punisher-87-suicide-run-part-6-false-moves/4000-107326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107323/","id":107323,"name":"Suicide Run, Part 3: Deadline","site_detail_url":"https://comicvine.gamespot.com/the-punisher-86-suicide-run-part-3-deadline/4000-107323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107427/","id":107427,"name":"Suicide Run Part 0: Smoke & Fire","site_detail_url":"https://comicvine.gamespot.com/the-punisher-85-suicide-run-part-0-smoke-fire/4000-107427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38270/","id":38270,"name":"The Whispers Scream","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-3-the-whispers-scream/4000-38270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107426/","id":107426,"name":"Firefight: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-punisher-84-firefight-part-3/4000-107426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107425/","id":107425,"name":"Firefight: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-punisher-83-firefight-part-2/4000-107425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91553/","id":91553,"name":"Savage Return","site_detail_url":"https://comicvine.gamespot.com/darkhawk-32-savage-return/4000-91553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107424/","id":107424,"name":"Firefight: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-punisher-82-firefight-part-1/4000-107424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231936/","id":231936,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-dog-4/4000-231936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107441/","id":107441,"name":"Psychoville U.S.A. Part 5: Empty Nest","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-16-psychoville-usa-part-5-em/4000-107441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107440/","id":107440,"name":"Psychoville U.S.A. Part 4: Father Knows Best","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-15-psychoville-usa-part-4-fa/4000-107440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107439/","id":107439,"name":"Psychoville U.S.A. Part 3: My Two Dads","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-14-psychoville-usa-part-3-my/4000-107439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107438/","id":107438,"name":"Psychoville U.S.A. Part 2: Happy Days","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-13-psychoville-usa-part-2-ha/4000-107438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107437/","id":107437,"name":"Psychoville U.S.A. Part 1: Family Ties","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone-12-psychoville-usa-part-1-fa/4000-107437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117528/","id":117528,"name":"Quarry; Air Strike; One Day At A Time ","site_detail_url":"https://comicvine.gamespot.com/deathlok-annual-2-quarry-air-strike-one-day-at-a-t/4000-117528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33654/","id":33654,"name":"Run Like Hell","site_detail_url":"https://comicvine.gamespot.com/the-griffin-5-run-like-hell/4000-33654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33649/","id":33649,"name":"The Drums of War","site_detail_url":"https://comicvine.gamespot.com/the-griffin-4-the-drums-of-war/4000-33649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33644/","id":33644,"name":"Standing in the Ashes","site_detail_url":"https://comicvine.gamespot.com/the-griffin-3-standing-in-the-ashes/4000-33644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33631/","id":33631,"name":"Old Wounds","site_detail_url":"https://comicvine.gamespot.com/the-griffin-2-old-wounds/4000-33631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33621/","id":33621,"name":"The Griffin Returns","site_detail_url":"https://comicvine.gamespot.com/the-griffin-1-the-griffin-returns/4000-33621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145406/","id":145406,"name":"","site_detail_url":"https://comicvine.gamespot.com/hero-sandwich-5/4000-145406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29689/","id":29689,"name":"Getting to 99 Pt. 1; The Adventures of Zot! in Dimension 10 ½ 19","site_detail_url":"https://comicvine.gamespot.com/zot-19-getting-to-99-pt-1-the-adventures-of-zot-in/4000-29689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29747/","id":29747,"name":"Getting to 99 Pt. 2; The Adventures of Zot! in Dimension 10 ½ 20","site_detail_url":"https://comicvine.gamespot.com/zot-20-getting-to-99-pt-2-the-adventures-of-zot-in/4000-29747/"}],"name":"Mick Gray","site_detail_url":"https://comicvine.gamespot.com/mick-gray/4040-1252/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58773/","id":58773,"name":"\"X-Men\" Apocalypse Wars","site_detail_url":"https://comicvine.gamespot.com/x-men-apocalypse-wars/4045-58773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59892/","id":59892,"name":"\"Cable\" The Dark Ride","site_detail_url":"https://comicvine.gamespot.com/cable-the-dark-ride/4045-59892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60978/","id":60978,"name":"\"Avengers/X-Men/Eternals\" A.X.E.: Judgment Day","site_detail_url":"https://comicvine.gamespot.com/avengersx-meneternals-axe-judgment-day/4045-60978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60353/","id":60353,"name":"\"Justice League\" DCeased","site_detail_url":"https://comicvine.gamespot.com/justice-league-dceased/4045-60353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61044/","id":61044,"name":"\"DC Universe\" Lazarus Planet","site_detail_url":"https://comicvine.gamespot.com/dc-universe-lazarus-planet/4045-61044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60984/","id":60984,"name":"\"X-Men\" Destiny of X","site_detail_url":"https://comicvine.gamespot.com/x-men-destiny-of-x/4045-60984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-52856/","id":52856,"name":"\"Batman\" Batman & Son","site_detail_url":"https://comicvine.gamespot.com/batman-batman-and-son/4045-52856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59936/","id":59936,"name":"\"2000 AD\" Invasion!","site_detail_url":"https://comicvine.gamespot.com/2000-ad-invasion/4045-59936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57578/","id":57578,"name":"\"2000 AD\" M.A.C.H.1","site_detail_url":"https://comicvine.gamespot.com/2000-ad-mach1/4045-57578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59137/","id":59137,"name":"\"2000 AD\" Harlem Heroes","site_detail_url":"https://comicvine.gamespot.com/2000-ad-harlem-heroes/4045-59137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60403/","id":60403,"name":"\"2000 AD\" Tharg's Future Shocks","site_detail_url":"https://comicvine.gamespot.com/2000-ad-thargs-future-shocks/4045-60403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58807/","id":58807,"name":"\"Weekly Shonen Jump\" Kujira Daigo","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-kujira-daigo/4045-58807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59002/","id":59002,"name":"\"Black Jack\" Aru Kyōshi to Seito","site_detail_url":"https://comicvine.gamespot.com/black-jack-aru-kyoshi-to-seito/4045-59002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61204/","id":61204,"name":"\"Rokudenashi Blues\" Return to Ōsaka","site_detail_url":"https://comicvine.gamespot.com/rokudenashi-blues-return-to-osaka/4045-61204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61156/","id":61156,"name":"\"Spider-Man\" Gang War","site_detail_url":"https://comicvine.gamespot.com/spider-man-gang-war/4045-61156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58204/","id":58204,"name":"\"Black Jack\" Dingo","site_detail_url":"https://comicvine.gamespot.com/black-jack-dingo/4045-58204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61041/","id":61041,"name":"\"Detective Comics\" Gotham Nocturne","site_detail_url":"https://comicvine.gamespot.com/detective-comics-gotham-nocturne/4045-61041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59303/","id":59303,"name":"\"Weekly Shonen Jump\" Arakkure!","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-arakkure/4045-59303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58611/","id":58611,"name":"\"Black Jack\" Futari-Me ga Ita","site_detail_url":"https://comicvine.gamespot.com/black-jack-futari-me-ga-ita/4045-58611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57752/","id":57752,"name":"\"Samurai Giants\" Kaimaku no Shō","site_detail_url":"https://comicvine.gamespot.com/samurai-giants-kaimaku-no-sho/4045-57752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57709/","id":57709,"name":"\"Samurai Giants\" Kettō no Shō","site_detail_url":"https://comicvine.gamespot.com/samurai-giants-ketto-no-sho/4045-57709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58629/","id":58629,"name":"\"Weekly Shonen Jump\" Yoake no Tategami","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-yoake-no-tategami/4045-58629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56668/","id":56668,"name":"\"Black Jack\" Shiroi-Me","site_detail_url":"https://comicvine.gamespot.com/black-jack-shiroi-me/4045-56668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57437/","id":57437,"name":"\"Black Jack\" Invader","site_detail_url":"https://comicvine.gamespot.com/black-jack-invader/4045-57437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59412/","id":59412,"name":"\"Black Jack\" Yuki no Yorubanashi","site_detail_url":"https://comicvine.gamespot.com/black-jack-yuki-no-yorubanashi/4045-59412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58413/","id":58413,"name":"\"Black Jack\" Kaizoku no Ude","site_detail_url":"https://comicvine.gamespot.com/black-jack-kaizoku-no-ude/4045-58413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56951/","id":56951,"name":"\"Black Jack\" Tozasareta Kioku","site_detail_url":"https://comicvine.gamespot.com/black-jack-tozasareta-kioku/4045-56951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59981/","id":59981,"name":"\"Black Jack\" Futari no Shūji","site_detail_url":"https://comicvine.gamespot.com/black-jack-futari-no-shuji/4045-59981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59822/","id":59822,"name":"\"Black Jack\" Kishibojin no Musuko","site_detail_url":"https://comicvine.gamespot.com/black-jack-kishibojin-no-musuko/4045-59822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58443/","id":58443,"name":"\"Black Jack\" Nadare","site_detail_url":"https://comicvine.gamespot.com/black-jack-nadare/4045-58443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57795/","id":57795,"name":"\"Black Jack\" Kōishō","site_detail_url":"https://comicvine.gamespot.com/black-jack-koisho/4045-57795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59142/","id":59142,"name":"\"Black Jack\" Pinoko Aishiteru","site_detail_url":"https://comicvine.gamespot.com/black-jack-pinoko-aishiteru/4045-59142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58484/","id":58484,"name":"\"Black Jack\" Kikeinōshu","site_detail_url":"https://comicvine.gamespot.com/black-jack-kikeinoshu/4045-58484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58672/","id":58672,"name":"\"Black Jack\" Dirty Jack","site_detail_url":"https://comicvine.gamespot.com/black-jack-dirty-jack/4045-58672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58876/","id":58876,"name":"\"Black Jack\" Pinoko Futatabi","site_detail_url":"https://comicvine.gamespot.com/black-jack-pinoko-futatabi/4045-58876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60036/","id":60036,"name":"\"Black Jack\" Haiiro no Yakata","site_detail_url":"https://comicvine.gamespot.com/black-jack-haiiro-no-yakata/4045-60036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58066/","id":58066,"name":"\"Black Jack\" Pinoko Ikiteru","site_detail_url":"https://comicvine.gamespot.com/black-jack-pinoko-ikiteru/4045-58066/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3399/","id":3399,"name":"Zot!","site_detail_url":"https://comicvine.gamespot.com/zot/4050-3399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4553/","id":4553,"name":"The Griffin","site_detail_url":"https://comicvine.gamespot.com/the-griffin/4050-4553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5066/","id":5066,"name":"X-Men Unlimited","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited/4050-5066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4967/","id":4967,"name":"Justice League Task Force","site_detail_url":"https://comicvine.gamespot.com/justice-league-task-force/4050-4967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5545/","id":5545,"name":"Fury of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield/4050-5545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5765/","id":5765,"name":"Starman Annual","site_detail_url":"https://comicvine.gamespot.com/starman-annual/4050-5765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3791/","id":3791,"name":"The Flash Annual","site_detail_url":"https://comicvine.gamespot.com/the-flash-annual/4050-3791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-796/","id":796,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4050-796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4720/","id":4720,"name":"Batman: Legends of the Dark Knight","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight/4050-4720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4363/","id":4363,"name":"Green Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern/4050-4363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5259/","id":5259,"name":"Starman","site_detail_url":"https://comicvine.gamespot.com/starman/4050-5259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5966/","id":5966,"name":"The Shade","site_detail_url":"https://comicvine.gamespot.com/the-shade/4050-5966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3790/","id":3790,"name":"The Flash","site_detail_url":"https://comicvine.gamespot.com/the-flash/4050-3790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6152/","id":6152,"name":"Chase","site_detail_url":"https://comicvine.gamespot.com/chase/4050-6152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5945/","id":5945,"name":"The Creeper","site_detail_url":"https://comicvine.gamespot.com/the-creeper/4050-5945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5567/","id":5567,"name":"X-Man","site_detail_url":"https://comicvine.gamespot.com/x-man/4050-5567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6568/","id":6568,"name":"Promethea","site_detail_url":"https://comicvine.gamespot.com/promethea/4050-6568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6602/","id":6602,"name":"Chronos","site_detail_url":"https://comicvine.gamespot.com/chronos/4050-6602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4250/","id":4250,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-4250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7222/","id":7222,"name":"JSA Secret Files","site_detail_url":"https://comicvine.gamespot.com/jsa-secret-files/4050-7222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9082/","id":9082,"name":"Spider-Man: Friends and Enemies","site_detail_url":"https://comicvine.gamespot.com/spider-man-friends-and-enemies/4050-9082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2870/","id":2870,"name":"The Spectacular Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man/4050-2870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5957/","id":5957,"name":"JLA","site_detail_url":"https://comicvine.gamespot.com/jla/4050-5957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9145/","id":9145,"name":"The Titans","site_detail_url":"https://comicvine.gamespot.com/the-titans/4050-9145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4066/","id":4066,"name":"The Punisher War Journal","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal/4050-4066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7211/","id":7211,"name":"Green Lantern Secret Files","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files/4050-7211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-158754/","id":158754,"name":"Green Lantern Secret Files And Origins","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files-and-origins/4050-158754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3109/","id":3109,"name":"Batman Annual","site_detail_url":"https://comicvine.gamespot.com/batman-annual/4050-3109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9576/","id":9576,"name":"Promethea","site_detail_url":"https://comicvine.gamespot.com/promethea/4050-9576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3778/","id":3778,"name":"Adventures of Superman","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman/4050-3778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4587/","id":4587,"name":"Darkhawk","site_detail_url":"https://comicvine.gamespot.com/darkhawk/4050-4587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10906/","id":10906,"name":"Gambit & Bishop","site_detail_url":"https://comicvine.gamespot.com/gambit-bishop/4050-10906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3739/","id":3739,"name":"Dark Horse Presents","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents/4050-3739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10065/","id":10065,"name":"Justice League Adventures","site_detail_url":"https://comicvine.gamespot.com/justice-league-adventures/4050-10065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11059/","id":11059,"name":"Legion of Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes/4050-11059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11157/","id":11157,"name":"Firestorm","site_detail_url":"https://comicvine.gamespot.com/firestorm/4050-11157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9517/","id":9517,"name":"Aquaman","site_detail_url":"https://comicvine.gamespot.com/aquaman/4050-9517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9402/","id":9402,"name":"Hawkman","site_detail_url":"https://comicvine.gamespot.com/hawkman/4050-9402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5067/","id":5067,"name":"Bloodshot","site_detail_url":"https://comicvine.gamespot.com/bloodshot/4050-5067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6331/","id":6331,"name":"JSA","site_detail_url":"https://comicvine.gamespot.com/jsa/4050-6331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18248/","id":18248,"name":"Green Lantern Corps","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps/4050-18248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18277/","id":18277,"name":"Battlezones: Dream Team 2","site_detail_url":"https://comicvine.gamespot.com/battlezones-dream-team-2/4050-18277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3855/","id":3855,"name":"The Punisher","site_detail_url":"https://comicvine.gamespot.com/the-punisher/4050-3855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4807/","id":4807,"name":"The Punisher: War Zone","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-zone/4050-4807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18447/","id":18447,"name":"X-Men: Millennial Visions","site_detail_url":"https://comicvine.gamespot.com/x-men-millennial-visions/4050-18447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18457/","id":18457,"name":"Marvel Universe: Millennial Visions","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-millennial-visions/4050-18457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18517/","id":18517,"name":"Seven Soldiers: Zatanna","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-zatanna/4050-18517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18058/","id":18058,"name":"Detective Comics","site_detail_url":"https://comicvine.gamespot.com/detective-comics/4050-18058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19189/","id":19189,"name":"Supergirl and the Legion of Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes/4050-19189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19519/","id":19519,"name":"Mighty Morphin Power Rangers: The Movie","site_detail_url":"https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie/4050-19519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19570/","id":19570,"name":"Deathlok Annual","site_detail_url":"https://comicvine.gamespot.com/deathlok-annual/4050-19570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20179/","id":20179,"name":"Countdown: Arena","site_detail_url":"https://comicvine.gamespot.com/countdown-arena/4050-20179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20189/","id":20189,"name":"Tangent Comics/ Green Lantern","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-green-lantern/4050-20189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20196/","id":20196,"name":"Tangent Comics/ Metal Men","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-metal-men/4050-20196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20204/","id":20204,"name":"Tangent Comics/ Tales of the Green Lantern","site_detail_url":"https://comicvine.gamespot.com/tangent-comics-tales-of-the-green-lantern/4050-20204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20244/","id":20244,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20553/","id":20553,"name":"Son of Superman","site_detail_url":"https://comicvine.gamespot.com/son-of-superman/4050-20553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20099/","id":20099,"name":"Magneto Dark Seduction","site_detail_url":"https://comicvine.gamespot.com/magneto-dark-seduction/4050-20099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18231/","id":18231,"name":"Batman Confidential","site_detail_url":"https://comicvine.gamespot.com/batman-confidential/4050-18231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21178/","id":21178,"name":"Star Wars: Starfighter: Crossbones","site_detail_url":"https://comicvine.gamespot.com/star-wars-starfighter-crossbones/4050-21178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21531/","id":21531,"name":"Green Lantern: Rebirth","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth/4050-21531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21574/","id":21574,"name":"Secret Invasion: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-21574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21995/","id":21995,"name":"JLA-Z","site_detail_url":"https://comicvine.gamespot.com/jla-z/4050-21995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11258/","id":11258,"name":"Teen Titans Go!","site_detail_url":"https://comicvine.gamespot.com/teen-titans-go/4050-11258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22671/","id":22671,"name":"Underworld Unleashed: Abyss - Hell's Sentinel","site_detail_url":"https://comicvine.gamespot.com/underworld-unleashed-abyss-hells-sentinel/4050-22671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5260/","id":5260,"name":"Steel","site_detail_url":"https://comicvine.gamespot.com/steel/4050-5260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18052/","id":18052,"name":"Justice Society of America","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america/4050-18052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23376/","id":23376,"name":"Flash Secret Files","site_detail_url":"https://comicvine.gamespot.com/flash-secret-files/4050-23376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19025/","id":19025,"name":"Booster Gold","site_detail_url":"https://comicvine.gamespot.com/booster-gold/4050-19025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23571/","id":23571,"name":"Joker","site_detail_url":"https://comicvine.gamespot.com/joker/4050-23571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23902/","id":23902,"name":"Justice Riders","site_detail_url":"https://comicvine.gamespot.com/justice-riders/4050-23902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24156/","id":24156,"name":"Alan Moore: Portrait of an Extraordinary Gentleman","site_detail_url":"https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman/4050-24156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24563/","id":24563,"name":"Hero Sandwich","site_detail_url":"https://comicvine.gamespot.com/hero-sandwich/4050-24563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19020/","id":19020,"name":"Superman/Batman Annual","site_detail_url":"https://comicvine.gamespot.com/supermanbatman-annual/4050-19020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25724/","id":25724,"name":"Transmetropolitan: I Hate It Here","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-i-hate-it-here/4050-25724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26415/","id":26415,"name":"Final Crisis Aftermath: Escape","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-escape/4050-26415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26443/","id":26443,"name":"Final Crisis Aftermath: Dance","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-dance/4050-26443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26592/","id":26592,"name":"Batman/Deathblow: After the Fire","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-after-the-fire/4050-26592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27573/","id":27573,"name":"Green Arrow: Secret Files & Origins","site_detail_url":"https://comicvine.gamespot.com/green-arrow-secret-files-origins/4050-27573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27860/","id":27860,"name":"The Shield","site_detail_url":"https://comicvine.gamespot.com/the-shield/4050-27860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28100/","id":28100,"name":"DCU Villains Secret Files","site_detail_url":"https://comicvine.gamespot.com/dcu-villains-secret-files/4050-28100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28152/","id":28152,"name":"Secret Invasion: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-28152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28410/","id":28410,"name":"DCU Heroes Secret Files","site_detail_url":"https://comicvine.gamespot.com/dcu-heroes-secret-files/4050-28410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28426/","id":28426,"name":"Batgirl Secret Files and Origins","site_detail_url":"https://comicvine.gamespot.com/batgirl-secret-files-and-origins/4050-28426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28479/","id":28479,"name":"JLA/JSA Secret Files & Origins","site_detail_url":"https://comicvine.gamespot.com/jlajsa-secret-files-origins/4050-28479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30670/","id":30670,"name":"JSA Kingdom Come Special: Magog","site_detail_url":"https://comicvine.gamespot.com/jsa-kingdom-come-special-magog/4050-30670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30672/","id":30672,"name":"JSA Kingdom Come Special: The Kingdom","site_detail_url":"https://comicvine.gamespot.com/jsa-kingdom-come-special-the-kingdom/4050-30672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30949/","id":30949,"name":"Lex Luthor: Man of Steel","site_detail_url":"https://comicvine.gamespot.com/lex-luthor-man-of-steel/4050-30949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31712/","id":31712,"name":"Star Wars Omnibus: Menace Revealed","site_detail_url":"https://comicvine.gamespot.com/star-wars-omnibus-menace-revealed/4050-31712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24100/","id":24100,"name":"Secret Files and Origins Guide to the DC Universe","site_detail_url":"https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe/4050-24100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32113/","id":32113,"name":"Batman: Bruce Wayne-Murderer?","site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-murderer/4050-32113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32367/","id":32367,"name":"Bruce Wayne: Fugitive","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-fugitive/4050-32367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32695/","id":32695,"name":"Tales of the New Gods","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-new-gods/4050-32695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32909/","id":32909,"name":"Hawkman Secret Files and Origins","site_detail_url":"https://comicvine.gamespot.com/hawkman-secret-files-and-origins/4050-32909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33609/","id":33609,"name":"Absolute Promethea","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea/4050-33609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33613/","id":33613,"name":"Starman Secret Files","site_detail_url":"https://comicvine.gamespot.com/starman-secret-files/4050-33613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34835/","id":34835,"name":"Joker: Last Laugh Secret Files","site_detail_url":"https://comicvine.gamespot.com/joker-last-laugh-secret-files/4050-34835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9096/","id":9096,"name":"Mad-Dog","site_detail_url":"https://comicvine.gamespot.com/mad-dog/4050-9096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35780/","id":35780,"name":"Starman Omnibus","site_detail_url":"https://comicvine.gamespot.com/starman-omnibus/4050-35780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33073/","id":33073,"name":"Batman: The Return of Bruce Wayne","site_detail_url":"https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne/4050-33073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36130/","id":36130,"name":"DC Comics Presents: Brightest Day","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-brightest-day/4050-36130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32561/","id":32561,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/brightest-day/4050-32561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36420/","id":36420,"name":"Luthor","site_detail_url":"https://comicvine.gamespot.com/luthor/4050-36420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36496/","id":36496,"name":"DC Comics Presents: Chase","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-chase/4050-36496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36545/","id":36545,"name":"Legends of the DC Universe 3-D Gallery","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dc-universe-3-d-gallery/4050-36545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36721/","id":36721,"name":"Green Lantern Corps: To Be A Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps-to-be-a-lantern/4050-36721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36879/","id":36879,"name":"Jack Kirby's Fourth World Gallery","site_detail_url":"https://comicvine.gamespot.com/jack-kirbys-fourth-world-gallery/4050-36879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25804/","id":25804,"name":"The Outsiders","site_detail_url":"https://comicvine.gamespot.com/the-outsiders/4050-25804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37529/","id":37529,"name":"Absolute Green Lantern: Rebirth","site_detail_url":"https://comicvine.gamespot.com/absolute-green-lantern-rebirth/4050-37529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37598/","id":37598,"name":"Lex Luthor: Man of Steel","site_detail_url":"https://comicvine.gamespot.com/lex-luthor-man-of-steel/4050-37598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37886/","id":37886,"name":"Batman: The Wrath","site_detail_url":"https://comicvine.gamespot.com/batman-the-wrath/4050-37886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38232/","id":38232,"name":"Seven Soldiers of Victory","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory/4050-38232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38702/","id":38702,"name":"Batman: The Return of Bruce Wayne - The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-the-deluxe-editio/4050-38702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38711/","id":38711,"name":"Justice Society of America: Thy Kingdom Come","site_detail_url":"https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come/4050-38711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26584/","id":26584,"name":"Batman and Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin/4050-26584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38903/","id":38903,"name":"Promethea Covers Book","site_detail_url":"https://comicvine.gamespot.com/promethea-covers-book/4050-38903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38942/","id":38942,"name":"Transmetropolitan","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan/4050-38942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39129/","id":39129,"name":"DC Comics Presents: Batman Conspiracy","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-batman-conspiracy/4050-39129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37337/","id":37337,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/brightest-day/4050-37337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39683/","id":39683,"name":"Supergirl And The Legion Of Super-Heroes: Strange Visitor From Another Century","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-strange-v/4050-39683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39697/","id":39697,"name":"Supergirl And The Legion Of Super-Heroes: Adult Education","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-adult-edu/4050-39697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39698/","id":39698,"name":"Supergirl And The Legion Of Super-Heroes: The Dominator War","site_detail_url":"https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-the-domin/4050-39698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18216/","id":18216,"name":"Green Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern/4050-18216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40188/","id":40188,"name":"DC Comics Presents: Son of Superman","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-son-of-superman/4050-40188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40715/","id":40715,"name":"Green Lantern Movie Prequel: Abin Sur","site_detail_url":"https://comicvine.gamespot.com/green-lantern-movie-prequel-abin-sur/4050-40715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40974/","id":40974,"name":"Hawkman: Allies and Enemies","site_detail_url":"https://comicvine.gamespot.com/hawkman-allies-and-enemies/4050-40974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18677/","id":18677,"name":"Jonah Hex","site_detail_url":"https://comicvine.gamespot.com/jonah-hex/4050-18677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41791/","id":41791,"name":"Batman: Bruce Wayne: Mörder?","site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-morder/4050-41791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42442/","id":42442,"name":"Starman: A Wicked Inclination","site_detail_url":"https://comicvine.gamespot.com/starman-a-wicked-inclination/4050-42442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26365/","id":26365,"name":"Starman: Times Past","site_detail_url":"https://comicvine.gamespot.com/starman-times-past/4050-26365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42692/","id":42692,"name":"Batman and Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin/4050-42692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43687/","id":43687,"name":"Outsiders: The Great Divide","site_detail_url":"https://comicvine.gamespot.com/outsiders-the-great-divide/4050-43687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43772/","id":43772,"name":"Final Crisis Aftermath: Dance","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-dance/4050-43772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43773/","id":43773,"name":"Final Crisis Aftermath: Escape","site_detail_url":"https://comicvine.gamespot.com/final-crisis-aftermath-escape/4050-43773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43919/","id":43919,"name":"Seven Soldiers of Victory","site_detail_url":"https://comicvine.gamespot.com/seven-soldiers-of-victory/4050-43919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44191/","id":44191,"name":"JLA: Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/jla-divided-we-fall/4050-44191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44420/","id":44420,"name":"Batman Special","site_detail_url":"https://comicvine.gamespot.com/batman-special/4050-44420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44948/","id":44948,"name":"Green Lantern: The Movie Prequels","site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-movie-prequels/4050-44948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44984/","id":44984,"name":"Legion of Super-Heroes: Teenage Revolution","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution/4050-44984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44985/","id":44985,"name":"Legion of Super-Heroes: Death of A Dream","site_detail_url":"https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream/4050-44985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44965/","id":44965,"name":"Jonah Hex: Bury Me In Hell","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-bury-me-in-hell/4050-44965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45439/","id":45439,"name":"Batman and Robin: Dark Knight vs. White Knight","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-dark-knight-vs-white-knight/4050-45439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45465/","id":45465,"name":"Chase","site_detail_url":"https://comicvine.gamespot.com/chase/4050-45465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45751/","id":45751,"name":"Batman/Deathblow: After the Fire","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-after-the-fire/4050-45751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46024/","id":46024,"name":"The Batman Chronicles Gallery","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles-gallery/4050-46024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46237/","id":46237,"name":"Green Arrow/Black Canary: A League of Their Own","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own/4050-46237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47513/","id":47513,"name":"Hawkman Omnibus By Geoff Johns","site_detail_url":"https://comicvine.gamespot.com/hawkman-omnibus-by-geoff-johns/4050-47513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49259/","id":49259,"name":"Green Lantern: Rebirth","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth/4050-49259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49994/","id":49994,"name":"Batman y Robin","site_detail_url":"https://comicvine.gamespot.com/batman-y-robin/4050-49994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50161/","id":50161,"name":"Batman and Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin/4050-50161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44586/","id":44586,"name":"Steve Ditko Omnibus","site_detail_url":"https://comicvine.gamespot.com/steve-ditko-omnibus/4050-44586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51955/","id":51955,"name":"Batman: The Return of Bruce Wayne","site_detail_url":"https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne/4050-51955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10823/","id":10823,"name":"Phantom Force","site_detail_url":"https://comicvine.gamespot.com/phantom-force/4050-10823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52141/","id":52141,"name":"DC Absolute Edition","site_detail_url":"https://comicvine.gamespot.com/dc-absolute-edition/4050-52141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57538/","id":57538,"name":"Batman/Deathblow: After the Fire Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-after-the-fire-deluxe-edition/4050-57538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50909/","id":50909,"name":"DC Definitive Edition","site_detail_url":"https://comicvine.gamespot.com/dc-definitive-edition/4050-50909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61509/","id":61509,"name":"Batman & Robin","site_detail_url":"https://comicvine.gamespot.com/batman-robin/4050-61509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64203/","id":64203,"name":"Batman/Superman","site_detail_url":"https://comicvine.gamespot.com/batmansuperman/4050-64203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42719/","id":42719,"name":"Batman: The Dark Knight","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight/4050-42719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68151/","id":68151,"name":"Forever Evil: Arkham War","site_detail_url":"https://comicvine.gamespot.com/forever-evil-arkham-war/4050-68151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69864/","id":69864,"name":"DC Comics The New 52 Villains Omnibus","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus/4050-69864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56371/","id":56371,"name":"Batman and Robin Annual","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-annual/4050-56371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68700/","id":68700,"name":"Damian: Son of Batman","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman/4050-68700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75714/","id":75714,"name":"Tales of the Batman: J.H. Williams III","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-batman-jh-williams-iii/4050-75714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76952/","id":76952,"name":"Batman and Robin: Futures End","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-futures-end/4050-76952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79151/","id":79151,"name":"Starman","site_detail_url":"https://comicvine.gamespot.com/starman/4050-79151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82085/","id":82085,"name":"DC Sneak Peek: Robin: Son of Batman","site_detail_url":"https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman/4050-82085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82719/","id":82719,"name":"Robin: Son of Batman","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman/4050-82719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61513/","id":61513,"name":"Batman: The Dark Knight","site_detail_url":"https://comicvine.gamespot.com/batman-the-dark-knight/4050-61513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82470/","id":82470,"name":"Red Hood/Arsenal","site_detail_url":"https://comicvine.gamespot.com/red-hoodarsenal/4050-82470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88434/","id":88434,"name":"DC Comics Essentials: Batman And Robin","site_detail_url":"https://comicvine.gamespot.com/dc-comics-essentials-batman-and-robin/4050-88434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93940/","id":93940,"name":"Robin - Son of Batman","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman/4050-93940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91298/","id":91298,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4050-91298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91741/","id":91741,"name":"Batman: Arkham: Killer Croc","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-killer-croc/4050-91741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91284/","id":91284,"name":"Green Arrow","site_detail_url":"https://comicvine.gamespot.com/green-arrow/4050-91284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97769/","id":97769,"name":"Superman: Son of Superman","site_detail_url":"https://comicvine.gamespot.com/superman-son-of-superman/4050-97769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100600/","id":100600,"name":"Superman: Trials of the Super Son","site_detail_url":"https://comicvine.gamespot.com/superman-trials-of-the-super-son/4050-100600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102902/","id":102902,"name":"DC Justice League Essentials: Superman","site_detail_url":"https://comicvine.gamespot.com/dc-justice-league-essentials-superman/4050-102902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103269/","id":103269,"name":"Superman: Multiplicity","site_detail_url":"https://comicvine.gamespot.com/superman-multiplicity/4050-103269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103376/","id":103376,"name":"Batman Arkham: Clayface","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-clayface/4050-103376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104331/","id":104331,"name":"Superman: Reborn","site_detail_url":"https://comicvine.gamespot.com/superman-reborn/4050-104331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104641/","id":104641,"name":"Superman: Rebirth Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/superman-rebirth-deluxe-edition/4050-104641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92373/","id":92373,"name":"Justice League","site_detail_url":"https://comicvine.gamespot.com/justice-league/4050-92373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105953/","id":105953,"name":"Batman and Robin by Peter J. Tomasi and Patrick Gleason Omnibus","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-105953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92577/","id":92577,"name":"Titans","site_detail_url":"https://comicvine.gamespot.com/titans/4050-92577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91774/","id":91774,"name":"Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/wonder-woman/4050-91774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106555/","id":106555,"name":"Superman: Black Dawn","site_detail_url":"https://comicvine.gamespot.com/superman-black-dawn/4050-106555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91750/","id":91750,"name":"The Flash","site_detail_url":"https://comicvine.gamespot.com/the-flash/4050-91750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92557/","id":92557,"name":"Hal Jordan & The Green Lantern Corps","site_detail_url":"https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps/4050-92557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91285/","id":91285,"name":"Green Lanterns","site_detail_url":"https://comicvine.gamespot.com/green-lanterns/4050-91285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109346/","id":109346,"name":"X-Men: Blue: Reunion","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-reunion/4050-109346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100388/","id":100388,"name":"Titans Annual","site_detail_url":"https://comicvine.gamespot.com/titans-annual/4050-100388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90761/","id":90761,"name":"Robin - Der Sohn Des Dunklen Ritters","site_detail_url":"https://comicvine.gamespot.com/robin-der-sohn-des-dunklen-ritters/4050-90761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111130/","id":111130,"name":"Batman: Prelude To the Wedding: Robin vs. Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4050-111130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111447/","id":111447,"name":"The Unexpected","site_detail_url":"https://comicvine.gamespot.com/the-unexpected/4050-111447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111471/","id":111471,"name":"Superman Sonderband","site_detail_url":"https://comicvine.gamespot.com/superman-sonderband/4050-111471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93205/","id":93205,"name":"Suicide Squad","site_detail_url":"https://comicvine.gamespot.com/suicide-squad/4050-93205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112969/","id":112969,"name":"Suicide Squad Annual","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-annual/4050-112969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115037/","id":115037,"name":"Batman and Robin: Bad Blood: DC Essential Edition","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-bad-blood-dc-essential-edition/4050-115037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115791/","id":115791,"name":"World's Greatest Super-Heroes! Holiday Special","site_detail_url":"https://comicvine.gamespot.com/worlds-greatest-super-heroes-holiday-special/4050-115791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116062/","id":116062,"name":"Super Sons Omnibus","site_detail_url":"https://comicvine.gamespot.com/super-sons-omnibus/4050-116062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117466/","id":117466,"name":"Promethea: The 20th Anniversary Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/promethea-the-20th-anniversary-deluxe-edition/4050-117466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92542/","id":92542,"name":"Batgirl","site_detail_url":"https://comicvine.gamespot.com/batgirl/4050-92542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119374/","id":119374,"name":"Dog Days of Summer","site_detail_url":"https://comicvine.gamespot.com/dog-days-of-summer/4050-119374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112455/","id":112455,"name":"Justice League Dark","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark/4050-112455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123380/","id":123380,"name":"Green Lantern: Rebirth Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/green-lantern-rebirth-deluxe-edition/4050-123380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127622/","id":127622,"name":"Catwoman 80th Anniversary 100-Page Super Spectacular","site_detail_url":"https://comicvine.gamespot.com/catwoman-80th-anniversary-100-page-super-spectacul/4050-127622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127880/","id":127880,"name":"Joker: The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/joker-the-deluxe-edition/4050-127880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131986/","id":131986,"name":"Underworld Unleashed: The 25th Anniversary Edition","site_detail_url":"https://comicvine.gamespot.com/underworld-unleashed-the-25th-anniversary-edition/4050-131986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132094/","id":132094,"name":"Sette Soldati della Vittoria","site_detail_url":"https://comicvine.gamespot.com/sette-soldati-della-vittoria/4050-132094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132168/","id":132168,"name":"Super Sons Omnibus Expanded Edition","site_detail_url":"https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition/4050-132168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133404/","id":133404,"name":"Legends of the DC Universe: Doug Mahnke","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dc-universe-doug-mahnke/4050-133404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138329/","id":138329,"name":"Batman: Bruce Wayne - Auf der Flucht","site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-auf-der-flucht/4050-138329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138330/","id":138330,"name":"Batman/Deathblow: Nach dem Feuer","site_detail_url":"https://comicvine.gamespot.com/batmandeathblow-nach-dem-feuer/4050-138330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138647/","id":138647,"name":"Batman/Superman 2021 Annual","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-2021-annual/4050-138647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116323/","id":116323,"name":"Batman Graphic Novel Collection","site_detail_url":"https://comicvine.gamespot.com/batman-graphic-novel-collection/4050-116323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140362/","id":140362,"name":"DC Celebration: Catwoman","site_detail_url":"https://comicvine.gamespot.com/dc-celebration-catwoman/4050-140362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140521/","id":140521,"name":"The Liberty Brigade","site_detail_url":"https://comicvine.gamespot.com/the-liberty-brigade/4050-140521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141099/","id":141099,"name":"La Guerra del Joker","site_detail_url":"https://comicvine.gamespot.com/la-guerra-del-joker/4050-141099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142677/","id":142677,"name":"Robin, Hijo de Batman","site_detail_url":"https://comicvine.gamespot.com/robin-hijo-de-batman/4050-142677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142846/","id":142846,"name":"Batman/Superman: El Archivo de Mundos","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-el-archivo-de-mundos/4050-142846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143051/","id":143051,"name":"Wonder Woman Rebirth","site_detail_url":"https://comicvine.gamespot.com/wonder-woman-rebirth/4050-143051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24389/","id":24389,"name":"Batman/Superman: The Archive Of Worlds","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-the-archive-of-worlds/4050-24389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-147240/","id":147240,"name":"Transmetropolitan","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan/4050-147240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-153582/","id":153582,"name":"Aquaman - Sub Diego","site_detail_url":"https://comicvine.gamespot.com/aquaman-sub-diego/4050-153582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-155651/","id":155651,"name":"Spécial Strange","site_detail_url":"https://comicvine.gamespot.com/special-strange/4050-155651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-156755/","id":156755,"name":"Pete Townshend's Life House","site_detail_url":"https://comicvine.gamespot.com/pete-townshends-life-house/4050-156755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-157262/","id":157262,"name":"Batman and Robin by Peter J. Tomasi and Patrick Gleason","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-157262/"}],"website":"http://www.mickgray.net"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1280.json b/samples/api-data/person-details/person-4040-1280.json new file mode 100644 index 0000000..b9c7230 --- /dev/null +++ b/samples/api-data/person-details/person-4040-1280.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1280/","birth":"1963-10-23 00:00:00","count_of_isssue_appearances":null,"country":"United States","created_characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88073/","id":88073,"name":"Abatha","site_detail_url":"https://comicvine.gamespot.com/abatha/4005-88073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120765/","id":120765,"name":"Crystal Gazer","site_detail_url":"https://comicvine.gamespot.com/crystal-gazer/4005-120765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25376/","id":25376,"name":"Flicker","site_detail_url":"https://comicvine.gamespot.com/flicker/4005-25376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21493/","id":21493,"name":"Ice King","site_detail_url":"https://comicvine.gamespot.com/ice-king/4005-21493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16756/","id":16756,"name":"Nelanthe","site_detail_url":"https://comicvine.gamespot.com/nelanthe/4005-16756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21492/","id":21492,"name":"Nightshade","site_detail_url":"https://comicvine.gamespot.com/nightshade/4005-21492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118332/","id":118332,"name":"Se'adet","site_detail_url":"https://comicvine.gamespot.com/se-adet/4005-118332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79439/","id":79439,"name":"Stalker","site_detail_url":"https://comicvine.gamespot.com/stalker/4005-79439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25381/","id":25381,"name":"Troll King","site_detail_url":"https://comicvine.gamespot.com/troll-king/4005-25381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88978/","id":88978,"name":"Valynn","site_detail_url":"https://comicvine.gamespot.com/valynn/4005-88978/"}],"date_added":"2008-06-06 11:28:11","date_last_updated":"2013-03-08 20:26:56","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1280,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1269916-2893.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1269916-2893.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1269916-2893.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1269916-2893.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1269916-2893.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1269916-2893.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1269916-2893.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1269916-2893.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1269916-2893.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882324/","id":882324,"name":"Fantastic Fools","site_detail_url":"https://comicvine.gamespot.com/the-robonic-stooges-2-fantastic-fools/4000-882324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-845771/","id":845771,"name":"The Imbicile Gauntlet","site_detail_url":"https://comicvine.gamespot.com/the-robonic-stooges-1-the-imbicile-gauntlet/4000-845771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828093/","id":828093,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-thru-the-ages-1/4000-828093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820155/","id":820155,"name":null,"site_detail_url":"https://comicvine.gamespot.com/laurel-and-hardy-christmas-follies-1/4000-820155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819829/","id":819829,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city-1-t/4000-819829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820711/","id":820711,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/hey-amateur-1-gn/4000-820711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787821/","id":787821,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4000-787821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766414/","id":766414,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville-4/4000-766414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740726/","id":740726,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville-3/4000-740726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738871/","id":738871,"name":null,"site_detail_url":"https://comicvine.gamespot.com/laurel-and-hardey-meet-the-three-stooges-1/4000-738871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737626/","id":737626,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-sacrifice-1-book-2/4000-737626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736515/","id":736515,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville-2/4000-736515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731992/","id":731992,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/oz-the-complete-collection-1-tpb/4000-731992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729698/","id":729698,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-1-hc/4000-729698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-727537/","id":727537,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/casper-the-friendly-ghost-haunted-hijinks-1-volume/4000-727537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711379/","id":711379,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville-1/4000-711379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708187/","id":708187,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-astronuts-1/4000-708187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707837/","id":707837,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville-fcbd-edition-1/4000-707837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707420/","id":707420,"name":"Betrayal Part 15","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-34-betrayal-part-15/4000-707420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701339/","id":701339,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-ghostland-2/4000-701339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693381/","id":693381,"name":null,"site_detail_url":"https://comicvine.gamespot.com/barbarella-12/4000-693381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-689056/","id":689056,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4000-689056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688257/","id":688257,"name":null,"site_detail_url":"https://comicvine.gamespot.com/back-issue-108/4000-688257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684792/","id":684792,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships-1-book-1/4000-684792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683779/","id":683779,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-matinee-madness-1/4000-683779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683768/","id":683768,"name":null,"site_detail_url":"https://comicvine.gamespot.com/caspers-ghostland-100-anniversary-issue-1/4000-683768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676586/","id":676586,"name":null,"site_detail_url":"https://comicvine.gamespot.com/casper-and-hot-stuff-1/4000-676586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667686/","id":667686,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-age-of-bronze-1/4000-667686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663536/","id":663536,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/aquaman-the-legend-of-aquaman-1-tpb/4000-663536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652122/","id":652122,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/mine-a-celebration-of-liberty-and-freedom-for-all-/4000-652122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641378/","id":641378,"name":"Book Fifteen","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-15-book-fifteen/4000-641378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818846/","id":818846,"name":null,"site_detail_url":"https://comicvine.gamespot.com/oz-integral-1/4000-818846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574890/","id":574890,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-life-and-adventures-of-santa-claus-1-hc/4000-574890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533015/","id":533015,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/prez-the-first-teen-president-1-tpb/4000-533015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535260/","id":535260,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-deluxe-edition-1/4000-535260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530701/","id":530701,"name":"Book Twelve","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition-12-book-twelve/4000-530701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511545/","id":511545,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/worlds-of-color-welcome-to-oz-adult-coloring-book-/4000-511545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712283/","id":712283,"name":null,"site_detail_url":"https://comicvine.gamespot.com/little-nemo-ruckkehr-ins-schlummerland-1/4000-712283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492242/","id":492242,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-1-tpbhc/4000-492242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487193/","id":487193,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/fables-happily-ever-after-1-volume-21/4000-487193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482713/","id":482713,"name":"","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-4/4000-482713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472937/","id":472937,"name":"","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-3/4000-472937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471980/","id":471980,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/adventures-in-oz-1-volume-1/4000-471980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610280/","id":610280,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-la-ciudad-esmeralda-de-/4000-610280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468924/","id":468924,"name":"","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-2/4000-468924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464230/","id":464230,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/oz-omnibus-1-hc/4000-464230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459659/","id":459659,"name":"Who's Afraid of the Big Bad Wolf? Chapter Two of Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-142-whos-afraid-of-the-big-bad-wolf-chapter/4000-459659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462913/","id":462913,"name":"","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-1/4000-462913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436198/","id":436198,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-emerald-city-of-oz-5/4000-436198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610277/","id":610277,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-camino-a-oz-1/4000-610277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448997/","id":448997,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/legends-of-oz-dorothy-s-return-1-gn/4000-448997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447204/","id":447204,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/oz-the-emerald-city-of-oz-1-hc/4000-447204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432329/","id":432329,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-emerald-city-of-oz-4/4000-432329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424533/","id":424533,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-emerald-city-of-oz-3/4000-424533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526853/","id":526853,"name":"Das Superteam","site_detail_url":"https://comicvine.gamespot.com/fables-19-das-superteam/4000-526853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420640/","id":420640,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-emerald-city-of-oz-2/4000-420640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415238/","id":415238,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-emerald-city-of-oz-1/4000-415238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610274/","id":610274,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-dorothy-y-el-mago-en-oz/4000-610274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420229/","id":420229,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-betrayal-2-volume-4/4000-420229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415246/","id":415246,"name":"Betrayal Part 14","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-33-betrayal-part-14/4000-415246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390452/","id":390452,"name":"","site_detail_url":"https://comicvine.gamespot.com/road-to-oz-6/4000-390452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396608/","id":396608,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/oz-road-to-oz-1-hc-tpb/4000-396608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384962/","id":384962,"name":"","site_detail_url":"https://comicvine.gamespot.com/road-to-oz-5/4000-384962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395230/","id":395230,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/nexus-omnibus-2-volume-2/4000-395230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377056/","id":377056,"name":"","site_detail_url":"https://comicvine.gamespot.com/road-to-oz-4/4000-377056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610272/","id":610272,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-ozma-de-oz-1/4000-610272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366192/","id":366192,"name":"","site_detail_url":"https://comicvine.gamespot.com/road-to-oz-3/4000-366192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372431/","id":372431,"name":"The Story of the Trojan War: Betrayal Part 13","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-32-the-story-of-the-trojan-war-betra/4000-372431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360040/","id":360040,"name":"","site_detail_url":"https://comicvine.gamespot.com/road-to-oz-2/4000-360040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369067/","id":369067,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/nexus-omnibus-1-volume-1/4000-369067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355905/","id":355905,"name":"","site_detail_url":"https://comicvine.gamespot.com/road-to-oz-1/4000-355905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367749/","id":367749,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel-1-tpb/4000-367749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363123/","id":363123,"name":"Fund-Razing; Flight of Fantasy; Southern Fried Simpsons","site_detail_url":"https://comicvine.gamespot.com/simpsons-comics-presents-bart-simpson-76-fund-razi/4000-363123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371517/","id":371517,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz-1-hc-tpb/4000-371517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342874/","id":342874,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-8/4000-342874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375180/","id":375180,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel-4/4000-375180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336600/","id":336600,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-7/4000-336600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334326/","id":334326,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-6/4000-334326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610261/","id":610261,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-maravilloso-mundo-de/4000-610261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344191/","id":344191,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel-3/4000-344191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334483/","id":334483,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel-2/4000-334483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316790/","id":316790,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-5/4000-316790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325108/","id":325108,"name":"The Jester and the Magic Scepter","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel-1-the-jester-and-the-magic-s/4000-325108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388977/","id":388977,"name":"","site_detail_url":"https://comicvine.gamespot.com/der-zauberer-von-oz-1/4000-388977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304737/","id":304737,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-3/4000-304737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306586/","id":306586,"name":"Volume 16","site_detail_url":"https://comicvine.gamespot.com/fables-super-team-1-volume-16/4000-306586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306588/","id":306588,"name":"","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea-3/4000-306588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308553/","id":308553,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-4/4000-308553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610207/","id":610207,"name":"","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-mago-de-oz-1/4000-610207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301006/","id":301006,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz-2/4000-301006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371518/","id":371518,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/oz-ozma-of-oz-1-hc-tpb/4000-371518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278011/","id":278011,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-8/4000-278011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294613/","id":294613,"name":"","site_detail_url":"https://comicvine.gamespot.com/dorothy-and-the-wizard-in-oz-1/4000-294613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272415/","id":272415,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-7/4000-272415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269814/","id":269814,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-6/4000-269814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267610/","id":267610,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-5/4000-267610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294337/","id":294337,"name":"","site_detail_url":"https://comicvine.gamespot.com/oz-primer-1/4000-294337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260599/","id":260599,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-4/4000-260599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255583/","id":255583,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-3/4000-255583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259144/","id":259144,"name":"The Ascent","site_detail_url":"https://comicvine.gamespot.com/fables-101-the-ascent/4000-259144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247614/","id":247614,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-2/4000-247614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240914/","id":240914,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz-1/4000-240914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254199/","id":254199,"name":"Betrayal 12","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-31-betrayal-12/4000-254199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226222/","id":226222,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-8/4000-226222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369917/","id":369917,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/oz-marvelous-land-of-oz-1-hc/4000-369917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219573/","id":219573,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-7/4000-219573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215354/","id":215354,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-6/4000-215354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208791/","id":208791,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-5/4000-208791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219507/","id":219507,"name":"Betrayal 11","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-30-betrayal-11/4000-219507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220211/","id":220211,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/little-adventures-in-oz-2-vol-2/4000-220211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206682/","id":206682,"name":"","site_detail_url":"https://comicvine.gamespot.com/image-firsts-age-of-bronze-1/4000-206682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198628/","id":198628,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-4/4000-198628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-296098/","id":296098,"name":"Mara Jade - Die Hand des Imperators","site_detail_url":"https://comicvine.gamespot.com/star-wars-essentials-9-mara-jade-die-hand-des-impe/4000-296098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200988/","id":200988,"name":"The Wonderful Wizad Of OZ - part 1","site_detail_url":"https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc-1-the-wonderful-wizad-o/4000-200988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194829/","id":194829,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-3/4000-194829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188248/","id":188248,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-2/4000-188248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181099/","id":181099,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz-1/4000-181099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220210/","id":220210,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/little-adventures-in-oz-1-vol-1/4000-220210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301288/","id":301288,"name":"The Thrawn Trilogy","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-thrawn-trilogy-1-the-thrawn-trilogy/4000-301288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-296097/","id":296097,"name":"Das letzte Kommando","site_detail_url":"https://comicvine.gamespot.com/star-wars-essentials-8-das-letzte-kommando/4000-296097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191311/","id":191311,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz-1-hc/4000-191311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165506/","id":165506,"name":"Gifts From Oz","site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-8-gifts-from-oz/4000-165506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160727/","id":160727,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-7/4000-160727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158124/","id":158124,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-6/4000-158124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155641/","id":155641,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-5/4000-155641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153462/","id":153462,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-4/4000-153462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151831/","id":151831,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-3/4000-151831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153689/","id":153689,"name":"Betrayal 9","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-28-betrayal-9/4000-153689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150068/","id":150068,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-2/4000-150068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145606/","id":145606,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-1/4000-145606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181451/","id":181451,"name":"Betrayal (Part 10)","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-29-betrayal-part-10/4000-181451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176333/","id":176333,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook-1-one-shot/4000-176333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137390/","id":137390,"name":"War & Pieces, Part Three: The Fire Ship; Chapter Four: Fort Bravo!; Epilogue: Amnesty","site_detail_url":"https://comicvine.gamespot.com/fables-75-war-pieces-part-three-the-fire-ship-chap/4000-137390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142868/","id":142868,"name":"Betrayal 8","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-27-betrayal-8/4000-142868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127170/","id":127170,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/dark-horse-heroes-omnibus-1-volume-1/4000-127170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420235/","id":420235,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-betrayal-1-volume-3/4000-420235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114399/","id":114399,"name":"Betrayal 7","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-26-betrayal-7/4000-114399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166498/","id":166498,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/fables-sons-of-empire-1-volume-9/4000-166498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110320/","id":110320,"name":"Burning Questions","site_detail_url":"https://comicvine.gamespot.com/fables-59-burning-questions/4000-110320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490027/","id":490027,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-vol-2/4000-490027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160064/","id":160064,"name":"Betrayal 6","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-25-betrayal-6/4000-160064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160063/","id":160063,"name":"Betrayal 5","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-24-betrayal-5/4000-160063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106891/","id":106891,"name":"The Lethal Luck Of The Magister Lad!; Little Margie In Misty Magic Land; Worlds Within Worlds; How Come Nobody Likes The First American These Days?;","site_detail_url":"https://comicvine.gamespot.com/tomorrow-stories-special-2-the-lethal-luck-of-the-/4000-106891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160062/","id":160062,"name":"Betrayal 4","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-23-betrayal-4/4000-160062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147939/","id":147939,"name":"","site_detail_url":"https://comicvine.gamespot.com/adventures-in-oz-1/4000-147939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160061/","id":160061,"name":"Betrayal 3","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-22-betrayal-3/4000-160061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160060/","id":160060,"name":"Betrayal 2","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-21-betrayal-2/4000-160060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105292/","id":105292,"name":"Betrayal 1","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-20-betrayal-1/4000-105292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420236/","id":420236,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-sacrifice-1-volume-2/4000-420236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105256/","id":105256,"name":"Sacrifice 10","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-19-sacrifice-10/4000-105256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120848/","id":120848,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105255/","id":105255,"name":"Sacrifice 9","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-18-sacrifice-9/4000-105255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105254/","id":105254,"name":"Sacrifice 8","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-17-sacrifice-8/4000-105254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105253/","id":105253,"name":"Sacrifice 7","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-16-sacrifice-7/4000-105253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301843/","id":301843,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/americas-best-comics-1-tpb/4000-301843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252827/","id":252827,"name":"Catwoman: Crooked Little Town","site_detail_url":"https://comicvine.gamespot.com/catwoman-crooked-little-town-1-catwoman-crooked-li/4000-252827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143491/","id":143491,"name":"","site_detail_url":"https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105252/","id":105252,"name":"Sacrifice 6","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-15-sacrifice-6/4000-105252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105251/","id":105251,"name":"Sacrifice 5","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-14-sacrifice-5/4000-105251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78434/","id":78434,"name":"\"Hard-Loving Heroes\"","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files-3-hard-loving-heroes/4000-78434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357459/","id":357459,"name":"Special #2","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-behind-the-scenes-1-special-2/4000-357459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78464/","id":78464,"name":"Sacrifice 4","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-13-sacrifice-4/4000-78464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261551/","id":261551,"name":"","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-23/4000-261551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78463/","id":78463,"name":"Sacrifice 3","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-12-sacrifice-3/4000-78463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124442/","id":124442,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships-1-volume-1/4000-124442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78462/","id":78462,"name":"Sacrifice 2","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-11-sacrifice-2/4000-78462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131886/","id":131886,"name":"Remote Control, Part 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-40-remote-control-part-4/4000-131886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151462/","id":151462,"name":"Filth of the City","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-filth-of-the-city-1-filth-of-the/4000-151462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78461/","id":78461,"name":"Sacrifice 1","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-10-sacrifice-1/4000-78461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78460/","id":78460,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-9/4000-78460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171670/","id":171670,"name":null,"site_detail_url":"https://comicvine.gamespot.com/green-lanternsuperman-legend-of-the-green-flame-1/4000-171670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78459/","id":78459,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-8/4000-78459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161064/","id":161064,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-the-70-s-1/4000-161064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78458/","id":78458,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-7/4000-78458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78457/","id":78457,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-6/4000-78457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148133/","id":148133,"name":"America's Best Comics 64 Page Giant","site_detail_url":"https://comicvine.gamespot.com/americas-best-comics-64-page-giant-1-americas-best/4000-148133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77684/","id":77684,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-5/4000-77684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202029/","id":202029,"name":"House of Horror","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-special-1-house-of-horror/4000-202029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124503/","id":124503,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command-1-tpb/4000-124503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77683/","id":77683,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-4/4000-77683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77682/","id":77682,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-3/4000-77682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77681/","id":77681,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-2/4000-77681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77680/","id":77680,"name":"","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-1/4000-77680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407134/","id":407134,"name":"Road Trip Part 1 ; Satchel of Weltschmerz - The Body Of Social Part 2","site_detail_url":"https://comicvine.gamespot.com/oni-double-feature-9-road-trip-part-1-satchel-of-w/4000-407134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45256/","id":45256,"name":"Gang Buff; Original Gangster; Small Time; Worldwide Gangster Robots","site_detail_url":"https://comicvine.gamespot.com/gangland-3-gang-buff-original-gangster-small-time-/4000-45256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174613/","id":174613,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command-6/4000-174613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174612/","id":174612,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command-5/4000-174612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234438/","id":234438,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-bad-1/4000-234438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174611/","id":174611,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command-4/4000-174611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174606/","id":174606,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command-3/4000-174606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174605/","id":174605,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command-2/4000-174605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201216/","id":201216,"name":"JLA Gallery","site_detail_url":"https://comicvine.gamespot.com/jla-gallery-1-jla-gallery/4000-201216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52664/","id":52664,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/weird-war-tales-1-book-one/4000-52664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161208/","id":161208,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-the-unexplained-1/4000-161208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903923/","id":903923,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-1-vol-1/4000-903923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224384/","id":224384,"name":"","site_detail_url":"https://comicvine.gamespot.com/king-tiger-motorhead-2/4000-224384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270441/","id":270441,"name":"Harlan Ellison's Dream Corridor Quarterly #1","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-quarterly-1-harlan-/4000-270441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110876/","id":110876,"name":"","site_detail_url":"https://comicvine.gamespot.com/king-tiger-motorhead-1/4000-110876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161210/","id":161210,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-freaks-1/4000-161210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119316/","id":119316,"name":"Side-Show Mentality","site_detail_url":"https://comicvine.gamespot.com/motorhead-6-side-show-mentality/4000-119316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151363/","id":151363,"name":"Prez: Smells Like Teen President","site_detail_url":"https://comicvine.gamespot.com/vertigo-visions-prez-1-prez-smells-like-teen-presi/4000-151363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443909/","id":443909,"name":"","site_detail_url":"https://comicvine.gamespot.com/spandex-tights-summer-fun-1/4000-443909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249537/","id":249537,"name":"Harlan Ellison's Dream Corridor #5","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-5-harlan-ellisons-d/4000-249537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249536/","id":249536,"name":"Harlan Ellison's Dream Corridor #4","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-4-harlan-ellisons-d/4000-249536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249535/","id":249535,"name":"Harlan Ellison's Dream Corridor #3","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-3-harlan-ellisons-d/4000-249535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249534/","id":249534,"name":"Harlan Ellison's Dream Corridor #2","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-harlan-ellisons-d/4000-249534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249533/","id":249533,"name":"Harlan Ellison's Dream Corridor #1","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-1-harlan-ellisons-d/4000-249533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270397/","id":270397,"name":"Dream Corridor Special","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-special-1-dream-cor/4000-270397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51610/","id":51610,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-6/4000-51610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237698/","id":237698,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-hoaxes-1/4000-237698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159151/","id":159151,"name":"(various short stories)","site_detail_url":"https://comicvine.gamespot.com/wildstorm-rarities-1-various-short-stories/4000-159151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39732/","id":39732,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-3/4000-39732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151182/","id":151182,"name":"Sourcebook","site_detail_url":"https://comicvine.gamespot.com/wetworks-sourcebook-1-sourcebook/4000-151182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143760/","id":143760,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-golden-fleece-2-chapter-two/4000-143760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143779/","id":143779,"name":"","site_detail_url":"https://comicvine.gamespot.com/out-of-the-vortex-6/4000-143779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134522/","id":134522,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-urban-legends-1/4000-134522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136638/","id":136638,"name":"Original Graphic Novel","site_detail_url":"https://comicvine.gamespot.com/accidental-death-1-original-graphic-novel/4000-136638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129610/","id":129610,"name":"","site_detail_url":"https://comicvine.gamespot.com/wildcats-sourcebook-2/4000-129610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223224/","id":223224,"name":"Hero Zero","site_detail_url":"https://comicvine.gamespot.com/comics-greatest-world-vortex-2-hero-zero/4000-223224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37301/","id":37301,"name":"","site_detail_url":"https://comicvine.gamespot.com/cheval-noir-43/4000-37301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395876/","id":395876,"name":"Visions of Arzach","site_detail_url":"https://comicvine.gamespot.com/visions-of-arzach-1-visions-of-arzach/4000-395876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331826/","id":331826,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/nexus-two-1-volume-2/4000-331826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36346/","id":36346,"name":"Zoo-Lou vs. Editor / An Accidental Death / Nestrobber / Predator; Alec / The Selfish Giant","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-67-zoo-lou-vs-editor-an-accide/4000-36346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36219/","id":36219,"name":"Concrete; Dr. Giggles; An Accidental Death; Alec","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-66-concrete-dr-giggles-an-acci/4000-36219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129262/","id":129262,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-blue-witch-of-oz-0/4000-129262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36099/","id":36099,"name":"An Accidental Death; Dr. Giggles; Interact-O-Rama","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-65-an-accidental-death-dr-gigg/4000-36099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271713/","id":271713,"name":"Swimsuit Special","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-3-swimsuit-special/4000-271713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35529/","id":35529,"name":"Best Friends","site_detail_url":"https://comicvine.gamespot.com/aquaman-5-best-friends/4000-35529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211654/","id":211654,"name":"Within Our Reach","site_detail_url":"https://comicvine.gamespot.com/within-our-reach-1-within-our-reach/4000-211654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335340/","id":335340,"name":"Swimsuit Special 1991","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes-swimsuit-special-2-swimsuit-special/4000-335340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154119/","id":154119,"name":"Batmobile to Vigilante I","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-the-dc-universe-5-batmobile-to-vigilan/4000-154119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127422/","id":127422,"name":"Alfred Pennyworth to Spider-Girl","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-the-dc-universe-3-alfred-pennyworth-to/4000-127422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33352/","id":33352,"name":"","site_detail_url":"https://comicvine.gamespot.com/elsewhere-prince-6/4000-33352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33238/","id":33238,"name":"","site_detail_url":"https://comicvine.gamespot.com/elsewhere-prince-5/4000-33238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33118/","id":33118,"name":"","site_detail_url":"https://comicvine.gamespot.com/elsewhere-prince-4/4000-33118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33000/","id":33000,"name":"","site_detail_url":"https://comicvine.gamespot.com/elsewhere-prince-3/4000-33000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32879/","id":32879,"name":"The Princess","site_detail_url":"https://comicvine.gamespot.com/the-elsewhere-prince-2-the-princess/4000-32879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32760/","id":32760,"name":"The Jouk","site_detail_url":"https://comicvine.gamespot.com/the-elsewhere-prince-1-the-jouk/4000-32760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32675/","id":32675,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-48/4000-32675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32392/","id":32392,"name":"...In Memory Yet Green...; The Thorned Path The Origin of Val Armorr, Karate Kid!; The Unique Properties of Condo Arlik","site_detail_url":"https://comicvine.gamespot.com/secret-origins-47-in-memory-yet-green-the-thorned-/4000-32392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31851/","id":31851,"name":"","site_detail_url":"https://comicvine.gamespot.com/badger-goes-berserk-3/4000-31851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119457/","id":119457,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-origins-of-the-world-s-greatest-super-heroe/4000-119457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31033/","id":31033,"name":"Where There is a Will...!","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly-642-where-there-is-a-will/4000-31033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32103/","id":32103,"name":"Ex-Machina; And in the Depths; Gifts; Silent Night; Once Christmas Eve; Should Auld Acquaintance be Forgot","site_detail_url":"https://comicvine.gamespot.com/christmas-with-the-super-heroes-2-ex-machina-and-i/4000-32103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152058/","id":152058,"name":"The Legend of Aquaman","site_detail_url":"https://comicvine.gamespot.com/aquaman-special-1-the-legend-of-aquaman/4000-152058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30272/","id":30272,"name":"All Together Now","site_detail_url":"https://comicvine.gamespot.com/secret-origins-32-all-together-now/4000-30272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200836/","id":200836,"name":"","site_detail_url":"https://comicvine.gamespot.com/forgotten-forest-of-oz-1/4000-200836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29808/","id":29808,"name":"Where the Buffalo Roam","site_detail_url":"https://comicvine.gamespot.com/badger-37-where-the-buffalo-roam/4000-29808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328646/","id":328646,"name":"Phony Express","site_detail_url":"https://comicvine.gamespot.com/alien-worlds-1-phony-express/4000-328646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372961/","id":372961,"name":"2nd Annual Swimsuit Issue","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes-138-2nd-annual-swimsuit-issue/4000-372961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28782/","id":28782,"name":"The Magic Word","site_detail_url":"https://comicvine.gamespot.com/badger-29-the-magic-word/4000-28782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225939/","id":225939,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-ice-king-of-oz-1/4000-225939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376362/","id":376362,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes-115/4000-376362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133968/","id":133968,"name":"Shrinking Violet to Starfinger","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258307/","id":258307,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-secret-island-of-oz-1/4000-258307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140202/","id":140202,"name":"","site_detail_url":"https://comicvine.gamespot.com/elviras-house-of-mystery-7/4000-140202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258302/","id":258302,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-enchanted-apples-of-oz-1/4000-258302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26489/","id":26489,"name":"Yo, Jimbo!","site_detail_url":"https://comicvine.gamespot.com/nexus-17-yo-jimbo/4000-26489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26383/","id":26383,"name":"Into The Web","site_detail_url":"https://comicvine.gamespot.com/nexus-16-into-the-web/4000-26383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26177/","id":26177,"name":"You Asked For It","site_detail_url":"https://comicvine.gamespot.com/nexus-15-you-asked-for-it/4000-26177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26065/","id":26065,"name":"Killing Joke","site_detail_url":"https://comicvine.gamespot.com/nexus-14-killing-joke/4000-26065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25964/","id":25964,"name":"Insomnia","site_detail_url":"https://comicvine.gamespot.com/nexus-13-insomnia/4000-25964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25863/","id":25863,"name":"The Old General","site_detail_url":"https://comicvine.gamespot.com/nexus-12-the-old-general/4000-25863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25769/","id":25769,"name":"Get Clausius","site_detail_url":"https://comicvine.gamespot.com/nexus-11-get-clausius/4000-25769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25670/","id":25670,"name":"Talking Heads","site_detail_url":"https://comicvine.gamespot.com/nexus-10-talking-heads/4000-25670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421502/","id":421502,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-146/4000-421502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25568/","id":25568,"name":"Teen Angel","site_detail_url":"https://comicvine.gamespot.com/nexus-9-teen-angel/4000-25568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25440/","id":25440,"name":"The Conqueror","site_detail_url":"https://comicvine.gamespot.com/conqueror-of-the-barren-earth-4-the-conqueror/4000-25440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25476/","id":25476,"name":"Up And Out","site_detail_url":"https://comicvine.gamespot.com/nexus-8-up-and-out/4000-25476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25334/","id":25334,"name":"The Warrior!","site_detail_url":"https://comicvine.gamespot.com/conqueror-of-the-barren-earth-3-the-warrior/4000-25334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465765/","id":465765,"name":"The Potion of Kathpuur","site_detail_url":"https://comicvine.gamespot.com/talent-showcase-16-the-potion-of-kathpuur/4000-465765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196228/","id":196228,"name":"The Captive!","site_detail_url":"https://comicvine.gamespot.com/conqueror-of-the-barren-earth-2-the-captive/4000-196228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205160/","id":205160,"name":"Enigmas ; The Binding Hymn of Incorruption!","site_detail_url":"https://comicvine.gamespot.com/starslayer-26-enigmas-the-binding-hymn-of-incorrup/4000-205160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25244/","id":25244,"name":"Mysteries ; The Poet, the Child, and the Lover...!","site_detail_url":"https://comicvine.gamespot.com/starslayer-25-mysteries-the-poet-the-child-and-the/4000-25244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25245/","id":25245,"name":"The Final Battle","site_detail_url":"https://comicvine.gamespot.com/warp-19-the-final-battle/4000-25245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25130/","id":25130,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase-13/4000-25130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24978/","id":24978,"name":"My Brother's Keeper","site_detail_url":"https://comicvine.gamespot.com/warp-18-my-brother-s-keeper/4000-24978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395639/","id":395639,"name":"The White Pteron","site_detail_url":"https://comicvine.gamespot.com/legends-of-arzach-2-the-white-pteron/4000-395639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404129/","id":404129,"name":"","site_detail_url":"https://comicvine.gamespot.com/ozma-von-oz-1/4000-404129/"}],"name":"Eric Shanower","site_detail_url":"https://comicvine.gamespot.com/eric-shanower/4040-1280/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57899/","id":57899,"name":"Futures End","site_detail_url":"https://comicvine.gamespot.com/futures-end/4045-57899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58021/","id":58021,"name":"The River","site_detail_url":"https://comicvine.gamespot.com/the-river/4045-58021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58100/","id":58100,"name":"Godhead","site_detail_url":"https://comicvine.gamespot.com/godhead/4045-58100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57992/","id":57992,"name":"Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/happily-ever-after/4045-57992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56755/","id":56755,"name":"The Way of the Warrior","site_detail_url":"https://comicvine.gamespot.com/the-way-of-the-warrior/4045-56755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58191/","id":58191,"name":"Mega-City Manhunt","site_detail_url":"https://comicvine.gamespot.com/mega-city-manhunt/4045-58191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58233/","id":58233,"name":"Smoak Signals","site_detail_url":"https://comicvine.gamespot.com/smoak-signals/4045-58233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58254/","id":58254,"name":"Disco Inferno","site_detail_url":"https://comicvine.gamespot.com/disco-inferno/4045-58254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58262/","id":58262,"name":"A Stand Up Guy","site_detail_url":"https://comicvine.gamespot.com/a-stand-up-guy/4045-58262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55776/","id":55776,"name":"Panther's Rage","site_detail_url":"https://comicvine.gamespot.com/panthers-rage/4045-55776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58331/","id":58331,"name":"Alignment: Earth","site_detail_url":"https://comicvine.gamespot.com/alignment-earth/4045-58331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58396/","id":58396,"name":"Dandelion","site_detail_url":"https://comicvine.gamespot.com/dandelion/4045-58396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58688/","id":58688,"name":"Die For Me","site_detail_url":"https://comicvine.gamespot.com/die-for-me/4045-58688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58879/","id":58879,"name":"Civil War II","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii/4045-58879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59091/","id":59091,"name":"Family Matters","site_detail_url":"https://comicvine.gamespot.com/family-matters/4045-59091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59271/","id":59271,"name":"Made In Manhattan","site_detail_url":"https://comicvine.gamespot.com/made-in-manhattan/4045-59271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59324/","id":59324,"name":"The Trial of the Seven Masters","site_detail_url":"https://comicvine.gamespot.com/the-trial-of-the-seven-masters/4045-59324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57882/","id":57882,"name":"Rage","site_detail_url":"https://comicvine.gamespot.com/rage/4045-57882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59570/","id":59570,"name":"Raptor's Revenge","site_detail_url":"https://comicvine.gamespot.com/raptors-revenge/4045-59570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59685/","id":59685,"name":"The PEOPLE vs. JUSTICE LEAGUE","site_detail_url":"https://comicvine.gamespot.com/the-people-vs-justice-league/4045-59685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59605/","id":59605,"name":"Caged!","site_detail_url":"https://comicvine.gamespot.com/caged/4045-59605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59627/","id":59627,"name":"The Dying Light","site_detail_url":"https://comicvine.gamespot.com/the-dying-light/4045-59627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59604/","id":59604,"name":"The Search For Tony Stark","site_detail_url":"https://comicvine.gamespot.com/the-search-for-tony-stark/4045-59604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59755/","id":59755,"name":"Milk Wars","site_detail_url":"https://comicvine.gamespot.com/milk-wars/4045-59755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59568/","id":59568,"name":"Bad Egg","site_detail_url":"https://comicvine.gamespot.com/bad-egg/4045-59568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56692/","id":56692,"name":"Knuckles Quest","site_detail_url":"https://comicvine.gamespot.com/knuckles-quest/4045-56692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60278/","id":60278,"name":"Year of the Villain","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain/4045-60278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60329/","id":60329,"name":"Challenge of the Ghost Riders","site_detail_url":"https://comicvine.gamespot.com/challenge-of-the-ghost-riders/4045-60329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60407/","id":60407,"name":"Oz","site_detail_url":"https://comicvine.gamespot.com/oz/4045-60407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60420/","id":60420,"name":"The Pit","site_detail_url":"https://comicvine.gamespot.com/the-pit/4045-60420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60551/","id":60551,"name":"Doomed","site_detail_url":"https://comicvine.gamespot.com/doomed/4045-60551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60946/","id":60946,"name":"Jaspers' Warp","site_detail_url":"https://comicvine.gamespot.com/jaspers-warp/4045-60946/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3289/","id":3289,"name":"Warp","site_detail_url":"https://comicvine.gamespot.com/warp/4050-3289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3315/","id":3315,"name":"New Talent Showcase","site_detail_url":"https://comicvine.gamespot.com/new-talent-showcase/4050-3315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3288/","id":3288,"name":"Starslayer","site_detail_url":"https://comicvine.gamespot.com/starslayer/4050-3288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3440/","id":3440,"name":"Conqueror of the Barren Earth","site_detail_url":"https://comicvine.gamespot.com/conqueror-of-the-barren-earth/4050-3440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3563/","id":3563,"name":"Nexus","site_detail_url":"https://comicvine.gamespot.com/nexus/4050-3563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3560/","id":3560,"name":"Badger","site_detail_url":"https://comicvine.gamespot.com/badger/4050-3560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3616/","id":3616,"name":"Secret Origins","site_detail_url":"https://comicvine.gamespot.com/secret-origins/4050-3616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3973/","id":3973,"name":"Action Comics Weekly","site_detail_url":"https://comicvine.gamespot.com/action-comics-weekly/4050-3973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4284/","id":4284,"name":"Badger Goes Berserk","site_detail_url":"https://comicvine.gamespot.com/badger-goes-berserk/4050-4284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3987/","id":3987,"name":"Christmas With the Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/christmas-with-the-super-heroes/4050-3987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4058/","id":4058,"name":"Marvel Comics Presents","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4392/","id":4392,"name":"The Elsewhere Prince","site_detail_url":"https://comicvine.gamespot.com/the-elsewhere-prince/4050-4392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4539/","id":4539,"name":"Aquaman","site_detail_url":"https://comicvine.gamespot.com/aquaman/4050-4539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3739/","id":3739,"name":"Dark Horse Presents","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents/4050-3739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4297/","id":4297,"name":"Cheval Noir","site_detail_url":"https://comicvine.gamespot.com/cheval-noir/4050-4297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5377/","id":5377,"name":"Classic Star Wars: The Early Adventures","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures/4050-5377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6157/","id":6157,"name":"Gangland","site_detail_url":"https://comicvine.gamespot.com/gangland/4050-6157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7450/","id":7450,"name":"Weird War Tales","site_detail_url":"https://comicvine.gamespot.com/weird-war-tales/4050-7450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9440/","id":9440,"name":"Age of Bronze","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze/4050-9440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7211/","id":7211,"name":"Green Lantern Secret Files","site_detail_url":"https://comicvine.gamespot.com/green-lantern-secret-files/4050-7211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18252/","id":18252,"name":"Tomorrow Stories Special","site_detail_url":"https://comicvine.gamespot.com/tomorrow-stories-special/4050-18252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9723/","id":9723,"name":"Fables","site_detail_url":"https://comicvine.gamespot.com/fables/4050-9723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18757/","id":18757,"name":"King Tiger & Motorhead","site_detail_url":"https://comicvine.gamespot.com/king-tiger-motorhead/4050-18757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18750/","id":18750,"name":"Motorhead","site_detail_url":"https://comicvine.gamespot.com/motorhead/4050-18750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20005/","id":20005,"name":"Secret Origins of the World's Greatest Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/secret-origins-of-the-world-s-greatest-super-heroe/4050-20005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20244/","id":20244,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20750/","id":20750,"name":"Age of Bronze: A Thousand Ships","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships/4050-20750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20766/","id":20766,"name":"Star Wars: The Last Command","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command/4050-20766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21168/","id":21168,"name":"Dark Horse Heroes Omnibus","site_detail_url":"https://comicvine.gamespot.com/dark-horse-heroes-omnibus/4050-21168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19954/","id":19954,"name":"Who's Who in the DC Universe","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-the-dc-universe/4050-19954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21409/","id":21409,"name":"The Blue Witch of Oz","site_detail_url":"https://comicvine.gamespot.com/the-blue-witch-of-oz/4050-21409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21474/","id":21474,"name":"WildC.A.T.S Sourcebook","site_detail_url":"https://comicvine.gamespot.com/wildcats-sourcebook/4050-21474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6504/","id":6504,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-6504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18197/","id":18197,"name":"Who's Who: The Definitive Directory of the DC Universe","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4050-18197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22379/","id":22379,"name":"The Big Book of Urban Legends","site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-urban-legends/4050-22379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22777/","id":22777,"name":"Accidental Death","site_detail_url":"https://comicvine.gamespot.com/accidental-death/4050-22777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19488/","id":19488,"name":"Elvira's House of Mystery","site_detail_url":"https://comicvine.gamespot.com/elviras-house-of-mystery/4050-19488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24156/","id":24156,"name":"Alan Moore: Portrait of an Extraordinary Gentleman","site_detail_url":"https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman/4050-24156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24225/","id":24225,"name":"Indiana Jones and the Golden Fleece","site_detail_url":"https://comicvine.gamespot.com/indiana-jones-and-the-golden-fleece/4050-24225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24231/","id":24231,"name":"Out of the Vortex","site_detail_url":"https://comicvine.gamespot.com/out-of-the-vortex/4050-24231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24615/","id":24615,"name":"The Wonderful Wizard of Oz","site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz/4050-24615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25042/","id":25042,"name":"Adventures In Oz","site_detail_url":"https://comicvine.gamespot.com/adventures-in-oz/4050-25042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25076/","id":25076,"name":"America's Best Comics 64 Page Giant","site_detail_url":"https://comicvine.gamespot.com/americas-best-comics-64-page-giant/4050-25076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25648/","id":25648,"name":"Wetworks Sourcebook","site_detail_url":"https://comicvine.gamespot.com/wetworks-sourcebook/4050-25648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25700/","id":25700,"name":"Vertigo Visions: Prez","site_detail_url":"https://comicvine.gamespot.com/vertigo-visions-prez/4050-25700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25726/","id":25726,"name":"Transmetropolitan: Filth of the City","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan-filth-of-the-city/4050-25726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25772/","id":25772,"name":"Aquaman Special","site_detail_url":"https://comicvine.gamespot.com/aquaman-special/4050-25772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26589/","id":26589,"name":"WildStorm Rarities","site_detail_url":"https://comicvine.gamespot.com/wildstorm-rarities/4050-26589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26831/","id":26831,"name":"The Big Book of the 70's","site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-the-70s/4050-26831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26859/","id":26859,"name":"The Big Book of the Unexplained","site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-the-unexplained/4050-26859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26861/","id":26861,"name":"The Big Book of Freaks","site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-freaks/4050-26861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27337/","id":27337,"name":"Fables: Sons of Empire","site_detail_url":"https://comicvine.gamespot.com/fables-sons-of-empire/4050-27337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28001/","id":28001,"name":"Green Lantern/Superman: Legend of the Green Flame","site_detail_url":"https://comicvine.gamespot.com/green-lanternsuperman-legend-of-the-green-flame/4050-28001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28350/","id":28350,"name":"Star Wars: The Last Command","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-last-command/4050-28350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28619/","id":28619,"name":"The Wonderful Wizard of Oz Sketchbook","site_detail_url":"https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook/4050-28619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29301/","id":29301,"name":"The Marvelous Land of Oz","site_detail_url":"https://comicvine.gamespot.com/the-marvelous-land-of-oz/4050-29301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30926/","id":30926,"name":"Oz: The Wonderful Wizard Of Oz","site_detail_url":"https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz/4050-30926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32017/","id":32017,"name":"The Forgotten Forest Of Oz","site_detail_url":"https://comicvine.gamespot.com/the-forgotten-forest-of-oz/4050-32017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32033/","id":32033,"name":"Wonderful Wizard of Oz MGC","site_detail_url":"https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc/4050-32033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32073/","id":32073,"name":"JLA Gallery","site_detail_url":"https://comicvine.gamespot.com/jla-gallery/4050-32073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32201/","id":32201,"name":"Age of Bronze Special","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-special/4050-32201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32571/","id":32571,"name":"Image Firsts: Age of Bronze","site_detail_url":"https://comicvine.gamespot.com/image-firsts-age-of-bronze/4050-32571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32881/","id":32881,"name":"Within Our Reach","site_detail_url":"https://comicvine.gamespot.com/within-our-reach/4050-32881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33807/","id":33807,"name":"Little Adventures in Oz","site_detail_url":"https://comicvine.gamespot.com/little-adventures-in-oz/4050-33807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34224/","id":34224,"name":"Comics' Greatest World: Vortex","site_detail_url":"https://comicvine.gamespot.com/comics-greatest-world-vortex/4050-34224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34077/","id":34077,"name":"The Ice King of Oz","site_detail_url":"https://comicvine.gamespot.com/the-ice-king-of-oz/4050-34077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35475/","id":35475,"name":"The Big Book of Bad","site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-bad/4050-35475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33224/","id":33224,"name":"The Big Book Of Hoaxes","site_detail_url":"https://comicvine.gamespot.com/the-big-book-of-hoaxes/4050-33224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36477/","id":36477,"name":"Ozma of Oz","site_detail_url":"https://comicvine.gamespot.com/ozma-of-oz/4050-36477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37552/","id":37552,"name":"Harlan Ellison's Dream Corridor","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor/4050-37552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37940/","id":37940,"name":"Catwoman: Crooked Little Town","site_detail_url":"https://comicvine.gamespot.com/catwoman-crooked-little-town/4050-37940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38458/","id":38458,"name":"The Enchanted Apples of Oz","site_detail_url":"https://comicvine.gamespot.com/the-enchanted-apples-of-oz/4050-38458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38461/","id":38461,"name":"The Secret Island of Oz","site_detail_url":"https://comicvine.gamespot.com/the-secret-island-of-oz/4050-38461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38942/","id":38942,"name":"Transmetropolitan","site_detail_url":"https://comicvine.gamespot.com/transmetropolitan/4050-38942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40205/","id":40205,"name":"Harlan Ellison's Dream Corridor Special","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-special/4050-40205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40222/","id":40222,"name":"Harlan Ellison's Dream Corridor Quarterly","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-quarterly/4050-40222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31888/","id":31888,"name":"Amazing Heroes Swimsuit Special","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes-swimsuit-special/4050-31888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43157/","id":43157,"name":"Oz Primer","site_detail_url":"https://comicvine.gamespot.com/oz-primer/4050-43157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43206/","id":43206,"name":"Dorothy & the Wizard in Oz","site_detail_url":"https://comicvine.gamespot.com/dorothy-the-wizard-in-oz/4050-43206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43296/","id":43296,"name":"Star Wars Essentials","site_detail_url":"https://comicvine.gamespot.com/star-wars-essentials/4050-43296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43861/","id":43861,"name":"Star Wars: The Thrawn Trilogy","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-thrawn-trilogy/4050-43861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43917/","id":43917,"name":"America's Best Comics","site_detail_url":"https://comicvine.gamespot.com/americas-best-comics/4050-43917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44513/","id":44513,"name":"Fables: Super Team","site_detail_url":"https://comicvine.gamespot.com/fables-super-team/4050-44513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33609/","id":33609,"name":"Absolute Promethea","site_detail_url":"https://comicvine.gamespot.com/absolute-promethea/4050-33609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47369/","id":47369,"name":"Dorothy of Oz Prequel","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel/4050-47369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47704/","id":47704,"name":"Alien Worlds","site_detail_url":"https://comicvine.gamespot.com/alien-worlds/4050-47704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48047/","id":48047,"name":"Nexus: Two","site_detail_url":"https://comicvine.gamespot.com/nexus-two/4050-48047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51870/","id":51870,"name":"Road to Oz","site_detail_url":"https://comicvine.gamespot.com/road-to-oz/4050-51870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52215/","id":52215,"name":"Age of Bronze - Behind the Scenes","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-behind-the-scenes/4050-52215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18527/","id":18527,"name":"Bart Simpson","site_detail_url":"https://comicvine.gamespot.com/bart-simpson/4050-18527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53937/","id":53937,"name":"Dorothy of Oz Prequel","site_detail_url":"https://comicvine.gamespot.com/dorothy-of-oz-prequel/4050-53937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54124/","id":54124,"name":"Nexus Omnibus","site_detail_url":"https://comicvine.gamespot.com/nexus-omnibus/4050-54124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54261/","id":54261,"name":"Oz: Marvelous Land of Oz","site_detail_url":"https://comicvine.gamespot.com/oz-marvelous-land-of-oz/4050-54261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54505/","id":54505,"name":"Oz: Dorothy and the Wizard in Oz","site_detail_url":"https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz/4050-54505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54506/","id":54506,"name":"Oz: Ozma of Oz","site_detail_url":"https://comicvine.gamespot.com/oz-ozma-of-oz/4050-54506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31847/","id":31847,"name":"Amazing Heroes","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes/4050-31847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58087/","id":58087,"name":"Der Zauberer von Oz","site_detail_url":"https://comicvine.gamespot.com/der-zauberer-von-oz/4050-58087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59493/","id":59493,"name":"Legends of Arzach","site_detail_url":"https://comicvine.gamespot.com/legends-of-arzach/4050-59493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59536/","id":59536,"name":"Visions of Arzach","site_detail_url":"https://comicvine.gamespot.com/visions-of-arzach/4050-59536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44812/","id":44812,"name":"Oz: Road to Oz","site_detail_url":"https://comicvine.gamespot.com/oz-road-to-oz/4050-44812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61689/","id":61689,"name":"Ozma von Oz","site_detail_url":"https://comicvine.gamespot.com/ozma-von-oz/4050-61689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19126/","id":19126,"name":"Oni Double Feature","site_detail_url":"https://comicvine.gamespot.com/oni-double-feature/4050-19126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64686/","id":64686,"name":"The Emerald City of Oz","site_detail_url":"https://comicvine.gamespot.com/the-emerald-city-of-oz/4050-64686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65966/","id":65966,"name":"Age of Bronze: Betrayal","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-betrayal/4050-65966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65972/","id":65972,"name":"Age of Bronze: Sacrifice","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-sacrifice/4050-65972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2194/","id":2194,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-2194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71309/","id":71309,"name":"Spandex Tights Summer Fun","site_detail_url":"https://comicvine.gamespot.com/spandex-tights-summer-fun/4050-71309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72187/","id":72187,"name":"Oz: The Emerald City Of Oz","site_detail_url":"https://comicvine.gamespot.com/oz-the-emerald-city-of-oz/4050-72187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72589/","id":72589,"name":"Legends of Oz: Dorothy's Return","site_detail_url":"https://comicvine.gamespot.com/legends-of-oz-dorothys-return/4050-72589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76545/","id":76545,"name":"Little Nemo: Return to Slumberland","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland/4050-76545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76818/","id":76818,"name":"Oz Omnibus","site_detail_url":"https://comicvine.gamespot.com/oz-omnibus/4050-76818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3467/","id":3467,"name":"Talent Showcase","site_detail_url":"https://comicvine.gamespot.com/talent-showcase/4050-3467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78555/","id":78555,"name":"Adventures In Oz","site_detail_url":"https://comicvine.gamespot.com/adventures-in-oz/4050-78555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81598/","id":81598,"name":"Fables: Happily Ever After","site_detail_url":"https://comicvine.gamespot.com/fables-happily-ever-after/4050-81598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82182/","id":82182,"name":"Harlan Ellison's Dream Corridor","site_detail_url":"https://comicvine.gamespot.com/harlan-ellison-s-dream-corridor/4050-82182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82692/","id":82692,"name":"Little Nemo: Return To Slumberland","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland/4050-82692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87457/","id":87457,"name":"Worlds of Color: Welcome to Oz Adult Coloring Book","site_detail_url":"https://comicvine.gamespot.com/worlds-of-color-welcome-to-oz-adult-coloring-book/4050-87457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40871/","id":40871,"name":"Fables","site_detail_url":"https://comicvine.gamespot.com/fables/4050-40871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28208/","id":28208,"name":"Fables: The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/fables-the-deluxe-edition/4050-28208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90884/","id":90884,"name":"Prez: The First Teen President","site_detail_url":"https://comicvine.gamespot.com/prez-the-first-teen-president/4050-90884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91265/","id":91265,"name":"Little Nemo: Return To Slumberland Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/little-nemo-return-to-slumberland-deluxe-edition/4050-91265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97757/","id":97757,"name":"The Life and Adventures of Santa Claus","site_detail_url":"https://comicvine.gamespot.com/the-life-and-adventures-of-santa-claus/4050-97757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103039/","id":103039,"name":"Clásicos Ilustrados Marvel. El Mago de Oz","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-mago-de-oz/4050-103039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103048/","id":103048,"name":"Clásicos Ilustrados Marvel. El Maravilloso Mundo de Oz","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-maravilloso-mundo-de/4050-103048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103057/","id":103057,"name":"Clásicos Ilustrados Marvel. Ozma de Oz","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-ozma-de-oz/4050-103057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103060/","id":103060,"name":"Clásicos Ilustrados Marvel. Dorothy y el Mago en Oz","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-dorothy-y-el-mago-en-oz/4050-103060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103062/","id":103062,"name":"Clásicos Ilustrados Marvel. El Camino a Oz","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-el-camino-a-oz/4050-103062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103065/","id":103065,"name":"Clásicos Ilustrados Marvel. La Ciudad Esmeralda de Oz","site_detail_url":"https://comicvine.gamespot.com/clasicos-ilustrados-marvel-la-ciudad-esmeralda-de-/4050-103065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107614/","id":107614,"name":"MINE! A Celebration of Liberty And Freedom For All Benefiting Planned Parenthood","site_detail_url":"https://comicvine.gamespot.com/mine-a-celebration-of-liberty-and-freedom-for-all-/4050-107614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109306/","id":109306,"name":"Aquaman: The Legend of Aquaman","site_detail_url":"https://comicvine.gamespot.com/aquaman-the-legend-of-aquaman/4050-109306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110230/","id":110230,"name":"Image Firsts: Age of Bronze","site_detail_url":"https://comicvine.gamespot.com/image-firsts-age-of-bronze/4050-110230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112168/","id":112168,"name":"Casper & Hot Stuff","site_detail_url":"https://comicvine.gamespot.com/casper-and-hot-stuff/4050-112168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-113229/","id":113229,"name":"Casper's Ghostland","site_detail_url":"https://comicvine.gamespot.com/caspers-ghostland/4050-113229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-113265/","id":113265,"name":"The Three Stooges: Matinee Madness","site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-matinee-madness/4050-113265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-113457/","id":113457,"name":"Age of Bronze: A Thousand Ships","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-a-thousand-ships/4050-113457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26370/","id":26370,"name":"Back Issue","site_detail_url":"https://comicvine.gamespot.com/back-issue/4050-26370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81966/","id":81966,"name":"Star Wars Legends Epic Collection: The New Republic","site_detail_url":"https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4050-81966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106664/","id":106664,"name":"Barbarella","site_detail_url":"https://comicvine.gamespot.com/barbarella/4050-106664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118747/","id":118747,"name":"Casper's Spooksville FCBD Edition","site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville-fcbd-edition/4050-118747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118874/","id":118874,"name":"The Three Stooges: AstroNuts","site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-astronuts/4050-118874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119637/","id":119637,"name":"Casper's Spooksville","site_detail_url":"https://comicvine.gamespot.com/caspers-spooksville/4050-119637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119895/","id":119895,"name":"Little Nemo – Rückkehr ins Schlummerland","site_detail_url":"https://comicvine.gamespot.com/little-nemo-ruckkehr-ins-schlummerland/4050-119895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122854/","id":122854,"name":"Casper the Friendly Ghost: Haunted Hijinks","site_detail_url":"https://comicvine.gamespot.com/casper-the-friendly-ghost-haunted-hijinks/4050-122854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123282/","id":123282,"name":"Iron Man: The Mask In the Iron Man Omnibus","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-omnibus/4050-123282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123871/","id":123871,"name":"Oz: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/oz-the-complete-collection/4050-123871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125103/","id":125103,"name":"Age of Bronze: Sacrifice","site_detail_url":"https://comicvine.gamespot.com/age-of-bronze-sacrifice/4050-125103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125331/","id":125331,"name":"Laurel & Hardey Meet The Three Stooges","site_detail_url":"https://comicvine.gamespot.com/laurel-and-hardey-meet-the-three-stooges/4050-125331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129256/","id":129256,"name":"Oz: The Complete Collection – Ozma/Dorothy & The Wizard","site_detail_url":"https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4050-129256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132057/","id":132057,"name":"Oz Integral","site_detail_url":"https://comicvine.gamespot.com/oz-integral/4050-132057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132322/","id":132322,"name":"Oz: The Complete Collection - Road To/Emerald City","site_detail_url":"https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city/4050-132322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132417/","id":132417,"name":"Laurel and Hardy: Christmas Follies","site_detail_url":"https://comicvine.gamespot.com/laurel-and-hardy-christmas-follies/4050-132417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132502/","id":132502,"name":"Hey, Amateur!","site_detail_url":"https://comicvine.gamespot.com/hey-amateur/4050-132502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133709/","id":133709,"name":"The Three Stooges: Thru the Ages","site_detail_url":"https://comicvine.gamespot.com/the-three-stooges-thru-the-ages/4050-133709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135716/","id":135716,"name":"The Robonic Stooges","site_detail_url":"https://comicvine.gamespot.com/the-robonic-stooges/4050-135716/"}],"website":"http://www.ericshanower.com/es/index.shtml"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1293.json b/samples/api-data/person-details/person-4040-1293.json new file mode 100644 index 0000000..deb03fb --- /dev/null +++ b/samples/api-data/person-details/person-4040-1293.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1293/","birth":"1952-07-07 00:00:00","count_of_isssue_appearances":null,"country":"United States of America","created_characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10164/","id":10164,"name":"Andrew Draper","site_detail_url":"https://comicvine.gamespot.com/andrew-draper/4005-10164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63766/","id":63766,"name":"Bart Drake","site_detail_url":"https://comicvine.gamespot.com/bart-drake/4005-63766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6160/","id":6160,"name":"Bugg","site_detail_url":"https://comicvine.gamespot.com/bugg/4005-6160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-184821/","id":184821,"name":"Carrie Phillips","site_detail_url":"https://comicvine.gamespot.com/carrie-phillips/4005-184821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6152/","id":6152,"name":"Celia Kazantkakis","site_detail_url":"https://comicvine.gamespot.com/celia-kazantkakis/4005-6152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73975/","id":73975,"name":"Darkwolf","site_detail_url":"https://comicvine.gamespot.com/darkwolf/4005-73975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6162/","id":6162,"name":"Doctor Excess","site_detail_url":"https://comicvine.gamespot.com/doctor-excess/4005-6162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2101/","id":2101,"name":"Firestar","site_detail_url":"https://comicvine.gamespot.com/firestar/4005-2101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10162/","id":10162,"name":"Garth McGarth","site_detail_url":"https://comicvine.gamespot.com/garth-mcgarth/4005-10162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-184819/","id":184819,"name":"Harlan Brooks","site_detail_url":"https://comicvine.gamespot.com/harlan-brooks/4005-184819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103010/","id":103010,"name":"Hydra","site_detail_url":"https://comicvine.gamespot.com/hydra/4005-103010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171014/","id":171014,"name":"King Kone","site_detail_url":"https://comicvine.gamespot.com/king-kone/4005-171014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14321/","id":14321,"name":"Laurel Jones","site_detail_url":"https://comicvine.gamespot.com/laurel-jones/4005-14321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-184818/","id":184818,"name":"Liz Joyce","site_detail_url":"https://comicvine.gamespot.com/liz-joyce/4005-184818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-184855/","id":184855,"name":"Mongo Krebs","site_detail_url":"https://comicvine.gamespot.com/mongo-krebs/4005-184855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6157/","id":6157,"name":"Mr. Fun","site_detail_url":"https://comicvine.gamespot.com/mr-fun/4005-6157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14305/","id":14305,"name":"Norman Hauke","site_detail_url":"https://comicvine.gamespot.com/norman-hauke/4005-14305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14309/","id":14309,"name":"Officer Kaz","site_detail_url":"https://comicvine.gamespot.com/officer-kaz/4005-14309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103011/","id":103011,"name":"Pyro","site_detail_url":"https://comicvine.gamespot.com/pyro/4005-103011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31558/","id":31558,"name":"Real American","site_detail_url":"https://comicvine.gamespot.com/real-american/4005-31558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14311/","id":14311,"name":"Stanley Yatima","site_detail_url":"https://comicvine.gamespot.com/stanley-yatima/4005-14311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6153/","id":6153,"name":"Suicide King","site_detail_url":"https://comicvine.gamespot.com/suicide-king/4005-6153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74449/","id":74449,"name":"The Force","site_detail_url":"https://comicvine.gamespot.com/the-force/4005-74449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14320/","id":14320,"name":"Tom Jones","site_detail_url":"https://comicvine.gamespot.com/tom-jones/4005-14320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58484/","id":58484,"name":"Tracker","site_detail_url":"https://comicvine.gamespot.com/tracker/4005-58484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17660/","id":17660,"name":"Tsunami","site_detail_url":"https://comicvine.gamespot.com/tsunami/4005-17660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1285/","id":1285,"name":"Zip Zap","site_detail_url":"https://comicvine.gamespot.com/zip-zap/4005-1285/"}],"date_added":"2008-06-06 11:28:13","date_last_updated":"2014-06-21 03:51:13","death":null,"deck":"An American comic book artist and animator. He has worked on Iron Man for Marvel and Green Arrow for DC.","description":"

    He began his career in the mid 1970's working on newspaper strips such as Tarzan , Star Wars and Spider-man.

    In addition to his work in comics, he has also worked in animation. Most notably has been his work in production art and merchandising for the Star Wars franchise.

    ","email":"rickhoberg@aol.com","gender":1,"hometown":"Belton, Texas","id":1293,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/105280-172397-rick-hoberg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/105280-172397-rick-hoberg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/105280-172397-rick-hoberg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/105280-172397-rick-hoberg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/105280-172397-rick-hoberg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/105280-172397-rick-hoberg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/105280-172397-rick-hoberg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/105280-172397-rick-hoberg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/105280-172397-rick-hoberg.jpg","image_tags":"All Images,Rick Hoberg"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1074808/","id":1074808,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-modern-era-epic-collection-death-o/4000-1074808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-959870/","id":959870,"name":"Book Two: Advent of Darkness","site_detail_url":"https://comicvine.gamespot.com/new-gods-bloodlines-2-book-two-advent-of-darkness/4000-959870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-993216/","id":993216,"name":"1980 primera parte","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-la-espada-salvaje-de-conan-la-etapa/4000-993216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-992180/","id":992180,"name":"La etapa original 1","site_detail_url":"https://comicvine.gamespot.com/aliens-omnibus-1-la-etapa-original-1/4000-992180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883326/","id":883326,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/what-if-the-original-marvel-series-omnibus-1-volum/4000-883326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851636/","id":851636,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/aliens-the-original-years-omnibus-1-volume-1/4000-851636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828296/","id":828296,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/disney-kingdoms-figment-1-tpb/4000-828296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826682/","id":826682,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-omnibus-1-hc/4000-826682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824089/","id":824089,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4000-824089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816815/","id":816815,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/venomnibus-3-volume-3/4000-816815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-958121/","id":958121,"name":"1978 segunda parte","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-la-espada-salvaje-de-conan-la-etapa/4000-958121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-775032/","id":775032,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4000-775032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-760398/","id":760398,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-by-george-perez-1-hc/4000-760398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-802120/","id":802120,"name":null,"site_detail_url":"https://comicvine.gamespot.com/huntsman-3/4000-802120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733880/","id":733880,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-original-trilogy-the-movie-adaptatio/4000-733880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726224/","id":726224,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4000-726224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721748/","id":721748,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-companion-deluxe-edition/4000-721748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697649/","id":697649,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-1-vol-1/4000-697649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654034/","id":654034,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/green-arrow-old-tricks-1-volume-9/4000-654034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677398/","id":677398,"name":null,"site_detail_url":"https://comicvine.gamespot.com/huntsman-2/4000-677398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616244/","id":616244,"name":"SC/HC","site_detail_url":"https://comicvine.gamespot.com/kirby-100-1-schc/4000-616244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595666/","id":595666,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/green-arrow-the-hunt-for-the-red-dragon-1-volume-8/4000-595666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594912/","id":594912,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-classic-newspaper-comics-1-volume-1/4000-594912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583726/","id":583726,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/shang-chi-master-of-kung-fu-omnibus-3-volume-3/4000-583726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575836/","id":575836,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/green-arrow-homecoming-1-volume-7/4000-575836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578476/","id":578476,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-newspaper-st/4000-578476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557364/","id":557364,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadly-hands-of-kung-fu-omnibus-1-volume-1/4000-557364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555541/","id":555541,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-original-mar/4000-555541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549491/","id":549491,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/green-arrow-last-action-hero-1-volume-6/4000-549491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539222/","id":539222,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-the-janus-directive-1-volume-4/4000-539222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505034/","id":505034,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/flare-conflict-1-volume-3/4000-505034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502238/","id":502238,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-1-book-1/4000-502238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514024/","id":514024,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-50/4000-514024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487847/","id":487847,"name":"A New Hope","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-iv-a-new-hope-1-a-new-hope/4000-487847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462486/","id":462486,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-19/4000-462486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453031/","id":453031,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-14/4000-453031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386075/","id":386075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection-1/4000-386075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387736/","id":387736,"name":"Final Showdown","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-9-final-showdown/4000-387736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348677/","id":348677,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-the-spectre-1-vol-1/4000-348677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387735/","id":387735,"name":"Failures of Salvation","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-8-failures-of-salvation/4000-387735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387734/","id":387734,"name":"And Death Comes Softly Knocking","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-7-and-death-comes-softly-knocking/4000-387734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285341/","id":285341,"name":"Siege; In the Shadow of the Ox","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive-jla-the-80s-1-siege-in-the-shadow-o/4000-285341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387731/","id":387731,"name":"Windows of Opportunity","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-4-windows-of-opportunity/4000-387731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387730/","id":387730,"name":"The Shadows of Futures Past","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-3-the-shadows-of-futures-past/4000-387730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387729/","id":387729,"name":"He Is Eternity Smith","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-2-he-is-eternity-smith/4000-387729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249857/","id":249857,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/star-wars-omnibus-a-long-time-ago-1-volume-1/4000-249857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205844/","id":205844,"name":"Malice's Story; Who Is Indigo?; Vittoria's Story","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight-1-malices-story-who-is-indigo-vit/4000-205844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-761348/","id":761348,"name":"Acht gegen eine Welt!","site_detail_url":"https://comicvine.gamespot.com/star-wars-classics-1-acht-gegen-eine-welt/4000-761348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189772/","id":189772,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus-1-volume-1/4000-189772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111930/","id":111930,"name":"The Last Temptation of Eddie Brock (part 2 of 2)","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-39-the-last-temptation-/4000-111930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152871/","id":152871,"name":"In Each Man There Is a Demon","site_detail_url":"https://comicvine.gamespot.com/green-arrow-black-canary-for-better-or-worse-1-in-/4000-152871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106186/","id":106186,"name":"","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-winter-kills-1/4000-106186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175572/","id":175572,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-2-volume-2/4000-175572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120848/","id":120848,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97873/","id":97873,"name":"Chapter Six: Machinery","site_detail_url":"https://comicvine.gamespot.com/batman-family-6-chapter-six-machinery/4000-97873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97875/","id":97875,"name":"Chapter Eight: Blackout","site_detail_url":"https://comicvine.gamespot.com/batman-family-8-chapter-eight-blackout/4000-97875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97871/","id":97871,"name":"Chapter Four: Identity","site_detail_url":"https://comicvine.gamespot.com/batman-family-4-chapter-four-identity/4000-97871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97870/","id":97870,"name":"Chapter Three: P.O.V.","site_detail_url":"https://comicvine.gamespot.com/batman-family-3-chapter-three-pov/4000-97870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97869/","id":97869,"name":"Chapter Two: Duplicity","site_detail_url":"https://comicvine.gamespot.com/batman-family-2-chapter-two-duplicity/4000-97869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97872/","id":97872,"name":"Chapter Five: Interrogation","site_detail_url":"https://comicvine.gamespot.com/batman-family-5-chapter-five-interrogation/4000-97872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97868/","id":97868,"name":"Chapter One: Perception","site_detail_url":"https://comicvine.gamespot.com/batman-family-1-chapter-one-perception/4000-97868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113327/","id":113327,"name":"Atonement (Part 3); The Hunt (Part 3);","site_detail_url":"https://comicvine.gamespot.com/detective-comics-775-atonement-part-3-the-hunt-par/4000-113327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113326/","id":113326,"name":"Atonement (Part 2); The Hunt (Part 2);","site_detail_url":"https://comicvine.gamespot.com/detective-comics-774-atonement-part-2-the-hunt-par/4000-113326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113325/","id":113325,"name":"Atonement (Part 1); The Hunt (Part 1);","site_detail_url":"https://comicvine.gamespot.com/detective-comics-773-atonement-part-1-the-hunt-par/4000-113325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309732/","id":309732,"name":"Classic Star Wars - The Early Adventures","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-1-classic-s/4000-309732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126750/","id":126750,"name":"X-Mas","site_detail_url":"https://comicvine.gamespot.com/warrior-0-x-mas/4000-126750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152922/","id":152922,"name":"Swannie!","site_detail_url":"https://comicvine.gamespot.com/bar-sinister-4-swannie/4000-152922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41187/","id":41187,"name":"Jubberwalkies","site_detail_url":"https://comicvine.gamespot.com/bar-sinister-3-jubberwalkies/4000-41187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41043/","id":41043,"name":"Bugjuice and Jubbersnatch","site_detail_url":"https://comicvine.gamespot.com/bar-sinister-2-bugjuice-and-jubbersnatch/4000-41043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40907/","id":40907,"name":"Bar Sinister","site_detail_url":"https://comicvine.gamespot.com/bar-sinister-1-bar-sinister/4000-40907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1045385/","id":1045385,"name":"Eine neue Hoffnung","site_detail_url":"https://comicvine.gamespot.com/star-wars-4-eine-neue-hoffnung/4000-1045385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105291/","id":105291,"name":"The Subject Is... TNTNT II!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-24-the-subject-is-tntnt-ii/4000-105291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51613/","id":51613,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-9/4000-51613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105290/","id":105290,"name":"The Subject Is... Taboo!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-23-the-subject-is-taboo/4000-105290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105289/","id":105289,"name":"Machines In Wartime!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-22-machines-in-wartime/4000-105289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51612/","id":51612,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-8/4000-51612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51611/","id":51611,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-7/4000-51611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105288/","id":105288,"name":"Life In Wartime!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-21-life-in-wartime/4000-105288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122584/","id":122584,"name":"The Pilgrim Conundrum - Part 2","site_detail_url":"https://comicvine.gamespot.com/the-strangers-annual-1-the-pilgrim-conundrum-part-/4000-122584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122583/","id":122583,"name":"The Pilgrim Conundrum - Part 1","site_detail_url":"https://comicvine.gamespot.com/the-night-man-annual-1-the-pilgrim-conundrum-part-/4000-122583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105287/","id":105287,"name":"The Name Of The Game Is Fear!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-20-the-name-of-the-game-is-fear/4000-105287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409815/","id":409815,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/jumpstart-the-strangers-collection-1-tpb/4000-409815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51609/","id":51609,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-5/4000-51609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105286/","id":105286,"name":"The Teknight Before Christmas","site_detail_url":"https://comicvine.gamespot.com/the-strangers-19-the-teknight-before-christmas/4000-105286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39878/","id":39878,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-4/4000-39878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39928/","id":39928,"name":"The Pitch","site_detail_url":"https://comicvine.gamespot.com/the-strangers-18-the-pitch/4000-39928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105285/","id":105285,"name":"Blood Of An Ultra!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-17-blood-of-an-ultra/4000-105285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39585/","id":39585,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-2/4000-39585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39640/","id":39640,"name":"Party Time!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-16-party-time/4000-39640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39496/","id":39496,"name":"Homeboy!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-15-homeboy/4000-39496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39442/","id":39442,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures-1/4000-39442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39365/","id":39365,"name":"The Man Of Power","site_detail_url":"https://comicvine.gamespot.com/the-strangers-14-the-man-of-power/4000-39365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39152/","id":39152,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-a-new-hope-1-book-one/4000-39152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39213/","id":39213,"name":"This Space Still Available","site_detail_url":"https://comicvine.gamespot.com/the-strangers-13-this-space-still-available/4000-39213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39074/","id":39074,"name":"Omega And Alpha","site_detail_url":"https://comicvine.gamespot.com/the-strangers-12-omega-and-alpha/4000-39074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38932/","id":38932,"name":"Detour!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-11-detour/4000-38932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38783/","id":38783,"name":"The Door To Doom","site_detail_url":"https://comicvine.gamespot.com/the-strangers-10-the-door-to-doom/4000-38783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38641/","id":38641,"name":"Taken By This Guy!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-9-taken-by-this-guy/4000-38641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38491/","id":38491,"name":"Taken By The Sky!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-8-taken-by-the-sky/4000-38491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38244/","id":38244,"name":"Prototype-A Behavior!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-7-prototype-a-behavior/4000-38244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38088/","id":38088,"name":"The Tao Of Physiques!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-6-the-tao-of-physiques/4000-38088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122323/","id":122323,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultraverse-premiere-0/4000-122323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37939/","id":37939,"name":"Dynamic Tension","site_detail_url":"https://comicvine.gamespot.com/the-strangers-5-dynamic-tension/4000-37939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66769/","id":66769,"name":"Killing Camp Part 3","site_detail_url":"https://comicvine.gamespot.com/green-arrow-78-killing-camp-part-3/4000-66769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37780/","id":37780,"name":"Strangers In The Night","site_detail_url":"https://comicvine.gamespot.com/hardcase-4-strangers-in-the-night/4000-37780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37787/","id":37787,"name":"Between A Rock And A Hardcase","site_detail_url":"https://comicvine.gamespot.com/the-strangers-4-between-a-rock-and-a-hardcase/4000-37787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66768/","id":66768,"name":"Killing Camp Part 2","site_detail_url":"https://comicvine.gamespot.com/green-arrow-77-killing-camp-part-2/4000-66768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37649/","id":37649,"name":"TNTNT","site_detail_url":"https://comicvine.gamespot.com/the-strangers-3-tntnt/4000-37649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66767/","id":66767,"name":"Killing Camp Part 1","site_detail_url":"https://comicvine.gamespot.com/green-arrow-76-killing-camp-part-1/4000-66767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37508/","id":37508,"name":"Hey! Hugh! Get Off'a McCloud!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-2-hey-hugh-get-offa-mccloud/4000-37508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37354/","id":37354,"name":"Jumpstart!","site_detail_url":"https://comicvine.gamespot.com/the-strangers-1-jumpstart/4000-37354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66766/","id":66766,"name":"Auld Acquaintance","site_detail_url":"https://comicvine.gamespot.com/green-arrow-75-auld-acquaintance/4000-66766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66763/","id":66763,"name":"Wild in the Sheets Part Two","site_detail_url":"https://comicvine.gamespot.com/green-arrow-72-wild-in-the-sheets-part-two/4000-66763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66762/","id":66762,"name":"Wild in the Streets","site_detail_url":"https://comicvine.gamespot.com/green-arrow-71-wild-in-the-streets/4000-66762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66761/","id":66761,"name":"Reunion Tour Part 2","site_detail_url":"https://comicvine.gamespot.com/green-arrow-70-reunion-tour-part-2/4000-66761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384039/","id":384039,"name":"","site_detail_url":"https://comicvine.gamespot.com/malibu-signature-series-1/4000-384039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66760/","id":66760,"name":"Reunion Tour Part 1","site_detail_url":"https://comicvine.gamespot.com/green-arrow-69-reunion-tour-part-1/4000-66760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66757/","id":66757,"name":"The Hunt for the Red Dragon Part 4","site_detail_url":"https://comicvine.gamespot.com/green-arrow-66-the-hunt-for-the-red-dragon-part-4/4000-66757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66756/","id":66756,"name":"The Hunt for the Red Dragon Part 3","site_detail_url":"https://comicvine.gamespot.com/green-arrow-65-the-hunt-for-the-red-dragon-part-3/4000-66756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66755/","id":66755,"name":"The Hunt for the Red Dragon Part 2","site_detail_url":"https://comicvine.gamespot.com/green-arrow-64-the-hunt-for-the-red-dragon-part-2/4000-66755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66754/","id":66754,"name":"The Hunt for the Red Dragon Part 1","site_detail_url":"https://comicvine.gamespot.com/green-arrow-63-the-hunt-for-the-red-dragon-part-1/4000-66754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66751/","id":66751,"name":"Predator Part 2","site_detail_url":"https://comicvine.gamespot.com/green-arrow-60-predator-part-2/4000-66751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66750/","id":66750,"name":"Predator","site_detail_url":"https://comicvine.gamespot.com/green-arrow-59-predator/4000-66750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122382/","id":122382,"name":"The Devourer of the Dead","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-196-the-devourer-of-the-/4000-122382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66749/","id":66749,"name":"...And Not A Drop To Drink Part 2","site_detail_url":"https://comicvine.gamespot.com/green-arrow-58-and-not-a-drop-to-drink-part-2/4000-66749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35458/","id":35458,"name":"Ballard Part 3","site_detail_url":"https://comicvine.gamespot.com/warlord-3-ballard-part-3/4000-35458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66748/","id":66748,"name":"...And Not A Drop to Drink","site_detail_url":"https://comicvine.gamespot.com/green-arrow-57-and-not-a-drop-to-drink/4000-66748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35350/","id":35350,"name":"Ballad Part 2","site_detail_url":"https://comicvine.gamespot.com/warlord-2-ballad-part-2/4000-35350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35371/","id":35371,"name":"The Witch Queen of Yamatai","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-194-the-witch-queen-of-y/4000-35371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66747/","id":66747,"name":"Justice is Mine Part 2","site_detail_url":"https://comicvine.gamespot.com/green-arrow-56-justice-is-mine-part-2/4000-66747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414210/","id":414210,"name":"James Bond: Permission to Die","site_detail_url":"https://comicvine.gamespot.com/james-bond-permission-to-die-1-james-bond-permissi/4000-414210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35243/","id":35243,"name":"Ballad Part 1: Kilt Him a B'ar","site_detail_url":"https://comicvine.gamespot.com/warlord-1-ballad-part-1-kilt-him-a-b-ar/4000-35243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66746/","id":66746,"name":"Justice is Mine","site_detail_url":"https://comicvine.gamespot.com/green-arrow-55-justice-is-mine/4000-66746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66745/","id":66745,"name":"The List Part Two","site_detail_url":"https://comicvine.gamespot.com/green-arrow-54-the-list-part-two/4000-66745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66744/","id":66744,"name":"Old Friends","site_detail_url":"https://comicvine.gamespot.com/green-arrow-53-old-friends/4000-66744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252900/","id":252900,"name":"The Lumberjack of Tomorrow; Teevee Jeebies; Takin' A Dive!","site_detail_url":"https://comicvine.gamespot.com/roger-rabbits-toontown-3-the-lumberjack-of-tomorro/4000-252900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33711/","id":33711,"name":"","site_detail_url":"https://comicvine.gamespot.com/james-bond-permission-to-die-3/4000-33711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198235/","id":198235,"name":"More Deaths Than One Must Die!","site_detail_url":"https://comicvine.gamespot.com/new-gods-28-more-deaths-than-one-must-die/4000-198235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66741/","id":66741,"name":"Home is the Hunter","site_detail_url":"https://comicvine.gamespot.com/green-arrow-50-home-is-the-hunter/4000-66741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34463/","id":34463,"name":"Duel","site_detail_url":"https://comicvine.gamespot.com/flare-5-duel/4000-34463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66740/","id":66740,"name":"The Last Lion","site_detail_url":"https://comicvine.gamespot.com/green-arrow-49-the-last-lion/4000-66740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154150/","id":154150,"name":"Big Barda to Wanderers","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-the-dc-universe-11-big-barda-to-wander/4000-154150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198234/","id":198234,"name":"Memories of A Stranger","site_detail_url":"https://comicvine.gamespot.com/new-gods-27-memories-of-a-stranger/4000-198234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66736/","id":66736,"name":"Raising a Rock as...","site_detail_url":"https://comicvine.gamespot.com/green-arrow-45-raising-a-rock-as/4000-66736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66735/","id":66735,"name":"Rock and Runes Part 1","site_detail_url":"https://comicvine.gamespot.com/green-arrow-44-rock-and-runes-part-1/4000-66735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119337/","id":119337,"name":"Ares to Yuga Khan","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-the-dc-universe-8-ares-to-yuga-khan/4000-119337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198230/","id":198230,"name":"Remembrance","site_detail_url":"https://comicvine.gamespot.com/new-gods-22-remembrance/4000-198230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198229/","id":198229,"name":"Patricide","site_detail_url":"https://comicvine.gamespot.com/new-gods-21-patricide/4000-198229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66729/","id":66729,"name":"The Black Arrow Saga, Part 4 Hunters and Killers","site_detail_url":"https://comicvine.gamespot.com/green-arrow-38-the-black-arrow-saga-part-4-hunters/4000-66729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198228/","id":198228,"name":"The Author of my Being!","site_detail_url":"https://comicvine.gamespot.com/new-gods-20-the-author-of-my-being/4000-198228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66728/","id":66728,"name":"The Black Arrow Saga, Part Three Quarry","site_detail_url":"https://comicvine.gamespot.com/green-arrow-37-the-black-arrow-saga-part-three-qua/4000-66728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33175/","id":33175,"name":"Little China in Big Trouble; Cotton-Tailspin","site_detail_url":"https://comicvine.gamespot.com/roger-rabbit-4-little-china-in-big-trouble-cotton-/4000-33175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198227/","id":198227,"name":"Homecoming!","site_detail_url":"https://comicvine.gamespot.com/new-gods-19-homecoming/4000-198227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33060/","id":33060,"name":"Rollercoaster Riot; 20,000 Leaks Under the Sink","site_detail_url":"https://comicvine.gamespot.com/roger-rabbit-3-rollercoaster-riot-20000-leaks-unde/4000-33060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32945/","id":32945,"name":"The Color of Trouble!; Gym Dandy","site_detail_url":"https://comicvine.gamespot.com/roger-rabbit-2-the-color-of-trouble-gym-dandy/4000-32945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32819/","id":32819,"name":"The Trouble With Toons!; Good Neighbor Roger","site_detail_url":"https://comicvine.gamespot.com/roger-rabbit-1-the-trouble-with-toons-good-neighbo/4000-32819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198224/","id":198224,"name":"Super Ego!","site_detail_url":"https://comicvine.gamespot.com/new-gods-16-super-ego/4000-198224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31387/","id":31387,"name":"The Dead of Knight","site_detail_url":"https://comicvine.gamespot.com/checkmate-19-the-dead-of-knight/4000-31387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31256/","id":31256,"name":"The Janus Directive, Part 3 - Shadow Knights","site_detail_url":"https://comicvine.gamespot.com/checkmate-16-the-janus-directive-part-3-shadow-kni/4000-31256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30960/","id":30960,"name":"A Knight in the Tropics","site_detail_url":"https://comicvine.gamespot.com/checkmate-13-a-knight-in-the-tropics/4000-30960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133030/","id":133030,"name":"Ultra-Humanite to Zuggernaut","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30016/","id":30016,"name":"Destiny","site_detail_url":"https://comicvine.gamespot.com/power-girl-4-destiny/4000-30016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29932/","id":29932,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-9/4000-29932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29907/","id":29907,"name":"Heritage","site_detail_url":"https://comicvine.gamespot.com/power-girl-3-heritage/4000-29907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29785/","id":29785,"name":"Tapestry","site_detail_url":"https://comicvine.gamespot.com/power-girl-2-tapestry/4000-29785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29697/","id":29697,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-8/4000-29697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29667/","id":29667,"name":"Threads!","site_detail_url":"https://comicvine.gamespot.com/power-girl-1-threads/4000-29667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29471/","id":29471,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-7/4000-29471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372961/","id":372961,"name":"2nd Annual Swimsuit Issue","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes-138-2nd-annual-swimsuit-issue/4000-372961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29252/","id":29252,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-6/4000-29252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29134/","id":29134,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-5/4000-29134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28916/","id":28916,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-4/4000-28916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28791/","id":28791,"name":"Death Masque/The Threat of the Sensuous Siren","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-3-death-masquethe-threat-of-the-sen/4000-28791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28679/","id":28679,"name":"Felicity/The Messiah Syndrome","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-2-felicitythe-messiah-syndrome/4000-28679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28557/","id":28557,"name":"Final Showdown","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-1-final-showdown/4000-28557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28129/","id":28129,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-5/4000-28129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27916/","id":27916,"name":"","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-4/4000-27916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133974/","id":133974,"name":"Tim Trench to Universo","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27695/","id":27695,"name":"Windows of Opportunity","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-3-windows-of-opportunity/4000-27695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27400/","id":27400,"name":"The Shadows of Futures Past","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-2-the-shadows-of-futures-past/4000-27400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133954/","id":133954,"name":"Puzzler to Roy Raymond","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27195/","id":27195,"name":"He Is Eternity Smith","site_detail_url":"https://comicvine.gamespot.com/eternity-smith-1-he-is-eternity-smith/4000-27195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27085/","id":27085,"name":"A Renaissance of Magic!","site_detail_url":"https://comicvine.gamespot.com/iron-man-209-a-renaissance-of-magic/4000-27085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27063/","id":27063,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-dnagents-11/4000-27063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26838/","id":26838,"name":"If this is Love, why do My Teeth Hurt?","site_detail_url":"https://comicvine.gamespot.com/dc-challenge-8-if-this-is-love-why-do-my-teeth-hur/4000-26838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26739/","id":26739,"name":"Kaleidoscope","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-57-kaleidoscope/4000-26739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334076/","id":334076,"name":"Deep Dreams","site_detail_url":"https://comicvine.gamespot.com/three-dimensional-dnagents-1-deep-dreams/4000-334076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140527/","id":140527,"name":"Issue Four","site_detail_url":"https://comicvine.gamespot.com/the-official-teen-titans-index-4-issue-four/4000-140527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140268/","id":140268,"name":"Force of Nature","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-annual-3-force-of-nature/4000-140268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119771/","id":119771,"name":"The World of Superman Masqueraders!; SOS from Nowhere!; The Puzzle of the Purloined Fortress!","site_detail_url":"https://comicvine.gamespot.com/action-comics-572-the-world-of-superman-masquerade/4000-119771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25927/","id":25927,"name":"Into the Valley of the Shadow...!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-86-into-the-valley-of-the-shado/4000-25927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25634/","id":25634,"name":"Day Of Doom","site_detail_url":"https://comicvine.gamespot.com/batman-385-day-of-doom/4000-25634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25542/","id":25542,"name":"In the Shadow of the Ox","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-239-in-the-shadow-of-the/4000-25542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25528/","id":25528,"name":"Broken Dates","site_detail_url":"https://comicvine.gamespot.com/batman-384-broken-dates/4000-25528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107930/","id":107930,"name":"Automan to Blackhawk Island","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-107930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25329/","id":25329,"name":"The Vengeance Spiral","site_detail_url":"https://comicvine.gamespot.com/batman-382-the-vengeance-spiral/4000-25329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106579/","id":106579,"name":"Abel to Auron","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-106579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124727/","id":124727,"name":"Darkly Moved the Pawns","site_detail_url":"https://comicvine.gamespot.com/batman-381-darkly-moved-the-pawns/4000-124727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25202/","id":25202,"name":"End of the Bat","site_detail_url":"https://comicvine.gamespot.com/batman-380-end-of-the-bat/4000-25202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315667/","id":315667,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge-4-surge/4000-315667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24831/","id":24831,"name":"Nobody Gets Out of Paradise Valley Alive!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-39-nobody-gets-out-of-paradise-v/4000-24831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24734/","id":24734,"name":"Detroit is Dynamite!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-38-detroit-is-dynamite/4000-24734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315666/","id":315666,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge-3-surge/4000-315666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23779/","id":23779,"name":"Justice Society of America","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual-3-justice-society-of-amer/4000-23779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24647/","id":24647,"name":"Lightning in Berlin!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-37-lightning-in-berlin/4000-24647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24580/","id":24580,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge-2-surge/4000-24580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23773/","id":23773,"name":"...Land Where Our Fathers Died...!","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-annual-1-land-where-our-f/4000-23773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24449/","id":24449,"name":"...That Earths May Live!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-35-that-earths-may-live/4000-24449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24486/","id":24486,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge-1-surge/4000-24486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24349/","id":24349,"name":"The Wrath of Tsunami!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-34-the-wrath-of-tsunami/4000-24349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24250/","id":24250,"name":"The Battle of Santa Barbara--Times Two!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-33-the-battle-of-santa-barbara-t/4000-24250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543857/","id":543857,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-der-barbar-9/4000-543857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24147/","id":24147,"name":"Crisis on Earth-X! The Prequel","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-32-crisis-on-earth-x-the-prequel/4000-24147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24038/","id":24038,"name":"Uncle Sam Wants You!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-31-uncle-sam-wants-you/4000-24038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23582/","id":23582,"name":"The Naked Ape","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-20-the-nak/4000-23582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23417/","id":23417,"name":"The Once-And-Future War!","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-61-the-once-and-future-war/4000-23417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23415/","id":23415,"name":"Frogzilla's Big Croak-Up!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-19-frogzil/4000-23415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23334/","id":23334,"name":"The Great Gnudini; Here Comes The Sun!; You Scream Ice Cream!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-18-the-gre/4000-23334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140256/","id":140256,"name":"If I Should Die Before I Wake...","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-annual-1-if-i-should-die/4000-140256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23253/","id":23253,"name":"Road To Disaster! / Rabbit, Don't Run; House Of Frankenswine","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-17-road-to/4000-23253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23165/","id":23165,"name":"The Body-Napping of Jim Corrigan","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-199-the-body-napping-of-jim/4000-23165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23166/","id":23166,"name":"The Dread Tread of the Screeching Tire","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-16-the-dre/4000-23166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23082/","id":23082,"name":"Terrorists Of The Heart","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-198-terrorists-of-the-heart/4000-23082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23083/","id":23083,"name":"Crisis on Earth C-Minus!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-15-crisis-/4000-23083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23001/","id":23001,"name":"...Or Give Me Death, Part 2 / Green Magic / Green Magic Part Two","site_detail_url":"https://comicvine.gamespot.com/green-lantern-163-or-give-me-death-part-2-green-ma/4000-23001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22922/","id":22922,"name":"...Or Give Me Death! / The Price You Pay! / Apprentice","site_detail_url":"https://comicvine.gamespot.com/green-lantern-162-or-give-me-death-the-price-you-p/4000-22922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22823/","id":22823,"name":"Vengeance from Valhalla!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-18-vengeance-from-valhalla/4000-22823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22758/","id":22758,"name":"The Wuz-Wolf's Night to Howl / The Sinister Salamandroid!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew-11-the-wuz/4000-22758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22750/","id":22750,"name":"To Slay the Body Electric!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-17-to-slay-the-body-electric/4000-22750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22629/","id":22629,"name":"The Magnetic Marauder!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-16-the-magnetic-marauder/4000-22629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269310/","id":269310,"name":"Daredevil also featuring Black Panther, Shanna, Black Goliath, Human Fly & Dazzler","site_detail_url":"https://comicvine.gamespot.com/the-marvel-comics-index-9b-daredevil-also-featurin/4000-269310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20603/","id":20603,"name":"Black Lotus and Yellow Death","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-55-black-lotus-and-yello/4000-20603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366800/","id":366800,"name":"What if Someone Else had Become THe Amazing Spider-Man?","site_detail_url":"https://comicvine.gamespot.com/spider-man-special-1979w-what-if-someone-else-had-/4000-366800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19725/","id":19725,"name":"What If Shang-Chi Master of Kung Fu Fought on the Side of Fu Manchu?","site_detail_url":"https://comicvine.gamespot.com/what-if-16-what-if-shang-chi-master-of-kung-fu-fou/4000-19725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19296/","id":19296,"name":"The Liberty Legion Busts Loose!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-37-the-liberty-legion-busts-loose/4000-19296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368604/","id":368604,"name":"Star Wars Annual 1978","site_detail_url":"https://comicvine.gamespot.com/star-wars-annual-1-star-wars-annual-1978/4000-368604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19041/","id":19041,"name":"Havoc on the Homefront!","site_detail_url":"https://comicvine.gamespot.com/the-invaders-35-havoc-on-the-homefront/4000-19041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269307/","id":269307,"name":"Heroes from Tales of Suspense Book One: Captain America","site_detail_url":"https://comicvine.gamespot.com/the-marvel-comics-index-8a-heroes-from-tales-of-su/4000-269307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18431/","id":18431,"name":"Behemoth From the World Below","site_detail_url":"https://comicvine.gamespot.com/star-wars-10-behemoth-from-the-world-below/4000-18431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17014/","id":17014,"name":"Revenge of the Barbarian","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-super-special-2-revenge-of-the-barba/4000-17014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18266/","id":18266,"name":"What if Someone Else besides Spider-Man had been Bitten by the Radioactive Spider?","site_detail_url":"https://comicvine.gamespot.com/what-if-7-what-if-someone-else-besides-spider-man-/4000-18266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103368/","id":103368,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-special-edition-featuring-star-wars-1/4000-103368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18060/","id":18060,"name":"The Final Chapter?","site_detail_url":"https://comicvine.gamespot.com/star-wars-6-the-final-chapter/4000-18060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18063/","id":18063,"name":"What if the Fantastic Four had different powers?","site_detail_url":"https://comicvine.gamespot.com/what-if-6-what-if-the-fantastic-four-had-different/4000-18063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17980/","id":17980,"name":"Lo, The Moons Of Yavin!","site_detail_url":"https://comicvine.gamespot.com/star-wars-5-lo-the-moons-of-yavin/4000-17980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364671/","id":364671,"name":"November 1977","site_detail_url":"https://comicvine.gamespot.com/tarzan-monthly-1-november-1977/4000-364671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17890/","id":17890,"name":"In Battle With Darth Vader","site_detail_url":"https://comicvine.gamespot.com/star-wars-4-in-battle-with-darth-vader/4000-17890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112827/","id":112827,"name":"What if...Captain America and Bucky Had Both Survived World War II?","site_detail_url":"https://comicvine.gamespot.com/what-if-5-what-ifcaptain-america-and-bucky-had-bot/4000-112827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17888/","id":17888,"name":"Torrent of Doom","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-23-torrent-of-doom/4000-17888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331343/","id":331343,"name":"No. 13","site_detail_url":"https://comicvine.gamespot.com/tarzan-weekly-903-no-13/4000-331343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331340/","id":331340,"name":"No. 5","site_detail_url":"https://comicvine.gamespot.com/tarzan-weekly-709-no-5/4000-331340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331339/","id":331339,"name":"No. 4","site_detail_url":"https://comicvine.gamespot.com/tarzan-weekly-702-no-4/4000-331339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17509/","id":17509,"name":"The City of the Crawling Dead!","site_detail_url":"https://comicvine.gamespot.com/kull-the-destroyer-21-the-city-of-the-crawling-dea/4000-17509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17038/","id":17038,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-15/4000-17038/"}],"name":"Rick Hoberg","site_detail_url":"https://comicvine.gamespot.com/rick-hoberg/4040-1293/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56772/","id":56772,"name":"\"Grimm Fairy Tales: Inferno\" Inferno","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-inferno-inferno/4045-56772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56774/","id":56774,"name":"\"Batman\" Face the Face","site_detail_url":"https://comicvine.gamespot.com/batman-face-the-face/4045-56774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56819/","id":56819,"name":"\"Penance: Relentless\" Relentless","site_detail_url":"https://comicvine.gamespot.com/penance-relentless-relentless/4045-56819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56885/","id":56885,"name":"\"Dark Avengers\" Public Exposure","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-public-exposure/4045-56885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56900/","id":56900,"name":"\"Wolverine: The Best There Is\" Broken Quarantine","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-best-there-is-broken-quarantine/4045-56900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56674/","id":56674,"name":"\"Avengers/X-Men\" Avengers vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengersx-men-avengers-vs-x-men/4045-56674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56948/","id":56948,"name":"\"The Amazing Spider-Man\" Danger Zone","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-danger-zone/4045-56948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57029/","id":57029,"name":"\"Executive Assistant\" Executive Extinction","site_detail_url":"https://comicvine.gamespot.com/executive-assistant-executive-extinction/4045-57029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55906/","id":55906,"name":"\"Astonishing X-Men\" Ghost Boxes","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-ghost-boxes/4045-55906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57216/","id":57216,"name":"\"Nightwing\" Renegade","site_detail_url":"https://comicvine.gamespot.com/nightwing-renegade/4045-57216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57080/","id":57080,"name":"\"Batman\" Zero Year","site_detail_url":"https://comicvine.gamespot.com/batman-zero-year/4045-57080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57420/","id":57420,"name":"\"Justice League Dark\" Forever Evil: Blight","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-forever-evil-blight/4045-57420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57448/","id":57448,"name":"\"Ultimate Comics\" Cataclysm","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-cataclysm/4045-57448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57167/","id":57167,"name":"\"Avengers\" Infinity","site_detail_url":"https://comicvine.gamespot.com/avengers-infinity/4045-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57674/","id":57674,"name":"\"Iron Man\" The Big Bang Theory","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-big-bang-theory/4045-57674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57637/","id":57637,"name":"\"Detective Comics\" Gothtopia","site_detail_url":"https://comicvine.gamespot.com/detective-comics-gothtopia/4045-57637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57724/","id":57724,"name":"\"Gotham Central\" Life is Full of Disappointments","site_detail_url":"https://comicvine.gamespot.com/gotham-central-life-is-full-of-disappointments/4045-57724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57461/","id":57461,"name":"\"Captain America\" Loose Nuke","site_detail_url":"https://comicvine.gamespot.com/captain-america-loose-nuke/4045-57461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57800/","id":57800,"name":"\"Avengers\" Original Sin","site_detail_url":"https://comicvine.gamespot.com/avengers-original-sin/4045-57800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57964/","id":57964,"name":"\"Thunderbolts\" The Punisher vs. The Thunderbolts","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-the-punisher-vs-the-thunderbolts/4045-57964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58129/","id":58129,"name":"\"Batman\" Majin-Gogo no Maki","site_detail_url":"https://comicvine.gamespot.com/batman-majin-gogo-no-maki/4045-58129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58160/","id":58160,"name":"\"Batman Cacophony\" Cacophony","site_detail_url":"https://comicvine.gamespot.com/batman-cacophony-cacophony/4045-58160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58100/","id":58100,"name":"\"Green Lantern\" Godhead","site_detail_url":"https://comicvine.gamespot.com/green-lantern-godhead/4045-58100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58251/","id":58251,"name":"\"DC Multiverse\" Convergence","site_detail_url":"https://comicvine.gamespot.com/dc-multiverse-convergence/4045-58251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58266/","id":58266,"name":"\"Secret Wars\" Battleworld","site_detail_url":"https://comicvine.gamespot.com/secret-wars-battleworld/4045-58266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58461/","id":58461,"name":"\"Usagi Yojimbo\" The Thief and the Kunoichi","site_detail_url":"https://comicvine.gamespot.com/usagi-yojimbo-the-thief-and-the-kunoichi/4045-58461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57615/","id":57615,"name":"\"Grimm Fairy Tales\" Age of Darkness","site_detail_url":"https://comicvine.gamespot.com/grimm-fairy-tales-age-of-darkness/4045-57615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58674/","id":58674,"name":"\"Number of the Beast\" Number of the Beast","site_detail_url":"https://comicvine.gamespot.com/number-of-the-beast-number-of-the-beast/4045-58674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58766/","id":58766,"name":"\"Spider-Man\" Marvel Comics' Fast Lane","site_detail_url":"https://comicvine.gamespot.com/spider-man-marvel-comics-fast-lane/4045-58766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58839/","id":58839,"name":"\"Jérôme K. Jérôme Bloche\" La Lettre","site_detail_url":"https://comicvine.gamespot.com/jerome-k-jerome-bloche-la-lettre/4045-58839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58838/","id":58838,"name":"\"Jérôme K. Jérôme Bloche\" Fin de Contrat","site_detail_url":"https://comicvine.gamespot.com/jerome-k-jerome-bloche-fin-de-contrat/4045-58838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55712/","id":55712,"name":"\"Extreme\" Extreme Sacrifice","site_detail_url":"https://comicvine.gamespot.com/extreme-extreme-sacrifice/4045-55712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59012/","id":59012,"name":"\"The Uncanny X-Men\" A Green and Pleasant Land","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-a-green-and-pleasant-land/4045-59012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58879/","id":58879,"name":"\"Avengers\" Civil War II","site_detail_url":"https://comicvine.gamespot.com/avengers-civil-war-ii/4045-58879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58921/","id":58921,"name":"\"Dent d'Ours\" Max et Werner","site_detail_url":"https://comicvine.gamespot.com/dent-dours-max-et-werner/4045-58921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59319/","id":59319,"name":"\"Justice League Europe\" The Extremist Vector","site_detail_url":"https://comicvine.gamespot.com/justice-league-europe-the-extremist-vector/4045-59319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56644/","id":56644,"name":"\"X-Men\" Regenesis","site_detail_url":"https://comicvine.gamespot.com/x-men-regenesis/4045-56644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60626/","id":60626,"name":"\"One Piece\" Impel Down Arc","site_detail_url":"https://comicvine.gamespot.com/one-piece-impel-down-arc/4045-60626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60533/","id":60533,"name":"\"Avengers/Fantastic Four\" Empyre","site_detail_url":"https://comicvine.gamespot.com/avengersfantastic-four-empyre/4045-60533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60341/","id":60341,"name":"\"Vampirella\" Seduction of the Innocent","site_detail_url":"https://comicvine.gamespot.com/vampirella-seduction-of-the-innocent/4045-60341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60653/","id":60653,"name":"\"X-Men\" X of Swords","site_detail_url":"https://comicvine.gamespot.com/x-men-x-of-swords/4045-60653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60841/","id":60841,"name":"\"Hunter × Hunter\" Yorknew City","site_detail_url":"https://comicvine.gamespot.com/hunter-x-hunter-yorknew-city/4045-60841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60914/","id":60914,"name":"\"Star Wars\" Crimson Reign","site_detail_url":"https://comicvine.gamespot.com/star-wars-crimson-reign/4045-60914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40615/","id":40615,"name":"\"Avengers\" Civil War","site_detail_url":"https://comicvine.gamespot.com/avengers-civil-war/4045-40615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60966/","id":60966,"name":"\"Judge Dredd\" Judge Death","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-judge-death/4045-60966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61035/","id":61035,"name":"\"Daredevil\" The Red Fist Saga","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-red-fist-saga/4045-61035/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2909/","id":2909,"name":"Marvel Comics Super Special","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-super-special/4050-2909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2694/","id":2694,"name":"Marvel Treasury Edition","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition/4050-2694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2638/","id":2638,"name":"Kull the Destroyer","site_detail_url":"https://comicvine.gamespot.com/kull-the-destroyer/4050-2638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2701/","id":2701,"name":"The Savage Sword of Conan","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan/4050-2701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2914/","id":2914,"name":"Star Wars","site_detail_url":"https://comicvine.gamespot.com/star-wars/4050-2914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2918/","id":2918,"name":"What If?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-2918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2765/","id":2765,"name":"The Invaders","site_detail_url":"https://comicvine.gamespot.com/the-invaders/4050-2765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3070/","id":3070,"name":"All-Star Squadron","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron/4050-3070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3112/","id":3112,"name":"Captain Carrot and His Amazing Zoo Crew!","site_detail_url":"https://comicvine.gamespot.com/captain-carrot-and-his-amazing-zoo-crew/4050-3112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2839/","id":2839,"name":"Green Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern/4050-2839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1683/","id":1683,"name":"The Brave and the Bold","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold/4050-1683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2943/","id":2943,"name":"DC Comics Presents","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents/4050-2943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3305/","id":3305,"name":"Batman and the Outsiders Annual","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-annual/4050-3305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3106/","id":3106,"name":"All-Star Squadron Annual","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-annual/4050-3106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3397/","id":3397,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge/4050-3397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-796/","id":796,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4050-796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2014/","id":2014,"name":"Justice League of America","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america/4050-2014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3442/","id":3442,"name":"DC Challenge","site_detail_url":"https://comicvine.gamespot.com/dc-challenge/4050-3442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3539/","id":3539,"name":"The New DNAgents","site_detail_url":"https://comicvine.gamespot.com/the-new-dnagents/4050-3539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2407/","id":2407,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-2407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3727/","id":3727,"name":"Eternity Smith","site_detail_url":"https://comicvine.gamespot.com/eternity-smith/4050-3727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3960/","id":3960,"name":"Eternity Smith","site_detail_url":"https://comicvine.gamespot.com/eternity-smith/4050-3960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4018/","id":4018,"name":"Power Girl","site_detail_url":"https://comicvine.gamespot.com/power-girl/4050-4018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3986/","id":3986,"name":"Checkmate","site_detail_url":"https://comicvine.gamespot.com/checkmate/4050-3986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4517/","id":4517,"name":"Roger Rabbit","site_detail_url":"https://comicvine.gamespot.com/roger-rabbit/4050-4517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4317/","id":4317,"name":"James Bond: Permission to Die","site_detail_url":"https://comicvine.gamespot.com/james-bond-permission-to-die/4050-4317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4479/","id":4479,"name":"Flare","site_detail_url":"https://comicvine.gamespot.com/flare/4050-4479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4760/","id":4760,"name":"Warlord","site_detail_url":"https://comicvine.gamespot.com/warlord/4050-4760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5154/","id":5154,"name":"The Strangers","site_detail_url":"https://comicvine.gamespot.com/the-strangers/4050-5154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5143/","id":5143,"name":"Hardcase","site_detail_url":"https://comicvine.gamespot.com/hardcase/4050-5143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5376/","id":5376,"name":"Classic Star Wars: A New Hope","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-a-new-hope/4050-5376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5377/","id":5377,"name":"Classic Star Wars: The Early Adventures","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures/4050-5377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5577/","id":5577,"name":"Bar Sinister","site_detail_url":"https://comicvine.gamespot.com/bar-sinister/4050-5577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4003/","id":4003,"name":"Green Arrow","site_detail_url":"https://comicvine.gamespot.com/green-arrow/4050-4003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11174/","id":11174,"name":"Batman: Family","site_detail_url":"https://comicvine.gamespot.com/batman-family/4050-11174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11734/","id":11734,"name":"Marvel Special Edition Featuring Star Wars","site_detail_url":"https://comicvine.gamespot.com/marvel-special-edition-featuring-star-wars/4050-11734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18125/","id":18125,"name":"Winter Soldier: Winter Kills","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-winter-kills/4050-18125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18197/","id":18197,"name":"Who's Who: The Definitive Directory of the DC Universe","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4050-18197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18177/","id":18177,"name":"The Sensational Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man/4050-18177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18058/","id":18058,"name":"Detective Comics","site_detail_url":"https://comicvine.gamespot.com/detective-comics/4050-18058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19954/","id":19954,"name":"Who's Who in the DC Universe","site_detail_url":"https://comicvine.gamespot.com/whos-who-in-the-dc-universe/4050-19954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18005/","id":18005,"name":"Action Comics","site_detail_url":"https://comicvine.gamespot.com/action-comics/4050-18005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20244/","id":20244,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5426/","id":5426,"name":"Ultraverse Premiere","site_detail_url":"https://comicvine.gamespot.com/ultraverse-premiere/4050-5426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20477/","id":20477,"name":"The Night Man Annual","site_detail_url":"https://comicvine.gamespot.com/the-night-man-annual/4050-20477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20478/","id":20478,"name":"The Strangers: The Pilgrim Conundrum Saga","site_detail_url":"https://comicvine.gamespot.com/the-strangers-the-pilgrim-conundrum-saga/4050-20478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21110/","id":21110,"name":"Warrior","site_detail_url":"https://comicvine.gamespot.com/warrior/4050-21110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18596/","id":18596,"name":"Update '88","site_detail_url":"https://comicvine.gamespot.com/update-88/4050-18596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23371/","id":23371,"name":"Justice League of America Annual","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-annual/4050-23371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23436/","id":23436,"name":"The Official Teen Titans Index","site_detail_url":"https://comicvine.gamespot.com/the-official-teen-titans-index/4050-23436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25863/","id":25863,"name":"Green Arrow / Black Canary: For Better or Worse","site_detail_url":"https://comicvine.gamespot.com/green-arrow-black-canary-for-better-or-worse/4050-25863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28489/","id":28489,"name":"What If? Classic","site_detail_url":"https://comicvine.gamespot.com/what-if-classic/4050-28489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30733/","id":30733,"name":"Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus/4050-30733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18669/","id":18669,"name":"New Gods","site_detail_url":"https://comicvine.gamespot.com/new-gods/4050-18669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32517/","id":32517,"name":"Heroic Spotlight","site_detail_url":"https://comicvine.gamespot.com/heroic-spotlight/4050-32517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37631/","id":37631,"name":"Star Wars Omnibus: A Long Time Ago....","site_detail_url":"https://comicvine.gamespot.com/star-wars-omnibus-a-long-time-ago/4050-37631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37968/","id":37968,"name":"Roger Rabbit's Toontown","site_detail_url":"https://comicvine.gamespot.com/roger-rabbits-toontown/4050-37968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39788/","id":39788,"name":"The Marvel Comics Index","site_detail_url":"https://comicvine.gamespot.com/the-marvel-comics-index/4050-39788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41927/","id":41927,"name":"DC Retroactive: JLA - The '80s","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive-jla-the-80s/4050-41927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44969/","id":44969,"name":"Classic Star Wars - The Early Adventures","site_detail_url":"https://comicvine.gamespot.com/classic-star-wars-the-early-adventures/4050-44969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47984/","id":47984,"name":"Tarzan Weekly","site_detail_url":"https://comicvine.gamespot.com/tarzan-weekly/4050-47984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48494/","id":48494,"name":"Three Dimensional DNAgents","site_detail_url":"https://comicvine.gamespot.com/three-dimensional-dnagents/4050-48494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50995/","id":50995,"name":"Showcase Presents: The Spectre","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-the-spectre/4050-50995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53602/","id":53602,"name":"Tarzan Monthly","site_detail_url":"https://comicvine.gamespot.com/tarzan-monthly/4050-53602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53853/","id":53853,"name":"Spider-Man Special","site_detail_url":"https://comicvine.gamespot.com/spider-man-special/4050-53853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54033/","id":54033,"name":"Star Wars Annual","site_detail_url":"https://comicvine.gamespot.com/star-wars-annual/4050-54033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31847/","id":31847,"name":"Amazing Heroes","site_detail_url":"https://comicvine.gamespot.com/amazing-heroes/4050-31847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56571/","id":56571,"name":"Malibu Signature Series","site_detail_url":"https://comicvine.gamespot.com/malibu-signature-series/4050-56571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57164/","id":57164,"name":"The Death of Captain America Complete Collection","site_detail_url":"https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection/4050-57164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63156/","id":63156,"name":"Jumpstart: The Strangers Collection","site_detail_url":"https://comicvine.gamespot.com/jumpstart-the-strangers-collection/4050-63156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64460/","id":64460,"name":"James Bond: Permission to Die","site_detail_url":"https://comicvine.gamespot.com/james-bond-permission-to-die/4050-64460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81835/","id":81835,"name":"Star Wars: Episode IV - A New Hope","site_detail_url":"https://comicvine.gamespot.com/star-wars-episode-iv-a-new-hope/4050-81835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85171/","id":85171,"name":"Eternity Smith","site_detail_url":"https://comicvine.gamespot.com/eternity-smith/4050-85171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85820/","id":85820,"name":"Flare: Conflict","site_detail_url":"https://comicvine.gamespot.com/flare-conflict/4050-85820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87871/","id":87871,"name":"Thor: Diosa del Trueno","site_detail_url":"https://comicvine.gamespot.com/thor-diosa-del-trueno/4050-87871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92205/","id":92205,"name":"Suicide Squad: The Janus Directive","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-the-janus-directive/4050-92205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92716/","id":92716,"name":"Conan der Barbar","site_detail_url":"https://comicvine.gamespot.com/conan-der-barbar/4050-92716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94119/","id":94119,"name":"Green Arrow: Last Action Hero","site_detail_url":"https://comicvine.gamespot.com/green-arrow-last-action-hero/4050-94119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95240/","id":95240,"name":"Star Wars Legends Epic Collection: The Original Marvel Years","site_detail_url":"https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-original-mar/4050-95240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95587/","id":95587,"name":"The Deadly Hands of Kung Fu Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-omnibus/4050-95587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97908/","id":97908,"name":"Green Arrow: Homecoming","site_detail_url":"https://comicvine.gamespot.com/green-arrow-homecoming/4050-97908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98358/","id":98358,"name":"Star Wars Legends Epic Collection: The Newspaper Strips","site_detail_url":"https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-newspaper-st/4050-98358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90965/","id":90965,"name":"Shang-Chi Master of Kung-Fu Omnibus","site_detail_url":"https://comicvine.gamespot.com/shangchi-master-of-kungfu-omnibus/4050-90965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101375/","id":101375,"name":"Star Wars: The Complete Classic Newspaper Comics","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-complete-classic-newspaper-comics/4050-101375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101479/","id":101479,"name":"Green Arrow: The Hunt For the Red Dragon","site_detail_url":"https://comicvine.gamespot.com/green-arrow-the-hunt-for-the-red-dragon/4050-101479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103614/","id":103614,"name":"Kirby 100","site_detail_url":"https://comicvine.gamespot.com/kirby-100/4050-103614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107946/","id":107946,"name":"Green Arrow: Old Tricks","site_detail_url":"https://comicvine.gamespot.com/green-arrow-old-tricks/4050-107946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97051/","id":97051,"name":"Huntsman","site_detail_url":"https://comicvine.gamespot.com/huntsman/4050-97051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116519/","id":116519,"name":"What If? Classic: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection/4050-116519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115046/","id":115046,"name":"Crisis on Infinite Earths Companion Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths-companion-deluxe-edition/4050-115046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117763/","id":117763,"name":"The Savage Sword of Conan: The Original Marvel Years Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4050-117763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124292/","id":124292,"name":"Star Wars: The Original Trilogy: The Movie Adaptations","site_detail_url":"https://comicvine.gamespot.com/star-wars-the-original-trilogy-the-movie-adaptatio/4050-124292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126873/","id":126873,"name":"Adventures of Superman: George Pérez","site_detail_url":"https://comicvine.gamespot.com/adventures-of-superman-george-perez/4050-126873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126979/","id":126979,"name":"Star Wars Classics","site_detail_url":"https://comicvine.gamespot.com/star-wars-classics/4050-126979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112907/","id":112907,"name":"Venomnibus","site_detail_url":"https://comicvine.gamespot.com/venomnibus/4050-112907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133486/","id":133486,"name":"Captain America By Ed Brubaker Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-omnibus/4050-133486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133732/","id":133732,"name":"Disney Kingdoms: Figment","site_detail_url":"https://comicvine.gamespot.com/disney-kingdoms-figment/4050-133732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136160/","id":136160,"name":"Aliens: The Original Years Omnibus","site_detail_url":"https://comicvine.gamespot.com/aliens-the-original-years-omnibus/4050-136160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138720/","id":138720,"name":"What If?: The Original Marvel Series Omnibus","site_detail_url":"https://comicvine.gamespot.com/what-if-the-original-marvel-series-omnibus/4050-138720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125348/","id":125348,"name":"Marvel Omnibus: La Espada Salvaje de Conan: La Etapa Marvel Original ","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-la-espada-salvaje-de-conan-la-etapa/4050-125348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135351/","id":135351,"name":"New Gods","site_detail_url":"https://comicvine.gamespot.com/new-gods/4050-135351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-150766/","id":150766,"name":"Aliens Omnibus","site_detail_url":"https://comicvine.gamespot.com/aliens-omnibus/4050-150766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-156924/","id":156924,"name":"Star Wars","site_detail_url":"https://comicvine.gamespot.com/star-wars/4050-156924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-160558/","id":160558,"name":"Captain America Modern Era Epic Collection: Death of the Dream","site_detail_url":"https://comicvine.gamespot.com/captain-america-modern-era-epic-collection-death-o/4050-160558/"}],"website":"http://www.rickhoberg.com/Rick_Hoberg_Art/RickHoberg.Com_Home_Page.html"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1350.json b/samples/api-data/person-details/person-4040-1350.json new file mode 100644 index 0000000..b09995a --- /dev/null +++ b/samples/api-data/person-details/person-4040-1350.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Gore","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1350/","birth":"1940-10-01 00:00:00","count_of_isssue_appearances":null,"country":"U.S.A.","created_characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64567/","id":64567,"name":"Betty","site_detail_url":"https://comicvine.gamespot.com/betty/4005-64567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114713/","id":114713,"name":"Clark Elwood","site_detail_url":"https://comicvine.gamespot.com/clark-elwood/4005-114713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118102/","id":118102,"name":"Damon Peck","site_detail_url":"https://comicvine.gamespot.com/damon-peck/4005-118102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64566/","id":64566,"name":"David","site_detail_url":"https://comicvine.gamespot.com/david/4005-64566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135147/","id":135147,"name":"Denaeus","site_detail_url":"https://comicvine.gamespot.com/denaeus/4005-135147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122669/","id":122669,"name":"Esteban","site_detail_url":"https://comicvine.gamespot.com/esteban/4005-122669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43110/","id":43110,"name":"Frank Turro","site_detail_url":"https://comicvine.gamespot.com/frank-turro/4005-43110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17473/","id":17473,"name":"Holland Wingate","site_detail_url":"https://comicvine.gamespot.com/holland-wingate/4005-17473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35593/","id":35593,"name":"Karen","site_detail_url":"https://comicvine.gamespot.com/karen/4005-35593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17472/","id":17472,"name":"Karyn Haining","site_detail_url":"https://comicvine.gamespot.com/karyn-haining/4005-17472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114714/","id":114714,"name":"Kito Hontz","site_detail_url":"https://comicvine.gamespot.com/kito-hontz/4005-114714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93618/","id":93618,"name":"Mag the Hag","site_detail_url":"https://comicvine.gamespot.com/mag-the-hag/4005-93618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89073/","id":89073,"name":"Mangus Pike","site_detail_url":"https://comicvine.gamespot.com/mangus-pike/4005-89073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17474/","id":17474,"name":"Shelly Allan","site_detail_url":"https://comicvine.gamespot.com/shelly-allan/4005-17474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160930/","id":160930,"name":"Tom Ferrell","site_detail_url":"https://comicvine.gamespot.com/tom-ferrell/4005-160930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118103/","id":118103,"name":"Zachariah Peck","site_detail_url":"https://comicvine.gamespot.com/zachariah-peck/4005-118103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116677/","id":116677,"name":"Zedon Peck","site_detail_url":"https://comicvine.gamespot.com/zedon-peck/4005-116677/"}],"date_added":"2008-06-06 11:28:13","date_last_updated":"2020-12-10 08:55:24","death":{"date":"2020-12-02 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"American comic artist. Known for his contributions to Heavy Metal Magazine, Creepy, and other Sci-Fi, Fantasy and Horror titles.","description":"

    Born in Anderson, Missouri in 1940, Richard Corben is an American comic artist known for his endless contributions to comics in the Sci-Fi, Fantasy and Horror genres. Corben first gained popularity for his work in various Underground comic publishers, such as Grim Wit, Slow Death, Skull, Rowlf and his own anthology, Fantagor. In 1970, he began illustrating a multitude of stories for Warren Publishing, for publications such as Creepy, Eerie, Vampirella, and 1984.

    In 1975, legendary French comic artists, Jean \"Moebius\" Giraud, Philippe Druillet and editor Jean-Pierre Dionnet started publishing the magazine, Métal Hurlant in France. Corben submitted stories to them and continued to do so for Hurlant's American franchise, Heavy Metal Magazine and became one of its most regular and iconic contributors. Among the stories he published in Heavy Metal was his most famous creation, the Den Saga, a fantasy series about the adventures of a young nerd who transforms into a muscular, well-endowed warrior after traveling to Neverwhere, a universe heavily inspired by the works of Robert E. Howard, Edgar Rice Burroughs, and H.P. Lovecraft. Corben ventured into film work occasionally, and illustrated a few film posters during his career, as well as some album covers, such as Meat Loaf's Bat out of Hell. More recently, Corben illustrated some stories for Mike Mignola's Hellboy, among other stories for Marvel and other publishers.

    Corben remains a top influence to figures such as Mike Mignola and Guillermo Del Toro, and has received numerous accolades, such as the Spectrum Grand Master award in 2009 and an induction into the Will Eisner Award Hall of Fame in 2012.

    Quotes about Richard Corben

    \"Corben's work is singular in its humanity. He works with towering technical skill... ...the wondrous thing of it all is that underneath all that technical tour-de-force is the sound of a beating heart.\"

    -Will Eisner

    \"Richard Corben, stands among us like an extraterrestrial peak. He has sat in his throne for a long time, above the moving and multi-coloured field of world comics, like an effigy of the leader, a strange monolith, a sublime visitor, a solitary enigma.\"

    -Moebius

    \"People Like the American Richard Corben... are, in my view, maestros.\"

    -H.R. Giger

    \"Mr. Richard Corben... a genuine giant of his chosen medium.\"

    -Alan Moore

    ","email":"corb@corbenstudios.com","gender":1,"hometown":"Kansas City","id":1350,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/71975/4541770-5598026764-inici.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/71975/4541770-5598026764-inici.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/71975/4541770-5598026764-inici.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/71975/4541770-5598026764-inici.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/71975/4541770-5598026764-inici.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/71975/4541770-5598026764-inici.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/71975/4541770-5598026764-inici.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/71975/4541770-5598026764-inici.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/71975/4541770-5598026764-inici.jpg","image_tags":"All Images,Art,Richard Corben"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1144153/","id":1144153,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rat-god-1-hc/4000-1144153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1124835/","id":1124835,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rowlf-and-other-fantasy-stories-1-hc/4000-1124835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1143397/","id":1143397,"name":"Muvovum","site_detail_url":"https://comicvine.gamespot.com/den-2-muvovum/4000-1143397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1115579/","id":1115579,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dimwood-1-hc/4000-1115579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1095748/","id":1095748,"name":"Volume 5: The Price of Memories","site_detail_url":"https://comicvine.gamespot.com/den-5-volume-5-the-price-of-memories/4000-1095748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1079760/","id":1079760,"name":"Volume 4: Dreams and Alarums","site_detail_url":"https://comicvine.gamespot.com/den-4-volume-4-dreams-and-alarums/4000-1079760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1079759/","id":1079759,"name":"Volume 3: Children of Fire","site_detail_url":"https://comicvine.gamespot.com/den-3-volume-3-children-of-fire/4000-1079759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1064316/","id":1064316,"name":"Killer Spec; Senator, Senator; Family Values; US vs. US","site_detail_url":"https://comicvine.gamespot.com/ec-epitaphs-from-the-abyss-1-killer-spec-senator-s/4000-1064316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1066336/","id":1066336,"name":"Volume 2: Muvovum","site_detail_url":"https://comicvine.gamespot.com/den-2-volume-2-muvovum/4000-1066336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1074006/","id":1074006,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-the-return-of-effie-ko/4000-1074006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1075552/","id":1075552,"name":"Nirgendwo","site_detail_url":"https://comicvine.gamespot.com/den-1-nirgendwo/4000-1075552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1073380/","id":1073380,"name":null,"site_detail_url":"https://comicvine.gamespot.com/murky-world-1/4000-1073380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1149110/","id":1149110,"name":null,"site_detail_url":"https://comicvine.gamespot.com/alterlinus-1/4000-1149110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1011086/","id":1011086,"name":"Volume 1: Neverwhere","site_detail_url":"https://comicvine.gamespot.com/den-1-volume-1-neverwhere/4000-1011086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-993707/","id":993707,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/murky-world-1-hc/4000-993707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889693/","id":889693,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vampiress-carmilla-magazine-6/4000-889693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1152928/","id":1152928,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bigfoot-1/4000-1152928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-847969/","id":847969,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/slow-death-zero-the-comix-anthology-of-ecological-/4000-847969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858823/","id":858823,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/hellboy-and-the-bprd-1952-1954-1-hc/4000-858823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-951278/","id":951278,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-creeps-28/4000-951278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-962483/","id":962483,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/just-imagine-stan-lee-creating-the-dc-universe-2-b/4000-962483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-815316/","id":815316,"name":"Vol. 301","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-202010-vol-301/4000-815316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1143785/","id":1143785,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mutantenwelt-and-sohn-der-mutantenwelt-1/4000-1143785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-795072/","id":795072,"name":"Vol. 300: All Star Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-202008-vol-300-all-star-speci/4000-795072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-779849/","id":779849,"name":null,"site_detail_url":"https://comicvine.gamespot.com/vampirella-1969-facsimile-edition-30/4000-779849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740729/","id":740729,"name":"Vol. 298: Furthest Reaches Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-202003-vol-298-furthest-reach/4000-740729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740167/","id":740167,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-selected-works-1-tpb/4000-740167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735452/","id":735452,"name":"Vol. 297: Winter Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-202001-vol-297-winter-special/4000-735452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734522/","id":734522,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-black-and-white-omnibus-1-hc/4000-734522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731575/","id":731575,"name":"Vol. 296: The Street Art Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201912-vol-296-the-street-art/4000-731575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-793731/","id":793731,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hellboy-kompendium-4/4000-793731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-726224/","id":726224,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4000-726224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725387/","id":725387,"name":"Vol. 295: Music Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201910-vol-295-music-special/4000-725387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723015/","id":723015,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-the-essential-comics-1-volume-1/4000-723015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721255/","id":721255,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/famous-monsters-gallery-dark-arts-1-volume-one/4000-721255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721167/","id":721167,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/conan-chronicles-epic-collection-return-to-cimmeri/4000-721167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843090/","id":843090,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-creeps-20/4000-843090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713806/","id":713806,"name":"Volume Twenty-Nine","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-29-volume-twenty-nine/4000-713806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712445/","id":712445,"name":"Vol. 294: Industrial Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201906-vol-294-industrial-spe/4000-712445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707586/","id":707586,"name":"Vol. 293: Beyond the Darkness Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201905-vol-293-beyond-the-dar/4000-707586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709130/","id":709130,"name":"Volume Twenty-Six","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-26-volume-twenty-six/4000-709130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-985979/","id":985979,"name":null,"site_detail_url":"https://comicvine.gamespot.com/sombras-en-la-tumba-1/4000-985979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1098523/","id":1098523,"name":"Alchimia; Alieno; Earth angel; Linee di confine; 45 secondi; Cacciatori di teste; Razziatori","site_detail_url":"https://comicvine.gamespot.com/aliens-grandi-maestri-1-alchimia-alieno-earth-ange/4000-1098523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700667/","id":700667,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-dogs-of-war-1-tpb/4000-700667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696103/","id":696103,"name":"Vol. 292: Psychedelic Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201812-vol-292-psychedelic-sp/4000-696103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695548/","id":695548,"name":"Volume Twenty-Five","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-25-volume-twenty-five/4000-695548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693366/","id":693366,"name":"Volume Twenty-Seven","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-27-volume-twenty-seven/4000-693366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691360/","id":691360,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/john-constantine-hellblazer-30th-anniversary-celeb/4000-691360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688980/","id":688980,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-colossal-conan-the-cimmerian-1-hc/4000-688980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684950/","id":684950,"name":"Vol. 291: Fetish Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201809-vol-291-fetish-special/4000-684950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679847/","id":679847,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-complete-short-stories-2-volume-2/4000-679847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678538/","id":678538,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/punisher-max-by-garth-ennis-omnibus-2-volume-2/4000-678538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917079/","id":917079,"name":"Lichwiarz; Trollowa wiedźma","site_detail_url":"https://comicvine.gamespot.com/hellboy-4-lichwiarz-trollowa-wiedzma/4000-917079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677185/","id":677185,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-10-library-edition/4000-677185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674035/","id":674035,"name":"Strange Places","site_detail_url":"https://comicvine.gamespot.com/hellboy-omnibus-2-strange-places/4000-674035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672928/","id":672928,"name":"Vol. 290: Deadly Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201806-vol-290-deadly-special/4000-672928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672835/","id":672835,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-complete-short-stories-1-volume-1/4000-672835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736722/","id":736722,"name":"1954","site_detail_url":"https://comicvine.gamespot.com/hellboy-and-bprd-3-1954/4000-736722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1152999/","id":1152999,"name":null,"site_detail_url":"https://comicvine.gamespot.com/schatten-auf-dem-grab-1/4000-1152999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662173/","id":662173,"name":"Vol. 289","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201803-vol-289/4000-662173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652589/","id":652589,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellboy-and-the-bprd-1954-1-tpb/4000-652589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654024/","id":654024,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-1-hc/4000-654024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843083/","id":843083,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-creeps-13/4000-843083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636332/","id":636332,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/william-b-dubays-the-rook-archives-3-volume-3/4000-636332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636468/","id":636468,"name":"Vol. 288","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-201711-vol-288/4000-636468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621577/","id":621577,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-8/4000-621577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611961/","id":611961,"name":"Ancient Gods and Sorcerers","site_detail_url":"https://comicvine.gamespot.com/conan-omnibus-3-ancient-gods-and-sorcerers/4000-611961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613730/","id":613730,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-7/4000-613730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608167/","id":608167,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-6/4000-608167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601752/","id":601752,"name":"Blind CHoice","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-5-blind-choice/4000-601752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594923/","id":594923,"name":"The Clown","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-4-the-clown/4000-594923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843080/","id":843080,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-creeps-10/4000-843080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585051/","id":585051,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-3/4000-585051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575822/","id":575822,"name":"Denaeus Chapter 2: The Fury of the Cyclops","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-2-denaeus-chapter-2-the-fury-/4000-575822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566666/","id":566666,"name":"","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave-1/4000-566666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566722/","id":566722,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/punisher-max-the-complete-collection-4-volume-four/4000-566722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619385/","id":619385,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-guarida-del-horror-hp-lovecraft-1/4000-619385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619292/","id":619292,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-guarida-del-horror-edgar-allan-poe-1/4000-619292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544950/","id":544950,"name":"Volume Twenty-Four","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-24-volume-twenty-four/4000-544950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544963/","id":544963,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/john-constantine-hellblazer-good-intentions-1-volu/4000-544963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545016/","id":545016,"name":"Immortal Coil Part Three","site_detail_url":"https://comicvine.gamespot.com/rumble-13-immortal-coil-part-three/4000-545016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-843077/","id":843077,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-creeps-7/4000-843077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537201/","id":537201,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-24/4000-537201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537910/","id":537910,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead-a-zombie-bromance-1-tpb/4000-537910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529172/","id":529172,"name":"The Warrior and the Wind; The Mirror; Extravehicular","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2016-serenity-1-the-warrior-an/4000-529172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524985/","id":524985,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellboy-in-mexico-1-tpb/4000-524985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527093/","id":527093,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-23/4000-527093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-639737/","id":639737,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-dios-rata-1/4000-639737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508913/","id":508913,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-ultimate-collecti/4000-508913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1103834/","id":1103834,"name":null,"site_detail_url":"https://comicvine.gamespot.com/grandes-autores-de-vertigo-richard-corben-1/4000-1103834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713935/","id":713935,"name":"Wünsche","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-staffel-10-2-wunsche/4000-713935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502810/","id":502810,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/rat-god-1-hc/4000-502810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503849/","id":503849,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-horse-horror-sampler-4/4000-503849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1141514/","id":1141514,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hellboy-vestica-trol-i-druge-price-1/4000-1141514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494437/","id":494437,"name":"Collection #2: Part 2","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-collection-5-collection-2-part-2/4000-494437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494436/","id":494436,"name":"Collection #2: Part 1","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-collection-4-collection-2-part-1/4000-494436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920564/","id":920564,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hellblazer-the-family-man-1/4000-920564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491001/","id":491001,"name":"","site_detail_url":"https://comicvine.gamespot.com/rat-god-5/4000-491001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487925/","id":487925,"name":"","site_detail_url":"https://comicvine.gamespot.com/rat-god-4/4000-487925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490851/","id":490851,"name":"Volume Nineteen","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-19-volume-nineteen/4000-490851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696739/","id":696739,"name":"Edgar Allan Poe's Geister der Toten","site_detail_url":"https://comicvine.gamespot.com/geister-der-toten-1-edgar-allan-poes-geister-der-t/4000-696739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484985/","id":484985,"name":"","site_detail_url":"https://comicvine.gamespot.com/rat-god-3/4000-484985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486123/","id":486123,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-10-i-wish-1-volume/4000-486123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486691/","id":486691,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-20/4000-486691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-967421/","id":967421,"name":null,"site_detail_url":"https://comicvine.gamespot.com/los-espiritus-de-los-muertos-1/4000-967421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478675/","id":478675,"name":"","site_detail_url":"https://comicvine.gamespot.com/rat-god-1/4000-478675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479227/","id":479227,"name":"Volume Twenty-One","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-21-volume-twenty-one/4000-479227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481691/","id":481691,"name":"","site_detail_url":"https://comicvine.gamespot.com/rat-god-2/4000-481691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477824/","id":477824,"name":"Volume Eighteen","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-18-volume-eighteen/4000-477824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467005/","id":467005,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-spirits-of-the-dead-1-hc/4000-467005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467827/","id":467827,"name":"Drawing on your Nightmares 2014","site_detail_url":"https://comicvine.gamespot.com/dark-horse-horror-sampler-3-drawing-on-your-nightm/4000-467827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468425/","id":468425,"name":"Return To Sunnydale Part One","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-10-8-return-to-sun/4000-468425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467006/","id":467006,"name":"Volume Seventeen","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-17-volume-seventeen/4000-467006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464954/","id":464954,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-the-reign-of-the-black-flame/4000-464954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460290/","id":460290,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-sakai-project-artists-celebrate-thirty-years-o/4000-460290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455990/","id":455990,"name":"Volume Nineteen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-19-volume-nineteen/4000-455990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455992/","id":455992,"name":"","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-morella-and-the-murders-in-the-r/4000-455992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454064/","id":454064,"name":"Volume Sixteen","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-16-volume-sixteen/4000-454064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449568/","id":449568,"name":"","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-the-premature-burial-1/4000-449568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690407/","id":690407,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-presents-richard-corben-1/4000-690407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445787/","id":445787,"name":"The Reign of the Black Flame Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-116-the-reign-of-the-black-f/4000-445787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444498/","id":444498,"name":"Volume Eighteen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-18-volume-eighteen/4000-444498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525331/","id":525331,"name":"Richard Corben","site_detail_url":"https://comicvine.gamespot.com/creepy-1-richard-corben/4000-525331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446457/","id":446457,"name":"Volume 3: The Lurking Fate","site_detail_url":"https://comicvine.gamespot.com/creepy-comics-3-volume-3-the-lurking-fate/4000-446457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437514/","id":437514,"name":"Volume Eight","site_detail_url":"https://comicvine.gamespot.com/vampirella-archives-8-volume-eight/4000-437514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430740/","id":430740,"name":"The Strain; Snip Snip; Alone With Mag the Hag; Alabaster: Boxcar Tales; Nexus; Trekker; Nosferatu Wars; Mr. Monster; Blood; Brainbot Jr.","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-29-the-strain-snip-snip-alone-/4000-430740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431423/","id":431423,"name":"","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-the-raven-and-the-red-death-1/4000-431423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428276/","id":428276,"name":"Volume Seventeen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-17-volume-seventeen/4000-428276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518642/","id":518642,"name":"","site_detail_url":"https://comicvine.gamespot.com/in-deep-1/4000-518642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427717/","id":427717,"name":"Don't Open It; Dun's Return; The Shoot; Charles De Ghoul: The Curse of the Empty Suit; Hoax Hunters: Grievance Day; Captain Midnight: Captain Misinformation; My Hero; A Mustache At My Heels; Punk Rock Is Out To Lunch; Hack/Slash: Avert Your Eyes; What if","site_detail_url":"https://comicvine.gamespot.com/cbldf-presents-liberty-annual-2013-1-don-t-open-it/4000-427717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436242/","id":436242,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/tmnt-25th-anniversary-1-hc/4000-436242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426858/","id":426858,"name":"The Strain; Blood; The Assignation; Alabaster; Mrs. Plopsworth's Kitchen; Trekker; Nosferatu Wars; Mr. Monster; Juice Squeezers; Sabretooth Swordsman","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-28-the-strain-blood-the-assign/4000-426858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408983/","id":408983,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/solo-1-hc/4000-408983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410306/","id":410306,"name":"Volume Sixteen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-16-volume-sixteen/4000-410306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408974/","id":408974,"name":"Library Edition Vol. 6","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-storm-and-the-fury-the-bride-of-hell-1/4000-408974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411812/","id":411812,"name":"","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-the-fall-of-the-house-of-usher-2/4000-411812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402270/","id":402270,"name":"","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-the-fall-of-the-house-of-usher-1/4000-402270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402271/","id":402271,"name":"Volume Thirteen","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-13-volume-thirteen/4000-402271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421119/","id":421119,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aliens-alchemy-1/4000-421119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401191/","id":401191,"name":"Uncle Mangus; Fishing; Role Models; Local Talent; The Spirit of the Thing; Mother's Little Helper; Pack Leader; Reflections of my Life;","site_detail_url":"https://comicvine.gamespot.com/creepy-12-uncle-mangus-fishing-role-models-local-t/4000-401191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380345/","id":380345,"name":"Volume Twelve","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-12-volume-twelve/4000-380345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382789/","id":382789,"name":"Volume Fifteen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-15-volume-fifteen/4000-382789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417412/","id":417412,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-aliens-vs-predator-blood-time-1/4000-417412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382825/","id":382825,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/vampirella-archives-6-volume-six/4000-382825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365753/","id":365753,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ragemoor-1-hc/4000-365753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369063/","id":369063,"name":"Captain Midnight; Finder: Third World; Gamma; EA Poe's Shadow; Memories of the Caspian; City of Roses; Resident Alien; Alabaster; UXB; Secret Order of the Teddy Bears","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-18-captain-midnight-finder-thi/4000-369063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369064/","id":369064,"name":"","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poes-the-conqueror-worm-1/4000-369064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359846/","id":359846,"name":"Volume Fourteen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-14-volume-fourteen/4000-359846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363072/","id":363072,"name":"Finder: Third World; City of Roses; The Girl with the Keyhole Eyes; The Deep Sea; EA Poe's The Sleeper; The Sacrifice; Concrete Park; UXB; Mr. Monster","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-17-finder-third-world-city-of-/4000-363072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359847/","id":359847,"name":"The Lurking Fate That Came to Lovecraft: The Mythos Made Real; The Strange Case of Panel Number Six; Mint in Package; Providence; Rats in the Walls; The Bane; The Illuminations of Charity Wallis; Dreams;","site_detail_url":"https://comicvine.gamespot.com/creepy-10-the-lurking-fate-that-came-to-lovecraft-/4000-359847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364621/","id":364621,"name":"Drawing on Your Nightmares","site_detail_url":"https://comicvine.gamespot.com/dark-horse-horror-sampler-1-drawing-on-your-nightm/4000-364621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357650/","id":357650,"name":"City of Roses; The Girl with Keyhole Eyes; The Deep Sea; Finder: Third World; Concrete Park; EA Poe's Berenice; Buddy Cops; Riven; Dead Air","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-16-city-of-roses-the-girl-with/4000-357650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357651/","id":357651,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-11-volume-eleven/4000-357651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345474/","id":345474,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/vampirella-archives-5-volume-five/4000-345474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386674/","id":386674,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/creepy-presents-richard-corben-1-hc/4000-386674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345471/","id":345471,"name":"Upon Reflection; The Old Bigot; The Red Knife; The Lurking Fate That Came to Lovecraft: The Lovecraft Circle; Boasting Ghosts; In Deep; Creepy vs. Eerie;","site_detail_url":"https://comicvine.gamespot.com/creepy-9-upon-reflection-the-old-bigot-the-red-kni/4000-345471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345472/","id":345472,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-1/4000-345472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-350806/","id":350806,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/men-of-war-uneasy-company-1-volume-1/4000-350806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338625/","id":338625,"name":"Volume Thirteen","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-13-volume-thirteen/4000-338625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341901/","id":341901,"name":"","site_detail_url":"https://comicvine.gamespot.com/ragemoor-4/4000-341901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336721/","id":336721,"name":"The Creep; Finder; Criminal Macabre; House of Fun; The Occultist; The Black Beetle; Mister X; Nexus; Sensible City; Sabretooth Vampire","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-12-the-creep-finder-criminal-m/4000-336721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659068/","id":659068,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/hulk-return-of-the-monster-1-hc/4000-659068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336725/","id":336725,"name":"","site_detail_url":"https://comicvine.gamespot.com/ragemoor-3/4000-336725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326880/","id":326880,"name":"Nineteen; The Lurking Fate That Came to Lovecraft: Mastery of Dreams; The Mausoleum; Loathsome Lore; Jenifer;","site_detail_url":"https://comicvine.gamespot.com/creepy-8-nineteen-the-lurking-fate-that-came-to-lo/4000-326880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313696/","id":313696,"name":"Danger Close; A Last, Full Measure","site_detail_url":"https://comicvine.gamespot.com/men-of-war-6-danger-close-a-last-full-measure/4000-313696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331891/","id":331891,"name":"","site_detail_url":"https://comicvine.gamespot.com/ragemoor-2/4000-331891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634130/","id":634130,"name":"Cimmeria","site_detail_url":"https://comicvine.gamespot.com/conan-la-leyenda-7-cimmeria/4000-634130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322770/","id":322770,"name":"","site_detail_url":"https://comicvine.gamespot.com/ragemoor-1/4000-322770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316795/","id":316795,"name":"Tony Masso's Finest Hour; Bay of Bengal-1984; 1969; \"You Send Me\" Chapter 3; Edgar Allan Poe's The City in the Sea; \"The Vicar Slash'd from Side to Side\" Chapter 2; The Once & Future Tarzan Chapter 2; Skull and Crossbows Chapter 1; Alabaster: Wolves; \"The","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-9-tony-massos-finest-hour-bay-/4000-316795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315395/","id":315395,"name":"Murky World","site_detail_url":"https://comicvine.gamespot.com/murky-world-1-murky-world/4000-315395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310571/","id":310571,"name":"Volume Nine","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-9-volume-nine/4000-310571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312620/","id":312620,"name":"Volume Twelve","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-12-volume-twelve/4000-312620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311041/","id":311041,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-by-daniel-way-ultimate-collection-1-tp/4000-311041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305689/","id":305689,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/bad-doings-and-big-ideas-a-bill-willingham-deluxe-/4000-305689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316850/","id":316850,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/hellboy-house-of-the-living-dead-1-hc/4000-316850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335478/","id":335478,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bprd-being-human-1-tpb/4000-335478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293413/","id":293413,"name":"Volume Eleven","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-11-volume-eleven/4000-293413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605783/","id":605783,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-max-starr-el-barbaro-1/4000-605783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293415/","id":293415,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-bride-of-hell-and-others-1-volume-11/4000-293415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286918/","id":286918,"name":"Treatment; Number 13; Finder; Concrete; Marked Man; Red Tide; Steranko Speaks; Indecisive Man; Murky World; Rotten Apple; Snow Angel; Blood; Mr. Monster vs. Oooak!","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-3-treatment-number-13-finder-c/4000-286918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276149/","id":276149,"name":"Concrete; Number 13; Blood; Finder: Third World; Marked Man; Mr. Monster vs Oooak!; The Wraith; Rotten Apple; Murky World; Snow Angel;","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-2-concrete-number-13-blood-fin/4000-276149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293412/","id":293412,"name":"Volume Ten","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-10-volume-ten/4000-293412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294003/","id":294003,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-7-volume-seven/4000-294003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319266/","id":319266,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/vampirella-archives-3-volume-three/4000-319266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313506/","id":313506,"name":"Library Edition Vol. 4","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-the-troll-witch-1-libr/4000-313506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269796/","id":269796,"name":"","site_detail_url":"https://comicvine.gamespot.com/hellboy-being-human-1/4000-269796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268821/","id":268821,"name":"Concrete; Marked Man; Blood; Finder: Third World; Mister Monster vs Oooak!; Xerxes; How Interesting: A Tiny Man; Murky World; Star Wars: Crimson Empire III; Snow Angel;","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents-1-concrete-marked-man-blood-fi/4000-268821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294002/","id":294002,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/eerie-archives-6-volume-six/4000-294002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293411/","id":293411,"name":"Volume Nine","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-9-volume-nine/4000-293411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239356/","id":239356,"name":"Frostbite, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-spirit-7-frostbite-part-4/4000-239356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447827/","id":447827,"name":"Der Krumme","site_detail_url":"https://comicvine.gamespot.com/hellboy-11-der-krumme/4000-447827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245624/","id":245624,"name":"Sullivan's Reward; The House of Sebek","site_detail_url":"https://comicvine.gamespot.com/hellboy-double-feature-of-evil-1-sullivans-reward-/4000-245624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633786/","id":633786,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-7/4000-633786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293409/","id":293409,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/creepy-archives-7-volume-seven/4000-293409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633785/","id":633785,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-6/4000-633785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-943915/","id":943915,"name":"Cimmeria","site_detail_url":"https://comicvine.gamespot.com/100-cult-comics-conan-12-cimmeria/4000-943915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633784/","id":633784,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-5/4000-633784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223462/","id":223462,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-the-beauty-of-decay-1-vol-4/4000-223462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240240/","id":240240,"name":"","site_detail_url":"https://comicvine.gamespot.com/famous-monsters-of-filmland-251/4000-240240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633783/","id":633783,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-4/4000-633783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218350/","id":218350,"name":"Billy The Kid's Old Timey Oddities & The Pit Of Horrors, Part One Of Three","site_detail_url":"https://comicvine.gamespot.com/buzzard-1-billy-the-kids-old-timey-oddities-the-pi/4000-218350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218378/","id":218378,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-others-1-volume-10/4000-218378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633782/","id":633782,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-3/4000-633782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212799/","id":212799,"name":"Hellboy In Mexico or, A Drunken Blur","site_detail_url":"https://comicvine.gamespot.com/hellboy-in-mexico-1-hellboy-in-mexico-or-a-drunken/4000-212799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633781/","id":633781,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-2/4000-633781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633780/","id":633780,"name":"","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio-1/4000-633780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404617/","id":404617,"name":"Cimmeria","site_detail_url":"https://comicvine.gamespot.com/conan-12-cimmeria/4000-404617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691478/","id":691478,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer-a-starr-is-born-1-tpb/4000-691478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185988/","id":185988,"name":"","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer-4/4000-185988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926974/","id":926974,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-special-collectors-edition-1/4000-926974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181097/","id":181097,"name":"","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer-3/4000-181097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175120/","id":175120,"name":"","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer-2/4000-175120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189620/","id":189620,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hellboy-the-bride-of-hell-1/4000-189620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169422/","id":169422,"name":"","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer-1/4000-169422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166267/","id":166267,"name":"Entropy: Part One of the Beauty of Decay; The Hounds of Titus Roan","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-16-entropy-part-one-of-the-beauty/4000-166267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237967/","id":237967,"name":"Haunt of Horror","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-1-haunt-of-horror/4000-237967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440110/","id":440110,"name":"","site_detail_url":"https://comicvine.gamespot.com/hellblazer-de-brian-azzarello-1/4000-440110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177930/","id":177930,"name":"Vol. 6","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-bullets-dont-lie-1-vol-6/4000-177930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148590/","id":148590,"name":"Last Stand of the Spirits of Vengeance","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-30-last-stand-of-the-spirits-of-vengea/4000-148590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150545/","id":150545,"name":"Cimmeria (Part 7): Darkness and the Night","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-7-cimmeria-part-7-darkness-and/4000-150545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290485/","id":290485,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-guarida-del-horror-lovecraft-1/4000-290485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141590/","id":141590,"name":"Haunted House: Chapter One","site_detail_url":"https://comicvine.gamespot.com/unknown-soldier-1-haunted-house-chapter-one/4000-141590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139684/","id":139684,"name":"Waiting for The End of The World, Chapter One: The Last Place On Earth","site_detail_url":"https://comicvine.gamespot.com/cable-7-waiting-for-the-end-of-the-world-chapter-o/4000-139684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146846/","id":146846,"name":"Cimmeria (Part 6): Homecoming","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-6-cimmeria-part-6-homecoming/4000-146846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142539/","id":142539,"name":"Cimmeria (Part 5): The Wolf's Promise","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-5-cimmeria-part-5-the-wolfs-pr/4000-142539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167816/","id":167816,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/aliens-omnibus-5-volume-5/4000-167816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139133/","id":139133,"name":"Arthur Jermyn; The Well, The Window","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-lovecraft-3-arthur-jermyn-the-well/4000-139133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140453/","id":140453,"name":"Cimmeria (Part 4): The Skrae","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-4-cimmeria-part-4-the-skrae/4000-140453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134999/","id":134999,"name":"The Music of Erich Zann; The Canal; The Lamp","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-lovecraft-2-the-music-of-erich-zan/4000-134999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139003/","id":139003,"name":"Cimmeria (Part 3): Path of Mist","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-3-cimmeria-part-3-path-of-mist/4000-139003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139313/","id":139313,"name":"The Crooked Man (Part 3)","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-3-the-crooked-man-part-3/4000-139313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237970/","id":237970,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-hp-lovecraft-1-tpb/4000-237970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134863/","id":134863,"name":"The Scar / Recognition / A Memory","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-lovecraft-1-the-scar-recognition-a/4000-134863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135395/","id":135395,"name":"The Crooked Man (Part 2)","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-2-the-crooked-man-part-2/4000-135395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135442/","id":135442,"name":"Cimmeria (Part 2): Mark of the Wolf","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-2-cimmeria-part-2-mark-of-the-/4000-135442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882453/","id":882453,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hellboy-a-feiticeira-troll-e-outras-historias-1/4000-882453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132348/","id":132348,"name":"The Crooked Man (Part 1)","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-1-the-crooked-man-part-1/4000-132348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130035/","id":130035,"name":"The Red Mask","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-31-the-red-mask/4000-130035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133679/","id":133679,"name":"Cimmeria (Part 1): Hunter's Moon","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian-1-cimmeria-part-1-hunters-moon/4000-133679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285312/","id":285312,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-el-increible-hulk-banner/4000-285312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331798/","id":331798,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead-1-tpb/4000-331798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447640/","id":447640,"name":"Die Troll-Hexe","site_detail_url":"https://comicvine.gamespot.com/hellboy-8-die-troll-hexe/4000-447640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797972/","id":797972,"name":null,"site_detail_url":"https://comicvine.gamespot.com/aliens-2/4000-797972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282925/","id":282925,"name":"La Leyenda de Sleepy Hollow, Illinois","site_detail_url":"https://comicvine.gamespot.com/100-marvel-ghost-rider-2-la-leyenda-de-sleepy-holl/4000-282925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120161/","id":120161,"name":"","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead-3/4000-120161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117823/","id":117823,"name":"","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead-2/4000-117823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117955/","id":117955,"name":"","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead-1/4000-117955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218375/","id":218375,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-troll-witch-and-others-1-tpb/4000-218375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203185/","id":203185,"name":"Ghost Rider: The Life and Death of Johnny Blaze","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-the-life-and-death-of-johnny-blaze-1-g/4000-203185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-870819/","id":870819,"name":"Wyspa i inne opowieści","site_detail_url":"https://comicvine.gamespot.com/hellboy-9-wyspa-i-inne-opowiesci/4000-870819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490027/","id":490027,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/harlan-ellisons-dream-corridor-2-vol-2/4000-490027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180770/","id":180770,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/american-splendor-another-day-1-volume-1/4000-180770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107149/","id":107149,"name":"Hell to Pay: Part 2","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-7-hell-to-pay-part-2/4000-107149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107148/","id":107148,"name":"Hell to Pay: Part 1","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-6-hell-to-pay-part-1/4000-107148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228162/","id":228162,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/punisher-max-from-first-to-last-1-hctpb/4000-228162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141367/","id":141367,"name":"","site_detail_url":"https://comicvine.gamespot.com/american-splendor-2/4000-141367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237969/","id":237969,"name":"Haunt of Horror: Edgar Allan Poe","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-edgar-allan-poe-1-haunt-of-horror-/4000-237969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134153/","id":134153,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-edgar-allan-poe-3-untitled/4000-134153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134152/","id":134152,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-edgar-allan-poe-2-untitled/4000-134152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134151/","id":134151,"name":"[Untitled]","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-edgar-allan-poe-1-untitled/4000-134151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290122/","id":290122,"name":"","site_detail_url":"https://comicvine.gamespot.com/alienspredator-panel-to-panel-1/4000-290122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-939594/","id":939594,"name":"Vampirella: Las crónicas carmesí 2","site_detail_url":"https://comicvine.gamespot.com/coleccion-made-in-hell-24-vampirella-las-cronicas-/4000-939594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107064/","id":107064,"name":"","site_detail_url":"https://comicvine.gamespot.com/hellboy-makoma-or-a-tale-told-by-a-mummy-in-the-ne/4000-107064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107028/","id":107028,"name":"","site_detail_url":"https://comicvine.gamespot.com/hellboy-makoma-or-a-tale-told-by-a-mummy-in-the-ne/4000-107028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212743/","id":212743,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-healing-the-breach-1-vol-3/4000-212743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148659/","id":148659,"name":"Little Runaway","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-20-little-runaway/4000-148659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140817/","id":140817,"name":"","site_detail_url":"https://comicvine.gamespot.com/bigfoot-4/4000-140817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239462/","id":239462,"name":"","site_detail_url":"https://comicvine.gamespot.com/werewolf-1/4000-239462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155527/","id":155527,"name":"","site_detail_url":"https://comicvine.gamespot.com/bigfoot-3/4000-155527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155526/","id":155526,"name":"","site_detail_url":"https://comicvine.gamespot.com/bigfoot-2/4000-155526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98709/","id":98709,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-2/4000-98709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140816/","id":140816,"name":"","site_detail_url":"https://comicvine.gamespot.com/bigfoot-1/4000-140816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99349/","id":99349,"name":"Missing Links Conclusion","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-8-missing-links-conclusion/4000-99349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99348/","id":99348,"name":"Missing Links Part 1","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-7-missing-links-part-1/4000-99348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131270/","id":131270,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-the-end-1/4000-131270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382676/","id":382676,"name":"Masks:Too Hot For TV!","site_detail_url":"https://comicvine.gamespot.com/masks-too-hot-for-tv-1-maskstoo-hot-for-tv/4000-382676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-901495/","id":901495,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/vampirella-crimson-chronicles-2-volume-2/4000-901495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304149/","id":304149,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-art-of-marvel-1-hc/4000-304149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889005/","id":889005,"name":null,"site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-142/4000-889005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276361/","id":276361,"name":"The Continuing Adventures of a Boy & His Dog","site_detail_url":"https://comicvine.gamespot.com/vic-blood-1-the-continuing-adventures-of-a-boy-his/4000-276361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273841/","id":273841,"name":"Cage","site_detail_url":"https://comicvine.gamespot.com/100-marvel-1-cage/4000-273841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181355/","id":181355,"name":"The Best Of Ray Bradbury","site_detail_url":"https://comicvine.gamespot.com/best-of-ray-bradbury-1-the-best-of-ray-bradbury/4000-181355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288127/","id":288127,"name":"Hellblazer: Tiempos Difíciles","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-220-hellblazer-tiempos-dificiles/4000-288127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288147/","id":288147,"name":"La Casa en el Confin de la Tierra","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo-235-la-casa-en-el-confin-de-la-t/4000-288147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339676/","id":339676,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cage-1-tpb/4000-339676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111424/","id":111424,"name":"Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-1-marvel-encyclopedia/4000-111424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269693/","id":269693,"name":"H. P. Lovecraft","site_detail_url":"https://comicvine.gamespot.com/graphic-classics-4-h-p-lovecraft/4000-269693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107238/","id":107238,"name":"Cage (Part 5)","site_detail_url":"https://comicvine.gamespot.com/cage-5-cage-part-5/4000-107238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438495/","id":438495,"name":"Hard Time","site_detail_url":"https://comicvine.gamespot.com/hellblazer-8-hard-time/4000-438495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161203/","id":161203,"name":"","site_detail_url":"https://comicvine.gamespot.com/just-imagine-stan-lee-with-walter-simonson-creatin/4000-161203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107237/","id":107237,"name":"Cage (Part 4)","site_detail_url":"https://comicvine.gamespot.com/cage-4-cage-part-4/4000-107237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107236/","id":107236,"name":"Cage (Part 3)","site_detail_url":"https://comicvine.gamespot.com/cage-3-cage-part-3/4000-107236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106919/","id":106919,"name":"Cage (Part 2)","site_detail_url":"https://comicvine.gamespot.com/cage-2-cage-part-2/4000-106919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106901/","id":106901,"name":"Cage (Part 1)","site_detail_url":"https://comicvine.gamespot.com/cage-1-cage-part-1/4000-106901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-745399/","id":745399,"name":"Banner","site_detail_url":"https://comicvine.gamespot.com/100-marvel-hulk-1-banner/4000-745399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232055/","id":232055,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner-1-tpb/4000-232055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126724/","id":126724,"name":"Wolverine: Origin","site_detail_url":"https://comicvine.gamespot.com/marvel-must-haves-1-wolverine-origin/4000-126724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339929/","id":339929,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroes-1/4000-339929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101466/","id":101466,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-crusades-8/4000-101466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77968/","id":77968,"name":"","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner-4/4000-77968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77967/","id":77967,"name":"","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner-3/4000-77967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77966/","id":77966,"name":"","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner-2/4000-77966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77965/","id":77965,"name":"","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner-1/4000-77965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268437/","id":268437,"name":"","site_detail_url":"https://comicvine.gamespot.com/vertigo-book-8/4000-268437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-58993/","id":58993,"name":"The Wedding Breakfast; A Temporary Life; Descent","site_detail_url":"https://comicvine.gamespot.com/flinch-16-the-wedding-breakfast-a-temporary-life-d/4000-58993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450882/","id":450882,"name":"","site_detail_url":"https://comicvine.gamespot.com/myth-maker-1/4000-450882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428599/","id":428599,"name":"","site_detail_url":"https://comicvine.gamespot.com/jaguar-god-illustrations-1/4000-428599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132079/","id":132079,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-house-on-the-borderland-1-tpb/4000-132079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212564/","id":212564,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellblazer-hard-time-1-tpb/4000-212564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108092/","id":108092,"name":"Hard Time, Part 5","site_detail_url":"https://comicvine.gamespot.com/hellblazer-150-hard-time-part-5/4000-108092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368630/","id":368630,"name":"","site_detail_url":"https://comicvine.gamespot.com/vertigo-presenta-1/4000-368630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108091/","id":108091,"name":"Hard Time, Part 4","site_detail_url":"https://comicvine.gamespot.com/hellblazer-149-hard-time-part-4/4000-108091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-996774/","id":996774,"name":null,"site_detail_url":"https://comicvine.gamespot.com/alienspredator-4/4000-996774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108090/","id":108090,"name":"Hard Time, Part 3","site_detail_url":"https://comicvine.gamespot.com/hellblazer-148-hard-time-part-3/4000-108090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108089/","id":108089,"name":"Hard Time, Part 2","site_detail_url":"https://comicvine.gamespot.com/hellblazer-147-hard-time-part-2/4000-108089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108088/","id":108088,"name":"Hard Time, Part 1","site_detail_url":"https://comicvine.gamespot.com/hellblazer-146-hard-time-part-1/4000-108088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212558/","id":212558,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/gangland-1-tpb/4000-212558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83072/","id":83072,"name":"The Split; Driving Miss 134; Metal Fatigue","site_detail_url":"https://comicvine.gamespot.com/strange-adventures-3-the-split-driving-miss-134-me/4000-83072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99495/","id":99495,"name":"The Beast","site_detail_url":"https://comicvine.gamespot.com/congo-bill-4-the-beast/4000-99495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99494/","id":99494,"name":"The Darkness","site_detail_url":"https://comicvine.gamespot.com/congo-bill-3-the-darkness/4000-99494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99493/","id":99493,"name":"The River","site_detail_url":"https://comicvine.gamespot.com/congo-bill-2-the-river/4000-99493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99492/","id":99492,"name":"The Message","site_detail_url":"https://comicvine.gamespot.com/congo-bill-1-the-message/4000-99492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45932/","id":45932,"name":"Maggie and Her Microscope; Found Object; Food Chain","site_detail_url":"https://comicvine.gamespot.com/flinch-2-maggie-and-her-microscope-found-object-fo/4000-45932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146471/","id":146471,"name":"Vol. 23, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199904-vol-23-no-3/4000-146471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45890/","id":45890,"name":"Rocket-Man / Nice Neighborhood / Wolf Girl Eats","site_detail_url":"https://comicvine.gamespot.com/flinch-1-rocket-man-nice-neighborhood-wolf-girl-ea/4000-45890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-403898/","id":403898,"name":"","site_detail_url":"https://comicvine.gamespot.com/robert-e-howard-s-myth-maker-1/4000-403898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45728/","id":45728,"name":"Apposites Attract","site_detail_url":"https://comicvine.gamespot.com/heartthrobs-3-apposites-attract/4000-45728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146469/","id":146469,"name":"Vol. 23, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199902-vol-23-no-1/4000-146469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146468/","id":146468,"name":"Vol. 22, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199901-vol-22-no-6/4000-146468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143548/","id":143548,"name":"","site_detail_url":"https://comicvine.gamespot.com/c-23-8/4000-143548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143547/","id":143547,"name":"","site_detail_url":"https://comicvine.gamespot.com/c-23-7/4000-143547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143546/","id":143546,"name":"Planetary: \"Nuclear Spring\".","site_detail_url":"https://comicvine.gamespot.com/c-23-6-planetary-nuclear-spring/4000-143546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147763/","id":147763,"name":"","site_detail_url":"https://comicvine.gamespot.com/frank-frazetta-fantasy-illustrated-3/4000-147763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400356/","id":400356,"name":"Spirit Jam","site_detail_url":"https://comicvine.gamespot.com/spirit-jam-1-spirit-jam/4000-400356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162618/","id":162618,"name":"","site_detail_url":"https://comicvine.gamespot.com/c-23-5/4000-162618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45168/","id":45168,"name":"Killer Smile; Big Shot; Platinum Nights","site_detail_url":"https://comicvine.gamespot.com/gangland-2-killer-smile-big-shot-platinum-nights/4000-45168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149240/","id":149240,"name":"Verotik Illustrated","site_detail_url":"https://comicvine.gamespot.com/verotik-illustrated-3-verotik-illustrated/4000-149240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147758/","id":147758,"name":"","site_detail_url":"https://comicvine.gamespot.com/frank-frazetta-fantasy-illustrated-1/4000-147758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268671/","id":268671,"name":"Best of Richard Corben","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199802-best-of-richard-corben/4000-268671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116483/","id":116483,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-alchemy-3/4000-116483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44334/","id":44334,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-alchemy-2/4000-44334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44229/","id":44229,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-alchemy-1/4000-44229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331425/","id":331425,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-2/4000-331425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52666/","id":52666,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/weird-war-tales-3-book-three/4000-52666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267324/","id":267324,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-20/4000-267324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-330935/","id":330935,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-1/4000-330935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52664/","id":52664,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/weird-war-tales-1-book-one/4000-52664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43756/","id":43756,"name":"The Haunting of Jim Corrigan, Part Three: Atonement","site_detail_url":"https://comicvine.gamespot.com/the-spectre-54-the-haunting-of-jim-corrigan-part-t/4000-43756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267323/","id":267323,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-19/4000-267323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267322/","id":267322,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-18/4000-267322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133095/","id":133095,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-20/4000-133095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133094/","id":133094,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-19/4000-133094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239268/","id":239268,"name":"","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-de-la-bande-dessinee-erotique-1/4000-239268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268675/","id":268675,"name":"20 Years Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199702-20-years-special/4000-268675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133093/","id":133093,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-18/4000-133093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133092/","id":133092,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-17/4000-133092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133091/","id":133091,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-16/4000-133091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133090/","id":133090,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-15/4000-133090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159174/","id":159174,"name":"Scape Goats","site_detail_url":"https://comicvine.gamespot.com/x-files-comics-digest-3-scape-goats/4000-159174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133089/","id":133089,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-14/4000-133089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42570/","id":42570,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-black-and-white-2/4000-42570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133087/","id":133087,"name":"","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix-12/4000-133087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146451/","id":146451,"name":"Vol. 20, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199602-vol-20-no-1/4000-146451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268667/","id":268667,"name":"One Step Beyond","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199601-one-step-beyond/4000-268667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146449/","id":146449,"name":"Vol. 19, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199506-vol-19-no-5/4000-146449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152189/","id":152189,"name":"T.H.U.N.D.E.R. Agents","site_detail_url":"https://comicvine.gamespot.com/omni-comix-3-thunder-agents/4000-152189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127709/","id":127709,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-war-4/4000-127709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127712/","id":127712,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-war-3/4000-127712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127710/","id":127710,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-war-2/4000-127710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127707/","id":127707,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-war-1/4000-127707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127605/","id":127605,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-war-0/4000-127605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268665/","id":268665,"name":"Havoc","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199502-havoc/4000-268665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268664/","id":268664,"name":"Overdrive","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199501-overdrive/4000-268664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146444/","id":146444,"name":"Vol. 18, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199501-vol-18-no-6/4000-146444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371864/","id":371864,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-141/4000-371864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371863/","id":371863,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-140/4000-371863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371858/","id":371858,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-135/4000-371858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286686/","id":286686,"name":"Pin-Up","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199401-pin-up/4000-286686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371857/","id":371857,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-134/4000-371857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371855/","id":371855,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-132/4000-371855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146438/","id":146438,"name":"Vol. 18, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199402-vol-18-no-1/4000-146438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201055/","id":201055,"name":"","site_detail_url":"https://comicvine.gamespot.com/from-the-pit-1/4000-201055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511152/","id":511152,"name":"","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-black-diamond-1/4000-511152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-760784/","id":760784,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cimoc-151/4000-760784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326904/","id":326904,"name":"","site_detail_url":"https://comicvine.gamespot.com/cimoc-150/4000-326904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170458/","id":170458,"name":"","site_detail_url":"https://comicvine.gamespot.com/bruce-joness-razor-edge-1/4000-170458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146434/","id":146434,"name":"Vol. 17, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199304-vol-17-no-3/4000-146434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-996340/","id":996340,"name":"Elementos","site_detail_url":"https://comicvine.gamespot.com/den-5-elementos/4000-996340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-996339/","id":996339,"name":"Sueños","site_detail_url":"https://comicvine.gamespot.com/den-4-suenos/4000-996339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787904/","id":787904,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-internacional-6/4000-787904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-940963/","id":940963,"name":"Figli del fuoco & Den","site_detail_url":"https://comicvine.gamespot.com/best-comics-14-figli-del-fuoco-and-den/4000-940963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787902/","id":787902,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-internacional-4/4000-787902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787903/","id":787903,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-internacional-5/4000-787903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371839/","id":371839,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-119/4000-371839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787901/","id":787901,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-internacional-3/4000-787901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395876/","id":395876,"name":"Visions of Arzach","site_detail_url":"https://comicvine.gamespot.com/visions-of-arzach-1-visions-of-arzach/4000-395876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40146/","id":40146,"name":"Heavenly Holocaust","site_detail_url":"https://comicvine.gamespot.com/densaga-4-heavenly-holocaust/4000-40146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38336/","id":38336,"name":"Falling Angels","site_detail_url":"https://comicvine.gamespot.com/densaga-3-falling-angels/4000-38336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38333/","id":38333,"name":"Days on Heaven","site_detail_url":"https://comicvine.gamespot.com/densaga-2-days-on-heaven/4000-38333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389661/","id":389661,"name":"","site_detail_url":"https://comicvine.gamespot.com/bodyssey-1/4000-389661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903502/","id":903502,"name":"Dinosaurios","site_detail_url":"https://comicvine.gamespot.com/cimoc-especial-12-dinosaurios/4000-903502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371837/","id":371837,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-117/4000-371837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286690/","id":286690,"name":"15 Years of Heavy Metal","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special-199201-15-years-of-heavy-metal/4000-286690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371836/","id":371836,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-116/4000-371836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146430/","id":146430,"name":"Vol. 16, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199206-vol-16-no-5/4000-146430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248708/","id":248708,"name":"Horror","site_detail_url":"https://comicvine.gamespot.com/the-ray-bradbury-chronicles-4-horror/4000-248708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371834/","id":371834,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-114/4000-371834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146429/","id":146429,"name":"Vol. 16, No. 4","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199205-vol-16-no-4/4000-146429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371833/","id":371833,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-113/4000-371833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-940973/","id":940973,"name":"Figli di un mondo mutante","site_detail_url":"https://comicvine.gamespot.com/best-comics-7-figli-di-un-mondo-mutante/4000-940973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371832/","id":371832,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-112/4000-371832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787899/","id":787899,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-internacional-1/4000-787899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371831/","id":371831,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-111/4000-371831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371830/","id":371830,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-110/4000-371830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-996338/","id":996338,"name":"Hijos del fuego","site_detail_url":"https://comicvine.gamespot.com/den-3-hijos-del-fuego/4000-996338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371829/","id":371829,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-109/4000-371829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371828/","id":371828,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-108/4000-371828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276823/","id":276823,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-94/4000-276823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371827/","id":371827,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-107/4000-371827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276822/","id":276822,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-93/4000-276822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371826/","id":371826,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-106/4000-371826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36594/","id":36594,"name":"The Price of Memories","site_detail_url":"https://comicvine.gamespot.com/densaga-1-the-price-of-memories/4000-36594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146425/","id":146425,"name":"Vol. 15, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-199201-vol-15-no-6/4000-146425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276821/","id":276821,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-92/4000-276821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371825/","id":371825,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-105/4000-371825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293985/","id":293985,"name":"","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-1/4000-293985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276819/","id":276819,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-91/4000-276819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371824/","id":371824,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-104/4000-371824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276818/","id":276818,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-90/4000-276818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858424/","id":858424,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-3/4000-858424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786494/","id":786494,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-7/4000-786494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786497/","id":786497,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-10/4000-786497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786498/","id":786498,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-11/4000-786498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786499/","id":786499,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-12/4000-786499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786501/","id":786501,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-14/4000-786501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786502/","id":786502,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-15/4000-786502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786503/","id":786503,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-16/4000-786503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786504/","id":786504,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-17/4000-786504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-786506/","id":786506,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-19/4000-786506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371823/","id":371823,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-103/4000-371823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276817/","id":276817,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-89/4000-276817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276816/","id":276816,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-88/4000-276816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276815/","id":276815,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-87/4000-276815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276814/","id":276814,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-86/4000-276814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276813/","id":276813,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-85/4000-276813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862172/","id":862172,"name":"Vic & Blood","site_detail_url":"https://comicvine.gamespot.com/la-nuova-mongolfiera-34-vic-and-blood/4000-862172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276812/","id":276812,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-84/4000-276812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276810/","id":276810,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-82/4000-276810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276809/","id":276809,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-81/4000-276809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33650/","id":33650,"name":"","site_detail_url":"https://comicvine.gamespot.com/horror-in-the-dark-4/4000-33650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390357/","id":390357,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-1-neverwhere-1/4000-390357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276808/","id":276808,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-80/4000-276808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785066/","id":785066,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-1/4000-785066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371788/","id":371788,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-91/4000-371788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32169/","id":32169,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-mutant-world-4/4000-32169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32162/","id":32162,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-mutant-world-3/4000-32162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32156/","id":32156,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-mutant-world-2/4000-32156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276802/","id":276802,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-74/4000-276802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371792/","id":371792,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-87/4000-371792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159033/","id":159033,"name":"Turtles Take Time","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-33-turtles-take-time/4000-159033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331433/","id":331433,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-86/4000-331433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276801/","id":276801,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-73/4000-276801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55382/","id":55382,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-199005/4000-55382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276800/","id":276800,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-72/4000-276800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-989147/","id":989147,"name":null,"site_detail_url":"https://comicvine.gamespot.com/komiks-fantastyka-10-11/4000-989147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-922305/","id":922305,"name":null,"site_detail_url":"https://comicvine.gamespot.com/usa-magazine-47/4000-922305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55381/","id":55381,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-199004/4000-55381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276799/","id":276799,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-71/4000-276799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276798/","id":276798,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-70/4000-276798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276797/","id":276797,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-69/4000-276797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32173/","id":32173,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-mutant-world-5/4000-32173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32141/","id":32141,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-mutant-world-1/4000-32141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55378/","id":55378,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-199001/4000-55378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391178/","id":391178,"name":"","site_detail_url":"https://comicvine.gamespot.com/rip-in-time-1/4000-391178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276796/","id":276796,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-68/4000-276796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55228/","id":55228,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198912/4000-55228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276795/","id":276795,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-67/4000-276795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368760/","id":368760,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-80/4000-368760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55377/","id":55377,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198909/4000-55377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276794/","id":276794,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-66/4000-276794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276793/","id":276793,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-65/4000-276793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368762/","id":368762,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-78/4000-368762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276792/","id":276792,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-64/4000-276792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276791/","id":276791,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-63/4000-276791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30613/","id":30613,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-5/4000-30613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30631/","id":30631,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-9/4000-30631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30621/","id":30621,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-6/4000-30621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30625/","id":30625,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-7/4000-30625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30628/","id":30628,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-8/4000-30628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30643/","id":30643,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-10/4000-30643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55375/","id":55375,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198907/4000-55375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276790/","id":276790,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-62/4000-276790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1063678/","id":1063678,"name":null,"site_detail_url":"https://comicvine.gamespot.com/bild-and-bubblas-stora-seriebok-1/4000-1063678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55374/","id":55374,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198906/4000-55374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231346/","id":231346,"name":"","site_detail_url":"https://comicvine.gamespot.com/snarf-12/4000-231346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276789/","id":276789,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-61/4000-276789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55373/","id":55373,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198905/4000-55373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276788/","id":276788,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-60/4000-276788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276787/","id":276787,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-59/4000-276787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276786/","id":276786,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-58/4000-276786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55371/","id":55371,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198903/4000-55371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276785/","id":276785,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-57/4000-276785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364616/","id":364616,"name":"","site_detail_url":"https://comicvine.gamespot.com/vic-and-blood-the-chronicles-of-a-boy-and-his-dog-/4000-364616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366804/","id":366804,"name":"","site_detail_url":"https://comicvine.gamespot.com/fire-sale-1/4000-366804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276781/","id":276781,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-53/4000-276781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-922223/","id":922223,"name":null,"site_detail_url":"https://comicvine.gamespot.com/usa-magazine-hors-serie-1/4000-922223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368774/","id":368774,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-66/4000-368774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276780/","id":276780,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-52/4000-276780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368775/","id":368775,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-65/4000-368775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29025/","id":29025,"name":"","site_detail_url":"https://comicvine.gamespot.com/children-of-fire-3/4000-29025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276779/","id":276779,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-51/4000-276779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-788218/","id":788218,"name":null,"site_detail_url":"https://comicvine.gamespot.com/totem-super-1/4000-788218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29020/","id":29020,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-2/4000-29020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29026/","id":29026,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-3/4000-29026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29031/","id":29031,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-4/4000-29031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276778/","id":276778,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-50/4000-276778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276777/","id":276777,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-49/4000-276777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276776/","id":276776,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-48/4000-276776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-922317/","id":922317,"name":null,"site_detail_url":"https://comicvine.gamespot.com/usa-magazine-33/4000-922317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29019/","id":29019,"name":"","site_detail_url":"https://comicvine.gamespot.com/children-of-fire-2/4000-29019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55362/","id":55362,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198803/4000-55362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415424/","id":415424,"name":"","site_detail_url":"https://comicvine.gamespot.com/vic-and-blood-2/4000-415424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29005/","id":29005,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-1/4000-29005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55360/","id":55360,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198801/4000-55360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390285/","id":390285,"name":"","site_detail_url":"https://comicvine.gamespot.com/last-voyage-of-sindbad-1/4000-390285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55359/","id":55359,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198712/4000-55359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415423/","id":415423,"name":"","site_detail_url":"https://comicvine.gamespot.com/vic-and-blood-1/4000-415423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27552/","id":27552,"name":"","site_detail_url":"https://comicvine.gamespot.com/children-of-fire-1/4000-27552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27574/","id":27574,"name":"","site_detail_url":"https://comicvine.gamespot.com/rip-in-time-4/4000-27574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27566/","id":27566,"name":"","site_detail_url":"https://comicvine.gamespot.com/rip-in-time-3/4000-27566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27576/","id":27576,"name":"","site_detail_url":"https://comicvine.gamespot.com/rip-in-time-5/4000-27576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368735/","id":368735,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-57/4000-368735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55353/","id":55353,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198706/4000-55353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368737/","id":368737,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-54/4000-368737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55347/","id":55347,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198612/4000-55347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55346/","id":55346,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198611/4000-55346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55344/","id":55344,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198609/4000-55344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55189/","id":55189,"name":"Äventyr i gult","site_detail_url":"https://comicvine.gamespot.com/epix-198609-aventyr-i-gult/4000-55189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26272/","id":26272,"name":"","site_detail_url":"https://comicvine.gamespot.com/rip-in-time-2/4000-26272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26257/","id":26257,"name":"","site_detail_url":"https://comicvine.gamespot.com/rip-in-time-1/4000-26257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55342/","id":55342,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198607/4000-55342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396355/","id":396355,"name":"Rowlf / Underground 3","site_detail_url":"https://comicvine.gamespot.com/richard-corben-complete-works-3-rowlf-underground-/4000-396355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55341/","id":55341,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198606/4000-55341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55339/","id":55339,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198604/4000-55339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276750/","id":276750,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-23/4000-276750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26533/","id":26533,"name":"","site_detail_url":"https://comicvine.gamespot.com/alien-encounters-5/4000-26533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164228/","id":164228,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198602/4000-164228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368747/","id":368747,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-44/4000-368747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164226/","id":164226,"name":"","site_detail_url":"https://comicvine.gamespot.com/tung-metall-198601/4000-164226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198870/","id":198870,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-bodyssey-1/4000-198870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304370/","id":304370,"name":"","site_detail_url":"https://comicvine.gamespot.com/turtlemania-special-1/4000-304370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333706/","id":333706,"name":"","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-plague-1/4000-333706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225437/","id":225437,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-heavy-metal-2/4000-225437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108266/","id":108266,"name":"\"Heroes For Hope\"","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hope-starring-the-x-men-1-heroes-for-ho/4000-108266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276746/","id":276746,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-19/4000-276746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368749/","id":368749,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-42/4000-368749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396196/","id":396196,"name":"Underground","site_detail_url":"https://comicvine.gamespot.com/richard-corben-complete-works-1-underground/4000-396196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55179/","id":55179,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198511/4000-55179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183319/","id":183319,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-60/4000-183319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183321/","id":183321,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-62/4000-183321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183322/","id":183322,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-63/4000-183322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183323/","id":183323,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-64/4000-183323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183328/","id":183328,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-69/4000-183328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183329/","id":183329,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-70/4000-183329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276745/","id":276745,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-18/4000-276745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26007/","id":26007,"name":"Death Rattle","site_detail_url":"https://comicvine.gamespot.com/death-rattle-1-death-rattle/4000-26007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276744/","id":276744,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-17/4000-276744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368751/","id":368751,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-40/4000-368751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55177/","id":55177,"name":"Elefanternas kyrkogård","site_detail_url":"https://comicvine.gamespot.com/epix-198509-elefanternas-kyrkogard/4000-55177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146394/","id":146394,"name":"Vol. 9, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198509-vol-9-no-6/4000-146394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368752/","id":368752,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-39/4000-368752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276742/","id":276742,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-15/4000-276742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146393/","id":146393,"name":"Vol. 9, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198508-vol-9-no-5/4000-146393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785060/","id":785060,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-77/4000-785060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785062/","id":785062,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-79/4000-785062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55175/","id":55175,"name":"På djupet","site_detail_url":"https://comicvine.gamespot.com/epix-198507-pa-djupet/4000-55175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146392/","id":146392,"name":"Vol. 9, No. 4","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198507-vol-9-no-4/4000-146392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368753/","id":368753,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-38/4000-368753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55174/","id":55174,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198506/4000-55174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276740/","id":276740,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-13/4000-276740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146391/","id":146391,"name":"Vol. 9, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198506-vol-9-no-3/4000-146391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421502/","id":421502,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-146/4000-421502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368754/","id":368754,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-37/4000-368754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125473/","id":125473,"name":"Vol. 9, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198505-vol-9-no-2/4000-125473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55173/","id":55173,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198505/4000-55173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276739/","id":276739,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-12/4000-276739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55172/","id":55172,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198504/4000-55172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146390/","id":146390,"name":"Vol. 9, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198504-vol-9-no-1/4000-146390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368755/","id":368755,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-36/4000-368755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-986061/","id":986061,"name":"Epoca underground","site_detail_url":"https://comicvine.gamespot.com/obras-completas-richard-corben-3-epoca-underground/4000-986061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-922329/","id":922329,"name":null,"site_detail_url":"https://comicvine.gamespot.com/usa-magazine-13/4000-922329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368756/","id":368756,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-35/4000-368756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276737/","id":276737,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-10/4000-276737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368757/","id":368757,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-34/4000-368757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-815647/","id":815647,"name":null,"site_detail_url":"https://comicvine.gamespot.com/total-metal-5/4000-815647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276736/","id":276736,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-9/4000-276736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924412/","id":924412,"name":null,"site_detail_url":"https://comicvine.gamespot.com/totem-2/4000-924412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55169/","id":55169,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198501/4000-55169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319728/","id":319728,"name":"","site_detail_url":"https://comicvine.gamespot.com/weerwolf-verhalen-over-heksen-en-weerwolven-1/4000-319728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276735/","id":276735,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-8/4000-276735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386366/","id":386366,"name":"The Fall of the House of Usher","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-1-the-fall-of-the-house-of-usher/4000-386366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193188/","id":193188,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-107/4000-193188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146386/","id":146386,"name":"Vol. 8, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198412-vol-8-no-9/4000-146386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265626/","id":265626,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-32/4000-265626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276734/","id":276734,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-7/4000-276734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265625/","id":265625,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-31/4000-265625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276733/","id":276733,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-6/4000-276733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235067/","id":235067,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-30/4000-235067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235066/","id":235066,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-29/4000-235066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198912/","id":198912,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-28/4000-198912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55167/","id":55167,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198407/4000-55167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276729/","id":276729,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-2/4000-276729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198885/","id":198885,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-27/4000-198885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237106/","id":237106,"name":"","site_detail_url":"https://comicvine.gamespot.com/zona-84-1/4000-237106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142151/","id":142151,"name":"The Fall Of The House Of Usher","site_detail_url":"https://comicvine.gamespot.com/a-corben-special-1-the-fall-of-the-house-of-usher/4000-142151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198867/","id":198867,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-26/4000-198867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274030/","id":274030,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-64/4000-274030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197262/","id":197262,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-25/4000-197262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55164/","id":55164,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198404/4000-55164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386048/","id":386048,"name":"Muvovum","site_detail_url":"https://comicvine.gamespot.com/den-2-muvovum/4000-386048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24219/","id":24219,"name":"","site_detail_url":"https://comicvine.gamespot.com/alien-worlds-7/4000-24219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-986059/","id":986059,"name":"Jeremy Brood","site_detail_url":"https://comicvine.gamespot.com/obras-completas-richard-corben-1-jeremy-brood/4000-986059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-986060/","id":986060,"name":"Hombre Lobo","site_detail_url":"https://comicvine.gamespot.com/obras-completas-richard-corben-2-hombre-lobo/4000-986060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55163/","id":55163,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198403/4000-55163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196815/","id":196815,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-23/4000-196815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55162/","id":55162,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198402/4000-55162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146375/","id":146375,"name":"Vol. 7, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198402-vol-7-no-11/4000-146375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399857/","id":399857,"name":"","site_detail_url":"https://comicvine.gamespot.com/werewolf-1/4000-399857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195785/","id":195785,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-22/4000-195785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385947/","id":385947,"name":"","site_detail_url":"https://comicvine.gamespot.com/den-1/4000-385947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-998503/","id":998503,"name":"Sudori freddi","site_detail_url":"https://comicvine.gamespot.com/collana-nera-11-sudori-freddi/4000-998503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195784/","id":195784,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-21/4000-195784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820183/","id":820183,"name":"1984","site_detail_url":"https://comicvine.gamespot.com/1984-almanaque-5-1984/4000-820183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195595/","id":195595,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-20/4000-195595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274023/","id":274023,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-58/4000-274023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23561/","id":23561,"name":"","site_detail_url":"https://comicvine.gamespot.com/twisted-tales-5/4000-23561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195583/","id":195583,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-19/4000-195583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274022/","id":274022,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-57/4000-274022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857671/","id":857671,"name":null,"site_detail_url":"https://comicvine.gamespot.com/epic-1/4000-857671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274021/","id":274021,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-56/4000-274021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192652/","id":192652,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-18/4000-192652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274020/","id":274020,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-55/4000-274020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192561/","id":192561,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-17/4000-192561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274019/","id":274019,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-54/4000-274019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193170/","id":193170,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-89/4000-193170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23224/","id":23224,"name":"","site_detail_url":"https://comicvine.gamespot.com/twisted-tales-3/4000-23224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192559/","id":192559,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-16/4000-192559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146366/","id":146366,"name":"Vol. 7, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198306-vol-7-no-3/4000-146366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389345/","id":389345,"name":"","site_detail_url":"https://comicvine.gamespot.com/mutant-world-1/4000-389345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274018/","id":274018,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-53/4000-274018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193169/","id":193169,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-88/4000-193169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192552/","id":192552,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-15/4000-192552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274017/","id":274017,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-52/4000-274017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193168/","id":193168,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-87/4000-193168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192541/","id":192541,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-14/4000-192541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274016/","id":274016,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-51/4000-274016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193167/","id":193167,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-86/4000-193167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146363/","id":146363,"name":"Vol. 6, No. 12","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198303-vol-6-no-12/4000-146363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274015/","id":274015,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-50/4000-274015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193166/","id":193166,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-85/4000-193166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707038/","id":707038,"name":"Sombras de hierro en la luna y La hija del gigante helado","site_detail_url":"https://comicvine.gamespot.com/la-espada-salvaje-de-conan-12-sombras-de-hierro-en/4000-707038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192387/","id":192387,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-12/4000-192387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132490/","id":132490,"name":"Vol. 6, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198302-vol-6-no-11/4000-132490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785373/","id":785373,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-20/4000-785373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274014/","id":274014,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-49/4000-274014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193165/","id":193165,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-84/4000-193165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821365/","id":821365,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comic-forum-17/4000-821365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146362/","id":146362,"name":"Vol. 6, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198301-vol-6-no-10/4000-146362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390900/","id":390900,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantagor-presents-brood-1/4000-390900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193164/","id":193164,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-83/4000-193164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-584801/","id":584801,"name":"","site_detail_url":"https://comicvine.gamespot.com/fluge-in-die-fantasie-1/4000-584801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634139/","id":634139,"name":"","site_detail_url":"https://comicvine.gamespot.com/spontan-comics-sonderheft-1/4000-634139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22669/","id":22669,"name":"Last of the Dragons","site_detail_url":"https://comicvine.gamespot.com/epic-illustrated-15-last-of-the-dragons/4000-22669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146361/","id":146361,"name":"Vol. 6, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198212-vol-6-no-9/4000-146361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193163/","id":193163,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-82/4000-193163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22615/","id":22615,"name":"","site_detail_url":"https://comicvine.gamespot.com/twisted-tales-1/4000-22615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146360/","id":146360,"name":"Vol. 6, No. 8","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198211-vol-6-no-8/4000-146360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390111/","id":390111,"name":"Relativity","site_detail_url":"https://comicvine.gamespot.com/jeremy-brood-1-relativity/4000-390111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274011/","id":274011,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-46/4000-274011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146611/","id":146611,"name":"Vol. 6, No. 7","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198210-vol-6-no-7/4000-146611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274010/","id":274010,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-45/4000-274010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193162/","id":193162,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-81/4000-193162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146359/","id":146359,"name":"Vol. 6, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198209-vol-6-no-6/4000-146359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91826/","id":91826,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-141/4000-91826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274009/","id":274009,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-44/4000-274009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193160/","id":193160,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-79/4000-193160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193161/","id":193161,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-80/4000-193161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192346/","id":192346,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-6/4000-192346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146358/","id":146358,"name":"Vol. 6, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198208-vol-6-no-5/4000-146358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105163/","id":105163,"name":"","site_detail_url":"https://comicvine.gamespot.com/1994-26/4000-105163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91825/","id":91825,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-140/4000-91825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274008/","id":274008,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-43/4000-274008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193159/","id":193159,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-78/4000-193159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146357/","id":146357,"name":"Vol. 6, No. 4","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198207-vol-6-no-4/4000-146357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274007/","id":274007,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-42/4000-274007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193158/","id":193158,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-77/4000-193158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146356/","id":146356,"name":"Vol. 6, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198206-vol-6-no-3/4000-146356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767248/","id":767248,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-7/4000-767248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274006/","id":274006,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-41/4000-274006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193157/","id":193157,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-76/4000-193157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146355/","id":146355,"name":"Vol. 6, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198205-vol-6-no-2/4000-146355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274004/","id":274004,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-40/4000-274004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856305/","id":856305,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-35/4000-856305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193156/","id":193156,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-75/4000-193156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819812/","id":819812,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastik-9/4000-819812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146354/","id":146354,"name":"Vol. 6, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198204-vol-6-no-1/4000-146354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274003/","id":274003,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-39/4000-274003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146353/","id":146353,"name":"Vol. 5, No. 12","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198203-vol-5-no-12/4000-146353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274002/","id":274002,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-38/4000-274002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146352/","id":146352,"name":"Vol. 5, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198202-vol-5-no-11/4000-146352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274001/","id":274001,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-37/4000-274001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225435/","id":225435,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-heavy-metal-1/4000-225435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146608/","id":146608,"name":"Vol. 5, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198201-vol-5-no-10/4000-146608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315634/","id":315634,"name":"no title","site_detail_url":"https://comicvine.gamespot.com/art-of-will-eisner-1-no-title/4000-315634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400599/","id":400599,"name":"","site_detail_url":"https://comicvine.gamespot.com/mutant-world-1/4000-400599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274000/","id":274000,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-36/4000-274000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146351/","id":146351,"name":"Vol. 5, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198112-vol-5-no-9/4000-146351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785230/","id":785230,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-13/4000-785230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273999/","id":273999,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-35/4000-273999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820181/","id":820181,"name":"1982","site_detail_url":"https://comicvine.gamespot.com/1984-almanaque-3-1982/4000-820181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21683/","id":21683,"name":null,"site_detail_url":"https://comicvine.gamespot.com/eerie-126/4000-21683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273998/","id":273998,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-34/4000-273998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819814/","id":819814,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastik-6/4000-819814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146349/","id":146349,"name":"Vol. 5, No. 7","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198110-vol-5-no-7/4000-146349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21618/","id":21618,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-125/4000-21618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91817/","id":91817,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-132/4000-91817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273997/","id":273997,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-33/4000-273997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785286/","id":785286,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-12/4000-785286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146348/","id":146348,"name":"Vol. 5, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198109-vol-5-no-6/4000-146348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273996/","id":273996,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-32/4000-273996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856609/","id":856609,"name":null,"site_detail_url":"https://comicvine.gamespot.com/3a-geracao-3/4000-856609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146347/","id":146347,"name":"Vol. 5, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198108-vol-5-no-5/4000-146347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273995/","id":273995,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-31/4000-273995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21365/","id":21365,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spirit-30/4000-21365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146606/","id":146606,"name":"Vol. 5, No. 4","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198107-vol-5-no-4/4000-146606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819816/","id":819816,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastik-4/4000-819816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146346/","id":146346,"name":"Vol. 5, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198106-vol-5-no-3/4000-146346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767244/","id":767244,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-3/4000-767244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767245/","id":767245,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-4/4000-767245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767246/","id":767246,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-5/4000-767246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767247/","id":767247,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-6/4000-767247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767249/","id":767249,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-1/4000-767249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767250/","id":767250,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-2/4000-767250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273993/","id":273993,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-30/4000-273993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193145/","id":193145,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-64/4000-193145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146604/","id":146604,"name":"Vol. 5, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198105-vol-5-no-2/4000-146604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856281/","id":856281,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-15/4000-856281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856283/","id":856283,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-19/4000-856283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146345/","id":146345,"name":"Vol. 5, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198104-vol-5-no-1/4000-146345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273992/","id":273992,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-29/4000-273992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181671/","id":181671,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-15/4000-181671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193143/","id":193143,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-62/4000-193143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146344/","id":146344,"name":"Vol. 4, No. 12","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198103-vol-4-no-12/4000-146344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784980/","id":784980,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastik-2/4000-784980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181670/","id":181670,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-14/4000-181670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193142/","id":193142,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-61/4000-193142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146343/","id":146343,"name":"Vol. 4, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198102-vol-4-no-11/4000-146343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784979/","id":784979,"name":null,"site_detail_url":"https://comicvine.gamespot.com/fantastik-1/4000-784979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273991/","id":273991,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-28/4000-273991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181669/","id":181669,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-13/4000-181669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1095085/","id":1095085,"name":"Las mil y una noches","site_detail_url":"https://comicvine.gamespot.com/coleccion-humanoides-3-las-mil-y-una-noches/4000-1095085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193141/","id":193141,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-60/4000-193141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146342/","id":146342,"name":"Vol. 4, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198101-vol-4-no-10/4000-146342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423434/","id":423434,"name":"","site_detail_url":"https://comicvine.gamespot.com/rowlf-die-bestie-von-wolfton-1/4000-423434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273990/","id":273990,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-27/4000-273990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181668/","id":181668,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-12/4000-181668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193140/","id":193140,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-59/4000-193140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146341/","id":146341,"name":"Vol. 4, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198012-vol-4-no-9/4000-146341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273989/","id":273989,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-26/4000-273989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820180/","id":820180,"name":"1981","site_detail_url":"https://comicvine.gamespot.com/1984-almanaque-2-1981/4000-820180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856296/","id":856296,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-7/4000-856296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898116/","id":898116,"name":null,"site_detail_url":"https://comicvine.gamespot.com/delta-1/4000-898116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898279/","id":898279,"name":null,"site_detail_url":"https://comicvine.gamespot.com/delta-2/4000-898279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898280/","id":898280,"name":null,"site_detail_url":"https://comicvine.gamespot.com/delta-3/4000-898280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181667/","id":181667,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-11/4000-181667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273988/","id":273988,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-25/4000-273988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181666/","id":181666,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-10/4000-181666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273987/","id":273987,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-24/4000-273987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181665/","id":181665,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-9/4000-181665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273986/","id":273986,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-23/4000-273986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181664/","id":181664,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-8/4000-181664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273985/","id":273985,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-22/4000-273985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856298/","id":856298,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-5/4000-856298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-868183/","id":868183,"name":null,"site_detail_url":"https://comicvine.gamespot.com/alter-198008/4000-868183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181663/","id":181663,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-7/4000-181663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273984/","id":273984,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-21/4000-273984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181662/","id":181662,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-6/4000-181662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20451/","id":20451,"name":"Almuric","site_detail_url":"https://comicvine.gamespot.com/epic-illustrated-2-almuric/4000-20451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767242/","id":767242,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-1/4000-767242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767243/","id":767243,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-2/4000-767243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273983/","id":273983,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-20/4000-273983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856295/","id":856295,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-4/4000-856295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-868193/","id":868193,"name":null,"site_detail_url":"https://comicvine.gamespot.com/alter-198007/4000-868193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181661/","id":181661,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-5/4000-181661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146334/","id":146334,"name":"Vol. 4, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198005-vol-4-no-2/4000-146334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273981/","id":273981,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-19/4000-273981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856269/","id":856269,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-1/4000-856269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856270/","id":856270,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-2/4000-856270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856273/","id":856273,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-3/4000-856273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856275/","id":856275,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-4/4000-856275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856277/","id":856277,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-5/4000-856277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856278/","id":856278,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-6/4000-856278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856280/","id":856280,"name":null,"site_detail_url":"https://comicvine.gamespot.com/1984-7/4000-856280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212162/","id":212162,"name":"Sploz","site_detail_url":"https://comicvine.gamespot.com/alter-198005-06-sploz/4000-212162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181660/","id":181660,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-4/4000-181660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193132/","id":193132,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-51/4000-193132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146333/","id":146333,"name":"Vol. 4, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198004-vol-4-no-1/4000-146333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273980/","id":273980,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-18/4000-273980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785218/","id":785218,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-3/4000-785218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181659/","id":181659,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-3/4000-181659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146602/","id":146602,"name":"Vol. 3, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198003-vol-3-no-11/4000-146602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273979/","id":273979,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-17/4000-273979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255829/","id":255829,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-vibora-4/4000-255829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181658/","id":181658,"name":"","site_detail_url":"https://comicvine.gamespot.com/schwermetall-2/4000-181658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193130/","id":193130,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-49/4000-193130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181657/","id":181657,"name":"Nr. 1","site_detail_url":"https://comicvine.gamespot.com/schwermetall-1-nr-1/4000-181657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146332/","id":146332,"name":"Vol. 3, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198002-vol-3-no-10/4000-146332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785214/","id":785214,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-2/4000-785214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273978/","id":273978,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-16/4000-273978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193129/","id":193129,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-48/4000-193129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146331/","id":146331,"name":"Vol. 3, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-198001-vol-3-no-9/4000-146331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273977/","id":273977,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-15/4000-273977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255825/","id":255825,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-vibora-2/4000-255825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193128/","id":193128,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-47/4000-193128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146330/","id":146330,"name":"Vol. 3, No. 8","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197912-vol-3-no-8/4000-146330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785071/","id":785071,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ere-comprimee-1/4000-785071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273976/","id":273976,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-14/4000-273976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820179/","id":820179,"name":"1980","site_detail_url":"https://comicvine.gamespot.com/1984-almanaque-1-1980/4000-820179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146632/","id":146632,"name":"Vol. 3, No. 7","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197911-vol-3-no-7/4000-146632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273975/","id":273975,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-13/4000-273975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96878/","id":96878,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-106/4000-96878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19868/","id":19868,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-112/4000-19868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273974/","id":273974,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-12/4000-273974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405060/","id":405060,"name":"","site_detail_url":"https://comicvine.gamespot.com/bloodstar-1/4000-405060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105145/","id":105145,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-8/4000-105145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273973/","id":273973,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-11/4000-273973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105144/","id":105144,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-7/4000-105144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273972/","id":273972,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-10/4000-273972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575250/","id":575250,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-3/4000-575250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146326/","id":146326,"name":"Vol. 3, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197907-vol-3-no-3/4000-146326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273971/","id":273971,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-9/4000-273971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105143/","id":105143,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-6/4000-105143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146325/","id":146325,"name":"Vol. 3, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197906-vol-3-no-2/4000-146325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273970/","id":273970,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-8/4000-273970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146324/","id":146324,"name":"Vol. 3, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197905-vol-3-no-1/4000-146324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273969/","id":273969,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-7/4000-273969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146323/","id":146323,"name":"Vol. 2, No. 12","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197904-vol-2-no-12/4000-146323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273968/","id":273968,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-6/4000-273968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146322/","id":146322,"name":"Vol. 2, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197903-vol-2-no-11/4000-146322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273967/","id":273967,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-5/4000-273967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858470/","id":858470,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-33/4000-858470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105142/","id":105142,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-5/4000-105142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146321/","id":146321,"name":"Vol. 2, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197902-vol-2-no-10/4000-146321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273966/","id":273966,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-4/4000-273966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231787/","id":231787,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-presents-new-tales-of-the-arabian-nigh/4000-231787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146320/","id":146320,"name":"Vol. 2, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197901-vol-2-no-9/4000-146320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273965/","id":273965,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-3/4000-273965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858426/","id":858426,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-31/4000-858426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273963/","id":273963,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-2/4000-273963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146319/","id":146319,"name":"Vol. 2, No. 8","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197812-vol-2-no-8/4000-146319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858384/","id":858384,"name":"Especial U.S.A. No. 1","site_detail_url":"https://comicvine.gamespot.com/totem-extra-1-especial-usa-no-1/4000-858384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146318/","id":146318,"name":"Vol. 2, No. 7","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197811-vol-2-no-7/4000-146318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273962/","id":273962,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-1/4000-273962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96873/","id":96873,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-97/4000-96873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91796/","id":91796,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-103/4000-91796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858333/","id":858333,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-29/4000-858333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105141/","id":105141,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-4/4000-105141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146597/","id":146597,"name":"Vol. 2, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197810-vol-2-no-6/4000-146597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858332/","id":858332,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-28/4000-858332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105140/","id":105140,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-3/4000-105140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146317/","id":146317,"name":"Vol. 2, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197809-vol-2-no-5/4000-146317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18838/","id":18838,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-101/4000-18838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858331/","id":858331,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-27/4000-858331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105139/","id":105139,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-2/4000-105139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146316/","id":146316,"name":"Vol. 2, No. 4","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197808-vol-2-no-4/4000-146316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858329/","id":858329,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-25/4000-858329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146594/","id":146594,"name":"Vol. 2, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197807-vol-2-no-3/4000-146594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767355/","id":767355,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-2/4000-767355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858328/","id":858328,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-24/4000-858328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105138/","id":105138,"name":"","site_detail_url":"https://comicvine.gamespot.com/1984-1/4000-105138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146315/","id":146315,"name":"Vol. 2, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197806-vol-2-no-2/4000-146315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858327/","id":858327,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-23/4000-858327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-996337/","id":996337,"name":null,"site_detail_url":"https://comicvine.gamespot.com/den-1/4000-996337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18509/","id":18509,"name":"Child of Sorcery / The Wizard and Red Sonja Show","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-29-child-of-sorcery-the-/4000-18509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767354/","id":767354,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-1/4000-767354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858326/","id":858326,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-22/4000-858326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146313/","id":146313,"name":"Vol. 1, No. 13","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197804-vol-1-no-13/4000-146313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858325/","id":858325,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-21/4000-858325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787825/","id":787825,"name":null,"site_detail_url":"https://comicvine.gamespot.com/totem-8/4000-787825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193109/","id":193109,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-28/4000-193109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146312/","id":146312,"name":"Vol. 1, No. 12","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197803-vol-1-no-12/4000-146312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212168/","id":212168,"name":"03-1978","site_detail_url":"https://comicvine.gamespot.com/alter-197803-03-1978/4000-212168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857820/","id":857820,"name":null,"site_detail_url":"https://comicvine.gamespot.com/kripta-20/4000-857820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18269/","id":18269,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-90/4000-18269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146311/","id":146311,"name":"Vol. 1, No. 11","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197802-vol-1-no-11/4000-146311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146590/","id":146590,"name":"Vol. 1, No. 10","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197801-vol-1-no-10/4000-146590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310225/","id":310225,"name":"Future World Comics","site_detail_url":"https://comicvine.gamespot.com/warren-presents-future-world-comix-1-future-world-/4000-310225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212160/","id":212160,"name":"01-1978","site_detail_url":"https://comicvine.gamespot.com/alter-197801-01-1978/4000-212160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858357/","id":858357,"name":null,"site_detail_url":"https://comicvine.gamespot.com/totem-11/4000-858357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858356/","id":858356,"name":null,"site_detail_url":"https://comicvine.gamespot.com/totem-7/4000-858356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477222/","id":477222,"name":"","site_detail_url":"https://comicvine.gamespot.com/hot-stuf-5/4000-477222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146310/","id":146310,"name":"Vol. 1, No. 9","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197709-vol-1-no-9/4000-146310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146309/","id":146309,"name":"Vol. 1, No. 8","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197708-vol-1-no-8/4000-146309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329711/","id":329711,"name":"","site_detail_url":"https://comicvine.gamespot.com/alter-197711/4000-329711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-892958/","id":892958,"name":"Conan el barbaro 1","site_detail_url":"https://comicvine.gamespot.com/antologia-del-comic-1-conan-el-barbaro-1/4000-892958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133836/","id":133836,"name":"Vol. 1, No. 7","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197707-vol-1-no-7/4000-133836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94841/","id":94841,"name":"","site_detail_url":"https://comicvine.gamespot.com/bizarre-sex-6/4000-94841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17897/","id":17897,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-87/4000-17897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17896/","id":17896,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-92/4000-17896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17802/","id":17802,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-86/4000-17802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133835/","id":133835,"name":"Vol. 1, No. 6","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197706-vol-1-no-6/4000-133835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133876/","id":133876,"name":"Vol. 1, No. 5","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197705-vol-1-no-5/4000-133876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133858/","id":133858,"name":"Vol. 1, No. 4","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197704-vol-1-no-4/4000-133858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133834/","id":133834,"name":"Vol. 1, No. 3","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197703-vol-1-no-3/4000-133834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133833/","id":133833,"name":"Vol. 1, No. 2","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197702-vol-1-no-2/4000-133833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-835973/","id":835973,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gummi-1/4000-835973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116620/","id":116620,"name":"Vol. 1, No. 1","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine-197701-vol-1-no-1/4000-116620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17211/","id":17211,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-81/4000-17211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-869065/","id":869065,"name":null,"site_detail_url":"https://comicvine.gamespot.com/alter-197702/4000-869065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222926/","id":222926,"name":"","site_detail_url":"https://comicvine.gamespot.com/comix-international-5/4000-222926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381836/","id":381836,"name":"","site_detail_url":"https://comicvine.gamespot.com/odd-comic-world-of-richard-corben-1/4000-381836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-900449/","id":900449,"name":null,"site_detail_url":"https://comicvine.gamespot.com/lecho-des-savanes-special-usa-2/4000-900449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476906/","id":476906,"name":"","site_detail_url":"https://comicvine.gamespot.com/hot-stuf-3/4000-476906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16895/","id":16895,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-79/4000-16895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91789/","id":91789,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-84/4000-91789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48845/","id":48845,"name":"","site_detail_url":"https://comicvine.gamespot.com/bizarre-sex-5/4000-48845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91788/","id":91788,"name":"Super Summer Special","site_detail_url":"https://comicvine.gamespot.com/creepy-83-super-summer-special/4000-91788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-868198/","id":868198,"name":null,"site_detail_url":"https://comicvine.gamespot.com/alter-197610/4000-868198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522864/","id":522864,"name":"","site_detail_url":"https://comicvine.gamespot.com/zakarella-13/4000-522864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16706/","id":16706,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-77/4000-16706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16707/","id":16707,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-54/4000-16707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522582/","id":522582,"name":"","site_detail_url":"https://comicvine.gamespot.com/zakarella-11/4000-522582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173459/","id":173459,"name":"","site_detail_url":"https://comicvine.gamespot.com/alter-197608/4000-173459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211284/","id":211284,"name":"Nr. 136","site_detail_url":"https://comicvine.gamespot.com/linus-197607-nr-136/4000-211284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522133/","id":522133,"name":"","site_detail_url":"https://comicvine.gamespot.com/zakarella-8/4000-522133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16361/","id":16361,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-51/4000-16361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767278/","id":767278,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-27/4000-767278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767279/","id":767279,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-28/4000-767279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767280/","id":767280,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-29/4000-767280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193039/","id":193039,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-6/4000-193039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16101/","id":16101,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-77/4000-16101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222925/","id":222925,"name":"","site_detail_url":"https://comicvine.gamespot.com/comix-international-4/4000-222925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767277/","id":767277,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-26/4000-767277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193038/","id":193038,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-5/4000-193038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455398/","id":455398,"name":"untitled","site_detail_url":"https://comicvine.gamespot.com/the-spirit-special-1-untitled/4000-455398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476716/","id":476716,"name":"","site_detail_url":"https://comicvine.gamespot.com/hot-stuf-2/4000-476716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222924/","id":222924,"name":"","site_detail_url":"https://comicvine.gamespot.com/comix-international-3/4000-222924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193037/","id":193037,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-4/4000-193037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193035/","id":193035,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-3/4000-193035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767276/","id":767276,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-25/4000-767276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222923/","id":222923,"name":"","site_detail_url":"https://comicvine.gamespot.com/comix-international-2/4000-222923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193033/","id":193033,"name":"","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-2/4000-193033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91782/","id":91782,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-70/4000-91782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167647/","id":167647,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-64/4000-167647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15074/","id":15074,"name":"Iron Shadows in the Moon","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-4-iron-shadows-in-the-mo/4000-15074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91781/","id":91781,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-69/4000-91781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184625/","id":184625,"name":"No. 1","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-1-no-1/4000-184625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15002/","id":15002,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-62/4000-15002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15001/","id":15001,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-68/4000-15001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902400/","id":902400,"name":"","site_detail_url":"https://comicvine.gamespot.com/anthology-of-slow-death-1/4000-902400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91780/","id":91780,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-67/4000-91780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91779/","id":91779,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-66/4000-91779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14610/","id":14610,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-60/4000-14610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14519/","id":14519,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-spirit-3/4000-14519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222922/","id":222922,"name":"","site_detail_url":"https://comicvine.gamespot.com/comix-international-1/4000-222922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14444/","id":14444,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-58/4000-14444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14443/","id":14443,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-63/4000-14443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14287/","id":14287,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-62/4000-14287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14288/","id":14288,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-33/4000-14288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405261/","id":405261,"name":"","site_detail_url":"https://comicvine.gamespot.com/barbarian-comics-3/4000-405261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14216/","id":14216,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-61/4000-14216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14148/","id":14148,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-31/4000-14148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14081/","id":14081,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-60/4000-14081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14013/","id":14013,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-30/4000-14013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14011/","id":14011,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-59/4000-14011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13900/","id":13900,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-58/4000-13900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13822/","id":13822,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-57/4000-13822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13608/","id":13608,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-56/4000-13608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368690/","id":368690,"name":"","site_detail_url":"https://comicvine.gamespot.com/grim-wit-2/4000-368690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13410/","id":13410,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-54/4000-13410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368319/","id":368319,"name":"","site_detail_url":"https://comicvine.gamespot.com/grim-wit-1/4000-368319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767272/","id":767272,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-21/4000-767272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767274/","id":767274,"name":null,"site_detail_url":"https://comicvine.gamespot.com/creepy-23/4000-767274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304591/","id":304591,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantagor-4/4000-304591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293896/","id":293896,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantagor-2/4000-293896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197105/","id":197105,"name":"","site_detail_url":"https://comicvine.gamespot.com/skull-comics-6/4000-197105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96849/","id":96849,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-43/4000-96849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320876/","id":320876,"name":"The Secret of Zokma","site_detail_url":"https://comicvine.gamespot.com/weird-fantasies-1-the-secret-of-zokma/4000-320876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378261/","id":378261,"name":"","site_detail_url":"https://comicvine.gamespot.com/slow-death-4/4000-378261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395563/","id":395563,"name":"","site_detail_url":"https://comicvine.gamespot.com/anomaly-4/4000-395563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197104/","id":197104,"name":"The Rats in the Walls","site_detail_url":"https://comicvine.gamespot.com/skull-comics-5-the-rats-in-the-walls/4000-197104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12358/","id":12358,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-46/4000-12358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275041/","id":275041,"name":"The Unicorn Quest; To Meet the Faces You Meet","site_detail_url":"https://comicvine.gamespot.com/fever-dreams-1-the-unicorn-quest-to-meet-the-faces/4000-275041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336858/","id":336858,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-rattle-1/4000-336858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12065/","id":12065,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-44/4000-12065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143041/","id":143041,"name":"Fantagor","site_detail_url":"https://comicvine.gamespot.com/fantagor-3-fantagor/4000-143041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11935/","id":11935,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-43/4000-11935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11936/","id":11936,"name":"","site_detail_url":"https://comicvine.gamespot.com/vampirella-15/4000-11936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197088/","id":197088,"name":"","site_detail_url":"https://comicvine.gamespot.com/skull-comics-3/4000-197088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337058/","id":337058,"name":"The Plague","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-plague-1-the-plague/4000-337058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377713/","id":377713,"name":"","site_detail_url":"https://comicvine.gamespot.com/slow-death-3/4000-377713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11679/","id":11679,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-41/4000-11679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376620/","id":376620,"name":"The Story of Rowlf","site_detail_url":"https://comicvine.gamespot.com/rowlf-1-the-story-of-rowlf/4000-376620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96839/","id":96839,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-33/4000-96839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96838/","id":96838,"name":"","site_detail_url":"https://comicvine.gamespot.com/eerie-32/4000-96838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11113/","id":11113,"name":"","site_detail_url":"https://comicvine.gamespot.com/creepy-36/4000-11113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33637/","id":33637,"name":"","site_detail_url":"https://comicvine.gamespot.com/horror-in-the-dark-2/4000-33637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33645/","id":33645,"name":"","site_detail_url":"https://comicvine.gamespot.com/horror-in-the-dark-3/4000-33645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33622/","id":33622,"name":"","site_detail_url":"https://comicvine.gamespot.com/horror-in-the-dark-1/4000-33622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197087/","id":197087,"name":"","site_detail_url":"https://comicvine.gamespot.com/skull-comics-2/4000-197087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55166/","id":55166,"name":"","site_detail_url":"https://comicvine.gamespot.com/epix-198406/4000-55166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255806/","id":255806,"name":"","site_detail_url":"https://comicvine.gamespot.com/totem-el-comix-58/4000-255806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317068/","id":317068,"name":"","site_detail_url":"https://comicvine.gamespot.com/rraah-31/4000-317068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395641/","id":395641,"name":"The Rock of Everlasting Despair","site_detail_url":"https://comicvine.gamespot.com/legends-of-arzach-4-the-rock-of-everlasting-despai/4000-395641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396288/","id":396288,"name":"Underground 2","site_detail_url":"https://comicvine.gamespot.com/richard-corben-complete-works-2-underground-2/4000-396288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499158/","id":499158,"name":"","site_detail_url":"https://comicvine.gamespot.com/pox-special-198503/4000-499158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280514/","id":280514,"name":"","site_detail_url":"https://comicvine.gamespot.com/pox-special-198607/4000-280514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522769/","id":522769,"name":"Rowlf & die Bestie von Wolfton","site_detail_url":"https://comicvine.gamespot.com/comics-fur-erwachsene-1-rowlf-and-die-bestie-von-w/4000-522769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528853/","id":528853,"name":"Der Dämon im Cockpit","site_detail_url":"https://comicvine.gamespot.com/beta-comic-art-collection-4-der-damon-im-cockpit/4000-528853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371852/","id":371852,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-129/4000-371852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680160/","id":680160,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ogre-1/4000-680160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-866614/","id":866614,"name":"L'Homme tordu","site_detail_url":"https://comicvine.gamespot.com/hellboy-11-lhomme-tordu/4000-866614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-866910/","id":866910,"name":"La Fiancée de l'enfer","site_detail_url":"https://comicvine.gamespot.com/hellboy-12-la-fiancee-de-lenfer/4000-866910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-868255/","id":868255,"name":"Hellboy au Mexique","site_detail_url":"https://comicvine.gamespot.com/hellboy-15-hellboy-au-mexique/4000-868255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873542/","id":873542,"name":"Makoma","site_detail_url":"https://comicvine.gamespot.com/hellboy-11-makoma/4000-873542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-874296/","id":874296,"name":"El Hombre Retorcido","site_detail_url":"https://comicvine.gamespot.com/hellboy-14-el-hombre-retorcido/4000-874296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-874746/","id":874746,"name":"La Novia del Infierno y Otros Relatos","site_detail_url":"https://comicvine.gamespot.com/hellboy-16-la-novia-del-infierno-y-otros-relatos/4000-874746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-879541/","id":879541,"name":"La Novia del Infierno y Otros Relatos","site_detail_url":"https://comicvine.gamespot.com/hellboy-15-la-novia-del-infierno-y-otros-relatos/4000-879541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-880537/","id":880537,"name":"La Mansión de los Muertos Vivientes","site_detail_url":"https://comicvine.gamespot.com/hellboy-17-la-mansion-de-los-muertos-vivientes/4000-880537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-881488/","id":881488,"name":"Hellboy y la AIDP 1954","site_detail_url":"https://comicvine.gamespot.com/hellboy-22-hellboy-y-la-aidp-1954/4000-881488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884574/","id":884574,"name":"A Feiticeira Troll","site_detail_url":"https://comicvine.gamespot.com/hellboy-edicao-historica-8-a-feiticeira-troll/4000-884574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884705/","id":884705,"name":"Krampusnacht e Outras Histórias","site_detail_url":"https://comicvine.gamespot.com/hellboy-edicao-historica-9-krampusnacht-e-outras-h/4000-884705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884784/","id":884784,"name":"O Vigarista e Outras Histórias","site_detail_url":"https://comicvine.gamespot.com/hellboy-edicao-historica-10-o-vigarista-e-outras-h/4000-884784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368761/","id":368761,"name":"","site_detail_url":"https://comicvine.gamespot.com/leternauta-79/4000-368761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787900/","id":787900,"name":null,"site_detail_url":"https://comicvine.gamespot.com/comix-internacional-2/4000-787900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1076833/","id":1076833,"name":null,"site_detail_url":"https://comicvine.gamespot.com/top-comics-5/4000-1076833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1076834/","id":1076834,"name":null,"site_detail_url":"https://comicvine.gamespot.com/top-comics-6/4000-1076834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1076835/","id":1076835,"name":null,"site_detail_url":"https://comicvine.gamespot.com/top-comics-7/4000-1076835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1076836/","id":1076836,"name":null,"site_detail_url":"https://comicvine.gamespot.com/top-comics-8/4000-1076836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1076838/","id":1076838,"name":null,"site_detail_url":"https://comicvine.gamespot.com/top-comics-10/4000-1076838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-836700/","id":836700,"name":"1975","site_detail_url":"https://comicvine.gamespot.com/les-chroniques-de-conan-2-1975/4000-836700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1088474/","id":1088474,"name":"Den","site_detail_url":"https://comicvine.gamespot.com/best-comics-8-den/4000-1088474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1088475/","id":1088475,"name":"Relatività","site_detail_url":"https://comicvine.gamespot.com/best-comics-4-relativita/4000-1088475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1132255/","id":1132255,"name":"Troldheksen andre Historier","site_detail_url":"https://comicvine.gamespot.com/hellboy-7-troldheksen-andre-historier/4000-1132255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1134968/","id":1134968,"name":"La Bruja Trol y Otras Historias","site_detail_url":"https://comicvine.gamespot.com/hellboy-7-la-bruja-trol-y-otras-historias/4000-1134968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1135698/","id":1135698,"name":"El Hombre Retorcido y Otras Historicas","site_detail_url":"https://comicvine.gamespot.com/hellboy-10-el-hombre-retorcido-y-otras-historicas/4000-1135698/"}],"name":"Richard Corben","site_detail_url":"https://comicvine.gamespot.com/richard-corben/4040-1350/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56349/","id":56349,"name":"\"DC Universe\" Trinity","site_detail_url":"https://comicvine.gamespot.com/dc-universe-trinity/4045-56349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56383/","id":56383,"name":"\"Dragon Ball\" Namek Saga","site_detail_url":"https://comicvine.gamespot.com/dragon-ball-namek-saga/4045-56383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56402/","id":56402,"name":"\"Batman\" Grotesk","site_detail_url":"https://comicvine.gamespot.com/batman-grotesk/4045-56402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56422/","id":56422,"name":"\"Robin: Year One\" Year One","site_detail_url":"https://comicvine.gamespot.com/robin-year-one-year-one/4045-56422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55302/","id":55302,"name":"\"Starman\" Grand Guignol","site_detail_url":"https://comicvine.gamespot.com/starman-grand-guignol/4045-55302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56485/","id":56485,"name":"\"The Amazing Spider-Man\" Spider-Island","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-spider-island/4045-56485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55707/","id":55707,"name":"\"Avengers\" Dark Reign","site_detail_url":"https://comicvine.gamespot.com/avengers-dark-reign/4045-55707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56552/","id":56552,"name":"\"Daredevil\" The Man Without Mercy","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-man-without-mercy/4045-56552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-54398/","id":54398,"name":"\"Nick Fury\" Secret War","site_detail_url":"https://comicvine.gamespot.com/nick-fury-secret-war/4045-54398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56701/","id":56701,"name":"\"100 Bullets\" A Wake","site_detail_url":"https://comicvine.gamespot.com/100-bullets-a-wake/4045-56701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56743/","id":56743,"name":"\"Martin Mystère\" Countdown Cycle","site_detail_url":"https://comicvine.gamespot.com/martin-mystere-countdown-cycle/4045-56743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56847/","id":56847,"name":"\"Ultimate Comics\" Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-divided-we-fall/4045-56847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56773/","id":56773,"name":"\"Hulk\" Mayan Rule","site_detail_url":"https://comicvine.gamespot.com/hulk-mayan-rule/4045-56773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40782/","id":40782,"name":"\"DC Universe\" Zero Hour","site_detail_url":"https://comicvine.gamespot.com/dc-universe-zero-hour/4045-40782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56976/","id":56976,"name":"\"The Avengers\" No Final Victory","site_detail_url":"https://comicvine.gamespot.com/the-avengers-no-final-victory/4045-56976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57085/","id":57085,"name":"\"The Amazing Spider-Man\" The Original Clone Saga","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-original-clone-saga/4045-57085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57186/","id":57186,"name":"\"X-Force\" The Final Chapter","site_detail_url":"https://comicvine.gamespot.com/x-force-the-final-chapter/4045-57186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57341/","id":57341,"name":"\"Captain Britain and MI:13\" Guns of Avalon","site_detail_url":"https://comicvine.gamespot.com/captain-britain-and-mi13-guns-of-avalon/4045-57341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57567/","id":57567,"name":"\"American Flagg!\" Bullets and Ballots!","site_detail_url":"https://comicvine.gamespot.com/american-flagg-bullets-and-ballots/4045-57567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57716/","id":57716,"name":"\"Captain America\" Man Without a Country","site_detail_url":"https://comicvine.gamespot.com/captain-america-man-without-a-country/4045-57716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57842/","id":57842,"name":"\"Supergirl\" Red Daughter of Krypton","site_detail_url":"https://comicvine.gamespot.com/supergirl-red-daughter-of-krypton/4045-57842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58346/","id":58346,"name":"\"Aliens/Predator/Prometheus\" Fire and Stone","site_detail_url":"https://comicvine.gamespot.com/alienspredatorprometheus-fire-and-stone/4045-58346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58266/","id":58266,"name":"\"Secret Wars\" Battleworld","site_detail_url":"https://comicvine.gamespot.com/secret-wars-battleworld/4045-58266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58580/","id":58580,"name":"\"Bleach\" Quincy Blood War","site_detail_url":"https://comicvine.gamespot.com/bleach-quincy-blood-war/4045-58580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58828/","id":58828,"name":"\"Jérôme K. Jérôme Bloche\" Le Cœur à Droite","site_detail_url":"https://comicvine.gamespot.com/jerome-k-jerome-bloche-le-coeur-a-droite/4045-58828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58832/","id":58832,"name":"\"Jérôme K. Jérôme Bloche\" Le Pacte","site_detail_url":"https://comicvine.gamespot.com/jerome-k-jerome-bloche-le-pacte/4045-58832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59065/","id":59065,"name":"\"Saga\" The War for Phang","site_detail_url":"https://comicvine.gamespot.com/saga-the-war-for-phang/4045-59065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55689/","id":55689,"name":"\"Batman\" Knightquest: The Crusade","site_detail_url":"https://comicvine.gamespot.com/batman-knightquest-the-crusade/4045-55689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59196/","id":59196,"name":"\"Invincible Iron Man\" The Five Nightmares","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-the-five-nightmares/4045-59196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59354/","id":59354,"name":"\"Captain America\" Secret Empire","site_detail_url":"https://comicvine.gamespot.com/captain-america-secret-empire/4045-59354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59796/","id":59796,"name":"\"Power Rangers\" Shattered Grid","site_detail_url":"https://comicvine.gamespot.com/power-rangers-shattered-grid/4045-59796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59836/","id":59836,"name":"\"Incredible Hulk\" World War Hulk II","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-world-war-hulk-ii/4045-59836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60345/","id":60345,"name":"\"Justice League\" Justice/Doom War","site_detail_url":"https://comicvine.gamespot.com/justice-league-justicedoom-war/4045-60345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61170/","id":61170,"name":"\"My Little Pony: Friendship is Magic\" Season Ten","site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic-season-ten/4045-61170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57901/","id":57901,"name":"\"Weekly Shonen Jump\" Manga Drifters","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-manga-drifters/4045-57901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60062/","id":60062,"name":"\"Weekly Shonen Jump\" Dohazure Tenkaichi","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-dohazure-tenkaichi/4045-60062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56179/","id":56179,"name":"\"Weekly Shonen Jump\" Sore Ike Jump de Young Oh! Oh!","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-sore-ike-jump-de-young-oh-oh/4045-56179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59541/","id":59541,"name":"\"Weekly Shonen Jump\" Totsugeki Ramen","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-totsugeki-ramen/4045-59541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56367/","id":56367,"name":"\"Weekly Shonen Jump\" Otoko Nara Shōri no Uta wo!","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-otoko-nara-shori-no-uta-wo/4045-56367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57471/","id":57471,"name":"\"Black Jack\" Pen wo Sutero!","site_detail_url":"https://comicvine.gamespot.com/black-jack-pen-wo-sutero/4045-57471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57510/","id":57510,"name":"\"Weekly Shonen Jump\" Massugu ga Iku","site_detail_url":"https://comicvine.gamespot.com/weekly-shonen-jump-massugu-ga-iku/4045-57510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-61230/","id":61230,"name":"\"Valiant\" Resurgence of the Valiant Universe","site_detail_url":"https://comicvine.gamespot.com/valiant-resurgence-of-the-valiant-universe/4045-61230/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2194/","id":2194,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-2194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2449/","id":2449,"name":"Vampirella","site_detail_url":"https://comicvine.gamespot.com/vampirella/4050-2449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2300/","id":2300,"name":"Eerie","site_detail_url":"https://comicvine.gamespot.com/eerie/4050-2300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2705/","id":2705,"name":"The Spirit","site_detail_url":"https://comicvine.gamespot.com/the-spirit/4050-2705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2701/","id":2701,"name":"The Savage Sword of Conan","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan/4050-2701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3049/","id":3049,"name":"Epic Illustrated","site_detail_url":"https://comicvine.gamespot.com/epic-illustrated/4050-3049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2929/","id":2929,"name":"The Spirit","site_detail_url":"https://comicvine.gamespot.com/the-spirit/4050-2929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3176/","id":3176,"name":"Twisted Tales","site_detail_url":"https://comicvine.gamespot.com/twisted-tales/4050-3176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3169/","id":3169,"name":"Alien Worlds","site_detail_url":"https://comicvine.gamespot.com/alien-worlds/4050-3169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3526/","id":3526,"name":"Death Rattle","site_detail_url":"https://comicvine.gamespot.com/death-rattle/4050-3526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3746/","id":3746,"name":"Rip in Time","site_detail_url":"https://comicvine.gamespot.com/rip-in-time/4050-3746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3531/","id":3531,"name":"Alien Encounters","site_detail_url":"https://comicvine.gamespot.com/alien-encounters/4050-3531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3926/","id":3926,"name":"Children of Fire","site_detail_url":"https://comicvine.gamespot.com/children-of-fire/4050-3926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4140/","id":4140,"name":"Den","site_detail_url":"https://comicvine.gamespot.com/den/4050-4140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4470/","id":4470,"name":"Son of Mutant World","site_detail_url":"https://comicvine.gamespot.com/son-of-mutant-world/4050-4470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4645/","id":4645,"name":"Horror In The Dark","site_detail_url":"https://comicvine.gamespot.com/horror-in-the-dark/4050-4645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4881/","id":4881,"name":"DenSaga","site_detail_url":"https://comicvine.gamespot.com/densaga/4050-4881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5729/","id":5729,"name":"Batman Black and White","site_detail_url":"https://comicvine.gamespot.com/batman-black-and-white/4050-5729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4754/","id":4754,"name":"The Spectre","site_detail_url":"https://comicvine.gamespot.com/the-spectre/4050-4754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6055/","id":6055,"name":"Aliens: Alchemy","site_detail_url":"https://comicvine.gamespot.com/aliens-alchemy/4050-6055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6157/","id":6157,"name":"Gangland","site_detail_url":"https://comicvine.gamespot.com/gangland/4050-6157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6328/","id":6328,"name":"Heartthrobs","site_detail_url":"https://comicvine.gamespot.com/heartthrobs/4050-6328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6325/","id":6325,"name":"Flinch","site_detail_url":"https://comicvine.gamespot.com/flinch/4050-6325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6824/","id":6824,"name":"Bizarre Sex","site_detail_url":"https://comicvine.gamespot.com/bizarre-sex/4050-6824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7450/","id":7450,"name":"Weird War Tales","site_detail_url":"https://comicvine.gamespot.com/weird-war-tales/4050-7450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7510/","id":7510,"name":"Epix","site_detail_url":"https://comicvine.gamespot.com/epix/4050-7510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7517/","id":7517,"name":"Tung Metall","site_detail_url":"https://comicvine.gamespot.com/tung-metall/4050-7517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9471/","id":9471,"name":"Startling Stories: Banner","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner/4050-9471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6344/","id":6344,"name":"Strange Adventures","site_detail_url":"https://comicvine.gamespot.com/strange-adventures/4050-6344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11239/","id":11239,"name":"Solo","site_detail_url":"https://comicvine.gamespot.com/solo/4050-11239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11315/","id":11315,"name":"Swamp Thing","site_detail_url":"https://comicvine.gamespot.com/swamp-thing/4050-11315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11343/","id":11343,"name":"Congo Bill","site_detail_url":"https://comicvine.gamespot.com/congo-bill/4050-11343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11503/","id":11503,"name":"The Crusades","site_detail_url":"https://comicvine.gamespot.com/the-crusades/4050-11503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-12086/","id":12086,"name":"1984","site_detail_url":"https://comicvine.gamespot.com/1984/4050-12086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-12087/","id":12087,"name":"1994","site_detail_url":"https://comicvine.gamespot.com/1994/4050-12087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18257/","id":18257,"name":"Cage","site_detail_url":"https://comicvine.gamespot.com/cage/4050-18257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18284/","id":18284,"name":"Hellboy: Makoma, or, a Tale Told by a Mummy in the New York City Explorers’ Club on August 16, 1993","site_detail_url":"https://comicvine.gamespot.com/hellboy-makoma-or-a-tale-told-by-a-mummy-in-the-ne/4050-18284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18138/","id":18138,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4050-18138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4008/","id":4008,"name":"Hellblazer","site_detail_url":"https://comicvine.gamespot.com/hellblazer/4050-4008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18450/","id":18450,"name":"Heroes for Hope Starring the X-Men","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hope-starring-the-x-men/4050-18450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18366/","id":18366,"name":"Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia/4050-18366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19498/","id":19498,"name":"Heavy Metal Magazine","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-magazine/4050-19498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19643/","id":19643,"name":"Living with the Dead","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead/4050-19643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21102/","id":21102,"name":"Marvel Must Haves","site_detail_url":"https://comicvine.gamespot.com/marvel-must-haves/4050-21102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21227/","id":21227,"name":"Aliens vs. Predator: War","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-war/4050-21227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18677/","id":18677,"name":"Jonah Hex","site_detail_url":"https://comicvine.gamespot.com/jonah-hex/4050-18677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21767/","id":21767,"name":"Punisher: The End","site_detail_url":"https://comicvine.gamespot.com/punisher-the-end/4050-21767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21911/","id":21911,"name":"The House on the Borderland","site_detail_url":"https://comicvine.gamespot.com/the-house-on-the-borderland/4050-21911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21935/","id":21935,"name":"Hellboy: The Crooked Man","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man/4050-21935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19793/","id":19793,"name":"Penthouse Comix","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix/4050-19793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21896/","id":21896,"name":"Conan the Cimmerian","site_detail_url":"https://comicvine.gamespot.com/conan-the-cimmerian/4050-21896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22308/","id":22308,"name":"Haunt of Horror: Edgar Allan Poe","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-edgar-allan-poe/4050-22308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22464/","id":22464,"name":"Haunt of Horror: Lovecraft","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-lovecraft/4050-22464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20805/","id":20805,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-20805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23482/","id":23482,"name":"Bigfoot","site_detail_url":"https://comicvine.gamespot.com/bigfoot/4050-23482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23553/","id":23553,"name":"American Splendor","site_detail_url":"https://comicvine.gamespot.com/american-splendor/4050-23553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23617/","id":23617,"name":"Unknown Soldier","site_detail_url":"https://comicvine.gamespot.com/unknown-soldier/4050-23617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23764/","id":23764,"name":"A Corben Special","site_detail_url":"https://comicvine.gamespot.com/a-corben-special/4050-23764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24036/","id":24036,"name":"Fantagor","site_detail_url":"https://comicvine.gamespot.com/fantagor/4050-24036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24168/","id":24168,"name":"C-23","site_detail_url":"https://comicvine.gamespot.com/c-23/4050-24168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24979/","id":24979,"name":"Frank Frazetta Fantasy Illustrated","site_detail_url":"https://comicvine.gamespot.com/frank-frazetta-fantasy-illustrated/4050-24979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25282/","id":25282,"name":"Verotik Illustrated","site_detail_url":"https://comicvine.gamespot.com/verotik-illustrated/4050-25282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25792/","id":25792,"name":"Omni Comix","site_detail_url":"https://comicvine.gamespot.com/omni-comix/4050-25792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20281/","id":20281,"name":"Teenage Mutant Ninja Turtles","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles/4050-20281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26601/","id":26601,"name":"X-Files Comics Digest","site_detail_url":"https://comicvine.gamespot.com/x-files-comics-digest/4050-26601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26856/","id":26856,"name":"Just Imagine Stan Lee With Walter Simonson Creating Sandman","site_detail_url":"https://comicvine.gamespot.com/just-imagine-stan-lee-with-walter-simonson-creatin/4050-26856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21513/","id":21513,"name":"House of Mystery","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery/4050-21513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19079/","id":19079,"name":"Aliens Omnibus","site_detail_url":"https://comicvine.gamespot.com/aliens-omnibus/4050-19079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27700/","id":27700,"name":"Starr the Slayer","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer/4050-27700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27818/","id":27818,"name":"Bruce Jones's Razor Edge","site_detail_url":"https://comicvine.gamespot.com/bruce-joness-razor-edge/4050-27818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28191/","id":28191,"name":"Alter","site_detail_url":"https://comicvine.gamespot.com/alter/4050-28191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28877/","id":28877,"name":"Jonah Hex: Bullets Don't Lie","site_detail_url":"https://comicvine.gamespot.com/jonah-hex-bullets-dont-lie/4050-28877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29268/","id":29268,"name":"American Splendor: Another Day","site_detail_url":"https://comicvine.gamespot.com/american-splendor-another-day/4050-29268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29339/","id":29339,"name":"Best Of Ray Bradbury","site_detail_url":"https://comicvine.gamespot.com/best-of-ray-bradbury/4050-29339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29426/","id":29426,"name":"Schwermetall","site_detail_url":"https://comicvine.gamespot.com/schwermetall/4050-29426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30007/","id":30007,"name":"Metal Hurlant","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant/4050-30007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30700/","id":30700,"name":"Hellboy: The Bride of Hell","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-bride-of-hell/4050-30700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31039/","id":31039,"name":"L'Eternauta","site_detail_url":"https://comicvine.gamespot.com/leternauta/4050-31039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31572/","id":31572,"name":"Skull Comics","site_detail_url":"https://comicvine.gamespot.com/skull-comics/4050-31572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31732/","id":31732,"name":"The Bodyssey","site_detail_url":"https://comicvine.gamespot.com/the-bodyssey/4050-31732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32054/","id":32054,"name":"From The Pit","site_detail_url":"https://comicvine.gamespot.com/from-the-pit/4050-32054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32329/","id":32329,"name":"Ghost Rider: The Life and Death of Johnny Blaze","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-the-life-and-death-of-johnny-blaze/4050-32329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27415/","id":27415,"name":"Linus","site_detail_url":"https://comicvine.gamespot.com/linus/4050-27415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32994/","id":32994,"name":"Gangland","site_detail_url":"https://comicvine.gamespot.com/gangland/4050-32994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33000/","id":33000,"name":"Hellblazer: Hard Time","site_detail_url":"https://comicvine.gamespot.com/hellblazer-hard-time/4050-33000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33025/","id":33025,"name":"Swamp Thing: Healing the Breach","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-healing-the-breach/4050-33025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33038/","id":33038,"name":"Hellboy in Mexico","site_detail_url":"https://comicvine.gamespot.com/hellboy-in-mexico/4050-33038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33632/","id":33632,"name":"Buzzard","site_detail_url":"https://comicvine.gamespot.com/buzzard/4050-33632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33639/","id":33639,"name":"Hellboy: The Troll Witch and Others","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-troll-witch-and-others/4050-33639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33642/","id":33642,"name":"Hellboy: The Crooked Man and Others","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-others/4050-33642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28046/","id":28046,"name":"Comix International","site_detail_url":"https://comicvine.gamespot.com/comix-international/4050-28046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34251/","id":34251,"name":"House of Mystery: The Beauty of Decay","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-the-beauty-of-decay/4050-34251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33975/","id":33975,"name":"The Best of Heavy Metal","site_detail_url":"https://comicvine.gamespot.com/the-best-of-heavy-metal/4050-33975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98113/","id":98113,"name":"Punisher MAX: From First to Last","site_detail_url":"https://comicvine.gamespot.com/punisher-max-from-first-to-last/4050-98113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6956/","id":6956,"name":"Snarf","site_detail_url":"https://comicvine.gamespot.com/snarf/4050-6956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35121/","id":35121,"name":"New Tales of the Arabian Nights","site_detail_url":"https://comicvine.gamespot.com/new-tales-of-the-arabian-nights/4050-35121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35190/","id":35190,"name":"Startling Stories: Banner","site_detail_url":"https://comicvine.gamespot.com/startling-stories-banner/4050-35190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35843/","id":35843,"name":"Zona 84","site_detail_url":"https://comicvine.gamespot.com/zona-84/4050-35843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35995/","id":35995,"name":"Haunt of Horror","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror/4050-35995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35997/","id":35997,"name":"Haunt of Horror: Edgar Allan Poe","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-edgar-allan-poe/4050-35997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35998/","id":35998,"name":"Haunt of Horror: H.P. Lovecraft","site_detail_url":"https://comicvine.gamespot.com/haunt-of-horror-hp-lovecraft/4050-35998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36269/","id":36269,"name":"Encyclopedie de la bande dessinée érotique","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-de-la-bande-dessinee-erotique/4050-36269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32663/","id":32663,"name":"The Spirit","site_detail_url":"https://comicvine.gamespot.com/the-spirit/4050-32663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36290/","id":36290,"name":"Werewolf","site_detail_url":"https://comicvine.gamespot.com/werewolf/4050-36290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36396/","id":36396,"name":"Famous Monsters of Filmland","site_detail_url":"https://comicvine.gamespot.com/famous-monsters-of-filmland/4050-36396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36806/","id":36806,"name":"Hellboy: Double Feature of Evil","site_detail_url":"https://comicvine.gamespot.com/hellboy-double-feature-of-evil/4050-36806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26634/","id":26634,"name":"The Ray Bradbury Chronicles","site_detail_url":"https://comicvine.gamespot.com/the-ray-bradbury-chronicles/4050-26634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35569/","id":35569,"name":"Totem el Comix","site_detail_url":"https://comicvine.gamespot.com/totem-el-comix/4050-35569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38215/","id":38215,"name":"El Vibora","site_detail_url":"https://comicvine.gamespot.com/el-vibora/4050-38215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39546/","id":39546,"name":"Penthouse Comix","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix/4050-39546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39780/","id":39780,"name":"Vertigo Book","site_detail_url":"https://comicvine.gamespot.com/vertigo-book/4050-39780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35025/","id":35025,"name":"Heavy Metal Special","site_detail_url":"https://comicvine.gamespot.com/heavy-metal-special/4050-35025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39855/","id":39855,"name":"Dark Horse Presents","site_detail_url":"https://comicvine.gamespot.com/dark-horse-presents/4050-39855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40054/","id":40054,"name":"Graphic Classics","site_detail_url":"https://comicvine.gamespot.com/graphic-classics/4050-40054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40082/","id":40082,"name":"Hellboy: Being Human","site_detail_url":"https://comicvine.gamespot.com/hellboy-being-human/4050-40082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40653/","id":40653,"name":"100% Marvel","site_detail_url":"https://comicvine.gamespot.com/100-marvel/4050-40653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40660/","id":40660,"name":"1984","site_detail_url":"https://comicvine.gamespot.com/1984/4050-40660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40790/","id":40790,"name":"Fever Dreams","site_detail_url":"https://comicvine.gamespot.com/fever-dreams/4050-40790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40972/","id":40972,"name":"Vic & Blood","site_detail_url":"https://comicvine.gamespot.com/vic-blood/4050-40972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-8098/","id":8098,"name":"Pox Special","site_detail_url":"https://comicvine.gamespot.com/pox-special/4050-8098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41650/","id":41650,"name":"100% Marvel: Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/100-marvel-ghost-rider/4050-41650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41917/","id":41917,"name":"Best of Marvel Essentials: El Increíble Hulk: Banner","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-el-increible-hulk-banner/4050-41917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42247/","id":42247,"name":"Colección Vertigo","site_detail_url":"https://comicvine.gamespot.com/coleccion-vertigo/4050-42247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42444/","id":42444,"name":"Aliens/Predator: Panel to Panel","site_detail_url":"https://comicvine.gamespot.com/alienspredator-panel-to-panel/4050-42444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42492/","id":42492,"name":"La Guarida del Horror: Lovecraft","site_detail_url":"https://comicvine.gamespot.com/la-guarida-del-horror-lovecraft/4050-42492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42915/","id":42915,"name":"Creepy Archives","site_detail_url":"https://comicvine.gamespot.com/creepy-archives/4050-42915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30787/","id":30787,"name":"Hellboy: The Bride of Hell and Others","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-bride-of-hell-and-others/4050-30787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43082/","id":43082,"name":"Aliens vs. Predator","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator/4050-43082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27380/","id":27380,"name":"Eerie Archives","site_detail_url":"https://comicvine.gamespot.com/eerie-archives/4050-27380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44217/","id":44217,"name":"The Art of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-art-of-marvel/4050-44217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44233/","id":44233,"name":"Turtlemania Special","site_detail_url":"https://comicvine.gamespot.com/turtlemania-special/4050-44233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42004/","id":42004,"name":"Bad Doings and Big Ideas: A Bill Willingham Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/bad-doings-and-big-ideas-a-bill-willingham-deluxe-/4050-42004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45055/","id":45055,"name":"Warren Presents: Future World Comix","site_detail_url":"https://comicvine.gamespot.com/warren-presents-future-world-comix/4050-45055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45138/","id":45138,"name":"Ghost Rider by Daniel Way Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-by-daniel-way-ultimate-collection/4050-45138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45523/","id":45523,"name":"Hellboy: The Crooked Man and The Troll Witch","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-the-troll-witch/4050-45523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42601/","id":42601,"name":"Men of War","site_detail_url":"https://comicvine.gamespot.com/men-of-war/4050-42601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45800/","id":45800,"name":"Murky World","site_detail_url":"https://comicvine.gamespot.com/murky-world/4050-45800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45847/","id":45847,"name":"Art of Will Eisner","site_detail_url":"https://comicvine.gamespot.com/art-of-will-eisner/4050-45847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46049/","id":46049,"name":"Hellboy: House of the Living Dead","site_detail_url":"https://comicvine.gamespot.com/hellboy-house-of-the-living-dead/4050-46049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45355/","id":45355,"name":"Rraah!","site_detail_url":"https://comicvine.gamespot.com/rraah/4050-45355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34405/","id":34405,"name":"Vampirella Archives","site_detail_url":"https://comicvine.gamespot.com/vampirella-archives/4050-34405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46389/","id":46389,"name":"Weerwolf: Verhalen over heksen en weerwolven","site_detail_url":"https://comicvine.gamespot.com/weerwolf-verhalen-over-heksen-en-weerwolven/4050-46389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46531/","id":46531,"name":"Weird Fantasies","site_detail_url":"https://comicvine.gamespot.com/weird-fantasies/4050-46531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46822/","id":46822,"name":"Ragemoor","site_detail_url":"https://comicvine.gamespot.com/ragemoor/4050-46822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27067/","id":27067,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-27067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34650/","id":34650,"name":"Cimoc","site_detail_url":"https://comicvine.gamespot.com/cimoc/4050-34650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47952/","id":47952,"name":"Penthouse Comix","site_detail_url":"https://comicvine.gamespot.com/penthouse-comix/4050-47952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48034/","id":48034,"name":"Living with the Dead","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead/4050-48034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48428/","id":48428,"name":"Tales from the Plague","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-plague/4050-48428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48826/","id":48826,"name":"B.P.R.D.: Being Human","site_detail_url":"https://comicvine.gamespot.com/bprd-being-human/4050-48826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49210/","id":49210,"name":"Death Rattle","site_detail_url":"https://comicvine.gamespot.com/death-rattle/4050-49210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49271/","id":49271,"name":"Tales from the Plague","site_detail_url":"https://comicvine.gamespot.com/tales-from-the-plague/4050-49271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49587/","id":49587,"name":"Cage","site_detail_url":"https://comicvine.gamespot.com/cage/4050-49587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49615/","id":49615,"name":"Heroes","site_detail_url":"https://comicvine.gamespot.com/heroes/4050-49615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50192/","id":50192,"name":"Eerie","site_detail_url":"https://comicvine.gamespot.com/eerie/4050-50192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51245/","id":51245,"name":"Men of War: Uneasy Company","site_detail_url":"https://comicvine.gamespot.com/men-of-war-uneasy-company/4050-51245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53595/","id":53595,"name":"Vic and Blood: The Chronicles of a Boy and His Dog","site_detail_url":"https://comicvine.gamespot.com/vic-and-blood-the-chronicles-of-a-boy-and-his-dog/4050-53595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53597/","id":53597,"name":"Dark Horse Horror Sampler","site_detail_url":"https://comicvine.gamespot.com/dark-horse-horror-sampler/4050-53597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53721/","id":53721,"name":"Ragemoor","site_detail_url":"https://comicvine.gamespot.com/ragemoor/4050-53721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53854/","id":53854,"name":"Fire Sale","site_detail_url":"https://comicvine.gamespot.com/fire-sale/4050-53854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54017/","id":54017,"name":"Grim Wit","site_detail_url":"https://comicvine.gamespot.com/grim-wit/4050-54017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54044/","id":54044,"name":"Vertigo Presenta","site_detail_url":"https://comicvine.gamespot.com/vertigo-presenta/4050-54044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54122/","id":54122,"name":"Edgar Allan Poe’s The Conqueror Worm","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poes-the-conqueror-worm/4050-54122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55316/","id":55316,"name":"Rowlf","site_detail_url":"https://comicvine.gamespot.com/rowlf/4050-55316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55450/","id":55450,"name":"Slow Death","site_detail_url":"https://comicvine.gamespot.com/slow-death/4050-55450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56263/","id":56263,"name":"Odd Comic World of Richard Corben","site_detail_url":"https://comicvine.gamespot.com/odd-comic-world-of-richard-corben/4050-56263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56374/","id":56374,"name":"Masks: Too Hot for TV!","site_detail_url":"https://comicvine.gamespot.com/masks-too-hot-for-tv/4050-56374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57113/","id":57113,"name":"Den","site_detail_url":"https://comicvine.gamespot.com/den/4050-57113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57243/","id":57243,"name":"Edgar Allan Poe","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe/4050-57243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57353/","id":57353,"name":"Creepy Presents Richard Corben","site_detail_url":"https://comicvine.gamespot.com/creepy-presents-richard-corben/4050-57353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58131/","id":58131,"name":"Mutant World","site_detail_url":"https://comicvine.gamespot.com/mutant-world/4050-58131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58192/","id":58192,"name":"The Bodyssey","site_detail_url":"https://comicvine.gamespot.com/the-bodyssey/4050-58192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58370/","id":58370,"name":"Jeremy Brood","site_detail_url":"https://comicvine.gamespot.com/jeremy-brood/4050-58370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58403/","id":58403,"name":"The Last Voyage of Sindbad","site_detail_url":"https://comicvine.gamespot.com/the-last-voyage-of-sindbad/4050-58403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58416/","id":58416,"name":"Den 1: Neverwhere","site_detail_url":"https://comicvine.gamespot.com/den-1-neverwhere/4050-58416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58489/","id":58489,"name":"Fantagor Presents Brood","site_detail_url":"https://comicvine.gamespot.com/fantagor-presents-brood/4050-58489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58587/","id":58587,"name":"Rip in Time","site_detail_url":"https://comicvine.gamespot.com/rip-in-time/4050-58587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59465/","id":59465,"name":"Anomaly","site_detail_url":"https://comicvine.gamespot.com/anomaly/4050-59465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59493/","id":59493,"name":"Legends of Arzach","site_detail_url":"https://comicvine.gamespot.com/legends-of-arzach/4050-59493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59536/","id":59536,"name":"Visions of Arzach","site_detail_url":"https://comicvine.gamespot.com/visions-of-arzach/4050-59536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59671/","id":59671,"name":"Richard Corben Complete Works","site_detail_url":"https://comicvine.gamespot.com/richard-corben-complete-works/4050-59671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60478/","id":60478,"name":"Werewolf","site_detail_url":"https://comicvine.gamespot.com/werewolf/4050-60478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60623/","id":60623,"name":"Spirit Jam","site_detail_url":"https://comicvine.gamespot.com/spirit-jam/4050-60623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60744/","id":60744,"name":"Mutant World","site_detail_url":"https://comicvine.gamespot.com/mutant-world/4050-60744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61310/","id":61310,"name":"Edgar Allan Poe’s The Fall of the House of Usher","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-the-fall-of-the-house-of-usher/4050-61310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61625/","id":61625,"name":"Robert E. Howard's Myth Maker","site_detail_url":"https://comicvine.gamespot.com/robert-e-howards-myth-maker/4050-61625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42049/","id":42049,"name":"Conan","site_detail_url":"https://comicvine.gamespot.com/conan/4050-42049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61903/","id":61903,"name":"Bloodstar","site_detail_url":"https://comicvine.gamespot.com/bloodstar/4050-61903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61926/","id":61926,"name":"Barbarian Comics","site_detail_url":"https://comicvine.gamespot.com/barbarian-comics/4050-61926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62869/","id":62869,"name":"Hellboy: The Storm and the Fury & The Bride of Hell","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-storm-and-the-fury-the-bride-of-hell/4050-62869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62874/","id":62874,"name":"Solo: The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/solo-the-deluxe-edition/4050-62874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64732/","id":64732,"name":"Vic and Blood","site_detail_url":"https://comicvine.gamespot.com/vic-and-blood/4050-64732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65269/","id":65269,"name":"Aliens vs. Predator: Aliens vs. Predator/Blood Time","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-aliens-vs-predatorblood-time/4050-65269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66155/","id":66155,"name":"Aliens: Alchemy","site_detail_url":"https://comicvine.gamespot.com/aliens-alchemy/4050-66155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66750/","id":66750,"name":"Rowlf & die Bestie von Wolfton","site_detail_url":"https://comicvine.gamespot.com/rowlf-die-bestie-von-wolfton/4050-66750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67927/","id":67927,"name":"CBLDF Presents Liberty Annual 2013","site_detail_url":"https://comicvine.gamespot.com/cbldf-presents-liberty-annual-2013/4050-67927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68258/","id":68258,"name":"Jaguar God Illustrations","site_detail_url":"https://comicvine.gamespot.com/jaguar-god-illustrations/4050-68258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68714/","id":68714,"name":"Edgar Allan Poe's The Raven and the Red Death","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poes-the-raven-and-the-red-death/4050-68714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69876/","id":69876,"name":"Teenage Mutant Ninja Turtles: 25th Anniversary Collection","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-25th-anniversary-coll/4050-69876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70033/","id":70033,"name":"Hellblazer","site_detail_url":"https://comicvine.gamespot.com/hellblazer/4050-70033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70488/","id":70488,"name":"Hellblazer de Brian Azzarello","site_detail_url":"https://comicvine.gamespot.com/hellblazer-de-brian-azzarello/4050-70488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61307/","id":61307,"name":"B.P.R.D. Hell on Earth","site_detail_url":"https://comicvine.gamespot.com/bprd-hell-on-earth/4050-61307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55557/","id":55557,"name":"Creepy Comics","site_detail_url":"https://comicvine.gamespot.com/creepy-comics/4050-55557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72157/","id":72157,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-72157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72781/","id":72781,"name":"Edgar Allan Poe's The Premature Burial","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poes-the-premature-burial/4050-72781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73203/","id":73203,"name":"Myth Maker","site_detail_url":"https://comicvine.gamespot.com/myth-maker/4050-73203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64029/","id":64029,"name":"The Spirit Special","site_detail_url":"https://comicvine.gamespot.com/the-spirit-special/4050-64029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74717/","id":74717,"name":"Edgar Allan Poe’s Morella and the Murders in the Rue Morgue","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-morella-and-the-murders-in-the-r/4050-74717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75867/","id":75867,"name":"The Sakai Project: Artists Celebrate Thirty Years of “Usagi Yojimbo”","site_detail_url":"https://comicvine.gamespot.com/the-sakai-project-artists-celebrate-thirty-years-o/4050-75867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76853/","id":76853,"name":"B.P.R.D. Hell On Earth: The Reign of the Black Flame","site_detail_url":"https://comicvine.gamespot.com/b-p-r-d-hell-on-earth-the-reign-of-the-black-flame/4050-76853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77231/","id":77231,"name":"Edgar Allan Poe’s Spirits of the Dead","site_detail_url":"https://comicvine.gamespot.com/edgar-allan-poe-s-spirits-of-the-dead/4050-77231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72408/","id":72408,"name":"Buffy the Vampire Slayer Season 10","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-10/4050-72408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79537/","id":79537,"name":"Hot Stuf'","site_detail_url":"https://comicvine.gamespot.com/hot-stuf/4050-79537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79878/","id":79878,"name":"Rat God","site_detail_url":"https://comicvine.gamespot.com/rat-god/4050-79878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81351/","id":81351,"name":"Buffy the Vampire Slayer Season 10: I Wish","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-10-i-wish/4050-81351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82182/","id":82182,"name":"Harlan Ellison's Dream Corridor","site_detail_url":"https://comicvine.gamespot.com/harlan-ellison-s-dream-corridor/4050-82182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83185/","id":83185,"name":"Metal Hurlant Collection","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-collection/4050-83185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85323/","id":85323,"name":"Rat God","site_detail_url":"https://comicvine.gamespot.com/rat-god/4050-85323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50804/","id":50804,"name":"Teenage Mutant Ninja Turtles: The Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/teenage-mutant-ninja-turtles-the-ultimate-collecti/4050-50804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87365/","id":87365,"name":"Tales of the Black Diamond","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-black-diamond/4050-87365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88712/","id":88712,"name":"In Deep","site_detail_url":"https://comicvine.gamespot.com/in-deep/4050-88712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89117/","id":89117,"name":"Zakarella","site_detail_url":"https://comicvine.gamespot.com/zakarella/4050-89117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89320/","id":89320,"name":"Comics für Erwachsene","site_detail_url":"https://comicvine.gamespot.com/comics-fur-erwachsene/4050-89320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89598/","id":89598,"name":"Hellboy in Mexico","site_detail_url":"https://comicvine.gamespot.com/hellboy-in-mexico/4050-89598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89665/","id":89665,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-89665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90053/","id":90053,"name":"Beta Comic Art Collection","site_detail_url":"https://comicvine.gamespot.com/beta-comic-art-collection/4050-90053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90256/","id":90256,"name":"Free Comic Book Day 2016: Serenity","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2016-serenity/4050-90256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91896/","id":91896,"name":"Living With the Dead: A Zombie Bromance","site_detail_url":"https://comicvine.gamespot.com/living-with-the-dead-a-zombie-bromance/4050-91896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93193/","id":93193,"name":"John Constantine, Hellblazer: Good Intentions","site_detail_url":"https://comicvine.gamespot.com/john-constantine-hellblazer-good-intentions/4050-93193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78914/","id":78914,"name":"Rumble","site_detail_url":"https://comicvine.gamespot.com/rumble/4050-78914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96675/","id":96675,"name":"Shadows On The Grave","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave/4050-96675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87448/","id":87448,"name":"Punisher MAX: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/punisher-max-the-complete-collection/4050-87448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97845/","id":97845,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-97845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99401/","id":99401,"name":"Flüge in die Fantasie","site_detail_url":"https://comicvine.gamespot.com/fluge-in-die-fantasie/4050-99401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102526/","id":102526,"name":"100% MAX. Starr: El bárbaro","site_detail_url":"https://comicvine.gamespot.com/100-max-starr-el-barbaro/4050-102526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96281/","id":96281,"name":"Conan Omnibus","site_detail_url":"https://comicvine.gamespot.com/conan-omnibus/4050-96281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104020/","id":104020,"name":"La Guarida del Horror: Edgar Allan Poe","site_detail_url":"https://comicvine.gamespot.com/la-guarida-del-horror-edgar-allan-poe/4050-104020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104035/","id":104035,"name":"La Guarida del Horror: H.P. Lovecraft","site_detail_url":"https://comicvine.gamespot.com/la-guarida-del-horror-hp-lovecraft/4050-104035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105674/","id":105674,"name":"Conan El cimmerio","site_detail_url":"https://comicvine.gamespot.com/conan-el-cimmerio/4050-105674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105695/","id":105695,"name":"Conan La leyenda","site_detail_url":"https://comicvine.gamespot.com/conan-la-leyenda/4050-105695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105698/","id":105698,"name":"Spontan Comics Sonderheft","site_detail_url":"https://comicvine.gamespot.com/spontan-comics-sonderheft/4050-105698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101005/","id":101005,"name":"William B. DuBay's The Rook Archives","site_detail_url":"https://comicvine.gamespot.com/william-b-dubays-the-rook-archives/4050-101005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106229/","id":106229,"name":"El Dios Rata","site_detail_url":"https://comicvine.gamespot.com/el-dios-rata/4050-106229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107658/","id":107658,"name":"Hellboy and the B.P.R.D.: 1954","site_detail_url":"https://comicvine.gamespot.com/hellboy-and-the-bprd-1954/4050-107658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107958/","id":107958,"name":"Shadows On the Grave","site_detail_url":"https://comicvine.gamespot.com/shadows-on-the-grave/4050-107958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108585/","id":108585,"name":"Hulk: Return of the Monster","site_detail_url":"https://comicvine.gamespot.com/hulk-return-of-the-monster/4050-108585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111532/","id":111532,"name":"Hellboy: The Complete Short Stories","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-complete-short-stories/4050-111532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110745/","id":110745,"name":"Hellboy Omnibus","site_detail_url":"https://comicvine.gamespot.com/hellboy-omnibus/4050-110745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112289/","id":112289,"name":"Buffy the Vampire Slayer Season 10: Library Edition","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-season-10-library-edition/4050-112289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110728/","id":110728,"name":"Punisher MAX by Garth Ennis Omnibus","site_detail_url":"https://comicvine.gamespot.com/punisher-max-by-garth-ennis-omnibus/4050-110728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112879/","id":112879,"name":"Ogre","site_detail_url":"https://comicvine.gamespot.com/ogre/4050-112879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114392/","id":114392,"name":"The Colossal Conan the Cimmerian","site_detail_url":"https://comicvine.gamespot.com/the-colossal-conan-the-cimmerian/4050-114392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114855/","id":114855,"name":"Creepy presents Richard Corben","site_detail_url":"https://comicvine.gamespot.com/creepy-presents-richard-corben/4050-114855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115058/","id":115058,"name":"John Constantine, Hellblazer: 30th Anniversary Celebration","site_detail_url":"https://comicvine.gamespot.com/john-constantine-hellblazer-30th-anniversary-celeb/4050-115058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115110/","id":115110,"name":"Starr the Slayer: A Starr is Born","site_detail_url":"https://comicvine.gamespot.com/starr-the-slayer-a-starr-is-born/4050-115110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116352/","id":116352,"name":"Geister der Toten","site_detail_url":"https://comicvine.gamespot.com/geister-der-toten/4050-116352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117064/","id":117064,"name":"Hulk: Dogs of War","site_detail_url":"https://comicvine.gamespot.com/hulk-dogs-of-war/4050-117064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118312/","id":118312,"name":"La Espada Salvaje de Conan","site_detail_url":"https://comicvine.gamespot.com/la-espada-salvaje-de-conan/4050-118312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120255/","id":120255,"name":"Buffy the Vampire Slayer Staffel 10","site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer-staffel-10/4050-120255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121733/","id":121733,"name":"Conan Chronicles Epic Collection: Return To Cimmeria","site_detail_url":"https://comicvine.gamespot.com/conan-chronicles-epic-collection-return-to-cimmeri/4050-121733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121761/","id":121761,"name":"Famous Monsters Gallery: Dark Arts","site_detail_url":"https://comicvine.gamespot.com/famous-monsters-gallery-dark-arts/4050-121761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122048/","id":122048,"name":"Aliens vs. Predator: The Essential Comics","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-the-essential-comics/4050-122048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117763/","id":117763,"name":"The Savage Sword of Conan: The Original Marvel Years Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4050-117763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124428/","id":124428,"name":"Batman: Black and White Omnibus","site_detail_url":"https://comicvine.gamespot.com/batman-black-and-white-omnibus/4050-124428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124894/","id":124894,"name":"Hellboy & B.P.R.D.","site_detail_url":"https://comicvine.gamespot.com/hellboy-and-bprd/4050-124894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125612/","id":125612,"name":"Metal Hurlant: Selected Works","site_detail_url":"https://comicvine.gamespot.com/metal-hurlant-selected-works/4050-125612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126249/","id":126249,"name":"100% Marvel: Hulk","site_detail_url":"https://comicvine.gamespot.com/100-marvel-hulk/4050-126249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127742/","id":127742,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-127742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127743/","id":127743,"name":"Comix","site_detail_url":"https://comicvine.gamespot.com/comix/4050-127743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108280/","id":108280,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-108280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127761/","id":127761,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-127761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120228/","id":120228,"name":"Vampirella (1969), Facsimile Edition","site_detail_url":"https://comicvine.gamespot.com/vampirella-1969-facsimile-edition/4050-120228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129164/","id":129164,"name":"Fantastik","site_detail_url":"https://comicvine.gamespot.com/fantastik/4050-129164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129175/","id":129175,"name":"Creepy","site_detail_url":"https://comicvine.gamespot.com/creepy/4050-129175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129177/","id":129177,"name":"Ère Comprimée","site_detail_url":"https://comicvine.gamespot.com/ere-comprimee/4050-129177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97843/","id":97843,"name":"Totem","site_detail_url":"https://comicvine.gamespot.com/totem/4050-97843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129261/","id":129261,"name":"Comix Internacional","site_detail_url":"https://comicvine.gamespot.com/comix-internacional/4050-129261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129274/","id":129274,"name":"Totem-Super","site_detail_url":"https://comicvine.gamespot.com/totem-super/4050-129274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129092/","id":129092,"name":"Hellboy Kompendium","site_detail_url":"https://comicvine.gamespot.com/hellboy-kompendium/4050-129092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130183/","id":130183,"name":"Aliens","site_detail_url":"https://comicvine.gamespot.com/aliens/4050-130183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131625/","id":131625,"name":"Total Metal","site_detail_url":"https://comicvine.gamespot.com/total-metal/4050-131625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132422/","id":132422,"name":"1984 Almanaque","site_detail_url":"https://comicvine.gamespot.com/1984-almanaque/4050-132422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132441/","id":132441,"name":"Comic Forum","site_detail_url":"https://comicvine.gamespot.com/comic-forum/4050-132441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134342/","id":134342,"name":"Gummi","site_detail_url":"https://comicvine.gamespot.com/gummi/4050-134342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134408/","id":134408,"name":"Les Chroniques de Conan","site_detail_url":"https://comicvine.gamespot.com/les-chroniques-de-conan/4050-134408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135393/","id":135393,"name":"The Creeps","site_detail_url":"https://comicvine.gamespot.com/the-creeps/4050-135393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135956/","id":135956,"name":"Slow Death Zero: The Comix Anthology of Ecological Horror","site_detail_url":"https://comicvine.gamespot.com/slow-death-zero-the-comix-anthology-of-ecological-/4050-135956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136486/","id":136486,"name":"1984","site_detail_url":"https://comicvine.gamespot.com/1984/4050-136486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136572/","id":136572,"name":"3ª Geração","site_detail_url":"https://comicvine.gamespot.com/3a-geracao/4050-136572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136637/","id":136637,"name":"Epic","site_detail_url":"https://comicvine.gamespot.com/epic/4050-136637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136573/","id":136573,"name":"Kripta","site_detail_url":"https://comicvine.gamespot.com/kripta/4050-136573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136739/","id":136739,"name":"Totem Extra","site_detail_url":"https://comicvine.gamespot.com/totem-extra/4050-136739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136806/","id":136806,"name":"Hellboy and the B.P.R.D.: 1952-1954","site_detail_url":"https://comicvine.gamespot.com/hellboy-and-the-bprd-1952-1954/4050-136806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48437/","id":48437,"name":"La Nuova Mongolfiera","site_detail_url":"https://comicvine.gamespot.com/la-nuova-mongolfiera/4050-48437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137011/","id":137011,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-137011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137557/","id":137557,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-137557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137599/","id":137599,"name":"Hellboy ","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-137599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137925/","id":137925,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-137925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138558/","id":138558,"name":"Hellboy - A Feiticeira Troll e Outras Histórias","site_detail_url":"https://comicvine.gamespot.com/hellboy-a-feiticeira-troll-e-outras-historias/4050-138558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138767/","id":138767,"name":"Hellboy Edição Histórica","site_detail_url":"https://comicvine.gamespot.com/hellboy-edicao-historica/4050-138767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132660/","id":132660,"name":"Vampiress Carmilla","site_detail_url":"https://comicvine.gamespot.com/vampiress-carmilla/4050-132660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140035/","id":140035,"name":"Antología del Cómic","site_detail_url":"https://comicvine.gamespot.com/antologia-del-comic/4050-140035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140422/","id":140422,"name":"Delta","site_detail_url":"https://comicvine.gamespot.com/delta/4050-140422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140628/","id":140628,"name":"L'Echo des Savanes Spécial U.S.A.","site_detail_url":"https://comicvine.gamespot.com/lecho-des-savanes-special-usa/4050-140628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140813/","id":140813,"name":"Vampirella: Crimson Chronicles","site_detail_url":"https://comicvine.gamespot.com/vampirella-crimson-chronicles/4050-140813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141146/","id":141146,"name":"Anthology of Slow Death","site_detail_url":"https://comicvine.gamespot.com/anthology-of-slow-death/4050-141146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141259/","id":141259,"name":"Cimoc Especial","site_detail_url":"https://comicvine.gamespot.com/cimoc-especial/4050-141259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142319/","id":142319,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-142319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63564/","id":63564,"name":"Hellblazer: Brian Azzarello","site_detail_url":"https://comicvine.gamespot.com/hellblazer-brian-azzarello/4050-63564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142833/","id":142833,"name":"USA Magazine Hors-Série","site_detail_url":"https://comicvine.gamespot.com/usa-magazine-hors-serie/4050-142833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142835/","id":142835,"name":"USA Magazine","site_detail_url":"https://comicvine.gamespot.com/usa-magazine/4050-142835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142834/","id":142834,"name":"Spécial USA","site_detail_url":"https://comicvine.gamespot.com/special-usa/4050-142834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142989/","id":142989,"name":"Totem","site_detail_url":"https://comicvine.gamespot.com/totem/4050-142989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143170/","id":143170,"name":"Aliens vs. Predator: Special Collector's Edition","site_detail_url":"https://comicvine.gamespot.com/aliens-vs-predator-special-collectors-edition/4050-143170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144259/","id":144259,"name":"Colección Made in Hell","site_detail_url":"https://comicvine.gamespot.com/coleccion-made-in-hell/4050-144259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106454/","id":106454,"name":"Best Comics","site_detail_url":"https://comicvine.gamespot.com/best-comics/4050-106454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144732/","id":144732,"name":"100% Cult Comics: Conan","site_detail_url":"https://comicvine.gamespot.com/100-cult-comics-conan/4050-144732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-147203/","id":147203,"name":"Just Imagine Stan Lee Creating the DC Universe","site_detail_url":"https://comicvine.gamespot.com/just-imagine-stan-lee-creating-the-dc-universe/4050-147203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-147802/","id":147802,"name":"Los Espíritus de los Muertos de Edgar Allan Poe","site_detail_url":"https://comicvine.gamespot.com/los-espiritus-de-los-muertos-de-edgar-allan-poe/4050-147802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-149847/","id":149847,"name":"Sombras en la Tumba","site_detail_url":"https://comicvine.gamespot.com/sombras-en-la-tumba/4050-149847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-149877/","id":149877,"name":"Richard Corben Obras Completas","site_detail_url":"https://comicvine.gamespot.com/richard-corben-obras-completas/4050-149877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-150359/","id":150359,"name":"Komiks-Fantastyka","site_detail_url":"https://comicvine.gamespot.com/komiks-fantastyka/4050-150359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-151078/","id":151078,"name":"Murky World","site_detail_url":"https://comicvine.gamespot.com/murky-world/4050-151078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-151577/","id":151577,"name":"Den","site_detail_url":"https://comicvine.gamespot.com/den/4050-151577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-151660/","id":151660,"name":"Aliens/Predator","site_detail_url":"https://comicvine.gamespot.com/alienspredator/4050-151660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-151901/","id":151901,"name":"Collana Nera","site_detail_url":"https://comicvine.gamespot.com/collana-nera/4050-151901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-153265/","id":153265,"name":"Den","site_detail_url":"https://comicvine.gamespot.com/den/4050-153265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-158983/","id":158983,"name":"Bild & Bubblas stora seriebok ","site_detail_url":"https://comicvine.gamespot.com/bild-and-bubblas-stora-seriebok/4050-158983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-159022/","id":159022,"name":"EC: Epitaphs from the Abyss","site_detail_url":"https://comicvine.gamespot.com/ec-epitaphs-from-the-abyss/4050-159022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-160337/","id":160337,"name":"Murky World ","site_detail_url":"https://comicvine.gamespot.com/murky-world/4050-160337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-160400/","id":160400,"name":"Hellboy: The Crooked Man & The Return of Effie Kolb","site_detail_url":"https://comicvine.gamespot.com/hellboy-the-crooked-man-and-the-return-of-effie-ko/4050-160400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-160631/","id":160631,"name":"DEN","site_detail_url":"https://comicvine.gamespot.com/den/4050-160631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-160942/","id":160942,"name":"Top Cómics","site_detail_url":"https://comicvine.gamespot.com/top-comics/4050-160942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-162372/","id":162372,"name":"Colección Humanoides","site_detail_url":"https://comicvine.gamespot.com/coleccion-humanoides/4050-162372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-162691/","id":162691,"name":"Aliens - Grandi Maestri","site_detail_url":"https://comicvine.gamespot.com/aliens-grandi-maestri/4050-162691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-163463/","id":163463,"name":"Grandes Autores de Vertigo: Richard Corben","site_detail_url":"https://comicvine.gamespot.com/grandes-autores-de-vertigo-richard-corben/4050-163463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-165010/","id":165010,"name":"Dimwood","site_detail_url":"https://comicvine.gamespot.com/dimwood/4050-165010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-166164/","id":166164,"name":"Rowlf and Other Fantasy Stories","site_detail_url":"https://comicvine.gamespot.com/rowlf-and-other-fantasy-stories/4050-166164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-166692/","id":166692,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-166692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-167109/","id":167109,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4050-167109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-168126/","id":168126,"name":"Hellboy: Veštica trol i druge priče","site_detail_url":"https://comicvine.gamespot.com/hellboy-vestica-trol-i-druge-price/4050-168126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-168537/","id":168537,"name":"Mutantenwelt & Sohn der Mutantenwelt","site_detail_url":"https://comicvine.gamespot.com/mutantenwelt-and-sohn-der-mutantenwelt/4050-168537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-168575/","id":168575,"name":"Rat God","site_detail_url":"https://comicvine.gamespot.com/rat-god/4050-168575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-169411/","id":169411,"name":"Alterlinus","site_detail_url":"https://comicvine.gamespot.com/alterlinus/4050-169411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-170128/","id":170128,"name":"Bigfoot","site_detail_url":"https://comicvine.gamespot.com/bigfoot/4050-170128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-170139/","id":170139,"name":"Schatten auf dem Grab","site_detail_url":"https://comicvine.gamespot.com/schatten-auf-dem-grab/4050-170139/"}],"website":"http://www.corbenstudios.com/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1433.json b/samples/api-data/person-details/person-4040-1433.json new file mode 100644 index 0000000..28e8083 --- /dev/null +++ b/samples/api-data/person-details/person-4040-1433.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1433/","birth":null,"count_of_isssue_appearances":null,"country":null,"created_characters":[],"date_added":"2008-06-06 11:28:05","date_last_updated":"2011-05-05 17:02:07","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1433,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189667/","id":189667,"name":"Punisher Movie Special","site_detail_url":"https://comicvine.gamespot.com/the-punisher-movie-special-1-punisher-movie-specia/4000-189667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30695/","id":30695,"name":"Jack Hunter","site_detail_url":"https://comicvine.gamespot.com/jack-hunter-3-jack-hunter/4000-30695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30651/","id":30651,"name":"Jack Hunter","site_detail_url":"https://comicvine.gamespot.com/jack-hunter-1-jack-hunter/4000-30651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30687/","id":30687,"name":"Jack Hunter","site_detail_url":"https://comicvine.gamespot.com/jack-hunter-2-jack-hunter/4000-30687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31016/","id":31016,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-mars-3/4000-31016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30918/","id":30918,"name":"","site_detail_url":"https://comicvine.gamespot.com/beyond-mars-2/4000-30918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30814/","id":30814,"name":"none","site_detail_url":"https://comicvine.gamespot.com/beyond-mars-1-none/4000-30814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178437/","id":178437,"name":"Wish You Were Here","site_detail_url":"https://comicvine.gamespot.com/gi-joe-in-3-d-4-wish-you-were-here/4000-178437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104901/","id":104901,"name":"Little Dot 3-D","site_detail_url":"https://comicvine.gamespot.com/blackthorne-3-d-series-59-little-dot-3-d/4000-104901/"}],"name":"Phil Haxo","site_detail_url":"https://comicvine.gamespot.com/phil-haxo/4040-1433/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58475/","id":58475,"name":"Sea of Storms","site_detail_url":"https://comicvine.gamespot.com/sea-of-storms/4045-58475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59052/","id":59052,"name":"Vampire Squadron","site_detail_url":"https://comicvine.gamespot.com/vampire-squadron/4045-59052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59132/","id":59132,"name":"The Phantom Lantern","site_detail_url":"https://comicvine.gamespot.com/the-phantom-lantern/4045-59132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59240/","id":59240,"name":"Hostile Takeover","site_detail_url":"https://comicvine.gamespot.com/hostile-takeover/4045-59240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59264/","id":59264,"name":"Les quatre évangélistes","site_detail_url":"https://comicvine.gamespot.com/les-quatre-evangelistes/4045-59264/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4291/","id":4291,"name":"Jack Hunter","site_detail_url":"https://comicvine.gamespot.com/jack-hunter/4050-4291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4290/","id":4290,"name":"Beyond Mars","site_detail_url":"https://comicvine.gamespot.com/beyond-mars/4050-4290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-12050/","id":12050,"name":"Blackthorne 3-D Series","site_detail_url":"https://comicvine.gamespot.com/blackthorne-3-d-series/4050-12050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28984/","id":28984,"name":"G.I. Joe In 3-D","site_detail_url":"https://comicvine.gamespot.com/gi-joe-in-3-d/4050-28984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30713/","id":30713,"name":"The Punisher Movie Special","site_detail_url":"https://comicvine.gamespot.com/the-punisher-movie-special/4050-30713/"}],"website":null},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1437.json b/samples/api-data/person-details/person-4040-1437.json new file mode 100644 index 0000000..0827a2f --- /dev/null +++ b/samples/api-data/person-details/person-4040-1437.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1437/","birth":null,"count_of_isssue_appearances":null,"country":null,"created_characters":[],"date_added":"2008-06-06 11:28:02","date_last_updated":"2013-11-04 00:44:50","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1437,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178438/","id":178438,"name":"Respects","site_detail_url":"https://comicvine.gamespot.com/gi-joe-in-3-d-5-respects/4000-178438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328646/","id":328646,"name":"Phony Express","site_detail_url":"https://comicvine.gamespot.com/alien-worlds-1-phony-express/4000-328646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29442/","id":29442,"name":"The Dreams of Youth; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/secret-origins-25-the-dreams-of-youth-untitled/4000-29442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144840/","id":144840,"name":"","site_detail_url":"https://comicvine.gamespot.com/bravestarr-in-3-d-1/4000-144840/"}],"name":"Susan Kronz","site_detail_url":"https://comicvine.gamespot.com/susan-kronz/4040-1437/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58956/","id":58956,"name":"Life and Death","site_detail_url":"https://comicvine.gamespot.com/life-and-death/4045-58956/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3616/","id":3616,"name":"Secret Origins","site_detail_url":"https://comicvine.gamespot.com/secret-origins/4050-3616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24378/","id":24378,"name":"Bravestarr In 3-D","site_detail_url":"https://comicvine.gamespot.com/bravestarr-in-3-d/4050-24378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28984/","id":28984,"name":"G.I. Joe In 3-D","site_detail_url":"https://comicvine.gamespot.com/gi-joe-in-3-d/4050-28984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47704/","id":47704,"name":"Alien Worlds","site_detail_url":"https://comicvine.gamespot.com/alien-worlds/4050-47704/"}],"website":null},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-details/person-4040-1539.json b/samples/api-data/person-details/person-4040-1539.json new file mode 100644 index 0000000..8026bd6 --- /dev/null +++ b/samples/api-data/person-details/person-4040-1539.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"D. David Perlin","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1539/","birth":"1929-08-27 00:00:00","count_of_isssue_appearances":null,"country":"United States of America","created_characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158335/","id":158335,"name":"Acolyte Croft","site_detail_url":"https://comicvine.gamespot.com/acolyte-croft/4005-158335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154782/","id":154782,"name":"Acrobat","site_detail_url":"https://comicvine.gamespot.com/acrobat/4005-154782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119959/","id":119959,"name":"Adrian Castorp","site_detail_url":"https://comicvine.gamespot.com/adrian-castorp/4005-119959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31249/","id":31249,"name":"Alexander Flynn","site_detail_url":"https://comicvine.gamespot.com/alexander-flynn/4005-31249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15784/","id":15784,"name":"Andromeda","site_detail_url":"https://comicvine.gamespot.com/andromeda/4005-15784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154780/","id":154780,"name":"Anton DeLionatus ","site_detail_url":"https://comicvine.gamespot.com/anton-delionatus/4005-154780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6116/","id":6116,"name":"Arcanna","site_detail_url":"https://comicvine.gamespot.com/arcanna/4005-6116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14002/","id":14002,"name":"Asmodeus","site_detail_url":"https://comicvine.gamespot.com/asmodeus/4005-14002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33368/","id":33368,"name":"Asmodeus Jones","site_detail_url":"https://comicvine.gamespot.com/asmodeus-jones/4005-33368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57455/","id":57455,"name":"Atlas","site_detail_url":"https://comicvine.gamespot.com/atlas/4005-57455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32871/","id":32871,"name":"August Masters","site_detail_url":"https://comicvine.gamespot.com/august-masters/4005-32871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158374/","id":158374,"name":"Behemoth (Kay-Twelve)","site_detail_url":"https://comicvine.gamespot.com/behemoth-kay-twelve/4005-158374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5569/","id":5569,"name":"Bloodshot","site_detail_url":"https://comicvine.gamespot.com/bloodshot/4005-5569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150786/","id":150786,"name":"Brady Cameron","site_detail_url":"https://comicvine.gamespot.com/brady-cameron/4005-150786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100128/","id":100128,"name":"Chris Larmouth","site_detail_url":"https://comicvine.gamespot.com/chris-larmouth/4005-100128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42846/","id":42846,"name":"Cloud","site_detail_url":"https://comicvine.gamespot.com/cloud/4005-42846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158334/","id":158334,"name":"Danton Vayla","site_detail_url":"https://comicvine.gamespot.com/danton-vayla/4005-158334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124069/","id":124069,"name":"David Kessler","site_detail_url":"https://comicvine.gamespot.com/david-kessler/4005-124069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36230/","id":36230,"name":"DePrayve","site_detail_url":"https://comicvine.gamespot.com/deprayve/4005-36230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84230/","id":84230,"name":"Dolly Donahue","site_detail_url":"https://comicvine.gamespot.com/dolly-donahue/4005-84230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28401/","id":28401,"name":"Dr. Glitternight","site_detail_url":"https://comicvine.gamespot.com/dr-glitternight/4005-28401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56928/","id":56928,"name":"Dragon Of The Moon","site_detail_url":"https://comicvine.gamespot.com/dragon-of-the-moon/4005-56928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27829/","id":27829,"name":"Frenchie","site_detail_url":"https://comicvine.gamespot.com/frenchie/4005-27829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7114/","id":7114,"name":"Gargoyle","site_detail_url":"https://comicvine.gamespot.com/gargoyle/4005-7114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91840/","id":91840,"name":"Geraldo Kabal","site_detail_url":"https://comicvine.gamespot.com/geraldo-kabal/4005-91840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100048/","id":100048,"name":"Gnostic Wizard","site_detail_url":"https://comicvine.gamespot.com/gnostic-wizard/4005-100048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44742/","id":44742,"name":"Heartbreak Kid","site_detail_url":"https://comicvine.gamespot.com/heartbreak-kid/4005-44742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61291/","id":61291,"name":"Hyppokri","site_detail_url":"https://comicvine.gamespot.com/hyppokri/4005-61291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62250/","id":62250,"name":"Ian Fate","site_detail_url":"https://comicvine.gamespot.com/ian-fate/4005-62250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14605/","id":14605,"name":"Interloper","site_detail_url":"https://comicvine.gamespot.com/interloper/4005-14605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90436/","id":90436,"name":"Ira Gross","site_detail_url":"https://comicvine.gamespot.com/ira-gross/4005-90436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45103/","id":45103,"name":"Ivich","site_detail_url":"https://comicvine.gamespot.com/ivich/4005-45103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176465/","id":176465,"name":"Kate","site_detail_url":"https://comicvine.gamespot.com/kate/4005-176465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158377/","id":158377,"name":"Larry Tong","site_detail_url":"https://comicvine.gamespot.com/larry-tong/4005-158377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78957/","id":78957,"name":"Link","site_detail_url":"https://comicvine.gamespot.com/link/4005-78957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118613/","id":118613,"name":"Love","site_detail_url":"https://comicvine.gamespot.com/love/4005-118613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68404/","id":68404,"name":"Lt. Victor Northrup","site_detail_url":"https://comicvine.gamespot.com/lt-victor-northrup/4005-68404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33033/","id":33033,"name":"Luann Bloom","site_detail_url":"https://comicvine.gamespot.com/luann-bloom/4005-33033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176466/","id":176466,"name":"Lucy","site_detail_url":"https://comicvine.gamespot.com/lucy/4005-176466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158376/","id":158376,"name":"Ma Mayhem","site_detail_url":"https://comicvine.gamespot.com/ma-mayhem/4005-158376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62377/","id":62377,"name":"Mac Dumpling","site_detail_url":"https://comicvine.gamespot.com/mac-dumpling/4005-62377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59223/","id":59223,"name":"Maria Russoff","site_detail_url":"https://comicvine.gamespot.com/maria-russoff/4005-59223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33191/","id":33191,"name":"Marlene Alraune","site_detail_url":"https://comicvine.gamespot.com/marlene-alraune/4005-33191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45105/","id":45105,"name":"Max Rocker","site_detail_url":"https://comicvine.gamespot.com/max-rocker/4005-45105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66853/","id":66853,"name":"Medi-Viper","site_detail_url":"https://comicvine.gamespot.com/medi-viper/4005-66853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27672/","id":27672,"name":"Mistress Love","site_detail_url":"https://comicvine.gamespot.com/mistress-love/4005-27672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84010/","id":84010,"name":"Monique Areadite","site_detail_url":"https://comicvine.gamespot.com/monique-areadite/4005-84010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1493/","id":1493,"name":"Moon Knight","site_detail_url":"https://comicvine.gamespot.com/moon-knight/4005-1493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158375/","id":158375,"name":"Mr. Gabriel","site_detail_url":"https://comicvine.gamespot.com/mr-gabriel/4005-158375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158418/","id":158418,"name":"Mrs. Redditch","site_detail_url":"https://comicvine.gamespot.com/mrs-redditch/4005-158418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13866/","id":13866,"name":"Nuke","site_detail_url":"https://comicvine.gamespot.com/nuke/4005-13866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32507/","id":32507,"name":"Null the Living Darkness","site_detail_url":"https://comicvine.gamespot.com/null-the-living-darkness/4005-32507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112779/","id":112779,"name":"Prometheus","site_detail_url":"https://comicvine.gamespot.com/prometheus/4005-112779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81144/","id":81144,"name":"Rose of Purity","site_detail_url":"https://comicvine.gamespot.com/rose-of-purity/4005-81144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41661/","id":41661,"name":"Runner","site_detail_url":"https://comicvine.gamespot.com/runner/4005-41661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33103/","id":33103,"name":"Sassafras","site_detail_url":"https://comicvine.gamespot.com/sassafras/4005-33103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73904/","id":73904,"name":"Scrounge","site_detail_url":"https://comicvine.gamespot.com/scrounge/4005-73904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47516/","id":47516,"name":"Seraph","site_detail_url":"https://comicvine.gamespot.com/seraph/4005-47516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158417/","id":158417,"name":"Simon Kolb","site_detail_url":"https://comicvine.gamespot.com/simon-kolb/4005-158417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158425/","id":158425,"name":"Soul-Beast","site_detail_url":"https://comicvine.gamespot.com/soul-beast/4005-158425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154783/","id":154783,"name":"Strongman ","site_detail_url":"https://comicvine.gamespot.com/strongman/4005-154783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91597/","id":91597,"name":"Time Agent","site_detail_url":"https://comicvine.gamespot.com/time-agent/4005-91597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27456/","id":27456,"name":"Tribunal","site_detail_url":"https://comicvine.gamespot.com/tribunal/4005-27456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154781/","id":154781,"name":"Tumbler","site_detail_url":"https://comicvine.gamespot.com/tumbler/4005-154781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65963/","id":65963,"name":"Wheezel","site_detail_url":"https://comicvine.gamespot.com/wheezel/4005-65963/"}],"date_added":"2008-06-06 11:28:12","date_last_updated":"2013-04-18 03:07:32","death":null,"deck":"Famous writer of many of Marvel's most respected comic-books in the 1970's.","description":"

    Perlin's most notable work where his long stints on the Defenders, Ghost Rider and Werewolf by Night.
    In the 1990s, Perlin worked for Valiant comics both as artist and as an editor

    ","email":null,"gender":1,"hometown":null,"id":1539,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/768222-001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/768222-001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/768222-001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/768222-001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/768222-001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/768222-001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/768222-001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/768222-001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/768222-001.jpg","image_tags":"All Images,Don Perlin"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-941860/","id":941860,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/she-hulk-epic-collection-breaking-the-fourth-wall-/4000-941860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921430/","id":921430,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-epic-collection-the-reality-war-1-v/4000-921430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891875/","id":891875,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ghost-rider-3-volume-3/4000-891875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-868597/","id":868597,"name":"--The Stalker Called Moon Knight","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-32-facsimile-edition-1-the-stalk/4000-868597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882696/","id":882696,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-21-volume-21/4000-882696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-877542/","id":877542,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bloodshot-empirical-dynasty-1-tpb/4000-877542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873645/","id":873645,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-13-volume-13/4000-873645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851632/","id":851632,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-brother-voodoo-1-volume-1/4000-851632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-850454/","id":850454,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ninjak-the-7th-dragon-1/4000-850454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918878/","id":918878,"name":null,"site_detail_url":"https://comicvine.gamespot.com/frankensteins-monster-classic-collection-1/4000-918878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839631/","id":839631,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/bloodshot-50-project-1-tpbhc/4000-839631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-831992/","id":831992,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bloodshot-the-blood-of-heroes-1-tpb/4000-831992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824029/","id":824029,"name":null,"site_detail_url":"https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries-1/4000-824029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-829006/","id":829006,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ps-artbook-softee-horrific-1-volume-1/4000-829006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-829005/","id":829005,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-horrific-1-volume-one/4000-829005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824088/","id":824088,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/moon-knight-omnibus-1-volume-1/4000-824088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824086/","id":824086,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-12-volume-12/4000-824086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-822732/","id":822732,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-strange-suspense-stories-4-volum/4000-822732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821522/","id":821522,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ghost-rider-2-volume-2/4000-821522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-810758/","id":810758,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-monsters-and-men-1/4000-810758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814972/","id":814972,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-defenders-7-volume-7/4000-814972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803815/","id":803815,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-14-volume-1/4000-803815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803002/","id":803002,"name":"The Dark's Forest","site_detail_url":"https://comicvine.gamespot.com/rai-7-the-darks-forest/4000-803002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-792334/","id":792334,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hellstrom-evil-origins-1-tpb/4000-792334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785731/","id":785731,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up-5-volume-5/4000-785731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743826/","id":743826,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/thor-epic-collection-into-the-dark-nebula-1-volume/4000-743826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731521/","id":731521,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-tales-annihilation-1/4000-731521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735592/","id":735592,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-3-vol-3/4000-735592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731533/","id":731533,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-the-end-of-all-songs-1-v/4000-731533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730358/","id":730358,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/tigra-the-complete-collection-1-tpb/4000-730358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723116/","id":723116,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-tales-ghost-rider-1/4000-723116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728989/","id":728989,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/modok-head-trips-1-tpb/4000-728989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725396/","id":725396,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-the-beyond-1-volume-one/4000-725396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721798/","id":721798,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ghost-rider-1-volume-1/4000-721798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720150/","id":720150,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/bloodshot-classic-omnibus-1-volume-1/4000-720150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709206/","id":709206,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-12-volu/4000-709206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703056/","id":703056,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil-13-volume-13/4000-703056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701939/","id":701939,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-deadly-hands-of-kung-fu-the-complete/4000-701939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688320/","id":688320,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-11-volu/4000-688320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687069/","id":687069,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-mister-mystery-1-volume-one/4000-687069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687004/","id":687004,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengersdoctor-strange-rise-of-the-darkhold-1-tpb/4000-687004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679157/","id":679157,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-omnibus-1-volume-1/4000-679157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679989/","id":679989,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-the-new-defenders-1-volu/4000-679989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609436/","id":609436,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-strange-terrors-1-volume-one/4000-609436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674128/","id":674128,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-champions-classic-the-complete-collection-1-tp/4000-674128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672946/","id":672946,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-weird-horrors-1-volume-one/4000-672946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669465/","id":669465,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-3-volume/4000-669465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659993/","id":659993,"name":"Bubble, Bubble, Toil and Trouble; The Creeping Horror","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-90-bubble-bubble-toil-and/4000-659993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658714/","id":658714,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ninjak-the-complete-classic-omnibus-1-hc/4000-658714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656721/","id":656721,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-2-volume/4000-656721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626305/","id":626305,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-1-volume/4000-626305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617839/","id":617839,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-ashes-ashes-1-volume-7/4000-617839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643958/","id":643958,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/classic-monsters-of-pre-code-horror-comics-mummies/4000-643958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580845/","id":580845,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-weird-terror-2-volume-two/4000-580845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566802/","id":566802,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-weird-terror-1-volume-one/4000-566802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557364/","id":557364,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadly-hands-of-kung-fu-omnibus-1-volume-1/4000-557364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546194/","id":546194,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-the-six-fingered-hand-sa/4000-546194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541323/","id":541323,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/roy-thomas-presents-captain-science-1-hc/4000-541323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537869/","id":537869,"name":"The War Never Ends","site_detail_url":"https://comicvine.gamespot.com/the-transformers-vs-gi-joe-13-the-war-never-ends/4000-537869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537853/","id":537853,"name":"","site_detail_url":"https://comicvine.gamespot.com/haunted-horror-22/4000-537853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921119/","id":921119,"name":"El increíble Hulk: Muerte y destino","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-67-el-increible-hulk-muerte-y-destin/4000-921119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522431/","id":522431,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-duel-of-iron-1-volume-11/4000-522431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516959/","id":516959,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-champions-1-volume-1/4000-516959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507755/","id":507755,"name":"Twin Dilemma; The Creeping Horror","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-64-twin-dilemma-the-creep/4000-507755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612301/","id":612301,"name":"Caballero Luna 1: Cuenta atrás hacia la oscuridad","site_detail_url":"https://comicvine.gamespot.com/coleccionable-marvel-heroes-65-caballero-luna-1-cu/4000-612301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504333/","id":504333,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-ultron-forever-1-tpb/4000-504333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502138/","id":502138,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-omnibus-1-hc/4000-502138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501617/","id":501617,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/monster-of-frankenstein-1-tpb/4000-501617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484933/","id":484933,"name":"","site_detail_url":"https://comicvine.gamespot.com/weird-love-6/4000-484933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469483/","id":469483,"name":"Training Day; The Glitch; Protocol; The Heart of the Matter; Is This You?; The Gang's All Here; Bloodshot's Guide To... Home Safety!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-25-training-day-the-glitch-protocol-the-/4000-469483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467224/","id":467224,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/moon-knight-epic-collection-bad-moon-rising-1-volu/4000-467224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460337/","id":460337,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/the-transformers-classics-7-volume-7/4000-460337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453405/","id":453405,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/valiant-masters-h-a-r-d-corps-search-and-destroy-1/4000-453405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612261/","id":612261,"name":"Secret Wars II: ¿Quién es el Todopoderoso?","site_detail_url":"https://comicvine.gamespot.com/coleccionable-marvel-heroes-53-secret-wars-ii-quie/4000-612261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447529/","id":447529,"name":"Operation: Lady Doomsday; ...Hot Potato!","site_detail_url":"https://comicvine.gamespot.com/hundred-penny-press-g-i-joe-a-real-american-hero-1/4000-447529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437480/","id":437480,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/valiant-masters-rai-from-honor-to-strength-1-volum/4000-437480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427947/","id":427947,"name":"","site_detail_url":"https://comicvine.gamespot.com/transformers-the-cover-collection-1/4000-427947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426913/","id":426913,"name":"TP","site_detail_url":"https://comicvine.gamespot.com/the-walking-dead-100-project-1-tp/4000-426913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421806/","id":421806,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-transformers-30th-anniversary-collection-1-hc/4000-421806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380714/","id":380714,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-weird-war-tales-1-volume-1/4000-380714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370389/","id":370389,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-fantastic-four-100-project-1-tpb/4000-370389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363143/","id":363143,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/valiant-masters-bloodshot-blood-of-the-machine-1-v/4000-363143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404654/","id":404654,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-the-complete-collction-1-volume-1/4000-404654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426413/","id":426413,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/man-thing-omnibus-1-hc/4000-426413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351473/","id":351473,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket-1-tpb/4000-351473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312033/","id":312033,"name":"Membership Madness","site_detail_url":"https://comicvine.gamespot.com/defenders-tournament-of-heroes-1-membership-madnes/4000-312033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404769/","id":404769,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-phantom-the-complete-series-the-charlton-years/4000-404769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305425/","id":305425,"name":"100 Project","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-100-project-1-100-projec/4000-305425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288467/","id":288467,"name":"The Frozen Fate of the Hope Diamond; Surf's Up, Monster's Down","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you-12-the-frozen-fate-of-the/4000-288467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293860/","id":293860,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-6-volume-six/4000-293860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364267/","id":364267,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-classics-1-vol-1/4000-364267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376037/","id":376037,"name":"All Hail Megatron","site_detail_url":"https://comicvine.gamespot.com/transformers-the-complete-all-hail-megatron-1-all-/4000-376037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343025/","id":343025,"name":"","site_detail_url":"https://comicvine.gamespot.com/archie-50-times-an-american-icon-1/4000-343025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281944/","id":281944,"name":"The New Avengers 100 Project","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-100-project-1-the-new-avengers-10/4000-281944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311164/","id":311164,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-transformers-6/4000-311164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233494/","id":233494,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-5-volume-five/4000-233494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219893/","id":219893,"name":"American Eagle to Uranus","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-up/4000-219893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228825/","id":228825,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-inhumans-2-volume-two/4000-228825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199869/","id":199869,"name":"Marlene Alraune To Zuri","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-up/4000-199869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199872/","id":199872,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-5-volume-5/4000-199872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192526/","id":192526,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-6-volume-6/4000-192526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229295/","id":229295,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/pet-avengers-classic-1-tpb/4000-229295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170651/","id":170651,"name":"In Pace Requiescat","site_detail_url":"https://comicvine.gamespot.com/the-life-and-times-of-savior-28-5-in-pace-requiesc/4000-170651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472718/","id":472718,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-doctor-strange-4-volume-4/4000-472718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157266/","id":157266,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-dazzler-2-volume-2/4000-157266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342404/","id":342404,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-atlas-era-journey-into-mystery-/4000-342404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397908/","id":397908,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-best-of-cobra-commander-1-tpb/4000-397908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210234/","id":210234,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-210234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251523/","id":251523,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/classic-g-i-joe-1-volume-1/4000-251523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311161/","id":311161,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-transformers-3/4000-311161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150071/","id":150071,"name":"One Shot","site_detail_url":"https://comicvine.gamespot.com/the-hulk-100-project-1-one-shot/4000-150071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151428/","id":151428,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-151428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295866/","id":295866,"name":"Para Que Yo Viva... ¡Mi Amor Debe Morir!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-6-para-que-yo-viva-mi-amo/4000-295866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133843/","id":133843,"name":"In the Company of Wolves","site_detail_url":"https://comicvine.gamespot.com/moon-knight-20-in-the-company-of-wolves/4000-133843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149115/","id":149115,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-149115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295865/","id":295865,"name":"¡El Azote del Látigo!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-5-el-azote-del-latigo/4000-295865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208089/","id":208089,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-4-volume-four/4000-208089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311160/","id":311160,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-transformers-2/4000-311160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138931/","id":138931,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-138931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139554/","id":139554,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-birth-1/4000-139554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311159/","id":311159,"name":"","site_detail_url":"https://comicvine.gamespot.com/classic-transformers-1/4000-311159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115223/","id":115223,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-the-book-of-angels-demons-various-m/4000-115223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155373/","id":155373,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-moon-knight-2-volume-2/4000-155373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285397/","id":285397,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-caballero-luna-1/4000-285397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146885/","id":146885,"name":"The Beginning","site_detail_url":"https://comicvine.gamespot.com/harbinger-1-the-beginning/4000-146885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110379/","id":110379,"name":"","site_detail_url":"https://comicvine.gamespot.com/mystic-arcana-the-book-of-marvel-magic-1/4000-110379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108458/","id":108458,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-back-in-black-handbook-1/4000-108458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209054/","id":209054,"name":"Buster Witwicky and the Car Wash of Doom","site_detail_url":"https://comicvine.gamespot.com/transformers-generations-12-buster-witwicky-and-th/4000-209054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173691/","id":173691,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-team-up-1-tpb/4000-173691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140345/","id":140345,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/champions-classic-2-volume-two/4000-140345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153726/","id":153726,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-ghost-rider-2-volume-2/4000-153726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209048/","id":209048,"name":"The Cure!","site_detail_url":"https://comicvine.gamespot.com/transformers-generations-11-the-cure/4000-209048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139722/","id":139722,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-doctor-strange-2-volume-two/4000-139722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106700/","id":106700,"name":"Victor Mancha to Phantazia","site_detail_url":"https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4000-106700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150722/","id":150722,"name":"Featuring Millie The Model & Patsy","site_detail_url":"https://comicvine.gamespot.com/marvel-milestones-16-featuring-millie-the-model-pa/4000-150722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108463/","id":108463,"name":"The 1970s Handbook","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-2-the-1970s-handbook/4000-108463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155295/","id":155295,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-moon-knight-1-volume-1/4000-155295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184278/","id":184278,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/essential-werewolf-by-night-2-vol-2/4000-184278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106690/","id":106690,"name":null,"site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-horror-20/4000-106690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153492/","id":153492,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-ghost-rider-1-volume-1/4000-153492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184240/","id":184240,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/essential-werewolf-by-night-1-vol-1/4000-184240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189479/","id":189479,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/giant-size-marvel-1-tpb/4000-189479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285403/","id":285403,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-dr-extrano-16/4000-285403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348065/","id":348065,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/essential-monster-of-frankenstein-1-tpb/4000-348065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352822/","id":352822,"name":"Bengalitriangeln","site_detail_url":"https://comicvine.gamespot.com/fantomen-200213-bengalitriangeln/4000-352822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218713/","id":218713,"name":"Surf's Up, Monster's Down; Witch Pitch; How I Spent My Winter Break","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-presented-by-burger-king-1-surfs-up-mon/4000-218713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152381/","id":152381,"name":"Return of the Star Dog; The Creeping Horror","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-33-return-of-the-star-dog-the-creeping-/4000-152381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123114/","id":123114,"name":"Three Shears for Shaggy; The Oceanarium Horror","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-29-three-shears-for-shaggy-the-oceanari/4000-123114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122274/","id":122274,"name":"The Phantom of the Mosh Pit; Caves of Castle Finn","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-25-the-phantom-of-the-mosh-pit-caves-of/4000-122274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122269/","id":122269,"name":"Don't Believe What You See!; Surf's Up, Monster's Down","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-24-dont-believe-what-you-see-surfs-up-m/4000-122269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44046/","id":44046,"name":"Age of Tomorrow","site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow-1-age-of-tomorrow/4000-44046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148532/","id":148532,"name":"Much Do-Do About Nothing","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-that-dirty-yellow-mustard-4-much-do-do-ab/4000-148532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148531/","id":148531,"name":"Quack! Quack! When You Whiz Upon A Star...","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-that-dirty-yellow-mustard-3-quack-quack-w/4000-148531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313611/","id":313611,"name":"Internal Conflicts!","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-that-dirty-yellow-mustard-2-internal-conf/4000-313611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148530/","id":148530,"name":"Exit-Us","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-4-exit-us/4000-148530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148524/","id":148524,"name":"Dinophobia","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-that-dirty-yellow-mustard-1-dinophobia/4000-148524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148529/","id":148529,"name":"Brain Sighs","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-3-brain-sighs/4000-148529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148528/","id":148528,"name":"Vegesaurus Wrecks","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-2-vegesaurus-wrecks/4000-148528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148523/","id":148523,"name":"Sex, Lies, and Vertrbrates","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-1-sex-lies-and-vertrbrates/4000-148523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304392/","id":304392,"name":"Fallen Angel","site_detail_url":"https://comicvine.gamespot.com/fallen-angel-a-magic-the-gathering-legend-1-fallen/4000-304392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153553/","id":153553,"name":"Child Of Time","site_detail_url":"https://comicvine.gamespot.com/timewalker-0-child-of-time/4000-153553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102537/","id":102537,"name":"The End?","site_detail_url":"https://comicvine.gamespot.com/shadowman-43-the-end/4000-102537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102536/","id":102536,"name":"Nightcourt","site_detail_url":"https://comicvine.gamespot.com/shadowman-42-nightcourt/4000-102536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102535/","id":102535,"name":"Under Arrest","site_detail_url":"https://comicvine.gamespot.com/shadowman-41-under-arrest/4000-102535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153551/","id":153551,"name":"Ashes Of The Past - Part 2: White Fire, Black Heart","site_detail_url":"https://comicvine.gamespot.com/timewalker-13-ashes-of-the-past-part-2-white-fire-/4000-153551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153550/","id":153550,"name":"Ashes Of The Past - Part 1","site_detail_url":"https://comicvine.gamespot.com/timewalker-12-ashes-of-the-past-part-1/4000-153550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102534/","id":102534,"name":"Undead Love","site_detail_url":"https://comicvine.gamespot.com/shadowman-40-undead-love/4000-102534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102533/","id":102533,"name":"Funeral Rap","site_detail_url":"https://comicvine.gamespot.com/shadowman-39-funeral-rap/4000-102533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153547/","id":153547,"name":"In Out In","site_detail_url":"https://comicvine.gamespot.com/timewalker-9-in-out-in/4000-153547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102532/","id":102532,"name":"Wild Card","site_detail_url":"https://comicvine.gamespot.com/shadowman-38-wild-card/4000-102532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102531/","id":102531,"name":"Aric","site_detail_url":"https://comicvine.gamespot.com/shadowman-37-aric/4000-102531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102530/","id":102530,"name":"Cinderella Blues - Part 2: Flames Of Rage","site_detail_url":"https://comicvine.gamespot.com/shadowman-36-cinderella-blues-part-2-flames-of-rag/4000-102530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153543/","id":153543,"name":"Ivar And The Ten Commandments","site_detail_url":"https://comicvine.gamespot.com/timewalker-5-ivar-and-the-ten-commandments/4000-153543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102529/","id":102529,"name":"Cinderella Blues","site_detail_url":"https://comicvine.gamespot.com/shadowman-35-cinderella-blues/4000-102529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153542/","id":153542,"name":"Mac!","site_detail_url":"https://comicvine.gamespot.com/timewalker-4-mac/4000-153542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102528/","id":102528,"name":"Song For The Dead","site_detail_url":"https://comicvine.gamespot.com/shadowman-34-song-for-the-dead/4000-102528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104713/","id":104713,"name":"Mac!","site_detail_url":"https://comicvine.gamespot.com/timewalker-3-mac/4000-104713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102527/","id":102527,"name":"Quest","site_detail_url":"https://comicvine.gamespot.com/shadowman-33-quest/4000-102527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40392/","id":40392,"name":"The Enemy Is There","site_detail_url":"https://comicvine.gamespot.com/timewalker-2-the-enemy-is-there/4000-40392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102526/","id":102526,"name":"In The Belly Of The Beast","site_detail_url":"https://comicvine.gamespot.com/shadowman-32-in-the-belly-of-the-beast/4000-102526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38422/","id":38422,"name":"Ivar The Traveller","site_detail_url":"https://comicvine.gamespot.com/timewalker-1-ivar-the-traveller/4000-38422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102525/","id":102525,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/shadowman-31-hunger/4000-102525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154855/","id":154855,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shadowman-1-tpb/4000-154855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153169/","id":153169,"name":"Invasion","site_detail_url":"https://comicvine.gamespot.com/magnus-trade-paperback-2-invasion/4000-153169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98656/","id":98656,"name":"Wanted:Dead Or Alive!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-22-wanteddead-or-alive/4000-98656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102524/","id":102524,"name":"Aftermath","site_detail_url":"https://comicvine.gamespot.com/shadowman-30-aftermath/4000-102524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153168/","id":153168,"name":"Steel Nation","site_detail_url":"https://comicvine.gamespot.com/magnus-trade-paperback-1-steel-nation/4000-153168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39863/","id":39863,"name":"Omega - From Chaos ... Comes Order / Epilogue","site_detail_url":"https://comicvine.gamespot.com/chaos-effect-2-omega-from-chaos-comes-order-epilog/4000-39863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39862/","id":39862,"name":"The Gathering, Part 2 - Search And Destroy","site_detail_url":"https://comicvine.gamespot.com/armorines-5-the-gathering-part-2-search-and-destro/4000-39862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98655/","id":98655,"name":"The More Things Change ...","site_detail_url":"https://comicvine.gamespot.com/bloodshot-21-the-more-things-change/4000-98655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153561/","id":153561,"name":"Volume IV","site_detail_url":"https://comicvine.gamespot.com/unity-saga-4-volume-iv/4000-153561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39726/","id":39726,"name":"If This Be Madness","site_detail_url":"https://comicvine.gamespot.com/shadowman-29-if-this-be-madness/4000-39726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153258/","id":153258,"name":"The Darque Gods","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-valiant-universe-2-the-darque-gods/4000-153258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102523/","id":102523,"name":"Something Coming","site_detail_url":"https://comicvine.gamespot.com/shadowman-28-something-coming/4000-102523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39715/","id":39715,"name":"Debriefing","site_detail_url":"https://comicvine.gamespot.com/armorines-4-debriefing/4000-39715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153559/","id":153559,"name":"Volume II","site_detail_url":"https://comicvine.gamespot.com/unity-saga-2-volume-ii/4000-153559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102522/","id":102522,"name":"The Morning After","site_detail_url":"https://comicvine.gamespot.com/shadowman-27-the-morning-after/4000-102522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39576/","id":39576,"name":"Fathoms Below, Part 3 - Enemy Action","site_detail_url":"https://comicvine.gamespot.com/armorines-3-fathoms-below-part-3-enemy-action/4000-39576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39431/","id":39431,"name":"Fathoms Below, Part 2 - Frenzy","site_detail_url":"https://comicvine.gamespot.com/armorines-2-fathoms-below-part-2-frenzy/4000-39431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102521/","id":102521,"name":"Glitter Night","site_detail_url":"https://comicvine.gamespot.com/shadowman-26-glitter-night/4000-102521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98652/","id":98652,"name":"Coma","site_detail_url":"https://comicvine.gamespot.com/bloodshot-17-coma/4000-98652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39143/","id":39143,"name":"Fathoms Below, Part 1 - White Death","site_detail_url":"https://comicvine.gamespot.com/armorines-1-fathoms-below-part-1-white-death/4000-39143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102520/","id":102520,"name":"A Nightmare On Bourbon Street","site_detail_url":"https://comicvine.gamespot.com/shadowman-25-a-nightmare-on-bourbon-street/4000-102520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98651/","id":98651,"name":"Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/bloodshot-16-divided-we-fall/4000-98651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38865/","id":38865,"name":"Shadowmen","site_detail_url":"https://comicvine.gamespot.com/shadowman-0-shadowmen/4000-38865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102519/","id":102519,"name":"H.A.T.E.","site_detail_url":"https://comicvine.gamespot.com/shadowman-24-hate/4000-102519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98650/","id":98650,"name":"The Hunter: The Hunted","site_detail_url":"https://comicvine.gamespot.com/bloodshot-15-the-hunter-the-hunted/4000-98650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38718/","id":38718,"name":"Darque Time","site_detail_url":"https://comicvine.gamespot.com/the-second-life-of-doctor-mirage-5-darque-time/4000-38718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102518/","id":102518,"name":"Didn't He Ramble?","site_detail_url":"https://comicvine.gamespot.com/shadowman-23-didnt-he-ramble/4000-102518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98649/","id":98649,"name":"Sins Of The Father","site_detail_url":"https://comicvine.gamespot.com/bloodshot-14-sins-of-the-father/4000-98649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38715/","id":38715,"name":"Access Denied","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-20-access-denied/4000-38715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156177/","id":156177,"name":"Second Death","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-1-second-death/4000-156177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98648/","id":98648,"name":"Who Killed The Weaponeer?","site_detail_url":"https://comicvine.gamespot.com/bloodshot-13-who-killed-the-weaponeer/4000-98648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102517/","id":102517,"name":"Again And Again And Again","site_detail_url":"https://comicvine.gamespot.com/shadowman-22-again-and-again-and-again/4000-102517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38573/","id":38573,"name":"Desert Mirage","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-19-desert-mirage/4000-38573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98647/","id":98647,"name":"Bloodshot's Day Off","site_detail_url":"https://comicvine.gamespot.com/bloodshot-12-bloodshots-day-off/4000-98647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102516/","id":102516,"name":"Time Slidin'","site_detail_url":"https://comicvine.gamespot.com/shadowman-21-time-slidin/4000-102516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38417/","id":38417,"name":"Black Desert Rose","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-18-black-desert-rose/4000-38417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38167/","id":38167,"name":"Empirical Dynasty","site_detail_url":"https://comicvine.gamespot.com/bloodshot-11-empirical-dynasty/4000-38167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102515/","id":102515,"name":"Sins Of The Fathers","site_detail_url":"https://comicvine.gamespot.com/shadowman-20-sins-of-the-fathers/4000-102515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38168/","id":38168,"name":"Blood Money","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-17-blood-money/4000-38168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102514/","id":102514,"name":"Darque Desires","site_detail_url":"https://comicvine.gamespot.com/shadowman-19-darque-desires/4000-102514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38009/","id":38009,"name":"The Rat","site_detail_url":"https://comicvine.gamespot.com/bloodshot-10-the-rat/4000-38009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38017/","id":38017,"name":"Awake In The Dreamtime","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-27-awake-in-the-dreamtime/4000-38017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37864/","id":37864,"name":"A Town Called Malice","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-26-a-town-called-malice/4000-37864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37917/","id":37917,"name":"Yellow","site_detail_url":"https://comicvine.gamespot.com/deathmate-5-yellow/4000-37917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102513/","id":102513,"name":"Exorcism","site_detail_url":"https://comicvine.gamespot.com/shadowman-18-exorcism/4000-102513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37857/","id":37857,"name":"Blood Sacrifice","site_detail_url":"https://comicvine.gamespot.com/bloodshot-9-blood-sacrifice/4000-37857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102512/","id":102512,"name":"Convergence","site_detail_url":"https://comicvine.gamespot.com/shadowman-17-convergence/4000-102512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37713/","id":37713,"name":"Bad Blood","site_detail_url":"https://comicvine.gamespot.com/bloodshot-8-bad-blood/4000-37713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37720/","id":37720,"name":"Solar Eclipse","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-25-solar-eclipse/4000-37720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102511/","id":102511,"name":"A Bite Of The Apple","site_detail_url":"https://comicvine.gamespot.com/shadowman-16-a-bite-of-the-apple/4000-102511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37581/","id":37581,"name":"Half A Man","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-24-half-a-man/4000-37581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37575/","id":37575,"name":"The Unkindest Cut Of All","site_detail_url":"https://comicvine.gamespot.com/bloodshot-7-the-unkindest-cut-of-all/4000-37575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102510/","id":102510,"name":"April Visions","site_detail_url":"https://comicvine.gamespot.com/shadowman-15-april-visions/4000-102510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37439/","id":37439,"name":"Afraid Of The Darque Part Three: Split Decision","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-23-afraid-of-the-darque-part/4000-37439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37291/","id":37291,"name":"Crosses","site_detail_url":"https://comicvine.gamespot.com/shadowman-14-crosses/4000-37291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37433/","id":37433,"name":"Death At 10,000 Feet!","site_detail_url":"https://comicvine.gamespot.com/bloodshot-6-death-at-10000-feet/4000-37433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37292/","id":37292,"name":"Afraid Of The Darque Part Two: Where Do Gods Go To Pray?","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-22-afraid-of-the-darque-part/4000-37292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37284/","id":37284,"name":"Blood On The Sands Of Time","site_detail_url":"https://comicvine.gamespot.com/bloodshot-5-blood-on-the-sands-of-time/4000-37284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37153/","id":37153,"name":"To Die Upon A Kiss","site_detail_url":"https://comicvine.gamespot.com/shadowman-13-to-die-upon-a-kiss/4000-37153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37154/","id":37154,"name":"Afraid Of The Darque Part 1","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-21-afraid-of-the-darque-part/4000-37154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37147/","id":37147,"name":"Blood Of Ages","site_detail_url":"https://comicvine.gamespot.com/bloodshot-4-blood-of-ages/4000-37147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37156/","id":37156,"name":"Part Two: Spoils","site_detail_url":"https://comicvine.gamespot.com/predator-vs-magnus-robot-fighter-2-part-two-spoils/4000-37156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37092/","id":37092,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-127/4000-37092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37023/","id":37023,"name":"Holocaust 4002 Part 3: The Fall Of The Milespires!","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-23-holocaust-4002-part-3-the-/4000-37023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37024/","id":37024,"name":"Dark Rapture","site_detail_url":"https://comicvine.gamespot.com/shadowman-12-dark-rapture/4000-37024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37019/","id":37019,"name":"Crime-Lords Of Flatbush","site_detail_url":"https://comicvine.gamespot.com/bloodshot-3-crime-lords-of-flatbush/4000-37019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36912/","id":36912,"name":"Holocaust 4002 Part 2: The Invasion Of North Am","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-22-holocaust-4002-part-2-the-/4000-36912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36913/","id":36913,"name":"The Day Of Your Death","site_detail_url":"https://comicvine.gamespot.com/shadowman-11-the-day-of-your-death/4000-36913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36909/","id":36909,"name":"An Ax To Grind","site_detail_url":"https://comicvine.gamespot.com/bloodshot-2-an-ax-to-grind/4000-36909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36804/","id":36804,"name":"Armageddon 4002 Part 1: Slaughter On Phobos!","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-21-armageddon-4002-part-1-sla/4000-36804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36805/","id":36805,"name":"Darque","site_detail_url":"https://comicvine.gamespot.com/shadowman-10-darque/4000-36805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36800/","id":36800,"name":"Blood Of The Machine","site_detail_url":"https://comicvine.gamespot.com/bloodshot-1-blood-of-the-machine/4000-36800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36697/","id":36697,"name":"Hit Or Kiss","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-20-hit-or-kiss/4000-36697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36698/","id":36698,"name":"On Death And The Undying","site_detail_url":"https://comicvine.gamespot.com/shadowman-9-on-death-and-the-undying/4000-36698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36457/","id":36457,"name":"Probes","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-19-probes/4000-36457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36458/","id":36458,"name":"Death And Resurrection","site_detail_url":"https://comicvine.gamespot.com/shadowman-8-death-and-resurrection/4000-36458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36454/","id":36454,"name":"The Blood Is The Life","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-5-the-blood-is-the-life/4000-36454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36332/","id":36332,"name":"Inside The Metal Mind","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-18-inside-the-metal-mind/4000-36332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36334/","id":36334,"name":"Run For Your Death","site_detail_url":"https://comicvine.gamespot.com/shadowman-7-run-for-your-death/4000-36334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36331/","id":36331,"name":"Hard Choices","site_detail_url":"https://comicvine.gamespot.com/harbinger-11-hard-choices/4000-36331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36212/","id":36212,"name":"Vengeance For The Dead","site_detail_url":"https://comicvine.gamespot.com/rai-8-vengeance-for-the-dead/4000-36212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36213/","id":36213,"name":"The Family That Slays Together","site_detail_url":"https://comicvine.gamespot.com/shadowman-6-the-family-that-slays-together/4000-36213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36210/","id":36210,"name":"New Beginnings","site_detail_url":"https://comicvine.gamespot.com/harbinger-10-new-beginnings/4000-36210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36209/","id":36209,"name":"Rise Up And Strive Again","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior-3-rise-up-and-strive-again/4000-36209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36214/","id":36214,"name":"Rainbow's End","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-14-rainbows-end/4000-36214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36091/","id":36091,"name":"Unity Chapter 14: No Love Lost","site_detail_url":"https://comicvine.gamespot.com/shadowman-5-unity-chapter-14-no-love-lost/4000-36091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36090/","id":36090,"name":"Unity Chapter 15: Sacrificial Spirit","site_detail_url":"https://comicvine.gamespot.com/rai-7-unity-chapter-15-sacrificial-spirit/4000-36090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36089/","id":36089,"name":"Unity Chapter 12: Out Of Time","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-16-unity-chapter-12-out-of-ti/4000-36089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36092/","id":36092,"name":"Unity Chapter 17: Dreams That You Dare","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-13-unity-chapter-17-dreams-t/4000-36092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36088/","id":36088,"name":"Unity Chapter 16: Children Of Destiny","site_detail_url":"https://comicvine.gamespot.com/harbinger-9-unity-chapter-16-children-of-destiny/4000-36088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35968/","id":35968,"name":"Unity Chapter 6: Sunburn","site_detail_url":"https://comicvine.gamespot.com/shadowman-4-unity-chapter-6-sunburn/4000-35968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35966/","id":35966,"name":"Unity Chapter 4: The Torch Is Passed","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-15-unity-chapter-4-the-torch-/4000-35966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35969/","id":35969,"name":"Unity Chapter 9: ...And Then There Was One","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-12-unity-chapter-9-and-then-/4000-35969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35965/","id":35965,"name":"Unity Chapter 8: Heart Failures","site_detail_url":"https://comicvine.gamespot.com/harbinger-8-unity-chapter-8-heart-failures/4000-35965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35967/","id":35967,"name":"Unity Chapter 7: A World Brought Down","site_detail_url":"https://comicvine.gamespot.com/rai-6-unity-chapter-7-a-world-brought-down/4000-35967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35845/","id":35845,"name":"The Infinity Trip","site_detail_url":"https://comicvine.gamespot.com/rai-5-the-infinity-trip/4000-35845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35846/","id":35846,"name":"The Beasts And The Children","site_detail_url":"https://comicvine.gamespot.com/shadowman-3-the-beasts-and-the-children/4000-35846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35844/","id":35844,"name":"The Asylum Saga Part 2: Reckonings","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-14-the-asylum-saga-part-2-rec/4000-35844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35847/","id":35847,"name":"Justifiable Homicides","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-11-justifiable-homicides/4000-35847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35843/","id":35843,"name":"Flowers For The Living","site_detail_url":"https://comicvine.gamespot.com/harbinger-7-flowers-for-the-living/4000-35843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35727/","id":35727,"name":"An Equality Of Slaughter","site_detail_url":"https://comicvine.gamespot.com/rai-4-an-equality-of-slaughter/4000-35727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35728/","id":35728,"name":"Spirits Within","site_detail_url":"https://comicvine.gamespot.com/shadowman-2-spirits-within/4000-35728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35725/","id":35725,"name":"One For All","site_detail_url":"https://comicvine.gamespot.com/harbinger-6-one-for-all/4000-35725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35729/","id":35729,"name":"The Man Who Killed The World / Alpha And Omega Part 10","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-10-the-man-who-killed-the-wo/4000-35729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35726/","id":35726,"name":"The Asylum Saga Part 1: Revelation","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-13-the-asylum-saga-part-1-rev/4000-35726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35624/","id":35624,"name":"The Devil In The Nerveweb","site_detail_url":"https://comicvine.gamespot.com/rai-3-the-devil-in-the-nerveweb/4000-35624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35625/","id":35625,"name":"Jazz","site_detail_url":"https://comicvine.gamespot.com/shadowman-1-jazz/4000-35625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35623/","id":35623,"name":"Stone And Steel / Trial And Error","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-12-stone-and-steel-trial-and-/4000-35623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35626/","id":35626,"name":"Godchild / Alpha And Omega Part 9","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-9-godchild-alpha-and-omega-p/4000-35626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35622/","id":35622,"name":"All For One...","site_detail_url":"https://comicvine.gamespot.com/harbinger-5-all-for-one/4000-35622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35517/","id":35517,"name":"Ice Burn","site_detail_url":"https://comicvine.gamespot.com/rai-2-ice-burn/4000-35517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35518/","id":35518,"name":"First Strike Part 4:Common Foe / Alpha And Omega Part 8","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-8-first-strike-part-4common-/4000-35518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35516/","id":35516,"name":"The Xyrkol Trilogy Part 3: Sun Of The Devil","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-11-the-xyrkol-trilogy-part-3-/4000-35516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35413/","id":35413,"name":"New Moon Asunder","site_detail_url":"https://comicvine.gamespot.com/rai-1-new-moon-asunder/4000-35413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35412/","id":35412,"name":"The Xyrkol Trilogy Part 2: Freedom's End","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-10-the-xyrkol-trilogy-part-2-/4000-35412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35414/","id":35414,"name":"First Strike Part 2: Massacre / Alpha And Omega Part 7","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-7-first-strike-part-2-massac/4000-35414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127898/","id":127898,"name":"","site_detail_url":"https://comicvine.gamespot.com/wwf-battlemania-5/4000-127898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35311/","id":35311,"name":"First Strike Part 2:Massacre / Alpha And Omega Part 6","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-6-first-strike-part-2massacr/4000-35311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35312/","id":35312,"name":"Retribution Part 1: Into The Fire","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-1-retribution-part-1-into-the-fire/4000-35312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34941/","id":34941,"name":"Second Death Part 4: ...All For One / Alpha And Omega Part 4","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-4-second-death-part-4-all-fo/4000-34941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127897/","id":127897,"name":"","site_detail_url":"https://comicvine.gamespot.com/wwf-battlemania-4/4000-127897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34821/","id":34821,"name":"Second Death Part 3: Reality Check / Alpha And Omega Part 3","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-3-second-death-part-3-realit/4000-34821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34820/","id":34820,"name":"Invasion Part 3: Just Say Noh / Invasion Part 4: Killing Stroke","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-6-invasion-part-3-just-say-no/4000-34820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154511/","id":154511,"name":"Killing Stroke","site_detail_url":"https://comicvine.gamespot.com/rai-flipbook-with-magnus-2-killing-stroke/4000-154511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47596/","id":47596,"name":"Half a Demon...Half a Man / Ghost Rider Unleashed","site_detail_url":"https://comicvine.gamespot.com/the-original-ghost-rider-rides-again-5-half-a-demo/4000-47596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34704/","id":34704,"name":"Second Death Part 2: Out Of My Mind / Alpha And Omega Part 2","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-2-second-death-part-2-out-of/4000-34704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34703/","id":34703,"name":"Invasion Part 1: Goph Rules / Invasion Part 2: Spirit Against The Flesh","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-5-invasion-part-1-goph-rules-/4000-34703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154510/","id":154510,"name":"Spirit against The Flesh","site_detail_url":"https://comicvine.gamespot.com/rai-flipbook-with-magnus-1-spirit-against-the-fles/4000-154510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34583/","id":34583,"name":"Second Death Part 1: No Place Like Home / Alpha And Omega Part 1","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom-1-second-death-part-1-no-pla/4000-34583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34582/","id":34582,"name":"Steel Nation Part 4: Savior","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-4-steel-nation-part-4-savior/4000-34582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34470/","id":34470,"name":"Steel Nation Part 3: Traitor","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-3-steel-nation-part-3-traitor/4000-34470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47593/","id":47593,"name":"Freaks / The Tears of Adam Henderson","site_detail_url":"https://comicvine.gamespot.com/the-original-ghost-rider-rides-again-2-freaks-the-/4000-47593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34349/","id":34349,"name":"Steel Nation Part 2: Soldier","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-2-steel-nation-part-2-soldier/4000-34349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34147/","id":34147,"name":"Steel Nation Part 1: Protector","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter-1-steel-nation-part-1-protect/4000-34147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86086/","id":86086,"name":"Mindstorm; Sheer Heart Attack; Scout's Motto; Ember When; This Is Our Story; Shadow Of A Doubt;","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-4-mindstorm-sheer-heart-attack/4000-86086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186526/","id":186526,"name":"The Burning Tower","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian-231-the-burning-tower/4000-186526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113275/","id":113275,"name":"Black Shadow White Shadow","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-47-black-shadow-white-shado/4000-113275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186523/","id":186523,"name":"In the Land of the Lotus","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian-230-in-the-land-of-the-lotus/4000-186523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57480/","id":57480,"name":"Primal Scream","site_detail_url":"https://comicvine.gamespot.com/the-transformers-61-primal-scream/4000-57480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186460/","id":186460,"name":"The Wheel of Life and Death","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian-223-the-wheel-of-life-and-deat/4000-186460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31655/","id":31655,"name":"Two If By Sea","site_detail_url":"https://comicvine.gamespot.com/iron-man-annual-10-two-if-by-sea/4000-31655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186459/","id":186459,"name":"Mask of Vengeance","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian-222-mask-of-vengeance/4000-186459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31000/","id":31000,"name":"The Sinister Secret of SODAM; Seconds!","site_detail_url":"https://comicvine.gamespot.com/solo-avengers-16-the-sinister-secret-of-sodam-seco/4000-31000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94540/","id":94540,"name":"The Path","site_detail_url":"https://comicvine.gamespot.com/dino-riders-1-the-path/4000-94540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157231/","id":157231,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-age-59/4000-157231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95183/","id":95183,"name":"BOOK XXV:","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108698/","id":108698,"name":"Spider-Man Secrets","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-annual-3-spider-man-secrets/4000-108698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57454/","id":57454,"name":"Child's Play","site_detail_url":"https://comicvine.gamespot.com/the-transformers-35-childs-play/4000-57454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95182/","id":95182,"name":"BOOK XXIV:","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225693/","id":225693,"name":"Child's Play, part 1 / Love and Steel, part 4","site_detail_url":"https://comicvine.gamespot.com/the-transformers-141-childs-play-part-1-love-and-s/4000-225693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276430/","id":276430,"name":"","site_detail_url":"https://comicvine.gamespot.com/comandos-em-acao-2/4000-276430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57450/","id":57450,"name":"Buster Witwicky and the Car Wash Of Doom","site_detail_url":"https://comicvine.gamespot.com/the-transformers-31-buster-witwicky-and-the-car-wa/4000-57450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276429/","id":276429,"name":"Comandos em Ação","site_detail_url":"https://comicvine.gamespot.com/comandos-em-acao-1-comandos-em-acao/4000-276429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57448/","id":57448,"name":"Crater Critters","site_detail_url":"https://comicvine.gamespot.com/the-transformers-29-crater-critters/4000-57448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57447/","id":57447,"name":"Mechanical Difficulties","site_detail_url":"https://comicvine.gamespot.com/the-transformers-28-mechanical-difficulties/4000-57447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57446/","id":57446,"name":"King of the Hill","site_detail_url":"https://comicvine.gamespot.com/the-transformers-27-king-of-the-hill/4000-57446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57445/","id":57445,"name":"Funeral for a Friend","site_detail_url":"https://comicvine.gamespot.com/the-transformers-26-funeral-for-a-friend/4000-57445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57538/","id":57538,"name":"The Final Battle","site_detail_url":"https://comicvine.gamespot.com/transformers-the-movie-3-the-final-battle/4000-57538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57444/","id":57444,"name":"Gone but not Forgotten","site_detail_url":"https://comicvine.gamespot.com/the-transformers-25-gone-but-not-forgotten/4000-57444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57537/","id":57537,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/transformers-the-movie-2-judgment-day/4000-57537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134237/","id":134237,"name":"The Mighty Thor: I, Whom The Gods Would Destroy","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-32-the-mighty-thor-i-whom-the/4000-134237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57443/","id":57443,"name":"Afterdeath","site_detail_url":"https://comicvine.gamespot.com/the-transformers-24-afterdeath/4000-57443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57536/","id":57536,"name":"The Planet-Eater","site_detail_url":"https://comicvine.gamespot.com/transformers-the-movie-1-the-planet-eater/4000-57536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57442/","id":57442,"name":"Decepticon Graffiti","site_detail_url":"https://comicvine.gamespot.com/the-transformers-23-decepticon-graffiti/4000-57442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57441/","id":57441,"name":"Heavy Traffic","site_detail_url":"https://comicvine.gamespot.com/the-transformers-22-heavy-traffic/4000-57441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57440/","id":57440,"name":"Aerialbots Over America","site_detail_url":"https://comicvine.gamespot.com/the-transformers-21-aerialbots-over-america/4000-57440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57438/","id":57438,"name":"Command Performances","site_detail_url":"https://comicvine.gamespot.com/the-transformers-19-command-performances/4000-57438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57437/","id":57437,"name":"Return To Cybertron Part 2: The Bridge To Nowhere","site_detail_url":"https://comicvine.gamespot.com/the-transformers-18-return-to-cybertron-part-2-the/4000-57437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57436/","id":57436,"name":"Return To Cybertron Part 1: The Smelting Pool!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-17-return-to-cybertron-part-1-the/4000-57436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57434/","id":57434,"name":"I, Robot Master!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-15-i-robot-master/4000-57434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171970/","id":171970,"name":"Shooting Star, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-transformers-52-shooting-star-part-2/4000-171970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171969/","id":171969,"name":"Shooting Star, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-51-shooting-star-part-1/4000-171969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57433/","id":57433,"name":"Rock And Roll-Out!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-14-rock-and-roll-out/4000-57433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26501/","id":26501,"name":"The End Of All Songs","site_detail_url":"https://comicvine.gamespot.com/the-defenders-152-the-end-of-all-songs/4000-26501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66623/","id":66623,"name":"Human Torch To Ka-Zar","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-6-hum/4000-66623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57432/","id":57432,"name":"Shooting Star!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-13-shooting-star/4000-57432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26395/","id":26395,"name":"Second Degree Manslaughter","site_detail_url":"https://comicvine.gamespot.com/the-defenders-151-second-degree-manslaughter/4000-26395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26189/","id":26189,"name":"The Stars in Their Courses","site_detail_url":"https://comicvine.gamespot.com/the-defenders-150-the-stars-in-their-courses/4000-26189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26114/","id":26114,"name":"The Bite of the Blood Brothers!","site_detail_url":"https://comicvine.gamespot.com/the-life-of-captain-marvel-4-the-bite-of-the-blood/4000-26114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26082/","id":26082,"name":"Lonely as a Cloud--!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-149-lonely-as-a-cloud-/4000-26082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26024/","id":26024,"name":"The Ultimate Evil","site_detail_url":"https://comicvine.gamespot.com/dr-graves-74-the-ultimate-evil/4000-26024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25875/","id":25875,"name":"...And Games!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-147-and-games/4000-25875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25821/","id":25821,"name":"The Possessor","site_detail_url":"https://comicvine.gamespot.com/dr-graves-73-the-possessor/4000-25821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25681/","id":25681,"name":"Five Women","site_detail_url":"https://comicvine.gamespot.com/the-defenders-145-five-women/4000-25681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25576/","id":25576,"name":"Checkmate","site_detail_url":"https://comicvine.gamespot.com/beauty-and-the-beast-4-checkmate/4000-25576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25581/","id":25581,"name":"Dragon Midnight","site_detail_url":"https://comicvine.gamespot.com/the-defenders-144-dragon-midnight/4000-25581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25484/","id":25484,"name":"Another Runner...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-143-another-runner/4000-25484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25381/","id":25381,"name":"Showtime","site_detail_url":"https://comicvine.gamespot.com/beauty-and-the-beast-3-showtime/4000-25381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25385/","id":25385,"name":"M.O.N.S.T.E.R.!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-142-monster/4000-25385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132148/","id":132148,"name":"All Flesh Is Grass!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-141-all-flesh-is-grass/4000-132148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25252/","id":25252,"name":"Heartbreak Hotel","site_detail_url":"https://comicvine.gamespot.com/beauty-and-the-beast-2-heartbreak-hotel/4000-25252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25256/","id":25256,"name":"The Heartbreak Kid!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-140-the-heartbreak-kid/4000-25256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25161/","id":25161,"name":"Hungry Like the Wolf!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-139-hungry-like-the-wolf/4000-25161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24983/","id":24983,"name":"Beauty and the Beast","site_detail_url":"https://comicvine.gamespot.com/beauty-and-the-beast-1-beauty-and-the-beast/4000-24983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24988/","id":24988,"name":"Three Women","site_detail_url":"https://comicvine.gamespot.com/the-defenders-138-three-women/4000-24988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24892/","id":24892,"name":"And Grimm Shall Be Their Name!","site_detail_url":"https://comicvine.gamespot.com/iron-man-188-and-grimm-shall-be-their-name/4000-24892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24885/","id":24885,"name":"Hearts and Minds!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-137-hearts-and-minds/4000-24885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24783/","id":24783,"name":"Bodies and Souls!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-136-bodies-and-souls/4000-24783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24691/","id":24691,"name":"The Fire at Heaven's Gate!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-135-the-fire-at-heavens-gate/4000-24691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24597/","id":24597,"name":"Manslaughter!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-134-manslaughter/4000-24597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24401/","id":24401,"name":"The Phantom of Gamma-Ray Flate!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-132-the-phantom-of-gamma-ray-flate/4000-24401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24090/","id":24090,"name":"Countdown!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-129-countdown/4000-24090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125775/","id":125775,"name":"Book of the Dead and Inactive I; Air-Walker to Man-Wolf","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-13-bo/4000-125775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68391/","id":68391,"name":"V-Z: Valkyrie to Zzzax","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-12-v-/4000-68391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23622/","id":23622,"name":"Hello, I Must Be Going. (Or... Mad Dogs and Elvishmen!)","site_detail_url":"https://comicvine.gamespot.com/the-defenders-125-hello-i-must-be-going-or-mad-dog/4000-23622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23573/","id":23573,"name":"","site_detail_url":"https://comicvine.gamespot.com/haunted-70/4000-23573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23537/","id":23537,"name":"Darkness On The Edge of Time","site_detail_url":"https://comicvine.gamespot.com/the-defenders-124-darkness-on-the-edge-of-time/4000-23537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23449/","id":23449,"name":"Of Elves and Androids!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-123-of-elves-and-androids/4000-23449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244459/","id":244459,"name":"The Dragon Force; Witch Hunt","site_detail_url":"https://comicvine.gamespot.com/scary-tales-40-the-dragon-force-witch-hunt/4000-244459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23368/","id":23368,"name":"Things To Come","site_detail_url":"https://comicvine.gamespot.com/the-defenders-122-things-to-come/4000-23368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23287/","id":23287,"name":"Savior!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-121-savior/4000-23287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23218/","id":23218,"name":"Blood Of A Goddess!","site_detail_url":"https://comicvine.gamespot.com/thor-332-blood-of-a-goddess/4000-23218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23199/","id":23199,"name":"Sanctuary!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-120-sanctuary/4000-23199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57321/","id":57321,"name":"[Because You Demanded It...The End Of Team America !]","site_detail_url":"https://comicvine.gamespot.com/team-america-12-because-you-demanded-itthe-end-of-/4000-57321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23028/","id":23028,"name":"The Double!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-118-the-double/4000-23028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22945/","id":22945,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/the-defenders-117-the-gift/4000-22945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68383/","id":68383,"name":"C-D: Collector to Dracula","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-3-c-d/4000-68383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22859/","id":22859,"name":"Two By Two","site_detail_url":"https://comicvine.gamespot.com/the-defenders-116-two-by-two/4000-22859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22787/","id":22787,"name":"A Very Wrong Turn!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-115-a-very-wrong-turn/4000-22787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57317/","id":57317,"name":"Trials","site_detail_url":"https://comicvine.gamespot.com/team-america-8-trials/4000-57317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22791/","id":22791,"name":"Half a Demon...Half a Man!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-76-half-a-demonhalf-a-man/4000-22791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22667/","id":22667,"name":"Dance of Darkness/Dance of Light!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-114-dance-of-darknessdance-of-light/4000-22667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21811/","id":21811,"name":"In Honor's Name","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-11-in-honors-name/4000-21811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22588/","id":22588,"name":"Moon Madness!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-113-moon-madness/4000-22588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76159/","id":76159,"name":"\"Tanks\" For the Memories","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-5-tanks-for-the-memori/4000-76159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22515/","id":22515,"name":"Strange Visitor From Another Planet!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-112-strange-visitor-from-another-pla/4000-22515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22441/","id":22441,"name":"Fathers and Daughters","site_detail_url":"https://comicvine.gamespot.com/the-defenders-111-fathers-and-daughters/4000-22441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22371/","id":22371,"name":"...Hunger...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-110-hunger/4000-22371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76156/","id":76156,"name":"Panic At The North Pole!","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-2-panic-at-the-north-p/4000-76156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22375/","id":22375,"name":"The Tears of Adam Henderson","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-71-the-tears-of-adam-henderson/4000-22375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22298/","id":22298,"name":"Vengeance Cries the Valkyrie!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-109-vengeance-cries-the-valkyrie/4000-22298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22249/","id":22249,"name":"What if Dazzler had become the Herald of Galactus?; What if Iron Man was Trapped in the Time of King Arthur?","site_detail_url":"https://comicvine.gamespot.com/what-if-33-what-if-dazzler-had-become-the-herald-o/4000-22249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113713/","id":113713,"name":"Operation: Lady Doomsday; ...Hot Potato!","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-1-operation-lady-dooms/4000-113713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22227/","id":22227,"name":"The Wasteland!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-108-the-wasteland/4000-22227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22158/","id":22158,"name":"On Death and Dying...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-107-on-death-and-dying/4000-22158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114149/","id":114149,"name":"When Titans Chuckle!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-roast-1-when-titans-chuckle/4000-114149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22073/","id":22073,"name":"Born Again (And Again and Again...)","site_detail_url":"https://comicvine.gamespot.com/the-avengers-218-born-again-and-again-and-again/4000-22073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22079/","id":22079,"name":"The War To End All Wars!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-106-the-war-to-end-all-wars/4000-22079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22083/","id":22083,"name":"Holding onto Sally","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-67-holding-onto-sally/4000-22083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22005/","id":22005,"name":"...Rising...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-105-rising/4000-22005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21926/","id":21926,"name":"Yesterday Never Dies!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-104-yesterday-never-dies/4000-21926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21855/","id":21855,"name":"The Haunting of Christianboro!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-103-the-haunting-of-christianboro/4000-21855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21720/","id":21720,"name":"Three Angels Fallen!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-214-three-angels-fallen/4000-21720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21726/","id":21726,"name":"Mind Games!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-102-mind-games/4000-21726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21659/","id":21659,"name":"Renewal!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-101-renewal/4000-21659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21590/","id":21590,"name":"Hell on Earth!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-100-hell-on-earth/4000-21590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21509/","id":21509,"name":"The Final Conflict?","site_detail_url":"https://comicvine.gamespot.com/the-defenders-99-the-final-conflict/4000-21509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21511/","id":21511,"name":"To Slay a Demon!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-60-to-slay-a-demon/4000-21511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21441/","id":21441,"name":"Moon Over Dark Water!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-59-moon-over-dark-water/4000-21441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21437/","id":21437,"name":"The Hand Closes!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-98-the-hand-closes/4000-21437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21373/","id":21373,"name":"Slouching Toward Bethlehem","site_detail_url":"https://comicvine.gamespot.com/the-defenders-97-slouching-toward-bethlehem/4000-21373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21375/","id":21375,"name":"Evil is the Enforcer!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-58-evil-is-the-enforcer/4000-21375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21296/","id":21296,"name":"The Rock and Roll Conspiracy!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-96-the-rock-and-roll-conspiracy/4000-21296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21300/","id":21300,"name":"Where Walks...The Apparition!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-57-where-walksthe-apparition/4000-21300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21245/","id":21245,"name":"Came the Dark Man, Walkin', Walkin'...","site_detail_url":"https://comicvine.gamespot.com/man-thing-10-came-the-dark-man-walkin-walkin/4000-21245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21239/","id":21239,"name":"The Vampire Strikes Back!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-95-the-vampire-strikes-back/4000-21239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21241/","id":21241,"name":"The Menace of Moondark","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-56-the-menace-of-moondark/4000-21241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21172/","id":21172,"name":"Beware-- The Six-Fingered Hand!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-94-beware-the-six-fingered-hand/4000-21172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21176/","id":21176,"name":"Touch of Terror!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-55-touch-of-terror/4000-21176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21107/","id":21107,"name":"The Woman Behind the Man!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-93-the-woman-behind-the-man/4000-21107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163547/","id":163547,"name":"Orb of Evil...Eye of Doom!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-54-orb-of-evileye-of-doom/4000-163547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21032/","id":21032,"name":"Eternity...Humanity...Oblivion!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-92-eternityhumanityoblivion/4000-21032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21035/","id":21035,"name":"The She-Witch of Doom!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-53-the-she-witch-of-doom/4000-21035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20971/","id":20971,"name":"Red Sails, Burning!","site_detail_url":"https://comicvine.gamespot.com/man-thing-8-red-sails-burning/4000-20971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20966/","id":20966,"name":"Defiance","site_detail_url":"https://comicvine.gamespot.com/the-defenders-91-defiance/4000-20966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20968/","id":20968,"name":"The Sirens of Kronos!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-52-the-sirens-of-kronos/4000-20968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20859/","id":20859,"name":"The Diesal of Doom!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-51-the-diesal-of-doom/4000-20859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20855/","id":20855,"name":"Mind Over Mandrill!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-90-mind-over-mandrill/4000-20855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20797/","id":20797,"name":"Whatever Happened to Captain Fate?","site_detail_url":"https://comicvine.gamespot.com/man-thing-7-whatever-happened-to-captain-fate/4000-20797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20794/","id":20794,"name":"Manitou's Anger...Tarantula's Sting!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-50-manitous-angertarantulas-sting/4000-20794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20792/","id":20792,"name":"A Death in the Family!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-89-a-death-in-the-family/4000-20792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20724/","id":20724,"name":"Cap For President!","site_detail_url":"https://comicvine.gamespot.com/captain-america-250-cap-for-president/4000-20724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20729/","id":20729,"name":"The Wrath of the Manitou!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-49-the-wrath-of-the-manitou/4000-20729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20726/","id":20726,"name":"Lord of the Whales","site_detail_url":"https://comicvine.gamespot.com/the-defenders-88-lord-of-the-whales/4000-20726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20667/","id":20667,"name":"Fraternity Rites!","site_detail_url":"https://comicvine.gamespot.com/man-thing-6-fraternity-rites/4000-20667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20662/","id":20662,"name":"Wind of the Undead!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-48-wind-of-the-undead/4000-20662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20659/","id":20659,"name":"Inquest","site_detail_url":"https://comicvine.gamespot.com/the-defenders-87-inquest/4000-20659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20590/","id":20590,"name":"The Demon Within!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-47-the-demon-within/4000-20590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20587/","id":20587,"name":"The Left Hand of Silence!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-86-the-left-hand-of-silence/4000-20587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20530/","id":20530,"name":"Who Knows Fear","site_detail_url":"https://comicvine.gamespot.com/man-thing-5-who-knows-fear/4000-20530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20527/","id":20527,"name":"The End of a Champion!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-46-the-end-of-a-champion/4000-20527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20525/","id":20525,"name":"Like a Proud Black Panther...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-85-like-a-proud-black-panther/4000-20525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20453/","id":20453,"name":"To Banish a Ghost!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-45-to-banish-a-ghost/4000-20453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20449/","id":20449,"name":"Battle Royal!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-84-battle-royal/4000-20449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20389/","id":20389,"name":"Death-Knell","site_detail_url":"https://comicvine.gamespot.com/man-thing-4-death-knell/4000-20389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20384/","id":20384,"name":"End of the Tunnel","site_detail_url":"https://comicvine.gamespot.com/the-defenders-83-end-of-the-tunnel/4000-20384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20391/","id":20391,"name":"Rags To Riches!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-93-rags-to-riches/4000-20391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20304/","id":20304,"name":"The Way of All Flesh!","site_detail_url":"https://comicvine.gamespot.com/captain-america-244-the-way-of-all-flesh/4000-20304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20306/","id":20306,"name":"Wizard-Death!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-82-wizard-death/4000-20306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20241/","id":20241,"name":"The Lonesome Death of Johnny Blaze","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-42-the-lonesome-death-of-johnny-blaze/4000-20241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20235/","id":20235,"name":"The Lazarus Conspiracy!","site_detail_url":"https://comicvine.gamespot.com/captain-america-243-the-lazarus-conspiracy/4000-20235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20165/","id":20165,"name":"The Freight Train to Oblivion!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-41-the-freight-train-to-oblivion/4000-20165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20160/","id":20160,"name":"Facades!","site_detail_url":"https://comicvine.gamespot.com/captain-america-242-facades/4000-20160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494613/","id":494613,"name":"","site_detail_url":"https://comicvine.gamespot.com/edderkoppen-198001/4000-494613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20098/","id":20098,"name":"The Menace of the Nuclear Man","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-40-the-menace-of-the-nuclear-man/4000-20098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19983/","id":19983,"name":"Into The Abyss","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-39-into-the-abyss/4000-19983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19978/","id":19978,"name":"Gang Wars!","site_detail_url":"https://comicvine.gamespot.com/captain-america-240-gang-wars/4000-19978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19915/","id":19915,"name":"Mind-Stains on the Virgin Snow!","site_detail_url":"https://comicvine.gamespot.com/captain-america-239-mind-stains-on-the-virgin-snow/4000-19915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19843/","id":19843,"name":"The Cult Of Doom","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-38-the-cult-of-doom/4000-19843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19838/","id":19838,"name":"Snowfall Fury!","site_detail_url":"https://comicvine.gamespot.com/captain-america-238-snowfall-fury/4000-19838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19775/","id":19775,"name":"From the Ashes...","site_detail_url":"https://comicvine.gamespot.com/captain-america-237-from-the-ashes/4000-19775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19700/","id":19700,"name":"Death Dive!","site_detail_url":"https://comicvine.gamespot.com/captain-america-236-death-dive/4000-19700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19705/","id":19705,"name":"Night Of The Flame Cycles!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-37-night-of-the-flame-cycles/4000-19705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19570/","id":19570,"name":"Burn, Cap, Burn!","site_detail_url":"https://comicvine.gamespot.com/captain-america-234-burn-cap-burn/4000-19570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19575/","id":19575,"name":"A Demon in Denver!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-36-a-demon-in-denver/4000-19575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19500/","id":19500,"name":"Crossfire","site_detail_url":"https://comicvine.gamespot.com/captain-america-233-crossfire/4000-19500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19424/","id":19424,"name":"The Flame and The Fury","site_detail_url":"https://comicvine.gamespot.com/captain-america-232-the-flame-and-the-fury/4000-19424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19361/","id":19361,"name":"Aftermath!","site_detail_url":"https://comicvine.gamespot.com/captain-america-231-aftermath/4000-19361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19302/","id":19302,"name":"Claws!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-78-claws/4000-19302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19291/","id":19291,"name":"The Boy Who Lived Forever","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-34-the-boy-who-lived-forever/4000-19291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19286/","id":19286,"name":"Assault on Alcatraz!","site_detail_url":"https://comicvine.gamespot.com/captain-america-230-assault-on-alcatraz/4000-19286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67523/","id":67523,"name":"Don't Take The A Train","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-38-dont-take-the-a-train/4000-67523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19185/","id":19185,"name":"Traitors All About Me!","site_detail_url":"https://comicvine.gamespot.com/captain-america-229-traitors-all-about-me/4000-19185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19035/","id":19035,"name":"...Whom a Child Would Destroy!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-33-whom-a-child-would-destroy/4000-19035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18961/","id":18961,"name":"Of Ambitions and Giant Amoebas","site_detail_url":"https://comicvine.gamespot.com/the-defenders-65-of-ambitions-and-giant-amoebas/4000-18961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67522/","id":67522,"name":"The Slum Lord; Pumping Vitamins; The Sands of Crime","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-37-the-slum-lord-pumping-vita/4000-67522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18888/","id":18888,"name":"D-Day!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-64-d-day/4000-18888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18891/","id":18891,"name":"The Price!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-32-the-price/4000-18891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18824/","id":18824,"name":"A Fluttering of Wings Most Foul!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-73-a-fluttering-of-wings-most-foul/4000-18824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67520/","id":67520,"name":"Shanna's New York Adventure; The Godmother; The Perfect Plan of Night Flyer","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-35-shannas-new-york-adventure/4000-67520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224725/","id":224725,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-309/4000-224725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18733/","id":18733,"name":"Demon's Rage","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-31-demons-rage/4000-18733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18575/","id":18575,"name":"The Mage and The Monster!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-30-the-mage-and-the-monster/4000-18575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67519/","id":67519,"name":"They came From Outer Space","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-34-they-came-from-outer-space/4000-67519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18410/","id":18410,"name":"Deadly Pawn!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-29-deadly-pawn/4000-18410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67518/","id":67518,"name":"The Hulk's Carnival Crackup; Here Comes The Kangaroo; The Grand Garbage Can","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-33-the-hulks-carnival-crackup/4000-67518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18363/","id":18363,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghostly-haunts-58/4000-18363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-67517/","id":67517,"name":"And Along Came... The Spider-Woman; The Secret Mission; Side-by-Side with Captain Britain!","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories-32-and-along-came-the-spider-/4000-67517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18245/","id":18245,"name":"Evil is the Orb!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-28-evil-is-the-orb/4000-18245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18041/","id":18041,"name":"At The Mercy of The Manticore!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-27-at-the-mercy-of-the-manticore/4000-18041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893008/","id":893008,"name":"Shang-Chi maestro de kung-fu 2","site_detail_url":"https://comicvine.gamespot.com/antologia-del-comic-7-shang-chi-maestro-de-kung-fu/4000-893008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17870/","id":17870,"name":"A Doom Named Dr. Druid!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-26-a-doom-named-dr-druid/4000-17870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17891/","id":17891,"name":"A World For The Winning","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-14-a-world-for-the-winning/4000-17891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17035/","id":17035,"name":"Spawn of the Spider","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-11-spawn-of-the-spid/4000-17035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17687/","id":17687,"name":"The Doomsday Connection!","site_detail_url":"https://comicvine.gamespot.com/iron-man-annual-4-the-doomsday-connection/4000-17687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17703/","id":17703,"name":"When Walks The Warlord!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-13-when-walks-the-warlord/4000-17703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17521/","id":17521,"name":"Death Duel!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-12-death-duel/4000-17521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117413/","id":117413,"name":"The Devil Strikes at My Old Kentucky Home!","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery-252-the-devil-strikes-at-my-old-k/4000-117413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17435/","id":17435,"name":"Sunfire Strikes Again!","site_detail_url":"https://comicvine.gamespot.com/iron-man-98-sunfire-strikes-again/4000-17435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56885/","id":56885,"name":"Death Struggle","site_detail_url":"https://comicvine.gamespot.com/the-witching-hour-71-death-struggle/4000-56885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17367/","id":17367,"name":"My Ally, My Enemy!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-11-my-ally-my-enemy/4000-17367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17351/","id":17351,"name":"Showdown With The Guardsman!","site_detail_url":"https://comicvine.gamespot.com/iron-man-97-showdown-with-the-guardsman/4000-17351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56883/","id":56883,"name":"Five Fatal Fingers","site_detail_url":"https://comicvine.gamespot.com/the-witching-hour-69-five-fatal-fingers/4000-56883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17287/","id":17287,"name":"Terrible Threat of the Tri-Animan","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-43-terrible-threat-of-the-tri-an/4000-17287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17205/","id":17205,"name":"The Sign of the Skull!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-10-the-sign-of-the-skull/4000-17205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17188/","id":17188,"name":"Ultimo!","site_detail_url":"https://comicvine.gamespot.com/iron-man-95-ultimo/4000-17188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17123/","id":17123,"name":"The Marauder and the Man of Iron","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-42-the-marauder-and-the-man-of-i/4000-17123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16957/","id":16957,"name":"Star-Search: Dust and Demons","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-8-star-search-dust-and-demons/4000-16957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52482/","id":52482,"name":"He Haunts The Jungle Night--Moomba!","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-25-he-haunts-the-jungle-night-mo/4000-52482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16894/","id":16894,"name":"\"...and death shall be the change\"","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-41-and-death-shall-be-the-change/4000-16894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16774/","id":16774,"name":"Two Against Death!","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-20-two-against-death/4000-16774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16777/","id":16777,"name":"A Trip to the Doom!","site_detail_url":"https://comicvine.gamespot.com/the-inhumans-7-a-trip-to-the-doom/4000-16777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16705/","id":16705,"name":"Souls in Darkness","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-40-souls-in-darkness/4000-16705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16486/","id":16486,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-174/4000-16486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16606/","id":16606,"name":"The Deadly Gambit of Conquer-Lord","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-29-the-deadly-gambit-of-conquer-l/4000-16606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16527/","id":16527,"name":"Some Are Born to the Night","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-39-some-are-born-to-the-night/4000-16527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16426/","id":16426,"name":"The Crushing Conquer-Lord","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-28-the-crushing-conquer-lord/4000-16426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16359/","id":16359,"name":"Rebirth Also Kills","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-38-rebirth-also-kills/4000-16359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16210/","id":16210,"name":"A White Rose; The Last Monster Hunter!; The Demons; Thief's Gold","site_detail_url":"https://comicvine.gamespot.com/monster-hunters-5-a-white-rose-the-last-monster-hu/4000-16210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16274/","id":16274,"name":"...And Be a Villain!","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-5-and-be-a-villain/4000-16274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16185/","id":16185,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-37-the-end/4000-16185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15888/","id":15888,"name":"Marcosa In Death","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-36-marcosa-in-death/4000-15888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15801/","id":15801,"name":"Evil in Every Stone No Longer Hiding","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-35-evil-in-every-stone-no-longer/4000-15801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15709/","id":15709,"name":"Not All the Shades of Death nor Evil`s Majesty","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-34-not-all-the-shades-of-death-n/4000-15709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15605/","id":15605,"name":"Wolf-Beast vs. Moon Knight","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-33-wolf-beast-vs-moon-knight/4000-15605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15507/","id":15507,"name":"The Stalker called Moon Knight","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-32-the-stalker-called-moon-knigh/4000-15507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15398/","id":15398,"name":"Death in White","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-31-death-in-white/4000-15398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15297/","id":15297,"name":"Red Slash Across Midnight","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-30-red-slash-across-midnight/4000-15297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15201/","id":15201,"name":"A Sister of Hell","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-29-a-sister-of-hell/4000-15201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243311/","id":243311,"name":"","site_detail_url":"https://comicvine.gamespot.com/korg-70000-bc-1/4000-243311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137495/","id":137495,"name":"The Darkness From Glitternight","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-28-the-darkness-from-glitternigh/4000-137495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137496/","id":137496,"name":"The Amazing Doctor Glitternight","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-27-the-amazing-doctor-glitternig/4000-137496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15114/","id":15114,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-36/4000-15114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15082/","id":15082,"name":"A Crusade of Murder","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-26-a-crusade-of-murder/4000-15082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14967/","id":14967,"name":"Castle Curse!","site_detail_url":"https://comicvine.gamespot.com/giant-size-werewolf-3-castle-curse/4000-14967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14993/","id":14993,"name":"An Eclipse of Evil!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-25-an-eclipse-of-evil/4000-14993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158555/","id":158555,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-annual-1/4000-158555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14865/","id":14865,"name":"The Dark Side of Evil!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-24-the-dark-side-of-evil/4000-14865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14852/","id":14852,"name":"Wendigo","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-9-wendigo/4000-14852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14779/","id":14779,"name":"The Murderer is a Maniac!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-23-the-murderer-is-a-maniac/4000-14779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14693/","id":14693,"name":"Face of the Fiend!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-22-face-of-the-fiend/4000-14693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14666/","id":14666,"name":"The Frankenstein Monster Meets Werewolf by Night","site_detail_url":"https://comicvine.gamespot.com/giant-size-werewolf-2-the-frankenstein-monster-mee/4000-14666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14607/","id":14607,"name":"One Wolf`s Cure... Another`s Poison!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-21-one-wolfs-cure-anothers-poiso/4000-14607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14575/","id":14575,"name":"Circle Of Serpent's Blood; Night of the Death-Dream!","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-4-circle-of-serpents-b/4000-14575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14514/","id":14514,"name":"Eye of the Wolf!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-20-eye-of-the-wolf/4000-14514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14441/","id":14441,"name":"Vampires on the Moon!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-19-vampires-on-the-moon/4000-14441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128479/","id":128479,"name":"Tigra, The Were-Woman","site_detail_url":"https://comicvine.gamespot.com/giant-size-creatures-1-tigra-the-were-woman/4000-128479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14385/","id":14385,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-28/4000-14385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14359/","id":14359,"name":"Murder by Moonlight!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-18-murder-by-moonlight/4000-14359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14285/","id":14285,"name":"The Behemoth!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-17-the-behemoth/4000-14285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14236/","id":14236,"name":"The Freaky Phantom of Watkins Glen","site_detail_url":"https://comicvine.gamespot.com/ghosts-26-the-freaky-phantom-of-watkins-glen/4000-14236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14096/","id":14096,"name":"","site_detail_url":"https://comicvine.gamespot.com/ghosts-24/4000-14096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14045/","id":14045,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-155/4000-14045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14068/","id":14068,"name":"Frankenstein 1973--Chapter Two!","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-4-frankenstein-1973-chapter-two/4000-14068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56774/","id":56774,"name":"","site_detail_url":"https://comicvine.gamespot.com/secrets-of-sinister-house-16/4000-56774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13982/","id":13982,"name":"I Wait in the Dungeon!","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-8-i-wait-in-the-dungeon/4000-13982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13967/","id":13967,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unexpected-154/4000-13967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13898/","id":13898,"name":"Cry Werewolf!","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-12-cry-werewolf/4000-13898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13805/","id":13805,"name":"If An Eye Offend Thee...","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-15-if-an-eye-offend-thee/4000-13805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13789/","id":13789,"name":"Menace From The Moons Of Saturn!","site_detail_url":"https://comicvine.gamespot.com/daredevil-105-menace-from-the-moons-of-saturn/4000-13789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13715/","id":13715,"name":"Rise, Thou Killer Whale!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-66-rise-thou-killer-whale/4000-13715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13599/","id":13599,"name":"The Cry of She-Beast","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-65-the-cry-of-she-beast/4000-13599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13487/","id":13487,"name":"Wolf at Bay","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-12-wolf-at-bay/4000-13487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13494/","id":13494,"name":"Voyage Into Chaos!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-64-voyage-into-chaos/4000-13494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13403/","id":13403,"name":"The Thunder God Breaks Free!","site_detail_url":"https://comicvine.gamespot.com/thor-213-the-thunder-god-breaks-free/4000-13403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241232/","id":241232,"name":"The Delivery Man; Sanctuary!; First Command!","site_detail_url":"https://comicvine.gamespot.com/attack-12-the-delivery-man-sanctuary-first-command/4000-241232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13296/","id":13296,"name":"Journey to the Golden Star","site_detail_url":"https://comicvine.gamespot.com/thor-212-journey-to-the-golden-star/4000-13296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13194/","id":13194,"name":"The End of the Battle!","site_detail_url":"https://comicvine.gamespot.com/thor-211-the-end-of-the-battle/4000-13194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13127/","id":13127,"name":"The Hammer and the Hellfire!","site_detail_url":"https://comicvine.gamespot.com/thor-210-the-hammer-and-the-hellfire/4000-13127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12655/","id":12655,"name":"The Lurker in the Labyrnth!","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-5-the-lurker-in-the-labyrnth/4000-12655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146092/","id":146092,"name":"Black Cowboys","site_detail_url":"https://comicvine.gamespot.com/golden-legacy-12-black-cowboys/4000-146092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241225/","id":241225,"name":"The Last Salvo!; Second Effort; A Marine Is Only A Man!; ...Toughen 'Em Up!","site_detail_url":"https://comicvine.gamespot.com/attack-5-the-last-salvo-second-effort-a-marine-is-/4000-241225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10539/","id":10539,"name":"","site_detail_url":"https://comicvine.gamespot.com/jungle-jim-27/4000-10539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10479/","id":10479,"name":"The Hanged Man","site_detail_url":"https://comicvine.gamespot.com/many-ghosts-of-dr-graves-16-the-hanged-man/4000-10479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10426/","id":10426,"name":"","site_detail_url":"https://comicvine.gamespot.com/jungle-jim-26/4000-10426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10062/","id":10062,"name":"","site_detail_url":"https://comicvine.gamespot.com/many-ghosts-of-dr-graves-12/4000-10062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164510/","id":164510,"name":"Konga's Revenge","site_detail_url":"https://comicvine.gamespot.com/kongas-revenge-2-kongas-revenge/4000-164510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138918/","id":138918,"name":"Robur The Conqueror","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated-162-robur-the-conqueror/4000-138918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196090/","id":196090,"name":"The Three Dead Flies!","site_detail_url":"https://comicvine.gamespot.com/world-of-fantasy-14-the-three-dead-flies/4000-196090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110581/","id":110581,"name":"","site_detail_url":"https://comicvine.gamespot.com/strange-tales-63/4000-110581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3791/","id":3791,"name":"Origin Of The Two-Gun Kid!","site_detail_url":"https://comicvine.gamespot.com/two-gun-kid-41-origin-of-the-two-gun-kid/4000-3791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116427/","id":116427,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-63/4000-116427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1405/","id":1405,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-35/4000-1405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108945/","id":108945,"name":"","site_detail_url":"https://comicvine.gamespot.com/strange-tales-28/4000-108945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643/","id":643,"name":"The Hidden Vampires","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery-11-the-hidden-vampires/4000-643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-645/","id":645,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-117/4000-645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91108/","id":91108,"name":"Willie's Pin-Ups","site_detail_url":"https://comicvine.gamespot.com/war-action-14-willies-pin-ups/4000-91108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90477/","id":90477,"name":"","site_detail_url":"https://comicvine.gamespot.com/adventures-into-terror-13/4000-90477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31/","id":31,"name":"A Sight For Sore Eyes","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-109-a-sight-for-sore-eyes/4000-31/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111884/","id":111884,"name":"","site_detail_url":"https://comicvine.gamespot.com/witches-tales-11/4000-111884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110652/","id":110652,"name":"Pit of the Damned!","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-magazine-7-pit-of-the-damned/4000-110652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162230/","id":162230,"name":"A Captain Hawkin's Story Mission To Malooka!","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures-5-a-captain-hawkin-s-story-miss/4000-162230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-328069/","id":328069,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-hulk-team-up-440/4000-328069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146089/","id":146089,"name":"","site_detail_url":"https://comicvine.gamespot.com/golden-legacy-9/4000-146089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552470/","id":552470,"name":"My Ghost Writer the Vampire","site_detail_url":"https://comicvine.gamespot.com/haunted-tales-42-my-ghost-writer-the-vampire/4000-552470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551909/","id":551909,"name":"Every Silver Lining's Got a Cloud","site_detail_url":"https://comicvine.gamespot.com/haunted-tales-37-every-silver-linings-got-a-cloud/4000-551909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245852/","id":245852,"name":"","site_detail_url":"https://comicvine.gamespot.com/war-heroes-11/4000-245852/"}],"name":"Don Perlin","site_detail_url":"https://comicvine.gamespot.com/don-perlin/4040-1539/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-54617/","id":54617,"name":"Gifted","site_detail_url":"https://comicvine.gamespot.com/gifted/4045-54617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42106/","id":42106,"name":"No Man's Land","site_detail_url":"https://comicvine.gamespot.com/no-mans-land/4045-42106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40782/","id":40782,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour/4045-40782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55673/","id":55673,"name":"Manifest Destiny","site_detail_url":"https://comicvine.gamespot.com/manifest-destiny/4045-55673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56316/","id":56316,"name":"Homelands","site_detail_url":"https://comicvine.gamespot.com/homelands/4045-56316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56322/","id":56322,"name":"The Good Prince","site_detail_url":"https://comicvine.gamespot.com/the-good-prince/4045-56322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56492/","id":56492,"name":"Shadows of The Empire","site_detail_url":"https://comicvine.gamespot.com/shadows-of-the-empire/4045-56492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56280/","id":56280,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/flashpoint/4045-56280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56503/","id":56503,"name":"DC Retroactive","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive/4045-56503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56506/","id":56506,"name":"Hate Crimes","site_detail_url":"https://comicvine.gamespot.com/hate-crimes/4045-56506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56510/","id":56510,"name":"Stars","site_detail_url":"https://comicvine.gamespot.com/stars/4045-56510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56518/","id":56518,"name":"Batman KnightsEnd Aftermath","site_detail_url":"https://comicvine.gamespot.com/batman-knightsend-aftermath/4045-56518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56288/","id":56288,"name":"Fear Itself","site_detail_url":"https://comicvine.gamespot.com/fear-itself/4045-56288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55707/","id":55707,"name":"Dark Reign","site_detail_url":"https://comicvine.gamespot.com/dark-reign/4045-55707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56545/","id":56545,"name":"Serpent Crown Saga","site_detail_url":"https://comicvine.gamespot.com/serpent-crown-saga/4045-56545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56552/","id":56552,"name":"The Man Without Mercy","site_detail_url":"https://comicvine.gamespot.com/the-man-without-mercy/4045-56552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56560/","id":56560,"name":"Citizen Kang","site_detail_url":"https://comicvine.gamespot.com/citizen-kang/4045-56560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56564/","id":56564,"name":"Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/winter-soldier/4045-56564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56571/","id":56571,"name":"The Bottom","site_detail_url":"https://comicvine.gamespot.com/the-bottom/4045-56571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56573/","id":56573,"name":"The Death of Marc Spector","site_detail_url":"https://comicvine.gamespot.com/the-death-of-marc-spector/4045-56573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56588/","id":56588,"name":"Spider-Man No More!","site_detail_url":"https://comicvine.gamespot.com/spider-man-no-more/4045-56588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56602/","id":56602,"name":"The Dream Eater Saga","site_detail_url":"https://comicvine.gamespot.com/the-dream-eater-saga/4045-56602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56635/","id":56635,"name":"Assassination Game","site_detail_url":"https://comicvine.gamespot.com/assassination-game/4045-56635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56652/","id":56652,"name":"Heroes Return","site_detail_url":"https://comicvine.gamespot.com/heroes-return/4045-56652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56655/","id":56655,"name":"One Nation Under Doom","site_detail_url":"https://comicvine.gamespot.com/one-nation-under-doom/4045-56655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56660/","id":56660,"name":"The Arachnis Project.","site_detail_url":"https://comicvine.gamespot.com/the-arachnis-project/4045-56660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56680/","id":56680,"name":"The Tornado's Path","site_detail_url":"https://comicvine.gamespot.com/the-tornados-path/4045-56680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56692/","id":56692,"name":"Knuckles Quest","site_detail_url":"https://comicvine.gamespot.com/knuckles-quest/4045-56692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56701/","id":56701,"name":"A Wake","site_detail_url":"https://comicvine.gamespot.com/a-wake/4045-56701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56722/","id":56722,"name":"Hoka Hey","site_detail_url":"https://comicvine.gamespot.com/hoka-hey/4045-56722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56732/","id":56732,"name":"Judgement Day","site_detail_url":"https://comicvine.gamespot.com/judgement-day/4045-56732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56733/","id":56733,"name":"Wilderlands","site_detail_url":"https://comicvine.gamespot.com/wilderlands/4045-56733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56743/","id":56743,"name":"Countdown Cycle","site_detail_url":"https://comicvine.gamespot.com/countdown-cycle/4045-56743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55776/","id":55776,"name":"Panther's Rage","site_detail_url":"https://comicvine.gamespot.com/panthers-rage/4045-55776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-54577/","id":54577,"name":"Torn","site_detail_url":"https://comicvine.gamespot.com/torn/4045-54577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56761/","id":56761,"name":"End Game","site_detail_url":"https://comicvine.gamespot.com/end-game/4045-56761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56784/","id":56784,"name":"Ghost War","site_detail_url":"https://comicvine.gamespot.com/ghost-war/4045-56784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56801/","id":56801,"name":"Wild Kingdom","site_detail_url":"https://comicvine.gamespot.com/wild-kingdom/4045-56801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40664/","id":40664,"name":"Gang War","site_detail_url":"https://comicvine.gamespot.com/gang-war/4045-40664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56752/","id":56752,"name":"Top Cow Rebirth","site_detail_url":"https://comicvine.gamespot.com/top-cow-rebirth/4045-56752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56868/","id":56868,"name":"The Pitt","site_detail_url":"https://comicvine.gamespot.com/the-pitt/4045-56868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56897/","id":56897,"name":"Heroic Tendencies","site_detail_url":"https://comicvine.gamespot.com/heroic-tendencies/4045-56897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41408/","id":41408,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/inferno/4045-41408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56944/","id":56944,"name":"The Dogs of War","site_detail_url":"https://comicvine.gamespot.com/the-dogs-of-war/4045-56944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56947/","id":56947,"name":"Eternals Saga","site_detail_url":"https://comicvine.gamespot.com/eternals-saga/4045-56947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56955/","id":56955,"name":"The Summoning","site_detail_url":"https://comicvine.gamespot.com/the-summoning/4045-56955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56973/","id":56973,"name":"Thanos War","site_detail_url":"https://comicvine.gamespot.com/thanos-war/4045-56973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56112/","id":56112,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/justice/4045-56112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56645/","id":56645,"name":"Siege of Camelot","site_detail_url":"https://comicvine.gamespot.com/siege-of-camelot/4045-56645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56286/","id":56286,"name":"Batman Incorporated","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated/4045-56286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56853/","id":56853,"name":"Death of the Family","site_detail_url":"https://comicvine.gamespot.com/death-of-the-family/4045-56853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57028/","id":57028,"name":"Super/Bat","site_detail_url":"https://comicvine.gamespot.com/superbat/4045-57028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56953/","id":56953,"name":"The Black Diamond Probability","site_detail_url":"https://comicvine.gamespot.com/the-black-diamond-probability/4045-56953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55920/","id":55920,"name":"Galactic Civil War","site_detail_url":"https://comicvine.gamespot.com/galactic-civil-war/4045-55920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57037/","id":57037,"name":"Trial of the Watcher","site_detail_url":"https://comicvine.gamespot.com/trial-of-the-watcher/4045-57037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56185/","id":56185,"name":"Return to Weapon X","site_detail_url":"https://comicvine.gamespot.com/return-to-weapon-x/4045-56185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56251/","id":56251,"name":"Arrancar Saga","site_detail_url":"https://comicvine.gamespot.com/arrancar-saga/4045-56251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57053/","id":57053,"name":"Target Snake Eyes","site_detail_url":"https://comicvine.gamespot.com/target-snake-eyes/4045-57053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57063/","id":57063,"name":"United","site_detail_url":"https://comicvine.gamespot.com/united/4045-57063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57064/","id":57064,"name":"The Hypothetical Woman","site_detail_url":"https://comicvine.gamespot.com/the-hypothetical-woman/4045-57064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56582/","id":56582,"name":"Heart of Stone","site_detail_url":"https://comicvine.gamespot.com/heart-of-stone/4045-56582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56795/","id":56795,"name":"Before Watchmen","site_detail_url":"https://comicvine.gamespot.com/before-watchmen/4045-56795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57029/","id":57029,"name":"Executive Extinction","site_detail_url":"https://comicvine.gamespot.com/executive-extinction/4045-57029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57092/","id":57092,"name":"Changes","site_detail_url":"https://comicvine.gamespot.com/changes/4045-57092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57078/","id":57078,"name":"X-Termination","site_detail_url":"https://comicvine.gamespot.com/x-termination/4045-57078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55685/","id":55685,"name":"New Ways to Die","site_detail_url":"https://comicvine.gamespot.com/new-ways-to-die/4045-55685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57130/","id":57130,"name":"Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agent-of-s-h-i-e-l-d/4045-57130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57141/","id":57141,"name":"Hellfire and Brimstone","site_detail_url":"https://comicvine.gamespot.com/hellfire-and-brimstone/4045-57141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57142/","id":57142,"name":"World Tour","site_detail_url":"https://comicvine.gamespot.com/world-tour/4045-57142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57153/","id":57153,"name":"Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/divided-we-fall/4045-57153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57154/","id":57154,"name":"Reconstruction","site_detail_url":"https://comicvine.gamespot.com/reconstruction/4045-57154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57031/","id":57031,"name":"Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron/4045-57031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57174/","id":57174,"name":"A Child is Born","site_detail_url":"https://comicvine.gamespot.com/a-child-is-born/4045-57174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55663/","id":55663,"name":"Marvel Apes","site_detail_url":"https://comicvine.gamespot.com/marvel-apes/4045-55663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57126/","id":57126,"name":"The Apocalypse Twins","site_detail_url":"https://comicvine.gamespot.com/the-apocalypse-twins/4045-57126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57186/","id":57186,"name":"The Final Chapter","site_detail_url":"https://comicvine.gamespot.com/the-final-chapter/4045-57186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57187/","id":57187,"name":"Good Omens","site_detail_url":"https://comicvine.gamespot.com/good-omens/4045-57187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57209/","id":57209,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/legacy/4045-57209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57210/","id":57210,"name":"With an Iron Fist","site_detail_url":"https://comicvine.gamespot.com/with-an-iron-fist/4045-57210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57211/","id":57211,"name":"Hard Choices","site_detail_url":"https://comicvine.gamespot.com/hard-choices/4045-57211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57215/","id":57215,"name":"Thy Kingdom Come","site_detail_url":"https://comicvine.gamespot.com/thy-kingdom-come/4045-57215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57227/","id":57227,"name":"Killing Machine","site_detail_url":"https://comicvine.gamespot.com/killing-machine/4045-57227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57228/","id":57228,"name":"Crisis of Conscience","site_detail_url":"https://comicvine.gamespot.com/crisis-of-conscience/4045-57228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57229/","id":57229,"name":"Unlimited","site_detail_url":"https://comicvine.gamespot.com/unlimited/4045-57229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57239/","id":57239,"name":"New Maps of Hell","site_detail_url":"https://comicvine.gamespot.com/new-maps-of-hell/4045-57239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57240/","id":57240,"name":"I Can't Believe It's Not The Justice League","site_detail_url":"https://comicvine.gamespot.com/i-cant-believe-its-not-the-justice-league/4045-57240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57249/","id":57249,"name":"Fish-Man Island Arc","site_detail_url":"https://comicvine.gamespot.com/fish-man-island-arc/4045-57249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57260/","id":57260,"name":"Obsidian Age","site_detail_url":"https://comicvine.gamespot.com/obsidian-age/4045-57260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57116/","id":57116,"name":"Shazam","site_detail_url":"https://comicvine.gamespot.com/shazam/4045-57116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57269/","id":57269,"name":"The Deadpool Killogy","site_detail_url":"https://comicvine.gamespot.com/the-deadpool-killogy/4045-57269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57275/","id":57275,"name":"Eighty Eyes On An Evil Island","site_detail_url":"https://comicvine.gamespot.com/eighty-eyes-on-an-evil-island/4045-57275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57289/","id":57289,"name":"The End of the Justice League","site_detail_url":"https://comicvine.gamespot.com/the-end-of-the-justice-league/4045-57289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57294/","id":57294,"name":"Dark Seeker Saga","site_detail_url":"https://comicvine.gamespot.com/dark-seeker-saga/4045-57294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57298/","id":57298,"name":"Land of Waves Arc","site_detail_url":"https://comicvine.gamespot.com/land-of-waves-arc/4045-57298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57299/","id":57299,"name":"Chūnin Exam Arc","site_detail_url":"https://comicvine.gamespot.com/chunin-exam-arc/4045-57299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57304/","id":57304,"name":"Sasuke and Sai Arc","site_detail_url":"https://comicvine.gamespot.com/sasuke-and-sai-arc/4045-57304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57303/","id":57303,"name":"Kazekage Rescue Arc","site_detail_url":"https://comicvine.gamespot.com/kazekage-rescue-arc/4045-57303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57139/","id":57139,"name":"Unleashed","site_detail_url":"https://comicvine.gamespot.com/unleashed/4045-57139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56950/","id":56950,"name":"The Clone Wars","site_detail_url":"https://comicvine.gamespot.com/the-clone-wars/4045-56950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55888/","id":55888,"name":"Generations Saga","site_detail_url":"https://comicvine.gamespot.com/generations-saga/4045-55888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56988/","id":56988,"name":"Harbinger Wars","site_detail_url":"https://comicvine.gamespot.com/harbinger-wars/4045-56988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57313/","id":57313,"name":"Battle of the Atom","site_detail_url":"https://comicvine.gamespot.com/battle-of-the-atom/4045-57313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57359/","id":57359,"name":"War in the Sun","site_detail_url":"https://comicvine.gamespot.com/war-in-the-sun/4045-57359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57393/","id":57393,"name":"Dirge","site_detail_url":"https://comicvine.gamespot.com/dirge/4045-57393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57398/","id":57398,"name":"The Underground","site_detail_url":"https://comicvine.gamespot.com/the-underground/4045-57398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57167/","id":57167,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4045-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57433/","id":57433,"name":"Mania","site_detail_url":"https://comicvine.gamespot.com/mania/4045-57433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57432/","id":57432,"name":"Spider-Man No More","site_detail_url":"https://comicvine.gamespot.com/spider-man-no-more/4045-57432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57453/","id":57453,"name":"Dark Cybertron Prelude","site_detail_url":"https://comicvine.gamespot.com/dark-cybertron-prelude/4045-57453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57470/","id":57470,"name":"The Doctor and the Nurse","site_detail_url":"https://comicvine.gamespot.com/the-doctor-and-the-nurse/4045-57470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57487/","id":57487,"name":"Crown of Worms","site_detail_url":"https://comicvine.gamespot.com/crown-of-worms/4045-57487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57504/","id":57504,"name":"The Crimson Well","site_detail_url":"https://comicvine.gamespot.com/the-crimson-well/4045-57504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57505/","id":57505,"name":"Crush Depth","site_detail_url":"https://comicvine.gamespot.com/crush-depth/4045-57505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57521/","id":57521,"name":"In The Dark","site_detail_url":"https://comicvine.gamespot.com/in-the-dark/4045-57521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57540/","id":57540,"name":"A Kin of Homecoming","site_detail_url":"https://comicvine.gamespot.com/a-kin-of-homecoming/4045-57540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57558/","id":57558,"name":"The City","site_detail_url":"https://comicvine.gamespot.com/the-city/4045-57558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57582/","id":57582,"name":"Candy With Strangers","site_detail_url":"https://comicvine.gamespot.com/candy-with-strangers/4045-57582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57616/","id":57616,"name":"The Dark Spiral","site_detail_url":"https://comicvine.gamespot.com/the-dark-spiral/4045-57616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57617/","id":57617,"name":"What Happens... Stays!","site_detail_url":"https://comicvine.gamespot.com/what-happens-stays/4045-57617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57636/","id":57636,"name":"The Return of the Green Knight","site_detail_url":"https://comicvine.gamespot.com/the-return-of-the-green-knight/4045-57636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57658/","id":57658,"name":"System Override","site_detail_url":"https://comicvine.gamespot.com/system-override/4045-57658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57680/","id":57680,"name":"Manhunt","site_detail_url":"https://comicvine.gamespot.com/manhunt/4045-57680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57710/","id":57710,"name":"Family","site_detail_url":"https://comicvine.gamespot.com/family/4045-57710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57715/","id":57715,"name":"The Return of Scarface","site_detail_url":"https://comicvine.gamespot.com/the-return-of-scarface/4045-57715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57732/","id":57732,"name":"Keystone Kops","site_detail_url":"https://comicvine.gamespot.com/keystone-kops/4045-57732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57752/","id":57752,"name":"World Without Heroes","site_detail_url":"https://comicvine.gamespot.com/world-without-heroes/4045-57752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57764/","id":57764,"name":"Private Data","site_detail_url":"https://comicvine.gamespot.com/private-data/4045-57764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57783/","id":57783,"name":"Kozaki","site_detail_url":"https://comicvine.gamespot.com/kozaki/4045-57783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57796/","id":57796,"name":"A Town Called Penance","site_detail_url":"https://comicvine.gamespot.com/a-town-called-penance/4045-57796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57801/","id":57801,"name":"A Savage Land","site_detail_url":"https://comicvine.gamespot.com/a-savage-land/4045-57801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57905/","id":57905,"name":"Wonderland (Zenescope)","site_detail_url":"https://comicvine.gamespot.com/wonderland-zenescope/4045-57905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57800/","id":57800,"name":"Original Sin","site_detail_url":"https://comicvine.gamespot.com/original-sin/4045-57800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58000/","id":58000,"name":"Mark of the Phantasm","site_detail_url":"https://comicvine.gamespot.com/mark-of-the-phantasm/4045-58000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58023/","id":58023,"name":"Armor Hunters","site_detail_url":"https://comicvine.gamespot.com/armor-hunters/4045-58023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57976/","id":57976,"name":"The Tomorrow Soldier","site_detail_url":"https://comicvine.gamespot.com/the-tomorrow-soldier/4045-57976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57844/","id":57844,"name":"Reflections","site_detail_url":"https://comicvine.gamespot.com/reflections/4045-57844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58040/","id":58040,"name":"The Broken Equation","site_detail_url":"https://comicvine.gamespot.com/the-broken-equation/4045-58040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57993/","id":57993,"name":"The Man Within","site_detail_url":"https://comicvine.gamespot.com/the-man-within/4045-57993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58117/","id":58117,"name":"Fresh Blood","site_detail_url":"https://comicvine.gamespot.com/fresh-blood/4045-58117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58140/","id":58140,"name":"Conspiracy","site_detail_url":"https://comicvine.gamespot.com/conspiracy/4045-58140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58001/","id":58001,"name":"Ghost Snow","site_detail_url":"https://comicvine.gamespot.com/ghost-snow/4045-58001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58174/","id":58174,"name":"The Man Who Quit Being Human","site_detail_url":"https://comicvine.gamespot.com/the-man-who-quit-being-human/4045-58174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58175/","id":58175,"name":"The Secret History of Superman & Batman","site_detail_url":"https://comicvine.gamespot.com/the-secret-history-of-superman-batman/4045-58175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58113/","id":58113,"name":"Axis","site_detail_url":"https://comicvine.gamespot.com/axis/4045-58113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58072/","id":58072,"name":"Spider-Verse","site_detail_url":"https://comicvine.gamespot.com/spider-verse/4045-58072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58217/","id":58217,"name":"Rebirth","site_detail_url":"https://comicvine.gamespot.com/rebirth/4045-58217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58248/","id":58248,"name":"The Return of Kaine","site_detail_url":"https://comicvine.gamespot.com/the-return-of-kaine/4045-58248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58300/","id":58300,"name":"The 7 Seconds Before You Die","site_detail_url":"https://comicvine.gamespot.com/the-7-seconds-before-you-die/4045-58300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58310/","id":58310,"name":"Crisis In Kahndaq","site_detail_url":"https://comicvine.gamespot.com/crisis-in-kahndaq/4045-58310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58317/","id":58317,"name":"Children of Paradox","site_detail_url":"https://comicvine.gamespot.com/children-of-paradox/4045-58317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58108/","id":58108,"name":"Kingdom","site_detail_url":"https://comicvine.gamespot.com/kingdom/4045-58108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58299/","id":58299,"name":"Great Power","site_detail_url":"https://comicvine.gamespot.com/great-power/4045-58299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58399/","id":58399,"name":"Undressed to Kill","site_detail_url":"https://comicvine.gamespot.com/undressed-to-kill/4045-58399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59259/","id":59259,"name":"Death and Birth","site_detail_url":"https://comicvine.gamespot.com/death-and-birth/4045-59259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59301/","id":59301,"name":"Cat Kings and Other Garys","site_detail_url":"https://comicvine.gamespot.com/cat-kings-and-other-garys/4045-59301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60029/","id":60029,"name":"Invisible Mafia","site_detail_url":"https://comicvine.gamespot.com/invisible-mafia/4045-60029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60063/","id":60063,"name":"Faster Than Thought","site_detail_url":"https://comicvine.gamespot.com/faster-than-thought/4045-60063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59963/","id":59963,"name":"Infinity Wars","site_detail_url":"https://comicvine.gamespot.com/infinity-wars/4045-59963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59960/","id":59960,"name":"Copycats","site_detail_url":"https://comicvine.gamespot.com/copycats/4045-59960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60048/","id":60048,"name":"Deface the Face","site_detail_url":"https://comicvine.gamespot.com/deface-the-face/4045-60048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60120/","id":60120,"name":"Worst Among Equals","site_detail_url":"https://comicvine.gamespot.com/worst-among-equals/4045-60120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60078/","id":60078,"name":"Typhoid Fever","site_detail_url":"https://comicvine.gamespot.com/typhoid-fever/4045-60078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60158/","id":60158,"name":"Action Alley","site_detail_url":"https://comicvine.gamespot.com/action-alley/4045-60158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60159/","id":60159,"name":"Hero","site_detail_url":"https://comicvine.gamespot.com/hero/4045-60159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59672/","id":59672,"name":"What's In Mad Mike's Ring?","site_detail_url":"https://comicvine.gamespot.com/whats-in-mad-mikes-ring/4045-59672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60267/","id":60267,"name":"The Best Radioactive Man Event Ever","site_detail_url":"https://comicvine.gamespot.com/the-best-radioactive-man-event-ever/4045-60267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60268/","id":60268,"name":"Future History","site_detail_url":"https://comicvine.gamespot.com/future-history/4045-60268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60196/","id":60196,"name":"Hunted","site_detail_url":"https://comicvine.gamespot.com/hunted/4045-60196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60216/","id":60216,"name":"The War of the Realms","site_detail_url":"https://comicvine.gamespot.com/the-war-of-the-realms/4045-60216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60278/","id":60278,"name":"Year of the Villain","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain/4045-60278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60298/","id":60298,"name":"Year of the Villain: The Offer","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-the-offer/4045-60298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60297/","id":60297,"name":"Sex Clubs and Rock and Roll","site_detail_url":"https://comicvine.gamespot.com/sex-clubs-and-rock-and-roll/4045-60297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60247/","id":60247,"name":"The Ruby Egress","site_detail_url":"https://comicvine.gamespot.com/the-ruby-egress/4045-60247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60323/","id":60323,"name":"Crisis City","site_detail_url":"https://comicvine.gamespot.com/crisis-city/4045-60323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60215/","id":60215,"name":"Herald Supreme","site_detail_url":"https://comicvine.gamespot.com/herald-supreme/4045-60215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60324/","id":60324,"name":"Faithless","site_detail_url":"https://comicvine.gamespot.com/faithless/4045-60324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60331/","id":60331,"name":"Year of the Villain: Dark Gifts","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-dark-gifts/4045-60331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60313/","id":60313,"name":"Amnesty","site_detail_url":"https://comicvine.gamespot.com/amnesty/4045-60313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60314/","id":60314,"name":"City of Bane","site_detail_url":"https://comicvine.gamespot.com/city-of-bane/4045-60314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60354/","id":60354,"name":"Year of the Villain: Evil Unleashed","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-evil-unleashed/4045-60354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60334/","id":60334,"name":"Hermosa Heat","site_detail_url":"https://comicvine.gamespot.com/hermosa-heat/4045-60334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60353/","id":60353,"name":"DCeased","site_detail_url":"https://comicvine.gamespot.com/dceased/4045-60353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60378/","id":60378,"name":"Year of the Villain: Doom Rising","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-doom-rising/4045-60378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60277/","id":60277,"name":"Deathstroke R.I.P.","site_detail_url":"https://comicvine.gamespot.com/deathstroke-rip/4045-60277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60347/","id":60347,"name":"Generation Outlaw","site_detail_url":"https://comicvine.gamespot.com/generation-outlaw/4045-60347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60374/","id":60374,"name":"If Me Could Turn Back Time","site_detail_url":"https://comicvine.gamespot.com/if-me-could-turn-back-time/4045-60374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60343/","id":60343,"name":"Snake Hunt","site_detail_url":"https://comicvine.gamespot.com/snake-hunt/4045-60343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60407/","id":60407,"name":"Oz","site_detail_url":"https://comicvine.gamespot.com/oz/4045-60407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60419/","id":60419,"name":"The Life and Times of Scrooge McDuck","site_detail_url":"https://comicvine.gamespot.com/the-life-and-times-of-scrooge-mcduck/4045-60419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60423/","id":60423,"name":"Outlaw","site_detail_url":"https://comicvine.gamespot.com/outlaw/4045-60423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60404/","id":60404,"name":"Year of the Villain: Hostile Takeover","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-hostile-takeover/4045-60404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60408/","id":60408,"name":"Rogues' Reign","site_detail_url":"https://comicvine.gamespot.com/rogues-reign/4045-60408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60346/","id":60346,"name":"The Witching War","site_detail_url":"https://comicvine.gamespot.com/the-witching-war/4045-60346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60463/","id":60463,"name":"Elvis the Killer Car","site_detail_url":"https://comicvine.gamespot.com/elvis-the-killer-car/4045-60463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60477/","id":60477,"name":"Fiends of the Western Front","site_detail_url":"https://comicvine.gamespot.com/fiends-of-the-western-front/4045-60477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60479/","id":60479,"name":"Machine Law","site_detail_url":"https://comicvine.gamespot.com/machine-law/4045-60479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60480/","id":60480,"name":"Keeper of Secrets","site_detail_url":"https://comicvine.gamespot.com/keeper-of-secrets/4045-60480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60500/","id":60500,"name":"Home Front","site_detail_url":"https://comicvine.gamespot.com/home-front/4045-60500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60294/","id":60294,"name":"Necessary Evil","site_detail_url":"https://comicvine.gamespot.com/necessary-evil/4045-60294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60529/","id":60529,"name":"Prophecy of Death","site_detail_url":"https://comicvine.gamespot.com/prophecy-of-death/4045-60529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60455/","id":60455,"name":"Iron Man 2020","site_detail_url":"https://comicvine.gamespot.com/iron-man-2020/4045-60455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60531/","id":60531,"name":"All Die Young","site_detail_url":"https://comicvine.gamespot.com/all-die-young/4045-60531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60506/","id":60506,"name":"Into the Crucible","site_detail_url":"https://comicvine.gamespot.com/into-the-crucible/4045-60506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60549/","id":60549,"name":"Hate Box","site_detail_url":"https://comicvine.gamespot.com/hate-box/4045-60549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60550/","id":60550,"name":"The Divisor","site_detail_url":"https://comicvine.gamespot.com/the-divisor/4045-60550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60585/","id":60585,"name":"Suffer the Children","site_detail_url":"https://comicvine.gamespot.com/suffer-the-children/4045-60585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60495/","id":60495,"name":"Dark Heart of the Sith","site_detail_url":"https://comicvine.gamespot.com/dark-heart-of-the-sith/4045-60495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60609/","id":60609,"name":"Until the End","site_detail_url":"https://comicvine.gamespot.com/until-the-end/4045-60609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60389/","id":60389,"name":"B-Rank Battles Arc","site_detail_url":"https://comicvine.gamespot.com/b-rank-battles-arc/4045-60389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60630/","id":60630,"name":"A Princess of Earth","site_detail_url":"https://comicvine.gamespot.com/a-princess-of-earth/4045-60630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60662/","id":60662,"name":"The Obstacle Course","site_detail_url":"https://comicvine.gamespot.com/the-obstacle-course/4045-60662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60684/","id":60684,"name":"Fallen Order","site_detail_url":"https://comicvine.gamespot.com/fallen-order/4045-60684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60669/","id":60669,"name":"Into the Fire","site_detail_url":"https://comicvine.gamespot.com/into-the-fire/4045-60669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60690/","id":60690,"name":"King In Black","site_detail_url":"https://comicvine.gamespot.com/king-in-black/4045-60690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60742/","id":60742,"name":"Ultimate Fangirl","site_detail_url":"https://comicvine.gamespot.com/ultimate-fangirl/4045-60742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60743/","id":60743,"name":"The Golden Age","site_detail_url":"https://comicvine.gamespot.com/the-golden-age/4045-60743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60765/","id":60765,"name":"Prisms","site_detail_url":"https://comicvine.gamespot.com/prisms/4045-60765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60710/","id":60710,"name":"Interstellar","site_detail_url":"https://comicvine.gamespot.com/interstellar/4045-60710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60822/","id":60822,"name":"Urabutosatsujin Arc","site_detail_url":"https://comicvine.gamespot.com/urabutosatsujin-arc/4045-60822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60864/","id":60864,"name":"Bride of Wax","site_detail_url":"https://comicvine.gamespot.com/bride-of-wax/4045-60864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60921/","id":60921,"name":"Natagumo Mountain Arc","site_detail_url":"https://comicvine.gamespot.com/natagumo-mountain-arc/4045-60921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60936/","id":60936,"name":"Snowblind","site_detail_url":"https://comicvine.gamespot.com/snowblind/4045-60936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60945/","id":60945,"name":"The Monster Society of Evil","site_detail_url":"https://comicvine.gamespot.com/the-monster-society-of-evil/4045-60945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60914/","id":60914,"name":"Crimson Reign","site_detail_url":"https://comicvine.gamespot.com/crimson-reign/4045-60914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60954/","id":60954,"name":"Exodus","site_detail_url":"https://comicvine.gamespot.com/exodus/4045-60954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60983/","id":60983,"name":"Reign of X","site_detail_url":"https://comicvine.gamespot.com/reign-of-x/4045-60983/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1283/","id":1283,"name":"Marvel Tales","site_detail_url":"https://comicvine.gamespot.com/marvel-tales/4050-1283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1497/","id":1497,"name":"Journey into Mystery","site_detail_url":"https://comicvine.gamespot.com/journey-into-mystery/4050-1497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1422/","id":1422,"name":"Astonishing","site_detail_url":"https://comicvine.gamespot.com/astonishing/4050-1422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1583/","id":1583,"name":"Two-Gun Kid","site_detail_url":"https://comicvine.gamespot.com/two-gun-kid/4050-1583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2334/","id":2334,"name":"Many Ghosts of Dr. Graves","site_detail_url":"https://comicvine.gamespot.com/many-ghosts-of-dr-graves/4050-2334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2431/","id":2431,"name":"Jungle Jim","site_detail_url":"https://comicvine.gamespot.com/jungle-jim/4050-2431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2575/","id":2575,"name":"Marvel Premiere","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere/4050-2575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2294/","id":2294,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4050-2294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2576/","id":2576,"name":"Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up/4050-2576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2413/","id":2413,"name":"Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/sub-mariner/4050-2413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2190/","id":2190,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4050-2190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2584/","id":2584,"name":"Werewolf by Night","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night/4050-2584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2397/","id":2397,"name":"The Unexpected","site_detail_url":"https://comicvine.gamespot.com/the-unexpected/4050-2397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2566/","id":2566,"name":"Chamber of Chills","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills/4050-2566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2641/","id":2641,"name":"Monsters Unleashed!","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed/4050-2641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2503/","id":2503,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/ghosts/4050-2503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2675/","id":2675,"name":"The Deadly Hands of Kung Fu","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu/4050-2675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2689/","id":2689,"name":"Giant-Size Werewolf","site_detail_url":"https://comicvine.gamespot.com/giant-size-werewolf/4050-2689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2720/","id":2720,"name":"Monster Hunters","site_detail_url":"https://comicvine.gamespot.com/monster-hunters/4050-2720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2782/","id":2782,"name":"Super-Villain Team-Up","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up/4050-2782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2516/","id":2516,"name":"Marvel Spotlight","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight/4050-2516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2636/","id":2636,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4050-2636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2764/","id":2764,"name":"The Inhumans","site_detail_url":"https://comicvine.gamespot.com/the-inhumans/4050-2764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2189/","id":2189,"name":"The Amazing Spider-Man Annual","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual/4050-2189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2407/","id":2407,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-2407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2905/","id":2905,"name":"Iron Man Annual","site_detail_url":"https://comicvine.gamespot.com/iron-man-annual/4050-2905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2497/","id":2497,"name":"Ghostly Haunts","site_detail_url":"https://comicvine.gamespot.com/ghostly-haunts/4050-2497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2569/","id":2569,"name":"The Defenders","site_detail_url":"https://comicvine.gamespot.com/the-defenders/4050-2569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2400/","id":2400,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-2400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3006/","id":3006,"name":"Man-Thing","site_detail_url":"https://comicvine.gamespot.com/man-thing/4050-3006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2128/","id":2128,"name":"The Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers/4050-2128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2350/","id":2350,"name":"The Avengers Annual","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual/4050-2350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2918/","id":2918,"name":"What If?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-2918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2498/","id":2498,"name":"Haunted","site_detail_url":"https://comicvine.gamespot.com/haunted/4050-2498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3333/","id":3333,"name":"Beauty and the Beast","site_detail_url":"https://comicvine.gamespot.com/beauty-and-the-beast/4050-3333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3433/","id":3433,"name":"Dr. Graves","site_detail_url":"https://comicvine.gamespot.com/dr-graves/4050-3433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3488/","id":3488,"name":"The Life Of Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/the-life-of-captain-marvel/4050-3488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3859/","id":3859,"name":"Solo Avengers","site_detail_url":"https://comicvine.gamespot.com/solo-avengers/4050-3859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4606/","id":4606,"name":"Magnus Robot Fighter","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter/4050-4606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4607/","id":4607,"name":"Solar, Man of the Atom","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom/4050-4607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4831/","id":4831,"name":"X-O Manowar","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar/4050-4831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4828/","id":4828,"name":"Rai","site_detail_url":"https://comicvine.gamespot.com/rai/4050-4828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4827/","id":4827,"name":"Harbinger","site_detail_url":"https://comicvine.gamespot.com/harbinger/4050-4827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4829/","id":4829,"name":"Shadowman","site_detail_url":"https://comicvine.gamespot.com/shadowman/4050-4829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4825/","id":4825,"name":"Eternal Warrior","site_detail_url":"https://comicvine.gamespot.com/eternal-warrior/4050-4825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5067/","id":5067,"name":"Bloodshot","site_detail_url":"https://comicvine.gamespot.com/bloodshot/4050-5067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4058/","id":4058,"name":"Marvel Comics Presents","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5191/","id":5191,"name":"Predator vs. Magnus Robot Fighter","site_detail_url":"https://comicvine.gamespot.com/predator-vs-magnus-robot-fighter/4050-5191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5165/","id":5165,"name":"Deathmate","site_detail_url":"https://comicvine.gamespot.com/deathmate/4050-5165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5354/","id":5354,"name":"Timewalker","site_detail_url":"https://comicvine.gamespot.com/timewalker/4050-5354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5070/","id":5070,"name":"The Second Life of Doctor Mirage","site_detail_url":"https://comicvine.gamespot.com/the-second-life-of-doctor-mirage/4050-5070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5340/","id":5340,"name":"Armorines","site_detail_url":"https://comicvine.gamespot.com/armorines/4050-5340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5343/","id":5343,"name":"Chaos Effect","site_detail_url":"https://comicvine.gamespot.com/chaos-effect/4050-5343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6028/","id":6028,"name":"Doctor Tomorrow","site_detail_url":"https://comicvine.gamespot.com/doctor-tomorrow/4050-6028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6670/","id":6670,"name":"The Original Ghost Rider Rides Again","site_detail_url":"https://comicvine.gamespot.com/the-original-ghost-rider-rides-again/4050-6670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2554/","id":2554,"name":"Secrets of Sinister House","site_detail_url":"https://comicvine.gamespot.com/secrets-of-sinister-house/4050-2554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2439/","id":2439,"name":"The Witching Hour","site_detail_url":"https://comicvine.gamespot.com/the-witching-hour/4050-2439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3152/","id":3152,"name":"Team America","site_detail_url":"https://comicvine.gamespot.com/team-america/4050-3152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3370/","id":3370,"name":"The Transformers","site_detail_url":"https://comicvine.gamespot.com/the-transformers/4050-3370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3655/","id":3655,"name":"Transformers: The Movie","site_detail_url":"https://comicvine.gamespot.com/transformers-the-movie/4050-3655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3497/","id":3497,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2702/","id":2702,"name":"Spidey Super Stories","site_detail_url":"https://comicvine.gamespot.com/spidey-super-stories/4050-2702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3237/","id":3237,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3138/","id":3138,"name":"G.I. Joe: A Real American Hero","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero/4050-3138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4404/","id":4404,"name":"Marvel Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes/4050-4404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1419/","id":1419,"name":"Adventures into Terror","site_detail_url":"https://comicvine.gamespot.com/adventures-into-terror/4050-1419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1504/","id":1504,"name":"War Action","site_detail_url":"https://comicvine.gamespot.com/war-action/4050-1504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4223/","id":4223,"name":"Dino Riders","site_detail_url":"https://comicvine.gamespot.com/dino-riders/4050-4223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3490/","id":3490,"name":"The Marvel Saga The Official History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4050-3490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65741/","id":65741,"name":"Official Handbook of the Marvel Universe: Horror 2005","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-horror-20/4050-65741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18126/","id":18126,"name":"All-New Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4050-18126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18477/","id":18477,"name":"Spider-Man: Back in Black Handbook","site_detail_url":"https://comicvine.gamespot.com/spider-man-back-in-black-handbook/4050-18477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18397/","id":18397,"name":"Marvel Legacy","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy/4050-18397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3520/","id":3520,"name":"Web of Spider-Man Annual","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-annual/4050-3520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18066/","id":18066,"name":"Strange Tales","site_detail_url":"https://comicvine.gamespot.com/strange-tales/4050-18066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18680/","id":18680,"name":"Mystic Arcana: The Book of Marvel Magic","site_detail_url":"https://comicvine.gamespot.com/mystic-arcana-the-book-of-marvel-magic/4050-18680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1487/","id":1487,"name":"Chamber of Chills Magazine","site_detail_url":"https://comicvine.gamespot.com/chamber-of-chills-magazine/4050-1487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1418/","id":1418,"name":"Witches Tales","site_detail_url":"https://comicvine.gamespot.com/witches-tales/4050-1418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19100/","id":19100,"name":"Fantastic Four Roast","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-roast/4050-19100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19223/","id":19223,"name":"Marvel Zombies: The Book of Angels, Demons & Various Monstrosities","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-the-book-of-angels-demons-various-m/4050-19223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19439/","id":19439,"name":"House of Mystery","site_detail_url":"https://comicvine.gamespot.com/house-of-mystery/4050-19439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18731/","id":18731,"name":"Scooby-Doo!","site_detail_url":"https://comicvine.gamespot.com/scooby-doo/4050-18731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21250/","id":21250,"name":"WWF Battlemania","site_detail_url":"https://comicvine.gamespot.com/wwf-battlemania/4050-21250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21300/","id":21300,"name":"Giant Size Creatures","site_detail_url":"https://comicvine.gamespot.com/giant-size-creatures/4050-21300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18105/","id":18105,"name":"Moon Knight","site_detail_url":"https://comicvine.gamespot.com/moon-knight/4050-18105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3144/","id":3144,"name":"Marvel Graphic Novel","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel/4050-3144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-914/","id":914,"name":"Classics Illustrated","site_detail_url":"https://comicvine.gamespot.com/classics-illustrated/4050-914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22981/","id":22981,"name":"Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23185/","id":23185,"name":"X-O Manowar: Birth","site_detail_url":"https://comicvine.gamespot.com/x-o-manowar-birth/4050-23185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23228/","id":23228,"name":"Essential Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/essential-doctor-strange/4050-23228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23387/","id":23387,"name":"The Champions Classic","site_detail_url":"https://comicvine.gamespot.com/the-champions-classic/4050-23387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24767/","id":24767,"name":"Golden Legacy","site_detail_url":"https://comicvine.gamespot.com/golden-legacy/4050-24767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24895/","id":24895,"name":"Harbinger","site_detail_url":"https://comicvine.gamespot.com/harbinger/4050-24895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25167/","id":25167,"name":"Bad Eggs","site_detail_url":"https://comicvine.gamespot.com/bad-eggs/4050-25167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25168/","id":25168,"name":"Bad Eggs: That Dirty Yellow Mustard","site_detail_url":"https://comicvine.gamespot.com/bad-eggs-that-dirty-yellow-mustard/4050-25168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25430/","id":25430,"name":"The Hulk 100 Project","site_detail_url":"https://comicvine.gamespot.com/the-hulk-100-project/4050-25430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22389/","id":22389,"name":"Marvel Milestones","site_detail_url":"https://comicvine.gamespot.com/marvel-milestones/4050-22389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25921/","id":25921,"name":"Magnus Trade Paperback","site_detail_url":"https://comicvine.gamespot.com/magnus-trade-paperback/4050-25921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25934/","id":25934,"name":"Secrets of the Valiant Universe","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-valiant-universe/4050-25934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25969/","id":25969,"name":"Essential Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/essential-ghost-rider/4050-25969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25980/","id":25980,"name":"Unity Saga","site_detail_url":"https://comicvine.gamespot.com/unity-saga/4050-25980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26081/","id":26081,"name":"RAI (flipbook with Magnus)","site_detail_url":"https://comicvine.gamespot.com/rai-flipbook-with-magnus/4050-26081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26123/","id":26123,"name":"Shadowman","site_detail_url":"https://comicvine.gamespot.com/shadowman/4050-26123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26175/","id":26175,"name":"Essential Moon Knight","site_detail_url":"https://comicvine.gamespot.com/essential-moon-knight/4050-26175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26302/","id":26302,"name":"Solar Man Of The Atom","site_detail_url":"https://comicvine.gamespot.com/solar-man-of-the-atom/4050-26302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19176/","id":19176,"name":"Marvel Age","site_detail_url":"https://comicvine.gamespot.com/marvel-age/4050-19176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25855/","id":25855,"name":"Essential Dazzler","site_detail_url":"https://comicvine.gamespot.com/essential-dazzler/4050-25855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26516/","id":26516,"name":"Monsters Unleashed Annual","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-annual/4050-26516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19374/","id":19374,"name":"Amazing Adventures","site_detail_url":"https://comicvine.gamespot.com/amazing-adventures/4050-19374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27103/","id":27103,"name":"Konga's Revenge","site_detail_url":"https://comicvine.gamespot.com/kongas-revenge/4050-27103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26067/","id":26067,"name":"The Life and Times of Savior 28","site_detail_url":"https://comicvine.gamespot.com/the-life-and-times-of-savior-28/4050-26067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20559/","id":20559,"name":"The Transformers","site_detail_url":"https://comicvine.gamespot.com/the-transformers/4050-20559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28238/","id":28238,"name":"Ghost Rider Team-Up","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-team-up/4050-28238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29953/","id":29953,"name":"Essential Werewolf by Night","site_detail_url":"https://comicvine.gamespot.com/essential-werewolf-by-night/4050-29953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2471/","id":2471,"name":"Conan the Barbarian","site_detail_url":"https://comicvine.gamespot.com/conan-the-barbarian/4050-2471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30674/","id":30674,"name":"Giant-Size Marvel","site_detail_url":"https://comicvine.gamespot.com/giant-size-marvel/4050-30674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28489/","id":28489,"name":"What If? Classic","site_detail_url":"https://comicvine.gamespot.com/what-if-classic/4050-28489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1798/","id":1798,"name":"World of Fantasy","site_detail_url":"https://comicvine.gamespot.com/world-of-fantasy/4050-1798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31857/","id":31857,"name":"Official Handbook of the Marvel Universe A to Z Update","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-up/4050-31857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23940/","id":23940,"name":"Essential Daredevil","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil/4050-23940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25670/","id":25670,"name":"Essential Defenders","site_detail_url":"https://comicvine.gamespot.com/essential-defenders/4050-25670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23683/","id":23683,"name":"Transformers: Generations","site_detail_url":"https://comicvine.gamespot.com/transformers-generations/4050-23683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33678/","id":33678,"name":"Scooby-Doo! Presented by Burger King","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-presented-by-burger-king/4050-33678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33875/","id":33875,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-33875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34836/","id":34836,"name":"Marvel Masterworks: Inhumans","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-inhumans/4050-34836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34890/","id":34890,"name":"Pet Avengers Classic","site_detail_url":"https://comicvine.gamespot.com/pet-avengers-classic/4050-34890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36528/","id":36528,"name":"Attack","site_detail_url":"https://comicvine.gamespot.com/attack/4050-36528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36623/","id":36623,"name":"Korg: 70,000 B.C.","site_detail_url":"https://comicvine.gamespot.com/korg-70000-bc/4050-36623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2721/","id":2721,"name":"Scary Tales","site_detail_url":"https://comicvine.gamespot.com/scary-tales/4050-2721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36833/","id":36833,"name":"War Heroes","site_detail_url":"https://comicvine.gamespot.com/war-heroes/4050-36833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37848/","id":37848,"name":"Classic G.I. Joe","site_detail_url":"https://comicvine.gamespot.com/classic-gi-joe/4050-37848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40987/","id":40987,"name":"Comandos em Ação","site_detail_url":"https://comicvine.gamespot.com/comandos-em-acao/4050-40987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41578/","id":41578,"name":"The New Avengers 100 Project","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-100-project/4050-41578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41948/","id":41948,"name":"Biblioteca Marvel: Caballero Luna","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-caballero-luna/4050-41948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41949/","id":41949,"name":"Biblioteca Marvel: Dr. Extraño","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-dr-extrano/4050-41949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35462/","id":35462,"name":"Scooby-Doo, Where Are You?","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you/4050-35462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43280/","id":43280,"name":"Spiderman: Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up/4050-43280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44245/","id":44245,"name":"Fallen Angel: A Magic the Gathering Legend","site_detail_url":"https://comicvine.gamespot.com/fallen-angel-a-magic-the-gathering-legend/4050-44245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44345/","id":44345,"name":"Justice League of America 100 Project","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-100-project/4050-44345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45160/","id":45160,"name":"Classic Transformers","site_detail_url":"https://comicvine.gamespot.com/classic-transformers/4050-45160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45290/","id":45290,"name":"Defenders: Tournament of Heroes","site_detail_url":"https://comicvine.gamespot.com/defenders-tournament-of-heroes/4050-45290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47673/","id":47673,"name":"Spider-Man and Hulk Team-Up","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-hulk-team-up/4050-47673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49893/","id":49893,"name":"Marvel Masterworks: Atlas Era Journey into Mystery","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-atlas-era-journey-into-mystery/4050-49893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49975/","id":49975,"name":"Archie: 50 Times An American Icon","site_detail_url":"https://comicvine.gamespot.com/archie-50-times-an-american-icon/4050-49975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50943/","id":50943,"name":"Essential Monster of Frankenstein","site_detail_url":"https://comicvine.gamespot.com/essential-monster-of-frankenstein/4050-50943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51321/","id":51321,"name":"Avengers: The Trial of Yellowjacket","site_detail_url":"https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket/4050-51321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7385/","id":7385,"name":"Fantomen","site_detail_url":"https://comicvine.gamespot.com/fantomen/4050-7385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53363/","id":53363,"name":"Valiant Masters Bloodshot: Blood of the Machine","site_detail_url":"https://comicvine.gamespot.com/valiant-masters-bloodshot-blood-of-the-machine/4050-53363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53534/","id":53534,"name":"The Transformers Classics","site_detail_url":"https://comicvine.gamespot.com/the-transformers-classics/4050-53534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54328/","id":54328,"name":"The Fantastic Four 100 Project","site_detail_url":"https://comicvine.gamespot.com/the-fantastic-four-100-project/4050-54328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55197/","id":55197,"name":"Transformers: The Complete All Hail Megatron","site_detail_url":"https://comicvine.gamespot.com/transformers-the-complete-all-hail-megatron/4050-55197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55910/","id":55910,"name":"Showcase Presents Weird War Tales","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-weird-war-tales/4050-55910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60154/","id":60154,"name":"G.I. Joe: Best of Cobra Commander","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-best-of-cobra-commander/4050-60154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61809/","id":61809,"name":"G.I. Joe: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/g-i-joe-the-complete-collection/4050-61809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61835/","id":61835,"name":"The Phantom The Complete Series: The Charlton Years","site_detail_url":"https://comicvine.gamespot.com/the-phantom-the-complete-series-the-charlton-years/4050-61835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66367/","id":66367,"name":"The Transformers 30th Anniversary Collection","site_detail_url":"https://comicvine.gamespot.com/the-transformers-30th-anniversary-collection/4050-66367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67625/","id":67625,"name":"Man-Thing Omnibus","site_detail_url":"https://comicvine.gamespot.com/manthing-omnibus/4050-67625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67707/","id":67707,"name":"The Walking Dead 100 Project","site_detail_url":"https://comicvine.gamespot.com/the-walking-dead-100-project/4050-67707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68032/","id":68032,"name":"The Transformers: Covers Collection","site_detail_url":"https://comicvine.gamespot.com/the-transformers-covers-collection/4050-68032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70060/","id":70060,"name":"Valiant Masters Rai: From Honor to Strength","site_detail_url":"https://comicvine.gamespot.com/valiant-masters-rai-from-honor-to-strength/4050-70060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72279/","id":72279,"name":"Hundred Penny Press: G.I. Joe: A Real American Hero #1","site_detail_url":"https://comicvine.gamespot.com/hundred-penny-press-gi-joe-a-real-american-hero-1/4050-72279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74114/","id":74114,"name":"Valiant Masters H.A.R.D. Corps: Search and Destroy","site_detail_url":"https://comicvine.gamespot.com/valiant-masters-h-a-r-d-corps-search-and-destroy/4050-74114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77333/","id":77333,"name":"Moon Knight Epic Collection: Bad Moon Rising","site_detail_url":"https://comicvine.gamespot.com/moon-knight-epic-collection-bad-moon-rising/4050-77333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50367/","id":50367,"name":"Bloodshot","site_detail_url":"https://comicvine.gamespot.com/bloodshot/4050-50367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73906/","id":73906,"name":"Weird Love","site_detail_url":"https://comicvine.gamespot.com/weird-love/4050-73906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83191/","id":83191,"name":"Edderkoppen","site_detail_url":"https://comicvine.gamespot.com/edderkoppen/4050-83191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84984/","id":84984,"name":"The Monster of Frankenstein","site_detail_url":"https://comicvine.gamespot.com/the-monster-of-frankenstein/4050-84984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85148/","id":85148,"name":"Werewolf By Night Omnibus","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-omnibus/4050-85148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85553/","id":85553,"name":"Avengers: Ultron Forever","site_detail_url":"https://comicvine.gamespot.com/avengers-ultron-forever/4050-85553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88397/","id":88397,"name":"Marvel Masterworks: The Champions","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-champions/4050-88397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89265/","id":89265,"name":"Iron Man Epic Collection: Duel of Iron","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-duel-of-iron/4050-89265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52840/","id":52840,"name":"Haunted Horror","site_detail_url":"https://comicvine.gamespot.com/haunted-horror/4050-52840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75881/","id":75881,"name":"The Transformers vs. G.I. Joe","site_detail_url":"https://comicvine.gamespot.com/the-transformers-vs-g-i-joe/4050-75881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92574/","id":92574,"name":"Roy Thomas Presents... Captain Science","site_detail_url":"https://comicvine.gamespot.com/roy-thomas-presents-captain-science/4050-92574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93423/","id":93423,"name":"Defenders Epic Collection: The Six-Fingered Hand Saga","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-the-sixfingered-hand-sag/4050-93423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74479/","id":74479,"name":"Haunted Tales","site_detail_url":"https://comicvine.gamespot.com/haunted-tales/4050-74479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95587/","id":95587,"name":"The Deadly Hands of Kung Fu Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-omnibus/4050-95587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96670/","id":96670,"name":"Pre-Code Classics: Weird Terror","site_detail_url":"https://comicvine.gamespot.com/precode-classics-weird-terror/4050-96670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102925/","id":102925,"name":"Pre-Code Classics Strange Terrors","site_detail_url":"https://comicvine.gamespot.com/precode-classics-strange-terrors/4050-102925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103309/","id":103309,"name":"Coleccionable Marvel Héroes","site_detail_url":"https://comicvine.gamespot.com/coleccionable-marvel-heroes/4050-103309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103812/","id":103812,"name":"Defenders Epic Collection: Ashes, Ashes...","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-ashes-ashes/4050-103812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104835/","id":104835,"name":"Werewolf By Night: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection/4050-104835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106633/","id":106633,"name":"Classic Monsters of Pre-Code Horror Comics: Mummies","site_detail_url":"https://comicvine.gamespot.com/classic-monsters-of-precode-horror-comics-mummies/4050-106633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108536/","id":108536,"name":"Ninjak: The Complete Classic Omnibus","site_detail_url":"https://comicvine.gamespot.com/ninjak-the-complete-classic-omnibus/4050-108536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111572/","id":111572,"name":"Pre-Code Classics: Weird Horrors","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-weird-horrors/4050-111572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111662/","id":111662,"name":"Champions Classic: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/champions-classic-the-complete-collection/4050-111662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112669/","id":112669,"name":"G.I. Joe: A Real American Hero Omnibus","site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero-omnibus/4050-112669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112801/","id":112801,"name":"Defenders Epic Collection: The New Defenders","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-the-new-defenders/4050-112801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114044/","id":114044,"name":"Avengers/Doctor Strange: Rise of the Darkhold","site_detail_url":"https://comicvine.gamespot.com/avengersdoctor-strange-rise-of-the-darkhold/4050-114044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114079/","id":114079,"name":"Pre-Code Classics: Mister Mystery","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-mister-mystery/4050-114079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35196/","id":35196,"name":"Marvel Masterworks: The Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man/4050-35196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117342/","id":117342,"name":"Iron Fist: The Deadly Hands of Kung Fu: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/iron-fist-the-deadly-hands-of-kung-fu-the-complete/4050-117342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34757/","id":34757,"name":"Marvel Masterworks: Daredevil","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-daredevil/4050-34757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121569/","id":121569,"name":"Bloodshot Classic Omnibus","site_detail_url":"https://comicvine.gamespot.com/bloodshot-classic-omnibus/4050-121569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121909/","id":121909,"name":"Marvel Masterworks: Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-ghost-rider/4050-121909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122071/","id":122071,"name":"Marvel Tales: Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-ghost-rider/4050-122071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122514/","id":122514,"name":"Pre-Code Classics: The Beyond","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-the-beyond/4050-122514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123130/","id":123130,"name":"M.O.D.O.K.: Head Trips","site_detail_url":"https://comicvine.gamespot.com/modok-head-trips/4050-123130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123417/","id":123417,"name":"Tigra: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/tigra-the-complete-collection/4050-123417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123711/","id":123711,"name":"Marvel Tales: Annihilation","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-annihilation/4050-123711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123717/","id":123717,"name":"Defenders Epic Collection: The End of All Songs","site_detail_url":"https://comicvine.gamespot.com/defenders-epic-collection-the-end-of-all-songs/4050-123717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116519/","id":116519,"name":"What If? Classic: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection/4050-116519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126042/","id":126042,"name":"Thor Epic Collection: Into The Dark Nebula","site_detail_url":"https://comicvine.gamespot.com/thor-epic-collection-into-the-dark-nebula/4050-126042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59100/","id":59100,"name":"Marvel Masterworks: Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up/4050-59100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129473/","id":129473,"name":"Hellstrom: Evil Origins","site_detail_url":"https://comicvine.gamespot.com/hellstrom-evil-origins/4050-129473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122982/","id":122982,"name":"Rai","site_detail_url":"https://comicvine.gamespot.com/rai/4050-122982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35210/","id":35210,"name":"Marvel Masterworks: The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk/4050-35210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131207/","id":131207,"name":"Captain America Epic Collection: Monsters and Men","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-monsters-and-men/4050-131207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35092/","id":35092,"name":"Marvel Masterworks: Defenders","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-defenders/4050-35092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95741/","id":95741,"name":"Pre-Code Classics: Strange Suspense Stories","site_detail_url":"https://comicvine.gamespot.com/precode-classics-strange-suspense-stories/4050-95741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133081/","id":133081,"name":"King In Black: Return of the Valkyries","site_detail_url":"https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries/4050-133081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35207/","id":35207,"name":"Marvel Masterworks: Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america/4050-35207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133100/","id":133100,"name":"Moon Knight Omnibus","site_detail_url":"https://comicvine.gamespot.com/moon-knight-omnibus/4050-133100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133912/","id":133912,"name":"Pre-Code Classics: Horrific","site_detail_url":"https://comicvine.gamespot.com/pre-code-classics-horrific/4050-133912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133913/","id":133913,"name":"PS Artbook Softee: Horrific","site_detail_url":"https://comicvine.gamespot.com/ps-artbook-softee-horrific/4050-133913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134187/","id":134187,"name":"Bloodshot: The Blood of Heroes","site_detail_url":"https://comicvine.gamespot.com/bloodshot-the-blood-of-heroes/4050-134187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134760/","id":134760,"name":"Bloodshot 50 Project","site_detail_url":"https://comicvine.gamespot.com/bloodshot-50-project/4050-134760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136101/","id":136101,"name":"Ninjak: The 7th Dragon","site_detail_url":"https://comicvine.gamespot.com/ninjak-the-7th-dragon/4050-136101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136159/","id":136159,"name":"Marvel Masterworks: Brother Voodoo","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-brother-voodoo/4050-136159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137400/","id":137400,"name":"Werewolf By Night #32: Facsimile Edition","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-32-facsimile-edition/4050-137400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138084/","id":138084,"name":"Bloodshot: Empirical Dynasty","site_detail_url":"https://comicvine.gamespot.com/bloodshot-empirical-dynasty/4050-138084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23401/","id":23401,"name":"Marvel Masterworks: Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers/4050-23401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140035/","id":140035,"name":"Antología del Cómic","site_detail_url":"https://comicvine.gamespot.com/antologia-del-comic/4050-140035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142521/","id":142521,"name":"Frankensteins Monster - Classic Collection","site_detail_url":"https://comicvine.gamespot.com/frankensteins-monster-classic-collection/4050-142521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142750/","id":142750,"name":"Marvel Héroes","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes/4050-142750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142793/","id":142793,"name":"Doctor Strange Epic Collection: The Reality War","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-epic-collection-the-reality-war/4050-142793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144487/","id":144487,"name":"She-Hulk Epic Collection: Breaking The Fourth Wall","site_detail_url":"https://comicvine.gamespot.com/she-hulk-epic-collection-breaking-the-fourth-wall/4050-144487/"}],"website":null},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/person-list-item/people.json b/samples/api-data/person-list-item/people.json new file mode 100644 index 0000000..8b6883a --- /dev/null +++ b/samples/api-data/person-list-item/people.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":72687,"status_code":1,"results":[{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1251/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:27:57","date_last_updated":"2013-06-11 12:40:32","death":null,"deck":"A comic book artist currently working on Worlds' Finest.","description":"

    Barry Kitson is a British Artist who's penciled some of biggest books for Marvel and DC. He's worked with industry's best writers and turned out some amazing art. Barry's primarily know for his L.E.G.I.O.N. Legion of Super-Heroes, Azrael, and JLA: Year One runs for Dc Comics. At Marvel Comics, Barry's has some killer runs on The Amazing Spider-Man, Incredible Hulks, and FF.

    He also did The Order with Matt Fraction.

    Barry is he's also one of the nicest guy in the industry you will meet.

    ","email":null,"gender":1,"hometown":null,"id":1251,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/3102520-barry_kitson.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/3102520-barry_kitson.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/3102520-barry_kitson.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/3102520-barry_kitson.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/3102520-barry_kitson.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/3102520-barry_kitson.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/3102520-barry_kitson.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/3102520-barry_kitson.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/3102520-barry_kitson.jpg","image_tags":"All Images"},"name":"Barry Kitson","site_detail_url":"https://comicvine.gamespot.com/barry-kitson/4040-1251/","website":"http://www.barrykitson.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1252/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:12","date_last_updated":"2013-05-11 04:05:55","death":null,"deck":"Michael Gray is a comic book Inker. He is best known for his frequent collaborations with artist JH Williams III on titles such as Promethea and Chase, and with artist Patrick Gleason on Batman and Robin for DC Comics. He has been nominated a few times for \"Best Inker\" at the Harvey Awards.","description":null,"email":null,"gender":1,"hometown":"Cupertino, CA","id":1252,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/386202-80098-mick-gray.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/386202-80098-mick-gray.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/386202-80098-mick-gray.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/386202-80098-mick-gray.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/386202-80098-mick-gray.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/386202-80098-mick-gray.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/386202-80098-mick-gray.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/386202-80098-mick-gray.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/386202-80098-mick-gray.jpg","image_tags":"All Images,Mick"},"name":"Mick Gray","site_detail_url":"https://comicvine.gamespot.com/mick-gray/4040-1252/","website":"http://www.mickgray.net"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1270/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:08","date_last_updated":"2013-03-16 03:42:57","death":null,"deck":"Colorist.","description":null,"email":null,"gender":1,"hometown":null,"id":1270,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1063443-question_mark.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1063443-question_mark.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1063443-question_mark.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1063443-question_mark.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1063443-question_mark.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1063443-question_mark.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1063443-question_mark.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","image_tags":"All Images,Important Stuff"},"name":"Chris Blythe","site_detail_url":"https://comicvine.gamespot.com/chris-blythe/4040-1270/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1280/","birth":"1963-10-23 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:11","date_last_updated":"2013-03-08 20:26:56","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1280,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1269916-2893.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1269916-2893.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1269916-2893.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1269916-2893.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1269916-2893.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1269916-2893.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1269916-2893.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1269916-2893.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1269916-2893.jpg","image_tags":"All Images"},"name":"Eric Shanower","site_detail_url":"https://comicvine.gamespot.com/eric-shanower/4040-1280/","website":"http://www.ericshanower.com/es/index.shtml"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1293/","birth":"1952-07-07 00:00:00","count_of_isssue_appearances":null,"country":"United States of America","date_added":"2008-06-06 11:28:13","date_last_updated":"2014-06-21 03:51:13","death":null,"deck":"An American comic book artist and animator. He has worked on Iron Man for Marvel and Green Arrow for DC.","description":"

    He began his career in the mid 1970's working on newspaper strips such as Tarzan , Star Wars and Spider-man.

    In addition to his work in comics, he has also worked in animation. Most notably has been his work in production art and merchandising for the Star Wars franchise.

    ","email":"rickhoberg@aol.com","gender":1,"hometown":"Belton, Texas","id":1293,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/105280-172397-rick-hoberg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/105280-172397-rick-hoberg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/105280-172397-rick-hoberg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/105280-172397-rick-hoberg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/105280-172397-rick-hoberg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/105280-172397-rick-hoberg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/105280-172397-rick-hoberg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/105280-172397-rick-hoberg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/105280-172397-rick-hoberg.jpg","image_tags":"All Images,Rick Hoberg"},"name":"Rick Hoberg","site_detail_url":"https://comicvine.gamespot.com/rick-hoberg/4040-1293/","website":"http://www.rickhoberg.com/Rick_Hoberg_Art/RickHoberg.Com_Home_Page.html"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1299/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:07","date_last_updated":"2011-06-03 12:20:21","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1299,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1063443-question_mark.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1063443-question_mark.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1063443-question_mark.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1063443-question_mark.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1063443-question_mark.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1063443-question_mark.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1063443-question_mark.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","image_tags":"All Images,Important Stuff"},"name":"Chris Young","site_detail_url":"https://comicvine.gamespot.com/chris-young/4040-1299/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1302/","birth":null,"count_of_isssue_appearances":null,"country":"USA","date_added":"2008-06-06 11:28:09","date_last_updated":"2022-09-16 09:50:46","death":null,"deck":"Artist.","description":null,"email":null,"gender":1,"hometown":null,"id":1302,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8655263-timeldred.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8655263-timeldred.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8655263-timeldred.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8655263-timeldred.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8655263-timeldred.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8655263-timeldred.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8655263-timeldred.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8655263-timeldred.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8655263-timeldred.jpg","image_tags":"All Images"},"name":"Tim Eldred","site_detail_url":"https://comicvine.gamespot.com/tim-eldred/4040-1302/","website":"https://www.timeldred.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1303/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:09","date_last_updated":"2011-12-19 02:44:12","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1303,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Renee Pulve","site_detail_url":"https://comicvine.gamespot.com/renee-pulve/4040-1303/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1325/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:09","date_last_updated":"2013-03-12 03:31:18","death":null,"deck":"An editor and artist","description":"

    for the character version of this real life person, look at the bill black character page.

    ","email":null,"gender":1,"hometown":null,"id":1325,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/253872-88520-bill-black.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/253872-88520-bill-black.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/253872-88520-bill-black.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/253872-88520-bill-black.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/253872-88520-bill-black.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/253872-88520-bill-black.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/253872-88520-bill-black.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/253872-88520-bill-black.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/253872-88520-bill-black.jpg","image_tags":"All Images,gallery"},"name":"Bill Black","site_detail_url":"https://comicvine.gamespot.com/bill-black/4040-1325/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1326/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:10","date_last_updated":"2013-03-12 03:31:18","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1326,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/254609-138169-mark-heike.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/254609-138169-mark-heike.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/254609-138169-mark-heike.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/254609-138169-mark-heike.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/254609-138169-mark-heike.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/254609-138169-mark-heike.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/254609-138169-mark-heike.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/254609-138169-mark-heike.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/254609-138169-mark-heike.jpg","image_tags":"All Images,Mark Heike"},"name":"Mark Heike","site_detail_url":"https://comicvine.gamespot.com/mark-heike/4040-1326/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1349/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:04","date_last_updated":"2012-03-30 10:06:21","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1349,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Patrick Woodroffe","site_detail_url":"https://comicvine.gamespot.com/patrick-woodroffe/4040-1349/","website":null},{"aliases":"Gore","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1350/","birth":"1940-10-01 00:00:00","count_of_isssue_appearances":null,"country":"U.S.A.","date_added":"2008-06-06 11:28:13","date_last_updated":"2020-12-10 08:55:24","death":{"date":"2020-12-02 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"American comic artist. Known for his contributions to Heavy Metal Magazine, Creepy, and other Sci-Fi, Fantasy and Horror titles.","description":"

    Born in Anderson, Missouri in 1940, Richard Corben is an American comic artist known for his endless contributions to comics in the Sci-Fi, Fantasy and Horror genres. Corben first gained popularity for his work in various Underground comic publishers, such as Grim Wit, Slow Death, Skull, Rowlf and his own anthology, Fantagor. In 1970, he began illustrating a multitude of stories for Warren Publishing, for publications such as Creepy, Eerie, Vampirella, and 1984.

    In 1975, legendary French comic artists, Jean \"Moebius\" Giraud, Philippe Druillet and editor Jean-Pierre Dionnet started publishing the magazine, Métal Hurlant in France. Corben submitted stories to them and continued to do so for Hurlant's American franchise, Heavy Metal Magazine and became one of its most regular and iconic contributors. Among the stories he published in Heavy Metal was his most famous creation, the Den Saga, a fantasy series about the adventures of a young nerd who transforms into a muscular, well-endowed warrior after traveling to Neverwhere, a universe heavily inspired by the works of Robert E. Howard, Edgar Rice Burroughs, and H.P. Lovecraft. Corben ventured into film work occasionally, and illustrated a few film posters during his career, as well as some album covers, such as Meat Loaf's Bat out of Hell. More recently, Corben illustrated some stories for Mike Mignola's Hellboy, among other stories for Marvel and other publishers.

    Corben remains a top influence to figures such as Mike Mignola and Guillermo Del Toro, and has received numerous accolades, such as the Spectrum Grand Master award in 2009 and an induction into the Will Eisner Award Hall of Fame in 2012.

    Quotes about Richard Corben

    \"Corben's work is singular in its humanity. He works with towering technical skill... ...the wondrous thing of it all is that underneath all that technical tour-de-force is the sound of a beating heart.\"

    -Will Eisner

    \"Richard Corben, stands among us like an extraterrestrial peak. He has sat in his throne for a long time, above the moving and multi-coloured field of world comics, like an effigy of the leader, a strange monolith, a sublime visitor, a solitary enigma.\"

    -Moebius

    \"People Like the American Richard Corben... are, in my view, maestros.\"

    -H.R. Giger

    \"Mr. Richard Corben... a genuine giant of his chosen medium.\"

    -Alan Moore

    ","email":"corb@corbenstudios.com","gender":1,"hometown":"Kansas City","id":1350,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/71975/4541770-5598026764-inici.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/71975/4541770-5598026764-inici.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/71975/4541770-5598026764-inici.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/71975/4541770-5598026764-inici.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/71975/4541770-5598026764-inici.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/71975/4541770-5598026764-inici.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/71975/4541770-5598026764-inici.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/71975/4541770-5598026764-inici.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/71975/4541770-5598026764-inici.jpg","image_tags":"All Images,Art,Richard Corben"},"name":"Richard Corben","site_detail_url":"https://comicvine.gamespot.com/richard-corben/4040-1350/","website":"http://www.corbenstudios.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1351/","birth":"1911-05-12 00:00:00","count_of_isssue_appearances":null,"country":"USA","date_added":"2008-06-06 11:28:07","date_last_updated":"2013-06-16 01:17:03","death":{"date":"1972-03-04 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Charles Biro (May 12, 1911 – March 4, 1972) was an American comic book creator and cartoonist. Mostly known for creating the comic book characters Airboy and Steel Sterling, and for his 16-year run on the acclaimed 1940s series Daredevil Comics for Lev Gleason Publications.","description":null,"email":null,"gender":1,"hometown":null,"id":1351,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1601620-charles_biro_iii.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1601620-charles_biro_iii.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1601620-charles_biro_iii.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1601620-charles_biro_iii.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1601620-charles_biro_iii.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1601620-charles_biro_iii.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1601620-charles_biro_iii.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1601620-charles_biro_iii.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1601620-charles_biro_iii.jpg","image_tags":"All Images"},"name":"Charles Biro","site_detail_url":"https://comicvine.gamespot.com/charles-biro/4040-1351/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1352/","birth":"1971-05-21 00:00:00","count_of_isssue_appearances":null,"country":"USA","date_added":"2008-06-06 11:28:14","date_last_updated":"2017-01-01 04:07:21","death":null,"deck":"Comic book artist who began his career at Top Cow. Co-creator of Weapon Zero, Magdalena, and the steampunk character and series Lady Mechanika.","description":"

    Joe Benitez has worked on some of the industries hottest titles: The Darkness, Batman, Witchblade, Michael Turner's Soulfire, The Justice League of America, and his own projects Wraithborn and Lady Mechanika. He is also the co-creator of Weapon Zero and Magdalena.

    Top Cow

    Top Cow Productions discovered him in 1993 at the San Diego Comicon where David Wohl liked his work and showed it to Marc Silvestri he liked it and hired Joe. Working for Top Cow Productions, Joe has dished out a lot of good artwork.

    Aspen & Benitez Production

    \"Original
    Original Art from Lady Mechanika #1

    While working for Aspen MLT, Benitez wrote and drew his own series entitled, Lady Mechanika. He stated that the Mega Con in Florida inspired some of the characters that he drew. There were a lot of people at this convention dressed in Steampunk inspired costumes. Benitez gained an admiration for this type of style that merged Victorian style clothing with high tech gear and gadgets.

    The first four Lady Mechanika comics (issues #0-3) were co-published by Aspen MLT and Benitez Production. Since then, all subsequent Lady Mechanika comics and the Wraithborn series have been self-published through Benitez Productions exclusively.

    ","email":null,"gender":1,"hometown":null,"id":1352,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/527821-0000.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/527821-0000.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/527821-0000.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/527821-0000.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/527821-0000.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/527821-0000.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/527821-0000.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/527821-0000.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/527821-0000.jpg","image_tags":"All Images,Joe Benitez"},"name":"Joe Benitez","site_detail_url":"https://comicvine.gamespot.com/joe-benitez/4040-1352/","website":"http://www.joebenitez.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1361/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:05","date_last_updated":"2011-05-05 17:03:50","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1361,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Allan Emby","site_detail_url":"https://comicvine.gamespot.com/allan-emby/4040-1361/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1385/","birth":"1976-05-21 00:00:00","count_of_isssue_appearances":null,"country":"Argentina","date_added":"2008-06-06 11:28:11","date_last_updated":"2016-03-08 12:03:05","death":null,"deck":"Rodolfo Migliari is an Argentinian cover artist and illustrator","description":"

    Links

    Rodolfo at Facebook

    Rodolfo's interview presenting his exposition \"'Portadas y trabajos seleccionados\" (Spanish)

    ","email":null,"gender":1,"hometown":"Buenos Aires","id":1385,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/1218655-002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/1218655-002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/1218655-002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/1218655-002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/1218655-002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/1218655-002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/1218655-002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/1218655-002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/1218655-002.jpg","image_tags":"All Images,Rodolfo Migliari"},"name":"Rodolfo Migliari","site_detail_url":"https://comicvine.gamespot.com/rodolfo-migliari/4040-1385/","website":"http://www.rodolfomigliari.blogspot.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1429/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:14","date_last_updated":"2021-04-17 01:47:33","death":null,"deck":"Colorist.","description":null,"email":null,"gender":1,"hometown":null,"id":1429,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/7696820-milla.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/7696820-milla.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/7696820-milla.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/7696820-milla.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/7696820-milla.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/7696820-milla.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/7696820-milla.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/7696820-milla.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/7696820-milla.jpg","image_tags":"All Images"},"name":"Matt Milla","site_detail_url":"https://comicvine.gamespot.com/matt-milla/4040-1429/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1433/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:05","date_last_updated":"2011-05-05 17:02:07","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1433,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Phil Haxo","site_detail_url":"https://comicvine.gamespot.com/phil-haxo/4040-1433/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1435/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:07","date_last_updated":"2011-05-05 17:03:24","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1435,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Adrian Moro","site_detail_url":"https://comicvine.gamespot.com/adrian-moro/4040-1435/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1436/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:04","date_last_updated":"2014-10-06 00:34:04","death":null,"deck":"Founder of Blackthorne Publishers.","description":null,"email":null,"gender":1,"hometown":null,"id":1436,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Steve Schanes","site_detail_url":"https://comicvine.gamespot.com/steve-schanes/4040-1436/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1437/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:02","date_last_updated":"2013-11-04 00:44:50","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1437,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3093150-1118677-1063443_question_mark_large_2_.jpg","image_tags":"All Images"},"name":"Susan Kronz","site_detail_url":"https://comicvine.gamespot.com/susan-kronz/4040-1437/","website":null},{"aliases":"Ull Mann","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1509/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:04","date_last_updated":"2013-08-27 05:07:45","death":null,"deck":"Alias Ull Mann","description":null,"email":null,"gender":0,"hometown":null,"id":1509,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1147779-1118672_1063443_question_mark_large_2__1_.jpg","image_tags":"All Images"},"name":"Allen Ulmer","site_detail_url":"https://comicvine.gamespot.com/allen-ulmer/4040-1509/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1513/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:09","date_last_updated":"2013-03-20 06:54:17","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1513,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/19151/422490-Lee_marrs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/19151/422490-Lee_marrs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/19151/422490-Lee_marrs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/19151/422490-Lee_marrs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/19151/422490-Lee_marrs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/19151/422490-Lee_marrs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/19151/422490-Lee_marrs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/19151/422490-Lee_marrs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/19151/422490-Lee_marrs.jpg","image_tags":"All Images"},"name":"Lee Marrs","site_detail_url":"https://comicvine.gamespot.com/lee-marrs/4040-1513/","website":"http://www.leemarrs.com/"},{"aliases":"手塚治虫\n手塚治","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1514/","birth":"1928-11-03 00:00:00","count_of_isssue_appearances":null,"country":"Japan","date_added":"2008-06-06 11:28:09","date_last_updated":"2020-10-03 14:35:20","death":{"date":"1989-02-09 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Japan's most well known and influential comic artist. He is often referred to as the God of Manga.","description":"
    ","email":null,"gender":1,"hometown":"Toyonaka","id":1514,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/1031171-osamu_tezuka.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/1031171-osamu_tezuka.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/1031171-osamu_tezuka.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/1031171-osamu_tezuka.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/1031171-osamu_tezuka.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/1031171-osamu_tezuka.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/1031171-osamu_tezuka.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/1031171-osamu_tezuka.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/1031171-osamu_tezuka.jpg","image_tags":"All Images"},"name":"Osamu Tezuka","site_detail_url":"https://comicvine.gamespot.com/osamu-tezuka/4040-1514/","website":null},{"aliases":"Jeff Moy","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1515/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:10","date_last_updated":"2013-10-03 07:44:20","death":null,"deck":"Jeffrey Moy is a comic book artist. His first break into the comic book industry was for Legionnaires, which he worked on for 5 years.","description":null,"email":null,"gender":1,"hometown":null,"id":1515,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/254670-103424-jeffrey-moy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/254670-103424-jeffrey-moy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/254670-103424-jeffrey-moy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/254670-103424-jeffrey-moy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/254670-103424-jeffrey-moy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/254670-103424-jeffrey-moy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/254670-103424-jeffrey-moy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/254670-103424-jeffrey-moy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/254670-103424-jeffrey-moy.jpg","image_tags":"All Images,Jeff Moy"},"name":"Jeffrey Moy","site_detail_url":"https://comicvine.gamespot.com/jeffrey-moy/4040-1515/","website":"http://www.jeffreymoy.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1516/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:13","date_last_updated":"2013-03-18 21:24:38","death":null,"deck":"Karl Story is an inker in the comic book industry. ","description":"

    Karl Story is an inker in the comic book industry.

    ","email":null,"gender":1,"hometown":null,"id":1516,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/446332-young_x_men_004.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/446332-young_x_men_004.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/446332-young_x_men_004.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/446332-young_x_men_004.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/446332-young_x_men_004.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/446332-young_x_men_004.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/446332-young_x_men_004.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/446332-young_x_men_004.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/446332-young_x_men_004.jpg","image_tags":"All Images,Karl Story"},"name":"Karl Story","site_detail_url":"https://comicvine.gamespot.com/karl-story/4040-1516/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1524/","birth":null,"count_of_isssue_appearances":null,"country":"United Kingdom","date_added":"2008-06-06 11:28:14","date_last_updated":"2013-03-17 06:19:33","death":null,"deck":"Mark Farmer is a British comic book artist who has worked on Incredible Hulk and Fantastic Four.","description":"

    Mark Farmer is a multiple Eagle Award winning inker who got his start in the UK comics industry before becoming part of the British Invasion, the wave of UKcreators that were an integral part of the DC Comics \"new look\" of the 1980s

    He is primarily known these days as an inker, although he has done some pencilling as well (for instance, collaborating with writer Len Wein on an early 1980s run on Green Lantern). Like nearly all those involved in the British Invasion, Farmer got his start at the British weekly comic 2000 AD, where he pencilled such series as Judge Dredd and Anderson: Psi Division.

    Farmer usually forms a team with writer/penciler Alan Davis. The pair, who first teamed on 1987's D.R. and Quinch for 2000 AD, have worked together on such titles as Marvel Comics Excalibur, Avengers, Hulk, Thor, Fantastic Four and Uncanny X-Men. For DC their work includes Superman, LSH, JSA, JLA and Green Lantern.

    He is currently working on the new Marvel NOW! Fantastic Four series with writer Matt Fraction.

    ","email":null,"gender":1,"hometown":null,"id":1524,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1688315-markfarmer.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1688315-markfarmer.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1688315-markfarmer.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1688315-markfarmer.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1688315-markfarmer.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1688315-markfarmer.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1688315-markfarmer.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1688315-markfarmer.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/1688315-markfarmer.jpg","image_tags":"All Images"},"name":"Mark Farmer","site_detail_url":"https://comicvine.gamespot.com/mark-farmer/4040-1524/","website":null},{"aliases":"Alfonso Williamson","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1531/","birth":"1931-03-21 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2015-03-17 03:24:42","death":{"date":"2010-06-13 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":null,"description":null,"email":null,"gender":1,"hometown":"New York City, New York","id":1531,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/164275-13677-al-williamson.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/164275-13677-al-williamson.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/164275-13677-al-williamson.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/164275-13677-al-williamson.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/164275-13677-al-williamson.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/164275-13677-al-williamson.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/164275-13677-al-williamson.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/164275-13677-al-williamson.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/164275-13677-al-williamson.jpg","image_tags":"Al Williamson,All Images"},"name":"Al Williamson","site_detail_url":"https://comicvine.gamespot.com/al-williamson/4040-1531/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1533/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2015-05-21 09:31:19","death":null,"deck":"A comic book artist who is best known for his work on JLA, Final Crisis, and the Mask. He is the current artist on Superman/Wonder Woman","description":"

    Doug Mahnke is a talented artist for DC Comics who has been the artist for Green Lantern since the start of Blackest Night. He's primarily known for his work on The Mask for Dark Horse Comics. Later in his career he was picked up by DC Comics. Where he went on to do amazing runs on JLA, Justice League Elite, and Superman: Man of Steel, Black Adam: The Dark Age, for DC Comics. He currently resides in North Branch, Minnesota where he works at a studio along with Batman and Robin artist Patrick Gleason.

    Some characters created

    ","email":null,"gender":1,"hometown":"North Branch, Minnesota","id":1533,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/75334/1636236-doug_mahnke_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/75334/1636236-doug_mahnke_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/75334/1636236-doug_mahnke_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/75334/1636236-doug_mahnke_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/75334/1636236-doug_mahnke_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/75334/1636236-doug_mahnke_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/75334/1636236-doug_mahnke_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/75334/1636236-doug_mahnke_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/75334/1636236-doug_mahnke_1.jpg","image_tags":"All Images,Doug Mahnke"},"name":"Doug Mahnke","site_detail_url":"https://comicvine.gamespot.com/doug-mahnke/4040-1533/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1537/","birth":"1962-12-01 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2013-03-27 14:40:04","death":null,"deck":"Joseph Quesada is an American comic book editor, writer and artist. He is former editor-in-chief of Marvel Comics and current Chief Creative Officer of Marvel Entertainment.","description":"

    Career

    Joseph Quesada was born on January 12, 1962 and is a comic book editor. Joe Quesada was born in New York to Cuban parents and was raised in Jackson Heights, Queens. He went to the School of Visual Arts, where he earned a BFA in illustration in 1984. Quesada’s art was heavily influenced by Manga, Japanese style artwork, which was shown by his drawings. He and his inking partner Jimmy Palmiotti made up an inking company called Event Comics. While within this company, Quesada helped co-create some super heroes. One of his most notable creations was Ash, a firefighter with superpowers.

    Quesada got his start in the early 90s working for Valiant Comics on titles Ninjak and Solar, Man of the Atom. Soon after, he and his inking partner Jimmy Palmiotti created the publishing company, Event Comics. During this time, Quesada also contributed to DC Comics for comics such as The Ray.

    Marvel Comics

    In 1998, Marvel Comics contracted Quesada and Event Comics to work on a new line, Marvel Knights. Using his personal contacts in the field, Quesada brought in names such as Brian Michael Bendis, Dave Mack, and Garth Ennis to bring an original flair to the properties involved. During this time, Quesada worked with screenwriter/director Kevin Smith, illustrating a new Daredevil series, intent on bringing the wayward hero back to his roots.

    In 2000, Quesada became editor-in-chief of Marvel Comics after the departure of Bob Harras. He is the first artist to become editor-in-chief at Marvel. Quesada's ascension in the ranks occurred simultaneously with that of Bill Jemas, who became Marvel's president. The two worked closely together, and their efforts culminated in the all-new Ultimate line of Marvel Comics that modernized classic heroes such as Spider-Man and the X-Men for new, younger readers.

    Quesada also imposed a moratorium on reviving characters who have died over the years and stated that \"dead is dead.\" When asked about comics that revived deceased characters, Quesada stated that the policy wasn't an absolute mandate, but rather a rule of thumb to present to writers so that stories requiring a resurrection of a character wouldn't become frequent or produced without gravity.

    In 2010, Quesada was named Chief Creative Officer of Marvel Entertainment and left his editor-in-chief role in January 2011, being replaced by Axel Alonso.

    ","email":null,"gender":1,"hometown":"New York City","id":1537,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/110483/2063620-joe_q_pic.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/110483/2063620-joe_q_pic.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/110483/2063620-joe_q_pic.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/110483/2063620-joe_q_pic.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/110483/2063620-joe_q_pic.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/110483/2063620-joe_q_pic.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/110483/2063620-joe_q_pic.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/110483/2063620-joe_q_pic.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/110483/2063620-joe_q_pic.jpg","image_tags":"All Images,Joe Quesada"},"name":"Joe Quesada","site_detail_url":"https://comicvine.gamespot.com/joe-quesada/4040-1537/","website":"http://www.joequesada.com/"},{"aliases":"D. David Perlin","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1539/","birth":"1929-08-27 00:00:00","count_of_isssue_appearances":null,"country":"United States of America","date_added":"2008-06-06 11:28:12","date_last_updated":"2013-04-18 03:07:32","death":null,"deck":"Famous writer of many of Marvel's most respected comic-books in the 1970's.","description":"

    Perlin's most notable work where his long stints on the Defenders, Ghost Rider and Werewolf by Night.
    In the 1990s, Perlin worked for Valiant comics both as artist and as an editor

    ","email":null,"gender":1,"hometown":null,"id":1539,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/768222-001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/768222-001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/768222-001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/768222-001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/768222-001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/768222-001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/768222-001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/768222-001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/768222-001.jpg","image_tags":"All Images,Don Perlin"},"name":"Don Perlin","site_detail_url":"https://comicvine.gamespot.com/don-perlin/4040-1539/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1540/","birth":null,"count_of_isssue_appearances":null,"country":"Peru","date_added":"2008-06-06 11:28:07","date_last_updated":"2021-04-02 19:58:29","death":{"date":"2021-03-30 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":null,"description":"

    Peruvian comics artist who worked for Warren Publishing Co in the 1970s.

    ","email":null,"gender":1,"hometown":"Chincha","id":1540,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/128795/3212927-gonzalo%20mayo%202a.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/128795/3212927-gonzalo%20mayo%202a.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/128795/3212927-gonzalo%20mayo%202a.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/128795/3212927-gonzalo%20mayo%202a.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/128795/3212927-gonzalo%20mayo%202a.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/128795/3212927-gonzalo%20mayo%202a.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/128795/3212927-gonzalo%20mayo%202a.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/128795/3212927-gonzalo%20mayo%202a.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/128795/3212927-gonzalo%20mayo%202a.jpg","image_tags":"All Images,Creators"},"name":"Gonzalo Mayo","site_detail_url":"https://comicvine.gamespot.com/gonzalo-mayo/4040-1540/","website":"http://www.gonzalomayo.net/home.html"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1541/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:05","date_last_updated":"2011-05-05 17:00:46","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1541,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Mike Mcguire","site_detail_url":"https://comicvine.gamespot.com/mike-mcguire/4040-1541/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1543/","birth":"1946-02-11 00:00:00","count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:06","date_last_updated":"2012-06-14 18:00:42","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1543,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Jim Bradrick","site_detail_url":"https://comicvine.gamespot.com/jim-bradrick/4040-1543/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1547/","birth":"1951-06-04 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:13","date_last_updated":"2018-03-09 17:35:31","death":null,"deck":"Wendy is a writer, artist and the co-creator of ElfQuest, the longest-running independent comic book series. Together with Richard Pini she is part of the creative team behind WaRP Graphics.","description":"

    Career

    Wendy was noticed by Richard Pini after she submitted a letter that was published in the letters coloumn of the Silver Surfer comic book during the 1970's. They began a correspondance shortly afterwards. Wendy also contributed covers and illustrations to Galaxy Science Fiction and Galileo magazines around that time. In 1978, Wendy and Richard Pini, now married, launched ElfQuest. It has since become the longest-running series of independently published comic books and graphic novels.

    Together with her husband, Wendy is one-half of the team that makes up WaRP Graphics. She is the primary writer and illustrator behind ElfQuest while Richard is the co-writer and editor. Wendy has also created graphic novels based on the TV series Beauty and the Beast and has drawn several stories for both Marvel and DC Comics.

    She has also published Masque of the Red Death, a depicted adaptation from the works of Edgar Alan Poe.

    Wendy and Richard Pini live in Poughkeepsie, which is the Catskill Mountains outside of Manhattan.

    WaRP graphics

    Richard and Wendy Pini, the masterminds of ElfQuest have maintained an independently published organisation known as WaRP graphics. They decided, in the internet age, to offer all of these scanned-comic books to the public free. All of the WaRP publishing archives are available online by visiting http://www.elfquest.com/gallery/OnlineComics3.html , and they feature a fan club and online forums for the discussion of ElfQuest.

    ","email":null,"gender":2,"hometown":"San Francisco","id":1547,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6320397-3536036340-Wendy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6320397-3536036340-Wendy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6320397-3536036340-Wendy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6320397-3536036340-Wendy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6320397-3536036340-Wendy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6320397-3536036340-Wendy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6320397-3536036340-Wendy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6320397-3536036340-Wendy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6320397-3536036340-Wendy.jpg","image_tags":"All Images"},"name":"Wendy Pini","site_detail_url":"https://comicvine.gamespot.com/wendy-pini/4040-1547/","website":"http://www.elfquest.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1575/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:06","date_last_updated":"2015-08-05 02:46:22","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1575,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/4728007-brandon-mckinney-250x250.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/4728007-brandon-mckinney-250x250.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/4728007-brandon-mckinney-250x250.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/4728007-brandon-mckinney-250x250.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/4728007-brandon-mckinney-250x250.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/4728007-brandon-mckinney-250x250.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/4728007-brandon-mckinney-250x250.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/4728007-brandon-mckinney-250x250.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/4728007-brandon-mckinney-250x250.jpg","image_tags":"All Images"},"name":"Brandon Mckinney","site_detail_url":"https://comicvine.gamespot.com/brandon-mckinney/4040-1575/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1598/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:08","date_last_updated":"2011-09-01 15:41:28","death":null,"deck":"C. Ariel Wulff worked in the comics industry from 1998-2001, primarily as a letterer.","description":"

    Wulff attended the Cooper School of Art in Cleveland, Ohio and subsequently worked as a graphic artist for 18 years.

    A comics fan, Wulff co-founded the Elfquest fanzine \"Sendings\" (1998-2000), which brought her artwork to the attention of Richard Pini and Barry Blair. She wrote and pencilled the special collector's edition Elfquest ashcan comic book \"Pack Mates\" with children's illustrator Nicole Tadgell.

    Richard Pini used one of Wulff's drawings for the cover of the Elfquest anthology #28, in 1998. The cover was nominated for the 1998 R.A.C. Squiddy award for best cover artist. That same year, Wulff penciled a pin-up of Blair's Hawk and Windblade characters which was inked by Blair and colored by Colin (Chan) Walbridge. The pin-up appeared in issue #1 of Legend of the Elflord. This introduction began a three year collaboration between Blair, Walbridge and Wulff on the titles: Legend of the Elflord, Lynx, Sapphire, Dick Sweeney, Demon Hunter, Dark Island and Sno.

    Wulff primarily lettered the comics and helped with some of the inking. She also did some production work for the Editions Paquet publication of Mutant Aliens by Bill Plympton.

    Wulff exited the comic book industry in 2002. She is currently a freelance writer and artist, who creates and sells comic-style paintings of her original yelodoggie character.

    ","email":null,"gender":0,"hometown":null,"id":1598,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/24544/429110-MENDIL2Ba.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/24544/429110-MENDIL2Ba.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/24544/429110-MENDIL2Ba.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/24544/429110-MENDIL2Ba.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/24544/429110-MENDIL2Ba.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/24544/429110-MENDIL2Ba.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/24544/429110-MENDIL2Ba.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/24544/429110-MENDIL2Ba.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/24544/429110-MENDIL2Ba.jpg","image_tags":"All Images"},"name":"C Ariel Wulff","site_detail_url":"https://comicvine.gamespot.com/c-ariel-wulff/4040-1598/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1602/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:06","date_last_updated":"2013-03-14 18:48:38","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1602,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Bill Neville","site_detail_url":"https://comicvine.gamespot.com/bill-neville/4040-1602/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1610/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:04","date_last_updated":"2011-05-05 17:02:57","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1610,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Par Mactolfsson","site_detail_url":"https://comicvine.gamespot.com/par-mactolfsson/4040-1610/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1613/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:27:59","date_last_updated":"2013-08-01 00:01:57","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1613,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3212313-1118677-1063443_question_mark_large_2_.jpg","image_tags":"All Images"},"name":"Ruth Thompson","site_detail_url":"https://comicvine.gamespot.com/ruth-thompson/4040-1613/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1635/","birth":"1954-01-01 00:00:00","count_of_isssue_appearances":null,"country":"Canada","date_added":"2008-06-06 11:28:09","date_last_updated":"2017-07-27 19:33:38","death":{"date":"2010-01-03 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":null,"description":"

    Barry Blair was born in Ottawa, Ontario, Canada circa 1954. He spent most of his young life in China. He filled his school notebooks with sketches of comic book characters and at a very young age, he created the character of Elflord Hawk Ericksson. Barry started doing animation at the age of thirteen for the Canadian television show \"You Can't Do That on Television\"

    A few years later, while working for a heating/cooling company called Aircel, when the owner decided to close up shop, Barry convinced him to invest in starting a comic book publishing company, and Aircel Comics was born. Barry published a plethora of comics under Aircel, including Elflord, Samurai, and adult works such as Leather and Lace and Climaxxx. This company went on to publish notable works like Men in Black that were later made into movies. It was bought by Malibu which was in turn purchased by Marvel.

    Barry has worked with many other artists and writers in the comic industry, and has often teamed up with one or two people for an extended time. He has published work with many comic companies, among them: Malibu, Mad Monkey, Peregrine Entertainment, Davdez, NBM Publishing, Editions Paquet and Warp Graphics. An early sketch of Hawk appeared as fanart in an issue of Elfquest in the 1980's, bringing Barry to the attention of the Pini's. By the early 1990's he was on the staff at Warp where he created art for several titles, among them \"New Blood\", \"Fire Eye\" and \"Blood of Ten Chiefs\". Shortly after the turn of the century, Barry became immersed in the online gaming community and began doing commissioned sketches of characters for players. He is a prolific artist who will leave behind a huge catalog of work.

    Barry died of a brain aneurysm on January 3rd, 2010, which had been misdiagnosed as an ear infection.

    ","email":null,"gender":1,"hometown":"Ottawa, Ontario","id":1635,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/99019/5977796-barry%20blair.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/99019/5977796-barry%20blair.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/99019/5977796-barry%20blair.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/99019/5977796-barry%20blair.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/99019/5977796-barry%20blair.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/99019/5977796-barry%20blair.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/99019/5977796-barry%20blair.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/99019/5977796-barry%20blair.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/99019/5977796-barry%20blair.jpg","image_tags":"All Images"},"name":"Barry Blair","site_detail_url":"https://comicvine.gamespot.com/barry-blair/4040-1635/","website":"http://www.studiorealmwalkers.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1642/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:05","date_last_updated":"2011-05-05 17:03:14","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1642,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/24544/491197-lorraineteir.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/24544/491197-lorraineteir.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/24544/491197-lorraineteir.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/24544/491197-lorraineteir.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/24544/491197-lorraineteir.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/24544/491197-lorraineteir.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/24544/491197-lorraineteir.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/24544/491197-lorraineteir.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/24544/491197-lorraineteir.jpg","image_tags":"All Images"},"name":"Lorraine Reyes","site_detail_url":"https://comicvine.gamespot.com/lorraine-reyes/4040-1642/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1645/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:06","date_last_updated":"2011-05-31 12:30:41","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1645,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Sandra Santara","site_detail_url":"https://comicvine.gamespot.com/sandra-santara/4040-1645/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1647/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:09","date_last_updated":"2011-05-05 17:03:22","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1647,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Lucy Synk","site_detail_url":"https://comicvine.gamespot.com/lucy-synk/4040-1647/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1656/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:05","date_last_updated":"2013-06-07 04:39:37","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1656,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3093158-1118677-1063443_question_mark_large_2_.jpg","image_tags":"All Images"},"name":"Colin Chan","site_detail_url":"https://comicvine.gamespot.com/colin-chan/4040-1656/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1657/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:04","date_last_updated":"2013-03-16 23:27:52","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1657,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"John Nadeau","site_detail_url":"https://comicvine.gamespot.com/john-nadeau/4040-1657/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1658/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:07","date_last_updated":"2013-03-16 23:27:52","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1658,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1063443-question_mark.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1063443-question_mark.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1063443-question_mark.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1063443-question_mark.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1063443-question_mark.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1063443-question_mark.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1063443-question_mark.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","image_tags":"All Images,Important Stuff"},"name":"Jordi Ensign","site_detail_url":"https://comicvine.gamespot.com/jordi-ensign/4040-1658/","website":null},{"aliases":"Michael Hernandez\r\nMike Hernandez","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1662/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:13","date_last_updated":"2014-06-03 02:48:39","death":null,"deck":"A penciler and inker.","description":null,"email":null,"gender":1,"hometown":null,"id":1662,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11307/383543-30492-michael-bair.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11307/383543-30492-michael-bair.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11307/383543-30492-michael-bair.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11307/383543-30492-michael-bair.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11307/383543-30492-michael-bair.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11307/383543-30492-michael-bair.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11307/383543-30492-michael-bair.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11307/383543-30492-michael-bair.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11307/383543-30492-michael-bair.jpg","image_tags":"All Images,Michael Bair"},"name":"Michael Bair","site_detail_url":"https://comicvine.gamespot.com/michael-bair/4040-1662/","website":"http://www.michaelbair.deviantart.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1663/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:10","date_last_updated":"2011-06-06 09:55:22","death":null,"deck":null,"description":null,"email":null,"gender":2,"hometown":null,"id":1663,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/13923/737996-pickathrynbolinger.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/13923/737996-pickathrynbolinger.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/13923/737996-pickathrynbolinger.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/13923/737996-pickathrynbolinger.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/13923/737996-pickathrynbolinger.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/13923/737996-pickathrynbolinger.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/13923/737996-pickathrynbolinger.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/13923/737996-pickathrynbolinger.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/13923/737996-pickathrynbolinger.jpg","image_tags":"All Images"},"name":"Kathryn Bolinger","site_detail_url":"https://comicvine.gamespot.com/kathryn-bolinger/4040-1663/","website":null},{"aliases":"Michael Cavallaro","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1664/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:07","date_last_updated":"2013-11-04 14:53:41","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1664,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1063443-question_mark.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1063443-question_mark.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1063443-question_mark.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1063443-question_mark.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1063443-question_mark.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1063443-question_mark.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1063443-question_mark.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","image_tags":"All Images,Important Stuff"},"name":"Mike Cavallaro","site_detail_url":"https://comicvine.gamespot.com/mike-cavallaro/4040-1664/","website":null},{"aliases":"Josef Rubinstein","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1669/","birth":"1958-06-04 00:00:00","count_of_isssue_appearances":null,"country":"Germany","date_added":"2008-06-06 11:28:14","date_last_updated":"2016-01-16 00:28:31","death":null,"deck":"Comics inker, portrait painter, illustrator, teacher and murals.","description":"

    Joe emigrated to the U.S. from Israel when he was 5 years old. His American cousin had a bunch of comic books Joe was fascinated by. Since Joe didn't speak the language, he was attracted to the pictures and, like all kids, he drew his own comics. Eventually he wanted to be an artist. At age 11 he attended classes in New York (where he lived) at the Arts Students League. His art teacher was Arthur J. Foster, son of the great Hal Foster (creator/artist of \"Prince Valiant,\" one of the most highly-regarded comic strips in history).

    Josef's idol at the time was Neal Adams whom he met at a comic book convention when he was 13 years old. Josef asked if he could work at his and Dick Giordano 's new studio, Continuity Associates. About 1971 or 1972 Joe became their assistant.He met and assisted many legendary artists while working there, including Wally Wood, Russ Heath, Gray Morrow, Jim Starlin, Jeff Jones, Bernie Wrightson , and Klaus Janson , among others.Then when Josef was 17 years old, he became a freelance artist and that was 32 years ago. He has worked for every major comics company and has the Guinness record for having inked more pencillers than any other inker--because of his inking \"The Official Handbook of the Marvel Universe\" on and off for 20 years.

    Joe is also an award-winning portrait artist and illustrator.

    Examples of Joe's re-creations and commissions can be seen at his gallery at http://www.Comicartfans.com.

    ","email":null,"gender":1,"hometown":"Breslau","id":1669,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1812/106097-159400-joe-rubinstein.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1812/106097-159400-joe-rubinstein.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1812/106097-159400-joe-rubinstein.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1812/106097-159400-joe-rubinstein.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1812/106097-159400-joe-rubinstein.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1812/106097-159400-joe-rubinstein.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1812/106097-159400-joe-rubinstein.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1812/106097-159400-joe-rubinstein.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1812/106097-159400-joe-rubinstein.JPG","image_tags":"All Images,Joe Rubinstein"},"name":"Joe Rubinstein","site_detail_url":"https://comicvine.gamespot.com/joe-rubinstein/4040-1669/","website":"http://www.josefrubinstein.com/Drawings/JR/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1672/","birth":"1962-09-16 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2019-07-12 15:04:52","death":null,"deck":"Mike Mignola is a comic book artist and writer who has worked with both DC and Marvel. He is best known for his creation of Hellboy published by Dark Horse Comics.","description":"

    Hellboy

    Mignola's arguably most well known work is Hellboy, which first appeared in the Hellboy: Seed of Destruction mini series published by Dark Horse in 1994. Through 2007, he was the writer and illustrator for Hellboy, with Duncan Fegredo taking over illustration duties after that. He also co-writes the Hellboy spin-offs B.P.R.D. and Lobster Johnson.

    Other Media

    Mignola was an illustrator for the Francis Ford Coppola movie, Bram Stroker's Dracula. He worked as a concept artist for Blade 2, and as a production designer on Disney's Atlantis: The Lost Empire. He also served as producer on two direct-to-video animated Hellboy movies, Sword of Storms and Blood and Iron.

    Awards

    ","email":null,"gender":1,"hometown":"Berkeley, California","id":1672,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/2082297-mike_mignola.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/2082297-mike_mignola.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/2082297-mike_mignola.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/2082297-mike_mignola.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/2082297-mike_mignola.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/2082297-mike_mignola.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/2082297-mike_mignola.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/2082297-mike_mignola.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/2082297-mike_mignola.jpg","image_tags":"All Images,Mike Mignola"},"name":"Mike Mignola","site_detail_url":"https://comicvine.gamespot.com/mike-mignola/4040-1672/","website":"http://www.artofmikemignola.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1673/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:05","date_last_updated":"2012-02-12 17:15:30","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1673,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Digital Hellfire","site_detail_url":"https://comicvine.gamespot.com/digital-hellfire/4040-1673/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1675/","birth":"2012-07-04 00:00:00","count_of_isssue_appearances":null,"country":"USA","date_added":"2008-06-06 11:28:09","date_last_updated":"2015-09-13 03:27:11","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":"LA/NY","id":1675,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27396/4799069-54313.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27396/4799069-54313.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27396/4799069-54313.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27396/4799069-54313.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27396/4799069-54313.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27396/4799069-54313.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27396/4799069-54313.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27396/4799069-54313.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27396/4799069-54313.jpeg","image_tags":"All Images"},"name":"Kirk Van Wormer","site_detail_url":"https://comicvine.gamespot.com/kirk-van-wormer/4040-1675/","website":"http://www.selfishchildren.com/"},{"aliases":"Caesar","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1676/","birth":null,"count_of_isssue_appearances":null,"country":"United States of America","date_added":"2008-06-06 11:28:07","date_last_updated":"2022-08-16 04:31:38","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1676,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/128795/8619830-caesarantomatteiakacaesar.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/128795/8619830-caesarantomatteiakacaesar.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/128795/8619830-caesarantomatteiakacaesar.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/128795/8619830-caesarantomatteiakacaesar.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/128795/8619830-caesarantomatteiakacaesar.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/128795/8619830-caesarantomatteiakacaesar.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/128795/8619830-caesarantomatteiakacaesar.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/128795/8619830-caesarantomatteiakacaesar.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/128795/8619830-caesarantomatteiakacaesar.jpg","image_tags":"All Images"},"name":"Caesar Antomattei","site_detail_url":"https://comicvine.gamespot.com/caesar-antomattei/4040-1676/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1678/","birth":"1970-11-27 00:00:00","count_of_isssue_appearances":null,"country":"Mexico","date_added":"2008-06-06 11:28:14","date_last_updated":"2018-07-25 10:20:25","death":null,"deck":"Popular comic book artist from Mexico, Humberto Ramos is known for his work on Impulse, Spider-Man and the X-Men. He has created many of his own series including Crimson, Out There and the French publication Fairy Quest.","description":"

    Career

    Emerging Artist

    Born in Mexico, Humberto Ramos was trained by Oscar González Guerrero & Oscar González Loyo who introduced him to the comic book conventions held in the United States. It was at the San Diego Comic-Con of 1993 when he was discovered by Walt Simonson and introduced to Milestone Media. His first published work in America appeared in 1994's Hardware, and a year later he was introduced to a wider audience through the DC Comics title, Impulse. He followed up his success on Impulse with the first few issues of the Wildstorm team DV8, but left soon after to focus on a new project.

    Cliffhanger

    \"Crimson
    Crimson #13

    1998 saw the launch of a new imprint from Jim Lee's Image. Cliffhanger featured three titles that were created, owned and plotted by their artists. The three artists were Joe Madureira, J Scott Campbell, and Humberto Ramos. While Madureira and Campbell were notoriously slow, putting release dated back by moths (sometimes years), with Battle Chasers & Danger Girl respectively, Ramos' work on Crimson was rarely late.

    Crimson dealt with themes of Christian mythology, featuring a reincarnated saint, fallen angels, vampires and werewolves. The plot surrounded Alex Elder, a teenaged boy who was transformed into a vampire & became the chosen one to save the world. The series built up to an action packed climax in the 24th issue, while Danger Girl & Battle Chasers were struggling with their 4th or 5th issues.

    Although Crimson finished in early 2001, Ramos soon followed it up with another title a few months later. Out There featured a bunch of high school kids who tried to battle supernatural forces, at a time when shows like Buffy the Vampire Slayer were popular. Although not as successful as Crimson, Out There lasted for 18 issues, ending in the summer of 2003.

    Marvel

    \"X-Men
    X-Men #194

    Much like his Cliffhanger co-creators, Ramos began to do variant covers for other publishers. This gave him more and more work with Marvel, and resulted in him working on the a four-issue story arc ' Death in the Family' in Peter Parker: Spider-Man with the writer Paul Jenkins. This in turn brought Ramos & Jenkins more work with marvel's web-slinger's new Spectacular Spider-Man series.

    His work with Marvel continued as he enjoyed a successful run on Wolverine, which included the Civil War tie-in issues, and later on the X-Men. However, his work was included in the popular X-Men cross-over story line Messiah CompleX where his art style did not match those of the Uncanny X-Men artist, David Finch. The wide difference in styles has brought criticism among some fans.

    Continuing his relationship with Marvel, Ramos completed a run on the Runaways with Terry Moore and a four-issue story arc 'Disassembled' in Avengers: Initiative.

    He is currently the artist for The Amazing Spider-Man with Stefano Casselli.He is changing up with him.He is also doing some covers for some of the Marvel books.

    Other Works

    Humberto Ramos has enjoyed a successful and on-going working relationship with Marvel, but he has continued to work with other creators and publishers outside of 'The House of Ideas'.

    \"Fairy
    Fairy Quest

    After his run on Spider-Man, Ramos teamed-up with Paul Jenkins to work for Dark Horse Comics. Although Revelations had originally been planned as a Cliffhanger six-issue mini series two years earlier. The series experienced some unfortunate delays.

    Ramos created the Kamikaze series for Wildstorm. However, instead of being the creator and owner (as her had previously been with Cliffhanger & Dark Horse), he left the illustrations to Francisco Herrera.

    While working on Wolverine with Marc Guggenheim, Ramos was also being published by Soleil Productions. The French company produced K, a space opera written by the French author Crisse. This has recently been translated & released in English by Marvel, under the name Kookaburra K, which is a 'Mature Content' flagged title.

    Once again, Ramos has teamed-up with Paul Jenkins to work on a series that the two of them first conceived years ago. Fairy Quest was due for release through Soleil. However due to unforeseen problems the project has moved away from Soliel, and they are currently looking for another publisher for Fairy Quest.

    In the meantime, Humberto Ramos has continued to work with Marvel producing several variant covers, regular humorous covers for Deadpool Team-Up, and tweeting with other artists & fans on Twitter.

    ","email":"area51@humbertoramos.com","gender":1,"hometown":"Green Hills","id":1678,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11118/111187046/6521802-humberto_ramos_sdcc2018.jpeg","image_tags":"All Images,Comics,Humberto Ramos"},"name":"Humberto Ramos","site_detail_url":"https://comicvine.gamespot.com/humberto-ramos/4040-1678/","website":"http://www.humbertoramos.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1679/","birth":null,"count_of_isssue_appearances":null,"country":"USA","date_added":"2008-06-06 11:28:13","date_last_updated":"2013-02-18 20:55:31","death":null,"deck":"Artist and inker.","description":null,"email":null,"gender":1,"hometown":null,"id":1679,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1688320-waynefaucher.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1688320-waynefaucher.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1688320-waynefaucher.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1688320-waynefaucher.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1688320-waynefaucher.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1688320-waynefaucher.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1688320-waynefaucher.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1688320-waynefaucher.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/1688320-waynefaucher.jpg","image_tags":"All Images"},"name":"Wayne Faucher","site_detail_url":"https://comicvine.gamespot.com/wayne-faucher/4040-1679/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1693/","birth":null,"count_of_isssue_appearances":null,"country":"United Kingdom","date_added":"2008-06-06 11:28:09","date_last_updated":"2013-03-17 08:08:43","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1693,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/2476716-rian_hughes.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/2476716-rian_hughes.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/2476716-rian_hughes.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/2476716-rian_hughes.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/2476716-rian_hughes.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/2476716-rian_hughes.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/2476716-rian_hughes.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/2476716-rian_hughes.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/2476716-rian_hughes.jpg","image_tags":"All Images,Rian Hughes"},"name":"Rian Hughes","site_detail_url":"https://comicvine.gamespot.com/rian-hughes/4040-1693/","website":"http://www.devicefonts.co.uk/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1700/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:11","date_last_updated":"2013-03-17 06:36:11","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1700,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/121521-88889-shane-glines.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/121521-88889-shane-glines.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/121521-88889-shane-glines.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/121521-88889-shane-glines.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/121521-88889-shane-glines.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/121521-88889-shane-glines.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/121521-88889-shane-glines.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/121521-88889-shane-glines.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/121521-88889-shane-glines.jpg","image_tags":"All Images,gallery"},"name":"Shane Glines","site_detail_url":"https://comicvine.gamespot.com/shane-glines/4040-1700/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1703/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:03","date_last_updated":"2018-03-09 16:43:50","death":null,"deck":"Writer at Archie Comics and co-creator of comic series, \"Die Kitty Die\" at Chapterhouse Comics.","description":null,"email":null,"gender":1,"hometown":null,"id":1703,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6320202-3821697738-Dan-P.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6320202-3821697738-Dan-P.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6320202-3821697738-Dan-P.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6320202-3821697738-Dan-P.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6320202-3821697738-Dan-P.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6320202-3821697738-Dan-P.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6320202-3821697738-Dan-P.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6320202-3821697738-Dan-P.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6320202-3821697738-Dan-P.jpg","image_tags":"All Images"},"name":"Dan Parent","site_detail_url":"https://comicvine.gamespot.com/dan-parent/4040-1703/","website":"http://www.danparent.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1704/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:08","date_last_updated":"2013-06-07 04:38:29","death":null,"deck":null,"description":null,"email":"richk@richkoslowski.com","gender":1,"hometown":null,"id":1704,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3093156-1118677-1063443_question_mark_large_2_.jpg","image_tags":"All Images"},"name":"Rich Koslowski","site_detail_url":"https://comicvine.gamespot.com/rich-koslowski/4040-1704/","website":"http://www.richkoslowski.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1732/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:09","date_last_updated":"2014-04-03 17:44:58","death":{"date":"2010-04-04 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"A penciler and inker.","description":null,"email":null,"gender":1,"hometown":"Grasmere, Staten Island, New York","id":1732,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111120209/3739855-henry%20scarpelli.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111120209/3739855-henry%20scarpelli.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111120209/3739855-henry%20scarpelli.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111120209/3739855-henry%20scarpelli.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111120209/3739855-henry%20scarpelli.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111120209/3739855-henry%20scarpelli.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111120209/3739855-henry%20scarpelli.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111120209/3739855-henry%20scarpelli.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111120209/3739855-henry%20scarpelli.jpg","image_tags":"All Images"},"name":"Henry Scarpelli","site_detail_url":"https://comicvine.gamespot.com/henry-scarpelli/4040-1732/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1733/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:11","date_last_updated":"2014-04-01 12:27:17","death":null,"deck":"Colorist","description":null,"email":null,"gender":1,"hometown":null,"id":1733,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/55582/3734402-003p1_xlg.preview.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/55582/3734402-003p1_xlg.preview.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/55582/3734402-003p1_xlg.preview.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/55582/3734402-003p1_xlg.preview.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/55582/3734402-003p1_xlg.preview.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/55582/3734402-003p1_xlg.preview.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/55582/3734402-003p1_xlg.preview.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/55582/3734402-003p1_xlg.preview.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/55582/3734402-003p1_xlg.preview.jpg","image_tags":"All Images"},"name":"Barry Grossman","site_detail_url":"https://comicvine.gamespot.com/barry-grossman/4040-1733/","website":null},{"aliases":"Saburo Yoshida\nBill Yosh","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1734/","birth":"1921-12-01 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:11","date_last_updated":"2021-12-07 17:00:53","death":{"date":"2005-02-17 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Japanese-American letterer William Saburo Yoshida was a comic book Letterer mostly for Archie Comics, who learned lettering from Ben Oda. He is sometimes credited as Saburo Yoshida or Bill Yosh.","description":null,"email":null,"gender":1,"hometown":"Waldwick, NJ","id":1734,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2895244-billyoshida.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2895244-billyoshida.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2895244-billyoshida.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2895244-billyoshida.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2895244-billyoshida.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2895244-billyoshida.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2895244-billyoshida.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2895244-billyoshida.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2895244-billyoshida.jpg","image_tags":"All Images"},"name":"Bill Yoshida","site_detail_url":"https://comicvine.gamespot.com/bill-yoshida/4040-1734/","website":null},{"aliases":"Douglas Wheatley","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1751/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:10","date_last_updated":"2013-04-02 00:30:15","death":null,"deck":null,"description":"  ","email":null,"gender":1,"hometown":null,"id":1751,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/241258-161159-doug-wheatley.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/241258-161159-doug-wheatley.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/241258-161159-doug-wheatley.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/241258-161159-doug-wheatley.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/241258-161159-doug-wheatley.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/241258-161159-doug-wheatley.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/241258-161159-doug-wheatley.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/241258-161159-doug-wheatley.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/241258-161159-doug-wheatley.jpg","image_tags":"All Images,art"},"name":"Doug Wheatley","site_detail_url":"https://comicvine.gamespot.com/doug-wheatley/4040-1751/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1752/","birth":"1961-07-30 00:00:00","count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:10","date_last_updated":"2012-08-16 19:25:50","death":{"date":"2008-09-06 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":null,"description":"

    Frank Turner is a writer and artist, who has worked for several comic companies, including DC, Marvel, Eclipse, and AC. He's also the creator of several creator own titles, Probe, Retrograde, and G.I. Government Issued.

    ","email":null,"gender":1,"hometown":null,"id":1752,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Frank Turner","site_detail_url":"https://comicvine.gamespot.com/frank-turner/4040-1752/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1760/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:07","date_last_updated":"2013-01-08 08:16:41","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1760,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Ed Murr","site_detail_url":"https://comicvine.gamespot.com/ed-murr/4040-1760/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1761/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:08","date_last_updated":"2016-02-17 01:44:32","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1761,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Bill Wylie","site_detail_url":"https://comicvine.gamespot.com/bill-wylie/4040-1761/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1764/","birth":"1926-04-06 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2014-05-12 11:23:01","death":{"date":"2000-01-31 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Comic book Legend who worked through the Gold, Silver, Bronze, Copper and Modern ages of comics. Legendary creator of Hal Jordan, Iron Fist, Abin Sur, Atom, Guy Gardner and Sinestro to name a few.","description":"

    Eli Katz (April 6, 1926, Riga, Latvia – January 31, 2000, Miami, Florida, United States) who worked under the name Gil Kane and in a few instances Scott Edwards, was a comic book artist whose career spanned the 1940s to 1990s and every major comics company and character. Kane co-created the modern-day versions of the superheroes Green Lantern and The Atom for DC Comics, and co-created Iron Fist with Roy Thomas for Marvel Comics. He was involved in such major storylines as a groundbreaking arc in The Amazing Spider-Man #96–98 (May-July 1971) that, at the behest of the U.S. Department of Health, Education, and Welfare, bucked the then-prevalent Comics Code Authority to depict drug abuse, and ultimately spurred an update of the Code. Kane additionally pioneered an early graphic novel prototype, His Name is...Savage, in 1968, and a seminal graphic novel, Blackmark, in 1971. In 1997, he was inducted into both the Will Eisner Comic Book Hall of Fame and the Harvey Award Jack Kirby Hall of Fame.

    Characters Created by Gil Kane

    ","email":null,"gender":1,"hometown":"Aventura, FL","id":1764,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1513/86523-87824-gil-kane.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1513/86523-87824-gil-kane.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1513/86523-87824-gil-kane.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1513/86523-87824-gil-kane.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1513/86523-87824-gil-kane.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1513/86523-87824-gil-kane.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1513/86523-87824-gil-kane.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1513/86523-87824-gil-kane.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1513/86523-87824-gil-kane.jpg","image_tags":"All Images,Gil Kane"},"name":"Gil Kane","site_detail_url":"https://comicvine.gamespot.com/gil-kane/4040-1764/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1768/","birth":"1941-06-06 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2022-08-27 14:02:05","death":{"date":"2022-04-28 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Legend and creator rights advocate.\n\nNeal Adams was inducted into the Will Eisner Comic Book Hall of Fame in 1998, and the Jack Kirby Hall of Fame in 1999. Co-Creator of classic characters Ra's al Ghul, John Stewart and Man Bat (to name a few).","description":"

    Legendary artist. Arguably the best of all time. His comics are some of the most highly collectible and sought after. He has done work in the past that helped to revitalize characters Batman, Green Lantern, Green Arrow, Deadman and the X-Men. He dealt with topics and issues that were very controversial but made characters Green Lantern and Green Arrow more relevant.

    The co-creator, alongside Dennis O' Neil, of Ra's al Ghul. Ra's al Ghul in arabic means \"The demon's head.\" He also co-created the League of Shadows (aka League of Assasins) but not Talia al Ghul (created by Bob Brown, O'Neil and Giordano), the love interest of Batman and daughter of Ra's.

    In 1970 he also famously co-created Man Bat (aka Dr. Robert Kirkland \"Kirk\" Langstrom) alongside writer and artist Frank Robbins in Detective Comics #400.

    In Green Lantern #87 in 1972 he co-created the Green Lantern known as John Stewart alongside Dennis O' Neil (Denny). Appa Ali Apsa, Bork, Brainchild, Sise-Neg, Gaza, Merlyn and Piper are just a handful of others he helped to create.

    Neal Adams is a huge creator-rights advocate and he was instrumental (along with Jerry Robinson) in the support of both Superman creators, Joe Shuster and Jerry Siegel earning recognition and a lifetime stipends from DC comics.

    Back in the 1960s many creators were scared DC would fire them if they worked for Marvel as well and Neal Adams was the first artist that was not scared of this and used his name at both companies when he was doing X-Men and Deadman at the same time. Examples of artist having to uses pseudonyms would be Gil Kane had to pretend to be “Scott Edward” and Mike Esposito was “Mickey Demeo.

    Neal Adams is also a key figure in the now common practice that artist keep their originals. Before Neal Adams' bold move to free held Jack Kirby art, Marvel believed they owned the originals. Some times originals were distorted, given away or just locked up. All that changed in the late 80s.

    Bibliography

    Penciller

    • 1967: Detective Comics #369, 395, 397, 400, 402, 404, 407, 408, 410, 477, 600, 1000

    Cover

    • 1967: Detective Comics #370, 372, 385, 389, 391, 392, 394-422, 439

    Characters Created by Neal Adams

    ","email":null,"gender":1,"hometown":"New York","id":1768,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6320323-5539479607-Neal-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6320323-5539479607-Neal-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6320323-5539479607-Neal-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6320323-5539479607-Neal-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6320323-5539479607-Neal-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6320323-5539479607-Neal-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6320323-5539479607-Neal-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6320323-5539479607-Neal-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6320323-5539479607-Neal-.jpg","image_tags":"All Images"},"name":"Neal Adams","site_detail_url":"https://comicvine.gamespot.com/neal-adams/4040-1768/","website":"http://www.nealadams.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1769/","birth":"1954-02-19 00:00:00","count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:13","date_last_updated":"2013-03-12 02:55:13","death":null,"deck":"Tom Luth is a colorist.\nHe's worked on Mad Magazine, but is less known as his work covers more obscure works, such as \"Groo the Wanderer\" and \"Captain Carrot\".","description":null,"email":null,"gender":1,"hometown":null,"id":1769,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/21780/459353-tom.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/21780/459353-tom.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/21780/459353-tom.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/21780/459353-tom.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/21780/459353-tom.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/21780/459353-tom.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/21780/459353-tom.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/21780/459353-tom.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/21780/459353-tom.jpg","image_tags":"All Images"},"name":"Tom Luth","site_detail_url":"https://comicvine.gamespot.com/tom-luth/4040-1769/","website":null},{"aliases":"John Lindley Byrne","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1770/","birth":"1950-07-06 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2022-06-20 22:03:42","death":null,"deck":"John Byrne is a prolific superhero comic book writer and artist, and is well recognized for the changes he imparts to comic mythologies. He is most famous for his work on Alpha Flight, Avengers, Fantastic Four, She-Hulk, Uncanny X-Men, and West Coast Avengers for Marvel Comics and Superman and Wonder Woman for DC Comics. His many other projects include his creator-owned 2112 and Next Men series.","description":"

    John Byrne has been a part of some of the most popular story lines of all time including: The Dark Phoenix story arc and Days of Future Past from the X-Men. He also had a memorable run on the Fantastic Four which included the trial of Reed Richards after he saved the life of Galactus. In the 90's he also had a memorable stint where he revitalized DC's flagship character, Superman.

    Biography

    John Byrne was born on July 6, 1950 in Walsall, England where he got his first taste of American superheroes through television programs (The Adventures of Superman). At the age of 8 he, along with his parents Frank and Elsie, moved to Canada where he continued his schooling. Byrne admits that he was not gifted in the academic world.

    For 15 years he was married to actress/photographer Andrea Braun, whose son from a previous marriage is comic book artist Kieron Dwyer.

    In 1962, John Byrne read Stan Lee's and Jack Kirby's Fantastic Four #5, his first Marvel comic, and in his opinion \"the book had an 'edge' like nothing DC was putting out at the time.\" It was only later that Kirby's work would have its full effect on Byrne, who would end up working with many of the characters Kirby helped to create. Another heavy influence to Byrne was comic book artist Neal Adams.

    In 1970, John Byrne joined the Alberta College of Art and Design, which was located in Calgary. At the school his comic book career began, At first it was when he created Gay Guy (a character meant to parody superheroes and the stereotypical homosexual art student) for the college newspaper. This comic is remembered more, however, for the appearance of a prototype of Snowbird, a character Byrne would create years later. He also had his first published comic book work while attending the school, it was in the first issue of a comic book called ACA Comix and it featured The Death's Head Knight. Byrne left the college in 1973, without actually graduating.

    In August 1974, he began his real work in comics when he illustrated a two-page black-and-white short story for Skywald Publications' Nightmare #20. He eventually became a freelance artist for Charlton Comics, for whom he created his first colored comic, Rog-2000 (a back-up story in the E-Man series). While working for Charlton, Byrne also did work on series like Emergency!, Wheelie and the Chopper Bunch and Space: 1999. He also co-created Doomsday 1, with Joe Gill, a science fiction series that took place in a post-apocalyptic world.

    Impact

    This is a list of some of the comics he has worked on and how he made an impact on them:

    Alpha Flight: Alpha Flight was a team and series that Byrne reluctantly created when Marvel convinced him to create a Canadian superhero team. Originally Alpha Flight was \"...to survive a fight with the X-Men,\" but the book became really popular and sold more than 500,000 issues. Byrne, however, never really enjoyed working on the book and thought of the characters as \"flat.\" One of Byrne's biggest impacts on the comic book universe, through Alpha Flight, was the creation of the homosexual superhero Northstar, even though the character's sexuality was only hinted at while Byrne worked on the series.

    Avengers West Coast: While working on Avengers West Coast (from issues 42-57) Byrne took the story of the Vision into his own hands and changed several things about him. Byrne wrote that the Vision's creation, as told by Ultron, was a lie. The character was changed so that he would no longer have human emotions. It was also revealed that the Vision's and Wanda's children were simply pieces of Mephisto's soul. Also, in this short run, Byrne created the Great Lakes Avengers, one of comic's oddest superhero teams.

    Captain America: John Byrne once worked on Captain America for nine issues alongside Roger Stern and during this time, in issue #250, Captain America was nominated to become President of the United States.

    Fantastic Four: One of John Byrne's major works was the Fantastic Four, in which he brought forth what many believe to be a second Golden Age. He went all the way back to the beginning but this time there were some huge changes. He soon had the She-Hulk replace the Thing as a member of the team while Byrne wrote the Thing's solo comic. Alicia Masters was no longer with Ben Grimm and instead became romantically involved with Johnny Storm, the Human Torch. The Baxter Building was demolished and in its place was Four Freedoms Plaza, the new headquarters for the Fantastic Four. One of the biggest changes was changing the name of the Invisible Girl to the Invisible Woman, the most powerful member of the team.

    Eventually, Byrne left the book allegedly because \"it simply started to get old,\" but it has also been mentioned that \"internal office politics\" were part of the reason.

    Iron Man: During a short stint, John Byrne wrote 20 issues of Iron Man (#258-277). In that time he featured the super villain Fin Fang Foom, returned the Mandarin to his status as a major Iron Man villain and started a second Armor Wars story arc.

    Namor the Sub-Mariner: John Byrne created this series and in it he displayed a different side to Namor, showing him as a business man and the head of Oracle Inc., a company on the surface world. For twenty-five issues Byrne wrote and drew the series, but when artist Jae Lee came on board with issue #26, he utterly transformed the mood and plot line of the book. Byrne quit writing the series in the middle of a story line after thirty-two issues.

    Superman: Byrne was hired by DC Comics to reboot the iconic superhero, Superman, which was needed after the Crisis of Infinite Earths storyline. This reworking of the superhero that is supposedly greater than any other in the eyes of the public got the media's attention and so articles were published everywhere including The New York Times. Byrne completely revamped Superman and he stated that, \"I'm taking Superman back to the basics...it's basically Siegel and Shuster's Superman meets the Fleischer Superman in 1986.\" Kal-El's mighty power was drastically reduced from his Silver Age version, but he remained one of the mightiest beings in the DC Universe. Byrne changed the story so that the Kents were still alive and often the support of Superman in his adult years. However, Byrne got rid of Krypto, the Fortress of Solitude and the fact that Superman ever was Superboy (which he regretted as it ruined the very idea of the Legion of Super-Heroes). John Byrne also made Clark Kent a man who actually fit in with society and was more of an ordinary human, or at least wished to be one, in his youth believing Earth to be his true home. Finally, Byrne explained how Clark Kent kept his identity secret for both the snapping of photos and his frame. The first was explained as Clark using his super speed to move the molecules of his face at a rapid pace to make it blurry in photos and for the second he possessed a weight training set to make an excuse for his build. This Superman made his debut in The Man of Steel a six-issue miniseries describing his origins. Byrne did a lot of work on almost all of Superman's titles, especially in 1988 when it was The Last Son of Krypton's 50th anniversary. He continued this routine for approximately two years, but quit as he felt no support, especially since the line of Superman merchandise differed from the version he had remade for the comics.

    The Sensational She-Hulk: When requested to do so by his editor, Mark Gruenwald, John Byrne began work on a new series in 1989, The Sensational She-Hulk which was supposed to be a huge change from her earlier series, The Savage She-Hulk. So Byrne made a comic that was meant to be humorous and often had She-Hulk break the \"fourth wall.\" He was allegedly fired from the series after eight issues when his ideas were ignored and instead his editor, Bobbie Chase, was changing his stories so they would fit along with the She-Hulk: Ceremony graphic novel. However, not long after the Sensational She-Hulk series hired a new editor in Renée Witterstaetter, Byrne returned to the series with issue #31 and his last issue was #50.

    The Uncanny X-Men: In 1977, John Byrne began working on The X-Men (eventually the title was changed to the Uncanny X-Men) with Chris Claremont. The series became one of the best-selling series in comics. Eventually, however, Byrne and Claremont's different ways of storytelling got in the way Byrne left after issue #143.

    Creations and Co-Creations (partial list) (full list below)

    John Byrne has created many characters for various companies, here is a chronological list of some of them:

    1- In February of 1978, predating Alpha Flight, John Byrne created the character that would eventually lead the team, Guardian.

    2- Byrne single-handedly created Alpha Flight, the Canadian super hero team he was assigned to make. The team's first appearance was in 1979, in the month of April.

    3- Northstar and Aurora, both created by John Byrne, made their debut in April of 1979, as members of the new team, Alpha Flight.

    4- Sasquatch was another character that debuted with Alpha Flight (April 1979) created by John Byrne.

    5- Shaman was created by John Byrne, appearing for the first time in The X-Men #120 (April 1979).

    6- Snowbird, a character whose prototype he had created much earlier made her first appearance in April 1979 and is credited to John Byrne.

    7- Byrne co-created the Hellfire Club alongside Chris Claremont in January of 1980.

    8- Byrne also created Sebastian Shaw, with Chris Claremont, when they made the Hellfire Club in January of 1980.

    9- In November, 1980, the wife of Guardian, Heather McNeil Hudson, was created by John Byrne and Chris Claremont. The character would later call herself Vindicator.

    10- Marrina was created by John Byrne for Alpha Flight, and made her first appearance in Alpha Flight #1 in August 1983.

    11- Puck was also created by John Byrne for the same purpose as Marrina, making his first appearance in August of 1983, however the origin of the character that Byrne had planned for was not actually the one used in the comics.

    12- In December of 1983, John Byrne created the daughter of Shaman, Elizabeth Twoyoungmen, Talisman, who debuted in Alpha Flight #5.

    13- In July of 1989, John Byrne created the Great Lakes Avengers, who have since gone through numerous name changes and are now called the Great Lakes Initiative.

    14- Mr. Immortal, the leader of the GLA and the pinnacle of evolution in the Marvel Universe was created by John Byrne and first appeared in July of 1989.

    15- In West Coast Avengers Vol. 2 #46, Big Bertha - a character created by John Byrne - made her first appearance as a member of the GLA.

    16- Flatman, another character created by John Byrne for the purpose of being a member of the Great Lakes Avengers, had his first appearance in July 1989.

    17- In July of 1989, John Byrne created another character on his own, for the Avengers West Coast Series as a member of the GLA, Doorman.

    18- In 1991 working on Uncanny X-men #282, alongside legendary Image co-founder, Whilce Portacio, they came up with the wildly popular character Bishop.

    19- In 1992 his creator-owned series John Byrne's Next Men was first published by Dark Horse Comics.

    A Full List of CHARACTERS CREATED BY JOHN BYRNE (Alphabetically)

    ","email":null,"gender":1,"hometown":"Fairfield, Connecticut","id":1770,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/7380163-1158264859-John_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/7380163-1158264859-John_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/7380163-1158264859-John_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/7380163-1158264859-John_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/7380163-1158264859-John_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/7380163-1158264859-John_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/7380163-1158264859-John_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/7380163-1158264859-John_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/7380163-1158264859-John_.jpg","image_tags":"All Images"},"name":"John Byrne","site_detail_url":"https://comicvine.gamespot.com/john-byrne/4040-1770/","website":"http://www.byrnerobotics.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1772/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:00","date_last_updated":"2011-05-05 17:03:02","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1772,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Junko Hosizawa","site_detail_url":"https://comicvine.gamespot.com/junko-hosizawa/4040-1772/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1773/","birth":null,"count_of_isssue_appearances":null,"country":"Canada","date_added":"2008-06-06 11:28:14","date_last_updated":"2015-08-05 15:33:11","death":null,"deck":"Canadian comic book penciller, famous for working on Marvel's Civil War with Mark Millar","description":"

    Steve McNiven left his home in Canada to move to Florida and work for CrossGen. He took over the penciling duties from Josh Middleton on Meridian and began a partnership with inker, Dexter Vines, which continues to this day.

    When his stint at CrossGen was over, Marvel scooped him up and put him on a number of projects. Among these were the New Avengers, Ultimate Secret and Marvel Knights 4. His big break, however, occurred in 2006 when he and Vines, along with writer Mark Millar were contracted to create the Civil War mini-series, which turned out to be the highest grossing comic book project of the decade.

    This team became so popular that Steve, Dexter and Mark were brought together again to produce the Old Man Logan Wolverine storyline for Marvel in 2008. OML made his first appearance in Wolverine #66 in June of that year.

    Currently, Steve is working on Uncanny Inhumans with Charles Soule

    ","email":null,"gender":1,"hometown":"Halifax, Nova Scotia","id":1773,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/254660-175190-steve-mcniven.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/254660-175190-steve-mcniven.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/254660-175190-steve-mcniven.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/254660-175190-steve-mcniven.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/254660-175190-steve-mcniven.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/254660-175190-steve-mcniven.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/254660-175190-steve-mcniven.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/254660-175190-steve-mcniven.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/254660-175190-steve-mcniven.jpg","image_tags":"All Images,Steve Mcniven"},"name":"Steve McNiven","site_detail_url":"https://comicvine.gamespot.com/steve-mcniven/4040-1773/","website":"http://www.stevemcniven.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1774/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2017-03-24 16:59:23","death":null,"deck":"Mark Morales is an American inker best known for his works at Marvel Comics such as Secret Invasion, Siege and Thor. His works are commonly associated with penciler Olivier Coipel.","description":"
    ","email":null,"gender":1,"hometown":"New Jersey","id":1774,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/254667-91401-mark-morales.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/254667-91401-mark-morales.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/254667-91401-mark-morales.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/254667-91401-mark-morales.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/254667-91401-mark-morales.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/254667-91401-mark-morales.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/254667-91401-mark-morales.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/254667-91401-mark-morales.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/254667-91401-mark-morales.jpg","image_tags":"All Images,Mark Morales"},"name":"Mark Morales","site_detail_url":"https://comicvine.gamespot.com/mark-morales/4040-1774/","website":"http://www.markmorales.deviantart.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1775/","birth":"1976-05-16 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:13","date_last_updated":"2013-03-22 11:57:22","death":null,"deck":null,"description":null,"email":"mocolors@mac.com","gender":1,"hometown":"Tampa, Florida","id":1775,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/254605-100923-morry-hollowell.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/254605-100923-morry-hollowell.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/254605-100923-morry-hollowell.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/254605-100923-morry-hollowell.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/254605-100923-morry-hollowell.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/254605-100923-morry-hollowell.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/254605-100923-morry-hollowell.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/254605-100923-morry-hollowell.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/254605-100923-morry-hollowell.jpg","image_tags":"All Images,gallery"},"name":"Morry Hollowell","site_detail_url":"https://comicvine.gamespot.com/morry-hollowell/4040-1775/","website":"http://www.web.mac.com/mocolors/Mocolors/Home.html"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1785/","birth":"1960-09-09 00:00:00","count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:14","date_last_updated":"2018-03-09 17:04:03","death":null,"deck":"Artist.","description":"

    Focus Profile

    \"Late
    Late 80's Maguire Art

    In 1987 a Profile of Kevin was put on the inside cover of a comic book called Focus. In it it at that time Kevin lived in Old Bridge, New Jersey and worked on his first comic on September 9, 1960. He was 5' 10'' and 165lbs, with green eyes and brown hair. At this time he was 26 with a 9 shoe size. His major influence was Chuck Jones and Frank Frazetta. He said his quote was \"Let's just have fun.\" His advice to aspiring artist was \"If you have to copy from somewhere---copy from life.\"

    More comical stuff in the profile he listed his hobby as Lounging. He said if wasn't doing comics he would be making pizza and he makes comics because it beats making pizza. He stated that poverty is what got him into making comics and he worked for DC because they made the best offer.

    \"If you have to copy from somewhere---copy from life.\" - Kevin Maguire

    \"2010
    2010 Maguire Art

    In popular culture Kevin listed the last good book he read was No Deals Mr. Bond by John Gardner. The last good record he bought was The Times by Prince. He also said his favorite movie was Lethal Weapon. His goal was direct a James bond movie.

    ","email":null,"gender":1,"hometown":null,"id":1785,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6320271-0590000109-Kevin.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6320271-0590000109-Kevin.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6320271-0590000109-Kevin.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6320271-0590000109-Kevin.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6320271-0590000109-Kevin.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6320271-0590000109-Kevin.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6320271-0590000109-Kevin.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6320271-0590000109-Kevin.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6320271-0590000109-Kevin.jpg","image_tags":"All Images"},"name":"Kevin Maguire","site_detail_url":"https://comicvine.gamespot.com/kevin-maguire/4040-1785/","website":"http://www.kevinmaguire.bigcartel.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1795/","birth":"1958-05-03 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2013-03-27 13:33:50","death":null,"deck":"Bill Sienkiewicz has worked on a variety of superhero books for the Big Two.","description":"

    In the beginning Bill Sienkiewicz had a clean, straightforward style while penciling Fantastic Four. Then, sometime during his stint on Moon Knight, he began to experiment with abstraction and expressionistic influences to his art. Shortly after Sienkiewicz was given carte blanché to re-imagine the New Mutants.

    His most famous work is Elektra: Assassin, a 8 issue mini he worked on with Frank Miller. The title was an apocalyptic political thriller very different from Miller's previous Daredevil work. Bill's art contributed to the chaos with pages filled with uneven panel layouts and a heavy abstract design and color palette.

    ","email":null,"gender":1,"hometown":"Blakely, Pennsylvania","id":1795,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/100647/2721792-bill_swienkiewicz_3_576.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/100647/2721792-bill_swienkiewicz_3_576.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/100647/2721792-bill_swienkiewicz_3_576.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/100647/2721792-bill_swienkiewicz_3_576.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/100647/2721792-bill_swienkiewicz_3_576.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/100647/2721792-bill_swienkiewicz_3_576.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/100647/2721792-bill_swienkiewicz_3_576.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/100647/2721792-bill_swienkiewicz_3_576.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/100647/2721792-bill_swienkiewicz_3_576.jpg","image_tags":"All Images,Bill Sienkiewicz,Images From Editing"},"name":"Bill Sienkiewicz","site_detail_url":"https://comicvine.gamespot.com/bill-sienkiewicz/4040-1795/","website":"http://www.billsienkiewiczart.com/"},{"aliases":"Guru Efx","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1796/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:13","date_last_updated":"2015-11-03 11:44:50","death":null,"deck":"Guru-eFX is Joe Weltjens and Lee Duhig.","description":null,"email":null,"gender":1,"hometown":null,"id":1796,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117127/2960573-4216400588-examp.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117127/2960573-4216400588-examp.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117127/2960573-4216400588-examp.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117127/2960573-4216400588-examp.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117127/2960573-4216400588-examp.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117127/2960573-4216400588-examp.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117127/2960573-4216400588-examp.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117127/2960573-4216400588-examp.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117127/2960573-4216400588-examp.jpg","image_tags":"All Images"},"name":"Guru-eFX","site_detail_url":"https://comicvine.gamespot.com/guru-efx/4040-1796/","website":"http://www.guru-efx.deviantart.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1804/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:08","date_last_updated":"2013-11-20 12:55:24","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1804,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1063443-question_mark.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1063443-question_mark.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1063443-question_mark.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1063443-question_mark.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1063443-question_mark.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1063443-question_mark.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1063443-question_mark.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","image_tags":"All Images,Important Stuff"},"name":"Sam Citron","site_detail_url":"https://comicvine.gamespot.com/sam-citron/4040-1804/","website":null},{"aliases":"Inky Roussos\r\nGeorge Bell\r\nT.S. Chu\r\nSam Kato","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1805/","birth":"1915-08-20 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:13","date_last_updated":"2013-04-18 03:06:10","death":{"date":"2000-02-19 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Inker and letterer from the 1940s to the 1980s for Marvel and DC.","description":"

    George Roussos was the primary background inker and letterer for Batman beginning with issue #2 during in the 1940s. He worked alongside such notable greats as Jack Kirby, Jerry Robinson, Sheldon Moldoff, Bob Kane, and Bill Finger. During the Silver and Bronze Ages, Roussos worked primarily with Marvel, inking early issues of Captain America, Conan the Barbarian, and Fantastic Four, as well as numerous tie-in books such as G.I. Joe and Transformers.

    He married twice before dying of a heart attack in 2000.

    ","email":null,"gender":1,"hometown":"Washington DC","id":1805,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/223340-60021-george-roussos.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/223340-60021-george-roussos.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/223340-60021-george-roussos.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/223340-60021-george-roussos.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/223340-60021-george-roussos.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/223340-60021-george-roussos.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/223340-60021-george-roussos.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/223340-60021-george-roussos.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/223340-60021-george-roussos.jpg","image_tags":"All Images,George Roussos"},"name":"George Roussos","site_detail_url":"https://comicvine.gamespot.com/george-roussos/4040-1805/","website":null},{"aliases":"Allen Jamison\r\nJamison Services","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1806/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:07","date_last_updated":"2013-10-01 12:21:55","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1806,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1063443-question_mark.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1063443-question_mark.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1063443-question_mark.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1063443-question_mark.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1063443-question_mark.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1063443-question_mark.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1063443-question_mark.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1063443-question_mark.jpg","image_tags":"All Images,Important Stuff"},"name":"Jamison","site_detail_url":"https://comicvine.gamespot.com/jamison/4040-1806/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1811/","birth":"1908-11-27 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:11","date_last_updated":"2013-03-08 03:01:23","death":{"date":"1980-09-07 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Whitney Ellsworth was the first Editor for many groundbreaking titles with DC. He is responsible for making the call that kept The Joker alive in Batman issue #2 back in 1940. An artist, writer and editor during the Golden Age of comics.","description":"

    Born in Brooklyn New York, he took a cartooning course at the local YMCA. From there he began working on the syndicated feature Dumb Dora, then he worked on Embarassing Moments and then Just Kids. Whitney Ellsworth began working for National Allied Publishing (which would later be known as DC) in 1934 where he worked as assistant editor. He worked on stories like Billy the Kid, Little Linda and More Fun Comics and doing the cover roughs of a number of the early D.C. titles. He briefly left the company around 1936 for a stay in California but returned shortly after. By 1937 he was hired full time at D.C. where he became the editorial director of all D.C. titles until around 1953.

    Ellsworth was the chief guiding force at D.C. for most of the Golden Age, writing, doing cover layouts, art directing, editing and developing new projects. Some of his flagship titles include Superman, Batman, Detective Comics, Adventure Comics, Action Comics, Green Lantern, All-Star Comics, Wonder Woman and Superboy (just to name a few).

    Definitely his most notable deed at DC was when Batman #1 was launched a 2 part story featuring an all new villain known as The Joker was to battle with Batman and Robin and in the end The Joker was going to die. Whitney Ellsworth felt The Joker character was too note-worthy and made a last minute change to the script and another panel was added to the last page--and although it was crudely drawn (probably by Bob Kane and inked by Sheldon Moldoff)--it portrayed the Joker surviving. This was the single edit that kept the Joker around. To this day Batman is synonymous with the Joker but it would not have been were it not for the Whitney Ellsworth.

    Whitney Ellsworth was also the movie studio liaison for D.C., producing and editing The Adventures of Superman TV series among other projects.

    Ellsworth left D.C. in 1971.

    ","email":null,"gender":1,"hometown":"Brooklyn, New York","id":1811,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/216900-88238-whitney-ellsworth.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/216900-88238-whitney-ellsworth.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/216900-88238-whitney-ellsworth.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/216900-88238-whitney-ellsworth.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/216900-88238-whitney-ellsworth.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/216900-88238-whitney-ellsworth.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/216900-88238-whitney-ellsworth.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/216900-88238-whitney-ellsworth.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/216900-88238-whitney-ellsworth.jpg","image_tags":"All Images,Whitney Ellsworth"},"name":"Whitney Ellsworth","site_detail_url":"https://comicvine.gamespot.com/whitney-ellsworth/4040-1811/","website":null},{"aliases":"Bill Kelley\r\nAl Case\r\nBill Dennehy\r\nWesley Marsh","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1812/","birth":"1911-01-03 00:00:00","count_of_isssue_appearances":null,"country":"United States of America","date_added":"2008-06-06 11:28:10","date_last_updated":"2014-07-20 01:10:18","death":{"date":"1994-03-06 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Versatile DC comic writer of many genres, such as superhero, war, horror & mystery among others and the brother of Henry Boltinoff. He was also an editor and executive editor while at DC Comics. Sometimes credited under the pen names of Bill Kelley, Al Case, Bill Dennehy and Wesley Marsh.","description":"

    A graduate of New York University with a degree in journalism. He was journalist in the military and on the civilian side. When not writing comic books he wrote novels and screenplays.

    ","email":null,"gender":1,"hometown":"Manhatten, New York","id":1812,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/816318-boltinoffmurrey.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/816318-boltinoffmurrey.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/816318-boltinoffmurrey.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/816318-boltinoffmurrey.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/816318-boltinoffmurrey.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/816318-boltinoffmurrey.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/816318-boltinoffmurrey.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/816318-boltinoffmurrey.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/816318-boltinoffmurrey.jpg","image_tags":"All Images"},"name":"Murray Boltinoff","site_detail_url":"https://comicvine.gamespot.com/murray-boltinoff/4040-1812/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1816/","birth":"1971-05-19 00:00:00","count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:14","date_last_updated":"2018-10-01 07:12:01","death":null,"deck":"John Cassaday is an American comic book artist, well known for his work on Planetary, Captain America, Astonishing X-Men and Star Wars.","description":"

    Personal Life

    John Cassaday was born in Fort Worth, Texas, in 1971. A self-taught artist, he initially put himself through three years of film school and worked for a time directing TV news before leaving his home state. He was influenced early on by the Adam West Batman TV show and later, of course, he became a fan of Star Wars and G.I. Joe. His artistic influences include numerous artists and writers across a broad spectrum of different media, but his favorite is American artist and illustrator, N.C. Wyeth. Cassaday broke in to comics when he brought his art portfolio to the 1996 San Diego Comic Con. He now lives in New York City.

    Career

    Early Work

    \"CFD
    CFD 1996 One-Shot

    Cassaday's first professional comics work was in 1994 for Boneyard Press, a one page pinup with text by indie comics legend Hart Fisher in his horror pinup anthology one-shot, \"A Touch of Silk, A Taste of Leather.\" Cassaday continued to work with Fisher, illustrating his short story Juju Eyes, published in Caliber's Negative Burn #28 in 1995, and illustrating Fisher's flagship character Dark Angel in a serial titled The Quiet Demon which ran in Boneyard Press' Flowers on the Razorwire horror anthology (#5-9). The story Juju Eyes was re-printed a year later along with two other Fisher shorts also illustrated by Cassaday in the CFD published one-shot No Profit For The Wise.

    1996 saw Cassaday branching out more into mainstream comics work. He created covers for Ghost (#20-24) and interiors on issue #27, for Dark Horse and eventually became lead artist on the Homage mini-series, Desperadoes. By 1997, he was working on mainstream comics such as Alpha Flight, Union Jack and The Flash.

    The Rise to Stardom

    \"Cassaday's
    Cassaday's Steranko homage

    In 1999, Cassaday soared to popularity as the artist on Planetary when he was hand-picked by series writer and creator Warren Ellis. The creative dynamic between Ellis and Cassaday combined with the series core theme of dissecting genre conventions proved the perfect showcase for Cassaday's talents. To date Planetary still stands as Cassaday's longest run on interiors. In 2002 Cassaday and John Ney Rieber restarted Captain America for the Marvel Knights imprint. Cassaday left the series after six issues, however he continued to produce the covers through issue #25. In 2004 Joss Whedon was given a new X-Men series. With Cassaday his first choice of artist, the two created magic for 25 issues of Astonishing X-Men. Astonishing would clock in as Cassaday's second longest run on interiors.

    With his career branching off in different directions, Cassaday's interior work became almost non-existent, however from the finale of his run on Astonishing X-Men he began producing covers for an amazingly varied array of different series. For Marvel, he drew covers for the Shadowlands Limited Series, as well as many of its tie-in books. He drew the 1 in 25 incentive covers for the Captain America Reborn limited series, as well as covers for Warren Ellis' short-lived run on Secret Avengers, #16-21.) For DC, Cassaday drew all the covers for J. Michael Straczynski's Superman Grounded series which ran from Superman issue #701-714. In 2004 Cassaday illustrated the first graphic novel in what was supposed to be the I Am Legion trilogy with Fabien Nury for Humanoids. The original graphic novel along with the unpublished follow-up books were eventually re-formatted into an eight-issue comic book series by Devil's Due.

    Dynamite and Star Wars.

    \"Lone
    Lone Ranger #7, 2007

    In 2006, Cassaday became art director and primary cover artist for The Lone Ranger series from Dynamite. This led to Cassaday producing many covers over a wide range of Dynamite's catalog, including; Battlefields: Dear Billy (1-3) (2009), Battlefields: Night Witches (1-3) (2008), Battlefields: Tankies (1-3) (2009), Buck Rogers (1-5) (2009), The Complete Alice In Wonderland (1-4) (2009-2010), The Complete Dracula (1-5) (2009), The Death Defying Devil (1-4) (2008-2009), Green Hornet (1-7)(2010), Green Hornet Strikes (1-5) (2010), Green Hornet Year One (1-5) (2010), The Lone Ranger (1-24) (2006-2011), The Lone Ranger and Tonto (1-4) (2008-2010), The Shadow (1-7) (2012), Shadow/Green Hornet: Dark Nights (1-5) (2013), Sherlock Holmes (1-5) (2009), and The Spider (1-6)(2012). Cassaday continues his cover work for Dynamite to this day with the latest being the covers to their revival of The Spirit and the first issue of Sherlock Holmes vs. Harry Houdini both debuting in 2015.

    In 2015 in the wake of Disney's buyout of Marvel Entertainment and Lucasfilm, the inevitable loss of the Star Wars comic book license from Dark Horse, resulted in a new Star Wars series from Marvel. Along with series writer Jason Aaron, Cassaday drew the first six issue arc before stepping aside to let other artists work on the series.

    \"Star
    Star Wars #1, 2015

    Other Media

    In addition to producing freelance commercial art for Levi's Jeans and Ringling Brothers Barnum and Bailey Circus, Cassaday directed the season 2 episode of Joss Wheedon's Dollhouse series titled The Attic, it aired on Dec. 18, 2009.

    Awards

    \"Eisner
    Eisner Award
    • 2004 Eisner Award for Best Artist, Planetary
    • 2005 Eisner Award for Best Artist, Astonishing X-Men
    • 2006 Eisner Award for Best Continuing Series: Astonishing X-Men
    • 2007 Eagle Award Favorite Comics Artist: Pencils
    • 2007 Spike TV Scream Award Best Comic Book Artist
    ","email":null,"gender":1,"hometown":"Fort Worth, Texas","id":1816,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6630263-7204262090-John-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6630263-7204262090-John-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6630263-7204262090-John-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6630263-7204262090-John-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6630263-7204262090-John-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6630263-7204262090-John-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6630263-7204262090-John-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6630263-7204262090-John-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6630263-7204262090-John-.jpg","image_tags":"All Images"},"name":"John Cassaday","site_detail_url":"https://comicvine.gamespot.com/john-cassaday/4040-1816/","website":"http://www.johncassaday.com/"},{"aliases":"Laura DePuy","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1817/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:13","date_last_updated":"2015-06-03 11:44:09","death":null,"deck":"Laura DePuy (credited later in her career as Laura Martin, having married Randy Martin in 2001) is an award-winning colorist who has produced work for several of the major comics companies, including DC Comics, Marvel Comics, and CrossGen.","description":"

    CAREER

    Laura DePuy Martin was working nights at Kinko’s while studying graphic design at the University of Central Florida. It was there that she met Ian Hannin who got her interested in comics as a possible career. Hannin later went on to work for Wildstorm and got Laura through the door in 1995.

    In 1999, after DC acquired Wildstorm, Laura became John Cassaday’s colorist on Planetary, as well as Bryan Hitch’s on Authority. She also colored the JLA:Earth 2 graphic novel and JLA: Heaven's Ladder.

    Between 2001 and 2003, Laura worked as assistant art director and colorist for CrossGen comics. Notable in her CrossGen work was the detective comics series, Ruse, for which Laura won an Eisner Award. She also colored Negation, Sojourn and Meridian.

    In July 2004, she began coloring Cassaday’s highly acclaimed Astonishing X-Men, written by Joss Whedon for Marvel. Then in February 2005 she worked again with Bryan Hitch on Ultimates 2 #1, also for Marvel. Within this same time period, she colored Whedon’s two Serenity series: Serenity and Serenity: Those Left Behind for Dark Horse.

    In September 2007, Laura began work on the current Thor series by J Michael Straczynski and Olivier Coipel and, in 2008, colored the Marvel Comics mega-hit Secret Invasion. She also recently colored the mini-series Black Lightning: Year One over the artwork of her Gaijin studio-mate Cully Hamner. Laura is currently coloring Cully's The Question back-up stories.

    In August 2009, it was announced that she had signed an exclusivity agreement with Marvel Comics.

    ","email":"laura@sequentialtart.com","gender":2,"hometown":"Atlanta, GA","id":1817,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/1218191-001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/1218191-001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/1218191-001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/1218191-001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/1218191-001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/1218191-001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/1218191-001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/1218191-001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/1218191-001.jpg","image_tags":"All Images,Laura Martin"},"name":"Laura Martin","site_detail_url":"https://comicvine.gamespot.com/laura-martin/4040-1817/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1824/","birth":null,"count_of_isssue_appearances":null,"country":"England, United Kingdom","date_added":"2008-06-06 11:28:14","date_last_updated":"2018-10-09 07:43:39","death":null,"deck":"Gary Frank is a British comic book artist. He was the former artist on Action Comics, and before that on Supreme Power, The Incredible Hulk, Supergirl, Birds of Prey, Kin, and Midnight Nation. He is the current artist on the Batman: Earth One series of original graphic novels and the SHAZAM! back-up feature in the New 52 Justice League.","description":"

    Gary Frank (born 1969) is a British comic book artist and penciller, getting his start in British publications such as Toxic! before becoming notable in the United States for his work on Midnight Nation and Supreme Power, both written by J. Michael Straczynski. He has also worked with author Peter David on The Incredible Hulk and Supergirl, and had a creator-owned series, Kin Comic, which he wrote himself, published by Top Cow in 2000.

    In his early career he frequently worked with inker Cam Smith (The Incredible Hulk, Supergirl, Gen 13).

    On May 10, 2007, having worked several years on a Marvel exclusive contract, Frank signed a new one with DC Comics. He most recently served as the regular series artist on Action Comics with writer Geoff Johns. After the New Krypton story arc, Action Comics became a title headlined by Kryptonian heroes Nightwing and Flamebird. As a result of this, the creative team on Action Comics changed.

    Frank and Johns worked with Superman again in a mini-series format entitled Superman: Secret Origin. The story features what Johns and DC Executive Editor Dan DiDio are calling a \"definitive\" telling of the origin story of Superman, dealing with his life in Smallville, his first adventure with the Legion of Super-Heroes as Superboy, and his arrival in Metropolis and at the Daily Planet. Superman (or Clark), is struggling with being an outsider, and is not sure what to do with his life.

    Frank and Johns also worked on Batman: Earth One. A story, with Bruce Wayne beginning his career as the Dark Knight of Gotham City. After the success of Volume one there will soon be volume 2 of Batman Earth One coming out in 2013.

    Frank also drew the SHAZAM! Backups in Justice league with also Geoff Johns writing them.

    Frank and Johns are currently working on Doomsday Clock.

    ","email":null,"gender":1,"hometown":"Bristol","id":1824,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/3021958-cci2013_frank.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/3021958-cci2013_frank.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/3021958-cci2013_frank.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/3021958-cci2013_frank.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/3021958-cci2013_frank.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/3021958-cci2013_frank.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/3021958-cci2013_frank.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/3021958-cci2013_frank.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/3021958-cci2013_frank.jpg","image_tags":"All Images"},"name":"Gary Frank","site_detail_url":"https://comicvine.gamespot.com/gary-frank/4040-1824/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1825/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:13","date_last_updated":"2013-02-17 05:52:53","death":null,"deck":"Coloring Studio","description":"

    Known Members

    Francisco Ruiz-Velasco

    Raul Trevino

    ","email":null,"gender":0,"hometown":null,"id":1825,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1177790-1118667_1063443_question_mark_large_1__super.jpg","image_tags":"All Images"},"name":"Studio F","site_detail_url":"https://comicvine.gamespot.com/studio-f/4040-1825/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1827/","birth":null,"count_of_isssue_appearances":null,"country":"Canada","date_added":"2008-06-06 11:28:14","date_last_updated":"2022-02-26 13:31:45","death":null,"deck":"Dale Keown is one of the world's most renowned comic artists.","description":"

    Dale Keown was born in Grande Prairie, Alberta, Canada.While in Canada he started working for Aircel Comics in 1986.

    \"The
    The Pitt
    \"Hulk:
    Hulk: The End

    His credits there included: Samurai, Elford, Dragonforce, and Warlock 5. But his big break came in 1989 when he got into Marvel comics. There his first project was called Nth Man: the Ultimate Ninja. After that he was put permanently on the Incredible Hulk series. There he worked until 1993 with Peter David, the writer, before moving on to Image and more specifically Top Cow. Top Cow gave him his chance to publish his first self created character, the Pitt. At that time he was scraping together his own studio called Full Bleed Studios. It was not until 1995 that he opened the studios and fully control all aspects of “The Pitt.”

    He then moved on to develop the widely successful comic The Darkness, for Image and Top Cow comic and eventually combining efforts with Peter David once more on the Hulk for Marvel Comics. Peter and himself created the run entitled “ Hulk: The End.\"

    It was also at that point where he created a crossover with the Hulk and the Darkness.

    ","email":"dale@fullbleed.com","gender":1,"hometown":"Toronto","id":1827,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/399513-197731-dale-keown.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/399513-197731-dale-keown.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/399513-197731-dale-keown.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/399513-197731-dale-keown.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/399513-197731-dale-keown.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/399513-197731-dale-keown.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/399513-197731-dale-keown.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/399513-197731-dale-keown.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/399513-197731-dale-keown.jpg","image_tags":"All Images,Dale Keown"},"name":"Dale Keown","site_detail_url":"https://comicvine.gamespot.com/dale-keown/4040-1827/","website":"http://www.fullbleed.com/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1828/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:10","date_last_updated":"2013-03-14 03:49:45","death":null,"deck":null,"description":null,"email":null,"gender":1,"hometown":null,"id":1828,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1118677-1063443_question_mark_large_2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1118677-1063443_question_mark_large_2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1118677-1063443_question_mark_large_2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1118677-1063443_question_mark_large_2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1118677-1063443_question_mark_large_2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1118677-1063443_question_mark_large_2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1118677-1063443_question_mark_large_2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1118677-1063443_question_mark_large_2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1118677-1063443_question_mark_large_2_.jpg","image_tags":null},"name":"Antonio Fabela","site_detail_url":"https://comicvine.gamespot.com/antonio-fabela/4040-1828/","website":null},{"aliases":"Michael D. Perkins","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1839/","birth":null,"count_of_isssue_appearances":null,"country":"United States","date_added":"2008-06-06 11:28:13","date_last_updated":"2018-03-09 17:37:20","death":null,"deck":"An American comic book artist whose talent can be seen on many covers of Marvel Comics.","description":"

    Currently works exclusively for Marvel.

    ","email":"mike@mikeperkinsart.com","gender":1,"hometown":"Tampa, Florida","id":1839,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6320400-0598851211-Mike-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6320400-0598851211-Mike-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6320400-0598851211-Mike-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6320400-0598851211-Mike-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6320400-0598851211-Mike-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6320400-0598851211-Mike-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6320400-0598851211-Mike-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6320400-0598851211-Mike-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6320400-0598851211-Mike-.jpg","image_tags":"All Images"},"name":"Mike D. Perkins","site_detail_url":"https://comicvine.gamespot.com/mike-d-perkins/4040-1839/","website":"http://www.mikeperkinsart.com/"},{"aliases":"Drew Hennessy","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1840/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:13","date_last_updated":"2015-03-03 03:27:08","death":null,"deck":"Andrew Hennessy is an inker. He currently works for Marvel. He also goes by the name Drew Hennessy.","description":"

    .

    ","email":null,"gender":1,"hometown":null,"id":1840,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1118663-1063443_question_mark_large_1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1118663-1063443_question_mark_large_1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1118663-1063443_question_mark_large_1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1118663-1063443_question_mark_large_1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1118663-1063443_question_mark_large_1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1118663-1063443_question_mark_large_1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1118663-1063443_question_mark_large_1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1118663-1063443_question_mark_large_1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1118663-1063443_question_mark_large_1_.jpg","image_tags":"All Images"},"name":"Andrew Hennessy","site_detail_url":"https://comicvine.gamespot.com/andrew-hennessy/4040-1840/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1841/","birth":null,"count_of_isssue_appearances":null,"country":"Italy","date_added":"2008-06-06 11:28:13","date_last_updated":"2019-07-27 11:25:15","death":null,"deck":"Italian artist.","description":null,"email":null,"gender":2,"hometown":null,"id":1841,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11137/111377407/7020359-laura_villari.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11137/111377407/7020359-laura_villari.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11137/111377407/7020359-laura_villari.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11137/111377407/7020359-laura_villari.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11137/111377407/7020359-laura_villari.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11137/111377407/7020359-laura_villari.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11137/111377407/7020359-laura_villari.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11137/111377407/7020359-laura_villari.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11137/111377407/7020359-laura_villari.jpg","image_tags":"All Images"},"name":"Laura Villari","site_detail_url":"https://comicvine.gamespot.com/laura-villari/4040-1841/","website":null},{"aliases":"伊藤潤二","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1905/","birth":"1963-07-31 00:00:00","count_of_isssue_appearances":null,"country":"Japan","date_added":"2008-06-06 11:28:02","date_last_updated":"2020-10-11 07:07:58","death":null,"deck":"Mostly know to make horror short stories since his debut with the Tomie (also know under Museum of Terror volume 1 & 2) in the Japanese magazine Halloween Comics","description":"

    He was inspired from a young age by Kazuo Umezu's comics and his older sisters drawing.

    ","email":null,"gender":1,"hometown":"Gifu Prefecture","id":1905,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11133/111331711/6460035-9609951957-2410..jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11133/111331711/6460035-9609951957-2410..jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11133/111331711/6460035-9609951957-2410..jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11133/111331711/6460035-9609951957-2410..jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11133/111331711/6460035-9609951957-2410..jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11133/111331711/6460035-9609951957-2410..jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11133/111331711/6460035-9609951957-2410..jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11133/111331711/6460035-9609951957-2410..jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11133/111331711/6460035-9609951957-2410..jpg","image_tags":"All Images"},"name":"Junji Ito","site_detail_url":"https://comicvine.gamespot.com/junji-ito/4040-1905/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1906/","birth":"1995-08-01 00:00:00","count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:09","date_last_updated":"2012-05-20 11:51:25","death":{"date":"2001-08-01 00:00:00.000000","timezone_type":3,"timezone":"America/Los_Angeles"},"deck":"Animation and production studio started by former Wildstorm illustrator Mat Broome. Worked for various comics companies, as well as marketing materials for Lion's Gate Cinema, BMG Music, and Sony Entertainment. Closed shop when Mat Broome accepted a position at Sony Entertainment.","description":null,"email":null,"gender":3,"hometown":null,"id":1906,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9541/1281186-9.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9541/1281186-9.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9541/1281186-9.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9541/1281186-9.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9541/1281186-9.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9541/1281186-9.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9541/1281186-9.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9541/1281186-9.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9541/1281186-9.jpg","image_tags":"All Images"},"name":"Digital Broome","site_detail_url":"https://comicvine.gamespot.com/digital-broome/4040-1906/","website":null},{"aliases":"Juan Barranco","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1915/","birth":null,"count_of_isssue_appearances":null,"country":"Spain","date_added":"2008-06-06 11:28:11","date_last_updated":"2013-04-01 10:31:37","death":null,"deck":"Spanish penciller and inker.","description":"

    Oscar Jimenez has also published as Oscar Jimenez Garrido and under the pseudonym Juan Barranco .

    ","email":null,"gender":1,"hometown":"Barcelona","id":1915,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/128795/2957050-oscar%20jimenez%20at%20san%20antoni%20market%20spain%20%281%29.jpg","image_tags":"All Images,Creators,Oscar Jimenez"},"name":"Oscar Jimenez","site_detail_url":"https://comicvine.gamespot.com/oscar-jimenez/4040-1915/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1916/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:08","date_last_updated":"2012-01-06 15:12:37","death":null,"deck":null,"description":null,"email":null,"gender":0,"hometown":null,"id":1916,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Eduardo Alpuente","site_detail_url":"https://comicvine.gamespot.com/eduardo-alpuente/4040-1916/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1921/","birth":null,"count_of_isssue_appearances":null,"country":"Brazil","date_added":"2008-06-06 11:28:13","date_last_updated":"2013-03-05 01:32:46","death":null,"deck":"Brazilian comic book artist","description":"

    Real name; Benedito José Nascimento.

    ","email":null,"gender":1,"hometown":"Belém, Pará","id":1921,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/403361-157167-joe-bennett.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/403361-157167-joe-bennett.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/403361-157167-joe-bennett.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/403361-157167-joe-bennett.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/403361-157167-joe-bennett.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/403361-157167-joe-bennett.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/403361-157167-joe-bennett.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/403361-157167-joe-bennett.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9241/403361-157167-joe-bennett.jpg","image_tags":"All Images,Joe Bennett"},"name":"Joe Bennett","site_detail_url":"https://comicvine.gamespot.com/joe-bennett/4040-1921/","website":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1922/","birth":null,"count_of_isssue_appearances":null,"country":null,"date_added":"2008-06-06 11:28:14","date_last_updated":"2015-01-28 10:13:14","death":null,"deck":"Danny Miki is one the best inker still to date. His work spans from Marvel, DC, and Image comics. Married to the Etreme Studios receptionist during the late 90's.","description":"

    Started his inking career at marvel in the early 90's as Art thibert's inking assistant. Joined Image comics under Rob Liefeld Extreme Studios banner in 1993. Danny Miki started inking Youngblood comics in 1993. After finding his style at Extreme Studios, Danny tremendous inking talents have since led him to the pages of Supreme, Bloodstrike, Brigade, Team YoungBlood, Spawn, The Darkness, Moonknight, The New Avenger, Ultimate Six...ect. Danny also, held down a freelance job with Mattel, designing toys.

    ","email":null,"gender":1,"hometown":null,"id":1922,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/2878684-danny_miki_2010_wizard_anaheim_convention_0actzh.jpeg","image_tags":"All Images"},"name":"Danny Miki","site_detail_url":"https://comicvine.gamespot.com/danny-miki/4040-1922/","website":"http://www.koimando.deviantart.com/"},{"aliases":"Jose Villarrubia","api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1923/","birth":"1961-11-17 00:00:00","count_of_isssue_appearances":null,"country":"Spain","date_added":"2008-06-06 11:28:13","date_last_updated":"2020-12-31 13:05:48","death":null,"deck":"Colorist","description":"

    Overview

     
    José Villarrubia – is a Spanish artist and art teacher who has done considerable work in the American comic book industry, for Marvel Comics, DC Comics as a colorist.","email":null,"gender":1,"hometown":"Madrid","id":1923,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/7739875-villarrubia.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/7739875-villarrubia.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/7739875-villarrubia.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/7739875-villarrubia.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/7739875-villarrubia.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/7739875-villarrubia.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/7739875-villarrubia.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/7739875-villarrubia.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/7739875-villarrubia.jpg","image_tags":"All Images"},"name":"José Villarrubia","site_detail_url":"https://comicvine.gamespot.com/jose-villarrubia/4040-1923/","website":null}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/power-details/power-4035-23.json b/samples/api-data/power-details/power-4035-23.json new file mode 100644 index 0000000..a2dbabf --- /dev/null +++ b/samples/api-data/power-details/power-4035-23.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-23/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1469/","id":1469,"name":"Mystique","site_detail_url":"https://comicvine.gamespot.com/mystique/4005-1469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1486/","id":1486,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/venom/4005-1486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1489/","id":1489,"name":"Flash Thompson","site_detail_url":"https://comicvine.gamespot.com/flash-thompson/4005-1489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1490/","id":1490,"name":"Carnage","site_detail_url":"https://comicvine.gamespot.com/carnage/4005-1490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1504/","id":1504,"name":"Vision","site_detail_url":"https://comicvine.gamespot.com/vision/4005-1504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1684/","id":1684,"name":"Empress","site_detail_url":"https://comicvine.gamespot.com/empress/4005-1684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1702/","id":1702,"name":"Joker","site_detail_url":"https://comicvine.gamespot.com/joker/4005-1702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1776/","id":1776,"name":"Ethan Edwards","site_detail_url":"https://comicvine.gamespot.com/ethan-edwards/4005-1776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1925/","id":1925,"name":"Angela Del Toro","site_detail_url":"https://comicvine.gamespot.com/angela-del-toro/4005-1925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1944/","id":1944,"name":"Xavin","site_detail_url":"https://comicvine.gamespot.com/xavin/4005-1944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2047/","id":2047,"name":"Martian Manhunter","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter/4005-2047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2103/","id":2103,"name":"Turbo","site_detail_url":"https://comicvine.gamespot.com/turbo/4005-2103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2113/","id":2113,"name":"Namorita","site_detail_url":"https://comicvine.gamespot.com/namorita/4005-2113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2151/","id":2151,"name":"Mr. Fantastic","site_detail_url":"https://comicvine.gamespot.com/mr-fantastic/4005-2151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2176/","id":2176,"name":"Selene","site_detail_url":"https://comicvine.gamespot.com/selene/4005-2176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2178/","id":2178,"name":"Llyra","site_detail_url":"https://comicvine.gamespot.com/llyra/4005-2178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2205/","id":2205,"name":"Dormammu","site_detail_url":"https://comicvine.gamespot.com/dormammu/4005-2205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2248/","id":2248,"name":"Rick Jones","site_detail_url":"https://comicvine.gamespot.com/rick-jones/4005-2248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2250/","id":2250,"name":"Red Skull","site_detail_url":"https://comicvine.gamespot.com/red-skull/4005-2250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2259/","id":2259,"name":"Hulkling","site_detail_url":"https://comicvine.gamespot.com/hulkling/4005-2259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2384/","id":2384,"name":"Metamorpho","site_detail_url":"https://comicvine.gamespot.com/metamorpho/4005-2384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2492/","id":2492,"name":"Deathurge","site_detail_url":"https://comicvine.gamespot.com/deathurge/4005-2492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2496/","id":2496,"name":"Oblivion","site_detail_url":"https://comicvine.gamespot.com/oblivion/4005-2496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2551/","id":2551,"name":"Vixen","site_detail_url":"https://comicvine.gamespot.com/vixen/4005-2551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2635/","id":2635,"name":"Mephisto","site_detail_url":"https://comicvine.gamespot.com/mephisto/4005-2635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2638/","id":2638,"name":"Malevolence","site_detail_url":"https://comicvine.gamespot.com/malevolence/4005-2638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3179/","id":3179,"name":"Mr. Sinister","site_detail_url":"https://comicvine.gamespot.com/mr-sinister/4005-3179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3279/","id":3279,"name":"Moonstone","site_detail_url":"https://comicvine.gamespot.com/moonstone/4005-3279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3282/","id":3282,"name":"Fixer","site_detail_url":"https://comicvine.gamespot.com/fixer/4005-3282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3381/","id":3381,"name":"Spawn (Simmons)","site_detail_url":"https://comicvine.gamespot.com/spawn-simmons/4005-3381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3409/","id":3409,"name":"Shift","site_detail_url":"https://comicvine.gamespot.com/shift/4005-3409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3481/","id":3481,"name":"Social Butterfly","site_detail_url":"https://comicvine.gamespot.com/social-butterfly/4005-3481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3507/","id":3507,"name":"Odin","site_detail_url":"https://comicvine.gamespot.com/odin/4005-3507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3558/","id":3558,"name":"Ka-Zar","site_detail_url":"https://comicvine.gamespot.com/ka-zar/4005-3558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3565/","id":3565,"name":"Amphibius","site_detail_url":"https://comicvine.gamespot.com/amphibius/4005-3565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3586/","id":3586,"name":"Beast Boy","site_detail_url":"https://comicvine.gamespot.com/beast-boy/4005-3586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3700/","id":3700,"name":"Hooded Claw","site_detail_url":"https://comicvine.gamespot.com/hooded-claw/4005-3700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3716/","id":3716,"name":"Renee Montoya","site_detail_url":"https://comicvine.gamespot.com/renee-montoya/4005-3716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3718/","id":3718,"name":"Riddler","site_detail_url":"https://comicvine.gamespot.com/riddler/4005-3718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3737/","id":3737,"name":"Amazo","site_detail_url":"https://comicvine.gamespot.com/amazo/4005-3737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3763/","id":3763,"name":"Eclipso","site_detail_url":"https://comicvine.gamespot.com/eclipso/4005-3763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4085/","id":4085,"name":"Nao Yut","site_detail_url":"https://comicvine.gamespot.com/nao-yut/4005-4085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4088/","id":4088,"name":"Elasti-Girl","site_detail_url":"https://comicvine.gamespot.com/elasti-girl/4005-4088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4124/","id":4124,"name":"Alex Allston","site_detail_url":"https://comicvine.gamespot.com/alex-allston/4005-4124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4125/","id":4125,"name":"Alexandra Allston","site_detail_url":"https://comicvine.gamespot.com/alexandra-allston/4005-4125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4324/","id":4324,"name":"Loki","site_detail_url":"https://comicvine.gamespot.com/loki/4005-4324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4342/","id":4342,"name":"Hela","site_detail_url":"https://comicvine.gamespot.com/hela/4005-4342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4375/","id":4375,"name":"Ninjak","site_detail_url":"https://comicvine.gamespot.com/ninjak/4005-4375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4423/","id":4423,"name":"Gorgeous George","site_detail_url":"https://comicvine.gamespot.com/gorgeous-george/4005-4423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4458/","id":4458,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-4458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4484/","id":4484,"name":"Scorpion","site_detail_url":"https://comicvine.gamespot.com/scorpion/4005-4484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4598/","id":4598,"name":"Christopher Chance","site_detail_url":"https://comicvine.gamespot.com/christopher-chance/4005-4598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4678/","id":4678,"name":"Livewire","site_detail_url":"https://comicvine.gamespot.com/livewire/4005-4678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4937/","id":4937,"name":"Rip Hunter","site_detail_url":"https://comicvine.gamespot.com/rip-hunter/4005-4937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4994/","id":4994,"name":"Freakshow","site_detail_url":"https://comicvine.gamespot.com/freakshow/4005-4994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5310/","id":5310,"name":"Trigon","site_detail_url":"https://comicvine.gamespot.com/trigon/4005-5310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5411/","id":5411,"name":"Qui-Gon Jinn","site_detail_url":"https://comicvine.gamespot.com/qui-gon-jinn/4005-5411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5515/","id":5515,"name":"Destroyer","site_detail_url":"https://comicvine.gamespot.com/destroyer/4005-5515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5569/","id":5569,"name":"Bloodshot","site_detail_url":"https://comicvine.gamespot.com/bloodshot/4005-5569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5702/","id":5702,"name":"Black Orchid","site_detail_url":"https://comicvine.gamespot.com/black-orchid/4005-5702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5713/","id":5713,"name":"Creeper","site_detail_url":"https://comicvine.gamespot.com/creeper/4005-5713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5945/","id":5945,"name":"Chameleon Boy","site_detail_url":"https://comicvine.gamespot.com/chameleon-boy/4005-5945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6068/","id":6068,"name":"Marauder","site_detail_url":"https://comicvine.gamespot.com/marauder/4005-6068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6141/","id":6141,"name":"Morfex","site_detail_url":"https://comicvine.gamespot.com/morfex/4005-6141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6199/","id":6199,"name":"Sister Superior","site_detail_url":"https://comicvine.gamespot.com/sister-superior/4005-6199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6270/","id":6270,"name":"Plastic Man","site_detail_url":"https://comicvine.gamespot.com/plastic-man/4005-6270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6673/","id":6673,"name":"Miss Masque","site_detail_url":"https://comicvine.gamespot.com/miss-masque/4005-6673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6773/","id":6773,"name":"Yekaterina","site_detail_url":"https://comicvine.gamespot.com/yekaterina/4005-6773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6804/","id":6804,"name":"Recorder Zeta-9","site_detail_url":"https://comicvine.gamespot.com/recorder-zeta-9/4005-6804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6811/","id":6811,"name":"Living Tribunal","site_detail_url":"https://comicvine.gamespot.com/living-tribunal/4005-6811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7190/","id":7190,"name":"Geomancer","site_detail_url":"https://comicvine.gamespot.com/geomancer/4005-7190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7223/","id":7223,"name":"Warlock","site_detail_url":"https://comicvine.gamespot.com/warlock/4005-7223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7225/","id":7225,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-7225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7258/","id":7258,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4005-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7549/","id":7549,"name":"Kermit the Frog","site_detail_url":"https://comicvine.gamespot.com/kermit-the-frog/4005-7549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7604/","id":7604,"name":"Meggan","site_detail_url":"https://comicvine.gamespot.com/meggan/4005-7604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7690/","id":7690,"name":"Chuckles","site_detail_url":"https://comicvine.gamespot.com/chuckles/4005-7690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7694/","id":7694,"name":"Zandar","site_detail_url":"https://comicvine.gamespot.com/zandar/4005-7694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8047/","id":8047,"name":"Shelob","site_detail_url":"https://comicvine.gamespot.com/shelob/4005-8047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8247/","id":8247,"name":"Avengelyne","site_detail_url":"https://comicvine.gamespot.com/avengelyne/4005-8247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8306/","id":8306,"name":"Mastermind","site_detail_url":"https://comicvine.gamespot.com/mastermind/4005-8306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8966/","id":8966,"name":"Radioactive Man","site_detail_url":"https://comicvine.gamespot.com/radioactive-man/4005-8966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9080/","id":9080,"name":"Edward C. Burke","site_detail_url":"https://comicvine.gamespot.com/edward-c-burke/4005-9080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9231/","id":9231,"name":"Lone Ranger","site_detail_url":"https://comicvine.gamespot.com/lone-ranger/4005-9231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9265/","id":9265,"name":"Randall Boggs","site_detail_url":"https://comicvine.gamespot.com/randall-boggs/4005-9265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9315/","id":9315,"name":"Nemesis","site_detail_url":"https://comicvine.gamespot.com/nemesis/4005-9315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9589/","id":9589,"name":"Clayface (Karlo)","site_detail_url":"https://comicvine.gamespot.com/clayface-karlo/4005-9589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9865/","id":9865,"name":"Amber","site_detail_url":"https://comicvine.gamespot.com/amber/4005-9865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9972/","id":9972,"name":"Sensor","site_detail_url":"https://comicvine.gamespot.com/sensor/4005-9972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10021/","id":10021,"name":"Shrewface","site_detail_url":"https://comicvine.gamespot.com/shrewface/4005-10021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10167/","id":10167,"name":"Bushmaster","site_detail_url":"https://comicvine.gamespot.com/bushmaster/4005-10167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10206/","id":10206,"name":"Gypsy","site_detail_url":"https://comicvine.gamespot.com/gypsy/4005-10206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10222/","id":10222,"name":"Spymaster","site_detail_url":"https://comicvine.gamespot.com/spymaster/4005-10222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10226/","id":10226,"name":"Zeus","site_detail_url":"https://comicvine.gamespot.com/zeus/4005-10226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10242/","id":10242,"name":"Diablo","site_detail_url":"https://comicvine.gamespot.com/diablo/4005-10242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10280/","id":10280,"name":"Doctor Voodoo","site_detail_url":"https://comicvine.gamespot.com/doctor-voodoo/4005-10280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10300/","id":10300,"name":"Beyonder","site_detail_url":"https://comicvine.gamespot.com/beyonder/4005-10300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10526/","id":10526,"name":"God","site_detail_url":"https://comicvine.gamespot.com/god/4005-10526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10572/","id":10572,"name":"Mondo","site_detail_url":"https://comicvine.gamespot.com/mondo/4005-10572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10577/","id":10577,"name":"Bolt","site_detail_url":"https://comicvine.gamespot.com/bolt/4005-10577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10875/","id":10875,"name":"Mercy","site_detail_url":"https://comicvine.gamespot.com/mercy/4005-10875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11051/","id":11051,"name":"Zartan","site_detail_url":"https://comicvine.gamespot.com/zartan/4005-11051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11105/","id":11105,"name":"Lady Jaye","site_detail_url":"https://comicvine.gamespot.com/lady-jaye/4005-11105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11321/","id":11321,"name":"Stuff","site_detail_url":"https://comicvine.gamespot.com/stuff/4005-11321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11330/","id":11330,"name":"Sublime","site_detail_url":"https://comicvine.gamespot.com/sublime/4005-11330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11426/","id":11426,"name":"Senso","site_detail_url":"https://comicvine.gamespot.com/senso/4005-11426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11524/","id":11524,"name":"Power-Skrull","site_detail_url":"https://comicvine.gamespot.com/power-skrull/4005-11524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11552/","id":11552,"name":"Normie Osborn","site_detail_url":"https://comicvine.gamespot.com/normie-osborn/4005-11552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11889/","id":11889,"name":"Dreadface","site_detail_url":"https://comicvine.gamespot.com/dreadface/4005-11889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11892/","id":11892,"name":"Lyja","site_detail_url":"https://comicvine.gamespot.com/lyja/4005-11892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11894/","id":11894,"name":"General Kalamari","site_detail_url":"https://comicvine.gamespot.com/general-kalamari/4005-11894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11939/","id":11939,"name":"Kro","site_detail_url":"https://comicvine.gamespot.com/kro/4005-11939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12013/","id":12013,"name":"Voodoo","site_detail_url":"https://comicvine.gamespot.com/voodoo/4005-12013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12547/","id":12547,"name":"Morph","site_detail_url":"https://comicvine.gamespot.com/morph/4005-12547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12620/","id":12620,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-12620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12641/","id":12641,"name":"Scaleface","site_detail_url":"https://comicvine.gamespot.com/scaleface/4005-12641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12686/","id":12686,"name":"Piston","site_detail_url":"https://comicvine.gamespot.com/piston/4005-12686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12793/","id":12793,"name":"Voodah","site_detail_url":"https://comicvine.gamespot.com/voodah/4005-12793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12801/","id":12801,"name":"Yarko the Great","site_detail_url":"https://comicvine.gamespot.com/yarko-the-great/4005-12801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12810/","id":12810,"name":"R.J. Brande","site_detail_url":"https://comicvine.gamespot.com/rj-brande/4005-12810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13224/","id":13224,"name":"Capricia","site_detail_url":"https://comicvine.gamespot.com/capricia/4005-13224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13311/","id":13311,"name":"Copycat","site_detail_url":"https://comicvine.gamespot.com/copycat/4005-13311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13314/","id":13314,"name":"Nimrod","site_detail_url":"https://comicvine.gamespot.com/nimrod/4005-13314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13349/","id":13349,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/legion/4005-13349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13381/","id":13381,"name":"Foreigner","site_detail_url":"https://comicvine.gamespot.com/foreigner/4005-13381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13564/","id":13564,"name":"Thrust","site_detail_url":"https://comicvine.gamespot.com/thrust/4005-13564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13780/","id":13780,"name":"Nebulon","site_detail_url":"https://comicvine.gamespot.com/nebulon/4005-13780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13901/","id":13901,"name":"Artemis","site_detail_url":"https://comicvine.gamespot.com/artemis/4005-13901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13925/","id":13925,"name":"Morgan Le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-13925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14072/","id":14072,"name":"Death Mask","site_detail_url":"https://comicvine.gamespot.com/death-mask/4005-14072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14083/","id":14083,"name":"Fu Manchu","site_detail_url":"https://comicvine.gamespot.com/fu-manchu/4005-14083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14122/","id":14122,"name":"Rex Mundi","site_detail_url":"https://comicvine.gamespot.com/rex-mundi/4005-14122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14398/","id":14398,"name":"Faker","site_detail_url":"https://comicvine.gamespot.com/faker/4005-14398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14461/","id":14461,"name":"Scourge","site_detail_url":"https://comicvine.gamespot.com/scourge/4005-14461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14476/","id":14476,"name":"Tommy","site_detail_url":"https://comicvine.gamespot.com/tommy/4005-14476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14558/","id":14558,"name":"Nebula","site_detail_url":"https://comicvine.gamespot.com/nebula/4005-14558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14563/","id":14563,"name":"Delphine Courtney","site_detail_url":"https://comicvine.gamespot.com/delphine-courtney/4005-14563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14704/","id":14704,"name":"Marduk Kurios","site_detail_url":"https://comicvine.gamespot.com/marduk-kurios/4005-14704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14728/","id":14728,"name":"Blackheart","site_detail_url":"https://comicvine.gamespot.com/blackheart/4005-14728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14788/","id":14788,"name":"Zodiak","site_detail_url":"https://comicvine.gamespot.com/zodiak/4005-14788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14794/","id":14794,"name":"Rintrah","site_detail_url":"https://comicvine.gamespot.com/rintrah/4005-14794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14820/","id":14820,"name":"Merlyn","site_detail_url":"https://comicvine.gamespot.com/merlyn/4005-14820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15020/","id":15020,"name":"Random","site_detail_url":"https://comicvine.gamespot.com/random/4005-15020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15145/","id":15145,"name":"Scarlett McKenzie","site_detail_url":"https://comicvine.gamespot.com/scarlett-mckenzie/4005-15145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15167/","id":15167,"name":"Martinique Jason","site_detail_url":"https://comicvine.gamespot.com/martinique-jason/4005-15167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15212/","id":15212,"name":"Lasher","site_detail_url":"https://comicvine.gamespot.com/lasher/4005-15212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15541/","id":15541,"name":"Shang Tsung","site_detail_url":"https://comicvine.gamespot.com/shang-tsung/4005-15541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15573/","id":15573,"name":"Armageddon Man","site_detail_url":"https://comicvine.gamespot.com/armageddon-man/4005-15573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15683/","id":15683,"name":"Chthon","site_detail_url":"https://comicvine.gamespot.com/chthon/4005-15683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15778/","id":15778,"name":"Gaea","site_detail_url":"https://comicvine.gamespot.com/gaea/4005-15778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15809/","id":15809,"name":"Swamp Thing","site_detail_url":"https://comicvine.gamespot.com/swamp-thing/4005-15809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16088/","id":16088,"name":"Raptar","site_detail_url":"https://comicvine.gamespot.com/raptar/4005-16088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16210/","id":16210,"name":"Sneak-Thief","site_detail_url":"https://comicvine.gamespot.com/sneak-thief/4005-16210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16433/","id":16433,"name":"Man-E-Faces","site_detail_url":"https://comicvine.gamespot.com/man-e-faces/4005-16433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16701/","id":16701,"name":"Anubis","site_detail_url":"https://comicvine.gamespot.com/anubis/4005-16701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16780/","id":16780,"name":"Comrade X","site_detail_url":"https://comicvine.gamespot.com/comrade-x/4005-16780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16941/","id":16941,"name":"Les Pretend","site_detail_url":"https://comicvine.gamespot.com/les-pretend/4005-16941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17300/","id":17300,"name":"Ernest","site_detail_url":"https://comicvine.gamespot.com/ernest/4005-17300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17607/","id":17607,"name":"Engineer","site_detail_url":"https://comicvine.gamespot.com/engineer/4005-17607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17624/","id":17624,"name":"Squid","site_detail_url":"https://comicvine.gamespot.com/squid/4005-17624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17704/","id":17704,"name":"Ravana","site_detail_url":"https://comicvine.gamespot.com/ravana/4005-17704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17769/","id":17769,"name":"Kana","site_detail_url":"https://comicvine.gamespot.com/kana/4005-17769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18010/","id":18010,"name":"Plant Man","site_detail_url":"https://comicvine.gamespot.com/plant-man/4005-18010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18078/","id":18078,"name":"Super-Hip","site_detail_url":"https://comicvine.gamespot.com/super-hip/4005-18078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18246/","id":18246,"name":"Abraxas","site_detail_url":"https://comicvine.gamespot.com/abraxas/4005-18246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18562/","id":18562,"name":"Metarchus","site_detail_url":"https://comicvine.gamespot.com/metarchus/4005-18562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18576/","id":18576,"name":"The Spider","site_detail_url":"https://comicvine.gamespot.com/the-spider/4005-18576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18611/","id":18611,"name":"The Thousand","site_detail_url":"https://comicvine.gamespot.com/the-thousand/4005-18611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18620/","id":18620,"name":"Ravage","site_detail_url":"https://comicvine.gamespot.com/ravage/4005-18620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18770/","id":18770,"name":"Diabolik","site_detail_url":"https://comicvine.gamespot.com/diabolik/4005-18770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19181/","id":19181,"name":"Gruagach of Lough Leane","site_detail_url":"https://comicvine.gamespot.com/gruagach-of-lough-leane/4005-19181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19187/","id":19187,"name":"Cosmo","site_detail_url":"https://comicvine.gamespot.com/cosmo/4005-19187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19375/","id":19375,"name":"Skrull Wolverine","site_detail_url":"https://comicvine.gamespot.com/skrull-wolverine/4005-19375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19772/","id":19772,"name":"Kami","site_detail_url":"https://comicvine.gamespot.com/kami/4005-19772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19832/","id":19832,"name":"Caligula Minus","site_detail_url":"https://comicvine.gamespot.com/caligula-minus/4005-19832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19937/","id":19937,"name":"Blazing Fury","site_detail_url":"https://comicvine.gamespot.com/blazing-fury/4005-19937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20027/","id":20027,"name":"Zabyk","site_detail_url":"https://comicvine.gamespot.com/zabyk/4005-20027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20028/","id":20028,"name":"Prince Dezan","site_detail_url":"https://comicvine.gamespot.com/prince-dezan/4005-20028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20093/","id":20093,"name":"Cordelia","site_detail_url":"https://comicvine.gamespot.com/cordelia/4005-20093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20125/","id":20125,"name":"Willow","site_detail_url":"https://comicvine.gamespot.com/willow/4005-20125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21133/","id":21133,"name":"Roxxas","site_detail_url":"https://comicvine.gamespot.com/roxxas/4005-21133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21211/","id":21211,"name":"Effigy","site_detail_url":"https://comicvine.gamespot.com/effigy/4005-21211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21332/","id":21332,"name":"Super-Skrull","site_detail_url":"https://comicvine.gamespot.com/super-skrull/4005-21332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21350/","id":21350,"name":"Lamia","site_detail_url":"https://comicvine.gamespot.com/lamia/4005-21350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21369/","id":21369,"name":"Daffy Duck","site_detail_url":"https://comicvine.gamespot.com/daffy-duck/4005-21369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21445/","id":21445,"name":"Twelve","site_detail_url":"https://comicvine.gamespot.com/twelve/4005-21445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21557/","id":21557,"name":"Marie Laveau","site_detail_url":"https://comicvine.gamespot.com/marie-laveau/4005-21557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21677/","id":21677,"name":"Sultan Magus","site_detail_url":"https://comicvine.gamespot.com/sultan-magus/4005-21677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21893/","id":21893,"name":"Satan","site_detail_url":"https://comicvine.gamespot.com/satan/4005-21893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21996/","id":21996,"name":"Scream","site_detail_url":"https://comicvine.gamespot.com/scream/4005-21996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22071/","id":22071,"name":"Orochi","site_detail_url":"https://comicvine.gamespot.com/orochi/4005-22071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22312/","id":22312,"name":"Girl One","site_detail_url":"https://comicvine.gamespot.com/girl-one/4005-22312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22707/","id":22707,"name":"Animal Man","site_detail_url":"https://comicvine.gamespot.com/animal-man/4005-22707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22784/","id":22784,"name":"Prometheus","site_detail_url":"https://comicvine.gamespot.com/prometheus/4005-22784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22892/","id":22892,"name":"Tarzan","site_detail_url":"https://comicvine.gamespot.com/tarzan/4005-22892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22895/","id":22895,"name":"Inque","site_detail_url":"https://comicvine.gamespot.com/inque/4005-22895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23215/","id":23215,"name":"Tim Hunter","site_detail_url":"https://comicvine.gamespot.com/tim-hunter/4005-23215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23450/","id":23450,"name":"Resurrection Man","site_detail_url":"https://comicvine.gamespot.com/resurrection-man/4005-23450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23471/","id":23471,"name":"Grunge","site_detail_url":"https://comicvine.gamespot.com/grunge/4005-23471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23578/","id":23578,"name":"Caitlin Fairchild","site_detail_url":"https://comicvine.gamespot.com/caitlin-fairchild/4005-23578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23636/","id":23636,"name":"Sensational Hydra","site_detail_url":"https://comicvine.gamespot.com/sensational-hydra/4005-23636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23708/","id":23708,"name":"Xero","site_detail_url":"https://comicvine.gamespot.com/xero/4005-23708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23825/","id":23825,"name":"Plyck","site_detail_url":"https://comicvine.gamespot.com/plyck/4005-23825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24010/","id":24010,"name":"Llan","site_detail_url":"https://comicvine.gamespot.com/llan/4005-24010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24129/","id":24129,"name":"Hybrid","site_detail_url":"https://comicvine.gamespot.com/hybrid/4005-24129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24139/","id":24139,"name":"Odo","site_detail_url":"https://comicvine.gamespot.com/odo/4005-24139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24232/","id":24232,"name":"Lucifer Morningstar","site_detail_url":"https://comicvine.gamespot.com/lucifer-morningstar/4005-24232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24308/","id":24308,"name":"Lord Satanus","site_detail_url":"https://comicvine.gamespot.com/lord-satanus/4005-24308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24481/","id":24481,"name":"Arioch","site_detail_url":"https://comicvine.gamespot.com/arioch/4005-24481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25082/","id":25082,"name":"Dwight McCarthy","site_detail_url":"https://comicvine.gamespot.com/dwight-mccarthy/4005-25082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25158/","id":25158,"name":"Shade","site_detail_url":"https://comicvine.gamespot.com/shade/4005-25158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25595/","id":25595,"name":"Isz","site_detail_url":"https://comicvine.gamespot.com/isz/4005-25595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25666/","id":25666,"name":"Spidercide","site_detail_url":"https://comicvine.gamespot.com/spidercide/4005-25666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25715/","id":25715,"name":"Volx","site_detail_url":"https://comicvine.gamespot.com/volx/4005-25715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25826/","id":25826,"name":"Pagan","site_detail_url":"https://comicvine.gamespot.com/pagan/4005-25826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26121/","id":26121,"name":"Replica","site_detail_url":"https://comicvine.gamespot.com/replica/4005-26121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26181/","id":26181,"name":"Facade","site_detail_url":"https://comicvine.gamespot.com/facade/4005-26181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26358/","id":26358,"name":"Lady Clayface","site_detail_url":"https://comicvine.gamespot.com/lady-clayface/4005-26358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26531/","id":26531,"name":"Vranx","site_detail_url":"https://comicvine.gamespot.com/vranx/4005-26531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26995/","id":26995,"name":"Adversary","site_detail_url":"https://comicvine.gamespot.com/adversary/4005-26995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27005/","id":27005,"name":"Nyx","site_detail_url":"https://comicvine.gamespot.com/nyx/4005-27005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27075/","id":27075,"name":"Film Freak","site_detail_url":"https://comicvine.gamespot.com/film-freak/4005-27075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27436/","id":27436,"name":"Mr. Mxyzptlk","site_detail_url":"https://comicvine.gamespot.com/mr-mxyzptlk/4005-27436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27627/","id":27627,"name":"Triax","site_detail_url":"https://comicvine.gamespot.com/triax/4005-27627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27821/","id":27821,"name":"Monkey King","site_detail_url":"https://comicvine.gamespot.com/monkey-king/4005-27821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27870/","id":27870,"name":"Lady Luger","site_detail_url":"https://comicvine.gamespot.com/lady-luger/4005-27870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28118/","id":28118,"name":"Protege","site_detail_url":"https://comicvine.gamespot.com/protege/4005-28118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28155/","id":28155,"name":"Samuel J. Skrull","site_detail_url":"https://comicvine.gamespot.com/samuel-j-skrull/4005-28155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28420/","id":28420,"name":"Byth","site_detail_url":"https://comicvine.gamespot.com/byth/4005-28420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28670/","id":28670,"name":"Fantasma","site_detail_url":"https://comicvine.gamespot.com/fantasma/4005-28670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28674/","id":28674,"name":"Tyrak","site_detail_url":"https://comicvine.gamespot.com/tyrak/4005-28674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28923/","id":28923,"name":"The Shadow","site_detail_url":"https://comicvine.gamespot.com/the-shadow/4005-28923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28945/","id":28945,"name":"Dittomaster","site_detail_url":"https://comicvine.gamespot.com/dittomaster/4005-28945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29070/","id":29070,"name":"Slaymaster","site_detail_url":"https://comicvine.gamespot.com/slaymaster/4005-29070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29194/","id":29194,"name":"Dorrek VII","site_detail_url":"https://comicvine.gamespot.com/dorrek-vii/4005-29194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29217/","id":29217,"name":"Anelle","site_detail_url":"https://comicvine.gamespot.com/anelle/4005-29217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29231/","id":29231,"name":"Gumby","site_detail_url":"https://comicvine.gamespot.com/gumby/4005-29231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29591/","id":29591,"name":"Tala","site_detail_url":"https://comicvine.gamespot.com/tala/4005-29591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29643/","id":29643,"name":"Unknown Soldier","site_detail_url":"https://comicvine.gamespot.com/unknown-soldier/4005-29643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29987/","id":29987,"name":"Lili Deneuve","site_detail_url":"https://comicvine.gamespot.com/lili-deneuve/4005-29987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30611/","id":30611,"name":"Skeeve","site_detail_url":"https://comicvine.gamespot.com/skeeve/4005-30611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31024/","id":31024,"name":"Chameleon Chief","site_detail_url":"https://comicvine.gamespot.com/chameleon-chief/4005-31024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31040/","id":31040,"name":"Masquerader","site_detail_url":"https://comicvine.gamespot.com/masquerader/4005-31040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31131/","id":31131,"name":"The Gambler","site_detail_url":"https://comicvine.gamespot.com/the-gambler/4005-31131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31297/","id":31297,"name":"Quisp","site_detail_url":"https://comicvine.gamespot.com/quisp/4005-31297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31822/","id":31822,"name":"Camille","site_detail_url":"https://comicvine.gamespot.com/camille/4005-31822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32224/","id":32224,"name":"Color Kid","site_detail_url":"https://comicvine.gamespot.com/color-kid/4005-32224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32612/","id":32612,"name":"Chris King","site_detail_url":"https://comicvine.gamespot.com/chris-king/4005-32612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32721/","id":32721,"name":"Valerie Foxworth","site_detail_url":"https://comicvine.gamespot.com/valerie-foxworth/4005-32721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32866/","id":32866,"name":"Ch'i-Lin","site_detail_url":"https://comicvine.gamespot.com/chi-lin/4005-32866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33303/","id":33303,"name":"Plastic Man","site_detail_url":"https://comicvine.gamespot.com/plastic-man/4005-33303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33312/","id":33312,"name":"Boris Badenov","site_detail_url":"https://comicvine.gamespot.com/boris-badenov/4005-33312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33762/","id":33762,"name":"Fusion","site_detail_url":"https://comicvine.gamespot.com/fusion/4005-33762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33970/","id":33970,"name":"Chisel McSue","site_detail_url":"https://comicvine.gamespot.com/chisel-mcsue/4005-33970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33982/","id":33982,"name":"Magica De Spell","site_detail_url":"https://comicvine.gamespot.com/magica-de-spell/4005-33982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33993/","id":33993,"name":"Skrull X","site_detail_url":"https://comicvine.gamespot.com/skrull-x/4005-33993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34080/","id":34080,"name":"Phantom Blot","site_detail_url":"https://comicvine.gamespot.com/phantom-blot/4005-34080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34265/","id":34265,"name":"Grandpa Beagle","site_detail_url":"https://comicvine.gamespot.com/grandpa-beagle/4005-34265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34826/","id":34826,"name":"Flintheart Glomgold","site_detail_url":"https://comicvine.gamespot.com/flintheart-glomgold/4005-34826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35061/","id":35061,"name":"Wraithwitch","site_detail_url":"https://comicvine.gamespot.com/wraithwitch/4005-35061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35081/","id":35081,"name":"Basil of Baker Street","site_detail_url":"https://comicvine.gamespot.com/basil-of-baker-street/4005-35081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35106/","id":35106,"name":"Adam-II","site_detail_url":"https://comicvine.gamespot.com/adam-ii/4005-35106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35113/","id":35113,"name":"Zirksu","site_detail_url":"https://comicvine.gamespot.com/zirksu/4005-35113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35188/","id":35188,"name":"Clayface (Hagen)","site_detail_url":"https://comicvine.gamespot.com/clayface-hagen/4005-35188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35327/","id":35327,"name":"Baroness S'Bak","site_detail_url":"https://comicvine.gamespot.com/baroness-sbak/4005-35327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36018/","id":36018,"name":"Danielle Nicolle","site_detail_url":"https://comicvine.gamespot.com/danielle-nicolle/4005-36018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36064/","id":36064,"name":"K9999","site_detail_url":"https://comicvine.gamespot.com/k9999/4005-36064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36079/","id":36079,"name":"Nova Kane","site_detail_url":"https://comicvine.gamespot.com/nova-kane/4005-36079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36398/","id":36398,"name":"Laurox The Lecherous","site_detail_url":"https://comicvine.gamespot.com/laurox-the-lecherous/4005-36398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36501/","id":36501,"name":"Falseface","site_detail_url":"https://comicvine.gamespot.com/falseface/4005-36501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36516/","id":36516,"name":"William Payton","site_detail_url":"https://comicvine.gamespot.com/william-payton/4005-36516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36815/","id":36815,"name":"Boss Smiley","site_detail_url":"https://comicvine.gamespot.com/boss-smiley/4005-36815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37303/","id":37303,"name":"Genghis Khan","site_detail_url":"https://comicvine.gamespot.com/genghis-khan/4005-37303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37801/","id":37801,"name":"Jake Long","site_detail_url":"https://comicvine.gamespot.com/jake-long/4005-37801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38339/","id":38339,"name":"Mutant-Master","site_detail_url":"https://comicvine.gamespot.com/mutant-master/4005-38339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38926/","id":38926,"name":"Siren","site_detail_url":"https://comicvine.gamespot.com/siren/4005-38926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39132/","id":39132,"name":"Merlin","site_detail_url":"https://comicvine.gamespot.com/merlin/4005-39132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39277/","id":39277,"name":"Doctor Solar","site_detail_url":"https://comicvine.gamespot.com/doctor-solar/4005-39277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39435/","id":39435,"name":"Uma","site_detail_url":"https://comicvine.gamespot.com/uma/4005-39435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39575/","id":39575,"name":"Banzai","site_detail_url":"https://comicvine.gamespot.com/banzai/4005-39575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40458/","id":40458,"name":"Anole","site_detail_url":"https://comicvine.gamespot.com/anole/4005-40458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40526/","id":40526,"name":"Azazel","site_detail_url":"https://comicvine.gamespot.com/azazel/4005-40526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40589/","id":40589,"name":"Longstrike","site_detail_url":"https://comicvine.gamespot.com/longstrike/4005-40589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40614/","id":40614,"name":"Sparda","site_detail_url":"https://comicvine.gamespot.com/sparda/4005-40614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40632/","id":40632,"name":"Helspont","site_detail_url":"https://comicvine.gamespot.com/helspont/4005-40632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40783/","id":40783,"name":"Toxin","site_detail_url":"https://comicvine.gamespot.com/toxin/4005-40783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40791/","id":40791,"name":"Phage","site_detail_url":"https://comicvine.gamespot.com/phage/4005-40791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40793/","id":40793,"name":"Riot","site_detail_url":"https://comicvine.gamespot.com/riot/4005-40793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40796/","id":40796,"name":"Agony","site_detail_url":"https://comicvine.gamespot.com/agony/4005-40796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40808/","id":40808,"name":"The Killer","site_detail_url":"https://comicvine.gamespot.com/the-killer/4005-40808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40832/","id":40832,"name":"Desire of the Endless","site_detail_url":"https://comicvine.gamespot.com/desire-of-the-endless/4005-40832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40925/","id":40925,"name":"Geoffrey Wilder","site_detail_url":"https://comicvine.gamespot.com/geoffrey-wilder/4005-40925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41145/","id":41145,"name":"Miss Martian","site_detail_url":"https://comicvine.gamespot.com/miss-martian/4005-41145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41157/","id":41157,"name":"Moonstalker","site_detail_url":"https://comicvine.gamespot.com/moonstalker/4005-41157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41204/","id":41204,"name":"Shapesmith","site_detail_url":"https://comicvine.gamespot.com/shapesmith/4005-41204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41222/","id":41222,"name":"R'Tee","site_detail_url":"https://comicvine.gamespot.com/rtee/4005-41222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41224/","id":41224,"name":"Goroth","site_detail_url":"https://comicvine.gamespot.com/goroth/4005-41224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41460/","id":41460,"name":"Freddy Krueger","site_detail_url":"https://comicvine.gamespot.com/freddy-krueger/4005-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41535/","id":41535,"name":"Goliath","site_detail_url":"https://comicvine.gamespot.com/goliath/4005-41535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41569/","id":41569,"name":"Skymax","site_detail_url":"https://comicvine.gamespot.com/skymax/4005-41569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41667/","id":41667,"name":"S'Byll","site_detail_url":"https://comicvine.gamespot.com/sbyll/4005-41667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41717/","id":41717,"name":"White Martian","site_detail_url":"https://comicvine.gamespot.com/white-martian/4005-41717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41756/","id":41756,"name":"Shathra","site_detail_url":"https://comicvine.gamespot.com/shathra/4005-41756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41825/","id":41825,"name":"Mechagodzilla","site_detail_url":"https://comicvine.gamespot.com/mechagodzilla/4005-41825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41867/","id":41867,"name":"Sylene","site_detail_url":"https://comicvine.gamespot.com/sylene/4005-41867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42084/","id":42084,"name":"River Tam","site_detail_url":"https://comicvine.gamespot.com/river-tam/4005-42084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42133/","id":42133,"name":"Darkman","site_detail_url":"https://comicvine.gamespot.com/darkman/4005-42133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42245/","id":42245,"name":"Noob Saibot","site_detail_url":"https://comicvine.gamespot.com/noob-saibot/4005-42245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42430/","id":42430,"name":"Geist","site_detail_url":"https://comicvine.gamespot.com/geist/4005-42430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42482/","id":42482,"name":"Purgatori","site_detail_url":"https://comicvine.gamespot.com/purgatori/4005-42482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42543/","id":42543,"name":"D'Spayre","site_detail_url":"https://comicvine.gamespot.com/dspayre/4005-42543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42567/","id":42567,"name":"Xenophage","site_detail_url":"https://comicvine.gamespot.com/xenophage/4005-42567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42609/","id":42609,"name":"R'Kin","site_detail_url":"https://comicvine.gamespot.com/rkin/4005-42609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42771/","id":42771,"name":"John the Skrull","site_detail_url":"https://comicvine.gamespot.com/john-the-skrull/4005-42771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42951/","id":42951,"name":"Altwaal","site_detail_url":"https://comicvine.gamespot.com/altwaal/4005-42951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42962/","id":42962,"name":"Tulity","site_detail_url":"https://comicvine.gamespot.com/tulity/4005-42962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42975/","id":42975,"name":"Ghost Rider 2099","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099/4005-42975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43025/","id":43025,"name":"Appolyon","site_detail_url":"https://comicvine.gamespot.com/appolyon/4005-43025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43304/","id":43304,"name":"Offspring","site_detail_url":"https://comicvine.gamespot.com/offspring/4005-43304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43353/","id":43353,"name":"Fuma Mono","site_detail_url":"https://comicvine.gamespot.com/fuma-mono/4005-43353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43537/","id":43537,"name":"Madame Mirage","site_detail_url":"https://comicvine.gamespot.com/madame-mirage/4005-43537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43658/","id":43658,"name":"Captain Dynamo","site_detail_url":"https://comicvine.gamespot.com/captain-dynamo/4005-43658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43663/","id":43663,"name":"Menagerie","site_detail_url":"https://comicvine.gamespot.com/menagerie/4005-43663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43745/","id":43745,"name":"Rikuo","site_detail_url":"https://comicvine.gamespot.com/rikuo/4005-43745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44170/","id":44170,"name":"Buzz","site_detail_url":"https://comicvine.gamespot.com/buzz/4005-44170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44245/","id":44245,"name":"Yamato","site_detail_url":"https://comicvine.gamespot.com/yamato/4005-44245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44259/","id":44259,"name":"Orochimaru","site_detail_url":"https://comicvine.gamespot.com/orochimaru/4005-44259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44288/","id":44288,"name":"Bloke","site_detail_url":"https://comicvine.gamespot.com/bloke/4005-44288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44370/","id":44370,"name":"Inari","site_detail_url":"https://comicvine.gamespot.com/inari/4005-44370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44473/","id":44473,"name":"One-Above-All","site_detail_url":"https://comicvine.gamespot.com/one-above-all/4005-44473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44512/","id":44512,"name":"Tsunade","site_detail_url":"https://comicvine.gamespot.com/tsunade/4005-44512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44516/","id":44516,"name":"Kurenai Yuhi","site_detail_url":"https://comicvine.gamespot.com/kurenai-yuhi/4005-44516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44523/","id":44523,"name":"Kabuto Yakushi","site_detail_url":"https://comicvine.gamespot.com/kabuto-yakushi/4005-44523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44583/","id":44583,"name":"Alucard","site_detail_url":"https://comicvine.gamespot.com/alucard/4005-44583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44812/","id":44812,"name":"Reptile","site_detail_url":"https://comicvine.gamespot.com/reptile/4005-44812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44964/","id":44964,"name":"Vienna","site_detail_url":"https://comicvine.gamespot.com/vienna/4005-44964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45020/","id":45020,"name":"Zetsu","site_detail_url":"https://comicvine.gamespot.com/zetsu/4005-45020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45115/","id":45115,"name":"Powergirl","site_detail_url":"https://comicvine.gamespot.com/powergirl/4005-45115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45332/","id":45332,"name":"Ixis Naugus","site_detail_url":"https://comicvine.gamespot.com/ixis-naugus/4005-45332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45346/","id":45346,"name":"Espio the Chameleon","site_detail_url":"https://comicvine.gamespot.com/espio-the-chameleon/4005-45346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45368/","id":45368,"name":"Hiei","site_detail_url":"https://comicvine.gamespot.com/hiei/4005-45368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45403/","id":45403,"name":"Element Girl","site_detail_url":"https://comicvine.gamespot.com/element-girl/4005-45403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45586/","id":45586,"name":"Metamorphia","site_detail_url":"https://comicvine.gamespot.com/metamorphia/4005-45586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45614/","id":45614,"name":"Chaos","site_detail_url":"https://comicvine.gamespot.com/chaos/4005-45614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45618/","id":45618,"name":"Lara the Illusionist","site_detail_url":"https://comicvine.gamespot.com/lara-the-illusionist/4005-45618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45625/","id":45625,"name":"Spawn (Llanso)","site_detail_url":"https://comicvine.gamespot.com/spawn-llanso/4005-45625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45681/","id":45681,"name":"Shapeshifter","site_detail_url":"https://comicvine.gamespot.com/shapeshifter/4005-45681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45713/","id":45713,"name":"Isolationist","site_detail_url":"https://comicvine.gamespot.com/isolationist/4005-45713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45829/","id":45829,"name":"Raiden","site_detail_url":"https://comicvine.gamespot.com/raiden/4005-45829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45936/","id":45936,"name":"Composite Superman","site_detail_url":"https://comicvine.gamespot.com/composite-superman/4005-45936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45948/","id":45948,"name":"Ultraman","site_detail_url":"https://comicvine.gamespot.com/ultraman/4005-45948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45993/","id":45993,"name":"Yoko Kurama","site_detail_url":"https://comicvine.gamespot.com/yoko-kurama/4005-45993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46121/","id":46121,"name":"Crusader","site_detail_url":"https://comicvine.gamespot.com/crusader/4005-46121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46131/","id":46131,"name":"Prime Cotati","site_detail_url":"https://comicvine.gamespot.com/prime-cotati/4005-46131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46210/","id":46210,"name":"Naraku","site_detail_url":"https://comicvine.gamespot.com/naraku/4005-46210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46230/","id":46230,"name":"Gama","site_detail_url":"https://comicvine.gamespot.com/gama/4005-46230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46231/","id":46231,"name":"Princess Zelda","site_detail_url":"https://comicvine.gamespot.com/princess-zelda/4005-46231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46741/","id":46741,"name":"Destrii","site_detail_url":"https://comicvine.gamespot.com/destrii/4005-46741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46793/","id":46793,"name":"BloodRayne","site_detail_url":"https://comicvine.gamespot.com/bloodrayne/4005-46793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46854/","id":46854,"name":"Hero Cruz","site_detail_url":"https://comicvine.gamespot.com/hero-cruz/4005-46854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47300/","id":47300,"name":"A-Mortal","site_detail_url":"https://comicvine.gamespot.com/a-mortal/4005-47300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47301/","id":47301,"name":"Armek","site_detail_url":"https://comicvine.gamespot.com/armek/4005-47301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47303/","id":47303,"name":"Primaid","site_detail_url":"https://comicvine.gamespot.com/primaid/4005-47303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47305/","id":47305,"name":"Zenturion","site_detail_url":"https://comicvine.gamespot.com/zenturion/4005-47305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47361/","id":47361,"name":"Phaedra","site_detail_url":"https://comicvine.gamespot.com/phaedra/4005-47361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47365/","id":47365,"name":"Night Raven","site_detail_url":"https://comicvine.gamespot.com/night-raven/4005-47365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47632/","id":47632,"name":"Kif Kroker","site_detail_url":"https://comicvine.gamespot.com/kif-kroker/4005-47632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47679/","id":47679,"name":"Sylar","site_detail_url":"https://comicvine.gamespot.com/sylar/4005-47679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47739/","id":47739,"name":"Gordy","site_detail_url":"https://comicvine.gamespot.com/gordy/4005-47739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47796/","id":47796,"name":"Harper","site_detail_url":"https://comicvine.gamespot.com/harper/4005-47796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47875/","id":47875,"name":"Mystiq","site_detail_url":"https://comicvine.gamespot.com/mystiq/4005-47875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47899/","id":47899,"name":"Ra","site_detail_url":"https://comicvine.gamespot.com/ra/4005-47899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47947/","id":47947,"name":"Grey Fox","site_detail_url":"https://comicvine.gamespot.com/grey-fox/4005-47947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47959/","id":47959,"name":"Decoy Octopus","site_detail_url":"https://comicvine.gamespot.com/decoy-octopus/4005-47959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48213/","id":48213,"name":"Sam Sheepdog","site_detail_url":"https://comicvine.gamespot.com/sam-sheepdog/4005-48213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48214/","id":48214,"name":"Ralph Wolf","site_detail_url":"https://comicvine.gamespot.com/ralph-wolf/4005-48214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48355/","id":48355,"name":"Eva Kant","site_detail_url":"https://comicvine.gamespot.com/eva-kant/4005-48355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48503/","id":48503,"name":"Nyarlathotep","site_detail_url":"https://comicvine.gamespot.com/nyarlathotep/4005-48503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48632/","id":48632,"name":"Michael","site_detail_url":"https://comicvine.gamespot.com/michael/4005-48632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48633/","id":48633,"name":"Van","site_detail_url":"https://comicvine.gamespot.com/van/4005-48633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48634/","id":48634,"name":"Patrick","site_detail_url":"https://comicvine.gamespot.com/patrick/4005-48634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49046/","id":49046,"name":"Revolutionary","site_detail_url":"https://comicvine.gamespot.com/revolutionary/4005-49046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49277/","id":49277,"name":"Kanako Urashima","site_detail_url":"https://comicvine.gamespot.com/kanako-urashima/4005-49277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49405/","id":49405,"name":"The Impressionist","site_detail_url":"https://comicvine.gamespot.com/the-impressionist/4005-49405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49428/","id":49428,"name":"Red X","site_detail_url":"https://comicvine.gamespot.com/red-x/4005-49428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50037/","id":50037,"name":"Mega Man","site_detail_url":"https://comicvine.gamespot.com/mega-man/4005-50037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50189/","id":50189,"name":"Konohamaru Sarutobi","site_detail_url":"https://comicvine.gamespot.com/konohamaru-sarutobi/4005-50189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50265/","id":50265,"name":"Axel","site_detail_url":"https://comicvine.gamespot.com/axel/4005-50265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50279/","id":50279,"name":"The Alternate","site_detail_url":"https://comicvine.gamespot.com/the-alternate/4005-50279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50301/","id":50301,"name":"Envy","site_detail_url":"https://comicvine.gamespot.com/envy/4005-50301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50608/","id":50608,"name":"Hannibal","site_detail_url":"https://comicvine.gamespot.com/hannibal/4005-50608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50657/","id":50657,"name":"Chameleon Girl","site_detail_url":"https://comicvine.gamespot.com/chameleon-girl/4005-50657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50681/","id":50681,"name":"Chaos","site_detail_url":"https://comicvine.gamespot.com/chaos/4005-50681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50741/","id":50741,"name":"Nemesis the Warlock","site_detail_url":"https://comicvine.gamespot.com/nemesis-the-warlock/4005-50741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50781/","id":50781,"name":"The Master","site_detail_url":"https://comicvine.gamespot.com/the-master/4005-50781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50812/","id":50812,"name":"Bizarnage","site_detail_url":"https://comicvine.gamespot.com/bizarnage/4005-50812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50834/","id":50834,"name":"Eternal Man","site_detail_url":"https://comicvine.gamespot.com/eternal-man/4005-50834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50999/","id":50999,"name":"Omega Spawn","site_detail_url":"https://comicvine.gamespot.com/omega-spawn/4005-50999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51127/","id":51127,"name":"Charlatan","site_detail_url":"https://comicvine.gamespot.com/charlatan/4005-51127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51256/","id":51256,"name":"Moss Man","site_detail_url":"https://comicvine.gamespot.com/moss-man/4005-51256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51361/","id":51361,"name":"Predator","site_detail_url":"https://comicvine.gamespot.com/predator/4005-51361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51423/","id":51423,"name":"Mondo Gecko","site_detail_url":"https://comicvine.gamespot.com/mondo-gecko/4005-51423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51448/","id":51448,"name":"Randall Flagg","site_detail_url":"https://comicvine.gamespot.com/randall-flagg/4005-51448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51483/","id":51483,"name":"Brother EYE","site_detail_url":"https://comicvine.gamespot.com/brother-eye/4005-51483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51954/","id":51954,"name":"T-1000","site_detail_url":"https://comicvine.gamespot.com/t-1000/4005-51954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52039/","id":52039,"name":"Ryuk","site_detail_url":"https://comicvine.gamespot.com/ryuk/4005-52039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52063/","id":52063,"name":"Scorponok","site_detail_url":"https://comicvine.gamespot.com/scorponok/4005-52063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52416/","id":52416,"name":"Lucas Caravaggio","site_detail_url":"https://comicvine.gamespot.com/lucas-caravaggio/4005-52416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52482/","id":52482,"name":"Tyro","site_detail_url":"https://comicvine.gamespot.com/tyro/4005-52482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52567/","id":52567,"name":"Umbra","site_detail_url":"https://comicvine.gamespot.com/umbra/4005-52567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52802/","id":52802,"name":"Rm'Twr","site_detail_url":"https://comicvine.gamespot.com/rmtwr/4005-52802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52805/","id":52805,"name":"Rl'Nnd","site_detail_url":"https://comicvine.gamespot.com/rlnnd/4005-52805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52850/","id":52850,"name":"Chameleon Kid","site_detail_url":"https://comicvine.gamespot.com/chameleon-kid/4005-52850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52870/","id":52870,"name":"Onyx","site_detail_url":"https://comicvine.gamespot.com/onyx/4005-52870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53091/","id":53091,"name":"Adam Able","site_detail_url":"https://comicvine.gamespot.com/adam-able/4005-53091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53099/","id":53099,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-53099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53312/","id":53312,"name":"Wallflower","site_detail_url":"https://comicvine.gamespot.com/wallflower/4005-53312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53794/","id":53794,"name":"Sailor Star Fighter","site_detail_url":"https://comicvine.gamespot.com/sailor-star-fighter/4005-53794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53795/","id":53795,"name":"Sailor Star Healer","site_detail_url":"https://comicvine.gamespot.com/sailor-star-healer/4005-53795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53796/","id":53796,"name":"Sailor Star Maker","site_detail_url":"https://comicvine.gamespot.com/sailor-star-maker/4005-53796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54005/","id":54005,"name":"Karma","site_detail_url":"https://comicvine.gamespot.com/karma/4005-54005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54083/","id":54083,"name":"Zeitgeist","site_detail_url":"https://comicvine.gamespot.com/zeitgeist/4005-54083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54228/","id":54228,"name":"Candice Willmer","site_detail_url":"https://comicvine.gamespot.com/candice-willmer/4005-54228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54266/","id":54266,"name":"Albino","site_detail_url":"https://comicvine.gamespot.com/albino/4005-54266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54341/","id":54341,"name":"Chameleon Collie","site_detail_url":"https://comicvine.gamespot.com/chameleon-collie/4005-54341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54372/","id":54372,"name":"Emerald","site_detail_url":"https://comicvine.gamespot.com/emerald/4005-54372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54431/","id":54431,"name":"Catzy","site_detail_url":"https://comicvine.gamespot.com/catzy/4005-54431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54513/","id":54513,"name":"Dro'Ge","site_detail_url":"https://comicvine.gamespot.com/droge/4005-54513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54514/","id":54514,"name":"Veranke","site_detail_url":"https://comicvine.gamespot.com/veranke/4005-54514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54515/","id":54515,"name":"Pagon","site_detail_url":"https://comicvine.gamespot.com/pagon/4005-54515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54538/","id":54538,"name":"Anuxa","site_detail_url":"https://comicvine.gamespot.com/anuxa/4005-54538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54836/","id":54836,"name":"Paperdoll","site_detail_url":"https://comicvine.gamespot.com/paperdoll/4005-54836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54904/","id":54904,"name":"Genie","site_detail_url":"https://comicvine.gamespot.com/genie/4005-54904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54911/","id":54911,"name":"Mighty Man","site_detail_url":"https://comicvine.gamespot.com/mighty-man/4005-54911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54937/","id":54937,"name":"Elizabeth Swann","site_detail_url":"https://comicvine.gamespot.com/elizabeth-swann/4005-54937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55101/","id":55101,"name":"Parasite Green","site_detail_url":"https://comicvine.gamespot.com/parasite-green/4005-55101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55197/","id":55197,"name":"Brother Drive","site_detail_url":"https://comicvine.gamespot.com/brother-drive/4005-55197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55198/","id":55198,"name":"Brother Think","site_detail_url":"https://comicvine.gamespot.com/brother-think/4005-55198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55306/","id":55306,"name":"The Bionic Woman","site_detail_url":"https://comicvine.gamespot.com/the-bionic-woman/4005-55306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55316/","id":55316,"name":"Insect Queen","site_detail_url":"https://comicvine.gamespot.com/insect-queen/4005-55316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55326/","id":55326,"name":"Blackout","site_detail_url":"https://comicvine.gamespot.com/blackout/4005-55326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55329/","id":55329,"name":"Mr X","site_detail_url":"https://comicvine.gamespot.com/mr-x/4005-55329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55448/","id":55448,"name":"Teridax","site_detail_url":"https://comicvine.gamespot.com/teridax/4005-55448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55457/","id":55457,"name":"Krika","site_detail_url":"https://comicvine.gamespot.com/krika/4005-55457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55490/","id":55490,"name":"Q","site_detail_url":"https://comicvine.gamespot.com/q/4005-55490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55504/","id":55504,"name":"Yoshi","site_detail_url":"https://comicvine.gamespot.com/yoshi/4005-55504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55538/","id":55538,"name":"Mayuri Kurotsuchi","site_detail_url":"https://comicvine.gamespot.com/mayuri-kurotsuchi/4005-55538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55702/","id":55702,"name":"Mosaic","site_detail_url":"https://comicvine.gamespot.com/mosaic/4005-55702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55761/","id":55761,"name":"Saya","site_detail_url":"https://comicvine.gamespot.com/saya/4005-55761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55899/","id":55899,"name":"Mr. Bridwell","site_detail_url":"https://comicvine.gamespot.com/mr-bridwell/4005-55899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55923/","id":55923,"name":"Mister Who","site_detail_url":"https://comicvine.gamespot.com/mister-who/4005-55923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55950/","id":55950,"name":"Wreckage","site_detail_url":"https://comicvine.gamespot.com/wreckage/4005-55950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55953/","id":55953,"name":"Landmine","site_detail_url":"https://comicvine.gamespot.com/landmine/4005-55953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55957/","id":55957,"name":"Kai","site_detail_url":"https://comicvine.gamespot.com/kai/4005-55957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55960/","id":55960,"name":"Magnitude","site_detail_url":"https://comicvine.gamespot.com/magnitude/4005-55960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55989/","id":55989,"name":"Flaw","site_detail_url":"https://comicvine.gamespot.com/flaw/4005-55989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56028/","id":56028,"name":"Criti Noll","site_detail_url":"https://comicvine.gamespot.com/criti-noll/4005-56028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56069/","id":56069,"name":"Cutie Honey","site_detail_url":"https://comicvine.gamespot.com/cutie-honey/4005-56069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56185/","id":56185,"name":"Gengar","site_detail_url":"https://comicvine.gamespot.com/gengar/4005-56185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56191/","id":56191,"name":"Takanuva","site_detail_url":"https://comicvine.gamespot.com/takanuva/4005-56191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56198/","id":56198,"name":"De'Lila","site_detail_url":"https://comicvine.gamespot.com/delila/4005-56198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56215/","id":56215,"name":"Aphrodite IV","site_detail_url":"https://comicvine.gamespot.com/aphrodite-iv/4005-56215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56291/","id":56291,"name":"Arbiter","site_detail_url":"https://comicvine.gamespot.com/arbiter/4005-56291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56375/","id":56375,"name":"Earthling J.J. Catingsworth the 3rd","site_detail_url":"https://comicvine.gamespot.com/earthling-jj-catingsworth-the-3rd/4005-56375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56396/","id":56396,"name":"Bluestreak","site_detail_url":"https://comicvine.gamespot.com/bluestreak/4005-56396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56438/","id":56438,"name":"Lord Shilling","site_detail_url":"https://comicvine.gamespot.com/lord-shilling/4005-56438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56456/","id":56456,"name":"Tentakil","site_detail_url":"https://comicvine.gamespot.com/tentakil/4005-56456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56458/","id":56458,"name":"Springer","site_detail_url":"https://comicvine.gamespot.com/springer/4005-56458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56517/","id":56517,"name":"Nogor","site_detail_url":"https://comicvine.gamespot.com/nogor/4005-56517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56554/","id":56554,"name":"Dreamtime","site_detail_url":"https://comicvine.gamespot.com/dreamtime/4005-56554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56577/","id":56577,"name":"Skyppi","site_detail_url":"https://comicvine.gamespot.com/skyppi/4005-56577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56632/","id":56632,"name":"Gorth","site_detail_url":"https://comicvine.gamespot.com/gorth/4005-56632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56633/","id":56633,"name":"Granok","site_detail_url":"https://comicvine.gamespot.com/granok/4005-56633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56634/","id":56634,"name":"Hagar the High Judicator","site_detail_url":"https://comicvine.gamespot.com/hagar-the-high-judicator/4005-56634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56641/","id":56641,"name":"Mrok","site_detail_url":"https://comicvine.gamespot.com/mrok/4005-56641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56642/","id":56642,"name":"Nenora","site_detail_url":"https://comicvine.gamespot.com/nenora/4005-56642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56643/","id":56643,"name":"Empress R'Klll","site_detail_url":"https://comicvine.gamespot.com/empress-rklll/4005-56643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56645/","id":56645,"name":"Raksor","site_detail_url":"https://comicvine.gamespot.com/raksor/4005-56645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56646/","id":56646,"name":"Zedrao","site_detail_url":"https://comicvine.gamespot.com/zedrao/4005-56646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56707/","id":56707,"name":"Batman Predator","site_detail_url":"https://comicvine.gamespot.com/batman-predator/4005-56707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56708/","id":56708,"name":"Superman Predator","site_detail_url":"https://comicvine.gamespot.com/superman-predator/4005-56708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56709/","id":56709,"name":"Aquaman Predator","site_detail_url":"https://comicvine.gamespot.com/aquaman-predator/4005-56709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56726/","id":56726,"name":"Cybersix","site_detail_url":"https://comicvine.gamespot.com/cybersix/4005-56726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56736/","id":56736,"name":"Green Lantern Predator","site_detail_url":"https://comicvine.gamespot.com/green-lantern-predator/4005-56736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56737/","id":56737,"name":"Flash Predator","site_detail_url":"https://comicvine.gamespot.com/flash-predator/4005-56737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56741/","id":56741,"name":"Plastic Man Predator","site_detail_url":"https://comicvine.gamespot.com/plastic-man-predator/4005-56741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56749/","id":56749,"name":"Atom Predator","site_detail_url":"https://comicvine.gamespot.com/atom-predator/4005-56749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56864/","id":56864,"name":"Till'all","site_detail_url":"https://comicvine.gamespot.com/tillall/4005-56864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56908/","id":56908,"name":"X'iv","site_detail_url":"https://comicvine.gamespot.com/xiv/4005-56908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56909/","id":56909,"name":"Chrell","site_detail_url":"https://comicvine.gamespot.com/chrell/4005-56909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56916/","id":56916,"name":"Pseudos","site_detail_url":"https://comicvine.gamespot.com/pseudos/4005-56916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57025/","id":57025,"name":"PROXY","site_detail_url":"https://comicvine.gamespot.com/proxy/4005-57025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57078/","id":57078,"name":"Sl'gur't","site_detail_url":"https://comicvine.gamespot.com/slgurt/4005-57078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57371/","id":57371,"name":"Alex Grimond","site_detail_url":"https://comicvine.gamespot.com/alex-grimond/4005-57371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57433/","id":57433,"name":"Blacksmith","site_detail_url":"https://comicvine.gamespot.com/blacksmith/4005-57433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57658/","id":57658,"name":"Komodo","site_detail_url":"https://comicvine.gamespot.com/komodo/4005-57658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57738/","id":57738,"name":"Kirby","site_detail_url":"https://comicvine.gamespot.com/kirby/4005-57738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57929/","id":57929,"name":"Dela Pharon","site_detail_url":"https://comicvine.gamespot.com/dela-pharon/4005-57929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58121/","id":58121,"name":"Cameron","site_detail_url":"https://comicvine.gamespot.com/cameron/4005-58121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58206/","id":58206,"name":"T-1000000","site_detail_url":"https://comicvine.gamespot.com/t-1000000/4005-58206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58357/","id":58357,"name":"Sly Cooper","site_detail_url":"https://comicvine.gamespot.com/sly-cooper/4005-58357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58361/","id":58361,"name":"Grand Fisher","site_detail_url":"https://comicvine.gamespot.com/grand-fisher/4005-58361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58466/","id":58466,"name":"Green Lantern of Durla","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-durla/4005-58466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58615/","id":58615,"name":"Ard'Ran","site_detail_url":"https://comicvine.gamespot.com/ardran/4005-58615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58681/","id":58681,"name":"Yoshimitsu","site_detail_url":"https://comicvine.gamespot.com/yoshimitsu/4005-58681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58940/","id":58940,"name":"Replicoid","site_detail_url":"https://comicvine.gamespot.com/replicoid/4005-58940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58998/","id":58998,"name":"Mister E","site_detail_url":"https://comicvine.gamespot.com/mister-e/4005-58998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59053/","id":59053,"name":"Bel Juz","site_detail_url":"https://comicvine.gamespot.com/bel-juz/4005-59053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59410/","id":59410,"name":"Runaway","site_detail_url":"https://comicvine.gamespot.com/runaway/4005-59410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59604/","id":59604,"name":"Ssrov","site_detail_url":"https://comicvine.gamespot.com/ssrov/4005-59604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59810/","id":59810,"name":"Jonas","site_detail_url":"https://comicvine.gamespot.com/jonas/4005-59810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59851/","id":59851,"name":"176-82","site_detail_url":"https://comicvine.gamespot.com/176-82/4005-59851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59852/","id":59852,"name":"176-84","site_detail_url":"https://comicvine.gamespot.com/176-84/4005-59852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60020/","id":60020,"name":"Tarmack","site_detail_url":"https://comicvine.gamespot.com/tarmack/4005-60020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60231/","id":60231,"name":"Razorbeast","site_detail_url":"https://comicvine.gamespot.com/razorbeast/4005-60231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60440/","id":60440,"name":"The First Evil","site_detail_url":"https://comicvine.gamespot.com/the-first-evil/4005-60440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60535/","id":60535,"name":"Skrull Spider-Man","site_detail_url":"https://comicvine.gamespot.com/skrull-spider-man/4005-60535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60576/","id":60576,"name":"Jane Doe","site_detail_url":"https://comicvine.gamespot.com/jane-doe/4005-60576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61005/","id":61005,"name":"Zigra","site_detail_url":"https://comicvine.gamespot.com/zigra/4005-61005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61390/","id":61390,"name":"Imposter","site_detail_url":"https://comicvine.gamespot.com/imposter/4005-61390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61461/","id":61461,"name":"Ji Daggle","site_detail_url":"https://comicvine.gamespot.com/ji-daggle/4005-61461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61571/","id":61571,"name":"Miss Bloss","site_detail_url":"https://comicvine.gamespot.com/miss-bloss/4005-61571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61572/","id":61572,"name":"The Lost Sapphire","site_detail_url":"https://comicvine.gamespot.com/the-lost-sapphire/4005-61572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61574/","id":61574,"name":"Race","site_detail_url":"https://comicvine.gamespot.com/race/4005-61574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61635/","id":61635,"name":"The King","site_detail_url":"https://comicvine.gamespot.com/the-king/4005-61635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61665/","id":61665,"name":"S'kaan","site_detail_url":"https://comicvine.gamespot.com/skaan/4005-61665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61834/","id":61834,"name":"Axis","site_detail_url":"https://comicvine.gamespot.com/axis/4005-61834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62301/","id":62301,"name":"Weepinbell","site_detail_url":"https://comicvine.gamespot.com/weepinbell/4005-62301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62463/","id":62463,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-62463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62550/","id":62550,"name":"The Gleam","site_detail_url":"https://comicvine.gamespot.com/the-gleam/4005-62550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62561/","id":62561,"name":"Admiral Votan","site_detail_url":"https://comicvine.gamespot.com/admiral-votan/4005-62561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62562/","id":62562,"name":"Emperor Zark","site_detail_url":"https://comicvine.gamespot.com/emperor-zark/4005-62562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62624/","id":62624,"name":"Beetlejuice","site_detail_url":"https://comicvine.gamespot.com/beetlejuice/4005-62624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62666/","id":62666,"name":"Blue Lama","site_detail_url":"https://comicvine.gamespot.com/blue-lama/4005-62666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62721/","id":62721,"name":"Witch","site_detail_url":"https://comicvine.gamespot.com/witch/4005-62721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62790/","id":62790,"name":"Conquering Storm","site_detail_url":"https://comicvine.gamespot.com/conquering-storm/4005-62790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62816/","id":62816,"name":"Nick Carter","site_detail_url":"https://comicvine.gamespot.com/nick-carter/4005-62816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63023/","id":63023,"name":"Steve Carson","site_detail_url":"https://comicvine.gamespot.com/steve-carson/4005-63023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63178/","id":63178,"name":"Sandra of the Secret Service","site_detail_url":"https://comicvine.gamespot.com/sandra-of-the-secret-service/4005-63178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63208/","id":63208,"name":"Milady Clarick de Winter","site_detail_url":"https://comicvine.gamespot.com/milady-clarick-de-winter/4005-63208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63266/","id":63266,"name":"Wuz-Wolf","site_detail_url":"https://comicvine.gamespot.com/wuz-wolf/4005-63266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63331/","id":63331,"name":"Slimeface","site_detail_url":"https://comicvine.gamespot.com/slimeface/4005-63331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63343/","id":63343,"name":"False-Face","site_detail_url":"https://comicvine.gamespot.com/false-face/4005-63343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63809/","id":63809,"name":"Trull The Unhuman","site_detail_url":"https://comicvine.gamespot.com/trull-the-unhuman/4005-63809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63824/","id":63824,"name":"Tommy Jarvis","site_detail_url":"https://comicvine.gamespot.com/tommy-jarvis/4005-63824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64041/","id":64041,"name":"Nyna Calixte","site_detail_url":"https://comicvine.gamespot.com/nyna-calixte/4005-64041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64062/","id":64062,"name":"Savan","site_detail_url":"https://comicvine.gamespot.com/savan/4005-64062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64291/","id":64291,"name":"Vaporeon","site_detail_url":"https://comicvine.gamespot.com/vaporeon/4005-64291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64293/","id":64293,"name":"Starmie","site_detail_url":"https://comicvine.gamespot.com/starmie/4005-64293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64825/","id":64825,"name":"Tanman","site_detail_url":"https://comicvine.gamespot.com/tanman/4005-64825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64827/","id":64827,"name":"Sil","site_detail_url":"https://comicvine.gamespot.com/sil/4005-64827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65028/","id":65028,"name":"Tiger Jack","site_detail_url":"https://comicvine.gamespot.com/tiger-jack/4005-65028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65036/","id":65036,"name":"Mefisto","site_detail_url":"https://comicvine.gamespot.com/mefisto/4005-65036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65112/","id":65112,"name":"Zagor","site_detail_url":"https://comicvine.gamespot.com/zagor/4005-65112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65187/","id":65187,"name":"Membrain","site_detail_url":"https://comicvine.gamespot.com/membrain/4005-65187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65194/","id":65194,"name":"Integer","site_detail_url":"https://comicvine.gamespot.com/integer/4005-65194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65236/","id":65236,"name":"Wallpaper Man","site_detail_url":"https://comicvine.gamespot.com/wallpaper-man/4005-65236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65341/","id":65341,"name":"Creature King","site_detail_url":"https://comicvine.gamespot.com/creature-king/4005-65341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65420/","id":65420,"name":"Pomoxis","site_detail_url":"https://comicvine.gamespot.com/pomoxis/4005-65420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65460/","id":65460,"name":"Quink","site_detail_url":"https://comicvine.gamespot.com/quink/4005-65460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65461/","id":65461,"name":"Quirk","site_detail_url":"https://comicvine.gamespot.com/quirk/4005-65461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65721/","id":65721,"name":"Actor","site_detail_url":"https://comicvine.gamespot.com/actor/4005-65721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66029/","id":66029,"name":"The Face","site_detail_url":"https://comicvine.gamespot.com/the-face/4005-66029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66039/","id":66039,"name":"Tidal Wave","site_detail_url":"https://comicvine.gamespot.com/tidal-wave/4005-66039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66083/","id":66083,"name":"Gommaflex","site_detail_url":"https://comicvine.gamespot.com/gommaflex/4005-66083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66251/","id":66251,"name":"Gein","site_detail_url":"https://comicvine.gamespot.com/gein/4005-66251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66470/","id":66470,"name":"Gwydion","site_detail_url":"https://comicvine.gamespot.com/gwydion/4005-66470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66477/","id":66477,"name":"Max Damage","site_detail_url":"https://comicvine.gamespot.com/max-damage/4005-66477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66701/","id":66701,"name":"Agent of 1,000 Faces","site_detail_url":"https://comicvine.gamespot.com/agent-of-1000-faces/4005-66701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66793/","id":66793,"name":"Edouard Laslo","site_detail_url":"https://comicvine.gamespot.com/edouard-laslo/4005-66793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66918/","id":66918,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-66918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67001/","id":67001,"name":"Golem","site_detail_url":"https://comicvine.gamespot.com/golem/4005-67001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67021/","id":67021,"name":"Shellder","site_detail_url":"https://comicvine.gamespot.com/shellder/4005-67021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67341/","id":67341,"name":"Betty","site_detail_url":"https://comicvine.gamespot.com/betty/4005-67341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67617/","id":67617,"name":"XIII","site_detail_url":"https://comicvine.gamespot.com/xiii/4005-67617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67755/","id":67755,"name":"Iktomi","site_detail_url":"https://comicvine.gamespot.com/iktomi/4005-67755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67781/","id":67781,"name":"Staryu","site_detail_url":"https://comicvine.gamespot.com/staryu/4005-67781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67886/","id":67886,"name":"Damali Richards","site_detail_url":"https://comicvine.gamespot.com/damali-richards/4005-67886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67994/","id":67994,"name":"Fatman, the Human Flying Saucer","site_detail_url":"https://comicvine.gamespot.com/fatman-the-human-flying-saucer/4005-67994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68026/","id":68026,"name":"Jasmine","site_detail_url":"https://comicvine.gamespot.com/jasmine/4005-68026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68086/","id":68086,"name":"Beatrice","site_detail_url":"https://comicvine.gamespot.com/beatrice/4005-68086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68298/","id":68298,"name":"Geodude","site_detail_url":"https://comicvine.gamespot.com/geodude/4005-68298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68299/","id":68299,"name":"Graveler","site_detail_url":"https://comicvine.gamespot.com/graveler/4005-68299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68371/","id":68371,"name":"Imposter","site_detail_url":"https://comicvine.gamespot.com/imposter/4005-68371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68473/","id":68473,"name":"Syjorgun","site_detail_url":"https://comicvine.gamespot.com/syjorgun/4005-68473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68504/","id":68504,"name":"Sam Merlotte","site_detail_url":"https://comicvine.gamespot.com/sam-merlotte/4005-68504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68523/","id":68523,"name":"Grovyle","site_detail_url":"https://comicvine.gamespot.com/grovyle/4005-68523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68580/","id":68580,"name":"Fantômas","site_detail_url":"https://comicvine.gamespot.com/fantomas/4005-68580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69158/","id":69158,"name":"Dewgong","site_detail_url":"https://comicvine.gamespot.com/dewgong/4005-69158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70148/","id":70148,"name":"Julian","site_detail_url":"https://comicvine.gamespot.com/julian/4005-70148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70172/","id":70172,"name":"Blend","site_detail_url":"https://comicvine.gamespot.com/blend/4005-70172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70241/","id":70241,"name":"Avoe","site_detail_url":"https://comicvine.gamespot.com/avoe/4005-70241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70412/","id":70412,"name":"Herr Kleiser","site_detail_url":"https://comicvine.gamespot.com/herr-kleiser/4005-70412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70843/","id":70843,"name":"Natasha Fatale","site_detail_url":"https://comicvine.gamespot.com/natasha-fatale/4005-70843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70929/","id":70929,"name":"Dairou","site_detail_url":"https://comicvine.gamespot.com/dairou/4005-70929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71397/","id":71397,"name":"Swamp Thang","site_detail_url":"https://comicvine.gamespot.com/swamp-thang/4005-71397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71507/","id":71507,"name":"Cole Turner","site_detail_url":"https://comicvine.gamespot.com/cole-turner/4005-71507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71555/","id":71555,"name":"Sceptile","site_detail_url":"https://comicvine.gamespot.com/sceptile/4005-71555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71808/","id":71808,"name":"Armory","site_detail_url":"https://comicvine.gamespot.com/armory/4005-71808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71950/","id":71950,"name":"Red Dragon","site_detail_url":"https://comicvine.gamespot.com/red-dragon/4005-71950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72323/","id":72323,"name":"Skrull Black Bolt","site_detail_url":"https://comicvine.gamespot.com/skrull-black-bolt/4005-72323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72442/","id":72442,"name":"Moka Akashiya","site_detail_url":"https://comicvine.gamespot.com/moka-akashiya/4005-72442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72498/","id":72498,"name":"Lupin III","site_detail_url":"https://comicvine.gamespot.com/lupin-iii/4005-72498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72504/","id":72504,"name":"Fujiko Mine","site_detail_url":"https://comicvine.gamespot.com/fujiko-mine/4005-72504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72651/","id":72651,"name":"Kit Nozawa","site_detail_url":"https://comicvine.gamespot.com/kit-nozawa/4005-72651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72752/","id":72752,"name":"Clone Boy","site_detail_url":"https://comicvine.gamespot.com/clone-boy/4005-72752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73044/","id":73044,"name":"Fernus","site_detail_url":"https://comicvine.gamespot.com/fernus/4005-73044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73385/","id":73385,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-73385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73720/","id":73720,"name":"War (Furius)","site_detail_url":"https://comicvine.gamespot.com/war-furius/4005-73720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73803/","id":73803,"name":"Scarlet Seal","site_detail_url":"https://comicvine.gamespot.com/scarlet-seal/4005-73803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73847/","id":73847,"name":"X the Phantom Fed","site_detail_url":"https://comicvine.gamespot.com/x-the-phantom-fed/4005-73847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74852/","id":74852,"name":"Soldier One","site_detail_url":"https://comicvine.gamespot.com/soldier-one/4005-74852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74860/","id":74860,"name":"Scarab","site_detail_url":"https://comicvine.gamespot.com/scarab/4005-74860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74862/","id":74862,"name":"The Source","site_detail_url":"https://comicvine.gamespot.com/the-source/4005-74862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74900/","id":74900,"name":"Broken Tusk","site_detail_url":"https://comicvine.gamespot.com/broken-tusk/4005-74900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74930/","id":74930,"name":"Dark Schneider","site_detail_url":"https://comicvine.gamespot.com/dark-schneider/4005-74930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75028/","id":75028,"name":"Mimic","site_detail_url":"https://comicvine.gamespot.com/mimic/4005-75028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75043/","id":75043,"name":"Trader","site_detail_url":"https://comicvine.gamespot.com/trader/4005-75043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75198/","id":75198,"name":"Arsène Lupin","site_detail_url":"https://comicvine.gamespot.com/arsene-lupin/4005-75198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75283/","id":75283,"name":"Megamind","site_detail_url":"https://comicvine.gamespot.com/megamind/4005-75283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75772/","id":75772,"name":"Throckwoddle","site_detail_url":"https://comicvine.gamespot.com/throckwoddle/4005-75772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75774/","id":75774,"name":"Mortadelo","site_detail_url":"https://comicvine.gamespot.com/mortadelo/4005-75774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75816/","id":75816,"name":"Application Nine","site_detail_url":"https://comicvine.gamespot.com/application-nine/4005-75816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75834/","id":75834,"name":"Janice Em","site_detail_url":"https://comicvine.gamespot.com/janice-em/4005-75834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76064/","id":76064,"name":"Vandella","site_detail_url":"https://comicvine.gamespot.com/vandella/4005-76064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76314/","id":76314,"name":"The Apparition","site_detail_url":"https://comicvine.gamespot.com/the-apparition/4005-76314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76388/","id":76388,"name":"Tiamat","site_detail_url":"https://comicvine.gamespot.com/tiamat/4005-76388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76435/","id":76435,"name":"The Actor","site_detail_url":"https://comicvine.gamespot.com/the-actor/4005-76435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76556/","id":76556,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-76556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76559/","id":76559,"name":"The Creature","site_detail_url":"https://comicvine.gamespot.com/the-creature/4005-76559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76809/","id":76809,"name":"Pascal","site_detail_url":"https://comicvine.gamespot.com/pascal/4005-76809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76832/","id":76832,"name":"Main Man","site_detail_url":"https://comicvine.gamespot.com/main-man/4005-76832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77018/","id":77018,"name":"Katarina Kodorofsky","site_detail_url":"https://comicvine.gamespot.com/katarina-kodorofsky/4005-77018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77020/","id":77020,"name":"James Heller","site_detail_url":"https://comicvine.gamespot.com/james-heller/4005-77020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77150/","id":77150,"name":"Green Phoenix","site_detail_url":"https://comicvine.gamespot.com/green-phoenix/4005-77150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77213/","id":77213,"name":"Mark IV","site_detail_url":"https://comicvine.gamespot.com/mark-iv/4005-77213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77250/","id":77250,"name":"Vulture (Shallot)","site_detail_url":"https://comicvine.gamespot.com/vulture-shallot/4005-77250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77284/","id":77284,"name":"X of the Underground","site_detail_url":"https://comicvine.gamespot.com/x-of-the-underground/4005-77284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77737/","id":77737,"name":"Element Woman","site_detail_url":"https://comicvine.gamespot.com/element-woman/4005-77737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77876/","id":77876,"name":"G-8","site_detail_url":"https://comicvine.gamespot.com/g-8/4005-77876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78138/","id":78138,"name":"Sudowoodo","site_detail_url":"https://comicvine.gamespot.com/sudowoodo/4005-78138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78298/","id":78298,"name":"Cammo","site_detail_url":"https://comicvine.gamespot.com/cammo/4005-78298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78337/","id":78337,"name":"The Slaver","site_detail_url":"https://comicvine.gamespot.com/the-slaver/4005-78337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78339/","id":78339,"name":"Boss Barker","site_detail_url":"https://comicvine.gamespot.com/boss-barker/4005-78339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78356/","id":78356,"name":"Napoleon G. Robberson","site_detail_url":"https://comicvine.gamespot.com/napoleon-g-robberson/4005-78356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78664/","id":78664,"name":"Thurim","site_detail_url":"https://comicvine.gamespot.com/thurim/4005-78664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78690/","id":78690,"name":"Selena","site_detail_url":"https://comicvine.gamespot.com/selena/4005-78690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78905/","id":78905,"name":"Houndoom","site_detail_url":"https://comicvine.gamespot.com/houndoom/4005-78905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78962/","id":78962,"name":"Smeargle","site_detail_url":"https://comicvine.gamespot.com/smeargle/4005-78962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79015/","id":79015,"name":"Life","site_detail_url":"https://comicvine.gamespot.com/life/4005-79015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79100/","id":79100,"name":"Mayor Clump","site_detail_url":"https://comicvine.gamespot.com/mayor-clump/4005-79100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79269/","id":79269,"name":"Streetman","site_detail_url":"https://comicvine.gamespot.com/streetman/4005-79269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79306/","id":79306,"name":"Gigorr","site_detail_url":"https://comicvine.gamespot.com/gigorr/4005-79306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79420/","id":79420,"name":"Miles Morales","site_detail_url":"https://comicvine.gamespot.com/miles-morales/4005-79420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79573/","id":79573,"name":"Dream Demon","site_detail_url":"https://comicvine.gamespot.com/dream-demon/4005-79573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79664/","id":79664,"name":"Four-Armed Predator","site_detail_url":"https://comicvine.gamespot.com/four-armed-predator/4005-79664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79992/","id":79992,"name":"Questing Queen","site_detail_url":"https://comicvine.gamespot.com/questing-queen/4005-79992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80064/","id":80064,"name":"Operator 5","site_detail_url":"https://comicvine.gamespot.com/operator-5/4005-80064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80087/","id":80087,"name":"Lucien Gates","site_detail_url":"https://comicvine.gamespot.com/lucien-gates/4005-80087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80343/","id":80343,"name":"Liggt Daggle","site_detail_url":"https://comicvine.gamespot.com/liggt-daggle/4005-80343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80344/","id":80344,"name":"Theg Doyle","site_detail_url":"https://comicvine.gamespot.com/theg-doyle/4005-80344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80346/","id":80346,"name":"Zhay","site_detail_url":"https://comicvine.gamespot.com/zhay/4005-80346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80688/","id":80688,"name":"Alternate","site_detail_url":"https://comicvine.gamespot.com/alternate/4005-80688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80818/","id":80818,"name":"Zadixx","site_detail_url":"https://comicvine.gamespot.com/zadixx/4005-80818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80929/","id":80929,"name":"Titanosaurus","site_detail_url":"https://comicvine.gamespot.com/titanosaurus/4005-80929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81245/","id":81245,"name":"Neuro Nougami","site_detail_url":"https://comicvine.gamespot.com/neuro-nougami/4005-81245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81248/","id":81248,"name":"Mudman","site_detail_url":"https://comicvine.gamespot.com/mudman/4005-81248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81394/","id":81394,"name":"Rankorr","site_detail_url":"https://comicvine.gamespot.com/rankorr/4005-81394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81400/","id":81400,"name":"Salma","site_detail_url":"https://comicvine.gamespot.com/salma/4005-81400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81828/","id":81828,"name":"Haruo Niijima","site_detail_url":"https://comicvine.gamespot.com/haruo-niijima/4005-81828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82468/","id":82468,"name":"Black Beetle","site_detail_url":"https://comicvine.gamespot.com/black-beetle/4005-82468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82690/","id":82690,"name":"Bowie","site_detail_url":"https://comicvine.gamespot.com/bowie/4005-82690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82701/","id":82701,"name":"Gideon","site_detail_url":"https://comicvine.gamespot.com/gideon/4005-82701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82768/","id":82768,"name":"Alan Mistero","site_detail_url":"https://comicvine.gamespot.com/alan-mistero/4005-82768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82857/","id":82857,"name":"Shazzan","site_detail_url":"https://comicvine.gamespot.com/shazzan/4005-82857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83251/","id":83251,"name":"Raptra","site_detail_url":"https://comicvine.gamespot.com/raptra/4005-83251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83371/","id":83371,"name":"D'Khan","site_detail_url":"https://comicvine.gamespot.com/dkhan/4005-83371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83410/","id":83410,"name":"Porker Metallix","site_detail_url":"https://comicvine.gamespot.com/porker-metallix/4005-83410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83476/","id":83476,"name":"Mania","site_detail_url":"https://comicvine.gamespot.com/mania/4005-83476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83616/","id":83616,"name":"Liss","site_detail_url":"https://comicvine.gamespot.com/liss/4005-83616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83721/","id":83721,"name":"Nazum","site_detail_url":"https://comicvine.gamespot.com/nazum/4005-83721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83726/","id":83726,"name":"Skrak","site_detail_url":"https://comicvine.gamespot.com/skrak/4005-83726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83875/","id":83875,"name":"Blur","site_detail_url":"https://comicvine.gamespot.com/blur/4005-83875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84031/","id":84031,"name":"Sszzaas","site_detail_url":"https://comicvine.gamespot.com/sszzaas/4005-84031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84070/","id":84070,"name":"Camaleão","site_detail_url":"https://comicvine.gamespot.com/camaleao/4005-84070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84724/","id":84724,"name":"Harvey Who","site_detail_url":"https://comicvine.gamespot.com/harvey-who/4005-84724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85258/","id":85258,"name":"Voodoo Clone","site_detail_url":"https://comicvine.gamespot.com/voodoo-clone/4005-85258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85781/","id":85781,"name":"Nick Necro","site_detail_url":"https://comicvine.gamespot.com/nick-necro/4005-85781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86207/","id":86207,"name":"Zane Pinchback","site_detail_url":"https://comicvine.gamespot.com/zane-pinchback/4005-86207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86298/","id":86298,"name":"Apparition","site_detail_url":"https://comicvine.gamespot.com/apparition/4005-86298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86545/","id":86545,"name":"Tia Jenkins","site_detail_url":"https://comicvine.gamespot.com/tia-jenkins/4005-86545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86570/","id":86570,"name":"Queen Chrysalis","site_detail_url":"https://comicvine.gamespot.com/queen-chrysalis/4005-86570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86741/","id":86741,"name":"Apex","site_detail_url":"https://comicvine.gamespot.com/apex/4005-86741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87202/","id":87202,"name":"Princess Luna","site_detail_url":"https://comicvine.gamespot.com/princess-luna/4005-87202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87276/","id":87276,"name":"Big Momma","site_detail_url":"https://comicvine.gamespot.com/big-momma/4005-87276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87307/","id":87307,"name":"Adilgashii","site_detail_url":"https://comicvine.gamespot.com/adilgashii/4005-87307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87522/","id":87522,"name":"Magus","site_detail_url":"https://comicvine.gamespot.com/magus/4005-87522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88011/","id":88011,"name":"Hunson Abadeer","site_detail_url":"https://comicvine.gamespot.com/hunson-abadeer/4005-88011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88345/","id":88345,"name":"Vetis","site_detail_url":"https://comicvine.gamespot.com/vetis/4005-88345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88518/","id":88518,"name":"Black Orchid (Garcia)","site_detail_url":"https://comicvine.gamespot.com/black-orchid-garcia/4005-88518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88774/","id":88774,"name":"Bartuzan","site_detail_url":"https://comicvine.gamespot.com/bartuzan/4005-88774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89811/","id":89811,"name":"Peeta Mellark","site_detail_url":"https://comicvine.gamespot.com/peeta-mellark/4005-89811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90077/","id":90077,"name":"Cyrax","site_detail_url":"https://comicvine.gamespot.com/cyrax/4005-90077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90078/","id":90078,"name":"Sektor","site_detail_url":"https://comicvine.gamespot.com/sektor/4005-90078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90246/","id":90246,"name":"Bobby Tisdell","site_detail_url":"https://comicvine.gamespot.com/bobby-tisdell/4005-90246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90267/","id":90267,"name":"Andi Benton","site_detail_url":"https://comicvine.gamespot.com/andi-benton/4005-90267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90962/","id":90962,"name":"Sister Midnight","site_detail_url":"https://comicvine.gamespot.com/sister-midnight/4005-90962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90963/","id":90963,"name":"DarkAlien","site_detail_url":"https://comicvine.gamespot.com/dark-alien/4005-90963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91047/","id":91047,"name":"Siri","site_detail_url":"https://comicvine.gamespot.com/siri/4005-91047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91205/","id":91205,"name":"Mother","site_detail_url":"https://comicvine.gamespot.com/mother/4005-91205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91271/","id":91271,"name":"Super-Skrull Alpha","site_detail_url":"https://comicvine.gamespot.com/super-skrull-alpha/4005-91271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91285/","id":91285,"name":"Kiera Cameron","site_detail_url":"https://comicvine.gamespot.com/kiera-cameron/4005-91285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91527/","id":91527,"name":"Shelly Finkelstein","site_detail_url":"https://comicvine.gamespot.com/shelly-finkelstein/4005-91527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91533/","id":91533,"name":"Felicia Valentine","site_detail_url":"https://comicvine.gamespot.com/felicia-valentine/4005-91533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91560/","id":91560,"name":"Megalith","site_detail_url":"https://comicvine.gamespot.com/megalith/4005-91560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91606/","id":91606,"name":"Xotai","site_detail_url":"https://comicvine.gamespot.com/xotai/4005-91606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91608/","id":91608,"name":"Dr. Julianne Quinn","site_detail_url":"https://comicvine.gamespot.com/dr-julianne-quinn/4005-91608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91610/","id":91610,"name":"Dreamstalker","site_detail_url":"https://comicvine.gamespot.com/dreamstalker/4005-91610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91864/","id":91864,"name":"Waxman","site_detail_url":"https://comicvine.gamespot.com/waxman/4005-91864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91928/","id":91928,"name":"A'monn A'mokk","site_detail_url":"https://comicvine.gamespot.com/amonn-amokk/4005-91928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91929/","id":91929,"name":"A'morr","site_detail_url":"https://comicvine.gamespot.com/amorr/4005-91929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92659/","id":92659,"name":"Presto-Change'o","site_detail_url":"https://comicvine.gamespot.com/presto-change-o/4005-92659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92681/","id":92681,"name":"Ricky Rainbow","site_detail_url":"https://comicvine.gamespot.com/ricky-rainbow/4005-92681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92866/","id":92866,"name":"Pica","site_detail_url":"https://comicvine.gamespot.com/pica/4005-92866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93123/","id":93123,"name":"Raze","site_detail_url":"https://comicvine.gamespot.com/raze/4005-93123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93200/","id":93200,"name":"K'Thron","site_detail_url":"https://comicvine.gamespot.com/k-thron/4005-93200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94254/","id":94254,"name":"Krrish","site_detail_url":"https://comicvine.gamespot.com/krrish/4005-94254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95245/","id":95245,"name":"Daring Do","site_detail_url":"https://comicvine.gamespot.com/daring-do/4005-95245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95394/","id":95394,"name":"Ariel Masters","site_detail_url":"https://comicvine.gamespot.com/ariel-masters/4005-95394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95824/","id":95824,"name":"Hate-Monger (Construct)","site_detail_url":"https://comicvine.gamespot.com/hatemonger-construct/4005-95824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95842/","id":95842,"name":"Dean Ambrose","site_detail_url":"https://comicvine.gamespot.com/dean-ambrose/4005-95842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97525/","id":97525,"name":"Nilin","site_detail_url":"https://comicvine.gamespot.com/nilin/4005-97525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97923/","id":97923,"name":"Hades IX","site_detail_url":"https://comicvine.gamespot.com/hades-ix/4005-97923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99084/","id":99084,"name":"Marcus","site_detail_url":"https://comicvine.gamespot.com/marcus/4005-99084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99913/","id":99913,"name":"Hermes IX","site_detail_url":"https://comicvine.gamespot.com/hermes-ix/4005-99913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100117/","id":100117,"name":"Joshua Black","site_detail_url":"https://comicvine.gamespot.com/joshua-black/4005-100117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100359/","id":100359,"name":"Forest Devil","site_detail_url":"https://comicvine.gamespot.com/forest-devil/4005-100359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100614/","id":100614,"name":"Genesect","site_detail_url":"https://comicvine.gamespot.com/genesect/4005-100614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102695/","id":102695,"name":"Shun Kazami","site_detail_url":"https://comicvine.gamespot.com/shun-kazami/4005-102695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105425/","id":105425,"name":"B.I.O.N.","site_detail_url":"https://comicvine.gamespot.com/b-i-o-n/4005-105425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106332/","id":106332,"name":"Inner Sea","site_detail_url":"https://comicvine.gamespot.com/inner-sea/4005-106332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106656/","id":106656,"name":"The Quiet Man","site_detail_url":"https://comicvine.gamespot.com/the-quiet-man/4005-106656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107474/","id":107474,"name":"Light-Stepper","site_detail_url":"https://comicvine.gamespot.com/light-stepper/4005-107474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108581/","id":108581,"name":"Kid Chameleon","site_detail_url":"https://comicvine.gamespot.com/kid-chameleon/4005-108581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108635/","id":108635,"name":"Uncle Grandpa","site_detail_url":"https://comicvine.gamespot.com/uncle-grandpa/4005-108635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108733/","id":108733,"name":"Furiosa","site_detail_url":"https://comicvine.gamespot.com/furiosa/4005-108733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109924/","id":109924,"name":"Kamacuras","site_detail_url":"https://comicvine.gamespot.com/kamacuras/4005-109924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110096/","id":110096,"name":"The Poet","site_detail_url":"https://comicvine.gamespot.com/the-poet/4005-110096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111198/","id":111198,"name":"Korosensei","site_detail_url":"https://comicvine.gamespot.com/korosensei/4005-111198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114213/","id":114213,"name":"Sramian Snitch","site_detail_url":"https://comicvine.gamespot.com/sramian-snitch/4005-114213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114580/","id":114580,"name":"Prometheus","site_detail_url":"https://comicvine.gamespot.com/prometheus/4005-114580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117711/","id":117711,"name":"Artemis Gordon","site_detail_url":"https://comicvine.gamespot.com/artemis-gordon/4005-117711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119155/","id":119155,"name":"Jane Jones","site_detail_url":"https://comicvine.gamespot.com/jane-jones/4005-119155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119827/","id":119827,"name":"Tsuyu Asui","site_detail_url":"https://comicvine.gamespot.com/tsuyu-asui/4005-119827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119982/","id":119982,"name":"Fab","site_detail_url":"https://comicvine.gamespot.com/fab/4005-119982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122760/","id":122760,"name":"Dr. Chameleon","site_detail_url":"https://comicvine.gamespot.com/dr-chameleon/4005-122760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123321/","id":123321,"name":"Touya","site_detail_url":"https://comicvine.gamespot.com/touya/4005-123321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124024/","id":124024,"name":"Merlin the Magician","site_detail_url":"https://comicvine.gamespot.com/merlin-the-magician/4005-124024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124240/","id":124240,"name":"Question (Trinity of Sin)","site_detail_url":"https://comicvine.gamespot.com/question-trinity-of-sin/4005-124240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126658/","id":126658,"name":"Dead Water","site_detail_url":"https://comicvine.gamespot.com/dead-water/4005-126658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129524/","id":129524,"name":"Crypsis","site_detail_url":"https://comicvine.gamespot.com/crypsis/4005-129524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134265/","id":134265,"name":"The Last Enemy","site_detail_url":"https://comicvine.gamespot.com/the-last-enemy/4005-134265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134315/","id":134315,"name":"Kareem","site_detail_url":"https://comicvine.gamespot.com/kareem/4005-134315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137897/","id":137897,"name":"Sombra","site_detail_url":"https://comicvine.gamespot.com/sombra/4005-137897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140532/","id":140532,"name":"Skrull Ms. Marvel","site_detail_url":"https://comicvine.gamespot.com/skrull-ms-marvel/4005-140532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140641/","id":140641,"name":"Tordenkakerlakk","site_detail_url":"https://comicvine.gamespot.com/tordenkakerlakk/4005-140641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140763/","id":140763,"name":"Saint Cyrus Leviticus","site_detail_url":"https://comicvine.gamespot.com/saint-cyrus-leviticus/4005-140763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144136/","id":144136,"name":"Valla","site_detail_url":"https://comicvine.gamespot.com/valla/4005-144136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144709/","id":144709,"name":"Madame Charade","site_detail_url":"https://comicvine.gamespot.com/madame-charade/4005-144709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146251/","id":146251,"name":"The Skull","site_detail_url":"https://comicvine.gamespot.com/the-skull/4005-146251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146725/","id":146725,"name":"Kolonel Kool","site_detail_url":"https://comicvine.gamespot.com/kolonel-kool/4005-146725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147759/","id":147759,"name":"Harry Force","site_detail_url":"https://comicvine.gamespot.com/harry-force/4005-147759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149187/","id":149187,"name":"Mt'Nox","site_detail_url":"https://comicvine.gamespot.com/mtnox/4005-149187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149238/","id":149238,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-149238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151211/","id":151211,"name":"Swerve","site_detail_url":"https://comicvine.gamespot.com/swerve/4005-151211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152053/","id":152053,"name":"Green Lantern of Sector 1582","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-1582/4005-152053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154903/","id":154903,"name":"Roger","site_detail_url":"https://comicvine.gamespot.com/roger/4005-154903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155386/","id":155386,"name":"Doppelgangsta","site_detail_url":"https://comicvine.gamespot.com/doppelgangsta/4005-155386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157013/","id":157013,"name":"Raptor Prime","site_detail_url":"https://comicvine.gamespot.com/raptor-prime/4005-157013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157178/","id":157178,"name":"Abrax","site_detail_url":"https://comicvine.gamespot.com/abrax/4005-157178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158054/","id":158054,"name":"Tristram Maurer","site_detail_url":"https://comicvine.gamespot.com/tristram-maurer/4005-158054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160394/","id":160394,"name":"Mr. Mimico","site_detail_url":"https://comicvine.gamespot.com/mr-mimico/4005-160394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160415/","id":160415,"name":"Lay-Z-Boy","site_detail_url":"https://comicvine.gamespot.com/lay-z-boy/4005-160415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160417/","id":160417,"name":"Naked Blue Girl","site_detail_url":"https://comicvine.gamespot.com/naked-blue-girl/4005-160417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161190/","id":161190,"name":"Germān Aguilar","site_detail_url":"https://comicvine.gamespot.com/german-aguilar/4005-161190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162862/","id":162862,"name":"A1","site_detail_url":"https://comicvine.gamespot.com/a1/4005-162862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162863/","id":162863,"name":"A2","site_detail_url":"https://comicvine.gamespot.com/a2/4005-162863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165547/","id":165547,"name":"Greyback","site_detail_url":"https://comicvine.gamespot.com/greyback/4005-165547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165656/","id":165656,"name":"Composite Batman/Superman","site_detail_url":"https://comicvine.gamespot.com/composite-batmansuperman/4005-165656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166269/","id":166269,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/chameleon/4005-166269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167213/","id":167213,"name":"Murmur","site_detail_url":"https://comicvine.gamespot.com/murmur/4005-167213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167741/","id":167741,"name":"Camille Phoenix","site_detail_url":"https://comicvine.gamespot.com/camille-phoenix/4005-167741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170055/","id":170055,"name":"Dr. Jonathan Jacobo","site_detail_url":"https://comicvine.gamespot.com/dr-jonathan-jacobo/4005-170055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170176/","id":170176,"name":"Bren Waters","site_detail_url":"https://comicvine.gamespot.com/bren-waters/4005-170176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171871/","id":171871,"name":"Third Cosmos","site_detail_url":"https://comicvine.gamespot.com/third-cosmos/4005-171871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174429/","id":174429,"name":"Redstone","site_detail_url":"https://comicvine.gamespot.com/redstone/4005-174429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175498/","id":175498,"name":"Charles Cameo","site_detail_url":"https://comicvine.gamespot.com/charles-cameo/4005-175498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176629/","id":176629,"name":"White Ninja","site_detail_url":"https://comicvine.gamespot.com/white-ninja/4005-176629/"}],"date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    A chameleon is any character that has the ability to blend into their surrounding by changing the color and texture of their skin either through a natural ability or mechanical device. It is often confused (and at the same time paired) with shape changing, which is the ability to transform your body into another shape. Chameleons tend to be villanous more often the good, using their camoflouge skills to sneak or gain access to a restricted area. Characters with this ability tend to have mixed personalities and have a hard time defining themselves in any one way.

    ","id":23,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=chameleon&wikiTypeId=4035&wikiId=23&powers%5B%5D=23"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/power-details/power-4035-7.json b/samples/api-data/power-details/power-4035-7.json new file mode 100644 index 0000000..fffb246 --- /dev/null +++ b/samples/api-data/power-details/power-4035-7.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-7/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1273/","id":1273,"name":"Saturn Girl","site_detail_url":"https://comicvine.gamespot.com/saturn-girl/4005-1273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1338/","id":1338,"name":"Nightveil","site_detail_url":"https://comicvine.gamespot.com/nightveil/4005-1338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1341/","id":1341,"name":"Garganta","site_detail_url":"https://comicvine.gamespot.com/garganta/4005-1341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1402/","id":1402,"name":"Mental Midget","site_detail_url":"https://comicvine.gamespot.com/mental-midget/4005-1402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1451/","id":1451,"name":"Falcon","site_detail_url":"https://comicvine.gamespot.com/falcon/4005-1451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1454/","id":1454,"name":"Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry/4005-1454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1456/","id":1456,"name":"Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/doctor-strange/4005-1456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1457/","id":1457,"name":"Emma Frost","site_detail_url":"https://comicvine.gamespot.com/emma-frost/4005-1457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1466/","id":1466,"name":"Scarlet Witch","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch/4005-1466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1476/","id":1476,"name":"Namor","site_detail_url":"https://comicvine.gamespot.com/namor/4005-1476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1486/","id":1486,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/venom/4005-1486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1488/","id":1488,"name":"Lizard","site_detail_url":"https://comicvine.gamespot.com/lizard/4005-1488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1505/","id":1505,"name":"Professor X","site_detail_url":"https://comicvine.gamespot.com/professor-x/4005-1505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1548/","id":1548,"name":"Skywise","site_detail_url":"https://comicvine.gamespot.com/skywise/4005-1548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1549/","id":1549,"name":"Bearclaw","site_detail_url":"https://comicvine.gamespot.com/bearclaw/4005-1549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1554/","id":1554,"name":"Rayek","site_detail_url":"https://comicvine.gamespot.com/rayek/4005-1554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1556/","id":1556,"name":"Ember","site_detail_url":"https://comicvine.gamespot.com/ember/4005-1556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1686/","id":1686,"name":"Kon-El","site_detail_url":"https://comicvine.gamespot.com/kon-el/4005-1686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1721/","id":1721,"name":"Aunt Zelda Spellman","site_detail_url":"https://comicvine.gamespot.com/aunt-zelda-spellman/4005-1721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1722/","id":1722,"name":"Sabrina Spellman","site_detail_url":"https://comicvine.gamespot.com/sabrina-spellman/4005-1722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1748/","id":1748,"name":"Aunt Hilda Spellman","site_detail_url":"https://comicvine.gamespot.com/aunt-hilda-spellman/4005-1748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1758/","id":1758,"name":"Abra","site_detail_url":"https://comicvine.gamespot.com/abra/4005-1758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1802/","id":1802,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4005-1802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1807/","id":1807,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4005-1807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1815/","id":1815,"name":"Susie Tompkins","site_detail_url":"https://comicvine.gamespot.com/susie-tompkins/4005-1815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1849/","id":1849,"name":"Cutter","site_detail_url":"https://comicvine.gamespot.com/cutter/4005-1849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1853/","id":1853,"name":"Suntop","site_detail_url":"https://comicvine.gamespot.com/suntop/4005-1853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1854/","id":1854,"name":"Savah","site_detail_url":"https://comicvine.gamespot.com/savah/4005-1854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1871/","id":1871,"name":"Moonshade","site_detail_url":"https://comicvine.gamespot.com/moonshade/4005-1871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1888/","id":1888,"name":"Winnowill","site_detail_url":"https://comicvine.gamespot.com/winnowill/4005-1888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1938/","id":1938,"name":"Chase Stein","site_detail_url":"https://comicvine.gamespot.com/chase-stein/4005-1938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1939/","id":1939,"name":"Gertrude Yorkes","site_detail_url":"https://comicvine.gamespot.com/gertrude-yorkes/4005-1939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1940/","id":1940,"name":"Nico Minoru","site_detail_url":"https://comicvine.gamespot.com/nico-minoru/4005-1940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2021/","id":2021,"name":"Mandala","site_detail_url":"https://comicvine.gamespot.com/mandala/4005-2021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2046/","id":2046,"name":"Arisia","site_detail_url":"https://comicvine.gamespot.com/arisia/4005-2046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2047/","id":2047,"name":"Martian Manhunter","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter/4005-2047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2060/","id":2060,"name":"Boodikka","site_detail_url":"https://comicvine.gamespot.com/boodikka/4005-2060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2092/","id":2092,"name":"Mathemanic","site_detail_url":"https://comicvine.gamespot.com/mathemanic/4005-2092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2118/","id":2118,"name":"Sersi","site_detail_url":"https://comicvine.gamespot.com/sersi/4005-2118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2125/","id":2125,"name":"Sphinx","site_detail_url":"https://comicvine.gamespot.com/sphinx/4005-2125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2149/","id":2149,"name":"Galactus","site_detail_url":"https://comicvine.gamespot.com/galactus/4005-2149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2153/","id":2153,"name":"Uranian","site_detail_url":"https://comicvine.gamespot.com/uranian/4005-2153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2155/","id":2155,"name":"Piecemeal","site_detail_url":"https://comicvine.gamespot.com/piecemeal/4005-2155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2157/","id":2157,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4005-2157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2164/","id":2164,"name":"Phoenix Force","site_detail_url":"https://comicvine.gamespot.com/phoenix-force/4005-2164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2165/","id":2165,"name":"Proteus","site_detail_url":"https://comicvine.gamespot.com/proteus/4005-2165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2168/","id":2168,"name":"Starhawk","site_detail_url":"https://comicvine.gamespot.com/starhawk/4005-2168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2176/","id":2176,"name":"Selene","site_detail_url":"https://comicvine.gamespot.com/selene/4005-2176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2194/","id":2194,"name":"Jack Hawksmoor","site_detail_url":"https://comicvine.gamespot.com/jack-hawksmoor/4005-2194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2199/","id":2199,"name":"Henry Bendix","site_detail_url":"https://comicvine.gamespot.com/henry-bendix/4005-2199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2201/","id":2201,"name":"Doctor","site_detail_url":"https://comicvine.gamespot.com/doctor/4005-2201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2205/","id":2205,"name":"Dormammu","site_detail_url":"https://comicvine.gamespot.com/dormammu/4005-2205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2206/","id":2206,"name":"Obi-Wan Kenobi","site_detail_url":"https://comicvine.gamespot.com/obi-wan-kenobi/4005-2206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2212/","id":2212,"name":"Ancient One","site_detail_url":"https://comicvine.gamespot.com/ancient-one/4005-2212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2216/","id":2216,"name":"Clea","site_detail_url":"https://comicvine.gamespot.com/clea/4005-2216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2244/","id":2244,"name":"Chamber","site_detail_url":"https://comicvine.gamespot.com/chamber/4005-2244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2349/","id":2349,"name":"Darkseid","site_detail_url":"https://comicvine.gamespot.com/darkseid/4005-2349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2357/","id":2357,"name":"Aquaman","site_detail_url":"https://comicvine.gamespot.com/aquaman/4005-2357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2361/","id":2361,"name":"Spectre","site_detail_url":"https://comicvine.gamespot.com/spectre/4005-2361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2365/","id":2365,"name":"The Wizard","site_detail_url":"https://comicvine.gamespot.com/the-wizard/4005-2365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2380/","id":2380,"name":"Gorilla Grodd","site_detail_url":"https://comicvine.gamespot.com/gorilla-grodd/4005-2380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2382/","id":2382,"name":"Tempest","site_detail_url":"https://comicvine.gamespot.com/tempest/4005-2382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2469/","id":2469,"name":"Franklin Richards","site_detail_url":"https://comicvine.gamespot.com/franklin-richards/4005-2469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2496/","id":2496,"name":"Oblivion","site_detail_url":"https://comicvine.gamespot.com/oblivion/4005-2496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2502/","id":2502,"name":"Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/silver-surfer/4005-2502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2551/","id":2551,"name":"Vixen","site_detail_url":"https://comicvine.gamespot.com/vixen/4005-2551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2637/","id":2637,"name":"Umar","site_detail_url":"https://comicvine.gamespot.com/umar/4005-2637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2638/","id":2638,"name":"Malevolence","site_detail_url":"https://comicvine.gamespot.com/malevolence/4005-2638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3139/","id":3139,"name":"Manslaughter","site_detail_url":"https://comicvine.gamespot.com/manslaughter/4005-3139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3176/","id":3176,"name":"Betsy Braddock","site_detail_url":"https://comicvine.gamespot.com/betsy-braddock/4005-3176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3177/","id":3177,"name":"Charles Lehnsherr","site_detail_url":"https://comicvine.gamespot.com/charles-lehnsherr/4005-3177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3179/","id":3179,"name":"Mr. Sinister","site_detail_url":"https://comicvine.gamespot.com/mr-sinister/4005-3179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3183/","id":3183,"name":"Xorn","site_detail_url":"https://comicvine.gamespot.com/xorn/4005-3183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3227/","id":3227,"name":"Purple Man","site_detail_url":"https://comicvine.gamespot.com/purple-man/4005-3227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3232/","id":3232,"name":"Controller","site_detail_url":"https://comicvine.gamespot.com/controller/4005-3232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3263/","id":3263,"name":"Network","site_detail_url":"https://comicvine.gamespot.com/network/4005-3263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3291/","id":3291,"name":"Nabu the Wise","site_detail_url":"https://comicvine.gamespot.com/nabu-the-wise/4005-3291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3298/","id":3298,"name":"Phantom Stranger","site_detail_url":"https://comicvine.gamespot.com/phantom-stranger/4005-3298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3324/","id":3324,"name":"Mantis","site_detail_url":"https://comicvine.gamespot.com/mantis/4005-3324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3327/","id":3327,"name":"Agatha Harkness","site_detail_url":"https://comicvine.gamespot.com/agatha-harkness/4005-3327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3373/","id":3373,"name":"Vodo-Siosk Baas","site_detail_url":"https://comicvine.gamespot.com/vodo-siosk-baas/4005-3373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3381/","id":3381,"name":"Spawn (Simmons)","site_detail_url":"https://comicvine.gamespot.com/spawn-simmons/4005-3381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3390/","id":3390,"name":"Violator","site_detail_url":"https://comicvine.gamespot.com/violator/4005-3390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3414/","id":3414,"name":"Cliff Carmichael","site_detail_url":"https://comicvine.gamespot.com/cliff-carmichael/4005-3414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3424/","id":3424,"name":"Shola Inkosi","site_detail_url":"https://comicvine.gamespot.com/shola-inkosi/4005-3424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3468/","id":3468,"name":"Tyrannus","site_detail_url":"https://comicvine.gamespot.com/tyrannus/4005-3468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3507/","id":3507,"name":"Odin","site_detail_url":"https://comicvine.gamespot.com/odin/4005-3507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3552/","id":3552,"name":"Jean Grey","site_detail_url":"https://comicvine.gamespot.com/jean-grey/4005-3552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3566/","id":3566,"name":"Rachel Grey","site_detail_url":"https://comicvine.gamespot.com/rachel-grey/4005-3566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3584/","id":3584,"name":"Raven","site_detail_url":"https://comicvine.gamespot.com/raven/4005-3584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3593/","id":3593,"name":"Saturn Queen","site_detail_url":"https://comicvine.gamespot.com/saturn-queen/4005-3593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3616/","id":3616,"name":"Metron","site_detail_url":"https://comicvine.gamespot.com/metron/4005-3616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3709/","id":3709,"name":"M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/modok/4005-3709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3737/","id":3737,"name":"Amazo","site_detail_url":"https://comicvine.gamespot.com/amazo/4005-3737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3777/","id":3777,"name":"Gorgon","site_detail_url":"https://comicvine.gamespot.com/gorgon/4005-3777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4033/","id":4033,"name":"Head Witch Della","site_detail_url":"https://comicvine.gamespot.com/head-witch-della/4005-4033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4280/","id":4280,"name":"Shortpack","site_detail_url":"https://comicvine.gamespot.com/shortpack/4005-4280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4324/","id":4324,"name":"Loki","site_detail_url":"https://comicvine.gamespot.com/loki/4005-4324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4329/","id":4329,"name":"Black Bolt","site_detail_url":"https://comicvine.gamespot.com/black-bolt/4005-4329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4342/","id":4342,"name":"Hela","site_detail_url":"https://comicvine.gamespot.com/hela/4005-4342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4456/","id":4456,"name":"John Jameson","site_detail_url":"https://comicvine.gamespot.com/john-jameson/4005-4456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4490/","id":4490,"name":"Alfred Bester","site_detail_url":"https://comicvine.gamespot.com/alfred-bester/4005-4490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4491/","id":4491,"name":"Diane Matthews","site_detail_url":"https://comicvine.gamespot.com/diane-matthews/4005-4491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4492/","id":4492,"name":"William Karges","site_detail_url":"https://comicvine.gamespot.com/william-karges/4005-4492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4509/","id":4509,"name":"Talia Winters","site_detail_url":"https://comicvine.gamespot.com/talia-winters/4005-4509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4517/","id":4517,"name":"Kosh","site_detail_url":"https://comicvine.gamespot.com/kosh/4005-4517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4559/","id":4559,"name":"Sage","site_detail_url":"https://comicvine.gamespot.com/sage/4005-4559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4565/","id":4565,"name":"Nocturne","site_detail_url":"https://comicvine.gamespot.com/nocturne/4005-4565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4566/","id":4566,"name":"Carter Ghazikhanian","site_detail_url":"https://comicvine.gamespot.com/carter-ghazikhanian/4005-4566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4567/","id":4567,"name":"Exodus","site_detail_url":"https://comicvine.gamespot.com/exodus/4005-4567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4605/","id":4605,"name":"Starbreaker","site_detail_url":"https://comicvine.gamespot.com/starbreaker/4005-4605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4646/","id":4646,"name":"Gateway","site_detail_url":"https://comicvine.gamespot.com/gateway/4005-4646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4681/","id":4681,"name":"Desaad","site_detail_url":"https://comicvine.gamespot.com/desaad/4005-4681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4684/","id":4684,"name":"Brainiac","site_detail_url":"https://comicvine.gamespot.com/brainiac/4005-4684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4716/","id":4716,"name":"Claire Voyant","site_detail_url":"https://comicvine.gamespot.com/claire-voyant/4005-4716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4719/","id":4719,"name":"Big Brain","site_detail_url":"https://comicvine.gamespot.com/big-brain/4005-4719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4812/","id":4812,"name":"Overmind","site_detail_url":"https://comicvine.gamespot.com/overmind/4005-4812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4834/","id":4834,"name":"Sea Leopard","site_detail_url":"https://comicvine.gamespot.com/sea-leopard/4005-4834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4839/","id":4839,"name":"Nagala","site_detail_url":"https://comicvine.gamespot.com/nagala/4005-4839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4843/","id":4843,"name":"Dragonrider","site_detail_url":"https://comicvine.gamespot.com/dragonrider/4005-4843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4904/","id":4904,"name":"Mordru","site_detail_url":"https://comicvine.gamespot.com/mordru/4005-4904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4905/","id":4905,"name":"Hector Hall","site_detail_url":"https://comicvine.gamespot.com/hector-hall/4005-4905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4918/","id":4918,"name":"Dr. Psycho","site_detail_url":"https://comicvine.gamespot.com/dr-psycho/4005-4918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4957/","id":4957,"name":"Malebolgia","site_detail_url":"https://comicvine.gamespot.com/malebolgia/4005-4957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4988/","id":4988,"name":"Man-Thing","site_detail_url":"https://comicvine.gamespot.com/man-thing/4005-4988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4995/","id":4995,"name":"Hack","site_detail_url":"https://comicvine.gamespot.com/hack/4005-4995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5017/","id":5017,"name":"Shaman","site_detail_url":"https://comicvine.gamespot.com/shaman/4005-5017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5053/","id":5053,"name":"Luther Arkwright","site_detail_url":"https://comicvine.gamespot.com/luther-arkwright/4005-5053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5186/","id":5186,"name":"Psilence","site_detail_url":"https://comicvine.gamespot.com/psilence/4005-5186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5281/","id":5281,"name":"Sentinel","site_detail_url":"https://comicvine.gamespot.com/sentinel/4005-5281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5283/","id":5283,"name":"Psi-Fire","site_detail_url":"https://comicvine.gamespot.com/psi-fire/4005-5283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5310/","id":5310,"name":"Trigon","site_detail_url":"https://comicvine.gamespot.com/trigon/4005-5310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5324/","id":5324,"name":"Highfather","site_detail_url":"https://comicvine.gamespot.com/highfather/4005-5324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5387/","id":5387,"name":"Quinlan Vos","site_detail_url":"https://comicvine.gamespot.com/quinlan-vos/4005-5387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5389/","id":5389,"name":"Aayla Secura","site_detail_url":"https://comicvine.gamespot.com/aayla-secura/4005-5389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5390/","id":5390,"name":"Master Tholme","site_detail_url":"https://comicvine.gamespot.com/master-tholme/4005-5390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5395/","id":5395,"name":"Mace Windu","site_detail_url":"https://comicvine.gamespot.com/mace-windu/4005-5395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5396/","id":5396,"name":"Yoda","site_detail_url":"https://comicvine.gamespot.com/yoda/4005-5396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5403/","id":5403,"name":"Plo Koon","site_detail_url":"https://comicvine.gamespot.com/plo-koon/4005-5403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5404/","id":5404,"name":"Saesee Tiin","site_detail_url":"https://comicvine.gamespot.com/saesee-tiin/4005-5404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5405/","id":5405,"name":"Yarael Poof","site_detail_url":"https://comicvine.gamespot.com/yarael-poof/4005-5405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5406/","id":5406,"name":"Darth Maul","site_detail_url":"https://comicvine.gamespot.com/darth-maul/4005-5406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5414/","id":5414,"name":"Sha Koon","site_detail_url":"https://comicvine.gamespot.com/sha-koon/4005-5414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5418/","id":5418,"name":"Volfe Karkko","site_detail_url":"https://comicvine.gamespot.com/volfe-karkko/4005-5418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5419/","id":5419,"name":"Zao","site_detail_url":"https://comicvine.gamespot.com/zao/4005-5419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5422/","id":5422,"name":"Ki-Adi-Mundi","site_detail_url":"https://comicvine.gamespot.com/ki-adi-mundi/4005-5422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5423/","id":5423,"name":"Dark Woman","site_detail_url":"https://comicvine.gamespot.com/dark-woman/4005-5423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5424/","id":5424,"name":"Yaddle","site_detail_url":"https://comicvine.gamespot.com/yaddle/4005-5424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5425/","id":5425,"name":"Even Piell","site_detail_url":"https://comicvine.gamespot.com/even-piell/4005-5425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5426/","id":5426,"name":"Depa Billaba","site_detail_url":"https://comicvine.gamespot.com/depa-billaba/4005-5426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5479/","id":5479,"name":"Johann Kraus","site_detail_url":"https://comicvine.gamespot.com/johann-kraus/4005-5479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5501/","id":5501,"name":"Hecate","site_detail_url":"https://comicvine.gamespot.com/hecate/4005-5501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5609/","id":5609,"name":"Brain Boy","site_detail_url":"https://comicvine.gamespot.com/brain-boy/4005-5609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5617/","id":5617,"name":"Lee","site_detail_url":"https://comicvine.gamespot.com/lee/4005-5617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5691/","id":5691,"name":"Zatanna","site_detail_url":"https://comicvine.gamespot.com/zatanna/4005-5691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5852/","id":5852,"name":"Teneb Kel","site_detail_url":"https://comicvine.gamespot.com/teneb-kel/4005-5852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5898/","id":5898,"name":"Kent V. Nelson","site_detail_url":"https://comicvine.gamespot.com/kent-v-nelson/4005-5898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5901/","id":5901,"name":"Aquagirl (Marquez)","site_detail_url":"https://comicvine.gamespot.com/aquagirl-marquez/4005-5901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5947/","id":5947,"name":"Tharok","site_detail_url":"https://comicvine.gamespot.com/tharok/4005-5947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5951/","id":5951,"name":"Psimon","site_detail_url":"https://comicvine.gamespot.com/psimon/4005-5951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6093/","id":6093,"name":"Oracle","site_detail_url":"https://comicvine.gamespot.com/oracle/4005-6093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6096/","id":6096,"name":"Supreme Intelligence","site_detail_url":"https://comicvine.gamespot.com/supreme-intelligence/4005-6096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6120/","id":6120,"name":"Stringer","site_detail_url":"https://comicvine.gamespot.com/stringer/4005-6120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6140/","id":6140,"name":"Xenith","site_detail_url":"https://comicvine.gamespot.com/xenith/4005-6140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6144/","id":6144,"name":"Lilandra","site_detail_url":"https://comicvine.gamespot.com/lilandra/4005-6144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6246/","id":6246,"name":"John Lone Eagle","site_detail_url":"https://comicvine.gamespot.com/john-lone-eagle/4005-6246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6315/","id":6315,"name":"Luke Skywalker","site_detail_url":"https://comicvine.gamespot.com/luke-skywalker/4005-6315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6342/","id":6342,"name":"Darth Vader","site_detail_url":"https://comicvine.gamespot.com/darth-vader/4005-6342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6372/","id":6372,"name":"Anakin Solo","site_detail_url":"https://comicvine.gamespot.com/anakin-solo/4005-6372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6593/","id":6593,"name":"Felix Faust","site_detail_url":"https://comicvine.gamespot.com/felix-faust/4005-6593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6599/","id":6599,"name":"Kent Nelson","site_detail_url":"https://comicvine.gamespot.com/kent-nelson/4005-6599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6600/","id":6600,"name":"Inza Nelson","site_detail_url":"https://comicvine.gamespot.com/inza-nelson/4005-6600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6652/","id":6652,"name":"Darkfire","site_detail_url":"https://comicvine.gamespot.com/darkfire/4005-6652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6673/","id":6673,"name":"Miss Masque","site_detail_url":"https://comicvine.gamespot.com/miss-masque/4005-6673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6798/","id":6798,"name":"Zoma The Watcher","site_detail_url":"https://comicvine.gamespot.com/zoma-the-watcher/4005-6798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6805/","id":6805,"name":"Adam Warlock","site_detail_url":"https://comicvine.gamespot.com/adam-warlock/4005-6805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6808/","id":6808,"name":"Forbush Man","site_detail_url":"https://comicvine.gamespot.com/forbush-man/4005-6808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6811/","id":6811,"name":"Living Tribunal","site_detail_url":"https://comicvine.gamespot.com/living-tribunal/4005-6811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6814/","id":6814,"name":"Qyre","site_detail_url":"https://comicvine.gamespot.com/qyre/4005-6814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6891/","id":6891,"name":"Morgan le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-6891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6902/","id":6902,"name":"Zauriel","site_detail_url":"https://comicvine.gamespot.com/zauriel/4005-6902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6914/","id":6914,"name":"Amphibian","site_detail_url":"https://comicvine.gamespot.com/amphibian/4005-6914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6951/","id":6951,"name":"Ganthet","site_detail_url":"https://comicvine.gamespot.com/ganthet/4005-6951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6954/","id":6954,"name":"Shilandra Thane","site_detail_url":"https://comicvine.gamespot.com/shilandra-thane/4005-6954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6963/","id":6963,"name":"Madison","site_detail_url":"https://comicvine.gamespot.com/madison/4005-6963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6990/","id":6990,"name":"Hyathis","site_detail_url":"https://comicvine.gamespot.com/hyathis/4005-6990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7089/","id":7089,"name":"Chimera","site_detail_url":"https://comicvine.gamespot.com/chimera/4005-7089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7112/","id":7112,"name":"Psycho-Man","site_detail_url":"https://comicvine.gamespot.com/psycho-man/4005-7112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7113/","id":7113,"name":"Coroner","site_detail_url":"https://comicvine.gamespot.com/coroner/4005-7113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7120/","id":7120,"name":"Watcher","site_detail_url":"https://comicvine.gamespot.com/watcher/4005-7120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7179/","id":7179,"name":"Empath","site_detail_url":"https://comicvine.gamespot.com/empath/4005-7179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7182/","id":7182,"name":"Toyo Harada","site_detail_url":"https://comicvine.gamespot.com/toyo-harada/4005-7182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7190/","id":7190,"name":"Geomancer","site_detail_url":"https://comicvine.gamespot.com/geomancer/4005-7190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7214/","id":7214,"name":"Moondragon","site_detail_url":"https://comicvine.gamespot.com/moondragon/4005-7214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7218/","id":7218,"name":"Jonz Rickard","site_detail_url":"https://comicvine.gamespot.com/jonz-rickard/4005-7218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7225/","id":7225,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-7225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7236/","id":7236,"name":"Mourning Prey","site_detail_url":"https://comicvine.gamespot.com/mourning-prey/4005-7236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7259/","id":7259,"name":"Astrid Mordo","site_detail_url":"https://comicvine.gamespot.com/astrid-mordo/4005-7259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7280/","id":7280,"name":"Death of the Endless","site_detail_url":"https://comicvine.gamespot.com/death-of-the-endless/4005-7280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7334/","id":7334,"name":"Psiren","site_detail_url":"https://comicvine.gamespot.com/psiren/4005-7334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7367/","id":7367,"name":"Etrigan","site_detail_url":"https://comicvine.gamespot.com/etrigan/4005-7367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7405/","id":7405,"name":"Soundwave","site_detail_url":"https://comicvine.gamespot.com/soundwave/4005-7405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7567/","id":7567,"name":"Nanny","site_detail_url":"https://comicvine.gamespot.com/nanny/4005-7567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7569/","id":7569,"name":"Martine Bancroft","site_detail_url":"https://comicvine.gamespot.com/martine-bancroft/4005-7569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7604/","id":7604,"name":"Meggan","site_detail_url":"https://comicvine.gamespot.com/meggan/4005-7604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7607/","id":7607,"name":"Thanos","site_detail_url":"https://comicvine.gamespot.com/thanos/4005-7607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7612/","id":7612,"name":"Apocalypse","site_detail_url":"https://comicvine.gamespot.com/apocalypse/4005-7612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7616/","id":7616,"name":"Stryfe","site_detail_url":"https://comicvine.gamespot.com/stryfe/4005-7616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7617/","id":7617,"name":"Leader","site_detail_url":"https://comicvine.gamespot.com/leader/4005-7617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7823/","id":7823,"name":"George Jetson","site_detail_url":"https://comicvine.gamespot.com/george-jetson/4005-7823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7899/","id":7899,"name":"Tante Mattie","site_detail_url":"https://comicvine.gamespot.com/tante-mattie/4005-7899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7950/","id":7950,"name":"Jedda Walker","site_detail_url":"https://comicvine.gamespot.com/jedda-walker/4005-7950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7978/","id":7978,"name":"Dark Angel","site_detail_url":"https://comicvine.gamespot.com/dark-angel/4005-7978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7990/","id":7990,"name":"Elysius","site_detail_url":"https://comicvine.gamespot.com/elysius/4005-7990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8059/","id":8059,"name":"Gastly","site_detail_url":"https://comicvine.gamespot.com/gastly/4005-8059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8145/","id":8145,"name":"Fin Fang Foom","site_detail_url":"https://comicvine.gamespot.com/fin-fang-foom/4005-8145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8247/","id":8247,"name":"Avengelyne","site_detail_url":"https://comicvine.gamespot.com/avengelyne/4005-8247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8298/","id":8298,"name":"Living Monolith","site_detail_url":"https://comicvine.gamespot.com/living-monolith/4005-8298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8302/","id":8302,"name":"Askani","site_detail_url":"https://comicvine.gamespot.com/askani/4005-8302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8303/","id":8303,"name":"Magik","site_detail_url":"https://comicvine.gamespot.com/magik/4005-8303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8306/","id":8306,"name":"Mastermind","site_detail_url":"https://comicvine.gamespot.com/mastermind/4005-8306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8426/","id":8426,"name":"Mary Zero","site_detail_url":"https://comicvine.gamespot.com/mary-zero/4005-8426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8655/","id":8655,"name":"Master Mind","site_detail_url":"https://comicvine.gamespot.com/master-mind/4005-8655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8658/","id":8658,"name":"The Countess","site_detail_url":"https://comicvine.gamespot.com/the-countess/4005-8658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8660/","id":8660,"name":"Savant","site_detail_url":"https://comicvine.gamespot.com/savant/4005-8660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8727/","id":8727,"name":"Xlyym","site_detail_url":"https://comicvine.gamespot.com/xlyym/4005-8727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8731/","id":8731,"name":"Insidio","site_detail_url":"https://comicvine.gamespot.com/insidio/4005-8731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8821/","id":8821,"name":"Professor X-Bug","site_detail_url":"https://comicvine.gamespot.com/professor-x-bug/4005-8821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9092/","id":9092,"name":"Ecco the Dolphin","site_detail_url":"https://comicvine.gamespot.com/ecco-the-dolphin/4005-9092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9154/","id":9154,"name":"Claymore","site_detail_url":"https://comicvine.gamespot.com/claymore/4005-9154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9178/","id":9178,"name":"Pangaean","site_detail_url":"https://comicvine.gamespot.com/pangaean/4005-9178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9319/","id":9319,"name":"Brainwave Jr.","site_detail_url":"https://comicvine.gamespot.com/brainwave-jr/4005-9319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9336/","id":9336,"name":"Mr. Mind","site_detail_url":"https://comicvine.gamespot.com/mr-mind/4005-9336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9357/","id":9357,"name":"Blok","site_detail_url":"https://comicvine.gamespot.com/blok/4005-9357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9359/","id":9359,"name":"Obsidian","site_detail_url":"https://comicvine.gamespot.com/obsidian/4005-9359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9389/","id":9389,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/rapture/4005-9389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9414/","id":9414,"name":"Seraph","site_detail_url":"https://comicvine.gamespot.com/seraph/4005-9414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9477/","id":9477,"name":"Goddess","site_detail_url":"https://comicvine.gamespot.com/goddess/4005-9477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9545/","id":9545,"name":"Lightning","site_detail_url":"https://comicvine.gamespot.com/lightning/4005-9545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9548/","id":9548,"name":"Despero","site_detail_url":"https://comicvine.gamespot.com/despero/4005-9548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9601/","id":9601,"name":"Preus","site_detail_url":"https://comicvine.gamespot.com/preus/4005-9601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9602/","id":9602,"name":"Lyla","site_detail_url":"https://comicvine.gamespot.com/lyla/4005-9602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9709/","id":9709,"name":"Kwannon","site_detail_url":"https://comicvine.gamespot.com/kwannon/4005-9709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9790/","id":9790,"name":"Galadriel","site_detail_url":"https://comicvine.gamespot.com/galadriel/4005-9790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9849/","id":9849,"name":"Karma","site_detail_url":"https://comicvine.gamespot.com/karma/4005-9849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9904/","id":9904,"name":"Living Laser","site_detail_url":"https://comicvine.gamespot.com/living-laser/4005-9904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9972/","id":9972,"name":"Sensor","site_detail_url":"https://comicvine.gamespot.com/sensor/4005-9972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10005/","id":10005,"name":"Manchester Black","site_detail_url":"https://comicvine.gamespot.com/manchester-black/4005-10005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10032/","id":10032,"name":"Black Racer","site_detail_url":"https://comicvine.gamespot.com/black-racer/4005-10032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10034/","id":10034,"name":"Maxima","site_detail_url":"https://comicvine.gamespot.com/maxima/4005-10034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10038/","id":10038,"name":"Brainiac 13","site_detail_url":"https://comicvine.gamespot.com/brainiac-13/4005-10038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10071/","id":10071,"name":"Tuatara","site_detail_url":"https://comicvine.gamespot.com/tuatara/4005-10071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10111/","id":10111,"name":"Praxis","site_detail_url":"https://comicvine.gamespot.com/praxis/4005-10111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10116/","id":10116,"name":"Ultraa","site_detail_url":"https://comicvine.gamespot.com/ultraa/4005-10116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10149/","id":10149,"name":"Maxwell Lord","site_detail_url":"https://comicvine.gamespot.com/maxwell-lord/4005-10149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10170/","id":10170,"name":"Silver Sorceress","site_detail_url":"https://comicvine.gamespot.com/silver-sorceress/4005-10170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10197/","id":10197,"name":"Dr. Diehard","site_detail_url":"https://comicvine.gamespot.com/dr-diehard/4005-10197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10200/","id":10200,"name":"Dreamslayer","site_detail_url":"https://comicvine.gamespot.com/dreamslayer/4005-10200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10206/","id":10206,"name":"Gypsy","site_detail_url":"https://comicvine.gamespot.com/gypsy/4005-10206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10210/","id":10210,"name":"Hector Hammond","site_detail_url":"https://comicvine.gamespot.com/hector-hammond/4005-10210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10280/","id":10280,"name":"Doctor Voodoo","site_detail_url":"https://comicvine.gamespot.com/doctor-voodoo/4005-10280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10289/","id":10289,"name":"Jeannie","site_detail_url":"https://comicvine.gamespot.com/jeannie/4005-10289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10300/","id":10300,"name":"Beyonder","site_detail_url":"https://comicvine.gamespot.com/beyonder/4005-10300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10302/","id":10302,"name":"Doctor Druid","site_detail_url":"https://comicvine.gamespot.com/doctor-druid/4005-10302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10491/","id":10491,"name":"Titangirl","site_detail_url":"https://comicvine.gamespot.com/titangirl/4005-10491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10526/","id":10526,"name":"God","site_detail_url":"https://comicvine.gamespot.com/god/4005-10526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10574/","id":10574,"name":"Artie Maddicks","site_detail_url":"https://comicvine.gamespot.com/artie-maddicks/4005-10574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10670/","id":10670,"name":"Madame Web","site_detail_url":"https://comicvine.gamespot.com/madame-web/4005-10670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10866/","id":10866,"name":"Armageddon","site_detail_url":"https://comicvine.gamespot.com/armageddon/4005-10866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10875/","id":10875,"name":"Mercy","site_detail_url":"https://comicvine.gamespot.com/mercy/4005-10875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10915/","id":10915,"name":"Isis","site_detail_url":"https://comicvine.gamespot.com/isis/4005-10915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10924/","id":10924,"name":"Circe","site_detail_url":"https://comicvine.gamespot.com/circe/4005-10924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10947/","id":10947,"name":"Belasco","site_detail_url":"https://comicvine.gamespot.com/belasco/4005-10947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10953/","id":10953,"name":"Comet Man","site_detail_url":"https://comicvine.gamespot.com/comet-man/4005-10953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10954/","id":10954,"name":"Benny Beckley","site_detail_url":"https://comicvine.gamespot.com/benny-beckley/4005-10954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10962/","id":10962,"name":"Luna","site_detail_url":"https://comicvine.gamespot.com/luna/4005-10962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10967/","id":10967,"name":"Surtur","site_detail_url":"https://comicvine.gamespot.com/surtur/4005-10967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10981/","id":10981,"name":"Madelyne Pryor","site_detail_url":"https://comicvine.gamespot.com/madelyne-pryor/4005-10981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10993/","id":10993,"name":"Ultra-Humanite","site_detail_url":"https://comicvine.gamespot.com/ultra-humanite/4005-10993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11018/","id":11018,"name":"Stick","site_detail_url":"https://comicvine.gamespot.com/stick/4005-11018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11030/","id":11030,"name":"Crystal Ball","site_detail_url":"https://comicvine.gamespot.com/crystal-ball/4005-11030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11147/","id":11147,"name":"Panthro","site_detail_url":"https://comicvine.gamespot.com/panthro/4005-11147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11153/","id":11153,"name":"Mumm-Ra","site_detail_url":"https://comicvine.gamespot.com/mumm-ra/4005-11153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11171/","id":11171,"name":"Dream of the Endless (Morpheus)","site_detail_url":"https://comicvine.gamespot.com/dream-of-the-endless-morpheus/4005-11171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11202/","id":11202,"name":"Hal Jordan","site_detail_url":"https://comicvine.gamespot.com/hal-jordan/4005-11202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11271/","id":11271,"name":"Sam Simeon","site_detail_url":"https://comicvine.gamespot.com/sam-simeon/4005-11271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11277/","id":11277,"name":"Mageddon","site_detail_url":"https://comicvine.gamespot.com/mageddon/4005-11277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11281/","id":11281,"name":"Tomorrow Woman","site_detail_url":"https://comicvine.gamespot.com/tomorrow-woman/4005-11281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11317/","id":11317,"name":"Cassandra Nova","site_detail_url":"https://comicvine.gamespot.com/cassandra-nova/4005-11317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11332/","id":11332,"name":"Eternity","site_detail_url":"https://comicvine.gamespot.com/eternity/4005-11332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11337/","id":11337,"name":"Spectrum","site_detail_url":"https://comicvine.gamespot.com/spectrum/4005-11337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11340/","id":11340,"name":"Presence","site_detail_url":"https://comicvine.gamespot.com/presence/4005-11340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11363/","id":11363,"name":"Ardina","site_detail_url":"https://comicvine.gamespot.com/ardina/4005-11363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11426/","id":11426,"name":"Senso","site_detail_url":"https://comicvine.gamespot.com/senso/4005-11426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11483/","id":11483,"name":"Dead Girl","site_detail_url":"https://comicvine.gamespot.com/dead-girl/4005-11483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11568/","id":11568,"name":"Plex","site_detail_url":"https://comicvine.gamespot.com/plex/4005-11568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11586/","id":11586,"name":"Zealot","site_detail_url":"https://comicvine.gamespot.com/zealot/4005-11586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11655/","id":11655,"name":"Orwell","site_detail_url":"https://comicvine.gamespot.com/orwell/4005-11655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11832/","id":11832,"name":"Hyperstorm","site_detail_url":"https://comicvine.gamespot.com/hyperstorm/4005-11832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11845/","id":11845,"name":"Aron the Rogue Watcher","site_detail_url":"https://comicvine.gamespot.com/aron-the-rogue-watcher/4005-11845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11976/","id":11976,"name":"Klarion","site_detail_url":"https://comicvine.gamespot.com/klarion/4005-11976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11977/","id":11977,"name":"Teekl","site_detail_url":"https://comicvine.gamespot.com/teekl/4005-11977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12013/","id":12013,"name":"Voodoo","site_detail_url":"https://comicvine.gamespot.com/voodoo/4005-12013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12018/","id":12018,"name":"Jackson King","site_detail_url":"https://comicvine.gamespot.com/jackson-king/4005-12018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12055/","id":12055,"name":"Lady Mastermind","site_detail_url":"https://comicvine.gamespot.com/lady-mastermind/4005-12055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12064/","id":12064,"name":"Hate-Monger","site_detail_url":"https://comicvine.gamespot.com/hate-monger/4005-12064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12078/","id":12078,"name":"Nina","site_detail_url":"https://comicvine.gamespot.com/nina/4005-12078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12100/","id":12100,"name":"Bette Noir","site_detail_url":"https://comicvine.gamespot.com/bette-noir/4005-12100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12123/","id":12123,"name":"Hitman","site_detail_url":"https://comicvine.gamespot.com/hitman/4005-12123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12162/","id":12162,"name":"Mongul","site_detail_url":"https://comicvine.gamespot.com/mongul/4005-12162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12165/","id":12165,"name":"Anti-Monitor","site_detail_url":"https://comicvine.gamespot.com/anti-monitor/4005-12165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12460/","id":12460,"name":"Peter Stanchek","site_detail_url":"https://comicvine.gamespot.com/peter-stanchek/4005-12460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12523/","id":12523,"name":"Arella","site_detail_url":"https://comicvine.gamespot.com/arella/4005-12523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12525/","id":12525,"name":"Lilith Clay","site_detail_url":"https://comicvine.gamespot.com/lilith-clay/4005-12525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12546/","id":12546,"name":"Mimic","site_detail_url":"https://comicvine.gamespot.com/mimic/4005-12546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12547/","id":12547,"name":"Morph","site_detail_url":"https://comicvine.gamespot.com/morph/4005-12547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12620/","id":12620,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-12620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12656/","id":12656,"name":"Michael Demiurgos","site_detail_url":"https://comicvine.gamespot.com/michael-demiurgos/4005-12656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12662/","id":12662,"name":"Madame Xanadu","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu/4005-12662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12679/","id":12679,"name":"Anastasia Force","site_detail_url":"https://comicvine.gamespot.com/anastasia-force/4005-12679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12683/","id":12683,"name":"Dubbilex","site_detail_url":"https://comicvine.gamespot.com/dubbilex/4005-12683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12801/","id":12801,"name":"Yarko the Great","site_detail_url":"https://comicvine.gamespot.com/yarko-the-great/4005-12801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12861/","id":12861,"name":"Proty","site_detail_url":"https://comicvine.gamespot.com/proty/4005-12861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12890/","id":12890,"name":"Rose Wilson","site_detail_url":"https://comicvine.gamespot.com/rose-wilson/4005-12890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12903/","id":12903,"name":"Lord Chaos","site_detail_url":"https://comicvine.gamespot.com/lord-chaos/4005-12903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12904/","id":12904,"name":"Master Order","site_detail_url":"https://comicvine.gamespot.com/master-order/4005-12904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12927/","id":12927,"name":"Myriad","site_detail_url":"https://comicvine.gamespot.com/myriad/4005-12927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12986/","id":12986,"name":"Telepath","site_detail_url":"https://comicvine.gamespot.com/telepath/4005-12986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13014/","id":13014,"name":"Lori Lemaris","site_detail_url":"https://comicvine.gamespot.com/lori-lemaris/4005-13014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13078/","id":13078,"name":"Vartox","site_detail_url":"https://comicvine.gamespot.com/vartox/4005-13078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13138/","id":13138,"name":"Kosnor","site_detail_url":"https://comicvine.gamespot.com/kosnor/4005-13138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13180/","id":13180,"name":"Neven","site_detail_url":"https://comicvine.gamespot.com/neven/4005-13180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13205/","id":13205,"name":"Evinlea","site_detail_url":"https://comicvine.gamespot.com/evinlea/4005-13205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13210/","id":13210,"name":"Corrin","site_detail_url":"https://comicvine.gamespot.com/corrin/4005-13210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13215/","id":13215,"name":"Iress","site_detail_url":"https://comicvine.gamespot.com/iress/4005-13215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13217/","id":13217,"name":"Qztr","site_detail_url":"https://comicvine.gamespot.com/qztr/4005-13217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13218/","id":13218,"name":"Charon","site_detail_url":"https://comicvine.gamespot.com/charon/4005-13218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13224/","id":13224,"name":"Capricia","site_detail_url":"https://comicvine.gamespot.com/capricia/4005-13224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13225/","id":13225,"name":"Verityn","site_detail_url":"https://comicvine.gamespot.com/verityn/4005-13225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13226/","id":13226,"name":"Galvan","site_detail_url":"https://comicvine.gamespot.com/galvan/4005-13226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13227/","id":13227,"name":"Zephyre","site_detail_url":"https://comicvine.gamespot.com/zephyre/4005-13227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13228/","id":13228,"name":"Tug","site_detail_url":"https://comicvine.gamespot.com/tug/4005-13228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13242/","id":13242,"name":"Garwin","site_detail_url":"https://comicvine.gamespot.com/garwin/4005-13242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13243/","id":13243,"name":"Euna","site_detail_url":"https://comicvine.gamespot.com/euna/4005-13243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13244/","id":13244,"name":"Pyrem","site_detail_url":"https://comicvine.gamespot.com/pyrem/4005-13244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13245/","id":13245,"name":"Gannish","site_detail_url":"https://comicvine.gamespot.com/gannish/4005-13245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13246/","id":13246,"name":"Ingra","site_detail_url":"https://comicvine.gamespot.com/ingra/4005-13246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13248/","id":13248,"name":"Orium","site_detail_url":"https://comicvine.gamespot.com/orium/4005-13248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13249/","id":13249,"name":"Seahn","site_detail_url":"https://comicvine.gamespot.com/seahn/4005-13249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13250/","id":13250,"name":"Enson","site_detail_url":"https://comicvine.gamespot.com/enson/4005-13250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13251/","id":13251,"name":"Persha","site_detail_url":"https://comicvine.gamespot.com/persha/4005-13251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13252/","id":13252,"name":"Tiena","site_detail_url":"https://comicvine.gamespot.com/tiena/4005-13252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13253/","id":13253,"name":"Empher","site_detail_url":"https://comicvine.gamespot.com/empher/4005-13253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13254/","id":13254,"name":"Wyture","site_detail_url":"https://comicvine.gamespot.com/wyture/4005-13254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13255/","id":13255,"name":"Yala","site_detail_url":"https://comicvine.gamespot.com/yala/4005-13255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13265/","id":13265,"name":"Trenin","site_detail_url":"https://comicvine.gamespot.com/trenin/4005-13265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13295/","id":13295,"name":"Skitter","site_detail_url":"https://comicvine.gamespot.com/skitter/4005-13295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13332/","id":13332,"name":"Stranger","site_detail_url":"https://comicvine.gamespot.com/stranger/4005-13332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13346/","id":13346,"name":"High Evolutionary","site_detail_url":"https://comicvine.gamespot.com/high-evolutionary/4005-13346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13349/","id":13349,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/legion/4005-13349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13352/","id":13352,"name":"Onslaught","site_detail_url":"https://comicvine.gamespot.com/onslaught/4005-13352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13404/","id":13404,"name":"Fiona Dunn","site_detail_url":"https://comicvine.gamespot.com/fiona-dunn/4005-13404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13468/","id":13468,"name":"Randu Singh","site_detail_url":"https://comicvine.gamespot.com/randu-singh/4005-13468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13558/","id":13558,"name":"Nikki","site_detail_url":"https://comicvine.gamespot.com/nikki/4005-13558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13717/","id":13717,"name":"Bedlam","site_detail_url":"https://comicvine.gamespot.com/bedlam/4005-13717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13725/","id":13725,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/hunger/4005-13725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13798/","id":13798,"name":"Zuras","site_detail_url":"https://comicvine.gamespot.com/zuras/4005-13798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13799/","id":13799,"name":"Satannish","site_detail_url":"https://comicvine.gamespot.com/satannish/4005-13799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13820/","id":13820,"name":"Talisman","site_detail_url":"https://comicvine.gamespot.com/talisman/4005-13820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13822/","id":13822,"name":"Thena","site_detail_url":"https://comicvine.gamespot.com/thena/4005-13822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13854/","id":13854,"name":"Mentus","site_detail_url":"https://comicvine.gamespot.com/mentus/4005-13854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13859/","id":13859,"name":"Scanner","site_detail_url":"https://comicvine.gamespot.com/scanner/4005-13859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13899/","id":13899,"name":"Neptune","site_detail_url":"https://comicvine.gamespot.com/neptune/4005-13899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13922/","id":13922,"name":"Mentallo","site_detail_url":"https://comicvine.gamespot.com/mentallo/4005-13922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13925/","id":13925,"name":"Morgan Le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-13925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13945/","id":13945,"name":"Makkari","site_detail_url":"https://comicvine.gamespot.com/makkari/4005-13945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13959/","id":13959,"name":"Chondu","site_detail_url":"https://comicvine.gamespot.com/chondu/4005-13959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13987/","id":13987,"name":"Collector","site_detail_url":"https://comicvine.gamespot.com/collector/4005-13987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13988/","id":13988,"name":"Contemplator","site_detail_url":"https://comicvine.gamespot.com/contemplator/4005-13988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13992/","id":13992,"name":"Devil-Slayer","site_detail_url":"https://comicvine.gamespot.com/devil-slayer/4005-13992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14000/","id":14000,"name":"Shuma-Gorath","site_detail_url":"https://comicvine.gamespot.com/shuma-gorath/4005-14000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14021/","id":14021,"name":"Double Trouble","site_detail_url":"https://comicvine.gamespot.com/double-trouble/4005-14021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14073/","id":14073,"name":"Night Man","site_detail_url":"https://comicvine.gamespot.com/night-man/4005-14073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14173/","id":14173,"name":"Fontanelle","site_detail_url":"https://comicvine.gamespot.com/fontanelle/4005-14173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14240/","id":14240,"name":"Dreamguard","site_detail_url":"https://comicvine.gamespot.com/dreamguard/4005-14240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14410/","id":14410,"name":"Baron Blood (Falsworth)","site_detail_url":"https://comicvine.gamespot.com/baron-blood-falsworth/4005-14410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14412/","id":14412,"name":"Lucy Westenra","site_detail_url":"https://comicvine.gamespot.com/lucy-westenra/4005-14412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14457/","id":14457,"name":"Mind-Wave","site_detail_url":"https://comicvine.gamespot.com/mind-wave/4005-14457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14467/","id":14467,"name":"Korvac","site_detail_url":"https://comicvine.gamespot.com/korvac/4005-14467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14507/","id":14507,"name":"Carrion (McBride)","site_detail_url":"https://comicvine.gamespot.com/carrion-mcbride/4005-14507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14510/","id":14510,"name":"Protector","site_detail_url":"https://comicvine.gamespot.com/protector/4005-14510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14524/","id":14524,"name":"Man-Beast","site_detail_url":"https://comicvine.gamespot.com/man-beast/4005-14524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14525/","id":14525,"name":"Yellow Claw","site_detail_url":"https://comicvine.gamespot.com/yellow-claw/4005-14525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14527/","id":14527,"name":"Uni-Mind","site_detail_url":"https://comicvine.gamespot.com/uni-mind/4005-14527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14552/","id":14552,"name":"Beautiful Dreamer","site_detail_url":"https://comicvine.gamespot.com/beautiful-dreamer/4005-14552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14594/","id":14594,"name":"Randac","site_detail_url":"https://comicvine.gamespot.com/randac/4005-14594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14619/","id":14619,"name":"Magus","site_detail_url":"https://comicvine.gamespot.com/magus/4005-14619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14647/","id":14647,"name":"Mento","site_detail_url":"https://comicvine.gamespot.com/mento/4005-14647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14652/","id":14652,"name":"Shark","site_detail_url":"https://comicvine.gamespot.com/shark/4005-14652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14655/","id":14655,"name":"Nightmask","site_detail_url":"https://comicvine.gamespot.com/nightmask/4005-14655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14695/","id":14695,"name":"Hellstorm","site_detail_url":"https://comicvine.gamespot.com/hellstorm/4005-14695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14728/","id":14728,"name":"Blackheart","site_detail_url":"https://comicvine.gamespot.com/blackheart/4005-14728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14773/","id":14773,"name":"Agent-X","site_detail_url":"https://comicvine.gamespot.com/agent-x/4005-14773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14782/","id":14782,"name":"Deathwatch","site_detail_url":"https://comicvine.gamespot.com/deathwatch/4005-14782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14794/","id":14794,"name":"Rintrah","site_detail_url":"https://comicvine.gamespot.com/rintrah/4005-14794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14807/","id":14807,"name":"Gatecrasher","site_detail_url":"https://comicvine.gamespot.com/gatecrasher/4005-14807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14810/","id":14810,"name":"Roma","site_detail_url":"https://comicvine.gamespot.com/roma/4005-14810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14813/","id":14813,"name":"Saturnyne","site_detail_url":"https://comicvine.gamespot.com/saturnyne/4005-14813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14815/","id":14815,"name":"Joyboy","site_detail_url":"https://comicvine.gamespot.com/joyboy/4005-14815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14818/","id":14818,"name":"Yap","site_detail_url":"https://comicvine.gamespot.com/yap/4005-14818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14820/","id":14820,"name":"Merlyn","site_detail_url":"https://comicvine.gamespot.com/merlyn/4005-14820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14844/","id":14844,"name":"Moon Girl","site_detail_url":"https://comicvine.gamespot.com/moon-girl/4005-14844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14861/","id":14861,"name":"Steven Lang","site_detail_url":"https://comicvine.gamespot.com/steven-lang/4005-14861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14866/","id":14866,"name":"Gamesmaster","site_detail_url":"https://comicvine.gamespot.com/gamesmaster/4005-14866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14876/","id":14876,"name":"Arnim Zola","site_detail_url":"https://comicvine.gamespot.com/arnim-zola/4005-14876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14889/","id":14889,"name":"Shadow King","site_detail_url":"https://comicvine.gamespot.com/shadow-king/4005-14889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14922/","id":14922,"name":"Blind Faith","site_detail_url":"https://comicvine.gamespot.com/blind-faith/4005-14922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15005/","id":15005,"name":"Link","site_detail_url":"https://comicvine.gamespot.com/link/4005-15005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15023/","id":15023,"name":"Blood Brothers","site_detail_url":"https://comicvine.gamespot.com/blood-brothers/4005-15023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15051/","id":15051,"name":"X-Man","site_detail_url":"https://comicvine.gamespot.com/x-man/4005-15051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15072/","id":15072,"name":"Maggott","site_detail_url":"https://comicvine.gamespot.com/maggott/4005-15072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15077/","id":15077,"name":"Grey King","site_detail_url":"https://comicvine.gamespot.com/grey-king/4005-15077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15096/","id":15096,"name":"Karima","site_detail_url":"https://comicvine.gamespot.com/karima/4005-15096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15112/","id":15112,"name":"Harvest","site_detail_url":"https://comicvine.gamespot.com/harvest/4005-15112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15128/","id":15128,"name":"Fixx","site_detail_url":"https://comicvine.gamespot.com/fixx/4005-15128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15134/","id":15134,"name":"Ever","site_detail_url":"https://comicvine.gamespot.com/ever/4005-15134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15142/","id":15142,"name":"Haven","site_detail_url":"https://comicvine.gamespot.com/haven/4005-15142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15159/","id":15159,"name":"Blaquesmith","site_detail_url":"https://comicvine.gamespot.com/blaquesmith/4005-15159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15160/","id":15160,"name":"Dark Mother","site_detail_url":"https://comicvine.gamespot.com/dark-mother/4005-15160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15167/","id":15167,"name":"Martinique Jason","site_detail_url":"https://comicvine.gamespot.com/martinique-jason/4005-15167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15175/","id":15175,"name":"Sandella","site_detail_url":"https://comicvine.gamespot.com/sandella/4005-15175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15193/","id":15193,"name":"Sanctity","site_detail_url":"https://comicvine.gamespot.com/sanctity/4005-15193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15196/","id":15196,"name":"Harbinger of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/harbinger-of-apocalypse/4005-15196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15198/","id":15198,"name":"Aliya Dayspring","site_detail_url":"https://comicvine.gamespot.com/aliya-dayspring/4005-15198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15292/","id":15292,"name":"Calculus","site_detail_url":"https://comicvine.gamespot.com/calculus/4005-15292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15332/","id":15332,"name":"Tullamore Voge","site_detail_url":"https://comicvine.gamespot.com/tullamore-voge/4005-15332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15333/","id":15333,"name":"Bloody Bess","site_detail_url":"https://comicvine.gamespot.com/bloody-bess/4005-15333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15392/","id":15392,"name":"Vishnu","site_detail_url":"https://comicvine.gamespot.com/vishnu/4005-15392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15406/","id":15406,"name":"Will o' the Wisp","site_detail_url":"https://comicvine.gamespot.com/will-o-the-wisp/4005-15406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15569/","id":15569,"name":"Astarte","site_detail_url":"https://comicvine.gamespot.com/astarte/4005-15569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15623/","id":15623,"name":"Mister X","site_detail_url":"https://comicvine.gamespot.com/mister-x/4005-15623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15624/","id":15624,"name":"Mauvais","site_detail_url":"https://comicvine.gamespot.com/mauvais/4005-15624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15683/","id":15683,"name":"Chthon","site_detail_url":"https://comicvine.gamespot.com/chthon/4005-15683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15795/","id":15795,"name":"Menalippe","site_detail_url":"https://comicvine.gamespot.com/menalippe/4005-15795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16079/","id":16079,"name":"Topaz","site_detail_url":"https://comicvine.gamespot.com/topaz/4005-16079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16164/","id":16164,"name":"Emperor Palpatine","site_detail_url":"https://comicvine.gamespot.com/emperor-palpatine/4005-16164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16190/","id":16190,"name":"Sarlacc","site_detail_url":"https://comicvine.gamespot.com/sarlacc/4005-16190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16197/","id":16197,"name":"Julia Carpenter","site_detail_url":"https://comicvine.gamespot.com/julia-carpenter/4005-16197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16201/","id":16201,"name":"Mirrorshade","site_detail_url":"https://comicvine.gamespot.com/mirrorshade/4005-16201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16272/","id":16272,"name":"Professor Charles Xylophone","site_detail_url":"https://comicvine.gamespot.com/professor-charles-xylophone/4005-16272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16337/","id":16337,"name":"Topo","site_detail_url":"https://comicvine.gamespot.com/topo/4005-16337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16423/","id":16423,"name":"He-Man","site_detail_url":"https://comicvine.gamespot.com/he-man/4005-16423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16424/","id":16424,"name":"Skeletor","site_detail_url":"https://comicvine.gamespot.com/skeletor/4005-16424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16427/","id":16427,"name":"Teela","site_detail_url":"https://comicvine.gamespot.com/teela/4005-16427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17378/","id":17378,"name":"Lucas Telling-Stone","site_detail_url":"https://comicvine.gamespot.com/lucas-telling-stone/4005-17378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17763/","id":17763,"name":"Gene-Gnome","site_detail_url":"https://comicvine.gamespot.com/gene-gnome/4005-17763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17792/","id":17792,"name":"Orrgo","site_detail_url":"https://comicvine.gamespot.com/orrgo/4005-17792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17845/","id":17845,"name":"Mindwarp","site_detail_url":"https://comicvine.gamespot.com/mindwarp/4005-17845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17871/","id":17871,"name":"Brainiape","site_detail_url":"https://comicvine.gamespot.com/brainiape/4005-17871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17891/","id":17891,"name":"Brainchild","site_detail_url":"https://comicvine.gamespot.com/brainchild/4005-17891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17901/","id":17901,"name":"Damien Darklord","site_detail_url":"https://comicvine.gamespot.com/damien-darklord/4005-17901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18282/","id":18282,"name":"Cobweb","site_detail_url":"https://comicvine.gamespot.com/cobweb/4005-18282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18451/","id":18451,"name":"Judge Mental","site_detail_url":"https://comicvine.gamespot.com/judge-mental/4005-18451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18476/","id":18476,"name":"Darquill","site_detail_url":"https://comicvine.gamespot.com/darquill/4005-18476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18479/","id":18479,"name":"Damon Conquest","site_detail_url":"https://comicvine.gamespot.com/damon-conquest/4005-18479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18512/","id":18512,"name":"Elektro","site_detail_url":"https://comicvine.gamespot.com/elektro/4005-18512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18590/","id":18590,"name":"Black Talon","site_detail_url":"https://comicvine.gamespot.com/black-talon/4005-18590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18627/","id":18627,"name":"Spectro","site_detail_url":"https://comicvine.gamespot.com/spectro/4005-18627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18740/","id":18740,"name":"Vana","site_detail_url":"https://comicvine.gamespot.com/vana/4005-18740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18747/","id":18747,"name":"Martan the Marvel Man","site_detail_url":"https://comicvine.gamespot.com/martan-the-marvel-man/4005-18747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18999/","id":18999,"name":"Gray Man","site_detail_url":"https://comicvine.gamespot.com/gray-man/4005-18999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19062/","id":19062,"name":"Hammeroon","site_detail_url":"https://comicvine.gamespot.com/hammeroon/4005-19062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19063/","id":19063,"name":"Sool","site_detail_url":"https://comicvine.gamespot.com/sool/4005-19063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19064/","id":19064,"name":"Magaan","site_detail_url":"https://comicvine.gamespot.com/magaan/4005-19064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19069/","id":19069,"name":"Way","site_detail_url":"https://comicvine.gamespot.com/way/4005-19069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19150/","id":19150,"name":"Quoggoth","site_detail_url":"https://comicvine.gamespot.com/quoggoth/4005-19150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19209/","id":19209,"name":"Jack O'Diamonds","site_detail_url":"https://comicvine.gamespot.com/jack-odiamonds/4005-19209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19225/","id":19225,"name":"Millionex","site_detail_url":"https://comicvine.gamespot.com/millionex/4005-19225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19765/","id":19765,"name":"Goku","site_detail_url":"https://comicvine.gamespot.com/goku/4005-19765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19772/","id":19772,"name":"Kami","site_detail_url":"https://comicvine.gamespot.com/kami/4005-19772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19773/","id":19773,"name":"Chao-Zu","site_detail_url":"https://comicvine.gamespot.com/chao-zu/4005-19773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19931/","id":19931,"name":"Starlight","site_detail_url":"https://comicvine.gamespot.com/starlight/4005-19931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19942/","id":19942,"name":"Kulan Gath","site_detail_url":"https://comicvine.gamespot.com/kulan-gath/4005-19942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19979/","id":19979,"name":"Venka","site_detail_url":"https://comicvine.gamespot.com/venka/4005-19979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20010/","id":20010,"name":"Tad Carter","site_detail_url":"https://comicvine.gamespot.com/tad-carter/4005-20010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20076/","id":20076,"name":"Tuvok","site_detail_url":"https://comicvine.gamespot.com/tuvok/4005-20076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20079/","id":20079,"name":"Spock","site_detail_url":"https://comicvine.gamespot.com/spock/4005-20079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20086/","id":20086,"name":"Lucifer","site_detail_url":"https://comicvine.gamespot.com/lucifer/4005-20086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20125/","id":20125,"name":"Willow","site_detail_url":"https://comicvine.gamespot.com/willow/4005-20125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20417/","id":20417,"name":"Mara Jade","site_detail_url":"https://comicvine.gamespot.com/mara-jade/4005-20417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20554/","id":20554,"name":"Exal Kressh","site_detail_url":"https://comicvine.gamespot.com/exal-kressh/4005-20554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20558/","id":20558,"name":"Streen","site_detail_url":"https://comicvine.gamespot.com/streen/4005-20558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20559/","id":20559,"name":"Lord Kaan","site_detail_url":"https://comicvine.gamespot.com/lord-kaan/4005-20559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20588/","id":20588,"name":"Sprite","site_detail_url":"https://comicvine.gamespot.com/sprite/4005-20588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20590/","id":20590,"name":"Khoryphos","site_detail_url":"https://comicvine.gamespot.com/khoryphos/4005-20590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20599/","id":20599,"name":"Two-Headed Thing","site_detail_url":"https://comicvine.gamespot.com/two-headed-thing/4005-20599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20601/","id":20601,"name":"Grottu King Of The Insects","site_detail_url":"https://comicvine.gamespot.com/grottu-king-of-the-insects/4005-20601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20610/","id":20610,"name":"Ahura","site_detail_url":"https://comicvine.gamespot.com/ahura/4005-20610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21239/","id":21239,"name":"Eternal Brain","site_detail_url":"https://comicvine.gamespot.com/eternal-brain/4005-21239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21243/","id":21243,"name":"Micah Aven","site_detail_url":"https://comicvine.gamespot.com/micah-aven/4005-21243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21292/","id":21292,"name":"Abby Holland","site_detail_url":"https://comicvine.gamespot.com/abby-holland/4005-21292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21303/","id":21303,"name":"Sapha","site_detail_url":"https://comicvine.gamespot.com/sapha/4005-21303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21325/","id":21325,"name":"Atlan","site_detail_url":"https://comicvine.gamespot.com/atlan/4005-21325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21353/","id":21353,"name":"Judex","site_detail_url":"https://comicvine.gamespot.com/judex/4005-21353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21402/","id":21402,"name":"Omniguard","site_detail_url":"https://comicvine.gamespot.com/omniguard/4005-21402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21581/","id":21581,"name":"Urthona","site_detail_url":"https://comicvine.gamespot.com/urthona/4005-21581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21599/","id":21599,"name":"Godzilla","site_detail_url":"https://comicvine.gamespot.com/godzilla/4005-21599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21761/","id":21761,"name":"Garokk","site_detail_url":"https://comicvine.gamespot.com/garokk/4005-21761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21841/","id":21841,"name":"Abner Cadaver","site_detail_url":"https://comicvine.gamespot.com/abner-cadaver/4005-21841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21893/","id":21893,"name":"Satan","site_detail_url":"https://comicvine.gamespot.com/satan/4005-21893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21963/","id":21963,"name":"Archer Braun","site_detail_url":"https://comicvine.gamespot.com/archer-braun/4005-21963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21970/","id":21970,"name":"Emp","site_detail_url":"https://comicvine.gamespot.com/emp/4005-21970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22019/","id":22019,"name":"Asmodel","site_detail_url":"https://comicvine.gamespot.com/asmodel/4005-22019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22071/","id":22071,"name":"Orochi","site_detail_url":"https://comicvine.gamespot.com/orochi/4005-22071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22348/","id":22348,"name":"Spaceman","site_detail_url":"https://comicvine.gamespot.com/spaceman/4005-22348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22360/","id":22360,"name":"Tanya Gromyko","site_detail_url":"https://comicvine.gamespot.com/tanya-gromyko/4005-22360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22454/","id":22454,"name":"Bliss","site_detail_url":"https://comicvine.gamespot.com/bliss/4005-22454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22523/","id":22523,"name":"Xemnu","site_detail_url":"https://comicvine.gamespot.com/xemnu/4005-22523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22588/","id":22588,"name":"Zarhan Fastfire","site_detail_url":"https://comicvine.gamespot.com/zarhan-fastfire/4005-22588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22773/","id":22773,"name":"Cabal","site_detail_url":"https://comicvine.gamespot.com/cabal/4005-22773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22836/","id":22836,"name":"Dreaming Celestial","site_detail_url":"https://comicvine.gamespot.com/dreaming-celestial/4005-22836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22972/","id":22972,"name":"Solovar","site_detail_url":"https://comicvine.gamespot.com/solovar/4005-22972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23009/","id":23009,"name":"Malefic","site_detail_url":"https://comicvine.gamespot.com/malefic/4005-23009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23058/","id":23058,"name":"Jennifer Morgan","site_detail_url":"https://comicvine.gamespot.com/jennifer-morgan/4005-23058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23187/","id":23187,"name":"Ragged Robin","site_detail_url":"https://comicvine.gamespot.com/ragged-robin/4005-23187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23210/","id":23210,"name":"Ness","site_detail_url":"https://comicvine.gamespot.com/ness/4005-23210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23215/","id":23215,"name":"Tim Hunter","site_detail_url":"https://comicvine.gamespot.com/tim-hunter/4005-23215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23304/","id":23304,"name":"Hard Drive","site_detail_url":"https://comicvine.gamespot.com/hard-drive/4005-23304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23320/","id":23320,"name":"Damballah","site_detail_url":"https://comicvine.gamespot.com/damballah/4005-23320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23335/","id":23335,"name":"Doktor Grobari","site_detail_url":"https://comicvine.gamespot.com/doktor-grobari/4005-23335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23345/","id":23345,"name":"Starro","site_detail_url":"https://comicvine.gamespot.com/starro/4005-23345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23476/","id":23476,"name":"Alex Fairchild","site_detail_url":"https://comicvine.gamespot.com/alex-fairchild/4005-23476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23564/","id":23564,"name":"Cybernetic Entity","site_detail_url":"https://comicvine.gamespot.com/cybernetic-entity/4005-23564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23608/","id":23608,"name":"Cary Wren","site_detail_url":"https://comicvine.gamespot.com/cary-wren/4005-23608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23624/","id":23624,"name":"Grifter","site_detail_url":"https://comicvine.gamespot.com/grifter/4005-23624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23679/","id":23679,"name":"Saavik","site_detail_url":"https://comicvine.gamespot.com/saavik/4005-23679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23851/","id":23851,"name":"Thinker","site_detail_url":"https://comicvine.gamespot.com/thinker/4005-23851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23852/","id":23852,"name":"The Word","site_detail_url":"https://comicvine.gamespot.com/the-word/4005-23852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23967/","id":23967,"name":"Straasha","site_detail_url":"https://comicvine.gamespot.com/straasha/4005-23967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24010/","id":24010,"name":"Llan","site_detail_url":"https://comicvine.gamespot.com/llan/4005-24010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24011/","id":24011,"name":"Jackknife","site_detail_url":"https://comicvine.gamespot.com/jackknife/4005-24011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24084/","id":24084,"name":"Ms. Steed","site_detail_url":"https://comicvine.gamespot.com/ms-steed/4005-24084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24346/","id":24346,"name":"Sonatine","site_detail_url":"https://comicvine.gamespot.com/sonatine/4005-24346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24509/","id":24509,"name":"Buddha","site_detail_url":"https://comicvine.gamespot.com/buddha/4005-24509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24659/","id":24659,"name":"Dr. Strangefate","site_detail_url":"https://comicvine.gamespot.com/dr-strangefate/4005-24659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24681/","id":24681,"name":"Arcturus Rann","site_detail_url":"https://comicvine.gamespot.com/arcturus-rann/4005-24681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24698/","id":24698,"name":"Top","site_detail_url":"https://comicvine.gamespot.com/top/4005-24698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24906/","id":24906,"name":"Kordax","site_detail_url":"https://comicvine.gamespot.com/kordax/4005-24906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24920/","id":24920,"name":"Taboo","site_detail_url":"https://comicvine.gamespot.com/taboo/4005-24920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24949/","id":24949,"name":"Cyttorak","site_detail_url":"https://comicvine.gamespot.com/cyttorak/4005-24949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24999/","id":24999,"name":"Lady Supreme","site_detail_url":"https://comicvine.gamespot.com/lady-supreme/4005-24999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25087/","id":25087,"name":"Cornelius Stirk","site_detail_url":"https://comicvine.gamespot.com/cornelius-stirk/4005-25087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25112/","id":25112,"name":"Threshold","site_detail_url":"https://comicvine.gamespot.com/threshold/4005-25112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25171/","id":25171,"name":"Carthoris","site_detail_url":"https://comicvine.gamespot.com/carthoris/4005-25171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25202/","id":25202,"name":"Trance","site_detail_url":"https://comicvine.gamespot.com/trance/4005-25202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25237/","id":25237,"name":"Two-Spear","site_detail_url":"https://comicvine.gamespot.com/two-spear/4005-25237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25322/","id":25322,"name":"Mother-May-I","site_detail_url":"https://comicvine.gamespot.com/mother-may-i/4005-25322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25324/","id":25324,"name":"New Man","site_detail_url":"https://comicvine.gamespot.com/new-man/4005-25324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25390/","id":25390,"name":"Perdoo","site_detail_url":"https://comicvine.gamespot.com/perdoo/4005-25390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25419/","id":25419,"name":"Noah Dubois","site_detail_url":"https://comicvine.gamespot.com/noah-dubois/4005-25419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25552/","id":25552,"name":"Mr. Gone","site_detail_url":"https://comicvine.gamespot.com/mr-gone/4005-25552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25556/","id":25556,"name":"Gary Mitchell","site_detail_url":"https://comicvine.gamespot.com/gary-mitchell/4005-25556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25587/","id":25587,"name":"Cuckoo","site_detail_url":"https://comicvine.gamespot.com/cuckoo/4005-25587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25588/","id":25588,"name":"M.O.D.A.M.","site_detail_url":"https://comicvine.gamespot.com/modam/4005-25588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25635/","id":25635,"name":"Pitt","site_detail_url":"https://comicvine.gamespot.com/pitt/4005-25635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25642/","id":25642,"name":"Strega","site_detail_url":"https://comicvine.gamespot.com/strega/4005-25642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25724/","id":25724,"name":"Krugarr","site_detail_url":"https://comicvine.gamespot.com/krugarr/4005-25724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25737/","id":25737,"name":"Alpha the Ultimate Mutant","site_detail_url":"https://comicvine.gamespot.com/alpha-the-ultimate-mutant/4005-25737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25795/","id":25795,"name":"Abe Sapien","site_detail_url":"https://comicvine.gamespot.com/abe-sapien/4005-25795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25874/","id":25874,"name":"Despot","site_detail_url":"https://comicvine.gamespot.com/despot/4005-25874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25921/","id":25921,"name":"Link","site_detail_url":"https://comicvine.gamespot.com/link/4005-25921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25978/","id":25978,"name":"Backlash","site_detail_url":"https://comicvine.gamespot.com/backlash/4005-25978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25979/","id":25979,"name":"Dane","site_detail_url":"https://comicvine.gamespot.com/dane/4005-25979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25998/","id":25998,"name":"Time Trapper","site_detail_url":"https://comicvine.gamespot.com/time-trapper/4005-25998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26026/","id":26026,"name":"Space Dolphin","site_detail_url":"https://comicvine.gamespot.com/space-dolphin/4005-26026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26110/","id":26110,"name":"Count Abyss","site_detail_url":"https://comicvine.gamespot.com/count-abyss/4005-26110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26167/","id":26167,"name":"Charybdis","site_detail_url":"https://comicvine.gamespot.com/charybdis/4005-26167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26318/","id":26318,"name":"Prince Wayfinder","site_detail_url":"https://comicvine.gamespot.com/prince-wayfinder/4005-26318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26429/","id":26429,"name":"Sarek","site_detail_url":"https://comicvine.gamespot.com/sarek/4005-26429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26481/","id":26481,"name":"Witchfire","site_detail_url":"https://comicvine.gamespot.com/witchfire/4005-26481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26530/","id":26530,"name":"Sat-Yr-9","site_detail_url":"https://comicvine.gamespot.com/sat-yr-9/4005-26530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26536/","id":26536,"name":"Eddie Passim","site_detail_url":"https://comicvine.gamespot.com/eddie-passim/4005-26536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26627/","id":26627,"name":"Mindscan","site_detail_url":"https://comicvine.gamespot.com/mindscan/4005-26627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26846/","id":26846,"name":"Birdy","site_detail_url":"https://comicvine.gamespot.com/birdy/4005-26846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27090/","id":27090,"name":"Skinner Of Souls","site_detail_url":"https://comicvine.gamespot.com/skinner-of-souls/4005-27090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27193/","id":27193,"name":"Captain Universe","site_detail_url":"https://comicvine.gamespot.com/captain-universe/4005-27193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27224/","id":27224,"name":"Mantricker","site_detail_url":"https://comicvine.gamespot.com/mantricker/4005-27224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27246/","id":27246,"name":"Krona","site_detail_url":"https://comicvine.gamespot.com/krona/4005-27246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27298/","id":27298,"name":"Gemini","site_detail_url":"https://comicvine.gamespot.com/gemini/4005-27298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27299/","id":27299,"name":"Proty II","site_detail_url":"https://comicvine.gamespot.com/proty-ii/4005-27299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27304/","id":27304,"name":"Crazy Jane","site_detail_url":"https://comicvine.gamespot.com/crazy-jane/4005-27304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27417/","id":27417,"name":"Aldo Ferro","site_detail_url":"https://comicvine.gamespot.com/aldo-ferro/4005-27417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27485/","id":27485,"name":"Infinity Man","site_detail_url":"https://comicvine.gamespot.com/infinity-man/4005-27485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27516/","id":27516,"name":"Brain Cell","site_detail_url":"https://comicvine.gamespot.com/brain-cell/4005-27516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27546/","id":27546,"name":"Psi-Wolf","site_detail_url":"https://comicvine.gamespot.com/psi-wolf/4005-27546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27564/","id":27564,"name":"Rhapsody","site_detail_url":"https://comicvine.gamespot.com/rhapsody/4005-27564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27672/","id":27672,"name":"Mistress Love","site_detail_url":"https://comicvine.gamespot.com/mistress-love/4005-27672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27673/","id":27673,"name":"Master Hate","site_detail_url":"https://comicvine.gamespot.com/master-hate/4005-27673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27797/","id":27797,"name":"Fear Eaters","site_detail_url":"https://comicvine.gamespot.com/fear-eaters/4005-27797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27889/","id":27889,"name":"Dumog","site_detail_url":"https://comicvine.gamespot.com/dumog/4005-27889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27943/","id":27943,"name":"Ilda","site_detail_url":"https://comicvine.gamespot.com/ilda/4005-27943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28005/","id":28005,"name":"Kronos","site_detail_url":"https://comicvine.gamespot.com/kronos/4005-28005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28053/","id":28053,"name":"Greta Rabin","site_detail_url":"https://comicvine.gamespot.com/greta-rabin/4005-28053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28118/","id":28118,"name":"Protege","site_detail_url":"https://comicvine.gamespot.com/protege/4005-28118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28256/","id":28256,"name":"Lwaxana Troi","site_detail_url":"https://comicvine.gamespot.com/lwaxana-troi/4005-28256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28285/","id":28285,"name":"Psynapse","site_detail_url":"https://comicvine.gamespot.com/psynapse/4005-28285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28394/","id":28394,"name":"Possessors","site_detail_url":"https://comicvine.gamespot.com/possessors/4005-28394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28420/","id":28420,"name":"Byth","site_detail_url":"https://comicvine.gamespot.com/byth/4005-28420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28491/","id":28491,"name":"Wotan","site_detail_url":"https://comicvine.gamespot.com/wotan/4005-28491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28492/","id":28492,"name":"Cyan Bloodbane","site_detail_url":"https://comicvine.gamespot.com/cyan-bloodbane/4005-28492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28665/","id":28665,"name":"Sluj","site_detail_url":"https://comicvine.gamespot.com/sluj/4005-28665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28670/","id":28670,"name":"Fantasma","site_detail_url":"https://comicvine.gamespot.com/fantasma/4005-28670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28702/","id":28702,"name":"Ace","site_detail_url":"https://comicvine.gamespot.com/ace/4005-28702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28722/","id":28722,"name":"Doctor Tachyon","site_detail_url":"https://comicvine.gamespot.com/doctor-tachyon/4005-28722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28751/","id":28751,"name":"Legba","site_detail_url":"https://comicvine.gamespot.com/legba/4005-28751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28770/","id":28770,"name":"Persuasion","site_detail_url":"https://comicvine.gamespot.com/persuasion/4005-28770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28862/","id":28862,"name":"Immortal Man","site_detail_url":"https://comicvine.gamespot.com/immortal-man/4005-28862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28868/","id":28868,"name":"Baron Samedi","site_detail_url":"https://comicvine.gamespot.com/baron-samedi/4005-28868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28913/","id":28913,"name":"Kathi Blizzard","site_detail_url":"https://comicvine.gamespot.com/kathi-blizzard/4005-28913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28919/","id":28919,"name":"Iron Angel","site_detail_url":"https://comicvine.gamespot.com/iron-angel/4005-28919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28923/","id":28923,"name":"The Shadow","site_detail_url":"https://comicvine.gamespot.com/the-shadow/4005-28923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28991/","id":28991,"name":"Kaluu","site_detail_url":"https://comicvine.gamespot.com/kaluu/4005-28991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28997/","id":28997,"name":"Zharkah","site_detail_url":"https://comicvine.gamespot.com/zharkah/4005-28997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29001/","id":29001,"name":"Seera","site_detail_url":"https://comicvine.gamespot.com/seera/4005-29001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29094/","id":29094,"name":"Thulsa Doom","site_detail_url":"https://comicvine.gamespot.com/thulsa-doom/4005-29094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29371/","id":29371,"name":"Shadow Weaver","site_detail_url":"https://comicvine.gamespot.com/shadow-weaver/4005-29371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29372/","id":29372,"name":"Orko","site_detail_url":"https://comicvine.gamespot.com/orko/4005-29372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29480/","id":29480,"name":"Nelvana","site_detail_url":"https://comicvine.gamespot.com/nelvana/4005-29480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29577/","id":29577,"name":"Naga","site_detail_url":"https://comicvine.gamespot.com/naga/4005-29577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29591/","id":29591,"name":"Tala","site_detail_url":"https://comicvine.gamespot.com/tala/4005-29591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29598/","id":29598,"name":"Lord Manga","site_detail_url":"https://comicvine.gamespot.com/lord-manga/4005-29598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29626/","id":29626,"name":"Two-Edge","site_detail_url":"https://comicvine.gamespot.com/two-edge/4005-29626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29807/","id":29807,"name":"The Starchild","site_detail_url":"https://comicvine.gamespot.com/the-starchild/4005-29807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29832/","id":29832,"name":"Mind Games","site_detail_url":"https://comicvine.gamespot.com/mind-games/4005-29832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29861/","id":29861,"name":"One Above All","site_detail_url":"https://comicvine.gamespot.com/one-above-all/4005-29861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30142/","id":30142,"name":"Varua","site_detail_url":"https://comicvine.gamespot.com/varua/4005-30142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30146/","id":30146,"name":"Mindsinger","site_detail_url":"https://comicvine.gamespot.com/mindsinger/4005-30146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30240/","id":30240,"name":"Philip Voight","site_detail_url":"https://comicvine.gamespot.com/philip-voight/4005-30240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30262/","id":30262,"name":"Shiva","site_detail_url":"https://comicvine.gamespot.com/shiva/4005-30262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30272/","id":30272,"name":"Flying Fox","site_detail_url":"https://comicvine.gamespot.com/flying-fox/4005-30272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30416/","id":30416,"name":"Xanja","site_detail_url":"https://comicvine.gamespot.com/xanja/4005-30416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30480/","id":30480,"name":"Belial","site_detail_url":"https://comicvine.gamespot.com/belial/4005-30480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30496/","id":30496,"name":"Psyche","site_detail_url":"https://comicvine.gamespot.com/psyche/4005-30496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30559/","id":30559,"name":"Captain Comet","site_detail_url":"https://comicvine.gamespot.com/captain-comet/4005-30559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30619/","id":30619,"name":"Humbug","site_detail_url":"https://comicvine.gamespot.com/humbug/4005-30619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30719/","id":30719,"name":"Black Mamba","site_detail_url":"https://comicvine.gamespot.com/black-mamba/4005-30719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30743/","id":30743,"name":"Willow","site_detail_url":"https://comicvine.gamespot.com/willow/4005-30743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30843/","id":30843,"name":"Looker","site_detail_url":"https://comicvine.gamespot.com/looker/4005-30843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30996/","id":30996,"name":"Tellus","site_detail_url":"https://comicvine.gamespot.com/tellus/4005-30996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30998/","id":30998,"name":"White Witch","site_detail_url":"https://comicvine.gamespot.com/white-witch/4005-30998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31012/","id":31012,"name":"Lord Satanis","site_detail_url":"https://comicvine.gamespot.com/lord-satanis/4005-31012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31013/","id":31013,"name":"Insect Queen","site_detail_url":"https://comicvine.gamespot.com/insect-queen/4005-31013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31018/","id":31018,"name":"The Monitor","site_detail_url":"https://comicvine.gamespot.com/the-monitor/4005-31018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31025/","id":31025,"name":"Esper Lass","site_detail_url":"https://comicvine.gamespot.com/esper-lass/4005-31025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31027/","id":31027,"name":"Nimbus","site_detail_url":"https://comicvine.gamespot.com/nimbus/4005-31027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31092/","id":31092,"name":"Kid Marvelman","site_detail_url":"https://comicvine.gamespot.com/kid-marvelman/4005-31092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31464/","id":31464,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-31464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31506/","id":31506,"name":"Chun Yull","site_detail_url":"https://comicvine.gamespot.com/chun-yull/4005-31506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31565/","id":31565,"name":"Slorioth","site_detail_url":"https://comicvine.gamespot.com/slorioth/4005-31565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31578/","id":31578,"name":"Black Abbott","site_detail_url":"https://comicvine.gamespot.com/black-abbott/4005-31578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31714/","id":31714,"name":"Rainbow","site_detail_url":"https://comicvine.gamespot.com/rainbow/4005-31714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31859/","id":31859,"name":"Fireflyte","site_detail_url":"https://comicvine.gamespot.com/fireflyte/4005-31859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31861/","id":31861,"name":"Baron Karza","site_detail_url":"https://comicvine.gamespot.com/baron-karza/4005-31861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31904/","id":31904,"name":"The Entity","site_detail_url":"https://comicvine.gamespot.com/the-entity/4005-31904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32021/","id":32021,"name":"Mo-Skull","site_detail_url":"https://comicvine.gamespot.com/mo-skull/4005-32021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32130/","id":32130,"name":"Princess Fen","site_detail_url":"https://comicvine.gamespot.com/princess-fen/4005-32130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32131/","id":32131,"name":"Albus Dumbledore","site_detail_url":"https://comicvine.gamespot.com/albus-dumbledore/4005-32131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32289/","id":32289,"name":"Mask Man","site_detail_url":"https://comicvine.gamespot.com/mask-man/4005-32289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32590/","id":32590,"name":"The Sorceress","site_detail_url":"https://comicvine.gamespot.com/the-sorceress/4005-32590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32735/","id":32735,"name":"Grandmaster","site_detail_url":"https://comicvine.gamespot.com/grandmaster/4005-32735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32745/","id":32745,"name":"Rama Kaliph","site_detail_url":"https://comicvine.gamespot.com/rama-kaliph/4005-32745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32757/","id":32757,"name":"Timmorn Yellow Eyes","site_detail_url":"https://comicvine.gamespot.com/timmorn-yellow-eyes/4005-32757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32810/","id":32810,"name":"Hadrathus","site_detail_url":"https://comicvine.gamespot.com/hadrathus/4005-32810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32857/","id":32857,"name":"Arishem the Judge","site_detail_url":"https://comicvine.gamespot.com/arishem-the-judge/4005-32857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32866/","id":32866,"name":"Ch'i-Lin","site_detail_url":"https://comicvine.gamespot.com/chi-lin/4005-32866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32958/","id":32958,"name":"Barbara","site_detail_url":"https://comicvine.gamespot.com/barbara/4005-32958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33229/","id":33229,"name":"Uranos","site_detail_url":"https://comicvine.gamespot.com/uranos/4005-33229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33354/","id":33354,"name":"The Doctor","site_detail_url":"https://comicvine.gamespot.com/the-doctor/4005-33354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33355/","id":33355,"name":"Romana","site_detail_url":"https://comicvine.gamespot.com/romana/4005-33355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33395/","id":33395,"name":"Pieter Phobos","site_detail_url":"https://comicvine.gamespot.com/pieter-phobos/4005-33395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33647/","id":33647,"name":"Biotron","site_detail_url":"https://comicvine.gamespot.com/biotron/4005-33647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33687/","id":33687,"name":"Gammenon the Gatherer","site_detail_url":"https://comicvine.gamespot.com/gammenon-the-gatherer/4005-33687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33688/","id":33688,"name":"Ziran the Tester","site_detail_url":"https://comicvine.gamespot.com/ziran-the-tester/4005-33688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33689/","id":33689,"name":"Nezarr the Calculator","site_detail_url":"https://comicvine.gamespot.com/nezarr-the-calculator/4005-33689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33690/","id":33690,"name":"Oneg the Prober","site_detail_url":"https://comicvine.gamespot.com/oneg-the-prober/4005-33690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33817/","id":33817,"name":"Jaime Slade","site_detail_url":"https://comicvine.gamespot.com/jaime-slade/4005-33817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33976/","id":33976,"name":"Voldemort","site_detail_url":"https://comicvine.gamespot.com/voldemort/4005-33976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34065/","id":34065,"name":"Snowfall","site_detail_url":"https://comicvine.gamespot.com/snowfall/4005-34065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34112/","id":34112,"name":"Stephen Tuval","site_detail_url":"https://comicvine.gamespot.com/stephen-tuval/4005-34112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34121/","id":34121,"name":"Nubia","site_detail_url":"https://comicvine.gamespot.com/nubia/4005-34121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34146/","id":34146,"name":"Tars Tarkas","site_detail_url":"https://comicvine.gamespot.com/tars-tarkas/4005-34146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34278/","id":34278,"name":"Sindella","site_detail_url":"https://comicvine.gamespot.com/sindella/4005-34278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34294/","id":34294,"name":"Faceless One","site_detail_url":"https://comicvine.gamespot.com/faceless-one/4005-34294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34526/","id":34526,"name":"Humus Sapien","site_detail_url":"https://comicvine.gamespot.com/humus-sapien/4005-34526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34787/","id":34787,"name":"Zan","site_detail_url":"https://comicvine.gamespot.com/zan/4005-34787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34788/","id":34788,"name":"Jayna","site_detail_url":"https://comicvine.gamespot.com/jayna/4005-34788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34903/","id":34903,"name":"Xebel","site_detail_url":"https://comicvine.gamespot.com/xebel/4005-34903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34945/","id":34945,"name":"Valkin","site_detail_url":"https://comicvine.gamespot.com/valkin/4005-34945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34948/","id":34948,"name":"Dromedan","site_detail_url":"https://comicvine.gamespot.com/dromedan/4005-34948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34973/","id":34973,"name":"Wraith (DeWolff)","site_detail_url":"https://comicvine.gamespot.com/wraith-dewolff/4005-34973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35086/","id":35086,"name":"Dr. Bedlam","site_detail_url":"https://comicvine.gamespot.com/dr-bedlam/4005-35086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35104/","id":35104,"name":"Evil Xavier","site_detail_url":"https://comicvine.gamespot.com/evil-xavier/4005-35104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35147/","id":35147,"name":"The Empathoid","site_detail_url":"https://comicvine.gamespot.com/the-empathoid/4005-35147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35177/","id":35177,"name":"Commander Blanx","site_detail_url":"https://comicvine.gamespot.com/commander-blanx/4005-35177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35238/","id":35238,"name":"Megaman","site_detail_url":"https://comicvine.gamespot.com/megaman/4005-35238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35240/","id":35240,"name":"Maha Yogi","site_detail_url":"https://comicvine.gamespot.com/maha-yogi/4005-35240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35323/","id":35323,"name":"The Space Turnip","site_detail_url":"https://comicvine.gamespot.com/the-space-turnip/4005-35323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35593/","id":35593,"name":"Karen","site_detail_url":"https://comicvine.gamespot.com/karen/4005-35593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35596/","id":35596,"name":"James-Michael Starling","site_detail_url":"https://comicvine.gamespot.com/james-michael-starling/4005-35596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35649/","id":35649,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-35649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35671/","id":35671,"name":"Harun","site_detail_url":"https://comicvine.gamespot.com/harun/4005-35671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35731/","id":35731,"name":"Uri Geller","site_detail_url":"https://comicvine.gamespot.com/uri-geller/4005-35731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35735/","id":35735,"name":"High Overlord","site_detail_url":"https://comicvine.gamespot.com/high-overlord/4005-35735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35739/","id":35739,"name":"Kryptonite Man","site_detail_url":"https://comicvine.gamespot.com/kryptonite-man/4005-35739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35824/","id":35824,"name":"May Marigold","site_detail_url":"https://comicvine.gamespot.com/may-marigold/4005-35824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35871/","id":35871,"name":"April Marigold","site_detail_url":"https://comicvine.gamespot.com/april-marigold/4005-35871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35888/","id":35888,"name":"Assassin","site_detail_url":"https://comicvine.gamespot.com/assassin/4005-35888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35956/","id":35956,"name":"Crane Mother","site_detail_url":"https://comicvine.gamespot.com/crane-mother/4005-35956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36207/","id":36207,"name":"Mindworm","site_detail_url":"https://comicvine.gamespot.com/mindworm/4005-36207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36580/","id":36580,"name":"Rotath","site_detail_url":"https://comicvine.gamespot.com/rotath/4005-36580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36619/","id":36619,"name":"Lenora Lemaris","site_detail_url":"https://comicvine.gamespot.com/lenora-lemaris/4005-36619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36889/","id":36889,"name":"Slitherogue","site_detail_url":"https://comicvine.gamespot.com/slitherogue/4005-36889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37370/","id":37370,"name":"The Lump","site_detail_url":"https://comicvine.gamespot.com/the-lump/4005-37370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37615/","id":37615,"name":"Damian Link","site_detail_url":"https://comicvine.gamespot.com/damian-link/4005-37615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37730/","id":37730,"name":"Lady Tuvia","site_detail_url":"https://comicvine.gamespot.com/lady-tuvia/4005-37730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37960/","id":37960,"name":"Thought-Beast","site_detail_url":"https://comicvine.gamespot.com/thought-beast/4005-37960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38012/","id":38012,"name":"Comet the Super-Horse","site_detail_url":"https://comicvine.gamespot.com/comet-the-super-horse/4005-38012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38013/","id":38013,"name":"Jerro","site_detail_url":"https://comicvine.gamespot.com/jerro/4005-38013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38172/","id":38172,"name":"Mind-Grabber Kid","site_detail_url":"https://comicvine.gamespot.com/mind-grabber-kid/4005-38172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38482/","id":38482,"name":"John Force","site_detail_url":"https://comicvine.gamespot.com/john-force/4005-38482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38486/","id":38486,"name":"Captain Granbretan","site_detail_url":"https://comicvine.gamespot.com/captain-granbretan/4005-38486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38695/","id":38695,"name":"Nemesis","site_detail_url":"https://comicvine.gamespot.com/nemesis/4005-38695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38926/","id":38926,"name":"Siren","site_detail_url":"https://comicvine.gamespot.com/siren/4005-38926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38979/","id":38979,"name":"Shiwan Khan","site_detail_url":"https://comicvine.gamespot.com/shiwan-khan/4005-38979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39027/","id":39027,"name":"Nikkor","site_detail_url":"https://comicvine.gamespot.com/nikkor/4005-39027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39179/","id":39179,"name":"Alter-Ego","site_detail_url":"https://comicvine.gamespot.com/alter-ego/4005-39179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39298/","id":39298,"name":"Sandu","site_detail_url":"https://comicvine.gamespot.com/sandu/4005-39298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39410/","id":39410,"name":"Manhawks","site_detail_url":"https://comicvine.gamespot.com/manhawks/4005-39410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39511/","id":39511,"name":"Trenton Craft","site_detail_url":"https://comicvine.gamespot.com/trenton-craft/4005-39511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39551/","id":39551,"name":"I.Q.","site_detail_url":"https://comicvine.gamespot.com/iq/4005-39551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39583/","id":39583,"name":"Torr","site_detail_url":"https://comicvine.gamespot.com/torr/4005-39583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39643/","id":39643,"name":"Baphomet","site_detail_url":"https://comicvine.gamespot.com/baphomet/4005-39643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40460/","id":40460,"name":"M","site_detail_url":"https://comicvine.gamespot.com/m/4005-40460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40505/","id":40505,"name":"Wiccan","site_detail_url":"https://comicvine.gamespot.com/wiccan/4005-40505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40526/","id":40526,"name":"Azazel","site_detail_url":"https://comicvine.gamespot.com/azazel/4005-40526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40527/","id":40527,"name":"Dr. Manhattan","site_detail_url":"https://comicvine.gamespot.com/dr-manhattan/4005-40527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40530/","id":40530,"name":"Cru","site_detail_url":"https://comicvine.gamespot.com/cru/4005-40530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40539/","id":40539,"name":"Tag","site_detail_url":"https://comicvine.gamespot.com/tag/4005-40539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40566/","id":40566,"name":"Seth","site_detail_url":"https://comicvine.gamespot.com/seth/4005-40566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40577/","id":40577,"name":"Street","site_detail_url":"https://comicvine.gamespot.com/street/4005-40577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40583/","id":40583,"name":"Quentin Quire","site_detail_url":"https://comicvine.gamespot.com/quentin-quire/4005-40583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40597/","id":40597,"name":"Blindfold","site_detail_url":"https://comicvine.gamespot.com/blindfold/4005-40597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40602/","id":40602,"name":"Mr. M","site_detail_url":"https://comicvine.gamespot.com/mr-m/4005-40602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40610/","id":40610,"name":"Old Lace","site_detail_url":"https://comicvine.gamespot.com/old-lace/4005-40610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40632/","id":40632,"name":"Helspont","site_detail_url":"https://comicvine.gamespot.com/helspont/4005-40632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40662/","id":40662,"name":"Tapestry","site_detail_url":"https://comicvine.gamespot.com/tapestry/4005-40662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40685/","id":40685,"name":"Sister Psyche","site_detail_url":"https://comicvine.gamespot.com/sister-psyche/4005-40685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40727/","id":40727,"name":"Piccolo","site_detail_url":"https://comicvine.gamespot.com/piccolo/4005-40727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40857/","id":40857,"name":"Vash the Stampede","site_detail_url":"https://comicvine.gamespot.com/vash-the-stampede/4005-40857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40859/","id":40859,"name":"Microbe","site_detail_url":"https://comicvine.gamespot.com/microbe/4005-40859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40877/","id":40877,"name":"Fallen One","site_detail_url":"https://comicvine.gamespot.com/fallen-one/4005-40877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40879/","id":40879,"name":"Misery","site_detail_url":"https://comicvine.gamespot.com/misery/4005-40879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40917/","id":40917,"name":"Guyver","site_detail_url":"https://comicvine.gamespot.com/guyver/4005-40917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40934/","id":40934,"name":"Gene Hayes","site_detail_url":"https://comicvine.gamespot.com/gene-hayes/4005-40934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40935/","id":40935,"name":"Alice Hayes","site_detail_url":"https://comicvine.gamespot.com/alice-hayes/4005-40935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40950/","id":40950,"name":"Allen","site_detail_url":"https://comicvine.gamespot.com/allen/4005-40950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40994/","id":40994,"name":"Cthulhu","site_detail_url":"https://comicvine.gamespot.com/cthulhu/4005-40994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41021/","id":41021,"name":"Supreme Pontiff","site_detail_url":"https://comicvine.gamespot.com/supreme-pontiff/4005-41021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41033/","id":41033,"name":"Jack-In-The-Box","site_detail_url":"https://comicvine.gamespot.com/jack-in-the-box/4005-41033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41120/","id":41120,"name":"Cassandra","site_detail_url":"https://comicvine.gamespot.com/cassandra/4005-41120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41121/","id":41121,"name":"Cerebella","site_detail_url":"https://comicvine.gamespot.com/cerebella/4005-41121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41145/","id":41145,"name":"Miss Martian","site_detail_url":"https://comicvine.gamespot.com/miss-martian/4005-41145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41178/","id":41178,"name":"Negasonic Teenage Warhead","site_detail_url":"https://comicvine.gamespot.com/negasonic-teenage-warhead/4005-41178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41220/","id":41220,"name":"Z'Cann","site_detail_url":"https://comicvine.gamespot.com/zcann/4005-41220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41243/","id":41243,"name":"Thundermind","site_detail_url":"https://comicvine.gamespot.com/thundermind/4005-41243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41245/","id":41245,"name":"Aspen Matthews","site_detail_url":"https://comicvine.gamespot.com/aspen-matthews/4005-41245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41270/","id":41270,"name":"M Twins","site_detail_url":"https://comicvine.gamespot.com/m-twins/4005-41270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41273/","id":41273,"name":"Sundragon","site_detail_url":"https://comicvine.gamespot.com/sundragon/4005-41273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41318/","id":41318,"name":"Cerebra","site_detail_url":"https://comicvine.gamespot.com/cerebra/4005-41318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41418/","id":41418,"name":"Queen","site_detail_url":"https://comicvine.gamespot.com/queen/4005-41418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41439/","id":41439,"name":"Darkson","site_detail_url":"https://comicvine.gamespot.com/darkson/4005-41439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41452/","id":41452,"name":"Ghost Widow","site_detail_url":"https://comicvine.gamespot.com/ghost-widow/4005-41452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41465/","id":41465,"name":"Pinhead","site_detail_url":"https://comicvine.gamespot.com/pinhead/4005-41465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41556/","id":41556,"name":"Gamera","site_detail_url":"https://comicvine.gamespot.com/gamera/4005-41556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41564/","id":41564,"name":"Judge Death","site_detail_url":"https://comicvine.gamespot.com/judge-death/4005-41564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41569/","id":41569,"name":"Skymax","site_detail_url":"https://comicvine.gamespot.com/skymax/4005-41569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41579/","id":41579,"name":"Evil Ernie","site_detail_url":"https://comicvine.gamespot.com/evil-ernie/4005-41579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41710/","id":41710,"name":"Reign","site_detail_url":"https://comicvine.gamespot.com/reign/4005-41710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41717/","id":41717,"name":"White Martian","site_detail_url":"https://comicvine.gamespot.com/white-martian/4005-41717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41761/","id":41761,"name":"Kal Kent","site_detail_url":"https://comicvine.gamespot.com/kal-kent/4005-41761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41833/","id":41833,"name":"Prowl","site_detail_url":"https://comicvine.gamespot.com/prowl/4005-41833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41919/","id":41919,"name":"Mogo","site_detail_url":"https://comicvine.gamespot.com/mogo/4005-41919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42075/","id":42075,"name":"Hanged Man","site_detail_url":"https://comicvine.gamespot.com/hanged-man/4005-42075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42084/","id":42084,"name":"River Tam","site_detail_url":"https://comicvine.gamespot.com/river-tam/4005-42084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42158/","id":42158,"name":"Providence","site_detail_url":"https://comicvine.gamespot.com/providence/4005-42158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42191/","id":42191,"name":"Throttle","site_detail_url":"https://comicvine.gamespot.com/throttle/4005-42191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42210/","id":42210,"name":"Modo","site_detail_url":"https://comicvine.gamespot.com/modo/4005-42210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42213/","id":42213,"name":"Vinnie","site_detail_url":"https://comicvine.gamespot.com/vinnie/4005-42213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42336/","id":42336,"name":"Pandemic","site_detail_url":"https://comicvine.gamespot.com/pandemic/4005-42336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42394/","id":42394,"name":"Frisco","site_detail_url":"https://comicvine.gamespot.com/frisco/4005-42394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42395/","id":42395,"name":"Subjekt-17","site_detail_url":"https://comicvine.gamespot.com/subjekt-17/4005-42395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42418/","id":42418,"name":"Jester","site_detail_url":"https://comicvine.gamespot.com/jester/4005-42418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42419/","id":42419,"name":"Flattop","site_detail_url":"https://comicvine.gamespot.com/flattop/4005-42419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42420/","id":42420,"name":"Dozer","site_detail_url":"https://comicvine.gamespot.com/dozer/4005-42420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42421/","id":42421,"name":"Crossbones","site_detail_url":"https://comicvine.gamespot.com/crossbones/4005-42421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42423/","id":42423,"name":"Pilgrim","site_detail_url":"https://comicvine.gamespot.com/pilgrim/4005-42423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42424/","id":42424,"name":"Grail","site_detail_url":"https://comicvine.gamespot.com/grail/4005-42424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42425/","id":42425,"name":"Mother One","site_detail_url":"https://comicvine.gamespot.com/mother-one/4005-42425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42482/","id":42482,"name":"Purgatori","site_detail_url":"https://comicvine.gamespot.com/purgatori/4005-42482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42543/","id":42543,"name":"D'Spayre","site_detail_url":"https://comicvine.gamespot.com/dspayre/4005-42543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42700/","id":42700,"name":"T. Hawk","site_detail_url":"https://comicvine.gamespot.com/t-hawk/4005-42700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42712/","id":42712,"name":"Dhalsim","site_detail_url":"https://comicvine.gamespot.com/dhalsim/4005-42712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42716/","id":42716,"name":"Rose","site_detail_url":"https://comicvine.gamespot.com/rose/4005-42716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42764/","id":42764,"name":"Hannah Connover","site_detail_url":"https://comicvine.gamespot.com/hannah-connover/4005-42764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42766/","id":42766,"name":"Josey Thomas","site_detail_url":"https://comicvine.gamespot.com/josey-thomas/4005-42766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42767/","id":42767,"name":"Brood Empress","site_detail_url":"https://comicvine.gamespot.com/brood-empress/4005-42767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42768/","id":42768,"name":"Harry Palmer","site_detail_url":"https://comicvine.gamespot.com/harry-palmer/4005-42768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42773/","id":42773,"name":"Maureen Raven","site_detail_url":"https://comicvine.gamespot.com/maureen-raven/4005-42773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42788/","id":42788,"name":"Trauma","site_detail_url":"https://comicvine.gamespot.com/trauma/4005-42788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42798/","id":42798,"name":"Magician","site_detail_url":"https://comicvine.gamespot.com/magician/4005-42798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42846/","id":42846,"name":"Cloud","site_detail_url":"https://comicvine.gamespot.com/cloud/4005-42846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42855/","id":42855,"name":"Brass","site_detail_url":"https://comicvine.gamespot.com/brass/4005-42855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42894/","id":42894,"name":"R'amey Holl","site_detail_url":"https://comicvine.gamespot.com/ramey-holl/4005-42894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42895/","id":42895,"name":"Ashake","site_detail_url":"https://comicvine.gamespot.com/ashake/4005-42895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42951/","id":42951,"name":"Altwaal","site_detail_url":"https://comicvine.gamespot.com/altwaal/4005-42951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42957/","id":42957,"name":"Ervulsh","site_detail_url":"https://comicvine.gamespot.com/ervulsh/4005-42957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42958/","id":42958,"name":"Ihroe","site_detail_url":"https://comicvine.gamespot.com/ihroe/4005-42958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42962/","id":42962,"name":"Tulity","site_detail_url":"https://comicvine.gamespot.com/tulity/4005-42962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42966/","id":42966,"name":"Danik","site_detail_url":"https://comicvine.gamespot.com/danik/4005-42966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42974/","id":42974,"name":"Solusandra","site_detail_url":"https://comicvine.gamespot.com/solusandra/4005-42974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42978/","id":42978,"name":"Great One","site_detail_url":"https://comicvine.gamespot.com/great-one/4005-42978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43025/","id":43025,"name":"Appolyon","site_detail_url":"https://comicvine.gamespot.com/appolyon/4005-43025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43047/","id":43047,"name":"Gehenna","site_detail_url":"https://comicvine.gamespot.com/gehenna/4005-43047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43125/","id":43125,"name":"Aeroika","site_detail_url":"https://comicvine.gamespot.com/aeroika/4005-43125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43162/","id":43162,"name":"Twilight","site_detail_url":"https://comicvine.gamespot.com/twilight/4005-43162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43226/","id":43226,"name":"Miek","site_detail_url":"https://comicvine.gamespot.com/miek/4005-43226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43268/","id":43268,"name":"Zuggernaut","site_detail_url":"https://comicvine.gamespot.com/zuggernaut/4005-43268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43269/","id":43269,"name":"Firebird","site_detail_url":"https://comicvine.gamespot.com/firebird/4005-43269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43279/","id":43279,"name":"Zera","site_detail_url":"https://comicvine.gamespot.com/zera/4005-43279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43310/","id":43310,"name":"Cade Skywalker","site_detail_url":"https://comicvine.gamespot.com/cade-skywalker/4005-43310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43345/","id":43345,"name":"Kamui Shirō","site_detail_url":"https://comicvine.gamespot.com/kamui-shiro/4005-43345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43349/","id":43349,"name":"Hinoto","site_detail_url":"https://comicvine.gamespot.com/hinoto/4005-43349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43353/","id":43353,"name":"Fuma Mono","site_detail_url":"https://comicvine.gamespot.com/fuma-mono/4005-43353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43373/","id":43373,"name":"Kusanagi Shiyu","site_detail_url":"https://comicvine.gamespot.com/kusanagi-shiyu/4005-43373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43467/","id":43467,"name":"Destiny","site_detail_url":"https://comicvine.gamespot.com/destiny/4005-43467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43498/","id":43498,"name":"Arthur Joseph Curry","site_detail_url":"https://comicvine.gamespot.com/arthur-joseph-curry/4005-43498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43643/","id":43643,"name":"Ryder","site_detail_url":"https://comicvine.gamespot.com/ryder/4005-43643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43653/","id":43653,"name":"3-D Man (Chandler)","site_detail_url":"https://comicvine.gamespot.com/3-d-man-chandler/4005-43653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43658/","id":43658,"name":"Captain Dynamo","site_detail_url":"https://comicvine.gamespot.com/captain-dynamo/4005-43658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43659/","id":43659,"name":"Ramjet","site_detail_url":"https://comicvine.gamespot.com/ramjet/4005-43659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43661/","id":43661,"name":"Wraith","site_detail_url":"https://comicvine.gamespot.com/wraith/4005-43661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43766/","id":43766,"name":"Chief Authier","site_detail_url":"https://comicvine.gamespot.com/chief-authier/4005-43766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43771/","id":43771,"name":"Serafina","site_detail_url":"https://comicvine.gamespot.com/serafina/4005-43771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43778/","id":43778,"name":"The Puppeteer","site_detail_url":"https://comicvine.gamespot.com/the-puppeteer/4005-43778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43828/","id":43828,"name":"Iolande","site_detail_url":"https://comicvine.gamespot.com/iolande/4005-43828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43851/","id":43851,"name":"Regis","site_detail_url":"https://comicvine.gamespot.com/regis/4005-43851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43869/","id":43869,"name":"Master Zhao","site_detail_url":"https://comicvine.gamespot.com/master-zhao/4005-43869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44042/","id":44042,"name":"Perez","site_detail_url":"https://comicvine.gamespot.com/perez/4005-44042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44104/","id":44104,"name":"Anita","site_detail_url":"https://comicvine.gamespot.com/anita/4005-44104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44108/","id":44108,"name":"Jedah","site_detail_url":"https://comicvine.gamespot.com/jedah/4005-44108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44136/","id":44136,"name":"Aku","site_detail_url":"https://comicvine.gamespot.com/aku/4005-44136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44169/","id":44169,"name":"Avi Barak","site_detail_url":"https://comicvine.gamespot.com/avi-barak/4005-44169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44170/","id":44170,"name":"Buzz","site_detail_url":"https://comicvine.gamespot.com/buzz/4005-44170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44183/","id":44183,"name":"Soul Stealer","site_detail_url":"https://comicvine.gamespot.com/soul-stealer/4005-44183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44248/","id":44248,"name":"Ino Yamanaka","site_detail_url":"https://comicvine.gamespot.com/ino-yamanaka/4005-44248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44346/","id":44346,"name":"Supremor","site_detail_url":"https://comicvine.gamespot.com/supremor/4005-44346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44363/","id":44363,"name":"Videmus","site_detail_url":"https://comicvine.gamespot.com/videmus/4005-44363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44368/","id":44368,"name":"Mikaboshi","site_detail_url":"https://comicvine.gamespot.com/mikaboshi/4005-44368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44432/","id":44432,"name":"Death's Head 3.0","site_detail_url":"https://comicvine.gamespot.com/deaths-head-30/4005-44432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44505/","id":44505,"name":"Elena Ivanova","site_detail_url":"https://comicvine.gamespot.com/elena-ivanova/4005-44505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44552/","id":44552,"name":"Ganon","site_detail_url":"https://comicvine.gamespot.com/ganon/4005-44552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44583/","id":44583,"name":"Alucard","site_detail_url":"https://comicvine.gamespot.com/alucard/4005-44583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44658/","id":44658,"name":"Captain Planet","site_detail_url":"https://comicvine.gamespot.com/captain-planet/4005-44658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44679/","id":44679,"name":"Forerunner","site_detail_url":"https://comicvine.gamespot.com/forerunner/4005-44679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44698/","id":44698,"name":"The Spider","site_detail_url":"https://comicvine.gamespot.com/the-spider/4005-44698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44794/","id":44794,"name":"Darth Bane","site_detail_url":"https://comicvine.gamespot.com/darth-bane/4005-44794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44937/","id":44937,"name":"Exitar the Exterminator","site_detail_url":"https://comicvine.gamespot.com/exitar-the-exterminator/4005-44937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45000/","id":45000,"name":"Tobi","site_detail_url":"https://comicvine.gamespot.com/tobi/4005-45000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45001/","id":45001,"name":"Pain","site_detail_url":"https://comicvine.gamespot.com/pain/4005-45001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45045/","id":45045,"name":"Tom Lennox","site_detail_url":"https://comicvine.gamespot.com/tom-lennox/4005-45045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45046/","id":45046,"name":"Alison Double","site_detail_url":"https://comicvine.gamespot.com/alison-double/4005-45046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45048/","id":45048,"name":"Rao","site_detail_url":"https://comicvine.gamespot.com/rao/4005-45048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45049/","id":45049,"name":"Astrid Bloom","site_detail_url":"https://comicvine.gamespot.com/astrid-bloom/4005-45049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45059/","id":45059,"name":"Jack T. Chance","site_detail_url":"https://comicvine.gamespot.com/jack-t-chance/4005-45059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45068/","id":45068,"name":"Missouri Mosley","site_detail_url":"https://comicvine.gamespot.com/missouri-mosley/4005-45068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45091/","id":45091,"name":"Alley-Kat Abra","site_detail_url":"https://comicvine.gamespot.com/alley-kat-abra/4005-45091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45116/","id":45116,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4005-45116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45136/","id":45136,"name":"Seras Victoria","site_detail_url":"https://comicvine.gamespot.com/seras-victoria/4005-45136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45217/","id":45217,"name":"Elias Bogan","site_detail_url":"https://comicvine.gamespot.com/elias-bogan/4005-45217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45237/","id":45237,"name":"Cambria Kilgannon","site_detail_url":"https://comicvine.gamespot.com/cambria-kilgannon/4005-45237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45339/","id":45339,"name":"Mammoth Mogul","site_detail_url":"https://comicvine.gamespot.com/mammoth-mogul/4005-45339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45361/","id":45361,"name":"Darth Maladi","site_detail_url":"https://comicvine.gamespot.com/darth-maladi/4005-45361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45363/","id":45363,"name":"Darth Talon","site_detail_url":"https://comicvine.gamespot.com/darth-talon/4005-45363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45364/","id":45364,"name":"Darth Krayt","site_detail_url":"https://comicvine.gamespot.com/darth-krayt/4005-45364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45368/","id":45368,"name":"Hiei","site_detail_url":"https://comicvine.gamespot.com/hiei/4005-45368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45380/","id":45380,"name":"Samarra Shaw","site_detail_url":"https://comicvine.gamespot.com/samarra-shaw/4005-45380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45439/","id":45439,"name":"Ikki, Saint of Phoenix","site_detail_url":"https://comicvine.gamespot.com/ikki-saint-of-phoenix/4005-45439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45452/","id":45452,"name":"Aioria, Gold Saint of Leo","site_detail_url":"https://comicvine.gamespot.com/aioria-gold-saint-of-leo/4005-45452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45453/","id":45453,"name":"Athena","site_detail_url":"https://comicvine.gamespot.com/athena/4005-45453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45469/","id":45469,"name":"Sesshomaru","site_detail_url":"https://comicvine.gamespot.com/sesshomaru/4005-45469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45528/","id":45528,"name":"Darth Nihl","site_detail_url":"https://comicvine.gamespot.com/darth-nihl/4005-45528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45543/","id":45543,"name":"Judge Omar","site_detail_url":"https://comicvine.gamespot.com/judge-omar/4005-45543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45568/","id":45568,"name":"Ginniyeh","site_detail_url":"https://comicvine.gamespot.com/ginniyeh/4005-45568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45570/","id":45570,"name":"Raven LeBeau","site_detail_url":"https://comicvine.gamespot.com/raven-lebeau/4005-45570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45590/","id":45590,"name":"Scotty Summers","site_detail_url":"https://comicvine.gamespot.com/scotty-summers/4005-45590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45592/","id":45592,"name":"Lorne","site_detail_url":"https://comicvine.gamespot.com/lorne/4005-45592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45611/","id":45611,"name":"Silver","site_detail_url":"https://comicvine.gamespot.com/silver/4005-45611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45620/","id":45620,"name":"Postman","site_detail_url":"https://comicvine.gamespot.com/postman/4005-45620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45621/","id":45621,"name":"Hybrid","site_detail_url":"https://comicvine.gamespot.com/hybrid/4005-45621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45625/","id":45625,"name":"Spawn (Llanso)","site_detail_url":"https://comicvine.gamespot.com/spawn-llanso/4005-45625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45648/","id":45648,"name":"Black Doom","site_detail_url":"https://comicvine.gamespot.com/black-doom/4005-45648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45675/","id":45675,"name":"Tien","site_detail_url":"https://comicvine.gamespot.com/tien/4005-45675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45697/","id":45697,"name":"Sayd","site_detail_url":"https://comicvine.gamespot.com/sayd/4005-45697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45713/","id":45713,"name":"Isolationist","site_detail_url":"https://comicvine.gamespot.com/isolationist/4005-45713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45745/","id":45745,"name":"Nekron","site_detail_url":"https://comicvine.gamespot.com/nekron/4005-45745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45770/","id":45770,"name":"Charlotte Witter","site_detail_url":"https://comicvine.gamespot.com/charlotte-witter/4005-45770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45936/","id":45936,"name":"Composite Superman","site_detail_url":"https://comicvine.gamespot.com/composite-superman/4005-45936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45960/","id":45960,"name":"Mu Gold Saint of Aries","site_detail_url":"https://comicvine.gamespot.com/mu-gold-saint-of-aries/4005-45960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45968/","id":45968,"name":"Kairi","site_detail_url":"https://comicvine.gamespot.com/kairi/4005-45968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46000/","id":46000,"name":"Asterion Saint of Hound","site_detail_url":"https://comicvine.gamespot.com/asterion-saint-of-hound/4005-46000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46018/","id":46018,"name":"Panya","site_detail_url":"https://comicvine.gamespot.com/panya/4005-46018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46068/","id":46068,"name":"Thessaly","site_detail_url":"https://comicvine.gamespot.com/thessaly/4005-46068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46130/","id":46130,"name":"Quoi","site_detail_url":"https://comicvine.gamespot.com/quoi/4005-46130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46186/","id":46186,"name":"Tefral the Surveyor","site_detail_url":"https://comicvine.gamespot.com/tefral-the-surveyor/4005-46186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46194/","id":46194,"name":"Synergy","site_detail_url":"https://comicvine.gamespot.com/synergy/4005-46194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46210/","id":46210,"name":"Naraku","site_detail_url":"https://comicvine.gamespot.com/naraku/4005-46210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46231/","id":46231,"name":"Princess Zelda","site_detail_url":"https://comicvine.gamespot.com/princess-zelda/4005-46231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46389/","id":46389,"name":"She-Ra","site_detail_url":"https://comicvine.gamespot.com/she-ra/4005-46389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46402/","id":46402,"name":"Kreon","site_detail_url":"https://comicvine.gamespot.com/kreon/4005-46402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46404/","id":46404,"name":"Hannu","site_detail_url":"https://comicvine.gamespot.com/hannu/4005-46404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46405/","id":46405,"name":"Graf Toren","site_detail_url":"https://comicvine.gamespot.com/graf-toren/4005-46405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46419/","id":46419,"name":"Apros","site_detail_url":"https://comicvine.gamespot.com/apros/4005-46419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46422/","id":46422,"name":"Torquemada","site_detail_url":"https://comicvine.gamespot.com/torquemada/4005-46422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46423/","id":46423,"name":"Chaselon","site_detail_url":"https://comicvine.gamespot.com/chaselon/4005-46423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46455/","id":46455,"name":"Revenant","site_detail_url":"https://comicvine.gamespot.com/revenant/4005-46455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46526/","id":46526,"name":"Vesper","site_detail_url":"https://comicvine.gamespot.com/vesper/4005-46526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46677/","id":46677,"name":"Caprice","site_detail_url":"https://comicvine.gamespot.com/caprice/4005-46677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46678/","id":46678,"name":"Mindwave","site_detail_url":"https://comicvine.gamespot.com/mindwave/4005-46678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46686/","id":46686,"name":"Xavi","site_detail_url":"https://comicvine.gamespot.com/xavi/4005-46686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46789/","id":46789,"name":"Prince of Orphans","site_detail_url":"https://comicvine.gamespot.com/prince-of-orphans/4005-46789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46809/","id":46809,"name":"Psychild","site_detail_url":"https://comicvine.gamespot.com/psychild/4005-46809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46823/","id":46823,"name":"Brain-Child","site_detail_url":"https://comicvine.gamespot.com/brain-child/4005-46823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46836/","id":46836,"name":"Taboo","site_detail_url":"https://comicvine.gamespot.com/taboo/4005-46836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46841/","id":46841,"name":"Eson the Searcher","site_detail_url":"https://comicvine.gamespot.com/eson-the-searcher/4005-46841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46842/","id":46842,"name":"Devron the Experimenter","site_detail_url":"https://comicvine.gamespot.com/devron-the-experimenter/4005-46842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46844/","id":46844,"name":"Jemiah the Analyzer","site_detail_url":"https://comicvine.gamespot.com/jemiah-the-analyzer/4005-46844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46845/","id":46845,"name":"Hargen the Measurer","site_detail_url":"https://comicvine.gamespot.com/hargen-the-measurer/4005-46845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46867/","id":46867,"name":"Spragg","site_detail_url":"https://comicvine.gamespot.com/spragg/4005-46867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46869/","id":46869,"name":"Diablo","site_detail_url":"https://comicvine.gamespot.com/diablo/4005-46869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46880/","id":46880,"name":"Intuition","site_detail_url":"https://comicvine.gamespot.com/intuition/4005-46880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46923/","id":46923,"name":"Adjudicator","site_detail_url":"https://comicvine.gamespot.com/adjudicator/4005-46923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46929/","id":46929,"name":"Thunder","site_detail_url":"https://comicvine.gamespot.com/thunder/4005-46929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46931/","id":46931,"name":"Corran Horn","site_detail_url":"https://comicvine.gamespot.com/corran-horn/4005-46931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46940/","id":46940,"name":"Shaak Ti","site_detail_url":"https://comicvine.gamespot.com/shaak-ti/4005-46940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46955/","id":46955,"name":"Bogatyr","site_detail_url":"https://comicvine.gamespot.com/bogatyr/4005-46955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46958/","id":46958,"name":"Ecce","site_detail_url":"https://comicvine.gamespot.com/ecce/4005-46958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46959/","id":46959,"name":"Emnu","site_detail_url":"https://comicvine.gamespot.com/emnu/4005-46959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46987/","id":46987,"name":"Fantom","site_detail_url":"https://comicvine.gamespot.com/fantom/4005-46987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47028/","id":47028,"name":"Badb","site_detail_url":"https://comicvine.gamespot.com/badb/4005-47028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47052/","id":47052,"name":"Pravda","site_detail_url":"https://comicvine.gamespot.com/pravda/4005-47052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47068/","id":47068,"name":"Aged Genghis","site_detail_url":"https://comicvine.gamespot.com/aged-genghis/4005-47068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47100/","id":47100,"name":"Prodigy","site_detail_url":"https://comicvine.gamespot.com/prodigy/4005-47100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47131/","id":47131,"name":"Langford Terrill","site_detail_url":"https://comicvine.gamespot.com/langford-terrill/4005-47131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47149/","id":47149,"name":"Mentalla","site_detail_url":"https://comicvine.gamespot.com/mentalla/4005-47149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47165/","id":47165,"name":"Taranee Cook","site_detail_url":"https://comicvine.gamespot.com/taranee-cook/4005-47165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47234/","id":47234,"name":"Bekka","site_detail_url":"https://comicvine.gamespot.com/bekka/4005-47234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47235/","id":47235,"name":"Marij'n Bek","site_detail_url":"https://comicvine.gamespot.com/marijn-bek/4005-47235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47249/","id":47249,"name":"Hypnota","site_detail_url":"https://comicvine.gamespot.com/hypnota/4005-47249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47255/","id":47255,"name":"Medphyll","site_detail_url":"https://comicvine.gamespot.com/medphyll/4005-47255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47277/","id":47277,"name":"Turytt","site_detail_url":"https://comicvine.gamespot.com/turytt/4005-47277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47278/","id":47278,"name":"Isamot Kol","site_detail_url":"https://comicvine.gamespot.com/isamot-kol/4005-47278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47280/","id":47280,"name":"Vath Sarn","site_detail_url":"https://comicvine.gamespot.com/vath-sarn/4005-47280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47286/","id":47286,"name":"Protex","site_detail_url":"https://comicvine.gamespot.com/protex/4005-47286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47292/","id":47292,"name":"Charlie X","site_detail_url":"https://comicvine.gamespot.com/charlie-x/4005-47292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47300/","id":47300,"name":"A-Mortal","site_detail_url":"https://comicvine.gamespot.com/a-mortal/4005-47300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47301/","id":47301,"name":"Armek","site_detail_url":"https://comicvine.gamespot.com/armek/4005-47301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47302/","id":47302,"name":"Fluxus","site_detail_url":"https://comicvine.gamespot.com/fluxus/4005-47302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47303/","id":47303,"name":"Primaid","site_detail_url":"https://comicvine.gamespot.com/primaid/4005-47303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47304/","id":47304,"name":"Tronix","site_detail_url":"https://comicvine.gamespot.com/tronix/4005-47304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47305/","id":47305,"name":"Zenturion","site_detail_url":"https://comicvine.gamespot.com/zenturion/4005-47305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47306/","id":47306,"name":"Zum","site_detail_url":"https://comicvine.gamespot.com/zum/4005-47306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47310/","id":47310,"name":"Swat","site_detail_url":"https://comicvine.gamespot.com/swat/4005-47310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47362/","id":47362,"name":"Nia Noble","site_detail_url":"https://comicvine.gamespot.com/nia-noble/4005-47362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47368/","id":47368,"name":"Marvelman","site_detail_url":"https://comicvine.gamespot.com/marvelman/4005-47368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47383/","id":47383,"name":"Gestalt","site_detail_url":"https://comicvine.gamespot.com/gestalt/4005-47383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47400/","id":47400,"name":"Mermaid","site_detail_url":"https://comicvine.gamespot.com/mermaid/4005-47400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47464/","id":47464,"name":"Jeyra Entinn","site_detail_url":"https://comicvine.gamespot.com/jeyra-entinn/4005-47464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47489/","id":47489,"name":"Invisible Rogue","site_detail_url":"https://comicvine.gamespot.com/invisible-rogue/4005-47489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47490/","id":47490,"name":"Elastic Crook","site_detail_url":"https://comicvine.gamespot.com/elastic-crook/4005-47490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47492/","id":47492,"name":"Insect Master","site_detail_url":"https://comicvine.gamespot.com/insect-master/4005-47492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47572/","id":47572,"name":"Marine Marauder","site_detail_url":"https://comicvine.gamespot.com/marine-marauder/4005-47572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47615/","id":47615,"name":"Mindancer","site_detail_url":"https://comicvine.gamespot.com/mindancer/4005-47615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47673/","id":47673,"name":"Matt Parkman","site_detail_url":"https://comicvine.gamespot.com/matt-parkman/4005-47673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47679/","id":47679,"name":"Sylar","site_detail_url":"https://comicvine.gamespot.com/sylar/4005-47679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47803/","id":47803,"name":"Psi","site_detail_url":"https://comicvine.gamespot.com/psi/4005-47803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47806/","id":47806,"name":"Tigress","site_detail_url":"https://comicvine.gamespot.com/tigress/4005-47806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47874/","id":47874,"name":"Darth Nihilus","site_detail_url":"https://comicvine.gamespot.com/darth-nihilus/4005-47874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47877/","id":47877,"name":"James Cullen","site_detail_url":"https://comicvine.gamespot.com/james-cullen/4005-47877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47892/","id":47892,"name":"Darth Malak","site_detail_url":"https://comicvine.gamespot.com/darth-malak/4005-47892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47899/","id":47899,"name":"Ra","site_detail_url":"https://comicvine.gamespot.com/ra/4005-47899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47915/","id":47915,"name":"Tyndall","site_detail_url":"https://comicvine.gamespot.com/tyndall/4005-47915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47939/","id":47939,"name":"Jacen Solo","site_detail_url":"https://comicvine.gamespot.com/jacen-solo/4005-47939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47940/","id":47940,"name":"Jaina Solo","site_detail_url":"https://comicvine.gamespot.com/jaina-solo/4005-47940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47942/","id":47942,"name":"Scirocco","site_detail_url":"https://comicvine.gamespot.com/scirocco/4005-47942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47958/","id":47958,"name":"Psycho Mantis","site_detail_url":"https://comicvine.gamespot.com/psycho-mantis/4005-47958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47963/","id":47963,"name":"Joruus C'Baoth","site_detail_url":"https://comicvine.gamespot.com/joruus-cbaoth/4005-47963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47965/","id":47965,"name":"Kyp Durron","site_detail_url":"https://comicvine.gamespot.com/kyp-durron/4005-47965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48037/","id":48037,"name":"Spacehawk","site_detail_url":"https://comicvine.gamespot.com/spacehawk/4005-48037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48044/","id":48044,"name":"Ben Skywalker","site_detail_url":"https://comicvine.gamespot.com/ben-skywalker/4005-48044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48062/","id":48062,"name":"Slick","site_detail_url":"https://comicvine.gamespot.com/slick/4005-48062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48067/","id":48067,"name":"Judge Anderson","site_detail_url":"https://comicvine.gamespot.com/judge-anderson/4005-48067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48068/","id":48068,"name":"Satine","site_detail_url":"https://comicvine.gamespot.com/satine/4005-48068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48121/","id":48121,"name":"Maury Parkman","site_detail_url":"https://comicvine.gamespot.com/maury-parkman/4005-48121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48261/","id":48261,"name":"Skizm","site_detail_url":"https://comicvine.gamespot.com/skizm/4005-48261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48287/","id":48287,"name":"Kyle Katarn","site_detail_url":"https://comicvine.gamespot.com/kyle-katarn/4005-48287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48315/","id":48315,"name":"Gorc","site_detail_url":"https://comicvine.gamespot.com/gorc/4005-48315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48316/","id":48316,"name":"Pic","site_detail_url":"https://comicvine.gamespot.com/pic/4005-48316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48318/","id":48318,"name":"Barriss Offee","site_detail_url":"https://comicvine.gamespot.com/barriss-offee/4005-48318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48325/","id":48325,"name":"Mastermind Excello","site_detail_url":"https://comicvine.gamespot.com/mastermind-excello/4005-48325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48368/","id":48368,"name":"Merzah the Mystic","site_detail_url":"https://comicvine.gamespot.com/merzah-the-mystic/4005-48368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48402/","id":48402,"name":"Marlow Roderick","site_detail_url":"https://comicvine.gamespot.com/marlow-roderick/4005-48402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48404/","id":48404,"name":"Vicente","site_detail_url":"https://comicvine.gamespot.com/vicente/4005-48404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48406/","id":48406,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-48406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48428/","id":48428,"name":"Yog-Sothoth","site_detail_url":"https://comicvine.gamespot.com/yog-sothoth/4005-48428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48453/","id":48453,"name":"Hastur","site_detail_url":"https://comicvine.gamespot.com/hastur/4005-48453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48499/","id":48499,"name":"Ben 10","site_detail_url":"https://comicvine.gamespot.com/ben-10/4005-48499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48501/","id":48501,"name":"Tsui Choi","site_detail_url":"https://comicvine.gamespot.com/tsui-choi/4005-48501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48503/","id":48503,"name":"Nyarlathotep","site_detail_url":"https://comicvine.gamespot.com/nyarlathotep/4005-48503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48560/","id":48560,"name":"Jade","site_detail_url":"https://comicvine.gamespot.com/jade/4005-48560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48596/","id":48596,"name":"Tetsuo","site_detail_url":"https://comicvine.gamespot.com/tetsuo/4005-48596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48598/","id":48598,"name":"Genn","site_detail_url":"https://comicvine.gamespot.com/genn/4005-48598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48620/","id":48620,"name":"Sin","site_detail_url":"https://comicvine.gamespot.com/sin/4005-48620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48652/","id":48652,"name":"Agent Huggins","site_detail_url":"https://comicvine.gamespot.com/agent-huggins/4005-48652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48662/","id":48662,"name":"Galactiac","site_detail_url":"https://comicvine.gamespot.com/galactiac/4005-48662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48673/","id":48673,"name":"The Antithesis","site_detail_url":"https://comicvine.gamespot.com/the-antithesis/4005-48673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48733/","id":48733,"name":"Zorin Blitz","site_detail_url":"https://comicvine.gamespot.com/zorin-blitz/4005-48733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48768/","id":48768,"name":"Saga Gold Saint of Gemini","site_detail_url":"https://comicvine.gamespot.com/saga-gold-saint-of-gemini/4005-48768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48780/","id":48780,"name":"Exar Kun","site_detail_url":"https://comicvine.gamespot.com/exar-kun/4005-48780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48846/","id":48846,"name":"Seance","site_detail_url":"https://comicvine.gamespot.com/seance/4005-48846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48867/","id":48867,"name":"Uatu the Guardian","site_detail_url":"https://comicvine.gamespot.com/uatu-the-guardian/4005-48867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48932/","id":48932,"name":"Sakura","site_detail_url":"https://comicvine.gamespot.com/sakura/4005-48932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48940/","id":48940,"name":"Tildie Soames","site_detail_url":"https://comicvine.gamespot.com/tildie-soames/4005-48940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48984/","id":48984,"name":"Camus Gold Saint of Aquarius","site_detail_url":"https://comicvine.gamespot.com/camus-gold-saint-of-aquarius/4005-48984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48989/","id":48989,"name":"Motoko Kusanagi","site_detail_url":"https://comicvine.gamespot.com/motoko-kusanagi/4005-48989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49094/","id":49094,"name":"Charmcaster","site_detail_url":"https://comicvine.gamespot.com/charmcaster/4005-49094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49157/","id":49157,"name":"Lina Inverse","site_detail_url":"https://comicvine.gamespot.com/lina-inverse/4005-49157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49160/","id":49160,"name":"Ryuhou","site_detail_url":"https://comicvine.gamespot.com/ryuhou/4005-49160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49165/","id":49165,"name":"The Savior","site_detail_url":"https://comicvine.gamespot.com/the-savior/4005-49165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49203/","id":49203,"name":"Cosmo","site_detail_url":"https://comicvine.gamespot.com/cosmo/4005-49203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49220/","id":49220,"name":"Batou","site_detail_url":"https://comicvine.gamespot.com/batou/4005-49220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49310/","id":49310,"name":"Kabala","site_detail_url":"https://comicvine.gamespot.com/kabala/4005-49310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49503/","id":49503,"name":"Doc Magus","site_detail_url":"https://comicvine.gamespot.com/doc-magus/4005-49503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49548/","id":49548,"name":"El-qa Sqa Zreenah","site_detail_url":"https://comicvine.gamespot.com/el-qa-sqa-zreenah/4005-49548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49549/","id":49549,"name":"Breeon","site_detail_url":"https://comicvine.gamespot.com/breeon/4005-49549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49601/","id":49601,"name":"Sydren","site_detail_url":"https://comicvine.gamespot.com/sydren/4005-49601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49603/","id":49603,"name":"Maris Brood","site_detail_url":"https://comicvine.gamespot.com/maris-brood/4005-49603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49624/","id":49624,"name":"Brains","site_detail_url":"https://comicvine.gamespot.com/brains/4005-49624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49645/","id":49645,"name":"Tahr","site_detail_url":"https://comicvine.gamespot.com/tahr/4005-49645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49669/","id":49669,"name":"Togusa","site_detail_url":"https://comicvine.gamespot.com/togusa/4005-49669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49673/","id":49673,"name":"Matoo","site_detail_url":"https://comicvine.gamespot.com/matoo/4005-49673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49676/","id":49676,"name":"Amnee Pree","site_detail_url":"https://comicvine.gamespot.com/amnee-pree/4005-49676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49677/","id":49677,"name":"Kraken","site_detail_url":"https://comicvine.gamespot.com/kraken/4005-49677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49681/","id":49681,"name":"Tomy-Fai","site_detail_url":"https://comicvine.gamespot.com/tomy-fai/4005-49681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49682/","id":49682,"name":"Varix","site_detail_url":"https://comicvine.gamespot.com/varix/4005-49682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49687/","id":49687,"name":"Ghr'll","site_detail_url":"https://comicvine.gamespot.com/ghrll/4005-49687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49688/","id":49688,"name":"Xylpth","site_detail_url":"https://comicvine.gamespot.com/xylpth/4005-49688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49689/","id":49689,"name":"Relok Hag","site_detail_url":"https://comicvine.gamespot.com/relok-hag/4005-49689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49690/","id":49690,"name":"KT21","site_detail_url":"https://comicvine.gamespot.com/kt21/4005-49690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49694/","id":49694,"name":"Alia","site_detail_url":"https://comicvine.gamespot.com/alia/4005-49694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49695/","id":49695,"name":"Ash-Pak-Glif","site_detail_url":"https://comicvine.gamespot.com/ash-pak-glif/4005-49695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49698/","id":49698,"name":"Procanon Kaa","site_detail_url":"https://comicvine.gamespot.com/procanon-kaa/4005-49698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49699/","id":49699,"name":"Vode-M","site_detail_url":"https://comicvine.gamespot.com/vode-m/4005-49699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49702/","id":49702,"name":"Ash","site_detail_url":"https://comicvine.gamespot.com/ash/4005-49702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49703/","id":49703,"name":"Morro","site_detail_url":"https://comicvine.gamespot.com/morro/4005-49703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49704/","id":49704,"name":"Saarek","site_detail_url":"https://comicvine.gamespot.com/saarek/4005-49704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49706/","id":49706,"name":"Horoq Nnot","site_detail_url":"https://comicvine.gamespot.com/horoq-nnot/4005-49706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49707/","id":49707,"name":"Aa","site_detail_url":"https://comicvine.gamespot.com/aa/4005-49707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49709/","id":49709,"name":"Brokk","site_detail_url":"https://comicvine.gamespot.com/brokk/4005-49709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49710/","id":49710,"name":"Taa","site_detail_url":"https://comicvine.gamespot.com/taa/4005-49710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49711/","id":49711,"name":"Rot Lop Fan","site_detail_url":"https://comicvine.gamespot.com/rot-lop-fan/4005-49711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49714/","id":49714,"name":"Wissen","site_detail_url":"https://comicvine.gamespot.com/wissen/4005-49714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49720/","id":49720,"name":"Adam","site_detail_url":"https://comicvine.gamespot.com/adam/4005-49720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49721/","id":49721,"name":"Okonoko","site_detail_url":"https://comicvine.gamespot.com/okonoko/4005-49721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49722/","id":49722,"name":"Remnant Nod","site_detail_url":"https://comicvine.gamespot.com/remnant-nod/4005-49722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49723/","id":49723,"name":"Grumb","site_detail_url":"https://comicvine.gamespot.com/grumb/4005-49723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49731/","id":49731,"name":"Kaylark","site_detail_url":"https://comicvine.gamespot.com/kaylark/4005-49731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49732/","id":49732,"name":"Symon Terrynce","site_detail_url":"https://comicvine.gamespot.com/symon-terrynce/4005-49732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49733/","id":49733,"name":"Skirl","site_detail_url":"https://comicvine.gamespot.com/skirl/4005-49733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49734/","id":49734,"name":"M'Dahna","site_detail_url":"https://comicvine.gamespot.com/mdahna/4005-49734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49735/","id":49735,"name":"Dalor","site_detail_url":"https://comicvine.gamespot.com/dalor/4005-49735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49736/","id":49736,"name":"Gretti","site_detail_url":"https://comicvine.gamespot.com/gretti/4005-49736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49737/","id":49737,"name":"Harvid","site_detail_url":"https://comicvine.gamespot.com/harvid/4005-49737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49739/","id":49739,"name":"Barreer Wot","site_detail_url":"https://comicvine.gamespot.com/barreer-wot/4005-49739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49741/","id":49741,"name":"Amanita","site_detail_url":"https://comicvine.gamespot.com/amanita/4005-49741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49747/","id":49747,"name":"Lashorr","site_detail_url":"https://comicvine.gamespot.com/lashorr/4005-49747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49782/","id":49782,"name":"Chthos-Chthas Chthatis","site_detail_url":"https://comicvine.gamespot.com/chthos-chthas-chthatis/4005-49782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49808/","id":49808,"name":"Andromeda Weaver","site_detail_url":"https://comicvine.gamespot.com/andromeda-weaver/4005-49808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49905/","id":49905,"name":"Geiger","site_detail_url":"https://comicvine.gamespot.com/geiger/4005-49905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49911/","id":49911,"name":"Akamaru","site_detail_url":"https://comicvine.gamespot.com/akamaru/4005-49911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49956/","id":49956,"name":"Arisa","site_detail_url":"https://comicvine.gamespot.com/arisa/4005-49956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50070/","id":50070,"name":"Argus","site_detail_url":"https://comicvine.gamespot.com/argus/4005-50070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50115/","id":50115,"name":"Quond","site_detail_url":"https://comicvine.gamespot.com/quond/4005-50115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50117/","id":50117,"name":"Bette","site_detail_url":"https://comicvine.gamespot.com/bette/4005-50117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50155/","id":50155,"name":"Mr. Nobody","site_detail_url":"https://comicvine.gamespot.com/mr-nobody/4005-50155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50157/","id":50157,"name":"Quiz","site_detail_url":"https://comicvine.gamespot.com/quiz/4005-50157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50194/","id":50194,"name":"Ma-Ti","site_detail_url":"https://comicvine.gamespot.com/ma-ti/4005-50194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50236/","id":50236,"name":"Blind Faith","site_detail_url":"https://comicvine.gamespot.com/blind-faith/4005-50236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50279/","id":50279,"name":"The Alternate","site_detail_url":"https://comicvine.gamespot.com/the-alternate/4005-50279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50366/","id":50366,"name":"Mother Hive","site_detail_url":"https://comicvine.gamespot.com/mother-hive/4005-50366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50391/","id":50391,"name":"Shendu","site_detail_url":"https://comicvine.gamespot.com/shendu/4005-50391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50414/","id":50414,"name":"Tarantulas","site_detail_url":"https://comicvine.gamespot.com/tarantulas/4005-50414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50430/","id":50430,"name":"Spy","site_detail_url":"https://comicvine.gamespot.com/spy/4005-50430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50482/","id":50482,"name":"Sailor Moon","site_detail_url":"https://comicvine.gamespot.com/sailor-moon/4005-50482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50486/","id":50486,"name":"Celeste Cuckoo","site_detail_url":"https://comicvine.gamespot.com/celeste-cuckoo/4005-50486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50487/","id":50487,"name":"Esme Cuckoo","site_detail_url":"https://comicvine.gamespot.com/esme-cuckoo/4005-50487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50488/","id":50488,"name":"Mindee Cuckoo","site_detail_url":"https://comicvine.gamespot.com/mindee-cuckoo/4005-50488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50489/","id":50489,"name":"Phoebe Cuckoo","site_detail_url":"https://comicvine.gamespot.com/phoebe-cuckoo/4005-50489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50490/","id":50490,"name":"Sophie Cuckoo","site_detail_url":"https://comicvine.gamespot.com/sophie-cuckoo/4005-50490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50540/","id":50540,"name":"Luna","site_detail_url":"https://comicvine.gamespot.com/luna/4005-50540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50557/","id":50557,"name":"Arkkis Chummuck","site_detail_url":"https://comicvine.gamespot.com/arkkis-chummuck/4005-50557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50616/","id":50616,"name":"Paula Ramirez","site_detail_url":"https://comicvine.gamespot.com/paula-ramirez/4005-50616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50621/","id":50621,"name":"Blish","site_detail_url":"https://comicvine.gamespot.com/blish/4005-50621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50626/","id":50626,"name":"Clarence Mack","site_detail_url":"https://comicvine.gamespot.com/clarence-mack/4005-50626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50645/","id":50645,"name":"Poizon","site_detail_url":"https://comicvine.gamespot.com/poizon/4005-50645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50764/","id":50764,"name":"Branwilla","site_detail_url":"https://comicvine.gamespot.com/branwilla/4005-50764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50765/","id":50765,"name":"Alisand'r","site_detail_url":"https://comicvine.gamespot.com/alisandr/4005-50765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50769/","id":50769,"name":"Jeryll","site_detail_url":"https://comicvine.gamespot.com/jeryll/4005-50769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50773/","id":50773,"name":"Adara","site_detail_url":"https://comicvine.gamespot.com/adara/4005-50773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50780/","id":50780,"name":"Archon Z'gmora","site_detail_url":"https://comicvine.gamespot.com/archon-zgmora/4005-50780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50781/","id":50781,"name":"The Master","site_detail_url":"https://comicvine.gamespot.com/the-master/4005-50781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50797/","id":50797,"name":"Ink","site_detail_url":"https://comicvine.gamespot.com/ink/4005-50797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50839/","id":50839,"name":"Moot","site_detail_url":"https://comicvine.gamespot.com/moot/4005-50839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50885/","id":50885,"name":"Lucien Draay","site_detail_url":"https://comicvine.gamespot.com/lucien-draay/4005-50885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50886/","id":50886,"name":"Celeste Morne","site_detail_url":"https://comicvine.gamespot.com/celeste-morne/4005-50886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50907/","id":50907,"name":"Feln","site_detail_url":"https://comicvine.gamespot.com/feln/4005-50907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50926/","id":50926,"name":"Ahtier","site_detail_url":"https://comicvine.gamespot.com/ahtier/4005-50926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50927/","id":50927,"name":"Ares Bandet","site_detail_url":"https://comicvine.gamespot.com/ares-bandet/4005-50927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50955/","id":50955,"name":"B'rr","site_detail_url":"https://comicvine.gamespot.com/brr/4005-50955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50959/","id":50959,"name":"Bivvix","site_detail_url":"https://comicvine.gamespot.com/bivvix/4005-50959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50962/","id":50962,"name":"Burkett","site_detail_url":"https://comicvine.gamespot.com/burkett/4005-50962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50978/","id":50978,"name":"C.C.","site_detail_url":"https://comicvine.gamespot.com/cc/4005-50978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51004/","id":51004,"name":"Wylxa","site_detail_url":"https://comicvine.gamespot.com/wylxa/4005-51004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51005/","id":51005,"name":"Pelle","site_detail_url":"https://comicvine.gamespot.com/pelle/4005-51005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51006/","id":51006,"name":"Quarzz Teranh","site_detail_url":"https://comicvine.gamespot.com/quarzz-teranh/4005-51006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51098/","id":51098,"name":"Ry'Lor","site_detail_url":"https://comicvine.gamespot.com/rylor/4005-51098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51164/","id":51164,"name":"Dende","site_detail_url":"https://comicvine.gamespot.com/dende/4005-51164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51225/","id":51225,"name":"Zenith","site_detail_url":"https://comicvine.gamespot.com/zenith/4005-51225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51287/","id":51287,"name":"Q'Anilia","site_detail_url":"https://comicvine.gamespot.com/qanilia/4005-51287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51289/","id":51289,"name":"Gharn","site_detail_url":"https://comicvine.gamespot.com/gharn/4005-51289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51291/","id":51291,"name":"Krynda Draay","site_detail_url":"https://comicvine.gamespot.com/krynda-draay/4005-51291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51298/","id":51298,"name":"Joann","site_detail_url":"https://comicvine.gamespot.com/joann/4005-51298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51416/","id":51416,"name":"Zymyr","site_detail_url":"https://comicvine.gamespot.com/zymyr/4005-51416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51438/","id":51438,"name":"Zhar Lestin","site_detail_url":"https://comicvine.gamespot.com/zhar-lestin/4005-51438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51464/","id":51464,"name":"Keroberos","site_detail_url":"https://comicvine.gamespot.com/keroberos/4005-51464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51500/","id":51500,"name":"Maligna","site_detail_url":"https://comicvine.gamespot.com/maligna/4005-51500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51542/","id":51542,"name":"Syndicate","site_detail_url":"https://comicvine.gamespot.com/syndicate/4005-51542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51594/","id":51594,"name":"Worldmind","site_detail_url":"https://comicvine.gamespot.com/worldmind/4005-51594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51617/","id":51617,"name":"Jin Kazama","site_detail_url":"https://comicvine.gamespot.com/jin-kazama/4005-51617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51641/","id":51641,"name":"Marianne Rodgers","site_detail_url":"https://comicvine.gamespot.com/marianne-rodgers/4005-51641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51673/","id":51673,"name":"Coleman Trebor","site_detail_url":"https://comicvine.gamespot.com/coleman-trebor/4005-51673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51674/","id":51674,"name":"Odan-Urr","site_detail_url":"https://comicvine.gamespot.com/odan-urr/4005-51674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51693/","id":51693,"name":"Vandala","site_detail_url":"https://comicvine.gamespot.com/vandala/4005-51693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51696/","id":51696,"name":"Fentara","site_detail_url":"https://comicvine.gamespot.com/fentara/4005-51696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51728/","id":51728,"name":"Ryo Bakura","site_detail_url":"https://comicvine.gamespot.com/ryo-bakura/4005-51728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51729/","id":51729,"name":"Dr. Evil","site_detail_url":"https://comicvine.gamespot.com/dr-evil/4005-51729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51851/","id":51851,"name":"Yun","site_detail_url":"https://comicvine.gamespot.com/yun/4005-51851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51883/","id":51883,"name":"Gaze","site_detail_url":"https://comicvine.gamespot.com/gaze/4005-51883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51895/","id":51895,"name":"Ash Ketchum","site_detail_url":"https://comicvine.gamespot.com/ash-ketchum/4005-51895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52015/","id":52015,"name":"Janelle","site_detail_url":"https://comicvine.gamespot.com/janelle/4005-52015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52047/","id":52047,"name":"Shirea Vaas","site_detail_url":"https://comicvine.gamespot.com/shirea-vaas/4005-52047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52068/","id":52068,"name":"Thorgal","site_detail_url":"https://comicvine.gamespot.com/thorgal/4005-52068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52070/","id":52070,"name":"Jaden Yuki","site_detail_url":"https://comicvine.gamespot.com/jaden-yuki/4005-52070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52120/","id":52120,"name":"Rayla","site_detail_url":"https://comicvine.gamespot.com/rayla/4005-52120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52121/","id":52121,"name":"Janus","site_detail_url":"https://comicvine.gamespot.com/janus/4005-52121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52122/","id":52122,"name":"Aiden","site_detail_url":"https://comicvine.gamespot.com/aiden/4005-52122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52123/","id":52123,"name":"Maximilian","site_detail_url":"https://comicvine.gamespot.com/maximilian/4005-52123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52132/","id":52132,"name":"Lilitu","site_detail_url":"https://comicvine.gamespot.com/lilitu/4005-52132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52321/","id":52321,"name":"Man of Miracles","site_detail_url":"https://comicvine.gamespot.com/man-of-miracles/4005-52321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52349/","id":52349,"name":"Lucario","site_detail_url":"https://comicvine.gamespot.com/lucario/4005-52349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52437/","id":52437,"name":"Kworri","site_detail_url":"https://comicvine.gamespot.com/kworri/4005-52437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52440/","id":52440,"name":"Kwo Varrikk","site_detail_url":"https://comicvine.gamespot.com/kwo-varrikk/4005-52440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52594/","id":52594,"name":"Alien Queen","site_detail_url":"https://comicvine.gamespot.com/alien-queen/4005-52594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52657/","id":52657,"name":"Spacehunter","site_detail_url":"https://comicvine.gamespot.com/spacehunter/4005-52657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52690/","id":52690,"name":"Thormon Tox","site_detail_url":"https://comicvine.gamespot.com/thormon-tox/4005-52690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52691/","id":52691,"name":"Diamalon","site_detail_url":"https://comicvine.gamespot.com/diamalon/4005-52691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52701/","id":52701,"name":"Sword of Damocles","site_detail_url":"https://comicvine.gamespot.com/sword-of-damocles/4005-52701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52704/","id":52704,"name":"Darth Andeddu","site_detail_url":"https://comicvine.gamespot.com/darth-andeddu/4005-52704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52705/","id":52705,"name":"Darth Azard","site_detail_url":"https://comicvine.gamespot.com/darth-azard/4005-52705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52708/","id":52708,"name":"Darth Maleval","site_detail_url":"https://comicvine.gamespot.com/darth-maleval/4005-52708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52716/","id":52716,"name":"Papa Midnite","site_detail_url":"https://comicvine.gamespot.com/papa-midnite/4005-52716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52731/","id":52731,"name":"Tenth","site_detail_url":"https://comicvine.gamespot.com/tenth/4005-52731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52751/","id":52751,"name":"Darwin","site_detail_url":"https://comicvine.gamespot.com/darwin/4005-52751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52937/","id":52937,"name":"Sorcerer","site_detail_url":"https://comicvine.gamespot.com/sorcerer/4005-52937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52969/","id":52969,"name":"Ghirretur","site_detail_url":"https://comicvine.gamespot.com/ghirretur/4005-52969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53007/","id":53007,"name":"Minity","site_detail_url":"https://comicvine.gamespot.com/minity/4005-53007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53009/","id":53009,"name":"Magin","site_detail_url":"https://comicvine.gamespot.com/magin/4005-53009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53010/","id":53010,"name":"Mharrut","site_detail_url":"https://comicvine.gamespot.com/mharrut/4005-53010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53013/","id":53013,"name":"Syeniess","site_detail_url":"https://comicvine.gamespot.com/syeniess/4005-53013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53037/","id":53037,"name":"Indorienne","site_detail_url":"https://comicvine.gamespot.com/indorienne/4005-53037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53215/","id":53215,"name":"Sheemie Ruiz","site_detail_url":"https://comicvine.gamespot.com/sheemie-ruiz/4005-53215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53220/","id":53220,"name":"The Vampire Lestat","site_detail_url":"https://comicvine.gamespot.com/the-vampire-lestat/4005-53220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53244/","id":53244,"name":"Master Roshi","site_detail_url":"https://comicvine.gamespot.com/master-roshi/4005-53244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53257/","id":53257,"name":"Quan Chi","site_detail_url":"https://comicvine.gamespot.com/quan-chi/4005-53257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53299/","id":53299,"name":"Vicki","site_detail_url":"https://comicvine.gamespot.com/vicki/4005-53299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53366/","id":53366,"name":"Rick Young","site_detail_url":"https://comicvine.gamespot.com/rick-young/4005-53366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53411/","id":53411,"name":"The Brothers Yin and Yang","site_detail_url":"https://comicvine.gamespot.com/the-brothers-yin-and-yang/4005-53411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53416/","id":53416,"name":"Kho","site_detail_url":"https://comicvine.gamespot.com/kho/4005-53416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53428/","id":53428,"name":"Xxtr","site_detail_url":"https://comicvine.gamespot.com/xxtr/4005-53428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53448/","id":53448,"name":"Ebikar Hrui","site_detail_url":"https://comicvine.gamespot.com/ebikar-hrui/4005-53448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53452/","id":53452,"name":"Suspira","site_detail_url":"https://comicvine.gamespot.com/suspira/4005-53452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53456/","id":53456,"name":"Yellow","site_detail_url":"https://comicvine.gamespot.com/yellow/4005-53456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53460/","id":53460,"name":"Séance","site_detail_url":"https://comicvine.gamespot.com/seance/4005-53460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53502/","id":53502,"name":"Mewtwo","site_detail_url":"https://comicvine.gamespot.com/mewtwo/4005-53502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53521/","id":53521,"name":"Genocide","site_detail_url":"https://comicvine.gamespot.com/genocide/4005-53521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53536/","id":53536,"name":"Leviatha","site_detail_url":"https://comicvine.gamespot.com/leviatha/4005-53536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53549/","id":53549,"name":"Lugia","site_detail_url":"https://comicvine.gamespot.com/lugia/4005-53549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53555/","id":53555,"name":"Tyrande Whisperwind","site_detail_url":"https://comicvine.gamespot.com/tyrande-whisperwind/4005-53555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53556/","id":53556,"name":"Jaina Proudmoore","site_detail_url":"https://comicvine.gamespot.com/jaina-proudmoore/4005-53556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53585/","id":53585,"name":"Ghrelk","site_detail_url":"https://comicvine.gamespot.com/ghrelk/4005-53585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53597/","id":53597,"name":"Joanquin","site_detail_url":"https://comicvine.gamespot.com/joanquin/4005-53597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53615/","id":53615,"name":"Judge Corey","site_detail_url":"https://comicvine.gamespot.com/judge-corey/4005-53615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53635/","id":53635,"name":"Janelle Armstrong","site_detail_url":"https://comicvine.gamespot.com/janelle-armstrong/4005-53635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53637/","id":53637,"name":"Celebi","site_detail_url":"https://comicvine.gamespot.com/celebi/4005-53637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53638/","id":53638,"name":"Mew","site_detail_url":"https://comicvine.gamespot.com/mew/4005-53638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53646/","id":53646,"name":"Kiyoko","site_detail_url":"https://comicvine.gamespot.com/kiyoko/4005-53646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53647/","id":53647,"name":"Masaru","site_detail_url":"https://comicvine.gamespot.com/masaru/4005-53647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53648/","id":53648,"name":"Akira","site_detail_url":"https://comicvine.gamespot.com/akira/4005-53648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53661/","id":53661,"name":"El Dorado","site_detail_url":"https://comicvine.gamespot.com/el-dorado/4005-53661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53674/","id":53674,"name":"Chatterer","site_detail_url":"https://comicvine.gamespot.com/chatterer/4005-53674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53675/","id":53675,"name":"NautKeLoi","site_detail_url":"https://comicvine.gamespot.com/nautkeloi/4005-53675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53687/","id":53687,"name":"BCRM","site_detail_url":"https://comicvine.gamespot.com/bcrm/4005-53687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53689/","id":53689,"name":"LKQR","site_detail_url":"https://comicvine.gamespot.com/lkqr/4005-53689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53690/","id":53690,"name":"Psilencer","site_detail_url":"https://comicvine.gamespot.com/psilencer/4005-53690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53691/","id":53691,"name":"QRYN","site_detail_url":"https://comicvine.gamespot.com/qryn/4005-53691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53693/","id":53693,"name":"Miranda Cross","site_detail_url":"https://comicvine.gamespot.com/miranda-cross/4005-53693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53723/","id":53723,"name":"Trocantor","site_detail_url":"https://comicvine.gamespot.com/trocantor/4005-53723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53733/","id":53733,"name":"Deoxys","site_detail_url":"https://comicvine.gamespot.com/deoxys/4005-53733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53737/","id":53737,"name":"Suicune","site_detail_url":"https://comicvine.gamespot.com/suicune/4005-53737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53749/","id":53749,"name":"Jewelius Blak","site_detail_url":"https://comicvine.gamespot.com/jewelius-blak/4005-53749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53775/","id":53775,"name":"Zborra","site_detail_url":"https://comicvine.gamespot.com/zborra/4005-53775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53797/","id":53797,"name":"Queen Nehellenia","site_detail_url":"https://comicvine.gamespot.com/queen-nehellenia/4005-53797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53826/","id":53826,"name":"Liana","site_detail_url":"https://comicvine.gamespot.com/liana/4005-53826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53827/","id":53827,"name":"Anya Savenlovich","site_detail_url":"https://comicvine.gamespot.com/anya-savenlovich/4005-53827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53883/","id":53883,"name":"Tharg the Mighty","site_detail_url":"https://comicvine.gamespot.com/tharg-the-mighty/4005-53883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53915/","id":53915,"name":"Roblio Darte","site_detail_url":"https://comicvine.gamespot.com/roblio-darte/4005-53915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53967/","id":53967,"name":"Bee","site_detail_url":"https://comicvine.gamespot.com/bee/4005-53967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53978/","id":53978,"name":"AR-N-O-Q","site_detail_url":"https://comicvine.gamespot.com/ar-n-o-q/4005-53978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53985/","id":53985,"name":"Bedlam","site_detail_url":"https://comicvine.gamespot.com/bedlam/4005-53985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53990/","id":53990,"name":"Charqwep","site_detail_url":"https://comicvine.gamespot.com/charqwep/4005-53990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54022/","id":54022,"name":"Mangler","site_detail_url":"https://comicvine.gamespot.com/mangler/4005-54022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54049/","id":54049,"name":"KK","site_detail_url":"https://comicvine.gamespot.com/kk/4005-54049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54051/","id":54051,"name":"Connor","site_detail_url":"https://comicvine.gamespot.com/connor/4005-54051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54056/","id":54056,"name":"Sirkka","site_detail_url":"https://comicvine.gamespot.com/sirkka/4005-54056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54060/","id":54060,"name":"Primus","site_detail_url":"https://comicvine.gamespot.com/primus/4005-54060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54072/","id":54072,"name":"Darkrai","site_detail_url":"https://comicvine.gamespot.com/darkrai/4005-54072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54170/","id":54170,"name":"Ulluxy'l Kwan Tae Syn","site_detail_url":"https://comicvine.gamespot.com/ulluxyl-kwan-tae-syn/4005-54170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54174/","id":54174,"name":"Possessor","site_detail_url":"https://comicvine.gamespot.com/possessor/4005-54174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54211/","id":54211,"name":"Arkady","site_detail_url":"https://comicvine.gamespot.com/arkady/4005-54211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54246/","id":54246,"name":"Emmet Proudhawk","site_detail_url":"https://comicvine.gamespot.com/emmet-proudhawk/4005-54246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54293/","id":54293,"name":"Bogosar","site_detail_url":"https://comicvine.gamespot.com/bogosar/4005-54293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54299/","id":54299,"name":"Bruks","site_detail_url":"https://comicvine.gamespot.com/bruks/4005-54299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54303/","id":54303,"name":"Laham","site_detail_url":"https://comicvine.gamespot.com/laham/4005-54303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54320/","id":54320,"name":"Yalan Gur","site_detail_url":"https://comicvine.gamespot.com/yalan-gur/4005-54320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54321/","id":54321,"name":"Jong Li","site_detail_url":"https://comicvine.gamespot.com/jong-li/4005-54321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54350/","id":54350,"name":"Jirachi","site_detail_url":"https://comicvine.gamespot.com/jirachi/4005-54350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54351/","id":54351,"name":"Alicia Turner","site_detail_url":"https://comicvine.gamespot.com/alicia-turner/4005-54351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54362/","id":54362,"name":"Green Lantern of Cyc","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-cyc/4005-54362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54429/","id":54429,"name":"Eliska the Witch","site_detail_url":"https://comicvine.gamespot.com/eliska-the-witch/4005-54429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54486/","id":54486,"name":"Karl","site_detail_url":"https://comicvine.gamespot.com/karl/4005-54486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54492/","id":54492,"name":"Lobros","site_detail_url":"https://comicvine.gamespot.com/lobros/4005-54492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54507/","id":54507,"name":"Luke","site_detail_url":"https://comicvine.gamespot.com/luke/4005-54507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54538/","id":54538,"name":"Anuxa","site_detail_url":"https://comicvine.gamespot.com/anuxa/4005-54538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54544/","id":54544,"name":"Harrow","site_detail_url":"https://comicvine.gamespot.com/harrow/4005-54544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54713/","id":54713,"name":"Zen","site_detail_url":"https://comicvine.gamespot.com/zen/4005-54713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54772/","id":54772,"name":"Pammy","site_detail_url":"https://comicvine.gamespot.com/pammy/4005-54772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54783/","id":54783,"name":"Mirage","site_detail_url":"https://comicvine.gamespot.com/mirage/4005-54783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54787/","id":54787,"name":"Blue Streak (Swift)","site_detail_url":"https://comicvine.gamespot.com/blue-streak-swift/4005-54787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54810/","id":54810,"name":"Wolfie Smith","site_detail_url":"https://comicvine.gamespot.com/wolfie-smith/4005-54810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54821/","id":54821,"name":"Sanction","site_detail_url":"https://comicvine.gamespot.com/sanction/4005-54821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54862/","id":54862,"name":"No-Name","site_detail_url":"https://comicvine.gamespot.com/no-name/4005-54862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54865/","id":54865,"name":"Oliver Raven","site_detail_url":"https://comicvine.gamespot.com/oliver-raven/4005-54865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54878/","id":54878,"name":"Amazing Man","site_detail_url":"https://comicvine.gamespot.com/amazing-man/4005-54878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54973/","id":54973,"name":"Latios","site_detail_url":"https://comicvine.gamespot.com/latios/4005-54973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55054/","id":55054,"name":"Waverly Sayre","site_detail_url":"https://comicvine.gamespot.com/waverly-sayre/4005-55054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55057/","id":55057,"name":"Latias","site_detail_url":"https://comicvine.gamespot.com/latias/4005-55057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55059/","id":55059,"name":"Cresselia","site_detail_url":"https://comicvine.gamespot.com/cresselia/4005-55059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55071/","id":55071,"name":"Skull Man","site_detail_url":"https://comicvine.gamespot.com/skull-man/4005-55071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55162/","id":55162,"name":"Stakaðr","site_detail_url":"https://comicvine.gamespot.com/stakar/4005-55162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55167/","id":55167,"name":"Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/captain-marvel/4005-55167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55174/","id":55174,"name":"Telia","site_detail_url":"https://comicvine.gamespot.com/telia/4005-55174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55284/","id":55284,"name":"Ki-nilg","site_detail_url":"https://comicvine.gamespot.com/ki-nilg/4005-55284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55287/","id":55287,"name":"Xenofobe","site_detail_url":"https://comicvine.gamespot.com/xenofobe/4005-55287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55288/","id":55288,"name":"Artis Chep","site_detail_url":"https://comicvine.gamespot.com/artis-chep/4005-55288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55289/","id":55289,"name":"Yyk","site_detail_url":"https://comicvine.gamespot.com/yyk/4005-55289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55316/","id":55316,"name":"Insect Queen","site_detail_url":"https://comicvine.gamespot.com/insect-queen/4005-55316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55329/","id":55329,"name":"Mr X","site_detail_url":"https://comicvine.gamespot.com/mr-x/4005-55329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55335/","id":55335,"name":"Vicki Grant","site_detail_url":"https://comicvine.gamespot.com/vicki-grant/4005-55335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55395/","id":55395,"name":"Sqweeegg","site_detail_url":"https://comicvine.gamespot.com/sqweeegg/4005-55395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55396/","id":55396,"name":"Green Lanterns of Sector 3241","site_detail_url":"https://comicvine.gamespot.com/green-lanterns-of-sector-3241/4005-55396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55397/","id":55397,"name":"Ard Rennat","site_detail_url":"https://comicvine.gamespot.com/ard-rennat/4005-55397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55398/","id":55398,"name":"Green Lantern of Hykraius","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-hykraius/4005-55398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55448/","id":55448,"name":"Teridax","site_detail_url":"https://comicvine.gamespot.com/teridax/4005-55448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55450/","id":55450,"name":"Princess Nuala","site_detail_url":"https://comicvine.gamespot.com/princess-nuala/4005-55450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55451/","id":55451,"name":"Prince Nuada","site_detail_url":"https://comicvine.gamespot.com/prince-nuada/4005-55451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55461/","id":55461,"name":"Id","site_detail_url":"https://comicvine.gamespot.com/id/4005-55461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55567/","id":55567,"name":"Fay","site_detail_url":"https://comicvine.gamespot.com/fay/4005-55567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55581/","id":55581,"name":"Carolyn Smith","site_detail_url":"https://comicvine.gamespot.com/carolyn-smith/4005-55581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55664/","id":55664,"name":"Gog","site_detail_url":"https://comicvine.gamespot.com/gog/4005-55664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55725/","id":55725,"name":"Akane Nakiko","site_detail_url":"https://comicvine.gamespot.com/akane-nakiko/4005-55725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55740/","id":55740,"name":"Mindswipe","site_detail_url":"https://comicvine.gamespot.com/mindswipe/4005-55740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55761/","id":55761,"name":"Saya","site_detail_url":"https://comicvine.gamespot.com/saya/4005-55761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55806/","id":55806,"name":"Gwen Tennyson","site_detail_url":"https://comicvine.gamespot.com/gwen-tennyson/4005-55806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55816/","id":55816,"name":"Bolvar Fordragon","site_detail_url":"https://comicvine.gamespot.com/bolvar-fordragon/4005-55816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55845/","id":55845,"name":"Amenadiel","site_detail_url":"https://comicvine.gamespot.com/amenadiel/4005-55845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55862/","id":55862,"name":"Morphea","site_detail_url":"https://comicvine.gamespot.com/morphea/4005-55862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56029/","id":56029,"name":"Phobos","site_detail_url":"https://comicvine.gamespot.com/phobos/4005-56029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56060/","id":56060,"name":"Cedric","site_detail_url":"https://comicvine.gamespot.com/cedric/4005-56060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56104/","id":56104,"name":"Niles Cable","site_detail_url":"https://comicvine.gamespot.com/niles-cable/4005-56104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56106/","id":56106,"name":"Dial H.U.S.K.","site_detail_url":"https://comicvine.gamespot.com/dial-husk/4005-56106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56161/","id":56161,"name":"Beth","site_detail_url":"https://comicvine.gamespot.com/beth/4005-56161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56189/","id":56189,"name":"Betta George","site_detail_url":"https://comicvine.gamespot.com/betta-george/4005-56189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56198/","id":56198,"name":"De'Lila","site_detail_url":"https://comicvine.gamespot.com/delila/4005-56198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56255/","id":56255,"name":"Alfie O'Meagan","site_detail_url":"https://comicvine.gamespot.com/alfie-omeagan/4005-56255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56279/","id":56279,"name":"Jesus Christ","site_detail_url":"https://comicvine.gamespot.com/jesus-christ/4005-56279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56292/","id":56292,"name":"Caleb","site_detail_url":"https://comicvine.gamespot.com/caleb/4005-56292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56293/","id":56293,"name":"King Kai","site_detail_url":"https://comicvine.gamespot.com/king-kai/4005-56293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56308/","id":56308,"name":"Goblin Force","site_detail_url":"https://comicvine.gamespot.com/goblin-force/4005-56308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56314/","id":56314,"name":"Yua","site_detail_url":"https://comicvine.gamespot.com/yua/4005-56314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56320/","id":56320,"name":"Bastila Shan","site_detail_url":"https://comicvine.gamespot.com/bastila-shan/4005-56320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56440/","id":56440,"name":"Mara","site_detail_url":"https://comicvine.gamespot.com/mara/4005-56440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56445/","id":56445,"name":"Qabiri","site_detail_url":"https://comicvine.gamespot.com/qabiri/4005-56445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56475/","id":56475,"name":"Dass Jennir","site_detail_url":"https://comicvine.gamespot.com/dass-jennir/4005-56475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56518/","id":56518,"name":"Matris Ater Clementia","site_detail_url":"https://comicvine.gamespot.com/matris-ater-clementia/4005-56518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56522/","id":56522,"name":"Miss Sinister","site_detail_url":"https://comicvine.gamespot.com/miss-sinister/4005-56522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56533/","id":56533,"name":"Percival","site_detail_url":"https://comicvine.gamespot.com/percival/4005-56533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56567/","id":56567,"name":"Bloobert Cob","site_detail_url":"https://comicvine.gamespot.com/bloobert-cob/4005-56567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56573/","id":56573,"name":"Garudasana","site_detail_url":"https://comicvine.gamespot.com/garudasana/4005-56573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56574/","id":56574,"name":"Phantos","site_detail_url":"https://comicvine.gamespot.com/phantos/4005-56574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56575/","id":56575,"name":"Hive Brother","site_detail_url":"https://comicvine.gamespot.com/hive-brother/4005-56575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56576/","id":56576,"name":"Vin Beringei","site_detail_url":"https://comicvine.gamespot.com/vin-beringei/4005-56576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56578/","id":56578,"name":"Adam Archer","site_detail_url":"https://comicvine.gamespot.com/adam-archer/4005-56578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56588/","id":56588,"name":"Maxim","site_detail_url":"https://comicvine.gamespot.com/maxim/4005-56588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56592/","id":56592,"name":"Camazotz","site_detail_url":"https://comicvine.gamespot.com/camazotz/4005-56592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56601/","id":56601,"name":"Herupa Hando Hu","site_detail_url":"https://comicvine.gamespot.com/herupa-hando-hu/4005-56601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56602/","id":56602,"name":"Dawlakispokpok","site_detail_url":"https://comicvine.gamespot.com/dawlakispokpok/4005-56602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56608/","id":56608,"name":"Darthartheen","site_detail_url":"https://comicvine.gamespot.com/darthartheen/4005-56608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56609/","id":56609,"name":"Doranchatok","site_detail_url":"https://comicvine.gamespot.com/doranchatok/4005-56609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56693/","id":56693,"name":"Scar","site_detail_url":"https://comicvine.gamespot.com/scar/4005-56693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56694/","id":56694,"name":"Green Lantern of Sector 340","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-340/4005-56694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56750/","id":56750,"name":"Olivia Reynolds","site_detail_url":"https://comicvine.gamespot.com/olivia-reynolds/4005-56750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56753/","id":56753,"name":"Ator","site_detail_url":"https://comicvine.gamespot.com/ator/4005-56753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56760/","id":56760,"name":"Red Zone","site_detail_url":"https://comicvine.gamespot.com/red-zone/4005-56760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56802/","id":56802,"name":"Julius Akerman","site_detail_url":"https://comicvine.gamespot.com/julius-akerman/4005-56802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56843/","id":56843,"name":"Agen Kolar","site_detail_url":"https://comicvine.gamespot.com/agen-kolar/4005-56843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56857/","id":56857,"name":"Cay'an","site_detail_url":"https://comicvine.gamespot.com/cayan/4005-56857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56864/","id":56864,"name":"Till'all","site_detail_url":"https://comicvine.gamespot.com/tillall/4005-56864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56891/","id":56891,"name":"Zevonn Parzzx","site_detail_url":"https://comicvine.gamespot.com/zevonn-parzzx/4005-56891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56928/","id":56928,"name":"Dragon Of The Moon","site_detail_url":"https://comicvine.gamespot.com/dragon-of-the-moon/4005-56928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56930/","id":56930,"name":"Propaganda","site_detail_url":"https://comicvine.gamespot.com/propaganda/4005-56930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56946/","id":56946,"name":"Lapras","site_detail_url":"https://comicvine.gamespot.com/lapras/4005-56946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56957/","id":56957,"name":"Road","site_detail_url":"https://comicvine.gamespot.com/road/4005-56957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56993/","id":56993,"name":"Rori Dag","site_detail_url":"https://comicvine.gamespot.com/rori-dag/4005-56993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57083/","id":57083,"name":"Athena Voltaire","site_detail_url":"https://comicvine.gamespot.com/athena-voltaire/4005-57083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57099/","id":57099,"name":"Godstalker","site_detail_url":"https://comicvine.gamespot.com/godstalker/4005-57099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57100/","id":57100,"name":"Chi-Demon","site_detail_url":"https://comicvine.gamespot.com/chi-demon/4005-57100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57119/","id":57119,"name":"Ronhar Kim","site_detail_url":"https://comicvine.gamespot.com/ronhar-kim/4005-57119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57134/","id":57134,"name":"Wired","site_detail_url":"https://comicvine.gamespot.com/wired/4005-57134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57167/","id":57167,"name":"Nerissa","site_detail_url":"https://comicvine.gamespot.com/nerissa/4005-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57174/","id":57174,"name":"Fry'lu","site_detail_url":"https://comicvine.gamespot.com/frylu/4005-57174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57183/","id":57183,"name":"Halinor","site_detail_url":"https://comicvine.gamespot.com/halinor/4005-57183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57226/","id":57226,"name":"Ceyote","site_detail_url":"https://comicvine.gamespot.com/ceyote/4005-57226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57239/","id":57239,"name":"Aurelle","site_detail_url":"https://comicvine.gamespot.com/aurelle/4005-57239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57258/","id":57258,"name":"Cyrene","site_detail_url":"https://comicvine.gamespot.com/cyrene/4005-57258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57262/","id":57262,"name":"Martika","site_detail_url":"https://comicvine.gamespot.com/martika/4005-57262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57265/","id":57265,"name":"Phaedra","site_detail_url":"https://comicvine.gamespot.com/phaedra/4005-57265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57306/","id":57306,"name":"Aginar","site_detail_url":"https://comicvine.gamespot.com/aginar/4005-57306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57315/","id":57315,"name":"Numinus","site_detail_url":"https://comicvine.gamespot.com/numinus/4005-57315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57364/","id":57364,"name":"Horde Prime","site_detail_url":"https://comicvine.gamespot.com/horde-prime/4005-57364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57382/","id":57382,"name":"Imogen","site_detail_url":"https://comicvine.gamespot.com/imogen/4005-57382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57444/","id":57444,"name":"Neurotica","site_detail_url":"https://comicvine.gamespot.com/neurotica/4005-57444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57446/","id":57446,"name":"Retcon","site_detail_url":"https://comicvine.gamespot.com/retcon/4005-57446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57490/","id":57490,"name":"Scathan the Approver","site_detail_url":"https://comicvine.gamespot.com/scathan-the-approver/4005-57490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57713/","id":57713,"name":"Natalie X","site_detail_url":"https://comicvine.gamespot.com/natalie-x/4005-57713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57803/","id":57803,"name":"Crito","site_detail_url":"https://comicvine.gamespot.com/crito/4005-57803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57851/","id":57851,"name":"Saber","site_detail_url":"https://comicvine.gamespot.com/saber/4005-57851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57876/","id":57876,"name":"Xiaan Amersu","site_detail_url":"https://comicvine.gamespot.com/xiaan-amersu/4005-57876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57877/","id":57877,"name":"Ryoko Hakubi","site_detail_url":"https://comicvine.gamespot.com/ryoko-hakubi/4005-57877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57907/","id":57907,"name":"K'Kruhk","site_detail_url":"https://comicvine.gamespot.com/kkruhk/4005-57907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57913/","id":57913,"name":"Miri Riam","site_detail_url":"https://comicvine.gamespot.com/miri-riam/4005-57913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57929/","id":57929,"name":"Dela Pharon","site_detail_url":"https://comicvine.gamespot.com/dela-pharon/4005-57929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57930/","id":57930,"name":"Sian Jeisel","site_detail_url":"https://comicvine.gamespot.com/sian-jeisel/4005-57930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57955/","id":57955,"name":"Void","site_detail_url":"https://comicvine.gamespot.com/void/4005-57955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57996/","id":57996,"name":"Thotan","site_detail_url":"https://comicvine.gamespot.com/thotan/4005-57996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58043/","id":58043,"name":"Darklove","site_detail_url":"https://comicvine.gamespot.com/darklove/4005-58043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58113/","id":58113,"name":"Khatylis","site_detail_url":"https://comicvine.gamespot.com/khatylis/4005-58113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58222/","id":58222,"name":"Dark Nebula","site_detail_url":"https://comicvine.gamespot.com/dark-nebula/4005-58222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58242/","id":58242,"name":"Nail","site_detail_url":"https://comicvine.gamespot.com/nail/4005-58242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58250/","id":58250,"name":"God of the Dead","site_detail_url":"https://comicvine.gamespot.com/god-of-the-dead/4005-58250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58253/","id":58253,"name":"Eloise","site_detail_url":"https://comicvine.gamespot.com/eloise/4005-58253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58326/","id":58326,"name":"Arthur Petrelli","site_detail_url":"https://comicvine.gamespot.com/arthur-petrelli/4005-58326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58327/","id":58327,"name":"Swami Rihva","site_detail_url":"https://comicvine.gamespot.com/swami-rihva/4005-58327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58338/","id":58338,"name":"Millions Knives","site_detail_url":"https://comicvine.gamespot.com/millions-knives/4005-58338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58363/","id":58363,"name":"Project 2501","site_detail_url":"https://comicvine.gamespot.com/project-2501/4005-58363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58372/","id":58372,"name":"Pristine","site_detail_url":"https://comicvine.gamespot.com/pristine/4005-58372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58448/","id":58448,"name":"Queen of Blades","site_detail_url":"https://comicvine.gamespot.com/queen-of-blades/4005-58448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58452/","id":58452,"name":"Green Lantern of Sector 1067","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-1067/4005-58452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58460/","id":58460,"name":"Glacius","site_detail_url":"https://comicvine.gamespot.com/glacius/4005-58460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58461/","id":58461,"name":"Nhoj Sappal","site_detail_url":"https://comicvine.gamespot.com/nhoj-sappal/4005-58461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58462/","id":58462,"name":"Airam Sappal","site_detail_url":"https://comicvine.gamespot.com/airam-sappal/4005-58462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58466/","id":58466,"name":"Green Lantern of Durla","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-durla/4005-58466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58467/","id":58467,"name":"Galte-Re","site_detail_url":"https://comicvine.gamespot.com/galte-re/4005-58467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58486/","id":58486,"name":"Gion","site_detail_url":"https://comicvine.gamespot.com/gion/4005-58486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58487/","id":58487,"name":"Green Lantern of Sector 2020","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-2020/4005-58487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58488/","id":58488,"name":"Nosa'elg","site_detail_url":"https://comicvine.gamespot.com/nosaelg/4005-58488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58521/","id":58521,"name":"Kkrudd","site_detail_url":"https://comicvine.gamespot.com/kkrudd/4005-58521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58522/","id":58522,"name":"Prohl Gosgotha","site_detail_url":"https://comicvine.gamespot.com/prohl-gosgotha/4005-58522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58526/","id":58526,"name":"Kellra Tuskin","site_detail_url":"https://comicvine.gamespot.com/kellra-tuskin/4005-58526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58543/","id":58543,"name":"Daydreamer","site_detail_url":"https://comicvine.gamespot.com/daydreamer/4005-58543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58546/","id":58546,"name":"Orlan","site_detail_url":"https://comicvine.gamespot.com/orlan/4005-58546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58558/","id":58558,"name":"Medivh","site_detail_url":"https://comicvine.gamespot.com/medivh/4005-58558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58610/","id":58610,"name":"Boogieman","site_detail_url":"https://comicvine.gamespot.com/boogieman/4005-58610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58615/","id":58615,"name":"Ard'Ran","site_detail_url":"https://comicvine.gamespot.com/ardran/4005-58615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58640/","id":58640,"name":"Green Lanterns of Progress","site_detail_url":"https://comicvine.gamespot.com/green-lanterns-of-progress/4005-58640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58708/","id":58708,"name":"Kol Skywalker","site_detail_url":"https://comicvine.gamespot.com/kol-skywalker/4005-58708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58826/","id":58826,"name":"Time Traveler","site_detail_url":"https://comicvine.gamespot.com/time-traveler/4005-58826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58836/","id":58836,"name":"Sensor","site_detail_url":"https://comicvine.gamespot.com/sensor/4005-58836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58838/","id":58838,"name":"Sinistron","site_detail_url":"https://comicvine.gamespot.com/sinistron/4005-58838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58868/","id":58868,"name":"Green Lantern of Sector 3009","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-3009/4005-58868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58869/","id":58869,"name":"Green Lantern of Sector 24","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-24/4005-58869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58870/","id":58870,"name":"Green Lantern of Sector 42","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-42/4005-58870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58873/","id":58873,"name":"Krallian Green Lantern","site_detail_url":"https://comicvine.gamespot.com/krallian-green-lantern/4005-58873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58876/","id":58876,"name":"Kokoro","site_detail_url":"https://comicvine.gamespot.com/kokoro/4005-58876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58886/","id":58886,"name":"Steppe","site_detail_url":"https://comicvine.gamespot.com/steppe/4005-58886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58887/","id":58887,"name":"Rak Arranya","site_detail_url":"https://comicvine.gamespot.com/rak-arranya/4005-58887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58888/","id":58888,"name":"Reever","site_detail_url":"https://comicvine.gamespot.com/reever/4005-58888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58905/","id":58905,"name":"H'ronmeer","site_detail_url":"https://comicvine.gamespot.com/hronmeer/4005-58905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58955/","id":58955,"name":"Tangerine","site_detail_url":"https://comicvine.gamespot.com/tangerine/4005-58955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58996/","id":58996,"name":"Bynari","site_detail_url":"https://comicvine.gamespot.com/bynari/4005-58996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59050/","id":59050,"name":"Little Washu","site_detail_url":"https://comicvine.gamespot.com/little-washu/4005-59050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59053/","id":59053,"name":"Bel Juz","site_detail_url":"https://comicvine.gamespot.com/bel-juz/4005-59053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59105/","id":59105,"name":"Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/blue-celestial/4005-59105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59173/","id":59173,"name":"Devilman","site_detail_url":"https://comicvine.gamespot.com/devilman/4005-59173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59182/","id":59182,"name":"Duncan Corley","site_detail_url":"https://comicvine.gamespot.com/duncan-corley/4005-59182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59243/","id":59243,"name":"Skull Cowboy","site_detail_url":"https://comicvine.gamespot.com/skull-cowboy/4005-59243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59244/","id":59244,"name":"Petra","site_detail_url":"https://comicvine.gamespot.com/petra/4005-59244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59255/","id":59255,"name":"Rowina","site_detail_url":"https://comicvine.gamespot.com/rowina/4005-59255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59299/","id":59299,"name":"M'Gubgub","site_detail_url":"https://comicvine.gamespot.com/mgubgub/4005-59299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59337/","id":59337,"name":"Ea the Wise","site_detail_url":"https://comicvine.gamespot.com/ea-the-wise/4005-59337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59362/","id":59362,"name":"Green Lantern of Sector 885","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-sector-885/4005-59362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59369/","id":59369,"name":"David Richards","site_detail_url":"https://comicvine.gamespot.com/david-richards/4005-59369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59371/","id":59371,"name":"The Red-Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/the-red-blue-celestial/4005-59371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59372/","id":59372,"name":"The Alien Entity","site_detail_url":"https://comicvine.gamespot.com/the-alien-entity/4005-59372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59373/","id":59373,"name":"Anthropomorpho","site_detail_url":"https://comicvine.gamespot.com/anthropomorpho/4005-59373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59374/","id":59374,"name":"Green Lanterns: Saviors of the Planet Veltre","site_detail_url":"https://comicvine.gamespot.com/green-lanterns-saviors-of-the-planet-veltre/4005-59374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59388/","id":59388,"name":"Grace Destine","site_detail_url":"https://comicvine.gamespot.com/grace-destine/4005-59388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59390/","id":59390,"name":"Kraken","site_detail_url":"https://comicvine.gamespot.com/kraken/4005-59390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59391/","id":59391,"name":"Xax II","site_detail_url":"https://comicvine.gamespot.com/xax-ii/4005-59391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59400/","id":59400,"name":"Njord","site_detail_url":"https://comicvine.gamespot.com/njord/4005-59400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59422/","id":59422,"name":"Hfuhruhurr","site_detail_url":"https://comicvine.gamespot.com/hfuhruhurr/4005-59422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59425/","id":59425,"name":"Otmu","site_detail_url":"https://comicvine.gamespot.com/otmu/4005-59425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59435/","id":59435,"name":"The Unknown Lantern","site_detail_url":"https://comicvine.gamespot.com/the-unknown-lantern/4005-59435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59447/","id":59447,"name":"Tahiri Veila","site_detail_url":"https://comicvine.gamespot.com/tahiri-veila/4005-59447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59459/","id":59459,"name":"Galacta","site_detail_url":"https://comicvine.gamespot.com/galacta/4005-59459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59516/","id":59516,"name":"Windo Nend","site_detail_url":"https://comicvine.gamespot.com/windo-nend/4005-59516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59524/","id":59524,"name":"Caregiver","site_detail_url":"https://comicvine.gamespot.com/caregiver/4005-59524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59525/","id":59525,"name":"Explorer","site_detail_url":"https://comicvine.gamespot.com/explorer/4005-59525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59587/","id":59587,"name":"Miraclewoman","site_detail_url":"https://comicvine.gamespot.com/miraclewoman/4005-59587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59597/","id":59597,"name":"Shan O'Meara","site_detail_url":"https://comicvine.gamespot.com/shan-omeara/4005-59597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59617/","id":59617,"name":"Gabriel Vargas","site_detail_url":"https://comicvine.gamespot.com/gabriel-vargas/4005-59617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59742/","id":59742,"name":"Ermac","site_detail_url":"https://comicvine.gamespot.com/ermac/4005-59742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59810/","id":59810,"name":"Jonas","site_detail_url":"https://comicvine.gamespot.com/jonas/4005-59810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59828/","id":59828,"name":"Lightstorm","site_detail_url":"https://comicvine.gamespot.com/lightstorm/4005-59828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59894/","id":59894,"name":"Universe Boy","site_detail_url":"https://comicvine.gamespot.com/universe-boy/4005-59894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59930/","id":59930,"name":"Redwing","site_detail_url":"https://comicvine.gamespot.com/redwing/4005-59930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59941/","id":59941,"name":"Treis Sinde","site_detail_url":"https://comicvine.gamespot.com/treis-sinde/4005-59941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59972/","id":59972,"name":"Merlin Jones","site_detail_url":"https://comicvine.gamespot.com/merlin-jones/4005-59972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59984/","id":59984,"name":"Karness Muur","site_detail_url":"https://comicvine.gamespot.com/karness-muur/4005-59984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60019/","id":60019,"name":"Holocaust","site_detail_url":"https://comicvine.gamespot.com/holocaust/4005-60019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60022/","id":60022,"name":"Ryan","site_detail_url":"https://comicvine.gamespot.com/ryan/4005-60022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60115/","id":60115,"name":"Night Spectre","site_detail_url":"https://comicvine.gamespot.com/night-spectre/4005-60115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60233/","id":60233,"name":"Oa the Living Planet","site_detail_url":"https://comicvine.gamespot.com/oa-the-living-planet/4005-60233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60261/","id":60261,"name":"Egma","site_detail_url":"https://comicvine.gamespot.com/egma/4005-60261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60269/","id":60269,"name":"Enigma","site_detail_url":"https://comicvine.gamespot.com/enigma/4005-60269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60345/","id":60345,"name":"Omerta","site_detail_url":"https://comicvine.gamespot.com/omerta/4005-60345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60373/","id":60373,"name":"Xraven","site_detail_url":"https://comicvine.gamespot.com/xraven/4005-60373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60482/","id":60482,"name":"Turulla","site_detail_url":"https://comicvine.gamespot.com/turulla/4005-60482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60484/","id":60484,"name":"Touchstone","site_detail_url":"https://comicvine.gamespot.com/touchstone/4005-60484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60516/","id":60516,"name":"Kuragari","site_detail_url":"https://comicvine.gamespot.com/kuragari/4005-60516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60537/","id":60537,"name":"Crush","site_detail_url":"https://comicvine.gamespot.com/crush/4005-60537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60549/","id":60549,"name":"Teyla","site_detail_url":"https://comicvine.gamespot.com/teyla/4005-60549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60589/","id":60589,"name":"Nepenthe","site_detail_url":"https://comicvine.gamespot.com/nepenthe/4005-60589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60653/","id":60653,"name":"Gunthar the Rigellian","site_detail_url":"https://comicvine.gamespot.com/gunthar-the-rigellian/4005-60653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60752/","id":60752,"name":"Gravedigger","site_detail_url":"https://comicvine.gamespot.com/gravedigger/4005-60752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60755/","id":60755,"name":"The Fulcrum","site_detail_url":"https://comicvine.gamespot.com/the-fulcrum/4005-60755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60894/","id":60894,"name":"Queen Merla","site_detail_url":"https://comicvine.gamespot.com/queen-merla/4005-60894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60939/","id":60939,"name":"The Master","site_detail_url":"https://comicvine.gamespot.com/the-master/4005-60939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60993/","id":60993,"name":"Plutonian","site_detail_url":"https://comicvine.gamespot.com/plutonian/4005-60993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60998/","id":60998,"name":"Ilia","site_detail_url":"https://comicvine.gamespot.com/ilia/4005-60998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61005/","id":61005,"name":"Zigra","site_detail_url":"https://comicvine.gamespot.com/zigra/4005-61005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61006/","id":61006,"name":"Viras","site_detail_url":"https://comicvine.gamespot.com/viras/4005-61006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61014/","id":61014,"name":"The Great Evil Beast","site_detail_url":"https://comicvine.gamespot.com/the-great-evil-beast/4005-61014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61015/","id":61015,"name":"Lars of Mars","site_detail_url":"https://comicvine.gamespot.com/lars-of-mars/4005-61015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61078/","id":61078,"name":"Ripperman","site_detail_url":"https://comicvine.gamespot.com/ripperman/4005-61078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61114/","id":61114,"name":"T'Pring","site_detail_url":"https://comicvine.gamespot.com/tpring/4005-61114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61121/","id":61121,"name":"Captain Newfoundland","site_detail_url":"https://comicvine.gamespot.com/captain-newfoundland/4005-61121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61144/","id":61144,"name":"Kaliman","site_detail_url":"https://comicvine.gamespot.com/kaliman/4005-61144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61314/","id":61314,"name":"Korgo","site_detail_url":"https://comicvine.gamespot.com/korgo/4005-61314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61339/","id":61339,"name":"Cranius","site_detail_url":"https://comicvine.gamespot.com/cranius/4005-61339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61453/","id":61453,"name":"Mystelor","site_detail_url":"https://comicvine.gamespot.com/mystelor/4005-61453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61483/","id":61483,"name":"Crackpot","site_detail_url":"https://comicvine.gamespot.com/crackpot/4005-61483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61506/","id":61506,"name":"St'nlli","site_detail_url":"https://comicvine.gamespot.com/stnlli/4005-61506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61520/","id":61520,"name":"Doctor Zero","site_detail_url":"https://comicvine.gamespot.com/doctor-zero/4005-61520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61531/","id":61531,"name":"Lasher","site_detail_url":"https://comicvine.gamespot.com/lasher/4005-61531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61571/","id":61571,"name":"Miss Bloss","site_detail_url":"https://comicvine.gamespot.com/miss-bloss/4005-61571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61572/","id":61572,"name":"The Lost Sapphire","site_detail_url":"https://comicvine.gamespot.com/the-lost-sapphire/4005-61572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61574/","id":61574,"name":"Race","site_detail_url":"https://comicvine.gamespot.com/race/4005-61574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61588/","id":61588,"name":"Dabura","site_detail_url":"https://comicvine.gamespot.com/dabura/4005-61588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61593/","id":61593,"name":"Pan","site_detail_url":"https://comicvine.gamespot.com/pan/4005-61593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61661/","id":61661,"name":"Alakazam","site_detail_url":"https://comicvine.gamespot.com/alakazam/4005-61661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61664/","id":61664,"name":"Radar","site_detail_url":"https://comicvine.gamespot.com/radar/4005-61664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61755/","id":61755,"name":"King Piccolo","site_detail_url":"https://comicvine.gamespot.com/king-piccolo/4005-61755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61766/","id":61766,"name":"Fangu","site_detail_url":"https://comicvine.gamespot.com/fangu/4005-61766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61780/","id":61780,"name":"Klee Pan","site_detail_url":"https://comicvine.gamespot.com/klee-pan/4005-61780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61821/","id":61821,"name":"Korin","site_detail_url":"https://comicvine.gamespot.com/korin/4005-61821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61924/","id":61924,"name":"Alluro","site_detail_url":"https://comicvine.gamespot.com/alluro/4005-61924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61927/","id":61927,"name":"Rose","site_detail_url":"https://comicvine.gamespot.com/rose/4005-61927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61928/","id":61928,"name":"Nero","site_detail_url":"https://comicvine.gamespot.com/nero/4005-61928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61936/","id":61936,"name":"Meru","site_detail_url":"https://comicvine.gamespot.com/meru/4005-61936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61952/","id":61952,"name":"Mermista","site_detail_url":"https://comicvine.gamespot.com/mermista/4005-61952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62012/","id":62012,"name":"Megan Summers","site_detail_url":"https://comicvine.gamespot.com/megan-summers/4005-62012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62018/","id":62018,"name":"Egghead","site_detail_url":"https://comicvine.gamespot.com/egghead/4005-62018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62025/","id":62025,"name":"Skwaul","site_detail_url":"https://comicvine.gamespot.com/skwaul/4005-62025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62082/","id":62082,"name":"Future Man","site_detail_url":"https://comicvine.gamespot.com/future-man/4005-62082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62127/","id":62127,"name":"Mary Margaret","site_detail_url":"https://comicvine.gamespot.com/mary-margaret/4005-62127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62133/","id":62133,"name":"Mai, The Psychic Girl","site_detail_url":"https://comicvine.gamespot.com/mai-the-psychic-girl/4005-62133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62207/","id":62207,"name":"Guardian 7","site_detail_url":"https://comicvine.gamespot.com/guardian-7/4005-62207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62225/","id":62225,"name":"S'Met'Kth","site_detail_url":"https://comicvine.gamespot.com/smetkth/4005-62225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62352/","id":62352,"name":"Garek","site_detail_url":"https://comicvine.gamespot.com/garek/4005-62352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62439/","id":62439,"name":"Simon Magus","site_detail_url":"https://comicvine.gamespot.com/simon-magus/4005-62439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62459/","id":62459,"name":"Psi-Girl","site_detail_url":"https://comicvine.gamespot.com/psi-girl/4005-62459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62471/","id":62471,"name":"Phoenetix","site_detail_url":"https://comicvine.gamespot.com/phoenetix/4005-62471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62530/","id":62530,"name":"Drxla","site_detail_url":"https://comicvine.gamespot.com/drxla/4005-62530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62624/","id":62624,"name":"Beetlejuice","site_detail_url":"https://comicvine.gamespot.com/beetlejuice/4005-62624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62684/","id":62684,"name":"Bitterhorn","site_detail_url":"https://comicvine.gamespot.com/bitterhorn/4005-62684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62695/","id":62695,"name":"Turpa","site_detail_url":"https://comicvine.gamespot.com/turpa/4005-62695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62696/","id":62696,"name":"Blooch","site_detail_url":"https://comicvine.gamespot.com/blooch/4005-62696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62778/","id":62778,"name":"Orange Lantern of Sector 3001","site_detail_url":"https://comicvine.gamespot.com/orange-lantern-of-sector-3001/4005-62778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62922/","id":62922,"name":"Monolith Gatherer","site_detail_url":"https://comicvine.gamespot.com/monolith-gatherer/4005-62922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62930/","id":62930,"name":"Nagraj","site_detail_url":"https://comicvine.gamespot.com/nagraj/4005-62930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62933/","id":62933,"name":"Madam Satan","site_detail_url":"https://comicvine.gamespot.com/madam-satan/4005-62933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62934/","id":62934,"name":"Professor Mistyk","site_detail_url":"https://comicvine.gamespot.com/professor-mistyk/4005-62934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63088/","id":63088,"name":"Goenitz","site_detail_url":"https://comicvine.gamespot.com/goenitz/4005-63088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63130/","id":63130,"name":"Aquaduck","site_detail_url":"https://comicvine.gamespot.com/aquaduck/4005-63130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63263/","id":63263,"name":"Zhaan","site_detail_url":"https://comicvine.gamespot.com/zhaan/4005-63263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63407/","id":63407,"name":"Pussy Katnip","site_detail_url":"https://comicvine.gamespot.com/pussy-katnip/4005-63407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63421/","id":63421,"name":"James","site_detail_url":"https://comicvine.gamespot.com/james/4005-63421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63424/","id":63424,"name":"Sise-Neg","site_detail_url":"https://comicvine.gamespot.com/sise-neg/4005-63424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63637/","id":63637,"name":"Jackie Hawksmoor","site_detail_url":"https://comicvine.gamespot.com/jackie-hawksmoor/4005-63637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63683/","id":63683,"name":"Hawk","site_detail_url":"https://comicvine.gamespot.com/hawk/4005-63683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63684/","id":63684,"name":"Canara","site_detail_url":"https://comicvine.gamespot.com/canara/4005-63684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63711/","id":63711,"name":"Arhiman","site_detail_url":"https://comicvine.gamespot.com/arhiman/4005-63711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63814/","id":63814,"name":"Acba","site_detail_url":"https://comicvine.gamespot.com/acba/4005-63814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63815/","id":63815,"name":"Atul","site_detail_url":"https://comicvine.gamespot.com/atul/4005-63815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63816/","id":63816,"name":"Edda","site_detail_url":"https://comicvine.gamespot.com/edda/4005-63816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63818/","id":63818,"name":"Engu","site_detail_url":"https://comicvine.gamespot.com/engu/4005-63818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63819/","id":63819,"name":"He Who Summons","site_detail_url":"https://comicvine.gamespot.com/he-who-summons/4005-63819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63820/","id":63820,"name":"Ingu","site_detail_url":"https://comicvine.gamespot.com/ingu/4005-63820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63821/","id":63821,"name":"Ocam","site_detail_url":"https://comicvine.gamespot.com/ocam/4005-63821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63822/","id":63822,"name":"Ualu","site_detail_url":"https://comicvine.gamespot.com/ualu/4005-63822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63823/","id":63823,"name":"Uilig","site_detail_url":"https://comicvine.gamespot.com/uilig/4005-63823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63848/","id":63848,"name":"Sazu","site_detail_url":"https://comicvine.gamespot.com/sazu/4005-63848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63899/","id":63899,"name":"Synaptic Kid","site_detail_url":"https://comicvine.gamespot.com/synaptic-kid/4005-63899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63956/","id":63956,"name":"Lumiya","site_detail_url":"https://comicvine.gamespot.com/lumiya/4005-63956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64006/","id":64006,"name":"Ssssk","site_detail_url":"https://comicvine.gamespot.com/ssssk/4005-64006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64026/","id":64026,"name":"Kharys","site_detail_url":"https://comicvine.gamespot.com/kharys/4005-64026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64044/","id":64044,"name":"Ermey","site_detail_url":"https://comicvine.gamespot.com/ermey/4005-64044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64056/","id":64056,"name":"Santara Rrab","site_detail_url":"https://comicvine.gamespot.com/santara-rrab/4005-64056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64057/","id":64057,"name":"Marata Rrab","site_detail_url":"https://comicvine.gamespot.com/marata-rrab/4005-64057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64063/","id":64063,"name":"Alexi Garyn","site_detail_url":"https://comicvine.gamespot.com/alexi-garyn/4005-64063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64073/","id":64073,"name":"Tap-Nar-Pal","site_detail_url":"https://comicvine.gamespot.com/tap-nar-pal/4005-64073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64078/","id":64078,"name":"Nomi Sunrider","site_detail_url":"https://comicvine.gamespot.com/nomi-sunrider/4005-64078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64177/","id":64177,"name":"Bhat Jul","site_detail_url":"https://comicvine.gamespot.com/bhat-jul/4005-64177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64186/","id":64186,"name":"Tenel Ka Djo","site_detail_url":"https://comicvine.gamespot.com/tenel-ka-djo/4005-64186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64187/","id":64187,"name":"Zekk","site_detail_url":"https://comicvine.gamespot.com/zekk/4005-64187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64198/","id":64198,"name":"Kai Hudorra","site_detail_url":"https://comicvine.gamespot.com/kai-hudorra/4005-64198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64215/","id":64215,"name":"Vartu","site_detail_url":"https://comicvine.gamespot.com/vartu/4005-64215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64225/","id":64225,"name":"Skooka","site_detail_url":"https://comicvine.gamespot.com/skooka/4005-64225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64262/","id":64262,"name":"Dace Diath","site_detail_url":"https://comicvine.gamespot.com/dace-diath/4005-64262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64265/","id":64265,"name":"Shoaneb Culu","site_detail_url":"https://comicvine.gamespot.com/shoaneb-culu/4005-64265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64269/","id":64269,"name":"Ood Bnar","site_detail_url":"https://comicvine.gamespot.com/ood-bnar/4005-64269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64277/","id":64277,"name":"Dannik Jerriko","site_detail_url":"https://comicvine.gamespot.com/dannik-jerriko/4005-64277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64284/","id":64284,"name":"Dodrio","site_detail_url":"https://comicvine.gamespot.com/dodrio/4005-64284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64331/","id":64331,"name":"Kossex","site_detail_url":"https://comicvine.gamespot.com/kossex/4005-64331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64336/","id":64336,"name":"Salje Tasha","site_detail_url":"https://comicvine.gamespot.com/salje-tasha/4005-64336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64376/","id":64376,"name":"Sardoth","site_detail_url":"https://comicvine.gamespot.com/sardoth/4005-64376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64399/","id":64399,"name":"Tili Qua","site_detail_url":"https://comicvine.gamespot.com/tili-qua/4005-64399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64409/","id":64409,"name":"Toki Tollivar","site_detail_url":"https://comicvine.gamespot.com/toki-tollivar/4005-64409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64411/","id":64411,"name":"Jon Antilles","site_detail_url":"https://comicvine.gamespot.com/jon-antilles/4005-64411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64412/","id":64412,"name":"Nico Diath","site_detail_url":"https://comicvine.gamespot.com/nico-diath/4005-64412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64413/","id":64413,"name":"Knol Ven'nari","site_detail_url":"https://comicvine.gamespot.com/knol-vennari/4005-64413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64420/","id":64420,"name":"Angel","site_detail_url":"https://comicvine.gamespot.com/angel/4005-64420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64433/","id":64433,"name":"Rahuhl","site_detail_url":"https://comicvine.gamespot.com/rahuhl/4005-64433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64434/","id":64434,"name":"Marruc","site_detail_url":"https://comicvine.gamespot.com/marruc/4005-64434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64440/","id":64440,"name":"J'Mikel","site_detail_url":"https://comicvine.gamespot.com/jmikel/4005-64440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64441/","id":64441,"name":"Peerce","site_detail_url":"https://comicvine.gamespot.com/peerce/4005-64441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64447/","id":64447,"name":"Chase Piru","site_detail_url":"https://comicvine.gamespot.com/chase-piru/4005-64447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64448/","id":64448,"name":"Du Mahn","site_detail_url":"https://comicvine.gamespot.com/du-mahn/4005-64448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64457/","id":64457,"name":"Green Lantern: Circa 2029","site_detail_url":"https://comicvine.gamespot.com/green-lantern-circa-2029/4005-64457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64508/","id":64508,"name":"Shon Kon Ray","site_detail_url":"https://comicvine.gamespot.com/shon-kon-ray/4005-64508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64512/","id":64512,"name":"Lirondo","site_detail_url":"https://comicvine.gamespot.com/lirondo/4005-64512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64513/","id":64513,"name":"Valenthyne Farfalla","site_detail_url":"https://comicvine.gamespot.com/valenthyne-farfalla/4005-64513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64514/","id":64514,"name":"Darth Zannah","site_detail_url":"https://comicvine.gamespot.com/darth-zannah/4005-64514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64515/","id":64515,"name":"Kopecz","site_detail_url":"https://comicvine.gamespot.com/kopecz/4005-64515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64559/","id":64559,"name":"Tobias Sun","site_detail_url":"https://comicvine.gamespot.com/tobias-sun/4005-64559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64584/","id":64584,"name":"Kam Solusar","site_detail_url":"https://comicvine.gamespot.com/kam-solusar/4005-64584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64588/","id":64588,"name":"Executor Sedriss","site_detail_url":"https://comicvine.gamespot.com/executor-sedriss/4005-64588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64678/","id":64678,"name":"Oss Wilum","site_detail_url":"https://comicvine.gamespot.com/oss-wilum/4005-64678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64681/","id":64681,"name":"Tott Doneeta","site_detail_url":"https://comicvine.gamespot.com/tott-doneeta/4005-64681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64691/","id":64691,"name":"Mighella","site_detail_url":"https://comicvine.gamespot.com/mighella/4005-64691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64703/","id":64703,"name":"Sha Dun","site_detail_url":"https://comicvine.gamespot.com/sha-dun/4005-64703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64758/","id":64758,"name":"Ky Narec","site_detail_url":"https://comicvine.gamespot.com/ky-narec/4005-64758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64854/","id":64854,"name":"Scrier","site_detail_url":"https://comicvine.gamespot.com/scrier/4005-64854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64901/","id":64901,"name":"Exo-Mind","site_detail_url":"https://comicvine.gamespot.com/exo-mind/4005-64901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64957/","id":64957,"name":"Sama-D","site_detail_url":"https://comicvine.gamespot.com/sama-d/4005-64957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64959/","id":64959,"name":"Brahmanes","site_detail_url":"https://comicvine.gamespot.com/brahmanes/4005-64959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65010/","id":65010,"name":"Faze","site_detail_url":"https://comicvine.gamespot.com/faze/4005-65010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65018/","id":65018,"name":"Elder Kai","site_detail_url":"https://comicvine.gamespot.com/elder-kai/4005-65018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65036/","id":65036,"name":"Mefisto","site_detail_url":"https://comicvine.gamespot.com/mefisto/4005-65036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65059/","id":65059,"name":"Agent Honeydew","site_detail_url":"https://comicvine.gamespot.com/agent-honeydew/4005-65059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65122/","id":65122,"name":"Dominator","site_detail_url":"https://comicvine.gamespot.com/dominator/4005-65122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65161/","id":65161,"name":"Jen","site_detail_url":"https://comicvine.gamespot.com/jen/4005-65161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65162/","id":65162,"name":"Kira","site_detail_url":"https://comicvine.gamespot.com/kira/4005-65162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65176/","id":65176,"name":"Lady Jessica","site_detail_url":"https://comicvine.gamespot.com/lady-jessica/4005-65176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65178/","id":65178,"name":"Muad'Dib","site_detail_url":"https://comicvine.gamespot.com/muaddib/4005-65178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65182/","id":65182,"name":"Saint Alia of the Knife","site_detail_url":"https://comicvine.gamespot.com/saint-alia-of-the-knife/4005-65182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65186/","id":65186,"name":"Dracula","site_detail_url":"https://comicvine.gamespot.com/dracula/4005-65186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65187/","id":65187,"name":"Membrain","site_detail_url":"https://comicvine.gamespot.com/membrain/4005-65187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65200/","id":65200,"name":"Atlanna","site_detail_url":"https://comicvine.gamespot.com/atlanna/4005-65200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65211/","id":65211,"name":"Aqua-Melvin","site_detail_url":"https://comicvine.gamespot.com/aqua-melvin/4005-65211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65256/","id":65256,"name":"Brain Bug","site_detail_url":"https://comicvine.gamespot.com/brain-bug/4005-65256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65335/","id":65335,"name":"Zook","site_detail_url":"https://comicvine.gamespot.com/zook/4005-65335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65341/","id":65341,"name":"Creature King","site_detail_url":"https://comicvine.gamespot.com/creature-king/4005-65341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65382/","id":65382,"name":"Sea-Boy","site_detail_url":"https://comicvine.gamespot.com/sea-boy/4005-65382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65390/","id":65390,"name":"Acheron","site_detail_url":"https://comicvine.gamespot.com/acheron/4005-65390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65418/","id":65418,"name":"Reverend Mother Gaius Helen Mohiam","site_detail_url":"https://comicvine.gamespot.com/reverend-mother-gaius-helen-mohiam/4005-65418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65420/","id":65420,"name":"Pomoxis","site_detail_url":"https://comicvine.gamespot.com/pomoxis/4005-65420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65426/","id":65426,"name":"Stamar","site_detail_url":"https://comicvine.gamespot.com/stamar/4005-65426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65490/","id":65490,"name":"Oceanus","site_detail_url":"https://comicvine.gamespot.com/oceanus/4005-65490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65491/","id":65491,"name":"Tumol","site_detail_url":"https://comicvine.gamespot.com/tumol/4005-65491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65495/","id":65495,"name":"Star Sapphire of Sector 3454","site_detail_url":"https://comicvine.gamespot.com/star-sapphire-of-sector-3454/4005-65495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65496/","id":65496,"name":"Kaltor","site_detail_url":"https://comicvine.gamespot.com/kaltor/4005-65496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65497/","id":65497,"name":"Starene","site_detail_url":"https://comicvine.gamespot.com/starene/4005-65497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65498/","id":65498,"name":"Emissary to Space Sector 3399","site_detail_url":"https://comicvine.gamespot.com/emissary-to-space-sector-3399/4005-65498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65499/","id":65499,"name":"Kandor","site_detail_url":"https://comicvine.gamespot.com/kandor/4005-65499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65619/","id":65619,"name":"Kathulos","site_detail_url":"https://comicvine.gamespot.com/kathulos/4005-65619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65681/","id":65681,"name":"Dalton Cartwright","site_detail_url":"https://comicvine.gamespot.com/dalton-cartwright/4005-65681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65764/","id":65764,"name":"Mind Drainer","site_detail_url":"https://comicvine.gamespot.com/mind-drainer/4005-65764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65808/","id":65808,"name":"Singularity","site_detail_url":"https://comicvine.gamespot.com/singularity/4005-65808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66163/","id":66163,"name":"Input","site_detail_url":"https://comicvine.gamespot.com/input/4005-66163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66181/","id":66181,"name":"Doc Virtual","site_detail_url":"https://comicvine.gamespot.com/doc-virtual/4005-66181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66248/","id":66248,"name":"Andrew Warner","site_detail_url":"https://comicvine.gamespot.com/andrew-warner/4005-66248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66302/","id":66302,"name":"Inciters","site_detail_url":"https://comicvine.gamespot.com/inciters/4005-66302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66303/","id":66303,"name":"Jabberwocky","site_detail_url":"https://comicvine.gamespot.com/jabberwocky/4005-66303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66332/","id":66332,"name":"Mindy Williams","site_detail_url":"https://comicvine.gamespot.com/mindy-williams/4005-66332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66343/","id":66343,"name":"Philip le Guin","site_detail_url":"https://comicvine.gamespot.com/philip-le-guin/4005-66343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66349/","id":66349,"name":"Ursula Richards","site_detail_url":"https://comicvine.gamespot.com/ursula-richards/4005-66349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66486/","id":66486,"name":"Carlo Strange","site_detail_url":"https://comicvine.gamespot.com/carlo-strange/4005-66486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66569/","id":66569,"name":"Kraddak","site_detail_url":"https://comicvine.gamespot.com/kraddak/4005-66569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66646/","id":66646,"name":"Nicole Brennan","site_detail_url":"https://comicvine.gamespot.com/nicole-brennan/4005-66646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66702/","id":66702,"name":"Mister Mastermind","site_detail_url":"https://comicvine.gamespot.com/mister-mastermind/4005-66702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66756/","id":66756,"name":"Uglyhead","site_detail_url":"https://comicvine.gamespot.com/uglyhead/4005-66756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66761/","id":66761,"name":"Fernusan","site_detail_url":"https://comicvine.gamespot.com/fernusan/4005-66761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66827/","id":66827,"name":"Xylon","site_detail_url":"https://comicvine.gamespot.com/xylon/4005-66827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66842/","id":66842,"name":"Jason Sparks","site_detail_url":"https://comicvine.gamespot.com/jason-sparks/4005-66842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66897/","id":66897,"name":"Webwitch","site_detail_url":"https://comicvine.gamespot.com/webwitch/4005-66897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66995/","id":66995,"name":"Cat","site_detail_url":"https://comicvine.gamespot.com/cat/4005-66995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67002/","id":67002,"name":"The Black Death","site_detail_url":"https://comicvine.gamespot.com/the-black-death/4005-67002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67266/","id":67266,"name":"Gorka","site_detail_url":"https://comicvine.gamespot.com/gorka/4005-67266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67270/","id":67270,"name":"Amber Tremayne","site_detail_url":"https://comicvine.gamespot.com/amber-tremayne/4005-67270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67271/","id":67271,"name":"Caleb Lost","site_detail_url":"https://comicvine.gamespot.com/caleb-lost/4005-67271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67272/","id":67272,"name":"Nikolaus","site_detail_url":"https://comicvine.gamespot.com/nikolaus/4005-67272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67273/","id":67273,"name":"Jan Vathek","site_detail_url":"https://comicvine.gamespot.com/jan-vathek/4005-67273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67328/","id":67328,"name":"Uncle Martin","site_detail_url":"https://comicvine.gamespot.com/uncle-martin/4005-67328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67329/","id":67329,"name":"Mad God Chaos","site_detail_url":"https://comicvine.gamespot.com/mad-god-chaos/4005-67329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67351/","id":67351,"name":"Memnan Saa","site_detail_url":"https://comicvine.gamespot.com/memnan-saa/4005-67351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67419/","id":67419,"name":"Thoth","site_detail_url":"https://comicvine.gamespot.com/thoth/4005-67419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67515/","id":67515,"name":"Santa Klaus","site_detail_url":"https://comicvine.gamespot.com/santa-klaus/4005-67515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67556/","id":67556,"name":"Father Nature","site_detail_url":"https://comicvine.gamespot.com/father-nature/4005-67556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67664/","id":67664,"name":"Erinni","site_detail_url":"https://comicvine.gamespot.com/erinni/4005-67664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67716/","id":67716,"name":"Queen Atomia","site_detail_url":"https://comicvine.gamespot.com/queen-atomia/4005-67716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67723/","id":67723,"name":"Legato Bluesummers","site_detail_url":"https://comicvine.gamespot.com/legato-bluesummers/4005-67723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67732/","id":67732,"name":"Zazie the Beast","site_detail_url":"https://comicvine.gamespot.com/zazie-the-beast/4005-67732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67787/","id":67787,"name":"Dragonair","site_detail_url":"https://comicvine.gamespot.com/dragonair/4005-67787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67788/","id":67788,"name":"Dragonite","site_detail_url":"https://comicvine.gamespot.com/dragonite/4005-67788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67886/","id":67886,"name":"Damali Richards","site_detail_url":"https://comicvine.gamespot.com/damali-richards/4005-67886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67892/","id":67892,"name":"Golduck","site_detail_url":"https://comicvine.gamespot.com/golduck/4005-67892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67895/","id":67895,"name":"Kadabra","site_detail_url":"https://comicvine.gamespot.com/kadabra/4005-67895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67901/","id":67901,"name":"Yag-Kosha","site_detail_url":"https://comicvine.gamespot.com/yag-kosha/4005-67901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67961/","id":67961,"name":"Ayano","site_detail_url":"https://comicvine.gamespot.com/ayano/4005-67961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68026/","id":68026,"name":"Jasmine","site_detail_url":"https://comicvine.gamespot.com/jasmine/4005-68026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68156/","id":68156,"name":"Richard Guyot","site_detail_url":"https://comicvine.gamespot.com/richard-guyot/4005-68156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68162/","id":68162,"name":"Shakti","site_detail_url":"https://comicvine.gamespot.com/shakti/4005-68162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68169/","id":68169,"name":"Shaktimaan","site_detail_url":"https://comicvine.gamespot.com/shaktimaan/4005-68169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68221/","id":68221,"name":"Olivia Hooks","site_detail_url":"https://comicvine.gamespot.com/olivia-hooks/4005-68221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68318/","id":68318,"name":"Sailor Mnemosyne","site_detail_url":"https://comicvine.gamespot.com/sailor-mnemosyne/4005-68318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68386/","id":68386,"name":"Iris Shaw","site_detail_url":"https://comicvine.gamespot.com/iris-shaw/4005-68386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68418/","id":68418,"name":"Liara T'Soni","site_detail_url":"https://comicvine.gamespot.com/liara-tsoni/4005-68418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68465/","id":68465,"name":"Karen Clancy","site_detail_url":"https://comicvine.gamespot.com/karen-clancy/4005-68465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68507/","id":68507,"name":"Sookie Stackhouse","site_detail_url":"https://comicvine.gamespot.com/sookie-stackhouse/4005-68507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68517/","id":68517,"name":"Darkness","site_detail_url":"https://comicvine.gamespot.com/darkness/4005-68517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68576/","id":68576,"name":"Captain Glory","site_detail_url":"https://comicvine.gamespot.com/captain-glory/4005-68576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68728/","id":68728,"name":"Edward Cullen","site_detail_url":"https://comicvine.gamespot.com/edward-cullen/4005-68728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68731/","id":68731,"name":"Le Bete Noir","site_detail_url":"https://comicvine.gamespot.com/le-bete-noir/4005-68731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68766/","id":68766,"name":"Jacob Black","site_detail_url":"https://comicvine.gamespot.com/jacob-black/4005-68766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68823/","id":68823,"name":"Ron Ringwood","site_detail_url":"https://comicvine.gamespot.com/ron-ringwood/4005-68823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68824/","id":68824,"name":"Winston Gage","site_detail_url":"https://comicvine.gamespot.com/winston-gage/4005-68824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68825/","id":68825,"name":"Dublin Morse","site_detail_url":"https://comicvine.gamespot.com/dublin-morse/4005-68825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68827/","id":68827,"name":"Morte Mamme","site_detail_url":"https://comicvine.gamespot.com/morte-mamme/4005-68827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68829/","id":68829,"name":"Zinc","site_detail_url":"https://comicvine.gamespot.com/zinc/4005-68829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68849/","id":68849,"name":"Theen Fida","site_detail_url":"https://comicvine.gamespot.com/theen-fida/4005-68849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69112/","id":69112,"name":"Little Mary","site_detail_url":"https://comicvine.gamespot.com/little-mary/4005-69112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69164/","id":69164,"name":"Exeggcute","site_detail_url":"https://comicvine.gamespot.com/exeggcute/4005-69164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69165/","id":69165,"name":"Exeggutor","site_detail_url":"https://comicvine.gamespot.com/exeggutor/4005-69165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69191/","id":69191,"name":"Gill Girl","site_detail_url":"https://comicvine.gamespot.com/gill-girl/4005-69191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69266/","id":69266,"name":"Jynx","site_detail_url":"https://comicvine.gamespot.com/jynx/4005-69266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69278/","id":69278,"name":"Slowking","site_detail_url":"https://comicvine.gamespot.com/slowking/4005-69278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69413/","id":69413,"name":"Emma DeLauro","site_detail_url":"https://comicvine.gamespot.com/emma-delauro/4005-69413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69449/","id":69449,"name":"Susan Foreman","site_detail_url":"https://comicvine.gamespot.com/susan-foreman/4005-69449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69532/","id":69532,"name":"Larten Crepsley","site_detail_url":"https://comicvine.gamespot.com/larten-crepsley/4005-69532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69541/","id":69541,"name":"Jace Beleren","site_detail_url":"https://comicvine.gamespot.com/jace-beleren/4005-69541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69566/","id":69566,"name":"The Entity","site_detail_url":"https://comicvine.gamespot.com/the-entity/4005-69566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69819/","id":69819,"name":"Joey Eliot","site_detail_url":"https://comicvine.gamespot.com/joey-eliot/4005-69819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69887/","id":69887,"name":"Wisp","site_detail_url":"https://comicvine.gamespot.com/wisp/4005-69887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69901/","id":69901,"name":"Phoebe Halliwell","site_detail_url":"https://comicvine.gamespot.com/phoebe-halliwell/4005-69901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69902/","id":69902,"name":"Paige Matthews","site_detail_url":"https://comicvine.gamespot.com/paige-matthews/4005-69902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69922/","id":69922,"name":"Freedon Nadd","site_detail_url":"https://comicvine.gamespot.com/freedon-nadd/4005-69922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69937/","id":69937,"name":"Tuk'ata","site_detail_url":"https://comicvine.gamespot.com/tukata/4005-69937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69949/","id":69949,"name":"Keyan Farlander","site_detail_url":"https://comicvine.gamespot.com/keyan-farlander/4005-69949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69956/","id":69956,"name":"Brakiss","site_detail_url":"https://comicvine.gamespot.com/brakiss/4005-69956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69961/","id":69961,"name":"Kueller","site_detail_url":"https://comicvine.gamespot.com/kueller/4005-69961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70005/","id":70005,"name":"Thon","site_detail_url":"https://comicvine.gamespot.com/thon/4005-70005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70033/","id":70033,"name":"Lady Gorgon","site_detail_url":"https://comicvine.gamespot.com/lady-gorgon/4005-70033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70036/","id":70036,"name":"Zeus","site_detail_url":"https://comicvine.gamespot.com/zeus/4005-70036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70043/","id":70043,"name":"Lucifer","site_detail_url":"https://comicvine.gamespot.com/lucifer/4005-70043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70104/","id":70104,"name":"Dajjal","site_detail_url":"https://comicvine.gamespot.com/dajjal/4005-70104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70116/","id":70116,"name":"Krana","site_detail_url":"https://comicvine.gamespot.com/krana/4005-70116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70122/","id":70122,"name":"Cahdok","site_detail_url":"https://comicvine.gamespot.com/cahdok/4005-70122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70123/","id":70123,"name":"Gahdok","site_detail_url":"https://comicvine.gamespot.com/gahdok/4005-70123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70226/","id":70226,"name":"Thulka Re","site_detail_url":"https://comicvine.gamespot.com/thulka-re/4005-70226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70250/","id":70250,"name":"Jeffers","site_detail_url":"https://comicvine.gamespot.com/jeffers/4005-70250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70261/","id":70261,"name":"Medicham","site_detail_url":"https://comicvine.gamespot.com/medicham/4005-70261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70264/","id":70264,"name":"Kirlia","site_detail_url":"https://comicvine.gamespot.com/kirlia/4005-70264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70286/","id":70286,"name":"Cin Drallig","site_detail_url":"https://comicvine.gamespot.com/cin-drallig/4005-70286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70289/","id":70289,"name":"Lord Nyax","site_detail_url":"https://comicvine.gamespot.com/lord-nyax/4005-70289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70331/","id":70331,"name":"Kirana Ti","site_detail_url":"https://comicvine.gamespot.com/kirana-ti/4005-70331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70333/","id":70333,"name":"Swilja Fenn","site_detail_url":"https://comicvine.gamespot.com/swilja-fenn/4005-70333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70334/","id":70334,"name":"Daeshara'cor","site_detail_url":"https://comicvine.gamespot.com/daesharacor/4005-70334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70335/","id":70335,"name":"Dorsk 82","site_detail_url":"https://comicvine.gamespot.com/dorsk-82/4005-70335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70397/","id":70397,"name":"Jeng Droga","site_detail_url":"https://comicvine.gamespot.com/jeng-droga/4005-70397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70398/","id":70398,"name":"Sarcev Quest","site_detail_url":"https://comicvine.gamespot.com/sarcev-quest/4005-70398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70483/","id":70483,"name":"Lucinda Angel","site_detail_url":"https://comicvine.gamespot.com/lucinda-angel/4005-70483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70486/","id":70486,"name":"Kristin","site_detail_url":"https://comicvine.gamespot.com/kristin/4005-70486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70676/","id":70676,"name":"William Nguyen","site_detail_url":"https://comicvine.gamespot.com/william-nguyen/4005-70676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70688/","id":70688,"name":"The Gatekeeper","site_detail_url":"https://comicvine.gamespot.com/the-gatekeeper/4005-70688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70746/","id":70746,"name":"Kid Cortex","site_detail_url":"https://comicvine.gamespot.com/kid-cortex/4005-70746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70789/","id":70789,"name":"The Brain-Ship","site_detail_url":"https://comicvine.gamespot.com/the-brain-ship/4005-70789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70907/","id":70907,"name":"Night Glider","site_detail_url":"https://comicvine.gamespot.com/night-glider/4005-70907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70908/","id":70908,"name":"Bombast","site_detail_url":"https://comicvine.gamespot.com/bombast/4005-70908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71124/","id":71124,"name":"Extremist","site_detail_url":"https://comicvine.gamespot.com/extremist/4005-71124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71168/","id":71168,"name":"Gaius Tiberius Augustus Aggrippa","site_detail_url":"https://comicvine.gamespot.com/gaius-tiberius-augustus-aggrippa/4005-71168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71174/","id":71174,"name":"Dyogene","site_detail_url":"https://comicvine.gamespot.com/dyogene/4005-71174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71336/","id":71336,"name":"Ophidian","site_detail_url":"https://comicvine.gamespot.com/ophidian/4005-71336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71339/","id":71339,"name":"Proselyte","site_detail_url":"https://comicvine.gamespot.com/proselyte/4005-71339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71424/","id":71424,"name":"Adept","site_detail_url":"https://comicvine.gamespot.com/adept/4005-71424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71425/","id":71425,"name":"Mrs. Prescott","site_detail_url":"https://comicvine.gamespot.com/mrs-prescott/4005-71425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71435/","id":71435,"name":"Acheron","site_detail_url":"https://comicvine.gamespot.com/acheron/4005-71435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71497/","id":71497,"name":"Mercury Man","site_detail_url":"https://comicvine.gamespot.com/mercury-man/4005-71497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71503/","id":71503,"name":"Wyatt Halliwell","site_detail_url":"https://comicvine.gamespot.com/wyatt-halliwell/4005-71503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71504/","id":71504,"name":"Chris Halliwell","site_detail_url":"https://comicvine.gamespot.com/chris-halliwell/4005-71504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71522/","id":71522,"name":"Unown","site_detail_url":"https://comicvine.gamespot.com/unown/4005-71522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71523/","id":71523,"name":"Wobbuffet","site_detail_url":"https://comicvine.gamespot.com/wobbuffet/4005-71523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71527/","id":71527,"name":"Candace Flynn","site_detail_url":"https://comicvine.gamespot.com/candace-flynn/4005-71527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71675/","id":71675,"name":"Wave","site_detail_url":"https://comicvine.gamespot.com/wave/4005-71675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71815/","id":71815,"name":"Ellis Love","site_detail_url":"https://comicvine.gamespot.com/ellis-love/4005-71815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71925/","id":71925,"name":"M'rrgla Qualtz","site_detail_url":"https://comicvine.gamespot.com/mrrgla-qualtz/4005-71925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72030/","id":72030,"name":"Satele Shan","site_detail_url":"https://comicvine.gamespot.com/satele-shan/4005-72030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72165/","id":72165,"name":"Angel Bob","site_detail_url":"https://comicvine.gamespot.com/angel-bob/4005-72165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72182/","id":72182,"name":"Nova Terra","site_detail_url":"https://comicvine.gamespot.com/nova-terra/4005-72182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72286/","id":72286,"name":"Puffball Collective","site_detail_url":"https://comicvine.gamespot.com/puffball-collective/4005-72286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72297/","id":72297,"name":"Gaia","site_detail_url":"https://comicvine.gamespot.com/gaia/4005-72297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72323/","id":72323,"name":"Skrull Black Bolt","site_detail_url":"https://comicvine.gamespot.com/skrull-black-bolt/4005-72323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72361/","id":72361,"name":"Artemis","site_detail_url":"https://comicvine.gamespot.com/artemis/4005-72361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72389/","id":72389,"name":"Psi-Mistress","site_detail_url":"https://comicvine.gamespot.com/psi-mistress/4005-72389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72450/","id":72450,"name":"Arca Jeth","site_detail_url":"https://comicvine.gamespot.com/arca-jeth/4005-72450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72472/","id":72472,"name":"Piscator","site_detail_url":"https://comicvine.gamespot.com/piscator/4005-72472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72519/","id":72519,"name":"Mira","site_detail_url":"https://comicvine.gamespot.com/mira/4005-72519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72549/","id":72549,"name":"Alfred Cranston","site_detail_url":"https://comicvine.gamespot.com/alfred-cranston/4005-72549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72559/","id":72559,"name":"Signal Ray","site_detail_url":"https://comicvine.gamespot.com/signal-ray/4005-72559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72579/","id":72579,"name":"Charles Summers","site_detail_url":"https://comicvine.gamespot.com/charles-summers/4005-72579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72663/","id":72663,"name":"Captain America-X","site_detail_url":"https://comicvine.gamespot.com/captain-america-x/4005-72663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72681/","id":72681,"name":"Visarpi","site_detail_url":"https://comicvine.gamespot.com/visarpi/4005-72681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72698/","id":72698,"name":"Saudangi","site_detail_url":"https://comicvine.gamespot.com/saudangi/4005-72698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72704/","id":72704,"name":"Sasha","site_detail_url":"https://comicvine.gamespot.com/sasha/4005-72704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72735/","id":72735,"name":"Melinda Halliwell","site_detail_url":"https://comicvine.gamespot.com/melinda-halliwell/4005-72735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72750/","id":72750,"name":"Nagina","site_detail_url":"https://comicvine.gamespot.com/nagina/4005-72750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72768/","id":72768,"name":"Black Lantern of Maltus","site_detail_url":"https://comicvine.gamespot.com/black-lantern-of-maltus/4005-72768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72832/","id":72832,"name":"Mahatma KaalDoot","site_detail_url":"https://comicvine.gamespot.com/mahatma-kaaldoot/4005-72832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72863/","id":72863,"name":"Kyle","site_detail_url":"https://comicvine.gamespot.com/kyle/4005-72863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72911/","id":72911,"name":"Baylis Archan","site_detail_url":"https://comicvine.gamespot.com/baylis-archan/4005-72911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72982/","id":72982,"name":"Saarai","site_detail_url":"https://comicvine.gamespot.com/saarai/4005-72982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72983/","id":72983,"name":"Darth Havok","site_detail_url":"https://comicvine.gamespot.com/darth-havok/4005-72983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73044/","id":73044,"name":"Fernus","site_detail_url":"https://comicvine.gamespot.com/fernus/4005-73044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73054/","id":73054,"name":"Harry Potter","site_detail_url":"https://comicvine.gamespot.com/harry-potter/4005-73054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73101/","id":73101,"name":"Awareness","site_detail_url":"https://comicvine.gamespot.com/awareness/4005-73101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73141/","id":73141,"name":"Ausar Auset","site_detail_url":"https://comicvine.gamespot.com/ausar-auset/4005-73141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73142/","id":73142,"name":"Drok","site_detail_url":"https://comicvine.gamespot.com/drok/4005-73142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73143/","id":73143,"name":"Mai","site_detail_url":"https://comicvine.gamespot.com/mai/4005-73143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73148/","id":73148,"name":"T'Dai","site_detail_url":"https://comicvine.gamespot.com/tdai/4005-73148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73150/","id":73150,"name":"Kerra Holt","site_detail_url":"https://comicvine.gamespot.com/kerra-holt/4005-73150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73151/","id":73151,"name":"Vannar Treece","site_detail_url":"https://comicvine.gamespot.com/vannar-treece/4005-73151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73152/","id":73152,"name":"Lord Odion","site_detail_url":"https://comicvine.gamespot.com/lord-odion/4005-73152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73157/","id":73157,"name":"Jiro","site_detail_url":"https://comicvine.gamespot.com/jiro/4005-73157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73158/","id":73158,"name":"Kennan Taanzer","site_detail_url":"https://comicvine.gamespot.com/kennan-taanzer/4005-73158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73161/","id":73161,"name":"Seddwia","site_detail_url":"https://comicvine.gamespot.com/seddwia/4005-73161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73170/","id":73170,"name":"Dama Montalvo","site_detail_url":"https://comicvine.gamespot.com/dama-montalvo/4005-73170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73182/","id":73182,"name":"Zero","site_detail_url":"https://comicvine.gamespot.com/zero/4005-73182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73190/","id":73190,"name":"Chasm","site_detail_url":"https://comicvine.gamespot.com/chasm/4005-73190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73206/","id":73206,"name":"Toluz Cheq","site_detail_url":"https://comicvine.gamespot.com/toluz-cheq/4005-73206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73209/","id":73209,"name":"Angelique Bouchard","site_detail_url":"https://comicvine.gamespot.com/angelique-bouchard/4005-73209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73308/","id":73308,"name":"Olivia Dunham","site_detail_url":"https://comicvine.gamespot.com/olivia-dunham/4005-73308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73358/","id":73358,"name":"Abraham Pointe","site_detail_url":"https://comicvine.gamespot.com/abraham-pointe/4005-73358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73378/","id":73378,"name":"Starborn","site_detail_url":"https://comicvine.gamespot.com/starborn/4005-73378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73422/","id":73422,"name":"Kirk","site_detail_url":"https://comicvine.gamespot.com/kirk/4005-73422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73423/","id":73423,"name":"Caz","site_detail_url":"https://comicvine.gamespot.com/caz/4005-73423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73427/","id":73427,"name":"Lolth","site_detail_url":"https://comicvine.gamespot.com/lolth/4005-73427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73428/","id":73428,"name":"Jack","site_detail_url":"https://comicvine.gamespot.com/jack/4005-73428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73429/","id":73429,"name":"Miki","site_detail_url":"https://comicvine.gamespot.com/miki/4005-73429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73430/","id":73430,"name":"Kait","site_detail_url":"https://comicvine.gamespot.com/kait/4005-73430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73441/","id":73441,"name":"Sage of the Six Paths","site_detail_url":"https://comicvine.gamespot.com/sage-of-the-six-paths/4005-73441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73475/","id":73475,"name":"Bogeyman","site_detail_url":"https://comicvine.gamespot.com/bogeyman/4005-73475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73518/","id":73518,"name":"Rowan Morrigan","site_detail_url":"https://comicvine.gamespot.com/rowan-morrigan/4005-73518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73612/","id":73612,"name":"Zardor","site_detail_url":"https://comicvine.gamespot.com/zardor/4005-73612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73766/","id":73766,"name":"Charles zi Britannia","site_detail_url":"https://comicvine.gamespot.com/charles-zi-britannia/4005-73766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73767/","id":73767,"name":"Lady Marianne","site_detail_url":"https://comicvine.gamespot.com/lady-marianne/4005-73767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73790/","id":73790,"name":"Dar'Nala","site_detail_url":"https://comicvine.gamespot.com/darnala/4005-73790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73791/","id":73791,"name":"Lord Baras","site_detail_url":"https://comicvine.gamespot.com/lord-baras/4005-73791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73797/","id":73797,"name":"Mr. Selatcia","site_detail_url":"https://comicvine.gamespot.com/mr-selatcia/4005-73797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73820/","id":73820,"name":"Zym","site_detail_url":"https://comicvine.gamespot.com/zym/4005-73820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73860/","id":73860,"name":"Ace of Space","site_detail_url":"https://comicvine.gamespot.com/ace-of-space/4005-73860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73936/","id":73936,"name":"Gazer","site_detail_url":"https://comicvine.gamespot.com/gazer/4005-73936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73948/","id":73948,"name":"Wolverine Demon","site_detail_url":"https://comicvine.gamespot.com/wolverine-demon/4005-73948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74020/","id":74020,"name":"D'Kay D'Razz","site_detail_url":"https://comicvine.gamespot.com/dkay-drazz/4005-74020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74071/","id":74071,"name":"X","site_detail_url":"https://comicvine.gamespot.com/x/4005-74071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74356/","id":74356,"name":"Glory","site_detail_url":"https://comicvine.gamespot.com/glory/4005-74356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74451/","id":74451,"name":"Shadower","site_detail_url":"https://comicvine.gamespot.com/shadower/4005-74451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74480/","id":74480,"name":"The Mysterious Traveler","site_detail_url":"https://comicvine.gamespot.com/the-mysterious-traveler/4005-74480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74517/","id":74517,"name":"Shauna","site_detail_url":"https://comicvine.gamespot.com/shauna/4005-74517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74518/","id":74518,"name":"Telepath","site_detail_url":"https://comicvine.gamespot.com/telepath/4005-74518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74570/","id":74570,"name":"Remus Lupin","site_detail_url":"https://comicvine.gamespot.com/remus-lupin/4005-74570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74862/","id":74862,"name":"The Source","site_detail_url":"https://comicvine.gamespot.com/the-source/4005-74862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74899/","id":74899,"name":"Nara Minsork","site_detail_url":"https://comicvine.gamespot.com/nara-minsork/4005-74899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74935/","id":74935,"name":"Nicol Bolas","site_detail_url":"https://comicvine.gamespot.com/nicol-bolas/4005-74935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75034/","id":75034,"name":"Narees","site_detail_url":"https://comicvine.gamespot.com/narees/4005-75034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75038/","id":75038,"name":"Selestrine","site_detail_url":"https://comicvine.gamespot.com/selestrine/4005-75038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75066/","id":75066,"name":"Berluk","site_detail_url":"https://comicvine.gamespot.com/berluk/4005-75066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75075/","id":75075,"name":"Tieren Nie-Tan","site_detail_url":"https://comicvine.gamespot.com/tieren-nie-tan/4005-75075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75076/","id":75076,"name":"Lycan","site_detail_url":"https://comicvine.gamespot.com/lycan/4005-75076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75077/","id":75077,"name":"XoXaan","site_detail_url":"https://comicvine.gamespot.com/xoxaan/4005-75077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75078/","id":75078,"name":"Sonam-Ha'ar","site_detail_url":"https://comicvine.gamespot.com/sonam-haar/4005-75078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75127/","id":75127,"name":"Uravo","site_detail_url":"https://comicvine.gamespot.com/uravo/4005-75127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75137/","id":75137,"name":"Mistress Kya","site_detail_url":"https://comicvine.gamespot.com/mistress-kya/4005-75137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75144/","id":75144,"name":"Gwellib Ap-Llewff","site_detail_url":"https://comicvine.gamespot.com/gwellib-ap-llewff/4005-75144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75180/","id":75180,"name":"Quarmall","site_detail_url":"https://comicvine.gamespot.com/quarmall/4005-75180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75181/","id":75181,"name":"B'dard Tone","site_detail_url":"https://comicvine.gamespot.com/bdard-tone/4005-75181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75182/","id":75182,"name":"Flynn Kybo","site_detail_url":"https://comicvine.gamespot.com/flynn-kybo/4005-75182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75183/","id":75183,"name":"T'chooka D'oon","site_detail_url":"https://comicvine.gamespot.com/tchooka-doon/4005-75183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75184/","id":75184,"name":"Z'meer Bothu","site_detail_url":"https://comicvine.gamespot.com/zmeer-bothu/4005-75184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75186/","id":75186,"name":"Allara","site_detail_url":"https://comicvine.gamespot.com/allara/4005-75186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75187/","id":75187,"name":"Banz","site_detail_url":"https://comicvine.gamespot.com/banz/4005-75187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75188/","id":75188,"name":"Tak-tak","site_detail_url":"https://comicvine.gamespot.com/tak-tak/4005-75188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75191/","id":75191,"name":"Ming","site_detail_url":"https://comicvine.gamespot.com/ming/4005-75191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75385/","id":75385,"name":"Super-Brain","site_detail_url":"https://comicvine.gamespot.com/super-brain/4005-75385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75414/","id":75414,"name":"Atris","site_detail_url":"https://comicvine.gamespot.com/atris/4005-75414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75417/","id":75417,"name":"Pol Temm","site_detail_url":"https://comicvine.gamespot.com/pol-temm/4005-75417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75544/","id":75544,"name":"Jerbhen Hulis","site_detail_url":"https://comicvine.gamespot.com/jerbhen-hulis/4005-75544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75554/","id":75554,"name":"Lar Le'Ung","site_detail_url":"https://comicvine.gamespot.com/lar-leung/4005-75554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75568/","id":75568,"name":"Rath Kelkko","site_detail_url":"https://comicvine.gamespot.com/rath-kelkko/4005-75568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75569/","id":75569,"name":"Akku Seii","site_detail_url":"https://comicvine.gamespot.com/akku-seii/4005-75569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75570/","id":75570,"name":"Nakia Yoru","site_detail_url":"https://comicvine.gamespot.com/nakia-yoru/4005-75570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75571/","id":75571,"name":"Sint Yoru","site_detail_url":"https://comicvine.gamespot.com/sint-yoru/4005-75571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75583/","id":75583,"name":"Noirah Na","site_detail_url":"https://comicvine.gamespot.com/noirah-na/4005-75583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75641/","id":75641,"name":"Boreas","site_detail_url":"https://comicvine.gamespot.com/boreas/4005-75641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75710/","id":75710,"name":"Assault","site_detail_url":"https://comicvine.gamespot.com/assault/4005-75710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75726/","id":75726,"name":"Shamus A.I.","site_detail_url":"https://comicvine.gamespot.com/shamus-ai/4005-75726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75779/","id":75779,"name":"M.O.D.O.K. 2.0","site_detail_url":"https://comicvine.gamespot.com/m-o-d-o-k-2-0/4005-75779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75783/","id":75783,"name":"PSmith","site_detail_url":"https://comicvine.gamespot.com/psmith/4005-75783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75856/","id":75856,"name":"Elizabeth Maxwell","site_detail_url":"https://comicvine.gamespot.com/elizabeth-maxwell/4005-75856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75881/","id":75881,"name":"Kessler","site_detail_url":"https://comicvine.gamespot.com/kessler/4005-75881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75887/","id":75887,"name":"Shaizan","site_detail_url":"https://comicvine.gamespot.com/shaizan/4005-75887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75888/","id":75888,"name":"Bowkaz","site_detail_url":"https://comicvine.gamespot.com/bowkaz/4005-75888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75889/","id":75889,"name":"Dag","site_detail_url":"https://comicvine.gamespot.com/dag/4005-75889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75890/","id":75890,"name":"Fallagar","site_detail_url":"https://comicvine.gamespot.com/fallagar/4005-75890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75891/","id":75891,"name":"Hepsis","site_detail_url":"https://comicvine.gamespot.com/hepsis/4005-75891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75892/","id":75892,"name":"Nimuul","site_detail_url":"https://comicvine.gamespot.com/nimuul/4005-75892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75949/","id":75949,"name":"Shiron","site_detail_url":"https://comicvine.gamespot.com/shiron/4005-75949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75957/","id":75957,"name":"Mermaid Man","site_detail_url":"https://comicvine.gamespot.com/mermaid-man/4005-75957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76020/","id":76020,"name":"Atro","site_detail_url":"https://comicvine.gamespot.com/atro/4005-76020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76021/","id":76021,"name":"Mighty Mog","site_detail_url":"https://comicvine.gamespot.com/mighty-mog/4005-76021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76022/","id":76022,"name":"Wondrous Incarno","site_detail_url":"https://comicvine.gamespot.com/wondrous-incarno/4005-76022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76051/","id":76051,"name":"Tobor","site_detail_url":"https://comicvine.gamespot.com/tobor/4005-76051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76106/","id":76106,"name":"Ririko Yasuhara","site_detail_url":"https://comicvine.gamespot.com/ririko-yasuhara/4005-76106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76170/","id":76170,"name":"Ryan Kendall","site_detail_url":"https://comicvine.gamespot.com/ryan-kendall/4005-76170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76211/","id":76211,"name":"Toby Henston","site_detail_url":"https://comicvine.gamespot.com/toby-henston/4005-76211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76294/","id":76294,"name":"Captain Community","site_detail_url":"https://comicvine.gamespot.com/captain-community/4005-76294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76361/","id":76361,"name":"Pilai","site_detail_url":"https://comicvine.gamespot.com/pilai/4005-76361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76365/","id":76365,"name":"Trikon","site_detail_url":"https://comicvine.gamespot.com/trikon/4005-76365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76376/","id":76376,"name":"Silene","site_detail_url":"https://comicvine.gamespot.com/silene/4005-76376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76426/","id":76426,"name":"Kyle Brody","site_detail_url":"https://comicvine.gamespot.com/kyle-brody/4005-76426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76464/","id":76464,"name":"Aquagirl (Mareena)","site_detail_url":"https://comicvine.gamespot.com/aquagirl-mareena/4005-76464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76569/","id":76569,"name":"Samael","site_detail_url":"https://comicvine.gamespot.com/samael/4005-76569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76606/","id":76606,"name":"Rennek","site_detail_url":"https://comicvine.gamespot.com/rennek/4005-76606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76635/","id":76635,"name":"El Tigre","site_detail_url":"https://comicvine.gamespot.com/el-tigre/4005-76635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76642/","id":76642,"name":"Puck","site_detail_url":"https://comicvine.gamespot.com/puck/4005-76642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76703/","id":76703,"name":"Drago","site_detail_url":"https://comicvine.gamespot.com/drago/4005-76703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76873/","id":76873,"name":"Jaleb","site_detail_url":"https://comicvine.gamespot.com/jaleb/4005-76873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76932/","id":76932,"name":"Xion","site_detail_url":"https://comicvine.gamespot.com/xion/4005-76932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76987/","id":76987,"name":"The Renegade","site_detail_url":"https://comicvine.gamespot.com/the-renegade/4005-76987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76989/","id":76989,"name":"Mortimer Dauoi","site_detail_url":"https://comicvine.gamespot.com/mortimer-dauoi/4005-76989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77011/","id":77011,"name":"Mahayogi","site_detail_url":"https://comicvine.gamespot.com/mahayogi/4005-77011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77094/","id":77094,"name":"Harvester","site_detail_url":"https://comicvine.gamespot.com/harvester/4005-77094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77137/","id":77137,"name":"H.E.C.T.O.R.","site_detail_url":"https://comicvine.gamespot.com/hector/4005-77137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77150/","id":77150,"name":"Green Phoenix","site_detail_url":"https://comicvine.gamespot.com/green-phoenix/4005-77150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77160/","id":77160,"name":"Azathoth","site_detail_url":"https://comicvine.gamespot.com/azathoth/4005-77160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77217/","id":77217,"name":"Ignis","site_detail_url":"https://comicvine.gamespot.com/ignis/4005-77217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77239/","id":77239,"name":"Phantom Zone God","site_detail_url":"https://comicvine.gamespot.com/phantom-zone-god/4005-77239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77241/","id":77241,"name":"Boss Chibi Alien","site_detail_url":"https://comicvine.gamespot.com/boss-chibi-alien/4005-77241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77437/","id":77437,"name":"The Absolutely","site_detail_url":"https://comicvine.gamespot.com/the-absolutely/4005-77437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77512/","id":77512,"name":"Guanxi","site_detail_url":"https://comicvine.gamespot.com/guanxi/4005-77512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77666/","id":77666,"name":"Forest of Woe","site_detail_url":"https://comicvine.gamespot.com/forest-of-woe/4005-77666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77691/","id":77691,"name":"Martian Jones","site_detail_url":"https://comicvine.gamespot.com/martian-jones/4005-77691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77709/","id":77709,"name":"Every1","site_detail_url":"https://comicvine.gamespot.com/every1/4005-77709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77810/","id":77810,"name":"The Kid","site_detail_url":"https://comicvine.gamespot.com/the-kid/4005-77810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77908/","id":77908,"name":"Tragic","site_detail_url":"https://comicvine.gamespot.com/tragic/4005-77908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77911/","id":77911,"name":"Psiclops","site_detail_url":"https://comicvine.gamespot.com/psiclops/4005-77911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78096/","id":78096,"name":"Xatu","site_detail_url":"https://comicvine.gamespot.com/xatu/4005-78096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78171/","id":78171,"name":"Koda","site_detail_url":"https://comicvine.gamespot.com/koda/4005-78171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78223/","id":78223,"name":"Ann Never","site_detail_url":"https://comicvine.gamespot.com/ann-never/4005-78223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78316/","id":78316,"name":"Alice Johnson","site_detail_url":"https://comicvine.gamespot.com/alice-johnson/4005-78316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78332/","id":78332,"name":"Kristen Parker","site_detail_url":"https://comicvine.gamespot.com/kristen-parker/4005-78332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78439/","id":78439,"name":"Ewass","site_detail_url":"https://comicvine.gamespot.com/ewass/4005-78439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78442/","id":78442,"name":"Väinämöinen","site_detail_url":"https://comicvine.gamespot.com/vainamoinen/4005-78442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78490/","id":78490,"name":"Cally","site_detail_url":"https://comicvine.gamespot.com/cally/4005-78490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78510/","id":78510,"name":"Golden","site_detail_url":"https://comicvine.gamespot.com/golden/4005-78510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78515/","id":78515,"name":"Christopher Truelove","site_detail_url":"https://comicvine.gamespot.com/christopher-truelove/4005-78515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78524/","id":78524,"name":"Birdman","site_detail_url":"https://comicvine.gamespot.com/birdman/4005-78524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78529/","id":78529,"name":"Sapphire","site_detail_url":"https://comicvine.gamespot.com/sapphire/4005-78529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78530/","id":78530,"name":"Steel","site_detail_url":"https://comicvine.gamespot.com/steel/4005-78530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78531/","id":78531,"name":"Lead","site_detail_url":"https://comicvine.gamespot.com/lead/4005-78531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78625/","id":78625,"name":"Psi-Borg","site_detail_url":"https://comicvine.gamespot.com/psi-borg/4005-78625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78668/","id":78668,"name":"Miranda Dawkins","site_detail_url":"https://comicvine.gamespot.com/miranda-dawkins/4005-78668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78672/","id":78672,"name":"Flint","site_detail_url":"https://comicvine.gamespot.com/flint/4005-78672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78689/","id":78689,"name":"Gabriel","site_detail_url":"https://comicvine.gamespot.com/gabriel/4005-78689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78719/","id":78719,"name":"Ralts","site_detail_url":"https://comicvine.gamespot.com/ralts/4005-78719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78798/","id":78798,"name":"Shiftry","site_detail_url":"https://comicvine.gamespot.com/shiftry/4005-78798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78879/","id":78879,"name":"Jahn","site_detail_url":"https://comicvine.gamespot.com/jahn/4005-78879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78880/","id":78880,"name":"Bahb","site_detail_url":"https://comicvine.gamespot.com/bahb/4005-78880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78883/","id":78883,"name":"Kay","site_detail_url":"https://comicvine.gamespot.com/kay/4005-78883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78884/","id":78884,"name":"Mindwarp","site_detail_url":"https://comicvine.gamespot.com/mindwarp/4005-78884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78940/","id":78940,"name":"Queen Bee","site_detail_url":"https://comicvine.gamespot.com/queen-bee/4005-78940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78962/","id":78962,"name":"Smeargle","site_detail_url":"https://comicvine.gamespot.com/smeargle/4005-78962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78994/","id":78994,"name":"The Guide","site_detail_url":"https://comicvine.gamespot.com/the-guide/4005-78994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79056/","id":79056,"name":"Janet Blaise","site_detail_url":"https://comicvine.gamespot.com/janet-blaise/4005-79056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79123/","id":79123,"name":"Nuage","site_detail_url":"https://comicvine.gamespot.com/nuage/4005-79123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79150/","id":79150,"name":"Madam Octa","site_detail_url":"https://comicvine.gamespot.com/madam-octa/4005-79150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79189/","id":79189,"name":"Maria Ossowiecki","site_detail_url":"https://comicvine.gamespot.com/maria-ossowiecki/4005-79189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79212/","id":79212,"name":"T'Priell","site_detail_url":"https://comicvine.gamespot.com/tpriell/4005-79212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79214/","id":79214,"name":"Amy Stringer","site_detail_url":"https://comicvine.gamespot.com/amy-stringer/4005-79214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79228/","id":79228,"name":"Caleb Danvers","site_detail_url":"https://comicvine.gamespot.com/caleb-danvers/4005-79228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79239/","id":79239,"name":"Pogue Parry","site_detail_url":"https://comicvine.gamespot.com/pogue-parry/4005-79239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79240/","id":79240,"name":"Reid Garwin","site_detail_url":"https://comicvine.gamespot.com/reid-garwin/4005-79240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79241/","id":79241,"name":"Tyler Simms","site_detail_url":"https://comicvine.gamespot.com/tyler-simms/4005-79241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79388/","id":79388,"name":"Silver Shield","site_detail_url":"https://comicvine.gamespot.com/silver-shield/4005-79388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79494/","id":79494,"name":"Mentat","site_detail_url":"https://comicvine.gamespot.com/mentat/4005-79494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79573/","id":79573,"name":"Dream Demon","site_detail_url":"https://comicvine.gamespot.com/dream-demon/4005-79573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79645/","id":79645,"name":"The Purge","site_detail_url":"https://comicvine.gamespot.com/the-purge/4005-79645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79683/","id":79683,"name":"Dr. Sugarman","site_detail_url":"https://comicvine.gamespot.com/dr-sugarman/4005-79683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79720/","id":79720,"name":"V'lana","site_detail_url":"https://comicvine.gamespot.com/vlana/4005-79720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79902/","id":79902,"name":"Marilyn de Fontesque","site_detail_url":"https://comicvine.gamespot.com/marilyn-de-fontesque/4005-79902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79913/","id":79913,"name":"Edam Astrun","site_detail_url":"https://comicvine.gamespot.com/edam-astrun/4005-79913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79965/","id":79965,"name":"Suriel","site_detail_url":"https://comicvine.gamespot.com/suriel/4005-79965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80031/","id":80031,"name":"Ted, the Imp Shaloop","site_detail_url":"https://comicvine.gamespot.com/ted-the-imp-shaloop/4005-80031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80379/","id":80379,"name":"K'hym J'onzz","site_detail_url":"https://comicvine.gamespot.com/khym-jonzz/4005-80379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80380/","id":80380,"name":"Sasha","site_detail_url":"https://comicvine.gamespot.com/sasha/4005-80380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80386/","id":80386,"name":"John White","site_detail_url":"https://comicvine.gamespot.com/john-white/4005-80386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80427/","id":80427,"name":"Baba Yaga","site_detail_url":"https://comicvine.gamespot.com/baba-yaga/4005-80427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80469/","id":80469,"name":"Maddy Rouge","site_detail_url":"https://comicvine.gamespot.com/maddy-rouge/4005-80469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80523/","id":80523,"name":"Sar Dubnotal","site_detail_url":"https://comicvine.gamespot.com/sar-dubnotal/4005-80523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80753/","id":80753,"name":"Tharlok","site_detail_url":"https://comicvine.gamespot.com/tharlok/4005-80753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80819/","id":80819,"name":"Brainstorm (Lanse)","site_detail_url":"https://comicvine.gamespot.com/brainstorm-lanse/4005-80819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80837/","id":80837,"name":"Nnamdi","site_detail_url":"https://comicvine.gamespot.com/nnamdi/4005-80837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80839/","id":80839,"name":"Bloodbath","site_detail_url":"https://comicvine.gamespot.com/bloodbath/4005-80839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80883/","id":80883,"name":"Winter Moran","site_detail_url":"https://comicvine.gamespot.com/winter-moran/4005-80883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80900/","id":80900,"name":"Koko","site_detail_url":"https://comicvine.gamespot.com/koko/4005-80900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80911/","id":80911,"name":"Son of Morning","site_detail_url":"https://comicvine.gamespot.com/son-of-morning/4005-80911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81029/","id":81029,"name":"Aquon","site_detail_url":"https://comicvine.gamespot.com/aquon/4005-81029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81049/","id":81049,"name":"Harith Damyish","site_detail_url":"https://comicvine.gamespot.com/harith-damyish/4005-81049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81104/","id":81104,"name":"Jon Kent","site_detail_url":"https://comicvine.gamespot.com/jon-kent/4005-81104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81144/","id":81144,"name":"Rose of Purity","site_detail_url":"https://comicvine.gamespot.com/rose-of-purity/4005-81144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81218/","id":81218,"name":"Styx","site_detail_url":"https://comicvine.gamespot.com/styx/4005-81218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81325/","id":81325,"name":"The Red Celestial","site_detail_url":"https://comicvine.gamespot.com/the-red-celestial/4005-81325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81346/","id":81346,"name":"Cilla","site_detail_url":"https://comicvine.gamespot.com/cilla/4005-81346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81406/","id":81406,"name":"Tahl","site_detail_url":"https://comicvine.gamespot.com/tahl/4005-81406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81434/","id":81434,"name":"Nam","site_detail_url":"https://comicvine.gamespot.com/nam/4005-81434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81435/","id":81435,"name":"Monster Planet","site_detail_url":"https://comicvine.gamespot.com/monster-planet/4005-81435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81559/","id":81559,"name":"Nocturna","site_detail_url":"https://comicvine.gamespot.com/nocturna/4005-81559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81667/","id":81667,"name":"Gardevoir","site_detail_url":"https://comicvine.gamespot.com/gardevoir/4005-81667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81985/","id":81985,"name":"Icebreaker","site_detail_url":"https://comicvine.gamespot.com/icebreaker/4005-81985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82080/","id":82080,"name":"Solar Brain","site_detail_url":"https://comicvine.gamespot.com/solar-brain/4005-82080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82138/","id":82138,"name":"The Hand of God","site_detail_url":"https://comicvine.gamespot.com/the-hand-of-god/4005-82138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82201/","id":82201,"name":"Guru","site_detail_url":"https://comicvine.gamespot.com/guru/4005-82201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82348/","id":82348,"name":"The Lich","site_detail_url":"https://comicvine.gamespot.com/the-lich/4005-82348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82378/","id":82378,"name":"Encephalon","site_detail_url":"https://comicvine.gamespot.com/encephalon/4005-82378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82416/","id":82416,"name":"Kibito Kai","site_detail_url":"https://comicvine.gamespot.com/kibito-kai/4005-82416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82488/","id":82488,"name":"Aran Darko","site_detail_url":"https://comicvine.gamespot.com/aran-darko/4005-82488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82496/","id":82496,"name":"Resya","site_detail_url":"https://comicvine.gamespot.com/resya/4005-82496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82516/","id":82516,"name":"Father","site_detail_url":"https://comicvine.gamespot.com/father/4005-82516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82518/","id":82518,"name":"D-Void","site_detail_url":"https://comicvine.gamespot.com/d-void/4005-82518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82546/","id":82546,"name":"Shandra","site_detail_url":"https://comicvine.gamespot.com/shandra/4005-82546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82548/","id":82548,"name":"President Abraham","site_detail_url":"https://comicvine.gamespot.com/president-abraham/4005-82548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82566/","id":82566,"name":"Gabor Vlatna","site_detail_url":"https://comicvine.gamespot.com/gabor-vlatna/4005-82566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82569/","id":82569,"name":"Araxe De Kerkadio","site_detail_url":"https://comicvine.gamespot.com/araxe-de-kerkadio/4005-82569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82648/","id":82648,"name":"Nergal","site_detail_url":"https://comicvine.gamespot.com/nergal/4005-82648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82657/","id":82657,"name":"Legba","site_detail_url":"https://comicvine.gamespot.com/legba/4005-82657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82659/","id":82659,"name":"Ixtlàn","site_detail_url":"https://comicvine.gamespot.com/ixtlan/4005-82659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82669/","id":82669,"name":"Xesh","site_detail_url":"https://comicvine.gamespot.com/xesh/4005-82669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82672/","id":82672,"name":"The Purple-Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/the-purple-blue-celestial/4005-82672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82754/","id":82754,"name":"Erlik Khan","site_detail_url":"https://comicvine.gamespot.com/erlik-khan/4005-82754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82764/","id":82764,"name":"Tul'kar","site_detail_url":"https://comicvine.gamespot.com/tulkar/4005-82764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82802/","id":82802,"name":"Lord Marsden","site_detail_url":"https://comicvine.gamespot.com/lord-marsden/4005-82802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82889/","id":82889,"name":"Hogrum Chalk","site_detail_url":"https://comicvine.gamespot.com/hogrum-chalk/4005-82889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82901/","id":82901,"name":"Antonietta Fernandez","site_detail_url":"https://comicvine.gamespot.com/antonietta-fernandez/4005-82901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82972/","id":82972,"name":"Collector General","site_detail_url":"https://comicvine.gamespot.com/collector-general/4005-82972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82982/","id":82982,"name":"Christine Lambert","site_detail_url":"https://comicvine.gamespot.com/christine-lambert/4005-82982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83002/","id":83002,"name":"Limbo Queen","site_detail_url":"https://comicvine.gamespot.com/limbo-queen/4005-83002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83029/","id":83029,"name":"Xanto Starblood","site_detail_url":"https://comicvine.gamespot.com/xanto-starblood/4005-83029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83095/","id":83095,"name":"Samara","site_detail_url":"https://comicvine.gamespot.com/samara/4005-83095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83143/","id":83143,"name":"Tasha Ryo","site_detail_url":"https://comicvine.gamespot.com/tasha-ryo/4005-83143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83163/","id":83163,"name":"Darth Rauder","site_detail_url":"https://comicvine.gamespot.com/darth-rauder/4005-83163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83210/","id":83210,"name":"Jake Chambers","site_detail_url":"https://comicvine.gamespot.com/jake-chambers/4005-83210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83265/","id":83265,"name":"Ann Jurging","site_detail_url":"https://comicvine.gamespot.com/ann-jurging/4005-83265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83379/","id":83379,"name":"Radar","site_detail_url":"https://comicvine.gamespot.com/radar/4005-83379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83406/","id":83406,"name":"Lilitu","site_detail_url":"https://comicvine.gamespot.com/lilitu/4005-83406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83447/","id":83447,"name":"Misbelief","site_detail_url":"https://comicvine.gamespot.com/misbelief/4005-83447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83465/","id":83465,"name":"Hummingbird","site_detail_url":"https://comicvine.gamespot.com/hummingbird/4005-83465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83519/","id":83519,"name":"Candice Crow","site_detail_url":"https://comicvine.gamespot.com/candice-crow/4005-83519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83582/","id":83582,"name":"Enerjak","site_detail_url":"https://comicvine.gamespot.com/enerjak/4005-83582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83591/","id":83591,"name":"Rogers","site_detail_url":"https://comicvine.gamespot.com/rogers/4005-83591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83647/","id":83647,"name":"Kurt Lance","site_detail_url":"https://comicvine.gamespot.com/kurt-lance/4005-83647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83660/","id":83660,"name":"Hyakkimaru","site_detail_url":"https://comicvine.gamespot.com/hyakkimaru/4005-83660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83695/","id":83695,"name":"Nelson Jent","site_detail_url":"https://comicvine.gamespot.com/nelson-jent/4005-83695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83696/","id":83696,"name":"Dmitri","site_detail_url":"https://comicvine.gamespot.com/dmitri/4005-83696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83747/","id":83747,"name":"Il Maestro","site_detail_url":"https://comicvine.gamespot.com/il-maestro/4005-83747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83875/","id":83875,"name":"Blur","site_detail_url":"https://comicvine.gamespot.com/blur/4005-83875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84148/","id":84148,"name":"Arch Mother","site_detail_url":"https://comicvine.gamespot.com/arch-mother/4005-84148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84156/","id":84156,"name":"Man-Slayer","site_detail_url":"https://comicvine.gamespot.com/man-slayer/4005-84156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84218/","id":84218,"name":"Kuhrra Daizonest","site_detail_url":"https://comicvine.gamespot.com/kuhrra-daizonest/4005-84218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84299/","id":84299,"name":"Frankensurfer","site_detail_url":"https://comicvine.gamespot.com/frankensurfer/4005-84299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84371/","id":84371,"name":"HIM","site_detail_url":"https://comicvine.gamespot.com/him/4005-84371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84473/","id":84473,"name":"Kyoko Kagami","site_detail_url":"https://comicvine.gamespot.com/kyoko-kagami/4005-84473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84609/","id":84609,"name":"Murder","site_detail_url":"https://comicvine.gamespot.com/murder/4005-84609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84687/","id":84687,"name":"Scatterbrain","site_detail_url":"https://comicvine.gamespot.com/scatterbrain/4005-84687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84694/","id":84694,"name":"The Hammer","site_detail_url":"https://comicvine.gamespot.com/the-hammer/4005-84694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84767/","id":84767,"name":"Halfshell","site_detail_url":"https://comicvine.gamespot.com/halfshell/4005-84767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84915/","id":84915,"name":"Nanya","site_detail_url":"https://comicvine.gamespot.com/nanya/4005-84915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84956/","id":84956,"name":"Victor Leroy Long","site_detail_url":"https://comicvine.gamespot.com/victor-leroy-long/4005-84956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84966/","id":84966,"name":"Scanner","site_detail_url":"https://comicvine.gamespot.com/scanner/4005-84966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84993/","id":84993,"name":"Lifter","site_detail_url":"https://comicvine.gamespot.com/lifter/4005-84993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85006/","id":85006,"name":"Proctor","site_detail_url":"https://comicvine.gamespot.com/proctor/4005-85006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85094/","id":85094,"name":"Psider-Man","site_detail_url":"https://comicvine.gamespot.com/psider-man/4005-85094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85109/","id":85109,"name":"Wanda Five","site_detail_url":"https://comicvine.gamespot.com/wanda-five/4005-85109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85122/","id":85122,"name":"Venus","site_detail_url":"https://comicvine.gamespot.com/venus/4005-85122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85151/","id":85151,"name":"Jenna Washington","site_detail_url":"https://comicvine.gamespot.com/jenna-washington/4005-85151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85169/","id":85169,"name":"Olga","site_detail_url":"https://comicvine.gamespot.com/olga/4005-85169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85219/","id":85219,"name":"Nightmask (Randall)","site_detail_url":"https://comicvine.gamespot.com/nightmask-randall/4005-85219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85247/","id":85247,"name":"Sabrina","site_detail_url":"https://comicvine.gamespot.com/sabrina/4005-85247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85276/","id":85276,"name":"Fifty-One","site_detail_url":"https://comicvine.gamespot.com/fifty-one/4005-85276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85321/","id":85321,"name":"Ingrid Hillcraft","site_detail_url":"https://comicvine.gamespot.com/ingrid-hillcraft/4005-85321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85360/","id":85360,"name":"Reinforcer","site_detail_url":"https://comicvine.gamespot.com/reinforcer/4005-85360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85389/","id":85389,"name":"Volthoom","site_detail_url":"https://comicvine.gamespot.com/volthoom/4005-85389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85446/","id":85446,"name":"Supernatural","site_detail_url":"https://comicvine.gamespot.com/supernatural/4005-85446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85448/","id":85448,"name":"Purple Veil","site_detail_url":"https://comicvine.gamespot.com/purple-veil/4005-85448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85489/","id":85489,"name":"Kain Blueriver","site_detail_url":"https://comicvine.gamespot.com/kain-blueriver/4005-85489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85491/","id":85491,"name":"Canal Vorfeed","site_detail_url":"https://comicvine.gamespot.com/canal-vorfeed/4005-85491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85763/","id":85763,"name":"Firefrost","site_detail_url":"https://comicvine.gamespot.com/firefrost/4005-85763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85775/","id":85775,"name":"The Weird Woman","site_detail_url":"https://comicvine.gamespot.com/the-weird-woman/4005-85775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85781/","id":85781,"name":"Nick Necro","site_detail_url":"https://comicvine.gamespot.com/nick-necro/4005-85781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85890/","id":85890,"name":"Father Lost","site_detail_url":"https://comicvine.gamespot.com/father-lost/4005-85890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85899/","id":85899,"name":"Dr Ziegel","site_detail_url":"https://comicvine.gamespot.com/dr-ziegel/4005-85899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85934/","id":85934,"name":"Pinoko","site_detail_url":"https://comicvine.gamespot.com/pinoko/4005-85934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85948/","id":85948,"name":"Murd the Oppressor","site_detail_url":"https://comicvine.gamespot.com/murd-the-oppressor/4005-85948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85981/","id":85981,"name":"Luke Smith","site_detail_url":"https://comicvine.gamespot.com/luke-smith/4005-85981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86019/","id":86019,"name":"The Hood","site_detail_url":"https://comicvine.gamespot.com/the-hood/4005-86019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86077/","id":86077,"name":"Lord Daggor","site_detail_url":"https://comicvine.gamespot.com/lord-daggor/4005-86077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86078/","id":86078,"name":"Thraxx","site_detail_url":"https://comicvine.gamespot.com/thraxx/4005-86078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86102/","id":86102,"name":"H'el","site_detail_url":"https://comicvine.gamespot.com/hel/4005-86102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86176/","id":86176,"name":"Little Green Men","site_detail_url":"https://comicvine.gamespot.com/little-green-men/4005-86176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86242/","id":86242,"name":"Starlord (Quarrel)","site_detail_url":"https://comicvine.gamespot.com/starlord-quarrel/4005-86242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86311/","id":86311,"name":"Otaki","site_detail_url":"https://comicvine.gamespot.com/otaki/4005-86311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86316/","id":86316,"name":"The Sith Emperor","site_detail_url":"https://comicvine.gamespot.com/the-sith-emperor/4005-86316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86390/","id":86390,"name":"Carrion (Warren)","site_detail_url":"https://comicvine.gamespot.com/carrion-warren/4005-86390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86450/","id":86450,"name":"Susan Hatchi","site_detail_url":"https://comicvine.gamespot.com/susan-hatchi/4005-86450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86687/","id":86687,"name":"Flagellum","site_detail_url":"https://comicvine.gamespot.com/flagellum/4005-86687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86734/","id":86734,"name":"Amuro Ray","site_detail_url":"https://comicvine.gamespot.com/amuro-ray/4005-86734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86842/","id":86842,"name":"Dreaming Maiden","site_detail_url":"https://comicvine.gamespot.com/dreaming-maiden/4005-86842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86869/","id":86869,"name":"Mara Prince","site_detail_url":"https://comicvine.gamespot.com/mara-prince/4005-86869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86984/","id":86984,"name":"Black Swan","site_detail_url":"https://comicvine.gamespot.com/black-swan/4005-86984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87025/","id":87025,"name":"Matriarch Benezia","site_detail_url":"https://comicvine.gamespot.com/matriarch-benezia/4005-87025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87026/","id":87026,"name":"Thorian","site_detail_url":"https://comicvine.gamespot.com/thorian/4005-87026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87110/","id":87110,"name":"Dominas The Wavemaster","site_detail_url":"https://comicvine.gamespot.com/dominas-the-wavemaster/4005-87110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87201/","id":87201,"name":"Princess Celestia","site_detail_url":"https://comicvine.gamespot.com/princess-celestia/4005-87201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87202/","id":87202,"name":"Princess Luna","site_detail_url":"https://comicvine.gamespot.com/princess-luna/4005-87202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87285/","id":87285,"name":"Kasey","site_detail_url":"https://comicvine.gamespot.com/kasey/4005-87285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87326/","id":87326,"name":"Luca Aldine","site_detail_url":"https://comicvine.gamespot.com/luca-aldine/4005-87326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87428/","id":87428,"name":"Cyborg 001","site_detail_url":"https://comicvine.gamespot.com/cyborg-001/4005-87428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87574/","id":87574,"name":"Kanami Yuta","site_detail_url":"https://comicvine.gamespot.com/kanami-yuta/4005-87574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87701/","id":87701,"name":"Helen","site_detail_url":"https://comicvine.gamespot.com/helen/4005-87701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87702/","id":87702,"name":"Biina","site_detail_url":"https://comicvine.gamespot.com/biina/4005-87702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87850/","id":87850,"name":"Rassilon","site_detail_url":"https://comicvine.gamespot.com/rassilon/4005-87850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88011/","id":88011,"name":"Hunson Abadeer","site_detail_url":"https://comicvine.gamespot.com/hunson-abadeer/4005-88011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88064/","id":88064,"name":"Prithi","site_detail_url":"https://comicvine.gamespot.com/prithi/4005-88064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88071/","id":88071,"name":"V.V.","site_detail_url":"https://comicvine.gamespot.com/vv/4005-88071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88095/","id":88095,"name":"Aquarius","site_detail_url":"https://comicvine.gamespot.com/aquarius/4005-88095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88204/","id":88204,"name":"Jerome Curry","site_detail_url":"https://comicvine.gamespot.com/jerome-curry/4005-88204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88306/","id":88306,"name":"Jenny Soul","site_detail_url":"https://comicvine.gamespot.com/jenny-soul/4005-88306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88687/","id":88687,"name":"Barbatos","site_detail_url":"https://comicvine.gamespot.com/barbatos/4005-88687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88746/","id":88746,"name":"Venus","site_detail_url":"https://comicvine.gamespot.com/venus/4005-88746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88804/","id":88804,"name":"Nightmare Nurse","site_detail_url":"https://comicvine.gamespot.com/nightmare-nurse/4005-88804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88988/","id":88988,"name":"Artie","site_detail_url":"https://comicvine.gamespot.com/artie/4005-88988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89213/","id":89213,"name":"Skips","site_detail_url":"https://comicvine.gamespot.com/skips/4005-89213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89541/","id":89541,"name":"Mother Talzin","site_detail_url":"https://comicvine.gamespot.com/mother-talzin/4005-89541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89579/","id":89579,"name":"The Siren","site_detail_url":"https://comicvine.gamespot.com/the-siren/4005-89579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89603/","id":89603,"name":"Melek","site_detail_url":"https://comicvine.gamespot.com/melek/4005-89603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89608/","id":89608,"name":"Idris","site_detail_url":"https://comicvine.gamespot.com/idris/4005-89608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90107/","id":90107,"name":"Shen Xorn","site_detail_url":"https://comicvine.gamespot.com/shen-xorn/4005-90107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90132/","id":90132,"name":"Mongul the Elder","site_detail_url":"https://comicvine.gamespot.com/mongul-the-elder/4005-90132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90186/","id":90186,"name":"Tenchi Masaki","site_detail_url":"https://comicvine.gamespot.com/tenchi-masaki/4005-90186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90250/","id":90250,"name":"Daegen Lok","site_detail_url":"https://comicvine.gamespot.com/daegen-lok/4005-90250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90469/","id":90469,"name":"Thoth","site_detail_url":"https://comicvine.gamespot.com/thoth/4005-90469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90512/","id":90512,"name":"H.I.V.E. Queen","site_detail_url":"https://comicvine.gamespot.com/h-i-v-e-queen/4005-90512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90513/","id":90513,"name":"Kaiyo","site_detail_url":"https://comicvine.gamespot.com/kaiyo/4005-90513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90521/","id":90521,"name":"Supergiant","site_detail_url":"https://comicvine.gamespot.com/supergiant/4005-90521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90664/","id":90664,"name":"Hans the Perfect Mutant","site_detail_url":"https://comicvine.gamespot.com/hans-the-perfect-mutant/4005-90664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90936/","id":90936,"name":"Kyubey","site_detail_url":"https://comicvine.gamespot.com/kyubey/4005-90936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90978/","id":90978,"name":"Uplink","site_detail_url":"https://comicvine.gamespot.com/uplink/4005-90978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91332/","id":91332,"name":"El-Ta","site_detail_url":"https://comicvine.gamespot.com/el-ta/4005-91332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91460/","id":91460,"name":"Judge Schaefer","site_detail_url":"https://comicvine.gamespot.com/judge-schaefer/4005-91460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91501/","id":91501,"name":"Abby-L","site_detail_url":"https://comicvine.gamespot.com/abby-l/4005-91501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91538/","id":91538,"name":"Ricorta","site_detail_url":"https://comicvine.gamespot.com/ricorta/4005-91538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91545/","id":91545,"name":"The Celestial Gardener","site_detail_url":"https://comicvine.gamespot.com/the-celestial-gardener/4005-91545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91765/","id":91765,"name":"Bala","site_detail_url":"https://comicvine.gamespot.com/bala/4005-91765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91766/","id":91766,"name":"Kanu","site_detail_url":"https://comicvine.gamespot.com/kanu/4005-91766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91767/","id":91767,"name":"King Ku","site_detail_url":"https://comicvine.gamespot.com/king-ku/4005-91767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91919/","id":91919,"name":"M'yri'ah J'onzz","site_detail_url":"https://comicvine.gamespot.com/myriah-jonzz/4005-91919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91920/","id":91920,"name":"M'yrnn J'onnz","site_detail_url":"https://comicvine.gamespot.com/myrnn-jonnz/4005-91920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91928/","id":91928,"name":"A'monn A'mokk","site_detail_url":"https://comicvine.gamespot.com/amonn-amokk/4005-91928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91929/","id":91929,"name":"A'morr","site_detail_url":"https://comicvine.gamespot.com/amorr/4005-91929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92155/","id":92155,"name":"Rose Steadbaur","site_detail_url":"https://comicvine.gamespot.com/rose-steadbaur/4005-92155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92363/","id":92363,"name":"Figillulli","site_detail_url":"https://comicvine.gamespot.com/figillulli/4005-92363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92395/","id":92395,"name":"Weed","site_detail_url":"https://comicvine.gamespot.com/weed/4005-92395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92491/","id":92491,"name":"Sally Fortune","site_detail_url":"https://comicvine.gamespot.com/sally-fortune/4005-92491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92524/","id":92524,"name":"Hyoudou Issei","site_detail_url":"https://comicvine.gamespot.com/hyoudou-issei/4005-92524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92634/","id":92634,"name":"The Sixth Light","site_detail_url":"https://comicvine.gamespot.com/the-sixth-light/4005-92634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92716/","id":92716,"name":"Maha Manav","site_detail_url":"https://comicvine.gamespot.com/maha-manav/4005-92716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92750/","id":92750,"name":"Angel of Death","site_detail_url":"https://comicvine.gamespot.com/angel-of-death/4005-92750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92763/","id":92763,"name":"Yugam","site_detail_url":"https://comicvine.gamespot.com/yugam/4005-92763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92775/","id":92775,"name":"Lyca","site_detail_url":"https://comicvine.gamespot.com/lyca/4005-92775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93043/","id":93043,"name":"Pyscatos","site_detail_url":"https://comicvine.gamespot.com/pyscatos/4005-93043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93044/","id":93044,"name":"Jhandark","site_detail_url":"https://comicvine.gamespot.com/jhandark/4005-93044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93045/","id":93045,"name":"Bekkit","site_detail_url":"https://comicvine.gamespot.com/bekkit/4005-93045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93046/","id":93046,"name":"Aurwel","site_detail_url":"https://comicvine.gamespot.com/aurwel/4005-93046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93225/","id":93225,"name":"Goliad","site_detail_url":"https://comicvine.gamespot.com/goliad/4005-93225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93411/","id":93411,"name":"Ion","site_detail_url":"https://comicvine.gamespot.com/ion/4005-93411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93592/","id":93592,"name":"Captain Hazzard","site_detail_url":"https://comicvine.gamespot.com/captain-hazzard/4005-93592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93668/","id":93668,"name":"Keres","site_detail_url":"https://comicvine.gamespot.com/keres/4005-93668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93832/","id":93832,"name":"Xavier","site_detail_url":"https://comicvine.gamespot.com/xavier/4005-93832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93893/","id":93893,"name":"Ginny Guzman","site_detail_url":"https://comicvine.gamespot.com/ginny-guzman/4005-93893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93897/","id":93897,"name":"Hive","site_detail_url":"https://comicvine.gamespot.com/hive/4005-93897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93918/","id":93918,"name":"King","site_detail_url":"https://comicvine.gamespot.com/king/4005-93918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93949/","id":93949,"name":"Zalla","site_detail_url":"https://comicvine.gamespot.com/zalla/4005-93949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93962/","id":93962,"name":"Zekrom","site_detail_url":"https://comicvine.gamespot.com/zekrom/4005-93962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94048/","id":94048,"name":"Ageha Yoshina","site_detail_url":"https://comicvine.gamespot.com/ageha-yoshina/4005-94048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94210/","id":94210,"name":"Paalko","site_detail_url":"https://comicvine.gamespot.com/paalko/4005-94210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94476/","id":94476,"name":"Jason Blood ","site_detail_url":"https://comicvine.gamespot.com/jason-blood/4005-94476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94568/","id":94568,"name":"Darth Malgus","site_detail_url":"https://comicvine.gamespot.com/darth-malgus/4005-94568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94858/","id":94858,"name":"Animal Teen","site_detail_url":"https://comicvine.gamespot.com/animal-teen/4005-94858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94914/","id":94914,"name":"Zett Jukassa","site_detail_url":"https://comicvine.gamespot.com/zett-jukassa/4005-94914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96026/","id":96026,"name":"Yekop","site_detail_url":"https://comicvine.gamespot.com/yekop/4005-96026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96159/","id":96159,"name":"Erik Gavlin","site_detail_url":"https://comicvine.gamespot.com/erik-gavlin/4005-96159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96220/","id":96220,"name":"Eclipse the Darkling","site_detail_url":"https://comicvine.gamespot.com/eclipse-the-darkling/4005-96220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96237/","id":96237,"name":"Remulus Dreypa","site_detail_url":"https://comicvine.gamespot.com/remulus-dreypa/4005-96237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96745/","id":96745,"name":"Materna Minxx","site_detail_url":"https://comicvine.gamespot.com/materna-minxx/4005-96745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96829/","id":96829,"name":"Jellal Fernandes","site_detail_url":"https://comicvine.gamespot.com/jellal-fernandes/4005-96829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96846/","id":96846,"name":"Locus","site_detail_url":"https://comicvine.gamespot.com/locus/4005-96846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96880/","id":96880,"name":"Bonnie Bennett","site_detail_url":"https://comicvine.gamespot.com/bonnie-bennett/4005-96880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97003/","id":97003,"name":"Shepherd","site_detail_url":"https://comicvine.gamespot.com/shepherd/4005-97003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97167/","id":97167,"name":"Black Death","site_detail_url":"https://comicvine.gamespot.com/black-death/4005-97167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97254/","id":97254,"name":"The Holy One","site_detail_url":"https://comicvine.gamespot.com/the-holy-one/4005-97254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97482/","id":97482,"name":"Nate Xavier","site_detail_url":"https://comicvine.gamespot.com/nate-xavier/4005-97482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97664/","id":97664,"name":"Princess Ramia","site_detail_url":"https://comicvine.gamespot.com/princess-ramia/4005-97664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98451/","id":98451,"name":"Siege","site_detail_url":"https://comicvine.gamespot.com/siege/4005-98451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98452/","id":98452,"name":"Quaros","site_detail_url":"https://comicvine.gamespot.com/quaros/4005-98452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98454/","id":98454,"name":"Gurion","site_detail_url":"https://comicvine.gamespot.com/gurion/4005-98454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98558/","id":98558,"name":"Midora","site_detail_url":"https://comicvine.gamespot.com/midora/4005-98558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98620/","id":98620,"name":"Winter Witch","site_detail_url":"https://comicvine.gamespot.com/winter-witch/4005-98620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98644/","id":98644,"name":"Monkey Brains","site_detail_url":"https://comicvine.gamespot.com/monkey-brains/4005-98644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98925/","id":98925,"name":"Mao","site_detail_url":"https://comicvine.gamespot.com/mao/4005-98925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99347/","id":99347,"name":"Judge Fistula","site_detail_url":"https://comicvine.gamespot.com/judge-fistula/4005-99347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99349/","id":99349,"name":"Judge Stigma","site_detail_url":"https://comicvine.gamespot.com/judge-stigma/4005-99349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99355/","id":99355,"name":"Judge Metastasis","site_detail_url":"https://comicvine.gamespot.com/judge-metastasis/4005-99355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99510/","id":99510,"name":"Cloud","site_detail_url":"https://comicvine.gamespot.com/cloud/4005-99510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99511/","id":99511,"name":"Headspace","site_detail_url":"https://comicvine.gamespot.com/headspace/4005-99511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99523/","id":99523,"name":"Telex","site_detail_url":"https://comicvine.gamespot.com/telex/4005-99523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99908/","id":99908,"name":"Network","site_detail_url":"https://comicvine.gamespot.com/network/4005-99908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100117/","id":100117,"name":"Joshua Black","site_detail_url":"https://comicvine.gamespot.com/joshua-black/4005-100117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100124/","id":100124,"name":"Never Queen","site_detail_url":"https://comicvine.gamespot.com/never-queen/4005-100124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100256/","id":100256,"name":"Kalibos","site_detail_url":"https://comicvine.gamespot.com/kalibos/4005-100256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100614/","id":100614,"name":"Genesect","site_detail_url":"https://comicvine.gamespot.com/genesect/4005-100614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101143/","id":101143,"name":"Shamkid-sama","site_detail_url":"https://comicvine.gamespot.com/shamkid-sama/4005-101143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101145/","id":101145,"name":"Roy","site_detail_url":"https://comicvine.gamespot.com/roy/4005-101145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101223/","id":101223,"name":"Gowther","site_detail_url":"https://comicvine.gamespot.com/gowther/4005-101223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101679/","id":101679,"name":"Hakudoshi","site_detail_url":"https://comicvine.gamespot.com/hakudoshi/4005-101679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101680/","id":101680,"name":"Mallorie","site_detail_url":"https://comicvine.gamespot.com/mallorie/4005-101680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101681/","id":101681,"name":"Minette","site_detail_url":"https://comicvine.gamespot.com/minette/4005-101681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101698/","id":101698,"name":"Miki Saegusa","site_detail_url":"https://comicvine.gamespot.com/miki-saegusa/4005-101698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101817/","id":101817,"name":"Lady Hel","site_detail_url":"https://comicvine.gamespot.com/lady-hel/4005-101817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101874/","id":101874,"name":"Phantasm","site_detail_url":"https://comicvine.gamespot.com/phantasm/4005-101874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102287/","id":102287,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-102287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102308/","id":102308,"name":"Celeana ","site_detail_url":"https://comicvine.gamespot.com/celeana/4005-102308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103194/","id":103194,"name":"Dez Trevius","site_detail_url":"https://comicvine.gamespot.com/dez-trevius/4005-103194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103254/","id":103254,"name":"Kalliope","site_detail_url":"https://comicvine.gamespot.com/kalliope/4005-103254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103282/","id":103282,"name":"Ted Brautigan","site_detail_url":"https://comicvine.gamespot.com/ted-brautigan/4005-103282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103460/","id":103460,"name":"Cordele Wolfe","site_detail_url":"https://comicvine.gamespot.com/cordele-wolfe/4005-103460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103718/","id":103718,"name":"Pops Maellard","site_detail_url":"https://comicvine.gamespot.com/pops-maellard/4005-103718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103798/","id":103798,"name":"Oy","site_detail_url":"https://comicvine.gamespot.com/oy/4005-103798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104011/","id":104011,"name":"Warren Rocko","site_detail_url":"https://comicvine.gamespot.com/warren-rocko/4005-104011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104020/","id":104020,"name":"Silver Fullbuster","site_detail_url":"https://comicvine.gamespot.com/silver-fullbuster/4005-104020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104139/","id":104139,"name":"Great Red Brain","site_detail_url":"https://comicvine.gamespot.com/great-red-brain/4005-104139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104155/","id":104155,"name":"Black Witch","site_detail_url":"https://comicvine.gamespot.com/black-witch/4005-104155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104473/","id":104473,"name":"Psych","site_detail_url":"https://comicvine.gamespot.com/psych/4005-104473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104569/","id":104569,"name":"Karmang","site_detail_url":"https://comicvine.gamespot.com/karmang/4005-104569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104654/","id":104654,"name":"The Convert","site_detail_url":"https://comicvine.gamespot.com/the-convert/4005-104654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105183/","id":105183,"name":"Pret Uncle","site_detail_url":"https://comicvine.gamespot.com/pret-uncle/4005-105183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105184/","id":105184,"name":"Awadhi","site_detail_url":"https://comicvine.gamespot.com/awadhi/4005-105184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105198/","id":105198,"name":"Kirigi","site_detail_url":"https://comicvine.gamespot.com/kirigi/4005-105198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105348/","id":105348,"name":"Julius Dupree","site_detail_url":"https://comicvine.gamespot.com/julius-dupree/4005-105348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105425/","id":105425,"name":"B.I.O.N.","site_detail_url":"https://comicvine.gamespot.com/b-i-o-n/4005-105425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105492/","id":105492,"name":"Mister Mastermind","site_detail_url":"https://comicvine.gamespot.com/mister-mastermind/4005-105492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105493/","id":105493,"name":"Mindfuck","site_detail_url":"https://comicvine.gamespot.com/mindfuck/4005-105493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105571/","id":105571,"name":"Akiza Izinski","site_detail_url":"https://comicvine.gamespot.com/akiza-izinski/4005-105571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105646/","id":105646,"name":"Tia Castaway","site_detail_url":"https://comicvine.gamespot.com/tia-castaway/4005-105646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105843/","id":105843,"name":"Faithful John","site_detail_url":"https://comicvine.gamespot.com/faithful-john/4005-105843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105895/","id":105895,"name":"Persephone","site_detail_url":"https://comicvine.gamespot.com/persephone/4005-105895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105952/","id":105952,"name":"Matthew Malloy","site_detail_url":"https://comicvine.gamespot.com/matthew-malloy/4005-105952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106445/","id":106445,"name":"Sterilon","site_detail_url":"https://comicvine.gamespot.com/sterilon/4005-106445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107058/","id":107058,"name":"Kento Roe","site_detail_url":"https://comicvine.gamespot.com/kento-roe/4005-107058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107925/","id":107925,"name":"Mr. Mole","site_detail_url":"https://comicvine.gamespot.com/mr-mole/4005-107925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108149/","id":108149,"name":"Chandkaal","site_detail_url":"https://comicvine.gamespot.com/chandkaal/4005-108149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108267/","id":108267,"name":"Gururaj Bhatiki","site_detail_url":"https://comicvine.gamespot.com/gururaj-bhatiki/4005-108267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108268/","id":108268,"name":"Jingaloo","site_detail_url":"https://comicvine.gamespot.com/jingaloo/4005-108268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108306/","id":108306,"name":"Baba Gorakhnath","site_detail_url":"https://comicvine.gamespot.com/baba-gorakhnath/4005-108306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108806/","id":108806,"name":"Chi You","site_detail_url":"https://comicvine.gamespot.com/chi-you/4005-108806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108889/","id":108889,"name":"Menta","site_detail_url":"https://comicvine.gamespot.com/menta/4005-108889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108893/","id":108893,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-108893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108964/","id":108964,"name":"Najimi Ajimu","site_detail_url":"https://comicvine.gamespot.com/najimi-ajimu/4005-108964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109749/","id":109749,"name":"Elisa Warsame","site_detail_url":"https://comicvine.gamespot.com/elisa-warsame/4005-109749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109921/","id":109921,"name":"Ajna","site_detail_url":"https://comicvine.gamespot.com/ajna/4005-109921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109982/","id":109982,"name":"Odysseus","site_detail_url":"https://comicvine.gamespot.com/odysseus/4005-109982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110096/","id":110096,"name":"The Poet","site_detail_url":"https://comicvine.gamespot.com/the-poet/4005-110096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110387/","id":110387,"name":"Sphinx (Karim)","site_detail_url":"https://comicvine.gamespot.com/sphinx-karim/4005-110387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110429/","id":110429,"name":"Philip Chang","site_detail_url":"https://comicvine.gamespot.com/philip-chang/4005-110429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110444/","id":110444,"name":"Michael Monday","site_detail_url":"https://comicvine.gamespot.com/michael-monday/4005-110444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111080/","id":111080,"name":"Gruff","site_detail_url":"https://comicvine.gamespot.com/gruff/4005-111080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111081/","id":111081,"name":"Syd","site_detail_url":"https://comicvine.gamespot.com/syd/4005-111081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111082/","id":111082,"name":"Misery Kid","site_detail_url":"https://comicvine.gamespot.com/misery-kid/4005-111082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111083/","id":111083,"name":"Moon","site_detail_url":"https://comicvine.gamespot.com/moon/4005-111083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111089/","id":111089,"name":"The Voice","site_detail_url":"https://comicvine.gamespot.com/the-voice/4005-111089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111117/","id":111117,"name":"Montgomery Knox","site_detail_url":"https://comicvine.gamespot.com/montgomery-knox/4005-111117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111338/","id":111338,"name":"Mard Geer Tartarus","site_detail_url":"https://comicvine.gamespot.com/mard-geer-tartarus/4005-111338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111830/","id":111830,"name":"Takeda","site_detail_url":"https://comicvine.gamespot.com/takeda/4005-111830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111840/","id":111840,"name":"Morris Santiago","site_detail_url":"https://comicvine.gamespot.com/morris-santiago/4005-111840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112512/","id":112512,"name":"Roku","site_detail_url":"https://comicvine.gamespot.com/roku/4005-112512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112594/","id":112594,"name":"Superdemon","site_detail_url":"https://comicvine.gamespot.com/superdemon/4005-112594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113310/","id":113310,"name":"Rokudo Mukuro","site_detail_url":"https://comicvine.gamespot.com/rokudo-mukuro/4005-113310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113540/","id":113540,"name":"Melana","site_detail_url":"https://comicvine.gamespot.com/melana/4005-113540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113748/","id":113748,"name":"Charal","site_detail_url":"https://comicvine.gamespot.com/charal/4005-113748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114213/","id":114213,"name":"Sramian Snitch","site_detail_url":"https://comicvine.gamespot.com/sramian-snitch/4005-114213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114353/","id":114353,"name":"Brainy Barker","site_detail_url":"https://comicvine.gamespot.com/brainy-barker/4005-114353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114580/","id":114580,"name":"Prometheus","site_detail_url":"https://comicvine.gamespot.com/prometheus/4005-114580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114581/","id":114581,"name":"Daniel Fricks","site_detail_url":"https://comicvine.gamespot.com/daniel-fricks/4005-114581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114654/","id":114654,"name":"Divinity","site_detail_url":"https://comicvine.gamespot.com/divinity/4005-114654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115916/","id":115916,"name":"Zinna","site_detail_url":"https://comicvine.gamespot.com/zinna/4005-115916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115971/","id":115971,"name":"Brain-Wave","site_detail_url":"https://comicvine.gamespot.com/brain-wave/4005-115971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116121/","id":116121,"name":"Paragon","site_detail_url":"https://comicvine.gamespot.com/paragon/4005-116121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116682/","id":116682,"name":"Super-Martian","site_detail_url":"https://comicvine.gamespot.com/super-martian/4005-116682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117117/","id":117117,"name":"Ryoko","site_detail_url":"https://comicvine.gamespot.com/ryoko/4005-117117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117240/","id":117240,"name":"Queen Solala","site_detail_url":"https://comicvine.gamespot.com/queen-solala/4005-117240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117495/","id":117495,"name":"Crowley","site_detail_url":"https://comicvine.gamespot.com/crowley/4005-117495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118143/","id":118143,"name":"Khalid Nassour","site_detail_url":"https://comicvine.gamespot.com/khalid-nassour/4005-118143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118158/","id":118158,"name":"Shootan","site_detail_url":"https://comicvine.gamespot.com/shootan/4005-118158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118372/","id":118372,"name":"Dirk Gently","site_detail_url":"https://comicvine.gamespot.com/dirk-gently/4005-118372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118512/","id":118512,"name":"The Prince","site_detail_url":"https://comicvine.gamespot.com/the-prince/4005-118512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118618/","id":118618,"name":"Zeena","site_detail_url":"https://comicvine.gamespot.com/zeena/4005-118618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118755/","id":118755,"name":"Regent","site_detail_url":"https://comicvine.gamespot.com/regent/4005-118755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118825/","id":118825,"name":"Sevara","site_detail_url":"https://comicvine.gamespot.com/sevara/4005-118825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119086/","id":119086,"name":"Mr. Biscuits","site_detail_url":"https://comicvine.gamespot.com/mr-biscuits/4005-119086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119588/","id":119588,"name":"Loner","site_detail_url":"https://comicvine.gamespot.com/loner/4005-119588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119612/","id":119612,"name":"Avril Williams","site_detail_url":"https://comicvine.gamespot.com/avril-williams/4005-119612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119654/","id":119654,"name":"Skal'Nas","site_detail_url":"https://comicvine.gamespot.com/skalnas/4005-119654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119699/","id":119699,"name":"Nero","site_detail_url":"https://comicvine.gamespot.com/nero/4005-119699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120328/","id":120328,"name":"The Pearl","site_detail_url":"https://comicvine.gamespot.com/the-pearl/4005-120328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120330/","id":120330,"name":"Lapetus","site_detail_url":"https://comicvine.gamespot.com/lapetus/4005-120330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120335/","id":120335,"name":"Mrs. Takahara","site_detail_url":"https://comicvine.gamespot.com/mrs-takahara/4005-120335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120514/","id":120514,"name":"Elvith","site_detail_url":"https://comicvine.gamespot.com/elvith/4005-120514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120515/","id":120515,"name":"Quiller","site_detail_url":"https://comicvine.gamespot.com/quiller/4005-120515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120772/","id":120772,"name":"Joan White","site_detail_url":"https://comicvine.gamespot.com/joan-white/4005-120772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120776/","id":120776,"name":"King Trench","site_detail_url":"https://comicvine.gamespot.com/king-trench/4005-120776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120797/","id":120797,"name":"Marine Marauder","site_detail_url":"https://comicvine.gamespot.com/marine-marauder/4005-120797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121156/","id":121156,"name":"Blue Dragon","site_detail_url":"https://comicvine.gamespot.com/blue-dragon/4005-121156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121157/","id":121157,"name":"Keil Fluge","site_detail_url":"https://comicvine.gamespot.com/keil-fluge/4005-121157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121258/","id":121258,"name":"Suu","site_detail_url":"https://comicvine.gamespot.com/suu/4005-121258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121328/","id":121328,"name":"Mystere","site_detail_url":"https://comicvine.gamespot.com/mystere/4005-121328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121415/","id":121415,"name":"Raina","site_detail_url":"https://comicvine.gamespot.com/raina/4005-121415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121695/","id":121695,"name":"Daryl Wessel","site_detail_url":"https://comicvine.gamespot.com/daryl-wessel/4005-121695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121890/","id":121890,"name":"Synapse","site_detail_url":"https://comicvine.gamespot.com/synapse/4005-121890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121998/","id":121998,"name":"Sadan, Master of Chaos","site_detail_url":"https://comicvine.gamespot.com/sadan-master-of-chaos/4005-121998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122212/","id":122212,"name":"Spectral Wayfarer","site_detail_url":"https://comicvine.gamespot.com/spectral-wayfarer/4005-122212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122230/","id":122230,"name":"Gaya: The Mentor","site_detail_url":"https://comicvine.gamespot.com/gaya-the-mentor/4005-122230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122231/","id":122231,"name":"Atlas: The Savior","site_detail_url":"https://comicvine.gamespot.com/atlas-the-savior/4005-122231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122233/","id":122233,"name":"Khaos: The Destroyer","site_detail_url":"https://comicvine.gamespot.com/khaos-the-destroyer/4005-122233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122733/","id":122733,"name":"Tzeentch","site_detail_url":"https://comicvine.gamespot.com/tzeentch/4005-122733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122734/","id":122734,"name":"God-Emperor of Mankind","site_detail_url":"https://comicvine.gamespot.com/godemperor-of-mankind/4005-122734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122747/","id":122747,"name":"Slaanesh","site_detail_url":"https://comicvine.gamespot.com/slaanesh/4005-122747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122750/","id":122750,"name":"Lady Nahema","site_detail_url":"https://comicvine.gamespot.com/lady-nahema/4005-122750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122752/","id":122752,"name":"Thorke","site_detail_url":"https://comicvine.gamespot.com/thorke/4005-122752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122756/","id":122756,"name":"Lord Commander Dante","site_detail_url":"https://comicvine.gamespot.com/lord-commander-dante/4005-122756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122757/","id":122757,"name":"Mephiston","site_detail_url":"https://comicvine.gamespot.com/mephiston/4005-122757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122862/","id":122862,"name":"Lamiah","site_detail_url":"https://comicvine.gamespot.com/lamiah/4005-122862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122865/","id":122865,"name":"Shrek","site_detail_url":"https://comicvine.gamespot.com/shrek/4005-122865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122867/","id":122867,"name":"Akhar Nun","site_detail_url":"https://comicvine.gamespot.com/akhar-nun/4005-122867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122911/","id":122911,"name":"Ryakar","site_detail_url":"https://comicvine.gamespot.com/ryakar/4005-122911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123039/","id":123039,"name":"Mulawa","site_detail_url":"https://comicvine.gamespot.com/mulawa/4005-123039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123096/","id":123096,"name":"Lord Oenghus Mordha","site_detail_url":"https://comicvine.gamespot.com/lord-oenghus-mordha/4005-123096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123097/","id":123097,"name":"Anyel Zant","site_detail_url":"https://comicvine.gamespot.com/anyel-zant/4005-123097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123293/","id":123293,"name":"Aya Mikage","site_detail_url":"https://comicvine.gamespot.com/aya-mikage/4005-123293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123476/","id":123476,"name":"Heasley","site_detail_url":"https://comicvine.gamespot.com/heasley/4005-123476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123524/","id":123524,"name":"Tess Solomon","site_detail_url":"https://comicvine.gamespot.com/tess-solomon/4005-123524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124418/","id":124418,"name":"Glyph","site_detail_url":"https://comicvine.gamespot.com/glyph/4005-124418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124542/","id":124542,"name":"Sculptor","site_detail_url":"https://comicvine.gamespot.com/sculptor/4005-124542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124714/","id":124714,"name":"Tatsumaki","site_detail_url":"https://comicvine.gamespot.com/tatsumaki/4005-124714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125216/","id":125216,"name":"Blanque","site_detail_url":"https://comicvine.gamespot.com/blanque/4005-125216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125973/","id":125973,"name":"Lawman","site_detail_url":"https://comicvine.gamespot.com/lawman/4005-125973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126476/","id":126476,"name":"Kevin Brashear","site_detail_url":"https://comicvine.gamespot.com/kevin-brashear/4005-126476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126510/","id":126510,"name":"Invel Yura","site_detail_url":"https://comicvine.gamespot.com/invel-yura/4005-126510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126622/","id":126622,"name":"Living Dream","site_detail_url":"https://comicvine.gamespot.com/living-dream/4005-126622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126650/","id":126650,"name":"Psi","site_detail_url":"https://comicvine.gamespot.com/psi/4005-126650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126714/","id":126714,"name":"Andreji","site_detail_url":"https://comicvine.gamespot.com/andreji/4005-126714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127181/","id":127181,"name":"Skitz","site_detail_url":"https://comicvine.gamespot.com/skitz/4005-127181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127863/","id":127863,"name":"Zenzi","site_detail_url":"https://comicvine.gamespot.com/zenzi/4005-127863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127917/","id":127917,"name":"Kenna Gabriel","site_detail_url":"https://comicvine.gamespot.com/kenna-gabriel/4005-127917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128193/","id":128193,"name":"Myshka","site_detail_url":"https://comicvine.gamespot.com/myshka/4005-128193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129630/","id":129630,"name":"Gabriel Newman","site_detail_url":"https://comicvine.gamespot.com/gabriel-newman/4005-129630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130012/","id":130012,"name":"Jason","site_detail_url":"https://comicvine.gamespot.com/jason/4005-130012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130178/","id":130178,"name":"Elisa Sinclair","site_detail_url":"https://comicvine.gamespot.com/elisa-sinclair/4005-130178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130472/","id":130472,"name":"Ainz Ooal Gown","site_detail_url":"https://comicvine.gamespot.com/ainz-ooal-gown/4005-130472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130891/","id":130891,"name":"Hawk Moth","site_detail_url":"https://comicvine.gamespot.com/hawk-moth/4005-130891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130894/","id":130894,"name":"Castiel","site_detail_url":"https://comicvine.gamespot.com/castiel/4005-130894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130989/","id":130989,"name":"Cobb Branden","site_detail_url":"https://comicvine.gamespot.com/cobb-branden/4005-130989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131366/","id":131366,"name":"Father Morand","site_detail_url":"https://comicvine.gamespot.com/father-morand/4005-131366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131538/","id":131538,"name":"Kibutsuji Muzan","site_detail_url":"https://comicvine.gamespot.com/kibutsuji-muzan/4005-131538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131584/","id":131584,"name":"Dave Dubosky","site_detail_url":"https://comicvine.gamespot.com/dave-dubosky/4005-131584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131588/","id":131588,"name":"Officer Camilla Byers","site_detail_url":"https://comicvine.gamespot.com/officer-camilla-byers/4005-131588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131608/","id":131608,"name":"Raikou","site_detail_url":"https://comicvine.gamespot.com/raikou/4005-131608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131949/","id":131949,"name":"Ernest Scope","site_detail_url":"https://comicvine.gamespot.com/ernest-scope/4005-131949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131952/","id":131952,"name":"Simon Lestron","site_detail_url":"https://comicvine.gamespot.com/simon-lestron/4005-131952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131953/","id":131953,"name":"Lucy Robinson","site_detail_url":"https://comicvine.gamespot.com/lucy-robinson/4005-131953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131954/","id":131954,"name":"Gracie Smith","site_detail_url":"https://comicvine.gamespot.com/gracie-smith/4005-131954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131955/","id":131955,"name":"Tobias Messenger","site_detail_url":"https://comicvine.gamespot.com/tobias-messenger/4005-131955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132164/","id":132164,"name":"Weeping Lion","site_detail_url":"https://comicvine.gamespot.com/weeping-lion/4005-132164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132221/","id":132221,"name":"Snoke","site_detail_url":"https://comicvine.gamespot.com/snoke/4005-132221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132288/","id":132288,"name":"Gaster","site_detail_url":"https://comicvine.gamespot.com/gaster/4005-132288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132854/","id":132854,"name":"Mira","site_detail_url":"https://comicvine.gamespot.com/mira/4005-132854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133011/","id":133011,"name":"Blind Sparrow","site_detail_url":"https://comicvine.gamespot.com/blind-sparrow/4005-133011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133185/","id":133185,"name":"Daemon Spade","site_detail_url":"https://comicvine.gamespot.com/daemon-spade/4005-133185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133192/","id":133192,"name":"Checker Face","site_detail_url":"https://comicvine.gamespot.com/checker-face/4005-133192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133359/","id":133359,"name":"Nathalie Sancoeur ","site_detail_url":"https://comicvine.gamespot.com/nathalie-sancoeur/4005-133359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133463/","id":133463,"name":"Gulag","site_detail_url":"https://comicvine.gamespot.com/gulag/4005-133463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133682/","id":133682,"name":"Downer","site_detail_url":"https://comicvine.gamespot.com/downer/4005-133682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133746/","id":133746,"name":"Vin Nastacio","site_detail_url":"https://comicvine.gamespot.com/vin-nastacio/4005-133746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134064/","id":134064,"name":"Sinbad","site_detail_url":"https://comicvine.gamespot.com/sinbad/4005-134064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134196/","id":134196,"name":"Yennefer","site_detail_url":"https://comicvine.gamespot.com/yennefer/4005-134196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134931/","id":134931,"name":"Grana","site_detail_url":"https://comicvine.gamespot.com/grana/4005-134931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134952/","id":134952,"name":"Marie Tenjuin","site_detail_url":"https://comicvine.gamespot.com/marie-tenjuin/4005-134952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135087/","id":135087,"name":"Albedo","site_detail_url":"https://comicvine.gamespot.com/albedo/4005-135087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135089/","id":135089,"name":"Asuka Kudou","site_detail_url":"https://comicvine.gamespot.com/asuka-kudou/4005-135089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135276/","id":135276,"name":"Harmony","site_detail_url":"https://comicvine.gamespot.com/harmony/4005-135276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135550/","id":135550,"name":"Ais","site_detail_url":"https://comicvine.gamespot.com/ais/4005-135550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135584/","id":135584,"name":"Deuce","site_detail_url":"https://comicvine.gamespot.com/deuce/4005-135584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135628/","id":135628,"name":"Prana","site_detail_url":"https://comicvine.gamespot.com/prana/4005-135628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135629/","id":135629,"name":"Zahara","site_detail_url":"https://comicvine.gamespot.com/zahara/4005-135629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135860/","id":135860,"name":"Grand Inquisitor","site_detail_url":"https://comicvine.gamespot.com/grand-inquisitor/4005-135860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135966/","id":135966,"name":"Meetra Surik","site_detail_url":"https://comicvine.gamespot.com/meetra-surik/4005-135966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136077/","id":136077,"name":"Warhead","site_detail_url":"https://comicvine.gamespot.com/warhead/4005-136077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136127/","id":136127,"name":"Blood Shadow","site_detail_url":"https://comicvine.gamespot.com/blood-shadow/4005-136127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136259/","id":136259,"name":"Stalker","site_detail_url":"https://comicvine.gamespot.com/stalker/4005-136259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136536/","id":136536,"name":"Ommin","site_detail_url":"https://comicvine.gamespot.com/ommin/4005-136536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138050/","id":138050,"name":"Run","site_detail_url":"https://comicvine.gamespot.com/run/4005-138050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139291/","id":139291,"name":"Stone God","site_detail_url":"https://comicvine.gamespot.com/stone-god/4005-139291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139344/","id":139344,"name":"Sister Psiren","site_detail_url":"https://comicvine.gamespot.com/sister-psiren/4005-139344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139479/","id":139479,"name":"Nikki Finch","site_detail_url":"https://comicvine.gamespot.com/nikki-finch/4005-139479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139761/","id":139761,"name":"Carlos Andriani","site_detail_url":"https://comicvine.gamespot.com/carlos-andriani/4005-139761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139880/","id":139880,"name":"Blinky","site_detail_url":"https://comicvine.gamespot.com/blinky/4005-139880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139898/","id":139898,"name":"Z'Kran Z'Rann","site_detail_url":"https://comicvine.gamespot.com/zkran-zrann/4005-139898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140186/","id":140186,"name":"First Firmament","site_detail_url":"https://comicvine.gamespot.com/first-firmament/4005-140186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140356/","id":140356,"name":"Seventh Sister","site_detail_url":"https://comicvine.gamespot.com/seventh-sister/4005-140356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140508/","id":140508,"name":"Tiplee","site_detail_url":"https://comicvine.gamespot.com/tiplee/4005-140508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140516/","id":140516,"name":"Darth Jadus","site_detail_url":"https://comicvine.gamespot.com/darth-jadus/4005-140516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140541/","id":140541,"name":"Baron Nax Cirvan","site_detail_url":"https://comicvine.gamespot.com/baron-nax-cirvan/4005-140541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140593/","id":140593,"name":"Bela Kiwiiks","site_detail_url":"https://comicvine.gamespot.com/bela-kiwiiks/4005-140593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140600/","id":140600,"name":"Judd","site_detail_url":"https://comicvine.gamespot.com/judd/4005-140600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140601/","id":140601,"name":"Salmara","site_detail_url":"https://comicvine.gamespot.com/salmara/4005-140601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140642/","id":140642,"name":"Bright Eyes","site_detail_url":"https://comicvine.gamespot.com/bright-eyes/4005-140642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140732/","id":140732,"name":"Darth Tenebrous","site_detail_url":"https://comicvine.gamespot.com/darth-tenebrous/4005-140732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140900/","id":140900,"name":"Lady Saro","site_detail_url":"https://comicvine.gamespot.com/lady-saro/4005-140900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141001/","id":141001,"name":"Arden Lyn","site_detail_url":"https://comicvine.gamespot.com/arden-lyn/4005-141001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141002/","id":141002,"name":"Hoar","site_detail_url":"https://comicvine.gamespot.com/hoar/4005-141002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141114/","id":141114,"name":"Merili","site_detail_url":"https://comicvine.gamespot.com/merili/4005-141114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141248/","id":141248,"name":"King Seth","site_detail_url":"https://comicvine.gamespot.com/king-seth/4005-141248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141313/","id":141313,"name":"Kinita","site_detail_url":"https://comicvine.gamespot.com/kinita/4005-141313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141318/","id":141318,"name":"Lux","site_detail_url":"https://comicvine.gamespot.com/lux/4005-141318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141828/","id":141828,"name":"Gabriel Tosh","site_detail_url":"https://comicvine.gamespot.com/gabriel-tosh/4005-141828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142058/","id":142058,"name":"The Merciless","site_detail_url":"https://comicvine.gamespot.com/the-merciless/4005-142058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142706/","id":142706,"name":"Sidra","site_detail_url":"https://comicvine.gamespot.com/sidra/4005-142706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142711/","id":142711,"name":"Belmod","site_detail_url":"https://comicvine.gamespot.com/belmod/4005-142711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143324/","id":143324,"name":"Janie Welles","site_detail_url":"https://comicvine.gamespot.com/janie-welles/4005-143324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143381/","id":143381,"name":"Brahma, The Creator","site_detail_url":"https://comicvine.gamespot.com/brahma-the-creator/4005-143381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143501/","id":143501,"name":"Shalltear Bloodfallen","site_detail_url":"https://comicvine.gamespot.com/shalltear-bloodfallen/4005-143501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143697/","id":143697,"name":"Space Queen","site_detail_url":"https://comicvine.gamespot.com/space-queen/4005-143697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145192/","id":145192,"name":"Mentacle","site_detail_url":"https://comicvine.gamespot.com/mentacle/4005-145192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145924/","id":145924,"name":"Biomax","site_detail_url":"https://comicvine.gamespot.com/biomax/4005-145924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146026/","id":146026,"name":"Mikas","site_detail_url":"https://comicvine.gamespot.com/mikas/4005-146026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146066/","id":146066,"name":"Cleric","site_detail_url":"https://comicvine.gamespot.com/cleric/4005-146066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146112/","id":146112,"name":"Flashbang","site_detail_url":"https://comicvine.gamespot.com/flashbang/4005-146112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146331/","id":146331,"name":"Tempest 1000000","site_detail_url":"https://comicvine.gamespot.com/tempest-1000000/4005-146331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146358/","id":146358,"name":"Quinon","site_detail_url":"https://comicvine.gamespot.com/quinon/4005-146358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146377/","id":146377,"name":"Being X","site_detail_url":"https://comicvine.gamespot.com/being-x/4005-146377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147026/","id":147026,"name":"The Salesman","site_detail_url":"https://comicvine.gamespot.com/the-salesman/4005-147026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147434/","id":147434,"name":"Gnomon","site_detail_url":"https://comicvine.gamespot.com/gnomon/4005-147434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147526/","id":147526,"name":"Conte Alvise Gianus","site_detail_url":"https://comicvine.gamespot.com/conte-alvise-gianus/4005-147526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147631/","id":147631,"name":"Patrika","site_detail_url":"https://comicvine.gamespot.com/patrika/4005-147631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148495/","id":148495,"name":"Karnell","site_detail_url":"https://comicvine.gamespot.com/karnell/4005-148495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148723/","id":148723,"name":"Sargeras","site_detail_url":"https://comicvine.gamespot.com/sargeras/4005-148723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148728/","id":148728,"name":"The Red Brain","site_detail_url":"https://comicvine.gamespot.com/the-red-brain/4005-148728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148801/","id":148801,"name":"Leonard Moonstone","site_detail_url":"https://comicvine.gamespot.com/leonard-moonstone/4005-148801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149168/","id":149168,"name":"Brainchild","site_detail_url":"https://comicvine.gamespot.com/brainchild/4005-149168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149388/","id":149388,"name":"The Keep","site_detail_url":"https://comicvine.gamespot.com/the-keep/4005-149388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149462/","id":149462,"name":"Progenitor","site_detail_url":"https://comicvine.gamespot.com/progenitor/4005-149462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149463/","id":149463,"name":"Zgreb the Sorrower","site_detail_url":"https://comicvine.gamespot.com/zgreb-the-sorrower/4005-149463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149552/","id":149552,"name":"Knull","site_detail_url":"https://comicvine.gamespot.com/knull/4005-149552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149907/","id":149907,"name":"Otto Aquarius","site_detail_url":"https://comicvine.gamespot.com/otto-aquarius/4005-149907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150290/","id":150290,"name":"Phoenix 1,000,000 BC","site_detail_url":"https://comicvine.gamespot.com/phoenix-1000000-bc/4005-150290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150723/","id":150723,"name":"O","site_detail_url":"https://comicvine.gamespot.com/o/4005-150723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150960/","id":150960,"name":"Dear Lois","site_detail_url":"https://comicvine.gamespot.com/dear-lois/4005-150960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151131/","id":151131,"name":"Danny Torrance","site_detail_url":"https://comicvine.gamespot.com/danny-torrance/4005-151131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151137/","id":151137,"name":"Carrie White","site_detail_url":"https://comicvine.gamespot.com/carrie-white/4005-151137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151218/","id":151218,"name":"Xandra","site_detail_url":"https://comicvine.gamespot.com/xandra/4005-151218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151329/","id":151329,"name":"Paparazzi","site_detail_url":"https://comicvine.gamespot.com/paparazzi/4005-151329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151510/","id":151510,"name":"Grey","site_detail_url":"https://comicvine.gamespot.com/grey/4005-151510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151841/","id":151841,"name":"Marked Man","site_detail_url":"https://comicvine.gamespot.com/marked-man/4005-151841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152006/","id":152006,"name":"Momin","site_detail_url":"https://comicvine.gamespot.com/momin/4005-152006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152345/","id":152345,"name":"Obliteron","site_detail_url":"https://comicvine.gamespot.com/obliteron/4005-152345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152508/","id":152508,"name":"Callus the Void","site_detail_url":"https://comicvine.gamespot.com/callus-the-void/4005-152508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153378/","id":153378,"name":"Manon","site_detail_url":"https://comicvine.gamespot.com/manon/4005-153378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153379/","id":153379,"name":"Maxime","site_detail_url":"https://comicvine.gamespot.com/maxime/4005-153379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153770/","id":153770,"name":"Inceptor","site_detail_url":"https://comicvine.gamespot.com/inceptor/4005-153770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153943/","id":153943,"name":"Psych","site_detail_url":"https://comicvine.gamespot.com/psych/4005-153943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153949/","id":153949,"name":"Eleven","site_detail_url":"https://comicvine.gamespot.com/eleven/4005-153949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154392/","id":154392,"name":"Moneta","site_detail_url":"https://comicvine.gamespot.com/moneta/4005-154392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154514/","id":154514,"name":"Oizys","site_detail_url":"https://comicvine.gamespot.com/oizys/4005-154514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154763/","id":154763,"name":"Moro","site_detail_url":"https://comicvine.gamespot.com/moro/4005-154763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154772/","id":154772,"name":"Saviour","site_detail_url":"https://comicvine.gamespot.com/saviour/4005-154772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155383/","id":155383,"name":"Unveil ","site_detail_url":"https://comicvine.gamespot.com/unveil/4005-155383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155492/","id":155492,"name":"Apate ","site_detail_url":"https://comicvine.gamespot.com/apate/4005-155492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155811/","id":155811,"name":"The Praetor","site_detail_url":"https://comicvine.gamespot.com/the-praetor/4005-155811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155951/","id":155951,"name":"World Forger","site_detail_url":"https://comicvine.gamespot.com/world-forger/4005-155951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156338/","id":156338,"name":"Atlantiades","site_detail_url":"https://comicvine.gamespot.com/atlantiades/4005-156338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156370/","id":156370,"name":"Sunspot (Grey)","site_detail_url":"https://comicvine.gamespot.com/sunspot-grey/4005-156370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156422/","id":156422,"name":"Diamond Patch","site_detail_url":"https://comicvine.gamespot.com/diamond-patch/4005-156422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156856/","id":156856,"name":"Sonata","site_detail_url":"https://comicvine.gamespot.com/sonata/4005-156856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157069/","id":157069,"name":"Prodigal","site_detail_url":"https://comicvine.gamespot.com/prodigal/4005-157069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157102/","id":157102,"name":"Headman","site_detail_url":"https://comicvine.gamespot.com/headman/4005-157102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157158/","id":157158,"name":"Machine Mandrill","site_detail_url":"https://comicvine.gamespot.com/machine-mandrill/4005-157158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157297/","id":157297,"name":"Hawkmask","site_detail_url":"https://comicvine.gamespot.com/hawkmask/4005-157297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157350/","id":157350,"name":"Rasputin","site_detail_url":"https://comicvine.gamespot.com/rasputin/4005-157350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157351/","id":157351,"name":"Cylobel","site_detail_url":"https://comicvine.gamespot.com/cylobel/4005-157351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157352/","id":157352,"name":"Cardinal","site_detail_url":"https://comicvine.gamespot.com/cardinal/4005-157352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157567/","id":157567,"name":"North","site_detail_url":"https://comicvine.gamespot.com/north/4005-157567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158572/","id":158572,"name":"Overseer","site_detail_url":"https://comicvine.gamespot.com/overseer/4005-158572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158988/","id":158988,"name":"Stencil","site_detail_url":"https://comicvine.gamespot.com/stencil/4005-158988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159514/","id":159514,"name":"O'Malley","site_detail_url":"https://comicvine.gamespot.com/omalley/4005-159514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159561/","id":159561,"name":"Alea Bell","site_detail_url":"https://comicvine.gamespot.com/alea-bell/4005-159561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160011/","id":160011,"name":"Pennywise","site_detail_url":"https://comicvine.gamespot.com/pennywise/4005-160011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160046/","id":160046,"name":"Fin","site_detail_url":"https://comicvine.gamespot.com/fin/4005-160046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160047/","id":160047,"name":"Scale","site_detail_url":"https://comicvine.gamespot.com/scale/4005-160047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160213/","id":160213,"name":"Brainman","site_detail_url":"https://comicvine.gamespot.com/brainman/4005-160213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160265/","id":160265,"name":"Apoth","site_detail_url":"https://comicvine.gamespot.com/apoth/4005-160265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160269/","id":160269,"name":"Shayne J'onzz","site_detail_url":"https://comicvine.gamespot.com/shayne-jonzz/4005-160269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160554/","id":160554,"name":"Treen","site_detail_url":"https://comicvine.gamespot.com/treen/4005-160554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160579/","id":160579,"name":"Varah","site_detail_url":"https://comicvine.gamespot.com/varah/4005-160579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160601/","id":160601,"name":"Sphere","site_detail_url":"https://comicvine.gamespot.com/sphere/4005-160601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160602/","id":160602,"name":"Ethon","site_detail_url":"https://comicvine.gamespot.com/ethon/4005-160602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160604/","id":160604,"name":"Jalaia","site_detail_url":"https://comicvine.gamespot.com/jalaia/4005-160604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160708/","id":160708,"name":"Demise","site_detail_url":"https://comicvine.gamespot.com/demise/4005-160708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160709/","id":160709,"name":"Turtle","site_detail_url":"https://comicvine.gamespot.com/turtle/4005-160709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160735/","id":160735,"name":"Sascha Starfin","site_detail_url":"https://comicvine.gamespot.com/sascha-starfin/4005-160735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160989/","id":160989,"name":"Rufus","site_detail_url":"https://comicvine.gamespot.com/rufus/4005-160989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161543/","id":161543,"name":"Cosmo","site_detail_url":"https://comicvine.gamespot.com/cosmo/4005-161543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161584/","id":161584,"name":"Gronn","site_detail_url":"https://comicvine.gamespot.com/gronn/4005-161584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161878/","id":161878,"name":"Maslo-Skaff","site_detail_url":"https://comicvine.gamespot.com/maslo-skaff/4005-161878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161879/","id":161879,"name":"Odu","site_detail_url":"https://comicvine.gamespot.com/odu/4005-161879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162059/","id":162059,"name":"Corona","site_detail_url":"https://comicvine.gamespot.com/corona/4005-162059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162487/","id":162487,"name":"Tula II","site_detail_url":"https://comicvine.gamespot.com/tula-ii/4005-162487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162758/","id":162758,"name":"Brainstorm","site_detail_url":"https://comicvine.gamespot.com/brainstorm/4005-162758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162810/","id":162810,"name":"Claudine Bobash","site_detail_url":"https://comicvine.gamespot.com/claudine-bobash/4005-162810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162811/","id":162811,"name":"Sho-Huan","site_detail_url":"https://comicvine.gamespot.com/sho-huan/4005-162811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162812/","id":162812,"name":"Prince Iblis","site_detail_url":"https://comicvine.gamespot.com/prince-iblis/4005-162812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162813/","id":162813,"name":"Omulù","site_detail_url":"https://comicvine.gamespot.com/omulu/4005-162813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162815/","id":162815,"name":"Graf Von Henzig","site_detail_url":"https://comicvine.gamespot.com/graf-von-henzig/4005-162815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162816/","id":162816,"name":"Musuraka","site_detail_url":"https://comicvine.gamespot.com/musuraka/4005-162816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162817/","id":162817,"name":"Savnok","site_detail_url":"https://comicvine.gamespot.com/savnok/4005-162817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162818/","id":162818,"name":"Vurdalak","site_detail_url":"https://comicvine.gamespot.com/vurdalak/4005-162818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162837/","id":162837,"name":"Black Annis","site_detail_url":"https://comicvine.gamespot.com/black-annis/4005-162837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162838/","id":162838,"name":"Uriel","site_detail_url":"https://comicvine.gamespot.com/uriel/4005-162838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162843/","id":162843,"name":"Nazikian","site_detail_url":"https://comicvine.gamespot.com/nazikian/4005-162843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162852/","id":162852,"name":"Semyaza","site_detail_url":"https://comicvine.gamespot.com/semyaza/4005-162852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162928/","id":162928,"name":"Maître Abel","site_detail_url":"https://comicvine.gamespot.com/maitre-abel/4005-162928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162952/","id":162952,"name":"Kagyr Khan","site_detail_url":"https://comicvine.gamespot.com/kagyr-khan/4005-162952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162953/","id":162953,"name":"Bastet","site_detail_url":"https://comicvine.gamespot.com/bastet/4005-162953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162954/","id":162954,"name":"Nyarlathotep","site_detail_url":"https://comicvine.gamespot.com/nyarlathotep/4005-162954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162983/","id":162983,"name":"Lucius Marvell","site_detail_url":"https://comicvine.gamespot.com/lucius-marvell/4005-162983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163053/","id":163053,"name":"Eisheth Zenumium","site_detail_url":"https://comicvine.gamespot.com/eisheth-zenumium/4005-163053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163069/","id":163069,"name":"Vidal","site_detail_url":"https://comicvine.gamespot.com/vidal/4005-163069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163071/","id":163071,"name":"Mandhur","site_detail_url":"https://comicvine.gamespot.com/mandhur/4005-163071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163075/","id":163075,"name":"Aysha","site_detail_url":"https://comicvine.gamespot.com/aysha/4005-163075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163076/","id":163076,"name":"Vivien","site_detail_url":"https://comicvine.gamespot.com/vivien/4005-163076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163077/","id":163077,"name":"Chloe","site_detail_url":"https://comicvine.gamespot.com/chloe/4005-163077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163084/","id":163084,"name":"Kerey Khan","site_detail_url":"https://comicvine.gamespot.com/kerey-khan/4005-163084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163086/","id":163086,"name":"Vrana","site_detail_url":"https://comicvine.gamespot.com/vrana/4005-163086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163136/","id":163136,"name":"Belyalis","site_detail_url":"https://comicvine.gamespot.com/belyalis/4005-163136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163138/","id":163138,"name":"Kasdaeth","site_detail_url":"https://comicvine.gamespot.com/kasdaeth/4005-163138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163222/","id":163222,"name":"Meridiana","site_detail_url":"https://comicvine.gamespot.com/meridiana/4005-163222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163241/","id":163241,"name":"Adar Melek","site_detail_url":"https://comicvine.gamespot.com/adar-melek/4005-163241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163322/","id":163322,"name":"Kostacki","site_detail_url":"https://comicvine.gamespot.com/kostacki/4005-163322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163323/","id":163323,"name":"Rabten","site_detail_url":"https://comicvine.gamespot.com/rabten/4005-163323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163441/","id":163441,"name":"Lodbrok","site_detail_url":"https://comicvine.gamespot.com/lodbrok/4005-163441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163549/","id":163549,"name":"Nylo","site_detail_url":"https://comicvine.gamespot.com/nylo/4005-163549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163613/","id":163613,"name":"Ningirsu","site_detail_url":"https://comicvine.gamespot.com/ningirsu/4005-163613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163635/","id":163635,"name":"Roxana Dragoste","site_detail_url":"https://comicvine.gamespot.com/roxana-dragoste/4005-163635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163667/","id":163667,"name":"Tiny Clobber","site_detail_url":"https://comicvine.gamespot.com/tiny-clobber/4005-163667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164075/","id":164075,"name":"Voe","site_detail_url":"https://comicvine.gamespot.com/voe/4005-164075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164182/","id":164182,"name":"Black Winter","site_detail_url":"https://comicvine.gamespot.com/black-winter/4005-164182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164223/","id":164223,"name":"Liar Liar","site_detail_url":"https://comicvine.gamespot.com/liar-liar/4005-164223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164297/","id":164297,"name":"Jarro","site_detail_url":"https://comicvine.gamespot.com/jarro/4005-164297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164461/","id":164461,"name":"Mindhunter","site_detail_url":"https://comicvine.gamespot.com/mindhunter/4005-164461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165081/","id":165081,"name":"Oracle-2","site_detail_url":"https://comicvine.gamespot.com/oracle-2/4005-165081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165143/","id":165143,"name":"Chronicler","site_detail_url":"https://comicvine.gamespot.com/chronicler/4005-165143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165284/","id":165284,"name":"Sora","site_detail_url":"https://comicvine.gamespot.com/sora/4005-165284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165346/","id":165346,"name":"Marsha Manhunter","site_detail_url":"https://comicvine.gamespot.com/marsha-manhunter/4005-165346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165549/","id":165549,"name":"Tarn the Uncaring","site_detail_url":"https://comicvine.gamespot.com/tarn-the-uncaring/4005-165549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165656/","id":165656,"name":"Composite Batman/Superman","site_detail_url":"https://comicvine.gamespot.com/composite-batmansuperman/4005-165656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165935/","id":165935,"name":"Snakes","site_detail_url":"https://comicvine.gamespot.com/snakes/4005-165935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166018/","id":166018,"name":"Abyssal Dark","site_detail_url":"https://comicvine.gamespot.com/abyssal-dark/4005-166018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166535/","id":166535,"name":"Brain Cells","site_detail_url":"https://comicvine.gamespot.com/brain-cells/4005-166535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166620/","id":166620,"name":"Dahlgren","site_detail_url":"https://comicvine.gamespot.com/dahlgren/4005-166620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166745/","id":166745,"name":"Keeve Trennis","site_detail_url":"https://comicvine.gamespot.com/keeve-trennis/4005-166745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166750/","id":166750,"name":"Avar Kriss","site_detail_url":"https://comicvine.gamespot.com/avar-kriss/4005-166750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166792/","id":166792,"name":"Gorilla Gregg","site_detail_url":"https://comicvine.gamespot.com/gorilla-gregg/4005-166792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167165/","id":167165,"name":"Dahak","site_detail_url":"https://comicvine.gamespot.com/dahak/4005-167165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167404/","id":167404,"name":"Dean Egghead","site_detail_url":"https://comicvine.gamespot.com/dean-egghead/4005-167404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167865/","id":167865,"name":"Levi Kamei","site_detail_url":"https://comicvine.gamespot.com/levi-kamei/4005-167865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168080/","id":168080,"name":"Nexus","site_detail_url":"https://comicvine.gamespot.com/nexus/4005-168080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169080/","id":169080,"name":"Katya Belyakov","site_detail_url":"https://comicvine.gamespot.com/katya-belyakov/4005-169080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169832/","id":169832,"name":"The Truth","site_detail_url":"https://comicvine.gamespot.com/the-truth/4005-169832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169877/","id":169877,"name":"Sagari","site_detail_url":"https://comicvine.gamespot.com/sagari/4005-169877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170748/","id":170748,"name":"Randhir Singh","site_detail_url":"https://comicvine.gamespot.com/randhir-singh/4005-170748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171056/","id":171056,"name":"Valeriuhn","site_detail_url":"https://comicvine.gamespot.com/valeriuhn/4005-171056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171111/","id":171111,"name":"Kah-Lee","site_detail_url":"https://comicvine.gamespot.com/kah-lee/4005-171111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171292/","id":171292,"name":"Leo","site_detail_url":"https://comicvine.gamespot.com/leo/4005-171292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171947/","id":171947,"name":"Slender Man","site_detail_url":"https://comicvine.gamespot.com/slender-man/4005-171947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172413/","id":172413,"name":"Cyron","site_detail_url":"https://comicvine.gamespot.com/cyron/4005-172413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172920/","id":172920,"name":"Anthr'll","site_detail_url":"https://comicvine.gamespot.com/anthrll/4005-172920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173193/","id":173193,"name":"Miki","site_detail_url":"https://comicvine.gamespot.com/miki/4005-173193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173210/","id":173210,"name":"Rei Kurorogi","site_detail_url":"https://comicvine.gamespot.com/rei-kurorogi/4005-173210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173299/","id":173299,"name":"Xiomara Collins","site_detail_url":"https://comicvine.gamespot.com/xiomara-collins/4005-173299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174064/","id":174064,"name":"Markos Argyros","site_detail_url":"https://comicvine.gamespot.com/markos-argyros/4005-174064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174999/","id":174999,"name":"Brian's Brain","site_detail_url":"https://comicvine.gamespot.com/brians-brain/4005-174999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175086/","id":175086,"name":"Ultraman Tiga","site_detail_url":"https://comicvine.gamespot.com/ultraman-tiga/4005-175086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175512/","id":175512,"name":"Emra","site_detail_url":"https://comicvine.gamespot.com/emra/4005-175512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175829/","id":175829,"name":"Ingenue","site_detail_url":"https://comicvine.gamespot.com/ingenue/4005-175829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175957/","id":175957,"name":"Anya Forger","site_detail_url":"https://comicvine.gamespot.com/anya-forger/4005-175957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175996/","id":175996,"name":"Boris","site_detail_url":"https://comicvine.gamespot.com/boris/4005-175996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176474/","id":176474,"name":"Tasha","site_detail_url":"https://comicvine.gamespot.com/tasha/4005-176474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176581/","id":176581,"name":"Shrine","site_detail_url":"https://comicvine.gamespot.com/shrine/4005-176581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176603/","id":176603,"name":"Luna","site_detail_url":"https://comicvine.gamespot.com/luna/4005-176603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176625/","id":176625,"name":"Miss Dixie","site_detail_url":"https://comicvine.gamespot.com/miss-dixie/4005-176625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176711/","id":176711,"name":"Connie Moore","site_detail_url":"https://comicvine.gamespot.com/connie-moore/4005-176711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176738/","id":176738,"name":"Marlena Petrokova","site_detail_url":"https://comicvine.gamespot.com/marlena-petrokova/4005-176738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176744/","id":176744,"name":"Phillip","site_detail_url":"https://comicvine.gamespot.com/phillip/4005-176744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176808/","id":176808,"name":"Father Phillip","site_detail_url":"https://comicvine.gamespot.com/father-phillip/4005-176808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176809/","id":176809,"name":"Beth","site_detail_url":"https://comicvine.gamespot.com/beth/4005-176809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176827/","id":176827,"name":"John Mairs","site_detail_url":"https://comicvine.gamespot.com/john-mairs/4005-176827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176831/","id":176831,"name":"Susan Catrini","site_detail_url":"https://comicvine.gamespot.com/susan-catrini/4005-176831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176857/","id":176857,"name":"Grimlock","site_detail_url":"https://comicvine.gamespot.com/grimlock/4005-176857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176870/","id":176870,"name":"Jemail Karami","site_detail_url":"https://comicvine.gamespot.com/jemail-karami/4005-176870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176881/","id":176881,"name":"Ms. Yoshida","site_detail_url":"https://comicvine.gamespot.com/ms-yoshida/4005-176881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177044/","id":177044,"name":"Spooner","site_detail_url":"https://comicvine.gamespot.com/spooner/4005-177044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177094/","id":177094,"name":"Dartz","site_detail_url":"https://comicvine.gamespot.com/dartz/4005-177094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177568/","id":177568,"name":"Captain Bretland","site_detail_url":"https://comicvine.gamespot.com/captain-bretland/4005-177568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177569/","id":177569,"name":"Elspeth Braddock","site_detail_url":"https://comicvine.gamespot.com/elspeth-braddock/4005-177569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177611/","id":177611,"name":"Queen Elizabeth III","site_detail_url":"https://comicvine.gamespot.com/queen-elizabeth-iii/4005-177611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178282/","id":178282,"name":"Elemental HERO Neos","site_detail_url":"https://comicvine.gamespot.com/elemental-hero-neos/4005-178282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178745/","id":178745,"name":"Kaylie ","site_detail_url":"https://comicvine.gamespot.com/kaylie/4005-178745/"}],"date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":7,"name":"Telepathy","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=telepathy&wikiTypeId=4035&wikiId=7&powers%5B%5D=7"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/power-details/power-4035-77.json b/samples/api-data/power-details/power-4035-77.json new file mode 100644 index 0000000..6aec1e2 --- /dev/null +++ b/samples/api-data/power-details/power-4035-77.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-77/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1263/","id":1263,"name":"Element Lad","site_detail_url":"https://comicvine.gamespot.com/element-lad/4005-1263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1306/","id":1306,"name":"Atom Bob","site_detail_url":"https://comicvine.gamespot.com/atom-bob/4005-1306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1447/","id":1447,"name":"Layla Miller","site_detail_url":"https://comicvine.gamespot.com/layla-miller/4005-1447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1454/","id":1454,"name":"Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry/4005-1454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1456/","id":1456,"name":"Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/doctor-strange/4005-1456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1466/","id":1466,"name":"Scarlet Witch","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch/4005-1466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1520/","id":1520,"name":"Kid Quantum","site_detail_url":"https://comicvine.gamespot.com/kid-quantum/4005-1520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1722/","id":1722,"name":"Sabrina Spellman","site_detail_url":"https://comicvine.gamespot.com/sabrina-spellman/4005-1722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1794/","id":1794,"name":"Editor Girl","site_detail_url":"https://comicvine.gamespot.com/editor-girl/4005-1794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1907/","id":1907,"name":"Doctor Eclipse","site_detail_url":"https://comicvine.gamespot.com/doctor-eclipse/4005-1907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2092/","id":2092,"name":"Mathemanic","site_detail_url":"https://comicvine.gamespot.com/mathemanic/4005-2092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2097/","id":2097,"name":"Rage","site_detail_url":"https://comicvine.gamespot.com/rage/4005-2097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2125/","id":2125,"name":"Sphinx","site_detail_url":"https://comicvine.gamespot.com/sphinx/4005-2125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2149/","id":2149,"name":"Galactus","site_detail_url":"https://comicvine.gamespot.com/galactus/4005-2149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2155/","id":2155,"name":"Piecemeal","site_detail_url":"https://comicvine.gamespot.com/piecemeal/4005-2155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2157/","id":2157,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4005-2157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2164/","id":2164,"name":"Phoenix Force","site_detail_url":"https://comicvine.gamespot.com/phoenix-force/4005-2164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2165/","id":2165,"name":"Proteus","site_detail_url":"https://comicvine.gamespot.com/proteus/4005-2165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2195/","id":2195,"name":"Jenny Quantum","site_detail_url":"https://comicvine.gamespot.com/jenny-quantum/4005-2195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2201/","id":2201,"name":"Doctor","site_detail_url":"https://comicvine.gamespot.com/doctor/4005-2201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2205/","id":2205,"name":"Dormammu","site_detail_url":"https://comicvine.gamespot.com/dormammu/4005-2205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2212/","id":2212,"name":"Ancient One","site_detail_url":"https://comicvine.gamespot.com/ancient-one/4005-2212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2227/","id":2227,"name":"Neron","site_detail_url":"https://comicvine.gamespot.com/neron/4005-2227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2267/","id":2267,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4005-2267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2268/","id":2268,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4005-2268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2349/","id":2349,"name":"Darkseid","site_detail_url":"https://comicvine.gamespot.com/darkseid/4005-2349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2361/","id":2361,"name":"Spectre","site_detail_url":"https://comicvine.gamespot.com/spectre/4005-2361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2364/","id":2364,"name":"Takion","site_detail_url":"https://comicvine.gamespot.com/takion/4005-2364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2469/","id":2469,"name":"Franklin Richards","site_detail_url":"https://comicvine.gamespot.com/franklin-richards/4005-2469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2496/","id":2496,"name":"Oblivion","site_detail_url":"https://comicvine.gamespot.com/oblivion/4005-2496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2635/","id":2635,"name":"Mephisto","site_detail_url":"https://comicvine.gamespot.com/mephisto/4005-2635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2637/","id":2637,"name":"Umar","site_detail_url":"https://comicvine.gamespot.com/umar/4005-2637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2646/","id":2646,"name":"Nightmare","site_detail_url":"https://comicvine.gamespot.com/nightmare/4005-2646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2860/","id":2860,"name":"Bugs Bunny","site_detail_url":"https://comicvine.gamespot.com/bugs-bunny/4005-2860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3010/","id":3010,"name":"Super-Shock","site_detail_url":"https://comicvine.gamespot.com/super-shock/4005-3010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3174/","id":3174,"name":"Silver Samurai","site_detail_url":"https://comicvine.gamespot.com/silver-samurai/4005-3174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3177/","id":3177,"name":"Charles Lehnsherr","site_detail_url":"https://comicvine.gamespot.com/charles-lehnsherr/4005-3177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3279/","id":3279,"name":"Moonstone","site_detail_url":"https://comicvine.gamespot.com/moonstone/4005-3279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3291/","id":3291,"name":"Nabu the Wise","site_detail_url":"https://comicvine.gamespot.com/nabu-the-wise/4005-3291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3298/","id":3298,"name":"Phantom Stranger","site_detail_url":"https://comicvine.gamespot.com/phantom-stranger/4005-3298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3327/","id":3327,"name":"Agatha Harkness","site_detail_url":"https://comicvine.gamespot.com/agatha-harkness/4005-3327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3329/","id":3329,"name":"John Constantine","site_detail_url":"https://comicvine.gamespot.com/john-constantine/4005-3329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3381/","id":3381,"name":"Spawn (Simmons)","site_detail_url":"https://comicvine.gamespot.com/spawn-simmons/4005-3381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3383/","id":3383,"name":"Redeemer","site_detail_url":"https://comicvine.gamespot.com/redeemer/4005-3383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3384/","id":3384,"name":"Mammon","site_detail_url":"https://comicvine.gamespot.com/mammon/4005-3384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3390/","id":3390,"name":"Violator","site_detail_url":"https://comicvine.gamespot.com/violator/4005-3390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3507/","id":3507,"name":"Odin","site_detail_url":"https://comicvine.gamespot.com/odin/4005-3507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3584/","id":3584,"name":"Raven","site_detail_url":"https://comicvine.gamespot.com/raven/4005-3584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3620/","id":3620,"name":"Tyroc","site_detail_url":"https://comicvine.gamespot.com/tyroc/4005-3620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3725/","id":3725,"name":"Killer Croc","site_detail_url":"https://comicvine.gamespot.com/killer-croc/4005-3725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3737/","id":3737,"name":"Amazo","site_detail_url":"https://comicvine.gamespot.com/amazo/4005-3737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3763/","id":3763,"name":"Eclipso","site_detail_url":"https://comicvine.gamespot.com/eclipso/4005-3763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3958/","id":3958,"name":"Kelly Kooliq","site_detail_url":"https://comicvine.gamespot.com/kelly-kooliq/4005-3958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4270/","id":4270,"name":"Jamie Braddock","site_detail_url":"https://comicvine.gamespot.com/jamie-braddock/4005-4270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4697/","id":4697,"name":"Trygg","site_detail_url":"https://comicvine.gamespot.com/trygg/4005-4697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4813/","id":4813,"name":"Genis-Vell","site_detail_url":"https://comicvine.gamespot.com/genis-vell/4005-4813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4893/","id":4893,"name":"Jakeem Thunder","site_detail_url":"https://comicvine.gamespot.com/jakeem-thunder/4005-4893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4900/","id":4900,"name":"Shocko","site_detail_url":"https://comicvine.gamespot.com/shocko/4005-4900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4904/","id":4904,"name":"Mordru","site_detail_url":"https://comicvine.gamespot.com/mordru/4005-4904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4905/","id":4905,"name":"Hector Hall","site_detail_url":"https://comicvine.gamespot.com/hector-hall/4005-4905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4933/","id":4933,"name":"Garrett Sanford","site_detail_url":"https://comicvine.gamespot.com/garrett-sanford/4005-4933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4957/","id":4957,"name":"Malebolgia","site_detail_url":"https://comicvine.gamespot.com/malebolgia/4005-4957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4988/","id":4988,"name":"Man-Thing","site_detail_url":"https://comicvine.gamespot.com/man-thing/4005-4988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5308/","id":5308,"name":"Mumbo Jumbo","site_detail_url":"https://comicvine.gamespot.com/mumbo-jumbo/4005-5308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5310/","id":5310,"name":"Trigon","site_detail_url":"https://comicvine.gamespot.com/trigon/4005-5310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5322/","id":5322,"name":"Stayne","site_detail_url":"https://comicvine.gamespot.com/stayne/4005-5322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5335/","id":5335,"name":"Merlin","site_detail_url":"https://comicvine.gamespot.com/merlin/4005-5335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5466/","id":5466,"name":"Hellboy","site_detail_url":"https://comicvine.gamespot.com/hellboy/4005-5466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5501/","id":5501,"name":"Hecate","site_detail_url":"https://comicvine.gamespot.com/hecate/4005-5501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5533/","id":5533,"name":"Cal McDonald","site_detail_url":"https://comicvine.gamespot.com/cal-mcdonald/4005-5533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5691/","id":5691,"name":"Zatanna","site_detail_url":"https://comicvine.gamespot.com/zatanna/4005-5691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5696/","id":5696,"name":"Astral Mage","site_detail_url":"https://comicvine.gamespot.com/astral-mage/4005-5696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5715/","id":5715,"name":"Abra Kadabra","site_detail_url":"https://comicvine.gamespot.com/abra-kadabra/4005-5715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5732/","id":5732,"name":"Cobalt Blue","site_detail_url":"https://comicvine.gamespot.com/cobalt-blue/4005-5732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5898/","id":5898,"name":"Kent V. Nelson","site_detail_url":"https://comicvine.gamespot.com/kent-v-nelson/4005-5898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5946/","id":5946,"name":"Emerald Empress","site_detail_url":"https://comicvine.gamespot.com/emerald-empress/4005-5946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6007/","id":6007,"name":"Melanctha","site_detail_url":"https://comicvine.gamespot.com/melanctha/4005-6007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6021/","id":6021,"name":"Swift","site_detail_url":"https://comicvine.gamespot.com/swift/4005-6021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6096/","id":6096,"name":"Supreme Intelligence","site_detail_url":"https://comicvine.gamespot.com/supreme-intelligence/4005-6096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6116/","id":6116,"name":"Arcanna","site_detail_url":"https://comicvine.gamespot.com/arcanna/4005-6116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6529/","id":6529,"name":"Pulse-8","site_detail_url":"https://comicvine.gamespot.com/pulse-8/4005-6529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6583/","id":6583,"name":"Child","site_detail_url":"https://comicvine.gamespot.com/child/4005-6583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6593/","id":6593,"name":"Felix Faust","site_detail_url":"https://comicvine.gamespot.com/felix-faust/4005-6593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6599/","id":6599,"name":"Kent Nelson","site_detail_url":"https://comicvine.gamespot.com/kent-nelson/4005-6599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6600/","id":6600,"name":"Inza Nelson","site_detail_url":"https://comicvine.gamespot.com/inza-nelson/4005-6600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6731/","id":6731,"name":"Red Queen","site_detail_url":"https://comicvine.gamespot.com/red-queen/4005-6731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6797/","id":6797,"name":"Sensor Girl","site_detail_url":"https://comicvine.gamespot.com/sensor-girl/4005-6797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6811/","id":6811,"name":"Living Tribunal","site_detail_url":"https://comicvine.gamespot.com/living-tribunal/4005-6811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6882/","id":6882,"name":"Crispus Allen","site_detail_url":"https://comicvine.gamespot.com/crispus-allen/4005-6882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6891/","id":6891,"name":"Morgan le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-6891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6951/","id":6951,"name":"Ganthet","site_detail_url":"https://comicvine.gamespot.com/ganthet/4005-6951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7017/","id":7017,"name":"Lilian Hale","site_detail_url":"https://comicvine.gamespot.com/lilian-hale/4005-7017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7123/","id":7123,"name":"Tyrant","site_detail_url":"https://comicvine.gamespot.com/tyrant/4005-7123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7153/","id":7153,"name":"Crescendo","site_detail_url":"https://comicvine.gamespot.com/crescendo/4005-7153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7190/","id":7190,"name":"Geomancer","site_detail_url":"https://comicvine.gamespot.com/geomancer/4005-7190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7218/","id":7218,"name":"Jonz Rickard","site_detail_url":"https://comicvine.gamespot.com/jonz-rickard/4005-7218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7225/","id":7225,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-7225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7280/","id":7280,"name":"Death of the Endless","site_detail_url":"https://comicvine.gamespot.com/death-of-the-endless/4005-7280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7331/","id":7331,"name":"Sebastian","site_detail_url":"https://comicvine.gamespot.com/sebastian/4005-7331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7590/","id":7590,"name":"Impossible Man","site_detail_url":"https://comicvine.gamespot.com/impossible-man/4005-7590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7601/","id":7601,"name":"Sleepwalker","site_detail_url":"https://comicvine.gamespot.com/sleepwalker/4005-7601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7606/","id":7606,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4005-7606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7607/","id":7607,"name":"Thanos","site_detail_url":"https://comicvine.gamespot.com/thanos/4005-7607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7652/","id":7652,"name":"Mirror Master (McCulloch)","site_detail_url":"https://comicvine.gamespot.com/mirror-master-mcculloch/4005-7652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8035/","id":8035,"name":"Charnel","site_detail_url":"https://comicvine.gamespot.com/charnel/4005-8035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8281/","id":8281,"name":"Origin","site_detail_url":"https://comicvine.gamespot.com/origin/4005-8281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8303/","id":8303,"name":"Magik","site_detail_url":"https://comicvine.gamespot.com/magik/4005-8303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8342/","id":8342,"name":"Solomon Grundy","site_detail_url":"https://comicvine.gamespot.com/solomon-grundy/4005-8342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9042/","id":9042,"name":"Gaea","site_detail_url":"https://comicvine.gamespot.com/gaea/4005-9042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9477/","id":9477,"name":"Goddess","site_detail_url":"https://comicvine.gamespot.com/goddess/4005-9477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9548/","id":9548,"name":"Despero","site_detail_url":"https://comicvine.gamespot.com/despero/4005-9548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9555/","id":9555,"name":"Destiny of the Endless","site_detail_url":"https://comicvine.gamespot.com/destiny-of-the-endless/4005-9555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9632/","id":9632,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-9632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9822/","id":9822,"name":"Smaug","site_detail_url":"https://comicvine.gamespot.com/smaug/4005-9822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10006/","id":10006,"name":"Imperiex","site_detail_url":"https://comicvine.gamespot.com/imperiex/4005-10006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10031/","id":10031,"name":"Kismet","site_detail_url":"https://comicvine.gamespot.com/kismet/4005-10031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10202/","id":10202,"name":"Mr. Nebula","site_detail_url":"https://comicvine.gamespot.com/mr-nebula/4005-10202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10289/","id":10289,"name":"Jeannie","site_detail_url":"https://comicvine.gamespot.com/jeannie/4005-10289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10300/","id":10300,"name":"Beyonder","site_detail_url":"https://comicvine.gamespot.com/beyonder/4005-10300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10453/","id":10453,"name":"Doctor Destiny","site_detail_url":"https://comicvine.gamespot.com/doctor-destiny/4005-10453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10656/","id":10656,"name":"Thoth-Hermes","site_detail_url":"https://comicvine.gamespot.com/thoth-hermes/4005-10656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10886/","id":10886,"name":"Angle Man","site_detail_url":"https://comicvine.gamespot.com/angle-man/4005-10886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10924/","id":10924,"name":"Circe","site_detail_url":"https://comicvine.gamespot.com/circe/4005-10924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10929/","id":10929,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-10929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10947/","id":10947,"name":"Belasco","site_detail_url":"https://comicvine.gamespot.com/belasco/4005-10947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10981/","id":10981,"name":"Madelyne Pryor","site_detail_url":"https://comicvine.gamespot.com/madelyne-pryor/4005-10981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11012/","id":11012,"name":"Spellbinder","site_detail_url":"https://comicvine.gamespot.com/spellbinder/4005-11012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11171/","id":11171,"name":"Dream of the Endless (Morpheus)","site_detail_url":"https://comicvine.gamespot.com/dream-of-the-endless-morpheus/4005-11171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11239/","id":11239,"name":"Phantom Lady","site_detail_url":"https://comicvine.gamespot.com/phantom-lady/4005-11239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11284/","id":11284,"name":"The Quantum Mechanics","site_detail_url":"https://comicvine.gamespot.com/the-quantum-mechanics/4005-11284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11286/","id":11286,"name":"Queen Of Fables","site_detail_url":"https://comicvine.gamespot.com/queen-of-fables/4005-11286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11332/","id":11332,"name":"Eternity","site_detail_url":"https://comicvine.gamespot.com/eternity/4005-11332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11333/","id":11333,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4005-11333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11487/","id":11487,"name":"Mysterious Fanboy","site_detail_url":"https://comicvine.gamespot.com/mysterious-fanboy/4005-11487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11832/","id":11832,"name":"Hyperstorm","site_detail_url":"https://comicvine.gamespot.com/hyperstorm/4005-11832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11880/","id":11880,"name":"Molecule Man","site_detail_url":"https://comicvine.gamespot.com/molecule-man/4005-11880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11976/","id":11976,"name":"Klarion","site_detail_url":"https://comicvine.gamespot.com/klarion/4005-11976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12078/","id":12078,"name":"Nina","site_detail_url":"https://comicvine.gamespot.com/nina/4005-12078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12158/","id":12158,"name":"Rama Kushna","site_detail_url":"https://comicvine.gamespot.com/rama-kushna/4005-12158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12165/","id":12165,"name":"Anti-Monitor","site_detail_url":"https://comicvine.gamespot.com/anti-monitor/4005-12165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12471/","id":12471,"name":"Erica Pierce","site_detail_url":"https://comicvine.gamespot.com/erica-pierce/4005-12471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12603/","id":12603,"name":"Master Khan","site_detail_url":"https://comicvine.gamespot.com/master-khan/4005-12603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12620/","id":12620,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-12620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12638/","id":12638,"name":"Keeper of the Comics Code Authority","site_detail_url":"https://comicvine.gamespot.com/keeper-of-the-comics-code-authority/4005-12638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12656/","id":12656,"name":"Michael Demiurgos","site_detail_url":"https://comicvine.gamespot.com/michael-demiurgos/4005-12656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12662/","id":12662,"name":"Madame Xanadu","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu/4005-12662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12663/","id":12663,"name":"Alan Scott","site_detail_url":"https://comicvine.gamespot.com/alan-scott/4005-12663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12710/","id":12710,"name":"Hannibal King","site_detail_url":"https://comicvine.gamespot.com/hannibal-king/4005-12710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12903/","id":12903,"name":"Lord Chaos","site_detail_url":"https://comicvine.gamespot.com/lord-chaos/4005-12903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12926/","id":12926,"name":"Cyborg Superman","site_detail_url":"https://comicvine.gamespot.com/cyborg-superman/4005-12926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12961/","id":12961,"name":"Miss Gsptlsnz","site_detail_url":"https://comicvine.gamespot.com/miss-gsptlsnz/4005-12961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13083/","id":13083,"name":"War","site_detail_url":"https://comicvine.gamespot.com/war/4005-13083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13090/","id":13090,"name":"Dominus","site_detail_url":"https://comicvine.gamespot.com/dominus/4005-13090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13180/","id":13180,"name":"Neven","site_detail_url":"https://comicvine.gamespot.com/neven/4005-13180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13218/","id":13218,"name":"Charon","site_detail_url":"https://comicvine.gamespot.com/charon/4005-13218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13246/","id":13246,"name":"Ingra","site_detail_url":"https://comicvine.gamespot.com/ingra/4005-13246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13248/","id":13248,"name":"Orium","site_detail_url":"https://comicvine.gamespot.com/orium/4005-13248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13249/","id":13249,"name":"Seahn","site_detail_url":"https://comicvine.gamespot.com/seahn/4005-13249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13250/","id":13250,"name":"Enson","site_detail_url":"https://comicvine.gamespot.com/enson/4005-13250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13251/","id":13251,"name":"Persha","site_detail_url":"https://comicvine.gamespot.com/persha/4005-13251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13254/","id":13254,"name":"Wyture","site_detail_url":"https://comicvine.gamespot.com/wyture/4005-13254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13265/","id":13265,"name":"Trenin","site_detail_url":"https://comicvine.gamespot.com/trenin/4005-13265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13349/","id":13349,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/legion/4005-13349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13352/","id":13352,"name":"Onslaught","site_detail_url":"https://comicvine.gamespot.com/onslaught/4005-13352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13354/","id":13354,"name":"In-Betweener","site_detail_url":"https://comicvine.gamespot.com/in-betweener/4005-13354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13725/","id":13725,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/hunger/4005-13725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13789/","id":13789,"name":"Deacon Frost","site_detail_url":"https://comicvine.gamespot.com/deacon-frost/4005-13789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13820/","id":13820,"name":"Talisman","site_detail_url":"https://comicvine.gamespot.com/talisman/4005-13820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13889/","id":13889,"name":"Shaper of Worlds","site_detail_url":"https://comicvine.gamespot.com/shaper-of-worlds/4005-13889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13925/","id":13925,"name":"Morgan Le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-13925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13998/","id":13998,"name":"Thog","site_detail_url":"https://comicvine.gamespot.com/thog/4005-13998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14000/","id":14000,"name":"Shuma-Gorath","site_detail_url":"https://comicvine.gamespot.com/shuma-gorath/4005-14000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14224/","id":14224,"name":"Moonraker","site_detail_url":"https://comicvine.gamespot.com/moonraker/4005-14224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14467/","id":14467,"name":"Korvac","site_detail_url":"https://comicvine.gamespot.com/korvac/4005-14467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14695/","id":14695,"name":"Hellstorm","site_detail_url":"https://comicvine.gamespot.com/hellstorm/4005-14695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14728/","id":14728,"name":"Blackheart","site_detail_url":"https://comicvine.gamespot.com/blackheart/4005-14728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14810/","id":14810,"name":"Roma","site_detail_url":"https://comicvine.gamespot.com/roma/4005-14810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14815/","id":14815,"name":"Joyboy","site_detail_url":"https://comicvine.gamespot.com/joyboy/4005-14815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14830/","id":14830,"name":"Mikhail Rasputin","site_detail_url":"https://comicvine.gamespot.com/mikhail-rasputin/4005-14830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15020/","id":15020,"name":"Random","site_detail_url":"https://comicvine.gamespot.com/random/4005-15020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15051/","id":15051,"name":"X-Man","site_detail_url":"https://comicvine.gamespot.com/x-man/4005-15051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15138/","id":15138,"name":"Trevor Chase","site_detail_url":"https://comicvine.gamespot.com/trevor-chase/4005-15138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15553/","id":15553,"name":"Arcadia","site_detail_url":"https://comicvine.gamespot.com/arcadia/4005-15553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15573/","id":15573,"name":"Armageddon Man","site_detail_url":"https://comicvine.gamespot.com/armageddon-man/4005-15573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15683/","id":15683,"name":"Chthon","site_detail_url":"https://comicvine.gamespot.com/chthon/4005-15683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15778/","id":15778,"name":"Gaea","site_detail_url":"https://comicvine.gamespot.com/gaea/4005-15778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15796/","id":15796,"name":"Pythia","site_detail_url":"https://comicvine.gamespot.com/pythia/4005-15796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17415/","id":17415,"name":"Allah","site_detail_url":"https://comicvine.gamespot.com/allah/4005-17415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17417/","id":17417,"name":"Odin","site_detail_url":"https://comicvine.gamespot.com/odin/4005-17417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17591/","id":17591,"name":"Ambrose Chase","site_detail_url":"https://comicvine.gamespot.com/ambrose-chase/4005-17591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17705/","id":17705,"name":"Durga","site_detail_url":"https://comicvine.gamespot.com/durga/4005-17705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17792/","id":17792,"name":"Orrgo","site_detail_url":"https://comicvine.gamespot.com/orrgo/4005-17792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18246/","id":18246,"name":"Abraxas","site_detail_url":"https://comicvine.gamespot.com/abraxas/4005-18246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18276/","id":18276,"name":"Carol Ferris","site_detail_url":"https://comicvine.gamespot.com/carol-ferris/4005-18276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18340/","id":18340,"name":"Eobard Thawne","site_detail_url":"https://comicvine.gamespot.com/eobard-thawne/4005-18340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19006/","id":19006,"name":"Count Vertigo","site_detail_url":"https://comicvine.gamespot.com/count-vertigo/4005-19006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19190/","id":19190,"name":"Zatara","site_detail_url":"https://comicvine.gamespot.com/zatara/4005-19190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19936/","id":19936,"name":"Ego","site_detail_url":"https://comicvine.gamespot.com/ego/4005-19936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20022/","id":20022,"name":"Kubik","site_detail_url":"https://comicvine.gamespot.com/kubik/4005-20022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20026/","id":20026,"name":"Delinquent","site_detail_url":"https://comicvine.gamespot.com/delinquent/4005-20026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20100/","id":20100,"name":"Anya","site_detail_url":"https://comicvine.gamespot.com/anya/4005-20100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20125/","id":20125,"name":"Willow","site_detail_url":"https://comicvine.gamespot.com/willow/4005-20125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20610/","id":20610,"name":"Ahura","site_detail_url":"https://comicvine.gamespot.com/ahura/4005-20610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21000/","id":21000,"name":"Elaine Belloc","site_detail_url":"https://comicvine.gamespot.com/elaine-belloc/4005-21000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21077/","id":21077,"name":"Max Winwood","site_detail_url":"https://comicvine.gamespot.com/max-winwood/4005-21077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21146/","id":21146,"name":"Neh-Buh-Loh","site_detail_url":"https://comicvine.gamespot.com/neh-buh-loh/4005-21146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21375/","id":21375,"name":"Do-Do","site_detail_url":"https://comicvine.gamespot.com/do-do/4005-21375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21379/","id":21379,"name":"Road Runner","site_detail_url":"https://comicvine.gamespot.com/road-runner/4005-21379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21460/","id":21460,"name":"Cheshire Cat","site_detail_url":"https://comicvine.gamespot.com/cheshire-cat/4005-21460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21689/","id":21689,"name":"Violet Liddle","site_detail_url":"https://comicvine.gamespot.com/violet-liddle/4005-21689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21717/","id":21717,"name":"Acacia","site_detail_url":"https://comicvine.gamespot.com/acacia/4005-21717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21893/","id":21893,"name":"Satan","site_detail_url":"https://comicvine.gamespot.com/satan/4005-21893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22071/","id":22071,"name":"Orochi","site_detail_url":"https://comicvine.gamespot.com/orochi/4005-22071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22143/","id":22143,"name":"Santa Claus","site_detail_url":"https://comicvine.gamespot.com/santa-claus/4005-22143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22531/","id":22531,"name":"King of Tears","site_detail_url":"https://comicvine.gamespot.com/king-of-tears/4005-22531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22835/","id":22835,"name":"Ashema","site_detail_url":"https://comicvine.gamespot.com/ashema/4005-22835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22836/","id":22836,"name":"Dreaming Celestial","site_detail_url":"https://comicvine.gamespot.com/dreaming-celestial/4005-22836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22886/","id":22886,"name":"Sea Witch","site_detail_url":"https://comicvine.gamespot.com/sea-witch/4005-22886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22892/","id":22892,"name":"Tarzan","site_detail_url":"https://comicvine.gamespot.com/tarzan/4005-22892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22925/","id":22925,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4005-22925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23007/","id":23007,"name":"Margali Szardos","site_detail_url":"https://comicvine.gamespot.com/margali-szardos/4005-23007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23047/","id":23047,"name":"LKZ","site_detail_url":"https://comicvine.gamespot.com/lkz/4005-23047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23118/","id":23118,"name":"Gaia","site_detail_url":"https://comicvine.gamespot.com/gaia/4005-23118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23170/","id":23170,"name":"Bat-Mite","site_detail_url":"https://comicvine.gamespot.com/bat-mite/4005-23170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23215/","id":23215,"name":"Tim Hunter","site_detail_url":"https://comicvine.gamespot.com/tim-hunter/4005-23215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23684/","id":23684,"name":"Bathala","site_detail_url":"https://comicvine.gamespot.com/bathala/4005-23684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23788/","id":23788,"name":"Raphael","site_detail_url":"https://comicvine.gamespot.com/raphael/4005-23788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23852/","id":23852,"name":"The Word","site_detail_url":"https://comicvine.gamespot.com/the-word/4005-23852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23898/","id":23898,"name":"Trelane","site_detail_url":"https://comicvine.gamespot.com/trelane/4005-23898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24010/","id":24010,"name":"Llan","site_detail_url":"https://comicvine.gamespot.com/llan/4005-24010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24232/","id":24232,"name":"Lucifer Morningstar","site_detail_url":"https://comicvine.gamespot.com/lucifer-morningstar/4005-24232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24247/","id":24247,"name":"Mervyn Pumpkinhead","site_detail_url":"https://comicvine.gamespot.com/mervyn-pumpkinhead/4005-24247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24308/","id":24308,"name":"Lord Satanus","site_detail_url":"https://comicvine.gamespot.com/lord-satanus/4005-24308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24384/","id":24384,"name":"Access","site_detail_url":"https://comicvine.gamespot.com/access/4005-24384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24402/","id":24402,"name":"Glorian","site_detail_url":"https://comicvine.gamespot.com/glorian/4005-24402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24481/","id":24481,"name":"Arioch","site_detail_url":"https://comicvine.gamespot.com/arioch/4005-24481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24659/","id":24659,"name":"Dr. Strangefate","site_detail_url":"https://comicvine.gamespot.com/dr-strangefate/4005-24659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24949/","id":24949,"name":"Cyttorak","site_detail_url":"https://comicvine.gamespot.com/cyttorak/4005-24949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24979/","id":24979,"name":"Flex Mentallo","site_detail_url":"https://comicvine.gamespot.com/flex-mentallo/4005-24979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25158/","id":25158,"name":"Shade","site_detail_url":"https://comicvine.gamespot.com/shade/4005-25158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25316/","id":25316,"name":"Shub-Niggurath","site_detail_url":"https://comicvine.gamespot.com/shub-niggurath/4005-25316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25495/","id":25495,"name":"Psycho-Pirate","site_detail_url":"https://comicvine.gamespot.com/psycho-pirate/4005-25495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25502/","id":25502,"name":"The White Queen","site_detail_url":"https://comicvine.gamespot.com/the-white-queen/4005-25502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25552/","id":25552,"name":"Mr. Gone","site_detail_url":"https://comicvine.gamespot.com/mr-gone/4005-25552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25556/","id":25556,"name":"Gary Mitchell","site_detail_url":"https://comicvine.gamespot.com/gary-mitchell/4005-25556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25617/","id":25617,"name":"Wrong","site_detail_url":"https://comicvine.gamespot.com/wrong/4005-25617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25752/","id":25752,"name":"Droopy","site_detail_url":"https://comicvine.gamespot.com/droopy/4005-25752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25825/","id":25825,"name":"Strafe","site_detail_url":"https://comicvine.gamespot.com/strafe/4005-25825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25998/","id":25998,"name":"Time Trapper","site_detail_url":"https://comicvine.gamespot.com/time-trapper/4005-25998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26109/","id":26109,"name":"Maya","site_detail_url":"https://comicvine.gamespot.com/maya/4005-26109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26110/","id":26110,"name":"Count Abyss","site_detail_url":"https://comicvine.gamespot.com/count-abyss/4005-26110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26233/","id":26233,"name":"Rift","site_detail_url":"https://comicvine.gamespot.com/rift/4005-26233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26318/","id":26318,"name":"Prince Wayfinder","site_detail_url":"https://comicvine.gamespot.com/prince-wayfinder/4005-26318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26481/","id":26481,"name":"Witchfire","site_detail_url":"https://comicvine.gamespot.com/witchfire/4005-26481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26817/","id":26817,"name":"Black Enchantress","site_detail_url":"https://comicvine.gamespot.com/black-enchantress/4005-26817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26995/","id":26995,"name":"Adversary","site_detail_url":"https://comicvine.gamespot.com/adversary/4005-26995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27007/","id":27007,"name":"Stardust the Super Wizard","site_detail_url":"https://comicvine.gamespot.com/stardust-the-super-wizard/4005-27007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27193/","id":27193,"name":"Captain Universe","site_detail_url":"https://comicvine.gamespot.com/captain-universe/4005-27193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27216/","id":27216,"name":"Ikonn","site_detail_url":"https://comicvine.gamespot.com/ikonn/4005-27216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27436/","id":27436,"name":"Mr. Mxyzptlk","site_detail_url":"https://comicvine.gamespot.com/mr-mxyzptlk/4005-27436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27564/","id":27564,"name":"Rhapsody","site_detail_url":"https://comicvine.gamespot.com/rhapsody/4005-27564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27672/","id":27672,"name":"Mistress Love","site_detail_url":"https://comicvine.gamespot.com/mistress-love/4005-27672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27673/","id":27673,"name":"Master Hate","site_detail_url":"https://comicvine.gamespot.com/master-hate/4005-27673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27921/","id":27921,"name":"Wild One","site_detail_url":"https://comicvine.gamespot.com/wild-one/4005-27921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28005/","id":28005,"name":"Kronos","site_detail_url":"https://comicvine.gamespot.com/kronos/4005-28005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28013/","id":28013,"name":"American Scream","site_detail_url":"https://comicvine.gamespot.com/american-scream/4005-28013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28090/","id":28090,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-28090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28118/","id":28118,"name":"Protege","site_detail_url":"https://comicvine.gamespot.com/protege/4005-28118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28702/","id":28702,"name":"Ace","site_detail_url":"https://comicvine.gamespot.com/ace/4005-28702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28751/","id":28751,"name":"Legba","site_detail_url":"https://comicvine.gamespot.com/legba/4005-28751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28795/","id":28795,"name":"Black Celestial","site_detail_url":"https://comicvine.gamespot.com/black-celestial/4005-28795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28888/","id":28888,"name":"Ambush Bug","site_detail_url":"https://comicvine.gamespot.com/ambush-bug/4005-28888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28991/","id":28991,"name":"Kaluu","site_detail_url":"https://comicvine.gamespot.com/kaluu/4005-28991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29057/","id":29057,"name":"Tannarak","site_detail_url":"https://comicvine.gamespot.com/tannarak/4005-29057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29092/","id":29092,"name":"Set","site_detail_url":"https://comicvine.gamespot.com/set/4005-29092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29807/","id":29807,"name":"The Starchild","site_detail_url":"https://comicvine.gamespot.com/the-starchild/4005-29807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29861/","id":29861,"name":"One Above All","site_detail_url":"https://comicvine.gamespot.com/one-above-all/4005-29861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30118/","id":30118,"name":"Star Brand","site_detail_url":"https://comicvine.gamespot.com/star-brand/4005-30118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30262/","id":30262,"name":"Shiva","site_detail_url":"https://comicvine.gamespot.com/shiva/4005-30262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31018/","id":31018,"name":"The Monitor","site_detail_url":"https://comicvine.gamespot.com/the-monitor/4005-31018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31064/","id":31064,"name":"Captain Everything","site_detail_url":"https://comicvine.gamespot.com/captain-everything/4005-31064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31128/","id":31128,"name":"Matter Master","site_detail_url":"https://comicvine.gamespot.com/matter-master/4005-31128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31297/","id":31297,"name":"Quisp","site_detail_url":"https://comicvine.gamespot.com/quisp/4005-31297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31464/","id":31464,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-31464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31756/","id":31756,"name":"The Lord High Papal","site_detail_url":"https://comicvine.gamespot.com/the-lord-high-papal/4005-31756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31996/","id":31996,"name":"Mad Jim Jaspers","site_detail_url":"https://comicvine.gamespot.com/mad-jim-jaspers/4005-31996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32131/","id":32131,"name":"Albus Dumbledore","site_detail_url":"https://comicvine.gamespot.com/albus-dumbledore/4005-32131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32289/","id":32289,"name":"Mask Man","site_detail_url":"https://comicvine.gamespot.com/mask-man/4005-32289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32857/","id":32857,"name":"Arishem the Judge","site_detail_url":"https://comicvine.gamespot.com/arishem-the-judge/4005-32857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32860/","id":32860,"name":"The Storyteller","site_detail_url":"https://comicvine.gamespot.com/the-storyteller/4005-32860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32957/","id":32957,"name":"Popeye","site_detail_url":"https://comicvine.gamespot.com/popeye/4005-32957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33126/","id":33126,"name":"Thunderbolt","site_detail_url":"https://comicvine.gamespot.com/thunderbolt/4005-33126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33687/","id":33687,"name":"Gammenon the Gatherer","site_detail_url":"https://comicvine.gamespot.com/gammenon-the-gatherer/4005-33687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33688/","id":33688,"name":"Ziran the Tester","site_detail_url":"https://comicvine.gamespot.com/ziran-the-tester/4005-33688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33689/","id":33689,"name":"Nezarr the Calculator","site_detail_url":"https://comicvine.gamespot.com/nezarr-the-calculator/4005-33689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33690/","id":33690,"name":"Oneg the Prober","site_detail_url":"https://comicvine.gamespot.com/oneg-the-prober/4005-33690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33976/","id":33976,"name":"Voldemort","site_detail_url":"https://comicvine.gamespot.com/voldemort/4005-33976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34348/","id":34348,"name":"Atleza","site_detail_url":"https://comicvine.gamespot.com/atleza/4005-34348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34455/","id":34455,"name":"Dream Weaver","site_detail_url":"https://comicvine.gamespot.com/dream-weaver/4005-34455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34526/","id":34526,"name":"Humus Sapien","site_detail_url":"https://comicvine.gamespot.com/humus-sapien/4005-34526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35722/","id":35722,"name":"Duran","site_detail_url":"https://comicvine.gamespot.com/duran/4005-35722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36299/","id":36299,"name":"Prime Mover","site_detail_url":"https://comicvine.gamespot.com/prime-mover/4005-36299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36795/","id":36795,"name":"Sorrow","site_detail_url":"https://comicvine.gamespot.com/sorrow/4005-36795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36815/","id":36815,"name":"Boss Smiley","site_detail_url":"https://comicvine.gamespot.com/boss-smiley/4005-36815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37303/","id":37303,"name":"Genghis Khan","site_detail_url":"https://comicvine.gamespot.com/genghis-khan/4005-37303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37505/","id":37505,"name":"Sonny Sumo","site_detail_url":"https://comicvine.gamespot.com/sonny-sumo/4005-37505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37723/","id":37723,"name":"Zemu","site_detail_url":"https://comicvine.gamespot.com/zemu/4005-37723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37801/","id":37801,"name":"Jake Long","site_detail_url":"https://comicvine.gamespot.com/jake-long/4005-37801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38294/","id":38294,"name":"Jafar","site_detail_url":"https://comicvine.gamespot.com/jafar/4005-38294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39277/","id":39277,"name":"Doctor Solar","site_detail_url":"https://comicvine.gamespot.com/doctor-solar/4005-39277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39511/","id":39511,"name":"Trenton Craft","site_detail_url":"https://comicvine.gamespot.com/trenton-craft/4005-39511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39678/","id":39678,"name":"Oona Goosepimple","site_detail_url":"https://comicvine.gamespot.com/oona-goosepimple/4005-39678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39876/","id":39876,"name":"Agent Anesthesia","site_detail_url":"https://comicvine.gamespot.com/agent-anesthesia/4005-39876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40431/","id":40431,"name":"Kyle Rayner","site_detail_url":"https://comicvine.gamespot.com/kyle-rayner/4005-40431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40505/","id":40505,"name":"Wiccan","site_detail_url":"https://comicvine.gamespot.com/wiccan/4005-40505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40527/","id":40527,"name":"Dr. Manhattan","site_detail_url":"https://comicvine.gamespot.com/dr-manhattan/4005-40527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40602/","id":40602,"name":"Mr. M","site_detail_url":"https://comicvine.gamespot.com/mr-m/4005-40602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40612/","id":40612,"name":"Dante","site_detail_url":"https://comicvine.gamespot.com/dante/4005-40612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40662/","id":40662,"name":"Tapestry","site_detail_url":"https://comicvine.gamespot.com/tapestry/4005-40662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40722/","id":40722,"name":"Vegeta","site_detail_url":"https://comicvine.gamespot.com/vegeta/4005-40722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40756/","id":40756,"name":"Superboy Prime","site_detail_url":"https://comicvine.gamespot.com/superboy-prime/4005-40756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40783/","id":40783,"name":"Toxin","site_detail_url":"https://comicvine.gamespot.com/toxin/4005-40783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40808/","id":40808,"name":"The Killer","site_detail_url":"https://comicvine.gamespot.com/the-killer/4005-40808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40852/","id":40852,"name":"Delirium of the Endless","site_detail_url":"https://comicvine.gamespot.com/delirium-of-the-endless/4005-40852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40873/","id":40873,"name":"Entropy","site_detail_url":"https://comicvine.gamespot.com/entropy/4005-40873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40874/","id":40874,"name":"Epiphany","site_detail_url":"https://comicvine.gamespot.com/epiphany/4005-40874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40989/","id":40989,"name":"John Black","site_detail_url":"https://comicvine.gamespot.com/john-black/4005-40989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40994/","id":40994,"name":"Cthulhu","site_detail_url":"https://comicvine.gamespot.com/cthulhu/4005-40994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41055/","id":41055,"name":"Imp","site_detail_url":"https://comicvine.gamespot.com/imp/4005-41055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41186/","id":41186,"name":"Scott Pilgrim","site_detail_url":"https://comicvine.gamespot.com/scott-pilgrim/4005-41186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41210/","id":41210,"name":"Black Alice","site_detail_url":"https://comicvine.gamespot.com/black-alice/4005-41210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41293/","id":41293,"name":"Parallax","site_detail_url":"https://comicvine.gamespot.com/parallax/4005-41293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41459/","id":41459,"name":"Jason Voorhees","site_detail_url":"https://comicvine.gamespot.com/jason-voorhees/4005-41459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41460/","id":41460,"name":"Freddy Krueger","site_detail_url":"https://comicvine.gamespot.com/freddy-krueger/4005-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41465/","id":41465,"name":"Pinhead","site_detail_url":"https://comicvine.gamespot.com/pinhead/4005-41465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41579/","id":41579,"name":"Evil Ernie","site_detail_url":"https://comicvine.gamespot.com/evil-ernie/4005-41579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41634/","id":41634,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4005-41634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41763/","id":41763,"name":"Klyzyzk Klzntplkz","site_detail_url":"https://comicvine.gamespot.com/klyzyzk-klzntplkz/4005-41763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41826/","id":41826,"name":"Freedom Ring","site_detail_url":"https://comicvine.gamespot.com/freedom-ring/4005-41826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42151/","id":42151,"name":"Gabreality","site_detail_url":"https://comicvine.gamespot.com/gabreality/4005-42151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42153/","id":42153,"name":"Polymorpha","site_detail_url":"https://comicvine.gamespot.com/polymorpha/4005-42153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42252/","id":42252,"name":"The Mask","site_detail_url":"https://comicvine.gamespot.com/the-mask/4005-42252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42495/","id":42495,"name":"Azmodus","site_detail_url":"https://comicvine.gamespot.com/azmodus/4005-42495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42501/","id":42501,"name":"Daken","site_detail_url":"https://comicvine.gamespot.com/daken/4005-42501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42798/","id":42798,"name":"Magician","site_detail_url":"https://comicvine.gamespot.com/magician/4005-42798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42895/","id":42895,"name":"Ashake","site_detail_url":"https://comicvine.gamespot.com/ashake/4005-42895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42905/","id":42905,"name":"Deathlok (Collins)","site_detail_url":"https://comicvine.gamespot.com/deathlok-collins/4005-42905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42951/","id":42951,"name":"Altwaal","site_detail_url":"https://comicvine.gamespot.com/altwaal/4005-42951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42966/","id":42966,"name":"Danik","site_detail_url":"https://comicvine.gamespot.com/danik/4005-42966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42974/","id":42974,"name":"Solusandra","site_detail_url":"https://comicvine.gamespot.com/solusandra/4005-42974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43019/","id":43019,"name":"Orihime Inoue","site_detail_url":"https://comicvine.gamespot.com/orihime-inoue/4005-43019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43025/","id":43025,"name":"Appolyon","site_detail_url":"https://comicvine.gamespot.com/appolyon/4005-43025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43162/","id":43162,"name":"Twilight","site_detail_url":"https://comicvine.gamespot.com/twilight/4005-43162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43345/","id":43345,"name":"Kamui Shirō","site_detail_url":"https://comicvine.gamespot.com/kamui-shiro/4005-43345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43354/","id":43354,"name":"Edifice Rex","site_detail_url":"https://comicvine.gamespot.com/edifice-rex/4005-43354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43469/","id":43469,"name":"Pathway","site_detail_url":"https://comicvine.gamespot.com/pathway/4005-43469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43524/","id":43524,"name":"M-Plate","site_detail_url":"https://comicvine.gamespot.com/m-plate/4005-43524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43769/","id":43769,"name":"Hat","site_detail_url":"https://comicvine.gamespot.com/hat/4005-43769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43887/","id":43887,"name":"Sykes","site_detail_url":"https://comicvine.gamespot.com/sykes/4005-43887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44108/","id":44108,"name":"Jedah","site_detail_url":"https://comicvine.gamespot.com/jedah/4005-44108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44252/","id":44252,"name":"Straw Man","site_detail_url":"https://comicvine.gamespot.com/straw-man/4005-44252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44289/","id":44289,"name":"Akhenaten","site_detail_url":"https://comicvine.gamespot.com/akhenaten/4005-44289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44290/","id":44290,"name":"Unity Kinkaid","site_detail_url":"https://comicvine.gamespot.com/unity-kinkaid/4005-44290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44337/","id":44337,"name":"Astarte","site_detail_url":"https://comicvine.gamespot.com/astarte/4005-44337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44359/","id":44359,"name":"Johnny C","site_detail_url":"https://comicvine.gamespot.com/johnny-c/4005-44359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44368/","id":44368,"name":"Mikaboshi","site_detail_url":"https://comicvine.gamespot.com/mikaboshi/4005-44368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44459/","id":44459,"name":"Unbeing","site_detail_url":"https://comicvine.gamespot.com/unbeing/4005-44459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44473/","id":44473,"name":"One-Above-All","site_detail_url":"https://comicvine.gamespot.com/one-above-all/4005-44473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44523/","id":44523,"name":"Kabuto Yakushi","site_detail_url":"https://comicvine.gamespot.com/kabuto-yakushi/4005-44523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44536/","id":44536,"name":"Dreamqueen","site_detail_url":"https://comicvine.gamespot.com/dreamqueen/4005-44536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44937/","id":44937,"name":"Exitar the Exterminator","site_detail_url":"https://comicvine.gamespot.com/exitar-the-exterminator/4005-44937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45000/","id":45000,"name":"Tobi","site_detail_url":"https://comicvine.gamespot.com/tobi/4005-45000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45048/","id":45048,"name":"Rao","site_detail_url":"https://comicvine.gamespot.com/rao/4005-45048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45319/","id":45319,"name":"Locke","site_detail_url":"https://comicvine.gamespot.com/locke/4005-45319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45332/","id":45332,"name":"Ixis Naugus","site_detail_url":"https://comicvine.gamespot.com/ixis-naugus/4005-45332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45334/","id":45334,"name":"Dimitri the Echidna","site_detail_url":"https://comicvine.gamespot.com/dimitri-the-echidna/4005-45334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45339/","id":45339,"name":"Mammoth Mogul","site_detail_url":"https://comicvine.gamespot.com/mammoth-mogul/4005-45339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45364/","id":45364,"name":"Darth Krayt","site_detail_url":"https://comicvine.gamespot.com/darth-krayt/4005-45364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45371/","id":45371,"name":"InuYasha","site_detail_url":"https://comicvine.gamespot.com/inuyasha/4005-45371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45374/","id":45374,"name":"Yusuke Urameshi","site_detail_url":"https://comicvine.gamespot.com/yusuke-urameshi/4005-45374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45397/","id":45397,"name":"Tikal","site_detail_url":"https://comicvine.gamespot.com/tikal/4005-45397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45469/","id":45469,"name":"Sesshomaru","site_detail_url":"https://comicvine.gamespot.com/sesshomaru/4005-45469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45527/","id":45527,"name":"Guts","site_detail_url":"https://comicvine.gamespot.com/guts/4005-45527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45590/","id":45590,"name":"Scotty Summers","site_detail_url":"https://comicvine.gamespot.com/scotty-summers/4005-45590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45611/","id":45611,"name":"Silver","site_detail_url":"https://comicvine.gamespot.com/silver/4005-45611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45697/","id":45697,"name":"Sayd","site_detail_url":"https://comicvine.gamespot.com/sayd/4005-45697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45769/","id":45769,"name":"Yuga Khan","site_detail_url":"https://comicvine.gamespot.com/yuga-khan/4005-45769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45800/","id":45800,"name":"Griffith","site_detail_url":"https://comicvine.gamespot.com/griffith/4005-45800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45922/","id":45922,"name":"Red Power Ranger","site_detail_url":"https://comicvine.gamespot.com/red-power-ranger/4005-45922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46049/","id":46049,"name":"Toguro Ototo","site_detail_url":"https://comicvine.gamespot.com/toguro-ototo/4005-46049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46068/","id":46068,"name":"Thessaly","site_detail_url":"https://comicvine.gamespot.com/thessaly/4005-46068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46085/","id":46085,"name":"Doktor Sleepless","site_detail_url":"https://comicvine.gamespot.com/doktor-sleepless/4005-46085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46121/","id":46121,"name":"Crusader","site_detail_url":"https://comicvine.gamespot.com/crusader/4005-46121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46186/","id":46186,"name":"Tefral the Surveyor","site_detail_url":"https://comicvine.gamespot.com/tefral-the-surveyor/4005-46186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46248/","id":46248,"name":"Grant Morrison","site_detail_url":"https://comicvine.gamespot.com/grant-morrison/4005-46248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46491/","id":46491,"name":"Poppa Rocks","site_detail_url":"https://comicvine.gamespot.com/poppa-rocks/4005-46491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46507/","id":46507,"name":"Jenny Fractal","site_detail_url":"https://comicvine.gamespot.com/jenny-fractal/4005-46507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46725/","id":46725,"name":"Ginji Amano","site_detail_url":"https://comicvine.gamespot.com/ginji-amano/4005-46725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46726/","id":46726,"name":"Ban Mido","site_detail_url":"https://comicvine.gamespot.com/ban-mido/4005-46726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46842/","id":46842,"name":"Devron the Experimenter","site_detail_url":"https://comicvine.gamespot.com/devron-the-experimenter/4005-46842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46843/","id":46843,"name":"Gamiel the Manipulator","site_detail_url":"https://comicvine.gamespot.com/gamiel-the-manipulator/4005-46843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46844/","id":46844,"name":"Jemiah the Analyzer","site_detail_url":"https://comicvine.gamespot.com/jemiah-the-analyzer/4005-46844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46845/","id":46845,"name":"Hargen the Measurer","site_detail_url":"https://comicvine.gamespot.com/hargen-the-measurer/4005-46845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46866/","id":46866,"name":"X","site_detail_url":"https://comicvine.gamespot.com/x/4005-46866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46989/","id":46989,"name":"Witchie-poo","site_detail_url":"https://comicvine.gamespot.com/witchie-poo/4005-46989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47037/","id":47037,"name":"ARC Trooper","site_detail_url":"https://comicvine.gamespot.com/arc-trooper/4005-47037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47062/","id":47062,"name":"Incubus","site_detail_url":"https://comicvine.gamespot.com/incubus/4005-47062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47112/","id":47112,"name":"Durge","site_detail_url":"https://comicvine.gamespot.com/durge/4005-47112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47361/","id":47361,"name":"Phaedra","site_detail_url":"https://comicvine.gamespot.com/phaedra/4005-47361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47505/","id":47505,"name":"Terrus","site_detail_url":"https://comicvine.gamespot.com/terrus/4005-47505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47546/","id":47546,"name":"Lando, Man of Magic","site_detail_url":"https://comicvine.gamespot.com/lando-man-of-magic/4005-47546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47705/","id":47705,"name":"Athair","site_detail_url":"https://comicvine.gamespot.com/athair/4005-47705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47752/","id":47752,"name":"Zonic","site_detail_url":"https://comicvine.gamespot.com/zonic/4005-47752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47816/","id":47816,"name":"Jon Farmer","site_detail_url":"https://comicvine.gamespot.com/jon-farmer/4005-47816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47846/","id":47846,"name":"The Rumor","site_detail_url":"https://comicvine.gamespot.com/the-rumor/4005-47846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47899/","id":47899,"name":"Ra","site_detail_url":"https://comicvine.gamespot.com/ra/4005-47899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48052/","id":48052,"name":"Jugo","site_detail_url":"https://comicvine.gamespot.com/jugo/4005-48052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48319/","id":48319,"name":"Romeo","site_detail_url":"https://comicvine.gamespot.com/romeo/4005-48319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48428/","id":48428,"name":"Yog-Sothoth","site_detail_url":"https://comicvine.gamespot.com/yog-sothoth/4005-48428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48499/","id":48499,"name":"Ben 10","site_detail_url":"https://comicvine.gamespot.com/ben-10/4005-48499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48503/","id":48503,"name":"Nyarlathotep","site_detail_url":"https://comicvine.gamespot.com/nyarlathotep/4005-48503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48662/","id":48662,"name":"Galactiac","site_detail_url":"https://comicvine.gamespot.com/galactiac/4005-48662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48687/","id":48687,"name":"White Witch","site_detail_url":"https://comicvine.gamespot.com/white-witch/4005-48687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48732/","id":48732,"name":"Schrodinger","site_detail_url":"https://comicvine.gamespot.com/schrodinger/4005-48732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48932/","id":48932,"name":"Sakura","site_detail_url":"https://comicvine.gamespot.com/sakura/4005-48932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49020/","id":49020,"name":"Geralt of Rivia","site_detail_url":"https://comicvine.gamespot.com/geralt-of-rivia/4005-49020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49048/","id":49048,"name":"Sketch","site_detail_url":"https://comicvine.gamespot.com/sketch/4005-49048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49070/","id":49070,"name":"Nix Uotan","site_detail_url":"https://comicvine.gamespot.com/nix-uotan/4005-49070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49074/","id":49074,"name":"Molecular Master","site_detail_url":"https://comicvine.gamespot.com/molecular-master/4005-49074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49081/","id":49081,"name":"Kid Grave","site_detail_url":"https://comicvine.gamespot.com/kid-grave/4005-49081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49093/","id":49093,"name":"Amaterasu","site_detail_url":"https://comicvine.gamespot.com/amaterasu/4005-49093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49094/","id":49094,"name":"Charmcaster","site_detail_url":"https://comicvine.gamespot.com/charmcaster/4005-49094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49165/","id":49165,"name":"The Savior","site_detail_url":"https://comicvine.gamespot.com/the-savior/4005-49165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49221/","id":49221,"name":"Lucifer","site_detail_url":"https://comicvine.gamespot.com/lucifer/4005-49221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49503/","id":49503,"name":"Doc Magus","site_detail_url":"https://comicvine.gamespot.com/doc-magus/4005-49503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49562/","id":49562,"name":"Zor","site_detail_url":"https://comicvine.gamespot.com/zor/4005-49562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49598/","id":49598,"name":"Predalien","site_detail_url":"https://comicvine.gamespot.com/predalien/4005-49598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49602/","id":49602,"name":"Galen Marek","site_detail_url":"https://comicvine.gamespot.com/galen-marek/4005-49602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49614/","id":49614,"name":"Namine","site_detail_url":"https://comicvine.gamespot.com/namine/4005-49614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49665/","id":49665,"name":"Megistus","site_detail_url":"https://comicvine.gamespot.com/megistus/4005-49665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49806/","id":49806,"name":"Tartarus","site_detail_url":"https://comicvine.gamespot.com/tartarus/4005-49806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49995/","id":49995,"name":"Karl","site_detail_url":"https://comicvine.gamespot.com/karl/4005-49995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50037/","id":50037,"name":"Mega Man","site_detail_url":"https://comicvine.gamespot.com/mega-man/4005-50037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50139/","id":50139,"name":"Hex","site_detail_url":"https://comicvine.gamespot.com/hex/4005-50139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50155/","id":50155,"name":"Mr. Nobody","site_detail_url":"https://comicvine.gamespot.com/mr-nobody/4005-50155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50213/","id":50213,"name":"Warp Savant","site_detail_url":"https://comicvine.gamespot.com/warp-savant/4005-50213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50268/","id":50268,"name":"Zexion","site_detail_url":"https://comicvine.gamespot.com/zexion/4005-50268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50482/","id":50482,"name":"Sailor Moon","site_detail_url":"https://comicvine.gamespot.com/sailor-moon/4005-50482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50671/","id":50671,"name":"Queen Beryl","site_detail_url":"https://comicvine.gamespot.com/queen-beryl/4005-50671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50793/","id":50793,"name":"Hao Asakura","site_detail_url":"https://comicvine.gamespot.com/hao-asakura/4005-50793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50916/","id":50916,"name":"Billy Challas","site_detail_url":"https://comicvine.gamespot.com/billy-challas/4005-50916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50950/","id":50950,"name":"Mr. Eff","site_detail_url":"https://comicvine.gamespot.com/mr-eff/4005-50950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51248/","id":51248,"name":"Moleculon","site_detail_url":"https://comicvine.gamespot.com/moleculon/4005-51248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51353/","id":51353,"name":"Infinite Man","site_detail_url":"https://comicvine.gamespot.com/infinite-man/4005-51353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51448/","id":51448,"name":"Randall Flagg","site_detail_url":"https://comicvine.gamespot.com/randall-flagg/4005-51448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51535/","id":51535,"name":"Krakkan","site_detail_url":"https://comicvine.gamespot.com/krakkan/4005-51535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51553/","id":51553,"name":"Max Faraday","site_detail_url":"https://comicvine.gamespot.com/max-faraday/4005-51553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51792/","id":51792,"name":"D","site_detail_url":"https://comicvine.gamespot.com/d/4005-51792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51951/","id":51951,"name":"Jaghur","site_detail_url":"https://comicvine.gamespot.com/jaghur/4005-51951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52031/","id":52031,"name":"Starchild","site_detail_url":"https://comicvine.gamespot.com/starchild/4005-52031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52129/","id":52129,"name":"Lastic","site_detail_url":"https://comicvine.gamespot.com/lastic/4005-52129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52297/","id":52297,"name":"Shagg","site_detail_url":"https://comicvine.gamespot.com/shagg/4005-52297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52321/","id":52321,"name":"Man of Miracles","site_detail_url":"https://comicvine.gamespot.com/man-of-miracles/4005-52321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52515/","id":52515,"name":"The Wretch","site_detail_url":"https://comicvine.gamespot.com/the-wretch/4005-52515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52665/","id":52665,"name":"Storybook Smith","site_detail_url":"https://comicvine.gamespot.com/storybook-smith/4005-52665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52762/","id":52762,"name":"Mysterium","site_detail_url":"https://comicvine.gamespot.com/mysterium/4005-52762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52772/","id":52772,"name":"Vibrex","site_detail_url":"https://comicvine.gamespot.com/vibrex/4005-52772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52941/","id":52941,"name":"Painter of 1000 Perils","site_detail_url":"https://comicvine.gamespot.com/painter-of-1000-perils/4005-52941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53007/","id":53007,"name":"Minity","site_detail_url":"https://comicvine.gamespot.com/minity/4005-53007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53013/","id":53013,"name":"Syeniess","site_detail_url":"https://comicvine.gamespot.com/syeniess/4005-53013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53411/","id":53411,"name":"The Brothers Yin and Yang","site_detail_url":"https://comicvine.gamespot.com/the-brothers-yin-and-yang/4005-53411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53521/","id":53521,"name":"Genocide","site_detail_url":"https://comicvine.gamespot.com/genocide/4005-53521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53582/","id":53582,"name":"Michael Corvin","site_detail_url":"https://comicvine.gamespot.com/michael-corvin/4005-53582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53639/","id":53639,"name":"Lord Chaos","site_detail_url":"https://comicvine.gamespot.com/lord-chaos/4005-53639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53778/","id":53778,"name":"Armageddon","site_detail_url":"https://comicvine.gamespot.com/armageddon/4005-53778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53797/","id":53797,"name":"Queen Nehellenia","site_detail_url":"https://comicvine.gamespot.com/queen-nehellenia/4005-53797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53810/","id":53810,"name":"Wiseman","site_detail_url":"https://comicvine.gamespot.com/wiseman/4005-53810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54005/","id":54005,"name":"Karma","site_detail_url":"https://comicvine.gamespot.com/karma/4005-54005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54109/","id":54109,"name":"Edwar","site_detail_url":"https://comicvine.gamespot.com/edwar/4005-54109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54904/","id":54904,"name":"Genie","site_detail_url":"https://comicvine.gamespot.com/genie/4005-54904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55074/","id":55074,"name":"Marik Ishtar","site_detail_url":"https://comicvine.gamespot.com/marik-ishtar/4005-55074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55178/","id":55178,"name":"Omnipotus","site_detail_url":"https://comicvine.gamespot.com/omnipotus/4005-55178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55484/","id":55484,"name":"Luigi","site_detail_url":"https://comicvine.gamespot.com/luigi/4005-55484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55490/","id":55490,"name":"Q","site_detail_url":"https://comicvine.gamespot.com/q/4005-55490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55794/","id":55794,"name":"Mandalore the Ultimate","site_detail_url":"https://comicvine.gamespot.com/mandalore-the-ultimate/4005-55794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55806/","id":55806,"name":"Gwen Tennyson","site_detail_url":"https://comicvine.gamespot.com/gwen-tennyson/4005-55806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55845/","id":55845,"name":"Amenadiel","site_detail_url":"https://comicvine.gamespot.com/amenadiel/4005-55845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56001/","id":56001,"name":"Fig Keele","site_detail_url":"https://comicvine.gamespot.com/fig-keele/4005-56001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56030/","id":56030,"name":"Elyon Brown","site_detail_url":"https://comicvine.gamespot.com/elyon-brown/4005-56030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56072/","id":56072,"name":"First Fallen","site_detail_url":"https://comicvine.gamespot.com/first-fallen/4005-56072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56093/","id":56093,"name":"Wilson Taylor","site_detail_url":"https://comicvine.gamespot.com/wilson-taylor/4005-56093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56101/","id":56101,"name":"Synnar","site_detail_url":"https://comicvine.gamespot.com/synnar/4005-56101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56244/","id":56244,"name":"The Presence","site_detail_url":"https://comicvine.gamespot.com/the-presence/4005-56244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56255/","id":56255,"name":"Alfie O'Meagan","site_detail_url":"https://comicvine.gamespot.com/alfie-omeagan/4005-56255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56388/","id":56388,"name":"Chimera","site_detail_url":"https://comicvine.gamespot.com/chimera/4005-56388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56391/","id":56391,"name":"Shenlong","site_detail_url":"https://comicvine.gamespot.com/shenlong/4005-56391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56447/","id":56447,"name":"Myrwhydden","site_detail_url":"https://comicvine.gamespot.com/myrwhydden/4005-56447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56601/","id":56601,"name":"Herupa Hando Hu","site_detail_url":"https://comicvine.gamespot.com/herupa-hando-hu/4005-56601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56602/","id":56602,"name":"Dawlakispokpok","site_detail_url":"https://comicvine.gamespot.com/dawlakispokpok/4005-56602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56625/","id":56625,"name":"The Never","site_detail_url":"https://comicvine.gamespot.com/the-never/4005-56625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56693/","id":56693,"name":"Scar","site_detail_url":"https://comicvine.gamespot.com/scar/4005-56693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56831/","id":56831,"name":"Holly-Ann Ember","site_detail_url":"https://comicvine.gamespot.com/holly-ann-ember/4005-56831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56951/","id":56951,"name":"Captain Rex","site_detail_url":"https://comicvine.gamespot.com/captain-rex/4005-56951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57057/","id":57057,"name":"SpongeBob SquarePants","site_detail_url":"https://comicvine.gamespot.com/spongebob-squarepants/4005-57057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57099/","id":57099,"name":"Godstalker","site_detail_url":"https://comicvine.gamespot.com/godstalker/4005-57099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57136/","id":57136,"name":"Oracle","site_detail_url":"https://comicvine.gamespot.com/oracle/4005-57136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57155/","id":57155,"name":"Tsukiyomi","site_detail_url":"https://comicvine.gamespot.com/tsukiyomi/4005-57155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57478/","id":57478,"name":"Belinda","site_detail_url":"https://comicvine.gamespot.com/belinda/4005-57478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57490/","id":57490,"name":"Scathan the Approver","site_detail_url":"https://comicvine.gamespot.com/scathan-the-approver/4005-57490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57557/","id":57557,"name":"Zillo Valla","site_detail_url":"https://comicvine.gamespot.com/zillo-valla/4005-57557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57621/","id":57621,"name":"Choronzon","site_detail_url":"https://comicvine.gamespot.com/choronzon/4005-57621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57981/","id":57981,"name":"Arceus","site_detail_url":"https://comicvine.gamespot.com/arceus/4005-57981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58020/","id":58020,"name":"Plokta","site_detail_url":"https://comicvine.gamespot.com/plokta/4005-58020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58113/","id":58113,"name":"Khatylis","site_detail_url":"https://comicvine.gamespot.com/khatylis/4005-58113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58349/","id":58349,"name":"Mister Jyn","site_detail_url":"https://comicvine.gamespot.com/mister-jyn/4005-58349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58435/","id":58435,"name":"Mr. Termineus","site_detail_url":"https://comicvine.gamespot.com/mr-termineus/4005-58435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58447/","id":58447,"name":"Porunga","site_detail_url":"https://comicvine.gamespot.com/porunga/4005-58447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58491/","id":58491,"name":"The Destroyer","site_detail_url":"https://comicvine.gamespot.com/the-destroyer/4005-58491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58826/","id":58826,"name":"Time Traveler","site_detail_url":"https://comicvine.gamespot.com/time-traveler/4005-58826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58999/","id":58999,"name":"Calie Liddle","site_detail_url":"https://comicvine.gamespot.com/calie-liddle/4005-58999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59003/","id":59003,"name":"Darrel Daniel","site_detail_url":"https://comicvine.gamespot.com/darrel-daniel/4005-59003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59050/","id":59050,"name":"Little Washu","site_detail_url":"https://comicvine.gamespot.com/little-washu/4005-59050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59105/","id":59105,"name":"Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/blue-celestial/4005-59105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59172/","id":59172,"name":"The Marquis of Death","site_detail_url":"https://comicvine.gamespot.com/the-marquis-of-death/4005-59172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59245/","id":59245,"name":"Ultimator","site_detail_url":"https://comicvine.gamespot.com/ultimator/4005-59245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59249/","id":59249,"name":"Mephiles the Dark","site_detail_url":"https://comicvine.gamespot.com/mephiles-the-dark/4005-59249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59341/","id":59341,"name":"Leprechaun","site_detail_url":"https://comicvine.gamespot.com/leprechaun/4005-59341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59364/","id":59364,"name":"Princess Alyss Heart","site_detail_url":"https://comicvine.gamespot.com/princess-alyss-heart/4005-59364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59369/","id":59369,"name":"David Richards","site_detail_url":"https://comicvine.gamespot.com/david-richards/4005-59369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59371/","id":59371,"name":"The Red-Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/the-red-blue-celestial/4005-59371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59372/","id":59372,"name":"The Alien Entity","site_detail_url":"https://comicvine.gamespot.com/the-alien-entity/4005-59372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59373/","id":59373,"name":"Anthropomorpho","site_detail_url":"https://comicvine.gamespot.com/anthropomorpho/4005-59373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59382/","id":59382,"name":"Elalyth","site_detail_url":"https://comicvine.gamespot.com/elalyth/4005-59382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59444/","id":59444,"name":"Eulogy","site_detail_url":"https://comicvine.gamespot.com/eulogy/4005-59444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59445/","id":59445,"name":"Expediency","site_detail_url":"https://comicvine.gamespot.com/expediency/4005-59445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59453/","id":59453,"name":"Psyk-Out","site_detail_url":"https://comicvine.gamespot.com/psyk-out/4005-59453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59459/","id":59459,"name":"Galacta","site_detail_url":"https://comicvine.gamespot.com/galacta/4005-59459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59594/","id":59594,"name":"Rox Ogama","site_detail_url":"https://comicvine.gamespot.com/rox-ogama/4005-59594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59685/","id":59685,"name":"Monsieur Stigmonius","site_detail_url":"https://comicvine.gamespot.com/monsieur-stigmonius/4005-59685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60266/","id":60266,"name":"Dharma","site_detail_url":"https://comicvine.gamespot.com/dharma/4005-60266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60390/","id":60390,"name":"Patrick Star","site_detail_url":"https://comicvine.gamespot.com/patrick-star/4005-60390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60730/","id":60730,"name":"The Archenemy","site_detail_url":"https://comicvine.gamespot.com/the-archenemy/4005-60730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60755/","id":60755,"name":"The Fulcrum","site_detail_url":"https://comicvine.gamespot.com/the-fulcrum/4005-60755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60958/","id":60958,"name":"Mary Shelley Lovecraft","site_detail_url":"https://comicvine.gamespot.com/mary-shelley-lovecraft/4005-60958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60985/","id":60985,"name":"Mixyezpitelik","site_detail_url":"https://comicvine.gamespot.com/mixyezpitelik/4005-60985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60993/","id":60993,"name":"Plutonian","site_detail_url":"https://comicvine.gamespot.com/plutonian/4005-60993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61002/","id":61002,"name":"Meantime","site_detail_url":"https://comicvine.gamespot.com/meantime/4005-61002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61014/","id":61014,"name":"The Great Evil Beast","site_detail_url":"https://comicvine.gamespot.com/the-great-evil-beast/4005-61014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61086/","id":61086,"name":"Skyrocket Steele","site_detail_url":"https://comicvine.gamespot.com/skyrocket-steele/4005-61086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61222/","id":61222,"name":"Demon of the Poster","site_detail_url":"https://comicvine.gamespot.com/demon-of-the-poster/4005-61222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61433/","id":61433,"name":"Brother Mutant","site_detail_url":"https://comicvine.gamespot.com/brother-mutant/4005-61433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61443/","id":61443,"name":"Barter","site_detail_url":"https://comicvine.gamespot.com/barter/4005-61443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61474/","id":61474,"name":"Skip Collins","site_detail_url":"https://comicvine.gamespot.com/skip-collins/4005-61474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61698/","id":61698,"name":"Mr. Revise","site_detail_url":"https://comicvine.gamespot.com/mr-revise/4005-61698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61805/","id":61805,"name":"Architect","site_detail_url":"https://comicvine.gamespot.com/architect/4005-61805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62021/","id":62021,"name":"Enchantress (Lushton)","site_detail_url":"https://comicvine.gamespot.com/enchantress-lushton/4005-62021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62072/","id":62072,"name":"Manifold","site_detail_url":"https://comicvine.gamespot.com/manifold/4005-62072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62269/","id":62269,"name":"He Who Remains","site_detail_url":"https://comicvine.gamespot.com/he-who-remains/4005-62269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62319/","id":62319,"name":"Virtual Reality","site_detail_url":"https://comicvine.gamespot.com/virtual-reality/4005-62319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62481/","id":62481,"name":"Nucleus","site_detail_url":"https://comicvine.gamespot.com/nucleus/4005-62481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62546/","id":62546,"name":"Imp From the Eleventh Dimension","site_detail_url":"https://comicvine.gamespot.com/imp-from-the-eleventh-dimension/4005-62546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62564/","id":62564,"name":"Myx","site_detail_url":"https://comicvine.gamespot.com/myx/4005-62564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62624/","id":62624,"name":"Beetlejuice","site_detail_url":"https://comicvine.gamespot.com/beetlejuice/4005-62624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62635/","id":62635,"name":"Hungry","site_detail_url":"https://comicvine.gamespot.com/hungry/4005-62635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62677/","id":62677,"name":"Danzo Shimura","site_detail_url":"https://comicvine.gamespot.com/danzo-shimura/4005-62677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62751/","id":62751,"name":"Feist","site_detail_url":"https://comicvine.gamespot.com/feist/4005-62751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62813/","id":62813,"name":"Yūko Ichihara","site_detail_url":"https://comicvine.gamespot.com/yuko-ichihara/4005-62813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62849/","id":62849,"name":"Zagan","site_detail_url":"https://comicvine.gamespot.com/zagan/4005-62849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62930/","id":62930,"name":"Nagraj","site_detail_url":"https://comicvine.gamespot.com/nagraj/4005-62930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62976/","id":62976,"name":"Lorelei of Fairyland","site_detail_url":"https://comicvine.gamespot.com/lorelei-of-fairyland/4005-62976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63170/","id":63170,"name":"The Great Gazoo","site_detail_url":"https://comicvine.gamespot.com/the-great-gazoo/4005-63170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63424/","id":63424,"name":"Sise-Neg","site_detail_url":"https://comicvine.gamespot.com/sise-neg/4005-63424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63435/","id":63435,"name":"Cyvus Vail","site_detail_url":"https://comicvine.gamespot.com/cyvus-vail/4005-63435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64215/","id":64215,"name":"Vartu","site_detail_url":"https://comicvine.gamespot.com/vartu/4005-64215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64268/","id":64268,"name":"Marka Ragnos","site_detail_url":"https://comicvine.gamespot.com/marka-ragnos/4005-64268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64936/","id":64936,"name":"Arioch","site_detail_url":"https://comicvine.gamespot.com/arioch/4005-64936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65166/","id":65166,"name":"Mola Ram","site_detail_url":"https://comicvine.gamespot.com/mola-ram/4005-65166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65186/","id":65186,"name":"Dracula","site_detail_url":"https://comicvine.gamespot.com/dracula/4005-65186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65460/","id":65460,"name":"Quink","site_detail_url":"https://comicvine.gamespot.com/quink/4005-65460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65461/","id":65461,"name":"Quirk","site_detail_url":"https://comicvine.gamespot.com/quirk/4005-65461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65619/","id":65619,"name":"Kathulos","site_detail_url":"https://comicvine.gamespot.com/kathulos/4005-65619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65624/","id":65624,"name":"Uriah the Faithful","site_detail_url":"https://comicvine.gamespot.com/uriah-the-faithful/4005-65624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66105/","id":66105,"name":"Hell Girl","site_detail_url":"https://comicvine.gamespot.com/hell-girl/4005-66105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66181/","id":66181,"name":"Doc Virtual","site_detail_url":"https://comicvine.gamespot.com/doc-virtual/4005-66181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66186/","id":66186,"name":"Lord Zedd","site_detail_url":"https://comicvine.gamespot.com/lord-zedd/4005-66186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66196/","id":66196,"name":"Job Burke","site_detail_url":"https://comicvine.gamespot.com/job-burke/4005-66196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66197/","id":66197,"name":"Cleito","site_detail_url":"https://comicvine.gamespot.com/cleito/4005-66197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66303/","id":66303,"name":"Jabberwocky","site_detail_url":"https://comicvine.gamespot.com/jabberwocky/4005-66303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66477/","id":66477,"name":"Max Damage","site_detail_url":"https://comicvine.gamespot.com/max-damage/4005-66477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67140/","id":67140,"name":"Gideon Gordon Graves","site_detail_url":"https://comicvine.gamespot.com/gideon-gordon-graves/4005-67140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67170/","id":67170,"name":"Kratos","site_detail_url":"https://comicvine.gamespot.com/kratos/4005-67170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67208/","id":67208,"name":"Cad Bane","site_detail_url":"https://comicvine.gamespot.com/cad-bane/4005-67208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67329/","id":67329,"name":"Mad God Chaos","site_detail_url":"https://comicvine.gamespot.com/mad-god-chaos/4005-67329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67453/","id":67453,"name":"Krishna","site_detail_url":"https://comicvine.gamespot.com/krishna/4005-67453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67831/","id":67831,"name":"Red Jack","site_detail_url":"https://comicvine.gamespot.com/red-jack/4005-67831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67857/","id":67857,"name":"Mentallium Man","site_detail_url":"https://comicvine.gamespot.com/mentallium-man/4005-67857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68026/","id":68026,"name":"Jasmine","site_detail_url":"https://comicvine.gamespot.com/jasmine/4005-68026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68086/","id":68086,"name":"Beatrice","site_detail_url":"https://comicvine.gamespot.com/beatrice/4005-68086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68087/","id":68087,"name":"Battler Ushiromiya","site_detail_url":"https://comicvine.gamespot.com/battler-ushiromiya/4005-68087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68225/","id":68225,"name":"The One","site_detail_url":"https://comicvine.gamespot.com/the-one/4005-68225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68465/","id":68465,"name":"Karen Clancy","site_detail_url":"https://comicvine.gamespot.com/karen-clancy/4005-68465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68556/","id":68556,"name":"Echo","site_detail_url":"https://comicvine.gamespot.com/echo/4005-68556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68699/","id":68699,"name":"Nemesis","site_detail_url":"https://comicvine.gamespot.com/nemesis/4005-68699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68731/","id":68731,"name":"Le Bete Noir","site_detail_url":"https://comicvine.gamespot.com/le-bete-noir/4005-68731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68766/","id":68766,"name":"Jacob Black","site_detail_url":"https://comicvine.gamespot.com/jacob-black/4005-68766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68938/","id":68938,"name":"Deconstructo","site_detail_url":"https://comicvine.gamespot.com/deconstructo/4005-68938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69270/","id":69270,"name":"Porygon","site_detail_url":"https://comicvine.gamespot.com/porygon/4005-69270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69378/","id":69378,"name":"Doctor Dredd","site_detail_url":"https://comicvine.gamespot.com/doctor-dredd/4005-69378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69380/","id":69380,"name":"C'Thulon","site_detail_url":"https://comicvine.gamespot.com/cthulon/4005-69380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69479/","id":69479,"name":"Uridimmu","site_detail_url":"https://comicvine.gamespot.com/uridimmu/4005-69479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69541/","id":69541,"name":"Jace Beleren","site_detail_url":"https://comicvine.gamespot.com/jace-beleren/4005-69541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69900/","id":69900,"name":"Piper Halliwell","site_detail_url":"https://comicvine.gamespot.com/piper-halliwell/4005-69900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69901/","id":69901,"name":"Phoebe Halliwell","site_detail_url":"https://comicvine.gamespot.com/phoebe-halliwell/4005-69901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69902/","id":69902,"name":"Paige Matthews","site_detail_url":"https://comicvine.gamespot.com/paige-matthews/4005-69902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69982/","id":69982,"name":"Wallace Sage","site_detail_url":"https://comicvine.gamespot.com/wallace-sage/4005-69982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70192/","id":70192,"name":"Roland Taylor","site_detail_url":"https://comicvine.gamespot.com/roland-taylor/4005-70192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70207/","id":70207,"name":"Delayne Masters","site_detail_url":"https://comicvine.gamespot.com/delayne-masters/4005-70207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70676/","id":70676,"name":"William Nguyen","site_detail_url":"https://comicvine.gamespot.com/william-nguyen/4005-70676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70941/","id":70941,"name":"Haruhi Suzumiya","site_detail_url":"https://comicvine.gamespot.com/haruhi-suzumiya/4005-70941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70944/","id":70944,"name":"Yuki Nagato","site_detail_url":"https://comicvine.gamespot.com/yuki-nagato/4005-70944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71336/","id":71336,"name":"Ophidian","site_detail_url":"https://comicvine.gamespot.com/ophidian/4005-71336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71502/","id":71502,"name":"Prue Halliwell","site_detail_url":"https://comicvine.gamespot.com/prue-halliwell/4005-71502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71503/","id":71503,"name":"Wyatt Halliwell","site_detail_url":"https://comicvine.gamespot.com/wyatt-halliwell/4005-71503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71507/","id":71507,"name":"Cole Turner","site_detail_url":"https://comicvine.gamespot.com/cole-turner/4005-71507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71508/","id":71508,"name":"Billie Jenkins","site_detail_url":"https://comicvine.gamespot.com/billie-jenkins/4005-71508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71522/","id":71522,"name":"Unown","site_detail_url":"https://comicvine.gamespot.com/unown/4005-71522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71603/","id":71603,"name":"Psychodoughboy","site_detail_url":"https://comicvine.gamespot.com/psychodoughboy/4005-71603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72056/","id":72056,"name":"Green Glob","site_detail_url":"https://comicvine.gamespot.com/green-glob/4005-72056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72278/","id":72278,"name":"Dreamweaver","site_detail_url":"https://comicvine.gamespot.com/dreamweaver/4005-72278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72398/","id":72398,"name":"Mr. Transmuto","site_detail_url":"https://comicvine.gamespot.com/mr-transmuto/4005-72398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72522/","id":72522,"name":"Edel","site_detail_url":"https://comicvine.gamespot.com/edel/4005-72522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72736/","id":72736,"name":"Neena","site_detail_url":"https://comicvine.gamespot.com/neena/4005-72736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72800/","id":72800,"name":"Harlot","site_detail_url":"https://comicvine.gamespot.com/harlot/4005-72800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72964/","id":72964,"name":"Lauren","site_detail_url":"https://comicvine.gamespot.com/lauren/4005-72964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73054/","id":73054,"name":"Harry Potter","site_detail_url":"https://comicvine.gamespot.com/harry-potter/4005-73054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73185/","id":73185,"name":"War Dancer","site_detail_url":"https://comicvine.gamespot.com/war-dancer/4005-73185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73209/","id":73209,"name":"Angelique Bouchard","site_detail_url":"https://comicvine.gamespot.com/angelique-bouchard/4005-73209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73280/","id":73280,"name":"Pickle Inspector","site_detail_url":"https://comicvine.gamespot.com/pickle-inspector/4005-73280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73432/","id":73432,"name":"Shadowy Mr. Evans","site_detail_url":"https://comicvine.gamespot.com/shadowy-mr-evans/4005-73432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73518/","id":73518,"name":"Rowan Morrigan","site_detail_url":"https://comicvine.gamespot.com/rowan-morrigan/4005-73518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73994/","id":73994,"name":"Claudio Kilgannon","site_detail_url":"https://comicvine.gamespot.com/claudio-kilgannon/4005-73994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74022/","id":74022,"name":"Doctor Nowhere","site_detail_url":"https://comicvine.gamespot.com/doctor-nowhere/4005-74022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74352/","id":74352,"name":"Trick","site_detail_url":"https://comicvine.gamespot.com/trick/4005-74352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74570/","id":74570,"name":"Remus Lupin","site_detail_url":"https://comicvine.gamespot.com/remus-lupin/4005-74570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74647/","id":74647,"name":"Hewligan","site_detail_url":"https://comicvine.gamespot.com/hewligan/4005-74647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74837/","id":74837,"name":"Maitresse","site_detail_url":"https://comicvine.gamespot.com/maitresse/4005-74837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74930/","id":74930,"name":"Dark Schneider","site_detail_url":"https://comicvine.gamespot.com/dark-schneider/4005-74930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74935/","id":74935,"name":"Nicol Bolas","site_detail_url":"https://comicvine.gamespot.com/nicol-bolas/4005-74935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75997/","id":75997,"name":"Eugene The Jeep","site_detail_url":"https://comicvine.gamespot.com/eugene-the-jeep/4005-75997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76074/","id":76074,"name":"Yukio","site_detail_url":"https://comicvine.gamespot.com/yukio/4005-76074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76426/","id":76426,"name":"Kyle Brody","site_detail_url":"https://comicvine.gamespot.com/kyle-brody/4005-76426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76559/","id":76559,"name":"The Creature","site_detail_url":"https://comicvine.gamespot.com/the-creature/4005-76559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76569/","id":76569,"name":"Samael","site_detail_url":"https://comicvine.gamespot.com/samael/4005-76569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76932/","id":76932,"name":"Xion","site_detail_url":"https://comicvine.gamespot.com/xion/4005-76932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76945/","id":76945,"name":"Duckthulhu","site_detail_url":"https://comicvine.gamespot.com/duckthulhu/4005-76945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76987/","id":76987,"name":"The Renegade","site_detail_url":"https://comicvine.gamespot.com/the-renegade/4005-76987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77160/","id":77160,"name":"Azathoth","site_detail_url":"https://comicvine.gamespot.com/azathoth/4005-77160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77221/","id":77221,"name":"Maggie Mxyzptlk","site_detail_url":"https://comicvine.gamespot.com/maggie-mxyzptlk/4005-77221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77234/","id":77234,"name":"Sandy Tolliver","site_detail_url":"https://comicvine.gamespot.com/sandy-tolliver/4005-77234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77239/","id":77239,"name":"Phantom Zone God","site_detail_url":"https://comicvine.gamespot.com/phantom-zone-god/4005-77239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77286/","id":77286,"name":"Ann Dodgson-Stanford","site_detail_url":"https://comicvine.gamespot.com/ann-dodgson-stanford/4005-77286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77287/","id":77287,"name":"Clare Dodgson","site_detail_url":"https://comicvine.gamespot.com/clare-dodgson/4005-77287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77437/","id":77437,"name":"The Absolutely","site_detail_url":"https://comicvine.gamespot.com/the-absolutely/4005-77437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77541/","id":77541,"name":"Gyuki","site_detail_url":"https://comicvine.gamespot.com/gyuki/4005-77541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77550/","id":77550,"name":"Samantha Stephens","site_detail_url":"https://comicvine.gamespot.com/samantha-stephens/4005-77550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77768/","id":77768,"name":"Aftermath","site_detail_url":"https://comicvine.gamespot.com/aftermath/4005-77768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78015/","id":78015,"name":"Baron Heinrich Von Helsingard","site_detail_url":"https://comicvine.gamespot.com/baron-heinrich-von-helsingard/4005-78015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78161/","id":78161,"name":"Hiroshima","site_detail_url":"https://comicvine.gamespot.com/hiroshima/4005-78161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78565/","id":78565,"name":"Sofia Strange","site_detail_url":"https://comicvine.gamespot.com/sofia-strange/4005-78565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78765/","id":78765,"name":"Anna Williams","site_detail_url":"https://comicvine.gamespot.com/anna-williams/4005-78765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78943/","id":78943,"name":"Stantler","site_detail_url":"https://comicvine.gamespot.com/stantler/4005-78943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79024/","id":79024,"name":"Codename: Bravo","site_detail_url":"https://comicvine.gamespot.com/codename-bravo/4005-79024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79219/","id":79219,"name":"Verti-Cal","site_detail_url":"https://comicvine.gamespot.com/verti-cal/4005-79219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79220/","id":79220,"name":"Horizont-Al","site_detail_url":"https://comicvine.gamespot.com/horizont-al/4005-79220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79420/","id":79420,"name":"Miles Morales","site_detail_url":"https://comicvine.gamespot.com/miles-morales/4005-79420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79441/","id":79441,"name":"William Evans, Jr.","site_detail_url":"https://comicvine.gamespot.com/william-evans-jr/4005-79441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79573/","id":79573,"name":"Dream Demon","site_detail_url":"https://comicvine.gamespot.com/dream-demon/4005-79573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79587/","id":79587,"name":"Ray Man","site_detail_url":"https://comicvine.gamespot.com/ray-man/4005-79587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80532/","id":80532,"name":"Charlie Arrows","site_detail_url":"https://comicvine.gamespot.com/charlie-arrows/4005-80532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80550/","id":80550,"name":"Mr. Skism","site_detail_url":"https://comicvine.gamespot.com/mr-skism/4005-80550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80556/","id":80556,"name":"Max the Computer","site_detail_url":"https://comicvine.gamespot.com/max-the-computer/4005-80556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80818/","id":80818,"name":"Zadixx","site_detail_url":"https://comicvine.gamespot.com/zadixx/4005-80818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80827/","id":80827,"name":"Madara Uchiha","site_detail_url":"https://comicvine.gamespot.com/madara-uchiha/4005-80827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80889/","id":80889,"name":"Kurumu Kuruno","site_detail_url":"https://comicvine.gamespot.com/kurumu-kuruno/4005-80889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80911/","id":80911,"name":"Son of Morning","site_detail_url":"https://comicvine.gamespot.com/son-of-morning/4005-80911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81554/","id":81554,"name":"Shirō Emiya","site_detail_url":"https://comicvine.gamespot.com/shiro-emiya/4005-81554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81779/","id":81779,"name":"Pandora","site_detail_url":"https://comicvine.gamespot.com/pandora/4005-81779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81949/","id":81949,"name":"Zokag","site_detail_url":"https://comicvine.gamespot.com/zokag/4005-81949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82284/","id":82284,"name":"Horoam'ce","site_detail_url":"https://comicvine.gamespot.com/horoamce/4005-82284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82571/","id":82571,"name":"Kimihiro Watanuki","site_detail_url":"https://comicvine.gamespot.com/kimihiro-watanuki/4005-82571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82720/","id":82720,"name":"Gozer","site_detail_url":"https://comicvine.gamespot.com/gozer/4005-82720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82857/","id":82857,"name":"Shazzan","site_detail_url":"https://comicvine.gamespot.com/shazzan/4005-82857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82914/","id":82914,"name":"Tatiana Maximoff","site_detail_url":"https://comicvine.gamespot.com/tatiana-maximoff/4005-82914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82945/","id":82945,"name":"Infidel","site_detail_url":"https://comicvine.gamespot.com/infidel/4005-82945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83683/","id":83683,"name":"Ishmael Cord","site_detail_url":"https://comicvine.gamespot.com/ishmael-cord/4005-83683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83816/","id":83816,"name":"Alpha","site_detail_url":"https://comicvine.gamespot.com/alpha/4005-83816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83840/","id":83840,"name":"Pantomimist","site_detail_url":"https://comicvine.gamespot.com/pantomimist/4005-83840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83870/","id":83870,"name":"Majora","site_detail_url":"https://comicvine.gamespot.com/majora/4005-83870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83912/","id":83912,"name":"Aya","site_detail_url":"https://comicvine.gamespot.com/aya/4005-83912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84201/","id":84201,"name":"Song","site_detail_url":"https://comicvine.gamespot.com/song/4005-84201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84299/","id":84299,"name":"Frankensurfer","site_detail_url":"https://comicvine.gamespot.com/frankensurfer/4005-84299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84364/","id":84364,"name":"Major Arcana","site_detail_url":"https://comicvine.gamespot.com/major-arcana/4005-84364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84365/","id":84365,"name":"Harry Basalt","site_detail_url":"https://comicvine.gamespot.com/harry-basalt/4005-84365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84366/","id":84366,"name":"Jerry Foundation","site_detail_url":"https://comicvine.gamespot.com/jerry-foundation/4005-84366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84371/","id":84371,"name":"HIM","site_detail_url":"https://comicvine.gamespot.com/him/4005-84371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85122/","id":85122,"name":"Venus","site_detail_url":"https://comicvine.gamespot.com/venus/4005-85122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85389/","id":85389,"name":"Volthoom","site_detail_url":"https://comicvine.gamespot.com/volthoom/4005-85389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85781/","id":85781,"name":"Nick Necro","site_detail_url":"https://comicvine.gamespot.com/nick-necro/4005-85781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85924/","id":85924,"name":"Celestial Toymaker","site_detail_url":"https://comicvine.gamespot.com/celestial-toymaker/4005-85924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85932/","id":85932,"name":"Time Witch","site_detail_url":"https://comicvine.gamespot.com/time-witch/4005-85932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86050/","id":86050,"name":"Black Guardian","site_detail_url":"https://comicvine.gamespot.com/black-guardian/4005-86050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86088/","id":86088,"name":"Crackers","site_detail_url":"https://comicvine.gamespot.com/crackers/4005-86088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86373/","id":86373,"name":"Vyndktvx","site_detail_url":"https://comicvine.gamespot.com/vyndktvx/4005-86373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86452/","id":86452,"name":"Starkiller Clone","site_detail_url":"https://comicvine.gamespot.com/starkiller-clone/4005-86452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87201/","id":87201,"name":"Princess Celestia","site_detail_url":"https://comicvine.gamespot.com/princess-celestia/4005-87201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87202/","id":87202,"name":"Princess Luna","site_detail_url":"https://comicvine.gamespot.com/princess-luna/4005-87202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87259/","id":87259,"name":"Janemba","site_detail_url":"https://comicvine.gamespot.com/janemba/4005-87259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87470/","id":87470,"name":"Gurudev","site_detail_url":"https://comicvine.gamespot.com/gurudev/4005-87470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88011/","id":88011,"name":"Hunson Abadeer","site_detail_url":"https://comicvine.gamespot.com/hunson-abadeer/4005-88011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88687/","id":88687,"name":"Barbatos","site_detail_url":"https://comicvine.gamespot.com/barbatos/4005-88687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88804/","id":88804,"name":"Nightmare Nurse","site_detail_url":"https://comicvine.gamespot.com/nightmare-nurse/4005-88804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88908/","id":88908,"name":"Elizabeth Comstock","site_detail_url":"https://comicvine.gamespot.com/elizabeth-comstock/4005-88908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89060/","id":89060,"name":"T:D:H:D","site_detail_url":"https://comicvine.gamespot.com/tdhd/4005-89060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89831/","id":89831,"name":"Doraemon","site_detail_url":"https://comicvine.gamespot.com/doraemon/4005-89831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90091/","id":90091,"name":"Gogo Dodo","site_detail_url":"https://comicvine.gamespot.com/gogo-dodo/4005-90091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90244/","id":90244,"name":"Trixie Lulamoon","site_detail_url":"https://comicvine.gamespot.com/trixie-lulamoon/4005-90244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91290/","id":91290,"name":"Al-Shalizar","site_detail_url":"https://comicvine.gamespot.com/al-shalizar/4005-91290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91545/","id":91545,"name":"The Celestial Gardener","site_detail_url":"https://comicvine.gamespot.com/the-celestial-gardener/4005-91545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91887/","id":91887,"name":"Vangaard","site_detail_url":"https://comicvine.gamespot.com/vangaard/4005-91887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92516/","id":92516,"name":"Kaguya Ōtsutsuki","site_detail_url":"https://comicvine.gamespot.com/kaguya-otsutsuki/4005-92516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92749/","id":92749,"name":"Negative Forbush Man","site_detail_url":"https://comicvine.gamespot.com/negative-forbush-man/4005-92749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92763/","id":92763,"name":"Yugam","site_detail_url":"https://comicvine.gamespot.com/yugam/4005-92763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93057/","id":93057,"name":"Mother Mae-Eye","site_detail_url":"https://comicvine.gamespot.com/mother-mae-eye/4005-93057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93110/","id":93110,"name":"Touma Kamijou","site_detail_url":"https://comicvine.gamespot.com/touma-kamijou/4005-93110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93227/","id":93227,"name":"Noah Kaiba","site_detail_url":"https://comicvine.gamespot.com/noah-kaiba/4005-93227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93230/","id":93230,"name":"Pharaoh Atem","site_detail_url":"https://comicvine.gamespot.com/pharaoh-atem/4005-93230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93250/","id":93250,"name":"Gozaburo Kaiba","site_detail_url":"https://comicvine.gamespot.com/gozaburo-kaiba/4005-93250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93285/","id":93285,"name":"Ikaros","site_detail_url":"https://comicvine.gamespot.com/ikaros/4005-93285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93324/","id":93324,"name":"Discord","site_detail_url":"https://comicvine.gamespot.com/discord/4005-93324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93411/","id":93411,"name":"Ion","site_detail_url":"https://comicvine.gamespot.com/ion/4005-93411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93553/","id":93553,"name":"Benjamin Jones","site_detail_url":"https://comicvine.gamespot.com/benjamin-jones/4005-93553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93949/","id":93949,"name":"Zalla","site_detail_url":"https://comicvine.gamespot.com/zalla/4005-93949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94210/","id":94210,"name":"Paalko","site_detail_url":"https://comicvine.gamespot.com/paalko/4005-94210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94476/","id":94476,"name":"Jason Blood ","site_detail_url":"https://comicvine.gamespot.com/jason-blood/4005-94476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94673/","id":94673,"name":"Dr. Blaqk","site_detail_url":"https://comicvine.gamespot.com/dr-blaqk/4005-94673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95111/","id":95111,"name":"Monitor-Mind The Over-Void","site_detail_url":"https://comicvine.gamespot.com/monitor-mind-the-over-void/4005-95111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96026/","id":96026,"name":"Yekop","site_detail_url":"https://comicvine.gamespot.com/yekop/4005-96026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96218/","id":96218,"name":"Kosmos","site_detail_url":"https://comicvine.gamespot.com/kosmos/4005-96218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96846/","id":96846,"name":"Locus","site_detail_url":"https://comicvine.gamespot.com/locus/4005-96846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97636/","id":97636,"name":"Ichiryu","site_detail_url":"https://comicvine.gamespot.com/ichiryu/4005-97636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97881/","id":97881,"name":"The Minotaur","site_detail_url":"https://comicvine.gamespot.com/the-minotaur/4005-97881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98452/","id":98452,"name":"Quaros","site_detail_url":"https://comicvine.gamespot.com/quaros/4005-98452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98454/","id":98454,"name":"Gurion","site_detail_url":"https://comicvine.gamespot.com/gurion/4005-98454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98458/","id":98458,"name":"Flying Spaghetti Monster","site_detail_url":"https://comicvine.gamespot.com/flying-spaghetti-monster/4005-98458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99616/","id":99616,"name":"Sorin Markov","site_detail_url":"https://comicvine.gamespot.com/sorin-markov/4005-99616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100215/","id":100215,"name":"Carter Pewterschmidt","site_detail_url":"https://comicvine.gamespot.com/carter-pewterschmidt/4005-100215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100425/","id":100425,"name":"Gremmy Thoumeaux","site_detail_url":"https://comicvine.gamespot.com/gremmy-thoumeaux/4005-100425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102646/","id":102646,"name":"Leviathan","site_detail_url":"https://comicvine.gamespot.com/leviathan/4005-102646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103564/","id":103564,"name":"Blarion Mercurial","site_detail_url":"https://comicvine.gamespot.com/blarion-mercurial/4005-103564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105184/","id":105184,"name":"Awadhi","site_detail_url":"https://comicvine.gamespot.com/awadhi/4005-105184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105203/","id":105203,"name":"Tiger","site_detail_url":"https://comicvine.gamespot.com/tiger/4005-105203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105207/","id":105207,"name":"Dominick Cobb","site_detail_url":"https://comicvine.gamespot.com/dominick-cobb/4005-105207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105239/","id":105239,"name":"Lorelei","site_detail_url":"https://comicvine.gamespot.com/lorelei/4005-105239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105327/","id":105327,"name":"Chun-Bai","site_detail_url":"https://comicvine.gamespot.com/chun-bai/4005-105327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106168/","id":106168,"name":"Perfuma","site_detail_url":"https://comicvine.gamespot.com/perfuma/4005-106168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107062/","id":107062,"name":"Intellectron","site_detail_url":"https://comicvine.gamespot.com/intellectron/4005-107062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107063/","id":107063,"name":"Dame Merciless","site_detail_url":"https://comicvine.gamespot.com/dame-merciless/4005-107063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107064/","id":107064,"name":"Hellmachine","site_detail_url":"https://comicvine.gamespot.com/hellmachine/4005-107064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107065/","id":107065,"name":"Lord Broken","site_detail_url":"https://comicvine.gamespot.com/lord-broken/4005-107065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107115/","id":107115,"name":"Reader","site_detail_url":"https://comicvine.gamespot.com/reader/4005-107115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107373/","id":107373,"name":"Maisie Macrae","site_detail_url":"https://comicvine.gamespot.com/maisie-macrae/4005-107373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107768/","id":107768,"name":"Saysoran","site_detail_url":"https://comicvine.gamespot.com/saysoran/4005-107768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108149/","id":108149,"name":"Chandkaal","site_detail_url":"https://comicvine.gamespot.com/chandkaal/4005-108149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108267/","id":108267,"name":"Gururaj Bhatiki","site_detail_url":"https://comicvine.gamespot.com/gururaj-bhatiki/4005-108267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108306/","id":108306,"name":"Baba Gorakhnath","site_detail_url":"https://comicvine.gamespot.com/baba-gorakhnath/4005-108306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108329/","id":108329,"name":"Allen Adam","site_detail_url":"https://comicvine.gamespot.com/allen-adam/4005-108329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108423/","id":108423,"name":"Piper McLean","site_detail_url":"https://comicvine.gamespot.com/piper-mclean/4005-108423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108635/","id":108635,"name":"Uncle Grandpa","site_detail_url":"https://comicvine.gamespot.com/uncle-grandpa/4005-108635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108806/","id":108806,"name":"Chi You","site_detail_url":"https://comicvine.gamespot.com/chi-you/4005-108806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108974/","id":108974,"name":"Asurraj Shambhuk","site_detail_url":"https://comicvine.gamespot.com/asurraj-shambhuk/4005-108974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110387/","id":110387,"name":"Sphinx (Karim)","site_detail_url":"https://comicvine.gamespot.com/sphinx-karim/4005-110387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111332/","id":111332,"name":"Ichibē Hyōsube","site_detail_url":"https://comicvine.gamespot.com/ichibe-hyosube/4005-111332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112544/","id":112544,"name":"Time-Sink","site_detail_url":"https://comicvine.gamespot.com/time-sink/4005-112544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112594/","id":112594,"name":"Superdemon","site_detail_url":"https://comicvine.gamespot.com/superdemon/4005-112594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114654/","id":114654,"name":"Divinity","site_detail_url":"https://comicvine.gamespot.com/divinity/4005-114654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115625/","id":115625,"name":"Empty Hand","site_detail_url":"https://comicvine.gamespot.com/empty-hand/4005-115625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115732/","id":115732,"name":"Pralaya","site_detail_url":"https://comicvine.gamespot.com/pralaya/4005-115732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115889/","id":115889,"name":"Lynessa","site_detail_url":"https://comicvine.gamespot.com/lynessa/4005-115889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116166/","id":116166,"name":"Sir Isaac Ray Peram Westcott","site_detail_url":"https://comicvine.gamespot.com/sir-isaac-ray-peram-westcott/4005-116166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116814/","id":116814,"name":"Eve","site_detail_url":"https://comicvine.gamespot.com/eve/4005-116814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120018/","id":120018,"name":"Island of No Return","site_detail_url":"https://comicvine.gamespot.com/island-of-no-return/4005-120018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122733/","id":122733,"name":"Tzeentch","site_detail_url":"https://comicvine.gamespot.com/tzeentch/4005-122733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122734/","id":122734,"name":"God-Emperor of Mankind","site_detail_url":"https://comicvine.gamespot.com/godemperor-of-mankind/4005-122734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123230/","id":123230,"name":"Photon","site_detail_url":"https://comicvine.gamespot.com/photon/4005-123230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123946/","id":123946,"name":"Agent If","site_detail_url":"https://comicvine.gamespot.com/agent-if/4005-123946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124327/","id":124327,"name":"Moridun","site_detail_url":"https://comicvine.gamespot.com/moridun/4005-124327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125054/","id":125054,"name":"Gwenpool","site_detail_url":"https://comicvine.gamespot.com/gwenpool/4005-125054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125551/","id":125551,"name":"DreamShadow","site_detail_url":"https://comicvine.gamespot.com/dreamshadow/4005-125551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126824/","id":126824,"name":"Kobik","site_detail_url":"https://comicvine.gamespot.com/kobik/4005-126824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128193/","id":128193,"name":"Myshka","site_detail_url":"https://comicvine.gamespot.com/myshka/4005-128193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129301/","id":129301,"name":"Countess","site_detail_url":"https://comicvine.gamespot.com/countess/4005-129301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129467/","id":129467,"name":"Dorami","site_detail_url":"https://comicvine.gamespot.com/dorami/4005-129467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130195/","id":130195,"name":"Zeno","site_detail_url":"https://comicvine.gamespot.com/zeno/4005-130195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130472/","id":130472,"name":"Ainz Ooal Gown","site_detail_url":"https://comicvine.gamespot.com/ainz-ooal-gown/4005-130472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130694/","id":130694,"name":"Calypso","site_detail_url":"https://comicvine.gamespot.com/calypso/4005-130694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130894/","id":130894,"name":"Castiel","site_detail_url":"https://comicvine.gamespot.com/castiel/4005-130894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130995/","id":130995,"name":"Johnny Joestar","site_detail_url":"https://comicvine.gamespot.com/johnny-joestar/4005-130995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131274/","id":131274,"name":"Giorno Giovanna","site_detail_url":"https://comicvine.gamespot.com/giorno-giovanna/4005-131274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131951/","id":131951,"name":"Gene Bitner","site_detail_url":"https://comicvine.gamespot.com/gene-bitner/4005-131951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132436/","id":132436,"name":"A ","site_detail_url":"https://comicvine.gamespot.com/a/4005-132436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132725/","id":132725,"name":"Doris Bray","site_detail_url":"https://comicvine.gamespot.com/doris-bray/4005-132725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133288/","id":133288,"name":"Loma Shade","site_detail_url":"https://comicvine.gamespot.com/loma-shade/4005-133288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134196/","id":134196,"name":"Yennefer","site_detail_url":"https://comicvine.gamespot.com/yennefer/4005-134196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134287/","id":134287,"name":"Shinra Kusakabe","site_detail_url":"https://comicvine.gamespot.com/shinra-kusakabe/4005-134287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134398/","id":134398,"name":"Kefka Palazzo","site_detail_url":"https://comicvine.gamespot.com/kefka-palazzo/4005-134398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134435/","id":134435,"name":"Kousuke Kanzaki","site_detail_url":"https://comicvine.gamespot.com/kousuke-kanzaki/4005-134435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134566/","id":134566,"name":"Grand Priest","site_detail_url":"https://comicvine.gamespot.com/grand-priest/4005-134566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135644/","id":135644,"name":"Funny Face","site_detail_url":"https://comicvine.gamespot.com/funny-face/4005-135644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136033/","id":136033,"name":"Mighty One","site_detail_url":"https://comicvine.gamespot.com/mighty-one/4005-136033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136320/","id":136320,"name":"Death 13","site_detail_url":"https://comicvine.gamespot.com/death-13/4005-136320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136366/","id":136366,"name":"Champion of the Oppressed","site_detail_url":"https://comicvine.gamespot.com/champion-of-the-oppressed/4005-136366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136367/","id":136367,"name":"Ben Conrad","site_detail_url":"https://comicvine.gamespot.com/ben-conrad/4005-136367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136953/","id":136953,"name":"Adam Roderick","site_detail_url":"https://comicvine.gamespot.com/adam-roderick/4005-136953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-137979/","id":137979,"name":"Miranda","site_detail_url":"https://comicvine.gamespot.com/miranda/4005-137979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138287/","id":138287,"name":"Szazs","site_detail_url":"https://comicvine.gamespot.com/szazs/4005-138287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138400/","id":138400,"name":"Enrico Pucci","site_detail_url":"https://comicvine.gamespot.com/enrico-pucci/4005-138400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138549/","id":138549,"name":"Tillie Armstrong","site_detail_url":"https://comicvine.gamespot.com/tillie-armstrong/4005-138549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138909/","id":138909,"name":"Chaoschild","site_detail_url":"https://comicvine.gamespot.com/chaoschild/4005-138909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139118/","id":139118,"name":"Lincoln Loud","site_detail_url":"https://comicvine.gamespot.com/lincoln-loud/4005-139118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140186/","id":140186,"name":"First Firmament","site_detail_url":"https://comicvine.gamespot.com/first-firmament/4005-140186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141840/","id":141840,"name":"Batman Who Laughs","site_detail_url":"https://comicvine.gamespot.com/batman-who-laughs/4005-141840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142354/","id":142354,"name":"Jiren","site_detail_url":"https://comicvine.gamespot.com/jiren/4005-142354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142477/","id":142477,"name":"The Author","site_detail_url":"https://comicvine.gamespot.com/the-author/4005-142477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143296/","id":143296,"name":"Fidel Finnegan III","site_detail_url":"https://comicvine.gamespot.com/fidel-finnegan-iii/4005-143296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143501/","id":143501,"name":"Shalltear Bloodfallen","site_detail_url":"https://comicvine.gamespot.com/shalltear-bloodfallen/4005-143501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143563/","id":143563,"name":"Freddy Sykes","site_detail_url":"https://comicvine.gamespot.com/freddy-sykes/4005-143563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144508/","id":144508,"name":"Hawk God","site_detail_url":"https://comicvine.gamespot.com/hawk-god/4005-144508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145495/","id":145495,"name":"Milkman Man","site_detail_url":"https://comicvine.gamespot.com/milkman-man/4005-145495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146467/","id":146467,"name":"Palanquin","site_detail_url":"https://comicvine.gamespot.com/palanquin/4005-146467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148071/","id":148071,"name":"Koragg","site_detail_url":"https://comicvine.gamespot.com/koragg/4005-148071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148679/","id":148679,"name":"Exomorph","site_detail_url":"https://comicvine.gamespot.com/exomorph/4005-148679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148723/","id":148723,"name":"Sargeras","site_detail_url":"https://comicvine.gamespot.com/sargeras/4005-148723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149050/","id":149050,"name":"Djinn","site_detail_url":"https://comicvine.gamespot.com/djinn/4005-149050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149257/","id":149257,"name":"Lord Crash","site_detail_url":"https://comicvine.gamespot.com/lord-crash/4005-149257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149462/","id":149462,"name":"Progenitor","site_detail_url":"https://comicvine.gamespot.com/progenitor/4005-149462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149463/","id":149463,"name":"Zgreb the Sorrower","site_detail_url":"https://comicvine.gamespot.com/zgreb-the-sorrower/4005-149463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149505/","id":149505,"name":"Upside Down Man","site_detail_url":"https://comicvine.gamespot.com/upside-down-man/4005-149505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149552/","id":149552,"name":"Knull","site_detail_url":"https://comicvine.gamespot.com/knull/4005-149552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151229/","id":151229,"name":"Perpetua","site_detail_url":"https://comicvine.gamespot.com/perpetua/4005-151229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152021/","id":152021,"name":"Jared Beekman","site_detail_url":"https://comicvine.gamespot.com/jared-beekman/4005-152021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152345/","id":152345,"name":"Obliteron","site_detail_url":"https://comicvine.gamespot.com/obliteron/4005-152345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152508/","id":152508,"name":"Callus the Void","site_detail_url":"https://comicvine.gamespot.com/callus-the-void/4005-152508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152951/","id":152951,"name":"Dr. Thaumaturge","site_detail_url":"https://comicvine.gamespot.com/dr-thaumaturge/4005-152951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153613/","id":153613,"name":"Cosmic Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider/4005-153613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153678/","id":153678,"name":"One Below All","site_detail_url":"https://comicvine.gamespot.com/one-below-all/4005-153678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154903/","id":154903,"name":"Roger","site_detail_url":"https://comicvine.gamespot.com/roger/4005-154903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155102/","id":155102,"name":"Cosmos","site_detail_url":"https://comicvine.gamespot.com/cosmos/4005-155102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155647/","id":155647,"name":"Jambi","site_detail_url":"https://comicvine.gamespot.com/jambi/4005-155647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155951/","id":155951,"name":"World Forger","site_detail_url":"https://comicvine.gamespot.com/world-forger/4005-155951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156901/","id":156901,"name":"Sadurang","site_detail_url":"https://comicvine.gamespot.com/sadurang/4005-156901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157052/","id":157052,"name":"Dixon","site_detail_url":"https://comicvine.gamespot.com/dixon/4005-157052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157214/","id":157214,"name":"Liam James","site_detail_url":"https://comicvine.gamespot.com/liam-james/4005-157214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157233/","id":157233,"name":"Star","site_detail_url":"https://comicvine.gamespot.com/star/4005-157233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157388/","id":157388,"name":"Operator","site_detail_url":"https://comicvine.gamespot.com/operator/4005-157388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159756/","id":159756,"name":"Dewey","site_detail_url":"https://comicvine.gamespot.com/dewey/4005-159756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160011/","id":160011,"name":"Pennywise","site_detail_url":"https://comicvine.gamespot.com/pennywise/4005-160011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160215/","id":160215,"name":"Lunita the Moon Witch","site_detail_url":"https://comicvine.gamespot.com/lunita-the-moon-witch/4005-160215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161392/","id":161392,"name":"Cosmar","site_detail_url":"https://comicvine.gamespot.com/cosmar/4005-161392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161546/","id":161546,"name":"Dark Orko ","site_detail_url":"https://comicvine.gamespot.com/dark-orko/4005-161546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161962/","id":161962,"name":"Rapier","site_detail_url":"https://comicvine.gamespot.com/rapier/4005-161962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164182/","id":164182,"name":"Black Winter","site_detail_url":"https://comicvine.gamespot.com/black-winter/4005-164182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164910/","id":164910,"name":"Satoru Gojo","site_detail_url":"https://comicvine.gamespot.com/satoru-gojo/4005-164910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165143/","id":165143,"name":"Chronicler","site_detail_url":"https://comicvine.gamespot.com/chronicler/4005-165143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165547/","id":165547,"name":"Greyback","site_detail_url":"https://comicvine.gamespot.com/greyback/4005-165547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166593/","id":166593,"name":"Simak","site_detail_url":"https://comicvine.gamespot.com/simak/4005-166593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166620/","id":166620,"name":"Dahlgren","site_detail_url":"https://comicvine.gamespot.com/dahlgren/4005-166620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169126/","id":169126,"name":"Ghastly","site_detail_url":"https://comicvine.gamespot.com/ghastly/4005-169126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169146/","id":169146,"name":"Shakra","site_detail_url":"https://comicvine.gamespot.com/shakra/4005-169146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169338/","id":169338,"name":"Jimmy Pesto Sr.","site_detail_url":"https://comicvine.gamespot.com/jimmy-pesto-sr/4005-169338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169832/","id":169832,"name":"The Truth","site_detail_url":"https://comicvine.gamespot.com/the-truth/4005-169832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171824/","id":171824,"name":"Wonder-Mite","site_detail_url":"https://comicvine.gamespot.com/wonder-mite/4005-171824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172884/","id":172884,"name":"Mama Meany","site_detail_url":"https://comicvine.gamespot.com/mama-meany/4005-172884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173210/","id":173210,"name":"Rei Kurorogi","site_detail_url":"https://comicvine.gamespot.com/rei-kurorogi/4005-173210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173416/","id":173416,"name":"Megan","site_detail_url":"https://comicvine.gamespot.com/megan/4005-173416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175050/","id":175050,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-175050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175710/","id":175710,"name":"Numen","site_detail_url":"https://comicvine.gamespot.com/numen/4005-175710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175883/","id":175883,"name":"Jeroen Thornedike","site_detail_url":"https://comicvine.gamespot.com/jeroen-thornedike/4005-175883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175885/","id":175885,"name":"Habib Ben Hassan","site_detail_url":"https://comicvine.gamespot.com/habib-ben-hassan/4005-175885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175902/","id":175902,"name":"Dinh","site_detail_url":"https://comicvine.gamespot.com/dinh/4005-175902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175918/","id":175918,"name":"Right Revered Doctor","site_detail_url":"https://comicvine.gamespot.com/right-revered-doctor/4005-175918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176843/","id":176843,"name":"Dia Sloane","site_detail_url":"https://comicvine.gamespot.com/dia-sloane/4005-176843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176876/","id":176876,"name":"Hattie Saint-Ange","site_detail_url":"https://comicvine.gamespot.com/hattie-saint-ange/4005-176876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177449/","id":177449,"name":"Ora Serrata","site_detail_url":"https://comicvine.gamespot.com/ora-serrata/4005-177449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177670/","id":177670,"name":"Non","site_detail_url":"https://comicvine.gamespot.com/non/4005-177670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178291/","id":178291,"name":"Sartorius","site_detail_url":"https://comicvine.gamespot.com/sartorius/4005-178291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178332/","id":178332,"name":"Trueman","site_detail_url":"https://comicvine.gamespot.com/trueman/4005-178332/"}],"date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":77,"name":"Reality Manpulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=reality-manpulation&wikiTypeId=4035&wikiId=77&powers%5B%5D=77"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/power-details/power-4035-79.json b/samples/api-data/power-details/power-4035-79.json new file mode 100644 index 0000000..9e24e33 --- /dev/null +++ b/samples/api-data/power-details/power-4035-79.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-79/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1253/","id":1253,"name":"Lightning Lad","site_detail_url":"https://comicvine.gamespot.com/lightning-lad/4005-1253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1257/","id":1257,"name":"Phantom Girl","site_detail_url":"https://comicvine.gamespot.com/phantom-girl/4005-1257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1282/","id":1282,"name":"Neuronne","site_detail_url":"https://comicvine.gamespot.com/neuronne/4005-1282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1441/","id":1441,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4005-1441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1468/","id":1468,"name":"Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/doctor-doom/4005-1468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1473/","id":1473,"name":"Polaris","site_detail_url":"https://comicvine.gamespot.com/polaris/4005-1473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1504/","id":1504,"name":"Vision","site_detail_url":"https://comicvine.gamespot.com/vision/4005-1504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1665/","id":1665,"name":"Livewire","site_detail_url":"https://comicvine.gamespot.com/livewire/4005-1665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1926/","id":1926,"name":"War Machine","site_detail_url":"https://comicvine.gamespot.com/war-machine/4005-1926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1940/","id":1940,"name":"Nico Minoru","site_detail_url":"https://comicvine.gamespot.com/nico-minoru/4005-1940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2101/","id":2101,"name":"Firestar","site_detail_url":"https://comicvine.gamespot.com/firestar/4005-2101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2141/","id":2141,"name":"Bevatron","site_detail_url":"https://comicvine.gamespot.com/bevatron/4005-2141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2157/","id":2157,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4005-2157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2203/","id":2203,"name":"Jenny Sparks","site_detail_url":"https://comicvine.gamespot.com/jenny-sparks/4005-2203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2242/","id":2242,"name":"Ultron","site_detail_url":"https://comicvine.gamespot.com/ultron/4005-2242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2264/","id":2264,"name":"Kang","site_detail_url":"https://comicvine.gamespot.com/kang/4005-2264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2268/","id":2268,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4005-2268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2496/","id":2496,"name":"Oblivion","site_detail_url":"https://comicvine.gamespot.com/oblivion/4005-2496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3228/","id":3228,"name":"Electro","site_detail_url":"https://comicvine.gamespot.com/electro/4005-3228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3264/","id":3264,"name":"Electrique","site_detail_url":"https://comicvine.gamespot.com/electrique/4005-3264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3282/","id":3282,"name":"Fixer","site_detail_url":"https://comicvine.gamespot.com/fixer/4005-3282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3284/","id":3284,"name":"Jolt","site_detail_url":"https://comicvine.gamespot.com/jolt/4005-3284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3366/","id":3366,"name":"Aftershock","site_detail_url":"https://comicvine.gamespot.com/aftershock/4005-3366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3421/","id":3421,"name":"Omega Sentinel","site_detail_url":"https://comicvine.gamespot.com/omega-sentinel/4005-3421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3548/","id":3548,"name":"Kitty Pryde","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde/4005-3548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3709/","id":3709,"name":"M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/modok/4005-3709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4078/","id":4078,"name":"Dr. Destroyer","site_detail_url":"https://comicvine.gamespot.com/dr-destroyer/4005-4078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4263/","id":4263,"name":"Pepper Potts","site_detail_url":"https://comicvine.gamespot.com/pepper-potts/4005-4263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4279/","id":4279,"name":"Forge","site_detail_url":"https://comicvine.gamespot.com/forge/4005-4279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4297/","id":4297,"name":"Evangelina Rivera","site_detail_url":"https://comicvine.gamespot.com/evangelina-rivera/4005-4297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4438/","id":4438,"name":"Blue Beetle (Reyes)","site_detail_url":"https://comicvine.gamespot.com/blue-beetle-reyes/4005-4438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4562/","id":4562,"name":"Jubilee","site_detail_url":"https://comicvine.gamespot.com/jubilee/4005-4562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4644/","id":4644,"name":"Sunspot","site_detail_url":"https://comicvine.gamespot.com/sunspot/4005-4644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4678/","id":4678,"name":"Livewire","site_detail_url":"https://comicvine.gamespot.com/livewire/4005-4678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4684/","id":4684,"name":"Brainiac","site_detail_url":"https://comicvine.gamespot.com/brainiac/4005-4684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4705/","id":4705,"name":"Computron","site_detail_url":"https://comicvine.gamespot.com/computron/4005-4705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5211/","id":5211,"name":"Lightning Rod","site_detail_url":"https://comicvine.gamespot.com/lightning-rod/4005-5211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5395/","id":5395,"name":"Mace Windu","site_detail_url":"https://comicvine.gamespot.com/mace-windu/4005-5395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5569/","id":5569,"name":"Bloodshot","site_detail_url":"https://comicvine.gamespot.com/bloodshot/4005-5569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5783/","id":5783,"name":"Construct","site_detail_url":"https://comicvine.gamespot.com/construct/4005-5783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6068/","id":6068,"name":"Marauder","site_detail_url":"https://comicvine.gamespot.com/marauder/4005-6068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6238/","id":6238,"name":"Scarab","site_detail_url":"https://comicvine.gamespot.com/scarab/4005-6238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6250/","id":6250,"name":"Pyroman","site_detail_url":"https://comicvine.gamespot.com/pyroman/4005-6250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6342/","id":6342,"name":"Darth Vader","site_detail_url":"https://comicvine.gamespot.com/darth-vader/4005-6342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6354/","id":6354,"name":"Boba Fett","site_detail_url":"https://comicvine.gamespot.com/boba-fett/4005-6354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6355/","id":6355,"name":"Lando Calrissian","site_detail_url":"https://comicvine.gamespot.com/lando-calrissian/4005-6355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6811/","id":6811,"name":"Living Tribunal","site_detail_url":"https://comicvine.gamespot.com/living-tribunal/4005-6811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7106/","id":7106,"name":"Deus X Machina","site_detail_url":"https://comicvine.gamespot.com/deus-x-machina/4005-7106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7230/","id":7230,"name":"Quasimodo","site_detail_url":"https://comicvine.gamespot.com/quasimodo/4005-7230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7258/","id":7258,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4005-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7280/","id":7280,"name":"Death of the Endless","site_detail_url":"https://comicvine.gamespot.com/death-of-the-endless/4005-7280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7402/","id":7402,"name":"Starscream","site_detail_url":"https://comicvine.gamespot.com/starscream/4005-7402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7607/","id":7607,"name":"Thanos","site_detail_url":"https://comicvine.gamespot.com/thanos/4005-7607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7752/","id":7752,"name":"BATS","site_detail_url":"https://comicvine.gamespot.com/bats/4005-7752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7754/","id":7754,"name":"Tele-Viper","site_detail_url":"https://comicvine.gamespot.com/tele-viper/4005-7754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8667/","id":8667,"name":"Kaine","site_detail_url":"https://comicvine.gamespot.com/kaine/4005-8667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9545/","id":9545,"name":"Lightning","site_detail_url":"https://comicvine.gamespot.com/lightning/4005-9545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9557/","id":9557,"name":"Triumph","site_detail_url":"https://comicvine.gamespot.com/triumph/4005-9557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9632/","id":9632,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-9632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9713/","id":9713,"name":"Phantazia","site_detail_url":"https://comicvine.gamespot.com/phantazia/4005-9713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9735/","id":9735,"name":"Scrambler","site_detail_url":"https://comicvine.gamespot.com/scrambler/4005-9735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9904/","id":9904,"name":"Living Laser","site_detail_url":"https://comicvine.gamespot.com/living-laser/4005-9904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9942/","id":9942,"name":"Killowat","site_detail_url":"https://comicvine.gamespot.com/killowat/4005-9942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9970/","id":9970,"name":"Gear","site_detail_url":"https://comicvine.gamespot.com/gear/4005-9970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10038/","id":10038,"name":"Brainiac 13","site_detail_url":"https://comicvine.gamespot.com/brainiac-13/4005-10038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10144/","id":10144,"name":"Jack Marshall","site_detail_url":"https://comicvine.gamespot.com/jack-marshall/4005-10144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10300/","id":10300,"name":"Beyonder","site_detail_url":"https://comicvine.gamespot.com/beyonder/4005-10300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10461/","id":10461,"name":"Magenta","site_detail_url":"https://comicvine.gamespot.com/magenta/4005-10461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10577/","id":10577,"name":"Bolt","site_detail_url":"https://comicvine.gamespot.com/bolt/4005-10577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10880/","id":10880,"name":"Trinity","site_detail_url":"https://comicvine.gamespot.com/trinity/4005-10880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10994/","id":10994,"name":"Black Lightning","site_detail_url":"https://comicvine.gamespot.com/black-lightning/4005-10994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11153/","id":11153,"name":"Mumm-Ra","site_detail_url":"https://comicvine.gamespot.com/mumm-ra/4005-11153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11327/","id":11327,"name":"Arc","site_detail_url":"https://comicvine.gamespot.com/arc/4005-11327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11332/","id":11332,"name":"Eternity","site_detail_url":"https://comicvine.gamespot.com/eternity/4005-11332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11333/","id":11333,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4005-11333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11337/","id":11337,"name":"Spectrum","site_detail_url":"https://comicvine.gamespot.com/spectrum/4005-11337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11516/","id":11516,"name":"The Gremlin","site_detail_url":"https://comicvine.gamespot.com/the-gremlin/4005-11516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11832/","id":11832,"name":"Hyperstorm","site_detail_url":"https://comicvine.gamespot.com/hyperstorm/4005-11832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11923/","id":11923,"name":"Mechadoom","site_detail_url":"https://comicvine.gamespot.com/mechadoom/4005-11923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12620/","id":12620,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-12620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12710/","id":12710,"name":"Hannibal King","site_detail_url":"https://comicvine.gamespot.com/hannibal-king/4005-12710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12899/","id":12899,"name":"Doctor Cyber","site_detail_url":"https://comicvine.gamespot.com/doctor-cyber/4005-12899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12983/","id":12983,"name":"Phase","site_detail_url":"https://comicvine.gamespot.com/phase/4005-12983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13083/","id":13083,"name":"War","site_detail_url":"https://comicvine.gamespot.com/war/4005-13083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13156/","id":13156,"name":"Byte","site_detail_url":"https://comicvine.gamespot.com/byte/4005-13156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13218/","id":13218,"name":"Charon","site_detail_url":"https://comicvine.gamespot.com/charon/4005-13218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13352/","id":13352,"name":"Onslaught","site_detail_url":"https://comicvine.gamespot.com/onslaught/4005-13352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13399/","id":13399,"name":"Tanager","site_detail_url":"https://comicvine.gamespot.com/tanager/4005-13399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13812/","id":13812,"name":"Zzzax","site_detail_url":"https://comicvine.gamespot.com/zzzax/4005-13812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13899/","id":13899,"name":"Neptune","site_detail_url":"https://comicvine.gamespot.com/neptune/4005-13899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13968/","id":13968,"name":"Electron","site_detail_url":"https://comicvine.gamespot.com/electron/4005-13968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14150/","id":14150,"name":"New Son","site_detail_url":"https://comicvine.gamespot.com/new-son/4005-14150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14171/","id":14171,"name":"Fifolet","site_detail_url":"https://comicvine.gamespot.com/fifolet/4005-14171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14865/","id":14865,"name":"Siena Blaze","site_detail_url":"https://comicvine.gamespot.com/siena-blaze/4005-14865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14869/","id":14869,"name":"Katu","site_detail_url":"https://comicvine.gamespot.com/katu/4005-14869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15051/","id":15051,"name":"X-Man","site_detail_url":"https://comicvine.gamespot.com/x-man/4005-15051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15257/","id":15257,"name":"Pulse","site_detail_url":"https://comicvine.gamespot.com/pulse/4005-15257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15329/","id":15329,"name":"Bedlam","site_detail_url":"https://comicvine.gamespot.com/bedlam/4005-15329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15390/","id":15390,"name":"Shiva","site_detail_url":"https://comicvine.gamespot.com/shiva/4005-15390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15406/","id":15406,"name":"Will o' the Wisp","site_detail_url":"https://comicvine.gamespot.com/will-o-the-wisp/4005-15406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15649/","id":15649,"name":"Lady Octopus","site_detail_url":"https://comicvine.gamespot.com/lady-octopus/4005-15649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15758/","id":15758,"name":"Uranus","site_detail_url":"https://comicvine.gamespot.com/uranus/4005-15758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15778/","id":15778,"name":"Gaea","site_detail_url":"https://comicvine.gamespot.com/gaea/4005-15778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15970/","id":15970,"name":"Circuit Breaker","site_detail_url":"https://comicvine.gamespot.com/circuit-breaker/4005-15970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16114/","id":16114,"name":"The Bobster","site_detail_url":"https://comicvine.gamespot.com/the-bobster/4005-16114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17414/","id":17414,"name":"Jupiter","site_detail_url":"https://comicvine.gamespot.com/jupiter/4005-17414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17607/","id":17607,"name":"Engineer","site_detail_url":"https://comicvine.gamespot.com/engineer/4005-17607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18304/","id":18304,"name":"Wiretap","site_detail_url":"https://comicvine.gamespot.com/wiretap/4005-18304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18340/","id":18340,"name":"Eobard Thawne","site_detail_url":"https://comicvine.gamespot.com/eobard-thawne/4005-18340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18549/","id":18549,"name":"Powerhouse","site_detail_url":"https://comicvine.gamespot.com/powerhouse/4005-18549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19371/","id":19371,"name":"Reanimator","site_detail_url":"https://comicvine.gamespot.com/reanimator/4005-19371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19835/","id":19835,"name":"Whiplash (Vanko)","site_detail_url":"https://comicvine.gamespot.com/whiplash-vanko/4005-19835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19946/","id":19946,"name":"Alkhema","site_detail_url":"https://comicvine.gamespot.com/alkhema/4005-19946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20073/","id":20073,"name":"Seven of Nine","site_detail_url":"https://comicvine.gamespot.com/seven-of-nine/4005-20073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20417/","id":20417,"name":"Mara Jade","site_detail_url":"https://comicvine.gamespot.com/mara-jade/4005-20417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21201/","id":21201,"name":"Black Fox","site_detail_url":"https://comicvine.gamespot.com/black-fox/4005-21201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21231/","id":21231,"name":"Positron","site_detail_url":"https://comicvine.gamespot.com/positron/4005-21231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21328/","id":21328,"name":"Friday","site_detail_url":"https://comicvine.gamespot.com/friday/4005-21328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21594/","id":21594,"name":"Cyanide","site_detail_url":"https://comicvine.gamespot.com/cyanide/4005-21594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21932/","id":21932,"name":"Motherboard","site_detail_url":"https://comicvine.gamespot.com/motherboard/4005-21932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22784/","id":22784,"name":"Prometheus","site_detail_url":"https://comicvine.gamespot.com/prometheus/4005-22784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23436/","id":23436,"name":"Chain Lightning","site_detail_url":"https://comicvine.gamespot.com/chain-lightning/4005-23436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23720/","id":23720,"name":"H.E.R.B.I.E.","site_detail_url":"https://comicvine.gamespot.com/herbie/4005-23720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24220/","id":24220,"name":"Cy-Gor","site_detail_url":"https://comicvine.gamespot.com/cy-gor/4005-24220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25770/","id":25770,"name":"Nautika","site_detail_url":"https://comicvine.gamespot.com/nautika/4005-25770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26197/","id":26197,"name":"Pixx","site_detail_url":"https://comicvine.gamespot.com/pixx/4005-26197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26318/","id":26318,"name":"Prince Wayfinder","site_detail_url":"https://comicvine.gamespot.com/prince-wayfinder/4005-26318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26389/","id":26389,"name":"Ohm","site_detail_url":"https://comicvine.gamespot.com/ohm/4005-26389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26430/","id":26430,"name":"Electrocutioner","site_detail_url":"https://comicvine.gamespot.com/electrocutioner/4005-26430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26578/","id":26578,"name":"Static","site_detail_url":"https://comicvine.gamespot.com/static/4005-26578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27303/","id":27303,"name":"Rebis","site_detail_url":"https://comicvine.gamespot.com/rebis/4005-27303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27672/","id":27672,"name":"Mistress Love","site_detail_url":"https://comicvine.gamespot.com/mistress-love/4005-27672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27673/","id":27673,"name":"Master Hate","site_detail_url":"https://comicvine.gamespot.com/master-hate/4005-27673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27943/","id":27943,"name":"Ilda","site_detail_url":"https://comicvine.gamespot.com/ilda/4005-27943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28118/","id":28118,"name":"Protege","site_detail_url":"https://comicvine.gamespot.com/protege/4005-28118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28669/","id":28669,"name":"Vostok","site_detail_url":"https://comicvine.gamespot.com/vostok/4005-28669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28848/","id":28848,"name":"Ship","site_detail_url":"https://comicvine.gamespot.com/ship/4005-28848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28982/","id":28982,"name":"Tri-Sentinel","site_detail_url":"https://comicvine.gamespot.com/tri-sentinel/4005-28982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29591/","id":29591,"name":"Tala","site_detail_url":"https://comicvine.gamespot.com/tala/4005-29591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29704/","id":29704,"name":"Bug","site_detail_url":"https://comicvine.gamespot.com/bug/4005-29704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30292/","id":30292,"name":"Mekanique","site_detail_url":"https://comicvine.gamespot.com/mekanique/4005-30292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30446/","id":30446,"name":"Linda Williams","site_detail_url":"https://comicvine.gamespot.com/linda-williams/4005-30446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31109/","id":31109,"name":"Blackstarr","site_detail_url":"https://comicvine.gamespot.com/blackstarr/4005-31109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31464/","id":31464,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-31464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31509/","id":31509,"name":"Dr. Doog","site_detail_url":"https://comicvine.gamespot.com/dr-doog/4005-31509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31621/","id":31621,"name":"Elektro","site_detail_url":"https://comicvine.gamespot.com/elektro/4005-31621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32857/","id":32857,"name":"Arishem the Judge","site_detail_url":"https://comicvine.gamespot.com/arishem-the-judge/4005-32857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33238/","id":33238,"name":"Eelectro","site_detail_url":"https://comicvine.gamespot.com/eelectro/4005-33238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33354/","id":33354,"name":"The Doctor","site_detail_url":"https://comicvine.gamespot.com/the-doctor/4005-33354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33825/","id":33825,"name":"Wonder Warrior","site_detail_url":"https://comicvine.gamespot.com/wonder-warrior/4005-33825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34294/","id":34294,"name":"Faceless One","site_detail_url":"https://comicvine.gamespot.com/faceless-one/4005-34294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34545/","id":34545,"name":"The Power Sower","site_detail_url":"https://comicvine.gamespot.com/the-power-sower/4005-34545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34904/","id":34904,"name":"Megavolt","site_detail_url":"https://comicvine.gamespot.com/megavolt/4005-34904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35539/","id":35539,"name":"Prince Rudolfo","site_detail_url":"https://comicvine.gamespot.com/prince-rudolfo/4005-35539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40509/","id":40509,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge/4005-40509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40672/","id":40672,"name":"Loa","site_detail_url":"https://comicvine.gamespot.com/loa/4005-40672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41077/","id":41077,"name":"Ultimaton","site_detail_url":"https://comicvine.gamespot.com/ultimaton/4005-41077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41080/","id":41080,"name":"Samantha Argent","site_detail_url":"https://comicvine.gamespot.com/samantha-argent/4005-41080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41575/","id":41575,"name":"Manfred Mota","site_detail_url":"https://comicvine.gamespot.com/manfred-mota/4005-41575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41761/","id":41761,"name":"Kal Kent","site_detail_url":"https://comicvine.gamespot.com/kal-kent/4005-41761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41834/","id":41834,"name":"Shrapnel","site_detail_url":"https://comicvine.gamespot.com/shrapnel/4005-41834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41848/","id":41848,"name":"Amber Hunt","site_detail_url":"https://comicvine.gamespot.com/amber-hunt/4005-41848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41903/","id":41903,"name":"Frenzy","site_detail_url":"https://comicvine.gamespot.com/frenzy/4005-41903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41905/","id":41905,"name":"Blaster","site_detail_url":"https://comicvine.gamespot.com/blaster/4005-41905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42015/","id":42015,"name":"Sunstorm","site_detail_url":"https://comicvine.gamespot.com/sunstorm/4005-42015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42319/","id":42319,"name":"Feedback","site_detail_url":"https://comicvine.gamespot.com/feedback/4005-42319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42693/","id":42693,"name":"Blanka","site_detail_url":"https://comicvine.gamespot.com/blanka/4005-42693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42784/","id":42784,"name":"Hardball","site_detail_url":"https://comicvine.gamespot.com/hardball/4005-42784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42786/","id":42786,"name":"Baron Von Blitzschlag","site_detail_url":"https://comicvine.gamespot.com/baron-von-blitzschlag/4005-42786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42966/","id":42966,"name":"Danik","site_detail_url":"https://comicvine.gamespot.com/danik/4005-42966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43025/","id":43025,"name":"Appolyon","site_detail_url":"https://comicvine.gamespot.com/appolyon/4005-43025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43142/","id":43142,"name":"Digitek","site_detail_url":"https://comicvine.gamespot.com/digitek/4005-43142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43771/","id":43771,"name":"Serafina","site_detail_url":"https://comicvine.gamespot.com/serafina/4005-43771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43894/","id":43894,"name":"Rosa Navarro","site_detail_url":"https://comicvine.gamespot.com/rosa-navarro/4005-43894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43920/","id":43920,"name":"Cadena","site_detail_url":"https://comicvine.gamespot.com/cadena/4005-43920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44501/","id":44501,"name":"Tek Knight","site_detail_url":"https://comicvine.gamespot.com/tek-knight/4005-44501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44523/","id":44523,"name":"Kabuto Yakushi","site_detail_url":"https://comicvine.gamespot.com/kabuto-yakushi/4005-44523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44658/","id":44658,"name":"Captain Planet","site_detail_url":"https://comicvine.gamespot.com/captain-planet/4005-44658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44688/","id":44688,"name":"Captain Pollution","site_detail_url":"https://comicvine.gamespot.com/captain-pollution/4005-44688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44794/","id":44794,"name":"Darth Bane","site_detail_url":"https://comicvine.gamespot.com/darth-bane/4005-44794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44965/","id":44965,"name":"Blitzkrieger","site_detail_url":"https://comicvine.gamespot.com/blitzkrieger/4005-44965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45165/","id":45165,"name":"Saboteur","site_detail_url":"https://comicvine.gamespot.com/saboteur/4005-45165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45334/","id":45334,"name":"Dimitri the Echidna","site_detail_url":"https://comicvine.gamespot.com/dimitri-the-echidna/4005-45334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45344/","id":45344,"name":"A.D.A.M.","site_detail_url":"https://comicvine.gamespot.com/adam/4005-45344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45368/","id":45368,"name":"Hiei","site_detail_url":"https://comicvine.gamespot.com/hiei/4005-45368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45374/","id":45374,"name":"Yusuke Urameshi","site_detail_url":"https://comicvine.gamespot.com/yusuke-urameshi/4005-45374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45561/","id":45561,"name":"Brenna Wayne","site_detail_url":"https://comicvine.gamespot.com/brenna-wayne/4005-45561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45665/","id":45665,"name":"Nicole","site_detail_url":"https://comicvine.gamespot.com/nicole/4005-45665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46195/","id":46195,"name":"Voltage","site_detail_url":"https://comicvine.gamespot.com/voltage/4005-46195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46634/","id":46634,"name":"Ion","site_detail_url":"https://comicvine.gamespot.com/ion/4005-46634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46651/","id":46651,"name":"Samus Aran","site_detail_url":"https://comicvine.gamespot.com/samus-aran/4005-46651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46684/","id":46684,"name":"T-Infinity","site_detail_url":"https://comicvine.gamespot.com/t-infinity/4005-46684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46725/","id":46725,"name":"Ginji Amano","site_detail_url":"https://comicvine.gamespot.com/ginji-amano/4005-46725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47059/","id":47059,"name":"Djinn","site_detail_url":"https://comicvine.gamespot.com/djinn/4005-47059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47112/","id":47112,"name":"Durge","site_detail_url":"https://comicvine.gamespot.com/durge/4005-47112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47550/","id":47550,"name":"Chain Lightning","site_detail_url":"https://comicvine.gamespot.com/chain-lightning/4005-47550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47551/","id":47551,"name":"Kilg%re","site_detail_url":"https://comicvine.gamespot.com/kilgre/4005-47551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47573/","id":47573,"name":"Ragnarok","site_detail_url":"https://comicvine.gamespot.com/ragnarok/4005-47573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47739/","id":47739,"name":"Gordy","site_detail_url":"https://comicvine.gamespot.com/gordy/4005-47739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47761/","id":47761,"name":"Ted Sprague","site_detail_url":"https://comicvine.gamespot.com/ted-sprague/4005-47761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47874/","id":47874,"name":"Darth Nihilus","site_detail_url":"https://comicvine.gamespot.com/darth-nihilus/4005-47874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47892/","id":47892,"name":"Darth Malak","site_detail_url":"https://comicvine.gamespot.com/darth-malak/4005-47892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47938/","id":47938,"name":"IG 88","site_detail_url":"https://comicvine.gamespot.com/ig-88/4005-47938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47939/","id":47939,"name":"Jacen Solo","site_detail_url":"https://comicvine.gamespot.com/jacen-solo/4005-47939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47940/","id":47940,"name":"Jaina Solo","site_detail_url":"https://comicvine.gamespot.com/jaina-solo/4005-47940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47958/","id":47958,"name":"Psycho Mantis","site_detail_url":"https://comicvine.gamespot.com/psycho-mantis/4005-47958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48431/","id":48431,"name":"Hana Gitelman","site_detail_url":"https://comicvine.gamespot.com/hana-gitelman/4005-48431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48499/","id":48499,"name":"Ben 10","site_detail_url":"https://comicvine.gamespot.com/ben-10/4005-48499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48515/","id":48515,"name":"Electron","site_detail_url":"https://comicvine.gamespot.com/electron/4005-48515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48662/","id":48662,"name":"Galactiac","site_detail_url":"https://comicvine.gamespot.com/galactiac/4005-48662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48728/","id":48728,"name":"Octopunch","site_detail_url":"https://comicvine.gamespot.com/octopunch/4005-48728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49423/","id":49423,"name":"Raiden","site_detail_url":"https://comicvine.gamespot.com/raiden/4005-49423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49428/","id":49428,"name":"Red X","site_detail_url":"https://comicvine.gamespot.com/red-x/4005-49428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49564/","id":49564,"name":"Elle Bishop","site_detail_url":"https://comicvine.gamespot.com/elle-bishop/4005-49564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49602/","id":49602,"name":"Galen Marek","site_detail_url":"https://comicvine.gamespot.com/galen-marek/4005-49602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49872/","id":49872,"name":"Kevin 11","site_detail_url":"https://comicvine.gamespot.com/kevin-11/4005-49872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49874/","id":49874,"name":"X","site_detail_url":"https://comicvine.gamespot.com/x/4005-49874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50069/","id":50069,"name":"Bass.EXE","site_detail_url":"https://comicvine.gamespot.com/bassexe/4005-50069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50138/","id":50138,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge/4005-50138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50279/","id":50279,"name":"The Alternate","site_detail_url":"https://comicvine.gamespot.com/the-alternate/4005-50279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50318/","id":50318,"name":"Johnny Ohm","site_detail_url":"https://comicvine.gamespot.com/johnny-ohm/4005-50318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50369/","id":50369,"name":"Rattrap","site_detail_url":"https://comicvine.gamespot.com/rattrap/4005-50369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50426/","id":50426,"name":"Dreadbolt","site_detail_url":"https://comicvine.gamespot.com/dreadbolt/4005-50426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50738/","id":50738,"name":"Centurius","site_detail_url":"https://comicvine.gamespot.com/centurius/4005-50738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51158/","id":51158,"name":"Brother Nature","site_detail_url":"https://comicvine.gamespot.com/brother-nature/4005-51158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51483/","id":51483,"name":"Brother EYE","site_detail_url":"https://comicvine.gamespot.com/brother-eye/4005-51483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51542/","id":51542,"name":"Syndicate","site_detail_url":"https://comicvine.gamespot.com/syndicate/4005-51542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51950/","id":51950,"name":"Darth Plagueis","site_detail_url":"https://comicvine.gamespot.com/darth-plagueis/4005-51950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52045/","id":52045,"name":"Fists of the Guardians","site_detail_url":"https://comicvine.gamespot.com/fists-of-the-guardians/4005-52045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52089/","id":52089,"name":"RC-1140","site_detail_url":"https://comicvine.gamespot.com/rc-1140/4005-52089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52172/","id":52172,"name":"Canary","site_detail_url":"https://comicvine.gamespot.com/canary/4005-52172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52271/","id":52271,"name":"Lightning","site_detail_url":"https://comicvine.gamespot.com/lightning/4005-52271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52796/","id":52796,"name":"Ritchie Simpson","site_detail_url":"https://comicvine.gamespot.com/ritchie-simpson/4005-52796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52800/","id":52800,"name":"XP-2000","site_detail_url":"https://comicvine.gamespot.com/xp-2000/4005-52800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52877/","id":52877,"name":"Empty","site_detail_url":"https://comicvine.gamespot.com/empty/4005-52877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53529/","id":53529,"name":"Videoman","site_detail_url":"https://comicvine.gamespot.com/videoman/4005-53529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53644/","id":53644,"name":"Zapdos","site_detail_url":"https://comicvine.gamespot.com/zapdos/4005-53644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54231/","id":54231,"name":"Megaman DarkSoul","site_detail_url":"https://comicvine.gamespot.com/megaman-darksoul/4005-54231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54245/","id":54245,"name":"Eneru","site_detail_url":"https://comicvine.gamespot.com/eneru/4005-54245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54903/","id":54903,"name":"Vid Vicious","site_detail_url":"https://comicvine.gamespot.com/vid-vicious/4005-54903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55297/","id":55297,"name":"Attractive Lad","site_detail_url":"https://comicvine.gamespot.com/attractive-lad/4005-55297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55447/","id":55447,"name":"Luxray","site_detail_url":"https://comicvine.gamespot.com/luxray/4005-55447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55669/","id":55669,"name":"Kid Dynamo","site_detail_url":"https://comicvine.gamespot.com/kid-dynamo/4005-55669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55731/","id":55731,"name":"Sue-Chan","site_detail_url":"https://comicvine.gamespot.com/sue-chan/4005-55731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55854/","id":55854,"name":"Big Brother","site_detail_url":"https://comicvine.gamespot.com/big-brother/4005-55854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55952/","id":55952,"name":"Camshaft","site_detail_url":"https://comicvine.gamespot.com/camshaft/4005-55952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56184/","id":56184,"name":"Gwen","site_detail_url":"https://comicvine.gamespot.com/gwen/4005-56184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56303/","id":56303,"name":"T3-M4","site_detail_url":"https://comicvine.gamespot.com/t3-m4/4005-56303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56652/","id":56652,"name":"Flayt","site_detail_url":"https://comicvine.gamespot.com/flayt/4005-56652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57033/","id":57033,"name":"Blue Marvel","site_detail_url":"https://comicvine.gamespot.com/blue-marvel/4005-57033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57099/","id":57099,"name":"Godstalker","site_detail_url":"https://comicvine.gamespot.com/godstalker/4005-57099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57915/","id":57915,"name":"Fixit","site_detail_url":"https://comicvine.gamespot.com/fixit/4005-57915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58062/","id":58062,"name":"Anti-Man","site_detail_url":"https://comicvine.gamespot.com/anti-man/4005-58062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58840/","id":58840,"name":"Starlight","site_detail_url":"https://comicvine.gamespot.com/starlight/4005-58840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58877/","id":58877,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4005-58877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59030/","id":59030,"name":"Godfrey Calthrop","site_detail_url":"https://comicvine.gamespot.com/godfrey-calthrop/4005-59030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59125/","id":59125,"name":"Ax","site_detail_url":"https://comicvine.gamespot.com/ax/4005-59125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59436/","id":59436,"name":"Willie Watt","site_detail_url":"https://comicvine.gamespot.com/willie-watt/4005-59436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59490/","id":59490,"name":"Jat","site_detail_url":"https://comicvine.gamespot.com/jat/4005-59490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59510/","id":59510,"name":"Pn'Zo","site_detail_url":"https://comicvine.gamespot.com/pnzo/4005-59510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59567/","id":59567,"name":"Gigantic","site_detail_url":"https://comicvine.gamespot.com/gigantic/4005-59567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59582/","id":59582,"name":"Silencer","site_detail_url":"https://comicvine.gamespot.com/silencer/4005-59582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59617/","id":59617,"name":"Gabriel Vargas","site_detail_url":"https://comicvine.gamespot.com/gabriel-vargas/4005-59617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60696/","id":60696,"name":"Cat","site_detail_url":"https://comicvine.gamespot.com/cat/4005-60696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60732/","id":60732,"name":"Spyman","site_detail_url":"https://comicvine.gamespot.com/spyman/4005-60732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61304/","id":61304,"name":"Zok","site_detail_url":"https://comicvine.gamespot.com/zok/4005-61304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61330/","id":61330,"name":"The Kurgan","site_detail_url":"https://comicvine.gamespot.com/the-kurgan/4005-61330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61745/","id":61745,"name":"Computo","site_detail_url":"https://comicvine.gamespot.com/computo/4005-61745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62543/","id":62543,"name":"Sideways","site_detail_url":"https://comicvine.gamespot.com/sideways/4005-62543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62841/","id":62841,"name":"Void Hound","site_detail_url":"https://comicvine.gamespot.com/void-hound/4005-62841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63138/","id":63138,"name":"Temper","site_detail_url":"https://comicvine.gamespot.com/temper/4005-63138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63246/","id":63246,"name":"Cole MacGrath","site_detail_url":"https://comicvine.gamespot.com/cole-macgrath/4005-63246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63292/","id":63292,"name":"Plague","site_detail_url":"https://comicvine.gamespot.com/plague/4005-63292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64885/","id":64885,"name":"Ned Horrocks","site_detail_url":"https://comicvine.gamespot.com/ned-horrocks/4005-64885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65859/","id":65859,"name":"Glitch","site_detail_url":"https://comicvine.gamespot.com/glitch/4005-65859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66092/","id":66092,"name":"Muray Eel","site_detail_url":"https://comicvine.gamespot.com/muray-eel/4005-66092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66191/","id":66191,"name":"Silica","site_detail_url":"https://comicvine.gamespot.com/silica/4005-66191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66773/","id":66773,"name":"Eustass Kid","site_detail_url":"https://comicvine.gamespot.com/eustass-kid/4005-66773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67208/","id":67208,"name":"Cad Bane","site_detail_url":"https://comicvine.gamespot.com/cad-bane/4005-67208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67273/","id":67273,"name":"Jan Vathek","site_detail_url":"https://comicvine.gamespot.com/jan-vathek/4005-67273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67349/","id":67349,"name":"Rebecca Raven Lebeau","site_detail_url":"https://comicvine.gamespot.com/rebecca-raven-lebeau/4005-67349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67864/","id":67864,"name":"eV","site_detail_url":"https://comicvine.gamespot.com/ev/4005-67864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67895/","id":67895,"name":"Kadabra","site_detail_url":"https://comicvine.gamespot.com/kadabra/4005-67895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68586/","id":68586,"name":"Manowar, The White Streak","site_detail_url":"https://comicvine.gamespot.com/manowar-the-white-streak/4005-68586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68624/","id":68624,"name":"Adam","site_detail_url":"https://comicvine.gamespot.com/adam/4005-68624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69153/","id":69153,"name":"Magnemite","site_detail_url":"https://comicvine.gamespot.com/magnemite/4005-69153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69154/","id":69154,"name":"Magneton","site_detail_url":"https://comicvine.gamespot.com/magneton/4005-69154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69220/","id":69220,"name":"Rhydon","site_detail_url":"https://comicvine.gamespot.com/rhydon/4005-69220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69267/","id":69267,"name":"Electabuzz","site_detail_url":"https://comicvine.gamespot.com/electabuzz/4005-69267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69412/","id":69412,"name":"Brennan Mulwray","site_detail_url":"https://comicvine.gamespot.com/brennan-mulwray/4005-69412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69631/","id":69631,"name":"Number Ninety-Six","site_detail_url":"https://comicvine.gamespot.com/number-ninety-six/4005-69631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69915/","id":69915,"name":"Striker","site_detail_url":"https://comicvine.gamespot.com/striker/4005-69915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70588/","id":70588,"name":"Rex","site_detail_url":"https://comicvine.gamespot.com/rex/4005-70588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70949/","id":70949,"name":"Sylvius","site_detail_url":"https://comicvine.gamespot.com/sylvius/4005-70949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71501/","id":71501,"name":"The Wild Sentinel","site_detail_url":"https://comicvine.gamespot.com/the-wild-sentinel/4005-71501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71921/","id":71921,"name":"Hotwire","site_detail_url":"https://comicvine.gamespot.com/hotwire/4005-71921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72561/","id":72561,"name":"Shock Treatment","site_detail_url":"https://comicvine.gamespot.com/shock-treatment/4005-72561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72863/","id":72863,"name":"Kyle","site_detail_url":"https://comicvine.gamespot.com/kyle/4005-72863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73378/","id":73378,"name":"Starborn","site_detail_url":"https://comicvine.gamespot.com/starborn/4005-73378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73941/","id":73941,"name":"Mustang","site_detail_url":"https://comicvine.gamespot.com/mustang/4005-73941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74334/","id":74334,"name":"Hecatomb","site_detail_url":"https://comicvine.gamespot.com/hecatomb/4005-74334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74584/","id":74584,"name":"Stormy","site_detail_url":"https://comicvine.gamespot.com/stormy/4005-74584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74862/","id":74862,"name":"The Source","site_detail_url":"https://comicvine.gamespot.com/the-source/4005-74862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74930/","id":74930,"name":"Dark Schneider","site_detail_url":"https://comicvine.gamespot.com/dark-schneider/4005-74930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75414/","id":75414,"name":"Atris","site_detail_url":"https://comicvine.gamespot.com/atris/4005-75414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75816/","id":75816,"name":"Application Nine","site_detail_url":"https://comicvine.gamespot.com/application-nine/4005-75816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75881/","id":75881,"name":"Kessler","site_detail_url":"https://comicvine.gamespot.com/kessler/4005-75881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76199/","id":76199,"name":"Adam Jensen","site_detail_url":"https://comicvine.gamespot.com/adam-jensen/4005-76199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77565/","id":77565,"name":"GLaDOS","site_detail_url":"https://comicvine.gamespot.com/glados/4005-77565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78590/","id":78590,"name":"R4-K5","site_detail_url":"https://comicvine.gamespot.com/r4-k5/4005-78590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78797/","id":78797,"name":"Manectric","site_detail_url":"https://comicvine.gamespot.com/manectric/4005-78797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78811/","id":78811,"name":"Fractal","site_detail_url":"https://comicvine.gamespot.com/fractal/4005-78811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78997/","id":78997,"name":"Elekid","site_detail_url":"https://comicvine.gamespot.com/elekid/4005-78997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79565/","id":79565,"name":"Disruptor (Smith)","site_detail_url":"https://comicvine.gamespot.com/disruptor-smith/4005-79565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79570/","id":79570,"name":"Melfina","site_detail_url":"https://comicvine.gamespot.com/melfina/4005-79570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80327/","id":80327,"name":"Mother Machine","site_detail_url":"https://comicvine.gamespot.com/mother-machine/4005-80327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80776/","id":80776,"name":"Kasey Nash","site_detail_url":"https://comicvine.gamespot.com/kasey-nash/4005-80776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80819/","id":80819,"name":"Brainstorm (Lanse)","site_detail_url":"https://comicvine.gamespot.com/brainstorm-lanse/4005-80819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81255/","id":81255,"name":"Mannequin","site_detail_url":"https://comicvine.gamespot.com/mannequin/4005-81255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81393/","id":81393,"name":"Reddy Kilowatt","site_detail_url":"https://comicvine.gamespot.com/reddy-kilowatt/4005-81393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82372/","id":82372,"name":"Lightning","site_detail_url":"https://comicvine.gamespot.com/lightning/4005-82372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82567/","id":82567,"name":"Draka","site_detail_url":"https://comicvine.gamespot.com/draka/4005-82567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82648/","id":82648,"name":"Nergal","site_detail_url":"https://comicvine.gamespot.com/nergal/4005-82648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82659/","id":82659,"name":"Ixtlàn","site_detail_url":"https://comicvine.gamespot.com/ixtlan/4005-82659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82754/","id":82754,"name":"Erlik Khan","site_detail_url":"https://comicvine.gamespot.com/erlik-khan/4005-82754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82802/","id":82802,"name":"Lord Marsden","site_detail_url":"https://comicvine.gamespot.com/lord-marsden/4005-82802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82860/","id":82860,"name":"Dr. Polaris (Nichol)","site_detail_url":"https://comicvine.gamespot.com/dr-polaris-nichol/4005-82860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82901/","id":82901,"name":"Antonietta Fernandez","site_detail_url":"https://comicvine.gamespot.com/antonietta-fernandez/4005-82901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83092/","id":83092,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/legion/4005-83092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83513/","id":83513,"name":"Vermin the Cybernik","site_detail_url":"https://comicvine.gamespot.com/vermin-the-cybernik/4005-83513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83582/","id":83582,"name":"Enerjak","site_detail_url":"https://comicvine.gamespot.com/enerjak/4005-83582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83912/","id":83912,"name":"Aya","site_detail_url":"https://comicvine.gamespot.com/aya/4005-83912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83943/","id":83943,"name":"Danny Phantom","site_detail_url":"https://comicvine.gamespot.com/danny-phantom/4005-83943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84482/","id":84482,"name":"Iron Boy","site_detail_url":"https://comicvine.gamespot.com/iron-boy/4005-84482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85489/","id":85489,"name":"Kain Blueriver","site_detail_url":"https://comicvine.gamespot.com/kain-blueriver/4005-85489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85692/","id":85692,"name":"Rot","site_detail_url":"https://comicvine.gamespot.com/rot/4005-85692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85801/","id":85801,"name":"Ra Moon","site_detail_url":"https://comicvine.gamespot.com/ra-moon/4005-85801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85802/","id":85802,"name":"Microwave","site_detail_url":"https://comicvine.gamespot.com/microwave/4005-85802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86141/","id":86141,"name":"Tails Doll","site_detail_url":"https://comicvine.gamespot.com/tails-doll/4005-86141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86922/","id":86922,"name":"Electronika","site_detail_url":"https://comicvine.gamespot.com/electronika/4005-86922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87212/","id":87212,"name":"Crimson Dynamo (Bukharin)","site_detail_url":"https://comicvine.gamespot.com/crimson-dynamo-bukharin/4005-87212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88687/","id":88687,"name":"Barbatos","site_detail_url":"https://comicvine.gamespot.com/barbatos/4005-88687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88837/","id":88837,"name":"Leo Winters","site_detail_url":"https://comicvine.gamespot.com/leo-winters/4005-88837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89539/","id":89539,"name":"EDI","site_detail_url":"https://comicvine.gamespot.com/e-d-i/4005-89539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89578/","id":89578,"name":"Sovereign","site_detail_url":"https://comicvine.gamespot.com/sovereign/4005-89578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89715/","id":89715,"name":"Arkea","site_detail_url":"https://comicvine.gamespot.com/arkea/4005-89715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89902/","id":89902,"name":"Volt","site_detail_url":"https://comicvine.gamespot.com/volt/4005-89902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90004/","id":90004,"name":"Fluid-Man","site_detail_url":"https://comicvine.gamespot.com/fluid-man/4005-90004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90077/","id":90077,"name":"Cyrax","site_detail_url":"https://comicvine.gamespot.com/cyrax/4005-90077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90078/","id":90078,"name":"Sektor","site_detail_url":"https://comicvine.gamespot.com/sektor/4005-90078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90207/","id":90207,"name":"Mikoto Misaka","site_detail_url":"https://comicvine.gamespot.com/mikoto-misaka/4005-90207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90260/","id":90260,"name":"Satans Soldier","site_detail_url":"https://comicvine.gamespot.com/satans-soldier/4005-90260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90437/","id":90437,"name":"Wraith","site_detail_url":"https://comicvine.gamespot.com/wraith/4005-90437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91151/","id":91151,"name":"Alisa Bosconovitch","site_detail_url":"https://comicvine.gamespot.com/alisa-bosconovitch/4005-91151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91271/","id":91271,"name":"Super-Skrull Alpha","site_detail_url":"https://comicvine.gamespot.com/super-skrull-alpha/4005-91271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91482/","id":91482,"name":"Mech-Man","site_detail_url":"https://comicvine.gamespot.com/mech-man/4005-91482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93039/","id":93039,"name":"Overload","site_detail_url":"https://comicvine.gamespot.com/overload/4005-93039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93131/","id":93131,"name":"SpaceGodzilla","site_detail_url":"https://comicvine.gamespot.com/space-godzilla/4005-93131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93143/","id":93143,"name":"Fulmina","site_detail_url":"https://comicvine.gamespot.com/fulmina/4005-93143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94160/","id":94160,"name":"Red Peril","site_detail_url":"https://comicvine.gamespot.com/red-peril/4005-94160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96237/","id":96237,"name":"Remulus Dreypa","site_detail_url":"https://comicvine.gamespot.com/remulus-dreypa/4005-96237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96880/","id":96880,"name":"Bonnie Bennett","site_detail_url":"https://comicvine.gamespot.com/bonnie-bennett/4005-96880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97481/","id":97481,"name":"Technocrat","site_detail_url":"https://comicvine.gamespot.com/technocrat/4005-97481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99087/","id":99087,"name":"MeMe","site_detail_url":"https://comicvine.gamespot.com/me-me/4005-99087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99679/","id":99679,"name":"Lightning Conductor","site_detail_url":"https://comicvine.gamespot.com/lightning-conductor/4005-99679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100256/","id":100256,"name":"Kalibos","site_detail_url":"https://comicvine.gamespot.com/kalibos/4005-100256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101040/","id":101040,"name":"Lost Boy","site_detail_url":"https://comicvine.gamespot.com/lost-boy/4005-101040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101219/","id":101219,"name":"GIN_GR","site_detail_url":"https://comicvine.gamespot.com/g-i-n-g-r/4005-101219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102783/","id":102783,"name":"Eclipse","site_detail_url":"https://comicvine.gamespot.com/eclipse/4005-102783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104293/","id":104293,"name":"Taser","site_detail_url":"https://comicvine.gamespot.com/taser/4005-104293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104471/","id":104471,"name":"Taser","site_detail_url":"https://comicvine.gamespot.com/taser/4005-104471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105401/","id":105401,"name":"Frankie Stein","site_detail_url":"https://comicvine.gamespot.com/frankie-stein/4005-105401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106593/","id":106593,"name":"Shiba Tatsuya","site_detail_url":"https://comicvine.gamespot.com/shiba-tatsuya/4005-106593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107925/","id":107925,"name":"Mr. Mole","site_detail_url":"https://comicvine.gamespot.com/mr-mole/4005-107925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108094/","id":108094,"name":"Lady Sutherland","site_detail_url":"https://comicvine.gamespot.com/lady-sutherland/4005-108094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110072/","id":110072,"name":"Bronwen","site_detail_url":"https://comicvine.gamespot.com/bronwen/4005-110072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110096/","id":110096,"name":"The Poet","site_detail_url":"https://comicvine.gamespot.com/the-poet/4005-110096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110818/","id":110818,"name":"Overload","site_detail_url":"https://comicvine.gamespot.com/overload/4005-110818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112405/","id":112405,"name":"Server Aja","site_detail_url":"https://comicvine.gamespot.com/server-aja/4005-112405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112594/","id":112594,"name":"Superdemon","site_detail_url":"https://comicvine.gamespot.com/superdemon/4005-112594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114579/","id":114579,"name":"Moloch","site_detail_url":"https://comicvine.gamespot.com/moloch/4005-114579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115222/","id":115222,"name":"Woden","site_detail_url":"https://comicvine.gamespot.com/woden/4005-115222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119848/","id":119848,"name":"Shigaraki Tomura","site_detail_url":"https://comicvine.gamespot.com/shigaraki-tomura/4005-119848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122311/","id":122311,"name":"Ether","site_detail_url":"https://comicvine.gamespot.com/ether/4005-122311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122752/","id":122752,"name":"Thorke","site_detail_url":"https://comicvine.gamespot.com/thorke/4005-122752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122867/","id":122867,"name":"Akhar Nun","site_detail_url":"https://comicvine.gamespot.com/akhar-nun/4005-122867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123232/","id":123232,"name":"Electric Marshall","site_detail_url":"https://comicvine.gamespot.com/electric-marshall/4005-123232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123925/","id":123925,"name":"Jefferson Jackson ","site_detail_url":"https://comicvine.gamespot.com/jefferson-jackson/4005-123925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126028/","id":126028,"name":"Yologarch","site_detail_url":"https://comicvine.gamespot.com/yologarch/4005-126028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126342/","id":126342,"name":"Demon in a Spacesuit","site_detail_url":"https://comicvine.gamespot.com/demon-in-a-spacesuit/4005-126342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129823/","id":129823,"name":"Rikku","site_detail_url":"https://comicvine.gamespot.com/rikku/4005-129823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132742/","id":132742,"name":"Dr. Ikon","site_detail_url":"https://comicvine.gamespot.com/dr-ikon/4005-132742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134315/","id":134315,"name":"Kareem","site_detail_url":"https://comicvine.gamespot.com/kareem/4005-134315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134649/","id":134649,"name":"Djinn, Lady of the Lightning","site_detail_url":"https://comicvine.gamespot.com/djinn-lady-of-the-lightning/4005-134649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134657/","id":134657,"name":"Merrill","site_detail_url":"https://comicvine.gamespot.com/merrill/4005-134657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138104/","id":138104,"name":"Ultramax","site_detail_url":"https://comicvine.gamespot.com/ultramax/4005-138104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138329/","id":138329,"name":"Tekno","site_detail_url":"https://comicvine.gamespot.com/tekno/4005-138329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144575/","id":144575,"name":"Zach","site_detail_url":"https://comicvine.gamespot.com/zach/4005-144575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146164/","id":146164,"name":"B.E.R.T.","site_detail_url":"https://comicvine.gamespot.com/bert/4005-146164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147096/","id":147096,"name":"Malerik","site_detail_url":"https://comicvine.gamespot.com/malerik/4005-147096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147446/","id":147446,"name":"Ember Quade","site_detail_url":"https://comicvine.gamespot.com/ember-quade/4005-147446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147631/","id":147631,"name":"Patrika","site_detail_url":"https://comicvine.gamespot.com/patrika/4005-147631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148529/","id":148529,"name":"Becky","site_detail_url":"https://comicvine.gamespot.com/becky/4005-148529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149222/","id":149222,"name":"Electricia","site_detail_url":"https://comicvine.gamespot.com/electricia/4005-149222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149462/","id":149462,"name":"Progenitor","site_detail_url":"https://comicvine.gamespot.com/progenitor/4005-149462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149463/","id":149463,"name":"Zgreb the Sorrower","site_detail_url":"https://comicvine.gamespot.com/zgreb-the-sorrower/4005-149463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150566/","id":150566,"name":"Jinmen","site_detail_url":"https://comicvine.gamespot.com/jinmen/4005-150566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154278/","id":154278,"name":"Living Lightning (Doppelganger)","site_detail_url":"https://comicvine.gamespot.com/living-lightning-doppelganger/4005-154278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154295/","id":154295,"name":"Amp","site_detail_url":"https://comicvine.gamespot.com/amp/4005-154295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154422/","id":154422,"name":"William Stryker Jr.","site_detail_url":"https://comicvine.gamespot.com/william-stryker-jr/4005-154422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156974/","id":156974,"name":"Muti","site_detail_url":"https://comicvine.gamespot.com/muti/4005-156974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157328/","id":157328,"name":"Krkkzz Zappl","site_detail_url":"https://comicvine.gamespot.com/krkkzz-zappl/4005-157328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157654/","id":157654,"name":"Mitzi Megavolt","site_detail_url":"https://comicvine.gamespot.com/mitzi-megavolt/4005-157654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160901/","id":160901,"name":"Chumba","site_detail_url":"https://comicvine.gamespot.com/chumba/4005-160901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162815/","id":162815,"name":"Graf Von Henzig","site_detail_url":"https://comicvine.gamespot.com/graf-von-henzig/4005-162815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163084/","id":163084,"name":"Kerey Khan","site_detail_url":"https://comicvine.gamespot.com/kerey-khan/4005-163084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163086/","id":163086,"name":"Vrana","site_detail_url":"https://comicvine.gamespot.com/vrana/4005-163086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163223/","id":163223,"name":"Helena Morkov","site_detail_url":"https://comicvine.gamespot.com/helena-morkov/4005-163223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163441/","id":163441,"name":"Lodbrok","site_detail_url":"https://comicvine.gamespot.com/lodbrok/4005-163441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163613/","id":163613,"name":"Ningirsu","site_detail_url":"https://comicvine.gamespot.com/ningirsu/4005-163613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163635/","id":163635,"name":"Roxana Dragoste","site_detail_url":"https://comicvine.gamespot.com/roxana-dragoste/4005-163635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165547/","id":165547,"name":"Greyback","site_detail_url":"https://comicvine.gamespot.com/greyback/4005-165547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168183/","id":168183,"name":"Brick Pettirosso","site_detail_url":"https://comicvine.gamespot.com/brick-pettirosso/4005-168183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172860/","id":172860,"name":"Sivisdottir","site_detail_url":"https://comicvine.gamespot.com/sivisdottir/4005-172860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174349/","id":174349,"name":"Count Von Blitzkrieg","site_detail_url":"https://comicvine.gamespot.com/count-von-blitzkrieg/4005-174349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175313/","id":175313,"name":"Jember","site_detail_url":"https://comicvine.gamespot.com/jember/4005-175313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178384/","id":178384,"name":"Crimson Dragon","site_detail_url":"https://comicvine.gamespot.com/crimson-dragon/4005-178384/"}],"date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":79,"name":"Electronic Disruption","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=electronic-disruption&wikiTypeId=4035&wikiId=79&powers%5B%5D=79"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/power-details/power-4035-8.json b/samples/api-data/power-details/power-4035-8.json new file mode 100644 index 0000000..a312e3f --- /dev/null +++ b/samples/api-data/power-details/power-4035-8.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-8/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1273/","id":1273,"name":"Saturn Girl","site_detail_url":"https://comicvine.gamespot.com/saturn-girl/4005-1273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1343/","id":1343,"name":"Dragonfly","site_detail_url":"https://comicvine.gamespot.com/dragonfly/4005-1343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1454/","id":1454,"name":"Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry/4005-1454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1456/","id":1456,"name":"Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/doctor-strange/4005-1456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1466/","id":1466,"name":"Scarlet Witch","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch/4005-1466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1468/","id":1468,"name":"Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/doctor-doom/4005-1468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1536/","id":1536,"name":"Typhoid Mary","site_detail_url":"https://comicvine.gamespot.com/typhoid-mary/4005-1536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1554/","id":1554,"name":"Rayek","site_detail_url":"https://comicvine.gamespot.com/rayek/4005-1554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1686/","id":1686,"name":"Kon-El","site_detail_url":"https://comicvine.gamespot.com/kon-el/4005-1686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1721/","id":1721,"name":"Aunt Zelda Spellman","site_detail_url":"https://comicvine.gamespot.com/aunt-zelda-spellman/4005-1721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1722/","id":1722,"name":"Sabrina Spellman","site_detail_url":"https://comicvine.gamespot.com/sabrina-spellman/4005-1722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1748/","id":1748,"name":"Aunt Hilda Spellman","site_detail_url":"https://comicvine.gamespot.com/aunt-hilda-spellman/4005-1748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1758/","id":1758,"name":"Abra","site_detail_url":"https://comicvine.gamespot.com/abra/4005-1758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1802/","id":1802,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4005-1802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1815/","id":1815,"name":"Susie Tompkins","site_detail_url":"https://comicvine.gamespot.com/susie-tompkins/4005-1815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1847/","id":1847,"name":"Lady Death","site_detail_url":"https://comicvine.gamespot.com/lady-death/4005-1847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1860/","id":1860,"name":"Strongbow","site_detail_url":"https://comicvine.gamespot.com/strongbow/4005-1860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1888/","id":1888,"name":"Winnowill","site_detail_url":"https://comicvine.gamespot.com/winnowill/4005-1888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1944/","id":1944,"name":"Xavin","site_detail_url":"https://comicvine.gamespot.com/xavin/4005-1944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2024/","id":2024,"name":"MCP","site_detail_url":"https://comicvine.gamespot.com/mcp/4005-2024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2047/","id":2047,"name":"Martian Manhunter","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter/4005-2047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2092/","id":2092,"name":"Mathemanic","site_detail_url":"https://comicvine.gamespot.com/mathemanic/4005-2092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2104/","id":2104,"name":"Speedball","site_detail_url":"https://comicvine.gamespot.com/speedball/4005-2104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2118/","id":2118,"name":"Sersi","site_detail_url":"https://comicvine.gamespot.com/sersi/4005-2118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2149/","id":2149,"name":"Galactus","site_detail_url":"https://comicvine.gamespot.com/galactus/4005-2149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2157/","id":2157,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4005-2157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2164/","id":2164,"name":"Phoenix Force","site_detail_url":"https://comicvine.gamespot.com/phoenix-force/4005-2164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2166/","id":2166,"name":"Major Victory","site_detail_url":"https://comicvine.gamespot.com/major-victory/4005-2166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2176/","id":2176,"name":"Selene","site_detail_url":"https://comicvine.gamespot.com/selene/4005-2176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2190/","id":2190,"name":"Invisible Woman","site_detail_url":"https://comicvine.gamespot.com/invisible-woman/4005-2190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2195/","id":2195,"name":"Jenny Quantum","site_detail_url":"https://comicvine.gamespot.com/jenny-quantum/4005-2195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2199/","id":2199,"name":"Henry Bendix","site_detail_url":"https://comicvine.gamespot.com/henry-bendix/4005-2199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2201/","id":2201,"name":"Doctor","site_detail_url":"https://comicvine.gamespot.com/doctor/4005-2201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2205/","id":2205,"name":"Dormammu","site_detail_url":"https://comicvine.gamespot.com/dormammu/4005-2205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2206/","id":2206,"name":"Obi-Wan Kenobi","site_detail_url":"https://comicvine.gamespot.com/obi-wan-kenobi/4005-2206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2212/","id":2212,"name":"Ancient One","site_detail_url":"https://comicvine.gamespot.com/ancient-one/4005-2212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2213/","id":2213,"name":"Baron Mordo","site_detail_url":"https://comicvine.gamespot.com/baron-mordo/4005-2213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2216/","id":2216,"name":"Clea","site_detail_url":"https://comicvine.gamespot.com/clea/4005-2216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2264/","id":2264,"name":"Kang","site_detail_url":"https://comicvine.gamespot.com/kang/4005-2264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2349/","id":2349,"name":"Darkseid","site_detail_url":"https://comicvine.gamespot.com/darkseid/4005-2349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2361/","id":2361,"name":"Spectre","site_detail_url":"https://comicvine.gamespot.com/spectre/4005-2361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2380/","id":2380,"name":"Gorilla Grodd","site_detail_url":"https://comicvine.gamespot.com/gorilla-grodd/4005-2380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2382/","id":2382,"name":"Tempest","site_detail_url":"https://comicvine.gamespot.com/tempest/4005-2382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2469/","id":2469,"name":"Franklin Richards","site_detail_url":"https://comicvine.gamespot.com/franklin-richards/4005-2469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2496/","id":2496,"name":"Oblivion","site_detail_url":"https://comicvine.gamespot.com/oblivion/4005-2496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2502/","id":2502,"name":"Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/silver-surfer/4005-2502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2546/","id":2546,"name":"Shrapnel","site_detail_url":"https://comicvine.gamespot.com/shrapnel/4005-2546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2637/","id":2637,"name":"Umar","site_detail_url":"https://comicvine.gamespot.com/umar/4005-2637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2638/","id":2638,"name":"Malevolence","site_detail_url":"https://comicvine.gamespot.com/malevolence/4005-2638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3176/","id":3176,"name":"Betsy Braddock","site_detail_url":"https://comicvine.gamespot.com/betsy-braddock/4005-3176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3177/","id":3177,"name":"Charles Lehnsherr","site_detail_url":"https://comicvine.gamespot.com/charles-lehnsherr/4005-3177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3179/","id":3179,"name":"Mr. Sinister","site_detail_url":"https://comicvine.gamespot.com/mr-sinister/4005-3179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3262/","id":3262,"name":"Codename: Spitfire","site_detail_url":"https://comicvine.gamespot.com/codename-spitfire/4005-3262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3279/","id":3279,"name":"Moonstone","site_detail_url":"https://comicvine.gamespot.com/moonstone/4005-3279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3291/","id":3291,"name":"Nabu the Wise","site_detail_url":"https://comicvine.gamespot.com/nabu-the-wise/4005-3291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3316/","id":3316,"name":"Hellcat","site_detail_url":"https://comicvine.gamespot.com/hellcat/4005-3316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3324/","id":3324,"name":"Mantis","site_detail_url":"https://comicvine.gamespot.com/mantis/4005-3324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3327/","id":3327,"name":"Agatha Harkness","site_detail_url":"https://comicvine.gamespot.com/agatha-harkness/4005-3327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3329/","id":3329,"name":"John Constantine","site_detail_url":"https://comicvine.gamespot.com/john-constantine/4005-3329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3373/","id":3373,"name":"Vodo-Siosk Baas","site_detail_url":"https://comicvine.gamespot.com/vodo-siosk-baas/4005-3373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3414/","id":3414,"name":"Cliff Carmichael","site_detail_url":"https://comicvine.gamespot.com/cliff-carmichael/4005-3414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3424/","id":3424,"name":"Shola Inkosi","site_detail_url":"https://comicvine.gamespot.com/shola-inkosi/4005-3424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3507/","id":3507,"name":"Odin","site_detail_url":"https://comicvine.gamespot.com/odin/4005-3507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3530/","id":3530,"name":"Mandarin","site_detail_url":"https://comicvine.gamespot.com/mandarin/4005-3530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3552/","id":3552,"name":"Jean Grey","site_detail_url":"https://comicvine.gamespot.com/jean-grey/4005-3552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3566/","id":3566,"name":"Rachel Grey","site_detail_url":"https://comicvine.gamespot.com/rachel-grey/4005-3566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3584/","id":3584,"name":"Raven","site_detail_url":"https://comicvine.gamespot.com/raven/4005-3584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3620/","id":3620,"name":"Tyroc","site_detail_url":"https://comicvine.gamespot.com/tyroc/4005-3620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3709/","id":3709,"name":"M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/modok/4005-3709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3737/","id":3737,"name":"Amazo","site_detail_url":"https://comicvine.gamespot.com/amazo/4005-3737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3815/","id":3815,"name":"Lanfeust","site_detail_url":"https://comicvine.gamespot.com/lanfeust/4005-3815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3822/","id":3822,"name":"Darovit","site_detail_url":"https://comicvine.gamespot.com/darovit/4005-3822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4033/","id":4033,"name":"Head Witch Della","site_detail_url":"https://comicvine.gamespot.com/head-witch-della/4005-4033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4327/","id":4327,"name":"Medusa","site_detail_url":"https://comicvine.gamespot.com/medusa/4005-4327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4342/","id":4342,"name":"Hela","site_detail_url":"https://comicvine.gamespot.com/hela/4005-4342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4517/","id":4517,"name":"Kosh","site_detail_url":"https://comicvine.gamespot.com/kosh/4005-4517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4566/","id":4566,"name":"Carter Ghazikhanian","site_detail_url":"https://comicvine.gamespot.com/carter-ghazikhanian/4005-4566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4567/","id":4567,"name":"Exodus","site_detail_url":"https://comicvine.gamespot.com/exodus/4005-4567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4584/","id":4584,"name":"Murciélaga She-Bat","site_detail_url":"https://comicvine.gamespot.com/murcielaga-she-bat/4005-4584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4589/","id":4589,"name":"John Lynch","site_detail_url":"https://comicvine.gamespot.com/john-lynch/4005-4589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4605/","id":4605,"name":"Starbreaker","site_detail_url":"https://comicvine.gamespot.com/starbreaker/4005-4605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4684/","id":4684,"name":"Brainiac","site_detail_url":"https://comicvine.gamespot.com/brainiac/4005-4684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4716/","id":4716,"name":"Claire Voyant","site_detail_url":"https://comicvine.gamespot.com/claire-voyant/4005-4716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4719/","id":4719,"name":"Big Brain","site_detail_url":"https://comicvine.gamespot.com/big-brain/4005-4719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4811/","id":4811,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/justice/4005-4811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4812/","id":4812,"name":"Overmind","site_detail_url":"https://comicvine.gamespot.com/overmind/4005-4812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4904/","id":4904,"name":"Mordru","site_detail_url":"https://comicvine.gamespot.com/mordru/4005-4904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4915/","id":4915,"name":"Power Girl","site_detail_url":"https://comicvine.gamespot.com/power-girl/4005-4915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5017/","id":5017,"name":"Shaman","site_detail_url":"https://comicvine.gamespot.com/shaman/4005-5017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5128/","id":5128,"name":"Impulse","site_detail_url":"https://comicvine.gamespot.com/impulse/4005-5128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5186/","id":5186,"name":"Psilence","site_detail_url":"https://comicvine.gamespot.com/psilence/4005-5186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5281/","id":5281,"name":"Sentinel","site_detail_url":"https://comicvine.gamespot.com/sentinel/4005-5281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5310/","id":5310,"name":"Trigon","site_detail_url":"https://comicvine.gamespot.com/trigon/4005-5310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5335/","id":5335,"name":"Merlin","site_detail_url":"https://comicvine.gamespot.com/merlin/4005-5335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5387/","id":5387,"name":"Quinlan Vos","site_detail_url":"https://comicvine.gamespot.com/quinlan-vos/4005-5387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5389/","id":5389,"name":"Aayla Secura","site_detail_url":"https://comicvine.gamespot.com/aayla-secura/4005-5389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5390/","id":5390,"name":"Master Tholme","site_detail_url":"https://comicvine.gamespot.com/master-tholme/4005-5390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5392/","id":5392,"name":"Count Dooku","site_detail_url":"https://comicvine.gamespot.com/count-dooku/4005-5392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5395/","id":5395,"name":"Mace Windu","site_detail_url":"https://comicvine.gamespot.com/mace-windu/4005-5395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5396/","id":5396,"name":"Yoda","site_detail_url":"https://comicvine.gamespot.com/yoda/4005-5396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5401/","id":5401,"name":"Adi Gallia","site_detail_url":"https://comicvine.gamespot.com/adi-gallia/4005-5401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5402/","id":5402,"name":"Eeth Koth","site_detail_url":"https://comicvine.gamespot.com/eeth-koth/4005-5402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5403/","id":5403,"name":"Plo Koon","site_detail_url":"https://comicvine.gamespot.com/plo-koon/4005-5403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5404/","id":5404,"name":"Saesee Tiin","site_detail_url":"https://comicvine.gamespot.com/saesee-tiin/4005-5404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5405/","id":5405,"name":"Yarael Poof","site_detail_url":"https://comicvine.gamespot.com/yarael-poof/4005-5405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5406/","id":5406,"name":"Darth Maul","site_detail_url":"https://comicvine.gamespot.com/darth-maul/4005-5406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5411/","id":5411,"name":"Qui-Gon Jinn","site_detail_url":"https://comicvine.gamespot.com/qui-gon-jinn/4005-5411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5414/","id":5414,"name":"Sha Koon","site_detail_url":"https://comicvine.gamespot.com/sha-koon/4005-5414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5415/","id":5415,"name":"Oppo Rancisis","site_detail_url":"https://comicvine.gamespot.com/oppo-rancisis/4005-5415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5418/","id":5418,"name":"Volfe Karkko","site_detail_url":"https://comicvine.gamespot.com/volfe-karkko/4005-5418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5419/","id":5419,"name":"Zao","site_detail_url":"https://comicvine.gamespot.com/zao/4005-5419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5421/","id":5421,"name":"Aurra Sing","site_detail_url":"https://comicvine.gamespot.com/aurra-sing/4005-5421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5422/","id":5422,"name":"Ki-Adi-Mundi","site_detail_url":"https://comicvine.gamespot.com/ki-adi-mundi/4005-5422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5423/","id":5423,"name":"Dark Woman","site_detail_url":"https://comicvine.gamespot.com/dark-woman/4005-5423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5424/","id":5424,"name":"Yaddle","site_detail_url":"https://comicvine.gamespot.com/yaddle/4005-5424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5425/","id":5425,"name":"Even Piell","site_detail_url":"https://comicvine.gamespot.com/even-piell/4005-5425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5426/","id":5426,"name":"Depa Billaba","site_detail_url":"https://comicvine.gamespot.com/depa-billaba/4005-5426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5428/","id":5428,"name":"Yoshi Raph-Elan","site_detail_url":"https://comicvine.gamespot.com/yoshi-raph-elan/4005-5428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5442/","id":5442,"name":"Sharad Hett","site_detail_url":"https://comicvine.gamespot.com/sharad-hett/4005-5442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5501/","id":5501,"name":"Hecate","site_detail_url":"https://comicvine.gamespot.com/hecate/4005-5501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5609/","id":5609,"name":"Brain Boy","site_detail_url":"https://comicvine.gamespot.com/brain-boy/4005-5609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5617/","id":5617,"name":"Lee","site_detail_url":"https://comicvine.gamespot.com/lee/4005-5617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5620/","id":5620,"name":"Black Mariah","site_detail_url":"https://comicvine.gamespot.com/black-mariah/4005-5620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5691/","id":5691,"name":"Zatanna","site_detail_url":"https://comicvine.gamespot.com/zatanna/4005-5691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5852/","id":5852,"name":"Teneb Kel","site_detail_url":"https://comicvine.gamespot.com/teneb-kel/4005-5852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5898/","id":5898,"name":"Kent V. Nelson","site_detail_url":"https://comicvine.gamespot.com/kent-v-nelson/4005-5898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5946/","id":5946,"name":"Emerald Empress","site_detail_url":"https://comicvine.gamespot.com/emerald-empress/4005-5946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5951/","id":5951,"name":"Psimon","site_detail_url":"https://comicvine.gamespot.com/psimon/4005-5951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5963/","id":5963,"name":"North Wind","site_detail_url":"https://comicvine.gamespot.com/north-wind/4005-5963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6096/","id":6096,"name":"Supreme Intelligence","site_detail_url":"https://comicvine.gamespot.com/supreme-intelligence/4005-6096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6315/","id":6315,"name":"Luke Skywalker","site_detail_url":"https://comicvine.gamespot.com/luke-skywalker/4005-6315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6330/","id":6330,"name":"Kit Fisto","site_detail_url":"https://comicvine.gamespot.com/kit-fisto/4005-6330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6342/","id":6342,"name":"Darth Vader","site_detail_url":"https://comicvine.gamespot.com/darth-vader/4005-6342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6344/","id":6344,"name":"Jango Fett","site_detail_url":"https://comicvine.gamespot.com/jango-fett/4005-6344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6372/","id":6372,"name":"Anakin Solo","site_detail_url":"https://comicvine.gamespot.com/anakin-solo/4005-6372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6385/","id":6385,"name":"Micah Giiett","site_detail_url":"https://comicvine.gamespot.com/micah-giiett/4005-6385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6579/","id":6579,"name":"Amethyst","site_detail_url":"https://comicvine.gamespot.com/amethyst/4005-6579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6591/","id":6591,"name":"Bloodwynd","site_detail_url":"https://comicvine.gamespot.com/bloodwynd/4005-6591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6593/","id":6593,"name":"Felix Faust","site_detail_url":"https://comicvine.gamespot.com/felix-faust/4005-6593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6599/","id":6599,"name":"Kent Nelson","site_detail_url":"https://comicvine.gamespot.com/kent-nelson/4005-6599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6600/","id":6600,"name":"Inza Nelson","site_detail_url":"https://comicvine.gamespot.com/inza-nelson/4005-6600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6642/","id":6642,"name":"Synn","site_detail_url":"https://comicvine.gamespot.com/synn/4005-6642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6805/","id":6805,"name":"Adam Warlock","site_detail_url":"https://comicvine.gamespot.com/adam-warlock/4005-6805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6811/","id":6811,"name":"Living Tribunal","site_detail_url":"https://comicvine.gamespot.com/living-tribunal/4005-6811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6820/","id":6820,"name":"Vector","site_detail_url":"https://comicvine.gamespot.com/vector/4005-6820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6891/","id":6891,"name":"Morgan le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-6891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6943/","id":6943,"name":"Fatality","site_detail_url":"https://comicvine.gamespot.com/fatality/4005-6943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6951/","id":6951,"name":"Ganthet","site_detail_url":"https://comicvine.gamespot.com/ganthet/4005-6951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7089/","id":7089,"name":"Chimera","site_detail_url":"https://comicvine.gamespot.com/chimera/4005-7089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7120/","id":7120,"name":"Watcher","site_detail_url":"https://comicvine.gamespot.com/watcher/4005-7120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7182/","id":7182,"name":"Toyo Harada","site_detail_url":"https://comicvine.gamespot.com/toyo-harada/4005-7182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7190/","id":7190,"name":"Geomancer","site_detail_url":"https://comicvine.gamespot.com/geomancer/4005-7190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7214/","id":7214,"name":"Moondragon","site_detail_url":"https://comicvine.gamespot.com/moondragon/4005-7214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7218/","id":7218,"name":"Jonz Rickard","site_detail_url":"https://comicvine.gamespot.com/jonz-rickard/4005-7218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7257/","id":7257,"name":"Starfox","site_detail_url":"https://comicvine.gamespot.com/starfox/4005-7257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7258/","id":7258,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4005-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7280/","id":7280,"name":"Death of the Endless","site_detail_url":"https://comicvine.gamespot.com/death-of-the-endless/4005-7280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7333/","id":7333,"name":"Psimon","site_detail_url":"https://comicvine.gamespot.com/psimon/4005-7333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7334/","id":7334,"name":"Psiren","site_detail_url":"https://comicvine.gamespot.com/psiren/4005-7334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7367/","id":7367,"name":"Etrigan","site_detail_url":"https://comicvine.gamespot.com/etrigan/4005-7367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7569/","id":7569,"name":"Martine Bancroft","site_detail_url":"https://comicvine.gamespot.com/martine-bancroft/4005-7569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7604/","id":7604,"name":"Meggan","site_detail_url":"https://comicvine.gamespot.com/meggan/4005-7604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7607/","id":7607,"name":"Thanos","site_detail_url":"https://comicvine.gamespot.com/thanos/4005-7607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7612/","id":7612,"name":"Apocalypse","site_detail_url":"https://comicvine.gamespot.com/apocalypse/4005-7612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7616/","id":7616,"name":"Stryfe","site_detail_url":"https://comicvine.gamespot.com/stryfe/4005-7616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7617/","id":7617,"name":"Leader","site_detail_url":"https://comicvine.gamespot.com/leader/4005-7617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7900/","id":7900,"name":"Candra","site_detail_url":"https://comicvine.gamespot.com/candra/4005-7900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7913/","id":7913,"name":"Gomi","site_detail_url":"https://comicvine.gamespot.com/gomi/4005-7913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7950/","id":7950,"name":"Jedda Walker","site_detail_url":"https://comicvine.gamespot.com/jedda-walker/4005-7950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7976/","id":7976,"name":"Stacy","site_detail_url":"https://comicvine.gamespot.com/stacy/4005-7976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8077/","id":8077,"name":"Regent","site_detail_url":"https://comicvine.gamespot.com/regent/4005-8077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8095/","id":8095,"name":"Dark Kleenex","site_detail_url":"https://comicvine.gamespot.com/dark-kleenex/4005-8095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8160/","id":8160,"name":"Evil-Lyn","site_detail_url":"https://comicvine.gamespot.com/evil-lyn/4005-8160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8247/","id":8247,"name":"Avengelyne","site_detail_url":"https://comicvine.gamespot.com/avengelyne/4005-8247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8283/","id":8283,"name":"Lazarus","site_detail_url":"https://comicvine.gamespot.com/lazarus/4005-8283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8302/","id":8302,"name":"Askani","site_detail_url":"https://comicvine.gamespot.com/askani/4005-8302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8303/","id":8303,"name":"Magik","site_detail_url":"https://comicvine.gamespot.com/magik/4005-8303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8436/","id":8436,"name":"Hellina","site_detail_url":"https://comicvine.gamespot.com/hellina/4005-8436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9040/","id":9040,"name":"Faith","site_detail_url":"https://comicvine.gamespot.com/faith/4005-9040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9319/","id":9319,"name":"Brainwave Jr.","site_detail_url":"https://comicvine.gamespot.com/brainwave-jr/4005-9319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9327/","id":9327,"name":"Eric Strauss","site_detail_url":"https://comicvine.gamespot.com/eric-strauss/4005-9327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9328/","id":9328,"name":"Linda Strauss","site_detail_url":"https://comicvine.gamespot.com/linda-strauss/4005-9328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9336/","id":9336,"name":"Mr. Mind","site_detail_url":"https://comicvine.gamespot.com/mr-mind/4005-9336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9546/","id":9546,"name":"Sapphire","site_detail_url":"https://comicvine.gamespot.com/sapphire/4005-9546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9548/","id":9548,"name":"Despero","site_detail_url":"https://comicvine.gamespot.com/despero/4005-9548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9573/","id":9573,"name":"Brainiac 12","site_detail_url":"https://comicvine.gamespot.com/brainiac-12/4005-9573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9632/","id":9632,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-9632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9709/","id":9709,"name":"Kwannon","site_detail_url":"https://comicvine.gamespot.com/kwannon/4005-9709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9722/","id":9722,"name":"Spiral","site_detail_url":"https://comicvine.gamespot.com/spiral/4005-9722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9790/","id":9790,"name":"Galadriel","site_detail_url":"https://comicvine.gamespot.com/galadriel/4005-9790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9927/","id":9927,"name":"Bloody Mary","site_detail_url":"https://comicvine.gamespot.com/bloody-mary/4005-9927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9954/","id":9954,"name":"Senadra","site_detail_url":"https://comicvine.gamespot.com/senadra/4005-9954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10005/","id":10005,"name":"Manchester Black","site_detail_url":"https://comicvine.gamespot.com/manchester-black/4005-10005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10034/","id":10034,"name":"Maxima","site_detail_url":"https://comicvine.gamespot.com/maxima/4005-10034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10038/","id":10038,"name":"Brainiac 13","site_detail_url":"https://comicvine.gamespot.com/brainiac-13/4005-10038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10076/","id":10076,"name":"Godiva","site_detail_url":"https://comicvine.gamespot.com/godiva/4005-10076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10111/","id":10111,"name":"Praxis","site_detail_url":"https://comicvine.gamespot.com/praxis/4005-10111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10116/","id":10116,"name":"Ultraa","site_detail_url":"https://comicvine.gamespot.com/ultraa/4005-10116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10197/","id":10197,"name":"Dr. Diehard","site_detail_url":"https://comicvine.gamespot.com/dr-diehard/4005-10197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10210/","id":10210,"name":"Hector Hammond","site_detail_url":"https://comicvine.gamespot.com/hector-hammond/4005-10210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10226/","id":10226,"name":"Zeus","site_detail_url":"https://comicvine.gamespot.com/zeus/4005-10226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10249/","id":10249,"name":"Buck Samson","site_detail_url":"https://comicvine.gamespot.com/buck-samson/4005-10249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10280/","id":10280,"name":"Doctor Voodoo","site_detail_url":"https://comicvine.gamespot.com/doctor-voodoo/4005-10280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10289/","id":10289,"name":"Jeannie","site_detail_url":"https://comicvine.gamespot.com/jeannie/4005-10289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10300/","id":10300,"name":"Beyonder","site_detail_url":"https://comicvine.gamespot.com/beyonder/4005-10300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10302/","id":10302,"name":"Doctor Druid","site_detail_url":"https://comicvine.gamespot.com/doctor-druid/4005-10302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10311/","id":10311,"name":"Bres","site_detail_url":"https://comicvine.gamespot.com/bres/4005-10311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10455/","id":10455,"name":"Nero","site_detail_url":"https://comicvine.gamespot.com/nero/4005-10455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10491/","id":10491,"name":"Titangirl","site_detail_url":"https://comicvine.gamespot.com/titangirl/4005-10491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10866/","id":10866,"name":"Armageddon","site_detail_url":"https://comicvine.gamespot.com/armageddon/4005-10866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10875/","id":10875,"name":"Mercy","site_detail_url":"https://comicvine.gamespot.com/mercy/4005-10875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10915/","id":10915,"name":"Isis","site_detail_url":"https://comicvine.gamespot.com/isis/4005-10915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10924/","id":10924,"name":"Circe","site_detail_url":"https://comicvine.gamespot.com/circe/4005-10924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10941/","id":10941,"name":"Twilight","site_detail_url":"https://comicvine.gamespot.com/twilight/4005-10941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10953/","id":10953,"name":"Comet Man","site_detail_url":"https://comicvine.gamespot.com/comet-man/4005-10953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10960/","id":10960,"name":"Ulysses Bloodstone","site_detail_url":"https://comicvine.gamespot.com/ulysses-bloodstone/4005-10960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10967/","id":10967,"name":"Surtur","site_detail_url":"https://comicvine.gamespot.com/surtur/4005-10967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10981/","id":10981,"name":"Madelyne Pryor","site_detail_url":"https://comicvine.gamespot.com/madelyne-pryor/4005-10981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10993/","id":10993,"name":"Ultra-Humanite","site_detail_url":"https://comicvine.gamespot.com/ultra-humanite/4005-10993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10994/","id":10994,"name":"Black Lightning","site_detail_url":"https://comicvine.gamespot.com/black-lightning/4005-10994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11153/","id":11153,"name":"Mumm-Ra","site_detail_url":"https://comicvine.gamespot.com/mumm-ra/4005-11153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11171/","id":11171,"name":"Dream of the Endless (Morpheus)","site_detail_url":"https://comicvine.gamespot.com/dream-of-the-endless-morpheus/4005-11171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11281/","id":11281,"name":"Tomorrow Woman","site_detail_url":"https://comicvine.gamespot.com/tomorrow-woman/4005-11281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11291/","id":11291,"name":"Doctor Occult","site_detail_url":"https://comicvine.gamespot.com/doctor-occult/4005-11291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11292/","id":11292,"name":"Sebastian Faust","site_detail_url":"https://comicvine.gamespot.com/sebastian-faust/4005-11292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11317/","id":11317,"name":"Cassandra Nova","site_detail_url":"https://comicvine.gamespot.com/cassandra-nova/4005-11317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11332/","id":11332,"name":"Eternity","site_detail_url":"https://comicvine.gamespot.com/eternity/4005-11332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11364/","id":11364,"name":"Dr. Christopher Ganyrog","site_detail_url":"https://comicvine.gamespot.com/dr-christopher-ganyrog/4005-11364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11366/","id":11366,"name":"Yandroth","site_detail_url":"https://comicvine.gamespot.com/yandroth/4005-11366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11586/","id":11586,"name":"Zealot","site_detail_url":"https://comicvine.gamespot.com/zealot/4005-11586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11655/","id":11655,"name":"Orwell","site_detail_url":"https://comicvine.gamespot.com/orwell/4005-11655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11832/","id":11832,"name":"Hyperstorm","site_detail_url":"https://comicvine.gamespot.com/hyperstorm/4005-11832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11845/","id":11845,"name":"Aron the Rogue Watcher","site_detail_url":"https://comicvine.gamespot.com/aron-the-rogue-watcher/4005-11845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11880/","id":11880,"name":"Molecule Man","site_detail_url":"https://comicvine.gamespot.com/molecule-man/4005-11880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11976/","id":11976,"name":"Klarion","site_detail_url":"https://comicvine.gamespot.com/klarion/4005-11976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12010/","id":12010,"name":"Void","site_detail_url":"https://comicvine.gamespot.com/void/4005-12010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12018/","id":12018,"name":"Jackson King","site_detail_url":"https://comicvine.gamespot.com/jackson-king/4005-12018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12100/","id":12100,"name":"Bette Noir","site_detail_url":"https://comicvine.gamespot.com/bette-noir/4005-12100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12162/","id":12162,"name":"Mongul","site_detail_url":"https://comicvine.gamespot.com/mongul/4005-12162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12361/","id":12361,"name":"Marcus Antares","site_detail_url":"https://comicvine.gamespot.com/marcus-antares/4005-12361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12366/","id":12366,"name":"Urik Antares","site_detail_url":"https://comicvine.gamespot.com/urik-antares/4005-12366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12459/","id":12459,"name":"Zephyr","site_detail_url":"https://comicvine.gamespot.com/zephyr/4005-12459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12460/","id":12460,"name":"Peter Stanchek","site_detail_url":"https://comicvine.gamespot.com/peter-stanchek/4005-12460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12546/","id":12546,"name":"Mimic","site_detail_url":"https://comicvine.gamespot.com/mimic/4005-12546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12547/","id":12547,"name":"Morph","site_detail_url":"https://comicvine.gamespot.com/morph/4005-12547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12620/","id":12620,"name":"Death","site_detail_url":"https://comicvine.gamespot.com/death/4005-12620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12656/","id":12656,"name":"Michael Demiurgos","site_detail_url":"https://comicvine.gamespot.com/michael-demiurgos/4005-12656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12662/","id":12662,"name":"Madame Xanadu","site_detail_url":"https://comicvine.gamespot.com/madame-xanadu/4005-12662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12683/","id":12683,"name":"Dubbilex","site_detail_url":"https://comicvine.gamespot.com/dubbilex/4005-12683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12808/","id":12808,"name":"Kinetix","site_detail_url":"https://comicvine.gamespot.com/kinetix/4005-12808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12812/","id":12812,"name":"Brainstorm","site_detail_url":"https://comicvine.gamespot.com/brainstorm/4005-12812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12903/","id":12903,"name":"Lord Chaos","site_detail_url":"https://comicvine.gamespot.com/lord-chaos/4005-12903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12904/","id":12904,"name":"Master Order","site_detail_url":"https://comicvine.gamespot.com/master-order/4005-12904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12940/","id":12940,"name":"Monarch","site_detail_url":"https://comicvine.gamespot.com/monarch/4005-12940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13078/","id":13078,"name":"Vartox","site_detail_url":"https://comicvine.gamespot.com/vartox/4005-13078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13180/","id":13180,"name":"Neven","site_detail_url":"https://comicvine.gamespot.com/neven/4005-13180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13205/","id":13205,"name":"Evinlea","site_detail_url":"https://comicvine.gamespot.com/evinlea/4005-13205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13210/","id":13210,"name":"Corrin","site_detail_url":"https://comicvine.gamespot.com/corrin/4005-13210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13217/","id":13217,"name":"Qztr","site_detail_url":"https://comicvine.gamespot.com/qztr/4005-13217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13218/","id":13218,"name":"Charon","site_detail_url":"https://comicvine.gamespot.com/charon/4005-13218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13228/","id":13228,"name":"Tug","site_detail_url":"https://comicvine.gamespot.com/tug/4005-13228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13246/","id":13246,"name":"Ingra","site_detail_url":"https://comicvine.gamespot.com/ingra/4005-13246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13248/","id":13248,"name":"Orium","site_detail_url":"https://comicvine.gamespot.com/orium/4005-13248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13249/","id":13249,"name":"Seahn","site_detail_url":"https://comicvine.gamespot.com/seahn/4005-13249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13250/","id":13250,"name":"Enson","site_detail_url":"https://comicvine.gamespot.com/enson/4005-13250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13252/","id":13252,"name":"Tiena","site_detail_url":"https://comicvine.gamespot.com/tiena/4005-13252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13253/","id":13253,"name":"Empher","site_detail_url":"https://comicvine.gamespot.com/empher/4005-13253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13254/","id":13254,"name":"Wyture","site_detail_url":"https://comicvine.gamespot.com/wyture/4005-13254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13255/","id":13255,"name":"Yala","site_detail_url":"https://comicvine.gamespot.com/yala/4005-13255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13260/","id":13260,"name":"Khyradon","site_detail_url":"https://comicvine.gamespot.com/khyradon/4005-13260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13261/","id":13261,"name":"Samandahl Rey","site_detail_url":"https://comicvine.gamespot.com/samandahl-rey/4005-13261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13265/","id":13265,"name":"Trenin","site_detail_url":"https://comicvine.gamespot.com/trenin/4005-13265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13291/","id":13291,"name":"Giselle Villard","site_detail_url":"https://comicvine.gamespot.com/giselle-villard/4005-13291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13332/","id":13332,"name":"Stranger","site_detail_url":"https://comicvine.gamespot.com/stranger/4005-13332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13346/","id":13346,"name":"High Evolutionary","site_detail_url":"https://comicvine.gamespot.com/high-evolutionary/4005-13346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13349/","id":13349,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/legion/4005-13349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13352/","id":13352,"name":"Onslaught","site_detail_url":"https://comicvine.gamespot.com/onslaught/4005-13352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13675/","id":13675,"name":"Lady Blaze","site_detail_url":"https://comicvine.gamespot.com/lady-blaze/4005-13675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13717/","id":13717,"name":"Bedlam","site_detail_url":"https://comicvine.gamespot.com/bedlam/4005-13717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13753/","id":13753,"name":"Cassandra","site_detail_url":"https://comicvine.gamespot.com/cassandra/4005-13753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13820/","id":13820,"name":"Talisman","site_detail_url":"https://comicvine.gamespot.com/talisman/4005-13820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13822/","id":13822,"name":"Thena","site_detail_url":"https://comicvine.gamespot.com/thena/4005-13822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13925/","id":13925,"name":"Morgan Le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-13925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13988/","id":13988,"name":"Contemplator","site_detail_url":"https://comicvine.gamespot.com/contemplator/4005-13988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13992/","id":13992,"name":"Devil-Slayer","site_detail_url":"https://comicvine.gamespot.com/devil-slayer/4005-13992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14055/","id":14055,"name":"Metal Master","site_detail_url":"https://comicvine.gamespot.com/metal-master/4005-14055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14409/","id":14409,"name":"Vamp","site_detail_url":"https://comicvine.gamespot.com/vamp/4005-14409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14467/","id":14467,"name":"Korvac","site_detail_url":"https://comicvine.gamespot.com/korvac/4005-14467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14510/","id":14510,"name":"Protector","site_detail_url":"https://comicvine.gamespot.com/protector/4005-14510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14527/","id":14527,"name":"Uni-Mind","site_detail_url":"https://comicvine.gamespot.com/uni-mind/4005-14527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14594/","id":14594,"name":"Randac","site_detail_url":"https://comicvine.gamespot.com/randac/4005-14594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14647/","id":14647,"name":"Mento","site_detail_url":"https://comicvine.gamespot.com/mento/4005-14647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14652/","id":14652,"name":"Shark","site_detail_url":"https://comicvine.gamespot.com/shark/4005-14652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14692/","id":14692,"name":"Feron","site_detail_url":"https://comicvine.gamespot.com/feron/4005-14692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14728/","id":14728,"name":"Blackheart","site_detail_url":"https://comicvine.gamespot.com/blackheart/4005-14728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14757/","id":14757,"name":"Centurious","site_detail_url":"https://comicvine.gamespot.com/centurious/4005-14757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14810/","id":14810,"name":"Roma","site_detail_url":"https://comicvine.gamespot.com/roma/4005-14810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14820/","id":14820,"name":"Merlyn","site_detail_url":"https://comicvine.gamespot.com/merlyn/4005-14820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14911/","id":14911,"name":"Black Raazer","site_detail_url":"https://comicvine.gamespot.com/black-raazer/4005-14911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15038/","id":15038,"name":"Torque","site_detail_url":"https://comicvine.gamespot.com/torque/4005-15038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15051/","id":15051,"name":"X-Man","site_detail_url":"https://comicvine.gamespot.com/x-man/4005-15051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15077/","id":15077,"name":"Grey King","site_detail_url":"https://comicvine.gamespot.com/grey-king/4005-15077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15128/","id":15128,"name":"Fixx","site_detail_url":"https://comicvine.gamespot.com/fixx/4005-15128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15159/","id":15159,"name":"Blaquesmith","site_detail_url":"https://comicvine.gamespot.com/blaquesmith/4005-15159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15160/","id":15160,"name":"Dark Mother","site_detail_url":"https://comicvine.gamespot.com/dark-mother/4005-15160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15193/","id":15193,"name":"Sanctity","site_detail_url":"https://comicvine.gamespot.com/sanctity/4005-15193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15198/","id":15198,"name":"Aliya Dayspring","site_detail_url":"https://comicvine.gamespot.com/aliya-dayspring/4005-15198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15232/","id":15232,"name":"Shriek","site_detail_url":"https://comicvine.gamespot.com/shriek/4005-15232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15392/","id":15392,"name":"Vishnu","site_detail_url":"https://comicvine.gamespot.com/vishnu/4005-15392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15406/","id":15406,"name":"Will o' the Wisp","site_detail_url":"https://comicvine.gamespot.com/will-o-the-wisp/4005-15406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15551/","id":15551,"name":"Risque","site_detail_url":"https://comicvine.gamespot.com/risque/4005-15551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15573/","id":15573,"name":"Armageddon Man","site_detail_url":"https://comicvine.gamespot.com/armageddon-man/4005-15573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15624/","id":15624,"name":"Mauvais","site_detail_url":"https://comicvine.gamespot.com/mauvais/4005-15624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15778/","id":15778,"name":"Gaea","site_detail_url":"https://comicvine.gamespot.com/gaea/4005-15778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16079/","id":16079,"name":"Topaz","site_detail_url":"https://comicvine.gamespot.com/topaz/4005-16079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16110/","id":16110,"name":"Razorwire","site_detail_url":"https://comicvine.gamespot.com/razorwire/4005-16110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16164/","id":16164,"name":"Emperor Palpatine","site_detail_url":"https://comicvine.gamespot.com/emperor-palpatine/4005-16164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16424/","id":16424,"name":"Skeletor","site_detail_url":"https://comicvine.gamespot.com/skeletor/4005-16424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16427/","id":16427,"name":"Teela","site_detail_url":"https://comicvine.gamespot.com/teela/4005-16427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17727/","id":17727,"name":"Epiphany","site_detail_url":"https://comicvine.gamespot.com/epiphany/4005-17727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17785/","id":17785,"name":"Black Zero","site_detail_url":"https://comicvine.gamespot.com/black-zero/4005-17785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17792/","id":17792,"name":"Orrgo","site_detail_url":"https://comicvine.gamespot.com/orrgo/4005-17792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17871/","id":17871,"name":"Brainiape","site_detail_url":"https://comicvine.gamespot.com/brainiape/4005-17871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17901/","id":17901,"name":"Damien Darklord","site_detail_url":"https://comicvine.gamespot.com/damien-darklord/4005-17901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17922/","id":17922,"name":"Chelsea Nirvana","site_detail_url":"https://comicvine.gamespot.com/chelsea-nirvana/4005-17922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18276/","id":18276,"name":"Carol Ferris","site_detail_url":"https://comicvine.gamespot.com/carol-ferris/4005-18276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18567/","id":18567,"name":"Andra","site_detail_url":"https://comicvine.gamespot.com/andra/4005-18567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18866/","id":18866,"name":"Arcadius","site_detail_url":"https://comicvine.gamespot.com/arcadius/4005-18866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19089/","id":19089,"name":"Doctor Alchemy","site_detail_url":"https://comicvine.gamespot.com/doctor-alchemy/4005-19089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19225/","id":19225,"name":"Millionex","site_detail_url":"https://comicvine.gamespot.com/millionex/4005-19225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19765/","id":19765,"name":"Goku","site_detail_url":"https://comicvine.gamespot.com/goku/4005-19765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19772/","id":19772,"name":"Kami","site_detail_url":"https://comicvine.gamespot.com/kami/4005-19772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19773/","id":19773,"name":"Chao-Zu","site_detail_url":"https://comicvine.gamespot.com/chao-zu/4005-19773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19934/","id":19934,"name":"Bloodwraith","site_detail_url":"https://comicvine.gamespot.com/bloodwraith/4005-19934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19942/","id":19942,"name":"Kulan Gath","site_detail_url":"https://comicvine.gamespot.com/kulan-gath/4005-19942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20010/","id":20010,"name":"Tad Carter","site_detail_url":"https://comicvine.gamespot.com/tad-carter/4005-20010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20026/","id":20026,"name":"Delinquent","site_detail_url":"https://comicvine.gamespot.com/delinquent/4005-20026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20093/","id":20093,"name":"Cordelia","site_detail_url":"https://comicvine.gamespot.com/cordelia/4005-20093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20097/","id":20097,"name":"Giles","site_detail_url":"https://comicvine.gamespot.com/giles/4005-20097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20100/","id":20100,"name":"Anya","site_detail_url":"https://comicvine.gamespot.com/anya/4005-20100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20101/","id":20101,"name":"Tara","site_detail_url":"https://comicvine.gamespot.com/tara/4005-20101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20125/","id":20125,"name":"Willow","site_detail_url":"https://comicvine.gamespot.com/willow/4005-20125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20202/","id":20202,"name":"Southern Cross","site_detail_url":"https://comicvine.gamespot.com/southern-cross/4005-20202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20279/","id":20279,"name":"Skar","site_detail_url":"https://comicvine.gamespot.com/skar/4005-20279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20417/","id":20417,"name":"Mara Jade","site_detail_url":"https://comicvine.gamespot.com/mara-jade/4005-20417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20554/","id":20554,"name":"Exal Kressh","site_detail_url":"https://comicvine.gamespot.com/exal-kressh/4005-20554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20558/","id":20558,"name":"Streen","site_detail_url":"https://comicvine.gamespot.com/streen/4005-20558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20559/","id":20559,"name":"Lord Kaan","site_detail_url":"https://comicvine.gamespot.com/lord-kaan/4005-20559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20588/","id":20588,"name":"Sprite","site_detail_url":"https://comicvine.gamespot.com/sprite/4005-20588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20590/","id":20590,"name":"Khoryphos","site_detail_url":"https://comicvine.gamespot.com/khoryphos/4005-20590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20610/","id":20610,"name":"Ahura","site_detail_url":"https://comicvine.gamespot.com/ahura/4005-20610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21000/","id":21000,"name":"Elaine Belloc","site_detail_url":"https://comicvine.gamespot.com/elaine-belloc/4005-21000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21077/","id":21077,"name":"Max Winwood","site_detail_url":"https://comicvine.gamespot.com/max-winwood/4005-21077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21233/","id":21233,"name":"Vulcan","site_detail_url":"https://comicvine.gamespot.com/vulcan/4005-21233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21239/","id":21239,"name":"Eternal Brain","site_detail_url":"https://comicvine.gamespot.com/eternal-brain/4005-21239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21292/","id":21292,"name":"Abby Holland","site_detail_url":"https://comicvine.gamespot.com/abby-holland/4005-21292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21686/","id":21686,"name":"Druanna","site_detail_url":"https://comicvine.gamespot.com/druanna/4005-21686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21893/","id":21893,"name":"Satan","site_detail_url":"https://comicvine.gamespot.com/satan/4005-21893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21972/","id":21972,"name":"Mr. Majestic","site_detail_url":"https://comicvine.gamespot.com/mr-majestic/4005-21972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21979/","id":21979,"name":"Deathtrap","site_detail_url":"https://comicvine.gamespot.com/deathtrap/4005-21979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22019/","id":22019,"name":"Asmodel","site_detail_url":"https://comicvine.gamespot.com/asmodel/4005-22019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22071/","id":22071,"name":"Orochi","site_detail_url":"https://comicvine.gamespot.com/orochi/4005-22071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22454/","id":22454,"name":"Bliss","site_detail_url":"https://comicvine.gamespot.com/bliss/4005-22454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22461/","id":22461,"name":"Fuji","site_detail_url":"https://comicvine.gamespot.com/fuji/4005-22461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22523/","id":22523,"name":"Xemnu","site_detail_url":"https://comicvine.gamespot.com/xemnu/4005-22523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22525/","id":22525,"name":"Gomdulla","site_detail_url":"https://comicvine.gamespot.com/gomdulla/4005-22525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22640/","id":22640,"name":"Matrix","site_detail_url":"https://comicvine.gamespot.com/matrix/4005-22640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22836/","id":22836,"name":"Dreaming Celestial","site_detail_url":"https://comicvine.gamespot.com/dreaming-celestial/4005-22836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23058/","id":23058,"name":"Jennifer Morgan","site_detail_url":"https://comicvine.gamespot.com/jennifer-morgan/4005-23058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23063/","id":23063,"name":"Osiris","site_detail_url":"https://comicvine.gamespot.com/osiris/4005-23063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23118/","id":23118,"name":"Gaia","site_detail_url":"https://comicvine.gamespot.com/gaia/4005-23118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23215/","id":23215,"name":"Tim Hunter","site_detail_url":"https://comicvine.gamespot.com/tim-hunter/4005-23215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23304/","id":23304,"name":"Hard Drive","site_detail_url":"https://comicvine.gamespot.com/hard-drive/4005-23304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23389/","id":23389,"name":"Koryak","site_detail_url":"https://comicvine.gamespot.com/koryak/4005-23389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23450/","id":23450,"name":"Resurrection Man","site_detail_url":"https://comicvine.gamespot.com/resurrection-man/4005-23450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23476/","id":23476,"name":"Alex Fairchild","site_detail_url":"https://comicvine.gamespot.com/alex-fairchild/4005-23476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23624/","id":23624,"name":"Grifter","site_detail_url":"https://comicvine.gamespot.com/grifter/4005-23624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23647/","id":23647,"name":"Metatron","site_detail_url":"https://comicvine.gamespot.com/metatron/4005-23647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23851/","id":23851,"name":"Thinker","site_detail_url":"https://comicvine.gamespot.com/thinker/4005-23851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24010/","id":24010,"name":"Llan","site_detail_url":"https://comicvine.gamespot.com/llan/4005-24010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24011/","id":24011,"name":"Jackknife","site_detail_url":"https://comicvine.gamespot.com/jackknife/4005-24011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24087/","id":24087,"name":"Alex Luthor","site_detail_url":"https://comicvine.gamespot.com/alex-luthor/4005-24087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24232/","id":24232,"name":"Lucifer Morningstar","site_detail_url":"https://comicvine.gamespot.com/lucifer-morningstar/4005-24232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24399/","id":24399,"name":"Madison Jeffries","site_detail_url":"https://comicvine.gamespot.com/madison-jeffries/4005-24399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24509/","id":24509,"name":"Buddha","site_detail_url":"https://comicvine.gamespot.com/buddha/4005-24509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24659/","id":24659,"name":"Dr. Strangefate","site_detail_url":"https://comicvine.gamespot.com/dr-strangefate/4005-24659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24698/","id":24698,"name":"Top","site_detail_url":"https://comicvine.gamespot.com/top/4005-24698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24949/","id":24949,"name":"Cyttorak","site_detail_url":"https://comicvine.gamespot.com/cyttorak/4005-24949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25111/","id":25111,"name":"Damocles","site_detail_url":"https://comicvine.gamespot.com/damocles/4005-25111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25112/","id":25112,"name":"Threshold","site_detail_url":"https://comicvine.gamespot.com/threshold/4005-25112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25267/","id":25267,"name":"Malachi","site_detail_url":"https://comicvine.gamespot.com/malachi/4005-25267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25324/","id":25324,"name":"New Man","site_detail_url":"https://comicvine.gamespot.com/new-man/4005-25324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25556/","id":25556,"name":"Gary Mitchell","site_detail_url":"https://comicvine.gamespot.com/gary-mitchell/4005-25556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25587/","id":25587,"name":"Cuckoo","site_detail_url":"https://comicvine.gamespot.com/cuckoo/4005-25587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25638/","id":25638,"name":"Timmy","site_detail_url":"https://comicvine.gamespot.com/timmy/4005-25638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25642/","id":25642,"name":"Strega","site_detail_url":"https://comicvine.gamespot.com/strega/4005-25642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25737/","id":25737,"name":"Alpha the Ultimate Mutant","site_detail_url":"https://comicvine.gamespot.com/alpha-the-ultimate-mutant/4005-25737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25874/","id":25874,"name":"Despot","site_detail_url":"https://comicvine.gamespot.com/despot/4005-25874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25978/","id":25978,"name":"Backlash","site_detail_url":"https://comicvine.gamespot.com/backlash/4005-25978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25979/","id":25979,"name":"Dane","site_detail_url":"https://comicvine.gamespot.com/dane/4005-25979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25998/","id":25998,"name":"Time Trapper","site_detail_url":"https://comicvine.gamespot.com/time-trapper/4005-25998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26026/","id":26026,"name":"Space Dolphin","site_detail_url":"https://comicvine.gamespot.com/space-dolphin/4005-26026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26110/","id":26110,"name":"Count Abyss","site_detail_url":"https://comicvine.gamespot.com/count-abyss/4005-26110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26122/","id":26122,"name":"Giraud of Haven","site_detail_url":"https://comicvine.gamespot.com/giraud-of-haven/4005-26122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26313/","id":26313,"name":"Shondra Kinsolving","site_detail_url":"https://comicvine.gamespot.com/shondra-kinsolving/4005-26313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26318/","id":26318,"name":"Prince Wayfinder","site_detail_url":"https://comicvine.gamespot.com/prince-wayfinder/4005-26318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26324/","id":26324,"name":"Stitch","site_detail_url":"https://comicvine.gamespot.com/stitch/4005-26324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26481/","id":26481,"name":"Witchfire","site_detail_url":"https://comicvine.gamespot.com/witchfire/4005-26481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26659/","id":26659,"name":"Mnemo","site_detail_url":"https://comicvine.gamespot.com/mnemo/4005-26659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27193/","id":27193,"name":"Captain Universe","site_detail_url":"https://comicvine.gamespot.com/captain-universe/4005-27193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27246/","id":27246,"name":"Krona","site_detail_url":"https://comicvine.gamespot.com/krona/4005-27246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27304/","id":27304,"name":"Crazy Jane","site_detail_url":"https://comicvine.gamespot.com/crazy-jane/4005-27304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27436/","id":27436,"name":"Mr. Mxyzptlk","site_detail_url":"https://comicvine.gamespot.com/mr-mxyzptlk/4005-27436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27485/","id":27485,"name":"Infinity Man","site_detail_url":"https://comicvine.gamespot.com/infinity-man/4005-27485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27672/","id":27672,"name":"Mistress Love","site_detail_url":"https://comicvine.gamespot.com/mistress-love/4005-27672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27673/","id":27673,"name":"Master Hate","site_detail_url":"https://comicvine.gamespot.com/master-hate/4005-27673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27724/","id":27724,"name":"Necrom","site_detail_url":"https://comicvine.gamespot.com/necrom/4005-27724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27988/","id":27988,"name":"Midnight Sun","site_detail_url":"https://comicvine.gamespot.com/midnight-sun/4005-27988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28005/","id":28005,"name":"Kronos","site_detail_url":"https://comicvine.gamespot.com/kronos/4005-28005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28038/","id":28038,"name":"Ray Coffin","site_detail_url":"https://comicvine.gamespot.com/ray-coffin/4005-28038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28118/","id":28118,"name":"Protege","site_detail_url":"https://comicvine.gamespot.com/protege/4005-28118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28285/","id":28285,"name":"Psynapse","site_detail_url":"https://comicvine.gamespot.com/psynapse/4005-28285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28333/","id":28333,"name":"Nexus","site_detail_url":"https://comicvine.gamespot.com/nexus/4005-28333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28638/","id":28638,"name":"Anti-Fate","site_detail_url":"https://comicvine.gamespot.com/anti-fate/4005-28638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28700/","id":28700,"name":"Danny Chase","site_detail_url":"https://comicvine.gamespot.com/danny-chase/4005-28700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28702/","id":28702,"name":"Ace","site_detail_url":"https://comicvine.gamespot.com/ace/4005-28702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28751/","id":28751,"name":"Legba","site_detail_url":"https://comicvine.gamespot.com/legba/4005-28751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28862/","id":28862,"name":"Immortal Man","site_detail_url":"https://comicvine.gamespot.com/immortal-man/4005-28862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28923/","id":28923,"name":"The Shadow","site_detail_url":"https://comicvine.gamespot.com/the-shadow/4005-28923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28991/","id":28991,"name":"Kaluu","site_detail_url":"https://comicvine.gamespot.com/kaluu/4005-28991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29023/","id":29023,"name":"Floater","site_detail_url":"https://comicvine.gamespot.com/floater/4005-29023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29057/","id":29057,"name":"Tannarak","site_detail_url":"https://comicvine.gamespot.com/tannarak/4005-29057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29157/","id":29157,"name":"Gilgamesh","site_detail_url":"https://comicvine.gamespot.com/gilgamesh/4005-29157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29288/","id":29288,"name":"Friction","site_detail_url":"https://comicvine.gamespot.com/friction/4005-29288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29289/","id":29289,"name":"Captain Manhattan","site_detail_url":"https://comicvine.gamespot.com/captain-manhattan/4005-29289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29323/","id":29323,"name":"Andrew Bennett","site_detail_url":"https://comicvine.gamespot.com/andrew-bennett/4005-29323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29371/","id":29371,"name":"Shadow Weaver","site_detail_url":"https://comicvine.gamespot.com/shadow-weaver/4005-29371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29591/","id":29591,"name":"Tala","site_detail_url":"https://comicvine.gamespot.com/tala/4005-29591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29861/","id":29861,"name":"One Above All","site_detail_url":"https://comicvine.gamespot.com/one-above-all/4005-29861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30118/","id":30118,"name":"Star Brand","site_detail_url":"https://comicvine.gamespot.com/star-brand/4005-30118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30148/","id":30148,"name":"Highnote","site_detail_url":"https://comicvine.gamespot.com/highnote/4005-30148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30240/","id":30240,"name":"Philip Voight","site_detail_url":"https://comicvine.gamespot.com/philip-voight/4005-30240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30262/","id":30262,"name":"Shiva","site_detail_url":"https://comicvine.gamespot.com/shiva/4005-30262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30447/","id":30447,"name":"Bill Silent Bear","site_detail_url":"https://comicvine.gamespot.com/bill-silent-bear/4005-30447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30559/","id":30559,"name":"Captain Comet","site_detail_url":"https://comicvine.gamespot.com/captain-comet/4005-30559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30611/","id":30611,"name":"Skeeve","site_detail_url":"https://comicvine.gamespot.com/skeeve/4005-30611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30743/","id":30743,"name":"Willow","site_detail_url":"https://comicvine.gamespot.com/willow/4005-30743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30747/","id":30747,"name":"Khat","site_detail_url":"https://comicvine.gamespot.com/khat/4005-30747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30843/","id":30843,"name":"Looker","site_detail_url":"https://comicvine.gamespot.com/looker/4005-30843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30996/","id":30996,"name":"Tellus","site_detail_url":"https://comicvine.gamespot.com/tellus/4005-30996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31018/","id":31018,"name":"The Monitor","site_detail_url":"https://comicvine.gamespot.com/the-monitor/4005-31018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31297/","id":31297,"name":"Quisp","site_detail_url":"https://comicvine.gamespot.com/quisp/4005-31297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31361/","id":31361,"name":"Poltergeist","site_detail_url":"https://comicvine.gamespot.com/poltergeist/4005-31361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31464/","id":31464,"name":"Enchantress","site_detail_url":"https://comicvine.gamespot.com/enchantress/4005-31464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31578/","id":31578,"name":"Black Abbott","site_detail_url":"https://comicvine.gamespot.com/black-abbott/4005-31578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32021/","id":32021,"name":"Mo-Skull","site_detail_url":"https://comicvine.gamespot.com/mo-skull/4005-32021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32095/","id":32095,"name":"Midna","site_detail_url":"https://comicvine.gamespot.com/midna/4005-32095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32131/","id":32131,"name":"Albus Dumbledore","site_detail_url":"https://comicvine.gamespot.com/albus-dumbledore/4005-32131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32193/","id":32193,"name":"Dyna-Mind","site_detail_url":"https://comicvine.gamespot.com/dyna-mind/4005-32193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32258/","id":32258,"name":"Skein","site_detail_url":"https://comicvine.gamespot.com/skein/4005-32258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32289/","id":32289,"name":"Mask Man","site_detail_url":"https://comicvine.gamespot.com/mask-man/4005-32289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32472/","id":32472,"name":"Sam Slattery","site_detail_url":"https://comicvine.gamespot.com/sam-slattery/4005-32472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32590/","id":32590,"name":"The Sorceress","site_detail_url":"https://comicvine.gamespot.com/the-sorceress/4005-32590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32596/","id":32596,"name":"Elfqueen","site_detail_url":"https://comicvine.gamespot.com/elfqueen/4005-32596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32857/","id":32857,"name":"Arishem the Judge","site_detail_url":"https://comicvine.gamespot.com/arishem-the-judge/4005-32857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33229/","id":33229,"name":"Uranos","site_detail_url":"https://comicvine.gamespot.com/uranos/4005-33229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33395/","id":33395,"name":"Pieter Phobos","site_detail_url":"https://comicvine.gamespot.com/pieter-phobos/4005-33395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33519/","id":33519,"name":"The Mummy","site_detail_url":"https://comicvine.gamespot.com/the-mummy/4005-33519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33545/","id":33545,"name":"Princess Leia","site_detail_url":"https://comicvine.gamespot.com/princess-leia/4005-33545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33687/","id":33687,"name":"Gammenon the Gatherer","site_detail_url":"https://comicvine.gamespot.com/gammenon-the-gatherer/4005-33687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33688/","id":33688,"name":"Ziran the Tester","site_detail_url":"https://comicvine.gamespot.com/ziran-the-tester/4005-33688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33689/","id":33689,"name":"Nezarr the Calculator","site_detail_url":"https://comicvine.gamespot.com/nezarr-the-calculator/4005-33689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33690/","id":33690,"name":"Oneg the Prober","site_detail_url":"https://comicvine.gamespot.com/oneg-the-prober/4005-33690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33817/","id":33817,"name":"Jaime Slade","site_detail_url":"https://comicvine.gamespot.com/jaime-slade/4005-33817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33858/","id":33858,"name":"Hermione Granger","site_detail_url":"https://comicvine.gamespot.com/hermione-granger/4005-33858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33892/","id":33892,"name":"Meteor Man","site_detail_url":"https://comicvine.gamespot.com/meteor-man/4005-33892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33909/","id":33909,"name":"Astralad","site_detail_url":"https://comicvine.gamespot.com/astralad/4005-33909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33976/","id":33976,"name":"Voldemort","site_detail_url":"https://comicvine.gamespot.com/voldemort/4005-33976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34020/","id":34020,"name":"Hodiak","site_detail_url":"https://comicvine.gamespot.com/hodiak/4005-34020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34109/","id":34109,"name":"Omega the Unknown","site_detail_url":"https://comicvine.gamespot.com/omega-the-unknown/4005-34109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34294/","id":34294,"name":"Faceless One","site_detail_url":"https://comicvine.gamespot.com/faceless-one/4005-34294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34526/","id":34526,"name":"Humus Sapien","site_detail_url":"https://comicvine.gamespot.com/humus-sapien/4005-34526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34948/","id":34948,"name":"Dromedan","site_detail_url":"https://comicvine.gamespot.com/dromedan/4005-34948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34973/","id":34973,"name":"Wraith (DeWolff)","site_detail_url":"https://comicvine.gamespot.com/wraith-dewolff/4005-34973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35240/","id":35240,"name":"Maha Yogi","site_detail_url":"https://comicvine.gamespot.com/maha-yogi/4005-35240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35323/","id":35323,"name":"The Space Turnip","site_detail_url":"https://comicvine.gamespot.com/the-space-turnip/4005-35323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35333/","id":35333,"name":"The Six-Million Year Man","site_detail_url":"https://comicvine.gamespot.com/the-six-million-year-man/4005-35333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35596/","id":35596,"name":"James-Michael Starling","site_detail_url":"https://comicvine.gamespot.com/james-michael-starling/4005-35596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35649/","id":35649,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-35649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35731/","id":35731,"name":"Uri Geller","site_detail_url":"https://comicvine.gamespot.com/uri-geller/4005-35731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35888/","id":35888,"name":"Assassin","site_detail_url":"https://comicvine.gamespot.com/assassin/4005-35888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36580/","id":36580,"name":"Rotath","site_detail_url":"https://comicvine.gamespot.com/rotath/4005-36580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37528/","id":37528,"name":"Kid Psycho","site_detail_url":"https://comicvine.gamespot.com/kid-psycho/4005-37528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38648/","id":38648,"name":"Prince Ra-Man","site_detail_url":"https://comicvine.gamespot.com/prince-ra-man/4005-38648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38791/","id":38791,"name":"Drabny","site_detail_url":"https://comicvine.gamespot.com/drabny/4005-38791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38979/","id":38979,"name":"Shiwan Khan","site_detail_url":"https://comicvine.gamespot.com/shiwan-khan/4005-38979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39119/","id":39119,"name":"Anomaly","site_detail_url":"https://comicvine.gamespot.com/anomaly/4005-39119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39277/","id":39277,"name":"Doctor Solar","site_detail_url":"https://comicvine.gamespot.com/doctor-solar/4005-39277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39298/","id":39298,"name":"Sandu","site_detail_url":"https://comicvine.gamespot.com/sandu/4005-39298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39511/","id":39511,"name":"Trenton Craft","site_detail_url":"https://comicvine.gamespot.com/trenton-craft/4005-39511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39643/","id":39643,"name":"Baphomet","site_detail_url":"https://comicvine.gamespot.com/baphomet/4005-39643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40454/","id":40454,"name":"Hellion","site_detail_url":"https://comicvine.gamespot.com/hellion/4005-40454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40460/","id":40460,"name":"M","site_detail_url":"https://comicvine.gamespot.com/m/4005-40460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40505/","id":40505,"name":"Wiccan","site_detail_url":"https://comicvine.gamespot.com/wiccan/4005-40505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40520/","id":40520,"name":"Debrii","site_detail_url":"https://comicvine.gamespot.com/debrii/4005-40520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40527/","id":40527,"name":"Dr. Manhattan","site_detail_url":"https://comicvine.gamespot.com/dr-manhattan/4005-40527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40583/","id":40583,"name":"Quentin Quire","site_detail_url":"https://comicvine.gamespot.com/quentin-quire/4005-40583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40602/","id":40602,"name":"Mr. M","site_detail_url":"https://comicvine.gamespot.com/mr-m/4005-40602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40612/","id":40612,"name":"Dante","site_detail_url":"https://comicvine.gamespot.com/dante/4005-40612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40613/","id":40613,"name":"Vergil","site_detail_url":"https://comicvine.gamespot.com/vergil/4005-40613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40621/","id":40621,"name":"Michael","site_detail_url":"https://comicvine.gamespot.com/michael/4005-40621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40623/","id":40623,"name":"Abi","site_detail_url":"https://comicvine.gamespot.com/abi/4005-40623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40632/","id":40632,"name":"Helspont","site_detail_url":"https://comicvine.gamespot.com/helspont/4005-40632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40676/","id":40676,"name":"Mutant 2099","site_detail_url":"https://comicvine.gamespot.com/mutant-2099/4005-40676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40708/","id":40708,"name":"Damian Tryp","site_detail_url":"https://comicvine.gamespot.com/damian-tryp/4005-40708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40727/","id":40727,"name":"Piccolo","site_detail_url":"https://comicvine.gamespot.com/piccolo/4005-40727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40732/","id":40732,"name":"Guldo","site_detail_url":"https://comicvine.gamespot.com/guldo/4005-40732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40737/","id":40737,"name":"Frieza","site_detail_url":"https://comicvine.gamespot.com/frieza/4005-40737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40740/","id":40740,"name":"Psimian","site_detail_url":"https://comicvine.gamespot.com/psimian/4005-40740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40743/","id":40743,"name":"Gohan","site_detail_url":"https://comicvine.gamespot.com/gohan/4005-40743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40806/","id":40806,"name":"Cell","site_detail_url":"https://comicvine.gamespot.com/cell/4005-40806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40877/","id":40877,"name":"Fallen One","site_detail_url":"https://comicvine.gamespot.com/fallen-one/4005-40877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40944/","id":40944,"name":"Hemorrhage","site_detail_url":"https://comicvine.gamespot.com/hemorrhage/4005-40944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40994/","id":40994,"name":"Cthulhu","site_detail_url":"https://comicvine.gamespot.com/cthulhu/4005-40994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41054/","id":41054,"name":"Fuckwit","site_detail_url":"https://comicvine.gamespot.com/fuckwit/4005-41054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41106/","id":41106,"name":"Stasis","site_detail_url":"https://comicvine.gamespot.com/stasis/4005-41106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41116/","id":41116,"name":"Majin Buu","site_detail_url":"https://comicvine.gamespot.com/majin-buu/4005-41116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41145/","id":41145,"name":"Miss Martian","site_detail_url":"https://comicvine.gamespot.com/miss-martian/4005-41145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41178/","id":41178,"name":"Negasonic Teenage Warhead","site_detail_url":"https://comicvine.gamespot.com/negasonic-teenage-warhead/4005-41178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41208/","id":41208,"name":"Korvus","site_detail_url":"https://comicvine.gamespot.com/korvus/4005-41208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41243/","id":41243,"name":"Thundermind","site_detail_url":"https://comicvine.gamespot.com/thundermind/4005-41243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41258/","id":41258,"name":"Match","site_detail_url":"https://comicvine.gamespot.com/match/4005-41258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41272/","id":41272,"name":"Spellbinder","site_detail_url":"https://comicvine.gamespot.com/spellbinder/4005-41272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41324/","id":41324,"name":"Junkpile","site_detail_url":"https://comicvine.gamespot.com/junkpile/4005-41324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41369/","id":41369,"name":"Abattoir","site_detail_url":"https://comicvine.gamespot.com/abattoir/4005-41369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41418/","id":41418,"name":"Queen","site_detail_url":"https://comicvine.gamespot.com/queen/4005-41418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41459/","id":41459,"name":"Jason Voorhees","site_detail_url":"https://comicvine.gamespot.com/jason-voorhees/4005-41459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41460/","id":41460,"name":"Freddy Krueger","site_detail_url":"https://comicvine.gamespot.com/freddy-krueger/4005-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41465/","id":41465,"name":"Pinhead","site_detail_url":"https://comicvine.gamespot.com/pinhead/4005-41465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41547/","id":41547,"name":"Goom","site_detail_url":"https://comicvine.gamespot.com/goom/4005-41547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41710/","id":41710,"name":"Reign","site_detail_url":"https://comicvine.gamespot.com/reign/4005-41710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41727/","id":41727,"name":"Bloodseed","site_detail_url":"https://comicvine.gamespot.com/bloodseed/4005-41727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41761/","id":41761,"name":"Kal Kent","site_detail_url":"https://comicvine.gamespot.com/kal-kent/4005-41761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41763/","id":41763,"name":"Klyzyzk Klzntplkz","site_detail_url":"https://comicvine.gamespot.com/klyzyzk-klzntplkz/4005-41763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41848/","id":41848,"name":"Amber Hunt","site_detail_url":"https://comicvine.gamespot.com/amber-hunt/4005-41848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42336/","id":42336,"name":"Pandemic","site_detail_url":"https://comicvine.gamespot.com/pandemic/4005-42336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42372/","id":42372,"name":"Lor-Zod","site_detail_url":"https://comicvine.gamespot.com/lor-zod/4005-42372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42690/","id":42690,"name":"M. Bison","site_detail_url":"https://comicvine.gamespot.com/m-bison/4005-42690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42798/","id":42798,"name":"Magician","site_detail_url":"https://comicvine.gamespot.com/magician/4005-42798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42859/","id":42859,"name":"Sosuke Aizen","site_detail_url":"https://comicvine.gamespot.com/sosuke-aizen/4005-42859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42875/","id":42875,"name":"Skyman","site_detail_url":"https://comicvine.gamespot.com/skyman/4005-42875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42951/","id":42951,"name":"Altwaal","site_detail_url":"https://comicvine.gamespot.com/altwaal/4005-42951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42957/","id":42957,"name":"Ervulsh","site_detail_url":"https://comicvine.gamespot.com/ervulsh/4005-42957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42962/","id":42962,"name":"Tulity","site_detail_url":"https://comicvine.gamespot.com/tulity/4005-42962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42966/","id":42966,"name":"Danik","site_detail_url":"https://comicvine.gamespot.com/danik/4005-42966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42974/","id":42974,"name":"Solusandra","site_detail_url":"https://comicvine.gamespot.com/solusandra/4005-42974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43025/","id":43025,"name":"Appolyon","site_detail_url":"https://comicvine.gamespot.com/appolyon/4005-43025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43086/","id":43086,"name":"Amy Madison","site_detail_url":"https://comicvine.gamespot.com/amy-madison/4005-43086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43230/","id":43230,"name":"Apox","site_detail_url":"https://comicvine.gamespot.com/apox/4005-43230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43256/","id":43256,"name":"Silver Deer","site_detail_url":"https://comicvine.gamespot.com/silver-deer/4005-43256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43269/","id":43269,"name":"Firebird","site_detail_url":"https://comicvine.gamespot.com/firebird/4005-43269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43310/","id":43310,"name":"Cade Skywalker","site_detail_url":"https://comicvine.gamespot.com/cade-skywalker/4005-43310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43345/","id":43345,"name":"Kamui Shirō","site_detail_url":"https://comicvine.gamespot.com/kamui-shiro/4005-43345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43353/","id":43353,"name":"Fuma Mono","site_detail_url":"https://comicvine.gamespot.com/fuma-mono/4005-43353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43365/","id":43365,"name":"Nataku","site_detail_url":"https://comicvine.gamespot.com/nataku/4005-43365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43666/","id":43666,"name":"Crystal Boy","site_detail_url":"https://comicvine.gamespot.com/crystal-boy/4005-43666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43736/","id":43736,"name":"Centrix","site_detail_url":"https://comicvine.gamespot.com/centrix/4005-43736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43746/","id":43746,"name":"Donovan Baine","site_detail_url":"https://comicvine.gamespot.com/donovan-baine/4005-43746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43869/","id":43869,"name":"Master Zhao","site_detail_url":"https://comicvine.gamespot.com/master-zhao/4005-43869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43889/","id":43889,"name":"Psycho-K","site_detail_url":"https://comicvine.gamespot.com/psycho-k/4005-43889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43915/","id":43915,"name":"Kenneth Irons","site_detail_url":"https://comicvine.gamespot.com/kenneth-irons/4005-43915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44101/","id":44101,"name":"Anakaris","site_detail_url":"https://comicvine.gamespot.com/anakaris/4005-44101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44104/","id":44104,"name":"Anita","site_detail_url":"https://comicvine.gamespot.com/anita/4005-44104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44136/","id":44136,"name":"Aku","site_detail_url":"https://comicvine.gamespot.com/aku/4005-44136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44153/","id":44153,"name":"Encantadora","site_detail_url":"https://comicvine.gamespot.com/encantadora/4005-44153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44337/","id":44337,"name":"Astarte","site_detail_url":"https://comicvine.gamespot.com/astarte/4005-44337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44583/","id":44583,"name":"Alucard","site_detail_url":"https://comicvine.gamespot.com/alucard/4005-44583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44658/","id":44658,"name":"Captain Planet","site_detail_url":"https://comicvine.gamespot.com/captain-planet/4005-44658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44794/","id":44794,"name":"Darth Bane","site_detail_url":"https://comicvine.gamespot.com/darth-bane/4005-44794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44809/","id":44809,"name":"Johnny Alpha","site_detail_url":"https://comicvine.gamespot.com/johnny-alpha/4005-44809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44844/","id":44844,"name":"Googam","site_detail_url":"https://comicvine.gamespot.com/googam/4005-44844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44937/","id":44937,"name":"Exitar the Exterminator","site_detail_url":"https://comicvine.gamespot.com/exitar-the-exterminator/4005-44937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45001/","id":45001,"name":"Pain","site_detail_url":"https://comicvine.gamespot.com/pain/4005-45001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45045/","id":45045,"name":"Tom Lennox","site_detail_url":"https://comicvine.gamespot.com/tom-lennox/4005-45045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45048/","id":45048,"name":"Rao","site_detail_url":"https://comicvine.gamespot.com/rao/4005-45048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45071/","id":45071,"name":"Sam Winchester","site_detail_url":"https://comicvine.gamespot.com/sam-winchester/4005-45071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45116/","id":45116,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4005-45116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45136/","id":45136,"name":"Seras Victoria","site_detail_url":"https://comicvine.gamespot.com/seras-victoria/4005-45136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45191/","id":45191,"name":"Gailyn Bailey","site_detail_url":"https://comicvine.gamespot.com/gailyn-bailey/4005-45191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45192/","id":45192,"name":"Joey Bailey","site_detail_url":"https://comicvine.gamespot.com/joey-bailey/4005-45192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45237/","id":45237,"name":"Cambria Kilgannon","site_detail_url":"https://comicvine.gamespot.com/cambria-kilgannon/4005-45237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45272/","id":45272,"name":"Ariella","site_detail_url":"https://comicvine.gamespot.com/ariella/4005-45272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45327/","id":45327,"name":"Lara-Su","site_detail_url":"https://comicvine.gamespot.com/lara-su/4005-45327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45339/","id":45339,"name":"Mammoth Mogul","site_detail_url":"https://comicvine.gamespot.com/mammoth-mogul/4005-45339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45361/","id":45361,"name":"Darth Maladi","site_detail_url":"https://comicvine.gamespot.com/darth-maladi/4005-45361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45363/","id":45363,"name":"Darth Talon","site_detail_url":"https://comicvine.gamespot.com/darth-talon/4005-45363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45364/","id":45364,"name":"Darth Krayt","site_detail_url":"https://comicvine.gamespot.com/darth-krayt/4005-45364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45368/","id":45368,"name":"Hiei","site_detail_url":"https://comicvine.gamespot.com/hiei/4005-45368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45380/","id":45380,"name":"Samarra Shaw","site_detail_url":"https://comicvine.gamespot.com/samarra-shaw/4005-45380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45402/","id":45402,"name":"Linda Danvers","site_detail_url":"https://comicvine.gamespot.com/linda-danvers/4005-45402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45469/","id":45469,"name":"Sesshomaru","site_detail_url":"https://comicvine.gamespot.com/sesshomaru/4005-45469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45528/","id":45528,"name":"Darth Nihl","site_detail_url":"https://comicvine.gamespot.com/darth-nihl/4005-45528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45573/","id":45573,"name":"Despotellis","site_detail_url":"https://comicvine.gamespot.com/despotellis/4005-45573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45574/","id":45574,"name":"Bedovian","site_detail_url":"https://comicvine.gamespot.com/bedovian/4005-45574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45576/","id":45576,"name":"Lyssa Drak","site_detail_url":"https://comicvine.gamespot.com/lyssa-drak/4005-45576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45590/","id":45590,"name":"Scotty Summers","site_detail_url":"https://comicvine.gamespot.com/scotty-summers/4005-45590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45611/","id":45611,"name":"Silver","site_detail_url":"https://comicvine.gamespot.com/silver/4005-45611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45621/","id":45621,"name":"Hybrid","site_detail_url":"https://comicvine.gamespot.com/hybrid/4005-45621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45648/","id":45648,"name":"Black Doom","site_detail_url":"https://comicvine.gamespot.com/black-doom/4005-45648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45676/","id":45676,"name":"Jetta","site_detail_url":"https://comicvine.gamespot.com/jetta/4005-45676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45702/","id":45702,"name":"Galaxy Master","site_detail_url":"https://comicvine.gamespot.com/galaxy-master/4005-45702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45719/","id":45719,"name":"Mr. Popo","site_detail_url":"https://comicvine.gamespot.com/mr-popo/4005-45719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45725/","id":45725,"name":"Wilhelm Ryan","site_detail_url":"https://comicvine.gamespot.com/wilhelm-ryan/4005-45725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45754/","id":45754,"name":"Mulholland","site_detail_url":"https://comicvine.gamespot.com/mulholland/4005-45754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45782/","id":45782,"name":"King Cold","site_detail_url":"https://comicvine.gamespot.com/king-cold/4005-45782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45800/","id":45800,"name":"Griffith","site_detail_url":"https://comicvine.gamespot.com/griffith/4005-45800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45896/","id":45896,"name":"Ford Prefect","site_detail_url":"https://comicvine.gamespot.com/ford-prefect/4005-45896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45936/","id":45936,"name":"Composite Superman","site_detail_url":"https://comicvine.gamespot.com/composite-superman/4005-45936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45959/","id":45959,"name":"Kiki","site_detail_url":"https://comicvine.gamespot.com/kiki/4005-45959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45960/","id":45960,"name":"Mu Gold Saint of Aries","site_detail_url":"https://comicvine.gamespot.com/mu-gold-saint-of-aries/4005-45960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46045/","id":46045,"name":"Suzaku","site_detail_url":"https://comicvine.gamespot.com/suzaku/4005-46045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46068/","id":46068,"name":"Thessaly","site_detail_url":"https://comicvine.gamespot.com/thessaly/4005-46068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46186/","id":46186,"name":"Tefral the Surveyor","site_detail_url":"https://comicvine.gamespot.com/tefral-the-surveyor/4005-46186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46191/","id":46191,"name":"Quake","site_detail_url":"https://comicvine.gamespot.com/quake/4005-46191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46197/","id":46197,"name":"Genkai","site_detail_url":"https://comicvine.gamespot.com/genkai/4005-46197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46210/","id":46210,"name":"Naraku","site_detail_url":"https://comicvine.gamespot.com/naraku/4005-46210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46231/","id":46231,"name":"Princess Zelda","site_detail_url":"https://comicvine.gamespot.com/princess-zelda/4005-46231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46246/","id":46246,"name":"Mindblast","site_detail_url":"https://comicvine.gamespot.com/mindblast/4005-46246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46472/","id":46472,"name":"Menthor","site_detail_url":"https://comicvine.gamespot.com/menthor/4005-46472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46519/","id":46519,"name":"Push","site_detail_url":"https://comicvine.gamespot.com/push/4005-46519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46678/","id":46678,"name":"Mindwave","site_detail_url":"https://comicvine.gamespot.com/mindwave/4005-46678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46726/","id":46726,"name":"Ban Mido","site_detail_url":"https://comicvine.gamespot.com/ban-mido/4005-46726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46761/","id":46761,"name":"Necromancer","site_detail_url":"https://comicvine.gamespot.com/necromancer/4005-46761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46809/","id":46809,"name":"Psychild","site_detail_url":"https://comicvine.gamespot.com/psychild/4005-46809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46841/","id":46841,"name":"Eson the Searcher","site_detail_url":"https://comicvine.gamespot.com/eson-the-searcher/4005-46841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46842/","id":46842,"name":"Devron the Experimenter","site_detail_url":"https://comicvine.gamespot.com/devron-the-experimenter/4005-46842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46844/","id":46844,"name":"Jemiah the Analyzer","site_detail_url":"https://comicvine.gamespot.com/jemiah-the-analyzer/4005-46844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46845/","id":46845,"name":"Hargen the Measurer","site_detail_url":"https://comicvine.gamespot.com/hargen-the-measurer/4005-46845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46923/","id":46923,"name":"Adjudicator","site_detail_url":"https://comicvine.gamespot.com/adjudicator/4005-46923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46930/","id":46930,"name":"Revan","site_detail_url":"https://comicvine.gamespot.com/revan/4005-46930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46931/","id":46931,"name":"Corran Horn","site_detail_url":"https://comicvine.gamespot.com/corran-horn/4005-46931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46932/","id":46932,"name":"Asajj Ventress","site_detail_url":"https://comicvine.gamespot.com/asajj-ventress/4005-46932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46940/","id":46940,"name":"Shaak Ti","site_detail_url":"https://comicvine.gamespot.com/shaak-ti/4005-46940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46941/","id":46941,"name":"Luminara Unduli","site_detail_url":"https://comicvine.gamespot.com/luminara-unduli/4005-46941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46955/","id":46955,"name":"Bogatyr","site_detail_url":"https://comicvine.gamespot.com/bogatyr/4005-46955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46958/","id":46958,"name":"Ecce","site_detail_url":"https://comicvine.gamespot.com/ecce/4005-46958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46959/","id":46959,"name":"Emnu","site_detail_url":"https://comicvine.gamespot.com/emnu/4005-46959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47000/","id":47000,"name":"Phenomena","site_detail_url":"https://comicvine.gamespot.com/phenomena/4005-47000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47062/","id":47062,"name":"Incubus","site_detail_url":"https://comicvine.gamespot.com/incubus/4005-47062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47301/","id":47301,"name":"Armek","site_detail_url":"https://comicvine.gamespot.com/armek/4005-47301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47314/","id":47314,"name":"Beck","site_detail_url":"https://comicvine.gamespot.com/beck/4005-47314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47394/","id":47394,"name":"Cornelia Hale","site_detail_url":"https://comicvine.gamespot.com/cornelia-hale/4005-47394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47395/","id":47395,"name":"Icon","site_detail_url":"https://comicvine.gamespot.com/icon/4005-47395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47400/","id":47400,"name":"Mermaid","site_detail_url":"https://comicvine.gamespot.com/mermaid/4005-47400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47425/","id":47425,"name":"Psyche","site_detail_url":"https://comicvine.gamespot.com/psyche/4005-47425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47625/","id":47625,"name":"Neo","site_detail_url":"https://comicvine.gamespot.com/neo/4005-47625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47679/","id":47679,"name":"Sylar","site_detail_url":"https://comicvine.gamespot.com/sylar/4005-47679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47744/","id":47744,"name":"Death Angel","site_detail_url":"https://comicvine.gamespot.com/death-angel/4005-47744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47803/","id":47803,"name":"Psi","site_detail_url":"https://comicvine.gamespot.com/psi/4005-47803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47848/","id":47848,"name":"The Séance","site_detail_url":"https://comicvine.gamespot.com/the-seance/4005-47848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47874/","id":47874,"name":"Darth Nihilus","site_detail_url":"https://comicvine.gamespot.com/darth-nihilus/4005-47874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47890/","id":47890,"name":"Visas Marr","site_detail_url":"https://comicvine.gamespot.com/visas-marr/4005-47890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47892/","id":47892,"name":"Darth Malak","site_detail_url":"https://comicvine.gamespot.com/darth-malak/4005-47892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47899/","id":47899,"name":"Ra","site_detail_url":"https://comicvine.gamespot.com/ra/4005-47899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47939/","id":47939,"name":"Jacen Solo","site_detail_url":"https://comicvine.gamespot.com/jacen-solo/4005-47939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47940/","id":47940,"name":"Jaina Solo","site_detail_url":"https://comicvine.gamespot.com/jaina-solo/4005-47940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47953/","id":47953,"name":"Kristen Wells","site_detail_url":"https://comicvine.gamespot.com/kristen-wells/4005-47953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47958/","id":47958,"name":"Psycho Mantis","site_detail_url":"https://comicvine.gamespot.com/psycho-mantis/4005-47958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47963/","id":47963,"name":"Joruus C'Baoth","site_detail_url":"https://comicvine.gamespot.com/joruus-cbaoth/4005-47963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47965/","id":47965,"name":"Kyp Durron","site_detail_url":"https://comicvine.gamespot.com/kyp-durron/4005-47965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48044/","id":48044,"name":"Ben Skywalker","site_detail_url":"https://comicvine.gamespot.com/ben-skywalker/4005-48044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48070/","id":48070,"name":"Roron Corobb","site_detail_url":"https://comicvine.gamespot.com/roron-corobb/4005-48070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48078/","id":48078,"name":"Saint Anna","site_detail_url":"https://comicvine.gamespot.com/saint-anna/4005-48078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48231/","id":48231,"name":"Psi-Storm","site_detail_url":"https://comicvine.gamespot.com/psi-storm/4005-48231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48287/","id":48287,"name":"Kyle Katarn","site_detail_url":"https://comicvine.gamespot.com/kyle-katarn/4005-48287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48315/","id":48315,"name":"Gorc","site_detail_url":"https://comicvine.gamespot.com/gorc/4005-48315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48316/","id":48316,"name":"Pic","site_detail_url":"https://comicvine.gamespot.com/pic/4005-48316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48317/","id":48317,"name":"Lowbacca","site_detail_url":"https://comicvine.gamespot.com/lowbacca/4005-48317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48318/","id":48318,"name":"Barriss Offee","site_detail_url":"https://comicvine.gamespot.com/barriss-offee/4005-48318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48394/","id":48394,"name":"Siri Tachi","site_detail_url":"https://comicvine.gamespot.com/siri-tachi/4005-48394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48395/","id":48395,"name":"Vandar Tokare","site_detail_url":"https://comicvine.gamespot.com/vandar-tokare/4005-48395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48453/","id":48453,"name":"Hastur","site_detail_url":"https://comicvine.gamespot.com/hastur/4005-48453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48501/","id":48501,"name":"Tsui Choi","site_detail_url":"https://comicvine.gamespot.com/tsui-choi/4005-48501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48503/","id":48503,"name":"Nyarlathotep","site_detail_url":"https://comicvine.gamespot.com/nyarlathotep/4005-48503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48589/","id":48589,"name":"Stryyp'Gia","site_detail_url":"https://comicvine.gamespot.com/stryypgia/4005-48589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48596/","id":48596,"name":"Tetsuo","site_detail_url":"https://comicvine.gamespot.com/tetsuo/4005-48596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48629/","id":48629,"name":"Yankee Poodle","site_detail_url":"https://comicvine.gamespot.com/yankee-poodle/4005-48629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48651/","id":48651,"name":"Switchfast","site_detail_url":"https://comicvine.gamespot.com/switchfast/4005-48651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48658/","id":48658,"name":"Thanoseid","site_detail_url":"https://comicvine.gamespot.com/thanoseid/4005-48658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48662/","id":48662,"name":"Galactiac","site_detail_url":"https://comicvine.gamespot.com/galactiac/4005-48662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48768/","id":48768,"name":"Saga Gold Saint of Gemini","site_detail_url":"https://comicvine.gamespot.com/saga-gold-saint-of-gemini/4005-48768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48780/","id":48780,"name":"Exar Kun","site_detail_url":"https://comicvine.gamespot.com/exar-kun/4005-48780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48834/","id":48834,"name":"Rey Yan","site_detail_url":"https://comicvine.gamespot.com/rey-yan/4005-48834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48864/","id":48864,"name":"Kenshiro","site_detail_url":"https://comicvine.gamespot.com/kenshiro/4005-48864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48932/","id":48932,"name":"Sakura","site_detail_url":"https://comicvine.gamespot.com/sakura/4005-48932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48984/","id":48984,"name":"Camus Gold Saint of Aquarius","site_detail_url":"https://comicvine.gamespot.com/camus-gold-saint-of-aquarius/4005-48984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49020/","id":49020,"name":"Geralt of Rivia","site_detail_url":"https://comicvine.gamespot.com/geralt-of-rivia/4005-49020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49070/","id":49070,"name":"Nix Uotan","site_detail_url":"https://comicvine.gamespot.com/nix-uotan/4005-49070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49094/","id":49094,"name":"Charmcaster","site_detail_url":"https://comicvine.gamespot.com/charmcaster/4005-49094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49105/","id":49105,"name":"Cheyenne Freemont","site_detail_url":"https://comicvine.gamespot.com/cheyenne-freemont/4005-49105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49157/","id":49157,"name":"Lina Inverse","site_detail_url":"https://comicvine.gamespot.com/lina-inverse/4005-49157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49203/","id":49203,"name":"Cosmo","site_detail_url":"https://comicvine.gamespot.com/cosmo/4005-49203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49418/","id":49418,"name":"Belldandy","site_detail_url":"https://comicvine.gamespot.com/belldandy/4005-49418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49421/","id":49421,"name":"Raven Hex","site_detail_url":"https://comicvine.gamespot.com/raven-hex/4005-49421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49430/","id":49430,"name":"Shao Kahn","site_detail_url":"https://comicvine.gamespot.com/shao-kahn/4005-49430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49470/","id":49470,"name":"Lament","site_detail_url":"https://comicvine.gamespot.com/lament/4005-49470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49503/","id":49503,"name":"Doc Magus","site_detail_url":"https://comicvine.gamespot.com/doc-magus/4005-49503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49557/","id":49557,"name":"Gideon Wyeth","site_detail_url":"https://comicvine.gamespot.com/gideon-wyeth/4005-49557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49602/","id":49602,"name":"Galen Marek","site_detail_url":"https://comicvine.gamespot.com/galen-marek/4005-49602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49603/","id":49603,"name":"Maris Brood","site_detail_url":"https://comicvine.gamespot.com/maris-brood/4005-49603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49687/","id":49687,"name":"Ghr'll","site_detail_url":"https://comicvine.gamespot.com/ghrll/4005-49687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49688/","id":49688,"name":"Xylpth","site_detail_url":"https://comicvine.gamespot.com/xylpth/4005-49688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49732/","id":49732,"name":"Symon Terrynce","site_detail_url":"https://comicvine.gamespot.com/symon-terrynce/4005-49732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49767/","id":49767,"name":"Supreme Kai","site_detail_url":"https://comicvine.gamespot.com/supreme-kai/4005-49767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49791/","id":49791,"name":"Azazel","site_detail_url":"https://comicvine.gamespot.com/azazel/4005-49791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49887/","id":49887,"name":"Xemnas","site_detail_url":"https://comicvine.gamespot.com/xemnas/4005-49887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49956/","id":49956,"name":"Arisa","site_detail_url":"https://comicvine.gamespot.com/arisa/4005-49956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50069/","id":50069,"name":"Bass.EXE","site_detail_url":"https://comicvine.gamespot.com/bassexe/4005-50069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50157/","id":50157,"name":"Quiz","site_detail_url":"https://comicvine.gamespot.com/quiz/4005-50157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50222/","id":50222,"name":"Torso","site_detail_url":"https://comicvine.gamespot.com/torso/4005-50222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50248/","id":50248,"name":"Forsa","site_detail_url":"https://comicvine.gamespot.com/forsa/4005-50248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50359/","id":50359,"name":"Matrix","site_detail_url":"https://comicvine.gamespot.com/matrix/4005-50359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50391/","id":50391,"name":"Shendu","site_detail_url":"https://comicvine.gamespot.com/shendu/4005-50391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50411/","id":50411,"name":"Blackarachnia","site_detail_url":"https://comicvine.gamespot.com/blackarachnia/4005-50411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50482/","id":50482,"name":"Sailor Moon","site_detail_url":"https://comicvine.gamespot.com/sailor-moon/4005-50482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50623/","id":50623,"name":"Laurel Darkhaven","site_detail_url":"https://comicvine.gamespot.com/laurel-darkhaven/4005-50623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50670/","id":50670,"name":"Tuxedo Mask","site_detail_url":"https://comicvine.gamespot.com/tuxedo-mask/4005-50670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50787/","id":50787,"name":"Tubalcain Alhambra","site_detail_url":"https://comicvine.gamespot.com/tubalcain-alhambra/4005-50787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50791/","id":50791,"name":"Trauma","site_detail_url":"https://comicvine.gamespot.com/trauma/4005-50791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50884/","id":50884,"name":"Zayne Carrick","site_detail_url":"https://comicvine.gamespot.com/zayne-carrick/4005-50884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50885/","id":50885,"name":"Lucien Draay","site_detail_url":"https://comicvine.gamespot.com/lucien-draay/4005-50885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50886/","id":50886,"name":"Celeste Morne","site_detail_url":"https://comicvine.gamespot.com/celeste-morne/4005-50886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50899/","id":50899,"name":"Darna","site_detail_url":"https://comicvine.gamespot.com/darna/4005-50899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50907/","id":50907,"name":"Feln","site_detail_url":"https://comicvine.gamespot.com/feln/4005-50907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50916/","id":50916,"name":"Billy Challas","site_detail_url":"https://comicvine.gamespot.com/billy-challas/4005-50916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51006/","id":51006,"name":"Quarzz Teranh","site_detail_url":"https://comicvine.gamespot.com/quarzz-teranh/4005-51006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51098/","id":51098,"name":"Ry'Lor","site_detail_url":"https://comicvine.gamespot.com/rylor/4005-51098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51121/","id":51121,"name":"Babidi","site_detail_url":"https://comicvine.gamespot.com/babidi/4005-51121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51287/","id":51287,"name":"Q'Anilia","site_detail_url":"https://comicvine.gamespot.com/qanilia/4005-51287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51289/","id":51289,"name":"Gharn","site_detail_url":"https://comicvine.gamespot.com/gharn/4005-51289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51291/","id":51291,"name":"Krynda Draay","site_detail_url":"https://comicvine.gamespot.com/krynda-draay/4005-51291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51296/","id":51296,"name":"Demagol","site_detail_url":"https://comicvine.gamespot.com/demagol/4005-51296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51298/","id":51298,"name":"Joann","site_detail_url":"https://comicvine.gamespot.com/joann/4005-51298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51322/","id":51322,"name":"Aries","site_detail_url":"https://comicvine.gamespot.com/aries/4005-51322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51438/","id":51438,"name":"Zhar Lestin","site_detail_url":"https://comicvine.gamespot.com/zhar-lestin/4005-51438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51448/","id":51448,"name":"Randall Flagg","site_detail_url":"https://comicvine.gamespot.com/randall-flagg/4005-51448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51464/","id":51464,"name":"Keroberos","site_detail_url":"https://comicvine.gamespot.com/keroberos/4005-51464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51553/","id":51553,"name":"Max Faraday","site_detail_url":"https://comicvine.gamespot.com/max-faraday/4005-51553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51582/","id":51582,"name":"Rainbow Girl","site_detail_url":"https://comicvine.gamespot.com/rainbow-girl/4005-51582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51609/","id":51609,"name":"Carnor Jax","site_detail_url":"https://comicvine.gamespot.com/carnor-jax/4005-51609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51617/","id":51617,"name":"Jin Kazama","site_detail_url":"https://comicvine.gamespot.com/jin-kazama/4005-51617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51641/","id":51641,"name":"Marianne Rodgers","site_detail_url":"https://comicvine.gamespot.com/marianne-rodgers/4005-51641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51672/","id":51672,"name":"Foul Moudama","site_detail_url":"https://comicvine.gamespot.com/foul-moudama/4005-51672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51673/","id":51673,"name":"Coleman Trebor","site_detail_url":"https://comicvine.gamespot.com/coleman-trebor/4005-51673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51674/","id":51674,"name":"Odan-Urr","site_detail_url":"https://comicvine.gamespot.com/odan-urr/4005-51674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51676/","id":51676,"name":"Naga Sadow","site_detail_url":"https://comicvine.gamespot.com/naga-sadow/4005-51676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51707/","id":51707,"name":"Boc","site_detail_url":"https://comicvine.gamespot.com/boc/4005-51707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51752/","id":51752,"name":"Gravel","site_detail_url":"https://comicvine.gamespot.com/gravel/4005-51752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51779/","id":51779,"name":"Luuke Skywalker","site_detail_url":"https://comicvine.gamespot.com/luuke-skywalker/4005-51779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51781/","id":51781,"name":"Sora Bulq","site_detail_url":"https://comicvine.gamespot.com/sora-bulq/4005-51781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51828/","id":51828,"name":"Jerec","site_detail_url":"https://comicvine.gamespot.com/jerec/4005-51828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51848/","id":51848,"name":"Maw","site_detail_url":"https://comicvine.gamespot.com/maw/4005-51848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51850/","id":51850,"name":"Sariss","site_detail_url":"https://comicvine.gamespot.com/sariss/4005-51850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51851/","id":51851,"name":"Yun","site_detail_url":"https://comicvine.gamespot.com/yun/4005-51851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51883/","id":51883,"name":"Gaze","site_detail_url":"https://comicvine.gamespot.com/gaze/4005-51883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51950/","id":51950,"name":"Darth Plagueis","site_detail_url":"https://comicvine.gamespot.com/darth-plagueis/4005-51950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52048/","id":52048,"name":"Qu Rahn","site_detail_url":"https://comicvine.gamespot.com/qu-rahn/4005-52048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52291/","id":52291,"name":"Nebethet","site_detail_url":"https://comicvine.gamespot.com/nebethet/4005-52291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52302/","id":52302,"name":"Cell Jr.","site_detail_url":"https://comicvine.gamespot.com/cell-jr/4005-52302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52321/","id":52321,"name":"Man of Miracles","site_detail_url":"https://comicvine.gamespot.com/man-of-miracles/4005-52321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52514/","id":52514,"name":"Lift","site_detail_url":"https://comicvine.gamespot.com/lift/4005-52514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52704/","id":52704,"name":"Darth Andeddu","site_detail_url":"https://comicvine.gamespot.com/darth-andeddu/4005-52704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52705/","id":52705,"name":"Darth Azard","site_detail_url":"https://comicvine.gamespot.com/darth-azard/4005-52705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52708/","id":52708,"name":"Darth Maleval","site_detail_url":"https://comicvine.gamespot.com/darth-maleval/4005-52708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52716/","id":52716,"name":"Papa Midnite","site_detail_url":"https://comicvine.gamespot.com/papa-midnite/4005-52716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52813/","id":52813,"name":"Violet Parr","site_detail_url":"https://comicvine.gamespot.com/violet-parr/4005-52813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52818/","id":52818,"name":"Jaster Mereel","site_detail_url":"https://comicvine.gamespot.com/jaster-mereel/4005-52818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52885/","id":52885,"name":"The Emissary","site_detail_url":"https://comicvine.gamespot.com/the-emissary/4005-52885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52898/","id":52898,"name":"Azazel","site_detail_url":"https://comicvine.gamespot.com/azazel/4005-52898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52901/","id":52901,"name":"Bookwurm","site_detail_url":"https://comicvine.gamespot.com/bookwurm/4005-52901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52937/","id":52937,"name":"Sorcerer","site_detail_url":"https://comicvine.gamespot.com/sorcerer/4005-52937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52969/","id":52969,"name":"Ghirretur","site_detail_url":"https://comicvine.gamespot.com/ghirretur/4005-52969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53007/","id":53007,"name":"Minity","site_detail_url":"https://comicvine.gamespot.com/minity/4005-53007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53009/","id":53009,"name":"Magin","site_detail_url":"https://comicvine.gamespot.com/magin/4005-53009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53010/","id":53010,"name":"Mharrut","site_detail_url":"https://comicvine.gamespot.com/mharrut/4005-53010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53013/","id":53013,"name":"Syeniess","site_detail_url":"https://comicvine.gamespot.com/syeniess/4005-53013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53029/","id":53029,"name":"Reash","site_detail_url":"https://comicvine.gamespot.com/reash/4005-53029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53037/","id":53037,"name":"Indorienne","site_detail_url":"https://comicvine.gamespot.com/indorienne/4005-53037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53097/","id":53097,"name":"Black Halo","site_detail_url":"https://comicvine.gamespot.com/black-halo/4005-53097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53220/","id":53220,"name":"The Vampire Lestat","site_detail_url":"https://comicvine.gamespot.com/the-vampire-lestat/4005-53220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53237/","id":53237,"name":"Telekinesis","site_detail_url":"https://comicvine.gamespot.com/telekinesis/4005-53237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53244/","id":53244,"name":"Master Roshi","site_detail_url":"https://comicvine.gamespot.com/master-roshi/4005-53244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53299/","id":53299,"name":"Vicki","site_detail_url":"https://comicvine.gamespot.com/vicki/4005-53299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53309/","id":53309,"name":"Kenshi","site_detail_url":"https://comicvine.gamespot.com/kenshi/4005-53309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53335/","id":53335,"name":"Osiris","site_detail_url":"https://comicvine.gamespot.com/osiris/4005-53335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53394/","id":53394,"name":"Master Sev","site_detail_url":"https://comicvine.gamespot.com/master-sev/4005-53394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53403/","id":53403,"name":"Darth Wyyrlok","site_detail_url":"https://comicvine.gamespot.com/darth-wyyrlok/4005-53403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53411/","id":53411,"name":"The Brothers Yin and Yang","site_detail_url":"https://comicvine.gamespot.com/the-brothers-yin-and-yang/4005-53411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53502/","id":53502,"name":"Mewtwo","site_detail_url":"https://comicvine.gamespot.com/mewtwo/4005-53502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53601/","id":53601,"name":"Komari Vosa","site_detail_url":"https://comicvine.gamespot.com/komari-vosa/4005-53601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53638/","id":53638,"name":"Mew","site_detail_url":"https://comicvine.gamespot.com/mew/4005-53638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53646/","id":53646,"name":"Kiyoko","site_detail_url":"https://comicvine.gamespot.com/kiyoko/4005-53646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53647/","id":53647,"name":"Masaru","site_detail_url":"https://comicvine.gamespot.com/masaru/4005-53647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53648/","id":53648,"name":"Akira","site_detail_url":"https://comicvine.gamespot.com/akira/4005-53648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53674/","id":53674,"name":"Chatterer","site_detail_url":"https://comicvine.gamespot.com/chatterer/4005-53674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53746/","id":53746,"name":"Koffi Arana","site_detail_url":"https://comicvine.gamespot.com/koffi-arana/4005-53746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53771/","id":53771,"name":"Bultar Swan","site_detail_url":"https://comicvine.gamespot.com/bultar-swan/4005-53771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53915/","id":53915,"name":"Roblio Darte","site_detail_url":"https://comicvine.gamespot.com/roblio-darte/4005-53915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53921/","id":53921,"name":"Sia-Lan Wezz","site_detail_url":"https://comicvine.gamespot.com/sia-lan-wezz/4005-53921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53932/","id":53932,"name":"Jastus Farr","site_detail_url":"https://comicvine.gamespot.com/jastus-farr/4005-53932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53985/","id":53985,"name":"Bedlam","site_detail_url":"https://comicvine.gamespot.com/bedlam/4005-53985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54020/","id":54020,"name":"Ma'Kis' Shaalas","site_detail_url":"https://comicvine.gamespot.com/makis-shaalas/4005-54020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54023/","id":54023,"name":"Shadday Potkin","site_detail_url":"https://comicvine.gamespot.com/shadday-potkin/4005-54023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54049/","id":54049,"name":"KK","site_detail_url":"https://comicvine.gamespot.com/kk/4005-54049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54051/","id":54051,"name":"Connor","site_detail_url":"https://comicvine.gamespot.com/connor/4005-54051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54056/","id":54056,"name":"Sirkka","site_detail_url":"https://comicvine.gamespot.com/sirkka/4005-54056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54060/","id":54060,"name":"Primus","site_detail_url":"https://comicvine.gamespot.com/primus/4005-54060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54105/","id":54105,"name":"Adahm","site_detail_url":"https://comicvine.gamespot.com/adahm/4005-54105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54114/","id":54114,"name":"Daedalus","site_detail_url":"https://comicvine.gamespot.com/daedalus/4005-54114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54211/","id":54211,"name":"Arkady","site_detail_url":"https://comicvine.gamespot.com/arkady/4005-54211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54212/","id":54212,"name":"Think Tank","site_detail_url":"https://comicvine.gamespot.com/think-tank/4005-54212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54244/","id":54244,"name":"Jack-Jack","site_detail_url":"https://comicvine.gamespot.com/jack-jack/4005-54244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54350/","id":54350,"name":"Jirachi","site_detail_url":"https://comicvine.gamespot.com/jirachi/4005-54350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54486/","id":54486,"name":"Karl","site_detail_url":"https://comicvine.gamespot.com/karl/4005-54486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54507/","id":54507,"name":"Luke","site_detail_url":"https://comicvine.gamespot.com/luke/4005-54507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54532/","id":54532,"name":"T'ra Saa","site_detail_url":"https://comicvine.gamespot.com/tra-saa/4005-54532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54563/","id":54563,"name":"Zebra Man","site_detail_url":"https://comicvine.gamespot.com/zebra-man/4005-54563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54713/","id":54713,"name":"Zen","site_detail_url":"https://comicvine.gamespot.com/zen/4005-54713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54717/","id":54717,"name":"Tarsem Vox","site_detail_url":"https://comicvine.gamespot.com/tarsem-vox/4005-54717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54810/","id":54810,"name":"Wolfie Smith","site_detail_url":"https://comicvine.gamespot.com/wolfie-smith/4005-54810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54816/","id":54816,"name":"Sakurai Hiroto","site_detail_url":"https://comicvine.gamespot.com/sakurai-hiroto/4005-54816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54904/","id":54904,"name":"Genie","site_detail_url":"https://comicvine.gamespot.com/genie/4005-54904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54973/","id":54973,"name":"Latios","site_detail_url":"https://comicvine.gamespot.com/latios/4005-54973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55028/","id":55028,"name":"Ahsoka Tano","site_detail_url":"https://comicvine.gamespot.com/ahsoka-tano/4005-55028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55057/","id":55057,"name":"Latias","site_detail_url":"https://comicvine.gamespot.com/latias/4005-55057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55071/","id":55071,"name":"Skull Man","site_detail_url":"https://comicvine.gamespot.com/skull-man/4005-55071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55171/","id":55171,"name":"Dreamweaver","site_detail_url":"https://comicvine.gamespot.com/dreamweaver/4005-55171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55329/","id":55329,"name":"Mr X","site_detail_url":"https://comicvine.gamespot.com/mr-x/4005-55329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55398/","id":55398,"name":"Green Lantern of Hykraius","site_detail_url":"https://comicvine.gamespot.com/green-lantern-of-hykraius/4005-55398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55490/","id":55490,"name":"Q","site_detail_url":"https://comicvine.gamespot.com/q/4005-55490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55514/","id":55514,"name":"Puller","site_detail_url":"https://comicvine.gamespot.com/puller/4005-55514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55516/","id":55516,"name":"Pusher","site_detail_url":"https://comicvine.gamespot.com/pusher/4005-55516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55567/","id":55567,"name":"Fay","site_detail_url":"https://comicvine.gamespot.com/fay/4005-55567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55570/","id":55570,"name":"Tyffix","site_detail_url":"https://comicvine.gamespot.com/tyffix/4005-55570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55571/","id":55571,"name":"Tyr","site_detail_url":"https://comicvine.gamespot.com/tyr/4005-55571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55572/","id":55572,"name":"Pix","site_detail_url":"https://comicvine.gamespot.com/pix/4005-55572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55587/","id":55587,"name":"Ulic Qel-Droma","site_detail_url":"https://comicvine.gamespot.com/ulic-qel-droma/4005-55587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55607/","id":55607,"name":"March Hare","site_detail_url":"https://comicvine.gamespot.com/march-hare/4005-55607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55636/","id":55636,"name":"Clow Reed","site_detail_url":"https://comicvine.gamespot.com/clow-reed/4005-55636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55662/","id":55662,"name":"Sion Saint of Aries","site_detail_url":"https://comicvine.gamespot.com/sion-saint-of-aries/4005-55662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55704/","id":55704,"name":"Tohno","site_detail_url":"https://comicvine.gamespot.com/tohno/4005-55704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55734/","id":55734,"name":"Phenix","site_detail_url":"https://comicvine.gamespot.com/phenix/4005-55734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55739/","id":55739,"name":"Forcewave","site_detail_url":"https://comicvine.gamespot.com/forcewave/4005-55739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55794/","id":55794,"name":"Mandalore the Ultimate","site_detail_url":"https://comicvine.gamespot.com/mandalore-the-ultimate/4005-55794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55806/","id":55806,"name":"Gwen Tennyson","site_detail_url":"https://comicvine.gamespot.com/gwen-tennyson/4005-55806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55845/","id":55845,"name":"Amenadiel","site_detail_url":"https://comicvine.gamespot.com/amenadiel/4005-55845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55869/","id":55869,"name":"Greed","site_detail_url":"https://comicvine.gamespot.com/greed/4005-55869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55883/","id":55883,"name":"Jadeite","site_detail_url":"https://comicvine.gamespot.com/jadeite/4005-55883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56030/","id":56030,"name":"Elyon Brown","site_detail_url":"https://comicvine.gamespot.com/elyon-brown/4005-56030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56060/","id":56060,"name":"Cedric","site_detail_url":"https://comicvine.gamespot.com/cedric/4005-56060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56072/","id":56072,"name":"First Fallen","site_detail_url":"https://comicvine.gamespot.com/first-fallen/4005-56072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56081/","id":56081,"name":"Kanon of Sea Dragon","site_detail_url":"https://comicvine.gamespot.com/kanon-of-sea-dragon/4005-56081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56091/","id":56091,"name":"Minos of Griffin","site_detail_url":"https://comicvine.gamespot.com/minos-of-griffin/4005-56091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56106/","id":56106,"name":"Dial H.U.S.K.","site_detail_url":"https://comicvine.gamespot.com/dial-husk/4005-56106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56144/","id":56144,"name":"Miyu of Butterfly","site_detail_url":"https://comicvine.gamespot.com/miyu-of-butterfly/4005-56144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56197/","id":56197,"name":"Sadako Yamamura","site_detail_url":"https://comicvine.gamespot.com/sadako-yamamura/4005-56197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56255/","id":56255,"name":"Alfie O'Meagan","site_detail_url":"https://comicvine.gamespot.com/alfie-omeagan/4005-56255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56272/","id":56272,"name":"Targa","site_detail_url":"https://comicvine.gamespot.com/targa/4005-56272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56279/","id":56279,"name":"Jesus Christ","site_detail_url":"https://comicvine.gamespot.com/jesus-christ/4005-56279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56293/","id":56293,"name":"King Kai","site_detail_url":"https://comicvine.gamespot.com/king-kai/4005-56293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56308/","id":56308,"name":"Goblin Force","site_detail_url":"https://comicvine.gamespot.com/goblin-force/4005-56308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56314/","id":56314,"name":"Yua","site_detail_url":"https://comicvine.gamespot.com/yua/4005-56314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56320/","id":56320,"name":"Bastila Shan","site_detail_url":"https://comicvine.gamespot.com/bastila-shan/4005-56320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56325/","id":56325,"name":"Silent Dragon","site_detail_url":"https://comicvine.gamespot.com/silent-dragon/4005-56325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56347/","id":56347,"name":"Raziel","site_detail_url":"https://comicvine.gamespot.com/raziel/4005-56347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56348/","id":56348,"name":"Kain","site_detail_url":"https://comicvine.gamespot.com/kain/4005-56348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56355/","id":56355,"name":"Sigel Dare","site_detail_url":"https://comicvine.gamespot.com/sigel-dare/4005-56355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56356/","id":56356,"name":"Darth Stryfe","site_detail_url":"https://comicvine.gamespot.com/darth-stryfe/4005-56356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56392/","id":56392,"name":"Ron Stoppable","site_detail_url":"https://comicvine.gamespot.com/ron-stoppable/4005-56392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56445/","id":56445,"name":"Qabiri","site_detail_url":"https://comicvine.gamespot.com/qabiri/4005-56445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56475/","id":56475,"name":"Dass Jennir","site_detail_url":"https://comicvine.gamespot.com/dass-jennir/4005-56475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56494/","id":56494,"name":"Calumon","site_detail_url":"https://comicvine.gamespot.com/calumon/4005-56494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56522/","id":56522,"name":"Miss Sinister","site_detail_url":"https://comicvine.gamespot.com/miss-sinister/4005-56522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56601/","id":56601,"name":"Herupa Hando Hu","site_detail_url":"https://comicvine.gamespot.com/herupa-hando-hu/4005-56601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56602/","id":56602,"name":"Dawlakispokpok","site_detail_url":"https://comicvine.gamespot.com/dawlakispokpok/4005-56602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56627/","id":56627,"name":"Damien Darhk","site_detail_url":"https://comicvine.gamespot.com/damien-darhk/4005-56627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56693/","id":56693,"name":"Scar","site_detail_url":"https://comicvine.gamespot.com/scar/4005-56693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56750/","id":56750,"name":"Olivia Reynolds","site_detail_url":"https://comicvine.gamespot.com/olivia-reynolds/4005-56750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56767/","id":56767,"name":"Eddie Deacon","site_detail_url":"https://comicvine.gamespot.com/eddie-deacon/4005-56767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56768/","id":56768,"name":"Doctor Gotham","site_detail_url":"https://comicvine.gamespot.com/doctor-gotham/4005-56768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56843/","id":56843,"name":"Agen Kolar","site_detail_url":"https://comicvine.gamespot.com/agen-kolar/4005-56843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56932/","id":56932,"name":"Embargo","site_detail_url":"https://comicvine.gamespot.com/embargo/4005-56932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56957/","id":56957,"name":"Road","site_detail_url":"https://comicvine.gamespot.com/road/4005-56957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57024/","id":57024,"name":"Rahm Kota","site_detail_url":"https://comicvine.gamespot.com/rahm-kota/4005-57024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57083/","id":57083,"name":"Athena Voltaire","site_detail_url":"https://comicvine.gamespot.com/athena-voltaire/4005-57083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57099/","id":57099,"name":"Godstalker","site_detail_url":"https://comicvine.gamespot.com/godstalker/4005-57099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57119/","id":57119,"name":"Ronhar Kim","site_detail_url":"https://comicvine.gamespot.com/ronhar-kim/4005-57119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57122/","id":57122,"name":"Firebird","site_detail_url":"https://comicvine.gamespot.com/firebird/4005-57122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57134/","id":57134,"name":"Wired","site_detail_url":"https://comicvine.gamespot.com/wired/4005-57134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57167/","id":57167,"name":"Nerissa","site_detail_url":"https://comicvine.gamespot.com/nerissa/4005-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57181/","id":57181,"name":"Kadma","site_detail_url":"https://comicvine.gamespot.com/kadma/4005-57181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57215/","id":57215,"name":"DevilDog","site_detail_url":"https://comicvine.gamespot.com/devildog/4005-57215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57216/","id":57216,"name":"Seer Ruggle","site_detail_url":"https://comicvine.gamespot.com/seer-ruggle/4005-57216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57217/","id":57217,"name":"Borialosaurus","site_detail_url":"https://comicvine.gamespot.com/borialosaurus/4005-57217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57218/","id":57218,"name":"Braach","site_detail_url":"https://comicvine.gamespot.com/braach/4005-57218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57219/","id":57219,"name":"Scivor","site_detail_url":"https://comicvine.gamespot.com/scivor/4005-57219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57301/","id":57301,"name":"Liege Maximo","site_detail_url":"https://comicvine.gamespot.com/liege-maximo/4005-57301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57306/","id":57306,"name":"Aginar","site_detail_url":"https://comicvine.gamespot.com/aginar/4005-57306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57364/","id":57364,"name":"Horde Prime","site_detail_url":"https://comicvine.gamespot.com/horde-prime/4005-57364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57490/","id":57490,"name":"Scathan the Approver","site_detail_url":"https://comicvine.gamespot.com/scathan-the-approver/4005-57490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57712/","id":57712,"name":"Psionics","site_detail_url":"https://comicvine.gamespot.com/psionics/4005-57712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57794/","id":57794,"name":"The Stormbringer","site_detail_url":"https://comicvine.gamespot.com/the-stormbringer/4005-57794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57851/","id":57851,"name":"Saber","site_detail_url":"https://comicvine.gamespot.com/saber/4005-57851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57864/","id":57864,"name":"Harry Dresden","site_detail_url":"https://comicvine.gamespot.com/harry-dresden/4005-57864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57876/","id":57876,"name":"Xiaan Amersu","site_detail_url":"https://comicvine.gamespot.com/xiaan-amersu/4005-57876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57907/","id":57907,"name":"K'Kruhk","site_detail_url":"https://comicvine.gamespot.com/kkruhk/4005-57907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57930/","id":57930,"name":"Sian Jeisel","site_detail_url":"https://comicvine.gamespot.com/sian-jeisel/4005-57930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57962/","id":57962,"name":"The Crimson King","site_detail_url":"https://comicvine.gamespot.com/the-crimson-king/4005-57962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58222/","id":58222,"name":"Dark Nebula","site_detail_url":"https://comicvine.gamespot.com/dark-nebula/4005-58222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58243/","id":58243,"name":"Uub","site_detail_url":"https://comicvine.gamespot.com/uub/4005-58243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58250/","id":58250,"name":"God of the Dead","site_detail_url":"https://comicvine.gamespot.com/god-of-the-dead/4005-58250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58326/","id":58326,"name":"Arthur Petrelli","site_detail_url":"https://comicvine.gamespot.com/arthur-petrelli/4005-58326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58346/","id":58346,"name":"Lazarus","site_detail_url":"https://comicvine.gamespot.com/lazarus/4005-58346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58372/","id":58372,"name":"Pristine","site_detail_url":"https://comicvine.gamespot.com/pristine/4005-58372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58387/","id":58387,"name":"Ultra-Sphinx","site_detail_url":"https://comicvine.gamespot.com/ultra-sphinx/4005-58387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58392/","id":58392,"name":"Salkor","site_detail_url":"https://comicvine.gamespot.com/salkor/4005-58392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58397/","id":58397,"name":"Drake Lo'gaan","site_detail_url":"https://comicvine.gamespot.com/drake-logaan/4005-58397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58399/","id":58399,"name":"Inquisitor Tremayne","site_detail_url":"https://comicvine.gamespot.com/inquisitor-tremayne/4005-58399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58405/","id":58405,"name":"Ekria","site_detail_url":"https://comicvine.gamespot.com/ekria/4005-58405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58448/","id":58448,"name":"Queen of Blades","site_detail_url":"https://comicvine.gamespot.com/queen-of-blades/4005-58448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58460/","id":58460,"name":"Glacius","site_detail_url":"https://comicvine.gamespot.com/glacius/4005-58460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58465/","id":58465,"name":"La Bruja en las Paredes","site_detail_url":"https://comicvine.gamespot.com/la-bruja-en-las-paredes/4005-58465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58474/","id":58474,"name":"Zonder","site_detail_url":"https://comicvine.gamespot.com/zonder/4005-58474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58600/","id":58600,"name":"General Blue","site_detail_url":"https://comicvine.gamespot.com/general-blue/4005-58600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58630/","id":58630,"name":"Agent Carver","site_detail_url":"https://comicvine.gamespot.com/agent-carver/4005-58630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58678/","id":58678,"name":"Templar","site_detail_url":"https://comicvine.gamespot.com/templar/4005-58678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58708/","id":58708,"name":"Kol Skywalker","site_detail_url":"https://comicvine.gamespot.com/kol-skywalker/4005-58708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58732/","id":58732,"name":"Yomiko Readman","site_detail_url":"https://comicvine.gamespot.com/yomiko-readman/4005-58732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58826/","id":58826,"name":"Time Traveler","site_detail_url":"https://comicvine.gamespot.com/time-traveler/4005-58826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59028/","id":59028,"name":"Diana Lombard","site_detail_url":"https://comicvine.gamespot.com/diana-lombard/4005-59028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59053/","id":59053,"name":"Bel Juz","site_detail_url":"https://comicvine.gamespot.com/bel-juz/4005-59053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59105/","id":59105,"name":"Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/blue-celestial/4005-59105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59148/","id":59148,"name":"The Visitor","site_detail_url":"https://comicvine.gamespot.com/the-visitor/4005-59148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59173/","id":59173,"name":"Devilman","site_detail_url":"https://comicvine.gamespot.com/devilman/4005-59173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59194/","id":59194,"name":"Yogi Dakor","site_detail_url":"https://comicvine.gamespot.com/yogi-dakor/4005-59194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59341/","id":59341,"name":"Leprechaun","site_detail_url":"https://comicvine.gamespot.com/leprechaun/4005-59341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59369/","id":59369,"name":"David Richards","site_detail_url":"https://comicvine.gamespot.com/david-richards/4005-59369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59371/","id":59371,"name":"The Red-Blue Celestial","site_detail_url":"https://comicvine.gamespot.com/the-red-blue-celestial/4005-59371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59372/","id":59372,"name":"The Alien Entity","site_detail_url":"https://comicvine.gamespot.com/the-alien-entity/4005-59372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59373/","id":59373,"name":"Anthropomorpho","site_detail_url":"https://comicvine.gamespot.com/anthropomorpho/4005-59373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59388/","id":59388,"name":"Grace Destine","site_detail_url":"https://comicvine.gamespot.com/grace-destine/4005-59388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59422/","id":59422,"name":"Hfuhruhurr","site_detail_url":"https://comicvine.gamespot.com/hfuhruhurr/4005-59422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59433/","id":59433,"name":"Roan Fel","site_detail_url":"https://comicvine.gamespot.com/roan-fel/4005-59433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59434/","id":59434,"name":"Darth Kruhl","site_detail_url":"https://comicvine.gamespot.com/darth-kruhl/4005-59434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59436/","id":59436,"name":"Willie Watt","site_detail_url":"https://comicvine.gamespot.com/willie-watt/4005-59436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59447/","id":59447,"name":"Tahiri Veila","site_detail_url":"https://comicvine.gamespot.com/tahiri-veila/4005-59447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59459/","id":59459,"name":"Galacta","site_detail_url":"https://comicvine.gamespot.com/galacta/4005-59459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59491/","id":59491,"name":"Stasia Fallshadow","site_detail_url":"https://comicvine.gamespot.com/stasia-fallshadow/4005-59491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59513/","id":59513,"name":"Aubrie Wyn","site_detail_url":"https://comicvine.gamespot.com/aubrie-wyn/4005-59513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59516/","id":59516,"name":"Windo Nend","site_detail_url":"https://comicvine.gamespot.com/windo-nend/4005-59516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59518/","id":59518,"name":"Vaabesh","site_detail_url":"https://comicvine.gamespot.com/vaabesh/4005-59518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59519/","id":59519,"name":"Leska","site_detail_url":"https://comicvine.gamespot.com/leska/4005-59519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59520/","id":59520,"name":"Zule Xiss","site_detail_url":"https://comicvine.gamespot.com/zule-xiss/4005-59520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59521/","id":59521,"name":"Mak Lotor","site_detail_url":"https://comicvine.gamespot.com/mak-lotor/4005-59521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59580/","id":59580,"name":"Norcuna","site_detail_url":"https://comicvine.gamespot.com/norcuna/4005-59580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59597/","id":59597,"name":"Shan O'Meara","site_detail_url":"https://comicvine.gamespot.com/shan-omeara/4005-59597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59600/","id":59600,"name":"L'Matto","site_detail_url":"https://comicvine.gamespot.com/lmatto/4005-59600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59684/","id":59684,"name":"Lindsey McDonald","site_detail_url":"https://comicvine.gamespot.com/lindsey-mcdonald/4005-59684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59723/","id":59723,"name":"Tom Diedrich","site_detail_url":"https://comicvine.gamespot.com/tom-diedrich/4005-59723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59742/","id":59742,"name":"Ermac","site_detail_url":"https://comicvine.gamespot.com/ermac/4005-59742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59743/","id":59743,"name":"Black Eagle","site_detail_url":"https://comicvine.gamespot.com/black-eagle/4005-59743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59805/","id":59805,"name":"Dana Bradley","site_detail_url":"https://comicvine.gamespot.com/dana-bradley/4005-59805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59810/","id":59810,"name":"Jonas","site_detail_url":"https://comicvine.gamespot.com/jonas/4005-59810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59864/","id":59864,"name":"Morwen","site_detail_url":"https://comicvine.gamespot.com/morwen/4005-59864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59936/","id":59936,"name":"Azlyn Rae","site_detail_url":"https://comicvine.gamespot.com/azlyn-rae/4005-59936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59937/","id":59937,"name":"Ganner Krieg","site_detail_url":"https://comicvine.gamespot.com/ganner-krieg/4005-59937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59939/","id":59939,"name":"Antares Draco","site_detail_url":"https://comicvine.gamespot.com/antares-draco/4005-59939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59941/","id":59941,"name":"Treis Sinde","site_detail_url":"https://comicvine.gamespot.com/treis-sinde/4005-59941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59982/","id":59982,"name":"Darth Reave","site_detail_url":"https://comicvine.gamespot.com/darth-reave/4005-59982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59984/","id":59984,"name":"Karness Muur","site_detail_url":"https://comicvine.gamespot.com/karness-muur/4005-59984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60001/","id":60001,"name":"Network Nina","site_detail_url":"https://comicvine.gamespot.com/network-nina/4005-60001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60008/","id":60008,"name":"Omega","site_detail_url":"https://comicvine.gamespot.com/omega/4005-60008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60022/","id":60022,"name":"Ryan","site_detail_url":"https://comicvine.gamespot.com/ryan/4005-60022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60131/","id":60131,"name":"Ogdru Jahad","site_detail_url":"https://comicvine.gamespot.com/ogdru-jahad/4005-60131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60163/","id":60163,"name":"Seth","site_detail_url":"https://comicvine.gamespot.com/seth/4005-60163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60269/","id":60269,"name":"Enigma","site_detail_url":"https://comicvine.gamespot.com/enigma/4005-60269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60275/","id":60275,"name":"Nero","site_detail_url":"https://comicvine.gamespot.com/nero/4005-60275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60755/","id":60755,"name":"The Fulcrum","site_detail_url":"https://comicvine.gamespot.com/the-fulcrum/4005-60755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60939/","id":60939,"name":"The Master","site_detail_url":"https://comicvine.gamespot.com/the-master/4005-60939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60985/","id":60985,"name":"Mixyezpitelik","site_detail_url":"https://comicvine.gamespot.com/mixyezpitelik/4005-60985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61002/","id":61002,"name":"Meantime","site_detail_url":"https://comicvine.gamespot.com/meantime/4005-61002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61038/","id":61038,"name":"Elizabeth Dehner","site_detail_url":"https://comicvine.gamespot.com/elizabeth-dehner/4005-61038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61194/","id":61194,"name":"Supernalia","site_detail_url":"https://comicvine.gamespot.com/supernalia/4005-61194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61453/","id":61453,"name":"Mystelor","site_detail_url":"https://comicvine.gamespot.com/mystelor/4005-61453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61531/","id":61531,"name":"Lasher","site_detail_url":"https://comicvine.gamespot.com/lasher/4005-61531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61532/","id":61532,"name":"Novalis","site_detail_url":"https://comicvine.gamespot.com/novalis/4005-61532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61588/","id":61588,"name":"Dabura","site_detail_url":"https://comicvine.gamespot.com/dabura/4005-61588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61595/","id":61595,"name":"Black Jubal","site_detail_url":"https://comicvine.gamespot.com/black-jubal/4005-61595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61661/","id":61661,"name":"Alakazam","site_detail_url":"https://comicvine.gamespot.com/alakazam/4005-61661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61667/","id":61667,"name":"Black Zero","site_detail_url":"https://comicvine.gamespot.com/black-zero/4005-61667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61755/","id":61755,"name":"King Piccolo","site_detail_url":"https://comicvine.gamespot.com/king-piccolo/4005-61755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61777/","id":61777,"name":"Tau'ma","site_detail_url":"https://comicvine.gamespot.com/tauma/4005-61777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61827/","id":61827,"name":"The Futurist","site_detail_url":"https://comicvine.gamespot.com/the-futurist/4005-61827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61885/","id":61885,"name":"Lucy","site_detail_url":"https://comicvine.gamespot.com/lucy/4005-61885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61905/","id":61905,"name":"Stardust","site_detail_url":"https://comicvine.gamespot.com/stardust/4005-61905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61944/","id":61944,"name":"Shadowflame","site_detail_url":"https://comicvine.gamespot.com/shadowflame/4005-61944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62021/","id":62021,"name":"Enchantress (Lushton)","site_detail_url":"https://comicvine.gamespot.com/enchantress-lushton/4005-62021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62037/","id":62037,"name":"Nana","site_detail_url":"https://comicvine.gamespot.com/nana/4005-62037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62039/","id":62039,"name":"Mariko Kurama","site_detail_url":"https://comicvine.gamespot.com/mariko-kurama/4005-62039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62082/","id":62082,"name":"Future Man","site_detail_url":"https://comicvine.gamespot.com/future-man/4005-62082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62133/","id":62133,"name":"Mai, The Psychic Girl","site_detail_url":"https://comicvine.gamespot.com/mai-the-psychic-girl/4005-62133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62207/","id":62207,"name":"Guardian 7","site_detail_url":"https://comicvine.gamespot.com/guardian-7/4005-62207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62254/","id":62254,"name":"Penelope Pink","site_detail_url":"https://comicvine.gamespot.com/penelope-pink/4005-62254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62310/","id":62310,"name":"Yeti","site_detail_url":"https://comicvine.gamespot.com/yeti/4005-62310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62318/","id":62318,"name":"Kes","site_detail_url":"https://comicvine.gamespot.com/kes/4005-62318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62341/","id":62341,"name":"Jenna","site_detail_url":"https://comicvine.gamespot.com/jenna/4005-62341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62342/","id":62342,"name":"Felix","site_detail_url":"https://comicvine.gamespot.com/felix/4005-62342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62343/","id":62343,"name":"Isaac","site_detail_url":"https://comicvine.gamespot.com/isaac/4005-62343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62345/","id":62345,"name":"Mia","site_detail_url":"https://comicvine.gamespot.com/mia/4005-62345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62347/","id":62347,"name":"Garet","site_detail_url":"https://comicvine.gamespot.com/garet/4005-62347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62352/","id":62352,"name":"Garek","site_detail_url":"https://comicvine.gamespot.com/garek/4005-62352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62422/","id":62422,"name":"Un-Human","site_detail_url":"https://comicvine.gamespot.com/un-human/4005-62422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62457/","id":62457,"name":"Vance Cosmic","site_detail_url":"https://comicvine.gamespot.com/vance-cosmic/4005-62457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62471/","id":62471,"name":"Phoenetix","site_detail_url":"https://comicvine.gamespot.com/phoenetix/4005-62471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62620/","id":62620,"name":"Athena Asamiya","site_detail_url":"https://comicvine.gamespot.com/athena-asamiya/4005-62620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62624/","id":62624,"name":"Beetlejuice","site_detail_url":"https://comicvine.gamespot.com/beetlejuice/4005-62624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62683/","id":62683,"name":"Nat Skywalker","site_detail_url":"https://comicvine.gamespot.com/nat-skywalker/4005-62683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62740/","id":62740,"name":"Gandalf","site_detail_url":"https://comicvine.gamespot.com/gandalf/4005-62740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62765/","id":62765,"name":"Saruman","site_detail_url":"https://comicvine.gamespot.com/saruman/4005-62765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62778/","id":62778,"name":"Orange Lantern of Sector 3001","site_detail_url":"https://comicvine.gamespot.com/orange-lantern-of-sector-3001/4005-62778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62922/","id":62922,"name":"Monolith Gatherer","site_detail_url":"https://comicvine.gamespot.com/monolith-gatherer/4005-62922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63105/","id":63105,"name":"Sinestro Corps Sentry","site_detail_url":"https://comicvine.gamespot.com/sinestro-corps-sentry/4005-63105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63170/","id":63170,"name":"The Great Gazoo","site_detail_url":"https://comicvine.gamespot.com/the-great-gazoo/4005-63170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63246/","id":63246,"name":"Cole MacGrath","site_detail_url":"https://comicvine.gamespot.com/cole-macgrath/4005-63246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63298/","id":63298,"name":"Panther","site_detail_url":"https://comicvine.gamespot.com/panther/4005-63298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63424/","id":63424,"name":"Sise-Neg","site_detail_url":"https://comicvine.gamespot.com/sise-neg/4005-63424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63434/","id":63434,"name":"Archduke Sebassis","site_detail_url":"https://comicvine.gamespot.com/archduke-sebassis/4005-63434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63435/","id":63435,"name":"Cyvus Vail","site_detail_url":"https://comicvine.gamespot.com/cyvus-vail/4005-63435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63711/","id":63711,"name":"Arhiman","site_detail_url":"https://comicvine.gamespot.com/arhiman/4005-63711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63848/","id":63848,"name":"Sazu","site_detail_url":"https://comicvine.gamespot.com/sazu/4005-63848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63902/","id":63902,"name":"Darth Ruyn","site_detail_url":"https://comicvine.gamespot.com/darth-ruyn/4005-63902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63956/","id":63956,"name":"Lumiya","site_detail_url":"https://comicvine.gamespot.com/lumiya/4005-63956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64026/","id":64026,"name":"Kharys","site_detail_url":"https://comicvine.gamespot.com/kharys/4005-64026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64042/","id":64042,"name":"Marasiah Fel","site_detail_url":"https://comicvine.gamespot.com/marasiah-fel/4005-64042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64063/","id":64063,"name":"Alexi Garyn","site_detail_url":"https://comicvine.gamespot.com/alexi-garyn/4005-64063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64073/","id":64073,"name":"Tap-Nar-Pal","site_detail_url":"https://comicvine.gamespot.com/tap-nar-pal/4005-64073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64078/","id":64078,"name":"Nomi Sunrider","site_detail_url":"https://comicvine.gamespot.com/nomi-sunrider/4005-64078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64090/","id":64090,"name":"Cain Nightroad","site_detail_url":"https://comicvine.gamespot.com/cain-nightroad/4005-64090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64119/","id":64119,"name":"Barrison Draay","site_detail_url":"https://comicvine.gamespot.com/barrison-draay/4005-64119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64177/","id":64177,"name":"Bhat Jul","site_detail_url":"https://comicvine.gamespot.com/bhat-jul/4005-64177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64180/","id":64180,"name":"Finn Galfridian","site_detail_url":"https://comicvine.gamespot.com/finn-galfridian/4005-64180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64186/","id":64186,"name":"Tenel Ka Djo","site_detail_url":"https://comicvine.gamespot.com/tenel-ka-djo/4005-64186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64187/","id":64187,"name":"Zekk","site_detail_url":"https://comicvine.gamespot.com/zekk/4005-64187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64198/","id":64198,"name":"Kai Hudorra","site_detail_url":"https://comicvine.gamespot.com/kai-hudorra/4005-64198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64215/","id":64215,"name":"Vartu","site_detail_url":"https://comicvine.gamespot.com/vartu/4005-64215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64262/","id":64262,"name":"Dace Diath","site_detail_url":"https://comicvine.gamespot.com/dace-diath/4005-64262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64265/","id":64265,"name":"Shoaneb Culu","site_detail_url":"https://comicvine.gamespot.com/shoaneb-culu/4005-64265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64266/","id":64266,"name":"Cay Qel-Droma","site_detail_url":"https://comicvine.gamespot.com/cay-qel-droma/4005-64266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64269/","id":64269,"name":"Ood Bnar","site_detail_url":"https://comicvine.gamespot.com/ood-bnar/4005-64269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64298/","id":64298,"name":"Slowpoke","site_detail_url":"https://comicvine.gamespot.com/slowpoke/4005-64298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64321/","id":64321,"name":"Maarek Stele","site_detail_url":"https://comicvine.gamespot.com/maarek-stele/4005-64321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64331/","id":64331,"name":"Kossex","site_detail_url":"https://comicvine.gamespot.com/kossex/4005-64331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64339/","id":64339,"name":"Shado Vao","site_detail_url":"https://comicvine.gamespot.com/shado-vao/4005-64339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64346/","id":64346,"name":"Hosk Trey'lis","site_detail_url":"https://comicvine.gamespot.com/hosk-treylis/4005-64346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64376/","id":64376,"name":"Sardoth","site_detail_url":"https://comicvine.gamespot.com/sardoth/4005-64376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64392/","id":64392,"name":"Kai Justiss","site_detail_url":"https://comicvine.gamespot.com/kai-justiss/4005-64392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64399/","id":64399,"name":"Tili Qua","site_detail_url":"https://comicvine.gamespot.com/tili-qua/4005-64399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64400/","id":64400,"name":"Vul Isen","site_detail_url":"https://comicvine.gamespot.com/vul-isen/4005-64400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64409/","id":64409,"name":"Toki Tollivar","site_detail_url":"https://comicvine.gamespot.com/toki-tollivar/4005-64409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64411/","id":64411,"name":"Jon Antilles","site_detail_url":"https://comicvine.gamespot.com/jon-antilles/4005-64411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64412/","id":64412,"name":"Nico Diath","site_detail_url":"https://comicvine.gamespot.com/nico-diath/4005-64412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64413/","id":64413,"name":"Knol Ven'nari","site_detail_url":"https://comicvine.gamespot.com/knol-vennari/4005-64413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64440/","id":64440,"name":"J'Mikel","site_detail_url":"https://comicvine.gamespot.com/jmikel/4005-64440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64441/","id":64441,"name":"Peerce","site_detail_url":"https://comicvine.gamespot.com/peerce/4005-64441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64447/","id":64447,"name":"Chase Piru","site_detail_url":"https://comicvine.gamespot.com/chase-piru/4005-64447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64448/","id":64448,"name":"Du Mahn","site_detail_url":"https://comicvine.gamespot.com/du-mahn/4005-64448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64449/","id":64449,"name":"Serra Keto","site_detail_url":"https://comicvine.gamespot.com/serra-keto/4005-64449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64499/","id":64499,"name":"Jori Daragon","site_detail_url":"https://comicvine.gamespot.com/jori-daragon/4005-64499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64506/","id":64506,"name":"Jude Rozess","site_detail_url":"https://comicvine.gamespot.com/jude-rozess/4005-64506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64507/","id":64507,"name":"Soon Bayts","site_detail_url":"https://comicvine.gamespot.com/soon-bayts/4005-64507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64508/","id":64508,"name":"Shon Kon Ray","site_detail_url":"https://comicvine.gamespot.com/shon-kon-ray/4005-64508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64512/","id":64512,"name":"Lirondo","site_detail_url":"https://comicvine.gamespot.com/lirondo/4005-64512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64513/","id":64513,"name":"Valenthyne Farfalla","site_detail_url":"https://comicvine.gamespot.com/valenthyne-farfalla/4005-64513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64514/","id":64514,"name":"Darth Zannah","site_detail_url":"https://comicvine.gamespot.com/darth-zannah/4005-64514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64515/","id":64515,"name":"Kopecz","site_detail_url":"https://comicvine.gamespot.com/kopecz/4005-64515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64517/","id":64517,"name":"Githany","site_detail_url":"https://comicvine.gamespot.com/githany/4005-64517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64559/","id":64559,"name":"Tobias Sun","site_detail_url":"https://comicvine.gamespot.com/tobias-sun/4005-64559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64560/","id":64560,"name":"Rasi Tuum","site_detail_url":"https://comicvine.gamespot.com/rasi-tuum/4005-64560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64576/","id":64576,"name":"Memit Nadill","site_detail_url":"https://comicvine.gamespot.com/memit-nadill/4005-64576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64584/","id":64584,"name":"Kam Solusar","site_detail_url":"https://comicvine.gamespot.com/kam-solusar/4005-64584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64588/","id":64588,"name":"Executor Sedriss","site_detail_url":"https://comicvine.gamespot.com/executor-sedriss/4005-64588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64593/","id":64593,"name":"Isaac Clarke","site_detail_url":"https://comicvine.gamespot.com/isaac-clarke/4005-64593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64678/","id":64678,"name":"Oss Wilum","site_detail_url":"https://comicvine.gamespot.com/oss-wilum/4005-64678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64681/","id":64681,"name":"Tott Doneeta","site_detail_url":"https://comicvine.gamespot.com/tott-doneeta/4005-64681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64691/","id":64691,"name":"Mighella","site_detail_url":"https://comicvine.gamespot.com/mighella/4005-64691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64699/","id":64699,"name":"Jem Ysanna","site_detail_url":"https://comicvine.gamespot.com/jem-ysanna/4005-64699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64735/","id":64735,"name":"Erika Telekinetica","site_detail_url":"https://comicvine.gamespot.com/erika-telekinetica/4005-64735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64757/","id":64757,"name":"Dalnus Cam","site_detail_url":"https://comicvine.gamespot.com/dalnus-cam/4005-64757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64758/","id":64758,"name":"Ky Narec","site_detail_url":"https://comicvine.gamespot.com/ky-narec/4005-64758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-64939/","id":64939,"name":"Huss","site_detail_url":"https://comicvine.gamespot.com/huss/4005-64939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65122/","id":65122,"name":"Dominator","site_detail_url":"https://comicvine.gamespot.com/dominator/4005-65122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65178/","id":65178,"name":"Muad'Dib","site_detail_url":"https://comicvine.gamespot.com/muaddib/4005-65178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65182/","id":65182,"name":"Saint Alia of the Knife","site_detail_url":"https://comicvine.gamespot.com/saint-alia-of-the-knife/4005-65182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65256/","id":65256,"name":"Brain Bug","site_detail_url":"https://comicvine.gamespot.com/brain-bug/4005-65256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65270/","id":65270,"name":"Solen Cagliar","site_detail_url":"https://comicvine.gamespot.com/solen-cagliar/4005-65270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65370/","id":65370,"name":"Carl Jenkins","site_detail_url":"https://comicvine.gamespot.com/carl-jenkins/4005-65370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65386/","id":65386,"name":"Promethean","site_detail_url":"https://comicvine.gamespot.com/promethean/4005-65386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65460/","id":65460,"name":"Quink","site_detail_url":"https://comicvine.gamespot.com/quink/4005-65460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65461/","id":65461,"name":"Quirk","site_detail_url":"https://comicvine.gamespot.com/quirk/4005-65461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65511/","id":65511,"name":"Shujinko","site_detail_url":"https://comicvine.gamespot.com/shujinko/4005-65511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66162/","id":66162,"name":"Hijack","site_detail_url":"https://comicvine.gamespot.com/hijack/4005-66162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66219/","id":66219,"name":"Michael Dorie","site_detail_url":"https://comicvine.gamespot.com/michael-dorie/4005-66219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66754/","id":66754,"name":"Trafalgar Law","site_detail_url":"https://comicvine.gamespot.com/trafalgar-law/4005-66754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66761/","id":66761,"name":"Fernusan","site_detail_url":"https://comicvine.gamespot.com/fernusan/4005-66761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66925/","id":66925,"name":"The Eel","site_detail_url":"https://comicvine.gamespot.com/the-eel/4005-66925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67136/","id":67136,"name":"Todd Ingram","site_detail_url":"https://comicvine.gamespot.com/todd-ingram/4005-67136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67140/","id":67140,"name":"Gideon Gordon Graves","site_detail_url":"https://comicvine.gamespot.com/gideon-gordon-graves/4005-67140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67221/","id":67221,"name":"Casey Kinmont","site_detail_url":"https://comicvine.gamespot.com/casey-kinmont/4005-67221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67324/","id":67324,"name":"Vigo the Carpathian","site_detail_url":"https://comicvine.gamespot.com/vigo-the-carpathian/4005-67324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67328/","id":67328,"name":"Uncle Martin","site_detail_url":"https://comicvine.gamespot.com/uncle-martin/4005-67328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67329/","id":67329,"name":"Mad God Chaos","site_detail_url":"https://comicvine.gamespot.com/mad-god-chaos/4005-67329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67351/","id":67351,"name":"Memnan Saa","site_detail_url":"https://comicvine.gamespot.com/memnan-saa/4005-67351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67419/","id":67419,"name":"Thoth","site_detail_url":"https://comicvine.gamespot.com/thoth/4005-67419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67465/","id":67465,"name":"O.K. Quack","site_detail_url":"https://comicvine.gamespot.com/ok-quack/4005-67465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67556/","id":67556,"name":"Father Nature","site_detail_url":"https://comicvine.gamespot.com/father-nature/4005-67556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67812/","id":67812,"name":"Mechanic","site_detail_url":"https://comicvine.gamespot.com/mechanic/4005-67812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67886/","id":67886,"name":"Damali Richards","site_detail_url":"https://comicvine.gamespot.com/damali-richards/4005-67886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67892/","id":67892,"name":"Golduck","site_detail_url":"https://comicvine.gamespot.com/golduck/4005-67892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67895/","id":67895,"name":"Kadabra","site_detail_url":"https://comicvine.gamespot.com/kadabra/4005-67895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68123/","id":68123,"name":"Oro","site_detail_url":"https://comicvine.gamespot.com/oro/4005-68123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68162/","id":68162,"name":"Shakti","site_detail_url":"https://comicvine.gamespot.com/shakti/4005-68162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68295/","id":68295,"name":"Magnus Lee","site_detail_url":"https://comicvine.gamespot.com/magnus-lee/4005-68295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68418/","id":68418,"name":"Liara T'Soni","site_detail_url":"https://comicvine.gamespot.com/liara-tsoni/4005-68418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68465/","id":68465,"name":"Karen Clancy","site_detail_url":"https://comicvine.gamespot.com/karen-clancy/4005-68465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68466/","id":68466,"name":"Alicia Claus","site_detail_url":"https://comicvine.gamespot.com/alicia-claus/4005-68466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68728/","id":68728,"name":"Edward Cullen","site_detail_url":"https://comicvine.gamespot.com/edward-cullen/4005-68728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68731/","id":68731,"name":"Le Bete Noir","site_detail_url":"https://comicvine.gamespot.com/le-bete-noir/4005-68731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68748/","id":68748,"name":"Ash","site_detail_url":"https://comicvine.gamespot.com/ash/4005-68748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68751/","id":68751,"name":"Headmaster","site_detail_url":"https://comicvine.gamespot.com/headmaster/4005-68751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68755/","id":68755,"name":"Joyride","site_detail_url":"https://comicvine.gamespot.com/joyride/4005-68755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68766/","id":68766,"name":"Jacob Black","site_detail_url":"https://comicvine.gamespot.com/jacob-black/4005-68766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68831/","id":68831,"name":"Merkova","site_detail_url":"https://comicvine.gamespot.com/merkova/4005-68831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68849/","id":68849,"name":"Theen Fida","site_detail_url":"https://comicvine.gamespot.com/theen-fida/4005-68849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68875/","id":68875,"name":"Drew McCormick","site_detail_url":"https://comicvine.gamespot.com/drew-mccormick/4005-68875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68905/","id":68905,"name":"Darius Drumm","site_detail_url":"https://comicvine.gamespot.com/darius-drumm/4005-68905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69078/","id":69078,"name":"Slowbro","site_detail_url":"https://comicvine.gamespot.com/slowbro/4005-69078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69112/","id":69112,"name":"Little Mary","site_detail_url":"https://comicvine.gamespot.com/little-mary/4005-69112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69164/","id":69164,"name":"Exeggcute","site_detail_url":"https://comicvine.gamespot.com/exeggcute/4005-69164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69165/","id":69165,"name":"Exeggutor","site_detail_url":"https://comicvine.gamespot.com/exeggutor/4005-69165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69182/","id":69182,"name":"Wolf Sazen","site_detail_url":"https://comicvine.gamespot.com/wolf-sazen/4005-69182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69211/","id":69211,"name":"Phoenix","site_detail_url":"https://comicvine.gamespot.com/phoenix/4005-69211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69265/","id":69265,"name":"Mr. Mime","site_detail_url":"https://comicvine.gamespot.com/mr-mime/4005-69265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69266/","id":69266,"name":"Jynx","site_detail_url":"https://comicvine.gamespot.com/jynx/4005-69266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69541/","id":69541,"name":"Jace Beleren","site_detail_url":"https://comicvine.gamespot.com/jace-beleren/4005-69541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69592/","id":69592,"name":"Miranda Lawson","site_detail_url":"https://comicvine.gamespot.com/miranda-lawson/4005-69592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69653/","id":69653,"name":"Alina Enstrom","site_detail_url":"https://comicvine.gamespot.com/alina-enstrom/4005-69653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69758/","id":69758,"name":"Metagross","site_detail_url":"https://comicvine.gamespot.com/metagross/4005-69758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69767/","id":69767,"name":"Sinbad","site_detail_url":"https://comicvine.gamespot.com/sinbad/4005-69767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69887/","id":69887,"name":"Wisp","site_detail_url":"https://comicvine.gamespot.com/wisp/4005-69887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69890/","id":69890,"name":"Aria T'Loak","site_detail_url":"https://comicvine.gamespot.com/aria-tloak/4005-69890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69902/","id":69902,"name":"Paige Matthews","site_detail_url":"https://comicvine.gamespot.com/paige-matthews/4005-69902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69922/","id":69922,"name":"Freedon Nadd","site_detail_url":"https://comicvine.gamespot.com/freedon-nadd/4005-69922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69949/","id":69949,"name":"Keyan Farlander","site_detail_url":"https://comicvine.gamespot.com/keyan-farlander/4005-69949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69956/","id":69956,"name":"Brakiss","site_detail_url":"https://comicvine.gamespot.com/brakiss/4005-69956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69961/","id":69961,"name":"Kueller","site_detail_url":"https://comicvine.gamespot.com/kueller/4005-69961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70004/","id":70004,"name":"Crado","site_detail_url":"https://comicvine.gamespot.com/crado/4005-70004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70005/","id":70005,"name":"Thon","site_detail_url":"https://comicvine.gamespot.com/thon/4005-70005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70036/","id":70036,"name":"Zeus","site_detail_url":"https://comicvine.gamespot.com/zeus/4005-70036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70043/","id":70043,"name":"Lucifer","site_detail_url":"https://comicvine.gamespot.com/lucifer/4005-70043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70061/","id":70061,"name":"Kaboomerang","site_detail_url":"https://comicvine.gamespot.com/kaboomerang/4005-70061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70243/","id":70243,"name":"Oola Udonta","site_detail_url":"https://comicvine.gamespot.com/oola-udonta/4005-70243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70261/","id":70261,"name":"Medicham","site_detail_url":"https://comicvine.gamespot.com/medicham/4005-70261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70285/","id":70285,"name":"Kazdan Paratus","site_detail_url":"https://comicvine.gamespot.com/kazdan-paratus/4005-70285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70286/","id":70286,"name":"Cin Drallig","site_detail_url":"https://comicvine.gamespot.com/cin-drallig/4005-70286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70289/","id":70289,"name":"Lord Nyax","site_detail_url":"https://comicvine.gamespot.com/lord-nyax/4005-70289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70331/","id":70331,"name":"Kirana Ti","site_detail_url":"https://comicvine.gamespot.com/kirana-ti/4005-70331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70333/","id":70333,"name":"Swilja Fenn","site_detail_url":"https://comicvine.gamespot.com/swilja-fenn/4005-70333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70334/","id":70334,"name":"Daeshara'cor","site_detail_url":"https://comicvine.gamespot.com/daesharacor/4005-70334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70335/","id":70335,"name":"Dorsk 82","site_detail_url":"https://comicvine.gamespot.com/dorsk-82/4005-70335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70394/","id":70394,"name":"Ganner Rhysode","site_detail_url":"https://comicvine.gamespot.com/ganner-rhysode/4005-70394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70397/","id":70397,"name":"Jeng Droga","site_detail_url":"https://comicvine.gamespot.com/jeng-droga/4005-70397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70398/","id":70398,"name":"Sarcev Quest","site_detail_url":"https://comicvine.gamespot.com/sarcev-quest/4005-70398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70413/","id":70413,"name":"Dazzler","site_detail_url":"https://comicvine.gamespot.com/dazzler/4005-70413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70484/","id":70484,"name":"Mark Angel","site_detail_url":"https://comicvine.gamespot.com/mark-angel/4005-70484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70676/","id":70676,"name":"William Nguyen","site_detail_url":"https://comicvine.gamespot.com/william-nguyen/4005-70676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70746/","id":70746,"name":"Kid Cortex","site_detail_url":"https://comicvine.gamespot.com/kid-cortex/4005-70746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70789/","id":70789,"name":"The Brain-Ship","site_detail_url":"https://comicvine.gamespot.com/the-brain-ship/4005-70789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70900/","id":70900,"name":"Cologne","site_detail_url":"https://comicvine.gamespot.com/cologne/4005-70900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71168/","id":71168,"name":"Gaius Tiberius Augustus Aggrippa","site_detail_url":"https://comicvine.gamespot.com/gaius-tiberius-augustus-aggrippa/4005-71168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71288/","id":71288,"name":"White Whip","site_detail_url":"https://comicvine.gamespot.com/white-whip/4005-71288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71320/","id":71320,"name":"Turbo Norimaki","site_detail_url":"https://comicvine.gamespot.com/turbo-norimaki/4005-71320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71428/","id":71428,"name":"Miss Poltergeist","site_detail_url":"https://comicvine.gamespot.com/miss-poltergeist/4005-71428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71502/","id":71502,"name":"Prue Halliwell","site_detail_url":"https://comicvine.gamespot.com/prue-halliwell/4005-71502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71503/","id":71503,"name":"Wyatt Halliwell","site_detail_url":"https://comicvine.gamespot.com/wyatt-halliwell/4005-71503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71504/","id":71504,"name":"Chris Halliwell","site_detail_url":"https://comicvine.gamespot.com/chris-halliwell/4005-71504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71506/","id":71506,"name":"Penny Halliwell","site_detail_url":"https://comicvine.gamespot.com/penny-halliwell/4005-71506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71507/","id":71507,"name":"Cole Turner","site_detail_url":"https://comicvine.gamespot.com/cole-turner/4005-71507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71508/","id":71508,"name":"Billie Jenkins","site_detail_url":"https://comicvine.gamespot.com/billie-jenkins/4005-71508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71522/","id":71522,"name":"Unown","site_detail_url":"https://comicvine.gamespot.com/unown/4005-71522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71527/","id":71527,"name":"Candace Flynn","site_detail_url":"https://comicvine.gamespot.com/candace-flynn/4005-71527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71597/","id":71597,"name":"Illusioneer","site_detail_url":"https://comicvine.gamespot.com/illusioneer/4005-71597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71791/","id":71791,"name":"Zankou","site_detail_url":"https://comicvine.gamespot.com/zankou/4005-71791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71815/","id":71815,"name":"Ellis Love","site_detail_url":"https://comicvine.gamespot.com/ellis-love/4005-71815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71984/","id":71984,"name":"Motorhead","site_detail_url":"https://comicvine.gamespot.com/motorhead/4005-71984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72030/","id":72030,"name":"Satele Shan","site_detail_url":"https://comicvine.gamespot.com/satele-shan/4005-72030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72182/","id":72182,"name":"Nova Terra","site_detail_url":"https://comicvine.gamespot.com/nova-terra/4005-72182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72214/","id":72214,"name":"Sam","site_detail_url":"https://comicvine.gamespot.com/sam/4005-72214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72272/","id":72272,"name":"Coop","site_detail_url":"https://comicvine.gamespot.com/coop/4005-72272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72450/","id":72450,"name":"Arca Jeth","site_detail_url":"https://comicvine.gamespot.com/arca-jeth/4005-72450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72519/","id":72519,"name":"Mira","site_detail_url":"https://comicvine.gamespot.com/mira/4005-72519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72549/","id":72549,"name":"Alfred Cranston","site_detail_url":"https://comicvine.gamespot.com/alfred-cranston/4005-72549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72559/","id":72559,"name":"Signal Ray","site_detail_url":"https://comicvine.gamespot.com/signal-ray/4005-72559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72579/","id":72579,"name":"Charles Summers","site_detail_url":"https://comicvine.gamespot.com/charles-summers/4005-72579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72650/","id":72650,"name":"Asaak Dan","site_detail_url":"https://comicvine.gamespot.com/asaak-dan/4005-72650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72663/","id":72663,"name":"Captain America-X","site_detail_url":"https://comicvine.gamespot.com/captain-america-x/4005-72663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72734/","id":72734,"name":"Prudence Halliwell","site_detail_url":"https://comicvine.gamespot.com/prudence-halliwell/4005-72734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72735/","id":72735,"name":"Melinda Halliwell","site_detail_url":"https://comicvine.gamespot.com/melinda-halliwell/4005-72735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72768/","id":72768,"name":"Black Lantern of Maltus","site_detail_url":"https://comicvine.gamespot.com/black-lantern-of-maltus/4005-72768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72857/","id":72857,"name":"Headcase","site_detail_url":"https://comicvine.gamespot.com/headcase/4005-72857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72862/","id":72862,"name":"Codi Ty","site_detail_url":"https://comicvine.gamespot.com/codi-ty/4005-72862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72863/","id":72863,"name":"Kyle","site_detail_url":"https://comicvine.gamespot.com/kyle/4005-72863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72911/","id":72911,"name":"Baylis Archan","site_detail_url":"https://comicvine.gamespot.com/baylis-archan/4005-72911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72914/","id":72914,"name":"Saldith","site_detail_url":"https://comicvine.gamespot.com/saldith/4005-72914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72915/","id":72915,"name":"Beyghor Sahdett","site_detail_url":"https://comicvine.gamespot.com/beyghor-sahdett/4005-72915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72982/","id":72982,"name":"Saarai","site_detail_url":"https://comicvine.gamespot.com/saarai/4005-72982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72983/","id":72983,"name":"Darth Havok","site_detail_url":"https://comicvine.gamespot.com/darth-havok/4005-72983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73044/","id":73044,"name":"Fernus","site_detail_url":"https://comicvine.gamespot.com/fernus/4005-73044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73054/","id":73054,"name":"Harry Potter","site_detail_url":"https://comicvine.gamespot.com/harry-potter/4005-73054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73078/","id":73078,"name":"Black Hole","site_detail_url":"https://comicvine.gamespot.com/black-hole/4005-73078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73141/","id":73141,"name":"Ausar Auset","site_detail_url":"https://comicvine.gamespot.com/ausar-auset/4005-73141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73142/","id":73142,"name":"Drok","site_detail_url":"https://comicvine.gamespot.com/drok/4005-73142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73143/","id":73143,"name":"Mai","site_detail_url":"https://comicvine.gamespot.com/mai/4005-73143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73148/","id":73148,"name":"T'Dai","site_detail_url":"https://comicvine.gamespot.com/tdai/4005-73148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73150/","id":73150,"name":"Kerra Holt","site_detail_url":"https://comicvine.gamespot.com/kerra-holt/4005-73150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73151/","id":73151,"name":"Vannar Treece","site_detail_url":"https://comicvine.gamespot.com/vannar-treece/4005-73151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73152/","id":73152,"name":"Lord Odion","site_detail_url":"https://comicvine.gamespot.com/lord-odion/4005-73152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73157/","id":73157,"name":"Jiro","site_detail_url":"https://comicvine.gamespot.com/jiro/4005-73157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73158/","id":73158,"name":"Kennan Taanzer","site_detail_url":"https://comicvine.gamespot.com/kennan-taanzer/4005-73158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73161/","id":73161,"name":"Seddwia","site_detail_url":"https://comicvine.gamespot.com/seddwia/4005-73161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73170/","id":73170,"name":"Dama Montalvo","site_detail_url":"https://comicvine.gamespot.com/dama-montalvo/4005-73170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73206/","id":73206,"name":"Toluz Cheq","site_detail_url":"https://comicvine.gamespot.com/toluz-cheq/4005-73206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73209/","id":73209,"name":"Angelique Bouchard","site_detail_url":"https://comicvine.gamespot.com/angelique-bouchard/4005-73209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73308/","id":73308,"name":"Olivia Dunham","site_detail_url":"https://comicvine.gamespot.com/olivia-dunham/4005-73308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73422/","id":73422,"name":"Kirk","site_detail_url":"https://comicvine.gamespot.com/kirk/4005-73422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73423/","id":73423,"name":"Caz","site_detail_url":"https://comicvine.gamespot.com/caz/4005-73423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73428/","id":73428,"name":"Jack","site_detail_url":"https://comicvine.gamespot.com/jack/4005-73428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73430/","id":73430,"name":"Kait","site_detail_url":"https://comicvine.gamespot.com/kait/4005-73430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73518/","id":73518,"name":"Rowan Morrigan","site_detail_url":"https://comicvine.gamespot.com/rowan-morrigan/4005-73518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73530/","id":73530,"name":"Seize","site_detail_url":"https://comicvine.gamespot.com/seize/4005-73530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73635/","id":73635,"name":"Magician from Mars","site_detail_url":"https://comicvine.gamespot.com/magician-from-mars/4005-73635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73790/","id":73790,"name":"Dar'Nala","site_detail_url":"https://comicvine.gamespot.com/darnala/4005-73790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73791/","id":73791,"name":"Lord Baras","site_detail_url":"https://comicvine.gamespot.com/lord-baras/4005-73791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73792/","id":73792,"name":"Lord Angral","site_detail_url":"https://comicvine.gamespot.com/lord-angral/4005-73792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73816/","id":73816,"name":"Locke","site_detail_url":"https://comicvine.gamespot.com/locke/4005-73816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73820/","id":73820,"name":"Zym","site_detail_url":"https://comicvine.gamespot.com/zym/4005-73820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73948/","id":73948,"name":"Wolverine Demon","site_detail_url":"https://comicvine.gamespot.com/wolverine-demon/4005-73948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73985/","id":73985,"name":"Mister Midnite","site_detail_url":"https://comicvine.gamespot.com/mister-midnite/4005-73985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74020/","id":74020,"name":"D'Kay D'Razz","site_detail_url":"https://comicvine.gamespot.com/dkay-drazz/4005-74020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74023/","id":74023,"name":"Nuclear Man","site_detail_url":"https://comicvine.gamespot.com/nuclear-man/4005-74023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74071/","id":74071,"name":"X","site_detail_url":"https://comicvine.gamespot.com/x/4005-74071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74518/","id":74518,"name":"Telepath","site_detail_url":"https://comicvine.gamespot.com/telepath/4005-74518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74545/","id":74545,"name":"Kith Kark","site_detail_url":"https://comicvine.gamespot.com/kith-kark/4005-74545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74570/","id":74570,"name":"Remus Lupin","site_detail_url":"https://comicvine.gamespot.com/remus-lupin/4005-74570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74582/","id":74582,"name":"Dr. Nishtikeit","site_detail_url":"https://comicvine.gamespot.com/dr-nishtikeit/4005-74582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74611/","id":74611,"name":"Apollo","site_detail_url":"https://comicvine.gamespot.com/apollo/4005-74611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74847/","id":74847,"name":"Steel Rain","site_detail_url":"https://comicvine.gamespot.com/steel-rain/4005-74847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74862/","id":74862,"name":"The Source","site_detail_url":"https://comicvine.gamespot.com/the-source/4005-74862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74935/","id":74935,"name":"Nicol Bolas","site_detail_url":"https://comicvine.gamespot.com/nicol-bolas/4005-74935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75033/","id":75033,"name":"Simms","site_detail_url":"https://comicvine.gamespot.com/simms/4005-75033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75066/","id":75066,"name":"Berluk","site_detail_url":"https://comicvine.gamespot.com/berluk/4005-75066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75075/","id":75075,"name":"Tieren Nie-Tan","site_detail_url":"https://comicvine.gamespot.com/tieren-nie-tan/4005-75075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75076/","id":75076,"name":"Lycan","site_detail_url":"https://comicvine.gamespot.com/lycan/4005-75076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75077/","id":75077,"name":"XoXaan","site_detail_url":"https://comicvine.gamespot.com/xoxaan/4005-75077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75078/","id":75078,"name":"Sonam-Ha'ar","site_detail_url":"https://comicvine.gamespot.com/sonam-haar/4005-75078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75144/","id":75144,"name":"Gwellib Ap-Llewff","site_detail_url":"https://comicvine.gamespot.com/gwellib-ap-llewff/4005-75144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75180/","id":75180,"name":"Quarmall","site_detail_url":"https://comicvine.gamespot.com/quarmall/4005-75180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75181/","id":75181,"name":"B'dard Tone","site_detail_url":"https://comicvine.gamespot.com/bdard-tone/4005-75181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75182/","id":75182,"name":"Flynn Kybo","site_detail_url":"https://comicvine.gamespot.com/flynn-kybo/4005-75182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75183/","id":75183,"name":"T'chooka D'oon","site_detail_url":"https://comicvine.gamespot.com/tchooka-doon/4005-75183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75184/","id":75184,"name":"Z'meer Bothu","site_detail_url":"https://comicvine.gamespot.com/zmeer-bothu/4005-75184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75186/","id":75186,"name":"Allara","site_detail_url":"https://comicvine.gamespot.com/allara/4005-75186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75187/","id":75187,"name":"Banz","site_detail_url":"https://comicvine.gamespot.com/banz/4005-75187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75188/","id":75188,"name":"Tak-tak","site_detail_url":"https://comicvine.gamespot.com/tak-tak/4005-75188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75277/","id":75277,"name":"Jon Winston","site_detail_url":"https://comicvine.gamespot.com/jon-winston/4005-75277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75350/","id":75350,"name":"Psionic Lad","site_detail_url":"https://comicvine.gamespot.com/psionic-lad/4005-75350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75414/","id":75414,"name":"Atris","site_detail_url":"https://comicvine.gamespot.com/atris/4005-75414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75544/","id":75544,"name":"Jerbhen Hulis","site_detail_url":"https://comicvine.gamespot.com/jerbhen-hulis/4005-75544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75554/","id":75554,"name":"Lar Le'Ung","site_detail_url":"https://comicvine.gamespot.com/lar-leung/4005-75554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75583/","id":75583,"name":"Noirah Na","site_detail_url":"https://comicvine.gamespot.com/noirah-na/4005-75583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75588/","id":75588,"name":"Yahiko","site_detail_url":"https://comicvine.gamespot.com/yahiko/4005-75588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75666/","id":75666,"name":"Savage Opress","site_detail_url":"https://comicvine.gamespot.com/savage-opress/4005-75666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75779/","id":75779,"name":"M.O.D.O.K. 2.0","site_detail_url":"https://comicvine.gamespot.com/m-o-d-o-k-2-0/4005-75779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75816/","id":75816,"name":"Application Nine","site_detail_url":"https://comicvine.gamespot.com/application-nine/4005-75816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75856/","id":75856,"name":"Elizabeth Maxwell","site_detail_url":"https://comicvine.gamespot.com/elizabeth-maxwell/4005-75856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75887/","id":75887,"name":"Shaizan","site_detail_url":"https://comicvine.gamespot.com/shaizan/4005-75887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75888/","id":75888,"name":"Bowkaz","site_detail_url":"https://comicvine.gamespot.com/bowkaz/4005-75888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75889/","id":75889,"name":"Dag","site_detail_url":"https://comicvine.gamespot.com/dag/4005-75889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75890/","id":75890,"name":"Fallagar","site_detail_url":"https://comicvine.gamespot.com/fallagar/4005-75890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75891/","id":75891,"name":"Hepsis","site_detail_url":"https://comicvine.gamespot.com/hepsis/4005-75891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75892/","id":75892,"name":"Nimuul","site_detail_url":"https://comicvine.gamespot.com/nimuul/4005-75892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75916/","id":75916,"name":"Akasha","site_detail_url":"https://comicvine.gamespot.com/akasha/4005-75916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76020/","id":76020,"name":"Atro","site_detail_url":"https://comicvine.gamespot.com/atro/4005-76020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76022/","id":76022,"name":"Wondrous Incarno","site_detail_url":"https://comicvine.gamespot.com/wondrous-incarno/4005-76022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76051/","id":76051,"name":"Tobor","site_detail_url":"https://comicvine.gamespot.com/tobor/4005-76051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76096/","id":76096,"name":"Carlos Ayala","site_detail_url":"https://comicvine.gamespot.com/carlos-ayala/4005-76096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76170/","id":76170,"name":"Ryan Kendall","site_detail_url":"https://comicvine.gamespot.com/ryan-kendall/4005-76170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76365/","id":76365,"name":"Trikon","site_detail_url":"https://comicvine.gamespot.com/trikon/4005-76365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76376/","id":76376,"name":"Silene","site_detail_url":"https://comicvine.gamespot.com/silene/4005-76376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76426/","id":76426,"name":"Kyle Brody","site_detail_url":"https://comicvine.gamespot.com/kyle-brody/4005-76426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76569/","id":76569,"name":"Samael","site_detail_url":"https://comicvine.gamespot.com/samael/4005-76569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76635/","id":76635,"name":"El Tigre","site_detail_url":"https://comicvine.gamespot.com/el-tigre/4005-76635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76666/","id":76666,"name":"Cal","site_detail_url":"https://comicvine.gamespot.com/cal/4005-76666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76947/","id":76947,"name":"Flygirl","site_detail_url":"https://comicvine.gamespot.com/flygirl/4005-76947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77137/","id":77137,"name":"H.E.C.T.O.R.","site_detail_url":"https://comicvine.gamespot.com/hector/4005-77137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77150/","id":77150,"name":"Green Phoenix","site_detail_url":"https://comicvine.gamespot.com/green-phoenix/4005-77150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77160/","id":77160,"name":"Azathoth","site_detail_url":"https://comicvine.gamespot.com/azathoth/4005-77160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77186/","id":77186,"name":"Kamek","site_detail_url":"https://comicvine.gamespot.com/kamek/4005-77186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77262/","id":77262,"name":"Esperanza Del Toro","site_detail_url":"https://comicvine.gamespot.com/esperanza-del-toro/4005-77262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77424/","id":77424,"name":"Aqua","site_detail_url":"https://comicvine.gamespot.com/aqua/4005-77424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77550/","id":77550,"name":"Samantha Stephens","site_detail_url":"https://comicvine.gamespot.com/samantha-stephens/4005-77550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77674/","id":77674,"name":"Star-Thief","site_detail_url":"https://comicvine.gamespot.com/star-thief/4005-77674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77722/","id":77722,"name":"Joanne Russell","site_detail_url":"https://comicvine.gamespot.com/joanne-russell/4005-77722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77736/","id":77736,"name":"Wraparound","site_detail_url":"https://comicvine.gamespot.com/wraparound/4005-77736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77748/","id":77748,"name":"Siphon","site_detail_url":"https://comicvine.gamespot.com/siphon/4005-77748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78096/","id":78096,"name":"Xatu","site_detail_url":"https://comicvine.gamespot.com/xatu/4005-78096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78191/","id":78191,"name":"Vora","site_detail_url":"https://comicvine.gamespot.com/vora/4005-78191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78223/","id":78223,"name":"Ann Never","site_detail_url":"https://comicvine.gamespot.com/ann-never/4005-78223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78330/","id":78330,"name":"Tina Shepard","site_detail_url":"https://comicvine.gamespot.com/tina-shepard/4005-78330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78479/","id":78479,"name":"Melinda Warren","site_detail_url":"https://comicvine.gamespot.com/melinda-warren/4005-78479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78510/","id":78510,"name":"Golden","site_detail_url":"https://comicvine.gamespot.com/golden/4005-78510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78519/","id":78519,"name":"Lady Miyako","site_detail_url":"https://comicvine.gamespot.com/lady-miyako/4005-78519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78525/","id":78525,"name":"Eggman","site_detail_url":"https://comicvine.gamespot.com/eggman/4005-78525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78672/","id":78672,"name":"Flint","site_detail_url":"https://comicvine.gamespot.com/flint/4005-78672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78689/","id":78689,"name":"Gabriel","site_detail_url":"https://comicvine.gamespot.com/gabriel/4005-78689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78883/","id":78883,"name":"Kay","site_detail_url":"https://comicvine.gamespot.com/kay/4005-78883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78888/","id":78888,"name":"Tome","site_detail_url":"https://comicvine.gamespot.com/tome/4005-78888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78957/","id":78957,"name":"Link","site_detail_url":"https://comicvine.gamespot.com/link/4005-78957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78962/","id":78962,"name":"Smeargle","site_detail_url":"https://comicvine.gamespot.com/smeargle/4005-78962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78968/","id":78968,"name":"Kylie Woods","site_detail_url":"https://comicvine.gamespot.com/kylie-woods/4005-78968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78981/","id":78981,"name":"Mary Campbell","site_detail_url":"https://comicvine.gamespot.com/mary-campbell/4005-78981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79022/","id":79022,"name":"Alice","site_detail_url":"https://comicvine.gamespot.com/alice/4005-79022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79123/","id":79123,"name":"Nuage","site_detail_url":"https://comicvine.gamespot.com/nuage/4005-79123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79129/","id":79129,"name":"Balance","site_detail_url":"https://comicvine.gamespot.com/balance/4005-79129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79228/","id":79228,"name":"Caleb Danvers","site_detail_url":"https://comicvine.gamespot.com/caleb-danvers/4005-79228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79230/","id":79230,"name":"The Tall Man","site_detail_url":"https://comicvine.gamespot.com/the-tall-man/4005-79230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79239/","id":79239,"name":"Pogue Parry","site_detail_url":"https://comicvine.gamespot.com/pogue-parry/4005-79239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79240/","id":79240,"name":"Reid Garwin","site_detail_url":"https://comicvine.gamespot.com/reid-garwin/4005-79240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79241/","id":79241,"name":"Tyler Simms","site_detail_url":"https://comicvine.gamespot.com/tyler-simms/4005-79241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79516/","id":79516,"name":"Rikky Keegan","site_detail_url":"https://comicvine.gamespot.com/rikky-keegan/4005-79516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79531/","id":79531,"name":"Bobby Singer","site_detail_url":"https://comicvine.gamespot.com/bobby-singer/4005-79531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79648/","id":79648,"name":"Gray Falcon","site_detail_url":"https://comicvine.gamespot.com/gray-falcon/4005-79648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80379/","id":80379,"name":"K'hym J'onzz","site_detail_url":"https://comicvine.gamespot.com/khym-jonzz/4005-80379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80386/","id":80386,"name":"John White","site_detail_url":"https://comicvine.gamespot.com/john-white/4005-80386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80427/","id":80427,"name":"Baba Yaga","site_detail_url":"https://comicvine.gamespot.com/baba-yaga/4005-80427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80454/","id":80454,"name":"Chaos","site_detail_url":"https://comicvine.gamespot.com/chaos/4005-80454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80523/","id":80523,"name":"Sar Dubnotal","site_detail_url":"https://comicvine.gamespot.com/sar-dubnotal/4005-80523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80837/","id":80837,"name":"Nnamdi","site_detail_url":"https://comicvine.gamespot.com/nnamdi/4005-80837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81104/","id":81104,"name":"Jon Kent","site_detail_url":"https://comicvine.gamespot.com/jon-kent/4005-81104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81192/","id":81192,"name":"Amanda Fallows","site_detail_url":"https://comicvine.gamespot.com/amanda-fallows/4005-81192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81242/","id":81242,"name":"Millenia","site_detail_url":"https://comicvine.gamespot.com/millenia/4005-81242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81325/","id":81325,"name":"The Red Celestial","site_detail_url":"https://comicvine.gamespot.com/the-red-celestial/4005-81325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81406/","id":81406,"name":"Tahl","site_detail_url":"https://comicvine.gamespot.com/tahl/4005-81406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81457/","id":81457,"name":"Orykan Tamarik","site_detail_url":"https://comicvine.gamespot.com/orykan-tamarik/4005-81457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81526/","id":81526,"name":"The Engineer","site_detail_url":"https://comicvine.gamespot.com/the-engineer/4005-81526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81801/","id":81801,"name":"Tol Skorr","site_detail_url":"https://comicvine.gamespot.com/tol-skorr/4005-81801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82341/","id":82341,"name":"Ice King","site_detail_url":"https://comicvine.gamespot.com/ice-king/4005-82341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82343/","id":82343,"name":"Marceline the Vampire Queen","site_detail_url":"https://comicvine.gamespot.com/marceline-the-vampire-queen/4005-82343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82358/","id":82358,"name":"Master Mystic","site_detail_url":"https://comicvine.gamespot.com/master-mystic/4005-82358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82416/","id":82416,"name":"Kibito Kai","site_detail_url":"https://comicvine.gamespot.com/kibito-kai/4005-82416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82488/","id":82488,"name":"Aran Darko","site_detail_url":"https://comicvine.gamespot.com/aran-darko/4005-82488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82496/","id":82496,"name":"Resya","site_detail_url":"https://comicvine.gamespot.com/resya/4005-82496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82546/","id":82546,"name":"Shandra","site_detail_url":"https://comicvine.gamespot.com/shandra/4005-82546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82669/","id":82669,"name":"Xesh","site_detail_url":"https://comicvine.gamespot.com/xesh/4005-82669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82764/","id":82764,"name":"Tul'kar","site_detail_url":"https://comicvine.gamespot.com/tulkar/4005-82764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82857/","id":82857,"name":"Shazzan","site_detail_url":"https://comicvine.gamespot.com/shazzan/4005-82857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82889/","id":82889,"name":"Hogrum Chalk","site_detail_url":"https://comicvine.gamespot.com/hogrum-chalk/4005-82889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82901/","id":82901,"name":"Antonietta Fernandez","site_detail_url":"https://comicvine.gamespot.com/antonietta-fernandez/4005-82901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83089/","id":83089,"name":"Kaidan Alenko","site_detail_url":"https://comicvine.gamespot.com/kaidan-alenko/4005-83089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83091/","id":83091,"name":"Jack","site_detail_url":"https://comicvine.gamespot.com/jack/4005-83091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83095/","id":83095,"name":"Samara","site_detail_url":"https://comicvine.gamespot.com/samara/4005-83095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83097/","id":83097,"name":"Jacob Taylor","site_detail_url":"https://comicvine.gamespot.com/jacob-taylor/4005-83097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83119/","id":83119,"name":"Saren Arterius","site_detail_url":"https://comicvine.gamespot.com/saren-arterius/4005-83119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83143/","id":83143,"name":"Tasha Ryo","site_detail_url":"https://comicvine.gamespot.com/tasha-ryo/4005-83143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83144/","id":83144,"name":"Shae Koda","site_detail_url":"https://comicvine.gamespot.com/shae-koda/4005-83144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83145/","id":83145,"name":"Hawk Ryo","site_detail_url":"https://comicvine.gamespot.com/hawk-ryo/4005-83145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83146/","id":83146,"name":"Sek'nos Rath","site_detail_url":"https://comicvine.gamespot.com/seknos-rath/4005-83146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83163/","id":83163,"name":"Darth Rauder","site_detail_url":"https://comicvine.gamespot.com/darth-rauder/4005-83163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83419/","id":83419,"name":"Warlock","site_detail_url":"https://comicvine.gamespot.com/warlock/4005-83419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83519/","id":83519,"name":"Candice Crow","site_detail_url":"https://comicvine.gamespot.com/candice-crow/4005-83519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83582/","id":83582,"name":"Enerjak","site_detail_url":"https://comicvine.gamespot.com/enerjak/4005-83582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83589/","id":83589,"name":"Tess Mercer","site_detail_url":"https://comicvine.gamespot.com/tess-mercer/4005-83589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83591/","id":83591,"name":"Rogers","site_detail_url":"https://comicvine.gamespot.com/rogers/4005-83591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83647/","id":83647,"name":"Kurt Lance","site_detail_url":"https://comicvine.gamespot.com/kurt-lance/4005-83647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83684/","id":83684,"name":"Trill","site_detail_url":"https://comicvine.gamespot.com/trill/4005-83684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83737/","id":83737,"name":"Vitruvian Man","site_detail_url":"https://comicvine.gamespot.com/vitruvian-man/4005-83737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83813/","id":83813,"name":"Natromo","site_detail_url":"https://comicvine.gamespot.com/natromo/4005-83813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83943/","id":83943,"name":"Danny Phantom","site_detail_url":"https://comicvine.gamespot.com/danny-phantom/4005-83943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84178/","id":84178,"name":"Whispa","site_detail_url":"https://comicvine.gamespot.com/whispa/4005-84178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84197/","id":84197,"name":"Rand Ko","site_detail_url":"https://comicvine.gamespot.com/rand-ko/4005-84197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84299/","id":84299,"name":"Frankensurfer","site_detail_url":"https://comicvine.gamespot.com/frankensurfer/4005-84299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84380/","id":84380,"name":"Xena","site_detail_url":"https://comicvine.gamespot.com/xena/4005-84380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84443/","id":84443,"name":"Alpha","site_detail_url":"https://comicvine.gamespot.com/alpha/4005-84443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84497/","id":84497,"name":"Annabeth Chase","site_detail_url":"https://comicvine.gamespot.com/annabeth-chase/4005-84497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84550/","id":84550,"name":"Karabasan","site_detail_url":"https://comicvine.gamespot.com/karabasan/4005-84550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84699/","id":84699,"name":"Shojan","site_detail_url":"https://comicvine.gamespot.com/shojan/4005-84699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84852/","id":84852,"name":"Velvet Fox","site_detail_url":"https://comicvine.gamespot.com/velvet-fox/4005-84852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84993/","id":84993,"name":"Lifter","site_detail_url":"https://comicvine.gamespot.com/lifter/4005-84993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85006/","id":85006,"name":"Proctor","site_detail_url":"https://comicvine.gamespot.com/proctor/4005-85006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85081/","id":85081,"name":"Maria Mendoza","site_detail_url":"https://comicvine.gamespot.com/maria-mendoza/4005-85081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85153/","id":85153,"name":"Hank Bark","site_detail_url":"https://comicvine.gamespot.com/hank-bark/4005-85153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85169/","id":85169,"name":"Olga","site_detail_url":"https://comicvine.gamespot.com/olga/4005-85169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85446/","id":85446,"name":"Supernatural","site_detail_url":"https://comicvine.gamespot.com/supernatural/4005-85446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85491/","id":85491,"name":"Canal Vorfeed","site_detail_url":"https://comicvine.gamespot.com/canal-vorfeed/4005-85491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85518/","id":85518,"name":"Yhwach","site_detail_url":"https://comicvine.gamespot.com/yhwach/4005-85518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85772/","id":85772,"name":"Ngani Zho","site_detail_url":"https://comicvine.gamespot.com/ngani-zho/4005-85772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85773/","id":85773,"name":"Darth Mekhis","site_detail_url":"https://comicvine.gamespot.com/darth-mekhis/4005-85773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85775/","id":85775,"name":"The Weird Woman","site_detail_url":"https://comicvine.gamespot.com/the-weird-woman/4005-85775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85781/","id":85781,"name":"Nick Necro","site_detail_url":"https://comicvine.gamespot.com/nick-necro/4005-85781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85981/","id":85981,"name":"Luke Smith","site_detail_url":"https://comicvine.gamespot.com/luke-smith/4005-85981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86102/","id":86102,"name":"H'el","site_detail_url":"https://comicvine.gamespot.com/hel/4005-86102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86148/","id":86148,"name":"Condor","site_detail_url":"https://comicvine.gamespot.com/condor/4005-86148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86316/","id":86316,"name":"The Sith Emperor","site_detail_url":"https://comicvine.gamespot.com/the-sith-emperor/4005-86316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86374/","id":86374,"name":"Harry D'amour","site_detail_url":"https://comicvine.gamespot.com/harry-damour/4005-86374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86375/","id":86375,"name":"Darth Marr","site_detail_url":"https://comicvine.gamespot.com/darth-marr/4005-86375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86390/","id":86390,"name":"Carrion (Warren)","site_detail_url":"https://comicvine.gamespot.com/carrion-warren/4005-86390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86452/","id":86452,"name":"Starkiller Clone","site_detail_url":"https://comicvine.gamespot.com/starkiller-clone/4005-86452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86562/","id":86562,"name":"Twilight Sparkle","site_detail_url":"https://comicvine.gamespot.com/twilight-sparkle/4005-86562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86571/","id":86571,"name":"Rarity","site_detail_url":"https://comicvine.gamespot.com/rarity/4005-86571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86686/","id":86686,"name":"Hunger","site_detail_url":"https://comicvine.gamespot.com/hunger/4005-86686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86734/","id":86734,"name":"Amuro Ray","site_detail_url":"https://comicvine.gamespot.com/amuro-ray/4005-86734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86869/","id":86869,"name":"Mara Prince","site_detail_url":"https://comicvine.gamespot.com/mara-prince/4005-86869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86940/","id":86940,"name":"Eyghon","site_detail_url":"https://comicvine.gamespot.com/eyghon/4005-86940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86942/","id":86942,"name":"Alpha-152","site_detail_url":"https://comicvine.gamespot.com/alpha-152/4005-86942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87025/","id":87025,"name":"Matriarch Benezia","site_detail_url":"https://comicvine.gamespot.com/matriarch-benezia/4005-87025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87028/","id":87028,"name":"Thane Krios","site_detail_url":"https://comicvine.gamespot.com/thane-krios/4005-87028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87201/","id":87201,"name":"Princess Celestia","site_detail_url":"https://comicvine.gamespot.com/princess-celestia/4005-87201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87202/","id":87202,"name":"Princess Luna","site_detail_url":"https://comicvine.gamespot.com/princess-luna/4005-87202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87211/","id":87211,"name":"Pikkon","site_detail_url":"https://comicvine.gamespot.com/pikkon/4005-87211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87216/","id":87216,"name":"Cooler","site_detail_url":"https://comicvine.gamespot.com/cooler/4005-87216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87278/","id":87278,"name":"TK McCabe","site_detail_url":"https://comicvine.gamespot.com/tk-mccabe/4005-87278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87284/","id":87284,"name":"The Bastard","site_detail_url":"https://comicvine.gamespot.com/the-bastard/4005-87284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87508/","id":87508,"name":"Khalid Ben-Hassin","site_detail_url":"https://comicvine.gamespot.com/khalid-ben-hassin/4005-87508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87795/","id":87795,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/rapture/4005-87795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88011/","id":88011,"name":"Hunson Abadeer","site_detail_url":"https://comicvine.gamespot.com/hunson-abadeer/4005-88011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88061/","id":88061,"name":"Nathan Grantham","site_detail_url":"https://comicvine.gamespot.com/nathan-grantham/4005-88061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88306/","id":88306,"name":"Jenny Soul","site_detail_url":"https://comicvine.gamespot.com/jenny-soul/4005-88306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88728/","id":88728,"name":"Brandon Sampson","site_detail_url":"https://comicvine.gamespot.com/brandon-sampson/4005-88728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88731/","id":88731,"name":"Chloe Sampson","site_detail_url":"https://comicvine.gamespot.com/chloe-sampson/4005-88731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88804/","id":88804,"name":"Nightmare Nurse","site_detail_url":"https://comicvine.gamespot.com/nightmare-nurse/4005-88804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89060/","id":89060,"name":"T:D:H:D","site_detail_url":"https://comicvine.gamespot.com/tdhd/4005-89060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89161/","id":89161,"name":"Shauna Belzer","site_detail_url":"https://comicvine.gamespot.com/shauna-belzer/4005-89161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89537/","id":89537,"name":"Tabitha Stephens","site_detail_url":"https://comicvine.gamespot.com/tabitha-stephens/4005-89537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89538/","id":89538,"name":"Urdnot Wrex","site_detail_url":"https://comicvine.gamespot.com/urdnot-wrex/4005-89538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89541/","id":89541,"name":"Mother Talzin","site_detail_url":"https://comicvine.gamespot.com/mother-talzin/4005-89541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89544/","id":89544,"name":"Bruu Jun-Fan","site_detail_url":"https://comicvine.gamespot.com/bruu-jun-fan/4005-89544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89545/","id":89545,"name":"Grohto","site_detail_url":"https://comicvine.gamespot.com/grohto/4005-89545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89546/","id":89546,"name":"Ko Solok","site_detail_url":"https://comicvine.gamespot.com/ko-solok/4005-89546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89548/","id":89548,"name":"Javik","site_detail_url":"https://comicvine.gamespot.com/javik/4005-89548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89593/","id":89593,"name":"Esteban Ortega","site_detail_url":"https://comicvine.gamespot.com/esteban-ortega/4005-89593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89645/","id":89645,"name":"Stellara","site_detail_url":"https://comicvine.gamespot.com/stellara/4005-89645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89831/","id":89831,"name":"Doraemon","site_detail_url":"https://comicvine.gamespot.com/doraemon/4005-89831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90132/","id":90132,"name":"Mongul the Elder","site_detail_url":"https://comicvine.gamespot.com/mongul-the-elder/4005-90132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90186/","id":90186,"name":"Tenchi Masaki","site_detail_url":"https://comicvine.gamespot.com/tenchi-masaki/4005-90186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90244/","id":90244,"name":"Trixie Lulamoon","site_detail_url":"https://comicvine.gamespot.com/trixie-lulamoon/4005-90244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90250/","id":90250,"name":"Daegen Lok","site_detail_url":"https://comicvine.gamespot.com/daegen-lok/4005-90250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90251/","id":90251,"name":"Tem Madog","site_detail_url":"https://comicvine.gamespot.com/tem-madog/4005-90251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90363/","id":90363,"name":"December Graystone","site_detail_url":"https://comicvine.gamespot.com/december-graystone/4005-90363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90512/","id":90512,"name":"H.I.V.E. Queen","site_detail_url":"https://comicvine.gamespot.com/h-i-v-e-queen/4005-90512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90755/","id":90755,"name":"Master Xehanort","site_detail_url":"https://comicvine.gamespot.com/master-xehanort/4005-90755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91270/","id":91270,"name":"Darth Wredd","site_detail_url":"https://comicvine.gamespot.com/darth-wredd/4005-91270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91538/","id":91538,"name":"Ricorta","site_detail_url":"https://comicvine.gamespot.com/ricorta/4005-91538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91792/","id":91792,"name":"Discordia","site_detail_url":"https://comicvine.gamespot.com/discordia/4005-91792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91919/","id":91919,"name":"M'yri'ah J'onzz","site_detail_url":"https://comicvine.gamespot.com/myriah-jonzz/4005-91919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92155/","id":92155,"name":"Rose Steadbaur","site_detail_url":"https://comicvine.gamespot.com/rose-steadbaur/4005-92155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92217/","id":92217,"name":"Celeste Brooks","site_detail_url":"https://comicvine.gamespot.com/celeste-brooks/4005-92217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92457/","id":92457,"name":"Annikin Starkiller","site_detail_url":"https://comicvine.gamespot.com/annikin-starkiller/4005-92457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92713/","id":92713,"name":"Princess Cadance","site_detail_url":"https://comicvine.gamespot.com/princess-cadance/4005-92713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92716/","id":92716,"name":"Maha Manav","site_detail_url":"https://comicvine.gamespot.com/maha-manav/4005-92716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92951/","id":92951,"name":"Black Knight","site_detail_url":"https://comicvine.gamespot.com/black-knight/4005-92951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93225/","id":93225,"name":"Goliad","site_detail_url":"https://comicvine.gamespot.com/goliad/4005-93225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93313/","id":93313,"name":"Jao Assam","site_detail_url":"https://comicvine.gamespot.com/jao-assam/4005-93313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93316/","id":93316,"name":"Commander Vyrnnu","site_detail_url":"https://comicvine.gamespot.com/commander-vyrnnu/4005-93316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93949/","id":93949,"name":"Zalla","site_detail_url":"https://comicvine.gamespot.com/zalla/4005-93949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94210/","id":94210,"name":"Paalko","site_detail_url":"https://comicvine.gamespot.com/paalko/4005-94210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94254/","id":94254,"name":"Krrish","site_detail_url":"https://comicvine.gamespot.com/krrish/4005-94254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94476/","id":94476,"name":"Jason Blood ","site_detail_url":"https://comicvine.gamespot.com/jason-blood/4005-94476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94568/","id":94568,"name":"Darth Malgus","site_detail_url":"https://comicvine.gamespot.com/darth-malgus/4005-94568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94683/","id":94683,"name":"The Junkman","site_detail_url":"https://comicvine.gamespot.com/the-junkman/4005-94683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94914/","id":94914,"name":"Zett Jukassa","site_detail_url":"https://comicvine.gamespot.com/zett-jukassa/4005-94914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95477/","id":95477,"name":"Super-Ego","site_detail_url":"https://comicvine.gamespot.com/super-ego/4005-95477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95973/","id":95973,"name":"Professor Y","site_detail_url":"https://comicvine.gamespot.com/professor-y/4005-95973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95992/","id":95992,"name":"Cowborg","site_detail_url":"https://comicvine.gamespot.com/cowborg/4005-95992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96026/","id":96026,"name":"Yekop","site_detail_url":"https://comicvine.gamespot.com/yekop/4005-96026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96217/","id":96217,"name":"Stanley Hale","site_detail_url":"https://comicvine.gamespot.com/stanley-hale/4005-96217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96237/","id":96237,"name":"Remulus Dreypa","site_detail_url":"https://comicvine.gamespot.com/remulus-dreypa/4005-96237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96829/","id":96829,"name":"Jellal Fernandes","site_detail_url":"https://comicvine.gamespot.com/jellal-fernandes/4005-96829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96846/","id":96846,"name":"Locus","site_detail_url":"https://comicvine.gamespot.com/locus/4005-96846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96880/","id":96880,"name":"Bonnie Bennett","site_detail_url":"https://comicvine.gamespot.com/bonnie-bennett/4005-96880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97254/","id":97254,"name":"The Holy One","site_detail_url":"https://comicvine.gamespot.com/the-holy-one/4005-97254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97482/","id":97482,"name":"Nate Xavier","site_detail_url":"https://comicvine.gamespot.com/nate-xavier/4005-97482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98314/","id":98314,"name":"Gestalt","site_detail_url":"https://comicvine.gamespot.com/gestalt/4005-98314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98355/","id":98355,"name":"Liz T. Blood","site_detail_url":"https://comicvine.gamespot.com/liz-t-blood/4005-98355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98451/","id":98451,"name":"Siege","site_detail_url":"https://comicvine.gamespot.com/siege/4005-98451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98452/","id":98452,"name":"Quaros","site_detail_url":"https://comicvine.gamespot.com/quaros/4005-98452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98454/","id":98454,"name":"Gurion","site_detail_url":"https://comicvine.gamespot.com/gurion/4005-98454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98644/","id":98644,"name":"Monkey Brains","site_detail_url":"https://comicvine.gamespot.com/monkey-brains/4005-98644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98707/","id":98707,"name":"Tela Vasir","site_detail_url":"https://comicvine.gamespot.com/tela-vasir/4005-98707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98731/","id":98731,"name":"Cerulean Star","site_detail_url":"https://comicvine.gamespot.com/cerulean-star/4005-98731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99506/","id":99506,"name":"Animalia","site_detail_url":"https://comicvine.gamespot.com/animalia/4005-99506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99910/","id":99910,"name":"Cruiser","site_detail_url":"https://comicvine.gamespot.com/cruiser/4005-99910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100117/","id":100117,"name":"Joshua Black","site_detail_url":"https://comicvine.gamespot.com/joshua-black/4005-100117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100483/","id":100483,"name":"Snapshot","site_detail_url":"https://comicvine.gamespot.com/snapshot/4005-100483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100637/","id":100637,"name":"Silver Adept","site_detail_url":"https://comicvine.gamespot.com/silver-adept/4005-100637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100770/","id":100770,"name":"Wuya","site_detail_url":"https://comicvine.gamespot.com/wuya/4005-100770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101679/","id":101679,"name":"Hakudoshi","site_detail_url":"https://comicvine.gamespot.com/hakudoshi/4005-101679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101698/","id":101698,"name":"Miki Saegusa","site_detail_url":"https://comicvine.gamespot.com/miki-saegusa/4005-101698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101874/","id":101874,"name":"Phantasm","site_detail_url":"https://comicvine.gamespot.com/phantasm/4005-101874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102287/","id":102287,"name":"Lilith","site_detail_url":"https://comicvine.gamespot.com/lilith/4005-102287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102788/","id":102788,"name":"Radia","site_detail_url":"https://comicvine.gamespot.com/radia/4005-102788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102827/","id":102827,"name":"Probe","site_detail_url":"https://comicvine.gamespot.com/probe/4005-102827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103229/","id":103229,"name":"Nick Scryer","site_detail_url":"https://comicvine.gamespot.com/nick-scryer/4005-103229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103718/","id":103718,"name":"Pops Maellard","site_detail_url":"https://comicvine.gamespot.com/pops-maellard/4005-103718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104473/","id":104473,"name":"Psych","site_detail_url":"https://comicvine.gamespot.com/psych/4005-104473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105170/","id":105170,"name":"Jocasta Nu","site_detail_url":"https://comicvine.gamespot.com/jocasta-nu/4005-105170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105175/","id":105175,"name":"Stass Allie","site_detail_url":"https://comicvine.gamespot.com/stass-allie/4005-105175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105200/","id":105200,"name":"Colonel Glass","site_detail_url":"https://comicvine.gamespot.com/colonel-glass/4005-105200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105571/","id":105571,"name":"Akiza Izinski","site_detail_url":"https://comicvine.gamespot.com/akiza-izinski/4005-105571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105645/","id":105645,"name":"Tony Castaway","site_detail_url":"https://comicvine.gamespot.com/tony-castaway/4005-105645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105646/","id":105646,"name":"Tia Castaway","site_detail_url":"https://comicvine.gamespot.com/tia-castaway/4005-105646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105892/","id":105892,"name":"Sakhmet","site_detail_url":"https://comicvine.gamespot.com/sakhmet/4005-105892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105952/","id":105952,"name":"Matthew Malloy","site_detail_url":"https://comicvine.gamespot.com/matthew-malloy/4005-105952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106670/","id":106670,"name":"Mnemonoid","site_detail_url":"https://comicvine.gamespot.com/mnemonoid/4005-106670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107137/","id":107137,"name":"Tornado","site_detail_url":"https://comicvine.gamespot.com/tornado/4005-107137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-107524/","id":107524,"name":"Rikuo Himura","site_detail_url":"https://comicvine.gamespot.com/rikuo-himura/4005-107524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108017/","id":108017,"name":"Minerva","site_detail_url":"https://comicvine.gamespot.com/minerva/4005-108017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108149/","id":108149,"name":"Chandkaal","site_detail_url":"https://comicvine.gamespot.com/chandkaal/4005-108149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108787/","id":108787,"name":"Rajeet ","site_detail_url":"https://comicvine.gamespot.com/rajeet/4005-108787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108806/","id":108806,"name":"Chi You","site_detail_url":"https://comicvine.gamespot.com/chi-you/4005-108806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108889/","id":108889,"name":"Menta","site_detail_url":"https://comicvine.gamespot.com/menta/4005-108889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108964/","id":108964,"name":"Najimi Ajimu","site_detail_url":"https://comicvine.gamespot.com/najimi-ajimu/4005-108964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109330/","id":109330,"name":"Grace Sciuridae","site_detail_url":"https://comicvine.gamespot.com/grace-sciuridae/4005-109330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109531/","id":109531,"name":"Father","site_detail_url":"https://comicvine.gamespot.com/father/4005-109531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109905/","id":109905,"name":"Relay","site_detail_url":"https://comicvine.gamespot.com/relay/4005-109905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110072/","id":110072,"name":"Bronwen","site_detail_url":"https://comicvine.gamespot.com/bronwen/4005-110072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110096/","id":110096,"name":"The Poet","site_detail_url":"https://comicvine.gamespot.com/the-poet/4005-110096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110429/","id":110429,"name":"Philip Chang","site_detail_url":"https://comicvine.gamespot.com/philip-chang/4005-110429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110845/","id":110845,"name":"Henry Parrish","site_detail_url":"https://comicvine.gamespot.com/henry-parrish/4005-110845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111337/","id":111337,"name":"Rufus Lore","site_detail_url":"https://comicvine.gamespot.com/rufus-lore/4005-111337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111830/","id":111830,"name":"Takeda","site_detail_url":"https://comicvine.gamespot.com/takeda/4005-111830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111840/","id":111840,"name":"Morris Santiago","site_detail_url":"https://comicvine.gamespot.com/morris-santiago/4005-111840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111963/","id":111963,"name":"Lis","site_detail_url":"https://comicvine.gamespot.com/lis/4005-111963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112300/","id":112300,"name":"Falcon","site_detail_url":"https://comicvine.gamespot.com/falcon/4005-112300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112483/","id":112483,"name":"Kevin","site_detail_url":"https://comicvine.gamespot.com/kevin/4005-112483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112488/","id":112488,"name":"Buchanan","site_detail_url":"https://comicvine.gamespot.com/buchanan/4005-112488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113563/","id":113563,"name":"Herr Rothen","site_detail_url":"https://comicvine.gamespot.com/herr-rothen/4005-113563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113627/","id":113627,"name":"LarryBoy","site_detail_url":"https://comicvine.gamespot.com/larryboy/4005-113627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113748/","id":113748,"name":"Charal","site_detail_url":"https://comicvine.gamespot.com/charal/4005-113748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114080/","id":114080,"name":"Yatini","site_detail_url":"https://comicvine.gamespot.com/yatini/4005-114080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114213/","id":114213,"name":"Sramian Snitch","site_detail_url":"https://comicvine.gamespot.com/sramian-snitch/4005-114213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114353/","id":114353,"name":"Brainy Barker","site_detail_url":"https://comicvine.gamespot.com/brainy-barker/4005-114353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114580/","id":114580,"name":"Prometheus","site_detail_url":"https://comicvine.gamespot.com/prometheus/4005-114580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114791/","id":114791,"name":"Anita King","site_detail_url":"https://comicvine.gamespot.com/anita-king/4005-114791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114792/","id":114792,"name":"Maggie Mui","site_detail_url":"https://comicvine.gamespot.com/maggie-mui/4005-114792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114793/","id":114793,"name":"Michelle Cheung","site_detail_url":"https://comicvine.gamespot.com/michelle-cheung/4005-114793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115982/","id":115982,"name":"Ezra Bridger","site_detail_url":"https://comicvine.gamespot.com/ezra-bridger/4005-115982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115989/","id":115989,"name":"Kanan Jarrus","site_detail_url":"https://comicvine.gamespot.com/kanan-jarrus/4005-115989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116164/","id":116164,"name":"Accelerator","site_detail_url":"https://comicvine.gamespot.com/accelerator/4005-116164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-116288/","id":116288,"name":"Hellish Blizzard","site_detail_url":"https://comicvine.gamespot.com/hellish-blizzard/4005-116288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117591/","id":117591,"name":"Kylo Ren","site_detail_url":"https://comicvine.gamespot.com/kylo-ren/4005-117591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117906/","id":117906,"name":"Grail","site_detail_url":"https://comicvine.gamespot.com/grail/4005-117906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118158/","id":118158,"name":"Shootan","site_detail_url":"https://comicvine.gamespot.com/shootan/4005-118158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118320/","id":118320,"name":"Tesla","site_detail_url":"https://comicvine.gamespot.com/tesla/4005-118320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118617/","id":118617,"name":"Zik","site_detail_url":"https://comicvine.gamespot.com/zik/4005-118617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118755/","id":118755,"name":"Regent","site_detail_url":"https://comicvine.gamespot.com/regent/4005-118755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118861/","id":118861,"name":"Alena","site_detail_url":"https://comicvine.gamespot.com/alena/4005-118861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119086/","id":119086,"name":"Mr. Biscuits","site_detail_url":"https://comicvine.gamespot.com/mr-biscuits/4005-119086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119654/","id":119654,"name":"Skal'Nas","site_detail_url":"https://comicvine.gamespot.com/skalnas/4005-119654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119705/","id":119705,"name":"Singularity","site_detail_url":"https://comicvine.gamespot.com/singularity/4005-119705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121695/","id":121695,"name":"Daryl Wessel","site_detail_url":"https://comicvine.gamespot.com/daryl-wessel/4005-121695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122230/","id":122230,"name":"Gaya: The Mentor","site_detail_url":"https://comicvine.gamespot.com/gaya-the-mentor/4005-122230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122733/","id":122733,"name":"Tzeentch","site_detail_url":"https://comicvine.gamespot.com/tzeentch/4005-122733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122734/","id":122734,"name":"God-Emperor of Mankind","site_detail_url":"https://comicvine.gamespot.com/godemperor-of-mankind/4005-122734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122756/","id":122756,"name":"Lord Commander Dante","site_detail_url":"https://comicvine.gamespot.com/lord-commander-dante/4005-122756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-122757/","id":122757,"name":"Mephiston","site_detail_url":"https://comicvine.gamespot.com/mephiston/4005-122757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123198/","id":123198,"name":"Lady Accident","site_detail_url":"https://comicvine.gamespot.com/lady-accident/4005-123198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123293/","id":123293,"name":"Aya Mikage","site_detail_url":"https://comicvine.gamespot.com/aya-mikage/4005-123293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123324/","id":123324,"name":"Suzumi Aogiri","site_detail_url":"https://comicvine.gamespot.com/suzumi-aogiri/4005-123324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123333/","id":123333,"name":"Rowan Black","site_detail_url":"https://comicvine.gamespot.com/rowan-black/4005-123333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124714/","id":124714,"name":"Tatsumaki","site_detail_url":"https://comicvine.gamespot.com/tatsumaki/4005-124714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125053/","id":125053,"name":"Telekinian","site_detail_url":"https://comicvine.gamespot.com/telekinian/4005-125053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125216/","id":125216,"name":"Blanque","site_detail_url":"https://comicvine.gamespot.com/blanque/4005-125216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125273/","id":125273,"name":"Rey","site_detail_url":"https://comicvine.gamespot.com/rey/4005-125273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125332/","id":125332,"name":"Solasido Sharpner","site_detail_url":"https://comicvine.gamespot.com/solasido-sharpner/4005-125332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-125982/","id":125982,"name":"Janus The Everyway Man","site_detail_url":"https://comicvine.gamespot.com/janus-the-everyway-man/4005-125982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126128/","id":126128,"name":"Zappityhoof","site_detail_url":"https://comicvine.gamespot.com/zappityhoof/4005-126128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126129/","id":126129,"name":"Decepticolt","site_detail_url":"https://comicvine.gamespot.com/decepticolt/4005-126129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126130/","id":126130,"name":"Goldcap","site_detail_url":"https://comicvine.gamespot.com/goldcap/4005-126130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126273/","id":126273,"name":"Rhonda Fleming","site_detail_url":"https://comicvine.gamespot.com/rhonda-fleming/4005-126273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126646/","id":126646,"name":"Fi","site_detail_url":"https://comicvine.gamespot.com/fi/4005-126646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126721/","id":126721,"name":"Michele Silenzi","site_detail_url":"https://comicvine.gamespot.com/michele-silenzi/4005-126721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126764/","id":126764,"name":"Yelena","site_detail_url":"https://comicvine.gamespot.com/yelena/4005-126764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126824/","id":126824,"name":"Kobik","site_detail_url":"https://comicvine.gamespot.com/kobik/4005-126824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127056/","id":127056,"name":"Dr. Mortis","site_detail_url":"https://comicvine.gamespot.com/dr-mortis/4005-127056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127858/","id":127858,"name":"Mr. Illusion","site_detail_url":"https://comicvine.gamespot.com/mr-illusion/4005-127858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128797/","id":128797,"name":"Killer Thrill","site_detail_url":"https://comicvine.gamespot.com/killer-thrill/4005-128797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129467/","id":129467,"name":"Dorami","site_detail_url":"https://comicvine.gamespot.com/dorami/4005-129467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129821/","id":129821,"name":"Lulu","site_detail_url":"https://comicvine.gamespot.com/lulu/4005-129821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130026/","id":130026,"name":"Rachel Oakley","site_detail_url":"https://comicvine.gamespot.com/rachel-oakley/4005-130026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130178/","id":130178,"name":"Elisa Sinclair","site_detail_url":"https://comicvine.gamespot.com/elisa-sinclair/4005-130178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130329/","id":130329,"name":"Lady Bandi","site_detail_url":"https://comicvine.gamespot.com/lady-bandi/4005-130329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130427/","id":130427,"name":"Kathy Branden","site_detail_url":"https://comicvine.gamespot.com/kathy-branden/4005-130427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130472/","id":130472,"name":"Ainz Ooal Gown","site_detail_url":"https://comicvine.gamespot.com/ainz-ooal-gown/4005-130472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130989/","id":130989,"name":"Cobb Branden","site_detail_url":"https://comicvine.gamespot.com/cobb-branden/4005-130989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131441/","id":131441,"name":"Morit","site_detail_url":"https://comicvine.gamespot.com/morit/4005-131441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132221/","id":132221,"name":"Snoke","site_detail_url":"https://comicvine.gamespot.com/snoke/4005-132221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132583/","id":132583,"name":"Ardeni Lakam","site_detail_url":"https://comicvine.gamespot.com/ardeni-lakam/4005-132583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132881/","id":132881,"name":"Zamasu","site_detail_url":"https://comicvine.gamespot.com/zamasu/4005-132881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133011/","id":133011,"name":"Blind Sparrow","site_detail_url":"https://comicvine.gamespot.com/blind-sparrow/4005-133011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133197/","id":133197,"name":"Viper","site_detail_url":"https://comicvine.gamespot.com/viper/4005-133197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133745/","id":133745,"name":"Natasha White","site_detail_url":"https://comicvine.gamespot.com/natasha-white/4005-133745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134196/","id":134196,"name":"Yennefer","site_detail_url":"https://comicvine.gamespot.com/yennefer/4005-134196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134398/","id":134398,"name":"Kefka Palazzo","site_detail_url":"https://comicvine.gamespot.com/kefka-palazzo/4005-134398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134589/","id":134589,"name":"Enfuego","site_detail_url":"https://comicvine.gamespot.com/enfuego/4005-134589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134931/","id":134931,"name":"Grana","site_detail_url":"https://comicvine.gamespot.com/grana/4005-134931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134948/","id":134948,"name":"Shao Tenjuin","site_detail_url":"https://comicvine.gamespot.com/shao-tenjuin/4005-134948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135044/","id":135044,"name":"Thun-Dohr","site_detail_url":"https://comicvine.gamespot.com/thun-dohr/4005-135044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135104/","id":135104,"name":"Glynda Goodwitch","site_detail_url":"https://comicvine.gamespot.com/glynda-goodwitch/4005-135104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135276/","id":135276,"name":"Harmony","site_detail_url":"https://comicvine.gamespot.com/harmony/4005-135276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135860/","id":135860,"name":"Grand Inquisitor","site_detail_url":"https://comicvine.gamespot.com/grand-inquisitor/4005-135860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135966/","id":135966,"name":"Meetra Surik","site_detail_url":"https://comicvine.gamespot.com/meetra-surik/4005-135966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136536/","id":136536,"name":"Ommin","site_detail_url":"https://comicvine.gamespot.com/ommin/4005-136536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138051/","id":138051,"name":"Jump","site_detail_url":"https://comicvine.gamespot.com/jump/4005-138051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138108/","id":138108,"name":"Super Android 17","site_detail_url":"https://comicvine.gamespot.com/super-android-17/4005-138108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138125/","id":138125,"name":"Psychik Grrrl","site_detail_url":"https://comicvine.gamespot.com/psychik-grrrl/4005-138125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138147/","id":138147,"name":"Kid Kinergy","site_detail_url":"https://comicvine.gamespot.com/kid-kinergy/4005-138147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138968/","id":138968,"name":"Noble","site_detail_url":"https://comicvine.gamespot.com/noble/4005-138968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139149/","id":139149,"name":"Ed","site_detail_url":"https://comicvine.gamespot.com/ed/4005-139149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139760/","id":139760,"name":"Mattie Sullivan","site_detail_url":"https://comicvine.gamespot.com/mattie-sullivan/4005-139760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140186/","id":140186,"name":"First Firmament","site_detail_url":"https://comicvine.gamespot.com/first-firmament/4005-140186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140354/","id":140354,"name":"Aiolin Astarte","site_detail_url":"https://comicvine.gamespot.com/aiolin-astarte/4005-140354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140355/","id":140355,"name":"Fifth Brother","site_detail_url":"https://comicvine.gamespot.com/fifth-brother/4005-140355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140356/","id":140356,"name":"Seventh Sister","site_detail_url":"https://comicvine.gamespot.com/seventh-sister/4005-140356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140390/","id":140390,"name":"Kirak Infil'a","site_detail_url":"https://comicvine.gamespot.com/kirak-infila/4005-140390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140452/","id":140452,"name":"Agent Zeta","site_detail_url":"https://comicvine.gamespot.com/agent-zeta/4005-140452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140508/","id":140508,"name":"Tiplee","site_detail_url":"https://comicvine.gamespot.com/tiplee/4005-140508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140516/","id":140516,"name":"Darth Jadus","site_detail_url":"https://comicvine.gamespot.com/darth-jadus/4005-140516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140541/","id":140541,"name":"Baron Nax Cirvan","site_detail_url":"https://comicvine.gamespot.com/baron-nax-cirvan/4005-140541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140593/","id":140593,"name":"Bela Kiwiiks","site_detail_url":"https://comicvine.gamespot.com/bela-kiwiiks/4005-140593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140600/","id":140600,"name":"Judd","site_detail_url":"https://comicvine.gamespot.com/judd/4005-140600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140601/","id":140601,"name":"Salmara","site_detail_url":"https://comicvine.gamespot.com/salmara/4005-140601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140732/","id":140732,"name":"Darth Tenebrous","site_detail_url":"https://comicvine.gamespot.com/darth-tenebrous/4005-140732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141001/","id":141001,"name":"Arden Lyn","site_detail_url":"https://comicvine.gamespot.com/arden-lyn/4005-141001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141342/","id":141342,"name":"Neku Sakuraba","site_detail_url":"https://comicvine.gamespot.com/neku-sakuraba/4005-141342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-141828/","id":141828,"name":"Gabriel Tosh","site_detail_url":"https://comicvine.gamespot.com/gabriel-tosh/4005-141828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143552/","id":143552,"name":"Dust","site_detail_url":"https://comicvine.gamespot.com/dust/4005-143552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143772/","id":143772,"name":"Crusader","site_detail_url":"https://comicvine.gamespot.com/crusader/4005-143772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145192/","id":145192,"name":"Mentacle","site_detail_url":"https://comicvine.gamespot.com/mentacle/4005-145192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146008/","id":146008,"name":"Cris Kend","site_detail_url":"https://comicvine.gamespot.com/cris-kend/4005-146008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146112/","id":146112,"name":"Flashbang","site_detail_url":"https://comicvine.gamespot.com/flashbang/4005-146112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146483/","id":146483,"name":"Kagato","site_detail_url":"https://comicvine.gamespot.com/kagato/4005-146483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146789/","id":146789,"name":"Nyreen Kandros","site_detail_url":"https://comicvine.gamespot.com/nyreen-kandros/4005-146789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148265/","id":148265,"name":"Tenth Brother","site_detail_url":"https://comicvine.gamespot.com/tenth-brother/4005-148265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148266/","id":148266,"name":"Eighth Brother","site_detail_url":"https://comicvine.gamespot.com/eighth-brother/4005-148266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148267/","id":148267,"name":"Ninth Sister","site_detail_url":"https://comicvine.gamespot.com/ninth-sister/4005-148267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148273/","id":148273,"name":"Sixth Brother","site_detail_url":"https://comicvine.gamespot.com/sixth-brother/4005-148273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148493/","id":148493,"name":"Human Dynamo","site_detail_url":"https://comicvine.gamespot.com/human-dynamo/4005-148493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148783/","id":148783,"name":"Ferren Barr","site_detail_url":"https://comicvine.gamespot.com/ferren-barr/4005-148783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148800/","id":148800,"name":"Cordelia Moonstone","site_detail_url":"https://comicvine.gamespot.com/cordelia-moonstone/4005-148800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148801/","id":148801,"name":"Leonard Moonstone","site_detail_url":"https://comicvine.gamespot.com/leonard-moonstone/4005-148801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148802/","id":148802,"name":"Regan Moonstone","site_detail_url":"https://comicvine.gamespot.com/regan-moonstone/4005-148802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148803/","id":148803,"name":"Gabriel Moonstone","site_detail_url":"https://comicvine.gamespot.com/gabriel-moonstone/4005-148803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148979/","id":148979,"name":"Astronema","site_detail_url":"https://comicvine.gamespot.com/astronema/4005-148979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149215/","id":149215,"name":"Verla","site_detail_url":"https://comicvine.gamespot.com/verla/4005-149215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149462/","id":149462,"name":"Progenitor","site_detail_url":"https://comicvine.gamespot.com/progenitor/4005-149462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149463/","id":149463,"name":"Zgreb the Sorrower","site_detail_url":"https://comicvine.gamespot.com/zgreb-the-sorrower/4005-149463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149505/","id":149505,"name":"Upside Down Man","site_detail_url":"https://comicvine.gamespot.com/upside-down-man/4005-149505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149871/","id":149871,"name":"Oni","site_detail_url":"https://comicvine.gamespot.com/oni/4005-149871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150290/","id":150290,"name":"Phoenix 1,000,000 BC","site_detail_url":"https://comicvine.gamespot.com/phoenix-1000000-bc/4005-150290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150298/","id":150298,"name":"Aunt Clara","site_detail_url":"https://comicvine.gamespot.com/aunt-clara/4005-150298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150482/","id":150482,"name":"Dark Ranger","site_detail_url":"https://comicvine.gamespot.com/dark-ranger/4005-150482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151137/","id":151137,"name":"Carrie White","site_detail_url":"https://comicvine.gamespot.com/carrie-white/4005-151137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152006/","id":152006,"name":"Momin","site_detail_url":"https://comicvine.gamespot.com/momin/4005-152006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153691/","id":153691,"name":"Justin Gaines","site_detail_url":"https://comicvine.gamespot.com/justin-gaines/4005-153691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153943/","id":153943,"name":"Psych","site_detail_url":"https://comicvine.gamespot.com/psych/4005-153943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153949/","id":153949,"name":"Eleven","site_detail_url":"https://comicvine.gamespot.com/eleven/4005-153949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154763/","id":154763,"name":"Moro","site_detail_url":"https://comicvine.gamespot.com/moro/4005-154763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156338/","id":156338,"name":"Atlantiades","site_detail_url":"https://comicvine.gamespot.com/atlantiades/4005-156338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156370/","id":156370,"name":"Sunspot (Grey)","site_detail_url":"https://comicvine.gamespot.com/sunspot-grey/4005-156370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157352/","id":157352,"name":"Cardinal","site_detail_url":"https://comicvine.gamespot.com/cardinal/4005-157352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157425/","id":157425,"name":"Saganbo","site_detail_url":"https://comicvine.gamespot.com/saganbo/4005-157425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157799/","id":157799,"name":"Psycho Jenny","site_detail_url":"https://comicvine.gamespot.com/psycho-jenny/4005-157799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158568/","id":158568,"name":"Apastron","site_detail_url":"https://comicvine.gamespot.com/apastron/4005-158568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160213/","id":160213,"name":"Brainman","site_detail_url":"https://comicvine.gamespot.com/brainman/4005-160213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161394/","id":161394,"name":"White Eagle","site_detail_url":"https://comicvine.gamespot.com/white-eagle/4005-161394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161402/","id":161402,"name":"Ren","site_detail_url":"https://comicvine.gamespot.com/ren/4005-161402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161412/","id":161412,"name":"Lili Ardat","site_detail_url":"https://comicvine.gamespot.com/lili-ardat/4005-161412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161870/","id":161870,"name":"Second Sister","site_detail_url":"https://comicvine.gamespot.com/second-sister/4005-161870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161878/","id":161878,"name":"Maslo-Skaff","site_detail_url":"https://comicvine.gamespot.com/maslo-skaff/4005-161878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161879/","id":161879,"name":"Odu","site_detail_url":"https://comicvine.gamespot.com/odu/4005-161879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161912/","id":161912,"name":"Azrakel","site_detail_url":"https://comicvine.gamespot.com/azrakel/4005-161912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161972/","id":161972,"name":"Cho'na Bene","site_detail_url":"https://comicvine.gamespot.com/chona-bene/4005-161972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161986/","id":161986,"name":"Bokar ","site_detail_url":"https://comicvine.gamespot.com/bokar/4005-161986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162006/","id":162006,"name":"Namman Cha","site_detail_url":"https://comicvine.gamespot.com/namman-cha/4005-162006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162069/","id":162069,"name":"Vulta Daanat","site_detail_url":"https://comicvine.gamespot.com/vulta-daanat/4005-162069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162083/","id":162083,"name":"Sayar Dun-La","site_detail_url":"https://comicvine.gamespot.com/sayar-dun-la/4005-162083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162085/","id":162085,"name":"Lumas Etima","site_detail_url":"https://comicvine.gamespot.com/lumas-etima/4005-162085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162123/","id":162123,"name":"Nuru Kungurama","site_detail_url":"https://comicvine.gamespot.com/nuru-kungurama/4005-162123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162145/","id":162145,"name":"Guun Han Saresh","site_detail_url":"https://comicvine.gamespot.com/guun-han-saresh/4005-162145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162247/","id":162247,"name":"Xero","site_detail_url":"https://comicvine.gamespot.com/xero/4005-162247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162758/","id":162758,"name":"Brainstorm","site_detail_url":"https://comicvine.gamespot.com/brainstorm/4005-162758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162810/","id":162810,"name":"Claudine Bobash","site_detail_url":"https://comicvine.gamespot.com/claudine-bobash/4005-162810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163223/","id":163223,"name":"Helena Morkov","site_detail_url":"https://comicvine.gamespot.com/helena-morkov/4005-163223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163549/","id":163549,"name":"Nylo","site_detail_url":"https://comicvine.gamespot.com/nylo/4005-163549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164075/","id":164075,"name":"Voe","site_detail_url":"https://comicvine.gamespot.com/voe/4005-164075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164238/","id":164238,"name":"Tarvos","site_detail_url":"https://comicvine.gamespot.com/tarvos/4005-164238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165115/","id":165115,"name":"Nicole Vermeer","site_detail_url":"https://comicvine.gamespot.com/nicole-vermeer/4005-165115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165223/","id":165223,"name":"Anilaza","site_detail_url":"https://comicvine.gamespot.com/anilaza/4005-165223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165346/","id":165346,"name":"Marsha Manhunter","site_detail_url":"https://comicvine.gamespot.com/marsha-manhunter/4005-165346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165469/","id":165469,"name":"Princess Ariel","site_detail_url":"https://comicvine.gamespot.com/princess-ariel/4005-165469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165549/","id":165549,"name":"Tarn the Uncaring","site_detail_url":"https://comicvine.gamespot.com/tarn-the-uncaring/4005-165549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165670/","id":165670,"name":"Ransik","site_detail_url":"https://comicvine.gamespot.com/ransik/4005-165670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165680/","id":165680,"name":"Andros","site_detail_url":"https://comicvine.gamespot.com/andros/4005-165680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165877/","id":165877,"name":"The Child","site_detail_url":"https://comicvine.gamespot.com/the-child/4005-165877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166082/","id":166082,"name":"Frank Williams","site_detail_url":"https://comicvine.gamespot.com/frank-williams/4005-166082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166745/","id":166745,"name":"Keeve Trennis","site_detail_url":"https://comicvine.gamespot.com/keeve-trennis/4005-166745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-166747/","id":166747,"name":"Sskeer","site_detail_url":"https://comicvine.gamespot.com/sskeer/4005-166747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167413/","id":167413,"name":"Lula Talisola","site_detail_url":"https://comicvine.gamespot.com/lula-talisola/4005-167413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167415/","id":167415,"name":"Farzala Tarabal","site_detail_url":"https://comicvine.gamespot.com/farzala-tarabal/4005-167415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167417/","id":167417,"name":"Torban Buck","site_detail_url":"https://comicvine.gamespot.com/torban-buck/4005-167417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167519/","id":167519,"name":"Nathan Burnett","site_detail_url":"https://comicvine.gamespot.com/nathan-burnett/4005-167519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169467/","id":169467,"name":"Scaramouche","site_detail_url":"https://comicvine.gamespot.com/scaramouche/4005-169467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169832/","id":169832,"name":"The Truth","site_detail_url":"https://comicvine.gamespot.com/the-truth/4005-169832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-169972/","id":169972,"name":"Lux","site_detail_url":"https://comicvine.gamespot.com/lux/4005-169972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171292/","id":171292,"name":"Leo","site_detail_url":"https://comicvine.gamespot.com/leo/4005-171292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171354/","id":171354,"name":"Orla Jareni","site_detail_url":"https://comicvine.gamespot.com/orla-jareni/4005-171354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171640/","id":171640,"name":"Cohmac Vitus","site_detail_url":"https://comicvine.gamespot.com/cohmac-vitus/4005-171640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171641/","id":171641,"name":"Reath Silas","site_detail_url":"https://comicvine.gamespot.com/reath-silas/4005-171641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171671/","id":171671,"name":"Ty Yorrick","site_detail_url":"https://comicvine.gamespot.com/ty-yorrick/4005-171671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171741/","id":171741,"name":"Liana ","site_detail_url":"https://comicvine.gamespot.com/liana/4005-171741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-171875/","id":171875,"name":"Stellan Gios","site_detail_url":"https://comicvine.gamespot.com/stellan-gios/4005-171875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172166/","id":172166,"name":"Tal Bota","site_detail_url":"https://comicvine.gamespot.com/tal-bota/4005-172166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172413/","id":172413,"name":"Cyron","site_detail_url":"https://comicvine.gamespot.com/cyron/4005-172413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-172444/","id":172444,"name":"Porter Engle","site_detail_url":"https://comicvine.gamespot.com/porter-engle/4005-172444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173299/","id":173299,"name":"Xiomara Collins","site_detail_url":"https://comicvine.gamespot.com/xiomara-collins/4005-173299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174067/","id":174067,"name":"Alice Campbell","site_detail_url":"https://comicvine.gamespot.com/alice-campbell/4005-174067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174069/","id":174069,"name":"Alec Walsh","site_detail_url":"https://comicvine.gamespot.com/alec-walsh/4005-174069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175100/","id":175100,"name":"Misora Sakajō","site_detail_url":"https://comicvine.gamespot.com/misora-sakajo/4005-175100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175327/","id":175327,"name":"Halfrek","site_detail_url":"https://comicvine.gamespot.com/halfrek/4005-175327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175534/","id":175534,"name":"Radiant Black","site_detail_url":"https://comicvine.gamespot.com/radiant-black/4005-175534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175859/","id":175859,"name":"Animus","site_detail_url":"https://comicvine.gamespot.com/animus/4005-175859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176114/","id":176114,"name":"TKO","site_detail_url":"https://comicvine.gamespot.com/tko/4005-176114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176592/","id":176592,"name":"Dervish","site_detail_url":"https://comicvine.gamespot.com/dervish/4005-176592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176731/","id":176731,"name":"Juliana Jararaca","site_detail_url":"https://comicvine.gamespot.com/juliana-jararaca/4005-176731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176733/","id":176733,"name":"Xande","site_detail_url":"https://comicvine.gamespot.com/xande/4005-176733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176780/","id":176780,"name":"Gordon Lefferts","site_detail_url":"https://comicvine.gamespot.com/gordon-lefferts/4005-176780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176792/","id":176792,"name":"Ahmed ","site_detail_url":"https://comicvine.gamespot.com/ahmed/4005-176792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176843/","id":176843,"name":"Dia Sloane","site_detail_url":"https://comicvine.gamespot.com/dia-sloane/4005-176843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176862/","id":176862,"name":"King","site_detail_url":"https://comicvine.gamespot.com/king/4005-176862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177094/","id":177094,"name":"Dartz","site_detail_url":"https://comicvine.gamespot.com/dartz/4005-177094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177568/","id":177568,"name":"Captain Bretland","site_detail_url":"https://comicvine.gamespot.com/captain-bretland/4005-177568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177569/","id":177569,"name":"Elspeth Braddock","site_detail_url":"https://comicvine.gamespot.com/elspeth-braddock/4005-177569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177611/","id":177611,"name":"Queen Elizabeth III","site_detail_url":"https://comicvine.gamespot.com/queen-elizabeth-iii/4005-177611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177638/","id":177638,"name":"Third Sister","site_detail_url":"https://comicvine.gamespot.com/third-sister/4005-177638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177670/","id":177670,"name":"Non","site_detail_url":"https://comicvine.gamespot.com/non/4005-177670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178053/","id":178053,"name":"Zhane","site_detail_url":"https://comicvine.gamespot.com/zhane/4005-178053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178123/","id":178123,"name":"Void Queen","site_detail_url":"https://comicvine.gamespot.com/void-queen/4005-178123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178219/","id":178219,"name":"Hilary Astrovik","site_detail_url":"https://comicvine.gamespot.com/hilary-astrovik/4005-178219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-178309/","id":178309,"name":"Sarina","site_detail_url":"https://comicvine.gamespot.com/sarina/4005-178309/"}],"date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":8,"name":"Telekinesis","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=telekinesis&wikiTypeId=4035&wikiId=8&powers%5B%5D=8"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/power-list-item/powers.json b/samples/api-data/power-list-item/powers.json new file mode 100644 index 0000000..7235feb --- /dev/null +++ b/samples/api-data/power-list-item/powers.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":128,"status_code":1,"results":[{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-1/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    The ability to fly is possibly the most awesome, yet common power within the pantheon of superhero culture. Flight based characters have an immediate advantage over enemies and have arguably one of the only powers without a real counter. The capability to fly represents the freedom of the individual and his or her absolute control of their world.

    ","id":1,"name":"Flight","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=flight&wikiTypeId=4035&wikiId=1&powers%5B%5D=1"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-2/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Super Stength is the iconic super power. For a character to be the ultimate brute or the supreme hero super-strength is a must. It's not surprising though since the traditional measure of manliness has always been strength, whether it be mental or physical. In this case, super-strength is the physical manifestation of a characters ability to assert himself over another.csdcsddscas

    ","id":2,"name":"Super Strength","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=super-strength&wikiTypeId=4035&wikiId=2&powers%5B%5D=2"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-3/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":3,"name":"Super Speed","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=super-speed&wikiTypeId=4035&wikiId=3&powers%5B%5D=3"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-4/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Agility is the ability to move nimbly or quickly. It does not neccessarily go hand in hand with super speed, which measures distance traveled over time. Agility is instead reflexive and burst-like, often coming in the form of a split-second move.

    In terms of combat, agile heros always prefer a rapid succession of short, controlled strikes. This is in contrast to a brutish strength based characters who usually rely on a smaller number of more powerful attacks. Agile Hero characters are almost always defensive in nature and disposition. Evil characters focused on agility are often tricksters and thieves who gain advantages over other characters by setting odds in their favor before a fight even begins.

    ","id":4,"name":"Agility","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=agility&wikiTypeId=4035&wikiId=4&powers%5B%5D=4"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-5/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":5,"name":"Stamina","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=stamina&wikiTypeId=4035&wikiId=5&powers%5B%5D=5"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-6/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":6,"name":"Invulnerability","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=invulnerability&wikiTypeId=4035&wikiId=6&powers%5B%5D=6"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-7/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":7,"name":"Telepathy","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=telepathy&wikiTypeId=4035&wikiId=7&powers%5B%5D=7"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-8/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":8,"name":"Telekinesis","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=telekinesis&wikiTypeId=4035&wikiId=8&powers%5B%5D=8"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-9/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":9,"name":"Intellect","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=intellect&wikiTypeId=4035&wikiId=9&powers%5B%5D=9"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-10/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":10,"name":"Teleport","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=teleport&wikiTypeId=4035&wikiId=10&powers%5B%5D=10"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-11/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":11,"name":"Radar Sense","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=radar-sense&wikiTypeId=4035&wikiId=11&powers%5B%5D=11"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-12/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":12,"name":"Psychic","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=psychic&wikiTypeId=4035&wikiId=12&powers%5B%5D=12"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-13/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    A force field is any nearly-unpenatrable container that surrounds a character for protection. It may be called upon through control over natural elements, by manifestation of mental or psionic powers or simply by sheer act of will. A character calling upon a force field is almost always in a defensive position and under a large amount of strain to keep themselves or others protected. Outside of battles, these bubbles can also serve to protect characters from the elements (such as water or space) and provide an air pocket to anyone within the field. Because of their supportive utility, force fields are often present in weaker, heavily loyal characters.

    ","id":13,"name":"Force Field","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=force-field&wikiTypeId=4035&wikiId=13&powers%5B%5D=13"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-14/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Blast Power is the ability to emit, produce or discharge a burst of non-natural human energy. Normally this energy comes in the form of radiation, gas, explosives or lazer-like beams. Heros who have blast powers are almost always not able to control their gifts and often hurt their friends as much as their enemies. This normally leads to the hero having a withdrawn disposition. Blast power villans are erratic and uncontrollable, taking advantage of the unpredictable nature of their abilities to allow for quick, wide-radius attacks that result in mass destruction without target.

    ","id":14,"name":"Blast Power","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=blast-power&wikiTypeId=4035&wikiId=14&powers%5B%5D=14"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-15/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":15,"name":"Healing","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=healing&wikiTypeId=4035&wikiId=15&powers%5B%5D=15"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-16/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":16,"name":"Magic","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=magic&wikiTypeId=4035&wikiId=16&powers%5B%5D=16"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-17/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":17,"name":"Weapon Master","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=weapon-master&wikiTypeId=4035&wikiId=17&powers%5B%5D=17"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-18/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":18,"name":"Super Sight","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=super-sight&wikiTypeId=4035&wikiId=18&powers%5B%5D=18"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-19/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":19,"name":"Super Smell","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=super-smell&wikiTypeId=4035&wikiId=19&powers%5B%5D=19"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-20/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":20,"name":"Super Hearing","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=super-hearing&wikiTypeId=4035&wikiId=20&powers%5B%5D=20"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-21/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":21,"name":"Invisibility","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=invisibility&wikiTypeId=4035&wikiId=21&powers%5B%5D=21"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-22/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":22,"name":"Phasing / Ghost","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=phasing-ghost&wikiTypeId=4035&wikiId=22&powers%5B%5D=22"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-23/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    A chameleon is any character that has the ability to blend into their surrounding by changing the color and texture of their skin either through a natural ability or mechanical device. It is often confused (and at the same time paired) with shape changing, which is the ability to transform your body into another shape. Chameleons tend to be villanous more often the good, using their camoflouge skills to sneak or gain access to a restricted area. Characters with this ability tend to have mixed personalities and have a hard time defining themselves in any one way.

    ","id":23,"name":"Chameleon","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=chameleon&wikiTypeId=4035&wikiId=23&powers%5B%5D=23"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-24/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":24,"name":"Shape Shifter","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=shape-shifter&wikiTypeId=4035&wikiId=24&powers%5B%5D=24"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-25/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":25,"name":"Magnetism","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=magnetism&wikiTypeId=4035&wikiId=25&powers%5B%5D=25"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-26/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":26,"name":"Fire Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=fire-control&wikiTypeId=4035&wikiId=26&powers%5B%5D=26"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-27/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":27,"name":"Implants","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=implants&wikiTypeId=4035&wikiId=27&powers%5B%5D=27"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-28/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Feral powers are the abilities or mindset of a wild animal or animals. Ferality can exist simply as a state of mind, as a set of heightened senses or at the very extreme, the ability to transform oneself completely into a beast. Sometimes ferality comes with near-druidic powers such as the means to commune with animals (for intellegence gathering). Feral focused characters are normally potrayed as either well balanced and serene (a parallel to nature) or as wild, uncontrolable loners (the same metaphor).

    Note that characters who take on a moniker in reference to an animal (such as Batman) more often then not do not have feral abilities of any kind.

    ","id":28,"name":"Feral","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=feral&wikiTypeId=4035&wikiId=28&powers%5B%5D=28"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-29/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":29,"name":"Psionic","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=psionic&wikiTypeId=4035&wikiId=29&powers%5B%5D=29"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-30/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":30,"name":"Insanely Rich","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=insanely-rich&wikiTypeId=4035&wikiId=30&powers%5B%5D=30"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-31/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":31,"name":"Power Suit","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=power-suit&wikiTypeId=4035&wikiId=31&powers%5B%5D=31"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-32/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":32,"name":"Radiation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=radiation&wikiTypeId=4035&wikiId=32&powers%5B%5D=32"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-33/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Elasticity is the ability to stretch a body part in a pronounced, exaggerated way. Almost always the character also has access to clothing that compensates for this skill. The elastic character's fighting style is usually tenacious, beating their opponents by absorbing physical attacks and tiring their opponent out over the course of a battle. The typical move is to surround an enemy by wrapping oneself around them, trapping their movement.

    ","id":33,"name":"Elasticity","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=elasticity&wikiTypeId=4035&wikiId=33&powers%5B%5D=33"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-34/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":34,"name":"Unarmed Combat","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=unarmed-combat&wikiTypeId=4035&wikiId=34&powers%5B%5D=34"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-35/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Gadgets are small mechanical tools and devices that help a hero or villian out in anyway. They can be as small as cantrips or as large as a jetpack. They are often constructed by the character themself and thereby unique and one of a kind. Gadgets are often heavily relied upon by non-powered characters to compensate and allow them to even the odds against their enenies. Because of their complexity, gadgetry is often paired with intelligent or wealthy characters.

    ","id":35,"name":"Gadgets","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=gadgets&wikiTypeId=4035&wikiId=35&powers%5B%5D=35"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-36/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":36,"name":"Weather Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=weather-control&wikiTypeId=4035&wikiId=36&powers%5B%5D=36"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-37/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":37,"name":"Divine Powers","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=divine-powers&wikiTypeId=4035&wikiId=37&powers%5B%5D=37"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-38/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":38,"name":"Siphon Abilities","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=siphon-abilities&wikiTypeId=4035&wikiId=38&powers%5B%5D=38"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-39/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":39,"name":"Size Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=size-manipulation&wikiTypeId=4035&wikiId=39&powers%5B%5D=39"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-40/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":40,"name":"Immortal","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=immortal&wikiTypeId=4035&wikiId=40&powers%5B%5D=40"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-49/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":49,"name":"Necromancy","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=necromancy&wikiTypeId=4035&wikiId=49&powers%5B%5D=49"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-50/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":50,"name":"Vampirism","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=vampirism&wikiTypeId=4035&wikiId=50&powers%5B%5D=50"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-51/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Characters with electricity as a power have control over charged particles and can generate an electric current at will. This is sometimes the result of control over a natural source of energy (such as lightning) but is more commonly manifested and expelled from the body as a result of a previous, irreversable accident. Though rare, some electric characters have control over electrons to such a degree that they can also control an electric powered machinery. Electricity is more common in villans due to the erratic, destructive use of lighting. In contrast, heros tend to have control over less harmful natural elements such as water, air and earth.

    ","id":51,"name":"Electricity Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=electricity-control&wikiTypeId=4035&wikiId=51&powers%5B%5D=51"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-52/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":"

    Ice Control is awesome

    ","id":52,"name":"Ice Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=ice-control&wikiTypeId=4035&wikiId=52&powers%5B%5D=52"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-53/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":53,"name":"Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=sub-mariner&wikiTypeId=4035&wikiId=53&powers%5B%5D=53"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-54/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":54,"name":"Wall Clinger","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=wall-clinger&wikiTypeId=4035&wikiId=54&powers%5B%5D=54"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-55/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":55,"name":"Mesmerize","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=mesmerize&wikiTypeId=4035&wikiId=55&powers%5B%5D=55"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-56/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":56,"name":"Penance Stare","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=penance-stare&wikiTypeId=4035&wikiId=56&powers%5B%5D=56"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-57/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":57,"name":"Sonic Scream","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=sonic-scream&wikiTypeId=4035&wikiId=57&powers%5B%5D=57"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-58/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":58,"name":"Escape Artist","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=escape-artist&wikiTypeId=4035&wikiId=58&powers%5B%5D=58"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-59/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":59,"name":"Tracking","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=tracking&wikiTypeId=4035&wikiId=59&powers%5B%5D=59"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-60/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":60,"name":"Astral Projection","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=astral-projection&wikiTypeId=4035&wikiId=60&powers%5B%5D=60"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-61/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":61,"name":"Danger Sense","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=danger-sense&wikiTypeId=4035&wikiId=61&powers%5B%5D=61"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-64/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":64,"name":"Possession","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=possession&wikiTypeId=4035&wikiId=64&powers%5B%5D=64"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-65/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":65,"name":"Sand manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=sand-manipulation&wikiTypeId=4035&wikiId=65&powers%5B%5D=65"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-66/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":66,"name":"Adaptive","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=adaptive&wikiTypeId=4035&wikiId=66&powers%5B%5D=66"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-67/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":67,"name":"Electronic interaction","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=electronic-interaction&wikiTypeId=4035&wikiId=67&powers%5B%5D=67"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-68/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":68,"name":"Animation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=animation&wikiTypeId=4035&wikiId=68&powers%5B%5D=68"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-69/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":69,"name":"Probability Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=probability-manipulation&wikiTypeId=4035&wikiId=69&powers%5B%5D=69"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-70/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":70,"name":"Super Eating","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=super-eating&wikiTypeId=4035&wikiId=70&powers%5B%5D=70"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-71/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":71,"name":"Precognition","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=precognition&wikiTypeId=4035&wikiId=71&powers%5B%5D=71"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-72/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":72,"name":"Energy-Enhanced Strike","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=energy-enhanced-strike&wikiTypeId=4035&wikiId=72&powers%5B%5D=72"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-73/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":73,"name":"Technopathy","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=technopathy&wikiTypeId=4035&wikiId=73&powers%5B%5D=73"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-74/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":74,"name":"Inertia Absorption","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=inertia-absorption&wikiTypeId=4035&wikiId=74&powers%5B%5D=74"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-75/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":75,"name":"Light Projection","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=light-projection&wikiTypeId=4035&wikiId=75&powers%5B%5D=75"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-76/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":76,"name":"Holographic Projection","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=holographic-projection&wikiTypeId=4035&wikiId=76&powers%5B%5D=76"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-77/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":77,"name":"Reality Manpulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=reality-manpulation&wikiTypeId=4035&wikiId=77&powers%5B%5D=77"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-78/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":78,"name":"Swordsmanship","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=swordsmanship&wikiTypeId=4035&wikiId=78&powers%5B%5D=78"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-79/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":79,"name":"Electronic Disruption","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=electronic-disruption&wikiTypeId=4035&wikiId=79&powers%5B%5D=79"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-80/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":80,"name":"Levitation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=levitation&wikiTypeId=4035&wikiId=80&powers%5B%5D=80"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-81/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":81,"name":"Soul Absorption","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=soul-absorption&wikiTypeId=4035&wikiId=81&powers%5B%5D=81"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-82/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":82,"name":"Duplication","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=duplication&wikiTypeId=4035&wikiId=82&powers%5B%5D=82"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-83/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":83,"name":"Emotion Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=emotion-control&wikiTypeId=4035&wikiId=83&powers%5B%5D=83"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-84/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":84,"name":"Matter Absorption","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=matter-absorption&wikiTypeId=4035&wikiId=84&powers%5B%5D=84"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-85/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":85,"name":"Dimensional Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=dimensional-manipulation&wikiTypeId=4035&wikiId=85&powers%5B%5D=85"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-87/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":87,"name":"Animal Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=animal-control&wikiTypeId=4035&wikiId=87&powers%5B%5D=87"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-88/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":88,"name":"Enhance Mutation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=enhance-mutation&wikiTypeId=4035&wikiId=88&powers%5B%5D=88"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-89/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":89,"name":"Omni-lingual","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=omni-lingual&wikiTypeId=4035&wikiId=89&powers%5B%5D=89"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-90/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":90,"name":"Postcognition","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=postcognition&wikiTypeId=4035&wikiId=90&powers%5B%5D=90"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-91/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":91,"name":"Shadowmeld","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=shadowmeld&wikiTypeId=4035&wikiId=91&powers%5B%5D=91"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-92/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":92,"name":"Energy Shield","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=energy-shield&wikiTypeId=4035&wikiId=92&powers%5B%5D=92"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-93/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":93,"name":"Time Travel","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=time-travel&wikiTypeId=4035&wikiId=93&powers%5B%5D=93"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-94/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":94,"name":"Siphon Lifeforce","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=siphon-lifeforce&wikiTypeId=4035&wikiId=94&powers%5B%5D=94"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-95/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":95,"name":"Sense Death","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=sense-death&wikiTypeId=4035&wikiId=95&powers%5B%5D=95"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-96/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":96,"name":"Darkforce Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=darkforce-manipulation&wikiTypeId=4035&wikiId=96&powers%5B%5D=96"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-97/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":97,"name":"Vibration Wave","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=vibration-wave&wikiTypeId=4035&wikiId=97&powers%5B%5D=97"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-98/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":98,"name":"Power Mimicry","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=power-mimicry&wikiTypeId=4035&wikiId=98&powers%5B%5D=98"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-99/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":99,"name":"Empathy","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=empathy&wikiTypeId=4035&wikiId=99&powers%5B%5D=99"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-100/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":100,"name":"Gravity control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=gravity-control&wikiTypeId=4035&wikiId=100&powers%5B%5D=100"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-101/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":101,"name":"Darkness Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=darkness-manipulation&wikiTypeId=4035&wikiId=101&powers%5B%5D=101"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-102/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":102,"name":"Illusion Casting","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=illusion-casting&wikiTypeId=4035&wikiId=102&powers%5B%5D=102"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-103/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":103,"name":"Heat Vision","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=heat-vision&wikiTypeId=4035&wikiId=103&powers%5B%5D=103"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-104/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":104,"name":"Psychometry","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=psychometry&wikiTypeId=4035&wikiId=104&powers%5B%5D=104"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-105/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":105,"name":"Wind Bursts","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=wind-bursts&wikiTypeId=4035&wikiId=105&powers%5B%5D=105"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-106/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":106,"name":"Density Control","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=density-control&wikiTypeId=4035&wikiId=106&powers%5B%5D=106"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-107/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":107,"name":"Earth Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=earth-manipulation&wikiTypeId=4035&wikiId=107&powers%5B%5D=107"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-108/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":108,"name":"Marksmanship","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=marksmanship&wikiTypeId=4035&wikiId=108&powers%5B%5D=108"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-109/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":109,"name":"Genetic Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=genetic-manipulation&wikiTypeId=4035&wikiId=109&powers%5B%5D=109"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-110/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":110,"name":"Time Manipulation","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=time-manipulation&wikiTypeId=4035&wikiId=110&powers%5B%5D=110"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/power/4035-111/","date_added":"2008-06-06 11:28:15","date_last_updated":"2008-06-06 11:28:15","description":null,"id":111,"name":"Power Item","site_detail_url":"https://comicvine.gamespot.com/characters/?wikiSlug=power-item&wikiTypeId=4035&wikiId=111&powers%5B%5D=111"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/promo-details/promo-1700-1763.json b/samples/api-data/promo-details/promo-1700-1763.json new file mode 100644 index 0000000..0a5ecb8 --- /dev/null +++ b/samples/api-data/promo-details/promo-1700-1763.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1763/","date_added":"2017-05-09 14:04:02","deck":"We're taking a look at an iconic cosmic character from the Marvel universe to give you a better insight into who he is and where he came from.","guid":"1700-1763","id":1763,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/5825818-deck.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/5825818-deck.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/5825818-deck.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/5825818-deck.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/5825818-deck.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/5825818-deck.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/5825818-deck.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/5825818-deck.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/5825818-deck.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/who-is-marvels-adam-warlock/1100-156453/","name":"Who Is Marvel's Adam Warlock?","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/promo-details/promo-1700-1781.json b/samples/api-data/promo-details/promo-1700-1781.json new file mode 100644 index 0000000..8de9f2c --- /dev/null +++ b/samples/api-data/promo-details/promo-1700-1781.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1781/","date_added":"2018-02-09 13:26:38","deck":"Sure, Josh Brolin looks awesome as Cable in the new movie trailer, but what are this Marvel character's origins and why does he have so many pouches?","guid":"1700-1781","id":1781,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6272406-dek.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6272406-dek.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6272406-dek.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6272406-dek.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6272406-dek.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6272406-dek.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6272406-dek.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6272406-dek.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6272406-dek.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/deadpool-2-who-is-cable/1100-156485/","name":"Deadpool 2: Who Is Cable?","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/promo-details/promo-1700-1782.json b/samples/api-data/promo-details/promo-1700-1782.json new file mode 100644 index 0000000..026db46 --- /dev/null +++ b/samples/api-data/promo-details/promo-1700-1782.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1782/","date_added":"2018-05-07 13:19:53","deck":"The midseason finale airs tonight and it'll finally bring Flash's villain into the spotlight. But who's behind the mask? Let's talk about it!","guid":"1700-1782","id":1782,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/39001/4265771-tfcover.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/39001/4265771-tfcover.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/39001/4265771-tfcover.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/39001/4265771-tfcover.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/39001/4265771-tfcover.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/39001/4265771-tfcover.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/39001/4265771-tfcover.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/39001/4265771-tfcover.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/39001/4265771-tfcover.png","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/the-flash-who-is-the-reverse-flash/1100-150639/","name":"The Flash: Who is the Reverse-Flash?","resource_type":"article","user":" "},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/promo-details/promo-1700-1783.json b/samples/api-data/promo-details/promo-1700-1783.json new file mode 100644 index 0000000..1bf136f --- /dev/null +++ b/samples/api-data/promo-details/promo-1700-1783.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1783/","date_added":"2018-05-21 13:33:36","deck":"The X-Men timeline is already a joke, but now Deadpool is telling it.","guid":"1700-1783","id":1783,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6437380-cv.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6437380-cv.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6437380-cv.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6437380-cv.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6437380-cv.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6437380-cv.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6437380-cv.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6437380-cv.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6437380-cv.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/deadpool-2-totally-ruins-x-mens-already-ludicrous-/1100-156486/","name":"Deadpool 2 Totally Ruins X-Men's Already Ludicrous Movie Timeline","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/promo-details/promo-1700-1785.json b/samples/api-data/promo-details/promo-1700-1785.json new file mode 100644 index 0000000..7bed94b --- /dev/null +++ b/samples/api-data/promo-details/promo-1700-1785.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1785/","date_added":"2018-07-30 12:02:13","deck":"Finally, a comic featuring Scare Glow.","guid":"1700-1785","id":1785,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6537775-untitled-1-recovered.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6537775-untitled-1-recovered.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6537775-untitled-1-recovered.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6537775-untitled-1-recovered.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6537775-untitled-1-recovered.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6537775-untitled-1-recovered.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6537775-untitled-1-recovered.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6537775-untitled-1-recovered.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6537775-untitled-1-recovered.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/injustice-vs-masters-of-the-universe-comic-is-a-gi/1100-156488/","name":"Injustice Vs. Masters Of The Universe Comic Is A Giant Sandbox Of Nostalgia","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/promo-list-item/promos.json b/samples/api-data/promo-list-item/promos.json new file mode 100644 index 0000000..e8d5071 --- /dev/null +++ b/samples/api-data/promo-list-item/promos.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":15,"number_of_total_results":"15","status_code":1,"results":[[],[],[],[],[],{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1782/","date_added":"2018-05-07 13:19:53","deck":"The midseason finale airs tonight and it'll finally bring Flash's villain into the spotlight. But who's behind the mask? Let's talk about it!","guid":"1700-1782","id":1782,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/39001/4265771-tfcover.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/39001/4265771-tfcover.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/39001/4265771-tfcover.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/39001/4265771-tfcover.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/39001/4265771-tfcover.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/39001/4265771-tfcover.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/39001/4265771-tfcover.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/39001/4265771-tfcover.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/39001/4265771-tfcover.png","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/the-flash-who-is-the-reverse-flash/1100-150639/","name":"The Flash: Who is the Reverse-Flash?","resource_type":"article","user":" "},[],{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1763/","date_added":"2017-05-09 14:04:02","deck":"We're taking a look at an iconic cosmic character from the Marvel universe to give you a better insight into who he is and where he came from.","guid":"1700-1763","id":1763,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/5825818-deck.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/5825818-deck.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/5825818-deck.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/5825818-deck.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/5825818-deck.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/5825818-deck.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/5825818-deck.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/5825818-deck.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/5825818-deck.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/who-is-marvels-adam-warlock/1100-156453/","name":"Who Is Marvel's Adam Warlock?","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1785/","date_added":"2018-07-30 12:02:13","deck":"Finally, a comic featuring Scare Glow.","guid":"1700-1785","id":1785,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6537775-untitled-1-recovered.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6537775-untitled-1-recovered.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6537775-untitled-1-recovered.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6537775-untitled-1-recovered.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6537775-untitled-1-recovered.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6537775-untitled-1-recovered.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6537775-untitled-1-recovered.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6537775-untitled-1-recovered.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6537775-untitled-1-recovered.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/injustice-vs-masters-of-the-universe-comic-is-a-gi/1100-156488/","name":"Injustice Vs. Masters Of The Universe Comic Is A Giant Sandbox Of Nostalgia","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1784/","date_added":"2018-06-13 10:00:04","deck":"Writer of Hal Jordan And The Green Lantern Corps, Robert Venditti, discusses Guy Gardner's choice to abandon the team to become a Darkstar.","guid":"1700-1784","id":1784,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6469308-gldek.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6469308-gldek.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6469308-gldek.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6469308-gldek.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6469308-gldek.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6469308-gldek.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6469308-gldek.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6469308-gldek.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6469308-gldek.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/dcs-green-lantern-corps-series-has-some-real-daddy/1100-156487/","name":"DC's Green Lantern Corps Series Has Some Real \"Daddy Issues\"","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1783/","date_added":"2018-05-21 13:33:36","deck":"The X-Men timeline is already a joke, but now Deadpool is telling it.","guid":"1700-1783","id":1783,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6437380-cv.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6437380-cv.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6437380-cv.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6437380-cv.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6437380-cv.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6437380-cv.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6437380-cv.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6437380-cv.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6437380-cv.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/deadpool-2-totally-ruins-x-mens-already-ludicrous-/1100-156486/","name":"Deadpool 2 Totally Ruins X-Men's Already Ludicrous Movie Timeline","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1781/","date_added":"2018-02-09 13:26:38","deck":"Sure, Josh Brolin looks awesome as Cable in the new movie trailer, but what are this Marvel character's origins and why does he have so many pouches?","guid":"1700-1781","id":1781,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6272406-dek.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6272406-dek.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6272406-dek.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6272406-dek.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6272406-dek.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6272406-dek.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6272406-dek.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6272406-dek.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6272406-dek.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/deadpool-2-who-is-cable/1100-156485/","name":"Deadpool 2: Who Is Cable?","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1778/","date_added":"2017-10-23 07:47:23","deck":"Who watches Asgard?","guid":"1700-1778","id":1778,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6112035-dek.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6112035-dek.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6112035-dek.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6112035-dek.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6112035-dek.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6112035-dek.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6112035-dek.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6112035-dek.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6112035-dek.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/thor-ragnarok-who-is-heimdall/1100-156482/","name":"Thor Ragnarok: Who Is Heimdall?","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1771/","date_added":"2017-07-06 06:09:40","deck":"We're diving into the pages of Marvel Comics to figure out who this team--who may or may not be in Homecoming--is and what they're about.","guid":"1700-1771","id":1771,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/5930530-deck.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/5930530-deck.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/5930530-deck.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/5930530-deck.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/5930530-deck.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/5930530-deck.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/5930530-deck.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/5930530-deck.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/5930530-deck.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/spider-man-homecoming-what-is-damage-control/1100-156472/","name":"Spider-Man: Homecoming: What Is Damage Control?","resource_type":"article","user":"Mat 'Inferiorego' Elfring"},{"api_detail_url":"https://comicvine.gamespot.com/api/promo/1700-1780/","date_added":"2018-02-01 08:44:12","deck":"The former Marvel writer will be working on a mini-series, which leads into the new comic Superman.","guid":"1700-1780","id":1780,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6063/6258219-supedek.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6063/6258219-supedek.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6063/6258219-supedek.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6063/6258219-supedek.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6063/6258219-supedek.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6063/6258219-supedek.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6063/6258219-supedek.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6063/6258219-supedek.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6063/6258219-supedek.jpg","image_tags":"All Images"},"link":"https://comicvine.gamespot.com/articles/dcs-superman-comic-gets-a-1-relaunch-with-brian-be/1100-156484/","name":"DC's Superman Comic Gets A #1 Relaunch With Brian Bendis Writing","resource_type":"article","user":"Mat 'Inferiorego' Elfring"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/publisher-details/publisher-4010-133.json b/samples/api-data/publisher-details/publisher-4010-133.json new file mode 100644 index 0000000..f642541 --- /dev/null +++ b/samples/api-data/publisher-details/publisher-4010-133.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-133/","characters":[],"date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":133,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Aragon","site_detail_url":"https://comicvine.gamespot.com/aragon/4010-133/","story_arcs":[],"teams":[],"volumes":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1539/","id":1539,"name":"Weird Tales of the Future","site_detail_url":"https://comicvine.gamespot.com/weird-tales-of-the-future/4050-1539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55768/","id":55768,"name":"Navy Task Force","site_detail_url":"https://comicvine.gamespot.com/navy-task-force/4050-55768/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/publisher-details/publisher-4010-150.json b/samples/api-data/publisher-details/publisher-4010-150.json new file mode 100644 index 0000000..f0db0d7 --- /dev/null +++ b/samples/api-data/publisher-details/publisher-4010-150.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-150/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38957/","id":38957,"name":"Fabian","site_detail_url":"https://comicvine.gamespot.com/fabian/4005-38957/"}],"date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":150,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Arleigh","site_detail_url":"https://comicvine.gamespot.com/arleigh/4010-150/","story_arcs":[],"teams":[],"volumes":[]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/publisher-details/publisher-4010-153.json b/samples/api-data/publisher-details/publisher-4010-153.json new file mode 100644 index 0000000..530171e --- /dev/null +++ b/samples/api-data/publisher-details/publisher-4010-153.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-153/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24750/","id":24750,"name":"Captain Flash","site_detail_url":"https://comicvine.gamespot.com/captain-flash/4005-24750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74756/","id":74756,"name":"Sgt. Mark Fabian","site_detail_url":"https://comicvine.gamespot.com/sgt-mark-fabian/4005-74756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76427/","id":76427,"name":"Tomboy","site_detail_url":"https://comicvine.gamespot.com/tomboy/4005-76427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76428/","id":76428,"name":"Iron Mask","site_detail_url":"https://comicvine.gamespot.com/iron-mask/4005-76428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76429/","id":76429,"name":"Mirrorman","site_detail_url":"https://comicvine.gamespot.com/mirrorman/4005-76429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76430/","id":76430,"name":"Ricky","site_detail_url":"https://comicvine.gamespot.com/ricky/4005-76430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76431/","id":76431,"name":"The Claw","site_detail_url":"https://comicvine.gamespot.com/the-claw/4005-76431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76433/","id":76433,"name":"Black Knight","site_detail_url":"https://comicvine.gamespot.com/black-knight/4005-76433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76434/","id":76434,"name":"Soundwave","site_detail_url":"https://comicvine.gamespot.com/soundwave/4005-76434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76435/","id":76435,"name":"The Actor","site_detail_url":"https://comicvine.gamespot.com/the-actor/4005-76435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76437/","id":76437,"name":"Muscle Man","site_detail_url":"https://comicvine.gamespot.com/muscle-man/4005-76437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86792/","id":86792,"name":"Lieutenant Jackson","site_detail_url":"https://comicvine.gamespot.com/lieutenant-jackson/4005-86792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86795/","id":86795,"name":"Bill Jackson","site_detail_url":"https://comicvine.gamespot.com/bill-jackson/4005-86795/"}],"date_added":"2008-06-06 11:08:00","date_last_updated":"2019-08-12 02:11:38","deck":null,"description":"

    The stable of characters from Sterling were

    Black Knight (Sterling version)

    Captain Flash and Ricky

    Imagions

    Iron Mask (Sterling version)

    Mirror Man (Sterling version)

    Muscle Man

    Sharkmen

    Soundwave (Sterling version)

    The Actor

    The Claw (Sterling version)

    Tomboy

    Many of these characters have seperate pages while others do not.

    ","id":153,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1967116-sterling_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1967116-sterling_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1967116-sterling_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1967116-sterling_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1967116-sterling_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1967116-sterling_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1967116-sterling_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1967116-sterling_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1967116-sterling_logo.jpg","image_tags":"All Images"},"location_address":"480 Lexington Avenue","location_city":"New York","location_state":"New York","name":"Sterling Comics","site_detail_url":"https://comicvine.gamespot.com/sterling-comics/4010-153/","story_arcs":[],"teams":[],"volumes":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1657/","id":1657,"name":"The Tormented","site_detail_url":"https://comicvine.gamespot.com/the-tormented/4050-1657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1666/","id":1666,"name":"Captain Flash","site_detail_url":"https://comicvine.gamespot.com/captain-flash/4050-1666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1738/","id":1738,"name":"Surprise Adventures","site_detail_url":"https://comicvine.gamespot.com/surprise-adventures/4050-1738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32061/","id":32061,"name":"1001 Mad Pages You Must Read Before You Die (Crammed into 864 Actual Pages)","site_detail_url":"https://comicvine.gamespot.com/1001-mad-pages-you-must-read-before-you-die-cramme/4050-32061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35145/","id":35145,"name":"A Princess of Mars: A Graphic Novel","site_detail_url":"https://comicvine.gamespot.com/a-princess-of-mars-a-graphic-novel/4050-35145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37302/","id":37302,"name":"The Informer","site_detail_url":"https://comicvine.gamespot.com/the-informer/4050-37302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37311/","id":37311,"name":"After Dark","site_detail_url":"https://comicvine.gamespot.com/after-dark/4050-37311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51628/","id":51628,"name":"All-Action Classics","site_detail_url":"https://comicvine.gamespot.com/all-action-classics/4050-51628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56818/","id":56818,"name":"Batman: The Dailies 1943-1946","site_detail_url":"https://comicvine.gamespot.com/batman-the-dailies-1943-1946/4050-56818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63775/","id":63775,"name":"My Secret Confession","site_detail_url":"https://comicvine.gamespot.com/my-secret-confession/4050-63775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65055/","id":65055,"name":"Superman: The Dailies","site_detail_url":"https://comicvine.gamespot.com/superman-the-dailies/4050-65055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67275/","id":67275,"name":"Horrifyingly Mad","site_detail_url":"https://comicvine.gamespot.com/horrifyingly-mad/4050-67275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67711/","id":67711,"name":"The Classic Era of American Comics","site_detail_url":"https://comicvine.gamespot.com/the-classic-era-of-american-comics/4050-67711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72231/","id":72231,"name":"Mad About Super Heroes","site_detail_url":"https://comicvine.gamespot.com/mad-about-super-heroes/4050-72231/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/publisher-details/publisher-4010-178.json b/samples/api-data/publisher-details/publisher-4010-178.json new file mode 100644 index 0000000..c17f9b8 --- /dev/null +++ b/samples/api-data/publisher-details/publisher-4010-178.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-178/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1946/","id":1946,"name":"Andy Panda","site_detail_url":"https://comicvine.gamespot.com/andy-panda/4005-1946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1947/","id":1947,"name":"Charlie Chicken","site_detail_url":"https://comicvine.gamespot.com/charlie-chicken/4005-1947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1950/","id":1950,"name":"Heckle","site_detail_url":"https://comicvine.gamespot.com/heckle/4005-1950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1951/","id":1951,"name":"Jeckle","site_detail_url":"https://comicvine.gamespot.com/jeckle/4005-1951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1953/","id":1953,"name":"Hashimoto-San","site_detail_url":"https://comicvine.gamespot.com/hashimoto-san/4005-1953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1955/","id":1955,"name":"Silly Sidney","site_detail_url":"https://comicvine.gamespot.com/silly-sidney/4005-1955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2026/","id":2026,"name":"Dr. Jim Murray","site_detail_url":"https://comicvine.gamespot.com/dr-jim-murray/4005-2026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2027/","id":2027,"name":"Nurse Liz Thorpe","site_detail_url":"https://comicvine.gamespot.com/nurse-liz-thorpe/4005-2027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2441/","id":2441,"name":"George of The Jungle","site_detail_url":"https://comicvine.gamespot.com/george-of-the-jungle/4005-2441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2442/","id":2442,"name":"Ape","site_detail_url":"https://comicvine.gamespot.com/ape/4005-2442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2443/","id":2443,"name":"Ursula","site_detail_url":"https://comicvine.gamespot.com/ursula/4005-2443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2444/","id":2444,"name":"Super Chicken","site_detail_url":"https://comicvine.gamespot.com/super-chicken/4005-2444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2445/","id":2445,"name":"Fred","site_detail_url":"https://comicvine.gamespot.com/fred/4005-2445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2446/","id":2446,"name":"Tom Slick","site_detail_url":"https://comicvine.gamespot.com/tom-slick/4005-2446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2447/","id":2447,"name":"Marigold","site_detail_url":"https://comicvine.gamespot.com/marigold/4005-2447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2449/","id":2449,"name":"The Baron","site_detail_url":"https://comicvine.gamespot.com/the-baron/4005-2449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2450/","id":2450,"name":"Clutcher","site_detail_url":"https://comicvine.gamespot.com/clutcher/4005-2450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2451/","id":2451,"name":"Shep","site_detail_url":"https://comicvine.gamespot.com/shep/4005-2451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2452/","id":2452,"name":"Dr. Kilimando","site_detail_url":"https://comicvine.gamespot.com/dr-kilimando/4005-2452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2881/","id":2881,"name":"Timmy Martin","site_detail_url":"https://comicvine.gamespot.com/timmy-martin/4005-2881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2976/","id":2976,"name":"Tubby","site_detail_url":"https://comicvine.gamespot.com/tubby/4005-2976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2983/","id":2983,"name":"Scarecrow Boy","site_detail_url":"https://comicvine.gamespot.com/scarecrow-boy/4005-2983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2985/","id":2985,"name":"Little Itch","site_detail_url":"https://comicvine.gamespot.com/little-itch/4005-2985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3059/","id":3059,"name":"Wacky Witch","site_detail_url":"https://comicvine.gamespot.com/wacky-witch/4005-3059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3065/","id":3065,"name":"Bobin","site_detail_url":"https://comicvine.gamespot.com/bobin/4005-3065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3067/","id":3067,"name":"Gold Key Kid","site_detail_url":"https://comicvine.gamespot.com/gold-key-kid/4005-3067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3666/","id":3666,"name":"Motormouse","site_detail_url":"https://comicvine.gamespot.com/motormouse/4005-3666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3697/","id":3697,"name":"Autocat","site_detail_url":"https://comicvine.gamespot.com/autocat/4005-3697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3739/","id":3739,"name":"Lambsy Divey","site_detail_url":"https://comicvine.gamespot.com/lambsy-divey/4005-3739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5751/","id":5751,"name":"Pauline Peril","site_detail_url":"https://comicvine.gamespot.com/pauline-peril/4005-5751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5758/","id":5758,"name":"Chester Chesty","site_detail_url":"https://comicvine.gamespot.com/chester-chesty/4005-5758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5759/","id":5759,"name":"Snodgrass McViper","site_detail_url":"https://comicvine.gamespot.com/snodgrass-mcviper/4005-5759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5760/","id":5760,"name":"Porterhouse P. Peril","site_detail_url":"https://comicvine.gamespot.com/porterhouse-p-peril/4005-5760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7841/","id":7841,"name":"Joe Striker","site_detail_url":"https://comicvine.gamespot.com/joe-striker/4005-7841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7842/","id":7842,"name":"Ken Hiro","site_detail_url":"https://comicvine.gamespot.com/ken-hiro/4005-7842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7843/","id":7843,"name":"Russ Stacey","site_detail_url":"https://comicvine.gamespot.com/russ-stacey/4005-7843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7844/","id":7844,"name":"Lt. Adams","site_detail_url":"https://comicvine.gamespot.com/lt-adams/4005-7844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7931/","id":7931,"name":"Tagg Oakley","site_detail_url":"https://comicvine.gamespot.com/tagg-oakley/4005-7931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10718/","id":10718,"name":"Freckles","site_detail_url":"https://comicvine.gamespot.com/freckles/4005-10718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10736/","id":10736,"name":"Honey Bunny","site_detail_url":"https://comicvine.gamespot.com/honey-bunny/4005-10736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10737/","id":10737,"name":"Taz Boy","site_detail_url":"https://comicvine.gamespot.com/taz-boy/4005-10737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10747/","id":10747,"name":"Joseph Connaughton","site_detail_url":"https://comicvine.gamespot.com/joseph-connaughton/4005-10747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10748/","id":10748,"name":"Chase Craig","site_detail_url":"https://comicvine.gamespot.com/chase-craig/4005-10748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10751/","id":10751,"name":"Lancelot Link","site_detail_url":"https://comicvine.gamespot.com/lancelot-link/4005-10751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10757/","id":10757,"name":"Ed Huddles","site_detail_url":"https://comicvine.gamespot.com/ed-huddles/4005-10757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10758/","id":10758,"name":"Bubba McCoy","site_detail_url":"https://comicvine.gamespot.com/bubba-mccoy/4005-10758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10759/","id":10759,"name":"Claude Pertwee","site_detail_url":"https://comicvine.gamespot.com/claude-pertwee/4005-10759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10772/","id":10772,"name":"Cool Cat","site_detail_url":"https://comicvine.gamespot.com/cool-cat/4005-10772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10793/","id":10793,"name":"Mr. Wilson","site_detail_url":"https://comicvine.gamespot.com/mr-wilson/4005-10793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12715/","id":12715,"name":"Thing","site_detail_url":"https://comicvine.gamespot.com/thing/4005-12715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18121/","id":18121,"name":"Dan-El","site_detail_url":"https://comicvine.gamespot.com/dan-el/4005-18121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18122/","id":18122,"name":"Natongo","site_detail_url":"https://comicvine.gamespot.com/natongo/4005-18122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18123/","id":18123,"name":"Queen Tavane","site_detail_url":"https://comicvine.gamespot.com/queen-tavane/4005-18123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18124/","id":18124,"name":"Sihamba","site_detail_url":"https://comicvine.gamespot.com/sihamba/4005-18124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18125/","id":18125,"name":"Baroungo","site_detail_url":"https://comicvine.gamespot.com/baroungo/4005-18125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18126/","id":18126,"name":"Queen Ilena","site_detail_url":"https://comicvine.gamespot.com/queen-ilena/4005-18126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18127/","id":18127,"name":"King Inkosi","site_detail_url":"https://comicvine.gamespot.com/king-inkosi/4005-18127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18128/","id":18128,"name":"Queen Zulena","site_detail_url":"https://comicvine.gamespot.com/queen-zulena/4005-18128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18129/","id":18129,"name":"Simamba","site_detail_url":"https://comicvine.gamespot.com/simamba/4005-18129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18130/","id":18130,"name":"Nyanga Imopo","site_detail_url":"https://comicvine.gamespot.com/nyanga-imopo/4005-18130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18131/","id":18131,"name":"Induna","site_detail_url":"https://comicvine.gamespot.com/induna/4005-18131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18132/","id":18132,"name":"Utengo","site_detail_url":"https://comicvine.gamespot.com/utengo/4005-18132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18133/","id":18133,"name":"Shiek Sidi","site_detail_url":"https://comicvine.gamespot.com/shiek-sidi/4005-18133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19692/","id":19692,"name":"Jet Dream","site_detail_url":"https://comicvine.gamespot.com/jet-dream/4005-19692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21090/","id":21090,"name":"Prince Of Tabbioca","site_detail_url":"https://comicvine.gamespot.com/prince-of-tabbioca/4005-21090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21091/","id":21091,"name":"June Jitsui","site_detail_url":"https://comicvine.gamespot.com/june-jitsui/4005-21091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21092/","id":21092,"name":"Bert Shmarks","site_detail_url":"https://comicvine.gamespot.com/bert-shmarks/4005-21092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21102/","id":21102,"name":"Cracky","site_detail_url":"https://comicvine.gamespot.com/cracky/4005-21102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21103/","id":21103,"name":"Mr. Kaws","site_detail_url":"https://comicvine.gamespot.com/mr-kaws/4005-21103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21152/","id":21152,"name":"Henny","site_detail_url":"https://comicvine.gamespot.com/henny/4005-21152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21153/","id":21153,"name":"Uncle Clem","site_detail_url":"https://comicvine.gamespot.com/uncle-clem/4005-21153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21156/","id":21156,"name":"Marcella","site_detail_url":"https://comicvine.gamespot.com/marcella/4005-21156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21440/","id":21440,"name":"Henrietta Hen","site_detail_url":"https://comicvine.gamespot.com/henrietta-hen/4005-21440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21514/","id":21514,"name":"Pugsley","site_detail_url":"https://comicvine.gamespot.com/pugsley/4005-21514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21517/","id":21517,"name":"Lurch","site_detail_url":"https://comicvine.gamespot.com/lurch/4005-21517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21520/","id":21520,"name":"Uncle Fester","site_detail_url":"https://comicvine.gamespot.com/uncle-fester/4005-21520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23892/","id":23892,"name":"Bristle Hound","site_detail_url":"https://comicvine.gamespot.com/bristle-hound/4005-23892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28704/","id":28704,"name":"Lily Munster","site_detail_url":"https://comicvine.gamespot.com/lily-munster/4005-28704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31665/","id":31665,"name":"Grandmama","site_detail_url":"https://comicvine.gamespot.com/grandmama/4005-31665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33667/","id":33667,"name":"Fat Albert","site_detail_url":"https://comicvine.gamespot.com/fat-albert/4005-33667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33959/","id":33959,"name":"Flipper","site_detail_url":"https://comicvine.gamespot.com/flipper/4005-33959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34209/","id":34209,"name":"Dagar the Invincible","site_detail_url":"https://comicvine.gamespot.com/dagar-the-invincible/4005-34209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34436/","id":34436,"name":"Spongy Beagle","site_detail_url":"https://comicvine.gamespot.com/spongy-beagle/4005-34436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35482/","id":35482,"name":"Korak","site_detail_url":"https://comicvine.gamespot.com/korak/4005-35482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-36067/","id":36067,"name":"Trix Rabbit","site_detail_url":"https://comicvine.gamespot.com/trix-rabbit/4005-36067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37096/","id":37096,"name":"Lok-the-Wise","site_detail_url":"https://comicvine.gamespot.com/lok-the-wise/4005-37096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37518/","id":37518,"name":"Morticia","site_detail_url":"https://comicvine.gamespot.com/morticia/4005-37518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37713/","id":37713,"name":"Goober","site_detail_url":"https://comicvine.gamespot.com/goober/4005-37713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37779/","id":37779,"name":"Dudley Duck","site_detail_url":"https://comicvine.gamespot.com/dudley-duck/4005-37779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38053/","id":38053,"name":"Zachariah","site_detail_url":"https://comicvine.gamespot.com/zachariah/4005-38053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38143/","id":38143,"name":"Doc Hunter","site_detail_url":"https://comicvine.gamespot.com/doc-hunter/4005-38143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38144/","id":38144,"name":"Kimsley Bolt","site_detail_url":"https://comicvine.gamespot.com/kimsley-bolt/4005-38144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38169/","id":38169,"name":"Billy Beaver","site_detail_url":"https://comicvine.gamespot.com/billy-beaver/4005-38169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38170/","id":38170,"name":"Farmer John","site_detail_url":"https://comicvine.gamespot.com/farmer-john/4005-38170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38249/","id":38249,"name":"Small Bear","site_detail_url":"https://comicvine.gamespot.com/small-bear/4005-38249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38250/","id":38250,"name":"Long Lance","site_detail_url":"https://comicvine.gamespot.com/long-lance/4005-38250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38547/","id":38547,"name":"Goliath","site_detail_url":"https://comicvine.gamespot.com/goliath/4005-38547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38553/","id":38553,"name":"Gomez","site_detail_url":"https://comicvine.gamespot.com/gomez/4005-38553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38669/","id":38669,"name":"Kelly","site_detail_url":"https://comicvine.gamespot.com/kelly/4005-38669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38670/","id":38670,"name":"Scott","site_detail_url":"https://comicvine.gamespot.com/scott/4005-38670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38929/","id":38929,"name":"Scout","site_detail_url":"https://comicvine.gamespot.com/scout/4005-38929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38936/","id":38936,"name":"Wednesday","site_detail_url":"https://comicvine.gamespot.com/wednesday/4005-38936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39056/","id":39056,"name":"Shorty Stoneageman","site_detail_url":"https://comicvine.gamespot.com/shorty-stoneageman/4005-39056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39101/","id":39101,"name":"Uncle Manley","site_detail_url":"https://comicvine.gamespot.com/uncle-manley/4005-39101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39102/","id":39102,"name":"Cousin Marty","site_detail_url":"https://comicvine.gamespot.com/cousin-marty/4005-39102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39103/","id":39103,"name":"Uncle Louie","site_detail_url":"https://comicvine.gamespot.com/uncle-louie/4005-39103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39104/","id":39104,"name":"Uncle Murdoch","site_detail_url":"https://comicvine.gamespot.com/uncle-murdoch/4005-39104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39219/","id":39219,"name":"Space Mouse","site_detail_url":"https://comicvine.gamespot.com/space-mouse/4005-39219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39222/","id":39222,"name":"King Of Rodentia","site_detail_url":"https://comicvine.gamespot.com/king-of-rodentia/4005-39222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39288/","id":39288,"name":"Sammy Seal","site_detail_url":"https://comicvine.gamespot.com/sammy-seal/4005-39288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39310/","id":39310,"name":"Liddle Wolfgang","site_detail_url":"https://comicvine.gamespot.com/liddle-wolfgang/4005-39310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39311/","id":39311,"name":"Ivan Hoodnik","site_detail_url":"https://comicvine.gamespot.com/ivan-hoodnik/4005-39311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40844/","id":40844,"name":"Tiger Girl","site_detail_url":"https://comicvine.gamespot.com/tiger-girl/4005-40844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44044/","id":44044,"name":"Leopard Girl","site_detail_url":"https://comicvine.gamespot.com/leopard-girl/4005-44044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47470/","id":47470,"name":"Quacker","site_detail_url":"https://comicvine.gamespot.com/quacker/4005-47470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53578/","id":53578,"name":"Samson","site_detail_url":"https://comicvine.gamespot.com/samson/4005-53578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54136/","id":54136,"name":"Cuddles","site_detail_url":"https://comicvine.gamespot.com/cuddles/4005-54136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54611/","id":54611,"name":"Iggie","site_detail_url":"https://comicvine.gamespot.com/iggie/4005-54611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55113/","id":55113,"name":"So-So","site_detail_url":"https://comicvine.gamespot.com/so-so/4005-55113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55598/","id":55598,"name":"Miranda Panda","site_detail_url":"https://comicvine.gamespot.com/miranda-panda/4005-55598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55599/","id":55599,"name":"Poncho Panda","site_detail_url":"https://comicvine.gamespot.com/poncho-panda/4005-55599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58257/","id":58257,"name":"Professor Harbinger","site_detail_url":"https://comicvine.gamespot.com/professor-harbinger/4005-58257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59150/","id":59150,"name":"Senator Clane","site_detail_url":"https://comicvine.gamespot.com/senator-clane/4005-59150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59232/","id":59232,"name":"M'Ree","site_detail_url":"https://comicvine.gamespot.com/mree/4005-59232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60064/","id":60064,"name":"Danae","site_detail_url":"https://comicvine.gamespot.com/danae/4005-60064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60408/","id":60408,"name":"Pert","site_detail_url":"https://comicvine.gamespot.com/pert/4005-60408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60995/","id":60995,"name":"Nancy Hedford","site_detail_url":"https://comicvine.gamespot.com/nancy-hedford/4005-60995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62138/","id":62138,"name":"The Fonz","site_detail_url":"https://comicvine.gamespot.com/the-fonz/4005-62138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63311/","id":63311,"name":"Serena","site_detail_url":"https://comicvine.gamespot.com/serena/4005-63311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63314/","id":63314,"name":"Commander Zarz","site_detail_url":"https://comicvine.gamespot.com/commander-zarz/4005-63314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66728/","id":66728,"name":"Craig Robinson","site_detail_url":"https://comicvine.gamespot.com/craig-robinson/4005-66728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66729/","id":66729,"name":"June Robinson","site_detail_url":"https://comicvine.gamespot.com/june-robinson/4005-66729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66730/","id":66730,"name":"Tim Robinson","site_detail_url":"https://comicvine.gamespot.com/tim-robinson/4005-66730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66731/","id":66731,"name":"Tam Robinson","site_detail_url":"https://comicvine.gamespot.com/tam-robinson/4005-66731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66939/","id":66939,"name":"Herman Munster","site_detail_url":"https://comicvine.gamespot.com/herman-munster/4005-66939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67020/","id":67020,"name":"Tom Morrow","site_detail_url":"https://comicvine.gamespot.com/tom-morrow/4005-67020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67328/","id":67328,"name":"Uncle Martin","site_detail_url":"https://comicvine.gamespot.com/uncle-martin/4005-67328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67462/","id":67462,"name":"Aral Uzbek","site_detail_url":"https://comicvine.gamespot.com/aral-uzbek/4005-67462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67764/","id":67764,"name":"Mister Ed","site_detail_url":"https://comicvine.gamespot.com/mister-ed/4005-67764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68583/","id":68583,"name":"Festus Haggen","site_detail_url":"https://comicvine.gamespot.com/festus-haggen/4005-68583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68584/","id":68584,"name":"Kitty Russell","site_detail_url":"https://comicvine.gamespot.com/kitty-russell/4005-68584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71128/","id":71128,"name":"Granny","site_detail_url":"https://comicvine.gamespot.com/granny/4005-71128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71953/","id":71953,"name":"Orun","site_detail_url":"https://comicvine.gamespot.com/orun/4005-71953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71955/","id":71955,"name":"Hamilton Mansfield Lamont","site_detail_url":"https://comicvine.gamespot.com/hamilton-mansfield-lamont/4005-71955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72612/","id":72612,"name":"Dianne Noralle","site_detail_url":"https://comicvine.gamespot.com/dianne-noralle/4005-72612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72613/","id":72613,"name":"Killer Kull","site_detail_url":"https://comicvine.gamespot.com/killer-kull/4005-72613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72709/","id":72709,"name":"Ra-Ka-Tep","site_detail_url":"https://comicvine.gamespot.com/ra-ka-tep/4005-72709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72710/","id":72710,"name":"Anne Sara","site_detail_url":"https://comicvine.gamespot.com/anne-sara/4005-72710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72711/","id":72711,"name":"Lakota Rainflower","site_detail_url":"https://comicvine.gamespot.com/lakota-rainflower/4005-72711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72712/","id":72712,"name":"Baron Tibor","site_detail_url":"https://comicvine.gamespot.com/baron-tibor/4005-72712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72713/","id":72713,"name":"Elliot Kane","site_detail_url":"https://comicvine.gamespot.com/elliot-kane/4005-72713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72714/","id":72714,"name":"Simbar","site_detail_url":"https://comicvine.gamespot.com/simbar/4005-72714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72715/","id":72715,"name":"Ostellon","site_detail_url":"https://comicvine.gamespot.com/ostellon/4005-72715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72716/","id":72716,"name":"Valdemar Van Helsing","site_detail_url":"https://comicvine.gamespot.com/valdemar-van-helsing/4005-72716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72720/","id":72720,"name":"Lu-Sai","site_detail_url":"https://comicvine.gamespot.com/lu-sai/4005-72720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72742/","id":72742,"name":"Xorkon","site_detail_url":"https://comicvine.gamespot.com/xorkon/4005-72742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72743/","id":72743,"name":"Durak","site_detail_url":"https://comicvine.gamespot.com/durak/4005-72743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72744/","id":72744,"name":"Laird Ravenscroft","site_detail_url":"https://comicvine.gamespot.com/laird-ravenscroft/4005-72744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72746/","id":72746,"name":"Tragg","site_detail_url":"https://comicvine.gamespot.com/tragg/4005-72746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72751/","id":72751,"name":"The Lurker","site_detail_url":"https://comicvine.gamespot.com/the-lurker/4005-72751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72753/","id":72753,"name":"Kareena","site_detail_url":"https://comicvine.gamespot.com/kareena/4005-72753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72770/","id":72770,"name":"Scorpio","site_detail_url":"https://comicvine.gamespot.com/scorpio/4005-72770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72772/","id":72772,"name":"Ling-Ra","site_detail_url":"https://comicvine.gamespot.com/ling-ra/4005-72772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72773/","id":72773,"name":"Meeli","site_detail_url":"https://comicvine.gamespot.com/meeli/4005-72773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72774/","id":72774,"name":"Nura","site_detail_url":"https://comicvine.gamespot.com/nura/4005-72774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72775/","id":72775,"name":"Torgus","site_detail_url":"https://comicvine.gamespot.com/torgus/4005-72775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72776/","id":72776,"name":"Lorn","site_detail_url":"https://comicvine.gamespot.com/lorn/4005-72776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72777/","id":72777,"name":"Renya","site_detail_url":"https://comicvine.gamespot.com/renya/4005-72777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73214/","id":73214,"name":"Ka-Ran","site_detail_url":"https://comicvine.gamespot.com/ka-ran/4005-73214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73293/","id":73293,"name":"Honey West","site_detail_url":"https://comicvine.gamespot.com/honey-west/4005-73293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73304/","id":73304,"name":"Dr. Zen Arbon","site_detail_url":"https://comicvine.gamespot.com/dr-zen-arbon/4005-73304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73307/","id":73307,"name":"Lokryna","site_detail_url":"https://comicvine.gamespot.com/lokryna/4005-73307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73356/","id":73356,"name":"Mushmouse","site_detail_url":"https://comicvine.gamespot.com/mushmouse/4005-73356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73357/","id":73357,"name":"Punkin' Puss","site_detail_url":"https://comicvine.gamespot.com/punkin-puss/4005-73357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73394/","id":73394,"name":"President Claiburne","site_detail_url":"https://comicvine.gamespot.com/president-claiburne/4005-73394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73768/","id":73768,"name":"Sentinel","site_detail_url":"https://comicvine.gamespot.com/sentinel/4005-73768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73769/","id":73769,"name":"Cybernoid","site_detail_url":"https://comicvine.gamespot.com/cybernoid/4005-73769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73995/","id":73995,"name":"Dumb Donald","site_detail_url":"https://comicvine.gamespot.com/dumb-donald/4005-73995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73998/","id":73998,"name":"Rudy","site_detail_url":"https://comicvine.gamespot.com/rudy/4005-73998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74001/","id":74001,"name":"Russell Cosby","site_detail_url":"https://comicvine.gamespot.com/russell-cosby/4005-74001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74002/","id":74002,"name":"Bucky","site_detail_url":"https://comicvine.gamespot.com/bucky/4005-74002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74007/","id":74007,"name":"Weird Harold","site_detail_url":"https://comicvine.gamespot.com/weird-harold/4005-74007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74302/","id":74302,"name":"Trum","site_detail_url":"https://comicvine.gamespot.com/trum/4005-74302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74303/","id":74303,"name":"Howie","site_detail_url":"https://comicvine.gamespot.com/howie/4005-74303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74304/","id":74304,"name":"Merf","site_detail_url":"https://comicvine.gamespot.com/merf/4005-74304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74305/","id":74305,"name":"Willo Talltrees","site_detail_url":"https://comicvine.gamespot.com/willo-talltrees/4005-74305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74306/","id":74306,"name":"Chet","site_detail_url":"https://comicvine.gamespot.com/chet/4005-74306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74314/","id":74314,"name":"Colonel Chov","site_detail_url":"https://comicvine.gamespot.com/colonel-chov/4005-74314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74315/","id":74315,"name":"Sam","site_detail_url":"https://comicvine.gamespot.com/sam/4005-74315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74316/","id":74316,"name":"Slin","site_detail_url":"https://comicvine.gamespot.com/slin/4005-74316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74317/","id":74317,"name":"L'Sier","site_detail_url":"https://comicvine.gamespot.com/lsier/4005-74317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74318/","id":74318,"name":"Spikey","site_detail_url":"https://comicvine.gamespot.com/spikey/4005-74318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74324/","id":74324,"name":"Sigma","site_detail_url":"https://comicvine.gamespot.com/sigma/4005-74324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74325/","id":74325,"name":"Bertram Wade","site_detail_url":"https://comicvine.gamespot.com/bertram-wade/4005-74325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74330/","id":74330,"name":"Condi","site_detail_url":"https://comicvine.gamespot.com/condi/4005-74330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74331/","id":74331,"name":"Bimi","site_detail_url":"https://comicvine.gamespot.com/bimi/4005-74331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74332/","id":74332,"name":"Bama","site_detail_url":"https://comicvine.gamespot.com/bama/4005-74332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74333/","id":74333,"name":"Skim","site_detail_url":"https://comicvine.gamespot.com/skim/4005-74333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76554/","id":76554,"name":"Captain Venture","site_detail_url":"https://comicvine.gamespot.com/captain-venture/4005-76554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76853/","id":76853,"name":"Doctor Theopolis","site_detail_url":"https://comicvine.gamespot.com/doctor-theopolis/4005-76853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76975/","id":76975,"name":"Millie the Robot","site_detail_url":"https://comicvine.gamespot.com/millie-the-robot/4005-76975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76980/","id":76980,"name":"Pahkut","site_detail_url":"https://comicvine.gamespot.com/pahkut/4005-76980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77118/","id":77118,"name":"Hutec","site_detail_url":"https://comicvine.gamespot.com/hutec/4005-77118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77394/","id":77394,"name":"Benjamin Cartwright","site_detail_url":"https://comicvine.gamespot.com/benjamin-cartwright/4005-77394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77849/","id":77849,"name":"Wheels Williams","site_detail_url":"https://comicvine.gamespot.com/wheels-williams/4005-77849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77850/","id":77850,"name":"Li'l Bit Bannon","site_detail_url":"https://comicvine.gamespot.com/lil-bit-bannon/4005-77850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77851/","id":77851,"name":"Scot Mc Call","site_detail_url":"https://comicvine.gamespot.com/scot-mc-call/4005-77851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77852/","id":77852,"name":"Lump Logan","site_detail_url":"https://comicvine.gamespot.com/lump-logan/4005-77852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77853/","id":77853,"name":"Billy Cube","site_detail_url":"https://comicvine.gamespot.com/billy-cube/4005-77853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77854/","id":77854,"name":"Josephine Urth","site_detail_url":"https://comicvine.gamespot.com/josephine-urth/4005-77854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77855/","id":77855,"name":"Van Packard","site_detail_url":"https://comicvine.gamespot.com/van-packard/4005-77855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77856/","id":77856,"name":"Tee Tee Power","site_detail_url":"https://comicvine.gamespot.com/tee-tee-power/4005-77856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77857/","id":77857,"name":"Professor Henry","site_detail_url":"https://comicvine.gamespot.com/professor-henry/4005-77857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80958/","id":80958,"name":"Scotty MacKay","site_detail_url":"https://comicvine.gamespot.com/scotty-mackay/4005-80958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80989/","id":80989,"name":"Sir Thomas","site_detail_url":"https://comicvine.gamespot.com/sir-thomas/4005-80989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80990/","id":80990,"name":"Kol","site_detail_url":"https://comicvine.gamespot.com/kol/4005-80990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81233/","id":81233,"name":"Dr. Rasp","site_detail_url":"https://comicvine.gamespot.com/dr-rasp/4005-81233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81234/","id":81234,"name":"Dr. Bently","site_detail_url":"https://comicvine.gamespot.com/dr-bently/4005-81234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82305/","id":82305,"name":"Hoss","site_detail_url":"https://comicvine.gamespot.com/hoss/4005-82305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82306/","id":82306,"name":"Adam Cartwright","site_detail_url":"https://comicvine.gamespot.com/adam-cartwright/4005-82306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82307/","id":82307,"name":"Little Joe","site_detail_url":"https://comicvine.gamespot.com/little-joe/4005-82307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82635/","id":82635,"name":"Woodsy Owl","site_detail_url":"https://comicvine.gamespot.com/woodsy-owl/4005-82635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83910/","id":83910,"name":"Baby Snoots","site_detail_url":"https://comicvine.gamespot.com/baby-snoots/4005-83910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85874/","id":85874,"name":"M 'Reema","site_detail_url":"https://comicvine.gamespot.com/m-reema/4005-85874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86472/","id":86472,"name":"Cousin Itt","site_detail_url":"https://comicvine.gamespot.com/cousin-itt/4005-86472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86774/","id":86774,"name":"Sandy Ricks","site_detail_url":"https://comicvine.gamespot.com/sandy-ricks/4005-86774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88178/","id":88178,"name":"Zorek","site_detail_url":"https://comicvine.gamespot.com/zorek/4005-88178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88179/","id":88179,"name":"Keera","site_detail_url":"https://comicvine.gamespot.com/keera/4005-88179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89986/","id":89986,"name":"Ricochet Rabbit","site_detail_url":"https://comicvine.gamespot.com/ricochet-rabbit/4005-89986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90014/","id":90014,"name":"Square Bear","site_detail_url":"https://comicvine.gamespot.com/square-bear/4005-90014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90015/","id":90015,"name":"Bubi Bear","site_detail_url":"https://comicvine.gamespot.com/bubi-bear/4005-90015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90016/","id":90016,"name":"Hair Bear","site_detail_url":"https://comicvine.gamespot.com/hair-bear/4005-90016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90021/","id":90021,"name":"Floral Rugg","site_detail_url":"https://comicvine.gamespot.com/floral-rugg/4005-90021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90022/","id":90022,"name":"Maw Rugg","site_detail_url":"https://comicvine.gamespot.com/maw-rugg/4005-90022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90023/","id":90023,"name":"Paw Rugg","site_detail_url":"https://comicvine.gamespot.com/paw-rugg/4005-90023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90026/","id":90026,"name":"Ding-A-Ling Wolf","site_detail_url":"https://comicvine.gamespot.com/ding-a-ling-wolf/4005-90026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90027/","id":90027,"name":"Droop-a-Long Coyote","site_detail_url":"https://comicvine.gamespot.com/droop-a-long-coyote/4005-90027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90028/","id":90028,"name":"Inch High","site_detail_url":"https://comicvine.gamespot.com/inch-high/4005-90028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96598/","id":96598,"name":"Captain Nice","site_detail_url":"https://comicvine.gamespot.com/captain-nice/4005-96598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96858/","id":96858,"name":"Beowulf","site_detail_url":"https://comicvine.gamespot.com/beowulf/4005-96858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110252/","id":110252,"name":"Grandpa","site_detail_url":"https://comicvine.gamespot.com/grandpa/4005-110252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110253/","id":110253,"name":"Marilyn Munster","site_detail_url":"https://comicvine.gamespot.com/marilyn-munster/4005-110253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110254/","id":110254,"name":"Eddie Munster","site_detail_url":"https://comicvine.gamespot.com/eddie-munster/4005-110254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110819/","id":110819,"name":"Brutus","site_detail_url":"https://comicvine.gamespot.com/brutus/4005-110819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111902/","id":111902,"name":"Prince Turhan","site_detail_url":"https://comicvine.gamespot.com/prince-turhan/4005-111902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111903/","id":111903,"name":"Princess Nida","site_detail_url":"https://comicvine.gamespot.com/princess-nida/4005-111903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111904/","id":111904,"name":"Raseem","site_detail_url":"https://comicvine.gamespot.com/raseem/4005-111904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111905/","id":111905,"name":"Fariek","site_detail_url":"https://comicvine.gamespot.com/fariek/4005-111905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111906/","id":111906,"name":"Bez","site_detail_url":"https://comicvine.gamespot.com/bez/4005-111906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111907/","id":111907,"name":"Zazuum","site_detail_url":"https://comicvine.gamespot.com/zazuum/4005-111907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-111987/","id":111987,"name":"Loopy De Loop","site_detail_url":"https://comicvine.gamespot.com/loopy-de-loop/4005-111987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112398/","id":112398,"name":"Gus Holiday","site_detail_url":"https://comicvine.gamespot.com/gus-holiday/4005-112398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112399/","id":112399,"name":"Laurie Holiday","site_detail_url":"https://comicvine.gamespot.com/laurie-holiday/4005-112399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112400/","id":112400,"name":"Hap Holiday","site_detail_url":"https://comicvine.gamespot.com/hap-holiday/4005-112400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112402/","id":112402,"name":"Precocia Holiday","site_detail_url":"https://comicvine.gamespot.com/precocia-holiday/4005-112402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112403/","id":112403,"name":"Groovia","site_detail_url":"https://comicvine.gamespot.com/groovia/4005-112403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112404/","id":112404,"name":"Mr. Evictus","site_detail_url":"https://comicvine.gamespot.com/mr-evictus/4005-112404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112448/","id":112448,"name":"Mr. J. Evil Scientist","site_detail_url":"https://comicvine.gamespot.com/mr-j-evil-scientist/4005-112448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112449/","id":112449,"name":"Mrs. J. Evil Scientist","site_detail_url":"https://comicvine.gamespot.com/mrs-j-evil-scientist/4005-112449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112450/","id":112450,"name":"Junior","site_detail_url":"https://comicvine.gamespot.com/junior/4005-112450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112500/","id":112500,"name":"Gary Gulliver","site_detail_url":"https://comicvine.gamespot.com/gary-gulliver/4005-112500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112501/","id":112501,"name":"Tagg the Dog","site_detail_url":"https://comicvine.gamespot.com/tagg-the-dog/4005-112501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112502/","id":112502,"name":"Captain Leech","site_detail_url":"https://comicvine.gamespot.com/captain-leech/4005-112502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112503/","id":112503,"name":"King Pomp","site_detail_url":"https://comicvine.gamespot.com/king-pomp/4005-112503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112504/","id":112504,"name":"Flirtacia","site_detail_url":"https://comicvine.gamespot.com/flirtacia/4005-112504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112505/","id":112505,"name":"Glum","site_detail_url":"https://comicvine.gamespot.com/glum/4005-112505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112506/","id":112506,"name":"Edgar","site_detail_url":"https://comicvine.gamespot.com/edgar/4005-112506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112507/","id":112507,"name":"Bunko","site_detail_url":"https://comicvine.gamespot.com/bunko/4005-112507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112508/","id":112508,"name":"Bakaar","site_detail_url":"https://comicvine.gamespot.com/bakaar/4005-112508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112509/","id":112509,"name":"Vangore","site_detail_url":"https://comicvine.gamespot.com/vangore/4005-112509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112524/","id":112524,"name":"Jimmy","site_detail_url":"https://comicvine.gamespot.com/jimmy/4005-112524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112525/","id":112525,"name":"H.R. Pufnstuf","site_detail_url":"https://comicvine.gamespot.com/h-r-pufnstuf/4005-112525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112526/","id":112526,"name":"Shirley Pufnstuf","site_detail_url":"https://comicvine.gamespot.com/shirley-pufnstuf/4005-112526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112527/","id":112527,"name":"Dr. Blinky","site_detail_url":"https://comicvine.gamespot.com/dr-blinky/4005-112527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112528/","id":112528,"name":"Wilhelmina W. Witchiepoo","site_detail_url":"https://comicvine.gamespot.com/wilhelmina-w-witchiepoo/4005-112528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112529/","id":112529,"name":"Freddy the Flute","site_detail_url":"https://comicvine.gamespot.com/freddy-the-flute/4005-112529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112530/","id":112530,"name":"Clang","site_detail_url":"https://comicvine.gamespot.com/clang/4005-112530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112531/","id":112531,"name":"Cling","site_detail_url":"https://comicvine.gamespot.com/cling/4005-112531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112532/","id":112532,"name":"Orson Vulture","site_detail_url":"https://comicvine.gamespot.com/orson-vulture/4005-112532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112534/","id":112534,"name":"Ludicrous Lion","site_detail_url":"https://comicvine.gamespot.com/ludicrous-lion/4005-112534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112535/","id":112535,"name":"Seymour Spider","site_detail_url":"https://comicvine.gamespot.com/seymour-spider/4005-112535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112536/","id":112536,"name":"Society Tree","site_detail_url":"https://comicvine.gamespot.com/society-tree/4005-112536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112537/","id":112537,"name":"Judy the Frog","site_detail_url":"https://comicvine.gamespot.com/judy-the-frog/4005-112537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112814/","id":112814,"name":"Chief Blue Meanie","site_detail_url":"https://comicvine.gamespot.com/chief-blue-meanie/4005-112814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112815/","id":112815,"name":"Max","site_detail_url":"https://comicvine.gamespot.com/max/4005-112815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112816/","id":112816,"name":"Fred","site_detail_url":"https://comicvine.gamespot.com/fred/4005-112816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112817/","id":112817,"name":"Jeremy Hillary Boob, Ph.D.","site_detail_url":"https://comicvine.gamespot.com/jeremy-hillary-boob-ph-d/4005-112817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112818/","id":112818,"name":"Lord Mayor","site_detail_url":"https://comicvine.gamespot.com/lord-mayor/4005-112818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120447/","id":120447,"name":"Clint Clobber","site_detail_url":"https://comicvine.gamespot.com/clint-clobber/4005-120447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120977/","id":120977,"name":"Perry Gunnite","site_detail_url":"https://comicvine.gamespot.com/perry-gunnite/4005-120977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121013/","id":121013,"name":"Rodney Rocktop","site_detail_url":"https://comicvine.gamespot.com/rodney-rocktop/4005-121013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121099/","id":121099,"name":"Colonel Rimfire","site_detail_url":"https://comicvine.gamespot.com/colonel-rimfire/4005-121099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121449/","id":121449,"name":"Izzy Einstone","site_detail_url":"https://comicvine.gamespot.com/izzy-einstone/4005-121449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121450/","id":121450,"name":"Flappy","site_detail_url":"https://comicvine.gamespot.com/flappy/4005-121450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121451/","id":121451,"name":"Rocky Ranger","site_detail_url":"https://comicvine.gamespot.com/rocky-ranger/4005-121451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121455/","id":121455,"name":"Gypsy Crystal","site_detail_url":"https://comicvine.gamespot.com/gypsy-crystal/4005-121455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121456/","id":121456,"name":"Buddy Boulder","site_detail_url":"https://comicvine.gamespot.com/buddy-boulder/4005-121456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121554/","id":121554,"name":"Sandy Stone","site_detail_url":"https://comicvine.gamespot.com/sandy-stone/4005-121554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121555/","id":121555,"name":"Suzy Quartz","site_detail_url":"https://comicvine.gamespot.com/suzy-quartz/4005-121555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121556/","id":121556,"name":"Sally Stone","site_detail_url":"https://comicvine.gamespot.com/sally-stone/4005-121556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121557/","id":121557,"name":"Scooter","site_detail_url":"https://comicvine.gamespot.com/scooter/4005-121557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121558/","id":121558,"name":"Countdown","site_detail_url":"https://comicvine.gamespot.com/countdown/4005-121558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121559/","id":121559,"name":"Jenny Jet","site_detail_url":"https://comicvine.gamespot.com/jenny-jet/4005-121559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121560/","id":121560,"name":"Snoopy","site_detail_url":"https://comicvine.gamespot.com/snoopy/4005-121560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121561/","id":121561,"name":"Pupstar","site_detail_url":"https://comicvine.gamespot.com/pupstar/4005-121561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121562/","id":121562,"name":"Captain Skyhook","site_detail_url":"https://comicvine.gamespot.com/captain-skyhook/4005-121562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121563/","id":121563,"name":"Static","site_detail_url":"https://comicvine.gamespot.com/static/4005-121563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121565/","id":121565,"name":"Esky Moe","site_detail_url":"https://comicvine.gamespot.com/esky-moe/4005-121565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121613/","id":121613,"name":"Orrible Orvie","site_detail_url":"https://comicvine.gamespot.com/orrible-orvie/4005-121613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121614/","id":121614,"name":"Awful Annie","site_detail_url":"https://comicvine.gamespot.com/awful-annie/4005-121614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121615/","id":121615,"name":"Mildew Monster","site_detail_url":"https://comicvine.gamespot.com/mildew-monster/4005-121615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121616/","id":121616,"name":"Demonica Monster","site_detail_url":"https://comicvine.gamespot.com/demonica-monster/4005-121616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121617/","id":121617,"name":"Doctor Frankenfurter","site_detail_url":"https://comicvine.gamespot.com/doctor-frankenfurter/4005-121617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121619/","id":121619,"name":"Weremonster","site_detail_url":"https://comicvine.gamespot.com/weremonster/4005-121619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121698/","id":121698,"name":"Professor Putter","site_detail_url":"https://comicvine.gamespot.com/professor-putter/4005-121698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121699/","id":121699,"name":"Herman The Robot","site_detail_url":"https://comicvine.gamespot.com/herman-the-robot/4005-121699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121848/","id":121848,"name":"Lionel J. Botch","site_detail_url":"https://comicvine.gamespot.com/lionel-j-botch/4005-121848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-121849/","id":121849,"name":"Eustace P. Peevly","site_detail_url":"https://comicvine.gamespot.com/eustace-p-peevly/4005-121849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128051/","id":128051,"name":"Carol Post","site_detail_url":"https://comicvine.gamespot.com/carol-post/4005-128051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128052/","id":128052,"name":"Wilbur Post","site_detail_url":"https://comicvine.gamespot.com/wilbur-post/4005-128052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132587/","id":132587,"name":"Sergeant Deux Deux","site_detail_url":"https://comicvine.gamespot.com/sergeant-deux-deux/4005-132587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132588/","id":132588,"name":"Captain Clamity","site_detail_url":"https://comicvine.gamespot.com/captain-clamity/4005-132588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138186/","id":138186,"name":"Oggar","site_detail_url":"https://comicvine.gamespot.com/oggar/4005-138186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144877/","id":144877,"name":"Tim O'Hara","site_detail_url":"https://comicvine.gamespot.com/tim-ohara/4005-144877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149805/","id":149805,"name":"Twiki","site_detail_url":"https://comicvine.gamespot.com/twiki/4005-149805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151389/","id":151389,"name":"Gomer Pyle","site_detail_url":"https://comicvine.gamespot.com/gomer-pyle/4005-151389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151435/","id":151435,"name":"Vince Carter","site_detail_url":"https://comicvine.gamespot.com/vince-carter/4005-151435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153414/","id":153414,"name":"Mewsette","site_detail_url":"https://comicvine.gamespot.com/mewsette/4005-153414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153415/","id":153415,"name":"Jaune Tom","site_detail_url":"https://comicvine.gamespot.com/jaune-tom/4005-153415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153416/","id":153416,"name":"Meowrice","site_detail_url":"https://comicvine.gamespot.com/meowrice/4005-153416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153417/","id":153417,"name":"Robespierre","site_detail_url":"https://comicvine.gamespot.com/robespierre/4005-153417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164701/","id":164701,"name":"Potsie","site_detail_url":"https://comicvine.gamespot.com/potsie/4005-164701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164702/","id":164702,"name":"Ralph Malph","site_detail_url":"https://comicvine.gamespot.com/ralph-malph/4005-164702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164703/","id":164703,"name":"Richie Cunningham","site_detail_url":"https://comicvine.gamespot.com/richie-cunningham/4005-164703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167369/","id":167369,"name":"Lorelei Brown","site_detail_url":"https://comicvine.gamespot.com/lorelei-brown/4005-167369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167370/","id":167370,"name":"Harry Burns","site_detail_url":"https://comicvine.gamespot.com/harry-burns/4005-167370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167371/","id":167371,"name":"Detective Bill Brennan","site_detail_url":"https://comicvine.gamespot.com/detective-bill-brennan/4005-167371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-167372/","id":167372,"name":"Angela Brown","site_detail_url":"https://comicvine.gamespot.com/angela-brown/4005-167372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170291/","id":170291,"name":"Kitty Kat","site_detail_url":"https://comicvine.gamespot.com/kitty-kat/4005-170291/"}],"date_added":"2008-06-06 11:08:00","date_last_updated":"2021-12-25 06:57:09","deck":"Gold Key was known as Western Publishing. They dissolved their partnership with Dell and created their own stable of characters.","description":"

    Gold Key Comics was created in 1962, when Western switched to in-house publishing rather than packaging content for branding and distribution by its business partner, Dell Comics. Hoping to make their comics more like traditional children's books they initially eliminated panel borders (using strips of color instead) and had word and thought balloons that were rectangular rather than oval. Within a year they had reverted to using inked panel borders and oval balloons. They also experimented with new formats, including black and white 136 page hardcovers containing reprints (Whitman Comic Books) and tabloid sized 52 page hardcovers containing new material (Golden Picture Story Book). These evidently were aimed at the book trade and department stores, in the manner of their popular Little Golden Books. In 1967 they reprinted a number of selected issues of their comics under the title Top Comics which were sold in plastic bags of 5 at gas stations and various eateries; some locations removed them from the bags and sold them individually with price stickers attached to the covers.

    A striking difference between Gold Key and other publishers (which had been done by Dell as well) was to publish most of their mystery, jungle, science-fiction, adventure and similar series with full color painted covers rather than the standard line-artwork.

    Gold Key featured a number of licensed properties and several original titles (including a number of publications that spun-off from Dell's Four Color series). It maintained decent sales numbers throughout the 1960s, thanks to its offering many titles based upon popular TV series of the day, as well as numerous titles based upon both Walt Disney Studios and Warner Bros. animated properties. It was also the first company to publish comic books based upon Star Trek.

    Over the years it did lose several properties, including the King Features Syndicate characters (Popeye, Flash Gordon, The Phantom, etc) in 1966, the Hanna Barbera characters (to Charlton Comics) in 1970, and Star Trek (to Marvel Comics) in 1979.

    The stable of writers and artists built up by Western Publishing during the Dell Comics era mostly continued into the Gold Key era. In the mid-60s a number of artists left to work for the newly formed Disney Studio Program. Among the few new creators at Gold Key were writers Don Glut, Len Wein and Mark Evanier and artist Mike Royer. Also in the 70s writer Bob Gregory started drawing stories, mostly for Daisy and Donald. Acclaimed artist/writer Frank Miller had his first published comic book artwork in The Twilight Zone for Gold Key in 1978.

    According to former Western Publishing writer Mark Evanier, during the mid-1960s comedy writer Jerry Belson (whose writing partner at the time was Garry Marshall), while writing for leading TV sitcoms like The Dick Van Dyke Show, also did scripts for Gold Key. Among the comics he wrote for were The Flintstones, Uncle Scrooge, Daffy Duck, Bugs Bunny, The Three Stooges and Woody Woodpecker.

    In the 1970s, when the comics industry experienced a downswing, Gold Key was among the hardest hit. Its editorial policies had not kept pace with changing times and suffered erosion of its base of sales among children who could now instead watch cartoons and other entertainment on free television. By 1977, all of the company's original series had been canceled (most had been dropped circa 1973-1974), and its licensed series were virtually all reprint-only, although Gold Key was still able to obtain the rights to publish a comic book series based upon Buck Rogers in the 25th Century between 1979 and 1981.

    In this period Gold Key experimented with digests which had some success. In a similar vein to explore new markets they produced in the mid-1970s a four volume series with somewhat better production values and printing aimed at the emerging collector market containing classic stories of the Disney characters by Carl Barks and Floyd Gottfredson (Best of Walt Disney's Comics). In the late 1970s came somewhat higher grade reprints of various licensed characters also aimed at new venues (Dynabrites) plus a four issue series adapting classic science fiction stories by authors such as Issac Asimov and John W. Campbell (Starstream). Golden Press released trade paperback reprint collections (Walt Disney Christmas Parade, Bugs Bunny Comics-Go-Round, Star Trek Enterprise Logs). And while still distributing comic books on spinners and racks at drug stores, super markets and such under the Gold Key label simultaneously distributing the same comics — usually in plastic bags of three — to toy and department stores plus newsstands at airports and bus/train stations \"as well as other outlets that weren't conducive to conventional comic racks\" under the Whitman logo which it also used for such products as coloring books. Western at one point also distributed bagged comics from its rivals DC Comics and Marvel Comics under the Whitman logo. President of DC Comics Paul Levitz has stated \"The Western program was enormous — even well into the '70s they were taking very large numbers of DC titles for distribution (I recall 50,000 copies offhand).\" Continued declining sales forced Western in 1981 to cease newsstand distribution and thereafter release all its comics solely in bags as \" Whitman Comics\". The \"Gold Key\" logo was discontinued. Eventually arrangements were made to distribute these releases to the nascent national network of comic book stores as part of the Whitman alternate methods of distribution. All these efforts proved ultimately unsuccessful, and by 1984 Western was out of the comic book business.

    Many of their characters have been revived over the decades by companies ranging from Valiant to Dark Horse who recently revived and published some of their more memorable characters. Dynamite has the publishing rights to the major/well known Gold Key characters.

    Some of the stable of characters that were originally published were:

    Magnus (Gold Key, Valiant, Dark Horse, Dynamite)

    Dr. Solar (Gold Key, Valiant, Dark Horse, Dynamite)

    Turok (Dell, Gold Key, Valiant, Dark Horse, Dynamite)

    M.A.R.S. Patrol

    Mighty Samson (This version is paid homage to in Project Superpowers) (Gold Key, Dark Horse, DE)

    Terra (Gold Key, Dark Horse, Dynamite)

    Tiger Girl (Gold Key version)

    Dr. Spektor (Gold Key, Dynamite)

    Tragg

    Dagar

    Captain Johner (Gold Key, Valiant)

    Tanek Nuro (Gold Key, Dark Horse)

    Captain Venture (Fawcett, Gold Key)

    Mindor (Gold Key, Dynamite)

    Sharmaine (Gold Key, Dynamite)

    Leeja (Gold Key, Valiant, Dark Horse, Dynamite)

    Doc Savage (Street and Smith, Gold Key, Marvel, DC, Dark Horse, Dynamite)

    Flash Gordon (King Features Syndicate, Toby, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)

    Ming the Merciless (King Features Syndicate, Toby, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)

    The Phantom (King Features Syndicate, Gold Key, Marvel, DC, Moonstone, Dynamite)

    The Lone Ranger (Dell, Gold Key, Dynamite)

    Tarzan (Dell, Gold Key, DC, Marvel, Dark Horse, Dynamite)

    John Carter, Warlord of Mars (Dell, Gold Key, DC, Marvel, Dynamite)

    Carson Napier (Gold Key, DC, Dark Horse) Edgar Rice Burroughs creation

    Duare (Gold Key, DC, Dark Horse)

    Korak (Gold Key, DC, Marvel, Dark Horse) Edgar Rice Burroughs creation

    David Innes (Gold Key, DC, Dark Horse)

    Abner Perry (Gold Key, DC, Dark Horse)

    La of Opar (Dell, Gold Key, DC, Marvel, Dark Horse, Dynamite)

    Lakota Rainflower (Gold Key, Dynamite)

    Commander Zarz (Gold Key, Valiant)

    The Owl (Dell, Gold Key, Dynamite)

    Owl Girl (Dell, Gold Key, Dynamite)

    The Scarecrow (seen in DC's League of Extrodinary Gentlemen)

    Oran

    1-A (Gold Key, Valiant, Dark Horse, Dynamite)

    Mekman (Gold Key, Valiant, Dynamite)

    Hutek (Dell, Gold Key)

    Major Timbuk

    The Bionic Man novel by Martin Caidin (Gold Key, Charlton, Dynamite)

    M'Rees (Gold Key, Valiant)

    G-8 (Popular, Gold Key, Moonstone)

    Sigma

    L'Sier

    Purple Zombie (Eastern Color, Gold Key)

    Sentinel

    Loyra

    Dr. Zen Abron

    Honey West novel This Girl for Hire Gloria Fickling (Gold Key, Moonstone)

    Nura

    Talpa

    Dan Dunn (Eastern Color, Dell, Gold Key)

    Andar (Dell, Gold Key, Valiant, Dark Horse, Dynamite)

    Many of these characters have separate pages while others do not.

    ","id":178,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8302618-goldkeycomics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8302618-goldkeycomics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8302618-goldkeycomics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8302618-goldkeycomics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8302618-goldkeycomics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8302618-goldkeycomics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8302618-goldkeycomics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8302618-goldkeycomics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8302618-goldkeycomics.png","image_tags":"All Images,Publishers"},"location_address":null,"location_city":"Poughkeepsie","location_state":"New York","name":"Gold Key","site_detail_url":"https://comicvine.gamespot.com/gold-key/4010-178/","story_arcs":[],"teams":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-56525/","id":56525,"name":"Klingons","site_detail_url":"https://comicvine.gamespot.com/klingons/4060-56525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-56626/","id":56626,"name":"The Aliens","site_detail_url":"https://comicvine.gamespot.com/the-aliens/4060-56626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-56646/","id":56646,"name":"The Addams Family","site_detail_url":"https://comicvine.gamespot.com/the-addams-family/4060-56646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57141/","id":57141,"name":"Jungle Twins","site_detail_url":"https://comicvine.gamespot.com/jungle-twins/4060-57141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57706/","id":57706,"name":"M.A.R.S. Patrol","site_detail_url":"https://comicvine.gamespot.com/mars-patrol/4060-57706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57718/","id":57718,"name":"Dark Gods","site_detail_url":"https://comicvine.gamespot.com/dark-gods/4060-57718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57719/","id":57719,"name":"Warrior Gods","site_detail_url":"https://comicvine.gamespot.com/warrior-gods/4060-57719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57804/","id":57804,"name":"The Outsiders","site_detail_url":"https://comicvine.gamespot.com/the-outsiders/4060-57804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57864/","id":57864,"name":"Cosby Kids","site_detail_url":"https://comicvine.gamespot.com/cosby-kids/4060-57864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57898/","id":57898,"name":"Pol-Robs","site_detail_url":"https://comicvine.gamespot.com/pol-robs/4060-57898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57899/","id":57899,"name":"Gophs","site_detail_url":"https://comicvine.gamespot.com/gophs/4060-57899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-57900/","id":57900,"name":"Neo-Animals","site_detail_url":"https://comicvine.gamespot.com/neo-animals/4060-57900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-59839/","id":59839,"name":"Hair Bear Bunch","site_detail_url":"https://comicvine.gamespot.com/hair-bear-bunch/4060-59839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61337/","id":61337,"name":"Cattanooga Cats","site_detail_url":"https://comicvine.gamespot.com/cattanooga-cats/4060-61337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61339/","id":61339,"name":"Chan Clan","site_detail_url":"https://comicvine.gamespot.com/chan-clan/4060-61339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61357/","id":61357,"name":"Arabian Knights","site_detail_url":"https://comicvine.gamespot.com/arabian-knights/4060-61357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61371/","id":61371,"name":"Evil Scientist Family","site_detail_url":"https://comicvine.gamespot.com/evil-scientist-family/4060-61371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61374/","id":61374,"name":"Rescue Racer Crew","site_detail_url":"https://comicvine.gamespot.com/rescue-racer-crew/4060-61374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61375/","id":61375,"name":"The Good Trees","site_detail_url":"https://comicvine.gamespot.com/the-good-trees/4060-61375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61376/","id":61376,"name":"The Evil Trees","site_detail_url":"https://comicvine.gamespot.com/the-evil-trees/4060-61376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61402/","id":61402,"name":"Blue Meanies","site_detail_url":"https://comicvine.gamespot.com/blue-meanies/4060-61402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61919/","id":61919,"name":"Cave Kids","site_detail_url":"https://comicvine.gamespot.com/cave-kids/4060-61919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-61931/","id":61931,"name":"The Little Monsters","site_detail_url":"https://comicvine.gamespot.com/the-little-monsters/4060-61931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-63746/","id":63746,"name":"The Munsters","site_detail_url":"https://comicvine.gamespot.com/the-munsters/4060-63746/"}],"volumes":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1174/","id":1174,"name":"Popeye","site_detail_url":"https://comicvine.gamespot.com/popeye/4050-1174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2086/","id":2086,"name":"Bonanza","site_detail_url":"https://comicvine.gamespot.com/bonanza/4050-2086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2087/","id":2087,"name":"Boris Karloff Tales of Mystery","site_detail_url":"https://comicvine.gamespot.com/boris-karloff-tales-of-mystery/4050-2087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2089/","id":2089,"name":"Checkmate","site_detail_url":"https://comicvine.gamespot.com/checkmate/4050-2089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2091/","id":2091,"name":"Doctor Solar, Man of the Atom","site_detail_url":"https://comicvine.gamespot.com/doctor-solar-man-of-the-atom/4050-2091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2094/","id":2094,"name":"The Phantom","site_detail_url":"https://comicvine.gamespot.com/the-phantom/4050-2094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2096/","id":2096,"name":"Rocky and His Fiendish Friends","site_detail_url":"https://comicvine.gamespot.com/rocky-and-his-fiendish-friends/4050-2096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2097/","id":2097,"name":"Space Family Robinson","site_detail_url":"https://comicvine.gamespot.com/space-family-robinson/4050-2097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2100/","id":2100,"name":"The Three Stooges","site_detail_url":"https://comicvine.gamespot.com/the-three-stooges/4050-2100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2101/","id":2101,"name":"Turok, Son of Stone","site_detail_url":"https://comicvine.gamespot.com/turok-son-of-stone/4050-2101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2102/","id":2102,"name":"Twilight Zone","site_detail_url":"https://comicvine.gamespot.com/twilight-zone/4050-2102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2106/","id":2106,"name":"Walter Lantz Space Mouse","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-space-mouse/4050-2106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2157/","id":2157,"name":"Magnus, Robot Fighter","site_detail_url":"https://comicvine.gamespot.com/magnus-robot-fighter/4050-2157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2159/","id":2159,"name":"Peanuts","site_detail_url":"https://comicvine.gamespot.com/peanuts/4050-2159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2160/","id":2160,"name":"Super Goof","site_detail_url":"https://comicvine.gamespot.com/super-goof/4050-2160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2196/","id":2196,"name":"Beagle Boys","site_detail_url":"https://comicvine.gamespot.com/beagle-boys/4050-2196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2197/","id":2197,"name":"The Best of Donald Duck and Uncle Scrooge","site_detail_url":"https://comicvine.gamespot.com/the-best-of-donald-duck-and-uncle-scrooge/4050-2197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2202/","id":2202,"name":"John Carter of Mars","site_detail_url":"https://comicvine.gamespot.com/john-carter-of-mars/4050-2202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2203/","id":2203,"name":"Korak, Son of Tarzan","site_detail_url":"https://comicvine.gamespot.com/korak-son-of-tarzan/4050-2203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2204/","id":2204,"name":"The Lone Ranger","site_detail_url":"https://comicvine.gamespot.com/the-lone-ranger/4050-2204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2206/","id":2206,"name":"Mighty Samson","site_detail_url":"https://comicvine.gamespot.com/mighty-samson/4050-2206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2208/","id":2208,"name":"The Phantom Blot","site_detail_url":"https://comicvine.gamespot.com/the-phantom-blot/4050-2208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2210/","id":2210,"name":"Voyage To The Bottom of The Sea","site_detail_url":"https://comicvine.gamespot.com/voyage-to-the-bottom-of-the-sea/4050-2210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2244/","id":2244,"name":"Daniel Boone","site_detail_url":"https://comicvine.gamespot.com/daniel-boone/4050-2244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2306/","id":2306,"name":"Huey, Dewey and Louie Junior Woodchucks","site_detail_url":"https://comicvine.gamespot.com/huey-dewey-and-louie-junior-woodchucks/4050-2306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2307/","id":2307,"name":"I Spy","site_detail_url":"https://comicvine.gamespot.com/i-spy/4050-2307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2314/","id":2314,"name":"Wild Wild West","site_detail_url":"https://comicvine.gamespot.com/wild-wild-west/4050-2314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2315/","id":2315,"name":"Zorro","site_detail_url":"https://comicvine.gamespot.com/zorro/4050-2315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2359/","id":2359,"name":"The Girl From U.N.C.L.E.","site_detail_url":"https://comicvine.gamespot.com/the-girl-from-uncle/4050-2359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2360/","id":2360,"name":"The Green Hornet","site_detail_url":"https://comicvine.gamespot.com/the-green-hornet/4050-2360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2361/","id":2361,"name":"Moby Duck","site_detail_url":"https://comicvine.gamespot.com/moby-duck/4050-2361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2363/","id":2363,"name":"Scamp","site_detail_url":"https://comicvine.gamespot.com/scamp/4050-2363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2364/","id":2364,"name":"Star Trek","site_detail_url":"https://comicvine.gamespot.com/star-trek/4050-2364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2423/","id":2423,"name":"Walt Disney Comics Digest","site_detail_url":"https://comicvine.gamespot.com/walt-disney-comics-digest/4050-2423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2451/","id":2451,"name":"Dark Shadows","site_detail_url":"https://comicvine.gamespot.com/dark-shadows/4050-2451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2452/","id":2452,"name":"Lancer","site_detail_url":"https://comicvine.gamespot.com/lancer/4050-2452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2487/","id":2487,"name":"The Governor and J.J.","site_detail_url":"https://comicvine.gamespot.com/the-governor-and-jj/4050-2487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2488/","id":2488,"name":"H. R. Pufnstuf","site_detail_url":"https://comicvine.gamespot.com/h-r-pufnstuf/4050-2488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2490/","id":2490,"name":"Walt Disney Showcase","site_detail_url":"https://comicvine.gamespot.com/walt-disney-showcase/4050-2490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2525/","id":2525,"name":"Aristokittens","site_detail_url":"https://comicvine.gamespot.com/aristokittens/4050-2525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2526/","id":2526,"name":"O. G. Whiz","site_detail_url":"https://comicvine.gamespot.com/o-g-whiz/4050-2526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2588/","id":2588,"name":"Tono and Kono the Jungle Twins","site_detail_url":"https://comicvine.gamespot.com/tono-and-kono-the-jungle-twins/4050-2588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2589/","id":2589,"name":"Mystery Comics Digest","site_detail_url":"https://comicvine.gamespot.com/mystery-comics-digest/4050-2589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2654/","id":2654,"name":"Daisy And Donald","site_detail_url":"https://comicvine.gamespot.com/daisy-and-donald/4050-2654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2655/","id":2655,"name":"Occult Files Of Dr. Spektor","site_detail_url":"https://comicvine.gamespot.com/occult-files-of-dr-spektor/4050-2655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2706/","id":2706,"name":"Adventures of Robin Hood","site_detail_url":"https://comicvine.gamespot.com/adventures-of-robin-hood/4050-2706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2791/","id":2791,"name":"Spine-Tingling Tales","site_detail_url":"https://comicvine.gamespot.com/spine-tingling-tales/4050-2791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2874/","id":2874,"name":"Gold Key Spotlight","site_detail_url":"https://comicvine.gamespot.com/gold-key-spotlight/4050-2874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2921/","id":2921,"name":"Winnie-the-Pooh","site_detail_url":"https://comicvine.gamespot.com/winnie-the-pooh/4050-2921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2996/","id":2996,"name":"Happy Days","site_detail_url":"https://comicvine.gamespot.com/happy-days/4050-2996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3016/","id":3016,"name":"Beagle Boys vs. Uncle Scrooge","site_detail_url":"https://comicvine.gamespot.com/beagle-boys-vs-uncle-scrooge/4050-3016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6731/","id":6731,"name":"Beep Beep the Road Runner","site_detail_url":"https://comicvine.gamespot.com/beep-beep-the-road-runner/4050-6731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6790/","id":6790,"name":"Raggedy Ann and Andy","site_detail_url":"https://comicvine.gamespot.com/raggedy-ann-and-andy/4050-6790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6807/","id":6807,"name":"Tweety and Sylvester","site_detail_url":"https://comicvine.gamespot.com/tweety-and-sylvester/4050-6807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7143/","id":7143,"name":"The Man From U.N.C.L.E.","site_detail_url":"https://comicvine.gamespot.com/the-man-from-u-n-c-l-e/4050-7143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7366/","id":7366,"name":"King Kong","site_detail_url":"https://comicvine.gamespot.com/king-kong/4050-7366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7426/","id":7426,"name":"Brothers of the Spear","site_detail_url":"https://comicvine.gamespot.com/brothers-of-the-spear/4050-7426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9559/","id":9559,"name":"Daffy Duck","site_detail_url":"https://comicvine.gamespot.com/daffy-duck/4050-9559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10725/","id":10725,"name":"Flipper","site_detail_url":"https://comicvine.gamespot.com/flipper/4050-10725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10827/","id":10827,"name":"Fun-In","site_detail_url":"https://comicvine.gamespot.com/fun-in/4050-10827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10828/","id":10828,"name":"Hanna-Barbera The Funky Phantom","site_detail_url":"https://comicvine.gamespot.com/hanna-barbera-the-funky-phantom/4050-10828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10843/","id":10843,"name":"Gomer Pyle","site_detail_url":"https://comicvine.gamespot.com/gomer-pyle/4050-10843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10846/","id":10846,"name":"Gunsmoke","site_detail_url":"https://comicvine.gamespot.com/gunsmoke/4050-10846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10847/","id":10847,"name":"The Hardy Boys","site_detail_url":"https://comicvine.gamespot.com/the-hardy-boys/4050-10847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10853/","id":10853,"name":"The Jetsons","site_detail_url":"https://comicvine.gamespot.com/the-jetsons/4050-10853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10979/","id":10979,"name":"Total War","site_detail_url":"https://comicvine.gamespot.com/total-war/4050-10979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10980/","id":10980,"name":"M.A.R.S. Patrol Total War","site_detail_url":"https://comicvine.gamespot.com/mars-patrol-total-war/4050-10980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11011/","id":11011,"name":"The Pink Panther","site_detail_url":"https://comicvine.gamespot.com/the-pink-panther/4050-11011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11012/","id":11012,"name":"Walter Lantz Woody Woodpecker","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-woody-woodpecker/4050-11012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11083/","id":11083,"name":"Tom and Jerry","site_detail_url":"https://comicvine.gamespot.com/tom-and-jerry/4050-11083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11170/","id":11170,"name":"Yosemite Sam","site_detail_url":"https://comicvine.gamespot.com/yosemite-sam/4050-11170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11217/","id":11217,"name":"Close Shaves of Pauline Peril","site_detail_url":"https://comicvine.gamespot.com/close-shaves-of-pauline-peril/4050-11217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11415/","id":11415,"name":"The Mighty Hercules","site_detail_url":"https://comicvine.gamespot.com/the-mighty-hercules/4050-11415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11468/","id":11468,"name":"Woodsy Owl","site_detail_url":"https://comicvine.gamespot.com/woodsy-owl/4050-11468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11469/","id":11469,"name":"Golden Comics Digest","site_detail_url":"https://comicvine.gamespot.com/golden-comics-digest/4050-11469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11472/","id":11472,"name":"Supercar","site_detail_url":"https://comicvine.gamespot.com/supercar/4050-11472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11508/","id":11508,"name":"Bugs Bunny","site_detail_url":"https://comicvine.gamespot.com/bugs-bunny/4050-11508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11534/","id":11534,"name":"Fantastic Voyage","site_detail_url":"https://comicvine.gamespot.com/fantastic-voyage/4050-11534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11553/","id":11553,"name":"Wacky Witch","site_detail_url":"https://comicvine.gamespot.com/wacky-witch/4050-11553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11554/","id":11554,"name":"UFO & Outer Space","site_detail_url":"https://comicvine.gamespot.com/ufo-outer-space/4050-11554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11555/","id":11555,"name":"Underdog","site_detail_url":"https://comicvine.gamespot.com/underdog/4050-11555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11571/","id":11571,"name":"Little Lulu","site_detail_url":"https://comicvine.gamespot.com/little-lulu/4050-11571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11580/","id":11580,"name":"The Little Monsters","site_detail_url":"https://comicvine.gamespot.com/the-little-monsters/4050-11580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11592/","id":11592,"name":"Huckleberry Hound","site_detail_url":"https://comicvine.gamespot.com/huckleberry-hound/4050-11592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11612/","id":11612,"name":"The Flintstones","site_detail_url":"https://comicvine.gamespot.com/the-flintstones/4050-11612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11644/","id":11644,"name":"Porky Pig","site_detail_url":"https://comicvine.gamespot.com/porky-pig/4050-11644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11654/","id":11654,"name":"Cave Kids","site_detail_url":"https://comicvine.gamespot.com/cave-kids/4050-11654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11686/","id":11686,"name":"Captain Venture and the Land Beneath the Sea","site_detail_url":"https://comicvine.gamespot.com/captain-venture-and-the-land-beneath-the-sea/4050-11686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11806/","id":11806,"name":"George of the Jungle","site_detail_url":"https://comicvine.gamespot.com/george-of-the-jungle/4050-11806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11825/","id":11825,"name":"Wacky Races","site_detail_url":"https://comicvine.gamespot.com/wacky-races/4050-11825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11826/","id":11826,"name":"Fantastic Voyages of Sindbad","site_detail_url":"https://comicvine.gamespot.com/fantastic-voyages-of-sindbad/4050-11826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11897/","id":11897,"name":"The Nurses","site_detail_url":"https://comicvine.gamespot.com/the-nurses/4050-11897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11909/","id":11909,"name":"New Terrytoons","site_detail_url":"https://comicvine.gamespot.com/new-terrytoons/4050-11909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11910/","id":11910,"name":"Walter Lantz Andy Panda","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-andy-panda/4050-11910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18838/","id":18838,"name":"Grimm's Ghost Stories","site_detail_url":"https://comicvine.gamespot.com/grimms-ghost-stories/4050-18838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19042/","id":19042,"name":"The Owl","site_detail_url":"https://comicvine.gamespot.com/the-owl/4050-19042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19233/","id":19233,"name":"Tom and Jerry The Mouse From T.R.A.P.","site_detail_url":"https://comicvine.gamespot.com/tom-and-jerry-the-mouse-from-trap/4050-19233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19394/","id":19394,"name":"Beneath the Planet of the Apes","site_detail_url":"https://comicvine.gamespot.com/beneath-the-planet-of-the-apes/4050-19394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19449/","id":19449,"name":"Dagar the Invincible","site_detail_url":"https://comicvine.gamespot.com/dagar-the-invincible/4050-19449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19565/","id":19565,"name":"Battle of the Planets","site_detail_url":"https://comicvine.gamespot.com/battle-of-the-planets/4050-19565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19620/","id":19620,"name":"Tiger Girl","site_detail_url":"https://comicvine.gamespot.com/tiger-girl/4050-19620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20917/","id":20917,"name":"The Best of Bugs Bunny","site_detail_url":"https://comicvine.gamespot.com/the-best-of-bugs-bunny/4050-20917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20973/","id":20973,"name":"Bugs Bunny and Porky Pig","site_detail_url":"https://comicvine.gamespot.com/bugs-bunny-and-porky-pig/4050-20973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21003/","id":21003,"name":"Bugs Bunny Winter Fun","site_detail_url":"https://comicvine.gamespot.com/bugs-bunny-winter-fun/4050-21003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21639/","id":21639,"name":"Peter Potamus","site_detail_url":"https://comicvine.gamespot.com/peter-potamus/4050-21639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22729/","id":22729,"name":"Chip 'n' Dale","site_detail_url":"https://comicvine.gamespot.com/chip-n-dale/4050-22729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22891/","id":22891,"name":"Family Affair","site_detail_url":"https://comicvine.gamespot.com/family-affair/4050-22891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22897/","id":22897,"name":"Banana Splits","site_detail_url":"https://comicvine.gamespot.com/banana-splits/4050-22897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22979/","id":22979,"name":"Where's Huddles","site_detail_url":"https://comicvine.gamespot.com/wheres-huddles/4050-22979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23391/","id":23391,"name":"Wacky Adventures of Cracky","site_detail_url":"https://comicvine.gamespot.com/wacky-adventures-of-cracky/4050-23391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23833/","id":23833,"name":"Adam-12","site_detail_url":"https://comicvine.gamespot.com/adam-12/4050-23833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23837/","id":23837,"name":"The Addams Family","site_detail_url":"https://comicvine.gamespot.com/the-addams-family/4050-23837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24800/","id":24800,"name":"Adam-12","site_detail_url":"https://comicvine.gamespot.com/adam-12/4050-24800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24801/","id":24801,"name":"Cowboy In Africa","site_detail_url":"https://comicvine.gamespot.com/cowboy-in-africa/4050-24801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24804/","id":24804,"name":"Hanna-Barbera Super TV Heroes","site_detail_url":"https://comicvine.gamespot.com/hanna-barbera-super-tv-heroes/4050-24804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24805/","id":24805,"name":"Harlem Globetrotters","site_detail_url":"https://comicvine.gamespot.com/harlem-globetrotters/4050-24805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24806/","id":24806,"name":"Krofft Supershow","site_detail_url":"https://comicvine.gamespot.com/krofft-supershow/4050-24806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24807/","id":24807,"name":"The Microbots","site_detail_url":"https://comicvine.gamespot.com/the-microbots/4050-24807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24808/","id":24808,"name":"Mod Wheels","site_detail_url":"https://comicvine.gamespot.com/mod-wheels/4050-24808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24809/","id":24809,"name":"The Munsters","site_detail_url":"https://comicvine.gamespot.com/the-munsters/4050-24809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24810/","id":24810,"name":"Tragg and the Sky Gods","site_detail_url":"https://comicvine.gamespot.com/tragg-and-the-sky-gods/4050-24810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24811/","id":24811,"name":"UFO Flying Saucers","site_detail_url":"https://comicvine.gamespot.com/ufo-flying-saucers/4050-24811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24812/","id":24812,"name":"X, The Man With The X-Ray Eyes","site_detail_url":"https://comicvine.gamespot.com/x-the-man-with-the-x-ray-eyes/4050-24812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24813/","id":24813,"name":"Beatles: Yellow Submarine","site_detail_url":"https://comicvine.gamespot.com/beatles-yellow-submarine/4050-24813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24952/","id":24952,"name":"Captain Johner and the Aliens","site_detail_url":"https://comicvine.gamespot.com/captain-johner-and-the-aliens/4050-24952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25485/","id":25485,"name":"Choo-Choo Charlie","site_detail_url":"https://comicvine.gamespot.com/choo-choo-charlie/4050-25485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25877/","id":25877,"name":"Judge Colt","site_detail_url":"https://comicvine.gamespot.com/judge-colt/4050-25877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25924/","id":25924,"name":"Yogi Bear","site_detail_url":"https://comicvine.gamespot.com/yogi-bear/4050-25924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26272/","id":26272,"name":"Jet Dream","site_detail_url":"https://comicvine.gamespot.com/jet-dream/4050-26272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26508/","id":26508,"name":"Walt Disney's The Scarecrow of Romney Marsh","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-scarecrow-of-romney-marsh/4050-26508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26764/","id":26764,"name":"Swiss Family Robinson","site_detail_url":"https://comicvine.gamespot.com/swiss-family-robinson/4050-26764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26794/","id":26794,"name":"Dear Nancy Parker","site_detail_url":"https://comicvine.gamespot.com/dear-nancy-parker/4050-26794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26852/","id":26852,"name":"Wacky Witch's Cookbook","site_detail_url":"https://comicvine.gamespot.com/wacky-witchs-cookbook/4050-26852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26907/","id":26907,"name":"The Flintstones - Bigger & Boulder","site_detail_url":"https://comicvine.gamespot.com/the-flintstones-bigger-boulder/4050-26907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27170/","id":27170,"name":"Three Little Pigs","site_detail_url":"https://comicvine.gamespot.com/three-little-pigs/4050-27170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27344/","id":27344,"name":"Ripley's Believe it or Not!","site_detail_url":"https://comicvine.gamespot.com/ripleys-believe-it-or-not/4050-27344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27592/","id":27592,"name":"Walter Lantz Woody Woodpecker Summer Fun","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-woody-woodpecker-summer-fun/4050-27592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27593/","id":27593,"name":"Walter Lantz Woody Woodpecker Christmas Parade","site_detail_url":"https://comicvine.gamespot.com/walter-lantz-woody-woodpecker-christmas-parade/4050-27593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27821/","id":27821,"name":"Ripley's Believe It Or Not! Story Digest","site_detail_url":"https://comicvine.gamespot.com/ripleys-believe-it-or-not-story-digest/4050-27821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27892/","id":27892,"name":"The Gallant Men","site_detail_url":"https://comicvine.gamespot.com/the-gallant-men/4050-27892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28669/","id":28669,"name":"The Jungle Book","site_detail_url":"https://comicvine.gamespot.com/the-jungle-book/4050-28669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28940/","id":28940,"name":"Looney Tunes","site_detail_url":"https://comicvine.gamespot.com/looney-tunes/4050-28940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28964/","id":28964,"name":"Fractured Fairy Tales","site_detail_url":"https://comicvine.gamespot.com/fractured-fairy-tales/4050-28964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29069/","id":29069,"name":"55 Days At Peking","site_detail_url":"https://comicvine.gamespot.com/55-days-at-peking/4050-29069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29113/","id":29113,"name":"Gold Key Champion","site_detail_url":"https://comicvine.gamespot.com/gold-key-champion/4050-29113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29235/","id":29235,"name":"O'Malley and the Alley Cats","site_detail_url":"https://comicvine.gamespot.com/omalley-and-the-alley-cats/4050-29235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29236/","id":29236,"name":"Aristocats","site_detail_url":"https://comicvine.gamespot.com/aristocats/4050-29236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29553/","id":29553,"name":"Bullwinkle","site_detail_url":"https://comicvine.gamespot.com/bullwinkle/4050-29553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29649/","id":29649,"name":"The Colossal Show","site_detail_url":"https://comicvine.gamespot.com/the-colossal-show/4050-29649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29702/","id":29702,"name":"My Favorite Martian","site_detail_url":"https://comicvine.gamespot.com/my-favorite-martian/4050-29702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29710/","id":29710,"name":"Alice In Wonderland","site_detail_url":"https://comicvine.gamespot.com/alice-in-wonderland/4050-29710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29711/","id":29711,"name":"Baby Snoots","site_detail_url":"https://comicvine.gamespot.com/baby-snoots/4050-29711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29712/","id":29712,"name":"Barney Google and Snuffy Smith","site_detail_url":"https://comicvine.gamespot.com/barney-google-and-snuffy-smith/4050-29712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29793/","id":29793,"name":"Blake Harper City Surgeon","site_detail_url":"https://comicvine.gamespot.com/blake-harper-city-surgeon/4050-29793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29837/","id":29837,"name":"Doc Savage","site_detail_url":"https://comicvine.gamespot.com/doc-savage/4050-29837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29839/","id":29839,"name":"Movie Comics: Fantastic Voyage","site_detail_url":"https://comicvine.gamespot.com/movie-comics-fantastic-voyage/4050-29839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29840/","id":29840,"name":"Fat Albert","site_detail_url":"https://comicvine.gamespot.com/fat-albert/4050-29840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29866/","id":29866,"name":"Flash Gordon","site_detail_url":"https://comicvine.gamespot.com/flash-gordon/4050-29866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29867/","id":29867,"name":"Movie Comics: Gay Purr-ee","site_detail_url":"https://comicvine.gamespot.com/movie-comics-gay-purr-ee/4050-29867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29869/","id":29869,"name":"Secret Agent","site_detail_url":"https://comicvine.gamespot.com/secret-agent/4050-29869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29923/","id":29923,"name":"The Inspector","site_detail_url":"https://comicvine.gamespot.com/the-inspector/4050-29923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29935/","id":29935,"name":"The Sword in the Stone","site_detail_url":"https://comicvine.gamespot.com/the-sword-in-the-stone/4050-29935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29936/","id":29936,"name":"Lady and the Tramp","site_detail_url":"https://comicvine.gamespot.com/lady-and-the-tramp/4050-29936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29937/","id":29937,"name":"Wart and the Wizard","site_detail_url":"https://comicvine.gamespot.com/wart-and-the-wizard/4050-29937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29938/","id":29938,"name":"Baloo and Little Britches","site_detail_url":"https://comicvine.gamespot.com/baloo-and-little-britches/4050-29938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29954/","id":29954,"name":"Jonny Quest","site_detail_url":"https://comicvine.gamespot.com/jonny-quest/4050-29954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29996/","id":29996,"name":"Land Of The Giants","site_detail_url":"https://comicvine.gamespot.com/land-of-the-giants/4050-29996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30049/","id":30049,"name":"Lidsville","site_detail_url":"https://comicvine.gamespot.com/lidsville/4050-30049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30132/","id":30132,"name":"Mister Ed, The Talking Horse","site_detail_url":"https://comicvine.gamespot.com/mister-ed-the-talking-horse/4050-30132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30133/","id":30133,"name":"Freedom Angent","site_detail_url":"https://comicvine.gamespot.com/freedom-angent/4050-30133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30134/","id":30134,"name":"Fury","site_detail_url":"https://comicvine.gamespot.com/fury/4050-30134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30151/","id":30151,"name":"G-8 Battle Aces","site_detail_url":"https://comicvine.gamespot.com/g-8-battle-aces/4050-30151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30152/","id":30152,"name":"Gallegher Boy Reporter","site_detail_url":"https://comicvine.gamespot.com/gallegher-boy-reporter/4050-30152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30153/","id":30153,"name":"Goodbye, Mr. Chips","site_detail_url":"https://comicvine.gamespot.com/goodbye-mr-chips/4050-30153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30154/","id":30154,"name":"John Steed, Emma Peel","site_detail_url":"https://comicvine.gamespot.com/john-steed-emma-peel/4050-30154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30429/","id":30429,"name":"Grimm's Ghost Stories Big Little Book","site_detail_url":"https://comicvine.gamespot.com/grimms-ghost-stories-big-little-book/4050-30429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31050/","id":31050,"name":"The Hair Bear Bunch","site_detail_url":"https://comicvine.gamespot.com/the-hair-bear-bunch/4050-31050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31497/","id":31497,"name":"Scooby Doo, Where Are You?","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-where-are-you/4050-31497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31687/","id":31687,"name":"Scooby Doo... Mystery Comics","site_detail_url":"https://comicvine.gamespot.com/scooby-doo-mystery-comics/4050-31687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31982/","id":31982,"name":"Tasmanian Devil and His Tasty Friends","site_detail_url":"https://comicvine.gamespot.com/tasmanian-devil-and-his-tasty-friends/4050-31982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32038/","id":32038,"name":"Frankenstein, Jr.","site_detail_url":"https://comicvine.gamespot.com/frankenstein-jr/4050-32038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32247/","id":32247,"name":"Top Comics Bugs Bunny","site_detail_url":"https://comicvine.gamespot.com/top-comics-bugs-bunny/4050-32247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32488/","id":32488,"name":"Time Tunnel","site_detail_url":"https://comicvine.gamespot.com/time-tunnel/4050-32488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32960/","id":32960,"name":"Bamm-Bamm and Pebbles Flintstone","site_detail_url":"https://comicvine.gamespot.com/bamm-bamm-and-pebbles-flintstone/4050-32960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32976/","id":32976,"name":"The Flintstones with Pebbles and Bamm-Bamm","site_detail_url":"https://comicvine.gamespot.com/the-flintstones-with-pebbles-and-bamm-bamm/4050-32976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33043/","id":33043,"name":"Pebbles Flintstone","site_detail_url":"https://comicvine.gamespot.com/pebbles-flintstone/4050-33043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33584/","id":33584,"name":"Krazy Kat","site_detail_url":"https://comicvine.gamespot.com/krazy-kat/4050-33584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33930/","id":33930,"name":"Turok, Son of Stone Giant","site_detail_url":"https://comicvine.gamespot.com/turok-son-of-stone-giant/4050-33930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34220/","id":34220,"name":"Hanna-Barbera Bandwagon","site_detail_url":"https://comicvine.gamespot.com/hanna-barbera-bandwagon/4050-34220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34263/","id":34263,"name":"Captain Nice","site_detail_url":"https://comicvine.gamespot.com/captain-nice/4050-34263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34264/","id":34264,"name":"Hey There, It's Yogi Bear","site_detail_url":"https://comicvine.gamespot.com/hey-there-its-yogi-bear/4050-34264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34708/","id":34708,"name":"The Flintstones at the New York World's Fair","site_detail_url":"https://comicvine.gamespot.com/the-flintstones-at-the-new-york-world-s-fair/4050-34708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35278/","id":35278,"name":"Atom Ant","site_detail_url":"https://comicvine.gamespot.com/atom-ant/4050-35278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35436/","id":35436,"name":"Magilla Gorilla","site_detail_url":"https://comicvine.gamespot.com/magilla-gorilla/4050-35436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35585/","id":35585,"name":"Snagglepuss","site_detail_url":"https://comicvine.gamespot.com/snagglepuss/4050-35585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35604/","id":35604,"name":"Yakky Doodle and Chopper","site_detail_url":"https://comicvine.gamespot.com/yakky-doodle-and-chopper/4050-35604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35605/","id":35605,"name":"Augie Doggie","site_detail_url":"https://comicvine.gamespot.com/augie-doggie/4050-35605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35619/","id":35619,"name":"Pixie and Dixie and Mr. Jinks","site_detail_url":"https://comicvine.gamespot.com/pixie-and-dixie-and-mr-jinks/4050-35619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35638/","id":35638,"name":"Top Cat","site_detail_url":"https://comicvine.gamespot.com/top-cat/4050-35638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36790/","id":36790,"name":"Honey West","site_detail_url":"https://comicvine.gamespot.com/honey-west/4050-36790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37791/","id":37791,"name":"Marge's Tubby and the Little Men from Mars","site_detail_url":"https://comicvine.gamespot.com/marges-tubby-and-the-little-men-from-mars/4050-37791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37920/","id":37920,"name":"Travels of Jaimie McPheeters","site_detail_url":"https://comicvine.gamespot.com/travels-of-jaimie-mcpheeters/4050-37920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37939/","id":37939,"name":"Wagon Train","site_detail_url":"https://comicvine.gamespot.com/wagon-train/4050-37939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38362/","id":38362,"name":"World of Adventure","site_detail_url":"https://comicvine.gamespot.com/world-of-adventure/4050-38362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38771/","id":38771,"name":"The Legend Of Jesse James","site_detail_url":"https://comicvine.gamespot.com/the-legend-of-jesse-james/4050-38771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39811/","id":39811,"name":"Dark Shadows: Story Digest Magazine","site_detail_url":"https://comicvine.gamespot.com/dark-shadows-story-digest-magazine/4050-39811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39894/","id":39894,"name":"Smokey Bear","site_detail_url":"https://comicvine.gamespot.com/smokey-bear/4050-39894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41486/","id":41486,"name":"Walt Disney's The Best of Donald Duck","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-best-of-donald-duck/4050-41486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41487/","id":41487,"name":"Walt Disney The Best of Uncle Scrooge and Donald Duck","site_detail_url":"https://comicvine.gamespot.com/walt-disney-the-best-of-uncle-scrooge-and-donald-d/4050-41487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43125/","id":43125,"name":"Heckle and Jeckle","site_detail_url":"https://comicvine.gamespot.com/heckle-and-jeckle/4050-43125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43127/","id":43127,"name":"King Leonardo and His Short Subjects","site_detail_url":"https://comicvine.gamespot.com/king-leonardo-and-his-short-subjects/4050-43127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44472/","id":44472,"name":"Zane Grey's Stories of the West : Nevada","site_detail_url":"https://comicvine.gamespot.com/zane-greys-stories-of-the-west-nevada/4050-44472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44790/","id":44790,"name":"Marge's Little Lulu Summer Camp","site_detail_url":"https://comicvine.gamespot.com/marges-little-lulu-summer-camp/4050-44790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44814/","id":44814,"name":"Marge's Little Lulu Trick 'N' Treat","site_detail_url":"https://comicvine.gamespot.com/marges-little-lulu-trick-n-treat/4050-44814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45601/","id":45601,"name":"Zody, The Mod Rob","site_detail_url":"https://comicvine.gamespot.com/zody-the-mod-rob/4050-45601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45649/","id":45649,"name":"The Little Stooges","site_detail_url":"https://comicvine.gamespot.com/the-little-stooges/4050-45649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46234/","id":46234,"name":"Deputy Dawg","site_detail_url":"https://comicvine.gamespot.com/deputy-dawg/4050-46234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46354/","id":46354,"name":"Wally","site_detail_url":"https://comicvine.gamespot.com/wally/4050-46354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46715/","id":46715,"name":"Wonderful World of the Brothers Grimm","site_detail_url":"https://comicvine.gamespot.com/wonderful-world-of-the-brothers-grimm/4050-46715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47438/","id":47438,"name":"Walt Disney's 20,000 Leagues Under The Sea","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-20000-leagues-under-the-sea/4050-47438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47449/","id":47449,"name":"Walt Disney's Robin Hood","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-robin-hood/4050-47449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47450/","id":47450,"name":"Walt Disney's Big Red","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-big-red/4050-47450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47451/","id":47451,"name":"Walt Disney's Emil and the Detectives","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-emil-and-the-detectives/4050-47451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47452/","id":47452,"name":"Walt Disney's Merlin Jones as The Monkey's Uncle","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-merlin-jones-as-the-monkeys-uncle/4050-47452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47466/","id":47466,"name":"Walt Disney's A Tiger Walks","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-a-tiger-walks/4050-47466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47469/","id":47469,"name":"Walt Disney presents The Gnome-Mobile","site_detail_url":"https://comicvine.gamespot.com/walt-disney-presents-the-gnome-mobile/4050-47469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47486/","id":47486,"name":"Walt Disney Bullwhip Griffin","site_detail_url":"https://comicvine.gamespot.com/walt-disney-bullwhip-griffin/4050-47486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47487/","id":47487,"name":"Walt Disney The Happiest Millionaire","site_detail_url":"https://comicvine.gamespot.com/walt-disney-the-happiest-millionaire/4050-47487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47540/","id":47540,"name":"Walt Disney In Search of the Castaways","site_detail_url":"https://comicvine.gamespot.com/walt-disney-in-search-of-the-castaways/4050-47540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47541/","id":47541,"name":"Walt Disney Kidnapped","site_detail_url":"https://comicvine.gamespot.com/walt-disney-kidnapped/4050-47541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47572/","id":47572,"name":"Walt Disney's Old Yeller","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-old-yeller/4050-47572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47605/","id":47605,"name":"Walt Disney Lt. Robin Crusoe, U.S.N.","site_detail_url":"https://comicvine.gamespot.com/walt-disney-lt-robin-crusoe-usn/4050-47605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47639/","id":47639,"name":"Walt Disney's Nikki, Wild Dog of the North","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-nikki-wild-dog-of-the-north/4050-47639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47667/","id":47667,"name":"Walt Disney's Son Of Flubber","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-son-of-flubber/4050-47667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47687/","id":47687,"name":"Walt Disney's Escapade in Florence","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-escapade-in-florence/4050-47687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47709/","id":47709,"name":"Walt Disney Treasure Island","site_detail_url":"https://comicvine.gamespot.com/walt-disney-treasure-island/4050-47709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47726/","id":47726,"name":"Walt Disney's Peter Pan","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-peter-pan/4050-47726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47776/","id":47776,"name":"Walt Disney The Love Bug","site_detail_url":"https://comicvine.gamespot.com/walt-disney-the-love-bug/4050-47776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47802/","id":47802,"name":"Walt Disney Presents 101 Dalmatians","site_detail_url":"https://comicvine.gamespot.com/walt-disney-presents-101-dalmatians/4050-47802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47803/","id":47803,"name":"Walt Disney's The Horse Without A Head","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-horse-without-a-head/4050-47803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47844/","id":47844,"name":"Walt Disney Presents Blackbeard's Ghost","site_detail_url":"https://comicvine.gamespot.com/walt-disney-presents-blackbeards-ghost/4050-47844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47845/","id":47845,"name":"Walt Disney's The Miracle of the White Stallions","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-miracle-of-the-white-stallions/4050-47845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47892/","id":47892,"name":"Walt Disney The Shaggy Dog and the Absent-Minded Professor","site_detail_url":"https://comicvine.gamespot.com/walt-disney-the-shaggy-dog-and-the-absent-minded-p/4050-47892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47935/","id":47935,"name":"Walt Disney's Toby Tyler","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-toby-tyler/4050-47935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48043/","id":48043,"name":"Vacation In Disneyland","site_detail_url":"https://comicvine.gamespot.com/vacation-in-disneyland/4050-48043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48054/","id":48054,"name":"Walt Disney's Big Red","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-big-red/4050-48054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48090/","id":48090,"name":"Walt Disney's Mary Poppins","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-mary-poppins/4050-48090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48150/","id":48150,"name":"Walt Disney's Mary Poppins","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-mary-poppins/4050-48150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48298/","id":48298,"name":"First Men in the Moon","site_detail_url":"https://comicvine.gamespot.com/first-men-in-the-moon/4050-48298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48475/","id":48475,"name":"Walt Disney's That Darn Cat","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-that-darn-cat/4050-48475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48476/","id":48476,"name":"Walt Disney's The Legend of Lobo","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-legend-of-lobo/4050-48476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48775/","id":48775,"name":"Captain Sindbad","site_detail_url":"https://comicvine.gamespot.com/captain-sindbad/4050-48775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48798/","id":48798,"name":"Virginian","site_detail_url":"https://comicvine.gamespot.com/virginian/4050-48798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48863/","id":48863,"name":"77 Sunset Strip","site_detail_url":"https://comicvine.gamespot.com/77-sunset-strip/4050-48863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48918/","id":48918,"name":"Hanna-Barbera The Amazing Chan and the Chan Clan","site_detail_url":"https://comicvine.gamespot.com/hanna-barbera-the-amazing-chan-and-the-chan-clan/4050-48918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49006/","id":49006,"name":"Annie Oakley And Tagg","site_detail_url":"https://comicvine.gamespot.com/annie-oakley-and-tagg/4050-49006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49022/","id":49022,"name":"Astro Boy","site_detail_url":"https://comicvine.gamespot.com/astro-boy/4050-49022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49054/","id":49054,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-49054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49080/","id":49080,"name":"Darby O'Gill and The Little People","site_detail_url":"https://comicvine.gamespot.com/darby-ogill-and-the-little-people/4050-49080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49125/","id":49125,"name":"Bambi","site_detail_url":"https://comicvine.gamespot.com/bambi/4050-49125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49169/","id":49169,"name":"Ben Casey Film Stories","site_detail_url":"https://comicvine.gamespot.com/ben-casey-film-stories/4050-49169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49200/","id":49200,"name":"Buffalo Bill Jr.","site_detail_url":"https://comicvine.gamespot.com/buffalo-bill-jr/4050-49200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49209/","id":49209,"name":"Chitty Chitty Bang Bang","site_detail_url":"https://comicvine.gamespot.com/chitty-chitty-bang-bang/4050-49209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49244/","id":49244,"name":"Cinderella","site_detail_url":"https://comicvine.gamespot.com/cinderella/4050-49244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49250/","id":49250,"name":"Davy Crockett King of the Wild Frontier","site_detail_url":"https://comicvine.gamespot.com/davy-crockett-king-of-the-wild-frontier/4050-49250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49297/","id":49297,"name":"Deputy Dawg Presents Dinky Duck And Hashimoto-San","site_detail_url":"https://comicvine.gamespot.com/deputy-dawg-presents-dinky-duck-and-hashimoto-san/4050-49297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49319/","id":49319,"name":"Donald Duck Album","site_detail_url":"https://comicvine.gamespot.com/donald-duck-album/4050-49319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49460/","id":49460,"name":"Mr. and Mrs. J. Evil Scientist","site_detail_url":"https://comicvine.gamespot.com/mr-and-mrs-j-evil-scientist/4050-49460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49568/","id":49568,"name":"Donald Duck Beach Party","site_detail_url":"https://comicvine.gamespot.com/donald-duck-beach-party/4050-49568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49602/","id":49602,"name":"Dr. Spektor Presents Spine-Tingling Tales","site_detail_url":"https://comicvine.gamespot.com/dr-spektor-presents-spine-tingling-tales/4050-49602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49702/","id":49702,"name":"Duke of the K-9 Patrol","site_detail_url":"https://comicvine.gamespot.com/duke-of-the-k-9-patrol/4050-49702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49753/","id":49753,"name":"Dumbo","site_detail_url":"https://comicvine.gamespot.com/dumbo/4050-49753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49999/","id":49999,"name":"The Fall of the Roman Empire","site_detail_url":"https://comicvine.gamespot.com/the-fall-of-the-roman-empire/4050-49999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54057/","id":54057,"name":"It's About Time","site_detail_url":"https://comicvine.gamespot.com/its-about-time/4050-54057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54356/","id":54356,"name":"Space Ghost","site_detail_url":"https://comicvine.gamespot.com/space-ghost/4050-54356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55039/","id":55039,"name":"Laurel and Hardy","site_detail_url":"https://comicvine.gamespot.com/laurel-and-hardy/4050-55039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55168/","id":55168,"name":"The New Adventures of Huck Finn","site_detail_url":"https://comicvine.gamespot.com/the-new-adventures-of-huck-finn/4050-55168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55767/","id":55767,"name":"PT 109","site_detail_url":"https://comicvine.gamespot.com/pt-109/4050-55767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56936/","id":56936,"name":"Rawhide","site_detail_url":"https://comicvine.gamespot.com/rawhide/4050-56936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57356/","id":57356,"name":"Walt Disney's Christmas Parade","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-christmas-parade/4050-57356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58028/","id":58028,"name":"Mushmouse and Punkin Puss","site_detail_url":"https://comicvine.gamespot.com/mushmouse-and-punkin-puss/4050-58028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58502/","id":58502,"name":"Run Buddy Run","site_detail_url":"https://comicvine.gamespot.com/run-buddy-run/4050-58502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58757/","id":58757,"name":"Laredo","site_detail_url":"https://comicvine.gamespot.com/laredo/4050-58757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58763/","id":58763,"name":"Rio Conchos","site_detail_url":"https://comicvine.gamespot.com/rio-conchos/4050-58763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59714/","id":59714,"name":"How the West Was Won","site_detail_url":"https://comicvine.gamespot.com/how-the-west-was-won/4050-59714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62781/","id":62781,"name":"The Wonderful Adventures of Pinocchio","site_detail_url":"https://comicvine.gamespot.com/the-wonderful-adventures-of-pinocchio/4050-62781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62959/","id":62959,"name":"The High Chaparral","site_detail_url":"https://comicvine.gamespot.com/the-high-chaparral/4050-62959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63173/","id":63173,"name":"John Steele","site_detail_url":"https://comicvine.gamespot.com/john-steele/4050-63173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63441/","id":63441,"name":"The Fighting Prince of Donegal","site_detail_url":"https://comicvine.gamespot.com/the-fighting-prince-of-donegal/4050-63441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63477/","id":63477,"name":"The Invaders","site_detail_url":"https://comicvine.gamespot.com/the-invaders/4050-63477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63555/","id":63555,"name":"The Lucy Show","site_detail_url":"https://comicvine.gamespot.com/the-lucy-show/4050-63555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63674/","id":63674,"name":"Mickey Mouse Surprise Party","site_detail_url":"https://comicvine.gamespot.com/mickey-mouse-surprise-party/4050-63674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63802/","id":63802,"name":"Steve Zodiac and the Fireball XL 5","site_detail_url":"https://comicvine.gamespot.com/steve-zodiac-and-the-fireball-xl-5/4050-63802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63920/","id":63920,"name":"The Roman Holidays","site_detail_url":"https://comicvine.gamespot.com/the-roman-holidays/4050-63920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63990/","id":63990,"name":"Secret Squirrel","site_detail_url":"https://comicvine.gamespot.com/secret-squirrel/4050-63990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64117/","id":64117,"name":"Snooper and Blabber Detectives","site_detail_url":"https://comicvine.gamespot.com/snooper-and-blabber-detectives/4050-64117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64556/","id":64556,"name":"McLintock","site_detail_url":"https://comicvine.gamespot.com/mclintock/4050-64556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64781/","id":64781,"name":"King Louie and Mowgli","site_detail_url":"https://comicvine.gamespot.com/king-louie-and-mowgli/4050-64781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64783/","id":64783,"name":"Walt Disney's The Moon-Spinners","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-moon-spinners/4050-64783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64784/","id":64784,"name":"Walt Disney's Summer Magic","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-summer-magic/4050-64784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64786/","id":64786,"name":"Walt Disney's The Misadventures of Merlin Jones","site_detail_url":"https://comicvine.gamespot.com/walt-disneys-the-misadventures-of-merlin-jones/4050-64786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67976/","id":67976,"name":"Hawaiian Eye","site_detail_url":"https://comicvine.gamespot.com/hawaiian-eye/4050-67976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68178/","id":68178,"name":"Lord Jim","site_detail_url":"https://comicvine.gamespot.com/lord-jim/4050-68178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70017/","id":70017,"name":"The Modniks","site_detail_url":"https://comicvine.gamespot.com/the-modniks/4050-70017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71234/","id":71234,"name":"Mutiny on the Bounty","site_detail_url":"https://comicvine.gamespot.com/mutiny-on-the-bounty/4050-71234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72101/","id":72101,"name":"Lippy The Lion and Hardy Har Har","site_detail_url":"https://comicvine.gamespot.com/lippy-the-lion-and-hardy-har-har/4050-72101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72169/","id":72169,"name":"Lion","site_detail_url":"https://comicvine.gamespot.com/lion/4050-72169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74011/","id":74011,"name":"Hector Heathcote","site_detail_url":"https://comicvine.gamespot.com/hector-heathcote/4050-74011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74240/","id":74240,"name":"Three Stooges in Orbit","site_detail_url":"https://comicvine.gamespot.com/three-stooges-in-orbit/4050-74240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79381/","id":79381,"name":"Hanna-Barbera Hi-Adventure Heroes","site_detail_url":"https://comicvine.gamespot.com/hannabarbera-hiadventure-heroes/4050-79381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88099/","id":88099,"name":"National Velvet","site_detail_url":"https://comicvine.gamespot.com/national-velvet/4050-88099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128348/","id":128348,"name":"Boris Karloff Thriller","site_detail_url":"https://comicvine.gamespot.com/boris-karloff-thriller/4050-128348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134316/","id":134316,"name":"Bugs le Lapin","site_detail_url":"https://comicvine.gamespot.com/bugs-le-lapin/4050-134316/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/publisher-details/publisher-4010-214.json b/samples/api-data/publisher-details/publisher-4010-214.json new file mode 100644 index 0000000..c4a0c84 --- /dev/null +++ b/samples/api-data/publisher-details/publisher-4010-214.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-214/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6616/","id":6616,"name":"Lady Satan","site_detail_url":"https://comicvine.gamespot.com/lady-satan/4005-6616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6639/","id":6639,"name":"Mr. Pook","site_detail_url":"https://comicvine.gamespot.com/mr-pook/4005-6639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27624/","id":27624,"name":"Zangar","site_detail_url":"https://comicvine.gamespot.com/zangar/4005-27624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37188/","id":37188,"name":"Slither-Slime Man","site_detail_url":"https://comicvine.gamespot.com/slither-slime-man/4005-37188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37665/","id":37665,"name":"Hell-Rider","site_detail_url":"https://comicvine.gamespot.com/hell-rider/4005-37665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37666/","id":37666,"name":"Butterfly","site_detail_url":"https://comicvine.gamespot.com/butterfly/4005-37666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37667/","id":37667,"name":"Wild Bunch","site_detail_url":"https://comicvine.gamespot.com/wild-bunch/4005-37667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-37726/","id":37726,"name":"Black Phantom","site_detail_url":"https://comicvine.gamespot.com/black-phantom/4005-37726/"}],"date_added":"2008-06-06 11:08:00","date_last_updated":"2015-01-22 06:26:56","deck":null,"description":"

    1970s publisher specializing in b/w horror comics.

    ","id":214,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Skywald","site_detail_url":"https://comicvine.gamespot.com/skywald/4010-214/","story_arcs":[],"teams":[{"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-65266/","id":65266,"name":"Human Gargoyles","site_detail_url":"https://comicvine.gamespot.com/human-gargoyles/4060-65266/"}],"volumes":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2493/","id":2493,"name":"Nightmare","site_detail_url":"https://comicvine.gamespot.com/nightmare/4050-2493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2530/","id":2530,"name":"Blazing Six-Guns","site_detail_url":"https://comicvine.gamespot.com/blazing-six-guns/4050-2530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2532/","id":2532,"name":"Butch Cassidy","site_detail_url":"https://comicvine.gamespot.com/butch-cassidy/4050-2532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2534/","id":2534,"name":"Hell-Rider","site_detail_url":"https://comicvine.gamespot.com/hell-rider/4050-2534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2535/","id":2535,"name":"Jungle Adventures","site_detail_url":"https://comicvine.gamespot.com/jungle-adventures/4050-2535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2536/","id":2536,"name":"Psycho","site_detail_url":"https://comicvine.gamespot.com/psycho/4050-2536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2537/","id":2537,"name":"The Sundance Kid","site_detail_url":"https://comicvine.gamespot.com/the-sundance-kid/4050-2537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2538/","id":2538,"name":"Wild Western Action","site_detail_url":"https://comicvine.gamespot.com/wild-western-action/4050-2538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11075/","id":11075,"name":"Scream","site_detail_url":"https://comicvine.gamespot.com/scream/4050-11075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11082/","id":11082,"name":"Tender Love Stories","site_detail_url":"https://comicvine.gamespot.com/tender-love-stories/4050-11082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19762/","id":19762,"name":"Nightmare 1973 Winter-Special","site_detail_url":"https://comicvine.gamespot.com/nightmare-1973-winter-special/4050-19762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25319/","id":25319,"name":"Bravados","site_detail_url":"https://comicvine.gamespot.com/bravados/4050-25319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61115/","id":61115,"name":"Psycho Annual","site_detail_url":"https://comicvine.gamespot.com/psycho-annual/4050-61115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61116/","id":61116,"name":"Psycho Yearbook","site_detail_url":"https://comicvine.gamespot.com/psycho-yearbook/4050-61116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62042/","id":62042,"name":"The Crime Machine","site_detail_url":"https://comicvine.gamespot.com/the-crime-machine/4050-62042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63328/","id":63328,"name":"1974 Nightmare Yearbook","site_detail_url":"https://comicvine.gamespot.com/1974-nightmare-yearbook/4050-63328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63453/","id":63453,"name":"The Heap","site_detail_url":"https://comicvine.gamespot.com/the-heap/4050-63453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63829/","id":63829,"name":"Nightmare Annual","site_detail_url":"https://comicvine.gamespot.com/nightmare-annual/4050-63829/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/publisher-details/publisher-4010-31.json b/samples/api-data/publisher-details/publisher-4010-31.json new file mode 100644 index 0000000..0338571 --- /dev/null +++ b/samples/api-data/publisher-details/publisher-4010-31.json @@ -0,0 +1,218431 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Marvel Comics Group\r\nMarvel Entertainment\r\nMarvel Worldwide Inc.\r\nMarvel Publishing Inc.", + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-31/", + "characters": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1425/", + "id": 1425, + "name": "Lucas Jackson", + "site_detail_url": "https://comicvine.gamespot.com/lucas-jackson/4005-1425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1440/", + "id": 1440, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4005-1440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1441/", + "id": 1441, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4005-1441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1442/", + "id": 1442, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4005-1442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1443/", + "id": 1443, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4005-1443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1444/", + "id": 1444, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4005-1444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1445/", + "id": 1445, + "name": "Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut/4005-1445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1446/", + "id": 1446, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4005-1446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1447/", + "id": 1447, + "name": "Layla Miller", + "site_detail_url": "https://comicvine.gamespot.com/layla-miller/4005-1447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1449/", + "id": 1449, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4005-1449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1450/", + "id": 1450, + "name": "Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage/4005-1450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1451/", + "id": 1451, + "name": "Falcon", + "site_detail_url": "https://comicvine.gamespot.com/falcon/4005-1451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1453/", + "id": 1453, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4005-1453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1454/", + "id": 1454, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4005-1454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1455/", + "id": 1455, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4005-1455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1456/", + "id": 1456, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4005-1456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1457/", + "id": 1457, + "name": "Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost/4005-1457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1459/", + "id": 1459, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4005-1459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1460/", + "id": 1460, + "name": "Colossus", + "site_detail_url": "https://comicvine.gamespot.com/colossus/4005-1460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1461/", + "id": 1461, + "name": "Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler/4005-1461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1462/", + "id": 1462, + "name": "Beast", + "site_detail_url": "https://comicvine.gamespot.com/beast/4005-1462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1463/", + "id": 1463, + "name": "Moonstar", + "site_detail_url": "https://comicvine.gamespot.com/moonstar/4005-1463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1464/", + "id": 1464, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4005-1464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1465/", + "id": 1465, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4005-1465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1466/", + "id": 1466, + "name": "Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch/4005-1466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1467/", + "id": 1467, + "name": "Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver/4005-1467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1468/", + "id": 1468, + "name": "Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom/4005-1468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1469/", + "id": 1469, + "name": "Mystique", + "site_detail_url": "https://comicvine.gamespot.com/mystique/4005-1469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1470/", + "id": 1470, + "name": "Toad", + "site_detail_url": "https://comicvine.gamespot.com/toad/4005-1470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1472/", + "id": 1472, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4005-1472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1473/", + "id": 1473, + "name": "Polaris", + "site_detail_url": "https://comicvine.gamespot.com/polaris/4005-1473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1474/", + "id": 1474, + "name": "Cloak", + "site_detail_url": "https://comicvine.gamespot.com/cloak/4005-1474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1475/", + "id": 1475, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4005-1475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1476/", + "id": 1476, + "name": "Namor", + "site_detail_url": "https://comicvine.gamespot.com/namor/4005-1476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1477/", + "id": 1477, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4005-1477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1478/", + "id": 1478, + "name": "Sasquatch", + "site_detail_url": "https://comicvine.gamespot.com/sasquatch/4005-1478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1479/", + "id": 1479, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/black-cat/4005-1479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1480/", + "id": 1480, + "name": "Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy/4005-1480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1483/", + "id": 1483, + "name": "Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/kingpin/4005-1483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1485/", + "id": 1485, + "name": "Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopus/4005-1485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1486/", + "id": 1486, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4005-1486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1487/", + "id": 1487, + "name": "J. Jonah Jameson", + "site_detail_url": "https://comicvine.gamespot.com/j-jonah-jameson/4005-1487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1488/", + "id": 1488, + "name": "Lizard", + "site_detail_url": "https://comicvine.gamespot.com/lizard/4005-1488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1489/", + "id": 1489, + "name": "Flash Thompson", + "site_detail_url": "https://comicvine.gamespot.com/flash-thompson/4005-1489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1490/", + "id": 1490, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/carnage/4005-1490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1491/", + "id": 1491, + "name": "Misty Knight", + "site_detail_url": "https://comicvine.gamespot.com/misty-knight/4005-1491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1492/", + "id": 1492, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4005-1492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1493/", + "id": 1493, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4005-1493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1494/", + "id": 1494, + "name": "Colleen Wing", + "site_detail_url": "https://comicvine.gamespot.com/colleen-wing/4005-1494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1496/", + "id": 1496, + "name": "Cannonball", + "site_detail_url": "https://comicvine.gamespot.com/cannonball/4005-1496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1498/", + "id": 1498, + "name": "Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/dazzler/4005-1498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1499/", + "id": 1499, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4005-1499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1501/", + "id": 1501, + "name": "Yellowjacket (DeMara)", + "site_detail_url": "https://comicvine.gamespot.com/yellowjacket-demara/4005-1501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1502/", + "id": 1502, + "name": "Wasp", + "site_detail_url": "https://comicvine.gamespot.com/wasp/4005-1502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1503/", + "id": 1503, + "name": "Bishop", + "site_detail_url": "https://comicvine.gamespot.com/bishop/4005-1503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1504/", + "id": 1504, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4005-1504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1505/", + "id": 1505, + "name": "Professor X", + "site_detail_url": "https://comicvine.gamespot.com/professor-x/4005-1505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1525/", + "id": 1525, + "name": "Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher/4005-1525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1526/", + "id": 1526, + "name": "Microchip", + "site_detail_url": "https://comicvine.gamespot.com/microchip/4005-1526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1527/", + "id": 1527, + "name": "Recoil", + "site_detail_url": "https://comicvine.gamespot.com/recoil/4005-1527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1528/", + "id": 1528, + "name": "Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/tarantula/4005-1528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1529/", + "id": 1529, + "name": "Batroc", + "site_detail_url": "https://comicvine.gamespot.com/batroc/4005-1529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1530/", + "id": 1530, + "name": "Rapido", + "site_detail_url": "https://comicvine.gamespot.com/rapido/4005-1530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1532/", + "id": 1532, + "name": "Snakebite", + "site_detail_url": "https://comicvine.gamespot.com/snakebite/4005-1532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1534/", + "id": 1534, + "name": "Black Bear", + "site_detail_url": "https://comicvine.gamespot.com/black-bear/4005-1534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1535/", + "id": 1535, + "name": "Chauffard", + "site_detail_url": "https://comicvine.gamespot.com/chauffard/4005-1535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1536/", + "id": 1536, + "name": "Typhoid Mary", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-mary/4005-1536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1538/", + "id": 1538, + "name": "Jigsaw", + "site_detail_url": "https://comicvine.gamespot.com/jigsaw/4005-1538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1750/", + "id": 1750, + "name": "Baroshtok", + "site_detail_url": "https://comicvine.gamespot.com/baroshtok/4005-1750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1755/", + "id": 1755, + "name": "Domini", + "site_detail_url": "https://comicvine.gamespot.com/domini/4005-1755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1756/", + "id": 1756, + "name": "Taj Nital", + "site_detail_url": "https://comicvine.gamespot.com/taj-nital/4005-1756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1757/", + "id": 1757, + "name": "Bloodstorm", + "site_detail_url": "https://comicvine.gamespot.com/bloodstorm/4005-1757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1763/", + "id": 1763, + "name": "Marlene Drake", + "site_detail_url": "https://comicvine.gamespot.com/marlene-drake/4005-1763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1776/", + "id": 1776, + "name": "Ethan Edwards", + "site_detail_url": "https://comicvine.gamespot.com/ethan-edwards/4005-1776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1779/", + "id": 1779, + "name": "Absorbing Man", + "site_detail_url": "https://comicvine.gamespot.com/absorbing-man/4005-1779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1780/", + "id": 1780, + "name": "Aunt May", + "site_detail_url": "https://comicvine.gamespot.com/aunt-may/4005-1780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1781/", + "id": 1781, + "name": "Jarvis", + "site_detail_url": "https://comicvine.gamespot.com/jarvis/4005-1781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1782/", + "id": 1782, + "name": "Robbie Robertson", + "site_detail_url": "https://comicvine.gamespot.com/robbie-robertson/4005-1782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1797/", + "id": 1797, + "name": "Daisuke Sasaki", + "site_detail_url": "https://comicvine.gamespot.com/daisuke-sasaki/4005-1797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1798/", + "id": 1798, + "name": "Kagenobu Yoshioka", + "site_detail_url": "https://comicvine.gamespot.com/kagenobu-yoshioka/4005-1798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1799/", + "id": 1799, + "name": "Eliza Martinez", + "site_detail_url": "https://comicvine.gamespot.com/eliza-martinez/4005-1799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1801/", + "id": 1801, + "name": "Kikuchi", + "site_detail_url": "https://comicvine.gamespot.com/kikuchi/4005-1801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1802/", + "id": 1802, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4005-1802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1803/", + "id": 1803, + "name": "Saburo Ishiyama", + "site_detail_url": "https://comicvine.gamespot.com/saburo-ishiyama/4005-1803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1873/", + "id": 1873, + "name": "Ripley Weaver", + "site_detail_url": "https://comicvine.gamespot.com/ripley-weaver/4005-1873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1924/", + "id": 1924, + "name": "Josiah X", + "site_detail_url": "https://comicvine.gamespot.com/josiah-x/4005-1924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1925/", + "id": 1925, + "name": "Angela Del Toro", + "site_detail_url": "https://comicvine.gamespot.com/angela-del-toro/4005-1925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1926/", + "id": 1926, + "name": "War Machine", + "site_detail_url": "https://comicvine.gamespot.com/war-machine/4005-1926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1927/", + "id": 1927, + "name": "Junta", + "site_detail_url": "https://comicvine.gamespot.com/junta/4005-1927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1935/", + "id": 1935, + "name": "Dagger", + "site_detail_url": "https://comicvine.gamespot.com/dagger/4005-1935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1936/", + "id": 1936, + "name": "Molly Hayes", + "site_detail_url": "https://comicvine.gamespot.com/molly-hayes/4005-1936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1937/", + "id": 1937, + "name": "Victor Mancha", + "site_detail_url": "https://comicvine.gamespot.com/victor-mancha/4005-1937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1938/", + "id": 1938, + "name": "Chase Stein", + "site_detail_url": "https://comicvine.gamespot.com/chase-stein/4005-1938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1939/", + "id": 1939, + "name": "Gertrude Yorkes", + "site_detail_url": "https://comicvine.gamespot.com/gertrude-yorkes/4005-1939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1940/", + "id": 1940, + "name": "Nico Minoru", + "site_detail_url": "https://comicvine.gamespot.com/nico-minoru/4005-1940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1943/", + "id": 1943, + "name": "Karolina Dean", + "site_detail_url": "https://comicvine.gamespot.com/karolina-dean/4005-1943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1944/", + "id": 1944, + "name": "Xavin", + "site_detail_url": "https://comicvine.gamespot.com/xavin/4005-1944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1945/", + "id": 1945, + "name": "Swarm", + "site_detail_url": "https://comicvine.gamespot.com/swarm/4005-1945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1952/", + "id": 1952, + "name": "Harrison Cochrane", + "site_detail_url": "https://comicvine.gamespot.com/harrison-cochrane/4005-1952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1962/", + "id": 1962, + "name": "Kylie Gagarin", + "site_detail_url": "https://comicvine.gamespot.com/kylie-gagarin/4005-1962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1963/", + "id": 1963, + "name": "Mort the Dead Teenager", + "site_detail_url": "https://comicvine.gamespot.com/mort-the-dead-teenager/4005-1963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2067/", + "id": 2067, + "name": "Fast Jack", + "site_detail_url": "https://comicvine.gamespot.com/fast-jack/4005-2067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2068/", + "id": 2068, + "name": "Cooper", + "site_detail_url": "https://comicvine.gamespot.com/cooper/4005-2068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2071/", + "id": 2071, + "name": "Father Miguel Bonavita", + "site_detail_url": "https://comicvine.gamespot.com/father-miguel-bonavita/4005-2071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2072/", + "id": 2072, + "name": "Oliver Stoker", + "site_detail_url": "https://comicvine.gamespot.com/oliver-stoker/4005-2072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2092/", + "id": 2092, + "name": "Mathemanic", + "site_detail_url": "https://comicvine.gamespot.com/mathemanic/4005-2092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2093/", + "id": 2093, + "name": "Impulse", + "site_detail_url": "https://comicvine.gamespot.com/impulse/4005-2093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2094/", + "id": 2094, + "name": "Coronary", + "site_detail_url": "https://comicvine.gamespot.com/coronary/4005-2094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2095/", + "id": 2095, + "name": "Asylum", + "site_detail_url": "https://comicvine.gamespot.com/asylum/4005-2095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2096/", + "id": 2096, + "name": "Pretty Persuasions", + "site_detail_url": "https://comicvine.gamespot.com/pretty-persuasions/4005-2096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2097/", + "id": 2097, + "name": "Rage", + "site_detail_url": "https://comicvine.gamespot.com/rage/4005-2097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2098/", + "id": 2098, + "name": "Night Thrasher", + "site_detail_url": "https://comicvine.gamespot.com/night-thrasher/4005-2098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2101/", + "id": 2101, + "name": "Firestar", + "site_detail_url": "https://comicvine.gamespot.com/firestar/4005-2101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2102/", + "id": 2102, + "name": "Flashburn", + "site_detail_url": "https://comicvine.gamespot.com/flashburn/4005-2102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2103/", + "id": 2103, + "name": "Turbo", + "site_detail_url": "https://comicvine.gamespot.com/turbo/4005-2103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2104/", + "id": 2104, + "name": "Speedball", + "site_detail_url": "https://comicvine.gamespot.com/speedball/4005-2104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2105/", + "id": 2105, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4005-2105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2106/", + "id": 2106, + "name": "Terrax", + "site_detail_url": "https://comicvine.gamespot.com/terrax/4005-2106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2110/", + "id": 2110, + "name": "Darkling", + "site_detail_url": "https://comicvine.gamespot.com/darkling/4005-2110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2111/", + "id": 2111, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk/4005-2111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2112/", + "id": 2112, + "name": "Angel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-2112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2113/", + "id": 2113, + "name": "Namorita", + "site_detail_url": "https://comicvine.gamespot.com/namorita/4005-2113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2114/", + "id": 2114, + "name": "Thing", + "site_detail_url": "https://comicvine.gamespot.com/thing/4005-2114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2115/", + "id": 2115, + "name": "Crystal", + "site_detail_url": "https://comicvine.gamespot.com/crystal/4005-2115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2116/", + "id": 2116, + "name": "Chord", + "site_detail_url": "https://comicvine.gamespot.com/chord/4005-2116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2117/", + "id": 2117, + "name": "Sprocket", + "site_detail_url": "https://comicvine.gamespot.com/sprocket/4005-2117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2118/", + "id": 2118, + "name": "Sersi", + "site_detail_url": "https://comicvine.gamespot.com/sersi/4005-2118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2119/", + "id": 2119, + "name": "Silhouette", + "site_detail_url": "https://comicvine.gamespot.com/silhouette/4005-2119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2120/", + "id": 2120, + "name": "Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/human-torch/4005-2120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2122/", + "id": 2122, + "name": "Weapon Y", + "site_detail_url": "https://comicvine.gamespot.com/weapon-y/4005-2122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2125/", + "id": 2125, + "name": "Sphinx", + "site_detail_url": "https://comicvine.gamespot.com/sphinx/4005-2125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2126/", + "id": 2126, + "name": "Rhino", + "site_detail_url": "https://comicvine.gamespot.com/rhino/4005-2126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2127/", + "id": 2127, + "name": "Constrictor", + "site_detail_url": "https://comicvine.gamespot.com/constrictor/4005-2127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2128/", + "id": 2128, + "name": "Speed Demon", + "site_detail_url": "https://comicvine.gamespot.com/speed-demon/4005-2128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2129/", + "id": 2129, + "name": "Stiletto", + "site_detail_url": "https://comicvine.gamespot.com/stiletto/4005-2129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2131/", + "id": 2131, + "name": "Mad Thinker", + "site_detail_url": "https://comicvine.gamespot.com/mad-thinker/4005-2131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2132/", + "id": 2132, + "name": "Primus", + "site_detail_url": "https://comicvine.gamespot.com/primus/4005-2132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2133/", + "id": 2133, + "name": "Skybreaker", + "site_detail_url": "https://comicvine.gamespot.com/skybreaker/4005-2133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2134/", + "id": 2134, + "name": "Terraformer", + "site_detail_url": "https://comicvine.gamespot.com/terraformer/4005-2134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2135/", + "id": 2135, + "name": "Aqueduct", + "site_detail_url": "https://comicvine.gamespot.com/aqueduct/4005-2135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2137/", + "id": 2137, + "name": "Star Thief", + "site_detail_url": "https://comicvine.gamespot.com/star-thief/4005-2137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2138/", + "id": 2138, + "name": "Catseye", + "site_detail_url": "https://comicvine.gamespot.com/catseye/4005-2138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2139/", + "id": 2139, + "name": "Beef", + "site_detail_url": "https://comicvine.gamespot.com/beef/4005-2139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2140/", + "id": 2140, + "name": "Tarot", + "site_detail_url": "https://comicvine.gamespot.com/tarot/4005-2140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2141/", + "id": 2141, + "name": "Bevatron", + "site_detail_url": "https://comicvine.gamespot.com/bevatron/4005-2141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2142/", + "id": 2142, + "name": "Roulette", + "site_detail_url": "https://comicvine.gamespot.com/roulette/4005-2142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2143/", + "id": 2143, + "name": "Jetstream", + "site_detail_url": "https://comicvine.gamespot.com/jetstream/4005-2143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2144/", + "id": 2144, + "name": "Bloodstrike", + "site_detail_url": "https://comicvine.gamespot.com/bloodstrike/4005-2144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2145/", + "id": 2145, + "name": "Smiling Tiger", + "site_detail_url": "https://comicvine.gamespot.com/smiling-tiger/4005-2145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2146/", + "id": 2146, + "name": "Silk Fever", + "site_detail_url": "https://comicvine.gamespot.com/silk-fever/4005-2146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2147/", + "id": 2147, + "name": "Left Hand", + "site_detail_url": "https://comicvine.gamespot.com/left-hand/4005-2147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2148/", + "id": 2148, + "name": "Tai", + "site_detail_url": "https://comicvine.gamespot.com/tai/4005-2148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2149/", + "id": 2149, + "name": "Galactus", + "site_detail_url": "https://comicvine.gamespot.com/galactus/4005-2149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2150/", + "id": 2150, + "name": "Laura Dunham", + "site_detail_url": "https://comicvine.gamespot.com/laura-dunham/4005-2150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2151/", + "id": 2151, + "name": "Mr. Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/mr-fantastic/4005-2151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2152/", + "id": 2152, + "name": "Sea Urchin", + "site_detail_url": "https://comicvine.gamespot.com/sea-urchin/4005-2152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2153/", + "id": 2153, + "name": "Uranian", + "site_detail_url": "https://comicvine.gamespot.com/uranian/4005-2153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2154/", + "id": 2154, + "name": "Harness", + "site_detail_url": "https://comicvine.gamespot.com/harness/4005-2154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2155/", + "id": 2155, + "name": "Piecemeal", + "site_detail_url": "https://comicvine.gamespot.com/piecemeal/4005-2155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2156/", + "id": 2156, + "name": "Shatterstar", + "site_detail_url": "https://comicvine.gamespot.com/shatterstar/4005-2156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2157/", + "id": 2157, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4005-2157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2158/", + "id": 2158, + "name": "Warpath", + "site_detail_url": "https://comicvine.gamespot.com/warpath/4005-2158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2159/", + "id": 2159, + "name": "Boom-Boom", + "site_detail_url": "https://comicvine.gamespot.com/boom-boom/4005-2159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2160/", + "id": 2160, + "name": "Feral", + "site_detail_url": "https://comicvine.gamespot.com/feral/4005-2160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2161/", + "id": 2161, + "name": "Domino", + "site_detail_url": "https://comicvine.gamespot.com/domino/4005-2161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2162/", + "id": 2162, + "name": "Gideon", + "site_detail_url": "https://comicvine.gamespot.com/gideon/4005-2162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2163/", + "id": 2163, + "name": "Frenzy", + "site_detail_url": "https://comicvine.gamespot.com/frenzy/4005-2163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2164/", + "id": 2164, + "name": "Phoenix Force", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-force/4005-2164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2165/", + "id": 2165, + "name": "Proteus", + "site_detail_url": "https://comicvine.gamespot.com/proteus/4005-2165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2166/", + "id": 2166, + "name": "Major Victory", + "site_detail_url": "https://comicvine.gamespot.com/major-victory/4005-2166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2167/", + "id": 2167, + "name": "Martinex", + "site_detail_url": "https://comicvine.gamespot.com/martinex/4005-2167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2168/", + "id": 2168, + "name": "Starhawk", + "site_detail_url": "https://comicvine.gamespot.com/starhawk/4005-2168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2169/", + "id": 2169, + "name": "Charlie-27", + "site_detail_url": "https://comicvine.gamespot.com/charlie-27/4005-2169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2170/", + "id": 2170, + "name": "Yondu", + "site_detail_url": "https://comicvine.gamespot.com/yondu/4005-2170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2172/", + "id": 2172, + "name": "Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/devil-dinosaur/4005-2172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2173/", + "id": 2173, + "name": "Empath", + "site_detail_url": "https://comicvine.gamespot.com/empath/4005-2173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2174/", + "id": 2174, + "name": "Thunderbird", + "site_detail_url": "https://comicvine.gamespot.com/thunderbird/4005-2174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2175/", + "id": 2175, + "name": "Sebastian Shaw", + "site_detail_url": "https://comicvine.gamespot.com/sebastian-shaw/4005-2175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2176/", + "id": 2176, + "name": "Selene", + "site_detail_url": "https://comicvine.gamespot.com/selene/4005-2176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2177/", + "id": 2177, + "name": "Namora", + "site_detail_url": "https://comicvine.gamespot.com/namora/4005-2177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2178/", + "id": 2178, + "name": "Llyra", + "site_detail_url": "https://comicvine.gamespot.com/llyra/4005-2178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2179/", + "id": 2179, + "name": "Byrrah", + "site_detail_url": "https://comicvine.gamespot.com/byrrah/4005-2179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2182/", + "id": 2182, + "name": "Zorr", + "site_detail_url": "https://comicvine.gamespot.com/zorr/4005-2182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2184/", + "id": 2184, + "name": "Diamondhead", + "site_detail_url": "https://comicvine.gamespot.com/diamondhead/4005-2184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2186/", + "id": 2186, + "name": "Condor", + "site_detail_url": "https://comicvine.gamespot.com/condor/4005-2186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2187/", + "id": 2187, + "name": "Earthshaker", + "site_detail_url": "https://comicvine.gamespot.com/earthshaker/4005-2187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2190/", + "id": 2190, + "name": "Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/invisible-woman/4005-2190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2191/", + "id": 2191, + "name": "Katie Power", + "site_detail_url": "https://comicvine.gamespot.com/katie-power/4005-2191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2205/", + "id": 2205, + "name": "Dormammu", + "site_detail_url": "https://comicvine.gamespot.com/dormammu/4005-2205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2206/", + "id": 2206, + "name": "Obi-Wan Kenobi", + "site_detail_url": "https://comicvine.gamespot.com/obi-wan-kenobi/4005-2206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2212/", + "id": 2212, + "name": "Ancient One", + "site_detail_url": "https://comicvine.gamespot.com/ancient-one/4005-2212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2213/", + "id": 2213, + "name": "Baron Mordo", + "site_detail_url": "https://comicvine.gamespot.com/baron-mordo/4005-2213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2214/", + "id": 2214, + "name": "Devon", + "site_detail_url": "https://comicvine.gamespot.com/devon/4005-2214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2215/", + "id": 2215, + "name": "Wong", + "site_detail_url": "https://comicvine.gamespot.com/wong/4005-2215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2216/", + "id": 2216, + "name": "Clea", + "site_detail_url": "https://comicvine.gamespot.com/clea/4005-2216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2236/", + "id": 2236, + "name": "Yan Onanwro", + "site_detail_url": "https://comicvine.gamespot.com/yan-onanwro/4005-2236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2242/", + "id": 2242, + "name": "Ultron", + "site_detail_url": "https://comicvine.gamespot.com/ultron/4005-2242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2244/", + "id": 2244, + "name": "Chamber", + "site_detail_url": "https://comicvine.gamespot.com/chamber/4005-2244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2245/", + "id": 2245, + "name": "Ricochet", + "site_detail_url": "https://comicvine.gamespot.com/ricochet/4005-2245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2246/", + "id": 2246, + "name": "Phil Urich", + "site_detail_url": "https://comicvine.gamespot.com/phil-urich/4005-2246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2247/", + "id": 2247, + "name": "Hank Pym", + "site_detail_url": "https://comicvine.gamespot.com/hank-pym/4005-2247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2248/", + "id": 2248, + "name": "Rick Jones", + "site_detail_url": "https://comicvine.gamespot.com/rick-jones/4005-2248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2249/", + "id": 2249, + "name": "Alex Wilder", + "site_detail_url": "https://comicvine.gamespot.com/alex-wilder/4005-2249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2250/", + "id": 2250, + "name": "Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/red-skull/4005-2250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2251/", + "id": 2251, + "name": "Piledriver", + "site_detail_url": "https://comicvine.gamespot.com/piledriver/4005-2251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2252/", + "id": 2252, + "name": "Wrecker", + "site_detail_url": "https://comicvine.gamespot.com/wrecker/4005-2252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2253/", + "id": 2253, + "name": "Thunderball", + "site_detail_url": "https://comicvine.gamespot.com/thunderball/4005-2253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2254/", + "id": 2254, + "name": "Bulldozer", + "site_detail_url": "https://comicvine.gamespot.com/bulldozer/4005-2254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2255/", + "id": 2255, + "name": "Excavator", + "site_detail_url": "https://comicvine.gamespot.com/excavator/4005-2255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2258/", + "id": 2258, + "name": "Patriot", + "site_detail_url": "https://comicvine.gamespot.com/patriot/4005-2258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2259/", + "id": 2259, + "name": "Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/hulkling/4005-2259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2262/", + "id": 2262, + "name": "Kate Bishop", + "site_detail_url": "https://comicvine.gamespot.com/kate-bishop/4005-2262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2263/", + "id": 2263, + "name": "Iron Lad", + "site_detail_url": "https://comicvine.gamespot.com/iron-lad/4005-2263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2264/", + "id": 2264, + "name": "Kang", + "site_detail_url": "https://comicvine.gamespot.com/kang/4005-2264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2265/", + "id": 2265, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4005-2265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2266/", + "id": 2266, + "name": "Growing Man", + "site_detail_url": "https://comicvine.gamespot.com/growing-man/4005-2266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2267/", + "id": 2267, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4005-2267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2268/", + "id": 2268, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4005-2268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2269/", + "id": 2269, + "name": "Kat Farrell", + "site_detail_url": "https://comicvine.gamespot.com/kat-farrell/4005-2269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2274/", + "id": 2274, + "name": "Abel Stack", + "site_detail_url": "https://comicvine.gamespot.com/abel-stack/4005-2274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2275/", + "id": 2275, + "name": "Dr. Broadhurst", + "site_detail_url": "https://comicvine.gamespot.com/dr-broadhurst/4005-2275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2277/", + "id": 2277, + "name": "Peter Spaulding", + "site_detail_url": "https://comicvine.gamespot.com/peter-spaulding/4005-2277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2278/", + "id": 2278, + "name": "Miles Brickman", + "site_detail_url": "https://comicvine.gamespot.com/miles-brickman/4005-2278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2312/", + "id": 2312, + "name": "Colony", + "site_detail_url": "https://comicvine.gamespot.com/colony/4005-2312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2318/", + "id": 2318, + "name": "Jack Kubrick", + "site_detail_url": "https://comicvine.gamespot.com/jack-kubrick/4005-2318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2327/", + "id": 2327, + "name": "Jill Spaulding", + "site_detail_url": "https://comicvine.gamespot.com/jill-spaulding/4005-2327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2346/", + "id": 2346, + "name": "Abdul Kazir", + "site_detail_url": "https://comicvine.gamespot.com/abdul-kazir/4005-2346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2412/", + "id": 2412, + "name": "ALF", + "site_detail_url": "https://comicvine.gamespot.com/alf/4005-2412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2415/", + "id": 2415, + "name": "Willie Tanner", + "site_detail_url": "https://comicvine.gamespot.com/willie-tanner/4005-2415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2416/", + "id": 2416, + "name": "Kate Tanner", + "site_detail_url": "https://comicvine.gamespot.com/kate-tanner/4005-2416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2417/", + "id": 2417, + "name": "Brian Tanner", + "site_detail_url": "https://comicvine.gamespot.com/brian-tanner/4005-2417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2419/", + "id": 2419, + "name": "Lynn Tanner", + "site_detail_url": "https://comicvine.gamespot.com/lynn-tanner/4005-2419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2438/", + "id": 2438, + "name": "Conan", + "site_detail_url": "https://comicvine.gamespot.com/conan/4005-2438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2466/", + "id": 2466, + "name": "Carmine Villanova", + "site_detail_url": "https://comicvine.gamespot.com/carmine-villanova/4005-2466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2467/", + "id": 2467, + "name": "Blake Tower", + "site_detail_url": "https://comicvine.gamespot.com/blake-tower/4005-2467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2468/", + "id": 2468, + "name": "Luke Tower", + "site_detail_url": "https://comicvine.gamespot.com/luke-tower/4005-2468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2469/", + "id": 2469, + "name": "Franklin Richards", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards/4005-2469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2470/", + "id": 2470, + "name": "Valeria Richards", + "site_detail_url": "https://comicvine.gamespot.com/valeria-richards/4005-2470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2471/", + "id": 2471, + "name": "Jean DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/jean-dewolff/4005-2471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2472/", + "id": 2472, + "name": "Nina Pushnikov", + "site_detail_url": "https://comicvine.gamespot.com/nina-pushnikov/4005-2472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2473/", + "id": 2473, + "name": "Red Ghost", + "site_detail_url": "https://comicvine.gamespot.com/red-ghost/4005-2473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2474/", + "id": 2474, + "name": "Stilt-Man", + "site_detail_url": "https://comicvine.gamespot.com/stilt-man/4005-2474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2475/", + "id": 2475, + "name": "Kraven the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/kraven-the-hunter/4005-2475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2478/", + "id": 2478, + "name": "Harry Osborn", + "site_detail_url": "https://comicvine.gamespot.com/harry-osborn/4005-2478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2479/", + "id": 2479, + "name": "George Stacy", + "site_detail_url": "https://comicvine.gamespot.com/george-stacy/4005-2479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2481/", + "id": 2481, + "name": "Mole Man", + "site_detail_url": "https://comicvine.gamespot.com/mole-man/4005-2481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2483/", + "id": 2483, + "name": "Dorrie Evans", + "site_detail_url": "https://comicvine.gamespot.com/dorrie-evans/4005-2483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2484/", + "id": 2484, + "name": "Betty Brant", + "site_detail_url": "https://comicvine.gamespot.com/betty-brant/4005-2484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2486/", + "id": 2486, + "name": "Mr. Immortal", + "site_detail_url": "https://comicvine.gamespot.com/mr-immortal/4005-2486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2487/", + "id": 2487, + "name": "Flatman", + "site_detail_url": "https://comicvine.gamespot.com/flatman/4005-2487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2488/", + "id": 2488, + "name": "Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/squirrel-girl/4005-2488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2489/", + "id": 2489, + "name": "Doorman", + "site_detail_url": "https://comicvine.gamespot.com/doorman/4005-2489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2490/", + "id": 2490, + "name": "Big Bertha", + "site_detail_url": "https://comicvine.gamespot.com/big-bertha/4005-2490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2492/", + "id": 2492, + "name": "Deathurge", + "site_detail_url": "https://comicvine.gamespot.com/deathurge/4005-2492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2493/", + "id": 2493, + "name": "Maelstrom", + "site_detail_url": "https://comicvine.gamespot.com/maelstrom/4005-2493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2494/", + "id": 2494, + "name": "Zaran", + "site_detail_url": "https://comicvine.gamespot.com/zaran/4005-2494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2495/", + "id": 2495, + "name": "Machete", + "site_detail_url": "https://comicvine.gamespot.com/machete/4005-2495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2496/", + "id": 2496, + "name": "Oblivion", + "site_detail_url": "https://comicvine.gamespot.com/oblivion/4005-2496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2497/", + "id": 2497, + "name": "Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird/4005-2497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2498/", + "id": 2498, + "name": "Dinah Soar", + "site_detail_url": "https://comicvine.gamespot.com/dinah-soar/4005-2498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2499/", + "id": 2499, + "name": "Grasshopper", + "site_detail_url": "https://comicvine.gamespot.com/grasshopper/4005-2499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2500/", + "id": 2500, + "name": "Monkey Joe", + "site_detail_url": "https://comicvine.gamespot.com/monkey-joe/4005-2500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2501/", + "id": 2501, + "name": "Captain Ultra", + "site_detail_url": "https://comicvine.gamespot.com/captain-ultra/4005-2501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2502/", + "id": 2502, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4005-2502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2503/", + "id": 2503, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4005-2503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2504/", + "id": 2504, + "name": "Swordsman (Jarvert)", + "site_detail_url": "https://comicvine.gamespot.com/swordsman-jarvert/4005-2504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2505/", + "id": 2505, + "name": "Leather Boy", + "site_detail_url": "https://comicvine.gamespot.com/leather-boy/4005-2505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2506/", + "id": 2506, + "name": "Edward Hollis", + "site_detail_url": "https://comicvine.gamespot.com/edward-hollis/4005-2506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2507/", + "id": 2507, + "name": "Audrey Hollis", + "site_detail_url": "https://comicvine.gamespot.com/audrey-hollis/4005-2507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2594/", + "id": 2594, + "name": "R2-D2", + "site_detail_url": "https://comicvine.gamespot.com/r2-d2/4005-2594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2595/", + "id": 2595, + "name": "Admiral Motti", + "site_detail_url": "https://comicvine.gamespot.com/admiral-motti/4005-2595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2600/", + "id": 2600, + "name": "Ponda Baba", + "site_detail_url": "https://comicvine.gamespot.com/ponda-baba/4005-2600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2604/", + "id": 2604, + "name": "Greedo", + "site_detail_url": "https://comicvine.gamespot.com/greedo/4005-2604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2605/", + "id": 2605, + "name": "Cornfed", + "site_detail_url": "https://comicvine.gamespot.com/cornfed/4005-2605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2608/", + "id": 2608, + "name": "Han Solo", + "site_detail_url": "https://comicvine.gamespot.com/han-solo/4005-2608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2631/", + "id": 2631, + "name": "Vitchen", + "site_detail_url": "https://comicvine.gamespot.com/vitchen/4005-2631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2633/", + "id": 2633, + "name": "Nugent", + "site_detail_url": "https://comicvine.gamespot.com/nugent/4005-2633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2635/", + "id": 2635, + "name": "Mephisto", + "site_detail_url": "https://comicvine.gamespot.com/mephisto/4005-2635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2636/", + "id": 2636, + "name": "Pluto", + "site_detail_url": "https://comicvine.gamespot.com/pluto/4005-2636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2637/", + "id": 2637, + "name": "Umar", + "site_detail_url": "https://comicvine.gamespot.com/umar/4005-2637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2638/", + "id": 2638, + "name": "Malevolence", + "site_detail_url": "https://comicvine.gamespot.com/malevolence/4005-2638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2639/", + "id": 2639, + "name": "Molgotha", + "site_detail_url": "https://comicvine.gamespot.com/molgotha/4005-2639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2640/", + "id": 2640, + "name": "Brutus Klor", + "site_detail_url": "https://comicvine.gamespot.com/brutus-klor/4005-2640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2641/", + "id": 2641, + "name": "Siffror", + "site_detail_url": "https://comicvine.gamespot.com/siffror/4005-2641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2643/", + "id": 2643, + "name": "Skarabrous", + "site_detail_url": "https://comicvine.gamespot.com/skarabrous/4005-2643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2644/", + "id": 2644, + "name": "Viliven", + "site_detail_url": "https://comicvine.gamespot.com/viliven/4005-2644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2645/", + "id": 2645, + "name": "Phemous", + "site_detail_url": "https://comicvine.gamespot.com/phemous/4005-2645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2646/", + "id": 2646, + "name": "Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/nightmare/4005-2646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2701/", + "id": 2701, + "name": "Phaedra", + "site_detail_url": "https://comicvine.gamespot.com/phaedra/4005-2701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2702/", + "id": 2702, + "name": "Cteno", + "site_detail_url": "https://comicvine.gamespot.com/cteno/4005-2702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2706/", + "id": 2706, + "name": "Chronos", + "site_detail_url": "https://comicvine.gamespot.com/chronos/4005-2706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2886/", + "id": 2886, + "name": "Victor Guillermos", + "site_detail_url": "https://comicvine.gamespot.com/victor-guillermos/4005-2886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2931/", + "id": 2931, + "name": "Bliss", + "site_detail_url": "https://comicvine.gamespot.com/bliss/4005-2931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2961/", + "id": 2961, + "name": "Armata", + "site_detail_url": "https://comicvine.gamespot.com/armata/4005-2961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2962/", + "id": 2962, + "name": "Logix", + "site_detail_url": "https://comicvine.gamespot.com/logix/4005-2962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2963/", + "id": 2963, + "name": "Amokk", + "site_detail_url": "https://comicvine.gamespot.com/amokk/4005-2963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2965/", + "id": 2965, + "name": "Trip Munroe", + "site_detail_url": "https://comicvine.gamespot.com/trip-munroe/4005-2965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2980/", + "id": 2980, + "name": "Psiclone", + "site_detail_url": "https://comicvine.gamespot.com/psiclone/4005-2980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2981/", + "id": 2981, + "name": "Dragonfire", + "site_detail_url": "https://comicvine.gamespot.com/dragonfire/4005-2981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2982/", + "id": 2982, + "name": "Dr. Scarabeus", + "site_detail_url": "https://comicvine.gamespot.com/dr-scarabeus/4005-2982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2988/", + "id": 2988, + "name": "Mandrac", + "site_detail_url": "https://comicvine.gamespot.com/mandrac/4005-2988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2990/", + "id": 2990, + "name": "Croglin", + "site_detail_url": "https://comicvine.gamespot.com/croglin/4005-2990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2991/", + "id": 2991, + "name": "Strange", + "site_detail_url": "https://comicvine.gamespot.com/strange/4005-2991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3046/", + "id": 3046, + "name": "Vinnie Evans", + "site_detail_url": "https://comicvine.gamespot.com/vinnie-evans/4005-3046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3104/", + "id": 3104, + "name": "Gandy Goose", + "site_detail_url": "https://comicvine.gamespot.com/gandy-goose/4005-3104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3105/", + "id": 3105, + "name": "Sourpuss", + "site_detail_url": "https://comicvine.gamespot.com/sourpuss/4005-3105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3114/", + "id": 3114, + "name": "Uncle Ben", + "site_detail_url": "https://comicvine.gamespot.com/uncle-ben/4005-3114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3116/", + "id": 3116, + "name": "Jacob Conover", + "site_detail_url": "https://comicvine.gamespot.com/jacob-conover/4005-3116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3119/", + "id": 3119, + "name": "Skritch", + "site_detail_url": "https://comicvine.gamespot.com/skritch/4005-3119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3124/", + "id": 3124, + "name": "Foggy Nelson", + "site_detail_url": "https://comicvine.gamespot.com/foggy-nelson/4005-3124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3125/", + "id": 3125, + "name": "Bullet", + "site_detail_url": "https://comicvine.gamespot.com/bullet/4005-3125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3128/", + "id": 3128, + "name": "Dakota North", + "site_detail_url": "https://comicvine.gamespot.com/dakota-north/4005-3128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3129/", + "id": 3129, + "name": "Anders", + "site_detail_url": "https://comicvine.gamespot.com/anders/4005-3129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3131/", + "id": 3131, + "name": "Bogeyman", + "site_detail_url": "https://comicvine.gamespot.com/bogeyman/4005-3131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3132/", + "id": 3132, + "name": "Ana Medina", + "site_detail_url": "https://comicvine.gamespot.com/ana-medina/4005-3132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3133/", + "id": 3133, + "name": "Julie Power", + "site_detail_url": "https://comicvine.gamespot.com/julie-power/4005-3133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3134/", + "id": 3134, + "name": "Jack Power", + "site_detail_url": "https://comicvine.gamespot.com/jack-power/4005-3134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3135/", + "id": 3135, + "name": "Dred", + "site_detail_url": "https://comicvine.gamespot.com/dred/4005-3135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3137/", + "id": 3137, + "name": "Contract", + "site_detail_url": "https://comicvine.gamespot.com/contract/4005-3137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3138/", + "id": 3138, + "name": "Troubleshooter", + "site_detail_url": "https://comicvine.gamespot.com/troubleshooter/4005-3138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3139/", + "id": 3139, + "name": "Manslaughter", + "site_detail_url": "https://comicvine.gamespot.com/manslaughter/4005-3139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3140/", + "id": 3140, + "name": "Coldfire", + "site_detail_url": "https://comicvine.gamespot.com/coldfire/4005-3140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3142/", + "id": 3142, + "name": "Hardcore", + "site_detail_url": "https://comicvine.gamespot.com/hardcore/4005-3142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3143/", + "id": 3143, + "name": "Dr. Karl Malus", + "site_detail_url": "https://comicvine.gamespot.com/dr-karl-malus/4005-3143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3144/", + "id": 3144, + "name": "Tinkerer", + "site_detail_url": "https://comicvine.gamespot.com/tinkerer/4005-3144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3149/", + "id": 3149, + "name": "Power Master", + "site_detail_url": "https://comicvine.gamespot.com/power-master/4005-3149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3150/", + "id": 3150, + "name": "Rapidfire", + "site_detail_url": "https://comicvine.gamespot.com/rapidfire/4005-3150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3154/", + "id": 3154, + "name": "Troop", + "site_detail_url": "https://comicvine.gamespot.com/troop/4005-3154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3156/", + "id": 3156, + "name": "Power Man Steele", + "site_detail_url": "https://comicvine.gamespot.com/power-man-steele/4005-3156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3157/", + "id": 3157, + "name": "Dr. Noah Burnstein", + "site_detail_url": "https://comicvine.gamespot.com/dr-noah-burnstein/4005-3157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3158/", + "id": 3158, + "name": "Micky Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/micky-hamilton/4005-3158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3159/", + "id": 3159, + "name": "Kickback", + "site_detail_url": "https://comicvine.gamespot.com/kickback/4005-3159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3160/", + "id": 3160, + "name": "Nitro", + "site_detail_url": "https://comicvine.gamespot.com/nitro/4005-3160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3161/", + "id": 3161, + "name": "Tombstone", + "site_detail_url": "https://comicvine.gamespot.com/tombstone/4005-3161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3171/", + "id": 3171, + "name": "Klaw", + "site_detail_url": "https://comicvine.gamespot.com/klaw/4005-3171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3172/", + "id": 3172, + "name": "Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/black-knight/4005-3172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3174/", + "id": 3174, + "name": "Silver Samurai", + "site_detail_url": "https://comicvine.gamespot.com/silver-samurai/4005-3174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3175/", + "id": 3175, + "name": "Sunfire", + "site_detail_url": "https://comicvine.gamespot.com/sunfire/4005-3175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3176/", + "id": 3176, + "name": "Betsy Braddock", + "site_detail_url": "https://comicvine.gamespot.com/betsy-braddock/4005-3176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3177/", + "id": 3177, + "name": "Charles Lehnsherr", + "site_detail_url": "https://comicvine.gamespot.com/charles-lehnsherr/4005-3177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3178/", + "id": 3178, + "name": "Trish Tilby", + "site_detail_url": "https://comicvine.gamespot.com/trish-tilby/4005-3178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3179/", + "id": 3179, + "name": "Mr. Sinister", + "site_detail_url": "https://comicvine.gamespot.com/mr-sinister/4005-3179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3180/", + "id": 3180, + "name": "Sauron", + "site_detail_url": "https://comicvine.gamespot.com/sauron/4005-3180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3181/", + "id": 3181, + "name": "Siryn", + "site_detail_url": "https://comicvine.gamespot.com/siryn/4005-3181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3182/", + "id": 3182, + "name": "Blob", + "site_detail_url": "https://comicvine.gamespot.com/blob/4005-3182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3183/", + "id": 3183, + "name": "Xorn", + "site_detail_url": "https://comicvine.gamespot.com/xorn/4005-3183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3186/", + "id": 3186, + "name": "Elizabeth Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-guthrie/4005-3186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3188/", + "id": 3188, + "name": "Beak", + "site_detail_url": "https://comicvine.gamespot.com/beak/4005-3188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3189/", + "id": 3189, + "name": "Aurora", + "site_detail_url": "https://comicvine.gamespot.com/aurora/4005-3189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3190/", + "id": 3190, + "name": "Northstar", + "site_detail_url": "https://comicvine.gamespot.com/northstar/4005-3190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3192/", + "id": 3192, + "name": "Thornn", + "site_detail_url": "https://comicvine.gamespot.com/thornn/4005-3192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3193/", + "id": 3193, + "name": "Leech", + "site_detail_url": "https://comicvine.gamespot.com/leech/4005-3193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3194/", + "id": 3194, + "name": "Skids", + "site_detail_url": "https://comicvine.gamespot.com/skids/4005-3194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3196/", + "id": 3196, + "name": "Mariko Yashida", + "site_detail_url": "https://comicvine.gamespot.com/mariko-yashida/4005-3196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3197/", + "id": 3197, + "name": "Kirika", + "site_detail_url": "https://comicvine.gamespot.com/kirika/4005-3197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3200/", + "id": 3200, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4005-3200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3201/", + "id": 3201, + "name": "Vassily Ilyich Ulyanov", + "site_detail_url": "https://comicvine.gamespot.com/vassily-ilyich-ulyanov/4005-3201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3202/", + "id": 3202, + "name": "Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury/4005-3202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3203/", + "id": 3203, + "name": "Phil Dexter", + "site_detail_url": "https://comicvine.gamespot.com/phil-dexter/4005-3203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3204/", + "id": 3204, + "name": "Lyudmila Antonovna Kudrin", + "site_detail_url": "https://comicvine.gamespot.com/lyudmila-antonovna-kudrin/4005-3204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3205/", + "id": 3205, + "name": "John Wraith", + "site_detail_url": "https://comicvine.gamespot.com/john-wraith/4005-3205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3206/", + "id": 3206, + "name": "Grigor Ivanovich Pchelintsov", + "site_detail_url": "https://comicvine.gamespot.com/grigor-ivanovich-pchelintsov/4005-3206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3207/", + "id": 3207, + "name": "Max Hunter", + "site_detail_url": "https://comicvine.gamespot.com/max-hunter/4005-3207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3208/", + "id": 3208, + "name": "Ian McMasters", + "site_detail_url": "https://comicvine.gamespot.com/ian-mcmasters/4005-3208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3209/", + "id": 3209, + "name": "Martin Ferris", + "site_detail_url": "https://comicvine.gamespot.com/martin-ferris/4005-3209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3210/", + "id": 3210, + "name": "Fist", + "site_detail_url": "https://comicvine.gamespot.com/fist/4005-3210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3223/", + "id": 3223, + "name": "Union Jack", + "site_detail_url": "https://comicvine.gamespot.com/union-jack/4005-3223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3225/", + "id": 3225, + "name": "Crossbones", + "site_detail_url": "https://comicvine.gamespot.com/crossbones/4005-3225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3227/", + "id": 3227, + "name": "Purple Man", + "site_detail_url": "https://comicvine.gamespot.com/purple-man/4005-3227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3228/", + "id": 3228, + "name": "Electro", + "site_detail_url": "https://comicvine.gamespot.com/electro/4005-3228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3229/", + "id": 3229, + "name": "Count Nefaria", + "site_detail_url": "https://comicvine.gamespot.com/count-nefaria/4005-3229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3230/", + "id": 3230, + "name": "Slug", + "site_detail_url": "https://comicvine.gamespot.com/slug/4005-3230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3231/", + "id": 3231, + "name": "Brothers Grimm", + "site_detail_url": "https://comicvine.gamespot.com/brothers-grimm/4005-3231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3232/", + "id": 3232, + "name": "Controller", + "site_detail_url": "https://comicvine.gamespot.com/controller/4005-3232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3233/", + "id": 3233, + "name": "Mr. Hyde", + "site_detail_url": "https://comicvine.gamespot.com/mr-hyde/4005-3233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3234/", + "id": 3234, + "name": "Foolkiller (Everbest)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-everbest/4005-3234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3235/", + "id": 3235, + "name": "Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crusader/4005-3235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3236/", + "id": 3236, + "name": "Cutthroat", + "site_detail_url": "https://comicvine.gamespot.com/cutthroat/4005-3236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3239/", + "id": 3239, + "name": "Scarecrow", + "site_detail_url": "https://comicvine.gamespot.com/scarecrow/4005-3239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3241/", + "id": 3241, + "name": "Heatseeker", + "site_detail_url": "https://comicvine.gamespot.com/heatseeker/4005-3241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3243/", + "id": 3243, + "name": "Network", + "site_detail_url": "https://comicvine.gamespot.com/network/4005-3243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3245/", + "id": 3245, + "name": "Babel", + "site_detail_url": "https://comicvine.gamespot.com/babel/4005-3245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3246/", + "id": 3246, + "name": "Dehman Doosha", + "site_detail_url": "https://comicvine.gamespot.com/dehman-doosha/4005-3246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3247/", + "id": 3247, + "name": "Shivowtnoeh", + "site_detail_url": "https://comicvine.gamespot.com/shivowtnoeh/4005-3247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3248/", + "id": 3248, + "name": "Sillatochca", + "site_detail_url": "https://comicvine.gamespot.com/sillatochca/4005-3248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3249/", + "id": 3249, + "name": "Skybreaker", + "site_detail_url": "https://comicvine.gamespot.com/skybreaker/4005-3249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3251/", + "id": 3251, + "name": "Rodstvow", + "site_detail_url": "https://comicvine.gamespot.com/rodstvow/4005-3251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3255/", + "id": 3255, + "name": "Syphon", + "site_detail_url": "https://comicvine.gamespot.com/syphon/4005-3255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3256/", + "id": 3256, + "name": "Andrew Chaser", + "site_detail_url": "https://comicvine.gamespot.com/andrew-chaser/4005-3256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3257/", + "id": 3257, + "name": "Overtime", + "site_detail_url": "https://comicvine.gamespot.com/overtime/4005-3257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3260/", + "id": 3260, + "name": "Jenny Swensen", + "site_detail_url": "https://comicvine.gamespot.com/jenny-swensen/4005-3260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3261/", + "id": 3261, + "name": "Healer", + "site_detail_url": "https://comicvine.gamespot.com/healer/4005-3261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3262/", + "id": 3262, + "name": "Codename: Spitfire", + "site_detail_url": "https://comicvine.gamespot.com/codename-spitfire/4005-3262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3263/", + "id": 3263, + "name": "Network", + "site_detail_url": "https://comicvine.gamespot.com/network/4005-3263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3264/", + "id": 3264, + "name": "Electrique", + "site_detail_url": "https://comicvine.gamespot.com/electrique/4005-3264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3277/", + "id": 3277, + "name": "Atlas", + "site_detail_url": "https://comicvine.gamespot.com/atlas/4005-3277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3278/", + "id": 3278, + "name": "Baron Helmut Zemo", + "site_detail_url": "https://comicvine.gamespot.com/baron-helmut-zemo/4005-3278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3279/", + "id": 3279, + "name": "Moonstone", + "site_detail_url": "https://comicvine.gamespot.com/moonstone/4005-3279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3281/", + "id": 3281, + "name": "Songbird", + "site_detail_url": "https://comicvine.gamespot.com/songbird/4005-3281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3282/", + "id": 3282, + "name": "Fixer", + "site_detail_url": "https://comicvine.gamespot.com/fixer/4005-3282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3283/", + "id": 3283, + "name": "Blackheath", + "site_detail_url": "https://comicvine.gamespot.com/blackheath/4005-3283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3284/", + "id": 3284, + "name": "Jolt", + "site_detail_url": "https://comicvine.gamespot.com/jolt/4005-3284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3286/", + "id": 3286, + "name": "Cobalt Man", + "site_detail_url": "https://comicvine.gamespot.com/cobalt-man/4005-3286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3287/", + "id": 3287, + "name": "Wizard", + "site_detail_url": "https://comicvine.gamespot.com/wizard/4005-3287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3315/", + "id": 3315, + "name": "Living Lightning", + "site_detail_url": "https://comicvine.gamespot.com/living-lightning/4005-3315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3316/", + "id": 3316, + "name": "Hellcat", + "site_detail_url": "https://comicvine.gamespot.com/hellcat/4005-3316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3318/", + "id": 3318, + "name": "Jocasta", + "site_detail_url": "https://comicvine.gamespot.com/jocasta/4005-3318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3319/", + "id": 3319, + "name": "Quasar", + "site_detail_url": "https://comicvine.gamespot.com/quasar/4005-3319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3320/", + "id": 3320, + "name": "Stingray", + "site_detail_url": "https://comicvine.gamespot.com/stingray/4005-3320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3322/", + "id": 3322, + "name": "3-D Man (Garrett, Jr.)", + "site_detail_url": "https://comicvine.gamespot.com/3-d-man-garrett-jr/4005-3322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3323/", + "id": 3323, + "name": "Firebird", + "site_detail_url": "https://comicvine.gamespot.com/firebird/4005-3323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3324/", + "id": 3324, + "name": "Mantis", + "site_detail_url": "https://comicvine.gamespot.com/mantis/4005-3324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3327/", + "id": 3327, + "name": "Agatha Harkness", + "site_detail_url": "https://comicvine.gamespot.com/agatha-harkness/4005-3327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3365/", + "id": 3365, + "name": "Spider-Girl (Parker)", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-parker/4005-3365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3366/", + "id": 3366, + "name": "Aftershock", + "site_detail_url": "https://comicvine.gamespot.com/aftershock/4005-3366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3368/", + "id": 3368, + "name": "Courtney Duran", + "site_detail_url": "https://comicvine.gamespot.com/courtney-duran/4005-3368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3369/", + "id": 3369, + "name": "Davida Kirby", + "site_detail_url": "https://comicvine.gamespot.com/davida-kirby/4005-3369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3370/", + "id": 3370, + "name": "Mainframe", + "site_detail_url": "https://comicvine.gamespot.com/mainframe/4005-3370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3371/", + "id": 3371, + "name": "American Dream", + "site_detail_url": "https://comicvine.gamespot.com/american-dream/4005-3371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3372/", + "id": 3372, + "name": "Dragon King", + "site_detail_url": "https://comicvine.gamespot.com/dragon-king/4005-3372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3374/", + "id": 3374, + "name": "Moose Mansfield", + "site_detail_url": "https://comicvine.gamespot.com/moose-mansfield/4005-3374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3375/", + "id": 3375, + "name": "Chris Jarkoer", + "site_detail_url": "https://comicvine.gamespot.com/chris-jarkoer/4005-3375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3420/", + "id": 3420, + "name": "Viper", + "site_detail_url": "https://comicvine.gamespot.com/viper/4005-3420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3421/", + "id": 3421, + "name": "Omega Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/omega-sentinel/4005-3421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3422/", + "id": 3422, + "name": "Dark Beast", + "site_detail_url": "https://comicvine.gamespot.com/dark-beast/4005-3422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3423/", + "id": 3423, + "name": "Callisto", + "site_detail_url": "https://comicvine.gamespot.com/callisto/4005-3423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3424/", + "id": 3424, + "name": "Shola Inkosi", + "site_detail_url": "https://comicvine.gamespot.com/shola-inkosi/4005-3424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3425/", + "id": 3425, + "name": "Wicked", + "site_detail_url": "https://comicvine.gamespot.com/wicked/4005-3425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3426/", + "id": 3426, + "name": "Husk", + "site_detail_url": "https://comicvine.gamespot.com/husk/4005-3426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3427/", + "id": 3427, + "name": "Askari The Spear", + "site_detail_url": "https://comicvine.gamespot.com/askari-the-spear/4005-3427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3429/", + "id": 3429, + "name": "Scimitar", + "site_detail_url": "https://comicvine.gamespot.com/scimitar/4005-3429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3430/", + "id": 3430, + "name": "Broadband", + "site_detail_url": "https://comicvine.gamespot.com/broadband/4005-3430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3431/", + "id": 3431, + "name": "Courtney Ross", + "site_detail_url": "https://comicvine.gamespot.com/courtney-ross/4005-3431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3432/", + "id": 3432, + "name": "Hub", + "site_detail_url": "https://comicvine.gamespot.com/hub/4005-3432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3433/", + "id": 3433, + "name": "Purge", + "site_detail_url": "https://comicvine.gamespot.com/purge/4005-3433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3435/", + "id": 3435, + "name": "Sugar Man", + "site_detail_url": "https://comicvine.gamespot.com/sugar-man/4005-3435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3438/", + "id": 3438, + "name": "Unus the Untouchable", + "site_detail_url": "https://comicvine.gamespot.com/unus-the-untouchable/4005-3438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3445/", + "id": 3445, + "name": "Betty Ross", + "site_detail_url": "https://comicvine.gamespot.com/betty-ross/4005-3445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3447/", + "id": 3447, + "name": "Maximus", + "site_detail_url": "https://comicvine.gamespot.com/maximus/4005-3447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3448/", + "id": 3448, + "name": "Falcona", + "site_detail_url": "https://comicvine.gamespot.com/falcona/4005-3448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3449/", + "id": 3449, + "name": "Stallior", + "site_detail_url": "https://comicvine.gamespot.com/stallior/4005-3449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3450/", + "id": 3450, + "name": "Leonus", + "site_detail_url": "https://comicvine.gamespot.com/leonus/4005-3450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3451/", + "id": 3451, + "name": "Timberius", + "site_detail_url": "https://comicvine.gamespot.com/timberius/4005-3451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3457/", + "id": 3457, + "name": "Thunderbolt Ross", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolt-ross/4005-3457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3459/", + "id": 3459, + "name": "Glenn Talbot", + "site_detail_url": "https://comicvine.gamespot.com/glenn-talbot/4005-3459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3466/", + "id": 3466, + "name": "Mogol", + "site_detail_url": "https://comicvine.gamespot.com/mogol/4005-3466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3468/", + "id": 3468, + "name": "Tyrannus", + "site_detail_url": "https://comicvine.gamespot.com/tyrannus/4005-3468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3470/", + "id": 3470, + "name": "Black Goliath", + "site_detail_url": "https://comicvine.gamespot.com/black-goliath/4005-3470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3474/", + "id": 3474, + "name": "Glob", + "site_detail_url": "https://comicvine.gamespot.com/glob/4005-3474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3479/", + "id": 3479, + "name": "Jim Wilson", + "site_detail_url": "https://comicvine.gamespot.com/jim-wilson/4005-3479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3481/", + "id": 3481, + "name": "Social Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/social-butterfly/4005-3481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3483/", + "id": 3483, + "name": "Draxon", + "site_detail_url": "https://comicvine.gamespot.com/draxon/4005-3483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3487/", + "id": 3487, + "name": "Xeron", + "site_detail_url": "https://comicvine.gamespot.com/xeron/4005-3487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3488/", + "id": 3488, + "name": "Klaatu", + "site_detail_url": "https://comicvine.gamespot.com/klaatu/4005-3488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3489/", + "id": 3489, + "name": "Abomination", + "site_detail_url": "https://comicvine.gamespot.com/abomination/4005-3489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3496/", + "id": 3496, + "name": "Dragorr", + "site_detail_url": "https://comicvine.gamespot.com/dragorr/4005-3496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3507/", + "id": 3507, + "name": "Odin", + "site_detail_url": "https://comicvine.gamespot.com/odin/4005-3507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3508/", + "id": 3508, + "name": "Heimdall", + "site_detail_url": "https://comicvine.gamespot.com/heimdall/4005-3508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3511/", + "id": 3511, + "name": "Hogun", + "site_detail_url": "https://comicvine.gamespot.com/hogun/4005-3511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3512/", + "id": 3512, + "name": "Fandral", + "site_detail_url": "https://comicvine.gamespot.com/fandral/4005-3512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3513/", + "id": 3513, + "name": "Volstagg", + "site_detail_url": "https://comicvine.gamespot.com/volstagg/4005-3513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3516/", + "id": 3516, + "name": "The Reaver", + "site_detail_url": "https://comicvine.gamespot.com/the-reaver/4005-3516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3517/", + "id": 3517, + "name": "Executioner", + "site_detail_url": "https://comicvine.gamespot.com/executioner/4005-3517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3518/", + "id": 3518, + "name": "Randau", + "site_detail_url": "https://comicvine.gamespot.com/randau/4005-3518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3526/", + "id": 3526, + "name": "Dum Dum Dugan", + "site_detail_url": "https://comicvine.gamespot.com/dum-dum-dugan/4005-3526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3529/", + "id": 3529, + "name": "Colonel Brevlov", + "site_detail_url": "https://comicvine.gamespot.com/colonel-brevlov/4005-3529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3530/", + "id": 3530, + "name": "Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/mandarin/4005-3530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3534/", + "id": 3534, + "name": "Lockjaw", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw/4005-3534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3535/", + "id": 3535, + "name": "Pixil", + "site_detail_url": "https://comicvine.gamespot.com/pixil/4005-3535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3537/", + "id": 3537, + "name": "Zabu", + "site_detail_url": "https://comicvine.gamespot.com/zabu/4005-3537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3541/", + "id": 3541, + "name": "Umbu", + "site_detail_url": "https://comicvine.gamespot.com/umbu/4005-3541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3544/", + "id": 3544, + "name": "Sandman", + "site_detail_url": "https://comicvine.gamespot.com/sandman/4005-3544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3546/", + "id": 3546, + "name": "Havok", + "site_detail_url": "https://comicvine.gamespot.com/havok/4005-3546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3547/", + "id": 3547, + "name": "Boy", + "site_detail_url": "https://comicvine.gamespot.com/boy/4005-3547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3548/", + "id": 3548, + "name": "Kitty Pryde", + "site_detail_url": "https://comicvine.gamespot.com/kitty-pryde/4005-3548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3552/", + "id": 3552, + "name": "Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey/4005-3552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3553/", + "id": 3553, + "name": "Avalanche", + "site_detail_url": "https://comicvine.gamespot.com/avalanche/4005-3553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3554/", + "id": 3554, + "name": "Pyro", + "site_detail_url": "https://comicvine.gamespot.com/pyro/4005-3554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3555/", + "id": 3555, + "name": "Harry Leland", + "site_detail_url": "https://comicvine.gamespot.com/harry-leland/4005-3555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3556/", + "id": 3556, + "name": "Donald Pierce", + "site_detail_url": "https://comicvine.gamespot.com/donald-pierce/4005-3556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3557/", + "id": 3557, + "name": "Destiny", + "site_detail_url": "https://comicvine.gamespot.com/destiny/4005-3557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3558/", + "id": 3558, + "name": "Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar/4005-3558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3559/", + "id": 3559, + "name": "Brainchild", + "site_detail_url": "https://comicvine.gamespot.com/brainchild/4005-3559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3560/", + "id": 3560, + "name": "X-23", + "site_detail_url": "https://comicvine.gamespot.com/x-23/4005-3560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3561/", + "id": 3561, + "name": "Vertigo", + "site_detail_url": "https://comicvine.gamespot.com/vertigo/4005-3561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3562/", + "id": 3562, + "name": "Lupo", + "site_detail_url": "https://comicvine.gamespot.com/lupo/4005-3562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3563/", + "id": 3563, + "name": "Barbarus", + "site_detail_url": "https://comicvine.gamespot.com/barbarus/4005-3563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3564/", + "id": 3564, + "name": "Gaza", + "site_detail_url": "https://comicvine.gamespot.com/gaza/4005-3564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3565/", + "id": 3565, + "name": "Amphibius", + "site_detail_url": "https://comicvine.gamespot.com/amphibius/4005-3565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3566/", + "id": 3566, + "name": "Rachel Grey", + "site_detail_url": "https://comicvine.gamespot.com/rachel-grey/4005-3566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3567/", + "id": 3567, + "name": "Raina", + "site_detail_url": "https://comicvine.gamespot.com/raina/4005-3567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3568/", + "id": 3568, + "name": "Masano", + "site_detail_url": "https://comicvine.gamespot.com/masano/4005-3568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3569/", + "id": 3569, + "name": "Kaidan", + "site_detail_url": "https://comicvine.gamespot.com/kaidan/4005-3569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3704/", + "id": 3704, + "name": "Omoro", + "site_detail_url": "https://comicvine.gamespot.com/omoro/4005-3704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3705/", + "id": 3705, + "name": "Admiral Jimmy Westbrook", + "site_detail_url": "https://comicvine.gamespot.com/admiral-jimmy-westbrook/4005-3705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3706/", + "id": 3706, + "name": "Major America", + "site_detail_url": "https://comicvine.gamespot.com/major-america/4005-3706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3708/", + "id": 3708, + "name": "Baron Heinrich Zemo", + "site_detail_url": "https://comicvine.gamespot.com/baron-heinrich-zemo/4005-3708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3709/", + "id": 3709, + "name": "M.O.D.O.K.", + "site_detail_url": "https://comicvine.gamespot.com/modok/4005-3709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3710/", + "id": 3710, + "name": "Damocles Rivas", + "site_detail_url": "https://comicvine.gamespot.com/damocles-rivas/4005-3710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3776/", + "id": 3776, + "name": "Dr. Weinberg", + "site_detail_url": "https://comicvine.gamespot.com/dr-weinberg/4005-3776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3777/", + "id": 3777, + "name": "Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/gorgon/4005-3777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3779/", + "id": 3779, + "name": "Harvester", + "site_detail_url": "https://comicvine.gamespot.com/harvester/4005-3779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3780/", + "id": 3780, + "name": "Slyde", + "site_detail_url": "https://comicvine.gamespot.com/slyde/4005-3780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3795/", + "id": 3795, + "name": "Swordsman", + "site_detail_url": "https://comicvine.gamespot.com/swordsman/4005-3795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3797/", + "id": 3797, + "name": "Egghead", + "site_detail_url": "https://comicvine.gamespot.com/egghead/4005-3797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3799/", + "id": 3799, + "name": "Puppet Master", + "site_detail_url": "https://comicvine.gamespot.com/puppet-master/4005-3799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3801/", + "id": 3801, + "name": "Man-Ape", + "site_detail_url": "https://comicvine.gamespot.com/man-ape/4005-3801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3803/", + "id": 3803, + "name": "Ringmaster", + "site_detail_url": "https://comicvine.gamespot.com/ringmaster/4005-3803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3808/", + "id": 3808, + "name": "Nick Crane", + "site_detail_url": "https://comicvine.gamespot.com/nick-crane/4005-3808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3840/", + "id": 3840, + "name": "Belial", + "site_detail_url": "https://comicvine.gamespot.com/belial/4005-3840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3844/", + "id": 3844, + "name": "Armorer", + "site_detail_url": "https://comicvine.gamespot.com/armorer/4005-3844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3875/", + "id": 3875, + "name": "Scion", + "site_detail_url": "https://comicvine.gamespot.com/scion/4005-3875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3897/", + "id": 3897, + "name": "Brian Callahan", + "site_detail_url": "https://comicvine.gamespot.com/brian-callahan/4005-3897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3906/", + "id": 3906, + "name": "Jonathan Mora", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-mora/4005-3906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3908/", + "id": 3908, + "name": "Wolf, Ruler of the Winds", + "site_detail_url": "https://comicvine.gamespot.com/wolf-ruler-of-the-winds/4005-3908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3918/", + "id": 3918, + "name": "Catherine Mora", + "site_detail_url": "https://comicvine.gamespot.com/catherine-mora/4005-3918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3930/", + "id": 3930, + "name": "Stigmata", + "site_detail_url": "https://comicvine.gamespot.com/stigmata/4005-3930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3958/", + "id": 3958, + "name": "Kelly Kooliq", + "site_detail_url": "https://comicvine.gamespot.com/kelly-kooliq/4005-3958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3963/", + "id": 3963, + "name": "Tzadqiel", + "site_detail_url": "https://comicvine.gamespot.com/tzadqiel/4005-3963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4010/", + "id": 4010, + "name": "Dr. Damian", + "site_detail_url": "https://comicvine.gamespot.com/dr-damian/4005-4010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4069/", + "id": 4069, + "name": "Rawhide Kid", + "site_detail_url": "https://comicvine.gamespot.com/rawhide-kid/4005-4069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4075/", + "id": 4075, + "name": "Manuel", + "site_detail_url": "https://comicvine.gamespot.com/manuel/4005-4075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4100/", + "id": 4100, + "name": "Combatra", + "site_detail_url": "https://comicvine.gamespot.com/combatra/4005-4100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4104/", + "id": 4104, + "name": "Raydeen", + "site_detail_url": "https://comicvine.gamespot.com/raydeen/4005-4104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4106/", + "id": 4106, + "name": "Doctor Demonicus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-demonicus/4005-4106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4107/", + "id": 4107, + "name": "Dangard Ace", + "site_detail_url": "https://comicvine.gamespot.com/dangard-ace/4005-4107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4108/", + "id": 4108, + "name": "Demonicus", + "site_detail_url": "https://comicvine.gamespot.com/demonicus/4005-4108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4177/", + "id": 4177, + "name": "Boot", + "site_detail_url": "https://comicvine.gamespot.com/boot/4005-4177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4179/", + "id": 4179, + "name": "Stranger", + "site_detail_url": "https://comicvine.gamespot.com/stranger/4005-4179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4232/", + "id": 4232, + "name": "Helen Gable", + "site_detail_url": "https://comicvine.gamespot.com/helen-gable/4005-4232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4234/", + "id": 4234, + "name": "Rio Morales", + "site_detail_url": "https://comicvine.gamespot.com/rio-morales/4005-4234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4260/", + "id": 4260, + "name": "Temujin", + "site_detail_url": "https://comicvine.gamespot.com/temujin/4005-4260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4261/", + "id": 4261, + "name": "Neil Streich", + "site_detail_url": "https://comicvine.gamespot.com/neil-streich/4005-4261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4262/", + "id": 4262, + "name": "Happy Hogan", + "site_detail_url": "https://comicvine.gamespot.com/happy-hogan/4005-4262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4263/", + "id": 4263, + "name": "Pepper Potts", + "site_detail_url": "https://comicvine.gamespot.com/pepper-potts/4005-4263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4264/", + "id": 4264, + "name": "Rumiko Fujikawa", + "site_detail_url": "https://comicvine.gamespot.com/rumiko-fujikawa/4005-4264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4270/", + "id": 4270, + "name": "Jamie Braddock", + "site_detail_url": "https://comicvine.gamespot.com/jamie-braddock/4005-4270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4279/", + "id": 4279, + "name": "Forge", + "site_detail_url": "https://comicvine.gamespot.com/forge/4005-4279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4280/", + "id": 4280, + "name": "Shortpack", + "site_detail_url": "https://comicvine.gamespot.com/shortpack/4005-4280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4281/", + "id": 4281, + "name": "Fantomex", + "site_detail_url": "https://comicvine.gamespot.com/fantomex/4005-4281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4282/", + "id": 4282, + "name": "Shepard", + "site_detail_url": "https://comicvine.gamespot.com/shepard/4005-4282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4283/", + "id": 4283, + "name": "Johnny Kitano", + "site_detail_url": "https://comicvine.gamespot.com/johnny-kitano/4005-4283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4284/", + "id": 4284, + "name": "Prudence", + "site_detail_url": "https://comicvine.gamespot.com/prudence/4005-4284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4285/", + "id": 4285, + "name": "Richter", + "site_detail_url": "https://comicvine.gamespot.com/richter/4005-4285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4287/", + "id": 4287, + "name": "Helena Carlson", + "site_detail_url": "https://comicvine.gamespot.com/helena-carlson/4005-4287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4288/", + "id": 4288, + "name": "Viktor", + "site_detail_url": "https://comicvine.gamespot.com/viktor/4005-4288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4289/", + "id": 4289, + "name": "Spencer Bronson", + "site_detail_url": "https://comicvine.gamespot.com/spencer-bronson/4005-4289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4290/", + "id": 4290, + "name": "Brimer", + "site_detail_url": "https://comicvine.gamespot.com/brimer/4005-4290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4291/", + "id": 4291, + "name": "The Host", + "site_detail_url": "https://comicvine.gamespot.com/the-host/4005-4291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4295/", + "id": 4295, + "name": "Lazaro Rivera", + "site_detail_url": "https://comicvine.gamespot.com/lazaro-rivera/4005-4295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4297/", + "id": 4297, + "name": "Evangelina Rivera", + "site_detail_url": "https://comicvine.gamespot.com/evangelina-rivera/4005-4297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4298/", + "id": 4298, + "name": "General Luis Diosvl", + "site_detail_url": "https://comicvine.gamespot.com/general-luis-diosvl/4005-4298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4299/", + "id": 4299, + "name": "Steinbeck", + "site_detail_url": "https://comicvine.gamespot.com/steinbeck/4005-4299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4303/", + "id": 4303, + "name": "Doctor Sun", + "site_detail_url": "https://comicvine.gamespot.com/doctor-sun/4005-4303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4304/", + "id": 4304, + "name": "Comet", + "site_detail_url": "https://comicvine.gamespot.com/comet/4005-4304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4305/", + "id": 4305, + "name": "Crime-Buster", + "site_detail_url": "https://comicvine.gamespot.com/crime-buster/4005-4305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4315/", + "id": 4315, + "name": "Doc Samson", + "site_detail_url": "https://comicvine.gamespot.com/doc-samson/4005-4315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4316/", + "id": 4316, + "name": "Trina Sharp", + "site_detail_url": "https://comicvine.gamespot.com/trina-sharp/4005-4316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4317/", + "id": 4317, + "name": "Rudy Pinkerton", + "site_detail_url": "https://comicvine.gamespot.com/rudy-pinkerton/4005-4317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4324/", + "id": 4324, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4005-4324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4325/", + "id": 4325, + "name": "Queen Knorda", + "site_detail_url": "https://comicvine.gamespot.com/queen-knorda/4005-4325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4326/", + "id": 4326, + "name": "Ebony", + "site_detail_url": "https://comicvine.gamespot.com/ebony/4005-4326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4327/", + "id": 4327, + "name": "Medusa", + "site_detail_url": "https://comicvine.gamespot.com/medusa/4005-4327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4328/", + "id": 4328, + "name": "Trapster", + "site_detail_url": "https://comicvine.gamespot.com/trapster/4005-4328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4329/", + "id": 4329, + "name": "Black Bolt", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt/4005-4329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4330/", + "id": 4330, + "name": "Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/gorgon/4005-4330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4331/", + "id": 4331, + "name": "Lester", + "site_detail_url": "https://comicvine.gamespot.com/lester/4005-4331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4333/", + "id": 4333, + "name": "Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/mysterio/4005-4333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4336/", + "id": 4336, + "name": "Zane Whelan", + "site_detail_url": "https://comicvine.gamespot.com/zane-whelan/4005-4336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4337/", + "id": 4337, + "name": "Alicia Masters", + "site_detail_url": "https://comicvine.gamespot.com/alicia-masters/4005-4337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4342/", + "id": 4342, + "name": "Hela", + "site_detail_url": "https://comicvine.gamespot.com/hela/4005-4342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4344/", + "id": 4344, + "name": "Joseph Hauer", + "site_detail_url": "https://comicvine.gamespot.com/joseph-hauer/4005-4344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4345/", + "id": 4345, + "name": "Harbinger Of Everlasting Winter", + "site_detail_url": "https://comicvine.gamespot.com/harbinger-of-everlasting-winter/4005-4345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4390/", + "id": 4390, + "name": "Behemoth Jack", + "site_detail_url": "https://comicvine.gamespot.com/behemoth-jack/4005-4390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4399/", + "id": 4399, + "name": "Frank Drake", + "site_detail_url": "https://comicvine.gamespot.com/frank-drake/4005-4399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4400/", + "id": 4400, + "name": "Rachel van Helsing", + "site_detail_url": "https://comicvine.gamespot.com/rachel-van-helsing/4005-4400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4407/", + "id": 4407, + "name": "Sydney Taine", + "site_detail_url": "https://comicvine.gamespot.com/sydney-taine/4005-4407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4408/", + "id": 4408, + "name": "Ape Largo", + "site_detail_url": "https://comicvine.gamespot.com/ape-largo/4005-4408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4409/", + "id": 4409, + "name": "Marie Dread", + "site_detail_url": "https://comicvine.gamespot.com/marie-dread/4005-4409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4410/", + "id": 4410, + "name": "Nomura", + "site_detail_url": "https://comicvine.gamespot.com/nomura/4005-4410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4411/", + "id": 4411, + "name": "Arkady Dread", + "site_detail_url": "https://comicvine.gamespot.com/arkady-dread/4005-4411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4412/", + "id": 4412, + "name": "Princess Akiuki Orugawa", + "site_detail_url": "https://comicvine.gamespot.com/princess-akiuki-orugawa/4005-4412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4413/", + "id": 4413, + "name": "Simon Benedict", + "site_detail_url": "https://comicvine.gamespot.com/simon-benedict/4005-4413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4415/", + "id": 4415, + "name": "Karis", + "site_detail_url": "https://comicvine.gamespot.com/karis/4005-4415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4416/", + "id": 4416, + "name": "Osatu", + "site_detail_url": "https://comicvine.gamespot.com/osatu/4005-4416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4417/", + "id": 4417, + "name": "Bruno", + "site_detail_url": "https://comicvine.gamespot.com/bruno/4005-4417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4418/", + "id": 4418, + "name": "Obnoxio the Clown", + "site_detail_url": "https://comicvine.gamespot.com/obnoxio-the-clown/4005-4418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4423/", + "id": 4423, + "name": "Gorgeous George", + "site_detail_url": "https://comicvine.gamespot.com/gorgeous-george/4005-4423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4425/", + "id": 4425, + "name": "Teen-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/teen-hulk/4005-4425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4426/", + "id": 4426, + "name": "Nebbish", + "site_detail_url": "https://comicvine.gamespot.com/nebbish/4005-4426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4428/", + "id": 4428, + "name": "Little Bertha", + "site_detail_url": "https://comicvine.gamespot.com/little-bertha/4005-4428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4429/", + "id": 4429, + "name": "Kyle Hatcher", + "site_detail_url": "https://comicvine.gamespot.com/kyle-hatcher/4005-4429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4430/", + "id": 4430, + "name": "Christine Hatcher", + "site_detail_url": "https://comicvine.gamespot.com/christine-hatcher/4005-4430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4431/", + "id": 4431, + "name": "Brad Hatcher", + "site_detail_url": "https://comicvine.gamespot.com/brad-hatcher/4005-4431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4432/", + "id": 4432, + "name": "Margie White", + "site_detail_url": "https://comicvine.gamespot.com/margie-white/4005-4432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4433/", + "id": 4433, + "name": "Shredder", + "site_detail_url": "https://comicvine.gamespot.com/shredder/4005-4433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4434/", + "id": 4434, + "name": "Whitie", + "site_detail_url": "https://comicvine.gamespot.com/whitie/4005-4434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4435/", + "id": 4435, + "name": "Sid", + "site_detail_url": "https://comicvine.gamespot.com/sid/4005-4435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4441/", + "id": 4441, + "name": "Abigail Brand", + "site_detail_url": "https://comicvine.gamespot.com/abigail-brand/4005-4441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4442/", + "id": 4442, + "name": "Armor", + "site_detail_url": "https://comicvine.gamespot.com/armor/4005-4442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4444/", + "id": 4444, + "name": "Lockheed", + "site_detail_url": "https://comicvine.gamespot.com/lockheed/4005-4444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4445/", + "id": 4445, + "name": "Ord", + "site_detail_url": "https://comicvine.gamespot.com/ord/4005-4445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4446/", + "id": 4446, + "name": "Dr. Kavita Rao", + "site_detail_url": "https://comicvine.gamespot.com/dr-kavita-rao/4005-4446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4448/", + "id": 4448, + "name": "Firefly", + "site_detail_url": "https://comicvine.gamespot.com/firefly/4005-4448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4456/", + "id": 4456, + "name": "John Jameson", + "site_detail_url": "https://comicvine.gamespot.com/john-jameson/4005-4456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4457/", + "id": 4457, + "name": "Hydro-Man", + "site_detail_url": "https://comicvine.gamespot.com/hydro-man/4005-4457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4458/", + "id": 4458, + "name": "Chameleon", + "site_detail_url": "https://comicvine.gamespot.com/chameleon/4005-4458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4459/", + "id": 4459, + "name": "Vulture", + "site_detail_url": "https://comicvine.gamespot.com/vulture/4005-4459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4463/", + "id": 4463, + "name": "Janis Jones", + "site_detail_url": "https://comicvine.gamespot.com/janis-jones/4005-4463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4464/", + "id": 4464, + "name": "Betty-6", + "site_detail_url": "https://comicvine.gamespot.com/betty-6/4005-4464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4466/", + "id": 4466, + "name": "Sleek", + "site_detail_url": "https://comicvine.gamespot.com/sleek/4005-4466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4467/", + "id": 4467, + "name": "Unit", + "site_detail_url": "https://comicvine.gamespot.com/unit/4005-4467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4468/", + "id": 4468, + "name": "Captain Agarn", + "site_detail_url": "https://comicvine.gamespot.com/captain-agarn/4005-4468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4469/", + "id": 4469, + "name": "Char", + "site_detail_url": "https://comicvine.gamespot.com/char/4005-4469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4470/", + "id": 4470, + "name": "Mok The War Dog", + "site_detail_url": "https://comicvine.gamespot.com/mok-the-war-dog/4005-4470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4471/", + "id": 4471, + "name": "Librito", + "site_detail_url": "https://comicvine.gamespot.com/librito/4005-4471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4472/", + "id": 4472, + "name": "Cyberslik", + "site_detail_url": "https://comicvine.gamespot.com/cyberslik/4005-4472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4473/", + "id": 4473, + "name": "Kaspin", + "site_detail_url": "https://comicvine.gamespot.com/kaspin/4005-4473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4474/", + "id": 4474, + "name": "Quarry", + "site_detail_url": "https://comicvine.gamespot.com/quarry/4005-4474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4475/", + "id": 4475, + "name": "Preecha", + "site_detail_url": "https://comicvine.gamespot.com/preecha/4005-4475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4478/", + "id": 4478, + "name": "William Watts", + "site_detail_url": "https://comicvine.gamespot.com/william-watts/4005-4478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4484/", + "id": 4484, + "name": "Scorpion", + "site_detail_url": "https://comicvine.gamespot.com/scorpion/4005-4484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4486/", + "id": 4486, + "name": "Karen Page", + "site_detail_url": "https://comicvine.gamespot.com/karen-page/4005-4486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4548/", + "id": 4548, + "name": "Professor Veronica", + "site_detail_url": "https://comicvine.gamespot.com/professor-veronica/4005-4548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4552/", + "id": 4552, + "name": "Elixir", + "site_detail_url": "https://comicvine.gamespot.com/elixir/4005-4552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4553/", + "id": 4553, + "name": "Diana Dunn", + "site_detail_url": "https://comicvine.gamespot.com/diana-dunn/4005-4553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4554/", + "id": 4554, + "name": "Tailhook", + "site_detail_url": "https://comicvine.gamespot.com/tailhook/4005-4554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4555/", + "id": 4555, + "name": "Dust", + "site_detail_url": "https://comicvine.gamespot.com/dust/4005-4555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4556/", + "id": 4556, + "name": "Lila Cheney", + "site_detail_url": "https://comicvine.gamespot.com/lila-cheney/4005-4556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4557/", + "id": 4557, + "name": "Wolfsbane", + "site_detail_url": "https://comicvine.gamespot.com/wolfsbane/4005-4557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4558/", + "id": 4558, + "name": "Magma", + "site_detail_url": "https://comicvine.gamespot.com/magma/4005-4558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4559/", + "id": 4559, + "name": "Sage", + "site_detail_url": "https://comicvine.gamespot.com/sage/4005-4559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4560/", + "id": 4560, + "name": "John Grey", + "site_detail_url": "https://comicvine.gamespot.com/john-grey/4005-4560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4561/", + "id": 4561, + "name": "Elaine Grey", + "site_detail_url": "https://comicvine.gamespot.com/elaine-grey/4005-4561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4562/", + "id": 4562, + "name": "Jubilee", + "site_detail_url": "https://comicvine.gamespot.com/jubilee/4005-4562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4563/", + "id": 4563, + "name": "Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth/4005-4563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4564/", + "id": 4564, + "name": "Annie Ghazikhanian", + "site_detail_url": "https://comicvine.gamespot.com/annie-ghazikhanian/4005-4564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4565/", + "id": 4565, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-4565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4566/", + "id": 4566, + "name": "Carter Ghazikhanian", + "site_detail_url": "https://comicvine.gamespot.com/carter-ghazikhanian/4005-4566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4567/", + "id": 4567, + "name": "Exodus", + "site_detail_url": "https://comicvine.gamespot.com/exodus/4005-4567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4568/", + "id": 4568, + "name": "Black Tom Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/black-tom-cassidy/4005-4568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4569/", + "id": 4569, + "name": "Mammomax", + "site_detail_url": "https://comicvine.gamespot.com/mammomax/4005-4569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4570/", + "id": 4570, + "name": "Homebrew", + "site_detail_url": "https://comicvine.gamespot.com/homebrew/4005-4570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4572/", + "id": 4572, + "name": "Squid-Boy", + "site_detail_url": "https://comicvine.gamespot.com/squid-boy/4005-4572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4578/", + "id": 4578, + "name": "Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster/4005-4578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4579/", + "id": 4579, + "name": "Shanna", + "site_detail_url": "https://comicvine.gamespot.com/shanna/4005-4579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4580/", + "id": 4580, + "name": "Doc", + "site_detail_url": "https://comicvine.gamespot.com/doc/4005-4580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4635/", + "id": 4635, + "name": "Thermal", + "site_detail_url": "https://comicvine.gamespot.com/thermal/4005-4635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4643/", + "id": 4643, + "name": "Vargas", + "site_detail_url": "https://comicvine.gamespot.com/vargas/4005-4643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4644/", + "id": 4644, + "name": "Sunspot", + "site_detail_url": "https://comicvine.gamespot.com/sunspot/4005-4644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4646/", + "id": 4646, + "name": "Gateway", + "site_detail_url": "https://comicvine.gamespot.com/gateway/4005-4646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4647/", + "id": 4647, + "name": "Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/bullseye/4005-4647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4648/", + "id": 4648, + "name": "Special Agent Scott Hoskins", + "site_detail_url": "https://comicvine.gamespot.com/special-agent-scott-hoskins/4005-4648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4649/", + "id": 4649, + "name": "Special Agent Marcus Baldry", + "site_detail_url": "https://comicvine.gamespot.com/special-agent-marcus-baldry/4005-4649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4650/", + "id": 4650, + "name": "Agent Horace", + "site_detail_url": "https://comicvine.gamespot.com/agent-horace/4005-4650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4651/", + "id": 4651, + "name": "Agent Philip", + "site_detail_url": "https://comicvine.gamespot.com/agent-philip/4005-4651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4652/", + "id": 4652, + "name": "The Warden", + "site_detail_url": "https://comicvine.gamespot.com/the-warden/4005-4652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4653/", + "id": 4653, + "name": "Gladiator", + "site_detail_url": "https://comicvine.gamespot.com/gladiator/4005-4653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4655/", + "id": 4655, + "name": "Alexander Bont", + "site_detail_url": "https://comicvine.gamespot.com/alexander-bont/4005-4655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4657/", + "id": 4657, + "name": "John Howlett", + "site_detail_url": "https://comicvine.gamespot.com/john-howlett/4005-4657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4659/", + "id": 4659, + "name": "The Ratpack", + "site_detail_url": "https://comicvine.gamespot.com/the-ratpack/4005-4659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4661/", + "id": 4661, + "name": "Elisbeth Von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/elisbeth-von-strucker/4005-4661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4662/", + "id": 4662, + "name": "Baron von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/baron-von-strucker/4005-4662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4673/", + "id": 4673, + "name": "Ooru", + "site_detail_url": "https://comicvine.gamespot.com/ooru/4005-4673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4683/", + "id": 4683, + "name": "Skinwalker", + "site_detail_url": "https://comicvine.gamespot.com/skinwalker/4005-4683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4737/", + "id": 4737, + "name": "Gonzago", + "site_detail_url": "https://comicvine.gamespot.com/gonzago/4005-4737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4799/", + "id": 4799, + "name": "Ben Urich", + "site_detail_url": "https://comicvine.gamespot.com/ben-urich/4005-4799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4803/", + "id": 4803, + "name": "Hornet", + "site_detail_url": "https://comicvine.gamespot.com/hornet/4005-4803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4804/", + "id": 4804, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/prodigy/4005-4804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4805/", + "id": 4805, + "name": "Dusk", + "site_detail_url": "https://comicvine.gamespot.com/dusk/4005-4805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4807/", + "id": 4807, + "name": "Radioactive Man", + "site_detail_url": "https://comicvine.gamespot.com/radioactive-man/4005-4807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4808/", + "id": 4808, + "name": "Blizzard", + "site_detail_url": "https://comicvine.gamespot.com/blizzard/4005-4808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4809/", + "id": 4809, + "name": "Joystick", + "site_detail_url": "https://comicvine.gamespot.com/joystick/4005-4809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4811/", + "id": 4811, + "name": "Justice", + "site_detail_url": "https://comicvine.gamespot.com/justice/4005-4811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4812/", + "id": 4812, + "name": "Overmind", + "site_detail_url": "https://comicvine.gamespot.com/overmind/4005-4812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4813/", + "id": 4813, + "name": "Genis-Vell", + "site_detail_url": "https://comicvine.gamespot.com/genis-vell/4005-4813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4814/", + "id": 4814, + "name": "Andrea von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/andrea-von-strucker/4005-4814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4815/", + "id": 4815, + "name": "Andreas von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/andreas-von-strucker/4005-4815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4816/", + "id": 4816, + "name": "Flashback", + "site_detail_url": "https://comicvine.gamespot.com/flashback/4005-4816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4818/", + "id": 4818, + "name": "Ronan", + "site_detail_url": "https://comicvine.gamespot.com/ronan/4005-4818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4819/", + "id": 4819, + "name": "Bonehead", + "site_detail_url": "https://comicvine.gamespot.com/bonehead/4005-4819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4820/", + "id": 4820, + "name": "The Ghost of Springdale Hill", + "site_detail_url": "https://comicvine.gamespot.com/the-ghost-of-springdale-hill/4005-4820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4822/", + "id": 4822, + "name": "Abe Jenkins", + "site_detail_url": "https://comicvine.gamespot.com/abe-jenkins/4005-4822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4824/", + "id": 4824, + "name": "Tamara Rahn", + "site_detail_url": "https://comicvine.gamespot.com/tamara-rahn/4005-4824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4825/", + "id": 4825, + "name": "Shocker", + "site_detail_url": "https://comicvine.gamespot.com/shocker/4005-4825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4826/", + "id": 4826, + "name": "Dallas Riordan", + "site_detail_url": "https://comicvine.gamespot.com/dallas-riordan/4005-4826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4827/", + "id": 4827, + "name": "Brie Larmer", + "site_detail_url": "https://comicvine.gamespot.com/brie-larmer/4005-4827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4828/", + "id": 4828, + "name": "Dennis Schoolcroft", + "site_detail_url": "https://comicvine.gamespot.com/dennis-schoolcroft/4005-4828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4829/", + "id": 4829, + "name": "Conobar", + "site_detail_url": "https://comicvine.gamespot.com/conobar/4005-4829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4830/", + "id": 4830, + "name": "Kobe", + "site_detail_url": "https://comicvine.gamespot.com/kobe/4005-4830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4832/", + "id": 4832, + "name": "Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/nighthawk/4005-4832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4833/", + "id": 4833, + "name": "Manowar", + "site_detail_url": "https://comicvine.gamespot.com/manowar/4005-4833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4834/", + "id": 4834, + "name": "Sea Leopard", + "site_detail_url": "https://comicvine.gamespot.com/sea-leopard/4005-4834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4835/", + "id": 4835, + "name": "Bloodtide", + "site_detail_url": "https://comicvine.gamespot.com/bloodtide/4005-4835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4836/", + "id": 4836, + "name": "Beetle (Lincoln)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-lincoln/4005-4836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4838/", + "id": 4838, + "name": "Llyron", + "site_detail_url": "https://comicvine.gamespot.com/llyron/4005-4838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4839/", + "id": 4839, + "name": "Nagala", + "site_detail_url": "https://comicvine.gamespot.com/nagala/4005-4839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4841/", + "id": 4841, + "name": "Polestar", + "site_detail_url": "https://comicvine.gamespot.com/polestar/4005-4841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4842/", + "id": 4842, + "name": "Tremolo", + "site_detail_url": "https://comicvine.gamespot.com/tremolo/4005-4842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4843/", + "id": 4843, + "name": "Dragonrider", + "site_detail_url": "https://comicvine.gamespot.com/dragonrider/4005-4843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4943/", + "id": 4943, + "name": "Titania", + "site_detail_url": "https://comicvine.gamespot.com/titania/4005-4943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4944/", + "id": 4944, + "name": "Awesome Android", + "site_detail_url": "https://comicvine.gamespot.com/awesome-android/4005-4944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4945/", + "id": 4945, + "name": "Southpaw", + "site_detail_url": "https://comicvine.gamespot.com/southpaw/4005-4945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4946/", + "id": 4946, + "name": "Ditto", + "site_detail_url": "https://comicvine.gamespot.com/ditto/4005-4946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4947/", + "id": 4947, + "name": "Augustus Pugliese", + "site_detail_url": "https://comicvine.gamespot.com/augustus-pugliese/4005-4947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4948/", + "id": 4948, + "name": "Holden Holliway", + "site_detail_url": "https://comicvine.gamespot.com/holden-holliway/4005-4948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4949/", + "id": 4949, + "name": "Mallory Book", + "site_detail_url": "https://comicvine.gamespot.com/mallory-book/4005-4949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4950/", + "id": 4950, + "name": "Stu Cicero", + "site_detail_url": "https://comicvine.gamespot.com/stu-cicero/4005-4950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4952/", + "id": 4952, + "name": "Challenger", + "site_detail_url": "https://comicvine.gamespot.com/challenger/4005-4952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4953/", + "id": 4953, + "name": "Whiz Kid", + "site_detail_url": "https://comicvine.gamespot.com/whiz-kid/4005-4953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4954/", + "id": 4954, + "name": "Zig-Zag", + "site_detail_url": "https://comicvine.gamespot.com/zig-zag/4005-4954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4955/", + "id": 4955, + "name": "Momenta", + "site_detail_url": "https://comicvine.gamespot.com/momenta/4005-4955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4984/", + "id": 4984, + "name": "Werewolf By Night", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night/4005-4984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4985/", + "id": 4985, + "name": "Skarrzz", + "site_detail_url": "https://comicvine.gamespot.com/skarrzz/4005-4985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4986/", + "id": 4986, + "name": "Killreach", + "site_detail_url": "https://comicvine.gamespot.com/killreach/4005-4986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4988/", + "id": 4988, + "name": "Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/man-thing/4005-4988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4991/", + "id": 4991, + "name": "Yeti-Man", + "site_detail_url": "https://comicvine.gamespot.com/yeti-man/4005-4991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4992/", + "id": 4992, + "name": "Amiko Kobayashi", + "site_detail_url": "https://comicvine.gamespot.com/amiko-kobayashi/4005-4992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4994/", + "id": 4994, + "name": "Freakshow", + "site_detail_url": "https://comicvine.gamespot.com/freakshow/4005-4994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4995/", + "id": 4995, + "name": "Hack", + "site_detail_url": "https://comicvine.gamespot.com/hack/4005-4995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4996/", + "id": 4996, + "name": "Stripmine", + "site_detail_url": "https://comicvine.gamespot.com/stripmine/4005-4996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4997/", + "id": 4997, + "name": "Appraiser", + "site_detail_url": "https://comicvine.gamespot.com/appraiser/4005-4997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4998/", + "id": 4998, + "name": "Book", + "site_detail_url": "https://comicvine.gamespot.com/book/4005-4998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5001/", + "id": 5001, + "name": "Sabra", + "site_detail_url": "https://comicvine.gamespot.com/sabra/4005-5001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5002/", + "id": 5002, + "name": "Lifeguard", + "site_detail_url": "https://comicvine.gamespot.com/lifeguard/4005-5002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5003/", + "id": 5003, + "name": "Thunderbird (Shaara)", + "site_detail_url": "https://comicvine.gamespot.com/thunderbird-shaara/4005-5003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5009/", + "id": 5009, + "name": "Heather McNeil Hudson", + "site_detail_url": "https://comicvine.gamespot.com/heather-mcneil-hudson/4005-5009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5010/", + "id": 5010, + "name": "Puck", + "site_detail_url": "https://comicvine.gamespot.com/puck/4005-5010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5011/", + "id": 5011, + "name": "Murmur", + "site_detail_url": "https://comicvine.gamespot.com/murmur/4005-5011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5012/", + "id": 5012, + "name": "Radius", + "site_detail_url": "https://comicvine.gamespot.com/radius/4005-5012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5013/", + "id": 5013, + "name": "Flex", + "site_detail_url": "https://comicvine.gamespot.com/flex/4005-5013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5014/", + "id": 5014, + "name": "Ghost Girl", + "site_detail_url": "https://comicvine.gamespot.com/ghost-girl/4005-5014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5015/", + "id": 5015, + "name": "Mr Gentry", + "site_detail_url": "https://comicvine.gamespot.com/mr-gentry/4005-5015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5016/", + "id": 5016, + "name": "Dr Huxley", + "site_detail_url": "https://comicvine.gamespot.com/dr-huxley/4005-5016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5017/", + "id": 5017, + "name": "Shaman", + "site_detail_url": "https://comicvine.gamespot.com/shaman/4005-5017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5021/", + "id": 5021, + "name": "Diamond Lil", + "site_detail_url": "https://comicvine.gamespot.com/diamond-lil/4005-5021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5022/", + "id": 5022, + "name": "Hiro", + "site_detail_url": "https://comicvine.gamespot.com/hiro/4005-5022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5023/", + "id": 5023, + "name": "Baymax", + "site_detail_url": "https://comicvine.gamespot.com/baymax/4005-5023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5024/", + "id": 5024, + "name": "Honey Lemon", + "site_detail_url": "https://comicvine.gamespot.com/honey-lemon/4005-5024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5027/", + "id": 5027, + "name": "Brass Bishop", + "site_detail_url": "https://comicvine.gamespot.com/brass-bishop/4005-5027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5028/", + "id": 5028, + "name": "Dargil", + "site_detail_url": "https://comicvine.gamespot.com/dargil/4005-5028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5035/", + "id": 5035, + "name": "Basil Kilgrew", + "site_detail_url": "https://comicvine.gamespot.com/basil-kilgrew/4005-5035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5037/", + "id": 5037, + "name": "Virgo", + "site_detail_url": "https://comicvine.gamespot.com/virgo/4005-5037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5038/", + "id": 5038, + "name": "Aries", + "site_detail_url": "https://comicvine.gamespot.com/aries/4005-5038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5039/", + "id": 5039, + "name": "Taurus", + "site_detail_url": "https://comicvine.gamespot.com/taurus/4005-5039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5040/", + "id": 5040, + "name": "Capricorn", + "site_detail_url": "https://comicvine.gamespot.com/capricorn/4005-5040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5041/", + "id": 5041, + "name": "Leo", + "site_detail_url": "https://comicvine.gamespot.com/leo/4005-5041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5042/", + "id": 5042, + "name": "Pisces", + "site_detail_url": "https://comicvine.gamespot.com/pisces/4005-5042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5043/", + "id": 5043, + "name": "Aquarius", + "site_detail_url": "https://comicvine.gamespot.com/aquarius/4005-5043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5044/", + "id": 5044, + "name": "Libra", + "site_detail_url": "https://comicvine.gamespot.com/libra/4005-5044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5045/", + "id": 5045, + "name": "Sagittarius", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius/4005-5045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5047/", + "id": 5047, + "name": "Guardian", + "site_detail_url": "https://comicvine.gamespot.com/guardian/4005-5047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5049/", + "id": 5049, + "name": "Bug", + "site_detail_url": "https://comicvine.gamespot.com/bug/4005-5049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5050/", + "id": 5050, + "name": "Baron Zebek", + "site_detail_url": "https://comicvine.gamespot.com/baron-zebek/4005-5050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5055/", + "id": 5055, + "name": "Manbot", + "site_detail_url": "https://comicvine.gamespot.com/manbot/4005-5055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5056/", + "id": 5056, + "name": "Ghost Girl", + "site_detail_url": "https://comicvine.gamespot.com/ghost-girl/4005-5056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5057/", + "id": 5057, + "name": "General Clarke", + "site_detail_url": "https://comicvine.gamespot.com/general-clarke/4005-5057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5063/", + "id": 5063, + "name": "Dr. Myra Haddock", + "site_detail_url": "https://comicvine.gamespot.com/dr-myra-haddock/4005-5063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5065/", + "id": 5065, + "name": "Mesmero", + "site_detail_url": "https://comicvine.gamespot.com/mesmero/4005-5065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5066/", + "id": 5066, + "name": "Miss DeLaSalle", + "site_detail_url": "https://comicvine.gamespot.com/miss-delasalle/4005-5066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5067/", + "id": 5067, + "name": "Coordinator Proctor", + "site_detail_url": "https://comicvine.gamespot.com/coordinator-proctor/4005-5067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5069/", + "id": 5069, + "name": "Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/gauntlet/4005-5069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5071/", + "id": 5071, + "name": "Dr Ko Bin Su", + "site_detail_url": "https://comicvine.gamespot.com/dr-ko-bin-su/4005-5071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5072/", + "id": 5072, + "name": "Chinook", + "site_detail_url": "https://comicvine.gamespot.com/chinook/4005-5072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5073/", + "id": 5073, + "name": "Director X", + "site_detail_url": "https://comicvine.gamespot.com/director-x/4005-5073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5076/", + "id": 5076, + "name": "Jake Fury", + "site_detail_url": "https://comicvine.gamespot.com/jake-fury/4005-5076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5077/", + "id": 5077, + "name": "Ecliptic", + "site_detail_url": "https://comicvine.gamespot.com/ecliptic/4005-5077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5079/", + "id": 5079, + "name": "Moru", + "site_detail_url": "https://comicvine.gamespot.com/moru/4005-5079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5080/", + "id": 5080, + "name": "Welyn", + "site_detail_url": "https://comicvine.gamespot.com/welyn/4005-5080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5081/", + "id": 5081, + "name": "Shimata-Kawai", + "site_detail_url": "https://comicvine.gamespot.com/shimata-kawai/4005-5081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5082/", + "id": 5082, + "name": "Ixastophanis", + "site_detail_url": "https://comicvine.gamespot.com/ixastophanis/4005-5082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5083/", + "id": 5083, + "name": "Andamo", + "site_detail_url": "https://comicvine.gamespot.com/andamo/4005-5083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5084/", + "id": 5084, + "name": "Patriarch", + "site_detail_url": "https://comicvine.gamespot.com/patriarch/4005-5084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5085/", + "id": 5085, + "name": "Tolometh", + "site_detail_url": "https://comicvine.gamespot.com/tolometh/4005-5085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5086/", + "id": 5086, + "name": "Daedikaron", + "site_detail_url": "https://comicvine.gamespot.com/daedikaron/4005-5086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5087/", + "id": 5087, + "name": "Tros", + "site_detail_url": "https://comicvine.gamespot.com/tros/4005-5087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5089/", + "id": 5089, + "name": "Queen Isadona", + "site_detail_url": "https://comicvine.gamespot.com/queen-isadona/4005-5089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5090/", + "id": 5090, + "name": "Skalla", + "site_detail_url": "https://comicvine.gamespot.com/skalla/4005-5090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5091/", + "id": 5091, + "name": "Ahirn", + "site_detail_url": "https://comicvine.gamespot.com/ahirn/4005-5091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5092/", + "id": 5092, + "name": "Hylda", + "site_detail_url": "https://comicvine.gamespot.com/hylda/4005-5092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5093/", + "id": 5093, + "name": "Gudrun", + "site_detail_url": "https://comicvine.gamespot.com/gudrun/4005-5093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5094/", + "id": 5094, + "name": "Moina", + "site_detail_url": "https://comicvine.gamespot.com/moina/4005-5094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5096/", + "id": 5096, + "name": "Queen Bryn", + "site_detail_url": "https://comicvine.gamespot.com/queen-bryn/4005-5096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5097/", + "id": 5097, + "name": "Mab", + "site_detail_url": "https://comicvine.gamespot.com/mab/4005-5097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5098/", + "id": 5098, + "name": "Madoc", + "site_detail_url": "https://comicvine.gamespot.com/madoc/4005-5098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5099/", + "id": 5099, + "name": "Breygen", + "site_detail_url": "https://comicvine.gamespot.com/breygen/4005-5099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5100/", + "id": 5100, + "name": "Korren", + "site_detail_url": "https://comicvine.gamespot.com/korren/4005-5100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5101/", + "id": 5101, + "name": "Sudra", + "site_detail_url": "https://comicvine.gamespot.com/sudra/4005-5101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5103/", + "id": 5103, + "name": "Rowena", + "site_detail_url": "https://comicvine.gamespot.com/rowena/4005-5103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5104/", + "id": 5104, + "name": "Ragallo", + "site_detail_url": "https://comicvine.gamespot.com/ragallo/4005-5104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5107/", + "id": 5107, + "name": "Smeag", + "site_detail_url": "https://comicvine.gamespot.com/smeag/4005-5107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5112/", + "id": 5112, + "name": "Emandax", + "site_detail_url": "https://comicvine.gamespot.com/emandax/4005-5112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5113/", + "id": 5113, + "name": "Ofira", + "site_detail_url": "https://comicvine.gamespot.com/ofira/4005-5113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5114/", + "id": 5114, + "name": "Ragmar", + "site_detail_url": "https://comicvine.gamespot.com/ragmar/4005-5114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5115/", + "id": 5115, + "name": "Sen-dor", + "site_detail_url": "https://comicvine.gamespot.com/sen-dor/4005-5115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5157/", + "id": 5157, + "name": "Nicolai Kutzov", + "site_detail_url": "https://comicvine.gamespot.com/nicolai-kutzov/4005-5157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5165/", + "id": 5165, + "name": "Zxaxz", + "site_detail_url": "https://comicvine.gamespot.com/zxaxz/4005-5165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5169/", + "id": 5169, + "name": "Karadoc", + "site_detail_url": "https://comicvine.gamespot.com/karadoc/4005-5169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5170/", + "id": 5170, + "name": "Gafael", + "site_detail_url": "https://comicvine.gamespot.com/gafael/4005-5170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5171/", + "id": 5171, + "name": "Maegog", + "site_detail_url": "https://comicvine.gamespot.com/maegog/4005-5171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5173/", + "id": 5173, + "name": "Gargantua", + "site_detail_url": "https://comicvine.gamespot.com/gargantua/4005-5173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5175/", + "id": 5175, + "name": "Bugman", + "site_detail_url": "https://comicvine.gamespot.com/bugman/4005-5175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5176/", + "id": 5176, + "name": "Daniel Kaufman", + "site_detail_url": "https://comicvine.gamespot.com/daniel-kaufman/4005-5176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5177/", + "id": 5177, + "name": "Frank Zapruder", + "site_detail_url": "https://comicvine.gamespot.com/frank-zapruder/4005-5177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5178/", + "id": 5178, + "name": "Red Hargrove", + "site_detail_url": "https://comicvine.gamespot.com/red-hargrove/4005-5178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5179/", + "id": 5179, + "name": "Dr. Betty", + "site_detail_url": "https://comicvine.gamespot.com/dr-betty/4005-5179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5216/", + "id": 5216, + "name": "Krait", + "site_detail_url": "https://comicvine.gamespot.com/krait/4005-5216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5389/", + "id": 5389, + "name": "Aayla Secura", + "site_detail_url": "https://comicvine.gamespot.com/aayla-secura/4005-5389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5392/", + "id": 5392, + "name": "Count Dooku", + "site_detail_url": "https://comicvine.gamespot.com/count-dooku/4005-5392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5395/", + "id": 5395, + "name": "Mace Windu", + "site_detail_url": "https://comicvine.gamespot.com/mace-windu/4005-5395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5396/", + "id": 5396, + "name": "Yoda", + "site_detail_url": "https://comicvine.gamespot.com/yoda/4005-5396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5403/", + "id": 5403, + "name": "Plo Koon", + "site_detail_url": "https://comicvine.gamespot.com/plo-koon/4005-5403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5404/", + "id": 5404, + "name": "Saesee Tiin", + "site_detail_url": "https://comicvine.gamespot.com/saesee-tiin/4005-5404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5406/", + "id": 5406, + "name": "Darth Maul", + "site_detail_url": "https://comicvine.gamespot.com/darth-maul/4005-5406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5411/", + "id": 5411, + "name": "Qui-Gon Jinn", + "site_detail_url": "https://comicvine.gamespot.com/qui-gon-jinn/4005-5411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5421/", + "id": 5421, + "name": "Aurra Sing", + "site_detail_url": "https://comicvine.gamespot.com/aurra-sing/4005-5421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5422/", + "id": 5422, + "name": "Ki-Adi-Mundi", + "site_detail_url": "https://comicvine.gamespot.com/ki-adi-mundi/4005-5422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5426/", + "id": 5426, + "name": "Depa Billaba", + "site_detail_url": "https://comicvine.gamespot.com/depa-billaba/4005-5426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5435/", + "id": 5435, + "name": "Bib Fortuna", + "site_detail_url": "https://comicvine.gamespot.com/bib-fortuna/4005-5435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5441/", + "id": 5441, + "name": "Jabba The Hutt", + "site_detail_url": "https://comicvine.gamespot.com/jabba-the-hutt/4005-5441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5454/", + "id": 5454, + "name": "Robert McCoy", + "site_detail_url": "https://comicvine.gamespot.com/robert-mccoy/4005-5454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5507/", + "id": 5507, + "name": "Mister Morgan's Monster", + "site_detail_url": "https://comicvine.gamespot.com/mister-morgans-monster/4005-5507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5511/", + "id": 5511, + "name": "Monsteroso", + "site_detail_url": "https://comicvine.gamespot.com/monsteroso/4005-5511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5513/", + "id": 5513, + "name": "Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/butterfly/4005-5513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5514/", + "id": 5514, + "name": "Asbestos Man", + "site_detail_url": "https://comicvine.gamespot.com/asbestos-man/4005-5514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5515/", + "id": 5515, + "name": "Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/destroyer/4005-5515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5517/", + "id": 5517, + "name": "Generic Super-Hero", + "site_detail_url": "https://comicvine.gamespot.com/generic-super-hero/4005-5517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5521/", + "id": 5521, + "name": "Carlie Colon", + "site_detail_url": "https://comicvine.gamespot.com/carlie-colon/4005-5521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5523/", + "id": 5523, + "name": "Arthur Dolan", + "site_detail_url": "https://comicvine.gamespot.com/arthur-dolan/4005-5523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5524/", + "id": 5524, + "name": "Juanito Candido", + "site_detail_url": "https://comicvine.gamespot.com/juanito-candido/4005-5524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5525/", + "id": 5525, + "name": "Choocho Colon", + "site_detail_url": "https://comicvine.gamespot.com/choocho-colon/4005-5525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5526/", + "id": 5526, + "name": "Ripper", + "site_detail_url": "https://comicvine.gamespot.com/ripper/4005-5526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5527/", + "id": 5527, + "name": "Luz Santos", + "site_detail_url": "https://comicvine.gamespot.com/luz-santos/4005-5527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5560/", + "id": 5560, + "name": "Gorr", + "site_detail_url": "https://comicvine.gamespot.com/gorr/4005-5560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5585/", + "id": 5585, + "name": "Nellie the Nurse", + "site_detail_url": "https://comicvine.gamespot.com/nellie-the-nurse/4005-5585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5752/", + "id": 5752, + "name": "Dyson Kellerman", + "site_detail_url": "https://comicvine.gamespot.com/dyson-kellerman/4005-5752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5791/", + "id": 5791, + "name": "Rufia", + "site_detail_url": "https://comicvine.gamespot.com/rufia/4005-5791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5851/", + "id": 5851, + "name": "Officer Lowe", + "site_detail_url": "https://comicvine.gamespot.com/officer-lowe/4005-5851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-5948/", + "id": 5948, + "name": "John Burke", + "site_detail_url": "https://comicvine.gamespot.com/john-burke/4005-5948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6048/", + "id": 6048, + "name": "Shard", + "site_detail_url": "https://comicvine.gamespot.com/shard/4005-6048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6050/", + "id": 6050, + "name": "Randall", + "site_detail_url": "https://comicvine.gamespot.com/randall/4005-6050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6052/", + "id": 6052, + "name": "Booger", + "site_detail_url": "https://comicvine.gamespot.com/booger/4005-6052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6053/", + "id": 6053, + "name": "Trask", + "site_detail_url": "https://comicvine.gamespot.com/trask/4005-6053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6055/", + "id": 6055, + "name": "Anthony Shaw", + "site_detail_url": "https://comicvine.gamespot.com/anthony-shaw/4005-6055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6056/", + "id": 6056, + "name": "Shadowbox", + "site_detail_url": "https://comicvine.gamespot.com/shadowbox/4005-6056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6057/", + "id": 6057, + "name": "Razorback", + "site_detail_url": "https://comicvine.gamespot.com/razorback/4005-6057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6058/", + "id": 6058, + "name": "Hardball", + "site_detail_url": "https://comicvine.gamespot.com/hardball/4005-6058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6080/", + "id": 6080, + "name": "Captain France", + "site_detail_url": "https://comicvine.gamespot.com/captain-france/4005-6080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6088/", + "id": 6088, + "name": "Devros", + "site_detail_url": "https://comicvine.gamespot.com/devros/4005-6088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6089/", + "id": 6089, + "name": "Deathbird", + "site_detail_url": "https://comicvine.gamespot.com/deathbird/4005-6089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6090/", + "id": 6090, + "name": "Fang", + "site_detail_url": "https://comicvine.gamespot.com/fang/4005-6090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6091/", + "id": 6091, + "name": "Smasher", + "site_detail_url": "https://comicvine.gamespot.com/smasher/4005-6091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6092/", + "id": 6092, + "name": "Starbolt", + "site_detail_url": "https://comicvine.gamespot.com/starbolt/4005-6092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6093/", + "id": 6093, + "name": "Oracle", + "site_detail_url": "https://comicvine.gamespot.com/oracle/4005-6093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6094/", + "id": 6094, + "name": "Yon-Rogg", + "site_detail_url": "https://comicvine.gamespot.com/yon-rogg/4005-6094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6096/", + "id": 6096, + "name": "Supreme Intelligence", + "site_detail_url": "https://comicvine.gamespot.com/supreme-intelligence/4005-6096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6104/", + "id": 6104, + "name": "Gunmetal Gray", + "site_detail_url": "https://comicvine.gamespot.com/gunmetal-gray/4005-6104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6108/", + "id": 6108, + "name": "Ghost Rider (Blaze)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-blaze/4005-6108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6111/", + "id": 6111, + "name": "Erik Killmonger", + "site_detail_url": "https://comicvine.gamespot.com/erik-killmonger/4005-6111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6116/", + "id": 6116, + "name": "Arcanna", + "site_detail_url": "https://comicvine.gamespot.com/arcanna/4005-6116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6120/", + "id": 6120, + "name": "Stringer", + "site_detail_url": "https://comicvine.gamespot.com/stringer/4005-6120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6121/", + "id": 6121, + "name": "Clay", + "site_detail_url": "https://comicvine.gamespot.com/clay/4005-6121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6122/", + "id": 6122, + "name": "Carol Campbell", + "site_detail_url": "https://comicvine.gamespot.com/carol-campbell/4005-6122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6123/", + "id": 6123, + "name": "Sheila Desoto", + "site_detail_url": "https://comicvine.gamespot.com/sheila-desoto/4005-6123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6134/", + "id": 6134, + "name": "Rachel", + "site_detail_url": "https://comicvine.gamespot.com/rachel/4005-6134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6139/", + "id": 6139, + "name": "Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/beta-ray-bill/4005-6139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6140/", + "id": 6140, + "name": "Xenith", + "site_detail_url": "https://comicvine.gamespot.com/xenith/4005-6140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6141/", + "id": 6141, + "name": "Morfex", + "site_detail_url": "https://comicvine.gamespot.com/morfex/4005-6141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6142/", + "id": 6142, + "name": "Tana Nile", + "site_detail_url": "https://comicvine.gamespot.com/tana-nile/4005-6142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6143/", + "id": 6143, + "name": "Epoch", + "site_detail_url": "https://comicvine.gamespot.com/epoch/4005-6143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6144/", + "id": 6144, + "name": "Lilandra", + "site_detail_url": "https://comicvine.gamespot.com/lilandra/4005-6144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6166/", + "id": 6166, + "name": "Ruth", + "site_detail_url": "https://comicvine.gamespot.com/ruth/4005-6166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6167/", + "id": 6167, + "name": "Bonnie Hale", + "site_detail_url": "https://comicvine.gamespot.com/bonnie-hale/4005-6167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6168/", + "id": 6168, + "name": "Kalashnikov", + "site_detail_url": "https://comicvine.gamespot.com/kalashnikov/4005-6168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6169/", + "id": 6169, + "name": "Dr. Philip Krantz", + "site_detail_url": "https://comicvine.gamespot.com/dr-philip-krantz/4005-6169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6170/", + "id": 6170, + "name": "Aleksander", + "site_detail_url": "https://comicvine.gamespot.com/aleksander/4005-6170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6173/", + "id": 6173, + "name": "Jackson Womack", + "site_detail_url": "https://comicvine.gamespot.com/jackson-womack/4005-6173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6174/", + "id": 6174, + "name": "Max Synergy", + "site_detail_url": "https://comicvine.gamespot.com/max-synergy/4005-6174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6180/", + "id": 6180, + "name": "Napper French", + "site_detail_url": "https://comicvine.gamespot.com/napper-french/4005-6180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6181/", + "id": 6181, + "name": "Maginty", + "site_detail_url": "https://comicvine.gamespot.com/maginty/4005-6181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6182/", + "id": 6182, + "name": "Commander A", + "site_detail_url": "https://comicvine.gamespot.com/commander-a/4005-6182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6183/", + "id": 6183, + "name": "Finn Cooley", + "site_detail_url": "https://comicvine.gamespot.com/finn-cooley/4005-6183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6185/", + "id": 6185, + "name": "Nicky Cavella", + "site_detail_url": "https://comicvine.gamespot.com/nicky-cavella/4005-6185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6186/", + "id": 6186, + "name": "William Roth", + "site_detail_url": "https://comicvine.gamespot.com/william-roth/4005-6186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6281/", + "id": 6281, + "name": "Baron Blood (Crichton)", + "site_detail_url": "https://comicvine.gamespot.com/baron-blood-crichton/4005-6281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6282/", + "id": 6282, + "name": "Baroness Blood", + "site_detail_url": "https://comicvine.gamespot.com/baroness-blood/4005-6282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6283/", + "id": 6283, + "name": "Romany Wisdom", + "site_detail_url": "https://comicvine.gamespot.com/romany-wisdom/4005-6283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6286/", + "id": 6286, + "name": "Ben Reilly", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly/4005-6286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6287/", + "id": 6287, + "name": "Joe Wade", + "site_detail_url": "https://comicvine.gamespot.com/joe-wade/4005-6287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6289/", + "id": 6289, + "name": "Seward Trainer", + "site_detail_url": "https://comicvine.gamespot.com/seward-trainer/4005-6289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6290/", + "id": 6290, + "name": "Angela Yin", + "site_detail_url": "https://comicvine.gamespot.com/angela-yin/4005-6290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6291/", + "id": 6291, + "name": "Ken Ellis", + "site_detail_url": "https://comicvine.gamespot.com/ken-ellis/4005-6291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6292/", + "id": 6292, + "name": "Alistair Smythe", + "site_detail_url": "https://comicvine.gamespot.com/alistair-smythe/4005-6292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6293/", + "id": 6293, + "name": "Master Programmer", + "site_detail_url": "https://comicvine.gamespot.com/master-programmer/4005-6293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6294/", + "id": 6294, + "name": "Aura", + "site_detail_url": "https://comicvine.gamespot.com/aura/4005-6294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6296/", + "id": 6296, + "name": "Gregory Herd", + "site_detail_url": "https://comicvine.gamespot.com/gregory-herd/4005-6296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6297/", + "id": 6297, + "name": "Looter", + "site_detail_url": "https://comicvine.gamespot.com/looter/4005-6297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6299/", + "id": 6299, + "name": "Boomerang", + "site_detail_url": "https://comicvine.gamespot.com/boomerang/4005-6299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6315/", + "id": 6315, + "name": "Luke Skywalker", + "site_detail_url": "https://comicvine.gamespot.com/luke-skywalker/4005-6315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6334/", + "id": 6334, + "name": "Chewbacca", + "site_detail_url": "https://comicvine.gamespot.com/chewbacca/4005-6334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6335/", + "id": 6335, + "name": "C-3PO", + "site_detail_url": "https://comicvine.gamespot.com/c-3po/4005-6335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6342/", + "id": 6342, + "name": "Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/darth-vader/4005-6342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6343/", + "id": 6343, + "name": "Padmé Amidala", + "site_detail_url": "https://comicvine.gamespot.com/padme-amidala/4005-6343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6344/", + "id": 6344, + "name": "Jango Fett", + "site_detail_url": "https://comicvine.gamespot.com/jango-fett/4005-6344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6345/", + "id": 6345, + "name": "Wedge Antilles", + "site_detail_url": "https://comicvine.gamespot.com/wedge-antilles/4005-6345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6354/", + "id": 6354, + "name": "Boba Fett", + "site_detail_url": "https://comicvine.gamespot.com/boba-fett/4005-6354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6355/", + "id": 6355, + "name": "Lando Calrissian", + "site_detail_url": "https://comicvine.gamespot.com/lando-calrissian/4005-6355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6411/", + "id": 6411, + "name": "Lobot", + "site_detail_url": "https://comicvine.gamespot.com/lobot/4005-6411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6416/", + "id": 6416, + "name": "Grand Moff Tarkin", + "site_detail_url": "https://comicvine.gamespot.com/grand-moff-tarkin/4005-6416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6420/", + "id": 6420, + "name": "Jar Jar Binks", + "site_detail_url": "https://comicvine.gamespot.com/jar-jar-binks/4005-6420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6436/", + "id": 6436, + "name": "Crix Madine", + "site_detail_url": "https://comicvine.gamespot.com/crix-madine/4005-6436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6438/", + "id": 6438, + "name": "Alyssa Moy", + "site_detail_url": "https://comicvine.gamespot.com/alyssa-moy/4005-6438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6439/", + "id": 6439, + "name": "Frankie Fisher", + "site_detail_url": "https://comicvine.gamespot.com/frankie-fisher/4005-6439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6440/", + "id": 6440, + "name": "Ko-Gar", + "site_detail_url": "https://comicvine.gamespot.com/ko-gar/4005-6440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6441/", + "id": 6441, + "name": "General Lao-Tse", + "site_detail_url": "https://comicvine.gamespot.com/general-lao-tse/4005-6441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6443/", + "id": 6443, + "name": "Prince Bayan", + "site_detail_url": "https://comicvine.gamespot.com/prince-bayan/4005-6443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6444/", + "id": 6444, + "name": "Doctor Lestrade", + "site_detail_url": "https://comicvine.gamespot.com/doctor-lestrade/4005-6444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6445/", + "id": 6445, + "name": "Annette", + "site_detail_url": "https://comicvine.gamespot.com/annette/4005-6445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6446/", + "id": 6446, + "name": "Doctor Rush", + "site_detail_url": "https://comicvine.gamespot.com/doctor-rush/4005-6446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6447/", + "id": 6447, + "name": "Professor Van Nuys", + "site_detail_url": "https://comicvine.gamespot.com/professor-van-nuys/4005-6447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6521/", + "id": 6521, + "name": "Ludi", + "site_detail_url": "https://comicvine.gamespot.com/ludi/4005-6521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6570/", + "id": 6570, + "name": "Zoog", + "site_detail_url": "https://comicvine.gamespot.com/zoog/4005-6570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6601/", + "id": 6601, + "name": "Don Fortunato", + "site_detail_url": "https://comicvine.gamespot.com/don-fortunato/4005-6601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6722/", + "id": 6722, + "name": "Morbius", + "site_detail_url": "https://comicvine.gamespot.com/morbius/4005-6722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6724/", + "id": 6724, + "name": "Billy Connors", + "site_detail_url": "https://comicvine.gamespot.com/billy-connors/4005-6724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6727/", + "id": 6727, + "name": "John Anderson", + "site_detail_url": "https://comicvine.gamespot.com/john-anderson/4005-6727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6728/", + "id": 6728, + "name": "Neil Garrett", + "site_detail_url": "https://comicvine.gamespot.com/neil-garrett/4005-6728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6729/", + "id": 6729, + "name": "Hayyan Zarour", + "site_detail_url": "https://comicvine.gamespot.com/hayyan-zarour/4005-6729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6733/", + "id": 6733, + "name": "Eddie Brock", + "site_detail_url": "https://comicvine.gamespot.com/eddie-brock/4005-6733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6740/", + "id": 6740, + "name": "Patricia Robertson", + "site_detail_url": "https://comicvine.gamespot.com/patricia-robertson/4005-6740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6741/", + "id": 6741, + "name": "The Suit", + "site_detail_url": "https://comicvine.gamespot.com/the-suit/4005-6741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6742/", + "id": 6742, + "name": "Leona McBride", + "site_detail_url": "https://comicvine.gamespot.com/leona-mcbride/4005-6742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6746/", + "id": 6746, + "name": "Frankie", + "site_detail_url": "https://comicvine.gamespot.com/frankie/4005-6746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6747/", + "id": 6747, + "name": "Vic", + "site_detail_url": "https://comicvine.gamespot.com/vic/4005-6747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6748/", + "id": 6748, + "name": "Perry", + "site_detail_url": "https://comicvine.gamespot.com/perry/4005-6748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6750/", + "id": 6750, + "name": "Jerome Delacroix", + "site_detail_url": "https://comicvine.gamespot.com/jerome-delacroix/4005-6750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6751/", + "id": 6751, + "name": "Harold Saunders", + "site_detail_url": "https://comicvine.gamespot.com/harold-saunders/4005-6751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6752/", + "id": 6752, + "name": "Colonel Michael Malone", + "site_detail_url": "https://comicvine.gamespot.com/colonel-michael-malone/4005-6752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6755/", + "id": 6755, + "name": "Mojo", + "site_detail_url": "https://comicvine.gamespot.com/mojo/4005-6755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6756/", + "id": 6756, + "name": "Vanisher", + "site_detail_url": "https://comicvine.gamespot.com/vanisher/4005-6756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6757/", + "id": 6757, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/longshot/4005-6757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6760/", + "id": 6760, + "name": "Kierrok", + "site_detail_url": "https://comicvine.gamespot.com/kierrok/4005-6760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6767/", + "id": 6767, + "name": "Montana", + "site_detail_url": "https://comicvine.gamespot.com/montana/4005-6767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6769/", + "id": 6769, + "name": "Angelo Fortunato", + "site_detail_url": "https://comicvine.gamespot.com/angelo-fortunato/4005-6769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6773/", + "id": 6773, + "name": "Yekaterina", + "site_detail_url": "https://comicvine.gamespot.com/yekaterina/4005-6773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6774/", + "id": 6774, + "name": "Eric O'Grady", + "site_detail_url": "https://comicvine.gamespot.com/eric-ogrady/4005-6774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6789/", + "id": 6789, + "name": "Native", + "site_detail_url": "https://comicvine.gamespot.com/native/4005-6789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6790/", + "id": 6790, + "name": "Vapor", + "site_detail_url": "https://comicvine.gamespot.com/vapor/4005-6790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6798/", + "id": 6798, + "name": "Zoma The Watcher", + "site_detail_url": "https://comicvine.gamespot.com/zoma-the-watcher/4005-6798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6800/", + "id": 6800, + "name": "Armadillo", + "site_detail_url": "https://comicvine.gamespot.com/armadillo/4005-6800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6803/", + "id": 6803, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4005-6803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6804/", + "id": 6804, + "name": "Recorder Zeta-9", + "site_detail_url": "https://comicvine.gamespot.com/recorder-zeta-9/4005-6804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6805/", + "id": 6805, + "name": "Adam Warlock", + "site_detail_url": "https://comicvine.gamespot.com/adam-warlock/4005-6805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6806/", + "id": 6806, + "name": "Gamora", + "site_detail_url": "https://comicvine.gamespot.com/gamora/4005-6806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6807/", + "id": 6807, + "name": "Drax the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/drax-the-destroyer/4005-6807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6808/", + "id": 6808, + "name": "Forbush Man", + "site_detail_url": "https://comicvine.gamespot.com/forbush-man/4005-6808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6809/", + "id": 6809, + "name": "Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie/4005-6809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6810/", + "id": 6810, + "name": "Aragorn", + "site_detail_url": "https://comicvine.gamespot.com/aragorn/4005-6810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6811/", + "id": 6811, + "name": "Living Tribunal", + "site_detail_url": "https://comicvine.gamespot.com/living-tribunal/4005-6811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6814/", + "id": 6814, + "name": "Qyre", + "site_detail_url": "https://comicvine.gamespot.com/qyre/4005-6814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6815/", + "id": 6815, + "name": "Tiger Shark", + "site_detail_url": "https://comicvine.gamespot.com/tiger-shark/4005-6815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6816/", + "id": 6816, + "name": "Grey Gargoyle", + "site_detail_url": "https://comicvine.gamespot.com/grey-gargoyle/4005-6816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6817/", + "id": 6817, + "name": "Hammerhead", + "site_detail_url": "https://comicvine.gamespot.com/hammerhead/4005-6817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6818/", + "id": 6818, + "name": "Vermin", + "site_detail_url": "https://comicvine.gamespot.com/vermin/4005-6818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6819/", + "id": 6819, + "name": "8-Ball", + "site_detail_url": "https://comicvine.gamespot.com/8-ball/4005-6819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6820/", + "id": 6820, + "name": "Vector", + "site_detail_url": "https://comicvine.gamespot.com/vector/4005-6820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6821/", + "id": 6821, + "name": "Ironclad", + "site_detail_url": "https://comicvine.gamespot.com/ironclad/4005-6821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6822/", + "id": 6822, + "name": "X-Ray", + "site_detail_url": "https://comicvine.gamespot.com/x-ray/4005-6822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6823/", + "id": 6823, + "name": "Dragon Man", + "site_detail_url": "https://comicvine.gamespot.com/dragon-man/4005-6823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6824/", + "id": 6824, + "name": "Powderkeg", + "site_detail_url": "https://comicvine.gamespot.com/powderkeg/4005-6824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6825/", + "id": 6825, + "name": "Mr. Bobo", + "site_detail_url": "https://comicvine.gamespot.com/mr-bobo/4005-6825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6826/", + "id": 6826, + "name": "Figment", + "site_detail_url": "https://comicvine.gamespot.com/figment/4005-6826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6827/", + "id": 6827, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-6827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6828/", + "id": 6828, + "name": "Whirlwind", + "site_detail_url": "https://comicvine.gamespot.com/whirlwind/4005-6828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6829/", + "id": 6829, + "name": "Mandrill", + "site_detail_url": "https://comicvine.gamespot.com/mandrill/4005-6829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6830/", + "id": 6830, + "name": "Glory Grant", + "site_detail_url": "https://comicvine.gamespot.com/glory-grant/4005-6830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6831/", + "id": 6831, + "name": "Norma Jermain", + "site_detail_url": "https://comicvine.gamespot.com/norma-jermain/4005-6831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6832/", + "id": 6832, + "name": "Tina Jermain", + "site_detail_url": "https://comicvine.gamespot.com/tina-jermain/4005-6832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6911/", + "id": 6911, + "name": "Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/hyperion/4005-6911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6912/", + "id": 6912, + "name": "Power Princess", + "site_detail_url": "https://comicvine.gamespot.com/power-princess/4005-6912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-6914/", + "id": 6914, + "name": "Amphibian", + "site_detail_url": "https://comicvine.gamespot.com/amphibian/4005-6914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7041/", + "id": 7041, + "name": "Blindspot", + "site_detail_url": "https://comicvine.gamespot.com/blindspot/4005-7041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7079/", + "id": 7079, + "name": "Magar the Mystic", + "site_detail_url": "https://comicvine.gamespot.com/magar-the-mystic/4005-7079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7087/", + "id": 7087, + "name": "Emmett", + "site_detail_url": "https://comicvine.gamespot.com/emmett/4005-7087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7088/", + "id": 7088, + "name": "Dirt Nap", + "site_detail_url": "https://comicvine.gamespot.com/dirt-nap/4005-7088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7089/", + "id": 7089, + "name": "Chimera", + "site_detail_url": "https://comicvine.gamespot.com/chimera/4005-7089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7090/", + "id": 7090, + "name": "Grundroth", + "site_detail_url": "https://comicvine.gamespot.com/grundroth/4005-7090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7108/", + "id": 7108, + "name": "Firelord", + "site_detail_url": "https://comicvine.gamespot.com/firelord/4005-7108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7110/", + "id": 7110, + "name": "Cy-Phyrr-4", + "site_detail_url": "https://comicvine.gamespot.com/cy-phyrr-4/4005-7110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7111/", + "id": 7111, + "name": "Tenebrae", + "site_detail_url": "https://comicvine.gamespot.com/tenebrae/4005-7111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7112/", + "id": 7112, + "name": "Psycho-Man", + "site_detail_url": "https://comicvine.gamespot.com/psycho-man/4005-7112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7113/", + "id": 7113, + "name": "Coroner", + "site_detail_url": "https://comicvine.gamespot.com/coroner/4005-7113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7114/", + "id": 7114, + "name": "Gargoyle", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle/4005-7114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7120/", + "id": 7120, + "name": "Watcher", + "site_detail_url": "https://comicvine.gamespot.com/watcher/4005-7120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7121/", + "id": 7121, + "name": "Oclin", + "site_detail_url": "https://comicvine.gamespot.com/oclin/4005-7121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7122/", + "id": 7122, + "name": "Morg", + "site_detail_url": "https://comicvine.gamespot.com/morg/4005-7122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7123/", + "id": 7123, + "name": "Tyrant", + "site_detail_url": "https://comicvine.gamespot.com/tyrant/4005-7123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7125/", + "id": 7125, + "name": "Shalla Bal", + "site_detail_url": "https://comicvine.gamespot.com/shalla-bal/4005-7125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7126/", + "id": 7126, + "name": "Air-Walker", + "site_detail_url": "https://comicvine.gamespot.com/air-walker/4005-7126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7127/", + "id": 7127, + "name": "Fennan Radd", + "site_detail_url": "https://comicvine.gamespot.com/fennan-radd/4005-7127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7198/", + "id": 7198, + "name": "Karnilla", + "site_detail_url": "https://comicvine.gamespot.com/karnilla/4005-7198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7199/", + "id": 7199, + "name": "Rimthursar", + "site_detail_url": "https://comicvine.gamespot.com/rimthursar/4005-7199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7200/", + "id": 7200, + "name": "Sif", + "site_detail_url": "https://comicvine.gamespot.com/sif/4005-7200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7201/", + "id": 7201, + "name": "Balder", + "site_detail_url": "https://comicvine.gamespot.com/balder/4005-7201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7203/", + "id": 7203, + "name": "Lorelei Travis", + "site_detail_url": "https://comicvine.gamespot.com/lorelei-travis/4005-7203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7204/", + "id": 7204, + "name": "Max Parrish", + "site_detail_url": "https://comicvine.gamespot.com/max-parrish/4005-7204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7205/", + "id": 7205, + "name": "Comte St. Germaine", + "site_detail_url": "https://comicvine.gamespot.com/comte-st-germaine/4005-7205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7207/", + "id": 7207, + "name": "Cammy Brandeis", + "site_detail_url": "https://comicvine.gamespot.com/cammy-brandeis/4005-7207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7208/", + "id": 7208, + "name": "Frank Ramirez", + "site_detail_url": "https://comicvine.gamespot.com/frank-ramirez/4005-7208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7210/", + "id": 7210, + "name": "Professor Henry Brandeis", + "site_detail_url": "https://comicvine.gamespot.com/professor-henry-brandeis/4005-7210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7211/", + "id": 7211, + "name": "Liz Parrish", + "site_detail_url": "https://comicvine.gamespot.com/liz-parrish/4005-7211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7212/", + "id": 7212, + "name": "Doctor Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum/4005-7212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7213/", + "id": 7213, + "name": "Jack of Hearts", + "site_detail_url": "https://comicvine.gamespot.com/jack-of-hearts/4005-7213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7214/", + "id": 7214, + "name": "Moondragon", + "site_detail_url": "https://comicvine.gamespot.com/moondragon/4005-7214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7215/", + "id": 7215, + "name": "Immortus", + "site_detail_url": "https://comicvine.gamespot.com/immortus/4005-7215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7218/", + "id": 7218, + "name": "Jonz Rickard", + "site_detail_url": "https://comicvine.gamespot.com/jonz-rickard/4005-7218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7221/", + "id": 7221, + "name": "Nathaniel Richards", + "site_detail_url": "https://comicvine.gamespot.com/nathaniel-richards/4005-7221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7223/", + "id": 7223, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4005-7223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7224/", + "id": 7224, + "name": "Moon Boy", + "site_detail_url": "https://comicvine.gamespot.com/moon-boy/4005-7224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7225/", + "id": 7225, + "name": "Enchantress", + "site_detail_url": "https://comicvine.gamespot.com/enchantress/4005-7225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7227/", + "id": 7227, + "name": "Grim Reaper", + "site_detail_url": "https://comicvine.gamespot.com/grim-reaper/4005-7227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7228/", + "id": 7228, + "name": "Professor Horton", + "site_detail_url": "https://comicvine.gamespot.com/professor-horton/4005-7228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7229/", + "id": 7229, + "name": "Master Pandemonium", + "site_detail_url": "https://comicvine.gamespot.com/master-pandemonium/4005-7229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7230/", + "id": 7230, + "name": "Quasimodo", + "site_detail_url": "https://comicvine.gamespot.com/quasimodo/4005-7230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7231/", + "id": 7231, + "name": "Deathcry", + "site_detail_url": "https://comicvine.gamespot.com/deathcry/4005-7231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7232/", + "id": 7232, + "name": "Tempus", + "site_detail_url": "https://comicvine.gamespot.com/tempus/4005-7232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7233/", + "id": 7233, + "name": "Killraven", + "site_detail_url": "https://comicvine.gamespot.com/killraven/4005-7233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7234/", + "id": 7234, + "name": "Crimson Dynamo (Vanko)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-vanko/4005-7234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7235/", + "id": 7235, + "name": "Thundra", + "site_detail_url": "https://comicvine.gamespot.com/thundra/4005-7235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7236/", + "id": 7236, + "name": "Mourning Prey", + "site_detail_url": "https://comicvine.gamespot.com/mourning-prey/4005-7236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7237/", + "id": 7237, + "name": "Ringo Kid", + "site_detail_url": "https://comicvine.gamespot.com/ringo-kid/4005-7237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7238/", + "id": 7238, + "name": "Kid Colt", + "site_detail_url": "https://comicvine.gamespot.com/kid-colt/4005-7238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7239/", + "id": 7239, + "name": "Phantom Rider", + "site_detail_url": "https://comicvine.gamespot.com/phantom-rider/4005-7239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7240/", + "id": 7240, + "name": "Two-Gun Kid", + "site_detail_url": "https://comicvine.gamespot.com/two-gun-kid/4005-7240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7242/", + "id": 7242, + "name": "Machine Man", + "site_detail_url": "https://comicvine.gamespot.com/machine-man/4005-7242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7243/", + "id": 7243, + "name": "Space Phantom", + "site_detail_url": "https://comicvine.gamespot.com/space-phantom/4005-7243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7245/", + "id": 7245, + "name": "M-11", + "site_detail_url": "https://comicvine.gamespot.com/m-11/4005-7245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7246/", + "id": 7246, + "name": "Volcana Ash", + "site_detail_url": "https://comicvine.gamespot.com/volcana-ash/4005-7246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7247/", + "id": 7247, + "name": "Reno Jones", + "site_detail_url": "https://comicvine.gamespot.com/reno-jones/4005-7247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7248/", + "id": 7248, + "name": "Kid Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/kid-cassidy/4005-7248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7249/", + "id": 7249, + "name": "Iain Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/iain-guthrie/4005-7249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7250/", + "id": 7250, + "name": "Red Wolf", + "site_detail_url": "https://comicvine.gamespot.com/red-wolf/4005-7250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7251/", + "id": 7251, + "name": "Magdalene", + "site_detail_url": "https://comicvine.gamespot.com/magdalene/4005-7251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7252/", + "id": 7252, + "name": "Masque", + "site_detail_url": "https://comicvine.gamespot.com/masque/4005-7252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7257/", + "id": 7257, + "name": "Starfox", + "site_detail_url": "https://comicvine.gamespot.com/starfox/4005-7257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7258/", + "id": 7258, + "name": "Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/deathlok/4005-7258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7259/", + "id": 7259, + "name": "Astrid Mordo", + "site_detail_url": "https://comicvine.gamespot.com/astrid-mordo/4005-7259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7260/", + "id": 7260, + "name": "Melter (Horgan)", + "site_detail_url": "https://comicvine.gamespot.com/melter-horgan/4005-7260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7261/", + "id": 7261, + "name": "Aarkus", + "site_detail_url": "https://comicvine.gamespot.com/aarkus/4005-7261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7292/", + "id": 7292, + "name": "Coda", + "site_detail_url": "https://comicvine.gamespot.com/coda/4005-7292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7313/", + "id": 7313, + "name": "Miss Patriot", + "site_detail_url": "https://comicvine.gamespot.com/miss-patriot/4005-7313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7322/", + "id": 7322, + "name": "Milla", + "site_detail_url": "https://comicvine.gamespot.com/milla/4005-7322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7332/", + "id": 7332, + "name": "Hope", + "site_detail_url": "https://comicvine.gamespot.com/hope/4005-7332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7333/", + "id": 7333, + "name": "Psimon", + "site_detail_url": "https://comicvine.gamespot.com/psimon/4005-7333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7334/", + "id": 7334, + "name": "Psiren", + "site_detail_url": "https://comicvine.gamespot.com/psiren/4005-7334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7336/", + "id": 7336, + "name": "Magus (Technarchy)", + "site_detail_url": "https://comicvine.gamespot.com/magus-technarchy/4005-7336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7350/", + "id": 7350, + "name": "Mainspring", + "site_detail_url": "https://comicvine.gamespot.com/mainspring/4005-7350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7351/", + "id": 7351, + "name": "Gatekeeper", + "site_detail_url": "https://comicvine.gamespot.com/gatekeeper/4005-7351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7361/", + "id": 7361, + "name": "Gatekeeper", + "site_detail_url": "https://comicvine.gamespot.com/gatekeeper/4005-7361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7407/", + "id": 7407, + "name": "Ravage", + "site_detail_url": "https://comicvine.gamespot.com/ravage/4005-7407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7455/", + "id": 7455, + "name": "Lore", + "site_detail_url": "https://comicvine.gamespot.com/lore/4005-7455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7463/", + "id": 7463, + "name": "Stimpy", + "site_detail_url": "https://comicvine.gamespot.com/stimpy/4005-7463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7464/", + "id": 7464, + "name": "Powdered Toast Man", + "site_detail_url": "https://comicvine.gamespot.com/powdered-toast-man/4005-7464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7465/", + "id": 7465, + "name": "Ren Hoek", + "site_detail_url": "https://comicvine.gamespot.com/ren-hoek/4005-7465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7466/", + "id": 7466, + "name": "Tank", + "site_detail_url": "https://comicvine.gamespot.com/tank/4005-7466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7467/", + "id": 7467, + "name": "Brenner", + "site_detail_url": "https://comicvine.gamespot.com/brenner/4005-7467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7468/", + "id": 7468, + "name": "The Space Yak", + "site_detail_url": "https://comicvine.gamespot.com/the-space-yak/4005-7468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7477/", + "id": 7477, + "name": "Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain/4005-7477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7478/", + "id": 7478, + "name": "Planet Terry", + "site_detail_url": "https://comicvine.gamespot.com/planet-terry/4005-7478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7479/", + "id": 7479, + "name": "Hood", + "site_detail_url": "https://comicvine.gamespot.com/hood/4005-7479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7480/", + "id": 7480, + "name": "Robota", + "site_detail_url": "https://comicvine.gamespot.com/robota/4005-7480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7481/", + "id": 7481, + "name": "Omnus", + "site_detail_url": "https://comicvine.gamespot.com/omnus/4005-7481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7482/", + "id": 7482, + "name": "Vermin The Vile", + "site_detail_url": "https://comicvine.gamespot.com/vermin-the-vile/4005-7482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7483/", + "id": 7483, + "name": "Queen Hilda", + "site_detail_url": "https://comicvine.gamespot.com/queen-hilda/4005-7483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7484/", + "id": 7484, + "name": "Princess Ugly", + "site_detail_url": "https://comicvine.gamespot.com/princess-ugly/4005-7484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7485/", + "id": 7485, + "name": "Zeet", + "site_detail_url": "https://comicvine.gamespot.com/zeet/4005-7485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7486/", + "id": 7486, + "name": "Ouly Starstruk", + "site_detail_url": "https://comicvine.gamespot.com/ouly-starstruk/4005-7486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7487/", + "id": 7487, + "name": "Brutoxx", + "site_detail_url": "https://comicvine.gamespot.com/brutoxx/4005-7487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7488/", + "id": 7488, + "name": "Sam Space", + "site_detail_url": "https://comicvine.gamespot.com/sam-space/4005-7488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7489/", + "id": 7489, + "name": "Squig", + "site_detail_url": "https://comicvine.gamespot.com/squig/4005-7489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7490/", + "id": 7490, + "name": "Elfin", + "site_detail_url": "https://comicvine.gamespot.com/elfin/4005-7490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7491/", + "id": 7491, + "name": "Stardust", + "site_detail_url": "https://comicvine.gamespot.com/stardust/4005-7491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7492/", + "id": 7492, + "name": "Queen Repugna", + "site_detail_url": "https://comicvine.gamespot.com/queen-repugna/4005-7492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7493/", + "id": 7493, + "name": "Captain Sting", + "site_detail_url": "https://comicvine.gamespot.com/captain-sting/4005-7493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7494/", + "id": 7494, + "name": "General Facet", + "site_detail_url": "https://comicvine.gamespot.com/general-facet/4005-7494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7495/", + "id": 7495, + "name": "The Ruby Monster", + "site_detail_url": "https://comicvine.gamespot.com/the-ruby-monster/4005-7495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7496/", + "id": 7496, + "name": "Squink", + "site_detail_url": "https://comicvine.gamespot.com/squink/4005-7496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7497/", + "id": 7497, + "name": "Enoch Diggs", + "site_detail_url": "https://comicvine.gamespot.com/enoch-diggs/4005-7497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7503/", + "id": 7503, + "name": "Warbringer", + "site_detail_url": "https://comicvine.gamespot.com/warbringer/4005-7503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7505/", + "id": 7505, + "name": "Nightwatch", + "site_detail_url": "https://comicvine.gamespot.com/nightwatch/4005-7505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7506/", + "id": 7506, + "name": "Warrant", + "site_detail_url": "https://comicvine.gamespot.com/warrant/4005-7506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7507/", + "id": 7507, + "name": "Mechamorph", + "site_detail_url": "https://comicvine.gamespot.com/mechamorph/4005-7507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7508/", + "id": 7508, + "name": "Flashpoint", + "site_detail_url": "https://comicvine.gamespot.com/flashpoint/4005-7508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7509/", + "id": 7509, + "name": "Salvo", + "site_detail_url": "https://comicvine.gamespot.com/salvo/4005-7509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7511/", + "id": 7511, + "name": "Chainsaw", + "site_detail_url": "https://comicvine.gamespot.com/chainsaw/4005-7511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7514/", + "id": 7514, + "name": "Psiphon", + "site_detail_url": "https://comicvine.gamespot.com/psiphon/4005-7514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7520/", + "id": 7520, + "name": "Tantrum", + "site_detail_url": "https://comicvine.gamespot.com/tantrum/4005-7520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7521/", + "id": 7521, + "name": "Lotus Newmark", + "site_detail_url": "https://comicvine.gamespot.com/lotus-newmark/4005-7521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7522/", + "id": 7522, + "name": "Eve Magdalene", + "site_detail_url": "https://comicvine.gamespot.com/eve-magdalene/4005-7522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7523/", + "id": 7523, + "name": "Bengal", + "site_detail_url": "https://comicvine.gamespot.com/bengal/4005-7523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7524/", + "id": 7524, + "name": "Clay Quartermain", + "site_detail_url": "https://comicvine.gamespot.com/clay-quartermain/4005-7524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7525/", + "id": 7525, + "name": "Omm", + "site_detail_url": "https://comicvine.gamespot.com/omm/4005-7525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7526/", + "id": 7526, + "name": "Gail Runciter", + "site_detail_url": "https://comicvine.gamespot.com/gail-runciter/4005-7526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7529/", + "id": 7529, + "name": "Jasper Sitwell", + "site_detail_url": "https://comicvine.gamespot.com/jasper-sitwell/4005-7529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7530/", + "id": 7530, + "name": "Jimmy Woo", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-woo/4005-7530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7536/", + "id": 7536, + "name": "Mister Jip", + "site_detail_url": "https://comicvine.gamespot.com/mister-jip/4005-7536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7537/", + "id": 7537, + "name": "Night", + "site_detail_url": "https://comicvine.gamespot.com/night/4005-7537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7539/", + "id": 7539, + "name": "Crimson Daffodil", + "site_detail_url": "https://comicvine.gamespot.com/crimson-daffodil/4005-7539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7543/", + "id": 7543, + "name": "Gromitz", + "site_detail_url": "https://comicvine.gamespot.com/gromitz/4005-7543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7544/", + "id": 7544, + "name": "Father Michael Bowen", + "site_detail_url": "https://comicvine.gamespot.com/father-michael-bowen/4005-7544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7545/", + "id": 7545, + "name": "Detective Rebecca Nales", + "site_detail_url": "https://comicvine.gamespot.com/detective-rebecca-nales/4005-7545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7546/", + "id": 7546, + "name": "Yip Yap", + "site_detail_url": "https://comicvine.gamespot.com/yip-yap/4005-7546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7548/", + "id": 7548, + "name": "Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/mayhem/4005-7548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7567/", + "id": 7567, + "name": "Nanny", + "site_detail_url": "https://comicvine.gamespot.com/nanny/4005-7567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7569/", + "id": 7569, + "name": "Martine Bancroft", + "site_detail_url": "https://comicvine.gamespot.com/martine-bancroft/4005-7569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7570/", + "id": 7570, + "name": "Blade", + "site_detail_url": "https://comicvine.gamespot.com/blade/4005-7570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7571/", + "id": 7571, + "name": "Mike Anderson", + "site_detail_url": "https://comicvine.gamespot.com/mike-anderson/4005-7571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7572/", + "id": 7572, + "name": "Hel Wolf", + "site_detail_url": "https://comicvine.gamespot.com/hel-wolf/4005-7572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7573/", + "id": 7573, + "name": "Malefactor", + "site_detail_url": "https://comicvine.gamespot.com/malefactor/4005-7573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7576/", + "id": 7576, + "name": "Mr. Skyy", + "site_detail_url": "https://comicvine.gamespot.com/mr-skyy/4005-7576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7577/", + "id": 7577, + "name": "Ghost Strike", + "site_detail_url": "https://comicvine.gamespot.com/ghost-strike/4005-7577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7581/", + "id": 7581, + "name": "Red Guardian (Shostakov)", + "site_detail_url": "https://comicvine.gamespot.com/red-guardian-shostakov/4005-7581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7586/", + "id": 7586, + "name": "Spitfire", + "site_detail_url": "https://comicvine.gamespot.com/spitfire/4005-7586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7590/", + "id": 7590, + "name": "Impossible Man", + "site_detail_url": "https://comicvine.gamespot.com/impossible-man/4005-7590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7591/", + "id": 7591, + "name": "Corsair", + "site_detail_url": "https://comicvine.gamespot.com/corsair/4005-7591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7594/", + "id": 7594, + "name": "Blue Leader", + "site_detail_url": "https://comicvine.gamespot.com/blue-leader/4005-7594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7597/", + "id": 7597, + "name": "Cyber", + "site_detail_url": "https://comicvine.gamespot.com/cyber/4005-7597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7599/", + "id": 7599, + "name": "Strong Guy", + "site_detail_url": "https://comicvine.gamespot.com/strong-guy/4005-7599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7600/", + "id": 7600, + "name": "Michael Pointer", + "site_detail_url": "https://comicvine.gamespot.com/michael-pointer/4005-7600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7601/", + "id": 7601, + "name": "Sleepwalker", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker/4005-7601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7603/", + "id": 7603, + "name": "Ravage 2099", + "site_detail_url": "https://comicvine.gamespot.com/ravage-2099/4005-7603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7604/", + "id": 7604, + "name": "Meggan", + "site_detail_url": "https://comicvine.gamespot.com/meggan/4005-7604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7605/", + "id": 7605, + "name": "Hobgoblin (Kingsley)", + "site_detail_url": "https://comicvine.gamespot.com/hobgoblin-kingsley/4005-7605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7606/", + "id": 7606, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4005-7606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7607/", + "id": 7607, + "name": "Thanos", + "site_detail_url": "https://comicvine.gamespot.com/thanos/4005-7607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7608/", + "id": 7608, + "name": "Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable/4005-7608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7611/", + "id": 7611, + "name": "Thunderstrike", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike/4005-7611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7612/", + "id": 7612, + "name": "Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse/4005-7612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7613/", + "id": 7613, + "name": "Punisher 2099", + "site_detail_url": "https://comicvine.gamespot.com/punisher-2099/4005-7613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7616/", + "id": 7616, + "name": "Stryfe", + "site_detail_url": "https://comicvine.gamespot.com/stryfe/4005-7616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7617/", + "id": 7617, + "name": "Leader", + "site_detail_url": "https://comicvine.gamespot.com/leader/4005-7617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7618/", + "id": 7618, + "name": "Jack Monroe", + "site_detail_url": "https://comicvine.gamespot.com/jack-monroe/4005-7618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7620/", + "id": 7620, + "name": "Margie", + "site_detail_url": "https://comicvine.gamespot.com/margie/4005-7620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7626/", + "id": 7626, + "name": "Clicker", + "site_detail_url": "https://comicvine.gamespot.com/clicker/4005-7626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7627/", + "id": 7627, + "name": "Daisy", + "site_detail_url": "https://comicvine.gamespot.com/daisy/4005-7627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7628/", + "id": 7628, + "name": "Chili Storm", + "site_detail_url": "https://comicvine.gamespot.com/chili-storm/4005-7628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7629/", + "id": 7629, + "name": "Mr. Hanover", + "site_detail_url": "https://comicvine.gamespot.com/mr-hanover/4005-7629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7631/", + "id": 7631, + "name": "Bill the Lobster", + "site_detail_url": "https://comicvine.gamespot.com/bill-the-lobster/4005-7631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7632/", + "id": 7632, + "name": "Reggie", + "site_detail_url": "https://comicvine.gamespot.com/reggie/4005-7632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7633/", + "id": 7633, + "name": "Marvin", + "site_detail_url": "https://comicvine.gamespot.com/marvin/4005-7633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7776/", + "id": 7776, + "name": "Stegron", + "site_detail_url": "https://comicvine.gamespot.com/stegron/4005-7776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7779/", + "id": 7779, + "name": "The Answer", + "site_detail_url": "https://comicvine.gamespot.com/the-answer/4005-7779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7787/", + "id": 7787, + "name": "Mumbly", + "site_detail_url": "https://comicvine.gamespot.com/mumbly/4005-7787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7789/", + "id": 7789, + "name": "Mildew Wolf", + "site_detail_url": "https://comicvine.gamespot.com/mildew-wolf/4005-7789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7800/", + "id": 7800, + "name": "Dinky Dalton", + "site_detail_url": "https://comicvine.gamespot.com/dinky-dalton/4005-7800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7801/", + "id": 7801, + "name": "Hokey Wolf", + "site_detail_url": "https://comicvine.gamespot.com/hokey-wolf/4005-7801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7802/", + "id": 7802, + "name": "Babu The Genie", + "site_detail_url": "https://comicvine.gamespot.com/babu-the-genie/4005-7802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7803/", + "id": 7803, + "name": "Dixie", + "site_detail_url": "https://comicvine.gamespot.com/dixie/4005-7803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7804/", + "id": 7804, + "name": "Dread Baron", + "site_detail_url": "https://comicvine.gamespot.com/dread-baron/4005-7804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7808/", + "id": 7808, + "name": "The Creepleys", + "site_detail_url": "https://comicvine.gamespot.com/the-creepleys/4005-7808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7809/", + "id": 7809, + "name": "Orful Octopus", + "site_detail_url": "https://comicvine.gamespot.com/orful-octopus/4005-7809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7812/", + "id": 7812, + "name": "Yakkie Doodle Duck", + "site_detail_url": "https://comicvine.gamespot.com/yakkie-doodle-duck/4005-7812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7815/", + "id": 7815, + "name": "Daisy Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/daisy-mayhem/4005-7815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7816/", + "id": 7816, + "name": "Fondoo The Magician", + "site_detail_url": "https://comicvine.gamespot.com/fondoo-the-magician/4005-7816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7817/", + "id": 7817, + "name": "Dirty Dalton", + "site_detail_url": "https://comicvine.gamespot.com/dirty-dalton/4005-7817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7818/", + "id": 7818, + "name": "Dastardly Dalton", + "site_detail_url": "https://comicvine.gamespot.com/dastardly-dalton/4005-7818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7829/", + "id": 7829, + "name": "Mustard", + "site_detail_url": "https://comicvine.gamespot.com/mustard/4005-7829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7833/", + "id": 7833, + "name": "Lance", + "site_detail_url": "https://comicvine.gamespot.com/lance/4005-7833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7836/", + "id": 7836, + "name": "Black Death", + "site_detail_url": "https://comicvine.gamespot.com/black-death/4005-7836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7846/", + "id": 7846, + "name": "Shinobu Cochrane", + "site_detail_url": "https://comicvine.gamespot.com/shinobu-cochrane/4005-7846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7850/", + "id": 7850, + "name": "Kelly Hitchuck", + "site_detail_url": "https://comicvine.gamespot.com/kelly-hitchuck/4005-7850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7851/", + "id": 7851, + "name": "David Bank", + "site_detail_url": "https://comicvine.gamespot.com/david-bank/4005-7851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7853/", + "id": 7853, + "name": "Norma Astrovik", + "site_detail_url": "https://comicvine.gamespot.com/norma-astrovik/4005-7853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7856/", + "id": 7856, + "name": "Father Michael Janes", + "site_detail_url": "https://comicvine.gamespot.com/father-michael-janes/4005-7856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7858/", + "id": 7858, + "name": "Yinsen", + "site_detail_url": "https://comicvine.gamespot.com/yinsen/4005-7858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7865/", + "id": 7865, + "name": "Maestro", + "site_detail_url": "https://comicvine.gamespot.com/maestro/4005-7865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7870/", + "id": 7870, + "name": "Fold", + "site_detail_url": "https://comicvine.gamespot.com/fold/4005-7870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7875/", + "id": 7875, + "name": "Heathcliff", + "site_detail_url": "https://comicvine.gamespot.com/heathcliff/4005-7875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7883/", + "id": 7883, + "name": "Spike", + "site_detail_url": "https://comicvine.gamespot.com/spike/4005-7883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7888/", + "id": 7888, + "name": "Rover", + "site_detail_url": "https://comicvine.gamespot.com/rover/4005-7888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7889/", + "id": 7889, + "name": "Trickshot (Chisholm)", + "site_detail_url": "https://comicvine.gamespot.com/trickshot-chisholm/4005-7889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7890/", + "id": 7890, + "name": "Javelynn", + "site_detail_url": "https://comicvine.gamespot.com/javelynn/4005-7890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7896/", + "id": 7896, + "name": "Bella Donna", + "site_detail_url": "https://comicvine.gamespot.com/bella-donna/4005-7896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7897/", + "id": 7897, + "name": "Jean-Luc Lebeau", + "site_detail_url": "https://comicvine.gamespot.com/jean-luc-lebeau/4005-7897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7898/", + "id": 7898, + "name": "Julien Boudreaux", + "site_detail_url": "https://comicvine.gamespot.com/julien-boudreaux/4005-7898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7899/", + "id": 7899, + "name": "Tante Mattie", + "site_detail_url": "https://comicvine.gamespot.com/tante-mattie/4005-7899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7900/", + "id": 7900, + "name": "Candra", + "site_detail_url": "https://comicvine.gamespot.com/candra/4005-7900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7901/", + "id": 7901, + "name": "Tithe Collector", + "site_detail_url": "https://comicvine.gamespot.com/tithe-collector/4005-7901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7902/", + "id": 7902, + "name": "Marius", + "site_detail_url": "https://comicvine.gamespot.com/marius/4005-7902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7910/", + "id": 7910, + "name": "Madrox", + "site_detail_url": "https://comicvine.gamespot.com/madrox/4005-7910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7911/", + "id": 7911, + "name": "Chance", + "site_detail_url": "https://comicvine.gamespot.com/chance/4005-7911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7912/", + "id": 7912, + "name": "Don", + "site_detail_url": "https://comicvine.gamespot.com/don/4005-7912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7913/", + "id": 7913, + "name": "Gomi", + "site_detail_url": "https://comicvine.gamespot.com/gomi/4005-7913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7915/", + "id": 7915, + "name": "Teebo", + "site_detail_url": "https://comicvine.gamespot.com/teebo/4005-7915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7916/", + "id": 7916, + "name": "Wicket", + "site_detail_url": "https://comicvine.gamespot.com/wicket/4005-7916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7917/", + "id": 7917, + "name": "Chief Chirpa", + "site_detail_url": "https://comicvine.gamespot.com/chief-chirpa/4005-7917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7918/", + "id": 7918, + "name": "Gantu", + "site_detail_url": "https://comicvine.gamespot.com/gantu/4005-7918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7919/", + "id": 7919, + "name": "Princess Kneesaa", + "site_detail_url": "https://comicvine.gamespot.com/princess-kneesaa/4005-7919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7921/", + "id": 7921, + "name": "Flight Leader", + "site_detail_url": "https://comicvine.gamespot.com/flight-leader/4005-7921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7925/", + "id": 7925, + "name": "Serena", + "site_detail_url": "https://comicvine.gamespot.com/serena/4005-7925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7926/", + "id": 7926, + "name": "Yungstar", + "site_detail_url": "https://comicvine.gamespot.com/yungstar/4005-7926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7927/", + "id": 7927, + "name": "Lord Krulos", + "site_detail_url": "https://comicvine.gamespot.com/lord-krulos/4005-7927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7929/", + "id": 7929, + "name": "Bitor", + "site_detail_url": "https://comicvine.gamespot.com/bitor/4005-7929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7930/", + "id": 7930, + "name": "Tark", + "site_detail_url": "https://comicvine.gamespot.com/tark/4005-7930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7932/", + "id": 7932, + "name": "Mind-Zei", + "site_detail_url": "https://comicvine.gamespot.com/mind-zei/4005-7932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7933/", + "id": 7933, + "name": "Gunnur", + "site_detail_url": "https://comicvine.gamespot.com/gunnur/4005-7933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7934/", + "id": 7934, + "name": "Magnus", + "site_detail_url": "https://comicvine.gamespot.com/magnus/4005-7934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7935/", + "id": 7935, + "name": "Turret", + "site_detail_url": "https://comicvine.gamespot.com/turret/4005-7935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7936/", + "id": 7936, + "name": "Sky", + "site_detail_url": "https://comicvine.gamespot.com/sky/4005-7936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7937/", + "id": 7937, + "name": "Commander Slither", + "site_detail_url": "https://comicvine.gamespot.com/commander-slither/4005-7937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7938/", + "id": 7938, + "name": "Antor", + "site_detail_url": "https://comicvine.gamespot.com/antor/4005-7938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7939/", + "id": 7939, + "name": "Officer Rasp", + "site_detail_url": "https://comicvine.gamespot.com/officer-rasp/4005-7939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7940/", + "id": 7940, + "name": "Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/destroyer/4005-7940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7941/", + "id": 7941, + "name": "Chiun", + "site_detail_url": "https://comicvine.gamespot.com/chiun/4005-7941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7942/", + "id": 7942, + "name": "Destroyer (Marlow)", + "site_detail_url": "https://comicvine.gamespot.com/destroyer-marlow/4005-7942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7944/", + "id": 7944, + "name": "Nuihc", + "site_detail_url": "https://comicvine.gamespot.com/nuihc/4005-7944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7947/", + "id": 7947, + "name": "Dr. Dark", + "site_detail_url": "https://comicvine.gamespot.com/dr-dark/4005-7947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7949/", + "id": 7949, + "name": "Rick Gordon", + "site_detail_url": "https://comicvine.gamespot.com/rick-gordon/4005-7949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7950/", + "id": 7950, + "name": "Jedda Walker", + "site_detail_url": "https://comicvine.gamespot.com/jedda-walker/4005-7950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7954/", + "id": 7954, + "name": "Dynak X", + "site_detail_url": "https://comicvine.gamespot.com/dynak-x/4005-7954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7961/", + "id": 7961, + "name": "Prince Kro-Tan", + "site_detail_url": "https://comicvine.gamespot.com/prince-kro-tan/4005-7961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7966/", + "id": 7966, + "name": "Demogog Tansteele", + "site_detail_url": "https://comicvine.gamespot.com/demogog-tansteele/4005-7966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7967/", + "id": 7967, + "name": "Collapsar", + "site_detail_url": "https://comicvine.gamespot.com/collapsar/4005-7967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7968/", + "id": 7968, + "name": "Superconductor", + "site_detail_url": "https://comicvine.gamespot.com/superconductor/4005-7968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7969/", + "id": 7969, + "name": "Sunder", + "site_detail_url": "https://comicvine.gamespot.com/sunder/4005-7969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7970/", + "id": 7970, + "name": "Permafrost", + "site_detail_url": "https://comicvine.gamespot.com/permafrost/4005-7970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7971/", + "id": 7971, + "name": "Truvisor", + "site_detail_url": "https://comicvine.gamespot.com/truvisor/4005-7971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7973/", + "id": 7973, + "name": "Motormouth", + "site_detail_url": "https://comicvine.gamespot.com/motormouth/4005-7973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7974/", + "id": 7974, + "name": "Ultra Marine", + "site_detail_url": "https://comicvine.gamespot.com/ultra-marine/4005-7974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7975/", + "id": 7975, + "name": "Colonel Liger", + "site_detail_url": "https://comicvine.gamespot.com/colonel-liger/4005-7975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7976/", + "id": 7976, + "name": "Stacy", + "site_detail_url": "https://comicvine.gamespot.com/stacy/4005-7976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7977/", + "id": 7977, + "name": "Sir Gawain", + "site_detail_url": "https://comicvine.gamespot.com/sir-gawain/4005-7977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7978/", + "id": 7978, + "name": "Dark Angel", + "site_detail_url": "https://comicvine.gamespot.com/dark-angel/4005-7978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7979/", + "id": 7979, + "name": "Killpower", + "site_detail_url": "https://comicvine.gamespot.com/killpower/4005-7979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7980/", + "id": 7980, + "name": "The Time Guardian", + "site_detail_url": "https://comicvine.gamespot.com/the-time-guardian/4005-7980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7981/", + "id": 7981, + "name": "Nathaniel Great Owl", + "site_detail_url": "https://comicvine.gamespot.com/nathaniel-great-owl/4005-7981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7982/", + "id": 7982, + "name": "Patti", + "site_detail_url": "https://comicvine.gamespot.com/patti/4005-7982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7983/", + "id": 7983, + "name": "Mikey", + "site_detail_url": "https://comicvine.gamespot.com/mikey/4005-7983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7984/", + "id": 7984, + "name": "Lori", + "site_detail_url": "https://comicvine.gamespot.com/lori/4005-7984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7986/", + "id": 7986, + "name": "Count Duckula", + "site_detail_url": "https://comicvine.gamespot.com/count-duckula/4005-7986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7988/", + "id": 7988, + "name": "Ganymede", + "site_detail_url": "https://comicvine.gamespot.com/ganymede/4005-7988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7990/", + "id": 7990, + "name": "Elysius", + "site_detail_url": "https://comicvine.gamespot.com/elysius/4005-7990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7991/", + "id": 7991, + "name": "Mentor", + "site_detail_url": "https://comicvine.gamespot.com/mentor/4005-7991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7998/", + "id": 7998, + "name": "Tenderheart Bear", + "site_detail_url": "https://comicvine.gamespot.com/tenderheart-bear/4005-7998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7999/", + "id": 7999, + "name": "Wish Bear", + "site_detail_url": "https://comicvine.gamespot.com/wish-bear/4005-7999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8003/", + "id": 8003, + "name": "Ick McMonster", + "site_detail_url": "https://comicvine.gamespot.com/ick-mcmonster/4005-8003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8004/", + "id": 8004, + "name": "Eek McMonster", + "site_detail_url": "https://comicvine.gamespot.com/eek-mcmonster/4005-8004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8005/", + "id": 8005, + "name": "Birthday Bear", + "site_detail_url": "https://comicvine.gamespot.com/birthday-bear/4005-8005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8006/", + "id": 8006, + "name": "Mr. McMonster", + "site_detail_url": "https://comicvine.gamespot.com/mr-mcmonster/4005-8006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8007/", + "id": 8007, + "name": "Mrs. McMonster", + "site_detail_url": "https://comicvine.gamespot.com/mrs-mcmonster/4005-8007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8010/", + "id": 8010, + "name": "Bedtime Bear", + "site_detail_url": "https://comicvine.gamespot.com/bedtime-bear/4005-8010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8012/", + "id": 8012, + "name": "Friend Bear", + "site_detail_url": "https://comicvine.gamespot.com/friend-bear/4005-8012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8014/", + "id": 8014, + "name": "Hugs", + "site_detail_url": "https://comicvine.gamespot.com/hugs/4005-8014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8015/", + "id": 8015, + "name": "Tugs", + "site_detail_url": "https://comicvine.gamespot.com/tugs/4005-8015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8016/", + "id": 8016, + "name": "Grams", + "site_detail_url": "https://comicvine.gamespot.com/grams/4005-8016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8022/", + "id": 8022, + "name": "Alex", + "site_detail_url": "https://comicvine.gamespot.com/alex/4005-8022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8023/", + "id": 8023, + "name": "Binky", + "site_detail_url": "https://comicvine.gamespot.com/binky/4005-8023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8024/", + "id": 8024, + "name": "Iggy", + "site_detail_url": "https://comicvine.gamespot.com/iggy/4005-8024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8026/", + "id": 8026, + "name": "Rick", + "site_detail_url": "https://comicvine.gamespot.com/rick/4005-8026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8028/", + "id": 8028, + "name": "Vanessa", + "site_detail_url": "https://comicvine.gamespot.com/vanessa/4005-8028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8029/", + "id": 8029, + "name": "Ann Slanders", + "site_detail_url": "https://comicvine.gamespot.com/ann-slanders/4005-8029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8031/", + "id": 8031, + "name": "Nurse Molly", + "site_detail_url": "https://comicvine.gamespot.com/nurse-molly/4005-8031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8032/", + "id": 8032, + "name": "Rex DeForrest III", + "site_detail_url": "https://comicvine.gamespot.com/rex-deforrest-iii/4005-8032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8035/", + "id": 8035, + "name": "Charnel", + "site_detail_url": "https://comicvine.gamespot.com/charnel/4005-8035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8036/", + "id": 8036, + "name": "Uri-El", + "site_detail_url": "https://comicvine.gamespot.com/uri-el/4005-8036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8038/", + "id": 8038, + "name": "Clara Menninger", + "site_detail_url": "https://comicvine.gamespot.com/clara-menninger/4005-8038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8039/", + "id": 8039, + "name": "Dolores", + "site_detail_url": "https://comicvine.gamespot.com/dolores/4005-8039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8040/", + "id": 8040, + "name": "Joy", + "site_detail_url": "https://comicvine.gamespot.com/joy/4005-8040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8041/", + "id": 8041, + "name": "Roadkill", + "site_detail_url": "https://comicvine.gamespot.com/roadkill/4005-8041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8042/", + "id": 8042, + "name": "Hairball", + "site_detail_url": "https://comicvine.gamespot.com/hairball/4005-8042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8044/", + "id": 8044, + "name": "Craig Blaze", + "site_detail_url": "https://comicvine.gamespot.com/craig-blaze/4005-8044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8045/", + "id": 8045, + "name": "Emma Blaze", + "site_detail_url": "https://comicvine.gamespot.com/emma-blaze/4005-8045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8046/", + "id": 8046, + "name": "Jesse Pinto", + "site_detail_url": "https://comicvine.gamespot.com/jesse-pinto/4005-8046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8047/", + "id": 8047, + "name": "Shelob", + "site_detail_url": "https://comicvine.gamespot.com/shelob/4005-8047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8048/", + "id": 8048, + "name": "Kody", + "site_detail_url": "https://comicvine.gamespot.com/kody/4005-8048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8050/", + "id": 8050, + "name": "Madame Yang Kwei Fei", + "site_detail_url": "https://comicvine.gamespot.com/madame-yang-kwei-fei/4005-8050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8051/", + "id": 8051, + "name": "Lobster Lad", + "site_detail_url": "https://comicvine.gamespot.com/lobster-lad/4005-8051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8052/", + "id": 8052, + "name": "Roach", + "site_detail_url": "https://comicvine.gamespot.com/roach/4005-8052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8054/", + "id": 8054, + "name": "Charnel", + "site_detail_url": "https://comicvine.gamespot.com/charnel/4005-8054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8060/", + "id": 8060, + "name": "Double-Tap", + "site_detail_url": "https://comicvine.gamespot.com/double-tap/4005-8060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8061/", + "id": 8061, + "name": "Bart Wegner", + "site_detail_url": "https://comicvine.gamespot.com/bart-wegner/4005-8061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8062/", + "id": 8062, + "name": "Eve Two Crows", + "site_detail_url": "https://comicvine.gamespot.com/eve-two-crows/4005-8062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8064/", + "id": 8064, + "name": "Gaunt", + "site_detail_url": "https://comicvine.gamespot.com/gaunt/4005-8064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8065/", + "id": 8065, + "name": "Hollowpoint Ninja", + "site_detail_url": "https://comicvine.gamespot.com/hollowpoint-ninja/4005-8065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8066/", + "id": 8066, + "name": "Darryl Licht", + "site_detail_url": "https://comicvine.gamespot.com/darryl-licht/4005-8066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8067/", + "id": 8067, + "name": "Ice Box Bob", + "site_detail_url": "https://comicvine.gamespot.com/ice-box-bob/4005-8067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8068/", + "id": 8068, + "name": "Holden Blevins", + "site_detail_url": "https://comicvine.gamespot.com/holden-blevins/4005-8068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8071/", + "id": 8071, + "name": "J.B. Shadrach", + "site_detail_url": "https://comicvine.gamespot.com/jb-shadrach/4005-8071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8072/", + "id": 8072, + "name": "R.L. Shadrach", + "site_detail_url": "https://comicvine.gamespot.com/rl-shadrach/4005-8072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8073/", + "id": 8073, + "name": "Roxanne Simpson Blaze", + "site_detail_url": "https://comicvine.gamespot.com/roxanne-simpson-blaze/4005-8073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8077/", + "id": 8077, + "name": "Regent", + "site_detail_url": "https://comicvine.gamespot.com/regent/4005-8077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8078/", + "id": 8078, + "name": "Initiate", + "site_detail_url": "https://comicvine.gamespot.com/initiate/4005-8078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8079/", + "id": 8079, + "name": "Seer", + "site_detail_url": "https://comicvine.gamespot.com/seer/4005-8079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8080/", + "id": 8080, + "name": "Trickster", + "site_detail_url": "https://comicvine.gamespot.com/trickster/4005-8080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8081/", + "id": 8081, + "name": "Raydar", + "site_detail_url": "https://comicvine.gamespot.com/raydar/4005-8081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8089/", + "id": 8089, + "name": "Ed Marrero", + "site_detail_url": "https://comicvine.gamespot.com/ed-marrero/4005-8089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8091/", + "id": 8091, + "name": "Brogue", + "site_detail_url": "https://comicvine.gamespot.com/brogue/4005-8091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8092/", + "id": 8092, + "name": "Molossus", + "site_detail_url": "https://comicvine.gamespot.com/molossus/4005-8092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8094/", + "id": 8094, + "name": "Michigan Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/michigan-wolverine/4005-8094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8095/", + "id": 8095, + "name": "Dark Kleenex", + "site_detail_url": "https://comicvine.gamespot.com/dark-kleenex/4005-8095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8096/", + "id": 8096, + "name": "Eric Tanner", + "site_detail_url": "https://comicvine.gamespot.com/eric-tanner/4005-8096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8099/", + "id": 8099, + "name": "Trevor Ochmonek", + "site_detail_url": "https://comicvine.gamespot.com/trevor-ochmonek/4005-8099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8100/", + "id": 8100, + "name": "Raquel Ochmonek", + "site_detail_url": "https://comicvine.gamespot.com/raquel-ochmonek/4005-8100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8101/", + "id": 8101, + "name": "Flo Shumway", + "site_detail_url": "https://comicvine.gamespot.com/flo-shumway/4005-8101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8102/", + "id": 8102, + "name": "Bob Shumway", + "site_detail_url": "https://comicvine.gamespot.com/bob-shumway/4005-8102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8103/", + "id": 8103, + "name": "Curtis Shumway", + "site_detail_url": "https://comicvine.gamespot.com/curtis-shumway/4005-8103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8104/", + "id": 8104, + "name": "Melmacula", + "site_detail_url": "https://comicvine.gamespot.com/melmacula/4005-8104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8105/", + "id": 8105, + "name": "Dorothy Halligan", + "site_detail_url": "https://comicvine.gamespot.com/dorothy-halligan/4005-8105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8106/", + "id": 8106, + "name": "Rhonda", + "site_detail_url": "https://comicvine.gamespot.com/rhonda/4005-8106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8108/", + "id": 8108, + "name": "Boris", + "site_detail_url": "https://comicvine.gamespot.com/boris/4005-8108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8109/", + "id": 8109, + "name": "Alpha", + "site_detail_url": "https://comicvine.gamespot.com/alpha/4005-8109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8114/", + "id": 8114, + "name": "Baron Ee-Lon", + "site_detail_url": "https://comicvine.gamespot.com/baron-ee-lon/4005-8114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8115/", + "id": 8115, + "name": "General Rokk", + "site_detail_url": "https://comicvine.gamespot.com/general-rokk/4005-8115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8116/", + "id": 8116, + "name": "Lady Kala", + "site_detail_url": "https://comicvine.gamespot.com/lady-kala/4005-8116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8120/", + "id": 8120, + "name": "Jasun", + "site_detail_url": "https://comicvine.gamespot.com/jasun/4005-8120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8121/", + "id": 8121, + "name": "Sairra", + "site_detail_url": "https://comicvine.gamespot.com/sairra/4005-8121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8122/", + "id": 8122, + "name": "Klar", + "site_detail_url": "https://comicvine.gamespot.com/klar/4005-8122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8124/", + "id": 8124, + "name": "Admiral Fury", + "site_detail_url": "https://comicvine.gamespot.com/admiral-fury/4005-8124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8125/", + "id": 8125, + "name": "Sgt. Blott", + "site_detail_url": "https://comicvine.gamespot.com/sgt-blott/4005-8125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8126/", + "id": 8126, + "name": "Lord Aerozar", + "site_detail_url": "https://comicvine.gamespot.com/lord-aerozar/4005-8126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8127/", + "id": 8127, + "name": "Alani", + "site_detail_url": "https://comicvine.gamespot.com/alani/4005-8127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8128/", + "id": 8128, + "name": "Archion", + "site_detail_url": "https://comicvine.gamespot.com/archion/4005-8128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8129/", + "id": 8129, + "name": "General Kronax", + "site_detail_url": "https://comicvine.gamespot.com/general-kronax/4005-8129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8130/", + "id": 8130, + "name": "Jad", + "site_detail_url": "https://comicvine.gamespot.com/jad/4005-8130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8131/", + "id": 8131, + "name": "Jason the Renegade", + "site_detail_url": "https://comicvine.gamespot.com/jason-the-renegade/4005-8131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8132/", + "id": 8132, + "name": "Fitz", + "site_detail_url": "https://comicvine.gamespot.com/fitz/4005-8132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8133/", + "id": 8133, + "name": "Hook", + "site_detail_url": "https://comicvine.gamespot.com/hook/4005-8133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8134/", + "id": 8134, + "name": "Major Trask", + "site_detail_url": "https://comicvine.gamespot.com/major-trask/4005-8134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8137/", + "id": 8137, + "name": "Omen", + "site_detail_url": "https://comicvine.gamespot.com/omen/4005-8137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8138/", + "id": 8138, + "name": "Dr. Katherine Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/dr-katherine-reynolds/4005-8138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8139/", + "id": 8139, + "name": "Jennifer Kale", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-kale/4005-8139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8140/", + "id": 8140, + "name": "Martin Gold", + "site_detail_url": "https://comicvine.gamespot.com/martin-gold/4005-8140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8141/", + "id": 8141, + "name": "Reeve Calder", + "site_detail_url": "https://comicvine.gamespot.com/reeve-calder/4005-8141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8142/", + "id": 8142, + "name": "Hildreth", + "site_detail_url": "https://comicvine.gamespot.com/hildreth/4005-8142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8143/", + "id": 8143, + "name": "Ariann", + "site_detail_url": "https://comicvine.gamespot.com/ariann/4005-8143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8144/", + "id": 8144, + "name": "Dr. Chan Luichow", + "site_detail_url": "https://comicvine.gamespot.com/dr-chan-luichow/4005-8144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8145/", + "id": 8145, + "name": "Fin Fang Foom", + "site_detail_url": "https://comicvine.gamespot.com/fin-fang-foom/4005-8145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8146/", + "id": 8146, + "name": "Bernard Drabble", + "site_detail_url": "https://comicvine.gamespot.com/bernard-drabble/4005-8146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8147/", + "id": 8147, + "name": "Pandro Horovitz", + "site_detail_url": "https://comicvine.gamespot.com/pandro-horovitz/4005-8147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8148/", + "id": 8148, + "name": "Daniel Boyd", + "site_detail_url": "https://comicvine.gamespot.com/daniel-boyd/4005-8148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8149/", + "id": 8149, + "name": "Charles Blackwater", + "site_detail_url": "https://comicvine.gamespot.com/charles-blackwater/4005-8149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8163/", + "id": 8163, + "name": "Leila Taylor", + "site_detail_url": "https://comicvine.gamespot.com/leila-taylor/4005-8163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8281/", + "id": 8281, + "name": "Origin", + "site_detail_url": "https://comicvine.gamespot.com/origin/4005-8281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8283/", + "id": 8283, + "name": "Lazarus", + "site_detail_url": "https://comicvine.gamespot.com/lazarus/4005-8283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8284/", + "id": 8284, + "name": "Jonathan Shepherd", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-shepherd/4005-8284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8289/", + "id": 8289, + "name": "Colonel Malenky", + "site_detail_url": "https://comicvine.gamespot.com/colonel-malenky/4005-8289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8296/", + "id": 8296, + "name": "Witness", + "site_detail_url": "https://comicvine.gamespot.com/witness/4005-8296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8298/", + "id": 8298, + "name": "Living Monolith", + "site_detail_url": "https://comicvine.gamespot.com/living-monolith/4005-8298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8300/", + "id": 8300, + "name": "Trevor Fitzroy", + "site_detail_url": "https://comicvine.gamespot.com/trevor-fitzroy/4005-8300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8301/", + "id": 8301, + "name": "Locust", + "site_detail_url": "https://comicvine.gamespot.com/locust/4005-8301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8302/", + "id": 8302, + "name": "Askani", + "site_detail_url": "https://comicvine.gamespot.com/askani/4005-8302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8303/", + "id": 8303, + "name": "Magik", + "site_detail_url": "https://comicvine.gamespot.com/magik/4005-8303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8304/", + "id": 8304, + "name": "Moira MacTaggert", + "site_detail_url": "https://comicvine.gamespot.com/moira-mactaggert/4005-8304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8306/", + "id": 8306, + "name": "Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mastermind/4005-8306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8307/", + "id": 8307, + "name": "Maverick", + "site_detail_url": "https://comicvine.gamespot.com/maverick/4005-8307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8373/", + "id": 8373, + "name": "Riot", + "site_detail_url": "https://comicvine.gamespot.com/riot/4005-8373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8424/", + "id": 8424, + "name": "Sandi", + "site_detail_url": "https://comicvine.gamespot.com/sandi/4005-8424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8425/", + "id": 8425, + "name": "Outlaw", + "site_detail_url": "https://comicvine.gamespot.com/outlaw/4005-8425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8426/", + "id": 8426, + "name": "Mary Zero", + "site_detail_url": "https://comicvine.gamespot.com/mary-zero/4005-8426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8427/", + "id": 8427, + "name": "Higashi", + "site_detail_url": "https://comicvine.gamespot.com/higashi/4005-8427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8428/", + "id": 8428, + "name": "Saguri", + "site_detail_url": "https://comicvine.gamespot.com/saguri/4005-8428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8429/", + "id": 8429, + "name": "Arcade", + "site_detail_url": "https://comicvine.gamespot.com/arcade/4005-8429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8464/", + "id": 8464, + "name": "Lester Brown", + "site_detail_url": "https://comicvine.gamespot.com/lester-brown/4005-8464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8465/", + "id": 8465, + "name": "Scott McLawry", + "site_detail_url": "https://comicvine.gamespot.com/scott-mclawry/4005-8465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8468/", + "id": 8468, + "name": "The Roman", + "site_detail_url": "https://comicvine.gamespot.com/the-roman/4005-8468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8469/", + "id": 8469, + "name": "The Sweeper", + "site_detail_url": "https://comicvine.gamespot.com/the-sweeper/4005-8469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8470/", + "id": 8470, + "name": "Lady Deathstrike", + "site_detail_url": "https://comicvine.gamespot.com/lady-deathstrike/4005-8470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8474/", + "id": 8474, + "name": "Snowbird", + "site_detail_url": "https://comicvine.gamespot.com/snowbird/4005-8474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8475/", + "id": 8475, + "name": "Cardinal Panzer", + "site_detail_url": "https://comicvine.gamespot.com/cardinal-panzer/4005-8475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8476/", + "id": 8476, + "name": "Cardinal Parente", + "site_detail_url": "https://comicvine.gamespot.com/cardinal-parente/4005-8476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8477/", + "id": 8477, + "name": "Dogma", + "site_detail_url": "https://comicvine.gamespot.com/dogma/4005-8477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8478/", + "id": 8478, + "name": "The Inquisitor", + "site_detail_url": "https://comicvine.gamespot.com/the-inquisitor/4005-8478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8667/", + "id": 8667, + "name": "Kaine", + "site_detail_url": "https://comicvine.gamespot.com/kaine/4005-8667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8668/", + "id": 8668, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-8668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8669/", + "id": 8669, + "name": "Black Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/black-tarantula/4005-8669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8670/", + "id": 8670, + "name": "Arthur Weadon", + "site_detail_url": "https://comicvine.gamespot.com/arthur-weadon/4005-8670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8672/", + "id": 8672, + "name": "Quickwire", + "site_detail_url": "https://comicvine.gamespot.com/quickwire/4005-8672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8673/", + "id": 8673, + "name": "Canis", + "site_detail_url": "https://comicvine.gamespot.com/canis/4005-8673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8674/", + "id": 8674, + "name": "Buzz", + "site_detail_url": "https://comicvine.gamespot.com/buzz/4005-8674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8675/", + "id": 8675, + "name": "Ladyhawk", + "site_detail_url": "https://comicvine.gamespot.com/ladyhawk/4005-8675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8676/", + "id": 8676, + "name": "Darkdevil", + "site_detail_url": "https://comicvine.gamespot.com/darkdevil/4005-8676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8677/", + "id": 8677, + "name": "Chesbro", + "site_detail_url": "https://comicvine.gamespot.com/chesbro/4005-8677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8679/", + "id": 8679, + "name": "Wing", + "site_detail_url": "https://comicvine.gamespot.com/wing/4005-8679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8682/", + "id": 8682, + "name": "Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham/4005-8682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8683/", + "id": 8683, + "name": "Bunsen Bunny", + "site_detail_url": "https://comicvine.gamespot.com/bunsen-bunny/4005-8683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8684/", + "id": 8684, + "name": "Upton Adam Stray", + "site_detail_url": "https://comicvine.gamespot.com/upton-adam-stray/4005-8684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8685/", + "id": 8685, + "name": "J. Jeremiah Jackal, Jr.", + "site_detail_url": "https://comicvine.gamespot.com/j-jeremiah-jackal-jr/4005-8685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8691/", + "id": 8691, + "name": "The Bee-Yonder", + "site_detail_url": "https://comicvine.gamespot.com/the-bee-yonder/4005-8691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8692/", + "id": 8692, + "name": "Iron Mouse", + "site_detail_url": "https://comicvine.gamespot.com/iron-mouse/4005-8692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8693/", + "id": 8693, + "name": "Captain Americat", + "site_detail_url": "https://comicvine.gamespot.com/captain-americat/4005-8693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8694/", + "id": 8694, + "name": "Thrr", + "site_detail_url": "https://comicvine.gamespot.com/thrr/4005-8694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8695/", + "id": 8695, + "name": "Goose Rider", + "site_detail_url": "https://comicvine.gamespot.com/goose-rider/4005-8695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8697/", + "id": 8697, + "name": "Kitty-Bug", + "site_detail_url": "https://comicvine.gamespot.com/kitty-bug/4005-8697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8698/", + "id": 8698, + "name": "Bee-Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/bee-dazzler/4005-8698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8700/", + "id": 8700, + "name": "Magsquito", + "site_detail_url": "https://comicvine.gamespot.com/magsquito/4005-8700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8701/", + "id": 8701, + "name": "Looky", + "site_detail_url": "https://comicvine.gamespot.com/looky/4005-8701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8702/", + "id": 8702, + "name": "Doctor Octopussycat", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopussycat/4005-8702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8704/", + "id": 8704, + "name": "Nick Furry", + "site_detail_url": "https://comicvine.gamespot.com/nick-furry/4005-8704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8705/", + "id": 8705, + "name": "Doc Clamson", + "site_detail_url": "https://comicvine.gamespot.com/doc-clamson/4005-8705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8706/", + "id": 8706, + "name": "Mary Jane Waterbuffalo", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-waterbuffalo/4005-8706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8707/", + "id": 8707, + "name": "Dodo Dugan", + "site_detail_url": "https://comicvine.gamespot.com/dodo-dugan/4005-8707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8709/", + "id": 8709, + "name": "Paste Pot Peep", + "site_detail_url": "https://comicvine.gamespot.com/paste-pot-peep/4005-8709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8710/", + "id": 8710, + "name": "Baron Zebro", + "site_detail_url": "https://comicvine.gamespot.com/baron-zebro/4005-8710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8711/", + "id": 8711, + "name": "The Mad Stinker", + "site_detail_url": "https://comicvine.gamespot.com/the-mad-stinker/4005-8711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8712/", + "id": 8712, + "name": "Ham-Droid", + "site_detail_url": "https://comicvine.gamespot.com/ham-droid/4005-8712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8713/", + "id": 8713, + "name": "The Mandaringtail", + "site_detail_url": "https://comicvine.gamespot.com/the-mandaringtail/4005-8713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8714/", + "id": 8714, + "name": "Doo Wop Doo", + "site_detail_url": "https://comicvine.gamespot.com/doo-wop-doo/4005-8714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8715/", + "id": 8715, + "name": "Croak", + "site_detail_url": "https://comicvine.gamespot.com/croak/4005-8715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8718/", + "id": 8718, + "name": "Bantam", + "site_detail_url": "https://comicvine.gamespot.com/bantam/4005-8718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8719/", + "id": 8719, + "name": "Flash Tomcat", + "site_detail_url": "https://comicvine.gamespot.com/flash-tomcat/4005-8719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8727/", + "id": 8727, + "name": "Xlyym", + "site_detail_url": "https://comicvine.gamespot.com/xlyym/4005-8727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8728/", + "id": 8728, + "name": "Remora", + "site_detail_url": "https://comicvine.gamespot.com/remora/4005-8728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8729/", + "id": 8729, + "name": "Nygorn", + "site_detail_url": "https://comicvine.gamespot.com/nygorn/4005-8729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8730/", + "id": 8730, + "name": "Kreeg", + "site_detail_url": "https://comicvine.gamespot.com/kreeg/4005-8730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8731/", + "id": 8731, + "name": "Insidio", + "site_detail_url": "https://comicvine.gamespot.com/insidio/4005-8731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8734/", + "id": 8734, + "name": "The Hobgobbler", + "site_detail_url": "https://comicvine.gamespot.com/the-hobgobbler/4005-8734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8735/", + "id": 8735, + "name": "Pigeon", + "site_detail_url": "https://comicvine.gamespot.com/pigeon/4005-8735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8736/", + "id": 8736, + "name": "Squawkeye", + "site_detail_url": "https://comicvine.gamespot.com/squawkeye/4005-8736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8738/", + "id": 8738, + "name": "The Scarlet Pooch", + "site_detail_url": "https://comicvine.gamespot.com/the-scarlet-pooch/4005-8738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8740/", + "id": 8740, + "name": "Kangaroo The Conqueror", + "site_detail_url": "https://comicvine.gamespot.com/kangaroo-the-conqueror/4005-8740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8741/", + "id": 8741, + "name": "Ultrog", + "site_detail_url": "https://comicvine.gamespot.com/ultrog/4005-8741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8742/", + "id": 8742, + "name": "Ozzy Ostrich", + "site_detail_url": "https://comicvine.gamespot.com/ozzy-ostrich/4005-8742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8744/", + "id": 8744, + "name": "The Pawn Broker", + "site_detail_url": "https://comicvine.gamespot.com/the-pawn-broker/4005-8744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8746/", + "id": 8746, + "name": "The Grey Gopher", + "site_detail_url": "https://comicvine.gamespot.com/the-grey-gopher/4005-8746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8747/", + "id": 8747, + "name": "Ringmouseter", + "site_detail_url": "https://comicvine.gamespot.com/ringmouseter/4005-8747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8748/", + "id": 8748, + "name": "Diablorilla", + "site_detail_url": "https://comicvine.gamespot.com/diablorilla/4005-8748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8749/", + "id": 8749, + "name": "Paw", + "site_detail_url": "https://comicvine.gamespot.com/paw/4005-8749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8750/", + "id": 8750, + "name": "Hate-Mongrel", + "site_detail_url": "https://comicvine.gamespot.com/hate-mongrel/4005-8750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8751/", + "id": 8751, + "name": "Electropotamus", + "site_detail_url": "https://comicvine.gamespot.com/electropotamus/4005-8751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8752/", + "id": 8752, + "name": "Sylvester Stallion", + "site_detail_url": "https://comicvine.gamespot.com/sylvester-stallion/4005-8752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8754/", + "id": 8754, + "name": "Harry Ocelot", + "site_detail_url": "https://comicvine.gamespot.com/harry-ocelot/4005-8754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8755/", + "id": 8755, + "name": "Mooseterio", + "site_detail_url": "https://comicvine.gamespot.com/mooseterio/4005-8755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8757/", + "id": 8757, + "name": "Quackula", + "site_detail_url": "https://comicvine.gamespot.com/quackula/4005-8757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8758/", + "id": 8758, + "name": "Moooooooommy", + "site_detail_url": "https://comicvine.gamespot.com/moooooooommy/4005-8758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8759/", + "id": 8759, + "name": "The Pinhead Of Crime", + "site_detail_url": "https://comicvine.gamespot.com/the-pinhead-of-crime/4005-8759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8760/", + "id": 8760, + "name": "Old McDonald", + "site_detail_url": "https://comicvine.gamespot.com/old-mcdonald/4005-8760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8762/", + "id": 8762, + "name": "Deathsquawk", + "site_detail_url": "https://comicvine.gamespot.com/deathsquawk/4005-8762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8763/", + "id": 8763, + "name": "Sonny Quacker", + "site_detail_url": "https://comicvine.gamespot.com/sonny-quacker/4005-8763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8764/", + "id": 8764, + "name": "Ricardo Slug", + "site_detail_url": "https://comicvine.gamespot.com/ricardo-slug/4005-8764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8766/", + "id": 8766, + "name": "The Kingpig", + "site_detail_url": "https://comicvine.gamespot.com/the-kingpig/4005-8766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8767/", + "id": 8767, + "name": "Mooster Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/mooster-fantastic/4005-8767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8768/", + "id": 8768, + "name": "The Invisible Gorilla", + "site_detail_url": "https://comicvine.gamespot.com/the-invisible-gorilla/4005-8768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8769/", + "id": 8769, + "name": "The Simian Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-simian-torch/4005-8769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8770/", + "id": 8770, + "name": "The Thang", + "site_detail_url": "https://comicvine.gamespot.com/the-thang/4005-8770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8771/", + "id": 8771, + "name": "Galactypus", + "site_detail_url": "https://comicvine.gamespot.com/galactypus/4005-8771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8772/", + "id": 8772, + "name": "Dragon-Lassy", + "site_detail_url": "https://comicvine.gamespot.com/dragon-lassy/4005-8772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8777/", + "id": 8777, + "name": "Jinx", + "site_detail_url": "https://comicvine.gamespot.com/jinx/4005-8777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8778/", + "id": 8778, + "name": "Winston Caribou", + "site_detail_url": "https://comicvine.gamespot.com/winston-caribou/4005-8778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8780/", + "id": 8780, + "name": "Markup", + "site_detail_url": "https://comicvine.gamespot.com/markup/4005-8780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8781/", + "id": 8781, + "name": "J. Hamilton Hampster", + "site_detail_url": "https://comicvine.gamespot.com/j-hamilton-hampster/4005-8781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8782/", + "id": 8782, + "name": "Orson Whales", + "site_detail_url": "https://comicvine.gamespot.com/orson-whales/4005-8782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8784/", + "id": 8784, + "name": "Trieste", + "site_detail_url": "https://comicvine.gamespot.com/trieste/4005-8784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8786/", + "id": 8786, + "name": "The Asinine Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-asinine-torch/4005-8786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8787/", + "id": 8787, + "name": "The Sub-Marsupial", + "site_detail_url": "https://comicvine.gamespot.com/the-sub-marsupial/4005-8787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8788/", + "id": 8788, + "name": "The Weaselly Whizzard", + "site_detail_url": "https://comicvine.gamespot.com/the-weaselly-whizzard/4005-8788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8789/", + "id": 8789, + "name": "Hog-Zilla", + "site_detail_url": "https://comicvine.gamespot.com/hog-zilla/4005-8789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8790/", + "id": 8790, + "name": "Raymond Bear", + "site_detail_url": "https://comicvine.gamespot.com/raymond-bear/4005-8790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8791/", + "id": 8791, + "name": "Jacques Gooseteau", + "site_detail_url": "https://comicvine.gamespot.com/jacques-gooseteau/4005-8791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8792/", + "id": 8792, + "name": "Mechano-Hog-Zilla", + "site_detail_url": "https://comicvine.gamespot.com/mechano-hog-zilla/4005-8792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8793/", + "id": 8793, + "name": "Mr. Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mr-mastermind/4005-8793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8794/", + "id": 8794, + "name": "Silver Squirrel", + "site_detail_url": "https://comicvine.gamespot.com/silver-squirrel/4005-8794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8795/", + "id": 8795, + "name": "The Watchdog", + "site_detail_url": "https://comicvine.gamespot.com/the-watchdog/4005-8795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8797/", + "id": 8797, + "name": "Froggy Nelson", + "site_detail_url": "https://comicvine.gamespot.com/froggy-nelson/4005-8797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8798/", + "id": 8798, + "name": "Sanity Claws", + "site_detail_url": "https://comicvine.gamespot.com/sanity-claws/4005-8798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8799/", + "id": 8799, + "name": "Snow-Youse", + "site_detail_url": "https://comicvine.gamespot.com/snow-youse/4005-8799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8800/", + "id": 8800, + "name": "Aroma", + "site_detail_url": "https://comicvine.gamespot.com/aroma/4005-8800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8802/", + "id": 8802, + "name": "Hockeypuck", + "site_detail_url": "https://comicvine.gamespot.com/hockeypuck/4005-8802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8803/", + "id": 8803, + "name": "Charles Foster Pupp", + "site_detail_url": "https://comicvine.gamespot.com/charles-foster-pupp/4005-8803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8805/", + "id": 8805, + "name": "Herbdill", + "site_detail_url": "https://comicvine.gamespot.com/herbdill/4005-8805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8806/", + "id": 8806, + "name": "Odarn", + "site_detail_url": "https://comicvine.gamespot.com/odarn/4005-8806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8808/", + "id": 8808, + "name": "Captain Reno", + "site_detail_url": "https://comicvine.gamespot.com/captain-reno/4005-8808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8809/", + "id": 8809, + "name": "Loreli Lemur", + "site_detail_url": "https://comicvine.gamespot.com/loreli-lemur/4005-8809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8813/", + "id": 8813, + "name": "One-Feather", + "site_detail_url": "https://comicvine.gamespot.com/one-feather/4005-8813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8814/", + "id": 8814, + "name": "Chief Sitting Duck", + "site_detail_url": "https://comicvine.gamespot.com/chief-sitting-duck/4005-8814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8816/", + "id": 8816, + "name": "Nagneto", + "site_detail_url": "https://comicvine.gamespot.com/nagneto/4005-8816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8817/", + "id": 8817, + "name": "Minkzy Byline", + "site_detail_url": "https://comicvine.gamespot.com/minkzy-byline/4005-8817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8818/", + "id": 8818, + "name": "Rubert Hedgehog", + "site_detail_url": "https://comicvine.gamespot.com/rubert-hedgehog/4005-8818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8819/", + "id": 8819, + "name": "Buzzard", + "site_detail_url": "https://comicvine.gamespot.com/buzzard/4005-8819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8820/", + "id": 8820, + "name": "Bullfrog", + "site_detail_url": "https://comicvine.gamespot.com/bullfrog/4005-8820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8821/", + "id": 8821, + "name": "Professor X-Bug", + "site_detail_url": "https://comicvine.gamespot.com/professor-x-bug/4005-8821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8824/", + "id": 8824, + "name": "Codabac", + "site_detail_url": "https://comicvine.gamespot.com/codabac/4005-8824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8825/", + "id": 8825, + "name": "Pelias", + "site_detail_url": "https://comicvine.gamespot.com/pelias/4005-8825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8827/", + "id": 8827, + "name": "Kate McLellan", + "site_detail_url": "https://comicvine.gamespot.com/kate-mclellan/4005-8827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8828/", + "id": 8828, + "name": "Ben Gallagher", + "site_detail_url": "https://comicvine.gamespot.com/ben-gallagher/4005-8828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8829/", + "id": 8829, + "name": "Adam Crown", + "site_detail_url": "https://comicvine.gamespot.com/adam-crown/4005-8829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8830/", + "id": 8830, + "name": "Dai Thomas", + "site_detail_url": "https://comicvine.gamespot.com/dai-thomas/4005-8830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8831/", + "id": 8831, + "name": "Dolph", + "site_detail_url": "https://comicvine.gamespot.com/dolph/4005-8831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8832/", + "id": 8832, + "name": "Francesca Lexley Grace", + "site_detail_url": "https://comicvine.gamespot.com/francesca-lexley-grace/4005-8832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8833/", + "id": 8833, + "name": "Brent McCinley", + "site_detail_url": "https://comicvine.gamespot.com/brent-mccinley/4005-8833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8836/", + "id": 8836, + "name": "Richard Dorfmann", + "site_detail_url": "https://comicvine.gamespot.com/richard-dorfmann/4005-8836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8837/", + "id": 8837, + "name": "Les Buchanan", + "site_detail_url": "https://comicvine.gamespot.com/les-buchanan/4005-8837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8839/", + "id": 8839, + "name": "Randy Frewin", + "site_detail_url": "https://comicvine.gamespot.com/randy-frewin/4005-8839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8840/", + "id": 8840, + "name": "Cam McClellan", + "site_detail_url": "https://comicvine.gamespot.com/cam-mcclellan/4005-8840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8841/", + "id": 8841, + "name": "Albion", + "site_detail_url": "https://comicvine.gamespot.com/albion/4005-8841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8844/", + "id": 8844, + "name": "Leo De Benning", + "site_detail_url": "https://comicvine.gamespot.com/leo-de-benning/4005-8844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8845/", + "id": 8845, + "name": "Rowan Gowell", + "site_detail_url": "https://comicvine.gamespot.com/rowan-gowell/4005-8845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8847/", + "id": 8847, + "name": "Kiboko", + "site_detail_url": "https://comicvine.gamespot.com/kiboko/4005-8847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8848/", + "id": 8848, + "name": "Dionne Bell", + "site_detail_url": "https://comicvine.gamespot.com/dionne-bell/4005-8848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8850/", + "id": 8850, + "name": "Alistaire Stuart", + "site_detail_url": "https://comicvine.gamespot.com/alistaire-stuart/4005-8850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8853/", + "id": 8853, + "name": "Ian Chalmers", + "site_detail_url": "https://comicvine.gamespot.com/ian-chalmers/4005-8853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8944/", + "id": 8944, + "name": "Delatriz Betancourt", + "site_detail_url": "https://comicvine.gamespot.com/delatriz-betancourt/4005-8944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8946/", + "id": 8946, + "name": "Black Rose", + "site_detail_url": "https://comicvine.gamespot.com/black-rose/4005-8946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8948/", + "id": 8948, + "name": "Captain Yamato", + "site_detail_url": "https://comicvine.gamespot.com/captain-yamato/4005-8948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-8959/", + "id": 8959, + "name": "Agent Jeff Brown", + "site_detail_url": "https://comicvine.gamespot.com/agent-jeff-brown/4005-8959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9033/", + "id": 9033, + "name": "Milla Donovan", + "site_detail_url": "https://comicvine.gamespot.com/milla-donovan/4005-9033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9034/", + "id": 9034, + "name": "Quinn", + "site_detail_url": "https://comicvine.gamespot.com/quinn/4005-9034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9035/", + "id": 9035, + "name": "Sano Orii", + "site_detail_url": "https://comicvine.gamespot.com/sano-orii/4005-9035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9038/", + "id": 9038, + "name": "Echo", + "site_detail_url": "https://comicvine.gamespot.com/echo/4005-9038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9039/", + "id": 9039, + "name": "Turk", + "site_detail_url": "https://comicvine.gamespot.com/turk/4005-9039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9081/", + "id": 9081, + "name": "Zeitgeist", + "site_detail_url": "https://comicvine.gamespot.com/zeitgeist/4005-9081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9118/", + "id": 9118, + "name": "Sara Robbins", + "site_detail_url": "https://comicvine.gamespot.com/sara-robbins/4005-9118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9121/", + "id": 9121, + "name": "Cobweb", + "site_detail_url": "https://comicvine.gamespot.com/cobweb/4005-9121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9122/", + "id": 9122, + "name": "Lance Hunter", + "site_detail_url": "https://comicvine.gamespot.com/lance-hunter/4005-9122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9123/", + "id": 9123, + "name": "The Manipulator", + "site_detail_url": "https://comicvine.gamespot.com/the-manipulator/4005-9123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9124/", + "id": 9124, + "name": "Nykonn", + "site_detail_url": "https://comicvine.gamespot.com/nykonn/4005-9124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9125/", + "id": 9125, + "name": "Highwayman", + "site_detail_url": "https://comicvine.gamespot.com/highwayman/4005-9125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9156/", + "id": 9156, + "name": "Margaret Dillon", + "site_detail_url": "https://comicvine.gamespot.com/margaret-dillon/4005-9156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9202/", + "id": 9202, + "name": "Lady Burning Fish", + "site_detail_url": "https://comicvine.gamespot.com/lady-burning-fish/4005-9202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9210/", + "id": 9210, + "name": "Oxo", + "site_detail_url": "https://comicvine.gamespot.com/oxo/4005-9210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9366/", + "id": 9366, + "name": "Major Mapleleaf", + "site_detail_url": "https://comicvine.gamespot.com/major-mapleleaf/4005-9366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9367/", + "id": 9367, + "name": "Nemesis", + "site_detail_url": "https://comicvine.gamespot.com/nemesis/4005-9367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9368/", + "id": 9368, + "name": "Yukon Jack", + "site_detail_url": "https://comicvine.gamespot.com/yukon-jack/4005-9368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9369/", + "id": 9369, + "name": "Centennial", + "site_detail_url": "https://comicvine.gamespot.com/centennial/4005-9369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9371/", + "id": 9371, + "name": "Makkamakkamaktsptoo", + "site_detail_url": "https://comicvine.gamespot.com/makkamakkamaktsptoo/4005-9371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9375/", + "id": 9375, + "name": "Tessie the Typist", + "site_detail_url": "https://comicvine.gamespot.com/tessie-the-typist/4005-9375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9378/", + "id": 9378, + "name": "Tar", + "site_detail_url": "https://comicvine.gamespot.com/tar/4005-9378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9382/", + "id": 9382, + "name": "Dr. Nutzy", + "site_detail_url": "https://comicvine.gamespot.com/dr-nutzy/4005-9382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9383/", + "id": 9383, + "name": "Rolly", + "site_detail_url": "https://comicvine.gamespot.com/rolly/4005-9383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9384/", + "id": 9384, + "name": "Solly", + "site_detail_url": "https://comicvine.gamespot.com/solly/4005-9384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9386/", + "id": 9386, + "name": "Killdeer", + "site_detail_url": "https://comicvine.gamespot.com/killdeer/4005-9386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9387/", + "id": 9387, + "name": "Kite", + "site_detail_url": "https://comicvine.gamespot.com/kite/4005-9387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9388/", + "id": 9388, + "name": "Shrike", + "site_detail_url": "https://comicvine.gamespot.com/shrike/4005-9388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9389/", + "id": 9389, + "name": "Rapture", + "site_detail_url": "https://comicvine.gamespot.com/rapture/4005-9389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9390/", + "id": 9390, + "name": "George", + "site_detail_url": "https://comicvine.gamespot.com/george/4005-9390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9392/", + "id": 9392, + "name": "The Professor", + "site_detail_url": "https://comicvine.gamespot.com/the-professor/4005-9392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9393/", + "id": 9393, + "name": "Abraham Cornelius", + "site_detail_url": "https://comicvine.gamespot.com/abraham-cornelius/4005-9393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9394/", + "id": 9394, + "name": "Emily Rand", + "site_detail_url": "https://comicvine.gamespot.com/emily-rand/4005-9394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9395/", + "id": 9395, + "name": "Gerald O'Higgins", + "site_detail_url": "https://comicvine.gamespot.com/gerald-ohiggins/4005-9395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9397/", + "id": 9397, + "name": "Gottlieb", + "site_detail_url": "https://comicvine.gamespot.com/gottlieb/4005-9397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9401/", + "id": 9401, + "name": "Cassie Lathrop", + "site_detail_url": "https://comicvine.gamespot.com/cassie-lathrop/4005-9401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9403/", + "id": 9403, + "name": "Rojas", + "site_detail_url": "https://comicvine.gamespot.com/rojas/4005-9403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9404/", + "id": 9404, + "name": "Nestor Garcia", + "site_detail_url": "https://comicvine.gamespot.com/nestor-garcia/4005-9404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9405/", + "id": 9405, + "name": "Maria Murillo", + "site_detail_url": "https://comicvine.gamespot.com/maria-murillo/4005-9405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9406/", + "id": 9406, + "name": "Angelica Rojas", + "site_detail_url": "https://comicvine.gamespot.com/angelica-rojas/4005-9406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9407/", + "id": 9407, + "name": "Agent Aguinaga", + "site_detail_url": "https://comicvine.gamespot.com/agent-aguinaga/4005-9407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9409/", + "id": 9409, + "name": "Hector", + "site_detail_url": "https://comicvine.gamespot.com/hector/4005-9409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9411/", + "id": 9411, + "name": "Lake", + "site_detail_url": "https://comicvine.gamespot.com/lake/4005-9411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9412/", + "id": 9412, + "name": "Mendez", + "site_detail_url": "https://comicvine.gamespot.com/mendez/4005-9412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9413/", + "id": 9413, + "name": "Sycamore Blaine", + "site_detail_url": "https://comicvine.gamespot.com/sycamore-blaine/4005-9413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9414/", + "id": 9414, + "name": "Seraph", + "site_detail_url": "https://comicvine.gamespot.com/seraph/4005-9414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9416/", + "id": 9416, + "name": "Joe Braddock", + "site_detail_url": "https://comicvine.gamespot.com/joe-braddock/4005-9416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9417/", + "id": 9417, + "name": "Cry", + "site_detail_url": "https://comicvine.gamespot.com/cry/4005-9417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9418/", + "id": 9418, + "name": "Tom Leeds", + "site_detail_url": "https://comicvine.gamespot.com/tom-leeds/4005-9418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9419/", + "id": 9419, + "name": "Dennis Terril", + "site_detail_url": "https://comicvine.gamespot.com/dennis-terril/4005-9419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9450/", + "id": 9450, + "name": "Overhawk", + "site_detail_url": "https://comicvine.gamespot.com/overhawk/4005-9450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9451/", + "id": 9451, + "name": "Portal", + "site_detail_url": "https://comicvine.gamespot.com/portal/4005-9451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9453/", + "id": 9453, + "name": "Ned Dobbs", + "site_detail_url": "https://comicvine.gamespot.com/ned-dobbs/4005-9453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9454/", + "id": 9454, + "name": "Philippe Bazin", + "site_detail_url": "https://comicvine.gamespot.com/philippe-bazin/4005-9454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9455/", + "id": 9455, + "name": "Allegra Bazin", + "site_detail_url": "https://comicvine.gamespot.com/allegra-bazin/4005-9455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9456/", + "id": 9456, + "name": "Savage Steel", + "site_detail_url": "https://comicvine.gamespot.com/savage-steel/4005-9456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9457/", + "id": 9457, + "name": "Damek", + "site_detail_url": "https://comicvine.gamespot.com/damek/4005-9457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9458/", + "id": 9458, + "name": "Mike Powell", + "site_detail_url": "https://comicvine.gamespot.com/mike-powell/4005-9458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9460/", + "id": 9460, + "name": "Harry Lennox", + "site_detail_url": "https://comicvine.gamespot.com/harry-lennox/4005-9460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9463/", + "id": 9463, + "name": "Evilhawk", + "site_detail_url": "https://comicvine.gamespot.com/evilhawk/4005-9463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9464/", + "id": 9464, + "name": "Ocsh", + "site_detail_url": "https://comicvine.gamespot.com/ocsh/4005-9464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9467/", + "id": 9467, + "name": "Broderick Bazin", + "site_detail_url": "https://comicvine.gamespot.com/broderick-bazin/4005-9467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9469/", + "id": 9469, + "name": "Jason Powell", + "site_detail_url": "https://comicvine.gamespot.com/jason-powell/4005-9469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9471/", + "id": 9471, + "name": "Grace Powell", + "site_detail_url": "https://comicvine.gamespot.com/grace-powell/4005-9471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9472/", + "id": 9472, + "name": "Andrew Bazin", + "site_detail_url": "https://comicvine.gamespot.com/andrew-bazin/4005-9472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9476/", + "id": 9476, + "name": "Wild Child", + "site_detail_url": "https://comicvine.gamespot.com/wild-child/4005-9476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9477/", + "id": 9477, + "name": "Goddess", + "site_detail_url": "https://comicvine.gamespot.com/goddess/4005-9477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9479/", + "id": 9479, + "name": "Zarrko the Tomorrow Man", + "site_detail_url": "https://comicvine.gamespot.com/zarrko-the-tomorrow-man/4005-9479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9480/", + "id": 9480, + "name": "Servitor", + "site_detail_url": "https://comicvine.gamespot.com/servitor/4005-9480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9481/", + "id": 9481, + "name": "Lodestone", + "site_detail_url": "https://comicvine.gamespot.com/lodestone/4005-9481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9637/", + "id": 9637, + "name": "Caliban", + "site_detail_url": "https://comicvine.gamespot.com/caliban/4005-9637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9638/", + "id": 9638, + "name": "Skornn", + "site_detail_url": "https://comicvine.gamespot.com/skornn/4005-9638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9650/", + "id": 9650, + "name": "Stevie Hunter", + "site_detail_url": "https://comicvine.gamespot.com/stevie-hunter/4005-9650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9653/", + "id": 9653, + "name": "Senyaka", + "site_detail_url": "https://comicvine.gamespot.com/senyaka/4005-9653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9654/", + "id": 9654, + "name": "X-Cutioner", + "site_detail_url": "https://comicvine.gamespot.com/x-cutioner/4005-9654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9656/", + "id": 9656, + "name": "Bantam", + "site_detail_url": "https://comicvine.gamespot.com/bantam/4005-9656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9657/", + "id": 9657, + "name": "Deadair", + "site_detail_url": "https://comicvine.gamespot.com/deadair/4005-9657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9658/", + "id": 9658, + "name": "Arize", + "site_detail_url": "https://comicvine.gamespot.com/arize/4005-9658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9659/", + "id": 9659, + "name": "Mojo II", + "site_detail_url": "https://comicvine.gamespot.com/mojo-ii/4005-9659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9660/", + "id": 9660, + "name": "Lead-In", + "site_detail_url": "https://comicvine.gamespot.com/lead-in/4005-9660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9661/", + "id": 9661, + "name": "Cancellator", + "site_detail_url": "https://comicvine.gamespot.com/cancellator/4005-9661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9662/", + "id": 9662, + "name": "Timeslot", + "site_detail_url": "https://comicvine.gamespot.com/timeslot/4005-9662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9664/", + "id": 9664, + "name": "Amalgam", + "site_detail_url": "https://comicvine.gamespot.com/amalgam/4005-9664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9667/", + "id": 9667, + "name": "Rex Hart", + "site_detail_url": "https://comicvine.gamespot.com/rex-hart/4005-9667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9670/", + "id": 9670, + "name": "Pearl", + "site_detail_url": "https://comicvine.gamespot.com/pearl/4005-9670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9675/", + "id": 9675, + "name": "Frenchy Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/frenchy-rabbit/4005-9675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9676/", + "id": 9676, + "name": "Flippit Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/flippit-rabbit/4005-9676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9677/", + "id": 9677, + "name": "Oscar", + "site_detail_url": "https://comicvine.gamespot.com/oscar/4005-9677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9678/", + "id": 9678, + "name": "Whacky Willie", + "site_detail_url": "https://comicvine.gamespot.com/whacky-willie/4005-9678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9682/", + "id": 9682, + "name": "Kathy Carter", + "site_detail_url": "https://comicvine.gamespot.com/kathy-carter/4005-9682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9683/", + "id": 9683, + "name": "Liz Hilton", + "site_detail_url": "https://comicvine.gamespot.com/liz-hilton/4005-9683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9684/", + "id": 9684, + "name": "Ricky", + "site_detail_url": "https://comicvine.gamespot.com/ricky/4005-9684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9687/", + "id": 9687, + "name": "Georgie", + "site_detail_url": "https://comicvine.gamespot.com/georgie/4005-9687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9688/", + "id": 9688, + "name": "Judy", + "site_detail_url": "https://comicvine.gamespot.com/judy/4005-9688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9690/", + "id": 9690, + "name": "Jeanie", + "site_detail_url": "https://comicvine.gamespot.com/jeanie/4005-9690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9704/", + "id": 9704, + "name": "Shinobi Shaw", + "site_detail_url": "https://comicvine.gamespot.com/shinobi-shaw/4005-9704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9705/", + "id": 9705, + "name": "Benedict Kine", + "site_detail_url": "https://comicvine.gamespot.com/benedict-kine/4005-9705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9706/", + "id": 9706, + "name": "Benazir Kaur", + "site_detail_url": "https://comicvine.gamespot.com/benazir-kaur/4005-9706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9707/", + "id": 9707, + "name": "Reeva Payge", + "site_detail_url": "https://comicvine.gamespot.com/reeva-payge/4005-9707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9708/", + "id": 9708, + "name": "Banshee", + "site_detail_url": "https://comicvine.gamespot.com/banshee/4005-9708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9709/", + "id": 9709, + "name": "Kwannon", + "site_detail_url": "https://comicvine.gamespot.com/kwannon/4005-9709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9710/", + "id": 9710, + "name": "Empyrean", + "site_detail_url": "https://comicvine.gamespot.com/empyrean/4005-9710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9711/", + "id": 9711, + "name": "Henry Gyrich", + "site_detail_url": "https://comicvine.gamespot.com/henry-gyrich/4005-9711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9712/", + "id": 9712, + "name": "Commando", + "site_detail_url": "https://comicvine.gamespot.com/commando/4005-9712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9713/", + "id": 9713, + "name": "Phantazia", + "site_detail_url": "https://comicvine.gamespot.com/phantazia/4005-9713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9716/", + "id": 9716, + "name": "Quark", + "site_detail_url": "https://comicvine.gamespot.com/quark/4005-9716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9717/", + "id": 9717, + "name": "Major Domo", + "site_detail_url": "https://comicvine.gamespot.com/major-domo/4005-9717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9718/", + "id": 9718, + "name": "Gog", + "site_detail_url": "https://comicvine.gamespot.com/gog/4005-9718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9719/", + "id": 9719, + "name": "Magog", + "site_detail_url": "https://comicvine.gamespot.com/magog/4005-9719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9722/", + "id": 9722, + "name": "Spiral", + "site_detail_url": "https://comicvine.gamespot.com/spiral/4005-9722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9724/", + "id": 9724, + "name": "Ricochet Rita", + "site_detail_url": "https://comicvine.gamespot.com/ricochet-rita/4005-9724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9725/", + "id": 9725, + "name": "The Agent", + "site_detail_url": "https://comicvine.gamespot.com/the-agent/4005-9725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9728/", + "id": 9728, + "name": "Fabian Cortez", + "site_detail_url": "https://comicvine.gamespot.com/fabian-cortez/4005-9728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9729/", + "id": 9729, + "name": "Omega Red", + "site_detail_url": "https://comicvine.gamespot.com/omega-red/4005-9729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9732/", + "id": 9732, + "name": "Riptide", + "site_detail_url": "https://comicvine.gamespot.com/riptide/4005-9732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9733/", + "id": 9733, + "name": "Harpoon", + "site_detail_url": "https://comicvine.gamespot.com/harpoon/4005-9733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9734/", + "id": 9734, + "name": "Scalphunter", + "site_detail_url": "https://comicvine.gamespot.com/scalphunter/4005-9734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9735/", + "id": 9735, + "name": "Scrambler", + "site_detail_url": "https://comicvine.gamespot.com/scrambler/4005-9735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9736/", + "id": 9736, + "name": "Prism", + "site_detail_url": "https://comicvine.gamespot.com/prism/4005-9736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9737/", + "id": 9737, + "name": "Blockbuster", + "site_detail_url": "https://comicvine.gamespot.com/blockbuster/4005-9737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9739/", + "id": 9739, + "name": "Icarus", + "site_detail_url": "https://comicvine.gamespot.com/icarus/4005-9739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9751/", + "id": 9751, + "name": "Collective Man", + "site_detail_url": "https://comicvine.gamespot.com/collective-man/4005-9751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9770/", + "id": 9770, + "name": "Legion", + "site_detail_url": "https://comicvine.gamespot.com/legion/4005-9770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9771/", + "id": 9771, + "name": "Thaug", + "site_detail_url": "https://comicvine.gamespot.com/thaug/4005-9771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9772/", + "id": 9772, + "name": "Valerius", + "site_detail_url": "https://comicvine.gamespot.com/valerius/4005-9772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9789/", + "id": 9789, + "name": "Lord Hawk", + "site_detail_url": "https://comicvine.gamespot.com/lord-hawk/4005-9789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9843/", + "id": 9843, + "name": "Yukio", + "site_detail_url": "https://comicvine.gamespot.com/yukio/4005-9843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9845/", + "id": 9845, + "name": "Silicon", + "site_detail_url": "https://comicvine.gamespot.com/silicon/4005-9845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9846/", + "id": 9846, + "name": "Heather McDaniel Hudson", + "site_detail_url": "https://comicvine.gamespot.com/heather-mcdaniel-hudson/4005-9846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9849/", + "id": 9849, + "name": "Karma", + "site_detail_url": "https://comicvine.gamespot.com/karma/4005-9849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9854/", + "id": 9854, + "name": "Rey Trueno", + "site_detail_url": "https://comicvine.gamespot.com/rey-trueno/4005-9854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9855/", + "id": 9855, + "name": "Lydia", + "site_detail_url": "https://comicvine.gamespot.com/lydia/4005-9855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9856/", + "id": 9856, + "name": "Delilah", + "site_detail_url": "https://comicvine.gamespot.com/delilah/4005-9856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9857/", + "id": 9857, + "name": "Gina", + "site_detail_url": "https://comicvine.gamespot.com/gina/4005-9857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9858/", + "id": 9858, + "name": "Benny Axum", + "site_detail_url": "https://comicvine.gamespot.com/benny-axum/4005-9858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9859/", + "id": 9859, + "name": "Coach Cady", + "site_detail_url": "https://comicvine.gamespot.com/coach-cady/4005-9859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9860/", + "id": 9860, + "name": "Slag", + "site_detail_url": "https://comicvine.gamespot.com/slag/4005-9860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9861/", + "id": 9861, + "name": "Mr. Eales", + "site_detail_url": "https://comicvine.gamespot.com/mr-eales/4005-9861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9862/", + "id": 9862, + "name": "Morris Lachs", + "site_detail_url": "https://comicvine.gamespot.com/morris-lachs/4005-9862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9863/", + "id": 9863, + "name": "T-Bone", + "site_detail_url": "https://comicvine.gamespot.com/t-bone/4005-9863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9864/", + "id": 9864, + "name": "Daniel Axum", + "site_detail_url": "https://comicvine.gamespot.com/daniel-axum/4005-9864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9865/", + "id": 9865, + "name": "Amber", + "site_detail_url": "https://comicvine.gamespot.com/amber/4005-9865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9866/", + "id": 9866, + "name": "Hugo Natchios", + "site_detail_url": "https://comicvine.gamespot.com/hugo-natchios/4005-9866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9871/", + "id": 9871, + "name": "Evgeny Buzzubenkov", + "site_detail_url": "https://comicvine.gamespot.com/evgeny-buzzubenkov/4005-9871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9872/", + "id": 9872, + "name": "Urishka Buzzubenkov", + "site_detail_url": "https://comicvine.gamespot.com/urishka-buzzubenkov/4005-9872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9873/", + "id": 9873, + "name": "Jerik", + "site_detail_url": "https://comicvine.gamespot.com/jerik/4005-9873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9874/", + "id": 9874, + "name": "Ibrim Hapanmyas", + "site_detail_url": "https://comicvine.gamespot.com/ibrim-hapanmyas/4005-9874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9875/", + "id": 9875, + "name": "Bridget Hapanmyas", + "site_detail_url": "https://comicvine.gamespot.com/bridget-hapanmyas/4005-9875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9876/", + "id": 9876, + "name": "Beben Omat", + "site_detail_url": "https://comicvine.gamespot.com/beben-omat/4005-9876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9885/", + "id": 9885, + "name": "N'Gabthoth", + "site_detail_url": "https://comicvine.gamespot.com/ngabthoth/4005-9885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-9904/", + "id": 9904, + "name": "Living Laser", + "site_detail_url": "https://comicvine.gamespot.com/living-laser/4005-9904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10040/", + "id": 10040, + "name": "Lyle Crawford", + "site_detail_url": "https://comicvine.gamespot.com/lyle-crawford/4005-10040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10041/", + "id": 10041, + "name": "Takashi", + "site_detail_url": "https://comicvine.gamespot.com/takashi/4005-10041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10043/", + "id": 10043, + "name": "Desi The Monkey", + "site_detail_url": "https://comicvine.gamespot.com/desi-the-monkey/4005-10043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10044/", + "id": 10044, + "name": "Jackie Sure-Shot", + "site_detail_url": "https://comicvine.gamespot.com/jackie-sure-shot/4005-10044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10045/", + "id": 10045, + "name": "Agent Pratt", + "site_detail_url": "https://comicvine.gamespot.com/agent-pratt/4005-10045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10047/", + "id": 10047, + "name": "Jeremy Locke", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-locke/4005-10047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10048/", + "id": 10048, + "name": "Nolan Curtis", + "site_detail_url": "https://comicvine.gamespot.com/nolan-curtis/4005-10048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10049/", + "id": 10049, + "name": "Valeriy Vasson", + "site_detail_url": "https://comicvine.gamespot.com/valeriy-vasson/4005-10049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10050/", + "id": 10050, + "name": "Philip Carson", + "site_detail_url": "https://comicvine.gamespot.com/philip-carson/4005-10050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10051/", + "id": 10051, + "name": "Liam Fischer", + "site_detail_url": "https://comicvine.gamespot.com/liam-fischer/4005-10051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10058/", + "id": 10058, + "name": "Vanessa Fisk", + "site_detail_url": "https://comicvine.gamespot.com/vanessa-fisk/4005-10058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10214/", + "id": 10214, + "name": "Texas Twister", + "site_detail_url": "https://comicvine.gamespot.com/texas-twister/4005-10214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10218/", + "id": 10218, + "name": "Augustyne Phyffe", + "site_detail_url": "https://comicvine.gamespot.com/augustyne-phyffe/4005-10218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10219/", + "id": 10219, + "name": "Justin Hammer", + "site_detail_url": "https://comicvine.gamespot.com/justin-hammer/4005-10219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10220/", + "id": 10220, + "name": "Luminesca", + "site_detail_url": "https://comicvine.gamespot.com/luminesca/4005-10220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10221/", + "id": 10221, + "name": "Diogenes Chang", + "site_detail_url": "https://comicvine.gamespot.com/diogenes-chang/4005-10221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10222/", + "id": 10222, + "name": "Spymaster", + "site_detail_url": "https://comicvine.gamespot.com/spymaster/4005-10222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10223/", + "id": 10223, + "name": "Glitch", + "site_detail_url": "https://comicvine.gamespot.com/glitch/4005-10223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10226/", + "id": 10226, + "name": "Zeus", + "site_detail_url": "https://comicvine.gamespot.com/zeus/4005-10226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10230/", + "id": 10230, + "name": "Kevin Masterson", + "site_detail_url": "https://comicvine.gamespot.com/kevin-masterson/4005-10230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10232/", + "id": 10232, + "name": "Thermal Man", + "site_detail_url": "https://comicvine.gamespot.com/thermal-man/4005-10232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10233/", + "id": 10233, + "name": "Kundrig", + "site_detail_url": "https://comicvine.gamespot.com/kundrig/4005-10233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10236/", + "id": 10236, + "name": "Ms. Normandy", + "site_detail_url": "https://comicvine.gamespot.com/ms-normandy/4005-10236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10237/", + "id": 10237, + "name": "Skullcrasher", + "site_detail_url": "https://comicvine.gamespot.com/skullcrasher/4005-10237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10238/", + "id": 10238, + "name": "Cynthia Chalmers", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-chalmers/4005-10238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10242/", + "id": 10242, + "name": "Diablo", + "site_detail_url": "https://comicvine.gamespot.com/diablo/4005-10242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10246/", + "id": 10246, + "name": "Mouse", + "site_detail_url": "https://comicvine.gamespot.com/mouse/4005-10246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10247/", + "id": 10247, + "name": "Cat", + "site_detail_url": "https://comicvine.gamespot.com/cat/4005-10247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10248/", + "id": 10248, + "name": "Deacon", + "site_detail_url": "https://comicvine.gamespot.com/deacon/4005-10248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10250/", + "id": 10250, + "name": "Skarlett", + "site_detail_url": "https://comicvine.gamespot.com/skarlett/4005-10250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10251/", + "id": 10251, + "name": "Gator Grant", + "site_detail_url": "https://comicvine.gamespot.com/gator-grant/4005-10251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10252/", + "id": 10252, + "name": "The Cossack", + "site_detail_url": "https://comicvine.gamespot.com/the-cossack/4005-10252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10254/", + "id": 10254, + "name": "Master Mold", + "site_detail_url": "https://comicvine.gamespot.com/master-mold/4005-10254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10255/", + "id": 10255, + "name": "Larry Trask", + "site_detail_url": "https://comicvine.gamespot.com/larry-trask/4005-10255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10256/", + "id": 10256, + "name": "Ms. Monster From The Lost Lagoon", + "site_detail_url": "https://comicvine.gamespot.com/ms-monster-from-the-lost-lagoon/4005-10256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10257/", + "id": 10257, + "name": "Misty Collins", + "site_detail_url": "https://comicvine.gamespot.com/misty-collins/4005-10257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10258/", + "id": 10258, + "name": "Windstorm", + "site_detail_url": "https://comicvine.gamespot.com/windstorm/4005-10258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10259/", + "id": 10259, + "name": "Big Bouncer", + "site_detail_url": "https://comicvine.gamespot.com/big-bouncer/4005-10259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10264/", + "id": 10264, + "name": "Bjorn The White", + "site_detail_url": "https://comicvine.gamespot.com/bjorn-the-white/4005-10264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10265/", + "id": 10265, + "name": "Grim Graybeard", + "site_detail_url": "https://comicvine.gamespot.com/grim-graybeard/4005-10265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10266/", + "id": 10266, + "name": "Skagg", + "site_detail_url": "https://comicvine.gamespot.com/skagg/4005-10266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10270/", + "id": 10270, + "name": "Doctor Carlson", + "site_detail_url": "https://comicvine.gamespot.com/doctor-carlson/4005-10270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10272/", + "id": 10272, + "name": "Dave Bealer", + "site_detail_url": "https://comicvine.gamespot.com/dave-bealer/4005-10272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10273/", + "id": 10273, + "name": "Terri Cooper", + "site_detail_url": "https://comicvine.gamespot.com/terri-cooper/4005-10273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10274/", + "id": 10274, + "name": "Jolly Roger", + "site_detail_url": "https://comicvine.gamespot.com/jolly-roger/4005-10274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10275/", + "id": 10275, + "name": "Wyatt Wingfoot", + "site_detail_url": "https://comicvine.gamespot.com/wyatt-wingfoot/4005-10275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10278/", + "id": 10278, + "name": "Torg", + "site_detail_url": "https://comicvine.gamespot.com/torg/4005-10278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10280/", + "id": 10280, + "name": "Doctor Voodoo", + "site_detail_url": "https://comicvine.gamespot.com/doctor-voodoo/4005-10280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10282/", + "id": 10282, + "name": "Gena Landers", + "site_detail_url": "https://comicvine.gamespot.com/gena-landers/4005-10282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10283/", + "id": 10283, + "name": "Cerberus", + "site_detail_url": "https://comicvine.gamespot.com/cerberus/4005-10283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10287/", + "id": 10287, + "name": "Patty O'Donnels", + "site_detail_url": "https://comicvine.gamespot.com/patty-odonnels/4005-10287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10290/", + "id": 10290, + "name": "Louie Perlongetti", + "site_detail_url": "https://comicvine.gamespot.com/louie-perlongetti/4005-10290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10291/", + "id": 10291, + "name": "S'ym", + "site_detail_url": "https://comicvine.gamespot.com/sym/4005-10291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10292/", + "id": 10292, + "name": "Taku", + "site_detail_url": "https://comicvine.gamespot.com/taku/4005-10292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10293/", + "id": 10293, + "name": "Mubaru", + "site_detail_url": "https://comicvine.gamespot.com/mubaru/4005-10293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10296/", + "id": 10296, + "name": "John Lumus", + "site_detail_url": "https://comicvine.gamespot.com/john-lumus/4005-10296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10298/", + "id": 10298, + "name": "Captain Hero", + "site_detail_url": "https://comicvine.gamespot.com/captain-hero/4005-10298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10300/", + "id": 10300, + "name": "Beyonder", + "site_detail_url": "https://comicvine.gamespot.com/beyonder/4005-10300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10302/", + "id": 10302, + "name": "Doctor Druid", + "site_detail_url": "https://comicvine.gamespot.com/doctor-druid/4005-10302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10304/", + "id": 10304, + "name": "Cr'reee", + "site_detail_url": "https://comicvine.gamespot.com/crreee/4005-10304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10306/", + "id": 10306, + "name": "Lei Kung", + "site_detail_url": "https://comicvine.gamespot.com/lei-kung/4005-10306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10307/", + "id": 10307, + "name": "The Dragon King", + "site_detail_url": "https://comicvine.gamespot.com/the-dragon-king/4005-10307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10308/", + "id": 10308, + "name": "Stanley Lumus", + "site_detail_url": "https://comicvine.gamespot.com/stanley-lumus/4005-10308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10309/", + "id": 10309, + "name": "Michael O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/michael-obrien/4005-10309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10312/", + "id": 10312, + "name": "Eel (Stryke)", + "site_detail_url": "https://comicvine.gamespot.com/eel-stryke/4005-10312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10314/", + "id": 10314, + "name": "Discus", + "site_detail_url": "https://comicvine.gamespot.com/discus/4005-10314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10317/", + "id": 10317, + "name": "Reaper", + "site_detail_url": "https://comicvine.gamespot.com/reaper/4005-10317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10318/", + "id": 10318, + "name": "Bob Diamond", + "site_detail_url": "https://comicvine.gamespot.com/bob-diamond/4005-10318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10319/", + "id": 10319, + "name": "Firebolt", + "site_detail_url": "https://comicvine.gamespot.com/firebolt/4005-10319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10320/", + "id": 10320, + "name": "Hammer Of Judgement", + "site_detail_url": "https://comicvine.gamespot.com/hammer-of-judgement/4005-10320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10323/", + "id": 10323, + "name": "Doombringer", + "site_detail_url": "https://comicvine.gamespot.com/doombringer/4005-10323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10326/", + "id": 10326, + "name": "Jason Hunt", + "site_detail_url": "https://comicvine.gamespot.com/jason-hunt/4005-10326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10364/", + "id": 10364, + "name": "Death-Stalker", + "site_detail_url": "https://comicvine.gamespot.com/death-stalker/4005-10364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10365/", + "id": 10365, + "name": "Heather Glenn", + "site_detail_url": "https://comicvine.gamespot.com/heather-glenn/4005-10365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10366/", + "id": 10366, + "name": "Debbie Harris", + "site_detail_url": "https://comicvine.gamespot.com/debbie-harris/4005-10366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10367/", + "id": 10367, + "name": "Becky Blake", + "site_detail_url": "https://comicvine.gamespot.com/becky-blake/4005-10367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10368/", + "id": 10368, + "name": "Ghost Dancer", + "site_detail_url": "https://comicvine.gamespot.com/ghost-dancer/4005-10368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10369/", + "id": 10369, + "name": "Eric Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/eric-slaughter/4005-10369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10370/", + "id": 10370, + "name": "Doris Urich", + "site_detail_url": "https://comicvine.gamespot.com/doris-urich/4005-10370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10371/", + "id": 10371, + "name": "Battlin' Jack Murdock", + "site_detail_url": "https://comicvine.gamespot.com/battlin-jack-murdock/4005-10371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10374/", + "id": 10374, + "name": "Candace Nelson", + "site_detail_url": "https://comicvine.gamespot.com/candace-nelson/4005-10374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10375/", + "id": 10375, + "name": "Porkchop Peterson", + "site_detail_url": "https://comicvine.gamespot.com/porkchop-peterson/4005-10375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10377/", + "id": 10377, + "name": "Edwin Cord", + "site_detail_url": "https://comicvine.gamespot.com/edwin-cord/4005-10377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10416/", + "id": 10416, + "name": "Hatsu Yakamoto", + "site_detail_url": "https://comicvine.gamespot.com/hatsu-yakamoto/4005-10416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10422/", + "id": 10422, + "name": "Taxman", + "site_detail_url": "https://comicvine.gamespot.com/taxman/4005-10422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10435/", + "id": 10435, + "name": "Patch", + "site_detail_url": "https://comicvine.gamespot.com/patch/4005-10435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10436/", + "id": 10436, + "name": "Pumice", + "site_detail_url": "https://comicvine.gamespot.com/pumice/4005-10436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10467/", + "id": 10467, + "name": "Scorn", + "site_detail_url": "https://comicvine.gamespot.com/scorn/4005-10467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10561/", + "id": 10561, + "name": "Corpus Derelicti", + "site_detail_url": "https://comicvine.gamespot.com/corpus-derelicti/4005-10561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10562/", + "id": 10562, + "name": "Haley", + "site_detail_url": "https://comicvine.gamespot.com/haley/4005-10562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10563/", + "id": 10563, + "name": "Katherine Yakamoto", + "site_detail_url": "https://comicvine.gamespot.com/katherine-yakamoto/4005-10563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10564/", + "id": 10564, + "name": "Phillip Richards", + "site_detail_url": "https://comicvine.gamespot.com/phillip-richards/4005-10564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10566/", + "id": 10566, + "name": "Skin", + "site_detail_url": "https://comicvine.gamespot.com/skin/4005-10566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10567/", + "id": 10567, + "name": "Adrienne Frost", + "site_detail_url": "https://comicvine.gamespot.com/adrienne-frost/4005-10567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10569/", + "id": 10569, + "name": "Katabolik", + "site_detail_url": "https://comicvine.gamespot.com/katabolik/4005-10569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10571/", + "id": 10571, + "name": "Cordelia Frost", + "site_detail_url": "https://comicvine.gamespot.com/cordelia-frost/4005-10571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10572/", + "id": 10572, + "name": "Mondo", + "site_detail_url": "https://comicvine.gamespot.com/mondo/4005-10572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10573/", + "id": 10573, + "name": "Hollow", + "site_detail_url": "https://comicvine.gamespot.com/hollow/4005-10573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10574/", + "id": 10574, + "name": "Artie Maddicks", + "site_detail_url": "https://comicvine.gamespot.com/artie-maddicks/4005-10574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10575/", + "id": 10575, + "name": "Tom Corsi", + "site_detail_url": "https://comicvine.gamespot.com/tom-corsi/4005-10575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10576/", + "id": 10576, + "name": "Synch", + "site_detail_url": "https://comicvine.gamespot.com/synch/4005-10576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10577/", + "id": 10577, + "name": "Bolt", + "site_detail_url": "https://comicvine.gamespot.com/bolt/4005-10577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10579/", + "id": 10579, + "name": "Emplate", + "site_detail_url": "https://comicvine.gamespot.com/emplate/4005-10579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10581/", + "id": 10581, + "name": "Wrap", + "site_detail_url": "https://comicvine.gamespot.com/wrap/4005-10581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10583/", + "id": 10583, + "name": "Nightwind", + "site_detail_url": "https://comicvine.gamespot.com/nightwind/4005-10583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10584/", + "id": 10584, + "name": "Paladin", + "site_detail_url": "https://comicvine.gamespot.com/paladin/4005-10584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10585/", + "id": 10585, + "name": "Dragonwing", + "site_detail_url": "https://comicvine.gamespot.com/dragonwing/4005-10585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10586/", + "id": 10586, + "name": "Spoilsport", + "site_detail_url": "https://comicvine.gamespot.com/spoilsport/4005-10586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10587/", + "id": 10587, + "name": "The Sign", + "site_detail_url": "https://comicvine.gamespot.com/the-sign/4005-10587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10588/", + "id": 10588, + "name": "Jet-Black", + "site_detail_url": "https://comicvine.gamespot.com/jet-black/4005-10588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10589/", + "id": 10589, + "name": "Tough Love", + "site_detail_url": "https://comicvine.gamespot.com/tough-love/4005-10589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10590/", + "id": 10590, + "name": "Noy", + "site_detail_url": "https://comicvine.gamespot.com/noy/4005-10590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10622/", + "id": 10622, + "name": "Valdor", + "site_detail_url": "https://comicvine.gamespot.com/valdor/4005-10622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10668/", + "id": 10668, + "name": "Shadowcaster", + "site_detail_url": "https://comicvine.gamespot.com/shadowcaster/4005-10668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10669/", + "id": 10669, + "name": "Morris Maxwell", + "site_detail_url": "https://comicvine.gamespot.com/morris-maxwell/4005-10669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10670/", + "id": 10670, + "name": "Madame Web", + "site_detail_url": "https://comicvine.gamespot.com/madame-web/4005-10670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10671/", + "id": 10671, + "name": "Marla Jameson", + "site_detail_url": "https://comicvine.gamespot.com/marla-jameson/4005-10671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10672/", + "id": 10672, + "name": "Cheryl Lansing", + "site_detail_url": "https://comicvine.gamespot.com/cheryl-lansing/4005-10672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10673/", + "id": 10673, + "name": "Gray Dolman", + "site_detail_url": "https://comicvine.gamespot.com/gray-dolman/4005-10673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10674/", + "id": 10674, + "name": "Bones", + "site_detail_url": "https://comicvine.gamespot.com/bones/4005-10674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10675/", + "id": 10675, + "name": "Flesh", + "site_detail_url": "https://comicvine.gamespot.com/flesh/4005-10675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10678/", + "id": 10678, + "name": "Jeremy Franklin", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-franklin/4005-10678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10680/", + "id": 10680, + "name": "Detective Phil Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/detective-phil-rodriguez/4005-10680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10713/", + "id": 10713, + "name": "Zygo", + "site_detail_url": "https://comicvine.gamespot.com/zygo/4005-10713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10715/", + "id": 10715, + "name": "M-21", + "site_detail_url": "https://comicvine.gamespot.com/m-21/4005-10715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10719/", + "id": 10719, + "name": "Sandoz", + "site_detail_url": "https://comicvine.gamespot.com/sandoz/4005-10719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10721/", + "id": 10721, + "name": "Anesthesia Jones", + "site_detail_url": "https://comicvine.gamespot.com/anesthesia-jones/4005-10721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10730/", + "id": 10730, + "name": "Ambassador", + "site_detail_url": "https://comicvine.gamespot.com/ambassador/4005-10730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10762/", + "id": 10762, + "name": "Neurodancer", + "site_detail_url": "https://comicvine.gamespot.com/neurodancer/4005-10762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10782/", + "id": 10782, + "name": "Dendrok", + "site_detail_url": "https://comicvine.gamespot.com/dendrok/4005-10782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10794/", + "id": 10794, + "name": "Dorhun", + "site_detail_url": "https://comicvine.gamespot.com/dorhun/4005-10794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10801/", + "id": 10801, + "name": "Willis Adams", + "site_detail_url": "https://comicvine.gamespot.com/willis-adams/4005-10801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10834/", + "id": 10834, + "name": "Provost", + "site_detail_url": "https://comicvine.gamespot.com/provost/4005-10834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10841/", + "id": 10841, + "name": "Rabble Rouser", + "site_detail_url": "https://comicvine.gamespot.com/rabble-rouser/4005-10841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10845/", + "id": 10845, + "name": "Dorian Murdstone", + "site_detail_url": "https://comicvine.gamespot.com/dorian-murdstone/4005-10845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10846/", + "id": 10846, + "name": "Sun Stealer", + "site_detail_url": "https://comicvine.gamespot.com/sun-stealer/4005-10846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10847/", + "id": 10847, + "name": "Vampire", + "site_detail_url": "https://comicvine.gamespot.com/vampire/4005-10847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10848/", + "id": 10848, + "name": "Ethan Warren", + "site_detail_url": "https://comicvine.gamespot.com/ethan-warren/4005-10848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10851/", + "id": 10851, + "name": "Tantaro", + "site_detail_url": "https://comicvine.gamespot.com/tantaro/4005-10851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10853/", + "id": 10853, + "name": "Dr. Katherine Spar", + "site_detail_url": "https://comicvine.gamespot.com/dr-katherine-spar/4005-10853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10855/", + "id": 10855, + "name": "Devlin DeAngelo", + "site_detail_url": "https://comicvine.gamespot.com/devlin-deangelo/4005-10855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10858/", + "id": 10858, + "name": "Human Cannonball", + "site_detail_url": "https://comicvine.gamespot.com/human-cannonball/4005-10858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10859/", + "id": 10859, + "name": "Princess Python", + "site_detail_url": "https://comicvine.gamespot.com/princess-python/4005-10859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10860/", + "id": 10860, + "name": "Marlo Chandler-Jones", + "site_detail_url": "https://comicvine.gamespot.com/marlo-chandler-jones/4005-10860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10861/", + "id": 10861, + "name": "Super-Adaptoid", + "site_detail_url": "https://comicvine.gamespot.com/super-adaptoid/4005-10861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10864/", + "id": 10864, + "name": "Cary St. Lawrence", + "site_detail_url": "https://comicvine.gamespot.com/cary-st-lawrence/4005-10864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10866/", + "id": 10866, + "name": "Armageddon", + "site_detail_url": "https://comicvine.gamespot.com/armageddon/4005-10866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10867/", + "id": 10867, + "name": "Hotshot", + "site_detail_url": "https://comicvine.gamespot.com/hotshot/4005-10867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10868/", + "id": 10868, + "name": "Jailbait", + "site_detail_url": "https://comicvine.gamespot.com/jailbait/4005-10868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10872/", + "id": 10872, + "name": "Goodfellow", + "site_detail_url": "https://comicvine.gamespot.com/goodfellow/4005-10872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10874/", + "id": 10874, + "name": "Brian Banner", + "site_detail_url": "https://comicvine.gamespot.com/brian-banner/4005-10874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10875/", + "id": 10875, + "name": "Mercy", + "site_detail_url": "https://comicvine.gamespot.com/mercy/4005-10875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10876/", + "id": 10876, + "name": "Russ", + "site_detail_url": "https://comicvine.gamespot.com/russ/4005-10876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10889/", + "id": 10889, + "name": "Wrecker", + "site_detail_url": "https://comicvine.gamespot.com/wrecker/4005-10889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10902/", + "id": 10902, + "name": "Anthony Grant", + "site_detail_url": "https://comicvine.gamespot.com/anthony-grant/4005-10902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10946/", + "id": 10946, + "name": "Jude the Entropic Man", + "site_detail_url": "https://comicvine.gamespot.com/jude-the-entropic-man/4005-10946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10947/", + "id": 10947, + "name": "Belasco", + "site_detail_url": "https://comicvine.gamespot.com/belasco/4005-10947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10952/", + "id": 10952, + "name": "Una-Rogg", + "site_detail_url": "https://comicvine.gamespot.com/una-rogg/4005-10952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10953/", + "id": 10953, + "name": "Comet Man", + "site_detail_url": "https://comicvine.gamespot.com/comet-man/4005-10953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10954/", + "id": 10954, + "name": "Benny Beckley", + "site_detail_url": "https://comicvine.gamespot.com/benny-beckley/4005-10954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10956/", + "id": 10956, + "name": "Jade Dragon", + "site_detail_url": "https://comicvine.gamespot.com/jade-dragon/4005-10956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10957/", + "id": 10957, + "name": "Star-Lord", + "site_detail_url": "https://comicvine.gamespot.com/star-lord/4005-10957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10960/", + "id": 10960, + "name": "Ulysses Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/ulysses-bloodstone/4005-10960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10962/", + "id": 10962, + "name": "Luna", + "site_detail_url": "https://comicvine.gamespot.com/luna/4005-10962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10963/", + "id": 10963, + "name": "Blastaar", + "site_detail_url": "https://comicvine.gamespot.com/blastaar/4005-10963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10964/", + "id": 10964, + "name": "Annihilus", + "site_detail_url": "https://comicvine.gamespot.com/annihilus/4005-10964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10968/", + "id": 10968, + "name": "Iron Maiden", + "site_detail_url": "https://comicvine.gamespot.com/iron-maiden/4005-10968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10970/", + "id": 10970, + "name": "Amanda Sefton", + "site_detail_url": "https://comicvine.gamespot.com/amanda-sefton/4005-10970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10974/", + "id": 10974, + "name": "Jackal", + "site_detail_url": "https://comicvine.gamespot.com/jackal/4005-10974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10975/", + "id": 10975, + "name": "Karnak", + "site_detail_url": "https://comicvine.gamespot.com/karnak/4005-10975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10976/", + "id": 10976, + "name": "Black King", + "site_detail_url": "https://comicvine.gamespot.com/black-king/4005-10976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10978/", + "id": 10978, + "name": "Tower", + "site_detail_url": "https://comicvine.gamespot.com/tower/4005-10978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10981/", + "id": 10981, + "name": "Madelyne Pryor", + "site_detail_url": "https://comicvine.gamespot.com/madelyne-pryor/4005-10981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10987/", + "id": 10987, + "name": "King Britain", + "site_detail_url": "https://comicvine.gamespot.com/king-britain/4005-10987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10988/", + "id": 10988, + "name": "Rictor", + "site_detail_url": "https://comicvine.gamespot.com/rictor/4005-10988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10990/", + "id": 10990, + "name": "Darkstar (Petrovna)", + "site_detail_url": "https://comicvine.gamespot.com/darkstar-petrovna/4005-10990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10999/", + "id": 10999, + "name": "Samir", + "site_detail_url": "https://comicvine.gamespot.com/samir/4005-10999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11000/", + "id": 11000, + "name": "Faysal Al-Tariq", + "site_detail_url": "https://comicvine.gamespot.com/faysal-al-tariq/4005-11000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11001/", + "id": 11001, + "name": "Jessica Seldon", + "site_detail_url": "https://comicvine.gamespot.com/jessica-seldon/4005-11001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11002/", + "id": 11002, + "name": "Monica Lynne", + "site_detail_url": "https://comicvine.gamespot.com/monica-lynne/4005-11002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11003/", + "id": 11003, + "name": "Queen Divine Justice", + "site_detail_url": "https://comicvine.gamespot.com/queen-divine-justice/4005-11003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11005/", + "id": 11005, + "name": "Shade", + "site_detail_url": "https://comicvine.gamespot.com/shade/4005-11005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11006/", + "id": 11006, + "name": "Jennifer Hardesty", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-hardesty/4005-11006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11007/", + "id": 11007, + "name": "Alice Underwood", + "site_detail_url": "https://comicvine.gamespot.com/alice-underwood/4005-11007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11014/", + "id": 11014, + "name": "Trahn", + "site_detail_url": "https://comicvine.gamespot.com/trahn/4005-11014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11015/", + "id": 11015, + "name": "Shades", + "site_detail_url": "https://comicvine.gamespot.com/shades/4005-11015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11016/", + "id": 11016, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-11016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11017/", + "id": 11017, + "name": "Baby Karen", + "site_detail_url": "https://comicvine.gamespot.com/baby-karen/4005-11017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11018/", + "id": 11018, + "name": "Stick", + "site_detail_url": "https://comicvine.gamespot.com/stick/4005-11018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11020/", + "id": 11020, + "name": "Sally Riker", + "site_detail_url": "https://comicvine.gamespot.com/sally-riker/4005-11020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11027/", + "id": 11027, + "name": "Copperhead", + "site_detail_url": "https://comicvine.gamespot.com/copperhead/4005-11027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11036/", + "id": 11036, + "name": "Scrap-Iron", + "site_detail_url": "https://comicvine.gamespot.com/scrap-iron/4005-11036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11038/", + "id": 11038, + "name": "Snow Serpents", + "site_detail_url": "https://comicvine.gamespot.com/snow-serpents/4005-11038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11058/", + "id": 11058, + "name": "Red Dog", + "site_detail_url": "https://comicvine.gamespot.com/red-dog/4005-11058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11067/", + "id": 11067, + "name": "Devil", + "site_detail_url": "https://comicvine.gamespot.com/devil/4005-11067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11072/", + "id": 11072, + "name": "Toll-Booth", + "site_detail_url": "https://comicvine.gamespot.com/toll-booth/4005-11072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11073/", + "id": 11073, + "name": "Torpedo", + "site_detail_url": "https://comicvine.gamespot.com/torpedo/4005-11073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11079/", + "id": 11079, + "name": "Kwinn", + "site_detail_url": "https://comicvine.gamespot.com/kwinn/4005-11079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11082/", + "id": 11082, + "name": "Ace", + "site_detail_url": "https://comicvine.gamespot.com/ace/4005-11082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11088/", + "id": 11088, + "name": "Breaker", + "site_detail_url": "https://comicvine.gamespot.com/breaker/4005-11088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11098/", + "id": 11098, + "name": "Footloose", + "site_detail_url": "https://comicvine.gamespot.com/footloose/4005-11098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11099/", + "id": 11099, + "name": "Frostbite", + "site_detail_url": "https://comicvine.gamespot.com/frostbite/4005-11099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11110/", + "id": 11110, + "name": "Lieutenant William Lamont", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-william-lamont/4005-11110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11116/", + "id": 11116, + "name": "Stunner", + "site_detail_url": "https://comicvine.gamespot.com/stunner/4005-11116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11117/", + "id": 11117, + "name": "El Toro Negro", + "site_detail_url": "https://comicvine.gamespot.com/el-toro-negro/4005-11117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11121/", + "id": 11121, + "name": "Tanya the Fox", + "site_detail_url": "https://comicvine.gamespot.com/tanya-the-fox/4005-11121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11178/", + "id": 11178, + "name": "Nick Andros", + "site_detail_url": "https://comicvine.gamespot.com/nick-andros/4005-11178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11181/", + "id": 11181, + "name": "Lloyd Henreid", + "site_detail_url": "https://comicvine.gamespot.com/lloyd-henreid/4005-11181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11206/", + "id": 11206, + "name": "Sin-Eater", + "site_detail_url": "https://comicvine.gamespot.com/sin-eater/4005-11206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11208/", + "id": 11208, + "name": "Wysper", + "site_detail_url": "https://comicvine.gamespot.com/wysper/4005-11208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11211/", + "id": 11211, + "name": "Gavel", + "site_detail_url": "https://comicvine.gamespot.com/gavel/4005-11211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11212/", + "id": 11212, + "name": "Firearm", + "site_detail_url": "https://comicvine.gamespot.com/firearm/4005-11212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11213/", + "id": 11213, + "name": "Bomblast", + "site_detail_url": "https://comicvine.gamespot.com/bomblast/4005-11213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11214/", + "id": 11214, + "name": "Ramshot", + "site_detail_url": "https://comicvine.gamespot.com/ramshot/4005-11214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11219/", + "id": 11219, + "name": "Syphonn", + "site_detail_url": "https://comicvine.gamespot.com/syphonn/4005-11219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11317/", + "id": 11317, + "name": "Cassandra Nova", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-nova/4005-11317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11318/", + "id": 11318, + "name": "Araki", + "site_detail_url": "https://comicvine.gamespot.com/araki/4005-11318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11319/", + "id": 11319, + "name": "Manta", + "site_detail_url": "https://comicvine.gamespot.com/manta/4005-11319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11320/", + "id": 11320, + "name": "Kyte", + "site_detail_url": "https://comicvine.gamespot.com/kyte/4005-11320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11321/", + "id": 11321, + "name": "Stuff", + "site_detail_url": "https://comicvine.gamespot.com/stuff/4005-11321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11322/", + "id": 11322, + "name": "G-Type", + "site_detail_url": "https://comicvine.gamespot.com/g-type/4005-11322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11324/", + "id": 11324, + "name": "Neosaurus", + "site_detail_url": "https://comicvine.gamespot.com/neosaurus/4005-11324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11325/", + "id": 11325, + "name": "Fader", + "site_detail_url": "https://comicvine.gamespot.com/fader/4005-11325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11326/", + "id": 11326, + "name": "Squorm", + "site_detail_url": "https://comicvine.gamespot.com/squorm/4005-11326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11327/", + "id": 11327, + "name": "Arc", + "site_detail_url": "https://comicvine.gamespot.com/arc/4005-11327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11328/", + "id": 11328, + "name": "Immundra", + "site_detail_url": "https://comicvine.gamespot.com/immundra/4005-11328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11329/", + "id": 11329, + "name": "Blaze Carson", + "site_detail_url": "https://comicvine.gamespot.com/blaze-carson/4005-11329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11330/", + "id": 11330, + "name": "Sublime", + "site_detail_url": "https://comicvine.gamespot.com/sublime/4005-11330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11332/", + "id": 11332, + "name": "Eternity", + "site_detail_url": "https://comicvine.gamespot.com/eternity/4005-11332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11333/", + "id": 11333, + "name": "Infinity", + "site_detail_url": "https://comicvine.gamespot.com/infinity/4005-11333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11336/", + "id": 11336, + "name": "Marcus Kang", + "site_detail_url": "https://comicvine.gamespot.com/marcus-kang/4005-11336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11337/", + "id": 11337, + "name": "Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/spectrum/4005-11337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11339/", + "id": 11339, + "name": "Jonathan Tremont", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-tremont/4005-11339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11340/", + "id": 11340, + "name": "Presence", + "site_detail_url": "https://comicvine.gamespot.com/presence/4005-11340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11341/", + "id": 11341, + "name": "Silverclaw", + "site_detail_url": "https://comicvine.gamespot.com/silverclaw/4005-11341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11362/", + "id": 11362, + "name": "Papa Hagg", + "site_detail_url": "https://comicvine.gamespot.com/papa-hagg/4005-11362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11363/", + "id": 11363, + "name": "Ardina", + "site_detail_url": "https://comicvine.gamespot.com/ardina/4005-11363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11364/", + "id": 11364, + "name": "Dr. Christopher Ganyrog", + "site_detail_url": "https://comicvine.gamespot.com/dr-christopher-ganyrog/4005-11364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11365/", + "id": 11365, + "name": "Romantic Objective Pamela", + "site_detail_url": "https://comicvine.gamespot.com/romantic-objective-pamela/4005-11365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11366/", + "id": 11366, + "name": "Yandroth", + "site_detail_url": "https://comicvine.gamespot.com/yandroth/4005-11366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11367/", + "id": 11367, + "name": "Red Raven", + "site_detail_url": "https://comicvine.gamespot.com/red-raven/4005-11367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11369/", + "id": 11369, + "name": "Malicia Parrington", + "site_detail_url": "https://comicvine.gamespot.com/malicia-parrington/4005-11369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11370/", + "id": 11370, + "name": "Bunnyhopper", + "site_detail_url": "https://comicvine.gamespot.com/bunnyhopper/4005-11370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11373/", + "id": 11373, + "name": "Springthorpe", + "site_detail_url": "https://comicvine.gamespot.com/springthorpe/4005-11373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11397/", + "id": 11397, + "name": "Tex Morgan", + "site_detail_url": "https://comicvine.gamespot.com/tex-morgan/4005-11397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11424/", + "id": 11424, + "name": "Red Hawkins", + "site_detail_url": "https://comicvine.gamespot.com/red-hawkins/4005-11424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11426/", + "id": 11426, + "name": "Senso", + "site_detail_url": "https://comicvine.gamespot.com/senso/4005-11426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11428/", + "id": 11428, + "name": "Triton", + "site_detail_url": "https://comicvine.gamespot.com/triton/4005-11428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11431/", + "id": 11431, + "name": "Dr. Molinari", + "site_detail_url": "https://comicvine.gamespot.com/dr-molinari/4005-11431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11440/", + "id": 11440, + "name": "Arizona Kid", + "site_detail_url": "https://comicvine.gamespot.com/arizona-kid/4005-11440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11447/", + "id": 11447, + "name": "Sandorr", + "site_detail_url": "https://comicvine.gamespot.com/sandorr/4005-11447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11448/", + "id": 11448, + "name": "Cordon", + "site_detail_url": "https://comicvine.gamespot.com/cordon/4005-11448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11449/", + "id": 11449, + "name": "Mud-Ah", + "site_detail_url": "https://comicvine.gamespot.com/mud-ah/4005-11449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11450/", + "id": 11450, + "name": "Mistur", + "site_detail_url": "https://comicvine.gamespot.com/mistur/4005-11450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11451/", + "id": 11451, + "name": "Linga", + "site_detail_url": "https://comicvine.gamespot.com/linga/4005-11451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11455/", + "id": 11455, + "name": "Abner Little", + "site_detail_url": "https://comicvine.gamespot.com/abner-little/4005-11455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11456/", + "id": 11456, + "name": "Nightshade", + "site_detail_url": "https://comicvine.gamespot.com/nightshade/4005-11456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11457/", + "id": 11457, + "name": "Zuri", + "site_detail_url": "https://comicvine.gamespot.com/zuri/4005-11457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11458/", + "id": 11458, + "name": "White Wolf", + "site_detail_url": "https://comicvine.gamespot.com/white-wolf/4005-11458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11459/", + "id": 11459, + "name": "Kiber The Cruel", + "site_detail_url": "https://comicvine.gamespot.com/kiber-the-cruel/4005-11459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11460/", + "id": 11460, + "name": "Vibraxas", + "site_detail_url": "https://comicvine.gamespot.com/vibraxas/4005-11460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11472/", + "id": 11472, + "name": "Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crusader/4005-11472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11479/", + "id": 11479, + "name": "Venus Dee Milo", + "site_detail_url": "https://comicvine.gamespot.com/venus-dee-milo/4005-11479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11481/", + "id": 11481, + "name": "Sharon Ginsberg", + "site_detail_url": "https://comicvine.gamespot.com/sharon-ginsberg/4005-11481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11483/", + "id": 11483, + "name": "Dead Girl", + "site_detail_url": "https://comicvine.gamespot.com/dead-girl/4005-11483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11484/", + "id": 11484, + "name": "Doop", + "site_detail_url": "https://comicvine.gamespot.com/doop/4005-11484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11487/", + "id": 11487, + "name": "Mysterious Fanboy", + "site_detail_url": "https://comicvine.gamespot.com/mysterious-fanboy/4005-11487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11488/", + "id": 11488, + "name": "Ocean", + "site_detail_url": "https://comicvine.gamespot.com/ocean/4005-11488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11489/", + "id": 11489, + "name": "Overkill", + "site_detail_url": "https://comicvine.gamespot.com/overkill/4005-11489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11490/", + "id": 11490, + "name": "Phat", + "site_detail_url": "https://comicvine.gamespot.com/phat/4005-11490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11491/", + "id": 11491, + "name": "Vivisector", + "site_detail_url": "https://comicvine.gamespot.com/vivisector/4005-11491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11492/", + "id": 11492, + "name": "Orchid", + "site_detail_url": "https://comicvine.gamespot.com/orchid/4005-11492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11493/", + "id": 11493, + "name": "Optoman", + "site_detail_url": "https://comicvine.gamespot.com/optoman/4005-11493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11494/", + "id": 11494, + "name": "Ozone", + "site_detail_url": "https://comicvine.gamespot.com/ozone/4005-11494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11497/", + "id": 11497, + "name": "Corkscrew", + "site_detail_url": "https://comicvine.gamespot.com/corkscrew/4005-11497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11499/", + "id": 11499, + "name": "Carlos Cardinale", + "site_detail_url": "https://comicvine.gamespot.com/carlos-cardinale/4005-11499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11503/", + "id": 11503, + "name": "Bova", + "site_detail_url": "https://comicvine.gamespot.com/bova/4005-11503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11506/", + "id": 11506, + "name": "Django Maximoff", + "site_detail_url": "https://comicvine.gamespot.com/django-maximoff/4005-11506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11507/", + "id": 11507, + "name": "Marya Maximoff", + "site_detail_url": "https://comicvine.gamespot.com/marya-maximoff/4005-11507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11510/", + "id": 11510, + "name": "Future Max", + "site_detail_url": "https://comicvine.gamespot.com/future-max/4005-11510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11511/", + "id": 11511, + "name": "Max", + "site_detail_url": "https://comicvine.gamespot.com/max/4005-11511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11513/", + "id": 11513, + "name": "Victoria Anderson", + "site_detail_url": "https://comicvine.gamespot.com/victoria-anderson/4005-11513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11514/", + "id": 11514, + "name": "Derek Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/derek-hoffman/4005-11514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11515/", + "id": 11515, + "name": "Steve Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/steve-hoffman/4005-11515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11516/", + "id": 11516, + "name": "The Gremlin", + "site_detail_url": "https://comicvine.gamespot.com/the-gremlin/4005-11516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11517/", + "id": 11517, + "name": "Stacy X", + "site_detail_url": "https://comicvine.gamespot.com/stacy-x/4005-11517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11521/", + "id": 11521, + "name": "The Acursed Albino", + "site_detail_url": "https://comicvine.gamespot.com/the-acursed-albino/4005-11521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11522/", + "id": 11522, + "name": "Staak", + "site_detail_url": "https://comicvine.gamespot.com/staak/4005-11522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11524/", + "id": 11524, + "name": "Power-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/power-skrull/4005-11524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11527/", + "id": 11527, + "name": "Sunset Bain", + "site_detail_url": "https://comicvine.gamespot.com/sunset-bain/4005-11527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11529/", + "id": 11529, + "name": "Doctor Ford", + "site_detail_url": "https://comicvine.gamespot.com/doctor-ford/4005-11529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11531/", + "id": 11531, + "name": "Yith", + "site_detail_url": "https://comicvine.gamespot.com/yith/4005-11531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11532/", + "id": 11532, + "name": "Mister Arliss", + "site_detail_url": "https://comicvine.gamespot.com/mister-arliss/4005-11532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11533/", + "id": 11533, + "name": "Doctor Grafton", + "site_detail_url": "https://comicvine.gamespot.com/doctor-grafton/4005-11533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11534/", + "id": 11534, + "name": "James Bennett", + "site_detail_url": "https://comicvine.gamespot.com/james-bennett/4005-11534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11536/", + "id": 11536, + "name": "Martha Connors", + "site_detail_url": "https://comicvine.gamespot.com/martha-connors/4005-11536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11540/", + "id": 11540, + "name": "Scorpia", + "site_detail_url": "https://comicvine.gamespot.com/scorpia/4005-11540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11541/", + "id": 11541, + "name": "Alberto Ortega", + "site_detail_url": "https://comicvine.gamespot.com/alberto-ortega/4005-11541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11542/", + "id": 11542, + "name": "Garrison Klum", + "site_detail_url": "https://comicvine.gamespot.com/garrison-klum/4005-11542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11544/", + "id": 11544, + "name": "Oliver Hunter", + "site_detail_url": "https://comicvine.gamespot.com/oliver-hunter/4005-11544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11546/", + "id": 11546, + "name": "Desiree Winthrop", + "site_detail_url": "https://comicvine.gamespot.com/desiree-winthrop/4005-11546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11547/", + "id": 11547, + "name": "Doctor Hajeti", + "site_detail_url": "https://comicvine.gamespot.com/doctor-hajeti/4005-11547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11552/", + "id": 11552, + "name": "Normie Osborn", + "site_detail_url": "https://comicvine.gamespot.com/normie-osborn/4005-11552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11553/", + "id": 11553, + "name": "Jessica Carradine", + "site_detail_url": "https://comicvine.gamespot.com/jessica-carradine/4005-11553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11554/", + "id": 11554, + "name": "Molten Man", + "site_detail_url": "https://comicvine.gamespot.com/molten-man/4005-11554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11555/", + "id": 11555, + "name": "Trish Kowalski", + "site_detail_url": "https://comicvine.gamespot.com/trish-kowalski/4005-11555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11556/", + "id": 11556, + "name": "Devon Lewis", + "site_detail_url": "https://comicvine.gamespot.com/devon-lewis/4005-11556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11557/", + "id": 11557, + "name": "Muse", + "site_detail_url": "https://comicvine.gamespot.com/muse/4005-11557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11558/", + "id": 11558, + "name": "Professor Ramirez", + "site_detail_url": "https://comicvine.gamespot.com/professor-ramirez/4005-11558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11559/", + "id": 11559, + "name": "Sam Wantling", + "site_detail_url": "https://comicvine.gamespot.com/sam-wantling/4005-11559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11560/", + "id": 11560, + "name": "Kim Emsoon", + "site_detail_url": "https://comicvine.gamespot.com/kim-emsoon/4005-11560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11561/", + "id": 11561, + "name": "Beatta", + "site_detail_url": "https://comicvine.gamespot.com/beatta/4005-11561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11562/", + "id": 11562, + "name": "Oleg", + "site_detail_url": "https://comicvine.gamespot.com/oleg/4005-11562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11563/", + "id": 11563, + "name": "Father Whitney", + "site_detail_url": "https://comicvine.gamespot.com/father-whitney/4005-11563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11565/", + "id": 11565, + "name": "Noh-Varr", + "site_detail_url": "https://comicvine.gamespot.com/noh-varr/4005-11565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11567/", + "id": 11567, + "name": "Doctor Midas", + "site_detail_url": "https://comicvine.gamespot.com/doctor-midas/4005-11567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11568/", + "id": 11568, + "name": "Plex", + "site_detail_url": "https://comicvine.gamespot.com/plex/4005-11568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11569/", + "id": 11569, + "name": "Agent Orange", + "site_detail_url": "https://comicvine.gamespot.com/agent-orange/4005-11569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11574/", + "id": 11574, + "name": "Star Splendor", + "site_detail_url": "https://comicvine.gamespot.com/star-splendor/4005-11574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11575/", + "id": 11575, + "name": "Alain Weiss", + "site_detail_url": "https://comicvine.gamespot.com/alain-weiss/4005-11575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11576/", + "id": 11576, + "name": "The Augmen", + "site_detail_url": "https://comicvine.gamespot.com/the-augmen/4005-11576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11577/", + "id": 11577, + "name": "Opal Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/opal-tanaka/4005-11577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11578/", + "id": 11578, + "name": "Foe-Dog", + "site_detail_url": "https://comicvine.gamespot.com/foe-dog/4005-11578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11579/", + "id": 11579, + "name": "Chin Hsi", + "site_detail_url": "https://comicvine.gamespot.com/chin-hsi/4005-11579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11587/", + "id": 11587, + "name": "Burnout", + "site_detail_url": "https://comicvine.gamespot.com/burnout/4005-11587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11588/", + "id": 11588, + "name": "Mia Lessing", + "site_detail_url": "https://comicvine.gamespot.com/mia-lessing/4005-11588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11592/", + "id": 11592, + "name": "Trace", + "site_detail_url": "https://comicvine.gamespot.com/trace/4005-11592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11596/", + "id": 11596, + "name": "Plasma", + "site_detail_url": "https://comicvine.gamespot.com/plasma/4005-11596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11597/", + "id": 11597, + "name": "Ambassador Dubcek", + "site_detail_url": "https://comicvine.gamespot.com/ambassador-dubcek/4005-11597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11602/", + "id": 11602, + "name": "Jack Johnson", + "site_detail_url": "https://comicvine.gamespot.com/jack-johnson/4005-11602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11604/", + "id": 11604, + "name": "Dr. Harry Johnson", + "site_detail_url": "https://comicvine.gamespot.com/dr-harry-johnson/4005-11604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11605/", + "id": 11605, + "name": "Frankie Raye", + "site_detail_url": "https://comicvine.gamespot.com/frankie-raye/4005-11605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11607/", + "id": 11607, + "name": "Dr. Emmerich", + "site_detail_url": "https://comicvine.gamespot.com/dr-emmerich/4005-11607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11608/", + "id": 11608, + "name": "Shigeru Ezaki", + "site_detail_url": "https://comicvine.gamespot.com/shigeru-ezaki/4005-11608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11609/", + "id": 11609, + "name": "Giganto", + "site_detail_url": "https://comicvine.gamespot.com/giganto/4005-11609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11610/", + "id": 11610, + "name": "Cass", + "site_detail_url": "https://comicvine.gamespot.com/cass/4005-11610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11613/", + "id": 11613, + "name": "Orthus", + "site_detail_url": "https://comicvine.gamespot.com/orthus/4005-11613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11614/", + "id": 11614, + "name": "Reva Connors", + "site_detail_url": "https://comicvine.gamespot.com/reva-connors/4005-11614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11615/", + "id": 11615, + "name": "Uncle Matthew Storm", + "site_detail_url": "https://comicvine.gamespot.com/uncle-matthew-storm/4005-11615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11616/", + "id": 11616, + "name": "Isaac Herbert", + "site_detail_url": "https://comicvine.gamespot.com/isaac-herbert/4005-11616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11617/", + "id": 11617, + "name": "Coleen Chang", + "site_detail_url": "https://comicvine.gamespot.com/coleen-chang/4005-11617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11618/", + "id": 11618, + "name": "Ulysses", + "site_detail_url": "https://comicvine.gamespot.com/ulysses/4005-11618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11619/", + "id": 11619, + "name": "Yuri", + "site_detail_url": "https://comicvine.gamespot.com/yuri/4005-11619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11620/", + "id": 11620, + "name": "Kendra", + "site_detail_url": "https://comicvine.gamespot.com/kendra/4005-11620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11621/", + "id": 11621, + "name": "Daniel", + "site_detail_url": "https://comicvine.gamespot.com/daniel/4005-11621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11622/", + "id": 11622, + "name": "Visigon", + "site_detail_url": "https://comicvine.gamespot.com/visigon/4005-11622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11629/", + "id": 11629, + "name": "Walter", + "site_detail_url": "https://comicvine.gamespot.com/walter/4005-11629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11630/", + "id": 11630, + "name": "Neutrino Annihilator", + "site_detail_url": "https://comicvine.gamespot.com/neutrino-annihilator/4005-11630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11632/", + "id": 11632, + "name": "Gigi Martin", + "site_detail_url": "https://comicvine.gamespot.com/gigi-martin/4005-11632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11635/", + "id": 11635, + "name": "Major Buxley", + "site_detail_url": "https://comicvine.gamespot.com/major-buxley/4005-11635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11636/", + "id": 11636, + "name": "Lieutenant David", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-david/4005-11636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11637/", + "id": 11637, + "name": "Nystrom", + "site_detail_url": "https://comicvine.gamespot.com/nystrom/4005-11637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11639/", + "id": 11639, + "name": "Jonesey", + "site_detail_url": "https://comicvine.gamespot.com/jonesey/4005-11639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11641/", + "id": 11641, + "name": "Jennifer Montez", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-montez/4005-11641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11642/", + "id": 11642, + "name": "James MacDonald", + "site_detail_url": "https://comicvine.gamespot.com/james-macdonald/4005-11642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11643/", + "id": 11643, + "name": "Matty Gunzer", + "site_detail_url": "https://comicvine.gamespot.com/matty-gunzer/4005-11643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11644/", + "id": 11644, + "name": "Father Joe Gunzer", + "site_detail_url": "https://comicvine.gamespot.com/father-joe-gunzer/4005-11644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11645/", + "id": 11645, + "name": "Tito", + "site_detail_url": "https://comicvine.gamespot.com/tito/4005-11645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11646/", + "id": 11646, + "name": "Ornel", + "site_detail_url": "https://comicvine.gamespot.com/ornel/4005-11646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11647/", + "id": 11647, + "name": "Cleon Lincoln", + "site_detail_url": "https://comicvine.gamespot.com/cleon-lincoln/4005-11647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11649/", + "id": 11649, + "name": "Trisha", + "site_detail_url": "https://comicvine.gamespot.com/trisha/4005-11649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11650/", + "id": 11650, + "name": "Frank Gunzer", + "site_detail_url": "https://comicvine.gamespot.com/frank-gunzer/4005-11650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11652/", + "id": 11652, + "name": "Fireman Berilli", + "site_detail_url": "https://comicvine.gamespot.com/fireman-berilli/4005-11652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11653/", + "id": 11653, + "name": "Newmeir", + "site_detail_url": "https://comicvine.gamespot.com/newmeir/4005-11653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11654/", + "id": 11654, + "name": "Marvin Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/marvin-hoffman/4005-11654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11655/", + "id": 11655, + "name": "Orwell", + "site_detail_url": "https://comicvine.gamespot.com/orwell/4005-11655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11656/", + "id": 11656, + "name": "Malon Reeves", + "site_detail_url": "https://comicvine.gamespot.com/malon-reeves/4005-11656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11657/", + "id": 11657, + "name": "Michael Asher", + "site_detail_url": "https://comicvine.gamespot.com/michael-asher/4005-11657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11658/", + "id": 11658, + "name": "Fagin", + "site_detail_url": "https://comicvine.gamespot.com/fagin/4005-11658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11659/", + "id": 11659, + "name": "Marshal", + "site_detail_url": "https://comicvine.gamespot.com/marshal/4005-11659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11660/", + "id": 11660, + "name": "Jane Smythe", + "site_detail_url": "https://comicvine.gamespot.com/jane-smythe/4005-11660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11664/", + "id": 11664, + "name": "Bryson Bale", + "site_detail_url": "https://comicvine.gamespot.com/bryson-bale/4005-11664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11665/", + "id": 11665, + "name": "Malcolm Reeves", + "site_detail_url": "https://comicvine.gamespot.com/malcolm-reeves/4005-11665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11666/", + "id": 11666, + "name": "Bela", + "site_detail_url": "https://comicvine.gamespot.com/bela/4005-11666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11667/", + "id": 11667, + "name": "Elsa Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/elsa-bloodstone/4005-11667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11668/", + "id": 11668, + "name": "Tomas", + "site_detail_url": "https://comicvine.gamespot.com/tomas/4005-11668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11669/", + "id": 11669, + "name": "Adam Wright", + "site_detail_url": "https://comicvine.gamespot.com/adam-wright/4005-11669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11670/", + "id": 11670, + "name": "Lord Nosferatu", + "site_detail_url": "https://comicvine.gamespot.com/lord-nosferatu/4005-11670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11671/", + "id": 11671, + "name": "Charles Barnabus", + "site_detail_url": "https://comicvine.gamespot.com/charles-barnabus/4005-11671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11672/", + "id": 11672, + "name": "Elise Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/elise-bloodstone/4005-11672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11673/", + "id": 11673, + "name": "Master Fazil", + "site_detail_url": "https://comicvine.gamespot.com/master-fazil/4005-11673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11674/", + "id": 11674, + "name": "Doctor Minkley", + "site_detail_url": "https://comicvine.gamespot.com/doctor-minkley/4005-11674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11675/", + "id": 11675, + "name": "Pharaoh Rakses The Necromancer", + "site_detail_url": "https://comicvine.gamespot.com/pharaoh-rakses-the-necromancer/4005-11675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11677/", + "id": 11677, + "name": "Mr. Dluga", + "site_detail_url": "https://comicvine.gamespot.com/mr-dluga/4005-11677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11681/", + "id": 11681, + "name": "Captain Lubyev", + "site_detail_url": "https://comicvine.gamespot.com/captain-lubyev/4005-11681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11682/", + "id": 11682, + "name": "Detective Maksim Keshikov Golitsyn", + "site_detail_url": "https://comicvine.gamespot.com/detective-maksim-keshikov-golitsyn/4005-11682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11685/", + "id": 11685, + "name": "Captain Anzehlika Medvedev", + "site_detail_url": "https://comicvine.gamespot.com/captain-anzehlika-medvedev/4005-11685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11687/", + "id": 11687, + "name": "Mr. Zoumas", + "site_detail_url": "https://comicvine.gamespot.com/mr-zoumas/4005-11687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11689/", + "id": 11689, + "name": "David Lawson", + "site_detail_url": "https://comicvine.gamespot.com/david-lawson/4005-11689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11690/", + "id": 11690, + "name": "Detective Paul Hall", + "site_detail_url": "https://comicvine.gamespot.com/detective-paul-hall/4005-11690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11713/", + "id": 11713, + "name": "Kawagne", + "site_detail_url": "https://comicvine.gamespot.com/kawagne/4005-11713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11761/", + "id": 11761, + "name": "Angela", + "site_detail_url": "https://comicvine.gamespot.com/angela/4005-11761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11800/", + "id": 11800, + "name": "Waya", + "site_detail_url": "https://comicvine.gamespot.com/waya/4005-11800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11802/", + "id": 11802, + "name": "Abdul Alhazred", + "site_detail_url": "https://comicvine.gamespot.com/abdul-alhazred/4005-11802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11827/", + "id": 11827, + "name": "David Scotty", + "site_detail_url": "https://comicvine.gamespot.com/david-scotty/4005-11827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11829/", + "id": 11829, + "name": "Kristoff Vernard", + "site_detail_url": "https://comicvine.gamespot.com/kristoff-vernard/4005-11829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11832/", + "id": 11832, + "name": "Hyperstorm", + "site_detail_url": "https://comicvine.gamespot.com/hyperstorm/4005-11832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11833/", + "id": 11833, + "name": "Professor Kenneth Robeson", + "site_detail_url": "https://comicvine.gamespot.com/professor-kenneth-robeson/4005-11833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11835/", + "id": 11835, + "name": "Toro", + "site_detail_url": "https://comicvine.gamespot.com/toro/4005-11835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11837/", + "id": 11837, + "name": "Shadowqueen", + "site_detail_url": "https://comicvine.gamespot.com/shadowqueen/4005-11837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11839/", + "id": 11839, + "name": "Blackout", + "site_detail_url": "https://comicvine.gamespot.com/blackout/4005-11839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11840/", + "id": 11840, + "name": "Whizzer (Stewart)", + "site_detail_url": "https://comicvine.gamespot.com/whizzer-stewart/4005-11840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11842/", + "id": 11842, + "name": "Rodolfo Mico", + "site_detail_url": "https://comicvine.gamespot.com/rodolfo-mico/4005-11842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11844/", + "id": 11844, + "name": "Admiral Marts", + "site_detail_url": "https://comicvine.gamespot.com/admiral-marts/4005-11844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11845/", + "id": 11845, + "name": "Aron the Rogue Watcher", + "site_detail_url": "https://comicvine.gamespot.com/aron-the-rogue-watcher/4005-11845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11846/", + "id": 11846, + "name": "General Ator", + "site_detail_url": "https://comicvine.gamespot.com/general-ator/4005-11846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11848/", + "id": 11848, + "name": "Eelak The Agile", + "site_detail_url": "https://comicvine.gamespot.com/eelak-the-agile/4005-11848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11849/", + "id": 11849, + "name": "Margoyle", + "site_detail_url": "https://comicvine.gamespot.com/margoyle/4005-11849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11850/", + "id": 11850, + "name": "Glaboo", + "site_detail_url": "https://comicvine.gamespot.com/glaboo/4005-11850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11851/", + "id": 11851, + "name": "Pulssus", + "site_detail_url": "https://comicvine.gamespot.com/pulssus/4005-11851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11852/", + "id": 11852, + "name": "Dark Raider", + "site_detail_url": "https://comicvine.gamespot.com/dark-raider/4005-11852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11853/", + "id": 11853, + "name": "Grand Watcher", + "site_detail_url": "https://comicvine.gamespot.com/grand-watcher/4005-11853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11855/", + "id": 11855, + "name": "Chief Stalking Fox", + "site_detail_url": "https://comicvine.gamespot.com/chief-stalking-fox/4005-11855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11856/", + "id": 11856, + "name": "Raptor The Renegade", + "site_detail_url": "https://comicvine.gamespot.com/raptor-the-renegade/4005-11856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11857/", + "id": 11857, + "name": "Devos The Devastator", + "site_detail_url": "https://comicvine.gamespot.com/devos-the-devastator/4005-11857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11859/", + "id": 11859, + "name": "Dean Hastings", + "site_detail_url": "https://comicvine.gamespot.com/dean-hastings/4005-11859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11860/", + "id": 11860, + "name": "Huntara", + "site_detail_url": "https://comicvine.gamespot.com/huntara/4005-11860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11861/", + "id": 11861, + "name": "Raphael Suarez", + "site_detail_url": "https://comicvine.gamespot.com/raphael-suarez/4005-11861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11862/", + "id": 11862, + "name": "Devlor", + "site_detail_url": "https://comicvine.gamespot.com/devlor/4005-11862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11865/", + "id": 11865, + "name": "Roberta", + "site_detail_url": "https://comicvine.gamespot.com/roberta/4005-11865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11867/", + "id": 11867, + "name": "Drakion Destructiod", + "site_detail_url": "https://comicvine.gamespot.com/drakion-destructiod/4005-11867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11868/", + "id": 11868, + "name": "Moho The Dirt-Whale", + "site_detail_url": "https://comicvine.gamespot.com/moho-the-dirt-whale/4005-11868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11870/", + "id": 11870, + "name": "Dr. Gittelsohn", + "site_detail_url": "https://comicvine.gamespot.com/dr-gittelsohn/4005-11870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11875/", + "id": 11875, + "name": "Makio Yakaki", + "site_detail_url": "https://comicvine.gamespot.com/makio-yakaki/4005-11875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11876/", + "id": 11876, + "name": "Kaufman", + "site_detail_url": "https://comicvine.gamespot.com/kaufman/4005-11876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11877/", + "id": 11877, + "name": "Malice", + "site_detail_url": "https://comicvine.gamespot.com/malice/4005-11877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11880/", + "id": 11880, + "name": "Molecule Man", + "site_detail_url": "https://comicvine.gamespot.com/molecule-man/4005-11880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11882/", + "id": 11882, + "name": "Dictionary Dawson", + "site_detail_url": "https://comicvine.gamespot.com/dictionary-dawson/4005-11882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11883/", + "id": 11883, + "name": "Little Larry Lee", + "site_detail_url": "https://comicvine.gamespot.com/little-larry-lee/4005-11883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11884/", + "id": 11884, + "name": "Smooth Manny Merengues", + "site_detail_url": "https://comicvine.gamespot.com/smooth-manny-merengues/4005-11884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11885/", + "id": 11885, + "name": "Rhythm Ruiz", + "site_detail_url": "https://comicvine.gamespot.com/rhythm-ruiz/4005-11885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11886/", + "id": 11886, + "name": "Lugwrench Lubowski", + "site_detail_url": "https://comicvine.gamespot.com/lugwrench-lubowski/4005-11886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11887/", + "id": 11887, + "name": "Two-Fisted Tommie Boyd", + "site_detail_url": "https://comicvine.gamespot.com/two-fisted-tommie-boyd/4005-11887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11888/", + "id": 11888, + "name": "Jimmy Solokowski", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-solokowski/4005-11888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11889/", + "id": 11889, + "name": "Dreadface", + "site_detail_url": "https://comicvine.gamespot.com/dreadface/4005-11889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11892/", + "id": 11892, + "name": "Lyja", + "site_detail_url": "https://comicvine.gamespot.com/lyja/4005-11892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11894/", + "id": 11894, + "name": "General Kalamari", + "site_detail_url": "https://comicvine.gamespot.com/general-kalamari/4005-11894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11895/", + "id": 11895, + "name": "King Cobra", + "site_detail_url": "https://comicvine.gamespot.com/king-cobra/4005-11895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11898/", + "id": 11898, + "name": "Weasel", + "site_detail_url": "https://comicvine.gamespot.com/weasel/4005-11898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11909/", + "id": 11909, + "name": "Hellinger", + "site_detail_url": "https://comicvine.gamespot.com/hellinger/4005-11909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11910/", + "id": 11910, + "name": "Alexander Pierce", + "site_detail_url": "https://comicvine.gamespot.com/alexander-pierce/4005-11910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11911/", + "id": 11911, + "name": "Yoritomo", + "site_detail_url": "https://comicvine.gamespot.com/yoritomo/4005-11911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11912/", + "id": 11912, + "name": "Tracy Collins", + "site_detail_url": "https://comicvine.gamespot.com/tracy-collins/4005-11912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11913/", + "id": 11913, + "name": "Justin Pierce", + "site_detail_url": "https://comicvine.gamespot.com/justin-pierce/4005-11913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11914/", + "id": 11914, + "name": "Ben Jacobs", + "site_detail_url": "https://comicvine.gamespot.com/ben-jacobs/4005-11914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11915/", + "id": 11915, + "name": "Moses Magnum", + "site_detail_url": "https://comicvine.gamespot.com/moses-magnum/4005-11915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11917/", + "id": 11917, + "name": "Killjoy", + "site_detail_url": "https://comicvine.gamespot.com/killjoy/4005-11917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11918/", + "id": 11918, + "name": "Phreak", + "site_detail_url": "https://comicvine.gamespot.com/phreak/4005-11918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11920/", + "id": 11920, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4005-11920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11921/", + "id": 11921, + "name": "Evilok", + "site_detail_url": "https://comicvine.gamespot.com/evilok/4005-11921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11922/", + "id": 11922, + "name": "Biohazard", + "site_detail_url": "https://comicvine.gamespot.com/biohazard/4005-11922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11923/", + "id": 11923, + "name": "Mechadoom", + "site_detail_url": "https://comicvine.gamespot.com/mechadoom/4005-11923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11925/", + "id": 11925, + "name": "Coldblood", + "site_detail_url": "https://comicvine.gamespot.com/coldblood/4005-11925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11932/", + "id": 11932, + "name": "Bushwacker", + "site_detail_url": "https://comicvine.gamespot.com/bushwacker/4005-11932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11933/", + "id": 11933, + "name": "Ruby Thursday", + "site_detail_url": "https://comicvine.gamespot.com/ruby-thursday/4005-11933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11934/", + "id": 11934, + "name": "Nick Collins", + "site_detail_url": "https://comicvine.gamespot.com/nick-collins/4005-11934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11935/", + "id": 11935, + "name": "Jim Dworman", + "site_detail_url": "https://comicvine.gamespot.com/jim-dworman/4005-11935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11936/", + "id": 11936, + "name": "Warwolf", + "site_detail_url": "https://comicvine.gamespot.com/warwolf/4005-11936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11937/", + "id": 11937, + "name": "Pagan", + "site_detail_url": "https://comicvine.gamespot.com/pagan/4005-11937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11939/", + "id": 11939, + "name": "Kro", + "site_detail_url": "https://comicvine.gamespot.com/kro/4005-11939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11940/", + "id": 11940, + "name": "Ares", + "site_detail_url": "https://comicvine.gamespot.com/ares/4005-11940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11943/", + "id": 11943, + "name": "Stone Cold", + "site_detail_url": "https://comicvine.gamespot.com/stone-cold/4005-11943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11944/", + "id": 11944, + "name": "Blackwell", + "site_detail_url": "https://comicvine.gamespot.com/blackwell/4005-11944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11945/", + "id": 11945, + "name": "Lynn Michaels", + "site_detail_url": "https://comicvine.gamespot.com/lynn-michaels/4005-11945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11946/", + "id": 11946, + "name": "Payback", + "site_detail_url": "https://comicvine.gamespot.com/payback/4005-11946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11948/", + "id": 11948, + "name": "Vito Vaducci", + "site_detail_url": "https://comicvine.gamespot.com/vito-vaducci/4005-11948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11950/", + "id": 11950, + "name": "Mickey Fondozzi", + "site_detail_url": "https://comicvine.gamespot.com/mickey-fondozzi/4005-11950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11951/", + "id": 11951, + "name": "Shotgun", + "site_detail_url": "https://comicvine.gamespot.com/shotgun/4005-11951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11952/", + "id": 11952, + "name": "Andy Calabrese", + "site_detail_url": "https://comicvine.gamespot.com/andy-calabrese/4005-11952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11953/", + "id": 11953, + "name": "Sal Carbone", + "site_detail_url": "https://comicvine.gamespot.com/sal-carbone/4005-11953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11954/", + "id": 11954, + "name": "Rosalie Carbone", + "site_detail_url": "https://comicvine.gamespot.com/rosalie-carbone/4005-11954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11959/", + "id": 11959, + "name": "Sutton", + "site_detail_url": "https://comicvine.gamespot.com/sutton/4005-11959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12033/", + "id": 12033, + "name": "Göndul", + "site_detail_url": "https://comicvine.gamespot.com/gondul/4005-12033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12052/", + "id": 12052, + "name": "Red Lotus", + "site_detail_url": "https://comicvine.gamespot.com/red-lotus/4005-12052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12054/", + "id": 12054, + "name": "Teri Baltimore", + "site_detail_url": "https://comicvine.gamespot.com/teri-baltimore/4005-12054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12055/", + "id": 12055, + "name": "Lady Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/lady-mastermind/4005-12055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12057/", + "id": 12057, + "name": "The Examiner", + "site_detail_url": "https://comicvine.gamespot.com/the-examiner/4005-12057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12058/", + "id": 12058, + "name": "Thais", + "site_detail_url": "https://comicvine.gamespot.com/thais/4005-12058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12059/", + "id": 12059, + "name": "Thaiis", + "site_detail_url": "https://comicvine.gamespot.com/thaiis/4005-12059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12060/", + "id": 12060, + "name": "Maria Pilar Cortes", + "site_detail_url": "https://comicvine.gamespot.com/maria-pilar-cortes/4005-12060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12061/", + "id": 12061, + "name": "Diego Sandoval", + "site_detail_url": "https://comicvine.gamespot.com/diego-sandoval/4005-12061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12062/", + "id": 12062, + "name": "Sir Gordon Philips", + "site_detail_url": "https://comicvine.gamespot.com/sir-gordon-philips/4005-12062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12064/", + "id": 12064, + "name": "Hate-Monger", + "site_detail_url": "https://comicvine.gamespot.com/hate-monger/4005-12064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12067/", + "id": 12067, + "name": "Killer Shrike", + "site_detail_url": "https://comicvine.gamespot.com/killer-shrike/4005-12067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12068/", + "id": 12068, + "name": "Jarella", + "site_detail_url": "https://comicvine.gamespot.com/jarella/4005-12068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12069/", + "id": 12069, + "name": "Chris Olson", + "site_detail_url": "https://comicvine.gamespot.com/chris-olson/4005-12069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12070/", + "id": 12070, + "name": "Jean Valence", + "site_detail_url": "https://comicvine.gamespot.com/jean-valence/4005-12070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12071/", + "id": 12071, + "name": "Katamides", + "site_detail_url": "https://comicvine.gamespot.com/katamides/4005-12071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12073/", + "id": 12073, + "name": "Tedre", + "site_detail_url": "https://comicvine.gamespot.com/tedre/4005-12073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12074/", + "id": 12074, + "name": "Andrew Miller", + "site_detail_url": "https://comicvine.gamespot.com/andrew-miller/4005-12074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12075/", + "id": 12075, + "name": "Terry James", + "site_detail_url": "https://comicvine.gamespot.com/terry-james/4005-12075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12076/", + "id": 12076, + "name": "Richard Burkiss", + "site_detail_url": "https://comicvine.gamespot.com/richard-burkiss/4005-12076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12077/", + "id": 12077, + "name": "Ramon Carrejo", + "site_detail_url": "https://comicvine.gamespot.com/ramon-carrejo/4005-12077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12078/", + "id": 12078, + "name": "Nina", + "site_detail_url": "https://comicvine.gamespot.com/nina/4005-12078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12079/", + "id": 12079, + "name": "Kuroyama", + "site_detail_url": "https://comicvine.gamespot.com/kuroyama/4005-12079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12082/", + "id": 12082, + "name": "Stronghold", + "site_detail_url": "https://comicvine.gamespot.com/stronghold/4005-12082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12084/", + "id": 12084, + "name": "American Samurai", + "site_detail_url": "https://comicvine.gamespot.com/american-samurai/4005-12084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12085/", + "id": 12085, + "name": "Mexxa Rien", + "site_detail_url": "https://comicvine.gamespot.com/mexxa-rien/4005-12085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12087/", + "id": 12087, + "name": "McKinley Stewart", + "site_detail_url": "https://comicvine.gamespot.com/mckinley-stewart/4005-12087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12089/", + "id": 12089, + "name": "North Wind", + "site_detail_url": "https://comicvine.gamespot.com/north-wind/4005-12089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12090/", + "id": 12090, + "name": "South Wind", + "site_detail_url": "https://comicvine.gamespot.com/south-wind/4005-12090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12091/", + "id": 12091, + "name": "East Wind", + "site_detail_url": "https://comicvine.gamespot.com/east-wind/4005-12091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12092/", + "id": 12092, + "name": "West Wind", + "site_detail_url": "https://comicvine.gamespot.com/west-wind/4005-12092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12197/", + "id": 12197, + "name": "Space Shot", + "site_detail_url": "https://comicvine.gamespot.com/space-shot/4005-12197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12200/", + "id": 12200, + "name": "Jinx", + "site_detail_url": "https://comicvine.gamespot.com/jinx/4005-12200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12201/", + "id": 12201, + "name": "Dojo", + "site_detail_url": "https://comicvine.gamespot.com/dojo/4005-12201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12202/", + "id": 12202, + "name": "Nunchuk", + "site_detail_url": "https://comicvine.gamespot.com/nunchuk/4005-12202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12208/", + "id": 12208, + "name": "Bullet-Proof", + "site_detail_url": "https://comicvine.gamespot.com/bullet-proof/4005-12208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12209/", + "id": 12209, + "name": "Headman", + "site_detail_url": "https://comicvine.gamespot.com/headman/4005-12209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12211/", + "id": 12211, + "name": "Slice", + "site_detail_url": "https://comicvine.gamespot.com/slice/4005-12211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12212/", + "id": 12212, + "name": "Dice", + "site_detail_url": "https://comicvine.gamespot.com/dice/4005-12212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12215/", + "id": 12215, + "name": "Soft Master", + "site_detail_url": "https://comicvine.gamespot.com/soft-master/4005-12215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12216/", + "id": 12216, + "name": "Misha", + "site_detail_url": "https://comicvine.gamespot.com/misha/4005-12216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12219/", + "id": 12219, + "name": "Jake The Foreman", + "site_detail_url": "https://comicvine.gamespot.com/jake-the-foreman/4005-12219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12220/", + "id": 12220, + "name": "Raggedy-Mouf", + "site_detail_url": "https://comicvine.gamespot.com/raggedy-mouf/4005-12220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12221/", + "id": 12221, + "name": "Thurston", + "site_detail_url": "https://comicvine.gamespot.com/thurston/4005-12221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12225/", + "id": 12225, + "name": "Dragonsky", + "site_detail_url": "https://comicvine.gamespot.com/dragonsky/4005-12225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12229/", + "id": 12229, + "name": "Bux", + "site_detail_url": "https://comicvine.gamespot.com/bux/4005-12229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12231/", + "id": 12231, + "name": "Order", + "site_detail_url": "https://comicvine.gamespot.com/order/4005-12231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12233/", + "id": 12233, + "name": "Tiny", + "site_detail_url": "https://comicvine.gamespot.com/tiny/4005-12233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12235/", + "id": 12235, + "name": "Tucaros", + "site_detail_url": "https://comicvine.gamespot.com/tucaros/4005-12235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12245/", + "id": 12245, + "name": "Blind Master", + "site_detail_url": "https://comicvine.gamespot.com/blind-master/4005-12245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12246/", + "id": 12246, + "name": "The White Clown", + "site_detail_url": "https://comicvine.gamespot.com/the-white-clown/4005-12246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12256/", + "id": 12256, + "name": "Deep-Six", + "site_detail_url": "https://comicvine.gamespot.com/deep-six/4005-12256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12265/", + "id": 12265, + "name": "General Austin", + "site_detail_url": "https://comicvine.gamespot.com/general-austin/4005-12265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12266/", + "id": 12266, + "name": "Marathon", + "site_detail_url": "https://comicvine.gamespot.com/marathon/4005-12266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12268/", + "id": 12268, + "name": "Fred Broca", + "site_detail_url": "https://comicvine.gamespot.com/fred-broca/4005-12268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12274/", + "id": 12274, + "name": "General Flagg", + "site_detail_url": "https://comicvine.gamespot.com/general-flagg/4005-12274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12279/", + "id": 12279, + "name": "Grand Slam", + "site_detail_url": "https://comicvine.gamespot.com/grand-slam/4005-12279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12280/", + "id": 12280, + "name": "Schrage", + "site_detail_url": "https://comicvine.gamespot.com/schrage/4005-12280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12281/", + "id": 12281, + "name": "Horrorshow", + "site_detail_url": "https://comicvine.gamespot.com/horrorshow/4005-12281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12282/", + "id": 12282, + "name": "Stormavik", + "site_detail_url": "https://comicvine.gamespot.com/stormavik/4005-12282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12284/", + "id": 12284, + "name": "Strike First", + "site_detail_url": "https://comicvine.gamespot.com/strike-first/4005-12284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12312/", + "id": 12312, + "name": "Jake Olsen", + "site_detail_url": "https://comicvine.gamespot.com/jake-olsen/4005-12312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12313/", + "id": 12313, + "name": "Demitrius Collins", + "site_detail_url": "https://comicvine.gamespot.com/demitrius-collins/4005-12313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12315/", + "id": 12315, + "name": "Amanda Fairmont", + "site_detail_url": "https://comicvine.gamespot.com/amanda-fairmont/4005-12315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12316/", + "id": 12316, + "name": "Jmyrsk", + "site_detail_url": "https://comicvine.gamespot.com/jmyrsk/4005-12316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12317/", + "id": 12317, + "name": "Ggorgstog", + "site_detail_url": "https://comicvine.gamespot.com/ggorgstog/4005-12317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12318/", + "id": 12318, + "name": "Volla", + "site_detail_url": "https://comicvine.gamespot.com/volla/4005-12318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12319/", + "id": 12319, + "name": "Perrikus", + "site_detail_url": "https://comicvine.gamespot.com/perrikus/4005-12319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12320/", + "id": 12320, + "name": "Adva", + "site_detail_url": "https://comicvine.gamespot.com/adva/4005-12320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12321/", + "id": 12321, + "name": "Desak", + "site_detail_url": "https://comicvine.gamespot.com/desak/4005-12321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12322/", + "id": 12322, + "name": "Dale Krogstad", + "site_detail_url": "https://comicvine.gamespot.com/dale-krogstad/4005-12322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12323/", + "id": 12323, + "name": "Ulik", + "site_detail_url": "https://comicvine.gamespot.com/ulik/4005-12323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12325/", + "id": 12325, + "name": "Orikal", + "site_detail_url": "https://comicvine.gamespot.com/orikal/4005-12325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12326/", + "id": 12326, + "name": "Thomas Ryan", + "site_detail_url": "https://comicvine.gamespot.com/thomas-ryan/4005-12326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12327/", + "id": 12327, + "name": "Jargsa", + "site_detail_url": "https://comicvine.gamespot.com/jargsa/4005-12327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12328/", + "id": 12328, + "name": "Neffethesk", + "site_detail_url": "https://comicvine.gamespot.com/neffethesk/4005-12328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12329/", + "id": 12329, + "name": "Cyra", + "site_detail_url": "https://comicvine.gamespot.com/cyra/4005-12329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12330/", + "id": 12330, + "name": "Kurse", + "site_detail_url": "https://comicvine.gamespot.com/kurse/4005-12330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12331/", + "id": 12331, + "name": "Hannah Fairmont", + "site_detail_url": "https://comicvine.gamespot.com/hannah-fairmont/4005-12331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12333/", + "id": 12333, + "name": "Magpie", + "site_detail_url": "https://comicvine.gamespot.com/magpie/4005-12333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12334/", + "id": 12334, + "name": "Warren Traveler", + "site_detail_url": "https://comicvine.gamespot.com/warren-traveler/4005-12334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12335/", + "id": 12335, + "name": "Thor Girl", + "site_detail_url": "https://comicvine.gamespot.com/thor-girl/4005-12335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12336/", + "id": 12336, + "name": "Officer Burnatt", + "site_detail_url": "https://comicvine.gamespot.com/officer-burnatt/4005-12336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12337/", + "id": 12337, + "name": "Jane Foster", + "site_detail_url": "https://comicvine.gamespot.com/jane-foster/4005-12337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12341/", + "id": 12341, + "name": "Tom Foster", + "site_detail_url": "https://comicvine.gamespot.com/tom-foster/4005-12341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12342/", + "id": 12342, + "name": "Keith Kincaid", + "site_detail_url": "https://comicvine.gamespot.com/keith-kincaid/4005-12342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12343/", + "id": 12343, + "name": "Marnot", + "site_detail_url": "https://comicvine.gamespot.com/marnot/4005-12343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12344/", + "id": 12344, + "name": "Recorder", + "site_detail_url": "https://comicvine.gamespot.com/recorder/4005-12344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12345/", + "id": 12345, + "name": "Mangog", + "site_detail_url": "https://comicvine.gamespot.com/mangog/4005-12345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12346/", + "id": 12346, + "name": "Tarakis", + "site_detail_url": "https://comicvine.gamespot.com/tarakis/4005-12346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12347/", + "id": 12347, + "name": "Jagrfelm", + "site_detail_url": "https://comicvine.gamespot.com/jagrfelm/4005-12347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12348/", + "id": 12348, + "name": "The Millennium Monarch", + "site_detail_url": "https://comicvine.gamespot.com/the-millennium-monarch/4005-12348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12349/", + "id": 12349, + "name": "Ceranda", + "site_detail_url": "https://comicvine.gamespot.com/ceranda/4005-12349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12350/", + "id": 12350, + "name": "Magnir", + "site_detail_url": "https://comicvine.gamespot.com/magnir/4005-12350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12351/", + "id": 12351, + "name": "Enrakt", + "site_detail_url": "https://comicvine.gamespot.com/enrakt/4005-12351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12352/", + "id": 12352, + "name": "Brona", + "site_detail_url": "https://comicvine.gamespot.com/brona/4005-12352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12354/", + "id": 12354, + "name": "Ned Leeds", + "site_detail_url": "https://comicvine.gamespot.com/ned-leeds/4005-12354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12356/", + "id": 12356, + "name": "Frederick Foswell", + "site_detail_url": "https://comicvine.gamespot.com/frederick-foswell/4005-12356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12357/", + "id": 12357, + "name": "Joe Smith", + "site_detail_url": "https://comicvine.gamespot.com/joe-smith/4005-12357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12358/", + "id": 12358, + "name": "Betsy Schnieder", + "site_detail_url": "https://comicvine.gamespot.com/betsy-schnieder/4005-12358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12413/", + "id": 12413, + "name": "Rita", + "site_detail_url": "https://comicvine.gamespot.com/rita/4005-12413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12490/", + "id": 12490, + "name": "Kong", + "site_detail_url": "https://comicvine.gamespot.com/kong/4005-12490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12546/", + "id": 12546, + "name": "Mimic", + "site_detail_url": "https://comicvine.gamespot.com/mimic/4005-12546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12547/", + "id": 12547, + "name": "Morph", + "site_detail_url": "https://comicvine.gamespot.com/morph/4005-12547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12548/", + "id": 12548, + "name": "Blink", + "site_detail_url": "https://comicvine.gamespot.com/blink/4005-12548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12549/", + "id": 12549, + "name": "Poison-Lark", + "site_detail_url": "https://comicvine.gamespot.com/poison-lark/4005-12549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12550/", + "id": 12550, + "name": "Crimson Sage", + "site_detail_url": "https://comicvine.gamespot.com/crimson-sage/4005-12550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12551/", + "id": 12551, + "name": "The Captain", + "site_detail_url": "https://comicvine.gamespot.com/the-captain/4005-12551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12595/", + "id": 12595, + "name": "Dakimh", + "site_detail_url": "https://comicvine.gamespot.com/dakimh/4005-12595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12597/", + "id": 12597, + "name": "Klonus", + "site_detail_url": "https://comicvine.gamespot.com/klonus/4005-12597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12599/", + "id": 12599, + "name": "Jeffrey Garrett", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-garrett/4005-12599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12600/", + "id": 12600, + "name": "Marrina", + "site_detail_url": "https://comicvine.gamespot.com/marrina/4005-12600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12601/", + "id": 12601, + "name": "Dorma", + "site_detail_url": "https://comicvine.gamespot.com/dorma/4005-12601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12602/", + "id": 12602, + "name": "Suma-Ket", + "site_detail_url": "https://comicvine.gamespot.com/suma-ket/4005-12602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12603/", + "id": 12603, + "name": "Master Khan", + "site_detail_url": "https://comicvine.gamespot.com/master-khan/4005-12603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12605/", + "id": 12605, + "name": "Jim Hammond", + "site_detail_url": "https://comicvine.gamespot.com/jim-hammond/4005-12605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12610/", + "id": 12610, + "name": "Porcupine", + "site_detail_url": "https://comicvine.gamespot.com/porcupine/4005-12610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12611/", + "id": 12611, + "name": "Misha", + "site_detail_url": "https://comicvine.gamespot.com/misha/4005-12611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12614/", + "id": 12614, + "name": "Morris Walters", + "site_detail_url": "https://comicvine.gamespot.com/morris-walters/4005-12614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12615/", + "id": 12615, + "name": "Abominatrix", + "site_detail_url": "https://comicvine.gamespot.com/abominatrix/4005-12615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12616/", + "id": 12616, + "name": "Dr. Daniel Ridge", + "site_detail_url": "https://comicvine.gamespot.com/dr-daniel-ridge/4005-12616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12617/", + "id": 12617, + "name": "Christina Ridge", + "site_detail_url": "https://comicvine.gamespot.com/christina-ridge/4005-12617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12618/", + "id": 12618, + "name": "Hector Devasquez", + "site_detail_url": "https://comicvine.gamespot.com/hector-devasquez/4005-12618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12619/", + "id": 12619, + "name": "War Zone", + "site_detail_url": "https://comicvine.gamespot.com/war-zone/4005-12619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12620/", + "id": 12620, + "name": "Death", + "site_detail_url": "https://comicvine.gamespot.com/death/4005-12620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12622/", + "id": 12622, + "name": "Firebrand (Gilbert)", + "site_detail_url": "https://comicvine.gamespot.com/firebrand-gilbert/4005-12622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12623/", + "id": 12623, + "name": "Miracle Man", + "site_detail_url": "https://comicvine.gamespot.com/miracle-man/4005-12623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12624/", + "id": 12624, + "name": "Kangaroo", + "site_detail_url": "https://comicvine.gamespot.com/kangaroo/4005-12624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12626/", + "id": 12626, + "name": "Behemoth", + "site_detail_url": "https://comicvine.gamespot.com/behemoth/4005-12626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12629/", + "id": 12629, + "name": "Mahkizmo", + "site_detail_url": "https://comicvine.gamespot.com/mahkizmo/4005-12629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12631/", + "id": 12631, + "name": "Living Eraser", + "site_detail_url": "https://comicvine.gamespot.com/living-eraser/4005-12631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12632/", + "id": 12632, + "name": "Venus", + "site_detail_url": "https://comicvine.gamespot.com/venus/4005-12632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12634/", + "id": 12634, + "name": "Richard Rory", + "site_detail_url": "https://comicvine.gamespot.com/richard-rory/4005-12634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12635/", + "id": 12635, + "name": "Divinity Drake", + "site_detail_url": "https://comicvine.gamespot.com/divinity-drake/4005-12635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12637/", + "id": 12637, + "name": "Black Bishop", + "site_detail_url": "https://comicvine.gamespot.com/black-bishop/4005-12637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12638/", + "id": 12638, + "name": "Keeper of the Comics Code Authority", + "site_detail_url": "https://comicvine.gamespot.com/keeper-of-the-comics-code-authority/4005-12638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12639/", + "id": 12639, + "name": "Garth", + "site_detail_url": "https://comicvine.gamespot.com/garth/4005-12639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12640/", + "id": 12640, + "name": "Warhead", + "site_detail_url": "https://comicvine.gamespot.com/warhead/4005-12640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12641/", + "id": 12641, + "name": "Scaleface", + "site_detail_url": "https://comicvine.gamespot.com/scaleface/4005-12641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12643/", + "id": 12643, + "name": "Professor Bob Robertson", + "site_detail_url": "https://comicvine.gamespot.com/professor-bob-robertson/4005-12643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12647/", + "id": 12647, + "name": "Montgomery H. Price", + "site_detail_url": "https://comicvine.gamespot.com/montgomery-h-price/4005-12647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12709/", + "id": 12709, + "name": "Whiplash (Scarlotti)", + "site_detail_url": "https://comicvine.gamespot.com/whiplash-scarlotti/4005-12709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12710/", + "id": 12710, + "name": "Hannibal King", + "site_detail_url": "https://comicvine.gamespot.com/hannibal-king/4005-12710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12711/", + "id": 12711, + "name": "Tatjana Stiles", + "site_detail_url": "https://comicvine.gamespot.com/tatjana-stiles/4005-12711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12712/", + "id": 12712, + "name": "Navarro", + "site_detail_url": "https://comicvine.gamespot.com/navarro/4005-12712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12714/", + "id": 12714, + "name": "Wild Tiger", + "site_detail_url": "https://comicvine.gamespot.com/wild-tiger/4005-12714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12716/", + "id": 12716, + "name": "Shang-Chi", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi/4005-12716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12720/", + "id": 12720, + "name": "Red Norvell", + "site_detail_url": "https://comicvine.gamespot.com/red-norvell/4005-12720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12722/", + "id": 12722, + "name": "Hedy Wolfe", + "site_detail_url": "https://comicvine.gamespot.com/hedy-wolfe/4005-12722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12723/", + "id": 12723, + "name": "Jan Stark", + "site_detail_url": "https://comicvine.gamespot.com/jan-stark/4005-12723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12724/", + "id": 12724, + "name": "Al Tindall", + "site_detail_url": "https://comicvine.gamespot.com/al-tindall/4005-12724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12725/", + "id": 12725, + "name": "Ted Trent", + "site_detail_url": "https://comicvine.gamespot.com/ted-trent/4005-12725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12726/", + "id": 12726, + "name": "Mad-Dog", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog/4005-12726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12727/", + "id": 12727, + "name": "Nancy Brown", + "site_detail_url": "https://comicvine.gamespot.com/nancy-brown/4005-12727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12728/", + "id": 12728, + "name": "Ma Carter", + "site_detail_url": "https://comicvine.gamespot.com/ma-carter/4005-12728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12729/", + "id": 12729, + "name": "Mike Herald", + "site_detail_url": "https://comicvine.gamespot.com/mike-herald/4005-12729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12730/", + "id": 12730, + "name": "Dorothy Walker", + "site_detail_url": "https://comicvine.gamespot.com/dorothy-walker/4005-12730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12731/", + "id": 12731, + "name": "Joshua Walker", + "site_detail_url": "https://comicvine.gamespot.com/joshua-walker/4005-12731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12733/", + "id": 12733, + "name": "Ron Robbins", + "site_detail_url": "https://comicvine.gamespot.com/ron-robbins/4005-12733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12734/", + "id": 12734, + "name": "Mac Danton", + "site_detail_url": "https://comicvine.gamespot.com/mac-danton/4005-12734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12735/", + "id": 12735, + "name": "Mr. Wolfe", + "site_detail_url": "https://comicvine.gamespot.com/mr-wolfe/4005-12735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12737/", + "id": 12737, + "name": "Tubs", + "site_detail_url": "https://comicvine.gamespot.com/tubs/4005-12737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12738/", + "id": 12738, + "name": "Simbus", + "site_detail_url": "https://comicvine.gamespot.com/simbus/4005-12738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12739/", + "id": 12739, + "name": "Mickey Walker", + "site_detail_url": "https://comicvine.gamespot.com/mickey-walker/4005-12739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12740/", + "id": 12740, + "name": "Arnold Porter", + "site_detail_url": "https://comicvine.gamespot.com/arnold-porter/4005-12740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12741/", + "id": 12741, + "name": "Mr. Krautmann", + "site_detail_url": "https://comicvine.gamespot.com/mr-krautmann/4005-12741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12742/", + "id": 12742, + "name": "Mr. Baxter", + "site_detail_url": "https://comicvine.gamespot.com/mr-baxter/4005-12742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12901/", + "id": 12901, + "name": "Haywire", + "site_detail_url": "https://comicvine.gamespot.com/haywire/4005-12901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12903/", + "id": 12903, + "name": "Lord Chaos", + "site_detail_url": "https://comicvine.gamespot.com/lord-chaos/4005-12903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12904/", + "id": 12904, + "name": "Master Order", + "site_detail_url": "https://comicvine.gamespot.com/master-order/4005-12904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12907/", + "id": 12907, + "name": "Deuteronomy", + "site_detail_url": "https://comicvine.gamespot.com/deuteronomy/4005-12907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12908/", + "id": 12908, + "name": "Beverly Switzler", + "site_detail_url": "https://comicvine.gamespot.com/beverly-switzler/4005-12908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12909/", + "id": 12909, + "name": "Doctor Bong", + "site_detail_url": "https://comicvine.gamespot.com/doctor-bong/4005-12909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12911/", + "id": 12911, + "name": "U-Go Girl", + "site_detail_url": "https://comicvine.gamespot.com/u-go-girl/4005-12911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12912/", + "id": 12912, + "name": "Orphan", + "site_detail_url": "https://comicvine.gamespot.com/orphan/4005-12912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12913/", + "id": 12913, + "name": "Anarchist", + "site_detail_url": "https://comicvine.gamespot.com/anarchist/4005-12913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-12915/", + "id": 12915, + "name": "Lacuna", + "site_detail_url": "https://comicvine.gamespot.com/lacuna/4005-12915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13162/", + "id": 13162, + "name": "Dolly Dimly", + "site_detail_url": "https://comicvine.gamespot.com/dolly-dimly/4005-13162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13163/", + "id": 13163, + "name": "Toni Turner", + "site_detail_url": "https://comicvine.gamespot.com/toni-turner/4005-13163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13311/", + "id": 13311, + "name": "Copycat", + "site_detail_url": "https://comicvine.gamespot.com/copycat/4005-13311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13312/", + "id": 13312, + "name": "Tempo", + "site_detail_url": "https://comicvine.gamespot.com/tempo/4005-13312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13313/", + "id": 13313, + "name": "Wendigo", + "site_detail_url": "https://comicvine.gamespot.com/wendigo/4005-13313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13314/", + "id": 13314, + "name": "Nimrod", + "site_detail_url": "https://comicvine.gamespot.com/nimrod/4005-13314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13315/", + "id": 13315, + "name": "Forearm", + "site_detail_url": "https://comicvine.gamespot.com/forearm/4005-13315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13317/", + "id": 13317, + "name": "Teri Martin", + "site_detail_url": "https://comicvine.gamespot.com/teri-martin/4005-13317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13318/", + "id": 13318, + "name": "Ashley Martin", + "site_detail_url": "https://comicvine.gamespot.com/ashley-martin/4005-13318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13319/", + "id": 13319, + "name": "Avia", + "site_detail_url": "https://comicvine.gamespot.com/avia/4005-13319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13320/", + "id": 13320, + "name": "Candy Southern", + "site_detail_url": "https://comicvine.gamespot.com/candy-southern/4005-13320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13321/", + "id": 13321, + "name": "Krueger", + "site_detail_url": "https://comicvine.gamespot.com/krueger/4005-13321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13322/", + "id": 13322, + "name": "Deluge", + "site_detail_url": "https://comicvine.gamespot.com/deluge/4005-13322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13323/", + "id": 13323, + "name": "Sam Exmore", + "site_detail_url": "https://comicvine.gamespot.com/sam-exmore/4005-13323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13327/", + "id": 13327, + "name": "Zelda Kurtzberg", + "site_detail_url": "https://comicvine.gamespot.com/zelda-kurtzberg/4005-13327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13329/", + "id": 13329, + "name": "Toni Harris", + "site_detail_url": "https://comicvine.gamespot.com/toni-harris/4005-13329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13330/", + "id": 13330, + "name": "Bob Lefferts", + "site_detail_url": "https://comicvine.gamespot.com/bob-lefferts/4005-13330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13332/", + "id": 13332, + "name": "Stranger", + "site_detail_url": "https://comicvine.gamespot.com/stranger/4005-13332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13334/", + "id": 13334, + "name": "Chaos", + "site_detail_url": "https://comicvine.gamespot.com/chaos/4005-13334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13337/", + "id": 13337, + "name": "Kurt Marko", + "site_detail_url": "https://comicvine.gamespot.com/kurt-marko/4005-13337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13338/", + "id": 13338, + "name": "Brian Xavier", + "site_detail_url": "https://comicvine.gamespot.com/brian-xavier/4005-13338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13339/", + "id": 13339, + "name": "Astra", + "site_detail_url": "https://comicvine.gamespot.com/astra/4005-13339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13346/", + "id": 13346, + "name": "High Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/high-evolutionary/4005-13346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13347/", + "id": 13347, + "name": "Graviton", + "site_detail_url": "https://comicvine.gamespot.com/graviton/4005-13347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13348/", + "id": 13348, + "name": "Eon", + "site_detail_url": "https://comicvine.gamespot.com/eon/4005-13348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13349/", + "id": 13349, + "name": "Legion", + "site_detail_url": "https://comicvine.gamespot.com/legion/4005-13349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13350/", + "id": 13350, + "name": "Ruckus", + "site_detail_url": "https://comicvine.gamespot.com/ruckus/4005-13350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13351/", + "id": 13351, + "name": "Graydon Creed", + "site_detail_url": "https://comicvine.gamespot.com/graydon-creed/4005-13351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13352/", + "id": 13352, + "name": "Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/onslaught/4005-13352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13353/", + "id": 13353, + "name": "Domina", + "site_detail_url": "https://comicvine.gamespot.com/domina/4005-13353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13354/", + "id": 13354, + "name": "In-Betweener", + "site_detail_url": "https://comicvine.gamespot.com/in-betweener/4005-13354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13355/", + "id": 13355, + "name": "The Ethicals", + "site_detail_url": "https://comicvine.gamespot.com/the-ethicals/4005-13355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13360/", + "id": 13360, + "name": "Eric the Red", + "site_detail_url": "https://comicvine.gamespot.com/eric-the-red/4005-13360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13362/", + "id": 13362, + "name": "Peter Corbeau", + "site_detail_url": "https://comicvine.gamespot.com/peter-corbeau/4005-13362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13364/", + "id": 13364, + "name": "Butch", + "site_detail_url": "https://comicvine.gamespot.com/butch/4005-13364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13365/", + "id": 13365, + "name": "Healer", + "site_detail_url": "https://comicvine.gamespot.com/healer/4005-13365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13366/", + "id": 13366, + "name": "Erg", + "site_detail_url": "https://comicvine.gamespot.com/erg/4005-13366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13368/", + "id": 13368, + "name": "Ape", + "site_detail_url": "https://comicvine.gamespot.com/ape/4005-13368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13369/", + "id": 13369, + "name": "Arclight", + "site_detail_url": "https://comicvine.gamespot.com/arclight/4005-13369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13372/", + "id": 13372, + "name": "Hilde", + "site_detail_url": "https://comicvine.gamespot.com/hilde/4005-13372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13373/", + "id": 13373, + "name": "Kevin", + "site_detail_url": "https://comicvine.gamespot.com/kevin/4005-13373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13374/", + "id": 13374, + "name": "Mick", + "site_detail_url": "https://comicvine.gamespot.com/mick/4005-13374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13376/", + "id": 13376, + "name": "Rusty Collins", + "site_detail_url": "https://comicvine.gamespot.com/rusty-collins/4005-13376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13377/", + "id": 13377, + "name": "Zeek", + "site_detail_url": "https://comicvine.gamespot.com/zeek/4005-13377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13378/", + "id": 13378, + "name": "Dreamer", + "site_detail_url": "https://comicvine.gamespot.com/dreamer/4005-13378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13379/", + "id": 13379, + "name": "Cameron Hodge", + "site_detail_url": "https://comicvine.gamespot.com/cameron-hodge/4005-13379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13380/", + "id": 13380, + "name": "Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane/4005-13380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13381/", + "id": 13381, + "name": "Foreigner", + "site_detail_url": "https://comicvine.gamespot.com/foreigner/4005-13381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13383/", + "id": 13383, + "name": "Harmony Young", + "site_detail_url": "https://comicvine.gamespot.com/harmony-young/4005-13383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13384/", + "id": 13384, + "name": "Claire Temple", + "site_detail_url": "https://comicvine.gamespot.com/claire-temple/4005-13384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13385/", + "id": 13385, + "name": "Batal", + "site_detail_url": "https://comicvine.gamespot.com/batal/4005-13385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13386/", + "id": 13386, + "name": "Timeslip", + "site_detail_url": "https://comicvine.gamespot.com/timeslip/4005-13386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13387/", + "id": 13387, + "name": "Hindsight", + "site_detail_url": "https://comicvine.gamespot.com/hindsight/4005-13387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13388/", + "id": 13388, + "name": "Kendo", + "site_detail_url": "https://comicvine.gamespot.com/kendo/4005-13388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13389/", + "id": 13389, + "name": "Protocol", + "site_detail_url": "https://comicvine.gamespot.com/protocol/4005-13389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13390/", + "id": 13390, + "name": "General Admission", + "site_detail_url": "https://comicvine.gamespot.com/general-admission/4005-13390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13392/", + "id": 13392, + "name": "Harrier", + "site_detail_url": "https://comicvine.gamespot.com/harrier/4005-13392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13393/", + "id": 13393, + "name": "Sparrow", + "site_detail_url": "https://comicvine.gamespot.com/sparrow/4005-13393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13394/", + "id": 13394, + "name": "Cut", + "site_detail_url": "https://comicvine.gamespot.com/cut/4005-13394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13395/", + "id": 13395, + "name": "Dry", + "site_detail_url": "https://comicvine.gamespot.com/dry/4005-13395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13396/", + "id": 13396, + "name": "Light", + "site_detail_url": "https://comicvine.gamespot.com/light/4005-13396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13397/", + "id": 13397, + "name": "Dark", + "site_detail_url": "https://comicvine.gamespot.com/dark/4005-13397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13398/", + "id": 13398, + "name": "General Obsidian", + "site_detail_url": "https://comicvine.gamespot.com/general-obsidian/4005-13398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13399/", + "id": 13399, + "name": "Tanager", + "site_detail_url": "https://comicvine.gamespot.com/tanager/4005-13399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13400/", + "id": 13400, + "name": "Orka", + "site_detail_url": "https://comicvine.gamespot.com/orka/4005-13400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13401/", + "id": 13401, + "name": "Krang", + "site_detail_url": "https://comicvine.gamespot.com/krang/4005-13401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13402/", + "id": 13402, + "name": "Gargantua", + "site_detail_url": "https://comicvine.gamespot.com/gargantua/4005-13402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13403/", + "id": 13403, + "name": "Halladah", + "site_detail_url": "https://comicvine.gamespot.com/halladah/4005-13403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13404/", + "id": 13404, + "name": "Fiona Dunn", + "site_detail_url": "https://comicvine.gamespot.com/fiona-dunn/4005-13404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13410/", + "id": 13410, + "name": "Slash Curtis", + "site_detail_url": "https://comicvine.gamespot.com/slash-curtis/4005-13410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13412/", + "id": 13412, + "name": "Captain Axis", + "site_detail_url": "https://comicvine.gamespot.com/captain-axis/4005-13412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13418/", + "id": 13418, + "name": "Morton Clegstead", + "site_detail_url": "https://comicvine.gamespot.com/morton-clegstead/4005-13418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13421/", + "id": 13421, + "name": "Viking", + "site_detail_url": "https://comicvine.gamespot.com/viking/4005-13421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13423/", + "id": 13423, + "name": "Inheritor", + "site_detail_url": "https://comicvine.gamespot.com/inheritor/4005-13423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13425/", + "id": 13425, + "name": "Fialan", + "site_detail_url": "https://comicvine.gamespot.com/fialan/4005-13425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13428/", + "id": 13428, + "name": "The Colossus", + "site_detail_url": "https://comicvine.gamespot.com/the-colossus/4005-13428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13429/", + "id": 13429, + "name": "Torla", + "site_detail_url": "https://comicvine.gamespot.com/torla/4005-13429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13430/", + "id": 13430, + "name": "Holi", + "site_detail_url": "https://comicvine.gamespot.com/holi/4005-13430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13431/", + "id": 13431, + "name": "Moli", + "site_detail_url": "https://comicvine.gamespot.com/moli/4005-13431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13432/", + "id": 13432, + "name": "Psyklop", + "site_detail_url": "https://comicvine.gamespot.com/psyklop/4005-13432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13436/", + "id": 13436, + "name": "Missing Link", + "site_detail_url": "https://comicvine.gamespot.com/missing-link/4005-13436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13442/", + "id": 13442, + "name": "Van Nyborg", + "site_detail_url": "https://comicvine.gamespot.com/van-nyborg/4005-13442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13444/", + "id": 13444, + "name": "Nebulo", + "site_detail_url": "https://comicvine.gamespot.com/nebulo/4005-13444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13445/", + "id": 13445, + "name": "Super Humanoid", + "site_detail_url": "https://comicvine.gamespot.com/super-humanoid/4005-13445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13447/", + "id": 13447, + "name": "Lord of the Living Lightning", + "site_detail_url": "https://comicvine.gamespot.com/lord-of-the-living-lightning/4005-13447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13480/", + "id": 13480, + "name": "The Flame", + "site_detail_url": "https://comicvine.gamespot.com/the-flame/4005-13480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13482/", + "id": 13482, + "name": "Aeltri", + "site_detail_url": "https://comicvine.gamespot.com/aeltri/4005-13482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13485/", + "id": 13485, + "name": "Sheva Josephs", + "site_detail_url": "https://comicvine.gamespot.com/sheva-josephs/4005-13485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13486/", + "id": 13486, + "name": "Parnell Jacobs", + "site_detail_url": "https://comicvine.gamespot.com/parnell-jacobs/4005-13486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13487/", + "id": 13487, + "name": "Raney", + "site_detail_url": "https://comicvine.gamespot.com/raney/4005-13487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13488/", + "id": 13488, + "name": "Abraxas", + "site_detail_url": "https://comicvine.gamespot.com/abraxas/4005-13488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13489/", + "id": 13489, + "name": "Saburo Sakai", + "site_detail_url": "https://comicvine.gamespot.com/saburo-sakai/4005-13489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13490/", + "id": 13490, + "name": "Jorge Salsero", + "site_detail_url": "https://comicvine.gamespot.com/jorge-salsero/4005-13490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13491/", + "id": 13491, + "name": "Nathan Manning", + "site_detail_url": "https://comicvine.gamespot.com/nathan-manning/4005-13491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13492/", + "id": 13492, + "name": "Szmitty", + "site_detail_url": "https://comicvine.gamespot.com/szmitty/4005-13492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13493/", + "id": 13493, + "name": "Ralf", + "site_detail_url": "https://comicvine.gamespot.com/ralf/4005-13493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13494/", + "id": 13494, + "name": "Alvarez", + "site_detail_url": "https://comicvine.gamespot.com/alvarez/4005-13494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13498/", + "id": 13498, + "name": "Fancy Dan", + "site_detail_url": "https://comicvine.gamespot.com/fancy-dan/4005-13498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13500/", + "id": 13500, + "name": "Aunt Li", + "site_detail_url": "https://comicvine.gamespot.com/aunt-li/4005-13500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13502/", + "id": 13502, + "name": "Xandu", + "site_detail_url": "https://comicvine.gamespot.com/xandu/4005-13502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13583/", + "id": 13583, + "name": "Wilf", + "site_detail_url": "https://comicvine.gamespot.com/wilf/4005-13583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13585/", + "id": 13585, + "name": "Godstorm", + "site_detail_url": "https://comicvine.gamespot.com/godstorm/4005-13585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13586/", + "id": 13586, + "name": "Brom Anders", + "site_detail_url": "https://comicvine.gamespot.com/brom-anders/4005-13586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13587/", + "id": 13587, + "name": "Bettina Anders", + "site_detail_url": "https://comicvine.gamespot.com/bettina-anders/4005-13587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13588/", + "id": 13588, + "name": "Viktor Anders", + "site_detail_url": "https://comicvine.gamespot.com/viktor-anders/4005-13588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13589/", + "id": 13589, + "name": "Mikkel", + "site_detail_url": "https://comicvine.gamespot.com/mikkel/4005-13589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13590/", + "id": 13590, + "name": "Arne", + "site_detail_url": "https://comicvine.gamespot.com/arne/4005-13590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13592/", + "id": 13592, + "name": "Torrent", + "site_detail_url": "https://comicvine.gamespot.com/torrent/4005-13592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13593/", + "id": 13593, + "name": "Torrent", + "site_detail_url": "https://comicvine.gamespot.com/torrent/4005-13593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13594/", + "id": 13594, + "name": "Harald", + "site_detail_url": "https://comicvine.gamespot.com/harald/4005-13594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13595/", + "id": 13595, + "name": "Ranulf", + "site_detail_url": "https://comicvine.gamespot.com/ranulf/4005-13595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13596/", + "id": 13596, + "name": "Weather-maker", + "site_detail_url": "https://comicvine.gamespot.com/weather-maker/4005-13596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13652/", + "id": 13652, + "name": "Tyger Tiger", + "site_detail_url": "https://comicvine.gamespot.com/tyger-tiger/4005-13652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13713/", + "id": 13713, + "name": "Enforcer Capone", + "site_detail_url": "https://comicvine.gamespot.com/enforcer-capone/4005-13713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13717/", + "id": 13717, + "name": "Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/bedlam/4005-13717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13718/", + "id": 13718, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4005-13718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13720/", + "id": 13720, + "name": "Decay", + "site_detail_url": "https://comicvine.gamespot.com/decay/4005-13720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13721/", + "id": 13721, + "name": "Stonecutter", + "site_detail_url": "https://comicvine.gamespot.com/stonecutter/4005-13721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13722/", + "id": 13722, + "name": "Flashfire", + "site_detail_url": "https://comicvine.gamespot.com/flashfire/4005-13722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13723/", + "id": 13723, + "name": "Carnivore", + "site_detail_url": "https://comicvine.gamespot.com/carnivore/4005-13723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13725/", + "id": 13725, + "name": "Hunger", + "site_detail_url": "https://comicvine.gamespot.com/hunger/4005-13725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13726/", + "id": 13726, + "name": "Marrow", + "site_detail_url": "https://comicvine.gamespot.com/marrow/4005-13726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13727/", + "id": 13727, + "name": "Stewart Ward", + "site_detail_url": "https://comicvine.gamespot.com/stewart-ward/4005-13727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13728/", + "id": 13728, + "name": "Shadrac", + "site_detail_url": "https://comicvine.gamespot.com/shadrac/4005-13728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13730/", + "id": 13730, + "name": "Tokkots", + "site_detail_url": "https://comicvine.gamespot.com/tokkots/4005-13730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13731/", + "id": 13731, + "name": "Ranger", + "site_detail_url": "https://comicvine.gamespot.com/ranger/4005-13731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13735/", + "id": 13735, + "name": "Proto-Goblin", + "site_detail_url": "https://comicvine.gamespot.com/proto-goblin/4005-13735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13737/", + "id": 13737, + "name": "Arthur Stacy", + "site_detail_url": "https://comicvine.gamespot.com/arthur-stacy/4005-13737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13738/", + "id": 13738, + "name": "Helen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/helen-stacy/4005-13738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13739/", + "id": 13739, + "name": "Nancy Stacy", + "site_detail_url": "https://comicvine.gamespot.com/nancy-stacy/4005-13739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13743/", + "id": 13743, + "name": "The Fin", + "site_detail_url": "https://comicvine.gamespot.com/the-fin/4005-13743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13744/", + "id": 13744, + "name": "Battlestar", + "site_detail_url": "https://comicvine.gamespot.com/battlestar/4005-13744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13745/", + "id": 13745, + "name": "Man-Eater", + "site_detail_url": "https://comicvine.gamespot.com/man-eater/4005-13745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13748/", + "id": 13748, + "name": "Lightbright", + "site_detail_url": "https://comicvine.gamespot.com/lightbright/4005-13748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13749/", + "id": 13749, + "name": "Amy Chen", + "site_detail_url": "https://comicvine.gamespot.com/amy-chen/4005-13749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13750/", + "id": 13750, + "name": "Terror Inc", + "site_detail_url": "https://comicvine.gamespot.com/terror-inc/4005-13750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13753/", + "id": 13753, + "name": "Cassandra", + "site_detail_url": "https://comicvine.gamespot.com/cassandra/4005-13753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13755/", + "id": 13755, + "name": "Cathode", + "site_detail_url": "https://comicvine.gamespot.com/cathode/4005-13755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13757/", + "id": 13757, + "name": "Gattling", + "site_detail_url": "https://comicvine.gamespot.com/gattling/4005-13757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13758/", + "id": 13758, + "name": "CLOC", + "site_detail_url": "https://comicvine.gamespot.com/cloc/4005-13758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13759/", + "id": 13759, + "name": "Lindy Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/lindy-reynolds/4005-13759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13768/", + "id": 13768, + "name": "Rattack", + "site_detail_url": "https://comicvine.gamespot.com/rattack/4005-13768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13769/", + "id": 13769, + "name": "Sallah", + "site_detail_url": "https://comicvine.gamespot.com/sallah/4005-13769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13770/", + "id": 13770, + "name": "Toht", + "site_detail_url": "https://comicvine.gamespot.com/toht/4005-13770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13771/", + "id": 13771, + "name": "Dietrich", + "site_detail_url": "https://comicvine.gamespot.com/dietrich/4005-13771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13772/", + "id": 13772, + "name": "Belloq", + "site_detail_url": "https://comicvine.gamespot.com/belloq/4005-13772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13774/", + "id": 13774, + "name": "Satipo", + "site_detail_url": "https://comicvine.gamespot.com/satipo/4005-13774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13779/", + "id": 13779, + "name": "Miss America", + "site_detail_url": "https://comicvine.gamespot.com/miss-america/4005-13779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13780/", + "id": 13780, + "name": "Nebulon", + "site_detail_url": "https://comicvine.gamespot.com/nebulon/4005-13780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13781/", + "id": 13781, + "name": "Phantom Eagle", + "site_detail_url": "https://comicvine.gamespot.com/phantom-eagle/4005-13781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13782/", + "id": 13782, + "name": "Pip the Troll", + "site_detail_url": "https://comicvine.gamespot.com/pip-the-troll/4005-13782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13783/", + "id": 13783, + "name": "Satana", + "site_detail_url": "https://comicvine.gamespot.com/satana/4005-13783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13784/", + "id": 13784, + "name": "Thunderbolt", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolt/4005-13784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13785/", + "id": 13785, + "name": "Varnae", + "site_detail_url": "https://comicvine.gamespot.com/varnae/4005-13785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13787/", + "id": 13787, + "name": "Lucas Brand", + "site_detail_url": "https://comicvine.gamespot.com/lucas-brand/4005-13787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13789/", + "id": 13789, + "name": "Deacon Frost", + "site_detail_url": "https://comicvine.gamespot.com/deacon-frost/4005-13789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13791/", + "id": 13791, + "name": "Edith Harker", + "site_detail_url": "https://comicvine.gamespot.com/edith-harker/4005-13791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13792/", + "id": 13792, + "name": "Nimrod The First", + "site_detail_url": "https://comicvine.gamespot.com/nimrod-the-first/4005-13792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13793/", + "id": 13793, + "name": "Lianda", + "site_detail_url": "https://comicvine.gamespot.com/lianda/4005-13793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13794/", + "id": 13794, + "name": "Harold H. Harold", + "site_detail_url": "https://comicvine.gamespot.com/harold-h-harold/4005-13794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13796/", + "id": 13796, + "name": "Lilith", + "site_detail_url": "https://comicvine.gamespot.com/lilith/4005-13796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13797/", + "id": 13797, + "name": "Zombie", + "site_detail_url": "https://comicvine.gamespot.com/zombie/4005-13797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13798/", + "id": 13798, + "name": "Zuras", + "site_detail_url": "https://comicvine.gamespot.com/zuras/4005-13798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13799/", + "id": 13799, + "name": "Satannish", + "site_detail_url": "https://comicvine.gamespot.com/satannish/4005-13799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13804/", + "id": 13804, + "name": "Vanguard", + "site_detail_url": "https://comicvine.gamespot.com/vanguard/4005-13804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13808/", + "id": 13808, + "name": "Fred Duncan", + "site_detail_url": "https://comicvine.gamespot.com/fred-duncan/4005-13808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13810/", + "id": 13810, + "name": "Gemini", + "site_detail_url": "https://comicvine.gamespot.com/gemini/4005-13810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13811/", + "id": 13811, + "name": "Cancer", + "site_detail_url": "https://comicvine.gamespot.com/cancer/4005-13811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13812/", + "id": 13812, + "name": "Zzzax", + "site_detail_url": "https://comicvine.gamespot.com/zzzax/4005-13812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13820/", + "id": 13820, + "name": "Talisman", + "site_detail_url": "https://comicvine.gamespot.com/talisman/4005-13820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13821/", + "id": 13821, + "name": "Tatterdemalion", + "site_detail_url": "https://comicvine.gamespot.com/tatterdemalion/4005-13821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13822/", + "id": 13822, + "name": "Thena", + "site_detail_url": "https://comicvine.gamespot.com/thena/4005-13822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13823/", + "id": 13823, + "name": "Titanium Man", + "site_detail_url": "https://comicvine.gamespot.com/titanium-man/4005-13823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13825/", + "id": 13825, + "name": "Unicorn", + "site_detail_url": "https://comicvine.gamespot.com/unicorn/4005-13825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13826/", + "id": 13826, + "name": "Ursa Major", + "site_detail_url": "https://comicvine.gamespot.com/ursa-major/4005-13826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13836/", + "id": 13836, + "name": "Gabriel Jones", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-jones/4005-13836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13837/", + "id": 13837, + "name": "Eric Koenig", + "site_detail_url": "https://comicvine.gamespot.com/eric-koenig/4005-13837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13838/", + "id": 13838, + "name": "Laura Brown", + "site_detail_url": "https://comicvine.gamespot.com/laura-brown/4005-13838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13839/", + "id": 13839, + "name": "Iranda", + "site_detail_url": "https://comicvine.gamespot.com/iranda/4005-13839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13840/", + "id": 13840, + "name": "Sidney Levine", + "site_detail_url": "https://comicvine.gamespot.com/sidney-levine/4005-13840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13841/", + "id": 13841, + "name": "Jerry Hunt", + "site_detail_url": "https://comicvine.gamespot.com/jerry-hunt/4005-13841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13842/", + "id": 13842, + "name": "Barth Bukowski", + "site_detail_url": "https://comicvine.gamespot.com/barth-bukowski/4005-13842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13843/", + "id": 13843, + "name": "Shooting Star", + "site_detail_url": "https://comicvine.gamespot.com/shooting-star/4005-13843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13844/", + "id": 13844, + "name": "Shroud", + "site_detail_url": "https://comicvine.gamespot.com/shroud/4005-13844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13845/", + "id": 13845, + "name": "Sidewinder", + "site_detail_url": "https://comicvine.gamespot.com/sidewinder/4005-13845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13846/", + "id": 13846, + "name": "Silvermane", + "site_detail_url": "https://comicvine.gamespot.com/silvermane/4005-13846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13849/", + "id": 13849, + "name": "Solarr", + "site_detail_url": "https://comicvine.gamespot.com/solarr/4005-13849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13850/", + "id": 13850, + "name": "Gremlin", + "site_detail_url": "https://comicvine.gamespot.com/gremlin/4005-13850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13851/", + "id": 13851, + "name": "Starshine", + "site_detail_url": "https://comicvine.gamespot.com/starshine/4005-13851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13853/", + "id": 13853, + "name": "Firefall", + "site_detail_url": "https://comicvine.gamespot.com/firefall/4005-13853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13854/", + "id": 13854, + "name": "Mentus", + "site_detail_url": "https://comicvine.gamespot.com/mentus/4005-13854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13858/", + "id": 13858, + "name": "Seeker", + "site_detail_url": "https://comicvine.gamespot.com/seeker/4005-13858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13859/", + "id": 13859, + "name": "Scanner", + "site_detail_url": "https://comicvine.gamespot.com/scanner/4005-13859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13861/", + "id": 13861, + "name": "Gloriole", + "site_detail_url": "https://comicvine.gamespot.com/gloriole/4005-13861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13862/", + "id": 13862, + "name": "Tom Thumb", + "site_detail_url": "https://comicvine.gamespot.com/tom-thumb/4005-13862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13863/", + "id": 13863, + "name": "Lady Lark", + "site_detail_url": "https://comicvine.gamespot.com/lady-lark/4005-13863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13864/", + "id": 13864, + "name": "Golden Archer", + "site_detail_url": "https://comicvine.gamespot.com/golden-archer/4005-13864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13865/", + "id": 13865, + "name": "Amphibion", + "site_detail_url": "https://comicvine.gamespot.com/amphibion/4005-13865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13866/", + "id": 13866, + "name": "Nuke", + "site_detail_url": "https://comicvine.gamespot.com/nuke/4005-13866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13867/", + "id": 13867, + "name": "Star-Dancer", + "site_detail_url": "https://comicvine.gamespot.com/star-dancer/4005-13867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13868/", + "id": 13868, + "name": "Hepzibah", + "site_detail_url": "https://comicvine.gamespot.com/hepzibah/4005-13868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13869/", + "id": 13869, + "name": "Raza", + "site_detail_url": "https://comicvine.gamespot.com/raza/4005-13869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13873/", + "id": 13873, + "name": "Stenth", + "site_detail_url": "https://comicvine.gamespot.com/stenth/4005-13873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13879/", + "id": 13879, + "name": "Brutacus", + "site_detail_url": "https://comicvine.gamespot.com/brutacus/4005-13879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13880/", + "id": 13880, + "name": "Hydron", + "site_detail_url": "https://comicvine.gamespot.com/hydron/4005-13880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13881/", + "id": 13881, + "name": "Vakume", + "site_detail_url": "https://comicvine.gamespot.com/vakume/4005-13881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13882/", + "id": 13882, + "name": "Gazelle", + "site_detail_url": "https://comicvine.gamespot.com/gazelle/4005-13882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13883/", + "id": 13883, + "name": "Reptilla", + "site_detail_url": "https://comicvine.gamespot.com/reptilla/4005-13883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13884/", + "id": 13884, + "name": "Barracuda", + "site_detail_url": "https://comicvine.gamespot.com/barracuda/4005-13884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13885/", + "id": 13885, + "name": "Equilibrius", + "site_detail_url": "https://comicvine.gamespot.com/equilibrius/4005-13885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13886/", + "id": 13886, + "name": "Piper", + "site_detail_url": "https://comicvine.gamespot.com/piper/4005-13886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13887/", + "id": 13887, + "name": "Scarlet Scarab", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-scarab/4005-13887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13888/", + "id": 13888, + "name": "Shamrock", + "site_detail_url": "https://comicvine.gamespot.com/shamrock/4005-13888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13889/", + "id": 13889, + "name": "Shaper of Worlds", + "site_detail_url": "https://comicvine.gamespot.com/shaper-of-worlds/4005-13889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13896/", + "id": 13896, + "name": "Nekra", + "site_detail_url": "https://comicvine.gamespot.com/nekra/4005-13896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13897/", + "id": 13897, + "name": "Nikki", + "site_detail_url": "https://comicvine.gamespot.com/nikki/4005-13897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13899/", + "id": 13899, + "name": "Neptune", + "site_detail_url": "https://comicvine.gamespot.com/neptune/4005-13899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13901/", + "id": 13901, + "name": "Artemis", + "site_detail_url": "https://comicvine.gamespot.com/artemis/4005-13901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13908/", + "id": 13908, + "name": "Owl", + "site_detail_url": "https://comicvine.gamespot.com/owl/4005-13908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13909/", + "id": 13909, + "name": "Peregrine", + "site_detail_url": "https://comicvine.gamespot.com/peregrine/4005-13909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13911/", + "id": 13911, + "name": "Professor Power", + "site_detail_url": "https://comicvine.gamespot.com/professor-power/4005-13911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13921/", + "id": 13921, + "name": "Mauler", + "site_detail_url": "https://comicvine.gamespot.com/mauler/4005-13921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13922/", + "id": 13922, + "name": "Mentallo", + "site_detail_url": "https://comicvine.gamespot.com/mentallo/4005-13922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13923/", + "id": 13923, + "name": "Mercurio", + "site_detail_url": "https://comicvine.gamespot.com/mercurio/4005-13923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13924/", + "id": 13924, + "name": "Modred the Mystic", + "site_detail_url": "https://comicvine.gamespot.com/modred-the-mystic/4005-13924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13925/", + "id": 13925, + "name": "Morgan Le Fay", + "site_detail_url": "https://comicvine.gamespot.com/morgan-le-fay/4005-13925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13927/", + "id": 13927, + "name": "Morpheus", + "site_detail_url": "https://comicvine.gamespot.com/morpheus/4005-13927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13929/", + "id": 13929, + "name": "Master Key", + "site_detail_url": "https://comicvine.gamespot.com/master-key/4005-13929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13932/", + "id": 13932, + "name": "Randolph Creed", + "site_detail_url": "https://comicvine.gamespot.com/randolph-creed/4005-13932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13934/", + "id": 13934, + "name": "Kree-Tor", + "site_detail_url": "https://comicvine.gamespot.com/kree-tor/4005-13934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13936/", + "id": 13936, + "name": "Karkas", + "site_detail_url": "https://comicvine.gamespot.com/karkas/4005-13936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13938/", + "id": 13938, + "name": "Lightmaster", + "site_detail_url": "https://comicvine.gamespot.com/lightmaster/4005-13938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13939/", + "id": 13939, + "name": "Living Mummy", + "site_detail_url": "https://comicvine.gamespot.com/living-mummy/4005-13939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13940/", + "id": 13940, + "name": "Madame Masque", + "site_detail_url": "https://comicvine.gamespot.com/madame-masque/4005-13940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13941/", + "id": 13941, + "name": "Helio", + "site_detail_url": "https://comicvine.gamespot.com/helio/4005-13941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13942/", + "id": 13942, + "name": "Phobius", + "site_detail_url": "https://comicvine.gamespot.com/phobius/4005-13942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13943/", + "id": 13943, + "name": "Gronk", + "site_detail_url": "https://comicvine.gamespot.com/gronk/4005-13943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13945/", + "id": 13945, + "name": "Makkari", + "site_detail_url": "https://comicvine.gamespot.com/makkari/4005-13945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13946/", + "id": 13946, + "name": "Man-Bull", + "site_detail_url": "https://comicvine.gamespot.com/man-bull/4005-13946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13947/", + "id": 13947, + "name": "Magnor", + "site_detail_url": "https://comicvine.gamespot.com/magnor/4005-13947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13956/", + "id": 13956, + "name": "Hangman (Roland)", + "site_detail_url": "https://comicvine.gamespot.com/hangman-roland/4005-13956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13959/", + "id": 13959, + "name": "Chondu", + "site_detail_url": "https://comicvine.gamespot.com/chondu/4005-13959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13960/", + "id": 13960, + "name": "Gorilla-Man", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-man/4005-13960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13967/", + "id": 13967, + "name": "Ikaris", + "site_detail_url": "https://comicvine.gamespot.com/ikaris/4005-13967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13968/", + "id": 13968, + "name": "Electron", + "site_detail_url": "https://comicvine.gamespot.com/electron/4005-13968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13969/", + "id": 13969, + "name": "Titan", + "site_detail_url": "https://comicvine.gamespot.com/titan/4005-13969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13970/", + "id": 13970, + "name": "Nightside", + "site_detail_url": "https://comicvine.gamespot.com/nightside/4005-13970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13971/", + "id": 13971, + "name": "Magique", + "site_detail_url": "https://comicvine.gamespot.com/magique/4005-13971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13972/", + "id": 13972, + "name": "Hussar", + "site_detail_url": "https://comicvine.gamespot.com/hussar/4005-13972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13973/", + "id": 13973, + "name": "Impossible Woman", + "site_detail_url": "https://comicvine.gamespot.com/impossible-woman/4005-13973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13975/", + "id": 13975, + "name": "Nadar", + "site_detail_url": "https://comicvine.gamespot.com/nadar/4005-13975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13976/", + "id": 13976, + "name": "Marak", + "site_detail_url": "https://comicvine.gamespot.com/marak/4005-13976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13977/", + "id": 13977, + "name": "Glytra", + "site_detail_url": "https://comicvine.gamespot.com/glytra/4005-13977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13978/", + "id": 13978, + "name": "Iridia", + "site_detail_url": "https://comicvine.gamespot.com/iridia/4005-13978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13979/", + "id": 13979, + "name": "Jester", + "site_detail_url": "https://comicvine.gamespot.com/jester/4005-13979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13987/", + "id": 13987, + "name": "Collector", + "site_detail_url": "https://comicvine.gamespot.com/collector/4005-13987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13988/", + "id": 13988, + "name": "Contemplator", + "site_detail_url": "https://comicvine.gamespot.com/contemplator/4005-13988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13989/", + "id": 13989, + "name": "Corruptor", + "site_detail_url": "https://comicvine.gamespot.com/corruptor/4005-13989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13990/", + "id": 13990, + "name": "Death Adder", + "site_detail_url": "https://comicvine.gamespot.com/death-adder/4005-13990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13992/", + "id": 13992, + "name": "Devil-Slayer", + "site_detail_url": "https://comicvine.gamespot.com/devil-slayer/4005-13992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13993/", + "id": 13993, + "name": "Defensor", + "site_detail_url": "https://comicvine.gamespot.com/defensor/4005-13993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13994/", + "id": 13994, + "name": "Zarathos", + "site_detail_url": "https://comicvine.gamespot.com/zarathos/4005-13994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13995/", + "id": 13995, + "name": "Baphomet", + "site_detail_url": "https://comicvine.gamespot.com/baphomet/4005-13995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13996/", + "id": 13996, + "name": "Belathauzer", + "site_detail_url": "https://comicvine.gamespot.com/belathauzer/4005-13996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13998/", + "id": 13998, + "name": "Thog", + "site_detail_url": "https://comicvine.gamespot.com/thog/4005-13998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-13999/", + "id": 13999, + "name": "Dweller In Darkness", + "site_detail_url": "https://comicvine.gamespot.com/dweller-in-darkness/4005-13999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14000/", + "id": 14000, + "name": "Shuma-Gorath", + "site_detail_url": "https://comicvine.gamespot.com/shuma-gorath/4005-14000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14002/", + "id": 14002, + "name": "Asmodeus", + "site_detail_url": "https://comicvine.gamespot.com/asmodeus/4005-14002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14003/", + "id": 14003, + "name": "Dagoth", + "site_detail_url": "https://comicvine.gamespot.com/dagoth/4005-14003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14004/", + "id": 14004, + "name": "Vira", + "site_detail_url": "https://comicvine.gamespot.com/vira/4005-14004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14005/", + "id": 14005, + "name": "Brother Tode", + "site_detail_url": "https://comicvine.gamespot.com/brother-tode/4005-14005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14006/", + "id": 14006, + "name": "Ransak the Reject", + "site_detail_url": "https://comicvine.gamespot.com/ransak-the-reject/4005-14006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14007/", + "id": 14007, + "name": "Dragona", + "site_detail_url": "https://comicvine.gamespot.com/dragona/4005-14007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14008/", + "id": 14008, + "name": "Zakka", + "site_detail_url": "https://comicvine.gamespot.com/zakka/4005-14008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14009/", + "id": 14009, + "name": "Shelmar", + "site_detail_url": "https://comicvine.gamespot.com/shelmar/4005-14009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14010/", + "id": 14010, + "name": "Toro Rojo", + "site_detail_url": "https://comicvine.gamespot.com/toro-rojo/4005-14010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14011/", + "id": 14011, + "name": "Broop", + "site_detail_url": "https://comicvine.gamespot.com/broop/4005-14011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14012/", + "id": 14012, + "name": "Ragar", + "site_detail_url": "https://comicvine.gamespot.com/ragar/4005-14012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14013/", + "id": 14013, + "name": "Sluice", + "site_detail_url": "https://comicvine.gamespot.com/sluice/4005-14013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14021/", + "id": 14021, + "name": "Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/double-trouble/4005-14021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14024/", + "id": 14024, + "name": "Yeti", + "site_detail_url": "https://comicvine.gamespot.com/yeti/4005-14024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14029/", + "id": 14029, + "name": "Math Mac Llion", + "site_detail_url": "https://comicvine.gamespot.com/math-mac-llion/4005-14029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14030/", + "id": 14030, + "name": "Kynon", + "site_detail_url": "https://comicvine.gamespot.com/kynon/4005-14030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14031/", + "id": 14031, + "name": "Branwyn", + "site_detail_url": "https://comicvine.gamespot.com/branwyn/4005-14031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14032/", + "id": 14032, + "name": "Vassilisa", + "site_detail_url": "https://comicvine.gamespot.com/vassilisa/4005-14032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14033/", + "id": 14033, + "name": "Vlad Bloodhawk", + "site_detail_url": "https://comicvine.gamespot.com/vlad-bloodhawk/4005-14033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14034/", + "id": 14034, + "name": "Cavalok", + "site_detail_url": "https://comicvine.gamespot.com/cavalok/4005-14034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14035/", + "id": 14035, + "name": "Galon", + "site_detail_url": "https://comicvine.gamespot.com/galon/4005-14035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14036/", + "id": 14036, + "name": "Achmal", + "site_detail_url": "https://comicvine.gamespot.com/achmal/4005-14036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14038/", + "id": 14038, + "name": "Lassusar", + "site_detail_url": "https://comicvine.gamespot.com/lassusar/4005-14038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14039/", + "id": 14039, + "name": "Byratus", + "site_detail_url": "https://comicvine.gamespot.com/byratus/4005-14039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14040/", + "id": 14040, + "name": "Jurgon", + "site_detail_url": "https://comicvine.gamespot.com/jurgon/4005-14040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14041/", + "id": 14041, + "name": "Feema", + "site_detail_url": "https://comicvine.gamespot.com/feema/4005-14041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14042/", + "id": 14042, + "name": "Caldros", + "site_detail_url": "https://comicvine.gamespot.com/caldros/4005-14042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14043/", + "id": 14043, + "name": "Mallus", + "site_detail_url": "https://comicvine.gamespot.com/mallus/4005-14043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14044/", + "id": 14044, + "name": "Aldernal", + "site_detail_url": "https://comicvine.gamespot.com/aldernal/4005-14044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14046/", + "id": 14046, + "name": "Strikeback", + "site_detail_url": "https://comicvine.gamespot.com/strikeback/4005-14046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14048/", + "id": 14048, + "name": "Easy Reader", + "site_detail_url": "https://comicvine.gamespot.com/easy-reader/4005-14048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14049/", + "id": 14049, + "name": "Sando", + "site_detail_url": "https://comicvine.gamespot.com/sando/4005-14049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14050/", + "id": 14050, + "name": "Omar", + "site_detail_url": "https://comicvine.gamespot.com/omar/4005-14050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14051/", + "id": 14051, + "name": "Jennifer Of The Jungle", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-of-the-jungle/4005-14051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14052/", + "id": 14052, + "name": "Paul The Gorilla", + "site_detail_url": "https://comicvine.gamespot.com/paul-the-gorilla/4005-14052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14054/", + "id": 14054, + "name": "Human Kite", + "site_detail_url": "https://comicvine.gamespot.com/human-kite/4005-14054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14055/", + "id": 14055, + "name": "Metal Master", + "site_detail_url": "https://comicvine.gamespot.com/metal-master/4005-14055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14060/", + "id": 14060, + "name": "Bandit", + "site_detail_url": "https://comicvine.gamespot.com/bandit/4005-14060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14061/", + "id": 14061, + "name": "Scorch", + "site_detail_url": "https://comicvine.gamespot.com/scorch/4005-14061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14063/", + "id": 14063, + "name": "Gai No Don", + "site_detail_url": "https://comicvine.gamespot.com/gai-no-don/4005-14063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14064/", + "id": 14064, + "name": "Oriole", + "site_detail_url": "https://comicvine.gamespot.com/oriole/4005-14064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14066/", + "id": 14066, + "name": "Aardwolf", + "site_detail_url": "https://comicvine.gamespot.com/aardwolf/4005-14066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14067/", + "id": 14067, + "name": "Chagrin", + "site_detail_url": "https://comicvine.gamespot.com/chagrin/4005-14067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14068/", + "id": 14068, + "name": "Kimieko Ashu", + "site_detail_url": "https://comicvine.gamespot.com/kimieko-ashu/4005-14068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14069/", + "id": 14069, + "name": "Red Mirror", + "site_detail_url": "https://comicvine.gamespot.com/red-mirror/4005-14069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14079/", + "id": 14079, + "name": "Ugly John", + "site_detail_url": "https://comicvine.gamespot.com/ugly-john/4005-14079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14080/", + "id": 14080, + "name": "Donald Trask", + "site_detail_url": "https://comicvine.gamespot.com/donald-trask/4005-14080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14082/", + "id": 14082, + "name": "Big Ben", + "site_detail_url": "https://comicvine.gamespot.com/big-ben/4005-14082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14109/", + "id": 14109, + "name": "Dr. Maximus Power", + "site_detail_url": "https://comicvine.gamespot.com/dr-maximus-power/4005-14109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14115/", + "id": 14115, + "name": "Nicholas Scratch", + "site_detail_url": "https://comicvine.gamespot.com/nicholas-scratch/4005-14115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14148/", + "id": 14148, + "name": "Mambo Mastif", + "site_detail_url": "https://comicvine.gamespot.com/mambo-mastif/4005-14148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14149/", + "id": 14149, + "name": "Minnie Mastif", + "site_detail_url": "https://comicvine.gamespot.com/minnie-mastif/4005-14149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14150/", + "id": 14150, + "name": "New Son", + "site_detail_url": "https://comicvine.gamespot.com/new-son/4005-14150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14152/", + "id": 14152, + "name": "Quiet Bill", + "site_detail_url": "https://comicvine.gamespot.com/quiet-bill/4005-14152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14153/", + "id": 14153, + "name": "Belladonna", + "site_detail_url": "https://comicvine.gamespot.com/belladonna/4005-14153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14154/", + "id": 14154, + "name": "Courier", + "site_detail_url": "https://comicvine.gamespot.com/courier/4005-14154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14155/", + "id": 14155, + "name": "Rax", + "site_detail_url": "https://comicvine.gamespot.com/rax/4005-14155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14156/", + "id": 14156, + "name": "Theoren", + "site_detail_url": "https://comicvine.gamespot.com/theoren/4005-14156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14160/", + "id": 14160, + "name": "Singer", + "site_detail_url": "https://comicvine.gamespot.com/singer/4005-14160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14164/", + "id": 14164, + "name": "Genard Alouette", + "site_detail_url": "https://comicvine.gamespot.com/genard-alouette/4005-14164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14165/", + "id": 14165, + "name": "Zoe Ishihara", + "site_detail_url": "https://comicvine.gamespot.com/zoe-ishihara/4005-14165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14167/", + "id": 14167, + "name": "Mercy LeBeau", + "site_detail_url": "https://comicvine.gamespot.com/mercy-lebeau/4005-14167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14168/", + "id": 14168, + "name": "Claude Poitier", + "site_detail_url": "https://comicvine.gamespot.com/claude-poitier/4005-14168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14171/", + "id": 14171, + "name": "Fifolet", + "site_detail_url": "https://comicvine.gamespot.com/fifolet/4005-14171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14172/", + "id": 14172, + "name": "Questa", + "site_detail_url": "https://comicvine.gamespot.com/questa/4005-14172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14173/", + "id": 14173, + "name": "Fontanelle", + "site_detail_url": "https://comicvine.gamespot.com/fontanelle/4005-14173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14176/", + "id": 14176, + "name": "Gris-Gris", + "site_detail_url": "https://comicvine.gamespot.com/gris-gris/4005-14176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14177/", + "id": 14177, + "name": "Cecilia Reyes", + "site_detail_url": "https://comicvine.gamespot.com/cecilia-reyes/4005-14177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14178/", + "id": 14178, + "name": "James Richards", + "site_detail_url": "https://comicvine.gamespot.com/james-richards/4005-14178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14179/", + "id": 14179, + "name": "Sekmeht Conoway", + "site_detail_url": "https://comicvine.gamespot.com/sekmeht-conoway/4005-14179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14180/", + "id": 14180, + "name": "Anwar Anubar", + "site_detail_url": "https://comicvine.gamespot.com/anwar-anubar/4005-14180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14181/", + "id": 14181, + "name": "Grigori Mengo", + "site_detail_url": "https://comicvine.gamespot.com/grigori-mengo/4005-14181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14182/", + "id": 14182, + "name": "Stanislaus Mengo", + "site_detail_url": "https://comicvine.gamespot.com/stanislaus-mengo/4005-14182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14183/", + "id": 14183, + "name": "Ozymandias", + "site_detail_url": "https://comicvine.gamespot.com/ozymandias/4005-14183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14184/", + "id": 14184, + "name": "Jacques LeBeau", + "site_detail_url": "https://comicvine.gamespot.com/jacques-lebeau/4005-14184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14185/", + "id": 14185, + "name": "Rouler Marceaux", + "site_detail_url": "https://comicvine.gamespot.com/rouler-marceaux/4005-14185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14186/", + "id": 14186, + "name": "Belize Marceaux", + "site_detail_url": "https://comicvine.gamespot.com/belize-marceaux/4005-14186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14187/", + "id": 14187, + "name": "Burke", + "site_detail_url": "https://comicvine.gamespot.com/burke/4005-14187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14188/", + "id": 14188, + "name": "Absalom", + "site_detail_url": "https://comicvine.gamespot.com/absalom/4005-14188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14189/", + "id": 14189, + "name": "Nicodemus", + "site_detail_url": "https://comicvine.gamespot.com/nicodemus/4005-14189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14194/", + "id": 14194, + "name": "Huey", + "site_detail_url": "https://comicvine.gamespot.com/huey/4005-14194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14196/", + "id": 14196, + "name": "Rebel Ralston", + "site_detail_url": "https://comicvine.gamespot.com/rebel-ralston/4005-14196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14197/", + "id": 14197, + "name": "Percy Pinkerton", + "site_detail_url": "https://comicvine.gamespot.com/percy-pinkerton/4005-14197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14198/", + "id": 14198, + "name": "Izzy Cohen", + "site_detail_url": "https://comicvine.gamespot.com/izzy-cohen/4005-14198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14199/", + "id": 14199, + "name": "Dino Manelli", + "site_detail_url": "https://comicvine.gamespot.com/dino-manelli/4005-14199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14200/", + "id": 14200, + "name": "Claire DeLuc", + "site_detail_url": "https://comicvine.gamespot.com/claire-deluc/4005-14200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14202/", + "id": 14202, + "name": "The Pig", + "site_detail_url": "https://comicvine.gamespot.com/the-pig/4005-14202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14203/", + "id": 14203, + "name": "Shirow Ishihara", + "site_detail_url": "https://comicvine.gamespot.com/shirow-ishihara/4005-14203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14204/", + "id": 14204, + "name": "Cosmo Stephanapoulus", + "site_detail_url": "https://comicvine.gamespot.com/cosmo-stephanapoulus/4005-14204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14205/", + "id": 14205, + "name": "Mariah Ellenthrope", + "site_detail_url": "https://comicvine.gamespot.com/mariah-ellenthrope/4005-14205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14206/", + "id": 14206, + "name": "Jack Farley", + "site_detail_url": "https://comicvine.gamespot.com/jack-farley/4005-14206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14208/", + "id": 14208, + "name": "Hoard", + "site_detail_url": "https://comicvine.gamespot.com/hoard/4005-14208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14209/", + "id": 14209, + "name": "Tome", + "site_detail_url": "https://comicvine.gamespot.com/tome/4005-14209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14211/", + "id": 14211, + "name": "Umberto Safilios", + "site_detail_url": "https://comicvine.gamespot.com/umberto-safilios/4005-14211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14212/", + "id": 14212, + "name": "Colonel Gagarin", + "site_detail_url": "https://comicvine.gamespot.com/colonel-gagarin/4005-14212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14213/", + "id": 14213, + "name": "Fuckface", + "site_detail_url": "https://comicvine.gamespot.com/fuckface/4005-14213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14214/", + "id": 14214, + "name": "General Makawao", + "site_detail_url": "https://comicvine.gamespot.com/general-makawao/4005-14214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14215/", + "id": 14215, + "name": "Sergeant Li", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-li/4005-14215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14216/", + "id": 14216, + "name": "Specialist Steiner", + "site_detail_url": "https://comicvine.gamespot.com/specialist-steiner/4005-14216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14217/", + "id": 14217, + "name": "Specialist Foss", + "site_detail_url": "https://comicvine.gamespot.com/specialist-foss/4005-14217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14218/", + "id": 14218, + "name": "Wendel Poznowski", + "site_detail_url": "https://comicvine.gamespot.com/wendel-poznowski/4005-14218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14220/", + "id": 14220, + "name": "Virgo", + "site_detail_url": "https://comicvine.gamespot.com/virgo/4005-14220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14222/", + "id": 14222, + "name": "Century", + "site_detail_url": "https://comicvine.gamespot.com/century/4005-14222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14223/", + "id": 14223, + "name": "Suzi Endo", + "site_detail_url": "https://comicvine.gamespot.com/suzi-endo/4005-14223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14224/", + "id": 14224, + "name": "Moonraker", + "site_detail_url": "https://comicvine.gamespot.com/moonraker/4005-14224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14225/", + "id": 14225, + "name": "Scorpio (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/scorpio-thanos-zodiac/4005-14225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14228/", + "id": 14228, + "name": "Skewer", + "site_detail_url": "https://comicvine.gamespot.com/skewer/4005-14228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14229/", + "id": 14229, + "name": "Kiwi", + "site_detail_url": "https://comicvine.gamespot.com/kiwi/4005-14229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14231/", + "id": 14231, + "name": "The Broker", + "site_detail_url": "https://comicvine.gamespot.com/the-broker/4005-14231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14232/", + "id": 14232, + "name": "Black Brigade", + "site_detail_url": "https://comicvine.gamespot.com/black-brigade/4005-14232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14233/", + "id": 14233, + "name": "Ember", + "site_detail_url": "https://comicvine.gamespot.com/ember/4005-14233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14234/", + "id": 14234, + "name": "Volkvhy", + "site_detail_url": "https://comicvine.gamespot.com/volkvhy/4005-14234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14235/", + "id": 14235, + "name": "Taurus", + "site_detail_url": "https://comicvine.gamespot.com/taurus/4005-14235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14236/", + "id": 14236, + "name": "Striker", + "site_detail_url": "https://comicvine.gamespot.com/striker/4005-14236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14237/", + "id": 14237, + "name": "The Advisor", + "site_detail_url": "https://comicvine.gamespot.com/the-advisor/4005-14237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14238/", + "id": 14238, + "name": "Hazzerd", + "site_detail_url": "https://comicvine.gamespot.com/hazzerd/4005-14238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14239/", + "id": 14239, + "name": "Sundance", + "site_detail_url": "https://comicvine.gamespot.com/sundance/4005-14239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14240/", + "id": 14240, + "name": "Dreamguard", + "site_detail_url": "https://comicvine.gamespot.com/dreamguard/4005-14240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14242/", + "id": 14242, + "name": "Old Woman", + "site_detail_url": "https://comicvine.gamespot.com/old-woman/4005-14242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14243/", + "id": 14243, + "name": "Ancestor", + "site_detail_url": "https://comicvine.gamespot.com/ancestor/4005-14243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14246/", + "id": 14246, + "name": "Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/butterfly/4005-14246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14247/", + "id": 14247, + "name": "Lich", + "site_detail_url": "https://comicvine.gamespot.com/lich/4005-14247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14248/", + "id": 14248, + "name": "Foundry", + "site_detail_url": "https://comicvine.gamespot.com/foundry/4005-14248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14250/", + "id": 14250, + "name": "PLATO", + "site_detail_url": "https://comicvine.gamespot.com/plato/4005-14250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14404/", + "id": 14404, + "name": "Lenore Castle", + "site_detail_url": "https://comicvine.gamespot.com/lenore-castle/4005-14404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14405/", + "id": 14405, + "name": "Vampiro", + "site_detail_url": "https://comicvine.gamespot.com/vampiro/4005-14405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14407/", + "id": 14407, + "name": "Lascivious", + "site_detail_url": "https://comicvine.gamespot.com/lascivious/4005-14407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14408/", + "id": 14408, + "name": "Sternwood", + "site_detail_url": "https://comicvine.gamespot.com/sternwood/4005-14408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14409/", + "id": 14409, + "name": "Vamp", + "site_detail_url": "https://comicvine.gamespot.com/vamp/4005-14409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14410/", + "id": 14410, + "name": "Baron Blood (Falsworth)", + "site_detail_url": "https://comicvine.gamespot.com/baron-blood-falsworth/4005-14410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14411/", + "id": 14411, + "name": "Turac", + "site_detail_url": "https://comicvine.gamespot.com/turac/4005-14411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14413/", + "id": 14413, + "name": "Blade Doppelganger", + "site_detail_url": "https://comicvine.gamespot.com/blade-doppelganger/4005-14413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14414/", + "id": 14414, + "name": "Adri Nital", + "site_detail_url": "https://comicvine.gamespot.com/adri-nital/4005-14414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14415/", + "id": 14415, + "name": "Torgo", + "site_detail_url": "https://comicvine.gamespot.com/torgo/4005-14415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14419/", + "id": 14419, + "name": "Viper (Dixon)", + "site_detail_url": "https://comicvine.gamespot.com/viper-dixon/4005-14419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14420/", + "id": 14420, + "name": "Yrik Whitemane", + "site_detail_url": "https://comicvine.gamespot.com/yrik-whitemane/4005-14420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14421/", + "id": 14421, + "name": "Whitey", + "site_detail_url": "https://comicvine.gamespot.com/whitey/4005-14421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14422/", + "id": 14422, + "name": "Whizzer (Frank)", + "site_detail_url": "https://comicvine.gamespot.com/whizzer-frank/4005-14422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14423/", + "id": 14423, + "name": "Wraith", + "site_detail_url": "https://comicvine.gamespot.com/wraith/4005-14423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14426/", + "id": 14426, + "name": "Grinder", + "site_detail_url": "https://comicvine.gamespot.com/grinder/4005-14426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14427/", + "id": 14427, + "name": "Vertigo", + "site_detail_url": "https://comicvine.gamespot.com/vertigo/4005-14427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14437/", + "id": 14437, + "name": "Sting", + "site_detail_url": "https://comicvine.gamespot.com/sting/4005-14437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14438/", + "id": 14438, + "name": "Jennifer Smith", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-smith/4005-14438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14439/", + "id": 14439, + "name": "Enforcer (Delazny)", + "site_detail_url": "https://comicvine.gamespot.com/enforcer-delazny/4005-14439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14441/", + "id": 14441, + "name": "Megatak", + "site_detail_url": "https://comicvine.gamespot.com/megatak/4005-14441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14442/", + "id": 14442, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-14442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14443/", + "id": 14443, + "name": "Hammer", + "site_detail_url": "https://comicvine.gamespot.com/hammer/4005-14443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14445/", + "id": 14445, + "name": "Fly", + "site_detail_url": "https://comicvine.gamespot.com/fly/4005-14445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14446/", + "id": 14446, + "name": "Blue Streak (Thompson)", + "site_detail_url": "https://comicvine.gamespot.com/blue-streak-thompson/4005-14446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14447/", + "id": 14447, + "name": "Ice Phillips", + "site_detail_url": "https://comicvine.gamespot.com/ice-phillips/4005-14447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14448/", + "id": 14448, + "name": "Turner D. Century", + "site_detail_url": "https://comicvine.gamespot.com/turner-d-century/4005-14448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14449/", + "id": 14449, + "name": "Cheetah", + "site_detail_url": "https://comicvine.gamespot.com/cheetah/4005-14449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14450/", + "id": 14450, + "name": "Commander Kraken", + "site_detail_url": "https://comicvine.gamespot.com/commander-kraken/4005-14450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14451/", + "id": 14451, + "name": "Cyclone", + "site_detail_url": "https://comicvine.gamespot.com/cyclone/4005-14451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14452/", + "id": 14452, + "name": "Grappler", + "site_detail_url": "https://comicvine.gamespot.com/grappler/4005-14452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14453/", + "id": 14453, + "name": "Hellrazor", + "site_detail_url": "https://comicvine.gamespot.com/hellrazor/4005-14453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14454/", + "id": 14454, + "name": "Hijacker", + "site_detail_url": "https://comicvine.gamespot.com/hijacker/4005-14454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14456/", + "id": 14456, + "name": "Letha", + "site_detail_url": "https://comicvine.gamespot.com/letha/4005-14456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14457/", + "id": 14457, + "name": "Mind-Wave", + "site_detail_url": "https://comicvine.gamespot.com/mind-wave/4005-14457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14458/", + "id": 14458, + "name": "Rapier", + "site_detail_url": "https://comicvine.gamespot.com/rapier/4005-14458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14459/", + "id": 14459, + "name": "Shellshock", + "site_detail_url": "https://comicvine.gamespot.com/shellshock/4005-14459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14461/", + "id": 14461, + "name": "Scourge", + "site_detail_url": "https://comicvine.gamespot.com/scourge/4005-14461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14463/", + "id": 14463, + "name": "Rathcoole", + "site_detail_url": "https://comicvine.gamespot.com/rathcoole/4005-14463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14465/", + "id": 14465, + "name": "Kinlan Karth Kith", + "site_detail_url": "https://comicvine.gamespot.com/kinlan-karth-kith/4005-14465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14467/", + "id": 14467, + "name": "Korvac", + "site_detail_url": "https://comicvine.gamespot.com/korvac/4005-14467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14468/", + "id": 14468, + "name": "Lucifer", + "site_detail_url": "https://comicvine.gamespot.com/lucifer/4005-14468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14469/", + "id": 14469, + "name": "Malekith", + "site_detail_url": "https://comicvine.gamespot.com/malekith/4005-14469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14472/", + "id": 14472, + "name": "Mirage", + "site_detail_url": "https://comicvine.gamespot.com/mirage/4005-14472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14473/", + "id": 14473, + "name": "Annalee", + "site_detail_url": "https://comicvine.gamespot.com/annalee/4005-14473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14474/", + "id": 14474, + "name": "Blow-Hard", + "site_detail_url": "https://comicvine.gamespot.com/blow-hard/4005-14474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14475/", + "id": 14475, + "name": "Cybelle", + "site_detail_url": "https://comicvine.gamespot.com/cybelle/4005-14475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14476/", + "id": 14476, + "name": "Tommy", + "site_detail_url": "https://comicvine.gamespot.com/tommy/4005-14476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14477/", + "id": 14477, + "name": "Stained Glass Scarlet", + "site_detail_url": "https://comicvine.gamespot.com/stained-glass-scarlet/4005-14477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14478/", + "id": 14478, + "name": "Algernon Crowe", + "site_detail_url": "https://comicvine.gamespot.com/algernon-crowe/4005-14478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14486/", + "id": 14486, + "name": "Farouk", + "site_detail_url": "https://comicvine.gamespot.com/farouk/4005-14486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14487/", + "id": 14487, + "name": "Copperhead", + "site_detail_url": "https://comicvine.gamespot.com/copperhead/4005-14487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14489/", + "id": 14489, + "name": "The Fury", + "site_detail_url": "https://comicvine.gamespot.com/the-fury/4005-14489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14490/", + "id": 14490, + "name": "Grot", + "site_detail_url": "https://comicvine.gamespot.com/grot/4005-14490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14491/", + "id": 14491, + "name": "Ghaur", + "site_detail_url": "https://comicvine.gamespot.com/ghaur/4005-14491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14492/", + "id": 14492, + "name": "Grand Director", + "site_detail_url": "https://comicvine.gamespot.com/grand-director/4005-14492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14498/", + "id": 14498, + "name": "Advent", + "site_detail_url": "https://comicvine.gamespot.com/advent/4005-14498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14500/", + "id": 14500, + "name": "Ape-Man", + "site_detail_url": "https://comicvine.gamespot.com/ape-man/4005-14500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14501/", + "id": 14501, + "name": "Cat-Man", + "site_detail_url": "https://comicvine.gamespot.com/cat-man/4005-14501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14502/", + "id": 14502, + "name": "Frog-Man", + "site_detail_url": "https://comicvine.gamespot.com/frog-man/4005-14502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14503/", + "id": 14503, + "name": "Bird-Man", + "site_detail_url": "https://comicvine.gamespot.com/bird-man/4005-14503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14504/", + "id": 14504, + "name": "Harbin Zemo", + "site_detail_url": "https://comicvine.gamespot.com/harbin-zemo/4005-14504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14505/", + "id": 14505, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-14505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14506/", + "id": 14506, + "name": "Wild Rose", + "site_detail_url": "https://comicvine.gamespot.com/wild-rose/4005-14506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14507/", + "id": 14507, + "name": "Carrion (McBride)", + "site_detail_url": "https://comicvine.gamespot.com/carrion-mcbride/4005-14507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14508/", + "id": 14508, + "name": "Sharon Davies", + "site_detail_url": "https://comicvine.gamespot.com/sharon-davies/4005-14508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14509/", + "id": 14509, + "name": "Tanak Valt", + "site_detail_url": "https://comicvine.gamespot.com/tanak-valt/4005-14509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14510/", + "id": 14510, + "name": "Protector", + "site_detail_url": "https://comicvine.gamespot.com/protector/4005-14510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14513/", + "id": 14513, + "name": "Margo", + "site_detail_url": "https://comicvine.gamespot.com/margo/4005-14513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14514/", + "id": 14514, + "name": "Darkoth", + "site_detail_url": "https://comicvine.gamespot.com/darkoth/4005-14514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14517/", + "id": 14517, + "name": "Woodgod", + "site_detail_url": "https://comicvine.gamespot.com/woodgod/4005-14517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14518/", + "id": 14518, + "name": "Sir Ram", + "site_detail_url": "https://comicvine.gamespot.com/sir-ram/4005-14518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14519/", + "id": 14519, + "name": "Sir Leopard", + "site_detail_url": "https://comicvine.gamespot.com/sir-leopard/4005-14519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14520/", + "id": 14520, + "name": "Sir Lyan", + "site_detail_url": "https://comicvine.gamespot.com/sir-lyan/4005-14520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14521/", + "id": 14521, + "name": "Sir Ossilot", + "site_detail_url": "https://comicvine.gamespot.com/sir-ossilot/4005-14521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14522/", + "id": 14522, + "name": "Mentor", + "site_detail_url": "https://comicvine.gamespot.com/mentor/4005-14522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14523/", + "id": 14523, + "name": "Sir Porga", + "site_detail_url": "https://comicvine.gamespot.com/sir-porga/4005-14523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14524/", + "id": 14524, + "name": "Man-Beast", + "site_detail_url": "https://comicvine.gamespot.com/man-beast/4005-14524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14525/", + "id": 14525, + "name": "Yellow Claw", + "site_detail_url": "https://comicvine.gamespot.com/yellow-claw/4005-14525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14526/", + "id": 14526, + "name": "The Basher", + "site_detail_url": "https://comicvine.gamespot.com/the-basher/4005-14526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14527/", + "id": 14527, + "name": "Uni-Mind", + "site_detail_url": "https://comicvine.gamespot.com/uni-mind/4005-14527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14530/", + "id": 14530, + "name": "Blacksmith", + "site_detail_url": "https://comicvine.gamespot.com/blacksmith/4005-14530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14531/", + "id": 14531, + "name": "Jersey Devil", + "site_detail_url": "https://comicvine.gamespot.com/jersey-devil/4005-14531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14533/", + "id": 14533, + "name": "Enigmo", + "site_detail_url": "https://comicvine.gamespot.com/enigmo/4005-14533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14534/", + "id": 14534, + "name": "Iceberg Ike", + "site_detail_url": "https://comicvine.gamespot.com/iceberg-ike/4005-14534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14536/", + "id": 14536, + "name": "Volcana", + "site_detail_url": "https://comicvine.gamespot.com/volcana/4005-14536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14538/", + "id": 14538, + "name": "Cabbage", + "site_detail_url": "https://comicvine.gamespot.com/cabbage/4005-14538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14541/", + "id": 14541, + "name": "Talisman", + "site_detail_url": "https://comicvine.gamespot.com/talisman/4005-14541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14542/", + "id": 14542, + "name": "Terminus", + "site_detail_url": "https://comicvine.gamespot.com/terminus/4005-14542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14543/", + "id": 14543, + "name": "Honcho", + "site_detail_url": "https://comicvine.gamespot.com/honcho/4005-14543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14544/", + "id": 14544, + "name": "Wolf", + "site_detail_url": "https://comicvine.gamespot.com/wolf/4005-14544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14546/", + "id": 14546, + "name": "Wrench", + "site_detail_url": "https://comicvine.gamespot.com/wrench/4005-14546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14547/", + "id": 14547, + "name": "Cowboy", + "site_detail_url": "https://comicvine.gamespot.com/cowboy/4005-14547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14548/", + "id": 14548, + "name": "Georgianna Sue Castleberry", + "site_detail_url": "https://comicvine.gamespot.com/georgianna-sue-castleberry/4005-14548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14552/", + "id": 14552, + "name": "Beautiful Dreamer", + "site_detail_url": "https://comicvine.gamespot.com/beautiful-dreamer/4005-14552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14553/", + "id": 14553, + "name": "Tar Baby", + "site_detail_url": "https://comicvine.gamespot.com/tar-baby/4005-14553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14554/", + "id": 14554, + "name": "Burner", + "site_detail_url": "https://comicvine.gamespot.com/burner/4005-14554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14555/", + "id": 14555, + "name": "Lifter", + "site_detail_url": "https://comicvine.gamespot.com/lifter/4005-14555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14557/", + "id": 14557, + "name": "Slither", + "site_detail_url": "https://comicvine.gamespot.com/slither/4005-14557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14558/", + "id": 14558, + "name": "Nebula", + "site_detail_url": "https://comicvine.gamespot.com/nebula/4005-14558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14559/", + "id": 14559, + "name": "Cypher", + "site_detail_url": "https://comicvine.gamespot.com/cypher/4005-14559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14560/", + "id": 14560, + "name": "Nuklo", + "site_detail_url": "https://comicvine.gamespot.com/nuklo/4005-14560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14563/", + "id": 14563, + "name": "Delphine Courtney", + "site_detail_url": "https://comicvine.gamespot.com/delphine-courtney/4005-14563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14564/", + "id": 14564, + "name": "Smart Alec", + "site_detail_url": "https://comicvine.gamespot.com/smart-alec/4005-14564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14565/", + "id": 14565, + "name": "Arnold Brown", + "site_detail_url": "https://comicvine.gamespot.com/arnold-brown/4005-14565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14566/", + "id": 14566, + "name": "Anton Trojak", + "site_detail_url": "https://comicvine.gamespot.com/anton-trojak/4005-14566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14567/", + "id": 14567, + "name": "Robert Rickard", + "site_detail_url": "https://comicvine.gamespot.com/robert-rickard/4005-14567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14568/", + "id": 14568, + "name": "Karl Kraus", + "site_detail_url": "https://comicvine.gamespot.com/karl-kraus/4005-14568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14569/", + "id": 14569, + "name": "Number 72", + "site_detail_url": "https://comicvine.gamespot.com/number-72/4005-14569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14570/", + "id": 14570, + "name": "The Rose", + "site_detail_url": "https://comicvine.gamespot.com/the-rose/4005-14570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14571/", + "id": 14571, + "name": "Blackwing", + "site_detail_url": "https://comicvine.gamespot.com/blackwing/4005-14571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14572/", + "id": 14572, + "name": "Jackhammer", + "site_detail_url": "https://comicvine.gamespot.com/jackhammer/4005-14572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14573/", + "id": 14573, + "name": "El Jaguar", + "site_detail_url": "https://comicvine.gamespot.com/el-jaguar/4005-14573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14575/", + "id": 14575, + "name": "Man-Killer", + "site_detail_url": "https://comicvine.gamespot.com/man-killer/4005-14575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14577/", + "id": 14577, + "name": "Count Vermin", + "site_detail_url": "https://comicvine.gamespot.com/count-vermin/4005-14577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14578/", + "id": 14578, + "name": "Jared Kurtz", + "site_detail_url": "https://comicvine.gamespot.com/jared-kurtz/4005-14578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14579/", + "id": 14579, + "name": "William Darvin", + "site_detail_url": "https://comicvine.gamespot.com/william-darvin/4005-14579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14581/", + "id": 14581, + "name": "Nancy Winterfield", + "site_detail_url": "https://comicvine.gamespot.com/nancy-winterfield/4005-14581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14582/", + "id": 14582, + "name": "Elsie Carson", + "site_detail_url": "https://comicvine.gamespot.com/elsie-carson/4005-14582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14583/", + "id": 14583, + "name": "Ralph Sanzetti", + "site_detail_url": "https://comicvine.gamespot.com/ralph-sanzetti/4005-14583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14584/", + "id": 14584, + "name": "Illusion", + "site_detail_url": "https://comicvine.gamespot.com/illusion/4005-14584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14586/", + "id": 14586, + "name": "Warstar", + "site_detail_url": "https://comicvine.gamespot.com/warstar/4005-14586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14587/", + "id": 14587, + "name": "Earthquake", + "site_detail_url": "https://comicvine.gamespot.com/earthquake/4005-14587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14588/", + "id": 14588, + "name": "Blindspot", + "site_detail_url": "https://comicvine.gamespot.com/blindspot/4005-14588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14589/", + "id": 14589, + "name": "Mr. Roarke", + "site_detail_url": "https://comicvine.gamespot.com/mr-roarke/4005-14589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14591/", + "id": 14591, + "name": "Agon", + "site_detail_url": "https://comicvine.gamespot.com/agon/4005-14591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14592/", + "id": 14592, + "name": "Rynda", + "site_detail_url": "https://comicvine.gamespot.com/rynda/4005-14592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14593/", + "id": 14593, + "name": "Makoth", + "site_detail_url": "https://comicvine.gamespot.com/makoth/4005-14593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14594/", + "id": 14594, + "name": "Randac", + "site_detail_url": "https://comicvine.gamespot.com/randac/4005-14594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14595/", + "id": 14595, + "name": "Phaeder", + "site_detail_url": "https://comicvine.gamespot.com/phaeder/4005-14595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14596/", + "id": 14596, + "name": "Kaliban", + "site_detail_url": "https://comicvine.gamespot.com/kaliban/4005-14596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14597/", + "id": 14597, + "name": "Chiron", + "site_detail_url": "https://comicvine.gamespot.com/chiron/4005-14597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14598/", + "id": 14598, + "name": "Flaidermaus", + "site_detail_url": "https://comicvine.gamespot.com/flaidermaus/4005-14598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14599/", + "id": 14599, + "name": "Avius", + "site_detail_url": "https://comicvine.gamespot.com/avius/4005-14599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14600/", + "id": 14600, + "name": "Pinyon", + "site_detail_url": "https://comicvine.gamespot.com/pinyon/4005-14600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14601/", + "id": 14601, + "name": "Piskas", + "site_detail_url": "https://comicvine.gamespot.com/piskas/4005-14601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14602/", + "id": 14602, + "name": "Dominus", + "site_detail_url": "https://comicvine.gamespot.com/dominus/4005-14602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14603/", + "id": 14603, + "name": "Budan", + "site_detail_url": "https://comicvine.gamespot.com/budan/4005-14603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14604/", + "id": 14604, + "name": "Romnar", + "site_detail_url": "https://comicvine.gamespot.com/romnar/4005-14604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14605/", + "id": 14605, + "name": "Interloper", + "site_detail_url": "https://comicvine.gamespot.com/interloper/4005-14605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14608/", + "id": 14608, + "name": "Valinor", + "site_detail_url": "https://comicvine.gamespot.com/valinor/4005-14608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14612/", + "id": 14612, + "name": "Proton", + "site_detail_url": "https://comicvine.gamespot.com/proton/4005-14612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14614/", + "id": 14614, + "name": "Infinks", + "site_detail_url": "https://comicvine.gamespot.com/infinks/4005-14614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14617/", + "id": 14617, + "name": "Jim Johnson", + "site_detail_url": "https://comicvine.gamespot.com/jim-johnson/4005-14617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14618/", + "id": 14618, + "name": "The Eliminator", + "site_detail_url": "https://comicvine.gamespot.com/the-eliminator/4005-14618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14619/", + "id": 14619, + "name": "Magus", + "site_detail_url": "https://comicvine.gamespot.com/magus/4005-14619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14620/", + "id": 14620, + "name": "Yarro Gort", + "site_detail_url": "https://comicvine.gamespot.com/yarro-gort/4005-14620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14621/", + "id": 14621, + "name": "Donna Maria Perez", + "site_detail_url": "https://comicvine.gamespot.com/donna-maria-perez/4005-14621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14622/", + "id": 14622, + "name": "Matriarch", + "site_detail_url": "https://comicvine.gamespot.com/matriarch/4005-14622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14623/", + "id": 14623, + "name": "Kray-Tor", + "site_detail_url": "https://comicvine.gamespot.com/kray-tor/4005-14623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14624/", + "id": 14624, + "name": "Flying Dutchman", + "site_detail_url": "https://comicvine.gamespot.com/flying-dutchman/4005-14624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14625/", + "id": 14625, + "name": "Sphinxor", + "site_detail_url": "https://comicvine.gamespot.com/sphinxor/4005-14625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14655/", + "id": 14655, + "name": "Nightmask", + "site_detail_url": "https://comicvine.gamespot.com/nightmask/4005-14655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14656/", + "id": 14656, + "name": "Tullius Ballad", + "site_detail_url": "https://comicvine.gamespot.com/tullius-ballad/4005-14656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14659/", + "id": 14659, + "name": "Lucian Ballad", + "site_detail_url": "https://comicvine.gamespot.com/lucian-ballad/4005-14659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14660/", + "id": 14660, + "name": "Teddy Remsen", + "site_detail_url": "https://comicvine.gamespot.com/teddy-remsen/4005-14660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14663/", + "id": 14663, + "name": "Lita Mercado", + "site_detail_url": "https://comicvine.gamespot.com/lita-mercado/4005-14663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14664/", + "id": 14664, + "name": "Frank Mercado", + "site_detail_url": "https://comicvine.gamespot.com/frank-mercado/4005-14664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14665/", + "id": 14665, + "name": "Justice", + "site_detail_url": "https://comicvine.gamespot.com/justice/4005-14665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14668/", + "id": 14668, + "name": "Tarenyawajon", + "site_detail_url": "https://comicvine.gamespot.com/tarenyawajon/4005-14668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14677/", + "id": 14677, + "name": "Horst Kleinmann", + "site_detail_url": "https://comicvine.gamespot.com/horst-kleinmann/4005-14677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14678/", + "id": 14678, + "name": "Mistress Midnight", + "site_detail_url": "https://comicvine.gamespot.com/mistress-midnight/4005-14678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14681/", + "id": 14681, + "name": "Henry Salinger", + "site_detail_url": "https://comicvine.gamespot.com/henry-salinger/4005-14681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14687/", + "id": 14687, + "name": "Ahab", + "site_detail_url": "https://comicvine.gamespot.com/ahab/4005-14687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14689/", + "id": 14689, + "name": "Khaos", + "site_detail_url": "https://comicvine.gamespot.com/khaos/4005-14689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14690/", + "id": 14690, + "name": "Kylun", + "site_detail_url": "https://comicvine.gamespot.com/kylun/4005-14690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14691/", + "id": 14691, + "name": "Cerise", + "site_detail_url": "https://comicvine.gamespot.com/cerise/4005-14691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14692/", + "id": 14692, + "name": "Feron", + "site_detail_url": "https://comicvine.gamespot.com/feron/4005-14692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14695/", + "id": 14695, + "name": "Hellstorm", + "site_detail_url": "https://comicvine.gamespot.com/hellstorm/4005-14695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14697/", + "id": 14697, + "name": "Jaine Cutter", + "site_detail_url": "https://comicvine.gamespot.com/jaine-cutter/4005-14697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14698/", + "id": 14698, + "name": "Jack Wintergarden", + "site_detail_url": "https://comicvine.gamespot.com/jack-wintergarden/4005-14698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14699/", + "id": 14699, + "name": "Anton Devine", + "site_detail_url": "https://comicvine.gamespot.com/anton-devine/4005-14699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14700/", + "id": 14700, + "name": "Bailiff", + "site_detail_url": "https://comicvine.gamespot.com/bailiff/4005-14700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14701/", + "id": 14701, + "name": "Soulfire", + "site_detail_url": "https://comicvine.gamespot.com/soulfire/4005-14701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14702/", + "id": 14702, + "name": "Mariel Riley", + "site_detail_url": "https://comicvine.gamespot.com/mariel-riley/4005-14702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14704/", + "id": 14704, + "name": "Marduk Kurios", + "site_detail_url": "https://comicvine.gamespot.com/marduk-kurios/4005-14704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14706/", + "id": 14706, + "name": "Gabriel Rosetti", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-rosetti/4005-14706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14708/", + "id": 14708, + "name": "Pilgrim", + "site_detail_url": "https://comicvine.gamespot.com/pilgrim/4005-14708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14709/", + "id": 14709, + "name": "Creed", + "site_detail_url": "https://comicvine.gamespot.com/creed/4005-14709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14710/", + "id": 14710, + "name": "Organ Grinder", + "site_detail_url": "https://comicvine.gamespot.com/organ-grinder/4005-14710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14712/", + "id": 14712, + "name": "Clarisse Van Ripper", + "site_detail_url": "https://comicvine.gamespot.com/clarisse-van-ripper/4005-14712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14713/", + "id": 14713, + "name": "Dark Dwarf", + "site_detail_url": "https://comicvine.gamespot.com/dark-dwarf/4005-14713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14715/", + "id": 14715, + "name": "Norman Zachos", + "site_detail_url": "https://comicvine.gamespot.com/norman-zachos/4005-14715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14719/", + "id": 14719, + "name": "Ghost Rider (Ketch)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-ketch/4005-14719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14720/", + "id": 14720, + "name": "Wolff", + "site_detail_url": "https://comicvine.gamespot.com/wolff/4005-14720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14721/", + "id": 14721, + "name": "Crash Simpson", + "site_detail_url": "https://comicvine.gamespot.com/crash-simpson/4005-14721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14722/", + "id": 14722, + "name": "Dread", + "site_detail_url": "https://comicvine.gamespot.com/dread/4005-14722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14723/", + "id": 14723, + "name": "Barbara Ketch", + "site_detail_url": "https://comicvine.gamespot.com/barbara-ketch/4005-14723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14724/", + "id": 14724, + "name": "Stacy Dolan", + "site_detail_url": "https://comicvine.gamespot.com/stacy-dolan/4005-14724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14726/", + "id": 14726, + "name": "Wallow", + "site_detail_url": "https://comicvine.gamespot.com/wallow/4005-14726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14728/", + "id": 14728, + "name": "Blackheart", + "site_detail_url": "https://comicvine.gamespot.com/blackheart/4005-14728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14730/", + "id": 14730, + "name": "Magdalena Kale", + "site_detail_url": "https://comicvine.gamespot.com/magdalena-kale/4005-14730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14731/", + "id": 14731, + "name": "Reverend Kale", + "site_detail_url": "https://comicvine.gamespot.com/reverend-kale/4005-14731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14733/", + "id": 14733, + "name": "Dante Kale", + "site_detail_url": "https://comicvine.gamespot.com/dante-kale/4005-14733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14734/", + "id": 14734, + "name": "Melissa Maro", + "site_detail_url": "https://comicvine.gamespot.com/melissa-maro/4005-14734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14737/", + "id": 14737, + "name": "Chantique", + "site_detail_url": "https://comicvine.gamespot.com/chantique/4005-14737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14738/", + "id": 14738, + "name": "Snowblind", + "site_detail_url": "https://comicvine.gamespot.com/snowblind/4005-14738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14741/", + "id": 14741, + "name": "Alec Maloni", + "site_detail_url": "https://comicvine.gamespot.com/alec-maloni/4005-14741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14745/", + "id": 14745, + "name": "Jim Sokolowski", + "site_detail_url": "https://comicvine.gamespot.com/jim-sokolowski/4005-14745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14746/", + "id": 14746, + "name": "Brood Queen", + "site_detail_url": "https://comicvine.gamespot.com/brood-queen/4005-14746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14747/", + "id": 14747, + "name": "Paula Harris", + "site_detail_url": "https://comicvine.gamespot.com/paula-harris/4005-14747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14750/", + "id": 14750, + "name": "Becky Lockhart", + "site_detail_url": "https://comicvine.gamespot.com/becky-lockhart/4005-14750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14751/", + "id": 14751, + "name": "Spook", + "site_detail_url": "https://comicvine.gamespot.com/spook/4005-14751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14752/", + "id": 14752, + "name": "Gloria Hancock", + "site_detail_url": "https://comicvine.gamespot.com/gloria-hancock/4005-14752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14756/", + "id": 14756, + "name": "Morphine", + "site_detail_url": "https://comicvine.gamespot.com/morphine/4005-14756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14757/", + "id": 14757, + "name": "Centurious", + "site_detail_url": "https://comicvine.gamespot.com/centurious/4005-14757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14759/", + "id": 14759, + "name": "Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/vengeance/4005-14759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14760/", + "id": 14760, + "name": "Caretaker", + "site_detail_url": "https://comicvine.gamespot.com/caretaker/4005-14760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14761/", + "id": 14761, + "name": "Embyrre", + "site_detail_url": "https://comicvine.gamespot.com/embyrre/4005-14761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14763/", + "id": 14763, + "name": "Outcast", + "site_detail_url": "https://comicvine.gamespot.com/outcast/4005-14763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14764/", + "id": 14764, + "name": "Nakota", + "site_detail_url": "https://comicvine.gamespot.com/nakota/4005-14764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14765/", + "id": 14765, + "name": "Meatmarket", + "site_detail_url": "https://comicvine.gamespot.com/meatmarket/4005-14765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14766/", + "id": 14766, + "name": "Quill", + "site_detail_url": "https://comicvine.gamespot.com/quill/4005-14766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14767/", + "id": 14767, + "name": "Heart Attack", + "site_detail_url": "https://comicvine.gamespot.com/heart-attack/4005-14767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14768/", + "id": 14768, + "name": "Succubus", + "site_detail_url": "https://comicvine.gamespot.com/succubus/4005-14768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14770/", + "id": 14770, + "name": "Suicide", + "site_detail_url": "https://comicvine.gamespot.com/suicide/4005-14770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14773/", + "id": 14773, + "name": "Agent-X", + "site_detail_url": "https://comicvine.gamespot.com/agent-x/4005-14773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14780/", + "id": 14780, + "name": "Knuckles", + "site_detail_url": "https://comicvine.gamespot.com/knuckles/4005-14780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14781/", + "id": 14781, + "name": "Firefox", + "site_detail_url": "https://comicvine.gamespot.com/firefox/4005-14781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14782/", + "id": 14782, + "name": "Deathwatch", + "site_detail_url": "https://comicvine.gamespot.com/deathwatch/4005-14782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14783/", + "id": 14783, + "name": "Hag", + "site_detail_url": "https://comicvine.gamespot.com/hag/4005-14783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14784/", + "id": 14784, + "name": "Troll", + "site_detail_url": "https://comicvine.gamespot.com/troll/4005-14784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14788/", + "id": 14788, + "name": "Zodiak", + "site_detail_url": "https://comicvine.gamespot.com/zodiak/4005-14788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14790/", + "id": 14790, + "name": "Reverend Styge", + "site_detail_url": "https://comicvine.gamespot.com/reverend-styge/4005-14790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14794/", + "id": 14794, + "name": "Rintrah", + "site_detail_url": "https://comicvine.gamespot.com/rintrah/4005-14794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14795/", + "id": 14795, + "name": "Obituary", + "site_detail_url": "https://comicvine.gamespot.com/obituary/4005-14795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14796/", + "id": 14796, + "name": "Death Ninja", + "site_detail_url": "https://comicvine.gamespot.com/death-ninja/4005-14796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14800/", + "id": 14800, + "name": "Warden", + "site_detail_url": "https://comicvine.gamespot.com/warden/4005-14800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14804/", + "id": 14804, + "name": "Cody Robbins", + "site_detail_url": "https://comicvine.gamespot.com/cody-robbins/4005-14804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14806/", + "id": 14806, + "name": "Bodybag", + "site_detail_url": "https://comicvine.gamespot.com/bodybag/4005-14806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14807/", + "id": 14807, + "name": "Gatecrasher", + "site_detail_url": "https://comicvine.gamespot.com/gatecrasher/4005-14807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14808/", + "id": 14808, + "name": "Thug", + "site_detail_url": "https://comicvine.gamespot.com/thug/4005-14808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14809/", + "id": 14809, + "name": "Widget", + "site_detail_url": "https://comicvine.gamespot.com/widget/4005-14809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14810/", + "id": 14810, + "name": "Roma", + "site_detail_url": "https://comicvine.gamespot.com/roma/4005-14810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14812/", + "id": 14812, + "name": "Micromax", + "site_detail_url": "https://comicvine.gamespot.com/micromax/4005-14812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14813/", + "id": 14813, + "name": "Saturnyne", + "site_detail_url": "https://comicvine.gamespot.com/saturnyne/4005-14813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14814/", + "id": 14814, + "name": "Ringtoss", + "site_detail_url": "https://comicvine.gamespot.com/ringtoss/4005-14814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14815/", + "id": 14815, + "name": "Joyboy", + "site_detail_url": "https://comicvine.gamespot.com/joyboy/4005-14815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14817/", + "id": 14817, + "name": "Waxworks", + "site_detail_url": "https://comicvine.gamespot.com/waxworks/4005-14817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14818/", + "id": 14818, + "name": "Yap", + "site_detail_url": "https://comicvine.gamespot.com/yap/4005-14818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14819/", + "id": 14819, + "name": "Pete Wisdom", + "site_detail_url": "https://comicvine.gamespot.com/pete-wisdom/4005-14819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14820/", + "id": 14820, + "name": "Merlyn", + "site_detail_url": "https://comicvine.gamespot.com/merlyn/4005-14820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14822/", + "id": 14822, + "name": "Captain U.K.", + "site_detail_url": "https://comicvine.gamespot.com/captain-uk/4005-14822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14828/", + "id": 14828, + "name": "Bamf", + "site_detail_url": "https://comicvine.gamespot.com/bamf/4005-14828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14830/", + "id": 14830, + "name": "Mikhail Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/mikhail-rasputin/4005-14830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14831/", + "id": 14831, + "name": "Sikorsky", + "site_detail_url": "https://comicvine.gamespot.com/sikorsky/4005-14831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14832/", + "id": 14832, + "name": "Sari St. Hubbins", + "site_detail_url": "https://comicvine.gamespot.com/sari-st-hubbins/4005-14832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14833/", + "id": 14833, + "name": "Lord Gator", + "site_detail_url": "https://comicvine.gamespot.com/lord-gator/4005-14833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14834/", + "id": 14834, + "name": "Lady Ursula", + "site_detail_url": "https://comicvine.gamespot.com/lady-ursula/4005-14834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14836/", + "id": 14836, + "name": "Ogun", + "site_detail_url": "https://comicvine.gamespot.com/ogun/4005-14836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14837/", + "id": 14837, + "name": "Barak", + "site_detail_url": "https://comicvine.gamespot.com/barak/4005-14837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14841/", + "id": 14841, + "name": "Unuscione", + "site_detail_url": "https://comicvine.gamespot.com/unuscione/4005-14841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14842/", + "id": 14842, + "name": "Wildside", + "site_detail_url": "https://comicvine.gamespot.com/wildside/4005-14842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14843/", + "id": 14843, + "name": "Spoor", + "site_detail_url": "https://comicvine.gamespot.com/spoor/4005-14843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14846/", + "id": 14846, + "name": "Red King", + "site_detail_url": "https://comicvine.gamespot.com/red-king/4005-14846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14847/", + "id": 14847, + "name": "Scratch", + "site_detail_url": "https://comicvine.gamespot.com/scratch/4005-14847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14849/", + "id": 14849, + "name": "Scribe", + "site_detail_url": "https://comicvine.gamespot.com/scribe/4005-14849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14850/", + "id": 14850, + "name": "Mountjoy", + "site_detail_url": "https://comicvine.gamespot.com/mountjoy/4005-14850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14853/", + "id": 14853, + "name": "Reverend Craig", + "site_detail_url": "https://comicvine.gamespot.com/reverend-craig/4005-14853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14859/", + "id": 14859, + "name": "Zero", + "site_detail_url": "https://comicvine.gamespot.com/zero/4005-14859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14860/", + "id": 14860, + "name": "Valerie Cooper", + "site_detail_url": "https://comicvine.gamespot.com/valerie-cooper/4005-14860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14861/", + "id": 14861, + "name": "Steven Lang", + "site_detail_url": "https://comicvine.gamespot.com/steven-lang/4005-14861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14865/", + "id": 14865, + "name": "Siena Blaze", + "site_detail_url": "https://comicvine.gamespot.com/siena-blaze/4005-14865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14866/", + "id": 14866, + "name": "Gamesmaster", + "site_detail_url": "https://comicvine.gamespot.com/gamesmaster/4005-14866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14868/", + "id": 14868, + "name": "Amelia Voght", + "site_detail_url": "https://comicvine.gamespot.com/amelia-voght/4005-14868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14869/", + "id": 14869, + "name": "Katu", + "site_detail_url": "https://comicvine.gamespot.com/katu/4005-14869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14874/", + "id": 14874, + "name": "Prowler", + "site_detail_url": "https://comicvine.gamespot.com/prowler/4005-14874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14875/", + "id": 14875, + "name": "Rocket Racer", + "site_detail_url": "https://comicvine.gamespot.com/rocket-racer/4005-14875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14876/", + "id": 14876, + "name": "Arnim Zola", + "site_detail_url": "https://comicvine.gamespot.com/arnim-zola/4005-14876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14879/", + "id": 14879, + "name": "Son Of Krakoa", + "site_detail_url": "https://comicvine.gamespot.com/son-of-krakoa/4005-14879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14882/", + "id": 14882, + "name": "Cooter", + "site_detail_url": "https://comicvine.gamespot.com/cooter/4005-14882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14883/", + "id": 14883, + "name": "Bash", + "site_detail_url": "https://comicvine.gamespot.com/bash/4005-14883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14887/", + "id": 14887, + "name": "Crusader X", + "site_detail_url": "https://comicvine.gamespot.com/crusader-x/4005-14887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14888/", + "id": 14888, + "name": "Horatio Cringebottom", + "site_detail_url": "https://comicvine.gamespot.com/horatio-cringebottom/4005-14888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14889/", + "id": 14889, + "name": "Shadow King", + "site_detail_url": "https://comicvine.gamespot.com/shadow-king/4005-14889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14890/", + "id": 14890, + "name": "Vixen", + "site_detail_url": "https://comicvine.gamespot.com/vixen/4005-14890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14892/", + "id": 14892, + "name": "Demon Druid", + "site_detail_url": "https://comicvine.gamespot.com/demon-druid/4005-14892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14896/", + "id": 14896, + "name": "Alysande Stuart", + "site_detail_url": "https://comicvine.gamespot.com/alysande-stuart/4005-14896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14897/", + "id": 14897, + "name": "Hauptmann Englande", + "site_detail_url": "https://comicvine.gamespot.com/hauptmann-englande/4005-14897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14902/", + "id": 14902, + "name": "Vic Chalker", + "site_detail_url": "https://comicvine.gamespot.com/vic-chalker/4005-14902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14903/", + "id": 14903, + "name": "Number One Fan", + "site_detail_url": "https://comicvine.gamespot.com/number-one-fan/4005-14903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14906/", + "id": 14906, + "name": "Crimson Commando", + "site_detail_url": "https://comicvine.gamespot.com/crimson-commando/4005-14906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14907/", + "id": 14907, + "name": "Super Sabre", + "site_detail_url": "https://comicvine.gamespot.com/super-sabre/4005-14907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14908/", + "id": 14908, + "name": "Aminedi", + "site_detail_url": "https://comicvine.gamespot.com/aminedi/4005-14908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14909/", + "id": 14909, + "name": "Arabian Knight (Hashim)", + "site_detail_url": "https://comicvine.gamespot.com/arabian-knight-hashim/4005-14909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14910/", + "id": 14910, + "name": "The Veil", + "site_detail_url": "https://comicvine.gamespot.com/the-veil/4005-14910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14911/", + "id": 14911, + "name": "Black Raazer", + "site_detail_url": "https://comicvine.gamespot.com/black-raazer/4005-14911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14917/", + "id": 14917, + "name": "Jonathan Drew", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-drew/4005-14917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14919/", + "id": 14919, + "name": "Sasha Yasinov", + "site_detail_url": "https://comicvine.gamespot.com/sasha-yasinov/4005-14919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14920/", + "id": 14920, + "name": "Major Nikolai Lizbek", + "site_detail_url": "https://comicvine.gamespot.com/major-nikolai-lizbek/4005-14920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14922/", + "id": 14922, + "name": "Blind Faith", + "site_detail_url": "https://comicvine.gamespot.com/blind-faith/4005-14922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14923/", + "id": 14923, + "name": "Mentac", + "site_detail_url": "https://comicvine.gamespot.com/mentac/4005-14923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14924/", + "id": 14924, + "name": "Concussion", + "site_detail_url": "https://comicvine.gamespot.com/concussion/4005-14924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14925/", + "id": 14925, + "name": "Iron Curtain", + "site_detail_url": "https://comicvine.gamespot.com/iron-curtain/4005-14925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14936/", + "id": 14936, + "name": "Texas Jack", + "site_detail_url": "https://comicvine.gamespot.com/texas-jack/4005-14936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14942/", + "id": 14942, + "name": "Tora", + "site_detail_url": "https://comicvine.gamespot.com/tora/4005-14942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14947/", + "id": 14947, + "name": "Sammy Silke", + "site_detail_url": "https://comicvine.gamespot.com/sammy-silke/4005-14947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14949/", + "id": 14949, + "name": "Elaine Kendrick", + "site_detail_url": "https://comicvine.gamespot.com/elaine-kendrick/4005-14949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14950/", + "id": 14950, + "name": "Samuel Griggs", + "site_detail_url": "https://comicvine.gamespot.com/samuel-griggs/4005-14950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14951/", + "id": 14951, + "name": "Kate Vinokur", + "site_detail_url": "https://comicvine.gamespot.com/kate-vinokur/4005-14951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14953/", + "id": 14953, + "name": "Ilsa", + "site_detail_url": "https://comicvine.gamespot.com/ilsa/4005-14953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14954/", + "id": 14954, + "name": "Timmy Lange", + "site_detail_url": "https://comicvine.gamespot.com/timmy-lange/4005-14954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14955/", + "id": 14955, + "name": "Allison Lange", + "site_detail_url": "https://comicvine.gamespot.com/allison-lange/4005-14955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14956/", + "id": 14956, + "name": "Crazy Horse", + "site_detail_url": "https://comicvine.gamespot.com/crazy-horse/4005-14956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14957/", + "id": 14957, + "name": "Murphy Twins", + "site_detail_url": "https://comicvine.gamespot.com/murphy-twins/4005-14957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14958/", + "id": 14958, + "name": "Rosalind Sharpe", + "site_detail_url": "https://comicvine.gamespot.com/rosalind-sharpe/4005-14958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14960/", + "id": 14960, + "name": "Jeff Anderson", + "site_detail_url": "https://comicvine.gamespot.com/jeff-anderson/4005-14960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14961/", + "id": 14961, + "name": "Sister Maggie Murdock", + "site_detail_url": "https://comicvine.gamespot.com/sister-maggie-murdock/4005-14961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14962/", + "id": 14962, + "name": "Betsy Beatty", + "site_detail_url": "https://comicvine.gamespot.com/betsy-beatty/4005-14962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14973/", + "id": 14973, + "name": "Mr. Gabriel", + "site_detail_url": "https://comicvine.gamespot.com/mr-gabriel/4005-14973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14975/", + "id": 14975, + "name": "Grotto", + "site_detail_url": "https://comicvine.gamespot.com/grotto/4005-14975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14976/", + "id": 14976, + "name": "Jimmy Califore", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-califore/4005-14976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14984/", + "id": 14984, + "name": "Connie Ferrari", + "site_detail_url": "https://comicvine.gamespot.com/connie-ferrari/4005-14984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14989/", + "id": 14989, + "name": "Branson", + "site_detail_url": "https://comicvine.gamespot.com/branson/4005-14989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14991/", + "id": 14991, + "name": "Rebel", + "site_detail_url": "https://comicvine.gamespot.com/rebel/4005-14991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14992/", + "id": 14992, + "name": "U.S.Agent", + "site_detail_url": "https://comicvine.gamespot.com/usagent/4005-14992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14994/", + "id": 14994, + "name": "Bron Char", + "site_detail_url": "https://comicvine.gamespot.com/bron-char/4005-14994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14998/", + "id": 14998, + "name": "Irene Merryweather", + "site_detail_url": "https://comicvine.gamespot.com/irene-merryweather/4005-14998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15003/", + "id": 15003, + "name": "Fiz", + "site_detail_url": "https://comicvine.gamespot.com/fiz/4005-15003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15005/", + "id": 15005, + "name": "Link", + "site_detail_url": "https://comicvine.gamespot.com/link/4005-15005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15006/", + "id": 15006, + "name": "Michael", + "site_detail_url": "https://comicvine.gamespot.com/michael/4005-15006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15007/", + "id": 15007, + "name": "Nom", + "site_detail_url": "https://comicvine.gamespot.com/nom/4005-15007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15009/", + "id": 15009, + "name": "Chronotroopers", + "site_detail_url": "https://comicvine.gamespot.com/chronotroopers/4005-15009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15010/", + "id": 15010, + "name": "Tracker", + "site_detail_url": "https://comicvine.gamespot.com/tracker/4005-15010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15011/", + "id": 15011, + "name": "Thumper", + "site_detail_url": "https://comicvine.gamespot.com/thumper/4005-15011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15012/", + "id": 15012, + "name": "Note", + "site_detail_url": "https://comicvine.gamespot.com/note/4005-15012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15013/", + "id": 15013, + "name": "Seer", + "site_detail_url": "https://comicvine.gamespot.com/seer/4005-15013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15014/", + "id": 15014, + "name": "Tull", + "site_detail_url": "https://comicvine.gamespot.com/tull/4005-15014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15015/", + "id": 15015, + "name": "GOL-19 Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/gol-19-sentinel/4005-15015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15019/", + "id": 15019, + "name": "Omerta", + "site_detail_url": "https://comicvine.gamespot.com/omerta/4005-15019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15020/", + "id": 15020, + "name": "Random", + "site_detail_url": "https://comicvine.gamespot.com/random/4005-15020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15022/", + "id": 15022, + "name": "Jennifer Ransome", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-ransome/4005-15022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15023/", + "id": 15023, + "name": "Blood Brothers", + "site_detail_url": "https://comicvine.gamespot.com/blood-brothers/4005-15023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15026/", + "id": 15026, + "name": "Robert Kelly", + "site_detail_url": "https://comicvine.gamespot.com/robert-kelly/4005-15026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15027/", + "id": 15027, + "name": "Charlotte Jones", + "site_detail_url": "https://comicvine.gamespot.com/charlotte-jones/4005-15027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15028/", + "id": 15028, + "name": "Ransome Sole", + "site_detail_url": "https://comicvine.gamespot.com/ransome-sole/4005-15028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15029/", + "id": 15029, + "name": "Big Casino", + "site_detail_url": "https://comicvine.gamespot.com/big-casino/4005-15029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15030/", + "id": 15030, + "name": "Rufus Delgado", + "site_detail_url": "https://comicvine.gamespot.com/rufus-delgado/4005-15030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15032/", + "id": 15032, + "name": "Static", + "site_detail_url": "https://comicvine.gamespot.com/static/4005-15032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15033/", + "id": 15033, + "name": "Elysia", + "site_detail_url": "https://comicvine.gamespot.com/elysia/4005-15033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15034/", + "id": 15034, + "name": "Helix", + "site_detail_url": "https://comicvine.gamespot.com/helix/4005-15034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15035/", + "id": 15035, + "name": "Gyre", + "site_detail_url": "https://comicvine.gamespot.com/gyre/4005-15035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15036/", + "id": 15036, + "name": "Coil", + "site_detail_url": "https://comicvine.gamespot.com/coil/4005-15036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15037/", + "id": 15037, + "name": "Ringlet", + "site_detail_url": "https://comicvine.gamespot.com/ringlet/4005-15037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15038/", + "id": 15038, + "name": "Torque", + "site_detail_url": "https://comicvine.gamespot.com/torque/4005-15038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15039/", + "id": 15039, + "name": "Killian", + "site_detail_url": "https://comicvine.gamespot.com/killian/4005-15039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15041/", + "id": 15041, + "name": "Broadside", + "site_detail_url": "https://comicvine.gamespot.com/broadside/4005-15041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15043/", + "id": 15043, + "name": "Sea Dog", + "site_detail_url": "https://comicvine.gamespot.com/sea-dog/4005-15043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15044/", + "id": 15044, + "name": "Sanguine", + "site_detail_url": "https://comicvine.gamespot.com/sanguine/4005-15044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15045/", + "id": 15045, + "name": "Beldame", + "site_detail_url": "https://comicvine.gamespot.com/beldame/4005-15045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15047/", + "id": 15047, + "name": "Wanderer", + "site_detail_url": "https://comicvine.gamespot.com/wanderer/4005-15047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15049/", + "id": 15049, + "name": "Gabrielle Haller", + "site_detail_url": "https://comicvine.gamespot.com/gabrielle-haller/4005-15049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15051/", + "id": 15051, + "name": "X-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-man/4005-15051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15053/", + "id": 15053, + "name": "The Jester", + "site_detail_url": "https://comicvine.gamespot.com/the-jester/4005-15053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15054/", + "id": 15054, + "name": "Baroness Zemo", + "site_detail_url": "https://comicvine.gamespot.com/baroness-zemo/4005-15054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15060/", + "id": 15060, + "name": "Greystone", + "site_detail_url": "https://comicvine.gamespot.com/greystone/4005-15060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15062/", + "id": 15062, + "name": "G.W. Bridge", + "site_detail_url": "https://comicvine.gamespot.com/gw-bridge/4005-15062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15063/", + "id": 15063, + "name": "Joseph", + "site_detail_url": "https://comicvine.gamespot.com/joseph/4005-15063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15064/", + "id": 15064, + "name": "Ejulp", + "site_detail_url": "https://comicvine.gamespot.com/ejulp/4005-15064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15065/", + "id": 15065, + "name": "Ferris", + "site_detail_url": "https://comicvine.gamespot.com/ferris/4005-15065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15066/", + "id": 15066, + "name": "Neophyte", + "site_detail_url": "https://comicvine.gamespot.com/neophyte/4005-15066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15068/", + "id": 15068, + "name": "Kamal", + "site_detail_url": "https://comicvine.gamespot.com/kamal/4005-15068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15069/", + "id": 15069, + "name": "Vindaloo", + "site_detail_url": "https://comicvine.gamespot.com/vindaloo/4005-15069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15070/", + "id": 15070, + "name": "Meld", + "site_detail_url": "https://comicvine.gamespot.com/meld/4005-15070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15071/", + "id": 15071, + "name": "Holocaust", + "site_detail_url": "https://comicvine.gamespot.com/holocaust/4005-15071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15072/", + "id": 15072, + "name": "Maggott", + "site_detail_url": "https://comicvine.gamespot.com/maggott/4005-15072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15074/", + "id": 15074, + "name": "Renee Majcomb", + "site_detail_url": "https://comicvine.gamespot.com/renee-majcomb/4005-15074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15075/", + "id": 15075, + "name": "Post", + "site_detail_url": "https://comicvine.gamespot.com/post/4005-15075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15077/", + "id": 15077, + "name": "Grey King", + "site_detail_url": "https://comicvine.gamespot.com/grey-king/4005-15077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15078/", + "id": 15078, + "name": "Mercury", + "site_detail_url": "https://comicvine.gamespot.com/mercury/4005-15078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15079/", + "id": 15079, + "name": "Landslide", + "site_detail_url": "https://comicvine.gamespot.com/landslide/4005-15079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15080/", + "id": 15080, + "name": "Crux", + "site_detail_url": "https://comicvine.gamespot.com/crux/4005-15080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15085/", + "id": 15085, + "name": "Ainet", + "site_detail_url": "https://comicvine.gamespot.com/ainet/4005-15085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15086/", + "id": 15086, + "name": "Pilgrimm", + "site_detail_url": "https://comicvine.gamespot.com/pilgrimm/4005-15086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15089/", + "id": 15089, + "name": "Infectia", + "site_detail_url": "https://comicvine.gamespot.com/infectia/4005-15089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15090/", + "id": 15090, + "name": "Bludgeon", + "site_detail_url": "https://comicvine.gamespot.com/bludgeon/4005-15090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15092/", + "id": 15092, + "name": "Katana", + "site_detail_url": "https://comicvine.gamespot.com/katana/4005-15092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15094/", + "id": 15094, + "name": "Clive Reston", + "site_detail_url": "https://comicvine.gamespot.com/clive-reston/4005-15094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15096/", + "id": 15096, + "name": "Karima", + "site_detail_url": "https://comicvine.gamespot.com/karima/4005-15096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15099/", + "id": 15099, + "name": "Fatale", + "site_detail_url": "https://comicvine.gamespot.com/fatale/4005-15099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15104/", + "id": 15104, + "name": "Javitz", + "site_detail_url": "https://comicvine.gamespot.com/javitz/4005-15104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15105/", + "id": 15105, + "name": "Bolt", + "site_detail_url": "https://comicvine.gamespot.com/bolt/4005-15105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15108/", + "id": 15108, + "name": "Adam X", + "site_detail_url": "https://comicvine.gamespot.com/adam-x/4005-15108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15109/", + "id": 15109, + "name": "Philip Summers", + "site_detail_url": "https://comicvine.gamespot.com/philip-summers/4005-15109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15110/", + "id": 15110, + "name": "Deborah Summers", + "site_detail_url": "https://comicvine.gamespot.com/deborah-summers/4005-15110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15111/", + "id": 15111, + "name": "Black Box", + "site_detail_url": "https://comicvine.gamespot.com/black-box/4005-15111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15112/", + "id": 15112, + "name": "Harvest", + "site_detail_url": "https://comicvine.gamespot.com/harvest/4005-15112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15115/", + "id": 15115, + "name": "Sunset Grace", + "site_detail_url": "https://comicvine.gamespot.com/sunset-grace/4005-15115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15116/", + "id": 15116, + "name": "Threnody", + "site_detail_url": "https://comicvine.gamespot.com/threnody/4005-15116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15117/", + "id": 15117, + "name": "Matsuo Tsurayaba", + "site_detail_url": "https://comicvine.gamespot.com/matsuo-tsurayaba/4005-15117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15121/", + "id": 15121, + "name": "Donald Parvenue", + "site_detail_url": "https://comicvine.gamespot.com/donald-parvenue/4005-15121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15123/", + "id": 15123, + "name": "Phillip Moreau", + "site_detail_url": "https://comicvine.gamespot.com/phillip-moreau/4005-15123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15126/", + "id": 15126, + "name": "Milan", + "site_detail_url": "https://comicvine.gamespot.com/milan/4005-15126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15127/", + "id": 15127, + "name": "Archer", + "site_detail_url": "https://comicvine.gamespot.com/archer/4005-15127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15128/", + "id": 15128, + "name": "Fixx", + "site_detail_url": "https://comicvine.gamespot.com/fixx/4005-15128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15134/", + "id": 15134, + "name": "Ever", + "site_detail_url": "https://comicvine.gamespot.com/ever/4005-15134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15135/", + "id": 15135, + "name": "Edmond Atkinson", + "site_detail_url": "https://comicvine.gamespot.com/edmond-atkinson/4005-15135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15138/", + "id": 15138, + "name": "Trevor Chase", + "site_detail_url": "https://comicvine.gamespot.com/trevor-chase/4005-15138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15140/", + "id": 15140, + "name": "Bowser", + "site_detail_url": "https://comicvine.gamespot.com/bowser/4005-15140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15142/", + "id": 15142, + "name": "Haven", + "site_detail_url": "https://comicvine.gamespot.com/haven/4005-15142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15143/", + "id": 15143, + "name": "Naze", + "site_detail_url": "https://comicvine.gamespot.com/naze/4005-15143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15145/", + "id": 15145, + "name": "Scarlett McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/scarlett-mckenzie/4005-15145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15147/", + "id": 15147, + "name": "Jornick", + "site_detail_url": "https://comicvine.gamespot.com/jornick/4005-15147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15155/", + "id": 15155, + "name": "Taras", + "site_detail_url": "https://comicvine.gamespot.com/taras/4005-15155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15157/", + "id": 15157, + "name": "Gina Anderson", + "site_detail_url": "https://comicvine.gamespot.com/gina-anderson/4005-15157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15159/", + "id": 15159, + "name": "Blaquesmith", + "site_detail_url": "https://comicvine.gamespot.com/blaquesmith/4005-15159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15160/", + "id": 15160, + "name": "Dark Mother", + "site_detail_url": "https://comicvine.gamespot.com/dark-mother/4005-15160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15164/", + "id": 15164, + "name": "Shin", + "site_detail_url": "https://comicvine.gamespot.com/shin/4005-15164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15167/", + "id": 15167, + "name": "Martinique Jason", + "site_detail_url": "https://comicvine.gamespot.com/martinique-jason/4005-15167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15171/", + "id": 15171, + "name": "The Black Dawn", + "site_detail_url": "https://comicvine.gamespot.com/the-black-dawn/4005-15171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15172/", + "id": 15172, + "name": "Wall", + "site_detail_url": "https://comicvine.gamespot.com/wall/4005-15172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15173/", + "id": 15173, + "name": "Key", + "site_detail_url": "https://comicvine.gamespot.com/key/4005-15173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15174/", + "id": 15174, + "name": "Professor Berger", + "site_detail_url": "https://comicvine.gamespot.com/professor-berger/4005-15174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15175/", + "id": 15175, + "name": "Sandella", + "site_detail_url": "https://comicvine.gamespot.com/sandella/4005-15175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15176/", + "id": 15176, + "name": "Eyla Cire", + "site_detail_url": "https://comicvine.gamespot.com/eyla-cire/4005-15176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15177/", + "id": 15177, + "name": "Semijan", + "site_detail_url": "https://comicvine.gamespot.com/semijan/4005-15177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15178/", + "id": 15178, + "name": "Randall Shire", + "site_detail_url": "https://comicvine.gamespot.com/randall-shire/4005-15178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15179/", + "id": 15179, + "name": "Blockade", + "site_detail_url": "https://comicvine.gamespot.com/blockade/4005-15179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15180/", + "id": 15180, + "name": "Manuel Cire", + "site_detail_url": "https://comicvine.gamespot.com/manuel-cire/4005-15180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15182/", + "id": 15182, + "name": "Clarity", + "site_detail_url": "https://comicvine.gamespot.com/clarity/4005-15182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15183/", + "id": 15183, + "name": "Ezra Cire", + "site_detail_url": "https://comicvine.gamespot.com/ezra-cire/4005-15183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15186/", + "id": 15186, + "name": "Aentaros The Undying", + "site_detail_url": "https://comicvine.gamespot.com/aentaros-the-undying/4005-15186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15187/", + "id": 15187, + "name": "Stacey Kramer", + "site_detail_url": "https://comicvine.gamespot.com/stacey-kramer/4005-15187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15190/", + "id": 15190, + "name": "Kenny Kramer", + "site_detail_url": "https://comicvine.gamespot.com/kenny-kramer/4005-15190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15192/", + "id": 15192, + "name": "Caesar", + "site_detail_url": "https://comicvine.gamespot.com/caesar/4005-15192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15193/", + "id": 15193, + "name": "Sanctity", + "site_detail_url": "https://comicvine.gamespot.com/sanctity/4005-15193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15194/", + "id": 15194, + "name": "Jacob Sutton", + "site_detail_url": "https://comicvine.gamespot.com/jacob-sutton/4005-15194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15196/", + "id": 15196, + "name": "Harbinger of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/harbinger-of-apocalypse/4005-15196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15197/", + "id": 15197, + "name": "Acidroid", + "site_detail_url": "https://comicvine.gamespot.com/acidroid/4005-15197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15198/", + "id": 15198, + "name": "Aliya Dayspring", + "site_detail_url": "https://comicvine.gamespot.com/aliya-dayspring/4005-15198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15199/", + "id": 15199, + "name": "Jack Truman", + "site_detail_url": "https://comicvine.gamespot.com/jack-truman/4005-15199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15202/", + "id": 15202, + "name": "Horatio Belgrade", + "site_detail_url": "https://comicvine.gamespot.com/horatio-belgrade/4005-15202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15203/", + "id": 15203, + "name": "Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/grizzly/4005-15203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15205/", + "id": 15205, + "name": "Master Man", + "site_detail_url": "https://comicvine.gamespot.com/master-man/4005-15205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15210/", + "id": 15210, + "name": "Omar", + "site_detail_url": "https://comicvine.gamespot.com/omar/4005-15210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15212/", + "id": 15212, + "name": "Lasher", + "site_detail_url": "https://comicvine.gamespot.com/lasher/4005-15212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15217/", + "id": 15217, + "name": "Quorum", + "site_detail_url": "https://comicvine.gamespot.com/quorum/4005-15217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15218/", + "id": 15218, + "name": "Mosh", + "site_detail_url": "https://comicvine.gamespot.com/mosh/4005-15218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15219/", + "id": 15219, + "name": "Mr. Sanders", + "site_detail_url": "https://comicvine.gamespot.com/mr-sanders/4005-15219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15220/", + "id": 15220, + "name": "Twitchy", + "site_detail_url": "https://comicvine.gamespot.com/twitchy/4005-15220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15222/", + "id": 15222, + "name": "Detective Jacob Raven", + "site_detail_url": "https://comicvine.gamespot.com/detective-jacob-raven/4005-15222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15225/", + "id": 15225, + "name": "Firefist", + "site_detail_url": "https://comicvine.gamespot.com/firefist/4005-15225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15232/", + "id": 15232, + "name": "Shriek", + "site_detail_url": "https://comicvine.gamespot.com/shriek/4005-15232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15233/", + "id": 15233, + "name": "Clifford Gross", + "site_detail_url": "https://comicvine.gamespot.com/clifford-gross/4005-15233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15235/", + "id": 15235, + "name": "Jack", + "site_detail_url": "https://comicvine.gamespot.com/jack/4005-15235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15238/", + "id": 15238, + "name": "Puma", + "site_detail_url": "https://comicvine.gamespot.com/puma/4005-15238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15241/", + "id": 15241, + "name": "Chakra", + "site_detail_url": "https://comicvine.gamespot.com/chakra/4005-15241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15243/", + "id": 15243, + "name": "Mr. Nacht", + "site_detail_url": "https://comicvine.gamespot.com/mr-nacht/4005-15243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15244/", + "id": 15244, + "name": "Medea", + "site_detail_url": "https://comicvine.gamespot.com/medea/4005-15244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15245/", + "id": 15245, + "name": "Wild Whip", + "site_detail_url": "https://comicvine.gamespot.com/wild-whip/4005-15245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15248/", + "id": 15248, + "name": "Phillip Cussler", + "site_detail_url": "https://comicvine.gamespot.com/phillip-cussler/4005-15248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15249/", + "id": 15249, + "name": "Kate Cushing", + "site_detail_url": "https://comicvine.gamespot.com/kate-cushing/4005-15249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15250/", + "id": 15250, + "name": "Jack Morray", + "site_detail_url": "https://comicvine.gamespot.com/jack-morray/4005-15250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15251/", + "id": 15251, + "name": "Master Of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/master-of-vengeance/4005-15251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15252/", + "id": 15252, + "name": "Yeoman", + "site_detail_url": "https://comicvine.gamespot.com/yeoman/4005-15252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15253/", + "id": 15253, + "name": "Deadaim", + "site_detail_url": "https://comicvine.gamespot.com/deadaim/4005-15253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15254/", + "id": 15254, + "name": "Warzone", + "site_detail_url": "https://comicvine.gamespot.com/warzone/4005-15254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15255/", + "id": 15255, + "name": "Battlescar", + "site_detail_url": "https://comicvine.gamespot.com/battlescar/4005-15255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15256/", + "id": 15256, + "name": "Bangs", + "site_detail_url": "https://comicvine.gamespot.com/bangs/4005-15256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15257/", + "id": 15257, + "name": "Pulse", + "site_detail_url": "https://comicvine.gamespot.com/pulse/4005-15257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15258/", + "id": 15258, + "name": "Silence", + "site_detail_url": "https://comicvine.gamespot.com/silence/4005-15258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15260/", + "id": 15260, + "name": "Joey Gregson", + "site_detail_url": "https://comicvine.gamespot.com/joey-gregson/4005-15260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15261/", + "id": 15261, + "name": "Richard Parker", + "site_detail_url": "https://comicvine.gamespot.com/richard-parker/4005-15261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15262/", + "id": 15262, + "name": "Mary Parker", + "site_detail_url": "https://comicvine.gamespot.com/mary-parker/4005-15262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15263/", + "id": 15263, + "name": "London", + "site_detail_url": "https://comicvine.gamespot.com/london/4005-15263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15264/", + "id": 15264, + "name": "Mr. Sandoz", + "site_detail_url": "https://comicvine.gamespot.com/mr-sandoz/4005-15264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15265/", + "id": 15265, + "name": "Nick Kaska", + "site_detail_url": "https://comicvine.gamespot.com/nick-kaska/4005-15265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15266/", + "id": 15266, + "name": "Lance Bannon", + "site_detail_url": "https://comicvine.gamespot.com/lance-bannon/4005-15266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15267/", + "id": 15267, + "name": "Martha Robertson", + "site_detail_url": "https://comicvine.gamespot.com/martha-robertson/4005-15267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15268/", + "id": 15268, + "name": "Joy Mercado", + "site_detail_url": "https://comicvine.gamespot.com/joy-mercado/4005-15268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15272/", + "id": 15272, + "name": "Demogoblin", + "site_detail_url": "https://comicvine.gamespot.com/demogoblin/4005-15272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15274/", + "id": 15274, + "name": "Doppelganger", + "site_detail_url": "https://comicvine.gamespot.com/doppelganger/4005-15274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15277/", + "id": 15277, + "name": "Black Crow", + "site_detail_url": "https://comicvine.gamespot.com/black-crow/4005-15277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15279/", + "id": 15279, + "name": "The Burglar", + "site_detail_url": "https://comicvine.gamespot.com/the-burglar/4005-15279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15281/", + "id": 15281, + "name": "White Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/white-rabbit/4005-15281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15282/", + "id": 15282, + "name": "Walrus", + "site_detail_url": "https://comicvine.gamespot.com/walrus/4005-15282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15283/", + "id": 15283, + "name": "Corona", + "site_detail_url": "https://comicvine.gamespot.com/corona/4005-15283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15284/", + "id": 15284, + "name": "Hachiman", + "site_detail_url": "https://comicvine.gamespot.com/hachiman/4005-15284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15286/", + "id": 15286, + "name": "Nick Katzenberg", + "site_detail_url": "https://comicvine.gamespot.com/nick-katzenberg/4005-15286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15287/", + "id": 15287, + "name": "Kristy Watson", + "site_detail_url": "https://comicvine.gamespot.com/kristy-watson/4005-15287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15288/", + "id": 15288, + "name": "Willie Lumpkin", + "site_detail_url": "https://comicvine.gamespot.com/willie-lumpkin/4005-15288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15290/", + "id": 15290, + "name": "Jason Jerome", + "site_detail_url": "https://comicvine.gamespot.com/jason-jerome/4005-15290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15292/", + "id": 15292, + "name": "Calculus", + "site_detail_url": "https://comicvine.gamespot.com/calculus/4005-15292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15294/", + "id": 15294, + "name": "Fogg", + "site_detail_url": "https://comicvine.gamespot.com/fogg/4005-15294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15296/", + "id": 15296, + "name": "Edgar Fogg", + "site_detail_url": "https://comicvine.gamespot.com/edgar-fogg/4005-15296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15297/", + "id": 15297, + "name": "Evelyn Fogg", + "site_detail_url": "https://comicvine.gamespot.com/evelyn-fogg/4005-15297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15298/", + "id": 15298, + "name": "Knight", + "site_detail_url": "https://comicvine.gamespot.com/knight/4005-15298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15299/", + "id": 15299, + "name": "Inspector MacDougal", + "site_detail_url": "https://comicvine.gamespot.com/inspector-macdougal/4005-15299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15300/", + "id": 15300, + "name": "Professor Henry Lewis", + "site_detail_url": "https://comicvine.gamespot.com/professor-henry-lewis/4005-15300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15301/", + "id": 15301, + "name": "Leo Knight", + "site_detail_url": "https://comicvine.gamespot.com/leo-knight/4005-15301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15302/", + "id": 15302, + "name": "Arranger", + "site_detail_url": "https://comicvine.gamespot.com/arranger/4005-15302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15307/", + "id": 15307, + "name": "Roulette", + "site_detail_url": "https://comicvine.gamespot.com/roulette/4005-15307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15311/", + "id": 15311, + "name": "Grim Hunter", + "site_detail_url": "https://comicvine.gamespot.com/grim-hunter/4005-15311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15312/", + "id": 15312, + "name": "Scorch", + "site_detail_url": "https://comicvine.gamespot.com/scorch/4005-15312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15313/", + "id": 15313, + "name": "Gabrielle Greer", + "site_detail_url": "https://comicvine.gamespot.com/gabrielle-greer/4005-15313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15315/", + "id": 15315, + "name": "Boone", + "site_detail_url": "https://comicvine.gamespot.com/boone/4005-15315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15322/", + "id": 15322, + "name": "Fever Pitch", + "site_detail_url": "https://comicvine.gamespot.com/fever-pitch/4005-15322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15323/", + "id": 15323, + "name": "Abyss", + "site_detail_url": "https://comicvine.gamespot.com/abyss/4005-15323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15324/", + "id": 15324, + "name": "Sunpyre", + "site_detail_url": "https://comicvine.gamespot.com/sunpyre/4005-15324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15326/", + "id": 15326, + "name": "Sugar Kane", + "site_detail_url": "https://comicvine.gamespot.com/sugar-kane/4005-15326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15327/", + "id": 15327, + "name": "Mr. Clean", + "site_detail_url": "https://comicvine.gamespot.com/mr-clean/4005-15327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15328/", + "id": 15328, + "name": "Katherine Summers", + "site_detail_url": "https://comicvine.gamespot.com/katherine-summers/4005-15328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15329/", + "id": 15329, + "name": "Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/bedlam/4005-15329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15330/", + "id": 15330, + "name": "Webwing", + "site_detail_url": "https://comicvine.gamespot.com/webwing/4005-15330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15331/", + "id": 15331, + "name": "Neutron", + "site_detail_url": "https://comicvine.gamespot.com/neutron/4005-15331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15332/", + "id": 15332, + "name": "Tullamore Voge", + "site_detail_url": "https://comicvine.gamespot.com/tullamore-voge/4005-15332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15333/", + "id": 15333, + "name": "Bloody Bess", + "site_detail_url": "https://comicvine.gamespot.com/bloody-bess/4005-15333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15335/", + "id": 15335, + "name": "Debra Levin", + "site_detail_url": "https://comicvine.gamespot.com/debra-levin/4005-15335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15336/", + "id": 15336, + "name": "Simyon Kurasov", + "site_detail_url": "https://comicvine.gamespot.com/simyon-kurasov/4005-15336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15337/", + "id": 15337, + "name": "Farahd", + "site_detail_url": "https://comicvine.gamespot.com/farahd/4005-15337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15338/", + "id": 15338, + "name": "Galadriel", + "site_detail_url": "https://comicvine.gamespot.com/galadriel/4005-15338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15339/", + "id": 15339, + "name": "Requiem", + "site_detail_url": "https://comicvine.gamespot.com/requiem/4005-15339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15341/", + "id": 15341, + "name": "Desolation", + "site_detail_url": "https://comicvine.gamespot.com/desolation/4005-15341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15342/", + "id": 15342, + "name": "Lament", + "site_detail_url": "https://comicvine.gamespot.com/lament/4005-15342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15343/", + "id": 15343, + "name": "Shockwave Riders", + "site_detail_url": "https://comicvine.gamespot.com/shockwave-riders/4005-15343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15350/", + "id": 15350, + "name": "Nightcreeper", + "site_detail_url": "https://comicvine.gamespot.com/nightcreeper/4005-15350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15353/", + "id": 15353, + "name": "Sunstroke", + "site_detail_url": "https://comicvine.gamespot.com/sunstroke/4005-15353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15354/", + "id": 15354, + "name": "Butte", + "site_detail_url": "https://comicvine.gamespot.com/butte/4005-15354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15355/", + "id": 15355, + "name": "Cactus", + "site_detail_url": "https://comicvine.gamespot.com/cactus/4005-15355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15356/", + "id": 15356, + "name": "Gila", + "site_detail_url": "https://comicvine.gamespot.com/gila/4005-15356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15358/", + "id": 15358, + "name": "Orb (Shannon)", + "site_detail_url": "https://comicvine.gamespot.com/orb-shannon/4005-15358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15363/", + "id": 15363, + "name": "Arsenio Horse", + "site_detail_url": "https://comicvine.gamespot.com/arsenio-horse/4005-15363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15364/", + "id": 15364, + "name": "Marcy Kane", + "site_detail_url": "https://comicvine.gamespot.com/marcy-kane/4005-15364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15365/", + "id": 15365, + "name": "Roger Hochberg", + "site_detail_url": "https://comicvine.gamespot.com/roger-hochberg/4005-15365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15367/", + "id": 15367, + "name": "Miss Locke", + "site_detail_url": "https://comicvine.gamespot.com/miss-locke/4005-15367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15368/", + "id": 15368, + "name": "Amos Jardine", + "site_detail_url": "https://comicvine.gamespot.com/amos-jardine/4005-15368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15372/", + "id": 15372, + "name": "Edna McCoy", + "site_detail_url": "https://comicvine.gamespot.com/edna-mccoy/4005-15372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15373/", + "id": 15373, + "name": "Norton McCoy", + "site_detail_url": "https://comicvine.gamespot.com/norton-mccoy/4005-15373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15374/", + "id": 15374, + "name": "Vera Cantor", + "site_detail_url": "https://comicvine.gamespot.com/vera-cantor/4005-15374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15376/", + "id": 15376, + "name": "Steve Hopkins", + "site_detail_url": "https://comicvine.gamespot.com/steve-hopkins/4005-15376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15378/", + "id": 15378, + "name": "Mia Carrera", + "site_detail_url": "https://comicvine.gamespot.com/mia-carrera/4005-15378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15379/", + "id": 15379, + "name": "Victor Palermo", + "site_detail_url": "https://comicvine.gamespot.com/victor-palermo/4005-15379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15380/", + "id": 15380, + "name": "Harriet Palermo", + "site_detail_url": "https://comicvine.gamespot.com/harriet-palermo/4005-15380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15381/", + "id": 15381, + "name": "Arthur Chekov", + "site_detail_url": "https://comicvine.gamespot.com/arthur-chekov/4005-15381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15382/", + "id": 15382, + "name": "Modular Man", + "site_detail_url": "https://comicvine.gamespot.com/modular-man/4005-15382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15383/", + "id": 15383, + "name": "Bat-Mouse", + "site_detail_url": "https://comicvine.gamespot.com/bat-mouse/4005-15383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15384/", + "id": 15384, + "name": "Duck Hope", + "site_detail_url": "https://comicvine.gamespot.com/duck-hope/4005-15384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15386/", + "id": 15386, + "name": "Griffin", + "site_detail_url": "https://comicvine.gamespot.com/griffin/4005-15386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15387/", + "id": 15387, + "name": "Duckster", + "site_detail_url": "https://comicvine.gamespot.com/duckster/4005-15387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15388/", + "id": 15388, + "name": "Yama Dharma", + "site_detail_url": "https://comicvine.gamespot.com/yama-dharma/4005-15388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15390/", + "id": 15390, + "name": "Shiva", + "site_detail_url": "https://comicvine.gamespot.com/shiva/4005-15390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15391/", + "id": 15391, + "name": "Mara", + "site_detail_url": "https://comicvine.gamespot.com/mara/4005-15391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15394/", + "id": 15394, + "name": "Rakks", + "site_detail_url": "https://comicvine.gamespot.com/rakks/4005-15394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15400/", + "id": 15400, + "name": "Green Gopher", + "site_detail_url": "https://comicvine.gamespot.com/green-gopher/4005-15400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15401/", + "id": 15401, + "name": "Raven The Hunter", + "site_detail_url": "https://comicvine.gamespot.com/raven-the-hunter/4005-15401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15405/", + "id": 15405, + "name": "Punfisher", + "site_detail_url": "https://comicvine.gamespot.com/punfisher/4005-15405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15406/", + "id": 15406, + "name": "Will o' the Wisp", + "site_detail_url": "https://comicvine.gamespot.com/will-o-the-wisp/4005-15406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15408/", + "id": 15408, + "name": "Liz Allan", + "site_detail_url": "https://comicvine.gamespot.com/liz-allan/4005-15408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15413/", + "id": 15413, + "name": "Deerdevil", + "site_detail_url": "https://comicvine.gamespot.com/deerdevil/4005-15413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15415/", + "id": 15415, + "name": "Thermo", + "site_detail_url": "https://comicvine.gamespot.com/thermo/4005-15415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15416/", + "id": 15416, + "name": "Rampage", + "site_detail_url": "https://comicvine.gamespot.com/rampage/4005-15416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15417/", + "id": 15417, + "name": "Flash Tombenstain Bear", + "site_detail_url": "https://comicvine.gamespot.com/flash-tombenstain-bear/4005-15417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15419/", + "id": 15419, + "name": "Sam Bullit", + "site_detail_url": "https://comicvine.gamespot.com/sam-bullit/4005-15419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15420/", + "id": 15420, + "name": "Croc Strange", + "site_detail_url": "https://comicvine.gamespot.com/croc-strange/4005-15420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15430/", + "id": 15430, + "name": "Black Catfish", + "site_detail_url": "https://comicvine.gamespot.com/black-catfish/4005-15430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15431/", + "id": 15431, + "name": "Bookworm", + "site_detail_url": "https://comicvine.gamespot.com/bookworm/4005-15431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15432/", + "id": 15432, + "name": "Hunch-Razorback Of Notre Dame", + "site_detail_url": "https://comicvine.gamespot.com/hunch-razorback-of-notre-dame/4005-15432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15439/", + "id": 15439, + "name": "Hildago", + "site_detail_url": "https://comicvine.gamespot.com/hildago/4005-15439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15440/", + "id": 15440, + "name": "Juan", + "site_detail_url": "https://comicvine.gamespot.com/juan/4005-15440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15445/", + "id": 15445, + "name": "The Smasher", + "site_detail_url": "https://comicvine.gamespot.com/the-smasher/4005-15445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15446/", + "id": 15446, + "name": "Jill Stacy", + "site_detail_url": "https://comicvine.gamespot.com/jill-stacy/4005-15446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15447/", + "id": 15447, + "name": "Paul Stacy", + "site_detail_url": "https://comicvine.gamespot.com/paul-stacy/4005-15447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15448/", + "id": 15448, + "name": "Robin Vega", + "site_detail_url": "https://comicvine.gamespot.com/robin-vega/4005-15448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15449/", + "id": 15449, + "name": "Razor-Fist", + "site_detail_url": "https://comicvine.gamespot.com/razor-fist/4005-15449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15451/", + "id": 15451, + "name": "SHOC", + "site_detail_url": "https://comicvine.gamespot.com/shoc/4005-15451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15452/", + "id": 15452, + "name": "Crown", + "site_detail_url": "https://comicvine.gamespot.com/crown/4005-15452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15453/", + "id": 15453, + "name": "Dr. Andrea Janson", + "site_detail_url": "https://comicvine.gamespot.com/dr-andrea-janson/4005-15453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15459/", + "id": 15459, + "name": "Nardi", + "site_detail_url": "https://comicvine.gamespot.com/nardi/4005-15459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15460/", + "id": 15460, + "name": "Andros", + "site_detail_url": "https://comicvine.gamespot.com/andros/4005-15460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15461/", + "id": 15461, + "name": "Bramer", + "site_detail_url": "https://comicvine.gamespot.com/bramer/4005-15461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15463/", + "id": 15463, + "name": "Poison", + "site_detail_url": "https://comicvine.gamespot.com/poison/4005-15463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15469/", + "id": 15469, + "name": "Judas Traveller", + "site_detail_url": "https://comicvine.gamespot.com/judas-traveller/4005-15469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15470/", + "id": 15470, + "name": "Courtney Cross", + "site_detail_url": "https://comicvine.gamespot.com/courtney-cross/4005-15470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15471/", + "id": 15471, + "name": "Doctor Caputo", + "site_detail_url": "https://comicvine.gamespot.com/doctor-caputo/4005-15471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15473/", + "id": 15473, + "name": "Gregor", + "site_detail_url": "https://comicvine.gamespot.com/gregor/4005-15473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15474/", + "id": 15474, + "name": "Mr. Thorpe", + "site_detail_url": "https://comicvine.gamespot.com/mr-thorpe/4005-15474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15480/", + "id": 15480, + "name": "Crusher Hogan", + "site_detail_url": "https://comicvine.gamespot.com/crusher-hogan/4005-15480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15483/", + "id": 15483, + "name": "Oscar McDonnell", + "site_detail_url": "https://comicvine.gamespot.com/oscar-mcdonnell/4005-15483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15485/", + "id": 15485, + "name": "Solo", + "site_detail_url": "https://comicvine.gamespot.com/solo/4005-15485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15486/", + "id": 15486, + "name": "Masterblaster", + "site_detail_url": "https://comicvine.gamespot.com/masterblaster/4005-15486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15488/", + "id": 15488, + "name": "Keever", + "site_detail_url": "https://comicvine.gamespot.com/keever/4005-15488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15490/", + "id": 15490, + "name": "Melvin Gooner", + "site_detail_url": "https://comicvine.gamespot.com/melvin-gooner/4005-15490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15491/", + "id": 15491, + "name": "Anna Brooks", + "site_detail_url": "https://comicvine.gamespot.com/anna-brooks/4005-15491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15492/", + "id": 15492, + "name": "Luke Thorpe", + "site_detail_url": "https://comicvine.gamespot.com/luke-thorpe/4005-15492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15493/", + "id": 15493, + "name": "Inspector Krahn", + "site_detail_url": "https://comicvine.gamespot.com/inspector-krahn/4005-15493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15494/", + "id": 15494, + "name": "Calypso", + "site_detail_url": "https://comicvine.gamespot.com/calypso/4005-15494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15495/", + "id": 15495, + "name": "Pyre", + "site_detail_url": "https://comicvine.gamespot.com/pyre/4005-15495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15496/", + "id": 15496, + "name": "Jadoo Gang", + "site_detail_url": "https://comicvine.gamespot.com/jadoo-gang/4005-15496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15503/", + "id": 15503, + "name": "Cherub Whirlwind", + "site_detail_url": "https://comicvine.gamespot.com/cherub-whirlwind/4005-15503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15510/", + "id": 15510, + "name": "Charlie Shaddock", + "site_detail_url": "https://comicvine.gamespot.com/charlie-shaddock/4005-15510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15513/", + "id": 15513, + "name": "Amoeboid Robot", + "site_detail_url": "https://comicvine.gamespot.com/amoeboid-robot/4005-15513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15516/", + "id": 15516, + "name": "Jagged Bow", + "site_detail_url": "https://comicvine.gamespot.com/jagged-bow/4005-15516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15517/", + "id": 15517, + "name": "Blood Spider", + "site_detail_url": "https://comicvine.gamespot.com/blood-spider/4005-15517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15520/", + "id": 15520, + "name": "Reignfire", + "site_detail_url": "https://comicvine.gamespot.com/reignfire/4005-15520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15524/", + "id": 15524, + "name": "Martin Strong", + "site_detail_url": "https://comicvine.gamespot.com/martin-strong/4005-15524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15525/", + "id": 15525, + "name": "Neal Proudstar", + "site_detail_url": "https://comicvine.gamespot.com/neal-proudstar/4005-15525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15526/", + "id": 15526, + "name": "Maria Proudstar", + "site_detail_url": "https://comicvine.gamespot.com/maria-proudstar/4005-15526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15527/", + "id": 15527, + "name": "Michael Whitecloud", + "site_detail_url": "https://comicvine.gamespot.com/michael-whitecloud/4005-15527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15529/", + "id": 15529, + "name": "Crule", + "site_detail_url": "https://comicvine.gamespot.com/crule/4005-15529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15531/", + "id": 15531, + "name": "Zeitgeist", + "site_detail_url": "https://comicvine.gamespot.com/zeitgeist/4005-15531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15532/", + "id": 15532, + "name": "Battering Ram", + "site_detail_url": "https://comicvine.gamespot.com/battering-ram/4005-15532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15533/", + "id": 15533, + "name": "Plazm", + "site_detail_url": "https://comicvine.gamespot.com/plazm/4005-15533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15534/", + "id": 15534, + "name": "Gin Genie", + "site_detail_url": "https://comicvine.gamespot.com/gin-genie/4005-15534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15535/", + "id": 15535, + "name": "La Nuit", + "site_detail_url": "https://comicvine.gamespot.com/la-nuit/4005-15535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15536/", + "id": 15536, + "name": "Sluk", + "site_detail_url": "https://comicvine.gamespot.com/sluk/4005-15536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15537/", + "id": 15537, + "name": "Coach", + "site_detail_url": "https://comicvine.gamespot.com/coach/4005-15537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15539/", + "id": 15539, + "name": "Valentina Rychenko", + "site_detail_url": "https://comicvine.gamespot.com/valentina-rychenko/4005-15539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15540/", + "id": 15540, + "name": "Constantin Racal", + "site_detail_url": "https://comicvine.gamespot.com/constantin-racal/4005-15540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15542/", + "id": 15542, + "name": "Warborgs", + "site_detail_url": "https://comicvine.gamespot.com/warborgs/4005-15542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15548/", + "id": 15548, + "name": "Dr. Niles Roman", + "site_detail_url": "https://comicvine.gamespot.com/dr-niles-roman/4005-15548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15550/", + "id": 15550, + "name": "Meatspores", + "site_detail_url": "https://comicvine.gamespot.com/meatspores/4005-15550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15551/", + "id": 15551, + "name": "Risque", + "site_detail_url": "https://comicvine.gamespot.com/risque/4005-15551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15552/", + "id": 15552, + "name": "Demon Bear", + "site_detail_url": "https://comicvine.gamespot.com/demon-bear/4005-15552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15553/", + "id": 15553, + "name": "Arcadia", + "site_detail_url": "https://comicvine.gamespot.com/arcadia/4005-15553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15554/", + "id": 15554, + "name": "Ulysses Dragonblood", + "site_detail_url": "https://comicvine.gamespot.com/ulysses-dragonblood/4005-15554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15555/", + "id": 15555, + "name": "Sledge", + "site_detail_url": "https://comicvine.gamespot.com/sledge/4005-15555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15556/", + "id": 15556, + "name": "Veeg", + "site_detail_url": "https://comicvine.gamespot.com/veeg/4005-15556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15557/", + "id": 15557, + "name": "Odysseus Indigo", + "site_detail_url": "https://comicvine.gamespot.com/odysseus-indigo/4005-15557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15558/", + "id": 15558, + "name": "Segismund Joshua", + "site_detail_url": "https://comicvine.gamespot.com/segismund-joshua/4005-15558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15559/", + "id": 15559, + "name": "Niral Chandra", + "site_detail_url": "https://comicvine.gamespot.com/niral-chandra/4005-15559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15560/", + "id": 15560, + "name": "Argos The Hunter", + "site_detail_url": "https://comicvine.gamespot.com/argos-the-hunter/4005-15560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15561/", + "id": 15561, + "name": "Zona", + "site_detail_url": "https://comicvine.gamespot.com/zona/4005-15561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15562/", + "id": 15562, + "name": "Stranglehold", + "site_detail_url": "https://comicvine.gamespot.com/stranglehold/4005-15562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15563/", + "id": 15563, + "name": "Tyler Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/tyler-guthrie/4005-15563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15564/", + "id": 15564, + "name": "Lucas Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/lucas-guthrie/4005-15564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15565/", + "id": 15565, + "name": "Celestial Golem", + "site_detail_url": "https://comicvine.gamespot.com/celestial-golem/4005-15565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15566/", + "id": 15566, + "name": "Archimedes Fogg", + "site_detail_url": "https://comicvine.gamespot.com/archimedes-fogg/4005-15566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15567/", + "id": 15567, + "name": "Delphi", + "site_detail_url": "https://comicvine.gamespot.com/delphi/4005-15567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15569/", + "id": 15569, + "name": "Astarte", + "site_detail_url": "https://comicvine.gamespot.com/astarte/4005-15569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15570/", + "id": 15570, + "name": "Electryon", + "site_detail_url": "https://comicvine.gamespot.com/electryon/4005-15570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15571/", + "id": 15571, + "name": "Halloween Jack", + "site_detail_url": "https://comicvine.gamespot.com/halloween-jack/4005-15571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15573/", + "id": 15573, + "name": "Armageddon Man", + "site_detail_url": "https://comicvine.gamespot.com/armageddon-man/4005-15573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15574/", + "id": 15574, + "name": "Paradigm", + "site_detail_url": "https://comicvine.gamespot.com/paradigm/4005-15574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15575/", + "id": 15575, + "name": "Switch", + "site_detail_url": "https://comicvine.gamespot.com/switch/4005-15575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15576/", + "id": 15576, + "name": "King Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/king-bedlam/4005-15576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15577/", + "id": 15577, + "name": "Pandemonia", + "site_detail_url": "https://comicvine.gamespot.com/pandemonia/4005-15577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15578/", + "id": 15578, + "name": "Locus", + "site_detail_url": "https://comicvine.gamespot.com/locus/4005-15578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15580/", + "id": 15580, + "name": "Jinku", + "site_detail_url": "https://comicvine.gamespot.com/jinku/4005-15580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15581/", + "id": 15581, + "name": "Short Circuit", + "site_detail_url": "https://comicvine.gamespot.com/short-circuit/4005-15581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15582/", + "id": 15582, + "name": "Snakeskin", + "site_detail_url": "https://comicvine.gamespot.com/snakeskin/4005-15582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15584/", + "id": 15584, + "name": "Edwin Martynec", + "site_detail_url": "https://comicvine.gamespot.com/edwin-martynec/4005-15584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15585/", + "id": 15585, + "name": "Richie Alegria", + "site_detail_url": "https://comicvine.gamespot.com/richie-alegria/4005-15585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15586/", + "id": 15586, + "name": "Jonas Blackshear", + "site_detail_url": "https://comicvine.gamespot.com/jonas-blackshear/4005-15586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15587/", + "id": 15587, + "name": "Gryaznova", + "site_detail_url": "https://comicvine.gamespot.com/gryaznova/4005-15587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15590/", + "id": 15590, + "name": "Dragoness", + "site_detail_url": "https://comicvine.gamespot.com/dragoness/4005-15590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15592/", + "id": 15592, + "name": "Dimitri Fortunov", + "site_detail_url": "https://comicvine.gamespot.com/dimitri-fortunov/4005-15592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15593/", + "id": 15593, + "name": "Vladimir Fortunov", + "site_detail_url": "https://comicvine.gamespot.com/vladimir-fortunov/4005-15593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15596/", + "id": 15596, + "name": "Clear-Cut", + "site_detail_url": "https://comicvine.gamespot.com/clear-cut/4005-15596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15598/", + "id": 15598, + "name": "Mindmeld", + "site_detail_url": "https://comicvine.gamespot.com/mindmeld/4005-15598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15601/", + "id": 15601, + "name": "Jeremy Stevens", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-stevens/4005-15601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15603/", + "id": 15603, + "name": "Dr. Weisman", + "site_detail_url": "https://comicvine.gamespot.com/dr-weisman/4005-15603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15604/", + "id": 15604, + "name": "Jose Hidalgo", + "site_detail_url": "https://comicvine.gamespot.com/jose-hidalgo/4005-15604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15605/", + "id": 15605, + "name": "Saul", + "site_detail_url": "https://comicvine.gamespot.com/saul/4005-15605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15606/", + "id": 15606, + "name": "Windsong", + "site_detail_url": "https://comicvine.gamespot.com/windsong/4005-15606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15610/", + "id": 15610, + "name": "Sluggo", + "site_detail_url": "https://comicvine.gamespot.com/sluggo/4005-15610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15612/", + "id": 15612, + "name": "Eye Killers", + "site_detail_url": "https://comicvine.gamespot.com/eye-killers/4005-15612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15614/", + "id": 15614, + "name": "Cardiac", + "site_detail_url": "https://comicvine.gamespot.com/cardiac/4005-15614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15615/", + "id": 15615, + "name": "Gunther Stein", + "site_detail_url": "https://comicvine.gamespot.com/gunther-stein/4005-15615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15616/", + "id": 15616, + "name": "Joe Faulkner", + "site_detail_url": "https://comicvine.gamespot.com/joe-faulkner/4005-15616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15621/", + "id": 15621, + "name": "The Director", + "site_detail_url": "https://comicvine.gamespot.com/the-director/4005-15621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15622/", + "id": 15622, + "name": "Brent Jackson", + "site_detail_url": "https://comicvine.gamespot.com/brent-jackson/4005-15622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15623/", + "id": 15623, + "name": "Mister X", + "site_detail_url": "https://comicvine.gamespot.com/mister-x/4005-15623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15624/", + "id": 15624, + "name": "Mauvais", + "site_detail_url": "https://comicvine.gamespot.com/mauvais/4005-15624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15627/", + "id": 15627, + "name": "Blok", + "site_detail_url": "https://comicvine.gamespot.com/blok/4005-15627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15629/", + "id": 15629, + "name": "Jae Lo", + "site_detail_url": "https://comicvine.gamespot.com/jae-lo/4005-15629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15631/", + "id": 15631, + "name": "Alison Mongrain", + "site_detail_url": "https://comicvine.gamespot.com/alison-mongrain/4005-15631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15634/", + "id": 15634, + "name": "Lana", + "site_detail_url": "https://comicvine.gamespot.com/lana/4005-15634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15635/", + "id": 15635, + "name": "Zack", + "site_detail_url": "https://comicvine.gamespot.com/zack/4005-15635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15636/", + "id": 15636, + "name": "Bert Gilmore", + "site_detail_url": "https://comicvine.gamespot.com/bert-gilmore/4005-15636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15638/", + "id": 15638, + "name": "Professor Marina Caches", + "site_detail_url": "https://comicvine.gamespot.com/professor-marina-caches/4005-15638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15639/", + "id": 15639, + "name": "Fabian LaMuerto", + "site_detail_url": "https://comicvine.gamespot.com/fabian-lamuerto/4005-15639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15643/", + "id": 15643, + "name": "Shantal", + "site_detail_url": "https://comicvine.gamespot.com/shantal/4005-15643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15644/", + "id": 15644, + "name": "Billy Walters", + "site_detail_url": "https://comicvine.gamespot.com/billy-walters/4005-15644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15647/", + "id": 15647, + "name": "James Hewlitt", + "site_detail_url": "https://comicvine.gamespot.com/james-hewlitt/4005-15647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15648/", + "id": 15648, + "name": "Dante Rigoletto", + "site_detail_url": "https://comicvine.gamespot.com/dante-rigoletto/4005-15648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15649/", + "id": 15649, + "name": "Lady Octopus", + "site_detail_url": "https://comicvine.gamespot.com/lady-octopus/4005-15649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15650/", + "id": 15650, + "name": "Madame Qwa", + "site_detail_url": "https://comicvine.gamespot.com/madame-qwa/4005-15650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15651/", + "id": 15651, + "name": "Professor Howard", + "site_detail_url": "https://comicvine.gamespot.com/professor-howard/4005-15651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15652/", + "id": 15652, + "name": "Doctor Reandeau", + "site_detail_url": "https://comicvine.gamespot.com/doctor-reandeau/4005-15652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15653/", + "id": 15653, + "name": "Merideth Campbell", + "site_detail_url": "https://comicvine.gamespot.com/merideth-campbell/4005-15653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15654/", + "id": 15654, + "name": "Yano", + "site_detail_url": "https://comicvine.gamespot.com/yano/4005-15654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15655/", + "id": 15655, + "name": "Detective Lewis", + "site_detail_url": "https://comicvine.gamespot.com/detective-lewis/4005-15655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15656/", + "id": 15656, + "name": "Dragonfly", + "site_detail_url": "https://comicvine.gamespot.com/dragonfly/4005-15656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15657/", + "id": 15657, + "name": "Karsano", + "site_detail_url": "https://comicvine.gamespot.com/karsano/4005-15657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15659/", + "id": 15659, + "name": "El Uno", + "site_detail_url": "https://comicvine.gamespot.com/el-uno/4005-15659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15660/", + "id": 15660, + "name": "Sergeant Tork", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-tork/4005-15660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15661/", + "id": 15661, + "name": "Doctor Folsome", + "site_detail_url": "https://comicvine.gamespot.com/doctor-folsome/4005-15661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15662/", + "id": 15662, + "name": "Armada", + "site_detail_url": "https://comicvine.gamespot.com/armada/4005-15662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15663/", + "id": 15663, + "name": "Officer Dickerson", + "site_detail_url": "https://comicvine.gamespot.com/officer-dickerson/4005-15663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15664/", + "id": 15664, + "name": "James Johnsmeyer", + "site_detail_url": "https://comicvine.gamespot.com/james-johnsmeyer/4005-15664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15665/", + "id": 15665, + "name": "Aminique", + "site_detail_url": "https://comicvine.gamespot.com/aminique/4005-15665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15668/", + "id": 15668, + "name": "Annex", + "site_detail_url": "https://comicvine.gamespot.com/annex/4005-15668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15669/", + "id": 15669, + "name": "Dr. Hillman Barto", + "site_detail_url": "https://comicvine.gamespot.com/dr-hillman-barto/4005-15669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15670/", + "id": 15670, + "name": "Davey Dunson", + "site_detail_url": "https://comicvine.gamespot.com/davey-dunson/4005-15670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15671/", + "id": 15671, + "name": "Abner Dunson", + "site_detail_url": "https://comicvine.gamespot.com/abner-dunson/4005-15671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15672/", + "id": 15672, + "name": "Gen. Colan Powell", + "site_detail_url": "https://comicvine.gamespot.com/gen-colan-powell/4005-15672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15673/", + "id": 15673, + "name": "Geldoff", + "site_detail_url": "https://comicvine.gamespot.com/geldoff/4005-15673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15675/", + "id": 15675, + "name": "Sister Dream", + "site_detail_url": "https://comicvine.gamespot.com/sister-dream/4005-15675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15677/", + "id": 15677, + "name": "Samson Rourke", + "site_detail_url": "https://comicvine.gamespot.com/samson-rourke/4005-15677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15683/", + "id": 15683, + "name": "Chthon", + "site_detail_url": "https://comicvine.gamespot.com/chthon/4005-15683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15689/", + "id": 15689, + "name": "Albert", + "site_detail_url": "https://comicvine.gamespot.com/albert/4005-15689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15690/", + "id": 15690, + "name": "Elsie Dee", + "site_detail_url": "https://comicvine.gamespot.com/elsie-dee/4005-15690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15691/", + "id": 15691, + "name": "Abscissa", + "site_detail_url": "https://comicvine.gamespot.com/abscissa/4005-15691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15692/", + "id": 15692, + "name": "Hunter In Darkness", + "site_detail_url": "https://comicvine.gamespot.com/hunter-in-darkness/4005-15692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15693/", + "id": 15693, + "name": "Plasma Wraith", + "site_detail_url": "https://comicvine.gamespot.com/plasma-wraith/4005-15693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15694/", + "id": 15694, + "name": "Lord Shingen", + "site_detail_url": "https://comicvine.gamespot.com/lord-shingen/4005-15694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15696/", + "id": 15696, + "name": "Silver Fox", + "site_detail_url": "https://comicvine.gamespot.com/silver-fox/4005-15696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15697/", + "id": 15697, + "name": "Carol Hines", + "site_detail_url": "https://comicvine.gamespot.com/carol-hines/4005-15697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15702/", + "id": 15702, + "name": "Emmy Doolin", + "site_detail_url": "https://comicvine.gamespot.com/emmy-doolin/4005-15702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15703/", + "id": 15703, + "name": "Ronald Parvenue", + "site_detail_url": "https://comicvine.gamespot.com/ronald-parvenue/4005-15703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15704/", + "id": 15704, + "name": "Sgt. Doolin", + "site_detail_url": "https://comicvine.gamespot.com/sgt-doolin/4005-15704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15705/", + "id": 15705, + "name": "Linus Dorfman", + "site_detail_url": "https://comicvine.gamespot.com/linus-dorfman/4005-15705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15706/", + "id": 15706, + "name": "Molokai", + "site_detail_url": "https://comicvine.gamespot.com/molokai/4005-15706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15707/", + "id": 15707, + "name": "Reno", + "site_detail_url": "https://comicvine.gamespot.com/reno/4005-15707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15708/", + "id": 15708, + "name": "Jocko", + "site_detail_url": "https://comicvine.gamespot.com/jocko/4005-15708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15709/", + "id": 15709, + "name": "Sally", + "site_detail_url": "https://comicvine.gamespot.com/sally/4005-15709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15710/", + "id": 15710, + "name": "Reese", + "site_detail_url": "https://comicvine.gamespot.com/reese/4005-15710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15713/", + "id": 15713, + "name": "Archie Corrigan", + "site_detail_url": "https://comicvine.gamespot.com/archie-corrigan/4005-15713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15714/", + "id": 15714, + "name": "Reiko", + "site_detail_url": "https://comicvine.gamespot.com/reiko/4005-15714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15715/", + "id": 15715, + "name": "Dr. Malheur", + "site_detail_url": "https://comicvine.gamespot.com/dr-malheur/4005-15715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15717/", + "id": 15717, + "name": "Dragonhead", + "site_detail_url": "https://comicvine.gamespot.com/dragonhead/4005-15717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15718/", + "id": 15718, + "name": "Seven", + "site_detail_url": "https://comicvine.gamespot.com/seven/4005-15718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15720/", + "id": 15720, + "name": "Dai-Kumo", + "site_detail_url": "https://comicvine.gamespot.com/dai-kumo/4005-15720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15721/", + "id": 15721, + "name": "Eleven", + "site_detail_url": "https://comicvine.gamespot.com/eleven/4005-15721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15722/", + "id": 15722, + "name": "Pinocchio Robot", + "site_detail_url": "https://comicvine.gamespot.com/pinocchio-robot/4005-15722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15723/", + "id": 15723, + "name": "Lindsay McCabe", + "site_detail_url": "https://comicvine.gamespot.com/lindsay-mccabe/4005-15723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15724/", + "id": 15724, + "name": "Bando Saburo", + "site_detail_url": "https://comicvine.gamespot.com/bando-saburo/4005-15724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15725/", + "id": 15725, + "name": "Gene Claymore", + "site_detail_url": "https://comicvine.gamespot.com/gene-claymore/4005-15725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15726/", + "id": 15726, + "name": "Masaki Weston", + "site_detail_url": "https://comicvine.gamespot.com/masaki-weston/4005-15726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15727/", + "id": 15727, + "name": "Snow Queen", + "site_detail_url": "https://comicvine.gamespot.com/snow-queen/4005-15727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15728/", + "id": 15728, + "name": "Geist", + "site_detail_url": "https://comicvine.gamespot.com/geist/4005-15728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15729/", + "id": 15729, + "name": "La Bandera", + "site_detail_url": "https://comicvine.gamespot.com/la-bandera/4005-15729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15730/", + "id": 15730, + "name": "Sister Salvation", + "site_detail_url": "https://comicvine.gamespot.com/sister-salvation/4005-15730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15731/", + "id": 15731, + "name": "Roughouse", + "site_detail_url": "https://comicvine.gamespot.com/roughouse/4005-15731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15732/", + "id": 15732, + "name": "Spore", + "site_detail_url": "https://comicvine.gamespot.com/spore/4005-15732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15733/", + "id": 15733, + "name": "Felix Caridad", + "site_detail_url": "https://comicvine.gamespot.com/felix-caridad/4005-15733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15734/", + "id": 15734, + "name": "Bloodscream", + "site_detail_url": "https://comicvine.gamespot.com/bloodscream/4005-15734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15736/", + "id": 15736, + "name": "Burt Corrigan", + "site_detail_url": "https://comicvine.gamespot.com/burt-corrigan/4005-15736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15737/", + "id": 15737, + "name": "Johann", + "site_detail_url": "https://comicvine.gamespot.com/johann/4005-15737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15741/", + "id": 15741, + "name": "Hardcase", + "site_detail_url": "https://comicvine.gamespot.com/hardcase/4005-15741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15743/", + "id": 15743, + "name": "Banapar Khan", + "site_detail_url": "https://comicvine.gamespot.com/banapar-khan/4005-15743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15777/", + "id": 15777, + "name": "Chronarch", + "site_detail_url": "https://comicvine.gamespot.com/chronarch/4005-15777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15778/", + "id": 15778, + "name": "Gaea", + "site_detail_url": "https://comicvine.gamespot.com/gaea/4005-15778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15779/", + "id": 15779, + "name": "Attuma", + "site_detail_url": "https://comicvine.gamespot.com/attuma/4005-15779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15781/", + "id": 15781, + "name": "Piranha", + "site_detail_url": "https://comicvine.gamespot.com/piranha/4005-15781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15783/", + "id": 15783, + "name": "Warlord Seth", + "site_detail_url": "https://comicvine.gamespot.com/warlord-seth/4005-15783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15784/", + "id": 15784, + "name": "Andromeda", + "site_detail_url": "https://comicvine.gamespot.com/andromeda/4005-15784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15785/", + "id": 15785, + "name": "Slab", + "site_detail_url": "https://comicvine.gamespot.com/slab/4005-15785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15786/", + "id": 15786, + "name": "Hairbag", + "site_detail_url": "https://comicvine.gamespot.com/hairbag/4005-15786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15810/", + "id": 15810, + "name": "Prester John", + "site_detail_url": "https://comicvine.gamespot.com/prester-john/4005-15810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15899/", + "id": 15899, + "name": "Victoria Escalante", + "site_detail_url": "https://comicvine.gamespot.com/victoria-escalante/4005-15899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15900/", + "id": 15900, + "name": "Alcalde", + "site_detail_url": "https://comicvine.gamespot.com/alcalde/4005-15900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15901/", + "id": 15901, + "name": "Sgt Jamie Mendoza", + "site_detail_url": "https://comicvine.gamespot.com/sgt-jamie-mendoza/4005-15901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15902/", + "id": 15902, + "name": "Francesca De La Pena", + "site_detail_url": "https://comicvine.gamespot.com/francesca-de-la-pena/4005-15902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15903/", + "id": 15903, + "name": "Henry Bishop", + "site_detail_url": "https://comicvine.gamespot.com/henry-bishop/4005-15903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15905/", + "id": 15905, + "name": "Edmund Kendall", + "site_detail_url": "https://comicvine.gamespot.com/edmund-kendall/4005-15905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15906/", + "id": 15906, + "name": "Tapiador", + "site_detail_url": "https://comicvine.gamespot.com/tapiador/4005-15906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15907/", + "id": 15907, + "name": "Raphael De La Vega", + "site_detail_url": "https://comicvine.gamespot.com/raphael-de-la-vega/4005-15907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15908/", + "id": 15908, + "name": "Margarita Demadera", + "site_detail_url": "https://comicvine.gamespot.com/margarita-demadera/4005-15908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15909/", + "id": 15909, + "name": "Colonel Mefisto Palomarez", + "site_detail_url": "https://comicvine.gamespot.com/colonel-mefisto-palomarez/4005-15909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15910/", + "id": 15910, + "name": "Franciso Escalante", + "site_detail_url": "https://comicvine.gamespot.com/franciso-escalante/4005-15910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15911/", + "id": 15911, + "name": "Ricardo Cortez", + "site_detail_url": "https://comicvine.gamespot.com/ricardo-cortez/4005-15911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15912/", + "id": 15912, + "name": "Louis Foucard", + "site_detail_url": "https://comicvine.gamespot.com/louis-foucard/4005-15912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15913/", + "id": 15913, + "name": "Brawler", + "site_detail_url": "https://comicvine.gamespot.com/brawler/4005-15913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15914/", + "id": 15914, + "name": "Lorelord", + "site_detail_url": "https://comicvine.gamespot.com/lorelord/4005-15914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15915/", + "id": 15915, + "name": "Master Builder", + "site_detail_url": "https://comicvine.gamespot.com/master-builder/4005-15915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15916/", + "id": 15916, + "name": "Lord Of The Plants", + "site_detail_url": "https://comicvine.gamespot.com/lord-of-the-plants/4005-15916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15917/", + "id": 15917, + "name": "Cornucopia", + "site_detail_url": "https://comicvine.gamespot.com/cornucopia/4005-15917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15918/", + "id": 15918, + "name": "Earth-Mover", + "site_detail_url": "https://comicvine.gamespot.com/earth-mover/4005-15918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15919/", + "id": 15919, + "name": "Beastmaster", + "site_detail_url": "https://comicvine.gamespot.com/beastmaster/4005-15919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15920/", + "id": 15920, + "name": "Pathfinder", + "site_detail_url": "https://comicvine.gamespot.com/pathfinder/4005-15920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15923/", + "id": 15923, + "name": "Bolivar Trask", + "site_detail_url": "https://comicvine.gamespot.com/bolivar-trask/4005-15923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15927/", + "id": 15927, + "name": "Rafael Vega", + "site_detail_url": "https://comicvine.gamespot.com/rafael-vega/4005-15927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15928/", + "id": 15928, + "name": "Wheels Wolinski", + "site_detail_url": "https://comicvine.gamespot.com/wheels-wolinski/4005-15928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15930/", + "id": 15930, + "name": "Inspector Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/inspector-cassidy/4005-15930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15931/", + "id": 15931, + "name": "Malcolm Brown", + "site_detail_url": "https://comicvine.gamespot.com/malcolm-brown/4005-15931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15932/", + "id": 15932, + "name": "Mr Crenshaw", + "site_detail_url": "https://comicvine.gamespot.com/mr-crenshaw/4005-15932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15934/", + "id": 15934, + "name": "Overlord", + "site_detail_url": "https://comicvine.gamespot.com/overlord/4005-15934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15937/", + "id": 15937, + "name": "Gardener", + "site_detail_url": "https://comicvine.gamespot.com/gardener/4005-15937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15941/", + "id": 15941, + "name": "Wolfgang", + "site_detail_url": "https://comicvine.gamespot.com/wolfgang/4005-15941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15947/", + "id": 15947, + "name": "Cold Warrior", + "site_detail_url": "https://comicvine.gamespot.com/cold-warrior/4005-15947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15949/", + "id": 15949, + "name": "Deathtoll", + "site_detail_url": "https://comicvine.gamespot.com/deathtoll/4005-15949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15950/", + "id": 15950, + "name": "General Arul", + "site_detail_url": "https://comicvine.gamespot.com/general-arul/4005-15950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15951/", + "id": 15951, + "name": "Paranoia", + "site_detail_url": "https://comicvine.gamespot.com/paranoia/4005-15951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15952/", + "id": 15952, + "name": "Necromancer", + "site_detail_url": "https://comicvine.gamespot.com/necromancer/4005-15952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15953/", + "id": 15953, + "name": "Mace", + "site_detail_url": "https://comicvine.gamespot.com/mace/4005-15953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15955/", + "id": 15955, + "name": "Beck Underwood", + "site_detail_url": "https://comicvine.gamespot.com/beck-underwood/4005-15955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15957/", + "id": 15957, + "name": "Roland Treece", + "site_detail_url": "https://comicvine.gamespot.com/roland-treece/4005-15957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15958/", + "id": 15958, + "name": "Diggers", + "site_detail_url": "https://comicvine.gamespot.com/diggers/4005-15958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15964/", + "id": 15964, + "name": "Wide Load Annie", + "site_detail_url": "https://comicvine.gamespot.com/wide-load-annie/4005-15964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15965/", + "id": 15965, + "name": "Poppa Wheelie", + "site_detail_url": "https://comicvine.gamespot.com/poppa-wheelie/4005-15965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15967/", + "id": 15967, + "name": "Grab", + "site_detail_url": "https://comicvine.gamespot.com/grab/4005-15967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15968/", + "id": 15968, + "name": "LeGreed", + "site_detail_url": "https://comicvine.gamespot.com/legreed/4005-15968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15970/", + "id": 15970, + "name": "Circuit Breaker", + "site_detail_url": "https://comicvine.gamespot.com/circuit-breaker/4005-15970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15974/", + "id": 15974, + "name": "Lynxana", + "site_detail_url": "https://comicvine.gamespot.com/lynxana/4005-15974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15985/", + "id": 15985, + "name": "NOZone", + "site_detail_url": "https://comicvine.gamespot.com/nozone/4005-15985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15986/", + "id": 15986, + "name": "Major Disaster", + "site_detail_url": "https://comicvine.gamespot.com/major-disaster/4005-15986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15987/", + "id": 15987, + "name": "Headbanger", + "site_detail_url": "https://comicvine.gamespot.com/headbanger/4005-15987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15988/", + "id": 15988, + "name": "Alejandro Forch", + "site_detail_url": "https://comicvine.gamespot.com/alejandro-forch/4005-15988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15989/", + "id": 15989, + "name": "Lugnut", + "site_detail_url": "https://comicvine.gamespot.com/lugnut/4005-15989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15990/", + "id": 15990, + "name": "Dargo Ktor", + "site_detail_url": "https://comicvine.gamespot.com/dargo-ktor/4005-15990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15991/", + "id": 15991, + "name": "Demonstaff", + "site_detail_url": "https://comicvine.gamespot.com/demonstaff/4005-15991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15993/", + "id": 15993, + "name": "Talon", + "site_detail_url": "https://comicvine.gamespot.com/talon/4005-15993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-15994/", + "id": 15994, + "name": "Aleta Ogord", + "site_detail_url": "https://comicvine.gamespot.com/aleta-ogord/4005-15994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16001/", + "id": 16001, + "name": "Tarissa Dyson", + "site_detail_url": "https://comicvine.gamespot.com/tarissa-dyson/4005-16001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16002/", + "id": 16002, + "name": "Danny Dyson", + "site_detail_url": "https://comicvine.gamespot.com/danny-dyson/4005-16002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16007/", + "id": 16007, + "name": "Dr. Peter Silberman", + "site_detail_url": "https://comicvine.gamespot.com/dr-peter-silberman/4005-16007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16008/", + "id": 16008, + "name": "Dr. Miles Bennett Dyson", + "site_detail_url": "https://comicvine.gamespot.com/dr-miles-bennett-dyson/4005-16008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16010/", + "id": 16010, + "name": "Enrique Salceda", + "site_detail_url": "https://comicvine.gamespot.com/enrique-salceda/4005-16010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16012/", + "id": 16012, + "name": "Blythe Dyson", + "site_detail_url": "https://comicvine.gamespot.com/blythe-dyson/4005-16012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16025/", + "id": 16025, + "name": "Dark Rider", + "site_detail_url": "https://comicvine.gamespot.com/dark-rider/4005-16025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16029/", + "id": 16029, + "name": "HYDRA Agent Lance", + "site_detail_url": "https://comicvine.gamespot.com/hydra-agent-lance/4005-16029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16030/", + "id": 16030, + "name": "Phil Carson", + "site_detail_url": "https://comicvine.gamespot.com/phil-carson/4005-16030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16034/", + "id": 16034, + "name": "Mary-Michelle Winderfield", + "site_detail_url": "https://comicvine.gamespot.com/mary-michelle-winderfield/4005-16034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16035/", + "id": 16035, + "name": "Mama Winderfield", + "site_detail_url": "https://comicvine.gamespot.com/mama-winderfield/4005-16035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16036/", + "id": 16036, + "name": "James Winderfield", + "site_detail_url": "https://comicvine.gamespot.com/james-winderfield/4005-16036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16037/", + "id": 16037, + "name": "HYDRA Agent Halstan", + "site_detail_url": "https://comicvine.gamespot.com/hydra-agent-halstan/4005-16037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16038/", + "id": 16038, + "name": "Red Fowler", + "site_detail_url": "https://comicvine.gamespot.com/red-fowler/4005-16038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16040/", + "id": 16040, + "name": "Supreme Hydra", + "site_detail_url": "https://comicvine.gamespot.com/supreme-hydra/4005-16040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16045/", + "id": 16045, + "name": "Luther", + "site_detail_url": "https://comicvine.gamespot.com/luther/4005-16045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16046/", + "id": 16046, + "name": "Otto", + "site_detail_url": "https://comicvine.gamespot.com/otto/4005-16046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16053/", + "id": 16053, + "name": "Jeanette", + "site_detail_url": "https://comicvine.gamespot.com/jeanette/4005-16053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16054/", + "id": 16054, + "name": "Achmed", + "site_detail_url": "https://comicvine.gamespot.com/achmed/4005-16054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16057/", + "id": 16057, + "name": "Dixon Bowie", + "site_detail_url": "https://comicvine.gamespot.com/dixon-bowie/4005-16057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16058/", + "id": 16058, + "name": "Senator Clover", + "site_detail_url": "https://comicvine.gamespot.com/senator-clover/4005-16058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16061/", + "id": 16061, + "name": "Evelyn Barde", + "site_detail_url": "https://comicvine.gamespot.com/evelyn-barde/4005-16061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16062/", + "id": 16062, + "name": "Mr. Barde", + "site_detail_url": "https://comicvine.gamespot.com/mr-barde/4005-16062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16063/", + "id": 16063, + "name": "Mrs. Barde", + "site_detail_url": "https://comicvine.gamespot.com/mrs-barde/4005-16063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16072/", + "id": 16072, + "name": "Megan McLaren", + "site_detail_url": "https://comicvine.gamespot.com/megan-mclaren/4005-16072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16073/", + "id": 16073, + "name": "Raymond Royton", + "site_detail_url": "https://comicvine.gamespot.com/raymond-royton/4005-16073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16074/", + "id": 16074, + "name": "Colonel Gunderson", + "site_detail_url": "https://comicvine.gamespot.com/colonel-gunderson/4005-16074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16075/", + "id": 16075, + "name": "Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/frankenstein/4005-16075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16077/", + "id": 16077, + "name": "Doctor Walston Kraft", + "site_detail_url": "https://comicvine.gamespot.com/doctor-walston-kraft/4005-16077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16079/", + "id": 16079, + "name": "Topaz", + "site_detail_url": "https://comicvine.gamespot.com/topaz/4005-16079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16080/", + "id": 16080, + "name": "Doctor Jacob Weisenthal", + "site_detail_url": "https://comicvine.gamespot.com/doctor-jacob-weisenthal/4005-16080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16081/", + "id": 16081, + "name": "Collette", + "site_detail_url": "https://comicvine.gamespot.com/collette/4005-16081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16083/", + "id": 16083, + "name": "Doctor Susan Weaver", + "site_detail_url": "https://comicvine.gamespot.com/doctor-susan-weaver/4005-16083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16084/", + "id": 16084, + "name": "Dreadknight", + "site_detail_url": "https://comicvine.gamespot.com/dreadknight/4005-16084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16085/", + "id": 16085, + "name": "Molly Verostick", + "site_detail_url": "https://comicvine.gamespot.com/molly-verostick/4005-16085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16086/", + "id": 16086, + "name": "Linden Laswell", + "site_detail_url": "https://comicvine.gamespot.com/linden-laswell/4005-16086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16087/", + "id": 16087, + "name": "Joe Windy", + "site_detail_url": "https://comicvine.gamespot.com/joe-windy/4005-16087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16088/", + "id": 16088, + "name": "Raptar", + "site_detail_url": "https://comicvine.gamespot.com/raptar/4005-16088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16090/", + "id": 16090, + "name": "Doctor Chen", + "site_detail_url": "https://comicvine.gamespot.com/doctor-chen/4005-16090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16091/", + "id": 16091, + "name": "Nolan Morelle", + "site_detail_url": "https://comicvine.gamespot.com/nolan-morelle/4005-16091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16092/", + "id": 16092, + "name": "George Vandergill", + "site_detail_url": "https://comicvine.gamespot.com/george-vandergill/4005-16092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16093/", + "id": 16093, + "name": "D.W. Griffith", + "site_detail_url": "https://comicvine.gamespot.com/dw-griffith/4005-16093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16094/", + "id": 16094, + "name": "Mroht", + "site_detail_url": "https://comicvine.gamespot.com/mroht/4005-16094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16095/", + "id": 16095, + "name": "Marcus Stone", + "site_detail_url": "https://comicvine.gamespot.com/marcus-stone/4005-16095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16096/", + "id": 16096, + "name": "Quartermaster", + "site_detail_url": "https://comicvine.gamespot.com/quartermaster/4005-16096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16097/", + "id": 16097, + "name": "Detective Marcella Cellanos", + "site_detail_url": "https://comicvine.gamespot.com/detective-marcella-cellanos/4005-16097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16098/", + "id": 16098, + "name": "Sean Murphy", + "site_detail_url": "https://comicvine.gamespot.com/sean-murphy/4005-16098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16099/", + "id": 16099, + "name": "Paul Proust", + "site_detail_url": "https://comicvine.gamespot.com/paul-proust/4005-16099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16100/", + "id": 16100, + "name": "Jason Havershaw", + "site_detail_url": "https://comicvine.gamespot.com/jason-havershaw/4005-16100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16101/", + "id": 16101, + "name": "Loop", + "site_detail_url": "https://comicvine.gamespot.com/loop/4005-16101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16102/", + "id": 16102, + "name": "Skull-Jacket", + "site_detail_url": "https://comicvine.gamespot.com/skull-jacket/4005-16102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16103/", + "id": 16103, + "name": "Cole Cooper", + "site_detail_url": "https://comicvine.gamespot.com/cole-cooper/4005-16103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16104/", + "id": 16104, + "name": "Lt. Dan Carr", + "site_detail_url": "https://comicvine.gamespot.com/lt-dan-carr/4005-16104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16105/", + "id": 16105, + "name": "Terror Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/terror-unlimited/4005-16105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16106/", + "id": 16106, + "name": "Rich Gannon", + "site_detail_url": "https://comicvine.gamespot.com/rich-gannon/4005-16106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16107/", + "id": 16107, + "name": "James Kapoztas", + "site_detail_url": "https://comicvine.gamespot.com/james-kapoztas/4005-16107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16108/", + "id": 16108, + "name": "Frankie The Fish", + "site_detail_url": "https://comicvine.gamespot.com/frankie-the-fish/4005-16108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16109/", + "id": 16109, + "name": "Tony Reeves", + "site_detail_url": "https://comicvine.gamespot.com/tony-reeves/4005-16109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16110/", + "id": 16110, + "name": "Razorwire", + "site_detail_url": "https://comicvine.gamespot.com/razorwire/4005-16110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16111/", + "id": 16111, + "name": "Nautilus", + "site_detail_url": "https://comicvine.gamespot.com/nautilus/4005-16111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16112/", + "id": 16112, + "name": "Tony Marcheyk", + "site_detail_url": "https://comicvine.gamespot.com/tony-marcheyk/4005-16112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16113/", + "id": 16113, + "name": "Officer Gagnon", + "site_detail_url": "https://comicvine.gamespot.com/officer-gagnon/4005-16113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16114/", + "id": 16114, + "name": "The Bobster", + "site_detail_url": "https://comicvine.gamespot.com/the-bobster/4005-16114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16115/", + "id": 16115, + "name": "Snake Sanchus", + "site_detail_url": "https://comicvine.gamespot.com/snake-sanchus/4005-16115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16116/", + "id": 16116, + "name": "Marty Reeves", + "site_detail_url": "https://comicvine.gamespot.com/marty-reeves/4005-16116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16117/", + "id": 16117, + "name": "Pyllar", + "site_detail_url": "https://comicvine.gamespot.com/pyllar/4005-16117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16119/", + "id": 16119, + "name": "Nico", + "site_detail_url": "https://comicvine.gamespot.com/nico/4005-16119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16120/", + "id": 16120, + "name": "Guy Jones", + "site_detail_url": "https://comicvine.gamespot.com/guy-jones/4005-16120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16121/", + "id": 16121, + "name": "Dilbert Trilby", + "site_detail_url": "https://comicvine.gamespot.com/dilbert-trilby/4005-16121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16122/", + "id": 16122, + "name": "Torbert Octavius", + "site_detail_url": "https://comicvine.gamespot.com/torbert-octavius/4005-16122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16123/", + "id": 16123, + "name": "Mary Octavius", + "site_detail_url": "https://comicvine.gamespot.com/mary-octavius/4005-16123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16124/", + "id": 16124, + "name": "Mary Alice Anders", + "site_detail_url": "https://comicvine.gamespot.com/mary-alice-anders/4005-16124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16125/", + "id": 16125, + "name": "Sibercat", + "site_detail_url": "https://comicvine.gamespot.com/sibercat/4005-16125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16126/", + "id": 16126, + "name": "Lenny Flynn", + "site_detail_url": "https://comicvine.gamespot.com/lenny-flynn/4005-16126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16127/", + "id": 16127, + "name": "Cedric Forrester", + "site_detail_url": "https://comicvine.gamespot.com/cedric-forrester/4005-16127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16128/", + "id": 16128, + "name": "Zsaji", + "site_detail_url": "https://comicvine.gamespot.com/zsaji/4005-16128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16129/", + "id": 16129, + "name": "Ren-Tech", + "site_detail_url": "https://comicvine.gamespot.com/ren-tech/4005-16129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16131/", + "id": 16131, + "name": "Hannah Calkins", + "site_detail_url": "https://comicvine.gamespot.com/hannah-calkins/4005-16131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16134/", + "id": 16134, + "name": "AC-DC", + "site_detail_url": "https://comicvine.gamespot.com/ac-dc/4005-16134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16138/", + "id": 16138, + "name": "Ekak", + "site_detail_url": "https://comicvine.gamespot.com/ekak/4005-16138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16155/", + "id": 16155, + "name": "Peculiar Purple Pieman Of Porcupine Peak", + "site_detail_url": "https://comicvine.gamespot.com/peculiar-purple-pieman-of-porcupine-peak/4005-16155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16156/", + "id": 16156, + "name": "Raisin Cane", + "site_detail_url": "https://comicvine.gamespot.com/raisin-cane/4005-16156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16157/", + "id": 16157, + "name": "Apricot", + "site_detail_url": "https://comicvine.gamespot.com/apricot/4005-16157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16159/", + "id": 16159, + "name": "Custard", + "site_detail_url": "https://comicvine.gamespot.com/custard/4005-16159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16160/", + "id": 16160, + "name": "Durt", + "site_detail_url": "https://comicvine.gamespot.com/durt/4005-16160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16161/", + "id": 16161, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4005-16161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16164/", + "id": 16164, + "name": "Emperor Palpatine", + "site_detail_url": "https://comicvine.gamespot.com/emperor-palpatine/4005-16164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16165/", + "id": 16165, + "name": "Nien Nunb", + "site_detail_url": "https://comicvine.gamespot.com/nien-nunb/4005-16165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16168/", + "id": 16168, + "name": "Admiral Ackbar", + "site_detail_url": "https://comicvine.gamespot.com/admiral-ackbar/4005-16168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16170/", + "id": 16170, + "name": "Logray", + "site_detail_url": "https://comicvine.gamespot.com/logray/4005-16170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16174/", + "id": 16174, + "name": "Mon Mothma", + "site_detail_url": "https://comicvine.gamespot.com/mon-mothma/4005-16174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16179/", + "id": 16179, + "name": "Imperial Commander", + "site_detail_url": "https://comicvine.gamespot.com/imperial-commander/4005-16179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16187/", + "id": 16187, + "name": "Ree-Yees", + "site_detail_url": "https://comicvine.gamespot.com/ree-yees/4005-16187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16189/", + "id": 16189, + "name": "Rancor", + "site_detail_url": "https://comicvine.gamespot.com/rancor/4005-16189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16196/", + "id": 16196, + "name": "Dan Jones", + "site_detail_url": "https://comicvine.gamespot.com/dan-jones/4005-16196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16197/", + "id": 16197, + "name": "Julia Carpenter", + "site_detail_url": "https://comicvine.gamespot.com/julia-carpenter/4005-16197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16198/", + "id": 16198, + "name": "Oversize", + "site_detail_url": "https://comicvine.gamespot.com/oversize/4005-16198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16199/", + "id": 16199, + "name": "Ambush", + "site_detail_url": "https://comicvine.gamespot.com/ambush/4005-16199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16200/", + "id": 16200, + "name": "Fire-Fight", + "site_detail_url": "https://comicvine.gamespot.com/fire-fight/4005-16200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16201/", + "id": 16201, + "name": "Mirrorshade", + "site_detail_url": "https://comicvine.gamespot.com/mirrorshade/4005-16201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16203/", + "id": 16203, + "name": "Dragunov", + "site_detail_url": "https://comicvine.gamespot.com/dragunov/4005-16203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16205/", + "id": 16205, + "name": "Damage", + "site_detail_url": "https://comicvine.gamespot.com/damage/4005-16205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16207/", + "id": 16207, + "name": "Screech", + "site_detail_url": "https://comicvine.gamespot.com/screech/4005-16207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16208/", + "id": 16208, + "name": "Homo Arachnis", + "site_detail_url": "https://comicvine.gamespot.com/homo-arachnis/4005-16208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16210/", + "id": 16210, + "name": "Sneak-Thief", + "site_detail_url": "https://comicvine.gamespot.com/sneak-thief/4005-16210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16211/", + "id": 16211, + "name": "Spoiler", + "site_detail_url": "https://comicvine.gamespot.com/spoiler/4005-16211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16212/", + "id": 16212, + "name": "Styx", + "site_detail_url": "https://comicvine.gamespot.com/styx/4005-16212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16220/", + "id": 16220, + "name": "Thnat", + "site_detail_url": "https://comicvine.gamespot.com/thnat/4005-16220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16223/", + "id": 16223, + "name": "Zunna", + "site_detail_url": "https://comicvine.gamespot.com/zunna/4005-16223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16224/", + "id": 16224, + "name": "Caliph Abu-Ben Ar", + "site_detail_url": "https://comicvine.gamespot.com/caliph-abu-ben-ar/4005-16224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16225/", + "id": 16225, + "name": "Ben Allardine", + "site_detail_url": "https://comicvine.gamespot.com/ben-allardine/4005-16225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16226/", + "id": 16226, + "name": "Jack Hollinster", + "site_detail_url": "https://comicvine.gamespot.com/jack-hollinster/4005-16226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16228/", + "id": 16228, + "name": "Captain Terror", + "site_detail_url": "https://comicvine.gamespot.com/captain-terror/4005-16228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16230/", + "id": 16230, + "name": "Cygnus", + "site_detail_url": "https://comicvine.gamespot.com/cygnus/4005-16230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16231/", + "id": 16231, + "name": "Deathstorm", + "site_detail_url": "https://comicvine.gamespot.com/deathstorm/4005-16231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16232/", + "id": 16232, + "name": "Sledge Hammer", + "site_detail_url": "https://comicvine.gamespot.com/sledge-hammer/4005-16232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16233/", + "id": 16233, + "name": "Captain Trunk", + "site_detail_url": "https://comicvine.gamespot.com/captain-trunk/4005-16233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16234/", + "id": 16234, + "name": "Tom Rosetta", + "site_detail_url": "https://comicvine.gamespot.com/tom-rosetta/4005-16234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16235/", + "id": 16235, + "name": "Dori Doreau", + "site_detail_url": "https://comicvine.gamespot.com/dori-doreau/4005-16235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16236/", + "id": 16236, + "name": "Lord Mandragon", + "site_detail_url": "https://comicvine.gamespot.com/lord-mandragon/4005-16236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16238/", + "id": 16238, + "name": "Satana Knight", + "site_detail_url": "https://comicvine.gamespot.com/satana-knight/4005-16238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16239/", + "id": 16239, + "name": "Vincent Van Gore", + "site_detail_url": "https://comicvine.gamespot.com/vincent-van-gore/4005-16239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16260/", + "id": 16260, + "name": "Major Sarigar", + "site_detail_url": "https://comicvine.gamespot.com/major-sarigar/4005-16260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16261/", + "id": 16261, + "name": "Skip", + "site_detail_url": "https://comicvine.gamespot.com/skip/4005-16261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16262/", + "id": 16262, + "name": "Mark Bittner", + "site_detail_url": "https://comicvine.gamespot.com/mark-bittner/4005-16262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16263/", + "id": 16263, + "name": "Gornan The Bar-B-Q-Barian", + "site_detail_url": "https://comicvine.gamespot.com/gornan-the-bar-b-q-barian/4005-16263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16265/", + "id": 16265, + "name": "Shumphrey Bogart", + "site_detail_url": "https://comicvine.gamespot.com/shumphrey-bogart/4005-16265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16266/", + "id": 16266, + "name": "Fryer Tuck", + "site_detail_url": "https://comicvine.gamespot.com/fryer-tuck/4005-16266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16267/", + "id": 16267, + "name": "Maid Marryme", + "site_detail_url": "https://comicvine.gamespot.com/maid-marryme/4005-16267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16270/", + "id": 16270, + "name": "Psych-Major", + "site_detail_url": "https://comicvine.gamespot.com/psych-major/4005-16270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16271/", + "id": 16271, + "name": "Nightcaller", + "site_detail_url": "https://comicvine.gamespot.com/nightcaller/4005-16271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16272/", + "id": 16272, + "name": "Professor Charles Xylophone", + "site_detail_url": "https://comicvine.gamespot.com/professor-charles-xylophone/4005-16272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16273/", + "id": 16273, + "name": "Haagen-Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/haagen-dazzler/4005-16273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16274/", + "id": 16274, + "name": "Magmeato", + "site_detail_url": "https://comicvine.gamespot.com/magmeato/4005-16274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16275/", + "id": 16275, + "name": "Emma DeFrost", + "site_detail_url": "https://comicvine.gamespot.com/emma-defrost/4005-16275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16276/", + "id": 16276, + "name": "Doc Cabbage", + "site_detail_url": "https://comicvine.gamespot.com/doc-cabbage/4005-16276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16278/", + "id": 16278, + "name": "Doctor Whozonfirst", + "site_detail_url": "https://comicvine.gamespot.com/doctor-whozonfirst/4005-16278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16279/", + "id": 16279, + "name": "Swap Thing", + "site_detail_url": "https://comicvine.gamespot.com/swap-thing/4005-16279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16280/", + "id": 16280, + "name": "Judge Bredd", + "site_detail_url": "https://comicvine.gamespot.com/judge-bredd/4005-16280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16281/", + "id": 16281, + "name": "Judge Hamderson", + "site_detail_url": "https://comicvine.gamespot.com/judge-hamderson/4005-16281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16282/", + "id": 16282, + "name": "Lucky", + "site_detail_url": "https://comicvine.gamespot.com/lucky/4005-16282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16284/", + "id": 16284, + "name": "Jella", + "site_detail_url": "https://comicvine.gamespot.com/jella/4005-16284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16285/", + "id": 16285, + "name": "King Tut-Shum-Kamen", + "site_detail_url": "https://comicvine.gamespot.com/king-tut-shum-kamen/4005-16285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16286/", + "id": 16286, + "name": "Honest Herb", + "site_detail_url": "https://comicvine.gamespot.com/honest-herb/4005-16286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16287/", + "id": 16287, + "name": "Melmackie Gleason", + "site_detail_url": "https://comicvine.gamespot.com/melmackie-gleason/4005-16287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16289/", + "id": 16289, + "name": "King Alfur", + "site_detail_url": "https://comicvine.gamespot.com/king-alfur/4005-16289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16290/", + "id": 16290, + "name": "Marlin", + "site_detail_url": "https://comicvine.gamespot.com/marlin/4005-16290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16291/", + "id": 16291, + "name": "Gueneveal", + "site_detail_url": "https://comicvine.gamespot.com/gueneveal/4005-16291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16292/", + "id": 16292, + "name": "Sir Enhancelot", + "site_detail_url": "https://comicvine.gamespot.com/sir-enhancelot/4005-16292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16293/", + "id": 16293, + "name": "Shumlock Holmes", + "site_detail_url": "https://comicvine.gamespot.com/shumlock-holmes/4005-16293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16300/", + "id": 16300, + "name": "Kitchen Witch", + "site_detail_url": "https://comicvine.gamespot.com/kitchen-witch/4005-16300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16302/", + "id": 16302, + "name": "Orson Melles", + "site_detail_url": "https://comicvine.gamespot.com/orson-melles/4005-16302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16304/", + "id": 16304, + "name": "Coat Burglar", + "site_detail_url": "https://comicvine.gamespot.com/coat-burglar/4005-16304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16305/", + "id": 16305, + "name": "James Bondoogle", + "site_detail_url": "https://comicvine.gamespot.com/james-bondoogle/4005-16305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16306/", + "id": 16306, + "name": "Moldfinger", + "site_detail_url": "https://comicvine.gamespot.com/moldfinger/4005-16306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16307/", + "id": 16307, + "name": "Modjob", + "site_detail_url": "https://comicvine.gamespot.com/modjob/4005-16307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16308/", + "id": 16308, + "name": "Squinty McGinty", + "site_detail_url": "https://comicvine.gamespot.com/squinty-mcginty/4005-16308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16309/", + "id": 16309, + "name": "William Shumspeare", + "site_detail_url": "https://comicvine.gamespot.com/william-shumspeare/4005-16309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16310/", + "id": 16310, + "name": "Melmarcello Mastrianni", + "site_detail_url": "https://comicvine.gamespot.com/melmarcello-mastrianni/4005-16310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16311/", + "id": 16311, + "name": "Sir Spanish Olive-Ier", + "site_detail_url": "https://comicvine.gamespot.com/sir-spanish-olive-ier/4005-16311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16312/", + "id": 16312, + "name": "Sagebrush Slim", + "site_detail_url": "https://comicvine.gamespot.com/sagebrush-slim/4005-16312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16313/", + "id": 16313, + "name": "Dr. Ward", + "site_detail_url": "https://comicvine.gamespot.com/dr-ward/4005-16313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16314/", + "id": 16314, + "name": "Cobra Conlin", + "site_detail_url": "https://comicvine.gamespot.com/cobra-conlin/4005-16314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16315/", + "id": 16315, + "name": "Melmaverick Shumway", + "site_detail_url": "https://comicvine.gamespot.com/melmaverick-shumway/4005-16315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16316/", + "id": 16316, + "name": "Camlem", + "site_detail_url": "https://comicvine.gamespot.com/camlem/4005-16316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16318/", + "id": 16318, + "name": "Cyrus Shumway", + "site_detail_url": "https://comicvine.gamespot.com/cyrus-shumway/4005-16318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16319/", + "id": 16319, + "name": "Aloe Vera", + "site_detail_url": "https://comicvine.gamespot.com/aloe-vera/4005-16319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16320/", + "id": 16320, + "name": "Augie Shumway", + "site_detail_url": "https://comicvine.gamespot.com/augie-shumway/4005-16320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16321/", + "id": 16321, + "name": "Dr. Timothy Bleary", + "site_detail_url": "https://comicvine.gamespot.com/dr-timothy-bleary/4005-16321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16322/", + "id": 16322, + "name": "Modzilla", + "site_detail_url": "https://comicvine.gamespot.com/modzilla/4005-16322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16326/", + "id": 16326, + "name": "Whitewash Jones", + "site_detail_url": "https://comicvine.gamespot.com/whitewash-jones/4005-16326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16327/", + "id": 16327, + "name": "Pete Zaparlor", + "site_detail_url": "https://comicvine.gamespot.com/pete-zaparlor/4005-16327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16328/", + "id": 16328, + "name": "Dr. Strangeglove", + "site_detail_url": "https://comicvine.gamespot.com/dr-strangeglove/4005-16328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16329/", + "id": 16329, + "name": "Ybor", + "site_detail_url": "https://comicvine.gamespot.com/ybor/4005-16329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16331/", + "id": 16331, + "name": "El Foggo", + "site_detail_url": "https://comicvine.gamespot.com/el-foggo/4005-16331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16336/", + "id": 16336, + "name": "Harriet Homerstone", + "site_detail_url": "https://comicvine.gamespot.com/harriet-homerstone/4005-16336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16397/", + "id": 16397, + "name": "Jam", + "site_detail_url": "https://comicvine.gamespot.com/jam/4005-16397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16543/", + "id": 16543, + "name": "Case", + "site_detail_url": "https://comicvine.gamespot.com/case/4005-16543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16544/", + "id": 16544, + "name": "Molly Millions", + "site_detail_url": "https://comicvine.gamespot.com/molly-millions/4005-16544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16766/", + "id": 16766, + "name": "Jillette", + "site_detail_url": "https://comicvine.gamespot.com/jillette/4005-16766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16767/", + "id": 16767, + "name": "Bruce Greenwood", + "site_detail_url": "https://comicvine.gamespot.com/bruce-greenwood/4005-16767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16769/", + "id": 16769, + "name": "Mr. Golog", + "site_detail_url": "https://comicvine.gamespot.com/mr-golog/4005-16769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16780/", + "id": 16780, + "name": "Comrade X", + "site_detail_url": "https://comicvine.gamespot.com/comrade-x/4005-16780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16791/", + "id": 16791, + "name": "Adept", + "site_detail_url": "https://comicvine.gamespot.com/adept/4005-16791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16793/", + "id": 16793, + "name": "Snapdragon", + "site_detail_url": "https://comicvine.gamespot.com/snapdragon/4005-16793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16803/", + "id": 16803, + "name": "Gina Langtrees", + "site_detail_url": "https://comicvine.gamespot.com/gina-langtrees/4005-16803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16810/", + "id": 16810, + "name": "Gus Grim", + "site_detail_url": "https://comicvine.gamespot.com/gus-grim/4005-16810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16811/", + "id": 16811, + "name": "Roust", + "site_detail_url": "https://comicvine.gamespot.com/roust/4005-16811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16812/", + "id": 16812, + "name": "Joust", + "site_detail_url": "https://comicvine.gamespot.com/joust/4005-16812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16813/", + "id": 16813, + "name": "Ella", + "site_detail_url": "https://comicvine.gamespot.com/ella/4005-16813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16826/", + "id": 16826, + "name": "Antonio Argent", + "site_detail_url": "https://comicvine.gamespot.com/antonio-argent/4005-16826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16828/", + "id": 16828, + "name": "Faith Bradley", + "site_detail_url": "https://comicvine.gamespot.com/faith-bradley/4005-16828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16830/", + "id": 16830, + "name": "The Fixer", + "site_detail_url": "https://comicvine.gamespot.com/the-fixer/4005-16830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16834/", + "id": 16834, + "name": "Face Thief", + "site_detail_url": "https://comicvine.gamespot.com/face-thief/4005-16834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-16848/", + "id": 16848, + "name": "Ji Banda", + "site_detail_url": "https://comicvine.gamespot.com/ji-banda/4005-16848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17001/", + "id": 17001, + "name": "Cheryl Augusto", + "site_detail_url": "https://comicvine.gamespot.com/cheryl-augusto/4005-17001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17002/", + "id": 17002, + "name": "Paul Augusto", + "site_detail_url": "https://comicvine.gamespot.com/paul-augusto/4005-17002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17102/", + "id": 17102, + "name": "Glib Arkanian", + "site_detail_url": "https://comicvine.gamespot.com/glib-arkanian/4005-17102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17103/", + "id": 17103, + "name": "Billy Hawkins", + "site_detail_url": "https://comicvine.gamespot.com/billy-hawkins/4005-17103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17225/", + "id": 17225, + "name": "Mendez XXVI", + "site_detail_url": "https://comicvine.gamespot.com/mendez-xxvi/4005-17225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17243/", + "id": 17243, + "name": "Margus", + "site_detail_url": "https://comicvine.gamespot.com/margus/4005-17243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17247/", + "id": 17247, + "name": "Verger", + "site_detail_url": "https://comicvine.gamespot.com/verger/4005-17247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17371/", + "id": 17371, + "name": "Nakh", + "site_detail_url": "https://comicvine.gamespot.com/nakh/4005-17371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17372/", + "id": 17372, + "name": "Marinette Bwa Chech", + "site_detail_url": "https://comicvine.gamespot.com/marinette-bwa-chech/4005-17372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17374/", + "id": 17374, + "name": "Saint", + "site_detail_url": "https://comicvine.gamespot.com/saint/4005-17374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17377/", + "id": 17377, + "name": "Enzo Ferrara", + "site_detail_url": "https://comicvine.gamespot.com/enzo-ferrara/4005-17377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17378/", + "id": 17378, + "name": "Lucas Telling-Stone", + "site_detail_url": "https://comicvine.gamespot.com/lucas-telling-stone/4005-17378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17379/", + "id": 17379, + "name": "Benjamin Soloman Alomii", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-soloman-alomii/4005-17379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17564/", + "id": 17564, + "name": "Gaark", + "site_detail_url": "https://comicvine.gamespot.com/gaark/4005-17564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17565/", + "id": 17565, + "name": "Tarook", + "site_detail_url": "https://comicvine.gamespot.com/tarook/4005-17565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17568/", + "id": 17568, + "name": "Grundor", + "site_detail_url": "https://comicvine.gamespot.com/grundor/4005-17568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17613/", + "id": 17613, + "name": "Morlun", + "site_detail_url": "https://comicvine.gamespot.com/morlun/4005-17613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17614/", + "id": 17614, + "name": "Dex", + "site_detail_url": "https://comicvine.gamespot.com/dex/4005-17614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17615/", + "id": 17615, + "name": "Ezekiel", + "site_detail_url": "https://comicvine.gamespot.com/ezekiel/4005-17615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17620/", + "id": 17620, + "name": "Randy Robertson", + "site_detail_url": "https://comicvine.gamespot.com/randy-robertson/4005-17620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17621/", + "id": 17621, + "name": "Jimmy-6", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-6/4005-17621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17624/", + "id": 17624, + "name": "Squid", + "site_detail_url": "https://comicvine.gamespot.com/squid/4005-17624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17632/", + "id": 17632, + "name": "Spencer Smythe", + "site_detail_url": "https://comicvine.gamespot.com/spencer-smythe/4005-17632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17634/", + "id": 17634, + "name": "Murder", + "site_detail_url": "https://comicvine.gamespot.com/murder/4005-17634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17635/", + "id": 17635, + "name": "Sha Shan", + "site_detail_url": "https://comicvine.gamespot.com/sha-shan/4005-17635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17636/", + "id": 17636, + "name": "Ann Weying", + "site_detail_url": "https://comicvine.gamespot.com/ann-weying/4005-17636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17638/", + "id": 17638, + "name": "Ghost", + "site_detail_url": "https://comicvine.gamespot.com/ghost/4005-17638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17639/", + "id": 17639, + "name": "Cassandra Locke", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-locke/4005-17639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17640/", + "id": 17640, + "name": "Terry Kwan", + "site_detail_url": "https://comicvine.gamespot.com/terry-kwan/4005-17640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17641/", + "id": 17641, + "name": "Dr. Twaki", + "site_detail_url": "https://comicvine.gamespot.com/dr-twaki/4005-17641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17642/", + "id": 17642, + "name": "Anna", + "site_detail_url": "https://comicvine.gamespot.com/anna/4005-17642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17644/", + "id": 17644, + "name": "Clarice Bernhard", + "site_detail_url": "https://comicvine.gamespot.com/clarice-bernhard/4005-17644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17645/", + "id": 17645, + "name": "Captain Power", + "site_detail_url": "https://comicvine.gamespot.com/captain-power/4005-17645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17646/", + "id": 17646, + "name": "Jonathan Rickman", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-rickman/4005-17646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17725/", + "id": 17725, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-17725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17792/", + "id": 17792, + "name": "Orrgo", + "site_detail_url": "https://comicvine.gamespot.com/orrgo/4005-17792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17796/", + "id": 17796, + "name": "Commander Tar-Vash", + "site_detail_url": "https://comicvine.gamespot.com/commander-tar-vash/4005-17796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17797/", + "id": 17797, + "name": "Bi-Beast", + "site_detail_url": "https://comicvine.gamespot.com/bi-beast/4005-17797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-17798/", + "id": 17798, + "name": "Brunnhilde", + "site_detail_url": "https://comicvine.gamespot.com/brunnhilde/4005-17798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18104/", + "id": 18104, + "name": "Bastoc", + "site_detail_url": "https://comicvine.gamespot.com/bastoc/4005-18104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18138/", + "id": 18138, + "name": "Snagg", + "site_detail_url": "https://comicvine.gamespot.com/snagg/4005-18138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18177/", + "id": 18177, + "name": "Plaxy", + "site_detail_url": "https://comicvine.gamespot.com/plaxy/4005-18177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18178/", + "id": 18178, + "name": "Dr. James Farrell", + "site_detail_url": "https://comicvine.gamespot.com/dr-james-farrell/4005-18178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18179/", + "id": 18179, + "name": "Maggie Farrell", + "site_detail_url": "https://comicvine.gamespot.com/maggie-farrell/4005-18179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18180/", + "id": 18180, + "name": "Lars Skorba", + "site_detail_url": "https://comicvine.gamespot.com/lars-skorba/4005-18180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18181/", + "id": 18181, + "name": "Lady Luck", + "site_detail_url": "https://comicvine.gamespot.com/lady-luck/4005-18181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18182/", + "id": 18182, + "name": "Dr. Elizabeth Merrill", + "site_detail_url": "https://comicvine.gamespot.com/dr-elizabeth-merrill/4005-18182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18183/", + "id": 18183, + "name": "C. W. Crawford", + "site_detail_url": "https://comicvine.gamespot.com/c-w-crawford/4005-18183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18184/", + "id": 18184, + "name": "Jomo", + "site_detail_url": "https://comicvine.gamespot.com/jomo/4005-18184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18185/", + "id": 18185, + "name": "Merry", + "site_detail_url": "https://comicvine.gamespot.com/merry/4005-18185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18187/", + "id": 18187, + "name": "Dr. Miller Simon", + "site_detail_url": "https://comicvine.gamespot.com/dr-miller-simon/4005-18187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18238/", + "id": 18238, + "name": "Captain Spain", + "site_detail_url": "https://comicvine.gamespot.com/captain-spain/4005-18238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18244/", + "id": 18244, + "name": "Bruno Costa", + "site_detail_url": "https://comicvine.gamespot.com/bruno-costa/4005-18244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18246/", + "id": 18246, + "name": "Abraxas", + "site_detail_url": "https://comicvine.gamespot.com/abraxas/4005-18246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18250/", + "id": 18250, + "name": "Valeria", + "site_detail_url": "https://comicvine.gamespot.com/valeria/4005-18250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18251/", + "id": 18251, + "name": "Abigail Baxter", + "site_detail_url": "https://comicvine.gamespot.com/abigail-baxter/4005-18251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18253/", + "id": 18253, + "name": "Hellscout", + "site_detail_url": "https://comicvine.gamespot.com/hellscout/4005-18253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18255/", + "id": 18255, + "name": "Noah Baxter", + "site_detail_url": "https://comicvine.gamespot.com/noah-baxter/4005-18255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18256/", + "id": 18256, + "name": "Gornkai", + "site_detail_url": "https://comicvine.gamespot.com/gornkai/4005-18256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18257/", + "id": 18257, + "name": "The Gideon Trust", + "site_detail_url": "https://comicvine.gamespot.com/the-gideon-trust/4005-18257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18258/", + "id": 18258, + "name": "Jedediah", + "site_detail_url": "https://comicvine.gamespot.com/jedediah/4005-18258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18261/", + "id": 18261, + "name": "Janus the Nega-Man", + "site_detail_url": "https://comicvine.gamespot.com/janus-the-nega-man/4005-18261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18262/", + "id": 18262, + "name": "Tiki", + "site_detail_url": "https://comicvine.gamespot.com/tiki/4005-18262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18264/", + "id": 18264, + "name": "Jacob Tennyson", + "site_detail_url": "https://comicvine.gamespot.com/jacob-tennyson/4005-18264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18270/", + "id": 18270, + "name": "Spot", + "site_detail_url": "https://comicvine.gamespot.com/spot/4005-18270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18282/", + "id": 18282, + "name": "Cobweb", + "site_detail_url": "https://comicvine.gamespot.com/cobweb/4005-18282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18283/", + "id": 18283, + "name": "Alyssa Conover", + "site_detail_url": "https://comicvine.gamespot.com/alyssa-conover/4005-18283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18284/", + "id": 18284, + "name": "Rick Sheridan", + "site_detail_url": "https://comicvine.gamespot.com/rick-sheridan/4005-18284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18285/", + "id": 18285, + "name": "Rambo The Dog", + "site_detail_url": "https://comicvine.gamespot.com/rambo-the-dog/4005-18285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18286/", + "id": 18286, + "name": "Psyko", + "site_detail_url": "https://comicvine.gamespot.com/psyko/4005-18286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18287/", + "id": 18287, + "name": "Spectra", + "site_detail_url": "https://comicvine.gamespot.com/spectra/4005-18287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18288/", + "id": 18288, + "name": "Mindspawn", + "site_detail_url": "https://comicvine.gamespot.com/mindspawn/4005-18288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18291/", + "id": 18291, + "name": "Pike", + "site_detail_url": "https://comicvine.gamespot.com/pike/4005-18291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18293/", + "id": 18293, + "name": "Weak Link", + "site_detail_url": "https://comicvine.gamespot.com/weak-link/4005-18293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18294/", + "id": 18294, + "name": "Up Link", + "site_detail_url": "https://comicvine.gamespot.com/up-link/4005-18294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18295/", + "id": 18295, + "name": "Master Link", + "site_detail_url": "https://comicvine.gamespot.com/master-link/4005-18295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18296/", + "id": 18296, + "name": "Janine", + "site_detail_url": "https://comicvine.gamespot.com/janine/4005-18296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18298/", + "id": 18298, + "name": "Manic", + "site_detail_url": "https://comicvine.gamespot.com/manic/4005-18298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18299/", + "id": 18299, + "name": "Depression", + "site_detail_url": "https://comicvine.gamespot.com/depression/4005-18299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18301/", + "id": 18301, + "name": "Whitney Cooper III", + "site_detail_url": "https://comicvine.gamespot.com/whitney-cooper-iii/4005-18301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18304/", + "id": 18304, + "name": "Wiretap", + "site_detail_url": "https://comicvine.gamespot.com/wiretap/4005-18304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18305/", + "id": 18305, + "name": "Cuffs", + "site_detail_url": "https://comicvine.gamespot.com/cuffs/4005-18305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18306/", + "id": 18306, + "name": "Nightstick", + "site_detail_url": "https://comicvine.gamespot.com/nightstick/4005-18306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18308/", + "id": 18308, + "name": "Mr. Epstein", + "site_detail_url": "https://comicvine.gamespot.com/mr-epstein/4005-18308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18309/", + "id": 18309, + "name": "Mrs. Epstein", + "site_detail_url": "https://comicvine.gamespot.com/mrs-epstein/4005-18309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18310/", + "id": 18310, + "name": "Detective Cecilia Perez", + "site_detail_url": "https://comicvine.gamespot.com/detective-cecilia-perez/4005-18310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18311/", + "id": 18311, + "name": "Lullaby", + "site_detail_url": "https://comicvine.gamespot.com/lullaby/4005-18311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18312/", + "id": 18312, + "name": "Franklin Lovejoy", + "site_detail_url": "https://comicvine.gamespot.com/franklin-lovejoy/4005-18312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18313/", + "id": 18313, + "name": "Crimewave", + "site_detail_url": "https://comicvine.gamespot.com/crimewave/4005-18313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18314/", + "id": 18314, + "name": "Carmela", + "site_detail_url": "https://comicvine.gamespot.com/carmela/4005-18314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18315/", + "id": 18315, + "name": "B'Ngudja", + "site_detail_url": "https://comicvine.gamespot.com/bngudja/4005-18315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18316/", + "id": 18316, + "name": "Pegasus", + "site_detail_url": "https://comicvine.gamespot.com/pegasus/4005-18316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18425/", + "id": 18425, + "name": "Big Brain", + "site_detail_url": "https://comicvine.gamespot.com/big-brain/4005-18425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18427/", + "id": 18427, + "name": "Mr. Nobody", + "site_detail_url": "https://comicvine.gamespot.com/mr-nobody/4005-18427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18429/", + "id": 18429, + "name": "Steel Spider", + "site_detail_url": "https://comicvine.gamespot.com/steel-spider/4005-18429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18432/", + "id": 18432, + "name": "Freebooter", + "site_detail_url": "https://comicvine.gamespot.com/freebooter/4005-18432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18433/", + "id": 18433, + "name": "Bluestreak", + "site_detail_url": "https://comicvine.gamespot.com/bluestreak/4005-18433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18436/", + "id": 18436, + "name": "Saxon St.John", + "site_detail_url": "https://comicvine.gamespot.com/saxon-stjohn/4005-18436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18437/", + "id": 18437, + "name": "Jake Travest", + "site_detail_url": "https://comicvine.gamespot.com/jake-travest/4005-18437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18439/", + "id": 18439, + "name": "Constantius", + "site_detail_url": "https://comicvine.gamespot.com/constantius/4005-18439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18440/", + "id": 18440, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4005-18440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18441/", + "id": 18441, + "name": "Steel Hawk", + "site_detail_url": "https://comicvine.gamespot.com/steel-hawk/4005-18441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18442/", + "id": 18442, + "name": "Brick", + "site_detail_url": "https://comicvine.gamespot.com/brick/4005-18442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18443/", + "id": 18443, + "name": "Saurod", + "site_detail_url": "https://comicvine.gamespot.com/saurod/4005-18443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18444/", + "id": 18444, + "name": "Fritz Krotze", + "site_detail_url": "https://comicvine.gamespot.com/fritz-krotze/4005-18444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18446/", + "id": 18446, + "name": "Richard Faylen", + "site_detail_url": "https://comicvine.gamespot.com/richard-faylen/4005-18446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18448/", + "id": 18448, + "name": "Angela Tensen", + "site_detail_url": "https://comicvine.gamespot.com/angela-tensen/4005-18448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18449/", + "id": 18449, + "name": "Playback", + "site_detail_url": "https://comicvine.gamespot.com/playback/4005-18449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18451/", + "id": 18451, + "name": "Judge Mental", + "site_detail_url": "https://comicvine.gamespot.com/judge-mental/4005-18451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18452/", + "id": 18452, + "name": "Figurine", + "site_detail_url": "https://comicvine.gamespot.com/figurine/4005-18452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18453/", + "id": 18453, + "name": "Horny Toad", + "site_detail_url": "https://comicvine.gamespot.com/horny-toad/4005-18453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18454/", + "id": 18454, + "name": "Fireballer", + "site_detail_url": "https://comicvine.gamespot.com/fireballer/4005-18454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18456/", + "id": 18456, + "name": "Impact", + "site_detail_url": "https://comicvine.gamespot.com/impact/4005-18456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18457/", + "id": 18457, + "name": "Shudder Bug", + "site_detail_url": "https://comicvine.gamespot.com/shudder-bug/4005-18457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18458/", + "id": 18458, + "name": "Captain Brooklyn", + "site_detail_url": "https://comicvine.gamespot.com/captain-brooklyn/4005-18458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18459/", + "id": 18459, + "name": "Seraph", + "site_detail_url": "https://comicvine.gamespot.com/seraph/4005-18459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18460/", + "id": 18460, + "name": "Augur", + "site_detail_url": "https://comicvine.gamespot.com/augur/4005-18460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18466/", + "id": 18466, + "name": "Red Star", + "site_detail_url": "https://comicvine.gamespot.com/red-star/4005-18466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18468/", + "id": 18468, + "name": "Quill", + "site_detail_url": "https://comicvine.gamespot.com/quill/4005-18468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18471/", + "id": 18471, + "name": "Toocheetsch", + "site_detail_url": "https://comicvine.gamespot.com/toocheetsch/4005-18471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18474/", + "id": 18474, + "name": "Galt", + "site_detail_url": "https://comicvine.gamespot.com/galt/4005-18474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18475/", + "id": 18475, + "name": "Colonel Browning", + "site_detail_url": "https://comicvine.gamespot.com/colonel-browning/4005-18475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18476/", + "id": 18476, + "name": "Darquill", + "site_detail_url": "https://comicvine.gamespot.com/darquill/4005-18476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18479/", + "id": 18479, + "name": "Damon Conquest", + "site_detail_url": "https://comicvine.gamespot.com/damon-conquest/4005-18479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18486/", + "id": 18486, + "name": "Irene Tensen", + "site_detail_url": "https://comicvine.gamespot.com/irene-tensen/4005-18486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18489/", + "id": 18489, + "name": "Becky Chambers", + "site_detail_url": "https://comicvine.gamespot.com/becky-chambers/4005-18489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18491/", + "id": 18491, + "name": "Danielle Towson", + "site_detail_url": "https://comicvine.gamespot.com/danielle-towson/4005-18491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18493/", + "id": 18493, + "name": "Endolana", + "site_detail_url": "https://comicvine.gamespot.com/endolana/4005-18493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18495/", + "id": 18495, + "name": "War Chief Malakite", + "site_detail_url": "https://comicvine.gamespot.com/war-chief-malakite/4005-18495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18496/", + "id": 18496, + "name": "Kabor", + "site_detail_url": "https://comicvine.gamespot.com/kabor/4005-18496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18497/", + "id": 18497, + "name": "Qatar", + "site_detail_url": "https://comicvine.gamespot.com/qatar/4005-18497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18499/", + "id": 18499, + "name": "Tattoo", + "site_detail_url": "https://comicvine.gamespot.com/tattoo/4005-18499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18500/", + "id": 18500, + "name": "Therion", + "site_detail_url": "https://comicvine.gamespot.com/therion/4005-18500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18502/", + "id": 18502, + "name": "Talim", + "site_detail_url": "https://comicvine.gamespot.com/talim/4005-18502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18503/", + "id": 18503, + "name": "Zirco", + "site_detail_url": "https://comicvine.gamespot.com/zirco/4005-18503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18504/", + "id": 18504, + "name": "Webstral", + "site_detail_url": "https://comicvine.gamespot.com/webstral/4005-18504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18506/", + "id": 18506, + "name": "Hoyt Pittman", + "site_detail_url": "https://comicvine.gamespot.com/hoyt-pittman/4005-18506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18507/", + "id": 18507, + "name": "Desmond Kline", + "site_detail_url": "https://comicvine.gamespot.com/desmond-kline/4005-18507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18509/", + "id": 18509, + "name": "Father Delgado", + "site_detail_url": "https://comicvine.gamespot.com/father-delgado/4005-18509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18512/", + "id": 18512, + "name": "Elektro", + "site_detail_url": "https://comicvine.gamespot.com/elektro/4005-18512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18520/", + "id": 18520, + "name": "O.Z. Chase", + "site_detail_url": "https://comicvine.gamespot.com/oz-chase/4005-18520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18521/", + "id": 18521, + "name": "Barbara London", + "site_detail_url": "https://comicvine.gamespot.com/barbara-london/4005-18521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18522/", + "id": 18522, + "name": "Stomper", + "site_detail_url": "https://comicvine.gamespot.com/stomper/4005-18522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18523/", + "id": 18523, + "name": "Chunk", + "site_detail_url": "https://comicvine.gamespot.com/chunk/4005-18523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18524/", + "id": 18524, + "name": "Mama", + "site_detail_url": "https://comicvine.gamespot.com/mama/4005-18524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18525/", + "id": 18525, + "name": "Portia", + "site_detail_url": "https://comicvine.gamespot.com/portia/4005-18525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18526/", + "id": 18526, + "name": "Millie the Model", + "site_detail_url": "https://comicvine.gamespot.com/millie-the-model/4005-18526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18527/", + "id": 18527, + "name": "Lord High Justicer", + "site_detail_url": "https://comicvine.gamespot.com/lord-high-justicer/4005-18527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18528/", + "id": 18528, + "name": "Vindiktor", + "site_detail_url": "https://comicvine.gamespot.com/vindiktor/4005-18528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18529/", + "id": 18529, + "name": "Ivan", + "site_detail_url": "https://comicvine.gamespot.com/ivan/4005-18529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18533/", + "id": 18533, + "name": "Leesha", + "site_detail_url": "https://comicvine.gamespot.com/leesha/4005-18533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18559/", + "id": 18559, + "name": "Aurora Poule", + "site_detail_url": "https://comicvine.gamespot.com/aurora-poule/4005-18559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18560/", + "id": 18560, + "name": "Sam Buchanan", + "site_detail_url": "https://comicvine.gamespot.com/sam-buchanan/4005-18560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18561/", + "id": 18561, + "name": "Tarq Maru", + "site_detail_url": "https://comicvine.gamespot.com/tarq-maru/4005-18561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18562/", + "id": 18562, + "name": "Metarchus", + "site_detail_url": "https://comicvine.gamespot.com/metarchus/4005-18562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18566/", + "id": 18566, + "name": "Louise Hastings", + "site_detail_url": "https://comicvine.gamespot.com/louise-hastings/4005-18566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18568/", + "id": 18568, + "name": "Diabolique", + "site_detail_url": "https://comicvine.gamespot.com/diabolique/4005-18568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18569/", + "id": 18569, + "name": "Albion", + "site_detail_url": "https://comicvine.gamespot.com/albion/4005-18569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18570/", + "id": 18570, + "name": "Monstrosity", + "site_detail_url": "https://comicvine.gamespot.com/monstrosity/4005-18570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18571/", + "id": 18571, + "name": "Nash Salvato", + "site_detail_url": "https://comicvine.gamespot.com/nash-salvato/4005-18571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18577/", + "id": 18577, + "name": "Vittorio Montesi", + "site_detail_url": "https://comicvine.gamespot.com/vittorio-montesi/4005-18577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18578/", + "id": 18578, + "name": "Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/ashcan/4005-18578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18579/", + "id": 18579, + "name": "Speakeasy", + "site_detail_url": "https://comicvine.gamespot.com/speakeasy/4005-18579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18587/", + "id": 18587, + "name": "It The Living Colossus", + "site_detail_url": "https://comicvine.gamespot.com/it-the-living-colossus/4005-18587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18588/", + "id": 18588, + "name": "Neal Saroyan", + "site_detail_url": "https://comicvine.gamespot.com/neal-saroyan/4005-18588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18589/", + "id": 18589, + "name": "Cindy Knutz", + "site_detail_url": "https://comicvine.gamespot.com/cindy-knutz/4005-18589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18590/", + "id": 18590, + "name": "Black Talon", + "site_detail_url": "https://comicvine.gamespot.com/black-talon/4005-18590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18592/", + "id": 18592, + "name": "Alex Flores", + "site_detail_url": "https://comicvine.gamespot.com/alex-flores/4005-18592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18593/", + "id": 18593, + "name": "Father Phim", + "site_detail_url": "https://comicvine.gamespot.com/father-phim/4005-18593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18594/", + "id": 18594, + "name": "Claudia Munson", + "site_detail_url": "https://comicvine.gamespot.com/claudia-munson/4005-18594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18597/", + "id": 18597, + "name": "Angkor", + "site_detail_url": "https://comicvine.gamespot.com/angkor/4005-18597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18598/", + "id": 18598, + "name": "Freddie Munson", + "site_detail_url": "https://comicvine.gamespot.com/freddie-munson/4005-18598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18601/", + "id": 18601, + "name": "Agent Kali Vries", + "site_detail_url": "https://comicvine.gamespot.com/agent-kali-vries/4005-18601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18603/", + "id": 18603, + "name": "Farley Mowat", + "site_detail_url": "https://comicvine.gamespot.com/farley-mowat/4005-18603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18605/", + "id": 18605, + "name": "Morcan", + "site_detail_url": "https://comicvine.gamespot.com/morcan/4005-18605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18609/", + "id": 18609, + "name": "Tom Cochrane", + "site_detail_url": "https://comicvine.gamespot.com/tom-cochrane/4005-18609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18610/", + "id": 18610, + "name": "Shelly Cochrane", + "site_detail_url": "https://comicvine.gamespot.com/shelly-cochrane/4005-18610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18611/", + "id": 18611, + "name": "The Thousand", + "site_detail_url": "https://comicvine.gamespot.com/the-thousand/4005-18611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18614/", + "id": 18614, + "name": "Skye", + "site_detail_url": "https://comicvine.gamespot.com/skye/4005-18614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18615/", + "id": 18615, + "name": "Jess Patton", + "site_detail_url": "https://comicvine.gamespot.com/jess-patton/4005-18615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18671/", + "id": 18671, + "name": "John Brent", + "site_detail_url": "https://comicvine.gamespot.com/john-brent/4005-18671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18781/", + "id": 18781, + "name": "Greta Abbott", + "site_detail_url": "https://comicvine.gamespot.com/greta-abbott/4005-18781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18783/", + "id": 18783, + "name": "Choir", + "site_detail_url": "https://comicvine.gamespot.com/choir/4005-18783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18792/", + "id": 18792, + "name": "Battletide", + "site_detail_url": "https://comicvine.gamespot.com/battletide/4005-18792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18809/", + "id": 18809, + "name": "Eagle", + "site_detail_url": "https://comicvine.gamespot.com/eagle/4005-18809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18818/", + "id": 18818, + "name": "Eeleta", + "site_detail_url": "https://comicvine.gamespot.com/eeleta/4005-18818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18820/", + "id": 18820, + "name": "Badhand", + "site_detail_url": "https://comicvine.gamespot.com/badhand/4005-18820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18838/", + "id": 18838, + "name": "Grunt", + "site_detail_url": "https://comicvine.gamespot.com/grunt/4005-18838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18853/", + "id": 18853, + "name": "Dirk Ravenscore", + "site_detail_url": "https://comicvine.gamespot.com/dirk-ravenscore/4005-18853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18864/", + "id": 18864, + "name": "Cynas", + "site_detail_url": "https://comicvine.gamespot.com/cynas/4005-18864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18865/", + "id": 18865, + "name": "Targon", + "site_detail_url": "https://comicvine.gamespot.com/targon/4005-18865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18866/", + "id": 18866, + "name": "Arcadius", + "site_detail_url": "https://comicvine.gamespot.com/arcadius/4005-18866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18867/", + "id": 18867, + "name": "Furgar", + "site_detail_url": "https://comicvine.gamespot.com/furgar/4005-18867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18868/", + "id": 18868, + "name": "Sapphiras", + "site_detail_url": "https://comicvine.gamespot.com/sapphiras/4005-18868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18873/", + "id": 18873, + "name": "Javier Caldrone", + "site_detail_url": "https://comicvine.gamespot.com/javier-caldrone/4005-18873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18875/", + "id": 18875, + "name": "Nisanti", + "site_detail_url": "https://comicvine.gamespot.com/nisanti/4005-18875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18877/", + "id": 18877, + "name": "Walter Thorson", + "site_detail_url": "https://comicvine.gamespot.com/walter-thorson/4005-18877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18878/", + "id": 18878, + "name": "Stan Hardy", + "site_detail_url": "https://comicvine.gamespot.com/stan-hardy/4005-18878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-18927/", + "id": 18927, + "name": "Kuara", + "site_detail_url": "https://comicvine.gamespot.com/kuara/4005-18927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19122/", + "id": 19122, + "name": "Jorma", + "site_detail_url": "https://comicvine.gamespot.com/jorma/4005-19122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19150/", + "id": 19150, + "name": "Quoggoth", + "site_detail_url": "https://comicvine.gamespot.com/quoggoth/4005-19150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19207/", + "id": 19207, + "name": "Anais", + "site_detail_url": "https://comicvine.gamespot.com/anais/4005-19207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19209/", + "id": 19209, + "name": "Jack O'Diamonds", + "site_detail_url": "https://comicvine.gamespot.com/jack-odiamonds/4005-19209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19211/", + "id": 19211, + "name": "Lapkin", + "site_detail_url": "https://comicvine.gamespot.com/lapkin/4005-19211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19213/", + "id": 19213, + "name": "Keeyah", + "site_detail_url": "https://comicvine.gamespot.com/keeyah/4005-19213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19214/", + "id": 19214, + "name": "Helek", + "site_detail_url": "https://comicvine.gamespot.com/helek/4005-19214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19219/", + "id": 19219, + "name": "Rebecca Essex", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-essex/4005-19219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19221/", + "id": 19221, + "name": "Sniper", + "site_detail_url": "https://comicvine.gamespot.com/sniper/4005-19221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19245/", + "id": 19245, + "name": "Brom", + "site_detail_url": "https://comicvine.gamespot.com/brom/4005-19245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19331/", + "id": 19331, + "name": "Ongaro", + "site_detail_url": "https://comicvine.gamespot.com/ongaro/4005-19331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19348/", + "id": 19348, + "name": "Oddball", + "site_detail_url": "https://comicvine.gamespot.com/oddball/4005-19348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19349/", + "id": 19349, + "name": "Headhunter", + "site_detail_url": "https://comicvine.gamespot.com/headhunter/4005-19349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19350/", + "id": 19350, + "name": "Gamecock", + "site_detail_url": "https://comicvine.gamespot.com/gamecock/4005-19350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19351/", + "id": 19351, + "name": "Anaconda", + "site_detail_url": "https://comicvine.gamespot.com/anaconda/4005-19351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19353/", + "id": 19353, + "name": "Shiver Man", + "site_detail_url": "https://comicvine.gamespot.com/shiver-man/4005-19353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19354/", + "id": 19354, + "name": "Peepers", + "site_detail_url": "https://comicvine.gamespot.com/peepers/4005-19354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19355/", + "id": 19355, + "name": "Montgomery Battle", + "site_detail_url": "https://comicvine.gamespot.com/montgomery-battle/4005-19355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19356/", + "id": 19356, + "name": "Reb Tillis", + "site_detail_url": "https://comicvine.gamespot.com/reb-tillis/4005-19356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19357/", + "id": 19357, + "name": "Axe", + "site_detail_url": "https://comicvine.gamespot.com/axe/4005-19357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19358/", + "id": 19358, + "name": "Aryan", + "site_detail_url": "https://comicvine.gamespot.com/aryan/4005-19358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19359/", + "id": 19359, + "name": "Mo Money", + "site_detail_url": "https://comicvine.gamespot.com/mo-money/4005-19359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19360/", + "id": 19360, + "name": "The General", + "site_detail_url": "https://comicvine.gamespot.com/the-general/4005-19360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19362/", + "id": 19362, + "name": "Shinji Kizaki", + "site_detail_url": "https://comicvine.gamespot.com/shinji-kizaki/4005-19362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19363/", + "id": 19363, + "name": "Carver", + "site_detail_url": "https://comicvine.gamespot.com/carver/4005-19363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19364/", + "id": 19364, + "name": "Lt. Tara Curson", + "site_detail_url": "https://comicvine.gamespot.com/lt-tara-curson/4005-19364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19365/", + "id": 19365, + "name": "Fugue", + "site_detail_url": "https://comicvine.gamespot.com/fugue/4005-19365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19366/", + "id": 19366, + "name": "Geronimo Crowe", + "site_detail_url": "https://comicvine.gamespot.com/geronimo-crowe/4005-19366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19367/", + "id": 19367, + "name": "Administrator", + "site_detail_url": "https://comicvine.gamespot.com/administrator/4005-19367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19368/", + "id": 19368, + "name": "Cargo", + "site_detail_url": "https://comicvine.gamespot.com/cargo/4005-19368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19369/", + "id": 19369, + "name": "Otou", + "site_detail_url": "https://comicvine.gamespot.com/otou/4005-19369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19371/", + "id": 19371, + "name": "Reanimator", + "site_detail_url": "https://comicvine.gamespot.com/reanimator/4005-19371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19375/", + "id": 19375, + "name": "Skrull Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/skrull-wolverine/4005-19375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19376/", + "id": 19376, + "name": "Aria", + "site_detail_url": "https://comicvine.gamespot.com/aria/4005-19376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19381/", + "id": 19381, + "name": "Police Chief Tai", + "site_detail_url": "https://comicvine.gamespot.com/police-chief-tai/4005-19381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19382/", + "id": 19382, + "name": "Rascal", + "site_detail_url": "https://comicvine.gamespot.com/rascal/4005-19382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19384/", + "id": 19384, + "name": "Lord Dark Wind", + "site_detail_url": "https://comicvine.gamespot.com/lord-dark-wind/4005-19384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19386/", + "id": 19386, + "name": "Zoe Culloden", + "site_detail_url": "https://comicvine.gamespot.com/zoe-culloden/4005-19386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19387/", + "id": 19387, + "name": "Great Beast", + "site_detail_url": "https://comicvine.gamespot.com/great-beast/4005-19387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19388/", + "id": 19388, + "name": "Pale Flower", + "site_detail_url": "https://comicvine.gamespot.com/pale-flower/4005-19388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19389/", + "id": 19389, + "name": "Iron Monk", + "site_detail_url": "https://comicvine.gamespot.com/iron-monk/4005-19389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19390/", + "id": 19390, + "name": "Stavros", + "site_detail_url": "https://comicvine.gamespot.com/stavros/4005-19390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19393/", + "id": 19393, + "name": "Ebon Flame", + "site_detail_url": "https://comicvine.gamespot.com/ebon-flame/4005-19393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19394/", + "id": 19394, + "name": "Carter Tenko", + "site_detail_url": "https://comicvine.gamespot.com/carter-tenko/4005-19394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19397/", + "id": 19397, + "name": "Yelena Belova", + "site_detail_url": "https://comicvine.gamespot.com/yelena-belova/4005-19397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19603/", + "id": 19603, + "name": "Dynaman", + "site_detail_url": "https://comicvine.gamespot.com/dynaman/4005-19603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19643/", + "id": 19643, + "name": "Howitzer", + "site_detail_url": "https://comicvine.gamespot.com/howitzer/4005-19643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19647/", + "id": 19647, + "name": "Gale", + "site_detail_url": "https://comicvine.gamespot.com/gale/4005-19647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19649/", + "id": 19649, + "name": "Panther", + "site_detail_url": "https://comicvine.gamespot.com/panther/4005-19649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19684/", + "id": 19684, + "name": "Ultimo", + "site_detail_url": "https://comicvine.gamespot.com/ultimo/4005-19684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19686/", + "id": 19686, + "name": "Sapper", + "site_detail_url": "https://comicvine.gamespot.com/sapper/4005-19686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19688/", + "id": 19688, + "name": "Morgan Stark", + "site_detail_url": "https://comicvine.gamespot.com/morgan-stark/4005-19688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19690/", + "id": 19690, + "name": "Billy Yuan", + "site_detail_url": "https://comicvine.gamespot.com/billy-yuan/4005-19690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19691/", + "id": 19691, + "name": "Ramona Napier", + "site_detail_url": "https://comicvine.gamespot.com/ramona-napier/4005-19691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19751/", + "id": 19751, + "name": "Hoss", + "site_detail_url": "https://comicvine.gamespot.com/hoss/4005-19751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19758/", + "id": 19758, + "name": "Recoil", + "site_detail_url": "https://comicvine.gamespot.com/recoil/4005-19758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19791/", + "id": 19791, + "name": "Deadshot Darrance", + "site_detail_url": "https://comicvine.gamespot.com/deadshot-darrance/4005-19791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19808/", + "id": 19808, + "name": "Citadel", + "site_detail_url": "https://comicvine.gamespot.com/citadel/4005-19808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19835/", + "id": 19835, + "name": "Whiplash (Vanko)", + "site_detail_url": "https://comicvine.gamespot.com/whiplash-vanko/4005-19835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19842/", + "id": 19842, + "name": "Doc Yagyu", + "site_detail_url": "https://comicvine.gamespot.com/doc-yagyu/4005-19842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19909/", + "id": 19909, + "name": "Damola", + "site_detail_url": "https://comicvine.gamespot.com/damola/4005-19909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19910/", + "id": 19910, + "name": "Everett K. Ross", + "site_detail_url": "https://comicvine.gamespot.com/everett-k-ross/4005-19910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19911/", + "id": 19911, + "name": "Achebe", + "site_detail_url": "https://comicvine.gamespot.com/achebe/4005-19911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19912/", + "id": 19912, + "name": "Baron Macabre", + "site_detail_url": "https://comicvine.gamespot.com/baron-macabre/4005-19912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19913/", + "id": 19913, + "name": "Venomm", + "site_detail_url": "https://comicvine.gamespot.com/venomm/4005-19913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19914/", + "id": 19914, + "name": "Lord Karnaj", + "site_detail_url": "https://comicvine.gamespot.com/lord-karnaj/4005-19914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19915/", + "id": 19915, + "name": "Sombre", + "site_detail_url": "https://comicvine.gamespot.com/sombre/4005-19915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19916/", + "id": 19916, + "name": "Madame Slay", + "site_detail_url": "https://comicvine.gamespot.com/madame-slay/4005-19916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19917/", + "id": 19917, + "name": "Preyy", + "site_detail_url": "https://comicvine.gamespot.com/preyy/4005-19917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19918/", + "id": 19918, + "name": "Okoye", + "site_detail_url": "https://comicvine.gamespot.com/okoye/4005-19918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19919/", + "id": 19919, + "name": "Nikolai Mordo", + "site_detail_url": "https://comicvine.gamespot.com/nikolai-mordo/4005-19919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19921/", + "id": 19921, + "name": "Officer Price", + "site_detail_url": "https://comicvine.gamespot.com/officer-price/4005-19921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19922/", + "id": 19922, + "name": "Deviant Child", + "site_detail_url": "https://comicvine.gamespot.com/deviant-child/4005-19922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19928/", + "id": 19928, + "name": "Dulpus", + "site_detail_url": "https://comicvine.gamespot.com/dulpus/4005-19928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19929/", + "id": 19929, + "name": "Glomm", + "site_detail_url": "https://comicvine.gamespot.com/glomm/4005-19929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19930/", + "id": 19930, + "name": "Steel Guardian", + "site_detail_url": "https://comicvine.gamespot.com/steel-guardian/4005-19930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19931/", + "id": 19931, + "name": "Starlight", + "site_detail_url": "https://comicvine.gamespot.com/starlight/4005-19931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19932/", + "id": 19932, + "name": "Duane Freeman", + "site_detail_url": "https://comicvine.gamespot.com/duane-freeman/4005-19932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19933/", + "id": 19933, + "name": "Serestus", + "site_detail_url": "https://comicvine.gamespot.com/serestus/4005-19933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19934/", + "id": 19934, + "name": "Bloodwraith", + "site_detail_url": "https://comicvine.gamespot.com/bloodwraith/4005-19934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19935/", + "id": 19935, + "name": "Lord Templar", + "site_detail_url": "https://comicvine.gamespot.com/lord-templar/4005-19935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19936/", + "id": 19936, + "name": "Ego", + "site_detail_url": "https://comicvine.gamespot.com/ego/4005-19936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19938/", + "id": 19938, + "name": "Charcoal", + "site_detail_url": "https://comicvine.gamespot.com/charcoal/4005-19938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19941/", + "id": 19941, + "name": "Dreadnought", + "site_detail_url": "https://comicvine.gamespot.com/dreadnought/4005-19941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19942/", + "id": 19942, + "name": "Kulan Gath", + "site_detail_url": "https://comicvine.gamespot.com/kulan-gath/4005-19942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19943/", + "id": 19943, + "name": "Peliali", + "site_detail_url": "https://comicvine.gamespot.com/peliali/4005-19943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19945/", + "id": 19945, + "name": "Conquest", + "site_detail_url": "https://comicvine.gamespot.com/conquest/4005-19945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19946/", + "id": 19946, + "name": "Alkhema", + "site_detail_url": "https://comicvine.gamespot.com/alkhema/4005-19946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19947/", + "id": 19947, + "name": "Arkon", + "site_detail_url": "https://comicvine.gamespot.com/arkon/4005-19947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19948/", + "id": 19948, + "name": "Doomsday Man", + "site_detail_url": "https://comicvine.gamespot.com/doomsday-man/4005-19948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19950/", + "id": 19950, + "name": "Dominex", + "site_detail_url": "https://comicvine.gamespot.com/dominex/4005-19950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19952/", + "id": 19952, + "name": "Imus Champion", + "site_detail_url": "https://comicvine.gamespot.com/imus-champion/4005-19952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19953/", + "id": 19953, + "name": "Galen Kor", + "site_detail_url": "https://comicvine.gamespot.com/galen-kor/4005-19953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19955/", + "id": 19955, + "name": "The Shape", + "site_detail_url": "https://comicvine.gamespot.com/the-shape/4005-19955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19957/", + "id": 19957, + "name": "Blue Shield", + "site_detail_url": "https://comicvine.gamespot.com/blue-shield/4005-19957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19959/", + "id": 19959, + "name": "Offset", + "site_detail_url": "https://comicvine.gamespot.com/offset/4005-19959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19960/", + "id": 19960, + "name": "Demolition Man", + "site_detail_url": "https://comicvine.gamespot.com/demolition-man/4005-19960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19961/", + "id": 19961, + "name": "Mordred the Evil", + "site_detail_url": "https://comicvine.gamespot.com/mordred-the-evil/4005-19961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19989/", + "id": 19989, + "name": "Sa'tneen", + "site_detail_url": "https://comicvine.gamespot.com/satneen/4005-19989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-19994/", + "id": 19994, + "name": "T-Ray", + "site_detail_url": "https://comicvine.gamespot.com/t-ray/4005-19994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20010/", + "id": 20010, + "name": "Tad Carter", + "site_detail_url": "https://comicvine.gamespot.com/tad-carter/4005-20010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20011/", + "id": 20011, + "name": "Gwen Glitter", + "site_detail_url": "https://comicvine.gamespot.com/gwen-glitter/4005-20011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20012/", + "id": 20012, + "name": "Linda Carter", + "site_detail_url": "https://comicvine.gamespot.com/linda-carter/4005-20012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20013/", + "id": 20013, + "name": "Steve Stuart", + "site_detail_url": "https://comicvine.gamespot.com/steve-stuart/4005-20013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20019/", + "id": 20019, + "name": "Justice Peace", + "site_detail_url": "https://comicvine.gamespot.com/justice-peace/4005-20019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20020/", + "id": 20020, + "name": "Justice Might", + "site_detail_url": "https://comicvine.gamespot.com/justice-might/4005-20020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20021/", + "id": 20021, + "name": "Justice Liberty", + "site_detail_url": "https://comicvine.gamespot.com/justice-liberty/4005-20021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20022/", + "id": 20022, + "name": "Kubik", + "site_detail_url": "https://comicvine.gamespot.com/kubik/4005-20022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20024/", + "id": 20024, + "name": "Wildstreak", + "site_detail_url": "https://comicvine.gamespot.com/wildstreak/4005-20024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20025/", + "id": 20025, + "name": "Emanuel King", + "site_detail_url": "https://comicvine.gamespot.com/emanuel-king/4005-20025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20026/", + "id": 20026, + "name": "Delinquent", + "site_detail_url": "https://comicvine.gamespot.com/delinquent/4005-20026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20027/", + "id": 20027, + "name": "Zabyk", + "site_detail_url": "https://comicvine.gamespot.com/zabyk/4005-20027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20028/", + "id": 20028, + "name": "Prince Dezan", + "site_detail_url": "https://comicvine.gamespot.com/prince-dezan/4005-20028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20047/", + "id": 20047, + "name": "Pete", + "site_detail_url": "https://comicvine.gamespot.com/pete/4005-20047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20081/", + "id": 20081, + "name": "Overkiller", + "site_detail_url": "https://comicvine.gamespot.com/overkiller/4005-20081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20085/", + "id": 20085, + "name": "Timebroker", + "site_detail_url": "https://comicvine.gamespot.com/timebroker/4005-20085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20086/", + "id": 20086, + "name": "Lucifer", + "site_detail_url": "https://comicvine.gamespot.com/lucifer/4005-20086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20114/", + "id": 20114, + "name": "The Buzz", + "site_detail_url": "https://comicvine.gamespot.com/the-buzz/4005-20114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20116/", + "id": 20116, + "name": "Funny Face", + "site_detail_url": "https://comicvine.gamespot.com/funny-face/4005-20116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20117/", + "id": 20117, + "name": "Killerwatt", + "site_detail_url": "https://comicvine.gamespot.com/killerwatt/4005-20117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20118/", + "id": 20118, + "name": "Sabreclaw", + "site_detail_url": "https://comicvine.gamespot.com/sabreclaw/4005-20118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20119/", + "id": 20119, + "name": "Mr. Abnormal", + "site_detail_url": "https://comicvine.gamespot.com/mr-abnormal/4005-20119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20120/", + "id": 20120, + "name": "Crazy Eight", + "site_detail_url": "https://comicvine.gamespot.com/crazy-eight/4005-20120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20121/", + "id": 20121, + "name": "Freejack", + "site_detail_url": "https://comicvine.gamespot.com/freejack/4005-20121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20122/", + "id": 20122, + "name": "Dragonfist", + "site_detail_url": "https://comicvine.gamespot.com/dragonfist/4005-20122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20128/", + "id": 20128, + "name": "Sailor Sweeney", + "site_detail_url": "https://comicvine.gamespot.com/sailor-sweeney/4005-20128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20161/", + "id": 20161, + "name": "Gary Paretsky", + "site_detail_url": "https://comicvine.gamespot.com/gary-paretsky/4005-20161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20176/", + "id": 20176, + "name": "Jeff", + "site_detail_url": "https://comicvine.gamespot.com/jeff/4005-20176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20245/", + "id": 20245, + "name": "Jane", + "site_detail_url": "https://comicvine.gamespot.com/jane/4005-20245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20276/", + "id": 20276, + "name": "Sabre", + "site_detail_url": "https://comicvine.gamespot.com/sabre/4005-20276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20278/", + "id": 20278, + "name": "M'Shulla", + "site_detail_url": "https://comicvine.gamespot.com/mshulla/4005-20278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20279/", + "id": 20279, + "name": "Skar", + "site_detail_url": "https://comicvine.gamespot.com/skar/4005-20279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20336/", + "id": 20336, + "name": "Doctor Fear", + "site_detail_url": "https://comicvine.gamespot.com/doctor-fear/4005-20336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20339/", + "id": 20339, + "name": "Rizzo", + "site_detail_url": "https://comicvine.gamespot.com/rizzo/4005-20339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20390/", + "id": 20390, + "name": "Joshua Blaine", + "site_detail_url": "https://comicvine.gamespot.com/joshua-blaine/4005-20390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20392/", + "id": 20392, + "name": "White Fang", + "site_detail_url": "https://comicvine.gamespot.com/white-fang/4005-20392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20398/", + "id": 20398, + "name": "The Invisible Man", + "site_detail_url": "https://comicvine.gamespot.com/the-invisible-man/4005-20398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20574/", + "id": 20574, + "name": "Princess Teela", + "site_detail_url": "https://comicvine.gamespot.com/princess-teela/4005-20574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20576/", + "id": 20576, + "name": "Glot", + "site_detail_url": "https://comicvine.gamespot.com/glot/4005-20576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20577/", + "id": 20577, + "name": "Ant-Man (Lang)", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-lang/4005-20577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20578/", + "id": 20578, + "name": "Evelyn Richards", + "site_detail_url": "https://comicvine.gamespot.com/evelyn-richards/4005-20578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20579/", + "id": 20579, + "name": "Mary Storm", + "site_detail_url": "https://comicvine.gamespot.com/mary-storm/4005-20579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20580/", + "id": 20580, + "name": "Egg", + "site_detail_url": "https://comicvine.gamespot.com/egg/4005-20580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20582/", + "id": 20582, + "name": "Kargul", + "site_detail_url": "https://comicvine.gamespot.com/kargul/4005-20582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20586/", + "id": 20586, + "name": "Rootar", + "site_detail_url": "https://comicvine.gamespot.com/rootar/4005-20586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20588/", + "id": 20588, + "name": "Sprite", + "site_detail_url": "https://comicvine.gamespot.com/sprite/4005-20588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20589/", + "id": 20589, + "name": "Arex", + "site_detail_url": "https://comicvine.gamespot.com/arex/4005-20589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20590/", + "id": 20590, + "name": "Khoryphos", + "site_detail_url": "https://comicvine.gamespot.com/khoryphos/4005-20590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20591/", + "id": 20591, + "name": "Phastos", + "site_detail_url": "https://comicvine.gamespot.com/phastos/4005-20591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20592/", + "id": 20592, + "name": "Myrmidon", + "site_detail_url": "https://comicvine.gamespot.com/myrmidon/4005-20592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20593/", + "id": 20593, + "name": "Bellam", + "site_detail_url": "https://comicvine.gamespot.com/bellam/4005-20593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20594/", + "id": 20594, + "name": "Blitziana", + "site_detail_url": "https://comicvine.gamespot.com/blitziana/4005-20594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20595/", + "id": 20595, + "name": "Anak", + "site_detail_url": "https://comicvine.gamespot.com/anak/4005-20595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20596/", + "id": 20596, + "name": "Zefra", + "site_detail_url": "https://comicvine.gamespot.com/zefra/4005-20596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20598/", + "id": 20598, + "name": "Princess Pearla", + "site_detail_url": "https://comicvine.gamespot.com/princess-pearla/4005-20598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20599/", + "id": 20599, + "name": "Two-Headed Thing", + "site_detail_url": "https://comicvine.gamespot.com/two-headed-thing/4005-20599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20600/", + "id": 20600, + "name": "Molten Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/molten-man-thing/4005-20600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20601/", + "id": 20601, + "name": "Grottu King Of The Insects", + "site_detail_url": "https://comicvine.gamespot.com/grottu-king-of-the-insects/4005-20601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20602/", + "id": 20602, + "name": "Rorgg King of the Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/rorgg-king-of-the-spider-men/4005-20602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20604/", + "id": 20604, + "name": "Sharon Ventura", + "site_detail_url": "https://comicvine.gamespot.com/sharon-ventura/4005-20604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20606/", + "id": 20606, + "name": "Achilles", + "site_detail_url": "https://comicvine.gamespot.com/achilles/4005-20606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20607/", + "id": 20607, + "name": "Atalanta", + "site_detail_url": "https://comicvine.gamespot.com/atalanta/4005-20607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20608/", + "id": 20608, + "name": "Paris", + "site_detail_url": "https://comicvine.gamespot.com/paris/4005-20608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20609/", + "id": 20609, + "name": "Ajax", + "site_detail_url": "https://comicvine.gamespot.com/ajax/4005-20609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20610/", + "id": 20610, + "name": "Ahura", + "site_detail_url": "https://comicvine.gamespot.com/ahura/4005-20610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20638/", + "id": 20638, + "name": "Firestryke", + "site_detail_url": "https://comicvine.gamespot.com/firestryke/4005-20638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20773/", + "id": 20773, + "name": "Saga", + "site_detail_url": "https://comicvine.gamespot.com/saga/4005-20773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20786/", + "id": 20786, + "name": "Silverhoof", + "site_detail_url": "https://comicvine.gamespot.com/silverhoof/4005-20786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21011/", + "id": 21011, + "name": "Visage", + "site_detail_url": "https://comicvine.gamespot.com/visage/4005-21011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21093/", + "id": 21093, + "name": "Kabal", + "site_detail_url": "https://comicvine.gamespot.com/kabal/4005-21093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21094/", + "id": 21094, + "name": "Ice 9", + "site_detail_url": "https://comicvine.gamespot.com/ice-9/4005-21094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21135/", + "id": 21135, + "name": "Ugarth", + "site_detail_url": "https://comicvine.gamespot.com/ugarth/4005-21135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21162/", + "id": 21162, + "name": "Martin Soap", + "site_detail_url": "https://comicvine.gamespot.com/martin-soap/4005-21162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21163/", + "id": 21163, + "name": "Molly von Richthofen", + "site_detail_url": "https://comicvine.gamespot.com/molly-von-richthofen/4005-21163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21164/", + "id": 21164, + "name": "Ma Gnucci", + "site_detail_url": "https://comicvine.gamespot.com/ma-gnucci/4005-21164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21166/", + "id": 21166, + "name": "Mrs. Pearse", + "site_detail_url": "https://comicvine.gamespot.com/mrs-pearse/4005-21166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21167/", + "id": 21167, + "name": "Spacker Dave", + "site_detail_url": "https://comicvine.gamespot.com/spacker-dave/4005-21167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21168/", + "id": 21168, + "name": "Joan", + "site_detail_url": "https://comicvine.gamespot.com/joan/4005-21168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21169/", + "id": 21169, + "name": "Mr. Bumpo", + "site_detail_url": "https://comicvine.gamespot.com/mr-bumpo/4005-21169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21170/", + "id": 21170, + "name": "Elite", + "site_detail_url": "https://comicvine.gamespot.com/elite/4005-21170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21171/", + "id": 21171, + "name": "Benny", + "site_detail_url": "https://comicvine.gamespot.com/benny/4005-21171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21172/", + "id": 21172, + "name": "Al Grummet", + "site_detail_url": "https://comicvine.gamespot.com/al-grummet/4005-21172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21188/", + "id": 21188, + "name": "Tigra", + "site_detail_url": "https://comicvine.gamespot.com/tigra/4005-21188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21191/", + "id": 21191, + "name": "Aegis", + "site_detail_url": "https://comicvine.gamespot.com/aegis/4005-21191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21192/", + "id": 21192, + "name": "Junzo Muto", + "site_detail_url": "https://comicvine.gamespot.com/junzo-muto/4005-21192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21193/", + "id": 21193, + "name": "Firestrike", + "site_detail_url": "https://comicvine.gamespot.com/firestrike/4005-21193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21194/", + "id": 21194, + "name": "Adora", + "site_detail_url": "https://comicvine.gamespot.com/adora/4005-21194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21195/", + "id": 21195, + "name": "Steel Serpent", + "site_detail_url": "https://comicvine.gamespot.com/steel-serpent/4005-21195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21196/", + "id": 21196, + "name": "Genecide", + "site_detail_url": "https://comicvine.gamespot.com/genecide/4005-21196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21197/", + "id": 21197, + "name": "Walter Rosen", + "site_detail_url": "https://comicvine.gamespot.com/walter-rosen/4005-21197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21198/", + "id": 21198, + "name": "Alex Power", + "site_detail_url": "https://comicvine.gamespot.com/alex-power/4005-21198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21201/", + "id": 21201, + "name": "Black Fox", + "site_detail_url": "https://comicvine.gamespot.com/black-fox/4005-21201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21202/", + "id": 21202, + "name": "Nightingale", + "site_detail_url": "https://comicvine.gamespot.com/nightingale/4005-21202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21203/", + "id": 21203, + "name": "Gadfly", + "site_detail_url": "https://comicvine.gamespot.com/gadfly/4005-21203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21204/", + "id": 21204, + "name": "Mister Justice", + "site_detail_url": "https://comicvine.gamespot.com/mister-justice/4005-21204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21205/", + "id": 21205, + "name": "Pixie", + "site_detail_url": "https://comicvine.gamespot.com/pixie/4005-21205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21206/", + "id": 21206, + "name": "Oxbow", + "site_detail_url": "https://comicvine.gamespot.com/oxbow/4005-21206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21208/", + "id": 21208, + "name": "Yankee Clipper", + "site_detail_url": "https://comicvine.gamespot.com/yankee-clipper/4005-21208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21209/", + "id": 21209, + "name": "Liberty Girl", + "site_detail_url": "https://comicvine.gamespot.com/liberty-girl/4005-21209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21210/", + "id": 21210, + "name": "Rumor", + "site_detail_url": "https://comicvine.gamespot.com/rumor/4005-21210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21211/", + "id": 21211, + "name": "Effigy", + "site_detail_url": "https://comicvine.gamespot.com/effigy/4005-21211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21212/", + "id": 21212, + "name": "Gene", + "site_detail_url": "https://comicvine.gamespot.com/gene/4005-21212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21214/", + "id": 21214, + "name": "Zawadi", + "site_detail_url": "https://comicvine.gamespot.com/zawadi/4005-21214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21215/", + "id": 21215, + "name": "Scythe", + "site_detail_url": "https://comicvine.gamespot.com/scythe/4005-21215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21216/", + "id": 21216, + "name": "Blackjack", + "site_detail_url": "https://comicvine.gamespot.com/blackjack/4005-21216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21219/", + "id": 21219, + "name": "Vyrra", + "site_detail_url": "https://comicvine.gamespot.com/vyrra/4005-21219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21220/", + "id": 21220, + "name": "Lump", + "site_detail_url": "https://comicvine.gamespot.com/lump/4005-21220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21222/", + "id": 21222, + "name": "Rebound", + "site_detail_url": "https://comicvine.gamespot.com/rebound/4005-21222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21224/", + "id": 21224, + "name": "Sunshine", + "site_detail_url": "https://comicvine.gamespot.com/sunshine/4005-21224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21225/", + "id": 21225, + "name": "Captain Hip", + "site_detail_url": "https://comicvine.gamespot.com/captain-hip/4005-21225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21227/", + "id": 21227, + "name": "Katyusha", + "site_detail_url": "https://comicvine.gamespot.com/katyusha/4005-21227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21228/", + "id": 21228, + "name": "Typhoon", + "site_detail_url": "https://comicvine.gamespot.com/typhoon/4005-21228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21229/", + "id": 21229, + "name": "Axis", + "site_detail_url": "https://comicvine.gamespot.com/axis/4005-21229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21230/", + "id": 21230, + "name": "Howler", + "site_detail_url": "https://comicvine.gamespot.com/howler/4005-21230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21231/", + "id": 21231, + "name": "Positron", + "site_detail_url": "https://comicvine.gamespot.com/positron/4005-21231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21232/", + "id": 21232, + "name": "Knight Templar", + "site_detail_url": "https://comicvine.gamespot.com/knight-templar/4005-21232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21233/", + "id": 21233, + "name": "Vulcan", + "site_detail_url": "https://comicvine.gamespot.com/vulcan/4005-21233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21234/", + "id": 21234, + "name": "Reflex", + "site_detail_url": "https://comicvine.gamespot.com/reflex/4005-21234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21235/", + "id": 21235, + "name": "Flatiron", + "site_detail_url": "https://comicvine.gamespot.com/flatiron/4005-21235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21238/", + "id": 21238, + "name": "Squire", + "site_detail_url": "https://comicvine.gamespot.com/squire/4005-21238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21239/", + "id": 21239, + "name": "Eternal Brain", + "site_detail_url": "https://comicvine.gamespot.com/eternal-brain/4005-21239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21240/", + "id": 21240, + "name": "Riot-Act", + "site_detail_url": "https://comicvine.gamespot.com/riot-act/4005-21240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21254/", + "id": 21254, + "name": "Archer Leopold", + "site_detail_url": "https://comicvine.gamespot.com/archer-leopold/4005-21254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21256/", + "id": 21256, + "name": "Jonas Tolliver", + "site_detail_url": "https://comicvine.gamespot.com/jonas-tolliver/4005-21256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21257/", + "id": 21257, + "name": "Emma Tolliver", + "site_detail_url": "https://comicvine.gamespot.com/emma-tolliver/4005-21257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21327/", + "id": 21327, + "name": "Kofi", + "site_detail_url": "https://comicvine.gamespot.com/kofi/4005-21327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21328/", + "id": 21328, + "name": "Friday", + "site_detail_url": "https://comicvine.gamespot.com/friday/4005-21328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21329/", + "id": 21329, + "name": "Queen Mother Maraud", + "site_detail_url": "https://comicvine.gamespot.com/queen-mother-maraud/4005-21329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21332/", + "id": 21332, + "name": "Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/super-skrull/4005-21332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21418/", + "id": 21418, + "name": "Ramrod", + "site_detail_url": "https://comicvine.gamespot.com/ramrod/4005-21418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21443/", + "id": 21443, + "name": "Heartbreaker", + "site_detail_url": "https://comicvine.gamespot.com/heartbreaker/4005-21443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21457/", + "id": 21457, + "name": "Vapora", + "site_detail_url": "https://comicvine.gamespot.com/vapora/4005-21457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21553/", + "id": 21553, + "name": "Morgana Blessing", + "site_detail_url": "https://comicvine.gamespot.com/morgana-blessing/4005-21553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21554/", + "id": 21554, + "name": "Imei", + "site_detail_url": "https://comicvine.gamespot.com/imei/4005-21554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21555/", + "id": 21555, + "name": "Sara Wolfe", + "site_detail_url": "https://comicvine.gamespot.com/sara-wolfe/4005-21555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21556/", + "id": 21556, + "name": "Victor Strange", + "site_detail_url": "https://comicvine.gamespot.com/victor-strange/4005-21556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21558/", + "id": 21558, + "name": "Cagliostro", + "site_detail_url": "https://comicvine.gamespot.com/cagliostro/4005-21558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21560/", + "id": 21560, + "name": "Silver Dagger", + "site_detail_url": "https://comicvine.gamespot.com/silver-dagger/4005-21560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21561/", + "id": 21561, + "name": "Carol Danvers", + "site_detail_url": "https://comicvine.gamespot.com/carol-danvers/4005-21561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21562/", + "id": 21562, + "name": "Donna Strange", + "site_detail_url": "https://comicvine.gamespot.com/donna-strange/4005-21562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21563/", + "id": 21563, + "name": "Brandon Forsythe", + "site_detail_url": "https://comicvine.gamespot.com/brandon-forsythe/4005-21563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21574/", + "id": 21574, + "name": "Miles Blackgar", + "site_detail_url": "https://comicvine.gamespot.com/miles-blackgar/4005-21574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21575/", + "id": 21575, + "name": "Marlene Blackgar", + "site_detail_url": "https://comicvine.gamespot.com/marlene-blackgar/4005-21575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21577/", + "id": 21577, + "name": "Dragonus", + "site_detail_url": "https://comicvine.gamespot.com/dragonus/4005-21577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21578/", + "id": 21578, + "name": "Lissa Russell", + "site_detail_url": "https://comicvine.gamespot.com/lissa-russell/4005-21578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21579/", + "id": 21579, + "name": "Guiseppe Montesi", + "site_detail_url": "https://comicvine.gamespot.com/guiseppe-montesi/4005-21579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21581/", + "id": 21581, + "name": "Urthona", + "site_detail_url": "https://comicvine.gamespot.com/urthona/4005-21581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21583/", + "id": 21583, + "name": "Mephista", + "site_detail_url": "https://comicvine.gamespot.com/mephista/4005-21583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21584/", + "id": 21584, + "name": "Agamotto", + "site_detail_url": "https://comicvine.gamespot.com/agamotto/4005-21584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21585/", + "id": 21585, + "name": "Viscount Heinrich Krowler", + "site_detail_url": "https://comicvine.gamespot.com/viscount-heinrich-krowler/4005-21585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21587/", + "id": 21587, + "name": "Sara Krowler Mordo", + "site_detail_url": "https://comicvine.gamespot.com/sara-krowler-mordo/4005-21587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21590/", + "id": 21590, + "name": "Chiantang the Black Dragon", + "site_detail_url": "https://comicvine.gamespot.com/chiantang-the-black-dragon/4005-21590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21592/", + "id": 21592, + "name": "Dafydd ap Iowerth", + "site_detail_url": "https://comicvine.gamespot.com/dafydd-ap-iowerth/4005-21592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21594/", + "id": 21594, + "name": "Cyanide", + "site_detail_url": "https://comicvine.gamespot.com/cyanide/4005-21594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21607/", + "id": 21607, + "name": "NFL Superpro", + "site_detail_url": "https://comicvine.gamespot.com/nfl-superpro/4005-21607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21628/", + "id": 21628, + "name": "White Cloak", + "site_detail_url": "https://comicvine.gamespot.com/white-cloak/4005-21628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21630/", + "id": 21630, + "name": "Vichy Vixen", + "site_detail_url": "https://comicvine.gamespot.com/vichy-vixen/4005-21630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21631/", + "id": 21631, + "name": "Penny Panzer", + "site_detail_url": "https://comicvine.gamespot.com/penny-panzer/4005-21631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21632/", + "id": 21632, + "name": "Powell McTeague", + "site_detail_url": "https://comicvine.gamespot.com/powell-mcteague/4005-21632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21636/", + "id": 21636, + "name": "Beta Red", + "site_detail_url": "https://comicvine.gamespot.com/beta-red/4005-21636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21641/", + "id": 21641, + "name": "Iron Ghost", + "site_detail_url": "https://comicvine.gamespot.com/iron-ghost/4005-21641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21642/", + "id": 21642, + "name": "Grimm Chamber", + "site_detail_url": "https://comicvine.gamespot.com/grimm-chamber/4005-21642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21644/", + "id": 21644, + "name": "Demon-Ock", + "site_detail_url": "https://comicvine.gamespot.com/demon-ock/4005-21644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21647/", + "id": 21647, + "name": "Threadgold", + "site_detail_url": "https://comicvine.gamespot.com/threadgold/4005-21647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21652/", + "id": 21652, + "name": "Bloodhound", + "site_detail_url": "https://comicvine.gamespot.com/bloodhound/4005-21652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21656/", + "id": 21656, + "name": "Sergeant Haldeman", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-haldeman/4005-21656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21657/", + "id": 21657, + "name": "Bazooka", + "site_detail_url": "https://comicvine.gamespot.com/bazooka/4005-21657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21658/", + "id": 21658, + "name": "Gridlock", + "site_detail_url": "https://comicvine.gamespot.com/gridlock/4005-21658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21673/", + "id": 21673, + "name": "Jacob Feinman", + "site_detail_url": "https://comicvine.gamespot.com/jacob-feinman/4005-21673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21674/", + "id": 21674, + "name": "Karen Lee Ross", + "site_detail_url": "https://comicvine.gamespot.com/karen-lee-ross/4005-21674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21677/", + "id": 21677, + "name": "Sultan Magus", + "site_detail_url": "https://comicvine.gamespot.com/sultan-magus/4005-21677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21706/", + "id": 21706, + "name": "Amenhotep", + "site_detail_url": "https://comicvine.gamespot.com/amenhotep/4005-21706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21714/", + "id": 21714, + "name": "Zora Risman", + "site_detail_url": "https://comicvine.gamespot.com/zora-risman/4005-21714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21752/", + "id": 21752, + "name": "Judith Rassendyll", + "site_detail_url": "https://comicvine.gamespot.com/judith-rassendyll/4005-21752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21755/", + "id": 21755, + "name": "Banzai", + "site_detail_url": "https://comicvine.gamespot.com/banzai/4005-21755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21758/", + "id": 21758, + "name": "Lord Samedar", + "site_detail_url": "https://comicvine.gamespot.com/lord-samedar/4005-21758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21761/", + "id": 21761, + "name": "Garokk", + "site_detail_url": "https://comicvine.gamespot.com/garokk/4005-21761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21785/", + "id": 21785, + "name": "Nyssa", + "site_detail_url": "https://comicvine.gamespot.com/nyssa/4005-21785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21816/", + "id": 21816, + "name": "Madame Mauser", + "site_detail_url": "https://comicvine.gamespot.com/madame-mauser/4005-21816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21823/", + "id": 21823, + "name": "Neooqtoq", + "site_detail_url": "https://comicvine.gamespot.com/neooqtoq/4005-21823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21827/", + "id": 21827, + "name": "Sir Marcus Grantby-Fox", + "site_detail_url": "https://comicvine.gamespot.com/sir-marcus-grantby-fox/4005-21827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21850/", + "id": 21850, + "name": "Yutaka", + "site_detail_url": "https://comicvine.gamespot.com/yutaka/4005-21850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21912/", + "id": 21912, + "name": "Hawk", + "site_detail_url": "https://comicvine.gamespot.com/hawk/4005-21912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21914/", + "id": 21914, + "name": "Lt. Patrick D. Mitchell", + "site_detail_url": "https://comicvine.gamespot.com/lt-patrick-d-mitchell/4005-21914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21915/", + "id": 21915, + "name": "Mj. Lucas Parker", + "site_detail_url": "https://comicvine.gamespot.com/mj-lucas-parker/4005-21915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21916/", + "id": 21916, + "name": "Yu-Ti", + "site_detail_url": "https://comicvine.gamespot.com/yu-ti/4005-21916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21948/", + "id": 21948, + "name": "Zaladane", + "site_detail_url": "https://comicvine.gamespot.com/zaladane/4005-21948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21949/", + "id": 21949, + "name": "Nereel", + "site_detail_url": "https://comicvine.gamespot.com/nereel/4005-21949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21951/", + "id": 21951, + "name": "Jahf", + "site_detail_url": "https://comicvine.gamespot.com/jahf/4005-21951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21952/", + "id": 21952, + "name": "Modt", + "site_detail_url": "https://comicvine.gamespot.com/modt/4005-21952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21953/", + "id": 21953, + "name": "Soul-Drinker", + "site_detail_url": "https://comicvine.gamespot.com/soul-drinker/4005-21953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21956/", + "id": 21956, + "name": "David Munroe", + "site_detail_url": "https://comicvine.gamespot.com/david-munroe/4005-21956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21961/", + "id": 21961, + "name": "Michael Rossi", + "site_detail_url": "https://comicvine.gamespot.com/michael-rossi/4005-21961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21992/", + "id": 21992, + "name": "Smuggler", + "site_detail_url": "https://comicvine.gamespot.com/smuggler/4005-21992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21996/", + "id": 21996, + "name": "Scream", + "site_detail_url": "https://comicvine.gamespot.com/scream/4005-21996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21998/", + "id": 21998, + "name": "Ogre", + "site_detail_url": "https://comicvine.gamespot.com/ogre/4005-21998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21999/", + "id": 21999, + "name": "Andrea Sterman", + "site_detail_url": "https://comicvine.gamespot.com/andrea-sterman/4005-21999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22000/", + "id": 22000, + "name": "Miles Warton", + "site_detail_url": "https://comicvine.gamespot.com/miles-warton/4005-22000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22002/", + "id": 22002, + "name": "ISAAC", + "site_detail_url": "https://comicvine.gamespot.com/isaac/4005-22002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22004/", + "id": 22004, + "name": "Togaro", + "site_detail_url": "https://comicvine.gamespot.com/togaro/4005-22004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22006/", + "id": 22006, + "name": "John Watkins", + "site_detail_url": "https://comicvine.gamespot.com/john-watkins/4005-22006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22007/", + "id": 22007, + "name": "Fafnir Hellhand", + "site_detail_url": "https://comicvine.gamespot.com/fafnir-hellhand/4005-22007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22008/", + "id": 22008, + "name": "Blue Diamond", + "site_detail_url": "https://comicvine.gamespot.com/blue-diamond/4005-22008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22009/", + "id": 22009, + "name": "Jack Norriss", + "site_detail_url": "https://comicvine.gamespot.com/jack-norriss/4005-22009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22091/", + "id": 22091, + "name": "Bosephus", + "site_detail_url": "https://comicvine.gamespot.com/bosephus/4005-22091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22132/", + "id": 22132, + "name": "Ms. Puck-Man", + "site_detail_url": "https://comicvine.gamespot.com/ms-puck-man/4005-22132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22154/", + "id": 22154, + "name": "Marlin the Wizard", + "site_detail_url": "https://comicvine.gamespot.com/marlin-the-wizard/4005-22154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22188/", + "id": 22188, + "name": "Ra'ktar", + "site_detail_url": "https://comicvine.gamespot.com/raktar/4005-22188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22193/", + "id": 22193, + "name": "Yao", + "site_detail_url": "https://comicvine.gamespot.com/yao/4005-22193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22249/", + "id": 22249, + "name": "Yuppunisher", + "site_detail_url": "https://comicvine.gamespot.com/yuppunisher/4005-22249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22252/", + "id": 22252, + "name": "Manzo", + "site_detail_url": "https://comicvine.gamespot.com/manzo/4005-22252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22257/", + "id": 22257, + "name": "Star", + "site_detail_url": "https://comicvine.gamespot.com/star/4005-22257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22261/", + "id": 22261, + "name": "Flame", + "site_detail_url": "https://comicvine.gamespot.com/flame/4005-22261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22263/", + "id": 22263, + "name": "Hack", + "site_detail_url": "https://comicvine.gamespot.com/hack/4005-22263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22264/", + "id": 22264, + "name": "Iris Green", + "site_detail_url": "https://comicvine.gamespot.com/iris-green/4005-22264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22269/", + "id": 22269, + "name": "Morgan Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/morgan-sinclair/4005-22269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22278/", + "id": 22278, + "name": "Julius Carbone", + "site_detail_url": "https://comicvine.gamespot.com/julius-carbone/4005-22278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22279/", + "id": 22279, + "name": "Yuriko Ezaki", + "site_detail_url": "https://comicvine.gamespot.com/yuriko-ezaki/4005-22279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22292/", + "id": 22292, + "name": "Outlaw", + "site_detail_url": "https://comicvine.gamespot.com/outlaw/4005-22292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22346/", + "id": 22346, + "name": "Spratt", + "site_detail_url": "https://comicvine.gamespot.com/spratt/4005-22346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22428/", + "id": 22428, + "name": "Angela Lipscombe", + "site_detail_url": "https://comicvine.gamespot.com/angela-lipscombe/4005-22428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22429/", + "id": 22429, + "name": "Nadia Blonsky", + "site_detail_url": "https://comicvine.gamespot.com/nadia-blonsky/4005-22429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22430/", + "id": 22430, + "name": "Mr. Foster", + "site_detail_url": "https://comicvine.gamespot.com/mr-foster/4005-22430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22431/", + "id": 22431, + "name": "Nobby Pyles", + "site_detail_url": "https://comicvine.gamespot.com/nobby-pyles/4005-22431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22432/", + "id": 22432, + "name": "Charlie Delfini", + "site_detail_url": "https://comicvine.gamespot.com/charlie-delfini/4005-22432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22433/", + "id": 22433, + "name": "Dicky Delfini", + "site_detail_url": "https://comicvine.gamespot.com/dicky-delfini/4005-22433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22434/", + "id": 22434, + "name": "Ancient", + "site_detail_url": "https://comicvine.gamespot.com/ancient/4005-22434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22435/", + "id": 22435, + "name": "John Ryker", + "site_detail_url": "https://comicvine.gamespot.com/john-ryker/4005-22435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22436/", + "id": 22436, + "name": "Flux", + "site_detail_url": "https://comicvine.gamespot.com/flux/4005-22436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22437/", + "id": 22437, + "name": "Mr. Johnson", + "site_detail_url": "https://comicvine.gamespot.com/mr-johnson/4005-22437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22522/", + "id": 22522, + "name": "Bruttu", + "site_detail_url": "https://comicvine.gamespot.com/bruttu/4005-22522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22523/", + "id": 22523, + "name": "Xemnu", + "site_detail_url": "https://comicvine.gamespot.com/xemnu/4005-22523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22524/", + "id": 22524, + "name": "Tragg", + "site_detail_url": "https://comicvine.gamespot.com/tragg/4005-22524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22525/", + "id": 22525, + "name": "Gomdulla", + "site_detail_url": "https://comicvine.gamespot.com/gomdulla/4005-22525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22528/", + "id": 22528, + "name": "Gorgilla", + "site_detail_url": "https://comicvine.gamespot.com/gorgilla/4005-22528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22529/", + "id": 22529, + "name": "Kraggoom", + "site_detail_url": "https://comicvine.gamespot.com/kraggoom/4005-22529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22554/", + "id": 22554, + "name": "Nelvanna", + "site_detail_url": "https://comicvine.gamespot.com/nelvanna/4005-22554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22561/", + "id": 22561, + "name": "Voyager", + "site_detail_url": "https://comicvine.gamespot.com/voyager/4005-22561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22576/", + "id": 22576, + "name": "Nikki Adams", + "site_detail_url": "https://comicvine.gamespot.com/nikki-adams/4005-22576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22581/", + "id": 22581, + "name": "Malice", + "site_detail_url": "https://comicvine.gamespot.com/malice/4005-22581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22583/", + "id": 22583, + "name": "Morgan", + "site_detail_url": "https://comicvine.gamespot.com/morgan/4005-22583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22584/", + "id": 22584, + "name": "Cottonmouth", + "site_detail_url": "https://comicvine.gamespot.com/cottonmouth/4005-22584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22586/", + "id": 22586, + "name": "Dzhokhar Gapon", + "site_detail_url": "https://comicvine.gamespot.com/dzhokhar-gapon/4005-22586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22589/", + "id": 22589, + "name": "Senator Kamal Rakim", + "site_detail_url": "https://comicvine.gamespot.com/senator-kamal-rakim/4005-22589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22590/", + "id": 22590, + "name": "Manuel Ramos", + "site_detail_url": "https://comicvine.gamespot.com/manuel-ramos/4005-22590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22591/", + "id": 22591, + "name": "Delroy Richmond", + "site_detail_url": "https://comicvine.gamespot.com/delroy-richmond/4005-22591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22598/", + "id": 22598, + "name": "Windshear", + "site_detail_url": "https://comicvine.gamespot.com/windshear/4005-22598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22610/", + "id": 22610, + "name": "Richie Robertson", + "site_detail_url": "https://comicvine.gamespot.com/richie-robertson/4005-22610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22611/", + "id": 22611, + "name": "Doctor Jade", + "site_detail_url": "https://comicvine.gamespot.com/doctor-jade/4005-22611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22613/", + "id": 22613, + "name": "Justine Hammer", + "site_detail_url": "https://comicvine.gamespot.com/justine-hammer/4005-22613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22614/", + "id": 22614, + "name": "Angie", + "site_detail_url": "https://comicvine.gamespot.com/angie/4005-22614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22631/", + "id": 22631, + "name": "Iron Cross", + "site_detail_url": "https://comicvine.gamespot.com/iron-cross/4005-22631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22632/", + "id": 22632, + "name": "Goldfire", + "site_detail_url": "https://comicvine.gamespot.com/goldfire/4005-22632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22644/", + "id": 22644, + "name": "Gunhawk", + "site_detail_url": "https://comicvine.gamespot.com/gunhawk/4005-22644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22647/", + "id": 22647, + "name": "Fred Davis", + "site_detail_url": "https://comicvine.gamespot.com/fred-davis/4005-22647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22648/", + "id": 22648, + "name": "Isadora Martinez", + "site_detail_url": "https://comicvine.gamespot.com/isadora-martinez/4005-22648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22667/", + "id": 22667, + "name": "Susquatch", + "site_detail_url": "https://comicvine.gamespot.com/susquatch/4005-22667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22668/", + "id": 22668, + "name": "Moondog", + "site_detail_url": "https://comicvine.gamespot.com/moondog/4005-22668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22669/", + "id": 22669, + "name": "John Watkins III", + "site_detail_url": "https://comicvine.gamespot.com/john-watkins-iii/4005-22669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22671/", + "id": 22671, + "name": "Samuel Higgins", + "site_detail_url": "https://comicvine.gamespot.com/samuel-higgins/4005-22671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22674/", + "id": 22674, + "name": "Wynona Wingfoot", + "site_detail_url": "https://comicvine.gamespot.com/wynona-wingfoot/4005-22674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22687/", + "id": 22687, + "name": "Simon Steele", + "site_detail_url": "https://comicvine.gamespot.com/simon-steele/4005-22687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22711/", + "id": 22711, + "name": "Shakti", + "site_detail_url": "https://comicvine.gamespot.com/shakti/4005-22711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22712/", + "id": 22712, + "name": "Divinity", + "site_detail_url": "https://comicvine.gamespot.com/divinity/4005-22712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22713/", + "id": 22713, + "name": "Lancer", + "site_detail_url": "https://comicvine.gamespot.com/lancer/4005-22713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22714/", + "id": 22714, + "name": "Technarx", + "site_detail_url": "https://comicvine.gamespot.com/technarx/4005-22714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22740/", + "id": 22740, + "name": "Outlaw Kid", + "site_detail_url": "https://comicvine.gamespot.com/outlaw-kid/4005-22740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22741/", + "id": 22741, + "name": "Gunhawk", + "site_detail_url": "https://comicvine.gamespot.com/gunhawk/4005-22741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22742/", + "id": 22742, + "name": "Marcel Fournier", + "site_detail_url": "https://comicvine.gamespot.com/marcel-fournier/4005-22742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22743/", + "id": 22743, + "name": "Nightriders", + "site_detail_url": "https://comicvine.gamespot.com/nightriders/4005-22743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22744/", + "id": 22744, + "name": "Caleb Hammer", + "site_detail_url": "https://comicvine.gamespot.com/caleb-hammer/4005-22744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22745/", + "id": 22745, + "name": "Cass Jones", + "site_detail_url": "https://comicvine.gamespot.com/cass-jones/4005-22745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22746/", + "id": 22746, + "name": "Ghost Wind Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-wind-rider/4005-22746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22747/", + "id": 22747, + "name": "Flaming Star", + "site_detail_url": "https://comicvine.gamespot.com/flaming-star/4005-22747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22750/", + "id": 22750, + "name": "Maria Pilar", + "site_detail_url": "https://comicvine.gamespot.com/maria-pilar/4005-22750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22751/", + "id": 22751, + "name": "Neal Conan", + "site_detail_url": "https://comicvine.gamespot.com/neal-conan/4005-22751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22752/", + "id": 22752, + "name": "Bob Edwards", + "site_detail_url": "https://comicvine.gamespot.com/bob-edwards/4005-22752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22753/", + "id": 22753, + "name": "Manoli Wetherell", + "site_detail_url": "https://comicvine.gamespot.com/manoli-wetherell/4005-22753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22789/", + "id": 22789, + "name": "Mary Jones", + "site_detail_url": "https://comicvine.gamespot.com/mary-jones/4005-22789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22794/", + "id": 22794, + "name": "Gayle Rogers", + "site_detail_url": "https://comicvine.gamespot.com/gayle-rogers/4005-22794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22795/", + "id": 22795, + "name": "Eamonn", + "site_detail_url": "https://comicvine.gamespot.com/eamonn/4005-22795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22796/", + "id": 22796, + "name": "Bobbie Haggert", + "site_detail_url": "https://comicvine.gamespot.com/bobbie-haggert/4005-22796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22800/", + "id": 22800, + "name": "Wild Thing", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing/4005-22800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22834/", + "id": 22834, + "name": "Shrew", + "site_detail_url": "https://comicvine.gamespot.com/shrew/4005-22834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22835/", + "id": 22835, + "name": "Ashema", + "site_detail_url": "https://comicvine.gamespot.com/ashema/4005-22835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22836/", + "id": 22836, + "name": "Dreaming Celestial", + "site_detail_url": "https://comicvine.gamespot.com/dreaming-celestial/4005-22836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22853/", + "id": 22853, + "name": "Clay Brickford", + "site_detail_url": "https://comicvine.gamespot.com/clay-brickford/4005-22853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22872/", + "id": 22872, + "name": "Caledonia", + "site_detail_url": "https://comicvine.gamespot.com/caledonia/4005-22872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22873/", + "id": 22873, + "name": "Puppy", + "site_detail_url": "https://comicvine.gamespot.com/puppy/4005-22873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22874/", + "id": 22874, + "name": "Bounty", + "site_detail_url": "https://comicvine.gamespot.com/bounty/4005-22874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22905/", + "id": 22905, + "name": "Lockdown", + "site_detail_url": "https://comicvine.gamespot.com/lockdown/4005-22905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22906/", + "id": 22906, + "name": "Rosetta Stone", + "site_detail_url": "https://comicvine.gamespot.com/rosetta-stone/4005-22906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22908/", + "id": 22908, + "name": "Brother Royal", + "site_detail_url": "https://comicvine.gamespot.com/brother-royal/4005-22908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22912/", + "id": 22912, + "name": "Cheer Chadwick", + "site_detail_url": "https://comicvine.gamespot.com/cheer-chadwick/4005-22912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22914/", + "id": 22914, + "name": "Fizgig", + "site_detail_url": "https://comicvine.gamespot.com/fizgig/4005-22914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22915/", + "id": 22915, + "name": "Hoopsnake", + "site_detail_url": "https://comicvine.gamespot.com/hoopsnake/4005-22915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22916/", + "id": 22916, + "name": "Ingot", + "site_detail_url": "https://comicvine.gamespot.com/ingot/4005-22916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22917/", + "id": 22917, + "name": "Loblolly", + "site_detail_url": "https://comicvine.gamespot.com/loblolly/4005-22917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22918/", + "id": 22918, + "name": "Scarum", + "site_detail_url": "https://comicvine.gamespot.com/scarum/4005-22918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22919/", + "id": 22919, + "name": "Watchfire", + "site_detail_url": "https://comicvine.gamespot.com/watchfire/4005-22919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22920/", + "id": 22920, + "name": "Torus Storm", + "site_detail_url": "https://comicvine.gamespot.com/torus-storm/4005-22920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22922/", + "id": 22922, + "name": "Alasdhair Kinross", + "site_detail_url": "https://comicvine.gamespot.com/alasdhair-kinross/4005-22922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22935/", + "id": 22935, + "name": "Fieldstone", + "site_detail_url": "https://comicvine.gamespot.com/fieldstone/4005-22935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22940/", + "id": 22940, + "name": "Thrash Bandit", + "site_detail_url": "https://comicvine.gamespot.com/thrash-bandit/4005-22940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22991/", + "id": 22991, + "name": "Hoarfrost", + "site_detail_url": "https://comicvine.gamespot.com/hoarfrost/4005-22991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22994/", + "id": 22994, + "name": "Nemesus", + "site_detail_url": "https://comicvine.gamespot.com/nemesus/4005-22994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-22999/", + "id": 22999, + "name": "Ion Man", + "site_detail_url": "https://comicvine.gamespot.com/ion-man/4005-22999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23000/", + "id": 23000, + "name": "Earth Sentry", + "site_detail_url": "https://comicvine.gamespot.com/earth-sentry/4005-23000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23001/", + "id": 23001, + "name": "Coal Tiger", + "site_detail_url": "https://comicvine.gamespot.com/coal-tiger/4005-23001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23002/", + "id": 23002, + "name": "Argo", + "site_detail_url": "https://comicvine.gamespot.com/argo/4005-23002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23003/", + "id": 23003, + "name": "Red Queen", + "site_detail_url": "https://comicvine.gamespot.com/red-queen/4005-23003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23004/", + "id": 23004, + "name": "Web-Man", + "site_detail_url": "https://comicvine.gamespot.com/web-man/4005-23004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23005/", + "id": 23005, + "name": "Yvette Diamonde", + "site_detail_url": "https://comicvine.gamespot.com/yvette-diamonde/4005-23005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23006/", + "id": 23006, + "name": "Exalt", + "site_detail_url": "https://comicvine.gamespot.com/exalt/4005-23006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23007/", + "id": 23007, + "name": "Margali Szardos", + "site_detail_url": "https://comicvine.gamespot.com/margali-szardos/4005-23007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23016/", + "id": 23016, + "name": "Blind Al", + "site_detail_url": "https://comicvine.gamespot.com/blind-al/4005-23016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23020/", + "id": 23020, + "name": "Angry Eagle", + "site_detail_url": "https://comicvine.gamespot.com/angry-eagle/4005-23020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23021/", + "id": 23021, + "name": "Simian", + "site_detail_url": "https://comicvine.gamespot.com/simian/4005-23021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23022/", + "id": 23022, + "name": "Spanner", + "site_detail_url": "https://comicvine.gamespot.com/spanner/4005-23022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23023/", + "id": 23023, + "name": "Spyral", + "site_detail_url": "https://comicvine.gamespot.com/spyral/4005-23023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23024/", + "id": 23024, + "name": "Crimson Curse", + "site_detail_url": "https://comicvine.gamespot.com/crimson-curse/4005-23024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23036/", + "id": 23036, + "name": "Raymond Warren", + "site_detail_url": "https://comicvine.gamespot.com/raymond-warren/4005-23036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23041/", + "id": 23041, + "name": "Magneta", + "site_detail_url": "https://comicvine.gamespot.com/magneta/4005-23041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23042/", + "id": 23042, + "name": "Daze", + "site_detail_url": "https://comicvine.gamespot.com/daze/4005-23042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23070/", + "id": 23070, + "name": "Blacklight", + "site_detail_url": "https://comicvine.gamespot.com/blacklight/4005-23070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23072/", + "id": 23072, + "name": "Fireworks", + "site_detail_url": "https://comicvine.gamespot.com/fireworks/4005-23072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23074/", + "id": 23074, + "name": "Stalyenko", + "site_detail_url": "https://comicvine.gamespot.com/stalyenko/4005-23074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23075/", + "id": 23075, + "name": "Bixby", + "site_detail_url": "https://comicvine.gamespot.com/bixby/4005-23075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23076/", + "id": 23076, + "name": "Mendicus", + "site_detail_url": "https://comicvine.gamespot.com/mendicus/4005-23076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23077/", + "id": 23077, + "name": "Nahrees", + "site_detail_url": "https://comicvine.gamespot.com/nahrees/4005-23077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23078/", + "id": 23078, + "name": "Neifi", + "site_detail_url": "https://comicvine.gamespot.com/neifi/4005-23078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23079/", + "id": 23079, + "name": "Dinu", + "site_detail_url": "https://comicvine.gamespot.com/dinu/4005-23079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23080/", + "id": 23080, + "name": "Tonaja", + "site_detail_url": "https://comicvine.gamespot.com/tonaja/4005-23080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23082/", + "id": 23082, + "name": "Woz", + "site_detail_url": "https://comicvine.gamespot.com/woz/4005-23082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23097/", + "id": 23097, + "name": "Enthralla", + "site_detail_url": "https://comicvine.gamespot.com/enthralla/4005-23097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23098/", + "id": 23098, + "name": "Alda Huxley", + "site_detail_url": "https://comicvine.gamespot.com/alda-huxley/4005-23098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23101/", + "id": 23101, + "name": "Greg Bestman", + "site_detail_url": "https://comicvine.gamespot.com/greg-bestman/4005-23101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23102/", + "id": 23102, + "name": "Kree Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/kree-giant-man/4005-23102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23105/", + "id": 23105, + "name": "Prophet-Singer", + "site_detail_url": "https://comicvine.gamespot.com/prophet-singer/4005-23105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23111/", + "id": 23111, + "name": "Parody", + "site_detail_url": "https://comicvine.gamespot.com/parody/4005-23111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23118/", + "id": 23118, + "name": "Gaia", + "site_detail_url": "https://comicvine.gamespot.com/gaia/4005-23118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23119/", + "id": 23119, + "name": "Callie Yaeger", + "site_detail_url": "https://comicvine.gamespot.com/callie-yaeger/4005-23119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23134/", + "id": 23134, + "name": "Majeston Zelia", + "site_detail_url": "https://comicvine.gamespot.com/majeston-zelia/4005-23134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23138/", + "id": 23138, + "name": "Flag-Smasher (Thierrault)", + "site_detail_url": "https://comicvine.gamespot.com/flag-smasher-thierrault/4005-23138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23140/", + "id": 23140, + "name": "Sligguth", + "site_detail_url": "https://comicvine.gamespot.com/sligguth/4005-23140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23156/", + "id": 23156, + "name": "Overboss Dixon", + "site_detail_url": "https://comicvine.gamespot.com/overboss-dixon/4005-23156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23157/", + "id": 23157, + "name": "Montgomery", + "site_detail_url": "https://comicvine.gamespot.com/montgomery/4005-23157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23158/", + "id": 23158, + "name": "Tiamat", + "site_detail_url": "https://comicvine.gamespot.com/tiamat/4005-23158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23171/", + "id": 23171, + "name": "Nicholas Macabes", + "site_detail_url": "https://comicvine.gamespot.com/nicholas-macabes/4005-23171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23172/", + "id": 23172, + "name": "Dr. Cobbwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-cobbwell/4005-23172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23183/", + "id": 23183, + "name": "Lionmane", + "site_detail_url": "https://comicvine.gamespot.com/lionmane/4005-23183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23184/", + "id": 23184, + "name": "Sai", + "site_detail_url": "https://comicvine.gamespot.com/sai/4005-23184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23185/", + "id": 23185, + "name": "Bambi Arbogast", + "site_detail_url": "https://comicvine.gamespot.com/bambi-arbogast/4005-23185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23190/", + "id": 23190, + "name": "Slippery Sam", + "site_detail_url": "https://comicvine.gamespot.com/slippery-sam/4005-23190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23197/", + "id": 23197, + "name": "Black Crane", + "site_detail_url": "https://comicvine.gamespot.com/black-crane/4005-23197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23210/", + "id": 23210, + "name": "Ness", + "site_detail_url": "https://comicvine.gamespot.com/ness/4005-23210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23223/", + "id": 23223, + "name": "Max Schiffman", + "site_detail_url": "https://comicvine.gamespot.com/max-schiffman/4005-23223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23226/", + "id": 23226, + "name": "Salt", + "site_detail_url": "https://comicvine.gamespot.com/salt/4005-23226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23229/", + "id": 23229, + "name": "Tam", + "site_detail_url": "https://comicvine.gamespot.com/tam/4005-23229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23230/", + "id": 23230, + "name": "Jomo Kimane", + "site_detail_url": "https://comicvine.gamespot.com/jomo-kimane/4005-23230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23231/", + "id": 23231, + "name": "Farisa Mansour", + "site_detail_url": "https://comicvine.gamespot.com/farisa-mansour/4005-23231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23241/", + "id": 23241, + "name": "Tom Cullen", + "site_detail_url": "https://comicvine.gamespot.com/tom-cullen/4005-23241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23242/", + "id": 23242, + "name": "Harold Lauder", + "site_detail_url": "https://comicvine.gamespot.com/harold-lauder/4005-23242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23243/", + "id": 23243, + "name": "Nadine Cross", + "site_detail_url": "https://comicvine.gamespot.com/nadine-cross/4005-23243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23249/", + "id": 23249, + "name": "Matthew Plunder", + "site_detail_url": "https://comicvine.gamespot.com/matthew-plunder/4005-23249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23250/", + "id": 23250, + "name": "Zira", + "site_detail_url": "https://comicvine.gamespot.com/zira/4005-23250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23252/", + "id": 23252, + "name": "Dherk", + "site_detail_url": "https://comicvine.gamespot.com/dherk/4005-23252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23257/", + "id": 23257, + "name": "Manx", + "site_detail_url": "https://comicvine.gamespot.com/manx/4005-23257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23274/", + "id": 23274, + "name": "Buffer Zone", + "site_detail_url": "https://comicvine.gamespot.com/buffer-zone/4005-23274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23292/", + "id": 23292, + "name": "Folma", + "site_detail_url": "https://comicvine.gamespot.com/folma/4005-23292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23321/", + "id": 23321, + "name": "Bravado", + "site_detail_url": "https://comicvine.gamespot.com/bravado/4005-23321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23322/", + "id": 23322, + "name": "Mustang", + "site_detail_url": "https://comicvine.gamespot.com/mustang/4005-23322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23330/", + "id": 23330, + "name": "Pipeline", + "site_detail_url": "https://comicvine.gamespot.com/pipeline/4005-23330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23331/", + "id": 23331, + "name": "Punchout", + "site_detail_url": "https://comicvine.gamespot.com/punchout/4005-23331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23341/", + "id": 23341, + "name": "Rollerblast", + "site_detail_url": "https://comicvine.gamespot.com/rollerblast/4005-23341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23358/", + "id": 23358, + "name": "Texas Kid", + "site_detail_url": "https://comicvine.gamespot.com/texas-kid/4005-23358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23374/", + "id": 23374, + "name": "Guladkin", + "site_detail_url": "https://comicvine.gamespot.com/guladkin/4005-23374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23379/", + "id": 23379, + "name": "Death Sting", + "site_detail_url": "https://comicvine.gamespot.com/death-sting/4005-23379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23380/", + "id": 23380, + "name": "Joy Meachum", + "site_detail_url": "https://comicvine.gamespot.com/joy-meachum/4005-23380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23381/", + "id": 23381, + "name": "Malik", + "site_detail_url": "https://comicvine.gamespot.com/malik/4005-23381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23382/", + "id": 23382, + "name": "Sharyd", + "site_detail_url": "https://comicvine.gamespot.com/sharyd/4005-23382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23400/", + "id": 23400, + "name": "Kaleb the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/kaleb-the-destroyer/4005-23400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23412/", + "id": 23412, + "name": "Parnival Plunder", + "site_detail_url": "https://comicvine.gamespot.com/parnival-plunder/4005-23412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23415/", + "id": 23415, + "name": "Nettles", + "site_detail_url": "https://comicvine.gamespot.com/nettles/4005-23415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23416/", + "id": 23416, + "name": "Chambliss", + "site_detail_url": "https://comicvine.gamespot.com/chambliss/4005-23416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23417/", + "id": 23417, + "name": "Munson", + "site_detail_url": "https://comicvine.gamespot.com/munson/4005-23417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23421/", + "id": 23421, + "name": "Daniel Kingsley", + "site_detail_url": "https://comicvine.gamespot.com/daniel-kingsley/4005-23421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23423/", + "id": 23423, + "name": "Ellen Hibbert", + "site_detail_url": "https://comicvine.gamespot.com/ellen-hibbert/4005-23423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23424/", + "id": 23424, + "name": "Hope Hibbert", + "site_detail_url": "https://comicvine.gamespot.com/hope-hibbert/4005-23424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23425/", + "id": 23425, + "name": "Jameka", + "site_detail_url": "https://comicvine.gamespot.com/jameka/4005-23425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23426/", + "id": 23426, + "name": "Dez", + "site_detail_url": "https://comicvine.gamespot.com/dez/4005-23426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23427/", + "id": 23427, + "name": "Etuban", + "site_detail_url": "https://comicvine.gamespot.com/etuban/4005-23427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23428/", + "id": 23428, + "name": "Lord Anon", + "site_detail_url": "https://comicvine.gamespot.com/lord-anon/4005-23428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23429/", + "id": 23429, + "name": "Lord Tyger", + "site_detail_url": "https://comicvine.gamespot.com/lord-tyger/4005-23429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23430/", + "id": 23430, + "name": "Lady Vermin", + "site_detail_url": "https://comicvine.gamespot.com/lady-vermin/4005-23430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23431/", + "id": 23431, + "name": "Strider", + "site_detail_url": "https://comicvine.gamespot.com/strider/4005-23431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23439/", + "id": 23439, + "name": "China Doll", + "site_detail_url": "https://comicvine.gamespot.com/china-doll/4005-23439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23440/", + "id": 23440, + "name": "Numbers", + "site_detail_url": "https://comicvine.gamespot.com/numbers/4005-23440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23441/", + "id": 23441, + "name": "Scatterbrain", + "site_detail_url": "https://comicvine.gamespot.com/scatterbrain/4005-23441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23447/", + "id": 23447, + "name": "Sheila Willis", + "site_detail_url": "https://comicvine.gamespot.com/sheila-willis/4005-23447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23453/", + "id": 23453, + "name": "Karel", + "site_detail_url": "https://comicvine.gamespot.com/karel/4005-23453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23454/", + "id": 23454, + "name": "Dr. Killebrew", + "site_detail_url": "https://comicvine.gamespot.com/dr-killebrew/4005-23454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23455/", + "id": 23455, + "name": "Ilaney Brukner", + "site_detail_url": "https://comicvine.gamespot.com/ilaney-brukner/4005-23455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23461/", + "id": 23461, + "name": "Colonel Preston Case", + "site_detail_url": "https://comicvine.gamespot.com/colonel-preston-case/4005-23461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23466/", + "id": 23466, + "name": "Neutron", + "site_detail_url": "https://comicvine.gamespot.com/neutron/4005-23466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23477/", + "id": 23477, + "name": "Lou Snider", + "site_detail_url": "https://comicvine.gamespot.com/lou-snider/4005-23477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23484/", + "id": 23484, + "name": "Tundra", + "site_detail_url": "https://comicvine.gamespot.com/tundra/4005-23484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23485/", + "id": 23485, + "name": "Kolomaq", + "site_detail_url": "https://comicvine.gamespot.com/kolomaq/4005-23485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23486/", + "id": 23486, + "name": "Somon", + "site_detail_url": "https://comicvine.gamespot.com/somon/4005-23486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23487/", + "id": 23487, + "name": "Ferro 2", + "site_detail_url": "https://comicvine.gamespot.com/ferro-2/4005-23487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23488/", + "id": 23488, + "name": "Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mastermind/4005-23488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23532/", + "id": 23532, + "name": "Ronald R. Tilton", + "site_detail_url": "https://comicvine.gamespot.com/ronald-r-tilton/4005-23532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23533/", + "id": 23533, + "name": "Vashti", + "site_detail_url": "https://comicvine.gamespot.com/vashti/4005-23533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23583/", + "id": 23583, + "name": "Conundrum", + "site_detail_url": "https://comicvine.gamespot.com/conundrum/4005-23583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23584/", + "id": 23584, + "name": "Hazram Chaliz", + "site_detail_url": "https://comicvine.gamespot.com/hazram-chaliz/4005-23584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23585/", + "id": 23585, + "name": "Tabriaz Chaliz", + "site_detail_url": "https://comicvine.gamespot.com/tabriaz-chaliz/4005-23585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23587/", + "id": 23587, + "name": "Mindy Brown", + "site_detail_url": "https://comicvine.gamespot.com/mindy-brown/4005-23587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23602/", + "id": 23602, + "name": "Isabel Aguirre", + "site_detail_url": "https://comicvine.gamespot.com/isabel-aguirre/4005-23602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23603/", + "id": 23603, + "name": "Gordon Clay", + "site_detail_url": "https://comicvine.gamespot.com/gordon-clay/4005-23603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23630/", + "id": 23630, + "name": "Detective Snipes", + "site_detail_url": "https://comicvine.gamespot.com/detective-snipes/4005-23630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23634/", + "id": 23634, + "name": "Warlord Keerg", + "site_detail_url": "https://comicvine.gamespot.com/warlord-keerg/4005-23634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23635/", + "id": 23635, + "name": "Madcap", + "site_detail_url": "https://comicvine.gamespot.com/madcap/4005-23635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23636/", + "id": 23636, + "name": "Sensational Hydra", + "site_detail_url": "https://comicvine.gamespot.com/sensational-hydra/4005-23636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23648/", + "id": 23648, + "name": "Centauron", + "site_detail_url": "https://comicvine.gamespot.com/centauron/4005-23648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23654/", + "id": 23654, + "name": "Hawd-Boiled Henwy", + "site_detail_url": "https://comicvine.gamespot.com/hawd-boiled-henwy/4005-23654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23673/", + "id": 23673, + "name": "The Camera Fiend", + "site_detail_url": "https://comicvine.gamespot.com/the-camera-fiend/4005-23673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23675/", + "id": 23675, + "name": "Bloodaxe", + "site_detail_url": "https://comicvine.gamespot.com/bloodaxe/4005-23675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23676/", + "id": 23676, + "name": "Jekuakkekt", + "site_detail_url": "https://comicvine.gamespot.com/jekuakkekt/4005-23676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23677/", + "id": 23677, + "name": "Jikekt", + "site_detail_url": "https://comicvine.gamespot.com/jikekt/4005-23677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23678/", + "id": 23678, + "name": "Tikuak", + "site_detail_url": "https://comicvine.gamespot.com/tikuak/4005-23678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23687/", + "id": 23687, + "name": "Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/gibbon/4005-23687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23688/", + "id": 23688, + "name": "Mad Hatter", + "site_detail_url": "https://comicvine.gamespot.com/mad-hatter/4005-23688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23689/", + "id": 23689, + "name": "Dormouse", + "site_detail_url": "https://comicvine.gamespot.com/dormouse/4005-23689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23692/", + "id": 23692, + "name": "Mr. Fear", + "site_detail_url": "https://comicvine.gamespot.com/mr-fear/4005-23692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23720/", + "id": 23720, + "name": "H.E.R.B.I.E.", + "site_detail_url": "https://comicvine.gamespot.com/herbie/4005-23720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23738/", + "id": 23738, + "name": "Rebecca Taylor", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-taylor/4005-23738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23754/", + "id": 23754, + "name": "Garak", + "site_detail_url": "https://comicvine.gamespot.com/garak/4005-23754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23757/", + "id": 23757, + "name": "Clarence Fielding", + "site_detail_url": "https://comicvine.gamespot.com/clarence-fielding/4005-23757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23758/", + "id": 23758, + "name": "Doctor Angst", + "site_detail_url": "https://comicvine.gamespot.com/doctor-angst/4005-23758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23797/", + "id": 23797, + "name": "Valentina de Fontaine", + "site_detail_url": "https://comicvine.gamespot.com/valentina-de-fontaine/4005-23797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23805/", + "id": 23805, + "name": "Badd Axe", + "site_detail_url": "https://comicvine.gamespot.com/badd-axe/4005-23805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23829/", + "id": 23829, + "name": "Shirley Lewis", + "site_detail_url": "https://comicvine.gamespot.com/shirley-lewis/4005-23829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23831/", + "id": 23831, + "name": "Sir", + "site_detail_url": "https://comicvine.gamespot.com/sir/4005-23831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23834/", + "id": 23834, + "name": "Jeryn Hogarth", + "site_detail_url": "https://comicvine.gamespot.com/jeryn-hogarth/4005-23834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23855/", + "id": 23855, + "name": "Sofija", + "site_detail_url": "https://comicvine.gamespot.com/sofija/4005-23855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23868/", + "id": 23868, + "name": "B'Arr", + "site_detail_url": "https://comicvine.gamespot.com/barr/4005-23868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23898/", + "id": 23898, + "name": "Trelane", + "site_detail_url": "https://comicvine.gamespot.com/trelane/4005-23898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23901/", + "id": 23901, + "name": "Robert April", + "site_detail_url": "https://comicvine.gamespot.com/robert-april/4005-23901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23903/", + "id": 23903, + "name": "Donovan Zane", + "site_detail_url": "https://comicvine.gamespot.com/donovan-zane/4005-23903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23904/", + "id": 23904, + "name": "Buel", + "site_detail_url": "https://comicvine.gamespot.com/buel/4005-23904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23905/", + "id": 23905, + "name": "Gunther Senreich", + "site_detail_url": "https://comicvine.gamespot.com/gunther-senreich/4005-23905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23906/", + "id": 23906, + "name": "Lord Churchill", + "site_detail_url": "https://comicvine.gamespot.com/lord-churchill/4005-23906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23907/", + "id": 23907, + "name": "Cranus", + "site_detail_url": "https://comicvine.gamespot.com/cranus/4005-23907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23908/", + "id": 23908, + "name": "Nestor", + "site_detail_url": "https://comicvine.gamespot.com/nestor/4005-23908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23909/", + "id": 23909, + "name": "Sir Delphis", + "site_detail_url": "https://comicvine.gamespot.com/sir-delphis/4005-23909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23910/", + "id": 23910, + "name": "Mr. Steed", + "site_detail_url": "https://comicvine.gamespot.com/mr-steed/4005-23910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23912/", + "id": 23912, + "name": "Talla Ron", + "site_detail_url": "https://comicvine.gamespot.com/talla-ron/4005-23912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23962/", + "id": 23962, + "name": "Tuzun Thune", + "site_detail_url": "https://comicvine.gamespot.com/tuzun-thune/4005-23962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23980/", + "id": 23980, + "name": "Dark Agnes", + "site_detail_url": "https://comicvine.gamespot.com/dark-agnes/4005-23980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-23998/", + "id": 23998, + "name": "Gen. Tskarov", + "site_detail_url": "https://comicvine.gamespot.com/gen-tskarov/4005-23998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24010/", + "id": 24010, + "name": "Llan", + "site_detail_url": "https://comicvine.gamespot.com/llan/4005-24010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24011/", + "id": 24011, + "name": "Jackknife", + "site_detail_url": "https://comicvine.gamespot.com/jackknife/4005-24011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24012/", + "id": 24012, + "name": "Harlequin Hitman", + "site_detail_url": "https://comicvine.gamespot.com/harlequin-hitman/4005-24012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24013/", + "id": 24013, + "name": "Ogur", + "site_detail_url": "https://comicvine.gamespot.com/ogur/4005-24013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24017/", + "id": 24017, + "name": "Authority", + "site_detail_url": "https://comicvine.gamespot.com/authority/4005-24017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24062/", + "id": 24062, + "name": "Grovel", + "site_detail_url": "https://comicvine.gamespot.com/grovel/4005-24062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24063/", + "id": 24063, + "name": "Spat", + "site_detail_url": "https://comicvine.gamespot.com/spat/4005-24063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24084/", + "id": 24084, + "name": "Ms. Steed", + "site_detail_url": "https://comicvine.gamespot.com/ms-steed/4005-24084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24119/", + "id": 24119, + "name": "First Strike", + "site_detail_url": "https://comicvine.gamespot.com/first-strike/4005-24119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24122/", + "id": 24122, + "name": "Captain Okada", + "site_detail_url": "https://comicvine.gamespot.com/captain-okada/4005-24122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24129/", + "id": 24129, + "name": "Hybrid", + "site_detail_url": "https://comicvine.gamespot.com/hybrid/4005-24129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24130/", + "id": 24130, + "name": "Madam Rapier", + "site_detail_url": "https://comicvine.gamespot.com/madam-rapier/4005-24130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24133/", + "id": 24133, + "name": "Plague", + "site_detail_url": "https://comicvine.gamespot.com/plague/4005-24133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24134/", + "id": 24134, + "name": "War (Kieros)", + "site_detail_url": "https://comicvine.gamespot.com/war-kieros/4005-24134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24135/", + "id": 24135, + "name": "Famine (Rolfson)", + "site_detail_url": "https://comicvine.gamespot.com/famine-rolfson/4005-24135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24137/", + "id": 24137, + "name": "Jason Ionello", + "site_detail_url": "https://comicvine.gamespot.com/jason-ionello/4005-24137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24138/", + "id": 24138, + "name": "Dr. Vasily Khandruvitch", + "site_detail_url": "https://comicvine.gamespot.com/dr-vasily-khandruvitch/4005-24138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24139/", + "id": 24139, + "name": "Odo", + "site_detail_url": "https://comicvine.gamespot.com/odo/4005-24139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24143/", + "id": 24143, + "name": "Dr. Ashley Kafka", + "site_detail_url": "https://comicvine.gamespot.com/dr-ashley-kafka/4005-24143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24144/", + "id": 24144, + "name": "Jessie Thompson", + "site_detail_url": "https://comicvine.gamespot.com/jessie-thompson/4005-24144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24145/", + "id": 24145, + "name": "Harrison Thompson", + "site_detail_url": "https://comicvine.gamespot.com/harrison-thompson/4005-24145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24146/", + "id": 24146, + "name": "Rose Thompson", + "site_detail_url": "https://comicvine.gamespot.com/rose-thompson/4005-24146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24147/", + "id": 24147, + "name": "Akasha Martinez", + "site_detail_url": "https://comicvine.gamespot.com/akasha-martinez/4005-24147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24189/", + "id": 24189, + "name": "Landscape", + "site_detail_url": "https://comicvine.gamespot.com/landscape/4005-24189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24208/", + "id": 24208, + "name": "Primal", + "site_detail_url": "https://comicvine.gamespot.com/primal/4005-24208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24214/", + "id": 24214, + "name": "Batwing", + "site_detail_url": "https://comicvine.gamespot.com/batwing/4005-24214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24215/", + "id": 24215, + "name": "Agent Sayer", + "site_detail_url": "https://comicvine.gamespot.com/agent-sayer/4005-24215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24218/", + "id": 24218, + "name": "Master of the World", + "site_detail_url": "https://comicvine.gamespot.com/master-of-the-world/4005-24218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24272/", + "id": 24272, + "name": "Rikki Barnes", + "site_detail_url": "https://comicvine.gamespot.com/rikki-barnes/4005-24272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24312/", + "id": 24312, + "name": "Weatherman", + "site_detail_url": "https://comicvine.gamespot.com/weatherman/4005-24312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24326/", + "id": 24326, + "name": "Tetherblood", + "site_detail_url": "https://comicvine.gamespot.com/tetherblood/4005-24326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24339/", + "id": 24339, + "name": "Charlie Evans", + "site_detail_url": "https://comicvine.gamespot.com/charlie-evans/4005-24339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24340/", + "id": 24340, + "name": "Gigantus", + "site_detail_url": "https://comicvine.gamespot.com/gigantus/4005-24340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24341/", + "id": 24341, + "name": "Groot", + "site_detail_url": "https://comicvine.gamespot.com/groot/4005-24341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24342/", + "id": 24342, + "name": "VanDoom Creature", + "site_detail_url": "https://comicvine.gamespot.com/vandoom-creature/4005-24342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24343/", + "id": 24343, + "name": "Blip", + "site_detail_url": "https://comicvine.gamespot.com/blip/4005-24343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24381/", + "id": 24381, + "name": "Flying Tiger", + "site_detail_url": "https://comicvine.gamespot.com/flying-tiger/4005-24381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24383/", + "id": 24383, + "name": "Moorg the Warlock", + "site_detail_url": "https://comicvine.gamespot.com/moorg-the-warlock/4005-24383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24388/", + "id": 24388, + "name": "Sister Maria De La Joya", + "site_detail_url": "https://comicvine.gamespot.com/sister-maria-de-la-joya/4005-24388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24398/", + "id": 24398, + "name": "Ashur", + "site_detail_url": "https://comicvine.gamespot.com/ashur/4005-24398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24399/", + "id": 24399, + "name": "Madison Jeffries", + "site_detail_url": "https://comicvine.gamespot.com/madison-jeffries/4005-24399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24401/", + "id": 24401, + "name": "Maris Morlak", + "site_detail_url": "https://comicvine.gamespot.com/maris-morlak/4005-24401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24402/", + "id": 24402, + "name": "Glorian", + "site_detail_url": "https://comicvine.gamespot.com/glorian/4005-24402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24449/", + "id": 24449, + "name": "Toxin", + "site_detail_url": "https://comicvine.gamespot.com/toxin/4005-24449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24453/", + "id": 24453, + "name": "Menace", + "site_detail_url": "https://comicvine.gamespot.com/menace/4005-24453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24459/", + "id": 24459, + "name": "Nina McCabe", + "site_detail_url": "https://comicvine.gamespot.com/nina-mccabe/4005-24459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24460/", + "id": 24460, + "name": "Konrad Weiss", + "site_detail_url": "https://comicvine.gamespot.com/konrad-weiss/4005-24460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24461/", + "id": 24461, + "name": "Tolomaq", + "site_detail_url": "https://comicvine.gamespot.com/tolomaq/4005-24461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24462/", + "id": 24462, + "name": "Trudi Scarlotti", + "site_detail_url": "https://comicvine.gamespot.com/trudi-scarlotti/4005-24462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24463/", + "id": 24463, + "name": "Shatterhead", + "site_detail_url": "https://comicvine.gamespot.com/shatterhead/4005-24463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24464/", + "id": 24464, + "name": "Architect", + "site_detail_url": "https://comicvine.gamespot.com/architect/4005-24464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24465/", + "id": 24465, + "name": "Insomnia", + "site_detail_url": "https://comicvine.gamespot.com/insomnia/4005-24465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24535/", + "id": 24535, + "name": "Chris Townsend", + "site_detail_url": "https://comicvine.gamespot.com/chris-townsend/4005-24535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24536/", + "id": 24536, + "name": "Mathala", + "site_detail_url": "https://comicvine.gamespot.com/mathala/4005-24536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24537/", + "id": 24537, + "name": "Chtylok", + "site_detail_url": "https://comicvine.gamespot.com/chtylok/4005-24537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24540/", + "id": 24540, + "name": "The Architect", + "site_detail_url": "https://comicvine.gamespot.com/the-architect/4005-24540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24581/", + "id": 24581, + "name": "Dismember", + "site_detail_url": "https://comicvine.gamespot.com/dismember/4005-24581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24582/", + "id": 24582, + "name": "Commander Cypher", + "site_detail_url": "https://comicvine.gamespot.com/commander-cypher/4005-24582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24589/", + "id": 24589, + "name": "Headline Hunter", + "site_detail_url": "https://comicvine.gamespot.com/headline-hunter/4005-24589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24592/", + "id": 24592, + "name": "Aquarian", + "site_detail_url": "https://comicvine.gamespot.com/aquarian/4005-24592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24594/", + "id": 24594, + "name": "Dr. Gerald Roth", + "site_detail_url": "https://comicvine.gamespot.com/dr-gerald-roth/4005-24594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24595/", + "id": 24595, + "name": "Tonga", + "site_detail_url": "https://comicvine.gamespot.com/tonga/4005-24595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24597/", + "id": 24597, + "name": "King Lau", + "site_detail_url": "https://comicvine.gamespot.com/king-lau/4005-24597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24633/", + "id": 24633, + "name": "Corrosion", + "site_detail_url": "https://comicvine.gamespot.com/corrosion/4005-24633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24635/", + "id": 24635, + "name": "Catalyst", + "site_detail_url": "https://comicvine.gamespot.com/catalyst/4005-24635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24646/", + "id": 24646, + "name": "Katherine Pulaski", + "site_detail_url": "https://comicvine.gamespot.com/katherine-pulaski/4005-24646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24648/", + "id": 24648, + "name": "Senator Robert Martin", + "site_detail_url": "https://comicvine.gamespot.com/senator-robert-martin/4005-24648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24649/", + "id": 24649, + "name": "Donald Menken", + "site_detail_url": "https://comicvine.gamespot.com/donald-menken/4005-24649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24652/", + "id": 24652, + "name": "Alyosha Kravinoff", + "site_detail_url": "https://comicvine.gamespot.com/alyosha-kravinoff/4005-24652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24653/", + "id": 24653, + "name": "Charlie Snow", + "site_detail_url": "https://comicvine.gamespot.com/charlie-snow/4005-24653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24668/", + "id": 24668, + "name": "Jemima Catmint", + "site_detail_url": "https://comicvine.gamespot.com/jemima-catmint/4005-24668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24681/", + "id": 24681, + "name": "Arcturus Rann", + "site_detail_url": "https://comicvine.gamespot.com/arcturus-rann/4005-24681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24682/", + "id": 24682, + "name": "Marionette", + "site_detail_url": "https://comicvine.gamespot.com/marionette/4005-24682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24694/", + "id": 24694, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4005-24694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24786/", + "id": 24786, + "name": "Starseed", + "site_detail_url": "https://comicvine.gamespot.com/starseed/4005-24786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24823/", + "id": 24823, + "name": "Gomurr The Ancient", + "site_detail_url": "https://comicvine.gamespot.com/gomurr-the-ancient/4005-24823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24825/", + "id": 24825, + "name": "Creaux", + "site_detail_url": "https://comicvine.gamespot.com/creaux/4005-24825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24827/", + "id": 24827, + "name": "Elf with a Gun", + "site_detail_url": "https://comicvine.gamespot.com/elf-with-a-gun/4005-24827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24828/", + "id": 24828, + "name": "Stygro", + "site_detail_url": "https://comicvine.gamespot.com/stygro/4005-24828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24829/", + "id": 24829, + "name": "Kidney Lady", + "site_detail_url": "https://comicvine.gamespot.com/kidney-lady/4005-24829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24831/", + "id": 24831, + "name": "Connor Trevane", + "site_detail_url": "https://comicvine.gamespot.com/connor-trevane/4005-24831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24834/", + "id": 24834, + "name": "Matt Talbot", + "site_detail_url": "https://comicvine.gamespot.com/matt-talbot/4005-24834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24835/", + "id": 24835, + "name": "Alex Wildman", + "site_detail_url": "https://comicvine.gamespot.com/alex-wildman/4005-24835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24836/", + "id": 24836, + "name": "Steelbow", + "site_detail_url": "https://comicvine.gamespot.com/steelbow/4005-24836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24868/", + "id": 24868, + "name": "Wallop", + "site_detail_url": "https://comicvine.gamespot.com/wallop/4005-24868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24871/", + "id": 24871, + "name": "Newton Destine", + "site_detail_url": "https://comicvine.gamespot.com/newton-destine/4005-24871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24873/", + "id": 24873, + "name": "Synraith", + "site_detail_url": "https://comicvine.gamespot.com/synraith/4005-24873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24914/", + "id": 24914, + "name": "Sharon Xavier", + "site_detail_url": "https://comicvine.gamespot.com/sharon-xavier/4005-24914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24916/", + "id": 24916, + "name": "Snake Marston", + "site_detail_url": "https://comicvine.gamespot.com/snake-marston/4005-24916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24917/", + "id": 24917, + "name": "Hammer Harrison", + "site_detail_url": "https://comicvine.gamespot.com/hammer-harrison/4005-24917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24928/", + "id": 24928, + "name": "Diane Cummings", + "site_detail_url": "https://comicvine.gamespot.com/diane-cummings/4005-24928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24947/", + "id": 24947, + "name": "Proctor Tar", + "site_detail_url": "https://comicvine.gamespot.com/proctor-tar/4005-24947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24948/", + "id": 24948, + "name": "Spite", + "site_detail_url": "https://comicvine.gamespot.com/spite/4005-24948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24949/", + "id": 24949, + "name": "Cyttorak", + "site_detail_url": "https://comicvine.gamespot.com/cyttorak/4005-24949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24959/", + "id": 24959, + "name": "The Mink", + "site_detail_url": "https://comicvine.gamespot.com/the-mink/4005-24959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-24983/", + "id": 24983, + "name": "N'Yaga", + "site_detail_url": "https://comicvine.gamespot.com/nyaga/4005-24983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25015/", + "id": 25015, + "name": "Nurse Fester", + "site_detail_url": "https://comicvine.gamespot.com/nurse-fester/4005-25015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25021/", + "id": 25021, + "name": "Kim Gaunt", + "site_detail_url": "https://comicvine.gamespot.com/kim-gaunt/4005-25021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25027/", + "id": 25027, + "name": "The Shooter", + "site_detail_url": "https://comicvine.gamespot.com/the-shooter/4005-25027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25064/", + "id": 25064, + "name": "Victoria Montesi", + "site_detail_url": "https://comicvine.gamespot.com/victoria-montesi/4005-25064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25066/", + "id": 25066, + "name": "Midwife", + "site_detail_url": "https://comicvine.gamespot.com/midwife/4005-25066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25069/", + "id": 25069, + "name": "Commanda", + "site_detail_url": "https://comicvine.gamespot.com/commanda/4005-25069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25073/", + "id": 25073, + "name": "Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/omnibus/4005-25073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25098/", + "id": 25098, + "name": "Afterlife", + "site_detail_url": "https://comicvine.gamespot.com/afterlife/4005-25098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25133/", + "id": 25133, + "name": "Amanda Payne Morrison", + "site_detail_url": "https://comicvine.gamespot.com/amanda-payne-morrison/4005-25133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25135/", + "id": 25135, + "name": "Hamir The Hermit", + "site_detail_url": "https://comicvine.gamespot.com/hamir-the-hermit/4005-25135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25139/", + "id": 25139, + "name": "Ranaq", + "site_detail_url": "https://comicvine.gamespot.com/ranaq/4005-25139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25144/", + "id": 25144, + "name": "Vice Agent", + "site_detail_url": "https://comicvine.gamespot.com/vice-agent/4005-25144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25193/", + "id": 25193, + "name": "Genesis", + "site_detail_url": "https://comicvine.gamespot.com/genesis/4005-25193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25194/", + "id": 25194, + "name": "Lifeforce", + "site_detail_url": "https://comicvine.gamespot.com/lifeforce/4005-25194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25195/", + "id": 25195, + "name": "Jamil", + "site_detail_url": "https://comicvine.gamespot.com/jamil/4005-25195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25196/", + "id": 25196, + "name": "Deadbolt", + "site_detail_url": "https://comicvine.gamespot.com/deadbolt/4005-25196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25197/", + "id": 25197, + "name": "Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/hurricane/4005-25197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25198/", + "id": 25198, + "name": "Spyne", + "site_detail_url": "https://comicvine.gamespot.com/spyne/4005-25198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25210/", + "id": 25210, + "name": "Bat-Wing", + "site_detail_url": "https://comicvine.gamespot.com/bat-wing/4005-25210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25211/", + "id": 25211, + "name": "Ogress", + "site_detail_url": "https://comicvine.gamespot.com/ogress/4005-25211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25212/", + "id": 25212, + "name": "Bulwark", + "site_detail_url": "https://comicvine.gamespot.com/bulwark/4005-25212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25215/", + "id": 25215, + "name": "Maxie Shiffman", + "site_detail_url": "https://comicvine.gamespot.com/maxie-shiffman/4005-25215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25220/", + "id": 25220, + "name": "Sangre", + "site_detail_url": "https://comicvine.gamespot.com/sangre/4005-25220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25253/", + "id": 25253, + "name": "Imak", + "site_detail_url": "https://comicvine.gamespot.com/imak/4005-25253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25258/", + "id": 25258, + "name": "Jessica Payne Morrison", + "site_detail_url": "https://comicvine.gamespot.com/jessica-payne-morrison/4005-25258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25259/", + "id": 25259, + "name": "Eugene Strange", + "site_detail_url": "https://comicvine.gamespot.com/eugene-strange/4005-25259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25260/", + "id": 25260, + "name": "Beverly Strange", + "site_detail_url": "https://comicvine.gamespot.com/beverly-strange/4005-25260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25266/", + "id": 25266, + "name": "Tobias", + "site_detail_url": "https://comicvine.gamespot.com/tobias/4005-25266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25267/", + "id": 25267, + "name": "Malachi", + "site_detail_url": "https://comicvine.gamespot.com/malachi/4005-25267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25287/", + "id": 25287, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-25287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25291/", + "id": 25291, + "name": "Price", + "site_detail_url": "https://comicvine.gamespot.com/price/4005-25291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25301/", + "id": 25301, + "name": "Hawkshaw", + "site_detail_url": "https://comicvine.gamespot.com/hawkshaw/4005-25301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25302/", + "id": 25302, + "name": "Chang", + "site_detail_url": "https://comicvine.gamespot.com/chang/4005-25302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25303/", + "id": 25303, + "name": "Emmet", + "site_detail_url": "https://comicvine.gamespot.com/emmet/4005-25303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25306/", + "id": 25306, + "name": "Headgear", + "site_detail_url": "https://comicvine.gamespot.com/headgear/4005-25306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25307/", + "id": 25307, + "name": "Headmistress", + "site_detail_url": "https://comicvine.gamespot.com/headmistress/4005-25307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25308/", + "id": 25308, + "name": "Thunder Head", + "site_detail_url": "https://comicvine.gamespot.com/thunder-head/4005-25308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25313/", + "id": 25313, + "name": "Josephine Pulaski", + "site_detail_url": "https://comicvine.gamespot.com/josephine-pulaski/4005-25313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25419/", + "id": 25419, + "name": "Noah Dubois", + "site_detail_url": "https://comicvine.gamespot.com/noah-dubois/4005-25419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25478/", + "id": 25478, + "name": "Korless", + "site_detail_url": "https://comicvine.gamespot.com/korless/4005-25478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25479/", + "id": 25479, + "name": "Grande Dame", + "site_detail_url": "https://comicvine.gamespot.com/grande-dame/4005-25479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25519/", + "id": 25519, + "name": "Token", + "site_detail_url": "https://comicvine.gamespot.com/token/4005-25519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25520/", + "id": 25520, + "name": "Vessel", + "site_detail_url": "https://comicvine.gamespot.com/vessel/4005-25520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25521/", + "id": 25521, + "name": "Hemingway", + "site_detail_url": "https://comicvine.gamespot.com/hemingway/4005-25521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25522/", + "id": 25522, + "name": "Sack", + "site_detail_url": "https://comicvine.gamespot.com/sack/4005-25522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25523/", + "id": 25523, + "name": "Reverb", + "site_detail_url": "https://comicvine.gamespot.com/reverb/4005-25523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25529/", + "id": 25529, + "name": "Donna Funaro", + "site_detail_url": "https://comicvine.gamespot.com/donna-funaro/4005-25529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25535/", + "id": 25535, + "name": "Dawn Fury", + "site_detail_url": "https://comicvine.gamespot.com/dawn-fury/4005-25535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25536/", + "id": 25536, + "name": "Leiko Wu", + "site_detail_url": "https://comicvine.gamespot.com/leiko-wu/4005-25536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25568/", + "id": 25568, + "name": "Grand Vizier", + "site_detail_url": "https://comicvine.gamespot.com/grand-vizier/4005-25568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25572/", + "id": 25572, + "name": "Harddrive", + "site_detail_url": "https://comicvine.gamespot.com/harddrive/4005-25572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25573/", + "id": 25573, + "name": "Decay Girl", + "site_detail_url": "https://comicvine.gamespot.com/decay-girl/4005-25573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25574/", + "id": 25574, + "name": "Phil Sheldon", + "site_detail_url": "https://comicvine.gamespot.com/phil-sheldon/4005-25574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25579/", + "id": 25579, + "name": "Scorcher", + "site_detail_url": "https://comicvine.gamespot.com/scorcher/4005-25579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25581/", + "id": 25581, + "name": "Patrick Mulligan", + "site_detail_url": "https://comicvine.gamespot.com/patrick-mulligan/4005-25581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25584/", + "id": 25584, + "name": "Crimson Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crimson-crusader/4005-25584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25585/", + "id": 25585, + "name": "Imp", + "site_detail_url": "https://comicvine.gamespot.com/imp/4005-25585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25586/", + "id": 25586, + "name": "Vincent Destine", + "site_detail_url": "https://comicvine.gamespot.com/vincent-destine/4005-25586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25587/", + "id": 25587, + "name": "Cuckoo", + "site_detail_url": "https://comicvine.gamespot.com/cuckoo/4005-25587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25588/", + "id": 25588, + "name": "M.O.D.A.M.", + "site_detail_url": "https://comicvine.gamespot.com/modam/4005-25588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25589/", + "id": 25589, + "name": "Lenz", + "site_detail_url": "https://comicvine.gamespot.com/lenz/4005-25589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25591/", + "id": 25591, + "name": "Tuc", + "site_detail_url": "https://comicvine.gamespot.com/tuc/4005-25591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25615/", + "id": 25615, + "name": "Leaper Logan", + "site_detail_url": "https://comicvine.gamespot.com/leaper-logan/4005-25615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25616/", + "id": 25616, + "name": "Right", + "site_detail_url": "https://comicvine.gamespot.com/right/4005-25616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25617/", + "id": 25617, + "name": "Wrong", + "site_detail_url": "https://comicvine.gamespot.com/wrong/4005-25617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25624/", + "id": 25624, + "name": "Maxam", + "site_detail_url": "https://comicvine.gamespot.com/maxam/4005-25624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25662/", + "id": 25662, + "name": "Mongoose", + "site_detail_url": "https://comicvine.gamespot.com/mongoose/4005-25662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25663/", + "id": 25663, + "name": "Quicksand", + "site_detail_url": "https://comicvine.gamespot.com/quicksand/4005-25663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25664/", + "id": 25664, + "name": "Jupiter", + "site_detail_url": "https://comicvine.gamespot.com/jupiter/4005-25664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25665/", + "id": 25665, + "name": "Maddie Baldwin", + "site_detail_url": "https://comicvine.gamespot.com/maddie-baldwin/4005-25665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25666/", + "id": 25666, + "name": "Spidercide", + "site_detail_url": "https://comicvine.gamespot.com/spidercide/4005-25666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25675/", + "id": 25675, + "name": "Sister Nil", + "site_detail_url": "https://comicvine.gamespot.com/sister-nil/4005-25675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25678/", + "id": 25678, + "name": "Kismet", + "site_detail_url": "https://comicvine.gamespot.com/kismet/4005-25678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25684/", + "id": 25684, + "name": "Kruel", + "site_detail_url": "https://comicvine.gamespot.com/kruel/4005-25684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25685/", + "id": 25685, + "name": "John Garrett", + "site_detail_url": "https://comicvine.gamespot.com/john-garrett/4005-25685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25687/", + "id": 25687, + "name": "Jack Flag", + "site_detail_url": "https://comicvine.gamespot.com/jack-flag/4005-25687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25688/", + "id": 25688, + "name": "Free Spirit", + "site_detail_url": "https://comicvine.gamespot.com/free-spirit/4005-25688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25689/", + "id": 25689, + "name": "Diamondback", + "site_detail_url": "https://comicvine.gamespot.com/diamondback/4005-25689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25690/", + "id": 25690, + "name": "Superia", + "site_detail_url": "https://comicvine.gamespot.com/superia/4005-25690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25691/", + "id": 25691, + "name": "Abraham Stone", + "site_detail_url": "https://comicvine.gamespot.com/abraham-stone/4005-25691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25714/", + "id": 25714, + "name": "Stellaris", + "site_detail_url": "https://comicvine.gamespot.com/stellaris/4005-25714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25715/", + "id": 25715, + "name": "Volx", + "site_detail_url": "https://comicvine.gamespot.com/volx/4005-25715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25716/", + "id": 25716, + "name": "Garthan Saal", + "site_detail_url": "https://comicvine.gamespot.com/garthan-saal/4005-25716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25720/", + "id": 25720, + "name": "Lila Green", + "site_detail_url": "https://comicvine.gamespot.com/lila-green/4005-25720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25721/", + "id": 25721, + "name": "Paradox", + "site_detail_url": "https://comicvine.gamespot.com/paradox/4005-25721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25722/", + "id": 25722, + "name": "Kronik", + "site_detail_url": "https://comicvine.gamespot.com/kronik/4005-25722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25724/", + "id": 25724, + "name": "Krugarr", + "site_detail_url": "https://comicvine.gamespot.com/krugarr/4005-25724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25728/", + "id": 25728, + "name": "Xuthl", + "site_detail_url": "https://comicvine.gamespot.com/xuthl/4005-25728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25730/", + "id": 25730, + "name": "Tank", + "site_detail_url": "https://comicvine.gamespot.com/tank/4005-25730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25732/", + "id": 25732, + "name": "Farsung", + "site_detail_url": "https://comicvine.gamespot.com/farsung/4005-25732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25734/", + "id": 25734, + "name": "Ice Dwarves", + "site_detail_url": "https://comicvine.gamespot.com/ice-dwarves/4005-25734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25735/", + "id": 25735, + "name": "Speedfreek", + "site_detail_url": "https://comicvine.gamespot.com/speedfreek/4005-25735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25737/", + "id": 25737, + "name": "Alpha the Ultimate Mutant", + "site_detail_url": "https://comicvine.gamespot.com/alpha-the-ultimate-mutant/4005-25737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25738/", + "id": 25738, + "name": "Adam Destine", + "site_detail_url": "https://comicvine.gamespot.com/adam-destine/4005-25738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25741/", + "id": 25741, + "name": "Monolith", + "site_detail_url": "https://comicvine.gamespot.com/monolith/4005-25741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25762/", + "id": 25762, + "name": "Chief Largo", + "site_detail_url": "https://comicvine.gamespot.com/chief-largo/4005-25762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25779/", + "id": 25779, + "name": "Shamash-Shum-Ukin", + "site_detail_url": "https://comicvine.gamespot.com/shamash-shum-ukin/4005-25779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25794/", + "id": 25794, + "name": "Ted Munn", + "site_detail_url": "https://comicvine.gamespot.com/ted-munn/4005-25794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25805/", + "id": 25805, + "name": "Domitian", + "site_detail_url": "https://comicvine.gamespot.com/domitian/4005-25805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25806/", + "id": 25806, + "name": "Zakaius", + "site_detail_url": "https://comicvine.gamespot.com/zakaius/4005-25806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25841/", + "id": 25841, + "name": "Taxi Taylor", + "site_detail_url": "https://comicvine.gamespot.com/taxi-taylor/4005-25841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25843/", + "id": 25843, + "name": "Dragoon", + "site_detail_url": "https://comicvine.gamespot.com/dragoon/4005-25843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25856/", + "id": 25856, + "name": "Gur", + "site_detail_url": "https://comicvine.gamespot.com/gur/4005-25856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25859/", + "id": 25859, + "name": "Ripjak", + "site_detail_url": "https://comicvine.gamespot.com/ripjak/4005-25859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25861/", + "id": 25861, + "name": "Bubonicus", + "site_detail_url": "https://comicvine.gamespot.com/bubonicus/4005-25861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25872/", + "id": 25872, + "name": "Delgado", + "site_detail_url": "https://comicvine.gamespot.com/delgado/4005-25872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25897/", + "id": 25897, + "name": "Hancock", + "site_detail_url": "https://comicvine.gamespot.com/hancock/4005-25897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25899/", + "id": 25899, + "name": "Halftrak", + "site_detail_url": "https://comicvine.gamespot.com/halftrak/4005-25899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25900/", + "id": 25900, + "name": "Billiboy", + "site_detail_url": "https://comicvine.gamespot.com/billiboy/4005-25900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25904/", + "id": 25904, + "name": "Vincent Stevens", + "site_detail_url": "https://comicvine.gamespot.com/vincent-stevens/4005-25904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25907/", + "id": 25907, + "name": "Tabula Rasa", + "site_detail_url": "https://comicvine.gamespot.com/tabula-rasa/4005-25907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25908/", + "id": 25908, + "name": "Anti-Vision", + "site_detail_url": "https://comicvine.gamespot.com/anti-vision/4005-25908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25911/", + "id": 25911, + "name": "Orphan Maker", + "site_detail_url": "https://comicvine.gamespot.com/orphan-maker/4005-25911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25912/", + "id": 25912, + "name": "Demolisher", + "site_detail_url": "https://comicvine.gamespot.com/demolisher/4005-25912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25913/", + "id": 25913, + "name": "Blackwulf", + "site_detail_url": "https://comicvine.gamespot.com/blackwulf/4005-25913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25914/", + "id": 25914, + "name": "Peacekeeper", + "site_detail_url": "https://comicvine.gamespot.com/peacekeeper/4005-25914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25942/", + "id": 25942, + "name": "Barrage", + "site_detail_url": "https://comicvine.gamespot.com/barrage/4005-25942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25943/", + "id": 25943, + "name": "Tusk", + "site_detail_url": "https://comicvine.gamespot.com/tusk/4005-25943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25967/", + "id": 25967, + "name": "Agamemnon", + "site_detail_url": "https://comicvine.gamespot.com/agamemnon/4005-25967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25969/", + "id": 25969, + "name": "Shrill", + "site_detail_url": "https://comicvine.gamespot.com/shrill/4005-25969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-25970/", + "id": 25970, + "name": "Sinclair Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/sinclair-spectrum/4005-25970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26027/", + "id": 26027, + "name": "William Drake", + "site_detail_url": "https://comicvine.gamespot.com/william-drake/4005-26027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26033/", + "id": 26033, + "name": "Bond", + "site_detail_url": "https://comicvine.gamespot.com/bond/4005-26033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26034/", + "id": 26034, + "name": "Achmed El-Gibar", + "site_detail_url": "https://comicvine.gamespot.com/achmed-el-gibar/4005-26034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26036/", + "id": 26036, + "name": "Grotesk", + "site_detail_url": "https://comicvine.gamespot.com/grotesk/4005-26036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26064/", + "id": 26064, + "name": "Bison", + "site_detail_url": "https://comicvine.gamespot.com/bison/4005-26064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26079/", + "id": 26079, + "name": "Neutron Bum", + "site_detail_url": "https://comicvine.gamespot.com/neutron-bum/4005-26079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26081/", + "id": 26081, + "name": "Champion", + "site_detail_url": "https://comicvine.gamespot.com/champion/4005-26081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26084/", + "id": 26084, + "name": "Siingard", + "site_detail_url": "https://comicvine.gamespot.com/siingard/4005-26084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26085/", + "id": 26085, + "name": "Hoarfen", + "site_detail_url": "https://comicvine.gamespot.com/hoarfen/4005-26085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26086/", + "id": 26086, + "name": "Gravemoss", + "site_detail_url": "https://comicvine.gamespot.com/gravemoss/4005-26086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26106/", + "id": 26106, + "name": "Man-Killer Wolf", + "site_detail_url": "https://comicvine.gamespot.com/man-killer-wolf/4005-26106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26109/", + "id": 26109, + "name": "Maya", + "site_detail_url": "https://comicvine.gamespot.com/maya/4005-26109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26110/", + "id": 26110, + "name": "Count Abyss", + "site_detail_url": "https://comicvine.gamespot.com/count-abyss/4005-26110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26111/", + "id": 26111, + "name": "Darklore", + "site_detail_url": "https://comicvine.gamespot.com/darklore/4005-26111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26114/", + "id": 26114, + "name": "Tork", + "site_detail_url": "https://comicvine.gamespot.com/tork/4005-26114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26118/", + "id": 26118, + "name": "Brick", + "site_detail_url": "https://comicvine.gamespot.com/brick/4005-26118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26119/", + "id": 26119, + "name": "Dymphna", + "site_detail_url": "https://comicvine.gamespot.com/dymphna/4005-26119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26120/", + "id": 26120, + "name": "Spirit of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/spirit-of-vengeance/4005-26120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26121/", + "id": 26121, + "name": "Replica", + "site_detail_url": "https://comicvine.gamespot.com/replica/4005-26121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26122/", + "id": 26122, + "name": "Giraud of Haven", + "site_detail_url": "https://comicvine.gamespot.com/giraud-of-haven/4005-26122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26123/", + "id": 26123, + "name": "Woden", + "site_detail_url": "https://comicvine.gamespot.com/woden/4005-26123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26124/", + "id": 26124, + "name": "Silverback", + "site_detail_url": "https://comicvine.gamespot.com/silverback/4005-26124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26125/", + "id": 26125, + "name": "Shinar", + "site_detail_url": "https://comicvine.gamespot.com/shinar/4005-26125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26127/", + "id": 26127, + "name": "Cybele", + "site_detail_url": "https://comicvine.gamespot.com/cybele/4005-26127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26128/", + "id": 26128, + "name": "Kona Lor", + "site_detail_url": "https://comicvine.gamespot.com/kona-lor/4005-26128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26129/", + "id": 26129, + "name": "Dylon Cir", + "site_detail_url": "https://comicvine.gamespot.com/dylon-cir/4005-26129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26160/", + "id": 26160, + "name": "Martha McBride", + "site_detail_url": "https://comicvine.gamespot.com/martha-mcbride/4005-26160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26165/", + "id": 26165, + "name": "Harry Tabeshaw", + "site_detail_url": "https://comicvine.gamespot.com/harry-tabeshaw/4005-26165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26179/", + "id": 26179, + "name": "Worm", + "site_detail_url": "https://comicvine.gamespot.com/worm/4005-26179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26180/", + "id": 26180, + "name": "Whiteout", + "site_detail_url": "https://comicvine.gamespot.com/whiteout/4005-26180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26181/", + "id": 26181, + "name": "Facade", + "site_detail_url": "https://comicvine.gamespot.com/facade/4005-26181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26182/", + "id": 26182, + "name": "Amy Powell", + "site_detail_url": "https://comicvine.gamespot.com/amy-powell/4005-26182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26183/", + "id": 26183, + "name": "Sloane Chase", + "site_detail_url": "https://comicvine.gamespot.com/sloane-chase/4005-26183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26184/", + "id": 26184, + "name": "Archer Bryce", + "site_detail_url": "https://comicvine.gamespot.com/archer-bryce/4005-26184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26185/", + "id": 26185, + "name": "Victor", + "site_detail_url": "https://comicvine.gamespot.com/victor/4005-26185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26187/", + "id": 26187, + "name": "Killobyte", + "site_detail_url": "https://comicvine.gamespot.com/killobyte/4005-26187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26188/", + "id": 26188, + "name": "Technospike", + "site_detail_url": "https://comicvine.gamespot.com/technospike/4005-26188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26189/", + "id": 26189, + "name": "Steel Collar", + "site_detail_url": "https://comicvine.gamespot.com/steel-collar/4005-26189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26190/", + "id": 26190, + "name": "Infomorph", + "site_detail_url": "https://comicvine.gamespot.com/infomorph/4005-26190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26192/", + "id": 26192, + "name": "Monstroid", + "site_detail_url": "https://comicvine.gamespot.com/monstroid/4005-26192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26234/", + "id": 26234, + "name": "Prior Turrin", + "site_detail_url": "https://comicvine.gamespot.com/prior-turrin/4005-26234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26244/", + "id": 26244, + "name": "Coldheart", + "site_detail_url": "https://comicvine.gamespot.com/coldheart/4005-26244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26263/", + "id": 26263, + "name": "Hope", + "site_detail_url": "https://comicvine.gamespot.com/hope/4005-26263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26264/", + "id": 26264, + "name": "Dawnsilk", + "site_detail_url": "https://comicvine.gamespot.com/dawnsilk/4005-26264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26265/", + "id": 26265, + "name": "Sinsear", + "site_detail_url": "https://comicvine.gamespot.com/sinsear/4005-26265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26266/", + "id": 26266, + "name": "Jock Forrester", + "site_detail_url": "https://comicvine.gamespot.com/jock-forrester/4005-26266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26269/", + "id": 26269, + "name": "Gyak", + "site_detail_url": "https://comicvine.gamespot.com/gyak/4005-26269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26280/", + "id": 26280, + "name": "Talos", + "site_detail_url": "https://comicvine.gamespot.com/talos/4005-26280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26283/", + "id": 26283, + "name": "Wirehead", + "site_detail_url": "https://comicvine.gamespot.com/wirehead/4005-26283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26312/", + "id": 26312, + "name": "Marl", + "site_detail_url": "https://comicvine.gamespot.com/marl/4005-26312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26318/", + "id": 26318, + "name": "Prince Wayfinder", + "site_detail_url": "https://comicvine.gamespot.com/prince-wayfinder/4005-26318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26320/", + "id": 26320, + "name": "Visog", + "site_detail_url": "https://comicvine.gamespot.com/visog/4005-26320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26321/", + "id": 26321, + "name": "Dantella", + "site_detail_url": "https://comicvine.gamespot.com/dantella/4005-26321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26323/", + "id": 26323, + "name": "St. Elmo", + "site_detail_url": "https://comicvine.gamespot.com/st-elmo/4005-26323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26324/", + "id": 26324, + "name": "Stitch", + "site_detail_url": "https://comicvine.gamespot.com/stitch/4005-26324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26331/", + "id": 26331, + "name": "Alfredo Morelli", + "site_detail_url": "https://comicvine.gamespot.com/alfredo-morelli/4005-26331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26344/", + "id": 26344, + "name": "Plasma", + "site_detail_url": "https://comicvine.gamespot.com/plasma/4005-26344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26359/", + "id": 26359, + "name": "Officer ZERO", + "site_detail_url": "https://comicvine.gamespot.com/officer-zero/4005-26359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26360/", + "id": 26360, + "name": "Inspector McCleod", + "site_detail_url": "https://comicvine.gamespot.com/inspector-mccleod/4005-26360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26361/", + "id": 26361, + "name": "Colonel Mack", + "site_detail_url": "https://comicvine.gamespot.com/colonel-mack/4005-26361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26366/", + "id": 26366, + "name": "Brilliant One", + "site_detail_url": "https://comicvine.gamespot.com/brilliant-one/4005-26366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26369/", + "id": 26369, + "name": "Reynard", + "site_detail_url": "https://comicvine.gamespot.com/reynard/4005-26369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26370/", + "id": 26370, + "name": "Jinni", + "site_detail_url": "https://comicvine.gamespot.com/jinni/4005-26370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26371/", + "id": 26371, + "name": "Mutaurus", + "site_detail_url": "https://comicvine.gamespot.com/mutaurus/4005-26371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26374/", + "id": 26374, + "name": "Jason Macendale", + "site_detail_url": "https://comicvine.gamespot.com/jason-macendale/4005-26374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26375/", + "id": 26375, + "name": "Avatar", + "site_detail_url": "https://comicvine.gamespot.com/avatar/4005-26375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26397/", + "id": 26397, + "name": "Lord Tantalus", + "site_detail_url": "https://comicvine.gamespot.com/lord-tantalus/4005-26397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26398/", + "id": 26398, + "name": "Khult", + "site_detail_url": "https://comicvine.gamespot.com/khult/4005-26398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26399/", + "id": 26399, + "name": "Pandara", + "site_detail_url": "https://comicvine.gamespot.com/pandara/4005-26399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26402/", + "id": 26402, + "name": "Psi-Hawk", + "site_detail_url": "https://comicvine.gamespot.com/psi-hawk/4005-26402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26403/", + "id": 26403, + "name": "Dr. Jaime Munoz", + "site_detail_url": "https://comicvine.gamespot.com/dr-jaime-munoz/4005-26403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26408/", + "id": 26408, + "name": "Gudrun Tyburn", + "site_detail_url": "https://comicvine.gamespot.com/gudrun-tyburn/4005-26408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26409/", + "id": 26409, + "name": "Krakoa", + "site_detail_url": "https://comicvine.gamespot.com/krakoa/4005-26409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26410/", + "id": 26410, + "name": "Bronwen Gryffn", + "site_detail_url": "https://comicvine.gamespot.com/bronwen-gryffn/4005-26410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26420/", + "id": 26420, + "name": "Lord Armageddon", + "site_detail_url": "https://comicvine.gamespot.com/lord-armageddon/4005-26420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26424/", + "id": 26424, + "name": "Bitmap", + "site_detail_url": "https://comicvine.gamespot.com/bitmap/4005-26424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26438/", + "id": 26438, + "name": "Bristle", + "site_detail_url": "https://comicvine.gamespot.com/bristle/4005-26438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26439/", + "id": 26439, + "name": "Schizo", + "site_detail_url": "https://comicvine.gamespot.com/schizo/4005-26439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26443/", + "id": 26443, + "name": "Skeletron", + "site_detail_url": "https://comicvine.gamespot.com/skeletron/4005-26443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26461/", + "id": 26461, + "name": "Monsoon", + "site_detail_url": "https://comicvine.gamespot.com/monsoon/4005-26461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26463/", + "id": 26463, + "name": "Luminor", + "site_detail_url": "https://comicvine.gamespot.com/luminor/4005-26463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26464/", + "id": 26464, + "name": "Loga", + "site_detail_url": "https://comicvine.gamespot.com/loga/4005-26464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26469/", + "id": 26469, + "name": "Trauma", + "site_detail_url": "https://comicvine.gamespot.com/trauma/4005-26469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26470/", + "id": 26470, + "name": "Knowbot", + "site_detail_url": "https://comicvine.gamespot.com/knowbot/4005-26470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26471/", + "id": 26471, + "name": "Kill-O-Bite", + "site_detail_url": "https://comicvine.gamespot.com/kill-o-bite/4005-26471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26475/", + "id": 26475, + "name": "Feedback", + "site_detail_url": "https://comicvine.gamespot.com/feedback/4005-26475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26476/", + "id": 26476, + "name": "Wyre", + "site_detail_url": "https://comicvine.gamespot.com/wyre/4005-26476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26478/", + "id": 26478, + "name": "Manikin", + "site_detail_url": "https://comicvine.gamespot.com/manikin/4005-26478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26479/", + "id": 26479, + "name": "Goblyn", + "site_detail_url": "https://comicvine.gamespot.com/goblyn/4005-26479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26481/", + "id": 26481, + "name": "Witchfire", + "site_detail_url": "https://comicvine.gamespot.com/witchfire/4005-26481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26484/", + "id": 26484, + "name": "Miss Mass", + "site_detail_url": "https://comicvine.gamespot.com/miss-mass/4005-26484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26485/", + "id": 26485, + "name": "Bile", + "site_detail_url": "https://comicvine.gamespot.com/bile/4005-26485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26486/", + "id": 26486, + "name": "Brain Drain", + "site_detail_url": "https://comicvine.gamespot.com/brain-drain/4005-26486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26487/", + "id": 26487, + "name": "Tech-Noir", + "site_detail_url": "https://comicvine.gamespot.com/tech-noir/4005-26487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26488/", + "id": 26488, + "name": "Strongarm", + "site_detail_url": "https://comicvine.gamespot.com/strongarm/4005-26488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26508/", + "id": 26508, + "name": "Bernard Scudder", + "site_detail_url": "https://comicvine.gamespot.com/bernard-scudder/4005-26508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26528/", + "id": 26528, + "name": "Sandstorm", + "site_detail_url": "https://comicvine.gamespot.com/sandstorm/4005-26528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26530/", + "id": 26530, + "name": "Sat-Yr-9", + "site_detail_url": "https://comicvine.gamespot.com/sat-yr-9/4005-26530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26531/", + "id": 26531, + "name": "Vranx", + "site_detail_url": "https://comicvine.gamespot.com/vranx/4005-26531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26532/", + "id": 26532, + "name": "Geatar", + "site_detail_url": "https://comicvine.gamespot.com/geatar/4005-26532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26534/", + "id": 26534, + "name": "Mickey", + "site_detail_url": "https://comicvine.gamespot.com/mickey/4005-26534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26535/", + "id": 26535, + "name": "Sara Harrington", + "site_detail_url": "https://comicvine.gamespot.com/sara-harrington/4005-26535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26536/", + "id": 26536, + "name": "Eddie Passim", + "site_detail_url": "https://comicvine.gamespot.com/eddie-passim/4005-26536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26538/", + "id": 26538, + "name": "Harry Kenkoy", + "site_detail_url": "https://comicvine.gamespot.com/harry-kenkoy/4005-26538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26539/", + "id": 26539, + "name": "Reginald Tork", + "site_detail_url": "https://comicvine.gamespot.com/reginald-tork/4005-26539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26562/", + "id": 26562, + "name": "Mr. Taylor", + "site_detail_url": "https://comicvine.gamespot.com/mr-taylor/4005-26562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26569/", + "id": 26569, + "name": "Cylla", + "site_detail_url": "https://comicvine.gamespot.com/cylla/4005-26569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26571/", + "id": 26571, + "name": "Maddie Drake", + "site_detail_url": "https://comicvine.gamespot.com/maddie-drake/4005-26571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26580/", + "id": 26580, + "name": "Iconoclast", + "site_detail_url": "https://comicvine.gamespot.com/iconoclast/4005-26580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26582/", + "id": 26582, + "name": "Platoon", + "site_detail_url": "https://comicvine.gamespot.com/platoon/4005-26582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26586/", + "id": 26586, + "name": "Larks", + "site_detail_url": "https://comicvine.gamespot.com/larks/4005-26586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26587/", + "id": 26587, + "name": "Erynys", + "site_detail_url": "https://comicvine.gamespot.com/erynys/4005-26587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26589/", + "id": 26589, + "name": "Sinew", + "site_detail_url": "https://comicvine.gamespot.com/sinew/4005-26589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26627/", + "id": 26627, + "name": "Mindscan", + "site_detail_url": "https://comicvine.gamespot.com/mindscan/4005-26627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26633/", + "id": 26633, + "name": "Salomé", + "site_detail_url": "https://comicvine.gamespot.com/salome/4005-26633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26657/", + "id": 26657, + "name": "Irene Karnowsky", + "site_detail_url": "https://comicvine.gamespot.com/irene-karnowsky/4005-26657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26660/", + "id": 26660, + "name": "Scatter", + "site_detail_url": "https://comicvine.gamespot.com/scatter/4005-26660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26661/", + "id": 26661, + "name": "Manbat", + "site_detail_url": "https://comicvine.gamespot.com/manbat/4005-26661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26664/", + "id": 26664, + "name": "Tribune", + "site_detail_url": "https://comicvine.gamespot.com/tribune/4005-26664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26666/", + "id": 26666, + "name": "Albina", + "site_detail_url": "https://comicvine.gamespot.com/albina/4005-26666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26668/", + "id": 26668, + "name": "Caspay", + "site_detail_url": "https://comicvine.gamespot.com/caspay/4005-26668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26669/", + "id": 26669, + "name": "Jason", + "site_detail_url": "https://comicvine.gamespot.com/jason/4005-26669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26670/", + "id": 26670, + "name": "Lucius", + "site_detail_url": "https://comicvine.gamespot.com/lucius/4005-26670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26673/", + "id": 26673, + "name": "Dr. Minerva", + "site_detail_url": "https://comicvine.gamespot.com/dr-minerva/4005-26673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26677/", + "id": 26677, + "name": "Isparana", + "site_detail_url": "https://comicvine.gamespot.com/isparana/4005-26677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26678/", + "id": 26678, + "name": "Turgohl", + "site_detail_url": "https://comicvine.gamespot.com/turgohl/4005-26678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26679/", + "id": 26679, + "name": "Milo", + "site_detail_url": "https://comicvine.gamespot.com/milo/4005-26679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26680/", + "id": 26680, + "name": "Zorka", + "site_detail_url": "https://comicvine.gamespot.com/zorka/4005-26680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26681/", + "id": 26681, + "name": "Yezdigerd", + "site_detail_url": "https://comicvine.gamespot.com/yezdigerd/4005-26681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26725/", + "id": 26725, + "name": "Alexander", + "site_detail_url": "https://comicvine.gamespot.com/alexander/4005-26725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26727/", + "id": 26727, + "name": "Brutus", + "site_detail_url": "https://comicvine.gamespot.com/brutus/4005-26727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26728/", + "id": 26728, + "name": "Anomaly", + "site_detail_url": "https://comicvine.gamespot.com/anomaly/4005-26728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26731/", + "id": 26731, + "name": "Zigfried Trask", + "site_detail_url": "https://comicvine.gamespot.com/zigfried-trask/4005-26731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26733/", + "id": 26733, + "name": "Iskelior", + "site_detail_url": "https://comicvine.gamespot.com/iskelior/4005-26733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26746/", + "id": 26746, + "name": "Deathgrin", + "site_detail_url": "https://comicvine.gamespot.com/deathgrin/4005-26746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26749/", + "id": 26749, + "name": "Sarah Klein", + "site_detail_url": "https://comicvine.gamespot.com/sarah-klein/4005-26749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26752/", + "id": 26752, + "name": "Slayback", + "site_detail_url": "https://comicvine.gamespot.com/slayback/4005-26752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26753/", + "id": 26753, + "name": "McHale", + "site_detail_url": "https://comicvine.gamespot.com/mchale/4005-26753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26754/", + "id": 26754, + "name": "Gillian", + "site_detail_url": "https://comicvine.gamespot.com/gillian/4005-26754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26755/", + "id": 26755, + "name": "Marcello", + "site_detail_url": "https://comicvine.gamespot.com/marcello/4005-26755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26756/", + "id": 26756, + "name": "Angelo", + "site_detail_url": "https://comicvine.gamespot.com/angelo/4005-26756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26757/", + "id": 26757, + "name": "Marilla", + "site_detail_url": "https://comicvine.gamespot.com/marilla/4005-26757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26794/", + "id": 26794, + "name": "Pura-Shamutra", + "site_detail_url": "https://comicvine.gamespot.com/pura-shamutra/4005-26794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26799/", + "id": 26799, + "name": "Susan Jacobson", + "site_detail_url": "https://comicvine.gamespot.com/susan-jacobson/4005-26799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26800/", + "id": 26800, + "name": "Warden Tarkington", + "site_detail_url": "https://comicvine.gamespot.com/warden-tarkington/4005-26800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26801/", + "id": 26801, + "name": "Secretary Oliveris", + "site_detail_url": "https://comicvine.gamespot.com/secretary-oliveris/4005-26801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26804/", + "id": 26804, + "name": "Composite", + "site_detail_url": "https://comicvine.gamespot.com/composite/4005-26804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26805/", + "id": 26805, + "name": "Hellspawn", + "site_detail_url": "https://comicvine.gamespot.com/hellspawn/4005-26805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26812/", + "id": 26812, + "name": "Peregrine", + "site_detail_url": "https://comicvine.gamespot.com/peregrine/4005-26812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26842/", + "id": 26842, + "name": "Jarakk", + "site_detail_url": "https://comicvine.gamespot.com/jarakk/4005-26842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26843/", + "id": 26843, + "name": "Dr. Rasmus Palmroth", + "site_detail_url": "https://comicvine.gamespot.com/dr-rasmus-palmroth/4005-26843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26844/", + "id": 26844, + "name": "Vicky Barnett", + "site_detail_url": "https://comicvine.gamespot.com/vicky-barnett/4005-26844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26846/", + "id": 26846, + "name": "Birdy", + "site_detail_url": "https://comicvine.gamespot.com/birdy/4005-26846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26848/", + "id": 26848, + "name": "Alexi Vazhin", + "site_detail_url": "https://comicvine.gamespot.com/alexi-vazhin/4005-26848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26851/", + "id": 26851, + "name": "Lara", + "site_detail_url": "https://comicvine.gamespot.com/lara/4005-26851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26852/", + "id": 26852, + "name": "Bork", + "site_detail_url": "https://comicvine.gamespot.com/bork/4005-26852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26856/", + "id": 26856, + "name": "Midnight Men", + "site_detail_url": "https://comicvine.gamespot.com/midnight-men/4005-26856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26861/", + "id": 26861, + "name": "Crippler", + "site_detail_url": "https://comicvine.gamespot.com/crippler/4005-26861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26880/", + "id": 26880, + "name": "Celery", + "site_detail_url": "https://comicvine.gamespot.com/celery/4005-26880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26882/", + "id": 26882, + "name": "Centaurion", + "site_detail_url": "https://comicvine.gamespot.com/centaurion/4005-26882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26883/", + "id": 26883, + "name": "Sybilla", + "site_detail_url": "https://comicvine.gamespot.com/sybilla/4005-26883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26888/", + "id": 26888, + "name": "Aries", + "site_detail_url": "https://comicvine.gamespot.com/aries/4005-26888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26892/", + "id": 26892, + "name": "Foxbat", + "site_detail_url": "https://comicvine.gamespot.com/foxbat/4005-26892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26893/", + "id": 26893, + "name": "Nyoirin Henecha", + "site_detail_url": "https://comicvine.gamespot.com/nyoirin-henecha/4005-26893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26897/", + "id": 26897, + "name": "Tarin", + "site_detail_url": "https://comicvine.gamespot.com/tarin/4005-26897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26898/", + "id": 26898, + "name": "Shaddo", + "site_detail_url": "https://comicvine.gamespot.com/shaddo/4005-26898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26899/", + "id": 26899, + "name": "Colonel F.T. Strang", + "site_detail_url": "https://comicvine.gamespot.com/colonel-ft-strang/4005-26899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26901/", + "id": 26901, + "name": "Ken Wind", + "site_detail_url": "https://comicvine.gamespot.com/ken-wind/4005-26901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26923/", + "id": 26923, + "name": "Garrison Kane", + "site_detail_url": "https://comicvine.gamespot.com/garrison-kane/4005-26923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26974/", + "id": 26974, + "name": "Carjack", + "site_detail_url": "https://comicvine.gamespot.com/carjack/4005-26974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26990/", + "id": 26990, + "name": "Boak", + "site_detail_url": "https://comicvine.gamespot.com/boak/4005-26990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-26995/", + "id": 26995, + "name": "Adversary", + "site_detail_url": "https://comicvine.gamespot.com/adversary/4005-26995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27023/", + "id": 27023, + "name": "Lynx", + "site_detail_url": "https://comicvine.gamespot.com/lynx/4005-27023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27036/", + "id": 27036, + "name": "Dreamstalker", + "site_detail_url": "https://comicvine.gamespot.com/dreamstalker/4005-27036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27037/", + "id": 27037, + "name": "Silo", + "site_detail_url": "https://comicvine.gamespot.com/silo/4005-27037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27042/", + "id": 27042, + "name": "Blitz", + "site_detail_url": "https://comicvine.gamespot.com/blitz/4005-27042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27045/", + "id": 27045, + "name": "Seamus Mellencamp", + "site_detail_url": "https://comicvine.gamespot.com/seamus-mellencamp/4005-27045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27048/", + "id": 27048, + "name": "Drusandra", + "site_detail_url": "https://comicvine.gamespot.com/drusandra/4005-27048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27049/", + "id": 27049, + "name": "Borrin", + "site_detail_url": "https://comicvine.gamespot.com/borrin/4005-27049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27050/", + "id": 27050, + "name": "Agohoth", + "site_detail_url": "https://comicvine.gamespot.com/agohoth/4005-27050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27086/", + "id": 27086, + "name": "Epsilon Red", + "site_detail_url": "https://comicvine.gamespot.com/epsilon-red/4005-27086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27090/", + "id": 27090, + "name": "Skinner Of Souls", + "site_detail_url": "https://comicvine.gamespot.com/skinner-of-souls/4005-27090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27091/", + "id": 27091, + "name": "Sasha Ryan", + "site_detail_url": "https://comicvine.gamespot.com/sasha-ryan/4005-27091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27092/", + "id": 27092, + "name": "Lukas", + "site_detail_url": "https://comicvine.gamespot.com/lukas/4005-27092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27093/", + "id": 27093, + "name": "Pirouette", + "site_detail_url": "https://comicvine.gamespot.com/pirouette/4005-27093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27095/", + "id": 27095, + "name": "Vicary", + "site_detail_url": "https://comicvine.gamespot.com/vicary/4005-27095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27096/", + "id": 27096, + "name": "Captain Atlas", + "site_detail_url": "https://comicvine.gamespot.com/captain-atlas/4005-27096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27097/", + "id": 27097, + "name": "Kariooq", + "site_detail_url": "https://comicvine.gamespot.com/kariooq/4005-27097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27121/", + "id": 27121, + "name": "Skeleton Ki", + "site_detail_url": "https://comicvine.gamespot.com/skeleton-ki/4005-27121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27139/", + "id": 27139, + "name": "Nikolai Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/nikolai-rasputin/4005-27139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27140/", + "id": 27140, + "name": "Alexandra Rasputina", + "site_detail_url": "https://comicvine.gamespot.com/alexandra-rasputina/4005-27140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27141/", + "id": 27141, + "name": "Taylor", + "site_detail_url": "https://comicvine.gamespot.com/taylor/4005-27141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27146/", + "id": 27146, + "name": "Sharon Friedlander", + "site_detail_url": "https://comicvine.gamespot.com/sharon-friedlander/4005-27146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27151/", + "id": 27151, + "name": "Decimator", + "site_detail_url": "https://comicvine.gamespot.com/decimator/4005-27151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27152/", + "id": 27152, + "name": "Tokamak", + "site_detail_url": "https://comicvine.gamespot.com/tokamak/4005-27152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27153/", + "id": 27153, + "name": "Dreadlox", + "site_detail_url": "https://comicvine.gamespot.com/dreadlox/4005-27153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27160/", + "id": 27160, + "name": "Slayer", + "site_detail_url": "https://comicvine.gamespot.com/slayer/4005-27160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27181/", + "id": 27181, + "name": "Gothic Lolita", + "site_detail_url": "https://comicvine.gamespot.com/gothic-lolita/4005-27181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27182/", + "id": 27182, + "name": "Arko", + "site_detail_url": "https://comicvine.gamespot.com/arko/4005-27182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27183/", + "id": 27183, + "name": "Samantha Joyce", + "site_detail_url": "https://comicvine.gamespot.com/samantha-joyce/4005-27183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27185/", + "id": 27185, + "name": "Marcy Masterson-Steele", + "site_detail_url": "https://comicvine.gamespot.com/marcy-masterson-steele/4005-27185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27186/", + "id": 27186, + "name": "Susan Austin", + "site_detail_url": "https://comicvine.gamespot.com/susan-austin/4005-27186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27187/", + "id": 27187, + "name": "Brainstorm", + "site_detail_url": "https://comicvine.gamespot.com/brainstorm/4005-27187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27188/", + "id": 27188, + "name": "Doctor Hope", + "site_detail_url": "https://comicvine.gamespot.com/doctor-hope/4005-27188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27189/", + "id": 27189, + "name": "Captain Zero", + "site_detail_url": "https://comicvine.gamespot.com/captain-zero/4005-27189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27190/", + "id": 27190, + "name": "Maggie Lorca", + "site_detail_url": "https://comicvine.gamespot.com/maggie-lorca/4005-27190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27193/", + "id": 27193, + "name": "Captain Universe", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe/4005-27193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27215/", + "id": 27215, + "name": "Watoomb", + "site_detail_url": "https://comicvine.gamespot.com/watoomb/4005-27215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27216/", + "id": 27216, + "name": "Ikonn", + "site_detail_url": "https://comicvine.gamespot.com/ikonn/4005-27216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27219/", + "id": 27219, + "name": "Hoggoth", + "site_detail_url": "https://comicvine.gamespot.com/hoggoth/4005-27219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27220/", + "id": 27220, + "name": "Oshtur", + "site_detail_url": "https://comicvine.gamespot.com/oshtur/4005-27220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27231/", + "id": 27231, + "name": "Deathspawn", + "site_detail_url": "https://comicvine.gamespot.com/deathspawn/4005-27231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27234/", + "id": 27234, + "name": "Karlk", + "site_detail_url": "https://comicvine.gamespot.com/karlk/4005-27234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27265/", + "id": 27265, + "name": "Ravonna", + "site_detail_url": "https://comicvine.gamespot.com/ravonna/4005-27265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27266/", + "id": 27266, + "name": "Justin Alphonse Gamble", + "site_detail_url": "https://comicvine.gamespot.com/justin-alphonse-gamble/4005-27266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27268/", + "id": 27268, + "name": "Abe Brown", + "site_detail_url": "https://comicvine.gamespot.com/abe-brown/4005-27268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27269/", + "id": 27269, + "name": "Lin Sun", + "site_detail_url": "https://comicvine.gamespot.com/lin-sun/4005-27269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27279/", + "id": 27279, + "name": "Kyllian Kell", + "site_detail_url": "https://comicvine.gamespot.com/kyllian-kell/4005-27279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27332/", + "id": 27332, + "name": "Icon", + "site_detail_url": "https://comicvine.gamespot.com/icon/4005-27332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27333/", + "id": 27333, + "name": "The Knight Errant", + "site_detail_url": "https://comicvine.gamespot.com/the-knight-errant/4005-27333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27337/", + "id": 27337, + "name": "Tracey Milbanks", + "site_detail_url": "https://comicvine.gamespot.com/tracey-milbanks/4005-27337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27338/", + "id": 27338, + "name": "Gordo Leiter", + "site_detail_url": "https://comicvine.gamespot.com/gordo-leiter/4005-27338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27339/", + "id": 27339, + "name": "Phoebe Farragut", + "site_detail_url": "https://comicvine.gamespot.com/phoebe-farragut/4005-27339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27340/", + "id": 27340, + "name": "Trevor Noseworthy III", + "site_detail_url": "https://comicvine.gamespot.com/trevor-noseworthy-iii/4005-27340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27341/", + "id": 27341, + "name": "Dean Milbanks", + "site_detail_url": "https://comicvine.gamespot.com/dean-milbanks/4005-27341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27342/", + "id": 27342, + "name": "Scumlord", + "site_detail_url": "https://comicvine.gamespot.com/scumlord/4005-27342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27345/", + "id": 27345, + "name": "Captain Walker D. Plank", + "site_detail_url": "https://comicvine.gamespot.com/captain-walker-d-plank/4005-27345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27346/", + "id": 27346, + "name": "Dr. DeRange", + "site_detail_url": "https://comicvine.gamespot.com/dr-derange/4005-27346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27347/", + "id": 27347, + "name": "Baron Von Skarin", + "site_detail_url": "https://comicvine.gamespot.com/baron-von-skarin/4005-27347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27348/", + "id": 27348, + "name": "Skullcap", + "site_detail_url": "https://comicvine.gamespot.com/skullcap/4005-27348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27349/", + "id": 27349, + "name": "Ms. Fortune", + "site_detail_url": "https://comicvine.gamespot.com/ms-fortune/4005-27349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27350/", + "id": 27350, + "name": "Snuffer", + "site_detail_url": "https://comicvine.gamespot.com/snuffer/4005-27350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27352/", + "id": 27352, + "name": "Nick Nack", + "site_detail_url": "https://comicvine.gamespot.com/nick-nack/4005-27352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27405/", + "id": 27405, + "name": "Lyra", + "site_detail_url": "https://comicvine.gamespot.com/lyra/4005-27405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27416/", + "id": 27416, + "name": "Dark Thanos", + "site_detail_url": "https://comicvine.gamespot.com/dark-thanos/4005-27416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27417/", + "id": 27417, + "name": "Aldo Ferro", + "site_detail_url": "https://comicvine.gamespot.com/aldo-ferro/4005-27417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27418/", + "id": 27418, + "name": "Strobe", + "site_detail_url": "https://comicvine.gamespot.com/strobe/4005-27418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27420/", + "id": 27420, + "name": "Rags Williams", + "site_detail_url": "https://comicvine.gamespot.com/rags-williams/4005-27420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27421/", + "id": 27421, + "name": "Elmo Oliver", + "site_detail_url": "https://comicvine.gamespot.com/elmo-oliver/4005-27421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27422/", + "id": 27422, + "name": "Cavendish", + "site_detail_url": "https://comicvine.gamespot.com/cavendish/4005-27422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27424/", + "id": 27424, + "name": "Jackie Shorr", + "site_detail_url": "https://comicvine.gamespot.com/jackie-shorr/4005-27424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27426/", + "id": 27426, + "name": "Hobb", + "site_detail_url": "https://comicvine.gamespot.com/hobb/4005-27426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27442/", + "id": 27442, + "name": "Coach Mitchell", + "site_detail_url": "https://comicvine.gamespot.com/coach-mitchell/4005-27442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27456/", + "id": 27456, + "name": "Tribunal", + "site_detail_url": "https://comicvine.gamespot.com/tribunal/4005-27456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27460/", + "id": 27460, + "name": "Mastodon", + "site_detail_url": "https://comicvine.gamespot.com/mastodon/4005-27460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27461/", + "id": 27461, + "name": "Sumo", + "site_detail_url": "https://comicvine.gamespot.com/sumo/4005-27461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27464/", + "id": 27464, + "name": "Hazard", + "site_detail_url": "https://comicvine.gamespot.com/hazard/4005-27464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27465/", + "id": 27465, + "name": "Alexander Ryking", + "site_detail_url": "https://comicvine.gamespot.com/alexander-ryking/4005-27465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27471/", + "id": 27471, + "name": "Puff Adder", + "site_detail_url": "https://comicvine.gamespot.com/puff-adder/4005-27471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27473/", + "id": 27473, + "name": "John Bushmaster", + "site_detail_url": "https://comicvine.gamespot.com/john-bushmaster/4005-27473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27475/", + "id": 27475, + "name": "Terror", + "site_detail_url": "https://comicvine.gamespot.com/terror/4005-27475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27476/", + "id": 27476, + "name": "Jonin", + "site_detail_url": "https://comicvine.gamespot.com/jonin/4005-27476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27477/", + "id": 27477, + "name": "Izanami", + "site_detail_url": "https://comicvine.gamespot.com/izanami/4005-27477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27500/", + "id": 27500, + "name": "Traci Fields", + "site_detail_url": "https://comicvine.gamespot.com/traci-fields/4005-27500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27508/", + "id": 27508, + "name": "Pico", + "site_detail_url": "https://comicvine.gamespot.com/pico/4005-27508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27509/", + "id": 27509, + "name": "Prodigal", + "site_detail_url": "https://comicvine.gamespot.com/prodigal/4005-27509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27510/", + "id": 27510, + "name": "Shrew", + "site_detail_url": "https://comicvine.gamespot.com/shrew/4005-27510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27512/", + "id": 27512, + "name": "Swift", + "site_detail_url": "https://comicvine.gamespot.com/swift/4005-27512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27513/", + "id": 27513, + "name": "Warfare", + "site_detail_url": "https://comicvine.gamespot.com/warfare/4005-27513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27516/", + "id": 27516, + "name": "Brain Cell", + "site_detail_url": "https://comicvine.gamespot.com/brain-cell/4005-27516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27521/", + "id": 27521, + "name": "Rann Njalsdotter", + "site_detail_url": "https://comicvine.gamespot.com/rann-njalsdotter/4005-27521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27522/", + "id": 27522, + "name": "Shon", + "site_detail_url": "https://comicvine.gamespot.com/shon/4005-27522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27538/", + "id": 27538, + "name": "Pick Axis", + "site_detail_url": "https://comicvine.gamespot.com/pick-axis/4005-27538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27540/", + "id": 27540, + "name": "Bunyon", + "site_detail_url": "https://comicvine.gamespot.com/bunyon/4005-27540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27546/", + "id": 27546, + "name": "Psi-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/psi-wolf/4005-27546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27547/", + "id": 27547, + "name": "Scattershot", + "site_detail_url": "https://comicvine.gamespot.com/scattershot/4005-27547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27548/", + "id": 27548, + "name": "Volga Belle", + "site_detail_url": "https://comicvine.gamespot.com/volga-belle/4005-27548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27549/", + "id": 27549, + "name": "Siberion", + "site_detail_url": "https://comicvine.gamespot.com/siberion/4005-27549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27550/", + "id": 27550, + "name": "Captain Fielding Fein", + "site_detail_url": "https://comicvine.gamespot.com/captain-fielding-fein/4005-27550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27552/", + "id": 27552, + "name": "Professor Anatoly Vonya", + "site_detail_url": "https://comicvine.gamespot.com/professor-anatoly-vonya/4005-27552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27562/", + "id": 27562, + "name": "Warhawk", + "site_detail_url": "https://comicvine.gamespot.com/warhawk/4005-27562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27563/", + "id": 27563, + "name": "Tygerstryke", + "site_detail_url": "https://comicvine.gamespot.com/tygerstryke/4005-27563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27564/", + "id": 27564, + "name": "Rhapsody", + "site_detail_url": "https://comicvine.gamespot.com/rhapsody/4005-27564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27565/", + "id": 27565, + "name": "Briquette", + "site_detail_url": "https://comicvine.gamespot.com/briquette/4005-27565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27566/", + "id": 27566, + "name": "Vague", + "site_detail_url": "https://comicvine.gamespot.com/vague/4005-27566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27567/", + "id": 27567, + "name": "Whisper", + "site_detail_url": "https://comicvine.gamespot.com/whisper/4005-27567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27568/", + "id": 27568, + "name": "Pulse", + "site_detail_url": "https://comicvine.gamespot.com/pulse/4005-27568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27570/", + "id": 27570, + "name": "Khoon", + "site_detail_url": "https://comicvine.gamespot.com/khoon/4005-27570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27572/", + "id": 27572, + "name": "Frost", + "site_detail_url": "https://comicvine.gamespot.com/frost/4005-27572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27575/", + "id": 27575, + "name": "Wren", + "site_detail_url": "https://comicvine.gamespot.com/wren/4005-27575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27578/", + "id": 27578, + "name": "Mad-Dog", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog/4005-27578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27579/", + "id": 27579, + "name": "Firebug", + "site_detail_url": "https://comicvine.gamespot.com/firebug/4005-27579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27582/", + "id": 27582, + "name": "Kid Quarry", + "site_detail_url": "https://comicvine.gamespot.com/kid-quarry/4005-27582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27608/", + "id": 27608, + "name": "Kojiro", + "site_detail_url": "https://comicvine.gamespot.com/kojiro/4005-27608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27612/", + "id": 27612, + "name": "Moonhunter", + "site_detail_url": "https://comicvine.gamespot.com/moonhunter/4005-27612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27616/", + "id": 27616, + "name": "Tiara Hotstones", + "site_detail_url": "https://comicvine.gamespot.com/tiara-hotstones/4005-27616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27618/", + "id": 27618, + "name": "Cheryl Colon", + "site_detail_url": "https://comicvine.gamespot.com/cheryl-colon/4005-27618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27619/", + "id": 27619, + "name": "Saint Johnny", + "site_detail_url": "https://comicvine.gamespot.com/saint-johnny/4005-27619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27620/", + "id": 27620, + "name": "Mrs. Bauer", + "site_detail_url": "https://comicvine.gamespot.com/mrs-bauer/4005-27620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27627/", + "id": 27627, + "name": "Triax", + "site_detail_url": "https://comicvine.gamespot.com/triax/4005-27627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27629/", + "id": 27629, + "name": "Meeks", + "site_detail_url": "https://comicvine.gamespot.com/meeks/4005-27629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27630/", + "id": 27630, + "name": "Flambe", + "site_detail_url": "https://comicvine.gamespot.com/flambe/4005-27630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27644/", + "id": 27644, + "name": "Surgeon General", + "site_detail_url": "https://comicvine.gamespot.com/surgeon-general/4005-27644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27663/", + "id": 27663, + "name": "Max Boothroyd", + "site_detail_url": "https://comicvine.gamespot.com/max-boothroyd/4005-27663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27664/", + "id": 27664, + "name": "Headset", + "site_detail_url": "https://comicvine.gamespot.com/headset/4005-27664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27665/", + "id": 27665, + "name": "Mitch Marley", + "site_detail_url": "https://comicvine.gamespot.com/mitch-marley/4005-27665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27667/", + "id": 27667, + "name": "Grog", + "site_detail_url": "https://comicvine.gamespot.com/grog/4005-27667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27669/", + "id": 27669, + "name": "Rebecca", + "site_detail_url": "https://comicvine.gamespot.com/rebecca/4005-27669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27672/", + "id": 27672, + "name": "Mistress Love", + "site_detail_url": "https://comicvine.gamespot.com/mistress-love/4005-27672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27673/", + "id": 27673, + "name": "Master Hate", + "site_detail_url": "https://comicvine.gamespot.com/master-hate/4005-27673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27677/", + "id": 27677, + "name": "Nimed", + "site_detail_url": "https://comicvine.gamespot.com/nimed/4005-27677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27678/", + "id": 27678, + "name": "Demetrio", + "site_detail_url": "https://comicvine.gamespot.com/demetrio/4005-27678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27680/", + "id": 27680, + "name": "Tarascus", + "site_detail_url": "https://comicvine.gamespot.com/tarascus/4005-27680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27683/", + "id": 27683, + "name": "Tarianna", + "site_detail_url": "https://comicvine.gamespot.com/tarianna/4005-27683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27705/", + "id": 27705, + "name": "Johnny Leone", + "site_detail_url": "https://comicvine.gamespot.com/johnny-leone/4005-27705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27721/", + "id": 27721, + "name": "Styglut", + "site_detail_url": "https://comicvine.gamespot.com/styglut/4005-27721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27722/", + "id": 27722, + "name": "Reptyl", + "site_detail_url": "https://comicvine.gamespot.com/reptyl/4005-27722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27723/", + "id": 27723, + "name": "Igor Drenkov", + "site_detail_url": "https://comicvine.gamespot.com/igor-drenkov/4005-27723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27724/", + "id": 27724, + "name": "Necrom", + "site_detail_url": "https://comicvine.gamespot.com/necrom/4005-27724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27728/", + "id": 27728, + "name": "Torumjumala", + "site_detail_url": "https://comicvine.gamespot.com/torumjumala/4005-27728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27751/", + "id": 27751, + "name": "Idnar", + "site_detail_url": "https://comicvine.gamespot.com/idnar/4005-27751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27755/", + "id": 27755, + "name": "Thumbelina", + "site_detail_url": "https://comicvine.gamespot.com/thumbelina/4005-27755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27760/", + "id": 27760, + "name": "Ael-Dan", + "site_detail_url": "https://comicvine.gamespot.com/ael-dan/4005-27760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27761/", + "id": 27761, + "name": "Dar-Ben", + "site_detail_url": "https://comicvine.gamespot.com/dar-ben/4005-27761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27763/", + "id": 27763, + "name": "Sidestep", + "site_detail_url": "https://comicvine.gamespot.com/sidestep/4005-27763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27764/", + "id": 27764, + "name": "Brahl", + "site_detail_url": "https://comicvine.gamespot.com/brahl/4005-27764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27766/", + "id": 27766, + "name": "Peter London", + "site_detail_url": "https://comicvine.gamespot.com/peter-london/4005-27766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27786/", + "id": 27786, + "name": "Lotta Dinero", + "site_detail_url": "https://comicvine.gamespot.com/lotta-dinero/4005-27786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27787/", + "id": 27787, + "name": "Mr. Dinero", + "site_detail_url": "https://comicvine.gamespot.com/mr-dinero/4005-27787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27789/", + "id": 27789, + "name": "Louie McPhee", + "site_detail_url": "https://comicvine.gamespot.com/louie-mcphee/4005-27789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27795/", + "id": 27795, + "name": "Fear Eater", + "site_detail_url": "https://comicvine.gamespot.com/fear-eater/4005-27795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27797/", + "id": 27797, + "name": "Fear Eaters", + "site_detail_url": "https://comicvine.gamespot.com/fear-eaters/4005-27797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27802/", + "id": 27802, + "name": "Farnoq Dahn", + "site_detail_url": "https://comicvine.gamespot.com/farnoq-dahn/4005-27802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27814/", + "id": 27814, + "name": "Monroe Harris", + "site_detail_url": "https://comicvine.gamespot.com/monroe-harris/4005-27814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27818/", + "id": 27818, + "name": "Lurking Unknown", + "site_detail_url": "https://comicvine.gamespot.com/lurking-unknown/4005-27818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27828/", + "id": 27828, + "name": "Randall Spector", + "site_detail_url": "https://comicvine.gamespot.com/randall-spector/4005-27828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27829/", + "id": 27829, + "name": "Frenchie", + "site_detail_url": "https://comicvine.gamespot.com/frenchie/4005-27829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27830/", + "id": 27830, + "name": "Princess Nepthys", + "site_detail_url": "https://comicvine.gamespot.com/princess-nepthys/4005-27830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27837/", + "id": 27837, + "name": "Dr. Melinda Brewer", + "site_detail_url": "https://comicvine.gamespot.com/dr-melinda-brewer/4005-27837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27840/", + "id": 27840, + "name": "James Bond Jr", + "site_detail_url": "https://comicvine.gamespot.com/james-bond-jr/4005-27840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27845/", + "id": 27845, + "name": "Borgo", + "site_detail_url": "https://comicvine.gamespot.com/borgo/4005-27845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27852/", + "id": 27852, + "name": "Malcolm", + "site_detail_url": "https://comicvine.gamespot.com/malcolm/4005-27852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27853/", + "id": 27853, + "name": "Primate", + "site_detail_url": "https://comicvine.gamespot.com/primate/4005-27853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27854/", + "id": 27854, + "name": "Adjunct", + "site_detail_url": "https://comicvine.gamespot.com/adjunct/4005-27854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27857/", + "id": 27857, + "name": "Punisher Robot", + "site_detail_url": "https://comicvine.gamespot.com/punisher-robot/4005-27857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27858/", + "id": 27858, + "name": "Doughboy", + "site_detail_url": "https://comicvine.gamespot.com/doughboy/4005-27858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27860/", + "id": 27860, + "name": "Impala", + "site_detail_url": "https://comicvine.gamespot.com/impala/4005-27860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27880/", + "id": 27880, + "name": "Dracchiss", + "site_detail_url": "https://comicvine.gamespot.com/dracchiss/4005-27880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27882/", + "id": 27882, + "name": "Bombshell", + "site_detail_url": "https://comicvine.gamespot.com/bombshell/4005-27882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27883/", + "id": 27883, + "name": "Pablo Mendez", + "site_detail_url": "https://comicvine.gamespot.com/pablo-mendez/4005-27883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27884/", + "id": 27884, + "name": "White Dragon", + "site_detail_url": "https://comicvine.gamespot.com/white-dragon/4005-27884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27887/", + "id": 27887, + "name": "Chadwick", + "site_detail_url": "https://comicvine.gamespot.com/chadwick/4005-27887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27889/", + "id": 27889, + "name": "Dumog", + "site_detail_url": "https://comicvine.gamespot.com/dumog/4005-27889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27890/", + "id": 27890, + "name": "Grott", + "site_detail_url": "https://comicvine.gamespot.com/grott/4005-27890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27892/", + "id": 27892, + "name": "Ogord", + "site_detail_url": "https://comicvine.gamespot.com/ogord/4005-27892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27893/", + "id": 27893, + "name": "Force", + "site_detail_url": "https://comicvine.gamespot.com/force/4005-27893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27894/", + "id": 27894, + "name": "Interface", + "site_detail_url": "https://comicvine.gamespot.com/interface/4005-27894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27896/", + "id": 27896, + "name": "Tachyon", + "site_detail_url": "https://comicvine.gamespot.com/tachyon/4005-27896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27900/", + "id": 27900, + "name": "Ultra-Max", + "site_detail_url": "https://comicvine.gamespot.com/ultra-max/4005-27900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27921/", + "id": 27921, + "name": "Wild One", + "site_detail_url": "https://comicvine.gamespot.com/wild-one/4005-27921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27922/", + "id": 27922, + "name": "Shanzar", + "site_detail_url": "https://comicvine.gamespot.com/shanzar/4005-27922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27923/", + "id": 27923, + "name": "Lucian Aster", + "site_detail_url": "https://comicvine.gamespot.com/lucian-aster/4005-27923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27925/", + "id": 27925, + "name": "Aggamon", + "site_detail_url": "https://comicvine.gamespot.com/aggamon/4005-27925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27934/", + "id": 27934, + "name": "Cyberlock", + "site_detail_url": "https://comicvine.gamespot.com/cyberlock/4005-27934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27935/", + "id": 27935, + "name": "Scheduler", + "site_detail_url": "https://comicvine.gamespot.com/scheduler/4005-27935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27936/", + "id": 27936, + "name": "Wiz Kid", + "site_detail_url": "https://comicvine.gamespot.com/wiz-kid/4005-27936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27953/", + "id": 27953, + "name": "Class Clown", + "site_detail_url": "https://comicvine.gamespot.com/class-clown/4005-27953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27978/", + "id": 27978, + "name": "Jonathan Powell", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-powell/4005-27978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27983/", + "id": 27983, + "name": "Hypertron 1.0", + "site_detail_url": "https://comicvine.gamespot.com/hypertron-10/4005-27983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27985/", + "id": 27985, + "name": "Myron Feldman", + "site_detail_url": "https://comicvine.gamespot.com/myron-feldman/4005-27985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27988/", + "id": 27988, + "name": "Midnight Sun", + "site_detail_url": "https://comicvine.gamespot.com/midnight-sun/4005-27988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27990/", + "id": 27990, + "name": "Algernon", + "site_detail_url": "https://comicvine.gamespot.com/algernon/4005-27990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-27992/", + "id": 27992, + "name": "Gregario", + "site_detail_url": "https://comicvine.gamespot.com/gregario/4005-27992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28002/", + "id": 28002, + "name": "Chen Hsu", + "site_detail_url": "https://comicvine.gamespot.com/chen-hsu/4005-28002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28003/", + "id": 28003, + "name": "Su Yin", + "site_detail_url": "https://comicvine.gamespot.com/su-yin/4005-28003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28004/", + "id": 28004, + "name": "Terraxia", + "site_detail_url": "https://comicvine.gamespot.com/terraxia/4005-28004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28005/", + "id": 28005, + "name": "Kronos", + "site_detail_url": "https://comicvine.gamespot.com/kronos/4005-28005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28025/", + "id": 28025, + "name": "Minor Domo", + "site_detail_url": "https://comicvine.gamespot.com/minor-domo/4005-28025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28034/", + "id": 28034, + "name": "Balaban", + "site_detail_url": "https://comicvine.gamespot.com/balaban/4005-28034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28038/", + "id": 28038, + "name": "Ray Coffin", + "site_detail_url": "https://comicvine.gamespot.com/ray-coffin/4005-28038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28039/", + "id": 28039, + "name": "Man-Mountain Marko", + "site_detail_url": "https://comicvine.gamespot.com/man-mountain-marko/4005-28039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28049/", + "id": 28049, + "name": "Phoebe Marrs", + "site_detail_url": "https://comicvine.gamespot.com/phoebe-marrs/4005-28049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28052/", + "id": 28052, + "name": "Max Meer", + "site_detail_url": "https://comicvine.gamespot.com/max-meer/4005-28052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28053/", + "id": 28053, + "name": "Greta Rabin", + "site_detail_url": "https://comicvine.gamespot.com/greta-rabin/4005-28053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28054/", + "id": 28054, + "name": "Vormund", + "site_detail_url": "https://comicvine.gamespot.com/vormund/4005-28054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28055/", + "id": 28055, + "name": "Mother Night", + "site_detail_url": "https://comicvine.gamespot.com/mother-night/4005-28055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28056/", + "id": 28056, + "name": "Watchdog Prime", + "site_detail_url": "https://comicvine.gamespot.com/watchdog-prime/4005-28056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28057/", + "id": 28057, + "name": "Sin", + "site_detail_url": "https://comicvine.gamespot.com/sin/4005-28057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28058/", + "id": 28058, + "name": "Power Broker", + "site_detail_url": "https://comicvine.gamespot.com/power-broker/4005-28058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28059/", + "id": 28059, + "name": "Minister Blood", + "site_detail_url": "https://comicvine.gamespot.com/minister-blood/4005-28059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28088/", + "id": 28088, + "name": "Dr. Marin", + "site_detail_url": "https://comicvine.gamespot.com/dr-marin/4005-28088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28109/", + "id": 28109, + "name": "Bloodshed", + "site_detail_url": "https://comicvine.gamespot.com/bloodshed/4005-28109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28110/", + "id": 28110, + "name": "Ricky Dichinson", + "site_detail_url": "https://comicvine.gamespot.com/ricky-dichinson/4005-28110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28111/", + "id": 28111, + "name": "Nenaunir", + "site_detail_url": "https://comicvine.gamespot.com/nenaunir/4005-28111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28113/", + "id": 28113, + "name": "Pretty Boy", + "site_detail_url": "https://comicvine.gamespot.com/pretty-boy/4005-28113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28118/", + "id": 28118, + "name": "Protege", + "site_detail_url": "https://comicvine.gamespot.com/protege/4005-28118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28155/", + "id": 28155, + "name": "Samuel J. Skrull", + "site_detail_url": "https://comicvine.gamespot.com/samuel-j-skrull/4005-28155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28158/", + "id": 28158, + "name": "Zota The Pergamum", + "site_detail_url": "https://comicvine.gamespot.com/zota-the-pergamum/4005-28158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28163/", + "id": 28163, + "name": "Ward Meachum", + "site_detail_url": "https://comicvine.gamespot.com/ward-meachum/4005-28163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28164/", + "id": 28164, + "name": "Desmond Marrs", + "site_detail_url": "https://comicvine.gamespot.com/desmond-marrs/4005-28164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28167/", + "id": 28167, + "name": "Eightyfive", + "site_detail_url": "https://comicvine.gamespot.com/eightyfive/4005-28167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28191/", + "id": 28191, + "name": "Moth", + "site_detail_url": "https://comicvine.gamespot.com/moth/4005-28191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28193/", + "id": 28193, + "name": "Thane Ector", + "site_detail_url": "https://comicvine.gamespot.com/thane-ector/4005-28193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28194/", + "id": 28194, + "name": "Sybyl Dorn", + "site_detail_url": "https://comicvine.gamespot.com/sybyl-dorn/4005-28194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28195/", + "id": 28195, + "name": "Fool", + "site_detail_url": "https://comicvine.gamespot.com/fool/4005-28195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28199/", + "id": 28199, + "name": "Leila Davis", + "site_detail_url": "https://comicvine.gamespot.com/leila-davis/4005-28199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28200/", + "id": 28200, + "name": "Paradok", + "site_detail_url": "https://comicvine.gamespot.com/paradok/4005-28200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28204/", + "id": 28204, + "name": "Colonel Vashkin", + "site_detail_url": "https://comicvine.gamespot.com/colonel-vashkin/4005-28204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28207/", + "id": 28207, + "name": "Ripster", + "site_detail_url": "https://comicvine.gamespot.com/ripster/4005-28207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28208/", + "id": 28208, + "name": "Slambeaux", + "site_detail_url": "https://comicvine.gamespot.com/slambeaux/4005-28208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28209/", + "id": 28209, + "name": "Purty Larry", + "site_detail_url": "https://comicvine.gamespot.com/purty-larry/4005-28209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28210/", + "id": 28210, + "name": "Twit", + "site_detail_url": "https://comicvine.gamespot.com/twit/4005-28210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28211/", + "id": 28211, + "name": "Lian Shen", + "site_detail_url": "https://comicvine.gamespot.com/lian-shen/4005-28211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28215/", + "id": 28215, + "name": "Mr. Mobius", + "site_detail_url": "https://comicvine.gamespot.com/mr-mobius/4005-28215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28216/", + "id": 28216, + "name": "Fluppy", + "site_detail_url": "https://comicvine.gamespot.com/fluppy/4005-28216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28229/", + "id": 28229, + "name": "Wargod", + "site_detail_url": "https://comicvine.gamespot.com/wargod/4005-28229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28244/", + "id": 28244, + "name": "Ent", + "site_detail_url": "https://comicvine.gamespot.com/ent/4005-28244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28249/", + "id": 28249, + "name": "Clay Riley", + "site_detail_url": "https://comicvine.gamespot.com/clay-riley/4005-28249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28266/", + "id": 28266, + "name": "Radian", + "site_detail_url": "https://comicvine.gamespot.com/radian/4005-28266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28278/", + "id": 28278, + "name": "Sykes", + "site_detail_url": "https://comicvine.gamespot.com/sykes/4005-28278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28279/", + "id": 28279, + "name": "Mr. Jacobs", + "site_detail_url": "https://comicvine.gamespot.com/mr-jacobs/4005-28279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28280/", + "id": 28280, + "name": "Mr. Stone", + "site_detail_url": "https://comicvine.gamespot.com/mr-stone/4005-28280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28281/", + "id": 28281, + "name": "Florio", + "site_detail_url": "https://comicvine.gamespot.com/florio/4005-28281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28282/", + "id": 28282, + "name": "Ormond Wychwood", + "site_detail_url": "https://comicvine.gamespot.com/ormond-wychwood/4005-28282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28283/", + "id": 28283, + "name": "Janet", + "site_detail_url": "https://comicvine.gamespot.com/janet/4005-28283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28285/", + "id": 28285, + "name": "Psynapse", + "site_detail_url": "https://comicvine.gamespot.com/psynapse/4005-28285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28287/", + "id": 28287, + "name": "Mother Inferior", + "site_detail_url": "https://comicvine.gamespot.com/mother-inferior/4005-28287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28289/", + "id": 28289, + "name": "Manacle", + "site_detail_url": "https://comicvine.gamespot.com/manacle/4005-28289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28291/", + "id": 28291, + "name": "Dakini", + "site_detail_url": "https://comicvine.gamespot.com/dakini/4005-28291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28292/", + "id": 28292, + "name": "Guillotine", + "site_detail_url": "https://comicvine.gamespot.com/guillotine/4005-28292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28293/", + "id": 28293, + "name": "Rudy Thurston", + "site_detail_url": "https://comicvine.gamespot.com/rudy-thurston/4005-28293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28315/", + "id": 28315, + "name": "Spark", + "site_detail_url": "https://comicvine.gamespot.com/spark/4005-28315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28316/", + "id": 28316, + "name": "Bora", + "site_detail_url": "https://comicvine.gamespot.com/bora/4005-28316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28317/", + "id": 28317, + "name": "Skrull Prime", + "site_detail_url": "https://comicvine.gamespot.com/skrull-prime/4005-28317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28321/", + "id": 28321, + "name": "Leoninus", + "site_detail_url": "https://comicvine.gamespot.com/leoninus/4005-28321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28351/", + "id": 28351, + "name": "Hump", + "site_detail_url": "https://comicvine.gamespot.com/hump/4005-28351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28359/", + "id": 28359, + "name": "Jerry Naylor", + "site_detail_url": "https://comicvine.gamespot.com/jerry-naylor/4005-28359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28360/", + "id": 28360, + "name": "Melody", + "site_detail_url": "https://comicvine.gamespot.com/melody/4005-28360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28363/", + "id": 28363, + "name": "Leo Haney", + "site_detail_url": "https://comicvine.gamespot.com/leo-haney/4005-28363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28365/", + "id": 28365, + "name": "Karanthes", + "site_detail_url": "https://comicvine.gamespot.com/karanthes/4005-28365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28366/", + "id": 28366, + "name": "Zukala", + "site_detail_url": "https://comicvine.gamespot.com/zukala/4005-28366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28367/", + "id": 28367, + "name": "Balthus", + "site_detail_url": "https://comicvine.gamespot.com/balthus/4005-28367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28394/", + "id": 28394, + "name": "Possessors", + "site_detail_url": "https://comicvine.gamespot.com/possessors/4005-28394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28395/", + "id": 28395, + "name": "Caretakers From Arcturus", + "site_detail_url": "https://comicvine.gamespot.com/caretakers-from-arcturus/4005-28395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28396/", + "id": 28396, + "name": "Ebrok", + "site_detail_url": "https://comicvine.gamespot.com/ebrok/4005-28396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28397/", + "id": 28397, + "name": "Daemond", + "site_detail_url": "https://comicvine.gamespot.com/daemond/4005-28397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28398/", + "id": 28398, + "name": "Tara", + "site_detail_url": "https://comicvine.gamespot.com/tara/4005-28398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28399/", + "id": 28399, + "name": "Laura Russoff", + "site_detail_url": "https://comicvine.gamespot.com/laura-russoff/4005-28399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28400/", + "id": 28400, + "name": "Taboo", + "site_detail_url": "https://comicvine.gamespot.com/taboo/4005-28400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28401/", + "id": 28401, + "name": "Dr. Glitternight", + "site_detail_url": "https://comicvine.gamespot.com/dr-glitternight/4005-28401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28406/", + "id": 28406, + "name": "Warrior Woman", + "site_detail_url": "https://comicvine.gamespot.com/warrior-woman/4005-28406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28429/", + "id": 28429, + "name": "Greysire", + "site_detail_url": "https://comicvine.gamespot.com/greysire/4005-28429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28445/", + "id": 28445, + "name": "Carrie Alexander", + "site_detail_url": "https://comicvine.gamespot.com/carrie-alexander/4005-28445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28448/", + "id": 28448, + "name": "Rocco Castiglione", + "site_detail_url": "https://comicvine.gamespot.com/rocco-castiglione/4005-28448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28449/", + "id": 28449, + "name": "Saracen", + "site_detail_url": "https://comicvine.gamespot.com/saracen/4005-28449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28459/", + "id": 28459, + "name": "Madame Reneau", + "site_detail_url": "https://comicvine.gamespot.com/madame-reneau/4005-28459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28466/", + "id": 28466, + "name": "Dominic Fortune", + "site_detail_url": "https://comicvine.gamespot.com/dominic-fortune/4005-28466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28468/", + "id": 28468, + "name": "Sabbath Raven", + "site_detail_url": "https://comicvine.gamespot.com/sabbath-raven/4005-28468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28469/", + "id": 28469, + "name": "Chief Presiding Justice", + "site_detail_url": "https://comicvine.gamespot.com/chief-presiding-justice/4005-28469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28470/", + "id": 28470, + "name": "David Moreau", + "site_detail_url": "https://comicvine.gamespot.com/david-moreau/4005-28470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28476/", + "id": 28476, + "name": "Lt. Glazier", + "site_detail_url": "https://comicvine.gamespot.com/lt-glazier/4005-28476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28477/", + "id": 28477, + "name": "Nyla Skin", + "site_detail_url": "https://comicvine.gamespot.com/nyla-skin/4005-28477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28479/", + "id": 28479, + "name": "Knockout", + "site_detail_url": "https://comicvine.gamespot.com/knockout/4005-28479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28480/", + "id": 28480, + "name": "Bloodlust", + "site_detail_url": "https://comicvine.gamespot.com/bloodlust/4005-28480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28503/", + "id": 28503, + "name": "Brutus", + "site_detail_url": "https://comicvine.gamespot.com/brutus/4005-28503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28505/", + "id": 28505, + "name": "Kala", + "site_detail_url": "https://comicvine.gamespot.com/kala/4005-28505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28508/", + "id": 28508, + "name": "Pedro", + "site_detail_url": "https://comicvine.gamespot.com/pedro/4005-28508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28509/", + "id": 28509, + "name": "Sunturion", + "site_detail_url": "https://comicvine.gamespot.com/sunturion/4005-28509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28511/", + "id": 28511, + "name": "Jonas Hale", + "site_detail_url": "https://comicvine.gamespot.com/jonas-hale/4005-28511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28516/", + "id": 28516, + "name": "Dr. Jonathan Ridge", + "site_detail_url": "https://comicvine.gamespot.com/dr-jonathan-ridge/4005-28516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28517/", + "id": 28517, + "name": "Agent Six", + "site_detail_url": "https://comicvine.gamespot.com/agent-six/4005-28517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28520/", + "id": 28520, + "name": "Justin Baldwin", + "site_detail_url": "https://comicvine.gamespot.com/justin-baldwin/4005-28520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28521/", + "id": 28521, + "name": "Kraa", + "site_detail_url": "https://comicvine.gamespot.com/kraa/4005-28521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28522/", + "id": 28522, + "name": "Agent Four", + "site_detail_url": "https://comicvine.gamespot.com/agent-four/4005-28522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28529/", + "id": 28529, + "name": "Sirocco", + "site_detail_url": "https://comicvine.gamespot.com/sirocco/4005-28529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28544/", + "id": 28544, + "name": "Fighting Yank", + "site_detail_url": "https://comicvine.gamespot.com/fighting-yank/4005-28544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28546/", + "id": 28546, + "name": "Secret Stamp", + "site_detail_url": "https://comicvine.gamespot.com/secret-stamp/4005-28546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28565/", + "id": 28565, + "name": "Uroc", + "site_detail_url": "https://comicvine.gamespot.com/uroc/4005-28565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28570/", + "id": 28570, + "name": "Waldo", + "site_detail_url": "https://comicvine.gamespot.com/waldo/4005-28570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28571/", + "id": 28571, + "name": "Zenith", + "site_detail_url": "https://comicvine.gamespot.com/zenith/4005-28571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28572/", + "id": 28572, + "name": "Blackthorn", + "site_detail_url": "https://comicvine.gamespot.com/blackthorn/4005-28572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28573/", + "id": 28573, + "name": "White Noise", + "site_detail_url": "https://comicvine.gamespot.com/white-noise/4005-28573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28574/", + "id": 28574, + "name": "Black Light", + "site_detail_url": "https://comicvine.gamespot.com/black-light/4005-28574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28582/", + "id": 28582, + "name": "Mhuruuks", + "site_detail_url": "https://comicvine.gamespot.com/mhuruuks/4005-28582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28583/", + "id": 28583, + "name": "Wipeout", + "site_detail_url": "https://comicvine.gamespot.com/wipeout/4005-28583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28587/", + "id": 28587, + "name": "Jacko Tanner", + "site_detail_url": "https://comicvine.gamespot.com/jacko-tanner/4005-28587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28609/", + "id": 28609, + "name": "Zom", + "site_detail_url": "https://comicvine.gamespot.com/zom/4005-28609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28610/", + "id": 28610, + "name": "Pamela Hawley", + "site_detail_url": "https://comicvine.gamespot.com/pamela-hawley/4005-28610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28611/", + "id": 28611, + "name": "Anthony Baskerville", + "site_detail_url": "https://comicvine.gamespot.com/anthony-baskerville/4005-28611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28615/", + "id": 28615, + "name": "George Chelm", + "site_detail_url": "https://comicvine.gamespot.com/george-chelm/4005-28615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28618/", + "id": 28618, + "name": "Leir", + "site_detail_url": "https://comicvine.gamespot.com/leir/4005-28618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28622/", + "id": 28622, + "name": "Gitara", + "site_detail_url": "https://comicvine.gamespot.com/gitara/4005-28622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28627/", + "id": 28627, + "name": "Auric", + "site_detail_url": "https://comicvine.gamespot.com/auric/4005-28627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28628/", + "id": 28628, + "name": "Silver", + "site_detail_url": "https://comicvine.gamespot.com/silver/4005-28628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28649/", + "id": 28649, + "name": "Kamikaze", + "site_detail_url": "https://comicvine.gamespot.com/kamikaze/4005-28649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28650/", + "id": 28650, + "name": "Cervic", + "site_detail_url": "https://comicvine.gamespot.com/cervic/4005-28650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28657/", + "id": 28657, + "name": "Zog", + "site_detail_url": "https://comicvine.gamespot.com/zog/4005-28657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28658/", + "id": 28658, + "name": "Tazza", + "site_detail_url": "https://comicvine.gamespot.com/tazza/4005-28658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28659/", + "id": 28659, + "name": "Orini", + "site_detail_url": "https://comicvine.gamespot.com/orini/4005-28659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28662/", + "id": 28662, + "name": "Timmy Jones", + "site_detail_url": "https://comicvine.gamespot.com/timmy-jones/4005-28662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28665/", + "id": 28665, + "name": "Sluj", + "site_detail_url": "https://comicvine.gamespot.com/sluj/4005-28665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28669/", + "id": 28669, + "name": "Vostok", + "site_detail_url": "https://comicvine.gamespot.com/vostok/4005-28669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28670/", + "id": 28670, + "name": "Fantasma", + "site_detail_url": "https://comicvine.gamespot.com/fantasma/4005-28670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28673/", + "id": 28673, + "name": "Combine", + "site_detail_url": "https://comicvine.gamespot.com/combine/4005-28673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28674/", + "id": 28674, + "name": "Tyrak", + "site_detail_url": "https://comicvine.gamespot.com/tyrak/4005-28674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28676/", + "id": 28676, + "name": "Machinesmith", + "site_detail_url": "https://comicvine.gamespot.com/machinesmith/4005-28676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28699/", + "id": 28699, + "name": "Ivan Petrovitch", + "site_detail_url": "https://comicvine.gamespot.com/ivan-petrovitch/4005-28699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28705/", + "id": 28705, + "name": "Coral", + "site_detail_url": "https://comicvine.gamespot.com/coral/4005-28705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28706/", + "id": 28706, + "name": "Ruby", + "site_detail_url": "https://comicvine.gamespot.com/ruby/4005-28706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28710/", + "id": 28710, + "name": "Einstein", + "site_detail_url": "https://comicvine.gamespot.com/einstein/4005-28710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28711/", + "id": 28711, + "name": "DaVinci", + "site_detail_url": "https://comicvine.gamespot.com/davinci/4005-28711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28716/", + "id": 28716, + "name": "Tiboro", + "site_detail_url": "https://comicvine.gamespot.com/tiboro/4005-28716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28718/", + "id": 28718, + "name": "Olnar", + "site_detail_url": "https://comicvine.gamespot.com/olnar/4005-28718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28720/", + "id": 28720, + "name": "Jetboy", + "site_detail_url": "https://comicvine.gamespot.com/jetboy/4005-28720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28726/", + "id": 28726, + "name": "Nobilus", + "site_detail_url": "https://comicvine.gamespot.com/nobilus/4005-28726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28730/", + "id": 28730, + "name": "Overkill", + "site_detail_url": "https://comicvine.gamespot.com/overkill/4005-28730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28731/", + "id": 28731, + "name": "Babyface", + "site_detail_url": "https://comicvine.gamespot.com/babyface/4005-28731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28732/", + "id": 28732, + "name": "Jonathon Caesar", + "site_detail_url": "https://comicvine.gamespot.com/jonathon-caesar/4005-28732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28750/", + "id": 28750, + "name": "Captain Tyger", + "site_detail_url": "https://comicvine.gamespot.com/captain-tyger/4005-28750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28751/", + "id": 28751, + "name": "Legba", + "site_detail_url": "https://comicvine.gamespot.com/legba/4005-28751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28753/", + "id": 28753, + "name": "Laureant", + "site_detail_url": "https://comicvine.gamespot.com/laureant/4005-28753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28754/", + "id": 28754, + "name": "Dona Elmina", + "site_detail_url": "https://comicvine.gamespot.com/dona-elmina/4005-28754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28755/", + "id": 28755, + "name": "Papa Jambo", + "site_detail_url": "https://comicvine.gamespot.com/papa-jambo/4005-28755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28756/", + "id": 28756, + "name": "Daniel Drumm", + "site_detail_url": "https://comicvine.gamespot.com/daniel-drumm/4005-28756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28760/", + "id": 28760, + "name": "Crimson", + "site_detail_url": "https://comicvine.gamespot.com/crimson/4005-28760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28762/", + "id": 28762, + "name": "Detective Farrow", + "site_detail_url": "https://comicvine.gamespot.com/detective-farrow/4005-28762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28765/", + "id": 28765, + "name": "Nth Man", + "site_detail_url": "https://comicvine.gamespot.com/nth-man/4005-28765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28766/", + "id": 28766, + "name": "Colonel Novikova", + "site_detail_url": "https://comicvine.gamespot.com/colonel-novikova/4005-28766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28767/", + "id": 28767, + "name": "Dr. Candy Goodstroke", + "site_detail_url": "https://comicvine.gamespot.com/dr-candy-goodstroke/4005-28767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28768/", + "id": 28768, + "name": "Number Nine", + "site_detail_url": "https://comicvine.gamespot.com/number-nine/4005-28768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28770/", + "id": 28770, + "name": "Persuasion", + "site_detail_url": "https://comicvine.gamespot.com/persuasion/4005-28770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28795/", + "id": 28795, + "name": "Black Celestial", + "site_detail_url": "https://comicvine.gamespot.com/black-celestial/4005-28795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28797/", + "id": 28797, + "name": "Lady London", + "site_detail_url": "https://comicvine.gamespot.com/lady-london/4005-28797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28798/", + "id": 28798, + "name": "Centurion Britannus", + "site_detail_url": "https://comicvine.gamespot.com/centurion-britannus/4005-28798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28799/", + "id": 28799, + "name": "Chevalier Bretagne", + "site_detail_url": "https://comicvine.gamespot.com/chevalier-bretagne/4005-28799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28800/", + "id": 28800, + "name": "Victoria Bentley", + "site_detail_url": "https://comicvine.gamespot.com/victoria-bentley/4005-28800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28822/", + "id": 28822, + "name": "Bonebreaker", + "site_detail_url": "https://comicvine.gamespot.com/bonebreaker/4005-28822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28825/", + "id": 28825, + "name": "Brandy Ash", + "site_detail_url": "https://comicvine.gamespot.com/brandy-ash/4005-28825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28826/", + "id": 28826, + "name": "Shazana", + "site_detail_url": "https://comicvine.gamespot.com/shazana/4005-28826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28848/", + "id": 28848, + "name": "Ship", + "site_detail_url": "https://comicvine.gamespot.com/ship/4005-28848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28852/", + "id": 28852, + "name": "Blindside", + "site_detail_url": "https://comicvine.gamespot.com/blindside/4005-28852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28853/", + "id": 28853, + "name": "Rose Wu", + "site_detail_url": "https://comicvine.gamespot.com/rose-wu/4005-28853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28854/", + "id": 28854, + "name": "Battleaxe", + "site_detail_url": "https://comicvine.gamespot.com/battleaxe/4005-28854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28867/", + "id": 28867, + "name": "Bambu", + "site_detail_url": "https://comicvine.gamespot.com/bambu/4005-28867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28869/", + "id": 28869, + "name": "Mama Limbo", + "site_detail_url": "https://comicvine.gamespot.com/mama-limbo/4005-28869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28870/", + "id": 28870, + "name": "Dramabu", + "site_detail_url": "https://comicvine.gamespot.com/dramabu/4005-28870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28871/", + "id": 28871, + "name": "Danny Summer", + "site_detail_url": "https://comicvine.gamespot.com/danny-summer/4005-28871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28872/", + "id": 28872, + "name": "Mole", + "site_detail_url": "https://comicvine.gamespot.com/mole/4005-28872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28873/", + "id": 28873, + "name": "Dennis Golembuski", + "site_detail_url": "https://comicvine.gamespot.com/dennis-golembuski/4005-28873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28875/", + "id": 28875, + "name": "Eric Beale", + "site_detail_url": "https://comicvine.gamespot.com/eric-beale/4005-28875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28880/", + "id": 28880, + "name": "Asp", + "site_detail_url": "https://comicvine.gamespot.com/asp/4005-28880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28882/", + "id": 28882, + "name": "Voice", + "site_detail_url": "https://comicvine.gamespot.com/voice/4005-28882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28903/", + "id": 28903, + "name": "Father Bordia", + "site_detail_url": "https://comicvine.gamespot.com/father-bordia/4005-28903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28908/", + "id": 28908, + "name": "Baron Gregor Russoff", + "site_detail_url": "https://comicvine.gamespot.com/baron-gregor-russoff/4005-28908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28913/", + "id": 28913, + "name": "Kathi Blizzard", + "site_detail_url": "https://comicvine.gamespot.com/kathi-blizzard/4005-28913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28914/", + "id": 28914, + "name": "All-American", + "site_detail_url": "https://comicvine.gamespot.com/all-american/4005-28914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28945/", + "id": 28945, + "name": "Dittomaster", + "site_detail_url": "https://comicvine.gamespot.com/dittomaster/4005-28945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28970/", + "id": 28970, + "name": "Li Fong", + "site_detail_url": "https://comicvine.gamespot.com/li-fong/4005-28970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28972/", + "id": 28972, + "name": "Mai Chow", + "site_detail_url": "https://comicvine.gamespot.com/mai-chow/4005-28972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28973/", + "id": 28973, + "name": "Boulder", + "site_detail_url": "https://comicvine.gamespot.com/boulder/4005-28973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28974/", + "id": 28974, + "name": "Highlander", + "site_detail_url": "https://comicvine.gamespot.com/highlander/4005-28974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28975/", + "id": 28975, + "name": "Dyke", + "site_detail_url": "https://comicvine.gamespot.com/dyke/4005-28975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28976/", + "id": 28976, + "name": "Rapscallion", + "site_detail_url": "https://comicvine.gamespot.com/rapscallion/4005-28976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28977/", + "id": 28977, + "name": "Teleplex", + "site_detail_url": "https://comicvine.gamespot.com/teleplex/4005-28977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28978/", + "id": 28978, + "name": "Redeemer", + "site_detail_url": "https://comicvine.gamespot.com/redeemer/4005-28978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28981/", + "id": 28981, + "name": "Sister Gaia", + "site_detail_url": "https://comicvine.gamespot.com/sister-gaia/4005-28981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28982/", + "id": 28982, + "name": "Tri-Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/tri-sentinel/4005-28982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28987/", + "id": 28987, + "name": "Brightwind", + "site_detail_url": "https://comicvine.gamespot.com/brightwind/4005-28987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28988/", + "id": 28988, + "name": "Kindra", + "site_detail_url": "https://comicvine.gamespot.com/kindra/4005-28988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28991/", + "id": 28991, + "name": "Kaluu", + "site_detail_url": "https://comicvine.gamespot.com/kaluu/4005-28991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28997/", + "id": 28997, + "name": "Zharkah", + "site_detail_url": "https://comicvine.gamespot.com/zharkah/4005-28997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28998/", + "id": 28998, + "name": "Rath", + "site_detail_url": "https://comicvine.gamespot.com/rath/4005-28998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-28999/", + "id": 28999, + "name": "Agrom", + "site_detail_url": "https://comicvine.gamespot.com/agrom/4005-28999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29000/", + "id": 29000, + "name": "Dykon", + "site_detail_url": "https://comicvine.gamespot.com/dykon/4005-29000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29001/", + "id": 29001, + "name": "Seera", + "site_detail_url": "https://comicvine.gamespot.com/seera/4005-29001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29002/", + "id": 29002, + "name": "Lev", + "site_detail_url": "https://comicvine.gamespot.com/lev/4005-29002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29003/", + "id": 29003, + "name": "Ryest", + "site_detail_url": "https://comicvine.gamespot.com/ryest/4005-29003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29004/", + "id": 29004, + "name": "Vlon", + "site_detail_url": "https://comicvine.gamespot.com/vlon/4005-29004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29005/", + "id": 29005, + "name": "Zee Zee", + "site_detail_url": "https://comicvine.gamespot.com/zee-zee/4005-29005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29009/", + "id": 29009, + "name": "Palik", + "site_detail_url": "https://comicvine.gamespot.com/palik/4005-29009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29012/", + "id": 29012, + "name": "Nathan Lubensky", + "site_detail_url": "https://comicvine.gamespot.com/nathan-lubensky/4005-29012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29014/", + "id": 29014, + "name": "T.E.S.S.-One", + "site_detail_url": "https://comicvine.gamespot.com/tess-one/4005-29014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29015/", + "id": 29015, + "name": "Cynthia Bernhammer", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-bernhammer/4005-29015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29016/", + "id": 29016, + "name": "Stuart McPhee", + "site_detail_url": "https://comicvine.gamespot.com/stuart-mcphee/4005-29016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29017/", + "id": 29017, + "name": "The Conjurors", + "site_detail_url": "https://comicvine.gamespot.com/the-conjurors/4005-29017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29031/", + "id": 29031, + "name": "Carlos Cassada", + "site_detail_url": "https://comicvine.gamespot.com/carlos-cassada/4005-29031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29032/", + "id": 29032, + "name": "Mrs. Cassada", + "site_detail_url": "https://comicvine.gamespot.com/mrs-cassada/4005-29032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29033/", + "id": 29033, + "name": "Al", + "site_detail_url": "https://comicvine.gamespot.com/al/4005-29033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29035/", + "id": 29035, + "name": "Carcass", + "site_detail_url": "https://comicvine.gamespot.com/carcass/4005-29035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29038/", + "id": 29038, + "name": "Lifeform", + "site_detail_url": "https://comicvine.gamespot.com/lifeform/4005-29038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29070/", + "id": 29070, + "name": "Slaymaster", + "site_detail_url": "https://comicvine.gamespot.com/slaymaster/4005-29070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29072/", + "id": 29072, + "name": "Queen Ula", + "site_detail_url": "https://comicvine.gamespot.com/queen-ula/4005-29072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29074/", + "id": 29074, + "name": "Lord Rask", + "site_detail_url": "https://comicvine.gamespot.com/lord-rask/4005-29074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29079/", + "id": 29079, + "name": "Anthos", + "site_detail_url": "https://comicvine.gamespot.com/anthos/4005-29079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29080/", + "id": 29080, + "name": "Captain Kerjos", + "site_detail_url": "https://comicvine.gamespot.com/captain-kerjos/4005-29080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29082/", + "id": 29082, + "name": "Kymri", + "site_detail_url": "https://comicvine.gamespot.com/kymri/4005-29082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29084/", + "id": 29084, + "name": "Tubby", + "site_detail_url": "https://comicvine.gamespot.com/tubby/4005-29084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29085/", + "id": 29085, + "name": "Pope Eugene VIII", + "site_detail_url": "https://comicvine.gamespot.com/pope-eugene-viii/4005-29085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29087/", + "id": 29087, + "name": "Mist", + "site_detail_url": "https://comicvine.gamespot.com/mist/4005-29087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29090/", + "id": 29090, + "name": "Rahl", + "site_detail_url": "https://comicvine.gamespot.com/rahl/4005-29090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29095/", + "id": 29095, + "name": "Morophla", + "site_detail_url": "https://comicvine.gamespot.com/morophla/4005-29095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29096/", + "id": 29096, + "name": "Uathacht", + "site_detail_url": "https://comicvine.gamespot.com/uathacht/4005-29096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29103/", + "id": 29103, + "name": "Amanda Robertson", + "site_detail_url": "https://comicvine.gamespot.com/amanda-robertson/4005-29103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29105/", + "id": 29105, + "name": "Blow Out", + "site_detail_url": "https://comicvine.gamespot.com/blow-out/4005-29105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29112/", + "id": 29112, + "name": "Anjulie", + "site_detail_url": "https://comicvine.gamespot.com/anjulie/4005-29112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29113/", + "id": 29113, + "name": "Demon-Master", + "site_detail_url": "https://comicvine.gamespot.com/demon-master/4005-29113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29130/", + "id": 29130, + "name": "Skinhead", + "site_detail_url": "https://comicvine.gamespot.com/skinhead/4005-29130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29131/", + "id": 29131, + "name": "Clumsy Foulup", + "site_detail_url": "https://comicvine.gamespot.com/clumsy-foulup/4005-29131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29134/", + "id": 29134, + "name": "Doctor Crocodile", + "site_detail_url": "https://comicvine.gamespot.com/doctor-crocodile/4005-29134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29136/", + "id": 29136, + "name": "Nikoh", + "site_detail_url": "https://comicvine.gamespot.com/nikoh/4005-29136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29143/", + "id": 29143, + "name": "Banjo", + "site_detail_url": "https://comicvine.gamespot.com/banjo/4005-29143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29144/", + "id": 29144, + "name": "Bugeye", + "site_detail_url": "https://comicvine.gamespot.com/bugeye/4005-29144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29145/", + "id": 29145, + "name": "Agent Donahue", + "site_detail_url": "https://comicvine.gamespot.com/agent-donahue/4005-29145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29146/", + "id": 29146, + "name": "William Wesley", + "site_detail_url": "https://comicvine.gamespot.com/william-wesley/4005-29146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29147/", + "id": 29147, + "name": "Gilbert Vaughn", + "site_detail_url": "https://comicvine.gamespot.com/gilbert-vaughn/4005-29147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29148/", + "id": 29148, + "name": "Lisa Vaughn", + "site_detail_url": "https://comicvine.gamespot.com/lisa-vaughn/4005-29148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29149/", + "id": 29149, + "name": "Myron Wilburn", + "site_detail_url": "https://comicvine.gamespot.com/myron-wilburn/4005-29149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29153/", + "id": 29153, + "name": "Spartak", + "site_detail_url": "https://comicvine.gamespot.com/spartak/4005-29153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29154/", + "id": 29154, + "name": "Prince William", + "site_detail_url": "https://comicvine.gamespot.com/prince-william/4005-29154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29155/", + "id": 29155, + "name": "Butch The Ogre", + "site_detail_url": "https://comicvine.gamespot.com/butch-the-ogre/4005-29155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29157/", + "id": 29157, + "name": "Gilgamesh", + "site_detail_url": "https://comicvine.gamespot.com/gilgamesh/4005-29157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29188/", + "id": 29188, + "name": "Eduardo Lobo", + "site_detail_url": "https://comicvine.gamespot.com/eduardo-lobo/4005-29188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29189/", + "id": 29189, + "name": "Carlos Lobo", + "site_detail_url": "https://comicvine.gamespot.com/carlos-lobo/4005-29189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29190/", + "id": 29190, + "name": "Dr. Reznek", + "site_detail_url": "https://comicvine.gamespot.com/dr-reznek/4005-29190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29194/", + "id": 29194, + "name": "Dorrek VII", + "site_detail_url": "https://comicvine.gamespot.com/dorrek-vii/4005-29194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29195/", + "id": 29195, + "name": "James Braddock", + "site_detail_url": "https://comicvine.gamespot.com/james-braddock/4005-29195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29210/", + "id": 29210, + "name": "Metallurgist", + "site_detail_url": "https://comicvine.gamespot.com/metallurgist/4005-29210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29211/", + "id": 29211, + "name": "Skullbuster", + "site_detail_url": "https://comicvine.gamespot.com/skullbuster/4005-29211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29212/", + "id": 29212, + "name": "Cole", + "site_detail_url": "https://comicvine.gamespot.com/cole/4005-29212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29213/", + "id": 29213, + "name": "Macon", + "site_detail_url": "https://comicvine.gamespot.com/macon/4005-29213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29214/", + "id": 29214, + "name": "Michael Berengetti", + "site_detail_url": "https://comicvine.gamespot.com/michael-berengetti/4005-29214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29216/", + "id": 29216, + "name": "Shaitan", + "site_detail_url": "https://comicvine.gamespot.com/shaitan/4005-29216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29217/", + "id": 29217, + "name": "Anelle", + "site_detail_url": "https://comicvine.gamespot.com/anelle/4005-29217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29232/", + "id": 29232, + "name": "Riger", + "site_detail_url": "https://comicvine.gamespot.com/riger/4005-29232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29236/", + "id": 29236, + "name": "Stara Kan", + "site_detail_url": "https://comicvine.gamespot.com/stara-kan/4005-29236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29240/", + "id": 29240, + "name": "Bruiser", + "site_detail_url": "https://comicvine.gamespot.com/bruiser/4005-29240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29243/", + "id": 29243, + "name": "Thoth-Amon", + "site_detail_url": "https://comicvine.gamespot.com/thoth-amon/4005-29243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29244/", + "id": 29244, + "name": "Duke Villagro", + "site_detail_url": "https://comicvine.gamespot.com/duke-villagro/4005-29244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29247/", + "id": 29247, + "name": "Ghoul", + "site_detail_url": "https://comicvine.gamespot.com/ghoul/4005-29247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29255/", + "id": 29255, + "name": "Alchemy", + "site_detail_url": "https://comicvine.gamespot.com/alchemy/4005-29255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29257/", + "id": 29257, + "name": "Giggles", + "site_detail_url": "https://comicvine.gamespot.com/giggles/4005-29257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29258/", + "id": 29258, + "name": "Sharon Kelly", + "site_detail_url": "https://comicvine.gamespot.com/sharon-kelly/4005-29258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29259/", + "id": 29259, + "name": "Dr. Nemesis", + "site_detail_url": "https://comicvine.gamespot.com/dr-nemesis/4005-29259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29275/", + "id": 29275, + "name": "Lorraine Mandell", + "site_detail_url": "https://comicvine.gamespot.com/lorraine-mandell/4005-29275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29284/", + "id": 29284, + "name": "Motherboard 49.7", + "site_detail_url": "https://comicvine.gamespot.com/motherboard-497/4005-29284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29288/", + "id": 29288, + "name": "Friction", + "site_detail_url": "https://comicvine.gamespot.com/friction/4005-29288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29289/", + "id": 29289, + "name": "Captain Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/captain-manhattan/4005-29289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29290/", + "id": 29290, + "name": "Glitter", + "site_detail_url": "https://comicvine.gamespot.com/glitter/4005-29290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29292/", + "id": 29292, + "name": "Mastodon", + "site_detail_url": "https://comicvine.gamespot.com/mastodon/4005-29292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29293/", + "id": 29293, + "name": "Scuzz", + "site_detail_url": "https://comicvine.gamespot.com/scuzz/4005-29293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29294/", + "id": 29294, + "name": "Antibody", + "site_detail_url": "https://comicvine.gamespot.com/antibody/4005-29294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29295/", + "id": 29295, + "name": "Mutator", + "site_detail_url": "https://comicvine.gamespot.com/mutator/4005-29295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29312/", + "id": 29312, + "name": "Felix Alvarez", + "site_detail_url": "https://comicvine.gamespot.com/felix-alvarez/4005-29312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29313/", + "id": 29313, + "name": "Kathy Dare", + "site_detail_url": "https://comicvine.gamespot.com/kathy-dare/4005-29313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29315/", + "id": 29315, + "name": "Volton", + "site_detail_url": "https://comicvine.gamespot.com/volton/4005-29315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29330/", + "id": 29330, + "name": "Gosamyr", + "site_detail_url": "https://comicvine.gamespot.com/gosamyr/4005-29330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29338/", + "id": 29338, + "name": "Winston Shepherd", + "site_detail_url": "https://comicvine.gamespot.com/winston-shepherd/4005-29338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29339/", + "id": 29339, + "name": "Evan Swann", + "site_detail_url": "https://comicvine.gamespot.com/evan-swann/4005-29339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29340/", + "id": 29340, + "name": "Anne-Marie Cortez", + "site_detail_url": "https://comicvine.gamespot.com/anne-marie-cortez/4005-29340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29342/", + "id": 29342, + "name": "Marcy Pearson", + "site_detail_url": "https://comicvine.gamespot.com/marcy-pearson/4005-29342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29343/", + "id": 29343, + "name": "Crotus", + "site_detail_url": "https://comicvine.gamespot.com/crotus/4005-29343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29374/", + "id": 29374, + "name": "Conchita Ortiz", + "site_detail_url": "https://comicvine.gamespot.com/conchita-ortiz/4005-29374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29375/", + "id": 29375, + "name": "Vernon Brooks", + "site_detail_url": "https://comicvine.gamespot.com/vernon-brooks/4005-29375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29376/", + "id": 29376, + "name": "Jeremy Wilson", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-wilson/4005-29376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29378/", + "id": 29378, + "name": "Necrodamus", + "site_detail_url": "https://comicvine.gamespot.com/necrodamus/4005-29378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29380/", + "id": 29380, + "name": "Roger Loomis", + "site_detail_url": "https://comicvine.gamespot.com/roger-loomis/4005-29380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29381/", + "id": 29381, + "name": "Sian Bowen", + "site_detail_url": "https://comicvine.gamespot.com/sian-bowen/4005-29381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29382/", + "id": 29382, + "name": "Will Fanshawe", + "site_detail_url": "https://comicvine.gamespot.com/will-fanshawe/4005-29382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29383/", + "id": 29383, + "name": "Genevieve Cross", + "site_detail_url": "https://comicvine.gamespot.com/genevieve-cross/4005-29383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29387/", + "id": 29387, + "name": "Sponge", + "site_detail_url": "https://comicvine.gamespot.com/sponge/4005-29387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29404/", + "id": 29404, + "name": "Megaera", + "site_detail_url": "https://comicvine.gamespot.com/megaera/4005-29404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29405/", + "id": 29405, + "name": "Saddam Abed Dasam", + "site_detail_url": "https://comicvine.gamespot.com/saddam-abed-dasam/4005-29405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29408/", + "id": 29408, + "name": "Claw", + "site_detail_url": "https://comicvine.gamespot.com/claw/4005-29408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29439/", + "id": 29439, + "name": "Kliegg", + "site_detail_url": "https://comicvine.gamespot.com/kliegg/4005-29439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29441/", + "id": 29441, + "name": "Klytus", + "site_detail_url": "https://comicvine.gamespot.com/klytus/4005-29441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29478/", + "id": 29478, + "name": "Bart Jones", + "site_detail_url": "https://comicvine.gamespot.com/bart-jones/4005-29478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29484/", + "id": 29484, + "name": "Jacob Burnley", + "site_detail_url": "https://comicvine.gamespot.com/jacob-burnley/4005-29484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29486/", + "id": 29486, + "name": "Reese McDowell", + "site_detail_url": "https://comicvine.gamespot.com/reese-mcdowell/4005-29486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29487/", + "id": 29487, + "name": "Sister Marclark", + "site_detail_url": "https://comicvine.gamespot.com/sister-marclark/4005-29487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29488/", + "id": 29488, + "name": "Gorsham", + "site_detail_url": "https://comicvine.gamespot.com/gorsham/4005-29488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29489/", + "id": 29489, + "name": "Whully", + "site_detail_url": "https://comicvine.gamespot.com/whully/4005-29489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29490/", + "id": 29490, + "name": "Booly", + "site_detail_url": "https://comicvine.gamespot.com/booly/4005-29490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29530/", + "id": 29530, + "name": "U-Man", + "site_detail_url": "https://comicvine.gamespot.com/u-man/4005-29530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29531/", + "id": 29531, + "name": "Lord Arno", + "site_detail_url": "https://comicvine.gamespot.com/lord-arno/4005-29531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29561/", + "id": 29561, + "name": "Sharkskin", + "site_detail_url": "https://comicvine.gamespot.com/sharkskin/4005-29561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29564/", + "id": 29564, + "name": "Karthon", + "site_detail_url": "https://comicvine.gamespot.com/karthon/4005-29564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29565/", + "id": 29565, + "name": "Priestess Of Set", + "site_detail_url": "https://comicvine.gamespot.com/priestess-of-set/4005-29565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29566/", + "id": 29566, + "name": "Ikthon", + "site_detail_url": "https://comicvine.gamespot.com/ikthon/4005-29566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29567/", + "id": 29567, + "name": "Captain Barracuda", + "site_detail_url": "https://comicvine.gamespot.com/captain-barracuda/4005-29567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29570/", + "id": 29570, + "name": "Dr. Mitchell", + "site_detail_url": "https://comicvine.gamespot.com/dr-mitchell/4005-29570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29574/", + "id": 29574, + "name": "Alexia", + "site_detail_url": "https://comicvine.gamespot.com/alexia/4005-29574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29575/", + "id": 29575, + "name": "Jacob Farber", + "site_detail_url": "https://comicvine.gamespot.com/jacob-farber/4005-29575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29576/", + "id": 29576, + "name": "Elwood McNulty", + "site_detail_url": "https://comicvine.gamespot.com/elwood-mcnulty/4005-29576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29577/", + "id": 29577, + "name": "Naga", + "site_detail_url": "https://comicvine.gamespot.com/naga/4005-29577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29592/", + "id": 29592, + "name": "Lucy Ryker", + "site_detail_url": "https://comicvine.gamespot.com/lucy-ryker/4005-29592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29616/", + "id": 29616, + "name": "Spyder", + "site_detail_url": "https://comicvine.gamespot.com/spyder/4005-29616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29629/", + "id": 29629, + "name": "Sara Glenville", + "site_detail_url": "https://comicvine.gamespot.com/sara-glenville/4005-29629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29631/", + "id": 29631, + "name": "Louis Baxter III", + "site_detail_url": "https://comicvine.gamespot.com/louis-baxter-iii/4005-29631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29632/", + "id": 29632, + "name": "Dillon Zarro", + "site_detail_url": "https://comicvine.gamespot.com/dillon-zarro/4005-29632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29633/", + "id": 29633, + "name": "Winston Piper", + "site_detail_url": "https://comicvine.gamespot.com/winston-piper/4005-29633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29635/", + "id": 29635, + "name": "Captain Cymru", + "site_detail_url": "https://comicvine.gamespot.com/captain-cymru/4005-29635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29636/", + "id": 29636, + "name": "Twilight", + "site_detail_url": "https://comicvine.gamespot.com/twilight/4005-29636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29664/", + "id": 29664, + "name": "Manslaughter Marsdale", + "site_detail_url": "https://comicvine.gamespot.com/manslaughter-marsdale/4005-29664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29676/", + "id": 29676, + "name": "Bravo", + "site_detail_url": "https://comicvine.gamespot.com/bravo/4005-29676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29677/", + "id": 29677, + "name": "Charlie", + "site_detail_url": "https://comicvine.gamespot.com/charlie/4005-29677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29681/", + "id": 29681, + "name": "Tama Janowitz", + "site_detail_url": "https://comicvine.gamespot.com/tama-janowitz/4005-29681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29684/", + "id": 29684, + "name": "Abe Zimmer", + "site_detail_url": "https://comicvine.gamespot.com/abe-zimmer/4005-29684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29685/", + "id": 29685, + "name": "Rae LaCoste", + "site_detail_url": "https://comicvine.gamespot.com/rae-lacoste/4005-29685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29686/", + "id": 29686, + "name": "Delta", + "site_detail_url": "https://comicvine.gamespot.com/delta/4005-29686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29689/", + "id": 29689, + "name": "Ammo", + "site_detail_url": "https://comicvine.gamespot.com/ammo/4005-29689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29742/", + "id": 29742, + "name": "Katy Kiernan", + "site_detail_url": "https://comicvine.gamespot.com/katy-kiernan/4005-29742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29744/", + "id": 29744, + "name": "Gloria Johnson", + "site_detail_url": "https://comicvine.gamespot.com/gloria-johnson/4005-29744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29745/", + "id": 29745, + "name": "Lynne Huntington", + "site_detail_url": "https://comicvine.gamespot.com/lynne-huntington/4005-29745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29753/", + "id": 29753, + "name": "Timeshadow", + "site_detail_url": "https://comicvine.gamespot.com/timeshadow/4005-29753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29754/", + "id": 29754, + "name": "Teacher", + "site_detail_url": "https://comicvine.gamespot.com/teacher/4005-29754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29756/", + "id": 29756, + "name": "Reverend Tolliver", + "site_detail_url": "https://comicvine.gamespot.com/reverend-tolliver/4005-29756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29758/", + "id": 29758, + "name": "Persuader", + "site_detail_url": "https://comicvine.gamespot.com/persuader/4005-29758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29760/", + "id": 29760, + "name": "Gary Saunders", + "site_detail_url": "https://comicvine.gamespot.com/gary-saunders/4005-29760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29761/", + "id": 29761, + "name": "Lydia Saunders", + "site_detail_url": "https://comicvine.gamespot.com/lydia-saunders/4005-29761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29762/", + "id": 29762, + "name": "Tony Gold", + "site_detail_url": "https://comicvine.gamespot.com/tony-gold/4005-29762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29763/", + "id": 29763, + "name": "Tweedle-Dope", + "site_detail_url": "https://comicvine.gamespot.com/tweedle-dope/4005-29763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29764/", + "id": 29764, + "name": "Friedrich Von Roehm", + "site_detail_url": "https://comicvine.gamespot.com/friedrich-von-roehm/4005-29764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29786/", + "id": 29786, + "name": "Tension", + "site_detail_url": "https://comicvine.gamespot.com/tension/4005-29786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29787/", + "id": 29787, + "name": "Temptress", + "site_detail_url": "https://comicvine.gamespot.com/temptress/4005-29787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29788/", + "id": 29788, + "name": "Lockup", + "site_detail_url": "https://comicvine.gamespot.com/lockup/4005-29788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29789/", + "id": 29789, + "name": "Spitball", + "site_detail_url": "https://comicvine.gamespot.com/spitball/4005-29789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29790/", + "id": 29790, + "name": "Whiphand", + "site_detail_url": "https://comicvine.gamespot.com/whiphand/4005-29790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29803/", + "id": 29803, + "name": "Lord Zano", + "site_detail_url": "https://comicvine.gamespot.com/lord-zano/4005-29803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29807/", + "id": 29807, + "name": "The Starchild", + "site_detail_url": "https://comicvine.gamespot.com/the-starchild/4005-29807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29812/", + "id": 29812, + "name": "Willie Lincoln", + "site_detail_url": "https://comicvine.gamespot.com/willie-lincoln/4005-29812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29813/", + "id": 29813, + "name": "Blur", + "site_detail_url": "https://comicvine.gamespot.com/blur/4005-29813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29834/", + "id": 29834, + "name": "Toro", + "site_detail_url": "https://comicvine.gamespot.com/toro/4005-29834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29853/", + "id": 29853, + "name": "Brickbat", + "site_detail_url": "https://comicvine.gamespot.com/brickbat/4005-29853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29854/", + "id": 29854, + "name": "Dive-Bomber", + "site_detail_url": "https://comicvine.gamespot.com/dive-bomber/4005-29854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29855/", + "id": 29855, + "name": "Stonewall", + "site_detail_url": "https://comicvine.gamespot.com/stonewall/4005-29855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29856/", + "id": 29856, + "name": "Alfred Coppersmith", + "site_detail_url": "https://comicvine.gamespot.com/alfred-coppersmith/4005-29856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29857/", + "id": 29857, + "name": "Professor Rearden", + "site_detail_url": "https://comicvine.gamespot.com/professor-rearden/4005-29857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29858/", + "id": 29858, + "name": "Miriam Drew", + "site_detail_url": "https://comicvine.gamespot.com/miriam-drew/4005-29858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29861/", + "id": 29861, + "name": "One Above All", + "site_detail_url": "https://comicvine.gamespot.com/one-above-all/4005-29861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29864/", + "id": 29864, + "name": "Leonard Tippit", + "site_detail_url": "https://comicvine.gamespot.com/leonard-tippit/4005-29864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29917/", + "id": 29917, + "name": "Azazello", + "site_detail_url": "https://comicvine.gamespot.com/azazello/4005-29917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29924/", + "id": 29924, + "name": "Dr. Nemesis (Stockton)", + "site_detail_url": "https://comicvine.gamespot.com/dr-nemesis-stockton/4005-29924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29955/", + "id": 29955, + "name": "Phillip", + "site_detail_url": "https://comicvine.gamespot.com/phillip/4005-29955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29960/", + "id": 29960, + "name": "Sijo", + "site_detail_url": "https://comicvine.gamespot.com/sijo/4005-29960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29961/", + "id": 29961, + "name": "Roky", + "site_detail_url": "https://comicvine.gamespot.com/roky/4005-29961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-29962/", + "id": 29962, + "name": "Lord I", + "site_detail_url": "https://comicvine.gamespot.com/lord-i/4005-29962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30001/", + "id": 30001, + "name": "Mrs. Muggins", + "site_detail_url": "https://comicvine.gamespot.com/mrs-muggins/4005-30001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30009/", + "id": 30009, + "name": "Gullivar South", + "site_detail_url": "https://comicvine.gamespot.com/gullivar-south/4005-30009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30010/", + "id": 30010, + "name": "Iceboy", + "site_detail_url": "https://comicvine.gamespot.com/iceboy/4005-30010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30030/", + "id": 30030, + "name": "Elyse Nelson", + "site_detail_url": "https://comicvine.gamespot.com/elyse-nelson/4005-30030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30031/", + "id": 30031, + "name": "Ricky North", + "site_detail_url": "https://comicvine.gamespot.com/ricky-north/4005-30031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30032/", + "id": 30032, + "name": "Harvey Finklestein", + "site_detail_url": "https://comicvine.gamespot.com/harvey-finklestein/4005-30032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30038/", + "id": 30038, + "name": "Senator Boynton", + "site_detail_url": "https://comicvine.gamespot.com/senator-boynton/4005-30038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30039/", + "id": 30039, + "name": "Half-Life", + "site_detail_url": "https://comicvine.gamespot.com/half-life/4005-30039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30041/", + "id": 30041, + "name": "Dr. DeVere", + "site_detail_url": "https://comicvine.gamespot.com/dr-devere/4005-30041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30042/", + "id": 30042, + "name": "Jet", + "site_detail_url": "https://comicvine.gamespot.com/jet/4005-30042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30056/", + "id": 30056, + "name": "Bird-Brain", + "site_detail_url": "https://comicvine.gamespot.com/bird-brain/4005-30056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30062/", + "id": 30062, + "name": "Jake Dorman", + "site_detail_url": "https://comicvine.gamespot.com/jake-dorman/4005-30062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30064/", + "id": 30064, + "name": "General Ramone", + "site_detail_url": "https://comicvine.gamespot.com/general-ramone/4005-30064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30066/", + "id": 30066, + "name": "Last Knight", + "site_detail_url": "https://comicvine.gamespot.com/last-knight/4005-30066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30075/", + "id": 30075, + "name": "Ani-Mator", + "site_detail_url": "https://comicvine.gamespot.com/ani-mator/4005-30075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30080/", + "id": 30080, + "name": "Lawrence Cromwell", + "site_detail_url": "https://comicvine.gamespot.com/lawrence-cromwell/4005-30080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30091/", + "id": 30091, + "name": "Living Brain", + "site_detail_url": "https://comicvine.gamespot.com/living-brain/4005-30091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30092/", + "id": 30092, + "name": "Lupinar", + "site_detail_url": "https://comicvine.gamespot.com/lupinar/4005-30092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30094/", + "id": 30094, + "name": "THROB", + "site_detail_url": "https://comicvine.gamespot.com/throb/4005-30094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30114/", + "id": 30114, + "name": "Grunz", + "site_detail_url": "https://comicvine.gamespot.com/grunz/4005-30114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30115/", + "id": 30115, + "name": "Truck", + "site_detail_url": "https://comicvine.gamespot.com/truck/4005-30115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30116/", + "id": 30116, + "name": "Gerbil", + "site_detail_url": "https://comicvine.gamespot.com/gerbil/4005-30116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30118/", + "id": 30118, + "name": "Star Brand", + "site_detail_url": "https://comicvine.gamespot.com/star-brand/4005-30118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30119/", + "id": 30119, + "name": "Reverend Sammy Smith", + "site_detail_url": "https://comicvine.gamespot.com/reverend-sammy-smith/4005-30119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30120/", + "id": 30120, + "name": "Sadie Smith", + "site_detail_url": "https://comicvine.gamespot.com/sadie-smith/4005-30120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30121/", + "id": 30121, + "name": "Fasaud", + "site_detail_url": "https://comicvine.gamespot.com/fasaud/4005-30121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30122/", + "id": 30122, + "name": "Ghost-Driver", + "site_detail_url": "https://comicvine.gamespot.com/ghost-driver/4005-30122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30142/", + "id": 30142, + "name": "Varua", + "site_detail_url": "https://comicvine.gamespot.com/varua/4005-30142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30143/", + "id": 30143, + "name": "Genii", + "site_detail_url": "https://comicvine.gamespot.com/genii/4005-30143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30144/", + "id": 30144, + "name": "Caduceus", + "site_detail_url": "https://comicvine.gamespot.com/caduceus/4005-30144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30145/", + "id": 30145, + "name": "Bright Sword", + "site_detail_url": "https://comicvine.gamespot.com/bright-sword/4005-30145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30146/", + "id": 30146, + "name": "Mindsinger", + "site_detail_url": "https://comicvine.gamespot.com/mindsinger/4005-30146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30147/", + "id": 30147, + "name": "Sea Witch", + "site_detail_url": "https://comicvine.gamespot.com/sea-witch/4005-30147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30148/", + "id": 30148, + "name": "Highnote", + "site_detail_url": "https://comicvine.gamespot.com/highnote/4005-30148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30149/", + "id": 30149, + "name": "Splice", + "site_detail_url": "https://comicvine.gamespot.com/splice/4005-30149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30150/", + "id": 30150, + "name": "Katos", + "site_detail_url": "https://comicvine.gamespot.com/katos/4005-30150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30151/", + "id": 30151, + "name": "Juniper", + "site_detail_url": "https://comicvine.gamespot.com/juniper/4005-30151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30152/", + "id": 30152, + "name": "Glow Worm", + "site_detail_url": "https://comicvine.gamespot.com/glow-worm/4005-30152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30156/", + "id": 30156, + "name": "Flare", + "site_detail_url": "https://comicvine.gamespot.com/flare/4005-30156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30157/", + "id": 30157, + "name": "Lil' Archangel", + "site_detail_url": "https://comicvine.gamespot.com/lil-archangel/4005-30157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30158/", + "id": 30158, + "name": "Quark", + "site_detail_url": "https://comicvine.gamespot.com/quark/4005-30158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30159/", + "id": 30159, + "name": "Lil' Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/lil-dazzler/4005-30159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30160/", + "id": 30160, + "name": "Lil' Gambit", + "site_detail_url": "https://comicvine.gamespot.com/lil-gambit/4005-30160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30161/", + "id": 30161, + "name": "Lil' Beast", + "site_detail_url": "https://comicvine.gamespot.com/lil-beast/4005-30161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30164/", + "id": 30164, + "name": "Lil' Longshot", + "site_detail_url": "https://comicvine.gamespot.com/lil-longshot/4005-30164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30165/", + "id": 30165, + "name": "Lil' Havok", + "site_detail_url": "https://comicvine.gamespot.com/lil-havok/4005-30165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30173/", + "id": 30173, + "name": "Frank Gibbs", + "site_detail_url": "https://comicvine.gamespot.com/frank-gibbs/4005-30173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30174/", + "id": 30174, + "name": "Vicki Gibbs", + "site_detail_url": "https://comicvine.gamespot.com/vicki-gibbs/4005-30174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30175/", + "id": 30175, + "name": "Jacob Gibbs", + "site_detail_url": "https://comicvine.gamespot.com/jacob-gibbs/4005-30175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30176/", + "id": 30176, + "name": "Tanya Gibbs", + "site_detail_url": "https://comicvine.gamespot.com/tanya-gibbs/4005-30176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30179/", + "id": 30179, + "name": "Breakdown", + "site_detail_url": "https://comicvine.gamespot.com/breakdown/4005-30179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30192/", + "id": 30192, + "name": "Molto", + "site_detail_url": "https://comicvine.gamespot.com/molto/4005-30192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30194/", + "id": 30194, + "name": "Calculator", + "site_detail_url": "https://comicvine.gamespot.com/calculator/4005-30194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30224/", + "id": 30224, + "name": "Kelco Security Robot", + "site_detail_url": "https://comicvine.gamespot.com/kelco-security-robot/4005-30224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30240/", + "id": 30240, + "name": "Philip Voight", + "site_detail_url": "https://comicvine.gamespot.com/philip-voight/4005-30240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30242/", + "id": 30242, + "name": "Ethan Thurm", + "site_detail_url": "https://comicvine.gamespot.com/ethan-thurm/4005-30242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30251/", + "id": 30251, + "name": "Dr. Frankenbeans", + "site_detail_url": "https://comicvine.gamespot.com/dr-frankenbeans/4005-30251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30261/", + "id": 30261, + "name": "Breeze James", + "site_detail_url": "https://comicvine.gamespot.com/breeze-james/4005-30261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30285/", + "id": 30285, + "name": "Kris Keating", + "site_detail_url": "https://comicvine.gamespot.com/kris-keating/4005-30285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30305/", + "id": 30305, + "name": "Gemini", + "site_detail_url": "https://comicvine.gamespot.com/gemini/4005-30305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30306/", + "id": 30306, + "name": "Libra", + "site_detail_url": "https://comicvine.gamespot.com/libra/4005-30306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30311/", + "id": 30311, + "name": "Herc Armstrong", + "site_detail_url": "https://comicvine.gamespot.com/herc-armstrong/4005-30311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30312/", + "id": 30312, + "name": "Blackthorne Shore", + "site_detail_url": "https://comicvine.gamespot.com/blackthorne-shore/4005-30312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30313/", + "id": 30313, + "name": "Sandra Shore", + "site_detail_url": "https://comicvine.gamespot.com/sandra-shore/4005-30313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30314/", + "id": 30314, + "name": "Dr. Derek Bright", + "site_detail_url": "https://comicvine.gamespot.com/dr-derek-bright/4005-30314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30315/", + "id": 30315, + "name": "Tendril", + "site_detail_url": "https://comicvine.gamespot.com/tendril/4005-30315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30316/", + "id": 30316, + "name": "Redlen", + "site_detail_url": "https://comicvine.gamespot.com/redlen/4005-30316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30318/", + "id": 30318, + "name": "Granock", + "site_detail_url": "https://comicvine.gamespot.com/granock/4005-30318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30326/", + "id": 30326, + "name": "Alexandre Gilbert Du Motier", + "site_detail_url": "https://comicvine.gamespot.com/alexandre-gilbert-du-motier/4005-30326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30327/", + "id": 30327, + "name": "Janet Grace", + "site_detail_url": "https://comicvine.gamespot.com/janet-grace/4005-30327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30328/", + "id": 30328, + "name": "Gustave Roch Uderzo", + "site_detail_url": "https://comicvine.gamespot.com/gustave-roch-uderzo/4005-30328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30329/", + "id": 30329, + "name": "Gregori Suvorov", + "site_detail_url": "https://comicvine.gamespot.com/gregori-suvorov/4005-30329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30331/", + "id": 30331, + "name": "Slider", + "site_detail_url": "https://comicvine.gamespot.com/slider/4005-30331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30332/", + "id": 30332, + "name": "The Light", + "site_detail_url": "https://comicvine.gamespot.com/the-light/4005-30332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30334/", + "id": 30334, + "name": "Old Man", + "site_detail_url": "https://comicvine.gamespot.com/old-man/4005-30334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30335/", + "id": 30335, + "name": "Debbie the Duck", + "site_detail_url": "https://comicvine.gamespot.com/debbie-the-duck/4005-30335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30336/", + "id": 30336, + "name": "Candi", + "site_detail_url": "https://comicvine.gamespot.com/candi/4005-30336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30337/", + "id": 30337, + "name": "Bambi", + "site_detail_url": "https://comicvine.gamespot.com/bambi/4005-30337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30338/", + "id": 30338, + "name": "Carrington Pax", + "site_detail_url": "https://comicvine.gamespot.com/carrington-pax/4005-30338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30340/", + "id": 30340, + "name": "Blaire White", + "site_detail_url": "https://comicvine.gamespot.com/blaire-white/4005-30340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30341/", + "id": 30341, + "name": "The Nameless One", + "site_detail_url": "https://comicvine.gamespot.com/the-nameless-one/4005-30341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30397/", + "id": 30397, + "name": "Rachel Carpenter", + "site_detail_url": "https://comicvine.gamespot.com/rachel-carpenter/4005-30397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30398/", + "id": 30398, + "name": "Mike Clemson", + "site_detail_url": "https://comicvine.gamespot.com/mike-clemson/4005-30398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30400/", + "id": 30400, + "name": "Myrna", + "site_detail_url": "https://comicvine.gamespot.com/myrna/4005-30400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30401/", + "id": 30401, + "name": "Tech", + "site_detail_url": "https://comicvine.gamespot.com/tech/4005-30401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30416/", + "id": 30416, + "name": "Xanja", + "site_detail_url": "https://comicvine.gamespot.com/xanja/4005-30416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30417/", + "id": 30417, + "name": "Vaalu", + "site_detail_url": "https://comicvine.gamespot.com/vaalu/4005-30417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30418/", + "id": 30418, + "name": "Ularic", + "site_detail_url": "https://comicvine.gamespot.com/ularic/4005-30418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30420/", + "id": 30420, + "name": "Grendell", + "site_detail_url": "https://comicvine.gamespot.com/grendell/4005-30420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30421/", + "id": 30421, + "name": "Anne Garthwaite", + "site_detail_url": "https://comicvine.gamespot.com/anne-garthwaite/4005-30421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30423/", + "id": 30423, + "name": "Armand Martel", + "site_detail_url": "https://comicvine.gamespot.com/armand-martel/4005-30423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30462/", + "id": 30462, + "name": "Wormwood", + "site_detail_url": "https://comicvine.gamespot.com/wormwood/4005-30462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30463/", + "id": 30463, + "name": "Remo Williams", + "site_detail_url": "https://comicvine.gamespot.com/remo-williams/4005-30463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30464/", + "id": 30464, + "name": "Rattilore", + "site_detail_url": "https://comicvine.gamespot.com/rattilore/4005-30464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30465/", + "id": 30465, + "name": "Scanbot", + "site_detail_url": "https://comicvine.gamespot.com/scanbot/4005-30465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30466/", + "id": 30466, + "name": "Gormuu", + "site_detail_url": "https://comicvine.gamespot.com/gormuu/4005-30466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30470/", + "id": 30470, + "name": "Chastity McBryde", + "site_detail_url": "https://comicvine.gamespot.com/chastity-mcbryde/4005-30470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30476/", + "id": 30476, + "name": "Rotgut", + "site_detail_url": "https://comicvine.gamespot.com/rotgut/4005-30476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30485/", + "id": 30485, + "name": "Fragment", + "site_detail_url": "https://comicvine.gamespot.com/fragment/4005-30485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30489/", + "id": 30489, + "name": "Barbara Larkin", + "site_detail_url": "https://comicvine.gamespot.com/barbara-larkin/4005-30489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30510/", + "id": 30510, + "name": "Sara Grey-Bailey", + "site_detail_url": "https://comicvine.gamespot.com/sara-grey-bailey/4005-30510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30512/", + "id": 30512, + "name": "Umbra", + "site_detail_url": "https://comicvine.gamespot.com/umbra/4005-30512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30513/", + "id": 30513, + "name": "Malgato", + "site_detail_url": "https://comicvine.gamespot.com/malgato/4005-30513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30570/", + "id": 30570, + "name": "Berzerker", + "site_detail_url": "https://comicvine.gamespot.com/berzerker/4005-30570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30575/", + "id": 30575, + "name": "Damos", + "site_detail_url": "https://comicvine.gamespot.com/damos/4005-30575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30591/", + "id": 30591, + "name": "Analie Hogarth", + "site_detail_url": "https://comicvine.gamespot.com/analie-hogarth/4005-30591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30596/", + "id": 30596, + "name": "Throg", + "site_detail_url": "https://comicvine.gamespot.com/throg/4005-30596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30597/", + "id": 30597, + "name": "Hopper Hertnecky", + "site_detail_url": "https://comicvine.gamespot.com/hopper-hertnecky/4005-30597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30598/", + "id": 30598, + "name": "Ullikummis", + "site_detail_url": "https://comicvine.gamespot.com/ullikummis/4005-30598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30618/", + "id": 30618, + "name": "Fraulein Fatale", + "site_detail_url": "https://comicvine.gamespot.com/fraulein-fatale/4005-30618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30619/", + "id": 30619, + "name": "Humbug", + "site_detail_url": "https://comicvine.gamespot.com/humbug/4005-30619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30620/", + "id": 30620, + "name": "Zaniac", + "site_detail_url": "https://comicvine.gamespot.com/zaniac/4005-30620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30622/", + "id": 30622, + "name": "Livia", + "site_detail_url": "https://comicvine.gamespot.com/livia/4005-30622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30626/", + "id": 30626, + "name": "Tomas", + "site_detail_url": "https://comicvine.gamespot.com/tomas/4005-30626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30658/", + "id": 30658, + "name": "Harvey Jessup", + "site_detail_url": "https://comicvine.gamespot.com/harvey-jessup/4005-30658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30678/", + "id": 30678, + "name": "Beth Sooner", + "site_detail_url": "https://comicvine.gamespot.com/beth-sooner/4005-30678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30681/", + "id": 30681, + "name": "Bulk", + "site_detail_url": "https://comicvine.gamespot.com/bulk/4005-30681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30683/", + "id": 30683, + "name": "Ambassador Reich", + "site_detail_url": "https://comicvine.gamespot.com/ambassador-reich/4005-30683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30685/", + "id": 30685, + "name": "Ecstasy", + "site_detail_url": "https://comicvine.gamespot.com/ecstasy/4005-30685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30700/", + "id": 30700, + "name": "Peg Moonstar", + "site_detail_url": "https://comicvine.gamespot.com/peg-moonstar/4005-30700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30711/", + "id": 30711, + "name": "Kossi", + "site_detail_url": "https://comicvine.gamespot.com/kossi/4005-30711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30712/", + "id": 30712, + "name": "Unn", + "site_detail_url": "https://comicvine.gamespot.com/unn/4005-30712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30713/", + "id": 30713, + "name": "Gertha", + "site_detail_url": "https://comicvine.gamespot.com/gertha/4005-30713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30714/", + "id": 30714, + "name": "Thug Thatcher", + "site_detail_url": "https://comicvine.gamespot.com/thug-thatcher/4005-30714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30717/", + "id": 30717, + "name": "Licorice Calhoun", + "site_detail_url": "https://comicvine.gamespot.com/licorice-calhoun/4005-30717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30718/", + "id": 30718, + "name": "Steeplejack", + "site_detail_url": "https://comicvine.gamespot.com/steeplejack/4005-30718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30719/", + "id": 30719, + "name": "Black Mamba", + "site_detail_url": "https://comicvine.gamespot.com/black-mamba/4005-30719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30720/", + "id": 30720, + "name": "Bushmaster", + "site_detail_url": "https://comicvine.gamespot.com/bushmaster/4005-30720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30721/", + "id": 30721, + "name": "Rattler", + "site_detail_url": "https://comicvine.gamespot.com/rattler/4005-30721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30739/", + "id": 30739, + "name": "Slaggnbir", + "site_detail_url": "https://comicvine.gamespot.com/slaggnbir/4005-30739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30740/", + "id": 30740, + "name": "Agnar, King of the Eagles", + "site_detail_url": "https://comicvine.gamespot.com/agnar-king-of-the-eagles/4005-30740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30741/", + "id": 30741, + "name": "Uglitha", + "site_detail_url": "https://comicvine.gamespot.com/uglitha/4005-30741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30742/", + "id": 30742, + "name": "Ed Garner", + "site_detail_url": "https://comicvine.gamespot.com/ed-garner/4005-30742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30747/", + "id": 30747, + "name": "Khat", + "site_detail_url": "https://comicvine.gamespot.com/khat/4005-30747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30787/", + "id": 30787, + "name": "Starkad", + "site_detail_url": "https://comicvine.gamespot.com/starkad/4005-30787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30790/", + "id": 30790, + "name": "Don Cervello", + "site_detail_url": "https://comicvine.gamespot.com/don-cervello/4005-30790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30791/", + "id": 30791, + "name": "Alaric", + "site_detail_url": "https://comicvine.gamespot.com/alaric/4005-30791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30792/", + "id": 30792, + "name": "Angela", + "site_detail_url": "https://comicvine.gamespot.com/angela/4005-30792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30793/", + "id": 30793, + "name": "Tony Massera", + "site_detail_url": "https://comicvine.gamespot.com/tony-massera/4005-30793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30799/", + "id": 30799, + "name": "Knickknack", + "site_detail_url": "https://comicvine.gamespot.com/knickknack/4005-30799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30800/", + "id": 30800, + "name": "Crossfire", + "site_detail_url": "https://comicvine.gamespot.com/crossfire/4005-30800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30801/", + "id": 30801, + "name": "Ringleader", + "site_detail_url": "https://comicvine.gamespot.com/ringleader/4005-30801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30802/", + "id": 30802, + "name": "Tenpin", + "site_detail_url": "https://comicvine.gamespot.com/tenpin/4005-30802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30821/", + "id": 30821, + "name": "Carl Maddicks", + "site_detail_url": "https://comicvine.gamespot.com/carl-maddicks/4005-30821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30823/", + "id": 30823, + "name": "Mr. Chambers", + "site_detail_url": "https://comicvine.gamespot.com/mr-chambers/4005-30823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30825/", + "id": 30825, + "name": "Hazzard", + "site_detail_url": "https://comicvine.gamespot.com/hazzard/4005-30825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30828/", + "id": 30828, + "name": "Randall Chase", + "site_detail_url": "https://comicvine.gamespot.com/randall-chase/4005-30828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30829/", + "id": 30829, + "name": "Luriale", + "site_detail_url": "https://comicvine.gamespot.com/luriale/4005-30829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30867/", + "id": 30867, + "name": "Harokin", + "site_detail_url": "https://comicvine.gamespot.com/harokin/4005-30867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30868/", + "id": 30868, + "name": "Ratso", + "site_detail_url": "https://comicvine.gamespot.com/ratso/4005-30868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30870/", + "id": 30870, + "name": "Carolyn Parmenter", + "site_detail_url": "https://comicvine.gamespot.com/carolyn-parmenter/4005-30870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30871/", + "id": 30871, + "name": "Rock", + "site_detail_url": "https://comicvine.gamespot.com/rock/4005-30871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30873/", + "id": 30873, + "name": "Peggy McArthur", + "site_detail_url": "https://comicvine.gamespot.com/peggy-mcarthur/4005-30873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30905/", + "id": 30905, + "name": "Gullywhump", + "site_detail_url": "https://comicvine.gamespot.com/gullywhump/4005-30905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30906/", + "id": 30906, + "name": "Greensong", + "site_detail_url": "https://comicvine.gamespot.com/greensong/4005-30906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30907/", + "id": 30907, + "name": "Southside", + "site_detail_url": "https://comicvine.gamespot.com/southside/4005-30907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30909/", + "id": 30909, + "name": "Charlie Siciliano", + "site_detail_url": "https://comicvine.gamespot.com/charlie-siciliano/4005-30909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30916/", + "id": 30916, + "name": "Mink", + "site_detail_url": "https://comicvine.gamespot.com/mink/4005-30916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30917/", + "id": 30917, + "name": "Remnant", + "site_detail_url": "https://comicvine.gamespot.com/remnant/4005-30917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30918/", + "id": 30918, + "name": "The Third Eye", + "site_detail_url": "https://comicvine.gamespot.com/the-third-eye/4005-30918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30972/", + "id": 30972, + "name": "Grierson", + "site_detail_url": "https://comicvine.gamespot.com/grierson/4005-30972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30973/", + "id": 30973, + "name": "Carlo Zota", + "site_detail_url": "https://comicvine.gamespot.com/carlo-zota/4005-30973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30974/", + "id": 30974, + "name": "Shinsky", + "site_detail_url": "https://comicvine.gamespot.com/shinsky/4005-30974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30979/", + "id": 30979, + "name": "Liz Moran", + "site_detail_url": "https://comicvine.gamespot.com/liz-moran/4005-30979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30980/", + "id": 30980, + "name": "Evelyn Cream", + "site_detail_url": "https://comicvine.gamespot.com/evelyn-cream/4005-30980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30982/", + "id": 30982, + "name": "Dr. Gargunza", + "site_detail_url": "https://comicvine.gamespot.com/dr-gargunza/4005-30982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30983/", + "id": 30983, + "name": "Dennis Archer", + "site_detail_url": "https://comicvine.gamespot.com/dennis-archer/4005-30983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-30990/", + "id": 30990, + "name": "Chain", + "site_detail_url": "https://comicvine.gamespot.com/chain/4005-30990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31031/", + "id": 31031, + "name": "Raymond Sikorsky", + "site_detail_url": "https://comicvine.gamespot.com/raymond-sikorsky/4005-31031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31042/", + "id": 31042, + "name": "Darla", + "site_detail_url": "https://comicvine.gamespot.com/darla/4005-31042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31051/", + "id": 31051, + "name": "Gilded Lily", + "site_detail_url": "https://comicvine.gamespot.com/gilded-lily/4005-31051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31074/", + "id": 31074, + "name": "Smithville Thunderbolt", + "site_detail_url": "https://comicvine.gamespot.com/smithville-thunderbolt/4005-31074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31075/", + "id": 31075, + "name": "Ludlow Grimes", + "site_detail_url": "https://comicvine.gamespot.com/ludlow-grimes/4005-31075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31076/", + "id": 31076, + "name": "Hiromitsu", + "site_detail_url": "https://comicvine.gamespot.com/hiromitsu/4005-31076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31078/", + "id": 31078, + "name": "Mordonna", + "site_detail_url": "https://comicvine.gamespot.com/mordonna/4005-31078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31079/", + "id": 31079, + "name": "Thomas Hanson", + "site_detail_url": "https://comicvine.gamespot.com/thomas-hanson/4005-31079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31080/", + "id": 31080, + "name": "Janet Darling", + "site_detail_url": "https://comicvine.gamespot.com/janet-darling/4005-31080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31092/", + "id": 31092, + "name": "Kid Marvelman", + "site_detail_url": "https://comicvine.gamespot.com/kid-marvelman/4005-31092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31141/", + "id": 31141, + "name": "The Chief Examiner", + "site_detail_url": "https://comicvine.gamespot.com/the-chief-examiner/4005-31141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31145/", + "id": 31145, + "name": "Crassus", + "site_detail_url": "https://comicvine.gamespot.com/crassus/4005-31145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31146/", + "id": 31146, + "name": "Leora", + "site_detail_url": "https://comicvine.gamespot.com/leora/4005-31146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31147/", + "id": 31147, + "name": "Xantalus", + "site_detail_url": "https://comicvine.gamespot.com/xantalus/4005-31147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31148/", + "id": 31148, + "name": "Conn", + "site_detail_url": "https://comicvine.gamespot.com/conn/4005-31148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31149/", + "id": 31149, + "name": "Zenobia", + "site_detail_url": "https://comicvine.gamespot.com/zenobia/4005-31149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31150/", + "id": 31150, + "name": "Trocero", + "site_detail_url": "https://comicvine.gamespot.com/trocero/4005-31150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31151/", + "id": 31151, + "name": "Tetra", + "site_detail_url": "https://comicvine.gamespot.com/tetra/4005-31151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31152/", + "id": 31152, + "name": "Delmurio", + "site_detail_url": "https://comicvine.gamespot.com/delmurio/4005-31152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31153/", + "id": 31153, + "name": "Feducio", + "site_detail_url": "https://comicvine.gamespot.com/feducio/4005-31153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31154/", + "id": 31154, + "name": "Keiv", + "site_detail_url": "https://comicvine.gamespot.com/keiv/4005-31154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31155/", + "id": 31155, + "name": "Haag", + "site_detail_url": "https://comicvine.gamespot.com/haag/4005-31155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31176/", + "id": 31176, + "name": "Primax", + "site_detail_url": "https://comicvine.gamespot.com/primax/4005-31176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31196/", + "id": 31196, + "name": "Gutz", + "site_detail_url": "https://comicvine.gamespot.com/gutz/4005-31196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31197/", + "id": 31197, + "name": "Obadiah Stane", + "site_detail_url": "https://comicvine.gamespot.com/obadiah-stane/4005-31197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31198/", + "id": 31198, + "name": "Headlok", + "site_detail_url": "https://comicvine.gamespot.com/headlok/4005-31198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31232/", + "id": 31232, + "name": "Black Marauder", + "site_detail_url": "https://comicvine.gamespot.com/black-marauder/4005-31232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31235/", + "id": 31235, + "name": "Melissa Piper", + "site_detail_url": "https://comicvine.gamespot.com/melissa-piper/4005-31235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31236/", + "id": 31236, + "name": "Junius Mudd", + "site_detail_url": "https://comicvine.gamespot.com/junius-mudd/4005-31236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31237/", + "id": 31237, + "name": "Brother Drawley", + "site_detail_url": "https://comicvine.gamespot.com/brother-drawley/4005-31237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31238/", + "id": 31238, + "name": "Harbor", + "site_detail_url": "https://comicvine.gamespot.com/harbor/4005-31238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31249/", + "id": 31249, + "name": "Alexander Flynn", + "site_detail_url": "https://comicvine.gamespot.com/alexander-flynn/4005-31249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31257/", + "id": 31257, + "name": "Gloom", + "site_detail_url": "https://comicvine.gamespot.com/gloom/4005-31257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31258/", + "id": 31258, + "name": "Jungle Boy", + "site_detail_url": "https://comicvine.gamespot.com/jungle-boy/4005-31258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31259/", + "id": 31259, + "name": "Leopard Girl", + "site_detail_url": "https://comicvine.gamespot.com/leopard-girl/4005-31259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31260/", + "id": 31260, + "name": "Green Liberation Front", + "site_detail_url": "https://comicvine.gamespot.com/green-liberation-front/4005-31260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31267/", + "id": 31267, + "name": "Selby", + "site_detail_url": "https://comicvine.gamespot.com/selby/4005-31267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31270/", + "id": 31270, + "name": "Young Marvelman", + "site_detail_url": "https://comicvine.gamespot.com/young-marvelman/4005-31270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31271/", + "id": 31271, + "name": "Young Nastyman", + "site_detail_url": "https://comicvine.gamespot.com/young-nastyman/4005-31271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31320/", + "id": 31320, + "name": "Lee Forrester", + "site_detail_url": "https://comicvine.gamespot.com/lee-forrester/4005-31320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31321/", + "id": 31321, + "name": "Chi", + "site_detail_url": "https://comicvine.gamespot.com/chi/4005-31321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31322/", + "id": 31322, + "name": "Bounty Hunter", + "site_detail_url": "https://comicvine.gamespot.com/bounty-hunter/4005-31322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31326/", + "id": 31326, + "name": "Mr. Shoenstein", + "site_detail_url": "https://comicvine.gamespot.com/mr-shoenstein/4005-31326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31348/", + "id": 31348, + "name": "Chick Harris", + "site_detail_url": "https://comicvine.gamespot.com/chick-harris/4005-31348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31349/", + "id": 31349, + "name": "Matthew Linden", + "site_detail_url": "https://comicvine.gamespot.com/matthew-linden/4005-31349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31350/", + "id": 31350, + "name": "Urson-Wellz", + "site_detail_url": "https://comicvine.gamespot.com/urson-wellz/4005-31350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31354/", + "id": 31354, + "name": "Professor Mendel Stromm", + "site_detail_url": "https://comicvine.gamespot.com/professor-mendel-stromm/4005-31354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31358/", + "id": 31358, + "name": "Billy Stillwell", + "site_detail_url": "https://comicvine.gamespot.com/billy-stillwell/4005-31358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31359/", + "id": 31359, + "name": "Beaver Stillwell", + "site_detail_url": "https://comicvine.gamespot.com/beaver-stillwell/4005-31359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31360/", + "id": 31360, + "name": "Myrtle Stillwell", + "site_detail_url": "https://comicvine.gamespot.com/myrtle-stillwell/4005-31360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31361/", + "id": 31361, + "name": "Poltergeist", + "site_detail_url": "https://comicvine.gamespot.com/poltergeist/4005-31361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31381/", + "id": 31381, + "name": "Jamie Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/jamie-rodriguez/4005-31381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31384/", + "id": 31384, + "name": "Donnie Gardner", + "site_detail_url": "https://comicvine.gamespot.com/donnie-gardner/4005-31384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31385/", + "id": 31385, + "name": "Donna Gardner", + "site_detail_url": "https://comicvine.gamespot.com/donna-gardner/4005-31385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31400/", + "id": 31400, + "name": "Ed Palmer", + "site_detail_url": "https://comicvine.gamespot.com/ed-palmer/4005-31400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31401/", + "id": 31401, + "name": "Sue Palmer", + "site_detail_url": "https://comicvine.gamespot.com/sue-palmer/4005-31401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31402/", + "id": 31402, + "name": "Carmen Pryde", + "site_detail_url": "https://comicvine.gamespot.com/carmen-pryde/4005-31402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31403/", + "id": 31403, + "name": "Shumai", + "site_detail_url": "https://comicvine.gamespot.com/shumai/4005-31403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31404/", + "id": 31404, + "name": "Alma Chalmers", + "site_detail_url": "https://comicvine.gamespot.com/alma-chalmers/4005-31404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31406/", + "id": 31406, + "name": "The Gael", + "site_detail_url": "https://comicvine.gamespot.com/the-gael/4005-31406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31435/", + "id": 31435, + "name": "Roger Willis", + "site_detail_url": "https://comicvine.gamespot.com/roger-willis/4005-31435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31436/", + "id": 31436, + "name": "Llrrllllnnllyyrrl", + "site_detail_url": "https://comicvine.gamespot.com/llrrllllnnllyyrrl/4005-31436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31437/", + "id": 31437, + "name": "Randi", + "site_detail_url": "https://comicvine.gamespot.com/randi/4005-31437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31438/", + "id": 31438, + "name": "Heiji Shigematsu", + "site_detail_url": "https://comicvine.gamespot.com/heiji-shigematsu/4005-31438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31440/", + "id": 31440, + "name": "The Takers", + "site_detail_url": "https://comicvine.gamespot.com/the-takers/4005-31440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31443/", + "id": 31443, + "name": "Vibro", + "site_detail_url": "https://comicvine.gamespot.com/vibro/4005-31443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31445/", + "id": 31445, + "name": "T.J. Vance", + "site_detail_url": "https://comicvine.gamespot.com/tj-vance/4005-31445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31486/", + "id": 31486, + "name": "Girth", + "site_detail_url": "https://comicvine.gamespot.com/girth/4005-31486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31489/", + "id": 31489, + "name": "Streak", + "site_detail_url": "https://comicvine.gamespot.com/streak/4005-31489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31490/", + "id": 31490, + "name": "Emmanuel DaCosta", + "site_detail_url": "https://comicvine.gamespot.com/emmanuel-dacosta/4005-31490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31491/", + "id": 31491, + "name": "Eilif", + "site_detail_url": "https://comicvine.gamespot.com/eilif/4005-31491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31493/", + "id": 31493, + "name": "Incandescent Man", + "site_detail_url": "https://comicvine.gamespot.com/incandescent-man/4005-31493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31494/", + "id": 31494, + "name": "Gregor Lupus", + "site_detail_url": "https://comicvine.gamespot.com/gregor-lupus/4005-31494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31495/", + "id": 31495, + "name": "Monster Master", + "site_detail_url": "https://comicvine.gamespot.com/monster-master/4005-31495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31496/", + "id": 31496, + "name": "Micah Synn", + "site_detail_url": "https://comicvine.gamespot.com/micah-synn/4005-31496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31513/", + "id": 31513, + "name": "Myrn", + "site_detail_url": "https://comicvine.gamespot.com/myrn/4005-31513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31535/", + "id": 31535, + "name": "The Idiot", + "site_detail_url": "https://comicvine.gamespot.com/the-idiot/4005-31535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31536/", + "id": 31536, + "name": "White Light", + "site_detail_url": "https://comicvine.gamespot.com/white-light/4005-31536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31540/", + "id": 31540, + "name": "Timothy Quail", + "site_detail_url": "https://comicvine.gamespot.com/timothy-quail/4005-31540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31541/", + "id": 31541, + "name": "Colby", + "site_detail_url": "https://comicvine.gamespot.com/colby/4005-31541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31543/", + "id": 31543, + "name": "The Vikah", + "site_detail_url": "https://comicvine.gamespot.com/the-vikah/4005-31543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31563/", + "id": 31563, + "name": "Johnny Jerome", + "site_detail_url": "https://comicvine.gamespot.com/johnny-jerome/4005-31563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31564/", + "id": 31564, + "name": "Makoto", + "site_detail_url": "https://comicvine.gamespot.com/makoto/4005-31564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31565/", + "id": 31565, + "name": "Slorioth", + "site_detail_url": "https://comicvine.gamespot.com/slorioth/4005-31565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31573/", + "id": 31573, + "name": "The Blank", + "site_detail_url": "https://comicvine.gamespot.com/the-blank/4005-31573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31575/", + "id": 31575, + "name": "The Rekoner", + "site_detail_url": "https://comicvine.gamespot.com/the-rekoner/4005-31575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31576/", + "id": 31576, + "name": "Byrel Whitemane", + "site_detail_url": "https://comicvine.gamespot.com/byrel-whitemane/4005-31576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31578/", + "id": 31578, + "name": "Black Abbott", + "site_detail_url": "https://comicvine.gamespot.com/black-abbott/4005-31578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31581/", + "id": 31581, + "name": "Roger Bochs", + "site_detail_url": "https://comicvine.gamespot.com/roger-bochs/4005-31581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31604/", + "id": 31604, + "name": "Deke Wainscroft", + "site_detail_url": "https://comicvine.gamespot.com/deke-wainscroft/4005-31604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31607/", + "id": 31607, + "name": "Giles Peacock", + "site_detail_url": "https://comicvine.gamespot.com/giles-peacock/4005-31607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31608/", + "id": 31608, + "name": "Mrs. Peacock", + "site_detail_url": "https://comicvine.gamespot.com/mrs-peacock/4005-31608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31609/", + "id": 31609, + "name": "Heidi DeVoto", + "site_detail_url": "https://comicvine.gamespot.com/heidi-devoto/4005-31609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31610/", + "id": 31610, + "name": "Kinjorge", + "site_detail_url": "https://comicvine.gamespot.com/kinjorge/4005-31610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31632/", + "id": 31632, + "name": "Grimbat", + "site_detail_url": "https://comicvine.gamespot.com/grimbat/4005-31632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31643/", + "id": 31643, + "name": "Gruhl Of Shalfbut", + "site_detail_url": "https://comicvine.gamespot.com/gruhl-of-shalfbut/4005-31643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31645/", + "id": 31645, + "name": "Kate Waynesboro", + "site_detail_url": "https://comicvine.gamespot.com/kate-waynesboro/4005-31645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31646/", + "id": 31646, + "name": "Crossbow", + "site_detail_url": "https://comicvine.gamespot.com/crossbow/4005-31646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31666/", + "id": 31666, + "name": "Billera", + "site_detail_url": "https://comicvine.gamespot.com/billera/4005-31666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31668/", + "id": 31668, + "name": "Sharon Selleck", + "site_detail_url": "https://comicvine.gamespot.com/sharon-selleck/4005-31668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31672/", + "id": 31672, + "name": "Jerome Jaxon", + "site_detail_url": "https://comicvine.gamespot.com/jerome-jaxon/4005-31672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31698/", + "id": 31698, + "name": "Hanrak Of Leenn", + "site_detail_url": "https://comicvine.gamespot.com/hanrak-of-leenn/4005-31698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31699/", + "id": 31699, + "name": "Crime-Master (Lewis)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-lewis/4005-31699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31702/", + "id": 31702, + "name": "Alice Winchell", + "site_detail_url": "https://comicvine.gamespot.com/alice-winchell/4005-31702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31748/", + "id": 31748, + "name": "Captain England", + "site_detail_url": "https://comicvine.gamespot.com/captain-england/4005-31748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31749/", + "id": 31749, + "name": "Captain Albion", + "site_detail_url": "https://comicvine.gamespot.com/captain-albion/4005-31749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31750/", + "id": 31750, + "name": "Captain Airstrip One", + "site_detail_url": "https://comicvine.gamespot.com/captain-airstrip-one/4005-31750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31751/", + "id": 31751, + "name": "Captain Commonwealth", + "site_detail_url": "https://comicvine.gamespot.com/captain-commonwealth/4005-31751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31752/", + "id": 31752, + "name": "Captain Angleterre", + "site_detail_url": "https://comicvine.gamespot.com/captain-angleterre/4005-31752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31753/", + "id": 31753, + "name": "Captain Empire", + "site_detail_url": "https://comicvine.gamespot.com/captain-empire/4005-31753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31754/", + "id": 31754, + "name": "Kommandant Englander", + "site_detail_url": "https://comicvine.gamespot.com/kommandant-englander/4005-31754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31793/", + "id": 31793, + "name": "Aven", + "site_detail_url": "https://comicvine.gamespot.com/aven/4005-31793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31795/", + "id": 31795, + "name": "Ozel", + "site_detail_url": "https://comicvine.gamespot.com/ozel/4005-31795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31797/", + "id": 31797, + "name": "Karisma", + "site_detail_url": "https://comicvine.gamespot.com/karisma/4005-31797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31819/", + "id": 31819, + "name": "Marco Sanzionare", + "site_detail_url": "https://comicvine.gamespot.com/marco-sanzionare/4005-31819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31821/", + "id": 31821, + "name": "Laufey", + "site_detail_url": "https://comicvine.gamespot.com/laufey/4005-31821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31824/", + "id": 31824, + "name": "John Landon", + "site_detail_url": "https://comicvine.gamespot.com/john-landon/4005-31824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31858/", + "id": 31858, + "name": "Huntarr", + "site_detail_url": "https://comicvine.gamespot.com/huntarr/4005-31858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31859/", + "id": 31859, + "name": "Fireflyte", + "site_detail_url": "https://comicvine.gamespot.com/fireflyte/4005-31859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31860/", + "id": 31860, + "name": "Bioship", + "site_detail_url": "https://comicvine.gamespot.com/bioship/4005-31860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31865/", + "id": 31865, + "name": "Gretl", + "site_detail_url": "https://comicvine.gamespot.com/gretl/4005-31865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31866/", + "id": 31866, + "name": "Randolph Cherryh", + "site_detail_url": "https://comicvine.gamespot.com/randolph-cherryh/4005-31866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31882/", + "id": 31882, + "name": "Hyrm", + "site_detail_url": "https://comicvine.gamespot.com/hyrm/4005-31882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31883/", + "id": 31883, + "name": "Instant Replay", + "site_detail_url": "https://comicvine.gamespot.com/instant-replay/4005-31883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31886/", + "id": 31886, + "name": "Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/aftermath/4005-31886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31904/", + "id": 31904, + "name": "The Entity", + "site_detail_url": "https://comicvine.gamespot.com/the-entity/4005-31904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31905/", + "id": 31905, + "name": "DeGrayde", + "site_detail_url": "https://comicvine.gamespot.com/degrayde/4005-31905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31913/", + "id": 31913, + "name": "Kate Dwyer", + "site_detail_url": "https://comicvine.gamespot.com/kate-dwyer/4005-31913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31914/", + "id": 31914, + "name": "Alden Maas", + "site_detail_url": "https://comicvine.gamespot.com/alden-maas/4005-31914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31916/", + "id": 31916, + "name": "Tumbler", + "site_detail_url": "https://comicvine.gamespot.com/tumbler/4005-31916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31942/", + "id": 31942, + "name": "Two-Legged Rat", + "site_detail_url": "https://comicvine.gamespot.com/two-legged-rat/4005-31942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31943/", + "id": 31943, + "name": "Lucius Antonius Aquilla", + "site_detail_url": "https://comicvine.gamespot.com/lucius-antonius-aquilla/4005-31943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31951/", + "id": 31951, + "name": "Morley Erwin", + "site_detail_url": "https://comicvine.gamespot.com/morley-erwin/4005-31951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31952/", + "id": 31952, + "name": "Clytemnestra Erwin", + "site_detail_url": "https://comicvine.gamespot.com/clytemnestra-erwin/4005-31952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31953/", + "id": 31953, + "name": "Winston Phlan", + "site_detail_url": "https://comicvine.gamespot.com/winston-phlan/4005-31953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31955/", + "id": 31955, + "name": "Alarich Wallenquist", + "site_detail_url": "https://comicvine.gamespot.com/alarich-wallenquist/4005-31955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31956/", + "id": 31956, + "name": "Trump", + "site_detail_url": "https://comicvine.gamespot.com/trump/4005-31956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31957/", + "id": 31957, + "name": "Stymie Schmidt", + "site_detail_url": "https://comicvine.gamespot.com/stymie-schmidt/4005-31957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31991/", + "id": 31991, + "name": "Goody Two-Shoes", + "site_detail_url": "https://comicvine.gamespot.com/goody-two-shoes/4005-31991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31995/", + "id": 31995, + "name": "Castro", + "site_detail_url": "https://comicvine.gamespot.com/castro/4005-31995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31996/", + "id": 31996, + "name": "Mad Jim Jaspers", + "site_detail_url": "https://comicvine.gamespot.com/mad-jim-jaspers/4005-31996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32002/", + "id": 32002, + "name": "Black Lotus", + "site_detail_url": "https://comicvine.gamespot.com/black-lotus/4005-32002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32003/", + "id": 32003, + "name": "Kono", + "site_detail_url": "https://comicvine.gamespot.com/kono/4005-32003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32005/", + "id": 32005, + "name": "Vic Martinelli", + "site_detail_url": "https://comicvine.gamespot.com/vic-martinelli/4005-32005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32007/", + "id": 32007, + "name": "Ozzie Sanborn", + "site_detail_url": "https://comicvine.gamespot.com/ozzie-sanborn/4005-32007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32009/", + "id": 32009, + "name": "Xxan Xxar", + "site_detail_url": "https://comicvine.gamespot.com/xxan-xxar/4005-32009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32013/", + "id": 32013, + "name": "Roman Nekoboh", + "site_detail_url": "https://comicvine.gamespot.com/roman-nekoboh/4005-32013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32014/", + "id": 32014, + "name": "Publius", + "site_detail_url": "https://comicvine.gamespot.com/publius/4005-32014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32015/", + "id": 32015, + "name": "Captain Durzzak", + "site_detail_url": "https://comicvine.gamespot.com/captain-durzzak/4005-32015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32016/", + "id": 32016, + "name": "Raksos B’Quen", + "site_detail_url": "https://comicvine.gamespot.com/raksos-bquen/4005-32016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32017/", + "id": 32017, + "name": "Alhambra", + "site_detail_url": "https://comicvine.gamespot.com/alhambra/4005-32017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32021/", + "id": 32021, + "name": "Mo-Skull", + "site_detail_url": "https://comicvine.gamespot.com/mo-skull/4005-32021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32022/", + "id": 32022, + "name": "Katheryn Twoyoungmen", + "site_detail_url": "https://comicvine.gamespot.com/katheryn-twoyoungmen/4005-32022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32024/", + "id": 32024, + "name": "Linda Grant", + "site_detail_url": "https://comicvine.gamespot.com/linda-grant/4005-32024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32033/", + "id": 32033, + "name": "Marcus", + "site_detail_url": "https://comicvine.gamespot.com/marcus/4005-32033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32034/", + "id": 32034, + "name": "Julius", + "site_detail_url": "https://comicvine.gamespot.com/julius/4005-32034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32048/", + "id": 32048, + "name": "Horvald", + "site_detail_url": "https://comicvine.gamespot.com/horvald/4005-32048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32049/", + "id": 32049, + "name": "Grolf", + "site_detail_url": "https://comicvine.gamespot.com/grolf/4005-32049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32050/", + "id": 32050, + "name": "Otny", + "site_detail_url": "https://comicvine.gamespot.com/otny/4005-32050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32051/", + "id": 32051, + "name": "King Nestor", + "site_detail_url": "https://comicvine.gamespot.com/king-nestor/4005-32051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32052/", + "id": 32052, + "name": "Aerivar XVIII", + "site_detail_url": "https://comicvine.gamespot.com/aerivar-xviii/4005-32052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32063/", + "id": 32063, + "name": "Marcus Domitius Gallio", + "site_detail_url": "https://comicvine.gamespot.com/marcus-domitius-gallio/4005-32063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32064/", + "id": 32064, + "name": "Regis Feskey", + "site_detail_url": "https://comicvine.gamespot.com/regis-feskey/4005-32064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32065/", + "id": 32065, + "name": "Godwulf", + "site_detail_url": "https://comicvine.gamespot.com/godwulf/4005-32065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32067/", + "id": 32067, + "name": "Swashbuckler", + "site_detail_url": "https://comicvine.gamespot.com/swashbuckler/4005-32067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32068/", + "id": 32068, + "name": "Gentle Sam", + "site_detail_url": "https://comicvine.gamespot.com/gentle-sam/4005-32068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32070/", + "id": 32070, + "name": "Sister Pleasure", + "site_detail_url": "https://comicvine.gamespot.com/sister-pleasure/4005-32070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32092/", + "id": 32092, + "name": "Damon Dran", + "site_detail_url": "https://comicvine.gamespot.com/damon-dran/4005-32092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32130/", + "id": 32130, + "name": "Princess Fen", + "site_detail_url": "https://comicvine.gamespot.com/princess-fen/4005-32130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32132/", + "id": 32132, + "name": "Bygvir", + "site_detail_url": "https://comicvine.gamespot.com/bygvir/4005-32132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32133/", + "id": 32133, + "name": "Sarah Ann Jackson", + "site_detail_url": "https://comicvine.gamespot.com/sarah-ann-jackson/4005-32133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32134/", + "id": 32134, + "name": "R.U. Reddy", + "site_detail_url": "https://comicvine.gamespot.com/ru-reddy/4005-32134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32138/", + "id": 32138, + "name": "Martha Winslow", + "site_detail_url": "https://comicvine.gamespot.com/martha-winslow/4005-32138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32140/", + "id": 32140, + "name": "Prince Irham", + "site_detail_url": "https://comicvine.gamespot.com/prince-irham/4005-32140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32141/", + "id": 32141, + "name": "Luther Manning Clone", + "site_detail_url": "https://comicvine.gamespot.com/luther-manning-clone/4005-32141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32161/", + "id": 32161, + "name": "Yvette Avril", + "site_detail_url": "https://comicvine.gamespot.com/yvette-avril/4005-32161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32162/", + "id": 32162, + "name": "Knight", + "site_detail_url": "https://comicvine.gamespot.com/knight/4005-32162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32163/", + "id": 32163, + "name": "Iron-Hand Hauptmann", + "site_detail_url": "https://comicvine.gamespot.com/iron-hand-hauptmann/4005-32163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32165/", + "id": 32165, + "name": "Napier", + "site_detail_url": "https://comicvine.gamespot.com/napier/4005-32165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32185/", + "id": 32185, + "name": "Alynn Cambers", + "site_detail_url": "https://comicvine.gamespot.com/alynn-cambers/4005-32185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32186/", + "id": 32186, + "name": "Jake Grimm", + "site_detail_url": "https://comicvine.gamespot.com/jake-grimm/4005-32186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32187/", + "id": 32187, + "name": "Nan Freeman", + "site_detail_url": "https://comicvine.gamespot.com/nan-freeman/4005-32187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32188/", + "id": 32188, + "name": "Gen. Nguyen Ngoc Coy", + "site_detail_url": "https://comicvine.gamespot.com/gen-nguyen-ngoc-coy/4005-32188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32190/", + "id": 32190, + "name": "Roberta Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/roberta-rhodes/4005-32190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32191/", + "id": 32191, + "name": "Indries Moomji", + "site_detail_url": "https://comicvine.gamespot.com/indries-moomji/4005-32191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32192/", + "id": 32192, + "name": "Bolar", + "site_detail_url": "https://comicvine.gamespot.com/bolar/4005-32192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32204/", + "id": 32204, + "name": "Jacob Grimm", + "site_detail_url": "https://comicvine.gamespot.com/jacob-grimm/4005-32204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32206/", + "id": 32206, + "name": "Kono", + "site_detail_url": "https://comicvine.gamespot.com/kono/4005-32206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32207/", + "id": 32207, + "name": "Aunt Alyce", + "site_detail_url": "https://comicvine.gamespot.com/aunt-alyce/4005-32207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32208/", + "id": 32208, + "name": "Bereet", + "site_detail_url": "https://comicvine.gamespot.com/bereet/4005-32208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32211/", + "id": 32211, + "name": "Rick Brown", + "site_detail_url": "https://comicvine.gamespot.com/rick-brown/4005-32211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32212/", + "id": 32212, + "name": "Tarkington Brown", + "site_detail_url": "https://comicvine.gamespot.com/tarkington-brown/4005-32212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32255/", + "id": 32255, + "name": "Crom", + "site_detail_url": "https://comicvine.gamespot.com/crom/4005-32255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32257/", + "id": 32257, + "name": "Dansen Macabre", + "site_detail_url": "https://comicvine.gamespot.com/dansen-macabre/4005-32257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32258/", + "id": 32258, + "name": "Skein", + "site_detail_url": "https://comicvine.gamespot.com/skein/4005-32258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32259/", + "id": 32259, + "name": "Needle", + "site_detail_url": "https://comicvine.gamespot.com/needle/4005-32259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32260/", + "id": 32260, + "name": "Angar the Screamer", + "site_detail_url": "https://comicvine.gamespot.com/angar-the-screamer/4005-32260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32261/", + "id": 32261, + "name": "Daddy Longlegs", + "site_detail_url": "https://comicvine.gamespot.com/daddy-longlegs/4005-32261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32266/", + "id": 32266, + "name": "Rhonda Leffingwell", + "site_detail_url": "https://comicvine.gamespot.com/rhonda-leffingwell/4005-32266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32267/", + "id": 32267, + "name": "Leffingwell V", + "site_detail_url": "https://comicvine.gamespot.com/leffingwell-v/4005-32267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32268/", + "id": 32268, + "name": "Jackdaw", + "site_detail_url": "https://comicvine.gamespot.com/jackdaw/4005-32268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32269/", + "id": 32269, + "name": "Omnivac", + "site_detail_url": "https://comicvine.gamespot.com/omnivac/4005-32269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32271/", + "id": 32271, + "name": "Pelija Lon", + "site_detail_url": "https://comicvine.gamespot.com/pelija-lon/4005-32271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32294/", + "id": 32294, + "name": "James Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/james-mandarin/4005-32294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32297/", + "id": 32297, + "name": "Meredith Stead", + "site_detail_url": "https://comicvine.gamespot.com/meredith-stead/4005-32297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32301/", + "id": 32301, + "name": "Estregone", + "site_detail_url": "https://comicvine.gamespot.com/estregone/4005-32301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32302/", + "id": 32302, + "name": "Ceres", + "site_detail_url": "https://comicvine.gamespot.com/ceres/4005-32302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32303/", + "id": 32303, + "name": "Mala", + "site_detail_url": "https://comicvine.gamespot.com/mala/4005-32303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32338/", + "id": 32338, + "name": "Trish Starr", + "site_detail_url": "https://comicvine.gamespot.com/trish-starr/4005-32338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32366/", + "id": 32366, + "name": "Renaldo", + "site_detail_url": "https://comicvine.gamespot.com/renaldo/4005-32366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32368/", + "id": 32368, + "name": "Ootha", + "site_detail_url": "https://comicvine.gamespot.com/ootha/4005-32368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32369/", + "id": 32369, + "name": "Mrs. Fredericks", + "site_detail_url": "https://comicvine.gamespot.com/mrs-fredericks/4005-32369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32370/", + "id": 32370, + "name": "Maxine Lavender", + "site_detail_url": "https://comicvine.gamespot.com/maxine-lavender/4005-32370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32371/", + "id": 32371, + "name": "Barry Farnum", + "site_detail_url": "https://comicvine.gamespot.com/barry-farnum/4005-32371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32372/", + "id": 32372, + "name": "Valen", + "site_detail_url": "https://comicvine.gamespot.com/valen/4005-32372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32373/", + "id": 32373, + "name": "Johell", + "site_detail_url": "https://comicvine.gamespot.com/johell/4005-32373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32408/", + "id": 32408, + "name": "Poundcakes", + "site_detail_url": "https://comicvine.gamespot.com/poundcakes/4005-32408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32409/", + "id": 32409, + "name": "Jade Claw", + "site_detail_url": "https://comicvine.gamespot.com/jade-claw/4005-32409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32410/", + "id": 32410, + "name": "Fire-Arms", + "site_detail_url": "https://comicvine.gamespot.com/fire-arms/4005-32410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32414/", + "id": 32414, + "name": "Stygorr", + "site_detail_url": "https://comicvine.gamespot.com/stygorr/4005-32414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32415/", + "id": 32415, + "name": "Theta", + "site_detail_url": "https://comicvine.gamespot.com/theta/4005-32415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32416/", + "id": 32416, + "name": "Nicholas", + "site_detail_url": "https://comicvine.gamespot.com/nicholas/4005-32416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32447/", + "id": 32447, + "name": "Flame", + "site_detail_url": "https://comicvine.gamespot.com/flame/4005-32447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32473/", + "id": 32473, + "name": "Maximus", + "site_detail_url": "https://comicvine.gamespot.com/maximus/4005-32473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32474/", + "id": 32474, + "name": "Nedra", + "site_detail_url": "https://comicvine.gamespot.com/nedra/4005-32474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32475/", + "id": 32475, + "name": "General Ursus", + "site_detail_url": "https://comicvine.gamespot.com/general-ursus/4005-32475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32495/", + "id": 32495, + "name": "Isbisa", + "site_detail_url": "https://comicvine.gamespot.com/isbisa/4005-32495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32496/", + "id": 32496, + "name": "Shawna Lynde", + "site_detail_url": "https://comicvine.gamespot.com/shawna-lynde/4005-32496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32497/", + "id": 32497, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/digger/4005-32497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32499/", + "id": 32499, + "name": "Sylvana", + "site_detail_url": "https://comicvine.gamespot.com/sylvana/4005-32499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32500/", + "id": 32500, + "name": "Pawn", + "site_detail_url": "https://comicvine.gamespot.com/pawn/4005-32500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32502/", + "id": 32502, + "name": "Griffin (Franklin)", + "site_detail_url": "https://comicvine.gamespot.com/griffin-franklin/4005-32502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32503/", + "id": 32503, + "name": "Corky Franklin", + "site_detail_url": "https://comicvine.gamespot.com/corky-franklin/4005-32503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32504/", + "id": 32504, + "name": "Sandmanatee", + "site_detail_url": "https://comicvine.gamespot.com/sandmanatee/4005-32504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32505/", + "id": 32505, + "name": "Miguel", + "site_detail_url": "https://comicvine.gamespot.com/miguel/4005-32505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32506/", + "id": 32506, + "name": "Thulandra Thuu", + "site_detail_url": "https://comicvine.gamespot.com/thulandra-thuu/4005-32506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32507/", + "id": 32507, + "name": "Null the Living Darkness", + "site_detail_url": "https://comicvine.gamespot.com/null-the-living-darkness/4005-32507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32509/", + "id": 32509, + "name": "Kirigi", + "site_detail_url": "https://comicvine.gamespot.com/kirigi/4005-32509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32510/", + "id": 32510, + "name": "Sarah Wilson", + "site_detail_url": "https://comicvine.gamespot.com/sarah-wilson/4005-32510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32514/", + "id": 32514, + "name": "Manticore", + "site_detail_url": "https://comicvine.gamespot.com/manticore/4005-32514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32516/", + "id": 32516, + "name": "James Melvin", + "site_detail_url": "https://comicvine.gamespot.com/james-melvin/4005-32516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32517/", + "id": 32517, + "name": "John T. Gamelin", + "site_detail_url": "https://comicvine.gamespot.com/john-t-gamelin/4005-32517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32546/", + "id": 32546, + "name": "Jolena", + "site_detail_url": "https://comicvine.gamespot.com/jolena/4005-32546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32547/", + "id": 32547, + "name": "Black Rider", + "site_detail_url": "https://comicvine.gamespot.com/black-rider/4005-32547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32548/", + "id": 32548, + "name": "Milton Osnick", + "site_detail_url": "https://comicvine.gamespot.com/milton-osnick/4005-32548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32549/", + "id": 32549, + "name": "Zelda Osnick", + "site_detail_url": "https://comicvine.gamespot.com/zelda-osnick/4005-32549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32550/", + "id": 32550, + "name": "Brad Rossi", + "site_detail_url": "https://comicvine.gamespot.com/brad-rossi/4005-32550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32551/", + "id": 32551, + "name": "Dr. Bailey Kuklin", + "site_detail_url": "https://comicvine.gamespot.com/dr-bailey-kuklin/4005-32551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32554/", + "id": 32554, + "name": "Gears Garvin", + "site_detail_url": "https://comicvine.gamespot.com/gears-garvin/4005-32554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32556/", + "id": 32556, + "name": "Badger", + "site_detail_url": "https://comicvine.gamespot.com/badger/4005-32556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32557/", + "id": 32557, + "name": "Cynthia Randolph", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-randolph/4005-32557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32558/", + "id": 32558, + "name": "Madame Olga", + "site_detail_url": "https://comicvine.gamespot.com/madame-olga/4005-32558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32560/", + "id": 32560, + "name": "Ant-Ant", + "site_detail_url": "https://comicvine.gamespot.com/ant-ant/4005-32560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32561/", + "id": 32561, + "name": "Waspbunny", + "site_detail_url": "https://comicvine.gamespot.com/waspbunny/4005-32561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32562/", + "id": 32562, + "name": "Ducktor Doom", + "site_detail_url": "https://comicvine.gamespot.com/ducktor-doom/4005-32562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32564/", + "id": 32564, + "name": "Claw", + "site_detail_url": "https://comicvine.gamespot.com/claw/4005-32564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32565/", + "id": 32565, + "name": "Shaft", + "site_detail_url": "https://comicvine.gamespot.com/shaft/4005-32565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32566/", + "id": 32566, + "name": "Fhrank", + "site_detail_url": "https://comicvine.gamespot.com/fhrank/4005-32566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32568/", + "id": 32568, + "name": "Cathlann", + "site_detail_url": "https://comicvine.gamespot.com/cathlann/4005-32568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32569/", + "id": 32569, + "name": "Indech", + "site_detail_url": "https://comicvine.gamespot.com/indech/4005-32569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32571/", + "id": 32571, + "name": "Dulb", + "site_detail_url": "https://comicvine.gamespot.com/dulb/4005-32571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32594/", + "id": 32594, + "name": "Katsuyori", + "site_detail_url": "https://comicvine.gamespot.com/katsuyori/4005-32594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32595/", + "id": 32595, + "name": "Noburu Hideki", + "site_detail_url": "https://comicvine.gamespot.com/noburu-hideki/4005-32595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32596/", + "id": 32596, + "name": "Elfqueen", + "site_detail_url": "https://comicvine.gamespot.com/elfqueen/4005-32596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32598/", + "id": 32598, + "name": "Live-Wire", + "site_detail_url": "https://comicvine.gamespot.com/live-wire/4005-32598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32600/", + "id": 32600, + "name": "Ernesto Gambonno", + "site_detail_url": "https://comicvine.gamespot.com/ernesto-gambonno/4005-32600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32601/", + "id": 32601, + "name": "Strongman", + "site_detail_url": "https://comicvine.gamespot.com/strongman/4005-32601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32603/", + "id": 32603, + "name": "Johnny Guitar", + "site_detail_url": "https://comicvine.gamespot.com/johnny-guitar/4005-32603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32604/", + "id": 32604, + "name": "Eshe Lon", + "site_detail_url": "https://comicvine.gamespot.com/eshe-lon/4005-32604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32605/", + "id": 32605, + "name": "Revelle Lon", + "site_detail_url": "https://comicvine.gamespot.com/revelle-lon/4005-32605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32606/", + "id": 32606, + "name": "Happy Sam Sawyer", + "site_detail_url": "https://comicvine.gamespot.com/happy-sam-sawyer/4005-32606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32607/", + "id": 32607, + "name": "Nose Norton", + "site_detail_url": "https://comicvine.gamespot.com/nose-norton/4005-32607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32641/", + "id": 32641, + "name": "Asano Kimura", + "site_detail_url": "https://comicvine.gamespot.com/asano-kimura/4005-32641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32645/", + "id": 32645, + "name": "Varrel Dorn", + "site_detail_url": "https://comicvine.gamespot.com/varrel-dorn/4005-32645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32646/", + "id": 32646, + "name": "Madame X'arthalla", + "site_detail_url": "https://comicvine.gamespot.com/madame-xarthalla/4005-32646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32648/", + "id": 32648, + "name": "Tanya Anderssen", + "site_detail_url": "https://comicvine.gamespot.com/tanya-anderssen/4005-32648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32649/", + "id": 32649, + "name": "Alcemides", + "site_detail_url": "https://comicvine.gamespot.com/alcemides/4005-32649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32650/", + "id": 32650, + "name": "Axis Annie", + "site_detail_url": "https://comicvine.gamespot.com/axis-annie/4005-32650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32651/", + "id": 32651, + "name": "Nick Manolis", + "site_detail_url": "https://comicvine.gamespot.com/nick-manolis/4005-32651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32652/", + "id": 32652, + "name": "Mr. Spindle", + "site_detail_url": "https://comicvine.gamespot.com/mr-spindle/4005-32652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32689/", + "id": 32689, + "name": "Maklos", + "site_detail_url": "https://comicvine.gamespot.com/maklos/4005-32689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32690/", + "id": 32690, + "name": "Gabrelle Pok", + "site_detail_url": "https://comicvine.gamespot.com/gabrelle-pok/4005-32690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32691/", + "id": 32691, + "name": "Trelinka", + "site_detail_url": "https://comicvine.gamespot.com/trelinka/4005-32691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32692/", + "id": 32692, + "name": "Gowar", + "site_detail_url": "https://comicvine.gamespot.com/gowar/4005-32692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32693/", + "id": 32693, + "name": "Katur", + "site_detail_url": "https://comicvine.gamespot.com/katur/4005-32693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32694/", + "id": 32694, + "name": "Metallus", + "site_detail_url": "https://comicvine.gamespot.com/metallus/4005-32694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32699/", + "id": 32699, + "name": "Twillo", + "site_detail_url": "https://comicvine.gamespot.com/twillo/4005-32699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32700/", + "id": 32700, + "name": "Bolo", + "site_detail_url": "https://comicvine.gamespot.com/bolo/4005-32700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32701/", + "id": 32701, + "name": "Grendl", + "site_detail_url": "https://comicvine.gamespot.com/grendl/4005-32701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32729/", + "id": 32729, + "name": "Kyrie", + "site_detail_url": "https://comicvine.gamespot.com/kyrie/4005-32729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32731/", + "id": 32731, + "name": "Borna", + "site_detail_url": "https://comicvine.gamespot.com/borna/4005-32731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32732/", + "id": 32732, + "name": "Fairgold", + "site_detail_url": "https://comicvine.gamespot.com/fairgold/4005-32732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32733/", + "id": 32733, + "name": "Slithgarn", + "site_detail_url": "https://comicvine.gamespot.com/slithgarn/4005-32733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32735/", + "id": 32735, + "name": "Grandmaster", + "site_detail_url": "https://comicvine.gamespot.com/grandmaster/4005-32735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32736/", + "id": 32736, + "name": "El Aguila", + "site_detail_url": "https://comicvine.gamespot.com/el-aguila/4005-32736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32737/", + "id": 32737, + "name": "Jason Sloan", + "site_detail_url": "https://comicvine.gamespot.com/jason-sloan/4005-32737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32740/", + "id": 32740, + "name": "Vanessa Tooks", + "site_detail_url": "https://comicvine.gamespot.com/vanessa-tooks/4005-32740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32741/", + "id": 32741, + "name": "Coach Donahue", + "site_detail_url": "https://comicvine.gamespot.com/coach-donahue/4005-32741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32742/", + "id": 32742, + "name": "Eral", + "site_detail_url": "https://comicvine.gamespot.com/eral/4005-32742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32743/", + "id": 32743, + "name": "Dralos", + "site_detail_url": "https://comicvine.gamespot.com/dralos/4005-32743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32744/", + "id": 32744, + "name": "Fabian Stankowicz", + "site_detail_url": "https://comicvine.gamespot.com/fabian-stankowicz/4005-32744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32745/", + "id": 32745, + "name": "Rama Kaliph", + "site_detail_url": "https://comicvine.gamespot.com/rama-kaliph/4005-32745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32759/", + "id": 32759, + "name": "Darkon", + "site_detail_url": "https://comicvine.gamespot.com/darkon/4005-32759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32760/", + "id": 32760, + "name": "Aryal", + "site_detail_url": "https://comicvine.gamespot.com/aryal/4005-32760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32761/", + "id": 32761, + "name": "Brandeis", + "site_detail_url": "https://comicvine.gamespot.com/brandeis/4005-32761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32762/", + "id": 32762, + "name": "Princess Azir", + "site_detail_url": "https://comicvine.gamespot.com/princess-azir/4005-32762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32763/", + "id": 32763, + "name": "Ninotchka", + "site_detail_url": "https://comicvine.gamespot.com/ninotchka/4005-32763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32764/", + "id": 32764, + "name": "Brillalae", + "site_detail_url": "https://comicvine.gamespot.com/brillalae/4005-32764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32766/", + "id": 32766, + "name": "Vizier Of Halwan", + "site_detail_url": "https://comicvine.gamespot.com/vizier-of-halwan/4005-32766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32767/", + "id": 32767, + "name": "The Negator", + "site_detail_url": "https://comicvine.gamespot.com/the-negator/4005-32767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32768/", + "id": 32768, + "name": "Zhou Cheng", + "site_detail_url": "https://comicvine.gamespot.com/zhou-cheng/4005-32768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32774/", + "id": 32774, + "name": "Arnie Roth", + "site_detail_url": "https://comicvine.gamespot.com/arnie-roth/4005-32774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32809/", + "id": 32809, + "name": "Tongah", + "site_detail_url": "https://comicvine.gamespot.com/tongah/4005-32809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32810/", + "id": 32810, + "name": "Hadrathus", + "site_detail_url": "https://comicvine.gamespot.com/hadrathus/4005-32810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32811/", + "id": 32811, + "name": "Darweena", + "site_detail_url": "https://comicvine.gamespot.com/darweena/4005-32811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32812/", + "id": 32812, + "name": "Sean Farrell", + "site_detail_url": "https://comicvine.gamespot.com/sean-farrell/4005-32812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32814/", + "id": 32814, + "name": "Rocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon/4005-32814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32815/", + "id": 32815, + "name": "Ishiti", + "site_detail_url": "https://comicvine.gamespot.com/ishiti/4005-32815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32818/", + "id": 32818, + "name": "Equius", + "site_detail_url": "https://comicvine.gamespot.com/equius/4005-32818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32857/", + "id": 32857, + "name": "Arishem the Judge", + "site_detail_url": "https://comicvine.gamespot.com/arishem-the-judge/4005-32857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32858/", + "id": 32858, + "name": "Carina Walters", + "site_detail_url": "https://comicvine.gamespot.com/carina-walters/4005-32858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32860/", + "id": 32860, + "name": "The Storyteller", + "site_detail_url": "https://comicvine.gamespot.com/the-storyteller/4005-32860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32861/", + "id": 32861, + "name": "Montenegro", + "site_detail_url": "https://comicvine.gamespot.com/montenegro/4005-32861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32863/", + "id": 32863, + "name": "Daydra", + "site_detail_url": "https://comicvine.gamespot.com/daydra/4005-32863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32865/", + "id": 32865, + "name": "Contessa Vera Vidal", + "site_detail_url": "https://comicvine.gamespot.com/contessa-vera-vidal/4005-32865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32866/", + "id": 32866, + "name": "Ch'i-Lin", + "site_detail_url": "https://comicvine.gamespot.com/chi-lin/4005-32866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32868/", + "id": 32868, + "name": "Doc Von Stratten", + "site_detail_url": "https://comicvine.gamespot.com/doc-von-stratten/4005-32868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32869/", + "id": 32869, + "name": "Lenya", + "site_detail_url": "https://comicvine.gamespot.com/lenya/4005-32869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32870/", + "id": 32870, + "name": "Paka", + "site_detail_url": "https://comicvine.gamespot.com/paka/4005-32870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32871/", + "id": 32871, + "name": "August Masters", + "site_detail_url": "https://comicvine.gamespot.com/august-masters/4005-32871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32872/", + "id": 32872, + "name": "Dr. Deth", + "site_detail_url": "https://comicvine.gamespot.com/dr-deth/4005-32872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32873/", + "id": 32873, + "name": "Kip Hölm", + "site_detail_url": "https://comicvine.gamespot.com/kip-holm/4005-32873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32874/", + "id": 32874, + "name": "Muffy", + "site_detail_url": "https://comicvine.gamespot.com/muffy/4005-32874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32875/", + "id": 32875, + "name": "The Hangman", + "site_detail_url": "https://comicvine.gamespot.com/the-hangman/4005-32875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32876/", + "id": 32876, + "name": "Forever Man", + "site_detail_url": "https://comicvine.gamespot.com/forever-man/4005-32876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32878/", + "id": 32878, + "name": "Hlökk", + "site_detail_url": "https://comicvine.gamespot.com/hlokk/4005-32878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32909/", + "id": 32909, + "name": "Simon Marshall", + "site_detail_url": "https://comicvine.gamespot.com/simon-marshall/4005-32909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32910/", + "id": 32910, + "name": "Joey Tartaglione", + "site_detail_url": "https://comicvine.gamespot.com/joey-tartaglione/4005-32910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32912/", + "id": 32912, + "name": "Celia Jackson", + "site_detail_url": "https://comicvine.gamespot.com/celia-jackson/4005-32912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32913/", + "id": 32913, + "name": "Talia Kruma", + "site_detail_url": "https://comicvine.gamespot.com/talia-kruma/4005-32913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32914/", + "id": 32914, + "name": "Dale West", + "site_detail_url": "https://comicvine.gamespot.com/dale-west/4005-32914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32915/", + "id": 32915, + "name": "Kevin Leonardo", + "site_detail_url": "https://comicvine.gamespot.com/kevin-leonardo/4005-32915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32917/", + "id": 32917, + "name": "Goranda Zek", + "site_detail_url": "https://comicvine.gamespot.com/goranda-zek/4005-32917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32918/", + "id": 32918, + "name": "Dark-Crawler", + "site_detail_url": "https://comicvine.gamespot.com/dark-crawler/4005-32918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32921/", + "id": 32921, + "name": "Sewer King", + "site_detail_url": "https://comicvine.gamespot.com/sewer-king/4005-32921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32922/", + "id": 32922, + "name": "Gharn", + "site_detail_url": "https://comicvine.gamespot.com/gharn/4005-32922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32923/", + "id": 32923, + "name": "Mira", + "site_detail_url": "https://comicvine.gamespot.com/mira/4005-32923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32924/", + "id": 32924, + "name": "Palla", + "site_detail_url": "https://comicvine.gamespot.com/palla/4005-32924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32925/", + "id": 32925, + "name": "Jhara-An", + "site_detail_url": "https://comicvine.gamespot.com/jhara-an/4005-32925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32926/", + "id": 32926, + "name": "Foolkiller (Salinger)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-salinger/4005-32926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32937/", + "id": 32937, + "name": "Dead Ringer", + "site_detail_url": "https://comicvine.gamespot.com/dead-ringer/4005-32937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32938/", + "id": 32938, + "name": "Black Talon", + "site_detail_url": "https://comicvine.gamespot.com/black-talon/4005-32938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32948/", + "id": 32948, + "name": "Lou Monkton", + "site_detail_url": "https://comicvine.gamespot.com/lou-monkton/4005-32948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32951/", + "id": 32951, + "name": "Techmaster", + "site_detail_url": "https://comicvine.gamespot.com/techmaster/4005-32951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32981/", + "id": 32981, + "name": "Goldbug", + "site_detail_url": "https://comicvine.gamespot.com/goldbug/4005-32981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32982/", + "id": 32982, + "name": "Henry Clerk", + "site_detail_url": "https://comicvine.gamespot.com/henry-clerk/4005-32982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32983/", + "id": 32983, + "name": "Alexis Primo", + "site_detail_url": "https://comicvine.gamespot.com/alexis-primo/4005-32983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32984/", + "id": 32984, + "name": "Elyena Borodin", + "site_detail_url": "https://comicvine.gamespot.com/elyena-borodin/4005-32984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32985/", + "id": 32985, + "name": "Xenos", + "site_detail_url": "https://comicvine.gamespot.com/xenos/4005-32985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32986/", + "id": 32986, + "name": "Microtron", + "site_detail_url": "https://comicvine.gamespot.com/microtron/4005-32986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32987/", + "id": 32987, + "name": "Nanotron", + "site_detail_url": "https://comicvine.gamespot.com/nanotron/4005-32987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32988/", + "id": 32988, + "name": "Argon", + "site_detail_url": "https://comicvine.gamespot.com/argon/4005-32988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32990/", + "id": 32990, + "name": "Laynnen", + "site_detail_url": "https://comicvine.gamespot.com/laynnen/4005-32990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32991/", + "id": 32991, + "name": "Noyo", + "site_detail_url": "https://comicvine.gamespot.com/noyo/4005-32991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-32992/", + "id": 32992, + "name": "Dreeme", + "site_detail_url": "https://comicvine.gamespot.com/dreeme/4005-32992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33004/", + "id": 33004, + "name": "Andre LeClare", + "site_detail_url": "https://comicvine.gamespot.com/andre-leclare/4005-33004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33005/", + "id": 33005, + "name": "Ernesto Ramirez", + "site_detail_url": "https://comicvine.gamespot.com/ernesto-ramirez/4005-33005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33006/", + "id": 33006, + "name": "Cissy Ironwood", + "site_detail_url": "https://comicvine.gamespot.com/cissy-ironwood/4005-33006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33026/", + "id": 33026, + "name": "Debra Whitman", + "site_detail_url": "https://comicvine.gamespot.com/debra-whitman/4005-33026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33027/", + "id": 33027, + "name": "Biff Rifkin", + "site_detail_url": "https://comicvine.gamespot.com/biff-rifkin/4005-33027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33029/", + "id": 33029, + "name": "Sata", + "site_detail_url": "https://comicvine.gamespot.com/sata/4005-33029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33030/", + "id": 33030, + "name": "Bethany Cabe", + "site_detail_url": "https://comicvine.gamespot.com/bethany-cabe/4005-33030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33033/", + "id": 33033, + "name": "Luann Bloom", + "site_detail_url": "https://comicvine.gamespot.com/luann-bloom/4005-33033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33034/", + "id": 33034, + "name": "King Maddoc II", + "site_detail_url": "https://comicvine.gamespot.com/king-maddoc-ii/4005-33034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33061/", + "id": 33061, + "name": "Leita", + "site_detail_url": "https://comicvine.gamespot.com/leita/4005-33061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33062/", + "id": 33062, + "name": "Gerda", + "site_detail_url": "https://comicvine.gamespot.com/gerda/4005-33062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33063/", + "id": 33063, + "name": "Coach Barnstorm", + "site_detail_url": "https://comicvine.gamespot.com/coach-barnstorm/4005-33063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33064/", + "id": 33064, + "name": "Fhala Laroughe", + "site_detail_url": "https://comicvine.gamespot.com/fhala-laroughe/4005-33064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33066/", + "id": 33066, + "name": "Ninja", + "site_detail_url": "https://comicvine.gamespot.com/ninja/4005-33066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33068/", + "id": 33068, + "name": "Pavane", + "site_detail_url": "https://comicvine.gamespot.com/pavane/4005-33068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33070/", + "id": 33070, + "name": "Flagg Fargo", + "site_detail_url": "https://comicvine.gamespot.com/flagg-fargo/4005-33070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33071/", + "id": 33071, + "name": "Sheik Hurani", + "site_detail_url": "https://comicvine.gamespot.com/sheik-hurani/4005-33071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33072/", + "id": 33072, + "name": "Pau-Styss", + "site_detail_url": "https://comicvine.gamespot.com/pau-styss/4005-33072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33091/", + "id": 33091, + "name": "Hildegarde", + "site_detail_url": "https://comicvine.gamespot.com/hildegarde/4005-33091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33092/", + "id": 33092, + "name": "Krista", + "site_detail_url": "https://comicvine.gamespot.com/krista/4005-33092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33094/", + "id": 33094, + "name": "Felix Simon", + "site_detail_url": "https://comicvine.gamespot.com/felix-simon/4005-33094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33095/", + "id": 33095, + "name": "Lotus Shinchuko", + "site_detail_url": "https://comicvine.gamespot.com/lotus-shinchuko/4005-33095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33102/", + "id": 33102, + "name": "Cap'n Saxonia", + "site_detail_url": "https://comicvine.gamespot.com/capn-saxonia/4005-33102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33103/", + "id": 33103, + "name": "Sassafras", + "site_detail_url": "https://comicvine.gamespot.com/sassafras/4005-33103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33104/", + "id": 33104, + "name": "Potarr", + "site_detail_url": "https://comicvine.gamespot.com/potarr/4005-33104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33105/", + "id": 33105, + "name": "Ameridroid", + "site_detail_url": "https://comicvine.gamespot.com/ameridroid/4005-33105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33107/", + "id": 33107, + "name": "Bucky Bizarre", + "site_detail_url": "https://comicvine.gamespot.com/bucky-bizarre/4005-33107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33109/", + "id": 33109, + "name": "Ramrod", + "site_detail_url": "https://comicvine.gamespot.com/ramrod/4005-33109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33110/", + "id": 33110, + "name": "Dean Ulrich", + "site_detail_url": "https://comicvine.gamespot.com/dean-ulrich/4005-33110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33111/", + "id": 33111, + "name": "Lonesome Pinky", + "site_detail_url": "https://comicvine.gamespot.com/lonesome-pinky/4005-33111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33143/", + "id": 33143, + "name": "Casiolena", + "site_detail_url": "https://comicvine.gamespot.com/casiolena/4005-33143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33146/", + "id": 33146, + "name": "Athene", + "site_detail_url": "https://comicvine.gamespot.com/athene/4005-33146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33172/", + "id": 33172, + "name": "Simmons", + "site_detail_url": "https://comicvine.gamespot.com/simmons/4005-33172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33175/", + "id": 33175, + "name": "Morris Sloan", + "site_detail_url": "https://comicvine.gamespot.com/morris-sloan/4005-33175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33176/", + "id": 33176, + "name": "Hulkbunny", + "site_detail_url": "https://comicvine.gamespot.com/hulkbunny/4005-33176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33178/", + "id": 33178, + "name": "Solace", + "site_detail_url": "https://comicvine.gamespot.com/solace/4005-33178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33179/", + "id": 33179, + "name": "Devi Yasmina", + "site_detail_url": "https://comicvine.gamespot.com/devi-yasmina/4005-33179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33180/", + "id": 33180, + "name": "Yanak", + "site_detail_url": "https://comicvine.gamespot.com/yanak/4005-33180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33181/", + "id": 33181, + "name": "Khogar", + "site_detail_url": "https://comicvine.gamespot.com/khogar/4005-33181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33182/", + "id": 33182, + "name": "Thanara", + "site_detail_url": "https://comicvine.gamespot.com/thanara/4005-33182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33183/", + "id": 33183, + "name": "Ardashir", + "site_detail_url": "https://comicvine.gamespot.com/ardashir/4005-33183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33184/", + "id": 33184, + "name": "Shadu the Shady", + "site_detail_url": "https://comicvine.gamespot.com/shadu-the-shady/4005-33184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33185/", + "id": 33185, + "name": "Barko", + "site_detail_url": "https://comicvine.gamespot.com/barko/4005-33185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33186/", + "id": 33186, + "name": "Shikar", + "site_detail_url": "https://comicvine.gamespot.com/shikar/4005-33186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33188/", + "id": 33188, + "name": "Anton Hellgate", + "site_detail_url": "https://comicvine.gamespot.com/anton-hellgate/4005-33188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33191/", + "id": 33191, + "name": "Marlene Alraune", + "site_detail_url": "https://comicvine.gamespot.com/marlene-alraune/4005-33191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33193/", + "id": 33193, + "name": "Anna May Watson", + "site_detail_url": "https://comicvine.gamespot.com/anna-may-watson/4005-33193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33229/", + "id": 33229, + "name": "Uranos", + "site_detail_url": "https://comicvine.gamespot.com/uranos/4005-33229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33231/", + "id": 33231, + "name": "David Ishima", + "site_detail_url": "https://comicvine.gamespot.com/david-ishima/4005-33231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33232/", + "id": 33232, + "name": "Marjorie DuPrey", + "site_detail_url": "https://comicvine.gamespot.com/marjorie-duprey/4005-33232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33235/", + "id": 33235, + "name": "Bushman", + "site_detail_url": "https://comicvine.gamespot.com/bushman/4005-33235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33238/", + "id": 33238, + "name": "Eelectro", + "site_detail_url": "https://comicvine.gamespot.com/eelectro/4005-33238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33239/", + "id": 33239, + "name": "Glazier", + "site_detail_url": "https://comicvine.gamespot.com/glazier/4005-33239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33240/", + "id": 33240, + "name": "Moondark", + "site_detail_url": "https://comicvine.gamespot.com/moondark/4005-33240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33242/", + "id": 33242, + "name": "Jonnwalli", + "site_detail_url": "https://comicvine.gamespot.com/jonnwalli/4005-33242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33243/", + "id": 33243, + "name": "Dukenrik", + "site_detail_url": "https://comicvine.gamespot.com/dukenrik/4005-33243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33245/", + "id": 33245, + "name": "Jenna", + "site_detail_url": "https://comicvine.gamespot.com/jenna/4005-33245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33246/", + "id": 33246, + "name": "Kreean", + "site_detail_url": "https://comicvine.gamespot.com/kreean/4005-33246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33247/", + "id": 33247, + "name": "Greemoir", + "site_detail_url": "https://comicvine.gamespot.com/greemoir/4005-33247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33248/", + "id": 33248, + "name": "Okniragg The Brythunian", + "site_detail_url": "https://comicvine.gamespot.com/okniragg-the-brythunian/4005-33248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33249/", + "id": 33249, + "name": "Liirix", + "site_detail_url": "https://comicvine.gamespot.com/liirix/4005-33249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33250/", + "id": 33250, + "name": "Thumper Morgan", + "site_detail_url": "https://comicvine.gamespot.com/thumper-morgan/4005-33250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33251/", + "id": 33251, + "name": "Jonas Harrow", + "site_detail_url": "https://comicvine.gamespot.com/jonas-harrow/4005-33251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33252/", + "id": 33252, + "name": "Armand DuBroth", + "site_detail_url": "https://comicvine.gamespot.com/armand-dubroth/4005-33252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33277/", + "id": 33277, + "name": "Diadem", + "site_detail_url": "https://comicvine.gamespot.com/diadem/4005-33277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33282/", + "id": 33282, + "name": "Sheriff Daltry", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-daltry/4005-33282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33283/", + "id": 33283, + "name": "Khordes", + "site_detail_url": "https://comicvine.gamespot.com/khordes/4005-33283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33287/", + "id": 33287, + "name": "Atreah", + "site_detail_url": "https://comicvine.gamespot.com/atreah/4005-33287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33288/", + "id": 33288, + "name": "Petroccia", + "site_detail_url": "https://comicvine.gamespot.com/petroccia/4005-33288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33289/", + "id": 33289, + "name": "Eilaynia", + "site_detail_url": "https://comicvine.gamespot.com/eilaynia/4005-33289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33291/", + "id": 33291, + "name": "Mayella", + "site_detail_url": "https://comicvine.gamespot.com/mayella/4005-33291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33292/", + "id": 33292, + "name": "Sadie Frickett", + "site_detail_url": "https://comicvine.gamespot.com/sadie-frickett/4005-33292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33293/", + "id": 33293, + "name": "Travis Rave", + "site_detail_url": "https://comicvine.gamespot.com/travis-rave/4005-33293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33360/", + "id": 33360, + "name": "El Supremo", + "site_detail_url": "https://comicvine.gamespot.com/el-supremo/4005-33360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33364/", + "id": 33364, + "name": "Hamar Kur", + "site_detail_url": "https://comicvine.gamespot.com/hamar-kur/4005-33364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33365/", + "id": 33365, + "name": "Akeb Mann", + "site_detail_url": "https://comicvine.gamespot.com/akeb-mann/4005-33365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33366/", + "id": 33366, + "name": "Tatur", + "site_detail_url": "https://comicvine.gamespot.com/tatur/4005-33366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33368/", + "id": 33368, + "name": "Asmodeus Jones", + "site_detail_url": "https://comicvine.gamespot.com/asmodeus-jones/4005-33368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33369/", + "id": 33369, + "name": "Milton Rosenblum", + "site_detail_url": "https://comicvine.gamespot.com/milton-rosenblum/4005-33369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33370/", + "id": 33370, + "name": "Zacharus", + "site_detail_url": "https://comicvine.gamespot.com/zacharus/4005-33370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33376/", + "id": 33376, + "name": "Peter Boyer", + "site_detail_url": "https://comicvine.gamespot.com/peter-boyer/4005-33376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33386/", + "id": 33386, + "name": "Kaneshiro", + "site_detail_url": "https://comicvine.gamespot.com/kaneshiro/4005-33386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33387/", + "id": 33387, + "name": "Onihashi", + "site_detail_url": "https://comicvine.gamespot.com/onihashi/4005-33387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33388/", + "id": 33388, + "name": "Shapur", + "site_detail_url": "https://comicvine.gamespot.com/shapur/4005-33388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33395/", + "id": 33395, + "name": "Pieter Phobos", + "site_detail_url": "https://comicvine.gamespot.com/pieter-phobos/4005-33395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33396/", + "id": 33396, + "name": "Shuin-Shann", + "site_detail_url": "https://comicvine.gamespot.com/shuin-shann/4005-33396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33397/", + "id": 33397, + "name": "Nareobbo", + "site_detail_url": "https://comicvine.gamespot.com/nareobbo/4005-33397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33411/", + "id": 33411, + "name": "Bernie Rosenthal", + "site_detail_url": "https://comicvine.gamespot.com/bernie-rosenthal/4005-33411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33412/", + "id": 33412, + "name": "Toy", + "site_detail_url": "https://comicvine.gamespot.com/toy/4005-33412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33414/", + "id": 33414, + "name": "Dahlia", + "site_detail_url": "https://comicvine.gamespot.com/dahlia/4005-33414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33415/", + "id": 33415, + "name": "Arthur Nagan", + "site_detail_url": "https://comicvine.gamespot.com/arthur-nagan/4005-33415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33417/", + "id": 33417, + "name": "Bob Landers", + "site_detail_url": "https://comicvine.gamespot.com/bob-landers/4005-33417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33418/", + "id": 33418, + "name": "Carol Landers", + "site_detail_url": "https://comicvine.gamespot.com/carol-landers/4005-33418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33419/", + "id": 33419, + "name": "Lorrie Melton", + "site_detail_url": "https://comicvine.gamespot.com/lorrie-melton/4005-33419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33420/", + "id": 33420, + "name": "Diane Newell", + "site_detail_url": "https://comicvine.gamespot.com/diane-newell/4005-33420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33421/", + "id": 33421, + "name": "Audrey Landers", + "site_detail_url": "https://comicvine.gamespot.com/audrey-landers/4005-33421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33422/", + "id": 33422, + "name": "Annie Christopher", + "site_detail_url": "https://comicvine.gamespot.com/annie-christopher/4005-33422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33427/", + "id": 33427, + "name": "Harry S. Osgood", + "site_detail_url": "https://comicvine.gamespot.com/harry-s-osgood/4005-33427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33428/", + "id": 33428, + "name": "Cassandra Ferlenghetti", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-ferlenghetti/4005-33428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33429/", + "id": 33429, + "name": "Mistress Prem", + "site_detail_url": "https://comicvine.gamespot.com/mistress-prem/4005-33429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33430/", + "id": 33430, + "name": "King Pragma", + "site_detail_url": "https://comicvine.gamespot.com/king-pragma/4005-33430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33432/", + "id": 33432, + "name": "Evone", + "site_detail_url": "https://comicvine.gamespot.com/evone/4005-33432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33453/", + "id": 33453, + "name": "Terri Pryde", + "site_detail_url": "https://comicvine.gamespot.com/terri-pryde/4005-33453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33455/", + "id": 33455, + "name": "Elhalyn", + "site_detail_url": "https://comicvine.gamespot.com/elhalyn/4005-33455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33456/", + "id": 33456, + "name": "Blackbyrd", + "site_detail_url": "https://comicvine.gamespot.com/blackbyrd/4005-33456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33457/", + "id": 33457, + "name": "Gideon Mace", + "site_detail_url": "https://comicvine.gamespot.com/gideon-mace/4005-33457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33458/", + "id": 33458, + "name": "Holly Gillis", + "site_detail_url": "https://comicvine.gamespot.com/holly-gillis/4005-33458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33460/", + "id": 33460, + "name": "Lambert", + "site_detail_url": "https://comicvine.gamespot.com/lambert/4005-33460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33461/", + "id": 33461, + "name": "Gorjoon", + "site_detail_url": "https://comicvine.gamespot.com/gorjoon/4005-33461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33462/", + "id": 33462, + "name": "Shadow-Slasher", + "site_detail_url": "https://comicvine.gamespot.com/shadow-slasher/4005-33462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33464/", + "id": 33464, + "name": "Yah Chieng", + "site_detail_url": "https://comicvine.gamespot.com/yah-chieng/4005-33464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33465/", + "id": 33465, + "name": "Ghandar Chen", + "site_detail_url": "https://comicvine.gamespot.com/ghandar-chen/4005-33465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33466/", + "id": 33466, + "name": "Marinus", + "site_detail_url": "https://comicvine.gamespot.com/marinus/4005-33466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33467/", + "id": 33467, + "name": "Barracus", + "site_detail_url": "https://comicvine.gamespot.com/barracus/4005-33467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33469/", + "id": 33469, + "name": "Nephut-Sha", + "site_detail_url": "https://comicvine.gamespot.com/nephut-sha/4005-33469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33470/", + "id": 33470, + "name": "Carter Blaire", + "site_detail_url": "https://comicvine.gamespot.com/carter-blaire/4005-33470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33472/", + "id": 33472, + "name": "Vanndhar", + "site_detail_url": "https://comicvine.gamespot.com/vanndhar/4005-33472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33473/", + "id": 33473, + "name": "Agaarn", + "site_detail_url": "https://comicvine.gamespot.com/agaarn/4005-33473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33474/", + "id": 33474, + "name": "Orawk", + "site_detail_url": "https://comicvine.gamespot.com/orawk/4005-33474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33475/", + "id": 33475, + "name": "Okkan", + "site_detail_url": "https://comicvine.gamespot.com/okkan/4005-33475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33478/", + "id": 33478, + "name": "Sgt. Duffy", + "site_detail_url": "https://comicvine.gamespot.com/sgt-duffy/4005-33478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33512/", + "id": 33512, + "name": "Falon", + "site_detail_url": "https://comicvine.gamespot.com/falon/4005-33512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33513/", + "id": 33513, + "name": "Geoff Peckman", + "site_detail_url": "https://comicvine.gamespot.com/geoff-peckman/4005-33513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33517/", + "id": 33517, + "name": "Fashima", + "site_detail_url": "https://comicvine.gamespot.com/fashima/4005-33517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33520/", + "id": 33520, + "name": "Drogin", + "site_detail_url": "https://comicvine.gamespot.com/drogin/4005-33520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33521/", + "id": 33521, + "name": "Ravenna", + "site_detail_url": "https://comicvine.gamespot.com/ravenna/4005-33521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33542/", + "id": 33542, + "name": "Father Cosa", + "site_detail_url": "https://comicvine.gamespot.com/father-cosa/4005-33542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33543/", + "id": 33543, + "name": "Mrs. Sheehan", + "site_detail_url": "https://comicvine.gamespot.com/mrs-sheehan/4005-33543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33544/", + "id": 33544, + "name": "Ed Czerniak", + "site_detail_url": "https://comicvine.gamespot.com/ed-czerniak/4005-33544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33545/", + "id": 33545, + "name": "Princess Leia", + "site_detail_url": "https://comicvine.gamespot.com/princess-leia/4005-33545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33546/", + "id": 33546, + "name": "Carmen", + "site_detail_url": "https://comicvine.gamespot.com/carmen/4005-33546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33548/", + "id": 33548, + "name": "Lou Gunther", + "site_detail_url": "https://comicvine.gamespot.com/lou-gunther/4005-33548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33551/", + "id": 33551, + "name": "Spidra", + "site_detail_url": "https://comicvine.gamespot.com/spidra/4005-33551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33552/", + "id": 33552, + "name": "Barbie Bannister", + "site_detail_url": "https://comicvine.gamespot.com/barbie-bannister/4005-33552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33553/", + "id": 33553, + "name": "Captain Fate", + "site_detail_url": "https://comicvine.gamespot.com/captain-fate/4005-33553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33554/", + "id": 33554, + "name": "Sen. Glen Mountebank", + "site_detail_url": "https://comicvine.gamespot.com/sen-glen-mountebank/4005-33554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33555/", + "id": 33555, + "name": "Mike Trudeau", + "site_detail_url": "https://comicvine.gamespot.com/mike-trudeau/4005-33555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33556/", + "id": 33556, + "name": "Leucosia", + "site_detail_url": "https://comicvine.gamespot.com/leucosia/4005-33556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33557/", + "id": 33557, + "name": "Ligea", + "site_detail_url": "https://comicvine.gamespot.com/ligea/4005-33557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33588/", + "id": 33588, + "name": "Parasite", + "site_detail_url": "https://comicvine.gamespot.com/parasite/4005-33588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33591/", + "id": 33591, + "name": "Lala", + "site_detail_url": "https://comicvine.gamespot.com/lala/4005-33591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33602/", + "id": 33602, + "name": "Tommy Li", + "site_detail_url": "https://comicvine.gamespot.com/tommy-li/4005-33602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33603/", + "id": 33603, + "name": "Ibrahim", + "site_detail_url": "https://comicvine.gamespot.com/ibrahim/4005-33603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33604/", + "id": 33604, + "name": "Agent K", + "site_detail_url": "https://comicvine.gamespot.com/agent-k/4005-33604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33606/", + "id": 33606, + "name": "Rollins", + "site_detail_url": "https://comicvine.gamespot.com/rollins/4005-33606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33610/", + "id": 33610, + "name": "Chores", + "site_detail_url": "https://comicvine.gamespot.com/chores/4005-33610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33611/", + "id": 33611, + "name": "Korgon", + "site_detail_url": "https://comicvine.gamespot.com/korgon/4005-33611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33640/", + "id": 33640, + "name": "Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/vendetta/4005-33640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33643/", + "id": 33643, + "name": "Barney Bushkin", + "site_detail_url": "https://comicvine.gamespot.com/barney-bushkin/4005-33643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33645/", + "id": 33645, + "name": "The Word", + "site_detail_url": "https://comicvine.gamespot.com/the-word/4005-33645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33646/", + "id": 33646, + "name": "Ultima", + "site_detail_url": "https://comicvine.gamespot.com/ultima/4005-33646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33648/", + "id": 33648, + "name": "Agent Syn", + "site_detail_url": "https://comicvine.gamespot.com/agent-syn/4005-33648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33649/", + "id": 33649, + "name": "Pantherus", + "site_detail_url": "https://comicvine.gamespot.com/pantherus/4005-33649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33650/", + "id": 33650, + "name": "Elephantine", + "site_detail_url": "https://comicvine.gamespot.com/elephantine/4005-33650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33651/", + "id": 33651, + "name": "Viperus", + "site_detail_url": "https://comicvine.gamespot.com/viperus/4005-33651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33652/", + "id": 33652, + "name": "Ed Pollard", + "site_detail_url": "https://comicvine.gamespot.com/ed-pollard/4005-33652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33653/", + "id": 33653, + "name": "Rasto", + "site_detail_url": "https://comicvine.gamespot.com/rasto/4005-33653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33654/", + "id": 33654, + "name": "Zombie Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/zombie-deadpool/4005-33654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33655/", + "id": 33655, + "name": "K. J. Clayton", + "site_detail_url": "https://comicvine.gamespot.com/k-j-clayton/4005-33655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33686/", + "id": 33686, + "name": "Visis", + "site_detail_url": "https://comicvine.gamespot.com/visis/4005-33686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33687/", + "id": 33687, + "name": "Gammenon the Gatherer", + "site_detail_url": "https://comicvine.gamespot.com/gammenon-the-gatherer/4005-33687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33688/", + "id": 33688, + "name": "Ziran the Tester", + "site_detail_url": "https://comicvine.gamespot.com/ziran-the-tester/4005-33688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33689/", + "id": 33689, + "name": "Nezarr the Calculator", + "site_detail_url": "https://comicvine.gamespot.com/nezarr-the-calculator/4005-33689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33690/", + "id": 33690, + "name": "Oneg the Prober", + "site_detail_url": "https://comicvine.gamespot.com/oneg-the-prober/4005-33690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33691/", + "id": 33691, + "name": "Desiree Vaughn-Pope", + "site_detail_url": "https://comicvine.gamespot.com/desiree-vaughn-pope/4005-33691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33692/", + "id": 33692, + "name": "Melba Toliver", + "site_detail_url": "https://comicvine.gamespot.com/melba-toliver/4005-33692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33699/", + "id": 33699, + "name": "Othbaal", + "site_detail_url": "https://comicvine.gamespot.com/othbaal/4005-33699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33700/", + "id": 33700, + "name": "King Sumuabi", + "site_detail_url": "https://comicvine.gamespot.com/king-sumuabi/4005-33700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33701/", + "id": 33701, + "name": "Edward Ferbel", + "site_detail_url": "https://comicvine.gamespot.com/edward-ferbel/4005-33701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33702/", + "id": 33702, + "name": "Rupert Dockery", + "site_detail_url": "https://comicvine.gamespot.com/rupert-dockery/4005-33702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33721/", + "id": 33721, + "name": "Archie the Gruesome", + "site_detail_url": "https://comicvine.gamespot.com/archie-the-gruesome/4005-33721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33722/", + "id": 33722, + "name": "Nanali", + "site_detail_url": "https://comicvine.gamespot.com/nanali/4005-33722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33753/", + "id": 33753, + "name": "Kong Lomerate", + "site_detail_url": "https://comicvine.gamespot.com/kong-lomerate/4005-33753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33756/", + "id": 33756, + "name": "Vindar", + "site_detail_url": "https://comicvine.gamespot.com/vindar/4005-33756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33758/", + "id": 33758, + "name": "Tabitha Arcanne", + "site_detail_url": "https://comicvine.gamespot.com/tabitha-arcanne/4005-33758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33759/", + "id": 33759, + "name": "Tamris", + "site_detail_url": "https://comicvine.gamespot.com/tamris/4005-33759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33760/", + "id": 33760, + "name": "Caldix", + "site_detail_url": "https://comicvine.gamespot.com/caldix/4005-33760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33761/", + "id": 33761, + "name": "Red Ronin", + "site_detail_url": "https://comicvine.gamespot.com/red-ronin/4005-33761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33762/", + "id": 33762, + "name": "Fusion", + "site_detail_url": "https://comicvine.gamespot.com/fusion/4005-33762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33763/", + "id": 33763, + "name": "April Maye", + "site_detail_url": "https://comicvine.gamespot.com/april-maye/4005-33763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33778/", + "id": 33778, + "name": "Doorman", + "site_detail_url": "https://comicvine.gamespot.com/doorman/4005-33778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33780/", + "id": 33780, + "name": "Sarah Wilde", + "site_detail_url": "https://comicvine.gamespot.com/sarah-wilde/4005-33780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33781/", + "id": 33781, + "name": "Lee Childs", + "site_detail_url": "https://comicvine.gamespot.com/lee-childs/4005-33781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33785/", + "id": 33785, + "name": "Black Alfred", + "site_detail_url": "https://comicvine.gamespot.com/black-alfred/4005-33785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33786/", + "id": 33786, + "name": "Primal One", + "site_detail_url": "https://comicvine.gamespot.com/primal-one/4005-33786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33787/", + "id": 33787, + "name": "Uncle Scram", + "site_detail_url": "https://comicvine.gamespot.com/uncle-scram/4005-33787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33788/", + "id": 33788, + "name": "Professor Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/professor-slaughter/4005-33788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33789/", + "id": 33789, + "name": "Purple Ogres Of La Hacienda", + "site_detail_url": "https://comicvine.gamespot.com/purple-ogres-of-la-hacienda/4005-33789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33791/", + "id": 33791, + "name": "Senor Muerte", + "site_detail_url": "https://comicvine.gamespot.com/senor-muerte/4005-33791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33793/", + "id": 33793, + "name": "Ted Calloway", + "site_detail_url": "https://comicvine.gamespot.com/ted-calloway/4005-33793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33798/", + "id": 33798, + "name": "Moraga", + "site_detail_url": "https://comicvine.gamespot.com/moraga/4005-33798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33799/", + "id": 33799, + "name": "Naj", + "site_detail_url": "https://comicvine.gamespot.com/naj/4005-33799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33800/", + "id": 33800, + "name": "Erfu", + "site_detail_url": "https://comicvine.gamespot.com/erfu/4005-33800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33812/", + "id": 33812, + "name": "Riff", + "site_detail_url": "https://comicvine.gamespot.com/riff/4005-33812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33813/", + "id": 33813, + "name": "Cheyanne", + "site_detail_url": "https://comicvine.gamespot.com/cheyanne/4005-33813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33814/", + "id": 33814, + "name": "Qwami", + "site_detail_url": "https://comicvine.gamespot.com/qwami/4005-33814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33817/", + "id": 33817, + "name": "Jaime Slade", + "site_detail_url": "https://comicvine.gamespot.com/jaime-slade/4005-33817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33818/", + "id": 33818, + "name": "Silver Sow", + "site_detail_url": "https://comicvine.gamespot.com/silver-sow/4005-33818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33821/", + "id": 33821, + "name": "Niord", + "site_detail_url": "https://comicvine.gamespot.com/niord/4005-33821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33845/", + "id": 33845, + "name": "Yousef Tov", + "site_detail_url": "https://comicvine.gamespot.com/yousef-tov/4005-33845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33846/", + "id": 33846, + "name": "Sandy Jones", + "site_detail_url": "https://comicvine.gamespot.com/sandy-jones/4005-33846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33849/", + "id": 33849, + "name": "Tossa The Golden", + "site_detail_url": "https://comicvine.gamespot.com/tossa-the-golden/4005-33849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33850/", + "id": 33850, + "name": "King Aosoka", + "site_detail_url": "https://comicvine.gamespot.com/king-aosoka/4005-33850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33851/", + "id": 33851, + "name": "Mardoric", + "site_detail_url": "https://comicvine.gamespot.com/mardoric/4005-33851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33852/", + "id": 33852, + "name": "Thanamund", + "site_detail_url": "https://comicvine.gamespot.com/thanamund/4005-33852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33853/", + "id": 33853, + "name": "Dr. Solomon", + "site_detail_url": "https://comicvine.gamespot.com/dr-solomon/4005-33853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33854/", + "id": 33854, + "name": "Dawn Starr", + "site_detail_url": "https://comicvine.gamespot.com/dawn-starr/4005-33854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33855/", + "id": 33855, + "name": "Pamela Dean", + "site_detail_url": "https://comicvine.gamespot.com/pamela-dean/4005-33855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33863/", + "id": 33863, + "name": "Winda Wester", + "site_detail_url": "https://comicvine.gamespot.com/winda-wester/4005-33863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33864/", + "id": 33864, + "name": "Paul Same", + "site_detail_url": "https://comicvine.gamespot.com/paul-same/4005-33864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33865/", + "id": 33865, + "name": "Claude Starkowitz", + "site_detail_url": "https://comicvine.gamespot.com/claude-starkowitz/4005-33865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33866/", + "id": 33866, + "name": "Lee Switzler", + "site_detail_url": "https://comicvine.gamespot.com/lee-switzler/4005-33866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33876/", + "id": 33876, + "name": "Crimson Mage", + "site_detail_url": "https://comicvine.gamespot.com/crimson-mage/4005-33876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33877/", + "id": 33877, + "name": "Marie Heller", + "site_detail_url": "https://comicvine.gamespot.com/marie-heller/4005-33877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33889/", + "id": 33889, + "name": "The Gamesman", + "site_detail_url": "https://comicvine.gamespot.com/the-gamesman/4005-33889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33890/", + "id": 33890, + "name": "Mr. Big", + "site_detail_url": "https://comicvine.gamespot.com/mr-big/4005-33890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33892/", + "id": 33892, + "name": "Meteor Man", + "site_detail_url": "https://comicvine.gamespot.com/meteor-man/4005-33892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33893/", + "id": 33893, + "name": "Slattery", + "site_detail_url": "https://comicvine.gamespot.com/slattery/4005-33893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33895/", + "id": 33895, + "name": "Caesar Cicero", + "site_detail_url": "https://comicvine.gamespot.com/caesar-cicero/4005-33895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33896/", + "id": 33896, + "name": "Big Ben Donovan", + "site_detail_url": "https://comicvine.gamespot.com/big-ben-donovan/4005-33896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33900/", + "id": 33900, + "name": "Lloyd Lynne", + "site_detail_url": "https://comicvine.gamespot.com/lloyd-lynne/4005-33900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33901/", + "id": 33901, + "name": "Soul Strangler", + "site_detail_url": "https://comicvine.gamespot.com/soul-strangler/4005-33901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33902/", + "id": 33902, + "name": "Rev. Addison Blackburn", + "site_detail_url": "https://comicvine.gamespot.com/rev-addison-blackburn/4005-33902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33904/", + "id": 33904, + "name": "Leroy Ames", + "site_detail_url": "https://comicvine.gamespot.com/leroy-ames/4005-33904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33905/", + "id": 33905, + "name": "Ambrose Ellis", + "site_detail_url": "https://comicvine.gamespot.com/ambrose-ellis/4005-33905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33906/", + "id": 33906, + "name": "Adonis", + "site_detail_url": "https://comicvine.gamespot.com/adonis/4005-33906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33915/", + "id": 33915, + "name": "Nurse Barbara", + "site_detail_url": "https://comicvine.gamespot.com/nurse-barbara/4005-33915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33917/", + "id": 33917, + "name": "Mrs. Jonathan Ridge", + "site_detail_url": "https://comicvine.gamespot.com/mrs-jonathan-ridge/4005-33917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33918/", + "id": 33918, + "name": "Ridge", + "site_detail_url": "https://comicvine.gamespot.com/ridge/4005-33918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33921/", + "id": 33921, + "name": "Carl Travis", + "site_detail_url": "https://comicvine.gamespot.com/carl-travis/4005-33921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33922/", + "id": 33922, + "name": "Diana", + "site_detail_url": "https://comicvine.gamespot.com/diana/4005-33922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33924/", + "id": 33924, + "name": "Thutmekri", + "site_detail_url": "https://comicvine.gamespot.com/thutmekri/4005-33924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33925/", + "id": 33925, + "name": "Maat-Neb", + "site_detail_url": "https://comicvine.gamespot.com/maat-neb/4005-33925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33926/", + "id": 33926, + "name": "Lu Sing", + "site_detail_url": "https://comicvine.gamespot.com/lu-sing/4005-33926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33953/", + "id": 33953, + "name": "Schizoid Man", + "site_detail_url": "https://comicvine.gamespot.com/schizoid-man/4005-33953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33956/", + "id": 33956, + "name": "Rebecca Martin", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-martin/4005-33956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33960/", + "id": 33960, + "name": "Cilicia", + "site_detail_url": "https://comicvine.gamespot.com/cilicia/4005-33960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33965/", + "id": 33965, + "name": "Shubba", + "site_detail_url": "https://comicvine.gamespot.com/shubba/4005-33965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33966/", + "id": 33966, + "name": "Mongo", + "site_detail_url": "https://comicvine.gamespot.com/mongo/4005-33966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33967/", + "id": 33967, + "name": "Cowled Commander", + "site_detail_url": "https://comicvine.gamespot.com/cowled-commander/4005-33967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33968/", + "id": 33968, + "name": "Lorenzo Jacobi", + "site_detail_url": "https://comicvine.gamespot.com/lorenzo-jacobi/4005-33968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33985/", + "id": 33985, + "name": "Black Jack Tarr", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-tarr/4005-33985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33987/", + "id": 33987, + "name": "Gadget", + "site_detail_url": "https://comicvine.gamespot.com/gadget/4005-33987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33988/", + "id": 33988, + "name": "Piranha Jones", + "site_detail_url": "https://comicvine.gamespot.com/piranha-jones/4005-33988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33989/", + "id": 33989, + "name": "Melissa Greville", + "site_detail_url": "https://comicvine.gamespot.com/melissa-greville/4005-33989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33993/", + "id": 33993, + "name": "Skrull X", + "site_detail_url": "https://comicvine.gamespot.com/skrull-x/4005-33993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33994/", + "id": 33994, + "name": "Queen Tananda", + "site_detail_url": "https://comicvine.gamespot.com/queen-tananda/4005-33994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33995/", + "id": 33995, + "name": "Lord Aahmes", + "site_detail_url": "https://comicvine.gamespot.com/lord-aahmes/4005-33995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33996/", + "id": 33996, + "name": "Lord Tuthmes", + "site_detail_url": "https://comicvine.gamespot.com/lord-tuthmes/4005-33996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33997/", + "id": 33997, + "name": "Afari", + "site_detail_url": "https://comicvine.gamespot.com/afari/4005-33997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-33998/", + "id": 33998, + "name": "Muru", + "site_detail_url": "https://comicvine.gamespot.com/muru/4005-33998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34000/", + "id": 34000, + "name": "Falaha", + "site_detail_url": "https://comicvine.gamespot.com/falaha/4005-34000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34001/", + "id": 34001, + "name": "Cynthia Maxwell Kramer", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-maxwell-kramer/4005-34001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34011/", + "id": 34011, + "name": "Dean Jastrow", + "site_detail_url": "https://comicvine.gamespot.com/dean-jastrow/4005-34011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34020/", + "id": 34020, + "name": "Hodiak", + "site_detail_url": "https://comicvine.gamespot.com/hodiak/4005-34020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34025/", + "id": 34025, + "name": "Pro-Rata", + "site_detail_url": "https://comicvine.gamespot.com/pro-rata/4005-34025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34026/", + "id": 34026, + "name": "Scotty McDowell", + "site_detail_url": "https://comicvine.gamespot.com/scotty-mcdowell/4005-34026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34027/", + "id": 34027, + "name": "Brandy Clark", + "site_detail_url": "https://comicvine.gamespot.com/brandy-clark/4005-34027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34028/", + "id": 34028, + "name": "Archie Stryker", + "site_detail_url": "https://comicvine.gamespot.com/archie-stryker/4005-34028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34029/", + "id": 34029, + "name": "Gadget", + "site_detail_url": "https://comicvine.gamespot.com/gadget/4005-34029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34030/", + "id": 34030, + "name": "Kevin Trublood", + "site_detail_url": "https://comicvine.gamespot.com/kevin-trublood/4005-34030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34032/", + "id": 34032, + "name": "Karen Sterling", + "site_detail_url": "https://comicvine.gamespot.com/karen-sterling/4005-34032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34034/", + "id": 34034, + "name": "Big Thunder", + "site_detail_url": "https://comicvine.gamespot.com/big-thunder/4005-34034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34056/", + "id": 34056, + "name": "Phillip Chang", + "site_detail_url": "https://comicvine.gamespot.com/phillip-chang/4005-34056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34065/", + "id": 34065, + "name": "Snowfall", + "site_detail_url": "https://comicvine.gamespot.com/snowfall/4005-34065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34066/", + "id": 34066, + "name": "Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/widowmaker/4005-34066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34067/", + "id": 34067, + "name": "Dr. Marla Maples", + "site_detail_url": "https://comicvine.gamespot.com/dr-marla-maples/4005-34067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34084/", + "id": 34084, + "name": "Officer Tompkins", + "site_detail_url": "https://comicvine.gamespot.com/officer-tompkins/4005-34084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34089/", + "id": 34089, + "name": "Meteorite", + "site_detail_url": "https://comicvine.gamespot.com/meteorite/4005-34089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34090/", + "id": 34090, + "name": "Dr. Joyce Phillips", + "site_detail_url": "https://comicvine.gamespot.com/dr-joyce-phillips/4005-34090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34091/", + "id": 34091, + "name": "Alan Cavanaugh", + "site_detail_url": "https://comicvine.gamespot.com/alan-cavanaugh/4005-34091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34095/", + "id": 34095, + "name": "Anvil", + "site_detail_url": "https://comicvine.gamespot.com/anvil/4005-34095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34096/", + "id": 34096, + "name": "Nurse Rozetta", + "site_detail_url": "https://comicvine.gamespot.com/nurse-rozetta/4005-34096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34097/", + "id": 34097, + "name": "Jackknife Johnny", + "site_detail_url": "https://comicvine.gamespot.com/jackknife-johnny/4005-34097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34100/", + "id": 34100, + "name": "Tiffany Sleek", + "site_detail_url": "https://comicvine.gamespot.com/tiffany-sleek/4005-34100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34101/", + "id": 34101, + "name": "Adria", + "site_detail_url": "https://comicvine.gamespot.com/adria/4005-34101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34102/", + "id": 34102, + "name": "Billie Lumpkin", + "site_detail_url": "https://comicvine.gamespot.com/billie-lumpkin/4005-34102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34105/", + "id": 34105, + "name": "Phillip Barnette", + "site_detail_url": "https://comicvine.gamespot.com/phillip-barnette/4005-34105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34107/", + "id": 34107, + "name": "Keeper Of The Flame", + "site_detail_url": "https://comicvine.gamespot.com/keeper-of-the-flame/4005-34107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34109/", + "id": 34109, + "name": "Omega the Unknown", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown/4005-34109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34110/", + "id": 34110, + "name": "Basotu", + "site_detail_url": "https://comicvine.gamespot.com/basotu/4005-34110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34111/", + "id": 34111, + "name": "Eesee", + "site_detail_url": "https://comicvine.gamespot.com/eesee/4005-34111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34112/", + "id": 34112, + "name": "Stephen Tuval", + "site_detail_url": "https://comicvine.gamespot.com/stephen-tuval/4005-34112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34113/", + "id": 34113, + "name": "Vanadium", + "site_detail_url": "https://comicvine.gamespot.com/vanadium/4005-34113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34114/", + "id": 34114, + "name": "Phosphorus", + "site_detail_url": "https://comicvine.gamespot.com/phosphorus/4005-34114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34115/", + "id": 34115, + "name": "Carbon", + "site_detail_url": "https://comicvine.gamespot.com/carbon/4005-34115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34116/", + "id": 34116, + "name": "Radium", + "site_detail_url": "https://comicvine.gamespot.com/radium/4005-34116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34117/", + "id": 34117, + "name": "L-Cypher", + "site_detail_url": "https://comicvine.gamespot.com/l-cypher/4005-34117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34140/", + "id": 34140, + "name": "Iguana", + "site_detail_url": "https://comicvine.gamespot.com/iguana/4005-34140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34141/", + "id": 34141, + "name": "Henri Sorel", + "site_detail_url": "https://comicvine.gamespot.com/henri-sorel/4005-34141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34142/", + "id": 34142, + "name": "Anne Christopher", + "site_detail_url": "https://comicvine.gamespot.com/anne-christopher/4005-34142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34150/", + "id": 34150, + "name": "Felida", + "site_detail_url": "https://comicvine.gamespot.com/felida/4005-34150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34152/", + "id": 34152, + "name": "K'chama", + "site_detail_url": "https://comicvine.gamespot.com/kchama/4005-34152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34153/", + "id": 34153, + "name": "Josh Cooper", + "site_detail_url": "https://comicvine.gamespot.com/josh-cooper/4005-34153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34154/", + "id": 34154, + "name": "Anna Kapplebaum", + "site_detail_url": "https://comicvine.gamespot.com/anna-kapplebaum/4005-34154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34172/", + "id": 34172, + "name": "Betsy Wilford", + "site_detail_url": "https://comicvine.gamespot.com/betsy-wilford/4005-34172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34181/", + "id": 34181, + "name": "Yorubo", + "site_detail_url": "https://comicvine.gamespot.com/yorubo/4005-34181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34182/", + "id": 34182, + "name": "Many-Legged One", + "site_detail_url": "https://comicvine.gamespot.com/many-legged-one/4005-34182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34184/", + "id": 34184, + "name": "Mulla", + "site_detail_url": "https://comicvine.gamespot.com/mulla/4005-34184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34185/", + "id": 34185, + "name": "Doctor Faustus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-faustus/4005-34185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34187/", + "id": 34187, + "name": "Walter Hardy", + "site_detail_url": "https://comicvine.gamespot.com/walter-hardy/4005-34187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34194/", + "id": 34194, + "name": "Buttview", + "site_detail_url": "https://comicvine.gamespot.com/buttview/4005-34194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34207/", + "id": 34207, + "name": "White Tiger", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger/4005-34207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34210/", + "id": 34210, + "name": "Herkimer J. Oglethorpe", + "site_detail_url": "https://comicvine.gamespot.com/herkimer-j-oglethorpe/4005-34210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34213/", + "id": 34213, + "name": "Stellarax", + "site_detail_url": "https://comicvine.gamespot.com/stellarax/4005-34213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34215/", + "id": 34215, + "name": "Belit", + "site_detail_url": "https://comicvine.gamespot.com/belit/4005-34215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34216/", + "id": 34216, + "name": "Boris Korpse", + "site_detail_url": "https://comicvine.gamespot.com/boris-korpse/4005-34216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34240/", + "id": 34240, + "name": "The Monocle", + "site_detail_url": "https://comicvine.gamespot.com/the-monocle/4005-34240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34267/", + "id": 34267, + "name": "Darter", + "site_detail_url": "https://comicvine.gamespot.com/darter/4005-34267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34268/", + "id": 34268, + "name": "Awilda Ayala", + "site_detail_url": "https://comicvine.gamespot.com/awilda-ayala/4005-34268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34269/", + "id": 34269, + "name": "General Pollock", + "site_detail_url": "https://comicvine.gamespot.com/general-pollock/4005-34269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34270/", + "id": 34270, + "name": "Charles Rider", + "site_detail_url": "https://comicvine.gamespot.com/charles-rider/4005-34270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34271/", + "id": 34271, + "name": "Gloria Rider", + "site_detail_url": "https://comicvine.gamespot.com/gloria-rider/4005-34271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34272/", + "id": 34272, + "name": "Robbie Rider", + "site_detail_url": "https://comicvine.gamespot.com/robbie-rider/4005-34272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34273/", + "id": 34273, + "name": "Topspin", + "site_detail_url": "https://comicvine.gamespot.com/topspin/4005-34273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34275/", + "id": 34275, + "name": "Glitterbug", + "site_detail_url": "https://comicvine.gamespot.com/glitterbug/4005-34275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34276/", + "id": 34276, + "name": "Strangler", + "site_detail_url": "https://comicvine.gamespot.com/strangler/4005-34276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34291/", + "id": 34291, + "name": "Jennie Royce", + "site_detail_url": "https://comicvine.gamespot.com/jennie-royce/4005-34291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34293/", + "id": 34293, + "name": "Salia Petrie", + "site_detail_url": "https://comicvine.gamespot.com/salia-petrie/4005-34293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34294/", + "id": 34294, + "name": "Faceless One", + "site_detail_url": "https://comicvine.gamespot.com/faceless-one/4005-34294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34296/", + "id": 34296, + "name": "Natasha Haynesworth", + "site_detail_url": "https://comicvine.gamespot.com/natasha-haynesworth/4005-34296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34297/", + "id": 34297, + "name": "Ruth Land", + "site_detail_url": "https://comicvine.gamespot.com/ruth-land/4005-34297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34298/", + "id": 34298, + "name": "Erica Sondheim", + "site_detail_url": "https://comicvine.gamespot.com/erica-sondheim/4005-34298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34305/", + "id": 34305, + "name": "Ajaga", + "site_detail_url": "https://comicvine.gamespot.com/ajaga/4005-34305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34318/", + "id": 34318, + "name": "Masked Marauder", + "site_detail_url": "https://comicvine.gamespot.com/masked-marauder/4005-34318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34319/", + "id": 34319, + "name": "Kristine Saunders", + "site_detail_url": "https://comicvine.gamespot.com/kristine-saunders/4005-34319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34346/", + "id": 34346, + "name": "Tri-Man", + "site_detail_url": "https://comicvine.gamespot.com/tri-man/4005-34346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34347/", + "id": 34347, + "name": "Dr. Orlock", + "site_detail_url": "https://comicvine.gamespot.com/dr-orlock/4005-34347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34348/", + "id": 34348, + "name": "Atleza", + "site_detail_url": "https://comicvine.gamespot.com/atleza/4005-34348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34349/", + "id": 34349, + "name": "Brynocki", + "site_detail_url": "https://comicvine.gamespot.com/brynocki/4005-34349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34351/", + "id": 34351, + "name": "Arisen Tyrk", + "site_detail_url": "https://comicvine.gamespot.com/arisen-tyrk/4005-34351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34354/", + "id": 34354, + "name": "Buck Richlen", + "site_detail_url": "https://comicvine.gamespot.com/buck-richlen/4005-34354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34355/", + "id": 34355, + "name": "Jonathan Beame", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-beame/4005-34355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34381/", + "id": 34381, + "name": "Apah Alah", + "site_detail_url": "https://comicvine.gamespot.com/apah-alah/4005-34381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34382/", + "id": 34382, + "name": "Suumaro", + "site_detail_url": "https://comicvine.gamespot.com/suumaro/4005-34382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34384/", + "id": 34384, + "name": "Prince Shaitan", + "site_detail_url": "https://comicvine.gamespot.com/prince-shaitan/4005-34384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34385/", + "id": 34385, + "name": "Carnation", + "site_detail_url": "https://comicvine.gamespot.com/carnation/4005-34385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34387/", + "id": 34387, + "name": "Ginger Jaye", + "site_detail_url": "https://comicvine.gamespot.com/ginger-jaye/4005-34387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34388/", + "id": 34388, + "name": "Bernie Dillon", + "site_detail_url": "https://comicvine.gamespot.com/bernie-dillon/4005-34388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34389/", + "id": 34389, + "name": "Mike Burley", + "site_detail_url": "https://comicvine.gamespot.com/mike-burley/4005-34389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34390/", + "id": 34390, + "name": "Val Adair", + "site_detail_url": "https://comicvine.gamespot.com/val-adair/4005-34390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34392/", + "id": 34392, + "name": "Ilsa Sloan", + "site_detail_url": "https://comicvine.gamespot.com/ilsa-sloan/4005-34392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34393/", + "id": 34393, + "name": "Sen. Eugene Kligger Stivak", + "site_detail_url": "https://comicvine.gamespot.com/sen-eugene-kligger-stivak/4005-34393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34396/", + "id": 34396, + "name": "Brad Davis", + "site_detail_url": "https://comicvine.gamespot.com/brad-davis/4005-34396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34428/", + "id": 34428, + "name": "Prospero", + "site_detail_url": "https://comicvine.gamespot.com/prospero/4005-34428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34429/", + "id": 34429, + "name": "Pallantides", + "site_detail_url": "https://comicvine.gamespot.com/pallantides/4005-34429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34449/", + "id": 34449, + "name": "Megaton", + "site_detail_url": "https://comicvine.gamespot.com/megaton/4005-34449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34454/", + "id": 34454, + "name": "Zorba Fortunov", + "site_detail_url": "https://comicvine.gamespot.com/zorba-fortunov/4005-34454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34455/", + "id": 34455, + "name": "Dream Weaver", + "site_detail_url": "https://comicvine.gamespot.com/dream-weaver/4005-34455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34456/", + "id": 34456, + "name": "Zula", + "site_detail_url": "https://comicvine.gamespot.com/zula/4005-34456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34474/", + "id": 34474, + "name": "Hypno-Hustler", + "site_detail_url": "https://comicvine.gamespot.com/hypno-hustler/4005-34474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34477/", + "id": 34477, + "name": "Romulus", + "site_detail_url": "https://comicvine.gamespot.com/romulus/4005-34477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34478/", + "id": 34478, + "name": "Destroyer (Aubrey)", + "site_detail_url": "https://comicvine.gamespot.com/destroyer-aubrey/4005-34478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34480/", + "id": 34480, + "name": "Professor Turk", + "site_detail_url": "https://comicvine.gamespot.com/professor-turk/4005-34480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34481/", + "id": 34481, + "name": "Dollar Bill", + "site_detail_url": "https://comicvine.gamespot.com/dollar-bill/4005-34481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34491/", + "id": 34491, + "name": "Gudrun", + "site_detail_url": "https://comicvine.gamespot.com/gudrun/4005-34491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34521/", + "id": 34521, + "name": "Khadar", + "site_detail_url": "https://comicvine.gamespot.com/khadar/4005-34521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34522/", + "id": 34522, + "name": "Haemon", + "site_detail_url": "https://comicvine.gamespot.com/haemon/4005-34522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34523/", + "id": 34523, + "name": "Skull-Crusher", + "site_detail_url": "https://comicvine.gamespot.com/skull-crusher/4005-34523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34525/", + "id": 34525, + "name": "Fast Fingers", + "site_detail_url": "https://comicvine.gamespot.com/fast-fingers/4005-34525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34526/", + "id": 34526, + "name": "Humus Sapien", + "site_detail_url": "https://comicvine.gamespot.com/humus-sapien/4005-34526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34527/", + "id": 34527, + "name": "Judge", + "site_detail_url": "https://comicvine.gamespot.com/judge/4005-34527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34528/", + "id": 34528, + "name": "Fern", + "site_detail_url": "https://comicvine.gamespot.com/fern/4005-34528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34529/", + "id": 34529, + "name": "Frog-Man", + "site_detail_url": "https://comicvine.gamespot.com/frog-man/4005-34529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34530/", + "id": 34530, + "name": "Tagak", + "site_detail_url": "https://comicvine.gamespot.com/tagak/4005-34530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34531/", + "id": 34531, + "name": "Joe The Gorilla", + "site_detail_url": "https://comicvine.gamespot.com/joe-the-gorilla/4005-34531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34560/", + "id": 34560, + "name": "Singularity", + "site_detail_url": "https://comicvine.gamespot.com/singularity/4005-34560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34561/", + "id": 34561, + "name": "Crawley", + "site_detail_url": "https://comicvine.gamespot.com/crawley/4005-34561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34564/", + "id": 34564, + "name": "Ten-For", + "site_detail_url": "https://comicvine.gamespot.com/ten-for/4005-34564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34565/", + "id": 34565, + "name": "Colonel Kragg", + "site_detail_url": "https://comicvine.gamespot.com/colonel-kragg/4005-34565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34567/", + "id": 34567, + "name": "Tracy Warner", + "site_detail_url": "https://comicvine.gamespot.com/tracy-warner/4005-34567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34568/", + "id": 34568, + "name": "Lorquas Ptomel", + "site_detail_url": "https://comicvine.gamespot.com/lorquas-ptomel/4005-34568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34570/", + "id": 34570, + "name": "Naomi Kale", + "site_detail_url": "https://comicvine.gamespot.com/naomi-kale/4005-34570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34608/", + "id": 34608, + "name": "Simon Shreeve", + "site_detail_url": "https://comicvine.gamespot.com/simon-shreeve/4005-34608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34612/", + "id": 34612, + "name": "Herbert Josiah Weller", + "site_detail_url": "https://comicvine.gamespot.com/herbert-josiah-weller/4005-34612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34614/", + "id": 34614, + "name": "Argyle Fist", + "site_detail_url": "https://comicvine.gamespot.com/argyle-fist/4005-34614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34615/", + "id": 34615, + "name": "Big Wheel", + "site_detail_url": "https://comicvine.gamespot.com/big-wheel/4005-34615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34655/", + "id": 34655, + "name": "Peanut", + "site_detail_url": "https://comicvine.gamespot.com/peanut/4005-34655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34657/", + "id": 34657, + "name": "Caps Cooper", + "site_detail_url": "https://comicvine.gamespot.com/caps-cooper/4005-34657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34659/", + "id": 34659, + "name": "Kogar", + "site_detail_url": "https://comicvine.gamespot.com/kogar/4005-34659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34665/", + "id": 34665, + "name": "Veda", + "site_detail_url": "https://comicvine.gamespot.com/veda/4005-34665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34666/", + "id": 34666, + "name": "Jakarra", + "site_detail_url": "https://comicvine.gamespot.com/jakarra/4005-34666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34667/", + "id": 34667, + "name": "Jackson Weele", + "site_detail_url": "https://comicvine.gamespot.com/jackson-weele/4005-34667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34704/", + "id": 34704, + "name": "Britanicus Rex", + "site_detail_url": "https://comicvine.gamespot.com/britanicus-rex/4005-34704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34706/", + "id": 34706, + "name": "Raga-Shah", + "site_detail_url": "https://comicvine.gamespot.com/raga-shah/4005-34706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34707/", + "id": 34707, + "name": "Phae-Dor", + "site_detail_url": "https://comicvine.gamespot.com/phae-dor/4005-34707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34708/", + "id": 34708, + "name": "Bun-Dall", + "site_detail_url": "https://comicvine.gamespot.com/bun-dall/4005-34708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34709/", + "id": 34709, + "name": "Vampire Zuvembi", + "site_detail_url": "https://comicvine.gamespot.com/vampire-zuvembi/4005-34709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34710/", + "id": 34710, + "name": "Teutonic Knight", + "site_detail_url": "https://comicvine.gamespot.com/teutonic-knight/4005-34710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34712/", + "id": 34712, + "name": "Shanya", + "site_detail_url": "https://comicvine.gamespot.com/shanya/4005-34712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34714/", + "id": 34714, + "name": "Tuk", + "site_detail_url": "https://comicvine.gamespot.com/tuk/4005-34714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34746/", + "id": 34746, + "name": "Gudrun The Golden", + "site_detail_url": "https://comicvine.gamespot.com/gudrun-the-golden/4005-34746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34747/", + "id": 34747, + "name": "Charles Magnus", + "site_detail_url": "https://comicvine.gamespot.com/charles-magnus/4005-34747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34751/", + "id": 34751, + "name": "Human Top", + "site_detail_url": "https://comicvine.gamespot.com/human-top/4005-34751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34752/", + "id": 34752, + "name": "Golden Girl", + "site_detail_url": "https://comicvine.gamespot.com/golden-girl/4005-34752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34753/", + "id": 34753, + "name": "Devourer Of The Dead", + "site_detail_url": "https://comicvine.gamespot.com/devourer-of-the-dead/4005-34753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34754/", + "id": 34754, + "name": "Deathgrip", + "site_detail_url": "https://comicvine.gamespot.com/deathgrip/4005-34754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34759/", + "id": 34759, + "name": "Mike Farrell", + "site_detail_url": "https://comicvine.gamespot.com/mike-farrell/4005-34759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34777/", + "id": 34777, + "name": "Korrek The Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/korrek-the-barbarian/4005-34777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34780/", + "id": 34780, + "name": "Alex Stone", + "site_detail_url": "https://comicvine.gamespot.com/alex-stone/4005-34780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34781/", + "id": 34781, + "name": "Nefarius", + "site_detail_url": "https://comicvine.gamespot.com/nefarius/4005-34781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34802/", + "id": 34802, + "name": "Captain Italy", + "site_detail_url": "https://comicvine.gamespot.com/captain-italy/4005-34802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34829/", + "id": 34829, + "name": "Karl von Horstbadden", + "site_detail_url": "https://comicvine.gamespot.com/karl-von-horstbadden/4005-34829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34854/", + "id": 34854, + "name": "Azoth", + "site_detail_url": "https://comicvine.gamespot.com/azoth/4005-34854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34861/", + "id": 34861, + "name": "Geoffrey Ballard", + "site_detail_url": "https://comicvine.gamespot.com/geoffrey-ballard/4005-34861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34863/", + "id": 34863, + "name": "Jaguar Priest", + "site_detail_url": "https://comicvine.gamespot.com/jaguar-priest/4005-34863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34864/", + "id": 34864, + "name": "Agent Seven", + "site_detail_url": "https://comicvine.gamespot.com/agent-seven/4005-34864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34866/", + "id": 34866, + "name": "Kaecillius", + "site_detail_url": "https://comicvine.gamespot.com/kaecillius/4005-34866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34867/", + "id": 34867, + "name": "Wescott", + "site_detail_url": "https://comicvine.gamespot.com/wescott/4005-34867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34868/", + "id": 34868, + "name": "Mordecai Midas", + "site_detail_url": "https://comicvine.gamespot.com/mordecai-midas/4005-34868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34869/", + "id": 34869, + "name": "Mr. Starkey", + "site_detail_url": "https://comicvine.gamespot.com/mr-starkey/4005-34869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34870/", + "id": 34870, + "name": "Brahma Bill", + "site_detail_url": "https://comicvine.gamespot.com/brahma-bill/4005-34870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34902/", + "id": 34902, + "name": "Ranark the Ravager", + "site_detail_url": "https://comicvine.gamespot.com/ranark-the-ravager/4005-34902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34906/", + "id": 34906, + "name": "Brother Power", + "site_detail_url": "https://comicvine.gamespot.com/brother-power/4005-34906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34907/", + "id": 34907, + "name": "Striker Llewellyn", + "site_detail_url": "https://comicvine.gamespot.com/striker-llewellyn/4005-34907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34908/", + "id": 34908, + "name": "Sabia", + "site_detail_url": "https://comicvine.gamespot.com/sabia/4005-34908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34945/", + "id": 34945, + "name": "Valkin", + "site_detail_url": "https://comicvine.gamespot.com/valkin/4005-34945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34946/", + "id": 34946, + "name": "Ajak", + "site_detail_url": "https://comicvine.gamespot.com/ajak/4005-34946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34947/", + "id": 34947, + "name": "Druig", + "site_detail_url": "https://comicvine.gamespot.com/druig/4005-34947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34948/", + "id": 34948, + "name": "Dromedan", + "site_detail_url": "https://comicvine.gamespot.com/dromedan/4005-34948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34949/", + "id": 34949, + "name": "Tutinax", + "site_detail_url": "https://comicvine.gamespot.com/tutinax/4005-34949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34950/", + "id": 34950, + "name": "Queen Of The Kingdom Of The Cliffs", + "site_detail_url": "https://comicvine.gamespot.com/queen-of-the-kingdom-of-the-cliffs/4005-34950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34952/", + "id": 34952, + "name": "Princess Rashida", + "site_detail_url": "https://comicvine.gamespot.com/princess-rashida/4005-34952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34953/", + "id": 34953, + "name": "Urzula", + "site_detail_url": "https://comicvine.gamespot.com/urzula/4005-34953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34954/", + "id": 34954, + "name": "Vala Dia", + "site_detail_url": "https://comicvine.gamespot.com/vala-dia/4005-34954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34955/", + "id": 34955, + "name": "Aard", + "site_detail_url": "https://comicvine.gamespot.com/aard/4005-34955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34956/", + "id": 34956, + "name": "Tal Tarag", + "site_detail_url": "https://comicvine.gamespot.com/tal-tarag/4005-34956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34957/", + "id": 34957, + "name": "Ras Thavas", + "site_detail_url": "https://comicvine.gamespot.com/ras-thavas/4005-34957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34960/", + "id": 34960, + "name": "Magrat", + "site_detail_url": "https://comicvine.gamespot.com/magrat/4005-34960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34961/", + "id": 34961, + "name": "Snaykar", + "site_detail_url": "https://comicvine.gamespot.com/snaykar/4005-34961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34962/", + "id": 34962, + "name": "Kroda", + "site_detail_url": "https://comicvine.gamespot.com/kroda/4005-34962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34963/", + "id": 34963, + "name": "Bobby Sue Hollis", + "site_detail_url": "https://comicvine.gamespot.com/bobby-sue-hollis/4005-34963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34965/", + "id": 34965, + "name": "Comanche", + "site_detail_url": "https://comicvine.gamespot.com/comanche/4005-34965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34966/", + "id": 34966, + "name": "Donna-Lee Dover", + "site_detail_url": "https://comicvine.gamespot.com/donna-lee-dover/4005-34966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34967/", + "id": 34967, + "name": "Miles Olddan", + "site_detail_url": "https://comicvine.gamespot.com/miles-olddan/4005-34967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34968/", + "id": 34968, + "name": "Magnum", + "site_detail_url": "https://comicvine.gamespot.com/magnum/4005-34968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34969/", + "id": 34969, + "name": "Hellfire", + "site_detail_url": "https://comicvine.gamespot.com/hellfire/4005-34969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34971/", + "id": 34971, + "name": "Lorraine Jones", + "site_detail_url": "https://comicvine.gamespot.com/lorraine-jones/4005-34971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34972/", + "id": 34972, + "name": "Kestrel", + "site_detail_url": "https://comicvine.gamespot.com/kestrel/4005-34972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34973/", + "id": 34973, + "name": "Wraith (DeWolff)", + "site_detail_url": "https://comicvine.gamespot.com/wraith-dewolff/4005-34973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34974/", + "id": 34974, + "name": "Abe Klein", + "site_detail_url": "https://comicvine.gamespot.com/abe-klein/4005-34974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34975/", + "id": 34975, + "name": "David Dryer", + "site_detail_url": "https://comicvine.gamespot.com/david-dryer/4005-34975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34976/", + "id": 34976, + "name": "Marion Martinet", + "site_detail_url": "https://comicvine.gamespot.com/marion-martinet/4005-34976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34977/", + "id": 34977, + "name": "Hitman", + "site_detail_url": "https://comicvine.gamespot.com/hitman/4005-34977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-34978/", + "id": 34978, + "name": "Bart Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/bart-hamilton/4005-34978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35009/", + "id": 35009, + "name": "Richard Harper", + "site_detail_url": "https://comicvine.gamespot.com/richard-harper/4005-35009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35010/", + "id": 35010, + "name": "War-Yore", + "site_detail_url": "https://comicvine.gamespot.com/war-yore/4005-35010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35011/", + "id": 35011, + "name": "Ptolemy", + "site_detail_url": "https://comicvine.gamespot.com/ptolemy/4005-35011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35035/", + "id": 35035, + "name": "Falzon", + "site_detail_url": "https://comicvine.gamespot.com/falzon/4005-35035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35036/", + "id": 35036, + "name": "Mark Revel", + "site_detail_url": "https://comicvine.gamespot.com/mark-revel/4005-35036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35037/", + "id": 35037, + "name": "Alexandria Knox", + "site_detail_url": "https://comicvine.gamespot.com/alexandria-knox/4005-35037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35039/", + "id": 35039, + "name": "Host", + "site_detail_url": "https://comicvine.gamespot.com/host/4005-35039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35040/", + "id": 35040, + "name": "Louis Kort", + "site_detail_url": "https://comicvine.gamespot.com/louis-kort/4005-35040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35041/", + "id": 35041, + "name": "Trevor", + "site_detail_url": "https://comicvine.gamespot.com/trevor/4005-35041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35042/", + "id": 35042, + "name": "Chauncy", + "site_detail_url": "https://comicvine.gamespot.com/chauncy/4005-35042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35044/", + "id": 35044, + "name": "Bardylis", + "site_detail_url": "https://comicvine.gamespot.com/bardylis/4005-35044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35045/", + "id": 35045, + "name": "Night Flyer", + "site_detail_url": "https://comicvine.gamespot.com/night-flyer/4005-35045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35061/", + "id": 35061, + "name": "Wraithwitch", + "site_detail_url": "https://comicvine.gamespot.com/wraithwitch/4005-35061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35071/", + "id": 35071, + "name": "Professor Vasquez", + "site_detail_url": "https://comicvine.gamespot.com/professor-vasquez/4005-35071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35073/", + "id": 35073, + "name": "Joshua Plague", + "site_detail_url": "https://comicvine.gamespot.com/joshua-plague/4005-35073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35075/", + "id": 35075, + "name": "Velanna", + "site_detail_url": "https://comicvine.gamespot.com/velanna/4005-35075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35076/", + "id": 35076, + "name": "Victoria Von Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/victoria-von-frankenstein/4005-35076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35077/", + "id": 35077, + "name": "Berthilda", + "site_detail_url": "https://comicvine.gamespot.com/berthilda/4005-35077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35078/", + "id": 35078, + "name": "Costranno", + "site_detail_url": "https://comicvine.gamespot.com/costranno/4005-35078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35104/", + "id": 35104, + "name": "Evil Xavier", + "site_detail_url": "https://comicvine.gamespot.com/evil-xavier/4005-35104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35106/", + "id": 35106, + "name": "Adam-II", + "site_detail_url": "https://comicvine.gamespot.com/adam-ii/4005-35106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35107/", + "id": 35107, + "name": "Burgundy", + "site_detail_url": "https://comicvine.gamespot.com/burgundy/4005-35107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35109/", + "id": 35109, + "name": "Harry Daze", + "site_detail_url": "https://comicvine.gamespot.com/harry-daze/4005-35109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35110/", + "id": 35110, + "name": "Jason Dean", + "site_detail_url": "https://comicvine.gamespot.com/jason-dean/4005-35110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35111/", + "id": 35111, + "name": "Michael Lincoln", + "site_detail_url": "https://comicvine.gamespot.com/michael-lincoln/4005-35111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35112/", + "id": 35112, + "name": "Franklin Risk", + "site_detail_url": "https://comicvine.gamespot.com/franklin-risk/4005-35112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35113/", + "id": 35113, + "name": "Zirksu", + "site_detail_url": "https://comicvine.gamespot.com/zirksu/4005-35113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35114/", + "id": 35114, + "name": "Vince Rivers", + "site_detail_url": "https://comicvine.gamespot.com/vince-rivers/4005-35114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35116/", + "id": 35116, + "name": "Thraxon", + "site_detail_url": "https://comicvine.gamespot.com/thraxon/4005-35116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35117/", + "id": 35117, + "name": "Pursuer", + "site_detail_url": "https://comicvine.gamespot.com/pursuer/4005-35117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35118/", + "id": 35118, + "name": "Olivier", + "site_detail_url": "https://comicvine.gamespot.com/olivier/4005-35118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35119/", + "id": 35119, + "name": "Kropotkin The Great", + "site_detail_url": "https://comicvine.gamespot.com/kropotkin-the-great/4005-35119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35120/", + "id": 35120, + "name": "Stunt-Master", + "site_detail_url": "https://comicvine.gamespot.com/stunt-master/4005-35120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35122/", + "id": 35122, + "name": "Donna Maria Puentes", + "site_detail_url": "https://comicvine.gamespot.com/donna-maria-puentes/4005-35122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35123/", + "id": 35123, + "name": "Ralph Rider", + "site_detail_url": "https://comicvine.gamespot.com/ralph-rider/4005-35123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35146/", + "id": 35146, + "name": "Rev. Joon Moon Yuc", + "site_detail_url": "https://comicvine.gamespot.com/rev-joon-moon-yuc/4005-35146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35147/", + "id": 35147, + "name": "The Empathoid", + "site_detail_url": "https://comicvine.gamespot.com/the-empathoid/4005-35147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35149/", + "id": 35149, + "name": "Kur", + "site_detail_url": "https://comicvine.gamespot.com/kur/4005-35149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35150/", + "id": 35150, + "name": "Sayge", + "site_detail_url": "https://comicvine.gamespot.com/sayge/4005-35150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35151/", + "id": 35151, + "name": "Tony DiMartino", + "site_detail_url": "https://comicvine.gamespot.com/tony-dimartino/4005-35151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35152/", + "id": 35152, + "name": "Agent 17", + "site_detail_url": "https://comicvine.gamespot.com/agent-17/4005-35152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35153/", + "id": 35153, + "name": "Kni-Kon", + "site_detail_url": "https://comicvine.gamespot.com/kni-kon/4005-35153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35154/", + "id": 35154, + "name": "Jonathan Rich", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-rich/4005-35154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35155/", + "id": 35155, + "name": "Maxwell Glenn", + "site_detail_url": "https://comicvine.gamespot.com/maxwell-glenn/4005-35155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35209/", + "id": 35209, + "name": "Mr. Morgan", + "site_detail_url": "https://comicvine.gamespot.com/mr-morgan/4005-35209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35211/", + "id": 35211, + "name": "Lynn Andersen", + "site_detail_url": "https://comicvine.gamespot.com/lynn-andersen/4005-35211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35212/", + "id": 35212, + "name": "Sita Ogord", + "site_detail_url": "https://comicvine.gamespot.com/sita-ogord/4005-35212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35214/", + "id": 35214, + "name": "Harry Key", + "site_detail_url": "https://comicvine.gamespot.com/harry-key/4005-35214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35218/", + "id": 35218, + "name": "Daakor", + "site_detail_url": "https://comicvine.gamespot.com/daakor/4005-35218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35220/", + "id": 35220, + "name": "Charles L. Delazny", + "site_detail_url": "https://comicvine.gamespot.com/charles-l-delazny/4005-35220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35229/", + "id": 35229, + "name": "Amelia Trask", + "site_detail_url": "https://comicvine.gamespot.com/amelia-trask/4005-35229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35236/", + "id": 35236, + "name": "Hans Jorgenson", + "site_detail_url": "https://comicvine.gamespot.com/hans-jorgenson/4005-35236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35237/", + "id": 35237, + "name": "Jacob Bolt", + "site_detail_url": "https://comicvine.gamespot.com/jacob-bolt/4005-35237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35238/", + "id": 35238, + "name": "Megaman", + "site_detail_url": "https://comicvine.gamespot.com/megaman/4005-35238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35240/", + "id": 35240, + "name": "Maha Yogi", + "site_detail_url": "https://comicvine.gamespot.com/maha-yogi/4005-35240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35241/", + "id": 35241, + "name": "Mongu II", + "site_detail_url": "https://comicvine.gamespot.com/mongu-ii/4005-35241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35269/", + "id": 35269, + "name": "Fee-Lon", + "site_detail_url": "https://comicvine.gamespot.com/fee-lon/4005-35269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35271/", + "id": 35271, + "name": "Kwirkegard", + "site_detail_url": "https://comicvine.gamespot.com/kwirkegard/4005-35271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35272/", + "id": 35272, + "name": "Destructor", + "site_detail_url": "https://comicvine.gamespot.com/destructor/4005-35272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35273/", + "id": 35273, + "name": "Shaka Kharn", + "site_detail_url": "https://comicvine.gamespot.com/shaka-kharn/4005-35273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35274/", + "id": 35274, + "name": "Cory Payne", + "site_detail_url": "https://comicvine.gamespot.com/cory-payne/4005-35274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35276/", + "id": 35276, + "name": "Hawk-God", + "site_detail_url": "https://comicvine.gamespot.com/hawk-god/4005-35276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35277/", + "id": 35277, + "name": "Brutag", + "site_detail_url": "https://comicvine.gamespot.com/brutag/4005-35277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35278/", + "id": 35278, + "name": "Mother of Pearl", + "site_detail_url": "https://comicvine.gamespot.com/mother-of-pearl/4005-35278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35280/", + "id": 35280, + "name": "Aldo Moomjay", + "site_detail_url": "https://comicvine.gamespot.com/aldo-moomjay/4005-35280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35281/", + "id": 35281, + "name": "The Foe", + "site_detail_url": "https://comicvine.gamespot.com/the-foe/4005-35281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35282/", + "id": 35282, + "name": "Man-Fish", + "site_detail_url": "https://comicvine.gamespot.com/man-fish/4005-35282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35283/", + "id": 35283, + "name": "The Swine", + "site_detail_url": "https://comicvine.gamespot.com/the-swine/4005-35283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35323/", + "id": 35323, + "name": "The Space Turnip", + "site_detail_url": "https://comicvine.gamespot.com/the-space-turnip/4005-35323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35325/", + "id": 35325, + "name": "Tri-Animan", + "site_detail_url": "https://comicvine.gamespot.com/tri-animan/4005-35325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35326/", + "id": 35326, + "name": "Sporr", + "site_detail_url": "https://comicvine.gamespot.com/sporr/4005-35326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35327/", + "id": 35327, + "name": "Baroness S'Bak", + "site_detail_url": "https://comicvine.gamespot.com/baroness-sbak/4005-35327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35328/", + "id": 35328, + "name": "Major David Adamson", + "site_detail_url": "https://comicvine.gamespot.com/major-david-adamson/4005-35328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35329/", + "id": 35329, + "name": "Thunderfist", + "site_detail_url": "https://comicvine.gamespot.com/thunderfist/4005-35329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35330/", + "id": 35330, + "name": "Captain Wings", + "site_detail_url": "https://comicvine.gamespot.com/captain-wings/4005-35330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35331/", + "id": 35331, + "name": "Tommy Lightning", + "site_detail_url": "https://comicvine.gamespot.com/tommy-lightning/4005-35331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35332/", + "id": 35332, + "name": "Sharman DiVono", + "site_detail_url": "https://comicvine.gamespot.com/sharman-divono/4005-35332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35333/", + "id": 35333, + "name": "The Six-Million Year Man", + "site_detail_url": "https://comicvine.gamespot.com/the-six-million-year-man/4005-35333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35352/", + "id": 35352, + "name": "Richard Gorman", + "site_detail_url": "https://comicvine.gamespot.com/richard-gorman/4005-35352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35355/", + "id": 35355, + "name": "Dr. Michael Barnett", + "site_detail_url": "https://comicvine.gamespot.com/dr-michael-barnett/4005-35355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35357/", + "id": 35357, + "name": "Otto Vermis", + "site_detail_url": "https://comicvine.gamespot.com/otto-vermis/4005-35357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35359/", + "id": 35359, + "name": "Zartros", + "site_detail_url": "https://comicvine.gamespot.com/zartros/4005-35359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35360/", + "id": 35360, + "name": "Bernard Kloss", + "site_detail_url": "https://comicvine.gamespot.com/bernard-kloss/4005-35360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35361/", + "id": 35361, + "name": "Charn", + "site_detail_url": "https://comicvine.gamespot.com/charn/4005-35361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35362/", + "id": 35362, + "name": "Seesha", + "site_detail_url": "https://comicvine.gamespot.com/seesha/4005-35362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35363/", + "id": 35363, + "name": "Ember", + "site_detail_url": "https://comicvine.gamespot.com/ember/4005-35363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35364/", + "id": 35364, + "name": "Saxtur", + "site_detail_url": "https://comicvine.gamespot.com/saxtur/4005-35364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35366/", + "id": 35366, + "name": "Senator Hawk", + "site_detail_url": "https://comicvine.gamespot.com/senator-hawk/4005-35366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35368/", + "id": 35368, + "name": "Prince Rey", + "site_detail_url": "https://comicvine.gamespot.com/prince-rey/4005-35368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35369/", + "id": 35369, + "name": "Metalloid", + "site_detail_url": "https://comicvine.gamespot.com/metalloid/4005-35369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35370/", + "id": 35370, + "name": "The Brute", + "site_detail_url": "https://comicvine.gamespot.com/the-brute/4005-35370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35371/", + "id": 35371, + "name": "Cousin Betsy The Plant Lady", + "site_detail_url": "https://comicvine.gamespot.com/cousin-betsy-the-plant-lady/4005-35371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35372/", + "id": 35372, + "name": "Bill Rotsler", + "site_detail_url": "https://comicvine.gamespot.com/bill-rotsler/4005-35372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35373/", + "id": 35373, + "name": "Aluna", + "site_detail_url": "https://comicvine.gamespot.com/aluna/4005-35373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35374/", + "id": 35374, + "name": "Warlord Kaa", + "site_detail_url": "https://comicvine.gamespot.com/warlord-kaa/4005-35374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35397/", + "id": 35397, + "name": "Earth-Shaker", + "site_detail_url": "https://comicvine.gamespot.com/earth-shaker/4005-35397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35399/", + "id": 35399, + "name": "Beth Bleckley", + "site_detail_url": "https://comicvine.gamespot.com/beth-bleckley/4005-35399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35400/", + "id": 35400, + "name": "Josie", + "site_detail_url": "https://comicvine.gamespot.com/josie/4005-35400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35404/", + "id": 35404, + "name": "Agron", + "site_detail_url": "https://comicvine.gamespot.com/agron/4005-35404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35406/", + "id": 35406, + "name": "Princess Zanda", + "site_detail_url": "https://comicvine.gamespot.com/princess-zanda/4005-35406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35427/", + "id": 35427, + "name": "Fredzilla", + "site_detail_url": "https://comicvine.gamespot.com/fredzilla/4005-35427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35432/", + "id": 35432, + "name": "Admiral Salo", + "site_detail_url": "https://comicvine.gamespot.com/admiral-salo/4005-35432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35434/", + "id": 35434, + "name": "Paul Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/paul-cassidy/4005-35434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35436/", + "id": 35436, + "name": "Teju", + "site_detail_url": "https://comicvine.gamespot.com/teju/4005-35436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35439/", + "id": 35439, + "name": "Pan Dan Chee", + "site_detail_url": "https://comicvine.gamespot.com/pan-dan-chee/4005-35439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35440/", + "id": 35440, + "name": "Ho Rak Kim", + "site_detail_url": "https://comicvine.gamespot.com/ho-rak-kim/4005-35440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35441/", + "id": 35441, + "name": "Lum Tar O", + "site_detail_url": "https://comicvine.gamespot.com/lum-tar-o/4005-35441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35442/", + "id": 35442, + "name": "Hor Kai Lan", + "site_detail_url": "https://comicvine.gamespot.com/hor-kai-lan/4005-35442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35443/", + "id": 35443, + "name": "S-Lara", + "site_detail_url": "https://comicvine.gamespot.com/s-lara/4005-35443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35449/", + "id": 35449, + "name": "Abe Beame", + "site_detail_url": "https://comicvine.gamespot.com/abe-beame/4005-35449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35451/", + "id": 35451, + "name": "Proffit", + "site_detail_url": "https://comicvine.gamespot.com/proffit/4005-35451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35453/", + "id": 35453, + "name": "Mind-Star", + "site_detail_url": "https://comicvine.gamespot.com/mind-star/4005-35453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35455/", + "id": 35455, + "name": "Madame Renour", + "site_detail_url": "https://comicvine.gamespot.com/madame-renour/4005-35455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35456/", + "id": 35456, + "name": "Kirk Marston", + "site_detail_url": "https://comicvine.gamespot.com/kirk-marston/4005-35456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35457/", + "id": 35457, + "name": "Sheesha", + "site_detail_url": "https://comicvine.gamespot.com/sheesha/4005-35457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35458/", + "id": 35458, + "name": "Sharka", + "site_detail_url": "https://comicvine.gamespot.com/sharka/4005-35458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35460/", + "id": 35460, + "name": "Raknor", + "site_detail_url": "https://comicvine.gamespot.com/raknor/4005-35460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35462/", + "id": 35462, + "name": "Chaka", + "site_detail_url": "https://comicvine.gamespot.com/chaka/4005-35462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35463/", + "id": 35463, + "name": "Golden Tigers", + "site_detail_url": "https://comicvine.gamespot.com/golden-tigers/4005-35463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35464/", + "id": 35464, + "name": "Blue Bullet", + "site_detail_url": "https://comicvine.gamespot.com/blue-bullet/4005-35464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35465/", + "id": 35465, + "name": "Warkon", + "site_detail_url": "https://comicvine.gamespot.com/warkon/4005-35465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35466/", + "id": 35466, + "name": "Shribe", + "site_detail_url": "https://comicvine.gamespot.com/shribe/4005-35466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35467/", + "id": 35467, + "name": "Commissar", + "site_detail_url": "https://comicvine.gamespot.com/commissar/4005-35467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35489/", + "id": 35489, + "name": "Three Who Are All", + "site_detail_url": "https://comicvine.gamespot.com/three-who-are-all/4005-35489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35490/", + "id": 35490, + "name": "Fire Eyes", + "site_detail_url": "https://comicvine.gamespot.com/fire-eyes/4005-35490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35491/", + "id": 35491, + "name": "Marr Gar", + "site_detail_url": "https://comicvine.gamespot.com/marr-gar/4005-35491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35492/", + "id": 35492, + "name": "Lamilm Gor", + "site_detail_url": "https://comicvine.gamespot.com/lamilm-gor/4005-35492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35493/", + "id": 35493, + "name": "Ancient Traveller", + "site_detail_url": "https://comicvine.gamespot.com/ancient-traveller/4005-35493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35494/", + "id": 35494, + "name": "Constable Trueheart", + "site_detail_url": "https://comicvine.gamespot.com/constable-trueheart/4005-35494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35495/", + "id": 35495, + "name": "Trogg", + "site_detail_url": "https://comicvine.gamespot.com/trogg/4005-35495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35496/", + "id": 35496, + "name": "El Gato", + "site_detail_url": "https://comicvine.gamespot.com/el-gato/4005-35496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35499/", + "id": 35499, + "name": "Topographical Man", + "site_detail_url": "https://comicvine.gamespot.com/topographical-man/4005-35499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35500/", + "id": 35500, + "name": "Iron Mask", + "site_detail_url": "https://comicvine.gamespot.com/iron-mask/4005-35500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35501/", + "id": 35501, + "name": "Crypto-Man", + "site_detail_url": "https://comicvine.gamespot.com/crypto-man/4005-35501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35504/", + "id": 35504, + "name": "Domo", + "site_detail_url": "https://comicvine.gamespot.com/domo/4005-35504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35506/", + "id": 35506, + "name": "Mortag", + "site_detail_url": "https://comicvine.gamespot.com/mortag/4005-35506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35535/", + "id": 35535, + "name": "Ebon Samurai", + "site_detail_url": "https://comicvine.gamespot.com/ebon-samurai/4005-35535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35538/", + "id": 35538, + "name": "Tral", + "site_detail_url": "https://comicvine.gamespot.com/tral/4005-35538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35539/", + "id": 35539, + "name": "Prince Rudolfo", + "site_detail_url": "https://comicvine.gamespot.com/prince-rudolfo/4005-35539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35541/", + "id": 35541, + "name": "Juno", + "site_detail_url": "https://comicvine.gamespot.com/juno/4005-35541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35542/", + "id": 35542, + "name": "Layana Sweetwater", + "site_detail_url": "https://comicvine.gamespot.com/layana-sweetwater/4005-35542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35543/", + "id": 35543, + "name": "Antonitus", + "site_detail_url": "https://comicvine.gamespot.com/antonitus/4005-35543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35545/", + "id": 35545, + "name": "Warhead", + "site_detail_url": "https://comicvine.gamespot.com/warhead/4005-35545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35546/", + "id": 35546, + "name": "Ursus", + "site_detail_url": "https://comicvine.gamespot.com/ursus/4005-35546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35547/", + "id": 35547, + "name": "Monark Starstalker", + "site_detail_url": "https://comicvine.gamespot.com/monark-starstalker/4005-35547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35548/", + "id": 35548, + "name": "Robin Goodfriend", + "site_detail_url": "https://comicvine.gamespot.com/robin-goodfriend/4005-35548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35549/", + "id": 35549, + "name": "Brigid Siebold", + "site_detail_url": "https://comicvine.gamespot.com/brigid-siebold/4005-35549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35552/", + "id": 35552, + "name": "Scrounger", + "site_detail_url": "https://comicvine.gamespot.com/scrounger/4005-35552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35553/", + "id": 35553, + "name": "Bill Hao", + "site_detail_url": "https://comicvine.gamespot.com/bill-hao/4005-35553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35554/", + "id": 35554, + "name": "Skire", + "site_detail_url": "https://comicvine.gamespot.com/skire/4005-35554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35555/", + "id": 35555, + "name": "Tanuta", + "site_detail_url": "https://comicvine.gamespot.com/tanuta/4005-35555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35556/", + "id": 35556, + "name": "Gorr", + "site_detail_url": "https://comicvine.gamespot.com/gorr/4005-35556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35557/", + "id": 35557, + "name": "Man-Tiger", + "site_detail_url": "https://comicvine.gamespot.com/man-tiger/4005-35557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35594/", + "id": 35594, + "name": "Raymond Coker", + "site_detail_url": "https://comicvine.gamespot.com/raymond-coker/4005-35594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35595/", + "id": 35595, + "name": "Harry Gotham", + "site_detail_url": "https://comicvine.gamespot.com/harry-gotham/4005-35595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35596/", + "id": 35596, + "name": "James-Michael Starling", + "site_detail_url": "https://comicvine.gamespot.com/james-michael-starling/4005-35596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35597/", + "id": 35597, + "name": "Dian Wilkins", + "site_detail_url": "https://comicvine.gamespot.com/dian-wilkins/4005-35597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35598/", + "id": 35598, + "name": "Gramps", + "site_detail_url": "https://comicvine.gamespot.com/gramps/4005-35598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35599/", + "id": 35599, + "name": "Nick Delbello", + "site_detail_url": "https://comicvine.gamespot.com/nick-delbello/4005-35599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35600/", + "id": 35600, + "name": "Teresa Mendez", + "site_detail_url": "https://comicvine.gamespot.com/teresa-mendez/4005-35600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35601/", + "id": 35601, + "name": "John Nedley", + "site_detail_url": "https://comicvine.gamespot.com/john-nedley/4005-35601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35603/", + "id": 35603, + "name": "Rhomann Dey", + "site_detail_url": "https://comicvine.gamespot.com/rhomann-dey/4005-35603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35604/", + "id": 35604, + "name": "Clara Cooper", + "site_detail_url": "https://comicvine.gamespot.com/clara-cooper/4005-35604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35605/", + "id": 35605, + "name": "Khumbala Bey", + "site_detail_url": "https://comicvine.gamespot.com/khumbala-bey/4005-35605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35607/", + "id": 35607, + "name": "Arthur Woodman", + "site_detail_url": "https://comicvine.gamespot.com/arthur-woodman/4005-35607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35621/", + "id": 35621, + "name": "Leap-Frog", + "site_detail_url": "https://comicvine.gamespot.com/leap-frog/4005-35621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35626/", + "id": 35626, + "name": "Tom Vocson", + "site_detail_url": "https://comicvine.gamespot.com/tom-vocson/4005-35626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35630/", + "id": 35630, + "name": "Conquer-Lord", + "site_detail_url": "https://comicvine.gamespot.com/conquer-lord/4005-35630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35631/", + "id": 35631, + "name": "Karanada", + "site_detail_url": "https://comicvine.gamespot.com/karanada/4005-35631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35637/", + "id": 35637, + "name": "Cardinal", + "site_detail_url": "https://comicvine.gamespot.com/cardinal/4005-35637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35638/", + "id": 35638, + "name": "Mordillo", + "site_detail_url": "https://comicvine.gamespot.com/mordillo/4005-35638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35639/", + "id": 35639, + "name": "Yuri Petrovich", + "site_detail_url": "https://comicvine.gamespot.com/yuri-petrovich/4005-35639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35656/", + "id": 35656, + "name": "Kronak", + "site_detail_url": "https://comicvine.gamespot.com/kronak/4005-35656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35657/", + "id": 35657, + "name": "Shamu-Shan", + "site_detail_url": "https://comicvine.gamespot.com/shamu-shan/4005-35657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35659/", + "id": 35659, + "name": "Grandall", + "site_detail_url": "https://comicvine.gamespot.com/grandall/4005-35659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35660/", + "id": 35660, + "name": "Naia", + "site_detail_url": "https://comicvine.gamespot.com/naia/4005-35660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35662/", + "id": 35662, + "name": "Sophus", + "site_detail_url": "https://comicvine.gamespot.com/sophus/4005-35662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35663/", + "id": 35663, + "name": "Anaximander", + "site_detail_url": "https://comicvine.gamespot.com/anaximander/4005-35663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35664/", + "id": 35664, + "name": "Carol Harding", + "site_detail_url": "https://comicvine.gamespot.com/carol-harding/4005-35664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35665/", + "id": 35665, + "name": "Mason Harding", + "site_detail_url": "https://comicvine.gamespot.com/mason-harding/4005-35665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35667/", + "id": 35667, + "name": "General Heshin", + "site_detail_url": "https://comicvine.gamespot.com/general-heshin/4005-35667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35691/", + "id": 35691, + "name": "Saripha Thames", + "site_detail_url": "https://comicvine.gamespot.com/saripha-thames/4005-35691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35692/", + "id": 35692, + "name": "Brian Anderson", + "site_detail_url": "https://comicvine.gamespot.com/brian-anderson/4005-35692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35693/", + "id": 35693, + "name": "Amelia Sefton", + "site_detail_url": "https://comicvine.gamespot.com/amelia-sefton/4005-35693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35695/", + "id": 35695, + "name": "Midnight", + "site_detail_url": "https://comicvine.gamespot.com/midnight/4005-35695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35697/", + "id": 35697, + "name": "Samuels", + "site_detail_url": "https://comicvine.gamespot.com/samuels/4005-35697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35699/", + "id": 35699, + "name": "Tandy Snow", + "site_detail_url": "https://comicvine.gamespot.com/tandy-snow/4005-35699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35700/", + "id": 35700, + "name": "Kwang-Che Yu", + "site_detail_url": "https://comicvine.gamespot.com/kwang-che-yu/4005-35700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35701/", + "id": 35701, + "name": "Amra the Lion", + "site_detail_url": "https://comicvine.gamespot.com/amra-the-lion/4005-35701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35702/", + "id": 35702, + "name": "Shulo", + "site_detail_url": "https://comicvine.gamespot.com/shulo/4005-35702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35705/", + "id": 35705, + "name": "Old Skull", + "site_detail_url": "https://comicvine.gamespot.com/old-skull/4005-35705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35706/", + "id": 35706, + "name": "Brother Axe", + "site_detail_url": "https://comicvine.gamespot.com/brother-axe/4005-35706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35723/", + "id": 35723, + "name": "Jessalla", + "site_detail_url": "https://comicvine.gamespot.com/jessalla/4005-35723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35726/", + "id": 35726, + "name": "Thin Man", + "site_detail_url": "https://comicvine.gamespot.com/thin-man/4005-35726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35727/", + "id": 35727, + "name": "Jack Frost", + "site_detail_url": "https://comicvine.gamespot.com/jack-frost/4005-35727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35729/", + "id": 35729, + "name": "Lady Janice", + "site_detail_url": "https://comicvine.gamespot.com/lady-janice/4005-35729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35731/", + "id": 35731, + "name": "Uri Geller", + "site_detail_url": "https://comicvine.gamespot.com/uri-geller/4005-35731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35732/", + "id": 35732, + "name": "Simon Ryker", + "site_detail_url": "https://comicvine.gamespot.com/simon-ryker/4005-35732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35735/", + "id": 35735, + "name": "High Overlord", + "site_detail_url": "https://comicvine.gamespot.com/high-overlord/4005-35735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35737/", + "id": 35737, + "name": "Deathraven", + "site_detail_url": "https://comicvine.gamespot.com/deathraven/4005-35737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35778/", + "id": 35778, + "name": "Mama Alpha", + "site_detail_url": "https://comicvine.gamespot.com/mama-alpha/4005-35778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35779/", + "id": 35779, + "name": "Possessor", + "site_detail_url": "https://comicvine.gamespot.com/possessor/4005-35779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35781/", + "id": 35781, + "name": "Cotton Mather", + "site_detail_url": "https://comicvine.gamespot.com/cotton-mather/4005-35781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35782/", + "id": 35782, + "name": "Shauran", + "site_detail_url": "https://comicvine.gamespot.com/shauran/4005-35782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35785/", + "id": 35785, + "name": "Dhasha Khan", + "site_detail_url": "https://comicvine.gamespot.com/dhasha-khan/4005-35785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35786/", + "id": 35786, + "name": "Amos Crawley", + "site_detail_url": "https://comicvine.gamespot.com/amos-crawley/4005-35786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35787/", + "id": 35787, + "name": "Emerson Bale", + "site_detail_url": "https://comicvine.gamespot.com/emerson-bale/4005-35787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35788/", + "id": 35788, + "name": "Leroy Tallon", + "site_detail_url": "https://comicvine.gamespot.com/leroy-tallon/4005-35788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35820/", + "id": 35820, + "name": "Rebecca Winthrop", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-winthrop/4005-35820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35822/", + "id": 35822, + "name": "Nyami", + "site_detail_url": "https://comicvine.gamespot.com/nyami/4005-35822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35823/", + "id": 35823, + "name": "Old Billy", + "site_detail_url": "https://comicvine.gamespot.com/old-billy/4005-35823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35849/", + "id": 35849, + "name": "The Dancer", + "site_detail_url": "https://comicvine.gamespot.com/the-dancer/4005-35849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35850/", + "id": 35850, + "name": "The Mangler", + "site_detail_url": "https://comicvine.gamespot.com/the-mangler/4005-35850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35851/", + "id": 35851, + "name": "The Brain", + "site_detail_url": "https://comicvine.gamespot.com/the-brain/4005-35851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35862/", + "id": 35862, + "name": "Darkstrider", + "site_detail_url": "https://comicvine.gamespot.com/darkstrider/4005-35862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35864/", + "id": 35864, + "name": "Michael Kramer", + "site_detail_url": "https://comicvine.gamespot.com/michael-kramer/4005-35864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35866/", + "id": 35866, + "name": "Brother Zed", + "site_detail_url": "https://comicvine.gamespot.com/brother-zed/4005-35866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35867/", + "id": 35867, + "name": "Huntsman of Zeus", + "site_detail_url": "https://comicvine.gamespot.com/huntsman-of-zeus/4005-35867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35868/", + "id": 35868, + "name": "William Taurey", + "site_detail_url": "https://comicvine.gamespot.com/william-taurey/4005-35868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35869/", + "id": 35869, + "name": "Mindy Bolton", + "site_detail_url": "https://comicvine.gamespot.com/mindy-bolton/4005-35869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35890/", + "id": 35890, + "name": "Roderick Tate", + "site_detail_url": "https://comicvine.gamespot.com/roderick-tate/4005-35890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35893/", + "id": 35893, + "name": "Matador", + "site_detail_url": "https://comicvine.gamespot.com/matador/4005-35893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35899/", + "id": 35899, + "name": "Carmilla Frost", + "site_detail_url": "https://comicvine.gamespot.com/carmilla-frost/4005-35899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35900/", + "id": 35900, + "name": "Grok", + "site_detail_url": "https://comicvine.gamespot.com/grok/4005-35900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35933/", + "id": 35933, + "name": "Commander Troga", + "site_detail_url": "https://comicvine.gamespot.com/commander-troga/4005-35933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35943/", + "id": 35943, + "name": "Gideon Blaine", + "site_detail_url": "https://comicvine.gamespot.com/gideon-blaine/4005-35943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35944/", + "id": 35944, + "name": "Belaric Marcosa", + "site_detail_url": "https://comicvine.gamespot.com/belaric-marcosa/4005-35944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35945/", + "id": 35945, + "name": "Dr. Jennings", + "site_detail_url": "https://comicvine.gamespot.com/dr-jennings/4005-35945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35947/", + "id": 35947, + "name": "Quentin Chase", + "site_detail_url": "https://comicvine.gamespot.com/quentin-chase/4005-35947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35948/", + "id": 35948, + "name": "Cockroach Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/cockroach-hamilton/4005-35948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35950/", + "id": 35950, + "name": "Dansker", + "site_detail_url": "https://comicvine.gamespot.com/dansker/4005-35950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35951/", + "id": 35951, + "name": "Black Lama", + "site_detail_url": "https://comicvine.gamespot.com/black-lama/4005-35951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35952/", + "id": 35952, + "name": "Baron Rockler", + "site_detail_url": "https://comicvine.gamespot.com/baron-rockler/4005-35952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35953/", + "id": 35953, + "name": "Baroness Rockler", + "site_detail_url": "https://comicvine.gamespot.com/baroness-rockler/4005-35953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35954/", + "id": 35954, + "name": "Junior Juniper", + "site_detail_url": "https://comicvine.gamespot.com/junior-juniper/4005-35954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35956/", + "id": 35956, + "name": "Crane Mother", + "site_detail_url": "https://comicvine.gamespot.com/crane-mother/4005-35956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35957/", + "id": 35957, + "name": "Gamal Hassan", + "site_detail_url": "https://comicvine.gamespot.com/gamal-hassan/4005-35957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35959/", + "id": 35959, + "name": "Simon Stroud", + "site_detail_url": "https://comicvine.gamespot.com/simon-stroud/4005-35959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35960/", + "id": 35960, + "name": "Sky-Walker", + "site_detail_url": "https://comicvine.gamespot.com/sky-walker/4005-35960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35974/", + "id": 35974, + "name": "Richard Fenster", + "site_detail_url": "https://comicvine.gamespot.com/richard-fenster/4005-35974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35977/", + "id": 35977, + "name": "Bat-Thing From The Tower In The High Mist", + "site_detail_url": "https://comicvine.gamespot.com/bat-thing-from-the-tower-in-the-high-mist/4005-35977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35979/", + "id": 35979, + "name": "Peggy Carter", + "site_detail_url": "https://comicvine.gamespot.com/peggy-carter/4005-35979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-35980/", + "id": 35980, + "name": "Chandra", + "site_detail_url": "https://comicvine.gamespot.com/chandra/4005-35980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36013/", + "id": 36013, + "name": "Dr. Dorcas", + "site_detail_url": "https://comicvine.gamespot.com/dr-dorcas/4005-36013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36014/", + "id": 36014, + "name": "Saru-San", + "site_detail_url": "https://comicvine.gamespot.com/saru-san/4005-36014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36018/", + "id": 36018, + "name": "Danielle Nicolle", + "site_detail_url": "https://comicvine.gamespot.com/danielle-nicolle/4005-36018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36019/", + "id": 36019, + "name": "Roland Duhl", + "site_detail_url": "https://comicvine.gamespot.com/roland-duhl/4005-36019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36020/", + "id": 36020, + "name": "Donar", + "site_detail_url": "https://comicvine.gamespot.com/donar/4005-36020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36021/", + "id": 36021, + "name": "Froh", + "site_detail_url": "https://comicvine.gamespot.com/froh/4005-36021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36023/", + "id": 36023, + "name": "Centaurius", + "site_detail_url": "https://comicvine.gamespot.com/centaurius/4005-36023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36025/", + "id": 36025, + "name": "Loch Fear Monster", + "site_detail_url": "https://comicvine.gamespot.com/loch-fear-monster/4005-36025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36026/", + "id": 36026, + "name": "Black Shadow/White Shadow", + "site_detail_url": "https://comicvine.gamespot.com/black-shadowwhite-shadow/4005-36026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36027/", + "id": 36027, + "name": "Astarta", + "site_detail_url": "https://comicvine.gamespot.com/astarta/4005-36027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36028/", + "id": 36028, + "name": "Blackcloak", + "site_detail_url": "https://comicvine.gamespot.com/blackcloak/4005-36028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36029/", + "id": 36029, + "name": "SeGa", + "site_detail_url": "https://comicvine.gamespot.com/sega/4005-36029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36053/", + "id": 36053, + "name": "Mortak", + "site_detail_url": "https://comicvine.gamespot.com/mortak/4005-36053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36055/", + "id": 36055, + "name": "Kantu", + "site_detail_url": "https://comicvine.gamespot.com/kantu/4005-36055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36057/", + "id": 36057, + "name": "Ralph Caccone", + "site_detail_url": "https://comicvine.gamespot.com/ralph-caccone/4005-36057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36058/", + "id": 36058, + "name": "Eric Prawn", + "site_detail_url": "https://comicvine.gamespot.com/eric-prawn/4005-36058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36059/", + "id": 36059, + "name": "Veronica Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/veronica-frankenstein/4005-36059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36060/", + "id": 36060, + "name": "Werner Schmidt", + "site_detail_url": "https://comicvine.gamespot.com/werner-schmidt/4005-36060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36061/", + "id": 36061, + "name": "Indigo", + "site_detail_url": "https://comicvine.gamespot.com/indigo/4005-36061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36071/", + "id": 36071, + "name": "Lee Wing", + "site_detail_url": "https://comicvine.gamespot.com/lee-wing/4005-36071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36081/", + "id": 36081, + "name": "Ellen Brandt", + "site_detail_url": "https://comicvine.gamespot.com/ellen-brandt/4005-36081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36085/", + "id": 36085, + "name": "Kor-Konn", + "site_detail_url": "https://comicvine.gamespot.com/kor-konn/4005-36085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36086/", + "id": 36086, + "name": "Rafael Scarfe", + "site_detail_url": "https://comicvine.gamespot.com/rafael-scarfe/4005-36086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36087/", + "id": 36087, + "name": "Scavenger", + "site_detail_url": "https://comicvine.gamespot.com/scavenger/4005-36087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36088/", + "id": 36088, + "name": "Carol Selby", + "site_detail_url": "https://comicvine.gamespot.com/carol-selby/4005-36088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36089/", + "id": 36089, + "name": "Helleyes", + "site_detail_url": "https://comicvine.gamespot.com/helleyes/4005-36089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36090/", + "id": 36090, + "name": "Andrones", + "site_detail_url": "https://comicvine.gamespot.com/andrones/4005-36090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36092/", + "id": 36092, + "name": "Clawfoot", + "site_detail_url": "https://comicvine.gamespot.com/clawfoot/4005-36092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36093/", + "id": 36093, + "name": "Slicer", + "site_detail_url": "https://comicvine.gamespot.com/slicer/4005-36093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36094/", + "id": 36094, + "name": "Steel-Skull", + "site_detail_url": "https://comicvine.gamespot.com/steel-skull/4005-36094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36095/", + "id": 36095, + "name": "Alchemoid", + "site_detail_url": "https://comicvine.gamespot.com/alchemoid/4005-36095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36116/", + "id": 36116, + "name": "Jeremiah", + "site_detail_url": "https://comicvine.gamespot.com/jeremiah/4005-36116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36118/", + "id": 36118, + "name": "The Robin Hood Raider", + "site_detail_url": "https://comicvine.gamespot.com/the-robin-hood-raider/4005-36118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36124/", + "id": 36124, + "name": "Eelar", + "site_detail_url": "https://comicvine.gamespot.com/eelar/4005-36124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36125/", + "id": 36125, + "name": "Berserker", + "site_detail_url": "https://comicvine.gamespot.com/berserker/4005-36125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36127/", + "id": 36127, + "name": "J. C. Pennysworth", + "site_detail_url": "https://comicvine.gamespot.com/j-c-pennysworth/4005-36127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36129/", + "id": 36129, + "name": "Prizzi", + "site_detail_url": "https://comicvine.gamespot.com/prizzi/4005-36129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36162/", + "id": 36162, + "name": "Shaya", + "site_detail_url": "https://comicvine.gamespot.com/shaya/4005-36162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36163/", + "id": 36163, + "name": "Ushas", + "site_detail_url": "https://comicvine.gamespot.com/ushas/4005-36163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36164/", + "id": 36164, + "name": "Francesca Trask", + "site_detail_url": "https://comicvine.gamespot.com/francesca-trask/4005-36164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36165/", + "id": 36165, + "name": "Astrid Josefson", + "site_detail_url": "https://comicvine.gamespot.com/astrid-josefson/4005-36165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36166/", + "id": 36166, + "name": "Olivia Selby", + "site_detail_url": "https://comicvine.gamespot.com/olivia-selby/4005-36166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36167/", + "id": 36167, + "name": "Beloso", + "site_detail_url": "https://comicvine.gamespot.com/beloso/4005-36167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36169/", + "id": 36169, + "name": "Harold Holliman", + "site_detail_url": "https://comicvine.gamespot.com/harold-holliman/4005-36169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36170/", + "id": 36170, + "name": "Unos", + "site_detail_url": "https://comicvine.gamespot.com/unos/4005-36170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36191/", + "id": 36191, + "name": "Shadow-Stalker", + "site_detail_url": "https://comicvine.gamespot.com/shadow-stalker/4005-36191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36192/", + "id": 36192, + "name": "King Cadaver", + "site_detail_url": "https://comicvine.gamespot.com/king-cadaver/4005-36192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36194/", + "id": 36194, + "name": "The Grind", + "site_detail_url": "https://comicvine.gamespot.com/the-grind/4005-36194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36203/", + "id": 36203, + "name": "Zandor", + "site_detail_url": "https://comicvine.gamespot.com/zandor/4005-36203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36205/", + "id": 36205, + "name": "Jerry Morgan", + "site_detail_url": "https://comicvine.gamespot.com/jerry-morgan/4005-36205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36207/", + "id": 36207, + "name": "Mindworm", + "site_detail_url": "https://comicvine.gamespot.com/mindworm/4005-36207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36209/", + "id": 36209, + "name": "Sacrificer", + "site_detail_url": "https://comicvine.gamespot.com/sacrificer/4005-36209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36210/", + "id": 36210, + "name": "Atalon", + "site_detail_url": "https://comicvine.gamespot.com/atalon/4005-36210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36211/", + "id": 36211, + "name": "Death Breeders", + "site_detail_url": "https://comicvine.gamespot.com/death-breeders/4005-36211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36230/", + "id": 36230, + "name": "DePrayve", + "site_detail_url": "https://comicvine.gamespot.com/deprayve/4005-36230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36235/", + "id": 36235, + "name": "Maura Spinner", + "site_detail_url": "https://comicvine.gamespot.com/maura-spinner/4005-36235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36238/", + "id": 36238, + "name": "Android", + "site_detail_url": "https://comicvine.gamespot.com/android/4005-36238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36240/", + "id": 36240, + "name": "Thera", + "site_detail_url": "https://comicvine.gamespot.com/thera/4005-36240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36242/", + "id": 36242, + "name": "Doctor Synne", + "site_detail_url": "https://comicvine.gamespot.com/doctor-synne/4005-36242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36272/", + "id": 36272, + "name": "Troublemaker", + "site_detail_url": "https://comicvine.gamespot.com/troublemaker/4005-36272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36282/", + "id": 36282, + "name": "Zofia", + "site_detail_url": "https://comicvine.gamespot.com/zofia/4005-36282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36283/", + "id": 36283, + "name": "Quincy Harker", + "site_detail_url": "https://comicvine.gamespot.com/quincy-harker/4005-36283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36286/", + "id": 36286, + "name": "Janus", + "site_detail_url": "https://comicvine.gamespot.com/janus/4005-36286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36287/", + "id": 36287, + "name": "Davd Eshcol", + "site_detail_url": "https://comicvine.gamespot.com/davd-eshcol/4005-36287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36288/", + "id": 36288, + "name": "Shiela Whittier", + "site_detail_url": "https://comicvine.gamespot.com/shiela-whittier/4005-36288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36289/", + "id": 36289, + "name": "Verdelet", + "site_detail_url": "https://comicvine.gamespot.com/verdelet/4005-36289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36290/", + "id": 36290, + "name": "Armak", + "site_detail_url": "https://comicvine.gamespot.com/armak/4005-36290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36296/", + "id": 36296, + "name": "Tayete", + "site_detail_url": "https://comicvine.gamespot.com/tayete/4005-36296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36297/", + "id": 36297, + "name": "Kazibe", + "site_detail_url": "https://comicvine.gamespot.com/kazibe/4005-36297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36298/", + "id": 36298, + "name": "Frank Brunner", + "site_detail_url": "https://comicvine.gamespot.com/frank-brunner/4005-36298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36299/", + "id": 36299, + "name": "Prime Mover", + "site_detail_url": "https://comicvine.gamespot.com/prime-mover/4005-36299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36300/", + "id": 36300, + "name": "Betty Dean", + "site_detail_url": "https://comicvine.gamespot.com/betty-dean/4005-36300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36301/", + "id": 36301, + "name": "The Night Creature", + "site_detail_url": "https://comicvine.gamespot.com/the-night-creature/4005-36301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36302/", + "id": 36302, + "name": "Mystery Mask", + "site_detail_url": "https://comicvine.gamespot.com/mystery-mask/4005-36302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36303/", + "id": 36303, + "name": "Stefanya", + "site_detail_url": "https://comicvine.gamespot.com/stefanya/4005-36303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36304/", + "id": 36304, + "name": "Shokkoth", + "site_detail_url": "https://comicvine.gamespot.com/shokkoth/4005-36304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36334/", + "id": 36334, + "name": "Dr. Fly", + "site_detail_url": "https://comicvine.gamespot.com/dr-fly/4005-36334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36335/", + "id": 36335, + "name": "Sybill Mills", + "site_detail_url": "https://comicvine.gamespot.com/sybill-mills/4005-36335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36336/", + "id": 36336, + "name": "Lord Of Dark Valley", + "site_detail_url": "https://comicvine.gamespot.com/lord-of-dark-valley/4005-36336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36367/", + "id": 36367, + "name": "Bar Horkus", + "site_detail_url": "https://comicvine.gamespot.com/bar-horkus/4005-36367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36368/", + "id": 36368, + "name": "Kem Horkus", + "site_detail_url": "https://comicvine.gamespot.com/kem-horkus/4005-36368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36369/", + "id": 36369, + "name": "Karota", + "site_detail_url": "https://comicvine.gamespot.com/karota/4005-36369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36370/", + "id": 36370, + "name": "Loc Do", + "site_detail_url": "https://comicvine.gamespot.com/loc-do/4005-36370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36372/", + "id": 36372, + "name": "Chino", + "site_detail_url": "https://comicvine.gamespot.com/chino/4005-36372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36373/", + "id": 36373, + "name": "Janice Caccone", + "site_detail_url": "https://comicvine.gamespot.com/janice-caccone/4005-36373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36389/", + "id": 36389, + "name": "Angel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-36389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36390/", + "id": 36390, + "name": "Phineas T. Coroner", + "site_detail_url": "https://comicvine.gamespot.com/phineas-t-coroner/4005-36390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36392/", + "id": 36392, + "name": "Triple-Iron", + "site_detail_url": "https://comicvine.gamespot.com/triple-iron/4005-36392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36393/", + "id": 36393, + "name": "Maybelle Tork", + "site_detail_url": "https://comicvine.gamespot.com/maybelle-tork/4005-36393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36394/", + "id": 36394, + "name": "Dawg", + "site_detail_url": "https://comicvine.gamespot.com/dawg/4005-36394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36396/", + "id": 36396, + "name": "Tak", + "site_detail_url": "https://comicvine.gamespot.com/tak/4005-36396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36398/", + "id": 36398, + "name": "Laurox The Lecherous", + "site_detail_url": "https://comicvine.gamespot.com/laurox-the-lecherous/4005-36398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36400/", + "id": 36400, + "name": "Dromek", + "site_detail_url": "https://comicvine.gamespot.com/dromek/4005-36400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36418/", + "id": 36418, + "name": "Demmy Marston", + "site_detail_url": "https://comicvine.gamespot.com/demmy-marston/4005-36418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36419/", + "id": 36419, + "name": "Korain", + "site_detail_url": "https://comicvine.gamespot.com/korain/4005-36419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36421/", + "id": 36421, + "name": "Harold Meachum", + "site_detail_url": "https://comicvine.gamespot.com/harold-meachum/4005-36421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36423/", + "id": 36423, + "name": "Tanzika", + "site_detail_url": "https://comicvine.gamespot.com/tanzika/4005-36423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36424/", + "id": 36424, + "name": "Kate Fraser", + "site_detail_url": "https://comicvine.gamespot.com/kate-fraser/4005-36424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36426/", + "id": 36426, + "name": "Xaltotun", + "site_detail_url": "https://comicvine.gamespot.com/xaltotun/4005-36426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36427/", + "id": 36427, + "name": "Orastes", + "site_detail_url": "https://comicvine.gamespot.com/orastes/4005-36427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36428/", + "id": 36428, + "name": "Thakos", + "site_detail_url": "https://comicvine.gamespot.com/thakos/4005-36428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36429/", + "id": 36429, + "name": "Dr. Owen Wallach", + "site_detail_url": "https://comicvine.gamespot.com/dr-owen-wallach/4005-36429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36430/", + "id": 36430, + "name": "HAL-9000", + "site_detail_url": "https://comicvine.gamespot.com/hal-9000/4005-36430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36432/", + "id": 36432, + "name": "Silent One", + "site_detail_url": "https://comicvine.gamespot.com/silent-one/4005-36432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36433/", + "id": 36433, + "name": "Tavashtri", + "site_detail_url": "https://comicvine.gamespot.com/tavashtri/4005-36433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36434/", + "id": 36434, + "name": "Foropulist", + "site_detail_url": "https://comicvine.gamespot.com/foropulist/4005-36434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36449/", + "id": 36449, + "name": "Marty March", + "site_detail_url": "https://comicvine.gamespot.com/marty-march/4005-36449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36454/", + "id": 36454, + "name": "Sun Girl", + "site_detail_url": "https://comicvine.gamespot.com/sun-girl/4005-36454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36455/", + "id": 36455, + "name": "The Magician", + "site_detail_url": "https://comicvine.gamespot.com/the-magician/4005-36455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36456/", + "id": 36456, + "name": "Black Spectre", + "site_detail_url": "https://comicvine.gamespot.com/black-spectre/4005-36456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36467/", + "id": 36467, + "name": "Koyash", + "site_detail_url": "https://comicvine.gamespot.com/koyash/4005-36467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36475/", + "id": 36475, + "name": "Jeesala", + "site_detail_url": "https://comicvine.gamespot.com/jeesala/4005-36475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36478/", + "id": 36478, + "name": "Ayla Prentiss", + "site_detail_url": "https://comicvine.gamespot.com/ayla-prentiss/4005-36478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36479/", + "id": 36479, + "name": "Ruth Hart", + "site_detail_url": "https://comicvine.gamespot.com/ruth-hart/4005-36479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36480/", + "id": 36480, + "name": "The Prairie Kid", + "site_detail_url": "https://comicvine.gamespot.com/the-prairie-kid/4005-36480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36481/", + "id": 36481, + "name": "A. J. Maxfield", + "site_detail_url": "https://comicvine.gamespot.com/a-j-maxfield/4005-36481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36482/", + "id": 36482, + "name": "Elvira Kaufman", + "site_detail_url": "https://comicvine.gamespot.com/elvira-kaufman/4005-36482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36483/", + "id": 36483, + "name": "Dexter Bixby", + "site_detail_url": "https://comicvine.gamespot.com/dexter-bixby/4005-36483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36484/", + "id": 36484, + "name": "Fox", + "site_detail_url": "https://comicvine.gamespot.com/fox/4005-36484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36485/", + "id": 36485, + "name": "Mr. Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/mr-rasputin/4005-36485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36536/", + "id": 36536, + "name": "Baron Thunder", + "site_detail_url": "https://comicvine.gamespot.com/baron-thunder/4005-36536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36539/", + "id": 36539, + "name": "Grigar", + "site_detail_url": "https://comicvine.gamespot.com/grigar/4005-36539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36540/", + "id": 36540, + "name": "Rachalla", + "site_detail_url": "https://comicvine.gamespot.com/rachalla/4005-36540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36541/", + "id": 36541, + "name": "Dr. Vault", + "site_detail_url": "https://comicvine.gamespot.com/dr-vault/4005-36541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36559/", + "id": 36559, + "name": "Ternak", + "site_detail_url": "https://comicvine.gamespot.com/ternak/4005-36559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36560/", + "id": 36560, + "name": "Lilitu the Werewoman", + "site_detail_url": "https://comicvine.gamespot.com/lilitu-the-werewoman/4005-36560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36578/", + "id": 36578, + "name": "F A Schist", + "site_detail_url": "https://comicvine.gamespot.com/f-a-schist/4005-36578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36579/", + "id": 36579, + "name": "Princess Yolinda", + "site_detail_url": "https://comicvine.gamespot.com/princess-yolinda/4005-36579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36580/", + "id": 36580, + "name": "Rotath", + "site_detail_url": "https://comicvine.gamespot.com/rotath/4005-36580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36581/", + "id": 36581, + "name": "Granitor", + "site_detail_url": "https://comicvine.gamespot.com/granitor/4005-36581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36589/", + "id": 36589, + "name": "Skrull Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/skrull-hawkeye/4005-36589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36597/", + "id": 36597, + "name": "Amytis", + "site_detail_url": "https://comicvine.gamespot.com/amytis/4005-36597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36607/", + "id": 36607, + "name": "Avalon", + "site_detail_url": "https://comicvine.gamespot.com/avalon/4005-36607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36638/", + "id": 36638, + "name": "Metallo", + "site_detail_url": "https://comicvine.gamespot.com/metallo/4005-36638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36641/", + "id": 36641, + "name": "Warroo", + "site_detail_url": "https://comicvine.gamespot.com/warroo/4005-36641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36643/", + "id": 36643, + "name": "Mendinao", + "site_detail_url": "https://comicvine.gamespot.com/mendinao/4005-36643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36644/", + "id": 36644, + "name": "Kradada", + "site_detail_url": "https://comicvine.gamespot.com/kradada/4005-36644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36648/", + "id": 36648, + "name": "El Rabanos", + "site_detail_url": "https://comicvine.gamespot.com/el-rabanos/4005-36648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36649/", + "id": 36649, + "name": "Senor Oveja", + "site_detail_url": "https://comicvine.gamespot.com/senor-oveja/4005-36649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36650/", + "id": 36650, + "name": "Cere Oveja", + "site_detail_url": "https://comicvine.gamespot.com/cere-oveja/4005-36650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36653/", + "id": 36653, + "name": "Mint Julep", + "site_detail_url": "https://comicvine.gamespot.com/mint-julep/4005-36653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36668/", + "id": 36668, + "name": "Professor Makko", + "site_detail_url": "https://comicvine.gamespot.com/professor-makko/4005-36668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36671/", + "id": 36671, + "name": "Chandu", + "site_detail_url": "https://comicvine.gamespot.com/chandu/4005-36671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36676/", + "id": 36676, + "name": "Kerwin J. Broderick", + "site_detail_url": "https://comicvine.gamespot.com/kerwin-j-broderick/4005-36676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36677/", + "id": 36677, + "name": "Dark Messiah", + "site_detail_url": "https://comicvine.gamespot.com/dark-messiah/4005-36677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36689/", + "id": 36689, + "name": "Sands", + "site_detail_url": "https://comicvine.gamespot.com/sands/4005-36689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36690/", + "id": 36690, + "name": "Clary Winter", + "site_detail_url": "https://comicvine.gamespot.com/clary-winter/4005-36690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36691/", + "id": 36691, + "name": "Igron The Invincible", + "site_detail_url": "https://comicvine.gamespot.com/igron-the-invincible/4005-36691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36692/", + "id": 36692, + "name": "Virago", + "site_detail_url": "https://comicvine.gamespot.com/virago/4005-36692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36693/", + "id": 36693, + "name": "Zatama", + "site_detail_url": "https://comicvine.gamespot.com/zatama/4005-36693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36694/", + "id": 36694, + "name": "Flea", + "site_detail_url": "https://comicvine.gamespot.com/flea/4005-36694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36695/", + "id": 36695, + "name": "Billy Bob Rackham", + "site_detail_url": "https://comicvine.gamespot.com/billy-bob-rackham/4005-36695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36697/", + "id": 36697, + "name": "Asti", + "site_detail_url": "https://comicvine.gamespot.com/asti/4005-36697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36698/", + "id": 36698, + "name": "Warlord", + "site_detail_url": "https://comicvine.gamespot.com/warlord/4005-36698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36748/", + "id": 36748, + "name": "Amanda Saint", + "site_detail_url": "https://comicvine.gamespot.com/amanda-saint/4005-36748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36750/", + "id": 36750, + "name": "Hodiah Twist", + "site_detail_url": "https://comicvine.gamespot.com/hodiah-twist/4005-36750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36751/", + "id": 36751, + "name": "Conrad Jeavons", + "site_detail_url": "https://comicvine.gamespot.com/conrad-jeavons/4005-36751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36753/", + "id": 36753, + "name": "Xorr", + "site_detail_url": "https://comicvine.gamespot.com/xorr/4005-36753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36756/", + "id": 36756, + "name": "Morduk", + "site_detail_url": "https://comicvine.gamespot.com/morduk/4005-36756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36758/", + "id": 36758, + "name": "Talia", + "site_detail_url": "https://comicvine.gamespot.com/talia/4005-36758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36759/", + "id": 36759, + "name": "Snake-Dance", + "site_detail_url": "https://comicvine.gamespot.com/snake-dance/4005-36759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36760/", + "id": 36760, + "name": "Victorius", + "site_detail_url": "https://comicvine.gamespot.com/victorius/4005-36760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36791/", + "id": 36791, + "name": "Shabarr", + "site_detail_url": "https://comicvine.gamespot.com/shabarr/4005-36791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36793/", + "id": 36793, + "name": "Kurrgo", + "site_detail_url": "https://comicvine.gamespot.com/kurrgo/4005-36793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36794/", + "id": 36794, + "name": "Windeagle", + "site_detail_url": "https://comicvine.gamespot.com/windeagle/4005-36794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36795/", + "id": 36795, + "name": "Sorrow", + "site_detail_url": "https://comicvine.gamespot.com/sorrow/4005-36795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36796/", + "id": 36796, + "name": "Lorna", + "site_detail_url": "https://comicvine.gamespot.com/lorna/4005-36796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36798/", + "id": 36798, + "name": "Victoria Hellstrom", + "site_detail_url": "https://comicvine.gamespot.com/victoria-hellstrom/4005-36798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36799/", + "id": 36799, + "name": "Hildico Of Brythunia", + "site_detail_url": "https://comicvine.gamespot.com/hildico-of-brythunia/4005-36799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36801/", + "id": 36801, + "name": "Combat Kelly", + "site_detail_url": "https://comicvine.gamespot.com/combat-kelly/4005-36801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36839/", + "id": 36839, + "name": "Jason Grey", + "site_detail_url": "https://comicvine.gamespot.com/jason-grey/4005-36839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36840/", + "id": 36840, + "name": "Astrella", + "site_detail_url": "https://comicvine.gamespot.com/astrella/4005-36840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36841/", + "id": 36841, + "name": "Elanna", + "site_detail_url": "https://comicvine.gamespot.com/elanna/4005-36841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36842/", + "id": 36842, + "name": "Orrek", + "site_detail_url": "https://comicvine.gamespot.com/orrek/4005-36842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36845/", + "id": 36845, + "name": "Princess Rinda", + "site_detail_url": "https://comicvine.gamespot.com/princess-rinda/4005-36845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36846/", + "id": 36846, + "name": "War-Head", + "site_detail_url": "https://comicvine.gamespot.com/war-head/4005-36846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36882/", + "id": 36882, + "name": "Sssthgar", + "site_detail_url": "https://comicvine.gamespot.com/sssthgar/4005-36882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36883/", + "id": 36883, + "name": "Dr. Hydro", + "site_detail_url": "https://comicvine.gamespot.com/dr-hydro/4005-36883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36885/", + "id": 36885, + "name": "Captain Omen", + "site_detail_url": "https://comicvine.gamespot.com/captain-omen/4005-36885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36887/", + "id": 36887, + "name": "Carlotta", + "site_detail_url": "https://comicvine.gamespot.com/carlotta/4005-36887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36888/", + "id": 36888, + "name": "Canute", + "site_detail_url": "https://comicvine.gamespot.com/canute/4005-36888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36889/", + "id": 36889, + "name": "Slitherogue", + "site_detail_url": "https://comicvine.gamespot.com/slitherogue/4005-36889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36892/", + "id": 36892, + "name": "Helgi", + "site_detail_url": "https://comicvine.gamespot.com/helgi/4005-36892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36893/", + "id": 36893, + "name": "Arrow", + "site_detail_url": "https://comicvine.gamespot.com/arrow/4005-36893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36921/", + "id": 36921, + "name": "King Kamuu", + "site_detail_url": "https://comicvine.gamespot.com/king-kamuu/4005-36921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36922/", + "id": 36922, + "name": "Queen Zartra", + "site_detail_url": "https://comicvine.gamespot.com/queen-zartra/4005-36922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36923/", + "id": 36923, + "name": "Ocar", + "site_detail_url": "https://comicvine.gamespot.com/ocar/4005-36923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36924/", + "id": 36924, + "name": "Zapal", + "site_detail_url": "https://comicvine.gamespot.com/zapal/4005-36924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36926/", + "id": 36926, + "name": "Roxanne Gilbert", + "site_detail_url": "https://comicvine.gamespot.com/roxanne-gilbert/4005-36926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36928/", + "id": 36928, + "name": "Filius", + "site_detail_url": "https://comicvine.gamespot.com/filius/4005-36928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36929/", + "id": 36929, + "name": "Khobra", + "site_detail_url": "https://comicvine.gamespot.com/khobra/4005-36929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36930/", + "id": 36930, + "name": "Cyrus Black", + "site_detail_url": "https://comicvine.gamespot.com/cyrus-black/4005-36930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36932/", + "id": 36932, + "name": "Suwaan", + "site_detail_url": "https://comicvine.gamespot.com/suwaan/4005-36932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36933/", + "id": 36933, + "name": "Sister Angelique", + "site_detail_url": "https://comicvine.gamespot.com/sister-angelique/4005-36933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36951/", + "id": 36951, + "name": "Judson Hemp", + "site_detail_url": "https://comicvine.gamespot.com/judson-hemp/4005-36951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36955/", + "id": 36955, + "name": "Queen Melissandra", + "site_detail_url": "https://comicvine.gamespot.com/queen-melissandra/4005-36955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36997/", + "id": 36997, + "name": "Lorvex", + "site_detail_url": "https://comicvine.gamespot.com/lorvex/4005-36997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36998/", + "id": 36998, + "name": "Wild-Man Wilson", + "site_detail_url": "https://comicvine.gamespot.com/wild-man-wilson/4005-36998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-36999/", + "id": 36999, + "name": "Jim Morita", + "site_detail_url": "https://comicvine.gamespot.com/jim-morita/4005-36999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37003/", + "id": 37003, + "name": "Tharn", + "site_detail_url": "https://comicvine.gamespot.com/tharn/4005-37003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37007/", + "id": 37007, + "name": "Secundus", + "site_detail_url": "https://comicvine.gamespot.com/secundus/4005-37007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37008/", + "id": 37008, + "name": "Tertius", + "site_detail_url": "https://comicvine.gamespot.com/tertius/4005-37008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37009/", + "id": 37009, + "name": "Gray Fox", + "site_detail_url": "https://comicvine.gamespot.com/gray-fox/4005-37009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37010/", + "id": 37010, + "name": "Captain Warren Worth", + "site_detail_url": "https://comicvine.gamespot.com/captain-warren-worth/4005-37010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37011/", + "id": 37011, + "name": "Omegatron", + "site_detail_url": "https://comicvine.gamespot.com/omegatron/4005-37011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37013/", + "id": 37013, + "name": "Supremus", + "site_detail_url": "https://comicvine.gamespot.com/supremus/4005-37013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37015/", + "id": 37015, + "name": "Kharam-Akkad", + "site_detail_url": "https://comicvine.gamespot.com/kharam-akkad/4005-37015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37059/", + "id": 37059, + "name": "Ludwig Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/ludwig-frankenstein/4005-37059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37060/", + "id": 37060, + "name": "Robert Walton IV", + "site_detail_url": "https://comicvine.gamespot.com/robert-walton-iv/4005-37060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37061/", + "id": 37061, + "name": "Half-Man", + "site_detail_url": "https://comicvine.gamespot.com/half-man/4005-37061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37062/", + "id": 37062, + "name": "Disruptor", + "site_detail_url": "https://comicvine.gamespot.com/disruptor/4005-37062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37081/", + "id": 37081, + "name": "Raymond Huxley Forsythe", + "site_detail_url": "https://comicvine.gamespot.com/raymond-huxley-forsythe/4005-37081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37082/", + "id": 37082, + "name": "Robert Fredrick Forsythe", + "site_detail_url": "https://comicvine.gamespot.com/robert-fredrick-forsythe/4005-37082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37083/", + "id": 37083, + "name": "Laura Forsythe", + "site_detail_url": "https://comicvine.gamespot.com/laura-forsythe/4005-37083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37084/", + "id": 37084, + "name": "Catherine Forsythe", + "site_detail_url": "https://comicvine.gamespot.com/catherine-forsythe/4005-37084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37085/", + "id": 37085, + "name": "Ebora", + "site_detail_url": "https://comicvine.gamespot.com/ebora/4005-37085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37086/", + "id": 37086, + "name": "Dominor", + "site_detail_url": "https://comicvine.gamespot.com/dominor/4005-37086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37087/", + "id": 37087, + "name": "Fragon", + "site_detail_url": "https://comicvine.gamespot.com/fragon/4005-37087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37088/", + "id": 37088, + "name": "Laurie Livingston", + "site_detail_url": "https://comicvine.gamespot.com/laurie-livingston/4005-37088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37089/", + "id": 37089, + "name": "Doc Watson", + "site_detail_url": "https://comicvine.gamespot.com/doc-watson/4005-37089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37090/", + "id": 37090, + "name": "The Pusher", + "site_detail_url": "https://comicvine.gamespot.com/the-pusher/4005-37090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37121/", + "id": 37121, + "name": "Bonham", + "site_detail_url": "https://comicvine.gamespot.com/bonham/4005-37121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37128/", + "id": 37128, + "name": "Mrs. Jenks", + "site_detail_url": "https://comicvine.gamespot.com/mrs-jenks/4005-37128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37153/", + "id": 37153, + "name": "Jack McDaniels", + "site_detail_url": "https://comicvine.gamespot.com/jack-mcdaniels/4005-37153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37157/", + "id": 37157, + "name": "Phil Fox", + "site_detail_url": "https://comicvine.gamespot.com/phil-fox/4005-37157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37162/", + "id": 37162, + "name": "Bullseye Miller", + "site_detail_url": "https://comicvine.gamespot.com/bullseye-miller/4005-37162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37189/", + "id": 37189, + "name": "Father Ramon Joquez", + "site_detail_url": "https://comicvine.gamespot.com/father-ramon-joquez/4005-37189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37190/", + "id": 37190, + "name": "Captain Connor", + "site_detail_url": "https://comicvine.gamespot.com/captain-connor/4005-37190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37194/", + "id": 37194, + "name": "Jay Little Bear", + "site_detail_url": "https://comicvine.gamespot.com/jay-little-bear/4005-37194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37195/", + "id": 37195, + "name": "Sister Cynthia", + "site_detail_url": "https://comicvine.gamespot.com/sister-cynthia/4005-37195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37196/", + "id": 37196, + "name": "Dr. Joanne Tumolo", + "site_detail_url": "https://comicvine.gamespot.com/dr-joanne-tumolo/4005-37196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37197/", + "id": 37197, + "name": "Mal Donalbain", + "site_detail_url": "https://comicvine.gamespot.com/mal-donalbain/4005-37197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37198/", + "id": 37198, + "name": "Linda Donaldson", + "site_detail_url": "https://comicvine.gamespot.com/linda-donaldson/4005-37198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37199/", + "id": 37199, + "name": "Number One", + "site_detail_url": "https://comicvine.gamespot.com/number-one/4005-37199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37247/", + "id": 37247, + "name": "Dragon-Lord", + "site_detail_url": "https://comicvine.gamespot.com/dragon-lord/4005-37247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37248/", + "id": 37248, + "name": "Bounty-Hawk", + "site_detail_url": "https://comicvine.gamespot.com/bounty-hawk/4005-37248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37250/", + "id": 37250, + "name": "Jarr", + "site_detail_url": "https://comicvine.gamespot.com/jarr/4005-37250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37251/", + "id": 37251, + "name": "Tyrr", + "site_detail_url": "https://comicvine.gamespot.com/tyrr/4005-37251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37252/", + "id": 37252, + "name": "Emma Burstein", + "site_detail_url": "https://comicvine.gamespot.com/emma-burstein/4005-37252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37253/", + "id": 37253, + "name": "Kraawl", + "site_detail_url": "https://comicvine.gamespot.com/kraawl/4005-37253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37256/", + "id": 37256, + "name": "Calizuma", + "site_detail_url": "https://comicvine.gamespot.com/calizuma/4005-37256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37257/", + "id": 37257, + "name": "Blue Talon", + "site_detail_url": "https://comicvine.gamespot.com/blue-talon/4005-37257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37285/", + "id": 37285, + "name": "Ilsa Strangway", + "site_detail_url": "https://comicvine.gamespot.com/ilsa-strangway/4005-37285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37286/", + "id": 37286, + "name": "Whitby", + "site_detail_url": "https://comicvine.gamespot.com/whitby/4005-37286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37289/", + "id": 37289, + "name": "Clifton Graves", + "site_detail_url": "https://comicvine.gamespot.com/clifton-graves/4005-37289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37290/", + "id": 37290, + "name": "Shakkoth", + "site_detail_url": "https://comicvine.gamespot.com/shakkoth/4005-37290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37291/", + "id": 37291, + "name": "The Shaper", + "site_detail_url": "https://comicvine.gamespot.com/the-shaper/4005-37291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37312/", + "id": 37312, + "name": "Haukk", + "site_detail_url": "https://comicvine.gamespot.com/haukk/4005-37312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37314/", + "id": 37314, + "name": "Monster From The Lost Lagoon", + "site_detail_url": "https://comicvine.gamespot.com/monster-from-the-lost-lagoon/4005-37314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37339/", + "id": 37339, + "name": "Trull The Wizard", + "site_detail_url": "https://comicvine.gamespot.com/trull-the-wizard/4005-37339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37340/", + "id": 37340, + "name": "Morro", + "site_detail_url": "https://comicvine.gamespot.com/morro/4005-37340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37341/", + "id": 37341, + "name": "Matt Slade", + "site_detail_url": "https://comicvine.gamespot.com/matt-slade/4005-37341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37357/", + "id": 37357, + "name": "Simon Gilbert", + "site_detail_url": "https://comicvine.gamespot.com/simon-gilbert/4005-37357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37358/", + "id": 37358, + "name": "Lonny", + "site_detail_url": "https://comicvine.gamespot.com/lonny/4005-37358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37359/", + "id": 37359, + "name": "Quirt", + "site_detail_url": "https://comicvine.gamespot.com/quirt/4005-37359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37360/", + "id": 37360, + "name": "Tyler Stuart", + "site_detail_url": "https://comicvine.gamespot.com/tyler-stuart/4005-37360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37362/", + "id": 37362, + "name": "Jakar", + "site_detail_url": "https://comicvine.gamespot.com/jakar/4005-37362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37389/", + "id": 37389, + "name": "Eddie Roberts", + "site_detail_url": "https://comicvine.gamespot.com/eddie-roberts/4005-37389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37390/", + "id": 37390, + "name": "Colonel Barney Roberts", + "site_detail_url": "https://comicvine.gamespot.com/colonel-barney-roberts/4005-37390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37391/", + "id": 37391, + "name": "Nathan Carter", + "site_detail_url": "https://comicvine.gamespot.com/nathan-carter/4005-37391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37392/", + "id": 37392, + "name": "Josiah Grey", + "site_detail_url": "https://comicvine.gamespot.com/josiah-grey/4005-37392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37394/", + "id": 37394, + "name": "Prince Gaynor The Damned", + "site_detail_url": "https://comicvine.gamespot.com/prince-gaynor-the-damned/4005-37394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37421/", + "id": 37421, + "name": "Iron Wolf", + "site_detail_url": "https://comicvine.gamespot.com/iron-wolf/4005-37421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37423/", + "id": 37423, + "name": "David Carter", + "site_detail_url": "https://comicvine.gamespot.com/david-carter/4005-37423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37424/", + "id": 37424, + "name": "Ellie Roberts", + "site_detail_url": "https://comicvine.gamespot.com/ellie-roberts/4005-37424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37428/", + "id": 37428, + "name": "Maa-Gor", + "site_detail_url": "https://comicvine.gamespot.com/maa-gor/4005-37428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37463/", + "id": 37463, + "name": "Satrina", + "site_detail_url": "https://comicvine.gamespot.com/satrina/4005-37463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37468/", + "id": 37468, + "name": "Mr. Kline", + "site_detail_url": "https://comicvine.gamespot.com/mr-kline/4005-37468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37481/", + "id": 37481, + "name": "Lymondo", + "site_detail_url": "https://comicvine.gamespot.com/lymondo/4005-37481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37482/", + "id": 37482, + "name": "Drew Malone", + "site_detail_url": "https://comicvine.gamespot.com/drew-malone/4005-37482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37483/", + "id": 37483, + "name": "Pat Harper", + "site_detail_url": "https://comicvine.gamespot.com/pat-harper/4005-37483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37485/", + "id": 37485, + "name": "Whit Hammond", + "site_detail_url": "https://comicvine.gamespot.com/whit-hammond/4005-37485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37520/", + "id": 37520, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-37520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37545/", + "id": 37545, + "name": "Leonard McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/leonard-mckenzie/4005-37545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37546/", + "id": 37546, + "name": "Rafe Larsen", + "site_detail_url": "https://comicvine.gamespot.com/rafe-larsen/4005-37546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37573/", + "id": 37573, + "name": "Crimson Dynamo (Gavrilov)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-gavrilov/4005-37573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37615/", + "id": 37615, + "name": "Damian Link", + "site_detail_url": "https://comicvine.gamespot.com/damian-link/4005-37615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37634/", + "id": 37634, + "name": "Ben Santee", + "site_detail_url": "https://comicvine.gamespot.com/ben-santee/4005-37634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37635/", + "id": 37635, + "name": "Dull Knife", + "site_detail_url": "https://comicvine.gamespot.com/dull-knife/4005-37635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37636/", + "id": 37636, + "name": "Slasher", + "site_detail_url": "https://comicvine.gamespot.com/slasher/4005-37636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37637/", + "id": 37637, + "name": "Demitrius", + "site_detail_url": "https://comicvine.gamespot.com/demitrius/4005-37637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37639/", + "id": 37639, + "name": "Lionel Dibbs", + "site_detail_url": "https://comicvine.gamespot.com/lionel-dibbs/4005-37639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37669/", + "id": 37669, + "name": "Damon", + "site_detail_url": "https://comicvine.gamespot.com/damon/4005-37669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37706/", + "id": 37706, + "name": "Lord of Death", + "site_detail_url": "https://comicvine.gamespot.com/lord-of-death/4005-37706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37714/", + "id": 37714, + "name": "Tattooed Man", + "site_detail_url": "https://comicvine.gamespot.com/tattooed-man/4005-37714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37717/", + "id": 37717, + "name": "Roscoe Simons", + "site_detail_url": "https://comicvine.gamespot.com/roscoe-simons/4005-37717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37723/", + "id": 37723, + "name": "Zemu", + "site_detail_url": "https://comicvine.gamespot.com/zemu/4005-37723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37724/", + "id": 37724, + "name": "Valeria", + "site_detail_url": "https://comicvine.gamespot.com/valeria/4005-37724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37729/", + "id": 37729, + "name": "Weasel", + "site_detail_url": "https://comicvine.gamespot.com/weasel/4005-37729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37730/", + "id": 37730, + "name": "Lady Tuvia", + "site_detail_url": "https://comicvine.gamespot.com/lady-tuvia/4005-37730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37731/", + "id": 37731, + "name": "Hajii", + "site_detail_url": "https://comicvine.gamespot.com/hajii/4005-37731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37750/", + "id": 37750, + "name": "Zephra", + "site_detail_url": "https://comicvine.gamespot.com/zephra/4005-37750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37751/", + "id": 37751, + "name": "The Astrologer", + "site_detail_url": "https://comicvine.gamespot.com/the-astrologer/4005-37751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37759/", + "id": 37759, + "name": "Krushki", + "site_detail_url": "https://comicvine.gamespot.com/krushki/4005-37759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37760/", + "id": 37760, + "name": "Cadavus", + "site_detail_url": "https://comicvine.gamespot.com/cadavus/4005-37760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37780/", + "id": 37780, + "name": "Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/dazzler/4005-37780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37793/", + "id": 37793, + "name": "Apache Kid", + "site_detail_url": "https://comicvine.gamespot.com/apache-kid/4005-37793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37794/", + "id": 37794, + "name": "Poison Arrow", + "site_detail_url": "https://comicvine.gamespot.com/poison-arrow/4005-37794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37795/", + "id": 37795, + "name": "Wampu", + "site_detail_url": "https://comicvine.gamespot.com/wampu/4005-37795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37796/", + "id": 37796, + "name": "Deaf Smith", + "site_detail_url": "https://comicvine.gamespot.com/deaf-smith/4005-37796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37798/", + "id": 37798, + "name": "Tex Dawson", + "site_detail_url": "https://comicvine.gamespot.com/tex-dawson/4005-37798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37799/", + "id": 37799, + "name": "Roland Taggart", + "site_detail_url": "https://comicvine.gamespot.com/roland-taggart/4005-37799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37800/", + "id": 37800, + "name": "Lanny", + "site_detail_url": "https://comicvine.gamespot.com/lanny/4005-37800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37803/", + "id": 37803, + "name": "Lawholder", + "site_detail_url": "https://comicvine.gamespot.com/lawholder/4005-37803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37804/", + "id": 37804, + "name": "Borri", + "site_detail_url": "https://comicvine.gamespot.com/borri/4005-37804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37829/", + "id": 37829, + "name": "Opar", + "site_detail_url": "https://comicvine.gamespot.com/opar/4005-37829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37832/", + "id": 37832, + "name": "The Don", + "site_detail_url": "https://comicvine.gamespot.com/the-don/4005-37832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37859/", + "id": 37859, + "name": "Baldy Kolak", + "site_detail_url": "https://comicvine.gamespot.com/baldy-kolak/4005-37859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37860/", + "id": 37860, + "name": "The Golem", + "site_detail_url": "https://comicvine.gamespot.com/the-golem/4005-37860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37870/", + "id": 37870, + "name": "Death Reaper", + "site_detail_url": "https://comicvine.gamespot.com/death-reaper/4005-37870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37900/", + "id": 37900, + "name": "Doomsman", + "site_detail_url": "https://comicvine.gamespot.com/doomsman/4005-37900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37901/", + "id": 37901, + "name": "Ramona", + "site_detail_url": "https://comicvine.gamespot.com/ramona/4005-37901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37911/", + "id": 37911, + "name": "Kragg", + "site_detail_url": "https://comicvine.gamespot.com/kragg/4005-37911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37913/", + "id": 37913, + "name": "Kid Gawain", + "site_detail_url": "https://comicvine.gamespot.com/kid-gawain/4005-37913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37914/", + "id": 37914, + "name": "Pop Fenton", + "site_detail_url": "https://comicvine.gamespot.com/pop-fenton/4005-37914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37929/", + "id": 37929, + "name": "Meredith McCall", + "site_detail_url": "https://comicvine.gamespot.com/meredith-mccall/4005-37929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37940/", + "id": 37940, + "name": "The Panther", + "site_detail_url": "https://comicvine.gamespot.com/the-panther/4005-37940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37944/", + "id": 37944, + "name": "The Scarab", + "site_detail_url": "https://comicvine.gamespot.com/the-scarab/4005-37944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37945/", + "id": 37945, + "name": "Serpentyne", + "site_detail_url": "https://comicvine.gamespot.com/serpentyne/4005-37945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37961/", + "id": 37961, + "name": "Val-Larr", + "site_detail_url": "https://comicvine.gamespot.com/val-larr/4005-37961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37962/", + "id": 37962, + "name": "Brother Brimstone", + "site_detail_url": "https://comicvine.gamespot.com/brother-brimstone/4005-37962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37984/", + "id": 37984, + "name": "Imbalayo", + "site_detail_url": "https://comicvine.gamespot.com/imbalayo/4005-37984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37990/", + "id": 37990, + "name": "Sally Weston", + "site_detail_url": "https://comicvine.gamespot.com/sally-weston/4005-37990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37998/", + "id": 37998, + "name": "Overlord", + "site_detail_url": "https://comicvine.gamespot.com/overlord/4005-37998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-37999/", + "id": 37999, + "name": "Barbara Denton Norriss", + "site_detail_url": "https://comicvine.gamespot.com/barbara-denton-norriss/4005-37999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38007/", + "id": 38007, + "name": "Gweny Lee", + "site_detail_url": "https://comicvine.gamespot.com/gweny-lee/4005-38007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38024/", + "id": 38024, + "name": "Headstone P. Gravely", + "site_detail_url": "https://comicvine.gamespot.com/headstone-p-gravely/4005-38024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38036/", + "id": 38036, + "name": "Hector Montoya", + "site_detail_url": "https://comicvine.gamespot.com/hector-montoya/4005-38036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38037/", + "id": 38037, + "name": "Eddie March", + "site_detail_url": "https://comicvine.gamespot.com/eddie-march/4005-38037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38050/", + "id": 38050, + "name": "Paul Fosgrave", + "site_detail_url": "https://comicvine.gamespot.com/paul-fosgrave/4005-38050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38051/", + "id": 38051, + "name": "Mart Baker", + "site_detail_url": "https://comicvine.gamespot.com/mart-baker/4005-38051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38092/", + "id": 38092, + "name": "Kormok", + "site_detail_url": "https://comicvine.gamespot.com/kormok/4005-38092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38095/", + "id": 38095, + "name": "Mrs. Page", + "site_detail_url": "https://comicvine.gamespot.com/mrs-page/4005-38095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38096/", + "id": 38096, + "name": "Paxton Page", + "site_detail_url": "https://comicvine.gamespot.com/paxton-page/4005-38096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38104/", + "id": 38104, + "name": "Erikson", + "site_detail_url": "https://comicvine.gamespot.com/erikson/4005-38104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38108/", + "id": 38108, + "name": "Judge Chalmers", + "site_detail_url": "https://comicvine.gamespot.com/judge-chalmers/4005-38108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38111/", + "id": 38111, + "name": "Allie Magruder", + "site_detail_url": "https://comicvine.gamespot.com/allie-magruder/4005-38111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38121/", + "id": 38121, + "name": "Gregson Gilbert", + "site_detail_url": "https://comicvine.gamespot.com/gregson-gilbert/4005-38121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38122/", + "id": 38122, + "name": "Rozalyn Backus", + "site_detail_url": "https://comicvine.gamespot.com/rozalyn-backus/4005-38122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38124/", + "id": 38124, + "name": "General Ten Per Cent", + "site_detail_url": "https://comicvine.gamespot.com/general-ten-per-cent/4005-38124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38164/", + "id": 38164, + "name": "Kathryn Worthington", + "site_detail_url": "https://comicvine.gamespot.com/kathryn-worthington/4005-38164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38165/", + "id": 38165, + "name": "Sagyr", + "site_detail_url": "https://comicvine.gamespot.com/sagyr/4005-38165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38166/", + "id": 38166, + "name": "Vanessa Marlowe", + "site_detail_url": "https://comicvine.gamespot.com/vanessa-marlowe/4005-38166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38167/", + "id": 38167, + "name": "Plastoid", + "site_detail_url": "https://comicvine.gamespot.com/plastoid/4005-38167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38168/", + "id": 38168, + "name": "Biggie Benson", + "site_detail_url": "https://comicvine.gamespot.com/biggie-benson/4005-38168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38176/", + "id": 38176, + "name": "Chico", + "site_detail_url": "https://comicvine.gamespot.com/chico/4005-38176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38178/", + "id": 38178, + "name": "Tomazooma", + "site_detail_url": "https://comicvine.gamespot.com/tomazooma/4005-38178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38179/", + "id": 38179, + "name": "Mei-Ling", + "site_detail_url": "https://comicvine.gamespot.com/mei-ling/4005-38179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38214/", + "id": 38214, + "name": "El Conquistador", + "site_detail_url": "https://comicvine.gamespot.com/el-conquistador/4005-38214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38226/", + "id": 38226, + "name": "King Krono", + "site_detail_url": "https://comicvine.gamespot.com/king-krono/4005-38226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38227/", + "id": 38227, + "name": "Sharon Carter", + "site_detail_url": "https://comicvine.gamespot.com/sharon-carter/4005-38227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38228/", + "id": 38228, + "name": "The Stag God", + "site_detail_url": "https://comicvine.gamespot.com/the-stag-god/4005-38228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38256/", + "id": 38256, + "name": "Silver Sidewinder", + "site_detail_url": "https://comicvine.gamespot.com/silver-sidewinder/4005-38256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38275/", + "id": 38275, + "name": "The Frankenstein Android", + "site_detail_url": "https://comicvine.gamespot.com/the-frankenstein-android/4005-38275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38280/", + "id": 38280, + "name": "Irma Kruhl", + "site_detail_url": "https://comicvine.gamespot.com/irma-kruhl/4005-38280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38282/", + "id": 38282, + "name": "Captain Savage", + "site_detail_url": "https://comicvine.gamespot.com/captain-savage/4005-38282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38283/", + "id": 38283, + "name": "Sam Yates", + "site_detail_url": "https://comicvine.gamespot.com/sam-yates/4005-38283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38284/", + "id": 38284, + "name": "Jacques LaRocque", + "site_detail_url": "https://comicvine.gamespot.com/jacques-larocque/4005-38284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38285/", + "id": 38285, + "name": "Lee Baker", + "site_detail_url": "https://comicvine.gamespot.com/lee-baker/4005-38285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38313/", + "id": 38313, + "name": "The Sniper", + "site_detail_url": "https://comicvine.gamespot.com/the-sniper/4005-38313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38321/", + "id": 38321, + "name": "Abominable Snowman", + "site_detail_url": "https://comicvine.gamespot.com/abominable-snowman/4005-38321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38339/", + "id": 38339, + "name": "Mutant-Master", + "site_detail_url": "https://comicvine.gamespot.com/mutant-master/4005-38339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38341/", + "id": 38341, + "name": "Gates", + "site_detail_url": "https://comicvine.gamespot.com/gates/4005-38341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38355/", + "id": 38355, + "name": "Half-Face", + "site_detail_url": "https://comicvine.gamespot.com/half-face/4005-38355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38358/", + "id": 38358, + "name": "Natalie Brooks", + "site_detail_url": "https://comicvine.gamespot.com/natalie-brooks/4005-38358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38359/", + "id": 38359, + "name": "Benjamin Brooks", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-brooks/4005-38359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38386/", + "id": 38386, + "name": "Mekano", + "site_detail_url": "https://comicvine.gamespot.com/mekano/4005-38386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38390/", + "id": 38390, + "name": "Muraitak", + "site_detail_url": "https://comicvine.gamespot.com/muraitak/4005-38390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38411/", + "id": 38411, + "name": "Jamie Jacobs", + "site_detail_url": "https://comicvine.gamespot.com/jamie-jacobs/4005-38411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38448/", + "id": 38448, + "name": "Crusher", + "site_detail_url": "https://comicvine.gamespot.com/crusher/4005-38448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38456/", + "id": 38456, + "name": "The Boss", + "site_detail_url": "https://comicvine.gamespot.com/the-boss/4005-38456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38485/", + "id": 38485, + "name": "Bernard the Poet", + "site_detail_url": "https://comicvine.gamespot.com/bernard-the-poet/4005-38485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38486/", + "id": 38486, + "name": "Captain Granbretan", + "site_detail_url": "https://comicvine.gamespot.com/captain-granbretan/4005-38486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38498/", + "id": 38498, + "name": "Ted Roberts", + "site_detail_url": "https://comicvine.gamespot.com/ted-roberts/4005-38498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38523/", + "id": 38523, + "name": "The Planner", + "site_detail_url": "https://comicvine.gamespot.com/the-planner/4005-38523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38528/", + "id": 38528, + "name": "Colonel Kuro Chin", + "site_detail_url": "https://comicvine.gamespot.com/colonel-kuro-chin/4005-38528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38551/", + "id": 38551, + "name": "Gorki", + "site_detail_url": "https://comicvine.gamespot.com/gorki/4005-38551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38565/", + "id": 38565, + "name": "Captain Flint", + "site_detail_url": "https://comicvine.gamespot.com/captain-flint/4005-38565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38569/", + "id": 38569, + "name": "Senator Harrington Byrd", + "site_detail_url": "https://comicvine.gamespot.com/senator-harrington-byrd/4005-38569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38611/", + "id": 38611, + "name": "Tri-Android", + "site_detail_url": "https://comicvine.gamespot.com/tri-android/4005-38611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38612/", + "id": 38612, + "name": "Judge Lewis", + "site_detail_url": "https://comicvine.gamespot.com/judge-lewis/4005-38612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38618/", + "id": 38618, + "name": "Warshot", + "site_detail_url": "https://comicvine.gamespot.com/warshot/4005-38618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38626/", + "id": 38626, + "name": "Count Tagar", + "site_detail_url": "https://comicvine.gamespot.com/count-tagar/4005-38626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38629/", + "id": 38629, + "name": "Count Bornag Royale", + "site_detail_url": "https://comicvine.gamespot.com/count-bornag-royale/4005-38629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38640/", + "id": 38640, + "name": "Lucky Lobo", + "site_detail_url": "https://comicvine.gamespot.com/lucky-lobo/4005-38640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38641/", + "id": 38641, + "name": "Dr. Bromwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-bromwell/4005-38641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38650/", + "id": 38650, + "name": "Kamorr", + "site_detail_url": "https://comicvine.gamespot.com/kamorr/4005-38650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38667/", + "id": 38667, + "name": "Gladiator (Potter)", + "site_detail_url": "https://comicvine.gamespot.com/gladiator-potter/4005-38667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38697/", + "id": 38697, + "name": "The Supreme One", + "site_detail_url": "https://comicvine.gamespot.com/the-supreme-one/4005-38697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38698/", + "id": 38698, + "name": "The Behemoth", + "site_detail_url": "https://comicvine.gamespot.com/the-behemoth/4005-38698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38700/", + "id": 38700, + "name": "Max Young", + "site_detail_url": "https://comicvine.gamespot.com/max-young/4005-38700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38730/", + "id": 38730, + "name": "Sticker", + "site_detail_url": "https://comicvine.gamespot.com/sticker/4005-38730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38744/", + "id": 38744, + "name": "Arrakhyl", + "site_detail_url": "https://comicvine.gamespot.com/arrakhyl/4005-38744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38745/", + "id": 38745, + "name": "Dr. Zaxon", + "site_detail_url": "https://comicvine.gamespot.com/dr-zaxon/4005-38745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38747/", + "id": 38747, + "name": "Ox", + "site_detail_url": "https://comicvine.gamespot.com/ox/4005-38747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38748/", + "id": 38748, + "name": "Dr. Karl Stragg", + "site_detail_url": "https://comicvine.gamespot.com/dr-karl-stragg/4005-38748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38766/", + "id": 38766, + "name": "Fat Man", + "site_detail_url": "https://comicvine.gamespot.com/fat-man/4005-38766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38784/", + "id": 38784, + "name": "Demon of the Mask", + "site_detail_url": "https://comicvine.gamespot.com/demon-of-the-mask/4005-38784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38804/", + "id": 38804, + "name": "King Arrkam", + "site_detail_url": "https://comicvine.gamespot.com/king-arrkam/4005-38804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38806/", + "id": 38806, + "name": "The Fourth Sleeper", + "site_detail_url": "https://comicvine.gamespot.com/the-fourth-sleeper/4005-38806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38807/", + "id": 38807, + "name": "Erica Wolfmann", + "site_detail_url": "https://comicvine.gamespot.com/erica-wolfmann/4005-38807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38819/", + "id": 38819, + "name": "Countess Stephanie De La Spirosa", + "site_detail_url": "https://comicvine.gamespot.com/countess-stephanie-de-la-spirosa/4005-38819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38820/", + "id": 38820, + "name": "Harris Hobbs", + "site_detail_url": "https://comicvine.gamespot.com/harris-hobbs/4005-38820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38821/", + "id": 38821, + "name": "Glorianna O'Breen", + "site_detail_url": "https://comicvine.gamespot.com/glorianna-obreen/4005-38821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38822/", + "id": 38822, + "name": "Organizer", + "site_detail_url": "https://comicvine.gamespot.com/organizer/4005-38822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38851/", + "id": 38851, + "name": "Major Uberhart", + "site_detail_url": "https://comicvine.gamespot.com/major-uberhart/4005-38851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38852/", + "id": 38852, + "name": "Dr. Cedric Rawlings", + "site_detail_url": "https://comicvine.gamespot.com/dr-cedric-rawlings/4005-38852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38853/", + "id": 38853, + "name": "Celia Rawlings", + "site_detail_url": "https://comicvine.gamespot.com/celia-rawlings/4005-38853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38854/", + "id": 38854, + "name": "Cat Burglar", + "site_detail_url": "https://comicvine.gamespot.com/cat-burglar/4005-38854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38863/", + "id": 38863, + "name": "Gregory O'Sullivan", + "site_detail_url": "https://comicvine.gamespot.com/gregory-osullivan/4005-38863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38868/", + "id": 38868, + "name": "Zantor", + "site_detail_url": "https://comicvine.gamespot.com/zantor/4005-38868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38880/", + "id": 38880, + "name": "Seaweed Man", + "site_detail_url": "https://comicvine.gamespot.com/seaweed-man/4005-38880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38898/", + "id": 38898, + "name": "Klaus Kruger", + "site_detail_url": "https://comicvine.gamespot.com/klaus-kruger/4005-38898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38915/", + "id": 38915, + "name": "Gargantus", + "site_detail_url": "https://comicvine.gamespot.com/gargantus/4005-38915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38916/", + "id": 38916, + "name": "Braggi", + "site_detail_url": "https://comicvine.gamespot.com/braggi/4005-38916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38937/", + "id": 38937, + "name": "Jack Smithers", + "site_detail_url": "https://comicvine.gamespot.com/jack-smithers/4005-38937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38949/", + "id": 38949, + "name": "Jordan Shaw", + "site_detail_url": "https://comicvine.gamespot.com/jordan-shaw/4005-38949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38982/", + "id": 38982, + "name": "Madam Macabre", + "site_detail_url": "https://comicvine.gamespot.com/madam-macabre/4005-38982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38983/", + "id": 38983, + "name": "Gogo", + "site_detail_url": "https://comicvine.gamespot.com/gogo/4005-38983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38984/", + "id": 38984, + "name": "Kalya", + "site_detail_url": "https://comicvine.gamespot.com/kalya/4005-38984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38994/", + "id": 38994, + "name": "Jerry Sapristi", + "site_detail_url": "https://comicvine.gamespot.com/jerry-sapristi/4005-38994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-38995/", + "id": 38995, + "name": "Haakun The Hunter", + "site_detail_url": "https://comicvine.gamespot.com/haakun-the-hunter/4005-38995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39022/", + "id": 39022, + "name": "Hunk Galloway", + "site_detail_url": "https://comicvine.gamespot.com/hunk-galloway/4005-39022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39023/", + "id": 39023, + "name": "Cal Merkle", + "site_detail_url": "https://comicvine.gamespot.com/cal-merkle/4005-39023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39031/", + "id": 39031, + "name": "Sergei Amkov", + "site_detail_url": "https://comicvine.gamespot.com/sergei-amkov/4005-39031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39032/", + "id": 39032, + "name": "Hardol The Healer", + "site_detail_url": "https://comicvine.gamespot.com/hardol-the-healer/4005-39032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39044/", + "id": 39044, + "name": "Ammitu", + "site_detail_url": "https://comicvine.gamespot.com/ammitu/4005-39044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39046/", + "id": 39046, + "name": "Howling Wolf", + "site_detail_url": "https://comicvine.gamespot.com/howling-wolf/4005-39046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39049/", + "id": 39049, + "name": "Prince Rivvak", + "site_detail_url": "https://comicvine.gamespot.com/prince-rivvak/4005-39049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39062/", + "id": 39062, + "name": "Warlord Wrogg", + "site_detail_url": "https://comicvine.gamespot.com/warlord-wrogg/4005-39062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39063/", + "id": 39063, + "name": "Arkin The Weak", + "site_detail_url": "https://comicvine.gamespot.com/arkin-the-weak/4005-39063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39086/", + "id": 39086, + "name": "Queen Kalthea", + "site_detail_url": "https://comicvine.gamespot.com/queen-kalthea/4005-39086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39105/", + "id": 39105, + "name": "Mr. Doll", + "site_detail_url": "https://comicvine.gamespot.com/mr-doll/4005-39105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39115/", + "id": 39115, + "name": "Torie Montroc", + "site_detail_url": "https://comicvine.gamespot.com/torie-montroc/4005-39115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39119/", + "id": 39119, + "name": "Anomaly", + "site_detail_url": "https://comicvine.gamespot.com/anomaly/4005-39119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39120/", + "id": 39120, + "name": "Blackie Gaxton", + "site_detail_url": "https://comicvine.gamespot.com/blackie-gaxton/4005-39120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39139/", + "id": 39139, + "name": "Veronica Vogue", + "site_detail_url": "https://comicvine.gamespot.com/veronica-vogue/4005-39139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39178/", + "id": 39178, + "name": "Dolgan", + "site_detail_url": "https://comicvine.gamespot.com/dolgan/4005-39178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39179/", + "id": 39179, + "name": "Alter-Ego", + "site_detail_url": "https://comicvine.gamespot.com/alter-ego/4005-39179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39183/", + "id": 39183, + "name": "Red Guardian (Lebedev)", + "site_detail_url": "https://comicvine.gamespot.com/red-guardian-lebedev/4005-39183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39203/", + "id": 39203, + "name": "Warp Angel", + "site_detail_url": "https://comicvine.gamespot.com/warp-angel/4005-39203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39240/", + "id": 39240, + "name": "Col. Clark", + "site_detail_url": "https://comicvine.gamespot.com/col-clark/4005-39240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39241/", + "id": 39241, + "name": "Abraham Whistler", + "site_detail_url": "https://comicvine.gamespot.com/abraham-whistler/4005-39241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39275/", + "id": 39275, + "name": "Thunder Cloud", + "site_detail_url": "https://comicvine.gamespot.com/thunder-cloud/4005-39275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39276/", + "id": 39276, + "name": "Tall Bear", + "site_detail_url": "https://comicvine.gamespot.com/tall-bear/4005-39276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39287/", + "id": 39287, + "name": "Laredo Smith", + "site_detail_url": "https://comicvine.gamespot.com/laredo-smith/4005-39287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39297/", + "id": 39297, + "name": "Marybelle Harte", + "site_detail_url": "https://comicvine.gamespot.com/marybelle-harte/4005-39297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39298/", + "id": 39298, + "name": "Sandu", + "site_detail_url": "https://comicvine.gamespot.com/sandu/4005-39298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39306/", + "id": 39306, + "name": "Moose Morgan", + "site_detail_url": "https://comicvine.gamespot.com/moose-morgan/4005-39306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39307/", + "id": 39307, + "name": "Dr. Karl Kort", + "site_detail_url": "https://comicvine.gamespot.com/dr-karl-kort/4005-39307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39314/", + "id": 39314, + "name": "Blade Barker", + "site_detail_url": "https://comicvine.gamespot.com/blade-barker/4005-39314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39323/", + "id": 39323, + "name": "Hagg the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/hagg-the-hunter/4005-39323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39324/", + "id": 39324, + "name": "Bret Marlowe", + "site_detail_url": "https://comicvine.gamespot.com/bret-marlowe/4005-39324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39368/", + "id": 39368, + "name": "Zarkorr", + "site_detail_url": "https://comicvine.gamespot.com/zarkorr/4005-39368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39369/", + "id": 39369, + "name": "The Great Cozo", + "site_detail_url": "https://comicvine.gamespot.com/the-great-cozo/4005-39369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39373/", + "id": 39373, + "name": "Kurrgos Robot", + "site_detail_url": "https://comicvine.gamespot.com/kurrgos-robot/4005-39373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39390/", + "id": 39390, + "name": "Shell", + "site_detail_url": "https://comicvine.gamespot.com/shell/4005-39390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39449/", + "id": 39449, + "name": "Monster From Mars", + "site_detail_url": "https://comicvine.gamespot.com/monster-from-mars/4005-39449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39459/", + "id": 39459, + "name": "Giscard Epurer", + "site_detail_url": "https://comicvine.gamespot.com/giscard-epurer/4005-39459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39510/", + "id": 39510, + "name": "Delphyne", + "site_detail_url": "https://comicvine.gamespot.com/delphyne/4005-39510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39511/", + "id": 39511, + "name": "Trenton Craft", + "site_detail_url": "https://comicvine.gamespot.com/trenton-craft/4005-39511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39512/", + "id": 39512, + "name": "Sam Hawk", + "site_detail_url": "https://comicvine.gamespot.com/sam-hawk/4005-39512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39546/", + "id": 39546, + "name": "Walter Carter", + "site_detail_url": "https://comicvine.gamespot.com/walter-carter/4005-39546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39547/", + "id": 39547, + "name": "The Crawling Creature", + "site_detail_url": "https://comicvine.gamespot.com/the-crawling-creature/4005-39547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39548/", + "id": 39548, + "name": "Hawk Brown", + "site_detail_url": "https://comicvine.gamespot.com/hawk-brown/4005-39548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39549/", + "id": 39549, + "name": "Luke Stokes", + "site_detail_url": "https://comicvine.gamespot.com/luke-stokes/4005-39549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39550/", + "id": 39550, + "name": "Montana Joe", + "site_detail_url": "https://comicvine.gamespot.com/montana-joe/4005-39550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39551/", + "id": 39551, + "name": "I.Q.", + "site_detail_url": "https://comicvine.gamespot.com/iq/4005-39551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39560/", + "id": 39560, + "name": "Manoo", + "site_detail_url": "https://comicvine.gamespot.com/manoo/4005-39560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39562/", + "id": 39562, + "name": "Automaton", + "site_detail_url": "https://comicvine.gamespot.com/automaton/4005-39562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39566/", + "id": 39566, + "name": "Termagent", + "site_detail_url": "https://comicvine.gamespot.com/termagent/4005-39566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39575/", + "id": 39575, + "name": "Banzai", + "site_detail_url": "https://comicvine.gamespot.com/banzai/4005-39575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39583/", + "id": 39583, + "name": "Torr", + "site_detail_url": "https://comicvine.gamespot.com/torr/4005-39583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39608/", + "id": 39608, + "name": "Mageth", + "site_detail_url": "https://comicvine.gamespot.com/mageth/4005-39608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39633/", + "id": 39633, + "name": "Gor-Kill", + "site_detail_url": "https://comicvine.gamespot.com/gor-kill/4005-39633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39645/", + "id": 39645, + "name": "Wolf Waco", + "site_detail_url": "https://comicvine.gamespot.com/wolf-waco/4005-39645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39646/", + "id": 39646, + "name": "Hammer Hogan", + "site_detail_url": "https://comicvine.gamespot.com/hammer-hogan/4005-39646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39664/", + "id": 39664, + "name": "Masked Raider", + "site_detail_url": "https://comicvine.gamespot.com/masked-raider/4005-39664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39672/", + "id": 39672, + "name": "Tyanon", + "site_detail_url": "https://comicvine.gamespot.com/tyanon/4005-39672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39693/", + "id": 39693, + "name": "Lt. Dan Denby", + "site_detail_url": "https://comicvine.gamespot.com/lt-dan-denby/4005-39693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39695/", + "id": 39695, + "name": "Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/grizzly/4005-39695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39819/", + "id": 39819, + "name": "Dzemal", + "site_detail_url": "https://comicvine.gamespot.com/dzemal/4005-39819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39822/", + "id": 39822, + "name": "Worm", + "site_detail_url": "https://comicvine.gamespot.com/worm/4005-39822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39876/", + "id": 39876, + "name": "Agent Anesthesia", + "site_detail_url": "https://comicvine.gamespot.com/agent-anesthesia/4005-39876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-39881/", + "id": 39881, + "name": "Chin Ti", + "site_detail_url": "https://comicvine.gamespot.com/chin-ti/4005-39881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40027/", + "id": 40027, + "name": "Breezy Collins", + "site_detail_url": "https://comicvine.gamespot.com/breezy-collins/4005-40027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40041/", + "id": 40041, + "name": "Bruce Dawson", + "site_detail_url": "https://comicvine.gamespot.com/bruce-dawson/4005-40041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40042/", + "id": 40042, + "name": "Don Bolling", + "site_detail_url": "https://comicvine.gamespot.com/don-bolling/4005-40042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40043/", + "id": 40043, + "name": "Emperor Szh", + "site_detail_url": "https://comicvine.gamespot.com/emperor-szh/4005-40043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40068/", + "id": 40068, + "name": "Hawkes", + "site_detail_url": "https://comicvine.gamespot.com/hawkes/4005-40068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40081/", + "id": 40081, + "name": "Corey Rand", + "site_detail_url": "https://comicvine.gamespot.com/corey-rand/4005-40081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40107/", + "id": 40107, + "name": "Turoq", + "site_detail_url": "https://comicvine.gamespot.com/turoq/4005-40107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40117/", + "id": 40117, + "name": "Lady Rosamund", + "site_detail_url": "https://comicvine.gamespot.com/lady-rosamund/4005-40117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40137/", + "id": 40137, + "name": "Tha-Korr", + "site_detail_url": "https://comicvine.gamespot.com/tha-korr/4005-40137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40147/", + "id": 40147, + "name": "Arrowhead", + "site_detail_url": "https://comicvine.gamespot.com/arrowhead/4005-40147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40164/", + "id": 40164, + "name": "Captain Fred Jory", + "site_detail_url": "https://comicvine.gamespot.com/captain-fred-jory/4005-40164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40196/", + "id": 40196, + "name": "Hypernova", + "site_detail_url": "https://comicvine.gamespot.com/hypernova/4005-40196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40221/", + "id": 40221, + "name": "White Death", + "site_detail_url": "https://comicvine.gamespot.com/white-death/4005-40221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40240/", + "id": 40240, + "name": "Battle Brady", + "site_detail_url": "https://comicvine.gamespot.com/battle-brady/4005-40240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40268/", + "id": 40268, + "name": "Devo", + "site_detail_url": "https://comicvine.gamespot.com/devo/4005-40268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40452/", + "id": 40452, + "name": "Gravity", + "site_detail_url": "https://comicvine.gamespot.com/gravity/4005-40452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40454/", + "id": 40454, + "name": "Hellion", + "site_detail_url": "https://comicvine.gamespot.com/hellion/4005-40454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40456/", + "id": 40456, + "name": "Rockslide", + "site_detail_url": "https://comicvine.gamespot.com/rockslide/4005-40456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40458/", + "id": 40458, + "name": "Anole", + "site_detail_url": "https://comicvine.gamespot.com/anole/4005-40458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40460/", + "id": 40460, + "name": "M", + "site_detail_url": "https://comicvine.gamespot.com/m/4005-40460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40470/", + "id": 40470, + "name": "Bucky Barnes", + "site_detail_url": "https://comicvine.gamespot.com/bucky-barnes/4005-40470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40475/", + "id": 40475, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/prodigy/4005-40475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40497/", + "id": 40497, + "name": "Death's Head", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head/4005-40497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40499/", + "id": 40499, + "name": "Maxov", + "site_detail_url": "https://comicvine.gamespot.com/maxov/4005-40499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40505/", + "id": 40505, + "name": "Wiccan", + "site_detail_url": "https://comicvine.gamespot.com/wiccan/4005-40505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40509/", + "id": 40509, + "name": "Surge", + "site_detail_url": "https://comicvine.gamespot.com/surge/4005-40509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40511/", + "id": 40511, + "name": "Wither", + "site_detail_url": "https://comicvine.gamespot.com/wither/4005-40511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40516/", + "id": 40516, + "name": "Cassie Lang", + "site_detail_url": "https://comicvine.gamespot.com/cassie-lang/4005-40516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40518/", + "id": 40518, + "name": "Speed", + "site_detail_url": "https://comicvine.gamespot.com/speed/4005-40518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40520/", + "id": 40520, + "name": "Debrii", + "site_detail_url": "https://comicvine.gamespot.com/debrii/4005-40520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40522/", + "id": 40522, + "name": "Maximus Lobo", + "site_detail_url": "https://comicvine.gamespot.com/maximus-lobo/4005-40522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40524/", + "id": 40524, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099/4005-40524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40526/", + "id": 40526, + "name": "Azazel", + "site_detail_url": "https://comicvine.gamespot.com/azazel/4005-40526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40530/", + "id": 40530, + "name": "Cru", + "site_detail_url": "https://comicvine.gamespot.com/cru/4005-40530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40531/", + "id": 40531, + "name": "Inertia", + "site_detail_url": "https://comicvine.gamespot.com/inertia/4005-40531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40533/", + "id": 40533, + "name": "Emil Burbank", + "site_detail_url": "https://comicvine.gamespot.com/emil-burbank/4005-40533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40535/", + "id": 40535, + "name": "Wallflower", + "site_detail_url": "https://comicvine.gamespot.com/wallflower/4005-40535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40537/", + "id": 40537, + "name": "Wind Dancer", + "site_detail_url": "https://comicvine.gamespot.com/wind-dancer/4005-40537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40539/", + "id": 40539, + "name": "Tag", + "site_detail_url": "https://comicvine.gamespot.com/tag/4005-40539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40542/", + "id": 40542, + "name": "Fusa", + "site_detail_url": "https://comicvine.gamespot.com/fusa/4005-40542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40543/", + "id": 40543, + "name": "Colonel", + "site_detail_url": "https://comicvine.gamespot.com/colonel/4005-40543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40561/", + "id": 40561, + "name": "Jeff Kaplan", + "site_detail_url": "https://comicvine.gamespot.com/jeff-kaplan/4005-40561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40564/", + "id": 40564, + "name": "William Stryker", + "site_detail_url": "https://comicvine.gamespot.com/william-stryker/4005-40564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40568/", + "id": 40568, + "name": "Bastion", + "site_detail_url": "https://comicvine.gamespot.com/bastion/4005-40568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40581/", + "id": 40581, + "name": "Rebecca Kaplan", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-kaplan/4005-40581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40583/", + "id": 40583, + "name": "Quentin Quire", + "site_detail_url": "https://comicvine.gamespot.com/quentin-quire/4005-40583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40586/", + "id": 40586, + "name": "Glob Herman", + "site_detail_url": "https://comicvine.gamespot.com/glob-herman/4005-40586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40587/", + "id": 40587, + "name": "Skybolt", + "site_detail_url": "https://comicvine.gamespot.com/skybolt/4005-40587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40588/", + "id": 40588, + "name": "Phaser", + "site_detail_url": "https://comicvine.gamespot.com/phaser/4005-40588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40589/", + "id": 40589, + "name": "Longstrike", + "site_detail_url": "https://comicvine.gamespot.com/longstrike/4005-40589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40593/", + "id": 40593, + "name": "Angel Salvadore", + "site_detail_url": "https://comicvine.gamespot.com/angel-salvadore/4005-40593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40594/", + "id": 40594, + "name": "Shirlee Bryant", + "site_detail_url": "https://comicvine.gamespot.com/shirlee-bryant/4005-40594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40597/", + "id": 40597, + "name": "Blindfold", + "site_detail_url": "https://comicvine.gamespot.com/blindfold/4005-40597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40598/", + "id": 40598, + "name": "Spider-Girl (Corazón)", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-corazon/4005-40598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40600/", + "id": 40600, + "name": "Darwin", + "site_detail_url": "https://comicvine.gamespot.com/darwin/4005-40600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40602/", + "id": 40602, + "name": "Mr. M", + "site_detail_url": "https://comicvine.gamespot.com/mr-m/4005-40602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40604/", + "id": 40604, + "name": "Gazer", + "site_detail_url": "https://comicvine.gamespot.com/gazer/4005-40604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40607/", + "id": 40607, + "name": "Isaiah Bradley", + "site_detail_url": "https://comicvine.gamespot.com/isaiah-bradley/4005-40607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40610/", + "id": 40610, + "name": "Old Lace", + "site_detail_url": "https://comicvine.gamespot.com/old-lace/4005-40610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40630/", + "id": 40630, + "name": "Kron Stone", + "site_detail_url": "https://comicvine.gamespot.com/kron-stone/4005-40630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40637/", + "id": 40637, + "name": "Typeface", + "site_detail_url": "https://comicvine.gamespot.com/typeface/4005-40637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40640/", + "id": 40640, + "name": "Wolf Cub", + "site_detail_url": "https://comicvine.gamespot.com/wolf-cub/4005-40640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40648/", + "id": 40648, + "name": "Tanaraq", + "site_detail_url": "https://comicvine.gamespot.com/tanaraq/4005-40648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40657/", + "id": 40657, + "name": "Network", + "site_detail_url": "https://comicvine.gamespot.com/network/4005-40657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40659/", + "id": 40659, + "name": "Sally Floyd", + "site_detail_url": "https://comicvine.gamespot.com/sally-floyd/4005-40659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40669/", + "id": 40669, + "name": "Bling!", + "site_detail_url": "https://comicvine.gamespot.com/bling/4005-40669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40670/", + "id": 40670, + "name": "Onyxx", + "site_detail_url": "https://comicvine.gamespot.com/onyxx/4005-40670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40671/", + "id": 40671, + "name": "Indra", + "site_detail_url": "https://comicvine.gamespot.com/indra/4005-40671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40672/", + "id": 40672, + "name": "Loa", + "site_detail_url": "https://comicvine.gamespot.com/loa/4005-40672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40673/", + "id": 40673, + "name": "Pixie", + "site_detail_url": "https://comicvine.gamespot.com/pixie/4005-40673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40674/", + "id": 40674, + "name": "Match", + "site_detail_url": "https://comicvine.gamespot.com/match/4005-40674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40676/", + "id": 40676, + "name": "Mutant 2099", + "site_detail_url": "https://comicvine.gamespot.com/mutant-2099/4005-40676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40677/", + "id": 40677, + "name": "Hulk 2099", + "site_detail_url": "https://comicvine.gamespot.com/hulk-2099/4005-40677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40678/", + "id": 40678, + "name": "J2", + "site_detail_url": "https://comicvine.gamespot.com/j2/4005-40678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40679/", + "id": 40679, + "name": "Vampire by Night", + "site_detail_url": "https://comicvine.gamespot.com/vampire-by-night/4005-40679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40702/", + "id": 40702, + "name": "Kiden Nixon", + "site_detail_url": "https://comicvine.gamespot.com/kiden-nixon/4005-40702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40704/", + "id": 40704, + "name": "Catiana", + "site_detail_url": "https://comicvine.gamespot.com/catiana/4005-40704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40706/", + "id": 40706, + "name": "Carmilla Black", + "site_detail_url": "https://comicvine.gamespot.com/carmilla-black/4005-40706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40708/", + "id": 40708, + "name": "Damian Tryp", + "site_detail_url": "https://comicvine.gamespot.com/damian-tryp/4005-40708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40717/", + "id": 40717, + "name": "Puck", + "site_detail_url": "https://comicvine.gamespot.com/puck/4005-40717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40767/", + "id": 40767, + "name": "Left-Winger", + "site_detail_url": "https://comicvine.gamespot.com/left-winger/4005-40767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40783/", + "id": 40783, + "name": "Toxin", + "site_detail_url": "https://comicvine.gamespot.com/toxin/4005-40783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40785/", + "id": 40785, + "name": "Johnny Dee", + "site_detail_url": "https://comicvine.gamespot.com/johnny-dee/4005-40785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40786/", + "id": 40786, + "name": "Jazz", + "site_detail_url": "https://comicvine.gamespot.com/jazz/4005-40786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40789/", + "id": 40789, + "name": "Ch'od", + "site_detail_url": "https://comicvine.gamespot.com/chod/4005-40789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40791/", + "id": 40791, + "name": "Phage", + "site_detail_url": "https://comicvine.gamespot.com/phage/4005-40791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40793/", + "id": 40793, + "name": "Riot", + "site_detail_url": "https://comicvine.gamespot.com/riot/4005-40793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40796/", + "id": 40796, + "name": "Agony", + "site_detail_url": "https://comicvine.gamespot.com/agony/4005-40796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40820/", + "id": 40820, + "name": "Aleksander Lukin", + "site_detail_url": "https://comicvine.gamespot.com/aleksander-lukin/4005-40820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40824/", + "id": 40824, + "name": "Maria Hill", + "site_detail_url": "https://comicvine.gamespot.com/maria-hill/4005-40824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40827/", + "id": 40827, + "name": "Ultragirl", + "site_detail_url": "https://comicvine.gamespot.com/ultragirl/4005-40827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40854/", + "id": 40854, + "name": "Petra", + "site_detail_url": "https://comicvine.gamespot.com/petra/4005-40854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40855/", + "id": 40855, + "name": "Sway", + "site_detail_url": "https://comicvine.gamespot.com/sway/4005-40855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40859/", + "id": 40859, + "name": "Microbe", + "site_detail_url": "https://comicvine.gamespot.com/microbe/4005-40859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40862/", + "id": 40862, + "name": "Danger", + "site_detail_url": "https://comicvine.gamespot.com/danger/4005-40862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40868/", + "id": 40868, + "name": "Ernst", + "site_detail_url": "https://comicvine.gamespot.com/ernst/4005-40868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40873/", + "id": 40873, + "name": "Entropy", + "site_detail_url": "https://comicvine.gamespot.com/entropy/4005-40873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40874/", + "id": 40874, + "name": "Epiphany", + "site_detail_url": "https://comicvine.gamespot.com/epiphany/4005-40874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40877/", + "id": 40877, + "name": "Fallen One", + "site_detail_url": "https://comicvine.gamespot.com/fallen-one/4005-40877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40878/", + "id": 40878, + "name": "Red Shift", + "site_detail_url": "https://comicvine.gamespot.com/red-shift/4005-40878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40885/", + "id": 40885, + "name": "Trance", + "site_detail_url": "https://comicvine.gamespot.com/trance/4005-40885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40901/", + "id": 40901, + "name": "Jack O'Lantern (Levins)", + "site_detail_url": "https://comicvine.gamespot.com/jack-olantern-levins/4005-40901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40902/", + "id": 40902, + "name": "D'Ken", + "site_detail_url": "https://comicvine.gamespot.com/dken/4005-40902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40905/", + "id": 40905, + "name": "Christine Palmer", + "site_detail_url": "https://comicvine.gamespot.com/christine-palmer/4005-40905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40909/", + "id": 40909, + "name": "Aliyah Bishop", + "site_detail_url": "https://comicvine.gamespot.com/aliyah-bishop/4005-40909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40916/", + "id": 40916, + "name": "Ladykiller", + "site_detail_url": "https://comicvine.gamespot.com/ladykiller/4005-40916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40922/", + "id": 40922, + "name": "Phyla-Vell", + "site_detail_url": "https://comicvine.gamespot.com/phyla-vell/4005-40922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40925/", + "id": 40925, + "name": "Geoffrey Wilder", + "site_detail_url": "https://comicvine.gamespot.com/geoffrey-wilder/4005-40925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40927/", + "id": 40927, + "name": "Catherine Wilder", + "site_detail_url": "https://comicvine.gamespot.com/catherine-wilder/4005-40927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40928/", + "id": 40928, + "name": "Dale Yorkes", + "site_detail_url": "https://comicvine.gamespot.com/dale-yorkes/4005-40928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40929/", + "id": 40929, + "name": "Frank Dean", + "site_detail_url": "https://comicvine.gamespot.com/frank-dean/4005-40929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40930/", + "id": 40930, + "name": "Stacey Yorkes", + "site_detail_url": "https://comicvine.gamespot.com/stacey-yorkes/4005-40930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40931/", + "id": 40931, + "name": "Leslie Dean", + "site_detail_url": "https://comicvine.gamespot.com/leslie-dean/4005-40931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40932/", + "id": 40932, + "name": "Victor Stein", + "site_detail_url": "https://comicvine.gamespot.com/victor-stein/4005-40932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40933/", + "id": 40933, + "name": "Janet Stein", + "site_detail_url": "https://comicvine.gamespot.com/janet-stein/4005-40933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40934/", + "id": 40934, + "name": "Gene Hayes", + "site_detail_url": "https://comicvine.gamespot.com/gene-hayes/4005-40934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40935/", + "id": 40935, + "name": "Alice Hayes", + "site_detail_url": "https://comicvine.gamespot.com/alice-hayes/4005-40935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40936/", + "id": 40936, + "name": "Robert Minoru", + "site_detail_url": "https://comicvine.gamespot.com/robert-minoru/4005-40936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40937/", + "id": 40937, + "name": "Tina Minoru", + "site_detail_url": "https://comicvine.gamespot.com/tina-minoru/4005-40937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40938/", + "id": 40938, + "name": "Stretch", + "site_detail_url": "https://comicvine.gamespot.com/stretch/4005-40938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40939/", + "id": 40939, + "name": "Hunter", + "site_detail_url": "https://comicvine.gamespot.com/hunter/4005-40939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40940/", + "id": 40940, + "name": "Lotus", + "site_detail_url": "https://comicvine.gamespot.com/lotus/4005-40940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40941/", + "id": 40941, + "name": "Oscar", + "site_detail_url": "https://comicvine.gamespot.com/oscar/4005-40941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40954/", + "id": 40954, + "name": "Slipstream", + "site_detail_url": "https://comicvine.gamespot.com/slipstream/4005-40954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40974/", + "id": 40974, + "name": "Alpha Ray", + "site_detail_url": "https://comicvine.gamespot.com/alpha-ray/4005-40974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40997/", + "id": 40997, + "name": "CF", + "site_detail_url": "https://comicvine.gamespot.com/cf/4005-40997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40998/", + "id": 40998, + "name": "Vincente", + "site_detail_url": "https://comicvine.gamespot.com/vincente/4005-40998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40999/", + "id": 40999, + "name": "Gerry", + "site_detail_url": "https://comicvine.gamespot.com/gerry/4005-40999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41001/", + "id": 41001, + "name": "Quietus", + "site_detail_url": "https://comicvine.gamespot.com/quietus/4005-41001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41002/", + "id": 41002, + "name": "Slocum", + "site_detail_url": "https://comicvine.gamespot.com/slocum/4005-41002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41006/", + "id": 41006, + "name": "Mangle", + "site_detail_url": "https://comicvine.gamespot.com/mangle/4005-41006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41007/", + "id": 41007, + "name": "Clegg", + "site_detail_url": "https://comicvine.gamespot.com/clegg/4005-41007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41008/", + "id": 41008, + "name": "Rex", + "site_detail_url": "https://comicvine.gamespot.com/rex/4005-41008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41010/", + "id": 41010, + "name": "Scintilla", + "site_detail_url": "https://comicvine.gamespot.com/scintilla/4005-41010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41011/", + "id": 41011, + "name": "Switchback", + "site_detail_url": "https://comicvine.gamespot.com/switchback/4005-41011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41014/", + "id": 41014, + "name": "Newt", + "site_detail_url": "https://comicvine.gamespot.com/newt/4005-41014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41018/", + "id": 41018, + "name": "Deathtrap", + "site_detail_url": "https://comicvine.gamespot.com/deathtrap/4005-41018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41021/", + "id": 41021, + "name": "Supreme Pontiff", + "site_detail_url": "https://comicvine.gamespot.com/supreme-pontiff/4005-41021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41033/", + "id": 41033, + "name": "Jack-In-The-Box", + "site_detail_url": "https://comicvine.gamespot.com/jack-in-the-box/4005-41033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41076/", + "id": 41076, + "name": "Huntsman", + "site_detail_url": "https://comicvine.gamespot.com/huntsman/4005-41076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41077/", + "id": 41077, + "name": "Ultimaton", + "site_detail_url": "https://comicvine.gamespot.com/ultimaton/4005-41077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41104/", + "id": 41104, + "name": "The Bug", + "site_detail_url": "https://comicvine.gamespot.com/the-bug/4005-41104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41121/", + "id": 41121, + "name": "Cerebella", + "site_detail_url": "https://comicvine.gamespot.com/cerebella/4005-41121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41122/", + "id": 41122, + "name": "Rubbermaid", + "site_detail_url": "https://comicvine.gamespot.com/rubbermaid/4005-41122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41124/", + "id": 41124, + "name": "Gentle", + "site_detail_url": "https://comicvine.gamespot.com/gentle/4005-41124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41149/", + "id": 41149, + "name": "Quill", + "site_detail_url": "https://comicvine.gamespot.com/quill/4005-41149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41157/", + "id": 41157, + "name": "Moonstalker", + "site_detail_url": "https://comicvine.gamespot.com/moonstalker/4005-41157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41158/", + "id": 41158, + "name": "Go Go Tomago", + "site_detail_url": "https://comicvine.gamespot.com/go-go-tomago/4005-41158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41178/", + "id": 41178, + "name": "Negasonic Teenage Warhead", + "site_detail_url": "https://comicvine.gamespot.com/negasonic-teenage-warhead/4005-41178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41196/", + "id": 41196, + "name": "Occulus", + "site_detail_url": "https://comicvine.gamespot.com/occulus/4005-41196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41198/", + "id": 41198, + "name": "Coachwhip", + "site_detail_url": "https://comicvine.gamespot.com/coachwhip/4005-41198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41199/", + "id": 41199, + "name": "Fer-de-Lance", + "site_detail_url": "https://comicvine.gamespot.com/fer-de-lance/4005-41199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41206/", + "id": 41206, + "name": "Lionheart", + "site_detail_url": "https://comicvine.gamespot.com/lionheart/4005-41206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41208/", + "id": 41208, + "name": "Korvus", + "site_detail_url": "https://comicvine.gamespot.com/korvus/4005-41208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41220/", + "id": 41220, + "name": "Z'Cann", + "site_detail_url": "https://comicvine.gamespot.com/zcann/4005-41220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41221/", + "id": 41221, + "name": "Nuro", + "site_detail_url": "https://comicvine.gamespot.com/nuro/4005-41221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41222/", + "id": 41222, + "name": "R'Tee", + "site_detail_url": "https://comicvine.gamespot.com/rtee/4005-41222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41223/", + "id": 41223, + "name": "Spunje", + "site_detail_url": "https://comicvine.gamespot.com/spunje/4005-41223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41224/", + "id": 41224, + "name": "Goroth", + "site_detail_url": "https://comicvine.gamespot.com/goroth/4005-41224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41244/", + "id": 41244, + "name": "Supercharger", + "site_detail_url": "https://comicvine.gamespot.com/supercharger/4005-41244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41270/", + "id": 41270, + "name": "M Twins", + "site_detail_url": "https://comicvine.gamespot.com/m-twins/4005-41270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41272/", + "id": 41272, + "name": "Spellbinder", + "site_detail_url": "https://comicvine.gamespot.com/spellbinder/4005-41272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41273/", + "id": 41273, + "name": "Sundragon", + "site_detail_url": "https://comicvine.gamespot.com/sundragon/4005-41273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41280/", + "id": 41280, + "name": "Trader", + "site_detail_url": "https://comicvine.gamespot.com/trader/4005-41280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41281/", + "id": 41281, + "name": "Sundown", + "site_detail_url": "https://comicvine.gamespot.com/sundown/4005-41281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41288/", + "id": 41288, + "name": "Vagabond", + "site_detail_url": "https://comicvine.gamespot.com/vagabond/4005-41288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41292/", + "id": 41292, + "name": "Black Racer", + "site_detail_url": "https://comicvine.gamespot.com/black-racer/4005-41292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41302/", + "id": 41302, + "name": "Fight-Man", + "site_detail_url": "https://comicvine.gamespot.com/fight-man/4005-41302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41306/", + "id": 41306, + "name": "Anteus", + "site_detail_url": "https://comicvine.gamespot.com/anteus/4005-41306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41307/", + "id": 41307, + "name": "Kilmer", + "site_detail_url": "https://comicvine.gamespot.com/kilmer/4005-41307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41310/", + "id": 41310, + "name": "Junction", + "site_detail_url": "https://comicvine.gamespot.com/junction/4005-41310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41312/", + "id": 41312, + "name": "Primogenitor", + "site_detail_url": "https://comicvine.gamespot.com/primogenitor/4005-41312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41315/", + "id": 41315, + "name": "Jaeger", + "site_detail_url": "https://comicvine.gamespot.com/jaeger/4005-41315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41316/", + "id": 41316, + "name": "Barbican", + "site_detail_url": "https://comicvine.gamespot.com/barbican/4005-41316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41318/", + "id": 41318, + "name": "Cerebra", + "site_detail_url": "https://comicvine.gamespot.com/cerebra/4005-41318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41319/", + "id": 41319, + "name": "Desert Ghost", + "site_detail_url": "https://comicvine.gamespot.com/desert-ghost/4005-41319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41320/", + "id": 41320, + "name": "Krystalin", + "site_detail_url": "https://comicvine.gamespot.com/krystalin/4005-41320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41321/", + "id": 41321, + "name": "Meanstreak", + "site_detail_url": "https://comicvine.gamespot.com/meanstreak/4005-41321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41322/", + "id": 41322, + "name": "Metalhead", + "site_detail_url": "https://comicvine.gamespot.com/metalhead/4005-41322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41323/", + "id": 41323, + "name": "Skullfire", + "site_detail_url": "https://comicvine.gamespot.com/skullfire/4005-41323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41324/", + "id": 41324, + "name": "Junkpile", + "site_detail_url": "https://comicvine.gamespot.com/junkpile/4005-41324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41326/", + "id": 41326, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4005-41326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41329/", + "id": 41329, + "name": "Leash", + "site_detail_url": "https://comicvine.gamespot.com/leash/4005-41329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41331/", + "id": 41331, + "name": "Shockwave", + "site_detail_url": "https://comicvine.gamespot.com/shockwave/4005-41331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41365/", + "id": 41365, + "name": "Auntie Maim", + "site_detail_url": "https://comicvine.gamespot.com/auntie-maim/4005-41365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41366/", + "id": 41366, + "name": "Billy The Kid", + "site_detail_url": "https://comicvine.gamespot.com/billy-the-kid/4005-41366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41413/", + "id": 41413, + "name": "Charlie Weiderman", + "site_detail_url": "https://comicvine.gamespot.com/charlie-weiderman/4005-41413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41414/", + "id": 41414, + "name": "Jolen", + "site_detail_url": "https://comicvine.gamespot.com/jolen/4005-41414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41415/", + "id": 41415, + "name": "Alaris", + "site_detail_url": "https://comicvine.gamespot.com/alaris/4005-41415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41416/", + "id": 41416, + "name": "San", + "site_detail_url": "https://comicvine.gamespot.com/san/4005-41416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41418/", + "id": 41418, + "name": "Queen", + "site_detail_url": "https://comicvine.gamespot.com/queen/4005-41418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41422/", + "id": 41422, + "name": "Brimstone Love", + "site_detail_url": "https://comicvine.gamespot.com/brimstone-love/4005-41422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41424/", + "id": 41424, + "name": "Bloodhawk", + "site_detail_url": "https://comicvine.gamespot.com/bloodhawk/4005-41424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41425/", + "id": 41425, + "name": "Book", + "site_detail_url": "https://comicvine.gamespot.com/book/4005-41425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41426/", + "id": 41426, + "name": "Breakdown", + "site_detail_url": "https://comicvine.gamespot.com/breakdown/4005-41426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41428/", + "id": 41428, + "name": "Broken Haiku", + "site_detail_url": "https://comicvine.gamespot.com/broken-haiku/4005-41428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41430/", + "id": 41430, + "name": "Chainlink", + "site_detail_url": "https://comicvine.gamespot.com/chainlink/4005-41430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41431/", + "id": 41431, + "name": "Chairman", + "site_detail_url": "https://comicvine.gamespot.com/chairman/4005-41431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41433/", + "id": 41433, + "name": "Machine Teen", + "site_detail_url": "https://comicvine.gamespot.com/machine-teen/4005-41433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41437/", + "id": 41437, + "name": "Clarion", + "site_detail_url": "https://comicvine.gamespot.com/clarion/4005-41437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41438/", + "id": 41438, + "name": "Contagion", + "site_detail_url": "https://comicvine.gamespot.com/contagion/4005-41438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41439/", + "id": 41439, + "name": "Darkson", + "site_detail_url": "https://comicvine.gamespot.com/darkson/4005-41439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41440/", + "id": 41440, + "name": "Daze", + "site_detail_url": "https://comicvine.gamespot.com/daze/4005-41440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41441/", + "id": 41441, + "name": "Dealer", + "site_detail_url": "https://comicvine.gamespot.com/dealer/4005-41441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41442/", + "id": 41442, + "name": "December", + "site_detail_url": "https://comicvine.gamespot.com/december/4005-41442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41443/", + "id": 41443, + "name": "La Lunatica", + "site_detail_url": "https://comicvine.gamespot.com/la-lunatica/4005-41443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41444/", + "id": 41444, + "name": "Dorian", + "site_detail_url": "https://comicvine.gamespot.com/dorian/4005-41444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41446/", + "id": 41446, + "name": "Frostbite", + "site_detail_url": "https://comicvine.gamespot.com/frostbite/4005-41446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41449/", + "id": 41449, + "name": "Serpentina", + "site_detail_url": "https://comicvine.gamespot.com/serpentina/4005-41449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41482/", + "id": 41482, + "name": "Leper Queen", + "site_detail_url": "https://comicvine.gamespot.com/leper-queen/4005-41482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41483/", + "id": 41483, + "name": "Daap", + "site_detail_url": "https://comicvine.gamespot.com/daap/4005-41483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41489/", + "id": 41489, + "name": "Kimura", + "site_detail_url": "https://comicvine.gamespot.com/kimura/4005-41489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41496/", + "id": 41496, + "name": "Khan", + "site_detail_url": "https://comicvine.gamespot.com/khan/4005-41496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41497/", + "id": 41497, + "name": "Vince Armstrong", + "site_detail_url": "https://comicvine.gamespot.com/vince-armstrong/4005-41497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41513/", + "id": 41513, + "name": "Lunatik", + "site_detail_url": "https://comicvine.gamespot.com/lunatik/4005-41513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41518/", + "id": 41518, + "name": "Charlie Preston", + "site_detail_url": "https://comicvine.gamespot.com/charlie-preston/4005-41518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41519/", + "id": 41519, + "name": "Jimmy Yon", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-yon/4005-41519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41520/", + "id": 41520, + "name": "Nick Armstrong", + "site_detail_url": "https://comicvine.gamespot.com/nick-armstrong/4005-41520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41521/", + "id": 41521, + "name": "Martin Roosevelt", + "site_detail_url": "https://comicvine.gamespot.com/martin-roosevelt/4005-41521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41524/", + "id": 41524, + "name": "Dre'kk", + "site_detail_url": "https://comicvine.gamespot.com/drekk/4005-41524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41526/", + "id": 41526, + "name": "Glitterspike", + "site_detail_url": "https://comicvine.gamespot.com/glitterspike/4005-41526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41528/", + "id": 41528, + "name": "Instant Karma", + "site_detail_url": "https://comicvine.gamespot.com/instant-karma/4005-41528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41532/", + "id": 41532, + "name": "Street", + "site_detail_url": "https://comicvine.gamespot.com/street/4005-41532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41547/", + "id": 41547, + "name": "Goom", + "site_detail_url": "https://comicvine.gamespot.com/goom/4005-41547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41554/", + "id": 41554, + "name": "Commander Kar'nn", + "site_detail_url": "https://comicvine.gamespot.com/commander-karnn/4005-41554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41555/", + "id": 41555, + "name": "General Galthan", + "site_detail_url": "https://comicvine.gamespot.com/general-galthan/4005-41555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41566/", + "id": 41566, + "name": "Monica Rappaccini", + "site_detail_url": "https://comicvine.gamespot.com/monica-rappaccini/4005-41566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41568/", + "id": 41568, + "name": "Tyler Stone", + "site_detail_url": "https://comicvine.gamespot.com/tyler-stone/4005-41568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41569/", + "id": 41569, + "name": "Skymax", + "site_detail_url": "https://comicvine.gamespot.com/skymax/4005-41569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41572/", + "id": 41572, + "name": "Nicodemus West", + "site_detail_url": "https://comicvine.gamespot.com/nicodemus-west/4005-41572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41576/", + "id": 41576, + "name": "Andy Anderson", + "site_detail_url": "https://comicvine.gamespot.com/andy-anderson/4005-41576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41577/", + "id": 41577, + "name": "Intello", + "site_detail_url": "https://comicvine.gamespot.com/intello/4005-41577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41604/", + "id": 41604, + "name": "Lucas Cross", + "site_detail_url": "https://comicvine.gamespot.com/lucas-cross/4005-41604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41605/", + "id": 41605, + "name": "Animus", + "site_detail_url": "https://comicvine.gamespot.com/animus/4005-41605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41610/", + "id": 41610, + "name": "Armless Tiger Man", + "site_detail_url": "https://comicvine.gamespot.com/armless-tiger-man/4005-41610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41620/", + "id": 41620, + "name": "Evangeline Whedon", + "site_detail_url": "https://comicvine.gamespot.com/evangeline-whedon/4005-41620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41623/", + "id": 41623, + "name": "Amun", + "site_detail_url": "https://comicvine.gamespot.com/amun/4005-41623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41638/", + "id": 41638, + "name": "Flubber", + "site_detail_url": "https://comicvine.gamespot.com/flubber/4005-41638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41639/", + "id": 41639, + "name": "Rain Boy", + "site_detail_url": "https://comicvine.gamespot.com/rain-boy/4005-41639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41640/", + "id": 41640, + "name": "Dryad", + "site_detail_url": "https://comicvine.gamespot.com/dryad/4005-41640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41642/", + "id": 41642, + "name": "Anita Blake", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake/4005-41642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41643/", + "id": 41643, + "name": "Rat King", + "site_detail_url": "https://comicvine.gamespot.com/rat-king/4005-41643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41644/", + "id": 41644, + "name": "Nikolaos", + "site_detail_url": "https://comicvine.gamespot.com/nikolaos/4005-41644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41645/", + "id": 41645, + "name": "Theresa", + "site_detail_url": "https://comicvine.gamespot.com/theresa/4005-41645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41646/", + "id": 41646, + "name": "Jean-Claude", + "site_detail_url": "https://comicvine.gamespot.com/jean-claude/4005-41646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41647/", + "id": 41647, + "name": "Zachary", + "site_detail_url": "https://comicvine.gamespot.com/zachary/4005-41647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41649/", + "id": 41649, + "name": "Winter", + "site_detail_url": "https://comicvine.gamespot.com/winter/4005-41649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41653/", + "id": 41653, + "name": "Valentine", + "site_detail_url": "https://comicvine.gamespot.com/valentine/4005-41653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41660/", + "id": 41660, + "name": "Michael Nowlan", + "site_detail_url": "https://comicvine.gamespot.com/michael-nowlan/4005-41660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41661/", + "id": 41661, + "name": "Runner", + "site_detail_url": "https://comicvine.gamespot.com/runner/4005-41661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41663/", + "id": 41663, + "name": "Russian", + "site_detail_url": "https://comicvine.gamespot.com/russian/4005-41663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41667/", + "id": 41667, + "name": "S'Byll", + "site_detail_url": "https://comicvine.gamespot.com/sbyll/4005-41667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41668/", + "id": 41668, + "name": "Skull The Slayer", + "site_detail_url": "https://comicvine.gamespot.com/skull-the-slayer/4005-41668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41669/", + "id": 41669, + "name": "Juston Seyfert", + "site_detail_url": "https://comicvine.gamespot.com/juston-seyfert/4005-41669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41675/", + "id": 41675, + "name": "Attackoid", + "site_detail_url": "https://comicvine.gamespot.com/attackoid/4005-41675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41689/", + "id": 41689, + "name": "Chrome", + "site_detail_url": "https://comicvine.gamespot.com/chrome/4005-41689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41698/", + "id": 41698, + "name": "Kidogo", + "site_detail_url": "https://comicvine.gamespot.com/kidogo/4005-41698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41699/", + "id": 41699, + "name": "Specter", + "site_detail_url": "https://comicvine.gamespot.com/specter/4005-41699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41700/", + "id": 41700, + "name": "Preview", + "site_detail_url": "https://comicvine.gamespot.com/preview/4005-41700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41701/", + "id": 41701, + "name": "Aero", + "site_detail_url": "https://comicvine.gamespot.com/aero/4005-41701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41702/", + "id": 41702, + "name": "Dirk Anger", + "site_detail_url": "https://comicvine.gamespot.com/dirk-anger/4005-41702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41703/", + "id": 41703, + "name": "DJ", + "site_detail_url": "https://comicvine.gamespot.com/dj/4005-41703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41704/", + "id": 41704, + "name": "Litterbug", + "site_detail_url": "https://comicvine.gamespot.com/litterbug/4005-41704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41713/", + "id": 41713, + "name": "Ch'Vayre", + "site_detail_url": "https://comicvine.gamespot.com/chvayre/4005-41713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41714/", + "id": 41714, + "name": "Khemsa", + "site_detail_url": "https://comicvine.gamespot.com/khemsa/4005-41714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41719/", + "id": 41719, + "name": "Deadzone", + "site_detail_url": "https://comicvine.gamespot.com/deadzone/4005-41719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41722/", + "id": 41722, + "name": "Die-Cut", + "site_detail_url": "https://comicvine.gamespot.com/die-cut/4005-41722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41723/", + "id": 41723, + "name": "Death's Head II", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-ii/4005-41723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41724/", + "id": 41724, + "name": "Death Metal", + "site_detail_url": "https://comicvine.gamespot.com/death-metal/4005-41724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41726/", + "id": 41726, + "name": "Black Axe", + "site_detail_url": "https://comicvine.gamespot.com/black-axe/4005-41726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41727/", + "id": 41727, + "name": "Bloodseed", + "site_detail_url": "https://comicvine.gamespot.com/bloodseed/4005-41727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41730/", + "id": 41730, + "name": "Philip Gavin", + "site_detail_url": "https://comicvine.gamespot.com/philip-gavin/4005-41730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41731/", + "id": 41731, + "name": "Tom Skylark", + "site_detail_url": "https://comicvine.gamespot.com/tom-skylark/4005-41731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41732/", + "id": 41732, + "name": "Rover", + "site_detail_url": "https://comicvine.gamespot.com/rover/4005-41732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41733/", + "id": 41733, + "name": "Tito Bohusk, Jr.", + "site_detail_url": "https://comicvine.gamespot.com/tito-bohusk-jr/4005-41733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41736/", + "id": 41736, + "name": "Shock", + "site_detail_url": "https://comicvine.gamespot.com/shock/4005-41736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41738/", + "id": 41738, + "name": "Ero", + "site_detail_url": "https://comicvine.gamespot.com/ero/4005-41738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41747/", + "id": 41747, + "name": "Cammi", + "site_detail_url": "https://comicvine.gamespot.com/cammi/4005-41747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41748/", + "id": 41748, + "name": "Ravenous", + "site_detail_url": "https://comicvine.gamespot.com/ravenous/4005-41748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41749/", + "id": 41749, + "name": "Demeityr", + "site_detail_url": "https://comicvine.gamespot.com/demeityr/4005-41749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41750/", + "id": 41750, + "name": "Number None", + "site_detail_url": "https://comicvine.gamespot.com/number-none/4005-41750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41755/", + "id": 41755, + "name": "Lilah", + "site_detail_url": "https://comicvine.gamespot.com/lilah/4005-41755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41756/", + "id": 41756, + "name": "Shathra", + "site_detail_url": "https://comicvine.gamespot.com/shathra/4005-41756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41819/", + "id": 41819, + "name": "American Eagle", + "site_detail_url": "https://comicvine.gamespot.com/american-eagle/4005-41819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41820/", + "id": 41820, + "name": "Blackout", + "site_detail_url": "https://comicvine.gamespot.com/blackout/4005-41820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41826/", + "id": 41826, + "name": "Freedom Ring", + "site_detail_url": "https://comicvine.gamespot.com/freedom-ring/4005-41826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41840/", + "id": 41840, + "name": "Ariel", + "site_detail_url": "https://comicvine.gamespot.com/ariel/4005-41840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41842/", + "id": 41842, + "name": "Atum the God Eater", + "site_detail_url": "https://comicvine.gamespot.com/atum-the-god-eater/4005-41842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41843/", + "id": 41843, + "name": "Astronomer", + "site_detail_url": "https://comicvine.gamespot.com/astronomer/4005-41843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41846/", + "id": 41846, + "name": "Chicken Wings", + "site_detail_url": "https://comicvine.gamespot.com/chicken-wings/4005-41846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41847/", + "id": 41847, + "name": "MeMe", + "site_detail_url": "https://comicvine.gamespot.com/meme/4005-41847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41866/", + "id": 41866, + "name": "Nuke", + "site_detail_url": "https://comicvine.gamespot.com/nuke/4005-41866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41867/", + "id": 41867, + "name": "Sylene", + "site_detail_url": "https://comicvine.gamespot.com/sylene/4005-41867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41868/", + "id": 41868, + "name": "Warp", + "site_detail_url": "https://comicvine.gamespot.com/warp/4005-41868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41869/", + "id": 41869, + "name": "Bullet Biker", + "site_detail_url": "https://comicvine.gamespot.com/bullet-biker/4005-41869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41879/", + "id": 41879, + "name": "Blazing Skull", + "site_detail_url": "https://comicvine.gamespot.com/blazing-skull/4005-41879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41880/", + "id": 41880, + "name": "Blonde Phantom", + "site_detail_url": "https://comicvine.gamespot.com/blonde-phantom/4005-41880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41881/", + "id": 41881, + "name": "El Muerto", + "site_detail_url": "https://comicvine.gamespot.com/el-muerto/4005-41881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41885/", + "id": 41885, + "name": "Roland Deschain", + "site_detail_url": "https://comicvine.gamespot.com/roland-deschain/4005-41885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41886/", + "id": 41886, + "name": "Cuthbert Allgood", + "site_detail_url": "https://comicvine.gamespot.com/cuthbert-allgood/4005-41886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41887/", + "id": 41887, + "name": "Alain Johns", + "site_detail_url": "https://comicvine.gamespot.com/alain-johns/4005-41887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41912/", + "id": 41912, + "name": "Splice", + "site_detail_url": "https://comicvine.gamespot.com/splice/4005-41912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41916/", + "id": 41916, + "name": "Underworld", + "site_detail_url": "https://comicvine.gamespot.com/underworld/4005-41916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41917/", + "id": 41917, + "name": "The Hood", + "site_detail_url": "https://comicvine.gamespot.com/the-hood/4005-41917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41930/", + "id": 41930, + "name": "Tapping Tommy", + "site_detail_url": "https://comicvine.gamespot.com/tapping-tommy/4005-41930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41932/", + "id": 41932, + "name": "Bobcat", + "site_detail_url": "https://comicvine.gamespot.com/bobcat/4005-41932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41945/", + "id": 41945, + "name": "Lilith Drake", + "site_detail_url": "https://comicvine.gamespot.com/lilith-drake/4005-41945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41965/", + "id": 41965, + "name": "Tabur", + "site_detail_url": "https://comicvine.gamespot.com/tabur/4005-41965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41988/", + "id": 41988, + "name": "Mattie Franklin", + "site_detail_url": "https://comicvine.gamespot.com/mattie-franklin/4005-41988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-41990/", + "id": 41990, + "name": "Kingmaker", + "site_detail_url": "https://comicvine.gamespot.com/kingmaker/4005-41990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42037/", + "id": 42037, + "name": "Caiera", + "site_detail_url": "https://comicvine.gamespot.com/caiera/4005-42037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42038/", + "id": 42038, + "name": "Ricadonna", + "site_detail_url": "https://comicvine.gamespot.com/ricadonna/4005-42038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42043/", + "id": 42043, + "name": "Makeshift", + "site_detail_url": "https://comicvine.gamespot.com/makeshift/4005-42043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42044/", + "id": 42044, + "name": "Rive", + "site_detail_url": "https://comicvine.gamespot.com/rive/4005-42044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42045/", + "id": 42045, + "name": "Vera Gemini", + "site_detail_url": "https://comicvine.gamespot.com/vera-gemini/4005-42045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42047/", + "id": 42047, + "name": "Agent Cheesecake", + "site_detail_url": "https://comicvine.gamespot.com/agent-cheesecake/4005-42047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42048/", + "id": 42048, + "name": "Tippy-Toe", + "site_detail_url": "https://comicvine.gamespot.com/tippy-toe/4005-42048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42049/", + "id": 42049, + "name": "Dr. Tannenbaum", + "site_detail_url": "https://comicvine.gamespot.com/dr-tannenbaum/4005-42049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42050/", + "id": 42050, + "name": "Terminizer", + "site_detail_url": "https://comicvine.gamespot.com/terminizer/4005-42050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42051/", + "id": 42051, + "name": "Ferocia", + "site_detail_url": "https://comicvine.gamespot.com/ferocia/4005-42051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42052/", + "id": 42052, + "name": "Fade", + "site_detail_url": "https://comicvine.gamespot.com/fade/4005-42052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42053/", + "id": 42053, + "name": "Vegas", + "site_detail_url": "https://comicvine.gamespot.com/vegas/4005-42053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42080/", + "id": 42080, + "name": "Protector", + "site_detail_url": "https://comicvine.gamespot.com/protector/4005-42080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42081/", + "id": 42081, + "name": "Franklin Storm", + "site_detail_url": "https://comicvine.gamespot.com/franklin-storm/4005-42081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42091/", + "id": 42091, + "name": "Black Swan", + "site_detail_url": "https://comicvine.gamespot.com/black-swan/4005-42091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42092/", + "id": 42092, + "name": "Kid Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/kid-deadpool/4005-42092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42095/", + "id": 42095, + "name": "Ananastasia", + "site_detail_url": "https://comicvine.gamespot.com/ananastasia/4005-42095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42131/", + "id": 42131, + "name": "Sherry the Showgirl", + "site_detail_url": "https://comicvine.gamespot.com/sherry-the-showgirl/4005-42131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42144/", + "id": 42144, + "name": "Jann of the Jungle", + "site_detail_url": "https://comicvine.gamespot.com/jann-of-the-jungle/4005-42144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42145/", + "id": 42145, + "name": "Fire-Eater", + "site_detail_url": "https://comicvine.gamespot.com/fire-eater/4005-42145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42146/", + "id": 42146, + "name": "Raja", + "site_detail_url": "https://comicvine.gamespot.com/raja/4005-42146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42147/", + "id": 42147, + "name": "Teena", + "site_detail_url": "https://comicvine.gamespot.com/teena/4005-42147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42162/", + "id": 42162, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-42162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42191/", + "id": 42191, + "name": "Throttle", + "site_detail_url": "https://comicvine.gamespot.com/throttle/4005-42191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42192/", + "id": 42192, + "name": "Tempest", + "site_detail_url": "https://comicvine.gamespot.com/tempest/4005-42192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42193/", + "id": 42193, + "name": "Decay", + "site_detail_url": "https://comicvine.gamespot.com/decay/4005-42193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42197/", + "id": 42197, + "name": "Lupa", + "site_detail_url": "https://comicvine.gamespot.com/lupa/4005-42197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42198/", + "id": 42198, + "name": "Hellcow", + "site_detail_url": "https://comicvine.gamespot.com/hellcow/4005-42198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42205/", + "id": 42205, + "name": "Anything Man", + "site_detail_url": "https://comicvine.gamespot.com/anything-man/4005-42205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42210/", + "id": 42210, + "name": "Modo", + "site_detail_url": "https://comicvine.gamespot.com/modo/4005-42210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42212/", + "id": 42212, + "name": "Strator Umbridge", + "site_detail_url": "https://comicvine.gamespot.com/strator-umbridge/4005-42212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42213/", + "id": 42213, + "name": "Vinnie", + "site_detail_url": "https://comicvine.gamespot.com/vinnie/4005-42213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42223/", + "id": 42223, + "name": "Justicer Bull", + "site_detail_url": "https://comicvine.gamespot.com/justicer-bull/4005-42223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42236/", + "id": 42236, + "name": "Chemistro", + "site_detail_url": "https://comicvine.gamespot.com/chemistro/4005-42236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42246/", + "id": 42246, + "name": "Charley Davidson", + "site_detail_url": "https://comicvine.gamespot.com/charley-davidson/4005-42246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42247/", + "id": 42247, + "name": "Lawrence Limburger", + "site_detail_url": "https://comicvine.gamespot.com/lawrence-limburger/4005-42247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42248/", + "id": 42248, + "name": "Greasepit", + "site_detail_url": "https://comicvine.gamespot.com/greasepit/4005-42248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42249/", + "id": 42249, + "name": "Dr. Karbunkle", + "site_detail_url": "https://comicvine.gamespot.com/dr-karbunkle/4005-42249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42250/", + "id": 42250, + "name": "Fred the Mutant", + "site_detail_url": "https://comicvine.gamespot.com/fred-the-mutant/4005-42250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42263/", + "id": 42263, + "name": "Argent", + "site_detail_url": "https://comicvine.gamespot.com/argent/4005-42263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42265/", + "id": 42265, + "name": "Hex", + "site_detail_url": "https://comicvine.gamespot.com/hex/4005-42265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42279/", + "id": 42279, + "name": "Willie McCoy", + "site_detail_url": "https://comicvine.gamespot.com/willie-mccoy/4005-42279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42285/", + "id": 42285, + "name": "Aubrey", + "site_detail_url": "https://comicvine.gamespot.com/aubrey/4005-42285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42308/", + "id": 42308, + "name": "Agent Lange", + "site_detail_url": "https://comicvine.gamespot.com/agent-lange/4005-42308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42333/", + "id": 42333, + "name": "Preak", + "site_detail_url": "https://comicvine.gamespot.com/preak/4005-42333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42334/", + "id": 42334, + "name": "Praxagora", + "site_detail_url": "https://comicvine.gamespot.com/praxagora/4005-42334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42336/", + "id": 42336, + "name": "Pandemic", + "site_detail_url": "https://comicvine.gamespot.com/pandemic/4005-42336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42391/", + "id": 42391, + "name": "General Haight", + "site_detail_url": "https://comicvine.gamespot.com/general-haight/4005-42391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42392/", + "id": 42392, + "name": "Confessor", + "site_detail_url": "https://comicvine.gamespot.com/confessor/4005-42392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42393/", + "id": 42393, + "name": "Tribune Haight", + "site_detail_url": "https://comicvine.gamespot.com/tribune-haight/4005-42393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42394/", + "id": 42394, + "name": "Frisco", + "site_detail_url": "https://comicvine.gamespot.com/frisco/4005-42394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42402/", + "id": 42402, + "name": "Americop", + "site_detail_url": "https://comicvine.gamespot.com/americop/4005-42402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42412/", + "id": 42412, + "name": "Veronica King", + "site_detail_url": "https://comicvine.gamespot.com/veronica-king/4005-42412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42422/", + "id": 42422, + "name": "Jon Spectre", + "site_detail_url": "https://comicvine.gamespot.com/jon-spectre/4005-42422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42441/", + "id": 42441, + "name": "Chronok", + "site_detail_url": "https://comicvine.gamespot.com/chronok/4005-42441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42454/", + "id": 42454, + "name": "Susan Delgado", + "site_detail_url": "https://comicvine.gamespot.com/susan-delgado/4005-42454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42498/", + "id": 42498, + "name": "Shockjock", + "site_detail_url": "https://comicvine.gamespot.com/shockjock/4005-42498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42501/", + "id": 42501, + "name": "Daken", + "site_detail_url": "https://comicvine.gamespot.com/daken/4005-42501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42513/", + "id": 42513, + "name": "Black Marvel", + "site_detail_url": "https://comicvine.gamespot.com/black-marvel/4005-42513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42522/", + "id": 42522, + "name": "Sepulchre", + "site_detail_url": "https://comicvine.gamespot.com/sepulchre/4005-42522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42526/", + "id": 42526, + "name": "N'Dare Munroe", + "site_detail_url": "https://comicvine.gamespot.com/ndare-munroe/4005-42526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42529/", + "id": 42529, + "name": "Gladiatrix", + "site_detail_url": "https://comicvine.gamespot.com/gladiatrix/4005-42529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42543/", + "id": 42543, + "name": "D'Spayre", + "site_detail_url": "https://comicvine.gamespot.com/dspayre/4005-42543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42547/", + "id": 42547, + "name": "Undertow", + "site_detail_url": "https://comicvine.gamespot.com/undertow/4005-42547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42567/", + "id": 42567, + "name": "Xenophage", + "site_detail_url": "https://comicvine.gamespot.com/xenophage/4005-42567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42604/", + "id": 42604, + "name": "Korath the Pursuer", + "site_detail_url": "https://comicvine.gamespot.com/korath-the-pursuer/4005-42604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42605/", + "id": 42605, + "name": "Skreet", + "site_detail_url": "https://comicvine.gamespot.com/skreet/4005-42605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42606/", + "id": 42606, + "name": "Spirit", + "site_detail_url": "https://comicvine.gamespot.com/spirit/4005-42606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42607/", + "id": 42607, + "name": "Aegis", + "site_detail_url": "https://comicvine.gamespot.com/aegis/4005-42607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42608/", + "id": 42608, + "name": "Tenebrous", + "site_detail_url": "https://comicvine.gamespot.com/tenebrous/4005-42608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42609/", + "id": 42609, + "name": "R'Kin", + "site_detail_url": "https://comicvine.gamespot.com/rkin/4005-42609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42654/", + "id": 42654, + "name": "Sir Raston", + "site_detail_url": "https://comicvine.gamespot.com/sir-raston/4005-42654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42655/", + "id": 42655, + "name": "Wildrun", + "site_detail_url": "https://comicvine.gamespot.com/wildrun/4005-42655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42657/", + "id": 42657, + "name": "Apocryphus", + "site_detail_url": "https://comicvine.gamespot.com/apocryphus/4005-42657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42659/", + "id": 42659, + "name": "Raa", + "site_detail_url": "https://comicvine.gamespot.com/raa/4005-42659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42660/", + "id": 42660, + "name": "Deathunt 9000", + "site_detail_url": "https://comicvine.gamespot.com/deathunt-9000/4005-42660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42661/", + "id": 42661, + "name": "Ssith", + "site_detail_url": "https://comicvine.gamespot.com/ssith/4005-42661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42662/", + "id": 42662, + "name": "Tyndar", + "site_detail_url": "https://comicvine.gamespot.com/tyndar/4005-42662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42720/", + "id": 42720, + "name": "Wu Ao-Shi", + "site_detail_url": "https://comicvine.gamespot.com/wu-ao-shi/4005-42720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42733/", + "id": 42733, + "name": "El Dorado", + "site_detail_url": "https://comicvine.gamespot.com/el-dorado/4005-42733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42738/", + "id": 42738, + "name": "Barracuda", + "site_detail_url": "https://comicvine.gamespot.com/barracuda/4005-42738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42764/", + "id": 42764, + "name": "Hannah Connover", + "site_detail_url": "https://comicvine.gamespot.com/hannah-connover/4005-42764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42765/", + "id": 42765, + "name": "Reverend Connover", + "site_detail_url": "https://comicvine.gamespot.com/reverend-connover/4005-42765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42766/", + "id": 42766, + "name": "Josey Thomas", + "site_detail_url": "https://comicvine.gamespot.com/josey-thomas/4005-42766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42767/", + "id": 42767, + "name": "Brood Empress", + "site_detail_url": "https://comicvine.gamespot.com/brood-empress/4005-42767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42768/", + "id": 42768, + "name": "Harry Palmer", + "site_detail_url": "https://comicvine.gamespot.com/harry-palmer/4005-42768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42770/", + "id": 42770, + "name": "Captain Midlands", + "site_detail_url": "https://comicvine.gamespot.com/captain-midlands/4005-42770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42771/", + "id": 42771, + "name": "John the Skrull", + "site_detail_url": "https://comicvine.gamespot.com/john-the-skrull/4005-42771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42772/", + "id": 42772, + "name": "Tink", + "site_detail_url": "https://comicvine.gamespot.com/tink/4005-42772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42773/", + "id": 42773, + "name": "Maureen Raven", + "site_detail_url": "https://comicvine.gamespot.com/maureen-raven/4005-42773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42778/", + "id": 42778, + "name": "Thunderclap", + "site_detail_url": "https://comicvine.gamespot.com/thunderclap/4005-42778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42782/", + "id": 42782, + "name": "Komodo", + "site_detail_url": "https://comicvine.gamespot.com/komodo/4005-42782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42783/", + "id": 42783, + "name": "Cloud 9", + "site_detail_url": "https://comicvine.gamespot.com/cloud-9/4005-42783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42784/", + "id": 42784, + "name": "Hardball", + "site_detail_url": "https://comicvine.gamespot.com/hardball/4005-42784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42785/", + "id": 42785, + "name": "Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/gauntlet/4005-42785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42786/", + "id": 42786, + "name": "Baron Von Blitzschlag", + "site_detail_url": "https://comicvine.gamespot.com/baron-von-blitzschlag/4005-42786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42787/", + "id": 42787, + "name": "MVP", + "site_detail_url": "https://comicvine.gamespot.com/mvp/4005-42787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42788/", + "id": 42788, + "name": "Trauma", + "site_detail_url": "https://comicvine.gamespot.com/trauma/4005-42788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42791/", + "id": 42791, + "name": "Skyhawk", + "site_detail_url": "https://comicvine.gamespot.com/skyhawk/4005-42791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42798/", + "id": 42798, + "name": "Magician", + "site_detail_url": "https://comicvine.gamespot.com/magician/4005-42798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42799/", + "id": 42799, + "name": "Dread Rorkannu", + "site_detail_url": "https://comicvine.gamespot.com/dread-rorkannu/4005-42799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42803/", + "id": 42803, + "name": "Wind-Warrior", + "site_detail_url": "https://comicvine.gamespot.com/wind-warrior/4005-42803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42804/", + "id": 42804, + "name": "The Holy", + "site_detail_url": "https://comicvine.gamespot.com/the-holy/4005-42804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42805/", + "id": 42805, + "name": "Mr. Payback", + "site_detail_url": "https://comicvine.gamespot.com/mr-payback/4005-42805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42810/", + "id": 42810, + "name": "Dolph", + "site_detail_url": "https://comicvine.gamespot.com/dolph/4005-42810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42811/", + "id": 42811, + "name": "Robert", + "site_detail_url": "https://comicvine.gamespot.com/robert/4005-42811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42812/", + "id": 42812, + "name": "Catherine Maison", + "site_detail_url": "https://comicvine.gamespot.com/catherine-maison/4005-42812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42813/", + "id": 42813, + "name": "Monica Vespucci", + "site_detail_url": "https://comicvine.gamespot.com/monica-vespucci/4005-42813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42814/", + "id": 42814, + "name": "Buzz", + "site_detail_url": "https://comicvine.gamespot.com/buzz/4005-42814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42815/", + "id": 42815, + "name": "Burchard", + "site_detail_url": "https://comicvine.gamespot.com/burchard/4005-42815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42825/", + "id": 42825, + "name": "Henri Lebeau", + "site_detail_url": "https://comicvine.gamespot.com/henri-lebeau/4005-42825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42829/", + "id": 42829, + "name": "Carlos Cruz", + "site_detail_url": "https://comicvine.gamespot.com/carlos-cruz/4005-42829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42830/", + "id": 42830, + "name": "Jimmy Pierce", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-pierce/4005-42830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42846/", + "id": 42846, + "name": "Cloud", + "site_detail_url": "https://comicvine.gamespot.com/cloud/4005-42846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42848/", + "id": 42848, + "name": "Icemaster", + "site_detail_url": "https://comicvine.gamespot.com/icemaster/4005-42848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42849/", + "id": 42849, + "name": "Shatterfist", + "site_detail_url": "https://comicvine.gamespot.com/shatterfist/4005-42849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42853/", + "id": 42853, + "name": "Captain Rectitude", + "site_detail_url": "https://comicvine.gamespot.com/captain-rectitude/4005-42853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42854/", + "id": 42854, + "name": "Equinox", + "site_detail_url": "https://comicvine.gamespot.com/equinox/4005-42854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42855/", + "id": 42855, + "name": "Brass", + "site_detail_url": "https://comicvine.gamespot.com/brass/4005-42855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42869/", + "id": 42869, + "name": "N'astirh", + "site_detail_url": "https://comicvine.gamespot.com/nastirh/4005-42869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42877/", + "id": 42877, + "name": "Edward", + "site_detail_url": "https://comicvine.gamespot.com/edward/4005-42877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42879/", + "id": 42879, + "name": "Manny Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/manny-rodriguez/4005-42879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42880/", + "id": 42880, + "name": "Ronnie Sims", + "site_detail_url": "https://comicvine.gamespot.com/ronnie-sims/4005-42880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42882/", + "id": 42882, + "name": "Mary", + "site_detail_url": "https://comicvine.gamespot.com/mary/4005-42882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42884/", + "id": 42884, + "name": "Bert Vaughn", + "site_detail_url": "https://comicvine.gamespot.com/bert-vaughn/4005-42884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42887/", + "id": 42887, + "name": "Jamison", + "site_detail_url": "https://comicvine.gamespot.com/jamison/4005-42887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42895/", + "id": 42895, + "name": "Ashake", + "site_detail_url": "https://comicvine.gamespot.com/ashake/4005-42895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42899/", + "id": 42899, + "name": "Boomslang", + "site_detail_url": "https://comicvine.gamespot.com/boomslang/4005-42899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42900/", + "id": 42900, + "name": "Rock Python", + "site_detail_url": "https://comicvine.gamespot.com/rock-python/4005-42900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42905/", + "id": 42905, + "name": "Deathlok (Collins)", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-collins/4005-42905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42909/", + "id": 42909, + "name": "Cybertooth", + "site_detail_url": "https://comicvine.gamespot.com/cybertooth/4005-42909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42910/", + "id": 42910, + "name": "Irezumi", + "site_detail_url": "https://comicvine.gamespot.com/irezumi/4005-42910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42911/", + "id": 42911, + "name": "Jawbreaker", + "site_detail_url": "https://comicvine.gamespot.com/jawbreaker/4005-42911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42912/", + "id": 42912, + "name": "Big One", + "site_detail_url": "https://comicvine.gamespot.com/big-one/4005-42912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42913/", + "id": 42913, + "name": "Pele", + "site_detail_url": "https://comicvine.gamespot.com/pele/4005-42913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42914/", + "id": 42914, + "name": "Taifu", + "site_detail_url": "https://comicvine.gamespot.com/taifu/4005-42914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42915/", + "id": 42915, + "name": "Kuroko", + "site_detail_url": "https://comicvine.gamespot.com/kuroko/4005-42915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42916/", + "id": 42916, + "name": "Morning Star", + "site_detail_url": "https://comicvine.gamespot.com/morning-star/4005-42916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42917/", + "id": 42917, + "name": "Fateball", + "site_detail_url": "https://comicvine.gamespot.com/fateball/4005-42917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42918/", + "id": 42918, + "name": "Kain", + "site_detail_url": "https://comicvine.gamespot.com/kain/4005-42918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42920/", + "id": 42920, + "name": "Raksasa", + "site_detail_url": "https://comicvine.gamespot.com/raksasa/4005-42920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42921/", + "id": 42921, + "name": "Nosferata", + "site_detail_url": "https://comicvine.gamespot.com/nosferata/4005-42921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42943/", + "id": 42943, + "name": "Redstone", + "site_detail_url": "https://comicvine.gamespot.com/redstone/4005-42943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42944/", + "id": 42944, + "name": "Cadaver", + "site_detail_url": "https://comicvine.gamespot.com/cadaver/4005-42944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42946/", + "id": 42946, + "name": "Monstro", + "site_detail_url": "https://comicvine.gamespot.com/monstro/4005-42946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42947/", + "id": 42947, + "name": "Phantom Blonde", + "site_detail_url": "https://comicvine.gamespot.com/phantom-blonde/4005-42947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42949/", + "id": 42949, + "name": "Steel Raven", + "site_detail_url": "https://comicvine.gamespot.com/steel-raven/4005-42949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42970/", + "id": 42970, + "name": "Spellcheck", + "site_detail_url": "https://comicvine.gamespot.com/spellcheck/4005-42970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42975/", + "id": 42975, + "name": "Ghost Rider 2099", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-2099/4005-42975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42977/", + "id": 42977, + "name": "Sally Avril", + "site_detail_url": "https://comicvine.gamespot.com/sally-avril/4005-42977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42978/", + "id": 42978, + "name": "Great One", + "site_detail_url": "https://comicvine.gamespot.com/great-one/4005-42978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42979/", + "id": 42979, + "name": "Stephen Loss", + "site_detail_url": "https://comicvine.gamespot.com/stephen-loss/4005-42979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42980/", + "id": 42980, + "name": "Solomon Prey", + "site_detail_url": "https://comicvine.gamespot.com/solomon-prey/4005-42980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42983/", + "id": 42983, + "name": "Slapstick", + "site_detail_url": "https://comicvine.gamespot.com/slapstick/4005-42983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42987/", + "id": 42987, + "name": "Moira Brandon", + "site_detail_url": "https://comicvine.gamespot.com/moira-brandon/4005-42987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42993/", + "id": 42993, + "name": "Bug-Eyed Voice", + "site_detail_url": "https://comicvine.gamespot.com/bug-eyed-voice/4005-42993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-42995/", + "id": 42995, + "name": "Eel", + "site_detail_url": "https://comicvine.gamespot.com/eel/4005-42995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43002/", + "id": 43002, + "name": "Doctor Goodwrench", + "site_detail_url": "https://comicvine.gamespot.com/doctor-goodwrench/4005-43002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43008/", + "id": 43008, + "name": "Washout", + "site_detail_url": "https://comicvine.gamespot.com/washout/4005-43008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43072/", + "id": 43072, + "name": "Baal", + "site_detail_url": "https://comicvine.gamespot.com/baal/4005-43072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43073/", + "id": 43073, + "name": "Nephri", + "site_detail_url": "https://comicvine.gamespot.com/nephri/4005-43073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43076/", + "id": 43076, + "name": "Armory", + "site_detail_url": "https://comicvine.gamespot.com/armory/4005-43076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43121/", + "id": 43121, + "name": "Unnameable", + "site_detail_url": "https://comicvine.gamespot.com/unnameable/4005-43121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43122/", + "id": 43122, + "name": "King Ytitnedion", + "site_detail_url": "https://comicvine.gamespot.com/king-ytitnedion/4005-43122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43125/", + "id": 43125, + "name": "Aeroika", + "site_detail_url": "https://comicvine.gamespot.com/aeroika/4005-43125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43129/", + "id": 43129, + "name": "Cold War", + "site_detail_url": "https://comicvine.gamespot.com/cold-war/4005-43129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43142/", + "id": 43142, + "name": "Digitek", + "site_detail_url": "https://comicvine.gamespot.com/digitek/4005-43142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43147/", + "id": 43147, + "name": "Deadly Ernest", + "site_detail_url": "https://comicvine.gamespot.com/deadly-ernest/4005-43147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43148/", + "id": 43148, + "name": "Crystar", + "site_detail_url": "https://comicvine.gamespot.com/crystar/4005-43148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43159/", + "id": 43159, + "name": "Willow", + "site_detail_url": "https://comicvine.gamespot.com/willow/4005-43159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43160/", + "id": 43160, + "name": "Uproar", + "site_detail_url": "https://comicvine.gamespot.com/uproar/4005-43160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43161/", + "id": 43161, + "name": "Wulff", + "site_detail_url": "https://comicvine.gamespot.com/wulff/4005-43161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43162/", + "id": 43162, + "name": "Twilight", + "site_detail_url": "https://comicvine.gamespot.com/twilight/4005-43162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43163/", + "id": 43163, + "name": "Nostromo", + "site_detail_url": "https://comicvine.gamespot.com/nostromo/4005-43163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43164/", + "id": 43164, + "name": "Metalsmith", + "site_detail_url": "https://comicvine.gamespot.com/metalsmith/4005-43164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43165/", + "id": 43165, + "name": "Sister Nicholas", + "site_detail_url": "https://comicvine.gamespot.com/sister-nicholas/4005-43165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43167/", + "id": 43167, + "name": "Morphine Somers", + "site_detail_url": "https://comicvine.gamespot.com/morphine-somers/4005-43167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43173/", + "id": 43173, + "name": "Scicluna", + "site_detail_url": "https://comicvine.gamespot.com/scicluna/4005-43173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43174/", + "id": 43174, + "name": "Quake", + "site_detail_url": "https://comicvine.gamespot.com/quake/4005-43174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43175/", + "id": 43175, + "name": "Mortis", + "site_detail_url": "https://comicvine.gamespot.com/mortis/4005-43175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43176/", + "id": 43176, + "name": "Stratosfire", + "site_detail_url": "https://comicvine.gamespot.com/stratosfire/4005-43176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43177/", + "id": 43177, + "name": "Thundersword", + "site_detail_url": "https://comicvine.gamespot.com/thundersword/4005-43177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43184/", + "id": 43184, + "name": "Lady Daemon", + "site_detail_url": "https://comicvine.gamespot.com/lady-daemon/4005-43184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43185/", + "id": 43185, + "name": "Necromon", + "site_detail_url": "https://comicvine.gamespot.com/necromon/4005-43185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43186/", + "id": 43186, + "name": "Eye-Scream", + "site_detail_url": "https://comicvine.gamespot.com/eye-scream/4005-43186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43201/", + "id": 43201, + "name": "B'leem", + "site_detail_url": "https://comicvine.gamespot.com/bleem/4005-43201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43202/", + "id": 43202, + "name": "Cortt", + "site_detail_url": "https://comicvine.gamespot.com/cortt/4005-43202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43203/", + "id": 43203, + "name": "Qu'ill", + "site_detail_url": "https://comicvine.gamespot.com/quill/4005-43203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43204/", + "id": 43204, + "name": "Stacy Armstrong", + "site_detail_url": "https://comicvine.gamespot.com/stacy-armstrong/4005-43204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43205/", + "id": 43205, + "name": "Professor Dietrich", + "site_detail_url": "https://comicvine.gamespot.com/professor-dietrich/4005-43205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43225/", + "id": 43225, + "name": "Korg", + "site_detail_url": "https://comicvine.gamespot.com/korg/4005-43225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43226/", + "id": 43226, + "name": "Miek", + "site_detail_url": "https://comicvine.gamespot.com/miek/4005-43226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43227/", + "id": 43227, + "name": "Hiroim", + "site_detail_url": "https://comicvine.gamespot.com/hiroim/4005-43227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43228/", + "id": 43228, + "name": "Elloe", + "site_detail_url": "https://comicvine.gamespot.com/elloe/4005-43228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43230/", + "id": 43230, + "name": "Apox", + "site_detail_url": "https://comicvine.gamespot.com/apox/4005-43230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43232/", + "id": 43232, + "name": "Duncan Jericho", + "site_detail_url": "https://comicvine.gamespot.com/duncan-jericho/4005-43232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43233/", + "id": 43233, + "name": "Luz Delgado", + "site_detail_url": "https://comicvine.gamespot.com/luz-delgado/4005-43233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43234/", + "id": 43234, + "name": "Danika Trevani", + "site_detail_url": "https://comicvine.gamespot.com/danika-trevani/4005-43234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43235/", + "id": 43235, + "name": "Lin Mei", + "site_detail_url": "https://comicvine.gamespot.com/lin-mei/4005-43235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43236/", + "id": 43236, + "name": "Fiona McCormick", + "site_detail_url": "https://comicvine.gamespot.com/fiona-mccormick/4005-43236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43251/", + "id": 43251, + "name": "Dusk", + "site_detail_url": "https://comicvine.gamespot.com/dusk/4005-43251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43275/", + "id": 43275, + "name": "Titannus", + "site_detail_url": "https://comicvine.gamespot.com/titannus/4005-43275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43276/", + "id": 43276, + "name": "Ghost Maker", + "site_detail_url": "https://comicvine.gamespot.com/ghost-maker/4005-43276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43277/", + "id": 43277, + "name": "No-Name", + "site_detail_url": "https://comicvine.gamespot.com/no-name/4005-43277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43281/", + "id": 43281, + "name": "Ian McNee", + "site_detail_url": "https://comicvine.gamespot.com/ian-mcnee/4005-43281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43285/", + "id": 43285, + "name": "Impulse", + "site_detail_url": "https://comicvine.gamespot.com/impulse/4005-43285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43305/", + "id": 43305, + "name": "Anne-Marie Hoag", + "site_detail_url": "https://comicvine.gamespot.com/anne-marie-hoag/4005-43305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43306/", + "id": 43306, + "name": "Anne", + "site_detail_url": "https://comicvine.gamespot.com/anne/4005-43306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43307/", + "id": 43307, + "name": "Robin Chapel", + "site_detail_url": "https://comicvine.gamespot.com/robin-chapel/4005-43307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43330/", + "id": 43330, + "name": "John Porter", + "site_detail_url": "https://comicvine.gamespot.com/john-porter/4005-43330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43331/", + "id": 43331, + "name": "Albert Cleary", + "site_detail_url": "https://comicvine.gamespot.com/albert-cleary/4005-43331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43333/", + "id": 43333, + "name": "Lenny Ballinger", + "site_detail_url": "https://comicvine.gamespot.com/lenny-ballinger/4005-43333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43334/", + "id": 43334, + "name": "Gene Strausser", + "site_detail_url": "https://comicvine.gamespot.com/gene-strausser/4005-43334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43335/", + "id": 43335, + "name": "Rob Washington", + "site_detail_url": "https://comicvine.gamespot.com/rob-washington/4005-43335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43336/", + "id": 43336, + "name": "Bart Rozum", + "site_detail_url": "https://comicvine.gamespot.com/bart-rozum/4005-43336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43337/", + "id": 43337, + "name": "Elijah Cross", + "site_detail_url": "https://comicvine.gamespot.com/elijah-cross/4005-43337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43354/", + "id": 43354, + "name": "Edifice Rex", + "site_detail_url": "https://comicvine.gamespot.com/edifice-rex/4005-43354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43355/", + "id": 43355, + "name": "Luther", + "site_detail_url": "https://comicvine.gamespot.com/luther/4005-43355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43356/", + "id": 43356, + "name": "Mrs. Pringle", + "site_detail_url": "https://comicvine.gamespot.com/mrs-pringle/4005-43356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43412/", + "id": 43412, + "name": "El Guapo", + "site_detail_url": "https://comicvine.gamespot.com/el-guapo/4005-43412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43413/", + "id": 43413, + "name": "Asteroth", + "site_detail_url": "https://comicvine.gamespot.com/asteroth/4005-43413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43448/", + "id": 43448, + "name": "Nakari", + "site_detail_url": "https://comicvine.gamespot.com/nakari/4005-43448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43451/", + "id": 43451, + "name": "Cindy", + "site_detail_url": "https://comicvine.gamespot.com/cindy/4005-43451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43463/", + "id": 43463, + "name": "Henrietta Hunter", + "site_detail_url": "https://comicvine.gamespot.com/henrietta-hunter/4005-43463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43467/", + "id": 43467, + "name": "Destiny", + "site_detail_url": "https://comicvine.gamespot.com/destiny/4005-43467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43469/", + "id": 43469, + "name": "Pathway", + "site_detail_url": "https://comicvine.gamespot.com/pathway/4005-43469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43497/", + "id": 43497, + "name": "The Alchemist", + "site_detail_url": "https://comicvine.gamespot.com/the-alchemist/4005-43497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43499/", + "id": 43499, + "name": "Ikaeden", + "site_detail_url": "https://comicvine.gamespot.com/ikaeden/4005-43499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43500/", + "id": 43500, + "name": "Kurassus", + "site_detail_url": "https://comicvine.gamespot.com/kurassus/4005-43500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43501/", + "id": 43501, + "name": "Jeska", + "site_detail_url": "https://comicvine.gamespot.com/jeska/4005-43501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43524/", + "id": 43524, + "name": "M-Plate", + "site_detail_url": "https://comicvine.gamespot.com/m-plate/4005-43524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43531/", + "id": 43531, + "name": "D.O.A.", + "site_detail_url": "https://comicvine.gamespot.com/doa/4005-43531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43543/", + "id": 43543, + "name": "Avatar", + "site_detail_url": "https://comicvine.gamespot.com/avatar/4005-43543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43544/", + "id": 43544, + "name": "Terrayne", + "site_detail_url": "https://comicvine.gamespot.com/terrayne/4005-43544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43545/", + "id": 43545, + "name": "Mosquito", + "site_detail_url": "https://comicvine.gamespot.com/mosquito/4005-43545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43546/", + "id": 43546, + "name": "Silver Shadow", + "site_detail_url": "https://comicvine.gamespot.com/silver-shadow/4005-43546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43547/", + "id": 43547, + "name": "Silkie", + "site_detail_url": "https://comicvine.gamespot.com/silkie/4005-43547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43548/", + "id": 43548, + "name": "Werehawk", + "site_detail_url": "https://comicvine.gamespot.com/werehawk/4005-43548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43549/", + "id": 43549, + "name": "Blackmane", + "site_detail_url": "https://comicvine.gamespot.com/blackmane/4005-43549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43550/", + "id": 43550, + "name": "Sunswift", + "site_detail_url": "https://comicvine.gamespot.com/sunswift/4005-43550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43559/", + "id": 43559, + "name": "Marie Leahy", + "site_detail_url": "https://comicvine.gamespot.com/marie-leahy/4005-43559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43579/", + "id": 43579, + "name": "Tracer", + "site_detail_url": "https://comicvine.gamespot.com/tracer/4005-43579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43581/", + "id": 43581, + "name": "Henry Ackerdson", + "site_detail_url": "https://comicvine.gamespot.com/henry-ackerdson/4005-43581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43587/", + "id": 43587, + "name": "Amadeus Cho", + "site_detail_url": "https://comicvine.gamespot.com/amadeus-cho/4005-43587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43638/", + "id": 43638, + "name": "Catwalk", + "site_detail_url": "https://comicvine.gamespot.com/catwalk/4005-43638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43640/", + "id": 43640, + "name": "Dice", + "site_detail_url": "https://comicvine.gamespot.com/dice/4005-43640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43641/", + "id": 43641, + "name": "Moonstomp", + "site_detail_url": "https://comicvine.gamespot.com/moonstomp/4005-43641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43642/", + "id": 43642, + "name": "Riot", + "site_detail_url": "https://comicvine.gamespot.com/riot/4005-43642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43643/", + "id": 43643, + "name": "Ryder", + "site_detail_url": "https://comicvine.gamespot.com/ryder/4005-43643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43652/", + "id": 43652, + "name": "Arthur DeLacourte", + "site_detail_url": "https://comicvine.gamespot.com/arthur-delacourte/4005-43652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43653/", + "id": 43653, + "name": "3-D Man (Chandler)", + "site_detail_url": "https://comicvine.gamespot.com/3-d-man-chandler/4005-43653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43668/", + "id": 43668, + "name": "Slug", + "site_detail_url": "https://comicvine.gamespot.com/slug/4005-43668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43681/", + "id": 43681, + "name": "Abraham Erskine", + "site_detail_url": "https://comicvine.gamespot.com/abraham-erskine/4005-43681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43702/", + "id": 43702, + "name": "Asbestos Lady", + "site_detail_url": "https://comicvine.gamespot.com/asbestos-lady/4005-43702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43724/", + "id": 43724, + "name": "Kolina Frederickson", + "site_detail_url": "https://comicvine.gamespot.com/kolina-frederickson/4005-43724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43747/", + "id": 43747, + "name": "Mind Master", + "site_detail_url": "https://comicvine.gamespot.com/mind-master/4005-43747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43751/", + "id": 43751, + "name": "Walter Declun", + "site_detail_url": "https://comicvine.gamespot.com/walter-declun/4005-43751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43757/", + "id": 43757, + "name": "Vandervecken", + "site_detail_url": "https://comicvine.gamespot.com/vandervecken/4005-43757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43766/", + "id": 43766, + "name": "Chief Authier", + "site_detail_url": "https://comicvine.gamespot.com/chief-authier/4005-43766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43767/", + "id": 43767, + "name": "Tracy Authier", + "site_detail_url": "https://comicvine.gamespot.com/tracy-authier/4005-43767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43768/", + "id": 43768, + "name": "Hunter Brawn", + "site_detail_url": "https://comicvine.gamespot.com/hunter-brawn/4005-43768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43771/", + "id": 43771, + "name": "Serafina", + "site_detail_url": "https://comicvine.gamespot.com/serafina/4005-43771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43772/", + "id": 43772, + "name": "Tristan Brawn", + "site_detail_url": "https://comicvine.gamespot.com/tristan-brawn/4005-43772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43773/", + "id": 43773, + "name": "Chevy", + "site_detail_url": "https://comicvine.gamespot.com/chevy/4005-43773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43774/", + "id": 43774, + "name": "Johnston Coffin", + "site_detail_url": "https://comicvine.gamespot.com/johnston-coffin/4005-43774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43777/", + "id": 43777, + "name": "Dorian and Weasel", + "site_detail_url": "https://comicvine.gamespot.com/dorian-and-weasel/4005-43777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43784/", + "id": 43784, + "name": "Gabriel Stacy", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-stacy/4005-43784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43788/", + "id": 43788, + "name": "Tatiana Arocha", + "site_detail_url": "https://comicvine.gamespot.com/tatiana-arocha/4005-43788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43808/", + "id": 43808, + "name": "Gayle Edgerton", + "site_detail_url": "https://comicvine.gamespot.com/gayle-edgerton/4005-43808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43810/", + "id": 43810, + "name": "Jasmine", + "site_detail_url": "https://comicvine.gamespot.com/jasmine/4005-43810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43830/", + "id": 43830, + "name": "Noah Synge", + "site_detail_url": "https://comicvine.gamespot.com/noah-synge/4005-43830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43831/", + "id": 43831, + "name": "Lytton Synge", + "site_detail_url": "https://comicvine.gamespot.com/lytton-synge/4005-43831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43833/", + "id": 43833, + "name": "Desdemona Synge", + "site_detail_url": "https://comicvine.gamespot.com/desdemona-synge/4005-43833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43836/", + "id": 43836, + "name": "Suicide King", + "site_detail_url": "https://comicvine.gamespot.com/suicide-king/4005-43836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43838/", + "id": 43838, + "name": "Mr. Entertainment", + "site_detail_url": "https://comicvine.gamespot.com/mr-entertainment/4005-43838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43840/", + "id": 43840, + "name": "Sven Hoek", + "site_detail_url": "https://comicvine.gamespot.com/sven-hoek/4005-43840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43841/", + "id": 43841, + "name": "Mr. Horse", + "site_detail_url": "https://comicvine.gamespot.com/mr-horse/4005-43841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43845/", + "id": 43845, + "name": "Wingspan", + "site_detail_url": "https://comicvine.gamespot.com/wingspan/4005-43845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43852/", + "id": 43852, + "name": "Tantrum", + "site_detail_url": "https://comicvine.gamespot.com/tantrum/4005-43852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43854/", + "id": 43854, + "name": "Monster", + "site_detail_url": "https://comicvine.gamespot.com/monster/4005-43854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43855/", + "id": 43855, + "name": "Victor Ten Eagles", + "site_detail_url": "https://comicvine.gamespot.com/victor-ten-eagles/4005-43855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43866/", + "id": 43866, + "name": "Dominic", + "site_detail_url": "https://comicvine.gamespot.com/dominic/4005-43866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43867/", + "id": 43867, + "name": "Psyclone", + "site_detail_url": "https://comicvine.gamespot.com/psyclone/4005-43867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43868/", + "id": 43868, + "name": "Mama Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/mama-hurricane/4005-43868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43869/", + "id": 43869, + "name": "Master Zhao", + "site_detail_url": "https://comicvine.gamespot.com/master-zhao/4005-43869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43878/", + "id": 43878, + "name": "Controller Thirteen", + "site_detail_url": "https://comicvine.gamespot.com/controller-thirteen/4005-43878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43889/", + "id": 43889, + "name": "Psycho-K", + "site_detail_url": "https://comicvine.gamespot.com/psycho-k/4005-43889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43890/", + "id": 43890, + "name": "One-Eyed Jack", + "site_detail_url": "https://comicvine.gamespot.com/one-eyed-jack/4005-43890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43891/", + "id": 43891, + "name": "Carson Liebowitz", + "site_detail_url": "https://comicvine.gamespot.com/carson-liebowitz/4005-43891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43892/", + "id": 43892, + "name": "Driver", + "site_detail_url": "https://comicvine.gamespot.com/driver/4005-43892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43894/", + "id": 43894, + "name": "Rosa Navarro", + "site_detail_url": "https://comicvine.gamespot.com/rosa-navarro/4005-43894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43897/", + "id": 43897, + "name": "Muddy Mudskipper", + "site_detail_url": "https://comicvine.gamespot.com/muddy-mudskipper/4005-43897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43904/", + "id": 43904, + "name": "Pitiful One", + "site_detail_url": "https://comicvine.gamespot.com/pitiful-one/4005-43904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43916/", + "id": 43916, + "name": "Sangre", + "site_detail_url": "https://comicvine.gamespot.com/sangre/4005-43916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43917/", + "id": 43917, + "name": "Aguja", + "site_detail_url": "https://comicvine.gamespot.com/aguja/4005-43917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43918/", + "id": 43918, + "name": "Fuego", + "site_detail_url": "https://comicvine.gamespot.com/fuego/4005-43918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43919/", + "id": 43919, + "name": "Perro", + "site_detail_url": "https://comicvine.gamespot.com/perro/4005-43919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43920/", + "id": 43920, + "name": "Cadena", + "site_detail_url": "https://comicvine.gamespot.com/cadena/4005-43920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43959/", + "id": 43959, + "name": "Quantum", + "site_detail_url": "https://comicvine.gamespot.com/quantum/4005-43959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43973/", + "id": 43973, + "name": "Mana Yanowa", + "site_detail_url": "https://comicvine.gamespot.com/mana-yanowa/4005-43973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43974/", + "id": 43974, + "name": "Nicole", + "site_detail_url": "https://comicvine.gamespot.com/nicole/4005-43974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43978/", + "id": 43978, + "name": "Kayla Ballantine", + "site_detail_url": "https://comicvine.gamespot.com/kayla-ballantine/4005-43978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43980/", + "id": 43980, + "name": "Angler", + "site_detail_url": "https://comicvine.gamespot.com/angler/4005-43980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43981/", + "id": 43981, + "name": "Daria", + "site_detail_url": "https://comicvine.gamespot.com/daria/4005-43981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43982/", + "id": 43982, + "name": "Kenjiro Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/kenjiro-tanaka/4005-43982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43983/", + "id": 43983, + "name": "Ryuki", + "site_detail_url": "https://comicvine.gamespot.com/ryuki/4005-43983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43984/", + "id": 43984, + "name": "Hana Yanowa", + "site_detail_url": "https://comicvine.gamespot.com/hana-yanowa/4005-43984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43985/", + "id": 43985, + "name": "Chester Phillips", + "site_detail_url": "https://comicvine.gamespot.com/chester-phillips/4005-43985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43986/", + "id": 43986, + "name": "Dr. Anderson", + "site_detail_url": "https://comicvine.gamespot.com/dr-anderson/4005-43986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43989/", + "id": 43989, + "name": "Bill Stuart", + "site_detail_url": "https://comicvine.gamespot.com/bill-stuart/4005-43989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43990/", + "id": 43990, + "name": "Colonel Krieghund", + "site_detail_url": "https://comicvine.gamespot.com/colonel-krieghund/4005-43990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43992/", + "id": 43992, + "name": "Major Rawlings", + "site_detail_url": "https://comicvine.gamespot.com/major-rawlings/4005-43992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43993/", + "id": 43993, + "name": "Colonel Farrow", + "site_detail_url": "https://comicvine.gamespot.com/colonel-farrow/4005-43993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43994/", + "id": 43994, + "name": "The Shark", + "site_detail_url": "https://comicvine.gamespot.com/the-shark/4005-43994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43995/", + "id": 43995, + "name": "Hyena", + "site_detail_url": "https://comicvine.gamespot.com/hyena/4005-43995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-43996/", + "id": 43996, + "name": "Major Williams", + "site_detail_url": "https://comicvine.gamespot.com/major-williams/4005-43996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44006/", + "id": 44006, + "name": "Seymour", + "site_detail_url": "https://comicvine.gamespot.com/seymour/4005-44006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44042/", + "id": 44042, + "name": "Perez", + "site_detail_url": "https://comicvine.gamespot.com/perez/4005-44042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44112/", + "id": 44112, + "name": "Cross Wordo", + "site_detail_url": "https://comicvine.gamespot.com/cross-wordo/4005-44112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44121/", + "id": 44121, + "name": "Widdle Wade", + "site_detail_url": "https://comicvine.gamespot.com/widdle-wade/4005-44121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44144/", + "id": 44144, + "name": "Carthus", + "site_detail_url": "https://comicvine.gamespot.com/carthus/4005-44144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44145/", + "id": 44145, + "name": "Veritus", + "site_detail_url": "https://comicvine.gamespot.com/veritus/4005-44145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44154/", + "id": 44154, + "name": "Kalikya", + "site_detail_url": "https://comicvine.gamespot.com/kalikya/4005-44154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44214/", + "id": 44214, + "name": "Midnight's Fire", + "site_detail_url": "https://comicvine.gamespot.com/midnights-fire/4005-44214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44228/", + "id": 44228, + "name": "Visioneer", + "site_detail_url": "https://comicvine.gamespot.com/visioneer/4005-44228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44252/", + "id": 44252, + "name": "Straw Man", + "site_detail_url": "https://comicvine.gamespot.com/straw-man/4005-44252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44264/", + "id": 44264, + "name": "Projector", + "site_detail_url": "https://comicvine.gamespot.com/projector/4005-44264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44282/", + "id": 44282, + "name": "Kkallakku", + "site_detail_url": "https://comicvine.gamespot.com/kkallakku/4005-44282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44286/", + "id": 44286, + "name": "Gargouille", + "site_detail_url": "https://comicvine.gamespot.com/gargouille/4005-44286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44287/", + "id": 44287, + "name": "Rem-Ram", + "site_detail_url": "https://comicvine.gamespot.com/rem-ram/4005-44287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44288/", + "id": 44288, + "name": "Bloke", + "site_detail_url": "https://comicvine.gamespot.com/bloke/4005-44288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44289/", + "id": 44289, + "name": "Akhenaten", + "site_detail_url": "https://comicvine.gamespot.com/akhenaten/4005-44289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44323/", + "id": 44323, + "name": "Thomas Logan", + "site_detail_url": "https://comicvine.gamespot.com/thomas-logan/4005-44323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44324/", + "id": 44324, + "name": "Mrs. Hopkins", + "site_detail_url": "https://comicvine.gamespot.com/mrs-hopkins/4005-44324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44325/", + "id": 44325, + "name": "Elizabeth Howlett", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-howlett/4005-44325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44326/", + "id": 44326, + "name": "John Howlett Sr.", + "site_detail_url": "https://comicvine.gamespot.com/john-howlett-sr/4005-44326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44327/", + "id": 44327, + "name": "Dog Logan", + "site_detail_url": "https://comicvine.gamespot.com/dog-logan/4005-44327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44328/", + "id": 44328, + "name": "Smitty", + "site_detail_url": "https://comicvine.gamespot.com/smitty/4005-44328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44329/", + "id": 44329, + "name": "Cookie Malone", + "site_detail_url": "https://comicvine.gamespot.com/cookie-malone/4005-44329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44341/", + "id": 44341, + "name": "Mister Kenneth", + "site_detail_url": "https://comicvine.gamespot.com/mister-kenneth/4005-44341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44342/", + "id": 44342, + "name": "Rose O'Hara", + "site_detail_url": "https://comicvine.gamespot.com/rose-ohara/4005-44342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44346/", + "id": 44346, + "name": "Supremor", + "site_detail_url": "https://comicvine.gamespot.com/supremor/4005-44346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44347/", + "id": 44347, + "name": "Krosakis", + "site_detail_url": "https://comicvine.gamespot.com/krosakis/4005-44347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44348/", + "id": 44348, + "name": "Dr. Gilbert Wiles", + "site_detail_url": "https://comicvine.gamespot.com/dr-gilbert-wiles/4005-44348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44349/", + "id": 44349, + "name": "Senschi", + "site_detail_url": "https://comicvine.gamespot.com/senschi/4005-44349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44350/", + "id": 44350, + "name": "Somnus", + "site_detail_url": "https://comicvine.gamespot.com/somnus/4005-44350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44351/", + "id": 44351, + "name": "Kurani", + "site_detail_url": "https://comicvine.gamespot.com/kurani/4005-44351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44352/", + "id": 44352, + "name": "Desidera", + "site_detail_url": "https://comicvine.gamespot.com/desidera/4005-44352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44353/", + "id": 44353, + "name": "Marista", + "site_detail_url": "https://comicvine.gamespot.com/marista/4005-44353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44354/", + "id": 44354, + "name": "Ultarnt", + "site_detail_url": "https://comicvine.gamespot.com/ultarnt/4005-44354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44356/", + "id": 44356, + "name": "Elejea", + "site_detail_url": "https://comicvine.gamespot.com/elejea/4005-44356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44358/", + "id": 44358, + "name": "Rexel", + "site_detail_url": "https://comicvine.gamespot.com/rexel/4005-44358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44360/", + "id": 44360, + "name": "Ikarys", + "site_detail_url": "https://comicvine.gamespot.com/ikarys/4005-44360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44361/", + "id": 44361, + "name": "Arvak", + "site_detail_url": "https://comicvine.gamespot.com/arvak/4005-44361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44363/", + "id": 44363, + "name": "Videmus", + "site_detail_url": "https://comicvine.gamespot.com/videmus/4005-44363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44368/", + "id": 44368, + "name": "Mikaboshi", + "site_detail_url": "https://comicvine.gamespot.com/mikaboshi/4005-44368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44371/", + "id": 44371, + "name": "Luigi Gambonno", + "site_detail_url": "https://comicvine.gamespot.com/luigi-gambonno/4005-44371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44373/", + "id": 44373, + "name": "Stilts", + "site_detail_url": "https://comicvine.gamespot.com/stilts/4005-44373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44374/", + "id": 44374, + "name": "Blossom", + "site_detail_url": "https://comicvine.gamespot.com/blossom/4005-44374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44375/", + "id": 44375, + "name": "Rex the Dog-Faced Boy", + "site_detail_url": "https://comicvine.gamespot.com/rex-the-dog-faced-boy/4005-44375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44376/", + "id": 44376, + "name": "Major Minor", + "site_detail_url": "https://comicvine.gamespot.com/major-minor/4005-44376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44377/", + "id": 44377, + "name": "Antoro", + "site_detail_url": "https://comicvine.gamespot.com/antoro/4005-44377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44378/", + "id": 44378, + "name": "Steel Wind", + "site_detail_url": "https://comicvine.gamespot.com/steel-wind/4005-44378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44380/", + "id": 44380, + "name": "Walker", + "site_detail_url": "https://comicvine.gamespot.com/walker/4005-44380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44385/", + "id": 44385, + "name": "Suspiria", + "site_detail_url": "https://comicvine.gamespot.com/suspiria/4005-44385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44386/", + "id": 44386, + "name": "Danger Man", + "site_detail_url": "https://comicvine.gamespot.com/danger-man/4005-44386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44387/", + "id": 44387, + "name": "Daydream", + "site_detail_url": "https://comicvine.gamespot.com/daydream/4005-44387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44388/", + "id": 44388, + "name": "Willis Stryker", + "site_detail_url": "https://comicvine.gamespot.com/willis-stryker/4005-44388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44390/", + "id": 44390, + "name": "Bub", + "site_detail_url": "https://comicvine.gamespot.com/bub/4005-44390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44391/", + "id": 44391, + "name": "Barker", + "site_detail_url": "https://comicvine.gamespot.com/barker/4005-44391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44392/", + "id": 44392, + "name": "Professor", + "site_detail_url": "https://comicvine.gamespot.com/professor/4005-44392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44393/", + "id": 44393, + "name": "Bert", + "site_detail_url": "https://comicvine.gamespot.com/bert/4005-44393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44394/", + "id": 44394, + "name": "Ironjack Baker", + "site_detail_url": "https://comicvine.gamespot.com/ironjack-baker/4005-44394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44396/", + "id": 44396, + "name": "Mark Hazzard", + "site_detail_url": "https://comicvine.gamespot.com/mark-hazzard/4005-44396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44419/", + "id": 44419, + "name": "Droog", + "site_detail_url": "https://comicvine.gamespot.com/droog/4005-44419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44420/", + "id": 44420, + "name": "Garko", + "site_detail_url": "https://comicvine.gamespot.com/garko/4005-44420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44421/", + "id": 44421, + "name": "Nallo", + "site_detail_url": "https://comicvine.gamespot.com/nallo/4005-44421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44422/", + "id": 44422, + "name": "Samantha Jane Bryant", + "site_detail_url": "https://comicvine.gamespot.com/samantha-jane-bryant/4005-44422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44429/", + "id": 44429, + "name": "Arides", + "site_detail_url": "https://comicvine.gamespot.com/arides/4005-44429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44432/", + "id": 44432, + "name": "Death's Head 3.0", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-30/4005-44432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44444/", + "id": 44444, + "name": "Hitmaker", + "site_detail_url": "https://comicvine.gamespot.com/hitmaker/4005-44444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44445/", + "id": 44445, + "name": "Blackbody", + "site_detail_url": "https://comicvine.gamespot.com/blackbody/4005-44445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44447/", + "id": 44447, + "name": "Lily Lucca", + "site_detail_url": "https://comicvine.gamespot.com/lily-lucca/4005-44447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44452/", + "id": 44452, + "name": "Visimajoris", + "site_detail_url": "https://comicvine.gamespot.com/visimajoris/4005-44452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44455/", + "id": 44455, + "name": "Arimathes", + "site_detail_url": "https://comicvine.gamespot.com/arimathes/4005-44455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44456/", + "id": 44456, + "name": "Spit", + "site_detail_url": "https://comicvine.gamespot.com/spit/4005-44456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44457/", + "id": 44457, + "name": "Red Raven", + "site_detail_url": "https://comicvine.gamespot.com/red-raven/4005-44457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44459/", + "id": 44459, + "name": "Unbeing", + "site_detail_url": "https://comicvine.gamespot.com/unbeing/4005-44459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44468/", + "id": 44468, + "name": "Fire Chief", + "site_detail_url": "https://comicvine.gamespot.com/fire-chief/4005-44468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44469/", + "id": 44469, + "name": "Stinky Wizzleteats", + "site_detail_url": "https://comicvine.gamespot.com/stinky-wizzleteats/4005-44469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44473/", + "id": 44473, + "name": "One-Above-All", + "site_detail_url": "https://comicvine.gamespot.com/one-above-all/4005-44473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44474/", + "id": 44474, + "name": "Shane Shooter", + "site_detail_url": "https://comicvine.gamespot.com/shane-shooter/4005-44474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44476/", + "id": 44476, + "name": "Aunt Hope", + "site_detail_url": "https://comicvine.gamespot.com/aunt-hope/4005-44476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44477/", + "id": 44477, + "name": "Meg Devereux", + "site_detail_url": "https://comicvine.gamespot.com/meg-devereux/4005-44477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44482/", + "id": 44482, + "name": "Cicero Seagull", + "site_detail_url": "https://comicvine.gamespot.com/cicero-seagull/4005-44482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44483/", + "id": 44483, + "name": "Dr Dough-Naught", + "site_detail_url": "https://comicvine.gamespot.com/dr-dough-naught/4005-44483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44490/", + "id": 44490, + "name": "Quagmire", + "site_detail_url": "https://comicvine.gamespot.com/quagmire/4005-44490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44491/", + "id": 44491, + "name": "Blue Eagle", + "site_detail_url": "https://comicvine.gamespot.com/blue-eagle/4005-44491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44495/", + "id": 44495, + "name": "Dr Louis Childs", + "site_detail_url": "https://comicvine.gamespot.com/dr-louis-childs/4005-44495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44496/", + "id": 44496, + "name": "Seth Walker", + "site_detail_url": "https://comicvine.gamespot.com/seth-walker/4005-44496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44498/", + "id": 44498, + "name": "Hutch", + "site_detail_url": "https://comicvine.gamespot.com/hutch/4005-44498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44502/", + "id": 44502, + "name": "Ape X", + "site_detail_url": "https://comicvine.gamespot.com/ape-x/4005-44502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44503/", + "id": 44503, + "name": "Foxfire", + "site_detail_url": "https://comicvine.gamespot.com/foxfire/4005-44503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44504/", + "id": 44504, + "name": "Lamprey", + "site_detail_url": "https://comicvine.gamespot.com/lamprey/4005-44504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44505/", + "id": 44505, + "name": "Elena Ivanova", + "site_detail_url": "https://comicvine.gamespot.com/elena-ivanova/4005-44505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44506/", + "id": 44506, + "name": "Ivan", + "site_detail_url": "https://comicvine.gamespot.com/ivan/4005-44506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44507/", + "id": 44507, + "name": "Vladimir Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/vladimir-rasputin/4005-44507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44508/", + "id": 44508, + "name": "Larisa Mishchenko", + "site_detail_url": "https://comicvine.gamespot.com/larisa-mishchenko/4005-44508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44525/", + "id": 44525, + "name": "Dr. Decibel", + "site_detail_url": "https://comicvine.gamespot.com/dr-decibel/4005-44525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44536/", + "id": 44536, + "name": "Dreamqueen", + "site_detail_url": "https://comicvine.gamespot.com/dreamqueen/4005-44536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44546/", + "id": 44546, + "name": "Earth-Lord", + "site_detail_url": "https://comicvine.gamespot.com/earth-lord/4005-44546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44562/", + "id": 44562, + "name": "Watchdog", + "site_detail_url": "https://comicvine.gamespot.com/watchdog/4005-44562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44565/", + "id": 44565, + "name": "Agent Axis", + "site_detail_url": "https://comicvine.gamespot.com/agent-axis/4005-44565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44573/", + "id": 44573, + "name": "Spirit of '76", + "site_detail_url": "https://comicvine.gamespot.com/spirit-of-76/4005-44573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44577/", + "id": 44577, + "name": "Sham", + "site_detail_url": "https://comicvine.gamespot.com/sham/4005-44577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44578/", + "id": 44578, + "name": "Quiver", + "site_detail_url": "https://comicvine.gamespot.com/quiver/4005-44578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44582/", + "id": 44582, + "name": "General Grievous", + "site_detail_url": "https://comicvine.gamespot.com/general-grievous/4005-44582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44584/", + "id": 44584, + "name": "Pinball", + "site_detail_url": "https://comicvine.gamespot.com/pinball/4005-44584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44588/", + "id": 44588, + "name": "Patriot", + "site_detail_url": "https://comicvine.gamespot.com/patriot/4005-44588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44589/", + "id": 44589, + "name": "Wraith", + "site_detail_url": "https://comicvine.gamespot.com/wraith/4005-44589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44590/", + "id": 44590, + "name": "Trance", + "site_detail_url": "https://comicvine.gamespot.com/trance/4005-44590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44592/", + "id": 44592, + "name": "Colonel Fritz Klaue", + "site_detail_url": "https://comicvine.gamespot.com/colonel-fritz-klaue/4005-44592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44603/", + "id": 44603, + "name": "Bliss", + "site_detail_url": "https://comicvine.gamespot.com/bliss/4005-44603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44650/", + "id": 44650, + "name": "Apocalypse Beast", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse-beast/4005-44650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44670/", + "id": 44670, + "name": "Wardog", + "site_detail_url": "https://comicvine.gamespot.com/wardog/4005-44670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44681/", + "id": 44681, + "name": "Gene Thompson", + "site_detail_url": "https://comicvine.gamespot.com/gene-thompson/4005-44681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44682/", + "id": 44682, + "name": "Kaptain Briton", + "site_detail_url": "https://comicvine.gamespot.com/kaptain-briton/4005-44682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44690/", + "id": 44690, + "name": "Zarek", + "site_detail_url": "https://comicvine.gamespot.com/zarek/4005-44690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44691/", + "id": 44691, + "name": "Phone Ranger", + "site_detail_url": "https://comicvine.gamespot.com/phone-ranger/4005-44691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44692/", + "id": 44692, + "name": "Network", + "site_detail_url": "https://comicvine.gamespot.com/network/4005-44692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44720/", + "id": 44720, + "name": "Rocko", + "site_detail_url": "https://comicvine.gamespot.com/rocko/4005-44720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44721/", + "id": 44721, + "name": "Heffer Wolfe", + "site_detail_url": "https://comicvine.gamespot.com/heffer-wolfe/4005-44721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44722/", + "id": 44722, + "name": "Spunky", + "site_detail_url": "https://comicvine.gamespot.com/spunky/4005-44722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44723/", + "id": 44723, + "name": "Filburt Shellbach", + "site_detail_url": "https://comicvine.gamespot.com/filburt-shellbach/4005-44723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44724/", + "id": 44724, + "name": "Ed Bighead", + "site_detail_url": "https://comicvine.gamespot.com/ed-bighead/4005-44724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44729/", + "id": 44729, + "name": "Gladys Hippo", + "site_detail_url": "https://comicvine.gamespot.com/gladys-hippo/4005-44729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44732/", + "id": 44732, + "name": "Gil Corazon", + "site_detail_url": "https://comicvine.gamespot.com/gil-corazon/4005-44732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44734/", + "id": 44734, + "name": "Earl", + "site_detail_url": "https://comicvine.gamespot.com/earl/4005-44734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44735/", + "id": 44735, + "name": "Derek Khanata", + "site_detail_url": "https://comicvine.gamespot.com/derek-khanata/4005-44735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44739/", + "id": 44739, + "name": "The Great Video", + "site_detail_url": "https://comicvine.gamespot.com/the-great-video/4005-44739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44740/", + "id": 44740, + "name": "One-Eyed Jacquie", + "site_detail_url": "https://comicvine.gamespot.com/one-eyed-jacquie/4005-44740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44741/", + "id": 44741, + "name": "Ace", + "site_detail_url": "https://comicvine.gamespot.com/ace/4005-44741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44742/", + "id": 44742, + "name": "Heartbreak Kid", + "site_detail_url": "https://comicvine.gamespot.com/heartbreak-kid/4005-44742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44746/", + "id": 44746, + "name": "Ariel", + "site_detail_url": "https://comicvine.gamespot.com/ariel/4005-44746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44747/", + "id": 44747, + "name": "Colonel Reyes", + "site_detail_url": "https://comicvine.gamespot.com/colonel-reyes/4005-44747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44752/", + "id": 44752, + "name": "Bollix", + "site_detail_url": "https://comicvine.gamespot.com/bollix/4005-44752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44753/", + "id": 44753, + "name": "Rustler", + "site_detail_url": "https://comicvine.gamespot.com/rustler/4005-44753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44754/", + "id": 44754, + "name": "Professor Imam", + "site_detail_url": "https://comicvine.gamespot.com/professor-imam/4005-44754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44755/", + "id": 44755, + "name": "Daniel Yates", + "site_detail_url": "https://comicvine.gamespot.com/daniel-yates/4005-44755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44757/", + "id": 44757, + "name": "Airhead", + "site_detail_url": "https://comicvine.gamespot.com/airhead/4005-44757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44759/", + "id": 44759, + "name": "Garbage Man", + "site_detail_url": "https://comicvine.gamespot.com/garbage-man/4005-44759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44760/", + "id": 44760, + "name": "Blasting Cap", + "site_detail_url": "https://comicvine.gamespot.com/blasting-cap/4005-44760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44761/", + "id": 44761, + "name": "Brute", + "site_detail_url": "https://comicvine.gamespot.com/brute/4005-44761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44762/", + "id": 44762, + "name": "Crazy Legs", + "site_detail_url": "https://comicvine.gamespot.com/crazy-legs/4005-44762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44763/", + "id": 44763, + "name": "Razor Cut", + "site_detail_url": "https://comicvine.gamespot.com/razor-cut/4005-44763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44764/", + "id": 44764, + "name": "Thor Kid", + "site_detail_url": "https://comicvine.gamespot.com/thor-kid/4005-44764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44780/", + "id": 44780, + "name": "Zogar Sag", + "site_detail_url": "https://comicvine.gamespot.com/zogar-sag/4005-44780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44781/", + "id": 44781, + "name": "Njal", + "site_detail_url": "https://comicvine.gamespot.com/njal/4005-44781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44782/", + "id": 44782, + "name": "Hisarr Zul", + "site_detail_url": "https://comicvine.gamespot.com/hisarr-zul/4005-44782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44787/", + "id": 44787, + "name": "Kid Current", + "site_detail_url": "https://comicvine.gamespot.com/kid-current/4005-44787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44793/", + "id": 44793, + "name": "Spike Freeman", + "site_detail_url": "https://comicvine.gamespot.com/spike-freeman/4005-44793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44818/", + "id": 44818, + "name": "Iron Moth", + "site_detail_url": "https://comicvine.gamespot.com/iron-moth/4005-44818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44819/", + "id": 44819, + "name": "Thermite", + "site_detail_url": "https://comicvine.gamespot.com/thermite/4005-44819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44820/", + "id": 44820, + "name": "Moonglow", + "site_detail_url": "https://comicvine.gamespot.com/moonglow/4005-44820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44830/", + "id": 44830, + "name": "Ace Spencer", + "site_detail_url": "https://comicvine.gamespot.com/ace-spencer/4005-44830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44831/", + "id": 44831, + "name": "Zebra Daddy", + "site_detail_url": "https://comicvine.gamespot.com/zebra-daddy/4005-44831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44844/", + "id": 44844, + "name": "Googam", + "site_detail_url": "https://comicvine.gamespot.com/googam/4005-44844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44845/", + "id": 44845, + "name": "Tim Boo Ba", + "site_detail_url": "https://comicvine.gamespot.com/tim-boo-ba/4005-44845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44886/", + "id": 44886, + "name": "Fuyumi Fujikawa", + "site_detail_url": "https://comicvine.gamespot.com/fuyumi-fujikawa/4005-44886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44891/", + "id": 44891, + "name": "Absynthe", + "site_detail_url": "https://comicvine.gamespot.com/absynthe/4005-44891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44914/", + "id": 44914, + "name": "Chance", + "site_detail_url": "https://comicvine.gamespot.com/chance/4005-44914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44934/", + "id": 44934, + "name": "Kasper Cole", + "site_detail_url": "https://comicvine.gamespot.com/kasper-cole/4005-44934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44937/", + "id": 44937, + "name": "Exitar the Exterminator", + "site_detail_url": "https://comicvine.gamespot.com/exitar-the-exterminator/4005-44937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44954/", + "id": 44954, + "name": "Malcolm", + "site_detail_url": "https://comicvine.gamespot.com/malcolm/4005-44954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44958/", + "id": 44958, + "name": "Devourer of Souls", + "site_detail_url": "https://comicvine.gamespot.com/devourer-of-souls/4005-44958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44964/", + "id": 44964, + "name": "Vienna", + "site_detail_url": "https://comicvine.gamespot.com/vienna/4005-44964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44965/", + "id": 44965, + "name": "Blitzkrieger", + "site_detail_url": "https://comicvine.gamespot.com/blitzkrieger/4005-44965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44970/", + "id": 44970, + "name": "Zerbrowski", + "site_detail_url": "https://comicvine.gamespot.com/zerbrowski/4005-44970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-44971/", + "id": 44971, + "name": "Snapdragon", + "site_detail_url": "https://comicvine.gamespot.com/snapdragon/4005-44971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45003/", + "id": 45003, + "name": "King Size", + "site_detail_url": "https://comicvine.gamespot.com/king-size/4005-45003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45004/", + "id": 45004, + "name": "Insecticide", + "site_detail_url": "https://comicvine.gamespot.com/insecticide/4005-45004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45018/", + "id": 45018, + "name": "Otis", + "site_detail_url": "https://comicvine.gamespot.com/otis/4005-45018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45019/", + "id": 45019, + "name": "Grindhouse", + "site_detail_url": "https://comicvine.gamespot.com/grindhouse/4005-45019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45025/", + "id": 45025, + "name": "Fortune", + "site_detail_url": "https://comicvine.gamespot.com/fortune/4005-45025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45026/", + "id": 45026, + "name": "Fever", + "site_detail_url": "https://comicvine.gamespot.com/fever/4005-45026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45027/", + "id": 45027, + "name": "Eduardo Devargas", + "site_detail_url": "https://comicvine.gamespot.com/eduardo-devargas/4005-45027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45028/", + "id": 45028, + "name": "Tiger Wylde", + "site_detail_url": "https://comicvine.gamespot.com/tiger-wylde/4005-45028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45029/", + "id": 45029, + "name": "Brother Britman", + "site_detail_url": "https://comicvine.gamespot.com/brother-britman/4005-45029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45036/", + "id": 45036, + "name": "Wire", + "site_detail_url": "https://comicvine.gamespot.com/wire/4005-45036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45037/", + "id": 45037, + "name": "Minxi", + "site_detail_url": "https://comicvine.gamespot.com/minxi/4005-45037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45038/", + "id": 45038, + "name": "Diamanda Nero", + "site_detail_url": "https://comicvine.gamespot.com/diamanda-nero/4005-45038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45039/", + "id": 45039, + "name": "Lexii", + "site_detail_url": "https://comicvine.gamespot.com/lexii/4005-45039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45040/", + "id": 45040, + "name": "Malachi Hark", + "site_detail_url": "https://comicvine.gamespot.com/malachi-hark/4005-45040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45041/", + "id": 45041, + "name": "Ozana", + "site_detail_url": "https://comicvine.gamespot.com/ozana/4005-45041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45043/", + "id": 45043, + "name": "Qua", + "site_detail_url": "https://comicvine.gamespot.com/qua/4005-45043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45044/", + "id": 45044, + "name": "Lisa Hendricks", + "site_detail_url": "https://comicvine.gamespot.com/lisa-hendricks/4005-45044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45045/", + "id": 45045, + "name": "Tom Lennox", + "site_detail_url": "https://comicvine.gamespot.com/tom-lennox/4005-45045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45046/", + "id": 45046, + "name": "Alison Double", + "site_detail_url": "https://comicvine.gamespot.com/alison-double/4005-45046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45049/", + "id": 45049, + "name": "Astrid Bloom", + "site_detail_url": "https://comicvine.gamespot.com/astrid-bloom/4005-45049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45050/", + "id": 45050, + "name": "Christian Frost", + "site_detail_url": "https://comicvine.gamespot.com/christian-frost/4005-45050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45066/", + "id": 45066, + "name": "Detective Danny Granville", + "site_detail_url": "https://comicvine.gamespot.com/detective-danny-granville/4005-45066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45067/", + "id": 45067, + "name": "Arch-E", + "site_detail_url": "https://comicvine.gamespot.com/arch-e/4005-45067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45074/", + "id": 45074, + "name": "Obliterator", + "site_detail_url": "https://comicvine.gamespot.com/obliterator/4005-45074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45077/", + "id": 45077, + "name": "Xandra", + "site_detail_url": "https://comicvine.gamespot.com/xandra/4005-45077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45078/", + "id": 45078, + "name": "Vox", + "site_detail_url": "https://comicvine.gamespot.com/vox/4005-45078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45082/", + "id": 45082, + "name": "Orson Randall", + "site_detail_url": "https://comicvine.gamespot.com/orson-randall/4005-45082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45096/", + "id": 45096, + "name": "Horns", + "site_detail_url": "https://comicvine.gamespot.com/horns/4005-45096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45097/", + "id": 45097, + "name": "Hugo Longride", + "site_detail_url": "https://comicvine.gamespot.com/hugo-longride/4005-45097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45103/", + "id": 45103, + "name": "Ivich", + "site_detail_url": "https://comicvine.gamespot.com/ivich/4005-45103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45104/", + "id": 45104, + "name": "Lexi", + "site_detail_url": "https://comicvine.gamespot.com/lexi/4005-45104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45105/", + "id": 45105, + "name": "Max Rocker", + "site_detail_url": "https://comicvine.gamespot.com/max-rocker/4005-45105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45106/", + "id": 45106, + "name": "Ralph", + "site_detail_url": "https://comicvine.gamespot.com/ralph/4005-45106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45107/", + "id": 45107, + "name": "Ray", + "site_detail_url": "https://comicvine.gamespot.com/ray/4005-45107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45120/", + "id": 45120, + "name": "Joelle Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/joelle-guthrie/4005-45120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45121/", + "id": 45121, + "name": "Jeb Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/jeb-guthrie/4005-45121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45122/", + "id": 45122, + "name": "Lucinda Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/lucinda-guthrie/4005-45122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45124/", + "id": 45124, + "name": "K'Shamba", + "site_detail_url": "https://comicvine.gamespot.com/kshamba/4005-45124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45125/", + "id": 45125, + "name": "Black Womb", + "site_detail_url": "https://comicvine.gamespot.com/black-womb/4005-45125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45126/", + "id": 45126, + "name": "Daniel Summers", + "site_detail_url": "https://comicvine.gamespot.com/daniel-summers/4005-45126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45134/", + "id": 45134, + "name": "Venture", + "site_detail_url": "https://comicvine.gamespot.com/venture/4005-45134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45141/", + "id": 45141, + "name": "Skerrit", + "site_detail_url": "https://comicvine.gamespot.com/skerrit/4005-45141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45142/", + "id": 45142, + "name": "Siddard", + "site_detail_url": "https://comicvine.gamespot.com/siddard/4005-45142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45144/", + "id": 45144, + "name": "Larry Bodine", + "site_detail_url": "https://comicvine.gamespot.com/larry-bodine/4005-45144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45145/", + "id": 45145, + "name": "Lorelei", + "site_detail_url": "https://comicvine.gamespot.com/lorelei/4005-45145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45155/", + "id": 45155, + "name": "Akter Khan", + "site_detail_url": "https://comicvine.gamespot.com/akter-khan/4005-45155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45157/", + "id": 45157, + "name": "Jay", + "site_detail_url": "https://comicvine.gamespot.com/jay/4005-45157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45158/", + "id": 45158, + "name": "Kay", + "site_detail_url": "https://comicvine.gamespot.com/kay/4005-45158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45164/", + "id": 45164, + "name": "Zed", + "site_detail_url": "https://comicvine.gamespot.com/zed/4005-45164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45165/", + "id": 45165, + "name": "Saboteur", + "site_detail_url": "https://comicvine.gamespot.com/saboteur/4005-45165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45184/", + "id": 45184, + "name": "Poet", + "site_detail_url": "https://comicvine.gamespot.com/poet/4005-45184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45187/", + "id": 45187, + "name": "Haze", + "site_detail_url": "https://comicvine.gamespot.com/haze/4005-45187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45191/", + "id": 45191, + "name": "Gailyn Bailey", + "site_detail_url": "https://comicvine.gamespot.com/gailyn-bailey/4005-45191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45192/", + "id": 45192, + "name": "Joey Bailey", + "site_detail_url": "https://comicvine.gamespot.com/joey-bailey/4005-45192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45193/", + "id": 45193, + "name": "Lyla", + "site_detail_url": "https://comicvine.gamespot.com/lyla/4005-45193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45194/", + "id": 45194, + "name": "Gabriel O'Hara", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-ohara/4005-45194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45195/", + "id": 45195, + "name": "Gerhard Van Ostamgen", + "site_detail_url": "https://comicvine.gamespot.com/gerhard-van-ostamgen/4005-45195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45196/", + "id": 45196, + "name": "Dana D'Angelo", + "site_detail_url": "https://comicvine.gamespot.com/dana-dangelo/4005-45196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45199/", + "id": 45199, + "name": "The Specialist", + "site_detail_url": "https://comicvine.gamespot.com/the-specialist/4005-45199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45200/", + "id": 45200, + "name": "Skunge", + "site_detail_url": "https://comicvine.gamespot.com/skunge/4005-45200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45201/", + "id": 45201, + "name": "Admiral Dupen'th", + "site_detail_url": "https://comicvine.gamespot.com/admiral-dupenth/4005-45201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45203/", + "id": 45203, + "name": "Lady Grey", + "site_detail_url": "https://comicvine.gamespot.com/lady-grey/4005-45203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45204/", + "id": 45204, + "name": "Reverend Hiram Shaw", + "site_detail_url": "https://comicvine.gamespot.com/reverend-hiram-shaw/4005-45204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45205/", + "id": 45205, + "name": "Sarah Shaw", + "site_detail_url": "https://comicvine.gamespot.com/sarah-shaw/4005-45205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45206/", + "id": 45206, + "name": "Obadiah Shaw", + "site_detail_url": "https://comicvine.gamespot.com/obadiah-shaw/4005-45206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45207/", + "id": 45207, + "name": "Abigail Harkness", + "site_detail_url": "https://comicvine.gamespot.com/abigail-harkness/4005-45207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45208/", + "id": 45208, + "name": "Major General Wallace Worthington", + "site_detail_url": "https://comicvine.gamespot.com/major-general-wallace-worthington/4005-45208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45214/", + "id": 45214, + "name": "Jacob Shaw", + "site_detail_url": "https://comicvine.gamespot.com/jacob-shaw/4005-45214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45215/", + "id": 45215, + "name": "Esau Shaw", + "site_detail_url": "https://comicvine.gamespot.com/esau-shaw/4005-45215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45216/", + "id": 45216, + "name": "Sir Waltham Pierce", + "site_detail_url": "https://comicvine.gamespot.com/sir-waltham-pierce/4005-45216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45217/", + "id": 45217, + "name": "Elias Bogan", + "site_detail_url": "https://comicvine.gamespot.com/elias-bogan/4005-45217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45219/", + "id": 45219, + "name": "Phobos", + "site_detail_url": "https://comicvine.gamespot.com/phobos/4005-45219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45226/", + "id": 45226, + "name": "Sean Garrison", + "site_detail_url": "https://comicvine.gamespot.com/sean-garrison/4005-45226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45271/", + "id": 45271, + "name": "Elizabeth Shaw-Worthington", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-shaw-worthington/4005-45271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45274/", + "id": 45274, + "name": "Nina Da Costa", + "site_detail_url": "https://comicvine.gamespot.com/nina-da-costa/4005-45274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45354/", + "id": 45354, + "name": "Hrimhari", + "site_detail_url": "https://comicvine.gamespot.com/hrimhari/4005-45354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45355/", + "id": 45355, + "name": "Jinjav Sabree", + "site_detail_url": "https://comicvine.gamespot.com/jinjav-sabree/4005-45355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45356/", + "id": 45356, + "name": "Long John McGurk", + "site_detail_url": "https://comicvine.gamespot.com/long-john-mcgurk/4005-45356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45358/", + "id": 45358, + "name": "Stefan Szardos", + "site_detail_url": "https://comicvine.gamespot.com/stefan-szardos/4005-45358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45372/", + "id": 45372, + "name": "Magda Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/magda-eisenhardt/4005-45372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45373/", + "id": 45373, + "name": "Anya Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/anya-eisenhardt/4005-45373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45380/", + "id": 45380, + "name": "Samarra Shaw", + "site_detail_url": "https://comicvine.gamespot.com/samarra-shaw/4005-45380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45391/", + "id": 45391, + "name": "Stinger", + "site_detail_url": "https://comicvine.gamespot.com/stinger/4005-45391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45400/", + "id": 45400, + "name": "Boggie", + "site_detail_url": "https://comicvine.gamespot.com/boggie/4005-45400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45424/", + "id": 45424, + "name": "Wayep", + "site_detail_url": "https://comicvine.gamespot.com/wayep/4005-45424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45442/", + "id": 45442, + "name": "Ghannif", + "site_detail_url": "https://comicvine.gamespot.com/ghannif/4005-45442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45445/", + "id": 45445, + "name": "Shagreen", + "site_detail_url": "https://comicvine.gamespot.com/shagreen/4005-45445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45447/", + "id": 45447, + "name": "Hive", + "site_detail_url": "https://comicvine.gamespot.com/hive/4005-45447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45526/", + "id": 45526, + "name": "Vic Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/vic-slaughter/4005-45526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45531/", + "id": 45531, + "name": "Jade", + "site_detail_url": "https://comicvine.gamespot.com/jade/4005-45531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45532/", + "id": 45532, + "name": "Lighttrakker", + "site_detail_url": "https://comicvine.gamespot.com/lighttrakker/4005-45532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45546/", + "id": 45546, + "name": "Fang", + "site_detail_url": "https://comicvine.gamespot.com/fang/4005-45546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45549/", + "id": 45549, + "name": "Ray Landers", + "site_detail_url": "https://comicvine.gamespot.com/ray-landers/4005-45549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45550/", + "id": 45550, + "name": "The Profile", + "site_detail_url": "https://comicvine.gamespot.com/the-profile/4005-45550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45559/", + "id": 45559, + "name": "Bob, Agent of HYDRA", + "site_detail_url": "https://comicvine.gamespot.com/bob-agent-of-hydra/4005-45559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45566/", + "id": 45566, + "name": "Kiwi Black", + "site_detail_url": "https://comicvine.gamespot.com/kiwi-black/4005-45566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45567/", + "id": 45567, + "name": "Yidrazil", + "site_detail_url": "https://comicvine.gamespot.com/yidrazil/4005-45567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45568/", + "id": 45568, + "name": "Ginniyeh", + "site_detail_url": "https://comicvine.gamespot.com/ginniyeh/4005-45568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45569/", + "id": 45569, + "name": "Ophis", + "site_detail_url": "https://comicvine.gamespot.com/ophis/4005-45569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45570/", + "id": 45570, + "name": "Raven LeBeau", + "site_detail_url": "https://comicvine.gamespot.com/raven-lebeau/4005-45570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45590/", + "id": 45590, + "name": "Scotty Summers", + "site_detail_url": "https://comicvine.gamespot.com/scotty-summers/4005-45590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45613/", + "id": 45613, + "name": "Angel Dust", + "site_detail_url": "https://comicvine.gamespot.com/angel-dust/4005-45613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45615/", + "id": 45615, + "name": "Armena Ortega", + "site_detail_url": "https://comicvine.gamespot.com/armena-ortega/4005-45615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45616/", + "id": 45616, + "name": "Electric Eve", + "site_detail_url": "https://comicvine.gamespot.com/electric-eve/4005-45616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45617/", + "id": 45617, + "name": "Hannah Levy", + "site_detail_url": "https://comicvine.gamespot.com/hannah-levy/4005-45617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45618/", + "id": 45618, + "name": "Lara the Illusionist", + "site_detail_url": "https://comicvine.gamespot.com/lara-the-illusionist/4005-45618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45619/", + "id": 45619, + "name": "Mist Mistress", + "site_detail_url": "https://comicvine.gamespot.com/mist-mistress/4005-45619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45620/", + "id": 45620, + "name": "Postman", + "site_detail_url": "https://comicvine.gamespot.com/postman/4005-45620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45621/", + "id": 45621, + "name": "Hybrid", + "site_detail_url": "https://comicvine.gamespot.com/hybrid/4005-45621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45622/", + "id": 45622, + "name": "Shatter", + "site_detail_url": "https://comicvine.gamespot.com/shatter/4005-45622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45632/", + "id": 45632, + "name": "Olgerd Vladislav", + "site_detail_url": "https://comicvine.gamespot.com/olgerd-vladislav/4005-45632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45633/", + "id": 45633, + "name": "The Black Stranger", + "site_detail_url": "https://comicvine.gamespot.com/the-black-stranger/4005-45633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45635/", + "id": 45635, + "name": "Zelata", + "site_detail_url": "https://comicvine.gamespot.com/zelata/4005-45635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45636/", + "id": 45636, + "name": "Jillian", + "site_detail_url": "https://comicvine.gamespot.com/jillian/4005-45636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45637/", + "id": 45637, + "name": "Villagro", + "site_detail_url": "https://comicvine.gamespot.com/villagro/4005-45637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45638/", + "id": 45638, + "name": "Countess Albiona", + "site_detail_url": "https://comicvine.gamespot.com/countess-albiona/4005-45638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45639/", + "id": 45639, + "name": "Zeriti", + "site_detail_url": "https://comicvine.gamespot.com/zeriti/4005-45639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45649/", + "id": 45649, + "name": "Khosatral Khel", + "site_detail_url": "https://comicvine.gamespot.com/khosatral-khel/4005-45649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45650/", + "id": 45650, + "name": "Nafertari", + "site_detail_url": "https://comicvine.gamespot.com/nafertari/4005-45650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45651/", + "id": 45651, + "name": "Zaporavo", + "site_detail_url": "https://comicvine.gamespot.com/zaporavo/4005-45651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45652/", + "id": 45652, + "name": "Octavia", + "site_detail_url": "https://comicvine.gamespot.com/octavia/4005-45652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45653/", + "id": 45653, + "name": "Baal-Pteor", + "site_detail_url": "https://comicvine.gamespot.com/baal-pteor/4005-45653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45654/", + "id": 45654, + "name": "Sancha", + "site_detail_url": "https://comicvine.gamespot.com/sancha/4005-45654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45681/", + "id": 45681, + "name": "Shapeshifter", + "site_detail_url": "https://comicvine.gamespot.com/shapeshifter/4005-45681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45698/", + "id": 45698, + "name": "Ko-Rel", + "site_detail_url": "https://comicvine.gamespot.com/ko-rel/4005-45698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45702/", + "id": 45702, + "name": "Galaxy Master", + "site_detail_url": "https://comicvine.gamespot.com/galaxy-master/4005-45702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45709/", + "id": 45709, + "name": "E.V.A", + "site_detail_url": "https://comicvine.gamespot.com/eva/4005-45709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45713/", + "id": 45713, + "name": "Isolationist", + "site_detail_url": "https://comicvine.gamespot.com/isolationist/4005-45713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45720/", + "id": 45720, + "name": "Zam-Rel", + "site_detail_url": "https://comicvine.gamespot.com/zam-rel/4005-45720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45722/", + "id": 45722, + "name": "Minotaur", + "site_detail_url": "https://comicvine.gamespot.com/minotaur/4005-45722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45743/", + "id": 45743, + "name": "Leo Zelinsky", + "site_detail_url": "https://comicvine.gamespot.com/leo-zelinsky/4005-45743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45746/", + "id": 45746, + "name": "Lazaer", + "site_detail_url": "https://comicvine.gamespot.com/lazaer/4005-45746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45754/", + "id": 45754, + "name": "Mulholland", + "site_detail_url": "https://comicvine.gamespot.com/mulholland/4005-45754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45756/", + "id": 45756, + "name": "Anthem", + "site_detail_url": "https://comicvine.gamespot.com/anthem/4005-45756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45757/", + "id": 45757, + "name": "Aralune", + "site_detail_url": "https://comicvine.gamespot.com/aralune/4005-45757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45758/", + "id": 45758, + "name": "Supernaut", + "site_detail_url": "https://comicvine.gamespot.com/supernaut/4005-45758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45759/", + "id": 45759, + "name": "Calamity", + "site_detail_url": "https://comicvine.gamespot.com/calamity/4005-45759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45760/", + "id": 45760, + "name": "Veda", + "site_detail_url": "https://comicvine.gamespot.com/veda/4005-45760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45761/", + "id": 45761, + "name": "Eosimias", + "site_detail_url": "https://comicvine.gamespot.com/eosimias/4005-45761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45762/", + "id": 45762, + "name": "Sarah Stacy", + "site_detail_url": "https://comicvine.gamespot.com/sarah-stacy/4005-45762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45770/", + "id": 45770, + "name": "Charlotte Witter", + "site_detail_url": "https://comicvine.gamespot.com/charlotte-witter/4005-45770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45872/", + "id": 45872, + "name": "Bloodbath", + "site_detail_url": "https://comicvine.gamespot.com/bloodbath/4005-45872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45930/", + "id": 45930, + "name": "Glamor", + "site_detail_url": "https://comicvine.gamespot.com/glamor/4005-45930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45978/", + "id": 45978, + "name": "Sschaaronn", + "site_detail_url": "https://comicvine.gamespot.com/sschaaronn/4005-45978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45991/", + "id": 45991, + "name": "Dead Dave", + "site_detail_url": "https://comicvine.gamespot.com/dead-dave/4005-45991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45992/", + "id": 45992, + "name": "Adam", + "site_detail_url": "https://comicvine.gamespot.com/adam/4005-45992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46107/", + "id": 46107, + "name": "Subbie", + "site_detail_url": "https://comicvine.gamespot.com/subbie/4005-46107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46108/", + "id": 46108, + "name": "Ereshkigal", + "site_detail_url": "https://comicvine.gamespot.com/ereshkigal/4005-46108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46114/", + "id": 46114, + "name": "Olar", + "site_detail_url": "https://comicvine.gamespot.com/olar/4005-46114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46115/", + "id": 46115, + "name": "Stem", + "site_detail_url": "https://comicvine.gamespot.com/stem/4005-46115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46118/", + "id": 46118, + "name": "Jorro", + "site_detail_url": "https://comicvine.gamespot.com/jorro/4005-46118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46121/", + "id": 46121, + "name": "Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crusader/4005-46121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46122/", + "id": 46122, + "name": "Geometer", + "site_detail_url": "https://comicvine.gamespot.com/geometer/4005-46122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46123/", + "id": 46123, + "name": "Pink Lady", + "site_detail_url": "https://comicvine.gamespot.com/pink-lady/4005-46123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46125/", + "id": 46125, + "name": "Eric Chin", + "site_detail_url": "https://comicvine.gamespot.com/eric-chin/4005-46125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46126/", + "id": 46126, + "name": "Tim Ferris", + "site_detail_url": "https://comicvine.gamespot.com/tim-ferris/4005-46126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46127/", + "id": 46127, + "name": "Eduardo Giotti", + "site_detail_url": "https://comicvine.gamespot.com/eduardo-giotti/4005-46127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46128/", + "id": 46128, + "name": "Andrew Meadows", + "site_detail_url": "https://comicvine.gamespot.com/andrew-meadows/4005-46128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46129/", + "id": 46129, + "name": "Teresa Roberts", + "site_detail_url": "https://comicvine.gamespot.com/teresa-roberts/4005-46129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46130/", + "id": 46130, + "name": "Quoi", + "site_detail_url": "https://comicvine.gamespot.com/quoi/4005-46130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46131/", + "id": 46131, + "name": "Prime Cotati", + "site_detail_url": "https://comicvine.gamespot.com/prime-cotati/4005-46131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46133/", + "id": 46133, + "name": "Fin", + "site_detail_url": "https://comicvine.gamespot.com/fin/4005-46133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46164/", + "id": 46164, + "name": "Li Ching-Lin", + "site_detail_url": "https://comicvine.gamespot.com/li-ching-lin/4005-46164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46173/", + "id": 46173, + "name": "Princess Chabela", + "site_detail_url": "https://comicvine.gamespot.com/princess-chabela/4005-46173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46174/", + "id": 46174, + "name": "Spider-X", + "site_detail_url": "https://comicvine.gamespot.com/spider-x/4005-46174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46177/", + "id": 46177, + "name": "Skinner", + "site_detail_url": "https://comicvine.gamespot.com/skinner/4005-46177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46186/", + "id": 46186, + "name": "Tefral the Surveyor", + "site_detail_url": "https://comicvine.gamespot.com/tefral-the-surveyor/4005-46186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46203/", + "id": 46203, + "name": "Pinto Pete", + "site_detail_url": "https://comicvine.gamespot.com/pinto-pete/4005-46203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46205/", + "id": 46205, + "name": "Grace", + "site_detail_url": "https://comicvine.gamespot.com/grace/4005-46205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46206/", + "id": 46206, + "name": "Kaz", + "site_detail_url": "https://comicvine.gamespot.com/kaz/4005-46206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46219/", + "id": 46219, + "name": "Nigel Orpington-Smythe", + "site_detail_url": "https://comicvine.gamespot.com/nigel-orpington-smythe/4005-46219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46222/", + "id": 46222, + "name": "Detective Givens", + "site_detail_url": "https://comicvine.gamespot.com/detective-givens/4005-46222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46223/", + "id": 46223, + "name": "Detective Sykes", + "site_detail_url": "https://comicvine.gamespot.com/detective-sykes/4005-46223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46233/", + "id": 46233, + "name": "Lewis Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/lewis-guthrie/4005-46233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46234/", + "id": 46234, + "name": "Black Widow (Voyant)", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-voyant/4005-46234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46244/", + "id": 46244, + "name": "Thok", + "site_detail_url": "https://comicvine.gamespot.com/thok/4005-46244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46246/", + "id": 46246, + "name": "Mindblast", + "site_detail_url": "https://comicvine.gamespot.com/mindblast/4005-46246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46261/", + "id": 46261, + "name": "Miarka", + "site_detail_url": "https://comicvine.gamespot.com/miarka/4005-46261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46270/", + "id": 46270, + "name": "Witness", + "site_detail_url": "https://comicvine.gamespot.com/witness/4005-46270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46271/", + "id": 46271, + "name": "Blue Blade", + "site_detail_url": "https://comicvine.gamespot.com/blue-blade/4005-46271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46272/", + "id": 46272, + "name": "Super-Slave", + "site_detail_url": "https://comicvine.gamespot.com/super-slave/4005-46272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46274/", + "id": 46274, + "name": "Moon-Man", + "site_detail_url": "https://comicvine.gamespot.com/moon-man/4005-46274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46276/", + "id": 46276, + "name": "Golddigger", + "site_detail_url": "https://comicvine.gamespot.com/golddigger/4005-46276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46281/", + "id": 46281, + "name": "Rachel", + "site_detail_url": "https://comicvine.gamespot.com/rachel/4005-46281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46283/", + "id": 46283, + "name": "Zhora", + "site_detail_url": "https://comicvine.gamespot.com/zhora/4005-46283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46284/", + "id": 46284, + "name": "Gaff", + "site_detail_url": "https://comicvine.gamespot.com/gaff/4005-46284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46286/", + "id": 46286, + "name": "Holden", + "site_detail_url": "https://comicvine.gamespot.com/holden/4005-46286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46287/", + "id": 46287, + "name": "JF Sebastian", + "site_detail_url": "https://comicvine.gamespot.com/jf-sebastian/4005-46287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46288/", + "id": 46288, + "name": "Tyrell", + "site_detail_url": "https://comicvine.gamespot.com/tyrell/4005-46288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46289/", + "id": 46289, + "name": "Leon", + "site_detail_url": "https://comicvine.gamespot.com/leon/4005-46289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46332/", + "id": 46332, + "name": "Defender", + "site_detail_url": "https://comicvine.gamespot.com/defender/4005-46332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46333/", + "id": 46333, + "name": "Dame Kackle", + "site_detail_url": "https://comicvine.gamespot.com/dame-kackle/4005-46333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46334/", + "id": 46334, + "name": "Granno", + "site_detail_url": "https://comicvine.gamespot.com/granno/4005-46334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46335/", + "id": 46335, + "name": "Herr Leader", + "site_detail_url": "https://comicvine.gamespot.com/herr-leader/4005-46335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46337/", + "id": 46337, + "name": "Ethan Allan", + "site_detail_url": "https://comicvine.gamespot.com/ethan-allan/4005-46337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46338/", + "id": 46338, + "name": "Rockman", + "site_detail_url": "https://comicvine.gamespot.com/rockman/4005-46338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46339/", + "id": 46339, + "name": "Roffler", + "site_detail_url": "https://comicvine.gamespot.com/roffler/4005-46339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46340/", + "id": 46340, + "name": "Young Avenger", + "site_detail_url": "https://comicvine.gamespot.com/young-avenger/4005-46340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46341/", + "id": 46341, + "name": "Von Himmel", + "site_detail_url": "https://comicvine.gamespot.com/von-himmel/4005-46341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46342/", + "id": 46342, + "name": "Mr. Liberty", + "site_detail_url": "https://comicvine.gamespot.com/mr-liberty/4005-46342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46343/", + "id": 46343, + "name": "Rusty", + "site_detail_url": "https://comicvine.gamespot.com/rusty/4005-46343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46344/", + "id": 46344, + "name": "Dr. Emil Frank", + "site_detail_url": "https://comicvine.gamespot.com/dr-emil-frank/4005-46344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46368/", + "id": 46368, + "name": "Abslom Daak", + "site_detail_url": "https://comicvine.gamespot.com/abslom-daak/4005-46368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46387/", + "id": 46387, + "name": "Skitter", + "site_detail_url": "https://comicvine.gamespot.com/skitter/4005-46387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46388/", + "id": 46388, + "name": "Girth", + "site_detail_url": "https://comicvine.gamespot.com/girth/4005-46388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46390/", + "id": 46390, + "name": "Captain Wonder", + "site_detail_url": "https://comicvine.gamespot.com/captain-wonder/4005-46390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46444/", + "id": 46444, + "name": "Fiery Mask", + "site_detail_url": "https://comicvine.gamespot.com/fiery-mask/4005-46444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46454/", + "id": 46454, + "name": "Rolling Thunder", + "site_detail_url": "https://comicvine.gamespot.com/rolling-thunder/4005-46454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46455/", + "id": 46455, + "name": "Revenant", + "site_detail_url": "https://comicvine.gamespot.com/revenant/4005-46455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46464/", + "id": 46464, + "name": "Lynn Church", + "site_detail_url": "https://comicvine.gamespot.com/lynn-church/4005-46464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46477/", + "id": 46477, + "name": "Tri-Clops", + "site_detail_url": "https://comicvine.gamespot.com/tri-clops/4005-46477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46480/", + "id": 46480, + "name": "G-Force", + "site_detail_url": "https://comicvine.gamespot.com/g-force/4005-46480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46495/", + "id": 46495, + "name": "Lorelei", + "site_detail_url": "https://comicvine.gamespot.com/lorelei/4005-46495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46516/", + "id": 46516, + "name": "Base", + "site_detail_url": "https://comicvine.gamespot.com/base/4005-46516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46517/", + "id": 46517, + "name": "Krista Marwan", + "site_detail_url": "https://comicvine.gamespot.com/krista-marwan/4005-46517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46518/", + "id": 46518, + "name": "Meiko Yin", + "site_detail_url": "https://comicvine.gamespot.com/meiko-yin/4005-46518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46519/", + "id": 46519, + "name": "Push", + "site_detail_url": "https://comicvine.gamespot.com/push/4005-46519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46523/", + "id": 46523, + "name": "Ben Parker", + "site_detail_url": "https://comicvine.gamespot.com/ben-parker/4005-46523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46525/", + "id": 46525, + "name": "Astra", + "site_detail_url": "https://comicvine.gamespot.com/astra/4005-46525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46526/", + "id": 46526, + "name": "Vesper", + "site_detail_url": "https://comicvine.gamespot.com/vesper/4005-46526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46527/", + "id": 46527, + "name": "Leong Coy Manh", + "site_detail_url": "https://comicvine.gamespot.com/leong-coy-manh/4005-46527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46528/", + "id": 46528, + "name": "Nga Coy Manh", + "site_detail_url": "https://comicvine.gamespot.com/nga-coy-manh/4005-46528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46536/", + "id": 46536, + "name": "Bobby Soul", + "site_detail_url": "https://comicvine.gamespot.com/bobby-soul/4005-46536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46558/", + "id": 46558, + "name": "The Executioner", + "site_detail_url": "https://comicvine.gamespot.com/the-executioner/4005-46558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46559/", + "id": 46559, + "name": "The Knave", + "site_detail_url": "https://comicvine.gamespot.com/the-knave/4005-46559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46577/", + "id": 46577, + "name": "Dynamic Man", + "site_detail_url": "https://comicvine.gamespot.com/dynamic-man/4005-46577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46587/", + "id": 46587, + "name": "Salome", + "site_detail_url": "https://comicvine.gamespot.com/salome/4005-46587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46588/", + "id": 46588, + "name": "Phantom Reporter", + "site_detail_url": "https://comicvine.gamespot.com/phantom-reporter/4005-46588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46599/", + "id": 46599, + "name": "Neurotap", + "site_detail_url": "https://comicvine.gamespot.com/neurotap/4005-46599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46606/", + "id": 46606, + "name": "The Commissar", + "site_detail_url": "https://comicvine.gamespot.com/the-commissar/4005-46606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46611/", + "id": 46611, + "name": "Primus Vand", + "site_detail_url": "https://comicvine.gamespot.com/primus-vand/4005-46611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46612/", + "id": 46612, + "name": "Lavin Skee", + "site_detail_url": "https://comicvine.gamespot.com/lavin-skee/4005-46612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46618/", + "id": 46618, + "name": "Kid Colossus", + "site_detail_url": "https://comicvine.gamespot.com/kid-colossus/4005-46618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46625/", + "id": 46625, + "name": "Mysteria", + "site_detail_url": "https://comicvine.gamespot.com/mysteria/4005-46625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46627/", + "id": 46627, + "name": "Enitharmon", + "site_detail_url": "https://comicvine.gamespot.com/enitharmon/4005-46627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46630/", + "id": 46630, + "name": "Zotarr", + "site_detail_url": "https://comicvine.gamespot.com/zotarr/4005-46630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46631/", + "id": 46631, + "name": "Bloodthirst", + "site_detail_url": "https://comicvine.gamespot.com/bloodthirst/4005-46631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46632/", + "id": 46632, + "name": "Snake Whip", + "site_detail_url": "https://comicvine.gamespot.com/snake-whip/4005-46632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46633/", + "id": 46633, + "name": "Ice Princess", + "site_detail_url": "https://comicvine.gamespot.com/ice-princess/4005-46633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46634/", + "id": 46634, + "name": "Ion", + "site_detail_url": "https://comicvine.gamespot.com/ion/4005-46634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46635/", + "id": 46635, + "name": "Wrangler", + "site_detail_url": "https://comicvine.gamespot.com/wrangler/4005-46635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46636/", + "id": 46636, + "name": "Pink Pearl", + "site_detail_url": "https://comicvine.gamespot.com/pink-pearl/4005-46636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46637/", + "id": 46637, + "name": "Chimera", + "site_detail_url": "https://comicvine.gamespot.com/chimera/4005-46637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46638/", + "id": 46638, + "name": "Water Witch", + "site_detail_url": "https://comicvine.gamespot.com/water-witch/4005-46638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46639/", + "id": 46639, + "name": "Blackbird", + "site_detail_url": "https://comicvine.gamespot.com/blackbird/4005-46639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46642/", + "id": 46642, + "name": "Wendell Rand", + "site_detail_url": "https://comicvine.gamespot.com/wendell-rand/4005-46642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46677/", + "id": 46677, + "name": "Caprice", + "site_detail_url": "https://comicvine.gamespot.com/caprice/4005-46677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46678/", + "id": 46678, + "name": "Mindwave", + "site_detail_url": "https://comicvine.gamespot.com/mindwave/4005-46678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46686/", + "id": 46686, + "name": "Xavi", + "site_detail_url": "https://comicvine.gamespot.com/xavi/4005-46686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46688/", + "id": 46688, + "name": "Monstra", + "site_detail_url": "https://comicvine.gamespot.com/monstra/4005-46688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46693/", + "id": 46693, + "name": "Heavy", + "site_detail_url": "https://comicvine.gamespot.com/heavy/4005-46693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46705/", + "id": 46705, + "name": "Static", + "site_detail_url": "https://comicvine.gamespot.com/static/4005-46705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46706/", + "id": 46706, + "name": "Arno Stark", + "site_detail_url": "https://comicvine.gamespot.com/arno-stark/4005-46706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46708/", + "id": 46708, + "name": "Thornn", + "site_detail_url": "https://comicvine.gamespot.com/thornn/4005-46708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46727/", + "id": 46727, + "name": "Izzy Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/izzy-sinclair/4005-46727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46728/", + "id": 46728, + "name": "Fey", + "site_detail_url": "https://comicvine.gamespot.com/fey/4005-46728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46729/", + "id": 46729, + "name": "Shayde", + "site_detail_url": "https://comicvine.gamespot.com/shayde/4005-46729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46741/", + "id": 46741, + "name": "Destrii", + "site_detail_url": "https://comicvine.gamespot.com/destrii/4005-46741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46742/", + "id": 46742, + "name": "Kroton", + "site_detail_url": "https://comicvine.gamespot.com/kroton/4005-46742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46754/", + "id": 46754, + "name": "Rubach", + "site_detail_url": "https://comicvine.gamespot.com/rubach/4005-46754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46755/", + "id": 46755, + "name": "Topher", + "site_detail_url": "https://comicvine.gamespot.com/topher/4005-46755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46756/", + "id": 46756, + "name": "Lieutenant Flores", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-flores/4005-46756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46779/", + "id": 46779, + "name": "Ixar the Invincible", + "site_detail_url": "https://comicvine.gamespot.com/ixar-the-invincible/4005-46779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46785/", + "id": 46785, + "name": "Fat Cobra", + "site_detail_url": "https://comicvine.gamespot.com/fat-cobra/4005-46785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46786/", + "id": 46786, + "name": "Dog Brother #1", + "site_detail_url": "https://comicvine.gamespot.com/dog-brother-1/4005-46786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46787/", + "id": 46787, + "name": "The Bride of Nine Spiders", + "site_detail_url": "https://comicvine.gamespot.com/the-bride-of-nine-spiders/4005-46787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46788/", + "id": 46788, + "name": "Tiger's Beautiful Daughter", + "site_detail_url": "https://comicvine.gamespot.com/tigers-beautiful-daughter/4005-46788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46789/", + "id": 46789, + "name": "Prince of Orphans", + "site_detail_url": "https://comicvine.gamespot.com/prince-of-orphans/4005-46789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46802/", + "id": 46802, + "name": "Wolvie", + "site_detail_url": "https://comicvine.gamespot.com/wolvie/4005-46802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46805/", + "id": 46805, + "name": "Shower", + "site_detail_url": "https://comicvine.gamespot.com/shower/4005-46805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46806/", + "id": 46806, + "name": "Cike", + "site_detail_url": "https://comicvine.gamespot.com/cike/4005-46806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46807/", + "id": 46807, + "name": "Colossusus", + "site_detail_url": "https://comicvine.gamespot.com/colossusus/4005-46807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46808/", + "id": 46808, + "name": "Shugah", + "site_detail_url": "https://comicvine.gamespot.com/shugah/4005-46808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46809/", + "id": 46809, + "name": "Psychild", + "site_detail_url": "https://comicvine.gamespot.com/psychild/4005-46809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46814/", + "id": 46814, + "name": "Spiders Man", + "site_detail_url": "https://comicvine.gamespot.com/spiders-man/4005-46814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46823/", + "id": 46823, + "name": "Brain-Child", + "site_detail_url": "https://comicvine.gamespot.com/brain-child/4005-46823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46829/", + "id": 46829, + "name": "Right-Winger", + "site_detail_url": "https://comicvine.gamespot.com/right-winger/4005-46829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46830/", + "id": 46830, + "name": "Oort the Living Comet", + "site_detail_url": "https://comicvine.gamespot.com/oort-the-living-comet/4005-46830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46833/", + "id": 46833, + "name": "Rommbu", + "site_detail_url": "https://comicvine.gamespot.com/rommbu/4005-46833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46834/", + "id": 46834, + "name": "Grogg", + "site_detail_url": "https://comicvine.gamespot.com/grogg/4005-46834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46835/", + "id": 46835, + "name": "Droom", + "site_detail_url": "https://comicvine.gamespot.com/droom/4005-46835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46836/", + "id": 46836, + "name": "Taboo", + "site_detail_url": "https://comicvine.gamespot.com/taboo/4005-46836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46837/", + "id": 46837, + "name": "Forearm", + "site_detail_url": "https://comicvine.gamespot.com/forearm/4005-46837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46838/", + "id": 46838, + "name": "Longneck", + "site_detail_url": "https://comicvine.gamespot.com/longneck/4005-46838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46839/", + "id": 46839, + "name": "Tantra", + "site_detail_url": "https://comicvine.gamespot.com/tantra/4005-46839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46840/", + "id": 46840, + "name": "Yagg", + "site_detail_url": "https://comicvine.gamespot.com/yagg/4005-46840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46841/", + "id": 46841, + "name": "Eson the Searcher", + "site_detail_url": "https://comicvine.gamespot.com/eson-the-searcher/4005-46841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46842/", + "id": 46842, + "name": "Devron the Experimenter", + "site_detail_url": "https://comicvine.gamespot.com/devron-the-experimenter/4005-46842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46843/", + "id": 46843, + "name": "Gamiel the Manipulator", + "site_detail_url": "https://comicvine.gamespot.com/gamiel-the-manipulator/4005-46843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46844/", + "id": 46844, + "name": "Jemiah the Analyzer", + "site_detail_url": "https://comicvine.gamespot.com/jemiah-the-analyzer/4005-46844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46845/", + "id": 46845, + "name": "Hargen the Measurer", + "site_detail_url": "https://comicvine.gamespot.com/hargen-the-measurer/4005-46845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46860/", + "id": 46860, + "name": "Silver Scorpion", + "site_detail_url": "https://comicvine.gamespot.com/silver-scorpion/4005-46860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46863/", + "id": 46863, + "name": "Bombu", + "site_detail_url": "https://comicvine.gamespot.com/bombu/4005-46863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46864/", + "id": 46864, + "name": "KhLΘG", + "site_detail_url": "https://comicvine.gamespot.com/khlg/4005-46864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46865/", + "id": 46865, + "name": "Gorgolla", + "site_detail_url": "https://comicvine.gamespot.com/gorgolla/4005-46865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46866/", + "id": 46866, + "name": "X", + "site_detail_url": "https://comicvine.gamespot.com/x/4005-46866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46867/", + "id": 46867, + "name": "Spragg", + "site_detail_url": "https://comicvine.gamespot.com/spragg/4005-46867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46868/", + "id": 46868, + "name": "Zzutak", + "site_detail_url": "https://comicvine.gamespot.com/zzutak/4005-46868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46869/", + "id": 46869, + "name": "Diablo", + "site_detail_url": "https://comicvine.gamespot.com/diablo/4005-46869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46870/", + "id": 46870, + "name": "Monstrollo", + "site_detail_url": "https://comicvine.gamespot.com/monstrollo/4005-46870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46873/", + "id": 46873, + "name": "Misfit", + "site_detail_url": "https://comicvine.gamespot.com/misfit/4005-46873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46874/", + "id": 46874, + "name": "Tick Tock", + "site_detail_url": "https://comicvine.gamespot.com/tick-tock/4005-46874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46876/", + "id": 46876, + "name": "Touch", + "site_detail_url": "https://comicvine.gamespot.com/touch/4005-46876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46877/", + "id": 46877, + "name": "Sight", + "site_detail_url": "https://comicvine.gamespot.com/sight/4005-46877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46878/", + "id": 46878, + "name": "Smell", + "site_detail_url": "https://comicvine.gamespot.com/smell/4005-46878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46879/", + "id": 46879, + "name": "Sound", + "site_detail_url": "https://comicvine.gamespot.com/sound/4005-46879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46880/", + "id": 46880, + "name": "Intuition", + "site_detail_url": "https://comicvine.gamespot.com/intuition/4005-46880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46881/", + "id": 46881, + "name": "Taste", + "site_detail_url": "https://comicvine.gamespot.com/taste/4005-46881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46882/", + "id": 46882, + "name": "Father Time", + "site_detail_url": "https://comicvine.gamespot.com/father-time/4005-46882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46883/", + "id": 46883, + "name": "The Thunderer", + "site_detail_url": "https://comicvine.gamespot.com/the-thunderer/4005-46883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46890/", + "id": 46890, + "name": "Brute That Walks", + "site_detail_url": "https://comicvine.gamespot.com/brute-that-walks/4005-46890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46891/", + "id": 46891, + "name": "Scarlet Beetle", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-beetle/4005-46891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46893/", + "id": 46893, + "name": "Neptunia", + "site_detail_url": "https://comicvine.gamespot.com/neptunia/4005-46893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46900/", + "id": 46900, + "name": "Amir", + "site_detail_url": "https://comicvine.gamespot.com/amir/4005-46900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46905/", + "id": 46905, + "name": "Numedides", + "site_detail_url": "https://comicvine.gamespot.com/numedides/4005-46905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46912/", + "id": 46912, + "name": "Gypsy", + "site_detail_url": "https://comicvine.gamespot.com/gypsy/4005-46912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46919/", + "id": 46919, + "name": "Prometheus", + "site_detail_url": "https://comicvine.gamespot.com/prometheus/4005-46919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46920/", + "id": 46920, + "name": "Tharamus", + "site_detail_url": "https://comicvine.gamespot.com/tharamus/4005-46920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46922/", + "id": 46922, + "name": "Corporal James Newman", + "site_detail_url": "https://comicvine.gamespot.com/corporal-james-newman/4005-46922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46923/", + "id": 46923, + "name": "Adjudicator", + "site_detail_url": "https://comicvine.gamespot.com/adjudicator/4005-46923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46932/", + "id": 46932, + "name": "Asajj Ventress", + "site_detail_url": "https://comicvine.gamespot.com/asajj-ventress/4005-46932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46937/", + "id": 46937, + "name": "American Ace", + "site_detail_url": "https://comicvine.gamespot.com/american-ace/4005-46937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46942/", + "id": 46942, + "name": "Ego-Prime", + "site_detail_url": "https://comicvine.gamespot.com/ego-prime/4005-46942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46945/", + "id": 46945, + "name": "Vulture 2099", + "site_detail_url": "https://comicvine.gamespot.com/vulture-2099/4005-46945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46949/", + "id": 46949, + "name": "Arachne", + "site_detail_url": "https://comicvine.gamespot.com/arachne/4005-46949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46950/", + "id": 46950, + "name": "Therak", + "site_detail_url": "https://comicvine.gamespot.com/therak/4005-46950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46951/", + "id": 46951, + "name": "Anthro", + "site_detail_url": "https://comicvine.gamespot.com/anthro/4005-46951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46953/", + "id": 46953, + "name": "Doctor Volkh", + "site_detail_url": "https://comicvine.gamespot.com/doctor-volkh/4005-46953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46954/", + "id": 46954, + "name": "Svyatogor", + "site_detail_url": "https://comicvine.gamespot.com/svyatogor/4005-46954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46955/", + "id": 46955, + "name": "Bogatyr", + "site_detail_url": "https://comicvine.gamespot.com/bogatyr/4005-46955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46956/", + "id": 46956, + "name": "Manipulator", + "site_detail_url": "https://comicvine.gamespot.com/manipulator/4005-46956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46958/", + "id": 46958, + "name": "Ecce", + "site_detail_url": "https://comicvine.gamespot.com/ecce/4005-46958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46959/", + "id": 46959, + "name": "Emnu", + "site_detail_url": "https://comicvine.gamespot.com/emnu/4005-46959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46977/", + "id": 46977, + "name": "Ikor", + "site_detail_url": "https://comicvine.gamespot.com/ikor/4005-46977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46981/", + "id": 46981, + "name": "Ephraim Soles", + "site_detail_url": "https://comicvine.gamespot.com/ephraim-soles/4005-46981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46983/", + "id": 46983, + "name": "Cutlass", + "site_detail_url": "https://comicvine.gamespot.com/cutlass/4005-46983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-46984/", + "id": 46984, + "name": "Blowtorch Brand", + "site_detail_url": "https://comicvine.gamespot.com/blowtorch-brand/4005-46984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47010/", + "id": 47010, + "name": "Immortalis", + "site_detail_url": "https://comicvine.gamespot.com/immortalis/4005-47010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47020/", + "id": 47020, + "name": "Chak", + "site_detail_url": "https://comicvine.gamespot.com/chak/4005-47020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47057/", + "id": 47057, + "name": "Silas Grant", + "site_detail_url": "https://comicvine.gamespot.com/silas-grant/4005-47057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47066/", + "id": 47066, + "name": "Ian", + "site_detail_url": "https://comicvine.gamespot.com/ian/4005-47066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47067/", + "id": 47067, + "name": "Rufferto", + "site_detail_url": "https://comicvine.gamespot.com/rufferto/4005-47067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47068/", + "id": 47068, + "name": "Aged Genghis", + "site_detail_url": "https://comicvine.gamespot.com/aged-genghis/4005-47068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47069/", + "id": 47069, + "name": "Electro", + "site_detail_url": "https://comicvine.gamespot.com/electro/4005-47069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47097/", + "id": 47097, + "name": "Beep the Meep", + "site_detail_url": "https://comicvine.gamespot.com/beep-the-meep/4005-47097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47099/", + "id": 47099, + "name": "Mess", + "site_detail_url": "https://comicvine.gamespot.com/mess/4005-47099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47100/", + "id": 47100, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/prodigy/4005-47100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47101/", + "id": 47101, + "name": "Gideon Wilson", + "site_detail_url": "https://comicvine.gamespot.com/gideon-wilson/4005-47101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47102/", + "id": 47102, + "name": "Grey", + "site_detail_url": "https://comicvine.gamespot.com/grey/4005-47102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47134/", + "id": 47134, + "name": "Ferret", + "site_detail_url": "https://comicvine.gamespot.com/ferret/4005-47134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47138/", + "id": 47138, + "name": "Terry Vance", + "site_detail_url": "https://comicvine.gamespot.com/terry-vance/4005-47138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47141/", + "id": 47141, + "name": "Mechamage", + "site_detail_url": "https://comicvine.gamespot.com/mechamage/4005-47141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47142/", + "id": 47142, + "name": "Papa Shorty", + "site_detail_url": "https://comicvine.gamespot.com/papa-shorty/4005-47142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47143/", + "id": 47143, + "name": "Predator X", + "site_detail_url": "https://comicvine.gamespot.com/predator-x/4005-47143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47157/", + "id": 47157, + "name": "Spacegirl", + "site_detail_url": "https://comicvine.gamespot.com/spacegirl/4005-47157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47159/", + "id": 47159, + "name": "Mr. E", + "site_detail_url": "https://comicvine.gamespot.com/mr-e/4005-47159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47166/", + "id": 47166, + "name": "Kaballa", + "site_detail_url": "https://comicvine.gamespot.com/kaballa/4005-47166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47169/", + "id": 47169, + "name": "Kthara", + "site_detail_url": "https://comicvine.gamespot.com/kthara/4005-47169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47170/", + "id": 47170, + "name": "Dredmund Druid", + "site_detail_url": "https://comicvine.gamespot.com/dredmund-druid/4005-47170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47192/", + "id": 47192, + "name": "Captain K-4", + "site_detail_url": "https://comicvine.gamespot.com/captain-k-4/4005-47192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47193/", + "id": 47193, + "name": "Zephyr Jones", + "site_detail_url": "https://comicvine.gamespot.com/zephyr-jones/4005-47193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47194/", + "id": 47194, + "name": "Breeze Barton", + "site_detail_url": "https://comicvine.gamespot.com/breeze-barton/4005-47194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47195/", + "id": 47195, + "name": "Marvex the Super-Robot", + "site_detail_url": "https://comicvine.gamespot.com/marvex-the-super-robot/4005-47195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47196/", + "id": 47196, + "name": "Bible John", + "site_detail_url": "https://comicvine.gamespot.com/bible-john/4005-47196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47202/", + "id": 47202, + "name": "Monako", + "site_detail_url": "https://comicvine.gamespot.com/monako/4005-47202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47203/", + "id": 47203, + "name": "Captain Daring", + "site_detail_url": "https://comicvine.gamespot.com/captain-daring/4005-47203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47217/", + "id": 47217, + "name": "Inspector Gill", + "site_detail_url": "https://comicvine.gamespot.com/inspector-gill/4005-47217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47232/", + "id": 47232, + "name": "Tentakill", + "site_detail_url": "https://comicvine.gamespot.com/tentakill/4005-47232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47290/", + "id": 47290, + "name": "Creepy Crawler", + "site_detail_url": "https://comicvine.gamespot.com/creepy-crawler/4005-47290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47291/", + "id": 47291, + "name": "Boyo", + "site_detail_url": "https://comicvine.gamespot.com/boyo/4005-47291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47292/", + "id": 47292, + "name": "Charlie X", + "site_detail_url": "https://comicvine.gamespot.com/charlie-x/4005-47292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47293/", + "id": 47293, + "name": "Shadowkitty", + "site_detail_url": "https://comicvine.gamespot.com/shadowkitty/4005-47293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47296/", + "id": 47296, + "name": "Miss Itch", + "site_detail_url": "https://comicvine.gamespot.com/miss-itch/4005-47296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47297/", + "id": 47297, + "name": "Mr. Scratch", + "site_detail_url": "https://comicvine.gamespot.com/mr-scratch/4005-47297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47298/", + "id": 47298, + "name": "Nighteyes", + "site_detail_url": "https://comicvine.gamespot.com/nighteyes/4005-47298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47317/", + "id": 47317, + "name": "Exterminatrix", + "site_detail_url": "https://comicvine.gamespot.com/exterminatrix/4005-47317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47322/", + "id": 47322, + "name": "Cameron Palmer", + "site_detail_url": "https://comicvine.gamespot.com/cameron-palmer/4005-47322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47323/", + "id": 47323, + "name": "White Ghost", + "site_detail_url": "https://comicvine.gamespot.com/white-ghost/4005-47323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47360/", + "id": 47360, + "name": "Tuck", + "site_detail_url": "https://comicvine.gamespot.com/tuck/4005-47360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47361/", + "id": 47361, + "name": "Phaedra", + "site_detail_url": "https://comicvine.gamespot.com/phaedra/4005-47361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47362/", + "id": 47362, + "name": "Nia Noble", + "site_detail_url": "https://comicvine.gamespot.com/nia-noble/4005-47362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47365/", + "id": 47365, + "name": "Night Raven", + "site_detail_url": "https://comicvine.gamespot.com/night-raven/4005-47365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47367/", + "id": 47367, + "name": "Evelyn Necker", + "site_detail_url": "https://comicvine.gamespot.com/evelyn-necker/4005-47367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47368/", + "id": 47368, + "name": "Marvelman", + "site_detail_url": "https://comicvine.gamespot.com/marvelman/4005-47368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47379/", + "id": 47379, + "name": "Wrathchilde", + "site_detail_url": "https://comicvine.gamespot.com/wrathchilde/4005-47379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47380/", + "id": 47380, + "name": "Golden Blade", + "site_detail_url": "https://comicvine.gamespot.com/golden-blade/4005-47380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47383/", + "id": 47383, + "name": "Gestalt", + "site_detail_url": "https://comicvine.gamespot.com/gestalt/4005-47383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47396/", + "id": 47396, + "name": "Major Oak", + "site_detail_url": "https://comicvine.gamespot.com/major-oak/4005-47396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47397/", + "id": 47397, + "name": "Death Wreck", + "site_detail_url": "https://comicvine.gamespot.com/death-wreck/4005-47397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47398/", + "id": 47398, + "name": "Dogface", + "site_detail_url": "https://comicvine.gamespot.com/dogface/4005-47398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47399/", + "id": 47399, + "name": "Tower", + "site_detail_url": "https://comicvine.gamespot.com/tower/4005-47399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47400/", + "id": 47400, + "name": "Mermaid", + "site_detail_url": "https://comicvine.gamespot.com/mermaid/4005-47400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47401/", + "id": 47401, + "name": "Charmer", + "site_detail_url": "https://comicvine.gamespot.com/charmer/4005-47401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47402/", + "id": 47402, + "name": "Double-Header", + "site_detail_url": "https://comicvine.gamespot.com/double-header/4005-47402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47408/", + "id": 47408, + "name": "Kartag", + "site_detail_url": "https://comicvine.gamespot.com/kartag/4005-47408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47441/", + "id": 47441, + "name": "Mary Purcell", + "site_detail_url": "https://comicvine.gamespot.com/mary-purcell/4005-47441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47454/", + "id": 47454, + "name": "Admiral Piett", + "site_detail_url": "https://comicvine.gamespot.com/admiral-piett/4005-47454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47455/", + "id": 47455, + "name": "Admiral Thrawn", + "site_detail_url": "https://comicvine.gamespot.com/admiral-thrawn/4005-47455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47475/", + "id": 47475, + "name": "Tores", + "site_detail_url": "https://comicvine.gamespot.com/tores/4005-47475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47477/", + "id": 47477, + "name": "Ernst Erskine", + "site_detail_url": "https://comicvine.gamespot.com/ernst-erskine/4005-47477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47478/", + "id": 47478, + "name": "Etienne Marceaux", + "site_detail_url": "https://comicvine.gamespot.com/etienne-marceaux/4005-47478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47482/", + "id": 47482, + "name": "Sparrow", + "site_detail_url": "https://comicvine.gamespot.com/sparrow/4005-47482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47483/", + "id": 47483, + "name": "Powerhouse", + "site_detail_url": "https://comicvine.gamespot.com/powerhouse/4005-47483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47514/", + "id": 47514, + "name": "Spyke", + "site_detail_url": "https://comicvine.gamespot.com/spyke/4005-47514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47515/", + "id": 47515, + "name": "The Protector", + "site_detail_url": "https://comicvine.gamespot.com/the-protector/4005-47515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47516/", + "id": 47516, + "name": "Seraph", + "site_detail_url": "https://comicvine.gamespot.com/seraph/4005-47516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47519/", + "id": 47519, + "name": "The Antiquary", + "site_detail_url": "https://comicvine.gamespot.com/the-antiquary/4005-47519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47529/", + "id": 47529, + "name": "Kragonn", + "site_detail_url": "https://comicvine.gamespot.com/kragonn/4005-47529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47550/", + "id": 47550, + "name": "Chain Lightning", + "site_detail_url": "https://comicvine.gamespot.com/chain-lightning/4005-47550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47553/", + "id": 47553, + "name": "Katrina", + "site_detail_url": "https://comicvine.gamespot.com/katrina/4005-47553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47573/", + "id": 47573, + "name": "Ragnarok", + "site_detail_url": "https://comicvine.gamespot.com/ragnarok/4005-47573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47582/", + "id": 47582, + "name": "Anielle", + "site_detail_url": "https://comicvine.gamespot.com/anielle/4005-47582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47583/", + "id": 47583, + "name": "Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/reynolds/4005-47583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47590/", + "id": 47590, + "name": "Zhered-Na", + "site_detail_url": "https://comicvine.gamespot.com/zhered-na/4005-47590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47642/", + "id": 47642, + "name": "Paralyzer", + "site_detail_url": "https://comicvine.gamespot.com/paralyzer/4005-47642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47662/", + "id": 47662, + "name": "Crusader", + "site_detail_url": "https://comicvine.gamespot.com/crusader/4005-47662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47737/", + "id": 47737, + "name": "Gault", + "site_detail_url": "https://comicvine.gamespot.com/gault/4005-47737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47739/", + "id": 47739, + "name": "Gordy", + "site_detail_url": "https://comicvine.gamespot.com/gordy/4005-47739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47760/", + "id": 47760, + "name": "Omega", + "site_detail_url": "https://comicvine.gamespot.com/omega/4005-47760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47771/", + "id": 47771, + "name": "Rouge-Mort", + "site_detail_url": "https://comicvine.gamespot.com/rouge-mort/4005-47771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47775/", + "id": 47775, + "name": "John King", + "site_detail_url": "https://comicvine.gamespot.com/john-king/4005-47775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47779/", + "id": 47779, + "name": "Sagayetha", + "site_detail_url": "https://comicvine.gamespot.com/sagayetha/4005-47779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47781/", + "id": 47781, + "name": "Bardisattva", + "site_detail_url": "https://comicvine.gamespot.com/bardisattva/4005-47781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47787/", + "id": 47787, + "name": "Ajaxis", + "site_detail_url": "https://comicvine.gamespot.com/ajaxis/4005-47787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47789/", + "id": 47789, + "name": "Deathshield", + "site_detail_url": "https://comicvine.gamespot.com/deathshield/4005-47789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47820/", + "id": 47820, + "name": "Yildiz", + "site_detail_url": "https://comicvine.gamespot.com/yildiz/4005-47820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47825/", + "id": 47825, + "name": "Marada the She-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/marada-the-she-wolf/4005-47825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47827/", + "id": 47827, + "name": "Sir Steel", + "site_detail_url": "https://comicvine.gamespot.com/sir-steel/4005-47827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47828/", + "id": 47828, + "name": "Silver Squire", + "site_detail_url": "https://comicvine.gamespot.com/silver-squire/4005-47828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47841/", + "id": 47841, + "name": "Werner von Doom", + "site_detail_url": "https://comicvine.gamespot.com/werner-von-doom/4005-47841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47843/", + "id": 47843, + "name": "Cynthia von Doom", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-von-doom/4005-47843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47875/", + "id": 47875, + "name": "Mystiq", + "site_detail_url": "https://comicvine.gamespot.com/mystiq/4005-47875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47915/", + "id": 47915, + "name": "Tyndall", + "site_detail_url": "https://comicvine.gamespot.com/tyndall/4005-47915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47916/", + "id": 47916, + "name": "Mud-Butt", + "site_detail_url": "https://comicvine.gamespot.com/mud-butt/4005-47916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47917/", + "id": 47917, + "name": "Lord Majister", + "site_detail_url": "https://comicvine.gamespot.com/lord-majister/4005-47917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47919/", + "id": 47919, + "name": "Murkandor", + "site_detail_url": "https://comicvine.gamespot.com/murkandor/4005-47919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47921/", + "id": 47921, + "name": "Lianissa", + "site_detail_url": "https://comicvine.gamespot.com/lianissa/4005-47921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47922/", + "id": 47922, + "name": "Wulfbuck", + "site_detail_url": "https://comicvine.gamespot.com/wulfbuck/4005-47922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47923/", + "id": 47923, + "name": "Red Soryll", + "site_detail_url": "https://comicvine.gamespot.com/red-soryll/4005-47923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47929/", + "id": 47929, + "name": "4-LOM", + "site_detail_url": "https://comicvine.gamespot.com/4-lom/4005-47929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47931/", + "id": 47931, + "name": "Bossk", + "site_detail_url": "https://comicvine.gamespot.com/bossk/4005-47931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47935/", + "id": 47935, + "name": "Dengar", + "site_detail_url": "https://comicvine.gamespot.com/dengar/4005-47935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47938/", + "id": 47938, + "name": "IG 88", + "site_detail_url": "https://comicvine.gamespot.com/ig-88/4005-47938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47978/", + "id": 47978, + "name": "Ann Beckley", + "site_detail_url": "https://comicvine.gamespot.com/ann-beckley/4005-47978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47984/", + "id": 47984, + "name": "Matthew Risman", + "site_detail_url": "https://comicvine.gamespot.com/matthew-risman/4005-47984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47996/", + "id": 47996, + "name": "Hi-Lite", + "site_detail_url": "https://comicvine.gamespot.com/hi-lite/4005-47996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-47997/", + "id": 47997, + "name": "Blackball", + "site_detail_url": "https://comicvine.gamespot.com/blackball/4005-47997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48038/", + "id": 48038, + "name": "Arianrhod", + "site_detail_url": "https://comicvine.gamespot.com/arianrhod/4005-48038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48039/", + "id": 48039, + "name": "Simyon Karashnur", + "site_detail_url": "https://comicvine.gamespot.com/simyon-karashnur/4005-48039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48040/", + "id": 48040, + "name": "Y'Garon", + "site_detail_url": "https://comicvine.gamespot.com/ygaron/4005-48040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48041/", + "id": 48041, + "name": "Donal MacLlanllwyr", + "site_detail_url": "https://comicvine.gamespot.com/donal-macllanllwyr/4005-48041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48042/", + "id": 48042, + "name": "Rhiannon MacLlanllwyr", + "site_detail_url": "https://comicvine.gamespot.com/rhiannon-macllanllwyr/4005-48042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48062/", + "id": 48062, + "name": "Slick", + "site_detail_url": "https://comicvine.gamespot.com/slick/4005-48062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48071/", + "id": 48071, + "name": "Sammael", + "site_detail_url": "https://comicvine.gamespot.com/sammael/4005-48071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48072/", + "id": 48072, + "name": "Armaziel", + "site_detail_url": "https://comicvine.gamespot.com/armaziel/4005-48072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48073/", + "id": 48073, + "name": "Shaarilla", + "site_detail_url": "https://comicvine.gamespot.com/shaarilla/4005-48073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48078/", + "id": 48078, + "name": "Saint Anna", + "site_detail_url": "https://comicvine.gamespot.com/saint-anna/4005-48078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48116/", + "id": 48116, + "name": "Marabeth", + "site_detail_url": "https://comicvine.gamespot.com/marabeth/4005-48116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48118/", + "id": 48118, + "name": "Trioccula", + "site_detail_url": "https://comicvine.gamespot.com/trioccula/4005-48118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48119/", + "id": 48119, + "name": "Dummy", + "site_detail_url": "https://comicvine.gamespot.com/dummy/4005-48119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48120/", + "id": 48120, + "name": "Rust", + "site_detail_url": "https://comicvine.gamespot.com/rust/4005-48120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48135/", + "id": 48135, + "name": "Kamar", + "site_detail_url": "https://comicvine.gamespot.com/kamar/4005-48135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48137/", + "id": 48137, + "name": "Zoran", + "site_detail_url": "https://comicvine.gamespot.com/zoran/4005-48137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48139/", + "id": 48139, + "name": "Dr. Sarah Kinney", + "site_detail_url": "https://comicvine.gamespot.com/dr-sarah-kinney/4005-48139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48165/", + "id": 48165, + "name": "Pester", + "site_detail_url": "https://comicvine.gamespot.com/pester/4005-48165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48176/", + "id": 48176, + "name": "Niels", + "site_detail_url": "https://comicvine.gamespot.com/niels/4005-48176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48177/", + "id": 48177, + "name": "Arnold Astrovik", + "site_detail_url": "https://comicvine.gamespot.com/arnold-astrovik/4005-48177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48184/", + "id": 48184, + "name": "Captain Assyria", + "site_detail_url": "https://comicvine.gamespot.com/captain-assyria/4005-48184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48187/", + "id": 48187, + "name": "Dr. Zander Rice", + "site_detail_url": "https://comicvine.gamespot.com/dr-zander-rice/4005-48187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48188/", + "id": 48188, + "name": "General Demetrius Lazer", + "site_detail_url": "https://comicvine.gamespot.com/general-demetrius-lazer/4005-48188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48197/", + "id": 48197, + "name": "Qwerty", + "site_detail_url": "https://comicvine.gamespot.com/qwerty/4005-48197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48215/", + "id": 48215, + "name": "Dynamite", + "site_detail_url": "https://comicvine.gamespot.com/dynamite/4005-48215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48218/", + "id": 48218, + "name": "Potiphar", + "site_detail_url": "https://comicvine.gamespot.com/potiphar/4005-48218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48222/", + "id": 48222, + "name": "Sedara", + "site_detail_url": "https://comicvine.gamespot.com/sedara/4005-48222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48236/", + "id": 48236, + "name": "Timestream", + "site_detail_url": "https://comicvine.gamespot.com/timestream/4005-48236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48253/", + "id": 48253, + "name": "Mister Badwrench", + "site_detail_url": "https://comicvine.gamespot.com/mister-badwrench/4005-48253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48254/", + "id": 48254, + "name": "Medallion", + "site_detail_url": "https://comicvine.gamespot.com/medallion/4005-48254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48255/", + "id": 48255, + "name": "General Kreigkopf", + "site_detail_url": "https://comicvine.gamespot.com/general-kreigkopf/4005-48255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48257/", + "id": 48257, + "name": "Elspeth Cromwell", + "site_detail_url": "https://comicvine.gamespot.com/elspeth-cromwell/4005-48257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48259/", + "id": 48259, + "name": "Ngh the Unspeakable", + "site_detail_url": "https://comicvine.gamespot.com/ngh-the-unspeakable/4005-48259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48276/", + "id": 48276, + "name": "White Raven", + "site_detail_url": "https://comicvine.gamespot.com/white-raven/4005-48276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48303/", + "id": 48303, + "name": "Snow Queen", + "site_detail_url": "https://comicvine.gamespot.com/snow-queen/4005-48303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48325/", + "id": 48325, + "name": "Mastermind Excello", + "site_detail_url": "https://comicvine.gamespot.com/mastermind-excello/4005-48325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48327/", + "id": 48327, + "name": "Luther Robinson", + "site_detail_url": "https://comicvine.gamespot.com/luther-robinson/4005-48327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48328/", + "id": 48328, + "name": "Lynne Harris", + "site_detail_url": "https://comicvine.gamespot.com/lynne-harris/4005-48328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48346/", + "id": 48346, + "name": "Overrider", + "site_detail_url": "https://comicvine.gamespot.com/overrider/4005-48346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48356/", + "id": 48356, + "name": "Flexo the Rubber Man", + "site_detail_url": "https://comicvine.gamespot.com/flexo-the-rubber-man/4005-48356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48358/", + "id": 48358, + "name": "Blue Blaze", + "site_detail_url": "https://comicvine.gamespot.com/blue-blaze/4005-48358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48362/", + "id": 48362, + "name": "Dakor the Magician", + "site_detail_url": "https://comicvine.gamespot.com/dakor-the-magician/4005-48362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48365/", + "id": 48365, + "name": "Zara of the Jungle", + "site_detail_url": "https://comicvine.gamespot.com/zara-of-the-jungle/4005-48365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48368/", + "id": 48368, + "name": "Merzah the Mystic", + "site_detail_url": "https://comicvine.gamespot.com/merzah-the-mystic/4005-48368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48379/", + "id": 48379, + "name": "Agent Sum", + "site_detail_url": "https://comicvine.gamespot.com/agent-sum/4005-48379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48386/", + "id": 48386, + "name": "Fury The Goblin Queen", + "site_detail_url": "https://comicvine.gamespot.com/fury-the-goblin-queen/4005-48386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48443/", + "id": 48443, + "name": "Pteor", + "site_detail_url": "https://comicvine.gamespot.com/pteor/4005-48443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48450/", + "id": 48450, + "name": "Amanda Chaney", + "site_detail_url": "https://comicvine.gamespot.com/amanda-chaney/4005-48450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48455/", + "id": 48455, + "name": "Neut", + "site_detail_url": "https://comicvine.gamespot.com/neut/4005-48455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48456/", + "id": 48456, + "name": "Taylor Madison", + "site_detail_url": "https://comicvine.gamespot.com/taylor-madison/4005-48456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48484/", + "id": 48484, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-48484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48498/", + "id": 48498, + "name": "Fisher Todd", + "site_detail_url": "https://comicvine.gamespot.com/fisher-todd/4005-48498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48518/", + "id": 48518, + "name": "Skaar", + "site_detail_url": "https://comicvine.gamespot.com/skaar/4005-48518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48537/", + "id": 48537, + "name": "Pavane", + "site_detail_url": "https://comicvine.gamespot.com/pavane/4005-48537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48544/", + "id": 48544, + "name": "Warren Parker", + "site_detail_url": "https://comicvine.gamespot.com/warren-parker/4005-48544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48547/", + "id": 48547, + "name": "Witch Woman", + "site_detail_url": "https://comicvine.gamespot.com/witch-woman/4005-48547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48549/", + "id": 48549, + "name": "Howard Stark", + "site_detail_url": "https://comicvine.gamespot.com/howard-stark/4005-48549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48552/", + "id": 48552, + "name": "Elder Demon", + "site_detail_url": "https://comicvine.gamespot.com/elder-demon/4005-48552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48553/", + "id": 48553, + "name": "Sachi Yama", + "site_detail_url": "https://comicvine.gamespot.com/sachi-yama/4005-48553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48587/", + "id": 48587, + "name": "Dracus", + "site_detail_url": "https://comicvine.gamespot.com/dracus/4005-48587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48592/", + "id": 48592, + "name": "Maurglon", + "site_detail_url": "https://comicvine.gamespot.com/maurglon/4005-48592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48594/", + "id": 48594, + "name": "Rutskaya", + "site_detail_url": "https://comicvine.gamespot.com/rutskaya/4005-48594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48632/", + "id": 48632, + "name": "Michael", + "site_detail_url": "https://comicvine.gamespot.com/michael/4005-48632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48633/", + "id": 48633, + "name": "Van", + "site_detail_url": "https://comicvine.gamespot.com/van/4005-48633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48634/", + "id": 48634, + "name": "Patrick", + "site_detail_url": "https://comicvine.gamespot.com/patrick/4005-48634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48637/", + "id": 48637, + "name": "Simone DeSantos", + "site_detail_url": "https://comicvine.gamespot.com/simone-desantos/4005-48637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48638/", + "id": 48638, + "name": "Donna Mansfield", + "site_detail_url": "https://comicvine.gamespot.com/donna-mansfield/4005-48638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48656/", + "id": 48656, + "name": "Tito Bohusk", + "site_detail_url": "https://comicvine.gamespot.com/tito-bohusk/4005-48656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48663/", + "id": 48663, + "name": "L'ok D'saad", + "site_detail_url": "https://comicvine.gamespot.com/lok-dsaad/4005-48663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48686/", + "id": 48686, + "name": "Freedom", + "site_detail_url": "https://comicvine.gamespot.com/freedom/4005-48686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48713/", + "id": 48713, + "name": "Totrasmek", + "site_detail_url": "https://comicvine.gamespot.com/totrasmek/4005-48713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48716/", + "id": 48716, + "name": "Vox", + "site_detail_url": "https://comicvine.gamespot.com/vox/4005-48716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48717/", + "id": 48717, + "name": "Prima Donna", + "site_detail_url": "https://comicvine.gamespot.com/prima-donna/4005-48717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48744/", + "id": 48744, + "name": "Jazinda", + "site_detail_url": "https://comicvine.gamespot.com/jazinda/4005-48744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48785/", + "id": 48785, + "name": "Dominator", + "site_detail_url": "https://comicvine.gamespot.com/dominator/4005-48785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48786/", + "id": 48786, + "name": "Impact", + "site_detail_url": "https://comicvine.gamespot.com/impact/4005-48786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48787/", + "id": 48787, + "name": "Bullet", + "site_detail_url": "https://comicvine.gamespot.com/bullet/4005-48787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48788/", + "id": 48788, + "name": "Blinder", + "site_detail_url": "https://comicvine.gamespot.com/blinder/4005-48788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48789/", + "id": 48789, + "name": "Freefall", + "site_detail_url": "https://comicvine.gamespot.com/freefall/4005-48789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48793/", + "id": 48793, + "name": "Menkara", + "site_detail_url": "https://comicvine.gamespot.com/menkara/4005-48793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48803/", + "id": 48803, + "name": "Bull McGiveney", + "site_detail_url": "https://comicvine.gamespot.com/bull-mcgiveney/4005-48803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48806/", + "id": 48806, + "name": "Tarim", + "site_detail_url": "https://comicvine.gamespot.com/tarim/4005-48806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48849/", + "id": 48849, + "name": "Grult", + "site_detail_url": "https://comicvine.gamespot.com/grult/4005-48849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48866/", + "id": 48866, + "name": "Agent Huang", + "site_detail_url": "https://comicvine.gamespot.com/agent-huang/4005-48866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48878/", + "id": 48878, + "name": "Chane", + "site_detail_url": "https://comicvine.gamespot.com/chane/4005-48878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48899/", + "id": 48899, + "name": "Malcolm Cortez", + "site_detail_url": "https://comicvine.gamespot.com/malcolm-cortez/4005-48899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48940/", + "id": 48940, + "name": "Tildie Soames", + "site_detail_url": "https://comicvine.gamespot.com/tildie-soames/4005-48940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48964/", + "id": 48964, + "name": "Farallah", + "site_detail_url": "https://comicvine.gamespot.com/farallah/4005-48964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-48998/", + "id": 48998, + "name": "Megan Kinney", + "site_detail_url": "https://comicvine.gamespot.com/megan-kinney/4005-48998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49005/", + "id": 49005, + "name": "Lionel Jeffries", + "site_detail_url": "https://comicvine.gamespot.com/lionel-jeffries/4005-49005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49037/", + "id": 49037, + "name": "Overlay", + "site_detail_url": "https://comicvine.gamespot.com/overlay/4005-49037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49046/", + "id": 49046, + "name": "Revolutionary", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary/4005-49046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49048/", + "id": 49048, + "name": "Sketch", + "site_detail_url": "https://comicvine.gamespot.com/sketch/4005-49048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49079/", + "id": 49079, + "name": "Jap Buster Johnson", + "site_detail_url": "https://comicvine.gamespot.com/jap-buster-johnson/4005-49079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49099/", + "id": 49099, + "name": "Power Broker", + "site_detail_url": "https://comicvine.gamespot.com/power-broker/4005-49099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49100/", + "id": 49100, + "name": "Iceberg", + "site_detail_url": "https://comicvine.gamespot.com/iceberg/4005-49100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49101/", + "id": 49101, + "name": "2-D", + "site_detail_url": "https://comicvine.gamespot.com/2-d/4005-49101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49102/", + "id": 49102, + "name": "Hope", + "site_detail_url": "https://comicvine.gamespot.com/hope/4005-49102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49203/", + "id": 49203, + "name": "Cosmo", + "site_detail_url": "https://comicvine.gamespot.com/cosmo/4005-49203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49329/", + "id": 49329, + "name": "Hope Summers", + "site_detail_url": "https://comicvine.gamespot.com/hope-summers/4005-49329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49362/", + "id": 49362, + "name": "Linda Wei", + "site_detail_url": "https://comicvine.gamespot.com/linda-wei/4005-49362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49388/", + "id": 49388, + "name": "Jaggta-Noga", + "site_detail_url": "https://comicvine.gamespot.com/jaggta-noga/4005-49388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49396/", + "id": 49396, + "name": "Xiombarg", + "site_detail_url": "https://comicvine.gamespot.com/xiombarg/4005-49396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49411/", + "id": 49411, + "name": "Belesa", + "site_detail_url": "https://comicvine.gamespot.com/belesa/4005-49411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49437/", + "id": 49437, + "name": "Antiphon the Overseer", + "site_detail_url": "https://comicvine.gamespot.com/antiphon-the-overseer/4005-49437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49438/", + "id": 49438, + "name": "Brio of Life", + "site_detail_url": "https://comicvine.gamespot.com/brio-of-life/4005-49438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49439/", + "id": 49439, + "name": "Diableri of Chaos", + "site_detail_url": "https://comicvine.gamespot.com/diableri-of-chaos/4005-49439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49484/", + "id": 49484, + "name": "Dominicus Pierce", + "site_detail_url": "https://comicvine.gamespot.com/dominicus-pierce/4005-49484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49489/", + "id": 49489, + "name": "Le Vent", + "site_detail_url": "https://comicvine.gamespot.com/le-vent/4005-49489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49491/", + "id": 49491, + "name": "Wes Westin", + "site_detail_url": "https://comicvine.gamespot.com/wes-westin/4005-49491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49492/", + "id": 49492, + "name": "Adamantine", + "site_detail_url": "https://comicvine.gamespot.com/adamantine/4005-49492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49493/", + "id": 49493, + "name": "Anaïs", + "site_detail_url": "https://comicvine.gamespot.com/anais/4005-49493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49495/", + "id": 49495, + "name": "Comte de Nuit", + "site_detail_url": "https://comicvine.gamespot.com/comte-de-nuit/4005-49495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49496/", + "id": 49496, + "name": "Le Cowboy", + "site_detail_url": "https://comicvine.gamespot.com/le-cowboy/4005-49496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49497/", + "id": 49497, + "name": "La Lumiére Bleue", + "site_detail_url": "https://comicvine.gamespot.com/la-lumiere-bleue/4005-49497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49499/", + "id": 49499, + "name": "Detective Fantôme", + "site_detail_url": "https://comicvine.gamespot.com/detective-fantome/4005-49499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49500/", + "id": 49500, + "name": "Docteur Q", + "site_detail_url": "https://comicvine.gamespot.com/docteur-q/4005-49500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49501/", + "id": 49501, + "name": "Felicity Hardy", + "site_detail_url": "https://comicvine.gamespot.com/felicity-hardy/4005-49501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49502/", + "id": 49502, + "name": "Detective Drasco", + "site_detail_url": "https://comicvine.gamespot.com/detective-drasco/4005-49502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49503/", + "id": 49503, + "name": "Doc Magus", + "site_detail_url": "https://comicvine.gamespot.com/doc-magus/4005-49503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49552/", + "id": 49552, + "name": "Emilee", + "site_detail_url": "https://comicvine.gamespot.com/emilee/4005-49552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49554/", + "id": 49554, + "name": "Park", + "site_detail_url": "https://comicvine.gamespot.com/park/4005-49554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49559/", + "id": 49559, + "name": "Jackpot", + "site_detail_url": "https://comicvine.gamespot.com/jackpot/4005-49559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49569/", + "id": 49569, + "name": "Hawk-Owl", + "site_detail_url": "https://comicvine.gamespot.com/hawk-owl/4005-49569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49570/", + "id": 49570, + "name": "Woody", + "site_detail_url": "https://comicvine.gamespot.com/woody/4005-49570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49592/", + "id": 49592, + "name": "Caffrey", + "site_detail_url": "https://comicvine.gamespot.com/caffrey/4005-49592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49594/", + "id": 49594, + "name": "Butterball", + "site_detail_url": "https://comicvine.gamespot.com/butterball/4005-49594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49600/", + "id": 49600, + "name": "Michael Devlin", + "site_detail_url": "https://comicvine.gamespot.com/michael-devlin/4005-49600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49601/", + "id": 49601, + "name": "Sydren", + "site_detail_url": "https://comicvine.gamespot.com/sydren/4005-49601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49652/", + "id": 49652, + "name": "Melee", + "site_detail_url": "https://comicvine.gamespot.com/melee/4005-49652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49654/", + "id": 49654, + "name": "Carlie Cooper", + "site_detail_url": "https://comicvine.gamespot.com/carlie-cooper/4005-49654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49655/", + "id": 49655, + "name": "Kruun", + "site_detail_url": "https://comicvine.gamespot.com/kruun/4005-49655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49664/", + "id": 49664, + "name": "Emperor None", + "site_detail_url": "https://comicvine.gamespot.com/emperor-none/4005-49664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49668/", + "id": 49668, + "name": "Galfrax", + "site_detail_url": "https://comicvine.gamespot.com/galfrax/4005-49668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49774/", + "id": 49774, + "name": "Ismael Ortega", + "site_detail_url": "https://comicvine.gamespot.com/ismael-ortega/4005-49774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49778/", + "id": 49778, + "name": "Samurai Steel", + "site_detail_url": "https://comicvine.gamespot.com/samurai-steel/4005-49778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49783/", + "id": 49783, + "name": "Murmur", + "site_detail_url": "https://comicvine.gamespot.com/murmur/4005-49783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49786/", + "id": 49786, + "name": "Esphares", + "site_detail_url": "https://comicvine.gamespot.com/esphares/4005-49786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49797/", + "id": 49797, + "name": "Dirge", + "site_detail_url": "https://comicvine.gamespot.com/dirge/4005-49797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49798/", + "id": 49798, + "name": "T'Channa", + "site_detail_url": "https://comicvine.gamespot.com/tchanna/4005-49798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49806/", + "id": 49806, + "name": "Tartarus", + "site_detail_url": "https://comicvine.gamespot.com/tartarus/4005-49806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49807/", + "id": 49807, + "name": "The Goth", + "site_detail_url": "https://comicvine.gamespot.com/the-goth/4005-49807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49810/", + "id": 49810, + "name": "Rapture", + "site_detail_url": "https://comicvine.gamespot.com/rapture/4005-49810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49813/", + "id": 49813, + "name": "Seth", + "site_detail_url": "https://comicvine.gamespot.com/seth/4005-49813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49847/", + "id": 49847, + "name": "King Akhîrom", + "site_detail_url": "https://comicvine.gamespot.com/king-akhirom/4005-49847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49866/", + "id": 49866, + "name": "Rob Silverman", + "site_detail_url": "https://comicvine.gamespot.com/rob-silverman/4005-49866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49896/", + "id": 49896, + "name": "Star-Stalker", + "site_detail_url": "https://comicvine.gamespot.com/star-stalker/4005-49896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49897/", + "id": 49897, + "name": "Raze", + "site_detail_url": "https://comicvine.gamespot.com/raze/4005-49897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49904/", + "id": 49904, + "name": "Red 9", + "site_detail_url": "https://comicvine.gamespot.com/red-9/4005-49904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49905/", + "id": 49905, + "name": "Geiger", + "site_detail_url": "https://comicvine.gamespot.com/geiger/4005-49905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49912/", + "id": 49912, + "name": "Bad Timing", + "site_detail_url": "https://comicvine.gamespot.com/bad-timing/4005-49912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49942/", + "id": 49942, + "name": "Dark Legion", + "site_detail_url": "https://comicvine.gamespot.com/dark-legion/4005-49942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49943/", + "id": 49943, + "name": "SpitFire", + "site_detail_url": "https://comicvine.gamespot.com/spitfire/4005-49943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49967/", + "id": 49967, + "name": "Bill Hollister", + "site_detail_url": "https://comicvine.gamespot.com/bill-hollister/4005-49967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49968/", + "id": 49968, + "name": "Freak", + "site_detail_url": "https://comicvine.gamespot.com/freak/4005-49968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-49969/", + "id": 49969, + "name": "Mister Negative", + "site_detail_url": "https://comicvine.gamespot.com/mister-negative/4005-49969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50038/", + "id": 50038, + "name": "Adrenazon", + "site_detail_url": "https://comicvine.gamespot.com/adrenazon/4005-50038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50053/", + "id": 50053, + "name": "Helix", + "site_detail_url": "https://comicvine.gamespot.com/helix/4005-50053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50054/", + "id": 50054, + "name": "Torque", + "site_detail_url": "https://comicvine.gamespot.com/torque/4005-50054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50117/", + "id": 50117, + "name": "Bette", + "site_detail_url": "https://comicvine.gamespot.com/bette/4005-50117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50119/", + "id": 50119, + "name": "Madam Drache", + "site_detail_url": "https://comicvine.gamespot.com/madam-drache/4005-50119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50172/", + "id": 50172, + "name": "Aberdeen Angus", + "site_detail_url": "https://comicvine.gamespot.com/aberdeen-angus/4005-50172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50201/", + "id": 50201, + "name": "Buzz Grimm", + "site_detail_url": "https://comicvine.gamespot.com/buzz-grimm/4005-50201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50202/", + "id": 50202, + "name": "Chuck Grimm", + "site_detail_url": "https://comicvine.gamespot.com/chuck-grimm/4005-50202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50209/", + "id": 50209, + "name": "Durok", + "site_detail_url": "https://comicvine.gamespot.com/durok/4005-50209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50210/", + "id": 50210, + "name": "Xaos", + "site_detail_url": "https://comicvine.gamespot.com/xaos/4005-50210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50212/", + "id": 50212, + "name": "Mercury", + "site_detail_url": "https://comicvine.gamespot.com/mercury/4005-50212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50213/", + "id": 50213, + "name": "Warp Savant", + "site_detail_url": "https://comicvine.gamespot.com/warp-savant/4005-50213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50215/", + "id": 50215, + "name": "Miss Saccharine", + "site_detail_url": "https://comicvine.gamespot.com/miss-saccharine/4005-50215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50216/", + "id": 50216, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4005-50216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50217/", + "id": 50217, + "name": "Harmony", + "site_detail_url": "https://comicvine.gamespot.com/harmony/4005-50217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50218/", + "id": 50218, + "name": "Spider-Mugger", + "site_detail_url": "https://comicvine.gamespot.com/spider-mugger/4005-50218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50219/", + "id": 50219, + "name": "Burning Puddle", + "site_detail_url": "https://comicvine.gamespot.com/burning-puddle/4005-50219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50220/", + "id": 50220, + "name": "Double Helix", + "site_detail_url": "https://comicvine.gamespot.com/double-helix/4005-50220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50221/", + "id": 50221, + "name": "Carla", + "site_detail_url": "https://comicvine.gamespot.com/carla/4005-50221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50234/", + "id": 50234, + "name": "Alecto", + "site_detail_url": "https://comicvine.gamespot.com/alecto/4005-50234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50246/", + "id": 50246, + "name": "Starhammer", + "site_detail_url": "https://comicvine.gamespot.com/starhammer/4005-50246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50247/", + "id": 50247, + "name": "Deadspot", + "site_detail_url": "https://comicvine.gamespot.com/deadspot/4005-50247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50274/", + "id": 50274, + "name": "Elwood", + "site_detail_url": "https://comicvine.gamespot.com/elwood/4005-50274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50275/", + "id": 50275, + "name": "Owen Danville", + "site_detail_url": "https://comicvine.gamespot.com/owen-danville/4005-50275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50295/", + "id": 50295, + "name": "Auraldia", + "site_detail_url": "https://comicvine.gamespot.com/auraldia/4005-50295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50313/", + "id": 50313, + "name": "Paragon", + "site_detail_url": "https://comicvine.gamespot.com/paragon/4005-50313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50314/", + "id": 50314, + "name": "Hazmat", + "site_detail_url": "https://comicvine.gamespot.com/hazmat/4005-50314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50315/", + "id": 50315, + "name": "Solara", + "site_detail_url": "https://comicvine.gamespot.com/solara/4005-50315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50316/", + "id": 50316, + "name": "Brigade", + "site_detail_url": "https://comicvine.gamespot.com/brigade/4005-50316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50317/", + "id": 50317, + "name": "The Wink", + "site_detail_url": "https://comicvine.gamespot.com/the-wink/4005-50317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50318/", + "id": 50318, + "name": "Johnny Ohm", + "site_detail_url": "https://comicvine.gamespot.com/johnny-ohm/4005-50318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50319/", + "id": 50319, + "name": "Fault Zone", + "site_detail_url": "https://comicvine.gamespot.com/fault-zone/4005-50319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50320/", + "id": 50320, + "name": "Niles Van Roekel", + "site_detail_url": "https://comicvine.gamespot.com/niles-van-roekel/4005-50320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50355/", + "id": 50355, + "name": "Atrocity", + "site_detail_url": "https://comicvine.gamespot.com/atrocity/4005-50355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50356/", + "id": 50356, + "name": "Ranter", + "site_detail_url": "https://comicvine.gamespot.com/ranter/4005-50356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50394/", + "id": 50394, + "name": "Amy Brewer", + "site_detail_url": "https://comicvine.gamespot.com/amy-brewer/4005-50394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50406/", + "id": 50406, + "name": "Queen Cat", + "site_detail_url": "https://comicvine.gamespot.com/queen-cat/4005-50406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50424/", + "id": 50424, + "name": "Itsu", + "site_detail_url": "https://comicvine.gamespot.com/itsu/4005-50424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50428/", + "id": 50428, + "name": "Muramasa", + "site_detail_url": "https://comicvine.gamespot.com/muramasa/4005-50428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50434/", + "id": 50434, + "name": "Dexter Bennett", + "site_detail_url": "https://comicvine.gamespot.com/dexter-bennett/4005-50434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50439/", + "id": 50439, + "name": "Aghanne", + "site_detail_url": "https://comicvine.gamespot.com/aghanne/4005-50439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50481/", + "id": 50481, + "name": "Jumbo Carnation", + "site_detail_url": "https://comicvine.gamespot.com/jumbo-carnation/4005-50481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50486/", + "id": 50486, + "name": "Celeste Cuckoo", + "site_detail_url": "https://comicvine.gamespot.com/celeste-cuckoo/4005-50486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50487/", + "id": 50487, + "name": "Esme Cuckoo", + "site_detail_url": "https://comicvine.gamespot.com/esme-cuckoo/4005-50487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50488/", + "id": 50488, + "name": "Mindee Cuckoo", + "site_detail_url": "https://comicvine.gamespot.com/mindee-cuckoo/4005-50488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50489/", + "id": 50489, + "name": "Phoebe Cuckoo", + "site_detail_url": "https://comicvine.gamespot.com/phoebe-cuckoo/4005-50489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50490/", + "id": 50490, + "name": "Sophie Cuckoo", + "site_detail_url": "https://comicvine.gamespot.com/sophie-cuckoo/4005-50490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50493/", + "id": 50493, + "name": "Daniel", + "site_detail_url": "https://comicvine.gamespot.com/daniel/4005-50493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50503/", + "id": 50503, + "name": "Zafra", + "site_detail_url": "https://comicvine.gamespot.com/zafra/4005-50503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50510/", + "id": 50510, + "name": "Mer-Max", + "site_detail_url": "https://comicvine.gamespot.com/mer-max/4005-50510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50530/", + "id": 50530, + "name": "Ginetta Nord", + "site_detail_url": "https://comicvine.gamespot.com/ginetta-nord/4005-50530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50535/", + "id": 50535, + "name": "Cazon", + "site_detail_url": "https://comicvine.gamespot.com/cazon/4005-50535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50541/", + "id": 50541, + "name": "Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/hurricane/4005-50541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50581/", + "id": 50581, + "name": "Falcon", + "site_detail_url": "https://comicvine.gamespot.com/falcon/4005-50581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50595/", + "id": 50595, + "name": "Kathleen O'Meara", + "site_detail_url": "https://comicvine.gamespot.com/kathleen-omeara/4005-50595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50599/", + "id": 50599, + "name": "Maya Hansen", + "site_detail_url": "https://comicvine.gamespot.com/maya-hansen/4005-50599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50600/", + "id": 50600, + "name": "Jack Kooning", + "site_detail_url": "https://comicvine.gamespot.com/jack-kooning/4005-50600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50601/", + "id": 50601, + "name": "Shatterax", + "site_detail_url": "https://comicvine.gamespot.com/shatterax/4005-50601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50611/", + "id": 50611, + "name": "B. A. Baracus", + "site_detail_url": "https://comicvine.gamespot.com/b-a-baracus/4005-50611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50660/", + "id": 50660, + "name": "K.I.A.", + "site_detail_url": "https://comicvine.gamespot.com/kia/4005-50660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50661/", + "id": 50661, + "name": "Nebo", + "site_detail_url": "https://comicvine.gamespot.com/nebo/4005-50661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50712/", + "id": 50712, + "name": "Jade the Firebird", + "site_detail_url": "https://comicvine.gamespot.com/jade-the-firebird/4005-50712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50738/", + "id": 50738, + "name": "Centurius", + "site_detail_url": "https://comicvine.gamespot.com/centurius/4005-50738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50739/", + "id": 50739, + "name": "Danielle Cage", + "site_detail_url": "https://comicvine.gamespot.com/danielle-cage/4005-50739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50797/", + "id": 50797, + "name": "Ink", + "site_detail_url": "https://comicvine.gamespot.com/ink/4005-50797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50798/", + "id": 50798, + "name": "Graymalkin", + "site_detail_url": "https://comicvine.gamespot.com/graymalkin/4005-50798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50839/", + "id": 50839, + "name": "Moot", + "site_detail_url": "https://comicvine.gamespot.com/moot/4005-50839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50856/", + "id": 50856, + "name": "Cerebro", + "site_detail_url": "https://comicvine.gamespot.com/cerebro/4005-50856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50862/", + "id": 50862, + "name": "Twelfth Red", + "site_detail_url": "https://comicvine.gamespot.com/twelfth-red/4005-50862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50863/", + "id": 50863, + "name": "Guild Primus", + "site_detail_url": "https://comicvine.gamespot.com/guild-primus/4005-50863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50873/", + "id": 50873, + "name": "Iron Maiden", + "site_detail_url": "https://comicvine.gamespot.com/iron-maiden/4005-50873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50888/", + "id": 50888, + "name": "Beverly Chin", + "site_detail_url": "https://comicvine.gamespot.com/beverly-chin/4005-50888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50889/", + "id": 50889, + "name": "Clive Perry", + "site_detail_url": "https://comicvine.gamespot.com/clive-perry/4005-50889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50901/", + "id": 50901, + "name": "Brace", + "site_detail_url": "https://comicvine.gamespot.com/brace/4005-50901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50961/", + "id": 50961, + "name": "Zealot", + "site_detail_url": "https://comicvine.gamespot.com/zealot/4005-50961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50969/", + "id": 50969, + "name": "Mr. Isley", + "site_detail_url": "https://comicvine.gamespot.com/mr-isley/4005-50969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50979/", + "id": 50979, + "name": "Intelligencia", + "site_detail_url": "https://comicvine.gamespot.com/intelligencia/4005-50979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50983/", + "id": 50983, + "name": "Mad Man", + "site_detail_url": "https://comicvine.gamespot.com/mad-man/4005-50983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50987/", + "id": 50987, + "name": "Liam Connaughton", + "site_detail_url": "https://comicvine.gamespot.com/liam-connaughton/4005-50987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50988/", + "id": 50988, + "name": "Anti-Being", + "site_detail_url": "https://comicvine.gamespot.com/anti-being/4005-50988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50991/", + "id": 50991, + "name": "The Shaker", + "site_detail_url": "https://comicvine.gamespot.com/the-shaker/4005-50991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-50993/", + "id": 50993, + "name": "Count Valenso", + "site_detail_url": "https://comicvine.gamespot.com/count-valenso/4005-50993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51011/", + "id": 51011, + "name": "Quick Kick", + "site_detail_url": "https://comicvine.gamespot.com/quick-kick/4005-51011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51047/", + "id": 51047, + "name": "The Virus", + "site_detail_url": "https://comicvine.gamespot.com/the-virus/4005-51047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51048/", + "id": 51048, + "name": "Scout", + "site_detail_url": "https://comicvine.gamespot.com/scout/4005-51048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51052/", + "id": 51052, + "name": "Killshot", + "site_detail_url": "https://comicvine.gamespot.com/killshot/4005-51052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51085/", + "id": 51085, + "name": "Agent Smith", + "site_detail_url": "https://comicvine.gamespot.com/agent-smith/4005-51085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51087/", + "id": 51087, + "name": "Maggie", + "site_detail_url": "https://comicvine.gamespot.com/maggie/4005-51087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51092/", + "id": 51092, + "name": "Scavengers", + "site_detail_url": "https://comicvine.gamespot.com/scavengers/4005-51092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51096/", + "id": 51096, + "name": "Ranulph Haldane", + "site_detail_url": "https://comicvine.gamespot.com/ranulph-haldane/4005-51096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51098/", + "id": 51098, + "name": "Ry'Lor", + "site_detail_url": "https://comicvine.gamespot.com/rylor/4005-51098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51158/", + "id": 51158, + "name": "Brother Nature", + "site_detail_url": "https://comicvine.gamespot.com/brother-nature/4005-51158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51159/", + "id": 51159, + "name": "Crimelord", + "site_detail_url": "https://comicvine.gamespot.com/crimelord/4005-51159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51160/", + "id": 51160, + "name": "Rough Justice", + "site_detail_url": "https://comicvine.gamespot.com/rough-justice/4005-51160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51161/", + "id": 51161, + "name": "Bloodwitch", + "site_detail_url": "https://comicvine.gamespot.com/bloodwitch/4005-51161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51162/", + "id": 51162, + "name": "Blackdog", + "site_detail_url": "https://comicvine.gamespot.com/blackdog/4005-51162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51167/", + "id": 51167, + "name": "White Avenger", + "site_detail_url": "https://comicvine.gamespot.com/white-avenger/4005-51167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51168/", + "id": 51168, + "name": "Afrikaa", + "site_detail_url": "https://comicvine.gamespot.com/afrikaa/4005-51168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51173/", + "id": 51173, + "name": "Barricade", + "site_detail_url": "https://comicvine.gamespot.com/barricade/4005-51173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51174/", + "id": 51174, + "name": "Captain Blaze", + "site_detail_url": "https://comicvine.gamespot.com/captain-blaze/4005-51174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51175/", + "id": 51175, + "name": "Harrier", + "site_detail_url": "https://comicvine.gamespot.com/harrier/4005-51175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51176/", + "id": 51176, + "name": "Hungyr", + "site_detail_url": "https://comicvine.gamespot.com/hungyr/4005-51176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51177/", + "id": 51177, + "name": "Voortrekker", + "site_detail_url": "https://comicvine.gamespot.com/voortrekker/4005-51177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51227/", + "id": 51227, + "name": "Charlie Kurkle", + "site_detail_url": "https://comicvine.gamespot.com/charlie-kurkle/4005-51227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51228/", + "id": 51228, + "name": "Mona Claro", + "site_detail_url": "https://comicvine.gamespot.com/mona-claro/4005-51228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51242/", + "id": 51242, + "name": "Emperor Strabonus", + "site_detail_url": "https://comicvine.gamespot.com/emperor-strabonus/4005-51242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51244/", + "id": 51244, + "name": "Firefly", + "site_detail_url": "https://comicvine.gamespot.com/firefly/4005-51244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51245/", + "id": 51245, + "name": "Malefactor", + "site_detail_url": "https://comicvine.gamespot.com/malefactor/4005-51245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51246/", + "id": 51246, + "name": "Chokehold", + "site_detail_url": "https://comicvine.gamespot.com/chokehold/4005-51246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51247/", + "id": 51247, + "name": "Gator", + "site_detail_url": "https://comicvine.gamespot.com/gator/4005-51247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51248/", + "id": 51248, + "name": "Moleculon", + "site_detail_url": "https://comicvine.gamespot.com/moleculon/4005-51248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51249/", + "id": 51249, + "name": "Raze", + "site_detail_url": "https://comicvine.gamespot.com/raze/4005-51249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51254/", + "id": 51254, + "name": "Gobo", + "site_detail_url": "https://comicvine.gamespot.com/gobo/4005-51254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51258/", + "id": 51258, + "name": "Arthur Eld", + "site_detail_url": "https://comicvine.gamespot.com/arthur-eld/4005-51258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51263/", + "id": 51263, + "name": "Ted Castle", + "site_detail_url": "https://comicvine.gamespot.com/ted-castle/4005-51263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51305/", + "id": 51305, + "name": "Braggadoom", + "site_detail_url": "https://comicvine.gamespot.com/braggadoom/4005-51305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51306/", + "id": 51306, + "name": "Volcanus", + "site_detail_url": "https://comicvine.gamespot.com/volcanus/4005-51306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51308/", + "id": 51308, + "name": "Skyshark", + "site_detail_url": "https://comicvine.gamespot.com/skyshark/4005-51308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51337/", + "id": 51337, + "name": "Eldred Jonas", + "site_detail_url": "https://comicvine.gamespot.com/eldred-jonas/4005-51337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51350/", + "id": 51350, + "name": "Porlock", + "site_detail_url": "https://comicvine.gamespot.com/porlock/4005-51350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51371/", + "id": 51371, + "name": "Clay Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/clay-reynolds/4005-51371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51378/", + "id": 51378, + "name": "Roy Depape", + "site_detail_url": "https://comicvine.gamespot.com/roy-depape/4005-51378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51396/", + "id": 51396, + "name": "High Noon Tex", + "site_detail_url": "https://comicvine.gamespot.com/high-noon-tex/4005-51396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51448/", + "id": 51448, + "name": "Randall Flagg", + "site_detail_url": "https://comicvine.gamespot.com/randall-flagg/4005-51448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51481/", + "id": 51481, + "name": "A'sai", + "site_detail_url": "https://comicvine.gamespot.com/asai/4005-51481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51524/", + "id": 51524, + "name": "Herbert Landon", + "site_detail_url": "https://comicvine.gamespot.com/herbert-landon/4005-51524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51525/", + "id": 51525, + "name": "Detonator", + "site_detail_url": "https://comicvine.gamespot.com/detonator/4005-51525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51527/", + "id": 51527, + "name": "Gallowglass", + "site_detail_url": "https://comicvine.gamespot.com/gallowglass/4005-51527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51533/", + "id": 51533, + "name": "Valtorr", + "site_detail_url": "https://comicvine.gamespot.com/valtorr/4005-51533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51534/", + "id": 51534, + "name": "Raggadorr", + "site_detail_url": "https://comicvine.gamespot.com/raggadorr/4005-51534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51535/", + "id": 51535, + "name": "Krakkan", + "site_detail_url": "https://comicvine.gamespot.com/krakkan/4005-51535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51536/", + "id": 51536, + "name": "Balthakk", + "site_detail_url": "https://comicvine.gamespot.com/balthakk/4005-51536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51538/", + "id": 51538, + "name": "Enid Richards", + "site_detail_url": "https://comicvine.gamespot.com/enid-richards/4005-51538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51541/", + "id": 51541, + "name": "Silver Wings", + "site_detail_url": "https://comicvine.gamespot.com/silver-wings/4005-51541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51542/", + "id": 51542, + "name": "Syndicate", + "site_detail_url": "https://comicvine.gamespot.com/syndicate/4005-51542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51543/", + "id": 51543, + "name": "Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/tarantula/4005-51543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51544/", + "id": 51544, + "name": "Mallen", + "site_detail_url": "https://comicvine.gamespot.com/mallen/4005-51544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51546/", + "id": 51546, + "name": "Aan Taanu", + "site_detail_url": "https://comicvine.gamespot.com/aan-taanu/4005-51546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51594/", + "id": 51594, + "name": "Worldmind", + "site_detail_url": "https://comicvine.gamespot.com/worldmind/4005-51594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51605/", + "id": 51605, + "name": "Kalin Karth Kith", + "site_detail_url": "https://comicvine.gamespot.com/kalin-karth-kith/4005-51605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51613/", + "id": 51613, + "name": "Firehand", + "site_detail_url": "https://comicvine.gamespot.com/firehand/4005-51613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51614/", + "id": 51614, + "name": "Bear Brother", + "site_detail_url": "https://comicvine.gamespot.com/bear-brother/4005-51614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51615/", + "id": 51615, + "name": "Talks-to-Spirits", + "site_detail_url": "https://comicvine.gamespot.com/talks-to-spirits/4005-51615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51616/", + "id": 51616, + "name": "Willow-Dancer", + "site_detail_url": "https://comicvine.gamespot.com/willow-dancer/4005-51616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51636/", + "id": 51636, + "name": "Dr. Takiguchi", + "site_detail_url": "https://comicvine.gamespot.com/dr-takiguchi/4005-51636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51637/", + "id": 51637, + "name": "Rob Takiguchi", + "site_detail_url": "https://comicvine.gamespot.com/rob-takiguchi/4005-51637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51638/", + "id": 51638, + "name": "Hugh Howards", + "site_detail_url": "https://comicvine.gamespot.com/hugh-howards/4005-51638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51639/", + "id": 51639, + "name": "Tamara Hashioka", + "site_detail_url": "https://comicvine.gamespot.com/tamara-hashioka/4005-51639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51640/", + "id": 51640, + "name": "Gladstone Hawkins", + "site_detail_url": "https://comicvine.gamespot.com/gladstone-hawkins/4005-51640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51641/", + "id": 51641, + "name": "Marianne Rodgers", + "site_detail_url": "https://comicvine.gamespot.com/marianne-rodgers/4005-51641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51662/", + "id": 51662, + "name": "Zadkiel", + "site_detail_url": "https://comicvine.gamespot.com/zadkiel/4005-51662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51692/", + "id": 51692, + "name": "Batragon", + "site_detail_url": "https://comicvine.gamespot.com/batragon/4005-51692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51695/", + "id": 51695, + "name": "Ice", + "site_detail_url": "https://comicvine.gamespot.com/ice/4005-51695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51697/", + "id": 51697, + "name": "Dragon", + "site_detail_url": "https://comicvine.gamespot.com/dragon/4005-51697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51698/", + "id": 51698, + "name": "Bull", + "site_detail_url": "https://comicvine.gamespot.com/bull/4005-51698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51702/", + "id": 51702, + "name": "Boom Boom", + "site_detail_url": "https://comicvine.gamespot.com/boom-boom/4005-51702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51705/", + "id": 51705, + "name": "Razor", + "site_detail_url": "https://comicvine.gamespot.com/razor/4005-51705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51713/", + "id": 51713, + "name": "Ricky Landers", + "site_detail_url": "https://comicvine.gamespot.com/ricky-landers/4005-51713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51720/", + "id": 51720, + "name": "Yetrigar", + "site_detail_url": "https://comicvine.gamespot.com/yetrigar/4005-51720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51754/", + "id": 51754, + "name": "Matthew Horace Grayson", + "site_detail_url": "https://comicvine.gamespot.com/matthew-horace-grayson/4005-51754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51760/", + "id": 51760, + "name": "Tiger-Claw", + "site_detail_url": "https://comicvine.gamespot.com/tiger-claw/4005-51760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51788/", + "id": 51788, + "name": "Amanaman", + "site_detail_url": "https://comicvine.gamespot.com/amanaman/4005-51788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51794/", + "id": 51794, + "name": "Iris Raritan", + "site_detail_url": "https://comicvine.gamespot.com/iris-raritan/4005-51794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51795/", + "id": 51795, + "name": "Sudd", + "site_detail_url": "https://comicvine.gamespot.com/sudd/4005-51795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51796/", + "id": 51796, + "name": "Sinister Soofi", + "site_detail_url": "https://comicvine.gamespot.com/sinister-soofi/4005-51796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51800/", + "id": 51800, + "name": "Assassin", + "site_detail_url": "https://comicvine.gamespot.com/assassin/4005-51800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51836/", + "id": 51836, + "name": "Angus MacWhirter", + "site_detail_url": "https://comicvine.gamespot.com/angus-macwhirter/4005-51836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51852/", + "id": 51852, + "name": "Tesseract", + "site_detail_url": "https://comicvine.gamespot.com/tesseract/4005-51852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51853/", + "id": 51853, + "name": "Beast-Killer", + "site_detail_url": "https://comicvine.gamespot.com/beast-killer/4005-51853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51860/", + "id": 51860, + "name": "Dodge", + "site_detail_url": "https://comicvine.gamespot.com/dodge/4005-51860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51904/", + "id": 51904, + "name": "Vin Gonzales", + "site_detail_url": "https://comicvine.gamespot.com/vin-gonzales/4005-51904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51914/", + "id": 51914, + "name": "Thaddeus Destine", + "site_detail_url": "https://comicvine.gamespot.com/thaddeus-destine/4005-51914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51924/", + "id": 51924, + "name": "Mogul", + "site_detail_url": "https://comicvine.gamespot.com/mogul/4005-51924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51951/", + "id": 51951, + "name": "Jaghur", + "site_detail_url": "https://comicvine.gamespot.com/jaghur/4005-51951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51956/", + "id": 51956, + "name": "Samuel Kingston", + "site_detail_url": "https://comicvine.gamespot.com/samuel-kingston/4005-51956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51959/", + "id": 51959, + "name": "Thongor", + "site_detail_url": "https://comicvine.gamespot.com/thongor/4005-51959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51960/", + "id": 51960, + "name": "Moomba", + "site_detail_url": "https://comicvine.gamespot.com/moomba/4005-51960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51961/", + "id": 51961, + "name": "Korilla", + "site_detail_url": "https://comicvine.gamespot.com/korilla/4005-51961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-51999/", + "id": 51999, + "name": "Aaron the Sorcerer", + "site_detail_url": "https://comicvine.gamespot.com/aaron-the-sorcerer/4005-51999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52000/", + "id": 52000, + "name": "Dragoom", + "site_detail_url": "https://comicvine.gamespot.com/dragoom/4005-52000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52001/", + "id": 52001, + "name": "Big Enilwen", + "site_detail_url": "https://comicvine.gamespot.com/big-enilwen/4005-52001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52003/", + "id": 52003, + "name": "Sserpo", + "site_detail_url": "https://comicvine.gamespot.com/sserpo/4005-52003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52007/", + "id": 52007, + "name": "Lo-Karr", + "site_detail_url": "https://comicvine.gamespot.com/lo-karr/4005-52007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52013/", + "id": 52013, + "name": "The Midnight Monster", + "site_detail_url": "https://comicvine.gamespot.com/the-midnight-monster/4005-52013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52024/", + "id": 52024, + "name": "The Glob", + "site_detail_url": "https://comicvine.gamespot.com/the-glob/4005-52024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52025/", + "id": 52025, + "name": "Gruto", + "site_detail_url": "https://comicvine.gamespot.com/gruto/4005-52025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52027/", + "id": 52027, + "name": "Pildorr", + "site_detail_url": "https://comicvine.gamespot.com/pildorr/4005-52027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52028/", + "id": 52028, + "name": "Klagg", + "site_detail_url": "https://comicvine.gamespot.com/klagg/4005-52028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52029/", + "id": 52029, + "name": "Zetora the Martian", + "site_detail_url": "https://comicvine.gamespot.com/zetora-the-martian/4005-52029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52030/", + "id": 52030, + "name": "Man-Oo", + "site_detail_url": "https://comicvine.gamespot.com/man-oo/4005-52030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52031/", + "id": 52031, + "name": "Starchild", + "site_detail_url": "https://comicvine.gamespot.com/starchild/4005-52031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52037/", + "id": 52037, + "name": "Beavis", + "site_detail_url": "https://comicvine.gamespot.com/beavis/4005-52037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52038/", + "id": 52038, + "name": "Butt-Head", + "site_detail_url": "https://comicvine.gamespot.com/butt-head/4005-52038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52066/", + "id": 52066, + "name": "Nzinga", + "site_detail_url": "https://comicvine.gamespot.com/nzinga/4005-52066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52081/", + "id": 52081, + "name": "Mas Amedda", + "site_detail_url": "https://comicvine.gamespot.com/mas-amedda/4005-52081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52090/", + "id": 52090, + "name": "Robot-X", + "site_detail_url": "https://comicvine.gamespot.com/robot-x/4005-52090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52119/", + "id": 52119, + "name": "Cracka-Jack Jackson", + "site_detail_url": "https://comicvine.gamespot.com/cracka-jack-jackson/4005-52119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52164/", + "id": 52164, + "name": "Captain Autolycus", + "site_detail_url": "https://comicvine.gamespot.com/captain-autolycus/4005-52164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52165/", + "id": 52165, + "name": "Madness Monster", + "site_detail_url": "https://comicvine.gamespot.com/madness-monster/4005-52165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52167/", + "id": 52167, + "name": "Hand of Five", + "site_detail_url": "https://comicvine.gamespot.com/hand-of-five/4005-52167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52215/", + "id": 52215, + "name": "Silicon", + "site_detail_url": "https://comicvine.gamespot.com/silicon/4005-52215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52219/", + "id": 52219, + "name": "The Kid", + "site_detail_url": "https://comicvine.gamespot.com/the-kid/4005-52219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52220/", + "id": 52220, + "name": "Skul", + "site_detail_url": "https://comicvine.gamespot.com/skul/4005-52220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52221/", + "id": 52221, + "name": "M-80", + "site_detail_url": "https://comicvine.gamespot.com/m-80/4005-52221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52222/", + "id": 52222, + "name": "Nails", + "site_detail_url": "https://comicvine.gamespot.com/nails/4005-52222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52260/", + "id": 52260, + "name": "Warewolf", + "site_detail_url": "https://comicvine.gamespot.com/warewolf/4005-52260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52291/", + "id": 52291, + "name": "Nebethet", + "site_detail_url": "https://comicvine.gamespot.com/nebethet/4005-52291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52297/", + "id": 52297, + "name": "Shagg", + "site_detail_url": "https://comicvine.gamespot.com/shagg/4005-52297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52318/", + "id": 52318, + "name": "Mad Simeon", + "site_detail_url": "https://comicvine.gamespot.com/mad-simeon/4005-52318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52319/", + "id": 52319, + "name": "Solaise", + "site_detail_url": "https://comicvine.gamespot.com/solaise/4005-52319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52462/", + "id": 52462, + "name": "Incinerator", + "site_detail_url": "https://comicvine.gamespot.com/incinerator/4005-52462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52474/", + "id": 52474, + "name": "Cyborg", + "site_detail_url": "https://comicvine.gamespot.com/cyborg/4005-52474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52476/", + "id": 52476, + "name": "Acrobat", + "site_detail_url": "https://comicvine.gamespot.com/acrobat/4005-52476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52477/", + "id": 52477, + "name": "Warbow", + "site_detail_url": "https://comicvine.gamespot.com/warbow/4005-52477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52480/", + "id": 52480, + "name": "T-Ray", + "site_detail_url": "https://comicvine.gamespot.com/t-ray/4005-52480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52482/", + "id": 52482, + "name": "Tyro", + "site_detail_url": "https://comicvine.gamespot.com/tyro/4005-52482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52522/", + "id": 52522, + "name": "Sal Kennedy", + "site_detail_url": "https://comicvine.gamespot.com/sal-kennedy/4005-52522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52524/", + "id": 52524, + "name": "Randall Crowne", + "site_detail_url": "https://comicvine.gamespot.com/randall-crowne/4005-52524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52563/", + "id": 52563, + "name": "Isabelle Kristel", + "site_detail_url": "https://comicvine.gamespot.com/isabelle-kristel/4005-52563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52577/", + "id": 52577, + "name": "Kathleen Rennie", + "site_detail_url": "https://comicvine.gamespot.com/kathleen-rennie/4005-52577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52586/", + "id": 52586, + "name": "Cajun Creed", + "site_detail_url": "https://comicvine.gamespot.com/cajun-creed/4005-52586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52624/", + "id": 52624, + "name": "Master Sniper", + "site_detail_url": "https://comicvine.gamespot.com/master-sniper/4005-52624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52632/", + "id": 52632, + "name": "Jou-Jouka", + "site_detail_url": "https://comicvine.gamespot.com/jou-jouka/4005-52632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52633/", + "id": 52633, + "name": "Kareesh-Bek", + "site_detail_url": "https://comicvine.gamespot.com/kareesh-bek/4005-52633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52634/", + "id": 52634, + "name": "Sumaro", + "site_detail_url": "https://comicvine.gamespot.com/sumaro/4005-52634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52635/", + "id": 52635, + "name": "Arsenal", + "site_detail_url": "https://comicvine.gamespot.com/arsenal/4005-52635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52647/", + "id": 52647, + "name": "Vavavoom", + "site_detail_url": "https://comicvine.gamespot.com/vavavoom/4005-52647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52648/", + "id": 52648, + "name": "Sushi", + "site_detail_url": "https://comicvine.gamespot.com/sushi/4005-52648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52649/", + "id": 52649, + "name": "Magilla", + "site_detail_url": "https://comicvine.gamespot.com/magilla/4005-52649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52650/", + "id": 52650, + "name": "Cowgirl", + "site_detail_url": "https://comicvine.gamespot.com/cowgirl/4005-52650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52656/", + "id": 52656, + "name": "Jock Jackson", + "site_detail_url": "https://comicvine.gamespot.com/jock-jackson/4005-52656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52668/", + "id": 52668, + "name": "Shelly Conklin", + "site_detail_url": "https://comicvine.gamespot.com/shelly-conklin/4005-52668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52669/", + "id": 52669, + "name": "Rigger Ruiz", + "site_detail_url": "https://comicvine.gamespot.com/rigger-ruiz/4005-52669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52670/", + "id": 52670, + "name": "Warren Curzon", + "site_detail_url": "https://comicvine.gamespot.com/warren-curzon/4005-52670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52672/", + "id": 52672, + "name": "Masked Marvel", + "site_detail_url": "https://comicvine.gamespot.com/masked-marvel/4005-52672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52687/", + "id": 52687, + "name": "Julius Rassitano", + "site_detail_url": "https://comicvine.gamespot.com/julius-rassitano/4005-52687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52689/", + "id": 52689, + "name": "Mother Majowski", + "site_detail_url": "https://comicvine.gamespot.com/mother-majowski/4005-52689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52720/", + "id": 52720, + "name": "Margaret Slade", + "site_detail_url": "https://comicvine.gamespot.com/margaret-slade/4005-52720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52721/", + "id": 52721, + "name": "Hamilton Slade", + "site_detail_url": "https://comicvine.gamespot.com/hamilton-slade/4005-52721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52722/", + "id": 52722, + "name": "Frederick Slade", + "site_detail_url": "https://comicvine.gamespot.com/frederick-slade/4005-52722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52723/", + "id": 52723, + "name": "Jack Starsmore", + "site_detail_url": "https://comicvine.gamespot.com/jack-starsmore/4005-52723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52724/", + "id": 52724, + "name": "Kabar Brashir", + "site_detail_url": "https://comicvine.gamespot.com/kabar-brashir/4005-52724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52739/", + "id": 52739, + "name": "Smokescreen", + "site_detail_url": "https://comicvine.gamespot.com/smokescreen/4005-52739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52762/", + "id": 52762, + "name": "Mysterium", + "site_detail_url": "https://comicvine.gamespot.com/mysterium/4005-52762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52766/", + "id": 52766, + "name": "Miss Ferguson", + "site_detail_url": "https://comicvine.gamespot.com/miss-ferguson/4005-52766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52775/", + "id": 52775, + "name": "Baron Brimstone", + "site_detail_url": "https://comicvine.gamespot.com/baron-brimstone/4005-52775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52799/", + "id": 52799, + "name": "Excaliber", + "site_detail_url": "https://comicvine.gamespot.com/excaliber/4005-52799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52800/", + "id": 52800, + "name": "XP-2000", + "site_detail_url": "https://comicvine.gamespot.com/xp-2000/4005-52800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52802/", + "id": 52802, + "name": "Rm'Twr", + "site_detail_url": "https://comicvine.gamespot.com/rmtwr/4005-52802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52803/", + "id": 52803, + "name": "William Wagner", + "site_detail_url": "https://comicvine.gamespot.com/william-wagner/4005-52803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52804/", + "id": 52804, + "name": "Sarah Day", + "site_detail_url": "https://comicvine.gamespot.com/sarah-day/4005-52804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52805/", + "id": 52805, + "name": "Rl'Nnd", + "site_detail_url": "https://comicvine.gamespot.com/rlnnd/4005-52805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52814/", + "id": 52814, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-52814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52821/", + "id": 52821, + "name": "Carlyle", + "site_detail_url": "https://comicvine.gamespot.com/carlyle/4005-52821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52822/", + "id": 52822, + "name": "Critical Mass", + "site_detail_url": "https://comicvine.gamespot.com/critical-mass/4005-52822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52830/", + "id": 52830, + "name": "Mutilation Killer", + "site_detail_url": "https://comicvine.gamespot.com/mutilation-killer/4005-52830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52865/", + "id": 52865, + "name": "D.K.", + "site_detail_url": "https://comicvine.gamespot.com/dk/4005-52865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52868/", + "id": 52868, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/digger/4005-52868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52869/", + "id": 52869, + "name": "Twin Terror", + "site_detail_url": "https://comicvine.gamespot.com/twin-terror/4005-52869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52878/", + "id": 52878, + "name": "Vagabond", + "site_detail_url": "https://comicvine.gamespot.com/vagabond/4005-52878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52889/", + "id": 52889, + "name": "Siegfried Farber", + "site_detail_url": "https://comicvine.gamespot.com/siegfried-farber/4005-52889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52895/", + "id": 52895, + "name": "Martin Burns", + "site_detail_url": "https://comicvine.gamespot.com/martin-burns/4005-52895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52922/", + "id": 52922, + "name": "Sly Moore", + "site_detail_url": "https://comicvine.gamespot.com/sly-moore/4005-52922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52936/", + "id": 52936, + "name": "Gwen Stacy Clone", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy-clone/4005-52936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52937/", + "id": 52937, + "name": "Sorcerer", + "site_detail_url": "https://comicvine.gamespot.com/sorcerer/4005-52937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52940/", + "id": 52940, + "name": "Seymour O'Reilly", + "site_detail_url": "https://comicvine.gamespot.com/seymour-oreilly/4005-52940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52941/", + "id": 52941, + "name": "Painter of 1000 Perils", + "site_detail_url": "https://comicvine.gamespot.com/painter-of-1000-perils/4005-52941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52942/", + "id": 52942, + "name": "Professor Newton", + "site_detail_url": "https://comicvine.gamespot.com/professor-newton/4005-52942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52944/", + "id": 52944, + "name": "Stone-Face", + "site_detail_url": "https://comicvine.gamespot.com/stone-face/4005-52944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52947/", + "id": 52947, + "name": "Uber-Machine", + "site_detail_url": "https://comicvine.gamespot.com/uber-machine/4005-52947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52948/", + "id": 52948, + "name": "White Ninja", + "site_detail_url": "https://comicvine.gamespot.com/white-ninja/4005-52948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52960/", + "id": 52960, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4005-52960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52979/", + "id": 52979, + "name": "Xao", + "site_detail_url": "https://comicvine.gamespot.com/xao/4005-52979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52986/", + "id": 52986, + "name": "Ghostmare", + "site_detail_url": "https://comicvine.gamespot.com/ghostmare/4005-52986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52987/", + "id": 52987, + "name": "Firemane", + "site_detail_url": "https://comicvine.gamespot.com/firemane/4005-52987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52988/", + "id": 52988, + "name": "Thunderhoof", + "site_detail_url": "https://comicvine.gamespot.com/thunderhoof/4005-52988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52989/", + "id": 52989, + "name": "Teamleader", + "site_detail_url": "https://comicvine.gamespot.com/teamleader/4005-52989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-52993/", + "id": 52993, + "name": "Sean", + "site_detail_url": "https://comicvine.gamespot.com/sean/4005-52993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53049/", + "id": 53049, + "name": "Aalbort", + "site_detail_url": "https://comicvine.gamespot.com/aalbort/4005-53049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53050/", + "id": 53050, + "name": "Abadon", + "site_detail_url": "https://comicvine.gamespot.com/abadon/4005-53050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53051/", + "id": 53051, + "name": "Thanademos", + "site_detail_url": "https://comicvine.gamespot.com/thanademos/4005-53051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53078/", + "id": 53078, + "name": "Aunt Ham", + "site_detail_url": "https://comicvine.gamespot.com/aunt-ham/4005-53078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53080/", + "id": 53080, + "name": "Albert Destine", + "site_detail_url": "https://comicvine.gamespot.com/albert-destine/4005-53080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53081/", + "id": 53081, + "name": "Raee", + "site_detail_url": "https://comicvine.gamespot.com/raee/4005-53081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53082/", + "id": 53082, + "name": "Phaa", + "site_detail_url": "https://comicvine.gamespot.com/phaa/4005-53082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53091/", + "id": 53091, + "name": "Adam Able", + "site_detail_url": "https://comicvine.gamespot.com/adam-able/4005-53091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53094/", + "id": 53094, + "name": "Janta", + "site_detail_url": "https://comicvine.gamespot.com/janta/4005-53094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53095/", + "id": 53095, + "name": "Mitchell Abrams", + "site_detail_url": "https://comicvine.gamespot.com/mitchell-abrams/4005-53095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53131/", + "id": 53131, + "name": "Abysss", + "site_detail_url": "https://comicvine.gamespot.com/abysss/4005-53131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53132/", + "id": 53132, + "name": "Soul Slug", + "site_detail_url": "https://comicvine.gamespot.com/soul-slug/4005-53132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53133/", + "id": 53133, + "name": "Roland Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/roland-hamilton/4005-53133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53134/", + "id": 53134, + "name": "Aces Wilde", + "site_detail_url": "https://comicvine.gamespot.com/aces-wilde/4005-53134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53135/", + "id": 53135, + "name": "Vincent", + "site_detail_url": "https://comicvine.gamespot.com/vincent/4005-53135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53152/", + "id": 53152, + "name": "Red Queen", + "site_detail_url": "https://comicvine.gamespot.com/red-queen/4005-53152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53163/", + "id": 53163, + "name": "Protocide", + "site_detail_url": "https://comicvine.gamespot.com/protocide/4005-53163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53177/", + "id": 53177, + "name": "Nina", + "site_detail_url": "https://comicvine.gamespot.com/nina/4005-53177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53178/", + "id": 53178, + "name": "Ted", + "site_detail_url": "https://comicvine.gamespot.com/ted/4005-53178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53187/", + "id": 53187, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-53187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53200/", + "id": 53200, + "name": "Janissa", + "site_detail_url": "https://comicvine.gamespot.com/janissa/4005-53200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53213/", + "id": 53213, + "name": "Fialla", + "site_detail_url": "https://comicvine.gamespot.com/fialla/4005-53213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53215/", + "id": 53215, + "name": "Sheemie Ruiz", + "site_detail_url": "https://comicvine.gamespot.com/sheemie-ruiz/4005-53215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53225/", + "id": 53225, + "name": "Zephyr", + "site_detail_url": "https://comicvine.gamespot.com/zephyr/4005-53225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53226/", + "id": 53226, + "name": "Kimberly Vesco", + "site_detail_url": "https://comicvine.gamespot.com/kimberly-vesco/4005-53226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53227/", + "id": 53227, + "name": "Chloe Tran", + "site_detail_url": "https://comicvine.gamespot.com/chloe-tran/4005-53227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53228/", + "id": 53228, + "name": "Banger McCrusher", + "site_detail_url": "https://comicvine.gamespot.com/banger-mccrusher/4005-53228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53235/", + "id": 53235, + "name": "Kalanthes", + "site_detail_url": "https://comicvine.gamespot.com/kalanthes/4005-53235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53295/", + "id": 53295, + "name": "Joaquin Pennysworth", + "site_detail_url": "https://comicvine.gamespot.com/joaquin-pennysworth/4005-53295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53306/", + "id": 53306, + "name": "Gayle Vaughn", + "site_detail_url": "https://comicvine.gamespot.com/gayle-vaughn/4005-53306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53308/", + "id": 53308, + "name": "Irving Griswold", + "site_detail_url": "https://comicvine.gamespot.com/irving-griswold/4005-53308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53329/", + "id": 53329, + "name": "Kuhul Ajaw", + "site_detail_url": "https://comicvine.gamespot.com/kuhul-ajaw/4005-53329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53344/", + "id": 53344, + "name": "Orwell Taylor", + "site_detail_url": "https://comicvine.gamespot.com/orwell-taylor/4005-53344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53352/", + "id": 53352, + "name": "Stevie Goodwin", + "site_detail_url": "https://comicvine.gamespot.com/stevie-goodwin/4005-53352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53380/", + "id": 53380, + "name": "Kathryn O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/kathryn-obrien/4005-53380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53384/", + "id": 53384, + "name": "Moving Shadow", + "site_detail_url": "https://comicvine.gamespot.com/moving-shadow/4005-53384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53449/", + "id": 53449, + "name": "Doctor Denton", + "site_detail_url": "https://comicvine.gamespot.com/doctor-denton/4005-53449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53454/", + "id": 53454, + "name": "Gunplay", + "site_detail_url": "https://comicvine.gamespot.com/gunplay/4005-53454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53476/", + "id": 53476, + "name": "General Zakharov", + "site_detail_url": "https://comicvine.gamespot.com/general-zakharov/4005-53476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53492/", + "id": 53492, + "name": "Ghoul", + "site_detail_url": "https://comicvine.gamespot.com/ghoul/4005-53492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53527/", + "id": 53527, + "name": "Senator Wright", + "site_detail_url": "https://comicvine.gamespot.com/senator-wright/4005-53527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53529/", + "id": 53529, + "name": "Videoman", + "site_detail_url": "https://comicvine.gamespot.com/videoman/4005-53529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53545/", + "id": 53545, + "name": "Virako", + "site_detail_url": "https://comicvine.gamespot.com/virako/4005-53545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53548/", + "id": 53548, + "name": "Burstaar", + "site_detail_url": "https://comicvine.gamespot.com/burstaar/4005-53548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53550/", + "id": 53550, + "name": "N'Baku", + "site_detail_url": "https://comicvine.gamespot.com/nbaku/4005-53550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53553/", + "id": 53553, + "name": "Ra-Venn", + "site_detail_url": "https://comicvine.gamespot.com/ra-venn/4005-53553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53560/", + "id": 53560, + "name": "Stygian Starbender", + "site_detail_url": "https://comicvine.gamespot.com/stygian-starbender/4005-53560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53569/", + "id": 53569, + "name": "Ghilaron", + "site_detail_url": "https://comicvine.gamespot.com/ghilaron/4005-53569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53570/", + "id": 53570, + "name": "Lepirax", + "site_detail_url": "https://comicvine.gamespot.com/lepirax/4005-53570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53572/", + "id": 53572, + "name": "Centipoor", + "site_detail_url": "https://comicvine.gamespot.com/centipoor/4005-53572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53580/", + "id": 53580, + "name": "Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver/4005-53580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53598/", + "id": 53598, + "name": "Cosmic Ray", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ray/4005-53598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53673/", + "id": 53673, + "name": "Auntie Freeze", + "site_detail_url": "https://comicvine.gamespot.com/auntie-freeze/4005-53673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53729/", + "id": 53729, + "name": "Ree", + "site_detail_url": "https://comicvine.gamespot.com/ree/4005-53729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53732/", + "id": 53732, + "name": "Trantra", + "site_detail_url": "https://comicvine.gamespot.com/trantra/4005-53732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53755/", + "id": 53755, + "name": "Ogeode", + "site_detail_url": "https://comicvine.gamespot.com/ogeode/4005-53755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53792/", + "id": 53792, + "name": "Atrea", + "site_detail_url": "https://comicvine.gamespot.com/atrea/4005-53792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53815/", + "id": 53815, + "name": "Beta-Beast", + "site_detail_url": "https://comicvine.gamespot.com/beta-beast/4005-53815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53817/", + "id": 53817, + "name": "Triax", + "site_detail_url": "https://comicvine.gamespot.com/triax/4005-53817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53846/", + "id": 53846, + "name": "Rhiahn", + "site_detail_url": "https://comicvine.gamespot.com/rhiahn/4005-53846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53847/", + "id": 53847, + "name": "Krollar", + "site_detail_url": "https://comicvine.gamespot.com/krollar/4005-53847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53863/", + "id": 53863, + "name": "Zug", + "site_detail_url": "https://comicvine.gamespot.com/zug/4005-53863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53948/", + "id": 53948, + "name": "Caliber", + "site_detail_url": "https://comicvine.gamespot.com/caliber/4005-53948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53972/", + "id": 53972, + "name": "Pestilence", + "site_detail_url": "https://comicvine.gamespot.com/pestilence/4005-53972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53976/", + "id": 53976, + "name": "Auctioneer", + "site_detail_url": "https://comicvine.gamespot.com/auctioneer/4005-53976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53979/", + "id": 53979, + "name": "Janus", + "site_detail_url": "https://comicvine.gamespot.com/janus/4005-53979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53981/", + "id": 53981, + "name": "Freakout", + "site_detail_url": "https://comicvine.gamespot.com/freakout/4005-53981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53985/", + "id": 53985, + "name": "Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/bedlam/4005-53985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53989/", + "id": 53989, + "name": "Gregor Smerdyakov", + "site_detail_url": "https://comicvine.gamespot.com/gregor-smerdyakov/4005-53989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-53998/", + "id": 53998, + "name": "Gustav Hauptmann", + "site_detail_url": "https://comicvine.gamespot.com/gustav-hauptmann/4005-53998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54032/", + "id": 54032, + "name": "Technomancer", + "site_detail_url": "https://comicvine.gamespot.com/technomancer/4005-54032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54034/", + "id": 54034, + "name": "Rat", + "site_detail_url": "https://comicvine.gamespot.com/rat/4005-54034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54035/", + "id": 54035, + "name": "Ox", + "site_detail_url": "https://comicvine.gamespot.com/ox/4005-54035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54036/", + "id": 54036, + "name": "Snake", + "site_detail_url": "https://comicvine.gamespot.com/snake/4005-54036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54038/", + "id": 54038, + "name": "Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/rabbit/4005-54038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54052/", + "id": 54052, + "name": "Carlo Gnucci", + "site_detail_url": "https://comicvine.gamespot.com/carlo-gnucci/4005-54052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54053/", + "id": 54053, + "name": "Bobby Gnucci", + "site_detail_url": "https://comicvine.gamespot.com/bobby-gnucci/4005-54053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54054/", + "id": 54054, + "name": "Eddie Gnucci", + "site_detail_url": "https://comicvine.gamespot.com/eddie-gnucci/4005-54054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54055/", + "id": 54055, + "name": "Dino Gnucci", + "site_detail_url": "https://comicvine.gamespot.com/dino-gnucci/4005-54055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54057/", + "id": 54057, + "name": "Stevie Gnucci", + "site_detail_url": "https://comicvine.gamespot.com/stevie-gnucci/4005-54057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54083/", + "id": 54083, + "name": "Zeitgeist", + "site_detail_url": "https://comicvine.gamespot.com/zeitgeist/4005-54083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54089/", + "id": 54089, + "name": "Captain Forsa", + "site_detail_url": "https://comicvine.gamespot.com/captain-forsa/4005-54089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54100/", + "id": 54100, + "name": "Pasco", + "site_detail_url": "https://comicvine.gamespot.com/pasco/4005-54100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54105/", + "id": 54105, + "name": "Adahm", + "site_detail_url": "https://comicvine.gamespot.com/adahm/4005-54105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54120/", + "id": 54120, + "name": "Zargheba", + "site_detail_url": "https://comicvine.gamespot.com/zargheba/4005-54120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54121/", + "id": 54121, + "name": "Aeon", + "site_detail_url": "https://comicvine.gamespot.com/aeon/4005-54121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54122/", + "id": 54122, + "name": "Aesklos", + "site_detail_url": "https://comicvine.gamespot.com/aesklos/4005-54122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54123/", + "id": 54123, + "name": "Jamal Afari", + "site_detail_url": "https://comicvine.gamespot.com/jamal-afari/4005-54123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54124/", + "id": 54124, + "name": "Afterburner", + "site_detail_url": "https://comicvine.gamespot.com/afterburner/4005-54124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54126/", + "id": 54126, + "name": "Walter Barrett", + "site_detail_url": "https://comicvine.gamespot.com/walter-barrett/4005-54126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54130/", + "id": 54130, + "name": "Nahita", + "site_detail_url": "https://comicvine.gamespot.com/nahita/4005-54130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54170/", + "id": 54170, + "name": "Ulluxy'l Kwan Tae Syn", + "site_detail_url": "https://comicvine.gamespot.com/ulluxyl-kwan-tae-syn/4005-54170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54172/", + "id": 54172, + "name": "Tricephalous", + "site_detail_url": "https://comicvine.gamespot.com/tricephalous/4005-54172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54174/", + "id": 54174, + "name": "Possessor", + "site_detail_url": "https://comicvine.gamespot.com/possessor/4005-54174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54191/", + "id": 54191, + "name": "The Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/the-destroyer/4005-54191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54212/", + "id": 54212, + "name": "Think Tank", + "site_detail_url": "https://comicvine.gamespot.com/think-tank/4005-54212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54213/", + "id": 54213, + "name": "Spinner", + "site_detail_url": "https://comicvine.gamespot.com/spinner/4005-54213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54214/", + "id": 54214, + "name": "Physique", + "site_detail_url": "https://comicvine.gamespot.com/physique/4005-54214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54246/", + "id": 54246, + "name": "Emmet Proudhawk", + "site_detail_url": "https://comicvine.gamespot.com/emmet-proudhawk/4005-54246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54261/", + "id": 54261, + "name": "Miranda Mantega", + "site_detail_url": "https://comicvine.gamespot.com/miranda-mantega/4005-54261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54264/", + "id": 54264, + "name": "Alake", + "site_detail_url": "https://comicvine.gamespot.com/alake/4005-54264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54266/", + "id": 54266, + "name": "Albino", + "site_detail_url": "https://comicvine.gamespot.com/albino/4005-54266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54267/", + "id": 54267, + "name": "Al-Adil", + "site_detail_url": "https://comicvine.gamespot.com/al-adil/4005-54267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54268/", + "id": 54268, + "name": "Aldebron", + "site_detail_url": "https://comicvine.gamespot.com/aldebron/4005-54268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54269/", + "id": 54269, + "name": "Caleb Alexander", + "site_detail_url": "https://comicvine.gamespot.com/caleb-alexander/4005-54269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54271/", + "id": 54271, + "name": "Ian Langstrom", + "site_detail_url": "https://comicvine.gamespot.com/ian-langstrom/4005-54271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54308/", + "id": 54308, + "name": "Black Moray", + "site_detail_url": "https://comicvine.gamespot.com/black-moray/4005-54308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54309/", + "id": 54309, + "name": "Kearson Dewitt", + "site_detail_url": "https://comicvine.gamespot.com/kearson-dewitt/4005-54309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54311/", + "id": 54311, + "name": "Dampyre", + "site_detail_url": "https://comicvine.gamespot.com/dampyre/4005-54311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54312/", + "id": 54312, + "name": "Lord Votan", + "site_detail_url": "https://comicvine.gamespot.com/lord-votan/4005-54312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54313/", + "id": 54313, + "name": "Sidereus", + "site_detail_url": "https://comicvine.gamespot.com/sidereus/4005-54313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54314/", + "id": 54314, + "name": "Throk", + "site_detail_url": "https://comicvine.gamespot.com/throk/4005-54314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54319/", + "id": 54319, + "name": "Mung the Inconceivable", + "site_detail_url": "https://comicvine.gamespot.com/mung-the-inconceivable/4005-54319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54325/", + "id": 54325, + "name": "N2", + "site_detail_url": "https://comicvine.gamespot.com/n2/4005-54325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54338/", + "id": 54338, + "name": "Aja", + "site_detail_url": "https://comicvine.gamespot.com/aja/4005-54338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54349/", + "id": 54349, + "name": "Ned Buckman", + "site_detail_url": "https://comicvine.gamespot.com/ned-buckman/4005-54349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54393/", + "id": 54393, + "name": "Hokk Algol", + "site_detail_url": "https://comicvine.gamespot.com/hokk-algol/4005-54393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54395/", + "id": 54395, + "name": "Alibar", + "site_detail_url": "https://comicvine.gamespot.com/alibar/4005-54395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54396/", + "id": 54396, + "name": "The Alien Champion", + "site_detail_url": "https://comicvine.gamespot.com/the-alien-champion/4005-54396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54399/", + "id": 54399, + "name": "Alioth", + "site_detail_url": "https://comicvine.gamespot.com/alioth/4005-54399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54406/", + "id": 54406, + "name": "Jughandle", + "site_detail_url": "https://comicvine.gamespot.com/jughandle/4005-54406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54407/", + "id": 54407, + "name": "Mize", + "site_detail_url": "https://comicvine.gamespot.com/mize/4005-54407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54408/", + "id": 54408, + "name": "Feeva", + "site_detail_url": "https://comicvine.gamespot.com/feeva/4005-54408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54413/", + "id": 54413, + "name": "John Allen", + "site_detail_url": "https://comicvine.gamespot.com/john-allen/4005-54413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54415/", + "id": 54415, + "name": "Altarra", + "site_detail_url": "https://comicvine.gamespot.com/altarra/4005-54415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54416/", + "id": 54416, + "name": "Donna Altieri", + "site_detail_url": "https://comicvine.gamespot.com/donna-altieri/4005-54416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54440/", + "id": 54440, + "name": "Butterball", + "site_detail_url": "https://comicvine.gamespot.com/butterball/4005-54440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54441/", + "id": 54441, + "name": "Gorilla Girl", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-girl/4005-54441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54442/", + "id": 54442, + "name": "Sunstreak", + "site_detail_url": "https://comicvine.gamespot.com/sunstreak/4005-54442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54467/", + "id": 54467, + "name": "Amergin", + "site_detail_url": "https://comicvine.gamespot.com/amergin/4005-54467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54468/", + "id": 54468, + "name": "Ampharon", + "site_detail_url": "https://comicvine.gamespot.com/ampharon/4005-54468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54469/", + "id": 54469, + "name": "Ampzilla", + "site_detail_url": "https://comicvine.gamespot.com/ampzilla/4005-54469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54489/", + "id": 54489, + "name": "Cain", + "site_detail_url": "https://comicvine.gamespot.com/cain/4005-54489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54490/", + "id": 54490, + "name": "Kraal", + "site_detail_url": "https://comicvine.gamespot.com/kraal/4005-54490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54491/", + "id": 54491, + "name": "Beepie", + "site_detail_url": "https://comicvine.gamespot.com/beepie/4005-54491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54492/", + "id": 54492, + "name": "Lobros", + "site_detail_url": "https://comicvine.gamespot.com/lobros/4005-54492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54494/", + "id": 54494, + "name": "Reptos", + "site_detail_url": "https://comicvine.gamespot.com/reptos/4005-54494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54495/", + "id": 54495, + "name": "Antrons", + "site_detail_url": "https://comicvine.gamespot.com/antrons/4005-54495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54510/", + "id": 54510, + "name": "Android Man", + "site_detail_url": "https://comicvine.gamespot.com/android-man/4005-54510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54511/", + "id": 54511, + "name": "Android X-4", + "site_detail_url": "https://comicvine.gamespot.com/android-x-4/4005-54511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54513/", + "id": 54513, + "name": "Dro'Ge", + "site_detail_url": "https://comicvine.gamespot.com/droge/4005-54513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54514/", + "id": 54514, + "name": "Veranke", + "site_detail_url": "https://comicvine.gamespot.com/veranke/4005-54514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54515/", + "id": 54515, + "name": "Pagon", + "site_detail_url": "https://comicvine.gamespot.com/pagon/4005-54515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54524/", + "id": 54524, + "name": "Angel Face", + "site_detail_url": "https://comicvine.gamespot.com/angel-face/4005-54524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54525/", + "id": 54525, + "name": "Slingshot", + "site_detail_url": "https://comicvine.gamespot.com/slingshot/4005-54525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54526/", + "id": 54526, + "name": "Hellfire", + "site_detail_url": "https://comicvine.gamespot.com/hellfire/4005-54526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54527/", + "id": 54527, + "name": "Druid", + "site_detail_url": "https://comicvine.gamespot.com/druid/4005-54527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54531/", + "id": 54531, + "name": "Ezekiel Stane", + "site_detail_url": "https://comicvine.gamespot.com/ezekiel-stane/4005-54531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54533/", + "id": 54533, + "name": "Angel of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/angel-of-vengeance/4005-54533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54534/", + "id": 54534, + "name": "Ankhi", + "site_detail_url": "https://comicvine.gamespot.com/ankhi/4005-54534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54535/", + "id": 54535, + "name": "Antigone", + "site_detail_url": "https://comicvine.gamespot.com/antigone/4005-54535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54537/", + "id": 54537, + "name": "Anung-Ite", + "site_detail_url": "https://comicvine.gamespot.com/anung-ite/4005-54537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54538/", + "id": 54538, + "name": "Anuxa", + "site_detail_url": "https://comicvine.gamespot.com/anuxa/4005-54538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54539/", + "id": 54539, + "name": "Appala", + "site_detail_url": "https://comicvine.gamespot.com/appala/4005-54539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54544/", + "id": 54544, + "name": "Harrow", + "site_detail_url": "https://comicvine.gamespot.com/harrow/4005-54544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54549/", + "id": 54549, + "name": "Che", + "site_detail_url": "https://comicvine.gamespot.com/che/4005-54549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54555/", + "id": 54555, + "name": "Klara Prast", + "site_detail_url": "https://comicvine.gamespot.com/klara-prast/4005-54555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54556/", + "id": 54556, + "name": "The Spieler", + "site_detail_url": "https://comicvine.gamespot.com/the-spieler/4005-54556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54558/", + "id": 54558, + "name": "Sister Death", + "site_detail_url": "https://comicvine.gamespot.com/sister-death/4005-54558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54559/", + "id": 54559, + "name": "Sister Agony", + "site_detail_url": "https://comicvine.gamespot.com/sister-agony/4005-54559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54560/", + "id": 54560, + "name": "Winston Frost", + "site_detail_url": "https://comicvine.gamespot.com/winston-frost/4005-54560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54561/", + "id": 54561, + "name": "Hazel Frost", + "site_detail_url": "https://comicvine.gamespot.com/hazel-frost/4005-54561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54579/", + "id": 54579, + "name": "Mr. Kendall", + "site_detail_url": "https://comicvine.gamespot.com/mr-kendall/4005-54579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54582/", + "id": 54582, + "name": "The Swell", + "site_detail_url": "https://comicvine.gamespot.com/the-swell/4005-54582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54587/", + "id": 54587, + "name": "El-Ron", + "site_detail_url": "https://comicvine.gamespot.com/el-ron/4005-54587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54631/", + "id": 54631, + "name": "Gretchin", + "site_detail_url": "https://comicvine.gamespot.com/gretchin/4005-54631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54653/", + "id": 54653, + "name": "Kid Twist", + "site_detail_url": "https://comicvine.gamespot.com/kid-twist/4005-54653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54654/", + "id": 54654, + "name": "Forget-Me-Not", + "site_detail_url": "https://comicvine.gamespot.com/forget-me-not/4005-54654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54668/", + "id": 54668, + "name": "Melanie Killgrave", + "site_detail_url": "https://comicvine.gamespot.com/melanie-killgrave/4005-54668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54685/", + "id": 54685, + "name": "Tristan", + "site_detail_url": "https://comicvine.gamespot.com/tristan/4005-54685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54719/", + "id": 54719, + "name": "ED-209", + "site_detail_url": "https://comicvine.gamespot.com/ed-209/4005-54719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54783/", + "id": 54783, + "name": "Mirage", + "site_detail_url": "https://comicvine.gamespot.com/mirage/4005-54783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54787/", + "id": 54787, + "name": "Blue Streak (Swift)", + "site_detail_url": "https://comicvine.gamespot.com/blue-streak-swift/4005-54787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54834/", + "id": 54834, + "name": "Screwball", + "site_detail_url": "https://comicvine.gamespot.com/screwball/4005-54834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54835/", + "id": 54835, + "name": "Bobby Carr", + "site_detail_url": "https://comicvine.gamespot.com/bobby-carr/4005-54835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54836/", + "id": 54836, + "name": "Paperdoll", + "site_detail_url": "https://comicvine.gamespot.com/paperdoll/4005-54836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54837/", + "id": 54837, + "name": "Faiza Hussain", + "site_detail_url": "https://comicvine.gamespot.com/faiza-hussain/4005-54837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54859/", + "id": 54859, + "name": "Elizabeth Zogolowski", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-zogolowski/4005-54859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54860/", + "id": 54860, + "name": "Detective Clark", + "site_detail_url": "https://comicvine.gamespot.com/detective-clark/4005-54860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54862/", + "id": 54862, + "name": "No-Name", + "site_detail_url": "https://comicvine.gamespot.com/no-name/4005-54862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54863/", + "id": 54863, + "name": "Rico", + "site_detail_url": "https://comicvine.gamespot.com/rico/4005-54863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54864/", + "id": 54864, + "name": "Pavel Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/pavel-rasputin/4005-54864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54865/", + "id": 54865, + "name": "Oliver Raven", + "site_detail_url": "https://comicvine.gamespot.com/oliver-raven/4005-54865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54866/", + "id": 54866, + "name": "Becka Munroe", + "site_detail_url": "https://comicvine.gamespot.com/becka-munroe/4005-54866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54889/", + "id": 54889, + "name": "Maria", + "site_detail_url": "https://comicvine.gamespot.com/maria/4005-54889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54890/", + "id": 54890, + "name": "Vlad Tepulus", + "site_detail_url": "https://comicvine.gamespot.com/vlad-tepulus/4005-54890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54891/", + "id": 54891, + "name": "Anton Lupeski", + "site_detail_url": "https://comicvine.gamespot.com/anton-lupeski/4005-54891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54921/", + "id": 54921, + "name": "Detective Steen", + "site_detail_url": "https://comicvine.gamespot.com/detective-steen/4005-54921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54928/", + "id": 54928, + "name": "Lila", + "site_detail_url": "https://comicvine.gamespot.com/lila/4005-54928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54953/", + "id": 54953, + "name": "Jack Holyoak", + "site_detail_url": "https://comicvine.gamespot.com/jack-holyoak/4005-54953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54963/", + "id": 54963, + "name": "Witchbreaker", + "site_detail_url": "https://comicvine.gamespot.com/witchbreaker/4005-54963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-54996/", + "id": 54996, + "name": "Dr. Yao", + "site_detail_url": "https://comicvine.gamespot.com/dr-yao/4005-54996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55000/", + "id": 55000, + "name": "Juma the Black", + "site_detail_url": "https://comicvine.gamespot.com/juma-the-black/4005-55000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55001/", + "id": 55001, + "name": "Black Zarono", + "site_detail_url": "https://comicvine.gamespot.com/black-zarono/4005-55001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55028/", + "id": 55028, + "name": "Ahsoka Tano", + "site_detail_url": "https://comicvine.gamespot.com/ahsoka-tano/4005-55028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55029/", + "id": 55029, + "name": "James Ransom", + "site_detail_url": "https://comicvine.gamespot.com/james-ransom/4005-55029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55056/", + "id": 55056, + "name": "Sara Hingle", + "site_detail_url": "https://comicvine.gamespot.com/sara-hingle/4005-55056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55129/", + "id": 55129, + "name": "Lord of Light", + "site_detail_url": "https://comicvine.gamespot.com/lord-of-light/4005-55129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55133/", + "id": 55133, + "name": "Spider-Man 2211", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2211/4005-55133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55139/", + "id": 55139, + "name": "Tamar-Shar-Khun", + "site_detail_url": "https://comicvine.gamespot.com/tamar-shar-khun/4005-55139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55141/", + "id": 55141, + "name": "Day", + "site_detail_url": "https://comicvine.gamespot.com/day/4005-55141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55243/", + "id": 55243, + "name": "Rickets Johnson", + "site_detail_url": "https://comicvine.gamespot.com/rickets-johnson/4005-55243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55244/", + "id": 55244, + "name": "Siobhan", + "site_detail_url": "https://comicvine.gamespot.com/siobhan/4005-55244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55247/", + "id": 55247, + "name": "Bengala", + "site_detail_url": "https://comicvine.gamespot.com/bengala/4005-55247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55248/", + "id": 55248, + "name": "Snow Raven", + "site_detail_url": "https://comicvine.gamespot.com/snow-raven/4005-55248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55293/", + "id": 55293, + "name": "Stat", + "site_detail_url": "https://comicvine.gamespot.com/stat/4005-55293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55294/", + "id": 55294, + "name": "Visionary", + "site_detail_url": "https://comicvine.gamespot.com/visionary/4005-55294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55295/", + "id": 55295, + "name": "Buff", + "site_detail_url": "https://comicvine.gamespot.com/buff/4005-55295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55297/", + "id": 55297, + "name": "Attractive Lad", + "site_detail_url": "https://comicvine.gamespot.com/attractive-lad/4005-55297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55298/", + "id": 55298, + "name": "Glamour Girl", + "site_detail_url": "https://comicvine.gamespot.com/glamour-girl/4005-55298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55299/", + "id": 55299, + "name": "Snap", + "site_detail_url": "https://comicvine.gamespot.com/snap/4005-55299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55361/", + "id": 55361, + "name": "Prince Domenic", + "site_detail_url": "https://comicvine.gamespot.com/prince-domenic/4005-55361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55362/", + "id": 55362, + "name": "Barnacle", + "site_detail_url": "https://comicvine.gamespot.com/barnacle/4005-55362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55363/", + "id": 55363, + "name": "Marysal", + "site_detail_url": "https://comicvine.gamespot.com/marysal/4005-55363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55364/", + "id": 55364, + "name": "Venger", + "site_detail_url": "https://comicvine.gamespot.com/venger/4005-55364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55369/", + "id": 55369, + "name": "Monkey (Number 92)", + "site_detail_url": "https://comicvine.gamespot.com/monkey-number-92/4005-55369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55371/", + "id": 55371, + "name": "Zardok", + "site_detail_url": "https://comicvine.gamespot.com/zardok/4005-55371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55399/", + "id": 55399, + "name": "Alisande Morales", + "site_detail_url": "https://comicvine.gamespot.com/alisande-morales/4005-55399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55406/", + "id": 55406, + "name": "Longbow", + "site_detail_url": "https://comicvine.gamespot.com/longbow/4005-55406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55409/", + "id": 55409, + "name": "Ranger", + "site_detail_url": "https://comicvine.gamespot.com/ranger/4005-55409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55412/", + "id": 55412, + "name": "Warhawk", + "site_detail_url": "https://comicvine.gamespot.com/warhawk/4005-55412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55416/", + "id": 55416, + "name": "Piston", + "site_detail_url": "https://comicvine.gamespot.com/piston/4005-55416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55417/", + "id": 55417, + "name": "Timebomb", + "site_detail_url": "https://comicvine.gamespot.com/timebomb/4005-55417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55431/", + "id": 55431, + "name": "Powerpax", + "site_detail_url": "https://comicvine.gamespot.com/powerpax/4005-55431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55435/", + "id": 55435, + "name": "Kelda", + "site_detail_url": "https://comicvine.gamespot.com/kelda/4005-55435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55436/", + "id": 55436, + "name": "Red King", + "site_detail_url": "https://comicvine.gamespot.com/red-king/4005-55436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55444/", + "id": 55444, + "name": "Sevante", + "site_detail_url": "https://comicvine.gamespot.com/sevante/4005-55444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55476/", + "id": 55476, + "name": "Bei Bang-Wen", + "site_detail_url": "https://comicvine.gamespot.com/bei-bang-wen/4005-55476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55499/", + "id": 55499, + "name": "Lady Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/lady-bullseye/4005-55499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55554/", + "id": 55554, + "name": "Arath", + "site_detail_url": "https://comicvine.gamespot.com/arath/4005-55554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55555/", + "id": 55555, + "name": "Antoinelle Arcenaux", + "site_detail_url": "https://comicvine.gamespot.com/antoinelle-arcenaux/4005-55555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55556/", + "id": 55556, + "name": "Emery Arcenaux", + "site_detail_url": "https://comicvine.gamespot.com/emery-arcenaux/4005-55556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55557/", + "id": 55557, + "name": "Arisnaub", + "site_detail_url": "https://comicvine.gamespot.com/arisnaub/4005-55557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55616/", + "id": 55616, + "name": "Crazy Eight", + "site_detail_url": "https://comicvine.gamespot.com/crazy-eight/4005-55616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55634/", + "id": 55634, + "name": "Sarah O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/sarah-obrien/4005-55634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55637/", + "id": 55637, + "name": "Flipside", + "site_detail_url": "https://comicvine.gamespot.com/flipside/4005-55637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55649/", + "id": 55649, + "name": "Abigail Whistler", + "site_detail_url": "https://comicvine.gamespot.com/abigail-whistler/4005-55649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55661/", + "id": 55661, + "name": "Sophie Pettit", + "site_detail_url": "https://comicvine.gamespot.com/sophie-pettit/4005-55661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55699/", + "id": 55699, + "name": "Seductra", + "site_detail_url": "https://comicvine.gamespot.com/seductra/4005-55699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55726/", + "id": 55726, + "name": "Axeman Bone", + "site_detail_url": "https://comicvine.gamespot.com/axeman-bone/4005-55726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55733/", + "id": 55733, + "name": "The Bookie", + "site_detail_url": "https://comicvine.gamespot.com/the-bookie/4005-55733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55754/", + "id": 55754, + "name": "Spawn of Charnel", + "site_detail_url": "https://comicvine.gamespot.com/spawn-of-charnel/4005-55754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55771/", + "id": 55771, + "name": "Spider-Man Robot", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-robot/4005-55771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55785/", + "id": 55785, + "name": "El Toro", + "site_detail_url": "https://comicvine.gamespot.com/el-toro/4005-55785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55791/", + "id": 55791, + "name": "Cornell Cottonmouth", + "site_detail_url": "https://comicvine.gamespot.com/cornell-cottonmouth/4005-55791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55798/", + "id": 55798, + "name": "Hexus", + "site_detail_url": "https://comicvine.gamespot.com/hexus/4005-55798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55801/", + "id": 55801, + "name": "Mikel Fury", + "site_detail_url": "https://comicvine.gamespot.com/mikel-fury/4005-55801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55807/", + "id": 55807, + "name": "Curtis Carr", + "site_detail_url": "https://comicvine.gamespot.com/curtis-carr/4005-55807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55823/", + "id": 55823, + "name": "Overdrive", + "site_detail_url": "https://comicvine.gamespot.com/overdrive/4005-55823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55836/", + "id": 55836, + "name": "Cardinal Raker", + "site_detail_url": "https://comicvine.gamespot.com/cardinal-raker/4005-55836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55837/", + "id": 55837, + "name": "George", + "site_detail_url": "https://comicvine.gamespot.com/george/4005-55837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55850/", + "id": 55850, + "name": "Rakkus", + "site_detail_url": "https://comicvine.gamespot.com/rakkus/4005-55850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55854/", + "id": 55854, + "name": "Big Brother", + "site_detail_url": "https://comicvine.gamespot.com/big-brother/4005-55854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55855/", + "id": 55855, + "name": "Blind Ali", + "site_detail_url": "https://comicvine.gamespot.com/blind-ali/4005-55855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55856/", + "id": 55856, + "name": "Miz Tree", + "site_detail_url": "https://comicvine.gamespot.com/miz-tree/4005-55856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55857/", + "id": 55857, + "name": "Oxford Blue", + "site_detail_url": "https://comicvine.gamespot.com/oxford-blue/4005-55857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55858/", + "id": 55858, + "name": "Surrender Monkey", + "site_detail_url": "https://comicvine.gamespot.com/surrender-monkey/4005-55858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55860/", + "id": 55860, + "name": "Wall", + "site_detail_url": "https://comicvine.gamespot.com/wall/4005-55860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55895/", + "id": 55895, + "name": "Black Mariah", + "site_detail_url": "https://comicvine.gamespot.com/black-mariah/4005-55895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55896/", + "id": 55896, + "name": "Lionfang", + "site_detail_url": "https://comicvine.gamespot.com/lionfang/4005-55896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55920/", + "id": 55920, + "name": "Mister Fish", + "site_detail_url": "https://comicvine.gamespot.com/mister-fish/4005-55920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55958/", + "id": 55958, + "name": "Star Sign", + "site_detail_url": "https://comicvine.gamespot.com/star-sign/4005-55958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55959/", + "id": 55959, + "name": "Paydirt", + "site_detail_url": "https://comicvine.gamespot.com/paydirt/4005-55959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55960/", + "id": 55960, + "name": "Magnitude", + "site_detail_url": "https://comicvine.gamespot.com/magnitude/4005-55960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55965/", + "id": 55965, + "name": "Carlton Drake", + "site_detail_url": "https://comicvine.gamespot.com/carlton-drake/4005-55965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55966/", + "id": 55966, + "name": "Crane", + "site_detail_url": "https://comicvine.gamespot.com/crane/4005-55966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55971/", + "id": 55971, + "name": "Sunrise Society Leader", + "site_detail_url": "https://comicvine.gamespot.com/sunrise-society-leader/4005-55971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55974/", + "id": 55974, + "name": "Samantha Sheridan", + "site_detail_url": "https://comicvine.gamespot.com/samantha-sheridan/4005-55974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-55989/", + "id": 55989, + "name": "Flaw", + "site_detail_url": "https://comicvine.gamespot.com/flaw/4005-55989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56015/", + "id": 56015, + "name": "Agent Baker", + "site_detail_url": "https://comicvine.gamespot.com/agent-baker/4005-56015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56026/", + "id": 56026, + "name": "Kerberos", + "site_detail_url": "https://comicvine.gamespot.com/kerberos/4005-56026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56028/", + "id": 56028, + "name": "Criti Noll", + "site_detail_url": "https://comicvine.gamespot.com/criti-noll/4005-56028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56063/", + "id": 56063, + "name": "Jonathan Bryant", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-bryant/4005-56063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56064/", + "id": 56064, + "name": "Molly Young", + "site_detail_url": "https://comicvine.gamespot.com/molly-young/4005-56064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56065/", + "id": 56065, + "name": "Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/onslaught/4005-56065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56072/", + "id": 56072, + "name": "First Fallen", + "site_detail_url": "https://comicvine.gamespot.com/first-fallen/4005-56072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56167/", + "id": 56167, + "name": "Droideka", + "site_detail_url": "https://comicvine.gamespot.com/droideka/4005-56167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56198/", + "id": 56198, + "name": "De'Lila", + "site_detail_url": "https://comicvine.gamespot.com/delila/4005-56198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56201/", + "id": 56201, + "name": "Sarah Purser", + "site_detail_url": "https://comicvine.gamespot.com/sarah-purser/4005-56201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56202/", + "id": 56202, + "name": "Ned Ralston", + "site_detail_url": "https://comicvine.gamespot.com/ned-ralston/4005-56202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56203/", + "id": 56203, + "name": "Dynamite", + "site_detail_url": "https://comicvine.gamespot.com/dynamite/4005-56203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56204/", + "id": 56204, + "name": "Tony Romeo", + "site_detail_url": "https://comicvine.gamespot.com/tony-romeo/4005-56204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56206/", + "id": 56206, + "name": "Logar", + "site_detail_url": "https://comicvine.gamespot.com/logar/4005-56206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56210/", + "id": 56210, + "name": "Ursla", + "site_detail_url": "https://comicvine.gamespot.com/ursla/4005-56210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56211/", + "id": 56211, + "name": "Taramis", + "site_detail_url": "https://comicvine.gamespot.com/taramis/4005-56211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56226/", + "id": 56226, + "name": "Tattoo Artist", + "site_detail_url": "https://comicvine.gamespot.com/tattoo-artist/4005-56226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56253/", + "id": 56253, + "name": "Toby", + "site_detail_url": "https://comicvine.gamespot.com/toby/4005-56253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56255/", + "id": 56255, + "name": "Alfie O'Meagan", + "site_detail_url": "https://comicvine.gamespot.com/alfie-omeagan/4005-56255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56256/", + "id": 56256, + "name": "Ren", + "site_detail_url": "https://comicvine.gamespot.com/ren/4005-56256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56261/", + "id": 56261, + "name": "Fracture", + "site_detail_url": "https://comicvine.gamespot.com/fracture/4005-56261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56263/", + "id": 56263, + "name": "Martok", + "site_detail_url": "https://comicvine.gamespot.com/martok/4005-56263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56266/", + "id": 56266, + "name": "Ioz", + "site_detail_url": "https://comicvine.gamespot.com/ioz/4005-56266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56268/", + "id": 56268, + "name": "King Primus", + "site_detail_url": "https://comicvine.gamespot.com/king-primus/4005-56268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56271/", + "id": 56271, + "name": "Tula", + "site_detail_url": "https://comicvine.gamespot.com/tula/4005-56271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56297/", + "id": 56297, + "name": "Arsenal", + "site_detail_url": "https://comicvine.gamespot.com/arsenal/4005-56297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56298/", + "id": 56298, + "name": "Black Death", + "site_detail_url": "https://comicvine.gamespot.com/black-death/4005-56298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56308/", + "id": 56308, + "name": "Goblin Force", + "site_detail_url": "https://comicvine.gamespot.com/goblin-force/4005-56308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56343/", + "id": 56343, + "name": "Sergeant Johnson", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-johnson/4005-56343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56362/", + "id": 56362, + "name": "Starr the Slayer", + "site_detail_url": "https://comicvine.gamespot.com/starr-the-slayer/4005-56362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56365/", + "id": 56365, + "name": "Zorr", + "site_detail_url": "https://comicvine.gamespot.com/zorr/4005-56365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56370/", + "id": 56370, + "name": "Fer-Porr", + "site_detail_url": "https://comicvine.gamespot.com/fer-porr/4005-56370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56371/", + "id": 56371, + "name": "Morag", + "site_detail_url": "https://comicvine.gamespot.com/morag/4005-56371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56372/", + "id": 56372, + "name": "Sro-Himm", + "site_detail_url": "https://comicvine.gamespot.com/sro-himm/4005-56372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56373/", + "id": 56373, + "name": "Bel-Dann", + "site_detail_url": "https://comicvine.gamespot.com/bel-dann/4005-56373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56380/", + "id": 56380, + "name": "Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/hurricane/4005-56380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56381/", + "id": 56381, + "name": "Brett Sabre", + "site_detail_url": "https://comicvine.gamespot.com/brett-sabre/4005-56381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56382/", + "id": 56382, + "name": "Arizona Girl", + "site_detail_url": "https://comicvine.gamespot.com/arizona-girl/4005-56382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56383/", + "id": 56383, + "name": "Philadelphia Filly", + "site_detail_url": "https://comicvine.gamespot.com/philadelphia-filly/4005-56383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56384/", + "id": 56384, + "name": "Bloth", + "site_detail_url": "https://comicvine.gamespot.com/bloth/4005-56384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56386/", + "id": 56386, + "name": "Zoolie", + "site_detail_url": "https://comicvine.gamespot.com/zoolie/4005-56386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56389/", + "id": 56389, + "name": "Kly'bn", + "site_detail_url": "https://comicvine.gamespot.com/klybn/4005-56389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56390/", + "id": 56390, + "name": "Jerry", + "site_detail_url": "https://comicvine.gamespot.com/jerry/4005-56390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56445/", + "id": 56445, + "name": "Qabiri", + "site_detail_url": "https://comicvine.gamespot.com/qabiri/4005-56445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56465/", + "id": 56465, + "name": "Hardball", + "site_detail_url": "https://comicvine.gamespot.com/hardball/4005-56465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56486/", + "id": 56486, + "name": "Silikong", + "site_detail_url": "https://comicvine.gamespot.com/silikong/4005-56486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56503/", + "id": 56503, + "name": "Warden Randall", + "site_detail_url": "https://comicvine.gamespot.com/warden-randall/4005-56503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56505/", + "id": 56505, + "name": "Dr. Sarah Brawl", + "site_detail_url": "https://comicvine.gamespot.com/dr-sarah-brawl/4005-56505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56510/", + "id": 56510, + "name": "Kingo Sunen", + "site_detail_url": "https://comicvine.gamespot.com/kingo-sunen/4005-56510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56511/", + "id": 56511, + "name": "Pitt'o Nili", + "site_detail_url": "https://comicvine.gamespot.com/pitto-nili/4005-56511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56512/", + "id": 56512, + "name": "Kwai Jun-Fan", + "site_detail_url": "https://comicvine.gamespot.com/kwai-jun-fan/4005-56512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56517/", + "id": 56517, + "name": "Nogor", + "site_detail_url": "https://comicvine.gamespot.com/nogor/4005-56517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56522/", + "id": 56522, + "name": "Miss Sinister", + "site_detail_url": "https://comicvine.gamespot.com/miss-sinister/4005-56522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56525/", + "id": 56525, + "name": "Warren Worthington Jr.", + "site_detail_url": "https://comicvine.gamespot.com/warren-worthington-jr/4005-56525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56534/", + "id": 56534, + "name": "Dr. Anderssen", + "site_detail_url": "https://comicvine.gamespot.com/dr-anderssen/4005-56534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56541/", + "id": 56541, + "name": "Gog", + "site_detail_url": "https://comicvine.gamespot.com/gog/4005-56541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56543/", + "id": 56543, + "name": "Hector Munoz", + "site_detail_url": "https://comicvine.gamespot.com/hector-munoz/4005-56543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56550/", + "id": 56550, + "name": "Sir Benedict", + "site_detail_url": "https://comicvine.gamespot.com/sir-benedict/4005-56550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56563/", + "id": 56563, + "name": "Avatar", + "site_detail_url": "https://comicvine.gamespot.com/avatar/4005-56563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56577/", + "id": 56577, + "name": "Skyppi", + "site_detail_url": "https://comicvine.gamespot.com/skyppi/4005-56577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56614/", + "id": 56614, + "name": "Paris Seville", + "site_detail_url": "https://comicvine.gamespot.com/paris-seville/4005-56614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56615/", + "id": 56615, + "name": "Lourdes Chantel", + "site_detail_url": "https://comicvine.gamespot.com/lourdes-chantel/4005-56615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56630/", + "id": 56630, + "name": "Bartak", + "site_detail_url": "https://comicvine.gamespot.com/bartak/4005-56630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56632/", + "id": 56632, + "name": "Gorth", + "site_detail_url": "https://comicvine.gamespot.com/gorth/4005-56632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56633/", + "id": 56633, + "name": "Granok", + "site_detail_url": "https://comicvine.gamespot.com/granok/4005-56633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56634/", + "id": 56634, + "name": "Hagar the High Judicator", + "site_detail_url": "https://comicvine.gamespot.com/hagar-the-high-judicator/4005-56634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56635/", + "id": 56635, + "name": "Jaketch the Apprentice Executioner", + "site_detail_url": "https://comicvine.gamespot.com/jaketch-the-apprentice-executioner/4005-56635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56636/", + "id": 56636, + "name": "Karant Kiar", + "site_detail_url": "https://comicvine.gamespot.com/karant-kiar/4005-56636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56637/", + "id": 56637, + "name": "Krimonn", + "site_detail_url": "https://comicvine.gamespot.com/krimonn/4005-56637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56638/", + "id": 56638, + "name": "Kylor", + "site_detail_url": "https://comicvine.gamespot.com/kylor/4005-56638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56640/", + "id": 56640, + "name": "Morrat", + "site_detail_url": "https://comicvine.gamespot.com/morrat/4005-56640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56641/", + "id": 56641, + "name": "Mrok", + "site_detail_url": "https://comicvine.gamespot.com/mrok/4005-56641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56642/", + "id": 56642, + "name": "Nenora", + "site_detail_url": "https://comicvine.gamespot.com/nenora/4005-56642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56643/", + "id": 56643, + "name": "Empress R'Klll", + "site_detail_url": "https://comicvine.gamespot.com/empress-rklll/4005-56643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56645/", + "id": 56645, + "name": "Raksor", + "site_detail_url": "https://comicvine.gamespot.com/raksor/4005-56645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56646/", + "id": 56646, + "name": "Zedrao", + "site_detail_url": "https://comicvine.gamespot.com/zedrao/4005-56646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56653/", + "id": 56653, + "name": "Bill Junior", + "site_detail_url": "https://comicvine.gamespot.com/bill-junior/4005-56653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56662/", + "id": 56662, + "name": "Scanner", + "site_detail_url": "https://comicvine.gamespot.com/scanner/4005-56662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56663/", + "id": 56663, + "name": "Trent", + "site_detail_url": "https://comicvine.gamespot.com/trent/4005-56663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56664/", + "id": 56664, + "name": "Raiden", + "site_detail_url": "https://comicvine.gamespot.com/raiden/4005-56664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56666/", + "id": 56666, + "name": "Briggs", + "site_detail_url": "https://comicvine.gamespot.com/briggs/4005-56666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56667/", + "id": 56667, + "name": "Kass", + "site_detail_url": "https://comicvine.gamespot.com/kass/4005-56667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56668/", + "id": 56668, + "name": "The Stalker", + "site_detail_url": "https://comicvine.gamespot.com/the-stalker/4005-56668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56672/", + "id": 56672, + "name": "Sean Knight", + "site_detail_url": "https://comicvine.gamespot.com/sean-knight/4005-56672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56673/", + "id": 56673, + "name": "Sadist", + "site_detail_url": "https://comicvine.gamespot.com/sadist/4005-56673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56675/", + "id": 56675, + "name": "Doghead", + "site_detail_url": "https://comicvine.gamespot.com/doghead/4005-56675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56676/", + "id": 56676, + "name": "Big Brown", + "site_detail_url": "https://comicvine.gamespot.com/big-brown/4005-56676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56678/", + "id": 56678, + "name": "Sherman", + "site_detail_url": "https://comicvine.gamespot.com/sherman/4005-56678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56679/", + "id": 56679, + "name": "Stem Cell", + "site_detail_url": "https://comicvine.gamespot.com/stem-cell/4005-56679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56680/", + "id": 56680, + "name": "Fordham Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/fordham-rhodes/4005-56680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56681/", + "id": 56681, + "name": "F. Bennet Field", + "site_detail_url": "https://comicvine.gamespot.com/f-bennet-field/4005-56681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56682/", + "id": 56682, + "name": "Emil Gregg", + "site_detail_url": "https://comicvine.gamespot.com/emil-gregg/4005-56682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56683/", + "id": 56683, + "name": "Fredd", + "site_detail_url": "https://comicvine.gamespot.com/fredd/4005-56683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56684/", + "id": 56684, + "name": "Wreck-Gar", + "site_detail_url": "https://comicvine.gamespot.com/wreck-gar/4005-56684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56685/", + "id": 56685, + "name": "The Termite", + "site_detail_url": "https://comicvine.gamespot.com/the-termite/4005-56685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56689/", + "id": 56689, + "name": "Dreads", + "site_detail_url": "https://comicvine.gamespot.com/dreads/4005-56689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56690/", + "id": 56690, + "name": "Scar", + "site_detail_url": "https://comicvine.gamespot.com/scar/4005-56690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56691/", + "id": 56691, + "name": "Spinky", + "site_detail_url": "https://comicvine.gamespot.com/spinky/4005-56691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56692/", + "id": 56692, + "name": "Alana", + "site_detail_url": "https://comicvine.gamespot.com/alana/4005-56692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56696/", + "id": 56696, + "name": "Grasp", + "site_detail_url": "https://comicvine.gamespot.com/grasp/4005-56696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56697/", + "id": 56697, + "name": "Sonic", + "site_detail_url": "https://comicvine.gamespot.com/sonic/4005-56697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56700/", + "id": 56700, + "name": "Inazuma", + "site_detail_url": "https://comicvine.gamespot.com/inazuma/4005-56700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56701/", + "id": 56701, + "name": "Kaze", + "site_detail_url": "https://comicvine.gamespot.com/kaze/4005-56701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56702/", + "id": 56702, + "name": "Kaminari", + "site_detail_url": "https://comicvine.gamespot.com/kaminari/4005-56702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56703/", + "id": 56703, + "name": "Firepower", + "site_detail_url": "https://comicvine.gamespot.com/firepower/4005-56703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56704/", + "id": 56704, + "name": "Berserker 7", + "site_detail_url": "https://comicvine.gamespot.com/berserker-7/4005-56704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56705/", + "id": 56705, + "name": "Joyride", + "site_detail_url": "https://comicvine.gamespot.com/joyride/4005-56705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56710/", + "id": 56710, + "name": "Earth-Mover", + "site_detail_url": "https://comicvine.gamespot.com/earth-mover/4005-56710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56711/", + "id": 56711, + "name": "Technovore", + "site_detail_url": "https://comicvine.gamespot.com/technovore/4005-56711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56712/", + "id": 56712, + "name": "Veronica Benning", + "site_detail_url": "https://comicvine.gamespot.com/veronica-benning/4005-56712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56728/", + "id": 56728, + "name": "Devastator", + "site_detail_url": "https://comicvine.gamespot.com/devastator/4005-56728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56729/", + "id": 56729, + "name": "Black JuJu", + "site_detail_url": "https://comicvine.gamespot.com/black-juju/4005-56729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56730/", + "id": 56730, + "name": "The Apparition", + "site_detail_url": "https://comicvine.gamespot.com/the-apparition/4005-56730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56739/", + "id": 56739, + "name": "Slag", + "site_detail_url": "https://comicvine.gamespot.com/slag/4005-56739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56756/", + "id": 56756, + "name": "Zarko the Flying Squid", + "site_detail_url": "https://comicvine.gamespot.com/zarko-the-flying-squid/4005-56756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56757/", + "id": 56757, + "name": "Payback", + "site_detail_url": "https://comicvine.gamespot.com/payback/4005-56757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56758/", + "id": 56758, + "name": "Headtrip", + "site_detail_url": "https://comicvine.gamespot.com/headtrip/4005-56758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56759/", + "id": 56759, + "name": "Battalus", + "site_detail_url": "https://comicvine.gamespot.com/battalus/4005-56759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56760/", + "id": 56760, + "name": "Red Zone", + "site_detail_url": "https://comicvine.gamespot.com/red-zone/4005-56760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56771/", + "id": 56771, + "name": "Lil' Bro", + "site_detail_url": "https://comicvine.gamespot.com/lil-bro/4005-56771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56772/", + "id": 56772, + "name": "Nick Nixon", + "site_detail_url": "https://comicvine.gamespot.com/nick-nixon/4005-56772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56774/", + "id": 56774, + "name": "Vincent Crane", + "site_detail_url": "https://comicvine.gamespot.com/vincent-crane/4005-56774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56775/", + "id": 56775, + "name": "Bill Dawson", + "site_detail_url": "https://comicvine.gamespot.com/bill-dawson/4005-56775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56776/", + "id": 56776, + "name": "Melanie Crane", + "site_detail_url": "https://comicvine.gamespot.com/melanie-crane/4005-56776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56783/", + "id": 56783, + "name": "Samurai Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/samurai-destroyer/4005-56783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56784/", + "id": 56784, + "name": "Ebon Seeker", + "site_detail_url": "https://comicvine.gamespot.com/ebon-seeker/4005-56784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56790/", + "id": 56790, + "name": "Captain Bor'Aqh Sharaq", + "site_detail_url": "https://comicvine.gamespot.com/captain-boraqh-sharaq/4005-56790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56791/", + "id": 56791, + "name": "A", + "site_detail_url": "https://comicvine.gamespot.com/a/4005-56791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56792/", + "id": 56792, + "name": "T", + "site_detail_url": "https://comicvine.gamespot.com/t/4005-56792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56793/", + "id": 56793, + "name": "Spinnerette", + "site_detail_url": "https://comicvine.gamespot.com/spinnerette/4005-56793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56802/", + "id": 56802, + "name": "Julius Akerman", + "site_detail_url": "https://comicvine.gamespot.com/julius-akerman/4005-56802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56803/", + "id": 56803, + "name": "Kemp", + "site_detail_url": "https://comicvine.gamespot.com/kemp/4005-56803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56826/", + "id": 56826, + "name": "Savage Fin", + "site_detail_url": "https://comicvine.gamespot.com/savage-fin/4005-56826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56831/", + "id": 56831, + "name": "Holly-Ann Ember", + "site_detail_url": "https://comicvine.gamespot.com/holly-ann-ember/4005-56831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56834/", + "id": 56834, + "name": "Elianne Turac", + "site_detail_url": "https://comicvine.gamespot.com/elianne-turac/4005-56834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56835/", + "id": 56835, + "name": "Spindrifter", + "site_detail_url": "https://comicvine.gamespot.com/spindrifter/4005-56835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56836/", + "id": 56836, + "name": "Megalith", + "site_detail_url": "https://comicvine.gamespot.com/megalith/4005-56836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56837/", + "id": 56837, + "name": "Quintronic Man", + "site_detail_url": "https://comicvine.gamespot.com/quintronic-man/4005-56837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56843/", + "id": 56843, + "name": "Agen Kolar", + "site_detail_url": "https://comicvine.gamespot.com/agen-kolar/4005-56843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56865/", + "id": 56865, + "name": "Torgo", + "site_detail_url": "https://comicvine.gamespot.com/torgo/4005-56865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56877/", + "id": 56877, + "name": "Sapphire Styx", + "site_detail_url": "https://comicvine.gamespot.com/sapphire-styx/4005-56877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56878/", + "id": 56878, + "name": "Roche", + "site_detail_url": "https://comicvine.gamespot.com/roche/4005-56878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56879/", + "id": 56879, + "name": "Mr. O'Donnell", + "site_detail_url": "https://comicvine.gamespot.com/mr-odonnell/4005-56879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56882/", + "id": 56882, + "name": "Ladykiller", + "site_detail_url": "https://comicvine.gamespot.com/ladykiller/4005-56882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56883/", + "id": 56883, + "name": "Subject X", + "site_detail_url": "https://comicvine.gamespot.com/subject-x/4005-56883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56906/", + "id": 56906, + "name": "Diamond Head", + "site_detail_url": "https://comicvine.gamespot.com/diamond-head/4005-56906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56907/", + "id": 56907, + "name": "Halflife", + "site_detail_url": "https://comicvine.gamespot.com/halflife/4005-56907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56908/", + "id": 56908, + "name": "X'iv", + "site_detail_url": "https://comicvine.gamespot.com/xiv/4005-56908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56909/", + "id": 56909, + "name": "Chrell", + "site_detail_url": "https://comicvine.gamespot.com/chrell/4005-56909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56921/", + "id": 56921, + "name": "Anneka", + "site_detail_url": "https://comicvine.gamespot.com/anneka/4005-56921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56926/", + "id": 56926, + "name": "Man-Brute", + "site_detail_url": "https://comicvine.gamespot.com/man-brute/4005-56926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56928/", + "id": 56928, + "name": "Dragon Of The Moon", + "site_detail_url": "https://comicvine.gamespot.com/dragon-of-the-moon/4005-56928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56938/", + "id": 56938, + "name": "Gun Runner", + "site_detail_url": "https://comicvine.gamespot.com/gun-runner/4005-56938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56940/", + "id": 56940, + "name": "Pazzo", + "site_detail_url": "https://comicvine.gamespot.com/pazzo/4005-56940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56941/", + "id": 56941, + "name": "Truman Marsh", + "site_detail_url": "https://comicvine.gamespot.com/truman-marsh/4005-56941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56967/", + "id": 56967, + "name": "Max Ride", + "site_detail_url": "https://comicvine.gamespot.com/max-ride/4005-56967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56975/", + "id": 56975, + "name": "Noble Kale", + "site_detail_url": "https://comicvine.gamespot.com/noble-kale/4005-56975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56976/", + "id": 56976, + "name": "Mike", + "site_detail_url": "https://comicvine.gamespot.com/mike/4005-56976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56978/", + "id": 56978, + "name": "Khn'nr", + "site_detail_url": "https://comicvine.gamespot.com/khnnr/4005-56978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56979/", + "id": 56979, + "name": "Agent R", + "site_detail_url": "https://comicvine.gamespot.com/agent-r/4005-56979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56980/", + "id": 56980, + "name": "Agent L", + "site_detail_url": "https://comicvine.gamespot.com/agent-l/4005-56980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-56990/", + "id": 56990, + "name": "General Wo", + "site_detail_url": "https://comicvine.gamespot.com/general-wo/4005-56990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57000/", + "id": 57000, + "name": "Bludgeon", + "site_detail_url": "https://comicvine.gamespot.com/bludgeon/4005-57000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57001/", + "id": 57001, + "name": "Heat-Ray", + "site_detail_url": "https://comicvine.gamespot.com/heat-ray/4005-57001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57003/", + "id": 57003, + "name": "Moondancer", + "site_detail_url": "https://comicvine.gamespot.com/moondancer/4005-57003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57004/", + "id": 57004, + "name": "Delphos", + "site_detail_url": "https://comicvine.gamespot.com/delphos/4005-57004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57006/", + "id": 57006, + "name": "Voyager", + "site_detail_url": "https://comicvine.gamespot.com/voyager/4005-57006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57007/", + "id": 57007, + "name": "Solar Wind", + "site_detail_url": "https://comicvine.gamespot.com/solar-wind/4005-57007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57011/", + "id": 57011, + "name": "Akiniko", + "site_detail_url": "https://comicvine.gamespot.com/akiniko/4005-57011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57013/", + "id": 57013, + "name": "Helen Bach", + "site_detail_url": "https://comicvine.gamespot.com/helen-bach/4005-57013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57014/", + "id": 57014, + "name": "Anubia", + "site_detail_url": "https://comicvine.gamespot.com/anubia/4005-57014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57015/", + "id": 57015, + "name": "Doug Powell", + "site_detail_url": "https://comicvine.gamespot.com/doug-powell/4005-57015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57017/", + "id": 57017, + "name": "Mia Flores", + "site_detail_url": "https://comicvine.gamespot.com/mia-flores/4005-57017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57019/", + "id": 57019, + "name": "Q'Wake", + "site_detail_url": "https://comicvine.gamespot.com/qwake/4005-57019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57033/", + "id": 57033, + "name": "Blue Marvel", + "site_detail_url": "https://comicvine.gamespot.com/blue-marvel/4005-57033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57040/", + "id": 57040, + "name": "Ruby Summers", + "site_detail_url": "https://comicvine.gamespot.com/ruby-summers/4005-57040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57054/", + "id": 57054, + "name": "Linqon", + "site_detail_url": "https://comicvine.gamespot.com/linqon/4005-57054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57055/", + "id": 57055, + "name": "Cynosure", + "site_detail_url": "https://comicvine.gamespot.com/cynosure/4005-57055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57056/", + "id": 57056, + "name": "Gorani", + "site_detail_url": "https://comicvine.gamespot.com/gorani/4005-57056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57063/", + "id": 57063, + "name": "Piecemeal", + "site_detail_url": "https://comicvine.gamespot.com/piecemeal/4005-57063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57066/", + "id": 57066, + "name": "Ulysses Archer", + "site_detail_url": "https://comicvine.gamespot.com/ulysses-archer/4005-57066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57067/", + "id": 57067, + "name": "Cassiopea", + "site_detail_url": "https://comicvine.gamespot.com/cassiopea/4005-57067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57068/", + "id": 57068, + "name": "Strange Josie", + "site_detail_url": "https://comicvine.gamespot.com/strange-josie/4005-57068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57073/", + "id": 57073, + "name": "Mary McGrill Archer", + "site_detail_url": "https://comicvine.gamespot.com/mary-mcgrill-archer/4005-57073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57074/", + "id": 57074, + "name": "Taryn O'Connell", + "site_detail_url": "https://comicvine.gamespot.com/taryn-oconnell/4005-57074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57076/", + "id": 57076, + "name": "Perseus", + "site_detail_url": "https://comicvine.gamespot.com/perseus/4005-57076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57077/", + "id": 57077, + "name": "Christian Wagner", + "site_detail_url": "https://comicvine.gamespot.com/christian-wagner/4005-57077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57078/", + "id": 57078, + "name": "Sl'gur't", + "site_detail_url": "https://comicvine.gamespot.com/slgurt/4005-57078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57091/", + "id": 57091, + "name": "Dexter Mungo", + "site_detail_url": "https://comicvine.gamespot.com/dexter-mungo/4005-57091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57099/", + "id": 57099, + "name": "Godstalker", + "site_detail_url": "https://comicvine.gamespot.com/godstalker/4005-57099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57100/", + "id": 57100, + "name": "Chi-Demon", + "site_detail_url": "https://comicvine.gamespot.com/chi-demon/4005-57100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57101/", + "id": 57101, + "name": "Ashley Barton", + "site_detail_url": "https://comicvine.gamespot.com/ashley-barton/4005-57101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57113/", + "id": 57113, + "name": "Anti-Claus", + "site_detail_url": "https://comicvine.gamespot.com/anti-claus/4005-57113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57118/", + "id": 57118, + "name": "Mitch Carson", + "site_detail_url": "https://comicvine.gamespot.com/mitch-carson/4005-57118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57137/", + "id": 57137, + "name": "Stern", + "site_detail_url": "https://comicvine.gamespot.com/stern/4005-57137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57158/", + "id": 57158, + "name": "Iron Maniac", + "site_detail_url": "https://comicvine.gamespot.com/iron-maniac/4005-57158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57172/", + "id": 57172, + "name": "Priest Galan", + "site_detail_url": "https://comicvine.gamespot.com/priest-galan/4005-57172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57173/", + "id": 57173, + "name": "Bloodhawk", + "site_detail_url": "https://comicvine.gamespot.com/bloodhawk/4005-57173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57174/", + "id": 57174, + "name": "Fry'lu", + "site_detail_url": "https://comicvine.gamespot.com/frylu/4005-57174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57175/", + "id": 57175, + "name": "Stinger", + "site_detail_url": "https://comicvine.gamespot.com/stinger/4005-57175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57178/", + "id": 57178, + "name": "Chlorine", + "site_detail_url": "https://comicvine.gamespot.com/chlorine/4005-57178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57199/", + "id": 57199, + "name": "Him who Sleeps", + "site_detail_url": "https://comicvine.gamespot.com/him-who-sleeps/4005-57199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57200/", + "id": 57200, + "name": "Redguard", + "site_detail_url": "https://comicvine.gamespot.com/redguard/4005-57200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57206/", + "id": 57206, + "name": "Hammerhand", + "site_detail_url": "https://comicvine.gamespot.com/hammerhand/4005-57206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57207/", + "id": 57207, + "name": "Heater Delight", + "site_detail_url": "https://comicvine.gamespot.com/heater-delight/4005-57207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57208/", + "id": 57208, + "name": "Highwayman", + "site_detail_url": "https://comicvine.gamespot.com/highwayman/4005-57208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57209/", + "id": 57209, + "name": "Kalen", + "site_detail_url": "https://comicvine.gamespot.com/kalen/4005-57209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57210/", + "id": 57210, + "name": "Kalumai", + "site_detail_url": "https://comicvine.gamespot.com/kalumai/4005-57210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57211/", + "id": 57211, + "name": "Kazantra", + "site_detail_url": "https://comicvine.gamespot.com/kazantra/4005-57211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57212/", + "id": 57212, + "name": "King Cycle", + "site_detail_url": "https://comicvine.gamespot.com/king-cycle/4005-57212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57213/", + "id": 57213, + "name": "Kronin Krask", + "site_detail_url": "https://comicvine.gamespot.com/kronin-krask/4005-57213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57226/", + "id": 57226, + "name": "Ceyote", + "site_detail_url": "https://comicvine.gamespot.com/ceyote/4005-57226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57227/", + "id": 57227, + "name": "Krobaa", + "site_detail_url": "https://comicvine.gamespot.com/krobaa/4005-57227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57238/", + "id": 57238, + "name": "Alexis the Duck", + "site_detail_url": "https://comicvine.gamespot.com/alexis-the-duck/4005-57238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57239/", + "id": 57239, + "name": "Aurelle", + "site_detail_url": "https://comicvine.gamespot.com/aurelle/4005-57239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57240/", + "id": 57240, + "name": "Miriam Birchwood", + "site_detail_url": "https://comicvine.gamespot.com/miriam-birchwood/4005-57240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57241/", + "id": 57241, + "name": "Maya Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/maya-bloodstone/4005-57241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57242/", + "id": 57242, + "name": "Aztek Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/aztek-bloodstone/4005-57242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57243/", + "id": 57243, + "name": "Blowtorch", + "site_detail_url": "https://comicvine.gamespot.com/blowtorch/4005-57243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57244/", + "id": 57244, + "name": "Sloth", + "site_detail_url": "https://comicvine.gamespot.com/sloth/4005-57244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57245/", + "id": 57245, + "name": "Molly Brennan", + "site_detail_url": "https://comicvine.gamespot.com/molly-brennan/4005-57245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57246/", + "id": 57246, + "name": "Nephrus", + "site_detail_url": "https://comicvine.gamespot.com/nephrus/4005-57246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57247/", + "id": 57247, + "name": "C2DT42", + "site_detail_url": "https://comicvine.gamespot.com/c2dt42/4005-57247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57248/", + "id": 57248, + "name": "I The Great", + "site_detail_url": "https://comicvine.gamespot.com/i-the-great/4005-57248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57249/", + "id": 57249, + "name": "Cardiaxe", + "site_detail_url": "https://comicvine.gamespot.com/cardiaxe/4005-57249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57250/", + "id": 57250, + "name": "Melanee Carondelet", + "site_detail_url": "https://comicvine.gamespot.com/melanee-carondelet/4005-57250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57251/", + "id": 57251, + "name": "Dr. Alexi Skarab", + "site_detail_url": "https://comicvine.gamespot.com/dr-alexi-skarab/4005-57251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57252/", + "id": 57252, + "name": "Ron McAllister", + "site_detail_url": "https://comicvine.gamespot.com/ron-mcallister/4005-57252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57253/", + "id": 57253, + "name": "Janice Carr", + "site_detail_url": "https://comicvine.gamespot.com/janice-carr/4005-57253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57254/", + "id": 57254, + "name": "Coyote Cash", + "site_detail_url": "https://comicvine.gamespot.com/coyote-cash/4005-57254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57255/", + "id": 57255, + "name": "Colosso", + "site_detail_url": "https://comicvine.gamespot.com/colosso/4005-57255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57257/", + "id": 57257, + "name": "Counselor in Chief", + "site_detail_url": "https://comicvine.gamespot.com/counselor-in-chief/4005-57257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57258/", + "id": 57258, + "name": "Cyrene", + "site_detail_url": "https://comicvine.gamespot.com/cyrene/4005-57258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57260/", + "id": 57260, + "name": "Kristian Delano", + "site_detail_url": "https://comicvine.gamespot.com/kristian-delano/4005-57260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57261/", + "id": 57261, + "name": "Vaun Lysander", + "site_detail_url": "https://comicvine.gamespot.com/vaun-lysander/4005-57261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57262/", + "id": 57262, + "name": "Martika", + "site_detail_url": "https://comicvine.gamespot.com/martika/4005-57262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57263/", + "id": 57263, + "name": "Ben Payton", + "site_detail_url": "https://comicvine.gamespot.com/ben-payton/4005-57263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57264/", + "id": 57264, + "name": "Valida Payton", + "site_detail_url": "https://comicvine.gamespot.com/valida-payton/4005-57264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57265/", + "id": 57265, + "name": "Phaedra", + "site_detail_url": "https://comicvine.gamespot.com/phaedra/4005-57265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57266/", + "id": 57266, + "name": "John Running Bear", + "site_detail_url": "https://comicvine.gamespot.com/john-running-bear/4005-57266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57267/", + "id": 57267, + "name": "Carter Shaw", + "site_detail_url": "https://comicvine.gamespot.com/carter-shaw/4005-57267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57268/", + "id": 57268, + "name": "Jericho Shaw", + "site_detail_url": "https://comicvine.gamespot.com/jericho-shaw/4005-57268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57271/", + "id": 57271, + "name": "Marguerite D'Alescio", + "site_detail_url": "https://comicvine.gamespot.com/marguerite-dalescio/4005-57271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57272/", + "id": 57272, + "name": "Danette", + "site_detail_url": "https://comicvine.gamespot.com/danette/4005-57272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57273/", + "id": 57273, + "name": "Spear", + "site_detail_url": "https://comicvine.gamespot.com/spear/4005-57273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57274/", + "id": 57274, + "name": "Mangler", + "site_detail_url": "https://comicvine.gamespot.com/mangler/4005-57274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57275/", + "id": 57275, + "name": "Sheila Danning", + "site_detail_url": "https://comicvine.gamespot.com/sheila-danning/4005-57275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57276/", + "id": 57276, + "name": "Genevieve Darceneaux", + "site_detail_url": "https://comicvine.gamespot.com/genevieve-darceneaux/4005-57276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57277/", + "id": 57277, + "name": "Deadeye", + "site_detail_url": "https://comicvine.gamespot.com/deadeye/4005-57277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57278/", + "id": 57278, + "name": "Kymberly Taylor", + "site_detail_url": "https://comicvine.gamespot.com/kymberly-taylor/4005-57278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57279/", + "id": 57279, + "name": "Blastfurnace", + "site_detail_url": "https://comicvine.gamespot.com/blastfurnace/4005-57279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57280/", + "id": 57280, + "name": "Duffy", + "site_detail_url": "https://comicvine.gamespot.com/duffy/4005-57280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57281/", + "id": 57281, + "name": "Dredge", + "site_detail_url": "https://comicvine.gamespot.com/dredge/4005-57281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57282/", + "id": 57282, + "name": "Devil Grip", + "site_detail_url": "https://comicvine.gamespot.com/devil-grip/4005-57282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57283/", + "id": 57283, + "name": "Dude in the Really Rad Armor", + "site_detail_url": "https://comicvine.gamespot.com/dude-in-the-really-rad-armor/4005-57283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57284/", + "id": 57284, + "name": "Gina Dyson", + "site_detail_url": "https://comicvine.gamespot.com/gina-dyson/4005-57284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57286/", + "id": 57286, + "name": "Dara", + "site_detail_url": "https://comicvine.gamespot.com/dara/4005-57286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57287/", + "id": 57287, + "name": "Ann MacIntosh", + "site_detail_url": "https://comicvine.gamespot.com/ann-macintosh/4005-57287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57297/", + "id": 57297, + "name": "Nuwa", + "site_detail_url": "https://comicvine.gamespot.com/nuwa/4005-57297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57299/", + "id": 57299, + "name": "Groonk", + "site_detail_url": "https://comicvine.gamespot.com/groonk/4005-57299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57306/", + "id": 57306, + "name": "Aginar", + "site_detail_url": "https://comicvine.gamespot.com/aginar/4005-57306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57309/", + "id": 57309, + "name": "Cataphrax", + "site_detail_url": "https://comicvine.gamespot.com/cataphrax/4005-57309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57310/", + "id": 57310, + "name": "Ahqlau", + "site_detail_url": "https://comicvine.gamespot.com/ahqlau/4005-57310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57312/", + "id": 57312, + "name": "Hugh Jones", + "site_detail_url": "https://comicvine.gamespot.com/hugh-jones/4005-57312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57314/", + "id": 57314, + "name": "Hideko Takata", + "site_detail_url": "https://comicvine.gamespot.com/hideko-takata/4005-57314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57315/", + "id": 57315, + "name": "Numinus", + "site_detail_url": "https://comicvine.gamespot.com/numinus/4005-57315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57323/", + "id": 57323, + "name": "Kate Neville", + "site_detail_url": "https://comicvine.gamespot.com/kate-neville/4005-57323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57324/", + "id": 57324, + "name": "Margo Damian", + "site_detail_url": "https://comicvine.gamespot.com/margo-damian/4005-57324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57325/", + "id": 57325, + "name": "Wesley Cassady", + "site_detail_url": "https://comicvine.gamespot.com/wesley-cassady/4005-57325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57348/", + "id": 57348, + "name": "Faire de Lain", + "site_detail_url": "https://comicvine.gamespot.com/faire-de-lain/4005-57348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57349/", + "id": 57349, + "name": "Stellung", + "site_detail_url": "https://comicvine.gamespot.com/stellung/4005-57349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57350/", + "id": 57350, + "name": "Vort", + "site_detail_url": "https://comicvine.gamespot.com/vort/4005-57350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57351/", + "id": 57351, + "name": "Urg", + "site_detail_url": "https://comicvine.gamespot.com/urg/4005-57351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57352/", + "id": 57352, + "name": "Fifi", + "site_detail_url": "https://comicvine.gamespot.com/fifi/4005-57352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57353/", + "id": 57353, + "name": "Fooferah", + "site_detail_url": "https://comicvine.gamespot.com/fooferah/4005-57353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57354/", + "id": 57354, + "name": "Galactic Roadrunner", + "site_detail_url": "https://comicvine.gamespot.com/galactic-roadrunner/4005-57354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57355/", + "id": 57355, + "name": "Gale", + "site_detail_url": "https://comicvine.gamespot.com/gale/4005-57355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57356/", + "id": 57356, + "name": "Gantry", + "site_detail_url": "https://comicvine.gamespot.com/gantry/4005-57356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57357/", + "id": 57357, + "name": "Orbit", + "site_detail_url": "https://comicvine.gamespot.com/orbit/4005-57357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57358/", + "id": 57358, + "name": "Satellite", + "site_detail_url": "https://comicvine.gamespot.com/satellite/4005-57358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57359/", + "id": 57359, + "name": "Vacuum", + "site_detail_url": "https://comicvine.gamespot.com/vacuum/4005-57359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57361/", + "id": 57361, + "name": "G.I. Max", + "site_detail_url": "https://comicvine.gamespot.com/gi-max/4005-57361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57362/", + "id": 57362, + "name": "Gingerbread Man", + "site_detail_url": "https://comicvine.gamespot.com/gingerbread-man/4005-57362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57363/", + "id": 57363, + "name": "Gopher", + "site_detail_url": "https://comicvine.gamespot.com/gopher/4005-57363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57365/", + "id": 57365, + "name": "Platinum", + "site_detail_url": "https://comicvine.gamespot.com/platinum/4005-57365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57366/", + "id": 57366, + "name": "Cesium", + "site_detail_url": "https://comicvine.gamespot.com/cesium/4005-57366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57367/", + "id": 57367, + "name": "Neodymium", + "site_detail_url": "https://comicvine.gamespot.com/neodymium/4005-57367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57369/", + "id": 57369, + "name": "Sodium", + "site_detail_url": "https://comicvine.gamespot.com/sodium/4005-57369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57370/", + "id": 57370, + "name": "Elmer Gore", + "site_detail_url": "https://comicvine.gamespot.com/elmer-gore/4005-57370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57371/", + "id": 57371, + "name": "Alex Grimond", + "site_detail_url": "https://comicvine.gamespot.com/alex-grimond/4005-57371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57372/", + "id": 57372, + "name": "Doctor Sax", + "site_detail_url": "https://comicvine.gamespot.com/doctor-sax/4005-57372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57375/", + "id": 57375, + "name": "Hardaway", + "site_detail_url": "https://comicvine.gamespot.com/hardaway/4005-57375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57376/", + "id": 57376, + "name": "Helliana", + "site_detail_url": "https://comicvine.gamespot.com/helliana/4005-57376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57379/", + "id": 57379, + "name": "Kirstin", + "site_detail_url": "https://comicvine.gamespot.com/kirstin/4005-57379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57382/", + "id": 57382, + "name": "Imogen", + "site_detail_url": "https://comicvine.gamespot.com/imogen/4005-57382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57383/", + "id": 57383, + "name": "Toots", + "site_detail_url": "https://comicvine.gamespot.com/toots/4005-57383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57384/", + "id": 57384, + "name": "Sharon Ing", + "site_detail_url": "https://comicvine.gamespot.com/sharon-ing/4005-57384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57385/", + "id": 57385, + "name": "Barry Foxxe", + "site_detail_url": "https://comicvine.gamespot.com/barry-foxxe/4005-57385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57386/", + "id": 57386, + "name": "Muramoto", + "site_detail_url": "https://comicvine.gamespot.com/muramoto/4005-57386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57387/", + "id": 57387, + "name": "Iraina", + "site_detail_url": "https://comicvine.gamespot.com/iraina/4005-57387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57389/", + "id": 57389, + "name": "Iron Mike", + "site_detail_url": "https://comicvine.gamespot.com/iron-mike/4005-57389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57390/", + "id": 57390, + "name": "Juvan", + "site_detail_url": "https://comicvine.gamespot.com/juvan/4005-57390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57391/", + "id": 57391, + "name": "Zon", + "site_detail_url": "https://comicvine.gamespot.com/zon/4005-57391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57396/", + "id": 57396, + "name": "Clive", + "site_detail_url": "https://comicvine.gamespot.com/clive/4005-57396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57405/", + "id": 57405, + "name": "Leather", + "site_detail_url": "https://comicvine.gamespot.com/leather/4005-57405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57406/", + "id": 57406, + "name": "Lace", + "site_detail_url": "https://comicvine.gamespot.com/lace/4005-57406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57407/", + "id": 57407, + "name": "Lady Trident", + "site_detail_url": "https://comicvine.gamespot.com/lady-trident/4005-57407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57408/", + "id": 57408, + "name": "Locomotive Breath", + "site_detail_url": "https://comicvine.gamespot.com/locomotive-breath/4005-57408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57409/", + "id": 57409, + "name": "Jartran Radd", + "site_detail_url": "https://comicvine.gamespot.com/jartran-radd/4005-57409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57410/", + "id": 57410, + "name": "Conquistador", + "site_detail_url": "https://comicvine.gamespot.com/conquistador/4005-57410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57412/", + "id": 57412, + "name": "Kirstin's Mom", + "site_detail_url": "https://comicvine.gamespot.com/kirstins-mom/4005-57412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57414/", + "id": 57414, + "name": "Mikey", + "site_detail_url": "https://comicvine.gamespot.com/mikey/4005-57414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57421/", + "id": 57421, + "name": "Megataur", + "site_detail_url": "https://comicvine.gamespot.com/megataur/4005-57421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57424/", + "id": 57424, + "name": "Millennius", + "site_detail_url": "https://comicvine.gamespot.com/millennius/4005-57424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57425/", + "id": 57425, + "name": "Mischief", + "site_detail_url": "https://comicvine.gamespot.com/mischief/4005-57425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57428/", + "id": 57428, + "name": "Pixie", + "site_detail_url": "https://comicvine.gamespot.com/pixie/4005-57428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57429/", + "id": 57429, + "name": "Missy", + "site_detail_url": "https://comicvine.gamespot.com/missy/4005-57429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57430/", + "id": 57430, + "name": "Mop Man", + "site_detail_url": "https://comicvine.gamespot.com/mop-man/4005-57430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57431/", + "id": 57431, + "name": "Johnny Cool", + "site_detail_url": "https://comicvine.gamespot.com/johnny-cool/4005-57431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57432/", + "id": 57432, + "name": "Supermax", + "site_detail_url": "https://comicvine.gamespot.com/supermax/4005-57432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57433/", + "id": 57433, + "name": "Blacksmith", + "site_detail_url": "https://comicvine.gamespot.com/blacksmith/4005-57433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57434/", + "id": 57434, + "name": "Avona", + "site_detail_url": "https://comicvine.gamespot.com/avona/4005-57434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57436/", + "id": 57436, + "name": "Pierce", + "site_detail_url": "https://comicvine.gamespot.com/pierce/4005-57436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57437/", + "id": 57437, + "name": "Corona", + "site_detail_url": "https://comicvine.gamespot.com/corona/4005-57437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57438/", + "id": 57438, + "name": "Maul", + "site_detail_url": "https://comicvine.gamespot.com/maul/4005-57438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57440/", + "id": 57440, + "name": "Daniel Jackson", + "site_detail_url": "https://comicvine.gamespot.com/daniel-jackson/4005-57440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57441/", + "id": 57441, + "name": "Mud-Thing", + "site_detail_url": "https://comicvine.gamespot.com/mud-thing/4005-57441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57443/", + "id": 57443, + "name": "Carnivore", + "site_detail_url": "https://comicvine.gamespot.com/carnivore/4005-57443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57444/", + "id": 57444, + "name": "Neurotica", + "site_detail_url": "https://comicvine.gamespot.com/neurotica/4005-57444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57445/", + "id": 57445, + "name": "Paragon", + "site_detail_url": "https://comicvine.gamespot.com/paragon/4005-57445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57446/", + "id": 57446, + "name": "Retcon", + "site_detail_url": "https://comicvine.gamespot.com/retcon/4005-57446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57455/", + "id": 57455, + "name": "Atlas", + "site_detail_url": "https://comicvine.gamespot.com/atlas/4005-57455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57487/", + "id": 57487, + "name": "Buck Cowan", + "site_detail_url": "https://comicvine.gamespot.com/buck-cowan/4005-57487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57488/", + "id": 57488, + "name": "Outcast", + "site_detail_url": "https://comicvine.gamespot.com/outcast/4005-57488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57490/", + "id": 57490, + "name": "Scathan the Approver", + "site_detail_url": "https://comicvine.gamespot.com/scathan-the-approver/4005-57490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57495/", + "id": 57495, + "name": "Wasabi No-Ginger", + "site_detail_url": "https://comicvine.gamespot.com/wasabi-no-ginger/4005-57495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57526/", + "id": 57526, + "name": "Oldar", + "site_detail_url": "https://comicvine.gamespot.com/oldar/4005-57526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57571/", + "id": 57571, + "name": "John Steele", + "site_detail_url": "https://comicvine.gamespot.com/john-steele/4005-57571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57587/", + "id": 57587, + "name": "Red Raven (Dania)", + "site_detail_url": "https://comicvine.gamespot.com/red-raven-dania/4005-57587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57588/", + "id": 57588, + "name": "Stu Redman", + "site_detail_url": "https://comicvine.gamespot.com/stu-redman/4005-57588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57589/", + "id": 57589, + "name": "Frannie Goldsmith", + "site_detail_url": "https://comicvine.gamespot.com/frannie-goldsmith/4005-57589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57590/", + "id": 57590, + "name": "Larry Underwood", + "site_detail_url": "https://comicvine.gamespot.com/larry-underwood/4005-57590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57594/", + "id": 57594, + "name": "Artume", + "site_detail_url": "https://comicvine.gamespot.com/artume/4005-57594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57596/", + "id": 57596, + "name": "Salamandra", + "site_detail_url": "https://comicvine.gamespot.com/salamandra/4005-57596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57597/", + "id": 57597, + "name": "Cole", + "site_detail_url": "https://comicvine.gamespot.com/cole/4005-57597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57620/", + "id": 57620, + "name": "Sickle Moon", + "site_detail_url": "https://comicvine.gamespot.com/sickle-moon/4005-57620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57660/", + "id": 57660, + "name": "Medea", + "site_detail_url": "https://comicvine.gamespot.com/medea/4005-57660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57665/", + "id": 57665, + "name": "Gregory Gideon", + "site_detail_url": "https://comicvine.gamespot.com/gregory-gideon/4005-57665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57671/", + "id": 57671, + "name": "Alex", + "site_detail_url": "https://comicvine.gamespot.com/alex/4005-57671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57683/", + "id": 57683, + "name": "K'vvvr", + "site_detail_url": "https://comicvine.gamespot.com/kvvvr/4005-57683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57687/", + "id": 57687, + "name": "Arachnophilia", + "site_detail_url": "https://comicvine.gamespot.com/arachnophilia/4005-57687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57688/", + "id": 57688, + "name": "Non-Stop", + "site_detail_url": "https://comicvine.gamespot.com/non-stop/4005-57688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57689/", + "id": 57689, + "name": "Telemetry", + "site_detail_url": "https://comicvine.gamespot.com/telemetry/4005-57689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57691/", + "id": 57691, + "name": "Marie Danvers", + "site_detail_url": "https://comicvine.gamespot.com/marie-danvers/4005-57691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57692/", + "id": 57692, + "name": "Joseph Danvers Sr.", + "site_detail_url": "https://comicvine.gamespot.com/joseph-danvers-sr/4005-57692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57693/", + "id": 57693, + "name": "Joseph Danvers Jr.", + "site_detail_url": "https://comicvine.gamespot.com/joseph-danvers-jr/4005-57693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57694/", + "id": 57694, + "name": "Starion", + "site_detail_url": "https://comicvine.gamespot.com/starion/4005-57694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57695/", + "id": 57695, + "name": "Ricone", + "site_detail_url": "https://comicvine.gamespot.com/ricone/4005-57695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57704/", + "id": 57704, + "name": "Omaka", + "site_detail_url": "https://comicvine.gamespot.com/omaka/4005-57704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57708/", + "id": 57708, + "name": "Carver", + "site_detail_url": "https://comicvine.gamespot.com/carver/4005-57708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57712/", + "id": 57712, + "name": "Psionics", + "site_detail_url": "https://comicvine.gamespot.com/psionics/4005-57712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57713/", + "id": 57713, + "name": "Natalie X", + "site_detail_url": "https://comicvine.gamespot.com/natalie-x/4005-57713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57714/", + "id": 57714, + "name": "Lightwave", + "site_detail_url": "https://comicvine.gamespot.com/lightwave/4005-57714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57720/", + "id": 57720, + "name": "Powerhouse", + "site_detail_url": "https://comicvine.gamespot.com/powerhouse/4005-57720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57724/", + "id": 57724, + "name": "Dr. Randolph Stein", + "site_detail_url": "https://comicvine.gamespot.com/dr-randolph-stein/4005-57724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57739/", + "id": 57739, + "name": "Malakii", + "site_detail_url": "https://comicvine.gamespot.com/malakii/4005-57739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57752/", + "id": 57752, + "name": "Shymr", + "site_detail_url": "https://comicvine.gamespot.com/shymr/4005-57752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57753/", + "id": 57753, + "name": "Otomo", + "site_detail_url": "https://comicvine.gamespot.com/otomo/4005-57753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57767/", + "id": 57767, + "name": "Wild Thing", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing/4005-57767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57768/", + "id": 57768, + "name": "Bitter Frost", + "site_detail_url": "https://comicvine.gamespot.com/bitter-frost/4005-57768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57787/", + "id": 57787, + "name": "Agent Young", + "site_detail_url": "https://comicvine.gamespot.com/agent-young/4005-57787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57812/", + "id": 57812, + "name": "Alex Ultron", + "site_detail_url": "https://comicvine.gamespot.com/alex-ultron/4005-57812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57863/", + "id": 57863, + "name": "Gerry Drew", + "site_detail_url": "https://comicvine.gamespot.com/gerry-drew/4005-57863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57903/", + "id": 57903, + "name": "Paul Anselm", + "site_detail_url": "https://comicvine.gamespot.com/paul-anselm/4005-57903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57911/", + "id": 57911, + "name": "Aileen Ritter", + "site_detail_url": "https://comicvine.gamespot.com/aileen-ritter/4005-57911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57912/", + "id": 57912, + "name": "Robert Allgood", + "site_detail_url": "https://comicvine.gamespot.com/robert-allgood/4005-57912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57931/", + "id": 57931, + "name": "Otis Banner", + "site_detail_url": "https://comicvine.gamespot.com/otis-banner/4005-57931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57932/", + "id": 57932, + "name": "Charlie Banner", + "site_detail_url": "https://comicvine.gamespot.com/charlie-banner/4005-57932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57933/", + "id": 57933, + "name": "Bobbi-Jo Banner", + "site_detail_url": "https://comicvine.gamespot.com/bobbi-jo-banner/4005-57933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57962/", + "id": 57962, + "name": "The Crimson King", + "site_detail_url": "https://comicvine.gamespot.com/the-crimson-king/4005-57962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57966/", + "id": 57966, + "name": "Rak", + "site_detail_url": "https://comicvine.gamespot.com/rak/4005-57966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57973/", + "id": 57973, + "name": "Billy Bird", + "site_detail_url": "https://comicvine.gamespot.com/billy-bird/4005-57973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57974/", + "id": 57974, + "name": "Guns Gummy", + "site_detail_url": "https://comicvine.gamespot.com/guns-gummy/4005-57974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57975/", + "id": 57975, + "name": "The Ham", + "site_detail_url": "https://comicvine.gamespot.com/the-ham/4005-57975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57976/", + "id": 57976, + "name": "Slaughter Boy", + "site_detail_url": "https://comicvine.gamespot.com/slaughter-boy/4005-57976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57980/", + "id": 57980, + "name": "Psykos", + "site_detail_url": "https://comicvine.gamespot.com/psykos/4005-57980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57982/", + "id": 57982, + "name": "Rigor Mortis", + "site_detail_url": "https://comicvine.gamespot.com/rigor-mortis/4005-57982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57983/", + "id": 57983, + "name": "Griz", + "site_detail_url": "https://comicvine.gamespot.com/griz/4005-57983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57984/", + "id": 57984, + "name": "Wanderer", + "site_detail_url": "https://comicvine.gamespot.com/wanderer/4005-57984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57985/", + "id": 57985, + "name": "Tuatara", + "site_detail_url": "https://comicvine.gamespot.com/tuatara/4005-57985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57987/", + "id": 57987, + "name": "Peace Monger", + "site_detail_url": "https://comicvine.gamespot.com/peace-monger/4005-57987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57989/", + "id": 57989, + "name": "Patchwork", + "site_detail_url": "https://comicvine.gamespot.com/patchwork/4005-57989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57990/", + "id": 57990, + "name": "Soul Man", + "site_detail_url": "https://comicvine.gamespot.com/soul-man/4005-57990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57991/", + "id": 57991, + "name": "Cuda", + "site_detail_url": "https://comicvine.gamespot.com/cuda/4005-57991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57992/", + "id": 57992, + "name": "Culex", + "site_detail_url": "https://comicvine.gamespot.com/culex/4005-57992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57993/", + "id": 57993, + "name": "Terrigene", + "site_detail_url": "https://comicvine.gamespot.com/terrigene/4005-57993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57994/", + "id": 57994, + "name": "U'Sr'pr", + "site_detail_url": "https://comicvine.gamespot.com/usrpr/4005-57994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57995/", + "id": 57995, + "name": "Latonya Jefferson", + "site_detail_url": "https://comicvine.gamespot.com/latonya-jefferson/4005-57995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57997/", + "id": 57997, + "name": "Milk", + "site_detail_url": "https://comicvine.gamespot.com/milk/4005-57997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-57998/", + "id": 57998, + "name": "Cookies", + "site_detail_url": "https://comicvine.gamespot.com/cookies/4005-57998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58001/", + "id": 58001, + "name": "Red Wolf", + "site_detail_url": "https://comicvine.gamespot.com/red-wolf/4005-58001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58006/", + "id": 58006, + "name": "Shriker", + "site_detail_url": "https://comicvine.gamespot.com/shriker/4005-58006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58007/", + "id": 58007, + "name": "Night Terror", + "site_detail_url": "https://comicvine.gamespot.com/night-terror/4005-58007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58009/", + "id": 58009, + "name": "Zahgurim", + "site_detail_url": "https://comicvine.gamespot.com/zahgurim/4005-58009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58012/", + "id": 58012, + "name": "Zey-Rogg", + "site_detail_url": "https://comicvine.gamespot.com/zey-rogg/4005-58012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58020/", + "id": 58020, + "name": "Plokta", + "site_detail_url": "https://comicvine.gamespot.com/plokta/4005-58020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58039/", + "id": 58039, + "name": "Vortex", + "site_detail_url": "https://comicvine.gamespot.com/vortex/4005-58039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58040/", + "id": 58040, + "name": "Dementia", + "site_detail_url": "https://comicvine.gamespot.com/dementia/4005-58040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58041/", + "id": 58041, + "name": "Shard", + "site_detail_url": "https://comicvine.gamespot.com/shard/4005-58041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58042/", + "id": 58042, + "name": "Seth the Immortal", + "site_detail_url": "https://comicvine.gamespot.com/seth-the-immortal/4005-58042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58043/", + "id": 58043, + "name": "Darklove", + "site_detail_url": "https://comicvine.gamespot.com/darklove/4005-58043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58044/", + "id": 58044, + "name": "Infamnia", + "site_detail_url": "https://comicvine.gamespot.com/infamnia/4005-58044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58045/", + "id": 58045, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-58045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58046/", + "id": 58046, + "name": "Scar the Stalker", + "site_detail_url": "https://comicvine.gamespot.com/scar-the-stalker/4005-58046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58047/", + "id": 58047, + "name": "Lisa Dobson", + "site_detail_url": "https://comicvine.gamespot.com/lisa-dobson/4005-58047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58062/", + "id": 58062, + "name": "Anti-Man", + "site_detail_url": "https://comicvine.gamespot.com/anti-man/4005-58062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58067/", + "id": 58067, + "name": "Janissary", + "site_detail_url": "https://comicvine.gamespot.com/janissary/4005-58067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58068/", + "id": 58068, + "name": "A'yin", + "site_detail_url": "https://comicvine.gamespot.com/ayin/4005-58068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58069/", + "id": 58069, + "name": "Everwraith", + "site_detail_url": "https://comicvine.gamespot.com/everwraith/4005-58069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58070/", + "id": 58070, + "name": "Ra'al", + "site_detail_url": "https://comicvine.gamespot.com/raal/4005-58070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58080/", + "id": 58080, + "name": "Old Soldier", + "site_detail_url": "https://comicvine.gamespot.com/old-soldier/4005-58080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58083/", + "id": 58083, + "name": "Hulk Killer", + "site_detail_url": "https://comicvine.gamespot.com/hulk-killer/4005-58083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58084/", + "id": 58084, + "name": "Jakob Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/jakob-eisenhardt/4005-58084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58085/", + "id": 58085, + "name": "Erich Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/erich-eisenhardt/4005-58085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58086/", + "id": 58086, + "name": "Ruth Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/ruth-eisenhardt/4005-58086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58088/", + "id": 58088, + "name": "Wolfen", + "site_detail_url": "https://comicvine.gamespot.com/wolfen/4005-58088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58089/", + "id": 58089, + "name": "Sickle", + "site_detail_url": "https://comicvine.gamespot.com/sickle/4005-58089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58090/", + "id": 58090, + "name": "Deluge", + "site_detail_url": "https://comicvine.gamespot.com/deluge/4005-58090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58091/", + "id": 58091, + "name": "Thunderboot", + "site_detail_url": "https://comicvine.gamespot.com/thunderboot/4005-58091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58092/", + "id": 58092, + "name": "Hammerhead", + "site_detail_url": "https://comicvine.gamespot.com/hammerhead/4005-58092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58093/", + "id": 58093, + "name": "Pile-Driver", + "site_detail_url": "https://comicvine.gamespot.com/pile-driver/4005-58093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58107/", + "id": 58107, + "name": "Four", + "site_detail_url": "https://comicvine.gamespot.com/four/4005-58107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58108/", + "id": 58108, + "name": "Seven", + "site_detail_url": "https://comicvine.gamespot.com/seven/4005-58108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58109/", + "id": 58109, + "name": "Twelve", + "site_detail_url": "https://comicvine.gamespot.com/twelve/4005-58109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58110/", + "id": 58110, + "name": "Katar of the Bloody Blades", + "site_detail_url": "https://comicvine.gamespot.com/katar-of-the-bloody-blades/4005-58110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58111/", + "id": 58111, + "name": "Lasher", + "site_detail_url": "https://comicvine.gamespot.com/lasher/4005-58111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58112/", + "id": 58112, + "name": "Horst Eisele", + "site_detail_url": "https://comicvine.gamespot.com/horst-eisele/4005-58112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58113/", + "id": 58113, + "name": "Khatylis", + "site_detail_url": "https://comicvine.gamespot.com/khatylis/4005-58113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58114/", + "id": 58114, + "name": "Kra", + "site_detail_url": "https://comicvine.gamespot.com/kra/4005-58114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58115/", + "id": 58115, + "name": "Verminus Rex", + "site_detail_url": "https://comicvine.gamespot.com/verminus-rex/4005-58115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58123/", + "id": 58123, + "name": "Ender Wiggin", + "site_detail_url": "https://comicvine.gamespot.com/ender-wiggin/4005-58123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58143/", + "id": 58143, + "name": "Modulus", + "site_detail_url": "https://comicvine.gamespot.com/modulus/4005-58143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58148/", + "id": 58148, + "name": "Azunbulxibar", + "site_detail_url": "https://comicvine.gamespot.com/azunbulxibar/4005-58148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58149/", + "id": 58149, + "name": "Azimuth", + "site_detail_url": "https://comicvine.gamespot.com/azimuth/4005-58149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58150/", + "id": 58150, + "name": "Avandalia", + "site_detail_url": "https://comicvine.gamespot.com/avandalia/4005-58150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58162/", + "id": 58162, + "name": "Komodo", + "site_detail_url": "https://comicvine.gamespot.com/komodo/4005-58162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58163/", + "id": 58163, + "name": "Spinneret", + "site_detail_url": "https://comicvine.gamespot.com/spinneret/4005-58163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58164/", + "id": 58164, + "name": "Flying Fox", + "site_detail_url": "https://comicvine.gamespot.com/flying-fox/4005-58164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58165/", + "id": 58165, + "name": "Buzzard", + "site_detail_url": "https://comicvine.gamespot.com/buzzard/4005-58165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58166/", + "id": 58166, + "name": "Crushtacean", + "site_detail_url": "https://comicvine.gamespot.com/crushtacean/4005-58166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58167/", + "id": 58167, + "name": "Butcher T. Washington", + "site_detail_url": "https://comicvine.gamespot.com/butcher-t-washington/4005-58167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58168/", + "id": 58168, + "name": "Gort", + "site_detail_url": "https://comicvine.gamespot.com/gort/4005-58168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58169/", + "id": 58169, + "name": "Impact", + "site_detail_url": "https://comicvine.gamespot.com/impact/4005-58169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58170/", + "id": 58170, + "name": "Brightstorm", + "site_detail_url": "https://comicvine.gamespot.com/brightstorm/4005-58170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58171/", + "id": 58171, + "name": "Massdriver", + "site_detail_url": "https://comicvine.gamespot.com/massdriver/4005-58171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58172/", + "id": 58172, + "name": "Castlemere", + "site_detail_url": "https://comicvine.gamespot.com/castlemere/4005-58172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58207/", + "id": 58207, + "name": "Mary LeBow", + "site_detail_url": "https://comicvine.gamespot.com/mary-lebow/4005-58207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58221/", + "id": 58221, + "name": "HYDRA Prime 001", + "site_detail_url": "https://comicvine.gamespot.com/hydra-prime-001/4005-58221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58225/", + "id": 58225, + "name": "Major Fahar", + "site_detail_url": "https://comicvine.gamespot.com/major-fahar/4005-58225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58226/", + "id": 58226, + "name": "Tol-Nok", + "site_detail_url": "https://comicvine.gamespot.com/tol-nok/4005-58226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58228/", + "id": 58228, + "name": "Metabo", + "site_detail_url": "https://comicvine.gamespot.com/metabo/4005-58228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58229/", + "id": 58229, + "name": "Mali", + "site_detail_url": "https://comicvine.gamespot.com/mali/4005-58229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58230/", + "id": 58230, + "name": "Transfaser", + "site_detail_url": "https://comicvine.gamespot.com/transfaser/4005-58230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58231/", + "id": 58231, + "name": "Leecher", + "site_detail_url": "https://comicvine.gamespot.com/leecher/4005-58231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58234/", + "id": 58234, + "name": "Blistik", + "site_detail_url": "https://comicvine.gamespot.com/blistik/4005-58234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58235/", + "id": 58235, + "name": "Le Concierge", + "site_detail_url": "https://comicvine.gamespot.com/le-concierge/4005-58235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58236/", + "id": 58236, + "name": "Condor", + "site_detail_url": "https://comicvine.gamespot.com/condor/4005-58236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58246/", + "id": 58246, + "name": "Gunship", + "site_detail_url": "https://comicvine.gamespot.com/gunship/4005-58246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58247/", + "id": 58247, + "name": "Goldeneye", + "site_detail_url": "https://comicvine.gamespot.com/goldeneye/4005-58247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58248/", + "id": 58248, + "name": "One-Eye", + "site_detail_url": "https://comicvine.gamespot.com/one-eye/4005-58248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58249/", + "id": 58249, + "name": "Gort", + "site_detail_url": "https://comicvine.gamespot.com/gort/4005-58249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58250/", + "id": 58250, + "name": "God of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/god-of-the-dead/4005-58250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58251/", + "id": 58251, + "name": "Blindside", + "site_detail_url": "https://comicvine.gamespot.com/blindside/4005-58251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58318/", + "id": 58318, + "name": "Fanto", + "site_detail_url": "https://comicvine.gamespot.com/fanto/4005-58318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58319/", + "id": 58319, + "name": "Ruger", + "site_detail_url": "https://comicvine.gamespot.com/ruger/4005-58319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58320/", + "id": 58320, + "name": "Kryad", + "site_detail_url": "https://comicvine.gamespot.com/kryad/4005-58320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58321/", + "id": 58321, + "name": "Colabrun", + "site_detail_url": "https://comicvine.gamespot.com/colabrun/4005-58321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58322/", + "id": 58322, + "name": "Janus", + "site_detail_url": "https://comicvine.gamespot.com/janus/4005-58322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58323/", + "id": 58323, + "name": "Jude", + "site_detail_url": "https://comicvine.gamespot.com/jude/4005-58323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58324/", + "id": 58324, + "name": "Shaara", + "site_detail_url": "https://comicvine.gamespot.com/shaara/4005-58324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58325/", + "id": 58325, + "name": "Queen Korra", + "site_detail_url": "https://comicvine.gamespot.com/queen-korra/4005-58325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58327/", + "id": 58327, + "name": "Swami Rihva", + "site_detail_url": "https://comicvine.gamespot.com/swami-rihva/4005-58327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58328/", + "id": 58328, + "name": "Stonecutter", + "site_detail_url": "https://comicvine.gamespot.com/stonecutter/4005-58328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58331/", + "id": 58331, + "name": "Officer Reilly", + "site_detail_url": "https://comicvine.gamespot.com/officer-reilly/4005-58331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58345/", + "id": 58345, + "name": "Lord Gaea", + "site_detail_url": "https://comicvine.gamespot.com/lord-gaea/4005-58345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58346/", + "id": 58346, + "name": "Lazarus", + "site_detail_url": "https://comicvine.gamespot.com/lazarus/4005-58346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58349/", + "id": 58349, + "name": "Mister Jyn", + "site_detail_url": "https://comicvine.gamespot.com/mister-jyn/4005-58349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58380/", + "id": 58380, + "name": "Naomi Ward", + "site_detail_url": "https://comicvine.gamespot.com/naomi-ward/4005-58380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58389/", + "id": 58389, + "name": "Tara", + "site_detail_url": "https://comicvine.gamespot.com/tara/4005-58389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58390/", + "id": 58390, + "name": "Nima", + "site_detail_url": "https://comicvine.gamespot.com/nima/4005-58390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58407/", + "id": 58407, + "name": "Megasaur", + "site_detail_url": "https://comicvine.gamespot.com/megasaur/4005-58407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58411/", + "id": 58411, + "name": "Megawatt", + "site_detail_url": "https://comicvine.gamespot.com/megawatt/4005-58411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58416/", + "id": 58416, + "name": "Headsman", + "site_detail_url": "https://comicvine.gamespot.com/headsman/4005-58416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58421/", + "id": 58421, + "name": "Blimp", + "site_detail_url": "https://comicvine.gamespot.com/blimp/4005-58421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58433/", + "id": 58433, + "name": "Marauder", + "site_detail_url": "https://comicvine.gamespot.com/marauder/4005-58433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58435/", + "id": 58435, + "name": "Mr. Termineus", + "site_detail_url": "https://comicvine.gamespot.com/mr-termineus/4005-58435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58485/", + "id": 58485, + "name": "Hulk Jr.", + "site_detail_url": "https://comicvine.gamespot.com/hulk-jr/4005-58485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58494/", + "id": 58494, + "name": "Godkiller", + "site_detail_url": "https://comicvine.gamespot.com/godkiller/4005-58494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58501/", + "id": 58501, + "name": "Magni Thorson", + "site_detail_url": "https://comicvine.gamespot.com/magni-thorson/4005-58501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58502/", + "id": 58502, + "name": "Rapunzel", + "site_detail_url": "https://comicvine.gamespot.com/rapunzel/4005-58502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58503/", + "id": 58503, + "name": "Black Fox", + "site_detail_url": "https://comicvine.gamespot.com/black-fox/4005-58503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58505/", + "id": 58505, + "name": "Vulcan", + "site_detail_url": "https://comicvine.gamespot.com/vulcan/4005-58505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58506/", + "id": 58506, + "name": "Morph", + "site_detail_url": "https://comicvine.gamespot.com/morph/4005-58506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58507/", + "id": 58507, + "name": "Crimson Cavalier", + "site_detail_url": "https://comicvine.gamespot.com/crimson-cavalier/4005-58507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58508/", + "id": 58508, + "name": "Oonagh Mullarkey", + "site_detail_url": "https://comicvine.gamespot.com/oonagh-mullarkey/4005-58508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58509/", + "id": 58509, + "name": "Sapphire", + "site_detail_url": "https://comicvine.gamespot.com/sapphire/4005-58509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58510/", + "id": 58510, + "name": "Braxus", + "site_detail_url": "https://comicvine.gamespot.com/braxus/4005-58510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58511/", + "id": 58511, + "name": "Xena", + "site_detail_url": "https://comicvine.gamespot.com/xena/4005-58511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58512/", + "id": 58512, + "name": "Captain Kerosene", + "site_detail_url": "https://comicvine.gamespot.com/captain-kerosene/4005-58512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58514/", + "id": 58514, + "name": "Terri O'Doughan", + "site_detail_url": "https://comicvine.gamespot.com/terri-odoughan/4005-58514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58515/", + "id": 58515, + "name": "Lissette Orlova", + "site_detail_url": "https://comicvine.gamespot.com/lissette-orlova/4005-58515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58524/", + "id": 58524, + "name": "Morning Star", + "site_detail_url": "https://comicvine.gamespot.com/morning-star/4005-58524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58527/", + "id": 58527, + "name": "Harold Gaynor", + "site_detail_url": "https://comicvine.gamespot.com/harold-gaynor/4005-58527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58528/", + "id": 58528, + "name": "Dominga Salvador", + "site_detail_url": "https://comicvine.gamespot.com/dominga-salvador/4005-58528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58537/", + "id": 58537, + "name": "The Rose (Hayes)", + "site_detail_url": "https://comicvine.gamespot.com/the-rose-hayes/4005-58537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58538/", + "id": 58538, + "name": "Patience Drew", + "site_detail_url": "https://comicvine.gamespot.com/patience-drew/4005-58538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58541/", + "id": 58541, + "name": "Agent Deems", + "site_detail_url": "https://comicvine.gamespot.com/agent-deems/4005-58541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58543/", + "id": 58543, + "name": "Daydreamer", + "site_detail_url": "https://comicvine.gamespot.com/daydreamer/4005-58543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58547/", + "id": 58547, + "name": "Cipher", + "site_detail_url": "https://comicvine.gamespot.com/cipher/4005-58547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58554/", + "id": 58554, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4005-58554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58586/", + "id": 58586, + "name": "Blaze", + "site_detail_url": "https://comicvine.gamespot.com/blaze/4005-58586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58595/", + "id": 58595, + "name": "J. Jonah Jameson, Sr.", + "site_detail_url": "https://comicvine.gamespot.com/j-jonah-jameson-sr/4005-58595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58602/", + "id": 58602, + "name": "Salla Ktor", + "site_detail_url": "https://comicvine.gamespot.com/salla-ktor/4005-58602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58614/", + "id": 58614, + "name": "H'Kurrek", + "site_detail_url": "https://comicvine.gamespot.com/hkurrek/4005-58614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58615/", + "id": 58615, + "name": "Ard'Ran", + "site_detail_url": "https://comicvine.gamespot.com/ardran/4005-58615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58623/", + "id": 58623, + "name": "Malik Tarcel", + "site_detail_url": "https://comicvine.gamespot.com/malik-tarcel/4005-58623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58625/", + "id": 58625, + "name": "Irani Rael", + "site_detail_url": "https://comicvine.gamespot.com/irani-rael/4005-58625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58626/", + "id": 58626, + "name": "Qubit", + "site_detail_url": "https://comicvine.gamespot.com/qubit/4005-58626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58627/", + "id": 58627, + "name": "Fraktur", + "site_detail_url": "https://comicvine.gamespot.com/fraktur/4005-58627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58628/", + "id": 58628, + "name": "Morrow", + "site_detail_url": "https://comicvine.gamespot.com/morrow/4005-58628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58631/", + "id": 58631, + "name": "Darqon Par", + "site_detail_url": "https://comicvine.gamespot.com/darqon-par/4005-58631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58648/", + "id": 58648, + "name": "Sickle", + "site_detail_url": "https://comicvine.gamespot.com/sickle/4005-58648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58649/", + "id": 58649, + "name": "Hammer", + "site_detail_url": "https://comicvine.gamespot.com/hammer/4005-58649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58650/", + "id": 58650, + "name": "Isabel Ferguson", + "site_detail_url": "https://comicvine.gamespot.com/isabel-ferguson/4005-58650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58651/", + "id": 58651, + "name": "Ivan Pushkin", + "site_detail_url": "https://comicvine.gamespot.com/ivan-pushkin/4005-58651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58682/", + "id": 58682, + "name": "Ghazi Rashid", + "site_detail_url": "https://comicvine.gamespot.com/ghazi-rashid/4005-58682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58684/", + "id": 58684, + "name": "Steelheart", + "site_detail_url": "https://comicvine.gamespot.com/steelheart/4005-58684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58709/", + "id": 58709, + "name": "Unum", + "site_detail_url": "https://comicvine.gamespot.com/unum/4005-58709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58710/", + "id": 58710, + "name": "Enmity", + "site_detail_url": "https://comicvine.gamespot.com/enmity/4005-58710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58717/", + "id": 58717, + "name": "Black Dragon", + "site_detail_url": "https://comicvine.gamespot.com/black-dragon/4005-58717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58718/", + "id": 58718, + "name": "Rock of the Buddha", + "site_detail_url": "https://comicvine.gamespot.com/rock-of-the-buddha/4005-58718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58719/", + "id": 58719, + "name": "Fist of Fire", + "site_detail_url": "https://comicvine.gamespot.com/fist-of-fire/4005-58719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58720/", + "id": 58720, + "name": "Storm Sword", + "site_detail_url": "https://comicvine.gamespot.com/storm-sword/4005-58720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58721/", + "id": 58721, + "name": "Soulstriker", + "site_detail_url": "https://comicvine.gamespot.com/soulstriker/4005-58721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58722/", + "id": 58722, + "name": "Master Po", + "site_detail_url": "https://comicvine.gamespot.com/master-po/4005-58722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58723/", + "id": 58723, + "name": "Saint Sinner", + "site_detail_url": "https://comicvine.gamespot.com/saint-sinner/4005-58723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58731/", + "id": 58731, + "name": "Norah Winters", + "site_detail_url": "https://comicvine.gamespot.com/norah-winters/4005-58731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58812/", + "id": 58812, + "name": "Norman Osborn", + "site_detail_url": "https://comicvine.gamespot.com/norman-osborn/4005-58812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58826/", + "id": 58826, + "name": "Time Traveler", + "site_detail_url": "https://comicvine.gamespot.com/time-traveler/4005-58826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58853/", + "id": 58853, + "name": "Hope Summers", + "site_detail_url": "https://comicvine.gamespot.com/hope-summers/4005-58853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58854/", + "id": 58854, + "name": "Deathlok-Class Security Unit", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-class-security-unit/4005-58854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58883/", + "id": 58883, + "name": "Captain Glory", + "site_detail_url": "https://comicvine.gamespot.com/captain-glory/4005-58883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58884/", + "id": 58884, + "name": "Meree", + "site_detail_url": "https://comicvine.gamespot.com/meree/4005-58884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58925/", + "id": 58925, + "name": "Simon Trask", + "site_detail_url": "https://comicvine.gamespot.com/simon-trask/4005-58925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58928/", + "id": 58928, + "name": "Ka'ardum", + "site_detail_url": "https://comicvine.gamespot.com/kaardum/4005-58928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58940/", + "id": 58940, + "name": "Replicoid", + "site_detail_url": "https://comicvine.gamespot.com/replicoid/4005-58940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58943/", + "id": 58943, + "name": "Nebulos", + "site_detail_url": "https://comicvine.gamespot.com/nebulos/4005-58943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58954/", + "id": 58954, + "name": "Adam K'ad-Mon", + "site_detail_url": "https://comicvine.gamespot.com/adam-kad-mon/4005-58954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58955/", + "id": 58955, + "name": "Tangerine", + "site_detail_url": "https://comicvine.gamespot.com/tangerine/4005-58955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58997/", + "id": 58997, + "name": "Shuri", + "site_detail_url": "https://comicvine.gamespot.com/shuri/4005-58997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-58998/", + "id": 58998, + "name": "Mister E", + "site_detail_url": "https://comicvine.gamespot.com/mister-e/4005-58998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59002/", + "id": 59002, + "name": "Commodore Planet", + "site_detail_url": "https://comicvine.gamespot.com/commodore-planet/4005-59002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59003/", + "id": 59003, + "name": "Darrel Daniel", + "site_detail_url": "https://comicvine.gamespot.com/darrel-daniel/4005-59003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59004/", + "id": 59004, + "name": "Doggerel", + "site_detail_url": "https://comicvine.gamespot.com/doggerel/4005-59004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59005/", + "id": 59005, + "name": "Fangor", + "site_detail_url": "https://comicvine.gamespot.com/fangor/4005-59005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59006/", + "id": 59006, + "name": "Fival Fuvnik", + "site_detail_url": "https://comicvine.gamespot.com/fival-fuvnik/4005-59006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59007/", + "id": 59007, + "name": "Garvey", + "site_detail_url": "https://comicvine.gamespot.com/garvey/4005-59007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59008/", + "id": 59008, + "name": "Jesus Ramos", + "site_detail_url": "https://comicvine.gamespot.com/jesus-ramos/4005-59008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59009/", + "id": 59009, + "name": "Pablo Enrile", + "site_detail_url": "https://comicvine.gamespot.com/pablo-enrile/4005-59009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59010/", + "id": 59010, + "name": "Prince Charming", + "site_detail_url": "https://comicvine.gamespot.com/prince-charming/4005-59010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59011/", + "id": 59011, + "name": "Ramone Santos", + "site_detail_url": "https://comicvine.gamespot.com/ramone-santos/4005-59011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59012/", + "id": 59012, + "name": "Roberto Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/roberto-rodriguez/4005-59012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59013/", + "id": 59013, + "name": "Zoe Daniel", + "site_detail_url": "https://comicvine.gamespot.com/zoe-daniel/4005-59013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59014/", + "id": 59014, + "name": "Fabrikant", + "site_detail_url": "https://comicvine.gamespot.com/fabrikant/4005-59014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59015/", + "id": 59015, + "name": "Felicity", + "site_detail_url": "https://comicvine.gamespot.com/felicity/4005-59015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59016/", + "id": 59016, + "name": "Fetish", + "site_detail_url": "https://comicvine.gamespot.com/fetish/4005-59016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59017/", + "id": 59017, + "name": "Flugron", + "site_detail_url": "https://comicvine.gamespot.com/flugron/4005-59017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59023/", + "id": 59023, + "name": "Garwood", + "site_detail_url": "https://comicvine.gamespot.com/garwood/4005-59023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59024/", + "id": 59024, + "name": "Gary Cody", + "site_detail_url": "https://comicvine.gamespot.com/gary-cody/4005-59024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59029/", + "id": 59029, + "name": "Ginny Mahoney", + "site_detail_url": "https://comicvine.gamespot.com/ginny-mahoney/4005-59029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59030/", + "id": 59030, + "name": "Godfrey Calthrop", + "site_detail_url": "https://comicvine.gamespot.com/godfrey-calthrop/4005-59030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59031/", + "id": 59031, + "name": "Gordon Castle", + "site_detail_url": "https://comicvine.gamespot.com/gordon-castle/4005-59031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59033/", + "id": 59033, + "name": "Old Sam", + "site_detail_url": "https://comicvine.gamespot.com/old-sam/4005-59033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59034/", + "id": 59034, + "name": "Golden Woman", + "site_detail_url": "https://comicvine.gamespot.com/golden-woman/4005-59034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59035/", + "id": 59035, + "name": "Gtt-Chow", + "site_detail_url": "https://comicvine.gamespot.com/gtt-chow/4005-59035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59036/", + "id": 59036, + "name": "Hazmat", + "site_detail_url": "https://comicvine.gamespot.com/hazmat/4005-59036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59038/", + "id": 59038, + "name": "Heather Sante", + "site_detail_url": "https://comicvine.gamespot.com/heather-sante/4005-59038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59039/", + "id": 59039, + "name": "Ubiquitor", + "site_detail_url": "https://comicvine.gamespot.com/ubiquitor/4005-59039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59040/", + "id": 59040, + "name": "Highwayman", + "site_detail_url": "https://comicvine.gamespot.com/highwayman/4005-59040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59041/", + "id": 59041, + "name": "Cyburai", + "site_detail_url": "https://comicvine.gamespot.com/cyburai/4005-59041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59065/", + "id": 59065, + "name": "Salamander K'ruel", + "site_detail_url": "https://comicvine.gamespot.com/salamander-kruel/4005-59065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59099/", + "id": 59099, + "name": "Icegirl", + "site_detail_url": "https://comicvine.gamespot.com/icegirl/4005-59099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59100/", + "id": 59100, + "name": "Almighty Dollar", + "site_detail_url": "https://comicvine.gamespot.com/almighty-dollar/4005-59100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59102/", + "id": 59102, + "name": "Jack Lang", + "site_detail_url": "https://comicvine.gamespot.com/jack-lang/4005-59102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59103/", + "id": 59103, + "name": "Jack White", + "site_detail_url": "https://comicvine.gamespot.com/jack-white/4005-59103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59105/", + "id": 59105, + "name": "Blue Celestial", + "site_detail_url": "https://comicvine.gamespot.com/blue-celestial/4005-59105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59116/", + "id": 59116, + "name": "Jeannie O'Connell", + "site_detail_url": "https://comicvine.gamespot.com/jeannie-oconnell/4005-59116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59117/", + "id": 59117, + "name": "Jeffrey Piper", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-piper/4005-59117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59119/", + "id": 59119, + "name": "Jennifer Nyles", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-nyles/4005-59119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59120/", + "id": 59120, + "name": "Jeong Lee", + "site_detail_url": "https://comicvine.gamespot.com/jeong-lee/4005-59120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59121/", + "id": 59121, + "name": "Little John Johns", + "site_detail_url": "https://comicvine.gamespot.com/little-john-johns/4005-59121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59123/", + "id": 59123, + "name": "Sky-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/sky-wolf/4005-59123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59126/", + "id": 59126, + "name": "Masked Rose", + "site_detail_url": "https://comicvine.gamespot.com/masked-rose/4005-59126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59127/", + "id": 59127, + "name": "Steve Coffin", + "site_detail_url": "https://comicvine.gamespot.com/steve-coffin/4005-59127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59154/", + "id": 59154, + "name": "Beelzeboul", + "site_detail_url": "https://comicvine.gamespot.com/beelzeboul/4005-59154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59156/", + "id": 59156, + "name": "Zhang Chin", + "site_detail_url": "https://comicvine.gamespot.com/zhang-chin/4005-59156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59160/", + "id": 59160, + "name": "Biogeneral", + "site_detail_url": "https://comicvine.gamespot.com/biogeneral/4005-59160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59168/", + "id": 59168, + "name": "Debbie Green", + "site_detail_url": "https://comicvine.gamespot.com/debbie-green/4005-59168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59169/", + "id": 59169, + "name": "Daystar", + "site_detail_url": "https://comicvine.gamespot.com/daystar/4005-59169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59172/", + "id": 59172, + "name": "The Marquis of Death", + "site_detail_url": "https://comicvine.gamespot.com/the-marquis-of-death/4005-59172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59175/", + "id": 59175, + "name": "Janice Cord", + "site_detail_url": "https://comicvine.gamespot.com/janice-cord/4005-59175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59177/", + "id": 59177, + "name": "Oshun", + "site_detail_url": "https://comicvine.gamespot.com/oshun/4005-59177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59178/", + "id": 59178, + "name": "Chango", + "site_detail_url": "https://comicvine.gamespot.com/chango/4005-59178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59179/", + "id": 59179, + "name": "Eleggua", + "site_detail_url": "https://comicvine.gamespot.com/eleggua/4005-59179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59180/", + "id": 59180, + "name": "Ogun", + "site_detail_url": "https://comicvine.gamespot.com/ogun/4005-59180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59182/", + "id": 59182, + "name": "Duncan Corley", + "site_detail_url": "https://comicvine.gamespot.com/duncan-corley/4005-59182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59183/", + "id": 59183, + "name": "Nightcat", + "site_detail_url": "https://comicvine.gamespot.com/nightcat/4005-59183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59194/", + "id": 59194, + "name": "Yogi Dakor", + "site_detail_url": "https://comicvine.gamespot.com/yogi-dakor/4005-59194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59198/", + "id": 59198, + "name": "Glenda Sandoval", + "site_detail_url": "https://comicvine.gamespot.com/glenda-sandoval/4005-59198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59201/", + "id": 59201, + "name": "Cougar", + "site_detail_url": "https://comicvine.gamespot.com/cougar/4005-59201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59208/", + "id": 59208, + "name": "Zabo", + "site_detail_url": "https://comicvine.gamespot.com/zabo/4005-59208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59212/", + "id": 59212, + "name": "Super-Ego", + "site_detail_url": "https://comicvine.gamespot.com/super-ego/4005-59212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59214/", + "id": 59214, + "name": "Pinball Lizard", + "site_detail_url": "https://comicvine.gamespot.com/pinball-lizard/4005-59214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59216/", + "id": 59216, + "name": "Baron Gregory Russoff", + "site_detail_url": "https://comicvine.gamespot.com/baron-gregory-russoff/4005-59216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59217/", + "id": 59217, + "name": "Baron Grigori Russoff", + "site_detail_url": "https://comicvine.gamespot.com/baron-grigori-russoff/4005-59217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59218/", + "id": 59218, + "name": "Lance Gwynn", + "site_detail_url": "https://comicvine.gamespot.com/lance-gwynn/4005-59218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59219/", + "id": 59219, + "name": "L'Deroh", + "site_detail_url": "https://comicvine.gamespot.com/lderoh/4005-59219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59220/", + "id": 59220, + "name": "Lefty", + "site_detail_url": "https://comicvine.gamespot.com/lefty/4005-59220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59221/", + "id": 59221, + "name": "Lili Penrose", + "site_detail_url": "https://comicvine.gamespot.com/lili-penrose/4005-59221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59222/", + "id": 59222, + "name": "Lilia Calderu", + "site_detail_url": "https://comicvine.gamespot.com/lilia-calderu/4005-59222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59223/", + "id": 59223, + "name": "Maria Russoff", + "site_detail_url": "https://comicvine.gamespot.com/maria-russoff/4005-59223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59248/", + "id": 59248, + "name": "Drom The Backwards Man", + "site_detail_url": "https://comicvine.gamespot.com/drom-the-backwards-man/4005-59248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59261/", + "id": 59261, + "name": "Victoria Hand", + "site_detail_url": "https://comicvine.gamespot.com/victoria-hand/4005-59261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59269/", + "id": 59269, + "name": "Locksmith", + "site_detail_url": "https://comicvine.gamespot.com/locksmith/4005-59269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59270/", + "id": 59270, + "name": "Lonkarr", + "site_detail_url": "https://comicvine.gamespot.com/lonkarr/4005-59270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59271/", + "id": 59271, + "name": "Ludwig von Shtupf", + "site_detail_url": "https://comicvine.gamespot.com/ludwig-von-shtupf/4005-59271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59276/", + "id": 59276, + "name": "Black Hole", + "site_detail_url": "https://comicvine.gamespot.com/black-hole/4005-59276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59291/", + "id": 59291, + "name": "Sitting Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/sitting-bullseye/4005-59291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59295/", + "id": 59295, + "name": "The Spanker", + "site_detail_url": "https://comicvine.gamespot.com/the-spanker/4005-59295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59299/", + "id": 59299, + "name": "M'Gubgub", + "site_detail_url": "https://comicvine.gamespot.com/mgubgub/4005-59299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59300/", + "id": 59300, + "name": "Midas", + "site_detail_url": "https://comicvine.gamespot.com/midas/4005-59300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59302/", + "id": 59302, + "name": "Bobby Steele", + "site_detail_url": "https://comicvine.gamespot.com/bobby-steele/4005-59302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59305/", + "id": 59305, + "name": "Maria Muradyan", + "site_detail_url": "https://comicvine.gamespot.com/maria-muradyan/4005-59305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59306/", + "id": 59306, + "name": "Marie D'Ancanto", + "site_detail_url": "https://comicvine.gamespot.com/marie-dancanto/4005-59306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59325/", + "id": 59325, + "name": "Tillie the Hun", + "site_detail_url": "https://comicvine.gamespot.com/tillie-the-hun/4005-59325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59337/", + "id": 59337, + "name": "Ea the Wise", + "site_detail_url": "https://comicvine.gamespot.com/ea-the-wise/4005-59337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59348/", + "id": 59348, + "name": "Conquistador", + "site_detail_url": "https://comicvine.gamespot.com/conquistador/4005-59348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59349/", + "id": 59349, + "name": "Infinitus", + "site_detail_url": "https://comicvine.gamespot.com/infinitus/4005-59349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59350/", + "id": 59350, + "name": "Michiyo Watanabe", + "site_detail_url": "https://comicvine.gamespot.com/michiyo-watanabe/4005-59350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59351/", + "id": 59351, + "name": "Mighty Mother", + "site_detail_url": "https://comicvine.gamespot.com/mighty-mother/4005-59351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59353/", + "id": 59353, + "name": "Minotaur", + "site_detail_url": "https://comicvine.gamespot.com/minotaur/4005-59353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59354/", + "id": 59354, + "name": "Mister Code", + "site_detail_url": "https://comicvine.gamespot.com/mister-code/4005-59354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59355/", + "id": 59355, + "name": "Noah van Helsing", + "site_detail_url": "https://comicvine.gamespot.com/noah-van-helsing/4005-59355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59358/", + "id": 59358, + "name": "Rotwrap", + "site_detail_url": "https://comicvine.gamespot.com/rotwrap/4005-59358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59359/", + "id": 59359, + "name": "Malpractice", + "site_detail_url": "https://comicvine.gamespot.com/malpractice/4005-59359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59360/", + "id": 59360, + "name": "Innards", + "site_detail_url": "https://comicvine.gamespot.com/innards/4005-59360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59361/", + "id": 59361, + "name": "Belial", + "site_detail_url": "https://comicvine.gamespot.com/belial/4005-59361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59369/", + "id": 59369, + "name": "David Richards", + "site_detail_url": "https://comicvine.gamespot.com/david-richards/4005-59369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59371/", + "id": 59371, + "name": "The Red-Blue Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-red-blue-celestial/4005-59371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59372/", + "id": 59372, + "name": "The Alien Entity", + "site_detail_url": "https://comicvine.gamespot.com/the-alien-entity/4005-59372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59373/", + "id": 59373, + "name": "Anthropomorpho", + "site_detail_url": "https://comicvine.gamespot.com/anthropomorpho/4005-59373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59375/", + "id": 59375, + "name": "Allegra", + "site_detail_url": "https://comicvine.gamespot.com/allegra/4005-59375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59376/", + "id": 59376, + "name": "Monster of Badoon", + "site_detail_url": "https://comicvine.gamespot.com/monster-of-badoon/4005-59376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59377/", + "id": 59377, + "name": "Monte", + "site_detail_url": "https://comicvine.gamespot.com/monte/4005-59377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59378/", + "id": 59378, + "name": "Moondog the Malicious", + "site_detail_url": "https://comicvine.gamespot.com/moondog-the-malicious/4005-59378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59379/", + "id": 59379, + "name": "Mortoid", + "site_detail_url": "https://comicvine.gamespot.com/mortoid/4005-59379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59381/", + "id": 59381, + "name": "Munchkin", + "site_detail_url": "https://comicvine.gamespot.com/munchkin/4005-59381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59382/", + "id": 59382, + "name": "Elalyth", + "site_detail_url": "https://comicvine.gamespot.com/elalyth/4005-59382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59385/", + "id": 59385, + "name": "Maurice Fortuit", + "site_detail_url": "https://comicvine.gamespot.com/maurice-fortuit/4005-59385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59387/", + "id": 59387, + "name": "Florence Destine", + "site_detail_url": "https://comicvine.gamespot.com/florence-destine/4005-59387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59388/", + "id": 59388, + "name": "Grace Destine", + "site_detail_url": "https://comicvine.gamespot.com/grace-destine/4005-59388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59395/", + "id": 59395, + "name": "Agonistes", + "site_detail_url": "https://comicvine.gamespot.com/agonistes/4005-59395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59397/", + "id": 59397, + "name": "Neil Crawford", + "site_detail_url": "https://comicvine.gamespot.com/neil-crawford/4005-59397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59398/", + "id": 59398, + "name": "Neri", + "site_detail_url": "https://comicvine.gamespot.com/neri/4005-59398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59399/", + "id": 59399, + "name": "Nightfire", + "site_detail_url": "https://comicvine.gamespot.com/nightfire/4005-59399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59401/", + "id": 59401, + "name": "N'Kama", + "site_detail_url": "https://comicvine.gamespot.com/nkama/4005-59401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59402/", + "id": 59402, + "name": "Noreen Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/noreen-tanaka/4005-59402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59403/", + "id": 59403, + "name": "Number 5", + "site_detail_url": "https://comicvine.gamespot.com/number-5/4005-59403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59405/", + "id": 59405, + "name": "Son of Santa", + "site_detail_url": "https://comicvine.gamespot.com/son-of-santa/4005-59405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59409/", + "id": 59409, + "name": "Captain Mexica", + "site_detail_url": "https://comicvine.gamespot.com/captain-mexica/4005-59409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59423/", + "id": 59423, + "name": "Old Redd", + "site_detail_url": "https://comicvine.gamespot.com/old-redd/4005-59423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59424/", + "id": 59424, + "name": "Omnivore", + "site_detail_url": "https://comicvine.gamespot.com/omnivore/4005-59424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59425/", + "id": 59425, + "name": "Otmu", + "site_detail_url": "https://comicvine.gamespot.com/otmu/4005-59425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59428/", + "id": 59428, + "name": "Persephone", + "site_detail_url": "https://comicvine.gamespot.com/persephone/4005-59428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59444/", + "id": 59444, + "name": "Eulogy", + "site_detail_url": "https://comicvine.gamespot.com/eulogy/4005-59444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59445/", + "id": 59445, + "name": "Expediency", + "site_detail_url": "https://comicvine.gamespot.com/expediency/4005-59445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59450/", + "id": 59450, + "name": "Pinta", + "site_detail_url": "https://comicvine.gamespot.com/pinta/4005-59450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59451/", + "id": 59451, + "name": "Porous", + "site_detail_url": "https://comicvine.gamespot.com/porous/4005-59451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59453/", + "id": 59453, + "name": "Psyk-Out", + "site_detail_url": "https://comicvine.gamespot.com/psyk-out/4005-59453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59454/", + "id": 59454, + "name": "Punisaur", + "site_detail_url": "https://comicvine.gamespot.com/punisaur/4005-59454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59455/", + "id": 59455, + "name": "Purge", + "site_detail_url": "https://comicvine.gamespot.com/purge/4005-59455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59459/", + "id": 59459, + "name": "Galacta", + "site_detail_url": "https://comicvine.gamespot.com/galacta/4005-59459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59465/", + "id": 59465, + "name": "Sarah Gail Bradley", + "site_detail_url": "https://comicvine.gamespot.com/sarah-gail-bradley/4005-59465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59469/", + "id": 59469, + "name": "Saja", + "site_detail_url": "https://comicvine.gamespot.com/saja/4005-59469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59481/", + "id": 59481, + "name": "Shadow-Thief", + "site_detail_url": "https://comicvine.gamespot.com/shadow-thief/4005-59481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59488/", + "id": 59488, + "name": "Glitter", + "site_detail_url": "https://comicvine.gamespot.com/glitter/4005-59488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59489/", + "id": 59489, + "name": "Sovel", + "site_detail_url": "https://comicvine.gamespot.com/sovel/4005-59489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59490/", + "id": 59490, + "name": "Jat", + "site_detail_url": "https://comicvine.gamespot.com/jat/4005-59490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59502/", + "id": 59502, + "name": "Chris Seyfert", + "site_detail_url": "https://comicvine.gamespot.com/chris-seyfert/4005-59502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59503/", + "id": 59503, + "name": "Jessie Ingram", + "site_detail_url": "https://comicvine.gamespot.com/jessie-ingram/4005-59503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59504/", + "id": 59504, + "name": "Peter Seyfert", + "site_detail_url": "https://comicvine.gamespot.com/peter-seyfert/4005-59504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59505/", + "id": 59505, + "name": "Ashleigh Nichols", + "site_detail_url": "https://comicvine.gamespot.com/ashleigh-nichols/4005-59505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59506/", + "id": 59506, + "name": "Agent Brian Rinehart", + "site_detail_url": "https://comicvine.gamespot.com/agent-brian-rinehart/4005-59506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59507/", + "id": 59507, + "name": "Alex Anderson", + "site_detail_url": "https://comicvine.gamespot.com/alex-anderson/4005-59507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59509/", + "id": 59509, + "name": "Iron Man 2093", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2093/4005-59509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59510/", + "id": 59510, + "name": "Pn'Zo", + "site_detail_url": "https://comicvine.gamespot.com/pnzo/4005-59510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59512/", + "id": 59512, + "name": "Hodinn", + "site_detail_url": "https://comicvine.gamespot.com/hodinn/4005-59512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59517/", + "id": 59517, + "name": "Charley Huckle", + "site_detail_url": "https://comicvine.gamespot.com/charley-huckle/4005-59517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59523/", + "id": 59523, + "name": "Beacon", + "site_detail_url": "https://comicvine.gamespot.com/beacon/4005-59523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59524/", + "id": 59524, + "name": "Caregiver", + "site_detail_url": "https://comicvine.gamespot.com/caregiver/4005-59524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59525/", + "id": 59525, + "name": "Explorer", + "site_detail_url": "https://comicvine.gamespot.com/explorer/4005-59525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59526/", + "id": 59526, + "name": "Rathcone", + "site_detail_url": "https://comicvine.gamespot.com/rathcone/4005-59526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59527/", + "id": 59527, + "name": "Rebecca Lauria", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-lauria/4005-59527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59528/", + "id": 59528, + "name": "Rebecca Rainbow", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-rainbow/4005-59528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59529/", + "id": 59529, + "name": "Red Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/red-barbarian/4005-59529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59530/", + "id": 59530, + "name": "Dr. Bob Doom", + "site_detail_url": "https://comicvine.gamespot.com/dr-bob-doom/4005-59530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59531/", + "id": 59531, + "name": "Bob O'Bryan", + "site_detail_url": "https://comicvine.gamespot.com/bob-obryan/4005-59531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59532/", + "id": 59532, + "name": "Robin Ronalds", + "site_detail_url": "https://comicvine.gamespot.com/robin-ronalds/4005-59532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59533/", + "id": 59533, + "name": "Rock Monster Guardian", + "site_detail_url": "https://comicvine.gamespot.com/rock-monster-guardian/4005-59533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59534/", + "id": 59534, + "name": "Rok", + "site_detail_url": "https://comicvine.gamespot.com/rok/4005-59534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59540/", + "id": 59540, + "name": "Eddie Price", + "site_detail_url": "https://comicvine.gamespot.com/eddie-price/4005-59540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59546/", + "id": 59546, + "name": "ZZZXX", + "site_detail_url": "https://comicvine.gamespot.com/zzzxx/4005-59546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59547/", + "id": 59547, + "name": "Sean Madrox", + "site_detail_url": "https://comicvine.gamespot.com/sean-madrox/4005-59547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59569/", + "id": 59569, + "name": "Annie Richardson", + "site_detail_url": "https://comicvine.gamespot.com/annie-richardson/4005-59569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59570/", + "id": 59570, + "name": "Salamander", + "site_detail_url": "https://comicvine.gamespot.com/salamander/4005-59570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59571/", + "id": 59571, + "name": "Salvatore", + "site_detail_url": "https://comicvine.gamespot.com/salvatore/4005-59571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59572/", + "id": 59572, + "name": "Samhain", + "site_detail_url": "https://comicvine.gamespot.com/samhain/4005-59572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59573/", + "id": 59573, + "name": "Satyr", + "site_detail_url": "https://comicvine.gamespot.com/satyr/4005-59573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59574/", + "id": 59574, + "name": "Satyr-Nun", + "site_detail_url": "https://comicvine.gamespot.com/satyr-nun/4005-59574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59581/", + "id": 59581, + "name": "Zuni", + "site_detail_url": "https://comicvine.gamespot.com/zuni/4005-59581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59582/", + "id": 59582, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-59582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59584/", + "id": 59584, + "name": "Vibrania", + "site_detail_url": "https://comicvine.gamespot.com/vibrania/4005-59584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59585/", + "id": 59585, + "name": "Richard Zeeman", + "site_detail_url": "https://comicvine.gamespot.com/richard-zeeman/4005-59585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59587/", + "id": 59587, + "name": "Miraclewoman", + "site_detail_url": "https://comicvine.gamespot.com/miraclewoman/4005-59587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59590/", + "id": 59590, + "name": "Android Andy", + "site_detail_url": "https://comicvine.gamespot.com/android-andy/4005-59590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59591/", + "id": 59591, + "name": "Colonel Tusker", + "site_detail_url": "https://comicvine.gamespot.com/colonel-tusker/4005-59591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59596/", + "id": 59596, + "name": "Shadow Lord", + "site_detail_url": "https://comicvine.gamespot.com/shadow-lord/4005-59596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59598/", + "id": 59598, + "name": "Silkworm", + "site_detail_url": "https://comicvine.gamespot.com/silkworm/4005-59598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59600/", + "id": 59600, + "name": "L'Matto", + "site_detail_url": "https://comicvine.gamespot.com/lmatto/4005-59600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59601/", + "id": 59601, + "name": "Fighter One", + "site_detail_url": "https://comicvine.gamespot.com/fighter-one/4005-59601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59604/", + "id": 59604, + "name": "Ssrov", + "site_detail_url": "https://comicvine.gamespot.com/ssrov/4005-59604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59605/", + "id": 59605, + "name": "St. George", + "site_detail_url": "https://comicvine.gamespot.com/st-george/4005-59605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59607/", + "id": 59607, + "name": "Iron Woman", + "site_detail_url": "https://comicvine.gamespot.com/iron-woman/4005-59607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59617/", + "id": 59617, + "name": "Gabriel Vargas", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-vargas/4005-59617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59627/", + "id": 59627, + "name": "Sureshot", + "site_detail_url": "https://comicvine.gamespot.com/sureshot/4005-59627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59628/", + "id": 59628, + "name": "Surgeon", + "site_detail_url": "https://comicvine.gamespot.com/surgeon/4005-59628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59629/", + "id": 59629, + "name": "Syphon", + "site_detail_url": "https://comicvine.gamespot.com/syphon/4005-59629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59630/", + "id": 59630, + "name": "Taaru the Terrible", + "site_detail_url": "https://comicvine.gamespot.com/taaru-the-terrible/4005-59630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59631/", + "id": 59631, + "name": "Tessa", + "site_detail_url": "https://comicvine.gamespot.com/tessa/4005-59631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59632/", + "id": 59632, + "name": "Thaddeus Soul", + "site_detail_url": "https://comicvine.gamespot.com/thaddeus-soul/4005-59632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59633/", + "id": 59633, + "name": "Admiral Alabar", + "site_detail_url": "https://comicvine.gamespot.com/admiral-alabar/4005-59633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59634/", + "id": 59634, + "name": "Whyteout", + "site_detail_url": "https://comicvine.gamespot.com/whyteout/4005-59634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59638/", + "id": 59638, + "name": "Chan-Dar", + "site_detail_url": "https://comicvine.gamespot.com/chan-dar/4005-59638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59642/", + "id": 59642, + "name": "Eli Bard", + "site_detail_url": "https://comicvine.gamespot.com/eli-bard/4005-59642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59649/", + "id": 59649, + "name": "Garnok Rebbahn", + "site_detail_url": "https://comicvine.gamespot.com/garnok-rebbahn/4005-59649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59650/", + "id": 59650, + "name": "Balinor", + "site_detail_url": "https://comicvine.gamespot.com/balinor/4005-59650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59654/", + "id": 59654, + "name": "Tila", + "site_detail_url": "https://comicvine.gamespot.com/tila/4005-59654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59657/", + "id": 59657, + "name": "James Power", + "site_detail_url": "https://comicvine.gamespot.com/james-power/4005-59657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59660/", + "id": 59660, + "name": "Latch", + "site_detail_url": "https://comicvine.gamespot.com/latch/4005-59660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59661/", + "id": 59661, + "name": "Lisa Beckman", + "site_detail_url": "https://comicvine.gamespot.com/lisa-beckman/4005-59661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59716/", + "id": 59716, + "name": "Doctor Mandibus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-mandibus/4005-59716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59732/", + "id": 59732, + "name": "Bezial", + "site_detail_url": "https://comicvine.gamespot.com/bezial/4005-59732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59741/", + "id": 59741, + "name": "Lady Yune", + "site_detail_url": "https://comicvine.gamespot.com/lady-yune/4005-59741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59744/", + "id": 59744, + "name": "LeGault", + "site_detail_url": "https://comicvine.gamespot.com/legault/4005-59744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59745/", + "id": 59745, + "name": "Big Shot", + "site_detail_url": "https://comicvine.gamespot.com/big-shot/4005-59745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59748/", + "id": 59748, + "name": "Splat the Cat", + "site_detail_url": "https://comicvine.gamespot.com/splat-the-cat/4005-59748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59749/", + "id": 59749, + "name": "Bill Bishop", + "site_detail_url": "https://comicvine.gamespot.com/bill-bishop/4005-59749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59751/", + "id": 59751, + "name": "Black Billy", + "site_detail_url": "https://comicvine.gamespot.com/black-billy/4005-59751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59754/", + "id": 59754, + "name": "Bianca LaNeige", + "site_detail_url": "https://comicvine.gamespot.com/bianca-laneige/4005-59754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59755/", + "id": 59755, + "name": "Julia Cabot", + "site_detail_url": "https://comicvine.gamespot.com/julia-cabot/4005-59755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59759/", + "id": 59759, + "name": "The Siredam", + "site_detail_url": "https://comicvine.gamespot.com/the-siredam/4005-59759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59779/", + "id": 59779, + "name": "Paradox", + "site_detail_url": "https://comicvine.gamespot.com/paradox/4005-59779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59780/", + "id": 59780, + "name": "The Warmage", + "site_detail_url": "https://comicvine.gamespot.com/the-warmage/4005-59780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59782/", + "id": 59782, + "name": "Anvil Chancellor", + "site_detail_url": "https://comicvine.gamespot.com/anvil-chancellor/4005-59782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59788/", + "id": 59788, + "name": "Torval", + "site_detail_url": "https://comicvine.gamespot.com/torval/4005-59788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59793/", + "id": 59793, + "name": "Al MacKenzie", + "site_detail_url": "https://comicvine.gamespot.com/al-mackenzie/4005-59793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59794/", + "id": 59794, + "name": "Euphy Aguilar", + "site_detail_url": "https://comicvine.gamespot.com/euphy-aguilar/4005-59794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59796/", + "id": 59796, + "name": "Christina Aguilar", + "site_detail_url": "https://comicvine.gamespot.com/christina-aguilar/4005-59796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59803/", + "id": 59803, + "name": "Boneyard", + "site_detail_url": "https://comicvine.gamespot.com/boneyard/4005-59803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59804/", + "id": 59804, + "name": "Groundhog", + "site_detail_url": "https://comicvine.gamespot.com/groundhog/4005-59804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59808/", + "id": 59808, + "name": "Captain America 2099", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-2099/4005-59808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59811/", + "id": 59811, + "name": "Mr. Lee", + "site_detail_url": "https://comicvine.gamespot.com/mr-lee/4005-59811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59828/", + "id": 59828, + "name": "Lightstorm", + "site_detail_url": "https://comicvine.gamespot.com/lightstorm/4005-59828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59836/", + "id": 59836, + "name": "Mrs. Lee", + "site_detail_url": "https://comicvine.gamespot.com/mrs-lee/4005-59836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59850/", + "id": 59850, + "name": "Conserve and Protect", + "site_detail_url": "https://comicvine.gamespot.com/conserve-and-protect/4005-59850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59864/", + "id": 59864, + "name": "Morwen", + "site_detail_url": "https://comicvine.gamespot.com/morwen/4005-59864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59865/", + "id": 59865, + "name": "Jenna Cole", + "site_detail_url": "https://comicvine.gamespot.com/jenna-cole/4005-59865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59878/", + "id": 59878, + "name": "Elmar Radd", + "site_detail_url": "https://comicvine.gamespot.com/elmar-radd/4005-59878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59884/", + "id": 59884, + "name": "Cassie Merrick", + "site_detail_url": "https://comicvine.gamespot.com/cassie-merrick/4005-59884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59891/", + "id": 59891, + "name": "Sara", + "site_detail_url": "https://comicvine.gamespot.com/sara/4005-59891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59892/", + "id": 59892, + "name": "Dark Mairi", + "site_detail_url": "https://comicvine.gamespot.com/dark-mairi/4005-59892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59893/", + "id": 59893, + "name": "Daze", + "site_detail_url": "https://comicvine.gamespot.com/daze/4005-59893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59895/", + "id": 59895, + "name": "Deathcharge", + "site_detail_url": "https://comicvine.gamespot.com/deathcharge/4005-59895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59896/", + "id": 59896, + "name": "Deathwatcher", + "site_detail_url": "https://comicvine.gamespot.com/deathwatcher/4005-59896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59898/", + "id": 59898, + "name": "Defiler", + "site_detail_url": "https://comicvine.gamespot.com/defiler/4005-59898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59900/", + "id": 59900, + "name": "Carl Delandan", + "site_detail_url": "https://comicvine.gamespot.com/carl-delandan/4005-59900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59907/", + "id": 59907, + "name": "Desadia", + "site_detail_url": "https://comicvine.gamespot.com/desadia/4005-59907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59908/", + "id": 59908, + "name": "Dominic Desford", + "site_detail_url": "https://comicvine.gamespot.com/dominic-desford/4005-59908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59915/", + "id": 59915, + "name": "Donna Angel", + "site_detail_url": "https://comicvine.gamespot.com/donna-angel/4005-59915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59919/", + "id": 59919, + "name": "Rad", + "site_detail_url": "https://comicvine.gamespot.com/rad/4005-59919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59930/", + "id": 59930, + "name": "Redwing", + "site_detail_url": "https://comicvine.gamespot.com/redwing/4005-59930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59942/", + "id": 59942, + "name": "S'yan", + "site_detail_url": "https://comicvine.gamespot.com/syan/4005-59942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-59943/", + "id": 59943, + "name": "Queen Mother", + "site_detail_url": "https://comicvine.gamespot.com/queen-mother/4005-59943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60000/", + "id": 60000, + "name": "Leviathan", + "site_detail_url": "https://comicvine.gamespot.com/leviathan/4005-60000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60001/", + "id": 60001, + "name": "Network Nina", + "site_detail_url": "https://comicvine.gamespot.com/network-nina/4005-60001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60007/", + "id": 60007, + "name": "Cranio", + "site_detail_url": "https://comicvine.gamespot.com/cranio/4005-60007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60008/", + "id": 60008, + "name": "Omega", + "site_detail_url": "https://comicvine.gamespot.com/omega/4005-60008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60038/", + "id": 60038, + "name": "Kar-Sagg", + "site_detail_url": "https://comicvine.gamespot.com/kar-sagg/4005-60038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60048/", + "id": 60048, + "name": "Colonel Abdul al-Rahman", + "site_detail_url": "https://comicvine.gamespot.com/colonel-abdul-al-rahman/4005-60048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60074/", + "id": 60074, + "name": "Dr. Tom Metellus", + "site_detail_url": "https://comicvine.gamespot.com/dr-tom-metellus/4005-60074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60075/", + "id": 60075, + "name": "Red Flag", + "site_detail_url": "https://comicvine.gamespot.com/red-flag/4005-60075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60076/", + "id": 60076, + "name": "Caiman", + "site_detail_url": "https://comicvine.gamespot.com/caiman/4005-60076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60077/", + "id": 60077, + "name": "Harrier", + "site_detail_url": "https://comicvine.gamespot.com/harrier/4005-60077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60078/", + "id": 60078, + "name": "Piranis", + "site_detail_url": "https://comicvine.gamespot.com/piranis/4005-60078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60079/", + "id": 60079, + "name": "Carol", + "site_detail_url": "https://comicvine.gamespot.com/carol/4005-60079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60080/", + "id": 60080, + "name": "Jessie", + "site_detail_url": "https://comicvine.gamespot.com/jessie/4005-60080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60082/", + "id": 60082, + "name": "Doctor Yes", + "site_detail_url": "https://comicvine.gamespot.com/doctor-yes/4005-60082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60083/", + "id": 60083, + "name": "Meredith", + "site_detail_url": "https://comicvine.gamespot.com/meredith/4005-60083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60084/", + "id": 60084, + "name": "Sherril", + "site_detail_url": "https://comicvine.gamespot.com/sherril/4005-60084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60085/", + "id": 60085, + "name": "Stephanie", + "site_detail_url": "https://comicvine.gamespot.com/stephanie/4005-60085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60086/", + "id": 60086, + "name": "Adrian Eiskalt", + "site_detail_url": "https://comicvine.gamespot.com/adrian-eiskalt/4005-60086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60087/", + "id": 60087, + "name": "Bill Galannan", + "site_detail_url": "https://comicvine.gamespot.com/bill-galannan/4005-60087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60088/", + "id": 60088, + "name": "Calvin Falconer", + "site_detail_url": "https://comicvine.gamespot.com/calvin-falconer/4005-60088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60089/", + "id": 60089, + "name": "Carla Denti", + "site_detail_url": "https://comicvine.gamespot.com/carla-denti/4005-60089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60090/", + "id": 60090, + "name": "Don Vincenzo Pardo", + "site_detail_url": "https://comicvine.gamespot.com/don-vincenzo-pardo/4005-60090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60092/", + "id": 60092, + "name": "Dr. Monica Staphos", + "site_detail_url": "https://comicvine.gamespot.com/dr-monica-staphos/4005-60092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60093/", + "id": 60093, + "name": "Dream Demon", + "site_detail_url": "https://comicvine.gamespot.com/dream-demon/4005-60093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60094/", + "id": 60094, + "name": "Dragonpaw", + "site_detail_url": "https://comicvine.gamespot.com/dragonpaw/4005-60094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60095/", + "id": 60095, + "name": "Dryrot", + "site_detail_url": "https://comicvine.gamespot.com/dryrot/4005-60095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60096/", + "id": 60096, + "name": "Dan Dunn", + "site_detail_url": "https://comicvine.gamespot.com/dan-dunn/4005-60096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60097/", + "id": 60097, + "name": "Dutta", + "site_detail_url": "https://comicvine.gamespot.com/dutta/4005-60097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60098/", + "id": 60098, + "name": "Dynorr the Stalker", + "site_detail_url": "https://comicvine.gamespot.com/dynorr-the-stalker/4005-60098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60100/", + "id": 60100, + "name": "Ecdysiast", + "site_detail_url": "https://comicvine.gamespot.com/ecdysiast/4005-60100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60101/", + "id": 60101, + "name": "88", + "site_detail_url": "https://comicvine.gamespot.com/88/4005-60101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60102/", + "id": 60102, + "name": "Ekl'r", + "site_detail_url": "https://comicvine.gamespot.com/eklr/4005-60102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60103/", + "id": 60103, + "name": "Eugene Beaumont", + "site_detail_url": "https://comicvine.gamespot.com/eugene-beaumont/4005-60103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60104/", + "id": 60104, + "name": "Gonra of the Sword", + "site_detail_url": "https://comicvine.gamespot.com/gonra-of-the-sword/4005-60104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60105/", + "id": 60105, + "name": "Dr. Edwin Earl Hawkins", + "site_detail_url": "https://comicvine.gamespot.com/dr-edwin-earl-hawkins/4005-60105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60106/", + "id": 60106, + "name": "Mario Locasio", + "site_detail_url": "https://comicvine.gamespot.com/mario-locasio/4005-60106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60107/", + "id": 60107, + "name": "The Necromancer", + "site_detail_url": "https://comicvine.gamespot.com/the-necromancer/4005-60107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60109/", + "id": 60109, + "name": "Simon Drudd", + "site_detail_url": "https://comicvine.gamespot.com/simon-drudd/4005-60109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60110/", + "id": 60110, + "name": "Amina Synge", + "site_detail_url": "https://comicvine.gamespot.com/amina-synge/4005-60110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60123/", + "id": 60123, + "name": "Alfie", + "site_detail_url": "https://comicvine.gamespot.com/alfie/4005-60123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60124/", + "id": 60124, + "name": "Doctor Paine", + "site_detail_url": "https://comicvine.gamespot.com/doctor-paine/4005-60124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60125/", + "id": 60125, + "name": "Dog O' War", + "site_detail_url": "https://comicvine.gamespot.com/dog-o-war/4005-60125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60127/", + "id": 60127, + "name": "Mister Schwed", + "site_detail_url": "https://comicvine.gamespot.com/mister-schwed/4005-60127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60128/", + "id": 60128, + "name": "Four-Eyes", + "site_detail_url": "https://comicvine.gamespot.com/four-eyes/4005-60128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60135/", + "id": 60135, + "name": "Tess Walker", + "site_detail_url": "https://comicvine.gamespot.com/tess-walker/4005-60135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60145/", + "id": 60145, + "name": "Franklin Knight", + "site_detail_url": "https://comicvine.gamespot.com/franklin-knight/4005-60145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60146/", + "id": 60146, + "name": "Gideon Turkel", + "site_detail_url": "https://comicvine.gamespot.com/gideon-turkel/4005-60146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60147/", + "id": 60147, + "name": "Jessica Sparling", + "site_detail_url": "https://comicvine.gamespot.com/jessica-sparling/4005-60147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60148/", + "id": 60148, + "name": "Joshua Wade", + "site_detail_url": "https://comicvine.gamespot.com/joshua-wade/4005-60148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60153/", + "id": 60153, + "name": "Benedict", + "site_detail_url": "https://comicvine.gamespot.com/benedict/4005-60153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60155/", + "id": 60155, + "name": "Dark Design", + "site_detail_url": "https://comicvine.gamespot.com/dark-design/4005-60155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60157/", + "id": 60157, + "name": "George Waters", + "site_detail_url": "https://comicvine.gamespot.com/george-waters/4005-60157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60158/", + "id": 60158, + "name": "Hatt", + "site_detail_url": "https://comicvine.gamespot.com/hatt/4005-60158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60160/", + "id": 60160, + "name": "Major Kalum Lo", + "site_detail_url": "https://comicvine.gamespot.com/major-kalum-lo/4005-60160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60162/", + "id": 60162, + "name": "Quisling", + "site_detail_url": "https://comicvine.gamespot.com/quisling/4005-60162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60192/", + "id": 60192, + "name": "Protektin Surv", + "site_detail_url": "https://comicvine.gamespot.com/protektin-surv/4005-60192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60193/", + "id": 60193, + "name": "Sheriff Kuhn", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-kuhn/4005-60193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60194/", + "id": 60194, + "name": "Stamben Malelet", + "site_detail_url": "https://comicvine.gamespot.com/stamben-malelet/4005-60194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60195/", + "id": 60195, + "name": "Thulcan Death Rob", + "site_detail_url": "https://comicvine.gamespot.com/thulcan-death-rob/4005-60195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60210/", + "id": 60210, + "name": "Ingenuity Lee", + "site_detail_url": "https://comicvine.gamespot.com/ingenuity-lee/4005-60210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60211/", + "id": 60211, + "name": "Mister Chicken", + "site_detail_url": "https://comicvine.gamespot.com/mister-chicken/4005-60211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60212/", + "id": 60212, + "name": "Rave", + "site_detail_url": "https://comicvine.gamespot.com/rave/4005-60212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60243/", + "id": 60243, + "name": "14", + "site_detail_url": "https://comicvine.gamespot.com/14/4005-60243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60244/", + "id": 60244, + "name": "A.I. Sarah", + "site_detail_url": "https://comicvine.gamespot.com/ai-sarah/4005-60244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60245/", + "id": 60245, + "name": "Abrogate", + "site_detail_url": "https://comicvine.gamespot.com/abrogate/4005-60245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60246/", + "id": 60246, + "name": "A'kane", + "site_detail_url": "https://comicvine.gamespot.com/akane/4005-60246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60247/", + "id": 60247, + "name": "Ganglia", + "site_detail_url": "https://comicvine.gamespot.com/ganglia/4005-60247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60254/", + "id": 60254, + "name": "David Hilbert", + "site_detail_url": "https://comicvine.gamespot.com/david-hilbert/4005-60254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60255/", + "id": 60255, + "name": "Doctor Stack", + "site_detail_url": "https://comicvine.gamespot.com/doctor-stack/4005-60255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60256/", + "id": 60256, + "name": "Dovinia", + "site_detail_url": "https://comicvine.gamespot.com/dovinia/4005-60256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60260/", + "id": 60260, + "name": "Dianne Davidson", + "site_detail_url": "https://comicvine.gamespot.com/dianne-davidson/4005-60260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60261/", + "id": 60261, + "name": "Egma", + "site_detail_url": "https://comicvine.gamespot.com/egma/4005-60261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60262/", + "id": 60262, + "name": "Witch Queen", + "site_detail_url": "https://comicvine.gamespot.com/witch-queen/4005-60262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60263/", + "id": 60263, + "name": "Elsbeth Kleinenshvitz", + "site_detail_url": "https://comicvine.gamespot.com/elsbeth-kleinenshvitz/4005-60263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60264/", + "id": 60264, + "name": "Elsie Gertz", + "site_detail_url": "https://comicvine.gamespot.com/elsie-gertz/4005-60264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60265/", + "id": 60265, + "name": "Stealth", + "site_detail_url": "https://comicvine.gamespot.com/stealth/4005-60265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60281/", + "id": 60281, + "name": "Blue Hulk", + "site_detail_url": "https://comicvine.gamespot.com/blue-hulk/4005-60281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60282/", + "id": 60282, + "name": "Elephant Steve", + "site_detail_url": "https://comicvine.gamespot.com/elephant-steve/4005-60282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60284/", + "id": 60284, + "name": "Lectronn", + "site_detail_url": "https://comicvine.gamespot.com/lectronn/4005-60284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60285/", + "id": 60285, + "name": "Valeria Fen", + "site_detail_url": "https://comicvine.gamespot.com/valeria-fen/4005-60285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60293/", + "id": 60293, + "name": "Kirke", + "site_detail_url": "https://comicvine.gamespot.com/kirke/4005-60293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60296/", + "id": 60296, + "name": "Tre Owens", + "site_detail_url": "https://comicvine.gamespot.com/tre-owens/4005-60296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60297/", + "id": 60297, + "name": "Guy Dimond", + "site_detail_url": "https://comicvine.gamespot.com/guy-dimond/4005-60297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60298/", + "id": 60298, + "name": "Matu Makalani", + "site_detail_url": "https://comicvine.gamespot.com/matu-makalani/4005-60298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60299/", + "id": 60299, + "name": "Suki Yumiko", + "site_detail_url": "https://comicvine.gamespot.com/suki-yumiko/4005-60299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60300/", + "id": 60300, + "name": "Lindy Nolan", + "site_detail_url": "https://comicvine.gamespot.com/lindy-nolan/4005-60300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60301/", + "id": 60301, + "name": "Davis Harmon", + "site_detail_url": "https://comicvine.gamespot.com/davis-harmon/4005-60301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60302/", + "id": 60302, + "name": "Jake Oh", + "site_detail_url": "https://comicvine.gamespot.com/jake-oh/4005-60302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60319/", + "id": 60319, + "name": "Go-Devil", + "site_detail_url": "https://comicvine.gamespot.com/go-devil/4005-60319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60320/", + "id": 60320, + "name": "Lord Moses", + "site_detail_url": "https://comicvine.gamespot.com/lord-moses/4005-60320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60321/", + "id": 60321, + "name": "Zarathustra", + "site_detail_url": "https://comicvine.gamespot.com/zarathustra/4005-60321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60322/", + "id": 60322, + "name": "Vibravore", + "site_detail_url": "https://comicvine.gamespot.com/vibravore/4005-60322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60335/", + "id": 60335, + "name": "Ruth", + "site_detail_url": "https://comicvine.gamespot.com/ruth/4005-60335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60337/", + "id": 60337, + "name": "Impasse", + "site_detail_url": "https://comicvine.gamespot.com/impasse/4005-60337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60340/", + "id": 60340, + "name": "Pao Fu", + "site_detail_url": "https://comicvine.gamespot.com/pao-fu/4005-60340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60341/", + "id": 60341, + "name": "Boar", + "site_detail_url": "https://comicvine.gamespot.com/boar/4005-60341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60343/", + "id": 60343, + "name": "Muck Monster", + "site_detail_url": "https://comicvine.gamespot.com/muck-monster/4005-60343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60344/", + "id": 60344, + "name": "Six", + "site_detail_url": "https://comicvine.gamespot.com/six/4005-60344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60345/", + "id": 60345, + "name": "Omerta", + "site_detail_url": "https://comicvine.gamespot.com/omerta/4005-60345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60346/", + "id": 60346, + "name": "Dreamkiller", + "site_detail_url": "https://comicvine.gamespot.com/dreamkiller/4005-60346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60347/", + "id": 60347, + "name": "Heather Rand", + "site_detail_url": "https://comicvine.gamespot.com/heather-rand/4005-60347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60348/", + "id": 60348, + "name": "D'Chel the Deceptor", + "site_detail_url": "https://comicvine.gamespot.com/dchel-the-deceptor/4005-60348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60349/", + "id": 60349, + "name": "Dog", + "site_detail_url": "https://comicvine.gamespot.com/dog/4005-60349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60350/", + "id": 60350, + "name": "Firebrand (Dennison)", + "site_detail_url": "https://comicvine.gamespot.com/firebrand-dennison/4005-60350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60351/", + "id": 60351, + "name": "Kazann", + "site_detail_url": "https://comicvine.gamespot.com/kazann/4005-60351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60352/", + "id": 60352, + "name": "Primate", + "site_detail_url": "https://comicvine.gamespot.com/primate/4005-60352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60353/", + "id": 60353, + "name": "Revelation", + "site_detail_url": "https://comicvine.gamespot.com/revelation/4005-60353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60355/", + "id": 60355, + "name": "Synthesizer", + "site_detail_url": "https://comicvine.gamespot.com/synthesizer/4005-60355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60360/", + "id": 60360, + "name": "Russel Grey", + "site_detail_url": "https://comicvine.gamespot.com/russel-grey/4005-60360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60373/", + "id": 60373, + "name": "Xraven", + "site_detail_url": "https://comicvine.gamespot.com/xraven/4005-60373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60377/", + "id": 60377, + "name": "Tserron", + "site_detail_url": "https://comicvine.gamespot.com/tserron/4005-60377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60381/", + "id": 60381, + "name": "Warfist", + "site_detail_url": "https://comicvine.gamespot.com/warfist/4005-60381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60382/", + "id": 60382, + "name": "Headhunter", + "site_detail_url": "https://comicvine.gamespot.com/headhunter/4005-60382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60383/", + "id": 60383, + "name": "Agent X", + "site_detail_url": "https://comicvine.gamespot.com/agent-x/4005-60383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60384/", + "id": 60384, + "name": "Bombadier", + "site_detail_url": "https://comicvine.gamespot.com/bombadier/4005-60384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60385/", + "id": 60385, + "name": "Blue Shark", + "site_detail_url": "https://comicvine.gamespot.com/blue-shark/4005-60385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60386/", + "id": 60386, + "name": "Uni-Lord", + "site_detail_url": "https://comicvine.gamespot.com/uni-lord/4005-60386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60395/", + "id": 60395, + "name": "Tonya Barton-Parker", + "site_detail_url": "https://comicvine.gamespot.com/tonya-barton-parker/4005-60395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60396/", + "id": 60396, + "name": "Petunia Grimm", + "site_detail_url": "https://comicvine.gamespot.com/petunia-grimm/4005-60396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60399/", + "id": 60399, + "name": "Valeria of the Fifth Dimension", + "site_detail_url": "https://comicvine.gamespot.com/valeria-of-the-fifth-dimension/4005-60399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60401/", + "id": 60401, + "name": "Consumption", + "site_detail_url": "https://comicvine.gamespot.com/consumption/4005-60401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60402/", + "id": 60402, + "name": "Cool Million", + "site_detail_url": "https://comicvine.gamespot.com/cool-million/4005-60402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60404/", + "id": 60404, + "name": "Devourer", + "site_detail_url": "https://comicvine.gamespot.com/devourer/4005-60404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60405/", + "id": 60405, + "name": "Reginald Parrington", + "site_detail_url": "https://comicvine.gamespot.com/reginald-parrington/4005-60405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60422/", + "id": 60422, + "name": "Surisha", + "site_detail_url": "https://comicvine.gamespot.com/surisha/4005-60422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60425/", + "id": 60425, + "name": "Paul Ignatius", + "site_detail_url": "https://comicvine.gamespot.com/paul-ignatius/4005-60425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60426/", + "id": 60426, + "name": "Illyrie", + "site_detail_url": "https://comicvine.gamespot.com/illyrie/4005-60426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60427/", + "id": 60427, + "name": "Inspector Korngold", + "site_detail_url": "https://comicvine.gamespot.com/inspector-korngold/4005-60427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60428/", + "id": 60428, + "name": "Phalanx", + "site_detail_url": "https://comicvine.gamespot.com/phalanx/4005-60428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60444/", + "id": 60444, + "name": "Eradikator 6", + "site_detail_url": "https://comicvine.gamespot.com/eradikator-6/4005-60444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60445/", + "id": 60445, + "name": "Aquon", + "site_detail_url": "https://comicvine.gamespot.com/aquon/4005-60445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60450/", + "id": 60450, + "name": "Una", + "site_detail_url": "https://comicvine.gamespot.com/una/4005-60450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60451/", + "id": 60451, + "name": "Dexam", + "site_detail_url": "https://comicvine.gamespot.com/dexam/4005-60451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60452/", + "id": 60452, + "name": "Visalia", + "site_detail_url": "https://comicvine.gamespot.com/visalia/4005-60452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60460/", + "id": 60460, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-60460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60462/", + "id": 60462, + "name": "Doppelganger", + "site_detail_url": "https://comicvine.gamespot.com/doppelganger/4005-60462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60466/", + "id": 60466, + "name": "Kai-Mak", + "site_detail_url": "https://comicvine.gamespot.com/kai-mak/4005-60466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60467/", + "id": 60467, + "name": "Andrew Kale", + "site_detail_url": "https://comicvine.gamespot.com/andrew-kale/4005-60467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60468/", + "id": 60468, + "name": "Gregori Grebenko", + "site_detail_url": "https://comicvine.gamespot.com/gregori-grebenko/4005-60468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60469/", + "id": 60469, + "name": "Kometes", + "site_detail_url": "https://comicvine.gamespot.com/kometes/4005-60469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60470/", + "id": 60470, + "name": "Leonard Kryzewski", + "site_detail_url": "https://comicvine.gamespot.com/leonard-kryzewski/4005-60470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60471/", + "id": 60471, + "name": "Jedediah Ravenstorm", + "site_detail_url": "https://comicvine.gamespot.com/jedediah-ravenstorm/4005-60471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60472/", + "id": 60472, + "name": "Kublai Khan", + "site_detail_url": "https://comicvine.gamespot.com/kublai-khan/4005-60472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60473/", + "id": 60473, + "name": "Tong", + "site_detail_url": "https://comicvine.gamespot.com/tong/4005-60473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60474/", + "id": 60474, + "name": "William Haines", + "site_detail_url": "https://comicvine.gamespot.com/william-haines/4005-60474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60476/", + "id": 60476, + "name": "Shintaro Kuramoto", + "site_detail_url": "https://comicvine.gamespot.com/shintaro-kuramoto/4005-60476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60477/", + "id": 60477, + "name": "Stag Beetle", + "site_detail_url": "https://comicvine.gamespot.com/stag-beetle/4005-60477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60478/", + "id": 60478, + "name": "Heather Krolnek", + "site_detail_url": "https://comicvine.gamespot.com/heather-krolnek/4005-60478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60479/", + "id": 60479, + "name": "Samira", + "site_detail_url": "https://comicvine.gamespot.com/samira/4005-60479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60480/", + "id": 60480, + "name": "Metoxo", + "site_detail_url": "https://comicvine.gamespot.com/metoxo/4005-60480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60481/", + "id": 60481, + "name": "Lady Jane", + "site_detail_url": "https://comicvine.gamespot.com/lady-jane/4005-60481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60482/", + "id": 60482, + "name": "Turulla", + "site_detail_url": "https://comicvine.gamespot.com/turulla/4005-60482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60483/", + "id": 60483, + "name": "Caitlin Maddox", + "site_detail_url": "https://comicvine.gamespot.com/caitlin-maddox/4005-60483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60484/", + "id": 60484, + "name": "Touchstone", + "site_detail_url": "https://comicvine.gamespot.com/touchstone/4005-60484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60485/", + "id": 60485, + "name": "Wildwind", + "site_detail_url": "https://comicvine.gamespot.com/wildwind/4005-60485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60486/", + "id": 60486, + "name": "Wraath", + "site_detail_url": "https://comicvine.gamespot.com/wraath/4005-60486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60487/", + "id": 60487, + "name": "Landar", + "site_detail_url": "https://comicvine.gamespot.com/landar/4005-60487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60488/", + "id": 60488, + "name": "Emma LaPorte", + "site_detail_url": "https://comicvine.gamespot.com/emma-laporte/4005-60488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60490/", + "id": 60490, + "name": "Lawnmower", + "site_detail_url": "https://comicvine.gamespot.com/lawnmower/4005-60490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60491/", + "id": 60491, + "name": "Theodore LeSeig", + "site_detail_url": "https://comicvine.gamespot.com/theodore-leseig/4005-60491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60492/", + "id": 60492, + "name": "Jimmy Littlehawk", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-littlehawk/4005-60492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60493/", + "id": 60493, + "name": "Lexington Loopner", + "site_detail_url": "https://comicvine.gamespot.com/lexington-loopner/4005-60493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60495/", + "id": 60495, + "name": "Frank Lowell", + "site_detail_url": "https://comicvine.gamespot.com/frank-lowell/4005-60495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60498/", + "id": 60498, + "name": "Lupex", + "site_detail_url": "https://comicvine.gamespot.com/lupex/4005-60498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60499/", + "id": 60499, + "name": "Vukils", + "site_detail_url": "https://comicvine.gamespot.com/vukils/4005-60499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60503/", + "id": 60503, + "name": "Firefall", + "site_detail_url": "https://comicvine.gamespot.com/firefall/4005-60503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60504/", + "id": 60504, + "name": "Hammerhand", + "site_detail_url": "https://comicvine.gamespot.com/hammerhand/4005-60504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60505/", + "id": 60505, + "name": "Javelin", + "site_detail_url": "https://comicvine.gamespot.com/javelin/4005-60505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60506/", + "id": 60506, + "name": "Liberator", + "site_detail_url": "https://comicvine.gamespot.com/liberator/4005-60506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60507/", + "id": 60507, + "name": "Pulsar", + "site_detail_url": "https://comicvine.gamespot.com/pulsar/4005-60507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60508/", + "id": 60508, + "name": "Scanner", + "site_detail_url": "https://comicvine.gamespot.com/scanner/4005-60508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60509/", + "id": 60509, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4005-60509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60510/", + "id": 60510, + "name": "Assassin", + "site_detail_url": "https://comicvine.gamespot.com/assassin/4005-60510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60511/", + "id": 60511, + "name": "Terminator", + "site_detail_url": "https://comicvine.gamespot.com/terminator/4005-60511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60512/", + "id": 60512, + "name": "Vampiro", + "site_detail_url": "https://comicvine.gamespot.com/vampiro/4005-60512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60513/", + "id": 60513, + "name": "Deadhead", + "site_detail_url": "https://comicvine.gamespot.com/deadhead/4005-60513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60514/", + "id": 60514, + "name": "Lightningbolt", + "site_detail_url": "https://comicvine.gamespot.com/lightningbolt/4005-60514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60515/", + "id": 60515, + "name": "Trapper", + "site_detail_url": "https://comicvine.gamespot.com/trapper/4005-60515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60516/", + "id": 60516, + "name": "Kuragari", + "site_detail_url": "https://comicvine.gamespot.com/kuragari/4005-60516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60517/", + "id": 60517, + "name": "Dominor", + "site_detail_url": "https://comicvine.gamespot.com/dominor/4005-60517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60518/", + "id": 60518, + "name": "Heatwave", + "site_detail_url": "https://comicvine.gamespot.com/heatwave/4005-60518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60519/", + "id": 60519, + "name": "Ariane of Galador", + "site_detail_url": "https://comicvine.gamespot.com/ariane-of-galador/4005-60519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60520/", + "id": 60520, + "name": "Seeker", + "site_detail_url": "https://comicvine.gamespot.com/seeker/4005-60520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60521/", + "id": 60521, + "name": "Steel Slammer", + "site_detail_url": "https://comicvine.gamespot.com/steel-slammer/4005-60521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60522/", + "id": 60522, + "name": "Soundwave", + "site_detail_url": "https://comicvine.gamespot.com/soundwave/4005-60522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60523/", + "id": 60523, + "name": "Steelshot", + "site_detail_url": "https://comicvine.gamespot.com/steelshot/4005-60523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60524/", + "id": 60524, + "name": "Cindy Adams", + "site_detail_url": "https://comicvine.gamespot.com/cindy-adams/4005-60524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60525/", + "id": 60525, + "name": "Raak the Breaker", + "site_detail_url": "https://comicvine.gamespot.com/raak-the-breaker/4005-60525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60526/", + "id": 60526, + "name": "Unam the Unseen", + "site_detail_url": "https://comicvine.gamespot.com/unam-the-unseen/4005-60526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60527/", + "id": 60527, + "name": "Xander", + "site_detail_url": "https://comicvine.gamespot.com/xander/4005-60527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60533/", + "id": 60533, + "name": "Rainbow", + "site_detail_url": "https://comicvine.gamespot.com/rainbow/4005-60533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60535/", + "id": 60535, + "name": "Skrull Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/skrull-spider-man/4005-60535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60536/", + "id": 60536, + "name": "Prince Baran", + "site_detail_url": "https://comicvine.gamespot.com/prince-baran/4005-60536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60538/", + "id": 60538, + "name": "Goro", + "site_detail_url": "https://comicvine.gamespot.com/goro/4005-60538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60540/", + "id": 60540, + "name": "Airborne", + "site_detail_url": "https://comicvine.gamespot.com/airborne/4005-60540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60541/", + "id": 60541, + "name": "Boobytrap", + "site_detail_url": "https://comicvine.gamespot.com/boobytrap/4005-60541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60542/", + "id": 60542, + "name": "Rocket Launcher", + "site_detail_url": "https://comicvine.gamespot.com/rocket-launcher/4005-60542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60543/", + "id": 60543, + "name": "Smokescreen", + "site_detail_url": "https://comicvine.gamespot.com/smokescreen/4005-60543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60544/", + "id": 60544, + "name": "Firefight", + "site_detail_url": "https://comicvine.gamespot.com/firefight/4005-60544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60545/", + "id": 60545, + "name": "Eleven", + "site_detail_url": "https://comicvine.gamespot.com/eleven/4005-60545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60553/", + "id": 60553, + "name": "Sabrina Morrell", + "site_detail_url": "https://comicvine.gamespot.com/sabrina-morrell/4005-60553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60557/", + "id": 60557, + "name": "Jack Serious", + "site_detail_url": "https://comicvine.gamespot.com/jack-serious/4005-60557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60558/", + "id": 60558, + "name": "P.J. James", + "site_detail_url": "https://comicvine.gamespot.com/pj-james/4005-60558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60559/", + "id": 60559, + "name": "Orville Jones", + "site_detail_url": "https://comicvine.gamespot.com/orville-jones/4005-60559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60560/", + "id": 60560, + "name": "James MacReedy", + "site_detail_url": "https://comicvine.gamespot.com/james-macreedy/4005-60560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60561/", + "id": 60561, + "name": "Harold Magasy", + "site_detail_url": "https://comicvine.gamespot.com/harold-magasy/4005-60561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60562/", + "id": 60562, + "name": "Jonas Marlin", + "site_detail_url": "https://comicvine.gamespot.com/jonas-marlin/4005-60562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60563/", + "id": 60563, + "name": "Jeremy Mchele", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-mchele/4005-60563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60564/", + "id": 60564, + "name": "Klaus Mendelhaus", + "site_detail_url": "https://comicvine.gamespot.com/klaus-mendelhaus/4005-60564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60565/", + "id": 60565, + "name": "Meriam", + "site_detail_url": "https://comicvine.gamespot.com/meriam/4005-60565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60566/", + "id": 60566, + "name": "Tristram Micawber", + "site_detail_url": "https://comicvine.gamespot.com/tristram-micawber/4005-60566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60567/", + "id": 60567, + "name": "Miclas", + "site_detail_url": "https://comicvine.gamespot.com/miclas/4005-60567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60568/", + "id": 60568, + "name": "Phillip Milford", + "site_detail_url": "https://comicvine.gamespot.com/phillip-milford/4005-60568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60569/", + "id": 60569, + "name": "Betsy Milford", + "site_detail_url": "https://comicvine.gamespot.com/betsy-milford/4005-60569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60570/", + "id": 60570, + "name": "Mindstorm", + "site_detail_url": "https://comicvine.gamespot.com/mindstorm/4005-60570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60571/", + "id": 60571, + "name": "Miri", + "site_detail_url": "https://comicvine.gamespot.com/miri/4005-60571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60572/", + "id": 60572, + "name": "Andrew Malvern", + "site_detail_url": "https://comicvine.gamespot.com/andrew-malvern/4005-60572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60573/", + "id": 60573, + "name": "Ola Montero", + "site_detail_url": "https://comicvine.gamespot.com/ola-montero/4005-60573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60574/", + "id": 60574, + "name": "Randi Moore", + "site_detail_url": "https://comicvine.gamespot.com/randi-moore/4005-60574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60575/", + "id": 60575, + "name": "Priscilla Morrison", + "site_detail_url": "https://comicvine.gamespot.com/priscilla-morrison/4005-60575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60579/", + "id": 60579, + "name": "Stella Houston", + "site_detail_url": "https://comicvine.gamespot.com/stella-houston/4005-60579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60580/", + "id": 60580, + "name": "Consuela Sanchez", + "site_detail_url": "https://comicvine.gamespot.com/consuela-sanchez/4005-60580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60581/", + "id": 60581, + "name": "Megan McCambridge", + "site_detail_url": "https://comicvine.gamespot.com/megan-mccambridge/4005-60581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60582/", + "id": 60582, + "name": "Myron MacLain", + "site_detail_url": "https://comicvine.gamespot.com/myron-maclain/4005-60582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60583/", + "id": 60583, + "name": "Powersurge", + "site_detail_url": "https://comicvine.gamespot.com/powersurge/4005-60583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60584/", + "id": 60584, + "name": "Larry Carpenter", + "site_detail_url": "https://comicvine.gamespot.com/larry-carpenter/4005-60584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60585/", + "id": 60585, + "name": "Felicia Fawn", + "site_detail_url": "https://comicvine.gamespot.com/felicia-fawn/4005-60585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60586/", + "id": 60586, + "name": "Pete Zamora", + "site_detail_url": "https://comicvine.gamespot.com/pete-zamora/4005-60586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60587/", + "id": 60587, + "name": "Ann Raymond", + "site_detail_url": "https://comicvine.gamespot.com/ann-raymond/4005-60587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60588/", + "id": 60588, + "name": "Father Thompson", + "site_detail_url": "https://comicvine.gamespot.com/father-thompson/4005-60588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60589/", + "id": 60589, + "name": "Nepenthe", + "site_detail_url": "https://comicvine.gamespot.com/nepenthe/4005-60589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60590/", + "id": 60590, + "name": "Dark Man", + "site_detail_url": "https://comicvine.gamespot.com/dark-man/4005-60590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60591/", + "id": 60591, + "name": "Desire", + "site_detail_url": "https://comicvine.gamespot.com/desire/4005-60591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60592/", + "id": 60592, + "name": "Netshape", + "site_detail_url": "https://comicvine.gamespot.com/netshape/4005-60592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60593/", + "id": 60593, + "name": "Nevermind", + "site_detail_url": "https://comicvine.gamespot.com/nevermind/4005-60593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60594/", + "id": 60594, + "name": "Mary-Lynn Norfolk", + "site_detail_url": "https://comicvine.gamespot.com/mary-lynn-norfolk/4005-60594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60595/", + "id": 60595, + "name": "Susan Nowlan", + "site_detail_url": "https://comicvine.gamespot.com/susan-nowlan/4005-60595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60596/", + "id": 60596, + "name": "Maire O'Connell", + "site_detail_url": "https://comicvine.gamespot.com/maire-oconnell/4005-60596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60598/", + "id": 60598, + "name": "Razorhead", + "site_detail_url": "https://comicvine.gamespot.com/razorhead/4005-60598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60599/", + "id": 60599, + "name": "Paragon", + "site_detail_url": "https://comicvine.gamespot.com/paragon/4005-60599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60600/", + "id": 60600, + "name": "Vincent Mangano", + "site_detail_url": "https://comicvine.gamespot.com/vincent-mangano/4005-60600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60601/", + "id": 60601, + "name": "Bobby Peculo", + "site_detail_url": "https://comicvine.gamespot.com/bobby-peculo/4005-60601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60602/", + "id": 60602, + "name": "Passing Cloud", + "site_detail_url": "https://comicvine.gamespot.com/passing-cloud/4005-60602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60603/", + "id": 60603, + "name": "Carlton Velcro", + "site_detail_url": "https://comicvine.gamespot.com/carlton-velcro/4005-60603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60604/", + "id": 60604, + "name": "Phantasm", + "site_detail_url": "https://comicvine.gamespot.com/phantasm/4005-60604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60605/", + "id": 60605, + "name": "Pitbull", + "site_detail_url": "https://comicvine.gamespot.com/pitbull/4005-60605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60606/", + "id": 60606, + "name": "Pstun-Rage", + "site_detail_url": "https://comicvine.gamespot.com/pstun-rage/4005-60606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60607/", + "id": 60607, + "name": "White Dog", + "site_detail_url": "https://comicvine.gamespot.com/white-dog/4005-60607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60608/", + "id": 60608, + "name": "David Purcell", + "site_detail_url": "https://comicvine.gamespot.com/david-purcell/4005-60608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60609/", + "id": 60609, + "name": "Purge", + "site_detail_url": "https://comicvine.gamespot.com/purge/4005-60609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60620/", + "id": 60620, + "name": "Redwing", + "site_detail_url": "https://comicvine.gamespot.com/redwing/4005-60620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60621/", + "id": 60621, + "name": "Charles Reigel", + "site_detail_url": "https://comicvine.gamespot.com/charles-reigel/4005-60621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60622/", + "id": 60622, + "name": "Static Annie", + "site_detail_url": "https://comicvine.gamespot.com/static-annie/4005-60622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60623/", + "id": 60623, + "name": "Leena Wolfe", + "site_detail_url": "https://comicvine.gamespot.com/leena-wolfe/4005-60623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60624/", + "id": 60624, + "name": "Rhodan", + "site_detail_url": "https://comicvine.gamespot.com/rhodan/4005-60624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60625/", + "id": 60625, + "name": "Timmy Rice", + "site_detail_url": "https://comicvine.gamespot.com/timmy-rice/4005-60625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60626/", + "id": 60626, + "name": "Holly Riddley", + "site_detail_url": "https://comicvine.gamespot.com/holly-riddley/4005-60626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60627/", + "id": 60627, + "name": "Jack Riley", + "site_detail_url": "https://comicvine.gamespot.com/jack-riley/4005-60627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60628/", + "id": 60628, + "name": "Roaring Bear", + "site_detail_url": "https://comicvine.gamespot.com/roaring-bear/4005-60628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60629/", + "id": 60629, + "name": "Barney Fiddler", + "site_detail_url": "https://comicvine.gamespot.com/barney-fiddler/4005-60629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60630/", + "id": 60630, + "name": "Senator Warkovsky", + "site_detail_url": "https://comicvine.gamespot.com/senator-warkovsky/4005-60630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60631/", + "id": 60631, + "name": "Bob Russo", + "site_detail_url": "https://comicvine.gamespot.com/bob-russo/4005-60631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60632/", + "id": 60632, + "name": "Desinna", + "site_detail_url": "https://comicvine.gamespot.com/desinna/4005-60632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60633/", + "id": 60633, + "name": "Mandy Greville", + "site_detail_url": "https://comicvine.gamespot.com/mandy-greville/4005-60633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60634/", + "id": 60634, + "name": "Sabo", + "site_detail_url": "https://comicvine.gamespot.com/sabo/4005-60634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60635/", + "id": 60635, + "name": "Sainte-Cloud", + "site_detail_url": "https://comicvine.gamespot.com/sainte-cloud/4005-60635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60636/", + "id": 60636, + "name": "San Francisco Slade", + "site_detail_url": "https://comicvine.gamespot.com/san-francisco-slade/4005-60636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60637/", + "id": 60637, + "name": "Sazae", + "site_detail_url": "https://comicvine.gamespot.com/sazae/4005-60637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60639/", + "id": 60639, + "name": "Scarlet Personage", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-personage/4005-60639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60640/", + "id": 60640, + "name": "Wilhelm Schultz", + "site_detail_url": "https://comicvine.gamespot.com/wilhelm-schultz/4005-60640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60642/", + "id": 60642, + "name": "Shann", + "site_detail_url": "https://comicvine.gamespot.com/shann/4005-60642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60643/", + "id": 60643, + "name": "Slaymaker", + "site_detail_url": "https://comicvine.gamespot.com/slaymaker/4005-60643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60644/", + "id": 60644, + "name": "Spliny", + "site_detail_url": "https://comicvine.gamespot.com/spliny/4005-60644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60645/", + "id": 60645, + "name": "Street Speeder", + "site_detail_url": "https://comicvine.gamespot.com/street-speeder/4005-60645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60646/", + "id": 60646, + "name": "Ward Strongbow", + "site_detail_url": "https://comicvine.gamespot.com/ward-strongbow/4005-60646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60647/", + "id": 60647, + "name": "Harrison Budge", + "site_detail_url": "https://comicvine.gamespot.com/harrison-budge/4005-60647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60648/", + "id": 60648, + "name": "Lo Chin", + "site_detail_url": "https://comicvine.gamespot.com/lo-chin/4005-60648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60649/", + "id": 60649, + "name": "Sui Ti Kama", + "site_detail_url": "https://comicvine.gamespot.com/sui-ti-kama/4005-60649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60650/", + "id": 60650, + "name": "Sultan", + "site_detail_url": "https://comicvine.gamespot.com/sultan/4005-60650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60651/", + "id": 60651, + "name": "Geoffrey Sydenham", + "site_detail_url": "https://comicvine.gamespot.com/geoffrey-sydenham/4005-60651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60653/", + "id": 60653, + "name": "Gunthar the Rigellian", + "site_detail_url": "https://comicvine.gamespot.com/gunthar-the-rigellian/4005-60653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60662/", + "id": 60662, + "name": "Ivy Geller", + "site_detail_url": "https://comicvine.gamespot.com/ivy-geller/4005-60662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60663/", + "id": 60663, + "name": "Norbert Newland", + "site_detail_url": "https://comicvine.gamespot.com/norbert-newland/4005-60663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60664/", + "id": 60664, + "name": "Laura McGuire", + "site_detail_url": "https://comicvine.gamespot.com/laura-mcguire/4005-60664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60665/", + "id": 60665, + "name": "Dean Coburn", + "site_detail_url": "https://comicvine.gamespot.com/dean-coburn/4005-60665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60666/", + "id": 60666, + "name": "Charon", + "site_detail_url": "https://comicvine.gamespot.com/charon/4005-60666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60667/", + "id": 60667, + "name": "Quor", + "site_detail_url": "https://comicvine.gamespot.com/quor/4005-60667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60668/", + "id": 60668, + "name": "Zath", + "site_detail_url": "https://comicvine.gamespot.com/zath/4005-60668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60669/", + "id": 60669, + "name": "Feridun", + "site_detail_url": "https://comicvine.gamespot.com/feridun/4005-60669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60670/", + "id": 60670, + "name": "Jamilah", + "site_detail_url": "https://comicvine.gamespot.com/jamilah/4005-60670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60671/", + "id": 60671, + "name": "Russ Talbert", + "site_detail_url": "https://comicvine.gamespot.com/russ-talbert/4005-60671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60672/", + "id": 60672, + "name": "Tarkas", + "site_detail_url": "https://comicvine.gamespot.com/tarkas/4005-60672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60673/", + "id": 60673, + "name": "Loralee Tate", + "site_detail_url": "https://comicvine.gamespot.com/loralee-tate/4005-60673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60674/", + "id": 60674, + "name": "Daito", + "site_detail_url": "https://comicvine.gamespot.com/daito/4005-60674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60675/", + "id": 60675, + "name": "Doka", + "site_detail_url": "https://comicvine.gamespot.com/doka/4005-60675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60676/", + "id": 60676, + "name": "Enteki", + "site_detail_url": "https://comicvine.gamespot.com/enteki/4005-60676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60677/", + "id": 60677, + "name": "Feruze", + "site_detail_url": "https://comicvine.gamespot.com/feruze/4005-60677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60678/", + "id": 60678, + "name": "Genkotsu", + "site_detail_url": "https://comicvine.gamespot.com/genkotsu/4005-60678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60679/", + "id": 60679, + "name": "Osaku", + "site_detail_url": "https://comicvine.gamespot.com/osaku/4005-60679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60680/", + "id": 60680, + "name": "Tekagi", + "site_detail_url": "https://comicvine.gamespot.com/tekagi/4005-60680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60681/", + "id": 60681, + "name": "Terhali", + "site_detail_url": "https://comicvine.gamespot.com/terhali/4005-60681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60682/", + "id": 60682, + "name": "Termagaira", + "site_detail_url": "https://comicvine.gamespot.com/termagaira/4005-60682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60683/", + "id": 60683, + "name": "Megaira", + "site_detail_url": "https://comicvine.gamespot.com/megaira/4005-60683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60684/", + "id": 60684, + "name": "William Thorpe", + "site_detail_url": "https://comicvine.gamespot.com/william-thorpe/4005-60684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60685/", + "id": 60685, + "name": "Top Man", + "site_detail_url": "https://comicvine.gamespot.com/top-man/4005-60685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60686/", + "id": 60686, + "name": "Truthsayer", + "site_detail_url": "https://comicvine.gamespot.com/truthsayer/4005-60686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60689/", + "id": 60689, + "name": "Ling McPherson", + "site_detail_url": "https://comicvine.gamespot.com/ling-mcpherson/4005-60689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60690/", + "id": 60690, + "name": "Rattler", + "site_detail_url": "https://comicvine.gamespot.com/rattler/4005-60690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60693/", + "id": 60693, + "name": "Yrdisis", + "site_detail_url": "https://comicvine.gamespot.com/yrdisis/4005-60693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60694/", + "id": 60694, + "name": "Theron Atlanta", + "site_detail_url": "https://comicvine.gamespot.com/theron-atlanta/4005-60694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60695/", + "id": 60695, + "name": "Yorgon Tykkio", + "site_detail_url": "https://comicvine.gamespot.com/yorgon-tykkio/4005-60695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60696/", + "id": 60696, + "name": "Cat", + "site_detail_url": "https://comicvine.gamespot.com/cat/4005-60696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60700/", + "id": 60700, + "name": "Wilma Calvin", + "site_detail_url": "https://comicvine.gamespot.com/wilma-calvin/4005-60700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60703/", + "id": 60703, + "name": "Talon", + "site_detail_url": "https://comicvine.gamespot.com/talon/4005-60703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60709/", + "id": 60709, + "name": "Sui-San", + "site_detail_url": "https://comicvine.gamespot.com/sui-san/4005-60709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60710/", + "id": 60710, + "name": "Rachel Brown", + "site_detail_url": "https://comicvine.gamespot.com/rachel-brown/4005-60710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60711/", + "id": 60711, + "name": "Elizabeth", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth/4005-60711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60714/", + "id": 60714, + "name": "Human Torch 2099", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-2099/4005-60714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60715/", + "id": 60715, + "name": "Judy Harmon", + "site_detail_url": "https://comicvine.gamespot.com/judy-harmon/4005-60715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60716/", + "id": 60716, + "name": "Carly Alvarez", + "site_detail_url": "https://comicvine.gamespot.com/carly-alvarez/4005-60716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60717/", + "id": 60717, + "name": "Kraken", + "site_detail_url": "https://comicvine.gamespot.com/kraken/4005-60717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60718/", + "id": 60718, + "name": "The Hive", + "site_detail_url": "https://comicvine.gamespot.com/the-hive/4005-60718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60719/", + "id": 60719, + "name": "Sage", + "site_detail_url": "https://comicvine.gamespot.com/sage/4005-60719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60720/", + "id": 60720, + "name": "Big Man", + "site_detail_url": "https://comicvine.gamespot.com/big-man/4005-60720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60721/", + "id": 60721, + "name": "Iron Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/iron-butterfly/4005-60721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60722/", + "id": 60722, + "name": "Boris", + "site_detail_url": "https://comicvine.gamespot.com/boris/4005-60722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60723/", + "id": 60723, + "name": "Hunter Drone", + "site_detail_url": "https://comicvine.gamespot.com/hunter-drone/4005-60723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60725/", + "id": 60725, + "name": "Gloria Brickman", + "site_detail_url": "https://comicvine.gamespot.com/gloria-brickman/4005-60725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60730/", + "id": 60730, + "name": "The Archenemy", + "site_detail_url": "https://comicvine.gamespot.com/the-archenemy/4005-60730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60735/", + "id": 60735, + "name": "Erista", + "site_detail_url": "https://comicvine.gamespot.com/erista/4005-60735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60736/", + "id": 60736, + "name": "Anibal", + "site_detail_url": "https://comicvine.gamespot.com/anibal/4005-60736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60741/", + "id": 60741, + "name": "Red Rajah", + "site_detail_url": "https://comicvine.gamespot.com/red-rajah/4005-60741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60755/", + "id": 60755, + "name": "The Fulcrum", + "site_detail_url": "https://comicvine.gamespot.com/the-fulcrum/4005-60755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60768/", + "id": 60768, + "name": "Reptil", + "site_detail_url": "https://comicvine.gamespot.com/reptil/4005-60768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60776/", + "id": 60776, + "name": "Master Izo", + "site_detail_url": "https://comicvine.gamespot.com/master-izo/4005-60776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60782/", + "id": 60782, + "name": "Walking Stiletto", + "site_detail_url": "https://comicvine.gamespot.com/walking-stiletto/4005-60782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60783/", + "id": 60783, + "name": "Warhead", + "site_detail_url": "https://comicvine.gamespot.com/warhead/4005-60783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60784/", + "id": 60784, + "name": "Donald Smithfield", + "site_detail_url": "https://comicvine.gamespot.com/donald-smithfield/4005-60784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60785/", + "id": 60785, + "name": "Jillian Wong", + "site_detail_url": "https://comicvine.gamespot.com/jillian-wong/4005-60785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60786/", + "id": 60786, + "name": "Xantia", + "site_detail_url": "https://comicvine.gamespot.com/xantia/4005-60786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60787/", + "id": 60787, + "name": "Xenophobic Man", + "site_detail_url": "https://comicvine.gamespot.com/xenophobic-man/4005-60787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60793/", + "id": 60793, + "name": "Val Rhymin", + "site_detail_url": "https://comicvine.gamespot.com/val-rhymin/4005-60793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60818/", + "id": 60818, + "name": "Ned Whitter", + "site_detail_url": "https://comicvine.gamespot.com/ned-whitter/4005-60818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60819/", + "id": 60819, + "name": "Nissi", + "site_detail_url": "https://comicvine.gamespot.com/nissi/4005-60819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60820/", + "id": 60820, + "name": "Lieutenant Dunn", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-dunn/4005-60820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60821/", + "id": 60821, + "name": "Private Statter", + "site_detail_url": "https://comicvine.gamespot.com/private-statter/4005-60821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60822/", + "id": 60822, + "name": "Double Bonus", + "site_detail_url": "https://comicvine.gamespot.com/double-bonus/4005-60822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60823/", + "id": 60823, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-60823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60824/", + "id": 60824, + "name": "Punisher General", + "site_detail_url": "https://comicvine.gamespot.com/punisher-general/4005-60824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60867/", + "id": 60867, + "name": "Broadside", + "site_detail_url": "https://comicvine.gamespot.com/broadside/4005-60867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60868/", + "id": 60868, + "name": "Joseph MacTaggert", + "site_detail_url": "https://comicvine.gamespot.com/joseph-mactaggert/4005-60868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60871/", + "id": 60871, + "name": "Photon", + "site_detail_url": "https://comicvine.gamespot.com/photon/4005-60871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60876/", + "id": 60876, + "name": "Sigurd of Vanaheim", + "site_detail_url": "https://comicvine.gamespot.com/sigurd-of-vanaheim/4005-60876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60877/", + "id": 60877, + "name": "Tascela", + "site_detail_url": "https://comicvine.gamespot.com/tascela/4005-60877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60878/", + "id": 60878, + "name": "Tolkemec", + "site_detail_url": "https://comicvine.gamespot.com/tolkemec/4005-60878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60881/", + "id": 60881, + "name": "Landslide", + "site_detail_url": "https://comicvine.gamespot.com/landslide/4005-60881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60883/", + "id": 60883, + "name": "Copper Kidd", + "site_detail_url": "https://comicvine.gamespot.com/copper-kidd/4005-60883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60884/", + "id": 60884, + "name": "Hotwing", + "site_detail_url": "https://comicvine.gamespot.com/hotwing/4005-60884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60885/", + "id": 60885, + "name": "Melodia", + "site_detail_url": "https://comicvine.gamespot.com/melodia/4005-60885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60886/", + "id": 60886, + "name": "Mo-Lec-U-Lar", + "site_detail_url": "https://comicvine.gamespot.com/mo-lec-u-lar/4005-60886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60889/", + "id": 60889, + "name": "Stargazer", + "site_detail_url": "https://comicvine.gamespot.com/stargazer/4005-60889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60891/", + "id": 60891, + "name": "Franz Gruber", + "site_detail_url": "https://comicvine.gamespot.com/franz-gruber/4005-60891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60893/", + "id": 60893, + "name": "Fievel", + "site_detail_url": "https://comicvine.gamespot.com/fievel/4005-60893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60942/", + "id": 60942, + "name": "Gabrielle", + "site_detail_url": "https://comicvine.gamespot.com/gabrielle/4005-60942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60943/", + "id": 60943, + "name": "Inez", + "site_detail_url": "https://comicvine.gamespot.com/inez/4005-60943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60944/", + "id": 60944, + "name": "Crazy Nate", + "site_detail_url": "https://comicvine.gamespot.com/crazy-nate/4005-60944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60945/", + "id": 60945, + "name": "Belle", + "site_detail_url": "https://comicvine.gamespot.com/belle/4005-60945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60949/", + "id": 60949, + "name": "Ambara", + "site_detail_url": "https://comicvine.gamespot.com/ambara/4005-60949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60950/", + "id": 60950, + "name": "Koth", + "site_detail_url": "https://comicvine.gamespot.com/koth/4005-60950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60951/", + "id": 60951, + "name": "Lavour", + "site_detail_url": "https://comicvine.gamespot.com/lavour/4005-60951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60952/", + "id": 60952, + "name": "Moltar", + "site_detail_url": "https://comicvine.gamespot.com/moltar/4005-60952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60953/", + "id": 60953, + "name": "Stalax", + "site_detail_url": "https://comicvine.gamespot.com/stalax/4005-60953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60954/", + "id": 60954, + "name": "Warbow", + "site_detail_url": "https://comicvine.gamespot.com/warbow/4005-60954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60955/", + "id": 60955, + "name": "Zardeth", + "site_detail_url": "https://comicvine.gamespot.com/zardeth/4005-60955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60956/", + "id": 60956, + "name": "Super Ninja", + "site_detail_url": "https://comicvine.gamespot.com/super-ninja/4005-60956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60957/", + "id": 60957, + "name": "Pepper", + "site_detail_url": "https://comicvine.gamespot.com/pepper/4005-60957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60961/", + "id": 60961, + "name": "Archeology Jackson", + "site_detail_url": "https://comicvine.gamespot.com/archeology-jackson/4005-60961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60964/", + "id": 60964, + "name": "Auger", + "site_detail_url": "https://comicvine.gamespot.com/auger/4005-60964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60965/", + "id": 60965, + "name": "Arzon", + "site_detail_url": "https://comicvine.gamespot.com/arzon/4005-60965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60966/", + "id": 60966, + "name": "Cravex", + "site_detail_url": "https://comicvine.gamespot.com/cravex/4005-60966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60967/", + "id": 60967, + "name": "Cryotek", + "site_detail_url": "https://comicvine.gamespot.com/cryotek/4005-60967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60968/", + "id": 60968, + "name": "Dark Storm", + "site_detail_url": "https://comicvine.gamespot.com/dark-storm/4005-60968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60969/", + "id": 60969, + "name": "Ectar", + "site_detail_url": "https://comicvine.gamespot.com/ectar/4005-60969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60970/", + "id": 60970, + "name": "Feryl", + "site_detail_url": "https://comicvine.gamespot.com/feryl/4005-60970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60971/", + "id": 60971, + "name": "Galadria", + "site_detail_url": "https://comicvine.gamespot.com/galadria/4005-60971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60972/", + "id": 60972, + "name": "Leoric", + "site_detail_url": "https://comicvine.gamespot.com/leoric/4005-60972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60973/", + "id": 60973, + "name": "Lexor", + "site_detail_url": "https://comicvine.gamespot.com/lexor/4005-60973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60974/", + "id": 60974, + "name": "Merklynn", + "site_detail_url": "https://comicvine.gamespot.com/merklynn/4005-60974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60975/", + "id": 60975, + "name": "Mortdred", + "site_detail_url": "https://comicvine.gamespot.com/mortdred/4005-60975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60976/", + "id": 60976, + "name": "Reekon", + "site_detail_url": "https://comicvine.gamespot.com/reekon/4005-60976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60977/", + "id": 60977, + "name": "Sindar", + "site_detail_url": "https://comicvine.gamespot.com/sindar/4005-60977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60978/", + "id": 60978, + "name": "Virulina", + "site_detail_url": "https://comicvine.gamespot.com/virulina/4005-60978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60979/", + "id": 60979, + "name": "Witterquick", + "site_detail_url": "https://comicvine.gamespot.com/witterquick/4005-60979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60980/", + "id": 60980, + "name": "Zawavari", + "site_detail_url": "https://comicvine.gamespot.com/zawavari/4005-60980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60989/", + "id": 60989, + "name": "Madmartigan", + "site_detail_url": "https://comicvine.gamespot.com/madmartigan/4005-60989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60990/", + "id": 60990, + "name": "Willow Ufgood", + "site_detail_url": "https://comicvine.gamespot.com/willow-ufgood/4005-60990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60996/", + "id": 60996, + "name": "Zefram Cochrane", + "site_detail_url": "https://comicvine.gamespot.com/zefram-cochrane/4005-60996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-60998/", + "id": 60998, + "name": "Ilia", + "site_detail_url": "https://comicvine.gamespot.com/ilia/4005-60998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61001/", + "id": 61001, + "name": "Evenor", + "site_detail_url": "https://comicvine.gamespot.com/evenor/4005-61001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61003/", + "id": 61003, + "name": "General Kael", + "site_detail_url": "https://comicvine.gamespot.com/general-kael/4005-61003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61004/", + "id": 61004, + "name": "Queen Bavmorda", + "site_detail_url": "https://comicvine.gamespot.com/queen-bavmorda/4005-61004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61113/", + "id": 61113, + "name": "Vina", + "site_detail_url": "https://comicvine.gamespot.com/vina/4005-61113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61194/", + "id": 61194, + "name": "Supernalia", + "site_detail_url": "https://comicvine.gamespot.com/supernalia/4005-61194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61204/", + "id": 61204, + "name": "Wind Witch", + "site_detail_url": "https://comicvine.gamespot.com/wind-witch/4005-61204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61221/", + "id": 61221, + "name": "Cauldron", + "site_detail_url": "https://comicvine.gamespot.com/cauldron/4005-61221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61224/", + "id": 61224, + "name": "Yi Yang", + "site_detail_url": "https://comicvine.gamespot.com/yi-yang/4005-61224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61244/", + "id": 61244, + "name": "Avarrish", + "site_detail_url": "https://comicvine.gamespot.com/avarrish/4005-61244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61253/", + "id": 61253, + "name": "Neptunus", + "site_detail_url": "https://comicvine.gamespot.com/neptunus/4005-61253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61254/", + "id": 61254, + "name": "Centaurio", + "site_detail_url": "https://comicvine.gamespot.com/centaurio/4005-61254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61255/", + "id": 61255, + "name": "Siren", + "site_detail_url": "https://comicvine.gamespot.com/siren/4005-61255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61256/", + "id": 61256, + "name": "Minotaurus", + "site_detail_url": "https://comicvine.gamespot.com/minotaurus/4005-61256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61257/", + "id": 61257, + "name": "The Fury", + "site_detail_url": "https://comicvine.gamespot.com/the-fury/4005-61257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61265/", + "id": 61265, + "name": "Illuminator", + "site_detail_url": "https://comicvine.gamespot.com/illuminator/4005-61265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61276/", + "id": 61276, + "name": "Jugger Grimrod", + "site_detail_url": "https://comicvine.gamespot.com/jugger-grimrod/4005-61276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61288/", + "id": 61288, + "name": "Lucia Von Bardas", + "site_detail_url": "https://comicvine.gamespot.com/lucia-von-bardas/4005-61288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61289/", + "id": 61289, + "name": "Puishannt", + "site_detail_url": "https://comicvine.gamespot.com/puishannt/4005-61289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61290/", + "id": 61290, + "name": "Unnthinnk", + "site_detail_url": "https://comicvine.gamespot.com/unnthinnk/4005-61290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61291/", + "id": 61291, + "name": "Hyppokri", + "site_detail_url": "https://comicvine.gamespot.com/hyppokri/4005-61291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61292/", + "id": 61292, + "name": "Centauria", + "site_detail_url": "https://comicvine.gamespot.com/centauria/4005-61292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61295/", + "id": 61295, + "name": "Mahaprlaya", + "site_detail_url": "https://comicvine.gamespot.com/mahaprlaya/4005-61295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61314/", + "id": 61314, + "name": "Korgo", + "site_detail_url": "https://comicvine.gamespot.com/korgo/4005-61314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61320/", + "id": 61320, + "name": "Alexander Erde", + "site_detail_url": "https://comicvine.gamespot.com/alexander-erde/4005-61320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61321/", + "id": 61321, + "name": "Boudicca", + "site_detail_url": "https://comicvine.gamespot.com/boudicca/4005-61321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61331/", + "id": 61331, + "name": "Agnar of Vanaheim", + "site_detail_url": "https://comicvine.gamespot.com/agnar-of-vanaheim/4005-61331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61332/", + "id": 61332, + "name": "Greyval Grimson", + "site_detail_url": "https://comicvine.gamespot.com/greyval-grimson/4005-61332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61333/", + "id": 61333, + "name": "Ahh", + "site_detail_url": "https://comicvine.gamespot.com/ahh/4005-61333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61334/", + "id": 61334, + "name": "Akatora", + "site_detail_url": "https://comicvine.gamespot.com/akatora/4005-61334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61335/", + "id": 61335, + "name": "Al-Khalad", + "site_detail_url": "https://comicvine.gamespot.com/al-khalad/4005-61335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61336/", + "id": 61336, + "name": "Albert DeVoor", + "site_detail_url": "https://comicvine.gamespot.com/albert-devoor/4005-61336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61337/", + "id": 61337, + "name": "Alex DePaul", + "site_detail_url": "https://comicvine.gamespot.com/alex-depaul/4005-61337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61342/", + "id": 61342, + "name": "Roadie", + "site_detail_url": "https://comicvine.gamespot.com/roadie/4005-61342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61343/", + "id": 61343, + "name": "Ana Kravinoff", + "site_detail_url": "https://comicvine.gamespot.com/ana-kravinoff/4005-61343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61344/", + "id": 61344, + "name": "Shou-Lao the Undying", + "site_detail_url": "https://comicvine.gamespot.com/shou-lao-the-undying/4005-61344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61345/", + "id": 61345, + "name": "Anne-Marie Baker", + "site_detail_url": "https://comicvine.gamespot.com/anne-marie-baker/4005-61345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61346/", + "id": 61346, + "name": "Argon", + "site_detail_url": "https://comicvine.gamespot.com/argon/4005-61346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61347/", + "id": 61347, + "name": "Arianna Jankos", + "site_detail_url": "https://comicvine.gamespot.com/arianna-jankos/4005-61347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61348/", + "id": 61348, + "name": "Atsuko", + "site_detail_url": "https://comicvine.gamespot.com/atsuko/4005-61348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61353/", + "id": 61353, + "name": "Baranka", + "site_detail_url": "https://comicvine.gamespot.com/baranka/4005-61353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61354/", + "id": 61354, + "name": "Damocles", + "site_detail_url": "https://comicvine.gamespot.com/damocles/4005-61354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61356/", + "id": 61356, + "name": "Bennington Brown", + "site_detail_url": "https://comicvine.gamespot.com/bennington-brown/4005-61356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61360/", + "id": 61360, + "name": "Bridgit Shane", + "site_detail_url": "https://comicvine.gamespot.com/bridgit-shane/4005-61360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61373/", + "id": 61373, + "name": "Marcella DiFalco", + "site_detail_url": "https://comicvine.gamespot.com/marcella-difalco/4005-61373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61388/", + "id": 61388, + "name": "Horse", + "site_detail_url": "https://comicvine.gamespot.com/horse/4005-61388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61407/", + "id": 61407, + "name": "X the Marvel", + "site_detail_url": "https://comicvine.gamespot.com/x-the-marvel/4005-61407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61423/", + "id": 61423, + "name": "The Crooked Man", + "site_detail_url": "https://comicvine.gamespot.com/the-crooked-man/4005-61423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61424/", + "id": 61424, + "name": "The Deacon", + "site_detail_url": "https://comicvine.gamespot.com/the-deacon/4005-61424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61433/", + "id": 61433, + "name": "Brother Mutant", + "site_detail_url": "https://comicvine.gamespot.com/brother-mutant/4005-61433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61435/", + "id": 61435, + "name": "Scarlet Warlock", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-warlock/4005-61435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61436/", + "id": 61436, + "name": "Captain Corbett", + "site_detail_url": "https://comicvine.gamespot.com/captain-corbett/4005-61436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61438/", + "id": 61438, + "name": "Captain Mansfield", + "site_detail_url": "https://comicvine.gamespot.com/captain-mansfield/4005-61438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61441/", + "id": 61441, + "name": "Carrie Bradley", + "site_detail_url": "https://comicvine.gamespot.com/carrie-bradley/4005-61441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61455/", + "id": 61455, + "name": "Aaron Thorne", + "site_detail_url": "https://comicvine.gamespot.com/aaron-thorne/4005-61455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61457/", + "id": 61457, + "name": "Daemon", + "site_detail_url": "https://comicvine.gamespot.com/daemon/4005-61457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61458/", + "id": 61458, + "name": "Hecat'e", + "site_detail_url": "https://comicvine.gamespot.com/hecate/4005-61458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61474/", + "id": 61474, + "name": "Skip Collins", + "site_detail_url": "https://comicvine.gamespot.com/skip-collins/4005-61474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61475/", + "id": 61475, + "name": "Dheilius Shreck", + "site_detail_url": "https://comicvine.gamespot.com/dheilius-shreck/4005-61475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61490/", + "id": 61490, + "name": "Ndrianadhary", + "site_detail_url": "https://comicvine.gamespot.com/ndrianadhary/4005-61490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61492/", + "id": 61492, + "name": "Li Park", + "site_detail_url": "https://comicvine.gamespot.com/li-park/4005-61492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61493/", + "id": 61493, + "name": "Jubal", + "site_detail_url": "https://comicvine.gamespot.com/jubal/4005-61493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61495/", + "id": 61495, + "name": "Henry Russo", + "site_detail_url": "https://comicvine.gamespot.com/henry-russo/4005-61495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61496/", + "id": 61496, + "name": "Cerena Taylor", + "site_detail_url": "https://comicvine.gamespot.com/cerena-taylor/4005-61496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61497/", + "id": 61497, + "name": "Chandra O'Keefe", + "site_detail_url": "https://comicvine.gamespot.com/chandra-okeefe/4005-61497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61498/", + "id": 61498, + "name": "Chi-Chee", + "site_detail_url": "https://comicvine.gamespot.com/chi-chee/4005-61498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61499/", + "id": 61499, + "name": "Kāne Milohai", + "site_detail_url": "https://comicvine.gamespot.com/kane-milohai/4005-61499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61508/", + "id": 61508, + "name": "Commander Courage", + "site_detail_url": "https://comicvine.gamespot.com/commander-courage/4005-61508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61509/", + "id": 61509, + "name": "Commodore Q", + "site_detail_url": "https://comicvine.gamespot.com/commodore-q/4005-61509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61510/", + "id": 61510, + "name": "Ultimator", + "site_detail_url": "https://comicvine.gamespot.com/ultimator/4005-61510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61511/", + "id": 61511, + "name": "Cypress", + "site_detail_url": "https://comicvine.gamespot.com/cypress/4005-61511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61514/", + "id": 61514, + "name": "Shou-Hsing", + "site_detail_url": "https://comicvine.gamespot.com/shou-hsing/4005-61514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61516/", + "id": 61516, + "name": "D'narda", + "site_detail_url": "https://comicvine.gamespot.com/dnarda/4005-61516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61517/", + "id": 61517, + "name": "Death-Stroke", + "site_detail_url": "https://comicvine.gamespot.com/death-stroke/4005-61517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61518/", + "id": 61518, + "name": "Dmitri Ivankov", + "site_detail_url": "https://comicvine.gamespot.com/dmitri-ivankov/4005-61518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61519/", + "id": 61519, + "name": "Doctor Pike", + "site_detail_url": "https://comicvine.gamespot.com/doctor-pike/4005-61519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61520/", + "id": 61520, + "name": "Doctor Zero", + "site_detail_url": "https://comicvine.gamespot.com/doctor-zero/4005-61520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61521/", + "id": 61521, + "name": "Doktor Duane", + "site_detail_url": "https://comicvine.gamespot.com/doktor-duane/4005-61521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61527/", + "id": 61527, + "name": "Okonorote", + "site_detail_url": "https://comicvine.gamespot.com/okonorote/4005-61527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61548/", + "id": 61548, + "name": "Jerzgal Zadu", + "site_detail_url": "https://comicvine.gamespot.com/jerzgal-zadu/4005-61548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61553/", + "id": 61553, + "name": "Malachi", + "site_detail_url": "https://comicvine.gamespot.com/malachi/4005-61553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61555/", + "id": 61555, + "name": "The Beast", + "site_detail_url": "https://comicvine.gamespot.com/the-beast/4005-61555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61559/", + "id": 61559, + "name": "Adam Manna", + "site_detail_url": "https://comicvine.gamespot.com/adam-manna/4005-61559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61599/", + "id": 61599, + "name": "Alcina", + "site_detail_url": "https://comicvine.gamespot.com/alcina/4005-61599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61623/", + "id": 61623, + "name": "Cassandra Romulus", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-romulus/4005-61623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61634/", + "id": 61634, + "name": "Ursula Lensky", + "site_detail_url": "https://comicvine.gamespot.com/ursula-lensky/4005-61634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61657/", + "id": 61657, + "name": "Mr. Punch", + "site_detail_url": "https://comicvine.gamespot.com/mr-punch/4005-61657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61660/", + "id": 61660, + "name": "Darlene Magniconte", + "site_detail_url": "https://comicvine.gamespot.com/darlene-magniconte/4005-61660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61665/", + "id": 61665, + "name": "S'kaan", + "site_detail_url": "https://comicvine.gamespot.com/skaan/4005-61665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61670/", + "id": 61670, + "name": "Crag", + "site_detail_url": "https://comicvine.gamespot.com/crag/4005-61670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61671/", + "id": 61671, + "name": "Avian", + "site_detail_url": "https://comicvine.gamespot.com/avian/4005-61671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61674/", + "id": 61674, + "name": "Mind-Monster", + "site_detail_url": "https://comicvine.gamespot.com/mind-monster/4005-61674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61683/", + "id": 61683, + "name": "Quan Yaozu", + "site_detail_url": "https://comicvine.gamespot.com/quan-yaozu/4005-61683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61684/", + "id": 61684, + "name": "Bei Ming-Tian", + "site_detail_url": "https://comicvine.gamespot.com/bei-ming-tian/4005-61684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61685/", + "id": 61685, + "name": "Wah Sing-Rand", + "site_detail_url": "https://comicvine.gamespot.com/wah-sing-rand/4005-61685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61704/", + "id": 61704, + "name": "Spangle", + "site_detail_url": "https://comicvine.gamespot.com/spangle/4005-61704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61709/", + "id": 61709, + "name": "Jake", + "site_detail_url": "https://comicvine.gamespot.com/jake/4005-61709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61714/", + "id": 61714, + "name": "Mercedes Wilson", + "site_detail_url": "https://comicvine.gamespot.com/mercedes-wilson/4005-61714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61745/", + "id": 61745, + "name": "Computo", + "site_detail_url": "https://comicvine.gamespot.com/computo/4005-61745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61751/", + "id": 61751, + "name": "Dimensional Man", + "site_detail_url": "https://comicvine.gamespot.com/dimensional-man/4005-61751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61756/", + "id": 61756, + "name": "Manphibian", + "site_detail_url": "https://comicvine.gamespot.com/manphibian/4005-61756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61758/", + "id": 61758, + "name": "Joshua Pryce", + "site_detail_url": "https://comicvine.gamespot.com/joshua-pryce/4005-61758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61766/", + "id": 61766, + "name": "Fangu", + "site_detail_url": "https://comicvine.gamespot.com/fangu/4005-61766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61769/", + "id": 61769, + "name": "Death Master", + "site_detail_url": "https://comicvine.gamespot.com/death-master/4005-61769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61771/", + "id": 61771, + "name": "Bellil", + "site_detail_url": "https://comicvine.gamespot.com/bellil/4005-61771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61772/", + "id": 61772, + "name": "Black Metal", + "site_detail_url": "https://comicvine.gamespot.com/black-metal/4005-61772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61774/", + "id": 61774, + "name": "Ursula", + "site_detail_url": "https://comicvine.gamespot.com/ursula/4005-61774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61775/", + "id": 61775, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/prodigy/4005-61775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61776/", + "id": 61776, + "name": "Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/mayhem/4005-61776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61778/", + "id": 61778, + "name": "Georg Odekirk", + "site_detail_url": "https://comicvine.gamespot.com/georg-odekirk/4005-61778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61789/", + "id": 61789, + "name": "Combo Man", + "site_detail_url": "https://comicvine.gamespot.com/combo-man/4005-61789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61790/", + "id": 61790, + "name": "Mad Viking", + "site_detail_url": "https://comicvine.gamespot.com/mad-viking/4005-61790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61802/", + "id": 61802, + "name": "Professor Baldwin", + "site_detail_url": "https://comicvine.gamespot.com/professor-baldwin/4005-61802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61803/", + "id": 61803, + "name": "Bimbeau", + "site_detail_url": "https://comicvine.gamespot.com/bimbeau/4005-61803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61807/", + "id": 61807, + "name": "Josh Atwater", + "site_detail_url": "https://comicvine.gamespot.com/josh-atwater/4005-61807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61808/", + "id": 61808, + "name": "Tapeworm Cosmic", + "site_detail_url": "https://comicvine.gamespot.com/tapeworm-cosmic/4005-61808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61815/", + "id": 61815, + "name": "Ghost of El Condor", + "site_detail_url": "https://comicvine.gamespot.com/ghost-of-el-condor/4005-61815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61816/", + "id": 61816, + "name": "Arthur Perry", + "site_detail_url": "https://comicvine.gamespot.com/arthur-perry/4005-61816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61827/", + "id": 61827, + "name": "The Futurist", + "site_detail_url": "https://comicvine.gamespot.com/the-futurist/4005-61827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61878/", + "id": 61878, + "name": "The Head", + "site_detail_url": "https://comicvine.gamespot.com/the-head/4005-61878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61892/", + "id": 61892, + "name": "Sadie Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/sadie-sinclair/4005-61892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61898/", + "id": 61898, + "name": "Shezada", + "site_detail_url": "https://comicvine.gamespot.com/shezada/4005-61898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61901/", + "id": 61901, + "name": "Holly LaDonna", + "site_detail_url": "https://comicvine.gamespot.com/holly-ladonna/4005-61901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61905/", + "id": 61905, + "name": "Stardust", + "site_detail_url": "https://comicvine.gamespot.com/stardust/4005-61905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61926/", + "id": 61926, + "name": "Threkker", + "site_detail_url": "https://comicvine.gamespot.com/threkker/4005-61926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61927/", + "id": 61927, + "name": "Rose", + "site_detail_url": "https://comicvine.gamespot.com/rose/4005-61927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61932/", + "id": 61932, + "name": "Gull", + "site_detail_url": "https://comicvine.gamespot.com/gull/4005-61932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61933/", + "id": 61933, + "name": "Metallique", + "site_detail_url": "https://comicvine.gamespot.com/metallique/4005-61933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61934/", + "id": 61934, + "name": "Violet Sanchez", + "site_detail_url": "https://comicvine.gamespot.com/violet-sanchez/4005-61934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61935/", + "id": 61935, + "name": "Dezmond Harris", + "site_detail_url": "https://comicvine.gamespot.com/dezmond-harris/4005-61935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61936/", + "id": 61936, + "name": "Meru", + "site_detail_url": "https://comicvine.gamespot.com/meru/4005-61936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61942/", + "id": 61942, + "name": "Roach", + "site_detail_url": "https://comicvine.gamespot.com/roach/4005-61942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61947/", + "id": 61947, + "name": "Margaret Power", + "site_detail_url": "https://comicvine.gamespot.com/margaret-power/4005-61947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61948/", + "id": 61948, + "name": "Tomas Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/tomas-rodriguez/4005-61948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61949/", + "id": 61949, + "name": "Rolfe Harrison", + "site_detail_url": "https://comicvine.gamespot.com/rolfe-harrison/4005-61949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61950/", + "id": 61950, + "name": "Roy Stone", + "site_detail_url": "https://comicvine.gamespot.com/roy-stone/4005-61950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61957/", + "id": 61957, + "name": "Bridget O'Neil", + "site_detail_url": "https://comicvine.gamespot.com/bridget-oneil/4005-61957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61958/", + "id": 61958, + "name": "Cassandra Richards", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-richards/4005-61958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61960/", + "id": 61960, + "name": "Synthia Naip", + "site_detail_url": "https://comicvine.gamespot.com/synthia-naip/4005-61960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61965/", + "id": 61965, + "name": "Red Feather", + "site_detail_url": "https://comicvine.gamespot.com/red-feather/4005-61965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61968/", + "id": 61968, + "name": "Great Mongoose", + "site_detail_url": "https://comicvine.gamespot.com/great-mongoose/4005-61968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61969/", + "id": 61969, + "name": "Wishing Man", + "site_detail_url": "https://comicvine.gamespot.com/wishing-man/4005-61969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61974/", + "id": 61974, + "name": "Catastrophus", + "site_detail_url": "https://comicvine.gamespot.com/catastrophus/4005-61974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-61996/", + "id": 61996, + "name": "Ms. Lion", + "site_detail_url": "https://comicvine.gamespot.com/ms-lion/4005-61996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62012/", + "id": 62012, + "name": "Megan Summers", + "site_detail_url": "https://comicvine.gamespot.com/megan-summers/4005-62012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62014/", + "id": 62014, + "name": "Ivory", + "site_detail_url": "https://comicvine.gamespot.com/ivory/4005-62014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62015/", + "id": 62015, + "name": "Sati", + "site_detail_url": "https://comicvine.gamespot.com/sati/4005-62015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62018/", + "id": 62018, + "name": "Egghead", + "site_detail_url": "https://comicvine.gamespot.com/egghead/4005-62018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62019/", + "id": 62019, + "name": "Big Zero", + "site_detail_url": "https://comicvine.gamespot.com/big-zero/4005-62019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62020/", + "id": 62020, + "name": "Coat of Arms", + "site_detail_url": "https://comicvine.gamespot.com/coat-of-arms/4005-62020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62021/", + "id": 62021, + "name": "Enchantress (Lushton)", + "site_detail_url": "https://comicvine.gamespot.com/enchantress-lushton/4005-62021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62022/", + "id": 62022, + "name": "Executioner (DuBois)", + "site_detail_url": "https://comicvine.gamespot.com/executioner-dubois/4005-62022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62023/", + "id": 62023, + "name": "Melter (Colchiss)", + "site_detail_url": "https://comicvine.gamespot.com/melter-colchiss/4005-62023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62029/", + "id": 62029, + "name": "Master Judge of the Lower Depths", + "site_detail_url": "https://comicvine.gamespot.com/master-judge-of-the-lower-depths/4005-62029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62030/", + "id": 62030, + "name": "Haazareth Three", + "site_detail_url": "https://comicvine.gamespot.com/haazareth-three/4005-62030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62041/", + "id": 62041, + "name": "Tran Coy Manh", + "site_detail_url": "https://comicvine.gamespot.com/tran-coy-manh/4005-62041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62045/", + "id": 62045, + "name": "Old Man", + "site_detail_url": "https://comicvine.gamespot.com/old-man/4005-62045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62054/", + "id": 62054, + "name": "Vulture (Drago)", + "site_detail_url": "https://comicvine.gamespot.com/vulture-drago/4005-62054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62056/", + "id": 62056, + "name": "King Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/king-hyperion/4005-62056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62057/", + "id": 62057, + "name": "Wolverina", + "site_detail_url": "https://comicvine.gamespot.com/wolverina/4005-62057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62059/", + "id": 62059, + "name": "Sally McRae", + "site_detail_url": "https://comicvine.gamespot.com/sally-mcrae/4005-62059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62060/", + "id": 62060, + "name": "Gom", + "site_detail_url": "https://comicvine.gamespot.com/gom/4005-62060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62061/", + "id": 62061, + "name": "Haan Kaishek", + "site_detail_url": "https://comicvine.gamespot.com/haan-kaishek/4005-62061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62062/", + "id": 62062, + "name": "Kia", + "site_detail_url": "https://comicvine.gamespot.com/kia/4005-62062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62072/", + "id": 62072, + "name": "Manifold", + "site_detail_url": "https://comicvine.gamespot.com/manifold/4005-62072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62073/", + "id": 62073, + "name": "Gamma-Burn", + "site_detail_url": "https://comicvine.gamespot.com/gamma-burn/4005-62073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62079/", + "id": 62079, + "name": "Aptak", + "site_detail_url": "https://comicvine.gamespot.com/aptak/4005-62079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62080/", + "id": 62080, + "name": "Grim Magnus", + "site_detail_url": "https://comicvine.gamespot.com/grim-magnus/4005-62080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62081/", + "id": 62081, + "name": "Sygnet", + "site_detail_url": "https://comicvine.gamespot.com/sygnet/4005-62081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62082/", + "id": 62082, + "name": "Future Man", + "site_detail_url": "https://comicvine.gamespot.com/future-man/4005-62082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62084/", + "id": 62084, + "name": "Madame Death", + "site_detail_url": "https://comicvine.gamespot.com/madame-death/4005-62084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62091/", + "id": 62091, + "name": "Robert G. Durant", + "site_detail_url": "https://comicvine.gamespot.com/robert-g-durant/4005-62091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62115/", + "id": 62115, + "name": "Monolith", + "site_detail_url": "https://comicvine.gamespot.com/monolith/4005-62115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62127/", + "id": 62127, + "name": "Mary Margaret", + "site_detail_url": "https://comicvine.gamespot.com/mary-margaret/4005-62127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62159/", + "id": 62159, + "name": "Sanction", + "site_detail_url": "https://comicvine.gamespot.com/sanction/4005-62159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62160/", + "id": 62160, + "name": "VIRGIL", + "site_detail_url": "https://comicvine.gamespot.com/virgil/4005-62160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62205/", + "id": 62205, + "name": "Salvé", + "site_detail_url": "https://comicvine.gamespot.com/salve/4005-62205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62208/", + "id": 62208, + "name": "Michele Gonzales", + "site_detail_url": "https://comicvine.gamespot.com/michele-gonzales/4005-62208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62217/", + "id": 62217, + "name": "The Man With No Face", + "site_detail_url": "https://comicvine.gamespot.com/the-man-with-no-face/4005-62217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62223/", + "id": 62223, + "name": "Fenway", + "site_detail_url": "https://comicvine.gamespot.com/fenway/4005-62223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62224/", + "id": 62224, + "name": "Alestaire Finchley Grunch", + "site_detail_url": "https://comicvine.gamespot.com/alestaire-finchley-grunch/4005-62224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62225/", + "id": 62225, + "name": "S'Met'Kth", + "site_detail_url": "https://comicvine.gamespot.com/smetkth/4005-62225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62226/", + "id": 62226, + "name": "Deuce, the Devil Dog", + "site_detail_url": "https://comicvine.gamespot.com/deuce-the-devil-dog/4005-62226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62243/", + "id": 62243, + "name": "Nella", + "site_detail_url": "https://comicvine.gamespot.com/nella/4005-62243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62244/", + "id": 62244, + "name": "Gynosure", + "site_detail_url": "https://comicvine.gamespot.com/gynosure/4005-62244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62249/", + "id": 62249, + "name": "Mia Colt", + "site_detail_url": "https://comicvine.gamespot.com/mia-colt/4005-62249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62250/", + "id": 62250, + "name": "Ian Fate", + "site_detail_url": "https://comicvine.gamespot.com/ian-fate/4005-62250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62251/", + "id": 62251, + "name": "Symbionic Man", + "site_detail_url": "https://comicvine.gamespot.com/symbionic-man/4005-62251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62252/", + "id": 62252, + "name": "Jose Tyler", + "site_detail_url": "https://comicvine.gamespot.com/jose-tyler/4005-62252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62253/", + "id": 62253, + "name": "Nano", + "site_detail_url": "https://comicvine.gamespot.com/nano/4005-62253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62255/", + "id": 62255, + "name": "Gabrielle Carlotti", + "site_detail_url": "https://comicvine.gamespot.com/gabrielle-carlotti/4005-62255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62256/", + "id": 62256, + "name": "Sita Mohindas", + "site_detail_url": "https://comicvine.gamespot.com/sita-mohindas/4005-62256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62257/", + "id": 62257, + "name": "Nils Pitcairn", + "site_detail_url": "https://comicvine.gamespot.com/nils-pitcairn/4005-62257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62258/", + "id": 62258, + "name": "Moves With Burning Grace", + "site_detail_url": "https://comicvine.gamespot.com/moves-with-burning-grace/4005-62258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62269/", + "id": 62269, + "name": "He Who Remains", + "site_detail_url": "https://comicvine.gamespot.com/he-who-remains/4005-62269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62272/", + "id": 62272, + "name": "Conchata O'Hara", + "site_detail_url": "https://comicvine.gamespot.com/conchata-ohara/4005-62272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62273/", + "id": 62273, + "name": "William Lonestar", + "site_detail_url": "https://comicvine.gamespot.com/william-lonestar/4005-62273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62291/", + "id": 62291, + "name": "Risque", + "site_detail_url": "https://comicvine.gamespot.com/risque/4005-62291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62295/", + "id": 62295, + "name": "Feldstadt", + "site_detail_url": "https://comicvine.gamespot.com/feldstadt/4005-62295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62307/", + "id": 62307, + "name": "Jennifer D'Angelo", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-dangelo/4005-62307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62317/", + "id": 62317, + "name": "Neelix", + "site_detail_url": "https://comicvine.gamespot.com/neelix/4005-62317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62318/", + "id": 62318, + "name": "Kes", + "site_detail_url": "https://comicvine.gamespot.com/kes/4005-62318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62319/", + "id": 62319, + "name": "Virtual Reality", + "site_detail_url": "https://comicvine.gamespot.com/virtual-reality/4005-62319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62321/", + "id": 62321, + "name": "Binder", + "site_detail_url": "https://comicvine.gamespot.com/binder/4005-62321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62322/", + "id": 62322, + "name": "Voltar", + "site_detail_url": "https://comicvine.gamespot.com/voltar/4005-62322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62323/", + "id": 62323, + "name": "Kwill", + "site_detail_url": "https://comicvine.gamespot.com/kwill/4005-62323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62354/", + "id": 62354, + "name": "Tangler", + "site_detail_url": "https://comicvine.gamespot.com/tangler/4005-62354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62396/", + "id": 62396, + "name": "Forever Man", + "site_detail_url": "https://comicvine.gamespot.com/forever-man/4005-62396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62422/", + "id": 62422, + "name": "Un-Human", + "site_detail_url": "https://comicvine.gamespot.com/un-human/4005-62422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62424/", + "id": 62424, + "name": "Soul-Eater", + "site_detail_url": "https://comicvine.gamespot.com/soul-eater/4005-62424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62435/", + "id": 62435, + "name": "Alyssa Ogawa", + "site_detail_url": "https://comicvine.gamespot.com/alyssa-ogawa/4005-62435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62436/", + "id": 62436, + "name": "Judicator", + "site_detail_url": "https://comicvine.gamespot.com/judicator/4005-62436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62441/", + "id": 62441, + "name": "Elizabeth Shelby", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-shelby/4005-62441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62482/", + "id": 62482, + "name": "Deadmaker", + "site_detail_url": "https://comicvine.gamespot.com/deadmaker/4005-62482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62494/", + "id": 62494, + "name": "Demora Sulu", + "site_detail_url": "https://comicvine.gamespot.com/demora-sulu/4005-62494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62515/", + "id": 62515, + "name": "Ixchel", + "site_detail_url": "https://comicvine.gamespot.com/ixchel/4005-62515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62518/", + "id": 62518, + "name": "Black Toad", + "site_detail_url": "https://comicvine.gamespot.com/black-toad/4005-62518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62529/", + "id": 62529, + "name": "Laria", + "site_detail_url": "https://comicvine.gamespot.com/laria/4005-62529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62538/", + "id": 62538, + "name": "Marie Batroc", + "site_detail_url": "https://comicvine.gamespot.com/marie-batroc/4005-62538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62539/", + "id": 62539, + "name": "Zodiac", + "site_detail_url": "https://comicvine.gamespot.com/zodiac/4005-62539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62547/", + "id": 62547, + "name": "Seidring", + "site_detail_url": "https://comicvine.gamespot.com/seidring/4005-62547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62560/", + "id": 62560, + "name": "Taran", + "site_detail_url": "https://comicvine.gamespot.com/taran/4005-62560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62561/", + "id": 62561, + "name": "Admiral Votan", + "site_detail_url": "https://comicvine.gamespot.com/admiral-votan/4005-62561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62562/", + "id": 62562, + "name": "Emperor Zark", + "site_detail_url": "https://comicvine.gamespot.com/emperor-zark/4005-62562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62566/", + "id": 62566, + "name": "Dryminextes", + "site_detail_url": "https://comicvine.gamespot.com/dryminextes/4005-62566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62567/", + "id": 62567, + "name": "Doctor Weird", + "site_detail_url": "https://comicvine.gamespot.com/doctor-weird/4005-62567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62568/", + "id": 62568, + "name": "Reptile", + "site_detail_url": "https://comicvine.gamespot.com/reptile/4005-62568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62569/", + "id": 62569, + "name": "Ice Queen", + "site_detail_url": "https://comicvine.gamespot.com/ice-queen/4005-62569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62570/", + "id": 62570, + "name": "Karragan the Unforgiving", + "site_detail_url": "https://comicvine.gamespot.com/karragan-the-unforgiving/4005-62570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62571/", + "id": 62571, + "name": "Pre-History", + "site_detail_url": "https://comicvine.gamespot.com/pre-history/4005-62571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62572/", + "id": 62572, + "name": "Magma", + "site_detail_url": "https://comicvine.gamespot.com/magma/4005-62572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62595/", + "id": 62595, + "name": "The Skin-Bender", + "site_detail_url": "https://comicvine.gamespot.com/the-skin-bender/4005-62595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62609/", + "id": 62609, + "name": "Ellene Gorko", + "site_detail_url": "https://comicvine.gamespot.com/ellene-gorko/4005-62609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62610/", + "id": 62610, + "name": "John Maddox", + "site_detail_url": "https://comicvine.gamespot.com/john-maddox/4005-62610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62611/", + "id": 62611, + "name": "Agony", + "site_detail_url": "https://comicvine.gamespot.com/agony/4005-62611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62612/", + "id": 62612, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-62612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62613/", + "id": 62613, + "name": "Landa", + "site_detail_url": "https://comicvine.gamespot.com/landa/4005-62613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62616/", + "id": 62616, + "name": "Pyra", + "site_detail_url": "https://comicvine.gamespot.com/pyra/4005-62616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62632/", + "id": 62632, + "name": "N'rill'irēē", + "site_detail_url": "https://comicvine.gamespot.com/nrilliree/4005-62632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62633/", + "id": 62633, + "name": "Chakar", + "site_detail_url": "https://comicvine.gamespot.com/chakar/4005-62633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62634/", + "id": 62634, + "name": "Cosmo", + "site_detail_url": "https://comicvine.gamespot.com/cosmo/4005-62634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62635/", + "id": 62635, + "name": "Hungry", + "site_detail_url": "https://comicvine.gamespot.com/hungry/4005-62635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62643/", + "id": 62643, + "name": "D'Bek", + "site_detail_url": "https://comicvine.gamespot.com/dbek/4005-62643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62652/", + "id": 62652, + "name": "Duchess Belladonna", + "site_detail_url": "https://comicvine.gamespot.com/duchess-belladonna/4005-62652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62653/", + "id": 62653, + "name": "Richard Carson", + "site_detail_url": "https://comicvine.gamespot.com/richard-carson/4005-62653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62654/", + "id": 62654, + "name": "Genji Odashu", + "site_detail_url": "https://comicvine.gamespot.com/genji-odashu/4005-62654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62655/", + "id": 62655, + "name": "Ilongo Savage", + "site_detail_url": "https://comicvine.gamespot.com/ilongo-savage/4005-62655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62656/", + "id": 62656, + "name": "Deena James", + "site_detail_url": "https://comicvine.gamespot.com/deena-james/4005-62656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62657/", + "id": 62657, + "name": "Sunpyre", + "site_detail_url": "https://comicvine.gamespot.com/sunpyre/4005-62657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62658/", + "id": 62658, + "name": "Valthjona", + "site_detail_url": "https://comicvine.gamespot.com/valthjona/4005-62658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62659/", + "id": 62659, + "name": "T'Chaka", + "site_detail_url": "https://comicvine.gamespot.com/tchaka/4005-62659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62660/", + "id": 62660, + "name": "W'Kabi", + "site_detail_url": "https://comicvine.gamespot.com/wkabi/4005-62660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62662/", + "id": 62662, + "name": "Terrex", + "site_detail_url": "https://comicvine.gamespot.com/terrex/4005-62662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62663/", + "id": 62663, + "name": "Doctor Yesterday", + "site_detail_url": "https://comicvine.gamespot.com/doctor-yesterday/4005-62663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62664/", + "id": 62664, + "name": "Doris Jacquet Sheldon", + "site_detail_url": "https://comicvine.gamespot.com/doris-jacquet-sheldon/4005-62664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62673/", + "id": 62673, + "name": "Ban-Luck", + "site_detail_url": "https://comicvine.gamespot.com/ban-luck/4005-62673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62675/", + "id": 62675, + "name": "Shoba Mirza", + "site_detail_url": "https://comicvine.gamespot.com/shoba-mirza/4005-62675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62682/", + "id": 62682, + "name": "The Catman", + "site_detail_url": "https://comicvine.gamespot.com/the-catman/4005-62682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62684/", + "id": 62684, + "name": "Bitterhorn", + "site_detail_url": "https://comicvine.gamespot.com/bitterhorn/4005-62684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62707/", + "id": 62707, + "name": "Ape X", + "site_detail_url": "https://comicvine.gamespot.com/ape-x/4005-62707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62710/", + "id": 62710, + "name": "Fiona Fitzhugh", + "site_detail_url": "https://comicvine.gamespot.com/fiona-fitzhugh/4005-62710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62719/", + "id": 62719, + "name": "Big Mother", + "site_detail_url": "https://comicvine.gamespot.com/big-mother/4005-62719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62728/", + "id": 62728, + "name": "Pegas the Pirate King", + "site_detail_url": "https://comicvine.gamespot.com/pegas-the-pirate-king/4005-62728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62732/", + "id": 62732, + "name": "Devourer the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/devourer-the-destroyer/4005-62732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62733/", + "id": 62733, + "name": "Tus-Katt", + "site_detail_url": "https://comicvine.gamespot.com/tus-katt/4005-62733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62734/", + "id": 62734, + "name": "Basilisk", + "site_detail_url": "https://comicvine.gamespot.com/basilisk/4005-62734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62747/", + "id": 62747, + "name": "Kalima", + "site_detail_url": "https://comicvine.gamespot.com/kalima/4005-62747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62748/", + "id": 62748, + "name": "Sophie Von Doom", + "site_detail_url": "https://comicvine.gamespot.com/sophie-von-doom/4005-62748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62777/", + "id": 62777, + "name": "Faceless Man", + "site_detail_url": "https://comicvine.gamespot.com/faceless-man/4005-62777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62814/", + "id": 62814, + "name": "Mummex", + "site_detail_url": "https://comicvine.gamespot.com/mummex/4005-62814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62815/", + "id": 62815, + "name": "Korya", + "site_detail_url": "https://comicvine.gamespot.com/korya/4005-62815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62823/", + "id": 62823, + "name": "Snake God", + "site_detail_url": "https://comicvine.gamespot.com/snake-god/4005-62823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62834/", + "id": 62834, + "name": "Al Harper", + "site_detail_url": "https://comicvine.gamespot.com/al-harper/4005-62834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62838/", + "id": 62838, + "name": "Wish-Demon", + "site_detail_url": "https://comicvine.gamespot.com/wish-demon/4005-62838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62839/", + "id": 62839, + "name": "Tartessus", + "site_detail_url": "https://comicvine.gamespot.com/tartessus/4005-62839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62840/", + "id": 62840, + "name": "Gormac", + "site_detail_url": "https://comicvine.gamespot.com/gormac/4005-62840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62844/", + "id": 62844, + "name": "Kx'ulthuum", + "site_detail_url": "https://comicvine.gamespot.com/kxulthuum/4005-62844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62845/", + "id": 62845, + "name": "Scarlet Mage", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-mage/4005-62845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62846/", + "id": 62846, + "name": "Molub the Undying Demon", + "site_detail_url": "https://comicvine.gamespot.com/molub-the-undying-demon/4005-62846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62855/", + "id": 62855, + "name": "Demon Baby", + "site_detail_url": "https://comicvine.gamespot.com/demon-baby/4005-62855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62856/", + "id": 62856, + "name": "White Cross", + "site_detail_url": "https://comicvine.gamespot.com/white-cross/4005-62856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62857/", + "id": 62857, + "name": "Tricolore", + "site_detail_url": "https://comicvine.gamespot.com/tricolore/4005-62857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62858/", + "id": 62858, + "name": "Strongman", + "site_detail_url": "https://comicvine.gamespot.com/strongman/4005-62858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62859/", + "id": 62859, + "name": "Shamrock", + "site_detail_url": "https://comicvine.gamespot.com/shamrock/4005-62859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62860/", + "id": 62860, + "name": "Red Dragon", + "site_detail_url": "https://comicvine.gamespot.com/red-dragon/4005-62860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62861/", + "id": 62861, + "name": "Gareth Thomas", + "site_detail_url": "https://comicvine.gamespot.com/gareth-thomas/4005-62861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62862/", + "id": 62862, + "name": "Oracle", + "site_detail_url": "https://comicvine.gamespot.com/oracle/4005-62862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62863/", + "id": 62863, + "name": "Magma", + "site_detail_url": "https://comicvine.gamespot.com/magma/4005-62863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62864/", + "id": 62864, + "name": "Javelin", + "site_detail_url": "https://comicvine.gamespot.com/javelin/4005-62864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62865/", + "id": 62865, + "name": "Claymore", + "site_detail_url": "https://comicvine.gamespot.com/claymore/4005-62865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62866/", + "id": 62866, + "name": "Belgian Brain", + "site_detail_url": "https://comicvine.gamespot.com/belgian-brain/4005-62866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62867/", + "id": 62867, + "name": "Amazon", + "site_detail_url": "https://comicvine.gamespot.com/amazon/4005-62867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62868/", + "id": 62868, + "name": "Nate Mare", + "site_detail_url": "https://comicvine.gamespot.com/nate-mare/4005-62868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62869/", + "id": 62869, + "name": "Doctor Reich", + "site_detail_url": "https://comicvine.gamespot.com/doctor-reich/4005-62869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62870/", + "id": 62870, + "name": "Werner Blowhard", + "site_detail_url": "https://comicvine.gamespot.com/werner-blowhard/4005-62870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62871/", + "id": 62871, + "name": "Mahagreasy Mirgraine Yogi", + "site_detail_url": "https://comicvine.gamespot.com/mahagreasy-mirgraine-yogi/4005-62871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62872/", + "id": 62872, + "name": "Black Baron", + "site_detail_url": "https://comicvine.gamespot.com/black-baron/4005-62872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62877/", + "id": 62877, + "name": "Timekeeper", + "site_detail_url": "https://comicvine.gamespot.com/timekeeper/4005-62877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62889/", + "id": 62889, + "name": "Razor Wire", + "site_detail_url": "https://comicvine.gamespot.com/razor-wire/4005-62889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62890/", + "id": 62890, + "name": "Lightning Fist", + "site_detail_url": "https://comicvine.gamespot.com/lightning-fist/4005-62890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62891/", + "id": 62891, + "name": "Ogre", + "site_detail_url": "https://comicvine.gamespot.com/ogre/4005-62891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62892/", + "id": 62892, + "name": "The Bum", + "site_detail_url": "https://comicvine.gamespot.com/the-bum/4005-62892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62903/", + "id": 62903, + "name": "Menoetius", + "site_detail_url": "https://comicvine.gamespot.com/menoetius/4005-62903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62905/", + "id": 62905, + "name": "Chaos, Deity of Space", + "site_detail_url": "https://comicvine.gamespot.com/chaos-deity-of-space/4005-62905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62906/", + "id": 62906, + "name": "Dionysus of Titan", + "site_detail_url": "https://comicvine.gamespot.com/dionysus-of-titan/4005-62906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62907/", + "id": 62907, + "name": "Tartarus, God of the Abyss", + "site_detail_url": "https://comicvine.gamespot.com/tartarus-god-of-the-abyss/4005-62907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62908/", + "id": 62908, + "name": "Hilda", + "site_detail_url": "https://comicvine.gamespot.com/hilda/4005-62908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62909/", + "id": 62909, + "name": "Mista", + "site_detail_url": "https://comicvine.gamespot.com/mista/4005-62909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62910/", + "id": 62910, + "name": "Sangrida", + "site_detail_url": "https://comicvine.gamespot.com/sangrida/4005-62910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62921/", + "id": 62921, + "name": "Thelius", + "site_detail_url": "https://comicvine.gamespot.com/thelius/4005-62921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62922/", + "id": 62922, + "name": "Monolith Gatherer", + "site_detail_url": "https://comicvine.gamespot.com/monolith-gatherer/4005-62922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62924/", + "id": 62924, + "name": "Dementia", + "site_detail_url": "https://comicvine.gamespot.com/dementia/4005-62924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62925/", + "id": 62925, + "name": "Phobia", + "site_detail_url": "https://comicvine.gamespot.com/phobia/4005-62925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62928/", + "id": 62928, + "name": "Exile", + "site_detail_url": "https://comicvine.gamespot.com/exile/4005-62928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62929/", + "id": 62929, + "name": "Delusion", + "site_detail_url": "https://comicvine.gamespot.com/delusion/4005-62929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62938/", + "id": 62938, + "name": "The Revenant", + "site_detail_url": "https://comicvine.gamespot.com/the-revenant/4005-62938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62939/", + "id": 62939, + "name": "Jenny Cesare", + "site_detail_url": "https://comicvine.gamespot.com/jenny-cesare/4005-62939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62968/", + "id": 62968, + "name": "Quill", + "site_detail_url": "https://comicvine.gamespot.com/quill/4005-62968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62969/", + "id": 62969, + "name": "Nanny", + "site_detail_url": "https://comicvine.gamespot.com/nanny/4005-62969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62970/", + "id": 62970, + "name": "Le Sabre", + "site_detail_url": "https://comicvine.gamespot.com/le-sabre/4005-62970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62972/", + "id": 62972, + "name": "Anthony Sardo", + "site_detail_url": "https://comicvine.gamespot.com/anthony-sardo/4005-62972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63046/", + "id": 63046, + "name": "Giganto", + "site_detail_url": "https://comicvine.gamespot.com/giganto/4005-63046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63047/", + "id": 63047, + "name": "Orbus", + "site_detail_url": "https://comicvine.gamespot.com/orbus/4005-63047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63111/", + "id": 63111, + "name": "Catherine Bradley", + "site_detail_url": "https://comicvine.gamespot.com/catherine-bradley/4005-63111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63112/", + "id": 63112, + "name": "Nicola Bradley", + "site_detail_url": "https://comicvine.gamespot.com/nicola-bradley/4005-63112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63113/", + "id": 63113, + "name": "Cornelius Shaw", + "site_detail_url": "https://comicvine.gamespot.com/cornelius-shaw/4005-63113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63114/", + "id": 63114, + "name": "Lord Molyneux", + "site_detail_url": "https://comicvine.gamespot.com/lord-molyneux/4005-63114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63115/", + "id": 63115, + "name": "Salome", + "site_detail_url": "https://comicvine.gamespot.com/salome/4005-63115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63142/", + "id": 63142, + "name": "General Wolfram", + "site_detail_url": "https://comicvine.gamespot.com/general-wolfram/4005-63142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63143/", + "id": 63143, + "name": "Redeemer", + "site_detail_url": "https://comicvine.gamespot.com/redeemer/4005-63143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63144/", + "id": 63144, + "name": "Doctor Everything", + "site_detail_url": "https://comicvine.gamespot.com/doctor-everything/4005-63144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63145/", + "id": 63145, + "name": "Eleven", + "site_detail_url": "https://comicvine.gamespot.com/eleven/4005-63145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63146/", + "id": 63146, + "name": "Dementoid", + "site_detail_url": "https://comicvine.gamespot.com/dementoid/4005-63146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63147/", + "id": 63147, + "name": "Hippo", + "site_detail_url": "https://comicvine.gamespot.com/hippo/4005-63147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63151/", + "id": 63151, + "name": "Kika", + "site_detail_url": "https://comicvine.gamespot.com/kika/4005-63151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63152/", + "id": 63152, + "name": "Swad", + "site_detail_url": "https://comicvine.gamespot.com/swad/4005-63152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63156/", + "id": 63156, + "name": "Maria Castle", + "site_detail_url": "https://comicvine.gamespot.com/maria-castle/4005-63156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63158/", + "id": 63158, + "name": "Lisa Castle", + "site_detail_url": "https://comicvine.gamespot.com/lisa-castle/4005-63158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63159/", + "id": 63159, + "name": "Francis Castle Jr.", + "site_detail_url": "https://comicvine.gamespot.com/francis-castle-jr/4005-63159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63160/", + "id": 63160, + "name": "Tadj", + "site_detail_url": "https://comicvine.gamespot.com/tadj/4005-63160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63162/", + "id": 63162, + "name": "Tally", + "site_detail_url": "https://comicvine.gamespot.com/tally/4005-63162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63163/", + "id": 63163, + "name": "Tarq", + "site_detail_url": "https://comicvine.gamespot.com/tarq/4005-63163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63164/", + "id": 63164, + "name": "Melita Garner", + "site_detail_url": "https://comicvine.gamespot.com/melita-garner/4005-63164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63165/", + "id": 63165, + "name": "Freezer Burn", + "site_detail_url": "https://comicvine.gamespot.com/freezer-burn/4005-63165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63172/", + "id": 63172, + "name": "Cache", + "site_detail_url": "https://comicvine.gamespot.com/cache/4005-63172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63174/", + "id": 63174, + "name": "Malice", + "site_detail_url": "https://comicvine.gamespot.com/malice/4005-63174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63199/", + "id": 63199, + "name": "Marci Sabol", + "site_detail_url": "https://comicvine.gamespot.com/marci-sabol/4005-63199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63222/", + "id": 63222, + "name": "Crosta", + "site_detail_url": "https://comicvine.gamespot.com/crosta/4005-63222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63236/", + "id": 63236, + "name": "The High-Zero", + "site_detail_url": "https://comicvine.gamespot.com/the-high-zero/4005-63236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63260/", + "id": 63260, + "name": "Mr. Lao", + "site_detail_url": "https://comicvine.gamespot.com/mr-lao/4005-63260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63291/", + "id": 63291, + "name": "Redbird", + "site_detail_url": "https://comicvine.gamespot.com/redbird/4005-63291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63292/", + "id": 63292, + "name": "Plague", + "site_detail_url": "https://comicvine.gamespot.com/plague/4005-63292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63293/", + "id": 63293, + "name": "Nanook", + "site_detail_url": "https://comicvine.gamespot.com/nanook/4005-63293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63294/", + "id": 63294, + "name": "Goldensnow", + "site_detail_url": "https://comicvine.gamespot.com/goldensnow/4005-63294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63295/", + "id": 63295, + "name": "Gamma", + "site_detail_url": "https://comicvine.gamespot.com/gamma/4005-63295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63296/", + "id": 63296, + "name": "Corona", + "site_detail_url": "https://comicvine.gamespot.com/corona/4005-63296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63297/", + "id": 63297, + "name": "Beast (X-Punks)", + "site_detail_url": "https://comicvine.gamespot.com/beast-x-punks/4005-63297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63298/", + "id": 63298, + "name": "Panther", + "site_detail_url": "https://comicvine.gamespot.com/panther/4005-63298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63317/", + "id": 63317, + "name": "Cortex", + "site_detail_url": "https://comicvine.gamespot.com/cortex/4005-63317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63325/", + "id": 63325, + "name": "Caryn", + "site_detail_url": "https://comicvine.gamespot.com/caryn/4005-63325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63327/", + "id": 63327, + "name": "Sharyn", + "site_detail_url": "https://comicvine.gamespot.com/sharyn/4005-63327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63328/", + "id": 63328, + "name": "Pseudo-Man", + "site_detail_url": "https://comicvine.gamespot.com/pseudo-man/4005-63328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63329/", + "id": 63329, + "name": "Dogwoman", + "site_detail_url": "https://comicvine.gamespot.com/dogwoman/4005-63329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63330/", + "id": 63330, + "name": "Three-Face", + "site_detail_url": "https://comicvine.gamespot.com/three-face/4005-63330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63331/", + "id": 63331, + "name": "Slimeface", + "site_detail_url": "https://comicvine.gamespot.com/slimeface/4005-63331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63332/", + "id": 63332, + "name": "Big Al G'houl", + "site_detail_url": "https://comicvine.gamespot.com/big-al-ghoul/4005-63332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63333/", + "id": 63333, + "name": "Hugo Oddt", + "site_detail_url": "https://comicvine.gamespot.com/hugo-oddt/4005-63333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63334/", + "id": 63334, + "name": "Brent Wilcox", + "site_detail_url": "https://comicvine.gamespot.com/brent-wilcox/4005-63334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63359/", + "id": 63359, + "name": "Mrs. Wyncham", + "site_detail_url": "https://comicvine.gamespot.com/mrs-wyncham/4005-63359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63361/", + "id": 63361, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-63361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63364/", + "id": 63364, + "name": "Achmed the Arabian Wizard", + "site_detail_url": "https://comicvine.gamespot.com/achmed-the-arabian-wizard/4005-63364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63365/", + "id": 63365, + "name": "deHalle", + "site_detail_url": "https://comicvine.gamespot.com/dehalle/4005-63365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63366/", + "id": 63366, + "name": "vaDrann", + "site_detail_url": "https://comicvine.gamespot.com/vadrann/4005-63366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63367/", + "id": 63367, + "name": "vaDanti", + "site_detail_url": "https://comicvine.gamespot.com/vadanti/4005-63367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63368/", + "id": 63368, + "name": "vaRikk", + "site_detail_url": "https://comicvine.gamespot.com/varikk/4005-63368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63385/", + "id": 63385, + "name": "Alexander Lexington", + "site_detail_url": "https://comicvine.gamespot.com/alexander-lexington/4005-63385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63387/", + "id": 63387, + "name": "Grondaar", + "site_detail_url": "https://comicvine.gamespot.com/grondaar/4005-63387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63388/", + "id": 63388, + "name": "Harrald", + "site_detail_url": "https://comicvine.gamespot.com/harrald/4005-63388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63389/", + "id": 63389, + "name": "T'Korr", + "site_detail_url": "https://comicvine.gamespot.com/tkorr/4005-63389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63390/", + "id": 63390, + "name": "Vitana", + "site_detail_url": "https://comicvine.gamespot.com/vitana/4005-63390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63391/", + "id": 63391, + "name": "Timber Hughes", + "site_detail_url": "https://comicvine.gamespot.com/timber-hughes/4005-63391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63396/", + "id": 63396, + "name": "Bacillus", + "site_detail_url": "https://comicvine.gamespot.com/bacillus/4005-63396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63397/", + "id": 63397, + "name": "Mind's Eye", + "site_detail_url": "https://comicvine.gamespot.com/mind-s-eye/4005-63397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63398/", + "id": 63398, + "name": "Strontium-90", + "site_detail_url": "https://comicvine.gamespot.com/strontium-90/4005-63398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63400/", + "id": 63400, + "name": "Vesper", + "site_detail_url": "https://comicvine.gamespot.com/vesper/4005-63400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63401/", + "id": 63401, + "name": "D'Kay", + "site_detail_url": "https://comicvine.gamespot.com/dkay/4005-63401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63414/", + "id": 63414, + "name": "Hardtime", + "site_detail_url": "https://comicvine.gamespot.com/hardtime/4005-63414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63415/", + "id": 63415, + "name": "Warlord of Zenn-La", + "site_detail_url": "https://comicvine.gamespot.com/warlord-of-zenn-la/4005-63415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63416/", + "id": 63416, + "name": "Damak", + "site_detail_url": "https://comicvine.gamespot.com/damak/4005-63416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63418/", + "id": 63418, + "name": "Hiro-Kala", + "site_detail_url": "https://comicvine.gamespot.com/hiro-kala/4005-63418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63424/", + "id": 63424, + "name": "Sise-Neg", + "site_detail_url": "https://comicvine.gamespot.com/sise-neg/4005-63424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63429/", + "id": 63429, + "name": "Phillip Carlisle", + "site_detail_url": "https://comicvine.gamespot.com/phillip-carlisle/4005-63429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63430/", + "id": 63430, + "name": "Sympira", + "site_detail_url": "https://comicvine.gamespot.com/sympira/4005-63430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63433/", + "id": 63433, + "name": "Meer'Lyn", + "site_detail_url": "https://comicvine.gamespot.com/meerlyn/4005-63433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63447/", + "id": 63447, + "name": "Emirate Xaaron", + "site_detail_url": "https://comicvine.gamespot.com/emirate-xaaron/4005-63447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63537/", + "id": 63537, + "name": "Andreas de Ruyter", + "site_detail_url": "https://comicvine.gamespot.com/andreas-de-ruyter/4005-63537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63553/", + "id": 63553, + "name": "33", + "site_detail_url": "https://comicvine.gamespot.com/33/4005-63553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63554/", + "id": 63554, + "name": "99", + "site_detail_url": "https://comicvine.gamespot.com/99/4005-63554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63555/", + "id": 63555, + "name": "107", + "site_detail_url": "https://comicvine.gamespot.com/107/4005-63555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63581/", + "id": 63581, + "name": "Turk", + "site_detail_url": "https://comicvine.gamespot.com/turk/4005-63581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63582/", + "id": 63582, + "name": "Snare", + "site_detail_url": "https://comicvine.gamespot.com/snare/4005-63582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63587/", + "id": 63587, + "name": "Lady of Ten Suns", + "site_detail_url": "https://comicvine.gamespot.com/lady-of-ten-suns/4005-63587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63588/", + "id": 63588, + "name": "Most Perfect Hero", + "site_detail_url": "https://comicvine.gamespot.com/most-perfect-hero/4005-63588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63589/", + "id": 63589, + "name": "Ninth Immortal", + "site_detail_url": "https://comicvine.gamespot.com/ninth-immortal/4005-63589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63590/", + "id": 63590, + "name": "Scientific Beast", + "site_detail_url": "https://comicvine.gamespot.com/scientific-beast/4005-63590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63591/", + "id": 63591, + "name": "The Unspoken", + "site_detail_url": "https://comicvine.gamespot.com/the-unspoken/4005-63591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63592/", + "id": 63592, + "name": "Lenore Wilkinson", + "site_detail_url": "https://comicvine.gamespot.com/lenore-wilkinson/4005-63592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63603/", + "id": 63603, + "name": "Raptor", + "site_detail_url": "https://comicvine.gamespot.com/raptor/4005-63603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63623/", + "id": 63623, + "name": "Choam", + "site_detail_url": "https://comicvine.gamespot.com/choam/4005-63623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63626/", + "id": 63626, + "name": "Princess of Clouds", + "site_detail_url": "https://comicvine.gamespot.com/princess-of-clouds/4005-63626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63630/", + "id": 63630, + "name": "Mr. Van Driessen", + "site_detail_url": "https://comicvine.gamespot.com/mr-van-driessen/4005-63630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63631/", + "id": 63631, + "name": "Tom Anderson", + "site_detail_url": "https://comicvine.gamespot.com/tom-anderson/4005-63631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63632/", + "id": 63632, + "name": "Stewart Stevenson", + "site_detail_url": "https://comicvine.gamespot.com/stewart-stevenson/4005-63632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63633/", + "id": 63633, + "name": "Coach Buzzcut", + "site_detail_url": "https://comicvine.gamespot.com/coach-buzzcut/4005-63633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63634/", + "id": 63634, + "name": "Principal McVicker", + "site_detail_url": "https://comicvine.gamespot.com/principal-mcvicker/4005-63634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63635/", + "id": 63635, + "name": "Todd Ianuzzi", + "site_detail_url": "https://comicvine.gamespot.com/todd-ianuzzi/4005-63635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63636/", + "id": 63636, + "name": "Billy Bob", + "site_detail_url": "https://comicvine.gamespot.com/billy-bob/4005-63636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63638/", + "id": 63638, + "name": "Daria Morgendorffer", + "site_detail_url": "https://comicvine.gamespot.com/daria-morgendorffer/4005-63638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63639/", + "id": 63639, + "name": "Marcy Anderson", + "site_detail_url": "https://comicvine.gamespot.com/marcy-anderson/4005-63639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63640/", + "id": 63640, + "name": "Mr. Stevenson", + "site_detail_url": "https://comicvine.gamespot.com/mr-stevenson/4005-63640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63641/", + "id": 63641, + "name": "Mrs. Stevenson", + "site_detail_url": "https://comicvine.gamespot.com/mrs-stevenson/4005-63641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63642/", + "id": 63642, + "name": "Earl", + "site_detail_url": "https://comicvine.gamespot.com/earl/4005-63642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63643/", + "id": 63643, + "name": "Maxi-Mart Owner", + "site_detail_url": "https://comicvine.gamespot.com/maxi-mart-owner/4005-63643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63644/", + "id": 63644, + "name": "Henrietta Rose", + "site_detail_url": "https://comicvine.gamespot.com/henrietta-rose/4005-63644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63645/", + "id": 63645, + "name": "Toady-Drone", + "site_detail_url": "https://comicvine.gamespot.com/toady-drone/4005-63645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63646/", + "id": 63646, + "name": "Capriole", + "site_detail_url": "https://comicvine.gamespot.com/capriole/4005-63646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63647/", + "id": 63647, + "name": "Dead-Eye", + "site_detail_url": "https://comicvine.gamespot.com/dead-eye/4005-63647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63663/", + "id": 63663, + "name": "Headhunter", + "site_detail_url": "https://comicvine.gamespot.com/headhunter/4005-63663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63679/", + "id": 63679, + "name": "Baby Driver", + "site_detail_url": "https://comicvine.gamespot.com/baby-driver/4005-63679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63680/", + "id": 63680, + "name": "Tinac", + "site_detail_url": "https://comicvine.gamespot.com/tinac/4005-63680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63681/", + "id": 63681, + "name": "Grundig", + "site_detail_url": "https://comicvine.gamespot.com/grundig/4005-63681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63682/", + "id": 63682, + "name": "Rodor", + "site_detail_url": "https://comicvine.gamespot.com/rodor/4005-63682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63714/", + "id": 63714, + "name": "Tommy Tyme", + "site_detail_url": "https://comicvine.gamespot.com/tommy-tyme/4005-63714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63727/", + "id": 63727, + "name": "Thutothmes", + "site_detail_url": "https://comicvine.gamespot.com/thutothmes/4005-63727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63730/", + "id": 63730, + "name": "Valerie Campbell", + "site_detail_url": "https://comicvine.gamespot.com/valerie-campbell/4005-63730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63745/", + "id": 63745, + "name": "KalAOL", + "site_detail_url": "https://comicvine.gamespot.com/kalaol/4005-63745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63747/", + "id": 63747, + "name": "Stelth", + "site_detail_url": "https://comicvine.gamespot.com/stelth/4005-63747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63753/", + "id": 63753, + "name": "Zosara", + "site_detail_url": "https://comicvine.gamespot.com/zosara/4005-63753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63756/", + "id": 63756, + "name": "Zekkir", + "site_detail_url": "https://comicvine.gamespot.com/zekkir/4005-63756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63757/", + "id": 63757, + "name": "Xeethra", + "site_detail_url": "https://comicvine.gamespot.com/xeethra/4005-63757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63758/", + "id": 63758, + "name": "Thasaidon", + "site_detail_url": "https://comicvine.gamespot.com/thasaidon/4005-63758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63759/", + "id": 63759, + "name": "Anaxor", + "site_detail_url": "https://comicvine.gamespot.com/anaxor/4005-63759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63760/", + "id": 63760, + "name": "Akkheba", + "site_detail_url": "https://comicvine.gamespot.com/akkheba/4005-63760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63761/", + "id": 63761, + "name": "Thomas Agar", + "site_detail_url": "https://comicvine.gamespot.com/thomas-agar/4005-63761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63762/", + "id": 63762, + "name": "Trinity Cabranes", + "site_detail_url": "https://comicvine.gamespot.com/trinity-cabranes/4005-63762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63764/", + "id": 63764, + "name": "Karl Coven", + "site_detail_url": "https://comicvine.gamespot.com/karl-coven/4005-63764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63765/", + "id": 63765, + "name": "Tlaango", + "site_detail_url": "https://comicvine.gamespot.com/tlaango/4005-63765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63767/", + "id": 63767, + "name": "Samantha Parrington", + "site_detail_url": "https://comicvine.gamespot.com/samantha-parrington/4005-63767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63795/", + "id": 63795, + "name": "Shift", + "site_detail_url": "https://comicvine.gamespot.com/shift/4005-63795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63796/", + "id": 63796, + "name": "Stinger", + "site_detail_url": "https://comicvine.gamespot.com/stinger/4005-63796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63797/", + "id": 63797, + "name": "Prime Evil", + "site_detail_url": "https://comicvine.gamespot.com/prime-evil/4005-63797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63803/", + "id": 63803, + "name": "Chat", + "site_detail_url": "https://comicvine.gamespot.com/chat/4005-63803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63807/", + "id": 63807, + "name": "Sasha Kravinoff", + "site_detail_url": "https://comicvine.gamespot.com/sasha-kravinoff/4005-63807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63809/", + "id": 63809, + "name": "Trull The Unhuman", + "site_detail_url": "https://comicvine.gamespot.com/trull-the-unhuman/4005-63809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63810/", + "id": 63810, + "name": "Aa-Thak", + "site_detail_url": "https://comicvine.gamespot.com/aa-thak/4005-63810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63812/", + "id": 63812, + "name": "Prince Hassim", + "site_detail_url": "https://comicvine.gamespot.com/prince-hassim/4005-63812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63813/", + "id": 63813, + "name": "Wijid", + "site_detail_url": "https://comicvine.gamespot.com/wijid/4005-63813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63814/", + "id": 63814, + "name": "Acba", + "site_detail_url": "https://comicvine.gamespot.com/acba/4005-63814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63815/", + "id": 63815, + "name": "Atul", + "site_detail_url": "https://comicvine.gamespot.com/atul/4005-63815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63816/", + "id": 63816, + "name": "Edda", + "site_detail_url": "https://comicvine.gamespot.com/edda/4005-63816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63818/", + "id": 63818, + "name": "Engu", + "site_detail_url": "https://comicvine.gamespot.com/engu/4005-63818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63819/", + "id": 63819, + "name": "He Who Summons", + "site_detail_url": "https://comicvine.gamespot.com/he-who-summons/4005-63819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63820/", + "id": 63820, + "name": "Ingu", + "site_detail_url": "https://comicvine.gamespot.com/ingu/4005-63820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63821/", + "id": 63821, + "name": "Ocam", + "site_detail_url": "https://comicvine.gamespot.com/ocam/4005-63821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63822/", + "id": 63822, + "name": "Ualu", + "site_detail_url": "https://comicvine.gamespot.com/ualu/4005-63822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63823/", + "id": 63823, + "name": "Uilig", + "site_detail_url": "https://comicvine.gamespot.com/uilig/4005-63823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63827/", + "id": 63827, + "name": "Larry Wagner", + "site_detail_url": "https://comicvine.gamespot.com/larry-wagner/4005-63827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63828/", + "id": 63828, + "name": "Mad-Dog Martin", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog-martin/4005-63828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63829/", + "id": 63829, + "name": "Shamaz", + "site_detail_url": "https://comicvine.gamespot.com/shamaz/4005-63829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63830/", + "id": 63830, + "name": "Ilsa Koenig", + "site_detail_url": "https://comicvine.gamespot.com/ilsa-koenig/4005-63830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63831/", + "id": 63831, + "name": "Hans Rooten", + "site_detail_url": "https://comicvine.gamespot.com/hans-rooten/4005-63831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63832/", + "id": 63832, + "name": "Savant", + "site_detail_url": "https://comicvine.gamespot.com/savant/4005-63832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63833/", + "id": 63833, + "name": "Terry Reiker", + "site_detail_url": "https://comicvine.gamespot.com/terry-reiker/4005-63833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63835/", + "id": 63835, + "name": "Vorin", + "site_detail_url": "https://comicvine.gamespot.com/vorin/4005-63835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63836/", + "id": 63836, + "name": "Master Ecallaw", + "site_detail_url": "https://comicvine.gamespot.com/master-ecallaw/4005-63836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63837/", + "id": 63837, + "name": "Acid Queen", + "site_detail_url": "https://comicvine.gamespot.com/acid-queen/4005-63837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63838/", + "id": 63838, + "name": "Wipeout", + "site_detail_url": "https://comicvine.gamespot.com/wipeout/4005-63838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63839/", + "id": 63839, + "name": "Bolo", + "site_detail_url": "https://comicvine.gamespot.com/bolo/4005-63839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63840/", + "id": 63840, + "name": "Chankar", + "site_detail_url": "https://comicvine.gamespot.com/chankar/4005-63840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63841/", + "id": 63841, + "name": "Kimba", + "site_detail_url": "https://comicvine.gamespot.com/kimba/4005-63841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63842/", + "id": 63842, + "name": "Tracy Burke", + "site_detail_url": "https://comicvine.gamespot.com/tracy-burke/4005-63842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63843/", + "id": 63843, + "name": "Julie Angel", + "site_detail_url": "https://comicvine.gamespot.com/julie-angel/4005-63843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63844/", + "id": 63844, + "name": "Aroke", + "site_detail_url": "https://comicvine.gamespot.com/aroke/4005-63844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63845/", + "id": 63845, + "name": "Artys-Gran", + "site_detail_url": "https://comicvine.gamespot.com/artys-gran/4005-63845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63846/", + "id": 63846, + "name": "Crimson Ash", + "site_detail_url": "https://comicvine.gamespot.com/crimson-ash/4005-63846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63847/", + "id": 63847, + "name": "Bat Out Of Hell", + "site_detail_url": "https://comicvine.gamespot.com/bat-out-of-hell/4005-63847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63850/", + "id": 63850, + "name": "Queen Tolaria", + "site_detail_url": "https://comicvine.gamespot.com/queen-tolaria/4005-63850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63856/", + "id": 63856, + "name": "Bad Seed", + "site_detail_url": "https://comicvine.gamespot.com/bad-seed/4005-63856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63857/", + "id": 63857, + "name": "John Baker", + "site_detail_url": "https://comicvine.gamespot.com/john-baker/4005-63857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63859/", + "id": 63859, + "name": "Sharon Banks", + "site_detail_url": "https://comicvine.gamespot.com/sharon-banks/4005-63859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63861/", + "id": 63861, + "name": "Barrier", + "site_detail_url": "https://comicvine.gamespot.com/barrier/4005-63861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63865/", + "id": 63865, + "name": "Batch-13", + "site_detail_url": "https://comicvine.gamespot.com/batch-13/4005-63865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63867/", + "id": 63867, + "name": "Ra The Avenger", + "site_detail_url": "https://comicvine.gamespot.com/ra-the-avenger/4005-63867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63870/", + "id": 63870, + "name": "Gus Beezer", + "site_detail_url": "https://comicvine.gamespot.com/gus-beezer/4005-63870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63874/", + "id": 63874, + "name": "Behemoth From Below", + "site_detail_url": "https://comicvine.gamespot.com/behemoth-from-below/4005-63874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63876/", + "id": 63876, + "name": "Carl Bennings", + "site_detail_url": "https://comicvine.gamespot.com/carl-bennings/4005-63876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63879/", + "id": 63879, + "name": "Black Bee", + "site_detail_url": "https://comicvine.gamespot.com/black-bee/4005-63879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63880/", + "id": 63880, + "name": "Jillian Blythe", + "site_detail_url": "https://comicvine.gamespot.com/jillian-blythe/4005-63880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63881/", + "id": 63881, + "name": "Solemne Brannex", + "site_detail_url": "https://comicvine.gamespot.com/solemne-brannex/4005-63881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63882/", + "id": 63882, + "name": "Killer Queen", + "site_detail_url": "https://comicvine.gamespot.com/killer-queen/4005-63882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63883/", + "id": 63883, + "name": "King Coal", + "site_detail_url": "https://comicvine.gamespot.com/king-coal/4005-63883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63884/", + "id": 63884, + "name": "Lt. Colonel Yelena Brement", + "site_detail_url": "https://comicvine.gamespot.com/lt-colonel-yelena-brement/4005-63884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63885/", + "id": 63885, + "name": "Marjorie Brink", + "site_detail_url": "https://comicvine.gamespot.com/marjorie-brink/4005-63885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63886/", + "id": 63886, + "name": "Ataros", + "site_detail_url": "https://comicvine.gamespot.com/ataros/4005-63886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63887/", + "id": 63887, + "name": "Brooke Of The Denim Shield", + "site_detail_url": "https://comicvine.gamespot.com/brooke-of-the-denim-shield/4005-63887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63891/", + "id": 63891, + "name": "Charity Brown", + "site_detail_url": "https://comicvine.gamespot.com/charity-brown/4005-63891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63893/", + "id": 63893, + "name": "Linda Brown", + "site_detail_url": "https://comicvine.gamespot.com/linda-brown/4005-63893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63894/", + "id": 63894, + "name": "Gargoyle", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle/4005-63894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63898/", + "id": 63898, + "name": "Ship", + "site_detail_url": "https://comicvine.gamespot.com/ship/4005-63898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63905/", + "id": 63905, + "name": "Don-Wan Kihotay", + "site_detail_url": "https://comicvine.gamespot.com/don-wan-kihotay/4005-63905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63909/", + "id": 63909, + "name": "Jaxxon", + "site_detail_url": "https://comicvine.gamespot.com/jaxxon/4005-63909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63929/", + "id": 63929, + "name": "Domina Tagge", + "site_detail_url": "https://comicvine.gamespot.com/domina-tagge/4005-63929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63933/", + "id": 63933, + "name": "The Cobra", + "site_detail_url": "https://comicvine.gamespot.com/the-cobra/4005-63933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63970/", + "id": 63970, + "name": "Darial Anglethorn", + "site_detail_url": "https://comicvine.gamespot.com/darial-anglethorn/4005-63970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63979/", + "id": 63979, + "name": "Dani", + "site_detail_url": "https://comicvine.gamespot.com/dani/4005-63979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-63999/", + "id": 63999, + "name": "Dafi", + "site_detail_url": "https://comicvine.gamespot.com/dafi/4005-63999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64004/", + "id": 64004, + "name": "Danu", + "site_detail_url": "https://comicvine.gamespot.com/danu/4005-64004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64023/", + "id": 64023, + "name": "Hiromi", + "site_detail_url": "https://comicvine.gamespot.com/hiromi/4005-64023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64030/", + "id": 64030, + "name": "Tofs", + "site_detail_url": "https://comicvine.gamespot.com/tofs/4005-64030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64196/", + "id": 64196, + "name": "Quagga", + "site_detail_url": "https://comicvine.gamespot.com/quagga/4005-64196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64213/", + "id": 64213, + "name": "Peter Bristow", + "site_detail_url": "https://comicvine.gamespot.com/peter-bristow/4005-64213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64214/", + "id": 64214, + "name": "Harquis Tey", + "site_detail_url": "https://comicvine.gamespot.com/harquis-tey/4005-64214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64215/", + "id": 64215, + "name": "Vartu", + "site_detail_url": "https://comicvine.gamespot.com/vartu/4005-64215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64216/", + "id": 64216, + "name": "Hynnit", + "site_detail_url": "https://comicvine.gamespot.com/hynnit/4005-64216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64217/", + "id": 64217, + "name": "Jyx", + "site_detail_url": "https://comicvine.gamespot.com/jyx/4005-64217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64218/", + "id": 64218, + "name": "Khirn", + "site_detail_url": "https://comicvine.gamespot.com/khirn/4005-64218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64219/", + "id": 64219, + "name": "Kynar", + "site_detail_url": "https://comicvine.gamespot.com/kynar/4005-64219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64220/", + "id": 64220, + "name": "Grand Overseer", + "site_detail_url": "https://comicvine.gamespot.com/grand-overseer/4005-64220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64221/", + "id": 64221, + "name": "Pyrakh", + "site_detail_url": "https://comicvine.gamespot.com/pyrakh/4005-64221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64222/", + "id": 64222, + "name": "Vorzen", + "site_detail_url": "https://comicvine.gamespot.com/vorzen/4005-64222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64223/", + "id": 64223, + "name": "Madame Ojani", + "site_detail_url": "https://comicvine.gamespot.com/madame-ojani/4005-64223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64224/", + "id": 64224, + "name": "Izzifizz", + "site_detail_url": "https://comicvine.gamespot.com/izzifizz/4005-64224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64225/", + "id": 64225, + "name": "Skooka", + "site_detail_url": "https://comicvine.gamespot.com/skooka/4005-64225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64226/", + "id": 64226, + "name": "Hunkir", + "site_detail_url": "https://comicvine.gamespot.com/hunkir/4005-64226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64227/", + "id": 64227, + "name": "Jurias", + "site_detail_url": "https://comicvine.gamespot.com/jurias/4005-64227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64228/", + "id": 64228, + "name": "Gilun", + "site_detail_url": "https://comicvine.gamespot.com/gilun/4005-64228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64229/", + "id": 64229, + "name": "Pradda Fol", + "site_detail_url": "https://comicvine.gamespot.com/pradda-fol/4005-64229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64230/", + "id": 64230, + "name": "Borrob", + "site_detail_url": "https://comicvine.gamespot.com/borrob/4005-64230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64231/", + "id": 64231, + "name": "Unit 101101", + "site_detail_url": "https://comicvine.gamespot.com/unit-101101/4005-64231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64233/", + "id": 64233, + "name": "Hyzaktl", + "site_detail_url": "https://comicvine.gamespot.com/hyzaktl/4005-64233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64234/", + "id": 64234, + "name": "Sire Ru", + "site_detail_url": "https://comicvine.gamespot.com/sire-ru/4005-64234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64235/", + "id": 64235, + "name": "Qirmet", + "site_detail_url": "https://comicvine.gamespot.com/qirmet/4005-64235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64236/", + "id": 64236, + "name": "Stracu", + "site_detail_url": "https://comicvine.gamespot.com/stracu/4005-64236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64237/", + "id": 64237, + "name": "Ur-Lini", + "site_detail_url": "https://comicvine.gamespot.com/ur-lini/4005-64237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64238/", + "id": 64238, + "name": "Hrill", + "site_detail_url": "https://comicvine.gamespot.com/hrill/4005-64238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64239/", + "id": 64239, + "name": "Szarkus", + "site_detail_url": "https://comicvine.gamespot.com/szarkus/4005-64239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64240/", + "id": 64240, + "name": "Throga", + "site_detail_url": "https://comicvine.gamespot.com/throga/4005-64240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64241/", + "id": 64241, + "name": "Black Surfer", + "site_detail_url": "https://comicvine.gamespot.com/black-surfer/4005-64241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64242/", + "id": 64242, + "name": "Vyrek", + "site_detail_url": "https://comicvine.gamespot.com/vyrek/4005-64242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64279/", + "id": 64279, + "name": "Gogo", + "site_detail_url": "https://comicvine.gamespot.com/gogo/4005-64279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64280/", + "id": 64280, + "name": "T-5", + "site_detail_url": "https://comicvine.gamespot.com/t-5/4005-64280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64281/", + "id": 64281, + "name": "Sauerkraut", + "site_detail_url": "https://comicvine.gamespot.com/sauerkraut/4005-64281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64328/", + "id": 64328, + "name": "General Airen Cracken", + "site_detail_url": "https://comicvine.gamespot.com/general-airen-cracken/4005-64328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64385/", + "id": 64385, + "name": "Johnny Heaven", + "site_detail_url": "https://comicvine.gamespot.com/johnny-heaven/4005-64385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64436/", + "id": 64436, + "name": "Smoke Demon", + "site_detail_url": "https://comicvine.gamespot.com/smoke-demon/4005-64436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64437/", + "id": 64437, + "name": "Katya M'Buele", + "site_detail_url": "https://comicvine.gamespot.com/katya-mbuele/4005-64437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64450/", + "id": 64450, + "name": "White Tiger", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger/4005-64450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64456/", + "id": 64456, + "name": "The Parrot", + "site_detail_url": "https://comicvine.gamespot.com/the-parrot/4005-64456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64546/", + "id": 64546, + "name": "Brad Carter", + "site_detail_url": "https://comicvine.gamespot.com/brad-carter/4005-64546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64547/", + "id": 64547, + "name": "Assemble", + "site_detail_url": "https://comicvine.gamespot.com/assemble/4005-64547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64612/", + "id": 64612, + "name": "Dahrev", + "site_detail_url": "https://comicvine.gamespot.com/dahrev/4005-64612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64613/", + "id": 64613, + "name": "Fenn-Ra", + "site_detail_url": "https://comicvine.gamespot.com/fenn-ra/4005-64613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64614/", + "id": 64614, + "name": "Freena", + "site_detail_url": "https://comicvine.gamespot.com/freena/4005-64614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64615/", + "id": 64615, + "name": "Kren", + "site_detail_url": "https://comicvine.gamespot.com/kren/4005-64615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64616/", + "id": 64616, + "name": "Liev-Ra", + "site_detail_url": "https://comicvine.gamespot.com/liev-ra/4005-64616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64617/", + "id": 64617, + "name": "Nassis", + "site_detail_url": "https://comicvine.gamespot.com/nassis/4005-64617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64633/", + "id": 64633, + "name": "Reddjak", + "site_detail_url": "https://comicvine.gamespot.com/reddjak/4005-64633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64652/", + "id": 64652, + "name": "Colonel Brekhov", + "site_detail_url": "https://comicvine.gamespot.com/colonel-brekhov/4005-64652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64687/", + "id": 64687, + "name": "Bounty", + "site_detail_url": "https://comicvine.gamespot.com/bounty/4005-64687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64688/", + "id": 64688, + "name": "Sorentino", + "site_detail_url": "https://comicvine.gamespot.com/sorentino/4005-64688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64689/", + "id": 64689, + "name": "Ganger 5", + "site_detail_url": "https://comicvine.gamespot.com/ganger-5/4005-64689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64714/", + "id": 64714, + "name": "Justice Rose", + "site_detail_url": "https://comicvine.gamespot.com/justice-rose/4005-64714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64716/", + "id": 64716, + "name": "Clay Surfer", + "site_detail_url": "https://comicvine.gamespot.com/clay-surfer/4005-64716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64718/", + "id": 64718, + "name": "Alexei Ganger", + "site_detail_url": "https://comicvine.gamespot.com/alexei-ganger/4005-64718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64748/", + "id": 64748, + "name": "Hydro", + "site_detail_url": "https://comicvine.gamespot.com/hydro/4005-64748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64750/", + "id": 64750, + "name": "Anton Satan", + "site_detail_url": "https://comicvine.gamespot.com/anton-satan/4005-64750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64819/", + "id": 64819, + "name": "Mrrungo-Mu", + "site_detail_url": "https://comicvine.gamespot.com/mrrungo-mu/4005-64819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64820/", + "id": 64820, + "name": "Tnneya", + "site_detail_url": "https://comicvine.gamespot.com/tnneya/4005-64820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64821/", + "id": 64821, + "name": "Earl Weygand", + "site_detail_url": "https://comicvine.gamespot.com/earl-weygand/4005-64821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64828/", + "id": 64828, + "name": "Cosmic Messiah", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-messiah/4005-64828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64854/", + "id": 64854, + "name": "Scrier", + "site_detail_url": "https://comicvine.gamespot.com/scrier/4005-64854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64874/", + "id": 64874, + "name": "Krang", + "site_detail_url": "https://comicvine.gamespot.com/krang/4005-64874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64876/", + "id": 64876, + "name": "Monstrom", + "site_detail_url": "https://comicvine.gamespot.com/monstrom/4005-64876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64877/", + "id": 64877, + "name": "Titano", + "site_detail_url": "https://comicvine.gamespot.com/titano/4005-64877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64879/", + "id": 64879, + "name": "Thorr", + "site_detail_url": "https://comicvine.gamespot.com/thorr/4005-64879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64881/", + "id": 64881, + "name": "Creature From Krogarr", + "site_detail_url": "https://comicvine.gamespot.com/creature-from-krogarr/4005-64881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64883/", + "id": 64883, + "name": "Kraa", + "site_detail_url": "https://comicvine.gamespot.com/kraa/4005-64883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64884/", + "id": 64884, + "name": "The Green Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-green-thing/4005-64884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64885/", + "id": 64885, + "name": "Ned Horrocks", + "site_detail_url": "https://comicvine.gamespot.com/ned-horrocks/4005-64885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64889/", + "id": 64889, + "name": "Karanda", + "site_detail_url": "https://comicvine.gamespot.com/karanda/4005-64889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64890/", + "id": 64890, + "name": "K'Tor", + "site_detail_url": "https://comicvine.gamespot.com/ktor/4005-64890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64891/", + "id": 64891, + "name": "N'Ruto", + "site_detail_url": "https://comicvine.gamespot.com/nruto/4005-64891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64892/", + "id": 64892, + "name": "Rook'shir", + "site_detail_url": "https://comicvine.gamespot.com/rookshir/4005-64892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64895/", + "id": 64895, + "name": "Oog", + "site_detail_url": "https://comicvine.gamespot.com/oog/4005-64895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64896/", + "id": 64896, + "name": "Jacob Reiss", + "site_detail_url": "https://comicvine.gamespot.com/jacob-reiss/4005-64896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64897/", + "id": 64897, + "name": "Sazzik", + "site_detail_url": "https://comicvine.gamespot.com/sazzik/4005-64897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64898/", + "id": 64898, + "name": "Things on Easter Island", + "site_detail_url": "https://comicvine.gamespot.com/things-on-easter-island/4005-64898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64901/", + "id": 64901, + "name": "Exo-Mind", + "site_detail_url": "https://comicvine.gamespot.com/exo-mind/4005-64901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64905/", + "id": 64905, + "name": "Emil", + "site_detail_url": "https://comicvine.gamespot.com/emil/4005-64905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64906/", + "id": 64906, + "name": "Spence", + "site_detail_url": "https://comicvine.gamespot.com/spence/4005-64906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64925/", + "id": 64925, + "name": "Alanna", + "site_detail_url": "https://comicvine.gamespot.com/alanna/4005-64925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64935/", + "id": 64935, + "name": "Abel Vannay", + "site_detail_url": "https://comicvine.gamespot.com/abel-vannay/4005-64935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64936/", + "id": 64936, + "name": "Arioch", + "site_detail_url": "https://comicvine.gamespot.com/arioch/4005-64936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64937/", + "id": 64937, + "name": "Steven Deschain", + "site_detail_url": "https://comicvine.gamespot.com/steven-deschain/4005-64937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64942/", + "id": 64942, + "name": "The Eldest", + "site_detail_url": "https://comicvine.gamespot.com/the-eldest/4005-64942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64951/", + "id": 64951, + "name": "Seetah", + "site_detail_url": "https://comicvine.gamespot.com/seetah/4005-64951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64957/", + "id": 64957, + "name": "Sama-D", + "site_detail_url": "https://comicvine.gamespot.com/sama-d/4005-64957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64959/", + "id": 64959, + "name": "Brahmanes", + "site_detail_url": "https://comicvine.gamespot.com/brahmanes/4005-64959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64985/", + "id": 64985, + "name": "Doctor Nital", + "site_detail_url": "https://comicvine.gamespot.com/doctor-nital/4005-64985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-64986/", + "id": 64986, + "name": "Draconis", + "site_detail_url": "https://comicvine.gamespot.com/draconis/4005-64986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65008/", + "id": 65008, + "name": "Crater", + "site_detail_url": "https://comicvine.gamespot.com/crater/4005-65008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65009/", + "id": 65009, + "name": "Discharge", + "site_detail_url": "https://comicvine.gamespot.com/discharge/4005-65009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65010/", + "id": 65010, + "name": "Faze", + "site_detail_url": "https://comicvine.gamespot.com/faze/4005-65010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65011/", + "id": 65011, + "name": "Suspensor", + "site_detail_url": "https://comicvine.gamespot.com/suspensor/4005-65011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65069/", + "id": 65069, + "name": "Charm", + "site_detail_url": "https://comicvine.gamespot.com/charm/4005-65069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65070/", + "id": 65070, + "name": "Al-Alawi", + "site_detail_url": "https://comicvine.gamespot.com/al-alawi/4005-65070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65074/", + "id": 65074, + "name": "Blaster", + "site_detail_url": "https://comicvine.gamespot.com/blaster/4005-65074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65075/", + "id": 65075, + "name": "Blocker", + "site_detail_url": "https://comicvine.gamespot.com/blocker/4005-65075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65083/", + "id": 65083, + "name": "Loss", + "site_detail_url": "https://comicvine.gamespot.com/loss/4005-65083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65086/", + "id": 65086, + "name": "Dibbuk", + "site_detail_url": "https://comicvine.gamespot.com/dibbuk/4005-65086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65087/", + "id": 65087, + "name": "Colonel John D Armbuster", + "site_detail_url": "https://comicvine.gamespot.com/colonel-john-d-armbuster/4005-65087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65089/", + "id": 65089, + "name": "Bomber Bill", + "site_detail_url": "https://comicvine.gamespot.com/bomber-bill/4005-65089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65090/", + "id": 65090, + "name": "Joey Slick", + "site_detail_url": "https://comicvine.gamespot.com/joey-slick/4005-65090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65091/", + "id": 65091, + "name": "Donny Finkleberg", + "site_detail_url": "https://comicvine.gamespot.com/donny-finkleberg/4005-65091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65092/", + "id": 65092, + "name": "Rachel Becker", + "site_detail_url": "https://comicvine.gamespot.com/rachel-becker/4005-65092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65101/", + "id": 65101, + "name": "Lube", + "site_detail_url": "https://comicvine.gamespot.com/lube/4005-65101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65102/", + "id": 65102, + "name": "Throttle", + "site_detail_url": "https://comicvine.gamespot.com/throttle/4005-65102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65107/", + "id": 65107, + "name": "Jesse", + "site_detail_url": "https://comicvine.gamespot.com/jesse/4005-65107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65119/", + "id": 65119, + "name": "Eradica", + "site_detail_url": "https://comicvine.gamespot.com/eradica/4005-65119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65120/", + "id": 65120, + "name": "Pyo", + "site_detail_url": "https://comicvine.gamespot.com/pyo/4005-65120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65121/", + "id": 65121, + "name": "Samaya", + "site_detail_url": "https://comicvine.gamespot.com/samaya/4005-65121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65133/", + "id": 65133, + "name": "Julia Winters", + "site_detail_url": "https://comicvine.gamespot.com/julia-winters/4005-65133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65158/", + "id": 65158, + "name": "Electric Blue", + "site_detail_url": "https://comicvine.gamespot.com/electric-blue/4005-65158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65159/", + "id": 65159, + "name": "Aughra", + "site_detail_url": "https://comicvine.gamespot.com/aughra/4005-65159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65160/", + "id": 65160, + "name": "Fizzgig", + "site_detail_url": "https://comicvine.gamespot.com/fizzgig/4005-65160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65161/", + "id": 65161, + "name": "Jen", + "site_detail_url": "https://comicvine.gamespot.com/jen/4005-65161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65162/", + "id": 65162, + "name": "Kira", + "site_detail_url": "https://comicvine.gamespot.com/kira/4005-65162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65163/", + "id": 65163, + "name": "Angel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-65163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65164/", + "id": 65164, + "name": "Mok", + "site_detail_url": "https://comicvine.gamespot.com/mok/4005-65164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65165/", + "id": 65165, + "name": "Omar", + "site_detail_url": "https://comicvine.gamespot.com/omar/4005-65165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65166/", + "id": 65166, + "name": "Mola Ram", + "site_detail_url": "https://comicvine.gamespot.com/mola-ram/4005-65166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65167/", + "id": 65167, + "name": "Short Round", + "site_detail_url": "https://comicvine.gamespot.com/short-round/4005-65167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65168/", + "id": 65168, + "name": "Willie Scott", + "site_detail_url": "https://comicvine.gamespot.com/willie-scott/4005-65168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65177/", + "id": 65177, + "name": "Otheym", + "site_detail_url": "https://comicvine.gamespot.com/otheym/4005-65177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65180/", + "id": 65180, + "name": "Princess Irulan", + "site_detail_url": "https://comicvine.gamespot.com/princess-irulan/4005-65180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65187/", + "id": 65187, + "name": "Membrain", + "site_detail_url": "https://comicvine.gamespot.com/membrain/4005-65187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65188/", + "id": 65188, + "name": "Didymus", + "site_detail_url": "https://comicvine.gamespot.com/didymus/4005-65188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65189/", + "id": 65189, + "name": "Hoggle", + "site_detail_url": "https://comicvine.gamespot.com/hoggle/4005-65189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65191/", + "id": 65191, + "name": "Ludo", + "site_detail_url": "https://comicvine.gamespot.com/ludo/4005-65191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65192/", + "id": 65192, + "name": "Sarah", + "site_detail_url": "https://comicvine.gamespot.com/sarah/4005-65192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65194/", + "id": 65194, + "name": "Integer", + "site_detail_url": "https://comicvine.gamespot.com/integer/4005-65194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65196/", + "id": 65196, + "name": "Daddy Wronglegs", + "site_detail_url": "https://comicvine.gamespot.com/daddy-wronglegs/4005-65196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65197/", + "id": 65197, + "name": "David Daily", + "site_detail_url": "https://comicvine.gamespot.com/david-daily/4005-65197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65198/", + "id": 65198, + "name": "Nigel Frobisher", + "site_detail_url": "https://comicvine.gamespot.com/nigel-frobisher/4005-65198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65227/", + "id": 65227, + "name": "Thor 2099", + "site_detail_url": "https://comicvine.gamespot.com/thor-2099/4005-65227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65283/", + "id": 65283, + "name": "The Collective", + "site_detail_url": "https://comicvine.gamespot.com/the-collective/4005-65283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65318/", + "id": 65318, + "name": "Abe Donovan", + "site_detail_url": "https://comicvine.gamespot.com/abe-donovan/4005-65318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65319/", + "id": 65319, + "name": "Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/grizzly/4005-65319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65323/", + "id": 65323, + "name": "Agent 13", + "site_detail_url": "https://comicvine.gamespot.com/agent-13/4005-65323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65325/", + "id": 65325, + "name": "Agent Briggs", + "site_detail_url": "https://comicvine.gamespot.com/agent-briggs/4005-65325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65326/", + "id": 65326, + "name": "Agent Colby", + "site_detail_url": "https://comicvine.gamespot.com/agent-colby/4005-65326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65328/", + "id": 65328, + "name": "Agent Simon", + "site_detail_url": "https://comicvine.gamespot.com/agent-simon/4005-65328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65330/", + "id": 65330, + "name": "Albakor", + "site_detail_url": "https://comicvine.gamespot.com/albakor/4005-65330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65369/", + "id": 65369, + "name": "Bai Gu Jing", + "site_detail_url": "https://comicvine.gamespot.com/bai-gu-jing/4005-65369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65371/", + "id": 65371, + "name": "Barbara Rave", + "site_detail_url": "https://comicvine.gamespot.com/barbara-rave/4005-65371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65373/", + "id": 65373, + "name": "Thought Master", + "site_detail_url": "https://comicvine.gamespot.com/thought-master/4005-65373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65374/", + "id": 65374, + "name": "Baron Skullfire", + "site_detail_url": "https://comicvine.gamespot.com/baron-skullfire/4005-65374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65375/", + "id": 65375, + "name": "Barry Osborn", + "site_detail_url": "https://comicvine.gamespot.com/barry-osborn/4005-65375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65376/", + "id": 65376, + "name": "Basallo", + "site_detail_url": "https://comicvine.gamespot.com/basallo/4005-65376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65396/", + "id": 65396, + "name": "Lucre", + "site_detail_url": "https://comicvine.gamespot.com/lucre/4005-65396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65397/", + "id": 65397, + "name": "Roxanne", + "site_detail_url": "https://comicvine.gamespot.com/roxanne/4005-65397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65398/", + "id": 65398, + "name": "Past Master", + "site_detail_url": "https://comicvine.gamespot.com/past-master/4005-65398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65399/", + "id": 65399, + "name": "Dauntless", + "site_detail_url": "https://comicvine.gamespot.com/dauntless/4005-65399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65402/", + "id": 65402, + "name": "Alexander Soloviev", + "site_detail_url": "https://comicvine.gamespot.com/alexander-soloviev/4005-65402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65404/", + "id": 65404, + "name": "Deb Levins", + "site_detail_url": "https://comicvine.gamespot.com/deb-levins/4005-65404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65409/", + "id": 65409, + "name": "Sgt. Sargent", + "site_detail_url": "https://comicvine.gamespot.com/sgt-sargent/4005-65409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65413/", + "id": 65413, + "name": "Mainframe", + "site_detail_url": "https://comicvine.gamespot.com/mainframe/4005-65413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65429/", + "id": 65429, + "name": "Aberration", + "site_detail_url": "https://comicvine.gamespot.com/aberration/4005-65429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65447/", + "id": 65447, + "name": "Adam Harkin", + "site_detail_url": "https://comicvine.gamespot.com/adam-harkin/4005-65447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65470/", + "id": 65470, + "name": "Morass", + "site_detail_url": "https://comicvine.gamespot.com/morass/4005-65470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65471/", + "id": 65471, + "name": "Axon", + "site_detail_url": "https://comicvine.gamespot.com/axon/4005-65471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65493/", + "id": 65493, + "name": "Alflyse", + "site_detail_url": "https://comicvine.gamespot.com/alflyse/4005-65493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65518/", + "id": 65518, + "name": "Ti Asha Ra", + "site_detail_url": "https://comicvine.gamespot.com/ti-asha-ra/4005-65518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65533/", + "id": 65533, + "name": "Captain Tiborgh", + "site_detail_url": "https://comicvine.gamespot.com/captain-tiborgh/4005-65533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65535/", + "id": 65535, + "name": "Ramrog", + "site_detail_url": "https://comicvine.gamespot.com/ramrog/4005-65535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65536/", + "id": 65536, + "name": "Ghant", + "site_detail_url": "https://comicvine.gamespot.com/ghant/4005-65536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65537/", + "id": 65537, + "name": "Renata", + "site_detail_url": "https://comicvine.gamespot.com/renata/4005-65537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65538/", + "id": 65538, + "name": "Mason", + "site_detail_url": "https://comicvine.gamespot.com/mason/4005-65538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65539/", + "id": 65539, + "name": "Paul", + "site_detail_url": "https://comicvine.gamespot.com/paul/4005-65539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65541/", + "id": 65541, + "name": "Foley", + "site_detail_url": "https://comicvine.gamespot.com/foley/4005-65541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65542/", + "id": 65542, + "name": "Lisa Beth", + "site_detail_url": "https://comicvine.gamespot.com/lisa-beth/4005-65542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65543/", + "id": 65543, + "name": "Mink", + "site_detail_url": "https://comicvine.gamespot.com/mink/4005-65543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65544/", + "id": 65544, + "name": "Knox", + "site_detail_url": "https://comicvine.gamespot.com/knox/4005-65544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65545/", + "id": 65545, + "name": "Sally Shearman", + "site_detail_url": "https://comicvine.gamespot.com/sally-shearman/4005-65545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65547/", + "id": 65547, + "name": "Chad Barrow", + "site_detail_url": "https://comicvine.gamespot.com/chad-barrow/4005-65547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65549/", + "id": 65549, + "name": "Voidian", + "site_detail_url": "https://comicvine.gamespot.com/voidian/4005-65549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65583/", + "id": 65583, + "name": "Kathy Malper", + "site_detail_url": "https://comicvine.gamespot.com/kathy-malper/4005-65583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65584/", + "id": 65584, + "name": "Commissioner Robert O'Hara", + "site_detail_url": "https://comicvine.gamespot.com/commissioner-robert-ohara/4005-65584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65585/", + "id": 65585, + "name": "Lucretia Jones", + "site_detail_url": "https://comicvine.gamespot.com/lucretia-jones/4005-65585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65586/", + "id": 65586, + "name": "Ashley Sanders", + "site_detail_url": "https://comicvine.gamespot.com/ashley-sanders/4005-65586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65587/", + "id": 65587, + "name": "Carl Kaxton", + "site_detail_url": "https://comicvine.gamespot.com/carl-kaxton/4005-65587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65588/", + "id": 65588, + "name": "Horatio Piper", + "site_detail_url": "https://comicvine.gamespot.com/horatio-piper/4005-65588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65589/", + "id": 65589, + "name": "Charles Burroughs", + "site_detail_url": "https://comicvine.gamespot.com/charles-burroughs/4005-65589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65590/", + "id": 65590, + "name": "Mitchell Chambers", + "site_detail_url": "https://comicvine.gamespot.com/mitchell-chambers/4005-65590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65591/", + "id": 65591, + "name": "Clansman", + "site_detail_url": "https://comicvine.gamespot.com/clansman/4005-65591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65592/", + "id": 65592, + "name": "Lucy Crumm", + "site_detail_url": "https://comicvine.gamespot.com/lucy-crumm/4005-65592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65593/", + "id": 65593, + "name": "Chester Goudal", + "site_detail_url": "https://comicvine.gamespot.com/chester-goudal/4005-65593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65594/", + "id": 65594, + "name": "Heathen", + "site_detail_url": "https://comicvine.gamespot.com/heathen/4005-65594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65595/", + "id": 65595, + "name": "Mondo Pain", + "site_detail_url": "https://comicvine.gamespot.com/mondo-pain/4005-65595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65604/", + "id": 65604, + "name": "Donna Garth", + "site_detail_url": "https://comicvine.gamespot.com/donna-garth/4005-65604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65605/", + "id": 65605, + "name": "Katinka", + "site_detail_url": "https://comicvine.gamespot.com/katinka/4005-65605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65606/", + "id": 65606, + "name": "Orator", + "site_detail_url": "https://comicvine.gamespot.com/orator/4005-65606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65608/", + "id": 65608, + "name": "Caviar Killer", + "site_detail_url": "https://comicvine.gamespot.com/caviar-killer/4005-65608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65609/", + "id": 65609, + "name": "Henry Dobbs", + "site_detail_url": "https://comicvine.gamespot.com/henry-dobbs/4005-65609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65610/", + "id": 65610, + "name": "Terrence Hillman", + "site_detail_url": "https://comicvine.gamespot.com/terrence-hillman/4005-65610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65611/", + "id": 65611, + "name": "Bill Wheeler", + "site_detail_url": "https://comicvine.gamespot.com/bill-wheeler/4005-65611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65618/", + "id": 65618, + "name": "Ernie Popchik", + "site_detail_url": "https://comicvine.gamespot.com/ernie-popchik/4005-65618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65620/", + "id": 65620, + "name": "Lt. Bert Rose", + "site_detail_url": "https://comicvine.gamespot.com/lt-bert-rose/4005-65620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65621/", + "id": 65621, + "name": "Phil Hichok", + "site_detail_url": "https://comicvine.gamespot.com/phil-hichok/4005-65621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65622/", + "id": 65622, + "name": "Danny Guitar", + "site_detail_url": "https://comicvine.gamespot.com/danny-guitar/4005-65622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65623/", + "id": 65623, + "name": "Danny French", + "site_detail_url": "https://comicvine.gamespot.com/danny-french/4005-65623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65624/", + "id": 65624, + "name": "Uriah the Faithful", + "site_detail_url": "https://comicvine.gamespot.com/uriah-the-faithful/4005-65624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65625/", + "id": 65625, + "name": "Macabee the Tall", + "site_detail_url": "https://comicvine.gamespot.com/macabee-the-tall/4005-65625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65626/", + "id": 65626, + "name": "Josiah the Deceiver", + "site_detail_url": "https://comicvine.gamespot.com/josiah-the-deceiver/4005-65626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65627/", + "id": 65627, + "name": "Daredevil 2099", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-2099/4005-65627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65629/", + "id": 65629, + "name": "Gwynn", + "site_detail_url": "https://comicvine.gamespot.com/gwynn/4005-65629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65633/", + "id": 65633, + "name": "Arc Light", + "site_detail_url": "https://comicvine.gamespot.com/arc-light/4005-65633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65634/", + "id": 65634, + "name": "Joy Adams", + "site_detail_url": "https://comicvine.gamespot.com/joy-adams/4005-65634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65635/", + "id": 65635, + "name": "Dr. Van Eyck", + "site_detail_url": "https://comicvine.gamespot.com/dr-van-eyck/4005-65635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65636/", + "id": 65636, + "name": "Trixter", + "site_detail_url": "https://comicvine.gamespot.com/trixter/4005-65636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65637/", + "id": 65637, + "name": "Johnny Squarejohn", + "site_detail_url": "https://comicvine.gamespot.com/johnny-squarejohn/4005-65637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65638/", + "id": 65638, + "name": "Dr. Armstrong Smith", + "site_detail_url": "https://comicvine.gamespot.com/dr-armstrong-smith/4005-65638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65639/", + "id": 65639, + "name": "Tia Senyaka", + "site_detail_url": "https://comicvine.gamespot.com/tia-senyaka/4005-65639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65640/", + "id": 65640, + "name": "Scope", + "site_detail_url": "https://comicvine.gamespot.com/scope/4005-65640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65641/", + "id": 65641, + "name": "Col. Herbert Fedenia", + "site_detail_url": "https://comicvine.gamespot.com/col-herbert-fedenia/4005-65641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65642/", + "id": 65642, + "name": "Colonel De Sade", + "site_detail_url": "https://comicvine.gamespot.com/colonel-de-sade/4005-65642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65643/", + "id": 65643, + "name": "Mark Christianson", + "site_detail_url": "https://comicvine.gamespot.com/mark-christianson/4005-65643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65644/", + "id": 65644, + "name": "Tony Casino", + "site_detail_url": "https://comicvine.gamespot.com/tony-casino/4005-65644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65645/", + "id": 65645, + "name": "Adam Casim", + "site_detail_url": "https://comicvine.gamespot.com/adam-casim/4005-65645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65646/", + "id": 65646, + "name": "Cabbie Killer", + "site_detail_url": "https://comicvine.gamespot.com/cabbie-killer/4005-65646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65647/", + "id": 65647, + "name": "Morris Brattle", + "site_detail_url": "https://comicvine.gamespot.com/morris-brattle/4005-65647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65648/", + "id": 65648, + "name": "Blind Joe Death", + "site_detail_url": "https://comicvine.gamespot.com/blind-joe-death/4005-65648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65649/", + "id": 65649, + "name": "C.B. Bissel", + "site_detail_url": "https://comicvine.gamespot.com/cb-bissel/4005-65649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65650/", + "id": 65650, + "name": "Bayside Butcher", + "site_detail_url": "https://comicvine.gamespot.com/bayside-butcher/4005-65650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65651/", + "id": 65651, + "name": "George Tam Wong", + "site_detail_url": "https://comicvine.gamespot.com/george-tam-wong/4005-65651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65652/", + "id": 65652, + "name": "Theressa Tracy", + "site_detail_url": "https://comicvine.gamespot.com/theressa-tracy/4005-65652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65653/", + "id": 65653, + "name": "Ron Takimoto", + "site_detail_url": "https://comicvine.gamespot.com/ron-takimoto/4005-65653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65654/", + "id": 65654, + "name": "Skid-Row Slasher", + "site_detail_url": "https://comicvine.gamespot.com/skid-row-slasher/4005-65654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65655/", + "id": 65655, + "name": "Chet Scully", + "site_detail_url": "https://comicvine.gamespot.com/chet-scully/4005-65655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65656/", + "id": 65656, + "name": "Sandeen", + "site_detail_url": "https://comicvine.gamespot.com/sandeen/4005-65656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65657/", + "id": 65657, + "name": "Red Fever", + "site_detail_url": "https://comicvine.gamespot.com/red-fever/4005-65657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65658/", + "id": 65658, + "name": "Raving Beauty", + "site_detail_url": "https://comicvine.gamespot.com/raving-beauty/4005-65658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65659/", + "id": 65659, + "name": "Pepe the Brujo", + "site_detail_url": "https://comicvine.gamespot.com/pepe-the-brujo/4005-65659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65660/", + "id": 65660, + "name": "Yo-Yo Ng", + "site_detail_url": "https://comicvine.gamespot.com/yo-yo-ng/4005-65660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65661/", + "id": 65661, + "name": "Howard Nees", + "site_detail_url": "https://comicvine.gamespot.com/howard-nees/4005-65661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65662/", + "id": 65662, + "name": "Principal Mohr", + "site_detail_url": "https://comicvine.gamespot.com/principal-mohr/4005-65662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65663/", + "id": 65663, + "name": "Microchip Junior", + "site_detail_url": "https://comicvine.gamespot.com/microchip-junior/4005-65663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65665/", + "id": 65665, + "name": "Peter Malum", + "site_detail_url": "https://comicvine.gamespot.com/peter-malum/4005-65665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65666/", + "id": 65666, + "name": "Roger Lewis", + "site_detail_url": "https://comicvine.gamespot.com/roger-lewis/4005-65666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65667/", + "id": 65667, + "name": "Detective Stan Witts", + "site_detail_url": "https://comicvine.gamespot.com/detective-stan-witts/4005-65667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65668/", + "id": 65668, + "name": "Detective John Laviano", + "site_detail_url": "https://comicvine.gamespot.com/detective-john-laviano/4005-65668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65669/", + "id": 65669, + "name": "Killer B", + "site_detail_url": "https://comicvine.gamespot.com/killer-b/4005-65669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65670/", + "id": 65670, + "name": "Davis Keeton", + "site_detail_url": "https://comicvine.gamespot.com/davis-keeton/4005-65670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65671/", + "id": 65671, + "name": "Milissa Jones", + "site_detail_url": "https://comicvine.gamespot.com/milissa-jones/4005-65671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65672/", + "id": 65672, + "name": "Boff Johnson", + "site_detail_url": "https://comicvine.gamespot.com/boff-johnson/4005-65672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65673/", + "id": 65673, + "name": "Hogman", + "site_detail_url": "https://comicvine.gamespot.com/hogman/4005-65673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65674/", + "id": 65674, + "name": "Lupe Guttierez", + "site_detail_url": "https://comicvine.gamespot.com/lupe-guttierez/4005-65674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65675/", + "id": 65675, + "name": "Colonel Joseph Fryer", + "site_detail_url": "https://comicvine.gamespot.com/colonel-joseph-fryer/4005-65675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65676/", + "id": 65676, + "name": "Zoroaster", + "site_detail_url": "https://comicvine.gamespot.com/zoroaster/4005-65676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65677/", + "id": 65677, + "name": "Harvey Teabiscuit", + "site_detail_url": "https://comicvine.gamespot.com/harvey-teabiscuit/4005-65677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65678/", + "id": 65678, + "name": "Spotted Doe", + "site_detail_url": "https://comicvine.gamespot.com/spotted-doe/4005-65678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65679/", + "id": 65679, + "name": "Jonas Cray", + "site_detail_url": "https://comicvine.gamespot.com/jonas-cray/4005-65679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65680/", + "id": 65680, + "name": "Safron Caulder", + "site_detail_url": "https://comicvine.gamespot.com/safron-caulder/4005-65680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65681/", + "id": 65681, + "name": "Dalton Cartwright", + "site_detail_url": "https://comicvine.gamespot.com/dalton-cartwright/4005-65681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65682/", + "id": 65682, + "name": "Commuter", + "site_detail_url": "https://comicvine.gamespot.com/commuter/4005-65682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65683/", + "id": 65683, + "name": "Caryn Earle", + "site_detail_url": "https://comicvine.gamespot.com/caryn-earle/4005-65683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65719/", + "id": 65719, + "name": "M'Duul", + "site_detail_url": "https://comicvine.gamespot.com/mduul/4005-65719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65720/", + "id": 65720, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-65720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65721/", + "id": 65721, + "name": "Actor", + "site_detail_url": "https://comicvine.gamespot.com/actor/4005-65721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65748/", + "id": 65748, + "name": "Minion II", + "site_detail_url": "https://comicvine.gamespot.com/minion-ii/4005-65748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65761/", + "id": 65761, + "name": "Lobo", + "site_detail_url": "https://comicvine.gamespot.com/lobo/4005-65761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65762/", + "id": 65762, + "name": "Blaze the Wonder Collie", + "site_detail_url": "https://comicvine.gamespot.com/blaze-the-wonder-collie/4005-65762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65763/", + "id": 65763, + "name": "Hellhorse", + "site_detail_url": "https://comicvine.gamespot.com/hellhorse/4005-65763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65773/", + "id": 65773, + "name": "David Chan", + "site_detail_url": "https://comicvine.gamespot.com/david-chan/4005-65773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65774/", + "id": 65774, + "name": "Psychedelia", + "site_detail_url": "https://comicvine.gamespot.com/psychedelia/4005-65774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65786/", + "id": 65786, + "name": "Scar-Face", + "site_detail_url": "https://comicvine.gamespot.com/scar-face/4005-65786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65787/", + "id": 65787, + "name": "Candy Appel", + "site_detail_url": "https://comicvine.gamespot.com/candy-appel/4005-65787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65795/", + "id": 65795, + "name": "Aqhat", + "site_detail_url": "https://comicvine.gamespot.com/aqhat/4005-65795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65796/", + "id": 65796, + "name": "Amy Reilly", + "site_detail_url": "https://comicvine.gamespot.com/amy-reilly/4005-65796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65797/", + "id": 65797, + "name": "Alexa Reilly", + "site_detail_url": "https://comicvine.gamespot.com/alexa-reilly/4005-65797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65799/", + "id": 65799, + "name": "Ellie Waters", + "site_detail_url": "https://comicvine.gamespot.com/ellie-waters/4005-65799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65800/", + "id": 65800, + "name": "Denise Waters", + "site_detail_url": "https://comicvine.gamespot.com/denise-waters/4005-65800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65801/", + "id": 65801, + "name": "Elvis Morin", + "site_detail_url": "https://comicvine.gamespot.com/elvis-morin/4005-65801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65802/", + "id": 65802, + "name": "Lt. Poirier", + "site_detail_url": "https://comicvine.gamespot.com/lt-poirier/4005-65802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65803/", + "id": 65803, + "name": "Stewart Acheron", + "site_detail_url": "https://comicvine.gamespot.com/stewart-acheron/4005-65803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65804/", + "id": 65804, + "name": "Gabe Acheron", + "site_detail_url": "https://comicvine.gamespot.com/gabe-acheron/4005-65804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65805/", + "id": 65805, + "name": "Amnel", + "site_detail_url": "https://comicvine.gamespot.com/amnel/4005-65805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65806/", + "id": 65806, + "name": "Apryl", + "site_detail_url": "https://comicvine.gamespot.com/apryl/4005-65806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65807/", + "id": 65807, + "name": "Stessa", + "site_detail_url": "https://comicvine.gamespot.com/stessa/4005-65807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65808/", + "id": 65808, + "name": "Singularity", + "site_detail_url": "https://comicvine.gamespot.com/singularity/4005-65808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65809/", + "id": 65809, + "name": "Annie Laronde", + "site_detail_url": "https://comicvine.gamespot.com/annie-laronde/4005-65809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65810/", + "id": 65810, + "name": "Ayaman", + "site_detail_url": "https://comicvine.gamespot.com/ayaman/4005-65810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65811/", + "id": 65811, + "name": "Noah", + "site_detail_url": "https://comicvine.gamespot.com/noah/4005-65811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65833/", + "id": 65833, + "name": "Jill Jerold", + "site_detail_url": "https://comicvine.gamespot.com/jill-jerold/4005-65833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65884/", + "id": 65884, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-65884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65909/", + "id": 65909, + "name": "Caliburst", + "site_detail_url": "https://comicvine.gamespot.com/caliburst/4005-65909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65940/", + "id": 65940, + "name": "Kojo Agu", + "site_detail_url": "https://comicvine.gamespot.com/kojo-agu/4005-65940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65941/", + "id": 65941, + "name": "Taylor H. Miles", + "site_detail_url": "https://comicvine.gamespot.com/taylor-h-miles/4005-65941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65943/", + "id": 65943, + "name": "Gretchen", + "site_detail_url": "https://comicvine.gamespot.com/gretchen/4005-65943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65944/", + "id": 65944, + "name": "Brimley", + "site_detail_url": "https://comicvine.gamespot.com/brimley/4005-65944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65945/", + "id": 65945, + "name": "Master Sergeant Frost", + "site_detail_url": "https://comicvine.gamespot.com/master-sergeant-frost/4005-65945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-65962/", + "id": 65962, + "name": "Charlene Welles", + "site_detail_url": "https://comicvine.gamespot.com/charlene-welles/4005-65962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66020/", + "id": 66020, + "name": "Monkey C", + "site_detail_url": "https://comicvine.gamespot.com/monkey-c/4005-66020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66024/", + "id": 66024, + "name": "Janie Chin", + "site_detail_url": "https://comicvine.gamespot.com/janie-chin/4005-66024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66092/", + "id": 66092, + "name": "Muray Eel", + "site_detail_url": "https://comicvine.gamespot.com/muray-eel/4005-66092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66162/", + "id": 66162, + "name": "Hijack", + "site_detail_url": "https://comicvine.gamespot.com/hijack/4005-66162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66163/", + "id": 66163, + "name": "Input", + "site_detail_url": "https://comicvine.gamespot.com/input/4005-66163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66173/", + "id": 66173, + "name": "Amanda Reilly", + "site_detail_url": "https://comicvine.gamespot.com/amanda-reilly/4005-66173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66186/", + "id": 66186, + "name": "Lord Zedd", + "site_detail_url": "https://comicvine.gamespot.com/lord-zedd/4005-66186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66194/", + "id": 66194, + "name": "Gwyneth Burke", + "site_detail_url": "https://comicvine.gamespot.com/gwyneth-burke/4005-66194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66195/", + "id": 66195, + "name": "Jack Burke", + "site_detail_url": "https://comicvine.gamespot.com/jack-burke/4005-66195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66196/", + "id": 66196, + "name": "Job Burke", + "site_detail_url": "https://comicvine.gamespot.com/job-burke/4005-66196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66197/", + "id": 66197, + "name": "Cleito", + "site_detail_url": "https://comicvine.gamespot.com/cleito/4005-66197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66207/", + "id": 66207, + "name": "Wilfred Maxwell", + "site_detail_url": "https://comicvine.gamespot.com/wilfred-maxwell/4005-66207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66208/", + "id": 66208, + "name": "Vivian Morgan", + "site_detail_url": "https://comicvine.gamespot.com/vivian-morgan/4005-66208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66210/", + "id": 66210, + "name": "Louie Kelt", + "site_detail_url": "https://comicvine.gamespot.com/louie-kelt/4005-66210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66214/", + "id": 66214, + "name": "Lady Tenelle", + "site_detail_url": "https://comicvine.gamespot.com/lady-tenelle/4005-66214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66215/", + "id": 66215, + "name": "Edward Payne", + "site_detail_url": "https://comicvine.gamespot.com/edward-payne/4005-66215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66216/", + "id": 66216, + "name": "Michael Payne", + "site_detail_url": "https://comicvine.gamespot.com/michael-payne/4005-66216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66217/", + "id": 66217, + "name": "Marion Clearwater", + "site_detail_url": "https://comicvine.gamespot.com/marion-clearwater/4005-66217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66219/", + "id": 66219, + "name": "Michael Dorie", + "site_detail_url": "https://comicvine.gamespot.com/michael-dorie/4005-66219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66237/", + "id": 66237, + "name": "Douglas Thompson", + "site_detail_url": "https://comicvine.gamespot.com/douglas-thompson/4005-66237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66242/", + "id": 66242, + "name": "Bouncing Betty", + "site_detail_url": "https://comicvine.gamespot.com/bouncing-betty/4005-66242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66243/", + "id": 66243, + "name": "Burst", + "site_detail_url": "https://comicvine.gamespot.com/burst/4005-66243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66244/", + "id": 66244, + "name": "Lobe", + "site_detail_url": "https://comicvine.gamespot.com/lobe/4005-66244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66245/", + "id": 66245, + "name": "Thug", + "site_detail_url": "https://comicvine.gamespot.com/thug/4005-66245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66246/", + "id": 66246, + "name": "Verre", + "site_detail_url": "https://comicvine.gamespot.com/verre/4005-66246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66249/", + "id": 66249, + "name": "Dr. Japanazi", + "site_detail_url": "https://comicvine.gamespot.com/dr-japanazi/4005-66249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66252/", + "id": 66252, + "name": "Zan Philo", + "site_detail_url": "https://comicvine.gamespot.com/zan-philo/4005-66252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66261/", + "id": 66261, + "name": "Dianne Bellamy", + "site_detail_url": "https://comicvine.gamespot.com/dianne-bellamy/4005-66261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66268/", + "id": 66268, + "name": "Norman Webster", + "site_detail_url": "https://comicvine.gamespot.com/norman-webster/4005-66268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66284/", + "id": 66284, + "name": "Frank Rambeau", + "site_detail_url": "https://comicvine.gamespot.com/frank-rambeau/4005-66284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66288/", + "id": 66288, + "name": "Maria Rambeau", + "site_detail_url": "https://comicvine.gamespot.com/maria-rambeau/4005-66288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66296/", + "id": 66296, + "name": "Tom Smallwood", + "site_detail_url": "https://comicvine.gamespot.com/tom-smallwood/4005-66296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66298/", + "id": 66298, + "name": "Gladys Smallwood", + "site_detail_url": "https://comicvine.gamespot.com/gladys-smallwood/4005-66298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66299/", + "id": 66299, + "name": "Dan Smallwood", + "site_detail_url": "https://comicvine.gamespot.com/dan-smallwood/4005-66299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66302/", + "id": 66302, + "name": "Inciters", + "site_detail_url": "https://comicvine.gamespot.com/inciters/4005-66302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66315/", + "id": 66315, + "name": "Empress of the Ama", + "site_detail_url": "https://comicvine.gamespot.com/empress-of-the-ama/4005-66315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66316/", + "id": 66316, + "name": "Ruqtar Koil", + "site_detail_url": "https://comicvine.gamespot.com/ruqtar-koil/4005-66316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66317/", + "id": 66317, + "name": "Tol-Wes", + "site_detail_url": "https://comicvine.gamespot.com/tol-wes/4005-66317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66332/", + "id": 66332, + "name": "Mindy Williams", + "site_detail_url": "https://comicvine.gamespot.com/mindy-williams/4005-66332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66343/", + "id": 66343, + "name": "Philip le Guin", + "site_detail_url": "https://comicvine.gamespot.com/philip-le-guin/4005-66343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66349/", + "id": 66349, + "name": "Ursula Richards", + "site_detail_url": "https://comicvine.gamespot.com/ursula-richards/4005-66349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66359/", + "id": 66359, + "name": "Auntie", + "site_detail_url": "https://comicvine.gamespot.com/auntie/4005-66359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66361/", + "id": 66361, + "name": "Joy Meadows", + "site_detail_url": "https://comicvine.gamespot.com/joy-meadows/4005-66361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66362/", + "id": 66362, + "name": "Cindy Newell", + "site_detail_url": "https://comicvine.gamespot.com/cindy-newell/4005-66362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66363/", + "id": 66363, + "name": "Susan Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/susan-hoffman/4005-66363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66364/", + "id": 66364, + "name": "Franklin Retler", + "site_detail_url": "https://comicvine.gamespot.com/franklin-retler/4005-66364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66365/", + "id": 66365, + "name": "Donald Gaffney", + "site_detail_url": "https://comicvine.gamespot.com/donald-gaffney/4005-66365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66366/", + "id": 66366, + "name": "Father Abbot", + "site_detail_url": "https://comicvine.gamespot.com/father-abbot/4005-66366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66367/", + "id": 66367, + "name": "Barnabbas", + "site_detail_url": "https://comicvine.gamespot.com/barnabbas/4005-66367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66368/", + "id": 66368, + "name": "Lei Kung", + "site_detail_url": "https://comicvine.gamespot.com/lei-kung/4005-66368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66369/", + "id": 66369, + "name": "Frederick Gramon", + "site_detail_url": "https://comicvine.gamespot.com/frederick-gramon/4005-66369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66370/", + "id": 66370, + "name": "Gregor Gerasimov", + "site_detail_url": "https://comicvine.gamespot.com/gregor-gerasimov/4005-66370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66371/", + "id": 66371, + "name": "Kara Janissery", + "site_detail_url": "https://comicvine.gamespot.com/kara-janissery/4005-66371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66392/", + "id": 66392, + "name": "Roger Barbatos", + "site_detail_url": "https://comicvine.gamespot.com/roger-barbatos/4005-66392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66393/", + "id": 66393, + "name": "Talita", + "site_detail_url": "https://comicvine.gamespot.com/talita/4005-66393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66473/", + "id": 66473, + "name": "Wong-Chu", + "site_detail_url": "https://comicvine.gamespot.com/wong-chu/4005-66473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66474/", + "id": 66474, + "name": "Adam and Eve", + "site_detail_url": "https://comicvine.gamespot.com/adam-and-eve/4005-66474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66475/", + "id": 66475, + "name": "Christopher M. Walsh", + "site_detail_url": "https://comicvine.gamespot.com/christopher-m-walsh/4005-66475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66476/", + "id": 66476, + "name": "Gundar", + "site_detail_url": "https://comicvine.gamespot.com/gundar/4005-66476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66478/", + "id": 66478, + "name": "Gargantus", + "site_detail_url": "https://comicvine.gamespot.com/gargantus/4005-66478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66479/", + "id": 66479, + "name": "Jeanne of Monte Carlo", + "site_detail_url": "https://comicvine.gamespot.com/jeanne-of-monte-carlo/4005-66479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66480/", + "id": 66480, + "name": "General Fang", + "site_detail_url": "https://comicvine.gamespot.com/general-fang/4005-66480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66481/", + "id": 66481, + "name": "Frans Ridderkerk", + "site_detail_url": "https://comicvine.gamespot.com/frans-ridderkerk/4005-66481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66482/", + "id": 66482, + "name": "Borger", + "site_detail_url": "https://comicvine.gamespot.com/borger/4005-66482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66483/", + "id": 66483, + "name": "Hendrick Rammp", + "site_detail_url": "https://comicvine.gamespot.com/hendrick-rammp/4005-66483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66484/", + "id": 66484, + "name": "Prophet of Doom", + "site_detail_url": "https://comicvine.gamespot.com/prophet-of-doom/4005-66484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66486/", + "id": 66486, + "name": "Carlo Strange", + "site_detail_url": "https://comicvine.gamespot.com/carlo-strange/4005-66486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66487/", + "id": 66487, + "name": "Carla Strange", + "site_detail_url": "https://comicvine.gamespot.com/carla-strange/4005-66487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66488/", + "id": 66488, + "name": "General Kozar", + "site_detail_url": "https://comicvine.gamespot.com/general-kozar/4005-66488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66489/", + "id": 66489, + "name": "Traveler to the End of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/traveler-to-the-end-of-the-universe/4005-66489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66491/", + "id": 66491, + "name": "Smith the Believer", + "site_detail_url": "https://comicvine.gamespot.com/smith-the-believer/4005-66491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66494/", + "id": 66494, + "name": "Rodney the Skeptic", + "site_detail_url": "https://comicvine.gamespot.com/rodney-the-skeptic/4005-66494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66495/", + "id": 66495, + "name": "Conrad Zeno", + "site_detail_url": "https://comicvine.gamespot.com/conrad-zeno/4005-66495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66504/", + "id": 66504, + "name": "Gertrude Jacks", + "site_detail_url": "https://comicvine.gamespot.com/gertrude-jacks/4005-66504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66525/", + "id": 66525, + "name": "Baxu", + "site_detail_url": "https://comicvine.gamespot.com/baxu/4005-66525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66528/", + "id": 66528, + "name": "Simon Stanley", + "site_detail_url": "https://comicvine.gamespot.com/simon-stanley/4005-66528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66529/", + "id": 66529, + "name": "Jukes", + "site_detail_url": "https://comicvine.gamespot.com/jukes/4005-66529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66531/", + "id": 66531, + "name": "Dirk of the Space Corps", + "site_detail_url": "https://comicvine.gamespot.com/dirk-of-the-space-corps/4005-66531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66533/", + "id": 66533, + "name": "Siblus Sladd", + "site_detail_url": "https://comicvine.gamespot.com/siblus-sladd/4005-66533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66547/", + "id": 66547, + "name": "Hatap", + "site_detail_url": "https://comicvine.gamespot.com/hatap/4005-66547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66548/", + "id": 66548, + "name": "Darius Wentworth", + "site_detail_url": "https://comicvine.gamespot.com/darius-wentworth/4005-66548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66549/", + "id": 66549, + "name": "Serge Plotski", + "site_detail_url": "https://comicvine.gamespot.com/serge-plotski/4005-66549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66551/", + "id": 66551, + "name": "Victor Farrington", + "site_detail_url": "https://comicvine.gamespot.com/victor-farrington/4005-66551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66553/", + "id": 66553, + "name": "Wattu", + "site_detail_url": "https://comicvine.gamespot.com/wattu/4005-66553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66554/", + "id": 66554, + "name": "Fenwick Flubb", + "site_detail_url": "https://comicvine.gamespot.com/fenwick-flubb/4005-66554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66558/", + "id": 66558, + "name": "Miss Glitter", + "site_detail_url": "https://comicvine.gamespot.com/miss-glitter/4005-66558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66559/", + "id": 66559, + "name": "Carl Collins", + "site_detail_url": "https://comicvine.gamespot.com/carl-collins/4005-66559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66560/", + "id": 66560, + "name": "Athena of the Bimmu Raiders", + "site_detail_url": "https://comicvine.gamespot.com/athena-of-the-bimmu-raiders/4005-66560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66561/", + "id": 66561, + "name": "Boltax", + "site_detail_url": "https://comicvine.gamespot.com/boltax/4005-66561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66565/", + "id": 66565, + "name": "Charleton Carter", + "site_detail_url": "https://comicvine.gamespot.com/charleton-carter/4005-66565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66568/", + "id": 66568, + "name": "Hans Hartog", + "site_detail_url": "https://comicvine.gamespot.com/hans-hartog/4005-66568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66569/", + "id": 66569, + "name": "Kraddak", + "site_detail_url": "https://comicvine.gamespot.com/kraddak/4005-66569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66585/", + "id": 66585, + "name": "Ho Lee", + "site_detail_url": "https://comicvine.gamespot.com/ho-lee/4005-66585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66587/", + "id": 66587, + "name": "Mr. Veech", + "site_detail_url": "https://comicvine.gamespot.com/mr-veech/4005-66587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66588/", + "id": 66588, + "name": "Nandy", + "site_detail_url": "https://comicvine.gamespot.com/nandy/4005-66588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66605/", + "id": 66605, + "name": "Adam Bentley", + "site_detail_url": "https://comicvine.gamespot.com/adam-bentley/4005-66605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66606/", + "id": 66606, + "name": "Wilbur Weems", + "site_detail_url": "https://comicvine.gamespot.com/wilbur-weems/4005-66606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66613/", + "id": 66613, + "name": "Sally the mischievous", + "site_detail_url": "https://comicvine.gamespot.com/sally-the-mischievous/4005-66613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66632/", + "id": 66632, + "name": "Silverback", + "site_detail_url": "https://comicvine.gamespot.com/silverback/4005-66632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66647/", + "id": 66647, + "name": "Barroas", + "site_detail_url": "https://comicvine.gamespot.com/barroas/4005-66647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66648/", + "id": 66648, + "name": "Diemoas", + "site_detail_url": "https://comicvine.gamespot.com/diemoas/4005-66648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66649/", + "id": 66649, + "name": "Skiorlov", + "site_detail_url": "https://comicvine.gamespot.com/skiorlov/4005-66649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66654/", + "id": 66654, + "name": "Kram", + "site_detail_url": "https://comicvine.gamespot.com/kram/4005-66654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66655/", + "id": 66655, + "name": "Lihla", + "site_detail_url": "https://comicvine.gamespot.com/lihla/4005-66655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66656/", + "id": 66656, + "name": "Yenrag", + "site_detail_url": "https://comicvine.gamespot.com/yenrag/4005-66656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66700/", + "id": 66700, + "name": "Ohyaku", + "site_detail_url": "https://comicvine.gamespot.com/ohyaku/4005-66700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66701/", + "id": 66701, + "name": "Agent of 1,000 Faces", + "site_detail_url": "https://comicvine.gamespot.com/agent-of-1000-faces/4005-66701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66706/", + "id": 66706, + "name": "Sally Anne Carter", + "site_detail_url": "https://comicvine.gamespot.com/sally-anne-carter/4005-66706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66707/", + "id": 66707, + "name": "Kestrel", + "site_detail_url": "https://comicvine.gamespot.com/kestrel/4005-66707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66727/", + "id": 66727, + "name": "Ivan Ooze", + "site_detail_url": "https://comicvine.gamespot.com/ivan-ooze/4005-66727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66761/", + "id": 66761, + "name": "Fernusan", + "site_detail_url": "https://comicvine.gamespot.com/fernusan/4005-66761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66762/", + "id": 66762, + "name": "Vince Harding", + "site_detail_url": "https://comicvine.gamespot.com/vince-harding/4005-66762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66763/", + "id": 66763, + "name": "Paul Harding", + "site_detail_url": "https://comicvine.gamespot.com/paul-harding/4005-66763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66764/", + "id": 66764, + "name": "Giant-Sam", + "site_detail_url": "https://comicvine.gamespot.com/giant-sam/4005-66764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66776/", + "id": 66776, + "name": "Karlak", + "site_detail_url": "https://comicvine.gamespot.com/karlak/4005-66776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66780/", + "id": 66780, + "name": "Wazir", + "site_detail_url": "https://comicvine.gamespot.com/wazir/4005-66780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66781/", + "id": 66781, + "name": "Great Kamir", + "site_detail_url": "https://comicvine.gamespot.com/great-kamir/4005-66781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66782/", + "id": 66782, + "name": "Hugo the assistant", + "site_detail_url": "https://comicvine.gamespot.com/hugo-the-assistant/4005-66782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66783/", + "id": 66783, + "name": "Widow Wentworth", + "site_detail_url": "https://comicvine.gamespot.com/widow-wentworth/4005-66783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66784/", + "id": 66784, + "name": "Kenn Bentley", + "site_detail_url": "https://comicvine.gamespot.com/kenn-bentley/4005-66784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66785/", + "id": 66785, + "name": "Valeria Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/valeria-reynolds/4005-66785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66786/", + "id": 66786, + "name": "Igor the agent", + "site_detail_url": "https://comicvine.gamespot.com/igor-the-agent/4005-66786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66787/", + "id": 66787, + "name": "Stansky", + "site_detail_url": "https://comicvine.gamespot.com/stansky/4005-66787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66789/", + "id": 66789, + "name": "Lokar", + "site_detail_url": "https://comicvine.gamespot.com/lokar/4005-66789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66807/", + "id": 66807, + "name": "Skrang", + "site_detail_url": "https://comicvine.gamespot.com/skrang/4005-66807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66808/", + "id": 66808, + "name": "Miss Hotchkiss", + "site_detail_url": "https://comicvine.gamespot.com/miss-hotchkiss/4005-66808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66814/", + "id": 66814, + "name": "Maria Trovaya Pym", + "site_detail_url": "https://comicvine.gamespot.com/maria-trovaya-pym/4005-66814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66815/", + "id": 66815, + "name": "Vernon Van Dyne", + "site_detail_url": "https://comicvine.gamespot.com/vernon-van-dyne/4005-66815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66844/", + "id": 66844, + "name": "D'Compose", + "site_detail_url": "https://comicvine.gamespot.com/dcompose/4005-66844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66845/", + "id": 66845, + "name": "Metlar", + "site_detail_url": "https://comicvine.gamespot.com/metlar/4005-66845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66846/", + "id": 66846, + "name": "Tendril", + "site_detail_url": "https://comicvine.gamespot.com/tendril/4005-66846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66847/", + "id": 66847, + "name": "Liquidator", + "site_detail_url": "https://comicvine.gamespot.com/liquidator/4005-66847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66880/", + "id": 66880, + "name": "Po the Ghost Girl", + "site_detail_url": "https://comicvine.gamespot.com/po-the-ghost-girl/4005-66880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66883/", + "id": 66883, + "name": "Hank the Pilot", + "site_detail_url": "https://comicvine.gamespot.com/hank-the-pilot/4005-66883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66884/", + "id": 66884, + "name": "Lois", + "site_detail_url": "https://comicvine.gamespot.com/lois/4005-66884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66885/", + "id": 66885, + "name": "Rebecca Banner", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-banner/4005-66885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66950/", + "id": 66950, + "name": "Sporr", + "site_detail_url": "https://comicvine.gamespot.com/sporr/4005-66950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66973/", + "id": 66973, + "name": "Gustav", + "site_detail_url": "https://comicvine.gamespot.com/gustav/4005-66973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66986/", + "id": 66986, + "name": "King Gerark", + "site_detail_url": "https://comicvine.gamespot.com/king-gerark/4005-66986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66993/", + "id": 66993, + "name": "Chucky Diamond", + "site_detail_url": "https://comicvine.gamespot.com/chucky-diamond/4005-66993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66994/", + "id": 66994, + "name": "Samuel Merrick", + "site_detail_url": "https://comicvine.gamespot.com/samuel-merrick/4005-66994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66995/", + "id": 66995, + "name": "Cat", + "site_detail_url": "https://comicvine.gamespot.com/cat/4005-66995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66996/", + "id": 66996, + "name": "Pacer", + "site_detail_url": "https://comicvine.gamespot.com/pacer/4005-66996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66997/", + "id": 66997, + "name": "Tyr", + "site_detail_url": "https://comicvine.gamespot.com/tyr/4005-66997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-66998/", + "id": 66998, + "name": "Yohei", + "site_detail_url": "https://comicvine.gamespot.com/yohei/4005-66998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67036/", + "id": 67036, + "name": "Clockwise", + "site_detail_url": "https://comicvine.gamespot.com/clockwise/4005-67036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67037/", + "id": 67037, + "name": "Kid Glove", + "site_detail_url": "https://comicvine.gamespot.com/kid-glove/4005-67037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67038/", + "id": 67038, + "name": "T'rannikus", + "site_detail_url": "https://comicvine.gamespot.com/trannikus/4005-67038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67052/", + "id": 67052, + "name": "Opsidian", + "site_detail_url": "https://comicvine.gamespot.com/opsidian/4005-67052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67086/", + "id": 67086, + "name": "Minded One", + "site_detail_url": "https://comicvine.gamespot.com/minded-one/4005-67086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67108/", + "id": 67108, + "name": "Annabella Gorrini", + "site_detail_url": "https://comicvine.gamespot.com/annabella-gorrini/4005-67108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67109/", + "id": 67109, + "name": "Barbara Barrucci", + "site_detail_url": "https://comicvine.gamespot.com/barbara-barrucci/4005-67109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67110/", + "id": 67110, + "name": "Lorraine Zucca", + "site_detail_url": "https://comicvine.gamespot.com/lorraine-zucca/4005-67110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67111/", + "id": 67111, + "name": "Bonnie De Angelo", + "site_detail_url": "https://comicvine.gamespot.com/bonnie-de-angelo/4005-67111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67112/", + "id": 67112, + "name": "Shauna Toomey", + "site_detail_url": "https://comicvine.gamespot.com/shauna-toomey/4005-67112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67118/", + "id": 67118, + "name": "Charlie Schitti", + "site_detail_url": "https://comicvine.gamespot.com/charlie-schitti/4005-67118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67135/", + "id": 67135, + "name": "Barry McCormick", + "site_detail_url": "https://comicvine.gamespot.com/barry-mccormick/4005-67135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67147/", + "id": 67147, + "name": "Brady O'Neil", + "site_detail_url": "https://comicvine.gamespot.com/brady-oneil/4005-67147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67148/", + "id": 67148, + "name": "Replicus", + "site_detail_url": "https://comicvine.gamespot.com/replicus/4005-67148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67169/", + "id": 67169, + "name": "Sykes the hacker", + "site_detail_url": "https://comicvine.gamespot.com/sykes-the-hacker/4005-67169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67175/", + "id": 67175, + "name": "Terrance Updike", + "site_detail_url": "https://comicvine.gamespot.com/terrance-updike/4005-67175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67176/", + "id": 67176, + "name": "Brick Wall", + "site_detail_url": "https://comicvine.gamespot.com/brick-wall/4005-67176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67177/", + "id": 67177, + "name": "Dasher", + "site_detail_url": "https://comicvine.gamespot.com/dasher/4005-67177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67178/", + "id": 67178, + "name": "Suicide", + "site_detail_url": "https://comicvine.gamespot.com/suicide/4005-67178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67180/", + "id": 67180, + "name": "Karl Swensen", + "site_detail_url": "https://comicvine.gamespot.com/karl-swensen/4005-67180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67193/", + "id": 67193, + "name": "Lady Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/lady-deadpool/4005-67193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67200/", + "id": 67200, + "name": "Dark Hunter", + "site_detail_url": "https://comicvine.gamespot.com/dark-hunter/4005-67200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67202/", + "id": 67202, + "name": "Edmund Roth", + "site_detail_url": "https://comicvine.gamespot.com/edmund-roth/4005-67202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67203/", + "id": 67203, + "name": "Willy Deere", + "site_detail_url": "https://comicvine.gamespot.com/willy-deere/4005-67203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67204/", + "id": 67204, + "name": "Anne Pollicino", + "site_detail_url": "https://comicvine.gamespot.com/anne-pollicino/4005-67204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67206/", + "id": 67206, + "name": "Dimitri Durovich", + "site_detail_url": "https://comicvine.gamespot.com/dimitri-durovich/4005-67206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67209/", + "id": 67209, + "name": "Mick Johnson", + "site_detail_url": "https://comicvine.gamespot.com/mick-johnson/4005-67209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67219/", + "id": 67219, + "name": "Slototh", + "site_detail_url": "https://comicvine.gamespot.com/slototh/4005-67219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67221/", + "id": 67221, + "name": "Casey Kinmont", + "site_detail_url": "https://comicvine.gamespot.com/casey-kinmont/4005-67221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67222/", + "id": 67222, + "name": "Larry The Cranky Demon", + "site_detail_url": "https://comicvine.gamespot.com/larry-the-cranky-demon/4005-67222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67242/", + "id": 67242, + "name": "Franklin Castle", + "site_detail_url": "https://comicvine.gamespot.com/franklin-castle/4005-67242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67268/", + "id": 67268, + "name": "Glowworm", + "site_detail_url": "https://comicvine.gamespot.com/glowworm/4005-67268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67274/", + "id": 67274, + "name": "Stonewall", + "site_detail_url": "https://comicvine.gamespot.com/stonewall/4005-67274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67309/", + "id": 67309, + "name": "Campbell Saint-Ange", + "site_detail_url": "https://comicvine.gamespot.com/campbell-saint-ange/4005-67309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67310/", + "id": 67310, + "name": "Aunt Carrie", + "site_detail_url": "https://comicvine.gamespot.com/aunt-carrie/4005-67310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67311/", + "id": 67311, + "name": "Priscilla Raven", + "site_detail_url": "https://comicvine.gamespot.com/priscilla-raven/4005-67311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67312/", + "id": 67312, + "name": "Owen Raven", + "site_detail_url": "https://comicvine.gamespot.com/owen-raven/4005-67312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67319/", + "id": 67319, + "name": "Lady Stilt-Man", + "site_detail_url": "https://comicvine.gamespot.com/lady-stilt-man/4005-67319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67323/", + "id": 67323, + "name": "Great Wall", + "site_detail_url": "https://comicvine.gamespot.com/great-wall/4005-67323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67325/", + "id": 67325, + "name": "Herman the German", + "site_detail_url": "https://comicvine.gamespot.com/herman-the-german/4005-67325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67349/", + "id": 67349, + "name": "Rebecca Raven Lebeau", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-raven-lebeau/4005-67349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67379/", + "id": 67379, + "name": "Skanda", + "site_detail_url": "https://comicvine.gamespot.com/skanda/4005-67379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67381/", + "id": 67381, + "name": "Tul'uth", + "site_detail_url": "https://comicvine.gamespot.com/tuluth/4005-67381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67406/", + "id": 67406, + "name": "Lothi", + "site_detail_url": "https://comicvine.gamespot.com/lothi/4005-67406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67432/", + "id": 67432, + "name": "Master Heku", + "site_detail_url": "https://comicvine.gamespot.com/master-heku/4005-67432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67438/", + "id": 67438, + "name": "Hit-Monkey", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey/4005-67438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67460/", + "id": 67460, + "name": "Mennonite", + "site_detail_url": "https://comicvine.gamespot.com/mennonite/4005-67460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67480/", + "id": 67480, + "name": "Dr. Rottwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-rottwell/4005-67480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67490/", + "id": 67490, + "name": "Running Fish", + "site_detail_url": "https://comicvine.gamespot.com/running-fish/4005-67490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67491/", + "id": 67491, + "name": "Hijiro Nguri", + "site_detail_url": "https://comicvine.gamespot.com/hijiro-nguri/4005-67491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67506/", + "id": 67506, + "name": "Cougar", + "site_detail_url": "https://comicvine.gamespot.com/cougar/4005-67506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67508/", + "id": 67508, + "name": "Living Totem", + "site_detail_url": "https://comicvine.gamespot.com/living-totem/4005-67508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67520/", + "id": 67520, + "name": "Galactic Defender", + "site_detail_url": "https://comicvine.gamespot.com/galactic-defender/4005-67520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67549/", + "id": 67549, + "name": "Herateq", + "site_detail_url": "https://comicvine.gamespot.com/herateq/4005-67549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67550/", + "id": 67550, + "name": "Tiamaq", + "site_detail_url": "https://comicvine.gamespot.com/tiamaq/4005-67550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67562/", + "id": 67562, + "name": "Sir Percy of Scandia", + "site_detail_url": "https://comicvine.gamespot.com/sir-percy-of-scandia/4005-67562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67665/", + "id": 67665, + "name": "Professor Prometheus", + "site_detail_url": "https://comicvine.gamespot.com/professor-prometheus/4005-67665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67680/", + "id": 67680, + "name": "Jerry Ward", + "site_detail_url": "https://comicvine.gamespot.com/jerry-ward/4005-67680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67698/", + "id": 67698, + "name": "Julie Hastings", + "site_detail_url": "https://comicvine.gamespot.com/julie-hastings/4005-67698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67710/", + "id": 67710, + "name": "MjNari", + "site_detail_url": "https://comicvine.gamespot.com/mjnari/4005-67710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67719/", + "id": 67719, + "name": "Billy Buckskin", + "site_detail_url": "https://comicvine.gamespot.com/billy-buckskin/4005-67719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67720/", + "id": 67720, + "name": "Dan Hawk", + "site_detail_url": "https://comicvine.gamespot.com/dan-hawk/4005-67720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67721/", + "id": 67721, + "name": "Purple Phantom", + "site_detail_url": "https://comicvine.gamespot.com/purple-phantom/4005-67721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67731/", + "id": 67731, + "name": "N'Gassi", + "site_detail_url": "https://comicvine.gamespot.com/ngassi/4005-67731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67756/", + "id": 67756, + "name": "Mercy Winters", + "site_detail_url": "https://comicvine.gamespot.com/mercy-winters/4005-67756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67792/", + "id": 67792, + "name": "Torunn", + "site_detail_url": "https://comicvine.gamespot.com/torunn/4005-67792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67798/", + "id": 67798, + "name": "Arlinna", + "site_detail_url": "https://comicvine.gamespot.com/arlinna/4005-67798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67799/", + "id": 67799, + "name": "Tara of Hanumar", + "site_detail_url": "https://comicvine.gamespot.com/tara-of-hanumar/4005-67799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67802/", + "id": 67802, + "name": "Ptor-Nubis", + "site_detail_url": "https://comicvine.gamespot.com/ptor-nubis/4005-67802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67803/", + "id": 67803, + "name": "Thalis", + "site_detail_url": "https://comicvine.gamespot.com/thalis/4005-67803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67804/", + "id": 67804, + "name": "Thog", + "site_detail_url": "https://comicvine.gamespot.com/thog/4005-67804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67805/", + "id": 67805, + "name": "Matt Slade Jr.", + "site_detail_url": "https://comicvine.gamespot.com/matt-slade-jr/4005-67805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67806/", + "id": 67806, + "name": "Matt Slade III", + "site_detail_url": "https://comicvine.gamespot.com/matt-slade-iii/4005-67806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67826/", + "id": 67826, + "name": "Fahd Alireza", + "site_detail_url": "https://comicvine.gamespot.com/fahd-alireza/4005-67826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67865/", + "id": 67865, + "name": "Lupos Davalte", + "site_detail_url": "https://comicvine.gamespot.com/lupos-davalte/4005-67865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67866/", + "id": 67866, + "name": "Ravager of Worlds", + "site_detail_url": "https://comicvine.gamespot.com/ravager-of-worlds/4005-67866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67887/", + "id": 67887, + "name": "White Tiger (Earth X)", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-earth-x/4005-67887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67888/", + "id": 67888, + "name": "Issa Koblev", + "site_detail_url": "https://comicvine.gamespot.com/issa-koblev/4005-67888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67902/", + "id": 67902, + "name": "Natala", + "site_detail_url": "https://comicvine.gamespot.com/natala/4005-67902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67954/", + "id": 67954, + "name": "Aelfric the Mad Monk", + "site_detail_url": "https://comicvine.gamespot.com/aelfric-the-mad-monk/4005-67954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67955/", + "id": 67955, + "name": "Chia", + "site_detail_url": "https://comicvine.gamespot.com/chia/4005-67955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67956/", + "id": 67956, + "name": "Nemesis", + "site_detail_url": "https://comicvine.gamespot.com/nemesis/4005-67956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-67995/", + "id": 67995, + "name": "Amazon", + "site_detail_url": "https://comicvine.gamespot.com/amazon/4005-67995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68003/", + "id": 68003, + "name": "Gahck", + "site_detail_url": "https://comicvine.gamespot.com/gahck/4005-68003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68004/", + "id": 68004, + "name": "Torg", + "site_detail_url": "https://comicvine.gamespot.com/torg/4005-68004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68005/", + "id": 68005, + "name": "Frederick Dirkreich", + "site_detail_url": "https://comicvine.gamespot.com/frederick-dirkreich/4005-68005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68006/", + "id": 68006, + "name": "Gregson Grant", + "site_detail_url": "https://comicvine.gamespot.com/gregson-grant/4005-68006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68013/", + "id": 68013, + "name": "Little Lizzie", + "site_detail_url": "https://comicvine.gamespot.com/little-lizzie/4005-68013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68014/", + "id": 68014, + "name": "Hedy De Vine", + "site_detail_url": "https://comicvine.gamespot.com/hedy-de-vine/4005-68014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68016/", + "id": 68016, + "name": "Sh'ri", + "site_detail_url": "https://comicvine.gamespot.com/shri/4005-68016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68029/", + "id": 68029, + "name": "Brad & Roger", + "site_detail_url": "https://comicvine.gamespot.com/brad-roger/4005-68029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68045/", + "id": 68045, + "name": "Astriel", + "site_detail_url": "https://comicvine.gamespot.com/astriel/4005-68045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68046/", + "id": 68046, + "name": "Aneka", + "site_detail_url": "https://comicvine.gamespot.com/aneka/4005-68046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68076/", + "id": 68076, + "name": "Essential", + "site_detail_url": "https://comicvine.gamespot.com/essential/4005-68076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68089/", + "id": 68089, + "name": "Worm", + "site_detail_url": "https://comicvine.gamespot.com/worm/4005-68089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68095/", + "id": 68095, + "name": "Electro", + "site_detail_url": "https://comicvine.gamespot.com/electro/4005-68095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68096/", + "id": 68096, + "name": "Skull-Face", + "site_detail_url": "https://comicvine.gamespot.com/skull-face/4005-68096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68099/", + "id": 68099, + "name": "Vere", + "site_detail_url": "https://comicvine.gamespot.com/vere/4005-68099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68100/", + "id": 68100, + "name": "Raankor", + "site_detail_url": "https://comicvine.gamespot.com/raankor/4005-68100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68107/", + "id": 68107, + "name": "Nolo Contendre", + "site_detail_url": "https://comicvine.gamespot.com/nolo-contendre/4005-68107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68116/", + "id": 68116, + "name": "Ajax", + "site_detail_url": "https://comicvine.gamespot.com/ajax/4005-68116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68129/", + "id": 68129, + "name": "Lt. Lou Hackett", + "site_detail_url": "https://comicvine.gamespot.com/lt-lou-hackett/4005-68129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68172/", + "id": 68172, + "name": "The Mayor", + "site_detail_url": "https://comicvine.gamespot.com/the-mayor/4005-68172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68173/", + "id": 68173, + "name": "Sekhmet Tharn", + "site_detail_url": "https://comicvine.gamespot.com/sekhmet-tharn/4005-68173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68177/", + "id": 68177, + "name": "Bentley 23", + "site_detail_url": "https://comicvine.gamespot.com/bentley-23/4005-68177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68183/", + "id": 68183, + "name": "Korda", + "site_detail_url": "https://comicvine.gamespot.com/korda/4005-68183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68184/", + "id": 68184, + "name": "Jarhead", + "site_detail_url": "https://comicvine.gamespot.com/jarhead/4005-68184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68193/", + "id": 68193, + "name": "Claude Rubio", + "site_detail_url": "https://comicvine.gamespot.com/claude-rubio/4005-68193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68194/", + "id": 68194, + "name": "Libby Schilling", + "site_detail_url": "https://comicvine.gamespot.com/libby-schilling/4005-68194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68195/", + "id": 68195, + "name": "Marge", + "site_detail_url": "https://comicvine.gamespot.com/marge/4005-68195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68196/", + "id": 68196, + "name": "Miss Corbo", + "site_detail_url": "https://comicvine.gamespot.com/miss-corbo/4005-68196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68197/", + "id": 68197, + "name": "Rene the Director", + "site_detail_url": "https://comicvine.gamespot.com/rene-the-director/4005-68197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68198/", + "id": 68198, + "name": "Mr. Smythe", + "site_detail_url": "https://comicvine.gamespot.com/mr-smythe/4005-68198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68199/", + "id": 68199, + "name": "Mr. Witwicky", + "site_detail_url": "https://comicvine.gamespot.com/mr-witwicky/4005-68199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68200/", + "id": 68200, + "name": "Ziggy the Butler", + "site_detail_url": "https://comicvine.gamespot.com/ziggy-the-butler/4005-68200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68204/", + "id": 68204, + "name": "Khor-nah", + "site_detail_url": "https://comicvine.gamespot.com/khor-nah/4005-68204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68205/", + "id": 68205, + "name": "Sareeta", + "site_detail_url": "https://comicvine.gamespot.com/sareeta/4005-68205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68207/", + "id": 68207, + "name": "Nakura", + "site_detail_url": "https://comicvine.gamespot.com/nakura/4005-68207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68221/", + "id": 68221, + "name": "Olivia Hooks", + "site_detail_url": "https://comicvine.gamespot.com/olivia-hooks/4005-68221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68237/", + "id": 68237, + "name": "Cartier St.Croix", + "site_detail_url": "https://comicvine.gamespot.com/cartier-stcroix/4005-68237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68262/", + "id": 68262, + "name": "Hangman (Krueger)", + "site_detail_url": "https://comicvine.gamespot.com/hangman-krueger/4005-68262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68321/", + "id": 68321, + "name": "Nightfire", + "site_detail_url": "https://comicvine.gamespot.com/nightfire/4005-68321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68373/", + "id": 68373, + "name": "Slaine", + "site_detail_url": "https://comicvine.gamespot.com/slaine/4005-68373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68394/", + "id": 68394, + "name": "Dawn", + "site_detail_url": "https://comicvine.gamespot.com/dawn/4005-68394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68395/", + "id": 68395, + "name": "Dusk", + "site_detail_url": "https://comicvine.gamespot.com/dusk/4005-68395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68404/", + "id": 68404, + "name": "Lt. Victor Northrup", + "site_detail_url": "https://comicvine.gamespot.com/lt-victor-northrup/4005-68404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68451/", + "id": 68451, + "name": "Wartstaff", + "site_detail_url": "https://comicvine.gamespot.com/wartstaff/4005-68451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68470/", + "id": 68470, + "name": "Todd Keller", + "site_detail_url": "https://comicvine.gamespot.com/todd-keller/4005-68470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68471/", + "id": 68471, + "name": "Agent Abrams", + "site_detail_url": "https://comicvine.gamespot.com/agent-abrams/4005-68471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68472/", + "id": 68472, + "name": "Will Stern", + "site_detail_url": "https://comicvine.gamespot.com/will-stern/4005-68472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68473/", + "id": 68473, + "name": "Syjorgun", + "site_detail_url": "https://comicvine.gamespot.com/syjorgun/4005-68473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68474/", + "id": 68474, + "name": "Mikhlo", + "site_detail_url": "https://comicvine.gamespot.com/mikhlo/4005-68474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68475/", + "id": 68475, + "name": "Peotor", + "site_detail_url": "https://comicvine.gamespot.com/peotor/4005-68475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68476/", + "id": 68476, + "name": "Igor", + "site_detail_url": "https://comicvine.gamespot.com/igor/4005-68476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68566/", + "id": 68566, + "name": "Tatsuo", + "site_detail_url": "https://comicvine.gamespot.com/tatsuo/4005-68566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68610/", + "id": 68610, + "name": "Jenna Carlisle", + "site_detail_url": "https://comicvine.gamespot.com/jenna-carlisle/4005-68610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68639/", + "id": 68639, + "name": "Midnight Man", + "site_detail_url": "https://comicvine.gamespot.com/midnight-man/4005-68639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68665/", + "id": 68665, + "name": "Hubert St. Johns", + "site_detail_url": "https://comicvine.gamespot.com/hubert-st-johns/4005-68665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68691/", + "id": 68691, + "name": "Heinz Kruger", + "site_detail_url": "https://comicvine.gamespot.com/heinz-kruger/4005-68691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68692/", + "id": 68692, + "name": "Baldini", + "site_detail_url": "https://comicvine.gamespot.com/baldini/4005-68692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68693/", + "id": 68693, + "name": "Gruning", + "site_detail_url": "https://comicvine.gamespot.com/gruning/4005-68693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68694/", + "id": 68694, + "name": "General Ching", + "site_detail_url": "https://comicvine.gamespot.com/general-ching/4005-68694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68699/", + "id": 68699, + "name": "Nemesis", + "site_detail_url": "https://comicvine.gamespot.com/nemesis/4005-68699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68724/", + "id": 68724, + "name": "Virginia Hunter", + "site_detail_url": "https://comicvine.gamespot.com/virginia-hunter/4005-68724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68731/", + "id": 68731, + "name": "Le Bete Noir", + "site_detail_url": "https://comicvine.gamespot.com/le-bete-noir/4005-68731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68732/", + "id": 68732, + "name": "Deadpool Kid", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kid/4005-68732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68733/", + "id": 68733, + "name": "Major Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/major-deadpool/4005-68733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68737/", + "id": 68737, + "name": "John Farson", + "site_detail_url": "https://comicvine.gamespot.com/john-farson/4005-68737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68832/", + "id": 68832, + "name": "Doctor Tramma", + "site_detail_url": "https://comicvine.gamespot.com/doctor-tramma/4005-68832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68835/", + "id": 68835, + "name": "Paraman", + "site_detail_url": "https://comicvine.gamespot.com/paraman/4005-68835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68836/", + "id": 68836, + "name": "Bosswell", + "site_detail_url": "https://comicvine.gamespot.com/bosswell/4005-68836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68892/", + "id": 68892, + "name": "Clown", + "site_detail_url": "https://comicvine.gamespot.com/clown/4005-68892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68911/", + "id": 68911, + "name": "Aram-Set", + "site_detail_url": "https://comicvine.gamespot.com/aram-set/4005-68911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68913/", + "id": 68913, + "name": "Lillian Templeworth", + "site_detail_url": "https://comicvine.gamespot.com/lillian-templeworth/4005-68913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68914/", + "id": 68914, + "name": "Honcho", + "site_detail_url": "https://comicvine.gamespot.com/honcho/4005-68914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68915/", + "id": 68915, + "name": "Gripes", + "site_detail_url": "https://comicvine.gamespot.com/gripes/4005-68915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68916/", + "id": 68916, + "name": "Sugar Face", + "site_detail_url": "https://comicvine.gamespot.com/sugar-face/4005-68916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68917/", + "id": 68917, + "name": "Pigeon", + "site_detail_url": "https://comicvine.gamespot.com/pigeon/4005-68917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68919/", + "id": 68919, + "name": "Cosmic Hulk", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-hulk/4005-68919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68926/", + "id": 68926, + "name": "Papa Dluga", + "site_detail_url": "https://comicvine.gamespot.com/papa-dluga/4005-68926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68928/", + "id": 68928, + "name": "Hellfire", + "site_detail_url": "https://comicvine.gamespot.com/hellfire/4005-68928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68929/", + "id": 68929, + "name": "Hydron", + "site_detail_url": "https://comicvine.gamespot.com/hydron/4005-68929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68930/", + "id": 68930, + "name": "Dann the warrior", + "site_detail_url": "https://comicvine.gamespot.com/dann-the-warrior/4005-68930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68931/", + "id": 68931, + "name": "Garret the sorcerer", + "site_detail_url": "https://comicvine.gamespot.com/garret-the-sorcerer/4005-68931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-68932/", + "id": 68932, + "name": "Odd john", + "site_detail_url": "https://comicvine.gamespot.com/odd-john/4005-68932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69002/", + "id": 69002, + "name": "The Baby God", + "site_detail_url": "https://comicvine.gamespot.com/the-baby-god/4005-69002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69038/", + "id": 69038, + "name": "Sweet William", + "site_detail_url": "https://comicvine.gamespot.com/sweet-william/4005-69038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69039/", + "id": 69039, + "name": "Pinstripe", + "site_detail_url": "https://comicvine.gamespot.com/pinstripe/4005-69039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69040/", + "id": 69040, + "name": "Pecos", + "site_detail_url": "https://comicvine.gamespot.com/pecos/4005-69040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69041/", + "id": 69041, + "name": "Onionhead", + "site_detail_url": "https://comicvine.gamespot.com/onionhead/4005-69041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69042/", + "id": 69042, + "name": "Captain Skragg", + "site_detail_url": "https://comicvine.gamespot.com/captain-skragg/4005-69042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69043/", + "id": 69043, + "name": "Kronus", + "site_detail_url": "https://comicvine.gamespot.com/kronus/4005-69043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69046/", + "id": 69046, + "name": "Cobra", + "site_detail_url": "https://comicvine.gamespot.com/cobra/4005-69046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69059/", + "id": 69059, + "name": "Jimmy Hudson", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-hudson/4005-69059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69060/", + "id": 69060, + "name": "Planetfall", + "site_detail_url": "https://comicvine.gamespot.com/planetfall/4005-69060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69067/", + "id": 69067, + "name": "Jeter Warlord", + "site_detail_url": "https://comicvine.gamespot.com/jeter-warlord/4005-69067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69071/", + "id": 69071, + "name": "Doctor Neon", + "site_detail_url": "https://comicvine.gamespot.com/doctor-neon/4005-69071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69098/", + "id": 69098, + "name": "Rufus Carter", + "site_detail_url": "https://comicvine.gamespot.com/rufus-carter/4005-69098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69101/", + "id": 69101, + "name": "Lena Ivana", + "site_detail_url": "https://comicvine.gamespot.com/lena-ivana/4005-69101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69107/", + "id": 69107, + "name": "Gyre", + "site_detail_url": "https://comicvine.gamespot.com/gyre/4005-69107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69112/", + "id": 69112, + "name": "Little Mary", + "site_detail_url": "https://comicvine.gamespot.com/little-mary/4005-69112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69113/", + "id": 69113, + "name": "Zach", + "site_detail_url": "https://comicvine.gamespot.com/zach/4005-69113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69171/", + "id": 69171, + "name": "Francis Ketch", + "site_detail_url": "https://comicvine.gamespot.com/francis-ketch/4005-69171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69174/", + "id": 69174, + "name": "Remy McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/remy-mckenzie/4005-69174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69175/", + "id": 69175, + "name": "Vyking", + "site_detail_url": "https://comicvine.gamespot.com/vyking/4005-69175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69176/", + "id": 69176, + "name": "Blackthorne", + "site_detail_url": "https://comicvine.gamespot.com/blackthorne/4005-69176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69184/", + "id": 69184, + "name": "Missing Link", + "site_detail_url": "https://comicvine.gamespot.com/missing-link/4005-69184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69190/", + "id": 69190, + "name": "Dr. Charles Warren Fong", + "site_detail_url": "https://comicvine.gamespot.com/dr-charles-warren-fong/4005-69190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69235/", + "id": 69235, + "name": "Rhino", + "site_detail_url": "https://comicvine.gamespot.com/rhino/4005-69235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69250/", + "id": 69250, + "name": "Professor Philo Zog", + "site_detail_url": "https://comicvine.gamespot.com/professor-philo-zog/4005-69250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69341/", + "id": 69341, + "name": "Nerd Hulk", + "site_detail_url": "https://comicvine.gamespot.com/nerd-hulk/4005-69341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69378/", + "id": 69378, + "name": "Doctor Dredd", + "site_detail_url": "https://comicvine.gamespot.com/doctor-dredd/4005-69378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69382/", + "id": 69382, + "name": "Jimmy Yama", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-yama/4005-69382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69385/", + "id": 69385, + "name": "Mrs. Gwynn", + "site_detail_url": "https://comicvine.gamespot.com/mrs-gwynn/4005-69385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69396/", + "id": 69396, + "name": "Adjudicator", + "site_detail_url": "https://comicvine.gamespot.com/adjudicator/4005-69396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69402/", + "id": 69402, + "name": "Doctor John Bonsaint", + "site_detail_url": "https://comicvine.gamespot.com/doctor-john-bonsaint/4005-69402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69409/", + "id": 69409, + "name": "Adam Kane", + "site_detail_url": "https://comicvine.gamespot.com/adam-kane/4005-69409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69410/", + "id": 69410, + "name": "Shalimar Fox", + "site_detail_url": "https://comicvine.gamespot.com/shalimar-fox/4005-69410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69411/", + "id": 69411, + "name": "Jesse Kilmartin", + "site_detail_url": "https://comicvine.gamespot.com/jesse-kilmartin/4005-69411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69412/", + "id": 69412, + "name": "Brennan Mulwray", + "site_detail_url": "https://comicvine.gamespot.com/brennan-mulwray/4005-69412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69413/", + "id": 69413, + "name": "Emma DeLauro", + "site_detail_url": "https://comicvine.gamespot.com/emma-delauro/4005-69413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69420/", + "id": 69420, + "name": "Mary Beck", + "site_detail_url": "https://comicvine.gamespot.com/mary-beck/4005-69420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69421/", + "id": 69421, + "name": "Mr. Beck", + "site_detail_url": "https://comicvine.gamespot.com/mr-beck/4005-69421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69422/", + "id": 69422, + "name": "Flensse", + "site_detail_url": "https://comicvine.gamespot.com/flensse/4005-69422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69424/", + "id": 69424, + "name": "Robert Hellsgaard", + "site_detail_url": "https://comicvine.gamespot.com/robert-hellsgaard/4005-69424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69429/", + "id": 69429, + "name": "General Meltdown", + "site_detail_url": "https://comicvine.gamespot.com/general-meltdown/4005-69429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69430/", + "id": 69430, + "name": "Doctor Neutron", + "site_detail_url": "https://comicvine.gamespot.com/doctor-neutron/4005-69430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69431/", + "id": 69431, + "name": "Number Two", + "site_detail_url": "https://comicvine.gamespot.com/number-two/4005-69431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69432/", + "id": 69432, + "name": "Doombringer", + "site_detail_url": "https://comicvine.gamespot.com/doombringer/4005-69432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69433/", + "id": 69433, + "name": "Charlemagne", + "site_detail_url": "https://comicvine.gamespot.com/charlemagne/4005-69433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69443/", + "id": 69443, + "name": "The Occultist", + "site_detail_url": "https://comicvine.gamespot.com/the-occultist/4005-69443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69446/", + "id": 69446, + "name": "Brushfire", + "site_detail_url": "https://comicvine.gamespot.com/brushfire/4005-69446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69504/", + "id": 69504, + "name": "Mrs. Tickle", + "site_detail_url": "https://comicvine.gamespot.com/mrs-tickle/4005-69504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69535/", + "id": 69535, + "name": "Kwai Far", + "site_detail_url": "https://comicvine.gamespot.com/kwai-far/4005-69535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69543/", + "id": 69543, + "name": "Kimberly Alleyne", + "site_detail_url": "https://comicvine.gamespot.com/kimberly-alleyne/4005-69543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69545/", + "id": 69545, + "name": "Nicholas Trask", + "site_detail_url": "https://comicvine.gamespot.com/nicholas-trask/4005-69545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69546/", + "id": 69546, + "name": "Doc", + "site_detail_url": "https://comicvine.gamespot.com/doc/4005-69546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69547/", + "id": 69547, + "name": "Shade", + "site_detail_url": "https://comicvine.gamespot.com/shade/4005-69547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69548/", + "id": 69548, + "name": "Microwave", + "site_detail_url": "https://comicvine.gamespot.com/microwave/4005-69548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69549/", + "id": 69549, + "name": "Buck Bukowski", + "site_detail_url": "https://comicvine.gamespot.com/buck-bukowski/4005-69549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69550/", + "id": 69550, + "name": "Ralphie Hutchins", + "site_detail_url": "https://comicvine.gamespot.com/ralphie-hutchins/4005-69550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69551/", + "id": 69551, + "name": "Beverly Cross", + "site_detail_url": "https://comicvine.gamespot.com/beverly-cross/4005-69551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69552/", + "id": 69552, + "name": "Jill Stevens", + "site_detail_url": "https://comicvine.gamespot.com/jill-stevens/4005-69552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69563/", + "id": 69563, + "name": "Malaika", + "site_detail_url": "https://comicvine.gamespot.com/malaika/4005-69563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69567/", + "id": 69567, + "name": "Pilli Natu", + "site_detail_url": "https://comicvine.gamespot.com/pilli-natu/4005-69567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69572/", + "id": 69572, + "name": "Tabitha Gance", + "site_detail_url": "https://comicvine.gamespot.com/tabitha-gance/4005-69572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69587/", + "id": 69587, + "name": "Summers-Frost Twins", + "site_detail_url": "https://comicvine.gamespot.com/summers-frost-twins/4005-69587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69591/", + "id": 69591, + "name": "Mammon", + "site_detail_url": "https://comicvine.gamespot.com/mammon/4005-69591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69594/", + "id": 69594, + "name": "Alex Summers", + "site_detail_url": "https://comicvine.gamespot.com/alex-summers/4005-69594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69595/", + "id": 69595, + "name": "Dogpool", + "site_detail_url": "https://comicvine.gamespot.com/dogpool/4005-69595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69596/", + "id": 69596, + "name": "Kidpool", + "site_detail_url": "https://comicvine.gamespot.com/kidpool/4005-69596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69608/", + "id": 69608, + "name": "Bill Nelson", + "site_detail_url": "https://comicvine.gamespot.com/bill-nelson/4005-69608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69622/", + "id": 69622, + "name": "Ted Simmons", + "site_detail_url": "https://comicvine.gamespot.com/ted-simmons/4005-69622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69631/", + "id": 69631, + "name": "Number Ninety-Six", + "site_detail_url": "https://comicvine.gamespot.com/number-ninety-six/4005-69631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69654/", + "id": 69654, + "name": "Digger", + "site_detail_url": "https://comicvine.gamespot.com/digger/4005-69654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69686/", + "id": 69686, + "name": "Cut", + "site_detail_url": "https://comicvine.gamespot.com/cut/4005-69686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69687/", + "id": 69687, + "name": "Diesel", + "site_detail_url": "https://comicvine.gamespot.com/diesel/4005-69687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69688/", + "id": 69688, + "name": "Drang", + "site_detail_url": "https://comicvine.gamespot.com/drang/4005-69688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69689/", + "id": 69689, + "name": "Lisa", + "site_detail_url": "https://comicvine.gamespot.com/lisa/4005-69689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69690/", + "id": 69690, + "name": "Carrie", + "site_detail_url": "https://comicvine.gamespot.com/carrie/4005-69690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69698/", + "id": 69698, + "name": "Carl", + "site_detail_url": "https://comicvine.gamespot.com/carl/4005-69698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69699/", + "id": 69699, + "name": "Ul-Uhar", + "site_detail_url": "https://comicvine.gamespot.com/ul-uhar/4005-69699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69701/", + "id": 69701, + "name": "Red Wasp", + "site_detail_url": "https://comicvine.gamespot.com/red-wasp/4005-69701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69702/", + "id": 69702, + "name": "Monica Chang", + "site_detail_url": "https://comicvine.gamespot.com/monica-chang/4005-69702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69703/", + "id": 69703, + "name": "Gregory Stark", + "site_detail_url": "https://comicvine.gamespot.com/gregory-stark/4005-69703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69704/", + "id": 69704, + "name": "William Rawlins", + "site_detail_url": "https://comicvine.gamespot.com/william-rawlins/4005-69704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69739/", + "id": 69739, + "name": "Matilda Brant", + "site_detail_url": "https://comicvine.gamespot.com/matilda-brant/4005-69739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69749/", + "id": 69749, + "name": "Ms. Cruikshank", + "site_detail_url": "https://comicvine.gamespot.com/ms-cruikshank/4005-69749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69751/", + "id": 69751, + "name": "Bryce", + "site_detail_url": "https://comicvine.gamespot.com/bryce/4005-69751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69782/", + "id": 69782, + "name": "Elijah Jackson", + "site_detail_url": "https://comicvine.gamespot.com/elijah-jackson/4005-69782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69784/", + "id": 69784, + "name": "Tina Punnett", + "site_detail_url": "https://comicvine.gamespot.com/tina-punnett/4005-69784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69792/", + "id": 69792, + "name": "Dante Ortega", + "site_detail_url": "https://comicvine.gamespot.com/dante-ortega/4005-69792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69795/", + "id": 69795, + "name": "Big Julie", + "site_detail_url": "https://comicvine.gamespot.com/big-julie/4005-69795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69800/", + "id": 69800, + "name": "Yu Komori", + "site_detail_url": "https://comicvine.gamespot.com/yu-komori/4005-69800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69819/", + "id": 69819, + "name": "Joey Eliot", + "site_detail_url": "https://comicvine.gamespot.com/joey-eliot/4005-69819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69820/", + "id": 69820, + "name": "Father Vincent Adobe", + "site_detail_url": "https://comicvine.gamespot.com/father-vincent-adobe/4005-69820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69821/", + "id": 69821, + "name": "Roxanna", + "site_detail_url": "https://comicvine.gamespot.com/roxanna/4005-69821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69827/", + "id": 69827, + "name": "Samuel Holden", + "site_detail_url": "https://comicvine.gamespot.com/samuel-holden/4005-69827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69829/", + "id": 69829, + "name": "Gabriel", + "site_detail_url": "https://comicvine.gamespot.com/gabriel/4005-69829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69830/", + "id": 69830, + "name": "Deadalus", + "site_detail_url": "https://comicvine.gamespot.com/deadalus/4005-69830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69834/", + "id": 69834, + "name": "Thea", + "site_detail_url": "https://comicvine.gamespot.com/thea/4005-69834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69835/", + "id": 69835, + "name": "Mini", + "site_detail_url": "https://comicvine.gamespot.com/mini/4005-69835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69840/", + "id": 69840, + "name": "Daisy Dugan", + "site_detail_url": "https://comicvine.gamespot.com/daisy-dugan/4005-69840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69850/", + "id": 69850, + "name": "Lefty Donovan", + "site_detail_url": "https://comicvine.gamespot.com/lefty-donovan/4005-69850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69860/", + "id": 69860, + "name": "Puff", + "site_detail_url": "https://comicvine.gamespot.com/puff/4005-69860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69888/", + "id": 69888, + "name": "Red Vulture", + "site_detail_url": "https://comicvine.gamespot.com/red-vulture/4005-69888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69889/", + "id": 69889, + "name": "Dave Chatterton", + "site_detail_url": "https://comicvine.gamespot.com/dave-chatterton/4005-69889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69912/", + "id": 69912, + "name": "Finesse", + "site_detail_url": "https://comicvine.gamespot.com/finesse/4005-69912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69913/", + "id": 69913, + "name": "Mettle", + "site_detail_url": "https://comicvine.gamespot.com/mettle/4005-69913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69914/", + "id": 69914, + "name": "Hazmat", + "site_detail_url": "https://comicvine.gamespot.com/hazmat/4005-69914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69915/", + "id": 69915, + "name": "Striker", + "site_detail_url": "https://comicvine.gamespot.com/striker/4005-69915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69916/", + "id": 69916, + "name": "Veil", + "site_detail_url": "https://comicvine.gamespot.com/veil/4005-69916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69917/", + "id": 69917, + "name": "Sheriff Bobby Fillmore", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-bobby-fillmore/4005-69917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69926/", + "id": 69926, + "name": "Bren Derlin", + "site_detail_url": "https://comicvine.gamespot.com/bren-derlin/4005-69926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69933/", + "id": 69933, + "name": "Wild Card", + "site_detail_url": "https://comicvine.gamespot.com/wild-card/4005-69933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69974/", + "id": 69974, + "name": "George Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/george-tanaka/4005-69974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69975/", + "id": 69975, + "name": "Rita Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/rita-tanaka/4005-69975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69976/", + "id": 69976, + "name": "Shizuko", + "site_detail_url": "https://comicvine.gamespot.com/shizuko/4005-69976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69984/", + "id": 69984, + "name": "Valerie Jessup", + "site_detail_url": "https://comicvine.gamespot.com/valerie-jessup/4005-69984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-69986/", + "id": 69986, + "name": "Azzari the Wise", + "site_detail_url": "https://comicvine.gamespot.com/azzari-the-wise/4005-69986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70003/", + "id": 70003, + "name": "Lady Fynn-Geres", + "site_detail_url": "https://comicvine.gamespot.com/lady-fynn-geres/4005-70003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70006/", + "id": 70006, + "name": "Annie", + "site_detail_url": "https://comicvine.gamespot.com/annie/4005-70006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70017/", + "id": 70017, + "name": "Priya Tilby", + "site_detail_url": "https://comicvine.gamespot.com/priya-tilby/4005-70017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70018/", + "id": 70018, + "name": "Connie Fredickson", + "site_detail_url": "https://comicvine.gamespot.com/connie-fredickson/4005-70018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70019/", + "id": 70019, + "name": "Rene DeSantos", + "site_detail_url": "https://comicvine.gamespot.com/rene-desantos/4005-70019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70020/", + "id": 70020, + "name": "Over-Knight", + "site_detail_url": "https://comicvine.gamespot.com/over-knight/4005-70020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70021/", + "id": 70021, + "name": "Dark Tower", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower/4005-70021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70025/", + "id": 70025, + "name": "Amy Bryant", + "site_detail_url": "https://comicvine.gamespot.com/amy-bryant/4005-70025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70026/", + "id": 70026, + "name": "Slag", + "site_detail_url": "https://comicvine.gamespot.com/slag/4005-70026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70027/", + "id": 70027, + "name": "Wendell Bryant", + "site_detail_url": "https://comicvine.gamespot.com/wendell-bryant/4005-70027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70030/", + "id": 70030, + "name": "Warren Worthington IV", + "site_detail_url": "https://comicvine.gamespot.com/warren-worthington-iv/4005-70030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70033/", + "id": 70033, + "name": "Lady Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/lady-gorgon/4005-70033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70074/", + "id": 70074, + "name": "The Sack", + "site_detail_url": "https://comicvine.gamespot.com/the-sack/4005-70074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70075/", + "id": 70075, + "name": "Invisible Man", + "site_detail_url": "https://comicvine.gamespot.com/invisible-man/4005-70075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70076/", + "id": 70076, + "name": "Dirty Wolff", + "site_detail_url": "https://comicvine.gamespot.com/dirty-wolff/4005-70076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70091/", + "id": 70091, + "name": "Inhuman Torch", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-torch/4005-70091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70117/", + "id": 70117, + "name": "Duncan Vess", + "site_detail_url": "https://comicvine.gamespot.com/duncan-vess/4005-70117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70124/", + "id": 70124, + "name": "Oyakata", + "site_detail_url": "https://comicvine.gamespot.com/oyakata/4005-70124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70128/", + "id": 70128, + "name": "Anarchy", + "site_detail_url": "https://comicvine.gamespot.com/anarchy/4005-70128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70141/", + "id": 70141, + "name": "Daruxus Dax", + "site_detail_url": "https://comicvine.gamespot.com/daruxus-dax/4005-70141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70149/", + "id": 70149, + "name": "Trickshot", + "site_detail_url": "https://comicvine.gamespot.com/trickshot/4005-70149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70183/", + "id": 70183, + "name": "Ms. Fischer", + "site_detail_url": "https://comicvine.gamespot.com/ms-fischer/4005-70183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70184/", + "id": 70184, + "name": "Derrick Richardson", + "site_detail_url": "https://comicvine.gamespot.com/derrick-richardson/4005-70184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70192/", + "id": 70192, + "name": "Roland Taylor", + "site_detail_url": "https://comicvine.gamespot.com/roland-taylor/4005-70192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70202/", + "id": 70202, + "name": "Magadan", + "site_detail_url": "https://comicvine.gamespot.com/magadan/4005-70202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70203/", + "id": 70203, + "name": "Orion", + "site_detail_url": "https://comicvine.gamespot.com/orion/4005-70203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70207/", + "id": 70207, + "name": "Delayne Masters", + "site_detail_url": "https://comicvine.gamespot.com/delayne-masters/4005-70207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70231/", + "id": 70231, + "name": "Arkady Markov", + "site_detail_url": "https://comicvine.gamespot.com/arkady-markov/4005-70231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70232/", + "id": 70232, + "name": "Cameron McGill", + "site_detail_url": "https://comicvine.gamespot.com/cameron-mcgill/4005-70232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70233/", + "id": 70233, + "name": "Maximilian Ritter", + "site_detail_url": "https://comicvine.gamespot.com/maximilian-ritter/4005-70233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70234/", + "id": 70234, + "name": "Blacksmith", + "site_detail_url": "https://comicvine.gamespot.com/blacksmith/4005-70234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70235/", + "id": 70235, + "name": "Travis Nevins", + "site_detail_url": "https://comicvine.gamespot.com/travis-nevins/4005-70235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70237/", + "id": 70237, + "name": "Dal Damoc", + "site_detail_url": "https://comicvine.gamespot.com/dal-damoc/4005-70237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70240/", + "id": 70240, + "name": "Aladi Ko Eke", + "site_detail_url": "https://comicvine.gamespot.com/aladi-ko-eke/4005-70240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70241/", + "id": 70241, + "name": "Avoe", + "site_detail_url": "https://comicvine.gamespot.com/avoe/4005-70241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70242/", + "id": 70242, + "name": "Onomi Whitemane", + "site_detail_url": "https://comicvine.gamespot.com/onomi-whitemane/4005-70242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70243/", + "id": 70243, + "name": "Oola Udonta", + "site_detail_url": "https://comicvine.gamespot.com/oola-udonta/4005-70243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70257/", + "id": 70257, + "name": "Miranda Bayer", + "site_detail_url": "https://comicvine.gamespot.com/miranda-bayer/4005-70257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70258/", + "id": 70258, + "name": "Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/spectrum/4005-70258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70293/", + "id": 70293, + "name": "Drill", + "site_detail_url": "https://comicvine.gamespot.com/drill/4005-70293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70294/", + "id": 70294, + "name": "Buzz-Saw", + "site_detail_url": "https://comicvine.gamespot.com/buzz-saw/4005-70294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70306/", + "id": 70306, + "name": "Detroit Steel", + "site_detail_url": "https://comicvine.gamespot.com/detroit-steel/4005-70306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70309/", + "id": 70309, + "name": "Harridan", + "site_detail_url": "https://comicvine.gamespot.com/harridan/4005-70309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70387/", + "id": 70387, + "name": "Edward Vance", + "site_detail_url": "https://comicvine.gamespot.com/edward-vance/4005-70387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70388/", + "id": 70388, + "name": "Ned Campbell", + "site_detail_url": "https://comicvine.gamespot.com/ned-campbell/4005-70388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70411/", + "id": 70411, + "name": "Raul Quentino", + "site_detail_url": "https://comicvine.gamespot.com/raul-quentino/4005-70411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70412/", + "id": 70412, + "name": "Herr Kleiser", + "site_detail_url": "https://comicvine.gamespot.com/herr-kleiser/4005-70412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70429/", + "id": 70429, + "name": "Leonid Tesla", + "site_detail_url": "https://comicvine.gamespot.com/leonid-tesla/4005-70429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70431/", + "id": 70431, + "name": "T'shan", + "site_detail_url": "https://comicvine.gamespot.com/tshan/4005-70431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70432/", + "id": 70432, + "name": "Becky", + "site_detail_url": "https://comicvine.gamespot.com/becky/4005-70432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70433/", + "id": 70433, + "name": "Emma Paley", + "site_detail_url": "https://comicvine.gamespot.com/emma-paley/4005-70433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70434/", + "id": 70434, + "name": "Leila Goldberg", + "site_detail_url": "https://comicvine.gamespot.com/leila-goldberg/4005-70434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70436/", + "id": 70436, + "name": "Teri Hillman", + "site_detail_url": "https://comicvine.gamespot.com/teri-hillman/4005-70436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70437/", + "id": 70437, + "name": "Commander Gannon", + "site_detail_url": "https://comicvine.gamespot.com/commander-gannon/4005-70437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70442/", + "id": 70442, + "name": "Captain Torrak", + "site_detail_url": "https://comicvine.gamespot.com/captain-torrak/4005-70442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70443/", + "id": 70443, + "name": "Toad King", + "site_detail_url": "https://comicvine.gamespot.com/toad-king/4005-70443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70446/", + "id": 70446, + "name": "Gammadroid", + "site_detail_url": "https://comicvine.gamespot.com/gammadroid/4005-70446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70449/", + "id": 70449, + "name": "Beau Banner", + "site_detail_url": "https://comicvine.gamespot.com/beau-banner/4005-70449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70450/", + "id": 70450, + "name": "Billy Bob Banner", + "site_detail_url": "https://comicvine.gamespot.com/billy-bob-banner/4005-70450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70451/", + "id": 70451, + "name": "Elrod Banner", + "site_detail_url": "https://comicvine.gamespot.com/elrod-banner/4005-70451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70452/", + "id": 70452, + "name": "Jade Logan", + "site_detail_url": "https://comicvine.gamespot.com/jade-logan/4005-70452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70453/", + "id": 70453, + "name": "Luke Banner", + "site_detail_url": "https://comicvine.gamespot.com/luke-banner/4005-70453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70454/", + "id": 70454, + "name": "Maureen Logan", + "site_detail_url": "https://comicvine.gamespot.com/maureen-logan/4005-70454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70455/", + "id": 70455, + "name": "Rufus Banner", + "site_detail_url": "https://comicvine.gamespot.com/rufus-banner/4005-70455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70456/", + "id": 70456, + "name": "Scotty Logan", + "site_detail_url": "https://comicvine.gamespot.com/scotty-logan/4005-70456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70457/", + "id": 70457, + "name": "Sonny Stark", + "site_detail_url": "https://comicvine.gamespot.com/sonny-stark/4005-70457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70458/", + "id": 70458, + "name": "Woody Banner", + "site_detail_url": "https://comicvine.gamespot.com/woody-banner/4005-70458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70473/", + "id": 70473, + "name": "Daniel Ring", + "site_detail_url": "https://comicvine.gamespot.com/daniel-ring/4005-70473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70474/", + "id": 70474, + "name": "Jeff Palmer", + "site_detail_url": "https://comicvine.gamespot.com/jeff-palmer/4005-70474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70476/", + "id": 70476, + "name": "Caitlyn MacDonald", + "site_detail_url": "https://comicvine.gamespot.com/caitlyn-macdonald/4005-70476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70477/", + "id": 70477, + "name": "Callie", + "site_detail_url": "https://comicvine.gamespot.com/callie/4005-70477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70478/", + "id": 70478, + "name": "Frederick Hudson", + "site_detail_url": "https://comicvine.gamespot.com/frederick-hudson/4005-70478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70479/", + "id": 70479, + "name": "Hazel", + "site_detail_url": "https://comicvine.gamespot.com/hazel/4005-70479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70480/", + "id": 70480, + "name": "Luther Creed", + "site_detail_url": "https://comicvine.gamespot.com/luther-creed/4005-70480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70481/", + "id": 70481, + "name": "Miss Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/miss-tanaka/4005-70481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70482/", + "id": 70482, + "name": "Zebadiah Creed", + "site_detail_url": "https://comicvine.gamespot.com/zebadiah-creed/4005-70482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70485/", + "id": 70485, + "name": "Roxie Gilbert", + "site_detail_url": "https://comicvine.gamespot.com/roxie-gilbert/4005-70485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70486/", + "id": 70486, + "name": "Kristin", + "site_detail_url": "https://comicvine.gamespot.com/kristin/4005-70486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70487/", + "id": 70487, + "name": "Sarin", + "site_detail_url": "https://comicvine.gamespot.com/sarin/4005-70487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70491/", + "id": 70491, + "name": "Jentorra", + "site_detail_url": "https://comicvine.gamespot.com/jentorra/4005-70491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70493/", + "id": 70493, + "name": "Brian Logan", + "site_detail_url": "https://comicvine.gamespot.com/brian-logan/4005-70493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70494/", + "id": 70494, + "name": "Mari Logan", + "site_detail_url": "https://comicvine.gamespot.com/mari-logan/4005-70494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70495/", + "id": 70495, + "name": "Mister Murray", + "site_detail_url": "https://comicvine.gamespot.com/mister-murray/4005-70495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70496/", + "id": 70496, + "name": "Vapor", + "site_detail_url": "https://comicvine.gamespot.com/vapor/4005-70496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70497/", + "id": 70497, + "name": "Mister Willoughby", + "site_detail_url": "https://comicvine.gamespot.com/mister-willoughby/4005-70497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70501/", + "id": 70501, + "name": "Victor Hudson", + "site_detail_url": "https://comicvine.gamespot.com/victor-hudson/4005-70501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70506/", + "id": 70506, + "name": "Ivan the Hunchback", + "site_detail_url": "https://comicvine.gamespot.com/ivan-the-hunchback/4005-70506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70512/", + "id": 70512, + "name": "Master Meld", + "site_detail_url": "https://comicvine.gamespot.com/master-meld/4005-70512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70559/", + "id": 70559, + "name": "Mae Li", + "site_detail_url": "https://comicvine.gamespot.com/mae-li/4005-70559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70560/", + "id": 70560, + "name": "Chastity Jones", + "site_detail_url": "https://comicvine.gamespot.com/chastity-jones/4005-70560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70572/", + "id": 70572, + "name": "Damiella", + "site_detail_url": "https://comicvine.gamespot.com/damiella/4005-70572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70576/", + "id": 70576, + "name": "Trashcan Man", + "site_detail_url": "https://comicvine.gamespot.com/trashcan-man/4005-70576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70594/", + "id": 70594, + "name": "Jonah Reeves", + "site_detail_url": "https://comicvine.gamespot.com/jonah-reeves/4005-70594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70634/", + "id": 70634, + "name": "Madame Fang", + "site_detail_url": "https://comicvine.gamespot.com/madame-fang/4005-70634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70650/", + "id": 70650, + "name": "Bakuto", + "site_detail_url": "https://comicvine.gamespot.com/bakuto/4005-70650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70656/", + "id": 70656, + "name": "Combat Colin", + "site_detail_url": "https://comicvine.gamespot.com/combat-colin/4005-70656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70658/", + "id": 70658, + "name": "Semi Automatic Steve", + "site_detail_url": "https://comicvine.gamespot.com/semi-automatic-steve/4005-70658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70671/", + "id": 70671, + "name": "Inali Redpath", + "site_detail_url": "https://comicvine.gamespot.com/inali-redpath/4005-70671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70676/", + "id": 70676, + "name": "William Nguyen", + "site_detail_url": "https://comicvine.gamespot.com/william-nguyen/4005-70676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70679/", + "id": 70679, + "name": "Lenore DeCade", + "site_detail_url": "https://comicvine.gamespot.com/lenore-decade/4005-70679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70681/", + "id": 70681, + "name": "Moorlands Monster", + "site_detail_url": "https://comicvine.gamespot.com/moorlands-monster/4005-70681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70688/", + "id": 70688, + "name": "The Gatekeeper", + "site_detail_url": "https://comicvine.gamespot.com/the-gatekeeper/4005-70688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70690/", + "id": 70690, + "name": "Juno", + "site_detail_url": "https://comicvine.gamespot.com/juno/4005-70690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70691/", + "id": 70691, + "name": "Aurora Rabinowitz", + "site_detail_url": "https://comicvine.gamespot.com/aurora-rabinowitz/4005-70691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70697/", + "id": 70697, + "name": "Siege 2099", + "site_detail_url": "https://comicvine.gamespot.com/siege-2099/4005-70697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70703/", + "id": 70703, + "name": "The Face", + "site_detail_url": "https://comicvine.gamespot.com/the-face/4005-70703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70706/", + "id": 70706, + "name": "Snake-Eyes", + "site_detail_url": "https://comicvine.gamespot.com/snake-eyes/4005-70706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70710/", + "id": 70710, + "name": "Tia", + "site_detail_url": "https://comicvine.gamespot.com/tia/4005-70710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70714/", + "id": 70714, + "name": "Swift Cloud", + "site_detail_url": "https://comicvine.gamespot.com/swift-cloud/4005-70714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70728/", + "id": 70728, + "name": "Brad Miller", + "site_detail_url": "https://comicvine.gamespot.com/brad-miller/4005-70728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70733/", + "id": 70733, + "name": "N'Yami", + "site_detail_url": "https://comicvine.gamespot.com/nyami/4005-70733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70758/", + "id": 70758, + "name": "Vessila", + "site_detail_url": "https://comicvine.gamespot.com/vessila/4005-70758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70781/", + "id": 70781, + "name": "Cadille", + "site_detail_url": "https://comicvine.gamespot.com/cadille/4005-70781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70782/", + "id": 70782, + "name": "Edna Tilby", + "site_detail_url": "https://comicvine.gamespot.com/edna-tilby/4005-70782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70783/", + "id": 70783, + "name": "Madame Modoc", + "site_detail_url": "https://comicvine.gamespot.com/madame-modoc/4005-70783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70784/", + "id": 70784, + "name": "Minette", + "site_detail_url": "https://comicvine.gamespot.com/minette/4005-70784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70787/", + "id": 70787, + "name": "Edie Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/edie-eisenhardt/4005-70787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70788/", + "id": 70788, + "name": "Red Lucy", + "site_detail_url": "https://comicvine.gamespot.com/red-lucy/4005-70788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70789/", + "id": 70789, + "name": "The Brain-Ship", + "site_detail_url": "https://comicvine.gamespot.com/the-brain-ship/4005-70789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70791/", + "id": 70791, + "name": "Inspector Hopkins", + "site_detail_url": "https://comicvine.gamespot.com/inspector-hopkins/4005-70791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70792/", + "id": 70792, + "name": "Inspector Strum", + "site_detail_url": "https://comicvine.gamespot.com/inspector-strum/4005-70792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70794/", + "id": 70794, + "name": "War", + "site_detail_url": "https://comicvine.gamespot.com/war/4005-70794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70802/", + "id": 70802, + "name": "Sasha Hammer", + "site_detail_url": "https://comicvine.gamespot.com/sasha-hammer/4005-70802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70808/", + "id": 70808, + "name": "Anya Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/anya-rasputin/4005-70808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70809/", + "id": 70809, + "name": "Marti Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/marti-rasputin/4005-70809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70811/", + "id": 70811, + "name": "Ariana McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/ariana-mckenzie/4005-70811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70812/", + "id": 70812, + "name": "Colony", + "site_detail_url": "https://comicvine.gamespot.com/colony/4005-70812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70813/", + "id": 70813, + "name": "Colyn", + "site_detail_url": "https://comicvine.gamespot.com/colyn/4005-70813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70814/", + "id": 70814, + "name": "Shandra", + "site_detail_url": "https://comicvine.gamespot.com/shandra/4005-70814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70815/", + "id": 70815, + "name": "Erin McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/erin-mckenzie/4005-70815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70816/", + "id": 70816, + "name": "Garotte", + "site_detail_url": "https://comicvine.gamespot.com/garotte/4005-70816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70817/", + "id": 70817, + "name": "Gigantor", + "site_detail_url": "https://comicvine.gamespot.com/gigantor/4005-70817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70818/", + "id": 70818, + "name": "Johnny McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/johnny-mckenzie/4005-70818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70819/", + "id": 70819, + "name": "King Michael", + "site_detail_url": "https://comicvine.gamespot.com/king-michael/4005-70819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70820/", + "id": 70820, + "name": "Legion", + "site_detail_url": "https://comicvine.gamespot.com/legion/4005-70820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70821/", + "id": 70821, + "name": "Purge", + "site_detail_url": "https://comicvine.gamespot.com/purge/4005-70821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70822/", + "id": 70822, + "name": "Queen Erin", + "site_detail_url": "https://comicvine.gamespot.com/queen-erin/4005-70822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70823/", + "id": 70823, + "name": "Salvo", + "site_detail_url": "https://comicvine.gamespot.com/salvo/4005-70823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70824/", + "id": 70824, + "name": "Sandstorm", + "site_detail_url": "https://comicvine.gamespot.com/sandstorm/4005-70824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70825/", + "id": 70825, + "name": "Shadowclaw", + "site_detail_url": "https://comicvine.gamespot.com/shadowclaw/4005-70825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70826/", + "id": 70826, + "name": "Sharen", + "site_detail_url": "https://comicvine.gamespot.com/sharen/4005-70826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70827/", + "id": 70827, + "name": "Wolftrap", + "site_detail_url": "https://comicvine.gamespot.com/wolftrap/4005-70827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70829/", + "id": 70829, + "name": "Cerise Wagner", + "site_detail_url": "https://comicvine.gamespot.com/cerise-wagner/4005-70829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70830/", + "id": 70830, + "name": "Ciaran McCoy", + "site_detail_url": "https://comicvine.gamespot.com/ciaran-mccoy/4005-70830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70831/", + "id": 70831, + "name": "Doug Pryde", + "site_detail_url": "https://comicvine.gamespot.com/doug-pryde/4005-70831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70832/", + "id": 70832, + "name": "Francesca McCoy", + "site_detail_url": "https://comicvine.gamespot.com/francesca-mccoy/4005-70832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70833/", + "id": 70833, + "name": "Meredith Pryde", + "site_detail_url": "https://comicvine.gamespot.com/meredith-pryde/4005-70833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70834/", + "id": 70834, + "name": "Miguel McCoy", + "site_detail_url": "https://comicvine.gamespot.com/miguel-mccoy/4005-70834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70835/", + "id": 70835, + "name": "Sarah Pryde", + "site_detail_url": "https://comicvine.gamespot.com/sarah-pryde/4005-70835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70836/", + "id": 70836, + "name": "Thomas Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/thomas-guthrie/4005-70836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70837/", + "id": 70837, + "name": "TJ Wagner", + "site_detail_url": "https://comicvine.gamespot.com/tj-wagner/4005-70837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70840/", + "id": 70840, + "name": "Kronnitt", + "site_detail_url": "https://comicvine.gamespot.com/kronnitt/4005-70840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70841/", + "id": 70841, + "name": "White Lightnin'", + "site_detail_url": "https://comicvine.gamespot.com/white-lightnin/4005-70841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70845/", + "id": 70845, + "name": "Orora Munroe", + "site_detail_url": "https://comicvine.gamespot.com/orora-munroe/4005-70845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70847/", + "id": 70847, + "name": "Cancerverse Daemon", + "site_detail_url": "https://comicvine.gamespot.com/cancerverse-daemon/4005-70847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70851/", + "id": 70851, + "name": "Rogue Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/rogue-fantastic/4005-70851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70856/", + "id": 70856, + "name": "Freddy", + "site_detail_url": "https://comicvine.gamespot.com/freddy/4005-70856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70858/", + "id": 70858, + "name": "The Consultant", + "site_detail_url": "https://comicvine.gamespot.com/the-consultant/4005-70858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70859/", + "id": 70859, + "name": "Mr. Pain", + "site_detail_url": "https://comicvine.gamespot.com/mr-pain/4005-70859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70860/", + "id": 70860, + "name": "Phil Coulson", + "site_detail_url": "https://comicvine.gamespot.com/phil-coulson/4005-70860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70937/", + "id": 70937, + "name": "Casey", + "site_detail_url": "https://comicvine.gamespot.com/casey/4005-70937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70948/", + "id": 70948, + "name": "Colonel Moran", + "site_detail_url": "https://comicvine.gamespot.com/colonel-moran/4005-70948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70949/", + "id": 70949, + "name": "Sylvius", + "site_detail_url": "https://comicvine.gamespot.com/sylvius/4005-70949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70955/", + "id": 70955, + "name": "Danny Nixon", + "site_detail_url": "https://comicvine.gamespot.com/danny-nixon/4005-70955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70956/", + "id": 70956, + "name": "Hector Morales", + "site_detail_url": "https://comicvine.gamespot.com/hector-morales/4005-70956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70957/", + "id": 70957, + "name": "Kara", + "site_detail_url": "https://comicvine.gamespot.com/kara/4005-70957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70958/", + "id": 70958, + "name": "Liz Nixon", + "site_detail_url": "https://comicvine.gamespot.com/liz-nixon/4005-70958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70959/", + "id": 70959, + "name": "Sherman Weismann", + "site_detail_url": "https://comicvine.gamespot.com/sherman-weismann/4005-70959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70960/", + "id": 70960, + "name": "Tyler Nixon", + "site_detail_url": "https://comicvine.gamespot.com/tyler-nixon/4005-70960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70978/", + "id": 70978, + "name": "Charles Graymalkin", + "site_detail_url": "https://comicvine.gamespot.com/charles-graymalkin/4005-70978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70979/", + "id": 70979, + "name": "Susanna Dane", + "site_detail_url": "https://comicvine.gamespot.com/susanna-dane/4005-70979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70980/", + "id": 70980, + "name": "Nina Cheney", + "site_detail_url": "https://comicvine.gamespot.com/nina-cheney/4005-70980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70990/", + "id": 70990, + "name": "Christopher Alleyne", + "site_detail_url": "https://comicvine.gamespot.com/christopher-alleyne/4005-70990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70991/", + "id": 70991, + "name": "Dorothy Alleyne", + "site_detail_url": "https://comicvine.gamespot.com/dorothy-alleyne/4005-70991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70992/", + "id": 70992, + "name": "Elizabeth Keller", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-keller/4005-70992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70993/", + "id": 70993, + "name": "Gail Collins", + "site_detail_url": "https://comicvine.gamespot.com/gail-collins/4005-70993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70994/", + "id": 70994, + "name": "Grace Foley", + "site_detail_url": "https://comicvine.gamespot.com/grace-foley/4005-70994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70995/", + "id": 70995, + "name": "Grace Risman", + "site_detail_url": "https://comicvine.gamespot.com/grace-risman/4005-70995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70996/", + "id": 70996, + "name": "Howard Foley", + "site_detail_url": "https://comicvine.gamespot.com/howard-foley/4005-70996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70998/", + "id": 70998, + "name": "Jack Abrams", + "site_detail_url": "https://comicvine.gamespot.com/jack-abrams/4005-70998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-70999/", + "id": 70999, + "name": "Jill Kincaid", + "site_detail_url": "https://comicvine.gamespot.com/jill-kincaid/4005-70999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71000/", + "id": 71000, + "name": "Mark Kincaid", + "site_detail_url": "https://comicvine.gamespot.com/mark-kincaid/4005-71000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71001/", + "id": 71001, + "name": "Mirah Qadir", + "site_detail_url": "https://comicvine.gamespot.com/mirah-qadir/4005-71001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71002/", + "id": 71002, + "name": "Mr. Borkowski", + "site_detail_url": "https://comicvine.gamespot.com/mr-borkowski/4005-71002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71003/", + "id": 71003, + "name": "Mrs. Borkowski", + "site_detail_url": "https://comicvine.gamespot.com/mrs-borkowski/4005-71003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71004/", + "id": 71004, + "name": "Paolo Mantega", + "site_detail_url": "https://comicvine.gamespot.com/paolo-mantega/4005-71004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71005/", + "id": 71005, + "name": "Piper Risman", + "site_detail_url": "https://comicvine.gamespot.com/piper-risman/4005-71005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71006/", + "id": 71006, + "name": "Seiji Ashida", + "site_detail_url": "https://comicvine.gamespot.com/seiji-ashida/4005-71006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71007/", + "id": 71007, + "name": "Strongarm", + "site_detail_url": "https://comicvine.gamespot.com/strongarm/4005-71007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71008/", + "id": 71008, + "name": "Suki Ashida", + "site_detail_url": "https://comicvine.gamespot.com/suki-ashida/4005-71008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71009/", + "id": 71009, + "name": "Trevor Ford", + "site_detail_url": "https://comicvine.gamespot.com/trevor-ford/4005-71009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71010/", + "id": 71010, + "name": "William Keller", + "site_detail_url": "https://comicvine.gamespot.com/william-keller/4005-71010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71023/", + "id": 71023, + "name": "Power Man (Alvarez)", + "site_detail_url": "https://comicvine.gamespot.com/power-man-alvarez/4005-71023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71034/", + "id": 71034, + "name": "Maeve Rourke Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/maeve-rourke-cassidy/4005-71034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71057/", + "id": 71057, + "name": "Whiteface", + "site_detail_url": "https://comicvine.gamespot.com/whiteface/4005-71057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71067/", + "id": 71067, + "name": "Cherry Blossom", + "site_detail_url": "https://comicvine.gamespot.com/cherry-blossom/4005-71067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71068/", + "id": 71068, + "name": "Makro", + "site_detail_url": "https://comicvine.gamespot.com/makro/4005-71068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71069/", + "id": 71069, + "name": "Yuki", + "site_detail_url": "https://comicvine.gamespot.com/yuki/4005-71069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71074/", + "id": 71074, + "name": "Dai'andral", + "site_detail_url": "https://comicvine.gamespot.com/daiandral/4005-71074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71075/", + "id": 71075, + "name": "David Chan", + "site_detail_url": "https://comicvine.gamespot.com/david-chan/4005-71075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71076/", + "id": 71076, + "name": "Emily Chan", + "site_detail_url": "https://comicvine.gamespot.com/emily-chan/4005-71076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71077/", + "id": 71077, + "name": "Victoria Creed", + "site_detail_url": "https://comicvine.gamespot.com/victoria-creed/4005-71077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71078/", + "id": 71078, + "name": "Mrs Munoz", + "site_detail_url": "https://comicvine.gamespot.com/mrs-munoz/4005-71078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71080/", + "id": 71080, + "name": "Charles Bohusk", + "site_detail_url": "https://comicvine.gamespot.com/charles-bohusk/4005-71080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71081/", + "id": 71081, + "name": "Kathy Bohusk", + "site_detail_url": "https://comicvine.gamespot.com/kathy-bohusk/4005-71081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71082/", + "id": 71082, + "name": "Brianna Robbins", + "site_detail_url": "https://comicvine.gamespot.com/brianna-robbins/4005-71082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71083/", + "id": 71083, + "name": "William Nelson", + "site_detail_url": "https://comicvine.gamespot.com/william-nelson/4005-71083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71113/", + "id": 71113, + "name": "Kalb", + "site_detail_url": "https://comicvine.gamespot.com/kalb/4005-71113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71115/", + "id": 71115, + "name": "Rigo Zapata", + "site_detail_url": "https://comicvine.gamespot.com/rigo-zapata/4005-71115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71116/", + "id": 71116, + "name": "Gus Zapata", + "site_detail_url": "https://comicvine.gamespot.com/gus-zapata/4005-71116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71117/", + "id": 71117, + "name": "Agent Braccia", + "site_detail_url": "https://comicvine.gamespot.com/agent-braccia/4005-71117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71118/", + "id": 71118, + "name": "Varina Goddard", + "site_detail_url": "https://comicvine.gamespot.com/varina-goddard/4005-71118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71121/", + "id": 71121, + "name": "Mrs Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/mrs-reynolds/4005-71121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71124/", + "id": 71124, + "name": "Extremist", + "site_detail_url": "https://comicvine.gamespot.com/extremist/4005-71124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71126/", + "id": 71126, + "name": "Garson Poole", + "site_detail_url": "https://comicvine.gamespot.com/garson-poole/4005-71126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71127/", + "id": 71127, + "name": "Francis Barton", + "site_detail_url": "https://comicvine.gamespot.com/francis-barton/4005-71127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71131/", + "id": 71131, + "name": "Turmoil", + "site_detail_url": "https://comicvine.gamespot.com/turmoil/4005-71131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71148/", + "id": 71148, + "name": "Hiram Dobbs", + "site_detail_url": "https://comicvine.gamespot.com/hiram-dobbs/4005-71148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71153/", + "id": 71153, + "name": "General Ulysses", + "site_detail_url": "https://comicvine.gamespot.com/general-ulysses/4005-71153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71154/", + "id": 71154, + "name": "Doctor Noc", + "site_detail_url": "https://comicvine.gamespot.com/doctor-noc/4005-71154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71157/", + "id": 71157, + "name": "Azari", + "site_detail_url": "https://comicvine.gamespot.com/azari/4005-71157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71158/", + "id": 71158, + "name": "Henry Pym Jr", + "site_detail_url": "https://comicvine.gamespot.com/henry-pym-jr/4005-71158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71159/", + "id": 71159, + "name": "James Rogers", + "site_detail_url": "https://comicvine.gamespot.com/james-rogers/4005-71159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71160/", + "id": 71160, + "name": "Thena", + "site_detail_url": "https://comicvine.gamespot.com/thena/4005-71160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71161/", + "id": 71161, + "name": "Synapse", + "site_detail_url": "https://comicvine.gamespot.com/synapse/4005-71161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71168/", + "id": 71168, + "name": "Gaius Tiberius Augustus Aggrippa", + "site_detail_url": "https://comicvine.gamespot.com/gaius-tiberius-augustus-aggrippa/4005-71168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71177/", + "id": 71177, + "name": "Xarus", + "site_detail_url": "https://comicvine.gamespot.com/xarus/4005-71177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71206/", + "id": 71206, + "name": "Tyrone Cash", + "site_detail_url": "https://comicvine.gamespot.com/tyrone-cash/4005-71206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71207/", + "id": 71207, + "name": "Samson", + "site_detail_url": "https://comicvine.gamespot.com/samson/4005-71207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71208/", + "id": 71208, + "name": "Brute", + "site_detail_url": "https://comicvine.gamespot.com/brute/4005-71208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71213/", + "id": 71213, + "name": "Blue", + "site_detail_url": "https://comicvine.gamespot.com/blue/4005-71213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71214/", + "id": 71214, + "name": "Dale Rice", + "site_detail_url": "https://comicvine.gamespot.com/dale-rice/4005-71214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71215/", + "id": 71215, + "name": "Deborah Kinney", + "site_detail_url": "https://comicvine.gamespot.com/deborah-kinney/4005-71215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71216/", + "id": 71216, + "name": "Illyana Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/illyana-rasputin/4005-71216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71217/", + "id": 71217, + "name": "Martin Sutter", + "site_detail_url": "https://comicvine.gamespot.com/martin-sutter/4005-71217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71218/", + "id": 71218, + "name": "Richie Parker", + "site_detail_url": "https://comicvine.gamespot.com/richie-parker/4005-71218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71219/", + "id": 71219, + "name": "Tanaka Sensei", + "site_detail_url": "https://comicvine.gamespot.com/tanaka-sensei/4005-71219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71222/", + "id": 71222, + "name": "Henry Sutter", + "site_detail_url": "https://comicvine.gamespot.com/henry-sutter/4005-71222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71223/", + "id": 71223, + "name": "Rachel Sutter", + "site_detail_url": "https://comicvine.gamespot.com/rachel-sutter/4005-71223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71225/", + "id": 71225, + "name": "Laserworks", + "site_detail_url": "https://comicvine.gamespot.com/laserworks/4005-71225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71226/", + "id": 71226, + "name": "Fireball", + "site_detail_url": "https://comicvine.gamespot.com/fireball/4005-71226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71281/", + "id": 71281, + "name": "Desmond Alexander", + "site_detail_url": "https://comicvine.gamespot.com/desmond-alexander/4005-71281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71285/", + "id": 71285, + "name": "Crusher", + "site_detail_url": "https://comicvine.gamespot.com/crusher/4005-71285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71286/", + "id": 71286, + "name": "Crusher", + "site_detail_url": "https://comicvine.gamespot.com/crusher/4005-71286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71300/", + "id": 71300, + "name": "Saturnine", + "site_detail_url": "https://comicvine.gamespot.com/saturnine/4005-71300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71307/", + "id": 71307, + "name": "Jed Schultz", + "site_detail_url": "https://comicvine.gamespot.com/jed-schultz/4005-71307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71344/", + "id": 71344, + "name": "Dwayne", + "site_detail_url": "https://comicvine.gamespot.com/dwayne/4005-71344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71346/", + "id": 71346, + "name": "Junkyard", + "site_detail_url": "https://comicvine.gamespot.com/junkyard/4005-71346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71347/", + "id": 71347, + "name": "Sarah", + "site_detail_url": "https://comicvine.gamespot.com/sarah/4005-71347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71350/", + "id": 71350, + "name": "Tong", + "site_detail_url": "https://comicvine.gamespot.com/tong/4005-71350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71351/", + "id": 71351, + "name": "Mik", + "site_detail_url": "https://comicvine.gamespot.com/mik/4005-71351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71352/", + "id": 71352, + "name": "Turg", + "site_detail_url": "https://comicvine.gamespot.com/turg/4005-71352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71353/", + "id": 71353, + "name": "Korr", + "site_detail_url": "https://comicvine.gamespot.com/korr/4005-71353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71358/", + "id": 71358, + "name": "Chorus Sentry", + "site_detail_url": "https://comicvine.gamespot.com/chorus-sentry/4005-71358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71368/", + "id": 71368, + "name": "Berserker Android", + "site_detail_url": "https://comicvine.gamespot.com/berserker-android/4005-71368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71374/", + "id": 71374, + "name": "Vincent Von Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/vincent-von-frankenstein/4005-71374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71383/", + "id": 71383, + "name": "Basil Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/basil-frankenstein/4005-71383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71384/", + "id": 71384, + "name": "Nazi Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/nazi-frankenstein/4005-71384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71386/", + "id": 71386, + "name": "Prosimian", + "site_detail_url": "https://comicvine.gamespot.com/prosimian/4005-71386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71444/", + "id": 71444, + "name": "Yorkie Mitchell", + "site_detail_url": "https://comicvine.gamespot.com/yorkie-mitchell/4005-71444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71475/", + "id": 71475, + "name": "Orb Weaver", + "site_detail_url": "https://comicvine.gamespot.com/orb-weaver/4005-71475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71491/", + "id": 71491, + "name": "Mortar", + "site_detail_url": "https://comicvine.gamespot.com/mortar/4005-71491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71501/", + "id": 71501, + "name": "The Wild Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/the-wild-sentinel/4005-71501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71510/", + "id": 71510, + "name": "Olik", + "site_detail_url": "https://comicvine.gamespot.com/olik/4005-71510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71511/", + "id": 71511, + "name": "Stephen", + "site_detail_url": "https://comicvine.gamespot.com/stephen/4005-71511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71513/", + "id": 71513, + "name": "Scrubb", + "site_detail_url": "https://comicvine.gamespot.com/scrubb/4005-71513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71520/", + "id": 71520, + "name": "Zalkor", + "site_detail_url": "https://comicvine.gamespot.com/zalkor/4005-71520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71566/", + "id": 71566, + "name": "Flux", + "site_detail_url": "https://comicvine.gamespot.com/flux/4005-71566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71582/", + "id": 71582, + "name": "Diamondback (Bertrand)", + "site_detail_url": "https://comicvine.gamespot.com/diamondback-bertrand/4005-71582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71601/", + "id": 71601, + "name": "Polestar", + "site_detail_url": "https://comicvine.gamespot.com/polestar/4005-71601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71636/", + "id": 71636, + "name": "Derek Morgan", + "site_detail_url": "https://comicvine.gamespot.com/derek-morgan/4005-71636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71685/", + "id": 71685, + "name": "Doctor Time", + "site_detail_url": "https://comicvine.gamespot.com/doctor-time/4005-71685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71686/", + "id": 71686, + "name": "Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/butterfly/4005-71686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71702/", + "id": 71702, + "name": "Tsin Hark", + "site_detail_url": "https://comicvine.gamespot.com/tsin-hark/4005-71702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71703/", + "id": 71703, + "name": "Beheader", + "site_detail_url": "https://comicvine.gamespot.com/beheader/4005-71703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71704/", + "id": 71704, + "name": "Rhinosaur", + "site_detail_url": "https://comicvine.gamespot.com/rhinosaur/4005-71704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71705/", + "id": 71705, + "name": "Mouse", + "site_detail_url": "https://comicvine.gamespot.com/mouse/4005-71705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71718/", + "id": 71718, + "name": "Smoke", + "site_detail_url": "https://comicvine.gamespot.com/smoke/4005-71718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71777/", + "id": 71777, + "name": "Phinn Mac Mram", + "site_detail_url": "https://comicvine.gamespot.com/phinn-mac-mram/4005-71777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71794/", + "id": 71794, + "name": "Alyssa", + "site_detail_url": "https://comicvine.gamespot.com/alyssa/4005-71794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71798/", + "id": 71798, + "name": "Surfstreak", + "site_detail_url": "https://comicvine.gamespot.com/surfstreak/4005-71798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71799/", + "id": 71799, + "name": "Soar", + "site_detail_url": "https://comicvine.gamespot.com/soar/4005-71799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71800/", + "id": 71800, + "name": "Wreckless", + "site_detail_url": "https://comicvine.gamespot.com/wreckless/4005-71800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71801/", + "id": 71801, + "name": "Lionheart", + "site_detail_url": "https://comicvine.gamespot.com/lionheart/4005-71801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71802/", + "id": 71802, + "name": "Hiphop", + "site_detail_url": "https://comicvine.gamespot.com/hiphop/4005-71802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71804/", + "id": 71804, + "name": "Uproar", + "site_detail_url": "https://comicvine.gamespot.com/uproar/4005-71804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71805/", + "id": 71805, + "name": "Bloodbath", + "site_detail_url": "https://comicvine.gamespot.com/bloodbath/4005-71805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71806/", + "id": 71806, + "name": "Tailgunner", + "site_detail_url": "https://comicvine.gamespot.com/tailgunner/4005-71806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71807/", + "id": 71807, + "name": "Ramrod", + "site_detail_url": "https://comicvine.gamespot.com/ramrod/4005-71807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71808/", + "id": 71808, + "name": "Armory", + "site_detail_url": "https://comicvine.gamespot.com/armory/4005-71808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71810/", + "id": 71810, + "name": "Aaron Downing", + "site_detail_url": "https://comicvine.gamespot.com/aaron-downing/4005-71810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71811/", + "id": 71811, + "name": "Ahmed Noor", + "site_detail_url": "https://comicvine.gamespot.com/ahmed-noor/4005-71811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71812/", + "id": 71812, + "name": "Ben Huth", + "site_detail_url": "https://comicvine.gamespot.com/ben-huth/4005-71812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71813/", + "id": 71813, + "name": "Bobby Gamorra", + "site_detail_url": "https://comicvine.gamespot.com/bobby-gamorra/4005-71813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71814/", + "id": 71814, + "name": "Cornell Gray", + "site_detail_url": "https://comicvine.gamespot.com/cornell-gray/4005-71814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71815/", + "id": 71815, + "name": "Ellis Love", + "site_detail_url": "https://comicvine.gamespot.com/ellis-love/4005-71815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71816/", + "id": 71816, + "name": "Lauren Wolfe", + "site_detail_url": "https://comicvine.gamespot.com/lauren-wolfe/4005-71816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71817/", + "id": 71817, + "name": "Ryan Ralston", + "site_detail_url": "https://comicvine.gamespot.com/ryan-ralston/4005-71817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71831/", + "id": 71831, + "name": "Legate", + "site_detail_url": "https://comicvine.gamespot.com/legate/4005-71831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71832/", + "id": 71832, + "name": "Bettina Kaposvar", + "site_detail_url": "https://comicvine.gamespot.com/bettina-kaposvar/4005-71832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71833/", + "id": 71833, + "name": "Emese Kisfaludi", + "site_detail_url": "https://comicvine.gamespot.com/emese-kisfaludi/4005-71833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71834/", + "id": 71834, + "name": "Nikolett Bodo", + "site_detail_url": "https://comicvine.gamespot.com/nikolett-bodo/4005-71834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71835/", + "id": 71835, + "name": "Kid Colt", + "site_detail_url": "https://comicvine.gamespot.com/kid-colt/4005-71835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71877/", + "id": 71877, + "name": "Frances Hyatt", + "site_detail_url": "https://comicvine.gamespot.com/frances-hyatt/4005-71877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71920/", + "id": 71920, + "name": "Black Maria", + "site_detail_url": "https://comicvine.gamespot.com/black-maria/4005-71920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71922/", + "id": 71922, + "name": "Nedrocci Tannengarden", + "site_detail_url": "https://comicvine.gamespot.com/nedrocci-tannengarden/4005-71922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71933/", + "id": 71933, + "name": "Flex", + "site_detail_url": "https://comicvine.gamespot.com/flex/4005-71933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71934/", + "id": 71934, + "name": "Mrs. Williams", + "site_detail_url": "https://comicvine.gamespot.com/mrs-williams/4005-71934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71935/", + "id": 71935, + "name": "Tawny", + "site_detail_url": "https://comicvine.gamespot.com/tawny/4005-71935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71937/", + "id": 71937, + "name": "Stephen", + "site_detail_url": "https://comicvine.gamespot.com/stephen/4005-71937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71938/", + "id": 71938, + "name": "Brad", + "site_detail_url": "https://comicvine.gamespot.com/brad/4005-71938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71940/", + "id": 71940, + "name": "Garrison Quint", + "site_detail_url": "https://comicvine.gamespot.com/garrison-quint/4005-71940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71964/", + "id": 71964, + "name": "Sandra Verdugo", + "site_detail_url": "https://comicvine.gamespot.com/sandra-verdugo/4005-71964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-71991/", + "id": 71991, + "name": "Vivatma Visvajit", + "site_detail_url": "https://comicvine.gamespot.com/vivatma-visvajit/4005-71991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72022/", + "id": 72022, + "name": "Brün", + "site_detail_url": "https://comicvine.gamespot.com/brun/4005-72022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72023/", + "id": 72023, + "name": "Kára", + "site_detail_url": "https://comicvine.gamespot.com/kara/4005-72023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72032/", + "id": 72032, + "name": "Psycho-Woman", + "site_detail_url": "https://comicvine.gamespot.com/psycho-woman/4005-72032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72048/", + "id": 72048, + "name": "Toltec", + "site_detail_url": "https://comicvine.gamespot.com/toltec/4005-72048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72051/", + "id": 72051, + "name": "Glitch", + "site_detail_url": "https://comicvine.gamespot.com/glitch/4005-72051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72060/", + "id": 72060, + "name": "Yoshio Kannabe", + "site_detail_url": "https://comicvine.gamespot.com/yoshio-kannabe/4005-72060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72095/", + "id": 72095, + "name": "Sister Agatha", + "site_detail_url": "https://comicvine.gamespot.com/sister-agatha/4005-72095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72111/", + "id": 72111, + "name": "Harry Sikes", + "site_detail_url": "https://comicvine.gamespot.com/harry-sikes/4005-72111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72115/", + "id": 72115, + "name": "Constance Johanssen", + "site_detail_url": "https://comicvine.gamespot.com/constance-johanssen/4005-72115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72119/", + "id": 72119, + "name": "Ritter Twins", + "site_detail_url": "https://comicvine.gamespot.com/ritter-twins/4005-72119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72123/", + "id": 72123, + "name": "Amp", + "site_detail_url": "https://comicvine.gamespot.com/amp/4005-72123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72145/", + "id": 72145, + "name": "Logos", + "site_detail_url": "https://comicvine.gamespot.com/logos/4005-72145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72151/", + "id": 72151, + "name": "Hailey Wilson", + "site_detail_url": "https://comicvine.gamespot.com/hailey-wilson/4005-72151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72156/", + "id": 72156, + "name": "Freddie Stanachek", + "site_detail_url": "https://comicvine.gamespot.com/freddie-stanachek/4005-72156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72157/", + "id": 72157, + "name": "Ginjer Baron", + "site_detail_url": "https://comicvine.gamespot.com/ginjer-baron/4005-72157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72158/", + "id": 72158, + "name": "Broken Blade", + "site_detail_url": "https://comicvine.gamespot.com/broken-blade/4005-72158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72195/", + "id": 72195, + "name": "Molek", + "site_detail_url": "https://comicvine.gamespot.com/molek/4005-72195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72202/", + "id": 72202, + "name": "Caleb", + "site_detail_url": "https://comicvine.gamespot.com/caleb/4005-72202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72234/", + "id": 72234, + "name": "Jean Ovington", + "site_detail_url": "https://comicvine.gamespot.com/jean-ovington/4005-72234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72235/", + "id": 72235, + "name": "Rumbler", + "site_detail_url": "https://comicvine.gamespot.com/rumbler/4005-72235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72242/", + "id": 72242, + "name": "Dana Moonstar", + "site_detail_url": "https://comicvine.gamespot.com/dana-moonstar/4005-72242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72255/", + "id": 72255, + "name": "Seelia-23", + "site_detail_url": "https://comicvine.gamespot.com/seelia-23/4005-72255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72256/", + "id": 72256, + "name": "Janna-23", + "site_detail_url": "https://comicvine.gamespot.com/janna-23/4005-72256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72265/", + "id": 72265, + "name": "Yuri Trifanov", + "site_detail_url": "https://comicvine.gamespot.com/yuri-trifanov/4005-72265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72268/", + "id": 72268, + "name": "Lieutenant General Fredricks", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-general-fredricks/4005-72268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72269/", + "id": 72269, + "name": "Colonel Hendershoot", + "site_detail_url": "https://comicvine.gamespot.com/colonel-hendershoot/4005-72269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72275/", + "id": 72275, + "name": "Bumbleboy", + "site_detail_url": "https://comicvine.gamespot.com/bumbleboy/4005-72275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72276/", + "id": 72276, + "name": "Ronald Rankin", + "site_detail_url": "https://comicvine.gamespot.com/ronald-rankin/4005-72276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72282/", + "id": 72282, + "name": "Jink Slater", + "site_detail_url": "https://comicvine.gamespot.com/jink-slater/4005-72282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72284/", + "id": 72284, + "name": "Fred Sloan", + "site_detail_url": "https://comicvine.gamespot.com/fred-sloan/4005-72284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72286/", + "id": 72286, + "name": "Puffball Collective", + "site_detail_url": "https://comicvine.gamespot.com/puffball-collective/4005-72286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72287/", + "id": 72287, + "name": "Sir Wulf", + "site_detail_url": "https://comicvine.gamespot.com/sir-wulf/4005-72287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72288/", + "id": 72288, + "name": "Lord Byson", + "site_detail_url": "https://comicvine.gamespot.com/lord-byson/4005-72288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72299/", + "id": 72299, + "name": "Svenzaldo Zambooba", + "site_detail_url": "https://comicvine.gamespot.com/svenzaldo-zambooba/4005-72299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72300/", + "id": 72300, + "name": "Stretcho", + "site_detail_url": "https://comicvine.gamespot.com/stretcho/4005-72300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72301/", + "id": 72301, + "name": "Tex the Circus Performer", + "site_detail_url": "https://comicvine.gamespot.com/tex-the-circus-performer/4005-72301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72316/", + "id": 72316, + "name": "Igor Grozick", + "site_detail_url": "https://comicvine.gamespot.com/igor-grozick/4005-72316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72323/", + "id": 72323, + "name": "Skrull Black Bolt", + "site_detail_url": "https://comicvine.gamespot.com/skrull-black-bolt/4005-72323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72362/", + "id": 72362, + "name": "Elias Hudson", + "site_detail_url": "https://comicvine.gamespot.com/elias-hudson/4005-72362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72363/", + "id": 72363, + "name": "Talogan", + "site_detail_url": "https://comicvine.gamespot.com/talogan/4005-72363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72366/", + "id": 72366, + "name": "Bernice", + "site_detail_url": "https://comicvine.gamespot.com/bernice/4005-72366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72368/", + "id": 72368, + "name": "Bran-Thing", + "site_detail_url": "https://comicvine.gamespot.com/bran-thing/4005-72368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72369/", + "id": 72369, + "name": "Bud", + "site_detail_url": "https://comicvine.gamespot.com/bud/4005-72369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72370/", + "id": 72370, + "name": "Choco Doom", + "site_detail_url": "https://comicvine.gamespot.com/choco-doom/4005-72370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72371/", + "id": 72371, + "name": "Green Vegetable", + "site_detail_url": "https://comicvine.gamespot.com/green-vegetable/4005-72371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72372/", + "id": 72372, + "name": "Mean Cuisine", + "site_detail_url": "https://comicvine.gamespot.com/mean-cuisine/4005-72372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72373/", + "id": 72373, + "name": "Mister Plant'r", + "site_detail_url": "https://comicvine.gamespot.com/mister-plantr/4005-72373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72414/", + "id": 72414, + "name": "Mar", + "site_detail_url": "https://comicvine.gamespot.com/mar/4005-72414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72458/", + "id": 72458, + "name": "Archon", + "site_detail_url": "https://comicvine.gamespot.com/archon/4005-72458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72470/", + "id": 72470, + "name": "General Grissom", + "site_detail_url": "https://comicvine.gamespot.com/general-grissom/4005-72470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72476/", + "id": 72476, + "name": "Allan Stevens", + "site_detail_url": "https://comicvine.gamespot.com/allan-stevens/4005-72476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72477/", + "id": 72477, + "name": "Bill Brinkly", + "site_detail_url": "https://comicvine.gamespot.com/bill-brinkly/4005-72477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72478/", + "id": 72478, + "name": "House of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/house-of-shadows/4005-72478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72484/", + "id": 72484, + "name": "Transonic", + "site_detail_url": "https://comicvine.gamespot.com/transonic/4005-72484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72488/", + "id": 72488, + "name": "Louise Spalding", + "site_detail_url": "https://comicvine.gamespot.com/louise-spalding/4005-72488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72491/", + "id": 72491, + "name": "Luz", + "site_detail_url": "https://comicvine.gamespot.com/luz/4005-72491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72493/", + "id": 72493, + "name": "Mama-Ji", + "site_detail_url": "https://comicvine.gamespot.com/mama-ji/4005-72493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72497/", + "id": 72497, + "name": "Corregidora", + "site_detail_url": "https://comicvine.gamespot.com/corregidora/4005-72497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72508/", + "id": 72508, + "name": "Aloysius Thorndrake", + "site_detail_url": "https://comicvine.gamespot.com/aloysius-thorndrake/4005-72508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72521/", + "id": 72521, + "name": "Calab", + "site_detail_url": "https://comicvine.gamespot.com/calab/4005-72521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72538/", + "id": 72538, + "name": "Rav Gavaskar", + "site_detail_url": "https://comicvine.gamespot.com/rav-gavaskar/4005-72538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72569/", + "id": 72569, + "name": "Martillo", + "site_detail_url": "https://comicvine.gamespot.com/martillo/4005-72569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72579/", + "id": 72579, + "name": "Charles Summers", + "site_detail_url": "https://comicvine.gamespot.com/charles-summers/4005-72579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72580/", + "id": 72580, + "name": "Jeannette Summers", + "site_detail_url": "https://comicvine.gamespot.com/jeannette-summers/4005-72580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72584/", + "id": 72584, + "name": "Borgia Omega", + "site_detail_url": "https://comicvine.gamespot.com/borgia-omega/4005-72584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72597/", + "id": 72597, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-72597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72634/", + "id": 72634, + "name": "Namora", + "site_detail_url": "https://comicvine.gamespot.com/namora/4005-72634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72652/", + "id": 72652, + "name": "Lou Ann", + "site_detail_url": "https://comicvine.gamespot.com/lou-ann/4005-72652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72656/", + "id": 72656, + "name": "Pestilence", + "site_detail_url": "https://comicvine.gamespot.com/pestilence/4005-72656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72663/", + "id": 72663, + "name": "Captain America-X", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-x/4005-72663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72683/", + "id": 72683, + "name": "Lachryma", + "site_detail_url": "https://comicvine.gamespot.com/lachryma/4005-72683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72696/", + "id": 72696, + "name": "Tony Pizzo", + "site_detail_url": "https://comicvine.gamespot.com/tony-pizzo/4005-72696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72699/", + "id": 72699, + "name": "Anthony Bronson", + "site_detail_url": "https://comicvine.gamespot.com/anthony-bronson/4005-72699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72700/", + "id": 72700, + "name": "Jura", + "site_detail_url": "https://comicvine.gamespot.com/jura/4005-72700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72701/", + "id": 72701, + "name": "Luc", + "site_detail_url": "https://comicvine.gamespot.com/luc/4005-72701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72702/", + "id": 72702, + "name": "Markita", + "site_detail_url": "https://comicvine.gamespot.com/markita/4005-72702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72703/", + "id": 72703, + "name": "Ralf", + "site_detail_url": "https://comicvine.gamespot.com/ralf/4005-72703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72704/", + "id": 72704, + "name": "Sasha", + "site_detail_url": "https://comicvine.gamespot.com/sasha/4005-72704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72705/", + "id": 72705, + "name": "Tanya", + "site_detail_url": "https://comicvine.gamespot.com/tanya/4005-72705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72706/", + "id": 72706, + "name": "Vanessa", + "site_detail_url": "https://comicvine.gamespot.com/vanessa/4005-72706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72708/", + "id": 72708, + "name": "Denny Deaver", + "site_detail_url": "https://comicvine.gamespot.com/denny-deaver/4005-72708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72739/", + "id": 72739, + "name": "K'ai", + "site_detail_url": "https://comicvine.gamespot.com/kai/4005-72739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72740/", + "id": 72740, + "name": "Ray Connor", + "site_detail_url": "https://comicvine.gamespot.com/ray-connor/4005-72740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72741/", + "id": 72741, + "name": "Velocidad", + "site_detail_url": "https://comicvine.gamespot.com/velocidad/4005-72741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72767/", + "id": 72767, + "name": "Dr. John Thomas", + "site_detail_url": "https://comicvine.gamespot.com/dr-john-thomas/4005-72767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72790/", + "id": 72790, + "name": "Anazar Prime", + "site_detail_url": "https://comicvine.gamespot.com/anazar-prime/4005-72790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72791/", + "id": 72791, + "name": "Darby Hawk", + "site_detail_url": "https://comicvine.gamespot.com/darby-hawk/4005-72791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72792/", + "id": 72792, + "name": "Doctor Foster", + "site_detail_url": "https://comicvine.gamespot.com/doctor-foster/4005-72792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72793/", + "id": 72793, + "name": "Kalyx", + "site_detail_url": "https://comicvine.gamespot.com/kalyx/4005-72793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72794/", + "id": 72794, + "name": "Lenise", + "site_detail_url": "https://comicvine.gamespot.com/lenise/4005-72794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72795/", + "id": 72795, + "name": "Sabra", + "site_detail_url": "https://comicvine.gamespot.com/sabra/4005-72795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72796/", + "id": 72796, + "name": "Tolo Hawk", + "site_detail_url": "https://comicvine.gamespot.com/tolo-hawk/4005-72796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72797/", + "id": 72797, + "name": "Verdian Terce", + "site_detail_url": "https://comicvine.gamespot.com/verdian-terce/4005-72797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72813/", + "id": 72813, + "name": "Mark Harris", + "site_detail_url": "https://comicvine.gamespot.com/mark-harris/4005-72813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72815/", + "id": 72815, + "name": "Sofia Corazon", + "site_detail_url": "https://comicvine.gamespot.com/sofia-corazon/4005-72815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72817/", + "id": 72817, + "name": "Jack Oonuk", + "site_detail_url": "https://comicvine.gamespot.com/jack-oonuk/4005-72817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72872/", + "id": 72872, + "name": "Fearmaster", + "site_detail_url": "https://comicvine.gamespot.com/fearmaster/4005-72872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72873/", + "id": 72873, + "name": "Cassondra Castle", + "site_detail_url": "https://comicvine.gamespot.com/cassondra-castle/4005-72873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72885/", + "id": 72885, + "name": "Pavitr Prabhakar", + "site_detail_url": "https://comicvine.gamespot.com/pavitr-prabhakar/4005-72885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72886/", + "id": 72886, + "name": "Dr. Charles Benton", + "site_detail_url": "https://comicvine.gamespot.com/dr-charles-benton/4005-72886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72904/", + "id": 72904, + "name": "Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/vendetta/4005-72904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72907/", + "id": 72907, + "name": "Matt Axel", + "site_detail_url": "https://comicvine.gamespot.com/matt-axel/4005-72907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72908/", + "id": 72908, + "name": "Goldheart", + "site_detail_url": "https://comicvine.gamespot.com/goldheart/4005-72908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72910/", + "id": 72910, + "name": "Troll", + "site_detail_url": "https://comicvine.gamespot.com/troll/4005-72910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72912/", + "id": 72912, + "name": "Centene", + "site_detail_url": "https://comicvine.gamespot.com/centene/4005-72912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72934/", + "id": 72934, + "name": "Porter Mack", + "site_detail_url": "https://comicvine.gamespot.com/porter-mack/4005-72934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72963/", + "id": 72963, + "name": "K-Zzat", + "site_detail_url": "https://comicvine.gamespot.com/k-zzat/4005-72963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72964/", + "id": 72964, + "name": "Lauren", + "site_detail_url": "https://comicvine.gamespot.com/lauren/4005-72964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72965/", + "id": 72965, + "name": "Mr. Cohuelo", + "site_detail_url": "https://comicvine.gamespot.com/mr-cohuelo/4005-72965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72966/", + "id": 72966, + "name": "Mrs. Cohuelo", + "site_detail_url": "https://comicvine.gamespot.com/mrs-cohuelo/4005-72966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-72974/", + "id": 72974, + "name": "Dead Cert", + "site_detail_url": "https://comicvine.gamespot.com/dead-cert/4005-72974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73015/", + "id": 73015, + "name": "Carmine Gazzera", + "site_detail_url": "https://comicvine.gamespot.com/carmine-gazzera/4005-73015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73016/", + "id": 73016, + "name": "Mike Travers", + "site_detail_url": "https://comicvine.gamespot.com/mike-travers/4005-73016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73018/", + "id": 73018, + "name": "Nina", + "site_detail_url": "https://comicvine.gamespot.com/nina/4005-73018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73023/", + "id": 73023, + "name": "Janice Manning", + "site_detail_url": "https://comicvine.gamespot.com/janice-manning/4005-73023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73046/", + "id": 73046, + "name": "Claudia Belles", + "site_detail_url": "https://comicvine.gamespot.com/claudia-belles/4005-73046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73047/", + "id": 73047, + "name": "Texter", + "site_detail_url": "https://comicvine.gamespot.com/texter/4005-73047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73048/", + "id": 73048, + "name": "Dolly", + "site_detail_url": "https://comicvine.gamespot.com/dolly/4005-73048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73049/", + "id": 73049, + "name": "Tripp", + "site_detail_url": "https://comicvine.gamespot.com/tripp/4005-73049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73087/", + "id": 73087, + "name": "Abira", + "site_detail_url": "https://comicvine.gamespot.com/abira/4005-73087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73089/", + "id": 73089, + "name": "Husam", + "site_detail_url": "https://comicvine.gamespot.com/husam/4005-73089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73090/", + "id": 73090, + "name": "Husni", + "site_detail_url": "https://comicvine.gamespot.com/husni/4005-73090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73091/", + "id": 73091, + "name": "Kadar", + "site_detail_url": "https://comicvine.gamespot.com/kadar/4005-73091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73092/", + "id": 73092, + "name": "Oudvrou", + "site_detail_url": "https://comicvine.gamespot.com/oudvrou/4005-73092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73101/", + "id": 73101, + "name": "Awareness", + "site_detail_url": "https://comicvine.gamespot.com/awareness/4005-73101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73109/", + "id": 73109, + "name": "Billy Lee", + "site_detail_url": "https://comicvine.gamespot.com/billy-lee/4005-73109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73110/", + "id": 73110, + "name": "Jimmy Lee", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-lee/4005-73110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73114/", + "id": 73114, + "name": "Jane Jones", + "site_detail_url": "https://comicvine.gamespot.com/jane-jones/4005-73114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73116/", + "id": 73116, + "name": "Malcolm Powder", + "site_detail_url": "https://comicvine.gamespot.com/malcolm-powder/4005-73116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73117/", + "id": 73117, + "name": "Rick Jones", + "site_detail_url": "https://comicvine.gamespot.com/rick-jones/4005-73117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73118/", + "id": 73118, + "name": "Dennis Hogan", + "site_detail_url": "https://comicvine.gamespot.com/dennis-hogan/4005-73118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73119/", + "id": 73119, + "name": "Dr. Curtis Moss", + "site_detail_url": "https://comicvine.gamespot.com/dr-curtis-moss/4005-73119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73122/", + "id": 73122, + "name": "Kaga", + "site_detail_url": "https://comicvine.gamespot.com/kaga/4005-73122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73123/", + "id": 73123, + "name": "Predator", + "site_detail_url": "https://comicvine.gamespot.com/predator/4005-73123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73124/", + "id": 73124, + "name": "Cadaver", + "site_detail_url": "https://comicvine.gamespot.com/cadaver/4005-73124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73131/", + "id": 73131, + "name": "Katherine Cross", + "site_detail_url": "https://comicvine.gamespot.com/katherine-cross/4005-73131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73132/", + "id": 73132, + "name": "Mary Wilkinson", + "site_detail_url": "https://comicvine.gamespot.com/mary-wilkinson/4005-73132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73175/", + "id": 73175, + "name": "Cannon Foot", + "site_detail_url": "https://comicvine.gamespot.com/cannon-foot/4005-73175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73177/", + "id": 73177, + "name": "Saw Fist", + "site_detail_url": "https://comicvine.gamespot.com/saw-fist/4005-73177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73178/", + "id": 73178, + "name": "Shadow Stalker", + "site_detail_url": "https://comicvine.gamespot.com/shadow-stalker/4005-73178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73179/", + "id": 73179, + "name": "Death", + "site_detail_url": "https://comicvine.gamespot.com/death/4005-73179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73180/", + "id": 73180, + "name": "Detlef Metzger", + "site_detail_url": "https://comicvine.gamespot.com/detlef-metzger/4005-73180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73181/", + "id": 73181, + "name": "Fire Knives", + "site_detail_url": "https://comicvine.gamespot.com/fire-knives/4005-73181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73182/", + "id": 73182, + "name": "Zero", + "site_detail_url": "https://comicvine.gamespot.com/zero/4005-73182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73218/", + "id": 73218, + "name": "Roberto Ramires", + "site_detail_url": "https://comicvine.gamespot.com/roberto-ramires/4005-73218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73219/", + "id": 73219, + "name": "Paulo Ramistas", + "site_detail_url": "https://comicvine.gamespot.com/paulo-ramistas/4005-73219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73266/", + "id": 73266, + "name": "Ralph Thompson", + "site_detail_url": "https://comicvine.gamespot.com/ralph-thompson/4005-73266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73267/", + "id": 73267, + "name": "Theodore Whirefoot", + "site_detail_url": "https://comicvine.gamespot.com/theodore-whirefoot/4005-73267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73268/", + "id": 73268, + "name": "Gabe Roberson", + "site_detail_url": "https://comicvine.gamespot.com/gabe-roberson/4005-73268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73269/", + "id": 73269, + "name": "Benicio Del Corazon", + "site_detail_url": "https://comicvine.gamespot.com/benicio-del-corazon/4005-73269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73271/", + "id": 73271, + "name": "Smitty McJameson", + "site_detail_url": "https://comicvine.gamespot.com/smitty-mcjameson/4005-73271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73272/", + "id": 73272, + "name": "Todd Matheson", + "site_detail_url": "https://comicvine.gamespot.com/todd-matheson/4005-73272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73348/", + "id": 73348, + "name": "Misery", + "site_detail_url": "https://comicvine.gamespot.com/misery/4005-73348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73388/", + "id": 73388, + "name": "Oya", + "site_detail_url": "https://comicvine.gamespot.com/oya/4005-73388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73392/", + "id": 73392, + "name": "The Superior", + "site_detail_url": "https://comicvine.gamespot.com/the-superior/4005-73392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73407/", + "id": 73407, + "name": "Jimmy Crawley", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-crawley/4005-73407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73408/", + "id": 73408, + "name": "Robert Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/robert-tanaka/4005-73408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73434/", + "id": 73434, + "name": "Argos", + "site_detail_url": "https://comicvine.gamespot.com/argos/4005-73434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73446/", + "id": 73446, + "name": "Kimora", + "site_detail_url": "https://comicvine.gamespot.com/kimora/4005-73446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73447/", + "id": 73447, + "name": "El Dragon", + "site_detail_url": "https://comicvine.gamespot.com/el-dragon/4005-73447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73451/", + "id": 73451, + "name": "Black Knight (Garrett)", + "site_detail_url": "https://comicvine.gamespot.com/black-knight-garrett/4005-73451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73452/", + "id": 73452, + "name": "Kate Kildare", + "site_detail_url": "https://comicvine.gamespot.com/kate-kildare/4005-73452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73453/", + "id": 73453, + "name": "Minh No Tranh", + "site_detail_url": "https://comicvine.gamespot.com/minh-no-tranh/4005-73453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73454/", + "id": 73454, + "name": "Infernal-Man", + "site_detail_url": "https://comicvine.gamespot.com/infernal-man/4005-73454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73456/", + "id": 73456, + "name": "Max Fury", + "site_detail_url": "https://comicvine.gamespot.com/max-fury/4005-73456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73458/", + "id": 73458, + "name": "Selach", + "site_detail_url": "https://comicvine.gamespot.com/selach/4005-73458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73468/", + "id": 73468, + "name": "Cheshire", + "site_detail_url": "https://comicvine.gamespot.com/cheshire/4005-73468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73476/", + "id": 73476, + "name": "Olvido", + "site_detail_url": "https://comicvine.gamespot.com/olvido/4005-73476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73482/", + "id": 73482, + "name": "Salvation One", + "site_detail_url": "https://comicvine.gamespot.com/salvation-one/4005-73482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73500/", + "id": 73500, + "name": "Dr. Eric Solvang", + "site_detail_url": "https://comicvine.gamespot.com/dr-eric-solvang/4005-73500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73501/", + "id": 73501, + "name": "Uthana Thoth", + "site_detail_url": "https://comicvine.gamespot.com/uthana-thoth/4005-73501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73502/", + "id": 73502, + "name": "Lord Thane", + "site_detail_url": "https://comicvine.gamespot.com/lord-thane/4005-73502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73516/", + "id": 73516, + "name": "Darkeyes", + "site_detail_url": "https://comicvine.gamespot.com/darkeyes/4005-73516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73517/", + "id": 73517, + "name": "Commander Blackhand", + "site_detail_url": "https://comicvine.gamespot.com/commander-blackhand/4005-73517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73523/", + "id": 73523, + "name": "Camellia", + "site_detail_url": "https://comicvine.gamespot.com/camellia/4005-73523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73524/", + "id": 73524, + "name": "Squire Gulo", + "site_detail_url": "https://comicvine.gamespot.com/squire-gulo/4005-73524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73525/", + "id": 73525, + "name": "Lady Shadra", + "site_detail_url": "https://comicvine.gamespot.com/lady-shadra/4005-73525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73526/", + "id": 73526, + "name": "Prosimia", + "site_detail_url": "https://comicvine.gamespot.com/prosimia/4005-73526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73528/", + "id": 73528, + "name": "Abbey Sykes", + "site_detail_url": "https://comicvine.gamespot.com/abbey-sykes/4005-73528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73538/", + "id": 73538, + "name": "Prince Pharoid", + "site_detail_url": "https://comicvine.gamespot.com/prince-pharoid/4005-73538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73539/", + "id": 73539, + "name": "Yuri Vassilyavitch Semyanov", + "site_detail_url": "https://comicvine.gamespot.com/yuri-vassilyavitch-semyanov/4005-73539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73575/", + "id": 73575, + "name": "Jian", + "site_detail_url": "https://comicvine.gamespot.com/jian/4005-73575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73586/", + "id": 73586, + "name": "Deacon", + "site_detail_url": "https://comicvine.gamespot.com/deacon/4005-73586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73587/", + "id": 73587, + "name": "Solitaire", + "site_detail_url": "https://comicvine.gamespot.com/solitaire/4005-73587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73588/", + "id": 73588, + "name": "Quelin", + "site_detail_url": "https://comicvine.gamespot.com/quelin/4005-73588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73589/", + "id": 73589, + "name": "Ambur", + "site_detail_url": "https://comicvine.gamespot.com/ambur/4005-73589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73593/", + "id": 73593, + "name": "Swiney-Girl", + "site_detail_url": "https://comicvine.gamespot.com/swiney-girl/4005-73593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73603/", + "id": 73603, + "name": "Green Gobbler", + "site_detail_url": "https://comicvine.gamespot.com/green-gobbler/4005-73603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73604/", + "id": 73604, + "name": "Crayfin", + "site_detail_url": "https://comicvine.gamespot.com/crayfin/4005-73604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73611/", + "id": 73611, + "name": "Bombshell", + "site_detail_url": "https://comicvine.gamespot.com/bombshell/4005-73611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73631/", + "id": 73631, + "name": "Mysteriape", + "site_detail_url": "https://comicvine.gamespot.com/mysteriape/4005-73631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73642/", + "id": 73642, + "name": "Karista", + "site_detail_url": "https://comicvine.gamespot.com/karista/4005-73642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73680/", + "id": 73680, + "name": "George Hill", + "site_detail_url": "https://comicvine.gamespot.com/george-hill/4005-73680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73687/", + "id": 73687, + "name": "El Vejigante", + "site_detail_url": "https://comicvine.gamespot.com/el-vejigante/4005-73687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73699/", + "id": 73699, + "name": "Pirouette", + "site_detail_url": "https://comicvine.gamespot.com/pirouette/4005-73699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73700/", + "id": 73700, + "name": "Headcase", + "site_detail_url": "https://comicvine.gamespot.com/headcase/4005-73700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73701/", + "id": 73701, + "name": "Impact", + "site_detail_url": "https://comicvine.gamespot.com/impact/4005-73701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73702/", + "id": 73702, + "name": "Heather Noble", + "site_detail_url": "https://comicvine.gamespot.com/heather-noble/4005-73702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73712/", + "id": 73712, + "name": "Achak", + "site_detail_url": "https://comicvine.gamespot.com/achak/4005-73712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73713/", + "id": 73713, + "name": "Damen Kilgallen", + "site_detail_url": "https://comicvine.gamespot.com/damen-kilgallen/4005-73713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73714/", + "id": 73714, + "name": "Ivory", + "site_detail_url": "https://comicvine.gamespot.com/ivory/4005-73714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73716/", + "id": 73716, + "name": "Leo Zimm", + "site_detail_url": "https://comicvine.gamespot.com/leo-zimm/4005-73716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73717/", + "id": 73717, + "name": "Marv Colan", + "site_detail_url": "https://comicvine.gamespot.com/marv-colan/4005-73717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73718/", + "id": 73718, + "name": "Mato", + "site_detail_url": "https://comicvine.gamespot.com/mato/4005-73718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73719/", + "id": 73719, + "name": "Sheba Sugarfang", + "site_detail_url": "https://comicvine.gamespot.com/sheba-sugarfang/4005-73719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73720/", + "id": 73720, + "name": "War (Furius)", + "site_detail_url": "https://comicvine.gamespot.com/war-furius/4005-73720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73725/", + "id": 73725, + "name": "Vaipala Rani", + "site_detail_url": "https://comicvine.gamespot.com/vaipala-rani/4005-73725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73760/", + "id": 73760, + "name": "Colonel Watts", + "site_detail_url": "https://comicvine.gamespot.com/colonel-watts/4005-73760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73762/", + "id": 73762, + "name": "Lieutenant Keyes", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-keyes/4005-73762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73772/", + "id": 73772, + "name": "Star Child", + "site_detail_url": "https://comicvine.gamespot.com/star-child/4005-73772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73778/", + "id": 73778, + "name": "Goddess", + "site_detail_url": "https://comicvine.gamespot.com/goddess/4005-73778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73858/", + "id": 73858, + "name": "Captain James Cutter", + "site_detail_url": "https://comicvine.gamespot.com/captain-james-cutter/4005-73858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73878/", + "id": 73878, + "name": "Preston Cole", + "site_detail_url": "https://comicvine.gamespot.com/preston-cole/4005-73878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73881/", + "id": 73881, + "name": "Spider-Ham 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-2099/4005-73881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73885/", + "id": 73885, + "name": "Don of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/don-of-the-dead/4005-73885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73890/", + "id": 73890, + "name": "Green Goblin Construct", + "site_detail_url": "https://comicvine.gamespot.com/green-goblin-construct/4005-73890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73892/", + "id": 73892, + "name": "Lydia Hardy", + "site_detail_url": "https://comicvine.gamespot.com/lydia-hardy/4005-73892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73916/", + "id": 73916, + "name": "White Spider", + "site_detail_url": "https://comicvine.gamespot.com/white-spider/4005-73916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73921/", + "id": 73921, + "name": "Smith", + "site_detail_url": "https://comicvine.gamespot.com/smith/4005-73921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73940/", + "id": 73940, + "name": "Jürgen Tiebold", + "site_detail_url": "https://comicvine.gamespot.com/jurgen-tiebold/4005-73940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73941/", + "id": 73941, + "name": "Mustang", + "site_detail_url": "https://comicvine.gamespot.com/mustang/4005-73941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73944/", + "id": 73944, + "name": "Arwell", + "site_detail_url": "https://comicvine.gamespot.com/arwell/4005-73944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73946/", + "id": 73946, + "name": "Mercedes Merced", + "site_detail_url": "https://comicvine.gamespot.com/mercedes-merced/4005-73946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73948/", + "id": 73948, + "name": "Wolverine Demon", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-demon/4005-73948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73949/", + "id": 73949, + "name": "Luna dePaula", + "site_detail_url": "https://comicvine.gamespot.com/luna-depaula/4005-73949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73959/", + "id": 73959, + "name": "Mei-Ling Lao", + "site_detail_url": "https://comicvine.gamespot.com/mei-ling-lao/4005-73959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73964/", + "id": 73964, + "name": "Skip Westcott", + "site_detail_url": "https://comicvine.gamespot.com/skip-westcott/4005-73964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73969/", + "id": 73969, + "name": "Helmut", + "site_detail_url": "https://comicvine.gamespot.com/helmut/4005-73969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73970/", + "id": 73970, + "name": "Samuel Mbende", + "site_detail_url": "https://comicvine.gamespot.com/samuel-mbende/4005-73970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-73977/", + "id": 73977, + "name": "Moon Maid", + "site_detail_url": "https://comicvine.gamespot.com/moon-maid/4005-73977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74010/", + "id": 74010, + "name": "Mr Lawson", + "site_detail_url": "https://comicvine.gamespot.com/mr-lawson/4005-74010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74014/", + "id": 74014, + "name": "Jesus Badalemente", + "site_detail_url": "https://comicvine.gamespot.com/jesus-badalemente/4005-74014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74027/", + "id": 74027, + "name": "Ballistique", + "site_detail_url": "https://comicvine.gamespot.com/ballistique/4005-74027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74028/", + "id": 74028, + "name": "Detective Flint", + "site_detail_url": "https://comicvine.gamespot.com/detective-flint/4005-74028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74030/", + "id": 74030, + "name": "Linda", + "site_detail_url": "https://comicvine.gamespot.com/linda/4005-74030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74031/", + "id": 74031, + "name": "Mr. Edgerton", + "site_detail_url": "https://comicvine.gamespot.com/mr-edgerton/4005-74031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74035/", + "id": 74035, + "name": "Scab", + "site_detail_url": "https://comicvine.gamespot.com/scab/4005-74035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74038/", + "id": 74038, + "name": "Agent 33", + "site_detail_url": "https://comicvine.gamespot.com/agent-33/4005-74038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74071/", + "id": 74071, + "name": "X", + "site_detail_url": "https://comicvine.gamespot.com/x/4005-74071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74072/", + "id": 74072, + "name": "Mystic", + "site_detail_url": "https://comicvine.gamespot.com/mystic/4005-74072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74073/", + "id": 74073, + "name": "Warrior", + "site_detail_url": "https://comicvine.gamespot.com/warrior/4005-74073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74074/", + "id": 74074, + "name": "Armour", + "site_detail_url": "https://comicvine.gamespot.com/armour/4005-74074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74089/", + "id": 74089, + "name": "Igor", + "site_detail_url": "https://comicvine.gamespot.com/igor/4005-74089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74090/", + "id": 74090, + "name": "Nanny", + "site_detail_url": "https://comicvine.gamespot.com/nanny/4005-74090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74094/", + "id": 74094, + "name": "Vulx", + "site_detail_url": "https://comicvine.gamespot.com/vulx/4005-74094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74095/", + "id": 74095, + "name": "Golden One", + "site_detail_url": "https://comicvine.gamespot.com/golden-one/4005-74095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74096/", + "id": 74096, + "name": "Chernobyl", + "site_detail_url": "https://comicvine.gamespot.com/chernobyl/4005-74096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74098/", + "id": 74098, + "name": "Atlez", + "site_detail_url": "https://comicvine.gamespot.com/atlez/4005-74098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74100/", + "id": 74100, + "name": "Mynx", + "site_detail_url": "https://comicvine.gamespot.com/mynx/4005-74100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74118/", + "id": 74118, + "name": "Royal Blue", + "site_detail_url": "https://comicvine.gamespot.com/royal-blue/4005-74118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74119/", + "id": 74119, + "name": "Firebrick", + "site_detail_url": "https://comicvine.gamespot.com/firebrick/4005-74119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74134/", + "id": 74134, + "name": "Toko", + "site_detail_url": "https://comicvine.gamespot.com/toko/4005-74134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74142/", + "id": 74142, + "name": "Brigand", + "site_detail_url": "https://comicvine.gamespot.com/brigand/4005-74142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74151/", + "id": 74151, + "name": "Tamara", + "site_detail_url": "https://comicvine.gamespot.com/tamara/4005-74151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74152/", + "id": 74152, + "name": "Vincent", + "site_detail_url": "https://comicvine.gamespot.com/vincent/4005-74152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74164/", + "id": 74164, + "name": "Solomon Negus", + "site_detail_url": "https://comicvine.gamespot.com/solomon-negus/4005-74164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74176/", + "id": 74176, + "name": "Primal", + "site_detail_url": "https://comicvine.gamespot.com/primal/4005-74176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74190/", + "id": 74190, + "name": "Hobgoblin 2211", + "site_detail_url": "https://comicvine.gamespot.com/hobgoblin-2211/4005-74190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74197/", + "id": 74197, + "name": "Tyler Paxton", + "site_detail_url": "https://comicvine.gamespot.com/tyler-paxton/4005-74197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74204/", + "id": 74204, + "name": "Lori Baumgartner", + "site_detail_url": "https://comicvine.gamespot.com/lori-baumgartner/4005-74204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74205/", + "id": 74205, + "name": "Tex Taylor", + "site_detail_url": "https://comicvine.gamespot.com/tex-taylor/4005-74205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74207/", + "id": 74207, + "name": "Beverly Lacoco", + "site_detail_url": "https://comicvine.gamespot.com/beverly-lacoco/4005-74207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74224/", + "id": 74224, + "name": "Earthworm Jim", + "site_detail_url": "https://comicvine.gamespot.com/earthworm-jim/4005-74224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74301/", + "id": 74301, + "name": "Stanley Osborn", + "site_detail_url": "https://comicvine.gamespot.com/stanley-osborn/4005-74301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74321/", + "id": 74321, + "name": "Diamond", + "site_detail_url": "https://comicvine.gamespot.com/diamond/4005-74321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74322/", + "id": 74322, + "name": "Roboduck", + "site_detail_url": "https://comicvine.gamespot.com/roboduck/4005-74322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74326/", + "id": 74326, + "name": "Knockabout", + "site_detail_url": "https://comicvine.gamespot.com/knockabout/4005-74326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74327/", + "id": 74327, + "name": "Violence", + "site_detail_url": "https://comicvine.gamespot.com/violence/4005-74327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74334/", + "id": 74334, + "name": "Hecatomb", + "site_detail_url": "https://comicvine.gamespot.com/hecatomb/4005-74334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74342/", + "id": 74342, + "name": "Jason Halloway", + "site_detail_url": "https://comicvine.gamespot.com/jason-halloway/4005-74342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74343/", + "id": 74343, + "name": "Inorganic Technotroid", + "site_detail_url": "https://comicvine.gamespot.com/inorganic-technotroid/4005-74343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74350/", + "id": 74350, + "name": "Lord Montgomery Falsworth", + "site_detail_url": "https://comicvine.gamespot.com/lord-montgomery-falsworth/4005-74350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74351/", + "id": 74351, + "name": "Brian Falsworth", + "site_detail_url": "https://comicvine.gamespot.com/brian-falsworth/4005-74351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74356/", + "id": 74356, + "name": "Glory", + "site_detail_url": "https://comicvine.gamespot.com/glory/4005-74356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74373/", + "id": 74373, + "name": "Jihad", + "site_detail_url": "https://comicvine.gamespot.com/jihad/4005-74373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74384/", + "id": 74384, + "name": "Elizabeth Braddock Sr.", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-braddock-sr/4005-74384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74397/", + "id": 74397, + "name": "Gazelle", + "site_detail_url": "https://comicvine.gamespot.com/gazelle/4005-74397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74399/", + "id": 74399, + "name": "Flyer", + "site_detail_url": "https://comicvine.gamespot.com/flyer/4005-74399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74419/", + "id": 74419, + "name": "Max Modell", + "site_detail_url": "https://comicvine.gamespot.com/max-modell/4005-74419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74459/", + "id": 74459, + "name": "Bonnie Bliss", + "site_detail_url": "https://comicvine.gamespot.com/bonnie-bliss/4005-74459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74479/", + "id": 74479, + "name": "Executioner", + "site_detail_url": "https://comicvine.gamespot.com/executioner/4005-74479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74491/", + "id": 74491, + "name": "Montana Gold", + "site_detail_url": "https://comicvine.gamespot.com/montana-gold/4005-74491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74492/", + "id": 74492, + "name": "Talia Zamora", + "site_detail_url": "https://comicvine.gamespot.com/talia-zamora/4005-74492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74493/", + "id": 74493, + "name": "Miller Hallendale", + "site_detail_url": "https://comicvine.gamespot.com/miller-hallendale/4005-74493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74515/", + "id": 74515, + "name": "Face", + "site_detail_url": "https://comicvine.gamespot.com/face/4005-74515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74516/", + "id": 74516, + "name": "Piedra Dura", + "site_detail_url": "https://comicvine.gamespot.com/piedra-dura/4005-74516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74517/", + "id": 74517, + "name": "Shauna", + "site_detail_url": "https://comicvine.gamespot.com/shauna/4005-74517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74519/", + "id": 74519, + "name": "Thrann", + "site_detail_url": "https://comicvine.gamespot.com/thrann/4005-74519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74521/", + "id": 74521, + "name": "Iroxx", + "site_detail_url": "https://comicvine.gamespot.com/iroxx/4005-74521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74522/", + "id": 74522, + "name": "Dark One", + "site_detail_url": "https://comicvine.gamespot.com/dark-one/4005-74522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74523/", + "id": 74523, + "name": "Siri Ullall", + "site_detail_url": "https://comicvine.gamespot.com/siri-ullall/4005-74523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74530/", + "id": 74530, + "name": "Omega", + "site_detail_url": "https://comicvine.gamespot.com/omega/4005-74530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74554/", + "id": 74554, + "name": "Ai Apaec", + "site_detail_url": "https://comicvine.gamespot.com/ai-apaec/4005-74554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74558/", + "id": 74558, + "name": "Toxic Doxie", + "site_detail_url": "https://comicvine.gamespot.com/toxic-doxie/4005-74558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74562/", + "id": 74562, + "name": "Buried Alien", + "site_detail_url": "https://comicvine.gamespot.com/buried-alien/4005-74562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74569/", + "id": 74569, + "name": "Redshirt, the Über Henchman", + "site_detail_url": "https://comicvine.gamespot.com/redshirt-the-uber-henchman/4005-74569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74590/", + "id": 74590, + "name": "Death (Javeed)", + "site_detail_url": "https://comicvine.gamespot.com/death-javeed/4005-74590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74591/", + "id": 74591, + "name": "Famine (Lee)", + "site_detail_url": "https://comicvine.gamespot.com/famine-lee/4005-74591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74592/", + "id": 74592, + "name": "Pestilence (Ichisumi)", + "site_detail_url": "https://comicvine.gamespot.com/pestilence-ichisumi/4005-74592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74594/", + "id": 74594, + "name": "Trista", + "site_detail_url": "https://comicvine.gamespot.com/trista/4005-74594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74595/", + "id": 74595, + "name": "Alex", + "site_detail_url": "https://comicvine.gamespot.com/alex/4005-74595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74596/", + "id": 74596, + "name": "Bob", + "site_detail_url": "https://comicvine.gamespot.com/bob/4005-74596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74601/", + "id": 74601, + "name": "Logomancer", + "site_detail_url": "https://comicvine.gamespot.com/logomancer/4005-74601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74602/", + "id": 74602, + "name": "Uatu Jackson", + "site_detail_url": "https://comicvine.gamespot.com/uatu-jackson/4005-74602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74603/", + "id": 74603, + "name": "Bella Fishbach", + "site_detail_url": "https://comicvine.gamespot.com/bella-fishbach/4005-74603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74614/", + "id": 74614, + "name": "Nightingale 51", + "site_detail_url": "https://comicvine.gamespot.com/nightingale-51/4005-74614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74630/", + "id": 74630, + "name": "Xirdal", + "site_detail_url": "https://comicvine.gamespot.com/xirdal/4005-74630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74635/", + "id": 74635, + "name": "Fatale", + "site_detail_url": "https://comicvine.gamespot.com/fatale/4005-74635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74637/", + "id": 74637, + "name": "Brank", + "site_detail_url": "https://comicvine.gamespot.com/brank/4005-74637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74639/", + "id": 74639, + "name": "Kingii", + "site_detail_url": "https://comicvine.gamespot.com/kingii/4005-74639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74688/", + "id": 74688, + "name": "Grigori", + "site_detail_url": "https://comicvine.gamespot.com/grigori/4005-74688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74697/", + "id": 74697, + "name": "Volk", + "site_detail_url": "https://comicvine.gamespot.com/volk/4005-74697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74698/", + "id": 74698, + "name": "Tyrus Krill", + "site_detail_url": "https://comicvine.gamespot.com/tyrus-krill/4005-74698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74709/", + "id": 74709, + "name": "Contagion", + "site_detail_url": "https://comicvine.gamespot.com/contagion/4005-74709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74736/", + "id": 74736, + "name": "Shogun", + "site_detail_url": "https://comicvine.gamespot.com/shogun/4005-74736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74745/", + "id": 74745, + "name": "Nedda", + "site_detail_url": "https://comicvine.gamespot.com/nedda/4005-74745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74764/", + "id": 74764, + "name": "Mr. Abbott", + "site_detail_url": "https://comicvine.gamespot.com/mr-abbott/4005-74764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74765/", + "id": 74765, + "name": "Mrs. Abbott", + "site_detail_url": "https://comicvine.gamespot.com/mrs-abbott/4005-74765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74783/", + "id": 74783, + "name": "Prince Tristan", + "site_detail_url": "https://comicvine.gamespot.com/prince-tristan/4005-74783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74804/", + "id": 74804, + "name": "Vampire X", + "site_detail_url": "https://comicvine.gamespot.com/vampire-x/4005-74804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74815/", + "id": 74815, + "name": "Mirage", + "site_detail_url": "https://comicvine.gamespot.com/mirage/4005-74815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74816/", + "id": 74816, + "name": "Bowman", + "site_detail_url": "https://comicvine.gamespot.com/bowman/4005-74816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74817/", + "id": 74817, + "name": "Hammer", + "site_detail_url": "https://comicvine.gamespot.com/hammer/4005-74817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74819/", + "id": 74819, + "name": "Steel Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/steel-vengeance/4005-74819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74821/", + "id": 74821, + "name": "Tactical Force", + "site_detail_url": "https://comicvine.gamespot.com/tactical-force/4005-74821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74822/", + "id": 74822, + "name": "Militant", + "site_detail_url": "https://comicvine.gamespot.com/militant/4005-74822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74849/", + "id": 74849, + "name": "General Fortean", + "site_detail_url": "https://comicvine.gamespot.com/general-fortean/4005-74849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74857/", + "id": 74857, + "name": "Angus", + "site_detail_url": "https://comicvine.gamespot.com/angus/4005-74857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74858/", + "id": 74858, + "name": "Apocalypse Robot", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse-robot/4005-74858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74859/", + "id": 74859, + "name": "Sahreed", + "site_detail_url": "https://comicvine.gamespot.com/sahreed/4005-74859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74860/", + "id": 74860, + "name": "Scarab", + "site_detail_url": "https://comicvine.gamespot.com/scarab/4005-74860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74915/", + "id": 74915, + "name": "Bean", + "site_detail_url": "https://comicvine.gamespot.com/bean/4005-74915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74937/", + "id": 74937, + "name": "Sanjit Shaara", + "site_detail_url": "https://comicvine.gamespot.com/sanjit-shaara/4005-74937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74943/", + "id": 74943, + "name": "Becca Steinhardt", + "site_detail_url": "https://comicvine.gamespot.com/becca-steinhardt/4005-74943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74954/", + "id": 74954, + "name": "Vlad the Impaler", + "site_detail_url": "https://comicvine.gamespot.com/vlad-the-impaler/4005-74954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74967/", + "id": 74967, + "name": "Larry Kirkland", + "site_detail_url": "https://comicvine.gamespot.com/larry-kirkland/4005-74967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74970/", + "id": 74970, + "name": "Czar", + "site_detail_url": "https://comicvine.gamespot.com/czar/4005-74970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74971/", + "id": 74971, + "name": "Big Murder", + "site_detail_url": "https://comicvine.gamespot.com/big-murder/4005-74971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74987/", + "id": 74987, + "name": "Marvin Ellwood", + "site_detail_url": "https://comicvine.gamespot.com/marvin-ellwood/4005-74987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74988/", + "id": 74988, + "name": "Ceres", + "site_detail_url": "https://comicvine.gamespot.com/ceres/4005-74988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74989/", + "id": 74989, + "name": "Everett Colvin", + "site_detail_url": "https://comicvine.gamespot.com/everett-colvin/4005-74989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74990/", + "id": 74990, + "name": "Dr. Matsuzaki", + "site_detail_url": "https://comicvine.gamespot.com/dr-matsuzaki/4005-74990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74991/", + "id": 74991, + "name": "Geza", + "site_detail_url": "https://comicvine.gamespot.com/geza/4005-74991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74992/", + "id": 74992, + "name": "Maw", + "site_detail_url": "https://comicvine.gamespot.com/maw/4005-74992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74993/", + "id": 74993, + "name": "Russell", + "site_detail_url": "https://comicvine.gamespot.com/russell/4005-74993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74995/", + "id": 74995, + "name": "Svetlana Krol", + "site_detail_url": "https://comicvine.gamespot.com/svetlana-krol/4005-74995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-74996/", + "id": 74996, + "name": "Timothy", + "site_detail_url": "https://comicvine.gamespot.com/timothy/4005-74996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75002/", + "id": 75002, + "name": "Alex Kurtz", + "site_detail_url": "https://comicvine.gamespot.com/alex-kurtz/4005-75002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75016/", + "id": 75016, + "name": "Gruenhilda", + "site_detail_url": "https://comicvine.gamespot.com/gruenhilda/4005-75016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75024/", + "id": 75024, + "name": "Cell", + "site_detail_url": "https://comicvine.gamespot.com/cell/4005-75024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75043/", + "id": 75043, + "name": "Trader", + "site_detail_url": "https://comicvine.gamespot.com/trader/4005-75043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75047/", + "id": 75047, + "name": "Caiman", + "site_detail_url": "https://comicvine.gamespot.com/caiman/4005-75047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75048/", + "id": 75048, + "name": "Glamour", + "site_detail_url": "https://comicvine.gamespot.com/glamour/4005-75048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75049/", + "id": 75049, + "name": "Lightning Rod", + "site_detail_url": "https://comicvine.gamespot.com/lightning-rod/4005-75049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75050/", + "id": 75050, + "name": "Toad-In-Waiting", + "site_detail_url": "https://comicvine.gamespot.com/toad-in-waiting/4005-75050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75081/", + "id": 75081, + "name": "Loca", + "site_detail_url": "https://comicvine.gamespot.com/loca/4005-75081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75105/", + "id": 75105, + "name": "Gin Goh", + "site_detail_url": "https://comicvine.gamespot.com/gin-goh/4005-75105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75106/", + "id": 75106, + "name": "Boom Boom Brown", + "site_detail_url": "https://comicvine.gamespot.com/boom-boom-brown/4005-75106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75118/", + "id": 75118, + "name": "Rocky Flint", + "site_detail_url": "https://comicvine.gamespot.com/rocky-flint/4005-75118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75124/", + "id": 75124, + "name": "Arachnoman", + "site_detail_url": "https://comicvine.gamespot.com/arachnoman/4005-75124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75125/", + "id": 75125, + "name": "Leon Matheson", + "site_detail_url": "https://comicvine.gamespot.com/leon-matheson/4005-75125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75127/", + "id": 75127, + "name": "Uravo", + "site_detail_url": "https://comicvine.gamespot.com/uravo/4005-75127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75129/", + "id": 75129, + "name": "Alaka'i Ryan", + "site_detail_url": "https://comicvine.gamespot.com/alakai-ryan/4005-75129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75130/", + "id": 75130, + "name": "Alice Ryan", + "site_detail_url": "https://comicvine.gamespot.com/alice-ryan/4005-75130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75131/", + "id": 75131, + "name": "Great White", + "site_detail_url": "https://comicvine.gamespot.com/great-white/4005-75131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75135/", + "id": 75135, + "name": "Daiea", + "site_detail_url": "https://comicvine.gamespot.com/daiea/4005-75135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75136/", + "id": 75136, + "name": "Jordahl", + "site_detail_url": "https://comicvine.gamespot.com/jordahl/4005-75136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75137/", + "id": 75137, + "name": "Mistress Kya", + "site_detail_url": "https://comicvine.gamespot.com/mistress-kya/4005-75137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75138/", + "id": 75138, + "name": "Yarsyg", + "site_detail_url": "https://comicvine.gamespot.com/yarsyg/4005-75138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75165/", + "id": 75165, + "name": "Yruku", + "site_detail_url": "https://comicvine.gamespot.com/yruku/4005-75165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75167/", + "id": 75167, + "name": "Cameron Bryce-Jones", + "site_detail_url": "https://comicvine.gamespot.com/cameron-bryce-jones/4005-75167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75168/", + "id": 75168, + "name": "Brooks Bryce-Jones", + "site_detail_url": "https://comicvine.gamespot.com/brooks-bryce-jones/4005-75168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75170/", + "id": 75170, + "name": "Colin Brewster", + "site_detail_url": "https://comicvine.gamespot.com/colin-brewster/4005-75170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75171/", + "id": 75171, + "name": "Mr. Woodhill", + "site_detail_url": "https://comicvine.gamespot.com/mr-woodhill/4005-75171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75215/", + "id": 75215, + "name": "Hunter Stein", + "site_detail_url": "https://comicvine.gamespot.com/hunter-stein/4005-75215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75218/", + "id": 75218, + "name": "Lanie", + "site_detail_url": "https://comicvine.gamespot.com/lanie/4005-75218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75257/", + "id": 75257, + "name": "Eliza Robbins", + "site_detail_url": "https://comicvine.gamespot.com/eliza-robbins/4005-75257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75258/", + "id": 75258, + "name": "Amelia Hopkins", + "site_detail_url": "https://comicvine.gamespot.com/amelia-hopkins/4005-75258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75314/", + "id": 75314, + "name": "Ikon", + "site_detail_url": "https://comicvine.gamespot.com/ikon/4005-75314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75338/", + "id": 75338, + "name": "Skald", + "site_detail_url": "https://comicvine.gamespot.com/skald/4005-75338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75339/", + "id": 75339, + "name": "Einar", + "site_detail_url": "https://comicvine.gamespot.com/einar/4005-75339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75352/", + "id": 75352, + "name": "Ms. Fantastix", + "site_detail_url": "https://comicvine.gamespot.com/ms-fantastix/4005-75352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75355/", + "id": 75355, + "name": "Assassin", + "site_detail_url": "https://comicvine.gamespot.com/assassin/4005-75355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75356/", + "id": 75356, + "name": "Pauline Stratton", + "site_detail_url": "https://comicvine.gamespot.com/pauline-stratton/4005-75356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75357/", + "id": 75357, + "name": "Renee Fuanaro", + "site_detail_url": "https://comicvine.gamespot.com/renee-fuanaro/4005-75357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75419/", + "id": 75419, + "name": "Rito Revolto", + "site_detail_url": "https://comicvine.gamespot.com/rito-revolto/4005-75419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75420/", + "id": 75420, + "name": "Mordant", + "site_detail_url": "https://comicvine.gamespot.com/mordant/4005-75420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75450/", + "id": 75450, + "name": "Candace Calder", + "site_detail_url": "https://comicvine.gamespot.com/candace-calder/4005-75450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75451/", + "id": 75451, + "name": "Rosslyn", + "site_detail_url": "https://comicvine.gamespot.com/rosslyn/4005-75451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75452/", + "id": 75452, + "name": "Aleister Ravenna", + "site_detail_url": "https://comicvine.gamespot.com/aleister-ravenna/4005-75452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75461/", + "id": 75461, + "name": "Sliver", + "site_detail_url": "https://comicvine.gamespot.com/sliver/4005-75461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75487/", + "id": 75487, + "name": "The Spiderman", + "site_detail_url": "https://comicvine.gamespot.com/the-spiderman/4005-75487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75489/", + "id": 75489, + "name": "Fex", + "site_detail_url": "https://comicvine.gamespot.com/fex/4005-75489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75490/", + "id": 75490, + "name": "Tier", + "site_detail_url": "https://comicvine.gamespot.com/tier/4005-75490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75535/", + "id": 75535, + "name": "Ginny Stark", + "site_detail_url": "https://comicvine.gamespot.com/ginny-stark/4005-75535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75576/", + "id": 75576, + "name": "Howard Anthony Stark II", + "site_detail_url": "https://comicvine.gamespot.com/howard-anthony-stark-ii/4005-75576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75577/", + "id": 75577, + "name": "Nimrod", + "site_detail_url": "https://comicvine.gamespot.com/nimrod/4005-75577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75611/", + "id": 75611, + "name": "Mutagen", + "site_detail_url": "https://comicvine.gamespot.com/mutagen/4005-75611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75642/", + "id": 75642, + "name": "Cassandra Michaels", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-michaels/4005-75642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75667/", + "id": 75667, + "name": "Xeniac", + "site_detail_url": "https://comicvine.gamespot.com/xeniac/4005-75667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75681/", + "id": 75681, + "name": "Sweep-Zweak", + "site_detail_url": "https://comicvine.gamespot.com/sweep-zweak/4005-75681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75683/", + "id": 75683, + "name": "Mr. Oliver", + "site_detail_url": "https://comicvine.gamespot.com/mr-oliver/4005-75683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75690/", + "id": 75690, + "name": "Captain Cymell", + "site_detail_url": "https://comicvine.gamespot.com/captain-cymell/4005-75690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75700/", + "id": 75700, + "name": "Black Widow (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-clone/4005-75700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75702/", + "id": 75702, + "name": "Kendra", + "site_detail_url": "https://comicvine.gamespot.com/kendra/4005-75702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75703/", + "id": 75703, + "name": "Queen Gedren", + "site_detail_url": "https://comicvine.gamespot.com/queen-gedren/4005-75703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75704/", + "id": 75704, + "name": "Lord Kalidor", + "site_detail_url": "https://comicvine.gamespot.com/lord-kalidor/4005-75704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75705/", + "id": 75705, + "name": "Prince Tarn", + "site_detail_url": "https://comicvine.gamespot.com/prince-tarn/4005-75705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75710/", + "id": 75710, + "name": "Assault", + "site_detail_url": "https://comicvine.gamespot.com/assault/4005-75710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75711/", + "id": 75711, + "name": "Diamond Hammer", + "site_detail_url": "https://comicvine.gamespot.com/diamond-hammer/4005-75711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75712/", + "id": 75712, + "name": "Makina", + "site_detail_url": "https://comicvine.gamespot.com/makina/4005-75712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75713/", + "id": 75713, + "name": "Hardnose", + "site_detail_url": "https://comicvine.gamespot.com/hardnose/4005-75713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75714/", + "id": 75714, + "name": "Hyperia", + "site_detail_url": "https://comicvine.gamespot.com/hyperia/4005-75714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75715/", + "id": 75715, + "name": "Blazeye", + "site_detail_url": "https://comicvine.gamespot.com/blazeye/4005-75715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75736/", + "id": 75736, + "name": "Nagenda", + "site_detail_url": "https://comicvine.gamespot.com/nagenda/4005-75736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75737/", + "id": 75737, + "name": "Musere", + "site_detail_url": "https://comicvine.gamespot.com/musere/4005-75737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75765/", + "id": 75765, + "name": "Wee One", + "site_detail_url": "https://comicvine.gamespot.com/wee-one/4005-75765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75766/", + "id": 75766, + "name": "Boulder", + "site_detail_url": "https://comicvine.gamespot.com/boulder/4005-75766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75779/", + "id": 75779, + "name": "M.O.D.O.K. 2.0", + "site_detail_url": "https://comicvine.gamespot.com/m-o-d-o-k-2-0/4005-75779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75790/", + "id": 75790, + "name": "The Phantom", + "site_detail_url": "https://comicvine.gamespot.com/the-phantom/4005-75790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75810/", + "id": 75810, + "name": "Adina Malcolm", + "site_detail_url": "https://comicvine.gamespot.com/adina-malcolm/4005-75810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75848/", + "id": 75848, + "name": "Omegex", + "site_detail_url": "https://comicvine.gamespot.com/omegex/4005-75848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-75961/", + "id": 75961, + "name": "Pagliacci", + "site_detail_url": "https://comicvine.gamespot.com/pagliacci/4005-75961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76008/", + "id": 76008, + "name": "Lord Maur-Kon", + "site_detail_url": "https://comicvine.gamespot.com/lord-maur-kon/4005-76008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76018/", + "id": 76018, + "name": "Katherine Glover", + "site_detail_url": "https://comicvine.gamespot.com/katherine-glover/4005-76018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76064/", + "id": 76064, + "name": "Vandella", + "site_detail_url": "https://comicvine.gamespot.com/vandella/4005-76064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76067/", + "id": 76067, + "name": "Cherlindrea", + "site_detail_url": "https://comicvine.gamespot.com/cherlindrea/4005-76067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76069/", + "id": 76069, + "name": "Princess Sorsha", + "site_detail_url": "https://comicvine.gamespot.com/princess-sorsha/4005-76069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76071/", + "id": 76071, + "name": "Shawna Tyron", + "site_detail_url": "https://comicvine.gamespot.com/shawna-tyron/4005-76071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76072/", + "id": 76072, + "name": "Fly-Girl", + "site_detail_url": "https://comicvine.gamespot.com/fly-girl/4005-76072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76094/", + "id": 76094, + "name": "Arda Ulhaf", + "site_detail_url": "https://comicvine.gamespot.com/arda-ulhaf/4005-76094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76096/", + "id": 76096, + "name": "Carlos Ayala", + "site_detail_url": "https://comicvine.gamespot.com/carlos-ayala/4005-76096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76098/", + "id": 76098, + "name": "Jenny Monroe", + "site_detail_url": "https://comicvine.gamespot.com/jenny-monroe/4005-76098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76099/", + "id": 76099, + "name": "Lynn Richards", + "site_detail_url": "https://comicvine.gamespot.com/lynn-richards/4005-76099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76100/", + "id": 76100, + "name": "Malcolm Monroe", + "site_detail_url": "https://comicvine.gamespot.com/malcolm-monroe/4005-76100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76102/", + "id": 76102, + "name": "Red Webo", + "site_detail_url": "https://comicvine.gamespot.com/red-webo/4005-76102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76103/", + "id": 76103, + "name": "Robert Martin", + "site_detail_url": "https://comicvine.gamespot.com/robert-martin/4005-76103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76104/", + "id": 76104, + "name": "Sandra Murphy", + "site_detail_url": "https://comicvine.gamespot.com/sandra-murphy/4005-76104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76105/", + "id": 76105, + "name": "Bryan Cole", + "site_detail_url": "https://comicvine.gamespot.com/bryan-cole/4005-76105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76110/", + "id": 76110, + "name": "Locus", + "site_detail_url": "https://comicvine.gamespot.com/locus/4005-76110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76118/", + "id": 76118, + "name": "Bugeye", + "site_detail_url": "https://comicvine.gamespot.com/bugeye/4005-76118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76124/", + "id": 76124, + "name": "Nigel Pigman", + "site_detail_url": "https://comicvine.gamespot.com/nigel-pigman/4005-76124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76131/", + "id": 76131, + "name": "Alfred Queely", + "site_detail_url": "https://comicvine.gamespot.com/alfred-queely/4005-76131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76132/", + "id": 76132, + "name": "Silas Mourner", + "site_detail_url": "https://comicvine.gamespot.com/silas-mourner/4005-76132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76185/", + "id": 76185, + "name": "Khalis-Wu", + "site_detail_url": "https://comicvine.gamespot.com/khalis-wu/4005-76185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76192/", + "id": 76192, + "name": "Mister Glitch", + "site_detail_url": "https://comicvine.gamespot.com/mister-glitch/4005-76192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76193/", + "id": 76193, + "name": "Tector", + "site_detail_url": "https://comicvine.gamespot.com/tector/4005-76193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76201/", + "id": 76201, + "name": "High Technician", + "site_detail_url": "https://comicvine.gamespot.com/high-technician/4005-76201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76217/", + "id": 76217, + "name": "Dr. Kitty Kitagowa", + "site_detail_url": "https://comicvine.gamespot.com/dr-kitty-kitagowa/4005-76217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76227/", + "id": 76227, + "name": "Mountain Man", + "site_detail_url": "https://comicvine.gamespot.com/mountain-man/4005-76227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76256/", + "id": 76256, + "name": "Adam Mann", + "site_detail_url": "https://comicvine.gamespot.com/adam-mann/4005-76256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76267/", + "id": 76267, + "name": "Noir", + "site_detail_url": "https://comicvine.gamespot.com/noir/4005-76267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76304/", + "id": 76304, + "name": "Wendy", + "site_detail_url": "https://comicvine.gamespot.com/wendy/4005-76304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76306/", + "id": 76306, + "name": "Mister Punch", + "site_detail_url": "https://comicvine.gamespot.com/mister-punch/4005-76306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76307/", + "id": 76307, + "name": "Captain Scaramouche", + "site_detail_url": "https://comicvine.gamespot.com/captain-scaramouche/4005-76307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76308/", + "id": 76308, + "name": "Pantalone", + "site_detail_url": "https://comicvine.gamespot.com/pantalone/4005-76308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76309/", + "id": 76309, + "name": "La Signora", + "site_detail_url": "https://comicvine.gamespot.com/la-signora/4005-76309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76310/", + "id": 76310, + "name": "Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse/4005-76310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76315/", + "id": 76315, + "name": "Macabre", + "site_detail_url": "https://comicvine.gamespot.com/macabre/4005-76315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76316/", + "id": 76316, + "name": "Stasis", + "site_detail_url": "https://comicvine.gamespot.com/stasis/4005-76316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76318/", + "id": 76318, + "name": "Dethstryk", + "site_detail_url": "https://comicvine.gamespot.com/dethstryk/4005-76318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76319/", + "id": 76319, + "name": "Seeress", + "site_detail_url": "https://comicvine.gamespot.com/seeress/4005-76319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76320/", + "id": 76320, + "name": "Massacre", + "site_detail_url": "https://comicvine.gamespot.com/massacre/4005-76320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76321/", + "id": 76321, + "name": "Baron Dark", + "site_detail_url": "https://comicvine.gamespot.com/baron-dark/4005-76321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76322/", + "id": 76322, + "name": "Aracula", + "site_detail_url": "https://comicvine.gamespot.com/aracula/4005-76322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76323/", + "id": 76323, + "name": "Dagger", + "site_detail_url": "https://comicvine.gamespot.com/dagger/4005-76323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76324/", + "id": 76324, + "name": "Shriek", + "site_detail_url": "https://comicvine.gamespot.com/shriek/4005-76324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76325/", + "id": 76325, + "name": "Prince Lightstar", + "site_detail_url": "https://comicvine.gamespot.com/prince-lightstar/4005-76325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76326/", + "id": 76326, + "name": "Talyn", + "site_detail_url": "https://comicvine.gamespot.com/talyn/4005-76326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76327/", + "id": 76327, + "name": "Grimskull", + "site_detail_url": "https://comicvine.gamespot.com/grimskull/4005-76327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76328/", + "id": 76328, + "name": "Ursak", + "site_detail_url": "https://comicvine.gamespot.com/ursak/4005-76328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76329/", + "id": 76329, + "name": "Dr. Cyborn", + "site_detail_url": "https://comicvine.gamespot.com/dr-cyborn/4005-76329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76338/", + "id": 76338, + "name": "Juito", + "site_detail_url": "https://comicvine.gamespot.com/juito/4005-76338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76339/", + "id": 76339, + "name": "Kuyuk", + "site_detail_url": "https://comicvine.gamespot.com/kuyuk/4005-76339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76340/", + "id": 76340, + "name": "Oksana Sytsevich", + "site_detail_url": "https://comicvine.gamespot.com/oksana-sytsevich/4005-76340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76350/", + "id": 76350, + "name": "Finisher", + "site_detail_url": "https://comicvine.gamespot.com/finisher/4005-76350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76359/", + "id": 76359, + "name": "Columbina", + "site_detail_url": "https://comicvine.gamespot.com/columbina/4005-76359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76361/", + "id": 76361, + "name": "Pilai", + "site_detail_url": "https://comicvine.gamespot.com/pilai/4005-76361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76365/", + "id": 76365, + "name": "Trikon", + "site_detail_url": "https://comicvine.gamespot.com/trikon/4005-76365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76370/", + "id": 76370, + "name": "Dalabuur", + "site_detail_url": "https://comicvine.gamespot.com/dalabuur/4005-76370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76373/", + "id": 76373, + "name": "American Eagle", + "site_detail_url": "https://comicvine.gamespot.com/american-eagle/4005-76373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76374/", + "id": 76374, + "name": "Angela Dinu", + "site_detail_url": "https://comicvine.gamespot.com/angela-dinu/4005-76374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76386/", + "id": 76386, + "name": "Pokerface", + "site_detail_url": "https://comicvine.gamespot.com/pokerface/4005-76386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76390/", + "id": 76390, + "name": "Horde", + "site_detail_url": "https://comicvine.gamespot.com/horde/4005-76390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76391/", + "id": 76391, + "name": "Nicolae Dinu", + "site_detail_url": "https://comicvine.gamespot.com/nicolae-dinu/4005-76391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76405/", + "id": 76405, + "name": "Phough", + "site_detail_url": "https://comicvine.gamespot.com/phough/4005-76405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76406/", + "id": 76406, + "name": "Phummm", + "site_detail_url": "https://comicvine.gamespot.com/phummm/4005-76406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76407/", + "id": 76407, + "name": "Phay", + "site_detail_url": "https://comicvine.gamespot.com/phay/4005-76407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76408/", + "id": 76408, + "name": "Phee", + "site_detail_url": "https://comicvine.gamespot.com/phee/4005-76408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76409/", + "id": 76409, + "name": "Phy", + "site_detail_url": "https://comicvine.gamespot.com/phy/4005-76409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76416/", + "id": 76416, + "name": "Tina Valentino", + "site_detail_url": "https://comicvine.gamespot.com/tina-valentino/4005-76416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76438/", + "id": 76438, + "name": "Phlopp", + "site_detail_url": "https://comicvine.gamespot.com/phlopp/4005-76438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76439/", + "id": 76439, + "name": "Phlegm", + "site_detail_url": "https://comicvine.gamespot.com/phlegm/4005-76439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76453/", + "id": 76453, + "name": "Rococo", + "site_detail_url": "https://comicvine.gamespot.com/rococo/4005-76453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76459/", + "id": 76459, + "name": "Jill Harper", + "site_detail_url": "https://comicvine.gamespot.com/jill-harper/4005-76459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76462/", + "id": 76462, + "name": "Mangler", + "site_detail_url": "https://comicvine.gamespot.com/mangler/4005-76462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76463/", + "id": 76463, + "name": "Glory Garsen", + "site_detail_url": "https://comicvine.gamespot.com/glory-garsen/4005-76463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76470/", + "id": 76470, + "name": "Ralph Cosgrove", + "site_detail_url": "https://comicvine.gamespot.com/ralph-cosgrove/4005-76470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76472/", + "id": 76472, + "name": "Jake Jensen", + "site_detail_url": "https://comicvine.gamespot.com/jake-jensen/4005-76472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76485/", + "id": 76485, + "name": "Maria Stark", + "site_detail_url": "https://comicvine.gamespot.com/maria-stark/4005-76485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76487/", + "id": 76487, + "name": "Donald Sample", + "site_detail_url": "https://comicvine.gamespot.com/donald-sample/4005-76487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76488/", + "id": 76488, + "name": "Howard Shigeta", + "site_detail_url": "https://comicvine.gamespot.com/howard-shigeta/4005-76488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76489/", + "id": 76489, + "name": "Emory Simpson", + "site_detail_url": "https://comicvine.gamespot.com/emory-simpson/4005-76489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76498/", + "id": 76498, + "name": "Ronson Carpenter", + "site_detail_url": "https://comicvine.gamespot.com/ronson-carpenter/4005-76498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76499/", + "id": 76499, + "name": "Richard Longtree", + "site_detail_url": "https://comicvine.gamespot.com/richard-longtree/4005-76499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76500/", + "id": 76500, + "name": "Wildcat Smith", + "site_detail_url": "https://comicvine.gamespot.com/wildcat-smith/4005-76500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76521/", + "id": 76521, + "name": "Mean", + "site_detail_url": "https://comicvine.gamespot.com/mean/4005-76521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76539/", + "id": 76539, + "name": "Lars", + "site_detail_url": "https://comicvine.gamespot.com/lars/4005-76539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76590/", + "id": 76590, + "name": "The Massive Globula", + "site_detail_url": "https://comicvine.gamespot.com/the-massive-globula/4005-76590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76591/", + "id": 76591, + "name": "Metalhead", + "site_detail_url": "https://comicvine.gamespot.com/metalhead/4005-76591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76592/", + "id": 76592, + "name": "Ill Billy", + "site_detail_url": "https://comicvine.gamespot.com/ill-billy/4005-76592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76602/", + "id": 76602, + "name": "Shoji Soma", + "site_detail_url": "https://comicvine.gamespot.com/shoji-soma/4005-76602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76603/", + "id": 76603, + "name": "Thomas Davidson", + "site_detail_url": "https://comicvine.gamespot.com/thomas-davidson/4005-76603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76608/", + "id": 76608, + "name": "The Hooded Eye", + "site_detail_url": "https://comicvine.gamespot.com/the-hooded-eye/4005-76608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76631/", + "id": 76631, + "name": "Doctorangutan", + "site_detail_url": "https://comicvine.gamespot.com/doctorangutan/4005-76631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76635/", + "id": 76635, + "name": "El Tigre", + "site_detail_url": "https://comicvine.gamespot.com/el-tigre/4005-76635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76636/", + "id": 76636, + "name": "Ramon", + "site_detail_url": "https://comicvine.gamespot.com/ramon/4005-76636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76637/", + "id": 76637, + "name": "Toloc", + "site_detail_url": "https://comicvine.gamespot.com/toloc/4005-76637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76664/", + "id": 76664, + "name": "Rok-Korr", + "site_detail_url": "https://comicvine.gamespot.com/rok-korr/4005-76664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76665/", + "id": 76665, + "name": "Doctor Tambura", + "site_detail_url": "https://comicvine.gamespot.com/doctor-tambura/4005-76665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76673/", + "id": 76673, + "name": "Mech-Monster", + "site_detail_url": "https://comicvine.gamespot.com/mech-monster/4005-76673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76674/", + "id": 76674, + "name": "Magar", + "site_detail_url": "https://comicvine.gamespot.com/magar/4005-76674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76698/", + "id": 76698, + "name": "Kluh", + "site_detail_url": "https://comicvine.gamespot.com/kluh/4005-76698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76702/", + "id": 76702, + "name": "Starchild Monster", + "site_detail_url": "https://comicvine.gamespot.com/starchild-monster/4005-76702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76706/", + "id": 76706, + "name": "Wraith (Watanabe)", + "site_detail_url": "https://comicvine.gamespot.com/wraith-watanabe/4005-76706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76772/", + "id": 76772, + "name": "Metalscream", + "site_detail_url": "https://comicvine.gamespot.com/metalscream/4005-76772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76801/", + "id": 76801, + "name": "Phillip Chambers", + "site_detail_url": "https://comicvine.gamespot.com/phillip-chambers/4005-76801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76802/", + "id": 76802, + "name": "Brandon Chambers", + "site_detail_url": "https://comicvine.gamespot.com/brandon-chambers/4005-76802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76812/", + "id": 76812, + "name": "Pestilence", + "site_detail_url": "https://comicvine.gamespot.com/pestilence/4005-76812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76813/", + "id": 76813, + "name": "Famine", + "site_detail_url": "https://comicvine.gamespot.com/famine/4005-76813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76814/", + "id": 76814, + "name": "Death", + "site_detail_url": "https://comicvine.gamespot.com/death/4005-76814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76815/", + "id": 76815, + "name": "War", + "site_detail_url": "https://comicvine.gamespot.com/war/4005-76815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76828/", + "id": 76828, + "name": "Tenga Warrior", + "site_detail_url": "https://comicvine.gamespot.com/tenga-warrior/4005-76828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76829/", + "id": 76829, + "name": "Ryan Steele", + "site_detail_url": "https://comicvine.gamespot.com/ryan-steele/4005-76829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76830/", + "id": 76830, + "name": "J.B. Reese", + "site_detail_url": "https://comicvine.gamespot.com/jb-reese/4005-76830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76831/", + "id": 76831, + "name": "Kaitlin Star", + "site_detail_url": "https://comicvine.gamespot.com/kaitlin-star/4005-76831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76835/", + "id": 76835, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4005-76835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76848/", + "id": 76848, + "name": "Topeka", + "site_detail_url": "https://comicvine.gamespot.com/topeka/4005-76848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76849/", + "id": 76849, + "name": "Meadowlark", + "site_detail_url": "https://comicvine.gamespot.com/meadowlark/4005-76849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76850/", + "id": 76850, + "name": "Sunflower", + "site_detail_url": "https://comicvine.gamespot.com/sunflower/4005-76850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76851/", + "id": 76851, + "name": "Grain Belt", + "site_detail_url": "https://comicvine.gamespot.com/grain-belt/4005-76851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76852/", + "id": 76852, + "name": "Pioneer", + "site_detail_url": "https://comicvine.gamespot.com/pioneer/4005-76852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76877/", + "id": 76877, + "name": "Defender", + "site_detail_url": "https://comicvine.gamespot.com/defender/4005-76877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76888/", + "id": 76888, + "name": "Silent Fox", + "site_detail_url": "https://comicvine.gamespot.com/silent-fox/4005-76888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76901/", + "id": 76901, + "name": "Sojin Ezaki", + "site_detail_url": "https://comicvine.gamespot.com/sojin-ezaki/4005-76901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76903/", + "id": 76903, + "name": "Kantaro Umezu", + "site_detail_url": "https://comicvine.gamespot.com/kantaro-umezu/4005-76903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76906/", + "id": 76906, + "name": "Bufford Buzzard", + "site_detail_url": "https://comicvine.gamespot.com/bufford-buzzard/4005-76906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76907/", + "id": 76907, + "name": "Boyd Buzzard", + "site_detail_url": "https://comicvine.gamespot.com/boyd-buzzard/4005-76907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76917/", + "id": 76917, + "name": "Ernst Sablinova", + "site_detail_url": "https://comicvine.gamespot.com/ernst-sablinova/4005-76917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76925/", + "id": 76925, + "name": "Crimson", + "site_detail_url": "https://comicvine.gamespot.com/crimson/4005-76925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76926/", + "id": 76926, + "name": "Jodie Craig", + "site_detail_url": "https://comicvine.gamespot.com/jodie-craig/4005-76926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76939/", + "id": 76939, + "name": "The Aviatrix", + "site_detail_url": "https://comicvine.gamespot.com/the-aviatrix/4005-76939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76940/", + "id": 76940, + "name": "Achilles", + "site_detail_url": "https://comicvine.gamespot.com/achilles/4005-76940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76941/", + "id": 76941, + "name": "The Operative", + "site_detail_url": "https://comicvine.gamespot.com/the-operative/4005-76941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76942/", + "id": 76942, + "name": "The Revenant", + "site_detail_url": "https://comicvine.gamespot.com/the-revenant/4005-76942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76943/", + "id": 76943, + "name": "The Surgeon", + "site_detail_url": "https://comicvine.gamespot.com/the-surgeon/4005-76943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76955/", + "id": 76955, + "name": "Thela", + "site_detail_url": "https://comicvine.gamespot.com/thela/4005-76955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76956/", + "id": 76956, + "name": "Stevie", + "site_detail_url": "https://comicvine.gamespot.com/stevie/4005-76956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76970/", + "id": 76970, + "name": "Gert Hauptmann", + "site_detail_url": "https://comicvine.gamespot.com/gert-hauptmann/4005-76970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76976/", + "id": 76976, + "name": "Rocky Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/rocky-rhodes/4005-76976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76977/", + "id": 76977, + "name": "Red-Bone", + "site_detail_url": "https://comicvine.gamespot.com/red-bone/4005-76977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76979/", + "id": 76979, + "name": "Zero/One", + "site_detail_url": "https://comicvine.gamespot.com/zeroone/4005-76979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76981/", + "id": 76981, + "name": "Beatrice Clarke", + "site_detail_url": "https://comicvine.gamespot.com/beatrice-clarke/4005-76981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76982/", + "id": 76982, + "name": "Mary Brooks", + "site_detail_url": "https://comicvine.gamespot.com/mary-brooks/4005-76982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76983/", + "id": 76983, + "name": "Id the Selfish Moon", + "site_detail_url": "https://comicvine.gamespot.com/id-the-selfish-moon/4005-76983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76984/", + "id": 76984, + "name": "Max O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/max-obrien/4005-76984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76985/", + "id": 76985, + "name": "Ronny Choi", + "site_detail_url": "https://comicvine.gamespot.com/ronny-choi/4005-76985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76989/", + "id": 76989, + "name": "Mortimer Dauoi", + "site_detail_url": "https://comicvine.gamespot.com/mortimer-dauoi/4005-76989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76990/", + "id": 76990, + "name": "Andhrimnir", + "site_detail_url": "https://comicvine.gamespot.com/andhrimnir/4005-76990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76992/", + "id": 76992, + "name": "Steve Wilson-Bradley", + "site_detail_url": "https://comicvine.gamespot.com/steve-wilson-bradley/4005-76992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76993/", + "id": 76993, + "name": "Samantha Wilson", + "site_detail_url": "https://comicvine.gamespot.com/samantha-wilson/4005-76993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76994/", + "id": 76994, + "name": "Madu", + "site_detail_url": "https://comicvine.gamespot.com/madu/4005-76994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76996/", + "id": 76996, + "name": "Wu", + "site_detail_url": "https://comicvine.gamespot.com/wu/4005-76996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76997/", + "id": 76997, + "name": "Vil", + "site_detail_url": "https://comicvine.gamespot.com/vil/4005-76997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-76998/", + "id": 76998, + "name": "David Rickford", + "site_detail_url": "https://comicvine.gamespot.com/david-rickford/4005-76998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77021/", + "id": 77021, + "name": "Victoria Campos", + "site_detail_url": "https://comicvine.gamespot.com/victoria-campos/4005-77021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77022/", + "id": 77022, + "name": "Gloria Santiago", + "site_detail_url": "https://comicvine.gamespot.com/gloria-santiago/4005-77022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77023/", + "id": 77023, + "name": "Rachel Santiago", + "site_detail_url": "https://comicvine.gamespot.com/rachel-santiago/4005-77023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77024/", + "id": 77024, + "name": "Jack Vaughn", + "site_detail_url": "https://comicvine.gamespot.com/jack-vaughn/4005-77024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77025/", + "id": 77025, + "name": "Ronnie", + "site_detail_url": "https://comicvine.gamespot.com/ronnie/4005-77025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77026/", + "id": 77026, + "name": "Hakon", + "site_detail_url": "https://comicvine.gamespot.com/hakon/4005-77026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77027/", + "id": 77027, + "name": "Aslak", + "site_detail_url": "https://comicvine.gamespot.com/aslak/4005-77027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77028/", + "id": 77028, + "name": "Candy", + "site_detail_url": "https://comicvine.gamespot.com/candy/4005-77028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77029/", + "id": 77029, + "name": "Doctor Leery", + "site_detail_url": "https://comicvine.gamespot.com/doctor-leery/4005-77029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77031/", + "id": 77031, + "name": "Doctor Castillo", + "site_detail_url": "https://comicvine.gamespot.com/doctor-castillo/4005-77031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77032/", + "id": 77032, + "name": "Mrs Charnoff", + "site_detail_url": "https://comicvine.gamespot.com/mrs-charnoff/4005-77032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77033/", + "id": 77033, + "name": "Carole", + "site_detail_url": "https://comicvine.gamespot.com/carole/4005-77033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77034/", + "id": 77034, + "name": "Diamond Android", + "site_detail_url": "https://comicvine.gamespot.com/diamond-android/4005-77034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77035/", + "id": 77035, + "name": "Penny Newsom", + "site_detail_url": "https://comicvine.gamespot.com/penny-newsom/4005-77035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77036/", + "id": 77036, + "name": "Super-Cobalt Robot", + "site_detail_url": "https://comicvine.gamespot.com/super-cobalt-robot/4005-77036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77039/", + "id": 77039, + "name": "Airborne", + "site_detail_url": "https://comicvine.gamespot.com/airborne/4005-77039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77048/", + "id": 77048, + "name": "Doctor Modern", + "site_detail_url": "https://comicvine.gamespot.com/doctor-modern/4005-77048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77049/", + "id": 77049, + "name": "Professor Buchanan", + "site_detail_url": "https://comicvine.gamespot.com/professor-buchanan/4005-77049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77050/", + "id": 77050, + "name": "Alix Buchanan", + "site_detail_url": "https://comicvine.gamespot.com/alix-buchanan/4005-77050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77051/", + "id": 77051, + "name": "Joan Madrox", + "site_detail_url": "https://comicvine.gamespot.com/joan-madrox/4005-77051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77052/", + "id": 77052, + "name": "Daniel Madrox", + "site_detail_url": "https://comicvine.gamespot.com/daniel-madrox/4005-77052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77053/", + "id": 77053, + "name": "Agent Brody", + "site_detail_url": "https://comicvine.gamespot.com/agent-brody/4005-77053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77054/", + "id": 77054, + "name": "Ms Diaz", + "site_detail_url": "https://comicvine.gamespot.com/ms-diaz/4005-77054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77055/", + "id": 77055, + "name": "Doctor Locke", + "site_detail_url": "https://comicvine.gamespot.com/doctor-locke/4005-77055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77056/", + "id": 77056, + "name": "Daniel Maddox", + "site_detail_url": "https://comicvine.gamespot.com/daniel-maddox/4005-77056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77057/", + "id": 77057, + "name": "Susan Maddox", + "site_detail_url": "https://comicvine.gamespot.com/susan-maddox/4005-77057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77058/", + "id": 77058, + "name": "Edward Hutchinson", + "site_detail_url": "https://comicvine.gamespot.com/edward-hutchinson/4005-77058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77059/", + "id": 77059, + "name": "Abby", + "site_detail_url": "https://comicvine.gamespot.com/abby/4005-77059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77060/", + "id": 77060, + "name": "Steve", + "site_detail_url": "https://comicvine.gamespot.com/steve/4005-77060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77061/", + "id": 77061, + "name": "Ms Hutchinson", + "site_detail_url": "https://comicvine.gamespot.com/ms-hutchinson/4005-77061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77064/", + "id": 77064, + "name": "Charles Tyler", + "site_detail_url": "https://comicvine.gamespot.com/charles-tyler/4005-77064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77065/", + "id": 77065, + "name": "June Tyler", + "site_detail_url": "https://comicvine.gamespot.com/june-tyler/4005-77065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77066/", + "id": 77066, + "name": "Molly", + "site_detail_url": "https://comicvine.gamespot.com/molly/4005-77066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77067/", + "id": 77067, + "name": "Wally", + "site_detail_url": "https://comicvine.gamespot.com/wally/4005-77067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77069/", + "id": 77069, + "name": "Abby", + "site_detail_url": "https://comicvine.gamespot.com/abby/4005-77069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77070/", + "id": 77070, + "name": "Roy", + "site_detail_url": "https://comicvine.gamespot.com/roy/4005-77070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77084/", + "id": 77084, + "name": "Miss King", + "site_detail_url": "https://comicvine.gamespot.com/miss-king/4005-77084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77085/", + "id": 77085, + "name": "Mr. Regal", + "site_detail_url": "https://comicvine.gamespot.com/mr-regal/4005-77085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77094/", + "id": 77094, + "name": "Harvester", + "site_detail_url": "https://comicvine.gamespot.com/harvester/4005-77094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77096/", + "id": 77096, + "name": "Kaitlin", + "site_detail_url": "https://comicvine.gamespot.com/kaitlin/4005-77096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77097/", + "id": 77097, + "name": "Kaitlin's Pimp", + "site_detail_url": "https://comicvine.gamespot.com/kaitlins-pimp/4005-77097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77098/", + "id": 77098, + "name": "Horned Depowered-Mutant", + "site_detail_url": "https://comicvine.gamespot.com/horned-depowered-mutant/4005-77098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77102/", + "id": 77102, + "name": "Mr Taylor", + "site_detail_url": "https://comicvine.gamespot.com/mr-taylor/4005-77102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77105/", + "id": 77105, + "name": "Paula", + "site_detail_url": "https://comicvine.gamespot.com/paula/4005-77105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77106/", + "id": 77106, + "name": "Roc", + "site_detail_url": "https://comicvine.gamespot.com/roc/4005-77106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77107/", + "id": 77107, + "name": "Nathan Patrofsky", + "site_detail_url": "https://comicvine.gamespot.com/nathan-patrofsky/4005-77107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77108/", + "id": 77108, + "name": "T-Bar", + "site_detail_url": "https://comicvine.gamespot.com/t-bar/4005-77108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77109/", + "id": 77109, + "name": "Rufus", + "site_detail_url": "https://comicvine.gamespot.com/rufus/4005-77109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77125/", + "id": 77125, + "name": "Mr Maru", + "site_detail_url": "https://comicvine.gamespot.com/mr-maru/4005-77125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77128/", + "id": 77128, + "name": "Lieutenant Weiss", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-weiss/4005-77128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77129/", + "id": 77129, + "name": "Mr Wenzel", + "site_detail_url": "https://comicvine.gamespot.com/mr-wenzel/4005-77129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77130/", + "id": 77130, + "name": "Mr Stefani", + "site_detail_url": "https://comicvine.gamespot.com/mr-stefani/4005-77130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77131/", + "id": 77131, + "name": "Doctor Laramie", + "site_detail_url": "https://comicvine.gamespot.com/doctor-laramie/4005-77131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77132/", + "id": 77132, + "name": "Rosetti", + "site_detail_url": "https://comicvine.gamespot.com/rosetti/4005-77132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77135/", + "id": 77135, + "name": "Crystal", + "site_detail_url": "https://comicvine.gamespot.com/crystal/4005-77135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77136/", + "id": 77136, + "name": "Larry", + "site_detail_url": "https://comicvine.gamespot.com/larry/4005-77136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77138/", + "id": 77138, + "name": "Head Case", + "site_detail_url": "https://comicvine.gamespot.com/head-case/4005-77138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77139/", + "id": 77139, + "name": "Volff of Vanaheim", + "site_detail_url": "https://comicvine.gamespot.com/volff-of-vanaheim/4005-77139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77140/", + "id": 77140, + "name": "Olav", + "site_detail_url": "https://comicvine.gamespot.com/olav/4005-77140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77141/", + "id": 77141, + "name": "Sharkosh", + "site_detail_url": "https://comicvine.gamespot.com/sharkosh/4005-77141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77142/", + "id": 77142, + "name": "Zha-Gorr", + "site_detail_url": "https://comicvine.gamespot.com/zha-gorr/4005-77142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77143/", + "id": 77143, + "name": "Moira", + "site_detail_url": "https://comicvine.gamespot.com/moira/4005-77143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77144/", + "id": 77144, + "name": "Kiord", + "site_detail_url": "https://comicvine.gamespot.com/kiord/4005-77144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77145/", + "id": 77145, + "name": "King Gha-Kree", + "site_detail_url": "https://comicvine.gamespot.com/king-gha-kree/4005-77145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77146/", + "id": 77146, + "name": "Malachi", + "site_detail_url": "https://comicvine.gamespot.com/malachi/4005-77146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77147/", + "id": 77147, + "name": "Kormalda", + "site_detail_url": "https://comicvine.gamespot.com/kormalda/4005-77147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77148/", + "id": 77148, + "name": "Dunlang", + "site_detail_url": "https://comicvine.gamespot.com/dunlang/4005-77148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77149/", + "id": 77149, + "name": "Eevin", + "site_detail_url": "https://comicvine.gamespot.com/eevin/4005-77149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77163/", + "id": 77163, + "name": "Atrizas Petanius", + "site_detail_url": "https://comicvine.gamespot.com/atrizas-petanius/4005-77163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77164/", + "id": 77164, + "name": "Dionus", + "site_detail_url": "https://comicvine.gamespot.com/dionus/4005-77164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77166/", + "id": 77166, + "name": "Arus", + "site_detail_url": "https://comicvine.gamespot.com/arus/4005-77166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77167/", + "id": 77167, + "name": "Captain Burgun", + "site_detail_url": "https://comicvine.gamespot.com/captain-burgun/4005-77167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77168/", + "id": 77168, + "name": "Macho Gomez", + "site_detail_url": "https://comicvine.gamespot.com/macho-gomez/4005-77168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77169/", + "id": 77169, + "name": "The Optometrist", + "site_detail_url": "https://comicvine.gamespot.com/the-optometrist/4005-77169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77170/", + "id": 77170, + "name": "Ferret", + "site_detail_url": "https://comicvine.gamespot.com/ferret/4005-77170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77184/", + "id": 77184, + "name": "Slagg", + "site_detail_url": "https://comicvine.gamespot.com/slagg/4005-77184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77187/", + "id": 77187, + "name": "Cort", + "site_detail_url": "https://comicvine.gamespot.com/cort/4005-77187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77194/", + "id": 77194, + "name": "Balkaa", + "site_detail_url": "https://comicvine.gamespot.com/balkaa/4005-77194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77202/", + "id": 77202, + "name": "Galik", + "site_detail_url": "https://comicvine.gamespot.com/galik/4005-77202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77203/", + "id": 77203, + "name": "Kuree", + "site_detail_url": "https://comicvine.gamespot.com/kuree/4005-77203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77215/", + "id": 77215, + "name": "Teddy Allen", + "site_detail_url": "https://comicvine.gamespot.com/teddy-allen/4005-77215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77233/", + "id": 77233, + "name": "Dr. Powell", + "site_detail_url": "https://comicvine.gamespot.com/dr-powell/4005-77233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77237/", + "id": 77237, + "name": "Raizo Kodo", + "site_detail_url": "https://comicvine.gamespot.com/raizo-kodo/4005-77237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77247/", + "id": 77247, + "name": "Red Skull (Maxon)", + "site_detail_url": "https://comicvine.gamespot.com/red-skull-maxon/4005-77247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77248/", + "id": 77248, + "name": "Red Skull (Malik)", + "site_detail_url": "https://comicvine.gamespot.com/red-skull-malik/4005-77248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77249/", + "id": 77249, + "name": "Vulture (Scarlotti)", + "site_detail_url": "https://comicvine.gamespot.com/vulture-scarlotti/4005-77249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77250/", + "id": 77250, + "name": "Vulture (Shallot)", + "site_detail_url": "https://comicvine.gamespot.com/vulture-shallot/4005-77250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77253/", + "id": 77253, + "name": "Gor-Tok I", + "site_detail_url": "https://comicvine.gamespot.com/gor-tok-i/4005-77253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77254/", + "id": 77254, + "name": "Thera", + "site_detail_url": "https://comicvine.gamespot.com/thera/4005-77254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77255/", + "id": 77255, + "name": "Ingar", + "site_detail_url": "https://comicvine.gamespot.com/ingar/4005-77255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77286/", + "id": 77286, + "name": "Ann Dodgson-Stanford", + "site_detail_url": "https://comicvine.gamespot.com/ann-dodgson-stanford/4005-77286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77287/", + "id": 77287, + "name": "Clare Dodgson", + "site_detail_url": "https://comicvine.gamespot.com/clare-dodgson/4005-77287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77297/", + "id": 77297, + "name": "Nemesis", + "site_detail_url": "https://comicvine.gamespot.com/nemesis/4005-77297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77306/", + "id": 77306, + "name": "The Serpent", + "site_detail_url": "https://comicvine.gamespot.com/the-serpent/4005-77306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77309/", + "id": 77309, + "name": "Lylla", + "site_detail_url": "https://comicvine.gamespot.com/lylla/4005-77309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77310/", + "id": 77310, + "name": "Wal Rus", + "site_detail_url": "https://comicvine.gamespot.com/wal-rus/4005-77310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77311/", + "id": 77311, + "name": "Dyvyne", + "site_detail_url": "https://comicvine.gamespot.com/dyvyne/4005-77311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77312/", + "id": 77312, + "name": "Blackjack O'Hare", + "site_detail_url": "https://comicvine.gamespot.com/blackjack-ohare/4005-77312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77313/", + "id": 77313, + "name": "Judson Jakes", + "site_detail_url": "https://comicvine.gamespot.com/judson-jakes/4005-77313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77314/", + "id": 77314, + "name": "Uncle Pyko", + "site_detail_url": "https://comicvine.gamespot.com/uncle-pyko/4005-77314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77319/", + "id": 77319, + "name": "Miriam Sharpe", + "site_detail_url": "https://comicvine.gamespot.com/miriam-sharpe/4005-77319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77320/", + "id": 77320, + "name": "Danny Peyer", + "site_detail_url": "https://comicvine.gamespot.com/danny-peyer/4005-77320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77325/", + "id": 77325, + "name": "Norris", + "site_detail_url": "https://comicvine.gamespot.com/norris/4005-77325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77341/", + "id": 77341, + "name": "J. B. Desalvio", + "site_detail_url": "https://comicvine.gamespot.com/j-b-desalvio/4005-77341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77343/", + "id": 77343, + "name": "Amy Brys", + "site_detail_url": "https://comicvine.gamespot.com/amy-brys/4005-77343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77344/", + "id": 77344, + "name": "Tartaro", + "site_detail_url": "https://comicvine.gamespot.com/tartaro/4005-77344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77350/", + "id": 77350, + "name": "Donna Kiel", + "site_detail_url": "https://comicvine.gamespot.com/donna-kiel/4005-77350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77357/", + "id": 77357, + "name": "Reverend Brown", + "site_detail_url": "https://comicvine.gamespot.com/reverend-brown/4005-77357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77358/", + "id": 77358, + "name": "Calavera", + "site_detail_url": "https://comicvine.gamespot.com/calavera/4005-77358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77364/", + "id": 77364, + "name": "Cleft", + "site_detail_url": "https://comicvine.gamespot.com/cleft/4005-77364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77365/", + "id": 77365, + "name": "Depth Charge", + "site_detail_url": "https://comicvine.gamespot.com/depth-charge/4005-77365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77366/", + "id": 77366, + "name": "Flagstone", + "site_detail_url": "https://comicvine.gamespot.com/flagstone/4005-77366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77388/", + "id": 77388, + "name": "Blindside", + "site_detail_url": "https://comicvine.gamespot.com/blindside/4005-77388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77389/", + "id": 77389, + "name": "Lifeline", + "site_detail_url": "https://comicvine.gamespot.com/lifeline/4005-77389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77390/", + "id": 77390, + "name": "Shotgun", + "site_detail_url": "https://comicvine.gamespot.com/shotgun/4005-77390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77391/", + "id": 77391, + "name": "Norrin Konn", + "site_detail_url": "https://comicvine.gamespot.com/norrin-konn/4005-77391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77392/", + "id": 77392, + "name": "Ikol", + "site_detail_url": "https://comicvine.gamespot.com/ikol/4005-77392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77408/", + "id": 77408, + "name": "Gabe Dinu", + "site_detail_url": "https://comicvine.gamespot.com/gabe-dinu/4005-77408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77411/", + "id": 77411, + "name": "John Ogord", + "site_detail_url": "https://comicvine.gamespot.com/john-ogord/4005-77411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77412/", + "id": 77412, + "name": "Tara Ogord", + "site_detail_url": "https://comicvine.gamespot.com/tara-ogord/4005-77412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77425/", + "id": 77425, + "name": "Jonath", + "site_detail_url": "https://comicvine.gamespot.com/jonath/4005-77425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77432/", + "id": 77432, + "name": "Superego, the Living Atom", + "site_detail_url": "https://comicvine.gamespot.com/superego-the-living-atom/4005-77432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77458/", + "id": 77458, + "name": "Human Top", + "site_detail_url": "https://comicvine.gamespot.com/human-top/4005-77458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77469/", + "id": 77469, + "name": "Gary Gaunt", + "site_detail_url": "https://comicvine.gamespot.com/gary-gaunt/4005-77469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77474/", + "id": 77474, + "name": "Black Fog", + "site_detail_url": "https://comicvine.gamespot.com/black-fog/4005-77474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77480/", + "id": 77480, + "name": "Hademar Zemo", + "site_detail_url": "https://comicvine.gamespot.com/hademar-zemo/4005-77480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77481/", + "id": 77481, + "name": "Heller Zemo", + "site_detail_url": "https://comicvine.gamespot.com/heller-zemo/4005-77481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77482/", + "id": 77482, + "name": "Herbert Zemo", + "site_detail_url": "https://comicvine.gamespot.com/herbert-zemo/4005-77482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77483/", + "id": 77483, + "name": "Helmuth Zemo", + "site_detail_url": "https://comicvine.gamespot.com/helmuth-zemo/4005-77483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77484/", + "id": 77484, + "name": "Hackett Zemo", + "site_detail_url": "https://comicvine.gamespot.com/hackett-zemo/4005-77484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77485/", + "id": 77485, + "name": "Hillard Zemo", + "site_detail_url": "https://comicvine.gamespot.com/hillard-zemo/4005-77485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77486/", + "id": 77486, + "name": "Hobart Zemo", + "site_detail_url": "https://comicvine.gamespot.com/hobart-zemo/4005-77486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77487/", + "id": 77487, + "name": "Herman Zemo", + "site_detail_url": "https://comicvine.gamespot.com/herman-zemo/4005-77487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77490/", + "id": 77490, + "name": "Meagyn Brady", + "site_detail_url": "https://comicvine.gamespot.com/meagyn-brady/4005-77490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77492/", + "id": 77492, + "name": "Sandra Heally", + "site_detail_url": "https://comicvine.gamespot.com/sandra-heally/4005-77492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77493/", + "id": 77493, + "name": "Blockade", + "site_detail_url": "https://comicvine.gamespot.com/blockade/4005-77493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77494/", + "id": 77494, + "name": "Blaster", + "site_detail_url": "https://comicvine.gamespot.com/blaster/4005-77494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77495/", + "id": 77495, + "name": "Rhodney", + "site_detail_url": "https://comicvine.gamespot.com/rhodney/4005-77495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77496/", + "id": 77496, + "name": "Moon Knight 2099", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-2099/4005-77496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77497/", + "id": 77497, + "name": "Saint Death", + "site_detail_url": "https://comicvine.gamespot.com/saint-death/4005-77497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77498/", + "id": 77498, + "name": "Sky Panther", + "site_detail_url": "https://comicvine.gamespot.com/sky-panther/4005-77498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77499/", + "id": 77499, + "name": "Tie-Chi", + "site_detail_url": "https://comicvine.gamespot.com/tie-chi/4005-77499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77500/", + "id": 77500, + "name": "Black Panther 2099", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-2099/4005-77500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77501/", + "id": 77501, + "name": "Lucian Von Doom", + "site_detail_url": "https://comicvine.gamespot.com/lucian-von-doom/4005-77501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77507/", + "id": 77507, + "name": "High Sister", + "site_detail_url": "https://comicvine.gamespot.com/high-sister/4005-77507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77508/", + "id": 77508, + "name": "Commander Swifthand", + "site_detail_url": "https://comicvine.gamespot.com/commander-swifthand/4005-77508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77543/", + "id": 77543, + "name": "Jiltrin", + "site_detail_url": "https://comicvine.gamespot.com/jiltrin/4005-77543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77568/", + "id": 77568, + "name": "Doctor Raymond Corey", + "site_detail_url": "https://comicvine.gamespot.com/doctor-raymond-corey/4005-77568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77571/", + "id": 77571, + "name": "Emily Osborn", + "site_detail_url": "https://comicvine.gamespot.com/emily-osborn/4005-77571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77587/", + "id": 77587, + "name": "Dafi", + "site_detail_url": "https://comicvine.gamespot.com/dafi/4005-77587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77588/", + "id": 77588, + "name": "Haleena", + "site_detail_url": "https://comicvine.gamespot.com/haleena/4005-77588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77619/", + "id": 77619, + "name": "Zyro", + "site_detail_url": "https://comicvine.gamespot.com/zyro/4005-77619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77620/", + "id": 77620, + "name": "Sar-Torr", + "site_detail_url": "https://comicvine.gamespot.com/sar-torr/4005-77620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77622/", + "id": 77622, + "name": "Atur", + "site_detail_url": "https://comicvine.gamespot.com/atur/4005-77622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77625/", + "id": 77625, + "name": "Marty Smith", + "site_detail_url": "https://comicvine.gamespot.com/marty-smith/4005-77625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77643/", + "id": 77643, + "name": "Flip", + "site_detail_url": "https://comicvine.gamespot.com/flip/4005-77643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77650/", + "id": 77650, + "name": "Kojima Noburo", + "site_detail_url": "https://comicvine.gamespot.com/kojima-noburo/4005-77650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77652/", + "id": 77652, + "name": "Belle", + "site_detail_url": "https://comicvine.gamespot.com/belle/4005-77652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77653/", + "id": 77653, + "name": "Chancellor Ranjamaryam", + "site_detail_url": "https://comicvine.gamespot.com/chancellor-ranjamaryam/4005-77653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77671/", + "id": 77671, + "name": "Servicer", + "site_detail_url": "https://comicvine.gamespot.com/servicer/4005-77671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77672/", + "id": 77672, + "name": "Gunshot", + "site_detail_url": "https://comicvine.gamespot.com/gunshot/4005-77672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77674/", + "id": 77674, + "name": "Star-Thief", + "site_detail_url": "https://comicvine.gamespot.com/star-thief/4005-77674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77687/", + "id": 77687, + "name": "Ikthalon", + "site_detail_url": "https://comicvine.gamespot.com/ikthalon/4005-77687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77738/", + "id": 77738, + "name": "Agent Paulletz", + "site_detail_url": "https://comicvine.gamespot.com/agent-paulletz/4005-77738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77739/", + "id": 77739, + "name": "Jakkaru", + "site_detail_url": "https://comicvine.gamespot.com/jakkaru/4005-77739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77740/", + "id": 77740, + "name": "Lord Kodo", + "site_detail_url": "https://comicvine.gamespot.com/lord-kodo/4005-77740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77741/", + "id": 77741, + "name": "Ryuhei Kodo", + "site_detail_url": "https://comicvine.gamespot.com/ryuhei-kodo/4005-77741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77742/", + "id": 77742, + "name": "Suzume", + "site_detail_url": "https://comicvine.gamespot.com/suzume/4005-77742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77743/", + "id": 77743, + "name": "Svetlana", + "site_detail_url": "https://comicvine.gamespot.com/svetlana/4005-77743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77744/", + "id": 77744, + "name": "Thorn", + "site_detail_url": "https://comicvine.gamespot.com/thorn/4005-77744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77747/", + "id": 77747, + "name": "Gnives", + "site_detail_url": "https://comicvine.gamespot.com/gnives/4005-77747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77750/", + "id": 77750, + "name": "Broker", + "site_detail_url": "https://comicvine.gamespot.com/broker/4005-77750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77751/", + "id": 77751, + "name": "Doctor Page", + "site_detail_url": "https://comicvine.gamespot.com/doctor-page/4005-77751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77784/", + "id": 77784, + "name": "Anti-Priest", + "site_detail_url": "https://comicvine.gamespot.com/anti-priest/4005-77784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77787/", + "id": 77787, + "name": "Takkor", + "site_detail_url": "https://comicvine.gamespot.com/takkor/4005-77787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77796/", + "id": 77796, + "name": "Koord", + "site_detail_url": "https://comicvine.gamespot.com/koord/4005-77796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77797/", + "id": 77797, + "name": "Mother Superior", + "site_detail_url": "https://comicvine.gamespot.com/mother-superior/4005-77797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77804/", + "id": 77804, + "name": "Brain", + "site_detail_url": "https://comicvine.gamespot.com/brain/4005-77804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77808/", + "id": 77808, + "name": "Bull", + "site_detail_url": "https://comicvine.gamespot.com/bull/4005-77808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77812/", + "id": 77812, + "name": "Alana Jobson", + "site_detail_url": "https://comicvine.gamespot.com/alana-jobson/4005-77812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77816/", + "id": 77816, + "name": "Miho", + "site_detail_url": "https://comicvine.gamespot.com/miho/4005-77816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77841/", + "id": 77841, + "name": "Captain Badordes", + "site_detail_url": "https://comicvine.gamespot.com/captain-badordes/4005-77841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77848/", + "id": 77848, + "name": "John Standish", + "site_detail_url": "https://comicvine.gamespot.com/john-standish/4005-77848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77858/", + "id": 77858, + "name": "Durge", + "site_detail_url": "https://comicvine.gamespot.com/durge/4005-77858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77859/", + "id": 77859, + "name": "Bear", + "site_detail_url": "https://comicvine.gamespot.com/bear/4005-77859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77861/", + "id": 77861, + "name": "Marshach", + "site_detail_url": "https://comicvine.gamespot.com/marshach/4005-77861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77862/", + "id": 77862, + "name": "Georgios Panayiotou", + "site_detail_url": "https://comicvine.gamespot.com/georgios-panayiotou/4005-77862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77863/", + "id": 77863, + "name": "Helene Panayiotou", + "site_detail_url": "https://comicvine.gamespot.com/helene-panayiotou/4005-77863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77864/", + "id": 77864, + "name": "Rhea", + "site_detail_url": "https://comicvine.gamespot.com/rhea/4005-77864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77868/", + "id": 77868, + "name": "Jaboa Murphy", + "site_detail_url": "https://comicvine.gamespot.com/jaboa-murphy/4005-77868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77869/", + "id": 77869, + "name": "Jordan Korvac", + "site_detail_url": "https://comicvine.gamespot.com/jordan-korvac/4005-77869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77870/", + "id": 77870, + "name": "Myra Korvac", + "site_detail_url": "https://comicvine.gamespot.com/myra-korvac/4005-77870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77916/", + "id": 77916, + "name": "Drang", + "site_detail_url": "https://comicvine.gamespot.com/drang/4005-77916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77917/", + "id": 77917, + "name": "Maz", + "site_detail_url": "https://comicvine.gamespot.com/maz/4005-77917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77918/", + "id": 77918, + "name": "Maul", + "site_detail_url": "https://comicvine.gamespot.com/maul/4005-77918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77919/", + "id": 77919, + "name": "Muer", + "site_detail_url": "https://comicvine.gamespot.com/muer/4005-77919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77937/", + "id": 77937, + "name": "Chandra", + "site_detail_url": "https://comicvine.gamespot.com/chandra/4005-77937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77946/", + "id": 77946, + "name": "Sister Jenna", + "site_detail_url": "https://comicvine.gamespot.com/sister-jenna/4005-77946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77948/", + "id": 77948, + "name": "Sister Mary", + "site_detail_url": "https://comicvine.gamespot.com/sister-mary/4005-77948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77950/", + "id": 77950, + "name": "John Norman", + "site_detail_url": "https://comicvine.gamespot.com/john-norman/4005-77950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77951/", + "id": 77951, + "name": "Dr. Celia Quinones", + "site_detail_url": "https://comicvine.gamespot.com/dr-celia-quinones/4005-77951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77956/", + "id": 77956, + "name": "Gordo", + "site_detail_url": "https://comicvine.gamespot.com/gordo/4005-77956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77966/", + "id": 77966, + "name": "Zone", + "site_detail_url": "https://comicvine.gamespot.com/zone/4005-77966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-77983/", + "id": 77983, + "name": "Caitlin Johns", + "site_detail_url": "https://comicvine.gamespot.com/caitlin-johns/4005-77983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78010/", + "id": 78010, + "name": "Mr. Think", + "site_detail_url": "https://comicvine.gamespot.com/mr-think/4005-78010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78011/", + "id": 78011, + "name": "Badger Teeth", + "site_detail_url": "https://comicvine.gamespot.com/badger-teeth/4005-78011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78013/", + "id": 78013, + "name": "Haymaker", + "site_detail_url": "https://comicvine.gamespot.com/haymaker/4005-78013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78017/", + "id": 78017, + "name": "Flashframe", + "site_detail_url": "https://comicvine.gamespot.com/flashframe/4005-78017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78018/", + "id": 78018, + "name": "T.B.C.", + "site_detail_url": "https://comicvine.gamespot.com/tbc/4005-78018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78019/", + "id": 78019, + "name": "Input", + "site_detail_url": "https://comicvine.gamespot.com/input/4005-78019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78020/", + "id": 78020, + "name": "Jumpcut", + "site_detail_url": "https://comicvine.gamespot.com/jumpcut/4005-78020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78021/", + "id": 78021, + "name": "Dirty Head", + "site_detail_url": "https://comicvine.gamespot.com/dirty-head/4005-78021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78022/", + "id": 78022, + "name": "Remote", + "site_detail_url": "https://comicvine.gamespot.com/remote/4005-78022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78023/", + "id": 78023, + "name": "Gossip Girl", + "site_detail_url": "https://comicvine.gamespot.com/gossip-girl/4005-78023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78024/", + "id": 78024, + "name": "Fumes", + "site_detail_url": "https://comicvine.gamespot.com/fumes/4005-78024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78027/", + "id": 78027, + "name": "Lord Deathstrike", + "site_detail_url": "https://comicvine.gamespot.com/lord-deathstrike/4005-78027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78030/", + "id": 78030, + "name": "Skratt", + "site_detail_url": "https://comicvine.gamespot.com/skratt/4005-78030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78060/", + "id": 78060, + "name": "Jen Cooke", + "site_detail_url": "https://comicvine.gamespot.com/jen-cooke/4005-78060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78064/", + "id": 78064, + "name": "Major Purge", + "site_detail_url": "https://comicvine.gamespot.com/major-purge/4005-78064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78071/", + "id": 78071, + "name": "Daegon", + "site_detail_url": "https://comicvine.gamespot.com/daegon/4005-78071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78097/", + "id": 78097, + "name": "Max Hammer", + "site_detail_url": "https://comicvine.gamespot.com/max-hammer/4005-78097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78098/", + "id": 78098, + "name": "Captain Cybor", + "site_detail_url": "https://comicvine.gamespot.com/captain-cybor/4005-78098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78122/", + "id": 78122, + "name": "Dermot Cusack", + "site_detail_url": "https://comicvine.gamespot.com/dermot-cusack/4005-78122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78123/", + "id": 78123, + "name": "Ngultor", + "site_detail_url": "https://comicvine.gamespot.com/ngultor/4005-78123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78127/", + "id": 78127, + "name": "Kaaj", + "site_detail_url": "https://comicvine.gamespot.com/kaaj/4005-78127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78129/", + "id": 78129, + "name": "Hal Wyeth", + "site_detail_url": "https://comicvine.gamespot.com/hal-wyeth/4005-78129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78131/", + "id": 78131, + "name": "Alex Dumant", + "site_detail_url": "https://comicvine.gamespot.com/alex-dumant/4005-78131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78132/", + "id": 78132, + "name": "Sutek", + "site_detail_url": "https://comicvine.gamespot.com/sutek/4005-78132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78133/", + "id": 78133, + "name": "T'Kell", + "site_detail_url": "https://comicvine.gamespot.com/tkell/4005-78133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78134/", + "id": 78134, + "name": "John Stone", + "site_detail_url": "https://comicvine.gamespot.com/john-stone/4005-78134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78135/", + "id": 78135, + "name": "Tagok", + "site_detail_url": "https://comicvine.gamespot.com/tagok/4005-78135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78145/", + "id": 78145, + "name": "Kir", + "site_detail_url": "https://comicvine.gamespot.com/kir/4005-78145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78146/", + "id": 78146, + "name": "Kolj", + "site_detail_url": "https://comicvine.gamespot.com/kolj/4005-78146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78147/", + "id": 78147, + "name": "Virka", + "site_detail_url": "https://comicvine.gamespot.com/virka/4005-78147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78153/", + "id": 78153, + "name": "Mahirn", + "site_detail_url": "https://comicvine.gamespot.com/mahirn/4005-78153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78154/", + "id": 78154, + "name": "Clare Thorn", + "site_detail_url": "https://comicvine.gamespot.com/clare-thorn/4005-78154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78155/", + "id": 78155, + "name": "Toth", + "site_detail_url": "https://comicvine.gamespot.com/toth/4005-78155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78156/", + "id": 78156, + "name": "Toluk", + "site_detail_url": "https://comicvine.gamespot.com/toluk/4005-78156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78157/", + "id": 78157, + "name": "Narten Phayn Drexler", + "site_detail_url": "https://comicvine.gamespot.com/narten-phayn-drexler/4005-78157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78158/", + "id": 78158, + "name": "Guiding Light", + "site_detail_url": "https://comicvine.gamespot.com/guiding-light/4005-78158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78191/", + "id": 78191, + "name": "Vora", + "site_detail_url": "https://comicvine.gamespot.com/vora/4005-78191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78204/", + "id": 78204, + "name": "Maria-062", + "site_detail_url": "https://comicvine.gamespot.com/maria-062/4005-78204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78207/", + "id": 78207, + "name": "Black-Four", + "site_detail_url": "https://comicvine.gamespot.com/black-four/4005-78207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78208/", + "id": 78208, + "name": "Black-Three", + "site_detail_url": "https://comicvine.gamespot.com/black-three/4005-78208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78209/", + "id": 78209, + "name": "Black-Two", + "site_detail_url": "https://comicvine.gamespot.com/black-two/4005-78209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78210/", + "id": 78210, + "name": "Black-One", + "site_detail_url": "https://comicvine.gamespot.com/black-one/4005-78210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78231/", + "id": 78231, + "name": "Baron Hugo", + "site_detail_url": "https://comicvine.gamespot.com/baron-hugo/4005-78231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78234/", + "id": 78234, + "name": "Ambassador Gorzenko", + "site_detail_url": "https://comicvine.gamespot.com/ambassador-gorzenko/4005-78234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78236/", + "id": 78236, + "name": "Alturi", + "site_detail_url": "https://comicvine.gamespot.com/alturi/4005-78236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78237/", + "id": 78237, + "name": "Aradnea", + "site_detail_url": "https://comicvine.gamespot.com/aradnea/4005-78237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78238/", + "id": 78238, + "name": "Kargus the Deadly", + "site_detail_url": "https://comicvine.gamespot.com/kargus-the-deadly/4005-78238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78239/", + "id": 78239, + "name": "Ry", + "site_detail_url": "https://comicvine.gamespot.com/ry/4005-78239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78240/", + "id": 78240, + "name": "Warka", + "site_detail_url": "https://comicvine.gamespot.com/warka/4005-78240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78256/", + "id": 78256, + "name": "Richard Davies", + "site_detail_url": "https://comicvine.gamespot.com/richard-davies/4005-78256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78257/", + "id": 78257, + "name": "Walter Coleman", + "site_detail_url": "https://comicvine.gamespot.com/walter-coleman/4005-78257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78258/", + "id": 78258, + "name": "Mateo Caldron", + "site_detail_url": "https://comicvine.gamespot.com/mateo-caldron/4005-78258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78265/", + "id": 78265, + "name": "Brucal", + "site_detail_url": "https://comicvine.gamespot.com/brucal/4005-78265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78266/", + "id": 78266, + "name": "Fannon", + "site_detail_url": "https://comicvine.gamespot.com/fannon/4005-78266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78268/", + "id": 78268, + "name": "Borric", + "site_detail_url": "https://comicvine.gamespot.com/borric/4005-78268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78269/", + "id": 78269, + "name": "Meecham", + "site_detail_url": "https://comicvine.gamespot.com/meecham/4005-78269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78270/", + "id": 78270, + "name": "Kulgan", + "site_detail_url": "https://comicvine.gamespot.com/kulgan/4005-78270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78271/", + "id": 78271, + "name": "Carline", + "site_detail_url": "https://comicvine.gamespot.com/carline/4005-78271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78272/", + "id": 78272, + "name": "Arutha", + "site_detail_url": "https://comicvine.gamespot.com/arutha/4005-78272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78273/", + "id": 78273, + "name": "Lyam", + "site_detail_url": "https://comicvine.gamespot.com/lyam/4005-78273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78274/", + "id": 78274, + "name": "Pug", + "site_detail_url": "https://comicvine.gamespot.com/pug/4005-78274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78275/", + "id": 78275, + "name": "Josh Pike", + "site_detail_url": "https://comicvine.gamespot.com/josh-pike/4005-78275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78292/", + "id": 78292, + "name": "Eight-Ball", + "site_detail_url": "https://comicvine.gamespot.com/eight-ball/4005-78292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78293/", + "id": 78293, + "name": "Adam Crowe", + "site_detail_url": "https://comicvine.gamespot.com/adam-crowe/4005-78293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78304/", + "id": 78304, + "name": "Klobok", + "site_detail_url": "https://comicvine.gamespot.com/klobok/4005-78304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78314/", + "id": 78314, + "name": "Adam", + "site_detail_url": "https://comicvine.gamespot.com/adam/4005-78314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78328/", + "id": 78328, + "name": "Shane Samson", + "site_detail_url": "https://comicvine.gamespot.com/shane-samson/4005-78328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78333/", + "id": 78333, + "name": "Yssir", + "site_detail_url": "https://comicvine.gamespot.com/yssir/4005-78333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78337/", + "id": 78337, + "name": "The Slaver", + "site_detail_url": "https://comicvine.gamespot.com/the-slaver/4005-78337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78339/", + "id": 78339, + "name": "Boss Barker", + "site_detail_url": "https://comicvine.gamespot.com/boss-barker/4005-78339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78340/", + "id": 78340, + "name": "Lippy Louie", + "site_detail_url": "https://comicvine.gamespot.com/lippy-louie/4005-78340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78356/", + "id": 78356, + "name": "Napoleon G. Robberson", + "site_detail_url": "https://comicvine.gamespot.com/napoleon-g-robberson/4005-78356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78358/", + "id": 78358, + "name": "Gimlet", + "site_detail_url": "https://comicvine.gamespot.com/gimlet/4005-78358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78369/", + "id": 78369, + "name": "Leah", + "site_detail_url": "https://comicvine.gamespot.com/leah/4005-78369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78370/", + "id": 78370, + "name": "Franklin Mendez", + "site_detail_url": "https://comicvine.gamespot.com/franklin-mendez/4005-78370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78376/", + "id": 78376, + "name": "Kharg", + "site_detail_url": "https://comicvine.gamespot.com/kharg/4005-78376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78380/", + "id": 78380, + "name": "Collins", + "site_detail_url": "https://comicvine.gamespot.com/collins/4005-78380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78383/", + "id": 78383, + "name": "Snake Eyes", + "site_detail_url": "https://comicvine.gamespot.com/snake-eyes/4005-78383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78390/", + "id": 78390, + "name": "General Robles", + "site_detail_url": "https://comicvine.gamespot.com/general-robles/4005-78390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78391/", + "id": 78391, + "name": "Luis", + "site_detail_url": "https://comicvine.gamespot.com/luis/4005-78391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78407/", + "id": 78407, + "name": "Paul Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/paul-hamilton/4005-78407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78408/", + "id": 78408, + "name": "The Undertaker", + "site_detail_url": "https://comicvine.gamespot.com/the-undertaker/4005-78408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78418/", + "id": 78418, + "name": "Mooneye", + "site_detail_url": "https://comicvine.gamespot.com/mooneye/4005-78418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78419/", + "id": 78419, + "name": "Obar", + "site_detail_url": "https://comicvine.gamespot.com/obar/4005-78419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78429/", + "id": 78429, + "name": "Ramona", + "site_detail_url": "https://comicvine.gamespot.com/ramona/4005-78429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78440/", + "id": 78440, + "name": "Tatia", + "site_detail_url": "https://comicvine.gamespot.com/tatia/4005-78440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78441/", + "id": 78441, + "name": "Emuel", + "site_detail_url": "https://comicvine.gamespot.com/emuel/4005-78441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78456/", + "id": 78456, + "name": "Seth Waters", + "site_detail_url": "https://comicvine.gamespot.com/seth-waters/4005-78456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78457/", + "id": 78457, + "name": "Johanna Maley", + "site_detail_url": "https://comicvine.gamespot.com/johanna-maley/4005-78457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78473/", + "id": 78473, + "name": "Kyle Jinadu", + "site_detail_url": "https://comicvine.gamespot.com/kyle-jinadu/4005-78473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78474/", + "id": 78474, + "name": "Jeremy Briggs", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-briggs/4005-78474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78475/", + "id": 78475, + "name": "Weston Minkovitch", + "site_detail_url": "https://comicvine.gamespot.com/weston-minkovitch/4005-78475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78476/", + "id": 78476, + "name": "Kelly", + "site_detail_url": "https://comicvine.gamespot.com/kelly/4005-78476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78477/", + "id": 78477, + "name": "Steve", + "site_detail_url": "https://comicvine.gamespot.com/steve/4005-78477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78493/", + "id": 78493, + "name": "Magnetic Man", + "site_detail_url": "https://comicvine.gamespot.com/magnetic-man/4005-78493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78499/", + "id": 78499, + "name": "Night Phantom", + "site_detail_url": "https://comicvine.gamespot.com/night-phantom/4005-78499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78544/", + "id": 78544, + "name": "Colonel Ling", + "site_detail_url": "https://comicvine.gamespot.com/colonel-ling/4005-78544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78545/", + "id": 78545, + "name": "General Yuri Brushov", + "site_detail_url": "https://comicvine.gamespot.com/general-yuri-brushov/4005-78545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78548/", + "id": 78548, + "name": "Slow-Motion Jones", + "site_detail_url": "https://comicvine.gamespot.com/slow-motion-jones/4005-78548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78549/", + "id": 78549, + "name": "Horacio de la Fuente", + "site_detail_url": "https://comicvine.gamespot.com/horacio-de-la-fuente/4005-78549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78555/", + "id": 78555, + "name": "Man-Mountain Mario", + "site_detail_url": "https://comicvine.gamespot.com/man-mountain-mario/4005-78555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78565/", + "id": 78565, + "name": "Sofia Strange", + "site_detail_url": "https://comicvine.gamespot.com/sofia-strange/4005-78565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78585/", + "id": 78585, + "name": "Alice", + "site_detail_url": "https://comicvine.gamespot.com/alice/4005-78585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78625/", + "id": 78625, + "name": "Psi-Borg", + "site_detail_url": "https://comicvine.gamespot.com/psi-borg/4005-78625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78667/", + "id": 78667, + "name": "Comet Pierce", + "site_detail_url": "https://comicvine.gamespot.com/comet-pierce/4005-78667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78769/", + "id": 78769, + "name": "Captain Flame", + "site_detail_url": "https://comicvine.gamespot.com/captain-flame/4005-78769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78780/", + "id": 78780, + "name": "Nata", + "site_detail_url": "https://comicvine.gamespot.com/nata/4005-78780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78781/", + "id": 78781, + "name": "Riek Bukenya", + "site_detail_url": "https://comicvine.gamespot.com/riek-bukenya/4005-78781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78782/", + "id": 78782, + "name": "Seiji Honda", + "site_detail_url": "https://comicvine.gamespot.com/seiji-honda/4005-78782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78805/", + "id": 78805, + "name": "Duncan Sebast", + "site_detail_url": "https://comicvine.gamespot.com/duncan-sebast/4005-78805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78806/", + "id": 78806, + "name": "Fugue", + "site_detail_url": "https://comicvine.gamespot.com/fugue/4005-78806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78807/", + "id": 78807, + "name": "Karbon", + "site_detail_url": "https://comicvine.gamespot.com/karbon/4005-78807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78808/", + "id": 78808, + "name": "Tattoo (Sokuto)", + "site_detail_url": "https://comicvine.gamespot.com/tattoo-sokuto/4005-78808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78811/", + "id": 78811, + "name": "Fractal", + "site_detail_url": "https://comicvine.gamespot.com/fractal/4005-78811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78812/", + "id": 78812, + "name": "Bubble", + "site_detail_url": "https://comicvine.gamespot.com/bubble/4005-78812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78813/", + "id": 78813, + "name": "Shrapnel", + "site_detail_url": "https://comicvine.gamespot.com/shrapnel/4005-78813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78826/", + "id": 78826, + "name": "Agent of Fortune", + "site_detail_url": "https://comicvine.gamespot.com/agent-of-fortune/4005-78826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78831/", + "id": 78831, + "name": "Lunatik", + "site_detail_url": "https://comicvine.gamespot.com/lunatik/4005-78831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78851/", + "id": 78851, + "name": "Manipulator", + "site_detail_url": "https://comicvine.gamespot.com/manipulator/4005-78851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78896/", + "id": 78896, + "name": "Mash-Up", + "site_detail_url": "https://comicvine.gamespot.com/mash-up/4005-78896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78897/", + "id": 78897, + "name": "Firefight", + "site_detail_url": "https://comicvine.gamespot.com/firefight/4005-78897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78909/", + "id": 78909, + "name": "Dr. Sofia Di Cosimo", + "site_detail_url": "https://comicvine.gamespot.com/dr-sofia-di-cosimo/4005-78909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78910/", + "id": 78910, + "name": "Annie", + "site_detail_url": "https://comicvine.gamespot.com/annie/4005-78910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78929/", + "id": 78929, + "name": "Anthony Serba", + "site_detail_url": "https://comicvine.gamespot.com/anthony-serba/4005-78929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78931/", + "id": 78931, + "name": "Ultimate Nullifier", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-nullifier/4005-78931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78932/", + "id": 78932, + "name": "Ms America", + "site_detail_url": "https://comicvine.gamespot.com/ms-america/4005-78932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78933/", + "id": 78933, + "name": "Turret", + "site_detail_url": "https://comicvine.gamespot.com/turret/4005-78933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78957/", + "id": 78957, + "name": "Link", + "site_detail_url": "https://comicvine.gamespot.com/link/4005-78957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78978/", + "id": 78978, + "name": "Allison McCourt", + "site_detail_url": "https://comicvine.gamespot.com/allison-mccourt/4005-78978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78981/", + "id": 78981, + "name": "Mary Campbell", + "site_detail_url": "https://comicvine.gamespot.com/mary-campbell/4005-78981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78982/", + "id": 78982, + "name": "Baby Bucky's Mother", + "site_detail_url": "https://comicvine.gamespot.com/baby-buckys-mother/4005-78982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78995/", + "id": 78995, + "name": "Vernon Hatchway", + "site_detail_url": "https://comicvine.gamespot.com/vernon-hatchway/4005-78995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78996/", + "id": 78996, + "name": "Fleet Master Rtas 'Vadum", + "site_detail_url": "https://comicvine.gamespot.com/fleet-master-rtas-vadum/4005-78996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78998/", + "id": 78998, + "name": "Kade Kilgore", + "site_detail_url": "https://comicvine.gamespot.com/kade-kilgore/4005-78998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79019/", + "id": 79019, + "name": "Ellen Whitby", + "site_detail_url": "https://comicvine.gamespot.com/ellen-whitby/4005-79019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79023/", + "id": 79023, + "name": "Jimmy Jupiter", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-jupiter/4005-79023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79024/", + "id": 79024, + "name": "Codename: Bravo", + "site_detail_url": "https://comicvine.gamespot.com/codename-bravo/4005-79024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79026/", + "id": 79026, + "name": "D-Mon", + "site_detail_url": "https://comicvine.gamespot.com/d-mon/4005-79026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79029/", + "id": 79029, + "name": "Huran", + "site_detail_url": "https://comicvine.gamespot.com/huran/4005-79029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79076/", + "id": 79076, + "name": "Riot Grrl", + "site_detail_url": "https://comicvine.gamespot.com/riot-grrl/4005-79076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79081/", + "id": 79081, + "name": "Kuurth", + "site_detail_url": "https://comicvine.gamespot.com/kuurth/4005-79081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79083/", + "id": 79083, + "name": "Human Wreck", + "site_detail_url": "https://comicvine.gamespot.com/human-wreck/4005-79083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79084/", + "id": 79084, + "name": "Elongated Armstrong", + "site_detail_url": "https://comicvine.gamespot.com/elongated-armstrong/4005-79084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79085/", + "id": 79085, + "name": "Super-Mummy", + "site_detail_url": "https://comicvine.gamespot.com/super-mummy/4005-79085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79135/", + "id": 79135, + "name": "Key", + "site_detail_url": "https://comicvine.gamespot.com/key/4005-79135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79136/", + "id": 79136, + "name": "Tiger", + "site_detail_url": "https://comicvine.gamespot.com/tiger/4005-79136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79146/", + "id": 79146, + "name": "Naiad", + "site_detail_url": "https://comicvine.gamespot.com/naiad/4005-79146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79155/", + "id": 79155, + "name": "Elsewhere", + "site_detail_url": "https://comicvine.gamespot.com/elsewhere/4005-79155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79156/", + "id": 79156, + "name": "Updraft", + "site_detail_url": "https://comicvine.gamespot.com/updraft/4005-79156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79158/", + "id": 79158, + "name": "Elf", + "site_detail_url": "https://comicvine.gamespot.com/elf/4005-79158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79159/", + "id": 79159, + "name": "Skylark", + "site_detail_url": "https://comicvine.gamespot.com/skylark/4005-79159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79160/", + "id": 79160, + "name": "Boggart", + "site_detail_url": "https://comicvine.gamespot.com/boggart/4005-79160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79161/", + "id": 79161, + "name": "Hothead", + "site_detail_url": "https://comicvine.gamespot.com/hothead/4005-79161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79162/", + "id": 79162, + "name": "Pinpoint", + "site_detail_url": "https://comicvine.gamespot.com/pinpoint/4005-79162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79163/", + "id": 79163, + "name": "Trovao", + "site_detail_url": "https://comicvine.gamespot.com/trovao/4005-79163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79164/", + "id": 79164, + "name": "Audio", + "site_detail_url": "https://comicvine.gamespot.com/audio/4005-79164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79165/", + "id": 79165, + "name": "Butterfly", + "site_detail_url": "https://comicvine.gamespot.com/butterfly/4005-79165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79166/", + "id": 79166, + "name": "Pinocchio", + "site_detail_url": "https://comicvine.gamespot.com/pinocchio/4005-79166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79167/", + "id": 79167, + "name": "Umbra", + "site_detail_url": "https://comicvine.gamespot.com/umbra/4005-79167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79168/", + "id": 79168, + "name": "Hitch-Hiker", + "site_detail_url": "https://comicvine.gamespot.com/hitch-hiker/4005-79168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79169/", + "id": 79169, + "name": "Cryptid", + "site_detail_url": "https://comicvine.gamespot.com/cryptid/4005-79169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79170/", + "id": 79170, + "name": "Protozoa", + "site_detail_url": "https://comicvine.gamespot.com/protozoa/4005-79170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79171/", + "id": 79171, + "name": "Xenon", + "site_detail_url": "https://comicvine.gamespot.com/xenon/4005-79171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79172/", + "id": 79172, + "name": "Cudgel", + "site_detail_url": "https://comicvine.gamespot.com/cudgel/4005-79172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79173/", + "id": 79173, + "name": "Lipid", + "site_detail_url": "https://comicvine.gamespot.com/lipid/4005-79173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79174/", + "id": 79174, + "name": "Iolanthe", + "site_detail_url": "https://comicvine.gamespot.com/iolanthe/4005-79174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79175/", + "id": 79175, + "name": "Spirit", + "site_detail_url": "https://comicvine.gamespot.com/spirit/4005-79175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79179/", + "id": 79179, + "name": "Troy Killkelly", + "site_detail_url": "https://comicvine.gamespot.com/troy-killkelly/4005-79179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79180/", + "id": 79180, + "name": "Lucien Goff", + "site_detail_url": "https://comicvine.gamespot.com/lucien-goff/4005-79180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79202/", + "id": 79202, + "name": "Kirsten McDuffie", + "site_detail_url": "https://comicvine.gamespot.com/kirsten-mcduffie/4005-79202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79203/", + "id": 79203, + "name": "Spike", + "site_detail_url": "https://comicvine.gamespot.com/spike/4005-79203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79204/", + "id": 79204, + "name": "Cephalopod", + "site_detail_url": "https://comicvine.gamespot.com/cephalopod/4005-79204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79207/", + "id": 79207, + "name": "Matt Decker", + "site_detail_url": "https://comicvine.gamespot.com/matt-decker/4005-79207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79208/", + "id": 79208, + "name": "Andrea Brand", + "site_detail_url": "https://comicvine.gamespot.com/andrea-brand/4005-79208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79209/", + "id": 79209, + "name": "Yoshi Mishima", + "site_detail_url": "https://comicvine.gamespot.com/yoshi-mishima/4005-79209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79210/", + "id": 79210, + "name": "Pava Ek'Noor sh'Aqabaa", + "site_detail_url": "https://comicvine.gamespot.com/pava-eknoor-shaqabaa/4005-79210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79211/", + "id": 79211, + "name": "Kamilah Goldstein", + "site_detail_url": "https://comicvine.gamespot.com/kamilah-goldstein/4005-79211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79212/", + "id": 79212, + "name": "T'Priell", + "site_detail_url": "https://comicvine.gamespot.com/tpriell/4005-79212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79213/", + "id": 79213, + "name": "Guvnor", + "site_detail_url": "https://comicvine.gamespot.com/guvnor/4005-79213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79214/", + "id": 79214, + "name": "Amy Stringer", + "site_detail_url": "https://comicvine.gamespot.com/amy-stringer/4005-79214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79215/", + "id": 79215, + "name": "Contact", + "site_detail_url": "https://comicvine.gamespot.com/contact/4005-79215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79216/", + "id": 79216, + "name": "Puppeteer", + "site_detail_url": "https://comicvine.gamespot.com/puppeteer/4005-79216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79217/", + "id": 79217, + "name": "Andre Mexer", + "site_detail_url": "https://comicvine.gamespot.com/andre-mexer/4005-79217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79231/", + "id": 79231, + "name": "Samurai", + "site_detail_url": "https://comicvine.gamespot.com/samurai/4005-79231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79234/", + "id": 79234, + "name": "Ghaszaszh Nyirh", + "site_detail_url": "https://comicvine.gamespot.com/ghaszaszh-nyirh/4005-79234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79236/", + "id": 79236, + "name": "Telark", + "site_detail_url": "https://comicvine.gamespot.com/telark/4005-79236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79238/", + "id": 79238, + "name": "Eques", + "site_detail_url": "https://comicvine.gamespot.com/eques/4005-79238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79260/", + "id": 79260, + "name": "Stealth", + "site_detail_url": "https://comicvine.gamespot.com/stealth/4005-79260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79261/", + "id": 79261, + "name": "Noise", + "site_detail_url": "https://comicvine.gamespot.com/noise/4005-79261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79262/", + "id": 79262, + "name": "Zapper", + "site_detail_url": "https://comicvine.gamespot.com/zapper/4005-79262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79264/", + "id": 79264, + "name": "Colin Hardy", + "site_detail_url": "https://comicvine.gamespot.com/colin-hardy/4005-79264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79266/", + "id": 79266, + "name": "Benedict Ryan", + "site_detail_url": "https://comicvine.gamespot.com/benedict-ryan/4005-79266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79269/", + "id": 79269, + "name": "Streetman", + "site_detail_url": "https://comicvine.gamespot.com/streetman/4005-79269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79272/", + "id": 79272, + "name": "Water Elemental", + "site_detail_url": "https://comicvine.gamespot.com/water-elemental/4005-79272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79276/", + "id": 79276, + "name": "Marcus Roston", + "site_detail_url": "https://comicvine.gamespot.com/marcus-roston/4005-79276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79296/", + "id": 79296, + "name": "Flood", + "site_detail_url": "https://comicvine.gamespot.com/flood/4005-79296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79297/", + "id": 79297, + "name": "View", + "site_detail_url": "https://comicvine.gamespot.com/view/4005-79297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79298/", + "id": 79298, + "name": "Mr. Macik", + "site_detail_url": "https://comicvine.gamespot.com/mr-macik/4005-79298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79299/", + "id": 79299, + "name": "Blondine", + "site_detail_url": "https://comicvine.gamespot.com/blondine/4005-79299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79300/", + "id": 79300, + "name": "Henry Gordon", + "site_detail_url": "https://comicvine.gamespot.com/henry-gordon/4005-79300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79301/", + "id": 79301, + "name": "Mrs. Macik", + "site_detail_url": "https://comicvine.gamespot.com/mrs-macik/4005-79301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79303/", + "id": 79303, + "name": "Kyethn Zund", + "site_detail_url": "https://comicvine.gamespot.com/kyethn-zund/4005-79303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79307/", + "id": 79307, + "name": "Paradox", + "site_detail_url": "https://comicvine.gamespot.com/paradox/4005-79307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79323/", + "id": 79323, + "name": "American Panther", + "site_detail_url": "https://comicvine.gamespot.com/american-panther/4005-79323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79324/", + "id": 79324, + "name": "Leonard Kornfeld", + "site_detail_url": "https://comicvine.gamespot.com/leonard-kornfeld/4005-79324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79345/", + "id": 79345, + "name": "Anya Derevkova", + "site_detail_url": "https://comicvine.gamespot.com/anya-derevkova/4005-79345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79346/", + "id": 79346, + "name": "Robert Decker", + "site_detail_url": "https://comicvine.gamespot.com/robert-decker/4005-79346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79347/", + "id": 79347, + "name": "Olaf Kjelgaard", + "site_detail_url": "https://comicvine.gamespot.com/olaf-kjelgaard/4005-79347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79348/", + "id": 79348, + "name": "Jim Walters", + "site_detail_url": "https://comicvine.gamespot.com/jim-walters/4005-79348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79366/", + "id": 79366, + "name": "Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/evolutionary/4005-79366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79367/", + "id": 79367, + "name": "Flare", + "site_detail_url": "https://comicvine.gamespot.com/flare/4005-79367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79368/", + "id": 79368, + "name": "Orb", + "site_detail_url": "https://comicvine.gamespot.com/orb/4005-79368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79369/", + "id": 79369, + "name": "Pillar", + "site_detail_url": "https://comicvine.gamespot.com/pillar/4005-79369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79371/", + "id": 79371, + "name": "Repulse", + "site_detail_url": "https://comicvine.gamespot.com/repulse/4005-79371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79372/", + "id": 79372, + "name": "Zeeshan", + "site_detail_url": "https://comicvine.gamespot.com/zeeshan/4005-79372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79380/", + "id": 79380, + "name": "Claire Hudson", + "site_detail_url": "https://comicvine.gamespot.com/claire-hudson/4005-79380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79382/", + "id": 79382, + "name": "Sunstreak", + "site_detail_url": "https://comicvine.gamespot.com/sunstreak/4005-79382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79389/", + "id": 79389, + "name": "Avery Connor", + "site_detail_url": "https://comicvine.gamespot.com/avery-connor/4005-79389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79396/", + "id": 79396, + "name": "Wormhole", + "site_detail_url": "https://comicvine.gamespot.com/wormhole/4005-79396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79397/", + "id": 79397, + "name": "Stupor", + "site_detail_url": "https://comicvine.gamespot.com/stupor/4005-79397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79398/", + "id": 79398, + "name": "Phobia", + "site_detail_url": "https://comicvine.gamespot.com/phobia/4005-79398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79399/", + "id": 79399, + "name": "Imprint", + "site_detail_url": "https://comicvine.gamespot.com/imprint/4005-79399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79401/", + "id": 79401, + "name": "Scar Turpin", + "site_detail_url": "https://comicvine.gamespot.com/scar-turpin/4005-79401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79404/", + "id": 79404, + "name": "The Remora", + "site_detail_url": "https://comicvine.gamespot.com/the-remora/4005-79404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79405/", + "id": 79405, + "name": "Eric Kleinstock", + "site_detail_url": "https://comicvine.gamespot.com/eric-kleinstock/4005-79405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79406/", + "id": 79406, + "name": "Harlan Kleinstock", + "site_detail_url": "https://comicvine.gamespot.com/harlan-kleinstock/4005-79406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79407/", + "id": 79407, + "name": "Sven Kleinstock", + "site_detail_url": "https://comicvine.gamespot.com/sven-kleinstock/4005-79407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79417/", + "id": 79417, + "name": "Erlking", + "site_detail_url": "https://comicvine.gamespot.com/erlking/4005-79417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79420/", + "id": 79420, + "name": "Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales/4005-79420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79426/", + "id": 79426, + "name": "Chris McCarthy", + "site_detail_url": "https://comicvine.gamespot.com/chris-mccarthy/4005-79426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79429/", + "id": 79429, + "name": "Aala", + "site_detail_url": "https://comicvine.gamespot.com/aala/4005-79429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79430/", + "id": 79430, + "name": "One-Eyed Bill", + "site_detail_url": "https://comicvine.gamespot.com/one-eyed-bill/4005-79430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79438/", + "id": 79438, + "name": "Ed Marks", + "site_detail_url": "https://comicvine.gamespot.com/ed-marks/4005-79438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79439/", + "id": 79439, + "name": "Stalker", + "site_detail_url": "https://comicvine.gamespot.com/stalker/4005-79439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79440/", + "id": 79440, + "name": "Tony Robb", + "site_detail_url": "https://comicvine.gamespot.com/tony-robb/4005-79440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79441/", + "id": 79441, + "name": "William Evans, Jr.", + "site_detail_url": "https://comicvine.gamespot.com/william-evans-jr/4005-79441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79442/", + "id": 79442, + "name": "Irving Bank", + "site_detail_url": "https://comicvine.gamespot.com/irving-bank/4005-79442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79443/", + "id": 79443, + "name": "Meyer Banciewicz", + "site_detail_url": "https://comicvine.gamespot.com/meyer-banciewicz/4005-79443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79446/", + "id": 79446, + "name": "Jonathan Somers", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-somers/4005-79446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79447/", + "id": 79447, + "name": "Jessie Drake", + "site_detail_url": "https://comicvine.gamespot.com/jessie-drake/4005-79447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79451/", + "id": 79451, + "name": "Alecto", + "site_detail_url": "https://comicvine.gamespot.com/alecto/4005-79451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79453/", + "id": 79453, + "name": "Galina Tsarfin", + "site_detail_url": "https://comicvine.gamespot.com/galina-tsarfin/4005-79453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79454/", + "id": 79454, + "name": "Falki", + "site_detail_url": "https://comicvine.gamespot.com/falki/4005-79454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79455/", + "id": 79455, + "name": "Jessica Spector", + "site_detail_url": "https://comicvine.gamespot.com/jessica-spector/4005-79455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79456/", + "id": 79456, + "name": "Mrs. Abidemi", + "site_detail_url": "https://comicvine.gamespot.com/mrs-abidemi/4005-79456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79457/", + "id": 79457, + "name": "Sigmund", + "site_detail_url": "https://comicvine.gamespot.com/sigmund/4005-79457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79460/", + "id": 79460, + "name": "Tolliver Smith", + "site_detail_url": "https://comicvine.gamespot.com/tolliver-smith/4005-79460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79461/", + "id": 79461, + "name": "Garth", + "site_detail_url": "https://comicvine.gamespot.com/garth/4005-79461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79462/", + "id": 79462, + "name": "Ricky", + "site_detail_url": "https://comicvine.gamespot.com/ricky/4005-79462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79465/", + "id": 79465, + "name": "Elizabeth Tyne", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-tyne/4005-79465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79467/", + "id": 79467, + "name": "Nance Winters", + "site_detail_url": "https://comicvine.gamespot.com/nance-winters/4005-79467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79472/", + "id": 79472, + "name": "Walter Bolt", + "site_detail_url": "https://comicvine.gamespot.com/walter-bolt/4005-79472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79473/", + "id": 79473, + "name": "Oscar Clemons", + "site_detail_url": "https://comicvine.gamespot.com/oscar-clemons/4005-79473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79474/", + "id": 79474, + "name": "Sergeant Polkow", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-polkow/4005-79474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79488/", + "id": 79488, + "name": "Crawler", + "site_detail_url": "https://comicvine.gamespot.com/crawler/4005-79488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79489/", + "id": 79489, + "name": "Leiko Tan", + "site_detail_url": "https://comicvine.gamespot.com/leiko-tan/4005-79489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79491/", + "id": 79491, + "name": "Stalwart", + "site_detail_url": "https://comicvine.gamespot.com/stalwart/4005-79491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79492/", + "id": 79492, + "name": "Keratin", + "site_detail_url": "https://comicvine.gamespot.com/keratin/4005-79492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79493/", + "id": 79493, + "name": "Polymer", + "site_detail_url": "https://comicvine.gamespot.com/polymer/4005-79493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79494/", + "id": 79494, + "name": "Mentat", + "site_detail_url": "https://comicvine.gamespot.com/mentat/4005-79494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79495/", + "id": 79495, + "name": "Imp", + "site_detail_url": "https://comicvine.gamespot.com/imp/4005-79495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79496/", + "id": 79496, + "name": "Saurus", + "site_detail_url": "https://comicvine.gamespot.com/saurus/4005-79496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79497/", + "id": 79497, + "name": "Gelatin", + "site_detail_url": "https://comicvine.gamespot.com/gelatin/4005-79497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79498/", + "id": 79498, + "name": "Viskid", + "site_detail_url": "https://comicvine.gamespot.com/viskid/4005-79498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79499/", + "id": 79499, + "name": "Caput", + "site_detail_url": "https://comicvine.gamespot.com/caput/4005-79499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79500/", + "id": 79500, + "name": "Ruth Durie", + "site_detail_url": "https://comicvine.gamespot.com/ruth-durie/4005-79500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79501/", + "id": 79501, + "name": "Elanor Sandford", + "site_detail_url": "https://comicvine.gamespot.com/elanor-sandford/4005-79501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79502/", + "id": 79502, + "name": "Pako", + "site_detail_url": "https://comicvine.gamespot.com/pako/4005-79502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79503/", + "id": 79503, + "name": "Crater", + "site_detail_url": "https://comicvine.gamespot.com/crater/4005-79503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79504/", + "id": 79504, + "name": "Roger Fieldston", + "site_detail_url": "https://comicvine.gamespot.com/roger-fieldston/4005-79504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79516/", + "id": 79516, + "name": "Rikky Keegan", + "site_detail_url": "https://comicvine.gamespot.com/rikky-keegan/4005-79516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79517/", + "id": 79517, + "name": "Recordasphere", + "site_detail_url": "https://comicvine.gamespot.com/recordasphere/4005-79517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79532/", + "id": 79532, + "name": "Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/black-knight/4005-79532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79533/", + "id": 79533, + "name": "Mako", + "site_detail_url": "https://comicvine.gamespot.com/mako/4005-79533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79534/", + "id": 79534, + "name": "Radioactive Kid", + "site_detail_url": "https://comicvine.gamespot.com/radioactive-kid/4005-79534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79537/", + "id": 79537, + "name": "Andy Clark", + "site_detail_url": "https://comicvine.gamespot.com/andy-clark/4005-79537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79538/", + "id": 79538, + "name": "Jimmy Rubino", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-rubino/4005-79538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79541/", + "id": 79541, + "name": "Celestia Denton", + "site_detail_url": "https://comicvine.gamespot.com/celestia-denton/4005-79541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79542/", + "id": 79542, + "name": "Alvin Denton", + "site_detail_url": "https://comicvine.gamespot.com/alvin-denton/4005-79542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79547/", + "id": 79547, + "name": "General Haywerth", + "site_detail_url": "https://comicvine.gamespot.com/general-haywerth/4005-79547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79551/", + "id": 79551, + "name": "Major Love", + "site_detail_url": "https://comicvine.gamespot.com/major-love/4005-79551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79556/", + "id": 79556, + "name": "Bright Star", + "site_detail_url": "https://comicvine.gamespot.com/bright-star/4005-79556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79581/", + "id": 79581, + "name": "Rose Gilberti", + "site_detail_url": "https://comicvine.gamespot.com/rose-gilberti/4005-79581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79582/", + "id": 79582, + "name": "Petra Arkanian", + "site_detail_url": "https://comicvine.gamespot.com/petra-arkanian/4005-79582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79584/", + "id": 79584, + "name": "Valentine Wiggin", + "site_detail_url": "https://comicvine.gamespot.com/valentine-wiggin/4005-79584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79594/", + "id": 79594, + "name": "Mazer Rackham", + "site_detail_url": "https://comicvine.gamespot.com/mazer-rackham/4005-79594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79611/", + "id": 79611, + "name": "Eliot", + "site_detail_url": "https://comicvine.gamespot.com/eliot/4005-79611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79644/", + "id": 79644, + "name": "Bernard Worrell", + "site_detail_url": "https://comicvine.gamespot.com/bernard-worrell/4005-79644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79647/", + "id": 79647, + "name": "Ka-Zar (Rand)", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-rand/4005-79647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79669/", + "id": 79669, + "name": "Murg", + "site_detail_url": "https://comicvine.gamespot.com/murg/4005-79669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79670/", + "id": 79670, + "name": "Kovold", + "site_detail_url": "https://comicvine.gamespot.com/kovold/4005-79670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79674/", + "id": 79674, + "name": "Ghost Rider (Jones)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-jones/4005-79674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79702/", + "id": 79702, + "name": "Postmortem", + "site_detail_url": "https://comicvine.gamespot.com/postmortem/4005-79702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79707/", + "id": 79707, + "name": "Sara Bailey", + "site_detail_url": "https://comicvine.gamespot.com/sara-bailey/4005-79707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79750/", + "id": 79750, + "name": "Bloodstain", + "site_detail_url": "https://comicvine.gamespot.com/bloodstain/4005-79750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79751/", + "id": 79751, + "name": "Domino", + "site_detail_url": "https://comicvine.gamespot.com/domino/4005-79751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79761/", + "id": 79761, + "name": "Pariah", + "site_detail_url": "https://comicvine.gamespot.com/pariah/4005-79761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79762/", + "id": 79762, + "name": "Dr. Ingrid Thysson", + "site_detail_url": "https://comicvine.gamespot.com/dr-ingrid-thysson/4005-79762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79773/", + "id": 79773, + "name": "Franz Kraus", + "site_detail_url": "https://comicvine.gamespot.com/franz-kraus/4005-79773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79775/", + "id": 79775, + "name": "D'Von Kray", + "site_detail_url": "https://comicvine.gamespot.com/dvon-kray/4005-79775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79776/", + "id": 79776, + "name": "Franklin Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/franklin-rhodes/4005-79776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79780/", + "id": 79780, + "name": "Charles Montgomery", + "site_detail_url": "https://comicvine.gamespot.com/charles-montgomery/4005-79780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79781/", + "id": 79781, + "name": "Wheelchair Wanda", + "site_detail_url": "https://comicvine.gamespot.com/wheelchair-wanda/4005-79781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79782/", + "id": 79782, + "name": "Merlioni", + "site_detail_url": "https://comicvine.gamespot.com/merlioni/4005-79782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79809/", + "id": 79809, + "name": "Jerome Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/jerome-hamilton/4005-79809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79810/", + "id": 79810, + "name": "Kate Sawyer", + "site_detail_url": "https://comicvine.gamespot.com/kate-sawyer/4005-79810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79811/", + "id": 79811, + "name": "Diego Ardilles", + "site_detail_url": "https://comicvine.gamespot.com/diego-ardilles/4005-79811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79812/", + "id": 79812, + "name": "Paco Perez", + "site_detail_url": "https://comicvine.gamespot.com/paco-perez/4005-79812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79814/", + "id": 79814, + "name": "Agent Wright", + "site_detail_url": "https://comicvine.gamespot.com/agent-wright/4005-79814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79815/", + "id": 79815, + "name": "Louise Wright", + "site_detail_url": "https://comicvine.gamespot.com/louise-wright/4005-79815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79818/", + "id": 79818, + "name": "Super-Patriot", + "site_detail_url": "https://comicvine.gamespot.com/super-patriot/4005-79818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79879/", + "id": 79879, + "name": "Monster", + "site_detail_url": "https://comicvine.gamespot.com/monster/4005-79879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79900/", + "id": 79900, + "name": "Rachel Alves", + "site_detail_url": "https://comicvine.gamespot.com/rachel-alves/4005-79900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79909/", + "id": 79909, + "name": "Tam Anderson", + "site_detail_url": "https://comicvine.gamespot.com/tam-anderson/4005-79909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79913/", + "id": 79913, + "name": "Edam Astrun", + "site_detail_url": "https://comicvine.gamespot.com/edam-astrun/4005-79913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79934/", + "id": 79934, + "name": "Janice Hollenbeck", + "site_detail_url": "https://comicvine.gamespot.com/janice-hollenbeck/4005-79934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79973/", + "id": 79973, + "name": "Inka", + "site_detail_url": "https://comicvine.gamespot.com/inka/4005-79973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79974/", + "id": 79974, + "name": "Karrik", + "site_detail_url": "https://comicvine.gamespot.com/karrik/4005-79974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79975/", + "id": 79975, + "name": "Luna", + "site_detail_url": "https://comicvine.gamespot.com/luna/4005-79975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79976/", + "id": 79976, + "name": "Quickshot", + "site_detail_url": "https://comicvine.gamespot.com/quickshot/4005-79976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79977/", + "id": 79977, + "name": "Ghost Blade", + "site_detail_url": "https://comicvine.gamespot.com/ghost-blade/4005-79977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-79978/", + "id": 79978, + "name": "Visigoth", + "site_detail_url": "https://comicvine.gamespot.com/visigoth/4005-79978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80047/", + "id": 80047, + "name": "Patrick Stansfield", + "site_detail_url": "https://comicvine.gamespot.com/patrick-stansfield/4005-80047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80048/", + "id": 80048, + "name": "Julie Traylor", + "site_detail_url": "https://comicvine.gamespot.com/julie-traylor/4005-80048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80072/", + "id": 80072, + "name": "Mike Pearse", + "site_detail_url": "https://comicvine.gamespot.com/mike-pearse/4005-80072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80073/", + "id": 80073, + "name": "Andy Seifert", + "site_detail_url": "https://comicvine.gamespot.com/andy-seifert/4005-80073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80135/", + "id": 80135, + "name": "Ellissya", + "site_detail_url": "https://comicvine.gamespot.com/ellissya/4005-80135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80164/", + "id": 80164, + "name": "Belinda Bell", + "site_detail_url": "https://comicvine.gamespot.com/belinda-bell/4005-80164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80165/", + "id": 80165, + "name": "Pamela Quinn", + "site_detail_url": "https://comicvine.gamespot.com/pamela-quinn/4005-80165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80167/", + "id": 80167, + "name": "Eddie Harris", + "site_detail_url": "https://comicvine.gamespot.com/eddie-harris/4005-80167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80260/", + "id": 80260, + "name": "Eve", + "site_detail_url": "https://comicvine.gamespot.com/eve/4005-80260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80261/", + "id": 80261, + "name": "Captain Rogers", + "site_detail_url": "https://comicvine.gamespot.com/captain-rogers/4005-80261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80265/", + "id": 80265, + "name": "Adam", + "site_detail_url": "https://comicvine.gamespot.com/adam/4005-80265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80295/", + "id": 80295, + "name": "Amadeus", + "site_detail_url": "https://comicvine.gamespot.com/amadeus/4005-80295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80299/", + "id": 80299, + "name": "Dr. Stillwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-stillwell/4005-80299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80318/", + "id": 80318, + "name": "Red Guardian (Granitsky)", + "site_detail_url": "https://comicvine.gamespot.com/red-guardian-granitsky/4005-80318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80319/", + "id": 80319, + "name": "Red Guardian (Anton)", + "site_detail_url": "https://comicvine.gamespot.com/red-guardian-anton/4005-80319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80329/", + "id": 80329, + "name": "Praeter", + "site_detail_url": "https://comicvine.gamespot.com/praeter/4005-80329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80351/", + "id": 80351, + "name": "Ganke Lee", + "site_detail_url": "https://comicvine.gamespot.com/ganke-lee/4005-80351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80352/", + "id": 80352, + "name": "Elaine Ann Walters", + "site_detail_url": "https://comicvine.gamespot.com/elaine-ann-walters/4005-80352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80354/", + "id": 80354, + "name": "Garth Of Mournhelm", + "site_detail_url": "https://comicvine.gamespot.com/garth-of-mournhelm/4005-80354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80363/", + "id": 80363, + "name": "Leslie Geraci", + "site_detail_url": "https://comicvine.gamespot.com/leslie-geraci/4005-80363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80364/", + "id": 80364, + "name": "Mario Geraci", + "site_detail_url": "https://comicvine.gamespot.com/mario-geraci/4005-80364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80368/", + "id": 80368, + "name": "Cleve Gorman", + "site_detail_url": "https://comicvine.gamespot.com/cleve-gorman/4005-80368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80372/", + "id": 80372, + "name": "Shakari", + "site_detail_url": "https://comicvine.gamespot.com/shakari/4005-80372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80377/", + "id": 80377, + "name": "Cynthia Glass", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-glass/4005-80377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80392/", + "id": 80392, + "name": "Queen Hydra", + "site_detail_url": "https://comicvine.gamespot.com/queen-hydra/4005-80392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80393/", + "id": 80393, + "name": "Lavender", + "site_detail_url": "https://comicvine.gamespot.com/lavender/4005-80393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80397/", + "id": 80397, + "name": "Xhoohx", + "site_detail_url": "https://comicvine.gamespot.com/xhoohx/4005-80397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80399/", + "id": 80399, + "name": "Officer Schlesinger", + "site_detail_url": "https://comicvine.gamespot.com/officer-schlesinger/4005-80399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80400/", + "id": 80400, + "name": "Officer Reuben", + "site_detail_url": "https://comicvine.gamespot.com/officer-reuben/4005-80400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80410/", + "id": 80410, + "name": "Marcus Immortus", + "site_detail_url": "https://comicvine.gamespot.com/marcus-immortus/4005-80410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80418/", + "id": 80418, + "name": "Cloud-Rider", + "site_detail_url": "https://comicvine.gamespot.com/cloud-rider/4005-80418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80419/", + "id": 80419, + "name": "Harper", + "site_detail_url": "https://comicvine.gamespot.com/harper/4005-80419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80421/", + "id": 80421, + "name": "Skellig", + "site_detail_url": "https://comicvine.gamespot.com/skellig/4005-80421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80423/", + "id": 80423, + "name": "Calligrapher", + "site_detail_url": "https://comicvine.gamespot.com/calligrapher/4005-80423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80428/", + "id": 80428, + "name": "Anthos", + "site_detail_url": "https://comicvine.gamespot.com/anthos/4005-80428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80454/", + "id": 80454, + "name": "Chaos", + "site_detail_url": "https://comicvine.gamespot.com/chaos/4005-80454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80465/", + "id": 80465, + "name": "Tarantula (Vasquez)", + "site_detail_url": "https://comicvine.gamespot.com/tarantula-vasquez/4005-80465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80466/", + "id": 80466, + "name": "Tarantula (Alvarez)", + "site_detail_url": "https://comicvine.gamespot.com/tarantula-alvarez/4005-80466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80472/", + "id": 80472, + "name": "Andrew Pauncholito", + "site_detail_url": "https://comicvine.gamespot.com/andrew-pauncholito/4005-80472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80473/", + "id": 80473, + "name": "Rob Little", + "site_detail_url": "https://comicvine.gamespot.com/rob-little/4005-80473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80474/", + "id": 80474, + "name": "Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/tarantula/4005-80474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80478/", + "id": 80478, + "name": "Timothy Harrison", + "site_detail_url": "https://comicvine.gamespot.com/timothy-harrison/4005-80478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80490/", + "id": 80490, + "name": "Agent Martins", + "site_detail_url": "https://comicvine.gamespot.com/agent-martins/4005-80490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80491/", + "id": 80491, + "name": "Roberto Cassada", + "site_detail_url": "https://comicvine.gamespot.com/roberto-cassada/4005-80491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80492/", + "id": 80492, + "name": "Michael Cassada", + "site_detail_url": "https://comicvine.gamespot.com/michael-cassada/4005-80492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80507/", + "id": 80507, + "name": "Hana", + "site_detail_url": "https://comicvine.gamespot.com/hana/4005-80507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80508/", + "id": 80508, + "name": "Interrogator", + "site_detail_url": "https://comicvine.gamespot.com/interrogator/4005-80508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80509/", + "id": 80509, + "name": "Mongu", + "site_detail_url": "https://comicvine.gamespot.com/mongu/4005-80509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80515/", + "id": 80515, + "name": "Dieter Lehmann", + "site_detail_url": "https://comicvine.gamespot.com/dieter-lehmann/4005-80515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80516/", + "id": 80516, + "name": "Pig Meachum", + "site_detail_url": "https://comicvine.gamespot.com/pig-meachum/4005-80516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80524/", + "id": 80524, + "name": "Georgie Simms", + "site_detail_url": "https://comicvine.gamespot.com/georgie-simms/4005-80524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80525/", + "id": 80525, + "name": "Kurod Ormaon", + "site_detail_url": "https://comicvine.gamespot.com/kurod-ormaon/4005-80525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80548/", + "id": 80548, + "name": "Heka-Nut", + "site_detail_url": "https://comicvine.gamespot.com/heka-nut/4005-80548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80552/", + "id": 80552, + "name": "Ashake Meroe", + "site_detail_url": "https://comicvine.gamespot.com/ashake-meroe/4005-80552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80565/", + "id": 80565, + "name": "Joe Cord", + "site_detail_url": "https://comicvine.gamespot.com/joe-cord/4005-80565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80578/", + "id": 80578, + "name": "Kid Gladiator", + "site_detail_url": "https://comicvine.gamespot.com/kid-gladiator/4005-80578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80579/", + "id": 80579, + "name": "The Rose (Blume)", + "site_detail_url": "https://comicvine.gamespot.com/the-rose-blume/4005-80579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80584/", + "id": 80584, + "name": "Hassan", + "site_detail_url": "https://comicvine.gamespot.com/hassan/4005-80584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80590/", + "id": 80590, + "name": "Warbird", + "site_detail_url": "https://comicvine.gamespot.com/warbird/4005-80590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80591/", + "id": 80591, + "name": "Broo", + "site_detail_url": "https://comicvine.gamespot.com/broo/4005-80591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80596/", + "id": 80596, + "name": "Amanda Von Doom", + "site_detail_url": "https://comicvine.gamespot.com/amanda-von-doom/4005-80596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80613/", + "id": 80613, + "name": "Primordius", + "site_detail_url": "https://comicvine.gamespot.com/primordius/4005-80613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80623/", + "id": 80623, + "name": "Lt. Alarnick", + "site_detail_url": "https://comicvine.gamespot.com/lt-alarnick/4005-80623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80624/", + "id": 80624, + "name": "First Sergeant Rowland", + "site_detail_url": "https://comicvine.gamespot.com/first-sergeant-rowland/4005-80624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80625/", + "id": 80625, + "name": "Private Daniels", + "site_detail_url": "https://comicvine.gamespot.com/private-daniels/4005-80625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80647/", + "id": 80647, + "name": "Jane Riley", + "site_detail_url": "https://comicvine.gamespot.com/jane-riley/4005-80647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80663/", + "id": 80663, + "name": "Manuel Enduque", + "site_detail_url": "https://comicvine.gamespot.com/manuel-enduque/4005-80663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80668/", + "id": 80668, + "name": "Wilhelmina Kensington", + "site_detail_url": "https://comicvine.gamespot.com/wilhelmina-kensington/4005-80668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80669/", + "id": 80669, + "name": "Flippo Ayala", + "site_detail_url": "https://comicvine.gamespot.com/flippo-ayala/4005-80669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80673/", + "id": 80673, + "name": "Cristu Bulat", + "site_detail_url": "https://comicvine.gamespot.com/cristu-bulat/4005-80673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80676/", + "id": 80676, + "name": "Maximilian Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/maximilian-frankenstein/4005-80676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80677/", + "id": 80677, + "name": "Tiberiu Bulat", + "site_detail_url": "https://comicvine.gamespot.com/tiberiu-bulat/4005-80677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80678/", + "id": 80678, + "name": "Vera Konstantin", + "site_detail_url": "https://comicvine.gamespot.com/vera-konstantin/4005-80678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80679/", + "id": 80679, + "name": "Viorica", + "site_detail_url": "https://comicvine.gamespot.com/viorica/4005-80679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80690/", + "id": 80690, + "name": "Fifty", + "site_detail_url": "https://comicvine.gamespot.com/fifty/4005-80690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80691/", + "id": 80691, + "name": "Leopoldo Luna", + "site_detail_url": "https://comicvine.gamespot.com/leopoldo-luna/4005-80691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80708/", + "id": 80708, + "name": "Big Top", + "site_detail_url": "https://comicvine.gamespot.com/big-top/4005-80708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80709/", + "id": 80709, + "name": "Ava Ayala", + "site_detail_url": "https://comicvine.gamespot.com/ava-ayala/4005-80709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80723/", + "id": 80723, + "name": "Carlton Kilgore", + "site_detail_url": "https://comicvine.gamespot.com/carlton-kilgore/4005-80723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80725/", + "id": 80725, + "name": "Nighteyes", + "site_detail_url": "https://comicvine.gamespot.com/nighteyes/4005-80725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80726/", + "id": 80726, + "name": "Nul", + "site_detail_url": "https://comicvine.gamespot.com/nul/4005-80726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80734/", + "id": 80734, + "name": "Andy Lorimer", + "site_detail_url": "https://comicvine.gamespot.com/andy-lorimer/4005-80734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80735/", + "id": 80735, + "name": "Count Dregon", + "site_detail_url": "https://comicvine.gamespot.com/count-dregon/4005-80735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80738/", + "id": 80738, + "name": "Peter Cooley", + "site_detail_url": "https://comicvine.gamespot.com/peter-cooley/4005-80738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80743/", + "id": 80743, + "name": "Egressor", + "site_detail_url": "https://comicvine.gamespot.com/egressor/4005-80743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80744/", + "id": 80744, + "name": "Exemplar", + "site_detail_url": "https://comicvine.gamespot.com/exemplar/4005-80744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80745/", + "id": 80745, + "name": "Anemone", + "site_detail_url": "https://comicvine.gamespot.com/anemone/4005-80745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80752/", + "id": 80752, + "name": "Nick Fury Jr.", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-jr/4005-80752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80762/", + "id": 80762, + "name": "Coldmoon", + "site_detail_url": "https://comicvine.gamespot.com/coldmoon/4005-80762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80763/", + "id": 80763, + "name": "Dragonfire", + "site_detail_url": "https://comicvine.gamespot.com/dragonfire/4005-80763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80765/", + "id": 80765, + "name": "Den Vakre", + "site_detail_url": "https://comicvine.gamespot.com/den-vakre/4005-80765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80776/", + "id": 80776, + "name": "Kasey Nash", + "site_detail_url": "https://comicvine.gamespot.com/kasey-nash/4005-80776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80778/", + "id": 80778, + "name": "Rico Estevez", + "site_detail_url": "https://comicvine.gamespot.com/rico-estevez/4005-80778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80786/", + "id": 80786, + "name": "Rana", + "site_detail_url": "https://comicvine.gamespot.com/rana/4005-80786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80792/", + "id": 80792, + "name": "Angela Daskalakis", + "site_detail_url": "https://comicvine.gamespot.com/angela-daskalakis/4005-80792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80793/", + "id": 80793, + "name": "George O'Hara", + "site_detail_url": "https://comicvine.gamespot.com/george-ohara/4005-80793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80794/", + "id": 80794, + "name": "Winston", + "site_detail_url": "https://comicvine.gamespot.com/winston/4005-80794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80795/", + "id": 80795, + "name": "Chill", + "site_detail_url": "https://comicvine.gamespot.com/chill/4005-80795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80796/", + "id": 80796, + "name": "Scratch", + "site_detail_url": "https://comicvine.gamespot.com/scratch/4005-80796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80797/", + "id": 80797, + "name": "Fade", + "site_detail_url": "https://comicvine.gamespot.com/fade/4005-80797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80803/", + "id": 80803, + "name": "Andrei", + "site_detail_url": "https://comicvine.gamespot.com/andrei/4005-80803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80806/", + "id": 80806, + "name": "Duke Stratosphere", + "site_detail_url": "https://comicvine.gamespot.com/duke-stratosphere/4005-80806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80807/", + "id": 80807, + "name": "Paloma", + "site_detail_url": "https://comicvine.gamespot.com/paloma/4005-80807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80809/", + "id": 80809, + "name": "Kazimierz", + "site_detail_url": "https://comicvine.gamespot.com/kazimierz/4005-80809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80810/", + "id": 80810, + "name": "Kerry Dowenn", + "site_detail_url": "https://comicvine.gamespot.com/kerry-dowenn/4005-80810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80811/", + "id": 80811, + "name": "Barrio Man", + "site_detail_url": "https://comicvine.gamespot.com/barrio-man/4005-80811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80812/", + "id": 80812, + "name": "Duke", + "site_detail_url": "https://comicvine.gamespot.com/duke/4005-80812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80813/", + "id": 80813, + "name": "Multi-Fractor", + "site_detail_url": "https://comicvine.gamespot.com/multi-fractor/4005-80813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80818/", + "id": 80818, + "name": "Zadixx", + "site_detail_url": "https://comicvine.gamespot.com/zadixx/4005-80818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80822/", + "id": 80822, + "name": "Gawain", + "site_detail_url": "https://comicvine.gamespot.com/gawain/4005-80822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80823/", + "id": 80823, + "name": "Quirk", + "site_detail_url": "https://comicvine.gamespot.com/quirk/4005-80823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80824/", + "id": 80824, + "name": "Aeneas", + "site_detail_url": "https://comicvine.gamespot.com/aeneas/4005-80824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80825/", + "id": 80825, + "name": "Keisha", + "site_detail_url": "https://comicvine.gamespot.com/keisha/4005-80825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80826/", + "id": 80826, + "name": "Audra", + "site_detail_url": "https://comicvine.gamespot.com/audra/4005-80826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80831/", + "id": 80831, + "name": "Oshemar", + "site_detail_url": "https://comicvine.gamespot.com/oshemar/4005-80831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80838/", + "id": 80838, + "name": "Raff", + "site_detail_url": "https://comicvine.gamespot.com/raff/4005-80838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80839/", + "id": 80839, + "name": "Bloodbath", + "site_detail_url": "https://comicvine.gamespot.com/bloodbath/4005-80839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80841/", + "id": 80841, + "name": "Spider-Cat", + "site_detail_url": "https://comicvine.gamespot.com/spider-cat/4005-80841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80842/", + "id": 80842, + "name": "Necrotek", + "site_detail_url": "https://comicvine.gamespot.com/necrotek/4005-80842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80845/", + "id": 80845, + "name": "Avatarr", + "site_detail_url": "https://comicvine.gamespot.com/avatarr/4005-80845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80846/", + "id": 80846, + "name": "Anderthorp Henton", + "site_detail_url": "https://comicvine.gamespot.com/anderthorp-henton/4005-80846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80847/", + "id": 80847, + "name": "Tiana Sikoski", + "site_detail_url": "https://comicvine.gamespot.com/tiana-sikoski/4005-80847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80848/", + "id": 80848, + "name": "Baldur 2099", + "site_detail_url": "https://comicvine.gamespot.com/baldur-2099/4005-80848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80849/", + "id": 80849, + "name": "Eev", + "site_detail_url": "https://comicvine.gamespot.com/eev/4005-80849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80850/", + "id": 80850, + "name": "Heimdall 2099", + "site_detail_url": "https://comicvine.gamespot.com/heimdall-2099/4005-80850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80851/", + "id": 80851, + "name": "Skip Ash", + "site_detail_url": "https://comicvine.gamespot.com/skip-ash/4005-80851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80854/", + "id": 80854, + "name": "Lady Sif (Cho-Foster)", + "site_detail_url": "https://comicvine.gamespot.com/lady-sif-cho-foster/4005-80854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80855/", + "id": 80855, + "name": "Bloodsword", + "site_detail_url": "https://comicvine.gamespot.com/bloodsword/4005-80855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80860/", + "id": 80860, + "name": "Xina Kwan", + "site_detail_url": "https://comicvine.gamespot.com/xina-kwan/4005-80860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80863/", + "id": 80863, + "name": "Lei Fong", + "site_detail_url": "https://comicvine.gamespot.com/lei-fong/4005-80863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80864/", + "id": 80864, + "name": "Vytali Morkovkin", + "site_detail_url": "https://comicvine.gamespot.com/vytali-morkovkin/4005-80864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80865/", + "id": 80865, + "name": "Feng Huang", + "site_detail_url": "https://comicvine.gamespot.com/feng-huang/4005-80865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80869/", + "id": 80869, + "name": "B.R.A.I.N.", + "site_detail_url": "https://comicvine.gamespot.com/brain/4005-80869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80870/", + "id": 80870, + "name": "Mister Gor", + "site_detail_url": "https://comicvine.gamespot.com/mister-gor/4005-80870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80876/", + "id": 80876, + "name": "Supramor", + "site_detail_url": "https://comicvine.gamespot.com/supramor/4005-80876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80880/", + "id": 80880, + "name": "Evil Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/evil-deadpool/4005-80880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80883/", + "id": 80883, + "name": "Winter Moran", + "site_detail_url": "https://comicvine.gamespot.com/winter-moran/4005-80883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80890/", + "id": 80890, + "name": "Christian L'Argent", + "site_detail_url": "https://comicvine.gamespot.com/christian-largent/4005-80890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80895/", + "id": 80895, + "name": "Margaretta von Geisterstadt", + "site_detail_url": "https://comicvine.gamespot.com/margaretta-von-geisterstadt/4005-80895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80896/", + "id": 80896, + "name": "General Czerny", + "site_detail_url": "https://comicvine.gamespot.com/general-czerny/4005-80896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80897/", + "id": 80897, + "name": "Erik Czerny", + "site_detail_url": "https://comicvine.gamespot.com/erik-czerny/4005-80897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80898/", + "id": 80898, + "name": "Monte Boscardin", + "site_detail_url": "https://comicvine.gamespot.com/monte-boscardin/4005-80898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80901/", + "id": 80901, + "name": "Lonnie Crews", + "site_detail_url": "https://comicvine.gamespot.com/lonnie-crews/4005-80901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80902/", + "id": 80902, + "name": "Private Aeder", + "site_detail_url": "https://comicvine.gamespot.com/private-aeder/4005-80902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80903/", + "id": 80903, + "name": "Lou Martini", + "site_detail_url": "https://comicvine.gamespot.com/lou-martini/4005-80903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80904/", + "id": 80904, + "name": "Arlen Miller", + "site_detail_url": "https://comicvine.gamespot.com/arlen-miller/4005-80904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80905/", + "id": 80905, + "name": "Jim Demaio", + "site_detail_url": "https://comicvine.gamespot.com/jim-demaio/4005-80905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80906/", + "id": 80906, + "name": "Dwight Jones", + "site_detail_url": "https://comicvine.gamespot.com/dwight-jones/4005-80906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80907/", + "id": 80907, + "name": "Mark Callahan", + "site_detail_url": "https://comicvine.gamespot.com/mark-callahan/4005-80907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80908/", + "id": 80908, + "name": "Chris Noel", + "site_detail_url": "https://comicvine.gamespot.com/chris-noel/4005-80908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80912/", + "id": 80912, + "name": "Public Enemy", + "site_detail_url": "https://comicvine.gamespot.com/public-enemy/4005-80912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80913/", + "id": 80913, + "name": "Water God", + "site_detail_url": "https://comicvine.gamespot.com/water-god/4005-80913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80914/", + "id": 80914, + "name": "Anna Coye", + "site_detail_url": "https://comicvine.gamespot.com/anna-coye/4005-80914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80915/", + "id": 80915, + "name": "Lt. Biggs", + "site_detail_url": "https://comicvine.gamespot.com/lt-biggs/4005-80915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80916/", + "id": 80916, + "name": "Sigurd", + "site_detail_url": "https://comicvine.gamespot.com/sigurd/4005-80916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80917/", + "id": 80917, + "name": "Necrosis", + "site_detail_url": "https://comicvine.gamespot.com/necrosis/4005-80917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80918/", + "id": 80918, + "name": "Painqueen", + "site_detail_url": "https://comicvine.gamespot.com/painqueen/4005-80918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80919/", + "id": 80919, + "name": "Litany Kirkpatrick", + "site_detail_url": "https://comicvine.gamespot.com/litany-kirkpatrick/4005-80919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80920/", + "id": 80920, + "name": "Doctor Pylon", + "site_detail_url": "https://comicvine.gamespot.com/doctor-pylon/4005-80920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80921/", + "id": 80921, + "name": "Doctor Phil", + "site_detail_url": "https://comicvine.gamespot.com/doctor-phil/4005-80921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80922/", + "id": 80922, + "name": "Marian Eisenhart", + "site_detail_url": "https://comicvine.gamespot.com/marian-eisenhart/4005-80922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80923/", + "id": 80923, + "name": "Galahad", + "site_detail_url": "https://comicvine.gamespot.com/galahad/4005-80923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80924/", + "id": 80924, + "name": "Suzanne Carter", + "site_detail_url": "https://comicvine.gamespot.com/suzanne-carter/4005-80924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80953/", + "id": 80953, + "name": "Draco", + "site_detail_url": "https://comicvine.gamespot.com/draco/4005-80953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80954/", + "id": 80954, + "name": "Hotwire", + "site_detail_url": "https://comicvine.gamespot.com/hotwire/4005-80954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80955/", + "id": 80955, + "name": "Anji Gallows", + "site_detail_url": "https://comicvine.gamespot.com/anji-gallows/4005-80955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80957/", + "id": 80957, + "name": "Synchron", + "site_detail_url": "https://comicvine.gamespot.com/synchron/4005-80957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80963/", + "id": 80963, + "name": "Manitou", + "site_detail_url": "https://comicvine.gamespot.com/manitou/4005-80963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80971/", + "id": 80971, + "name": "Derrick Storm", + "site_detail_url": "https://comicvine.gamespot.com/derrick-storm/4005-80971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80972/", + "id": 80972, + "name": "Clara Strike", + "site_detail_url": "https://comicvine.gamespot.com/clara-strike/4005-80972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80975/", + "id": 80975, + "name": "Angel Zamora", + "site_detail_url": "https://comicvine.gamespot.com/angel-zamora/4005-80975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80976/", + "id": 80976, + "name": "Cybershaman", + "site_detail_url": "https://comicvine.gamespot.com/cybershaman/4005-80976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80977/", + "id": 80977, + "name": "Nikolai Apolonio", + "site_detail_url": "https://comicvine.gamespot.com/nikolai-apolonio/4005-80977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80978/", + "id": 80978, + "name": "Adonai", + "site_detail_url": "https://comicvine.gamespot.com/adonai/4005-80978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80979/", + "id": 80979, + "name": "Ken Ironwine", + "site_detail_url": "https://comicvine.gamespot.com/ken-ironwine/4005-80979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80980/", + "id": 80980, + "name": "José Fleischmann", + "site_detail_url": "https://comicvine.gamespot.com/jose-fleischmann/4005-80980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80981/", + "id": 80981, + "name": "Queen Okusana", + "site_detail_url": "https://comicvine.gamespot.com/queen-okusana/4005-80981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80982/", + "id": 80982, + "name": "Nafkeh", + "site_detail_url": "https://comicvine.gamespot.com/nafkeh/4005-80982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80983/", + "id": 80983, + "name": "Indigo Eshun", + "site_detail_url": "https://comicvine.gamespot.com/indigo-eshun/4005-80983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80984/", + "id": 80984, + "name": "Communion Jack", + "site_detail_url": "https://comicvine.gamespot.com/communion-jack/4005-80984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80985/", + "id": 80985, + "name": "Nkrumah", + "site_detail_url": "https://comicvine.gamespot.com/nkrumah/4005-80985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80987/", + "id": 80987, + "name": "Sharp Blue", + "site_detail_url": "https://comicvine.gamespot.com/sharp-blue/4005-80987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80993/", + "id": 80993, + "name": "John Herod", + "site_detail_url": "https://comicvine.gamespot.com/john-herod/4005-80993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-80994/", + "id": 80994, + "name": "Anti-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/anti-hulk/4005-80994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81003/", + "id": 81003, + "name": "Els Udonta", + "site_detail_url": "https://comicvine.gamespot.com/els-udonta/4005-81003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81004/", + "id": 81004, + "name": "Dara Ko Eke", + "site_detail_url": "https://comicvine.gamespot.com/dara-ko-eke/4005-81004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81005/", + "id": 81005, + "name": "Voorr", + "site_detail_url": "https://comicvine.gamespot.com/voorr/4005-81005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81006/", + "id": 81006, + "name": "Prax Ord", + "site_detail_url": "https://comicvine.gamespot.com/prax-ord/4005-81006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81007/", + "id": 81007, + "name": "Hooud", + "site_detail_url": "https://comicvine.gamespot.com/hooud/4005-81007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81008/", + "id": 81008, + "name": "Kal Blackbane", + "site_detail_url": "https://comicvine.gamespot.com/kal-blackbane/4005-81008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81024/", + "id": 81024, + "name": "Aqualung", + "site_detail_url": "https://comicvine.gamespot.com/aqualung/4005-81024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81025/", + "id": 81025, + "name": "Helter Skelter", + "site_detail_url": "https://comicvine.gamespot.com/helter-skelter/4005-81025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81026/", + "id": 81026, + "name": "Purple Haze", + "site_detail_url": "https://comicvine.gamespot.com/purple-haze/4005-81026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81027/", + "id": 81027, + "name": "Space Oddity", + "site_detail_url": "https://comicvine.gamespot.com/space-oddity/4005-81027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81028/", + "id": 81028, + "name": "Wooly Bully", + "site_detail_url": "https://comicvine.gamespot.com/wooly-bully/4005-81028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81029/", + "id": 81029, + "name": "Aquon", + "site_detail_url": "https://comicvine.gamespot.com/aquon/4005-81029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81030/", + "id": 81030, + "name": "Arms Merchant", + "site_detail_url": "https://comicvine.gamespot.com/arms-merchant/4005-81030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81031/", + "id": 81031, + "name": "Ars Magna", + "site_detail_url": "https://comicvine.gamespot.com/ars-magna/4005-81031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81032/", + "id": 81032, + "name": "Avro-X", + "site_detail_url": "https://comicvine.gamespot.com/avro-x/4005-81032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81033/", + "id": 81033, + "name": "Baby Elmo", + "site_detail_url": "https://comicvine.gamespot.com/baby-elmo/4005-81033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81035/", + "id": 81035, + "name": "Bad Guy", + "site_detail_url": "https://comicvine.gamespot.com/bad-guy/4005-81035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81036/", + "id": 81036, + "name": "Nathan Beame", + "site_detail_url": "https://comicvine.gamespot.com/nathan-beame/4005-81036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81037/", + "id": 81037, + "name": "Carlton Beatrice", + "site_detail_url": "https://comicvine.gamespot.com/carlton-beatrice/4005-81037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81038/", + "id": 81038, + "name": "Le Beaver", + "site_detail_url": "https://comicvine.gamespot.com/le-beaver/4005-81038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81039/", + "id": 81039, + "name": "Bzzk'Joh", + "site_detail_url": "https://comicvine.gamespot.com/bzzkjoh/4005-81039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81040/", + "id": 81040, + "name": "Big Mack", + "site_detail_url": "https://comicvine.gamespot.com/big-mack/4005-81040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81041/", + "id": 81041, + "name": "Black Justice", + "site_detail_url": "https://comicvine.gamespot.com/black-justice/4005-81041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81043/", + "id": 81043, + "name": "Blowfly", + "site_detail_url": "https://comicvine.gamespot.com/blowfly/4005-81043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81044/", + "id": 81044, + "name": "Nathan Boder", + "site_detail_url": "https://comicvine.gamespot.com/nathan-boder/4005-81044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81045/", + "id": 81045, + "name": "Lozof Burgen", + "site_detail_url": "https://comicvine.gamespot.com/lozof-burgen/4005-81045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81048/", + "id": 81048, + "name": "Calyxis", + "site_detail_url": "https://comicvine.gamespot.com/calyxis/4005-81048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81049/", + "id": 81049, + "name": "Harith Damyish", + "site_detail_url": "https://comicvine.gamespot.com/harith-damyish/4005-81049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81051/", + "id": 81051, + "name": "Conservator", + "site_detail_url": "https://comicvine.gamespot.com/conservator/4005-81051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81052/", + "id": 81052, + "name": "Crooked Face", + "site_detail_url": "https://comicvine.gamespot.com/crooked-face/4005-81052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81059/", + "id": 81059, + "name": "Major McCandles", + "site_detail_url": "https://comicvine.gamespot.com/major-mccandles/4005-81059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81064/", + "id": 81064, + "name": "Data Pirate", + "site_detail_url": "https://comicvine.gamespot.com/data-pirate/4005-81064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81065/", + "id": 81065, + "name": "Datavore", + "site_detail_url": "https://comicvine.gamespot.com/datavore/4005-81065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81066/", + "id": 81066, + "name": "Zalaski", + "site_detail_url": "https://comicvine.gamespot.com/zalaski/4005-81066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81067/", + "id": 81067, + "name": "Zamu", + "site_detail_url": "https://comicvine.gamespot.com/zamu/4005-81067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81071/", + "id": 81071, + "name": "Dennis Lawrence", + "site_detail_url": "https://comicvine.gamespot.com/dennis-lawrence/4005-81071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81087/", + "id": 81087, + "name": "Zeaklar Belgewater", + "site_detail_url": "https://comicvine.gamespot.com/zeaklar-belgewater/4005-81087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81089/", + "id": 81089, + "name": "Navajo Coyote", + "site_detail_url": "https://comicvine.gamespot.com/navajo-coyote/4005-81089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81090/", + "id": 81090, + "name": "King-Cake Killer", + "site_detail_url": "https://comicvine.gamespot.com/king-cake-killer/4005-81090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81091/", + "id": 81091, + "name": "Nezaral", + "site_detail_url": "https://comicvine.gamespot.com/nezaral/4005-81091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81092/", + "id": 81092, + "name": "Nirissa", + "site_detail_url": "https://comicvine.gamespot.com/nirissa/4005-81092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81093/", + "id": 81093, + "name": "Serra", + "site_detail_url": "https://comicvine.gamespot.com/serra/4005-81093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81095/", + "id": 81095, + "name": "Slith", + "site_detail_url": "https://comicvine.gamespot.com/slith/4005-81095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81106/", + "id": 81106, + "name": "Tate", + "site_detail_url": "https://comicvine.gamespot.com/tate/4005-81106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81107/", + "id": 81107, + "name": "Nullitor", + "site_detail_url": "https://comicvine.gamespot.com/nullitor/4005-81107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81108/", + "id": 81108, + "name": "Jonothan Cayre", + "site_detail_url": "https://comicvine.gamespot.com/jonothan-cayre/4005-81108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81109/", + "id": 81109, + "name": "Kagrok", + "site_detail_url": "https://comicvine.gamespot.com/kagrok/4005-81109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81133/", + "id": 81133, + "name": "Barrachus", + "site_detail_url": "https://comicvine.gamespot.com/barrachus/4005-81133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81134/", + "id": 81134, + "name": "Kalmari", + "site_detail_url": "https://comicvine.gamespot.com/kalmari/4005-81134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81135/", + "id": 81135, + "name": "Kalxor", + "site_detail_url": "https://comicvine.gamespot.com/kalxor/4005-81135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81136/", + "id": 81136, + "name": "Roderick Kane", + "site_detail_url": "https://comicvine.gamespot.com/roderick-kane/4005-81136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81137/", + "id": 81137, + "name": "Kanga Khan", + "site_detail_url": "https://comicvine.gamespot.com/kanga-khan/4005-81137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81142/", + "id": 81142, + "name": "Chip", + "site_detail_url": "https://comicvine.gamespot.com/chip/4005-81142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81143/", + "id": 81143, + "name": "She-Droid", + "site_detail_url": "https://comicvine.gamespot.com/she-droid/4005-81143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81144/", + "id": 81144, + "name": "Rose of Purity", + "site_detail_url": "https://comicvine.gamespot.com/rose-of-purity/4005-81144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81146/", + "id": 81146, + "name": "Paratron", + "site_detail_url": "https://comicvine.gamespot.com/paratron/4005-81146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81147/", + "id": 81147, + "name": "Octo-Sapien", + "site_detail_url": "https://comicvine.gamespot.com/octo-sapien/4005-81147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81150/", + "id": 81150, + "name": "J'son of Spartax", + "site_detail_url": "https://comicvine.gamespot.com/json-of-spartax/4005-81150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81154/", + "id": 81154, + "name": "Modebl", + "site_detail_url": "https://comicvine.gamespot.com/modebl/4005-81154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81155/", + "id": 81155, + "name": "Mecho-Assassin", + "site_detail_url": "https://comicvine.gamespot.com/mecho-assassin/4005-81155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81156/", + "id": 81156, + "name": "Iron Despot", + "site_detail_url": "https://comicvine.gamespot.com/iron-despot/4005-81156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81160/", + "id": 81160, + "name": "Professor Toshiro Mikashi", + "site_detail_url": "https://comicvine.gamespot.com/professor-toshiro-mikashi/4005-81160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81166/", + "id": 81166, + "name": "Eerok", + "site_detail_url": "https://comicvine.gamespot.com/eerok/4005-81166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81167/", + "id": 81167, + "name": "Effex", + "site_detail_url": "https://comicvine.gamespot.com/effex/4005-81167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81168/", + "id": 81168, + "name": "Ehrthold", + "site_detail_url": "https://comicvine.gamespot.com/ehrthold/4005-81168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81169/", + "id": 81169, + "name": "Endotherm", + "site_detail_url": "https://comicvine.gamespot.com/endotherm/4005-81169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81171/", + "id": 81171, + "name": "Bishop", + "site_detail_url": "https://comicvine.gamespot.com/bishop/4005-81171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81173/", + "id": 81173, + "name": "Tiger Jani", + "site_detail_url": "https://comicvine.gamespot.com/tiger-jani/4005-81173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81175/", + "id": 81175, + "name": "Ennis Tremellyn", + "site_detail_url": "https://comicvine.gamespot.com/ennis-tremellyn/4005-81175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81176/", + "id": 81176, + "name": "Erdoes", + "site_detail_url": "https://comicvine.gamespot.com/erdoes/4005-81176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81177/", + "id": 81177, + "name": "Exploitinator", + "site_detail_url": "https://comicvine.gamespot.com/exploitinator/4005-81177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81178/", + "id": 81178, + "name": "Eye Patch", + "site_detail_url": "https://comicvine.gamespot.com/eye-patch/4005-81178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81179/", + "id": 81179, + "name": "Xtoral Laxtan", + "site_detail_url": "https://comicvine.gamespot.com/xtoral-laxtan/4005-81179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81184/", + "id": 81184, + "name": "Private Williams", + "site_detail_url": "https://comicvine.gamespot.com/private-williams/4005-81184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81186/", + "id": 81186, + "name": "Examiner", + "site_detail_url": "https://comicvine.gamespot.com/examiner/4005-81186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81187/", + "id": 81187, + "name": "Aldes Yancey", + "site_detail_url": "https://comicvine.gamespot.com/aldes-yancey/4005-81187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81189/", + "id": 81189, + "name": "Failure Five", + "site_detail_url": "https://comicvine.gamespot.com/failure-five/4005-81189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81190/", + "id": 81190, + "name": "Failsafe Protocol Omega", + "site_detail_url": "https://comicvine.gamespot.com/failsafe-protocol-omega/4005-81190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81191/", + "id": 81191, + "name": "Soteira", + "site_detail_url": "https://comicvine.gamespot.com/soteira/4005-81191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81192/", + "id": 81192, + "name": "Amanda Fallows", + "site_detail_url": "https://comicvine.gamespot.com/amanda-fallows/4005-81192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81193/", + "id": 81193, + "name": "Waldo Dini", + "site_detail_url": "https://comicvine.gamespot.com/waldo-dini/4005-81193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81194/", + "id": 81194, + "name": "Dr. Rogan", + "site_detail_url": "https://comicvine.gamespot.com/dr-rogan/4005-81194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81195/", + "id": 81195, + "name": "Fast John Silver", + "site_detail_url": "https://comicvine.gamespot.com/fast-john-silver/4005-81195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81196/", + "id": 81196, + "name": "Feathered Felon", + "site_detail_url": "https://comicvine.gamespot.com/feathered-felon/4005-81196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81197/", + "id": 81197, + "name": "Weylin Feepers", + "site_detail_url": "https://comicvine.gamespot.com/weylin-feepers/4005-81197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81198/", + "id": 81198, + "name": "Joust", + "site_detail_url": "https://comicvine.gamespot.com/joust/4005-81198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81199/", + "id": 81199, + "name": "Calico", + "site_detail_url": "https://comicvine.gamespot.com/calico/4005-81199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81203/", + "id": 81203, + "name": "The Demon", + "site_detail_url": "https://comicvine.gamespot.com/the-demon/4005-81203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81205/", + "id": 81205, + "name": "Martha Williams", + "site_detail_url": "https://comicvine.gamespot.com/martha-williams/4005-81205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81217/", + "id": 81217, + "name": "Brain Parasites", + "site_detail_url": "https://comicvine.gamespot.com/brain-parasites/4005-81217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81218/", + "id": 81218, + "name": "Styx", + "site_detail_url": "https://comicvine.gamespot.com/styx/4005-81218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81247/", + "id": 81247, + "name": "Rana Mousabi", + "site_detail_url": "https://comicvine.gamespot.com/rana-mousabi/4005-81247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81249/", + "id": 81249, + "name": "James-005", + "site_detail_url": "https://comicvine.gamespot.com/james-005/4005-81249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81255/", + "id": 81255, + "name": "Mannequin", + "site_detail_url": "https://comicvine.gamespot.com/mannequin/4005-81255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81271/", + "id": 81271, + "name": "Human Torch (Mangaverse)", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-mangaverse/4005-81271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81297/", + "id": 81297, + "name": "Karrin", + "site_detail_url": "https://comicvine.gamespot.com/karrin/4005-81297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81298/", + "id": 81298, + "name": "Darko", + "site_detail_url": "https://comicvine.gamespot.com/darko/4005-81298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81301/", + "id": 81301, + "name": "Akuma", + "site_detail_url": "https://comicvine.gamespot.com/akuma/4005-81301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81314/", + "id": 81314, + "name": "Claudia", + "site_detail_url": "https://comicvine.gamespot.com/claudia/4005-81314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81319/", + "id": 81319, + "name": "Hipshot", + "site_detail_url": "https://comicvine.gamespot.com/hipshot/4005-81319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81320/", + "id": 81320, + "name": "Squeeze", + "site_detail_url": "https://comicvine.gamespot.com/squeeze/4005-81320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81322/", + "id": 81322, + "name": "River Styx", + "site_detail_url": "https://comicvine.gamespot.com/river-styx/4005-81322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81323/", + "id": 81323, + "name": "Firewalker", + "site_detail_url": "https://comicvine.gamespot.com/firewalker/4005-81323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81324/", + "id": 81324, + "name": "Fishbone", + "site_detail_url": "https://comicvine.gamespot.com/fishbone/4005-81324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81325/", + "id": 81325, + "name": "The Red Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-red-celestial/4005-81325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81326/", + "id": 81326, + "name": "Oscar Martinez", + "site_detail_url": "https://comicvine.gamespot.com/oscar-martinez/4005-81326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81327/", + "id": 81327, + "name": "Howie Carson", + "site_detail_url": "https://comicvine.gamespot.com/howie-carson/4005-81327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81328/", + "id": 81328, + "name": "Ron Fuentes", + "site_detail_url": "https://comicvine.gamespot.com/ron-fuentes/4005-81328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81329/", + "id": 81329, + "name": "Irene Tsu", + "site_detail_url": "https://comicvine.gamespot.com/irene-tsu/4005-81329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81330/", + "id": 81330, + "name": "Wilbur Fiske", + "site_detail_url": "https://comicvine.gamespot.com/wilbur-fiske/4005-81330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81331/", + "id": 81331, + "name": "Printout Man", + "site_detail_url": "https://comicvine.gamespot.com/printout-man/4005-81331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81335/", + "id": 81335, + "name": "Joel Flood", + "site_detail_url": "https://comicvine.gamespot.com/joel-flood/4005-81335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81337/", + "id": 81337, + "name": "Howard Gideon", + "site_detail_url": "https://comicvine.gamespot.com/howard-gideon/4005-81337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81338/", + "id": 81338, + "name": "Florus Homo", + "site_detail_url": "https://comicvine.gamespot.com/florus-homo/4005-81338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81340/", + "id": 81340, + "name": "Bertie Flynn", + "site_detail_url": "https://comicvine.gamespot.com/bertie-flynn/4005-81340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81341/", + "id": 81341, + "name": "Fofo", + "site_detail_url": "https://comicvine.gamespot.com/fofo/4005-81341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81342/", + "id": 81342, + "name": "Cal Carlchok", + "site_detail_url": "https://comicvine.gamespot.com/cal-carlchok/4005-81342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81343/", + "id": 81343, + "name": "Bitsy", + "site_detail_url": "https://comicvine.gamespot.com/bitsy/4005-81343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81344/", + "id": 81344, + "name": "Federico Valencia", + "site_detail_url": "https://comicvine.gamespot.com/federico-valencia/4005-81344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81345/", + "id": 81345, + "name": "Rowkis", + "site_detail_url": "https://comicvine.gamespot.com/rowkis/4005-81345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81346/", + "id": 81346, + "name": "Cilla", + "site_detail_url": "https://comicvine.gamespot.com/cilla/4005-81346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81347/", + "id": 81347, + "name": "Yathalea Marcoule", + "site_detail_url": "https://comicvine.gamespot.com/yathalea-marcoule/4005-81347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81348/", + "id": 81348, + "name": "Rosa Belinski", + "site_detail_url": "https://comicvine.gamespot.com/rosa-belinski/4005-81348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81349/", + "id": 81349, + "name": "Cesar Belinski", + "site_detail_url": "https://comicvine.gamespot.com/cesar-belinski/4005-81349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81357/", + "id": 81357, + "name": "General Su", + "site_detail_url": "https://comicvine.gamespot.com/general-su/4005-81357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81358/", + "id": 81358, + "name": "Captain Fong", + "site_detail_url": "https://comicvine.gamespot.com/captain-fong/4005-81358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81363/", + "id": 81363, + "name": "Transom", + "site_detail_url": "https://comicvine.gamespot.com/transom/4005-81363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81368/", + "id": 81368, + "name": "Hardhat", + "site_detail_url": "https://comicvine.gamespot.com/hardhat/4005-81368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81369/", + "id": 81369, + "name": "Folio", + "site_detail_url": "https://comicvine.gamespot.com/folio/4005-81369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81371/", + "id": 81371, + "name": "Fastback", + "site_detail_url": "https://comicvine.gamespot.com/fastback/4005-81371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81372/", + "id": 81372, + "name": "Flintlock", + "site_detail_url": "https://comicvine.gamespot.com/flintlock/4005-81372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81401/", + "id": 81401, + "name": "Chisel", + "site_detail_url": "https://comicvine.gamespot.com/chisel/4005-81401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81402/", + "id": 81402, + "name": "Outback", + "site_detail_url": "https://comicvine.gamespot.com/outback/4005-81402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81403/", + "id": 81403, + "name": "Detective Fonti", + "site_detail_url": "https://comicvine.gamespot.com/detective-fonti/4005-81403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81404/", + "id": 81404, + "name": "Arnold Huff", + "site_detail_url": "https://comicvine.gamespot.com/arnold-huff/4005-81404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81408/", + "id": 81408, + "name": "Sarah Moreels", + "site_detail_url": "https://comicvine.gamespot.com/sarah-moreels/4005-81408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81409/", + "id": 81409, + "name": "Florinda", + "site_detail_url": "https://comicvine.gamespot.com/florinda/4005-81409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81411/", + "id": 81411, + "name": "Terrence Haller Jr.", + "site_detail_url": "https://comicvine.gamespot.com/terrence-haller-jr/4005-81411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81412/", + "id": 81412, + "name": "Terrence Haller III", + "site_detail_url": "https://comicvine.gamespot.com/terrence-haller-iii/4005-81412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81414/", + "id": 81414, + "name": "Scott Forbes", + "site_detail_url": "https://comicvine.gamespot.com/scott-forbes/4005-81414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81420/", + "id": 81420, + "name": "Gerald Forrester", + "site_detail_url": "https://comicvine.gamespot.com/gerald-forrester/4005-81420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81454/", + "id": 81454, + "name": "Levan", + "site_detail_url": "https://comicvine.gamespot.com/levan/4005-81454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81455/", + "id": 81455, + "name": "Kehl", + "site_detail_url": "https://comicvine.gamespot.com/kehl/4005-81455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81458/", + "id": 81458, + "name": "Governor Strelonivich", + "site_detail_url": "https://comicvine.gamespot.com/governor-strelonivich/4005-81458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81465/", + "id": 81465, + "name": "Trace", + "site_detail_url": "https://comicvine.gamespot.com/trace/4005-81465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81466/", + "id": 81466, + "name": "Christopher Bach", + "site_detail_url": "https://comicvine.gamespot.com/christopher-bach/4005-81466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81513/", + "id": 81513, + "name": "Foolkiller (Gerhardt)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-gerhardt/4005-81513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81515/", + "id": 81515, + "name": "Backhand", + "site_detail_url": "https://comicvine.gamespot.com/backhand/4005-81515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81516/", + "id": 81516, + "name": "Runyan Moody", + "site_detail_url": "https://comicvine.gamespot.com/runyan-moody/4005-81516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81517/", + "id": 81517, + "name": "Linda Klein", + "site_detail_url": "https://comicvine.gamespot.com/linda-klein/4005-81517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81518/", + "id": 81518, + "name": "Emilio Mendosa", + "site_detail_url": "https://comicvine.gamespot.com/emilio-mendosa/4005-81518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81519/", + "id": 81519, + "name": "Foolkiller (Trace)", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-trace/4005-81519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81520/", + "id": 81520, + "name": "Nate McBride", + "site_detail_url": "https://comicvine.gamespot.com/nate-mcbride/4005-81520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81525/", + "id": 81525, + "name": "Ángel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-81525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81538/", + "id": 81538, + "name": "Genesis", + "site_detail_url": "https://comicvine.gamespot.com/genesis/4005-81538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81545/", + "id": 81545, + "name": "Sandy", + "site_detail_url": "https://comicvine.gamespot.com/sandy/4005-81545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81546/", + "id": 81546, + "name": "Gareth", + "site_detail_url": "https://comicvine.gamespot.com/gareth/4005-81546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81547/", + "id": 81547, + "name": "Dirac", + "site_detail_url": "https://comicvine.gamespot.com/dirac/4005-81547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81548/", + "id": 81548, + "name": "Rruothk'ar", + "site_detail_url": "https://comicvine.gamespot.com/rruothkar/4005-81548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81549/", + "id": 81549, + "name": "Meredith Quill", + "site_detail_url": "https://comicvine.gamespot.com/meredith-quill/4005-81549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81550/", + "id": 81550, + "name": "Kyras Shakati", + "site_detail_url": "https://comicvine.gamespot.com/kyras-shakati/4005-81550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81553/", + "id": 81553, + "name": "Father Adam", + "site_detail_url": "https://comicvine.gamespot.com/father-adam/4005-81553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81580/", + "id": 81580, + "name": "Kip", + "site_detail_url": "https://comicvine.gamespot.com/kip/4005-81580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81583/", + "id": 81583, + "name": "Slade", + "site_detail_url": "https://comicvine.gamespot.com/slade/4005-81583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81603/", + "id": 81603, + "name": "Eson", + "site_detail_url": "https://comicvine.gamespot.com/eson/4005-81603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81643/", + "id": 81643, + "name": "Nyko", + "site_detail_url": "https://comicvine.gamespot.com/nyko/4005-81643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81666/", + "id": 81666, + "name": "Death-Stalker", + "site_detail_url": "https://comicvine.gamespot.com/death-stalker/4005-81666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81705/", + "id": 81705, + "name": "Vanora", + "site_detail_url": "https://comicvine.gamespot.com/vanora/4005-81705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81707/", + "id": 81707, + "name": "Harry Phillips", + "site_detail_url": "https://comicvine.gamespot.com/harry-phillips/4005-81707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81708/", + "id": 81708, + "name": "Bull Brogan", + "site_detail_url": "https://comicvine.gamespot.com/bull-brogan/4005-81708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81777/", + "id": 81777, + "name": "26", + "site_detail_url": "https://comicvine.gamespot.com/26/4005-81777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81785/", + "id": 81785, + "name": "Charlie Philips", + "site_detail_url": "https://comicvine.gamespot.com/charlie-philips/4005-81785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81791/", + "id": 81791, + "name": "Harper Simmons", + "site_detail_url": "https://comicvine.gamespot.com/harper-simmons/4005-81791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81805/", + "id": 81805, + "name": "Liam Malloy", + "site_detail_url": "https://comicvine.gamespot.com/liam-malloy/4005-81805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81807/", + "id": 81807, + "name": "Stephanie Gerard", + "site_detail_url": "https://comicvine.gamespot.com/stephanie-gerard/4005-81807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81812/", + "id": 81812, + "name": "Boost", + "site_detail_url": "https://comicvine.gamespot.com/boost/4005-81812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81813/", + "id": 81813, + "name": "D'Gard", + "site_detail_url": "https://comicvine.gamespot.com/dgard/4005-81813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81814/", + "id": 81814, + "name": "Tether", + "site_detail_url": "https://comicvine.gamespot.com/tether/4005-81814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81815/", + "id": 81815, + "name": "Preacher", + "site_detail_url": "https://comicvine.gamespot.com/preacher/4005-81815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81817/", + "id": 81817, + "name": "Sentinel Mark IV", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-mark-iv/4005-81817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81819/", + "id": 81819, + "name": "Ms. Sims", + "site_detail_url": "https://comicvine.gamespot.com/ms-sims/4005-81819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81821/", + "id": 81821, + "name": "Chris Poulsen", + "site_detail_url": "https://comicvine.gamespot.com/chris-poulsen/4005-81821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81886/", + "id": 81886, + "name": "Kraglin", + "site_detail_url": "https://comicvine.gamespot.com/kraglin/4005-81886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81887/", + "id": 81887, + "name": "Trago", + "site_detail_url": "https://comicvine.gamespot.com/trago/4005-81887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81905/", + "id": 81905, + "name": "Sub-Commander Blake", + "site_detail_url": "https://comicvine.gamespot.com/sub-commander-blake/4005-81905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81912/", + "id": 81912, + "name": "Nefaria", + "site_detail_url": "https://comicvine.gamespot.com/nefaria/4005-81912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81913/", + "id": 81913, + "name": "Cyclopter", + "site_detail_url": "https://comicvine.gamespot.com/cyclopter/4005-81913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81915/", + "id": 81915, + "name": "Gork", + "site_detail_url": "https://comicvine.gamespot.com/gork/4005-81915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81916/", + "id": 81916, + "name": "Fact", + "site_detail_url": "https://comicvine.gamespot.com/fact/4005-81916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81918/", + "id": 81918, + "name": "Patsy Carbunkle", + "site_detail_url": "https://comicvine.gamespot.com/patsy-carbunkle/4005-81918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81919/", + "id": 81919, + "name": "Ferbus", + "site_detail_url": "https://comicvine.gamespot.com/ferbus/4005-81919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81945/", + "id": 81945, + "name": "Marcus Simms", + "site_detail_url": "https://comicvine.gamespot.com/marcus-simms/4005-81945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81946/", + "id": 81946, + "name": "James Murphy", + "site_detail_url": "https://comicvine.gamespot.com/james-murphy/4005-81946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-81947/", + "id": 81947, + "name": "Rico Axelson", + "site_detail_url": "https://comicvine.gamespot.com/rico-axelson/4005-81947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82034/", + "id": 82034, + "name": "Dr. Rambow", + "site_detail_url": "https://comicvine.gamespot.com/dr-rambow/4005-82034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82035/", + "id": 82035, + "name": "Larry Rambow", + "site_detail_url": "https://comicvine.gamespot.com/larry-rambow/4005-82035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82039/", + "id": 82039, + "name": "Adhesive Mass", + "site_detail_url": "https://comicvine.gamespot.com/adhesive-mass/4005-82039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82040/", + "id": 82040, + "name": "Seed-Tossing Plant", + "site_detail_url": "https://comicvine.gamespot.com/seed-tossing-plant/4005-82040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82041/", + "id": 82041, + "name": "Alien Arachnid", + "site_detail_url": "https://comicvine.gamespot.com/alien-arachnid/4005-82041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82052/", + "id": 82052, + "name": "Grady Scraps", + "site_detail_url": "https://comicvine.gamespot.com/grady-scraps/4005-82052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82069/", + "id": 82069, + "name": "Buck Lime", + "site_detail_url": "https://comicvine.gamespot.com/buck-lime/4005-82069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82072/", + "id": 82072, + "name": "Captain Williams", + "site_detail_url": "https://comicvine.gamespot.com/captain-williams/4005-82072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82120/", + "id": 82120, + "name": "Devil-Slayer", + "site_detail_url": "https://comicvine.gamespot.com/devil-slayer/4005-82120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82122/", + "id": 82122, + "name": "Howard Ogden", + "site_detail_url": "https://comicvine.gamespot.com/howard-ogden/4005-82122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82124/", + "id": 82124, + "name": "Palmer Addley", + "site_detail_url": "https://comicvine.gamespot.com/palmer-addley/4005-82124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82133/", + "id": 82133, + "name": "Sasquatch", + "site_detail_url": "https://comicvine.gamespot.com/sasquatch/4005-82133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82134/", + "id": 82134, + "name": "Crimson Dynamo (Shatalov)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-shatalov/4005-82134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82135/", + "id": 82135, + "name": "Lieutenant Paul Lytton", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-paul-lytton/4005-82135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82138/", + "id": 82138, + "name": "The Hand of God", + "site_detail_url": "https://comicvine.gamespot.com/the-hand-of-god/4005-82138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82140/", + "id": 82140, + "name": "Doctor Milius", + "site_detail_url": "https://comicvine.gamespot.com/doctor-milius/4005-82140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82141/", + "id": 82141, + "name": "Colonel Edward Harrison", + "site_detail_url": "https://comicvine.gamespot.com/colonel-edward-harrison/4005-82141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82143/", + "id": 82143, + "name": "Immortal Man", + "site_detail_url": "https://comicvine.gamespot.com/immortal-man/4005-82143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82151/", + "id": 82151, + "name": "Rachel Strange", + "site_detail_url": "https://comicvine.gamespot.com/rachel-strange/4005-82151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82153/", + "id": 82153, + "name": "Frank Martin", + "site_detail_url": "https://comicvine.gamespot.com/frank-martin/4005-82153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82173/", + "id": 82173, + "name": "Santiago", + "site_detail_url": "https://comicvine.gamespot.com/santiago/4005-82173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82174/", + "id": 82174, + "name": "Simon Ejszaka", + "site_detail_url": "https://comicvine.gamespot.com/simon-ejszaka/4005-82174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82175/", + "id": 82175, + "name": "Marcus Coriander", + "site_detail_url": "https://comicvine.gamespot.com/marcus-coriander/4005-82175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82203/", + "id": 82203, + "name": "Superintendent Carlson", + "site_detail_url": "https://comicvine.gamespot.com/superintendent-carlson/4005-82203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82204/", + "id": 82204, + "name": "Deacon", + "site_detail_url": "https://comicvine.gamespot.com/deacon/4005-82204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82208/", + "id": 82208, + "name": "Invisible Girl Android", + "site_detail_url": "https://comicvine.gamespot.com/invisible-girl-android/4005-82208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82209/", + "id": 82209, + "name": "Human Torch Android", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-android/4005-82209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82210/", + "id": 82210, + "name": "Thing Android", + "site_detail_url": "https://comicvine.gamespot.com/thing-android/4005-82210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82212/", + "id": 82212, + "name": "Mr. Fantastic Android", + "site_detail_url": "https://comicvine.gamespot.com/mr-fantastic-android/4005-82212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82238/", + "id": 82238, + "name": "Sajani", + "site_detail_url": "https://comicvine.gamespot.com/sajani/4005-82238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82240/", + "id": 82240, + "name": "Patrick Lamb", + "site_detail_url": "https://comicvine.gamespot.com/patrick-lamb/4005-82240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82246/", + "id": 82246, + "name": "Jaten", + "site_detail_url": "https://comicvine.gamespot.com/jaten/4005-82246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82249/", + "id": 82249, + "name": "Silver Samurai (Shingen)", + "site_detail_url": "https://comicvine.gamespot.com/silver-samurai-shingen/4005-82249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82256/", + "id": 82256, + "name": "Tolor", + "site_detail_url": "https://comicvine.gamespot.com/tolor/4005-82256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82269/", + "id": 82269, + "name": "Phil DeBlasio", + "site_detail_url": "https://comicvine.gamespot.com/phil-deblasio/4005-82269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82270/", + "id": 82270, + "name": "Katrina McCann", + "site_detail_url": "https://comicvine.gamespot.com/katrina-mccann/4005-82270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82271/", + "id": 82271, + "name": "Amber DeBlasio", + "site_detail_url": "https://comicvine.gamespot.com/amber-deblasio/4005-82271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82283/", + "id": 82283, + "name": "Azuma Goda", + "site_detail_url": "https://comicvine.gamespot.com/azuma-goda/4005-82283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82284/", + "id": 82284, + "name": "Horoam'ce", + "site_detail_url": "https://comicvine.gamespot.com/horoamce/4005-82284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82286/", + "id": 82286, + "name": "Krokwel", + "site_detail_url": "https://comicvine.gamespot.com/krokwel/4005-82286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82287/", + "id": 82287, + "name": "Savage", + "site_detail_url": "https://comicvine.gamespot.com/savage/4005-82287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82288/", + "id": 82288, + "name": "Skinless Man", + "site_detail_url": "https://comicvine.gamespot.com/skinless-man/4005-82288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82303/", + "id": 82303, + "name": "Wolverine (Counter-Earth)", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-counter-earth/4005-82303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82332/", + "id": 82332, + "name": "Jake", + "site_detail_url": "https://comicvine.gamespot.com/jake/4005-82332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82333/", + "id": 82333, + "name": "Mo Haddawi", + "site_detail_url": "https://comicvine.gamespot.com/mo-haddawi/4005-82333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82334/", + "id": 82334, + "name": "Steve", + "site_detail_url": "https://comicvine.gamespot.com/steve/4005-82334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82335/", + "id": 82335, + "name": "Amelia Serrano", + "site_detail_url": "https://comicvine.gamespot.com/amelia-serrano/4005-82335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82353/", + "id": 82353, + "name": "Salamander", + "site_detail_url": "https://comicvine.gamespot.com/salamander/4005-82353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82377/", + "id": 82377, + "name": "Campbell Andrews", + "site_detail_url": "https://comicvine.gamespot.com/campbell-andrews/4005-82377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82378/", + "id": 82378, + "name": "Encephalon", + "site_detail_url": "https://comicvine.gamespot.com/encephalon/4005-82378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82379/", + "id": 82379, + "name": "Evangelist", + "site_detail_url": "https://comicvine.gamespot.com/evangelist/4005-82379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82380/", + "id": 82380, + "name": "Gari Oyle", + "site_detail_url": "https://comicvine.gamespot.com/gari-oyle/4005-82380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82381/", + "id": 82381, + "name": "Glacier Vet", + "site_detail_url": "https://comicvine.gamespot.com/glacier-vet/4005-82381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82382/", + "id": 82382, + "name": "Glenn Silas", + "site_detail_url": "https://comicvine.gamespot.com/glenn-silas/4005-82382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82383/", + "id": 82383, + "name": "Ichor", + "site_detail_url": "https://comicvine.gamespot.com/ichor/4005-82383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82384/", + "id": 82384, + "name": "Ideal", + "site_detail_url": "https://comicvine.gamespot.com/ideal/4005-82384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82385/", + "id": 82385, + "name": "Jasper Chin", + "site_detail_url": "https://comicvine.gamespot.com/jasper-chin/4005-82385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82386/", + "id": 82386, + "name": "Lisa", + "site_detail_url": "https://comicvine.gamespot.com/lisa/4005-82386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82390/", + "id": 82390, + "name": "Red Bishop", + "site_detail_url": "https://comicvine.gamespot.com/red-bishop/4005-82390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82393/", + "id": 82393, + "name": "Origin", + "site_detail_url": "https://comicvine.gamespot.com/origin/4005-82393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82394/", + "id": 82394, + "name": "Phonic", + "site_detail_url": "https://comicvine.gamespot.com/phonic/4005-82394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82395/", + "id": 82395, + "name": "Riot", + "site_detail_url": "https://comicvine.gamespot.com/riot/4005-82395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82396/", + "id": 82396, + "name": "Swine", + "site_detail_url": "https://comicvine.gamespot.com/swine/4005-82396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82397/", + "id": 82397, + "name": "Urn", + "site_detail_url": "https://comicvine.gamespot.com/urn/4005-82397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82399/", + "id": 82399, + "name": "X-666", + "site_detail_url": "https://comicvine.gamespot.com/x-666/4005-82399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82403/", + "id": 82403, + "name": "Geo", + "site_detail_url": "https://comicvine.gamespot.com/geo/4005-82403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82404/", + "id": 82404, + "name": "Magdalena", + "site_detail_url": "https://comicvine.gamespot.com/magdalena/4005-82404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82409/", + "id": 82409, + "name": "Hooded Haunt", + "site_detail_url": "https://comicvine.gamespot.com/hooded-haunt/4005-82409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82414/", + "id": 82414, + "name": "Jonas Keller", + "site_detail_url": "https://comicvine.gamespot.com/jonas-keller/4005-82414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82419/", + "id": 82419, + "name": "Alien Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/alien-silver-surfer/4005-82419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82420/", + "id": 82420, + "name": "Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/cosmos/4005-82420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82421/", + "id": 82421, + "name": "Suhng", + "site_detail_url": "https://comicvine.gamespot.com/suhng/4005-82421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82422/", + "id": 82422, + "name": "Ronhon", + "site_detail_url": "https://comicvine.gamespot.com/ronhon/4005-82422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82470/", + "id": 82470, + "name": "Alexander Vahzin", + "site_detail_url": "https://comicvine.gamespot.com/alexander-vahzin/4005-82470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82471/", + "id": 82471, + "name": "Ivan Dubenko", + "site_detail_url": "https://comicvine.gamespot.com/ivan-dubenko/4005-82471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82516/", + "id": 82516, + "name": "Father", + "site_detail_url": "https://comicvine.gamespot.com/father/4005-82516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82519/", + "id": 82519, + "name": "Gail Richards", + "site_detail_url": "https://comicvine.gamespot.com/gail-richards/4005-82519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82524/", + "id": 82524, + "name": "Van Burian", + "site_detail_url": "https://comicvine.gamespot.com/van-burian/4005-82524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82580/", + "id": 82580, + "name": "Maria Lopez", + "site_detail_url": "https://comicvine.gamespot.com/maria-lopez/4005-82580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82624/", + "id": 82624, + "name": "Dr. Kamarofski", + "site_detail_url": "https://comicvine.gamespot.com/dr-kamarofski/4005-82624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82625/", + "id": 82625, + "name": "General Nobakov", + "site_detail_url": "https://comicvine.gamespot.com/general-nobakov/4005-82625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82626/", + "id": 82626, + "name": "George Stanislaus", + "site_detail_url": "https://comicvine.gamespot.com/george-stanislaus/4005-82626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82638/", + "id": 82638, + "name": "Mamoru Tsuruoka", + "site_detail_url": "https://comicvine.gamespot.com/mamoru-tsuruoka/4005-82638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82642/", + "id": 82642, + "name": "Scorpius Emperor", + "site_detail_url": "https://comicvine.gamespot.com/scorpius-emperor/4005-82642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82672/", + "id": 82672, + "name": "The Purple-Blue Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-purple-blue-celestial/4005-82672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82677/", + "id": 82677, + "name": "Oskana", + "site_detail_url": "https://comicvine.gamespot.com/oskana/4005-82677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82733/", + "id": 82733, + "name": "Doctor Ferid Ekmecic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-ferid-ekmecic/4005-82733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82737/", + "id": 82737, + "name": "The Green Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-green-celestial/4005-82737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82746/", + "id": 82746, + "name": "The Gray-Green Celestial", + "site_detail_url": "https://comicvine.gamespot.com/the-gray-green-celestial/4005-82746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82784/", + "id": 82784, + "name": "Larry Young", + "site_detail_url": "https://comicvine.gamespot.com/larry-young/4005-82784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82858/", + "id": 82858, + "name": "Sam Alexander", + "site_detail_url": "https://comicvine.gamespot.com/sam-alexander/4005-82858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82913/", + "id": 82913, + "name": "Deva Van Dyne", + "site_detail_url": "https://comicvine.gamespot.com/deva-van-dyne/4005-82913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82914/", + "id": 82914, + "name": "Tatiana Maximoff", + "site_detail_url": "https://comicvine.gamespot.com/tatiana-maximoff/4005-82914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82915/", + "id": 82915, + "name": "Tyler Magnus", + "site_detail_url": "https://comicvine.gamespot.com/tyler-magnus/4005-82915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82944/", + "id": 82944, + "name": "It!", + "site_detail_url": "https://comicvine.gamespot.com/it/4005-82944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82955/", + "id": 82955, + "name": "Lucas Collier", + "site_detail_url": "https://comicvine.gamespot.com/lucas-collier/4005-82955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82956/", + "id": 82956, + "name": "Vengeance (Kowalski)", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-kowalski/4005-82956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82958/", + "id": 82958, + "name": "Bob", + "site_detail_url": "https://comicvine.gamespot.com/bob/4005-82958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82959/", + "id": 82959, + "name": "Mossberg", + "site_detail_url": "https://comicvine.gamespot.com/mossberg/4005-82959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82960/", + "id": 82960, + "name": "Orb", + "site_detail_url": "https://comicvine.gamespot.com/orb/4005-82960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82971/", + "id": 82971, + "name": "Colossus", + "site_detail_url": "https://comicvine.gamespot.com/colossus/4005-82971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82977/", + "id": 82977, + "name": "Beetle (Robichaux)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-robichaux/4005-82977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82978/", + "id": 82978, + "name": "Beetle (Vaughn)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-vaughn/4005-82978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-82979/", + "id": 82979, + "name": "Beetle (Quinn)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-quinn/4005-82979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83029/", + "id": 83029, + "name": "Xanto Starblood", + "site_detail_url": "https://comicvine.gamespot.com/xanto-starblood/4005-83029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83031/", + "id": 83031, + "name": "Zebediah Stane", + "site_detail_url": "https://comicvine.gamespot.com/zebediah-stane/4005-83031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83032/", + "id": 83032, + "name": "Loni Stark", + "site_detail_url": "https://comicvine.gamespot.com/loni-stark/4005-83032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83033/", + "id": 83033, + "name": "Bony Telford", + "site_detail_url": "https://comicvine.gamespot.com/bony-telford/4005-83033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83034/", + "id": 83034, + "name": "Si Ma", + "site_detail_url": "https://comicvine.gamespot.com/si-ma/4005-83034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83035/", + "id": 83035, + "name": "Nero", + "site_detail_url": "https://comicvine.gamespot.com/nero/4005-83035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83052/", + "id": 83052, + "name": "Nifara", + "site_detail_url": "https://comicvine.gamespot.com/nifara/4005-83052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83065/", + "id": 83065, + "name": "Juliana Sandoval", + "site_detail_url": "https://comicvine.gamespot.com/juliana-sandoval/4005-83065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83067/", + "id": 83067, + "name": "Barton Blaze", + "site_detail_url": "https://comicvine.gamespot.com/barton-blaze/4005-83067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83069/", + "id": 83069, + "name": "Black Eagle", + "site_detail_url": "https://comicvine.gamespot.com/black-eagle/4005-83069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83070/", + "id": 83070, + "name": "Ridge-Runner", + "site_detail_url": "https://comicvine.gamespot.com/ridge-runner/4005-83070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83072/", + "id": 83072, + "name": "Dean Tarlek", + "site_detail_url": "https://comicvine.gamespot.com/dean-tarlek/4005-83072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83079/", + "id": 83079, + "name": "Black Widow (Petra)", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-petra/4005-83079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83080/", + "id": 83080, + "name": "Annabelle Adams", + "site_detail_url": "https://comicvine.gamespot.com/annabelle-adams/4005-83080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83083/", + "id": 83083, + "name": "Julius Chang", + "site_detail_url": "https://comicvine.gamespot.com/julius-chang/4005-83083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83110/", + "id": 83110, + "name": "Axonn-Karr", + "site_detail_url": "https://comicvine.gamespot.com/axonn-karr/4005-83110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83137/", + "id": 83137, + "name": "The Undertaker", + "site_detail_url": "https://comicvine.gamespot.com/the-undertaker/4005-83137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83138/", + "id": 83138, + "name": "Mr. Vale", + "site_detail_url": "https://comicvine.gamespot.com/mr-vale/4005-83138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83147/", + "id": 83147, + "name": "Grace", + "site_detail_url": "https://comicvine.gamespot.com/grace/4005-83147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83151/", + "id": 83151, + "name": "Buck Duck", + "site_detail_url": "https://comicvine.gamespot.com/buck-duck/4005-83151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83158/", + "id": 83158, + "name": "Major Mapleleaf", + "site_detail_url": "https://comicvine.gamespot.com/major-mapleleaf/4005-83158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83191/", + "id": 83191, + "name": "The Distorter", + "site_detail_url": "https://comicvine.gamespot.com/the-distorter/4005-83191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83198/", + "id": 83198, + "name": "Abigail Marigold", + "site_detail_url": "https://comicvine.gamespot.com/abigail-marigold/4005-83198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83199/", + "id": 83199, + "name": "Akihira", + "site_detail_url": "https://comicvine.gamespot.com/akihira/4005-83199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83200/", + "id": 83200, + "name": "Eugene Clud", + "site_detail_url": "https://comicvine.gamespot.com/eugene-clud/4005-83200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83201/", + "id": 83201, + "name": "Krakoa (Grandchild)", + "site_detail_url": "https://comicvine.gamespot.com/krakoa-grandchild/4005-83201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83202/", + "id": 83202, + "name": "Natsumi", + "site_detail_url": "https://comicvine.gamespot.com/natsumi/4005-83202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83204/", + "id": 83204, + "name": "Dr. Morris", + "site_detail_url": "https://comicvine.gamespot.com/dr-morris/4005-83204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83205/", + "id": 83205, + "name": "Dr. Crawford", + "site_detail_url": "https://comicvine.gamespot.com/dr-crawford/4005-83205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83206/", + "id": 83206, + "name": "Mr. Hayworth", + "site_detail_url": "https://comicvine.gamespot.com/mr-hayworth/4005-83206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83207/", + "id": 83207, + "name": "General Shaw", + "site_detail_url": "https://comicvine.gamespot.com/general-shaw/4005-83207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83208/", + "id": 83208, + "name": "Congressman Simpson", + "site_detail_url": "https://comicvine.gamespot.com/congressman-simpson/4005-83208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83210/", + "id": 83210, + "name": "Jake Chambers", + "site_detail_url": "https://comicvine.gamespot.com/jake-chambers/4005-83210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83211/", + "id": 83211, + "name": "Gabrielle Deschain", + "site_detail_url": "https://comicvine.gamespot.com/gabrielle-deschain/4005-83211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83214/", + "id": 83214, + "name": "Allie", + "site_detail_url": "https://comicvine.gamespot.com/allie/4005-83214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83239/", + "id": 83239, + "name": "Ivory", + "site_detail_url": "https://comicvine.gamespot.com/ivory/4005-83239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83240/", + "id": 83240, + "name": "Red", + "site_detail_url": "https://comicvine.gamespot.com/red/4005-83240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83242/", + "id": 83242, + "name": "Lump", + "site_detail_url": "https://comicvine.gamespot.com/lump/4005-83242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83243/", + "id": 83243, + "name": "Deltite", + "site_detail_url": "https://comicvine.gamespot.com/deltite/4005-83243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83246/", + "id": 83246, + "name": "Madame Hydra Six", + "site_detail_url": "https://comicvine.gamespot.com/madame-hydra-six/4005-83246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83251/", + "id": 83251, + "name": "Raptra", + "site_detail_url": "https://comicvine.gamespot.com/raptra/4005-83251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83252/", + "id": 83252, + "name": "Primo", + "site_detail_url": "https://comicvine.gamespot.com/primo/4005-83252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83259/", + "id": 83259, + "name": "Beloved", + "site_detail_url": "https://comicvine.gamespot.com/beloved/4005-83259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83274/", + "id": 83274, + "name": "Mr. FX", + "site_detail_url": "https://comicvine.gamespot.com/mr-fx/4005-83274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83275/", + "id": 83275, + "name": "Emperor Doombot", + "site_detail_url": "https://comicvine.gamespot.com/emperor-doombot/4005-83275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83276/", + "id": 83276, + "name": "John Stryker", + "site_detail_url": "https://comicvine.gamespot.com/john-stryker/4005-83276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83277/", + "id": 83277, + "name": "Mr. Sabahnur", + "site_detail_url": "https://comicvine.gamespot.com/mr-sabahnur/4005-83277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83278/", + "id": 83278, + "name": "Mrs. Sabahnur", + "site_detail_url": "https://comicvine.gamespot.com/mrs-sabahnur/4005-83278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83279/", + "id": 83279, + "name": "Sentinaught", + "site_detail_url": "https://comicvine.gamespot.com/sentinaught/4005-83279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83280/", + "id": 83280, + "name": "Lord Ultravision", + "site_detail_url": "https://comicvine.gamespot.com/lord-ultravision/4005-83280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83292/", + "id": 83292, + "name": "Thori", + "site_detail_url": "https://comicvine.gamespot.com/thori/4005-83292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83293/", + "id": 83293, + "name": "Magnetor", + "site_detail_url": "https://comicvine.gamespot.com/magnetor/4005-83293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83304/", + "id": 83304, + "name": "April Sommers", + "site_detail_url": "https://comicvine.gamespot.com/april-sommers/4005-83304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83305/", + "id": 83305, + "name": "Susan Drake", + "site_detail_url": "https://comicvine.gamespot.com/susan-drake/4005-83305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83347/", + "id": 83347, + "name": "Cybertron Agent 114", + "site_detail_url": "https://comicvine.gamespot.com/cybertron-agent-114/4005-83347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83348/", + "id": 83348, + "name": "Cybertron Agent 78", + "site_detail_url": "https://comicvine.gamespot.com/cybertron-agent-78/4005-83348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83349/", + "id": 83349, + "name": "Cybertron Agent 19-8", + "site_detail_url": "https://comicvine.gamespot.com/cybertron-agent-19-8/4005-83349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83375/", + "id": 83375, + "name": "X-13", + "site_detail_url": "https://comicvine.gamespot.com/x-13/4005-83375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83401/", + "id": 83401, + "name": "Ms. Blue", + "site_detail_url": "https://comicvine.gamespot.com/ms-blue/4005-83401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83402/", + "id": 83402, + "name": "Mr. Calm", + "site_detail_url": "https://comicvine.gamespot.com/mr-calm/4005-83402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83403/", + "id": 83403, + "name": "Mr. Lake", + "site_detail_url": "https://comicvine.gamespot.com/mr-lake/4005-83403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83416/", + "id": 83416, + "name": "Malachi", + "site_detail_url": "https://comicvine.gamespot.com/malachi/4005-83416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83420/", + "id": 83420, + "name": "Pyotr Starkovsky", + "site_detail_url": "https://comicvine.gamespot.com/pyotr-starkovsky/4005-83420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83437/", + "id": 83437, + "name": "SpyGal", + "site_detail_url": "https://comicvine.gamespot.com/spygal/4005-83437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83442/", + "id": 83442, + "name": "Monty Walsh", + "site_detail_url": "https://comicvine.gamespot.com/monty-walsh/4005-83442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83443/", + "id": 83443, + "name": "Mordius", + "site_detail_url": "https://comicvine.gamespot.com/mordius/4005-83443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83448/", + "id": 83448, + "name": "Guido Carboni", + "site_detail_url": "https://comicvine.gamespot.com/guido-carboni/4005-83448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83451/", + "id": 83451, + "name": "Drexel Cord", + "site_detail_url": "https://comicvine.gamespot.com/drexel-cord/4005-83451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83465/", + "id": 83465, + "name": "Hummingbird", + "site_detail_url": "https://comicvine.gamespot.com/hummingbird/4005-83465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83466/", + "id": 83466, + "name": "Donald Meland", + "site_detail_url": "https://comicvine.gamespot.com/donald-meland/4005-83466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83467/", + "id": 83467, + "name": "Wally Layton", + "site_detail_url": "https://comicvine.gamespot.com/wally-layton/4005-83467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83468/", + "id": 83468, + "name": "Flower", + "site_detail_url": "https://comicvine.gamespot.com/flower/4005-83468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83469/", + "id": 83469, + "name": "Demolisher", + "site_detail_url": "https://comicvine.gamespot.com/demolisher/4005-83469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83475/", + "id": 83475, + "name": "Gremlin", + "site_detail_url": "https://comicvine.gamespot.com/gremlin/4005-83475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83476/", + "id": 83476, + "name": "Mania", + "site_detail_url": "https://comicvine.gamespot.com/mania/4005-83476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83515/", + "id": 83515, + "name": "Fritz Tiboldt", + "site_detail_url": "https://comicvine.gamespot.com/fritz-tiboldt/4005-83515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83516/", + "id": 83516, + "name": "Tarrax The Tamer", + "site_detail_url": "https://comicvine.gamespot.com/tarrax-the-tamer/4005-83516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83520/", + "id": 83520, + "name": "Cerebrus", + "site_detail_url": "https://comicvine.gamespot.com/cerebrus/4005-83520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83531/", + "id": 83531, + "name": "Krylla", + "site_detail_url": "https://comicvine.gamespot.com/krylla/4005-83531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83533/", + "id": 83533, + "name": "Vincent Sandhurst", + "site_detail_url": "https://comicvine.gamespot.com/vincent-sandhurst/4005-83533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83534/", + "id": 83534, + "name": "Byron Frost", + "site_detail_url": "https://comicvine.gamespot.com/byron-frost/4005-83534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83583/", + "id": 83583, + "name": "Rick Stoner", + "site_detail_url": "https://comicvine.gamespot.com/rick-stoner/4005-83583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83594/", + "id": 83594, + "name": "Jeremy Logan", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-logan/4005-83594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83609/", + "id": 83609, + "name": "Chester Fenton", + "site_detail_url": "https://comicvine.gamespot.com/chester-fenton/4005-83609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83631/", + "id": 83631, + "name": "Chucky", + "site_detail_url": "https://comicvine.gamespot.com/chucky/4005-83631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83636/", + "id": 83636, + "name": "Kevin O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/kevin-obrien/4005-83636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83638/", + "id": 83638, + "name": "Minister Marvel", + "site_detail_url": "https://comicvine.gamespot.com/minister-marvel/4005-83638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83639/", + "id": 83639, + "name": "Metazoid", + "site_detail_url": "https://comicvine.gamespot.com/metazoid/4005-83639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83640/", + "id": 83640, + "name": "Dr. Aldrich Killian", + "site_detail_url": "https://comicvine.gamespot.com/dr-aldrich-killian/4005-83640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83641/", + "id": 83641, + "name": "General Bridges", + "site_detail_url": "https://comicvine.gamespot.com/general-bridges/4005-83641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83642/", + "id": 83642, + "name": "SOLAM", + "site_detail_url": "https://comicvine.gamespot.com/solam/4005-83642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83653/", + "id": 83653, + "name": "Norman Lundquist", + "site_detail_url": "https://comicvine.gamespot.com/norman-lundquist/4005-83653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83654/", + "id": 83654, + "name": "Mammoth", + "site_detail_url": "https://comicvine.gamespot.com/mammoth/4005-83654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83666/", + "id": 83666, + "name": "Sentry #459", + "site_detail_url": "https://comicvine.gamespot.com/sentry-459/4005-83666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83677/", + "id": 83677, + "name": "Dennis Wells", + "site_detail_url": "https://comicvine.gamespot.com/dennis-wells/4005-83677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83678/", + "id": 83678, + "name": "Director Brewer", + "site_detail_url": "https://comicvine.gamespot.com/director-brewer/4005-83678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83679/", + "id": 83679, + "name": "Duncan Clark", + "site_detail_url": "https://comicvine.gamespot.com/duncan-clark/4005-83679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83680/", + "id": 83680, + "name": "Evan Greaves", + "site_detail_url": "https://comicvine.gamespot.com/evan-greaves/4005-83680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83693/", + "id": 83693, + "name": "Fongji", + "site_detail_url": "https://comicvine.gamespot.com/fongji/4005-83693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83696/", + "id": 83696, + "name": "Dmitri", + "site_detail_url": "https://comicvine.gamespot.com/dmitri/4005-83696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83710/", + "id": 83710, + "name": "Biter", + "site_detail_url": "https://comicvine.gamespot.com/biter/4005-83710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83711/", + "id": 83711, + "name": "Bjurg Shieldwall", + "site_detail_url": "https://comicvine.gamespot.com/bjurg-shieldwall/4005-83711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83712/", + "id": 83712, + "name": "Bonegrinder", + "site_detail_url": "https://comicvine.gamespot.com/bonegrinder/4005-83712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83713/", + "id": 83713, + "name": "Buzzkill", + "site_detail_url": "https://comicvine.gamespot.com/buzzkill/4005-83713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83714/", + "id": 83714, + "name": "Charlie Chainsaws", + "site_detail_url": "https://comicvine.gamespot.com/charlie-chainsaws/4005-83714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83715/", + "id": 83715, + "name": "Far Sight", + "site_detail_url": "https://comicvine.gamespot.com/far-sight/4005-83715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83716/", + "id": 83716, + "name": "Insignia", + "site_detail_url": "https://comicvine.gamespot.com/insignia/4005-83716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83717/", + "id": 83717, + "name": "Lord Defender", + "site_detail_url": "https://comicvine.gamespot.com/lord-defender/4005-83717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83718/", + "id": 83718, + "name": "Marshall Swinson", + "site_detail_url": "https://comicvine.gamespot.com/marshall-swinson/4005-83718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83719/", + "id": 83719, + "name": "Mother", + "site_detail_url": "https://comicvine.gamespot.com/mother/4005-83719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83720/", + "id": 83720, + "name": "Mr. Ichiki", + "site_detail_url": "https://comicvine.gamespot.com/mr-ichiki/4005-83720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83721/", + "id": 83721, + "name": "Nazum", + "site_detail_url": "https://comicvine.gamespot.com/nazum/4005-83721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83722/", + "id": 83722, + "name": "Parvez", + "site_detail_url": "https://comicvine.gamespot.com/parvez/4005-83722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83723/", + "id": 83723, + "name": "Sarstone", + "site_detail_url": "https://comicvine.gamespot.com/sarstone/4005-83723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83724/", + "id": 83724, + "name": "Shutterbug", + "site_detail_url": "https://comicvine.gamespot.com/shutterbug/4005-83724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83725/", + "id": 83725, + "name": "Sigurd", + "site_detail_url": "https://comicvine.gamespot.com/sigurd/4005-83725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83726/", + "id": 83726, + "name": "Skrak", + "site_detail_url": "https://comicvine.gamespot.com/skrak/4005-83726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83727/", + "id": 83727, + "name": "Trois", + "site_detail_url": "https://comicvine.gamespot.com/trois/4005-83727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83728/", + "id": 83728, + "name": "Wendell", + "site_detail_url": "https://comicvine.gamespot.com/wendell/4005-83728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83729/", + "id": 83729, + "name": "Widow", + "site_detail_url": "https://comicvine.gamespot.com/widow/4005-83729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83730/", + "id": 83730, + "name": "Yalda", + "site_detail_url": "https://comicvine.gamespot.com/yalda/4005-83730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83746/", + "id": 83746, + "name": "Travis Parham", + "site_detail_url": "https://comicvine.gamespot.com/travis-parham/4005-83746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83754/", + "id": 83754, + "name": "Alex Balder", + "site_detail_url": "https://comicvine.gamespot.com/alex-balder/4005-83754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83755/", + "id": 83755, + "name": "Helen Payne", + "site_detail_url": "https://comicvine.gamespot.com/helen-payne/4005-83755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83756/", + "id": 83756, + "name": "Jack Payne", + "site_detail_url": "https://comicvine.gamespot.com/jack-payne/4005-83756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83757/", + "id": 83757, + "name": "Max Payne", + "site_detail_url": "https://comicvine.gamespot.com/max-payne/4005-83757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83759/", + "id": 83759, + "name": "Ginny", + "site_detail_url": "https://comicvine.gamespot.com/ginny/4005-83759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83805/", + "id": 83805, + "name": "George Hatherly", + "site_detail_url": "https://comicvine.gamespot.com/george-hatherly/4005-83805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83806/", + "id": 83806, + "name": "Shirley DeFabio", + "site_detail_url": "https://comicvine.gamespot.com/shirley-defabio/4005-83806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83807/", + "id": 83807, + "name": "Big Tam", + "site_detail_url": "https://comicvine.gamespot.com/big-tam/4005-83807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83808/", + "id": 83808, + "name": "Congressman McCuskey", + "site_detail_url": "https://comicvine.gamespot.com/congressman-mccuskey/4005-83808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83809/", + "id": 83809, + "name": "Major Lallement", + "site_detail_url": "https://comicvine.gamespot.com/major-lallement/4005-83809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83810/", + "id": 83810, + "name": "Sergeant Cheff Steinhoff", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-cheff-steinhoff/4005-83810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83832/", + "id": 83832, + "name": "Ezekiel Tork", + "site_detail_url": "https://comicvine.gamespot.com/ezekiel-tork/4005-83832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83836/", + "id": 83836, + "name": "Omega Black", + "site_detail_url": "https://comicvine.gamespot.com/omega-black/4005-83836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83837/", + "id": 83837, + "name": "Omega Red", + "site_detail_url": "https://comicvine.gamespot.com/omega-red/4005-83837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83838/", + "id": 83838, + "name": "Omega White", + "site_detail_url": "https://comicvine.gamespot.com/omega-white/4005-83838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83839/", + "id": 83839, + "name": "Paul Vincent", + "site_detail_url": "https://comicvine.gamespot.com/paul-vincent/4005-83839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83857/", + "id": 83857, + "name": "Janus", + "site_detail_url": "https://comicvine.gamespot.com/janus/4005-83857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83896/", + "id": 83896, + "name": "Scattershot", + "site_detail_url": "https://comicvine.gamespot.com/scattershot/4005-83896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83922/", + "id": 83922, + "name": "Rojhaz", + "site_detail_url": "https://comicvine.gamespot.com/rojhaz/4005-83922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83963/", + "id": 83963, + "name": "Jal-Ha", + "site_detail_url": "https://comicvine.gamespot.com/jal-ha/4005-83963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83980/", + "id": 83980, + "name": "Libertas", + "site_detail_url": "https://comicvine.gamespot.com/libertas/4005-83980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83981/", + "id": 83981, + "name": "Columbia", + "site_detail_url": "https://comicvine.gamespot.com/columbia/4005-83981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-83982/", + "id": 83982, + "name": "Riveter", + "site_detail_url": "https://comicvine.gamespot.com/riveter/4005-83982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84007/", + "id": 84007, + "name": "Denak", + "site_detail_url": "https://comicvine.gamespot.com/denak/4005-84007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84010/", + "id": 84010, + "name": "Monique Areadite", + "site_detail_url": "https://comicvine.gamespot.com/monique-areadite/4005-84010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84021/", + "id": 84021, + "name": "Scorpion (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/scorpion-clone/4005-84021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84109/", + "id": 84109, + "name": "Pit Bull", + "site_detail_url": "https://comicvine.gamespot.com/pit-bull/4005-84109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84112/", + "id": 84112, + "name": "Constantine Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/constantine-slaughter/4005-84112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84114/", + "id": 84114, + "name": "Lupo", + "site_detail_url": "https://comicvine.gamespot.com/lupo/4005-84114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84115/", + "id": 84115, + "name": "Harvest", + "site_detail_url": "https://comicvine.gamespot.com/harvest/4005-84115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84116/", + "id": 84116, + "name": "Gayle Watson", + "site_detail_url": "https://comicvine.gamespot.com/gayle-watson/4005-84116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84117/", + "id": 84117, + "name": "Madeline Watson", + "site_detail_url": "https://comicvine.gamespot.com/madeline-watson/4005-84117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84118/", + "id": 84118, + "name": "Philip Watson", + "site_detail_url": "https://comicvine.gamespot.com/philip-watson/4005-84118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84120/", + "id": 84120, + "name": "Timothy Byrnes", + "site_detail_url": "https://comicvine.gamespot.com/timothy-byrnes/4005-84120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84155/", + "id": 84155, + "name": "Ebeneezer Wallaby", + "site_detail_url": "https://comicvine.gamespot.com/ebeneezer-wallaby/4005-84155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84156/", + "id": 84156, + "name": "Man-Slayer", + "site_detail_url": "https://comicvine.gamespot.com/man-slayer/4005-84156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84158/", + "id": 84158, + "name": "Dino-Steel", + "site_detail_url": "https://comicvine.gamespot.com/dino-steel/4005-84158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84161/", + "id": 84161, + "name": "Lyle Getz", + "site_detail_url": "https://comicvine.gamespot.com/lyle-getz/4005-84161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84179/", + "id": 84179, + "name": "Time-Bot", + "site_detail_url": "https://comicvine.gamespot.com/time-bot/4005-84179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84202/", + "id": 84202, + "name": "Cyberex", + "site_detail_url": "https://comicvine.gamespot.com/cyberex/4005-84202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84218/", + "id": 84218, + "name": "Kuhrra Daizonest", + "site_detail_url": "https://comicvine.gamespot.com/kuhrra-daizonest/4005-84218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84227/", + "id": 84227, + "name": "Donald Blake", + "site_detail_url": "https://comicvine.gamespot.com/donald-blake/4005-84227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84228/", + "id": 84228, + "name": "Ogor", + "site_detail_url": "https://comicvine.gamespot.com/ogor/4005-84228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84229/", + "id": 84229, + "name": "Hjarmal Knute Svenson", + "site_detail_url": "https://comicvine.gamespot.com/hjarmal-knute-svenson/4005-84229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84230/", + "id": 84230, + "name": "Dolly Donahue", + "site_detail_url": "https://comicvine.gamespot.com/dolly-donahue/4005-84230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84242/", + "id": 84242, + "name": "Alpha Achromic", + "site_detail_url": "https://comicvine.gamespot.com/alpha-achromic/4005-84242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84243/", + "id": 84243, + "name": "Jim Bravura", + "site_detail_url": "https://comicvine.gamespot.com/jim-bravura/4005-84243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84244/", + "id": 84244, + "name": "Michelle Payne", + "site_detail_url": "https://comicvine.gamespot.com/michelle-payne/4005-84244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84245/", + "id": 84245, + "name": "Rose Payne", + "site_detail_url": "https://comicvine.gamespot.com/rose-payne/4005-84245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84246/", + "id": 84246, + "name": "King Korozon", + "site_detail_url": "https://comicvine.gamespot.com/king-korozon/4005-84246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84275/", + "id": 84275, + "name": "Louis Banque", + "site_detail_url": "https://comicvine.gamespot.com/louis-banque/4005-84275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84290/", + "id": 84290, + "name": "Agent Lydon", + "site_detail_url": "https://comicvine.gamespot.com/agent-lydon/4005-84290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84292/", + "id": 84292, + "name": "Cimbuka", + "site_detail_url": "https://comicvine.gamespot.com/cimbuka/4005-84292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84299/", + "id": 84299, + "name": "Frankensurfer", + "site_detail_url": "https://comicvine.gamespot.com/frankensurfer/4005-84299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84301/", + "id": 84301, + "name": "Max E. Mumm", + "site_detail_url": "https://comicvine.gamespot.com/max-e-mumm/4005-84301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84330/", + "id": 84330, + "name": "Anna Parker", + "site_detail_url": "https://comicvine.gamespot.com/anna-parker/4005-84330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84331/", + "id": 84331, + "name": "Atremus Nicodemus Rottwell", + "site_detail_url": "https://comicvine.gamespot.com/atremus-nicodemus-rottwell/4005-84331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84332/", + "id": 84332, + "name": "Baylee Ann", + "site_detail_url": "https://comicvine.gamespot.com/baylee-ann/4005-84332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84333/", + "id": 84333, + "name": "Leonard McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/leonard-mckenzie/4005-84333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84334/", + "id": 84334, + "name": "Modi Thorson", + "site_detail_url": "https://comicvine.gamespot.com/modi-thorson/4005-84334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84335/", + "id": 84335, + "name": "Mrs. Rottwell", + "site_detail_url": "https://comicvine.gamespot.com/mrs-rottwell/4005-84335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84336/", + "id": 84336, + "name": "Tater Pud", + "site_detail_url": "https://comicvine.gamespot.com/tater-pud/4005-84336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84351/", + "id": 84351, + "name": "Tadzio de Santis", + "site_detail_url": "https://comicvine.gamespot.com/tadzio-de-santis/4005-84351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84352/", + "id": 84352, + "name": "Valentina de Santis", + "site_detail_url": "https://comicvine.gamespot.com/valentina-de-santis/4005-84352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84443/", + "id": 84443, + "name": "Alpha", + "site_detail_url": "https://comicvine.gamespot.com/alpha/4005-84443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84449/", + "id": 84449, + "name": "Mister Nice", + "site_detail_url": "https://comicvine.gamespot.com/mister-nice/4005-84449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84450/", + "id": 84450, + "name": "Barb", + "site_detail_url": "https://comicvine.gamespot.com/barb/4005-84450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84451/", + "id": 84451, + "name": "Sadista", + "site_detail_url": "https://comicvine.gamespot.com/sadista/4005-84451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84452/", + "id": 84452, + "name": "Link", + "site_detail_url": "https://comicvine.gamespot.com/link/4005-84452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84454/", + "id": 84454, + "name": "Shortfuse", + "site_detail_url": "https://comicvine.gamespot.com/shortfuse/4005-84454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84482/", + "id": 84482, + "name": "Iron Boy", + "site_detail_url": "https://comicvine.gamespot.com/iron-boy/4005-84482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84484/", + "id": 84484, + "name": "Tiffany LeBeck", + "site_detail_url": "https://comicvine.gamespot.com/tiffany-lebeck/4005-84484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84489/", + "id": 84489, + "name": "Dorothy Carlysle", + "site_detail_url": "https://comicvine.gamespot.com/dorothy-carlysle/4005-84489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84490/", + "id": 84490, + "name": "Mr. Foley", + "site_detail_url": "https://comicvine.gamespot.com/mr-foley/4005-84490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84491/", + "id": 84491, + "name": "Mr. Gezdbadah", + "site_detail_url": "https://comicvine.gamespot.com/mr-gezdbadah/4005-84491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84530/", + "id": 84530, + "name": "Sigrid", + "site_detail_url": "https://comicvine.gamespot.com/sigrid/4005-84530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84531/", + "id": 84531, + "name": "Agent Uno", + "site_detail_url": "https://comicvine.gamespot.com/agent-uno/4005-84531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84532/", + "id": 84532, + "name": "Magnus of the Danes", + "site_detail_url": "https://comicvine.gamespot.com/magnus-of-the-danes/4005-84532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84533/", + "id": 84533, + "name": "Erik Loonroth", + "site_detail_url": "https://comicvine.gamespot.com/erik-loonroth/4005-84533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84534/", + "id": 84534, + "name": "Joey Starrs", + "site_detail_url": "https://comicvine.gamespot.com/joey-starrs/4005-84534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84535/", + "id": 84535, + "name": "Sachs", + "site_detail_url": "https://comicvine.gamespot.com/sachs/4005-84535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84536/", + "id": 84536, + "name": "Son of Yinsen", + "site_detail_url": "https://comicvine.gamespot.com/son-of-yinsen/4005-84536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84538/", + "id": 84538, + "name": "Kris DeGann", + "site_detail_url": "https://comicvine.gamespot.com/kris-degann/4005-84538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84592/", + "id": 84592, + "name": "Wanda Lube", + "site_detail_url": "https://comicvine.gamespot.com/wanda-lube/4005-84592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84615/", + "id": 84615, + "name": "Zoe Walsh", + "site_detail_url": "https://comicvine.gamespot.com/zoe-walsh/4005-84615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84616/", + "id": 84616, + "name": "David Walsh", + "site_detail_url": "https://comicvine.gamespot.com/david-walsh/4005-84616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84627/", + "id": 84627, + "name": "Sycamore", + "site_detail_url": "https://comicvine.gamespot.com/sycamore/4005-84627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84628/", + "id": 84628, + "name": "Mant", + "site_detail_url": "https://comicvine.gamespot.com/mant/4005-84628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84629/", + "id": 84629, + "name": "Lightning Bug", + "site_detail_url": "https://comicvine.gamespot.com/lightning-bug/4005-84629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84631/", + "id": 84631, + "name": "Anti-Matter", + "site_detail_url": "https://comicvine.gamespot.com/anti-matter/4005-84631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84635/", + "id": 84635, + "name": "Solomon O'Sullivan", + "site_detail_url": "https://comicvine.gamespot.com/solomon-osullivan/4005-84635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84636/", + "id": 84636, + "name": "Robyn Hood", + "site_detail_url": "https://comicvine.gamespot.com/robyn-hood/4005-84636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84650/", + "id": 84650, + "name": "Star-Thief", + "site_detail_url": "https://comicvine.gamespot.com/star-thief/4005-84650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84660/", + "id": 84660, + "name": "Robert Seever", + "site_detail_url": "https://comicvine.gamespot.com/robert-seever/4005-84660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84670/", + "id": 84670, + "name": "Beth Luis Nion", + "site_detail_url": "https://comicvine.gamespot.com/beth-luis-nion/4005-84670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84671/", + "id": 84671, + "name": "Dr. Kimmo Tuolema", + "site_detail_url": "https://comicvine.gamespot.com/dr-kimmo-tuolema/4005-84671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84678/", + "id": 84678, + "name": "Onome", + "site_detail_url": "https://comicvine.gamespot.com/onome/4005-84678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84685/", + "id": 84685, + "name": "Scaredycat", + "site_detail_url": "https://comicvine.gamespot.com/scaredycat/4005-84685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84686/", + "id": 84686, + "name": "Toxyn", + "site_detail_url": "https://comicvine.gamespot.com/toxyn/4005-84686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84687/", + "id": 84687, + "name": "Scatterbrain", + "site_detail_url": "https://comicvine.gamespot.com/scatterbrain/4005-84687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84688/", + "id": 84688, + "name": "Woodrow Green", + "site_detail_url": "https://comicvine.gamespot.com/woodrow-green/4005-84688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84689/", + "id": 84689, + "name": "Bruce Higashi", + "site_detail_url": "https://comicvine.gamespot.com/bruce-higashi/4005-84689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84690/", + "id": 84690, + "name": "Clinton Rogers", + "site_detail_url": "https://comicvine.gamespot.com/clinton-rogers/4005-84690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84691/", + "id": 84691, + "name": "Guy Harding", + "site_detail_url": "https://comicvine.gamespot.com/guy-harding/4005-84691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84701/", + "id": 84701, + "name": "Sathan", + "site_detail_url": "https://comicvine.gamespot.com/sathan/4005-84701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84710/", + "id": 84710, + "name": "The Guardian", + "site_detail_url": "https://comicvine.gamespot.com/the-guardian/4005-84710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84711/", + "id": 84711, + "name": "Chuck Self", + "site_detail_url": "https://comicvine.gamespot.com/chuck-self/4005-84711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84712/", + "id": 84712, + "name": "Electralux", + "site_detail_url": "https://comicvine.gamespot.com/electralux/4005-84712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84713/", + "id": 84713, + "name": "Trunklops", + "site_detail_url": "https://comicvine.gamespot.com/trunklops/4005-84713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84714/", + "id": 84714, + "name": "Clarinetto", + "site_detail_url": "https://comicvine.gamespot.com/clarinetto/4005-84714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84715/", + "id": 84715, + "name": "Mammoth", + "site_detail_url": "https://comicvine.gamespot.com/mammoth/4005-84715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84716/", + "id": 84716, + "name": "Rumbo", + "site_detail_url": "https://comicvine.gamespot.com/rumbo/4005-84716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84719/", + "id": 84719, + "name": "Pork Grind", + "site_detail_url": "https://comicvine.gamespot.com/pork-grind/4005-84719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84722/", + "id": 84722, + "name": "Ashcroft", + "site_detail_url": "https://comicvine.gamespot.com/ashcroft/4005-84722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84728/", + "id": 84728, + "name": "Backhand", + "site_detail_url": "https://comicvine.gamespot.com/backhand/4005-84728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84729/", + "id": 84729, + "name": "Wildcard", + "site_detail_url": "https://comicvine.gamespot.com/wildcard/4005-84729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84730/", + "id": 84730, + "name": "Brava", + "site_detail_url": "https://comicvine.gamespot.com/brava/4005-84730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84731/", + "id": 84731, + "name": "Shear", + "site_detail_url": "https://comicvine.gamespot.com/shear/4005-84731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84732/", + "id": 84732, + "name": "Yuri Pogorelich", + "site_detail_url": "https://comicvine.gamespot.com/yuri-pogorelich/4005-84732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84733/", + "id": 84733, + "name": "Hardcase", + "site_detail_url": "https://comicvine.gamespot.com/hardcase/4005-84733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84734/", + "id": 84734, + "name": "Valerie Winterson", + "site_detail_url": "https://comicvine.gamespot.com/valerie-winterson/4005-84734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84735/", + "id": 84735, + "name": "B.B.", + "site_detail_url": "https://comicvine.gamespot.com/bb/4005-84735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84736/", + "id": 84736, + "name": "Raul Passos", + "site_detail_url": "https://comicvine.gamespot.com/raul-passos/4005-84736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84737/", + "id": 84737, + "name": "Mona Sax", + "site_detail_url": "https://comicvine.gamespot.com/mona-sax/4005-84737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84757/", + "id": 84757, + "name": "Porcupine (Gocking)", + "site_detail_url": "https://comicvine.gamespot.com/porcupine-gocking/4005-84757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84804/", + "id": 84804, + "name": "Machete", + "site_detail_url": "https://comicvine.gamespot.com/machete/4005-84804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84813/", + "id": 84813, + "name": "Boss Cage", + "site_detail_url": "https://comicvine.gamespot.com/boss-cage/4005-84813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84814/", + "id": 84814, + "name": "Kashmir Vennema", + "site_detail_url": "https://comicvine.gamespot.com/kashmir-vennema/4005-84814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84830/", + "id": 84830, + "name": "Prymaat Conehead", + "site_detail_url": "https://comicvine.gamespot.com/prymaat-conehead/4005-84830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84831/", + "id": 84831, + "name": "Beldar Conehead", + "site_detail_url": "https://comicvine.gamespot.com/beldar-conehead/4005-84831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84847/", + "id": 84847, + "name": "Ronnie the Mechanic", + "site_detail_url": "https://comicvine.gamespot.com/ronnie-the-mechanic/4005-84847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84848/", + "id": 84848, + "name": "Connie Conehead", + "site_detail_url": "https://comicvine.gamespot.com/connie-conehead/4005-84848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84868/", + "id": 84868, + "name": "Mad Jack", + "site_detail_url": "https://comicvine.gamespot.com/mad-jack/4005-84868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84871/", + "id": 84871, + "name": "Mysterio (Berkhart)", + "site_detail_url": "https://comicvine.gamespot.com/mysterio-berkhart/4005-84871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84872/", + "id": 84872, + "name": "Francis Klum", + "site_detail_url": "https://comicvine.gamespot.com/francis-klum/4005-84872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84877/", + "id": 84877, + "name": "Angela Cleaver", + "site_detail_url": "https://comicvine.gamespot.com/angela-cleaver/4005-84877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84893/", + "id": 84893, + "name": "Hammer", + "site_detail_url": "https://comicvine.gamespot.com/hammer/4005-84893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84913/", + "id": 84913, + "name": "Director Sergei", + "site_detail_url": "https://comicvine.gamespot.com/director-sergei/4005-84913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84915/", + "id": 84915, + "name": "Nanya", + "site_detail_url": "https://comicvine.gamespot.com/nanya/4005-84915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84917/", + "id": 84917, + "name": "Ariana", + "site_detail_url": "https://comicvine.gamespot.com/ariana/4005-84917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84918/", + "id": 84918, + "name": "Nikolas", + "site_detail_url": "https://comicvine.gamespot.com/nikolas/4005-84918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84943/", + "id": 84943, + "name": "Max Christiansen", + "site_detail_url": "https://comicvine.gamespot.com/max-christiansen/4005-84943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84945/", + "id": 84945, + "name": "Flag-Smasher (Morgenthau)", + "site_detail_url": "https://comicvine.gamespot.com/flag-smasher-morgenthau/4005-84945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84947/", + "id": 84947, + "name": "Kesselring", + "site_detail_url": "https://comicvine.gamespot.com/kesselring/4005-84947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84948/", + "id": 84948, + "name": "David Michael Gray", + "site_detail_url": "https://comicvine.gamespot.com/david-michael-gray/4005-84948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84952/", + "id": 84952, + "name": "Ivan the Landlord", + "site_detail_url": "https://comicvine.gamespot.com/ivan-the-landlord/4005-84952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84953/", + "id": 84953, + "name": "Lucky", + "site_detail_url": "https://comicvine.gamespot.com/lucky/4005-84953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84954/", + "id": 84954, + "name": "Revenge", + "site_detail_url": "https://comicvine.gamespot.com/revenge/4005-84954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84955/", + "id": 84955, + "name": "Carol Rayweick", + "site_detail_url": "https://comicvine.gamespot.com/carol-rayweick/4005-84955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84956/", + "id": 84956, + "name": "Victor Leroy Long", + "site_detail_url": "https://comicvine.gamespot.com/victor-leroy-long/4005-84956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84957/", + "id": 84957, + "name": "Macintire Kenlin", + "site_detail_url": "https://comicvine.gamespot.com/macintire-kenlin/4005-84957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84966/", + "id": 84966, + "name": "Scanner", + "site_detail_url": "https://comicvine.gamespot.com/scanner/4005-84966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84969/", + "id": 84969, + "name": "Andre Lamont", + "site_detail_url": "https://comicvine.gamespot.com/andre-lamont/4005-84969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84970/", + "id": 84970, + "name": "Hiram Riddley", + "site_detail_url": "https://comicvine.gamespot.com/hiram-riddley/4005-84970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84971/", + "id": 84971, + "name": "Eternity Man", + "site_detail_url": "https://comicvine.gamespot.com/eternity-man/4005-84971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84972/", + "id": 84972, + "name": "VAX 117", + "site_detail_url": "https://comicvine.gamespot.com/vax-117/4005-84972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84973/", + "id": 84973, + "name": "Ghost", + "site_detail_url": "https://comicvine.gamespot.com/ghost/4005-84973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84974/", + "id": 84974, + "name": "Tiger", + "site_detail_url": "https://comicvine.gamespot.com/tiger/4005-84974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84975/", + "id": 84975, + "name": "Wind", + "site_detail_url": "https://comicvine.gamespot.com/wind/4005-84975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84990/", + "id": 84990, + "name": "Agent West", + "site_detail_url": "https://comicvine.gamespot.com/agent-west/4005-84990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84992/", + "id": 84992, + "name": "Agent Wulf", + "site_detail_url": "https://comicvine.gamespot.com/agent-wulf/4005-84992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84993/", + "id": 84993, + "name": "Lifter", + "site_detail_url": "https://comicvine.gamespot.com/lifter/4005-84993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-84994/", + "id": 84994, + "name": "Burn", + "site_detail_url": "https://comicvine.gamespot.com/burn/4005-84994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85006/", + "id": 85006, + "name": "Proctor", + "site_detail_url": "https://comicvine.gamespot.com/proctor/4005-85006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85009/", + "id": 85009, + "name": "Master Wilson", + "site_detail_url": "https://comicvine.gamespot.com/master-wilson/4005-85009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85051/", + "id": 85051, + "name": "Void-Eater", + "site_detail_url": "https://comicvine.gamespot.com/void-eater/4005-85051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85056/", + "id": 85056, + "name": "Commander Varga", + "site_detail_url": "https://comicvine.gamespot.com/commander-varga/4005-85056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85060/", + "id": 85060, + "name": "Remus", + "site_detail_url": "https://comicvine.gamespot.com/remus/4005-85060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85063/", + "id": 85063, + "name": "Mammon", + "site_detail_url": "https://comicvine.gamespot.com/mammon/4005-85063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85064/", + "id": 85064, + "name": "Barbara Petrovic", + "site_detail_url": "https://comicvine.gamespot.com/barbara-petrovic/4005-85064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85065/", + "id": 85065, + "name": "The Witness", + "site_detail_url": "https://comicvine.gamespot.com/the-witness/4005-85065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85077/", + "id": 85077, + "name": "Roger Price", + "site_detail_url": "https://comicvine.gamespot.com/roger-price/4005-85077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85078/", + "id": 85078, + "name": "Jane Price", + "site_detail_url": "https://comicvine.gamespot.com/jane-price/4005-85078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85079/", + "id": 85079, + "name": "Borya Cich", + "site_detail_url": "https://comicvine.gamespot.com/borya-cich/4005-85079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85091/", + "id": 85091, + "name": "Spider-Mech", + "site_detail_url": "https://comicvine.gamespot.com/spider-mech/4005-85091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85092/", + "id": 85092, + "name": "Nurotox", + "site_detail_url": "https://comicvine.gamespot.com/nurotox/4005-85092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85093/", + "id": 85093, + "name": "'Spinner", + "site_detail_url": "https://comicvine.gamespot.com/spinner/4005-85093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85094/", + "id": 85094, + "name": "Psider-Man", + "site_detail_url": "https://comicvine.gamespot.com/psider-man/4005-85094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85095/", + "id": 85095, + "name": "Father Spider", + "site_detail_url": "https://comicvine.gamespot.com/father-spider/4005-85095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85096/", + "id": 85096, + "name": "Longlegs Secundus", + "site_detail_url": "https://comicvine.gamespot.com/longlegs-secundus/4005-85096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85103/", + "id": 85103, + "name": "Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/hurricane/4005-85103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85118/", + "id": 85118, + "name": "Bomb", + "site_detail_url": "https://comicvine.gamespot.com/bomb/4005-85118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85119/", + "id": 85119, + "name": "Chahr", + "site_detail_url": "https://comicvine.gamespot.com/chahr/4005-85119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85120/", + "id": 85120, + "name": "Holo", + "site_detail_url": "https://comicvine.gamespot.com/holo/4005-85120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85121/", + "id": 85121, + "name": "Taros", + "site_detail_url": "https://comicvine.gamespot.com/taros/4005-85121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85146/", + "id": 85146, + "name": "Erik Wender", + "site_detail_url": "https://comicvine.gamespot.com/erik-wender/4005-85146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85154/", + "id": 85154, + "name": "Elliot Pasko", + "site_detail_url": "https://comicvine.gamespot.com/elliot-pasko/4005-85154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85159/", + "id": 85159, + "name": "Patricia Lynne Sobrero", + "site_detail_url": "https://comicvine.gamespot.com/patricia-lynne-sobrero/4005-85159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85160/", + "id": 85160, + "name": "Aaron Ray Leonard", + "site_detail_url": "https://comicvine.gamespot.com/aaron-ray-leonard/4005-85160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85164/", + "id": 85164, + "name": "Herman Szell", + "site_detail_url": "https://comicvine.gamespot.com/herman-szell/4005-85164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85165/", + "id": 85165, + "name": "Junzo Tanaka", + "site_detail_url": "https://comicvine.gamespot.com/junzo-tanaka/4005-85165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85166/", + "id": 85166, + "name": "Prime Minister Isherwood", + "site_detail_url": "https://comicvine.gamespot.com/prime-minister-isherwood/4005-85166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85167/", + "id": 85167, + "name": "Zed", + "site_detail_url": "https://comicvine.gamespot.com/zed/4005-85167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85168/", + "id": 85168, + "name": "Hassan", + "site_detail_url": "https://comicvine.gamespot.com/hassan/4005-85168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85169/", + "id": 85169, + "name": "Olga", + "site_detail_url": "https://comicvine.gamespot.com/olga/4005-85169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85170/", + "id": 85170, + "name": "Random", + "site_detail_url": "https://comicvine.gamespot.com/random/4005-85170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85179/", + "id": 85179, + "name": "Cletus Kasady", + "site_detail_url": "https://comicvine.gamespot.com/cletus-kasady/4005-85179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85180/", + "id": 85180, + "name": "Douglas Rockwell", + "site_detail_url": "https://comicvine.gamespot.com/douglas-rockwell/4005-85180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85181/", + "id": 85181, + "name": "Crime-Master (Brant)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-brant/4005-85181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85183/", + "id": 85183, + "name": "Chleee", + "site_detail_url": "https://comicvine.gamespot.com/chleee/4005-85183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85196/", + "id": 85196, + "name": "Crime-Master (Lewis Jr.)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-lewis-jr/4005-85196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85197/", + "id": 85197, + "name": "Janice Foswell", + "site_detail_url": "https://comicvine.gamespot.com/janice-foswell/4005-85197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85198/", + "id": 85198, + "name": "Alice Nugent", + "site_detail_url": "https://comicvine.gamespot.com/alice-nugent/4005-85198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85199/", + "id": 85199, + "name": "Doctor Spectrum (Gomes)", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum-gomes/4005-85199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85200/", + "id": 85200, + "name": "Fred Jones", + "site_detail_url": "https://comicvine.gamespot.com/fred-jones/4005-85200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85201/", + "id": 85201, + "name": "Doctor Spectrum (Obatu)", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum-obatu/4005-85201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85203/", + "id": 85203, + "name": "Doctor Spectrum (Roberts)", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum-roberts/4005-85203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85217/", + "id": 85217, + "name": "Amber D'Alexis", + "site_detail_url": "https://comicvine.gamespot.com/amber-dalexis/4005-85217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85219/", + "id": 85219, + "name": "Nightmask (Randall)", + "site_detail_url": "https://comicvine.gamespot.com/nightmask-randall/4005-85219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85227/", + "id": 85227, + "name": "Freedom Loving Scientist", + "site_detail_url": "https://comicvine.gamespot.com/freedom-loving-scientist/4005-85227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85230/", + "id": 85230, + "name": "Ely-Vell", + "site_detail_url": "https://comicvine.gamespot.com/ely-vell/4005-85230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85248/", + "id": 85248, + "name": "Carson Wyche", + "site_detail_url": "https://comicvine.gamespot.com/carson-wyche/4005-85248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85249/", + "id": 85249, + "name": "Walter Macken", + "site_detail_url": "https://comicvine.gamespot.com/walter-macken/4005-85249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85250/", + "id": 85250, + "name": "Tim Cababa", + "site_detail_url": "https://comicvine.gamespot.com/tim-cababa/4005-85250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85251/", + "id": 85251, + "name": "Splitlip", + "site_detail_url": "https://comicvine.gamespot.com/splitlip/4005-85251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85252/", + "id": 85252, + "name": "Leonard Pimacher", + "site_detail_url": "https://comicvine.gamespot.com/leonard-pimacher/4005-85252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85253/", + "id": 85253, + "name": "General Babbage", + "site_detail_url": "https://comicvine.gamespot.com/general-babbage/4005-85253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85255/", + "id": 85255, + "name": "Shadow-Hand", + "site_detail_url": "https://comicvine.gamespot.com/shadow-hand/4005-85255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85276/", + "id": 85276, + "name": "Fifty-One", + "site_detail_url": "https://comicvine.gamespot.com/fifty-one/4005-85276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85284/", + "id": 85284, + "name": "Ms. Thing", + "site_detail_url": "https://comicvine.gamespot.com/ms-thing/4005-85284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85287/", + "id": 85287, + "name": "Blackwing", + "site_detail_url": "https://comicvine.gamespot.com/blackwing/4005-85287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85289/", + "id": 85289, + "name": "Hardball", + "site_detail_url": "https://comicvine.gamespot.com/hardball/4005-85289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85290/", + "id": 85290, + "name": "Dogface", + "site_detail_url": "https://comicvine.gamespot.com/dogface/4005-85290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85294/", + "id": 85294, + "name": "Visigoth", + "site_detail_url": "https://comicvine.gamespot.com/visigoth/4005-85294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85307/", + "id": 85307, + "name": "Hassle", + "site_detail_url": "https://comicvine.gamespot.com/hassle/4005-85307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85308/", + "id": 85308, + "name": "Slick", + "site_detail_url": "https://comicvine.gamespot.com/slick/4005-85308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85309/", + "id": 85309, + "name": "Swift", + "site_detail_url": "https://comicvine.gamespot.com/swift/4005-85309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85310/", + "id": 85310, + "name": "Brain", + "site_detail_url": "https://comicvine.gamespot.com/brain/4005-85310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85311/", + "id": 85311, + "name": "Death-Dealer", + "site_detail_url": "https://comicvine.gamespot.com/death-dealer/4005-85311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85313/", + "id": 85313, + "name": "Doctor Cyclobe", + "site_detail_url": "https://comicvine.gamespot.com/doctor-cyclobe/4005-85313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85314/", + "id": 85314, + "name": "Broadoni", + "site_detail_url": "https://comicvine.gamespot.com/broadoni/4005-85314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85315/", + "id": 85315, + "name": "Bones", + "site_detail_url": "https://comicvine.gamespot.com/bones/4005-85315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85319/", + "id": 85319, + "name": "Marcus Wellington", + "site_detail_url": "https://comicvine.gamespot.com/marcus-wellington/4005-85319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85320/", + "id": 85320, + "name": "Melodi Caitlin Maclain", + "site_detail_url": "https://comicvine.gamespot.com/melodi-caitlin-maclain/4005-85320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85335/", + "id": 85335, + "name": "Zanth", + "site_detail_url": "https://comicvine.gamespot.com/zanth/4005-85335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85336/", + "id": 85336, + "name": "Ast", + "site_detail_url": "https://comicvine.gamespot.com/ast/4005-85336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85338/", + "id": 85338, + "name": "Vorth", + "site_detail_url": "https://comicvine.gamespot.com/vorth/4005-85338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85340/", + "id": 85340, + "name": "Coltrane", + "site_detail_url": "https://comicvine.gamespot.com/coltrane/4005-85340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85341/", + "id": 85341, + "name": "Oracle of Siwa", + "site_detail_url": "https://comicvine.gamespot.com/oracle-of-siwa/4005-85341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85344/", + "id": 85344, + "name": "Angel", + "site_detail_url": "https://comicvine.gamespot.com/angel/4005-85344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85345/", + "id": 85345, + "name": "Colonel Ottman", + "site_detail_url": "https://comicvine.gamespot.com/colonel-ottman/4005-85345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85356/", + "id": 85356, + "name": "Taxi Taylor", + "site_detail_url": "https://comicvine.gamespot.com/taxi-taylor/4005-85356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85358/", + "id": 85358, + "name": "Turbine", + "site_detail_url": "https://comicvine.gamespot.com/turbine/4005-85358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85359/", + "id": 85359, + "name": "Receptor", + "site_detail_url": "https://comicvine.gamespot.com/receptor/4005-85359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85360/", + "id": 85360, + "name": "Reinforcer", + "site_detail_url": "https://comicvine.gamespot.com/reinforcer/4005-85360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85361/", + "id": 85361, + "name": "Regulator", + "site_detail_url": "https://comicvine.gamespot.com/regulator/4005-85361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85363/", + "id": 85363, + "name": "Shrapnel", + "site_detail_url": "https://comicvine.gamespot.com/shrapnel/4005-85363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85364/", + "id": 85364, + "name": "Vice Versa", + "site_detail_url": "https://comicvine.gamespot.com/vice-versa/4005-85364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85365/", + "id": 85365, + "name": "Chuck Harrington", + "site_detail_url": "https://comicvine.gamespot.com/chuck-harrington/4005-85365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85371/", + "id": 85371, + "name": "Charlie Gray", + "site_detail_url": "https://comicvine.gamespot.com/charlie-gray/4005-85371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85372/", + "id": 85372, + "name": "Wilma Gray", + "site_detail_url": "https://comicvine.gamespot.com/wilma-gray/4005-85372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85375/", + "id": 85375, + "name": "Mary Perzentka", + "site_detail_url": "https://comicvine.gamespot.com/mary-perzentka/4005-85375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85376/", + "id": 85376, + "name": "Ben Harrington", + "site_detail_url": "https://comicvine.gamespot.com/ben-harrington/4005-85376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85377/", + "id": 85377, + "name": "Emily Harrington", + "site_detail_url": "https://comicvine.gamespot.com/emily-harrington/4005-85377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85378/", + "id": 85378, + "name": "Helen Harrington", + "site_detail_url": "https://comicvine.gamespot.com/helen-harrington/4005-85378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85379/", + "id": 85379, + "name": "Jill Harrington", + "site_detail_url": "https://comicvine.gamespot.com/jill-harrington/4005-85379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85384/", + "id": 85384, + "name": "Mach 2", + "site_detail_url": "https://comicvine.gamespot.com/mach-2/4005-85384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85394/", + "id": 85394, + "name": "Massimo Cesare", + "site_detail_url": "https://comicvine.gamespot.com/massimo-cesare/4005-85394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85399/", + "id": 85399, + "name": "Freefall", + "site_detail_url": "https://comicvine.gamespot.com/freefall/4005-85399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85400/", + "id": 85400, + "name": "Jane Semple", + "site_detail_url": "https://comicvine.gamespot.com/jane-semple/4005-85400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85401/", + "id": 85401, + "name": "Interface", + "site_detail_url": "https://comicvine.gamespot.com/interface/4005-85401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85402/", + "id": 85402, + "name": "Tangler", + "site_detail_url": "https://comicvine.gamespot.com/tangler/4005-85402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85403/", + "id": 85403, + "name": "Stalagmite", + "site_detail_url": "https://comicvine.gamespot.com/stalagmite/4005-85403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85404/", + "id": 85404, + "name": "Shock", + "site_detail_url": "https://comicvine.gamespot.com/shock/4005-85404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85405/", + "id": 85405, + "name": "Dementia", + "site_detail_url": "https://comicvine.gamespot.com/dementia/4005-85405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85406/", + "id": 85406, + "name": "Wormhole", + "site_detail_url": "https://comicvine.gamespot.com/wormhole/4005-85406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85434/", + "id": 85434, + "name": "Woodsman", + "site_detail_url": "https://comicvine.gamespot.com/woodsman/4005-85434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85435/", + "id": 85435, + "name": "Demon the Dog", + "site_detail_url": "https://comicvine.gamespot.com/demon-the-dog/4005-85435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85436/", + "id": 85436, + "name": "Mr. Lezar", + "site_detail_url": "https://comicvine.gamespot.com/mr-lezar/4005-85436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85437/", + "id": 85437, + "name": "Mr. Price", + "site_detail_url": "https://comicvine.gamespot.com/mr-price/4005-85437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85438/", + "id": 85438, + "name": "Mr. West", + "site_detail_url": "https://comicvine.gamespot.com/mr-west/4005-85438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85439/", + "id": 85439, + "name": "Mr. Bernard", + "site_detail_url": "https://comicvine.gamespot.com/mr-bernard/4005-85439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85440/", + "id": 85440, + "name": "Mr. Perricone", + "site_detail_url": "https://comicvine.gamespot.com/mr-perricone/4005-85440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85441/", + "id": 85441, + "name": "Mr. Maiscott", + "site_detail_url": "https://comicvine.gamespot.com/mr-maiscott/4005-85441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85442/", + "id": 85442, + "name": "Mr. Fraley", + "site_detail_url": "https://comicvine.gamespot.com/mr-fraley/4005-85442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85443/", + "id": 85443, + "name": "Trancer", + "site_detail_url": "https://comicvine.gamespot.com/trancer/4005-85443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85444/", + "id": 85444, + "name": "The Apparition", + "site_detail_url": "https://comicvine.gamespot.com/the-apparition/4005-85444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85445/", + "id": 85445, + "name": "Phantom Bullet", + "site_detail_url": "https://comicvine.gamespot.com/phantom-bullet/4005-85445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85446/", + "id": 85446, + "name": "Supernatural", + "site_detail_url": "https://comicvine.gamespot.com/supernatural/4005-85446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85447/", + "id": 85447, + "name": "Psi-Lord", + "site_detail_url": "https://comicvine.gamespot.com/psi-lord/4005-85447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85448/", + "id": 85448, + "name": "Purple Veil", + "site_detail_url": "https://comicvine.gamespot.com/purple-veil/4005-85448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85449/", + "id": 85449, + "name": "Mr. Cuzinski", + "site_detail_url": "https://comicvine.gamespot.com/mr-cuzinski/4005-85449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85451/", + "id": 85451, + "name": "Amy Pope", + "site_detail_url": "https://comicvine.gamespot.com/amy-pope/4005-85451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85452/", + "id": 85452, + "name": "Craig Lagraves", + "site_detail_url": "https://comicvine.gamespot.com/craig-lagraves/4005-85452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85453/", + "id": 85453, + "name": "Tanis Newhouse", + "site_detail_url": "https://comicvine.gamespot.com/tanis-newhouse/4005-85453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85454/", + "id": 85454, + "name": "Orville Upham", + "site_detail_url": "https://comicvine.gamespot.com/orville-upham/4005-85454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85455/", + "id": 85455, + "name": "Scrap Iron", + "site_detail_url": "https://comicvine.gamespot.com/scrap-iron/4005-85455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85457/", + "id": 85457, + "name": "Joshua Kale", + "site_detail_url": "https://comicvine.gamespot.com/joshua-kale/4005-85457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85458/", + "id": 85458, + "name": "Indigo", + "site_detail_url": "https://comicvine.gamespot.com/indigo/4005-85458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85459/", + "id": 85459, + "name": "Squirm", + "site_detail_url": "https://comicvine.gamespot.com/squirm/4005-85459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85460/", + "id": 85460, + "name": "Chill", + "site_detail_url": "https://comicvine.gamespot.com/chill/4005-85460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85461/", + "id": 85461, + "name": "Blindspot", + "site_detail_url": "https://comicvine.gamespot.com/blindspot/4005-85461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85462/", + "id": 85462, + "name": "The Mad Viking", + "site_detail_url": "https://comicvine.gamespot.com/the-mad-viking/4005-85462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85463/", + "id": 85463, + "name": "Quiver", + "site_detail_url": "https://comicvine.gamespot.com/quiver/4005-85463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85464/", + "id": 85464, + "name": "Juris Ziegler", + "site_detail_url": "https://comicvine.gamespot.com/juris-ziegler/4005-85464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85465/", + "id": 85465, + "name": "Mothball", + "site_detail_url": "https://comicvine.gamespot.com/mothball/4005-85465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85466/", + "id": 85466, + "name": "Raindrop", + "site_detail_url": "https://comicvine.gamespot.com/raindrop/4005-85466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85467/", + "id": 85467, + "name": "Eugene Spangler", + "site_detail_url": "https://comicvine.gamespot.com/eugene-spangler/4005-85467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85470/", + "id": 85470, + "name": "Jaxon", + "site_detail_url": "https://comicvine.gamespot.com/jaxon/4005-85470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85485/", + "id": 85485, + "name": "Jim Hanrahan", + "site_detail_url": "https://comicvine.gamespot.com/jim-hanrahan/4005-85485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85486/", + "id": 85486, + "name": "Thrust", + "site_detail_url": "https://comicvine.gamespot.com/thrust/4005-85486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85487/", + "id": 85487, + "name": "Glom", + "site_detail_url": "https://comicvine.gamespot.com/glom/4005-85487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85493/", + "id": 85493, + "name": "Murderous Lion", + "site_detail_url": "https://comicvine.gamespot.com/murderous-lion/4005-85493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85515/", + "id": 85515, + "name": "Stecky", + "site_detail_url": "https://comicvine.gamespot.com/stecky/4005-85515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85516/", + "id": 85516, + "name": "Priscilla Cole", + "site_detail_url": "https://comicvine.gamespot.com/priscilla-cole/4005-85516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85517/", + "id": 85517, + "name": "James Lucas", + "site_detail_url": "https://comicvine.gamespot.com/james-lucas/4005-85517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85519/", + "id": 85519, + "name": "Scurve", + "site_detail_url": "https://comicvine.gamespot.com/scurve/4005-85519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85520/", + "id": 85520, + "name": "Hemingway", + "site_detail_url": "https://comicvine.gamespot.com/hemingway/4005-85520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85521/", + "id": 85521, + "name": "Redeyes", + "site_detail_url": "https://comicvine.gamespot.com/redeyes/4005-85521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85522/", + "id": 85522, + "name": "Baby Icon", + "site_detail_url": "https://comicvine.gamespot.com/baby-icon/4005-85522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85523/", + "id": 85523, + "name": "False God", + "site_detail_url": "https://comicvine.gamespot.com/false-god/4005-85523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85524/", + "id": 85524, + "name": "Montague", + "site_detail_url": "https://comicvine.gamespot.com/montague/4005-85524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85525/", + "id": 85525, + "name": "Azuma", + "site_detail_url": "https://comicvine.gamespot.com/azuma/4005-85525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85526/", + "id": 85526, + "name": "Miss Drugstore", + "site_detail_url": "https://comicvine.gamespot.com/miss-drugstore/4005-85526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85527/", + "id": 85527, + "name": "Arnold Dane", + "site_detail_url": "https://comicvine.gamespot.com/arnold-dane/4005-85527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85528/", + "id": 85528, + "name": "Irene Dobish", + "site_detail_url": "https://comicvine.gamespot.com/irene-dobish/4005-85528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85529/", + "id": 85529, + "name": "Dirtbag", + "site_detail_url": "https://comicvine.gamespot.com/dirtbag/4005-85529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85530/", + "id": 85530, + "name": "Hamilton Hart", + "site_detail_url": "https://comicvine.gamespot.com/hamilton-hart/4005-85530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85544/", + "id": 85544, + "name": "The Demon of the Dark", + "site_detail_url": "https://comicvine.gamespot.com/the-demon-of-the-dark/4005-85544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85550/", + "id": 85550, + "name": "Milius", + "site_detail_url": "https://comicvine.gamespot.com/milius/4005-85550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85551/", + "id": 85551, + "name": "Deadweight", + "site_detail_url": "https://comicvine.gamespot.com/deadweight/4005-85551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85552/", + "id": 85552, + "name": "The Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-cure/4005-85552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85594/", + "id": 85594, + "name": "Madness Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/madness-valkyrie/4005-85594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85605/", + "id": 85605, + "name": "Zum", + "site_detail_url": "https://comicvine.gamespot.com/zum/4005-85605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85606/", + "id": 85606, + "name": "Cathy Polombo", + "site_detail_url": "https://comicvine.gamespot.com/cathy-polombo/4005-85606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85607/", + "id": 85607, + "name": "First Sergeant Jim Tarver", + "site_detail_url": "https://comicvine.gamespot.com/first-sergeant-jim-tarver/4005-85607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85609/", + "id": 85609, + "name": "Private Rossi", + "site_detail_url": "https://comicvine.gamespot.com/private-rossi/4005-85609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85610/", + "id": 85610, + "name": "Phil DeLuca", + "site_detail_url": "https://comicvine.gamespot.com/phil-deluca/4005-85610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85611/", + "id": 85611, + "name": "Eli Dove", + "site_detail_url": "https://comicvine.gamespot.com/eli-dove/4005-85611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85612/", + "id": 85612, + "name": "Gail Henderson", + "site_detail_url": "https://comicvine.gamespot.com/gail-henderson/4005-85612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85613/", + "id": 85613, + "name": "Marilyn", + "site_detail_url": "https://comicvine.gamespot.com/marilyn/4005-85613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85620/", + "id": 85620, + "name": "Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thunder/4005-85620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85622/", + "id": 85622, + "name": "Ralph Quentin", + "site_detail_url": "https://comicvine.gamespot.com/ralph-quentin/4005-85622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85623/", + "id": 85623, + "name": "Malice", + "site_detail_url": "https://comicvine.gamespot.com/malice/4005-85623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85654/", + "id": 85654, + "name": "Great Vincenzo", + "site_detail_url": "https://comicvine.gamespot.com/great-vincenzo/4005-85654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85655/", + "id": 85655, + "name": "Freakmaster", + "site_detail_url": "https://comicvine.gamespot.com/freakmaster/4005-85655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85662/", + "id": 85662, + "name": "Vanessa Baker", + "site_detail_url": "https://comicvine.gamespot.com/vanessa-baker/4005-85662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85663/", + "id": 85663, + "name": "Jefferson Chambers", + "site_detail_url": "https://comicvine.gamespot.com/jefferson-chambers/4005-85663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85664/", + "id": 85664, + "name": "Wyatt Crowley", + "site_detail_url": "https://comicvine.gamespot.com/wyatt-crowley/4005-85664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85665/", + "id": 85665, + "name": "The Menace", + "site_detail_url": "https://comicvine.gamespot.com/the-menace/4005-85665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85666/", + "id": 85666, + "name": "Brok the Crusher", + "site_detail_url": "https://comicvine.gamespot.com/brok-the-crusher/4005-85666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85667/", + "id": 85667, + "name": "Drom the Spirit Weaver", + "site_detail_url": "https://comicvine.gamespot.com/drom-the-spirit-weaver/4005-85667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85668/", + "id": 85668, + "name": "Galp of the Steel Arm", + "site_detail_url": "https://comicvine.gamespot.com/galp-of-the-steel-arm/4005-85668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85669/", + "id": 85669, + "name": "Tyr of the Blinding Blade", + "site_detail_url": "https://comicvine.gamespot.com/tyr-of-the-blinding-blade/4005-85669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85678/", + "id": 85678, + "name": "Brian Lazarus", + "site_detail_url": "https://comicvine.gamespot.com/brian-lazarus/4005-85678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85692/", + "id": 85692, + "name": "Rot", + "site_detail_url": "https://comicvine.gamespot.com/rot/4005-85692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85699/", + "id": 85699, + "name": "27", + "site_detail_url": "https://comicvine.gamespot.com/27/4005-85699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85702/", + "id": 85702, + "name": "Wing", + "site_detail_url": "https://comicvine.gamespot.com/wing/4005-85702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85703/", + "id": 85703, + "name": "Harold Beaker", + "site_detail_url": "https://comicvine.gamespot.com/harold-beaker/4005-85703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85710/", + "id": 85710, + "name": "Lars Wender", + "site_detail_url": "https://comicvine.gamespot.com/lars-wender/4005-85710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85711/", + "id": 85711, + "name": "Mr. Doyle", + "site_detail_url": "https://comicvine.gamespot.com/mr-doyle/4005-85711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85712/", + "id": 85712, + "name": "Mr. Marin", + "site_detail_url": "https://comicvine.gamespot.com/mr-marin/4005-85712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85713/", + "id": 85713, + "name": "Ms. Kell", + "site_detail_url": "https://comicvine.gamespot.com/ms-kell/4005-85713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85714/", + "id": 85714, + "name": "Boss Sanders", + "site_detail_url": "https://comicvine.gamespot.com/boss-sanders/4005-85714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85715/", + "id": 85715, + "name": "Annie Malcolm", + "site_detail_url": "https://comicvine.gamespot.com/annie-malcolm/4005-85715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85716/", + "id": 85716, + "name": "Mr. Kangshaw", + "site_detail_url": "https://comicvine.gamespot.com/mr-kangshaw/4005-85716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85718/", + "id": 85718, + "name": "Taxtor", + "site_detail_url": "https://comicvine.gamespot.com/taxtor/4005-85718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85719/", + "id": 85719, + "name": "Magno-Man", + "site_detail_url": "https://comicvine.gamespot.com/magno-man/4005-85719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85722/", + "id": 85722, + "name": "Detective Len Mico", + "site_detail_url": "https://comicvine.gamespot.com/detective-len-mico/4005-85722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85723/", + "id": 85723, + "name": "Detective Phil Jones", + "site_detail_url": "https://comicvine.gamespot.com/detective-phil-jones/4005-85723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85724/", + "id": 85724, + "name": "Barbara Walker", + "site_detail_url": "https://comicvine.gamespot.com/barbara-walker/4005-85724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85726/", + "id": 85726, + "name": "Kestorian Captain", + "site_detail_url": "https://comicvine.gamespot.com/kestorian-captain/4005-85726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85727/", + "id": 85727, + "name": "Number One", + "site_detail_url": "https://comicvine.gamespot.com/number-one/4005-85727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85728/", + "id": 85728, + "name": "Tannar", + "site_detail_url": "https://comicvine.gamespot.com/tannar/4005-85728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85729/", + "id": 85729, + "name": "Korta", + "site_detail_url": "https://comicvine.gamespot.com/korta/4005-85729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85730/", + "id": 85730, + "name": "Taiya", + "site_detail_url": "https://comicvine.gamespot.com/taiya/4005-85730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85731/", + "id": 85731, + "name": "Taranith Gelstal", + "site_detail_url": "https://comicvine.gamespot.com/taranith-gelstal/4005-85731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85736/", + "id": 85736, + "name": "Salvo", + "site_detail_url": "https://comicvine.gamespot.com/salvo/4005-85736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85737/", + "id": 85737, + "name": "Masquerade", + "site_detail_url": "https://comicvine.gamespot.com/masquerade/4005-85737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85738/", + "id": 85738, + "name": "Impact", + "site_detail_url": "https://comicvine.gamespot.com/impact/4005-85738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85739/", + "id": 85739, + "name": "Orestez Natchios", + "site_detail_url": "https://comicvine.gamespot.com/orestez-natchios/4005-85739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85740/", + "id": 85740, + "name": "Lynch", + "site_detail_url": "https://comicvine.gamespot.com/lynch/4005-85740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85741/", + "id": 85741, + "name": "Niko", + "site_detail_url": "https://comicvine.gamespot.com/niko/4005-85741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85742/", + "id": 85742, + "name": "Target", + "site_detail_url": "https://comicvine.gamespot.com/target/4005-85742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85761/", + "id": 85761, + "name": "Andrew Forson", + "site_detail_url": "https://comicvine.gamespot.com/andrew-forson/4005-85761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85763/", + "id": 85763, + "name": "Firefrost", + "site_detail_url": "https://comicvine.gamespot.com/firefrost/4005-85763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85764/", + "id": 85764, + "name": "Professor Jankovitz", + "site_detail_url": "https://comicvine.gamespot.com/professor-jankovitz/4005-85764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85775/", + "id": 85775, + "name": "The Weird Woman", + "site_detail_url": "https://comicvine.gamespot.com/the-weird-woman/4005-85775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85820/", + "id": 85820, + "name": "Weather Witch", + "site_detail_url": "https://comicvine.gamespot.com/weather-witch/4005-85820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85821/", + "id": 85821, + "name": "Revolutionary", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary/4005-85821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85822/", + "id": 85822, + "name": "Soldier One", + "site_detail_url": "https://comicvine.gamespot.com/soldier-one/4005-85822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85823/", + "id": 85823, + "name": "Saber", + "site_detail_url": "https://comicvine.gamespot.com/saber/4005-85823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85824/", + "id": 85824, + "name": "The Star", + "site_detail_url": "https://comicvine.gamespot.com/the-star/4005-85824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85828/", + "id": 85828, + "name": "Vegetable", + "site_detail_url": "https://comicvine.gamespot.com/vegetable/4005-85828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85831/", + "id": 85831, + "name": "M'Daka", + "site_detail_url": "https://comicvine.gamespot.com/mdaka/4005-85831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85834/", + "id": 85834, + "name": "Pilot Marko", + "site_detail_url": "https://comicvine.gamespot.com/pilot-marko/4005-85834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85836/", + "id": 85836, + "name": "Ilya Koblev", + "site_detail_url": "https://comicvine.gamespot.com/ilya-koblev/4005-85836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85837/", + "id": 85837, + "name": "Ioakim Koblev", + "site_detail_url": "https://comicvine.gamespot.com/ioakim-koblev/4005-85837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85843/", + "id": 85843, + "name": "Grasshopper (Shelton)", + "site_detail_url": "https://comicvine.gamespot.com/grasshopper-shelton/4005-85843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85844/", + "id": 85844, + "name": "Grasshopper", + "site_detail_url": "https://comicvine.gamespot.com/grasshopper/4005-85844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85845/", + "id": 85845, + "name": "Grasshopper Skrull", + "site_detail_url": "https://comicvine.gamespot.com/grasshopper-skrull/4005-85845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85849/", + "id": 85849, + "name": "Backhand", + "site_detail_url": "https://comicvine.gamespot.com/backhand/4005-85849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85850/", + "id": 85850, + "name": "Sinew", + "site_detail_url": "https://comicvine.gamespot.com/sinew/4005-85850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85851/", + "id": 85851, + "name": "Singularity", + "site_detail_url": "https://comicvine.gamespot.com/singularity/4005-85851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85852/", + "id": 85852, + "name": "Stare", + "site_detail_url": "https://comicvine.gamespot.com/stare/4005-85852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85854/", + "id": 85854, + "name": "Bayonet", + "site_detail_url": "https://comicvine.gamespot.com/bayonet/4005-85854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85855/", + "id": 85855, + "name": "Black Wolf", + "site_detail_url": "https://comicvine.gamespot.com/black-wolf/4005-85855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85856/", + "id": 85856, + "name": "Brax", + "site_detail_url": "https://comicvine.gamespot.com/brax/4005-85856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85857/", + "id": 85857, + "name": "Death Locket", + "site_detail_url": "https://comicvine.gamespot.com/death-locket/4005-85857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85858/", + "id": 85858, + "name": "Electrode", + "site_detail_url": "https://comicvine.gamespot.com/electrode/4005-85858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85859/", + "id": 85859, + "name": "Eva", + "site_detail_url": "https://comicvine.gamespot.com/eva/4005-85859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85860/", + "id": 85860, + "name": "Hag of the Pits", + "site_detail_url": "https://comicvine.gamespot.com/hag-of-the-pits/4005-85860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85862/", + "id": 85862, + "name": "Johnny Ito", + "site_detail_url": "https://comicvine.gamespot.com/johnny-ito/4005-85862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85864/", + "id": 85864, + "name": "Randolph Winstrom", + "site_detail_url": "https://comicvine.gamespot.com/randolph-winstrom/4005-85864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85865/", + "id": 85865, + "name": "Savage", + "site_detail_url": "https://comicvine.gamespot.com/savage/4005-85865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85866/", + "id": 85866, + "name": "Tony Tapioca", + "site_detail_url": "https://comicvine.gamespot.com/tony-tapioca/4005-85866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85867/", + "id": 85867, + "name": "Tritt", + "site_detail_url": "https://comicvine.gamespot.com/tritt/4005-85867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85868/", + "id": 85868, + "name": "Virus", + "site_detail_url": "https://comicvine.gamespot.com/virus/4005-85868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85869/", + "id": 85869, + "name": "White Tiger God", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-god/4005-85869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85870/", + "id": 85870, + "name": "Yeti", + "site_detail_url": "https://comicvine.gamespot.com/yeti/4005-85870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85871/", + "id": 85871, + "name": "Drake", + "site_detail_url": "https://comicvine.gamespot.com/drake/4005-85871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85900/", + "id": 85900, + "name": "Emperor Edward Hammond", + "site_detail_url": "https://comicvine.gamespot.com/emperor-edward-hammond/4005-85900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85912/", + "id": 85912, + "name": "Mother Abagail", + "site_detail_url": "https://comicvine.gamespot.com/mother-abagail/4005-85912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85922/", + "id": 85922, + "name": "Dr. Calvin Cooley", + "site_detail_url": "https://comicvine.gamespot.com/dr-calvin-cooley/4005-85922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85939/", + "id": 85939, + "name": "Sister Voodoo", + "site_detail_url": "https://comicvine.gamespot.com/sister-voodoo/4005-85939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85947/", + "id": 85947, + "name": "Mele", + "site_detail_url": "https://comicvine.gamespot.com/mele/4005-85947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85970/", + "id": 85970, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-85970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85974/", + "id": 85974, + "name": "Hound", + "site_detail_url": "https://comicvine.gamespot.com/hound/4005-85974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85983/", + "id": 85983, + "name": "Charlie America", + "site_detail_url": "https://comicvine.gamespot.com/charlie-america/4005-85983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85984/", + "id": 85984, + "name": "Inedible Bulk", + "site_detail_url": "https://comicvine.gamespot.com/inedible-bulk/4005-85984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85991/", + "id": 85991, + "name": "Goat-Faced Girl", + "site_detail_url": "https://comicvine.gamespot.com/goat-faced-girl/4005-85991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85992/", + "id": 85992, + "name": "The Insect", + "site_detail_url": "https://comicvine.gamespot.com/the-insect/4005-85992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85994/", + "id": 85994, + "name": "Raidus", + "site_detail_url": "https://comicvine.gamespot.com/raidus/4005-85994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85995/", + "id": 85995, + "name": "Centivros", + "site_detail_url": "https://comicvine.gamespot.com/centivros/4005-85995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85996/", + "id": 85996, + "name": "Xerxes", + "site_detail_url": "https://comicvine.gamespot.com/xerxes/4005-85996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85997/", + "id": 85997, + "name": "Null-Tron", + "site_detail_url": "https://comicvine.gamespot.com/null-tron/4005-85997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85998/", + "id": 85998, + "name": "Krevius", + "site_detail_url": "https://comicvine.gamespot.com/krevius/4005-85998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-85999/", + "id": 85999, + "name": "Veras", + "site_detail_url": "https://comicvine.gamespot.com/veras/4005-85999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86001/", + "id": 86001, + "name": "Tanjaar", + "site_detail_url": "https://comicvine.gamespot.com/tanjaar/4005-86001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86002/", + "id": 86002, + "name": "Sarah", + "site_detail_url": "https://comicvine.gamespot.com/sarah/4005-86002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86004/", + "id": 86004, + "name": "Pinus", + "site_detail_url": "https://comicvine.gamespot.com/pinus/4005-86004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86005/", + "id": 86005, + "name": "Pastor Hail", + "site_detail_url": "https://comicvine.gamespot.com/pastor-hail/4005-86005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86013/", + "id": 86013, + "name": "Cheiros", + "site_detail_url": "https://comicvine.gamespot.com/cheiros/4005-86013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86015/", + "id": 86015, + "name": "Kylus", + "site_detail_url": "https://comicvine.gamespot.com/kylus/4005-86015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86018/", + "id": 86018, + "name": "Voodoo Chile", + "site_detail_url": "https://comicvine.gamespot.com/voodoo-chile/4005-86018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86037/", + "id": 86037, + "name": "Sparrow", + "site_detail_url": "https://comicvine.gamespot.com/sparrow/4005-86037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86070/", + "id": 86070, + "name": "Tiberius Stone", + "site_detail_url": "https://comicvine.gamespot.com/tiberius-stone/4005-86070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86072/", + "id": 86072, + "name": "Wall", + "site_detail_url": "https://comicvine.gamespot.com/wall/4005-86072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86073/", + "id": 86073, + "name": "Tempest", + "site_detail_url": "https://comicvine.gamespot.com/tempest/4005-86073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86074/", + "id": 86074, + "name": "Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/bedlam/4005-86074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86075/", + "id": 86075, + "name": "Dr. Ilsa Moon", + "site_detail_url": "https://comicvine.gamespot.com/dr-ilsa-moon/4005-86075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86086/", + "id": 86086, + "name": "Cy", + "site_detail_url": "https://comicvine.gamespot.com/cy/4005-86086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86087/", + "id": 86087, + "name": "Sue", + "site_detail_url": "https://comicvine.gamespot.com/sue/4005-86087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86088/", + "id": 86088, + "name": "Crackers", + "site_detail_url": "https://comicvine.gamespot.com/crackers/4005-86088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86105/", + "id": 86105, + "name": "Coulmier", + "site_detail_url": "https://comicvine.gamespot.com/coulmier/4005-86105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86106/", + "id": 86106, + "name": "Victor Hierra", + "site_detail_url": "https://comicvine.gamespot.com/victor-hierra/4005-86106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86107/", + "id": 86107, + "name": "Jardiem Salazar", + "site_detail_url": "https://comicvine.gamespot.com/jardiem-salazar/4005-86107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86108/", + "id": 86108, + "name": "Adele Santiago", + "site_detail_url": "https://comicvine.gamespot.com/adele-santiago/4005-86108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86114/", + "id": 86114, + "name": "Coyote", + "site_detail_url": "https://comicvine.gamespot.com/coyote/4005-86114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86115/", + "id": 86115, + "name": "Joelle", + "site_detail_url": "https://comicvine.gamespot.com/joelle/4005-86115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86124/", + "id": 86124, + "name": "Anthony Tortino", + "site_detail_url": "https://comicvine.gamespot.com/anthony-tortino/4005-86124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86165/", + "id": 86165, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4005-86165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86173/", + "id": 86173, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4005-86173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86177/", + "id": 86177, + "name": "Redeemer", + "site_detail_url": "https://comicvine.gamespot.com/redeemer/4005-86177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86241/", + "id": 86241, + "name": "Lord Gouzar", + "site_detail_url": "https://comicvine.gamespot.com/lord-gouzar/4005-86241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86242/", + "id": 86242, + "name": "Starlord (Quarrel)", + "site_detail_url": "https://comicvine.gamespot.com/starlord-quarrel/4005-86242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86245/", + "id": 86245, + "name": "Sin-Eater (Engelschwert)", + "site_detail_url": "https://comicvine.gamespot.com/sin-eater-engelschwert/4005-86245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86263/", + "id": 86263, + "name": "Firebrand (Broxtel)", + "site_detail_url": "https://comicvine.gamespot.com/firebrand-broxtel/4005-86263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86264/", + "id": 86264, + "name": "Firebrand", + "site_detail_url": "https://comicvine.gamespot.com/firebrand/4005-86264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86265/", + "id": 86265, + "name": "Blizzard (Shapanka)", + "site_detail_url": "https://comicvine.gamespot.com/blizzard-shapanka/4005-86265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86279/", + "id": 86279, + "name": "Arthur Pithins", + "site_detail_url": "https://comicvine.gamespot.com/arthur-pithins/4005-86279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86289/", + "id": 86289, + "name": "HOMER", + "site_detail_url": "https://comicvine.gamespot.com/homer/4005-86289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86290/", + "id": 86290, + "name": "VOR/TEX", + "site_detail_url": "https://comicvine.gamespot.com/vortex/4005-86290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86295/", + "id": 86295, + "name": "Ginny Edwards", + "site_detail_url": "https://comicvine.gamespot.com/ginny-edwards/4005-86295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86296/", + "id": 86296, + "name": "Eye Boy", + "site_detail_url": "https://comicvine.gamespot.com/eye-boy/4005-86296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86297/", + "id": 86297, + "name": "Sprite", + "site_detail_url": "https://comicvine.gamespot.com/sprite/4005-86297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86299/", + "id": 86299, + "name": "Mrs. Livitz", + "site_detail_url": "https://comicvine.gamespot.com/mrs-livitz/4005-86299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86319/", + "id": 86319, + "name": "Lil' Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/lil-ka-zar/4005-86319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86320/", + "id": 86320, + "name": "Lil' Zabu", + "site_detail_url": "https://comicvine.gamespot.com/lil-zabu/4005-86320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86328/", + "id": 86328, + "name": "Sandy York", + "site_detail_url": "https://comicvine.gamespot.com/sandy-york/4005-86328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86341/", + "id": 86341, + "name": "Allison Kemp", + "site_detail_url": "https://comicvine.gamespot.com/allison-kemp/4005-86341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86342/", + "id": 86342, + "name": "Mr. De Millstone", + "site_detail_url": "https://comicvine.gamespot.com/mr-de-millstone/4005-86342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86371/", + "id": 86371, + "name": "Kodiak", + "site_detail_url": "https://comicvine.gamespot.com/kodiak/4005-86371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86372/", + "id": 86372, + "name": "Marquis Radu", + "site_detail_url": "https://comicvine.gamespot.com/marquis-radu/4005-86372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86376/", + "id": 86376, + "name": "Bull's Eye", + "site_detail_url": "https://comicvine.gamespot.com/bull-s-eye/4005-86376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86384/", + "id": 86384, + "name": "Swordsman's Student", + "site_detail_url": "https://comicvine.gamespot.com/swordsmans-student/4005-86384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86387/", + "id": 86387, + "name": "Gotteskrieger", + "site_detail_url": "https://comicvine.gamespot.com/gotteskrieger/4005-86387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86388/", + "id": 86388, + "name": "Max Lohmer", + "site_detail_url": "https://comicvine.gamespot.com/max-lohmer/4005-86388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86389/", + "id": 86389, + "name": "Carrion (Allen)", + "site_detail_url": "https://comicvine.gamespot.com/carrion-allen/4005-86389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86390/", + "id": 86390, + "name": "Carrion (Warren)", + "site_detail_url": "https://comicvine.gamespot.com/carrion-warren/4005-86390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86391/", + "id": 86391, + "name": "Cherry", + "site_detail_url": "https://comicvine.gamespot.com/cherry/4005-86391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86392/", + "id": 86392, + "name": "Luther Manning", + "site_detail_url": "https://comicvine.gamespot.com/luther-manning/4005-86392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86402/", + "id": 86402, + "name": "Deborah Giacomo", + "site_detail_url": "https://comicvine.gamespot.com/deborah-giacomo/4005-86402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86403/", + "id": 86403, + "name": "Katie Giacomo", + "site_detail_url": "https://comicvine.gamespot.com/katie-giacomo/4005-86403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86404/", + "id": 86404, + "name": "Sal Donoratti", + "site_detail_url": "https://comicvine.gamespot.com/sal-donoratti/4005-86404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86405/", + "id": 86405, + "name": "Ahmed Jobrani", + "site_detail_url": "https://comicvine.gamespot.com/ahmed-jobrani/4005-86405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86406/", + "id": 86406, + "name": "Gene Loren", + "site_detail_url": "https://comicvine.gamespot.com/gene-loren/4005-86406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86424/", + "id": 86424, + "name": "Shark-Girl", + "site_detail_url": "https://comicvine.gamespot.com/shark-girl/4005-86424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86425/", + "id": 86425, + "name": "Mudbug", + "site_detail_url": "https://comicvine.gamespot.com/mudbug/4005-86425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86426/", + "id": 86426, + "name": "Dexter Morgan", + "site_detail_url": "https://comicvine.gamespot.com/dexter-morgan/4005-86426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86432/", + "id": 86432, + "name": "Tempus", + "site_detail_url": "https://comicvine.gamespot.com/tempus/4005-86432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86433/", + "id": 86433, + "name": "Triage", + "site_detail_url": "https://comicvine.gamespot.com/triage/4005-86433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86434/", + "id": 86434, + "name": "Atticus Trask", + "site_detail_url": "https://comicvine.gamespot.com/atticus-trask/4005-86434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86435/", + "id": 86435, + "name": "Forrest Goldendawn", + "site_detail_url": "https://comicvine.gamespot.com/forrest-goldendawn/4005-86435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86436/", + "id": 86436, + "name": "Leonine", + "site_detail_url": "https://comicvine.gamespot.com/leonine/4005-86436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86437/", + "id": 86437, + "name": "Meteor", + "site_detail_url": "https://comicvine.gamespot.com/meteor/4005-86437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86438/", + "id": 86438, + "name": "Scout", + "site_detail_url": "https://comicvine.gamespot.com/scout/4005-86438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86439/", + "id": 86439, + "name": "Shadowshift", + "site_detail_url": "https://comicvine.gamespot.com/shadowshift/4005-86439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86440/", + "id": 86440, + "name": "Tithe", + "site_detail_url": "https://comicvine.gamespot.com/tithe/4005-86440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86441/", + "id": 86441, + "name": "Sandy Kintzler", + "site_detail_url": "https://comicvine.gamespot.com/sandy-kintzler/4005-86441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86442/", + "id": 86442, + "name": "Vera", + "site_detail_url": "https://comicvine.gamespot.com/vera/4005-86442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86443/", + "id": 86443, + "name": "Smasher (Kane)", + "site_detail_url": "https://comicvine.gamespot.com/smasher-kane/4005-86443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86450/", + "id": 86450, + "name": "Susan Hatchi", + "site_detail_url": "https://comicvine.gamespot.com/susan-hatchi/4005-86450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86459/", + "id": 86459, + "name": "Greenberg the Vampire", + "site_detail_url": "https://comicvine.gamespot.com/greenberg-the-vampire/4005-86459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86464/", + "id": 86464, + "name": "Phony Priest", + "site_detail_url": "https://comicvine.gamespot.com/phony-priest/4005-86464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86465/", + "id": 86465, + "name": "Mona Simpson", + "site_detail_url": "https://comicvine.gamespot.com/mona-simpson/4005-86465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86468/", + "id": 86468, + "name": "Green Skull", + "site_detail_url": "https://comicvine.gamespot.com/green-skull/4005-86468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86479/", + "id": 86479, + "name": "Doctor Claw", + "site_detail_url": "https://comicvine.gamespot.com/doctor-claw/4005-86479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86483/", + "id": 86483, + "name": "Calcabrina", + "site_detail_url": "https://comicvine.gamespot.com/calcabrina/4005-86483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86496/", + "id": 86496, + "name": "Jet Zola", + "site_detail_url": "https://comicvine.gamespot.com/jet-zola/4005-86496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86502/", + "id": 86502, + "name": "Jefferson Davis", + "site_detail_url": "https://comicvine.gamespot.com/jefferson-davis/4005-86502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86513/", + "id": 86513, + "name": "Darcy Lewis", + "site_detail_url": "https://comicvine.gamespot.com/darcy-lewis/4005-86513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86526/", + "id": 86526, + "name": "Merlin", + "site_detail_url": "https://comicvine.gamespot.com/merlin/4005-86526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86527/", + "id": 86527, + "name": "Lancelot", + "site_detail_url": "https://comicvine.gamespot.com/lancelot/4005-86527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86528/", + "id": 86528, + "name": "Arthur", + "site_detail_url": "https://comicvine.gamespot.com/arthur/4005-86528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86531/", + "id": 86531, + "name": "Emily Preston", + "site_detail_url": "https://comicvine.gamespot.com/emily-preston/4005-86531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86532/", + "id": 86532, + "name": "Agent Gorman", + "site_detail_url": "https://comicvine.gamespot.com/agent-gorman/4005-86532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86538/", + "id": 86538, + "name": "Carl Kronsky", + "site_detail_url": "https://comicvine.gamespot.com/carl-kronsky/4005-86538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86549/", + "id": 86549, + "name": "Bruiser", + "site_detail_url": "https://comicvine.gamespot.com/bruiser/4005-86549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86557/", + "id": 86557, + "name": "Mzee", + "site_detail_url": "https://comicvine.gamespot.com/mzee/4005-86557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86558/", + "id": 86558, + "name": "Dancing Water", + "site_detail_url": "https://comicvine.gamespot.com/dancing-water/4005-86558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86566/", + "id": 86566, + "name": "Amissa", + "site_detail_url": "https://comicvine.gamespot.com/amissa/4005-86566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86567/", + "id": 86567, + "name": "Paul Patterson", + "site_detail_url": "https://comicvine.gamespot.com/paul-patterson/4005-86567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86574/", + "id": 86574, + "name": "Leo Novokov", + "site_detail_url": "https://comicvine.gamespot.com/leo-novokov/4005-86574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86575/", + "id": 86575, + "name": "Monarch Machine Man", + "site_detail_url": "https://comicvine.gamespot.com/monarch-machine-man/4005-86575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86587/", + "id": 86587, + "name": "Tara", + "site_detail_url": "https://comicvine.gamespot.com/tara/4005-86587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86598/", + "id": 86598, + "name": "Balor", + "site_detail_url": "https://comicvine.gamespot.com/balor/4005-86598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86599/", + "id": 86599, + "name": "Cormac", + "site_detail_url": "https://comicvine.gamespot.com/cormac/4005-86599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86600/", + "id": 86600, + "name": "Gurien", + "site_detail_url": "https://comicvine.gamespot.com/gurien/4005-86600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86601/", + "id": 86601, + "name": "Scartac", + "site_detail_url": "https://comicvine.gamespot.com/scartac/4005-86601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86602/", + "id": 86602, + "name": "Gael", + "site_detail_url": "https://comicvine.gamespot.com/gael/4005-86602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86603/", + "id": 86603, + "name": "Gamael", + "site_detail_url": "https://comicvine.gamespot.com/gamael/4005-86603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86604/", + "id": 86604, + "name": "Gwent", + "site_detail_url": "https://comicvine.gamespot.com/gwent/4005-86604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86605/", + "id": 86605, + "name": "Bran", + "site_detail_url": "https://comicvine.gamespot.com/bran/4005-86605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86617/", + "id": 86617, + "name": "Gorr", + "site_detail_url": "https://comicvine.gamespot.com/gorr/4005-86617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86623/", + "id": 86623, + "name": "Pandora", + "site_detail_url": "https://comicvine.gamespot.com/pandora/4005-86623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86659/", + "id": 86659, + "name": "Aeish", + "site_detail_url": "https://comicvine.gamespot.com/aeish/4005-86659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86660/", + "id": 86660, + "name": "Cindy", + "site_detail_url": "https://comicvine.gamespot.com/cindy/4005-86660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86663/", + "id": 86663, + "name": "Elsbeth Duhl", + "site_detail_url": "https://comicvine.gamespot.com/elsbeth-duhl/4005-86663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86668/", + "id": 86668, + "name": "Walter Rogers", + "site_detail_url": "https://comicvine.gamespot.com/walter-rogers/4005-86668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86669/", + "id": 86669, + "name": "Elizabeth Rogers", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-rogers/4005-86669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86670/", + "id": 86670, + "name": "Michael Rogers", + "site_detail_url": "https://comicvine.gamespot.com/michael-rogers/4005-86670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86671/", + "id": 86671, + "name": "Ex Nihilo", + "site_detail_url": "https://comicvine.gamespot.com/ex-nihilo/4005-86671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86672/", + "id": 86672, + "name": "Aleph", + "site_detail_url": "https://comicvine.gamespot.com/aleph/4005-86672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86673/", + "id": 86673, + "name": "Abyss", + "site_detail_url": "https://comicvine.gamespot.com/abyss/4005-86673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86674/", + "id": 86674, + "name": "Helen Cobb", + "site_detail_url": "https://comicvine.gamespot.com/helen-cobb/4005-86674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86675/", + "id": 86675, + "name": "Jerri Quimby", + "site_detail_url": "https://comicvine.gamespot.com/jerri-quimby/4005-86675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86676/", + "id": 86676, + "name": "Mackie McMorrow", + "site_detail_url": "https://comicvine.gamespot.com/mackie-mcmorrow/4005-86676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86677/", + "id": 86677, + "name": "Rivka", + "site_detail_url": "https://comicvine.gamespot.com/rivka/4005-86677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86678/", + "id": 86678, + "name": "Daisy", + "site_detail_url": "https://comicvine.gamespot.com/daisy/4005-86678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86679/", + "id": 86679, + "name": "Bee", + "site_detail_url": "https://comicvine.gamespot.com/bee/4005-86679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86680/", + "id": 86680, + "name": "Black Widow (Sofia)", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-sofia/4005-86680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86694/", + "id": 86694, + "name": "Faelar", + "site_detail_url": "https://comicvine.gamespot.com/faelar/4005-86694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86714/", + "id": 86714, + "name": "Kid Briton", + "site_detail_url": "https://comicvine.gamespot.com/kid-briton/4005-86714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86739/", + "id": 86739, + "name": "Anachronism", + "site_detail_url": "https://comicvine.gamespot.com/anachronism/4005-86739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86740/", + "id": 86740, + "name": "Cullen Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/cullen-bloodstone/4005-86740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86741/", + "id": 86741, + "name": "Apex", + "site_detail_url": "https://comicvine.gamespot.com/apex/4005-86741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86742/", + "id": 86742, + "name": "Nara", + "site_detail_url": "https://comicvine.gamespot.com/nara/4005-86742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86745/", + "id": 86745, + "name": "Nomad", + "site_detail_url": "https://comicvine.gamespot.com/nomad/4005-86745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86776/", + "id": 86776, + "name": "Debra Morgan", + "site_detail_url": "https://comicvine.gamespot.com/debra-morgan/4005-86776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86785/", + "id": 86785, + "name": "Rooster Cockburn", + "site_detail_url": "https://comicvine.gamespot.com/rooster-cockburn/4005-86785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86786/", + "id": 86786, + "name": "Tailgunner", + "site_detail_url": "https://comicvine.gamespot.com/tailgunner/4005-86786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86787/", + "id": 86787, + "name": "Southpaw", + "site_detail_url": "https://comicvine.gamespot.com/southpaw/4005-86787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86789/", + "id": 86789, + "name": "Superbman", + "site_detail_url": "https://comicvine.gamespot.com/superbman/4005-86789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86800/", + "id": 86800, + "name": "Neal Richmond", + "site_detail_url": "https://comicvine.gamespot.com/neal-richmond/4005-86800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86801/", + "id": 86801, + "name": "Hyperion (Construct)", + "site_detail_url": "https://comicvine.gamespot.com/hyperion-construct/4005-86801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86808/", + "id": 86808, + "name": "Cluster", + "site_detail_url": "https://comicvine.gamespot.com/cluster/4005-86808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86835/", + "id": 86835, + "name": "Anna Ryker", + "site_detail_url": "https://comicvine.gamespot.com/anna-ryker/4005-86835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86836/", + "id": 86836, + "name": "Benjamin Deeds", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-deeds/4005-86836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86837/", + "id": 86837, + "name": "Bryan Ryker", + "site_detail_url": "https://comicvine.gamespot.com/bryan-ryker/4005-86837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86838/", + "id": 86838, + "name": "Futatsu", + "site_detail_url": "https://comicvine.gamespot.com/futatsu/4005-86838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86839/", + "id": 86839, + "name": "Karasu", + "site_detail_url": "https://comicvine.gamespot.com/karasu/4005-86839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86840/", + "id": 86840, + "name": "Nia Jones", + "site_detail_url": "https://comicvine.gamespot.com/nia-jones/4005-86840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86841/", + "id": 86841, + "name": "Sojobo", + "site_detail_url": "https://comicvine.gamespot.com/sojobo/4005-86841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86842/", + "id": 86842, + "name": "Dreaming Maiden", + "site_detail_url": "https://comicvine.gamespot.com/dreaming-maiden/4005-86842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86852/", + "id": 86852, + "name": "White Dragon", + "site_detail_url": "https://comicvine.gamespot.com/white-dragon/4005-86852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86871/", + "id": 86871, + "name": "Harvester", + "site_detail_url": "https://comicvine.gamespot.com/harvester/4005-86871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86872/", + "id": 86872, + "name": "Smithy", + "site_detail_url": "https://comicvine.gamespot.com/smithy/4005-86872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86881/", + "id": 86881, + "name": "Lupalina", + "site_detail_url": "https://comicvine.gamespot.com/lupalina/4005-86881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86895/", + "id": 86895, + "name": "Professor Video", + "site_detail_url": "https://comicvine.gamespot.com/professor-video/4005-86895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86896/", + "id": 86896, + "name": "Derwyddon", + "site_detail_url": "https://comicvine.gamespot.com/derwyddon/4005-86896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86897/", + "id": 86897, + "name": "Gargoyle (Son of Pan)", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle-son-of-pan/4005-86897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86901/", + "id": 86901, + "name": "That Which Endures", + "site_detail_url": "https://comicvine.gamespot.com/that-which-endures/4005-86901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86914/", + "id": 86914, + "name": "Sarah Bryant", + "site_detail_url": "https://comicvine.gamespot.com/sarah-bryant/4005-86914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86916/", + "id": 86916, + "name": "Oak", + "site_detail_url": "https://comicvine.gamespot.com/oak/4005-86916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86917/", + "id": 86917, + "name": "Agent Michael", + "site_detail_url": "https://comicvine.gamespot.com/agent-michael/4005-86917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86918/", + "id": 86918, + "name": "Agent Gabriel", + "site_detail_url": "https://comicvine.gamespot.com/agent-gabriel/4005-86918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86941/", + "id": 86941, + "name": "Colonel Carruthers", + "site_detail_url": "https://comicvine.gamespot.com/colonel-carruthers/4005-86941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86944/", + "id": 86944, + "name": "Sidestep", + "site_detail_url": "https://comicvine.gamespot.com/sidestep/4005-86944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86945/", + "id": 86945, + "name": "Bert", + "site_detail_url": "https://comicvine.gamespot.com/bert/4005-86945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86946/", + "id": 86946, + "name": "Captain Colonies", + "site_detail_url": "https://comicvine.gamespot.com/captain-colonies/4005-86946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86947/", + "id": 86947, + "name": "Yeoman U.K.", + "site_detail_url": "https://comicvine.gamespot.com/yeoman-uk/4005-86947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86951/", + "id": 86951, + "name": "Bloodwing", + "site_detail_url": "https://comicvine.gamespot.com/bloodwing/4005-86951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86952/", + "id": 86952, + "name": "Kingmaker", + "site_detail_url": "https://comicvine.gamespot.com/kingmaker/4005-86952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86956/", + "id": 86956, + "name": "Derek Freeman", + "site_detail_url": "https://comicvine.gamespot.com/derek-freeman/4005-86956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86976/", + "id": 86976, + "name": "Eleanor Bennett", + "site_detail_url": "https://comicvine.gamespot.com/eleanor-bennett/4005-86976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86983/", + "id": 86983, + "name": "Michael Hawthorne", + "site_detail_url": "https://comicvine.gamespot.com/michael-hawthorne/4005-86983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-86984/", + "id": 86984, + "name": "Black Swan", + "site_detail_url": "https://comicvine.gamespot.com/black-swan/4005-86984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87023/", + "id": 87023, + "name": "N'Gora", + "site_detail_url": "https://comicvine.gamespot.com/ngora/4005-87023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87024/", + "id": 87024, + "name": "Cyrus Barger", + "site_detail_url": "https://comicvine.gamespot.com/cyrus-barger/4005-87024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87035/", + "id": 87035, + "name": "Phelix", + "site_detail_url": "https://comicvine.gamespot.com/phelix/4005-87035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87036/", + "id": 87036, + "name": "Phit", + "site_detail_url": "https://comicvine.gamespot.com/phit/4005-87036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87037/", + "id": 87037, + "name": "Phiend", + "site_detail_url": "https://comicvine.gamespot.com/phiend/4005-87037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87038/", + "id": 87038, + "name": "Phop", + "site_detail_url": "https://comicvine.gamespot.com/phop/4005-87038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87041/", + "id": 87041, + "name": "R.G. Mathieson", + "site_detail_url": "https://comicvine.gamespot.com/rg-mathieson/4005-87041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87046/", + "id": 87046, + "name": "Snoop", + "site_detail_url": "https://comicvine.gamespot.com/snoop/4005-87046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87047/", + "id": 87047, + "name": "Erik Selvig", + "site_detail_url": "https://comicvine.gamespot.com/erik-selvig/4005-87047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87050/", + "id": 87050, + "name": "Spring-Heeled Jack", + "site_detail_url": "https://comicvine.gamespot.com/spring-heeled-jack/4005-87050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87051/", + "id": 87051, + "name": "Ocelot", + "site_detail_url": "https://comicvine.gamespot.com/ocelot/4005-87051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87052/", + "id": 87052, + "name": "Lodestone", + "site_detail_url": "https://comicvine.gamespot.com/lodestone/4005-87052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87053/", + "id": 87053, + "name": "Static", + "site_detail_url": "https://comicvine.gamespot.com/static/4005-87053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87054/", + "id": 87054, + "name": "Sponge", + "site_detail_url": "https://comicvine.gamespot.com/sponge/4005-87054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87097/", + "id": 87097, + "name": "Oracle of Ancient Knowledge", + "site_detail_url": "https://comicvine.gamespot.com/oracle-of-ancient-knowledge/4005-87097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87098/", + "id": 87098, + "name": "Number One", + "site_detail_url": "https://comicvine.gamespot.com/number-one/4005-87098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87099/", + "id": 87099, + "name": "Butane", + "site_detail_url": "https://comicvine.gamespot.com/butane/4005-87099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87103/", + "id": 87103, + "name": "Teresa Payton", + "site_detail_url": "https://comicvine.gamespot.com/teresa-payton/4005-87103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87104/", + "id": 87104, + "name": "Weapon XIII", + "site_detail_url": "https://comicvine.gamespot.com/weapon-xiii/4005-87104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87108/", + "id": 87108, + "name": "Esmerelda Lobo", + "site_detail_url": "https://comicvine.gamespot.com/esmerelda-lobo/4005-87108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87109/", + "id": 87109, + "name": "Packrat", + "site_detail_url": "https://comicvine.gamespot.com/packrat/4005-87109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87110/", + "id": 87110, + "name": "Dominas The Wavemaster", + "site_detail_url": "https://comicvine.gamespot.com/dominas-the-wavemaster/4005-87110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87114/", + "id": 87114, + "name": "Edvard", + "site_detail_url": "https://comicvine.gamespot.com/edvard/4005-87114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87115/", + "id": 87115, + "name": "Andras Tryp", + "site_detail_url": "https://comicvine.gamespot.com/andras-tryp/4005-87115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87116/", + "id": 87116, + "name": "General Awa", + "site_detail_url": "https://comicvine.gamespot.com/general-awa/4005-87116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87117/", + "id": 87117, + "name": "Giggles", + "site_detail_url": "https://comicvine.gamespot.com/giggles/4005-87117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87118/", + "id": 87118, + "name": "Kimo", + "site_detail_url": "https://comicvine.gamespot.com/kimo/4005-87118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87119/", + "id": 87119, + "name": "Mr. Miller", + "site_detail_url": "https://comicvine.gamespot.com/mr-miller/4005-87119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87120/", + "id": 87120, + "name": "Mrs. Miller", + "site_detail_url": "https://comicvine.gamespot.com/mrs-miller/4005-87120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87121/", + "id": 87121, + "name": "N'Kono", + "site_detail_url": "https://comicvine.gamespot.com/nkono/4005-87121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87122/", + "id": 87122, + "name": "T'Dori", + "site_detail_url": "https://comicvine.gamespot.com/tdori/4005-87122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87123/", + "id": 87123, + "name": "Galactus' Cat", + "site_detail_url": "https://comicvine.gamespot.com/galactus-cat/4005-87123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87136/", + "id": 87136, + "name": "Lynn Walsh", + "site_detail_url": "https://comicvine.gamespot.com/lynn-walsh/4005-87136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87192/", + "id": 87192, + "name": "Aerndis", + "site_detail_url": "https://comicvine.gamespot.com/aerndis/4005-87192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87193/", + "id": 87193, + "name": "Arnor", + "site_detail_url": "https://comicvine.gamespot.com/arnor/4005-87193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87194/", + "id": 87194, + "name": "Falligar", + "site_detail_url": "https://comicvine.gamespot.com/falligar/4005-87194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87212/", + "id": 87212, + "name": "Crimson Dynamo (Bukharin)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-bukharin/4005-87212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87213/", + "id": 87213, + "name": "Tin Man", + "site_detail_url": "https://comicvine.gamespot.com/tin-man/4005-87213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87274/", + "id": 87274, + "name": "Alistair", + "site_detail_url": "https://comicvine.gamespot.com/alistair/4005-87274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87289/", + "id": 87289, + "name": "O", + "site_detail_url": "https://comicvine.gamespot.com/o/4005-87289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87290/", + "id": 87290, + "name": "Jess Duncan", + "site_detail_url": "https://comicvine.gamespot.com/jess-duncan/4005-87290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87291/", + "id": 87291, + "name": "Harmony Maxwell", + "site_detail_url": "https://comicvine.gamespot.com/harmony-maxwell/4005-87291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87292/", + "id": 87292, + "name": "Dave Monroe", + "site_detail_url": "https://comicvine.gamespot.com/dave-monroe/4005-87292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87293/", + "id": 87293, + "name": "Gregor Rovik", + "site_detail_url": "https://comicvine.gamespot.com/gregor-rovik/4005-87293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87297/", + "id": 87297, + "name": "Brute Benhurst", + "site_detail_url": "https://comicvine.gamespot.com/brute-benhurst/4005-87297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87298/", + "id": 87298, + "name": "Glimda", + "site_detail_url": "https://comicvine.gamespot.com/glimda/4005-87298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87299/", + "id": 87299, + "name": "Walter Barnett", + "site_detail_url": "https://comicvine.gamespot.com/walter-barnett/4005-87299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87300/", + "id": 87300, + "name": "Jacob Erskine", + "site_detail_url": "https://comicvine.gamespot.com/jacob-erskine/4005-87300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87301/", + "id": 87301, + "name": "Anita Erskine", + "site_detail_url": "https://comicvine.gamespot.com/anita-erskine/4005-87301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87310/", + "id": 87310, + "name": "Cheryl Porter", + "site_detail_url": "https://comicvine.gamespot.com/cheryl-porter/4005-87310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87311/", + "id": 87311, + "name": "Mercenary", + "site_detail_url": "https://comicvine.gamespot.com/mercenary/4005-87311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87318/", + "id": 87318, + "name": "Anthony Miller", + "site_detail_url": "https://comicvine.gamespot.com/anthony-miller/4005-87318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87321/", + "id": 87321, + "name": "Dangerous Jinn", + "site_detail_url": "https://comicvine.gamespot.com/dangerous-jinn/4005-87321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87322/", + "id": 87322, + "name": "Honest John", + "site_detail_url": "https://comicvine.gamespot.com/honest-john/4005-87322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87325/", + "id": 87325, + "name": "Living Wind", + "site_detail_url": "https://comicvine.gamespot.com/living-wind/4005-87325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87326/", + "id": 87326, + "name": "Luca Aldine", + "site_detail_url": "https://comicvine.gamespot.com/luca-aldine/4005-87326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87329/", + "id": 87329, + "name": "Mr. Aldine", + "site_detail_url": "https://comicvine.gamespot.com/mr-aldine/4005-87329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87330/", + "id": 87330, + "name": "Mrs. Aldine", + "site_detail_url": "https://comicvine.gamespot.com/mrs-aldine/4005-87330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87331/", + "id": 87331, + "name": "Mrs. Altman", + "site_detail_url": "https://comicvine.gamespot.com/mrs-altman/4005-87331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87333/", + "id": 87333, + "name": "Peter Brown", + "site_detail_url": "https://comicvine.gamespot.com/peter-brown/4005-87333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87334/", + "id": 87334, + "name": "Natalie Turner", + "site_detail_url": "https://comicvine.gamespot.com/natalie-turner/4005-87334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87335/", + "id": 87335, + "name": "Shadrak", + "site_detail_url": "https://comicvine.gamespot.com/shadrak/4005-87335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87338/", + "id": 87338, + "name": "Ulfar", + "site_detail_url": "https://comicvine.gamespot.com/ulfar/4005-87338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87358/", + "id": 87358, + "name": "The Captain", + "site_detail_url": "https://comicvine.gamespot.com/the-captain/4005-87358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87360/", + "id": 87360, + "name": "Mr. Vayle", + "site_detail_url": "https://comicvine.gamespot.com/mr-vayle/4005-87360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87386/", + "id": 87386, + "name": "Absynthia van Mort", + "site_detail_url": "https://comicvine.gamespot.com/absynthia-van-mort/4005-87386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87387/", + "id": 87387, + "name": "Boniface", + "site_detail_url": "https://comicvine.gamespot.com/boniface/4005-87387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87388/", + "id": 87388, + "name": "Augustine", + "site_detail_url": "https://comicvine.gamespot.com/augustine/4005-87388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87389/", + "id": 87389, + "name": "Mordecai Boggs", + "site_detail_url": "https://comicvine.gamespot.com/mordecai-boggs/4005-87389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87425/", + "id": 87425, + "name": "Paulette Brazee", + "site_detail_url": "https://comicvine.gamespot.com/paulette-brazee/4005-87425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87427/", + "id": 87427, + "name": "H. Warren Craddock", + "site_detail_url": "https://comicvine.gamespot.com/h-warren-craddock/4005-87427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87448/", + "id": 87448, + "name": "Doctor Mynde", + "site_detail_url": "https://comicvine.gamespot.com/doctor-mynde/4005-87448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87449/", + "id": 87449, + "name": "Madame Synn", + "site_detail_url": "https://comicvine.gamespot.com/madame-synn/4005-87449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87450/", + "id": 87450, + "name": "Benjamin Savannah", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-savannah/4005-87450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87460/", + "id": 87460, + "name": "Reverend Stryker", + "site_detail_url": "https://comicvine.gamespot.com/reverend-stryker/4005-87460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87461/", + "id": 87461, + "name": "Air Walker", + "site_detail_url": "https://comicvine.gamespot.com/air-walker/4005-87461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87462/", + "id": 87462, + "name": "Veronica Stryker", + "site_detail_url": "https://comicvine.gamespot.com/veronica-stryker/4005-87462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87465/", + "id": 87465, + "name": "Skragg", + "site_detail_url": "https://comicvine.gamespot.com/skragg/4005-87465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87466/", + "id": 87466, + "name": "Simon Halloway", + "site_detail_url": "https://comicvine.gamespot.com/simon-halloway/4005-87466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87469/", + "id": 87469, + "name": "Dave Anderson", + "site_detail_url": "https://comicvine.gamespot.com/dave-anderson/4005-87469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87471/", + "id": 87471, + "name": "Lt. Diane Perrywinkle", + "site_detail_url": "https://comicvine.gamespot.com/lt-diane-perrywinkle/4005-87471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87472/", + "id": 87472, + "name": "Captain Bowman", + "site_detail_url": "https://comicvine.gamespot.com/captain-bowman/4005-87472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87473/", + "id": 87473, + "name": "Dr. Maxwell", + "site_detail_url": "https://comicvine.gamespot.com/dr-maxwell/4005-87473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87475/", + "id": 87475, + "name": "Rachel Dandridge", + "site_detail_url": "https://comicvine.gamespot.com/rachel-dandridge/4005-87475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87477/", + "id": 87477, + "name": "Rufus T. Hackstabber", + "site_detail_url": "https://comicvine.gamespot.com/rufus-t-hackstabber/4005-87477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87483/", + "id": 87483, + "name": "Yun Guang Han", + "site_detail_url": "https://comicvine.gamespot.com/yun-guang-han/4005-87483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87487/", + "id": 87487, + "name": "Krylar", + "site_detail_url": "https://comicvine.gamespot.com/krylar/4005-87487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87492/", + "id": 87492, + "name": "Dekker", + "site_detail_url": "https://comicvine.gamespot.com/dekker/4005-87492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87493/", + "id": 87493, + "name": "Tazer", + "site_detail_url": "https://comicvine.gamespot.com/tazer/4005-87493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87516/", + "id": 87516, + "name": "Daman Veteri", + "site_detail_url": "https://comicvine.gamespot.com/daman-veteri/4005-87516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87517/", + "id": 87517, + "name": "Randall Jessup", + "site_detail_url": "https://comicvine.gamespot.com/randall-jessup/4005-87517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87519/", + "id": 87519, + "name": "Melinda Leucenstern", + "site_detail_url": "https://comicvine.gamespot.com/melinda-leucenstern/4005-87519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87520/", + "id": 87520, + "name": "Vista", + "site_detail_url": "https://comicvine.gamespot.com/vista/4005-87520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87532/", + "id": 87532, + "name": "Joe Robards", + "site_detail_url": "https://comicvine.gamespot.com/joe-robards/4005-87532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87533/", + "id": 87533, + "name": "Dr. Jema", + "site_detail_url": "https://comicvine.gamespot.com/dr-jema/4005-87533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87540/", + "id": 87540, + "name": "Mac-Ronn", + "site_detail_url": "https://comicvine.gamespot.com/mac-ronn/4005-87540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87541/", + "id": 87541, + "name": "Steve Danvers", + "site_detail_url": "https://comicvine.gamespot.com/steve-danvers/4005-87541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87544/", + "id": 87544, + "name": "Qu'lar", + "site_detail_url": "https://comicvine.gamespot.com/qular/4005-87544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87545/", + "id": 87545, + "name": "Xiambor", + "site_detail_url": "https://comicvine.gamespot.com/xiambor/4005-87545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87548/", + "id": 87548, + "name": "Lordsire Droom", + "site_detail_url": "https://comicvine.gamespot.com/lordsire-droom/4005-87548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87549/", + "id": 87549, + "name": "Johnny Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/johnny-nightmare/4005-87549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87550/", + "id": 87550, + "name": "Kay-Sade", + "site_detail_url": "https://comicvine.gamespot.com/kay-sade/4005-87550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87551/", + "id": 87551, + "name": "Tohn-Bil", + "site_detail_url": "https://comicvine.gamespot.com/tohn-bil/4005-87551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87552/", + "id": 87552, + "name": "Arjai-Ush", + "site_detail_url": "https://comicvine.gamespot.com/arjai-ush/4005-87552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87554/", + "id": 87554, + "name": "Sagittarius (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius-lmd/4005-87554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87555/", + "id": 87555, + "name": "Gemini (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/gemini-lmd/4005-87555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87556/", + "id": 87556, + "name": "Gemini (Female LMD)", + "site_detail_url": "https://comicvine.gamespot.com/gemini-female-lmd/4005-87556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87557/", + "id": 87557, + "name": "Leo (Tigra LMD)", + "site_detail_url": "https://comicvine.gamespot.com/leo-tigra-lmd/4005-87557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87558/", + "id": 87558, + "name": "Leo (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/leo-lmd/4005-87558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87559/", + "id": 87559, + "name": "Taurus (Female LMD)", + "site_detail_url": "https://comicvine.gamespot.com/taurus-female-lmd/4005-87559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87560/", + "id": 87560, + "name": "Taurus (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/taurus-lmd/4005-87560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87561/", + "id": 87561, + "name": "Taurus (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/taurus-lmd/4005-87561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87562/", + "id": 87562, + "name": "Letrong Giap", + "site_detail_url": "https://comicvine.gamespot.com/letrong-giap/4005-87562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87563/", + "id": 87563, + "name": "Aquarius (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/aquarius-lmd/4005-87563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87564/", + "id": 87564, + "name": "Libra (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/libra-lmd/4005-87564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87565/", + "id": 87565, + "name": "Libra (Female LMD)", + "site_detail_url": "https://comicvine.gamespot.com/libra-female-lmd/4005-87565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87566/", + "id": 87566, + "name": "Pisces (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/pisces-lmd/4005-87566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87568/", + "id": 87568, + "name": "Pisces (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/pisces-lmd/4005-87568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87569/", + "id": 87569, + "name": "Pisces (Female LMD)", + "site_detail_url": "https://comicvine.gamespot.com/pisces-female-lmd/4005-87569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87572/", + "id": 87572, + "name": "Annabelle Riggs", + "site_detail_url": "https://comicvine.gamespot.com/annabelle-riggs/4005-87572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87579/", + "id": 87579, + "name": "Capricorn (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/capricorn-lmd/4005-87579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87580/", + "id": 87580, + "name": "Virgo (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/virgo-lmd/4005-87580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87581/", + "id": 87581, + "name": "Capricorn (Female LMD)", + "site_detail_url": "https://comicvine.gamespot.com/capricorn-female-lmd/4005-87581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87587/", + "id": 87587, + "name": "Aries (Raymond)", + "site_detail_url": "https://comicvine.gamespot.com/aries-raymond/4005-87587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87588/", + "id": 87588, + "name": "Aries (Gordon)", + "site_detail_url": "https://comicvine.gamespot.com/aries-gordon/4005-87588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87589/", + "id": 87589, + "name": "Aries (Brandauer)", + "site_detail_url": "https://comicvine.gamespot.com/aries-brandauer/4005-87589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87590/", + "id": 87590, + "name": "Aries (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/aries-ecliptics-zodiac/4005-87590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87591/", + "id": 87591, + "name": "Aries (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/aries-lmd/4005-87591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87592/", + "id": 87592, + "name": "Cancer (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/cancer-lmd/4005-87592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87593/", + "id": 87593, + "name": "Cancer (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/cancer-ecliptics-zodiac/4005-87593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87594/", + "id": 87594, + "name": "Cancer (Myles)", + "site_detail_url": "https://comicvine.gamespot.com/cancer-myles/4005-87594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87595/", + "id": 87595, + "name": "Virgo (Sims)", + "site_detail_url": "https://comicvine.gamespot.com/virgo-sims/4005-87595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87596/", + "id": 87596, + "name": "Virgo (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/virgo-ecliptics-zodiac/4005-87596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87597/", + "id": 87597, + "name": "Taurus (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/taurus-ecliptics-zodiac/4005-87597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87598/", + "id": 87598, + "name": "Taurus (Ferrar)", + "site_detail_url": "https://comicvine.gamespot.com/taurus-ferrar/4005-87598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87599/", + "id": 87599, + "name": "Sagittarius (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius-ecliptics-zodiac/4005-87599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87600/", + "id": 87600, + "name": "Sagittarius (Trudeaux)", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius-trudeaux/4005-87600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87601/", + "id": 87601, + "name": "Pisces (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/pisces-ecliptics-zodiac/4005-87601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87602/", + "id": 87602, + "name": "Pisces (Kantov)", + "site_detail_url": "https://comicvine.gamespot.com/pisces-kantov/4005-87602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87603/", + "id": 87603, + "name": "Libra (Michaels)", + "site_detail_url": "https://comicvine.gamespot.com/libra-michaels/4005-87603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87604/", + "id": 87604, + "name": "Libra (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/libra-ecliptics-zodiac/4005-87604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87605/", + "id": 87605, + "name": "Leo (Okoye)", + "site_detail_url": "https://comicvine.gamespot.com/leo-okoye/4005-87605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87606/", + "id": 87606, + "name": "Leo (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/leo-ecliptics-zodiac/4005-87606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87607/", + "id": 87607, + "name": "Aquarius (Kiamata)", + "site_detail_url": "https://comicvine.gamespot.com/aquarius-kiamata/4005-87607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87608/", + "id": 87608, + "name": "Aquarius (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/aquarius-ecliptics-zodiac/4005-87608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87609/", + "id": 87609, + "name": "Vernon Fury", + "site_detail_url": "https://comicvine.gamespot.com/vernon-fury/4005-87609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87610/", + "id": 87610, + "name": "Scorpio (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/scorpio-ecliptics-zodiac/4005-87610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87611/", + "id": 87611, + "name": "Aquarius (Drebb)", + "site_detail_url": "https://comicvine.gamespot.com/aquarius-drebb/4005-87611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87612/", + "id": 87612, + "name": "Capricorn (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/capricorn-ecliptics-zodiac/4005-87612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87613/", + "id": 87613, + "name": "Gemini (Ecliptic's Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/gemini-ecliptics-zodiac/4005-87613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87616/", + "id": 87616, + "name": "Scorpio (LaPoint)", + "site_detail_url": "https://comicvine.gamespot.com/scorpio-lapoint/4005-87616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87619/", + "id": 87619, + "name": "Aries (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/aries-thanos-zodiac/4005-87619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87620/", + "id": 87620, + "name": "Pisces (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/pisces-thanos-zodiac/4005-87620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87621/", + "id": 87621, + "name": "Sagittarius (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius-thanos-zodiac/4005-87621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87622/", + "id": 87622, + "name": "Leo (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/leo-thanos-zodiac/4005-87622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87623/", + "id": 87623, + "name": "Capricorn (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/capricorn-thanos-zodiac/4005-87623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87624/", + "id": 87624, + "name": "Aquarius (Thanos' Zodiac)", + "site_detail_url": "https://comicvine.gamespot.com/aquarius-thanos-zodiac/4005-87624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87628/", + "id": 87628, + "name": "Chess Roberts", + "site_detail_url": "https://comicvine.gamespot.com/chess-roberts/4005-87628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87633/", + "id": 87633, + "name": "Frank Ensign", + "site_detail_url": "https://comicvine.gamespot.com/frank-ensign/4005-87633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87640/", + "id": 87640, + "name": "Egg", + "site_detail_url": "https://comicvine.gamespot.com/egg/4005-87640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87641/", + "id": 87641, + "name": "Louise Kennedy", + "site_detail_url": "https://comicvine.gamespot.com/louise-kennedy/4005-87641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87648/", + "id": 87648, + "name": "Cody Twain", + "site_detail_url": "https://comicvine.gamespot.com/cody-twain/4005-87648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87663/", + "id": 87663, + "name": "Paul Thomas Harker", + "site_detail_url": "https://comicvine.gamespot.com/paul-thomas-harker/4005-87663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87672/", + "id": 87672, + "name": "Cyclone (Gerard)", + "site_detail_url": "https://comicvine.gamespot.com/cyclone-gerard/4005-87672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87673/", + "id": 87673, + "name": "Cyclone (Stevens)", + "site_detail_url": "https://comicvine.gamespot.com/cyclone-stevens/4005-87673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87699/", + "id": 87699, + "name": "Carmine", + "site_detail_url": "https://comicvine.gamespot.com/carmine/4005-87699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87700/", + "id": 87700, + "name": "Nico", + "site_detail_url": "https://comicvine.gamespot.com/nico/4005-87700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87712/", + "id": 87712, + "name": "Blacklash", + "site_detail_url": "https://comicvine.gamespot.com/blacklash/4005-87712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87713/", + "id": 87713, + "name": "Whiplash", + "site_detail_url": "https://comicvine.gamespot.com/whiplash/4005-87713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87720/", + "id": 87720, + "name": "Imo Miri", + "site_detail_url": "https://comicvine.gamespot.com/imo-miri/4005-87720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87721/", + "id": 87721, + "name": "Chu Jung", + "site_detail_url": "https://comicvine.gamespot.com/chu-jung/4005-87721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87722/", + "id": 87722, + "name": "Feng Po-Po", + "site_detail_url": "https://comicvine.gamespot.com/feng-po-po/4005-87722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87723/", + "id": 87723, + "name": "Wagner", + "site_detail_url": "https://comicvine.gamespot.com/wagner/4005-87723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87724/", + "id": 87724, + "name": "Vorr", + "site_detail_url": "https://comicvine.gamespot.com/vorr/4005-87724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87732/", + "id": 87732, + "name": "Jack Bascomb", + "site_detail_url": "https://comicvine.gamespot.com/jack-bascomb/4005-87732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87733/", + "id": 87733, + "name": "Executioner", + "site_detail_url": "https://comicvine.gamespot.com/executioner/4005-87733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87736/", + "id": 87736, + "name": "Jesse Alexander", + "site_detail_url": "https://comicvine.gamespot.com/jesse-alexander/4005-87736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87737/", + "id": 87737, + "name": "Kaelynn Alexander", + "site_detail_url": "https://comicvine.gamespot.com/kaelynn-alexander/4005-87737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87738/", + "id": 87738, + "name": "Titus", + "site_detail_url": "https://comicvine.gamespot.com/titus/4005-87738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87739/", + "id": 87739, + "name": "Mister Z'zz", + "site_detail_url": "https://comicvine.gamespot.com/mister-zzz/4005-87739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87842/", + "id": 87842, + "name": "Don Lamaze", + "site_detail_url": "https://comicvine.gamespot.com/don-lamaze/4005-87842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87879/", + "id": 87879, + "name": "Mister Eleven", + "site_detail_url": "https://comicvine.gamespot.com/mister-eleven/4005-87879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87883/", + "id": 87883, + "name": "Inger Sullivan", + "site_detail_url": "https://comicvine.gamespot.com/inger-sullivan/4005-87883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87888/", + "id": 87888, + "name": "Steven Caccone", + "site_detail_url": "https://comicvine.gamespot.com/steven-caccone/4005-87888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87895/", + "id": 87895, + "name": "M'Rin", + "site_detail_url": "https://comicvine.gamespot.com/mrin/4005-87895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87896/", + "id": 87896, + "name": "C'Jime", + "site_detail_url": "https://comicvine.gamespot.com/cjime/4005-87896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87913/", + "id": 87913, + "name": "Krakken", + "site_detail_url": "https://comicvine.gamespot.com/krakken/4005-87913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87959/", + "id": 87959, + "name": "Caroline Le Fey", + "site_detail_url": "https://comicvine.gamespot.com/caroline-le-fey/4005-87959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87960/", + "id": 87960, + "name": "Mr. Raven", + "site_detail_url": "https://comicvine.gamespot.com/mr-raven/4005-87960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87969/", + "id": 87969, + "name": "Jeffrey Fischer", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-fischer/4005-87969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87970/", + "id": 87970, + "name": "Ricochet", + "site_detail_url": "https://comicvine.gamespot.com/ricochet/4005-87970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-87971/", + "id": 87971, + "name": "Boomer", + "site_detail_url": "https://comicvine.gamespot.com/boomer/4005-87971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88020/", + "id": 88020, + "name": "Hydra", + "site_detail_url": "https://comicvine.gamespot.com/hydra/4005-88020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88022/", + "id": 88022, + "name": "Iron Maiden", + "site_detail_url": "https://comicvine.gamespot.com/iron-maiden/4005-88022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88023/", + "id": 88023, + "name": "Jade Dragon", + "site_detail_url": "https://comicvine.gamespot.com/jade-dragon/4005-88023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88024/", + "id": 88024, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4005-88024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88028/", + "id": 88028, + "name": "Daniel Grimm Jr.", + "site_detail_url": "https://comicvine.gamespot.com/daniel-grimm-jr/4005-88028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88049/", + "id": 88049, + "name": "Bernard O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/bernard-obrien/4005-88049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88074/", + "id": 88074, + "name": "Hakurei", + "site_detail_url": "https://comicvine.gamespot.com/hakurei/4005-88074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88075/", + "id": 88075, + "name": "Gnori", + "site_detail_url": "https://comicvine.gamespot.com/gnori/4005-88075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88076/", + "id": 88076, + "name": "Bodvar", + "site_detail_url": "https://comicvine.gamespot.com/bodvar/4005-88076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88077/", + "id": 88077, + "name": "Einhar", + "site_detail_url": "https://comicvine.gamespot.com/einhar/4005-88077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88078/", + "id": 88078, + "name": "Svip", + "site_detail_url": "https://comicvine.gamespot.com/svip/4005-88078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88135/", + "id": 88135, + "name": "Tamara Devoux", + "site_detail_url": "https://comicvine.gamespot.com/tamara-devoux/4005-88135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88149/", + "id": 88149, + "name": "Anna Maria Marconi", + "site_detail_url": "https://comicvine.gamespot.com/anna-maria-marconi/4005-88149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88156/", + "id": 88156, + "name": "Nightmask", + "site_detail_url": "https://comicvine.gamespot.com/nightmask/4005-88156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88159/", + "id": 88159, + "name": "Talia", + "site_detail_url": "https://comicvine.gamespot.com/talia/4005-88159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88163/", + "id": 88163, + "name": "Linda Darkholme", + "site_detail_url": "https://comicvine.gamespot.com/linda-darkholme/4005-88163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88171/", + "id": 88171, + "name": "Mara", + "site_detail_url": "https://comicvine.gamespot.com/mara/4005-88171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88172/", + "id": 88172, + "name": "Canor", + "site_detail_url": "https://comicvine.gamespot.com/canor/4005-88172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88189/", + "id": 88189, + "name": "Moise Bomvana", + "site_detail_url": "https://comicvine.gamespot.com/moise-bomvana/4005-88189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88202/", + "id": 88202, + "name": "Fence", + "site_detail_url": "https://comicvine.gamespot.com/fence/4005-88202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88209/", + "id": 88209, + "name": "Ulfrin the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/ulfrin-the-dragon/4005-88209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88210/", + "id": 88210, + "name": "Norn Hag ", + "site_detail_url": "https://comicvine.gamespot.com/norn-hag/4005-88210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88220/", + "id": 88220, + "name": "Captain Costanzo", + "site_detail_url": "https://comicvine.gamespot.com/captain-costanzo/4005-88220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88223/", + "id": 88223, + "name": "Drae", + "site_detail_url": "https://comicvine.gamespot.com/drae/4005-88223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88224/", + "id": 88224, + "name": "Uriel", + "site_detail_url": "https://comicvine.gamespot.com/uriel/4005-88224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88225/", + "id": 88225, + "name": "Eimin", + "site_detail_url": "https://comicvine.gamespot.com/eimin/4005-88225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88237/", + "id": 88237, + "name": "Rat", + "site_detail_url": "https://comicvine.gamespot.com/rat/4005-88237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88241/", + "id": 88241, + "name": "Michael Morrisey", + "site_detail_url": "https://comicvine.gamespot.com/michael-morrisey/4005-88241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88265/", + "id": 88265, + "name": "Crimson Dynamo (Turgenov)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-turgenov/4005-88265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88326/", + "id": 88326, + "name": "Willie", + "site_detail_url": "https://comicvine.gamespot.com/willie/4005-88326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88344/", + "id": 88344, + "name": "Figure", + "site_detail_url": "https://comicvine.gamespot.com/figure/4005-88344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88345/", + "id": 88345, + "name": "Vetis", + "site_detail_url": "https://comicvine.gamespot.com/vetis/4005-88345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88375/", + "id": 88375, + "name": "X-35", + "site_detail_url": "https://comicvine.gamespot.com/x-35/4005-88375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88383/", + "id": 88383, + "name": "Rasa", + "site_detail_url": "https://comicvine.gamespot.com/rasa/4005-88383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88478/", + "id": 88478, + "name": "Loana", + "site_detail_url": "https://comicvine.gamespot.com/loana/4005-88478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88483/", + "id": 88483, + "name": "Sacino", + "site_detail_url": "https://comicvine.gamespot.com/sacino/4005-88483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88509/", + "id": 88509, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-88509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88510/", + "id": 88510, + "name": "Ikari", + "site_detail_url": "https://comicvine.gamespot.com/ikari/4005-88510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88512/", + "id": 88512, + "name": "Arthur Vale", + "site_detail_url": "https://comicvine.gamespot.com/arthur-vale/4005-88512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88514/", + "id": 88514, + "name": "451", + "site_detail_url": "https://comicvine.gamespot.com/451/4005-88514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88519/", + "id": 88519, + "name": "Clay Harder", + "site_detail_url": "https://comicvine.gamespot.com/clay-harder/4005-88519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88529/", + "id": 88529, + "name": "Paul Trent", + "site_detail_url": "https://comicvine.gamespot.com/paul-trent/4005-88529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88532/", + "id": 88532, + "name": "Folkbern Logan", + "site_detail_url": "https://comicvine.gamespot.com/folkbern-logan/4005-88532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88560/", + "id": 88560, + "name": "Lord Phyffe", + "site_detail_url": "https://comicvine.gamespot.com/lord-phyffe/4005-88560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88566/", + "id": 88566, + "name": "Throeblood", + "site_detail_url": "https://comicvine.gamespot.com/throeblood/4005-88566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88569/", + "id": 88569, + "name": "Eva Alexander", + "site_detail_url": "https://comicvine.gamespot.com/eva-alexander/4005-88569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88608/", + "id": 88608, + "name": "Aldvi", + "site_detail_url": "https://comicvine.gamespot.com/aldvi/4005-88608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88609/", + "id": 88609, + "name": "Arnleif", + "site_detail_url": "https://comicvine.gamespot.com/arnleif/4005-88609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88610/", + "id": 88610, + "name": "Balda", + "site_detail_url": "https://comicvine.gamespot.com/balda/4005-88610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88611/", + "id": 88611, + "name": "Daggaerdh", + "site_detail_url": "https://comicvine.gamespot.com/daggaerdh/4005-88611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88612/", + "id": 88612, + "name": "Disthora", + "site_detail_url": "https://comicvine.gamespot.com/disthora/4005-88612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88614/", + "id": 88614, + "name": "Hermotha", + "site_detail_url": "https://comicvine.gamespot.com/hermotha/4005-88614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88615/", + "id": 88615, + "name": "Miss Coriander", + "site_detail_url": "https://comicvine.gamespot.com/miss-coriander/4005-88615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88617/", + "id": 88617, + "name": "Sigotta", + "site_detail_url": "https://comicvine.gamespot.com/sigotta/4005-88617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88643/", + "id": 88643, + "name": "Kelvin Doneghann", + "site_detail_url": "https://comicvine.gamespot.com/kelvin-doneghann/4005-88643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88644/", + "id": 88644, + "name": "Flaherty", + "site_detail_url": "https://comicvine.gamespot.com/flaherty/4005-88644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88645/", + "id": 88645, + "name": "Terence", + "site_detail_url": "https://comicvine.gamespot.com/terence/4005-88645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88686/", + "id": 88686, + "name": "Eamon", + "site_detail_url": "https://comicvine.gamespot.com/eamon/4005-88686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88688/", + "id": 88688, + "name": "Corrado Coloruno", + "site_detail_url": "https://comicvine.gamespot.com/corrado-coloruno/4005-88688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88712/", + "id": 88712, + "name": "Conrad Marcus", + "site_detail_url": "https://comicvine.gamespot.com/conrad-marcus/4005-88712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88714/", + "id": 88714, + "name": "Boxx", + "site_detail_url": "https://comicvine.gamespot.com/boxx/4005-88714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88716/", + "id": 88716, + "name": "Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/kingdom/4005-88716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88717/", + "id": 88717, + "name": "Agent Porter", + "site_detail_url": "https://comicvine.gamespot.com/agent-porter/4005-88717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88718/", + "id": 88718, + "name": "Robert Michaud", + "site_detail_url": "https://comicvine.gamespot.com/robert-michaud/4005-88718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88719/", + "id": 88719, + "name": "Validator", + "site_detail_url": "https://comicvine.gamespot.com/validator/4005-88719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88734/", + "id": 88734, + "name": "Leviathan ", + "site_detail_url": "https://comicvine.gamespot.com/leviathan/4005-88734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88737/", + "id": 88737, + "name": "Sumatran", + "site_detail_url": "https://comicvine.gamespot.com/sumatran/4005-88737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88738/", + "id": 88738, + "name": "Saluki", + "site_detail_url": "https://comicvine.gamespot.com/saluki/4005-88738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88739/", + "id": 88739, + "name": "Kathleen", + "site_detail_url": "https://comicvine.gamespot.com/kathleen/4005-88739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88740/", + "id": 88740, + "name": "Andrew Turk", + "site_detail_url": "https://comicvine.gamespot.com/andrew-turk/4005-88740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88743/", + "id": 88743, + "name": "Eomonn Brankin", + "site_detail_url": "https://comicvine.gamespot.com/eomonn-brankin/4005-88743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88744/", + "id": 88744, + "name": "Hard-Drive", + "site_detail_url": "https://comicvine.gamespot.com/hard-drive/4005-88744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88745/", + "id": 88745, + "name": "Amy Chen", + "site_detail_url": "https://comicvine.gamespot.com/amy-chen/4005-88745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88751/", + "id": 88751, + "name": "Cindy Jones ", + "site_detail_url": "https://comicvine.gamespot.com/cindy-jones/4005-88751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88767/", + "id": 88767, + "name": "Burgeister", + "site_detail_url": "https://comicvine.gamespot.com/burgeister/4005-88767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88768/", + "id": 88768, + "name": "Otto", + "site_detail_url": "https://comicvine.gamespot.com/otto/4005-88768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88770/", + "id": 88770, + "name": "Carl von Harbou", + "site_detail_url": "https://comicvine.gamespot.com/carl-von-harbou/4005-88770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88771/", + "id": 88771, + "name": "Godfrey Langston", + "site_detail_url": "https://comicvine.gamespot.com/godfrey-langston/4005-88771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88772/", + "id": 88772, + "name": "Inspector Manfred", + "site_detail_url": "https://comicvine.gamespot.com/inspector-manfred/4005-88772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88775/", + "id": 88775, + "name": "Lazard ", + "site_detail_url": "https://comicvine.gamespot.com/lazard/4005-88775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88781/", + "id": 88781, + "name": "Crimson Dynamo (Nevsky)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-nevsky/4005-88781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88782/", + "id": 88782, + "name": "Adrian Mortte", + "site_detail_url": "https://comicvine.gamespot.com/adrian-mortte/4005-88782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88783/", + "id": 88783, + "name": "Heinrich Mortte", + "site_detail_url": "https://comicvine.gamespot.com/heinrich-mortte/4005-88783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88784/", + "id": 88784, + "name": "Corker Haller", + "site_detail_url": "https://comicvine.gamespot.com/corker-haller/4005-88784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88785/", + "id": 88785, + "name": "Gladys Fulton", + "site_detail_url": "https://comicvine.gamespot.com/gladys-fulton/4005-88785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88809/", + "id": 88809, + "name": "Oliver Gordon", + "site_detail_url": "https://comicvine.gamespot.com/oliver-gordon/4005-88809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88810/", + "id": 88810, + "name": "Henry Laswell", + "site_detail_url": "https://comicvine.gamespot.com/henry-laswell/4005-88810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88811/", + "id": 88811, + "name": "Jason Faust", + "site_detail_url": "https://comicvine.gamespot.com/jason-faust/4005-88811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88818/", + "id": 88818, + "name": "Marcus Glove", + "site_detail_url": "https://comicvine.gamespot.com/marcus-glove/4005-88818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88819/", + "id": 88819, + "name": "Yth", + "site_detail_url": "https://comicvine.gamespot.com/yth/4005-88819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88820/", + "id": 88820, + "name": "Jillian Jones", + "site_detail_url": "https://comicvine.gamespot.com/jillian-jones/4005-88820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88821/", + "id": 88821, + "name": "Jerry Cohen", + "site_detail_url": "https://comicvine.gamespot.com/jerry-cohen/4005-88821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88822/", + "id": 88822, + "name": "Nance", + "site_detail_url": "https://comicvine.gamespot.com/nance/4005-88822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88823/", + "id": 88823, + "name": "Martin Scampt", + "site_detail_url": "https://comicvine.gamespot.com/martin-scampt/4005-88823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88824/", + "id": 88824, + "name": "Charlie o'Casey", + "site_detail_url": "https://comicvine.gamespot.com/charlie-o-casey/4005-88824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88825/", + "id": 88825, + "name": "Moniker", + "site_detail_url": "https://comicvine.gamespot.com/moniker/4005-88825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88826/", + "id": 88826, + "name": "Garbiel Trulaine", + "site_detail_url": "https://comicvine.gamespot.com/garbiel-trulaine/4005-88826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88829/", + "id": 88829, + "name": "Elizabeth Langley", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-langley/4005-88829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88830/", + "id": 88830, + "name": "Crimson Dynamo (Valski)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-valski/4005-88830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88831/", + "id": 88831, + "name": "Crimson Dynamo (Vadim)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-vadim/4005-88831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88833/", + "id": 88833, + "name": "Crimson Dynamo (Nemirovsky)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-nemirovsky/4005-88833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88834/", + "id": 88834, + "name": "Darkstar (Stancioff)", + "site_detail_url": "https://comicvine.gamespot.com/darkstar-stancioff/4005-88834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88835/", + "id": 88835, + "name": "Darkstar (Roerich)", + "site_detail_url": "https://comicvine.gamespot.com/darkstar-roerich/4005-88835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88838/", + "id": 88838, + "name": "Jasper o'Connor", + "site_detail_url": "https://comicvine.gamespot.com/jasper-o-connor/4005-88838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88839/", + "id": 88839, + "name": "Tara Brooks", + "site_detail_url": "https://comicvine.gamespot.com/tara-brooks/4005-88839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88840/", + "id": 88840, + "name": "Cecile Parker", + "site_detail_url": "https://comicvine.gamespot.com/cecile-parker/4005-88840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88841/", + "id": 88841, + "name": "Crimson Dynamo (Su)", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-su/4005-88841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88842/", + "id": 88842, + "name": "Lo Lan", + "site_detail_url": "https://comicvine.gamespot.com/lo-lan/4005-88842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88843/", + "id": 88843, + "name": "Mr. Chen", + "site_detail_url": "https://comicvine.gamespot.com/mr-chen/4005-88843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88844/", + "id": 88844, + "name": "Mr. Toomy", + "site_detail_url": "https://comicvine.gamespot.com/mr-toomy/4005-88844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88845/", + "id": 88845, + "name": "Mr. Lin", + "site_detail_url": "https://comicvine.gamespot.com/mr-lin/4005-88845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88847/", + "id": 88847, + "name": "Professor Morgo", + "site_detail_url": "https://comicvine.gamespot.com/professor-morgo/4005-88847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88848/", + "id": 88848, + "name": "Josiah Dawn", + "site_detail_url": "https://comicvine.gamespot.com/josiah-dawn/4005-88848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88850/", + "id": 88850, + "name": "Abomination (Lam)", + "site_detail_url": "https://comicvine.gamespot.com/abomination-lam/4005-88850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88852/", + "id": 88852, + "name": "Korgu", + "site_detail_url": "https://comicvine.gamespot.com/korgu/4005-88852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88853/", + "id": 88853, + "name": "Zoe", + "site_detail_url": "https://comicvine.gamespot.com/zoe/4005-88853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88859/", + "id": 88859, + "name": "The Scotsman", + "site_detail_url": "https://comicvine.gamespot.com/the-scotsman/4005-88859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88860/", + "id": 88860, + "name": "Orphelus", + "site_detail_url": "https://comicvine.gamespot.com/orphelus/4005-88860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88861/", + "id": 88861, + "name": "Paul Beare", + "site_detail_url": "https://comicvine.gamespot.com/paul-beare/4005-88861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88862/", + "id": 88862, + "name": "Henry Bonney", + "site_detail_url": "https://comicvine.gamespot.com/henry-bonney/4005-88862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88863/", + "id": 88863, + "name": "Theresa Beare", + "site_detail_url": "https://comicvine.gamespot.com/theresa-beare/4005-88863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88864/", + "id": 88864, + "name": "Marie Komph", + "site_detail_url": "https://comicvine.gamespot.com/marie-komph/4005-88864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88865/", + "id": 88865, + "name": "Horatio Toombs", + "site_detail_url": "https://comicvine.gamespot.com/horatio-toombs/4005-88865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88866/", + "id": 88866, + "name": "Gordo Brown", + "site_detail_url": "https://comicvine.gamespot.com/gordo-brown/4005-88866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88867/", + "id": 88867, + "name": "Shivvey Martin", + "site_detail_url": "https://comicvine.gamespot.com/shivvey-martin/4005-88867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88868/", + "id": 88868, + "name": "James Jackson", + "site_detail_url": "https://comicvine.gamespot.com/james-jackson/4005-88868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88869/", + "id": 88869, + "name": "Helen Cantler", + "site_detail_url": "https://comicvine.gamespot.com/helen-cantler/4005-88869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88878/", + "id": 88878, + "name": "Billy ", + "site_detail_url": "https://comicvine.gamespot.com/billy/4005-88878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88879/", + "id": 88879, + "name": "Foundling ", + "site_detail_url": "https://comicvine.gamespot.com/foundling/4005-88879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88884/", + "id": 88884, + "name": "Corvus Glaive", + "site_detail_url": "https://comicvine.gamespot.com/corvus-glaive/4005-88884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88899/", + "id": 88899, + "name": "Eobar Garrington", + "site_detail_url": "https://comicvine.gamespot.com/eobar-garrington/4005-88899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88901/", + "id": 88901, + "name": "Robert Mitchell", + "site_detail_url": "https://comicvine.gamespot.com/robert-mitchell/4005-88901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88911/", + "id": 88911, + "name": "Warden C.J. Johnson ", + "site_detail_url": "https://comicvine.gamespot.com/warden-c-j-johnson/4005-88911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88912/", + "id": 88912, + "name": "Dr. David Zhan", + "site_detail_url": "https://comicvine.gamespot.com/dr-david-zhan/4005-88912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88913/", + "id": 88913, + "name": "Pamela Grayson", + "site_detail_url": "https://comicvine.gamespot.com/pamela-grayson/4005-88913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88942/", + "id": 88942, + "name": "Godseye ", + "site_detail_url": "https://comicvine.gamespot.com/godseye/4005-88942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88944/", + "id": 88944, + "name": "Hero of the Day ", + "site_detail_url": "https://comicvine.gamespot.com/hero-of-the-day/4005-88944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88946/", + "id": 88946, + "name": "Sphinx ", + "site_detail_url": "https://comicvine.gamespot.com/sphinx/4005-88946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88950/", + "id": 88950, + "name": "The Union ", + "site_detail_url": "https://comicvine.gamespot.com/the-union/4005-88950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88952/", + "id": 88952, + "name": "Daisy", + "site_detail_url": "https://comicvine.gamespot.com/daisy/4005-88952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88955/", + "id": 88955, + "name": "Jacque Granét", + "site_detail_url": "https://comicvine.gamespot.com/jacque-granet/4005-88955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88956/", + "id": 88956, + "name": "Ludwig Gruber", + "site_detail_url": "https://comicvine.gamespot.com/ludwig-gruber/4005-88956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88957/", + "id": 88957, + "name": "Gerta Verné", + "site_detail_url": "https://comicvine.gamespot.com/gerta-verne/4005-88957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88958/", + "id": 88958, + "name": "Henri Verné", + "site_detail_url": "https://comicvine.gamespot.com/henri-verne/4005-88958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88980/", + "id": 88980, + "name": "Kratos", + "site_detail_url": "https://comicvine.gamespot.com/kratos/4005-88980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88981/", + "id": 88981, + "name": "Vassily Serchev", + "site_detail_url": "https://comicvine.gamespot.com/vassily-serchev/4005-88981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88984/", + "id": 88984, + "name": "Patricia Ann Love", + "site_detail_url": "https://comicvine.gamespot.com/patricia-ann-love/4005-88984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88985/", + "id": 88985, + "name": "Dusty Corbett", + "site_detail_url": "https://comicvine.gamespot.com/dusty-corbett/4005-88985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88988/", + "id": 88988, + "name": "Artie", + "site_detail_url": "https://comicvine.gamespot.com/artie/4005-88988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-88998/", + "id": 88998, + "name": "Butch", + "site_detail_url": "https://comicvine.gamespot.com/butch/4005-88998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89000/", + "id": 89000, + "name": "Zandow The Strong Man", + "site_detail_url": "https://comicvine.gamespot.com/zandow-the-strong-man/4005-89000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89001/", + "id": 89001, + "name": "Omir The Snake Charmer", + "site_detail_url": "https://comicvine.gamespot.com/omir-the-snake-charmer/4005-89001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89002/", + "id": 89002, + "name": "Spike ", + "site_detail_url": "https://comicvine.gamespot.com/spike/4005-89002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89003/", + "id": 89003, + "name": "Tommy Thumb ", + "site_detail_url": "https://comicvine.gamespot.com/tommy-thumb/4005-89003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89004/", + "id": 89004, + "name": "The Missing Link", + "site_detail_url": "https://comicvine.gamespot.com/the-missing-link/4005-89004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89005/", + "id": 89005, + "name": "Derko The Clown ", + "site_detail_url": "https://comicvine.gamespot.com/derko-the-clown/4005-89005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89039/", + "id": 89039, + "name": "Even Mathews", + "site_detail_url": "https://comicvine.gamespot.com/even-mathews/4005-89039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89082/", + "id": 89082, + "name": "Chewie", + "site_detail_url": "https://comicvine.gamespot.com/chewie/4005-89082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89090/", + "id": 89090, + "name": "Kazimierz Kazimierczak", + "site_detail_url": "https://comicvine.gamespot.com/kazimierz-kazimierczak/4005-89090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89100/", + "id": 89100, + "name": "Shane Preston", + "site_detail_url": "https://comicvine.gamespot.com/shane-preston/4005-89100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89101/", + "id": 89101, + "name": "Jeff Preston", + "site_detail_url": "https://comicvine.gamespot.com/jeff-preston/4005-89101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89102/", + "id": 89102, + "name": "Antony", + "site_detail_url": "https://comicvine.gamespot.com/antony/4005-89102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89209/", + "id": 89209, + "name": "Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thunder/4005-89209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89303/", + "id": 89303, + "name": "Berreg", + "site_detail_url": "https://comicvine.gamespot.com/berreg/4005-89303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89418/", + "id": 89418, + "name": "Doombot", + "site_detail_url": "https://comicvine.gamespot.com/doombot/4005-89418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89494/", + "id": 89494, + "name": "Sagittarius (Hawkeye LMD)", + "site_detail_url": "https://comicvine.gamespot.com/sagittarius-hawkeye-lmd/4005-89494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89503/", + "id": 89503, + "name": "Al", + "site_detail_url": "https://comicvine.gamespot.com/al/4005-89503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89534/", + "id": 89534, + "name": "Retread", + "site_detail_url": "https://comicvine.gamespot.com/retread/4005-89534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89549/", + "id": 89549, + "name": "Mondo", + "site_detail_url": "https://comicvine.gamespot.com/mondo/4005-89549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89550/", + "id": 89550, + "name": "Kliktok", + "site_detail_url": "https://comicvine.gamespot.com/kliktok/4005-89550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89574/", + "id": 89574, + "name": "Lopez", + "site_detail_url": "https://comicvine.gamespot.com/lopez/4005-89574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89575/", + "id": 89575, + "name": "Dean", + "site_detail_url": "https://comicvine.gamespot.com/dean/4005-89575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89576/", + "id": 89576, + "name": "Smitty", + "site_detail_url": "https://comicvine.gamespot.com/smitty/4005-89576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89577/", + "id": 89577, + "name": "Goose Man", + "site_detail_url": "https://comicvine.gamespot.com/goose-man/4005-89577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89579/", + "id": 89579, + "name": "The Siren", + "site_detail_url": "https://comicvine.gamespot.com/the-siren/4005-89579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89580/", + "id": 89580, + "name": "Randolph Esposito", + "site_detail_url": "https://comicvine.gamespot.com/randolph-esposito/4005-89580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89581/", + "id": 89581, + "name": "Jake Costanza", + "site_detail_url": "https://comicvine.gamespot.com/jake-costanza/4005-89581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89582/", + "id": 89582, + "name": "Mitya Smerdyakov", + "site_detail_url": "https://comicvine.gamespot.com/mitya-smerdyakov/4005-89582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89583/", + "id": 89583, + "name": "Mikhail Smerdyakov", + "site_detail_url": "https://comicvine.gamespot.com/mikhail-smerdyakov/4005-89583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89584/", + "id": 89584, + "name": "Patricia Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/patricia-hamilton/4005-89584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89585/", + "id": 89585, + "name": "Bethany Danzinger", + "site_detail_url": "https://comicvine.gamespot.com/bethany-danzinger/4005-89585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89586/", + "id": 89586, + "name": "Gus Kucharsky", + "site_detail_url": "https://comicvine.gamespot.com/gus-kucharsky/4005-89586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89587/", + "id": 89587, + "name": "Toad Boy", + "site_detail_url": "https://comicvine.gamespot.com/toad-boy/4005-89587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89588/", + "id": 89588, + "name": "Lonnie Shakespeare", + "site_detail_url": "https://comicvine.gamespot.com/lonnie-shakespeare/4005-89588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89589/", + "id": 89589, + "name": "Arturo Falcone", + "site_detail_url": "https://comicvine.gamespot.com/arturo-falcone/4005-89589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89590/", + "id": 89590, + "name": "Manfred Jones", + "site_detail_url": "https://comicvine.gamespot.com/manfred-jones/4005-89590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89591/", + "id": 89591, + "name": "Sylvie Lauziere", + "site_detail_url": "https://comicvine.gamespot.com/sylvie-lauziere/4005-89591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89592/", + "id": 89592, + "name": "Chamayra Ortega", + "site_detail_url": "https://comicvine.gamespot.com/chamayra-ortega/4005-89592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89593/", + "id": 89593, + "name": "Esteban Ortega", + "site_detail_url": "https://comicvine.gamespot.com/esteban-ortega/4005-89593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89594/", + "id": 89594, + "name": "Primo Falcone", + "site_detail_url": "https://comicvine.gamespot.com/primo-falcone/4005-89594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89595/", + "id": 89595, + "name": "Matti Falcone", + "site_detail_url": "https://comicvine.gamespot.com/matti-falcone/4005-89595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89596/", + "id": 89596, + "name": "Zippermouth", + "site_detail_url": "https://comicvine.gamespot.com/zippermouth/4005-89596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89597/", + "id": 89597, + "name": "Dana Hutton", + "site_detail_url": "https://comicvine.gamespot.com/dana-hutton/4005-89597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89598/", + "id": 89598, + "name": "Joey Chambers", + "site_detail_url": "https://comicvine.gamespot.com/joey-chambers/4005-89598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89599/", + "id": 89599, + "name": "Jerry Halliwell", + "site_detail_url": "https://comicvine.gamespot.com/jerry-halliwell/4005-89599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89601/", + "id": 89601, + "name": "Sashenka Popova", + "site_detail_url": "https://comicvine.gamespot.com/sashenka-popova/4005-89601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89602/", + "id": 89602, + "name": "Nemesio Petri", + "site_detail_url": "https://comicvine.gamespot.com/nemesio-petri/4005-89602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89603/", + "id": 89603, + "name": "Melek", + "site_detail_url": "https://comicvine.gamespot.com/melek/4005-89603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89604/", + "id": 89604, + "name": "Billy Bates", + "site_detail_url": "https://comicvine.gamespot.com/billy-bates/4005-89604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89605/", + "id": 89605, + "name": "Triporter", + "site_detail_url": "https://comicvine.gamespot.com/triporter/4005-89605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89606/", + "id": 89606, + "name": "Jacob Gunterson", + "site_detail_url": "https://comicvine.gamespot.com/jacob-gunterson/4005-89606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89607/", + "id": 89607, + "name": "Machine", + "site_detail_url": "https://comicvine.gamespot.com/machine/4005-89607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89608/", + "id": 89608, + "name": "Idris", + "site_detail_url": "https://comicvine.gamespot.com/idris/4005-89608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89611/", + "id": 89611, + "name": "Gina Mulligan", + "site_detail_url": "https://comicvine.gamespot.com/gina-mulligan/4005-89611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89612/", + "id": 89612, + "name": "Edward Mulligan", + "site_detail_url": "https://comicvine.gamespot.com/edward-mulligan/4005-89612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89613/", + "id": 89613, + "name": "Razor-Fist (Young)", + "site_detail_url": "https://comicvine.gamespot.com/razor-fist-young/4005-89613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89614/", + "id": 89614, + "name": "William Scott", + "site_detail_url": "https://comicvine.gamespot.com/william-scott/4005-89614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89615/", + "id": 89615, + "name": "Paul Meadows", + "site_detail_url": "https://comicvine.gamespot.com/paul-meadows/4005-89615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89616/", + "id": 89616, + "name": "Jim Mulligan", + "site_detail_url": "https://comicvine.gamespot.com/jim-mulligan/4005-89616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89617/", + "id": 89617, + "name": "Mel", + "site_detail_url": "https://comicvine.gamespot.com/mel/4005-89617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89626/", + "id": 89626, + "name": "Nick Furry 2099", + "site_detail_url": "https://comicvine.gamespot.com/nick-furry-2099/4005-89626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89638/", + "id": 89638, + "name": "The Other", + "site_detail_url": "https://comicvine.gamespot.com/the-other/4005-89638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89644/", + "id": 89644, + "name": "Max", + "site_detail_url": "https://comicvine.gamespot.com/max/4005-89644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89652/", + "id": 89652, + "name": "Arabian Knight (Qamar)", + "site_detail_url": "https://comicvine.gamespot.com/arabian-knight-qamar/4005-89652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89654/", + "id": 89654, + "name": "Arsenal Alpha", + "site_detail_url": "https://comicvine.gamespot.com/arsenal-alpha/4005-89654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89686/", + "id": 89686, + "name": "Blarrgh the Unliving", + "site_detail_url": "https://comicvine.gamespot.com/blarrgh-the-unliving/4005-89686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89691/", + "id": 89691, + "name": "D.R.H.E.R.B.I.E.", + "site_detail_url": "https://comicvine.gamespot.com/d-r-h-e-r-b-i-e/4005-89691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89692/", + "id": 89692, + "name": "Bworg the Many-Spouted", + "site_detail_url": "https://comicvine.gamespot.com/bworg-the-many-spouted/4005-89692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89693/", + "id": 89693, + "name": "Ul-Waa", + "site_detail_url": "https://comicvine.gamespot.com/ul-waa/4005-89693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89700/", + "id": 89700, + "name": "White Dragon", + "site_detail_url": "https://comicvine.gamespot.com/white-dragon/4005-89700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89715/", + "id": 89715, + "name": "Arkea", + "site_detail_url": "https://comicvine.gamespot.com/arkea/4005-89715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89716/", + "id": 89716, + "name": "Jason Carter", + "site_detail_url": "https://comicvine.gamespot.com/jason-carter/4005-89716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89717/", + "id": 89717, + "name": "Douglas Ray", + "site_detail_url": "https://comicvine.gamespot.com/douglas-ray/4005-89717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89718/", + "id": 89718, + "name": "Carlos Hernandez", + "site_detail_url": "https://comicvine.gamespot.com/carlos-hernandez/4005-89718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89719/", + "id": 89719, + "name": "Mr. Oborus", + "site_detail_url": "https://comicvine.gamespot.com/mr-oborus/4005-89719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89723/", + "id": 89723, + "name": "Philistine", + "site_detail_url": "https://comicvine.gamespot.com/philistine/4005-89723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89744/", + "id": 89744, + "name": "Harvey Hooper", + "site_detail_url": "https://comicvine.gamespot.com/harvey-hooper/4005-89744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89745/", + "id": 89745, + "name": "Principal Snorkle", + "site_detail_url": "https://comicvine.gamespot.com/principal-snorkle/4005-89745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89750/", + "id": 89750, + "name": "Wendy", + "site_detail_url": "https://comicvine.gamespot.com/wendy/4005-89750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89751/", + "id": 89751, + "name": "Cheerful Charlie", + "site_detail_url": "https://comicvine.gamespot.com/cheerful-charlie/4005-89751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89752/", + "id": 89752, + "name": "Goober", + "site_detail_url": "https://comicvine.gamespot.com/goober/4005-89752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89753/", + "id": 89753, + "name": "Raquel", + "site_detail_url": "https://comicvine.gamespot.com/raquel/4005-89753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89754/", + "id": 89754, + "name": "Calder", + "site_detail_url": "https://comicvine.gamespot.com/calder/4005-89754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89788/", + "id": 89788, + "name": "Dulcea", + "site_detail_url": "https://comicvine.gamespot.com/dulcea/4005-89788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89851/", + "id": 89851, + "name": "Andras Bertesy", + "site_detail_url": "https://comicvine.gamespot.com/andras-bertesy/4005-89851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89852/", + "id": 89852, + "name": "Carmen Drake", + "site_detail_url": "https://comicvine.gamespot.com/carmen-drake/4005-89852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89859/", + "id": 89859, + "name": "Dadingra Ummon Tarru", + "site_detail_url": "https://comicvine.gamespot.com/dadingra-ummon-tarru/4005-89859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89860/", + "id": 89860, + "name": "Denga Bautista", + "site_detail_url": "https://comicvine.gamespot.com/denga-bautista/4005-89860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89861/", + "id": 89861, + "name": "Doug", + "site_detail_url": "https://comicvine.gamespot.com/doug/4005-89861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-89862/", + "id": 89862, + "name": "Mathias Deeds", + "site_detail_url": "https://comicvine.gamespot.com/mathias-deeds/4005-89862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90041/", + "id": 90041, + "name": "Justice Love", + "site_detail_url": "https://comicvine.gamespot.com/justice-love/4005-90041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90053/", + "id": 90053, + "name": "Ten-Thirtifor", + "site_detail_url": "https://comicvine.gamespot.com/ten-thirtifor/4005-90053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90054/", + "id": 90054, + "name": "Mapone Romanova", + "site_detail_url": "https://comicvine.gamespot.com/mapone-romanova/4005-90054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90055/", + "id": 90055, + "name": "Swanson Gary", + "site_detail_url": "https://comicvine.gamespot.com/swanson-gary/4005-90055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90062/", + "id": 90062, + "name": "Arden", + "site_detail_url": "https://comicvine.gamespot.com/arden/4005-90062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90063/", + "id": 90063, + "name": "Gladiator", + "site_detail_url": "https://comicvine.gamespot.com/gladiator/4005-90063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90065/", + "id": 90065, + "name": "Desmond Drew", + "site_detail_url": "https://comicvine.gamespot.com/desmond-drew/4005-90065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90067/", + "id": 90067, + "name": "Horde", + "site_detail_url": "https://comicvine.gamespot.com/horde/4005-90067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90079/", + "id": 90079, + "name": "Infestation", + "site_detail_url": "https://comicvine.gamespot.com/infestation/4005-90079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90107/", + "id": 90107, + "name": "Shen Xorn", + "site_detail_url": "https://comicvine.gamespot.com/shen-xorn/4005-90107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90113/", + "id": 90113, + "name": "John Crichton", + "site_detail_url": "https://comicvine.gamespot.com/john-crichton/4005-90113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90114/", + "id": 90114, + "name": "Louis Alejandro Richter", + "site_detail_url": "https://comicvine.gamespot.com/louis-alejandro-richter/4005-90114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90136/", + "id": 90136, + "name": "Tom Thumb (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/tom-thumb-cadaver/4005-90136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90137/", + "id": 90137, + "name": "Golden Archer (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/golden-archer-cadaver/4005-90137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90138/", + "id": 90138, + "name": "Amphibian (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/amphibian-cadaver/4005-90138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90139/", + "id": 90139, + "name": "The Shape (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/the-shape-cadaver/4005-90139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90140/", + "id": 90140, + "name": "Lady Lark (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/lady-lark-cadaver/4005-90140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90141/", + "id": 90141, + "name": "Blue Eagle (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/blue-eagle-cadaver/4005-90141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90142/", + "id": 90142, + "name": "Hoss", + "site_detail_url": "https://comicvine.gamespot.com/hoss/4005-90142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90143/", + "id": 90143, + "name": "Two-Ton", + "site_detail_url": "https://comicvine.gamespot.com/two-ton/4005-90143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90144/", + "id": 90144, + "name": "Doc Medic", + "site_detail_url": "https://comicvine.gamespot.com/doc-medic/4005-90144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90145/", + "id": 90145, + "name": "Mainframe", + "site_detail_url": "https://comicvine.gamespot.com/mainframe/4005-90145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90147/", + "id": 90147, + "name": "Nuke (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/nuke-cadaver/4005-90147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90148/", + "id": 90148, + "name": "Whizzer (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/whizzer-cadaver/4005-90148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90149/", + "id": 90149, + "name": "Power Princess (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/power-princess-cadaver/4005-90149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90150/", + "id": 90150, + "name": "Nighthawk (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/nighthawk-cadaver/4005-90150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90151/", + "id": 90151, + "name": "Hyperion (Cadaver)", + "site_detail_url": "https://comicvine.gamespot.com/hyperion-cadaver/4005-90151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90157/", + "id": 90157, + "name": "Philip Hart", + "site_detail_url": "https://comicvine.gamespot.com/philip-hart/4005-90157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90180/", + "id": 90180, + "name": "Henrique", + "site_detail_url": "https://comicvine.gamespot.com/henrique/4005-90180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90184/", + "id": 90184, + "name": "Señora Richter", + "site_detail_url": "https://comicvine.gamespot.com/senora-richter/4005-90184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90203/", + "id": 90203, + "name": "Señor Esteban", + "site_detail_url": "https://comicvine.gamespot.com/senor-esteban/4005-90203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90205/", + "id": 90205, + "name": "Omar", + "site_detail_url": "https://comicvine.gamespot.com/omar/4005-90205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90206/", + "id": 90206, + "name": "Gonzalo Richter", + "site_detail_url": "https://comicvine.gamespot.com/gonzalo-richter/4005-90206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90209/", + "id": 90209, + "name": "Energumen", + "site_detail_url": "https://comicvine.gamespot.com/energumen/4005-90209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90214/", + "id": 90214, + "name": "Brigadier MacNeil", + "site_detail_url": "https://comicvine.gamespot.com/brigadier-macneil/4005-90214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90218/", + "id": 90218, + "name": "Quicksilver (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver-clone/4005-90218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90219/", + "id": 90219, + "name": "Scarlet Witch (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch-clone/4005-90219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90220/", + "id": 90220, + "name": "Toad (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/toad-clone/4005-90220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90221/", + "id": 90221, + "name": "Mastermind (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/mastermind-clone/4005-90221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90222/", + "id": 90222, + "name": "Blob (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/blob-clone/4005-90222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90223/", + "id": 90223, + "name": "Director Lashniev", + "site_detail_url": "https://comicvine.gamespot.com/director-lashniev/4005-90223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90233/", + "id": 90233, + "name": "Lord Ogre", + "site_detail_url": "https://comicvine.gamespot.com/lord-ogre/4005-90233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90238/", + "id": 90238, + "name": "Agent Beefcake", + "site_detail_url": "https://comicvine.gamespot.com/agent-beefcake/4005-90238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90245/", + "id": 90245, + "name": "Daniel Gump", + "site_detail_url": "https://comicvine.gamespot.com/daniel-gump/4005-90245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90246/", + "id": 90246, + "name": "Bobby Tisdell", + "site_detail_url": "https://comicvine.gamespot.com/bobby-tisdell/4005-90246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90254/", + "id": 90254, + "name": "Mysterion", + "site_detail_url": "https://comicvine.gamespot.com/mysterion/4005-90254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90266/", + "id": 90266, + "name": "Kodor ", + "site_detail_url": "https://comicvine.gamespot.com/kodor/4005-90266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90267/", + "id": 90267, + "name": "Andi Benton", + "site_detail_url": "https://comicvine.gamespot.com/andi-benton/4005-90267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90284/", + "id": 90284, + "name": "Black Dwarf", + "site_detail_url": "https://comicvine.gamespot.com/black-dwarf/4005-90284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90285/", + "id": 90285, + "name": "Christopher Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/christopher-sinclair/4005-90285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90287/", + "id": 90287, + "name": "Grausum", + "site_detail_url": "https://comicvine.gamespot.com/grausum/4005-90287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90289/", + "id": 90289, + "name": "Dark Art ", + "site_detail_url": "https://comicvine.gamespot.com/dark-art/4005-90289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90290/", + "id": 90290, + "name": "Sulumor", + "site_detail_url": "https://comicvine.gamespot.com/sulumor/4005-90290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90295/", + "id": 90295, + "name": "Mutasim Zai'id", + "site_detail_url": "https://comicvine.gamespot.com/mutasim-zaiid/4005-90295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90296/", + "id": 90296, + "name": "Lord Elder Kalahia", + "site_detail_url": "https://comicvine.gamespot.com/lord-elder-kalahia/4005-90296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90298/", + "id": 90298, + "name": "Olalla", + "site_detail_url": "https://comicvine.gamespot.com/olalla/4005-90298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90312/", + "id": 90312, + "name": "Paolo", + "site_detail_url": "https://comicvine.gamespot.com/paolo/4005-90312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90348/", + "id": 90348, + "name": "Teresa Parker", + "site_detail_url": "https://comicvine.gamespot.com/teresa-parker/4005-90348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90361/", + "id": 90361, + "name": "Tyr", + "site_detail_url": "https://comicvine.gamespot.com/tyr/4005-90361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90364/", + "id": 90364, + "name": "Raven", + "site_detail_url": "https://comicvine.gamespot.com/raven/4005-90364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90365/", + "id": 90365, + "name": "Duke", + "site_detail_url": "https://comicvine.gamespot.com/duke/4005-90365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90382/", + "id": 90382, + "name": "Medusa", + "site_detail_url": "https://comicvine.gamespot.com/medusa/4005-90382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90408/", + "id": 90408, + "name": "Mollo", + "site_detail_url": "https://comicvine.gamespot.com/mollo/4005-90408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90409/", + "id": 90409, + "name": "Meg", + "site_detail_url": "https://comicvine.gamespot.com/meg/4005-90409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90430/", + "id": 90430, + "name": "Brawn", + "site_detail_url": "https://comicvine.gamespot.com/brawn/4005-90430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90431/", + "id": 90431, + "name": "Cassandra Walters", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-walters/4005-90431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90436/", + "id": 90436, + "name": "Ira Gross", + "site_detail_url": "https://comicvine.gamespot.com/ira-gross/4005-90436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90467/", + "id": 90467, + "name": "Shogo Lee", + "site_detail_url": "https://comicvine.gamespot.com/shogo-lee/4005-90467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90468/", + "id": 90468, + "name": "Snot", + "site_detail_url": "https://comicvine.gamespot.com/snot/4005-90468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90470/", + "id": 90470, + "name": "Carrion Crow", + "site_detail_url": "https://comicvine.gamespot.com/carrion-crow/4005-90470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90515/", + "id": 90515, + "name": "Mr. Fear (Drago)", + "site_detail_url": "https://comicvine.gamespot.com/mr-fear-drago/4005-90515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90516/", + "id": 90516, + "name": "Mr. Fear (Cranston)", + "site_detail_url": "https://comicvine.gamespot.com/mr-fear-cranston/4005-90516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90518/", + "id": 90518, + "name": "Abyss", + "site_detail_url": "https://comicvine.gamespot.com/abyss/4005-90518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90521/", + "id": 90521, + "name": "Supergiant", + "site_detail_url": "https://comicvine.gamespot.com/supergiant/4005-90521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90522/", + "id": 90522, + "name": "Proxima Midnight", + "site_detail_url": "https://comicvine.gamespot.com/proxima-midnight/4005-90522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90538/", + "id": 90538, + "name": "Frank Gianelli", + "site_detail_url": "https://comicvine.gamespot.com/frank-gianelli/4005-90538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90539/", + "id": 90539, + "name": "Drexel Walsh", + "site_detail_url": "https://comicvine.gamespot.com/drexel-walsh/4005-90539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90540/", + "id": 90540, + "name": "Rich Duncan", + "site_detail_url": "https://comicvine.gamespot.com/rich-duncan/4005-90540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90541/", + "id": 90541, + "name": "Zanna Zira", + "site_detail_url": "https://comicvine.gamespot.com/zanna-zira/4005-90541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90588/", + "id": 90588, + "name": "Sarah Saulsby", + "site_detail_url": "https://comicvine.gamespot.com/sarah-saulsby/4005-90588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90592/", + "id": 90592, + "name": "Alexis", + "site_detail_url": "https://comicvine.gamespot.com/alexis/4005-90592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90595/", + "id": 90595, + "name": "Lord Robert Plunder", + "site_detail_url": "https://comicvine.gamespot.com/lord-robert-plunder/4005-90595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90605/", + "id": 90605, + "name": "Lil' Bishop", + "site_detail_url": "https://comicvine.gamespot.com/lil-bishop/4005-90605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90606/", + "id": 90606, + "name": "Ebony Maw", + "site_detail_url": "https://comicvine.gamespot.com/ebony-maw/4005-90606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90640/", + "id": 90640, + "name": "Rebecca Barnes", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-barnes/4005-90640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90664/", + "id": 90664, + "name": "Hans the Perfect Mutant", + "site_detail_url": "https://comicvine.gamespot.com/hans-the-perfect-mutant/4005-90664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90689/", + "id": 90689, + "name": "Connelly", + "site_detail_url": "https://comicvine.gamespot.com/connelly/4005-90689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90708/", + "id": 90708, + "name": "Rita Bennett", + "site_detail_url": "https://comicvine.gamespot.com/rita-bennett/4005-90708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90709/", + "id": 90709, + "name": "Harry Morgan", + "site_detail_url": "https://comicvine.gamespot.com/harry-morgan/4005-90709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90717/", + "id": 90717, + "name": "Ringer", + "site_detail_url": "https://comicvine.gamespot.com/ringer/4005-90717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90718/", + "id": 90718, + "name": "Enforcer (Nero)", + "site_detail_url": "https://comicvine.gamespot.com/enforcer-nero/4005-90718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90719/", + "id": 90719, + "name": "Behemoth", + "site_detail_url": "https://comicvine.gamespot.com/behemoth/4005-90719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90720/", + "id": 90720, + "name": "Koroviev", + "site_detail_url": "https://comicvine.gamespot.com/koroviev/4005-90720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90721/", + "id": 90721, + "name": "Smiley-Face", + "site_detail_url": "https://comicvine.gamespot.com/smiley-face/4005-90721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90743/", + "id": 90743, + "name": "Unit 3.14159", + "site_detail_url": "https://comicvine.gamespot.com/unit-3-14159/4005-90743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90758/", + "id": 90758, + "name": "Hijack", + "site_detail_url": "https://comicvine.gamespot.com/hijack/4005-90758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90759/", + "id": 90759, + "name": "Nate Hackett", + "site_detail_url": "https://comicvine.gamespot.com/nate-hackett/4005-90759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90778/", + "id": 90778, + "name": "Alyssa", + "site_detail_url": "https://comicvine.gamespot.com/alyssa/4005-90778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90802/", + "id": 90802, + "name": "Michael English", + "site_detail_url": "https://comicvine.gamespot.com/michael-english/4005-90802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90803/", + "id": 90803, + "name": "Atom-Smasher", + "site_detail_url": "https://comicvine.gamespot.com/atom-smasher/4005-90803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90838/", + "id": 90838, + "name": "Chemistro (Morton)", + "site_detail_url": "https://comicvine.gamespot.com/chemistro-morton/4005-90838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90839/", + "id": 90839, + "name": "Gloria Medina", + "site_detail_url": "https://comicvine.gamespot.com/gloria-medina/4005-90839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90840/", + "id": 90840, + "name": "Jennifer Medina", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-medina/4005-90840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90841/", + "id": 90841, + "name": "Super Sentry", + "site_detail_url": "https://comicvine.gamespot.com/super-sentry/4005-90841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90849/", + "id": 90849, + "name": "Magic Boots Mel", + "site_detail_url": "https://comicvine.gamespot.com/magic-boots-mel/4005-90849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90850/", + "id": 90850, + "name": "Computer Graham", + "site_detail_url": "https://comicvine.gamespot.com/computer-graham/4005-90850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90979/", + "id": 90979, + "name": "Darris Kimbro", + "site_detail_url": "https://comicvine.gamespot.com/darris-kimbro/4005-90979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90984/", + "id": 90984, + "name": "Horatio", + "site_detail_url": "https://comicvine.gamespot.com/horatio/4005-90984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-90985/", + "id": 90985, + "name": "Casey", + "site_detail_url": "https://comicvine.gamespot.com/casey/4005-90985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91019/", + "id": 91019, + "name": "Madison Roberts", + "site_detail_url": "https://comicvine.gamespot.com/madison-roberts/4005-91019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91047/", + "id": 91047, + "name": "Siri", + "site_detail_url": "https://comicvine.gamespot.com/siri/4005-91047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91048/", + "id": 91048, + "name": "Mr. Blake", + "site_detail_url": "https://comicvine.gamespot.com/mr-blake/4005-91048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91049/", + "id": 91049, + "name": "Karen Blake", + "site_detail_url": "https://comicvine.gamespot.com/karen-blake/4005-91049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91050/", + "id": 91050, + "name": "Tammy Blake", + "site_detail_url": "https://comicvine.gamespot.com/tammy-blake/4005-91050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91051/", + "id": 91051, + "name": "Sheila Blake", + "site_detail_url": "https://comicvine.gamespot.com/sheila-blake/4005-91051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91058/", + "id": 91058, + "name": "Kinjin the Faceless", + "site_detail_url": "https://comicvine.gamespot.com/kinjin-the-faceless/4005-91058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91059/", + "id": 91059, + "name": "Shikaru the Mute", + "site_detail_url": "https://comicvine.gamespot.com/shikaru-the-mute/4005-91059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91061/", + "id": 91061, + "name": "Mikaru the Blind", + "site_detail_url": "https://comicvine.gamespot.com/mikaru-the-blind/4005-91061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91117/", + "id": 91117, + "name": "Bill, Agent of A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/bill-agent-of-a-i-m/4005-91117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91118/", + "id": 91118, + "name": "Yau", + "site_detail_url": "https://comicvine.gamespot.com/yau/4005-91118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91121/", + "id": 91121, + "name": "Ted Toxic", + "site_detail_url": "https://comicvine.gamespot.com/ted-toxic/4005-91121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91122/", + "id": 91122, + "name": "Jakstraw", + "site_detail_url": "https://comicvine.gamespot.com/jakstraw/4005-91122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91123/", + "id": 91123, + "name": "Lord Demonpimp", + "site_detail_url": "https://comicvine.gamespot.com/lord-demonpimp/4005-91123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91124/", + "id": 91124, + "name": "Gronk", + "site_detail_url": "https://comicvine.gamespot.com/gronk/4005-91124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91125/", + "id": 91125, + "name": "Halar", + "site_detail_url": "https://comicvine.gamespot.com/halar/4005-91125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91126/", + "id": 91126, + "name": "Arskhal", + "site_detail_url": "https://comicvine.gamespot.com/arskhal/4005-91126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91131/", + "id": 91131, + "name": "Blue Eagle", + "site_detail_url": "https://comicvine.gamespot.com/blue-eagle/4005-91131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91132/", + "id": 91132, + "name": "Charles Cotta", + "site_detail_url": "https://comicvine.gamespot.com/charles-cotta/4005-91132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91171/", + "id": 91171, + "name": "Mister Kirkland", + "site_detail_url": "https://comicvine.gamespot.com/mister-kirkland/4005-91171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91172/", + "id": 91172, + "name": "Titan", + "site_detail_url": "https://comicvine.gamespot.com/titan/4005-91172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91178/", + "id": 91178, + "name": "Alvin Murphy", + "site_detail_url": "https://comicvine.gamespot.com/alvin-murphy/4005-91178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91179/", + "id": 91179, + "name": "Carmelita Camacho", + "site_detail_url": "https://comicvine.gamespot.com/carmelita-camacho/4005-91179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91180/", + "id": 91180, + "name": "White Man", + "site_detail_url": "https://comicvine.gamespot.com/white-man/4005-91180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91181/", + "id": 91181, + "name": "Mrs. Camacho", + "site_detail_url": "https://comicvine.gamespot.com/mrs-camacho/4005-91181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91184/", + "id": 91184, + "name": "Joya ", + "site_detail_url": "https://comicvine.gamespot.com/joya/4005-91184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91185/", + "id": 91185, + "name": "Meredith Campbell", + "site_detail_url": "https://comicvine.gamespot.com/meredith-campbell/4005-91185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91189/", + "id": 91189, + "name": "Dack", + "site_detail_url": "https://comicvine.gamespot.com/dack/4005-91189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91202/", + "id": 91202, + "name": "Sun Girl", + "site_detail_url": "https://comicvine.gamespot.com/sun-girl/4005-91202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91205/", + "id": 91205, + "name": "Mother", + "site_detail_url": "https://comicvine.gamespot.com/mother/4005-91205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91208/", + "id": 91208, + "name": "Brute", + "site_detail_url": "https://comicvine.gamespot.com/brute/4005-91208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91209/", + "id": 91209, + "name": "Whiplash", + "site_detail_url": "https://comicvine.gamespot.com/whiplash/4005-91209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91210/", + "id": 91210, + "name": "Furi Wamu", + "site_detail_url": "https://comicvine.gamespot.com/furi-wamu/4005-91210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91211/", + "id": 91211, + "name": "Gunsmith", + "site_detail_url": "https://comicvine.gamespot.com/gunsmith/4005-91211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91224/", + "id": 91224, + "name": "Badgal", + "site_detail_url": "https://comicvine.gamespot.com/badgal/4005-91224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91235/", + "id": 91235, + "name": "Mrs. Bethel", + "site_detail_url": "https://comicvine.gamespot.com/mrs-bethel/4005-91235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91236/", + "id": 91236, + "name": "Muffy", + "site_detail_url": "https://comicvine.gamespot.com/muffy/4005-91236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91237/", + "id": 91237, + "name": "Bill", + "site_detail_url": "https://comicvine.gamespot.com/bill/4005-91237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91239/", + "id": 91239, + "name": "Lacy Kimbro", + "site_detail_url": "https://comicvine.gamespot.com/lacy-kimbro/4005-91239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91243/", + "id": 91243, + "name": "Kal'ti", + "site_detail_url": "https://comicvine.gamespot.com/kal-ti/4005-91243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91245/", + "id": 91245, + "name": "Matthew O'Brien", + "site_detail_url": "https://comicvine.gamespot.com/matthew-o-brien/4005-91245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91251/", + "id": 91251, + "name": "Hendricks", + "site_detail_url": "https://comicvine.gamespot.com/hendricks/4005-91251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91271/", + "id": 91271, + "name": "Super-Skrull Alpha", + "site_detail_url": "https://comicvine.gamespot.com/super-skrull-alpha/4005-91271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91278/", + "id": 91278, + "name": "Phantom Pilot", + "site_detail_url": "https://comicvine.gamespot.com/phantom-pilot/4005-91278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91287/", + "id": 91287, + "name": "Tulem", + "site_detail_url": "https://comicvine.gamespot.com/tulem/4005-91287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91288/", + "id": 91288, + "name": "Zari Khanata", + "site_detail_url": "https://comicvine.gamespot.com/zari-khanata/4005-91288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91289/", + "id": 91289, + "name": "Skulora", + "site_detail_url": "https://comicvine.gamespot.com/skulora/4005-91289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91290/", + "id": 91290, + "name": "Al-Shalizar", + "site_detail_url": "https://comicvine.gamespot.com/al-shalizar/4005-91290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91309/", + "id": 91309, + "name": "Chan Tze", + "site_detail_url": "https://comicvine.gamespot.com/chan-tze/4005-91309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91310/", + "id": 91310, + "name": "Webb Terry", + "site_detail_url": "https://comicvine.gamespot.com/webb-terry/4005-91310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91311/", + "id": 91311, + "name": "Derek Schiller", + "site_detail_url": "https://comicvine.gamespot.com/derek-schiller/4005-91311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91312/", + "id": 91312, + "name": "Doctor Zu", + "site_detail_url": "https://comicvine.gamespot.com/doctor-zu/4005-91312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91313/", + "id": 91313, + "name": "Cyrus Virro", + "site_detail_url": "https://comicvine.gamespot.com/cyrus-virro/4005-91313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91314/", + "id": 91314, + "name": "M-12", + "site_detail_url": "https://comicvine.gamespot.com/m-12/4005-91314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91315/", + "id": 91315, + "name": "M-8", + "site_detail_url": "https://comicvine.gamespot.com/m-8/4005-91315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91316/", + "id": 91316, + "name": "M-5", + "site_detail_url": "https://comicvine.gamespot.com/m-5/4005-91316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91317/", + "id": 91317, + "name": "M-3", + "site_detail_url": "https://comicvine.gamespot.com/m-3/4005-91317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91318/", + "id": 91318, + "name": "M-1", + "site_detail_url": "https://comicvine.gamespot.com/m-1/4005-91318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91321/", + "id": 91321, + "name": "R.O.B.", + "site_detail_url": "https://comicvine.gamespot.com/r-o-b/4005-91321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91322/", + "id": 91322, + "name": "Agent Goddard", + "site_detail_url": "https://comicvine.gamespot.com/agent-goddard/4005-91322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91329/", + "id": 91329, + "name": "Maxwell Deacon", + "site_detail_url": "https://comicvine.gamespot.com/maxwell-deacon/4005-91329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91331/", + "id": 91331, + "name": "Oscar Koepnik", + "site_detail_url": "https://comicvine.gamespot.com/oscar-koepnik/4005-91331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91332/", + "id": 91332, + "name": "El-Ta", + "site_detail_url": "https://comicvine.gamespot.com/el-ta/4005-91332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91333/", + "id": 91333, + "name": "Vince Belgard", + "site_detail_url": "https://comicvine.gamespot.com/vince-belgard/4005-91333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91334/", + "id": 91334, + "name": "Professor Lawson", + "site_detail_url": "https://comicvine.gamespot.com/professor-lawson/4005-91334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91335/", + "id": 91335, + "name": "Orlaa", + "site_detail_url": "https://comicvine.gamespot.com/orlaa/4005-91335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91336/", + "id": 91336, + "name": "Vi", + "site_detail_url": "https://comicvine.gamespot.com/vi/4005-91336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91337/", + "id": 91337, + "name": "Marna Feigenbaum Grayson", + "site_detail_url": "https://comicvine.gamespot.com/marna-feigenbaum-grayson/4005-91337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91340/", + "id": 91340, + "name": "Thomas Whitman", + "site_detail_url": "https://comicvine.gamespot.com/thomas-whitman/4005-91340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91341/", + "id": 91341, + "name": "Jamie DeCurry", + "site_detail_url": "https://comicvine.gamespot.com/jamie-decurry/4005-91341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91342/", + "id": 91342, + "name": "Rhea", + "site_detail_url": "https://comicvine.gamespot.com/rhea/4005-91342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91345/", + "id": 91345, + "name": "The Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/the-sentinel/4005-91345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91346/", + "id": 91346, + "name": "Hal Chandler", + "site_detail_url": "https://comicvine.gamespot.com/hal-chandler/4005-91346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91350/", + "id": 91350, + "name": "Sheri Dennon", + "site_detail_url": "https://comicvine.gamespot.com/sheri-dennon/4005-91350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91351/", + "id": 91351, + "name": "Chang Li-Ten", + "site_detail_url": "https://comicvine.gamespot.com/chang-li-ten/4005-91351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91352/", + "id": 91352, + "name": "Big Roy", + "site_detail_url": "https://comicvine.gamespot.com/big-roy/4005-91352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91353/", + "id": 91353, + "name": "Indali", + "site_detail_url": "https://comicvine.gamespot.com/indali/4005-91353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91358/", + "id": 91358, + "name": "Lieutenant George Latigo", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-george-latigo/4005-91358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91360/", + "id": 91360, + "name": "Teraknid", + "site_detail_url": "https://comicvine.gamespot.com/teraknid/4005-91360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91386/", + "id": 91386, + "name": "The Mule", + "site_detail_url": "https://comicvine.gamespot.com/the-mule/4005-91386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91387/", + "id": 91387, + "name": "Frisky Martin", + "site_detail_url": "https://comicvine.gamespot.com/frisky-martin/4005-91387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91406/", + "id": 91406, + "name": "Dimitrios", + "site_detail_url": "https://comicvine.gamespot.com/dimitrios/4005-91406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91409/", + "id": 91409, + "name": "Taras Romanov", + "site_detail_url": "https://comicvine.gamespot.com/taras-romanov/4005-91409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91410/", + "id": 91410, + "name": "Charles Simpson", + "site_detail_url": "https://comicvine.gamespot.com/charles-simpson/4005-91410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91411/", + "id": 91411, + "name": "Director Arden", + "site_detail_url": "https://comicvine.gamespot.com/director-arden/4005-91411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91412/", + "id": 91412, + "name": "Texas", + "site_detail_url": "https://comicvine.gamespot.com/texas/4005-91412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91419/", + "id": 91419, + "name": "Milo Gunderson", + "site_detail_url": "https://comicvine.gamespot.com/milo-gunderson/4005-91419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91430/", + "id": 91430, + "name": "Joanie", + "site_detail_url": "https://comicvine.gamespot.com/joanie/4005-91430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91439/", + "id": 91439, + "name": "Thomas Wilson", + "site_detail_url": "https://comicvine.gamespot.com/thomas-wilson/4005-91439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91453/", + "id": 91453, + "name": "Tyrus the Terrible", + "site_detail_url": "https://comicvine.gamespot.com/tyrus-the-terrible/4005-91453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91457/", + "id": 91457, + "name": "Hongdo Park", + "site_detail_url": "https://comicvine.gamespot.com/hongdo-park/4005-91457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91458/", + "id": 91458, + "name": "Jin Taiko", + "site_detail_url": "https://comicvine.gamespot.com/jin-taiko/4005-91458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91487/", + "id": 91487, + "name": "Sentry #666", + "site_detail_url": "https://comicvine.gamespot.com/sentry-666/4005-91487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91489/", + "id": 91489, + "name": "Jeff Turner", + "site_detail_url": "https://comicvine.gamespot.com/jeff-turner/4005-91489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91490/", + "id": 91490, + "name": "Ann Farrow Reynolds", + "site_detail_url": "https://comicvine.gamespot.com/ann-farrow-reynolds/4005-91490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91498/", + "id": 91498, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4005-91498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91501/", + "id": 91501, + "name": "Abby-L", + "site_detail_url": "https://comicvine.gamespot.com/abby-l/4005-91501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91508/", + "id": 91508, + "name": "Darius Giacomo", + "site_detail_url": "https://comicvine.gamespot.com/darius-giacomo/4005-91508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91509/", + "id": 91509, + "name": "Austin Cao", + "site_detail_url": "https://comicvine.gamespot.com/austin-cao/4005-91509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91510/", + "id": 91510, + "name": "Mr. Randall", + "site_detail_url": "https://comicvine.gamespot.com/mr-randall/4005-91510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91511/", + "id": 91511, + "name": "Mr. Zachary", + "site_detail_url": "https://comicvine.gamespot.com/mr-zachary/4005-91511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91512/", + "id": 91512, + "name": "Dina", + "site_detail_url": "https://comicvine.gamespot.com/dina/4005-91512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91518/", + "id": 91518, + "name": "Hamand", + "site_detail_url": "https://comicvine.gamespot.com/hamand/4005-91518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91520/", + "id": 91520, + "name": "Able-Bodied Assassin", + "site_detail_url": "https://comicvine.gamespot.com/able-bodied-assassin/4005-91520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91521/", + "id": 91521, + "name": "Atomic Lou", + "site_detail_url": "https://comicvine.gamespot.com/atomic-lou/4005-91521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91522/", + "id": 91522, + "name": "Crimesaurus Rex", + "site_detail_url": "https://comicvine.gamespot.com/crimesaurus-rex/4005-91522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91523/", + "id": 91523, + "name": "Fisticuff-Woman", + "site_detail_url": "https://comicvine.gamespot.com/fisticuff-woman/4005-91523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91540/", + "id": 91540, + "name": "Hal McGee", + "site_detail_url": "https://comicvine.gamespot.com/hal-mcgee/4005-91540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91541/", + "id": 91541, + "name": "Hal Goldman", + "site_detail_url": "https://comicvine.gamespot.com/hal-goldman/4005-91541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91542/", + "id": 91542, + "name": "Raymond Trask", + "site_detail_url": "https://comicvine.gamespot.com/raymond-trask/4005-91542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91545/", + "id": 91545, + "name": "The Celestial Gardener", + "site_detail_url": "https://comicvine.gamespot.com/the-celestial-gardener/4005-91545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91546/", + "id": 91546, + "name": "Dr. Nigel Donlevy", + "site_detail_url": "https://comicvine.gamespot.com/dr-nigel-donlevy/4005-91546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91547/", + "id": 91547, + "name": "The Acrobat", + "site_detail_url": "https://comicvine.gamespot.com/the-acrobat/4005-91547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91548/", + "id": 91548, + "name": "Cynthia Adams", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-adams/4005-91548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91549/", + "id": 91549, + "name": "Professor Zunbar", + "site_detail_url": "https://comicvine.gamespot.com/professor-zunbar/4005-91549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91550/", + "id": 91550, + "name": "Elmer", + "site_detail_url": "https://comicvine.gamespot.com/elmer/4005-91550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91551/", + "id": 91551, + "name": "Murdoch Adams", + "site_detail_url": "https://comicvine.gamespot.com/murdoch-adams/4005-91551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91552/", + "id": 91552, + "name": "Saudia Yamal", + "site_detail_url": "https://comicvine.gamespot.com/saudia-yamal/4005-91552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91553/", + "id": 91553, + "name": "Adder", + "site_detail_url": "https://comicvine.gamespot.com/adder/4005-91553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91554/", + "id": 91554, + "name": "Linda Fong", + "site_detail_url": "https://comicvine.gamespot.com/linda-fong/4005-91554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91555/", + "id": 91555, + "name": "Admiral Ellis", + "site_detail_url": "https://comicvine.gamespot.com/admiral-ellis/4005-91555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91556/", + "id": 91556, + "name": "Skreamer", + "site_detail_url": "https://comicvine.gamespot.com/skreamer/4005-91556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91564/", + "id": 91564, + "name": "White Zero", + "site_detail_url": "https://comicvine.gamespot.com/white-zero/4005-91564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91567/", + "id": 91567, + "name": "Aerie", + "site_detail_url": "https://comicvine.gamespot.com/aerie/4005-91567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91568/", + "id": 91568, + "name": "Aquan", + "site_detail_url": "https://comicvine.gamespot.com/aquan/4005-91568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91569/", + "id": 91569, + "name": "Bemm", + "site_detail_url": "https://comicvine.gamespot.com/bemm/4005-91569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91570/", + "id": 91570, + "name": "F'leet", + "site_detail_url": "https://comicvine.gamespot.com/fleet/4005-91570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91571/", + "id": 91571, + "name": "Foxeye", + "site_detail_url": "https://comicvine.gamespot.com/foxeye/4005-91571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91572/", + "id": 91572, + "name": "Gormada", + "site_detail_url": "https://comicvine.gamespot.com/gormada/4005-91572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91573/", + "id": 91573, + "name": "Khamuui", + "site_detail_url": "https://comicvine.gamespot.com/khamuui/4005-91573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91574/", + "id": 91574, + "name": "Kwill", + "site_detail_url": "https://comicvine.gamespot.com/kwill/4005-91574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91575/", + "id": 91575, + "name": "Nyteflyt", + "site_detail_url": "https://comicvine.gamespot.com/nyteflyt/4005-91575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91577/", + "id": 91577, + "name": "Stummp", + "site_detail_url": "https://comicvine.gamespot.com/stummp/4005-91577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91596/", + "id": 91596, + "name": "Relf", + "site_detail_url": "https://comicvine.gamespot.com/relf/4005-91596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91597/", + "id": 91597, + "name": "Time Agent", + "site_detail_url": "https://comicvine.gamespot.com/time-agent/4005-91597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91598/", + "id": 91598, + "name": "Banshee", + "site_detail_url": "https://comicvine.gamespot.com/banshee/4005-91598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91600/", + "id": 91600, + "name": "Augullux the Brave", + "site_detail_url": "https://comicvine.gamespot.com/augullux-the-brave/4005-91600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91602/", + "id": 91602, + "name": "Christina Natchios", + "site_detail_url": "https://comicvine.gamespot.com/christina-natchios/4005-91602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91603/", + "id": 91603, + "name": "Agamemnon", + "site_detail_url": "https://comicvine.gamespot.com/agamemnon/4005-91603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91605/", + "id": 91605, + "name": "Agathon", + "site_detail_url": "https://comicvine.gamespot.com/agathon/4005-91605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91606/", + "id": 91606, + "name": "Xotai", + "site_detail_url": "https://comicvine.gamespot.com/xotai/4005-91606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91607/", + "id": 91607, + "name": "Roger Juniper", + "site_detail_url": "https://comicvine.gamespot.com/roger-juniper/4005-91607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91608/", + "id": 91608, + "name": "Dr. Julianne Quinn", + "site_detail_url": "https://comicvine.gamespot.com/dr-julianne-quinn/4005-91608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91609/", + "id": 91609, + "name": "Judith Klemmer", + "site_detail_url": "https://comicvine.gamespot.com/judith-klemmer/4005-91609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91610/", + "id": 91610, + "name": "Dreamstalker", + "site_detail_url": "https://comicvine.gamespot.com/dreamstalker/4005-91610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91611/", + "id": 91611, + "name": "Agent Coville", + "site_detail_url": "https://comicvine.gamespot.com/agent-coville/4005-91611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91612/", + "id": 91612, + "name": "Agent Crock", + "site_detail_url": "https://comicvine.gamespot.com/agent-crock/4005-91612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91613/", + "id": 91613, + "name": "Agent Farber", + "site_detail_url": "https://comicvine.gamespot.com/agent-farber/4005-91613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91614/", + "id": 91614, + "name": "Tree-Creature", + "site_detail_url": "https://comicvine.gamespot.com/tree-creature/4005-91614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91615/", + "id": 91615, + "name": "Agent Lindsay", + "site_detail_url": "https://comicvine.gamespot.com/agent-lindsay/4005-91615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91629/", + "id": 91629, + "name": "Great Beast of Pol", + "site_detail_url": "https://comicvine.gamespot.com/great-beast-of-pol/4005-91629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91630/", + "id": 91630, + "name": "K'eel", + "site_detail_url": "https://comicvine.gamespot.com/keel/4005-91630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91631/", + "id": 91631, + "name": "Kirren", + "site_detail_url": "https://comicvine.gamespot.com/kirren/4005-91631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91632/", + "id": 91632, + "name": "Kiru", + "site_detail_url": "https://comicvine.gamespot.com/kiru/4005-91632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91633/", + "id": 91633, + "name": "Rhena", + "site_detail_url": "https://comicvine.gamespot.com/rhena/4005-91633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91634/", + "id": 91634, + "name": "Sanno", + "site_detail_url": "https://comicvine.gamespot.com/sanno/4005-91634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91635/", + "id": 91635, + "name": "Tolos", + "site_detail_url": "https://comicvine.gamespot.com/tolos/4005-91635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91637/", + "id": 91637, + "name": "Toe Jam Tortellini", + "site_detail_url": "https://comicvine.gamespot.com/toe-jam-tortellini/4005-91637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91644/", + "id": 91644, + "name": "Agent Orange", + "site_detail_url": "https://comicvine.gamespot.com/agent-orange/4005-91644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91645/", + "id": 91645, + "name": "Amy Quakton", + "site_detail_url": "https://comicvine.gamespot.com/amy-quakton/4005-91645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91646/", + "id": 91646, + "name": "Ducktor Strange", + "site_detail_url": "https://comicvine.gamespot.com/ducktor-strange/4005-91646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91647/", + "id": 91647, + "name": "Aguila", + "site_detail_url": "https://comicvine.gamespot.com/aguila/4005-91647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91655/", + "id": 91655, + "name": "Wendy Kawasaki", + "site_detail_url": "https://comicvine.gamespot.com/wendy-kawasaki/4005-91655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91656/", + "id": 91656, + "name": "Marina Renner", + "site_detail_url": "https://comicvine.gamespot.com/marina-renner/4005-91656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91657/", + "id": 91657, + "name": "Kit Renner", + "site_detail_url": "https://comicvine.gamespot.com/kit-renner/4005-91657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91660/", + "id": 91660, + "name": "Six-Fingered Soapy", + "site_detail_url": "https://comicvine.gamespot.com/six-fingered-soapy/4005-91660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91661/", + "id": 91661, + "name": "Big Pearl", + "site_detail_url": "https://comicvine.gamespot.com/big-pearl/4005-91661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91662/", + "id": 91662, + "name": "Honeypot May", + "site_detail_url": "https://comicvine.gamespot.com/honeypot-may/4005-91662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91663/", + "id": 91663, + "name": "Pete the Pygmy", + "site_detail_url": "https://comicvine.gamespot.com/pete-the-pygmy/4005-91663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91665/", + "id": 91665, + "name": "Comfort", + "site_detail_url": "https://comicvine.gamespot.com/comfort/4005-91665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91666/", + "id": 91666, + "name": "Pottratz", + "site_detail_url": "https://comicvine.gamespot.com/pottratz/4005-91666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91667/", + "id": 91667, + "name": "Overfield", + "site_detail_url": "https://comicvine.gamespot.com/overfield/4005-91667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91668/", + "id": 91668, + "name": "Binderup", + "site_detail_url": "https://comicvine.gamespot.com/binderup/4005-91668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91669/", + "id": 91669, + "name": "Klein", + "site_detail_url": "https://comicvine.gamespot.com/klein/4005-91669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91670/", + "id": 91670, + "name": "Devil's Heart", + "site_detail_url": "https://comicvine.gamespot.com/devils-heart/4005-91670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91671/", + "id": 91671, + "name": "Air-Walker Prototype", + "site_detail_url": "https://comicvine.gamespot.com/air-walker-prototype/4005-91671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91673/", + "id": 91673, + "name": "Dr. Jonothon Cayre", + "site_detail_url": "https://comicvine.gamespot.com/dr-jonothon-cayre/4005-91673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91674/", + "id": 91674, + "name": "Eugene Everett", + "site_detail_url": "https://comicvine.gamespot.com/eugene-everett/4005-91674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91675/", + "id": 91675, + "name": "Sandy Aitchinson", + "site_detail_url": "https://comicvine.gamespot.com/sandy-aitchinson/4005-91675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91676/", + "id": 91676, + "name": "Monster of the Moors", + "site_detail_url": "https://comicvine.gamespot.com/monster-of-the-moors/4005-91676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91677/", + "id": 91677, + "name": "R'Shumba", + "site_detail_url": "https://comicvine.gamespot.com/rshumba/4005-91677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91707/", + "id": 91707, + "name": "Judy Parks", + "site_detail_url": "https://comicvine.gamespot.com/judy-parks/4005-91707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91713/", + "id": 91713, + "name": "Alaric", + "site_detail_url": "https://comicvine.gamespot.com/alaric/4005-91713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91714/", + "id": 91714, + "name": "L-Ro", + "site_detail_url": "https://comicvine.gamespot.com/l-ro/4005-91714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91715/", + "id": 91715, + "name": "Alberik", + "site_detail_url": "https://comicvine.gamespot.com/alberik/4005-91715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91716/", + "id": 91716, + "name": "Andrex", + "site_detail_url": "https://comicvine.gamespot.com/andrex/4005-91716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91717/", + "id": 91717, + "name": "Uncle Elmer", + "site_detail_url": "https://comicvine.gamespot.com/uncle-elmer/4005-91717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91718/", + "id": 91718, + "name": "Babob", + "site_detail_url": "https://comicvine.gamespot.com/babob/4005-91718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91719/", + "id": 91719, + "name": "Wiwarto", + "site_detail_url": "https://comicvine.gamespot.com/wiwarto/4005-91719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91727/", + "id": 91727, + "name": "Mimoza", + "site_detail_url": "https://comicvine.gamespot.com/mimoza/4005-91727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91728/", + "id": 91728, + "name": "Carlotta LaRosa", + "site_detail_url": "https://comicvine.gamespot.com/carlotta-larosa/4005-91728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91729/", + "id": 91729, + "name": "Babyface", + "site_detail_url": "https://comicvine.gamespot.com/babyface/4005-91729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91730/", + "id": 91730, + "name": "Sandy Smith", + "site_detail_url": "https://comicvine.gamespot.com/sandy-smith/4005-91730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91731/", + "id": 91731, + "name": "Monster in the Cellar", + "site_detail_url": "https://comicvine.gamespot.com/monster-in-the-cellar/4005-91731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91732/", + "id": 91732, + "name": "Barehide Kid", + "site_detail_url": "https://comicvine.gamespot.com/barehide-kid/4005-91732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91756/", + "id": 91756, + "name": "El Lobo", + "site_detail_url": "https://comicvine.gamespot.com/el-lobo/4005-91756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91759/", + "id": 91759, + "name": "Backbreaker", + "site_detail_url": "https://comicvine.gamespot.com/backbreaker/4005-91759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91761/", + "id": 91761, + "name": "Jezabel Baka", + "site_detail_url": "https://comicvine.gamespot.com/jezabel-baka/4005-91761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91762/", + "id": 91762, + "name": "Glen Baker", + "site_detail_url": "https://comicvine.gamespot.com/glen-baker/4005-91762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91763/", + "id": 91763, + "name": "Joanie Baker", + "site_detail_url": "https://comicvine.gamespot.com/joanie-baker/4005-91763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91764/", + "id": 91764, + "name": "Tom Baker", + "site_detail_url": "https://comicvine.gamespot.com/tom-baker/4005-91764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91765/", + "id": 91765, + "name": "Bala", + "site_detail_url": "https://comicvine.gamespot.com/bala/4005-91765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91766/", + "id": 91766, + "name": "Kanu", + "site_detail_url": "https://comicvine.gamespot.com/kanu/4005-91766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91767/", + "id": 91767, + "name": "King Ku", + "site_detail_url": "https://comicvine.gamespot.com/king-ku/4005-91767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91768/", + "id": 91768, + "name": "Ballz", + "site_detail_url": "https://comicvine.gamespot.com/ballz/4005-91768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91776/", + "id": 91776, + "name": "Ora", + "site_detail_url": "https://comicvine.gamespot.com/ora/4005-91776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91782/", + "id": 91782, + "name": "Ru'ach", + "site_detail_url": "https://comicvine.gamespot.com/ruach/4005-91782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91783/", + "id": 91783, + "name": "Answer", + "site_detail_url": "https://comicvine.gamespot.com/answer/4005-91783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91787/", + "id": 91787, + "name": "Tok Baltusar", + "site_detail_url": "https://comicvine.gamespot.com/tok-baltusar/4005-91787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91792/", + "id": 91792, + "name": "Discordia", + "site_detail_url": "https://comicvine.gamespot.com/discordia/4005-91792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91793/", + "id": 91793, + "name": "Tantrum", + "site_detail_url": "https://comicvine.gamespot.com/tantrum/4005-91793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91796/", + "id": 91796, + "name": "Carrie", + "site_detail_url": "https://comicvine.gamespot.com/carrie/4005-91796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91798/", + "id": 91798, + "name": "Karl Moffet", + "site_detail_url": "https://comicvine.gamespot.com/karl-moffet/4005-91798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91799/", + "id": 91799, + "name": "Principal Philbin", + "site_detail_url": "https://comicvine.gamespot.com/principal-philbin/4005-91799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91805/", + "id": 91805, + "name": "Jack Bale", + "site_detail_url": "https://comicvine.gamespot.com/jack-bale/4005-91805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91807/", + "id": 91807, + "name": "Francis Barnum", + "site_detail_url": "https://comicvine.gamespot.com/francis-barnum/4005-91807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91808/", + "id": 91808, + "name": "Percy Stevens", + "site_detail_url": "https://comicvine.gamespot.com/percy-stevens/4005-91808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91812/", + "id": 91812, + "name": "Baltag", + "site_detail_url": "https://comicvine.gamespot.com/baltag/4005-91812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91813/", + "id": 91813, + "name": "Balthar", + "site_detail_url": "https://comicvine.gamespot.com/balthar/4005-91813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91814/", + "id": 91814, + "name": "Donal Ban", + "site_detail_url": "https://comicvine.gamespot.com/donal-ban/4005-91814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91815/", + "id": 91815, + "name": "Tristum", + "site_detail_url": "https://comicvine.gamespot.com/tristum/4005-91815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91816/", + "id": 91816, + "name": "Maklin", + "site_detail_url": "https://comicvine.gamespot.com/maklin/4005-91816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91817/", + "id": 91817, + "name": "Stella", + "site_detail_url": "https://comicvine.gamespot.com/stella/4005-91817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91818/", + "id": 91818, + "name": "Yolanda", + "site_detail_url": "https://comicvine.gamespot.com/yolanda/4005-91818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91819/", + "id": 91819, + "name": "Mendes", + "site_detail_url": "https://comicvine.gamespot.com/mendes/4005-91819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91820/", + "id": 91820, + "name": "Banara", + "site_detail_url": "https://comicvine.gamespot.com/banara/4005-91820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91821/", + "id": 91821, + "name": "Charlie", + "site_detail_url": "https://comicvine.gamespot.com/charlie/4005-91821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91823/", + "id": 91823, + "name": "Bandrhude", + "site_detail_url": "https://comicvine.gamespot.com/bandrhude/4005-91823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91824/", + "id": 91824, + "name": "Rachel Palmer", + "site_detail_url": "https://comicvine.gamespot.com/rachel-palmer/4005-91824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91825/", + "id": 91825, + "name": "Minerva Bannister", + "site_detail_url": "https://comicvine.gamespot.com/minerva-bannister/4005-91825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91838/", + "id": 91838, + "name": "Amanda McGill", + "site_detail_url": "https://comicvine.gamespot.com/amanda-mcgill/4005-91838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91839/", + "id": 91839, + "name": "Kaaris'a", + "site_detail_url": "https://comicvine.gamespot.com/kaarisa/4005-91839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91840/", + "id": 91840, + "name": "Geraldo Kabal", + "site_detail_url": "https://comicvine.gamespot.com/geraldo-kabal/4005-91840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91841/", + "id": 91841, + "name": "Bullet", + "site_detail_url": "https://comicvine.gamespot.com/bullet/4005-91841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91842/", + "id": 91842, + "name": "Hans Schulmann", + "site_detail_url": "https://comicvine.gamespot.com/hans-schulmann/4005-91842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91844/", + "id": 91844, + "name": "Kabuki-Back", + "site_detail_url": "https://comicvine.gamespot.com/kabuki-back/4005-91844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91845/", + "id": 91845, + "name": "Buck Sutter", + "site_detail_url": "https://comicvine.gamespot.com/buck-sutter/4005-91845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91846/", + "id": 91846, + "name": "Kag", + "site_detail_url": "https://comicvine.gamespot.com/kag/4005-91846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91847/", + "id": 91847, + "name": "Kah-Tah-Den", + "site_detail_url": "https://comicvine.gamespot.com/kah-tah-den/4005-91847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91848/", + "id": 91848, + "name": "Kai-Ra", + "site_detail_url": "https://comicvine.gamespot.com/kai-ra/4005-91848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91849/", + "id": 91849, + "name": "Kai'tra", + "site_detail_url": "https://comicvine.gamespot.com/kaitra/4005-91849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91850/", + "id": 91850, + "name": "Kalibar", + "site_detail_url": "https://comicvine.gamespot.com/kalibar/4005-91850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91854/", + "id": 91854, + "name": "Ika", + "site_detail_url": "https://comicvine.gamespot.com/ika/4005-91854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91855/", + "id": 91855, + "name": "Shen", + "site_detail_url": "https://comicvine.gamespot.com/shen/4005-91855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91863/", + "id": 91863, + "name": "Quan-St'ar", + "site_detail_url": "https://comicvine.gamespot.com/quan-star/4005-91863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91864/", + "id": 91864, + "name": "Waxman", + "site_detail_url": "https://comicvine.gamespot.com/waxman/4005-91864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91865/", + "id": 91865, + "name": "Sally Quant", + "site_detail_url": "https://comicvine.gamespot.com/sally-quant/4005-91865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91866/", + "id": 91866, + "name": "Quantum Mechanic", + "site_detail_url": "https://comicvine.gamespot.com/quantum-mechanic/4005-91866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91867/", + "id": 91867, + "name": "Dm'yr", + "site_detail_url": "https://comicvine.gamespot.com/dmyr/4005-91867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91868/", + "id": 91868, + "name": "Gy'pl", + "site_detail_url": "https://comicvine.gamespot.com/gypl/4005-91868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91869/", + "id": 91869, + "name": "Quan-Zarr", + "site_detail_url": "https://comicvine.gamespot.com/quan-zarr/4005-91869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91870/", + "id": 91870, + "name": "My'rl", + "site_detail_url": "https://comicvine.gamespot.com/myrl/4005-91870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91871/", + "id": 91871, + "name": "Y-Gaaar", + "site_detail_url": "https://comicvine.gamespot.com/y-gaaar/4005-91871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91877/", + "id": 91877, + "name": "Quarry", + "site_detail_url": "https://comicvine.gamespot.com/quarry/4005-91877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91878/", + "id": 91878, + "name": "Crystal", + "site_detail_url": "https://comicvine.gamespot.com/crystal/4005-91878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91879/", + "id": 91879, + "name": "Hydro", + "site_detail_url": "https://comicvine.gamespot.com/hydro/4005-91879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91880/", + "id": 91880, + "name": "Ice", + "site_detail_url": "https://comicvine.gamespot.com/ice/4005-91880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91881/", + "id": 91881, + "name": "Misty", + "site_detail_url": "https://comicvine.gamespot.com/misty/4005-91881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91882/", + "id": 91882, + "name": "Vapor", + "site_detail_url": "https://comicvine.gamespot.com/vapor/4005-91882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91883/", + "id": 91883, + "name": "X-Stream", + "site_detail_url": "https://comicvine.gamespot.com/x-stream/4005-91883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91884/", + "id": 91884, + "name": "Chill", + "site_detail_url": "https://comicvine.gamespot.com/chill/4005-91884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91885/", + "id": 91885, + "name": "Doctor Decay", + "site_detail_url": "https://comicvine.gamespot.com/doctor-decay/4005-91885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91886/", + "id": 91886, + "name": "Fizz", + "site_detail_url": "https://comicvine.gamespot.com/fizz/4005-91886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91887/", + "id": 91887, + "name": "Vangaard", + "site_detail_url": "https://comicvine.gamespot.com/vangaard/4005-91887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91899/", + "id": 91899, + "name": "Tom Aldrin", + "site_detail_url": "https://comicvine.gamespot.com/tom-aldrin/4005-91899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91900/", + "id": 91900, + "name": "Alfie", + "site_detail_url": "https://comicvine.gamespot.com/alfie/4005-91900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91904/", + "id": 91904, + "name": "Algol Demonstar", + "site_detail_url": "https://comicvine.gamespot.com/algol-demonstar/4005-91904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91905/", + "id": 91905, + "name": "Philip Russell", + "site_detail_url": "https://comicvine.gamespot.com/philip-russell/4005-91905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91906/", + "id": 91906, + "name": "Algren", + "site_detail_url": "https://comicvine.gamespot.com/algren/4005-91906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91907/", + "id": 91907, + "name": "Commander Michael Baran", + "site_detail_url": "https://comicvine.gamespot.com/commander-michael-baran/4005-91907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91912/", + "id": 91912, + "name": "Bunny Brennan", + "site_detail_url": "https://comicvine.gamespot.com/bunny-brennan/4005-91912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91913/", + "id": 91913, + "name": "Lady Allana", + "site_detail_url": "https://comicvine.gamespot.com/lady-allana/4005-91913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91914/", + "id": 91914, + "name": "Lord Kharga", + "site_detail_url": "https://comicvine.gamespot.com/lord-kharga/4005-91914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91915/", + "id": 91915, + "name": "Vivalda", + "site_detail_url": "https://comicvine.gamespot.com/vivalda/4005-91915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91916/", + "id": 91916, + "name": "All-Devourer", + "site_detail_url": "https://comicvine.gamespot.com/all-devourer/4005-91916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91917/", + "id": 91917, + "name": "Robert Hanklin", + "site_detail_url": "https://comicvine.gamespot.com/robert-hanklin/4005-91917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91922/", + "id": 91922, + "name": "Vacharn", + "site_detail_url": "https://comicvine.gamespot.com/vacharn/4005-91922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91938/", + "id": 91938, + "name": "Janet", + "site_detail_url": "https://comicvine.gamespot.com/janet/4005-91938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91939/", + "id": 91939, + "name": "Susy Daley", + "site_detail_url": "https://comicvine.gamespot.com/susy-daley/4005-91939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91940/", + "id": 91940, + "name": "Gary Daley", + "site_detail_url": "https://comicvine.gamespot.com/gary-daley/4005-91940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91941/", + "id": 91941, + "name": "Lloyd Zahner", + "site_detail_url": "https://comicvine.gamespot.com/lloyd-zahner/4005-91941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91942/", + "id": 91942, + "name": "Demon", + "site_detail_url": "https://comicvine.gamespot.com/demon/4005-91942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91943/", + "id": 91943, + "name": "Jody Choate", + "site_detail_url": "https://comicvine.gamespot.com/jody-choate/4005-91943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91944/", + "id": 91944, + "name": "Wilbur Wycombe", + "site_detail_url": "https://comicvine.gamespot.com/wilbur-wycombe/4005-91944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91946/", + "id": 91946, + "name": "Joaquin Zairre", + "site_detail_url": "https://comicvine.gamespot.com/joaquin-zairre/4005-91946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91947/", + "id": 91947, + "name": "Glissem", + "site_detail_url": "https://comicvine.gamespot.com/glissem/4005-91947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91948/", + "id": 91948, + "name": "Delandra", + "site_detail_url": "https://comicvine.gamespot.com/delandra/4005-91948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91949/", + "id": 91949, + "name": "Paingloss", + "site_detail_url": "https://comicvine.gamespot.com/paingloss/4005-91949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91950/", + "id": 91950, + "name": "Wendell Marsh", + "site_detail_url": "https://comicvine.gamespot.com/wendell-marsh/4005-91950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91951/", + "id": 91951, + "name": "Argog", + "site_detail_url": "https://comicvine.gamespot.com/argog/4005-91951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91952/", + "id": 91952, + "name": "Za'ken", + "site_detail_url": "https://comicvine.gamespot.com/zaken/4005-91952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91953/", + "id": 91953, + "name": "Darius Zamora", + "site_detail_url": "https://comicvine.gamespot.com/darius-zamora/4005-91953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91954/", + "id": 91954, + "name": "Captain Quaid", + "site_detail_url": "https://comicvine.gamespot.com/captain-quaid/4005-91954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91955/", + "id": 91955, + "name": "Zalman", + "site_detail_url": "https://comicvine.gamespot.com/zalman/4005-91955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91957/", + "id": 91957, + "name": "Molly Stiles", + "site_detail_url": "https://comicvine.gamespot.com/molly-stiles/4005-91957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91959/", + "id": 91959, + "name": "Mother Matrix", + "site_detail_url": "https://comicvine.gamespot.com/mother-matrix/4005-91959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91960/", + "id": 91960, + "name": "Gordon Allsworth", + "site_detail_url": "https://comicvine.gamespot.com/gordon-allsworth/4005-91960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91961/", + "id": 91961, + "name": "Ripsaw", + "site_detail_url": "https://comicvine.gamespot.com/ripsaw/4005-91961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91965/", + "id": 91965, + "name": "Adolf Impossible", + "site_detail_url": "https://comicvine.gamespot.com/adolf-impossible/4005-91965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91974/", + "id": 91974, + "name": "Gro", + "site_detail_url": "https://comicvine.gamespot.com/gro/4005-91974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91975/", + "id": 91975, + "name": "Babu Marzouk", + "site_detail_url": "https://comicvine.gamespot.com/babu-marzouk/4005-91975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91976/", + "id": 91976, + "name": "Wyatt Sobel", + "site_detail_url": "https://comicvine.gamespot.com/wyatt-sobel/4005-91976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91977/", + "id": 91977, + "name": "Victor Infante", + "site_detail_url": "https://comicvine.gamespot.com/victor-infante/4005-91977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91980/", + "id": 91980, + "name": "Eric Bondi", + "site_detail_url": "https://comicvine.gamespot.com/eric-bondi/4005-91980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91981/", + "id": 91981, + "name": "Brooke Douglas", + "site_detail_url": "https://comicvine.gamespot.com/brooke-douglas/4005-91981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91983/", + "id": 91983, + "name": "Melanie Ridgway", + "site_detail_url": "https://comicvine.gamespot.com/melanie-ridgway/4005-91983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91984/", + "id": 91984, + "name": "Repulsor", + "site_detail_url": "https://comicvine.gamespot.com/repulsor/4005-91984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91985/", + "id": 91985, + "name": "Butler", + "site_detail_url": "https://comicvine.gamespot.com/butler/4005-91985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91987/", + "id": 91987, + "name": "Neron-Alak", + "site_detail_url": "https://comicvine.gamespot.com/neron-alak/4005-91987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91988/", + "id": 91988, + "name": "Nekal-Gehep", + "site_detail_url": "https://comicvine.gamespot.com/nekal-gehep/4005-91988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91989/", + "id": 91989, + "name": "Nedia", + "site_detail_url": "https://comicvine.gamespot.com/nedia/4005-91989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91990/", + "id": 91990, + "name": "Angelica Neal", + "site_detail_url": "https://comicvine.gamespot.com/angelica-neal/4005-91990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91995/", + "id": 91995, + "name": "Stan Collins", + "site_detail_url": "https://comicvine.gamespot.com/stan-collins/4005-91995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91998/", + "id": 91998, + "name": "Lauren Singh", + "site_detail_url": "https://comicvine.gamespot.com/lauren-singh/4005-91998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92009/", + "id": 92009, + "name": "Maaboo", + "site_detail_url": "https://comicvine.gamespot.com/maaboo/4005-92009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92015/", + "id": 92015, + "name": "Black Jamie MacAwber", + "site_detail_url": "https://comicvine.gamespot.com/black-jamie-macawber/4005-92015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92016/", + "id": 92016, + "name": "Maccabee", + "site_detail_url": "https://comicvine.gamespot.com/maccabee/4005-92016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92021/", + "id": 92021, + "name": "Lydia McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/lydia-mckenzie/4005-92021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92025/", + "id": 92025, + "name": "Cornelius Webb", + "site_detail_url": "https://comicvine.gamespot.com/cornelius-webb/4005-92025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92026/", + "id": 92026, + "name": "Madame Jasmine", + "site_detail_url": "https://comicvine.gamespot.com/madame-jasmine/4005-92026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92027/", + "id": 92027, + "name": "Bronskon", + "site_detail_url": "https://comicvine.gamespot.com/bronskon/4005-92027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92048/", + "id": 92048, + "name": "Roz Solomon", + "site_detail_url": "https://comicvine.gamespot.com/roz-solomon/4005-92048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92049/", + "id": 92049, + "name": "Haak-Shi", + "site_detail_url": "https://comicvine.gamespot.com/haak-shi/4005-92049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92050/", + "id": 92050, + "name": "Zhadorr", + "site_detail_url": "https://comicvine.gamespot.com/zhadorr/4005-92050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92051/", + "id": 92051, + "name": "Dinah Warmflash", + "site_detail_url": "https://comicvine.gamespot.com/dinah-warmflash/4005-92051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92052/", + "id": 92052, + "name": "Montague Hale", + "site_detail_url": "https://comicvine.gamespot.com/montague-hale/4005-92052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92053/", + "id": 92053, + "name": "Ajanii Jackson", + "site_detail_url": "https://comicvine.gamespot.com/ajanii-jackson/4005-92053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92054/", + "id": 92054, + "name": "Russell Daboia", + "site_detail_url": "https://comicvine.gamespot.com/russell-daboia/4005-92054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92055/", + "id": 92055, + "name": "Lucas Green", + "site_detail_url": "https://comicvine.gamespot.com/lucas-green/4005-92055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92056/", + "id": 92056, + "name": "Elias Hargrove", + "site_detail_url": "https://comicvine.gamespot.com/elias-hargrove/4005-92056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92057/", + "id": 92057, + "name": "Harpagus", + "site_detail_url": "https://comicvine.gamespot.com/harpagus/4005-92057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92058/", + "id": 92058, + "name": "Despina Hawthorne", + "site_detail_url": "https://comicvine.gamespot.com/despina-hawthorne/4005-92058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92097/", + "id": 92097, + "name": "Lagoon Creature of Rising Sun", + "site_detail_url": "https://comicvine.gamespot.com/lagoon-creature-of-rising-sun/4005-92097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92098/", + "id": 92098, + "name": "Lalla", + "site_detail_url": "https://comicvine.gamespot.com/lalla/4005-92098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92099/", + "id": 92099, + "name": "Nick Lambert", + "site_detail_url": "https://comicvine.gamespot.com/nick-lambert/4005-92099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92100/", + "id": 92100, + "name": "Gordon Langley", + "site_detail_url": "https://comicvine.gamespot.com/gordon-langley/4005-92100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92104/", + "id": 92104, + "name": "Mark Langley", + "site_detail_url": "https://comicvine.gamespot.com/mark-langley/4005-92104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92105/", + "id": 92105, + "name": "Dominique Levant", + "site_detail_url": "https://comicvine.gamespot.com/dominique-levant/4005-92105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92106/", + "id": 92106, + "name": "Little Red", + "site_detail_url": "https://comicvine.gamespot.com/little-red/4005-92106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92107/", + "id": 92107, + "name": "Living Room", + "site_detail_url": "https://comicvine.gamespot.com/living-room/4005-92107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92108/", + "id": 92108, + "name": "Hiram Girk", + "site_detail_url": "https://comicvine.gamespot.com/hiram-girk/4005-92108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92129/", + "id": 92129, + "name": "Stone-Hand", + "site_detail_url": "https://comicvine.gamespot.com/stone-hand/4005-92129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92130/", + "id": 92130, + "name": "Horst Lederer", + "site_detail_url": "https://comicvine.gamespot.com/horst-lederer/4005-92130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92135/", + "id": 92135, + "name": "Khanata", + "site_detail_url": "https://comicvine.gamespot.com/khanata/4005-92135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92136/", + "id": 92136, + "name": "Aningan Kenojuak", + "site_detail_url": "https://comicvine.gamespot.com/aningan-kenojuak/4005-92136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92137/", + "id": 92137, + "name": "Hulk Hogan", + "site_detail_url": "https://comicvine.gamespot.com/hulk-hogan/4005-92137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92138/", + "id": 92138, + "name": "Desmond Boothroyd", + "site_detail_url": "https://comicvine.gamespot.com/desmond-boothroyd/4005-92138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92139/", + "id": 92139, + "name": "Chen K'an", + "site_detail_url": "https://comicvine.gamespot.com/chen-kan/4005-92139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92140/", + "id": 92140, + "name": "Tanakadon", + "site_detail_url": "https://comicvine.gamespot.com/tanakadon/4005-92140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92141/", + "id": 92141, + "name": "Ara Tanzerian", + "site_detail_url": "https://comicvine.gamespot.com/ara-tanzerian/4005-92141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92142/", + "id": 92142, + "name": "Tareva", + "site_detail_url": "https://comicvine.gamespot.com/tareva/4005-92142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92143/", + "id": 92143, + "name": "Identity Girl", + "site_detail_url": "https://comicvine.gamespot.com/identity-girl/4005-92143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92151/", + "id": 92151, + "name": "Extermina", + "site_detail_url": "https://comicvine.gamespot.com/extermina/4005-92151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92152/", + "id": 92152, + "name": "Extirpia", + "site_detail_url": "https://comicvine.gamespot.com/extirpia/4005-92152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92153/", + "id": 92153, + "name": "Black Brother", + "site_detail_url": "https://comicvine.gamespot.com/black-brother/4005-92153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92155/", + "id": 92155, + "name": "Rose Steadbaur", + "site_detail_url": "https://comicvine.gamespot.com/rose-steadbaur/4005-92155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92159/", + "id": 92159, + "name": "Alex Gregson", + "site_detail_url": "https://comicvine.gamespot.com/alex-gregson/4005-92159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92166/", + "id": 92166, + "name": "Christine Everhart", + "site_detail_url": "https://comicvine.gamespot.com/christine-everhart/4005-92166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92177/", + "id": 92177, + "name": "Libra", + "site_detail_url": "https://comicvine.gamespot.com/libra/4005-92177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92178/", + "id": 92178, + "name": "Devlunn", + "site_detail_url": "https://comicvine.gamespot.com/devlunn/4005-92178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92179/", + "id": 92179, + "name": "Jaddak", + "site_detail_url": "https://comicvine.gamespot.com/jaddak/4005-92179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92180/", + "id": 92180, + "name": "Sol Rosenblatt", + "site_detail_url": "https://comicvine.gamespot.com/sol-rosenblatt/4005-92180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92181/", + "id": 92181, + "name": "Tus'au", + "site_detail_url": "https://comicvine.gamespot.com/tusau/4005-92181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92182/", + "id": 92182, + "name": "Animax", + "site_detail_url": "https://comicvine.gamespot.com/animax/4005-92182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92184/", + "id": 92184, + "name": "Rabbit Stu", + "site_detail_url": "https://comicvine.gamespot.com/rabbit-stu/4005-92184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92185/", + "id": 92185, + "name": "Sergei Radek", + "site_detail_url": "https://comicvine.gamespot.com/sergei-radek/4005-92185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92186/", + "id": 92186, + "name": "Radial", + "site_detail_url": "https://comicvine.gamespot.com/radial/4005-92186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92187/", + "id": 92187, + "name": "Depresso", + "site_detail_url": "https://comicvine.gamespot.com/depresso/4005-92187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92188/", + "id": 92188, + "name": "Leafmaster", + "site_detail_url": "https://comicvine.gamespot.com/leafmaster/4005-92188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92189/", + "id": 92189, + "name": "Sneezing Louise", + "site_detail_url": "https://comicvine.gamespot.com/sneezing-louise/4005-92189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92190/", + "id": 92190, + "name": "Buggit", + "site_detail_url": "https://comicvine.gamespot.com/buggit/4005-92190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92191/", + "id": 92191, + "name": "Faye Randall", + "site_detail_url": "https://comicvine.gamespot.com/faye-randall/4005-92191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92192/", + "id": 92192, + "name": "Ratbag", + "site_detail_url": "https://comicvine.gamespot.com/ratbag/4005-92192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92193/", + "id": 92193, + "name": "Ogarth", + "site_detail_url": "https://comicvine.gamespot.com/ogarth/4005-92193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92194/", + "id": 92194, + "name": "Osprey", + "site_detail_url": "https://comicvine.gamespot.com/osprey/4005-92194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92220/", + "id": 92220, + "name": "Florence von Banger", + "site_detail_url": "https://comicvine.gamespot.com/florence-von-banger/4005-92220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92228/", + "id": 92228, + "name": "Ricky Leighton", + "site_detail_url": "https://comicvine.gamespot.com/ricky-leighton/4005-92228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92252/", + "id": 92252, + "name": "Jack O'Lantern", + "site_detail_url": "https://comicvine.gamespot.com/jack-olantern/4005-92252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92264/", + "id": 92264, + "name": "Cody Pace", + "site_detail_url": "https://comicvine.gamespot.com/cody-pace/4005-92264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92265/", + "id": 92265, + "name": "Para-Man", + "site_detail_url": "https://comicvine.gamespot.com/para-man/4005-92265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92266/", + "id": 92266, + "name": "Mia Payne", + "site_detail_url": "https://comicvine.gamespot.com/mia-payne/4005-92266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92267/", + "id": 92267, + "name": "Johnny Martin", + "site_detail_url": "https://comicvine.gamespot.com/johnny-martin/4005-92267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92268/", + "id": 92268, + "name": "Robert Wilkerson", + "site_detail_url": "https://comicvine.gamespot.com/robert-wilkerson/4005-92268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92269/", + "id": 92269, + "name": "Scott Perkins", + "site_detail_url": "https://comicvine.gamespot.com/scott-perkins/4005-92269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92270/", + "id": 92270, + "name": "Phantom Hound of Cardiff Moor", + "site_detail_url": "https://comicvine.gamespot.com/phantom-hound-of-cardiff-moor/4005-92270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92271/", + "id": 92271, + "name": "Li Ling Potter", + "site_detail_url": "https://comicvine.gamespot.com/li-ling-potter/4005-92271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92272/", + "id": 92272, + "name": "Hector Espejo", + "site_detail_url": "https://comicvine.gamespot.com/hector-espejo/4005-92272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92274/", + "id": 92274, + "name": "Barani", + "site_detail_url": "https://comicvine.gamespot.com/barani/4005-92274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92275/", + "id": 92275, + "name": "Dione", + "site_detail_url": "https://comicvine.gamespot.com/dione/4005-92275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92276/", + "id": 92276, + "name": "Margiana", + "site_detail_url": "https://comicvine.gamespot.com/margiana/4005-92276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92277/", + "id": 92277, + "name": "Andrew Davis", + "site_detail_url": "https://comicvine.gamespot.com/andrew-davis/4005-92277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92279/", + "id": 92279, + "name": "Puzzle Man", + "site_detail_url": "https://comicvine.gamespot.com/puzzle-man/4005-92279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92280/", + "id": 92280, + "name": "Pyromania", + "site_detail_url": "https://comicvine.gamespot.com/pyromania/4005-92280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92281/", + "id": 92281, + "name": "Zombie Master", + "site_detail_url": "https://comicvine.gamespot.com/zombie-master/4005-92281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92282/", + "id": 92282, + "name": "Mister Muro", + "site_detail_url": "https://comicvine.gamespot.com/mister-muro/4005-92282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92283/", + "id": 92283, + "name": "Barney Mullen", + "site_detail_url": "https://comicvine.gamespot.com/barney-mullen/4005-92283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92285/", + "id": 92285, + "name": "Ice King", + "site_detail_url": "https://comicvine.gamespot.com/ice-king/4005-92285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92286/", + "id": 92286, + "name": "Ictus the She-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/ictus-the-shewolf/4005-92286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92287/", + "id": 92287, + "name": "Traci Austin", + "site_detail_url": "https://comicvine.gamespot.com/traci-austin/4005-92287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92288/", + "id": 92288, + "name": "Dale Johnson", + "site_detail_url": "https://comicvine.gamespot.com/dale-johnson/4005-92288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92289/", + "id": 92289, + "name": "Spymaster (Lemon)", + "site_detail_url": "https://comicvine.gamespot.com/spymaster-lemon/4005-92289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92290/", + "id": 92290, + "name": "Spymaster (Abbott)", + "site_detail_url": "https://comicvine.gamespot.com/spymaster-abbott/4005-92290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92291/", + "id": 92291, + "name": "Diane Prentiss", + "site_detail_url": "https://comicvine.gamespot.com/diane-prentiss/4005-92291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92292/", + "id": 92292, + "name": "Jay Prentiss", + "site_detail_url": "https://comicvine.gamespot.com/jay-prentiss/4005-92292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92293/", + "id": 92293, + "name": "Joan Prentiss", + "site_detail_url": "https://comicvine.gamespot.com/joan-prentiss/4005-92293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92295/", + "id": 92295, + "name": "General Egeus", + "site_detail_url": "https://comicvine.gamespot.com/general-egeus/4005-92295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92303/", + "id": 92303, + "name": "Farley London", + "site_detail_url": "https://comicvine.gamespot.com/farley-london/4005-92303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92305/", + "id": 92305, + "name": "Samson Washington", + "site_detail_url": "https://comicvine.gamespot.com/samson-washington/4005-92305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92306/", + "id": 92306, + "name": "Godfried Herter", + "site_detail_url": "https://comicvine.gamespot.com/godfried-herter/4005-92306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92307/", + "id": 92307, + "name": "Roger Philips", + "site_detail_url": "https://comicvine.gamespot.com/roger-philips/4005-92307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92308/", + "id": 92308, + "name": "George Stevens", + "site_detail_url": "https://comicvine.gamespot.com/george-stevens/4005-92308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92309/", + "id": 92309, + "name": "Michael Stevens", + "site_detail_url": "https://comicvine.gamespot.com/michael-stevens/4005-92309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92312/", + "id": 92312, + "name": "Prince Colwyn", + "site_detail_url": "https://comicvine.gamespot.com/prince-colwyn/4005-92312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92313/", + "id": 92313, + "name": "Chikeko Tomomatsu", + "site_detail_url": "https://comicvine.gamespot.com/chikeko-tomomatsu/4005-92313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92314/", + "id": 92314, + "name": "Veil", + "site_detail_url": "https://comicvine.gamespot.com/veil/4005-92314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92315/", + "id": 92315, + "name": "Saberbat", + "site_detail_url": "https://comicvine.gamespot.com/saberbat/4005-92315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92316/", + "id": 92316, + "name": "Colonel Okada", + "site_detail_url": "https://comicvine.gamespot.com/colonel-okada/4005-92316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92317/", + "id": 92317, + "name": "Samisdat", + "site_detail_url": "https://comicvine.gamespot.com/samisdat/4005-92317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92318/", + "id": 92318, + "name": "Phillip DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/phillip-dewolff/4005-92318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92319/", + "id": 92319, + "name": "Adrian Sammish", + "site_detail_url": "https://comicvine.gamespot.com/adrian-sammish/4005-92319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92320/", + "id": 92320, + "name": "Orville Sanderson", + "site_detail_url": "https://comicvine.gamespot.com/orville-sanderson/4005-92320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92321/", + "id": 92321, + "name": "Philip Sanderson", + "site_detail_url": "https://comicvine.gamespot.com/philip-sanderson/4005-92321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92322/", + "id": 92322, + "name": "Rosalie Thorton", + "site_detail_url": "https://comicvine.gamespot.com/rosalie-thorton/4005-92322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92323/", + "id": 92323, + "name": "Santellio", + "site_detail_url": "https://comicvine.gamespot.com/santellio/4005-92323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92326/", + "id": 92326, + "name": "Second Story Sammy", + "site_detail_url": "https://comicvine.gamespot.com/second-story-sammy/4005-92326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92335/", + "id": 92335, + "name": "Marjorie Rifkin", + "site_detail_url": "https://comicvine.gamespot.com/marjorie-rifkin/4005-92335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92336/", + "id": 92336, + "name": "Captain Americana", + "site_detail_url": "https://comicvine.gamespot.com/captain-americana/4005-92336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92339/", + "id": 92339, + "name": "Captain Andreyivich", + "site_detail_url": "https://comicvine.gamespot.com/captain-andreyivich/4005-92339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92340/", + "id": 92340, + "name": "Marcella Carson", + "site_detail_url": "https://comicvine.gamespot.com/marcella-carson/4005-92340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92341/", + "id": 92341, + "name": "Rosella Carson", + "site_detail_url": "https://comicvine.gamespot.com/rosella-carson/4005-92341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92357/", + "id": 92357, + "name": "Lucius Farnsworth", + "site_detail_url": "https://comicvine.gamespot.com/lucius-farnsworth/4005-92357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92358/", + "id": 92358, + "name": "Vincent Farnsworth", + "site_detail_url": "https://comicvine.gamespot.com/vincent-farnsworth/4005-92358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92359/", + "id": 92359, + "name": "Viper (Murtaugh)", + "site_detail_url": "https://comicvine.gamespot.com/viper-murtaugh/4005-92359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92360/", + "id": 92360, + "name": "Feldspar", + "site_detail_url": "https://comicvine.gamespot.com/feldspar/4005-92360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92361/", + "id": 92361, + "name": "Merriwether Fenniwell", + "site_detail_url": "https://comicvine.gamespot.com/merriwether-fenniwell/4005-92361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92362/", + "id": 92362, + "name": "Eel (Lavell)", + "site_detail_url": "https://comicvine.gamespot.com/eel-lavell/4005-92362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92363/", + "id": 92363, + "name": "Figillulli", + "site_detail_url": "https://comicvine.gamespot.com/figillulli/4005-92363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92364/", + "id": 92364, + "name": "Filch", + "site_detail_url": "https://comicvine.gamespot.com/filch/4005-92364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92365/", + "id": 92365, + "name": "Michelle Fisher", + "site_detail_url": "https://comicvine.gamespot.com/michelle-fisher/4005-92365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92367/", + "id": 92367, + "name": "Don Gorman", + "site_detail_url": "https://comicvine.gamespot.com/don-gorman/4005-92367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92376/", + "id": 92376, + "name": "Tigerman", + "site_detail_url": "https://comicvine.gamespot.com/tigerman/4005-92376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92378/", + "id": 92378, + "name": "Bo's'n Mantrax", + "site_detail_url": "https://comicvine.gamespot.com/bo-s-n-mantrax/4005-92378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92379/", + "id": 92379, + "name": "Captain Styx", + "site_detail_url": "https://comicvine.gamespot.com/captain-styx/4005-92379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92381/", + "id": 92381, + "name": "Gang", + "site_detail_url": "https://comicvine.gamespot.com/gang/4005-92381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92382/", + "id": 92382, + "name": "Pom Pom", + "site_detail_url": "https://comicvine.gamespot.com/pom-pom/4005-92382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92383/", + "id": 92383, + "name": "Shri", + "site_detail_url": "https://comicvine.gamespot.com/shri/4005-92383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92384/", + "id": 92384, + "name": "Asha", + "site_detail_url": "https://comicvine.gamespot.com/asha/4005-92384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92385/", + "id": 92385, + "name": "Blocks", + "site_detail_url": "https://comicvine.gamespot.com/blocks/4005-92385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92386/", + "id": 92386, + "name": "Bull", + "site_detail_url": "https://comicvine.gamespot.com/bull/4005-92386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92387/", + "id": 92387, + "name": "Loch", + "site_detail_url": "https://comicvine.gamespot.com/loch/4005-92387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92388/", + "id": 92388, + "name": "Roger Bochs Jr.", + "site_detail_url": "https://comicvine.gamespot.com/roger-bochs-jr/4005-92388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92389/", + "id": 92389, + "name": "Nancy Ridley", + "site_detail_url": "https://comicvine.gamespot.com/nancy-ridley/4005-92389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92390/", + "id": 92390, + "name": "Yussuf Hussain", + "site_detail_url": "https://comicvine.gamespot.com/yussuf-hussain/4005-92390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92391/", + "id": 92391, + "name": "Farida Hussain", + "site_detail_url": "https://comicvine.gamespot.com/farida-hussain/4005-92391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92393/", + "id": 92393, + "name": "War-Walker Omega", + "site_detail_url": "https://comicvine.gamespot.com/warwalker-omega/4005-92393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92394/", + "id": 92394, + "name": "Water Commissioner", + "site_detail_url": "https://comicvine.gamespot.com/water-commissioner/4005-92394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92395/", + "id": 92395, + "name": "Weed", + "site_detail_url": "https://comicvine.gamespot.com/weed/4005-92395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92396/", + "id": 92396, + "name": "Tinky Weissman", + "site_detail_url": "https://comicvine.gamespot.com/tinky-weissman/4005-92396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92397/", + "id": 92397, + "name": "Kim", + "site_detail_url": "https://comicvine.gamespot.com/kim/4005-92397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92398/", + "id": 92398, + "name": "Sylvanna", + "site_detail_url": "https://comicvine.gamespot.com/sylvanna/4005-92398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92416/", + "id": 92416, + "name": "Mailliw", + "site_detail_url": "https://comicvine.gamespot.com/mailliw/4005-92416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92417/", + "id": 92417, + "name": "Trilexian Scout", + "site_detail_url": "https://comicvine.gamespot.com/trilexian-scout/4005-92417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92418/", + "id": 92418, + "name": "Gui Askran", + "site_detail_url": "https://comicvine.gamespot.com/gui-askran/4005-92418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92419/", + "id": 92419, + "name": "Gardener Jusic Lotin", + "site_detail_url": "https://comicvine.gamespot.com/gardener-jusic-lotin/4005-92419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92420/", + "id": 92420, + "name": "Engineer Briggs", + "site_detail_url": "https://comicvine.gamespot.com/engineer-briggs/4005-92420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92421/", + "id": 92421, + "name": "Science Officer Ainsworth", + "site_detail_url": "https://comicvine.gamespot.com/science-officer-ainsworth/4005-92421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92423/", + "id": 92423, + "name": "Sol", + "site_detail_url": "https://comicvine.gamespot.com/sol/4005-92423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92431/", + "id": 92431, + "name": "Ma", + "site_detail_url": "https://comicvine.gamespot.com/ma/4005-92431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92464/", + "id": 92464, + "name": "Krru", + "site_detail_url": "https://comicvine.gamespot.com/krru/4005-92464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92476/", + "id": 92476, + "name": "Anita Alomii", + "site_detail_url": "https://comicvine.gamespot.com/anita-alomii/4005-92476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92477/", + "id": 92477, + "name": "Lady Alophic", + "site_detail_url": "https://comicvine.gamespot.com/lady-alophic/4005-92477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92478/", + "id": 92478, + "name": "Dread", + "site_detail_url": "https://comicvine.gamespot.com/dread/4005-92478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92479/", + "id": 92479, + "name": "Amalga-Beast", + "site_detail_url": "https://comicvine.gamespot.com/amalga-beast/4005-92479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92480/", + "id": 92480, + "name": "Ambassador Catarino", + "site_detail_url": "https://comicvine.gamespot.com/ambassador-catarino/4005-92480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92481/", + "id": 92481, + "name": "Ambassador Gregorovich", + "site_detail_url": "https://comicvine.gamespot.com/ambassador-gregorovich/4005-92481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92482/", + "id": 92482, + "name": "Ambassador Ling", + "site_detail_url": "https://comicvine.gamespot.com/ambassador-ling/4005-92482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92483/", + "id": 92483, + "name": "Ambrose the Ape", + "site_detail_url": "https://comicvine.gamespot.com/ambrose-the-ape/4005-92483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92484/", + "id": 92484, + "name": "Penelope Parsons", + "site_detail_url": "https://comicvine.gamespot.com/penelope-parsons/4005-92484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92491/", + "id": 92491, + "name": "Sally Fortune", + "site_detail_url": "https://comicvine.gamespot.com/sally-fortune/4005-92491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92492/", + "id": 92492, + "name": "Snugg", + "site_detail_url": "https://comicvine.gamespot.com/snugg/4005-92492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92496/", + "id": 92496, + "name": "Lorraine the Ghost", + "site_detail_url": "https://comicvine.gamespot.com/lorraine-the-ghost/4005-92496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92497/", + "id": 92497, + "name": "Cecil Anad", + "site_detail_url": "https://comicvine.gamespot.com/cecil-anad/4005-92497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92498/", + "id": 92498, + "name": "Snaarl", + "site_detail_url": "https://comicvine.gamespot.com/snaarl/4005-92498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92499/", + "id": 92499, + "name": "Valdar Ahd", + "site_detail_url": "https://comicvine.gamespot.com/valdar-ahd/4005-92499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92505/", + "id": 92505, + "name": "Colossus", + "site_detail_url": "https://comicvine.gamespot.com/colossus/4005-92505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92509/", + "id": 92509, + "name": "Death Tiger", + "site_detail_url": "https://comicvine.gamespot.com/death-tiger/4005-92509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92520/", + "id": 92520, + "name": "Ant-Man (Rann)", + "site_detail_url": "https://comicvine.gamespot.com/antman-rann/4005-92520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92521/", + "id": 92521, + "name": "Sumo", + "site_detail_url": "https://comicvine.gamespot.com/sumo/4005-92521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92526/", + "id": 92526, + "name": "Malachon", + "site_detail_url": "https://comicvine.gamespot.com/malachon/4005-92526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92527/", + "id": 92527, + "name": "Bekk", + "site_detail_url": "https://comicvine.gamespot.com/bekk/4005-92527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92528/", + "id": 92528, + "name": "Heyatt", + "site_detail_url": "https://comicvine.gamespot.com/heyatt/4005-92528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92529/", + "id": 92529, + "name": "Ranilla", + "site_detail_url": "https://comicvine.gamespot.com/ranilla/4005-92529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92530/", + "id": 92530, + "name": "Minay", + "site_detail_url": "https://comicvine.gamespot.com/minay/4005-92530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92531/", + "id": 92531, + "name": "James Priest", + "site_detail_url": "https://comicvine.gamespot.com/james-priest/4005-92531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92540/", + "id": 92540, + "name": "Michael Shauneghann", + "site_detail_url": "https://comicvine.gamespot.com/michael-shauneghann/4005-92540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92541/", + "id": 92541, + "name": "Sasha Yamir", + "site_detail_url": "https://comicvine.gamespot.com/sasha-yamir/4005-92541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92542/", + "id": 92542, + "name": "Li Muan Ho", + "site_detail_url": "https://comicvine.gamespot.com/li-muan-ho/4005-92542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92543/", + "id": 92543, + "name": "Omar Barreños", + "site_detail_url": "https://comicvine.gamespot.com/omar-barrenos/4005-92543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92548/", + "id": 92548, + "name": "The Grand Inquisitor ", + "site_detail_url": "https://comicvine.gamespot.com/the-grand-inquisitor/4005-92548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92561/", + "id": 92561, + "name": "Doc", + "site_detail_url": "https://comicvine.gamespot.com/doc/4005-92561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92562/", + "id": 92562, + "name": "Tiny", + "site_detail_url": "https://comicvine.gamespot.com/tiny/4005-92562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92563/", + "id": 92563, + "name": "Vince", + "site_detail_url": "https://comicvine.gamespot.com/vince/4005-92563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92564/", + "id": 92564, + "name": "Vicki", + "site_detail_url": "https://comicvine.gamespot.com/vicki/4005-92564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92565/", + "id": 92565, + "name": "Dave", + "site_detail_url": "https://comicvine.gamespot.com/dave/4005-92565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92566/", + "id": 92566, + "name": "Sasha", + "site_detail_url": "https://comicvine.gamespot.com/sasha/4005-92566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92567/", + "id": 92567, + "name": "Rick", + "site_detail_url": "https://comicvine.gamespot.com/rick/4005-92567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92568/", + "id": 92568, + "name": "Anna Romanova", + "site_detail_url": "https://comicvine.gamespot.com/anna-romanova/4005-92568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92571/", + "id": 92571, + "name": "Ex Nihila", + "site_detail_url": "https://comicvine.gamespot.com/ex-nihila/4005-92571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92572/", + "id": 92572, + "name": "Jerran Ko", + "site_detail_url": "https://comicvine.gamespot.com/jerran-ko/4005-92572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92607/", + "id": 92607, + "name": "Al Shaitan", + "site_detail_url": "https://comicvine.gamespot.com/al-shaitan/4005-92607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92610/", + "id": 92610, + "name": "Anakalak", + "site_detail_url": "https://comicvine.gamespot.com/anakalak/4005-92610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92620/", + "id": 92620, + "name": "Thane", + "site_detail_url": "https://comicvine.gamespot.com/thane/4005-92620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92633/", + "id": 92633, + "name": "Santi Sardina", + "site_detail_url": "https://comicvine.gamespot.com/santi-sardina/4005-92633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92634/", + "id": 92634, + "name": "The Sixth Light", + "site_detail_url": "https://comicvine.gamespot.com/the-sixth-light/4005-92634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92680/", + "id": 92680, + "name": "Michael Peterson", + "site_detail_url": "https://comicvine.gamespot.com/michael-peterson/4005-92680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92691/", + "id": 92691, + "name": "Jet Headstrong", + "site_detail_url": "https://comicvine.gamespot.com/jet-headstrong/4005-92691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92692/", + "id": 92692, + "name": "Buzzsaw Girl", + "site_detail_url": "https://comicvine.gamespot.com/buzzsaw-girl/4005-92692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92693/", + "id": 92693, + "name": "Ms. Megawatt", + "site_detail_url": "https://comicvine.gamespot.com/ms-megawatt/4005-92693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92694/", + "id": 92694, + "name": "Toolbox", + "site_detail_url": "https://comicvine.gamespot.com/toolbox/4005-92694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92695/", + "id": 92695, + "name": "Monkey Kid", + "site_detail_url": "https://comicvine.gamespot.com/monkey-kid/4005-92695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92696/", + "id": 92696, + "name": "Radium Dog", + "site_detail_url": "https://comicvine.gamespot.com/radium-dog/4005-92696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92705/", + "id": 92705, + "name": "Doctor Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/doctor-mayhem/4005-92705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92706/", + "id": 92706, + "name": "Atom Ed", + "site_detail_url": "https://comicvine.gamespot.com/atom-ed/4005-92706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92720/", + "id": 92720, + "name": "Arthur Vanko", + "site_detail_url": "https://comicvine.gamespot.com/arthur-vanko/4005-92720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92737/", + "id": 92737, + "name": "Kaldera", + "site_detail_url": "https://comicvine.gamespot.com/kaldera/4005-92737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92749/", + "id": 92749, + "name": "Negative Forbush Man", + "site_detail_url": "https://comicvine.gamespot.com/negative-forbush-man/4005-92749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92750/", + "id": 92750, + "name": "Angel of Death", + "site_detail_url": "https://comicvine.gamespot.com/angel-of-death/4005-92750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92753/", + "id": 92753, + "name": "Corporal Animal", + "site_detail_url": "https://comicvine.gamespot.com/corporal-animal/4005-92753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92765/", + "id": 92765, + "name": "Jerry Dennis", + "site_detail_url": "https://comicvine.gamespot.com/jerry-dennis/4005-92765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92767/", + "id": 92767, + "name": "Alex Shapiro", + "site_detail_url": "https://comicvine.gamespot.com/alex-shapiro/4005-92767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92768/", + "id": 92768, + "name": "Alberto Benedetti", + "site_detail_url": "https://comicvine.gamespot.com/alberto-benedetti/4005-92768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92769/", + "id": 92769, + "name": "Lisa Santos", + "site_detail_url": "https://comicvine.gamespot.com/lisa-santos/4005-92769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92771/", + "id": 92771, + "name": "Norman Turalt", + "site_detail_url": "https://comicvine.gamespot.com/norman-turalt/4005-92771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92772/", + "id": 92772, + "name": "Quasar the Future Man", + "site_detail_url": "https://comicvine.gamespot.com/quasar-the-future-man/4005-92772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92773/", + "id": 92773, + "name": "Detective Dan Fowler", + "site_detail_url": "https://comicvine.gamespot.com/detective-dan-fowler/4005-92773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92774/", + "id": 92774, + "name": "Dr. Kurarkill", + "site_detail_url": "https://comicvine.gamespot.com/dr-kurarkill/4005-92774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92775/", + "id": 92775, + "name": "Lyca", + "site_detail_url": "https://comicvine.gamespot.com/lyca/4005-92775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92776/", + "id": 92776, + "name": "Queen Fria", + "site_detail_url": "https://comicvine.gamespot.com/queen-fria/4005-92776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92818/", + "id": 92818, + "name": "Dempsey", + "site_detail_url": "https://comicvine.gamespot.com/dempsey/4005-92818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92857/", + "id": 92857, + "name": "Andar of Bezfarda", + "site_detail_url": "https://comicvine.gamespot.com/andar-of-bezfarda/4005-92857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92858/", + "id": 92858, + "name": "Ms. Andreyko", + "site_detail_url": "https://comicvine.gamespot.com/ms-andreyko/4005-92858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92860/", + "id": 92860, + "name": "Anqi Sheng", + "site_detail_url": "https://comicvine.gamespot.com/anqi-sheng/4005-92860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92861/", + "id": 92861, + "name": "Arnold Ansen", + "site_detail_url": "https://comicvine.gamespot.com/arnold-ansen/4005-92861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92862/", + "id": 92862, + "name": "Anskar", + "site_detail_url": "https://comicvine.gamespot.com/anskar/4005-92862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92886/", + "id": 92886, + "name": "Demona", + "site_detail_url": "https://comicvine.gamespot.com/demona/4005-92886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92887/", + "id": 92887, + "name": "Pan", + "site_detail_url": "https://comicvine.gamespot.com/pan/4005-92887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92888/", + "id": 92888, + "name": "Morg", + "site_detail_url": "https://comicvine.gamespot.com/morg/4005-92888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92898/", + "id": 92898, + "name": "David Jude", + "site_detail_url": "https://comicvine.gamespot.com/david-jude/4005-92898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92932/", + "id": 92932, + "name": "Female Doombot", + "site_detail_url": "https://comicvine.gamespot.com/female-doombot/4005-92932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92940/", + "id": 92940, + "name": "General McGinty", + "site_detail_url": "https://comicvine.gamespot.com/general-mcginty/4005-92940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92942/", + "id": 92942, + "name": "Atra", + "site_detail_url": "https://comicvine.gamespot.com/atra/4005-92942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92943/", + "id": 92943, + "name": "Antilla", + "site_detail_url": "https://comicvine.gamespot.com/antilla/4005-92943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92944/", + "id": 92944, + "name": "Phraug", + "site_detail_url": "https://comicvine.gamespot.com/phraug/4005-92944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92945/", + "id": 92945, + "name": "Nolem", + "site_detail_url": "https://comicvine.gamespot.com/nolem/4005-92945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92971/", + "id": 92971, + "name": "Emerich Fabius", + "site_detail_url": "https://comicvine.gamespot.com/emerich-fabius/4005-92971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92972/", + "id": 92972, + "name": "Duncan Sloan", + "site_detail_url": "https://comicvine.gamespot.com/duncan-sloan/4005-92972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92983/", + "id": 92983, + "name": "Dean Haddad", + "site_detail_url": "https://comicvine.gamespot.com/dean-haddad/4005-92983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92984/", + "id": 92984, + "name": "Jeffrey Haight", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-haight/4005-92984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92985/", + "id": 92985, + "name": "Hak-Heru", + "site_detail_url": "https://comicvine.gamespot.com/hak-heru/4005-92985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92986/", + "id": 92986, + "name": "Hakeldama", + "site_detail_url": "https://comicvine.gamespot.com/hakeldama/4005-92986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92987/", + "id": 92987, + "name": "Calvin Halderman", + "site_detail_url": "https://comicvine.gamespot.com/calvin-halderman/4005-92987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92988/", + "id": 92988, + "name": "Ralph Halley", + "site_detail_url": "https://comicvine.gamespot.com/ralph-halley/4005-92988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92998/", + "id": 92998, + "name": "Kurt Hammer", + "site_detail_url": "https://comicvine.gamespot.com/kurt-hammer/4005-92998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-92999/", + "id": 92999, + "name": "Eallal", + "site_detail_url": "https://comicvine.gamespot.com/eallal/4005-92999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93000/", + "id": 93000, + "name": "Earl of Darwell", + "site_detail_url": "https://comicvine.gamespot.com/earl-of-darwell/4005-93000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93003/", + "id": 93003, + "name": "Richard Easton", + "site_detail_url": "https://comicvine.gamespot.com/richard-easton/4005-93003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93004/", + "id": 93004, + "name": "Drone R-11", + "site_detail_url": "https://comicvine.gamespot.com/drone-r11/4005-93004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93007/", + "id": 93007, + "name": "Mona", + "site_detail_url": "https://comicvine.gamespot.com/mona/4005-93007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93008/", + "id": 93008, + "name": "Suzy Berengetti", + "site_detail_url": "https://comicvine.gamespot.com/suzy-berengetti/4005-93008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93013/", + "id": 93013, + "name": "Kymera", + "site_detail_url": "https://comicvine.gamespot.com/kymera/4005-93013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93016/", + "id": 93016, + "name": "Sam Striker", + "site_detail_url": "https://comicvine.gamespot.com/sam-striker/4005-93016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93018/", + "id": 93018, + "name": "Sergi", + "site_detail_url": "https://comicvine.gamespot.com/sergi/4005-93018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93020/", + "id": 93020, + "name": "Captain Oakland", + "site_detail_url": "https://comicvine.gamespot.com/captain-oakland/4005-93020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93021/", + "id": 93021, + "name": "Randy Oberlin", + "site_detail_url": "https://comicvine.gamespot.com/randy-oberlin/4005-93021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93043/", + "id": 93043, + "name": "Pyscatos", + "site_detail_url": "https://comicvine.gamespot.com/pyscatos/4005-93043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93044/", + "id": 93044, + "name": "Jhandark", + "site_detail_url": "https://comicvine.gamespot.com/jhandark/4005-93044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93045/", + "id": 93045, + "name": "Bekkit", + "site_detail_url": "https://comicvine.gamespot.com/bekkit/4005-93045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93046/", + "id": 93046, + "name": "Aurwel", + "site_detail_url": "https://comicvine.gamespot.com/aurwel/4005-93046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93047/", + "id": 93047, + "name": "Balaal", + "site_detail_url": "https://comicvine.gamespot.com/balaal/4005-93047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93048/", + "id": 93048, + "name": "Ossem", + "site_detail_url": "https://comicvine.gamespot.com/ossem/4005-93048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93049/", + "id": 93049, + "name": "Trittex", + "site_detail_url": "https://comicvine.gamespot.com/trittex/4005-93049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93050/", + "id": 93050, + "name": "Llyna", + "site_detail_url": "https://comicvine.gamespot.com/llyna/4005-93050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93058/", + "id": 93058, + "name": "Mr. Cloot", + "site_detail_url": "https://comicvine.gamespot.com/mr-cloot/4005-93058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93059/", + "id": 93059, + "name": "Melody Maxwell", + "site_detail_url": "https://comicvine.gamespot.com/melody-maxwell/4005-93059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93060/", + "id": 93060, + "name": "Stalker", + "site_detail_url": "https://comicvine.gamespot.com/stalker/4005-93060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93061/", + "id": 93061, + "name": "Ramón Morales", + "site_detail_url": "https://comicvine.gamespot.com/ramon-morales/4005-93061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93071/", + "id": 93071, + "name": "Iron Nail", + "site_detail_url": "https://comicvine.gamespot.com/iron-nail/4005-93071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93075/", + "id": 93075, + "name": "Park", + "site_detail_url": "https://comicvine.gamespot.com/park/4005-93075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93076/", + "id": 93076, + "name": "K'rin", + "site_detail_url": "https://comicvine.gamespot.com/krin/4005-93076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93078/", + "id": 93078, + "name": "Lady Waziria", + "site_detail_url": "https://comicvine.gamespot.com/lady-waziria/4005-93078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93079/", + "id": 93079, + "name": "Ud", + "site_detail_url": "https://comicvine.gamespot.com/ud/4005-93079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93080/", + "id": 93080, + "name": "Oggy", + "site_detail_url": "https://comicvine.gamespot.com/oggy/4005-93080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93081/", + "id": 93081, + "name": "Screwbeard", + "site_detail_url": "https://comicvine.gamespot.com/screwbeard/4005-93081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93082/", + "id": 93082, + "name": "Ivory Honeyshot", + "site_detail_url": "https://comicvine.gamespot.com/ivory-honeyshot/4005-93082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93089/", + "id": 93089, + "name": "Stray", + "site_detail_url": "https://comicvine.gamespot.com/stray/4005-93089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93104/", + "id": 93104, + "name": "Ren Kimura", + "site_detail_url": "https://comicvine.gamespot.com/ren-kimura/4005-93104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93114/", + "id": 93114, + "name": "Death Adder (Scott)", + "site_detail_url": "https://comicvine.gamespot.com/death-adder-scott/4005-93114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93115/", + "id": 93115, + "name": "Sidewinder (Bryan)", + "site_detail_url": "https://comicvine.gamespot.com/sidewinder-bryan/4005-93115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93123/", + "id": 93123, + "name": "Raze", + "site_detail_url": "https://comicvine.gamespot.com/raze/4005-93123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93132/", + "id": 93132, + "name": "Harrison Snow", + "site_detail_url": "https://comicvine.gamespot.com/harrison-snow/4005-93132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93136/", + "id": 93136, + "name": "Dr. Killemoff", + "site_detail_url": "https://comicvine.gamespot.com/dr-killemoff/4005-93136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93138/", + "id": 93138, + "name": "Bonehead", + "site_detail_url": "https://comicvine.gamespot.com/bonehead/4005-93138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93139/", + "id": 93139, + "name": "Psycho", + "site_detail_url": "https://comicvine.gamespot.com/psycho/4005-93139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93140/", + "id": 93140, + "name": "Mrs. Junko", + "site_detail_url": "https://comicvine.gamespot.com/mrs-junko/4005-93140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93141/", + "id": 93141, + "name": "Yvonne", + "site_detail_url": "https://comicvine.gamespot.com/yvonne/4005-93141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93143/", + "id": 93143, + "name": "Fulmina", + "site_detail_url": "https://comicvine.gamespot.com/fulmina/4005-93143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93156/", + "id": 93156, + "name": "Ioyu", + "site_detail_url": "https://comicvine.gamespot.com/ioyu/4005-93156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93157/", + "id": 93157, + "name": "Lavnic", + "site_detail_url": "https://comicvine.gamespot.com/lavnic/4005-93157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93158/", + "id": 93158, + "name": "Land Shark", + "site_detail_url": "https://comicvine.gamespot.com/land-shark/4005-93158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93159/", + "id": 93159, + "name": "Victoria Snow", + "site_detail_url": "https://comicvine.gamespot.com/victoria-snow/4005-93159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93160/", + "id": 93160, + "name": "Sentry #571", + "site_detail_url": "https://comicvine.gamespot.com/sentry-571/4005-93160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93161/", + "id": 93161, + "name": "The Critic", + "site_detail_url": "https://comicvine.gamespot.com/the-critic/4005-93161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93175/", + "id": 93175, + "name": "Warlord Supreme ", + "site_detail_url": "https://comicvine.gamespot.com/warlord-supreme/4005-93175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93187/", + "id": 93187, + "name": "Mistress Fara", + "site_detail_url": "https://comicvine.gamespot.com/mistress-fara/4005-93187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93198/", + "id": 93198, + "name": "Alice Kedzierski", + "site_detail_url": "https://comicvine.gamespot.com/alice-kedzierski/4005-93198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93200/", + "id": 93200, + "name": "K'Thron", + "site_detail_url": "https://comicvine.gamespot.com/k-thron/4005-93200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93226/", + "id": 93226, + "name": "Keitaro Ashida", + "site_detail_url": "https://comicvine.gamespot.com/keitaro-ashida/4005-93226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93242/", + "id": 93242, + "name": "The Watcher (of Deadpool)", + "site_detail_url": "https://comicvine.gamespot.com/the-watcher-of-deadpool/4005-93242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93249/", + "id": 93249, + "name": "The Other", + "site_detail_url": "https://comicvine.gamespot.com/the-other/4005-93249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93275/", + "id": 93275, + "name": "Orogo", + "site_detail_url": "https://comicvine.gamespot.com/orogo/4005-93275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93276/", + "id": 93276, + "name": "Albert Carstairs", + "site_detail_url": "https://comicvine.gamespot.com/albert-carstairs/4005-93276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93286/", + "id": 93286, + "name": "Raulex", + "site_detail_url": "https://comicvine.gamespot.com/raulex/4005-93286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93287/", + "id": 93287, + "name": "Kaseo", + "site_detail_url": "https://comicvine.gamespot.com/kaseo/4005-93287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93288/", + "id": 93288, + "name": "Swaach", + "site_detail_url": "https://comicvine.gamespot.com/swaach/4005-93288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93291/", + "id": 93291, + "name": "Brideshead", + "site_detail_url": "https://comicvine.gamespot.com/brideshead/4005-93291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93292/", + "id": 93292, + "name": "Jhen the Gammazon", + "site_detail_url": "https://comicvine.gamespot.com/jhen-the-gammazon/4005-93292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93293/", + "id": 93293, + "name": "Tachyon Torch", + "site_detail_url": "https://comicvine.gamespot.com/tachyon-torch/4005-93293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93294/", + "id": 93294, + "name": "Commander America", + "site_detail_url": "https://comicvine.gamespot.com/commander-america/4005-93294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93295/", + "id": 93295, + "name": "Irondroid", + "site_detail_url": "https://comicvine.gamespot.com/irondroid/4005-93295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93296/", + "id": 93296, + "name": "Irondroid (Hogan)", + "site_detail_url": "https://comicvine.gamespot.com/irondroid-hogan/4005-93296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93301/", + "id": 93301, + "name": "Craven One ", + "site_detail_url": "https://comicvine.gamespot.com/craven-one/4005-93301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93304/", + "id": 93304, + "name": "Sensei Attila", + "site_detail_url": "https://comicvine.gamespot.com/sensei-attila/4005-93304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93305/", + "id": 93305, + "name": "Holly Nordoff", + "site_detail_url": "https://comicvine.gamespot.com/holly-nordoff/4005-93305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93306/", + "id": 93306, + "name": "Midge Yakamura", + "site_detail_url": "https://comicvine.gamespot.com/midge-yakamura/4005-93306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93307/", + "id": 93307, + "name": "Phyllis Pollack", + "site_detail_url": "https://comicvine.gamespot.com/phyllis-pollack/4005-93307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93308/", + "id": 93308, + "name": "Ombu-Doksi", + "site_detail_url": "https://comicvine.gamespot.com/ombu-doksi/4005-93308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93309/", + "id": 93309, + "name": "Madame Fogwa", + "site_detail_url": "https://comicvine.gamespot.com/madame-fogwa/4005-93309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93311/", + "id": 93311, + "name": "Blossom", + "site_detail_url": "https://comicvine.gamespot.com/blossom/4005-93311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93312/", + "id": 93312, + "name": "Demon Of The Diamonds", + "site_detail_url": "https://comicvine.gamespot.com/demon-of-the-diamonds/4005-93312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93321/", + "id": 93321, + "name": "Philip R. Roxxon", + "site_detail_url": "https://comicvine.gamespot.com/philip-r-roxxon/4005-93321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93408/", + "id": 93408, + "name": "Ellen Barnes", + "site_detail_url": "https://comicvine.gamespot.com/ellen-barnes/4005-93408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93412/", + "id": 93412, + "name": "Udarnik", + "site_detail_url": "https://comicvine.gamespot.com/udarnik/4005-93412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93416/", + "id": 93416, + "name": "Factor-X", + "site_detail_url": "https://comicvine.gamespot.com/factor-x/4005-93416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93417/", + "id": 93417, + "name": "Servo-Robot ", + "site_detail_url": "https://comicvine.gamespot.com/servo-robot/4005-93417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93436/", + "id": 93436, + "name": "Gnome ", + "site_detail_url": "https://comicvine.gamespot.com/gnome/4005-93436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93437/", + "id": 93437, + "name": "Les ", + "site_detail_url": "https://comicvine.gamespot.com/les/4005-93437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93442/", + "id": 93442, + "name": "Lineage", + "site_detail_url": "https://comicvine.gamespot.com/lineage/4005-93442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93443/", + "id": 93443, + "name": "Carmen Nobili", + "site_detail_url": "https://comicvine.gamespot.com/carmen-nobili/4005-93443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93444/", + "id": 93444, + "name": "Joseph Nobili", + "site_detail_url": "https://comicvine.gamespot.com/joseph-nobili/4005-93444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93446/", + "id": 93446, + "name": "Sarah Garza", + "site_detail_url": "https://comicvine.gamespot.com/sarah-garza/4005-93446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93494/", + "id": 93494, + "name": "Cerexo ", + "site_detail_url": "https://comicvine.gamespot.com/cerexo/4005-93494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93538/", + "id": 93538, + "name": "Auntie Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/auntie-mayhem/4005-93538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93545/", + "id": 93545, + "name": "Dr. Raoul Stoddard ", + "site_detail_url": "https://comicvine.gamespot.com/dr-raoul-stoddard/4005-93545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93546/", + "id": 93546, + "name": "Spad McCraken ", + "site_detail_url": "https://comicvine.gamespot.com/spad-mccraken/4005-93546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93549/", + "id": 93549, + "name": "Crimson", + "site_detail_url": "https://comicvine.gamespot.com/crimson/4005-93549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93550/", + "id": 93550, + "name": "Denny Kedzierski", + "site_detail_url": "https://comicvine.gamespot.com/denny-kedzierski/4005-93550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93551/", + "id": 93551, + "name": "Haechi", + "site_detail_url": "https://comicvine.gamespot.com/haechi/4005-93551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93552/", + "id": 93552, + "name": "Hana Rhee", + "site_detail_url": "https://comicvine.gamespot.com/hana-rhee/4005-93552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93553/", + "id": 93553, + "name": "Benjamin Jones", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-jones/4005-93553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93554/", + "id": 93554, + "name": "Porcupinus", + "site_detail_url": "https://comicvine.gamespot.com/porcupinus/4005-93554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93565/", + "id": 93565, + "name": "Marie Cartier", + "site_detail_url": "https://comicvine.gamespot.com/marie-cartier/4005-93565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93566/", + "id": 93566, + "name": "Wendigo (Baptiste) ", + "site_detail_url": "https://comicvine.gamespot.com/wendigo-baptiste/4005-93566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93567/", + "id": 93567, + "name": "Wendigo (Cartier)", + "site_detail_url": "https://comicvine.gamespot.com/wendigo-cartier/4005-93567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93573/", + "id": 93573, + "name": "Gregori Kronski", + "site_detail_url": "https://comicvine.gamespot.com/gregori-kronski/4005-93573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93578/", + "id": 93578, + "name": "Electric Ghost", + "site_detail_url": "https://comicvine.gamespot.com/electric-ghost/4005-93578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93600/", + "id": 93600, + "name": "Maddy Stewart", + "site_detail_url": "https://comicvine.gamespot.com/maddy-stewart/4005-93600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93601/", + "id": 93601, + "name": "Tina Stewart", + "site_detail_url": "https://comicvine.gamespot.com/tina-stewart/4005-93601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93602/", + "id": 93602, + "name": "Andrew Jones", + "site_detail_url": "https://comicvine.gamespot.com/andrew-jones/4005-93602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93603/", + "id": 93603, + "name": "Drusilla Jones", + "site_detail_url": "https://comicvine.gamespot.com/drusilla-jones/4005-93603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93604/", + "id": 93604, + "name": "Katrina Jones", + "site_detail_url": "https://comicvine.gamespot.com/katrina-jones/4005-93604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93605/", + "id": 93605, + "name": "Phillip Jones", + "site_detail_url": "https://comicvine.gamespot.com/phillip-jones/4005-93605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93627/", + "id": 93627, + "name": "Bill Lukash", + "site_detail_url": "https://comicvine.gamespot.com/bill-lukash/4005-93627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93628/", + "id": 93628, + "name": "Monmouth", + "site_detail_url": "https://comicvine.gamespot.com/monmouth/4005-93628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93629/", + "id": 93629, + "name": "Fawkes", + "site_detail_url": "https://comicvine.gamespot.com/fawkes/4005-93629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93630/", + "id": 93630, + "name": "Brutus", + "site_detail_url": "https://comicvine.gamespot.com/brutus/4005-93630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93707/", + "id": 93707, + "name": "Dumbo", + "site_detail_url": "https://comicvine.gamespot.com/dumbo/4005-93707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93709/", + "id": 93709, + "name": "Man-Spider", + "site_detail_url": "https://comicvine.gamespot.com/man-spider/4005-93709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93710/", + "id": 93710, + "name": "Raze", + "site_detail_url": "https://comicvine.gamespot.com/raze/4005-93710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93745/", + "id": 93745, + "name": "Barmaid", + "site_detail_url": "https://comicvine.gamespot.com/barmaid/4005-93745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93746/", + "id": 93746, + "name": "Ellie", + "site_detail_url": "https://comicvine.gamespot.com/ellie/4005-93746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93748/", + "id": 93748, + "name": "Bart", + "site_detail_url": "https://comicvine.gamespot.com/bart/4005-93748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93778/", + "id": 93778, + "name": "Luther", + "site_detail_url": "https://comicvine.gamespot.com/luther/4005-93778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93826/", + "id": 93826, + "name": "Vladimir Illyich Volkov", + "site_detail_url": "https://comicvine.gamespot.com/vladimir-illyich-volkov/4005-93826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93828/", + "id": 93828, + "name": "Visher-Rakk", + "site_detail_url": "https://comicvine.gamespot.com/visher-rakk/4005-93828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93829/", + "id": 93829, + "name": "Morrigon", + "site_detail_url": "https://comicvine.gamespot.com/morrigon/4005-93829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93832/", + "id": 93832, + "name": "Xavier", + "site_detail_url": "https://comicvine.gamespot.com/xavier/4005-93832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93835/", + "id": 93835, + "name": "Laurie Caban", + "site_detail_url": "https://comicvine.gamespot.com/laurie-caban/4005-93835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93893/", + "id": 93893, + "name": "Ginny Guzman", + "site_detail_url": "https://comicvine.gamespot.com/ginny-guzman/4005-93893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93908/", + "id": 93908, + "name": "Veritina", + "site_detail_url": "https://comicvine.gamespot.com/veritina/4005-93908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93909/", + "id": 93909, + "name": "Supreme Justicar", + "site_detail_url": "https://comicvine.gamespot.com/supreme-justicar/4005-93909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94118/", + "id": 94118, + "name": "Kamala Khan", + "site_detail_url": "https://comicvine.gamespot.com/kamala-khan/4005-94118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94160/", + "id": 94160, + "name": "Red Peril", + "site_detail_url": "https://comicvine.gamespot.com/red-peril/4005-94160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94161/", + "id": 94161, + "name": "Armory", + "site_detail_url": "https://comicvine.gamespot.com/armory/4005-94161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94162/", + "id": 94162, + "name": "H.E.L.E.N.", + "site_detail_url": "https://comicvine.gamespot.com/h-e-l-e-n/4005-94162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94265/", + "id": 94265, + "name": "Friend ", + "site_detail_url": "https://comicvine.gamespot.com/friend/4005-94265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94271/", + "id": 94271, + "name": "Rex Griffin", + "site_detail_url": "https://comicvine.gamespot.com/rex-griffin/4005-94271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94272/", + "id": 94272, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4005-94272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94295/", + "id": 94295, + "name": "Juggernougat", + "site_detail_url": "https://comicvine.gamespot.com/juggernougat/4005-94295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94303/", + "id": 94303, + "name": "Vincent Siglio", + "site_detail_url": "https://comicvine.gamespot.com/vincent-siglio/4005-94303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94314/", + "id": 94314, + "name": "Lt Paul Carson ", + "site_detail_url": "https://comicvine.gamespot.com/lt-paul-carson/4005-94314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94352/", + "id": 94352, + "name": "Dean Goldman", + "site_detail_url": "https://comicvine.gamespot.com/dean-goldman/4005-94352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94353/", + "id": 94353, + "name": "The Thumb", + "site_detail_url": "https://comicvine.gamespot.com/the-thumb/4005-94353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94354/", + "id": 94354, + "name": "The Little Finger", + "site_detail_url": "https://comicvine.gamespot.com/the-little-finger/4005-94354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94355/", + "id": 94355, + "name": "The Curled Finger", + "site_detail_url": "https://comicvine.gamespot.com/the-curled-finger/4005-94355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94356/", + "id": 94356, + "name": "The Testing Finger", + "site_detail_url": "https://comicvine.gamespot.com/the-testing-finger/4005-94356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94357/", + "id": 94357, + "name": "The Pointing Finger", + "site_detail_url": "https://comicvine.gamespot.com/the-pointing-finger/4005-94357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94467/", + "id": 94467, + "name": "Eli Warren", + "site_detail_url": "https://comicvine.gamespot.com/eli-warren/4005-94467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94474/", + "id": 94474, + "name": "Tumbler", + "site_detail_url": "https://comicvine.gamespot.com/tumbler/4005-94474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94477/", + "id": 94477, + "name": "Kouen", + "site_detail_url": "https://comicvine.gamespot.com/kouen/4005-94477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94553/", + "id": 94553, + "name": "Naanis", + "site_detail_url": "https://comicvine.gamespot.com/naanis/4005-94553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94579/", + "id": 94579, + "name": "Krystal", + "site_detail_url": "https://comicvine.gamespot.com/krystal/4005-94579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94583/", + "id": 94583, + "name": "Red Skrull", + "site_detail_url": "https://comicvine.gamespot.com/red-skrull/4005-94583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94591/", + "id": 94591, + "name": "Shiv", + "site_detail_url": "https://comicvine.gamespot.com/shiv/4005-94591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94683/", + "id": 94683, + "name": "The Junkman", + "site_detail_url": "https://comicvine.gamespot.com/the-junkman/4005-94683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94770/", + "id": 94770, + "name": "Ana Cortes", + "site_detail_url": "https://comicvine.gamespot.com/ana-cortes/4005-94770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94771/", + "id": 94771, + "name": "Lucien Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/lucien-sinclair/4005-94771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94772/", + "id": 94772, + "name": "Geoff", + "site_detail_url": "https://comicvine.gamespot.com/geoff/4005-94772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94774/", + "id": 94774, + "name": "Lord Edwin Dering", + "site_detail_url": "https://comicvine.gamespot.com/lord-edwin-dering/4005-94774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94775/", + "id": 94775, + "name": "Lady Mary Dering", + "site_detail_url": "https://comicvine.gamespot.com/lady-mary-dering/4005-94775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94776/", + "id": 94776, + "name": "Derings' Servant Girl", + "site_detail_url": "https://comicvine.gamespot.com/derings-servant-girl/4005-94776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94805/", + "id": 94805, + "name": "Khotto", + "site_detail_url": "https://comicvine.gamespot.com/khotto/4005-94805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94823/", + "id": 94823, + "name": "Hemlock", + "site_detail_url": "https://comicvine.gamespot.com/hemlock/4005-94823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94828/", + "id": 94828, + "name": "Hadron-Class Kilgore Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/hadronclass-kilgore-sentinel/4005-94828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94829/", + "id": 94829, + "name": "Gibson", + "site_detail_url": "https://comicvine.gamespot.com/gibson/4005-94829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94830/", + "id": 94830, + "name": "Anthony Hicke", + "site_detail_url": "https://comicvine.gamespot.com/anthony-hicke/4005-94830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94831/", + "id": 94831, + "name": "Ada the Cat", + "site_detail_url": "https://comicvine.gamespot.com/ada-the-cat/4005-94831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94885/", + "id": 94885, + "name": "Finch", + "site_detail_url": "https://comicvine.gamespot.com/finch/4005-94885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94886/", + "id": 94886, + "name": "Marcus", + "site_detail_url": "https://comicvine.gamespot.com/marcus/4005-94886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94887/", + "id": 94887, + "name": "Whalesong", + "site_detail_url": "https://comicvine.gamespot.com/whalesong/4005-94887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94974/", + "id": 94974, + "name": "Skrull Santa", + "site_detail_url": "https://comicvine.gamespot.com/skrull-santa/4005-94974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94983/", + "id": 94983, + "name": "Abner Croit", + "site_detail_url": "https://comicvine.gamespot.com/abner-croit/4005-94983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94985/", + "id": 94985, + "name": "Josephine Bricklemoore", + "site_detail_url": "https://comicvine.gamespot.com/josephine-bricklemoore/4005-94985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94986/", + "id": 94986, + "name": "Joseph Bricklemoore", + "site_detail_url": "https://comicvine.gamespot.com/joseph-bricklemoore/4005-94986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94990/", + "id": 94990, + "name": "Salome Abdol", + "site_detail_url": "https://comicvine.gamespot.com/salome-abdol/4005-94990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-94992/", + "id": 94992, + "name": "Ghost Rider (Reyes)", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-reyes/4005-94992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95014/", + "id": 95014, + "name": "Zamira", + "site_detail_url": "https://comicvine.gamespot.com/zamira/4005-95014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95232/", + "id": 95232, + "name": "Cora Birch", + "site_detail_url": "https://comicvine.gamespot.com/cora-birch/4005-95232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95233/", + "id": 95233, + "name": "Leonid Kuznetsov", + "site_detail_url": "https://comicvine.gamespot.com/leonid-kuznetsov/4005-95233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95234/", + "id": 95234, + "name": "C. Anderson Sixty", + "site_detail_url": "https://comicvine.gamespot.com/c-anderson-sixty/4005-95234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95236/", + "id": 95236, + "name": "Jason Quantrell", + "site_detail_url": "https://comicvine.gamespot.com/jason-quantrell/4005-95236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95237/", + "id": 95237, + "name": "Quickfire", + "site_detail_url": "https://comicvine.gamespot.com/quickfire/4005-95237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95246/", + "id": 95246, + "name": "James Murch", + "site_detail_url": "https://comicvine.gamespot.com/james-murch/4005-95246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95249/", + "id": 95249, + "name": "Mrs. Jarvis", + "site_detail_url": "https://comicvine.gamespot.com/mrs-jarvis/4005-95249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95290/", + "id": 95290, + "name": "K'Tan", + "site_detail_url": "https://comicvine.gamespot.com/k-tan/4005-95290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95298/", + "id": 95298, + "name": "Agent London", + "site_detail_url": "https://comicvine.gamespot.com/agent-london/4005-95298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95299/", + "id": 95299, + "name": "Uncle George", + "site_detail_url": "https://comicvine.gamespot.com/uncle-george/4005-95299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95300/", + "id": 95300, + "name": "Dyane", + "site_detail_url": "https://comicvine.gamespot.com/dyane/4005-95300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95301/", + "id": 95301, + "name": "Dr. Kettlewell", + "site_detail_url": "https://comicvine.gamespot.com/dr-kettlewell/4005-95301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95359/", + "id": 95359, + "name": "Delroy Watkins", + "site_detail_url": "https://comicvine.gamespot.com/delroy-watkins/4005-95359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95360/", + "id": 95360, + "name": "Ultra-Adaptoid", + "site_detail_url": "https://comicvine.gamespot.com/ultra-adaptoid/4005-95360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95361/", + "id": 95361, + "name": "Paragon", + "site_detail_url": "https://comicvine.gamespot.com/paragon/4005-95361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95386/", + "id": 95386, + "name": "Doris", + "site_detail_url": "https://comicvine.gamespot.com/doris/4005-95386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95405/", + "id": 95405, + "name": "Dr Peter Alraune", + "site_detail_url": "https://comicvine.gamespot.com/dr-peter-alraune/4005-95405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95461/", + "id": 95461, + "name": "Fiona", + "site_detail_url": "https://comicvine.gamespot.com/fiona/4005-95461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95463/", + "id": 95463, + "name": "Flynn", + "site_detail_url": "https://comicvine.gamespot.com/flynn/4005-95463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95464/", + "id": 95464, + "name": "Petras Petragon", + "site_detail_url": "https://comicvine.gamespot.com/petras-petragon/4005-95464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95465/", + "id": 95465, + "name": "Geldhoff", + "site_detail_url": "https://comicvine.gamespot.com/geldhoff/4005-95465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95471/", + "id": 95471, + "name": "High Tide", + "site_detail_url": "https://comicvine.gamespot.com/high-tide/4005-95471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95472/", + "id": 95472, + "name": "Hotshot", + "site_detail_url": "https://comicvine.gamespot.com/hotshot/4005-95472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95473/", + "id": 95473, + "name": "Bombshell", + "site_detail_url": "https://comicvine.gamespot.com/bombshell/4005-95473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95474/", + "id": 95474, + "name": "Jessie Wingfoot", + "site_detail_url": "https://comicvine.gamespot.com/jessie-wingfoot/4005-95474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95475/", + "id": 95475, + "name": "Oddball", + "site_detail_url": "https://comicvine.gamespot.com/oddball/4005-95475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95477/", + "id": 95477, + "name": "Super-Ego", + "site_detail_url": "https://comicvine.gamespot.com/super-ego/4005-95477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95478/", + "id": 95478, + "name": "Karinna Rose", + "site_detail_url": "https://comicvine.gamespot.com/karinna-rose/4005-95478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95479/", + "id": 95479, + "name": "Chelwid", + "site_detail_url": "https://comicvine.gamespot.com/chelwid/4005-95479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95498/", + "id": 95498, + "name": "Marissa Storm", + "site_detail_url": "https://comicvine.gamespot.com/marissa-storm/4005-95498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95511/", + "id": 95511, + "name": "Water Snake", + "site_detail_url": "https://comicvine.gamespot.com/water-snake/4005-95511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95532/", + "id": 95532, + "name": "Scott Adsit", + "site_detail_url": "https://comicvine.gamespot.com/scott-adsit/4005-95532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95534/", + "id": 95534, + "name": "Buckley Grainger", + "site_detail_url": "https://comicvine.gamespot.com/buckley-grainger/4005-95534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95538/", + "id": 95538, + "name": "Oswald Zinn", + "site_detail_url": "https://comicvine.gamespot.com/oswald-zinn/4005-95538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95541/", + "id": 95541, + "name": "Harvey Long", + "site_detail_url": "https://comicvine.gamespot.com/harvey-long/4005-95541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95621/", + "id": 95621, + "name": "Dr. Chip Dipson", + "site_detail_url": "https://comicvine.gamespot.com/dr-chip-dipson/4005-95621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95623/", + "id": 95623, + "name": "Amp", + "site_detail_url": "https://comicvine.gamespot.com/amp/4005-95623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95624/", + "id": 95624, + "name": "Roberto Kowalski", + "site_detail_url": "https://comicvine.gamespot.com/roberto-kowalski/4005-95624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95726/", + "id": 95726, + "name": "Oberoth'm'gozz", + "site_detail_url": "https://comicvine.gamespot.com/oberothmgozz/4005-95726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95727/", + "id": 95727, + "name": "Calista Hancock", + "site_detail_url": "https://comicvine.gamespot.com/calista-hancock/4005-95727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95728/", + "id": 95728, + "name": "Trevor Donohue", + "site_detail_url": "https://comicvine.gamespot.com/trevor-donohue/4005-95728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95730/", + "id": 95730, + "name": "Tyger Minn", + "site_detail_url": "https://comicvine.gamespot.com/tyger-minn/4005-95730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95731/", + "id": 95731, + "name": "John Ehrmann", + "site_detail_url": "https://comicvine.gamespot.com/john-ehrmann/4005-95731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95779/", + "id": 95779, + "name": "Pandora Peters", + "site_detail_url": "https://comicvine.gamespot.com/pandora-peters/4005-95779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95780/", + "id": 95780, + "name": "Saige Kaufman", + "site_detail_url": "https://comicvine.gamespot.com/saige-kaufman/4005-95780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95781/", + "id": 95781, + "name": "Mo Stanton.", + "site_detail_url": "https://comicvine.gamespot.com/mo-stanton/4005-95781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95782/", + "id": 95782, + "name": "Marc Vicus", + "site_detail_url": "https://comicvine.gamespot.com/marc-vicus/4005-95782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95783/", + "id": 95783, + "name": "Gerald Fleury", + "site_detail_url": "https://comicvine.gamespot.com/gerald-fleury/4005-95783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95797/", + "id": 95797, + "name": "The General", + "site_detail_url": "https://comicvine.gamespot.com/the-general/4005-95797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95798/", + "id": 95798, + "name": "Haskell Smith", + "site_detail_url": "https://comicvine.gamespot.com/haskell-smith/4005-95798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95799/", + "id": 95799, + "name": "Alice Starr", + "site_detail_url": "https://comicvine.gamespot.com/alice-starr/4005-95799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95815/", + "id": 95815, + "name": "Anton Trask", + "site_detail_url": "https://comicvine.gamespot.com/anton-trask/4005-95815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95816/", + "id": 95816, + "name": "Clete Billups", + "site_detail_url": "https://comicvine.gamespot.com/clete-billups/4005-95816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95817/", + "id": 95817, + "name": "McAllister Groves", + "site_detail_url": "https://comicvine.gamespot.com/mcallister-groves/4005-95817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95819/", + "id": 95819, + "name": "Shirley Klein", + "site_detail_url": "https://comicvine.gamespot.com/shirley-klein/4005-95819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95820/", + "id": 95820, + "name": "Stan Klein", + "site_detail_url": "https://comicvine.gamespot.com/stan-klein/4005-95820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95821/", + "id": 95821, + "name": "Cameron Klein", + "site_detail_url": "https://comicvine.gamespot.com/cameron-klein/4005-95821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95822/", + "id": 95822, + "name": "Josh Hoard", + "site_detail_url": "https://comicvine.gamespot.com/josh-hoard/4005-95822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95823/", + "id": 95823, + "name": "Dawn Ridgeway", + "site_detail_url": "https://comicvine.gamespot.com/dawn-ridgeway/4005-95823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95824/", + "id": 95824, + "name": "Hate-Monger (Construct)", + "site_detail_url": "https://comicvine.gamespot.com/hatemonger-construct/4005-95824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95825/", + "id": 95825, + "name": "Chet Madden", + "site_detail_url": "https://comicvine.gamespot.com/chet-madden/4005-95825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95826/", + "id": 95826, + "name": "Maxfield Saunders", + "site_detail_url": "https://comicvine.gamespot.com/maxfield-saunders/4005-95826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95827/", + "id": 95827, + "name": "Anna Wei", + "site_detail_url": "https://comicvine.gamespot.com/anna-wei/4005-95827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95828/", + "id": 95828, + "name": "Kiko Wei", + "site_detail_url": "https://comicvine.gamespot.com/kiko-wei/4005-95828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95876/", + "id": 95876, + "name": "Osamu Moroboshi", + "site_detail_url": "https://comicvine.gamespot.com/osamu-moroboshi/4005-95876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95877/", + "id": 95877, + "name": "Cal Oakley", + "site_detail_url": "https://comicvine.gamespot.com/cal-oakley/4005-95877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95948/", + "id": 95948, + "name": "Iron Man 3030", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-3030/4005-95948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-95974/", + "id": 95974, + "name": "Cole", + "site_detail_url": "https://comicvine.gamespot.com/cole/4005-95974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96183/", + "id": 96183, + "name": "Yiorgos Krallis", + "site_detail_url": "https://comicvine.gamespot.com/yiorgos-krallis/4005-96183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96184/", + "id": 96184, + "name": "Iron Monger (Smoot)", + "site_detail_url": "https://comicvine.gamespot.com/iron-monger-smoot/4005-96184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96185/", + "id": 96185, + "name": "Slagmire", + "site_detail_url": "https://comicvine.gamespot.com/slagmire/4005-96185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96186/", + "id": 96186, + "name": "Iron Monger (Pfeifer)", + "site_detail_url": "https://comicvine.gamespot.com/iron-monger-pfeifer/4005-96186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96187/", + "id": 96187, + "name": "Richard Arons", + "site_detail_url": "https://comicvine.gamespot.com/richard-arons/4005-96187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96188/", + "id": 96188, + "name": "Adam", + "site_detail_url": "https://comicvine.gamespot.com/adam/4005-96188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96189/", + "id": 96189, + "name": "Imperator", + "site_detail_url": "https://comicvine.gamespot.com/imperator/4005-96189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96190/", + "id": 96190, + "name": "Biocide", + "site_detail_url": "https://comicvine.gamespot.com/biocide/4005-96190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96218/", + "id": 96218, + "name": "Kosmos", + "site_detail_url": "https://comicvine.gamespot.com/kosmos/4005-96218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96284/", + "id": 96284, + "name": "Astra Gallows", + "site_detail_url": "https://comicvine.gamespot.com/astra-gallows/4005-96284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96286/", + "id": 96286, + "name": "Baldur Gallows", + "site_detail_url": "https://comicvine.gamespot.com/baldur-gallows/4005-96286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96287/", + "id": 96287, + "name": "Mrs. Gallows", + "site_detail_url": "https://comicvine.gamespot.com/mrs-gallows/4005-96287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96352/", + "id": 96352, + "name": "Pagetti Rook", + "site_detail_url": "https://comicvine.gamespot.com/pagetti-rook/4005-96352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96369/", + "id": 96369, + "name": "Dawn Greenwood", + "site_detail_url": "https://comicvine.gamespot.com/dawn-greenwood/4005-96369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96373/", + "id": 96373, + "name": "Isaiah", + "site_detail_url": "https://comicvine.gamespot.com/isaiah/4005-96373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96374/", + "id": 96374, + "name": "Terrance Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/terrance-hoffman/4005-96374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96375/", + "id": 96375, + "name": "Linda Kwan", + "site_detail_url": "https://comicvine.gamespot.com/linda-kwan/4005-96375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96396/", + "id": 96396, + "name": "Diane Dipson", + "site_detail_url": "https://comicvine.gamespot.com/diane-dipson/4005-96396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96397/", + "id": 96397, + "name": "Grey Scar", + "site_detail_url": "https://comicvine.gamespot.com/grey-scar/4005-96397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96398/", + "id": 96398, + "name": "Inspector", + "site_detail_url": "https://comicvine.gamespot.com/inspector/4005-96398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96399/", + "id": 96399, + "name": "Liz Berry", + "site_detail_url": "https://comicvine.gamespot.com/liz-berry/4005-96399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96400/", + "id": 96400, + "name": "Lone Wolf", + "site_detail_url": "https://comicvine.gamespot.com/lone-wolf/4005-96400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96402/", + "id": 96402, + "name": "Red Streak", + "site_detail_url": "https://comicvine.gamespot.com/red-streak/4005-96402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96403/", + "id": 96403, + "name": "Soo Jin Rhee", + "site_detail_url": "https://comicvine.gamespot.com/soo-jin-rhee/4005-96403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96404/", + "id": 96404, + "name": "Tanalth", + "site_detail_url": "https://comicvine.gamespot.com/tanalth/4005-96404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96520/", + "id": 96520, + "name": "Raoul", + "site_detail_url": "https://comicvine.gamespot.com/raoul/4005-96520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96591/", + "id": 96591, + "name": "Kid Copper", + "site_detail_url": "https://comicvine.gamespot.com/kid-copper/4005-96591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96607/", + "id": 96607, + "name": "Alan Quartermain", + "site_detail_url": "https://comicvine.gamespot.com/alan-quartermain/4005-96607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96643/", + "id": 96643, + "name": "Cordé", + "site_detail_url": "https://comicvine.gamespot.com/corde/4005-96643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96644/", + "id": 96644, + "name": "Dormé", + "site_detail_url": "https://comicvine.gamespot.com/dorme/4005-96644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96669/", + "id": 96669, + "name": "Lee Chi", + "site_detail_url": "https://comicvine.gamespot.com/lee-chi/4005-96669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96670/", + "id": 96670, + "name": "Aunt Ruth", + "site_detail_url": "https://comicvine.gamespot.com/aunt-ruth/4005-96670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96671/", + "id": 96671, + "name": "Daniel Toliver", + "site_detail_url": "https://comicvine.gamespot.com/daniel-toliver/4005-96671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96673/", + "id": 96673, + "name": "Principal Jones", + "site_detail_url": "https://comicvine.gamespot.com/principal-jones/4005-96673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96760/", + "id": 96760, + "name": "Kraig", + "site_detail_url": "https://comicvine.gamespot.com/kraig/4005-96760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96761/", + "id": 96761, + "name": "Nathan Timly", + "site_detail_url": "https://comicvine.gamespot.com/nathan-timly/4005-96761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96762/", + "id": 96762, + "name": "Agatha Timly", + "site_detail_url": "https://comicvine.gamespot.com/agatha-timly/4005-96762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96765/", + "id": 96765, + "name": "Skinnee", + "site_detail_url": "https://comicvine.gamespot.com/skinnee/4005-96765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96794/", + "id": 96794, + "name": "Dr. Ketterson", + "site_detail_url": "https://comicvine.gamespot.com/dr-ketterson/4005-96794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96795/", + "id": 96795, + "name": "Ellen Keep", + "site_detail_url": "https://comicvine.gamespot.com/ellen-keep/4005-96795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96796/", + "id": 96796, + "name": "Arthur Keep", + "site_detail_url": "https://comicvine.gamespot.com/arthur-keep/4005-96796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96797/", + "id": 96797, + "name": "Melody Keep", + "site_detail_url": "https://comicvine.gamespot.com/melody-keep/4005-96797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96798/", + "id": 96798, + "name": "Maxwell Keep", + "site_detail_url": "https://comicvine.gamespot.com/maxwell-keep/4005-96798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96799/", + "id": 96799, + "name": "Nikoleta Harrow", + "site_detail_url": "https://comicvine.gamespot.com/nikoleta-harrow/4005-96799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96862/", + "id": 96862, + "name": "Versé", + "site_detail_url": "https://comicvine.gamespot.com/verse/4005-96862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96940/", + "id": 96940, + "name": "Woo Pin Yeun", + "site_detail_url": "https://comicvine.gamespot.com/woo-pin-yeun/4005-96940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96942/", + "id": 96942, + "name": "King", + "site_detail_url": "https://comicvine.gamespot.com/king/4005-96942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96980/", + "id": 96980, + "name": "Agent Keller", + "site_detail_url": "https://comicvine.gamespot.com/agent-keller/4005-96980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96981/", + "id": 96981, + "name": "Fulton", + "site_detail_url": "https://comicvine.gamespot.com/fulton/4005-96981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-96996/", + "id": 96996, + "name": "Ulana", + "site_detail_url": "https://comicvine.gamespot.com/ulana/4005-96996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97003/", + "id": 97003, + "name": "Shepherd", + "site_detail_url": "https://comicvine.gamespot.com/shepherd/4005-97003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97005/", + "id": 97005, + "name": "Dr. Santini", + "site_detail_url": "https://comicvine.gamespot.com/dr-santini/4005-97005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97072/", + "id": 97072, + "name": "Dr. Mindbubble", + "site_detail_url": "https://comicvine.gamespot.com/dr-mindbubble/4005-97072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97073/", + "id": 97073, + "name": "Mayor Chandrake", + "site_detail_url": "https://comicvine.gamespot.com/mayor-chandrake/4005-97073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97074/", + "id": 97074, + "name": "Darla", + "site_detail_url": "https://comicvine.gamespot.com/darla/4005-97074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97075/", + "id": 97075, + "name": "Lichidus", + "site_detail_url": "https://comicvine.gamespot.com/lichidus/4005-97075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97147/", + "id": 97147, + "name": "Iron Scorpion ", + "site_detail_url": "https://comicvine.gamespot.com/iron-scorpion/4005-97147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97149/", + "id": 97149, + "name": "Paul Barnum", + "site_detail_url": "https://comicvine.gamespot.com/paul-barnum/4005-97149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97150/", + "id": 97150, + "name": "Bill Chandrake", + "site_detail_url": "https://comicvine.gamespot.com/bill-chandrake/4005-97150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97151/", + "id": 97151, + "name": "Frances Xavier", + "site_detail_url": "https://comicvine.gamespot.com/frances-xavier/4005-97151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97152/", + "id": 97152, + "name": "Penny Jones", + "site_detail_url": "https://comicvine.gamespot.com/penny-jones/4005-97152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97178/", + "id": 97178, + "name": "The Exile", + "site_detail_url": "https://comicvine.gamespot.com/the-exile/4005-97178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97179/", + "id": 97179, + "name": "Zanzibar", + "site_detail_url": "https://comicvine.gamespot.com/zanzibar/4005-97179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97180/", + "id": 97180, + "name": "Slipshod", + "site_detail_url": "https://comicvine.gamespot.com/slipshod/4005-97180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97329/", + "id": 97329, + "name": "Bruno Carrelli", + "site_detail_url": "https://comicvine.gamespot.com/bruno-carrelli/4005-97329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97331/", + "id": 97331, + "name": "Cap'n Sharrr", + "site_detail_url": "https://comicvine.gamespot.com/capn-sharrr/4005-97331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97332/", + "id": 97332, + "name": "Disha Khan", + "site_detail_url": "https://comicvine.gamespot.com/disha-khan/4005-97332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97333/", + "id": 97333, + "name": "Titor", + "site_detail_url": "https://comicvine.gamespot.com/titor/4005-97333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97334/", + "id": 97334, + "name": "Jamir Khan", + "site_detail_url": "https://comicvine.gamespot.com/jamir-khan/4005-97334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97335/", + "id": 97335, + "name": "Michio", + "site_detail_url": "https://comicvine.gamespot.com/michio/4005-97335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97336/", + "id": 97336, + "name": "Grax", + "site_detail_url": "https://comicvine.gamespot.com/grax/4005-97336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97371/", + "id": 97371, + "name": "C'rel", + "site_detail_url": "https://comicvine.gamespot.com/crel/4005-97371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97377/", + "id": 97377, + "name": "Delage", + "site_detail_url": "https://comicvine.gamespot.com/delage/4005-97377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97407/", + "id": 97407, + "name": "Ben Simmons", + "site_detail_url": "https://comicvine.gamespot.com/ben-simmons/4005-97407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97443/", + "id": 97443, + "name": "Shiklah", + "site_detail_url": "https://comicvine.gamespot.com/shiklah/4005-97443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97481/", + "id": 97481, + "name": "Technocrat", + "site_detail_url": "https://comicvine.gamespot.com/technocrat/4005-97481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97482/", + "id": 97482, + "name": "Nate Xavier", + "site_detail_url": "https://comicvine.gamespot.com/nate-xavier/4005-97482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97484/", + "id": 97484, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4005-97484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97485/", + "id": 97485, + "name": "Nightfighter", + "site_detail_url": "https://comicvine.gamespot.com/nightfighter/4005-97485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97486/", + "id": 97486, + "name": "White Bird", + "site_detail_url": "https://comicvine.gamespot.com/white-bird/4005-97486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97527/", + "id": 97527, + "name": "Colin Forty-Four", + "site_detail_url": "https://comicvine.gamespot.com/colin-forty-four/4005-97527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97538/", + "id": 97538, + "name": "Juliana Valencia", + "site_detail_url": "https://comicvine.gamespot.com/juliana-valencia/4005-97538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97539/", + "id": 97539, + "name": "Juan Carlos Valencia", + "site_detail_url": "https://comicvine.gamespot.com/juan-carlos-valencia/4005-97539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97547/", + "id": 97547, + "name": "Edward Nelson", + "site_detail_url": "https://comicvine.gamespot.com/edward-nelson/4005-97547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97589/", + "id": 97589, + "name": "June Quartermain", + "site_detail_url": "https://comicvine.gamespot.com/june-quartermain/4005-97589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97595/", + "id": 97595, + "name": "Hermann von Reitberger", + "site_detail_url": "https://comicvine.gamespot.com/hermann-von-reitberger/4005-97595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97685/", + "id": 97685, + "name": "Melchior", + "site_detail_url": "https://comicvine.gamespot.com/melchior/4005-97685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97692/", + "id": 97692, + "name": "The Bride", + "site_detail_url": "https://comicvine.gamespot.com/the-bride/4005-97692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97736/", + "id": 97736, + "name": "Little James", + "site_detail_url": "https://comicvine.gamespot.com/little-james/4005-97736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97737/", + "id": 97737, + "name": "Hux", + "site_detail_url": "https://comicvine.gamespot.com/hux/4005-97737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97738/", + "id": 97738, + "name": "Mairead", + "site_detail_url": "https://comicvine.gamespot.com/mairead/4005-97738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97739/", + "id": 97739, + "name": "Jusuf Khan", + "site_detail_url": "https://comicvine.gamespot.com/jusuf-khan/4005-97739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97740/", + "id": 97740, + "name": "Chatty Bob", + "site_detail_url": "https://comicvine.gamespot.com/chatty-bob/4005-97740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97741/", + "id": 97741, + "name": "Zoe Zimmer", + "site_detail_url": "https://comicvine.gamespot.com/zoe-zimmer/4005-97741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97742/", + "id": 97742, + "name": "Discord", + "site_detail_url": "https://comicvine.gamespot.com/discord/4005-97742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97743/", + "id": 97743, + "name": "Nakia Bahadir", + "site_detail_url": "https://comicvine.gamespot.com/nakia-bahadir/4005-97743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97749/", + "id": 97749, + "name": "The Offer", + "site_detail_url": "https://comicvine.gamespot.com/the-offer/4005-97749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97766/", + "id": 97766, + "name": "Amjad", + "site_detail_url": "https://comicvine.gamespot.com/amjad/4005-97766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97767/", + "id": 97767, + "name": "Baqir", + "site_detail_url": "https://comicvine.gamespot.com/baqir/4005-97767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97795/", + "id": 97795, + "name": "Joseph Rogers", + "site_detail_url": "https://comicvine.gamespot.com/joseph-rogers/4005-97795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97823/", + "id": 97823, + "name": "Lord Remaker", + "site_detail_url": "https://comicvine.gamespot.com/lord-remaker/4005-97823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97828/", + "id": 97828, + "name": "Agent Trump", + "site_detail_url": "https://comicvine.gamespot.com/agent-trump/4005-97828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97881/", + "id": 97881, + "name": "The Minotaur", + "site_detail_url": "https://comicvine.gamespot.com/the-minotaur/4005-97881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97913/", + "id": 97913, + "name": "K'ythri", + "site_detail_url": "https://comicvine.gamespot.com/kythri/4005-97913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97982/", + "id": 97982, + "name": "General Hamilton", + "site_detail_url": "https://comicvine.gamespot.com/general-hamilton/4005-97982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-97983/", + "id": 97983, + "name": "Summer Beckwith", + "site_detail_url": "https://comicvine.gamespot.com/summer-beckwith/4005-97983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98008/", + "id": 98008, + "name": "Mr. Luckberg", + "site_detail_url": "https://comicvine.gamespot.com/mr-luckberg/4005-98008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98009/", + "id": 98009, + "name": "Mr. Paine", + "site_detail_url": "https://comicvine.gamespot.com/mr-paine/4005-98009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98040/", + "id": 98040, + "name": "Andromeda ", + "site_detail_url": "https://comicvine.gamespot.com/andromeda/4005-98040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98104/", + "id": 98104, + "name": "Delphi", + "site_detail_url": "https://comicvine.gamespot.com/delphi/4005-98104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98115/", + "id": 98115, + "name": "Ulysses", + "site_detail_url": "https://comicvine.gamespot.com/ulysses/4005-98115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98158/", + "id": 98158, + "name": "Lone Shark", + "site_detail_url": "https://comicvine.gamespot.com/lone-shark/4005-98158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98159/", + "id": 98159, + "name": "The Pro", + "site_detail_url": "https://comicvine.gamespot.com/the-pro/4005-98159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98178/", + "id": 98178, + "name": "Elsa Chandler", + "site_detail_url": "https://comicvine.gamespot.com/elsa-chandler/4005-98178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98190/", + "id": 98190, + "name": "Ray Chandler", + "site_detail_url": "https://comicvine.gamespot.com/ray-chandler/4005-98190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98191/", + "id": 98191, + "name": "Keith Chandler", + "site_detail_url": "https://comicvine.gamespot.com/keith-chandler/4005-98191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98213/", + "id": 98213, + "name": "Bruin", + "site_detail_url": "https://comicvine.gamespot.com/bruin/4005-98213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98220/", + "id": 98220, + "name": "Than", + "site_detail_url": "https://comicvine.gamespot.com/than/4005-98220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98295/", + "id": 98295, + "name": "Marc Kumar", + "site_detail_url": "https://comicvine.gamespot.com/marc-kumar/4005-98295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98314/", + "id": 98314, + "name": "Gestalt", + "site_detail_url": "https://comicvine.gamespot.com/gestalt/4005-98314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98315/", + "id": 98315, + "name": "Dr. Anton Wexler", + "site_detail_url": "https://comicvine.gamespot.com/dr-anton-wexler/4005-98315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98316/", + "id": 98316, + "name": "Nil", + "site_detail_url": "https://comicvine.gamespot.com/nil/4005-98316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98384/", + "id": 98384, + "name": "Chuck Chandler ", + "site_detail_url": "https://comicvine.gamespot.com/chuck-chandler/4005-98384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98444/", + "id": 98444, + "name": "Kerwin Kronus", + "site_detail_url": "https://comicvine.gamespot.com/kerwin-kronus/4005-98444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98445/", + "id": 98445, + "name": "Queen Froja", + "site_detail_url": "https://comicvine.gamespot.com/queen-froja/4005-98445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98633/", + "id": 98633, + "name": "Gog", + "site_detail_url": "https://comicvine.gamespot.com/gog/4005-98633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98859/", + "id": 98859, + "name": "Minutemen", + "site_detail_url": "https://comicvine.gamespot.com/minutemen/4005-98859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-98970/", + "id": 98970, + "name": "Sharon King", + "site_detail_url": "https://comicvine.gamespot.com/sharon-king/4005-98970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99035/", + "id": 99035, + "name": "Kenny Brown", + "site_detail_url": "https://comicvine.gamespot.com/kenny-brown/4005-99035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99036/", + "id": 99036, + "name": "Melody Barto", + "site_detail_url": "https://comicvine.gamespot.com/melody-barto/4005-99036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99037/", + "id": 99037, + "name": "Marjorie Barto", + "site_detail_url": "https://comicvine.gamespot.com/marjorie-barto/4005-99037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99084/", + "id": 99084, + "name": "Marcus", + "site_detail_url": "https://comicvine.gamespot.com/marcus/4005-99084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99087/", + "id": 99087, + "name": "MeMe", + "site_detail_url": "https://comicvine.gamespot.com/me-me/4005-99087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99088/", + "id": 99088, + "name": "Nature Girl", + "site_detail_url": "https://comicvine.gamespot.com/nature-girl/4005-99088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99133/", + "id": 99133, + "name": "Angie Huang", + "site_detail_url": "https://comicvine.gamespot.com/angie-huang/4005-99133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99134/", + "id": 99134, + "name": "Hei Hei", + "site_detail_url": "https://comicvine.gamespot.com/hei-hei/4005-99134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99142/", + "id": 99142, + "name": "Verity Willis", + "site_detail_url": "https://comicvine.gamespot.com/verity-willis/4005-99142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99216/", + "id": 99216, + "name": "Dr. David Heimerdinger", + "site_detail_url": "https://comicvine.gamespot.com/dr-david-heimerdinger/4005-99216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99353/", + "id": 99353, + "name": "Volga", + "site_detail_url": "https://comicvine.gamespot.com/volga/4005-99353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99388/", + "id": 99388, + "name": "Scalpel", + "site_detail_url": "https://comicvine.gamespot.com/scalpel/4005-99388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99405/", + "id": 99405, + "name": "Alex", + "site_detail_url": "https://comicvine.gamespot.com/alex/4005-99405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99534/", + "id": 99534, + "name": "Pinch", + "site_detail_url": "https://comicvine.gamespot.com/pinch/4005-99534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99621/", + "id": 99621, + "name": "Bo", + "site_detail_url": "https://comicvine.gamespot.com/bo/4005-99621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99623/", + "id": 99623, + "name": "Chancellor Cassandra", + "site_detail_url": "https://comicvine.gamespot.com/chancellor-cassandra/4005-99623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99678/", + "id": 99678, + "name": "Ernest Carrothers", + "site_detail_url": "https://comicvine.gamespot.com/ernest-carrothers/4005-99678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99679/", + "id": 99679, + "name": "Lightning Conductor", + "site_detail_url": "https://comicvine.gamespot.com/lightning-conductor/4005-99679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99701/", + "id": 99701, + "name": "Anna Nelson", + "site_detail_url": "https://comicvine.gamespot.com/anna-nelson/4005-99701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99748/", + "id": 99748, + "name": "Esther Lucas", + "site_detail_url": "https://comicvine.gamespot.com/esther-lucas/4005-99748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99749/", + "id": 99749, + "name": "Slasher", + "site_detail_url": "https://comicvine.gamespot.com/slasher/4005-99749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99769/", + "id": 99769, + "name": "Edan Younge", + "site_detail_url": "https://comicvine.gamespot.com/edan-younge/4005-99769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99870/", + "id": 99870, + "name": "Specs", + "site_detail_url": "https://comicvine.gamespot.com/specs/4005-99870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99911/", + "id": 99911, + "name": "Poppo The Cunning", + "site_detail_url": "https://comicvine.gamespot.com/poppo-the-cunning/4005-99911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99912/", + "id": 99912, + "name": "Ollerus The Unmerciful", + "site_detail_url": "https://comicvine.gamespot.com/ollerus-the-unmerciful/4005-99912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99925/", + "id": 99925, + "name": "Clive", + "site_detail_url": "https://comicvine.gamespot.com/clive/4005-99925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99926/", + "id": 99926, + "name": "Klaus", + "site_detail_url": "https://comicvine.gamespot.com/klaus/4005-99926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99927/", + "id": 99927, + "name": "Ritchie Ward", + "site_detail_url": "https://comicvine.gamespot.com/ritchie-ward/4005-99927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99928/", + "id": 99928, + "name": "Max Belmonde", + "site_detail_url": "https://comicvine.gamespot.com/max-belmonde/4005-99928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99929/", + "id": 99929, + "name": "Raymonde Belmonde", + "site_detail_url": "https://comicvine.gamespot.com/raymonde-belmonde/4005-99929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99930/", + "id": 99930, + "name": "Mariel", + "site_detail_url": "https://comicvine.gamespot.com/mariel/4005-99930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99931/", + "id": 99931, + "name": "Ledge", + "site_detail_url": "https://comicvine.gamespot.com/ledge/4005-99931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99957/", + "id": 99957, + "name": "Amber Grant", + "site_detail_url": "https://comicvine.gamespot.com/amber-grant/4005-99957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99965/", + "id": 99965, + "name": "Dr. Thomas Barrow", + "site_detail_url": "https://comicvine.gamespot.com/dr-thomas-barrow/4005-99965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99966/", + "id": 99966, + "name": "Terrence Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/terrence-rhodes/4005-99966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99967/", + "id": 99967, + "name": "Lila Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/lila-rhodes/4005-99967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99968/", + "id": 99968, + "name": "Gabriel Reyes", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-reyes/4005-99968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99972/", + "id": 99972, + "name": "Molot Boga", + "site_detail_url": "https://comicvine.gamespot.com/molot-boga/4005-99972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99974/", + "id": 99974, + "name": "Nicodemus", + "site_detail_url": "https://comicvine.gamespot.com/nicodemus/4005-99974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99983/", + "id": 99983, + "name": "Ted Goodrich", + "site_detail_url": "https://comicvine.gamespot.com/ted-goodrich/4005-99983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99984/", + "id": 99984, + "name": "Stella Webb", + "site_detail_url": "https://comicvine.gamespot.com/stella-webb/4005-99984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-99985/", + "id": 99985, + "name": "Clara Creed", + "site_detail_url": "https://comicvine.gamespot.com/clara-creed/4005-99985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100035/", + "id": 100035, + "name": "Katie Summers", + "site_detail_url": "https://comicvine.gamespot.com/katie-summers/4005-100035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100036/", + "id": 100036, + "name": "Boundless", + "site_detail_url": "https://comicvine.gamespot.com/boundless/4005-100036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100037/", + "id": 100037, + "name": "The Norn", + "site_detail_url": "https://comicvine.gamespot.com/the-norn/4005-100037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100038/", + "id": 100038, + "name": "The Rider", + "site_detail_url": "https://comicvine.gamespot.com/the-rider/4005-100038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100039/", + "id": 100039, + "name": "The Jovian", + "site_detail_url": "https://comicvine.gamespot.com/the-jovian/4005-100039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100040/", + "id": 100040, + "name": "Sun God", + "site_detail_url": "https://comicvine.gamespot.com/sun-god/4005-100040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100045/", + "id": 100045, + "name": "Battlejack", + "site_detail_url": "https://comicvine.gamespot.com/battlejack/4005-100045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100048/", + "id": 100048, + "name": "Gnostic Wizard", + "site_detail_url": "https://comicvine.gamespot.com/gnostic-wizard/4005-100048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100065/", + "id": 100065, + "name": "Zed", + "site_detail_url": "https://comicvine.gamespot.com/zed/4005-100065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100066/", + "id": 100066, + "name": "Reg Greenwood", + "site_detail_url": "https://comicvine.gamespot.com/reg-greenwood/4005-100066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100067/", + "id": 100067, + "name": "Eve Greenwood", + "site_detail_url": "https://comicvine.gamespot.com/eve-greenwood/4005-100067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100124/", + "id": 100124, + "name": "Never Queen", + "site_detail_url": "https://comicvine.gamespot.com/never-queen/4005-100124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100125/", + "id": 100125, + "name": "Danny Milligan", + "site_detail_url": "https://comicvine.gamespot.com/danny-milligan/4005-100125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100126/", + "id": 100126, + "name": "Carol Faber ", + "site_detail_url": "https://comicvine.gamespot.com/carol-faber/4005-100126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100127/", + "id": 100127, + "name": "Zeta", + "site_detail_url": "https://comicvine.gamespot.com/zeta/4005-100127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100128/", + "id": 100128, + "name": "Chris Larmouth", + "site_detail_url": "https://comicvine.gamespot.com/chris-larmouth/4005-100128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100157/", + "id": 100157, + "name": "Hotspur", + "site_detail_url": "https://comicvine.gamespot.com/hotspur/4005-100157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100286/", + "id": 100286, + "name": "Tori Raven", + "site_detail_url": "https://comicvine.gamespot.com/tori-raven/4005-100286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100287/", + "id": 100287, + "name": "Lash", + "site_detail_url": "https://comicvine.gamespot.com/lash/4005-100287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100288/", + "id": 100288, + "name": "Kristian", + "site_detail_url": "https://comicvine.gamespot.com/kristian/4005-100288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100289/", + "id": 100289, + "name": "Agent Withers", + "site_detail_url": "https://comicvine.gamespot.com/agent-withers/4005-100289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100290/", + "id": 100290, + "name": "Agent Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/agent-rodriguez/4005-100290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100352/", + "id": 100352, + "name": "Crimson Dynamo XI", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-xi/4005-100352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100364/", + "id": 100364, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4005-100364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100465/", + "id": 100465, + "name": "Ultra-Dynamo", + "site_detail_url": "https://comicvine.gamespot.com/ultra-dynamo/4005-100465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100473/", + "id": 100473, + "name": "Crimson Dynamo IX ", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-ix/4005-100473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100481/", + "id": 100481, + "name": "Crimson Dynamo X ", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-x/4005-100481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100640/", + "id": 100640, + "name": "Cordoba", + "site_detail_url": "https://comicvine.gamespot.com/cordoba/4005-100640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100686/", + "id": 100686, + "name": "Jack Murdock", + "site_detail_url": "https://comicvine.gamespot.com/jack-murdock/4005-100686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100687/", + "id": 100687, + "name": "Jubula Pride", + "site_detail_url": "https://comicvine.gamespot.com/jubula-pride/4005-100687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100691/", + "id": 100691, + "name": "Xzax", + "site_detail_url": "https://comicvine.gamespot.com/xzax/4005-100691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100693/", + "id": 100693, + "name": "Madame Worm", + "site_detail_url": "https://comicvine.gamespot.com/madame-worm/4005-100693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100695/", + "id": 100695, + "name": "Monkey King", + "site_detail_url": "https://comicvine.gamespot.com/monkey-king/4005-100695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100926/", + "id": 100926, + "name": "Skaarn", + "site_detail_url": "https://comicvine.gamespot.com/skaarn/4005-100926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100927/", + "id": 100927, + "name": "Ollie", + "site_detail_url": "https://comicvine.gamespot.com/ollie/4005-100927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100928/", + "id": 100928, + "name": "Shocky Dan", + "site_detail_url": "https://comicvine.gamespot.com/shocky-dan/4005-100928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100991/", + "id": 100991, + "name": "Jason Rivara", + "site_detail_url": "https://comicvine.gamespot.com/jason-rivara/4005-100991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100992/", + "id": 100992, + "name": "Marcus H. Harold", + "site_detail_url": "https://comicvine.gamespot.com/marcus-h-harold/4005-100992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100993/", + "id": 100993, + "name": "Robert Templeton", + "site_detail_url": "https://comicvine.gamespot.com/robert-templeton/4005-100993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-100994/", + "id": 100994, + "name": "Vick Carrelli", + "site_detail_url": "https://comicvine.gamespot.com/vick-carrelli/4005-100994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101017/", + "id": 101017, + "name": "Sophia McDougall", + "site_detail_url": "https://comicvine.gamespot.com/sophia-mcdougall/4005-101017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101038/", + "id": 101038, + "name": "Fiber", + "site_detail_url": "https://comicvine.gamespot.com/fiber/4005-101038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101039/", + "id": 101039, + "name": "Fuel", + "site_detail_url": "https://comicvine.gamespot.com/fuel/4005-101039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101040/", + "id": 101040, + "name": "Lost Boy", + "site_detail_url": "https://comicvine.gamespot.com/lost-boy/4005-101040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101044/", + "id": 101044, + "name": "Tisha Collins", + "site_detail_url": "https://comicvine.gamespot.com/tisha-collins/4005-101044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101047/", + "id": 101047, + "name": "Elaine Schoenfeld", + "site_detail_url": "https://comicvine.gamespot.com/elaine-schoenfeld/4005-101047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101082/", + "id": 101082, + "name": "Lord High Vittio", + "site_detail_url": "https://comicvine.gamespot.com/lord-high-vittio/4005-101082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101083/", + "id": 101083, + "name": "Philip Grant", + "site_detail_url": "https://comicvine.gamespot.com/philip-grant/4005-101083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101184/", + "id": 101184, + "name": "Dixie Peach", + "site_detail_url": "https://comicvine.gamespot.com/dixie-peach/4005-101184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101225/", + "id": 101225, + "name": "Charlotte Hastert", + "site_detail_url": "https://comicvine.gamespot.com/charlotte-hastert/4005-101225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101226/", + "id": 101226, + "name": "Chelsea Hastert", + "site_detail_url": "https://comicvine.gamespot.com/chelsea-hastert/4005-101226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101286/", + "id": 101286, + "name": "Pak", + "site_detail_url": "https://comicvine.gamespot.com/pak/4005-101286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101287/", + "id": 101287, + "name": "Shimata", + "site_detail_url": "https://comicvine.gamespot.com/shimata/4005-101287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101292/", + "id": 101292, + "name": "Modine", + "site_detail_url": "https://comicvine.gamespot.com/modine/4005-101292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101293/", + "id": 101293, + "name": "Jessup", + "site_detail_url": "https://comicvine.gamespot.com/jessup/4005-101293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101294/", + "id": 101294, + "name": "Gabriella", + "site_detail_url": "https://comicvine.gamespot.com/gabriella/4005-101294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101295/", + "id": 101295, + "name": "Mr. Ballard", + "site_detail_url": "https://comicvine.gamespot.com/mr-ballard/4005-101295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101296/", + "id": 101296, + "name": "Bruno", + "site_detail_url": "https://comicvine.gamespot.com/bruno/4005-101296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101297/", + "id": 101297, + "name": "Jackie Dee", + "site_detail_url": "https://comicvine.gamespot.com/jackie-dee/4005-101297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101298/", + "id": 101298, + "name": "Flynn Cullen", + "site_detail_url": "https://comicvine.gamespot.com/flynn-cullen/4005-101298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101299/", + "id": 101299, + "name": "Buck Wrango", + "site_detail_url": "https://comicvine.gamespot.com/buck-wrango/4005-101299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101300/", + "id": 101300, + "name": "Tony Rhee", + "site_detail_url": "https://comicvine.gamespot.com/tony-rhee/4005-101300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101301/", + "id": 101301, + "name": "Tanner Wilson", + "site_detail_url": "https://comicvine.gamespot.com/tanner-wilson/4005-101301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101302/", + "id": 101302, + "name": "Bruce Lam", + "site_detail_url": "https://comicvine.gamespot.com/bruce-lam/4005-101302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101303/", + "id": 101303, + "name": "Vlad Slozchk", + "site_detail_url": "https://comicvine.gamespot.com/vlad-slozchk/4005-101303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101304/", + "id": 101304, + "name": "Townie", + "site_detail_url": "https://comicvine.gamespot.com/townie/4005-101304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101305/", + "id": 101305, + "name": "Blackleigh", + "site_detail_url": "https://comicvine.gamespot.com/blackleigh/4005-101305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101340/", + "id": 101340, + "name": "Stana Morgan", + "site_detail_url": "https://comicvine.gamespot.com/stana-morgan/4005-101340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101352/", + "id": 101352, + "name": "Harkort", + "site_detail_url": "https://comicvine.gamespot.com/harkort/4005-101352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101353/", + "id": 101353, + "name": "Kaef", + "site_detail_url": "https://comicvine.gamespot.com/kaef/4005-101353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101452/", + "id": 101452, + "name": "Panda-Mania", + "site_detail_url": "https://comicvine.gamespot.com/panda-mania/4005-101452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101482/", + "id": 101482, + "name": "Cape Crow", + "site_detail_url": "https://comicvine.gamespot.com/cape-crow/4005-101482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101483/", + "id": 101483, + "name": "Silk", + "site_detail_url": "https://comicvine.gamespot.com/silk/4005-101483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101484/", + "id": 101484, + "name": "Clash", + "site_detail_url": "https://comicvine.gamespot.com/clash/4005-101484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101485/", + "id": 101485, + "name": "Douglas Alligood", + "site_detail_url": "https://comicvine.gamespot.com/douglas-alligood/4005-101485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101498/", + "id": 101498, + "name": "Le Necrogateur", + "site_detail_url": "https://comicvine.gamespot.com/le-necrogateur/4005-101498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101579/", + "id": 101579, + "name": "Nails", + "site_detail_url": "https://comicvine.gamespot.com/nails/4005-101579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101580/", + "id": 101580, + "name": "Tommy Cullen", + "site_detail_url": "https://comicvine.gamespot.com/tommy-cullen/4005-101580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101581/", + "id": 101581, + "name": "Carson", + "site_detail_url": "https://comicvine.gamespot.com/carson/4005-101581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101582/", + "id": 101582, + "name": "Wills", + "site_detail_url": "https://comicvine.gamespot.com/wills/4005-101582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101583/", + "id": 101583, + "name": "Tess Clay", + "site_detail_url": "https://comicvine.gamespot.com/tess-clay/4005-101583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101584/", + "id": 101584, + "name": "Barnes", + "site_detail_url": "https://comicvine.gamespot.com/barnes/4005-101584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101585/", + "id": 101585, + "name": "Clyde Allen Durkin", + "site_detail_url": "https://comicvine.gamespot.com/clyde-allen-durkin/4005-101585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101586/", + "id": 101586, + "name": "Dr. Grosz", + "site_detail_url": "https://comicvine.gamespot.com/dr-grosz/4005-101586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101587/", + "id": 101587, + "name": "Amy Bendix", + "site_detail_url": "https://comicvine.gamespot.com/amy-bendix/4005-101587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101588/", + "id": 101588, + "name": "Sheriff Bendix", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-bendix/4005-101588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101590/", + "id": 101590, + "name": "Zhang", + "site_detail_url": "https://comicvine.gamespot.com/zhang/4005-101590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101675/", + "id": 101675, + "name": "Princess Lynx", + "site_detail_url": "https://comicvine.gamespot.com/princess-lynx/4005-101675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101678/", + "id": 101678, + "name": "Jerry Powers", + "site_detail_url": "https://comicvine.gamespot.com/jerry-powers/4005-101678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101686/", + "id": 101686, + "name": "Vickie Danner", + "site_detail_url": "https://comicvine.gamespot.com/vickie-danner/4005-101686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101688/", + "id": 101688, + "name": "Toryn Farr", + "site_detail_url": "https://comicvine.gamespot.com/toryn-farr/4005-101688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101689/", + "id": 101689, + "name": "Terry Burns", + "site_detail_url": "https://comicvine.gamespot.com/terry-burns/4005-101689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101690/", + "id": 101690, + "name": "Motta", + "site_detail_url": "https://comicvine.gamespot.com/motta/4005-101690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101691/", + "id": 101691, + "name": "Munch", + "site_detail_url": "https://comicvine.gamespot.com/munch/4005-101691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101692/", + "id": 101692, + "name": "Adams", + "site_detail_url": "https://comicvine.gamespot.com/adams/4005-101692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101693/", + "id": 101693, + "name": "Fleming", + "site_detail_url": "https://comicvine.gamespot.com/fleming/4005-101693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101694/", + "id": 101694, + "name": "Stewart", + "site_detail_url": "https://comicvine.gamespot.com/stewart/4005-101694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101695/", + "id": 101695, + "name": "Sylvia Grace", + "site_detail_url": "https://comicvine.gamespot.com/sylvia-grace/4005-101695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101696/", + "id": 101696, + "name": "Andrew Disanto", + "site_detail_url": "https://comicvine.gamespot.com/andrew-disanto/4005-101696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101731/", + "id": 101731, + "name": "Kyle Sarnoff", + "site_detail_url": "https://comicvine.gamespot.com/kyle-sarnoff/4005-101731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101732/", + "id": 101732, + "name": "Josh Dubose", + "site_detail_url": "https://comicvine.gamespot.com/josh-dubose/4005-101732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101733/", + "id": 101733, + "name": "Otto Kozlowski", + "site_detail_url": "https://comicvine.gamespot.com/otto-kozlowski/4005-101733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101734/", + "id": 101734, + "name": "Marek Kozlowski", + "site_detail_url": "https://comicvine.gamespot.com/marek-kozlowski/4005-101734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101735/", + "id": 101735, + "name": "Ostap", + "site_detail_url": "https://comicvine.gamespot.com/ostap/4005-101735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101736/", + "id": 101736, + "name": "Natalie Niman", + "site_detail_url": "https://comicvine.gamespot.com/natalie-niman/4005-101736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101737/", + "id": 101737, + "name": "Denise Niman", + "site_detail_url": "https://comicvine.gamespot.com/denise-niman/4005-101737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101738/", + "id": 101738, + "name": "Howard Aguello", + "site_detail_url": "https://comicvine.gamespot.com/howard-aguello/4005-101738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101758/", + "id": 101758, + "name": "Hugo Haversham", + "site_detail_url": "https://comicvine.gamespot.com/hugo-haversham/4005-101758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101759/", + "id": 101759, + "name": "Saul Creed", + "site_detail_url": "https://comicvine.gamespot.com/saul-creed/4005-101759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101768/", + "id": 101768, + "name": "Doctor Burroughs", + "site_detail_url": "https://comicvine.gamespot.com/doctor-burroughs/4005-101768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101769/", + "id": 101769, + "name": "Doctor Cronenburg", + "site_detail_url": "https://comicvine.gamespot.com/doctor-cronenburg/4005-101769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101776/", + "id": 101776, + "name": "Orville", + "site_detail_url": "https://comicvine.gamespot.com/orville/4005-101776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101777/", + "id": 101777, + "name": "Decay", + "site_detail_url": "https://comicvine.gamespot.com/decay/4005-101777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101807/", + "id": 101807, + "name": "Maguire", + "site_detail_url": "https://comicvine.gamespot.com/maguire/4005-101807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101818/", + "id": 101818, + "name": "Doctor Zwerling", + "site_detail_url": "https://comicvine.gamespot.com/doctor-zwerling/4005-101818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101882/", + "id": 101882, + "name": "Quinn McIntyre", + "site_detail_url": "https://comicvine.gamespot.com/quinn-mcintyre/4005-101882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101901/", + "id": 101901, + "name": "Forget Me Not", + "site_detail_url": "https://comicvine.gamespot.com/forget-me-not/4005-101901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101919/", + "id": 101919, + "name": "Bloody Lips", + "site_detail_url": "https://comicvine.gamespot.com/bloody-lips/4005-101919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-101920/", + "id": 101920, + "name": "Matchmaker", + "site_detail_url": "https://comicvine.gamespot.com/matchmaker/4005-101920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102027/", + "id": 102027, + "name": "Rook", + "site_detail_url": "https://comicvine.gamespot.com/rook/4005-102027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102035/", + "id": 102035, + "name": "Gungnir", + "site_detail_url": "https://comicvine.gamespot.com/gungnir/4005-102035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102110/", + "id": 102110, + "name": "Grumpy", + "site_detail_url": "https://comicvine.gamespot.com/grumpy/4005-102110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102111/", + "id": 102111, + "name": "Daniel Wakeford", + "site_detail_url": "https://comicvine.gamespot.com/daniel-wakeford/4005-102111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102112/", + "id": 102112, + "name": "Eli Morrow", + "site_detail_url": "https://comicvine.gamespot.com/eli-morrow/4005-102112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102113/", + "id": 102113, + "name": "Remlik", + "site_detail_url": "https://comicvine.gamespot.com/remlik/4005-102113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102141/", + "id": 102141, + "name": "Bulldozer", + "site_detail_url": "https://comicvine.gamespot.com/bulldozer/4005-102141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102340/", + "id": 102340, + "name": "Lucifer", + "site_detail_url": "https://comicvine.gamespot.com/lucifer/4005-102340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102341/", + "id": 102341, + "name": "Oliver", + "site_detail_url": "https://comicvine.gamespot.com/oliver/4005-102341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102342/", + "id": 102342, + "name": "Figaro", + "site_detail_url": "https://comicvine.gamespot.com/figaro/4005-102342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102445/", + "id": 102445, + "name": "Captain Justice", + "site_detail_url": "https://comicvine.gamespot.com/captain-justice/4005-102445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102495/", + "id": 102495, + "name": "Atli Wodendottir", + "site_detail_url": "https://comicvine.gamespot.com/atli-wodendottir/4005-102495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102496/", + "id": 102496, + "name": "Frigg Wodendottir", + "site_detail_url": "https://comicvine.gamespot.com/frigg-wodendottir/4005-102496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102497/", + "id": 102497, + "name": "Ellisiv Wodendottir", + "site_detail_url": "https://comicvine.gamespot.com/ellisiv-wodendottir/4005-102497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102502/", + "id": 102502, + "name": "Vladimir", + "site_detail_url": "https://comicvine.gamespot.com/vladimir/4005-102502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102679/", + "id": 102679, + "name": "Cadivan", + "site_detail_url": "https://comicvine.gamespot.com/cadivan/4005-102679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102781/", + "id": 102781, + "name": "Sooey Pig", + "site_detail_url": "https://comicvine.gamespot.com/sooey-pig/4005-102781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102793/", + "id": 102793, + "name": "Akeem", + "site_detail_url": "https://comicvine.gamespot.com/akeem/4005-102793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102794/", + "id": 102794, + "name": "Gabriela Pertuz", + "site_detail_url": "https://comicvine.gamespot.com/gabriela-pertuz/4005-102794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102830/", + "id": 102830, + "name": "Cordelia Delgado", + "site_detail_url": "https://comicvine.gamespot.com/cordelia-delgado/4005-102830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102831/", + "id": 102831, + "name": "Coral Thorin", + "site_detail_url": "https://comicvine.gamespot.com/coral-thorin/4005-102831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102832/", + "id": 102832, + "name": "Vinatos", + "site_detail_url": "https://comicvine.gamespot.com/vinatos/4005-102832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102911/", + "id": 102911, + "name": "Viciada", + "site_detail_url": "https://comicvine.gamespot.com/viciada/4005-102911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102912/", + "id": 102912, + "name": "Adur", + "site_detail_url": "https://comicvine.gamespot.com/adur/4005-102912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102913/", + "id": 102913, + "name": "Cairn", + "site_detail_url": "https://comicvine.gamespot.com/cairn/4005-102913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102927/", + "id": 102927, + "name": "Hart Thorin", + "site_detail_url": "https://comicvine.gamespot.com/hart-thorin/4005-102927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102950/", + "id": 102950, + "name": "Hikaru-Sama", + "site_detail_url": "https://comicvine.gamespot.com/hikaru-sama/4005-102950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102959/", + "id": 102959, + "name": "Chynae", + "site_detail_url": "https://comicvine.gamespot.com/chynae/4005-102959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102966/", + "id": 102966, + "name": "Zeno", + "site_detail_url": "https://comicvine.gamespot.com/zeno/4005-102966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102967/", + "id": 102967, + "name": "Eddie Dean", + "site_detail_url": "https://comicvine.gamespot.com/eddie-dean/4005-102967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-102991/", + "id": 102991, + "name": "Yvette Steckley Douglas", + "site_detail_url": "https://comicvine.gamespot.com/yvette-steckley-douglas/4005-102991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103091/", + "id": 103091, + "name": "Rollo", + "site_detail_url": "https://comicvine.gamespot.com/rollo/4005-103091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103092/", + "id": 103092, + "name": "Nessa", + "site_detail_url": "https://comicvine.gamespot.com/nessa/4005-103092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103093/", + "id": 103093, + "name": "The Bear", + "site_detail_url": "https://comicvine.gamespot.com/the-bear/4005-103093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103095/", + "id": 103095, + "name": "Cynthia Cullen", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-cullen/4005-103095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103132/", + "id": 103132, + "name": "Adam Keith", + "site_detail_url": "https://comicvine.gamespot.com/adam-keith/4005-103132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103133/", + "id": 103133, + "name": "North Norrell", + "site_detail_url": "https://comicvine.gamespot.com/north-norrell/4005-103133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103134/", + "id": 103134, + "name": "Sachet Nelson", + "site_detail_url": "https://comicvine.gamespot.com/sachet-nelson/4005-103134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103135/", + "id": 103135, + "name": "Todd Speers", + "site_detail_url": "https://comicvine.gamespot.com/todd-speers/4005-103135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103196/", + "id": 103196, + "name": "Maxine Walters", + "site_detail_url": "https://comicvine.gamespot.com/maxine-walters/4005-103196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103197/", + "id": 103197, + "name": "Iron Fist (H'ylthri)", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-hylthri/4005-103197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103203/", + "id": 103203, + "name": "Meruda", + "site_detail_url": "https://comicvine.gamespot.com/meruda/4005-103203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103233/", + "id": 103233, + "name": "Radiance", + "site_detail_url": "https://comicvine.gamespot.com/radiance/4005-103233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103239/", + "id": 103239, + "name": "Xian Zheng", + "site_detail_url": "https://comicvine.gamespot.com/xian-zheng/4005-103239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103240/", + "id": 103240, + "name": "Vector", + "site_detail_url": "https://comicvine.gamespot.com/vector/4005-103240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103241/", + "id": 103241, + "name": "Devastator", + "site_detail_url": "https://comicvine.gamespot.com/devastator/4005-103241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103243/", + "id": 103243, + "name": "Creeper", + "site_detail_url": "https://comicvine.gamespot.com/creeper/4005-103243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103258/", + "id": 103258, + "name": "Titanis", + "site_detail_url": "https://comicvine.gamespot.com/titanis/4005-103258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103276/", + "id": 103276, + "name": "Baroque", + "site_detail_url": "https://comicvine.gamespot.com/baroque/4005-103276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103277/", + "id": 103277, + "name": "Vass", + "site_detail_url": "https://comicvine.gamespot.com/vass/4005-103277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103282/", + "id": 103282, + "name": "Ted Brautigan", + "site_detail_url": "https://comicvine.gamespot.com/ted-brautigan/4005-103282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103338/", + "id": 103338, + "name": "Colander Girl", + "site_detail_url": "https://comicvine.gamespot.com/colander-girl/4005-103338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103409/", + "id": 103409, + "name": "Aiden Tolliver", + "site_detail_url": "https://comicvine.gamespot.com/aiden-tolliver/4005-103409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103418/", + "id": 103418, + "name": "Starbolt", + "site_detail_url": "https://comicvine.gamespot.com/starbolt/4005-103418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103419/", + "id": 103419, + "name": "Neutron", + "site_detail_url": "https://comicvine.gamespot.com/neutron/4005-103419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103429/", + "id": 103429, + "name": "Plutonia", + "site_detail_url": "https://comicvine.gamespot.com/plutonia/4005-103429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103563/", + "id": 103563, + "name": "Figment", + "site_detail_url": "https://comicvine.gamespot.com/figment/4005-103563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103564/", + "id": 103564, + "name": "Blarion Mercurial", + "site_detail_url": "https://comicvine.gamespot.com/blarion-mercurial/4005-103564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103568/", + "id": 103568, + "name": "Memento Mori", + "site_detail_url": "https://comicvine.gamespot.com/memento-mori/4005-103568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103581/", + "id": 103581, + "name": "Constance Molina", + "site_detail_url": "https://comicvine.gamespot.com/constance-molina/4005-103581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103583/", + "id": 103583, + "name": "Gummi", + "site_detail_url": "https://comicvine.gamespot.com/gummi/4005-103583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103584/", + "id": 103584, + "name": "Haus", + "site_detail_url": "https://comicvine.gamespot.com/haus/4005-103584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103585/", + "id": 103585, + "name": "Feuer", + "site_detail_url": "https://comicvine.gamespot.com/feuer/4005-103585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103586/", + "id": 103586, + "name": "Trimega", + "site_detail_url": "https://comicvine.gamespot.com/trimega/4005-103586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103602/", + "id": 103602, + "name": "Billy the Bumbler", + "site_detail_url": "https://comicvine.gamespot.com/billy-the-bumbler/4005-103602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103621/", + "id": 103621, + "name": "Kirkegaard", + "site_detail_url": "https://comicvine.gamespot.com/kirkegaard/4005-103621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103642/", + "id": 103642, + "name": "Marcus Tsung", + "site_detail_url": "https://comicvine.gamespot.com/marcus-tsung/4005-103642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103660/", + "id": 103660, + "name": "Henry Hayes", + "site_detail_url": "https://comicvine.gamespot.com/henry-hayes/4005-103660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103662/", + "id": 103662, + "name": "Tic", + "site_detail_url": "https://comicvine.gamespot.com/tic/4005-103662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103685/", + "id": 103685, + "name": "Bee", + "site_detail_url": "https://comicvine.gamespot.com/bee/4005-103685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103686/", + "id": 103686, + "name": "Jackie", + "site_detail_url": "https://comicvine.gamespot.com/jackie/4005-103686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103797/", + "id": 103797, + "name": "Master of the Sun", + "site_detail_url": "https://comicvine.gamespot.com/master-of-the-sun/4005-103797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103798/", + "id": 103798, + "name": "Oy", + "site_detail_url": "https://comicvine.gamespot.com/oy/4005-103798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103889/", + "id": 103889, + "name": "Sean the Plumber", + "site_detail_url": "https://comicvine.gamespot.com/sean-the-plumber/4005-103889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103890/", + "id": 103890, + "name": "Vincent Briscoe", + "site_detail_url": "https://comicvine.gamespot.com/vincent-briscoe/4005-103890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103891/", + "id": 103891, + "name": "Franky", + "site_detail_url": "https://comicvine.gamespot.com/franky/4005-103891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103892/", + "id": 103892, + "name": "Candace Cassidy", + "site_detail_url": "https://comicvine.gamespot.com/candace-cassidy/4005-103892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103965/", + "id": 103965, + "name": "Jo", + "site_detail_url": "https://comicvine.gamespot.com/jo/4005-103965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103966/", + "id": 103966, + "name": "Bernie", + "site_detail_url": "https://comicvine.gamespot.com/bernie/4005-103966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103967/", + "id": 103967, + "name": "Tony", + "site_detail_url": "https://comicvine.gamespot.com/tony/4005-103967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-103968/", + "id": 103968, + "name": "Diana", + "site_detail_url": "https://comicvine.gamespot.com/diana/4005-103968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104050/", + "id": 104050, + "name": "Baby Killer", + "site_detail_url": "https://comicvine.gamespot.com/baby-killer/4005-104050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104051/", + "id": 104051, + "name": "Sliver", + "site_detail_url": "https://comicvine.gamespot.com/sliver/4005-104051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104052/", + "id": 104052, + "name": "Tumult", + "site_detail_url": "https://comicvine.gamespot.com/tumult/4005-104052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104053/", + "id": 104053, + "name": "Swordswoman", + "site_detail_url": "https://comicvine.gamespot.com/swordswoman/4005-104053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104103/", + "id": 104103, + "name": "Mygdalla", + "site_detail_url": "https://comicvine.gamespot.com/mygdalla/4005-104103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104104/", + "id": 104104, + "name": "Battle-Lon", + "site_detail_url": "https://comicvine.gamespot.com/battle-lon/4005-104104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104113/", + "id": 104113, + "name": "Frank", + "site_detail_url": "https://comicvine.gamespot.com/frank/4005-104113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104138/", + "id": 104138, + "name": "Darren Cross", + "site_detail_url": "https://comicvine.gamespot.com/darren-cross/4005-104138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104143/", + "id": 104143, + "name": "Chuckles", + "site_detail_url": "https://comicvine.gamespot.com/chuckles/4005-104143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104144/", + "id": 104144, + "name": "Drive", + "site_detail_url": "https://comicvine.gamespot.com/drive/4005-104144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104145/", + "id": 104145, + "name": "Tommy", + "site_detail_url": "https://comicvine.gamespot.com/tommy/4005-104145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104146/", + "id": 104146, + "name": "Kathleen", + "site_detail_url": "https://comicvine.gamespot.com/kathleen/4005-104146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104147/", + "id": 104147, + "name": "Artie", + "site_detail_url": "https://comicvine.gamespot.com/artie/4005-104147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104177/", + "id": 104177, + "name": "Howard Silver", + "site_detail_url": "https://comicvine.gamespot.com/howard-silver/4005-104177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104178/", + "id": 104178, + "name": "Derek Malloy", + "site_detail_url": "https://comicvine.gamespot.com/derek-malloy/4005-104178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104218/", + "id": 104218, + "name": "Max Fisher", + "site_detail_url": "https://comicvine.gamespot.com/max-fisher/4005-104218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104283/", + "id": 104283, + "name": "Whitney Hammond III", + "site_detail_url": "https://comicvine.gamespot.com/whitney-hammond-iii/4005-104283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104284/", + "id": 104284, + "name": "Omar", + "site_detail_url": "https://comicvine.gamespot.com/omar/4005-104284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104285/", + "id": 104285, + "name": "Fatima", + "site_detail_url": "https://comicvine.gamespot.com/fatima/4005-104285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104286/", + "id": 104286, + "name": "Claire Delune", + "site_detail_url": "https://comicvine.gamespot.com/claire-delune/4005-104286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104419/", + "id": 104419, + "name": "Antjie Qoboza", + "site_detail_url": "https://comicvine.gamespot.com/antjie-qoboza/4005-104419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104458/", + "id": 104458, + "name": "Jake Waffles", + "site_detail_url": "https://comicvine.gamespot.com/jake-waffles/4005-104458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104459/", + "id": 104459, + "name": "Hollow", + "site_detail_url": "https://comicvine.gamespot.com/hollow/4005-104459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104460/", + "id": 104460, + "name": "Fume", + "site_detail_url": "https://comicvine.gamespot.com/fume/4005-104460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104461/", + "id": 104461, + "name": "Mister Whiskers", + "site_detail_url": "https://comicvine.gamespot.com/mister-whiskers/4005-104461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104462/", + "id": 104462, + "name": "Spark", + "site_detail_url": "https://comicvine.gamespot.com/spark/4005-104462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104470/", + "id": 104470, + "name": "Aaron Aikman", + "site_detail_url": "https://comicvine.gamespot.com/aaron-aikman/4005-104470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104549/", + "id": 104549, + "name": "The Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-human-torch/4005-104549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104550/", + "id": 104550, + "name": "Enchantress", + "site_detail_url": "https://comicvine.gamespot.com/enchantress/4005-104550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104551/", + "id": 104551, + "name": "Slip", + "site_detail_url": "https://comicvine.gamespot.com/slip/4005-104551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104552/", + "id": 104552, + "name": "Fantasm", + "site_detail_url": "https://comicvine.gamespot.com/fantasm/4005-104552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104554/", + "id": 104554, + "name": "Chimera", + "site_detail_url": "https://comicvine.gamespot.com/chimera/4005-104554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104567/", + "id": 104567, + "name": "Jan", + "site_detail_url": "https://comicvine.gamespot.com/jan/4005-104567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104568/", + "id": 104568, + "name": "7781", + "site_detail_url": "https://comicvine.gamespot.com/7781/4005-104568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104604/", + "id": 104604, + "name": "Emile Chigaru", + "site_detail_url": "https://comicvine.gamespot.com/emile-chigaru/4005-104604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104778/", + "id": 104778, + "name": "DeKooning", + "site_detail_url": "https://comicvine.gamespot.com/dekooning/4005-104778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104779/", + "id": 104779, + "name": "Cholly", + "site_detail_url": "https://comicvine.gamespot.com/cholly/4005-104779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104780/", + "id": 104780, + "name": "Victoria of Spartax", + "site_detail_url": "https://comicvine.gamespot.com/victoria-of-spartax/4005-104780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104781/", + "id": 104781, + "name": "Amalya", + "site_detail_url": "https://comicvine.gamespot.com/amalya/4005-104781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104782/", + "id": 104782, + "name": "Kaleeko", + "site_detail_url": "https://comicvine.gamespot.com/kaleeko/4005-104782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104783/", + "id": 104783, + "name": "Thumbnail", + "site_detail_url": "https://comicvine.gamespot.com/thumbnail/4005-104783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104784/", + "id": 104784, + "name": "Grace Valentine", + "site_detail_url": "https://comicvine.gamespot.com/grace-valentine/4005-104784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104785/", + "id": 104785, + "name": "Miss Kay", + "site_detail_url": "https://comicvine.gamespot.com/miss-kay/4005-104785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104788/", + "id": 104788, + "name": "Eirtaé", + "site_detail_url": "https://comicvine.gamespot.com/eirtae/4005-104788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104789/", + "id": 104789, + "name": "Trynka", + "site_detail_url": "https://comicvine.gamespot.com/trynka/4005-104789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104838/", + "id": 104838, + "name": "Knot", + "site_detail_url": "https://comicvine.gamespot.com/knot/4005-104838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104839/", + "id": 104839, + "name": "Frick", + "site_detail_url": "https://comicvine.gamespot.com/frick/4005-104839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104912/", + "id": 104912, + "name": "Adomox", + "site_detail_url": "https://comicvine.gamespot.com/adomox/4005-104912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104913/", + "id": 104913, + "name": "Emiliasta", + "site_detail_url": "https://comicvine.gamespot.com/emiliasta/4005-104913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104926/", + "id": 104926, + "name": "Woodrow McCord", + "site_detail_url": "https://comicvine.gamespot.com/woodrow-mccord/4005-104926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104927/", + "id": 104927, + "name": "Matilda Fury", + "site_detail_url": "https://comicvine.gamespot.com/matilda-fury/4005-104927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104934/", + "id": 104934, + "name": "Ellie Sims", + "site_detail_url": "https://comicvine.gamespot.com/ellie-sims/4005-104934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104935/", + "id": 104935, + "name": "Mia Sims", + "site_detail_url": "https://comicvine.gamespot.com/mia-sims/4005-104935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104941/", + "id": 104941, + "name": "Jack Chain", + "site_detail_url": "https://comicvine.gamespot.com/jack-chain/4005-104941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104953/", + "id": 104953, + "name": "Rebecca Stevens", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-stevens/4005-104953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104960/", + "id": 104960, + "name": "Bligh", + "site_detail_url": "https://comicvine.gamespot.com/bligh/4005-104960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-104961/", + "id": 104961, + "name": "Frack", + "site_detail_url": "https://comicvine.gamespot.com/frack/4005-104961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105055/", + "id": 105055, + "name": "Agent Locke", + "site_detail_url": "https://comicvine.gamespot.com/agent-locke/4005-105055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105056/", + "id": 105056, + "name": "Agent Baines", + "site_detail_url": "https://comicvine.gamespot.com/agent-baines/4005-105056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105060/", + "id": 105060, + "name": "Mick Dundee", + "site_detail_url": "https://comicvine.gamespot.com/mick-dundee/4005-105060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105061/", + "id": 105061, + "name": "Reg", + "site_detail_url": "https://comicvine.gamespot.com/reg/4005-105061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105062/", + "id": 105062, + "name": "Baby Boy", + "site_detail_url": "https://comicvine.gamespot.com/baby-boy/4005-105062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105063/", + "id": 105063, + "name": "Tempest Monroe", + "site_detail_url": "https://comicvine.gamespot.com/tempest-monroe/4005-105063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105091/", + "id": 105091, + "name": "Joshua Utler", + "site_detail_url": "https://comicvine.gamespot.com/joshua-utler/4005-105091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105092/", + "id": 105092, + "name": "Ellie Camacho", + "site_detail_url": "https://comicvine.gamespot.com/ellie-camacho/4005-105092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105175/", + "id": 105175, + "name": "Stass Allie", + "site_detail_url": "https://comicvine.gamespot.com/stass-allie/4005-105175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105201/", + "id": 105201, + "name": "Dagora", + "site_detail_url": "https://comicvine.gamespot.com/dagora/4005-105201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105208/", + "id": 105208, + "name": "Joe Malizia", + "site_detail_url": "https://comicvine.gamespot.com/joe-malizia/4005-105208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105209/", + "id": 105209, + "name": "Harry Thornton", + "site_detail_url": "https://comicvine.gamespot.com/harry-thornton/4005-105209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105210/", + "id": 105210, + "name": "Eddie Lau", + "site_detail_url": "https://comicvine.gamespot.com/eddie-lau/4005-105210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105211/", + "id": 105211, + "name": "Tall Joe Small", + "site_detail_url": "https://comicvine.gamespot.com/tall-joe-small/4005-105211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105261/", + "id": 105261, + "name": "Artaud Derrida", + "site_detail_url": "https://comicvine.gamespot.com/artaud-derrida/4005-105261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105319/", + "id": 105319, + "name": "Briar Raleigh", + "site_detail_url": "https://comicvine.gamespot.com/briar-raleigh/4005-105319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105348/", + "id": 105348, + "name": "Julius Dupree", + "site_detail_url": "https://comicvine.gamespot.com/julius-dupree/4005-105348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105349/", + "id": 105349, + "name": "Patrick Rourke", + "site_detail_url": "https://comicvine.gamespot.com/patrick-rourke/4005-105349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105350/", + "id": 105350, + "name": "Oboroth", + "site_detail_url": "https://comicvine.gamespot.com/oboroth/4005-105350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105351/", + "id": 105351, + "name": "Khristina", + "site_detail_url": "https://comicvine.gamespot.com/khristina/4005-105351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105352/", + "id": 105352, + "name": "Viktor", + "site_detail_url": "https://comicvine.gamespot.com/viktor/4005-105352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105353/", + "id": 105353, + "name": "Sergei", + "site_detail_url": "https://comicvine.gamespot.com/sergei/4005-105353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105354/", + "id": 105354, + "name": "Isolde", + "site_detail_url": "https://comicvine.gamespot.com/isolde/4005-105354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105355/", + "id": 105355, + "name": "Cadhla", + "site_detail_url": "https://comicvine.gamespot.com/cadhla/4005-105355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105356/", + "id": 105356, + "name": "Pat Bogg", + "site_detail_url": "https://comicvine.gamespot.com/pat-bogg/4005-105356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105357/", + "id": 105357, + "name": "Ardal Bogg", + "site_detail_url": "https://comicvine.gamespot.com/ardal-bogg/4005-105357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105358/", + "id": 105358, + "name": "Dougal Bogg", + "site_detail_url": "https://comicvine.gamespot.com/dougal-bogg/4005-105358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105403/", + "id": 105403, + "name": "Queen of Angels", + "site_detail_url": "https://comicvine.gamespot.com/queen-of-angels/4005-105403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105446/", + "id": 105446, + "name": "Miles Morhames", + "site_detail_url": "https://comicvine.gamespot.com/miles-morhames/4005-105446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105447/", + "id": 105447, + "name": "Director Jin", + "site_detail_url": "https://comicvine.gamespot.com/director-jin/4005-105447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105448/", + "id": 105448, + "name": "Agent Quench", + "site_detail_url": "https://comicvine.gamespot.com/agent-quench/4005-105448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105449/", + "id": 105449, + "name": "Agent Fuel", + "site_detail_url": "https://comicvine.gamespot.com/agent-fuel/4005-105449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105450/", + "id": 105450, + "name": "Agent Dynamo", + "site_detail_url": "https://comicvine.gamespot.com/agent-dynamo/4005-105450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105578/", + "id": 105578, + "name": "The Profit", + "site_detail_url": "https://comicvine.gamespot.com/the-profit/4005-105578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105581/", + "id": 105581, + "name": "Buddy Plugg", + "site_detail_url": "https://comicvine.gamespot.com/buddy-plugg/4005-105581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105589/", + "id": 105589, + "name": "Marisol Guerra", + "site_detail_url": "https://comicvine.gamespot.com/marisol-guerra/4005-105589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105611/", + "id": 105611, + "name": "Quentin Harderman", + "site_detail_url": "https://comicvine.gamespot.com/quentin-harderman/4005-105611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105612/", + "id": 105612, + "name": "Hal Jordan", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan/4005-105612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105710/", + "id": 105710, + "name": "Fahe", + "site_detail_url": "https://comicvine.gamespot.com/fahe/4005-105710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105762/", + "id": 105762, + "name": "Joe Perrett", + "site_detail_url": "https://comicvine.gamespot.com/joe-perrett/4005-105762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105770/", + "id": 105770, + "name": "Paul Rosso", + "site_detail_url": "https://comicvine.gamespot.com/paul-rosso/4005-105770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105783/", + "id": 105783, + "name": "Scorpion Boy", + "site_detail_url": "https://comicvine.gamespot.com/scorpion-boy/4005-105783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105786/", + "id": 105786, + "name": "Sandy Herkowitz", + "site_detail_url": "https://comicvine.gamespot.com/sandy-herkowitz/4005-105786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105830/", + "id": 105830, + "name": "Melinda May", + "site_detail_url": "https://comicvine.gamespot.com/melinda-may/4005-105830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105831/", + "id": 105831, + "name": "Jemma Simmons", + "site_detail_url": "https://comicvine.gamespot.com/jemma-simmons/4005-105831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105832/", + "id": 105832, + "name": "Leo Fitz", + "site_detail_url": "https://comicvine.gamespot.com/leo-fitz/4005-105832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105833/", + "id": 105833, + "name": "Grant Ward", + "site_detail_url": "https://comicvine.gamespot.com/grant-ward/4005-105833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105843/", + "id": 105843, + "name": "Faithful John", + "site_detail_url": "https://comicvine.gamespot.com/faithful-john/4005-105843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105867/", + "id": 105867, + "name": "Charlie-72", + "site_detail_url": "https://comicvine.gamespot.com/charlie-72/4005-105867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105878/", + "id": 105878, + "name": "Man Down Below", + "site_detail_url": "https://comicvine.gamespot.com/man-down-below/4005-105878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105949/", + "id": 105949, + "name": "Uno Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/uno-raccoon/4005-105949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105950/", + "id": 105950, + "name": "Duo Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/duo-raccoon/4005-105950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105951/", + "id": 105951, + "name": "Trey Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/trey-raccoon/4005-105951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-105952/", + "id": 105952, + "name": "Matthew Malloy", + "site_detail_url": "https://comicvine.gamespot.com/matthew-malloy/4005-105952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106058/", + "id": 106058, + "name": "Locust King", + "site_detail_url": "https://comicvine.gamespot.com/locust-king/4005-106058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106067/", + "id": 106067, + "name": "Nocculus", + "site_detail_url": "https://comicvine.gamespot.com/nocculus/4005-106067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106068/", + "id": 106068, + "name": "Sheath", + "site_detail_url": "https://comicvine.gamespot.com/sheath/4005-106068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106147/", + "id": 106147, + "name": "Ryan Trent", + "site_detail_url": "https://comicvine.gamespot.com/ryan-trent/4005-106147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106325/", + "id": 106325, + "name": "Nightfall", + "site_detail_url": "https://comicvine.gamespot.com/nightfall/4005-106325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106333/", + "id": 106333, + "name": "Agent Astor", + "site_detail_url": "https://comicvine.gamespot.com/agent-astor/4005-106333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106334/", + "id": 106334, + "name": "Agent Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/agent-rodriguez/4005-106334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106335/", + "id": 106335, + "name": "Grimepit", + "site_detail_url": "https://comicvine.gamespot.com/grimepit/4005-106335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106336/", + "id": 106336, + "name": "Korgo", + "site_detail_url": "https://comicvine.gamespot.com/korgo/4005-106336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106337/", + "id": 106337, + "name": "Madripoor Dragon", + "site_detail_url": "https://comicvine.gamespot.com/madripoor-dragon/4005-106337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106358/", + "id": 106358, + "name": "Sveinn", + "site_detail_url": "https://comicvine.gamespot.com/sveinn/4005-106358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106359/", + "id": 106359, + "name": "Viderdoom", + "site_detail_url": "https://comicvine.gamespot.com/viderdoom/4005-106359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106440/", + "id": 106440, + "name": "Joseph Allen Grady", + "site_detail_url": "https://comicvine.gamespot.com/joseph-allen-grady/4005-106440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106445/", + "id": 106445, + "name": "Sterilon", + "site_detail_url": "https://comicvine.gamespot.com/sterilon/4005-106445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106446/", + "id": 106446, + "name": "Flint", + "site_detail_url": "https://comicvine.gamespot.com/flint/4005-106446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106492/", + "id": 106492, + "name": "Michael Watts", + "site_detail_url": "https://comicvine.gamespot.com/michael-watts/4005-106492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106497/", + "id": 106497, + "name": "Travis Butler", + "site_detail_url": "https://comicvine.gamespot.com/travis-butler/4005-106497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106504/", + "id": 106504, + "name": "Sal", + "site_detail_url": "https://comicvine.gamespot.com/sal/4005-106504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106506/", + "id": 106506, + "name": "Roger Ramsey", + "site_detail_url": "https://comicvine.gamespot.com/roger-ramsey/4005-106506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106507/", + "id": 106507, + "name": "William Anthony", + "site_detail_url": "https://comicvine.gamespot.com/william-anthony/4005-106507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106514/", + "id": 106514, + "name": "Terrana", + "site_detail_url": "https://comicvine.gamespot.com/terrana/4005-106514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106629/", + "id": 106629, + "name": "Sonya", + "site_detail_url": "https://comicvine.gamespot.com/sonya/4005-106629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106630/", + "id": 106630, + "name": "Conrad", + "site_detail_url": "https://comicvine.gamespot.com/conrad/4005-106630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106656/", + "id": 106656, + "name": "The Quiet Man", + "site_detail_url": "https://comicvine.gamespot.com/the-quiet-man/4005-106656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106665/", + "id": 106665, + "name": "The Inventor", + "site_detail_url": "https://comicvine.gamespot.com/the-inventor/4005-106665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106814/", + "id": 106814, + "name": "Figsy Goleano", + "site_detail_url": "https://comicvine.gamespot.com/figsy-goleano/4005-106814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-106815/", + "id": 106815, + "name": "Sid Saggio", + "site_detail_url": "https://comicvine.gamespot.com/sid-saggio/4005-106815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107028/", + "id": 107028, + "name": "Anthony Tremayne", + "site_detail_url": "https://comicvine.gamespot.com/anthony-tremayne/4005-107028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107029/", + "id": 107029, + "name": "Michael Shivas", + "site_detail_url": "https://comicvine.gamespot.com/michael-shivas/4005-107029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107030/", + "id": 107030, + "name": "Nauls", + "site_detail_url": "https://comicvine.gamespot.com/nauls/4005-107030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107031/", + "id": 107031, + "name": "Professor Belanger", + "site_detail_url": "https://comicvine.gamespot.com/professor-belanger/4005-107031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107032/", + "id": 107032, + "name": "Richard Gaunt", + "site_detail_url": "https://comicvine.gamespot.com/richard-gaunt/4005-107032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107033/", + "id": 107033, + "name": "Alexandra Macready", + "site_detail_url": "https://comicvine.gamespot.com/alexandra-macready/4005-107033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107034/", + "id": 107034, + "name": "Stuart Stirling", + "site_detail_url": "https://comicvine.gamespot.com/stuart-stirling/4005-107034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107035/", + "id": 107035, + "name": "Special Agent Rhona Flemyng", + "site_detail_url": "https://comicvine.gamespot.com/special-agent-rhona-flemyng/4005-107035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107056/", + "id": 107056, + "name": "Salvatore", + "site_detail_url": "https://comicvine.gamespot.com/salvatore/4005-107056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107058/", + "id": 107058, + "name": "Kento Roe", + "site_detail_url": "https://comicvine.gamespot.com/kento-roe/4005-107058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107060/", + "id": 107060, + "name": "Brad Giardi", + "site_detail_url": "https://comicvine.gamespot.com/brad-giardi/4005-107060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107061/", + "id": 107061, + "name": "Kim Voight", + "site_detail_url": "https://comicvine.gamespot.com/kim-voight/4005-107061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107115/", + "id": 107115, + "name": "Reader", + "site_detail_url": "https://comicvine.gamespot.com/reader/4005-107115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107186/", + "id": 107186, + "name": "Blackie Clay", + "site_detail_url": "https://comicvine.gamespot.com/blackie-clay/4005-107186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107187/", + "id": 107187, + "name": "Jason Bartholomew", + "site_detail_url": "https://comicvine.gamespot.com/jason-bartholomew/4005-107187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107199/", + "id": 107199, + "name": "Steel", + "site_detail_url": "https://comicvine.gamespot.com/steel/4005-107199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107200/", + "id": 107200, + "name": "Mac Minton", + "site_detail_url": "https://comicvine.gamespot.com/mac-minton/4005-107200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107201/", + "id": 107201, + "name": "Mack North", + "site_detail_url": "https://comicvine.gamespot.com/mack-north/4005-107201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107202/", + "id": 107202, + "name": "Clem Yurdle", + "site_detail_url": "https://comicvine.gamespot.com/clem-yurdle/4005-107202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107204/", + "id": 107204, + "name": "Spike Cooley", + "site_detail_url": "https://comicvine.gamespot.com/spike-cooley/4005-107204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107205/", + "id": 107205, + "name": "Jess Cooley", + "site_detail_url": "https://comicvine.gamespot.com/jess-cooley/4005-107205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107211/", + "id": 107211, + "name": "Sting-Ray", + "site_detail_url": "https://comicvine.gamespot.com/sting-ray/4005-107211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107212/", + "id": 107212, + "name": "Towerig Oak", + "site_detail_url": "https://comicvine.gamespot.com/towerig-oak/4005-107212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107213/", + "id": 107213, + "name": "Patch Eiler", + "site_detail_url": "https://comicvine.gamespot.com/patch-eiler/4005-107213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107276/", + "id": 107276, + "name": "Mother Bones", + "site_detail_url": "https://comicvine.gamespot.com/mother-bones/4005-107276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107277/", + "id": 107277, + "name": "Grove", + "site_detail_url": "https://comicvine.gamespot.com/grove/4005-107277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107297/", + "id": 107297, + "name": "Forey", + "site_detail_url": "https://comicvine.gamespot.com/forey/4005-107297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107298/", + "id": 107298, + "name": "Iso", + "site_detail_url": "https://comicvine.gamespot.com/iso/4005-107298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107334/", + "id": 107334, + "name": "Claus Carmody", + "site_detail_url": "https://comicvine.gamespot.com/claus-carmody/4005-107334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107335/", + "id": 107335, + "name": "Emily Thorne", + "site_detail_url": "https://comicvine.gamespot.com/emily-thorne/4005-107335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107384/", + "id": 107384, + "name": "Suzi Pazuzu", + "site_detail_url": "https://comicvine.gamespot.com/suzi-pazuzu/4005-107384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107443/", + "id": 107443, + "name": "Tiberius", + "site_detail_url": "https://comicvine.gamespot.com/tiberius/4005-107443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107444/", + "id": 107444, + "name": "Lydia", + "site_detail_url": "https://comicvine.gamespot.com/lydia/4005-107444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107456/", + "id": 107456, + "name": "Manifold Tyger", + "site_detail_url": "https://comicvine.gamespot.com/manifold-tyger/4005-107456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107457/", + "id": 107457, + "name": "D'Keth", + "site_detail_url": "https://comicvine.gamespot.com/d-keth/4005-107457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107458/", + "id": 107458, + "name": "Woodro", + "site_detail_url": "https://comicvine.gamespot.com/woodro/4005-107458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107459/", + "id": 107459, + "name": "Dap", + "site_detail_url": "https://comicvine.gamespot.com/dap/4005-107459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107460/", + "id": 107460, + "name": "Funtzel", + "site_detail_url": "https://comicvine.gamespot.com/funtzel/4005-107460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107486/", + "id": 107486, + "name": "Kurt Dagmar", + "site_detail_url": "https://comicvine.gamespot.com/kurt-dagmar/4005-107486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107487/", + "id": 107487, + "name": "Bekker", + "site_detail_url": "https://comicvine.gamespot.com/bekker/4005-107487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107522/", + "id": 107522, + "name": "Patton Parnell", + "site_detail_url": "https://comicvine.gamespot.com/patton-parnell/4005-107522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107578/", + "id": 107578, + "name": "Gloria Dean", + "site_detail_url": "https://comicvine.gamespot.com/gloria-dean/4005-107578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107579/", + "id": 107579, + "name": "Jack Andolini", + "site_detail_url": "https://comicvine.gamespot.com/jack-andolini/4005-107579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107639/", + "id": 107639, + "name": "Karn", + "site_detail_url": "https://comicvine.gamespot.com/karn/4005-107639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107701/", + "id": 107701, + "name": "Jamie", + "site_detail_url": "https://comicvine.gamespot.com/jamie/4005-107701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107702/", + "id": 107702, + "name": "Lahni", + "site_detail_url": "https://comicvine.gamespot.com/lahni/4005-107702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107710/", + "id": 107710, + "name": "Assassin-8", + "site_detail_url": "https://comicvine.gamespot.com/assassin-8/4005-107710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107711/", + "id": 107711, + "name": "Ziggy Karst", + "site_detail_url": "https://comicvine.gamespot.com/ziggy-karst/4005-107711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107814/", + "id": 107814, + "name": "Raptore", + "site_detail_url": "https://comicvine.gamespot.com/raptore/4005-107814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107831/", + "id": 107831, + "name": "Mrs. Dean", + "site_detail_url": "https://comicvine.gamespot.com/mrs-dean/4005-107831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107837/", + "id": 107837, + "name": "Guero Valdez", + "site_detail_url": "https://comicvine.gamespot.com/guero-valdez/4005-107837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107928/", + "id": 107928, + "name": "Captain Citrus", + "site_detail_url": "https://comicvine.gamespot.com/captain-citrus/4005-107928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107940/", + "id": 107940, + "name": "Naamurah", + "site_detail_url": "https://comicvine.gamespot.com/naamurah/4005-107940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107941/", + "id": 107941, + "name": "Red Eye", + "site_detail_url": "https://comicvine.gamespot.com/red-eye/4005-107941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-107942/", + "id": 107942, + "name": "Hitzig", + "site_detail_url": "https://comicvine.gamespot.com/hitzig/4005-107942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108030/", + "id": 108030, + "name": "Kaori Ikegami", + "site_detail_url": "https://comicvine.gamespot.com/kaori-ikegami/4005-108030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108078/", + "id": 108078, + "name": "Naja", + "site_detail_url": "https://comicvine.gamespot.com/naja/4005-108078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108079/", + "id": 108079, + "name": "Anna", + "site_detail_url": "https://comicvine.gamespot.com/anna/4005-108079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108080/", + "id": 108080, + "name": "Jalfaha Dahn", + "site_detail_url": "https://comicvine.gamespot.com/jalfaha-dahn/4005-108080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108081/", + "id": 108081, + "name": "Mussaret", + "site_detail_url": "https://comicvine.gamespot.com/mussaret/4005-108081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108082/", + "id": 108082, + "name": "Brix", + "site_detail_url": "https://comicvine.gamespot.com/brix/4005-108082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108083/", + "id": 108083, + "name": "Bora", + "site_detail_url": "https://comicvine.gamespot.com/bora/4005-108083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108084/", + "id": 108084, + "name": "Daemos", + "site_detail_url": "https://comicvine.gamespot.com/daemos/4005-108084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108085/", + "id": 108085, + "name": "Verna", + "site_detail_url": "https://comicvine.gamespot.com/verna/4005-108085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108086/", + "id": 108086, + "name": "Jennix", + "site_detail_url": "https://comicvine.gamespot.com/jennix/4005-108086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108093/", + "id": 108093, + "name": "Iron Cross", + "site_detail_url": "https://comicvine.gamespot.com/iron-cross/4005-108093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108095/", + "id": 108095, + "name": "Le Coq Bleu", + "site_detail_url": "https://comicvine.gamespot.com/le-coq-bleu/4005-108095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108096/", + "id": 108096, + "name": "Capitaine Fantome", + "site_detail_url": "https://comicvine.gamespot.com/capitaine-fantome/4005-108096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108097/", + "id": 108097, + "name": "Prochaine Sortie", + "site_detail_url": "https://comicvine.gamespot.com/prochaine-sortie/4005-108097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108120/", + "id": 108120, + "name": "Lord All-Blud the Inexorable", + "site_detail_url": "https://comicvine.gamespot.com/lord-all-blud-the-inexorable/4005-108120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108121/", + "id": 108121, + "name": "Lady Vile the Goddess of Atrocities", + "site_detail_url": "https://comicvine.gamespot.com/lady-vile-the-goddess-of-atrocities/4005-108121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108122/", + "id": 108122, + "name": "Krawskin the Cruel", + "site_detail_url": "https://comicvine.gamespot.com/krawskin-the-cruel/4005-108122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108123/", + "id": 108123, + "name": "Hoggscar The Harsh", + "site_detail_url": "https://comicvine.gamespot.com/hoggscar-the-harsh/4005-108123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108145/", + "id": 108145, + "name": "Uncle Ted", + "site_detail_url": "https://comicvine.gamespot.com/uncle-ted/4005-108145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108146/", + "id": 108146, + "name": "Sara Jane", + "site_detail_url": "https://comicvine.gamespot.com/sara-jane/4005-108146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108148/", + "id": 108148, + "name": "Warrior Zero", + "site_detail_url": "https://comicvine.gamespot.com/warrior-zero/4005-108148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108214/", + "id": 108214, + "name": "Geena Drake", + "site_detail_url": "https://comicvine.gamespot.com/geena-drake/4005-108214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108215/", + "id": 108215, + "name": "Stormfront", + "site_detail_url": "https://comicvine.gamespot.com/stormfront/4005-108215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108216/", + "id": 108216, + "name": "Annihilata", + "site_detail_url": "https://comicvine.gamespot.com/annihilata/4005-108216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108217/", + "id": 108217, + "name": "Sadistain", + "site_detail_url": "https://comicvine.gamespot.com/sadistain/4005-108217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108263/", + "id": 108263, + "name": "Sharada Darthri", + "site_detail_url": "https://comicvine.gamespot.com/sharada-darthri/4005-108263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108276/", + "id": 108276, + "name": "Cyr-81", + "site_detail_url": "https://comicvine.gamespot.com/cyr-81/4005-108276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108277/", + "id": 108277, + "name": "Drain", + "site_detail_url": "https://comicvine.gamespot.com/drain/4005-108277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108278/", + "id": 108278, + "name": "Kels", + "site_detail_url": "https://comicvine.gamespot.com/kels/4005-108278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108279/", + "id": 108279, + "name": "Mo'tequ'a", + "site_detail_url": "https://comicvine.gamespot.com/motequa/4005-108279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108281/", + "id": 108281, + "name": "Savva", + "site_detail_url": "https://comicvine.gamespot.com/savva/4005-108281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108282/", + "id": 108282, + "name": "Travis", + "site_detail_url": "https://comicvine.gamespot.com/travis/4005-108282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108316/", + "id": 108316, + "name": "Mila Hitzig", + "site_detail_url": "https://comicvine.gamespot.com/mila-hitzig/4005-108316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108360/", + "id": 108360, + "name": "Spider-UK", + "site_detail_url": "https://comicvine.gamespot.com/spider-uk/4005-108360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108361/", + "id": 108361, + "name": "Agent Becerra", + "site_detail_url": "https://comicvine.gamespot.com/agent-becerra/4005-108361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108447/", + "id": 108447, + "name": "Josiah Guthrie", + "site_detail_url": "https://comicvine.gamespot.com/josiah-guthrie/4005-108447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108569/", + "id": 108569, + "name": "Captain Lionheart", + "site_detail_url": "https://comicvine.gamespot.com/captain-lionheart/4005-108569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108591/", + "id": 108591, + "name": "Auntie Tank", + "site_detail_url": "https://comicvine.gamespot.com/auntie-tank/4005-108591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108592/", + "id": 108592, + "name": "Speedtrap", + "site_detail_url": "https://comicvine.gamespot.com/speedtrap/4005-108592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108593/", + "id": 108593, + "name": "Gouge", + "site_detail_url": "https://comicvine.gamespot.com/gouge/4005-108593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108594/", + "id": 108594, + "name": "Slaughter Steelgrave", + "site_detail_url": "https://comicvine.gamespot.com/slaughter-steelgrave/4005-108594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108595/", + "id": 108595, + "name": "Deadeye", + "site_detail_url": "https://comicvine.gamespot.com/deadeye/4005-108595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108596/", + "id": 108596, + "name": "Backfire", + "site_detail_url": "https://comicvine.gamespot.com/backfire/4005-108596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108597/", + "id": 108597, + "name": "Cricket", + "site_detail_url": "https://comicvine.gamespot.com/cricket/4005-108597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108598/", + "id": 108598, + "name": "Sawtooth", + "site_detail_url": "https://comicvine.gamespot.com/sawtooth/4005-108598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108612/", + "id": 108612, + "name": "SP//dr", + "site_detail_url": "https://comicvine.gamespot.com/sp-dr/4005-108612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108636/", + "id": 108636, + "name": "Spider-Man J", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-j/4005-108636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108658/", + "id": 108658, + "name": "Nipper", + "site_detail_url": "https://comicvine.gamespot.com/nipper/4005-108658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108659/", + "id": 108659, + "name": "Thinktank", + "site_detail_url": "https://comicvine.gamespot.com/thinktank/4005-108659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108660/", + "id": 108660, + "name": "Crank", + "site_detail_url": "https://comicvine.gamespot.com/crank/4005-108660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108661/", + "id": 108661, + "name": "Tinker", + "site_detail_url": "https://comicvine.gamespot.com/tinker/4005-108661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108662/", + "id": 108662, + "name": "Hotshot", + "site_detail_url": "https://comicvine.gamespot.com/hotshot/4005-108662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108663/", + "id": 108663, + "name": "Runabout", + "site_detail_url": "https://comicvine.gamespot.com/runabout/4005-108663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108664/", + "id": 108664, + "name": "Motormouth", + "site_detail_url": "https://comicvine.gamespot.com/motormouth/4005-108664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108665/", + "id": 108665, + "name": "Cut-up", + "site_detail_url": "https://comicvine.gamespot.com/cut-up/4005-108665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108729/", + "id": 108729, + "name": "Carole Jennings", + "site_detail_url": "https://comicvine.gamespot.com/carole-jennings/4005-108729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108786/", + "id": 108786, + "name": "Jorma", + "site_detail_url": "https://comicvine.gamespot.com/jorma/4005-108786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108837/", + "id": 108837, + "name": "Clifford Scott", + "site_detail_url": "https://comicvine.gamespot.com/clifford-scott/4005-108837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108839/", + "id": 108839, + "name": "Ndebele", + "site_detail_url": "https://comicvine.gamespot.com/ndebele/4005-108839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108928/", + "id": 108928, + "name": "President Gardner", + "site_detail_url": "https://comicvine.gamespot.com/president-gardner/4005-108928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-108969/", + "id": 108969, + "name": "Jason Stryker", + "site_detail_url": "https://comicvine.gamespot.com/jason-stryker/4005-108969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109147/", + "id": 109147, + "name": "Czar Doon", + "site_detail_url": "https://comicvine.gamespot.com/czar-doon/4005-109147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109150/", + "id": 109150, + "name": "Auran", + "site_detail_url": "https://comicvine.gamespot.com/auran/4005-109150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109151/", + "id": 109151, + "name": "Delphinia", + "site_detail_url": "https://comicvine.gamespot.com/delphinia/4005-109151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109157/", + "id": 109157, + "name": "Father Diablo", + "site_detail_url": "https://comicvine.gamespot.com/father-diablo/4005-109157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109158/", + "id": 109158, + "name": "Misa", + "site_detail_url": "https://comicvine.gamespot.com/misa/4005-109158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109159/", + "id": 109159, + "name": "Nur", + "site_detail_url": "https://comicvine.gamespot.com/nur/4005-109159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109160/", + "id": 109160, + "name": "Nux Vomico", + "site_detail_url": "https://comicvine.gamespot.com/nux-vomico/4005-109160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109161/", + "id": 109161, + "name": "Sysk", + "site_detail_url": "https://comicvine.gamespot.com/sysk/4005-109161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109162/", + "id": 109162, + "name": "Valesh Malafect", + "site_detail_url": "https://comicvine.gamespot.com/valesh-malafect/4005-109162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109185/", + "id": 109185, + "name": "Oracle ", + "site_detail_url": "https://comicvine.gamespot.com/oracle/4005-109185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109208/", + "id": 109208, + "name": "Yes-Man", + "site_detail_url": "https://comicvine.gamespot.com/yes-man/4005-109208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109212/", + "id": 109212, + "name": "Barbe-Cutie", + "site_detail_url": "https://comicvine.gamespot.com/barbe-cutie/4005-109212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109213/", + "id": 109213, + "name": "Elastic Boy", + "site_detail_url": "https://comicvine.gamespot.com/elastic-boy/4005-109213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109224/", + "id": 109224, + "name": "Balazar", + "site_detail_url": "https://comicvine.gamespot.com/balazar/4005-109224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109266/", + "id": 109266, + "name": "Doc", + "site_detail_url": "https://comicvine.gamespot.com/doc/4005-109266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109280/", + "id": 109280, + "name": "Solus", + "site_detail_url": "https://comicvine.gamespot.com/solus/4005-109280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109335/", + "id": 109335, + "name": "Voodonut", + "site_detail_url": "https://comicvine.gamespot.com/voodonut/4005-109335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109336/", + "id": 109336, + "name": "The Hippie", + "site_detail_url": "https://comicvine.gamespot.com/the-hippie/4005-109336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109337/", + "id": 109337, + "name": "Scarlet Cyclist", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-cyclist/4005-109337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109338/", + "id": 109338, + "name": "Madame Vegan", + "site_detail_url": "https://comicvine.gamespot.com/madame-vegan/4005-109338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109339/", + "id": 109339, + "name": "Grahh-Nola", + "site_detail_url": "https://comicvine.gamespot.com/grahh-nola/4005-109339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109340/", + "id": 109340, + "name": "The Protester", + "site_detail_url": "https://comicvine.gamespot.com/the-protester/4005-109340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109455/", + "id": 109455, + "name": "Pyronanos", + "site_detail_url": "https://comicvine.gamespot.com/pyronanos/4005-109455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109487/", + "id": 109487, + "name": "Kevin Byrnes", + "site_detail_url": "https://comicvine.gamespot.com/kevin-byrnes/4005-109487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109488/", + "id": 109488, + "name": "Tommy Byrnes", + "site_detail_url": "https://comicvine.gamespot.com/tommy-byrnes/4005-109488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109604/", + "id": 109604, + "name": "Lady Spider", + "site_detail_url": "https://comicvine.gamespot.com/lady-spider/4005-109604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109614/", + "id": 109614, + "name": "Teen Abomination", + "site_detail_url": "https://comicvine.gamespot.com/teen-abomination/4005-109614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109686/", + "id": 109686, + "name": "Kuva", + "site_detail_url": "https://comicvine.gamespot.com/kuva/4005-109686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109687/", + "id": 109687, + "name": "Era", + "site_detail_url": "https://comicvine.gamespot.com/era/4005-109687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109735/", + "id": 109735, + "name": "Throwdown", + "site_detail_url": "https://comicvine.gamespot.com/throwdown/4005-109735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109749/", + "id": 109749, + "name": "Elisa Warsame", + "site_detail_url": "https://comicvine.gamespot.com/elisa-warsame/4005-109749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109751/", + "id": 109751, + "name": "Python", + "site_detail_url": "https://comicvine.gamespot.com/python/4005-109751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109796/", + "id": 109796, + "name": "Alice Gleason", + "site_detail_url": "https://comicvine.gamespot.com/alice-gleason/4005-109796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109843/", + "id": 109843, + "name": "Tokyo Ethel", + "site_detail_url": "https://comicvine.gamespot.com/tokyo-ethel/4005-109843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109877/", + "id": 109877, + "name": "Enigma", + "site_detail_url": "https://comicvine.gamespot.com/enigma/4005-109877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109901/", + "id": 109901, + "name": "Fiddler", + "site_detail_url": "https://comicvine.gamespot.com/fiddler/4005-109901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109909/", + "id": 109909, + "name": "Gah-Ran", + "site_detail_url": "https://comicvine.gamespot.com/gah-ran/4005-109909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109915/", + "id": 109915, + "name": "Bella Blaire", + "site_detail_url": "https://comicvine.gamespot.com/bella-blaire/4005-109915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109916/", + "id": 109916, + "name": "Marx", + "site_detail_url": "https://comicvine.gamespot.com/marx/4005-109916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109917/", + "id": 109917, + "name": "Hunch", + "site_detail_url": "https://comicvine.gamespot.com/hunch/4005-109917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109918/", + "id": 109918, + "name": "Beefer", + "site_detail_url": "https://comicvine.gamespot.com/beefer/4005-109918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109919/", + "id": 109919, + "name": "Lancelot Steele", + "site_detail_url": "https://comicvine.gamespot.com/lancelot-steele/4005-109919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109921/", + "id": 109921, + "name": "Ajna", + "site_detail_url": "https://comicvine.gamespot.com/ajna/4005-109921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109953/", + "id": 109953, + "name": "Shogun", + "site_detail_url": "https://comicvine.gamespot.com/shogun/4005-109953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109954/", + "id": 109954, + "name": "Endo", + "site_detail_url": "https://comicvine.gamespot.com/endo/4005-109954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109955/", + "id": 109955, + "name": "Neuro", + "site_detail_url": "https://comicvine.gamespot.com/neuro/4005-109955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109965/", + "id": 109965, + "name": "Soraya Khorasani", + "site_detail_url": "https://comicvine.gamespot.com/soraya-khorasani/4005-109965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109976/", + "id": 109976, + "name": "Green Light", + "site_detail_url": "https://comicvine.gamespot.com/green-light/4005-109976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109977/", + "id": 109977, + "name": "Redline", + "site_detail_url": "https://comicvine.gamespot.com/redline/4005-109977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109978/", + "id": 109978, + "name": "Gold Rush", + "site_detail_url": "https://comicvine.gamespot.com/gold-rush/4005-109978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-109979/", + "id": 109979, + "name": "Silver Ghost", + "site_detail_url": "https://comicvine.gamespot.com/silver-ghost/4005-109979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110006/", + "id": 110006, + "name": "M'Jell", + "site_detail_url": "https://comicvine.gamespot.com/m-jell/4005-110006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110007/", + "id": 110007, + "name": "Zebble", + "site_detail_url": "https://comicvine.gamespot.com/zebble/4005-110007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110008/", + "id": 110008, + "name": "Vileena Malafect", + "site_detail_url": "https://comicvine.gamespot.com/vileena-malafect/4005-110008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110011/", + "id": 110011, + "name": "Zan", + "site_detail_url": "https://comicvine.gamespot.com/zan/4005-110011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110012/", + "id": 110012, + "name": "Kratryr", + "site_detail_url": "https://comicvine.gamespot.com/kratryr/4005-110012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110013/", + "id": 110013, + "name": "Tenk", + "site_detail_url": "https://comicvine.gamespot.com/tenk/4005-110013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110028/", + "id": 110028, + "name": "Noam", + "site_detail_url": "https://comicvine.gamespot.com/noam/4005-110028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110088/", + "id": 110088, + "name": "Doctor Crime", + "site_detail_url": "https://comicvine.gamespot.com/doctor-crime/4005-110088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110089/", + "id": 110089, + "name": "Mock Mikado", + "site_detail_url": "https://comicvine.gamespot.com/mock-mikado/4005-110089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110090/", + "id": 110090, + "name": "Doctor Togu the Vampire", + "site_detail_url": "https://comicvine.gamespot.com/doctor-togu-the-vampire/4005-110090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110091/", + "id": 110091, + "name": "Stone-Man", + "site_detail_url": "https://comicvine.gamespot.com/stone-man/4005-110091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110168/", + "id": 110168, + "name": "Harmon Furmintz", + "site_detail_url": "https://comicvine.gamespot.com/harmon-furmintz/4005-110168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110172/", + "id": 110172, + "name": "Super Android Model F-4", + "site_detail_url": "https://comicvine.gamespot.com/super-android-model-f-4/4005-110172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110199/", + "id": 110199, + "name": "Skel", + "site_detail_url": "https://comicvine.gamespot.com/skel/4005-110199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110200/", + "id": 110200, + "name": "Junk", + "site_detail_url": "https://comicvine.gamespot.com/junk/4005-110200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110219/", + "id": 110219, + "name": "Rael Rider", + "site_detail_url": "https://comicvine.gamespot.com/rael-rider/4005-110219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110357/", + "id": 110357, + "name": "BadGal", + "site_detail_url": "https://comicvine.gamespot.com/bad-gal/4005-110357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110358/", + "id": 110358, + "name": "Choke the Bear", + "site_detail_url": "https://comicvine.gamespot.com/choke-the-bear/4005-110358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110359/", + "id": 110359, + "name": "Maemi Takachiho", + "site_detail_url": "https://comicvine.gamespot.com/maemi-takachiho/4005-110359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110360/", + "id": 110360, + "name": "Kojiro Iosama", + "site_detail_url": "https://comicvine.gamespot.com/kojiro-iosama/4005-110360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110361/", + "id": 110361, + "name": "Marys Iosama", + "site_detail_url": "https://comicvine.gamespot.com/marys-iosama/4005-110361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110362/", + "id": 110362, + "name": "Mr. Seguri", + "site_detail_url": "https://comicvine.gamespot.com/mr-seguri/4005-110362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110363/", + "id": 110363, + "name": "Principal Miyazaki", + "site_detail_url": "https://comicvine.gamespot.com/principal-miyazaki/4005-110363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110365/", + "id": 110365, + "name": "Frank Hampton", + "site_detail_url": "https://comicvine.gamespot.com/frank-hampton/4005-110365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110366/", + "id": 110366, + "name": "Cameron Brock", + "site_detail_url": "https://comicvine.gamespot.com/cameron-brock/4005-110366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110367/", + "id": 110367, + "name": "Helen Bach", + "site_detail_url": "https://comicvine.gamespot.com/helen-bach/4005-110367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110375/", + "id": 110375, + "name": "Sera", + "site_detail_url": "https://comicvine.gamespot.com/sera/4005-110375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110376/", + "id": 110376, + "name": "Cha'sa'dra", + "site_detail_url": "https://comicvine.gamespot.com/cha-sa-dra/4005-110376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110384/", + "id": 110384, + "name": "White Fox", + "site_detail_url": "https://comicvine.gamespot.com/white-fox/4005-110384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110387/", + "id": 110387, + "name": "Sphinx (Karim)", + "site_detail_url": "https://comicvine.gamespot.com/sphinx-karim/4005-110387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110435/", + "id": 110435, + "name": "Arthur Banks", + "site_detail_url": "https://comicvine.gamespot.com/arthur-banks/4005-110435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110599/", + "id": 110599, + "name": "The One", + "site_detail_url": "https://comicvine.gamespot.com/the-one/4005-110599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110634/", + "id": 110634, + "name": "Andrea Hope", + "site_detail_url": "https://comicvine.gamespot.com/andrea-hope/4005-110634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110677/", + "id": 110677, + "name": "Smoke Scream", + "site_detail_url": "https://comicvine.gamespot.com/smoke-scream/4005-110677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110714/", + "id": 110714, + "name": "Missile Mate", + "site_detail_url": "https://comicvine.gamespot.com/missile-mate/4005-110714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110774/", + "id": 110774, + "name": "Aria Hayes", + "site_detail_url": "https://comicvine.gamespot.com/aria-hayes/4005-110774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110804/", + "id": 110804, + "name": "Richard Parker (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/richard-parker-lmd/4005-110804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110805/", + "id": 110805, + "name": "Mary Parker (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/mary-parker-lmd/4005-110805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110821/", + "id": 110821, + "name": "Maximus Clop", + "site_detail_url": "https://comicvine.gamespot.com/maximus-clop/4005-110821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110822/", + "id": 110822, + "name": "Togth", + "site_detail_url": "https://comicvine.gamespot.com/togth/4005-110822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110828/", + "id": 110828, + "name": "The Shaman", + "site_detail_url": "https://comicvine.gamespot.com/the-shaman/4005-110828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110919/", + "id": 110919, + "name": "Siphon", + "site_detail_url": "https://comicvine.gamespot.com/siphon/4005-110919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110977/", + "id": 110977, + "name": "Fantomelle", + "site_detail_url": "https://comicvine.gamespot.com/fantomelle/4005-110977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110992/", + "id": 110992, + "name": "Danny Warburton", + "site_detail_url": "https://comicvine.gamespot.com/danny-warburton/4005-110992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110993/", + "id": 110993, + "name": "Lee", + "site_detail_url": "https://comicvine.gamespot.com/lee/4005-110993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110994/", + "id": 110994, + "name": "Marlo of Sheen", + "site_detail_url": "https://comicvine.gamespot.com/marlo-of-sheen/4005-110994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-110995/", + "id": 110995, + "name": "Yan", + "site_detail_url": "https://comicvine.gamespot.com/yan/4005-110995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111042/", + "id": 111042, + "name": "Cover Girl", + "site_detail_url": "https://comicvine.gamespot.com/cover-girl/4005-111042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111074/", + "id": 111074, + "name": "Jordana", + "site_detail_url": "https://comicvine.gamespot.com/jordana/4005-111074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111077/", + "id": 111077, + "name": "Aadan", + "site_detail_url": "https://comicvine.gamespot.com/aadan/4005-111077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111078/", + "id": 111078, + "name": "Darca Khan", + "site_detail_url": "https://comicvine.gamespot.com/darca-khan/4005-111078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111091/", + "id": 111091, + "name": "DV", + "site_detail_url": "https://comicvine.gamespot.com/d-v/4005-111091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111092/", + "id": 111092, + "name": "Epsilon", + "site_detail_url": "https://comicvine.gamespot.com/epsilon/4005-111092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111093/", + "id": 111093, + "name": "General Reza", + "site_detail_url": "https://comicvine.gamespot.com/general-reza/4005-111093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111094/", + "id": 111094, + "name": "Baroness Krieg", + "site_detail_url": "https://comicvine.gamespot.com/baroness-krieg/4005-111094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111095/", + "id": 111095, + "name": "Gila", + "site_detail_url": "https://comicvine.gamespot.com/gila/4005-111095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111096/", + "id": 111096, + "name": "Gil Brown", + "site_detail_url": "https://comicvine.gamespot.com/gil-brown/4005-111096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111097/", + "id": 111097, + "name": "Holly Banks", + "site_detail_url": "https://comicvine.gamespot.com/holly-banks/4005-111097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111098/", + "id": 111098, + "name": "Jack Dalliance", + "site_detail_url": "https://comicvine.gamespot.com/jack-dalliance/4005-111098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111105/", + "id": 111105, + "name": "Agent Billis", + "site_detail_url": "https://comicvine.gamespot.com/agent-billis/4005-111105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111518/", + "id": 111518, + "name": "Säurespritze", + "site_detail_url": "https://comicvine.gamespot.com/saurespritze/4005-111518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111536/", + "id": 111536, + "name": "L'ai Sau", + "site_detail_url": "https://comicvine.gamespot.com/l-ai-sau/4005-111536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111540/", + "id": 111540, + "name": "Marioac", + "site_detail_url": "https://comicvine.gamespot.com/marioac/4005-111540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111626/", + "id": 111626, + "name": "Becky Barnes", + "site_detail_url": "https://comicvine.gamespot.com/becky-barnes/4005-111626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111642/", + "id": 111642, + "name": "Plorp", + "site_detail_url": "https://comicvine.gamespot.com/plorp/4005-111642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111643/", + "id": 111643, + "name": "Sneedge", + "site_detail_url": "https://comicvine.gamespot.com/sneedge/4005-111643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111644/", + "id": 111644, + "name": "Krobat", + "site_detail_url": "https://comicvine.gamespot.com/krobat/4005-111644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111645/", + "id": 111645, + "name": "Warrior One", + "site_detail_url": "https://comicvine.gamespot.com/warrior-one/4005-111645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111688/", + "id": 111688, + "name": "Imperial Leader", + "site_detail_url": "https://comicvine.gamespot.com/imperial-leader/4005-111688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111689/", + "id": 111689, + "name": "Dar Mal Goth", + "site_detail_url": "https://comicvine.gamespot.com/dar-mal-goth/4005-111689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111691/", + "id": 111691, + "name": "Amentah", + "site_detail_url": "https://comicvine.gamespot.com/amentah/4005-111691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111708/", + "id": 111708, + "name": "Georgi Luchkov", + "site_detail_url": "https://comicvine.gamespot.com/georgi-luchkov/4005-111708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111722/", + "id": 111722, + "name": "Kathisul Evin", + "site_detail_url": "https://comicvine.gamespot.com/kathisul-evin/4005-111722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111726/", + "id": 111726, + "name": "Sentience of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/sentience-of-the-universe/4005-111726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111755/", + "id": 111755, + "name": "Peggy Rae", + "site_detail_url": "https://comicvine.gamespot.com/peggy-rae/4005-111755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111792/", + "id": 111792, + "name": "Ventolin Xtal", + "site_detail_url": "https://comicvine.gamespot.com/ventolin-xtal/4005-111792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111793/", + "id": 111793, + "name": "Detective Li", + "site_detail_url": "https://comicvine.gamespot.com/detective-li/4005-111793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111794/", + "id": 111794, + "name": "Brenda Swanson", + "site_detail_url": "https://comicvine.gamespot.com/brenda-swanson/4005-111794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111897/", + "id": 111897, + "name": "Takuya Yamashiro", + "site_detail_url": "https://comicvine.gamespot.com/takuya-yamashiro/4005-111897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111912/", + "id": 111912, + "name": "Nancy Whitehead", + "site_detail_url": "https://comicvine.gamespot.com/nancy-whitehead/4005-111912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-111913/", + "id": 111913, + "name": "Mew", + "site_detail_url": "https://comicvine.gamespot.com/mew/4005-111913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112044/", + "id": 112044, + "name": "Saphir", + "site_detail_url": "https://comicvine.gamespot.com/saphir/4005-112044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112049/", + "id": 112049, + "name": "Zahnmorder", + "site_detail_url": "https://comicvine.gamespot.com/zahnmorder/4005-112049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112050/", + "id": 112050, + "name": "Blitzkrieg", + "site_detail_url": "https://comicvine.gamespot.com/blitzkrieg/4005-112050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112051/", + "id": 112051, + "name": "James Fletcher", + "site_detail_url": "https://comicvine.gamespot.com/james-fletcher/4005-112051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112128/", + "id": 112128, + "name": "Dray", + "site_detail_url": "https://comicvine.gamespot.com/dray/4005-112128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112183/", + "id": 112183, + "name": "Xun", + "site_detail_url": "https://comicvine.gamespot.com/xun/4005-112183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112184/", + "id": 112184, + "name": "Kolobus", + "site_detail_url": "https://comicvine.gamespot.com/kolobus/4005-112184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112187/", + "id": 112187, + "name": "Grayson Blair", + "site_detail_url": "https://comicvine.gamespot.com/grayson-blair/4005-112187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112188/", + "id": 112188, + "name": "Quibby", + "site_detail_url": "https://comicvine.gamespot.com/quibby/4005-112188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112189/", + "id": 112189, + "name": "Wegga Lo-Lo", + "site_detail_url": "https://comicvine.gamespot.com/wegga-lo-lo/4005-112189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112210/", + "id": 112210, + "name": "General Ryan", + "site_detail_url": "https://comicvine.gamespot.com/general-ryan/4005-112210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112212/", + "id": 112212, + "name": "Young Soo Pock", + "site_detail_url": "https://comicvine.gamespot.com/young-soo-pock/4005-112212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112217/", + "id": 112217, + "name": "Arácnido Jr.", + "site_detail_url": "https://comicvine.gamespot.com/aracnido-jr/4005-112217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112247/", + "id": 112247, + "name": "Sin-Eater", + "site_detail_url": "https://comicvine.gamespot.com/sin-eater/4005-112247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112249/", + "id": 112249, + "name": "Sally Roland", + "site_detail_url": "https://comicvine.gamespot.com/sally-roland/4005-112249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112250/", + "id": 112250, + "name": "Terry Roland", + "site_detail_url": "https://comicvine.gamespot.com/terry-roland/4005-112250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112278/", + "id": 112278, + "name": "Chair", + "site_detail_url": "https://comicvine.gamespot.com/chair/4005-112278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112345/", + "id": 112345, + "name": "H.E.N.R.Y.", + "site_detail_url": "https://comicvine.gamespot.com/h-e-n-r-y/4005-112345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112353/", + "id": 112353, + "name": "John Richards", + "site_detail_url": "https://comicvine.gamespot.com/john-richards/4005-112353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112443/", + "id": 112443, + "name": "David Levine", + "site_detail_url": "https://comicvine.gamespot.com/david-levine/4005-112443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112447/", + "id": 112447, + "name": "Culpepper", + "site_detail_url": "https://comicvine.gamespot.com/culpepper/4005-112447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112544/", + "id": 112544, + "name": "Time-Sink", + "site_detail_url": "https://comicvine.gamespot.com/time-sink/4005-112544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112545/", + "id": 112545, + "name": "Chain", + "site_detail_url": "https://comicvine.gamespot.com/chain/4005-112545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112546/", + "id": 112546, + "name": "Susan in Sunshine", + "site_detail_url": "https://comicvine.gamespot.com/susan-in-sunshine/4005-112546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112547/", + "id": 112547, + "name": "Bleeding Image", + "site_detail_url": "https://comicvine.gamespot.com/bleeding-image/4005-112547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-112548/", + "id": 112548, + "name": "Endgame", + "site_detail_url": "https://comicvine.gamespot.com/endgame/4005-112548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113013/", + "id": 113013, + "name": "Ken Landro", + "site_detail_url": "https://comicvine.gamespot.com/ken-landro/4005-113013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113017/", + "id": 113017, + "name": "Barry Kranz", + "site_detail_url": "https://comicvine.gamespot.com/barry-kranz/4005-113017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113023/", + "id": 113023, + "name": "Runyon Castle", + "site_detail_url": "https://comicvine.gamespot.com/runyon-castle/4005-113023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113027/", + "id": 113027, + "name": "Alfredo Pechter", + "site_detail_url": "https://comicvine.gamespot.com/alfredo-pechter/4005-113027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113028/", + "id": 113028, + "name": "Alex Van Tilberg", + "site_detail_url": "https://comicvine.gamespot.com/alex-van-tilberg/4005-113028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113040/", + "id": 113040, + "name": "Bert Hindel", + "site_detail_url": "https://comicvine.gamespot.com/bert-hindel/4005-113040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113041/", + "id": 113041, + "name": "Irving Wattle", + "site_detail_url": "https://comicvine.gamespot.com/irving-wattle/4005-113041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113042/", + "id": 113042, + "name": "Norm Seeger", + "site_detail_url": "https://comicvine.gamespot.com/norm-seeger/4005-113042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113043/", + "id": 113043, + "name": "Tina Sanchez", + "site_detail_url": "https://comicvine.gamespot.com/tina-sanchez/4005-113043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113044/", + "id": 113044, + "name": "Donna Twain", + "site_detail_url": "https://comicvine.gamespot.com/donna-twain/4005-113044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113045/", + "id": 113045, + "name": "Randall Pearson", + "site_detail_url": "https://comicvine.gamespot.com/randall-pearson/4005-113045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113057/", + "id": 113057, + "name": "Soo Lin", + "site_detail_url": "https://comicvine.gamespot.com/soo-lin/4005-113057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113059/", + "id": 113059, + "name": "Stevie Gazelle", + "site_detail_url": "https://comicvine.gamespot.com/stevie-gazelle/4005-113059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113060/", + "id": 113060, + "name": "Brie Daniels", + "site_detail_url": "https://comicvine.gamespot.com/brie-daniels/4005-113060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113061/", + "id": 113061, + "name": "Ed Munro", + "site_detail_url": "https://comicvine.gamespot.com/ed-munro/4005-113061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113067/", + "id": 113067, + "name": "Joanna Nivena", + "site_detail_url": "https://comicvine.gamespot.com/joanna-nivena/4005-113067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113071/", + "id": 113071, + "name": "Linda Vincent", + "site_detail_url": "https://comicvine.gamespot.com/linda-vincent/4005-113071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113072/", + "id": 113072, + "name": "Albert Montenegro", + "site_detail_url": "https://comicvine.gamespot.com/albert-montenegro/4005-113072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113073/", + "id": 113073, + "name": "Atha Williams", + "site_detail_url": "https://comicvine.gamespot.com/atha-williams/4005-113073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113074/", + "id": 113074, + "name": "Paul Collins", + "site_detail_url": "https://comicvine.gamespot.com/paul-collins/4005-113074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113075/", + "id": 113075, + "name": "Tom Bradley", + "site_detail_url": "https://comicvine.gamespot.com/tom-bradley/4005-113075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113076/", + "id": 113076, + "name": "Roderick Withers", + "site_detail_url": "https://comicvine.gamespot.com/roderick-withers/4005-113076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113077/", + "id": 113077, + "name": "Ron Win", + "site_detail_url": "https://comicvine.gamespot.com/ron-win/4005-113077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113078/", + "id": 113078, + "name": "Jennifer Kaylen", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-kaylen/4005-113078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113083/", + "id": 113083, + "name": "Agent Nolan", + "site_detail_url": "https://comicvine.gamespot.com/agent-nolan/4005-113083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113084/", + "id": 113084, + "name": "Mike McSwiggin", + "site_detail_url": "https://comicvine.gamespot.com/mike-mcswiggin/4005-113084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113279/", + "id": 113279, + "name": "K'rel", + "site_detail_url": "https://comicvine.gamespot.com/k-rel/4005-113279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113280/", + "id": 113280, + "name": "Nancy Kelloway", + "site_detail_url": "https://comicvine.gamespot.com/nancy-kelloway/4005-113280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113281/", + "id": 113281, + "name": "Daniel Kortz", + "site_detail_url": "https://comicvine.gamespot.com/daniel-kortz/4005-113281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113546/", + "id": 113546, + "name": "Jefferson Bolt", + "site_detail_url": "https://comicvine.gamespot.com/jefferson-bolt/4005-113546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113547/", + "id": 113547, + "name": "Emil Nikos", + "site_detail_url": "https://comicvine.gamespot.com/emil-nikos/4005-113547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113548/", + "id": 113548, + "name": "Bert Tacker", + "site_detail_url": "https://comicvine.gamespot.com/bert-tacker/4005-113548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113550/", + "id": 113550, + "name": "Marcia Deston Reiss Masters", + "site_detail_url": "https://comicvine.gamespot.com/marcia-deston-reiss-masters/4005-113550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113551/", + "id": 113551, + "name": "Kryllk the Cruel", + "site_detail_url": "https://comicvine.gamespot.com/kryllk-the-cruel/4005-113551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113552/", + "id": 113552, + "name": "Mayor Samuels", + "site_detail_url": "https://comicvine.gamespot.com/mayor-samuels/4005-113552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113553/", + "id": 113553, + "name": "Karl Lubbings", + "site_detail_url": "https://comicvine.gamespot.com/karl-lubbings/4005-113553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113554/", + "id": 113554, + "name": "F.A.U.S.T.", + "site_detail_url": "https://comicvine.gamespot.com/f-a-u-s-t/4005-113554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113555/", + "id": 113555, + "name": "Ferguson Blaine", + "site_detail_url": "https://comicvine.gamespot.com/ferguson-blaine/4005-113555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113556/", + "id": 113556, + "name": "Paxton Pentecost", + "site_detail_url": "https://comicvine.gamespot.com/paxton-pentecost/4005-113556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113562/", + "id": 113562, + "name": "Melinda Morrison", + "site_detail_url": "https://comicvine.gamespot.com/melinda-morrison/4005-113562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113564/", + "id": 113564, + "name": "N4256", + "site_detail_url": "https://comicvine.gamespot.com/n4256/4005-113564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113565/", + "id": 113565, + "name": "Gail Paris", + "site_detail_url": "https://comicvine.gamespot.com/gail-paris/4005-113565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113567/", + "id": 113567, + "name": "Gail Callan", + "site_detail_url": "https://comicvine.gamespot.com/gail-callan/4005-113567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113572/", + "id": 113572, + "name": "Abe Koch", + "site_detail_url": "https://comicvine.gamespot.com/abe-koch/4005-113572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113573/", + "id": 113573, + "name": "Professor Aldritch", + "site_detail_url": "https://comicvine.gamespot.com/professor-aldritch/4005-113573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113574/", + "id": 113574, + "name": "Michael Rodgers", + "site_detail_url": "https://comicvine.gamespot.com/michael-rodgers/4005-113574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113575/", + "id": 113575, + "name": "Francis William Maxwell", + "site_detail_url": "https://comicvine.gamespot.com/francis-william-maxwell/4005-113575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113576/", + "id": 113576, + "name": "Ramon Grant", + "site_detail_url": "https://comicvine.gamespot.com/ramon-grant/4005-113576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113577/", + "id": 113577, + "name": "Harrison J. Merriwell", + "site_detail_url": "https://comicvine.gamespot.com/harrison-j-merriwell/4005-113577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113579/", + "id": 113579, + "name": "Bill Gordon", + "site_detail_url": "https://comicvine.gamespot.com/bill-gordon/4005-113579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113580/", + "id": 113580, + "name": "Ivan Carmichael", + "site_detail_url": "https://comicvine.gamespot.com/ivan-carmichael/4005-113580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113581/", + "id": 113581, + "name": "Ralph McElroy", + "site_detail_url": "https://comicvine.gamespot.com/ralph-mcelroy/4005-113581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113582/", + "id": 113582, + "name": "Luis Dominquez", + "site_detail_url": "https://comicvine.gamespot.com/luis-dominquez/4005-113582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113583/", + "id": 113583, + "name": "Oruthu", + "site_detail_url": "https://comicvine.gamespot.com/oruthu/4005-113583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113585/", + "id": 113585, + "name": "Derek McDowell", + "site_detail_url": "https://comicvine.gamespot.com/derek-mcdowell/4005-113585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113586/", + "id": 113586, + "name": "Manuel Arguelles", + "site_detail_url": "https://comicvine.gamespot.com/manuel-arguelles/4005-113586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113599/", + "id": 113599, + "name": "Johnny Buglisi", + "site_detail_url": "https://comicvine.gamespot.com/johnny-buglisi/4005-113599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113600/", + "id": 113600, + "name": "Charlie Hacker", + "site_detail_url": "https://comicvine.gamespot.com/charlie-hacker/4005-113600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113602/", + "id": 113602, + "name": "Karl Bonn", + "site_detail_url": "https://comicvine.gamespot.com/karl-bonn/4005-113602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113603/", + "id": 113603, + "name": "Max Vorster", + "site_detail_url": "https://comicvine.gamespot.com/max-vorster/4005-113603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113665/", + "id": 113665, + "name": "Abner Doolittle", + "site_detail_url": "https://comicvine.gamespot.com/abner-doolittle/4005-113665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113666/", + "id": 113666, + "name": "Brother Inquisitor", + "site_detail_url": "https://comicvine.gamespot.com/brother-inquisitor/4005-113666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113674/", + "id": 113674, + "name": "Emlyn Rhys", + "site_detail_url": "https://comicvine.gamespot.com/emlyn-rhys/4005-113674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113676/", + "id": 113676, + "name": "Margay Sorenson", + "site_detail_url": "https://comicvine.gamespot.com/margay-sorenson/4005-113676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113678/", + "id": 113678, + "name": "David Sorenson", + "site_detail_url": "https://comicvine.gamespot.com/david-sorenson/4005-113678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113680/", + "id": 113680, + "name": "Josiah Rubin", + "site_detail_url": "https://comicvine.gamespot.com/josiah-rubin/4005-113680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113686/", + "id": 113686, + "name": "Dean Beatty", + "site_detail_url": "https://comicvine.gamespot.com/dean-beatty/4005-113686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113690/", + "id": 113690, + "name": "Jonas Cobb", + "site_detail_url": "https://comicvine.gamespot.com/jonas-cobb/4005-113690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113691/", + "id": 113691, + "name": "Ken Morrow", + "site_detail_url": "https://comicvine.gamespot.com/ken-morrow/4005-113691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113695/", + "id": 113695, + "name": "Gus Hovannes", + "site_detail_url": "https://comicvine.gamespot.com/gus-hovannes/4005-113695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113696/", + "id": 113696, + "name": "Ruth Xenobia", + "site_detail_url": "https://comicvine.gamespot.com/ruth-xenobia/4005-113696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113698/", + "id": 113698, + "name": "Maggie McCulloch", + "site_detail_url": "https://comicvine.gamespot.com/maggie-mcculloch/4005-113698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113699/", + "id": 113699, + "name": "Ishiro Tagara", + "site_detail_url": "https://comicvine.gamespot.com/ishiro-tagara/4005-113699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113702/", + "id": 113702, + "name": "Lawrence Whittier Reynolds III", + "site_detail_url": "https://comicvine.gamespot.com/lawrence-whittier-reynolds-iii/4005-113702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113708/", + "id": 113708, + "name": "Aubrey Pearson", + "site_detail_url": "https://comicvine.gamespot.com/aubrey-pearson/4005-113708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113709/", + "id": 113709, + "name": "N'Gama", + "site_detail_url": "https://comicvine.gamespot.com/n-gama/4005-113709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113715/", + "id": 113715, + "name": "Spencer Jarret", + "site_detail_url": "https://comicvine.gamespot.com/spencer-jarret/4005-113715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113747/", + "id": 113747, + "name": "Paploo", + "site_detail_url": "https://comicvine.gamespot.com/paploo/4005-113747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113759/", + "id": 113759, + "name": "Status Quo", + "site_detail_url": "https://comicvine.gamespot.com/status-quo/4005-113759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113760/", + "id": 113760, + "name": "Johnny Yen", + "site_detail_url": "https://comicvine.gamespot.com/johnny-yen/4005-113760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113761/", + "id": 113761, + "name": "Sheriff Bradley Martin", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-bradley-martin/4005-113761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113762/", + "id": 113762, + "name": "W. Lee Benway", + "site_detail_url": "https://comicvine.gamespot.com/w-lee-benway/4005-113762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113766/", + "id": 113766, + "name": "Loose-Lips Lonigan", + "site_detail_url": "https://comicvine.gamespot.com/loose-lips-lonigan/4005-113766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113767/", + "id": 113767, + "name": "Deruge", + "site_detail_url": "https://comicvine.gamespot.com/deruge/4005-113767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113768/", + "id": 113768, + "name": "Brentano", + "site_detail_url": "https://comicvine.gamespot.com/brentano/4005-113768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113772/", + "id": 113772, + "name": "Arthur Richmond", + "site_detail_url": "https://comicvine.gamespot.com/arthur-richmond/4005-113772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113809/", + "id": 113809, + "name": "Sarah Clark", + "site_detail_url": "https://comicvine.gamespot.com/sarah-clark/4005-113809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113810/", + "id": 113810, + "name": "Jonathan Clark", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-clark/4005-113810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113812/", + "id": 113812, + "name": "Kevin Kraller", + "site_detail_url": "https://comicvine.gamespot.com/kevin-kraller/4005-113812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113813/", + "id": 113813, + "name": "Rachel Sweet", + "site_detail_url": "https://comicvine.gamespot.com/rachel-sweet/4005-113813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113814/", + "id": 113814, + "name": "Steve Jackson", + "site_detail_url": "https://comicvine.gamespot.com/steve-jackson/4005-113814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113819/", + "id": 113819, + "name": "Doctor Daedalus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-daedalus/4005-113819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113825/", + "id": 113825, + "name": "Gloria Morgan", + "site_detail_url": "https://comicvine.gamespot.com/gloria-morgan/4005-113825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113830/", + "id": 113830, + "name": "Doktor Frederick Krause", + "site_detail_url": "https://comicvine.gamespot.com/doktor-frederick-krause/4005-113830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113831/", + "id": 113831, + "name": "Ticker", + "site_detail_url": "https://comicvine.gamespot.com/ticker/4005-113831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113832/", + "id": 113832, + "name": "Carolyn Sheridan", + "site_detail_url": "https://comicvine.gamespot.com/carolyn-sheridan/4005-113832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113838/", + "id": 113838, + "name": "Bill Jo White", + "site_detail_url": "https://comicvine.gamespot.com/bill-jo-white/4005-113838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113839/", + "id": 113839, + "name": "Haputman Schneider", + "site_detail_url": "https://comicvine.gamespot.com/haputman-schneider/4005-113839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113841/", + "id": 113841, + "name": "Shalak", + "site_detail_url": "https://comicvine.gamespot.com/shalak/4005-113841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113842/", + "id": 113842, + "name": "Kyral", + "site_detail_url": "https://comicvine.gamespot.com/kyral/4005-113842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113843/", + "id": 113843, + "name": "Delta Nine", + "site_detail_url": "https://comicvine.gamespot.com/delta-nine/4005-113843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113844/", + "id": 113844, + "name": "Sssesthugar", + "site_detail_url": "https://comicvine.gamespot.com/sssesthugar/4005-113844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113845/", + "id": 113845, + "name": "Talan", + "site_detail_url": "https://comicvine.gamespot.com/talan/4005-113845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113848/", + "id": 113848, + "name": "Benjamin Potts", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-potts/4005-113848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-113849/", + "id": 113849, + "name": "Chance Walker", + "site_detail_url": "https://comicvine.gamespot.com/chance-walker/4005-113849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114002/", + "id": 114002, + "name": "Gara", + "site_detail_url": "https://comicvine.gamespot.com/gara/4005-114002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114003/", + "id": 114003, + "name": "Sammy Stone", + "site_detail_url": "https://comicvine.gamespot.com/sammy-stone/4005-114003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114008/", + "id": 114008, + "name": "Starky Gripes", + "site_detail_url": "https://comicvine.gamespot.com/starky-gripes/4005-114008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114033/", + "id": 114033, + "name": "SkekSil", + "site_detail_url": "https://comicvine.gamespot.com/skeksil/4005-114033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114034/", + "id": 114034, + "name": "SkekSo", + "site_detail_url": "https://comicvine.gamespot.com/skekso/4005-114034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114038/", + "id": 114038, + "name": "SkekTek", + "site_detail_url": "https://comicvine.gamespot.com/skektek/4005-114038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114214/", + "id": 114214, + "name": "Ruler of the Earth", + "site_detail_url": "https://comicvine.gamespot.com/ruler-of-the-earth/4005-114214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114236/", + "id": 114236, + "name": "Dr. George Jefferson", + "site_detail_url": "https://comicvine.gamespot.com/dr-george-jefferson/4005-114236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114299/", + "id": 114299, + "name": "Peko", + "site_detail_url": "https://comicvine.gamespot.com/peko/4005-114299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114300/", + "id": 114300, + "name": "Raskov", + "site_detail_url": "https://comicvine.gamespot.com/raskov/4005-114300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114301/", + "id": 114301, + "name": "Satma", + "site_detail_url": "https://comicvine.gamespot.com/satma/4005-114301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114303/", + "id": 114303, + "name": "Lu Sun", + "site_detail_url": "https://comicvine.gamespot.com/lu-sun/4005-114303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114304/", + "id": 114304, + "name": "Dahar", + "site_detail_url": "https://comicvine.gamespot.com/dahar/4005-114304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114305/", + "id": 114305, + "name": "Jekin", + "site_detail_url": "https://comicvine.gamespot.com/jekin/4005-114305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114306/", + "id": 114306, + "name": "Bufford Jones", + "site_detail_url": "https://comicvine.gamespot.com/bufford-jones/4005-114306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114307/", + "id": 114307, + "name": "Wilhelm Bucher", + "site_detail_url": "https://comicvine.gamespot.com/wilhelm-bucher/4005-114307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114309/", + "id": 114309, + "name": "Kley", + "site_detail_url": "https://comicvine.gamespot.com/kley/4005-114309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114311/", + "id": 114311, + "name": "Chai Phen", + "site_detail_url": "https://comicvine.gamespot.com/chai-phen/4005-114311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114312/", + "id": 114312, + "name": "Lord Robert Greville", + "site_detail_url": "https://comicvine.gamespot.com/lord-robert-greville/4005-114312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114313/", + "id": 114313, + "name": "Therese Beswick", + "site_detail_url": "https://comicvine.gamespot.com/therese-beswick/4005-114313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114314/", + "id": 114314, + "name": "Snake and Sybilis", + "site_detail_url": "https://comicvine.gamespot.com/snake-and-sybilis/4005-114314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114316/", + "id": 114316, + "name": "Tiko", + "site_detail_url": "https://comicvine.gamespot.com/tiko/4005-114316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114317/", + "id": 114317, + "name": "Sheena", + "site_detail_url": "https://comicvine.gamespot.com/sheena/4005-114317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114318/", + "id": 114318, + "name": "Rynor", + "site_detail_url": "https://comicvine.gamespot.com/rynor/4005-114318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114319/", + "id": 114319, + "name": "Pan Sing", + "site_detail_url": "https://comicvine.gamespot.com/pan-sing/4005-114319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114320/", + "id": 114320, + "name": "George the Angel-Hawk", + "site_detail_url": "https://comicvine.gamespot.com/george-the-angel-hawk/4005-114320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114321/", + "id": 114321, + "name": "Cinnabar", + "site_detail_url": "https://comicvine.gamespot.com/cinnabar/4005-114321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114322/", + "id": 114322, + "name": "Chandar", + "site_detail_url": "https://comicvine.gamespot.com/chandar/4005-114322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114323/", + "id": 114323, + "name": "James Larner", + "site_detail_url": "https://comicvine.gamespot.com/james-larner/4005-114323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114342/", + "id": 114342, + "name": "Hardesty", + "site_detail_url": "https://comicvine.gamespot.com/hardesty/4005-114342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114343/", + "id": 114343, + "name": "Lorenzo Conquest", + "site_detail_url": "https://comicvine.gamespot.com/lorenzo-conquest/4005-114343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114344/", + "id": 114344, + "name": "Chango Villalobos", + "site_detail_url": "https://comicvine.gamespot.com/chango-villalobos/4005-114344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114345/", + "id": 114345, + "name": "Pink", + "site_detail_url": "https://comicvine.gamespot.com/pink/4005-114345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114346/", + "id": 114346, + "name": "Slits", + "site_detail_url": "https://comicvine.gamespot.com/slits/4005-114346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114425/", + "id": 114425, + "name": "Chipmunk Hunk", + "site_detail_url": "https://comicvine.gamespot.com/chipmunk-hunk/4005-114425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114451/", + "id": 114451, + "name": "Charles Dalton", + "site_detail_url": "https://comicvine.gamespot.com/charles-dalton/4005-114451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114485/", + "id": 114485, + "name": "Werner von Strucker", + "site_detail_url": "https://comicvine.gamespot.com/werner-von-strucker/4005-114485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114581/", + "id": 114581, + "name": "Daniel Fricks", + "site_detail_url": "https://comicvine.gamespot.com/daniel-fricks/4005-114581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114639/", + "id": 114639, + "name": "Johann Kriek", + "site_detail_url": "https://comicvine.gamespot.com/johann-kriek/4005-114639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114646/", + "id": 114646, + "name": "Cassio Tagge", + "site_detail_url": "https://comicvine.gamespot.com/cassio-tagge/4005-114646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114772/", + "id": 114772, + "name": "Willie Valentine", + "site_detail_url": "https://comicvine.gamespot.com/willie-valentine/4005-114772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114773/", + "id": 114773, + "name": "Fooh", + "site_detail_url": "https://comicvine.gamespot.com/fooh/4005-114773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114774/", + "id": 114774, + "name": "Karla Faye Gideon", + "site_detail_url": "https://comicvine.gamespot.com/karla-faye-gideon/4005-114774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-114777/", + "id": 114777, + "name": "Blue Max", + "site_detail_url": "https://comicvine.gamespot.com/blue-max/4005-114777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115020/", + "id": 115020, + "name": "Black Krrsantan", + "site_detail_url": "https://comicvine.gamespot.com/black-krrsantan/4005-115020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115021/", + "id": 115021, + "name": "Jink", + "site_detail_url": "https://comicvine.gamespot.com/jink/4005-115021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115022/", + "id": 115022, + "name": "Godhead", + "site_detail_url": "https://comicvine.gamespot.com/godhead/4005-115022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115023/", + "id": 115023, + "name": "Alec Eiffel", + "site_detail_url": "https://comicvine.gamespot.com/alec-eiffel/4005-115023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115031/", + "id": 115031, + "name": "Tadashi Hamada", + "site_detail_url": "https://comicvine.gamespot.com/tadashi-hamada/4005-115031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115131/", + "id": 115131, + "name": "Lisa", + "site_detail_url": "https://comicvine.gamespot.com/lisa/4005-115131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115143/", + "id": 115143, + "name": "Chaka", + "site_detail_url": "https://comicvine.gamespot.com/chaka/4005-115143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115144/", + "id": 115144, + "name": "Mubangi", + "site_detail_url": "https://comicvine.gamespot.com/mubangi/4005-115144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115145/", + "id": 115145, + "name": "Trajah", + "site_detail_url": "https://comicvine.gamespot.com/trajah/4005-115145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115146/", + "id": 115146, + "name": "N'Jaga", + "site_detail_url": "https://comicvine.gamespot.com/n-jaga/4005-115146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115147/", + "id": 115147, + "name": "Wal-Lah", + "site_detail_url": "https://comicvine.gamespot.com/wal-lah/4005-115147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115148/", + "id": 115148, + "name": "Kru", + "site_detail_url": "https://comicvine.gamespot.com/kru/4005-115148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115149/", + "id": 115149, + "name": "Nono", + "site_detail_url": "https://comicvine.gamespot.com/nono/4005-115149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115150/", + "id": 115150, + "name": "Quog", + "site_detail_url": "https://comicvine.gamespot.com/quog/4005-115150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115151/", + "id": 115151, + "name": "Sha", + "site_detail_url": "https://comicvine.gamespot.com/sha/4005-115151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115152/", + "id": 115152, + "name": "Paul de Kraft", + "site_detail_url": "https://comicvine.gamespot.com/paul-de-kraft/4005-115152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115153/", + "id": 115153, + "name": "Zar", + "site_detail_url": "https://comicvine.gamespot.com/zar/4005-115153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115154/", + "id": 115154, + "name": "Constance Rand", + "site_detail_url": "https://comicvine.gamespot.com/constance-rand/4005-115154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115155/", + "id": 115155, + "name": "John Rand", + "site_detail_url": "https://comicvine.gamespot.com/john-rand/4005-115155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115156/", + "id": 115156, + "name": "C.G. Clark", + "site_detail_url": "https://comicvine.gamespot.com/c-g-clark/4005-115156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115157/", + "id": 115157, + "name": "Fred Turner", + "site_detail_url": "https://comicvine.gamespot.com/fred-turner/4005-115157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115158/", + "id": 115158, + "name": "Bill Williams", + "site_detail_url": "https://comicvine.gamespot.com/bill-williams/4005-115158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115159/", + "id": 115159, + "name": "John Crafton", + "site_detail_url": "https://comicvine.gamespot.com/john-crafton/4005-115159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115160/", + "id": 115160, + "name": "Professor John Roberts", + "site_detail_url": "https://comicvine.gamespot.com/professor-john-roberts/4005-115160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115161/", + "id": 115161, + "name": "Tim Roberts", + "site_detail_url": "https://comicvine.gamespot.com/tim-roberts/4005-115161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115162/", + "id": 115162, + "name": "Ken Masters", + "site_detail_url": "https://comicvine.gamespot.com/ken-masters/4005-115162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115163/", + "id": 115163, + "name": "Lordin", + "site_detail_url": "https://comicvine.gamespot.com/lordin/4005-115163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115164/", + "id": 115164, + "name": "Bleck", + "site_detail_url": "https://comicvine.gamespot.com/bleck/4005-115164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115165/", + "id": 115165, + "name": "Cal Brunder", + "site_detail_url": "https://comicvine.gamespot.com/cal-brunder/4005-115165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115166/", + "id": 115166, + "name": "Lightning", + "site_detail_url": "https://comicvine.gamespot.com/lightning/4005-115166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115167/", + "id": 115167, + "name": "Karal", + "site_detail_url": "https://comicvine.gamespot.com/karal/4005-115167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115168/", + "id": 115168, + "name": "Ev Carley", + "site_detail_url": "https://comicvine.gamespot.com/ev-carley/4005-115168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115169/", + "id": 115169, + "name": "Rod Nelson", + "site_detail_url": "https://comicvine.gamespot.com/rod-nelson/4005-115169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115170/", + "id": 115170, + "name": "Lil", + "site_detail_url": "https://comicvine.gamespot.com/lil/4005-115170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115171/", + "id": 115171, + "name": "Dr. Lang", + "site_detail_url": "https://comicvine.gamespot.com/dr-lang/4005-115171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115172/", + "id": 115172, + "name": "Steve Enkel", + "site_detail_url": "https://comicvine.gamespot.com/steve-enkel/4005-115172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115173/", + "id": 115173, + "name": "John Dillon", + "site_detail_url": "https://comicvine.gamespot.com/john-dillon/4005-115173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115174/", + "id": 115174, + "name": "Gus Ronson", + "site_detail_url": "https://comicvine.gamespot.com/gus-ronson/4005-115174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115175/", + "id": 115175, + "name": "Mike Malone", + "site_detail_url": "https://comicvine.gamespot.com/mike-malone/4005-115175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115176/", + "id": 115176, + "name": "Trigger Bolo", + "site_detail_url": "https://comicvine.gamespot.com/trigger-bolo/4005-115176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115177/", + "id": 115177, + "name": "Dutch Hansen", + "site_detail_url": "https://comicvine.gamespot.com/dutch-hansen/4005-115177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115178/", + "id": 115178, + "name": "Mr. Harris", + "site_detail_url": "https://comicvine.gamespot.com/mr-harris/4005-115178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115184/", + "id": 115184, + "name": "Agent Haines", + "site_detail_url": "https://comicvine.gamespot.com/agent-haines/4005-115184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115185/", + "id": 115185, + "name": "George Saywitz", + "site_detail_url": "https://comicvine.gamespot.com/george-saywitz/4005-115185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115186/", + "id": 115186, + "name": "Dragonclaw", + "site_detail_url": "https://comicvine.gamespot.com/dragonclaw/4005-115186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115187/", + "id": 115187, + "name": "Founder Keen", + "site_detail_url": "https://comicvine.gamespot.com/founder-keen/4005-115187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115188/", + "id": 115188, + "name": "Mama Hub", + "site_detail_url": "https://comicvine.gamespot.com/mama-hub/4005-115188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115189/", + "id": 115189, + "name": "Krattaka", + "site_detail_url": "https://comicvine.gamespot.com/krattaka/4005-115189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115190/", + "id": 115190, + "name": "Agent Robertson", + "site_detail_url": "https://comicvine.gamespot.com/agent-robertson/4005-115190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115223/", + "id": 115223, + "name": "Dr. Martin", + "site_detail_url": "https://comicvine.gamespot.com/dr-martin/4005-115223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115224/", + "id": 115224, + "name": "Dr. Milan", + "site_detail_url": "https://comicvine.gamespot.com/dr-milan/4005-115224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115225/", + "id": 115225, + "name": "Dr. Snodgrass", + "site_detail_url": "https://comicvine.gamespot.com/dr-snodgrass/4005-115225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115227/", + "id": 115227, + "name": "Shigeru", + "site_detail_url": "https://comicvine.gamespot.com/shigeru/4005-115227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115236/", + "id": 115236, + "name": "Bone Saw McGraw", + "site_detail_url": "https://comicvine.gamespot.com/bone-saw-mcgraw/4005-115236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115237/", + "id": 115237, + "name": "Jim Davis", + "site_detail_url": "https://comicvine.gamespot.com/jim-davis/4005-115237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115238/", + "id": 115238, + "name": "Mutate 01", + "site_detail_url": "https://comicvine.gamespot.com/mutate-01/4005-115238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115265/", + "id": 115265, + "name": "Natalie Long", + "site_detail_url": "https://comicvine.gamespot.com/natalie-long/4005-115265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115278/", + "id": 115278, + "name": "Eddie Costanza", + "site_detail_url": "https://comicvine.gamespot.com/eddie-costanza/4005-115278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115279/", + "id": 115279, + "name": "Rob Peterson", + "site_detail_url": "https://comicvine.gamespot.com/rob-peterson/4005-115279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115280/", + "id": 115280, + "name": "T.T. Thomas", + "site_detail_url": "https://comicvine.gamespot.com/t-t-thomas/4005-115280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115281/", + "id": 115281, + "name": "Suzy Sanderson", + "site_detail_url": "https://comicvine.gamespot.com/suzy-sanderson/4005-115281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115282/", + "id": 115282, + "name": "Bill Potter", + "site_detail_url": "https://comicvine.gamespot.com/bill-potter/4005-115282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115283/", + "id": 115283, + "name": "Jay T. Thomas", + "site_detail_url": "https://comicvine.gamespot.com/jay-t-thomas/4005-115283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115284/", + "id": 115284, + "name": "Professor Squid", + "site_detail_url": "https://comicvine.gamespot.com/professor-squid/4005-115284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115285/", + "id": 115285, + "name": "Tricia Lane", + "site_detail_url": "https://comicvine.gamespot.com/tricia-lane/4005-115285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115286/", + "id": 115286, + "name": "Tiffany Cummings", + "site_detail_url": "https://comicvine.gamespot.com/tiffany-cummings/4005-115286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115287/", + "id": 115287, + "name": "Hunter Todd", + "site_detail_url": "https://comicvine.gamespot.com/hunter-todd/4005-115287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115288/", + "id": 115288, + "name": "Pilar Ortega", + "site_detail_url": "https://comicvine.gamespot.com/pilar-ortega/4005-115288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115289/", + "id": 115289, + "name": "Macauley Sharpe", + "site_detail_url": "https://comicvine.gamespot.com/macauley-sharpe/4005-115289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115292/", + "id": 115292, + "name": "Dr. Miglietta", + "site_detail_url": "https://comicvine.gamespot.com/dr-miglietta/4005-115292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115293/", + "id": 115293, + "name": "Henry Sturgess", + "site_detail_url": "https://comicvine.gamespot.com/henry-sturgess/4005-115293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115294/", + "id": 115294, + "name": "Rafael Conners", + "site_detail_url": "https://comicvine.gamespot.com/rafael-conners/4005-115294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115295/", + "id": 115295, + "name": "Anchor Stuart", + "site_detail_url": "https://comicvine.gamespot.com/anchor-stuart/4005-115295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115296/", + "id": 115296, + "name": "Francis Weasel", + "site_detail_url": "https://comicvine.gamespot.com/francis-weasel/4005-115296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115297/", + "id": 115297, + "name": "Joey Klein", + "site_detail_url": "https://comicvine.gamespot.com/joey-klein/4005-115297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115298/", + "id": 115298, + "name": "Dr. Eric Schwinner", + "site_detail_url": "https://comicvine.gamespot.com/dr-eric-schwinner/4005-115298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115299/", + "id": 115299, + "name": "Doreen Greenwald", + "site_detail_url": "https://comicvine.gamespot.com/doreen-greenwald/4005-115299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115300/", + "id": 115300, + "name": "Jenny Sheridan", + "site_detail_url": "https://comicvine.gamespot.com/jenny-sheridan/4005-115300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115301/", + "id": 115301, + "name": "Amberson Osborn", + "site_detail_url": "https://comicvine.gamespot.com/amberson-osborn/4005-115301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115302/", + "id": 115302, + "name": "Ruzenka", + "site_detail_url": "https://comicvine.gamespot.com/ruzenka/4005-115302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115303/", + "id": 115303, + "name": "Doctor Bendix", + "site_detail_url": "https://comicvine.gamespot.com/doctor-bendix/4005-115303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115304/", + "id": 115304, + "name": "Brent Nagle", + "site_detail_url": "https://comicvine.gamespot.com/brent-nagle/4005-115304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115305/", + "id": 115305, + "name": "Ellen Grantz", + "site_detail_url": "https://comicvine.gamespot.com/ellen-grantz/4005-115305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115306/", + "id": 115306, + "name": "Raymond Crow", + "site_detail_url": "https://comicvine.gamespot.com/raymond-crow/4005-115306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115307/", + "id": 115307, + "name": "Greg Chasen", + "site_detail_url": "https://comicvine.gamespot.com/greg-chasen/4005-115307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115308/", + "id": 115308, + "name": "Rudev Broga", + "site_detail_url": "https://comicvine.gamespot.com/rudev-broga/4005-115308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115309/", + "id": 115309, + "name": "Noah Purl", + "site_detail_url": "https://comicvine.gamespot.com/noah-purl/4005-115309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115313/", + "id": 115313, + "name": "David Jameson", + "site_detail_url": "https://comicvine.gamespot.com/david-jameson/4005-115313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115314/", + "id": 115314, + "name": "Don O'Reilly", + "site_detail_url": "https://comicvine.gamespot.com/don-o-reilly/4005-115314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115316/", + "id": 115316, + "name": "Dr. Beekman", + "site_detail_url": "https://comicvine.gamespot.com/dr-beekman/4005-115316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115317/", + "id": 115317, + "name": "Marty Dennis", + "site_detail_url": "https://comicvine.gamespot.com/marty-dennis/4005-115317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115318/", + "id": 115318, + "name": "Tony Prescott", + "site_detail_url": "https://comicvine.gamespot.com/tony-prescott/4005-115318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115386/", + "id": 115386, + "name": "Galken", + "site_detail_url": "https://comicvine.gamespot.com/galken/4005-115386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115387/", + "id": 115387, + "name": "Scorpia", + "site_detail_url": "https://comicvine.gamespot.com/scorpia/4005-115387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115388/", + "id": 115388, + "name": "Markor the Mighty", + "site_detail_url": "https://comicvine.gamespot.com/markor-the-mighty/4005-115388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115389/", + "id": 115389, + "name": "Toxcid", + "site_detail_url": "https://comicvine.gamespot.com/toxcid/4005-115389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115390/", + "id": 115390, + "name": "Wingid", + "site_detail_url": "https://comicvine.gamespot.com/wingid/4005-115390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115391/", + "id": 115391, + "name": "Trancula", + "site_detail_url": "https://comicvine.gamespot.com/trancula/4005-115391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115392/", + "id": 115392, + "name": "Stranglebug", + "site_detail_url": "https://comicvine.gamespot.com/stranglebug/4005-115392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115393/", + "id": 115393, + "name": "Spider-Flyer", + "site_detail_url": "https://comicvine.gamespot.com/spider-flyer/4005-115393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115394/", + "id": 115394, + "name": "Skito", + "site_detail_url": "https://comicvine.gamespot.com/skito/4005-115394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115395/", + "id": 115395, + "name": "Waspax", + "site_detail_url": "https://comicvine.gamespot.com/waspax/4005-115395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115396/", + "id": 115396, + "name": "Skulk", + "site_detail_url": "https://comicvine.gamespot.com/skulk/4005-115396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115397/", + "id": 115397, + "name": "Spidrax", + "site_detail_url": "https://comicvine.gamespot.com/spidrax/4005-115397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115398/", + "id": 115398, + "name": "Belana", + "site_detail_url": "https://comicvine.gamespot.com/belana/4005-115398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115399/", + "id": 115399, + "name": "Rhine-Ox", + "site_detail_url": "https://comicvine.gamespot.com/rhine-ox/4005-115399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115400/", + "id": 115400, + "name": "Raplor", + "site_detail_url": "https://comicvine.gamespot.com/raplor/4005-115400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115401/", + "id": 115401, + "name": "Bitaur", + "site_detail_url": "https://comicvine.gamespot.com/bitaur/4005-115401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115402/", + "id": 115402, + "name": "Battle Beetle", + "site_detail_url": "https://comicvine.gamespot.com/battle-beetle/4005-115402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115403/", + "id": 115403, + "name": "Dragonflyer", + "site_detail_url": "https://comicvine.gamespot.com/dragonflyer/4005-115403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115404/", + "id": 115404, + "name": "Stellara", + "site_detail_url": "https://comicvine.gamespot.com/stellara/4005-115404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115405/", + "id": 115405, + "name": "Mantor", + "site_detail_url": "https://comicvine.gamespot.com/mantor/4005-115405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115406/", + "id": 115406, + "name": "Zak", + "site_detail_url": "https://comicvine.gamespot.com/zak/4005-115406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115407/", + "id": 115407, + "name": "Pinsor", + "site_detail_url": "https://comicvine.gamespot.com/pinsor/4005-115407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115408/", + "id": 115408, + "name": "Dargon", + "site_detail_url": "https://comicvine.gamespot.com/dargon/4005-115408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115410/", + "id": 115410, + "name": "Monica Warren", + "site_detail_url": "https://comicvine.gamespot.com/monica-warren/4005-115410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115411/", + "id": 115411, + "name": "Michel Souris", + "site_detail_url": "https://comicvine.gamespot.com/michel-souris/4005-115411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115412/", + "id": 115412, + "name": "Rain Falling West", + "site_detail_url": "https://comicvine.gamespot.com/rain-falling-west/4005-115412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115413/", + "id": 115413, + "name": "Roberta Elk Step", + "site_detail_url": "https://comicvine.gamespot.com/roberta-elk-step/4005-115413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115414/", + "id": 115414, + "name": "Sherna", + "site_detail_url": "https://comicvine.gamespot.com/sherna/4005-115414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115415/", + "id": 115415, + "name": "Basque", + "site_detail_url": "https://comicvine.gamespot.com/basque/4005-115415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115418/", + "id": 115418, + "name": "Florence Gaines", + "site_detail_url": "https://comicvine.gamespot.com/florence-gaines/4005-115418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115419/", + "id": 115419, + "name": "Howard Shelton", + "site_detail_url": "https://comicvine.gamespot.com/howard-shelton/4005-115419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115420/", + "id": 115420, + "name": "Madeline Stewart", + "site_detail_url": "https://comicvine.gamespot.com/madeline-stewart/4005-115420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115421/", + "id": 115421, + "name": "Lonni", + "site_detail_url": "https://comicvine.gamespot.com/lonni/4005-115421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115423/", + "id": 115423, + "name": "Scotty Gaines", + "site_detail_url": "https://comicvine.gamespot.com/scotty-gaines/4005-115423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115424/", + "id": 115424, + "name": "Adrienne Dore", + "site_detail_url": "https://comicvine.gamespot.com/adrienne-dore/4005-115424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115425/", + "id": 115425, + "name": "Calvin Maroney", + "site_detail_url": "https://comicvine.gamespot.com/calvin-maroney/4005-115425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115426/", + "id": 115426, + "name": "Willie Lucas", + "site_detail_url": "https://comicvine.gamespot.com/willie-lucas/4005-115426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115427/", + "id": 115427, + "name": "Cyril Lucas", + "site_detail_url": "https://comicvine.gamespot.com/cyril-lucas/4005-115427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115497/", + "id": 115497, + "name": "Carmen Cruise", + "site_detail_url": "https://comicvine.gamespot.com/carmen-cruise/4005-115497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115567/", + "id": 115567, + "name": "Albert McGee", + "site_detail_url": "https://comicvine.gamespot.com/albert-mcgee/4005-115567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115568/", + "id": 115568, + "name": "Zreate'th", + "site_detail_url": "https://comicvine.gamespot.com/zreate-th/4005-115568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115570/", + "id": 115570, + "name": "Steel-Fist", + "site_detail_url": "https://comicvine.gamespot.com/steel-fist/4005-115570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115571/", + "id": 115571, + "name": "Killdozer", + "site_detail_url": "https://comicvine.gamespot.com/killdozer/4005-115571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115572/", + "id": 115572, + "name": "Heavy Metal Jacket", + "site_detail_url": "https://comicvine.gamespot.com/heavy-metal-jacket/4005-115572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115573/", + "id": 115573, + "name": "Edgar Eliot", + "site_detail_url": "https://comicvine.gamespot.com/edgar-eliot/4005-115573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115599/", + "id": 115599, + "name": "Devendra", + "site_detail_url": "https://comicvine.gamespot.com/devendra/4005-115599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115606/", + "id": 115606, + "name": "The Gentleman", + "site_detail_url": "https://comicvine.gamespot.com/the-gentleman/4005-115606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115622/", + "id": 115622, + "name": "General Standish", + "site_detail_url": "https://comicvine.gamespot.com/general-standish/4005-115622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115623/", + "id": 115623, + "name": "Kichiriwa", + "site_detail_url": "https://comicvine.gamespot.com/kichiriwa/4005-115623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115624/", + "id": 115624, + "name": "Gloria Justin", + "site_detail_url": "https://comicvine.gamespot.com/gloria-justin/4005-115624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115653/", + "id": 115653, + "name": "Uber Alles", + "site_detail_url": "https://comicvine.gamespot.com/uber-alles/4005-115653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115655/", + "id": 115655, + "name": "Treplaf", + "site_detail_url": "https://comicvine.gamespot.com/treplaf/4005-115655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115725/", + "id": 115725, + "name": "Thatcher", + "site_detail_url": "https://comicvine.gamespot.com/thatcher/4005-115725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115896/", + "id": 115896, + "name": "Terri Kidder", + "site_detail_url": "https://comicvine.gamespot.com/terri-kidder/4005-115896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115897/", + "id": 115897, + "name": "Juan Elmirez", + "site_detail_url": "https://comicvine.gamespot.com/juan-elmirez/4005-115897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115898/", + "id": 115898, + "name": "Emory Lewis", + "site_detail_url": "https://comicvine.gamespot.com/emory-lewis/4005-115898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115899/", + "id": 115899, + "name": "Gormok", + "site_detail_url": "https://comicvine.gamespot.com/gormok/4005-115899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115900/", + "id": 115900, + "name": "Sklarr", + "site_detail_url": "https://comicvine.gamespot.com/sklarr/4005-115900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115901/", + "id": 115901, + "name": "Pr'kash", + "site_detail_url": "https://comicvine.gamespot.com/pr-kash/4005-115901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115902/", + "id": 115902, + "name": "Balzor", + "site_detail_url": "https://comicvine.gamespot.com/balzor/4005-115902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115917/", + "id": 115917, + "name": "Luminous", + "site_detail_url": "https://comicvine.gamespot.com/luminous/4005-115917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115982/", + "id": 115982, + "name": "Ezra Bridger", + "site_detail_url": "https://comicvine.gamespot.com/ezra-bridger/4005-115982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115985/", + "id": 115985, + "name": "Sabine Wren", + "site_detail_url": "https://comicvine.gamespot.com/sabine-wren/4005-115985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115986/", + "id": 115986, + "name": "Hera Syndulla", + "site_detail_url": "https://comicvine.gamespot.com/hera-syndulla/4005-115986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115987/", + "id": 115987, + "name": "Chopper", + "site_detail_url": "https://comicvine.gamespot.com/chopper/4005-115987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115988/", + "id": 115988, + "name": "Zeb Orrelios", + "site_detail_url": "https://comicvine.gamespot.com/zeb-orrelios/4005-115988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-115989/", + "id": 115989, + "name": "Kanan Jarrus", + "site_detail_url": "https://comicvine.gamespot.com/kanan-jarrus/4005-115989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116005/", + "id": 116005, + "name": "Liz", + "site_detail_url": "https://comicvine.gamespot.com/liz/4005-116005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116162/", + "id": 116162, + "name": "John Dee", + "site_detail_url": "https://comicvine.gamespot.com/john-dee/4005-116162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116167/", + "id": 116167, + "name": "Vibranium", + "site_detail_url": "https://comicvine.gamespot.com/vibranium/4005-116167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116355/", + "id": 116355, + "name": "Trish", + "site_detail_url": "https://comicvine.gamespot.com/trish/4005-116355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116356/", + "id": 116356, + "name": "Larry", + "site_detail_url": "https://comicvine.gamespot.com/larry/4005-116356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116357/", + "id": 116357, + "name": "General Daly", + "site_detail_url": "https://comicvine.gamespot.com/general-daly/4005-116357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116422/", + "id": 116422, + "name": "Tara Tam", + "site_detail_url": "https://comicvine.gamespot.com/tara-tam/4005-116422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116424/", + "id": 116424, + "name": "Augustine Cross", + "site_detail_url": "https://comicvine.gamespot.com/augustine-cross/4005-116424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116425/", + "id": 116425, + "name": "Vavella", + "site_detail_url": "https://comicvine.gamespot.com/vavella/4005-116425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116426/", + "id": 116426, + "name": "Mylz-Ob'ryn", + "site_detail_url": "https://comicvine.gamespot.com/mylz-ob-ryn/4005-116426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116427/", + "id": 116427, + "name": "Lyth'ka", + "site_detail_url": "https://comicvine.gamespot.com/lyth-ka/4005-116427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116428/", + "id": 116428, + "name": "Steck'ee", + "site_detail_url": "https://comicvine.gamespot.com/steck-ee/4005-116428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116429/", + "id": 116429, + "name": "Helkooky", + "site_detail_url": "https://comicvine.gamespot.com/helkooky/4005-116429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116430/", + "id": 116430, + "name": "Jella", + "site_detail_url": "https://comicvine.gamespot.com/jella/4005-116430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116431/", + "id": 116431, + "name": "Klaer", + "site_detail_url": "https://comicvine.gamespot.com/klaer/4005-116431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116432/", + "id": 116432, + "name": "Hav-Ak", + "site_detail_url": "https://comicvine.gamespot.com/hav-ak/4005-116432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116447/", + "id": 116447, + "name": "Bav-Tek", + "site_detail_url": "https://comicvine.gamespot.com/bav-tek/4005-116447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116448/", + "id": 116448, + "name": "Hav-Rogg", + "site_detail_url": "https://comicvine.gamespot.com/hav-rogg/4005-116448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116449/", + "id": 116449, + "name": "Veeda Leebre", + "site_detail_url": "https://comicvine.gamespot.com/veeda-leebre/4005-116449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116450/", + "id": 116450, + "name": "Jara", + "site_detail_url": "https://comicvine.gamespot.com/jara/4005-116450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116452/", + "id": 116452, + "name": "Balb", + "site_detail_url": "https://comicvine.gamespot.com/balb/4005-116452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116576/", + "id": 116576, + "name": "Mechano", + "site_detail_url": "https://comicvine.gamespot.com/mechano/4005-116576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116703/", + "id": 116703, + "name": "The Prophet", + "site_detail_url": "https://comicvine.gamespot.com/the-prophet/4005-116703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116704/", + "id": 116704, + "name": "Marina", + "site_detail_url": "https://comicvine.gamespot.com/marina/4005-116704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116705/", + "id": 116705, + "name": "Barry Adenauer", + "site_detail_url": "https://comicvine.gamespot.com/barry-adenauer/4005-116705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116706/", + "id": 116706, + "name": "Evaan Verlaine", + "site_detail_url": "https://comicvine.gamespot.com/evaan-verlaine/4005-116706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116798/", + "id": 116798, + "name": "Kindun", + "site_detail_url": "https://comicvine.gamespot.com/kindun/4005-116798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116962/", + "id": 116962, + "name": "Kaladar", + "site_detail_url": "https://comicvine.gamespot.com/kaladar/4005-116962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116991/", + "id": 116991, + "name": "Chandler", + "site_detail_url": "https://comicvine.gamespot.com/chandler/4005-116991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116992/", + "id": 116992, + "name": "Abigail Bullion", + "site_detail_url": "https://comicvine.gamespot.com/abigail-bullion/4005-116992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116993/", + "id": 116993, + "name": "Barnabas T. Bullion", + "site_detail_url": "https://comicvine.gamespot.com/barnabas-t-bullion/4005-116993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-116998/", + "id": 116998, + "name": "Aphra", + "site_detail_url": "https://comicvine.gamespot.com/aphra/4005-116998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117000/", + "id": 117000, + "name": "Eldrac", + "site_detail_url": "https://comicvine.gamespot.com/eldrac/4005-117000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117144/", + "id": 117144, + "name": "Todd", + "site_detail_url": "https://comicvine.gamespot.com/todd/4005-117144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117145/", + "id": 117145, + "name": "Singular", + "site_detail_url": "https://comicvine.gamespot.com/singular/4005-117145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117146/", + "id": 117146, + "name": "Fye", + "site_detail_url": "https://comicvine.gamespot.com/fye/4005-117146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117201/", + "id": 117201, + "name": "Golden Skull", + "site_detail_url": "https://comicvine.gamespot.com/golden-skull/4005-117201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117303/", + "id": 117303, + "name": "Dragonmaster of Klarn", + "site_detail_url": "https://comicvine.gamespot.com/dragonmaster-of-klarn/4005-117303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117304/", + "id": 117304, + "name": "Darklens", + "site_detail_url": "https://comicvine.gamespot.com/darklens/4005-117304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117318/", + "id": 117318, + "name": "Jeutar Morat", + "site_detail_url": "https://comicvine.gamespot.com/jeutar-morat/4005-117318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117319/", + "id": 117319, + "name": "Kleeve", + "site_detail_url": "https://comicvine.gamespot.com/kleeve/4005-117319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117320/", + "id": 117320, + "name": "Gamut Key", + "site_detail_url": "https://comicvine.gamespot.com/gamut-key/4005-117320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117338/", + "id": 117338, + "name": "Helen Cho", + "site_detail_url": "https://comicvine.gamespot.com/helen-cho/4005-117338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117397/", + "id": 117397, + "name": "Fath", + "site_detail_url": "https://comicvine.gamespot.com/fath/4005-117397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117495/", + "id": 117495, + "name": "Crowley", + "site_detail_url": "https://comicvine.gamespot.com/crowley/4005-117495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117501/", + "id": 117501, + "name": "Wesley", + "site_detail_url": "https://comicvine.gamespot.com/wesley/4005-117501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117542/", + "id": 117542, + "name": "Max Brashear", + "site_detail_url": "https://comicvine.gamespot.com/max-brashear/4005-117542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117543/", + "id": 117543, + "name": "Kamran", + "site_detail_url": "https://comicvine.gamespot.com/kamran/4005-117543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117591/", + "id": 117591, + "name": "Kylo Ren", + "site_detail_url": "https://comicvine.gamespot.com/kylo-ren/4005-117591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117636/", + "id": 117636, + "name": "Eli Hatcher", + "site_detail_url": "https://comicvine.gamespot.com/eli-hatcher/4005-117636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117637/", + "id": 117637, + "name": "Colton Hendry", + "site_detail_url": "https://comicvine.gamespot.com/colton-hendry/4005-117637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117638/", + "id": 117638, + "name": "Elizabeth Alain", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-alain/4005-117638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117640/", + "id": 117640, + "name": "Bo", + "site_detail_url": "https://comicvine.gamespot.com/bo/4005-117640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117641/", + "id": 117641, + "name": "Agent Lumley", + "site_detail_url": "https://comicvine.gamespot.com/agent-lumley/4005-117641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117642/", + "id": 117642, + "name": "Amy", + "site_detail_url": "https://comicvine.gamespot.com/amy/4005-117642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117713/", + "id": 117713, + "name": "Kaboom", + "site_detail_url": "https://comicvine.gamespot.com/kaboom/4005-117713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117714/", + "id": 117714, + "name": "Glogug", + "site_detail_url": "https://comicvine.gamespot.com/glogug/4005-117714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117767/", + "id": 117767, + "name": "Laura Barton", + "site_detail_url": "https://comicvine.gamespot.com/laura-barton/4005-117767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-117932/", + "id": 117932, + "name": "Kacy", + "site_detail_url": "https://comicvine.gamespot.com/kacy/4005-117932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118012/", + "id": 118012, + "name": "Mon-Tog", + "site_detail_url": "https://comicvine.gamespot.com/mon-tog/4005-118012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118035/", + "id": 118035, + "name": "Oscar Stamp", + "site_detail_url": "https://comicvine.gamespot.com/oscar-stamp/4005-118035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118036/", + "id": 118036, + "name": "Hector del Sol", + "site_detail_url": "https://comicvine.gamespot.com/hector-del-sol/4005-118036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118086/", + "id": 118086, + "name": "Bitey McSpidey-Bite", + "site_detail_url": "https://comicvine.gamespot.com/bitey-mcspidey-bite/4005-118086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118087/", + "id": 118087, + "name": "Cuddles", + "site_detail_url": "https://comicvine.gamespot.com/cuddles/4005-118087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118088/", + "id": 118088, + "name": "Tiger Wild", + "site_detail_url": "https://comicvine.gamespot.com/tiger-wild/4005-118088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118089/", + "id": 118089, + "name": "Falconia", + "site_detail_url": "https://comicvine.gamespot.com/falconia/4005-118089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118090/", + "id": 118090, + "name": "Vulture von Doom", + "site_detail_url": "https://comicvine.gamespot.com/vulture-von-doom/4005-118090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118104/", + "id": 118104, + "name": "The Who-atcher", + "site_detail_url": "https://comicvine.gamespot.com/the-whoatcher/4005-118104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118189/", + "id": 118189, + "name": "Henry Dean", + "site_detail_url": "https://comicvine.gamespot.com/henry-dean/4005-118189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118308/", + "id": 118308, + "name": "Mike Hauley", + "site_detail_url": "https://comicvine.gamespot.com/mike-hauley/4005-118308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118378/", + "id": 118378, + "name": "Inochi", + "site_detail_url": "https://comicvine.gamespot.com/inochi/4005-118378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118379/", + "id": 118379, + "name": "Shibou", + "site_detail_url": "https://comicvine.gamespot.com/shibou/4005-118379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118414/", + "id": 118414, + "name": "The Vile Tapeworm", + "site_detail_url": "https://comicvine.gamespot.com/the-vile-tapeworm/4005-118414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118415/", + "id": 118415, + "name": "Pink Sphinx", + "site_detail_url": "https://comicvine.gamespot.com/pink-sphinx/4005-118415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118416/", + "id": 118416, + "name": "She-Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/she-man-thing/4005-118416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118536/", + "id": 118536, + "name": "Crossbones (Barnes)", + "site_detail_url": "https://comicvine.gamespot.com/crossbones-barnes/4005-118536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118537/", + "id": 118537, + "name": "Doctor Mime", + "site_detail_url": "https://comicvine.gamespot.com/doctor-mime/4005-118537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118541/", + "id": 118541, + "name": "Positron", + "site_detail_url": "https://comicvine.gamespot.com/positron/4005-118541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118543/", + "id": 118543, + "name": "Laussa", + "site_detail_url": "https://comicvine.gamespot.com/laussa/4005-118543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118550/", + "id": 118550, + "name": "Blake Burdick", + "site_detail_url": "https://comicvine.gamespot.com/blake-burdick/4005-118550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118557/", + "id": 118557, + "name": "President Howard", + "site_detail_url": "https://comicvine.gamespot.com/president-howard/4005-118557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118565/", + "id": 118565, + "name": "Onawa", + "site_detail_url": "https://comicvine.gamespot.com/onawa/4005-118565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118566/", + "id": 118566, + "name": "Dolfo", + "site_detail_url": "https://comicvine.gamespot.com/dolfo/4005-118566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118567/", + "id": 118567, + "name": "Grampa Bakian", + "site_detail_url": "https://comicvine.gamespot.com/grampa-bakian/4005-118567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118568/", + "id": 118568, + "name": "Menzin Bakian", + "site_detail_url": "https://comicvine.gamespot.com/menzin-bakian/4005-118568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118569/", + "id": 118569, + "name": "Fayne Bakian", + "site_detail_url": "https://comicvine.gamespot.com/fayne-bakian/4005-118569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118570/", + "id": 118570, + "name": "Anwen Bakian", + "site_detail_url": "https://comicvine.gamespot.com/anwen-bakian/4005-118570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118571/", + "id": 118571, + "name": "Black Widow 2099", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-2099/4005-118571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118613/", + "id": 118613, + "name": "Love", + "site_detail_url": "https://comicvine.gamespot.com/love/4005-118613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118688/", + "id": 118688, + "name": "Jeremiah Warrick", + "site_detail_url": "https://comicvine.gamespot.com/jeremiah-warrick/4005-118688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118700/", + "id": 118700, + "name": "Agent Jones", + "site_detail_url": "https://comicvine.gamespot.com/agent-jones/4005-118700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118701/", + "id": 118701, + "name": "Agent Smith", + "site_detail_url": "https://comicvine.gamespot.com/agent-smith/4005-118701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118720/", + "id": 118720, + "name": "Cylo", + "site_detail_url": "https://comicvine.gamespot.com/cylo/4005-118720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118721/", + "id": 118721, + "name": "Lady Caterpillar", + "site_detail_url": "https://comicvine.gamespot.com/lady-caterpillar/4005-118721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118722/", + "id": 118722, + "name": "Bulletproof", + "site_detail_url": "https://comicvine.gamespot.com/bulletproof/4005-118722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118754/", + "id": 118754, + "name": "Spiderling", + "site_detail_url": "https://comicvine.gamespot.com/spiderling/4005-118754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118755/", + "id": 118755, + "name": "Regent", + "site_detail_url": "https://comicvine.gamespot.com/regent/4005-118755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118756/", + "id": 118756, + "name": "Sana Starros", + "site_detail_url": "https://comicvine.gamespot.com/sana-starros/4005-118756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118835/", + "id": 118835, + "name": "Dust", + "site_detail_url": "https://comicvine.gamespot.com/dust/4005-118835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118840/", + "id": 118840, + "name": "Christina Pryde", + "site_detail_url": "https://comicvine.gamespot.com/christina-pryde/4005-118840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118841/", + "id": 118841, + "name": "Cameron Howlett", + "site_detail_url": "https://comicvine.gamespot.com/cameron-howlett/4005-118841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118845/", + "id": 118845, + "name": "Nicholas Brown", + "site_detail_url": "https://comicvine.gamespot.com/nicholas-brown/4005-118845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118902/", + "id": 118902, + "name": "Jolene Saulsby", + "site_detail_url": "https://comicvine.gamespot.com/jolene-saulsby/4005-118902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118910/", + "id": 118910, + "name": "Rick", + "site_detail_url": "https://comicvine.gamespot.com/rick/4005-118910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118913/", + "id": 118913, + "name": "Aldus Kluge", + "site_detail_url": "https://comicvine.gamespot.com/aldus-kluge/4005-118913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118967/", + "id": 118967, + "name": "Captain America 2099", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-2099/4005-118967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118968/", + "id": 118968, + "name": "Iron Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2099/4005-118968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118969/", + "id": 118969, + "name": "Hawkeye 2099", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-2099/4005-118969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118974/", + "id": 118974, + "name": "Mega-Rad", + "site_detail_url": "https://comicvine.gamespot.com/mega-rad/4005-118974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-118996/", + "id": 118996, + "name": "Kiri Oshiro", + "site_detail_url": "https://comicvine.gamespot.com/kiri-oshiro/4005-118996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119095/", + "id": 119095, + "name": "Spyder-Man", + "site_detail_url": "https://comicvine.gamespot.com/spyder-man/4005-119095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119096/", + "id": 119096, + "name": "Chilly Dobbs", + "site_detail_url": "https://comicvine.gamespot.com/chilly-dobbs/4005-119096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119097/", + "id": 119097, + "name": "Frostbite", + "site_detail_url": "https://comicvine.gamespot.com/frostbite/4005-119097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119099/", + "id": 119099, + "name": "Thor the Green", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-green/4005-119099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119130/", + "id": 119130, + "name": "Koi Boi", + "site_detail_url": "https://comicvine.gamespot.com/koi-boi/4005-119130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119297/", + "id": 119297, + "name": "Eve Bakian", + "site_detail_url": "https://comicvine.gamespot.com/eve-bakian/4005-119297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119351/", + "id": 119351, + "name": "Zigzag", + "site_detail_url": "https://comicvine.gamespot.com/zigzag/4005-119351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119393/", + "id": 119393, + "name": "Star-Lord 3000", + "site_detail_url": "https://comicvine.gamespot.com/star-lord-3000/4005-119393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119574/", + "id": 119574, + "name": "Jora", + "site_detail_url": "https://comicvine.gamespot.com/jora/4005-119574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119575/", + "id": 119575, + "name": "Pareece", + "site_detail_url": "https://comicvine.gamespot.com/pareece/4005-119575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119576/", + "id": 119576, + "name": "Beon Beonel", + "site_detail_url": "https://comicvine.gamespot.com/beon-beonel/4005-119576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119705/", + "id": 119705, + "name": "Singularity", + "site_detail_url": "https://comicvine.gamespot.com/singularity/4005-119705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119949/", + "id": 119949, + "name": "Knuckles O'Shaughnessy", + "site_detail_url": "https://comicvine.gamespot.com/knuckles-oshaughnessy/4005-119949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119950/", + "id": 119950, + "name": "Ssaria", + "site_detail_url": "https://comicvine.gamespot.com/ssaria/4005-119950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119953/", + "id": 119953, + "name": "Sub-Mariner 2099", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-2099/4005-119953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119954/", + "id": 119954, + "name": "Martin Hargood", + "site_detail_url": "https://comicvine.gamespot.com/martin-hargood/4005-119954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-119959/", + "id": 119959, + "name": "Adrian Castorp", + "site_detail_url": "https://comicvine.gamespot.com/adrian-castorp/4005-119959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120030/", + "id": 120030, + "name": "Clementine Franklin-Cox", + "site_detail_url": "https://comicvine.gamespot.com/clementine-franklin-cox/4005-120030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120051/", + "id": 120051, + "name": "Dwight Barrett", + "site_detail_url": "https://comicvine.gamespot.com/dwight-barrett/4005-120051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120101/", + "id": 120101, + "name": "Knox", + "site_detail_url": "https://comicvine.gamespot.com/knox/4005-120101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120103/", + "id": 120103, + "name": "Sheik Abdullah", + "site_detail_url": "https://comicvine.gamespot.com/sheik-abdullah/4005-120103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120190/", + "id": 120190, + "name": "Ultron Eight", + "site_detail_url": "https://comicvine.gamespot.com/ultron-eight/4005-120190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120192/", + "id": 120192, + "name": "Bollo Brok", + "site_detail_url": "https://comicvine.gamespot.com/bollo-brok/4005-120192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120193/", + "id": 120193, + "name": "Contessa Yuow Yuow Screet", + "site_detail_url": "https://comicvine.gamespot.com/contessa-yuow-yuow-screet/4005-120193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120194/", + "id": 120194, + "name": "Haracon the Ghost Maker", + "site_detail_url": "https://comicvine.gamespot.com/haracon-the-ghost-maker/4005-120194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120206/", + "id": 120206, + "name": "Tracy Scott", + "site_detail_url": "https://comicvine.gamespot.com/tracy-scott/4005-120206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120208/", + "id": 120208, + "name": "Admiral Ouroboros", + "site_detail_url": "https://comicvine.gamespot.com/admiral-ouroboros/4005-120208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120312/", + "id": 120312, + "name": "Yotat", + "site_detail_url": "https://comicvine.gamespot.com/yotat/4005-120312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120327/", + "id": 120327, + "name": "Raz Malhotra", + "site_detail_url": "https://comicvine.gamespot.com/raz-malhotra/4005-120327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120329/", + "id": 120329, + "name": "Grid", + "site_detail_url": "https://comicvine.gamespot.com/grid/4005-120329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120518/", + "id": 120518, + "name": "A.P.E.", + "site_detail_url": "https://comicvine.gamespot.com/a-p-e/4005-120518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120519/", + "id": 120519, + "name": "Eris", + "site_detail_url": "https://comicvine.gamespot.com/eris/4005-120519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120520/", + "id": 120520, + "name": "Huldan Wull", + "site_detail_url": "https://comicvine.gamespot.com/huldan-wull/4005-120520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120521/", + "id": 120521, + "name": "Kor/Al", + "site_detail_url": "https://comicvine.gamespot.com/kor-al/4005-120521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120522/", + "id": 120522, + "name": "Laz", + "site_detail_url": "https://comicvine.gamespot.com/laz/4005-120522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120523/", + "id": 120523, + "name": "Po of Samothrace", + "site_detail_url": "https://comicvine.gamespot.com/po-of-samothrace/4005-120523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120524/", + "id": 120524, + "name": "Polla Quad", + "site_detail_url": "https://comicvine.gamespot.com/polla-quad/4005-120524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120525/", + "id": 120525, + "name": "Wendophon of Hin", + "site_detail_url": "https://comicvine.gamespot.com/wendophon-of-hin/4005-120525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120526/", + "id": 120526, + "name": "Yannak of Karth", + "site_detail_url": "https://comicvine.gamespot.com/yannak-of-karth/4005-120526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120527/", + "id": 120527, + "name": "Zora", + "site_detail_url": "https://comicvine.gamespot.com/zora/4005-120527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120578/", + "id": 120578, + "name": "Wildfire", + "site_detail_url": "https://comicvine.gamespot.com/wildfire/4005-120578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120595/", + "id": 120595, + "name": "Love-a-Lot Bear", + "site_detail_url": "https://comicvine.gamespot.com/love-a-lot-bear/4005-120595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120596/", + "id": 120596, + "name": "Swift Heart Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/swift-heart-rabbit/4005-120596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120597/", + "id": 120597, + "name": "Brave Heart Lion", + "site_detail_url": "https://comicvine.gamespot.com/brave-heart-lion/4005-120597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120598/", + "id": 120598, + "name": "Playful Heart Monkey", + "site_detail_url": "https://comicvine.gamespot.com/playful-heart-monkey/4005-120598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120599/", + "id": 120599, + "name": "No Heart", + "site_detail_url": "https://comicvine.gamespot.com/no-heart/4005-120599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120600/", + "id": 120600, + "name": "Beastly", + "site_detail_url": "https://comicvine.gamespot.com/beastly/4005-120600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120601/", + "id": 120601, + "name": "Aargh", + "site_detail_url": "https://comicvine.gamespot.com/aargh/4005-120601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120602/", + "id": 120602, + "name": "Horn Head", + "site_detail_url": "https://comicvine.gamespot.com/horn-head/4005-120602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120603/", + "id": 120603, + "name": "Slobulus", + "site_detail_url": "https://comicvine.gamespot.com/slobulus/4005-120603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120604/", + "id": 120604, + "name": "Bash Brain", + "site_detail_url": "https://comicvine.gamespot.com/bash-brain/4005-120604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120605/", + "id": 120605, + "name": "Oculus Orbus", + "site_detail_url": "https://comicvine.gamespot.com/oculus-orbus/4005-120605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120606/", + "id": 120606, + "name": "Skull Face", + "site_detail_url": "https://comicvine.gamespot.com/skull-face/4005-120606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120607/", + "id": 120607, + "name": "Dust Brain", + "site_detail_url": "https://comicvine.gamespot.com/dust-brain/4005-120607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120608/", + "id": 120608, + "name": "Screamin' Meemie", + "site_detail_url": "https://comicvine.gamespot.com/screamin-meemie/4005-120608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120609/", + "id": 120609, + "name": "Wolf Breath", + "site_detail_url": "https://comicvine.gamespot.com/wolf-breath/4005-120609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120610/", + "id": 120610, + "name": "Fist Face", + "site_detail_url": "https://comicvine.gamespot.com/fist-face/4005-120610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120650/", + "id": 120650, + "name": "Swine Sucker", + "site_detail_url": "https://comicvine.gamespot.com/swine-sucker/4005-120650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120651/", + "id": 120651, + "name": "Bruise Brother", + "site_detail_url": "https://comicvine.gamespot.com/bruise-brother/4005-120651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120654/", + "id": 120654, + "name": "Lock Lips", + "site_detail_url": "https://comicvine.gamespot.com/lock-lips/4005-120654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120655/", + "id": 120655, + "name": "Freaky Fullback", + "site_detail_url": "https://comicvine.gamespot.com/freaky-fullback/4005-120655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120656/", + "id": 120656, + "name": "Snake Bait", + "site_detail_url": "https://comicvine.gamespot.com/snake-bait/4005-120656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120805/", + "id": 120805, + "name": "Angel Boy", + "site_detail_url": "https://comicvine.gamespot.com/angel-boy/4005-120805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-120806/", + "id": 120806, + "name": "Nicole Orr", + "site_detail_url": "https://comicvine.gamespot.com/nicole-orr/4005-120806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121068/", + "id": 121068, + "name": "Zoe", + "site_detail_url": "https://comicvine.gamespot.com/zoe/4005-121068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121069/", + "id": 121069, + "name": "Zachary", + "site_detail_url": "https://comicvine.gamespot.com/zachary/4005-121069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121070/", + "id": 121070, + "name": "Giogo", + "site_detail_url": "https://comicvine.gamespot.com/giogo/4005-121070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121121/", + "id": 121121, + "name": "Friday", + "site_detail_url": "https://comicvine.gamespot.com/friday/4005-121121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121146/", + "id": 121146, + "name": "Doctor Fuzmyer", + "site_detail_url": "https://comicvine.gamespot.com/doctor-fuzmyer/4005-121146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121280/", + "id": 121280, + "name": "Ray Mantis", + "site_detail_url": "https://comicvine.gamespot.com/ray-mantis/4005-121280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121315/", + "id": 121315, + "name": "Bug", + "site_detail_url": "https://comicvine.gamespot.com/bug/4005-121315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121415/", + "id": 121415, + "name": "Raina", + "site_detail_url": "https://comicvine.gamespot.com/raina/4005-121415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121422/", + "id": 121422, + "name": "Brad Dodge", + "site_detail_url": "https://comicvine.gamespot.com/brad-dodge/4005-121422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121423/", + "id": 121423, + "name": "Aaron MacKenzie", + "site_detail_url": "https://comicvine.gamespot.com/aaron-mackenzie/4005-121423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121610/", + "id": 121610, + "name": "Erich Paine", + "site_detail_url": "https://comicvine.gamespot.com/erich-paine/4005-121610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121702/", + "id": 121702, + "name": "Red Widow", + "site_detail_url": "https://comicvine.gamespot.com/red-widow/4005-121702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121718/", + "id": 121718, + "name": "Obb", + "site_detail_url": "https://comicvine.gamespot.com/obb/4005-121718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121719/", + "id": 121719, + "name": "Orksa", + "site_detail_url": "https://comicvine.gamespot.com/orksa/4005-121719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121722/", + "id": 121722, + "name": "Reginald", + "site_detail_url": "https://comicvine.gamespot.com/reginald/4005-121722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121723/", + "id": 121723, + "name": "Linda", + "site_detail_url": "https://comicvine.gamespot.com/linda/4005-121723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121724/", + "id": 121724, + "name": "Mikos", + "site_detail_url": "https://comicvine.gamespot.com/mikos/4005-121724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121725/", + "id": 121725, + "name": "Mustafa", + "site_detail_url": "https://comicvine.gamespot.com/mustafa/4005-121725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121797/", + "id": 121797, + "name": "Cord Ryan", + "site_detail_url": "https://comicvine.gamespot.com/cord-ryan/4005-121797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121872/", + "id": 121872, + "name": "Ms. Johnson", + "site_detail_url": "https://comicvine.gamespot.com/ms-johnson/4005-121872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121873/", + "id": 121873, + "name": "Freddie Johnson", + "site_detail_url": "https://comicvine.gamespot.com/freddie-johnson/4005-121873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121874/", + "id": 121874, + "name": "Madeline Johnson", + "site_detail_url": "https://comicvine.gamespot.com/madeline-johnson/4005-121874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121875/", + "id": 121875, + "name": "Hank Johnson", + "site_detail_url": "https://comicvine.gamespot.com/hank-johnson/4005-121875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121890/", + "id": 121890, + "name": "Synapse", + "site_detail_url": "https://comicvine.gamespot.com/synapse/4005-121890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121894/", + "id": 121894, + "name": "Phlish", + "site_detail_url": "https://comicvine.gamespot.com/phlish/4005-121894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121912/", + "id": 121912, + "name": "Bob Oppenheim", + "site_detail_url": "https://comicvine.gamespot.com/bob-oppenheim/4005-121912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121920/", + "id": 121920, + "name": "Warbringer", + "site_detail_url": "https://comicvine.gamespot.com/warbringer/4005-121920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121923/", + "id": 121923, + "name": "A.I.M. Bob", + "site_detail_url": "https://comicvine.gamespot.com/aim-bob/4005-121923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121937/", + "id": 121937, + "name": "Kara Bohusk", + "site_detail_url": "https://comicvine.gamespot.com/kara-bohusk/4005-121937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121938/", + "id": 121938, + "name": "Axel Bohusk", + "site_detail_url": "https://comicvine.gamespot.com/axel-bohusk/4005-121938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-121996/", + "id": 121996, + "name": "F'rahsti", + "site_detail_url": "https://comicvine.gamespot.com/frahsti/4005-121996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122023/", + "id": 122023, + "name": "Foul-cor", + "site_detail_url": "https://comicvine.gamespot.com/foul-cor/4005-122023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122064/", + "id": 122064, + "name": "Odetta Holmes", + "site_detail_url": "https://comicvine.gamespot.com/odetta-holmes/4005-122064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122159/", + "id": 122159, + "name": "BB-8", + "site_detail_url": "https://comicvine.gamespot.com/b-b-8/4005-122159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122160/", + "id": 122160, + "name": "Aurron", + "site_detail_url": "https://comicvine.gamespot.com/aurron/4005-122160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122198/", + "id": 122198, + "name": "Daredevil 2099 (Nelson)", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-2099-nelson/4005-122198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122253/", + "id": 122253, + "name": "Thanoth", + "site_detail_url": "https://comicvine.gamespot.com/thanoth/4005-122253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122332/", + "id": 122332, + "name": "Ivan Somodorov", + "site_detail_url": "https://comicvine.gamespot.com/ivan-somodorov/4005-122332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122333/", + "id": 122333, + "name": "Oksana Davis", + "site_detail_url": "https://comicvine.gamespot.com/oksana-davis/4005-122333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122360/", + "id": 122360, + "name": "Skratch", + "site_detail_url": "https://comicvine.gamespot.com/skratch/4005-122360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122420/", + "id": 122420, + "name": "Magal", + "site_detail_url": "https://comicvine.gamespot.com/magal/4005-122420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122455/", + "id": 122455, + "name": "Dreamcatcher", + "site_detail_url": "https://comicvine.gamespot.com/dreamcatcher/4005-122455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122456/", + "id": 122456, + "name": "Vykni", + "site_detail_url": "https://comicvine.gamespot.com/vykni/4005-122456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122457/", + "id": 122457, + "name": "Magnificent Brute", + "site_detail_url": "https://comicvine.gamespot.com/magnificent-brute/4005-122457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122458/", + "id": 122458, + "name": "Grail Fountain", + "site_detail_url": "https://comicvine.gamespot.com/grail-fountain/4005-122458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122459/", + "id": 122459, + "name": "Threshold", + "site_detail_url": "https://comicvine.gamespot.com/threshold/4005-122459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122707/", + "id": 122707, + "name": "Leslie Evans", + "site_detail_url": "https://comicvine.gamespot.com/leslie-evans/4005-122707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122724/", + "id": 122724, + "name": "Guillotine", + "site_detail_url": "https://comicvine.gamespot.com/guillotine/4005-122724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-122959/", + "id": 122959, + "name": "Salaan", + "site_detail_url": "https://comicvine.gamespot.com/salaan/4005-122959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123014/", + "id": 123014, + "name": "Cadet Vang", + "site_detail_url": "https://comicvine.gamespot.com/cadet-vang/4005-123014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123015/", + "id": 123015, + "name": "Cadet Avery", + "site_detail_url": "https://comicvine.gamespot.com/cadet-avery/4005-123015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123016/", + "id": 123016, + "name": "Cadet Randall", + "site_detail_url": "https://comicvine.gamespot.com/cadet-randall/4005-123016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123017/", + "id": 123017, + "name": "Cadet Ibarra", + "site_detail_url": "https://comicvine.gamespot.com/cadet-ibarra/4005-123017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123018/", + "id": 123018, + "name": "T-Rider Rex", + "site_detail_url": "https://comicvine.gamespot.com/t-rider-rex/4005-123018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123019/", + "id": 123019, + "name": "Denise Keaton", + "site_detail_url": "https://comicvine.gamespot.com/denise-keaton/4005-123019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123020/", + "id": 123020, + "name": "Arthur Keaton", + "site_detail_url": "https://comicvine.gamespot.com/arthur-keaton/4005-123020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123021/", + "id": 123021, + "name": "Ellie Rogers", + "site_detail_url": "https://comicvine.gamespot.com/ellie-rogers/4005-123021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123126/", + "id": 123126, + "name": "Jake Miller", + "site_detail_url": "https://comicvine.gamespot.com/jake-miller/4005-123126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123248/", + "id": 123248, + "name": "Korin Pers", + "site_detail_url": "https://comicvine.gamespot.com/korin-pers/4005-123248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123249/", + "id": 123249, + "name": "Chanath Cha", + "site_detail_url": "https://comicvine.gamespot.com/chanath-cha/4005-123249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123267/", + "id": 123267, + "name": "Shannon Stillwell", + "site_detail_url": "https://comicvine.gamespot.com/shannon-stillwell/4005-123267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123345/", + "id": 123345, + "name": "L.L. Burbank", + "site_detail_url": "https://comicvine.gamespot.com/ll-burbank/4005-123345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123385/", + "id": 123385, + "name": "Mekkog", + "site_detail_url": "https://comicvine.gamespot.com/mekkog/4005-123385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123386/", + "id": 123386, + "name": "Tigrid the Tamer", + "site_detail_url": "https://comicvine.gamespot.com/tigrid-the-tamer/4005-123386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123387/", + "id": 123387, + "name": "Saturnalia", + "site_detail_url": "https://comicvine.gamespot.com/saturnalia/4005-123387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123428/", + "id": 123428, + "name": "Jean Desmarais", + "site_detail_url": "https://comicvine.gamespot.com/jean-desmarais/4005-123428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123429/", + "id": 123429, + "name": "Franchot Desmarais", + "site_detail_url": "https://comicvine.gamespot.com/franchot-desmarais/4005-123429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123430/", + "id": 123430, + "name": "Audre Desmarais", + "site_detail_url": "https://comicvine.gamespot.com/audre-desmarais/4005-123430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123431/", + "id": 123431, + "name": "Yves Desmarais", + "site_detail_url": "https://comicvine.gamespot.com/yves-desmarais/4005-123431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123432/", + "id": 123432, + "name": "Odette Sauvage", + "site_detail_url": "https://comicvine.gamespot.com/odette-sauvage/4005-123432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123433/", + "id": 123433, + "name": "Alexis Sauvage", + "site_detail_url": "https://comicvine.gamespot.com/alexis-sauvage/4005-123433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123468/", + "id": 123468, + "name": "Szandor Zoso", + "site_detail_url": "https://comicvine.gamespot.com/szandor-zoso/4005-123468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123469/", + "id": 123469, + "name": "Zelma Stanton", + "site_detail_url": "https://comicvine.gamespot.com/zelma-stanton/4005-123469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123470/", + "id": 123470, + "name": "Spurrgog", + "site_detail_url": "https://comicvine.gamespot.com/spurrgog/4005-123470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123528/", + "id": 123528, + "name": "T'Kan", + "site_detail_url": "https://comicvine.gamespot.com/tkan/4005-123528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123529/", + "id": 123529, + "name": "N'Iix", + "site_detail_url": "https://comicvine.gamespot.com/niix/4005-123529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123530/", + "id": 123530, + "name": "Teela", + "site_detail_url": "https://comicvine.gamespot.com/teela/4005-123530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123531/", + "id": 123531, + "name": "N'Dega", + "site_detail_url": "https://comicvine.gamespot.com/ndega/4005-123531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123647/", + "id": 123647, + "name": "Shara Bey", + "site_detail_url": "https://comicvine.gamespot.com/shara-bey/4005-123647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123649/", + "id": 123649, + "name": "Falco Sang", + "site_detail_url": "https://comicvine.gamespot.com/falco-sang/4005-123649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123665/", + "id": 123665, + "name": "Martin Reyna", + "site_detail_url": "https://comicvine.gamespot.com/martin-reyna/4005-123665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123700/", + "id": 123700, + "name": "Zakar", + "site_detail_url": "https://comicvine.gamespot.com/zakar/4005-123700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123701/", + "id": 123701, + "name": "N'Tomo", + "site_detail_url": "https://comicvine.gamespot.com/ntomo/4005-123701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123702/", + "id": 123702, + "name": "M'Yar", + "site_detail_url": "https://comicvine.gamespot.com/myar/4005-123702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123703/", + "id": 123703, + "name": "M'Toka", + "site_detail_url": "https://comicvine.gamespot.com/mtoka/4005-123703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123704/", + "id": 123704, + "name": "Flea", + "site_detail_url": "https://comicvine.gamespot.com/flea/4005-123704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123711/", + "id": 123711, + "name": "Carl Weathers", + "site_detail_url": "https://comicvine.gamespot.com/carl-weathers/4005-123711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123722/", + "id": 123722, + "name": "Pythagoras Dupree", + "site_detail_url": "https://comicvine.gamespot.com/pythagoras-dupree/4005-123722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123772/", + "id": 123772, + "name": "Vasily Karpov", + "site_detail_url": "https://comicvine.gamespot.com/vasily-karpov/4005-123772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123856/", + "id": 123856, + "name": "Kelemer", + "site_detail_url": "https://comicvine.gamespot.com/kelemer/4005-123856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123857/", + "id": 123857, + "name": "Jaum", + "site_detail_url": "https://comicvine.gamespot.com/jaum/4005-123857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123858/", + "id": 123858, + "name": "Zarro", + "site_detail_url": "https://comicvine.gamespot.com/zarro/4005-123858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123859/", + "id": 123859, + "name": "Dek", + "site_detail_url": "https://comicvine.gamespot.com/dek/4005-123859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123860/", + "id": 123860, + "name": "Tai Uzuma", + "site_detail_url": "https://comicvine.gamespot.com/tai-uzuma/4005-123860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123861/", + "id": 123861, + "name": "Sammo Quid", + "site_detail_url": "https://comicvine.gamespot.com/sammo-quid/4005-123861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123862/", + "id": 123862, + "name": "Cecelia Monroe", + "site_detail_url": "https://comicvine.gamespot.com/cecelia-monroe/4005-123862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123884/", + "id": 123884, + "name": "Paul Kraye", + "site_detail_url": "https://comicvine.gamespot.com/paul-kraye/4005-123884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123888/", + "id": 123888, + "name": "Doctor Cronos", + "site_detail_url": "https://comicvine.gamespot.com/doctor-cronos/4005-123888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123902/", + "id": 123902, + "name": "Maureen Green", + "site_detail_url": "https://comicvine.gamespot.com/maureen-green/4005-123902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123930/", + "id": 123930, + "name": "Mandy O'Connor", + "site_detail_url": "https://comicvine.gamespot.com/mandy-oconnor/4005-123930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123931/", + "id": 123931, + "name": "Toni Ho", + "site_detail_url": "https://comicvine.gamespot.com/toni-ho/4005-123931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123932/", + "id": 123932, + "name": "Neohedron", + "site_detail_url": "https://comicvine.gamespot.com/neohedron/4005-123932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123997/", + "id": 123997, + "name": "Crosshairs", + "site_detail_url": "https://comicvine.gamespot.com/crosshairs/4005-123997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123998/", + "id": 123998, + "name": "Doc", + "site_detail_url": "https://comicvine.gamespot.com/doc/4005-123998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-123999/", + "id": 123999, + "name": "Sonic Storm", + "site_detail_url": "https://comicvine.gamespot.com/sonic-storm/4005-123999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124000/", + "id": 124000, + "name": "Agent 1", + "site_detail_url": "https://comicvine.gamespot.com/agent-1/4005-124000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124001/", + "id": 124001, + "name": "Napalm", + "site_detail_url": "https://comicvine.gamespot.com/napalm/4005-124001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124053/", + "id": 124053, + "name": "Vin", + "site_detail_url": "https://comicvine.gamespot.com/vin/4005-124053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124054/", + "id": 124054, + "name": "Viv", + "site_detail_url": "https://comicvine.gamespot.com/viv/4005-124054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124055/", + "id": 124055, + "name": "Virginia", + "site_detail_url": "https://comicvine.gamespot.com/virginia/4005-124055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124060/", + "id": 124060, + "name": "Dr. Amara Perera", + "site_detail_url": "https://comicvine.gamespot.com/dr-amara-perera/4005-124060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124069/", + "id": 124069, + "name": "David Kessler", + "site_detail_url": "https://comicvine.gamespot.com/david-kessler/4005-124069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124079/", + "id": 124079, + "name": "Bougred Suntas", + "site_detail_url": "https://comicvine.gamespot.com/bougred-suntas/4005-124079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124080/", + "id": 124080, + "name": "Dr. Crispin", + "site_detail_url": "https://comicvine.gamespot.com/dr-crispin/4005-124080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124081/", + "id": 124081, + "name": "Split Second", + "site_detail_url": "https://comicvine.gamespot.com/split-second/4005-124081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124096/", + "id": 124096, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/longshot/4005-124096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124097/", + "id": 124097, + "name": "Dazzler (Schau)", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-schau/4005-124097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124176/", + "id": 124176, + "name": "Capri", + "site_detail_url": "https://comicvine.gamespot.com/capri/4005-124176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124221/", + "id": 124221, + "name": "Albert Poole", + "site_detail_url": "https://comicvine.gamespot.com/albert-poole/4005-124221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124222/", + "id": 124222, + "name": "Grutan", + "site_detail_url": "https://comicvine.gamespot.com/grutan/4005-124222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124308/", + "id": 124308, + "name": "Jack Mort", + "site_detail_url": "https://comicvine.gamespot.com/jack-mort/4005-124308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124310/", + "id": 124310, + "name": "Emerald Warlock", + "site_detail_url": "https://comicvine.gamespot.com/emerald-warlock/4005-124310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124327/", + "id": 124327, + "name": "Moridun", + "site_detail_url": "https://comicvine.gamespot.com/moridun/4005-124327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124328/", + "id": 124328, + "name": "Hilda von Hate", + "site_detail_url": "https://comicvine.gamespot.com/hilda-von-hate/4005-124328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124329/", + "id": 124329, + "name": "Falcon (Torres)", + "site_detail_url": "https://comicvine.gamespot.com/falcon-torres/4005-124329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124345/", + "id": 124345, + "name": "Ghost Dancer", + "site_detail_url": "https://comicvine.gamespot.com/ghost-dancer/4005-124345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124346/", + "id": 124346, + "name": "Aries", + "site_detail_url": "https://comicvine.gamespot.com/aries/4005-124346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124347/", + "id": 124347, + "name": "Azimuth", + "site_detail_url": "https://comicvine.gamespot.com/azimuth/4005-124347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124348/", + "id": 124348, + "name": "Coda", + "site_detail_url": "https://comicvine.gamespot.com/coda/4005-124348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124349/", + "id": 124349, + "name": "Sapna", + "site_detail_url": "https://comicvine.gamespot.com/sapna/4005-124349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124350/", + "id": 124350, + "name": "Cerebra", + "site_detail_url": "https://comicvine.gamespot.com/cerebra/4005-124350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124351/", + "id": 124351, + "name": "M'ryn the Magus", + "site_detail_url": "https://comicvine.gamespot.com/mryn-the-magus/4005-124351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124352/", + "id": 124352, + "name": "K'kyy", + "site_detail_url": "https://comicvine.gamespot.com/kkyy/4005-124352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124353/", + "id": 124353, + "name": "Lan-Zarr", + "site_detail_url": "https://comicvine.gamespot.com/lan-zarr/4005-124353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124354/", + "id": 124354, + "name": "Mur-G'nn", + "site_detail_url": "https://comicvine.gamespot.com/mur-gnn/4005-124354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124355/", + "id": 124355, + "name": "Magician", + "site_detail_url": "https://comicvine.gamespot.com/magician/4005-124355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124359/", + "id": 124359, + "name": "Zaltin Tar", + "site_detail_url": "https://comicvine.gamespot.com/zaltin-tar/4005-124359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124360/", + "id": 124360, + "name": "Caden Tar", + "site_detail_url": "https://comicvine.gamespot.com/caden-tar/4005-124360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124361/", + "id": 124361, + "name": "Bolten Dinn", + "site_detail_url": "https://comicvine.gamespot.com/bolten-dinn/4005-124361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124362/", + "id": 124362, + "name": "Alkyra Thash", + "site_detail_url": "https://comicvine.gamespot.com/alkyra-thash/4005-124362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124404/", + "id": 124404, + "name": "Dr. Hawkins-Mailer", + "site_detail_url": "https://comicvine.gamespot.com/dr-hawkins-mailer/4005-124404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124408/", + "id": 124408, + "name": "The Clam", + "site_detail_url": "https://comicvine.gamespot.com/the-clam/4005-124408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124409/", + "id": 124409, + "name": "Moon Girl", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl/4005-124409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124418/", + "id": 124418, + "name": "Glyph", + "site_detail_url": "https://comicvine.gamespot.com/glyph/4005-124418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124431/", + "id": 124431, + "name": "Shredded Man", + "site_detail_url": "https://comicvine.gamespot.com/shredded-man/4005-124431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124494/", + "id": 124494, + "name": "Dr. Wilker", + "site_detail_url": "https://comicvine.gamespot.com/dr-wilker/4005-124494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124495/", + "id": 124495, + "name": "Jerry Fortunov", + "site_detail_url": "https://comicvine.gamespot.com/jerry-fortunov/4005-124495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124508/", + "id": 124508, + "name": "Blindspot", + "site_detail_url": "https://comicvine.gamespot.com/blindspot/4005-124508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124509/", + "id": 124509, + "name": "Hannah Chung", + "site_detail_url": "https://comicvine.gamespot.com/hannah-chung/4005-124509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124523/", + "id": 124523, + "name": "Robert Chandler", + "site_detail_url": "https://comicvine.gamespot.com/robert-chandler/4005-124523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124524/", + "id": 124524, + "name": "Bellona", + "site_detail_url": "https://comicvine.gamespot.com/bellona/4005-124524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124525/", + "id": 124525, + "name": "Scout", + "site_detail_url": "https://comicvine.gamespot.com/scout/4005-124525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124526/", + "id": 124526, + "name": "Zelda", + "site_detail_url": "https://comicvine.gamespot.com/zelda/4005-124526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124543/", + "id": 124543, + "name": "Draugr", + "site_detail_url": "https://comicvine.gamespot.com/draugr/4005-124543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124552/", + "id": 124552, + "name": "Petra Parker", + "site_detail_url": "https://comicvine.gamespot.com/petra-parker/4005-124552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124553/", + "id": 124553, + "name": "Norma Osborn", + "site_detail_url": "https://comicvine.gamespot.com/norma-osborn/4005-124553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124556/", + "id": 124556, + "name": "Swain", + "site_detail_url": "https://comicvine.gamespot.com/swain/4005-124556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124557/", + "id": 124557, + "name": "Lady Hellbender", + "site_detail_url": "https://comicvine.gamespot.com/lady-hellbender/4005-124557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124585/", + "id": 124585, + "name": "Tenfingers", + "site_detail_url": "https://comicvine.gamespot.com/tenfingers/4005-124585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124586/", + "id": 124586, + "name": "Billy Li", + "site_detail_url": "https://comicvine.gamespot.com/billy-li/4005-124586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124587/", + "id": 124587, + "name": "Ellen King", + "site_detail_url": "https://comicvine.gamespot.com/ellen-king/4005-124587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124588/", + "id": 124588, + "name": "Shocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/shocket-raccoon/4005-124588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124589/", + "id": 124589, + "name": "Linda the Duck", + "site_detail_url": "https://comicvine.gamespot.com/linda-the-duck/4005-124589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124590/", + "id": 124590, + "name": "D-3X", + "site_detail_url": "https://comicvine.gamespot.com/d-3-x/4005-124590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124593/", + "id": 124593, + "name": "Jack O'Lantern", + "site_detail_url": "https://comicvine.gamespot.com/jack-olantern/4005-124593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124598/", + "id": 124598, + "name": "Kegger", + "site_detail_url": "https://comicvine.gamespot.com/kegger/4005-124598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124599/", + "id": 124599, + "name": "Thirst", + "site_detail_url": "https://comicvine.gamespot.com/thirst/4005-124599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124601/", + "id": 124601, + "name": "Pickles", + "site_detail_url": "https://comicvine.gamespot.com/pickles/4005-124601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124617/", + "id": 124617, + "name": "Oracle of Omega", + "site_detail_url": "https://comicvine.gamespot.com/oracle-of-omega/4005-124617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124700/", + "id": 124700, + "name": "Lisa Chang", + "site_detail_url": "https://comicvine.gamespot.com/lisa-chang/4005-124700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124737/", + "id": 124737, + "name": "Sophia Gagliardi", + "site_detail_url": "https://comicvine.gamespot.com/sophia-gagliardi/4005-124737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124739/", + "id": 124739, + "name": "Tharius Demo", + "site_detail_url": "https://comicvine.gamespot.com/tharius-demo/4005-124739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124740/", + "id": 124740, + "name": "Ayo", + "site_detail_url": "https://comicvine.gamespot.com/ayo/4005-124740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124791/", + "id": 124791, + "name": "Patsy Dragonsworth", + "site_detail_url": "https://comicvine.gamespot.com/patsy-dragonsworth/4005-124791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124847/", + "id": 124847, + "name": "Babe", + "site_detail_url": "https://comicvine.gamespot.com/babe/4005-124847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124890/", + "id": 124890, + "name": "Hala", + "site_detail_url": "https://comicvine.gamespot.com/hala/4005-124890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124905/", + "id": 124905, + "name": "Becca Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/becca-rodriguez/4005-124905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124906/", + "id": 124906, + "name": "Goleta", + "site_detail_url": "https://comicvine.gamespot.com/goleta/4005-124906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124913/", + "id": 124913, + "name": "Trios", + "site_detail_url": "https://comicvine.gamespot.com/trios/4005-124913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124914/", + "id": 124914, + "name": "Hollian", + "site_detail_url": "https://comicvine.gamespot.com/hollian/4005-124914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124915/", + "id": 124915, + "name": "Monthan", + "site_detail_url": "https://comicvine.gamespot.com/monthan/4005-124915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124916/", + "id": 124916, + "name": "Masacre", + "site_detail_url": "https://comicvine.gamespot.com/masacre/4005-124916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124918/", + "id": 124918, + "name": "Julio Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/julio-rodriguez/4005-124918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124919/", + "id": 124919, + "name": "Kevin Templeton", + "site_detail_url": "https://comicvine.gamespot.com/kevin-templeton/4005-124919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124922/", + "id": 124922, + "name": "Panacea", + "site_detail_url": "https://comicvine.gamespot.com/panacea/4005-124922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124925/", + "id": 124925, + "name": "Warg", + "site_detail_url": "https://comicvine.gamespot.com/warg/4005-124925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124947/", + "id": 124947, + "name": "Poe Dameron", + "site_detail_url": "https://comicvine.gamespot.com/poe-dameron/4005-124947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-124958/", + "id": 124958, + "name": "Imani Greene", + "site_detail_url": "https://comicvine.gamespot.com/imani-greene/4005-124958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125052/", + "id": 125052, + "name": "Spark", + "site_detail_url": "https://comicvine.gamespot.com/spark/4005-125052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125053/", + "id": 125053, + "name": "Telekinian", + "site_detail_url": "https://comicvine.gamespot.com/telekinian/4005-125053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125054/", + "id": 125054, + "name": "Gwenpool", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool/4005-125054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125091/", + "id": 125091, + "name": "Dorrek Supreme", + "site_detail_url": "https://comicvine.gamespot.com/dorrek-supreme/4005-125091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125092/", + "id": 125092, + "name": "Meresyn", + "site_detail_url": "https://comicvine.gamespot.com/meresyn/4005-125092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125093/", + "id": 125093, + "name": "Ryga'a", + "site_detail_url": "https://comicvine.gamespot.com/rygaa/4005-125093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125094/", + "id": 125094, + "name": "Soh-Larr", + "site_detail_url": "https://comicvine.gamespot.com/soh-larr/4005-125094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125095/", + "id": 125095, + "name": "Varra", + "site_detail_url": "https://comicvine.gamespot.com/varra/4005-125095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125111/", + "id": 125111, + "name": "Fritz", + "site_detail_url": "https://comicvine.gamespot.com/fritz/4005-125111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125112/", + "id": 125112, + "name": "803", + "site_detail_url": "https://comicvine.gamespot.com/803/4005-125112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125160/", + "id": 125160, + "name": "Snapper", + "site_detail_url": "https://comicvine.gamespot.com/snapper/4005-125160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125169/", + "id": 125169, + "name": "Akil", + "site_detail_url": "https://comicvine.gamespot.com/akil/4005-125169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125170/", + "id": 125170, + "name": "Baste", + "site_detail_url": "https://comicvine.gamespot.com/baste/4005-125170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125171/", + "id": 125171, + "name": "Gholar", + "site_detail_url": "https://comicvine.gamespot.com/gholar/4005-125171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125172/", + "id": 125172, + "name": "Gurf", + "site_detail_url": "https://comicvine.gamespot.com/gurf/4005-125172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125173/", + "id": 125173, + "name": "Kio", + "site_detail_url": "https://comicvine.gamespot.com/kio/4005-125173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125175/", + "id": 125175, + "name": "Rachacha", + "site_detail_url": "https://comicvine.gamespot.com/rachacha/4005-125175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125249/", + "id": 125249, + "name": "Isabel St. Ives", + "site_detail_url": "https://comicvine.gamespot.com/isabel-st-ives/4005-125249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125252/", + "id": 125252, + "name": "Jane Thorne", + "site_detail_url": "https://comicvine.gamespot.com/jane-thorne/4005-125252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125273/", + "id": 125273, + "name": "Rey", + "site_detail_url": "https://comicvine.gamespot.com/rey/4005-125273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125274/", + "id": 125274, + "name": "Finn", + "site_detail_url": "https://comicvine.gamespot.com/finn/4005-125274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125275/", + "id": 125275, + "name": "Maz Kanata", + "site_detail_url": "https://comicvine.gamespot.com/maz-kanata/4005-125275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125276/", + "id": 125276, + "name": "Captain Phasma", + "site_detail_url": "https://comicvine.gamespot.com/captain-phasma/4005-125276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125277/", + "id": 125277, + "name": "General Hux", + "site_detail_url": "https://comicvine.gamespot.com/general-hux/4005-125277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125314/", + "id": 125314, + "name": "Navid Hassan", + "site_detail_url": "https://comicvine.gamespot.com/navid-hassan/4005-125314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125315/", + "id": 125315, + "name": "Tharg", + "site_detail_url": "https://comicvine.gamespot.com/tharg/4005-125315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125316/", + "id": 125316, + "name": "Thok", + "site_detail_url": "https://comicvine.gamespot.com/thok/4005-125316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125317/", + "id": 125317, + "name": "Thorn-Teeth", + "site_detail_url": "https://comicvine.gamespot.com/thorn-teeth/4005-125317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125319/", + "id": 125319, + "name": "H.U.B.E.R.T.", + "site_detail_url": "https://comicvine.gamespot.com/h-u-b-e-r-t/4005-125319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125322/", + "id": 125322, + "name": "Lien Tang", + "site_detail_url": "https://comicvine.gamespot.com/lien-tang/4005-125322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125323/", + "id": 125323, + "name": "Aisa", + "site_detail_url": "https://comicvine.gamespot.com/aisa/4005-125323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125361/", + "id": 125361, + "name": "Cortellia", + "site_detail_url": "https://comicvine.gamespot.com/cortellia/4005-125361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125417/", + "id": 125417, + "name": "Calavera de Jade", + "site_detail_url": "https://comicvine.gamespot.com/calavera-de-jade/4005-125417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125418/", + "id": 125418, + "name": "Especialista", + "site_detail_url": "https://comicvine.gamespot.com/especialista/4005-125418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125499/", + "id": 125499, + "name": "Karbin", + "site_detail_url": "https://comicvine.gamespot.com/karbin/4005-125499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125500/", + "id": 125500, + "name": "Maddy Cho", + "site_detail_url": "https://comicvine.gamespot.com/maddy-cho/4005-125500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125501/", + "id": 125501, + "name": "Darrel Campbell", + "site_detail_url": "https://comicvine.gamespot.com/darrel-campbell/4005-125501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125502/", + "id": 125502, + "name": "Christopher Taylor", + "site_detail_url": "https://comicvine.gamespot.com/christopher-taylor/4005-125502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125503/", + "id": 125503, + "name": "Bailey Hoskins", + "site_detail_url": "https://comicvine.gamespot.com/bailey-hoskins/4005-125503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125534/", + "id": 125534, + "name": "Stella Nega", + "site_detail_url": "https://comicvine.gamespot.com/stella-nega/4005-125534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125535/", + "id": 125535, + "name": "Astrolabe", + "site_detail_url": "https://comicvine.gamespot.com/astrolabe/4005-125535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125536/", + "id": 125536, + "name": "Aerolite", + "site_detail_url": "https://comicvine.gamespot.com/aerolite/4005-125536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125537/", + "id": 125537, + "name": "Tua Zon", + "site_detail_url": "https://comicvine.gamespot.com/tua-zon/4005-125537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125538/", + "id": 125538, + "name": "Skytower", + "site_detail_url": "https://comicvine.gamespot.com/skytower/4005-125538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125572/", + "id": 125572, + "name": "Count Kaoz", + "site_detail_url": "https://comicvine.gamespot.com/count-kaoz/4005-125572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125573/", + "id": 125573, + "name": "Professor Xu", + "site_detail_url": "https://comicvine.gamespot.com/professor-xu/4005-125573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125574/", + "id": 125574, + "name": "Medico Mistico", + "site_detail_url": "https://comicvine.gamespot.com/medico-mistico/4005-125574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125575/", + "id": 125575, + "name": "Mahatma Doom", + "site_detail_url": "https://comicvine.gamespot.com/mahatma-doom/4005-125575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125596/", + "id": 125596, + "name": "Marrina's Mate", + "site_detail_url": "https://comicvine.gamespot.com/marrinas-mate/4005-125596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125598/", + "id": 125598, + "name": "Quwrlln", + "site_detail_url": "https://comicvine.gamespot.com/quwrlln/4005-125598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125650/", + "id": 125650, + "name": "Lola Daniels", + "site_detail_url": "https://comicvine.gamespot.com/lola-daniels/4005-125650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125683/", + "id": 125683, + "name": "Gorilla Rider", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-rider/4005-125683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125684/", + "id": 125684, + "name": "Undead G-Man", + "site_detail_url": "https://comicvine.gamespot.com/undead-gman/4005-125684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125696/", + "id": 125696, + "name": "Zirconium", + "site_detail_url": "https://comicvine.gamespot.com/zirconium/4005-125696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125697/", + "id": 125697, + "name": "Iron", + "site_detail_url": "https://comicvine.gamespot.com/iron/4005-125697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125698/", + "id": 125698, + "name": "Hafnium", + "site_detail_url": "https://comicvine.gamespot.com/hafnium/4005-125698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125699/", + "id": 125699, + "name": "Cobalt", + "site_detail_url": "https://comicvine.gamespot.com/cobalt/4005-125699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125700/", + "id": 125700, + "name": "Barium", + "site_detail_url": "https://comicvine.gamespot.com/barium/4005-125700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125701/", + "id": 125701, + "name": "Scandium", + "site_detail_url": "https://comicvine.gamespot.com/scandium/4005-125701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125703/", + "id": 125703, + "name": "Europium", + "site_detail_url": "https://comicvine.gamespot.com/europium/4005-125703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125704/", + "id": 125704, + "name": "Cadmium", + "site_detail_url": "https://comicvine.gamespot.com/cadmium/4005-125704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125743/", + "id": 125743, + "name": "Deadpool 2099", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-2099/4005-125743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125744/", + "id": 125744, + "name": "Namorina", + "site_detail_url": "https://comicvine.gamespot.com/namorina/4005-125744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125745/", + "id": 125745, + "name": "Collapsar", + "site_detail_url": "https://comicvine.gamespot.com/collapsar/4005-125745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125746/", + "id": 125746, + "name": "Iron Mariner", + "site_detail_url": "https://comicvine.gamespot.com/iron-mariner/4005-125746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125747/", + "id": 125747, + "name": "Marvel Woman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-woman/4005-125747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125748/", + "id": 125748, + "name": "Gwenna", + "site_detail_url": "https://comicvine.gamespot.com/gwenna/4005-125748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125785/", + "id": 125785, + "name": "TC-70", + "site_detail_url": "https://comicvine.gamespot.com/t-c-70/4005-125785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125787/", + "id": 125787, + "name": "Carl Josten", + "site_detail_url": "https://comicvine.gamespot.com/carl-josten/4005-125787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125789/", + "id": 125789, + "name": "Howard Saint", + "site_detail_url": "https://comicvine.gamespot.com/howard-saint/4005-125789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125792/", + "id": 125792, + "name": "Mario Castiglione", + "site_detail_url": "https://comicvine.gamespot.com/mario-castiglione/4005-125792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125793/", + "id": 125793, + "name": "Louisa Castiglione", + "site_detail_url": "https://comicvine.gamespot.com/louisa-castiglione/4005-125793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125848/", + "id": 125848, + "name": "Samuel-034", + "site_detail_url": "https://comicvine.gamespot.com/samuel-034/4005-125848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125944/", + "id": 125944, + "name": "Lu Wei", + "site_detail_url": "https://comicvine.gamespot.com/lu-wei/4005-125944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125945/", + "id": 125945, + "name": "Pik Rollo", + "site_detail_url": "https://comicvine.gamespot.com/pik-rollo/4005-125945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125946/", + "id": 125946, + "name": "General Sear", + "site_detail_url": "https://comicvine.gamespot.com/general-sear/4005-125946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125947/", + "id": 125947, + "name": "Darrlo", + "site_detail_url": "https://comicvine.gamespot.com/darrlo/4005-125947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125955/", + "id": 125955, + "name": "Bert", + "site_detail_url": "https://comicvine.gamespot.com/bert/4005-125955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125956/", + "id": 125956, + "name": "Steve", + "site_detail_url": "https://comicvine.gamespot.com/steve/4005-125956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-125976/", + "id": 125976, + "name": "Almadovar", + "site_detail_url": "https://comicvine.gamespot.com/almadovar/4005-125976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126028/", + "id": 126028, + "name": "Yologarch", + "site_detail_url": "https://comicvine.gamespot.com/yologarch/4005-126028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126117/", + "id": 126117, + "name": "Antimatter", + "site_detail_url": "https://comicvine.gamespot.com/antimatter/4005-126117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126118/", + "id": 126118, + "name": "Shen Quinghao", + "site_detail_url": "https://comicvine.gamespot.com/shen-quinghao/4005-126118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126119/", + "id": 126119, + "name": "Scout", + "site_detail_url": "https://comicvine.gamespot.com/scout/4005-126119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126120/", + "id": 126120, + "name": "Mister Wiebe", + "site_detail_url": "https://comicvine.gamespot.com/mister-wiebe/4005-126120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126121/", + "id": 126121, + "name": "Kolara", + "site_detail_url": "https://comicvine.gamespot.com/kolara/4005-126121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126122/", + "id": 126122, + "name": "Mother Pran", + "site_detail_url": "https://comicvine.gamespot.com/mother-pran/4005-126122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126132/", + "id": 126132, + "name": "Mr. Zodiac", + "site_detail_url": "https://comicvine.gamespot.com/mr-zodiac/4005-126132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126150/", + "id": 126150, + "name": "Chronosauraus Rex", + "site_detail_url": "https://comicvine.gamespot.com/chronosauraus-rex/4005-126150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126161/", + "id": 126161, + "name": "Frankenstein's Monster (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/frankensteins-monster-clone/4005-126161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126163/", + "id": 126163, + "name": "Zombie (John Doe)", + "site_detail_url": "https://comicvine.gamespot.com/zombie-john-doe/4005-126163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126258/", + "id": 126258, + "name": "Black Patch", + "site_detail_url": "https://comicvine.gamespot.com/black-patch/4005-126258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126260/", + "id": 126260, + "name": "Tyesha Hillman", + "site_detail_url": "https://comicvine.gamespot.com/tyesha-hillman/4005-126260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126261/", + "id": 126261, + "name": "Sheriff Daniela Ortiz", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-daniela-ortiz/4005-126261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126262/", + "id": 126262, + "name": "Spectro", + "site_detail_url": "https://comicvine.gamespot.com/spectro/4005-126262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126268/", + "id": 126268, + "name": "Grand Mechanic", + "site_detail_url": "https://comicvine.gamespot.com/grand-mechanic/4005-126268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126269/", + "id": 126269, + "name": "Eta", + "site_detail_url": "https://comicvine.gamespot.com/eta/4005-126269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126272/", + "id": 126272, + "name": "Jasmine", + "site_detail_url": "https://comicvine.gamespot.com/jasmine/4005-126272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126273/", + "id": 126273, + "name": "Rhonda Fleming", + "site_detail_url": "https://comicvine.gamespot.com/rhonda-fleming/4005-126273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126288/", + "id": 126288, + "name": "Juice", + "site_detail_url": "https://comicvine.gamespot.com/juice/4005-126288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126289/", + "id": 126289, + "name": "Pillar", + "site_detail_url": "https://comicvine.gamespot.com/pillar/4005-126289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126290/", + "id": 126290, + "name": "Uppercut", + "site_detail_url": "https://comicvine.gamespot.com/uppercut/4005-126290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126291/", + "id": 126291, + "name": "Tarpit", + "site_detail_url": "https://comicvine.gamespot.com/tarpit/4005-126291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126292/", + "id": 126292, + "name": "Sebastian", + "site_detail_url": "https://comicvine.gamespot.com/sebastian/4005-126292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126295/", + "id": 126295, + "name": "Hub", + "site_detail_url": "https://comicvine.gamespot.com/hub/4005-126295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126305/", + "id": 126305, + "name": "Typhoon", + "site_detail_url": "https://comicvine.gamespot.com/typhoon/4005-126305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126328/", + "id": 126328, + "name": "Alexander Locke", + "site_detail_url": "https://comicvine.gamespot.com/alexander-locke/4005-126328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126408/", + "id": 126408, + "name": "Candace Brashear", + "site_detail_url": "https://comicvine.gamespot.com/candace-brashear/4005-126408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126410/", + "id": 126410, + "name": "Mar-Sohn", + "site_detail_url": "https://comicvine.gamespot.com/mar-sohn/4005-126410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126416/", + "id": 126416, + "name": "Mahia", + "site_detail_url": "https://comicvine.gamespot.com/mahia/4005-126416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126417/", + "id": 126417, + "name": "J'K", + "site_detail_url": "https://comicvine.gamespot.com/j-k/4005-126417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126419/", + "id": 126419, + "name": "Punch", + "site_detail_url": "https://comicvine.gamespot.com/punch/4005-126419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126420/", + "id": 126420, + "name": "Earo", + "site_detail_url": "https://comicvine.gamespot.com/earo/4005-126420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126421/", + "id": 126421, + "name": "Dirk", + "site_detail_url": "https://comicvine.gamespot.com/dirk/4005-126421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126422/", + "id": 126422, + "name": "Treste", + "site_detail_url": "https://comicvine.gamespot.com/treste/4005-126422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126423/", + "id": 126423, + "name": "Flagman", + "site_detail_url": "https://comicvine.gamespot.com/flagman/4005-126423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126469/", + "id": 126469, + "name": "Aelsa", + "site_detail_url": "https://comicvine.gamespot.com/aelsa/4005-126469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126470/", + "id": 126470, + "name": "Manuela Calderon", + "site_detail_url": "https://comicvine.gamespot.com/manuela-calderon/4005-126470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126472/", + "id": 126472, + "name": "Boogers", + "site_detail_url": "https://comicvine.gamespot.com/boogers/4005-126472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126473/", + "id": 126473, + "name": "Joras-Kyl", + "site_detail_url": "https://comicvine.gamespot.com/joras-kyl/4005-126473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126474/", + "id": 126474, + "name": "Explosion", + "site_detail_url": "https://comicvine.gamespot.com/explosion/4005-126474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126475/", + "id": 126475, + "name": "Gravitation", + "site_detail_url": "https://comicvine.gamespot.com/gravitation/4005-126475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126476/", + "id": 126476, + "name": "Kevin Brashear", + "site_detail_url": "https://comicvine.gamespot.com/kevin-brashear/4005-126476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126554/", + "id": 126554, + "name": "Mr. Ravina", + "site_detail_url": "https://comicvine.gamespot.com/mr-ravina/4005-126554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126555/", + "id": 126555, + "name": "Federigo Ravina", + "site_detail_url": "https://comicvine.gamespot.com/federigo-ravina/4005-126555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126616/", + "id": 126616, + "name": "Drassus", + "site_detail_url": "https://comicvine.gamespot.com/drassus/4005-126616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126617/", + "id": 126617, + "name": "Ire", + "site_detail_url": "https://comicvine.gamespot.com/ire/4005-126617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126618/", + "id": 126618, + "name": "Cryptomnesia", + "site_detail_url": "https://comicvine.gamespot.com/cryptomnesia/4005-126618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126619/", + "id": 126619, + "name": "Catastrophobia", + "site_detail_url": "https://comicvine.gamespot.com/catastrophobia/4005-126619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126620/", + "id": 126620, + "name": "Horrorscope", + "site_detail_url": "https://comicvine.gamespot.com/horrorscope/4005-126620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126622/", + "id": 126622, + "name": "Living Dream", + "site_detail_url": "https://comicvine.gamespot.com/living-dream/4005-126622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126633/", + "id": 126633, + "name": "Gustav von Kampen", + "site_detail_url": "https://comicvine.gamespot.com/gustav-von-kampen/4005-126633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126634/", + "id": 126634, + "name": "Sandy Bidwell", + "site_detail_url": "https://comicvine.gamespot.com/sandy-bidwell/4005-126634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126635/", + "id": 126635, + "name": "Daniel Kurtz", + "site_detail_url": "https://comicvine.gamespot.com/daniel-kurtz/4005-126635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126636/", + "id": 126636, + "name": "Professor Snirk", + "site_detail_url": "https://comicvine.gamespot.com/professor-snirk/4005-126636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126637/", + "id": 126637, + "name": "General Masterson", + "site_detail_url": "https://comicvine.gamespot.com/general-masterson/4005-126637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126644/", + "id": 126644, + "name": "Cristos Malachi", + "site_detail_url": "https://comicvine.gamespot.com/cristos-malachi/4005-126644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126645/", + "id": 126645, + "name": "Otto", + "site_detail_url": "https://comicvine.gamespot.com/otto/4005-126645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126646/", + "id": 126646, + "name": "Fi", + "site_detail_url": "https://comicvine.gamespot.com/fi/4005-126646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126647/", + "id": 126647, + "name": "The Hypst'r", + "site_detail_url": "https://comicvine.gamespot.com/the-hypstr/4005-126647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126648/", + "id": 126648, + "name": "Boilermaker", + "site_detail_url": "https://comicvine.gamespot.com/boilermaker/4005-126648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126649/", + "id": 126649, + "name": "Paintball", + "site_detail_url": "https://comicvine.gamespot.com/paintball/4005-126649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126650/", + "id": 126650, + "name": "Psi", + "site_detail_url": "https://comicvine.gamespot.com/psi/4005-126650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126651/", + "id": 126651, + "name": "Mints", + "site_detail_url": "https://comicvine.gamespot.com/mints/4005-126651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126652/", + "id": 126652, + "name": "Rotatory", + "site_detail_url": "https://comicvine.gamespot.com/rotatory/4005-126652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126656/", + "id": 126656, + "name": "Ellen Anders", + "site_detail_url": "https://comicvine.gamespot.com/ellen-anders/4005-126656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126706/", + "id": 126706, + "name": "Larin", + "site_detail_url": "https://comicvine.gamespot.com/larin/4005-126706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126707/", + "id": 126707, + "name": "Torvalt", + "site_detail_url": "https://comicvine.gamespot.com/torvalt/4005-126707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126760/", + "id": 126760, + "name": "J. Jonah Jackal", + "site_detail_url": "https://comicvine.gamespot.com/j-jonah-jackal/4005-126760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126770/", + "id": 126770, + "name": "Tempest Bell", + "site_detail_url": "https://comicvine.gamespot.com/tempest-bell/4005-126770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126771/", + "id": 126771, + "name": "Hermetikus", + "site_detail_url": "https://comicvine.gamespot.com/hermetikus/4005-126771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126821/", + "id": 126821, + "name": "Bodega Bandit", + "site_detail_url": "https://comicvine.gamespot.com/bodega-bandit/4005-126821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126824/", + "id": 126824, + "name": "Kobik", + "site_detail_url": "https://comicvine.gamespot.com/kobik/4005-126824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126828/", + "id": 126828, + "name": "Claire Dixon", + "site_detail_url": "https://comicvine.gamespot.com/claire-dixon/4005-126828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126890/", + "id": 126890, + "name": "General Locklin", + "site_detail_url": "https://comicvine.gamespot.com/general-locklin/4005-126890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126891/", + "id": 126891, + "name": "Kenjiro Fujikawa", + "site_detail_url": "https://comicvine.gamespot.com/kenjiro-fujikawa/4005-126891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126925/", + "id": 126925, + "name": "Satan Claw", + "site_detail_url": "https://comicvine.gamespot.com/satan-claw/4005-126925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126943/", + "id": 126943, + "name": "Matthew Lin", + "site_detail_url": "https://comicvine.gamespot.com/matthew-lin/4005-126943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-126996/", + "id": 126996, + "name": "Mole Monster", + "site_detail_url": "https://comicvine.gamespot.com/mole-monster/4005-126996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127002/", + "id": 127002, + "name": "Doctor Spectrum (Nenet)", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum-nenet/4005-127002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127015/", + "id": 127015, + "name": "Blake", + "site_detail_url": "https://comicvine.gamespot.com/blake/4005-127015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127044/", + "id": 127044, + "name": "Grim", + "site_detail_url": "https://comicvine.gamespot.com/grim/4005-127044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127045/", + "id": 127045, + "name": "Reaper", + "site_detail_url": "https://comicvine.gamespot.com/reaper/4005-127045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127059/", + "id": 127059, + "name": "Cassandra Gillespie", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-gillespie/4005-127059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127093/", + "id": 127093, + "name": "Irelle", + "site_detail_url": "https://comicvine.gamespot.com/irelle/4005-127093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127094/", + "id": 127094, + "name": "Capo", + "site_detail_url": "https://comicvine.gamespot.com/capo/4005-127094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127099/", + "id": 127099, + "name": "Corhanis", + "site_detail_url": "https://comicvine.gamespot.com/corhanis/4005-127099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127180/", + "id": 127180, + "name": "Willie", + "site_detail_url": "https://comicvine.gamespot.com/willie/4005-127180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127181/", + "id": 127181, + "name": "Skitz", + "site_detail_url": "https://comicvine.gamespot.com/skitz/4005-127181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127182/", + "id": 127182, + "name": "Stringfellow", + "site_detail_url": "https://comicvine.gamespot.com/stringfellow/4005-127182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127226/", + "id": 127226, + "name": "Jinny", + "site_detail_url": "https://comicvine.gamespot.com/jinny/4005-127226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127233/", + "id": 127233, + "name": "Grey", + "site_detail_url": "https://comicvine.gamespot.com/grey/4005-127233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127237/", + "id": 127237, + "name": "Styles", + "site_detail_url": "https://comicvine.gamespot.com/styles/4005-127237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127238/", + "id": 127238, + "name": "Janus Kasmir", + "site_detail_url": "https://comicvine.gamespot.com/janus-kasmir/4005-127238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127241/", + "id": 127241, + "name": "Big-Mouth", + "site_detail_url": "https://comicvine.gamespot.com/big-mouth/4005-127241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127244/", + "id": 127244, + "name": "Rackham Sear", + "site_detail_url": "https://comicvine.gamespot.com/rackham-sear/4005-127244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127297/", + "id": 127297, + "name": "Ray Schoonover", + "site_detail_url": "https://comicvine.gamespot.com/ray-schoonover/4005-127297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127340/", + "id": 127340, + "name": "Jubulile van Scotter", + "site_detail_url": "https://comicvine.gamespot.com/jubulile-van-scotter/4005-127340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127341/", + "id": 127341, + "name": "Prism", + "site_detail_url": "https://comicvine.gamespot.com/prism/4005-127341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127342/", + "id": 127342, + "name": "Doll", + "site_detail_url": "https://comicvine.gamespot.com/doll/4005-127342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127343/", + "id": 127343, + "name": "Dr. Chris Quinn", + "site_detail_url": "https://comicvine.gamespot.com/dr-chris-quinn/4005-127343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127367/", + "id": 127367, + "name": "Mako", + "site_detail_url": "https://comicvine.gamespot.com/mako/4005-127367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127368/", + "id": 127368, + "name": "Bailey", + "site_detail_url": "https://comicvine.gamespot.com/bailey/4005-127368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127397/", + "id": 127397, + "name": "Flashgun Casey", + "site_detail_url": "https://comicvine.gamespot.com/flashgun-casey/4005-127397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127412/", + "id": 127412, + "name": "Diana", + "site_detail_url": "https://comicvine.gamespot.com/diana/4005-127412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127434/", + "id": 127434, + "name": "Strongman", + "site_detail_url": "https://comicvine.gamespot.com/strongman/4005-127434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127435/", + "id": 127435, + "name": "Poxy the Clown", + "site_detail_url": "https://comicvine.gamespot.com/poxy-the-clown/4005-127435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127436/", + "id": 127436, + "name": "Big Bally", + "site_detail_url": "https://comicvine.gamespot.com/big-bally/4005-127436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127437/", + "id": 127437, + "name": "Connie the Contortionist", + "site_detail_url": "https://comicvine.gamespot.com/connie-the-contortionist/4005-127437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127438/", + "id": 127438, + "name": "Bennie", + "site_detail_url": "https://comicvine.gamespot.com/bennie/4005-127438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127439/", + "id": 127439, + "name": "Trrunk", + "site_detail_url": "https://comicvine.gamespot.com/trrunk/4005-127439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127464/", + "id": 127464, + "name": "Gnasher", + "site_detail_url": "https://comicvine.gamespot.com/gnasher/4005-127464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127465/", + "id": 127465, + "name": "Gasher", + "site_detail_url": "https://comicvine.gamespot.com/gasher/4005-127465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127693/", + "id": 127693, + "name": "Weapon II", + "site_detail_url": "https://comicvine.gamespot.com/weapon-ii/4005-127693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127708/", + "id": 127708, + "name": "Foolkiller 2099", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-2099/4005-127708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127713/", + "id": 127713, + "name": "Gloria Morales", + "site_detail_url": "https://comicvine.gamespot.com/gloria-morales/4005-127713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127836/", + "id": 127836, + "name": "American Kaiju", + "site_detail_url": "https://comicvine.gamespot.com/american-kaiju/4005-127836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127863/", + "id": 127863, + "name": "Zenzi", + "site_detail_url": "https://comicvine.gamespot.com/zenzi/4005-127863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127864/", + "id": 127864, + "name": "Robert L. Maverick", + "site_detail_url": "https://comicvine.gamespot.com/robert-l-maverick/4005-127864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127893/", + "id": 127893, + "name": "Snap Wexley", + "site_detail_url": "https://comicvine.gamespot.com/snap-wexley/4005-127893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127894/", + "id": 127894, + "name": "Karé Kun", + "site_detail_url": "https://comicvine.gamespot.com/kare-kun/4005-127894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127895/", + "id": 127895, + "name": "L'ulo L'ampar", + "site_detail_url": "https://comicvine.gamespot.com/lulo-lampar/4005-127895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127896/", + "id": 127896, + "name": "Jess Pava", + "site_detail_url": "https://comicvine.gamespot.com/jess-pava/4005-127896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127897/", + "id": 127897, + "name": "Oddy Muva", + "site_detail_url": "https://comicvine.gamespot.com/oddy-muva/4005-127897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127914/", + "id": 127914, + "name": "Hames", + "site_detail_url": "https://comicvine.gamespot.com/hames/4005-127914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127915/", + "id": 127915, + "name": "Ouija", + "site_detail_url": "https://comicvine.gamespot.com/ouija/4005-127915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127916/", + "id": 127916, + "name": "Flinch", + "site_detail_url": "https://comicvine.gamespot.com/flinch/4005-127916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127939/", + "id": 127939, + "name": "Horse of a Different Color", + "site_detail_url": "https://comicvine.gamespot.com/horse-of-a-different-color/4005-127939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127940/", + "id": 127940, + "name": "Nikko", + "site_detail_url": "https://comicvine.gamespot.com/nikko/4005-127940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127972/", + "id": 127972, + "name": "Meera Jain", + "site_detail_url": "https://comicvine.gamespot.com/meera-jain/4005-127972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-127979/", + "id": 127979, + "name": "Spirit Animal", + "site_detail_url": "https://comicvine.gamespot.com/spirit-animal/4005-127979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128034/", + "id": 128034, + "name": "Shastra", + "site_detail_url": "https://comicvine.gamespot.com/shastra/4005-128034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128035/", + "id": 128035, + "name": "Astron", + "site_detail_url": "https://comicvine.gamespot.com/astron/4005-128035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128036/", + "id": 128036, + "name": "Sentry #213", + "site_detail_url": "https://comicvine.gamespot.com/sentry-213/4005-128036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128037/", + "id": 128037, + "name": "Arlok", + "site_detail_url": "https://comicvine.gamespot.com/arlok/4005-128037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128039/", + "id": 128039, + "name": "Imperator", + "site_detail_url": "https://comicvine.gamespot.com/imperator/4005-128039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128040/", + "id": 128040, + "name": "Mrs. Feedle", + "site_detail_url": "https://comicvine.gamespot.com/mrs-feedle/4005-128040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128041/", + "id": 128041, + "name": "Mr. Feedle", + "site_detail_url": "https://comicvine.gamespot.com/mr-feedle/4005-128041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128042/", + "id": 128042, + "name": "Mistress Miraculous", + "site_detail_url": "https://comicvine.gamespot.com/mistress-miraculous/4005-128042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128043/", + "id": 128043, + "name": "Milena", + "site_detail_url": "https://comicvine.gamespot.com/milena/4005-128043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128044/", + "id": 128044, + "name": "Gene Gray", + "site_detail_url": "https://comicvine.gamespot.com/gene-gray/4005-128044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128215/", + "id": 128215, + "name": "Grecker", + "site_detail_url": "https://comicvine.gamespot.com/grecker/4005-128215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128242/", + "id": 128242, + "name": "Rocksalt", + "site_detail_url": "https://comicvine.gamespot.com/rocksalt/4005-128242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128243/", + "id": 128243, + "name": "Ozarks Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/ozarks-kingpin/4005-128243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128269/", + "id": 128269, + "name": "James Keller", + "site_detail_url": "https://comicvine.gamespot.com/james-keller/4005-128269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128271/", + "id": 128271, + "name": "Keka'Akeluak", + "site_detail_url": "https://comicvine.gamespot.com/kekaakeluak/4005-128271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128301/", + "id": 128301, + "name": "Va-Sohn", + "site_detail_url": "https://comicvine.gamespot.com/va-sohn/4005-128301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128302/", + "id": 128302, + "name": "Kah-Rehz", + "site_detail_url": "https://comicvine.gamespot.com/kah-rehz/4005-128302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128304/", + "id": 128304, + "name": "Krysta", + "site_detail_url": "https://comicvine.gamespot.com/krysta/4005-128304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128305/", + "id": 128305, + "name": "Trey West", + "site_detail_url": "https://comicvine.gamespot.com/trey-west/4005-128305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128306/", + "id": 128306, + "name": "Worm-Boy", + "site_detail_url": "https://comicvine.gamespot.com/worm-boy/4005-128306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128307/", + "id": 128307, + "name": "Micah Hardiaken", + "site_detail_url": "https://comicvine.gamespot.com/micah-hardiaken/4005-128307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128515/", + "id": 128515, + "name": "Hector Baez", + "site_detail_url": "https://comicvine.gamespot.com/hector-baez/4005-128515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128630/", + "id": 128630, + "name": "Quasar (Kincaid)", + "site_detail_url": "https://comicvine.gamespot.com/quasar-kincaid/4005-128630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128786/", + "id": 128786, + "name": "Abbadona Hellgore", + "site_detail_url": "https://comicvine.gamespot.com/abbadona-hellgore/4005-128786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128787/", + "id": 128787, + "name": "Alice Gulliver", + "site_detail_url": "https://comicvine.gamespot.com/alice-gulliver/4005-128787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128796/", + "id": 128796, + "name": "Ora", + "site_detail_url": "https://comicvine.gamespot.com/ora/4005-128796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128797/", + "id": 128797, + "name": "Killer Thrill", + "site_detail_url": "https://comicvine.gamespot.com/killer-thrill/4005-128797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128962/", + "id": 128962, + "name": "Adam Gulliver", + "site_detail_url": "https://comicvine.gamespot.com/adam-gulliver/4005-128962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128963/", + "id": 128963, + "name": "August Wu", + "site_detail_url": "https://comicvine.gamespot.com/august-wu/4005-128963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128964/", + "id": 128964, + "name": "Dow Fat", + "site_detail_url": "https://comicvine.gamespot.com/dow-fat/4005-128964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128965/", + "id": 128965, + "name": "Hieronymus Hellgore", + "site_detail_url": "https://comicvine.gamespot.com/hieronymus-hellgore/4005-128965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128995/", + "id": 128995, + "name": "Iqa", + "site_detail_url": "https://comicvine.gamespot.com/iqa/4005-128995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-128996/", + "id": 128996, + "name": "Hilla", + "site_detail_url": "https://comicvine.gamespot.com/hilla/4005-128996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129031/", + "id": 129031, + "name": "Jacques Dernier", + "site_detail_url": "https://comicvine.gamespot.com/jacques-dernier/4005-129031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129164/", + "id": 129164, + "name": "Tomoe", + "site_detail_url": "https://comicvine.gamespot.com/tomoe/4005-129164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129198/", + "id": 129198, + "name": "Jack Rollins", + "site_detail_url": "https://comicvine.gamespot.com/jack-rollins/4005-129198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129200/", + "id": 129200, + "name": "Plantman (Paul)", + "site_detail_url": "https://comicvine.gamespot.com/plantman-paul/4005-129200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129238/", + "id": 129238, + "name": "Weeping Lion", + "site_detail_url": "https://comicvine.gamespot.com/weeping-lion/4005-129238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129243/", + "id": 129243, + "name": "Agent Terex", + "site_detail_url": "https://comicvine.gamespot.com/agent-terex/4005-129243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129244/", + "id": 129244, + "name": "Gunhild", + "site_detail_url": "https://comicvine.gamespot.com/gunhild/4005-129244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129278/", + "id": 129278, + "name": "Ikelli", + "site_detail_url": "https://comicvine.gamespot.com/ikelli/4005-129278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129279/", + "id": 129279, + "name": "Irellis", + "site_detail_url": "https://comicvine.gamespot.com/irellis/4005-129279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129301/", + "id": 129301, + "name": "Countess", + "site_detail_url": "https://comicvine.gamespot.com/countess/4005-129301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129312/", + "id": 129312, + "name": "Marcus Arlington III", + "site_detail_url": "https://comicvine.gamespot.com/marcus-arlington-iii/4005-129312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129341/", + "id": 129341, + "name": "Harmony", + "site_detail_url": "https://comicvine.gamespot.com/harmony/4005-129341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129342/", + "id": 129342, + "name": "Mother Monster", + "site_detail_url": "https://comicvine.gamespot.com/mother-monster/4005-129342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129343/", + "id": 129343, + "name": "Grace", + "site_detail_url": "https://comicvine.gamespot.com/grace/4005-129343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129406/", + "id": 129406, + "name": "Nadia van Dyne", + "site_detail_url": "https://comicvine.gamespot.com/nadia-van-dyne/4005-129406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129477/", + "id": 129477, + "name": "Kid Reaper", + "site_detail_url": "https://comicvine.gamespot.com/kid-reaper/4005-129477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129496/", + "id": 129496, + "name": "Profiler", + "site_detail_url": "https://comicvine.gamespot.com/profiler/4005-129496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129511/", + "id": 129511, + "name": "Triple-Zero", + "site_detail_url": "https://comicvine.gamespot.com/triple-zero/4005-129511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129512/", + "id": 129512, + "name": "Beetee", + "site_detail_url": "https://comicvine.gamespot.com/beetee/4005-129512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129513/", + "id": 129513, + "name": "M'korr", + "site_detail_url": "https://comicvine.gamespot.com/mkorr/4005-129513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129526/", + "id": 129526, + "name": "Sentry #9168", + "site_detail_url": "https://comicvine.gamespot.com/sentry-9168/4005-129526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129585/", + "id": 129585, + "name": "Adrienne Brashear", + "site_detail_url": "https://comicvine.gamespot.com/adrienne-brashear/4005-129585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129622/", + "id": 129622, + "name": "Andwella", + "site_detail_url": "https://comicvine.gamespot.com/andwella/4005-129622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129637/", + "id": 129637, + "name": "Igor Stancheck", + "site_detail_url": "https://comicvine.gamespot.com/igor-stancheck/4005-129637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129638/", + "id": 129638, + "name": "Jim Shaeffer", + "site_detail_url": "https://comicvine.gamespot.com/jim-shaeffer/4005-129638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129639/", + "id": 129639, + "name": "Sgt. Bass", + "site_detail_url": "https://comicvine.gamespot.com/sgt-bass/4005-129639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129679/", + "id": 129679, + "name": "Barb", + "site_detail_url": "https://comicvine.gamespot.com/barb/4005-129679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129680/", + "id": 129680, + "name": "Rock", + "site_detail_url": "https://comicvine.gamespot.com/rock/4005-129680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129681/", + "id": 129681, + "name": "Slug", + "site_detail_url": "https://comicvine.gamespot.com/slug/4005-129681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129682/", + "id": 129682, + "name": "Roscoe", + "site_detail_url": "https://comicvine.gamespot.com/roscoe/4005-129682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129683/", + "id": 129683, + "name": "Sam Westman", + "site_detail_url": "https://comicvine.gamespot.com/sam-westman/4005-129683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129684/", + "id": 129684, + "name": "Jerry Westman", + "site_detail_url": "https://comicvine.gamespot.com/jerry-westman/4005-129684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129685/", + "id": 129685, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-129685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129701/", + "id": 129701, + "name": "Dr. Vryolak", + "site_detail_url": "https://comicvine.gamespot.com/dr-vryolak/4005-129701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129704/", + "id": 129704, + "name": "Eric Thorne", + "site_detail_url": "https://comicvine.gamespot.com/eric-thorne/4005-129704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129705/", + "id": 129705, + "name": "Creighton McCall", + "site_detail_url": "https://comicvine.gamespot.com/creighton-mccall/4005-129705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129745/", + "id": 129745, + "name": "Tetu", + "site_detail_url": "https://comicvine.gamespot.com/tetu/4005-129745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129819/", + "id": 129819, + "name": "The Captain", + "site_detail_url": "https://comicvine.gamespot.com/the-captain/4005-129819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129864/", + "id": 129864, + "name": "Keemia Alvarado", + "site_detail_url": "https://comicvine.gamespot.com/keemia-alvarado/4005-129864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129909/", + "id": 129909, + "name": "Ironheart", + "site_detail_url": "https://comicvine.gamespot.com/ironheart/4005-129909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129919/", + "id": 129919, + "name": "Dr. Ryder", + "site_detail_url": "https://comicvine.gamespot.com/dr-ryder/4005-129919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129923/", + "id": 129923, + "name": "Dickie", + "site_detail_url": "https://comicvine.gamespot.com/dickie/4005-129923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129924/", + "id": 129924, + "name": "Whitey", + "site_detail_url": "https://comicvine.gamespot.com/whitey/4005-129924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129929/", + "id": 129929, + "name": "Alfred Lord Tennyson", + "site_detail_url": "https://comicvine.gamespot.com/alfred-lord-tennyson/4005-129929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129930/", + "id": 129930, + "name": "Andie Torenz", + "site_detail_url": "https://comicvine.gamespot.com/andie-torenz/4005-129930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129931/", + "id": 129931, + "name": "Deen Marcus", + "site_detail_url": "https://comicvine.gamespot.com/deen-marcus/4005-129931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129945/", + "id": 129945, + "name": "Shadow-Hound", + "site_detail_url": "https://comicvine.gamespot.com/shadow-hound/4005-129945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129961/", + "id": 129961, + "name": "Bodolf the Black", + "site_detail_url": "https://comicvine.gamespot.com/bodolf-the-black/4005-129961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-129962/", + "id": 129962, + "name": "Señor Mágico", + "site_detail_url": "https://comicvine.gamespot.com/senor-magico/4005-129962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130007/", + "id": 130007, + "name": "Sarah Rogers", + "site_detail_url": "https://comicvine.gamespot.com/sarah-rogers/4005-130007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130008/", + "id": 130008, + "name": "Robbie Dean Tomlin", + "site_detail_url": "https://comicvine.gamespot.com/robbie-dean-tomlin/4005-130008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130011/", + "id": 130011, + "name": "Tom Goodrich", + "site_detail_url": "https://comicvine.gamespot.com/tom-goodrich/4005-130011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130020/", + "id": 130020, + "name": "Skyshark", + "site_detail_url": "https://comicvine.gamespot.com/skyshark/4005-130020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130021/", + "id": 130021, + "name": "Michaela Miller", + "site_detail_url": "https://comicvine.gamespot.com/michaela-miller/4005-130021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130026/", + "id": 130026, + "name": "Rachel Oakley", + "site_detail_url": "https://comicvine.gamespot.com/rachel-oakley/4005-130026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130046/", + "id": 130046, + "name": "Revelator", + "site_detail_url": "https://comicvine.gamespot.com/revelator/4005-130046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130047/", + "id": 130047, + "name": "Dan Hanrahan", + "site_detail_url": "https://comicvine.gamespot.com/dan-hanrahan/4005-130047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130048/", + "id": 130048, + "name": "Rosalie Richmond", + "site_detail_url": "https://comicvine.gamespot.com/rosalie-richmond/4005-130048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130049/", + "id": 130049, + "name": "Titus Richmond", + "site_detail_url": "https://comicvine.gamespot.com/titus-richmond/4005-130049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130053/", + "id": 130053, + "name": "Spot", + "site_detail_url": "https://comicvine.gamespot.com/spot/4005-130053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130054/", + "id": 130054, + "name": "Elizabeth Milton", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-milton/4005-130054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130055/", + "id": 130055, + "name": "Mason Milton", + "site_detail_url": "https://comicvine.gamespot.com/mason-milton/4005-130055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130056/", + "id": 130056, + "name": "Abigail Stewart", + "site_detail_url": "https://comicvine.gamespot.com/abigail-stewart/4005-130056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130096/", + "id": 130096, + "name": "Lira", + "site_detail_url": "https://comicvine.gamespot.com/lira/4005-130096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130133/", + "id": 130133, + "name": "Sandwoman", + "site_detail_url": "https://comicvine.gamespot.com/sandwoman/4005-130133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130134/", + "id": 130134, + "name": "Electro 2099", + "site_detail_url": "https://comicvine.gamespot.com/electro-2099/4005-130134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130135/", + "id": 130135, + "name": "Doctor Octopus 2099", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopus-2099/4005-130135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130178/", + "id": 130178, + "name": "Elisa Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/elisa-sinclair/4005-130178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130186/", + "id": 130186, + "name": "The Dreamwalker", + "site_detail_url": "https://comicvine.gamespot.com/the-dreamwalker/4005-130186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130207/", + "id": 130207, + "name": "Cliff Powers", + "site_detail_url": "https://comicvine.gamespot.com/cliff-powers/4005-130207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130227/", + "id": 130227, + "name": "N'Gamo", + "site_detail_url": "https://comicvine.gamespot.com/ngamo/4005-130227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130283/", + "id": 130283, + "name": "Thlu-ry", + "site_detail_url": "https://comicvine.gamespot.com/thlu-ry/4005-130283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130284/", + "id": 130284, + "name": "Tarna", + "site_detail_url": "https://comicvine.gamespot.com/tarna/4005-130284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130308/", + "id": 130308, + "name": "Celestial Destructor", + "site_detail_url": "https://comicvine.gamespot.com/celestial-destructor/4005-130308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130309/", + "id": 130309, + "name": "Agent Rowse", + "site_detail_url": "https://comicvine.gamespot.com/agent-rowse/4005-130309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130313/", + "id": 130313, + "name": "Kage-Maru", + "site_detail_url": "https://comicvine.gamespot.com/kage-maru/4005-130313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130326/", + "id": 130326, + "name": "Erika of Amnisos", + "site_detail_url": "https://comicvine.gamespot.com/erika-of-amnisos/4005-130326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130380/", + "id": 130380, + "name": "Ready Girl", + "site_detail_url": "https://comicvine.gamespot.com/ready-girl/4005-130380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130494/", + "id": 130494, + "name": "Marvin Ellis", + "site_detail_url": "https://comicvine.gamespot.com/marvin-ellis/4005-130494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130495/", + "id": 130495, + "name": "Becky St. Jude", + "site_detail_url": "https://comicvine.gamespot.com/becky-st-jude/4005-130495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130496/", + "id": 130496, + "name": "Ralphie Aaron Shomon", + "site_detail_url": "https://comicvine.gamespot.com/ralphie-aaron-shomon/4005-130496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130497/", + "id": 130497, + "name": "Kara Sawa", + "site_detail_url": "https://comicvine.gamespot.com/kara-sawa/4005-130497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130498/", + "id": 130498, + "name": "Jimbo", + "site_detail_url": "https://comicvine.gamespot.com/jimbo/4005-130498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130500/", + "id": 130500, + "name": "Dark Tongji", + "site_detail_url": "https://comicvine.gamespot.com/dark-tongji/4005-130500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130507/", + "id": 130507, + "name": "Frr'dox", + "site_detail_url": "https://comicvine.gamespot.com/frrdox/4005-130507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130533/", + "id": 130533, + "name": "Stonecold", + "site_detail_url": "https://comicvine.gamespot.com/stonecold/4005-130533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130652/", + "id": 130652, + "name": "R304", + "site_detail_url": "https://comicvine.gamespot.com/r304/4005-130652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130653/", + "id": 130653, + "name": "Konstantin", + "site_detail_url": "https://comicvine.gamespot.com/konstantin/4005-130653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130654/", + "id": 130654, + "name": "Mamen", + "site_detail_url": "https://comicvine.gamespot.com/mamen/4005-130654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130655/", + "id": 130655, + "name": "Jiao", + "site_detail_url": "https://comicvine.gamespot.com/jiao/4005-130655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130656/", + "id": 130656, + "name": "Nina Fuerte", + "site_detail_url": "https://comicvine.gamespot.com/nina-fuerte/4005-130656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130657/", + "id": 130657, + "name": "Sherman Burrell", + "site_detail_url": "https://comicvine.gamespot.com/sherman-burrell/4005-130657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130658/", + "id": 130658, + "name": "Randolph O'Neil", + "site_detail_url": "https://comicvine.gamespot.com/randolph-oneil/4005-130658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130707/", + "id": 130707, + "name": "Constance the Bride", + "site_detail_url": "https://comicvine.gamespot.com/constance-the-bride/4005-130707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130737/", + "id": 130737, + "name": "Mosaic", + "site_detail_url": "https://comicvine.gamespot.com/mosaic/4005-130737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130738/", + "id": 130738, + "name": "Bar-Konn", + "site_detail_url": "https://comicvine.gamespot.com/bar-konn/4005-130738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130794/", + "id": 130794, + "name": "Lola", + "site_detail_url": "https://comicvine.gamespot.com/lola/4005-130794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130799/", + "id": 130799, + "name": "Bessie Hotchkiss", + "site_detail_url": "https://comicvine.gamespot.com/bessie-hotchkiss/4005-130799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130820/", + "id": 130820, + "name": "The Overseer", + "site_detail_url": "https://comicvine.gamespot.com/the-overseer/4005-130820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130905/", + "id": 130905, + "name": "Julie Harrison", + "site_detail_url": "https://comicvine.gamespot.com/julie-harrison/4005-130905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130906/", + "id": 130906, + "name": "Doyle", + "site_detail_url": "https://comicvine.gamespot.com/doyle/4005-130906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130907/", + "id": 130907, + "name": "Bobby Beisbol", + "site_detail_url": "https://comicvine.gamespot.com/bobby-beisbol/4005-130907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130941/", + "id": 130941, + "name": "Roman Wilson", + "site_detail_url": "https://comicvine.gamespot.com/roman-wilson/4005-130941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130947/", + "id": 130947, + "name": "Warden Luta", + "site_detail_url": "https://comicvine.gamespot.com/warden-luta/4005-130947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130948/", + "id": 130948, + "name": "Grakkus the Hutt", + "site_detail_url": "https://comicvine.gamespot.com/grakkus-the-hutt/4005-130948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130964/", + "id": 130964, + "name": "Slugger Sloan", + "site_detail_url": "https://comicvine.gamespot.com/slugger-sloan/4005-130964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130984/", + "id": 130984, + "name": "Thomas Talltrees", + "site_detail_url": "https://comicvine.gamespot.com/thomas-talltrees/4005-130984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130985/", + "id": 130985, + "name": "Rebecca Talltrees", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-talltrees/4005-130985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130986/", + "id": 130986, + "name": "Jason Birch", + "site_detail_url": "https://comicvine.gamespot.com/jason-birch/4005-130986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-130996/", + "id": 130996, + "name": "Janus Jardeesh", + "site_detail_url": "https://comicvine.gamespot.com/janus-jardeesh/4005-130996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131042/", + "id": 131042, + "name": "Hugo", + "site_detail_url": "https://comicvine.gamespot.com/hugo/4005-131042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131043/", + "id": 131043, + "name": "Mr. Markham", + "site_detail_url": "https://comicvine.gamespot.com/mr-markham/4005-131043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131132/", + "id": 131132, + "name": "Crime Master (Sammy)", + "site_detail_url": "https://comicvine.gamespot.com/crime-master-sammy/4005-131132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131225/", + "id": 131225, + "name": "Zoga", + "site_detail_url": "https://comicvine.gamespot.com/zoga/4005-131225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131226/", + "id": 131226, + "name": "Fujiko Watanabe", + "site_detail_url": "https://comicvine.gamespot.com/fujiko-watanabe/4005-131226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131227/", + "id": 131227, + "name": "Goro Watanabe", + "site_detail_url": "https://comicvine.gamespot.com/goro-watanabe/4005-131227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131286/", + "id": 131286, + "name": "General Strakofsky", + "site_detail_url": "https://comicvine.gamespot.com/general-strakofsky/4005-131286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131306/", + "id": 131306, + "name": "Lexus Jones", + "site_detail_url": "https://comicvine.gamespot.com/lexus-jones/4005-131306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131321/", + "id": 131321, + "name": "Mystic", + "site_detail_url": "https://comicvine.gamespot.com/mystic/4005-131321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131368/", + "id": 131368, + "name": "Quacksilver", + "site_detail_url": "https://comicvine.gamespot.com/quacksilver/4005-131368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131369/", + "id": 131369, + "name": "Black Panda", + "site_detail_url": "https://comicvine.gamespot.com/black-panda/4005-131369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131401/", + "id": 131401, + "name": "Captain Mercaptan", + "site_detail_url": "https://comicvine.gamespot.com/captain-mercaptan/4005-131401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131408/", + "id": 131408, + "name": "Principal Waxman", + "site_detail_url": "https://comicvine.gamespot.com/principal-waxman/4005-131408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131409/", + "id": 131409, + "name": "Chris Kinzky", + "site_detail_url": "https://comicvine.gamespot.com/chris-kinzky/4005-131409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131410/", + "id": 131410, + "name": "Leon Kinzky", + "site_detail_url": "https://comicvine.gamespot.com/leon-kinzky/4005-131410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131415/", + "id": 131415, + "name": "Gayle Cord-Becker", + "site_detail_url": "https://comicvine.gamespot.com/gayle-cord-becker/4005-131415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131416/", + "id": 131416, + "name": "Nora Knowles", + "site_detail_url": "https://comicvine.gamespot.com/nora-knowles/4005-131416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131417/", + "id": 131417, + "name": "George Knowles", + "site_detail_url": "https://comicvine.gamespot.com/george-knowles/4005-131417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131418/", + "id": 131418, + "name": "Sparky", + "site_detail_url": "https://comicvine.gamespot.com/sparky/4005-131418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131419/", + "id": 131419, + "name": "Zeke", + "site_detail_url": "https://comicvine.gamespot.com/zeke/4005-131419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131420/", + "id": 131420, + "name": "Pei", + "site_detail_url": "https://comicvine.gamespot.com/pei/4005-131420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131440/", + "id": 131440, + "name": "Agent Elder", + "site_detail_url": "https://comicvine.gamespot.com/agent-elder/4005-131440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131441/", + "id": 131441, + "name": "Morit", + "site_detail_url": "https://comicvine.gamespot.com/morit/4005-131441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131442/", + "id": 131442, + "name": "Edwin Bagge", + "site_detail_url": "https://comicvine.gamespot.com/edwin-bagge/4005-131442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131443/", + "id": 131443, + "name": "Sgt. Kreel", + "site_detail_url": "https://comicvine.gamespot.com/sgt-kreel/4005-131443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131444/", + "id": 131444, + "name": "Infinaut", + "site_detail_url": "https://comicvine.gamespot.com/infinaut/4005-131444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131484/", + "id": 131484, + "name": "Philip Nelson Vogt", + "site_detail_url": "https://comicvine.gamespot.com/philip-nelson-vogt/4005-131484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131506/", + "id": 131506, + "name": "Agent Santora", + "site_detail_url": "https://comicvine.gamespot.com/agent-santora/4005-131506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131520/", + "id": 131520, + "name": "Mandla", + "site_detail_url": "https://comicvine.gamespot.com/mandla/4005-131520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131522/", + "id": 131522, + "name": "Hijinx", + "site_detail_url": "https://comicvine.gamespot.com/hijinx/4005-131522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131598/", + "id": 131598, + "name": "Danika Hart", + "site_detail_url": "https://comicvine.gamespot.com/danika-hart/4005-131598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131606/", + "id": 131606, + "name": "Myntril", + "site_detail_url": "https://comicvine.gamespot.com/myntril/4005-131606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131610/", + "id": 131610, + "name": "Alison Green", + "site_detail_url": "https://comicvine.gamespot.com/alison-green/4005-131610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131660/", + "id": 131660, + "name": "Agent Kurdle", + "site_detail_url": "https://comicvine.gamespot.com/agent-kurdle/4005-131660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131661/", + "id": 131661, + "name": "Agent Krill", + "site_detail_url": "https://comicvine.gamespot.com/agent-krill/4005-131661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131662/", + "id": 131662, + "name": "Raymond Dawson", + "site_detail_url": "https://comicvine.gamespot.com/raymond-dawson/4005-131662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131665/", + "id": 131665, + "name": "Sheila Mason", + "site_detail_url": "https://comicvine.gamespot.com/sheila-mason/4005-131665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131666/", + "id": 131666, + "name": "Enoch Mason", + "site_detail_url": "https://comicvine.gamespot.com/enoch-mason/4005-131666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131667/", + "id": 131667, + "name": "Zhang", + "site_detail_url": "https://comicvine.gamespot.com/zhang/4005-131667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131698/", + "id": 131698, + "name": "Lock", + "site_detail_url": "https://comicvine.gamespot.com/lock/4005-131698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131699/", + "id": 131699, + "name": "Glow", + "site_detail_url": "https://comicvine.gamespot.com/glow/4005-131699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131700/", + "id": 131700, + "name": "Tongue", + "site_detail_url": "https://comicvine.gamespot.com/tongue/4005-131700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131703/", + "id": 131703, + "name": "Buzz Bannon", + "site_detail_url": "https://comicvine.gamespot.com/buzz-bannon/4005-131703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131721/", + "id": 131721, + "name": "Howard Huffinger", + "site_detail_url": "https://comicvine.gamespot.com/howard-huffinger/4005-131721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131722/", + "id": 131722, + "name": "Myra Green", + "site_detail_url": "https://comicvine.gamespot.com/myra-green/4005-131722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131723/", + "id": 131723, + "name": "Thurston Thruwell", + "site_detail_url": "https://comicvine.gamespot.com/thurston-thruwell/4005-131723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131736/", + "id": 131736, + "name": "Face", + "site_detail_url": "https://comicvine.gamespot.com/face/4005-131736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131737/", + "id": 131737, + "name": "Josiah", + "site_detail_url": "https://comicvine.gamespot.com/josiah/4005-131737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131738/", + "id": 131738, + "name": "Juniper", + "site_detail_url": "https://comicvine.gamespot.com/juniper/4005-131738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131739/", + "id": 131739, + "name": "Olaf", + "site_detail_url": "https://comicvine.gamespot.com/olaf/4005-131739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131740/", + "id": 131740, + "name": "Agent Henderson", + "site_detail_url": "https://comicvine.gamespot.com/agent-henderson/4005-131740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131741/", + "id": 131741, + "name": "Agent Ortiz", + "site_detail_url": "https://comicvine.gamespot.com/agent-ortiz/4005-131741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131789/", + "id": 131789, + "name": "Natalya Maximoff", + "site_detail_url": "https://comicvine.gamespot.com/natalya-maximoff/4005-131789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131794/", + "id": 131794, + "name": "Nisa Contreras", + "site_detail_url": "https://comicvine.gamespot.com/nisa-contreras/4005-131794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131798/", + "id": 131798, + "name": "Rafferty", + "site_detail_url": "https://comicvine.gamespot.com/rafferty/4005-131798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131805/", + "id": 131805, + "name": "Jon Ajax", + "site_detail_url": "https://comicvine.gamespot.com/jon-ajax/4005-131805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131832/", + "id": 131832, + "name": "Serrata", + "site_detail_url": "https://comicvine.gamespot.com/serrata/4005-131832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131833/", + "id": 131833, + "name": "Doctor Stuart", + "site_detail_url": "https://comicvine.gamespot.com/doctor-stuart/4005-131833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131838/", + "id": 131838, + "name": "Duncan Diggs", + "site_detail_url": "https://comicvine.gamespot.com/duncan-diggs/4005-131838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131839/", + "id": 131839, + "name": "Bert Ergle", + "site_detail_url": "https://comicvine.gamespot.com/bert-ergle/4005-131839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131840/", + "id": 131840, + "name": "Holly Hae", + "site_detail_url": "https://comicvine.gamespot.com/holly-hae/4005-131840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131887/", + "id": 131887, + "name": "Elton Blake", + "site_detail_url": "https://comicvine.gamespot.com/elton-blake/4005-131887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131892/", + "id": 131892, + "name": "Evelyn Stanzler", + "site_detail_url": "https://comicvine.gamespot.com/evelyn-stanzler/4005-131892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131903/", + "id": 131903, + "name": "Sohei", + "site_detail_url": "https://comicvine.gamespot.com/sohei/4005-131903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131904/", + "id": 131904, + "name": "Blast-Hands", + "site_detail_url": "https://comicvine.gamespot.com/blast-hands/4005-131904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131905/", + "id": 131905, + "name": "Little Ben Donovan", + "site_detail_url": "https://comicvine.gamespot.com/little-ben-donovan/4005-131905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131906/", + "id": 131906, + "name": "Marta Cardona", + "site_detail_url": "https://comicvine.gamespot.com/marta-cardona/4005-131906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131907/", + "id": 131907, + "name": "Disco Devil", + "site_detail_url": "https://comicvine.gamespot.com/disco-devil/4005-131907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131920/", + "id": 131920, + "name": "Cecil", + "site_detail_url": "https://comicvine.gamespot.com/cecil/4005-131920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131921/", + "id": 131921, + "name": "Mega Tony", + "site_detail_url": "https://comicvine.gamespot.com/mega-tony/4005-131921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131922/", + "id": 131922, + "name": "Terrible Eye", + "site_detail_url": "https://comicvine.gamespot.com/terrible-eye/4005-131922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131924/", + "id": 131924, + "name": "Ronnie", + "site_detail_url": "https://comicvine.gamespot.com/ronnie/4005-131924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131949/", + "id": 131949, + "name": "Ernest Scope", + "site_detail_url": "https://comicvine.gamespot.com/ernest-scope/4005-131949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131950/", + "id": 131950, + "name": "Craig Farnsworth", + "site_detail_url": "https://comicvine.gamespot.com/craig-farnsworth/4005-131950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131951/", + "id": 131951, + "name": "Gene Bitner", + "site_detail_url": "https://comicvine.gamespot.com/gene-bitner/4005-131951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131952/", + "id": 131952, + "name": "Simon Lestron", + "site_detail_url": "https://comicvine.gamespot.com/simon-lestron/4005-131952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131953/", + "id": 131953, + "name": "Lucy Robinson", + "site_detail_url": "https://comicvine.gamespot.com/lucy-robinson/4005-131953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131954/", + "id": 131954, + "name": "Gracie Smith", + "site_detail_url": "https://comicvine.gamespot.com/gracie-smith/4005-131954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131955/", + "id": 131955, + "name": "Tobias Messenger", + "site_detail_url": "https://comicvine.gamespot.com/tobias-messenger/4005-131955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131961/", + "id": 131961, + "name": "Michael Robinson", + "site_detail_url": "https://comicvine.gamespot.com/michael-robinson/4005-131961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131965/", + "id": 131965, + "name": "N'Taka", + "site_detail_url": "https://comicvine.gamespot.com/ntaka/4005-131965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131966/", + "id": 131966, + "name": "Naraba", + "site_detail_url": "https://comicvine.gamespot.com/naraba/4005-131966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131967/", + "id": 131967, + "name": "M'Chata", + "site_detail_url": "https://comicvine.gamespot.com/mchata/4005-131967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131968/", + "id": 131968, + "name": "Special Agent Carver", + "site_detail_url": "https://comicvine.gamespot.com/special-agent-carver/4005-131968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131969/", + "id": 131969, + "name": "Miss Parker", + "site_detail_url": "https://comicvine.gamespot.com/miss-parker/4005-131969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131988/", + "id": 131988, + "name": "Simon Krieger", + "site_detail_url": "https://comicvine.gamespot.com/simon-krieger/4005-131988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131993/", + "id": 131993, + "name": "Joseph McMurphy", + "site_detail_url": "https://comicvine.gamespot.com/joseph-mcmurphy/4005-131993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131995/", + "id": 131995, + "name": "Marlena Howard", + "site_detail_url": "https://comicvine.gamespot.com/marlena-howard/4005-131995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-131996/", + "id": 131996, + "name": "Jalen Diggs", + "site_detail_url": "https://comicvine.gamespot.com/jalen-diggs/4005-131996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132020/", + "id": 132020, + "name": "Rabbit Woman", + "site_detail_url": "https://comicvine.gamespot.com/rabbit-woman/4005-132020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132021/", + "id": 132021, + "name": "Giraffe-Man", + "site_detail_url": "https://comicvine.gamespot.com/giraffe-man/4005-132021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132034/", + "id": 132034, + "name": "Pig-Man", + "site_detail_url": "https://comicvine.gamespot.com/pig-man/4005-132034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132035/", + "id": 132035, + "name": "Great Horned Owl-Man", + "site_detail_url": "https://comicvine.gamespot.com/great-horned-owlman/4005-132035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132037/", + "id": 132037, + "name": "Sanara", + "site_detail_url": "https://comicvine.gamespot.com/sanara/4005-132037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132038/", + "id": 132038, + "name": "Daya", + "site_detail_url": "https://comicvine.gamespot.com/daya/4005-132038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132039/", + "id": 132039, + "name": "Jonathan", + "site_detail_url": "https://comicvine.gamespot.com/jonathan/4005-132039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132040/", + "id": 132040, + "name": "Squirrelpool", + "site_detail_url": "https://comicvine.gamespot.com/squirrelpool/4005-132040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132041/", + "id": 132041, + "name": "Frankie Bagge", + "site_detail_url": "https://comicvine.gamespot.com/frankie-bagge/4005-132041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132074/", + "id": 132074, + "name": "O.M.N.I.T.R.O.N.I.C.U.S.", + "site_detail_url": "https://comicvine.gamespot.com/omnitronicus/4005-132074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132088/", + "id": 132088, + "name": "Changamire", + "site_detail_url": "https://comicvine.gamespot.com/changamire/4005-132088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132089/", + "id": 132089, + "name": "Akili", + "site_detail_url": "https://comicvine.gamespot.com/akili/4005-132089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132090/", + "id": 132090, + "name": "Hodari", + "site_detail_url": "https://comicvine.gamespot.com/hodari/4005-132090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132120/", + "id": 132120, + "name": "Recluse", + "site_detail_url": "https://comicvine.gamespot.com/recluse/4005-132120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132128/", + "id": 132128, + "name": "He-lix", + "site_detail_url": "https://comicvine.gamespot.com/he-lix/4005-132128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132129/", + "id": 132129, + "name": "Z'ien", + "site_detail_url": "https://comicvine.gamespot.com/zien/4005-132129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132130/", + "id": 132130, + "name": "Biggs", + "site_detail_url": "https://comicvine.gamespot.com/biggs/4005-132130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132131/", + "id": 132131, + "name": "Amanda Armstrong", + "site_detail_url": "https://comicvine.gamespot.com/amanda-armstrong/4005-132131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132164/", + "id": 132164, + "name": "Weeping Lion", + "site_detail_url": "https://comicvine.gamespot.com/weeping-lion/4005-132164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132221/", + "id": 132221, + "name": "Snoke", + "site_detail_url": "https://comicvine.gamespot.com/snoke/4005-132221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132251/", + "id": 132251, + "name": "Banyan", + "site_detail_url": "https://comicvine.gamespot.com/banyan/4005-132251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132252/", + "id": 132252, + "name": "Kludge", + "site_detail_url": "https://comicvine.gamespot.com/kludge/4005-132252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132254/", + "id": 132254, + "name": "Jack Craw", + "site_detail_url": "https://comicvine.gamespot.com/jack-craw/4005-132254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132255/", + "id": 132255, + "name": "Anne Tenna", + "site_detail_url": "https://comicvine.gamespot.com/anne-tenna/4005-132255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132256/", + "id": 132256, + "name": "Enoch", + "site_detail_url": "https://comicvine.gamespot.com/enoch/4005-132256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132257/", + "id": 132257, + "name": "Spectra", + "site_detail_url": "https://comicvine.gamespot.com/spectra/4005-132257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132264/", + "id": 132264, + "name": "Harry Hauser", + "site_detail_url": "https://comicvine.gamespot.com/harry-hauser/4005-132264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132265/", + "id": 132265, + "name": "Tom Herald", + "site_detail_url": "https://comicvine.gamespot.com/tom-herald/4005-132265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132266/", + "id": 132266, + "name": "Paul Keane", + "site_detail_url": "https://comicvine.gamespot.com/paul-keane/4005-132266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132295/", + "id": 132295, + "name": "Passcode", + "site_detail_url": "https://comicvine.gamespot.com/passcode/4005-132295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132296/", + "id": 132296, + "name": "Puppeteer", + "site_detail_url": "https://comicvine.gamespot.com/puppeteer/4005-132296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132305/", + "id": 132305, + "name": "Captain Ultra 2099", + "site_detail_url": "https://comicvine.gamespot.com/captain-ultra-2099/4005-132305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132346/", + "id": 132346, + "name": "Artie Sigmund", + "site_detail_url": "https://comicvine.gamespot.com/artie-sigmund/4005-132346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132347/", + "id": 132347, + "name": "Isadore Dudley", + "site_detail_url": "https://comicvine.gamespot.com/isadore-dudley/4005-132347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132364/", + "id": 132364, + "name": "Yuvraj Singh", + "site_detail_url": "https://comicvine.gamespot.com/yuvraj-singh/4005-132364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132388/", + "id": 132388, + "name": "Colonel Dexter", + "site_detail_url": "https://comicvine.gamespot.com/colonel-dexter/4005-132388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132401/", + "id": 132401, + "name": "Red Hornet", + "site_detail_url": "https://comicvine.gamespot.com/red-hornet/4005-132401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132402/", + "id": 132402, + "name": "Huntstalker", + "site_detail_url": "https://comicvine.gamespot.com/huntstalker/4005-132402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132403/", + "id": 132403, + "name": "Francine Frye", + "site_detail_url": "https://comicvine.gamespot.com/francine-frye/4005-132403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132404/", + "id": 132404, + "name": "Iron Fist 2099", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-2099/4005-132404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132405/", + "id": 132405, + "name": "Schism", + "site_detail_url": "https://comicvine.gamespot.com/schism/4005-132405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132406/", + "id": 132406, + "name": "Horus", + "site_detail_url": "https://comicvine.gamespot.com/horus/4005-132406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132407/", + "id": 132407, + "name": "Pockets Possum", + "site_detail_url": "https://comicvine.gamespot.com/pockets-possum/4005-132407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132408/", + "id": 132408, + "name": "Shrub", + "site_detail_url": "https://comicvine.gamespot.com/shrub/4005-132408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132409/", + "id": 132409, + "name": "Lisa Halloran", + "site_detail_url": "https://comicvine.gamespot.com/lisa-halloran/4005-132409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132426/", + "id": 132426, + "name": "Lonnie Carver", + "site_detail_url": "https://comicvine.gamespot.com/lonnie-carver/4005-132426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132509/", + "id": 132509, + "name": "Pad-Varr", + "site_detail_url": "https://comicvine.gamespot.com/pad-varr/4005-132509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132516/", + "id": 132516, + "name": "Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mastermind/4005-132516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132517/", + "id": 132517, + "name": "Kathy Ffoulkes", + "site_detail_url": "https://comicvine.gamespot.com/kathy-ffoulkes/4005-132517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132518/", + "id": 132518, + "name": "Hubert Ffoulkes", + "site_detail_url": "https://comicvine.gamespot.com/hubert-ffoulkes/4005-132518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132521/", + "id": 132521, + "name": "Destiny Gonzales", + "site_detail_url": "https://comicvine.gamespot.com/destiny-gonzales/4005-132521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132523/", + "id": 132523, + "name": "Kris Boyle", + "site_detail_url": "https://comicvine.gamespot.com/kris-boyle/4005-132523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132524/", + "id": 132524, + "name": "Amos Trench", + "site_detail_url": "https://comicvine.gamespot.com/amos-trench/4005-132524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132580/", + "id": 132580, + "name": "Rebecca", + "site_detail_url": "https://comicvine.gamespot.com/rebecca/4005-132580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132581/", + "id": 132581, + "name": "Isaac", + "site_detail_url": "https://comicvine.gamespot.com/isaac/4005-132581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132582/", + "id": 132582, + "name": "Rachel", + "site_detail_url": "https://comicvine.gamespot.com/rachel/4005-132582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132615/", + "id": 132615, + "name": "Devi Deol", + "site_detail_url": "https://comicvine.gamespot.com/devi-deol/4005-132615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132616/", + "id": 132616, + "name": "Anoop Deol", + "site_detail_url": "https://comicvine.gamespot.com/anoop-deol/4005-132616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132617/", + "id": 132617, + "name": "Adhira Deol", + "site_detail_url": "https://comicvine.gamespot.com/adhira-deol/4005-132617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132656/", + "id": 132656, + "name": "Canelo", + "site_detail_url": "https://comicvine.gamespot.com/canelo/4005-132656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132722/", + "id": 132722, + "name": "Aoi Master", + "site_detail_url": "https://comicvine.gamespot.com/aoi-master/4005-132722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132723/", + "id": 132723, + "name": "Miles Benchley", + "site_detail_url": "https://comicvine.gamespot.com/miles-benchley/4005-132723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132724/", + "id": 132724, + "name": "Romeo", + "site_detail_url": "https://comicvine.gamespot.com/romeo/4005-132724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132725/", + "id": 132725, + "name": "Doris Bray", + "site_detail_url": "https://comicvine.gamespot.com/doris-bray/4005-132725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132793/", + "id": 132793, + "name": "Wink", + "site_detail_url": "https://comicvine.gamespot.com/wink/4005-132793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132794/", + "id": 132794, + "name": "Noriko Furuya", + "site_detail_url": "https://comicvine.gamespot.com/noriko-furuya/4005-132794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132795/", + "id": 132795, + "name": "Makki Hokaido", + "site_detail_url": "https://comicvine.gamespot.com/makki-hokaido/4005-132795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132796/", + "id": 132796, + "name": "Black Bullet", + "site_detail_url": "https://comicvine.gamespot.com/black-bullet/4005-132796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132798/", + "id": 132798, + "name": "Muse", + "site_detail_url": "https://comicvine.gamespot.com/muse/4005-132798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132865/", + "id": 132865, + "name": "Gibborim Sentry", + "site_detail_url": "https://comicvine.gamespot.com/gibborim-sentry/4005-132865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-132899/", + "id": 132899, + "name": "John Kowalski", + "site_detail_url": "https://comicvine.gamespot.com/john-kowalski/4005-132899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133094/", + "id": 133094, + "name": "Yegor Ivanov", + "site_detail_url": "https://comicvine.gamespot.com/yegor-ivanov/4005-133094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133124/", + "id": 133124, + "name": "Josephine", + "site_detail_url": "https://comicvine.gamespot.com/josephine/4005-133124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133125/", + "id": 133125, + "name": "Esme", + "site_detail_url": "https://comicvine.gamespot.com/esme/4005-133125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133144/", + "id": 133144, + "name": "Bearboarguy", + "site_detail_url": "https://comicvine.gamespot.com/bearboarguy/4005-133144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133163/", + "id": 133163, + "name": "Iron Punisher", + "site_detail_url": "https://comicvine.gamespot.com/iron-punisher/4005-133163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133164/", + "id": 133164, + "name": "Air-Icka", + "site_detail_url": "https://comicvine.gamespot.com/air-icka/4005-133164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133165/", + "id": 133165, + "name": "Ry-N", + "site_detail_url": "https://comicvine.gamespot.com/ry-n/4005-133165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133166/", + "id": 133166, + "name": "Whil", + "site_detail_url": "https://comicvine.gamespot.com/whil/4005-133166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133167/", + "id": 133167, + "name": "Ta-Nehi-C", + "site_detail_url": "https://comicvine.gamespot.com/ta-nehi-c/4005-133167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133168/", + "id": 133168, + "name": "Jho", + "site_detail_url": "https://comicvine.gamespot.com/jho/4005-133168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133169/", + "id": 133169, + "name": "Chipp", + "site_detail_url": "https://comicvine.gamespot.com/chipp/4005-133169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133170/", + "id": 133170, + "name": "Bullmarket", + "site_detail_url": "https://comicvine.gamespot.com/bullmarket/4005-133170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133249/", + "id": 133249, + "name": "Venus Compiler", + "site_detail_url": "https://comicvine.gamespot.com/venus-compiler/4005-133249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133328/", + "id": 133328, + "name": "Mister Misery", + "site_detail_url": "https://comicvine.gamespot.com/mister-misery/4005-133328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133335/", + "id": 133335, + "name": "Maker", + "site_detail_url": "https://comicvine.gamespot.com/maker/4005-133335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133388/", + "id": 133388, + "name": "Professor Lafarge", + "site_detail_url": "https://comicvine.gamespot.com/professor-lafarge/4005-133388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133389/", + "id": 133389, + "name": "Cosette Lafarge", + "site_detail_url": "https://comicvine.gamespot.com/cosette-lafarge/4005-133389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133390/", + "id": 133390, + "name": "Fred Raymond", + "site_detail_url": "https://comicvine.gamespot.com/fred-raymond/4005-133390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133391/", + "id": 133391, + "name": "Nora Raymond", + "site_detail_url": "https://comicvine.gamespot.com/nora-raymond/4005-133391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133479/", + "id": 133479, + "name": "Good Boy", + "site_detail_url": "https://comicvine.gamespot.com/good-boy/4005-133479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133480/", + "id": 133480, + "name": "Pansy", + "site_detail_url": "https://comicvine.gamespot.com/pansy/4005-133480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133481/", + "id": 133481, + "name": "Pitchfork", + "site_detail_url": "https://comicvine.gamespot.com/pitchfork/4005-133481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133496/", + "id": 133496, + "name": "Andrea Pearson", + "site_detail_url": "https://comicvine.gamespot.com/andrea-pearson/4005-133496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133497/", + "id": 133497, + "name": "Patrick Durnin", + "site_detail_url": "https://comicvine.gamespot.com/patrick-durnin/4005-133497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133498/", + "id": 133498, + "name": "Cassius Grover", + "site_detail_url": "https://comicvine.gamespot.com/cassius-grover/4005-133498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133499/", + "id": 133499, + "name": "Frederick Durnin", + "site_detail_url": "https://comicvine.gamespot.com/frederick-durnin/4005-133499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133500/", + "id": 133500, + "name": "Benjamin Hochberg", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-hochberg/4005-133500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133501/", + "id": 133501, + "name": "Firebrand (Hades)", + "site_detail_url": "https://comicvine.gamespot.com/firebrand-hades/4005-133501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133512/", + "id": 133512, + "name": "Silent Monk", + "site_detail_url": "https://comicvine.gamespot.com/silent-monk/4005-133512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133552/", + "id": 133552, + "name": "Paen-Umbra", + "site_detail_url": "https://comicvine.gamespot.com/paen-umbra/4005-133552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133629/", + "id": 133629, + "name": "Klagguu", + "site_detail_url": "https://comicvine.gamespot.com/klagguu/4005-133629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133630/", + "id": 133630, + "name": "Brett Mahoney", + "site_detail_url": "https://comicvine.gamespot.com/brett-mahoney/4005-133630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133631/", + "id": 133631, + "name": "Michael Kozlov", + "site_detail_url": "https://comicvine.gamespot.com/michael-kozlov/4005-133631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133632/", + "id": 133632, + "name": "Llyron", + "site_detail_url": "https://comicvine.gamespot.com/llyron/4005-133632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133633/", + "id": 133633, + "name": "Rhonda Morris", + "site_detail_url": "https://comicvine.gamespot.com/rhonda-morris/4005-133633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133657/", + "id": 133657, + "name": "Belinda Thompkins", + "site_detail_url": "https://comicvine.gamespot.com/belinda-thompkins/4005-133657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133658/", + "id": 133658, + "name": "Rasko", + "site_detail_url": "https://comicvine.gamespot.com/rasko/4005-133658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133659/", + "id": 133659, + "name": "Mechanoid Scout MK-5", + "site_detail_url": "https://comicvine.gamespot.com/mechanoid-scout-mk-5/4005-133659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133682/", + "id": 133682, + "name": "Downer", + "site_detail_url": "https://comicvine.gamespot.com/downer/4005-133682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133683/", + "id": 133683, + "name": "Lord High Librarian", + "site_detail_url": "https://comicvine.gamespot.com/lord-high-librarian/4005-133683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133684/", + "id": 133684, + "name": "Kalie Gocking", + "site_detail_url": "https://comicvine.gamespot.com/kalie-gocking/4005-133684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133714/", + "id": 133714, + "name": "Alice Michaels", + "site_detail_url": "https://comicvine.gamespot.com/alice-michaels/4005-133714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133715/", + "id": 133715, + "name": "Headmistress", + "site_detail_url": "https://comicvine.gamespot.com/headmistress/4005-133715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133740/", + "id": 133740, + "name": "Bu Jun", + "site_detail_url": "https://comicvine.gamespot.com/bu-jun/4005-133740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133806/", + "id": 133806, + "name": "Damian", + "site_detail_url": "https://comicvine.gamespot.com/damian/4005-133806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133807/", + "id": 133807, + "name": "The Painter", + "site_detail_url": "https://comicvine.gamespot.com/the-painter/4005-133807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133811/", + "id": 133811, + "name": "Aiden Blain", + "site_detail_url": "https://comicvine.gamespot.com/aiden-blain/4005-133811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133818/", + "id": 133818, + "name": "Nick Dillman", + "site_detail_url": "https://comicvine.gamespot.com/nick-dillman/4005-133818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133819/", + "id": 133819, + "name": "Ronald Wilcox", + "site_detail_url": "https://comicvine.gamespot.com/ronald-wilcox/4005-133819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133837/", + "id": 133837, + "name": "Father Lantom", + "site_detail_url": "https://comicvine.gamespot.com/father-lantom/4005-133837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133865/", + "id": 133865, + "name": "Jude", + "site_detail_url": "https://comicvine.gamespot.com/jude/4005-133865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133904/", + "id": 133904, + "name": "Q'uvin the Malevolent", + "site_detail_url": "https://comicvine.gamespot.com/quvin-the-malevolent/4005-133904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133905/", + "id": 133905, + "name": "The Dread", + "site_detail_url": "https://comicvine.gamespot.com/the-dread/4005-133905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133906/", + "id": 133906, + "name": "Keith Augustin", + "site_detail_url": "https://comicvine.gamespot.com/keith-augustin/4005-133906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133907/", + "id": 133907, + "name": "The Brute", + "site_detail_url": "https://comicvine.gamespot.com/the-brute/4005-133907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133910/", + "id": 133910, + "name": "The World-Eater", + "site_detail_url": "https://comicvine.gamespot.com/the-world-eater/4005-133910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133911/", + "id": 133911, + "name": "Dottie Underwood", + "site_detail_url": "https://comicvine.gamespot.com/dottie-underwood/4005-133911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133912/", + "id": 133912, + "name": "Angie Martinelli", + "site_detail_url": "https://comicvine.gamespot.com/angie-martinelli/4005-133912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133913/", + "id": 133913, + "name": "Jack Thompson", + "site_detail_url": "https://comicvine.gamespot.com/jack-thompson/4005-133913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133914/", + "id": 133914, + "name": "Daniel Sousa", + "site_detail_url": "https://comicvine.gamespot.com/daniel-sousa/4005-133914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133915/", + "id": 133915, + "name": "Roger Dooley", + "site_detail_url": "https://comicvine.gamespot.com/roger-dooley/4005-133915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133916/", + "id": 133916, + "name": "Jiaying", + "site_detail_url": "https://comicvine.gamespot.com/jiaying/4005-133916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133918/", + "id": 133918, + "name": "Antoine Triplett", + "site_detail_url": "https://comicvine.gamespot.com/antoine-triplett/4005-133918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133919/", + "id": 133919, + "name": "Suralinda Javos", + "site_detail_url": "https://comicvine.gamespot.com/suralinda-javos/4005-133919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133921/", + "id": 133921, + "name": "Itsy Bitsy", + "site_detail_url": "https://comicvine.gamespot.com/itsy-bitsy/4005-133921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133958/", + "id": 133958, + "name": "Kushala", + "site_detail_url": "https://comicvine.gamespot.com/kushala/4005-133958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133959/", + "id": 133959, + "name": "Nina the Conjuror", + "site_detail_url": "https://comicvine.gamespot.com/nina-the-conjuror/4005-133959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133960/", + "id": 133960, + "name": "Mindful One", + "site_detail_url": "https://comicvine.gamespot.com/mindful-one/4005-133960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133966/", + "id": 133966, + "name": "Zoe", + "site_detail_url": "https://comicvine.gamespot.com/zoe/4005-133966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133967/", + "id": 133967, + "name": "Lina", + "site_detail_url": "https://comicvine.gamespot.com/lina/4005-133967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133968/", + "id": 133968, + "name": "Ari", + "site_detail_url": "https://comicvine.gamespot.com/ari/4005-133968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133969/", + "id": 133969, + "name": "Jin", + "site_detail_url": "https://comicvine.gamespot.com/jin/4005-133969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133992/", + "id": 133992, + "name": "Man Mountain McCoy", + "site_detail_url": "https://comicvine.gamespot.com/man-mountain-mccoy/4005-133992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133994/", + "id": 133994, + "name": "Multo", + "site_detail_url": "https://comicvine.gamespot.com/multo/4005-133994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133995/", + "id": 133995, + "name": "Toz", + "site_detail_url": "https://comicvine.gamespot.com/toz/4005-133995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-133996/", + "id": 133996, + "name": "Xarggu", + "site_detail_url": "https://comicvine.gamespot.com/xarggu/4005-133996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134043/", + "id": 134043, + "name": "Red Dagger", + "site_detail_url": "https://comicvine.gamespot.com/red-dagger/4005-134043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134044/", + "id": 134044, + "name": "Sharon", + "site_detail_url": "https://comicvine.gamespot.com/sharon/4005-134044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134045/", + "id": 134045, + "name": "Slippery Sam", + "site_detail_url": "https://comicvine.gamespot.com/slippery-sam/4005-134045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134081/", + "id": 134081, + "name": "Sebastian Fenhoff", + "site_detail_url": "https://comicvine.gamespot.com/sebastian-fenhoff/4005-134081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134149/", + "id": 134149, + "name": "Young Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/young-red-skull/4005-134149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134154/", + "id": 134154, + "name": "Granny Fireheart", + "site_detail_url": "https://comicvine.gamespot.com/granny-fireheart/4005-134154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134173/", + "id": 134173, + "name": "Eramis", + "site_detail_url": "https://comicvine.gamespot.com/eramis/4005-134173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134174/", + "id": 134174, + "name": "Akpaxa", + "site_detail_url": "https://comicvine.gamespot.com/akpaxa/4005-134174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134175/", + "id": 134175, + "name": "Pannix", + "site_detail_url": "https://comicvine.gamespot.com/pannix/4005-134175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134176/", + "id": 134176, + "name": "Dasha Koralov", + "site_detail_url": "https://comicvine.gamespot.com/dasha-koralov/4005-134176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134177/", + "id": 134177, + "name": "Rebecca Clyde", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-clyde/4005-134177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134178/", + "id": 134178, + "name": "Olivia Gocking", + "site_detail_url": "https://comicvine.gamespot.com/olivia-gocking/4005-134178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134180/", + "id": 134180, + "name": "Ms. Beachum", + "site_detail_url": "https://comicvine.gamespot.com/ms-beachum/4005-134180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134236/", + "id": 134236, + "name": "Tom Dixon", + "site_detail_url": "https://comicvine.gamespot.com/tom-dixon/4005-134236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134238/", + "id": 134238, + "name": "Bulldozer", + "site_detail_url": "https://comicvine.gamespot.com/bulldozer/4005-134238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134271/", + "id": 134271, + "name": "Serpent Supreme", + "site_detail_url": "https://comicvine.gamespot.com/serpent-supreme/4005-134271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134290/", + "id": 134290, + "name": "Rita Clarkson", + "site_detail_url": "https://comicvine.gamespot.com/rita-clarkson/4005-134290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134370/", + "id": 134370, + "name": "Bryan Horowitz", + "site_detail_url": "https://comicvine.gamespot.com/bryan-horowitz/4005-134370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134388/", + "id": 134388, + "name": "Coldwar", + "site_detail_url": "https://comicvine.gamespot.com/coldwar/4005-134388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134389/", + "id": 134389, + "name": "Guzz", + "site_detail_url": "https://comicvine.gamespot.com/guzz/4005-134389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134447/", + "id": 134447, + "name": "She-Rick", + "site_detail_url": "https://comicvine.gamespot.com/she-rick/4005-134447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134452/", + "id": 134452, + "name": "Jack", + "site_detail_url": "https://comicvine.gamespot.com/jack/4005-134452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134453/", + "id": 134453, + "name": "Commissar of Sin-Cong", + "site_detail_url": "https://comicvine.gamespot.com/commissar-of-sin-cong/4005-134453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134454/", + "id": 134454, + "name": "Hoy", + "site_detail_url": "https://comicvine.gamespot.com/hoy/4005-134454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134455/", + "id": 134455, + "name": "Yao Wu", + "site_detail_url": "https://comicvine.gamespot.com/yao-wu/4005-134455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134463/", + "id": 134463, + "name": "Sophie Brownlee", + "site_detail_url": "https://comicvine.gamespot.com/sophie-brownlee/4005-134463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134475/", + "id": 134475, + "name": "Piers", + "site_detail_url": "https://comicvine.gamespot.com/piers/4005-134475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134478/", + "id": 134478, + "name": "Norman Daniels", + "site_detail_url": "https://comicvine.gamespot.com/norman-daniels/4005-134478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134479/", + "id": 134479, + "name": "Quothar", + "site_detail_url": "https://comicvine.gamespot.com/quothar/4005-134479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134532/", + "id": 134532, + "name": "Vera", + "site_detail_url": "https://comicvine.gamespot.com/vera/4005-134532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134541/", + "id": 134541, + "name": "Danielle", + "site_detail_url": "https://comicvine.gamespot.com/danielle/4005-134541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134546/", + "id": 134546, + "name": "Ax-L", + "site_detail_url": "https://comicvine.gamespot.com/ax-l/4005-134546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134555/", + "id": 134555, + "name": "Bro-Man", + "site_detail_url": "https://comicvine.gamespot.com/bro-man/4005-134555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134558/", + "id": 134558, + "name": "Hans von Reichardt", + "site_detail_url": "https://comicvine.gamespot.com/hans-von-reichardt/4005-134558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134569/", + "id": 134569, + "name": "Vincent Doonan", + "site_detail_url": "https://comicvine.gamespot.com/vincent-doonan/4005-134569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134570/", + "id": 134570, + "name": "Lucky", + "site_detail_url": "https://comicvine.gamespot.com/lucky/4005-134570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134571/", + "id": 134571, + "name": "Amy", + "site_detail_url": "https://comicvine.gamespot.com/amy/4005-134571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134575/", + "id": 134575, + "name": "Agent Stokes", + "site_detail_url": "https://comicvine.gamespot.com/agent-stokes/4005-134575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134576/", + "id": 134576, + "name": "Ansel Bogosian", + "site_detail_url": "https://comicvine.gamespot.com/ansel-bogosian/4005-134576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134577/", + "id": 134577, + "name": "Catita", + "site_detail_url": "https://comicvine.gamespot.com/catita/4005-134577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134578/", + "id": 134578, + "name": "Agent Aguilla", + "site_detail_url": "https://comicvine.gamespot.com/agent-aguilla/4005-134578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134579/", + "id": 134579, + "name": "Agent Payne", + "site_detail_url": "https://comicvine.gamespot.com/agent-payne/4005-134579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134586/", + "id": 134586, + "name": "Emma Salteres", + "site_detail_url": "https://comicvine.gamespot.com/emma-salteres/4005-134586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134587/", + "id": 134587, + "name": "Jerry Salteres", + "site_detail_url": "https://comicvine.gamespot.com/jerry-salteres/4005-134587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134588/", + "id": 134588, + "name": "Leo Salteres", + "site_detail_url": "https://comicvine.gamespot.com/leo-salteres/4005-134588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134590/", + "id": 134590, + "name": "Keeper of the Great Truth", + "site_detail_url": "https://comicvine.gamespot.com/keeper-of-the-great-truth/4005-134590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134600/", + "id": 134600, + "name": "Repairman", + "site_detail_url": "https://comicvine.gamespot.com/repairman/4005-134600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134602/", + "id": 134602, + "name": "Albert Moon, Sr.", + "site_detail_url": "https://comicvine.gamespot.com/albert-moon-sr/4005-134602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134603/", + "id": 134603, + "name": "Nari Moon", + "site_detail_url": "https://comicvine.gamespot.com/nari-moon/4005-134603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134604/", + "id": 134604, + "name": "Albert Moon, Jr.", + "site_detail_url": "https://comicvine.gamespot.com/albert-moon-jr/4005-134604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134605/", + "id": 134605, + "name": "Marie Porter", + "site_detail_url": "https://comicvine.gamespot.com/marie-porter/4005-134605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134615/", + "id": 134615, + "name": "Lyla Bray", + "site_detail_url": "https://comicvine.gamespot.com/lyla-bray/4005-134615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134616/", + "id": 134616, + "name": "Bert Puig", + "site_detail_url": "https://comicvine.gamespot.com/bert-puig/4005-134616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134617/", + "id": 134617, + "name": "The Blue Man", + "site_detail_url": "https://comicvine.gamespot.com/the-blue-man/4005-134617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134618/", + "id": 134618, + "name": "Sheriff", + "site_detail_url": "https://comicvine.gamespot.com/sheriff/4005-134618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134619/", + "id": 134619, + "name": "Carson Dowling", + "site_detail_url": "https://comicvine.gamespot.com/carson-dowling/4005-134619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134620/", + "id": 134620, + "name": "Jason", + "site_detail_url": "https://comicvine.gamespot.com/jason/4005-134620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134629/", + "id": 134629, + "name": "Larnyk Volgrotten", + "site_detail_url": "https://comicvine.gamespot.com/larnyk-volgrotten/4005-134629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134674/", + "id": 134674, + "name": "David Wilcox", + "site_detail_url": "https://comicvine.gamespot.com/david-wilcox/4005-134674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134675/", + "id": 134675, + "name": "Fang", + "site_detail_url": "https://comicvine.gamespot.com/fang/4005-134675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134693/", + "id": 134693, + "name": "Pierre", + "site_detail_url": "https://comicvine.gamespot.com/pierre/4005-134693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134694/", + "id": 134694, + "name": "Chip", + "site_detail_url": "https://comicvine.gamespot.com/chip/4005-134694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134695/", + "id": 134695, + "name": "Fritz", + "site_detail_url": "https://comicvine.gamespot.com/fritz/4005-134695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134696/", + "id": 134696, + "name": "Agnes", + "site_detail_url": "https://comicvine.gamespot.com/agnes/4005-134696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134697/", + "id": 134697, + "name": "Alfred", + "site_detail_url": "https://comicvine.gamespot.com/alfred/4005-134697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134698/", + "id": 134698, + "name": "Jose", + "site_detail_url": "https://comicvine.gamespot.com/jose/4005-134698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134699/", + "id": 134699, + "name": "Phader", + "site_detail_url": "https://comicvine.gamespot.com/phader/4005-134699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134700/", + "id": 134700, + "name": "Fastskin", + "site_detail_url": "https://comicvine.gamespot.com/fastskin/4005-134700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134701/", + "id": 134701, + "name": "Openmind", + "site_detail_url": "https://comicvine.gamespot.com/openmind/4005-134701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134702/", + "id": 134702, + "name": "Hardside", + "site_detail_url": "https://comicvine.gamespot.com/hardside/4005-134702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134703/", + "id": 134703, + "name": "Sharpwing", + "site_detail_url": "https://comicvine.gamespot.com/sharpwing/4005-134703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134712/", + "id": 134712, + "name": "Ro Bloodroot", + "site_detail_url": "https://comicvine.gamespot.com/ro-bloodroot/4005-134712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134713/", + "id": 134713, + "name": "Titanya Vaetilda Vinnsuvius", + "site_detail_url": "https://comicvine.gamespot.com/titanya-vaetilda-vinnsuvius/4005-134713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134714/", + "id": 134714, + "name": "Lee Price", + "site_detail_url": "https://comicvine.gamespot.com/lee-price/4005-134714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134724/", + "id": 134724, + "name": "Kuthulos", + "site_detail_url": "https://comicvine.gamespot.com/kuthulos/4005-134724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134725/", + "id": 134725, + "name": "Tu", + "site_detail_url": "https://comicvine.gamespot.com/tu/4005-134725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134735/", + "id": 134735, + "name": "Jody Casper", + "site_detail_url": "https://comicvine.gamespot.com/jody-casper/4005-134735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134766/", + "id": 134766, + "name": "Tanir", + "site_detail_url": "https://comicvine.gamespot.com/tanir/4005-134766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134767/", + "id": 134767, + "name": "Ak", + "site_detail_url": "https://comicvine.gamespot.com/ak/4005-134767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134768/", + "id": 134768, + "name": "Rhaya", + "site_detail_url": "https://comicvine.gamespot.com/rhaya/4005-134768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134769/", + "id": 134769, + "name": "Phadion", + "site_detail_url": "https://comicvine.gamespot.com/phadion/4005-134769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134860/", + "id": 134860, + "name": "Pash Davane", + "site_detail_url": "https://comicvine.gamespot.com/pash-davane/4005-134860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134884/", + "id": 134884, + "name": "Pyston Nitro", + "site_detail_url": "https://comicvine.gamespot.com/pyston-nitro/4005-134884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134893/", + "id": 134893, + "name": "Hindsight", + "site_detail_url": "https://comicvine.gamespot.com/hindsight/4005-134893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134907/", + "id": 134907, + "name": "Kid Kaiju", + "site_detail_url": "https://comicvine.gamespot.com/kid-kaiju/4005-134907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134908/", + "id": 134908, + "name": "Count Griffon Walters", + "site_detail_url": "https://comicvine.gamespot.com/count-griffon-walters/4005-134908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134909/", + "id": 134909, + "name": "Kayla Kurasawa", + "site_detail_url": "https://comicvine.gamespot.com/kayla-kurasawa/4005-134909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134910/", + "id": 134910, + "name": "Alexis Miranda", + "site_detail_url": "https://comicvine.gamespot.com/alexis-miranda/4005-134910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134911/", + "id": 134911, + "name": "Jasmine", + "site_detail_url": "https://comicvine.gamespot.com/jasmine/4005-134911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134966/", + "id": 134966, + "name": "Koala Kommander", + "site_detail_url": "https://comicvine.gamespot.com/koala-kommander/4005-134966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134988/", + "id": 134988, + "name": "The Guardian", + "site_detail_url": "https://comicvine.gamespot.com/the-guardian/4005-134988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-134997/", + "id": 134997, + "name": "Jack Casey", + "site_detail_url": "https://comicvine.gamespot.com/jack-casey/4005-134997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135043/", + "id": 135043, + "name": "Mercury", + "site_detail_url": "https://comicvine.gamespot.com/mercury/4005-135043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135058/", + "id": 135058, + "name": "Stanley Swickle", + "site_detail_url": "https://comicvine.gamespot.com/stanley-swickle/4005-135058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135070/", + "id": 135070, + "name": "Kamil Novoty", + "site_detail_url": "https://comicvine.gamespot.com/kamil-novoty/4005-135070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135071/", + "id": 135071, + "name": "Alois Denz", + "site_detail_url": "https://comicvine.gamespot.com/alois-denz/4005-135071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135080/", + "id": 135080, + "name": "Teresa Rigotti", + "site_detail_url": "https://comicvine.gamespot.com/teresa-rigotti/4005-135080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135081/", + "id": 135081, + "name": "Isabel Cabrera", + "site_detail_url": "https://comicvine.gamespot.com/isabel-cabrera/4005-135081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135096/", + "id": 135096, + "name": "Rochester", + "site_detail_url": "https://comicvine.gamespot.com/rochester/4005-135096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135117/", + "id": 135117, + "name": "Leo", + "site_detail_url": "https://comicvine.gamespot.com/leo/4005-135117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135118/", + "id": 135118, + "name": "Bear", + "site_detail_url": "https://comicvine.gamespot.com/bear/4005-135118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135119/", + "id": 135119, + "name": "Grayle Kenton", + "site_detail_url": "https://comicvine.gamespot.com/grayle-kenton/4005-135119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135135/", + "id": 135135, + "name": "Zola", + "site_detail_url": "https://comicvine.gamespot.com/zola/4005-135135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135136/", + "id": 135136, + "name": "Folami", + "site_detail_url": "https://comicvine.gamespot.com/folami/4005-135136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135138/", + "id": 135138, + "name": "Alhambra", + "site_detail_url": "https://comicvine.gamespot.com/alhambra/4005-135138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135151/", + "id": 135151, + "name": "Jim Jay McMayhew", + "site_detail_url": "https://comicvine.gamespot.com/jim-jay-mcmayhew/4005-135151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135164/", + "id": 135164, + "name": "Jared Price", + "site_detail_url": "https://comicvine.gamespot.com/jared-price/4005-135164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135180/", + "id": 135180, + "name": "#$%& King", + "site_detail_url": "https://comicvine.gamespot.com/king/4005-135180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135229/", + "id": 135229, + "name": "Prentice Mangrove", + "site_detail_url": "https://comicvine.gamespot.com/prentice-mangrove/4005-135229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135230/", + "id": 135230, + "name": "Lucretia Fusilli", + "site_detail_url": "https://comicvine.gamespot.com/lucretia-fusilli/4005-135230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135231/", + "id": 135231, + "name": "Livio Fusilli", + "site_detail_url": "https://comicvine.gamespot.com/livio-fusilli/4005-135231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135238/", + "id": 135238, + "name": "Josue Flores", + "site_detail_url": "https://comicvine.gamespot.com/josue-flores/4005-135238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135239/", + "id": 135239, + "name": "Juanita Flores", + "site_detail_url": "https://comicvine.gamespot.com/juanita-flores/4005-135239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135240/", + "id": 135240, + "name": "Kai Bowen", + "site_detail_url": "https://comicvine.gamespot.com/kai-bowen/4005-135240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135241/", + "id": 135241, + "name": "Julia", + "site_detail_url": "https://comicvine.gamespot.com/julia/4005-135241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135242/", + "id": 135242, + "name": "Erik Gorbo", + "site_detail_url": "https://comicvine.gamespot.com/erik-gorbo/4005-135242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135257/", + "id": 135257, + "name": "Frank Fireheart", + "site_detail_url": "https://comicvine.gamespot.com/frank-fireheart/4005-135257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135258/", + "id": 135258, + "name": "Silas Fireheart", + "site_detail_url": "https://comicvine.gamespot.com/silas-fireheart/4005-135258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135260/", + "id": 135260, + "name": "Jumbonox the Giganormous", + "site_detail_url": "https://comicvine.gamespot.com/jumbonox-the-giganormous/4005-135260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135262/", + "id": 135262, + "name": "Brother Lepain", + "site_detail_url": "https://comicvine.gamespot.com/brother-lepain/4005-135262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135263/", + "id": 135263, + "name": "Low Priest Igneous", + "site_detail_url": "https://comicvine.gamespot.com/low-priest-igneous/4005-135263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135264/", + "id": 135264, + "name": "Sister Pale Horse", + "site_detail_url": "https://comicvine.gamespot.com/sister-pale-horse/4005-135264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135265/", + "id": 135265, + "name": "Klaxon", + "site_detail_url": "https://comicvine.gamespot.com/klaxon/4005-135265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135306/", + "id": 135306, + "name": "Neon Dragon", + "site_detail_url": "https://comicvine.gamespot.com/neon-dragon/4005-135306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135307/", + "id": 135307, + "name": "Min Wei", + "site_detail_url": "https://comicvine.gamespot.com/min-wei/4005-135307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135308/", + "id": 135308, + "name": "Mateo Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/mateo-rodriguez/4005-135308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135309/", + "id": 135309, + "name": "Veronica Diaz", + "site_detail_url": "https://comicvine.gamespot.com/veronica-diaz/4005-135309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135320/", + "id": 135320, + "name": "Manimator", + "site_detail_url": "https://comicvine.gamespot.com/manimator/4005-135320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135334/", + "id": 135334, + "name": "Penelope Randy", + "site_detail_url": "https://comicvine.gamespot.com/penelope-randy/4005-135334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135335/", + "id": 135335, + "name": "Wally", + "site_detail_url": "https://comicvine.gamespot.com/wally/4005-135335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135336/", + "id": 135336, + "name": "Nain Rouge", + "site_detail_url": "https://comicvine.gamespot.com/nain-rouge/4005-135336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135347/", + "id": 135347, + "name": "Chuck Worthy", + "site_detail_url": "https://comicvine.gamespot.com/chuck-worthy/4005-135347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135348/", + "id": 135348, + "name": "Gabe Hillman", + "site_detail_url": "https://comicvine.gamespot.com/gabe-hillman/4005-135348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135379/", + "id": 135379, + "name": "Christian Sung", + "site_detail_url": "https://comicvine.gamespot.com/christian-sung/4005-135379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135451/", + "id": 135451, + "name": "Maise Brewn", + "site_detail_url": "https://comicvine.gamespot.com/maise-brewn/4005-135451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135570/", + "id": 135570, + "name": "Andvari", + "site_detail_url": "https://comicvine.gamespot.com/andvari/4005-135570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135571/", + "id": 135571, + "name": "Roger Braxfield", + "site_detail_url": "https://comicvine.gamespot.com/roger-braxfield/4005-135571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135572/", + "id": 135572, + "name": "Margo Morse", + "site_detail_url": "https://comicvine.gamespot.com/margo-morse/4005-135572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135586/", + "id": 135586, + "name": "Maxwell Cholmondeley-Wells", + "site_detail_url": "https://comicvine.gamespot.com/maxwell-cholmondeley-wells/4005-135586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135588/", + "id": 135588, + "name": "Moloka Dar", + "site_detail_url": "https://comicvine.gamespot.com/moloka-dar/4005-135588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135609/", + "id": 135609, + "name": "Dorian Green", + "site_detail_url": "https://comicvine.gamespot.com/dorian-green/4005-135609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135663/", + "id": 135663, + "name": "Holden Radcliffe", + "site_detail_url": "https://comicvine.gamespot.com/holden-radcliffe/4005-135663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135702/", + "id": 135702, + "name": "Shirley", + "site_detail_url": "https://comicvine.gamespot.com/shirley/4005-135702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135752/", + "id": 135752, + "name": "Sasha", + "site_detail_url": "https://comicvine.gamespot.com/sasha/4005-135752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135756/", + "id": 135756, + "name": "Cressida", + "site_detail_url": "https://comicvine.gamespot.com/cressida/4005-135756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135802/", + "id": 135802, + "name": "Kruul", + "site_detail_url": "https://comicvine.gamespot.com/kruul/4005-135802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135843/", + "id": 135843, + "name": "Mrs. Schaefer", + "site_detail_url": "https://comicvine.gamespot.com/mrs-schaefer/4005-135843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135848/", + "id": 135848, + "name": "Brad Costello", + "site_detail_url": "https://comicvine.gamespot.com/brad-costello/4005-135848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135849/", + "id": 135849, + "name": "Beto", + "site_detail_url": "https://comicvine.gamespot.com/beto/4005-135849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135850/", + "id": 135850, + "name": "Fife", + "site_detail_url": "https://comicvine.gamespot.com/fife/4005-135850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135851/", + "id": 135851, + "name": "Candilisa Chang", + "site_detail_url": "https://comicvine.gamespot.com/candilisa-chang/4005-135851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135852/", + "id": 135852, + "name": "Tia Fitzgerald", + "site_detail_url": "https://comicvine.gamespot.com/tia-fitzgerald/4005-135852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135853/", + "id": 135853, + "name": "Mason Sackett", + "site_detail_url": "https://comicvine.gamespot.com/mason-sackett/4005-135853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135854/", + "id": 135854, + "name": "Kenneth Gunning", + "site_detail_url": "https://comicvine.gamespot.com/kenneth-gunning/4005-135854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135857/", + "id": 135857, + "name": "Crystal", + "site_detail_url": "https://comicvine.gamespot.com/crystal/4005-135857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135860/", + "id": 135860, + "name": "Grand Inquisitor", + "site_detail_url": "https://comicvine.gamespot.com/grand-inquisitor/4005-135860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135861/", + "id": 135861, + "name": "Agent Kallus", + "site_detail_url": "https://comicvine.gamespot.com/agent-kallus/4005-135861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135867/", + "id": 135867, + "name": "Mirka", + "site_detail_url": "https://comicvine.gamespot.com/mirka/4005-135867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135912/", + "id": 135912, + "name": "Melanie Hawkins", + "site_detail_url": "https://comicvine.gamespot.com/melanie-hawkins/4005-135912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135966/", + "id": 135966, + "name": "Meetra Surik", + "site_detail_url": "https://comicvine.gamespot.com/meetra-surik/4005-135966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135983/", + "id": 135983, + "name": "Justicia", + "site_detail_url": "https://comicvine.gamespot.com/justicia/4005-135983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135988/", + "id": 135988, + "name": "Klax", + "site_detail_url": "https://comicvine.gamespot.com/klax/4005-135988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135989/", + "id": 135989, + "name": "Nujin", + "site_detail_url": "https://comicvine.gamespot.com/nujin/4005-135989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-135990/", + "id": 135990, + "name": "Bakin", + "site_detail_url": "https://comicvine.gamespot.com/bakin/4005-135990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136056/", + "id": 136056, + "name": "Maxilin The Accuser", + "site_detail_url": "https://comicvine.gamespot.com/maxilin-the-accuser/4005-136056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136058/", + "id": 136058, + "name": "Agent Anders", + "site_detail_url": "https://comicvine.gamespot.com/agent-anders/4005-136058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136062/", + "id": 136062, + "name": "Taina Miranda", + "site_detail_url": "https://comicvine.gamespot.com/taina-miranda/4005-136062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136104/", + "id": 136104, + "name": "Creature from the Black Bog", + "site_detail_url": "https://comicvine.gamespot.com/creature-from-the-black-bog/4005-136104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136112/", + "id": 136112, + "name": "Nailah", + "site_detail_url": "https://comicvine.gamespot.com/nailah/4005-136112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136113/", + "id": 136113, + "name": "Onyeka", + "site_detail_url": "https://comicvine.gamespot.com/onyeka/4005-136113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136117/", + "id": 136117, + "name": "Webber", + "site_detail_url": "https://comicvine.gamespot.com/webber/4005-136117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136118/", + "id": 136118, + "name": "Glider", + "site_detail_url": "https://comicvine.gamespot.com/glider/4005-136118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136119/", + "id": 136119, + "name": "Legal Eagle", + "site_detail_url": "https://comicvine.gamespot.com/legal-eagle/4005-136119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136120/", + "id": 136120, + "name": "Larcenous Lil", + "site_detail_url": "https://comicvine.gamespot.com/larcenous-lil/4005-136120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136121/", + "id": 136121, + "name": "Burke", + "site_detail_url": "https://comicvine.gamespot.com/burke/4005-136121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136122/", + "id": 136122, + "name": "Kroeger", + "site_detail_url": "https://comicvine.gamespot.com/kroeger/4005-136122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136123/", + "id": 136123, + "name": "Stylles", + "site_detail_url": "https://comicvine.gamespot.com/stylles/4005-136123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136124/", + "id": 136124, + "name": "Whale", + "site_detail_url": "https://comicvine.gamespot.com/whale/4005-136124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136125/", + "id": 136125, + "name": "Big", + "site_detail_url": "https://comicvine.gamespot.com/big/4005-136125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136126/", + "id": 136126, + "name": "Vex", + "site_detail_url": "https://comicvine.gamespot.com/vex/4005-136126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136127/", + "id": 136127, + "name": "Blood Shadow", + "site_detail_url": "https://comicvine.gamespot.com/blood-shadow/4005-136127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136132/", + "id": 136132, + "name": "Home Wrecker", + "site_detail_url": "https://comicvine.gamespot.com/home-wrecker/4005-136132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136134/", + "id": 136134, + "name": "Demolition Derby", + "site_detail_url": "https://comicvine.gamespot.com/demolition-derby/4005-136134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136135/", + "id": 136135, + "name": "Human Computer", + "site_detail_url": "https://comicvine.gamespot.com/human-computer/4005-136135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136136/", + "id": 136136, + "name": "Photoman", + "site_detail_url": "https://comicvine.gamespot.com/photoman/4005-136136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136137/", + "id": 136137, + "name": "Chairman", + "site_detail_url": "https://comicvine.gamespot.com/chairman/4005-136137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136138/", + "id": 136138, + "name": "Hotshot", + "site_detail_url": "https://comicvine.gamespot.com/hotshot/4005-136138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136139/", + "id": 136139, + "name": "Amazing Fantasy Boy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-boy/4005-136139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136140/", + "id": 136140, + "name": "April Fool", + "site_detail_url": "https://comicvine.gamespot.com/april-fool/4005-136140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136141/", + "id": 136141, + "name": "Ambrose Carpathian", + "site_detail_url": "https://comicvine.gamespot.com/ambrose-carpathian/4005-136141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136142/", + "id": 136142, + "name": "Andrew Carpathian", + "site_detail_url": "https://comicvine.gamespot.com/andrew-carpathian/4005-136142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136143/", + "id": 136143, + "name": "Malekyth", + "site_detail_url": "https://comicvine.gamespot.com/malekyth/4005-136143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136144/", + "id": 136144, + "name": "Blare", + "site_detail_url": "https://comicvine.gamespot.com/blare/4005-136144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136152/", + "id": 136152, + "name": "Moon Wolf", + "site_detail_url": "https://comicvine.gamespot.com/moon-wolf/4005-136152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136153/", + "id": 136153, + "name": "Chulyen", + "site_detail_url": "https://comicvine.gamespot.com/chulyen/4005-136153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136154/", + "id": 136154, + "name": "X-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-man/4005-136154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136155/", + "id": 136155, + "name": "Trout", + "site_detail_url": "https://comicvine.gamespot.com/trout/4005-136155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136156/", + "id": 136156, + "name": "Spider-Hybrid", + "site_detail_url": "https://comicvine.gamespot.com/spider-hybrid/4005-136156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136157/", + "id": 136157, + "name": "Troglodyte", + "site_detail_url": "https://comicvine.gamespot.com/troglodyte/4005-136157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136162/", + "id": 136162, + "name": "Alloy", + "site_detail_url": "https://comicvine.gamespot.com/alloy/4005-136162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136163/", + "id": 136163, + "name": "Mikka", + "site_detail_url": "https://comicvine.gamespot.com/mikka/4005-136163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136164/", + "id": 136164, + "name": "Quinn", + "site_detail_url": "https://comicvine.gamespot.com/quinn/4005-136164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136165/", + "id": 136165, + "name": "Larry Gort", + "site_detail_url": "https://comicvine.gamespot.com/larry-gort/4005-136165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136166/", + "id": 136166, + "name": "Detective Rivera", + "site_detail_url": "https://comicvine.gamespot.com/detective-rivera/4005-136166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136167/", + "id": 136167, + "name": "Fuse", + "site_detail_url": "https://comicvine.gamespot.com/fuse/4005-136167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136185/", + "id": 136185, + "name": "Proteus", + "site_detail_url": "https://comicvine.gamespot.com/proteus/4005-136185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136192/", + "id": 136192, + "name": "Charlie Buchanan", + "site_detail_url": "https://comicvine.gamespot.com/charlie-buchanan/4005-136192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136200/", + "id": 136200, + "name": "Sarah Dewey", + "site_detail_url": "https://comicvine.gamespot.com/sarah-dewey/4005-136200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136201/", + "id": 136201, + "name": "Jeffrey Gunderblank", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-gunderblank/4005-136201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136202/", + "id": 136202, + "name": "Blargon", + "site_detail_url": "https://comicvine.gamespot.com/blargon/4005-136202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136203/", + "id": 136203, + "name": "Phalkan", + "site_detail_url": "https://comicvine.gamespot.com/phalkan/4005-136203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136236/", + "id": 136236, + "name": "Agent 22", + "site_detail_url": "https://comicvine.gamespot.com/agent-22/4005-136236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136248/", + "id": 136248, + "name": "L'Wit", + "site_detail_url": "https://comicvine.gamespot.com/lwit/4005-136248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136252/", + "id": 136252, + "name": "Cora", + "site_detail_url": "https://comicvine.gamespot.com/cora/4005-136252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136256/", + "id": 136256, + "name": "Serik Von", + "site_detail_url": "https://comicvine.gamespot.com/serik-von/4005-136256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136259/", + "id": 136259, + "name": "Stalker", + "site_detail_url": "https://comicvine.gamespot.com/stalker/4005-136259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136262/", + "id": 136262, + "name": "Sharra", + "site_detail_url": "https://comicvine.gamespot.com/sharra/4005-136262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136269/", + "id": 136269, + "name": "Ramrod", + "site_detail_url": "https://comicvine.gamespot.com/ramrod/4005-136269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136272/", + "id": 136272, + "name": "Skyline Killer", + "site_detail_url": "https://comicvine.gamespot.com/skyline-killer/4005-136272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136294/", + "id": 136294, + "name": "Rebecca Cross", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-cross/4005-136294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136295/", + "id": 136295, + "name": "Tulon Voidgazer", + "site_detail_url": "https://comicvine.gamespot.com/tulon-voidgazer/4005-136295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136296/", + "id": 136296, + "name": "Donna Castle", + "site_detail_url": "https://comicvine.gamespot.com/donna-castle/4005-136296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136311/", + "id": 136311, + "name": "Mary-Louise Snoffer", + "site_detail_url": "https://comicvine.gamespot.com/mary-louise-snoffer/4005-136311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136312/", + "id": 136312, + "name": "Terrier", + "site_detail_url": "https://comicvine.gamespot.com/terrier/4005-136312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136313/", + "id": 136313, + "name": "Angelica Roeg", + "site_detail_url": "https://comicvine.gamespot.com/angelica-roeg/4005-136313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136327/", + "id": 136327, + "name": "Synario", + "site_detail_url": "https://comicvine.gamespot.com/synario/4005-136327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136424/", + "id": 136424, + "name": "Ramón Cordova", + "site_detail_url": "https://comicvine.gamespot.com/ramon-cordova/4005-136424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136450/", + "id": 136450, + "name": "Ahmed", + "site_detail_url": "https://comicvine.gamespot.com/ahmed/4005-136450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136451/", + "id": 136451, + "name": "Boaz Eshelmen", + "site_detail_url": "https://comicvine.gamespot.com/boaz-eshelmen/4005-136451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136495/", + "id": 136495, + "name": "Scavenger", + "site_detail_url": "https://comicvine.gamespot.com/scavenger/4005-136495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136498/", + "id": 136498, + "name": "Ariella Conner", + "site_detail_url": "https://comicvine.gamespot.com/ariella-conner/4005-136498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136517/", + "id": 136517, + "name": "Bonfrisco", + "site_detail_url": "https://comicvine.gamespot.com/bonfrisco/4005-136517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136519/", + "id": 136519, + "name": "The Blue Ear", + "site_detail_url": "https://comicvine.gamespot.com/the-blue-ear/4005-136519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136532/", + "id": 136532, + "name": "Keith Bayard", + "site_detail_url": "https://comicvine.gamespot.com/keith-bayard/4005-136532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136533/", + "id": 136533, + "name": "Father Jordan", + "site_detail_url": "https://comicvine.gamespot.com/father-jordan/4005-136533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136534/", + "id": 136534, + "name": "Zombie Marvel", + "site_detail_url": "https://comicvine.gamespot.com/zombie-marvel/4005-136534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136568/", + "id": 136568, + "name": "Cursed Cass", + "site_detail_url": "https://comicvine.gamespot.com/cursed-cass/4005-136568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136569/", + "id": 136569, + "name": "Panic", + "site_detail_url": "https://comicvine.gamespot.com/panic/4005-136569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136570/", + "id": 136570, + "name": "Might", + "site_detail_url": "https://comicvine.gamespot.com/might/4005-136570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136571/", + "id": 136571, + "name": "Crush", + "site_detail_url": "https://comicvine.gamespot.com/crush/4005-136571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136572/", + "id": 136572, + "name": "Hotness", + "site_detail_url": "https://comicvine.gamespot.com/hotness/4005-136572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136616/", + "id": 136616, + "name": "Jayson Jay", + "site_detail_url": "https://comicvine.gamespot.com/jayson-jay/4005-136616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136627/", + "id": 136627, + "name": "Dr. Nod", + "site_detail_url": "https://comicvine.gamespot.com/dr-nod/4005-136627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136704/", + "id": 136704, + "name": "Garro", + "site_detail_url": "https://comicvine.gamespot.com/garro/4005-136704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136729/", + "id": 136729, + "name": "Logos", + "site_detail_url": "https://comicvine.gamespot.com/logos/4005-136729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136730/", + "id": 136730, + "name": "Ulvar", + "site_detail_url": "https://comicvine.gamespot.com/ulvar/4005-136730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136731/", + "id": 136731, + "name": "Insect Man", + "site_detail_url": "https://comicvine.gamespot.com/insect-man/4005-136731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136732/", + "id": 136732, + "name": "Monstro", + "site_detail_url": "https://comicvine.gamespot.com/monstro/4005-136732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136733/", + "id": 136733, + "name": "The Thing that Crawled by Night", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-that-crawled-by-night/4005-136733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136734/", + "id": 136734, + "name": "Quogg", + "site_detail_url": "https://comicvine.gamespot.com/quogg/4005-136734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136740/", + "id": 136740, + "name": "Lashayla Smith", + "site_detail_url": "https://comicvine.gamespot.com/lashayla-smith/4005-136740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136741/", + "id": 136741, + "name": "Priya Aggarwal", + "site_detail_url": "https://comicvine.gamespot.com/priya-aggarwal/4005-136741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136783/", + "id": 136783, + "name": "Glass Girl", + "site_detail_url": "https://comicvine.gamespot.com/glass-girl/4005-136783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136822/", + "id": 136822, + "name": "Monan", + "site_detail_url": "https://comicvine.gamespot.com/monan/4005-136822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136851/", + "id": 136851, + "name": "Worta", + "site_detail_url": "https://comicvine.gamespot.com/worta/4005-136851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136852/", + "id": 136852, + "name": "Davey Drew", + "site_detail_url": "https://comicvine.gamespot.com/davey-drew/4005-136852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136860/", + "id": 136860, + "name": "Wilbur the Electromutant", + "site_detail_url": "https://comicvine.gamespot.com/wilbur-the-electromutant/4005-136860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136878/", + "id": 136878, + "name": "Garrison Busey", + "site_detail_url": "https://comicvine.gamespot.com/garrison-busey/4005-136878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136953/", + "id": 136953, + "name": "Adam Roderick", + "site_detail_url": "https://comicvine.gamespot.com/adam-roderick/4005-136953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136977/", + "id": 136977, + "name": "Firebug", + "site_detail_url": "https://comicvine.gamespot.com/firebug/4005-136977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136978/", + "id": 136978, + "name": "Agent Bagman", + "site_detail_url": "https://comicvine.gamespot.com/agent-bagman/4005-136978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-136979/", + "id": 136979, + "name": "Agent Wambaugh", + "site_detail_url": "https://comicvine.gamespot.com/agent-wambaugh/4005-136979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137146/", + "id": 137146, + "name": "Winston", + "site_detail_url": "https://comicvine.gamespot.com/winston/4005-137146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137147/", + "id": 137147, + "name": "Silent-But-Deadly", + "site_detail_url": "https://comicvine.gamespot.com/silent-but-deadly/4005-137147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137148/", + "id": 137148, + "name": "Doc Saint", + "site_detail_url": "https://comicvine.gamespot.com/doc-saint/4005-137148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137149/", + "id": 137149, + "name": "Fisticuffs", + "site_detail_url": "https://comicvine.gamespot.com/fisticuffs/4005-137149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137150/", + "id": 137150, + "name": "High Caliber", + "site_detail_url": "https://comicvine.gamespot.com/high-caliber/4005-137150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137151/", + "id": 137151, + "name": "Sarge", + "site_detail_url": "https://comicvine.gamespot.com/sarge/4005-137151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137152/", + "id": 137152, + "name": "Hardtack", + "site_detail_url": "https://comicvine.gamespot.com/hardtack/4005-137152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137153/", + "id": 137153, + "name": "Snowblind", + "site_detail_url": "https://comicvine.gamespot.com/snowblind/4005-137153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137154/", + "id": 137154, + "name": "Crimson", + "site_detail_url": "https://comicvine.gamespot.com/crimson/4005-137154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137155/", + "id": 137155, + "name": "Firehouse", + "site_detail_url": "https://comicvine.gamespot.com/firehouse/4005-137155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137156/", + "id": 137156, + "name": "Sopworth", + "site_detail_url": "https://comicvine.gamespot.com/sopworth/4005-137156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137158/", + "id": 137158, + "name": "Rex", + "site_detail_url": "https://comicvine.gamespot.com/rex/4005-137158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137159/", + "id": 137159, + "name": "Skratch Commander", + "site_detail_url": "https://comicvine.gamespot.com/skratch-commander/4005-137159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137160/", + "id": 137160, + "name": "Taurette", + "site_detail_url": "https://comicvine.gamespot.com/taurette/4005-137160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137162/", + "id": 137162, + "name": "Mrs. Harmon", + "site_detail_url": "https://comicvine.gamespot.com/mrs-harmon/4005-137162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137163/", + "id": 137163, + "name": "Lena Harmon", + "site_detail_url": "https://comicvine.gamespot.com/lena-harmon/4005-137163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137164/", + "id": 137164, + "name": "Portia Harmon", + "site_detail_url": "https://comicvine.gamespot.com/portia-harmon/4005-137164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137165/", + "id": 137165, + "name": "James Harmon", + "site_detail_url": "https://comicvine.gamespot.com/james-harmon/4005-137165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137166/", + "id": 137166, + "name": "Richard Harmon, Jr.", + "site_detail_url": "https://comicvine.gamespot.com/richard-harmon-jr/4005-137166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137167/", + "id": 137167, + "name": "Richard Harmon, Sr.", + "site_detail_url": "https://comicvine.gamespot.com/richard-harmon-sr/4005-137167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137219/", + "id": 137219, + "name": "Princess", + "site_detail_url": "https://comicvine.gamespot.com/princess/4005-137219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137220/", + "id": 137220, + "name": "Lay-Zee-Boyee", + "site_detail_url": "https://comicvine.gamespot.com/lay-zee-boyee/4005-137220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137221/", + "id": 137221, + "name": "Gorgonzola", + "site_detail_url": "https://comicvine.gamespot.com/gorgonzola/4005-137221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137283/", + "id": 137283, + "name": "Roscoe", + "site_detail_url": "https://comicvine.gamespot.com/roscoe/4005-137283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137448/", + "id": 137448, + "name": "Dr. Aurilius", + "site_detail_url": "https://comicvine.gamespot.com/dr-aurilius/4005-137448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137490/", + "id": 137490, + "name": "Cindy 65", + "site_detail_url": "https://comicvine.gamespot.com/cindy-65/4005-137490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137493/", + "id": 137493, + "name": "Camper van Helsing", + "site_detail_url": "https://comicvine.gamespot.com/camper-van-helsing/4005-137493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137494/", + "id": 137494, + "name": "Edmund Allen", + "site_detail_url": "https://comicvine.gamespot.com/edmund-allen/4005-137494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137495/", + "id": 137495, + "name": "Ronnie", + "site_detail_url": "https://comicvine.gamespot.com/ronnie/4005-137495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137496/", + "id": 137496, + "name": "Bradley", + "site_detail_url": "https://comicvine.gamespot.com/bradley/4005-137496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137497/", + "id": 137497, + "name": "Slizzik", + "site_detail_url": "https://comicvine.gamespot.com/slizzik/4005-137497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137498/", + "id": 137498, + "name": "Hi-Vo", + "site_detail_url": "https://comicvine.gamespot.com/hi-vo/4005-137498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137499/", + "id": 137499, + "name": "Aegis", + "site_detail_url": "https://comicvine.gamespot.com/aegis/4005-137499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137500/", + "id": 137500, + "name": "Scragg", + "site_detail_url": "https://comicvine.gamespot.com/scragg/4005-137500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137501/", + "id": 137501, + "name": "Mekara", + "site_detail_url": "https://comicvine.gamespot.com/mekara/4005-137501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137502/", + "id": 137502, + "name": "Fireclaw", + "site_detail_url": "https://comicvine.gamespot.com/fireclaw/4005-137502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137518/", + "id": 137518, + "name": "Chino Guardio", + "site_detail_url": "https://comicvine.gamespot.com/chino-guardio/4005-137518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137519/", + "id": 137519, + "name": "Jerome Villiars", + "site_detail_url": "https://comicvine.gamespot.com/jerome-villiars/4005-137519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137571/", + "id": 137571, + "name": "Imprint", + "site_detail_url": "https://comicvine.gamespot.com/imprint/4005-137571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137576/", + "id": 137576, + "name": "Backfire", + "site_detail_url": "https://comicvine.gamespot.com/backfire/4005-137576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137578/", + "id": 137578, + "name": "Relampago", + "site_detail_url": "https://comicvine.gamespot.com/relampago/4005-137578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137579/", + "id": 137579, + "name": "Gatto di Sangue", + "site_detail_url": "https://comicvine.gamespot.com/gatto-di-sangue/4005-137579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137610/", + "id": 137610, + "name": "Unkar Plutt", + "site_detail_url": "https://comicvine.gamespot.com/unkar-plutt/4005-137610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137616/", + "id": 137616, + "name": "Monsteroso", + "site_detail_url": "https://comicvine.gamespot.com/monsteroso/4005-137616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137617/", + "id": 137617, + "name": "Doc.X", + "site_detail_url": "https://comicvine.gamespot.com/doc-x/4005-137617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137618/", + "id": 137618, + "name": "Melissa Morbeck", + "site_detail_url": "https://comicvine.gamespot.com/melissa-morbeck/4005-137618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137619/", + "id": 137619, + "name": "Shannon Sugarbaker", + "site_detail_url": "https://comicvine.gamespot.com/shannon-sugarbaker/4005-137619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137620/", + "id": 137620, + "name": "Greg Garlick", + "site_detail_url": "https://comicvine.gamespot.com/greg-garlick/4005-137620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137639/", + "id": 137639, + "name": "Ying Liu", + "site_detail_url": "https://comicvine.gamespot.com/ying-liu/4005-137639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137754/", + "id": 137754, + "name": "Greg Allen", + "site_detail_url": "https://comicvine.gamespot.com/greg-allen/4005-137754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137877/", + "id": 137877, + "name": "Jennifer Brody", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-brody/4005-137877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137878/", + "id": 137878, + "name": "Kate Carter", + "site_detail_url": "https://comicvine.gamespot.com/kate-carter/4005-137878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137879/", + "id": 137879, + "name": "Amanda Brusk", + "site_detail_url": "https://comicvine.gamespot.com/amanda-brusk/4005-137879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137880/", + "id": 137880, + "name": "Rags", + "site_detail_url": "https://comicvine.gamespot.com/rags/4005-137880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137881/", + "id": 137881, + "name": "Riches", + "site_detail_url": "https://comicvine.gamespot.com/riches/4005-137881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137882/", + "id": 137882, + "name": "Steve", + "site_detail_url": "https://comicvine.gamespot.com/steve/4005-137882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137883/", + "id": 137883, + "name": "Mrs. Hoskins", + "site_detail_url": "https://comicvine.gamespot.com/mrs-hoskins/4005-137883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137884/", + "id": 137884, + "name": "Mr. Hoskins", + "site_detail_url": "https://comicvine.gamespot.com/mr-hoskins/4005-137884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137966/", + "id": 137966, + "name": "Mr. Felworth", + "site_detail_url": "https://comicvine.gamespot.com/mr-felworth/4005-137966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137967/", + "id": 137967, + "name": "Dennis Szymanski", + "site_detail_url": "https://comicvine.gamespot.com/dennis-szymanski/4005-137967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137975/", + "id": 137975, + "name": "Mike", + "site_detail_url": "https://comicvine.gamespot.com/mike/4005-137975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137979/", + "id": 137979, + "name": "Miranda", + "site_detail_url": "https://comicvine.gamespot.com/miranda/4005-137979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-137980/", + "id": 137980, + "name": "Jen", + "site_detail_url": "https://comicvine.gamespot.com/jen/4005-137980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138006/", + "id": 138006, + "name": "Mr. O'Doughan", + "site_detail_url": "https://comicvine.gamespot.com/mr-odoughan/4005-138006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138041/", + "id": 138041, + "name": "Sarah Topps", + "site_detail_url": "https://comicvine.gamespot.com/sarah-topps/4005-138041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138046/", + "id": 138046, + "name": "Jyn Erso", + "site_detail_url": "https://comicvine.gamespot.com/jyn-erso/4005-138046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138057/", + "id": 138057, + "name": "Eel of Blessed Waters", + "site_detail_url": "https://comicvine.gamespot.com/eel-of-blessed-waters/4005-138057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138058/", + "id": 138058, + "name": "Saw Gerrera", + "site_detail_url": "https://comicvine.gamespot.com/saw-gerrera/4005-138058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138059/", + "id": 138059, + "name": "Galen Erso", + "site_detail_url": "https://comicvine.gamespot.com/galen-erso/4005-138059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138060/", + "id": 138060, + "name": "K-2SO", + "site_detail_url": "https://comicvine.gamespot.com/k-2so/4005-138060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138061/", + "id": 138061, + "name": "Cassian Andor", + "site_detail_url": "https://comicvine.gamespot.com/cassian-andor/4005-138061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138109/", + "id": 138109, + "name": "Lydia Nance", + "site_detail_url": "https://comicvine.gamespot.com/lydia-nance/4005-138109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138110/", + "id": 138110, + "name": "Binary Bug", + "site_detail_url": "https://comicvine.gamespot.com/binary-bug/4005-138110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138136/", + "id": 138136, + "name": "Basalt", + "site_detail_url": "https://comicvine.gamespot.com/basalt/4005-138136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138137/", + "id": 138137, + "name": "Agent Mary", + "site_detail_url": "https://comicvine.gamespot.com/agent-mary/4005-138137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138220/", + "id": 138220, + "name": "Sandman", + "site_detail_url": "https://comicvine.gamespot.com/sandman/4005-138220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138247/", + "id": 138247, + "name": "The Maw Queen", + "site_detail_url": "https://comicvine.gamespot.com/the-maw-queen/4005-138247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138366/", + "id": 138366, + "name": "Chadoe", + "site_detail_url": "https://comicvine.gamespot.com/chadoe/4005-138366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138387/", + "id": 138387, + "name": "Sergeant Mason", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-mason/4005-138387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138410/", + "id": 138410, + "name": "Kongo the Disemboweler", + "site_detail_url": "https://comicvine.gamespot.com/kongo-the-disemboweler/4005-138410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138490/", + "id": 138490, + "name": "Mrs. Bellhauer", + "site_detail_url": "https://comicvine.gamespot.com/mrs-bellhauer/4005-138490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138491/", + "id": 138491, + "name": "Deanna Kawade", + "site_detail_url": "https://comicvine.gamespot.com/deanna-kawade/4005-138491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138492/", + "id": 138492, + "name": "Minouru Kawade", + "site_detail_url": "https://comicvine.gamespot.com/minouru-kawade/4005-138492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138493/", + "id": 138493, + "name": "Gloria Clark", + "site_detail_url": "https://comicvine.gamespot.com/gloria-clark/4005-138493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138495/", + "id": 138495, + "name": "Frankie Noble", + "site_detail_url": "https://comicvine.gamespot.com/frankie-noble/4005-138495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138496/", + "id": 138496, + "name": "Mister Bones", + "site_detail_url": "https://comicvine.gamespot.com/mister-bones/4005-138496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138537/", + "id": 138537, + "name": "Dr. Ekeh", + "site_detail_url": "https://comicvine.gamespot.com/dr-ekeh/4005-138537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138551/", + "id": 138551, + "name": "Tullk Ul-Zyn", + "site_detail_url": "https://comicvine.gamespot.com/tullk-ul-zyn/4005-138551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138558/", + "id": 138558, + "name": "Frankie Majors", + "site_detail_url": "https://comicvine.gamespot.com/frankie-majors/4005-138558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138628/", + "id": 138628, + "name": "Carson Collier Sr.", + "site_detail_url": "https://comicvine.gamespot.com/carson-collier-sr/4005-138628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138650/", + "id": 138650, + "name": "Lion", + "site_detail_url": "https://comicvine.gamespot.com/lion/4005-138650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138651/", + "id": 138651, + "name": "Shine", + "site_detail_url": "https://comicvine.gamespot.com/shine/4005-138651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138656/", + "id": 138656, + "name": "Michelle", + "site_detail_url": "https://comicvine.gamespot.com/michelle/4005-138656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138657/", + "id": 138657, + "name": "Arnold Kovac", + "site_detail_url": "https://comicvine.gamespot.com/arnold-kovac/4005-138657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138658/", + "id": 138658, + "name": "Zaid Ahmed", + "site_detail_url": "https://comicvine.gamespot.com/zaid-ahmed/4005-138658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138666/", + "id": 138666, + "name": "Bob Hickman", + "site_detail_url": "https://comicvine.gamespot.com/bob-hickman/4005-138666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138667/", + "id": 138667, + "name": "Carol Hickman", + "site_detail_url": "https://comicvine.gamespot.com/carol-hickman/4005-138667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138682/", + "id": 138682, + "name": "Stormer", + "site_detail_url": "https://comicvine.gamespot.com/stormer/4005-138682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138697/", + "id": 138697, + "name": "Bashenga", + "site_detail_url": "https://comicvine.gamespot.com/bashenga/4005-138697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138730/", + "id": 138730, + "name": "Jehungir Agha", + "site_detail_url": "https://comicvine.gamespot.com/jehungir-agha/4005-138730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138737/", + "id": 138737, + "name": "The Bank", + "site_detail_url": "https://comicvine.gamespot.com/the-bank/4005-138737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138738/", + "id": 138738, + "name": "Chip Edendale", + "site_detail_url": "https://comicvine.gamespot.com/chip-edendale/4005-138738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138739/", + "id": 138739, + "name": "Hikari", + "site_detail_url": "https://comicvine.gamespot.com/hikari/4005-138739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138740/", + "id": 138740, + "name": "Buffalo Ball", + "site_detail_url": "https://comicvine.gamespot.com/buffalo-ball/4005-138740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138741/", + "id": 138741, + "name": "Oldfather", + "site_detail_url": "https://comicvine.gamespot.com/oldfather/4005-138741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138742/", + "id": 138742, + "name": "Bean", + "site_detail_url": "https://comicvine.gamespot.com/bean/4005-138742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138743/", + "id": 138743, + "name": "Mim", + "site_detail_url": "https://comicvine.gamespot.com/mim/4005-138743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138751/", + "id": 138751, + "name": "Charlie Cut", + "site_detail_url": "https://comicvine.gamespot.com/charlie-cut/4005-138751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138755/", + "id": 138755, + "name": "Euphoria", + "site_detail_url": "https://comicvine.gamespot.com/euphoria/4005-138755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138771/", + "id": 138771, + "name": "Travis Rein", + "site_detail_url": "https://comicvine.gamespot.com/travis-rein/4005-138771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138772/", + "id": 138772, + "name": "Andrew", + "site_detail_url": "https://comicvine.gamespot.com/andrew/4005-138772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138792/", + "id": 138792, + "name": "Cassandra Mercury", + "site_detail_url": "https://comicvine.gamespot.com/cassandra-mercury/4005-138792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138793/", + "id": 138793, + "name": "Lina", + "site_detail_url": "https://comicvine.gamespot.com/lina/4005-138793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138794/", + "id": 138794, + "name": "Karla Cabot", + "site_detail_url": "https://comicvine.gamespot.com/karla-cabot/4005-138794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138795/", + "id": 138795, + "name": "Harry Cabot", + "site_detail_url": "https://comicvine.gamespot.com/harry-cabot/4005-138795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138829/", + "id": 138829, + "name": "Dr. Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/dr-sinclair/4005-138829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138834/", + "id": 138834, + "name": "Agent Joy Jones", + "site_detail_url": "https://comicvine.gamespot.com/agent-joy-jones/4005-138834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138835/", + "id": 138835, + "name": "Teodor Zarco", + "site_detail_url": "https://comicvine.gamespot.com/teodor-zarco/4005-138835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138850/", + "id": 138850, + "name": "Bryan Glass", + "site_detail_url": "https://comicvine.gamespot.com/bryan-glass/4005-138850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138928/", + "id": 138928, + "name": "Nesbitt", + "site_detail_url": "https://comicvine.gamespot.com/nesbitt/4005-138928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138929/", + "id": 138929, + "name": "Hirochi", + "site_detail_url": "https://comicvine.gamespot.com/hirochi/4005-138929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138933/", + "id": 138933, + "name": "Gavin Boyce", + "site_detail_url": "https://comicvine.gamespot.com/gavin-boyce/4005-138933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138934/", + "id": 138934, + "name": "Orlando Perez", + "site_detail_url": "https://comicvine.gamespot.com/orlando-perez/4005-138934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138941/", + "id": 138941, + "name": "Mother Entropy", + "site_detail_url": "https://comicvine.gamespot.com/mother-entropy/4005-138941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138942/", + "id": 138942, + "name": "Krigorrath", + "site_detail_url": "https://comicvine.gamespot.com/krigorrath/4005-138942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138943/", + "id": 138943, + "name": "Rayshaun Lucas", + "site_detail_url": "https://comicvine.gamespot.com/rayshaun-lucas/4005-138943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138949/", + "id": 138949, + "name": "Choshin", + "site_detail_url": "https://comicvine.gamespot.com/choshin/4005-138949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138977/", + "id": 138977, + "name": "The Countess", + "site_detail_url": "https://comicvine.gamespot.com/the-countess/4005-138977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138978/", + "id": 138978, + "name": "El Facóquero", + "site_detail_url": "https://comicvine.gamespot.com/el-facoquero/4005-138978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138979/", + "id": 138979, + "name": "Doctor Dragovic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-dragovic/4005-138979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138980/", + "id": 138980, + "name": "Devil Spider", + "site_detail_url": "https://comicvine.gamespot.com/devil-spider/4005-138980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-138981/", + "id": 138981, + "name": "Giuseppe Russo", + "site_detail_url": "https://comicvine.gamespot.com/giuseppe-russo/4005-138981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139151/", + "id": 139151, + "name": "Costas Prado", + "site_detail_url": "https://comicvine.gamespot.com/costas-prado/4005-139151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139179/", + "id": 139179, + "name": "Ezra Keith", + "site_detail_url": "https://comicvine.gamespot.com/ezra-keith/4005-139179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139243/", + "id": 139243, + "name": "Libby Windham", + "site_detail_url": "https://comicvine.gamespot.com/libby-windham/4005-139243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139252/", + "id": 139252, + "name": "N.", + "site_detail_url": "https://comicvine.gamespot.com/n/4005-139252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139280/", + "id": 139280, + "name": "Otta Spice", + "site_detail_url": "https://comicvine.gamespot.com/otta-spice/4005-139280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139281/", + "id": 139281, + "name": "Kwezi Dzana", + "site_detail_url": "https://comicvine.gamespot.com/kwezi-dzana/4005-139281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139282/", + "id": 139282, + "name": "Belen", + "site_detail_url": "https://comicvine.gamespot.com/belen/4005-139282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139287/", + "id": 139287, + "name": "Kraken", + "site_detail_url": "https://comicvine.gamespot.com/kraken/4005-139287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139332/", + "id": 139332, + "name": "Thumper", + "site_detail_url": "https://comicvine.gamespot.com/thumper/4005-139332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139334/", + "id": 139334, + "name": "Captain Perrili", + "site_detail_url": "https://comicvine.gamespot.com/captain-perrili/4005-139334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139335/", + "id": 139335, + "name": "Admiral Statura", + "site_detail_url": "https://comicvine.gamespot.com/admiral-statura/4005-139335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139336/", + "id": 139336, + "name": "Li'l Busta", + "site_detail_url": "https://comicvine.gamespot.com/lil-busta/4005-139336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139337/", + "id": 139337, + "name": "Naseemo", + "site_detail_url": "https://comicvine.gamespot.com/naseemo/4005-139337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139338/", + "id": 139338, + "name": "Porkums", + "site_detail_url": "https://comicvine.gamespot.com/porkums/4005-139338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139339/", + "id": 139339, + "name": "Davis", + "site_detail_url": "https://comicvine.gamespot.com/davis/4005-139339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139382/", + "id": 139382, + "name": "Danny Fear", + "site_detail_url": "https://comicvine.gamespot.com/danny-fear/4005-139382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139412/", + "id": 139412, + "name": "Lily-Ann Millard", + "site_detail_url": "https://comicvine.gamespot.com/lily-ann-millard/4005-139412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139419/", + "id": 139419, + "name": "Carla", + "site_detail_url": "https://comicvine.gamespot.com/carla/4005-139419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139420/", + "id": 139420, + "name": "Cleevus", + "site_detail_url": "https://comicvine.gamespot.com/cleevus/4005-139420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139421/", + "id": 139421, + "name": "X-Ray", + "site_detail_url": "https://comicvine.gamespot.com/x-ray/4005-139421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139422/", + "id": 139422, + "name": "Tango", + "site_detail_url": "https://comicvine.gamespot.com/tango/4005-139422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139423/", + "id": 139423, + "name": "Foxtrot", + "site_detail_url": "https://comicvine.gamespot.com/foxtrot/4005-139423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139424/", + "id": 139424, + "name": "Juliet", + "site_detail_url": "https://comicvine.gamespot.com/juliet/4005-139424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139425/", + "id": 139425, + "name": "Romeo", + "site_detail_url": "https://comicvine.gamespot.com/romeo/4005-139425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139426/", + "id": 139426, + "name": "Olivia Trask", + "site_detail_url": "https://comicvine.gamespot.com/olivia-trask/4005-139426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139427/", + "id": 139427, + "name": "Sale", + "site_detail_url": "https://comicvine.gamespot.com/sale/4005-139427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139430/", + "id": 139430, + "name": "Scientist Supreme", + "site_detail_url": "https://comicvine.gamespot.com/scientist-supreme/4005-139430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139463/", + "id": 139463, + "name": "Simon Lasker", + "site_detail_url": "https://comicvine.gamespot.com/simon-lasker/4005-139463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139465/", + "id": 139465, + "name": "Avalanche", + "site_detail_url": "https://comicvine.gamespot.com/avalanche/4005-139465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139475/", + "id": 139475, + "name": "Glory", + "site_detail_url": "https://comicvine.gamespot.com/glory/4005-139475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139476/", + "id": 139476, + "name": "A'Di", + "site_detail_url": "https://comicvine.gamespot.com/a-di/4005-139476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139477/", + "id": 139477, + "name": "Dante Cruz", + "site_detail_url": "https://comicvine.gamespot.com/dante-cruz/4005-139477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139499/", + "id": 139499, + "name": "Rat of 12 Plagues", + "site_detail_url": "https://comicvine.gamespot.com/rat-of-12-plagues/4005-139499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139500/", + "id": 139500, + "name": "Resourceful Snake", + "site_detail_url": "https://comicvine.gamespot.com/resourceful-snake/4005-139500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139502/", + "id": 139502, + "name": "Fabian Losani", + "site_detail_url": "https://comicvine.gamespot.com/fabian-losani/4005-139502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139503/", + "id": 139503, + "name": "Hark", + "site_detail_url": "https://comicvine.gamespot.com/hark/4005-139503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139504/", + "id": 139504, + "name": "The Divine Wolf", + "site_detail_url": "https://comicvine.gamespot.com/the-divine-wolf/4005-139504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139505/", + "id": 139505, + "name": "Seng", + "site_detail_url": "https://comicvine.gamespot.com/seng/4005-139505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139506/", + "id": 139506, + "name": "Yue", + "site_detail_url": "https://comicvine.gamespot.com/yue/4005-139506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139507/", + "id": 139507, + "name": "Haichun", + "site_detail_url": "https://comicvine.gamespot.com/haichun/4005-139507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139508/", + "id": 139508, + "name": "Qi", + "site_detail_url": "https://comicvine.gamespot.com/qi/4005-139508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139509/", + "id": 139509, + "name": "Patience", + "site_detail_url": "https://comicvine.gamespot.com/patience/4005-139509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139510/", + "id": 139510, + "name": "Girl Moon", + "site_detail_url": "https://comicvine.gamespot.com/girl-moon/4005-139510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139511/", + "id": 139511, + "name": "Victor Vandoom", + "site_detail_url": "https://comicvine.gamespot.com/victor-vandoom/4005-139511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139528/", + "id": 139528, + "name": "Will McMann", + "site_detail_url": "https://comicvine.gamespot.com/will-mcmann/4005-139528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139530/", + "id": 139530, + "name": "Chef Bear", + "site_detail_url": "https://comicvine.gamespot.com/chef-bear/4005-139530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139531/", + "id": 139531, + "name": "Alfredo the Chicken", + "site_detail_url": "https://comicvine.gamespot.com/alfredo-the-chicken/4005-139531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139542/", + "id": 139542, + "name": "Joao", + "site_detail_url": "https://comicvine.gamespot.com/joao/4005-139542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139544/", + "id": 139544, + "name": "Emily Arthurs", + "site_detail_url": "https://comicvine.gamespot.com/emily-arthurs/4005-139544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139545/", + "id": 139545, + "name": "Enric Zagnar", + "site_detail_url": "https://comicvine.gamespot.com/enric-zagnar/4005-139545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139546/", + "id": 139546, + "name": "Joe Jennings", + "site_detail_url": "https://comicvine.gamespot.com/joe-jennings/4005-139546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139547/", + "id": 139547, + "name": "Henry Croft", + "site_detail_url": "https://comicvine.gamespot.com/henry-croft/4005-139547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139548/", + "id": 139548, + "name": "Mary Meeke", + "site_detail_url": "https://comicvine.gamespot.com/mary-meeke/4005-139548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139549/", + "id": 139549, + "name": "Donald Grant", + "site_detail_url": "https://comicvine.gamespot.com/donald-grant/4005-139549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139550/", + "id": 139550, + "name": "Betty Bliss", + "site_detail_url": "https://comicvine.gamespot.com/betty-bliss/4005-139550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139551/", + "id": 139551, + "name": "Acari", + "site_detail_url": "https://comicvine.gamespot.com/acari/4005-139551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139573/", + "id": 139573, + "name": "Sergey Antonov", + "site_detail_url": "https://comicvine.gamespot.com/sergey-antonov/4005-139573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139586/", + "id": 139586, + "name": "Gloss", + "site_detail_url": "https://comicvine.gamespot.com/gloss/4005-139586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139587/", + "id": 139587, + "name": "The Gates", + "site_detail_url": "https://comicvine.gamespot.com/the-gates/4005-139587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139588/", + "id": 139588, + "name": "Brawl", + "site_detail_url": "https://comicvine.gamespot.com/brawl/4005-139588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139589/", + "id": 139589, + "name": "Flare", + "site_detail_url": "https://comicvine.gamespot.com/flare/4005-139589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139590/", + "id": 139590, + "name": "Tommy Manfredi", + "site_detail_url": "https://comicvine.gamespot.com/tommy-manfredi/4005-139590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139591/", + "id": 139591, + "name": "Radovan Jankovic", + "site_detail_url": "https://comicvine.gamespot.com/radovan-jankovic/4005-139591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139641/", + "id": 139641, + "name": "Queen Irena", + "site_detail_url": "https://comicvine.gamespot.com/queen-irena/4005-139641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139648/", + "id": 139648, + "name": "Greylight", + "site_detail_url": "https://comicvine.gamespot.com/greylight/4005-139648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139649/", + "id": 139649, + "name": "Chake", + "site_detail_url": "https://comicvine.gamespot.com/chake/4005-139649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139650/", + "id": 139650, + "name": "Chal'dra", + "site_detail_url": "https://comicvine.gamespot.com/chaldra/4005-139650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139653/", + "id": 139653, + "name": "Brian McAllister", + "site_detail_url": "https://comicvine.gamespot.com/brian-mcallister/4005-139653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139654/", + "id": 139654, + "name": "Slate", + "site_detail_url": "https://comicvine.gamespot.com/slate/4005-139654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139664/", + "id": 139664, + "name": "Mantron", + "site_detail_url": "https://comicvine.gamespot.com/mantron/4005-139664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139668/", + "id": 139668, + "name": "Venomsaurus Rex", + "site_detail_url": "https://comicvine.gamespot.com/venomsaurus-rex/4005-139668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139671/", + "id": 139671, + "name": "Cybill Sheepdog", + "site_detail_url": "https://comicvine.gamespot.com/cybill-sheepdog/4005-139671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139814/", + "id": 139814, + "name": "Bl'rt", + "site_detail_url": "https://comicvine.gamespot.com/blrt/4005-139814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139874/", + "id": 139874, + "name": "Murd Blurdock", + "site_detail_url": "https://comicvine.gamespot.com/murd-blurdock/4005-139874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139875/", + "id": 139875, + "name": "Director Krennic", + "site_detail_url": "https://comicvine.gamespot.com/director-krennic/4005-139875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139876/", + "id": 139876, + "name": "Red Locust", + "site_detail_url": "https://comicvine.gamespot.com/red-locust/4005-139876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139877/", + "id": 139877, + "name": "Rabbit of Holy Flame", + "site_detail_url": "https://comicvine.gamespot.com/rabbit-of-holy-flame/4005-139877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139878/", + "id": 139878, + "name": "Mountain-Slaying Bear", + "site_detail_url": "https://comicvine.gamespot.com/mountainslaying-bear/4005-139878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139879/", + "id": 139879, + "name": "Long-Armed Bull", + "site_detail_url": "https://comicvine.gamespot.com/longarmed-bull/4005-139879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139880/", + "id": 139880, + "name": "Blinky", + "site_detail_url": "https://comicvine.gamespot.com/blinky/4005-139880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139881/", + "id": 139881, + "name": "Raava", + "site_detail_url": "https://comicvine.gamespot.com/raava/4005-139881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139895/", + "id": 139895, + "name": "Frogurt Frelson", + "site_detail_url": "https://comicvine.gamespot.com/frogurt-frelson/4005-139895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139896/", + "id": 139896, + "name": "Chirrut Îmwe", + "site_detail_url": "https://comicvine.gamespot.com/chirrut-imwe/4005-139896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139897/", + "id": 139897, + "name": "Baze Malbus", + "site_detail_url": "https://comicvine.gamespot.com/baze-malbus/4005-139897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139932/", + "id": 139932, + "name": "Toshiko Amano", + "site_detail_url": "https://comicvine.gamespot.com/toshiko-amano/4005-139932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-139974/", + "id": 139974, + "name": "Shara-Lee", + "site_detail_url": "https://comicvine.gamespot.com/shara-lee/4005-139974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140028/", + "id": 140028, + "name": "0101", + "site_detail_url": "https://comicvine.gamespot.com/0101/4005-140028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140029/", + "id": 140029, + "name": "Leviathon Mother", + "site_detail_url": "https://comicvine.gamespot.com/leviathon-mother/4005-140029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140031/", + "id": 140031, + "name": "Ms. Hoo", + "site_detail_url": "https://comicvine.gamespot.com/ms-hoo/4005-140031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140032/", + "id": 140032, + "name": "Joshua Williams", + "site_detail_url": "https://comicvine.gamespot.com/joshua-williams/4005-140032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140033/", + "id": 140033, + "name": "Joel Williams", + "site_detail_url": "https://comicvine.gamespot.com/joel-williams/4005-140033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140034/", + "id": 140034, + "name": "Professor Simon Goettler", + "site_detail_url": "https://comicvine.gamespot.com/professor-simon-goettler/4005-140034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140036/", + "id": 140036, + "name": "Robert Raleigh", + "site_detail_url": "https://comicvine.gamespot.com/robert-raleigh/4005-140036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140069/", + "id": 140069, + "name": "Tubin", + "site_detail_url": "https://comicvine.gamespot.com/tubin/4005-140069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140098/", + "id": 140098, + "name": "Ms. Dominguez", + "site_detail_url": "https://comicvine.gamespot.com/ms-dominguez/4005-140098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140099/", + "id": 140099, + "name": "Zoe", + "site_detail_url": "https://comicvine.gamespot.com/zoe/4005-140099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140100/", + "id": 140100, + "name": "Eduardo", + "site_detail_url": "https://comicvine.gamespot.com/eduardo/4005-140100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140101/", + "id": 140101, + "name": "Mrs. Lafayette", + "site_detail_url": "https://comicvine.gamespot.com/mrs-lafayette/4005-140101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140102/", + "id": 140102, + "name": "Mr. Lafayette", + "site_detail_url": "https://comicvine.gamespot.com/mr-lafayette/4005-140102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140103/", + "id": 140103, + "name": "Ali", + "site_detail_url": "https://comicvine.gamespot.com/ali/4005-140103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140105/", + "id": 140105, + "name": "Sasha", + "site_detail_url": "https://comicvine.gamespot.com/sasha/4005-140105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140133/", + "id": 140133, + "name": "Stevie", + "site_detail_url": "https://comicvine.gamespot.com/stevie/4005-140133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140134/", + "id": 140134, + "name": "Danica", + "site_detail_url": "https://comicvine.gamespot.com/danica/4005-140134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140144/", + "id": 140144, + "name": "Lelania", + "site_detail_url": "https://comicvine.gamespot.com/lelania/4005-140144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140178/", + "id": 140178, + "name": "Hudson Banks", + "site_detail_url": "https://comicvine.gamespot.com/hudson-banks/4005-140178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140179/", + "id": 140179, + "name": "Mariana Banks", + "site_detail_url": "https://comicvine.gamespot.com/mariana-banks/4005-140179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140184/", + "id": 140184, + "name": "Lauren", + "site_detail_url": "https://comicvine.gamespot.com/lauren/4005-140184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140185/", + "id": 140185, + "name": "Dr. Eve", + "site_detail_url": "https://comicvine.gamespot.com/dr-eve/4005-140185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140186/", + "id": 140186, + "name": "First Firmament", + "site_detail_url": "https://comicvine.gamespot.com/first-firmament/4005-140186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140256/", + "id": 140256, + "name": "Simon Slugansky", + "site_detail_url": "https://comicvine.gamespot.com/simon-slugansky/4005-140256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140258/", + "id": 140258, + "name": "Eldra Katiss", + "site_detail_url": "https://comicvine.gamespot.com/eldra-katiss/4005-140258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140267/", + "id": 140267, + "name": "Dia Alec", + "site_detail_url": "https://comicvine.gamespot.com/dia-alec/4005-140267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140268/", + "id": 140268, + "name": "George Alec", + "site_detail_url": "https://comicvine.gamespot.com/george-alec/4005-140268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140276/", + "id": 140276, + "name": "Melodía Dias", + "site_detail_url": "https://comicvine.gamespot.com/melodia-dias/4005-140276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140297/", + "id": 140297, + "name": "Lenore Mornay", + "site_detail_url": "https://comicvine.gamespot.com/lenore-mornay/4005-140297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140298/", + "id": 140298, + "name": "Frankie Corello", + "site_detail_url": "https://comicvine.gamespot.com/frankie-corello/4005-140298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140309/", + "id": 140309, + "name": "Brad", + "site_detail_url": "https://comicvine.gamespot.com/brad/4005-140309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140310/", + "id": 140310, + "name": "Rebecca Brown", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-brown/4005-140310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140312/", + "id": 140312, + "name": "Judge", + "site_detail_url": "https://comicvine.gamespot.com/judge/4005-140312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140316/", + "id": 140316, + "name": "Trapster", + "site_detail_url": "https://comicvine.gamespot.com/trapster/4005-140316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140328/", + "id": 140328, + "name": "Hophni Mason", + "site_detail_url": "https://comicvine.gamespot.com/hophni-mason/4005-140328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140333/", + "id": 140333, + "name": "Sidon Ithano", + "site_detail_url": "https://comicvine.gamespot.com/sidon-ithano/4005-140333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140346/", + "id": 140346, + "name": "Doctor Alba", + "site_detail_url": "https://comicvine.gamespot.com/doctor-alba/4005-140346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140353/", + "id": 140353, + "name": "Mother", + "site_detail_url": "https://comicvine.gamespot.com/mother/4005-140353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140354/", + "id": 140354, + "name": "Aiolin Astarte", + "site_detail_url": "https://comicvine.gamespot.com/aiolin-astarte/4005-140354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140355/", + "id": 140355, + "name": "Fifth Brother", + "site_detail_url": "https://comicvine.gamespot.com/fifth-brother/4005-140355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140356/", + "id": 140356, + "name": "Seventh Sister", + "site_detail_url": "https://comicvine.gamespot.com/seventh-sister/4005-140356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140357/", + "id": 140357, + "name": "General Korz", + "site_detail_url": "https://comicvine.gamespot.com/general-korz/4005-140357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140363/", + "id": 140363, + "name": "Prixat", + "site_detail_url": "https://comicvine.gamespot.com/prixat/4005-140363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140389/", + "id": 140389, + "name": "Deadpal", + "site_detail_url": "https://comicvine.gamespot.com/deadpal/4005-140389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140390/", + "id": 140390, + "name": "Kirak Infil'a", + "site_detail_url": "https://comicvine.gamespot.com/kirak-infila/4005-140390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140391/", + "id": 140391, + "name": "Officer Brockman", + "site_detail_url": "https://comicvine.gamespot.com/officer-brockman/4005-140391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140392/", + "id": 140392, + "name": "Pilot Issac", + "site_detail_url": "https://comicvine.gamespot.com/pilot-issac/4005-140392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140393/", + "id": 140393, + "name": "Pilot Hastings", + "site_detail_url": "https://comicvine.gamespot.com/pilot-hastings/4005-140393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140394/", + "id": 140394, + "name": "C-21 Highsinger", + "site_detail_url": "https://comicvine.gamespot.com/c-21-highsinger/4005-140394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140395/", + "id": 140395, + "name": "IG-90", + "site_detail_url": "https://comicvine.gamespot.com/ig-90/4005-140395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140396/", + "id": 140396, + "name": "Beebox", + "site_detail_url": "https://comicvine.gamespot.com/beebox/4005-140396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140398/", + "id": 140398, + "name": "Rook Kast", + "site_detail_url": "https://comicvine.gamespot.com/rook-kast/4005-140398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140399/", + "id": 140399, + "name": "Gar Saxon", + "site_detail_url": "https://comicvine.gamespot.com/gar-saxon/4005-140399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140420/", + "id": 140420, + "name": "Fenn Rau", + "site_detail_url": "https://comicvine.gamespot.com/fenn-rau/4005-140420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140458/", + "id": 140458, + "name": "Malarus", + "site_detail_url": "https://comicvine.gamespot.com/malarus/4005-140458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140459/", + "id": 140459, + "name": "Hondo Ohnaka", + "site_detail_url": "https://comicvine.gamespot.com/hondo-ohnaka/4005-140459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140475/", + "id": 140475, + "name": "Hexadecimal", + "site_detail_url": "https://comicvine.gamespot.com/hexadecimal/4005-140475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140476/", + "id": 140476, + "name": "Whisper Doll", + "site_detail_url": "https://comicvine.gamespot.com/whisper-doll/4005-140476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140477/", + "id": 140477, + "name": "Norio", + "site_detail_url": "https://comicvine.gamespot.com/norio/4005-140477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140478/", + "id": 140478, + "name": "Gazing Nightshade", + "site_detail_url": "https://comicvine.gamespot.com/gazing-nightshade/4005-140478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140485/", + "id": 140485, + "name": "Steela Gerrera", + "site_detail_url": "https://comicvine.gamespot.com/steela-gerrera/4005-140485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140487/", + "id": 140487, + "name": "FE-B3", + "site_detail_url": "https://comicvine.gamespot.com/fe-b3/4005-140487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140488/", + "id": 140488, + "name": "Lom Pyke", + "site_detail_url": "https://comicvine.gamespot.com/lom-pyke/4005-140488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140489/", + "id": 140489, + "name": "Troo-tril-tek", + "site_detail_url": "https://comicvine.gamespot.com/troo-tril-tek/4005-140489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140490/", + "id": 140490, + "name": "Xev Xrexus", + "site_detail_url": "https://comicvine.gamespot.com/xev-xrexus/4005-140490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140491/", + "id": 140491, + "name": "Vorhdeilo", + "site_detail_url": "https://comicvine.gamespot.com/vorhdeilo/4005-140491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140492/", + "id": 140492, + "name": "Embo", + "site_detail_url": "https://comicvine.gamespot.com/embo/4005-140492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140504/", + "id": 140504, + "name": "Tey-Zuka", + "site_detail_url": "https://comicvine.gamespot.com/tey-zuka/4005-140504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140505/", + "id": 140505, + "name": "Fife", + "site_detail_url": "https://comicvine.gamespot.com/fife/4005-140505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140506/", + "id": 140506, + "name": "Ziton Moj", + "site_detail_url": "https://comicvine.gamespot.com/ziton-moj/4005-140506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140507/", + "id": 140507, + "name": "Brother Viscus", + "site_detail_url": "https://comicvine.gamespot.com/brother-viscus/4005-140507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140508/", + "id": 140508, + "name": "Tiplee", + "site_detail_url": "https://comicvine.gamespot.com/tiplee/4005-140508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140526/", + "id": 140526, + "name": "Sakas", + "site_detail_url": "https://comicvine.gamespot.com/sakas/4005-140526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140531/", + "id": 140531, + "name": "Sosha Soruna", + "site_detail_url": "https://comicvine.gamespot.com/sosha-soruna/4005-140531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140532/", + "id": 140532, + "name": "Skrull Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/skrull-ms-marvel/4005-140532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140533/", + "id": 140533, + "name": "Technician Wiley", + "site_detail_url": "https://comicvine.gamespot.com/technician-wiley/4005-140533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140534/", + "id": 140534, + "name": "Lerr Duvat", + "site_detail_url": "https://comicvine.gamespot.com/lerr-duvat/4005-140534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140535/", + "id": 140535, + "name": "Captain Korro", + "site_detail_url": "https://comicvine.gamespot.com/captain-korro/4005-140535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140536/", + "id": 140536, + "name": "Donta Gesset", + "site_detail_url": "https://comicvine.gamespot.com/donta-gesset/4005-140536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140537/", + "id": 140537, + "name": "Offcier Hurron", + "site_detail_url": "https://comicvine.gamespot.com/offcier-hurron/4005-140537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140551/", + "id": 140551, + "name": "Jim Salamander", + "site_detail_url": "https://comicvine.gamespot.com/jim-salamander/4005-140551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140577/", + "id": 140577, + "name": "Bearded Lady", + "site_detail_url": "https://comicvine.gamespot.com/bearded-lady/4005-140577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140578/", + "id": 140578, + "name": "Jutta", + "site_detail_url": "https://comicvine.gamespot.com/jutta/4005-140578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140641/", + "id": 140641, + "name": "Tordenkakerlakk", + "site_detail_url": "https://comicvine.gamespot.com/tordenkakerlakk/4005-140641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140642/", + "id": 140642, + "name": "Bright Eyes", + "site_detail_url": "https://comicvine.gamespot.com/bright-eyes/4005-140642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140649/", + "id": 140649, + "name": "Derek Bishop", + "site_detail_url": "https://comicvine.gamespot.com/derek-bishop/4005-140649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140650/", + "id": 140650, + "name": "Anna Donnelly", + "site_detail_url": "https://comicvine.gamespot.com/anna-donnelly/4005-140650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140651/", + "id": 140651, + "name": "Bodhi Rook", + "site_detail_url": "https://comicvine.gamespot.com/bodhi-rook/4005-140651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140676/", + "id": 140676, + "name": "Steeljacket", + "site_detail_url": "https://comicvine.gamespot.com/steeljacket/4005-140676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140677/", + "id": 140677, + "name": "Black Powder", + "site_detail_url": "https://comicvine.gamespot.com/black-powder/4005-140677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140678/", + "id": 140678, + "name": "Tracer", + "site_detail_url": "https://comicvine.gamespot.com/tracer/4005-140678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140682/", + "id": 140682, + "name": "Roger Harrington", + "site_detail_url": "https://comicvine.gamespot.com/roger-harrington/4005-140682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140691/", + "id": 140691, + "name": "Joey Gastone", + "site_detail_url": "https://comicvine.gamespot.com/joey-gastone/4005-140691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140693/", + "id": 140693, + "name": "Ruth", + "site_detail_url": "https://comicvine.gamespot.com/ruth/4005-140693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140694/", + "id": 140694, + "name": "Reeve", + "site_detail_url": "https://comicvine.gamespot.com/reeve/4005-140694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140695/", + "id": 140695, + "name": "Chammy", + "site_detail_url": "https://comicvine.gamespot.com/chammy/4005-140695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140762/", + "id": 140762, + "name": "Ezra Asher", + "site_detail_url": "https://comicvine.gamespot.com/ezra-asher/4005-140762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140763/", + "id": 140763, + "name": "Saint Cyrus Leviticus", + "site_detail_url": "https://comicvine.gamespot.com/saint-cyrus-leviticus/4005-140763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140769/", + "id": 140769, + "name": "Nico", + "site_detail_url": "https://comicvine.gamespot.com/nico/4005-140769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140822/", + "id": 140822, + "name": "Barbara Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/barbara-rodriguez/4005-140822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140894/", + "id": 140894, + "name": "Vana", + "site_detail_url": "https://comicvine.gamespot.com/vana/4005-140894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140895/", + "id": 140895, + "name": "Hank", + "site_detail_url": "https://comicvine.gamespot.com/hank/4005-140895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140896/", + "id": 140896, + "name": "Medgar DuPaul", + "site_detail_url": "https://comicvine.gamespot.com/medgar-dupaul/4005-140896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-140897/", + "id": 140897, + "name": "Carl Shuffler", + "site_detail_url": "https://comicvine.gamespot.com/carl-shuffler/4005-140897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141012/", + "id": 141012, + "name": "Zulu-X", + "site_detail_url": "https://comicvine.gamespot.com/zulu-x/4005-141012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141013/", + "id": 141013, + "name": "Ignatz", + "site_detail_url": "https://comicvine.gamespot.com/ignatz/4005-141013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141076/", + "id": 141076, + "name": "Rebecca London", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-london/4005-141076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141128/", + "id": 141128, + "name": "Harly", + "site_detail_url": "https://comicvine.gamespot.com/harly/4005-141128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141129/", + "id": 141129, + "name": "Ezrik", + "site_detail_url": "https://comicvine.gamespot.com/ezrik/4005-141129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141130/", + "id": 141130, + "name": "Divadi", + "site_detail_url": "https://comicvine.gamespot.com/divadi/4005-141130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141299/", + "id": 141299, + "name": "Hopper", + "site_detail_url": "https://comicvine.gamespot.com/hopper/4005-141299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141307/", + "id": 141307, + "name": "Ra'chaun", + "site_detail_url": "https://comicvine.gamespot.com/rachaun/4005-141307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141350/", + "id": 141350, + "name": "Sycorax", + "site_detail_url": "https://comicvine.gamespot.com/sycorax/4005-141350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141351/", + "id": 141351, + "name": "Jack Beagle", + "site_detail_url": "https://comicvine.gamespot.com/jack-beagle/4005-141351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141406/", + "id": 141406, + "name": "James Allen", + "site_detail_url": "https://comicvine.gamespot.com/james-allen/4005-141406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141466/", + "id": 141466, + "name": "Paula Tuolema", + "site_detail_url": "https://comicvine.gamespot.com/paula-tuolema/4005-141466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141467/", + "id": 141467, + "name": "Hans", + "site_detail_url": "https://comicvine.gamespot.com/hans/4005-141467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141474/", + "id": 141474, + "name": "Captain Orack", + "site_detail_url": "https://comicvine.gamespot.com/captain-orack/4005-141474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141487/", + "id": 141487, + "name": "Liam Donnelly", + "site_detail_url": "https://comicvine.gamespot.com/liam-donnelly/4005-141487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141636/", + "id": 141636, + "name": "Carla Williams", + "site_detail_url": "https://comicvine.gamespot.com/carla-williams/4005-141636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141639/", + "id": 141639, + "name": "Nina Bergson", + "site_detail_url": "https://comicvine.gamespot.com/nina-bergson/4005-141639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141640/", + "id": 141640, + "name": "Manfred Adler", + "site_detail_url": "https://comicvine.gamespot.com/manfred-adler/4005-141640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141641/", + "id": 141641, + "name": "Ernst Mueller", + "site_detail_url": "https://comicvine.gamespot.com/ernst-mueller/4005-141641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141642/", + "id": 141642, + "name": "Fritz von Sydow", + "site_detail_url": "https://comicvine.gamespot.com/fritz-von-sydow/4005-141642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141643/", + "id": 141643, + "name": "Otto Rabe", + "site_detail_url": "https://comicvine.gamespot.com/otto-rabe/4005-141643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141644/", + "id": 141644, + "name": "Ludwig Schroeder", + "site_detail_url": "https://comicvine.gamespot.com/ludwig-schroeder/4005-141644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141655/", + "id": 141655, + "name": "Leer", + "site_detail_url": "https://comicvine.gamespot.com/leer/4005-141655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141717/", + "id": 141717, + "name": "Hypnotia", + "site_detail_url": "https://comicvine.gamespot.com/hypnotia/4005-141717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141732/", + "id": 141732, + "name": "Ironing Boar", + "site_detail_url": "https://comicvine.gamespot.com/ironing-boar/4005-141732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141734/", + "id": 141734, + "name": "Karl Serr", + "site_detail_url": "https://comicvine.gamespot.com/karl-serr/4005-141734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141735/", + "id": 141735, + "name": "Lucile Serr", + "site_detail_url": "https://comicvine.gamespot.com/lucile-serr/4005-141735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141736/", + "id": 141736, + "name": "Aunt Serr", + "site_detail_url": "https://comicvine.gamespot.com/aunt-serr/4005-141736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141737/", + "id": 141737, + "name": "Craig Winters", + "site_detail_url": "https://comicvine.gamespot.com/craig-winters/4005-141737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141780/", + "id": 141780, + "name": "Sindr", + "site_detail_url": "https://comicvine.gamespot.com/sindr/4005-141780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141782/", + "id": 141782, + "name": "David Menard", + "site_detail_url": "https://comicvine.gamespot.com/david-menard/4005-141782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141783/", + "id": 141783, + "name": "Bobby Andrews", + "site_detail_url": "https://comicvine.gamespot.com/bobby-andrews/4005-141783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141805/", + "id": 141805, + "name": "Weapon H", + "site_detail_url": "https://comicvine.gamespot.com/weapon-h/4005-141805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141808/", + "id": 141808, + "name": "Ben Crandal", + "site_detail_url": "https://comicvine.gamespot.com/ben-crandal/4005-141808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141818/", + "id": 141818, + "name": "Hyinar", + "site_detail_url": "https://comicvine.gamespot.com/hyinar/4005-141818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141874/", + "id": 141874, + "name": "Billy Zedd", + "site_detail_url": "https://comicvine.gamespot.com/billy-zedd/4005-141874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141875/", + "id": 141875, + "name": "Rainmaker", + "site_detail_url": "https://comicvine.gamespot.com/rainmaker/4005-141875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141876/", + "id": 141876, + "name": "Gunnar Tristan Heywood", + "site_detail_url": "https://comicvine.gamespot.com/gunnar-tristan-heywood/4005-141876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141877/", + "id": 141877, + "name": "Quickdeath", + "site_detail_url": "https://comicvine.gamespot.com/quickdeath/4005-141877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141878/", + "id": 141878, + "name": "Zail Haddad", + "site_detail_url": "https://comicvine.gamespot.com/zail-haddad/4005-141878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141879/", + "id": 141879, + "name": "Ember", + "site_detail_url": "https://comicvine.gamespot.com/ember/4005-141879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141880/", + "id": 141880, + "name": "Catscratch", + "site_detail_url": "https://comicvine.gamespot.com/catscratch/4005-141880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141881/", + "id": 141881, + "name": "Russian", + "site_detail_url": "https://comicvine.gamespot.com/russian/4005-141881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141882/", + "id": 141882, + "name": "Arcadian", + "site_detail_url": "https://comicvine.gamespot.com/arcadian/4005-141882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141903/", + "id": 141903, + "name": "Polymre", + "site_detail_url": "https://comicvine.gamespot.com/polymre/4005-141903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141904/", + "id": 141904, + "name": "Wintre", + "site_detail_url": "https://comicvine.gamespot.com/wintre/4005-141904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141905/", + "id": 141905, + "name": "Bliss", + "site_detail_url": "https://comicvine.gamespot.com/bliss/4005-141905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141906/", + "id": 141906, + "name": "Euphoria", + "site_detail_url": "https://comicvine.gamespot.com/euphoria/4005-141906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-141941/", + "id": 141941, + "name": "Conquest", + "site_detail_url": "https://comicvine.gamespot.com/conquest/4005-141941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142002/", + "id": 142002, + "name": "Self-Absorbed Man", + "site_detail_url": "https://comicvine.gamespot.com/selfabsorbed-man/4005-142002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142010/", + "id": 142010, + "name": "Yolanda", + "site_detail_url": "https://comicvine.gamespot.com/yolanda/4005-142010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142015/", + "id": 142015, + "name": "Milo", + "site_detail_url": "https://comicvine.gamespot.com/milo/4005-142015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142018/", + "id": 142018, + "name": "Justine Chase", + "site_detail_url": "https://comicvine.gamespot.com/justine-chase/4005-142018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142019/", + "id": 142019, + "name": "Cole Chase", + "site_detail_url": "https://comicvine.gamespot.com/cole-chase/4005-142019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142054/", + "id": 142054, + "name": "Possum Man", + "site_detail_url": "https://comicvine.gamespot.com/possum-man/4005-142054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142269/", + "id": 142269, + "name": "Bobbajo", + "site_detail_url": "https://comicvine.gamespot.com/bobbajo/4005-142269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142273/", + "id": 142273, + "name": "Roodown", + "site_detail_url": "https://comicvine.gamespot.com/roodown/4005-142273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142303/", + "id": 142303, + "name": "Anatoly Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/anatoly-rasputin/4005-142303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142310/", + "id": 142310, + "name": "Atau", + "site_detail_url": "https://comicvine.gamespot.com/atau/4005-142310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142311/", + "id": 142311, + "name": "Elisha", + "site_detail_url": "https://comicvine.gamespot.com/elisha/4005-142311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142318/", + "id": 142318, + "name": "Ngozi", + "site_detail_url": "https://comicvine.gamespot.com/ngozi/4005-142318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142324/", + "id": 142324, + "name": "Promoter", + "site_detail_url": "https://comicvine.gamespot.com/promoter/4005-142324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142385/", + "id": 142385, + "name": "Conrad MacCleary", + "site_detail_url": "https://comicvine.gamespot.com/conrad-maccleary/4005-142385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142408/", + "id": 142408, + "name": "White Bear", + "site_detail_url": "https://comicvine.gamespot.com/white-bear/4005-142408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142409/", + "id": 142409, + "name": "Saskia", + "site_detail_url": "https://comicvine.gamespot.com/saskia/4005-142409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142454/", + "id": 142454, + "name": "Castor Gnawbarque III", + "site_detail_url": "https://comicvine.gamespot.com/castor-gnawbarque-iii/4005-142454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142455/", + "id": 142455, + "name": "Jasper Scott", + "site_detail_url": "https://comicvine.gamespot.com/jasper-scott/4005-142455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142472/", + "id": 142472, + "name": "Cambria Banner", + "site_detail_url": "https://comicvine.gamespot.com/cambria-banner/4005-142472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142477/", + "id": 142477, + "name": "The Author", + "site_detail_url": "https://comicvine.gamespot.com/the-author/4005-142477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142565/", + "id": 142565, + "name": "Jedidiah", + "site_detail_url": "https://comicvine.gamespot.com/jedidiah/4005-142565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142574/", + "id": 142574, + "name": "Baxter Bigelow ", + "site_detail_url": "https://comicvine.gamespot.com/baxter-bigelow/4005-142574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142599/", + "id": 142599, + "name": "Grey Panther", + "site_detail_url": "https://comicvine.gamespot.com/grey-panther/4005-142599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142600/", + "id": 142600, + "name": "Kevin Krask", + "site_detail_url": "https://comicvine.gamespot.com/kevin-krask/4005-142600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142722/", + "id": 142722, + "name": "Dr. Aston Wise", + "site_detail_url": "https://comicvine.gamespot.com/dr-aston-wise/4005-142722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142723/", + "id": 142723, + "name": "Dr. Stephen Browning", + "site_detail_url": "https://comicvine.gamespot.com/dr-stephen-browning/4005-142723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142724/", + "id": 142724, + "name": "Rissa Mano", + "site_detail_url": "https://comicvine.gamespot.com/rissa-mano/4005-142724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142889/", + "id": 142889, + "name": "Razan", + "site_detail_url": "https://comicvine.gamespot.com/razan/4005-142889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-142982/", + "id": 142982, + "name": "Mannikin", + "site_detail_url": "https://comicvine.gamespot.com/mannikin/4005-142982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143023/", + "id": 143023, + "name": "Sultan", + "site_detail_url": "https://comicvine.gamespot.com/sultan/4005-143023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143036/", + "id": 143036, + "name": "Mary Blue Cloud", + "site_detail_url": "https://comicvine.gamespot.com/mary-blue-cloud/4005-143036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143088/", + "id": 143088, + "name": "Eleonora", + "site_detail_url": "https://comicvine.gamespot.com/eleonora/4005-143088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143089/", + "id": 143089, + "name": "Dulcy Kimble", + "site_detail_url": "https://comicvine.gamespot.com/dulcy-kimble/4005-143089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143104/", + "id": 143104, + "name": "Maarika", + "site_detail_url": "https://comicvine.gamespot.com/maarika/4005-143104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143105/", + "id": 143105, + "name": "Varkath", + "site_detail_url": "https://comicvine.gamespot.com/varkath/4005-143105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143106/", + "id": 143106, + "name": "Headman Bahng", + "site_detail_url": "https://comicvine.gamespot.com/headman-bahng/4005-143106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143107/", + "id": 143107, + "name": "Maeera", + "site_detail_url": "https://comicvine.gamespot.com/maeera/4005-143107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143108/", + "id": 143108, + "name": "Chak", + "site_detail_url": "https://comicvine.gamespot.com/chak/4005-143108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143110/", + "id": 143110, + "name": "Lor San Tekka", + "site_detail_url": "https://comicvine.gamespot.com/lor-san-tekka/4005-143110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143139/", + "id": 143139, + "name": "Kevlar", + "site_detail_url": "https://comicvine.gamespot.com/kevlar/4005-143139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143330/", + "id": 143330, + "name": "AD-W4", + "site_detail_url": "https://comicvine.gamespot.com/ad-w4/4005-143330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143331/", + "id": 143331, + "name": "Ritchie Redwood", + "site_detail_url": "https://comicvine.gamespot.com/ritchie-redwood/4005-143331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143332/", + "id": 143332, + "name": "Howard Mason", + "site_detail_url": "https://comicvine.gamespot.com/howard-mason/4005-143332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143348/", + "id": 143348, + "name": "Pelops", + "site_detail_url": "https://comicvine.gamespot.com/pelops/4005-143348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143376/", + "id": 143376, + "name": "Vishnu, The Preserver", + "site_detail_url": "https://comicvine.gamespot.com/vishnu-the-preserver/4005-143376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143377/", + "id": 143377, + "name": "Shiva, The Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/shiva-the-destroyer/4005-143377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143378/", + "id": 143378, + "name": "Ratri, The Night", + "site_detail_url": "https://comicvine.gamespot.com/ratri-the-night/4005-143378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143379/", + "id": 143379, + "name": "Mara, The Dreamer", + "site_detail_url": "https://comicvine.gamespot.com/mara-the-dreamer/4005-143379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143380/", + "id": 143380, + "name": "Kali, The Black Madness", + "site_detail_url": "https://comicvine.gamespot.com/kali-the-black-madness/4005-143380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143381/", + "id": 143381, + "name": "Brahma, The Creator", + "site_detail_url": "https://comicvine.gamespot.com/brahma-the-creator/4005-143381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143382/", + "id": 143382, + "name": "Agni, Lord of Fire", + "site_detail_url": "https://comicvine.gamespot.com/agni-lord-of-fire/4005-143382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143383/", + "id": 143383, + "name": "Elizabeth Tabby", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-tabby/4005-143383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143384/", + "id": 143384, + "name": "Richard Bird-Dog", + "site_detail_url": "https://comicvine.gamespot.com/richard-bird-dog/4005-143384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143385/", + "id": 143385, + "name": "Cynthia Snipe", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-snipe/4005-143385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143386/", + "id": 143386, + "name": "Edward Grizzly", + "site_detail_url": "https://comicvine.gamespot.com/edward-grizzly/4005-143386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143387/", + "id": 143387, + "name": "Dr. Thaddeus Beakface", + "site_detail_url": "https://comicvine.gamespot.com/dr-thaddeus-beakface/4005-143387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143388/", + "id": 143388, + "name": "Farnsworth Junior The Third", + "site_detail_url": "https://comicvine.gamespot.com/farnsworth-junior-the-third/4005-143388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143397/", + "id": 143397, + "name": "Morkley", + "site_detail_url": "https://comicvine.gamespot.com/morkley/4005-143397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143398/", + "id": 143398, + "name": "Baron Waste von Kampf", + "site_detail_url": "https://comicvine.gamespot.com/baron-waste-von-kampf/4005-143398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143399/", + "id": 143399, + "name": "Dr. Gullepsie", + "site_detail_url": "https://comicvine.gamespot.com/dr-gullepsie/4005-143399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143400/", + "id": 143400, + "name": "Cur-Asawa", + "site_detail_url": "https://comicvine.gamespot.com/cur-asawa/4005-143400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143401/", + "id": 143401, + "name": "General Llamamotto", + "site_detail_url": "https://comicvine.gamespot.com/general-llamamotto/4005-143401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143402/", + "id": 143402, + "name": "Woodchuck Morris", + "site_detail_url": "https://comicvine.gamespot.com/woodchuck-morris/4005-143402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143403/", + "id": 143403, + "name": "Mr. Rhesus", + "site_detail_url": "https://comicvine.gamespot.com/mr-rhesus/4005-143403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143404/", + "id": 143404, + "name": "Mr. Crawdad", + "site_detail_url": "https://comicvine.gamespot.com/mr-crawdad/4005-143404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143405/", + "id": 143405, + "name": "B.O.", + "site_detail_url": "https://comicvine.gamespot.com/bo/4005-143405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143406/", + "id": 143406, + "name": "Night-Crawly", + "site_detail_url": "https://comicvine.gamespot.com/night-crawly/4005-143406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143407/", + "id": 143407, + "name": "Bug-Eye", + "site_detail_url": "https://comicvine.gamespot.com/bug-eye/4005-143407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143408/", + "id": 143408, + "name": "Wolverine-Bug", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-bug/4005-143408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143409/", + "id": 143409, + "name": "Ororo-Bug", + "site_detail_url": "https://comicvine.gamespot.com/ororo-bug/4005-143409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143410/", + "id": 143410, + "name": "Colosso-Bug", + "site_detail_url": "https://comicvine.gamespot.com/colosso-bug/4005-143410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143411/", + "id": 143411, + "name": "The Breaded Boremamuu", + "site_detail_url": "https://comicvine.gamespot.com/the-breaded-boremamuu/4005-143411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143412/", + "id": 143412, + "name": "Rancid One", + "site_detail_url": "https://comicvine.gamespot.com/rancid-one/4005-143412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143413/", + "id": 143413, + "name": "Shmageggi", + "site_detail_url": "https://comicvine.gamespot.com/shmageggi/4005-143413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143414/", + "id": 143414, + "name": "Trinket ", + "site_detail_url": "https://comicvine.gamespot.com/trinket/4005-143414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143415/", + "id": 143415, + "name": "Summersquash", + "site_detail_url": "https://comicvine.gamespot.com/summersquash/4005-143415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143416/", + "id": 143416, + "name": "John Henpeck", + "site_detail_url": "https://comicvine.gamespot.com/john-henpeck/4005-143416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143417/", + "id": 143417, + "name": "Marsha Henpeck", + "site_detail_url": "https://comicvine.gamespot.com/marsha-henpeck/4005-143417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143418/", + "id": 143418, + "name": "Dotty Dormouse", + "site_detail_url": "https://comicvine.gamespot.com/dotty-dormouse/4005-143418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143419/", + "id": 143419, + "name": "Sub-Merchandizer", + "site_detail_url": "https://comicvine.gamespot.com/sub-merchandizer/4005-143419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143420/", + "id": 143420, + "name": "Snappy Turtle", + "site_detail_url": "https://comicvine.gamespot.com/snappy-turtle/4005-143420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143421/", + "id": 143421, + "name": "Skye", + "site_detail_url": "https://comicvine.gamespot.com/skye/4005-143421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143422/", + "id": 143422, + "name": "Airdale", + "site_detail_url": "https://comicvine.gamespot.com/airdale/4005-143422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143423/", + "id": 143423, + "name": "Wire", + "site_detail_url": "https://comicvine.gamespot.com/wire/4005-143423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143424/", + "id": 143424, + "name": "Bull", + "site_detail_url": "https://comicvine.gamespot.com/bull/4005-143424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143425/", + "id": 143425, + "name": "Boston", + "site_detail_url": "https://comicvine.gamespot.com/boston/4005-143425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143430/", + "id": 143430, + "name": "Evil Thang", + "site_detail_url": "https://comicvine.gamespot.com/evil-thang/4005-143430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143431/", + "id": 143431, + "name": "Evil Simian Torch", + "site_detail_url": "https://comicvine.gamespot.com/evil-simian-torch/4005-143431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143432/", + "id": 143432, + "name": "Evil Invisible Gorilla", + "site_detail_url": "https://comicvine.gamespot.com/evil-invisible-gorilla/4005-143432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143433/", + "id": 143433, + "name": "Evil Mooster Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/evil-mooster-fantastic/4005-143433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143434/", + "id": 143434, + "name": "Miss Brie", + "site_detail_url": "https://comicvine.gamespot.com/miss-brie/4005-143434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143435/", + "id": 143435, + "name": "Miss Muenster", + "site_detail_url": "https://comicvine.gamespot.com/miss-muenster/4005-143435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143436/", + "id": 143436, + "name": "Miss Mozzarella", + "site_detail_url": "https://comicvine.gamespot.com/miss-mozzarella/4005-143436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143437/", + "id": 143437, + "name": "Miss Limburger", + "site_detail_url": "https://comicvine.gamespot.com/miss-limburger/4005-143437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143438/", + "id": 143438, + "name": "Gary Collie", + "site_detail_url": "https://comicvine.gamespot.com/gary-collie/4005-143438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143439/", + "id": 143439, + "name": "Furrball", + "site_detail_url": "https://comicvine.gamespot.com/furrball/4005-143439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143444/", + "id": 143444, + "name": "Chickenstein's Monster", + "site_detail_url": "https://comicvine.gamespot.com/chickensteins-monster/4005-143444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143445/", + "id": 143445, + "name": "Doctor Chickenstein", + "site_detail_url": "https://comicvine.gamespot.com/doctor-chickenstein/4005-143445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143446/", + "id": 143446, + "name": "Batty Brant ", + "site_detail_url": "https://comicvine.gamespot.com/batty-brant/4005-143446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143447/", + "id": 143447, + "name": "Buddy Gheko", + "site_detail_url": "https://comicvine.gamespot.com/buddy-gheko/4005-143447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143448/", + "id": 143448, + "name": "Barbara Mandrill", + "site_detail_url": "https://comicvine.gamespot.com/barbara-mandrill/4005-143448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143449/", + "id": 143449, + "name": "Barry Manitee", + "site_detail_url": "https://comicvine.gamespot.com/barry-manitee/4005-143449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143450/", + "id": 143450, + "name": "Dinah Saur", + "site_detail_url": "https://comicvine.gamespot.com/dinah-saur/4005-143450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143451/", + "id": 143451, + "name": "Rebecca de Monkey", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-de-monkey/4005-143451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143452/", + "id": 143452, + "name": "Mel Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/mel-gibbon/4005-143452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143453/", + "id": 143453, + "name": "Truman Coyote", + "site_detail_url": "https://comicvine.gamespot.com/truman-coyote/4005-143453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143454/", + "id": 143454, + "name": "Meryl Peep", + "site_detail_url": "https://comicvine.gamespot.com/meryl-peep/4005-143454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143455/", + "id": 143455, + "name": "Whoopie Goldfish", + "site_detail_url": "https://comicvine.gamespot.com/whoopie-goldfish/4005-143455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143456/", + "id": 143456, + "name": "Bruce Springchicken", + "site_detail_url": "https://comicvine.gamespot.com/bruce-springchicken/4005-143456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143457/", + "id": 143457, + "name": "Mick Jaguar", + "site_detail_url": "https://comicvine.gamespot.com/mick-jaguar/4005-143457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143458/", + "id": 143458, + "name": "Andy Warthog", + "site_detail_url": "https://comicvine.gamespot.com/andy-warthog/4005-143458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143459/", + "id": 143459, + "name": "Liz Alleycat", + "site_detail_url": "https://comicvine.gamespot.com/liz-alleycat/4005-143459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143460/", + "id": 143460, + "name": "President Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/president-raccoon/4005-143460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143461/", + "id": 143461, + "name": "Mr. Weasel", + "site_detail_url": "https://comicvine.gamespot.com/mr-weasel/4005-143461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143462/", + "id": 143462, + "name": "Sum Lo Duck", + "site_detail_url": "https://comicvine.gamespot.com/sum-lo-duck/4005-143462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143463/", + "id": 143463, + "name": "Bobcat Barker", + "site_detail_url": "https://comicvine.gamespot.com/bobcat-barker/4005-143463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143464/", + "id": 143464, + "name": "Catleen Turner", + "site_detail_url": "https://comicvine.gamespot.com/catleen-turner/4005-143464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143465/", + "id": 143465, + "name": "Darlene Dunderbeck", + "site_detail_url": "https://comicvine.gamespot.com/darlene-dunderbeck/4005-143465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143466/", + "id": 143466, + "name": "Lake Lovelock", + "site_detail_url": "https://comicvine.gamespot.com/lake-lovelock/4005-143466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143467/", + "id": 143467, + "name": "Clara Knowles", + "site_detail_url": "https://comicvine.gamespot.com/clara-knowles/4005-143467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143469/", + "id": 143469, + "name": "Abdul T'Chaka Rosenthal", + "site_detail_url": "https://comicvine.gamespot.com/abdul-tchaka-rosenthal/4005-143469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143470/", + "id": 143470, + "name": "Anthea Bernardson", + "site_detail_url": "https://comicvine.gamespot.com/anthea-bernardson/4005-143470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143471/", + "id": 143471, + "name": "Carrie Coye", + "site_detail_url": "https://comicvine.gamespot.com/carrie-coye/4005-143471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143472/", + "id": 143472, + "name": "Nedick", + "site_detail_url": "https://comicvine.gamespot.com/nedick/4005-143472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143473/", + "id": 143473, + "name": "Midjit", + "site_detail_url": "https://comicvine.gamespot.com/midjit/4005-143473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143474/", + "id": 143474, + "name": "Slacker", + "site_detail_url": "https://comicvine.gamespot.com/slacker/4005-143474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143475/", + "id": 143475, + "name": "Tasha", + "site_detail_url": "https://comicvine.gamespot.com/tasha/4005-143475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143476/", + "id": 143476, + "name": "Jack Mitchell", + "site_detail_url": "https://comicvine.gamespot.com/jack-mitchell/4005-143476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143477/", + "id": 143477, + "name": "Carmen Lynch", + "site_detail_url": "https://comicvine.gamespot.com/carmen-lynch/4005-143477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143478/", + "id": 143478, + "name": "Dr. Damian Fawcett", + "site_detail_url": "https://comicvine.gamespot.com/dr-damian-fawcett/4005-143478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143480/", + "id": 143480, + "name": "Papa Legba", + "site_detail_url": "https://comicvine.gamespot.com/papa-legba/4005-143480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143481/", + "id": 143481, + "name": "Queen Creole", + "site_detail_url": "https://comicvine.gamespot.com/queen-creole/4005-143481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143482/", + "id": 143482, + "name": "Milkbarmaid", + "site_detail_url": "https://comicvine.gamespot.com/milkbarmaid/4005-143482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143483/", + "id": 143483, + "name": "Brotor the Biker", + "site_detail_url": "https://comicvine.gamespot.com/brotor-the-biker/4005-143483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143484/", + "id": 143484, + "name": "Garmont Grannis", + "site_detail_url": "https://comicvine.gamespot.com/garmont-grannis/4005-143484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143485/", + "id": 143485, + "name": "Cursor", + "site_detail_url": "https://comicvine.gamespot.com/cursor/4005-143485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143487/", + "id": 143487, + "name": "Sister Lucia ", + "site_detail_url": "https://comicvine.gamespot.com/sister-lucia/4005-143487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143488/", + "id": 143488, + "name": "Owen Sarkissian", + "site_detail_url": "https://comicvine.gamespot.com/owen-sarkissian/4005-143488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143489/", + "id": 143489, + "name": "Reba Rivers", + "site_detail_url": "https://comicvine.gamespot.com/reba-rivers/4005-143489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143490/", + "id": 143490, + "name": "Manuel Fokus", + "site_detail_url": "https://comicvine.gamespot.com/manuel-fokus/4005-143490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143491/", + "id": 143491, + "name": "Otto Fokus", + "site_detail_url": "https://comicvine.gamespot.com/otto-fokus/4005-143491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143492/", + "id": 143492, + "name": "Hap Hazzard", + "site_detail_url": "https://comicvine.gamespot.com/hap-hazzard/4005-143492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143493/", + "id": 143493, + "name": "Cidney Marquez", + "site_detail_url": "https://comicvine.gamespot.com/cidney-marquez/4005-143493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143494/", + "id": 143494, + "name": "Dot 33", + "site_detail_url": "https://comicvine.gamespot.com/dot-33/4005-143494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143495/", + "id": 143495, + "name": "Shiva Blue", + "site_detail_url": "https://comicvine.gamespot.com/shiva-blue/4005-143495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143497/", + "id": 143497, + "name": "Scorch", + "site_detail_url": "https://comicvine.gamespot.com/scorch/4005-143497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143500/", + "id": 143500, + "name": "Calvin Oakly", + "site_detail_url": "https://comicvine.gamespot.com/calvin-oakly/4005-143500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143512/", + "id": 143512, + "name": "Jellie Mae", + "site_detail_url": "https://comicvine.gamespot.com/jellie-mae/4005-143512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143513/", + "id": 143513, + "name": "Mister Money", + "site_detail_url": "https://comicvine.gamespot.com/mister-money/4005-143513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143514/", + "id": 143514, + "name": "Torg", + "site_detail_url": "https://comicvine.gamespot.com/torg/4005-143514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143515/", + "id": 143515, + "name": "Fex", + "site_detail_url": "https://comicvine.gamespot.com/fex/4005-143515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143516/", + "id": 143516, + "name": "Pike", + "site_detail_url": "https://comicvine.gamespot.com/pike/4005-143516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143517/", + "id": 143517, + "name": "Jonas Finn", + "site_detail_url": "https://comicvine.gamespot.com/jonas-finn/4005-143517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143518/", + "id": 143518, + "name": "Mumblety Peg", + "site_detail_url": "https://comicvine.gamespot.com/mumblety-peg/4005-143518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143519/", + "id": 143519, + "name": "Puck", + "site_detail_url": "https://comicvine.gamespot.com/puck/4005-143519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143520/", + "id": 143520, + "name": "Mustard", + "site_detail_url": "https://comicvine.gamespot.com/mustard/4005-143520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143521/", + "id": 143521, + "name": "Moth", + "site_detail_url": "https://comicvine.gamespot.com/moth/4005-143521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143522/", + "id": 143522, + "name": "Cobweb", + "site_detail_url": "https://comicvine.gamespot.com/cobweb/4005-143522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143523/", + "id": 143523, + "name": "Bottom", + "site_detail_url": "https://comicvine.gamespot.com/bottom/4005-143523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143524/", + "id": 143524, + "name": "Blossom ", + "site_detail_url": "https://comicvine.gamespot.com/blossom/4005-143524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143525/", + "id": 143525, + "name": "K-A N.G.", + "site_detail_url": "https://comicvine.gamespot.com/k-a-ng/4005-143525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143526/", + "id": 143526, + "name": "Gaudeamus", + "site_detail_url": "https://comicvine.gamespot.com/gaudeamus/4005-143526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143527/", + "id": 143527, + "name": "General Verbragge", + "site_detail_url": "https://comicvine.gamespot.com/general-verbragge/4005-143527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143528/", + "id": 143528, + "name": "Emperor Rodo", + "site_detail_url": "https://comicvine.gamespot.com/emperor-rodo/4005-143528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143529/", + "id": 143529, + "name": "Tranque the Terrible", + "site_detail_url": "https://comicvine.gamespot.com/tranque-the-terrible/4005-143529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143530/", + "id": 143530, + "name": "Bannock Hagen", + "site_detail_url": "https://comicvine.gamespot.com/bannock-hagen/4005-143530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143531/", + "id": 143531, + "name": "Holli Hagen", + "site_detail_url": "https://comicvine.gamespot.com/holli-hagen/4005-143531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143532/", + "id": 143532, + "name": "Frog", + "site_detail_url": "https://comicvine.gamespot.com/frog/4005-143532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143533/", + "id": 143533, + "name": "Eyeball", + "site_detail_url": "https://comicvine.gamespot.com/eyeball/4005-143533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143534/", + "id": 143534, + "name": "Saint Carcrash", + "site_detail_url": "https://comicvine.gamespot.com/saint-carcrash/4005-143534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143535/", + "id": 143535, + "name": "Payne Northedge", + "site_detail_url": "https://comicvine.gamespot.com/payne-northedge/4005-143535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143536/", + "id": 143536, + "name": "Steel Rain", + "site_detail_url": "https://comicvine.gamespot.com/steel-rain/4005-143536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143537/", + "id": 143537, + "name": "Gedde O'Hara", + "site_detail_url": "https://comicvine.gamespot.com/gedde-ohara/4005-143537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143538/", + "id": 143538, + "name": "Vlad the Impaler", + "site_detail_url": "https://comicvine.gamespot.com/vlad-the-impaler/4005-143538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143539/", + "id": 143539, + "name": "Corporate Headhunter", + "site_detail_url": "https://comicvine.gamespot.com/corporate-headhunter/4005-143539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143540/", + "id": 143540, + "name": "Gargantuoid", + "site_detail_url": "https://comicvine.gamespot.com/gargantuoid/4005-143540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143541/", + "id": 143541, + "name": "Gojiro", + "site_detail_url": "https://comicvine.gamespot.com/gojiro/4005-143541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143542/", + "id": 143542, + "name": "Richard M. Welk", + "site_detail_url": "https://comicvine.gamespot.com/richard-m-welk/4005-143542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143543/", + "id": 143543, + "name": "Abelard", + "site_detail_url": "https://comicvine.gamespot.com/abelard/4005-143543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143544/", + "id": 143544, + "name": "Machina Jones", + "site_detail_url": "https://comicvine.gamespot.com/machina-jones/4005-143544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143545/", + "id": 143545, + "name": "Jade Bixby", + "site_detail_url": "https://comicvine.gamespot.com/jade-bixby/4005-143545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143546/", + "id": 143546, + "name": "Lohengrin", + "site_detail_url": "https://comicvine.gamespot.com/lohengrin/4005-143546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143547/", + "id": 143547, + "name": "Septymbre", + "site_detail_url": "https://comicvine.gamespot.com/septymbre/4005-143547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143548/", + "id": 143548, + "name": "Ruth Cambridge", + "site_detail_url": "https://comicvine.gamespot.com/ruth-cambridge/4005-143548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143549/", + "id": 143549, + "name": "Mirielle Radley", + "site_detail_url": "https://comicvine.gamespot.com/mirielle-radley/4005-143549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143550/", + "id": 143550, + "name": "Jack Whitlow", + "site_detail_url": "https://comicvine.gamespot.com/jack-whitlow/4005-143550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143551/", + "id": 143551, + "name": "Frank Wilson", + "site_detail_url": "https://comicvine.gamespot.com/frank-wilson/4005-143551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143552/", + "id": 143552, + "name": "Dust", + "site_detail_url": "https://comicvine.gamespot.com/dust/4005-143552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143554/", + "id": 143554, + "name": "General Olga", + "site_detail_url": "https://comicvine.gamespot.com/general-olga/4005-143554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143555/", + "id": 143555, + "name": "Socko Swenski", + "site_detail_url": "https://comicvine.gamespot.com/socko-swenski/4005-143555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143556/", + "id": 143556, + "name": "Whip Sandler", + "site_detail_url": "https://comicvine.gamespot.com/whip-sandler/4005-143556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143557/", + "id": 143557, + "name": "Alamo Lou Dade", + "site_detail_url": "https://comicvine.gamespot.com/alamo-lou-dade/4005-143557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143558/", + "id": 143558, + "name": "Satan the Wonderhorse", + "site_detail_url": "https://comicvine.gamespot.com/satan-the-wonderhorse/4005-143558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143559/", + "id": 143559, + "name": "Crow Kessler", + "site_detail_url": "https://comicvine.gamespot.com/crow-kessler/4005-143559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143560/", + "id": 143560, + "name": "Twist Staley", + "site_detail_url": "https://comicvine.gamespot.com/twist-staley/4005-143560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143561/", + "id": 143561, + "name": "Sandy Sandlin", + "site_detail_url": "https://comicvine.gamespot.com/sandy-sandlin/4005-143561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143562/", + "id": 143562, + "name": "Big Jim Fraser", + "site_detail_url": "https://comicvine.gamespot.com/big-jim-fraser/4005-143562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143563/", + "id": 143563, + "name": "Freddy Sykes", + "site_detail_url": "https://comicvine.gamespot.com/freddy-sykes/4005-143563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143564/", + "id": 143564, + "name": "Korumbu", + "site_detail_url": "https://comicvine.gamespot.com/korumbu/4005-143564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143565/", + "id": 143565, + "name": "Hugo Barge", + "site_detail_url": "https://comicvine.gamespot.com/hugo-barge/4005-143565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143566/", + "id": 143566, + "name": "Xxirys", + "site_detail_url": "https://comicvine.gamespot.com/xxirys/4005-143566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143567/", + "id": 143567, + "name": "Yucoya-Tzin", + "site_detail_url": "https://comicvine.gamespot.com/yucoya-tzin/4005-143567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143568/", + "id": 143568, + "name": "Frank Johnson", + "site_detail_url": "https://comicvine.gamespot.com/frank-johnson/4005-143568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143569/", + "id": 143569, + "name": "Dr. Warren Thompson", + "site_detail_url": "https://comicvine.gamespot.com/dr-warren-thompson/4005-143569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143570/", + "id": 143570, + "name": "Margaret Thompson", + "site_detail_url": "https://comicvine.gamespot.com/margaret-thompson/4005-143570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143571/", + "id": 143571, + "name": "Hank Drummond", + "site_detail_url": "https://comicvine.gamespot.com/hank-drummond/4005-143571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143572/", + "id": 143572, + "name": "Bobby Drummond", + "site_detail_url": "https://comicvine.gamespot.com/bobby-drummond/4005-143572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143573/", + "id": 143573, + "name": "Billy-Jo Drummond", + "site_detail_url": "https://comicvine.gamespot.com/billy-jo-drummond/4005-143573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143574/", + "id": 143574, + "name": "Wallace Corlee", + "site_detail_url": "https://comicvine.gamespot.com/wallace-corlee/4005-143574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143575/", + "id": 143575, + "name": "Mark Jackson", + "site_detail_url": "https://comicvine.gamespot.com/mark-jackson/4005-143575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143576/", + "id": 143576, + "name": "Jake Simpson", + "site_detail_url": "https://comicvine.gamespot.com/jake-simpson/4005-143576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143577/", + "id": 143577, + "name": "Soja", + "site_detail_url": "https://comicvine.gamespot.com/soja/4005-143577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143578/", + "id": 143578, + "name": "Ruseef", + "site_detail_url": "https://comicvine.gamespot.com/ruseef/4005-143578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143579/", + "id": 143579, + "name": "Ninox", + "site_detail_url": "https://comicvine.gamespot.com/ninox/4005-143579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143580/", + "id": 143580, + "name": "Hektu", + "site_detail_url": "https://comicvine.gamespot.com/hektu/4005-143580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143581/", + "id": 143581, + "name": "Gorein", + "site_detail_url": "https://comicvine.gamespot.com/gorein/4005-143581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143582/", + "id": 143582, + "name": "Kevin Kennerman", + "site_detail_url": "https://comicvine.gamespot.com/kevin-kennerman/4005-143582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143583/", + "id": 143583, + "name": "Holden Crane", + "site_detail_url": "https://comicvine.gamespot.com/holden-crane/4005-143583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143584/", + "id": 143584, + "name": "Jim Arsdale", + "site_detail_url": "https://comicvine.gamespot.com/jim-arsdale/4005-143584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143585/", + "id": 143585, + "name": "Mary Brown", + "site_detail_url": "https://comicvine.gamespot.com/mary-brown/4005-143585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143586/", + "id": 143586, + "name": "Ralph Sorrell", + "site_detail_url": "https://comicvine.gamespot.com/ralph-sorrell/4005-143586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143588/", + "id": 143588, + "name": "The Claw", + "site_detail_url": "https://comicvine.gamespot.com/the-claw/4005-143588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143589/", + "id": 143589, + "name": "Vulture", + "site_detail_url": "https://comicvine.gamespot.com/vulture/4005-143589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143591/", + "id": 143591, + "name": "Nichi", + "site_detail_url": "https://comicvine.gamespot.com/nichi/4005-143591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143592/", + "id": 143592, + "name": "Pepper Burns", + "site_detail_url": "https://comicvine.gamespot.com/pepper-burns/4005-143592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143593/", + "id": 143593, + "name": "Snake-Eye", + "site_detail_url": "https://comicvine.gamespot.com/snake-eye/4005-143593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143594/", + "id": 143594, + "name": "Wilbur the Great", + "site_detail_url": "https://comicvine.gamespot.com/wilbur-the-great/4005-143594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143595/", + "id": 143595, + "name": "Prince Suli ", + "site_detail_url": "https://comicvine.gamespot.com/prince-suli/4005-143595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143596/", + "id": 143596, + "name": "Colonel Kishi", + "site_detail_url": "https://comicvine.gamespot.com/colonel-kishi/4005-143596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143597/", + "id": 143597, + "name": "Choo-Choo Charley", + "site_detail_url": "https://comicvine.gamespot.com/choo-choo-charley/4005-143597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143598/", + "id": 143598, + "name": "Colonel Strauheim", + "site_detail_url": "https://comicvine.gamespot.com/colonel-strauheim/4005-143598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143599/", + "id": 143599, + "name": "Von Wolheim", + "site_detail_url": "https://comicvine.gamespot.com/von-wolheim/4005-143599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143600/", + "id": 143600, + "name": "Ingrediento", + "site_detail_url": "https://comicvine.gamespot.com/ingrediento/4005-143600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143601/", + "id": 143601, + "name": "Marie Lathrop", + "site_detail_url": "https://comicvine.gamespot.com/marie-lathrop/4005-143601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143602/", + "id": 143602, + "name": "Bobby Lathrop", + "site_detail_url": "https://comicvine.gamespot.com/bobby-lathrop/4005-143602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143603/", + "id": 143603, + "name": "Jim Lathrop", + "site_detail_url": "https://comicvine.gamespot.com/jim-lathrop/4005-143603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143604/", + "id": 143604, + "name": "Sister Anne", + "site_detail_url": "https://comicvine.gamespot.com/sister-anne/4005-143604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143605/", + "id": 143605, + "name": "Ramsey McNeil", + "site_detail_url": "https://comicvine.gamespot.com/ramsey-mcneil/4005-143605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143606/", + "id": 143606, + "name": "Claire McNeil", + "site_detail_url": "https://comicvine.gamespot.com/claire-mcneil/4005-143606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143612/", + "id": 143612, + "name": "Lung Sei", + "site_detail_url": "https://comicvine.gamespot.com/lung-sei/4005-143612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143613/", + "id": 143613, + "name": "Crime Clocker", + "site_detail_url": "https://comicvine.gamespot.com/crime-clocker/4005-143613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143614/", + "id": 143614, + "name": "Master Magician", + "site_detail_url": "https://comicvine.gamespot.com/master-magician/4005-143614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143618/", + "id": 143618, + "name": "Rocco Rank", + "site_detail_url": "https://comicvine.gamespot.com/rocco-rank/4005-143618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143619/", + "id": 143619, + "name": "Old Pedros", + "site_detail_url": "https://comicvine.gamespot.com/old-pedros/4005-143619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143621/", + "id": 143621, + "name": "Charlie Murphy", + "site_detail_url": "https://comicvine.gamespot.com/charlie-murphy/4005-143621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143622/", + "id": 143622, + "name": "Orlando Kannor", + "site_detail_url": "https://comicvine.gamespot.com/orlando-kannor/4005-143622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143623/", + "id": 143623, + "name": "Jason Tso", + "site_detail_url": "https://comicvine.gamespot.com/jason-tso/4005-143623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143624/", + "id": 143624, + "name": "Linette Martinez", + "site_detail_url": "https://comicvine.gamespot.com/linette-martinez/4005-143624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143625/", + "id": 143625, + "name": "Richard Trask", + "site_detail_url": "https://comicvine.gamespot.com/richard-trask/4005-143625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143626/", + "id": 143626, + "name": "Willard Jaxton", + "site_detail_url": "https://comicvine.gamespot.com/willard-jaxton/4005-143626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143628/", + "id": 143628, + "name": "Beatrice McBride", + "site_detail_url": "https://comicvine.gamespot.com/beatrice-mcbride/4005-143628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143629/", + "id": 143629, + "name": "Slime", + "site_detail_url": "https://comicvine.gamespot.com/slime/4005-143629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143630/", + "id": 143630, + "name": "Mighty Mouth Martin ", + "site_detail_url": "https://comicvine.gamespot.com/mighty-mouth-martin/4005-143630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143634/", + "id": 143634, + "name": "Dr. Wheetly", + "site_detail_url": "https://comicvine.gamespot.com/dr-wheetly/4005-143634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143638/", + "id": 143638, + "name": "Vincent Tannen", + "site_detail_url": "https://comicvine.gamespot.com/vincent-tannen/4005-143638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143639/", + "id": 143639, + "name": "Gish", + "site_detail_url": "https://comicvine.gamespot.com/gish/4005-143639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143640/", + "id": 143640, + "name": "Duff", + "site_detail_url": "https://comicvine.gamespot.com/duff/4005-143640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143641/", + "id": 143641, + "name": "Clifford White", + "site_detail_url": "https://comicvine.gamespot.com/clifford-white/4005-143641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143642/", + "id": 143642, + "name": "Paul Greyson", + "site_detail_url": "https://comicvine.gamespot.com/paul-greyson/4005-143642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143645/", + "id": 143645, + "name": "Grant Buckner", + "site_detail_url": "https://comicvine.gamespot.com/grant-buckner/4005-143645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143646/", + "id": 143646, + "name": "William Gardner", + "site_detail_url": "https://comicvine.gamespot.com/william-gardner/4005-143646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143647/", + "id": 143647, + "name": "Sammy Skalek", + "site_detail_url": "https://comicvine.gamespot.com/sammy-skalek/4005-143647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143648/", + "id": 143648, + "name": "Mr. Locker", + "site_detail_url": "https://comicvine.gamespot.com/mr-locker/4005-143648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143649/", + "id": 143649, + "name": "Sandra Franklin", + "site_detail_url": "https://comicvine.gamespot.com/sandra-franklin/4005-143649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143650/", + "id": 143650, + "name": "Ghashnath", + "site_detail_url": "https://comicvine.gamespot.com/ghashnath/4005-143650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143651/", + "id": 143651, + "name": "Gothog", + "site_detail_url": "https://comicvine.gamespot.com/gothog/4005-143651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143652/", + "id": 143652, + "name": "Whiteface", + "site_detail_url": "https://comicvine.gamespot.com/whiteface/4005-143652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143653/", + "id": 143653, + "name": "Stacy Cromwell", + "site_detail_url": "https://comicvine.gamespot.com/stacy-cromwell/4005-143653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143685/", + "id": 143685, + "name": "Rex", + "site_detail_url": "https://comicvine.gamespot.com/rex/4005-143685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143738/", + "id": 143738, + "name": "Aaron Davis", + "site_detail_url": "https://comicvine.gamespot.com/aaron-davis/4005-143738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-143903/", + "id": 143903, + "name": "Chee", + "site_detail_url": "https://comicvine.gamespot.com/chee/4005-143903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144040/", + "id": 144040, + "name": "Doctor Emmet", + "site_detail_url": "https://comicvine.gamespot.com/doctor-emmet/4005-144040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144073/", + "id": 144073, + "name": "Mysteria", + "site_detail_url": "https://comicvine.gamespot.com/mysteria/4005-144073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144074/", + "id": 144074, + "name": "Silas Thorne", + "site_detail_url": "https://comicvine.gamespot.com/silas-thorne/4005-144074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144102/", + "id": 144102, + "name": "The Forgotten", + "site_detail_url": "https://comicvine.gamespot.com/the-forgotten/4005-144102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144286/", + "id": 144286, + "name": "Eric Lynch", + "site_detail_url": "https://comicvine.gamespot.com/eric-lynch/4005-144286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144287/", + "id": 144287, + "name": "Jailer", + "site_detail_url": "https://comicvine.gamespot.com/jailer/4005-144287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144288/", + "id": 144288, + "name": "Tatyana", + "site_detail_url": "https://comicvine.gamespot.com/tatyana/4005-144288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144289/", + "id": 144289, + "name": "Ceres Goldstein", + "site_detail_url": "https://comicvine.gamespot.com/ceres-goldstein/4005-144289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144290/", + "id": 144290, + "name": "Rat King", + "site_detail_url": "https://comicvine.gamespot.com/rat-king/4005-144290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144318/", + "id": 144318, + "name": "Theodore Mason", + "site_detail_url": "https://comicvine.gamespot.com/theodore-mason/4005-144318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144320/", + "id": 144320, + "name": "Siphon", + "site_detail_url": "https://comicvine.gamespot.com/siphon/4005-144320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144324/", + "id": 144324, + "name": "Father Coen", + "site_detail_url": "https://comicvine.gamespot.com/father-coen/4005-144324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144348/", + "id": 144348, + "name": "Mortalis", + "site_detail_url": "https://comicvine.gamespot.com/mortalis/4005-144348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144357/", + "id": 144357, + "name": "X'Andria", + "site_detail_url": "https://comicvine.gamespot.com/xandria/4005-144357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144359/", + "id": 144359, + "name": "Cyslin Myr", + "site_detail_url": "https://comicvine.gamespot.com/cyslin-myr/4005-144359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144453/", + "id": 144453, + "name": "Patrick Conrad", + "site_detail_url": "https://comicvine.gamespot.com/patrick-conrad/4005-144453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144474/", + "id": 144474, + "name": "Matthus", + "site_detail_url": "https://comicvine.gamespot.com/matthus/4005-144474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144487/", + "id": 144487, + "name": "Desire", + "site_detail_url": "https://comicvine.gamespot.com/desire/4005-144487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144512/", + "id": 144512, + "name": "Mal Rossi", + "site_detail_url": "https://comicvine.gamespot.com/mal-rossi/4005-144512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144532/", + "id": 144532, + "name": "Sun King", + "site_detail_url": "https://comicvine.gamespot.com/sun-king/4005-144532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144540/", + "id": 144540, + "name": "Baron Cemetery", + "site_detail_url": "https://comicvine.gamespot.com/baron-cemetery/4005-144540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144544/", + "id": 144544, + "name": "Eden Vale", + "site_detail_url": "https://comicvine.gamespot.com/eden-vale/4005-144544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144552/", + "id": 144552, + "name": "Prxuse", + "site_detail_url": "https://comicvine.gamespot.com/prxuse/4005-144552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144567/", + "id": 144567, + "name": "Azur", + "site_detail_url": "https://comicvine.gamespot.com/azur/4005-144567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144568/", + "id": 144568, + "name": "Mander", + "site_detail_url": "https://comicvine.gamespot.com/mander/4005-144568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144575/", + "id": 144575, + "name": "Zach", + "site_detail_url": "https://comicvine.gamespot.com/zach/4005-144575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144576/", + "id": 144576, + "name": "Michaela Ladak", + "site_detail_url": "https://comicvine.gamespot.com/michaela-ladak/4005-144576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144593/", + "id": 144593, + "name": "Jaagur", + "site_detail_url": "https://comicvine.gamespot.com/jaagur/4005-144593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144654/", + "id": 144654, + "name": "Bats", + "site_detail_url": "https://comicvine.gamespot.com/bats/4005-144654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144698/", + "id": 144698, + "name": "Kurg", + "site_detail_url": "https://comicvine.gamespot.com/kurg/4005-144698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144699/", + "id": 144699, + "name": "Kruk", + "site_detail_url": "https://comicvine.gamespot.com/kruk/4005-144699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144700/", + "id": 144700, + "name": "Detective Simons", + "site_detail_url": "https://comicvine.gamespot.com/detective-simons/4005-144700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144702/", + "id": 144702, + "name": "Larissa", + "site_detail_url": "https://comicvine.gamespot.com/larissa/4005-144702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144703/", + "id": 144703, + "name": "Nkotha", + "site_detail_url": "https://comicvine.gamespot.com/nkotha/4005-144703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144704/", + "id": 144704, + "name": "Egon", + "site_detail_url": "https://comicvine.gamespot.com/egon/4005-144704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144706/", + "id": 144706, + "name": "Karaguchi Inoyawa", + "site_detail_url": "https://comicvine.gamespot.com/karaguchi-inoyawa/4005-144706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144710/", + "id": 144710, + "name": "Maddie", + "site_detail_url": "https://comicvine.gamespot.com/maddie/4005-144710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144712/", + "id": 144712, + "name": "Magna Tolvan", + "site_detail_url": "https://comicvine.gamespot.com/magna-tolvan/4005-144712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144744/", + "id": 144744, + "name": "Meg Fallon", + "site_detail_url": "https://comicvine.gamespot.com/meg-fallon/4005-144744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144745/", + "id": 144745, + "name": "Fitch", + "site_detail_url": "https://comicvine.gamespot.com/fitch/4005-144745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144746/", + "id": 144746, + "name": "Cross", + "site_detail_url": "https://comicvine.gamespot.com/cross/4005-144746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144866/", + "id": 144866, + "name": "Buzz Mason", + "site_detail_url": "https://comicvine.gamespot.com/buzz-mason/4005-144866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-144867/", + "id": 144867, + "name": "Howard Fallon", + "site_detail_url": "https://comicvine.gamespot.com/howard-fallon/4005-144867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145003/", + "id": 145003, + "name": "Moke", + "site_detail_url": "https://comicvine.gamespot.com/moke/4005-145003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145004/", + "id": 145004, + "name": "Ike", + "site_detail_url": "https://comicvine.gamespot.com/ike/4005-145004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145042/", + "id": 145042, + "name": "Galinca Stenkov", + "site_detail_url": "https://comicvine.gamespot.com/galinca-stenkov/4005-145042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145052/", + "id": 145052, + "name": "Voyager", + "site_detail_url": "https://comicvine.gamespot.com/voyager/4005-145052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145054/", + "id": 145054, + "name": "Lincoln Campbell", + "site_detail_url": "https://comicvine.gamespot.com/lincoln-campbell/4005-145054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145103/", + "id": 145103, + "name": "Gun-R", + "site_detail_url": "https://comicvine.gamespot.com/gun-r/4005-145103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145108/", + "id": 145108, + "name": "Marmelzat", + "site_detail_url": "https://comicvine.gamespot.com/marmelzat/4005-145108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145109/", + "id": 145109, + "name": "'Strator Porus", + "site_detail_url": "https://comicvine.gamespot.com/strator-porus/4005-145109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145111/", + "id": 145111, + "name": "Luna Snow", + "site_detail_url": "https://comicvine.gamespot.com/luna-snow/4005-145111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145153/", + "id": 145153, + "name": "Keiko Levine", + "site_detail_url": "https://comicvine.gamespot.com/keiko-levine/4005-145153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145181/", + "id": 145181, + "name": "Madrimar", + "site_detail_url": "https://comicvine.gamespot.com/madrimar/4005-145181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145184/", + "id": 145184, + "name": "Acero", + "site_detail_url": "https://comicvine.gamespot.com/acero/4005-145184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145188/", + "id": 145188, + "name": "Dr. Hayes", + "site_detail_url": "https://comicvine.gamespot.com/dr-hayes/4005-145188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145190/", + "id": 145190, + "name": "Ferene the Other", + "site_detail_url": "https://comicvine.gamespot.com/ferene-the-other/4005-145190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145191/", + "id": 145191, + "name": "Drall", + "site_detail_url": "https://comicvine.gamespot.com/drall/4005-145191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145192/", + "id": 145192, + "name": "Mentacle", + "site_detail_url": "https://comicvine.gamespot.com/mentacle/4005-145192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145193/", + "id": 145193, + "name": "Molyn", + "site_detail_url": "https://comicvine.gamespot.com/molyn/4005-145193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145197/", + "id": 145197, + "name": "Victory", + "site_detail_url": "https://comicvine.gamespot.com/victory/4005-145197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145232/", + "id": 145232, + "name": "Imani", + "site_detail_url": "https://comicvine.gamespot.com/imani/4005-145232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145235/", + "id": 145235, + "name": "Magdalena Velez", + "site_detail_url": "https://comicvine.gamespot.com/magdalena-velez/4005-145235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145283/", + "id": 145283, + "name": "Uluath", + "site_detail_url": "https://comicvine.gamespot.com/uluath/4005-145283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145288/", + "id": 145288, + "name": "Sandy", + "site_detail_url": "https://comicvine.gamespot.com/sandy/4005-145288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145351/", + "id": 145351, + "name": "Hannah Jones", + "site_detail_url": "https://comicvine.gamespot.com/hannah-jones/4005-145351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145418/", + "id": 145418, + "name": "Margaret Braddock", + "site_detail_url": "https://comicvine.gamespot.com/margaret-braddock/4005-145418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145420/", + "id": 145420, + "name": "Truth", + "site_detail_url": "https://comicvine.gamespot.com/truth/4005-145420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145421/", + "id": 145421, + "name": "Robyn Meiser Malt", + "site_detail_url": "https://comicvine.gamespot.com/robyn-meiser-malt/4005-145421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145444/", + "id": 145444, + "name": "Higher Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/higher-evolutionary/4005-145444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145445/", + "id": 145445, + "name": "Moonlight Eye", + "site_detail_url": "https://comicvine.gamespot.com/moonlight-eye/4005-145445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145446/", + "id": 145446, + "name": "Mrs. Dawood", + "site_detail_url": "https://comicvine.gamespot.com/mrs-dawood/4005-145446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145498/", + "id": 145498, + "name": "Lickspit", + "site_detail_url": "https://comicvine.gamespot.com/lickspit/4005-145498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145499/", + "id": 145499, + "name": "Ly Quang", + "site_detail_url": "https://comicvine.gamespot.com/ly-quang/4005-145499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145500/", + "id": 145500, + "name": "DJ", + "site_detail_url": "https://comicvine.gamespot.com/dj/4005-145500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145505/", + "id": 145505, + "name": "Amazo-Maxi-Woman", + "site_detail_url": "https://comicvine.gamespot.com/amazo-maxi-woman/4005-145505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145506/", + "id": 145506, + "name": "Panther Cub", + "site_detail_url": "https://comicvine.gamespot.com/panther-cub/4005-145506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145507/", + "id": 145507, + "name": "Sterling", + "site_detail_url": "https://comicvine.gamespot.com/sterling/4005-145507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145508/", + "id": 145508, + "name": "Mant", + "site_detail_url": "https://comicvine.gamespot.com/mant/4005-145508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145509/", + "id": 145509, + "name": "Miss Thing", + "site_detail_url": "https://comicvine.gamespot.com/miss-thing/4005-145509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145510/", + "id": 145510, + "name": "General Darlegung", + "site_detail_url": "https://comicvine.gamespot.com/general-darlegung/4005-145510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145515/", + "id": 145515, + "name": "Mr. Sanderson", + "site_detail_url": "https://comicvine.gamespot.com/mr-sanderson/4005-145515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145516/", + "id": 145516, + "name": "Mr. Parker", + "site_detail_url": "https://comicvine.gamespot.com/mr-parker/4005-145516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145517/", + "id": 145517, + "name": "Emily Carstairs", + "site_detail_url": "https://comicvine.gamespot.com/emily-carstairs/4005-145517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145518/", + "id": 145518, + "name": "Mr. Parsons", + "site_detail_url": "https://comicvine.gamespot.com/mr-parsons/4005-145518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145519/", + "id": 145519, + "name": "Little Bobby", + "site_detail_url": "https://comicvine.gamespot.com/little-bobby/4005-145519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145677/", + "id": 145677, + "name": "Sharon Rogers", + "site_detail_url": "https://comicvine.gamespot.com/sharon-rogers/4005-145677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145678/", + "id": 145678, + "name": "Shen-Yu", + "site_detail_url": "https://comicvine.gamespot.com/shen-yu/4005-145678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145679/", + "id": 145679, + "name": "Garrotte", + "site_detail_url": "https://comicvine.gamespot.com/garrotte/4005-145679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145680/", + "id": 145680, + "name": "Blokk", + "site_detail_url": "https://comicvine.gamespot.com/blokk/4005-145680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145681/", + "id": 145681, + "name": "Trinary", + "site_detail_url": "https://comicvine.gamespot.com/trinary/4005-145681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145713/", + "id": 145713, + "name": "Challenger", + "site_detail_url": "https://comicvine.gamespot.com/challenger/4005-145713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145911/", + "id": 145911, + "name": "Vincent Petrocelli", + "site_detail_url": "https://comicvine.gamespot.com/vincent-petrocelli/4005-145911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145912/", + "id": 145912, + "name": "Rachna Koul", + "site_detail_url": "https://comicvine.gamespot.com/rachna-koul/4005-145912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145921/", + "id": 145921, + "name": "Lord Doom", + "site_detail_url": "https://comicvine.gamespot.com/lord-doom/4005-145921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145927/", + "id": 145927, + "name": "Canasta", + "site_detail_url": "https://comicvine.gamespot.com/canasta/4005-145927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145928/", + "id": 145928, + "name": "All-Out", + "site_detail_url": "https://comicvine.gamespot.com/all-out/4005-145928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145929/", + "id": 145929, + "name": "The Attacker", + "site_detail_url": "https://comicvine.gamespot.com/the-attacker/4005-145929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145930/", + "id": 145930, + "name": "Basic Black", + "site_detail_url": "https://comicvine.gamespot.com/basic-black/4005-145930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145931/", + "id": 145931, + "name": "Captain Kinship", + "site_detail_url": "https://comicvine.gamespot.com/captain-kinship/4005-145931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145932/", + "id": 145932, + "name": "Green Guardswoman", + "site_detail_url": "https://comicvine.gamespot.com/green-guardswoman/4005-145932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145933/", + "id": 145933, + "name": "Dahntu", + "site_detail_url": "https://comicvine.gamespot.com/dahntu/4005-145933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145934/", + "id": 145934, + "name": "Harbormaster", + "site_detail_url": "https://comicvine.gamespot.com/harbormaster/4005-145934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145935/", + "id": 145935, + "name": "Kruzado", + "site_detail_url": "https://comicvine.gamespot.com/kruzado/4005-145935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145936/", + "id": 145936, + "name": "Lawman", + "site_detail_url": "https://comicvine.gamespot.com/lawman/4005-145936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145937/", + "id": 145937, + "name": "The Natural", + "site_detail_url": "https://comicvine.gamespot.com/the-natural/4005-145937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145938/", + "id": 145938, + "name": "Scorecard", + "site_detail_url": "https://comicvine.gamespot.com/scorecard/4005-145938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145939/", + "id": 145939, + "name": "Awe-Striker", + "site_detail_url": "https://comicvine.gamespot.com/awe-striker/4005-145939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145940/", + "id": 145940, + "name": "Staten Island Star", + "site_detail_url": "https://comicvine.gamespot.com/staten-island-star/4005-145940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145941/", + "id": 145941, + "name": "Brain Spasm", + "site_detail_url": "https://comicvine.gamespot.com/brain-spasm/4005-145941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145942/", + "id": 145942, + "name": "Haunter", + "site_detail_url": "https://comicvine.gamespot.com/haunter/4005-145942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145943/", + "id": 145943, + "name": "Human Haze", + "site_detail_url": "https://comicvine.gamespot.com/human-haze/4005-145943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145944/", + "id": 145944, + "name": "Iguanid", + "site_detail_url": "https://comicvine.gamespot.com/iguanid/4005-145944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145945/", + "id": 145945, + "name": "Johnny Justice", + "site_detail_url": "https://comicvine.gamespot.com/johnny-justice/4005-145945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145946/", + "id": 145946, + "name": "Panthrax", + "site_detail_url": "https://comicvine.gamespot.com/panthrax/4005-145946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145947/", + "id": 145947, + "name": "Quiblah", + "site_detail_url": "https://comicvine.gamespot.com/quiblah/4005-145947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145948/", + "id": 145948, + "name": "Peace-Lover", + "site_detail_url": "https://comicvine.gamespot.com/peace-lover/4005-145948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145949/", + "id": 145949, + "name": "Saint Hildegard", + "site_detail_url": "https://comicvine.gamespot.com/saint-hildegard/4005-145949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145950/", + "id": 145950, + "name": "Spaceheat", + "site_detail_url": "https://comicvine.gamespot.com/spaceheat/4005-145950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145951/", + "id": 145951, + "name": "Stone-Tough", + "site_detail_url": "https://comicvine.gamespot.com/stone-tough/4005-145951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145952/", + "id": 145952, + "name": "The Tosser", + "site_detail_url": "https://comicvine.gamespot.com/the-tosser/4005-145952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145953/", + "id": 145953, + "name": "U.S. Annie", + "site_detail_url": "https://comicvine.gamespot.com/us-annie/4005-145953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145954/", + "id": 145954, + "name": "Winter Woman", + "site_detail_url": "https://comicvine.gamespot.com/winter-woman/4005-145954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145955/", + "id": 145955, + "name": "Warbug", + "site_detail_url": "https://comicvine.gamespot.com/warbug/4005-145955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145956/", + "id": 145956, + "name": "Xantippe", + "site_detail_url": "https://comicvine.gamespot.com/xantippe/4005-145956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145957/", + "id": 145957, + "name": "The Zapster", + "site_detail_url": "https://comicvine.gamespot.com/the-zapster/4005-145957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145975/", + "id": 145975, + "name": "Orange Crusher", + "site_detail_url": "https://comicvine.gamespot.com/orange-crusher/4005-145975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145982/", + "id": 145982, + "name": "Captain Zolandia", + "site_detail_url": "https://comicvine.gamespot.com/captain-zolandia/4005-145982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145983/", + "id": 145983, + "name": "Zola Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/zola-iron-man/4005-145983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145984/", + "id": 145984, + "name": "Zola Hulk", + "site_detail_url": "https://comicvine.gamespot.com/zola-hulk/4005-145984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145985/", + "id": 145985, + "name": "Zola Thor", + "site_detail_url": "https://comicvine.gamespot.com/zola-thor/4005-145985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145986/", + "id": 145986, + "name": "Tattoo", + "site_detail_url": "https://comicvine.gamespot.com/tattoo/4005-145986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145987/", + "id": 145987, + "name": "Bishop", + "site_detail_url": "https://comicvine.gamespot.com/bishop/4005-145987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145988/", + "id": 145988, + "name": "Knight", + "site_detail_url": "https://comicvine.gamespot.com/knight/4005-145988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145989/", + "id": 145989, + "name": "Rook", + "site_detail_url": "https://comicvine.gamespot.com/rook/4005-145989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145990/", + "id": 145990, + "name": "Laird Jamie of Glen Travail", + "site_detail_url": "https://comicvine.gamespot.com/laird-jamie-of-glen-travail/4005-145990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-145991/", + "id": 145991, + "name": "Koontz Satellite Killer", + "site_detail_url": "https://comicvine.gamespot.com/koontz-satellite-killer/4005-145991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146023/", + "id": 146023, + "name": "Scylla", + "site_detail_url": "https://comicvine.gamespot.com/scylla/4005-146023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146025/", + "id": 146025, + "name": "Mycroft", + "site_detail_url": "https://comicvine.gamespot.com/mycroft/4005-146025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146026/", + "id": 146026, + "name": "Mikas", + "site_detail_url": "https://comicvine.gamespot.com/mikas/4005-146026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146036/", + "id": 146036, + "name": "Raga", + "site_detail_url": "https://comicvine.gamespot.com/raga/4005-146036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146049/", + "id": 146049, + "name": "Grace", + "site_detail_url": "https://comicvine.gamespot.com/grace/4005-146049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146061/", + "id": 146061, + "name": "Doomprayer", + "site_detail_url": "https://comicvine.gamespot.com/doomprayer/4005-146061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146062/", + "id": 146062, + "name": "Lucy Chambers Bont", + "site_detail_url": "https://comicvine.gamespot.com/lucy-chambers-bont/4005-146062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146162/", + "id": 146162, + "name": "Pig-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/pig-gwen/4005-146162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146228/", + "id": 146228, + "name": "Tana", + "site_detail_url": "https://comicvine.gamespot.com/tana/4005-146228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146282/", + "id": 146282, + "name": "The Raven", + "site_detail_url": "https://comicvine.gamespot.com/the-raven/4005-146282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146291/", + "id": 146291, + "name": "Miranda Woods", + "site_detail_url": "https://comicvine.gamespot.com/miranda-woods/4005-146291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146293/", + "id": 146293, + "name": "Eli McIntyre", + "site_detail_url": "https://comicvine.gamespot.com/eli-mcintyre/4005-146293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146325/", + "id": 146325, + "name": "Agent McElroy", + "site_detail_url": "https://comicvine.gamespot.com/agent-mcelroy/4005-146325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146355/", + "id": 146355, + "name": "Liang", + "site_detail_url": "https://comicvine.gamespot.com/liang/4005-146355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146357/", + "id": 146357, + "name": "Scar", + "site_detail_url": "https://comicvine.gamespot.com/scar/4005-146357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146358/", + "id": 146358, + "name": "Quinon", + "site_detail_url": "https://comicvine.gamespot.com/quinon/4005-146358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146438/", + "id": 146438, + "name": "General Hirito", + "site_detail_url": "https://comicvine.gamespot.com/general-hirito/4005-146438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146537/", + "id": 146537, + "name": "Nevil Cygni", + "site_detail_url": "https://comicvine.gamespot.com/nevil-cygni/4005-146537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146538/", + "id": 146538, + "name": "Eli Vanto", + "site_detail_url": "https://comicvine.gamespot.com/eli-vanto/4005-146538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146601/", + "id": 146601, + "name": "Manduu", + "site_detail_url": "https://comicvine.gamespot.com/manduu/4005-146601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146680/", + "id": 146680, + "name": "Wendy Wong", + "site_detail_url": "https://comicvine.gamespot.com/wendy-wong/4005-146680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146681/", + "id": 146681, + "name": "Crazy Maisie", + "site_detail_url": "https://comicvine.gamespot.com/crazy-maisie/4005-146681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146686/", + "id": 146686, + "name": "Orphan Maker", + "site_detail_url": "https://comicvine.gamespot.com/orphan-maker/4005-146686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146687/", + "id": 146687, + "name": "Scythian", + "site_detail_url": "https://comicvine.gamespot.com/scythian/4005-146687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146696/", + "id": 146696, + "name": "Miss Mech", + "site_detail_url": "https://comicvine.gamespot.com/miss-mech/4005-146696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146778/", + "id": 146778, + "name": "Asthma Monster", + "site_detail_url": "https://comicvine.gamespot.com/asthma-monster/4005-146778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146779/", + "id": 146779, + "name": "Allergen Al", + "site_detail_url": "https://comicvine.gamespot.com/allergen-al/4005-146779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146780/", + "id": 146780, + "name": "Dust Dragon", + "site_detail_url": "https://comicvine.gamespot.com/dust-dragon/4005-146780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146781/", + "id": 146781, + "name": "Feather Boa", + "site_detail_url": "https://comicvine.gamespot.com/feather-boa/4005-146781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146782/", + "id": 146782, + "name": "Furball", + "site_detail_url": "https://comicvine.gamespot.com/furball/4005-146782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146783/", + "id": 146783, + "name": "Rugburn", + "site_detail_url": "https://comicvine.gamespot.com/rugburn/4005-146783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146808/", + "id": 146808, + "name": "Ahmed", + "site_detail_url": "https://comicvine.gamespot.com/ahmed/4005-146808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146809/", + "id": 146809, + "name": "Burt", + "site_detail_url": "https://comicvine.gamespot.com/burt/4005-146809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146810/", + "id": 146810, + "name": "Gregori", + "site_detail_url": "https://comicvine.gamespot.com/gregori/4005-146810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146811/", + "id": 146811, + "name": "Sophie", + "site_detail_url": "https://comicvine.gamespot.com/sophie/4005-146811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146812/", + "id": 146812, + "name": "Yuri", + "site_detail_url": "https://comicvine.gamespot.com/yuri/4005-146812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146813/", + "id": 146813, + "name": "Sheriff MacReedy", + "site_detail_url": "https://comicvine.gamespot.com/sheriff-macreedy/4005-146813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146814/", + "id": 146814, + "name": "Bitterhand", + "site_detail_url": "https://comicvine.gamespot.com/bitterhand/4005-146814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146815/", + "id": 146815, + "name": "Carlos Huevos", + "site_detail_url": "https://comicvine.gamespot.com/carlos-huevos/4005-146815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146825/", + "id": 146825, + "name": "Georgia Jenkins", + "site_detail_url": "https://comicvine.gamespot.com/georgia-jenkins/4005-146825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146838/", + "id": 146838, + "name": "Deborah", + "site_detail_url": "https://comicvine.gamespot.com/deborah/4005-146838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146839/", + "id": 146839, + "name": "Bruce", + "site_detail_url": "https://comicvine.gamespot.com/bruce/4005-146839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146877/", + "id": 146877, + "name": "Daniel Connor", + "site_detail_url": "https://comicvine.gamespot.com/daniel-connor/4005-146877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146878/", + "id": 146878, + "name": "Kiefer", + "site_detail_url": "https://comicvine.gamespot.com/kiefer/4005-146878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146879/", + "id": 146879, + "name": "Chuck the Dwarf", + "site_detail_url": "https://comicvine.gamespot.com/chuck-the-dwarf/4005-146879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146934/", + "id": 146934, + "name": "Eugene Cattivo", + "site_detail_url": "https://comicvine.gamespot.com/eugene-cattivo/4005-146934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146935/", + "id": 146935, + "name": "Newton", + "site_detail_url": "https://comicvine.gamespot.com/newton/4005-146935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146936/", + "id": 146936, + "name": "Sgt. Mark Danzinger", + "site_detail_url": "https://comicvine.gamespot.com/sgt-mark-danzinger/4005-146936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146937/", + "id": 146937, + "name": "Stassen", + "site_detail_url": "https://comicvine.gamespot.com/stassen/4005-146937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146938/", + "id": 146938, + "name": "Stern", + "site_detail_url": "https://comicvine.gamespot.com/stern/4005-146938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146939/", + "id": 146939, + "name": "Fredrickson", + "site_detail_url": "https://comicvine.gamespot.com/fredrickson/4005-146939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146940/", + "id": 146940, + "name": "Agent Morgan", + "site_detail_url": "https://comicvine.gamespot.com/agent-morgan/4005-146940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146941/", + "id": 146941, + "name": "Pig Malone", + "site_detail_url": "https://comicvine.gamespot.com/pig-malone/4005-146941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146942/", + "id": 146942, + "name": "Michael", + "site_detail_url": "https://comicvine.gamespot.com/michael/4005-146942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146943/", + "id": 146943, + "name": "Magna Mind", + "site_detail_url": "https://comicvine.gamespot.com/magna-mind/4005-146943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146944/", + "id": 146944, + "name": "Anton Prebble", + "site_detail_url": "https://comicvine.gamespot.com/anton-prebble/4005-146944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146945/", + "id": 146945, + "name": "Frank Bauer", + "site_detail_url": "https://comicvine.gamespot.com/frank-bauer/4005-146945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146946/", + "id": 146946, + "name": "Carter Trask", + "site_detail_url": "https://comicvine.gamespot.com/carter-trask/4005-146946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146947/", + "id": 146947, + "name": "Alex Kirscher", + "site_detail_url": "https://comicvine.gamespot.com/alex-kirscher/4005-146947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146948/", + "id": 146948, + "name": "Fred", + "site_detail_url": "https://comicvine.gamespot.com/fred/4005-146948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146949/", + "id": 146949, + "name": "Carlo", + "site_detail_url": "https://comicvine.gamespot.com/carlo/4005-146949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146950/", + "id": 146950, + "name": "SI'Ur'Boroth", + "site_detail_url": "https://comicvine.gamespot.com/siurboroth/4005-146950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146992/", + "id": 146992, + "name": "Wendigo (Spirit)", + "site_detail_url": "https://comicvine.gamespot.com/wendigo-spirit/4005-146992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-146993/", + "id": 146993, + "name": "Michael Fleet", + "site_detail_url": "https://comicvine.gamespot.com/michael-fleet/4005-146993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147038/", + "id": 147038, + "name": "Count Barsac", + "site_detail_url": "https://comicvine.gamespot.com/count-barsac/4005-147038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147039/", + "id": 147039, + "name": "Count Varma", + "site_detail_url": "https://comicvine.gamespot.com/count-varma/4005-147039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147040/", + "id": 147040, + "name": "Kraska", + "site_detail_url": "https://comicvine.gamespot.com/kraska/4005-147040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147041/", + "id": 147041, + "name": "Death-Flame", + "site_detail_url": "https://comicvine.gamespot.com/death-flame/4005-147041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147042/", + "id": 147042, + "name": "Glori Murphy", + "site_detail_url": "https://comicvine.gamespot.com/glori-murphy/4005-147042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147115/", + "id": 147115, + "name": "Jason Spierling", + "site_detail_url": "https://comicvine.gamespot.com/jason-spierling/4005-147115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147146/", + "id": 147146, + "name": "Arihnda Pryce", + "site_detail_url": "https://comicvine.gamespot.com/arihnda-pryce/4005-147146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147147/", + "id": 147147, + "name": "Haze Mancer", + "site_detail_url": "https://comicvine.gamespot.com/haze-mancer/4005-147147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147148/", + "id": 147148, + "name": "Jennifer Kao", + "site_detail_url": "https://comicvine.gamespot.com/jennifer-kao/4005-147148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147216/", + "id": 147216, + "name": "Greywing", + "site_detail_url": "https://comicvine.gamespot.com/greywing/4005-147216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147307/", + "id": 147307, + "name": "Bernardo Latta", + "site_detail_url": "https://comicvine.gamespot.com/bernardo-latta/4005-147307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147342/", + "id": 147342, + "name": "Mui", + "site_detail_url": "https://comicvine.gamespot.com/mui/4005-147342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147343/", + "id": 147343, + "name": "Squy'rr", + "site_detail_url": "https://comicvine.gamespot.com/squyrr/4005-147343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147344/", + "id": 147344, + "name": "Loog", + "site_detail_url": "https://comicvine.gamespot.com/loog/4005-147344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147345/", + "id": 147345, + "name": "Obsydian", + "site_detail_url": "https://comicvine.gamespot.com/obsydian/4005-147345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147346/", + "id": 147346, + "name": "Kyrie", + "site_detail_url": "https://comicvine.gamespot.com/kyrie/4005-147346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147347/", + "id": 147347, + "name": "Commander Syrus", + "site_detail_url": "https://comicvine.gamespot.com/commander-syrus/4005-147347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147348/", + "id": 147348, + "name": "Hugh Taylor", + "site_detail_url": "https://comicvine.gamespot.com/hugh-taylor/4005-147348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147353/", + "id": 147353, + "name": "Rubylyn Bato", + "site_detail_url": "https://comicvine.gamespot.com/rubylyn-bato/4005-147353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147438/", + "id": 147438, + "name": "Amazing Pinhead", + "site_detail_url": "https://comicvine.gamespot.com/amazing-pinhead/4005-147438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147439/", + "id": 147439, + "name": "Marge", + "site_detail_url": "https://comicvine.gamespot.com/marge/4005-147439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147440/", + "id": 147440, + "name": "Skratchetti", + "site_detail_url": "https://comicvine.gamespot.com/skratchetti/4005-147440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147441/", + "id": 147441, + "name": "Tess", + "site_detail_url": "https://comicvine.gamespot.com/tess/4005-147441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147443/", + "id": 147443, + "name": "Acitua", + "site_detail_url": "https://comicvine.gamespot.com/acitua/4005-147443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147444/", + "id": 147444, + "name": "Crack", + "site_detail_url": "https://comicvine.gamespot.com/crack/4005-147444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147445/", + "id": 147445, + "name": "Ice", + "site_detail_url": "https://comicvine.gamespot.com/ice/4005-147445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147446/", + "id": 147446, + "name": "Ember Quade", + "site_detail_url": "https://comicvine.gamespot.com/ember-quade/4005-147446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147481/", + "id": 147481, + "name": "Starshine", + "site_detail_url": "https://comicvine.gamespot.com/starshine/4005-147481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147486/", + "id": 147486, + "name": "Captain America (HYDRA)", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-hydra/4005-147486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147501/", + "id": 147501, + "name": "Kaylee Kirk", + "site_detail_url": "https://comicvine.gamespot.com/kaylee-kirk/4005-147501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147518/", + "id": 147518, + "name": "Deadeye Dick", + "site_detail_url": "https://comicvine.gamespot.com/deadeye-dick/4005-147518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147519/", + "id": 147519, + "name": "Pigskin", + "site_detail_url": "https://comicvine.gamespot.com/pigskin/4005-147519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147520/", + "id": 147520, + "name": "Vance Rebus", + "site_detail_url": "https://comicvine.gamespot.com/vance-rebus/4005-147520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147521/", + "id": 147521, + "name": "Mega Max", + "site_detail_url": "https://comicvine.gamespot.com/mega-max/4005-147521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147522/", + "id": 147522, + "name": "Reckless Eric", + "site_detail_url": "https://comicvine.gamespot.com/reckless-eric/4005-147522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147523/", + "id": 147523, + "name": "Mini Max", + "site_detail_url": "https://comicvine.gamespot.com/mini-max/4005-147523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147524/", + "id": 147524, + "name": "Tiny E", + "site_detail_url": "https://comicvine.gamespot.com/tiny-e/4005-147524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147526/", + "id": 147526, + "name": "Conte Alvise Gianus", + "site_detail_url": "https://comicvine.gamespot.com/conte-alvise-gianus/4005-147526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147664/", + "id": 147664, + "name": "Alisa Jones", + "site_detail_url": "https://comicvine.gamespot.com/alisa-jones/4005-147664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147697/", + "id": 147697, + "name": "Lavish", + "site_detail_url": "https://comicvine.gamespot.com/lavish/4005-147697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147758/", + "id": 147758, + "name": "Doc Jaw", + "site_detail_url": "https://comicvine.gamespot.com/doc-jaw/4005-147758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147822/", + "id": 147822, + "name": "A-14", + "site_detail_url": "https://comicvine.gamespot.com/a-14/4005-147822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147856/", + "id": 147856, + "name": "Rex Strickland", + "site_detail_url": "https://comicvine.gamespot.com/rex-strickland/4005-147856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-147901/", + "id": 147901, + "name": "Agent Cole", + "site_detail_url": "https://comicvine.gamespot.com/agent-cole/4005-147901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148017/", + "id": 148017, + "name": "Jack Rogers", + "site_detail_url": "https://comicvine.gamespot.com/jack-rogers/4005-148017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148072/", + "id": 148072, + "name": "Andre Mornet", + "site_detail_url": "https://comicvine.gamespot.com/andre-mornet/4005-148072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148096/", + "id": 148096, + "name": "Ajort", + "site_detail_url": "https://comicvine.gamespot.com/ajort/4005-148096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148097/", + "id": 148097, + "name": "Commander Ak'strk", + "site_detail_url": "https://comicvine.gamespot.com/commander-akstrk/4005-148097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148098/", + "id": 148098, + "name": "Akihiko", + "site_detail_url": "https://comicvine.gamespot.com/akihiko/4005-148098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148099/", + "id": 148099, + "name": "Angrir", + "site_detail_url": "https://comicvine.gamespot.com/angrir/4005-148099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148100/", + "id": 148100, + "name": "Armada", + "site_detail_url": "https://comicvine.gamespot.com/armada/4005-148100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148101/", + "id": 148101, + "name": "Armand Petrov", + "site_detail_url": "https://comicvine.gamespot.com/armand-petrov/4005-148101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148102/", + "id": 148102, + "name": "Arokine", + "site_detail_url": "https://comicvine.gamespot.com/arokine/4005-148102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148104/", + "id": 148104, + "name": "Austin Salmi", + "site_detail_url": "https://comicvine.gamespot.com/austin-salmi/4005-148104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148105/", + "id": 148105, + "name": "Av-Rom", + "site_detail_url": "https://comicvine.gamespot.com/av-rom/4005-148105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148107/", + "id": 148107, + "name": "Snowguard", + "site_detail_url": "https://comicvine.gamespot.com/snowguard/4005-148107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148207/", + "id": 148207, + "name": "Asahi Verschlagen", + "site_detail_url": "https://comicvine.gamespot.com/asahi-verschlagen/4005-148207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148208/", + "id": 148208, + "name": "Guardsman (Baker)", + "site_detail_url": "https://comicvine.gamespot.com/guardsman-baker/4005-148208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148209/", + "id": 148209, + "name": "Barricade", + "site_detail_url": "https://comicvine.gamespot.com/barricade/4005-148209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148214/", + "id": 148214, + "name": "Beetle (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/beetle-hobgoblin/4005-148214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148215/", + "id": 148215, + "name": "Behemoth", + "site_detail_url": "https://comicvine.gamespot.com/behemoth/4005-148215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148228/", + "id": 148228, + "name": "Benhazin", + "site_detail_url": "https://comicvine.gamespot.com/benhazin/4005-148228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148230/", + "id": 148230, + "name": "Bern", + "site_detail_url": "https://comicvine.gamespot.com/bern/4005-148230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148235/", + "id": 148235, + "name": "Bisento ", + "site_detail_url": "https://comicvine.gamespot.com/bisento/4005-148235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148236/", + "id": 148236, + "name": "Black Panther 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-1000000-bc/4005-148236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148237/", + "id": 148237, + "name": "Blackthorn", + "site_detail_url": "https://comicvine.gamespot.com/blackthorn/4005-148237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148238/", + "id": 148238, + "name": "Behemoth", + "site_detail_url": "https://comicvine.gamespot.com/behemoth/4005-148238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148240/", + "id": 148240, + "name": "Sila", + "site_detail_url": "https://comicvine.gamespot.com/sila/4005-148240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148243/", + "id": 148243, + "name": "Miranda", + "site_detail_url": "https://comicvine.gamespot.com/miranda/4005-148243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148252/", + "id": 148252, + "name": "Marcella Callasantos", + "site_detail_url": "https://comicvine.gamespot.com/marcella-callasantos/4005-148252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148253/", + "id": 148253, + "name": "Harry Bellinger", + "site_detail_url": "https://comicvine.gamespot.com/harry-bellinger/4005-148253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148254/", + "id": 148254, + "name": "Matteo Callasantos", + "site_detail_url": "https://comicvine.gamespot.com/matteo-callasantos/4005-148254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148265/", + "id": 148265, + "name": "Tenth Brother", + "site_detail_url": "https://comicvine.gamespot.com/tenth-brother/4005-148265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148266/", + "id": 148266, + "name": "Eighth Brother", + "site_detail_url": "https://comicvine.gamespot.com/eighth-brother/4005-148266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148267/", + "id": 148267, + "name": "Ninth Sister", + "site_detail_url": "https://comicvine.gamespot.com/ninth-sister/4005-148267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148273/", + "id": 148273, + "name": "Sixth Brother", + "site_detail_url": "https://comicvine.gamespot.com/sixth-brother/4005-148273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148274/", + "id": 148274, + "name": "Ms. January", + "site_detail_url": "https://comicvine.gamespot.com/ms-january/4005-148274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148319/", + "id": 148319, + "name": "L3-37", + "site_detail_url": "https://comicvine.gamespot.com/l3-37/4005-148319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148320/", + "id": 148320, + "name": "Kristiss", + "site_detail_url": "https://comicvine.gamespot.com/kristiss/4005-148320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148344/", + "id": 148344, + "name": "Hexxer", + "site_detail_url": "https://comicvine.gamespot.com/hexxer/4005-148344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148345/", + "id": 148345, + "name": "Aeristron", + "site_detail_url": "https://comicvine.gamespot.com/aeristron/4005-148345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148346/", + "id": 148346, + "name": "Agent Hart", + "site_detail_url": "https://comicvine.gamespot.com/agent-hart/4005-148346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148347/", + "id": 148347, + "name": "Hanna Verschlagen", + "site_detail_url": "https://comicvine.gamespot.com/hanna-verschlagen/4005-148347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148348/", + "id": 148348, + "name": "Herr Frocht", + "site_detail_url": "https://comicvine.gamespot.com/herr-frocht/4005-148348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148349/", + "id": 148349, + "name": "Mr. Verschlagen", + "site_detail_url": "https://comicvine.gamespot.com/mr-verschlagen/4005-148349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148350/", + "id": 148350, + "name": "Allo", + "site_detail_url": "https://comicvine.gamespot.com/allo/4005-148350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148351/", + "id": 148351, + "name": "Anky", + "site_detail_url": "https://comicvine.gamespot.com/anky/4005-148351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148399/", + "id": 148399, + "name": "Skrull Cyclone", + "site_detail_url": "https://comicvine.gamespot.com/skrull-cyclone/4005-148399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148499/", + "id": 148499, + "name": "Sandra Ann Brockhurst", + "site_detail_url": "https://comicvine.gamespot.com/sandra-ann-brockhurst/4005-148499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148656/", + "id": 148656, + "name": "Salvo", + "site_detail_url": "https://comicvine.gamespot.com/salvo/4005-148656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148657/", + "id": 148657, + "name": "Bannerman Brown", + "site_detail_url": "https://comicvine.gamespot.com/bannerman-brown/4005-148657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148658/", + "id": 148658, + "name": "Mr. Banks", + "site_detail_url": "https://comicvine.gamespot.com/mr-banks/4005-148658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148662/", + "id": 148662, + "name": "The Chef", + "site_detail_url": "https://comicvine.gamespot.com/the-chef/4005-148662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148663/", + "id": 148663, + "name": "Starboy", + "site_detail_url": "https://comicvine.gamespot.com/starboy/4005-148663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148664/", + "id": 148664, + "name": "Bernard LeBranche", + "site_detail_url": "https://comicvine.gamespot.com/bernard-lebranche/4005-148664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148674/", + "id": 148674, + "name": "Bulldog", + "site_detail_url": "https://comicvine.gamespot.com/bulldog/4005-148674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148675/", + "id": 148675, + "name": "Bestial", + "site_detail_url": "https://comicvine.gamespot.com/bestial/4005-148675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148676/", + "id": 148676, + "name": "Biff Bison", + "site_detail_url": "https://comicvine.gamespot.com/biff-bison/4005-148676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148677/", + "id": 148677, + "name": "Bone Dancer", + "site_detail_url": "https://comicvine.gamespot.com/bone-dancer/4005-148677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148678/", + "id": 148678, + "name": "Brassknuckles", + "site_detail_url": "https://comicvine.gamespot.com/brassknuckles/4005-148678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148679/", + "id": 148679, + "name": "Exomorph", + "site_detail_url": "https://comicvine.gamespot.com/exomorph/4005-148679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148680/", + "id": 148680, + "name": "Disciplinarian", + "site_detail_url": "https://comicvine.gamespot.com/disciplinarian/4005-148680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148681/", + "id": 148681, + "name": "Bryson", + "site_detail_url": "https://comicvine.gamespot.com/bryson/4005-148681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148682/", + "id": 148682, + "name": "Burning Moon", + "site_detail_url": "https://comicvine.gamespot.com/burning-moon/4005-148682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148684/", + "id": 148684, + "name": "Shuten Doji", + "site_detail_url": "https://comicvine.gamespot.com/shuten-doji/4005-148684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148699/", + "id": 148699, + "name": "Lee-Char", + "site_detail_url": "https://comicvine.gamespot.com/lee-char/4005-148699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148730/", + "id": 148730, + "name": "Butcher", + "site_detail_url": "https://comicvine.gamespot.com/butcher/4005-148730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148731/", + "id": 148731, + "name": "Buth", + "site_detail_url": "https://comicvine.gamespot.com/buth/4005-148731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148732/", + "id": 148732, + "name": "Burst", + "site_detail_url": "https://comicvine.gamespot.com/burst/4005-148732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148770/", + "id": 148770, + "name": "Cacus", + "site_detail_url": "https://comicvine.gamespot.com/cacus/4005-148770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148771/", + "id": 148771, + "name": "Commander C'efn", + "site_detail_url": "https://comicvine.gamespot.com/commander-cefn/4005-148771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148772/", + "id": 148772, + "name": "Cal", + "site_detail_url": "https://comicvine.gamespot.com/cal/4005-148772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148783/", + "id": 148783, + "name": "Ferren Barr", + "site_detail_url": "https://comicvine.gamespot.com/ferren-barr/4005-148783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148792/", + "id": 148792, + "name": "Andy Bhang", + "site_detail_url": "https://comicvine.gamespot.com/andy-bhang/4005-148792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148793/", + "id": 148793, + "name": "Sonia Sung", + "site_detail_url": "https://comicvine.gamespot.com/sonia-sung/4005-148793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148794/", + "id": 148794, + "name": "Toma Zaslon", + "site_detail_url": "https://comicvine.gamespot.com/toma-zaslon/4005-148794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148826/", + "id": 148826, + "name": "Pkzkrfmknna", + "site_detail_url": "https://comicvine.gamespot.com/pkzkrfmknna/4005-148826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-148827/", + "id": 148827, + "name": "Kenneth Kincaid Jr.", + "site_detail_url": "https://comicvine.gamespot.com/kenneth-kincaid-jr/4005-148827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149022/", + "id": 149022, + "name": "Princess Fisk", + "site_detail_url": "https://comicvine.gamespot.com/princess-fisk/4005-149022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149057/", + "id": 149057, + "name": "Chelicera", + "site_detail_url": "https://comicvine.gamespot.com/chelicera/4005-149057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149058/", + "id": 149058, + "name": "Lacey", + "site_detail_url": "https://comicvine.gamespot.com/lacey/4005-149058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149059/", + "id": 149059, + "name": "Reese", + "site_detail_url": "https://comicvine.gamespot.com/reese/4005-149059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149124/", + "id": 149124, + "name": "Abigail Mercury", + "site_detail_url": "https://comicvine.gamespot.com/abigail-mercury/4005-149124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149125/", + "id": 149125, + "name": "Sheldon Sanders", + "site_detail_url": "https://comicvine.gamespot.com/sheldon-sanders/4005-149125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149135/", + "id": 149135, + "name": "Vox", + "site_detail_url": "https://comicvine.gamespot.com/vox/4005-149135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149141/", + "id": 149141, + "name": "Raddus", + "site_detail_url": "https://comicvine.gamespot.com/raddus/4005-149141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149176/", + "id": 149176, + "name": "Doctor Frye", + "site_detail_url": "https://comicvine.gamespot.com/doctor-frye/4005-149176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149177/", + "id": 149177, + "name": "Groffon the Regurger", + "site_detail_url": "https://comicvine.gamespot.com/groffon-the-regurger/4005-149177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149187/", + "id": 149187, + "name": "Mt'Nox", + "site_detail_url": "https://comicvine.gamespot.com/mtnox/4005-149187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149208/", + "id": 149208, + "name": "Captain America (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-doppleganger/4005-149208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149209/", + "id": 149209, + "name": "Captiotron", + "site_detail_url": "https://comicvine.gamespot.com/captiotron/4005-149209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149210/", + "id": 149210, + "name": "Carl Lombardi", + "site_detail_url": "https://comicvine.gamespot.com/carl-lombardi/4005-149210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149215/", + "id": 149215, + "name": "Verla", + "site_detail_url": "https://comicvine.gamespot.com/verla/4005-149215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149235/", + "id": 149235, + "name": "Prototype", + "site_detail_url": "https://comicvine.gamespot.com/prototype/4005-149235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149236/", + "id": 149236, + "name": "Cynthia Rossini", + "site_detail_url": "https://comicvine.gamespot.com/cynthia-rossini/4005-149236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149237/", + "id": 149237, + "name": "Shadow Tracer", + "site_detail_url": "https://comicvine.gamespot.com/shadow-tracer/4005-149237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149238/", + "id": 149238, + "name": "Chameleon", + "site_detail_url": "https://comicvine.gamespot.com/chameleon/4005-149238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149239/", + "id": 149239, + "name": "Chaynn", + "site_detail_url": "https://comicvine.gamespot.com/chaynn/4005-149239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149240/", + "id": 149240, + "name": "Chell-Tek", + "site_detail_url": "https://comicvine.gamespot.com/chell-tek/4005-149240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149241/", + "id": 149241, + "name": "Cloud Runner", + "site_detail_url": "https://comicvine.gamespot.com/cloud-runner/4005-149241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149242/", + "id": 149242, + "name": "Colossus (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/colossus-doppleganger/4005-149242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149243/", + "id": 149243, + "name": "Constrictor", + "site_detail_url": "https://comicvine.gamespot.com/constrictor/4005-149243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149252/", + "id": 149252, + "name": "Copper", + "site_detail_url": "https://comicvine.gamespot.com/copper/4005-149252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149254/", + "id": 149254, + "name": "Cordite", + "site_detail_url": "https://comicvine.gamespot.com/cordite/4005-149254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149255/", + "id": 149255, + "name": "Croc", + "site_detail_url": "https://comicvine.gamespot.com/croc/4005-149255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149256/", + "id": 149256, + "name": "Cyclops (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/cyclops-doppleganger/4005-149256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149283/", + "id": 149283, + "name": "D.C.1.", + "site_detail_url": "https://comicvine.gamespot.com/dc1/4005-149283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149284/", + "id": 149284, + "name": "Daak", + "site_detail_url": "https://comicvine.gamespot.com/daak/4005-149284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149285/", + "id": 149285, + "name": "Daillus", + "site_detail_url": "https://comicvine.gamespot.com/daillus/4005-149285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149287/", + "id": 149287, + "name": "Dak", + "site_detail_url": "https://comicvine.gamespot.com/dak/4005-149287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149288/", + "id": 149288, + "name": "Dalx", + "site_detail_url": "https://comicvine.gamespot.com/dalx/4005-149288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149289/", + "id": 149289, + "name": "Damasco", + "site_detail_url": "https://comicvine.gamespot.com/damasco/4005-149289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149311/", + "id": 149311, + "name": "Devil Rig", + "site_detail_url": "https://comicvine.gamespot.com/devil-rig/4005-149311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149312/", + "id": 149312, + "name": "Dharr", + "site_detail_url": "https://comicvine.gamespot.com/dharr/4005-149312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149313/", + "id": 149313, + "name": "Difference Engine", + "site_detail_url": "https://comicvine.gamespot.com/difference-engine/4005-149313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149314/", + "id": 149314, + "name": "Disprosium", + "site_detail_url": "https://comicvine.gamespot.com/disprosium/4005-149314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149370/", + "id": 149370, + "name": "Barokki", + "site_detail_url": "https://comicvine.gamespot.com/barokki/4005-149370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149383/", + "id": 149383, + "name": "Dragon-Fist", + "site_detail_url": "https://comicvine.gamespot.com/dragon-fist/4005-149383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149384/", + "id": 149384, + "name": "Drang", + "site_detail_url": "https://comicvine.gamespot.com/drang/4005-149384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149385/", + "id": 149385, + "name": "Dreadbot", + "site_detail_url": "https://comicvine.gamespot.com/dreadbot/4005-149385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149389/", + "id": 149389, + "name": "Drone", + "site_detail_url": "https://comicvine.gamespot.com/drone/4005-149389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149390/", + "id": 149390, + "name": "Drowning Shadow", + "site_detail_url": "https://comicvine.gamespot.com/drowning-shadow/4005-149390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149391/", + "id": 149391, + "name": "General Dwi-Zann", + "site_detail_url": "https://comicvine.gamespot.com/general-dwi-zann/4005-149391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149392/", + "id": 149392, + "name": "Dylan Mason", + "site_detail_url": "https://comicvine.gamespot.com/dylan-mason/4005-149392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149393/", + "id": 149393, + "name": "Lord Dyngo", + "site_detail_url": "https://comicvine.gamespot.com/lord-dyngo/4005-149393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149394/", + "id": 149394, + "name": "Jackie McGee", + "site_detail_url": "https://comicvine.gamespot.com/jackie-mcgee/4005-149394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149396/", + "id": 149396, + "name": "Garden Snake", + "site_detail_url": "https://comicvine.gamespot.com/garden-snake/4005-149396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149397/", + "id": 149397, + "name": "Xoliswa", + "site_detail_url": "https://comicvine.gamespot.com/xoliswa/4005-149397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149462/", + "id": 149462, + "name": "Progenitor", + "site_detail_url": "https://comicvine.gamespot.com/progenitor/4005-149462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149463/", + "id": 149463, + "name": "Zgreb the Sorrower", + "site_detail_url": "https://comicvine.gamespot.com/zgreb-the-sorrower/4005-149463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149489/", + "id": 149489, + "name": "Liberation McAllister", + "site_detail_url": "https://comicvine.gamespot.com/liberation-mcallister/4005-149489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149490/", + "id": 149490, + "name": "Lyla DeCriscio", + "site_detail_url": "https://comicvine.gamespot.com/lyla-decriscio/4005-149490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149491/", + "id": 149491, + "name": "Sol Edmund", + "site_detail_url": "https://comicvine.gamespot.com/sol-edmund/4005-149491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149492/", + "id": 149492, + "name": "Tilt", + "site_detail_url": "https://comicvine.gamespot.com/tilt/4005-149492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149500/", + "id": 149500, + "name": "Sentress", + "site_detail_url": "https://comicvine.gamespot.com/sentress/4005-149500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149501/", + "id": 149501, + "name": "Batalla", + "site_detail_url": "https://comicvine.gamespot.com/batalla/4005-149501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149539/", + "id": 149539, + "name": "Edgar Lascombe", + "site_detail_url": "https://comicvine.gamespot.com/edgar-lascombe/4005-149539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149540/", + "id": 149540, + "name": "Edwin Darwin", + "site_detail_url": "https://comicvine.gamespot.com/edwin-darwin/4005-149540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149541/", + "id": 149541, + "name": "Electron", + "site_detail_url": "https://comicvine.gamespot.com/electron/4005-149541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149542/", + "id": 149542, + "name": "Elematrix", + "site_detail_url": "https://comicvine.gamespot.com/elematrix/4005-149542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149543/", + "id": 149543, + "name": "Flowa", + "site_detail_url": "https://comicvine.gamespot.com/flowa/4005-149543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149544/", + "id": 149544, + "name": "Emil Kreagan", + "site_detail_url": "https://comicvine.gamespot.com/emil-kreagan/4005-149544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149545/", + "id": 149545, + "name": "Emmael", + "site_detail_url": "https://comicvine.gamespot.com/emmael/4005-149545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149546/", + "id": 149546, + "name": "Captain En-Vad", + "site_detail_url": "https://comicvine.gamespot.com/captain-en-vad/4005-149546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149548/", + "id": 149548, + "name": "Erbium", + "site_detail_url": "https://comicvine.gamespot.com/erbium/4005-149548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149549/", + "id": 149549, + "name": "Lt. Saltz", + "site_detail_url": "https://comicvine.gamespot.com/lt-saltz/4005-149549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149550/", + "id": 149550, + "name": "Ernesto Karnelli", + "site_detail_url": "https://comicvine.gamespot.com/ernesto-karnelli/4005-149550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149552/", + "id": 149552, + "name": "Knull", + "site_detail_url": "https://comicvine.gamespot.com/knull/4005-149552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149697/", + "id": 149697, + "name": "Admiral Holdo", + "site_detail_url": "https://comicvine.gamespot.com/admiral-holdo/4005-149697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149698/", + "id": 149698, + "name": "Vassily Rossovich", + "site_detail_url": "https://comicvine.gamespot.com/vassily-rossovich/4005-149698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149736/", + "id": 149736, + "name": "Uovu", + "site_detail_url": "https://comicvine.gamespot.com/uovu/4005-149736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149931/", + "id": 149931, + "name": "Ernst", + "site_detail_url": "https://comicvine.gamespot.com/ernst/4005-149931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149932/", + "id": 149932, + "name": "Erus", + "site_detail_url": "https://comicvine.gamespot.com/erus/4005-149932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149935/", + "id": 149935, + "name": "Esk'odin", + "site_detail_url": "https://comicvine.gamespot.com/eskodin/4005-149935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149936/", + "id": 149936, + "name": "Ethan Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/ethan-slaughter/4005-149936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149938/", + "id": 149938, + "name": "Fang (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/fang-clone/4005-149938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149939/", + "id": 149939, + "name": "Faradei", + "site_detail_url": "https://comicvine.gamespot.com/faradei/4005-149939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-149956/", + "id": 149956, + "name": "Felor ", + "site_detail_url": "https://comicvine.gamespot.com/felor/4005-149956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150019/", + "id": 150019, + "name": "Fist", + "site_detail_url": "https://comicvine.gamespot.com/fist/4005-150019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150020/", + "id": 150020, + "name": "Fenton", + "site_detail_url": "https://comicvine.gamespot.com/fenton/4005-150020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150021/", + "id": 150021, + "name": "Flag-Smasher (LMD)", + "site_detail_url": "https://comicvine.gamespot.com/flag-smasher-lmd/4005-150021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150046/", + "id": 150046, + "name": "Flare", + "site_detail_url": "https://comicvine.gamespot.com/flare/4005-150046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150047/", + "id": 150047, + "name": "Flash", + "site_detail_url": "https://comicvine.gamespot.com/flash/4005-150047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150048/", + "id": 150048, + "name": "Flashfire", + "site_detail_url": "https://comicvine.gamespot.com/flashfire/4005-150048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150049/", + "id": 150049, + "name": "Foxtrot", + "site_detail_url": "https://comicvine.gamespot.com/foxtrot/4005-150049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150050/", + "id": 150050, + "name": "Stilletto", + "site_detail_url": "https://comicvine.gamespot.com/stilletto/4005-150050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150051/", + "id": 150051, + "name": "Francois Chicault", + "site_detail_url": "https://comicvine.gamespot.com/francois-chicault/4005-150051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150052/", + "id": 150052, + "name": "Francois Lartigue", + "site_detail_url": "https://comicvine.gamespot.com/francois-lartigue/4005-150052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150053/", + "id": 150053, + "name": "Abigail", + "site_detail_url": "https://comicvine.gamespot.com/abigail/4005-150053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150195/", + "id": 150195, + "name": "Frank Cortese", + "site_detail_url": "https://comicvine.gamespot.com/frank-cortese/4005-150195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150196/", + "id": 150196, + "name": "Frank Dallas", + "site_detail_url": "https://comicvine.gamespot.com/frank-dallas/4005-150196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150198/", + "id": 150198, + "name": "Fraxix", + "site_detail_url": "https://comicvine.gamespot.com/fraxix/4005-150198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150199/", + "id": 150199, + "name": "Frederick", + "site_detail_url": "https://comicvine.gamespot.com/frederick/4005-150199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150200/", + "id": 150200, + "name": "Furball", + "site_detail_url": "https://comicvine.gamespot.com/furball/4005-150200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150201/", + "id": 150201, + "name": "The Future", + "site_detail_url": "https://comicvine.gamespot.com/the-future/4005-150201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150202/", + "id": 150202, + "name": "Furnax", + "site_detail_url": "https://comicvine.gamespot.com/furnax/4005-150202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150234/", + "id": 150234, + "name": "Galahad", + "site_detail_url": "https://comicvine.gamespot.com/galahad/4005-150234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150235/", + "id": 150235, + "name": "Galin", + "site_detail_url": "https://comicvine.gamespot.com/galin/4005-150235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150237/", + "id": 150237, + "name": "Gambit (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/gambit-doppleganger/4005-150237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150238/", + "id": 150238, + "name": "Garft", + "site_detail_url": "https://comicvine.gamespot.com/garft/4005-150238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150240/", + "id": 150240, + "name": "Gargoyle Brother One", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle-brother-one/4005-150240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150241/", + "id": 150241, + "name": "Gargoyle Brother Two", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle-brother-two/4005-150241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150242/", + "id": 150242, + "name": "Ducotron", + "site_detail_url": "https://comicvine.gamespot.com/ducotron/4005-150242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150243/", + "id": 150243, + "name": "Garrity", + "site_detail_url": "https://comicvine.gamespot.com/garrity/4005-150243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150244/", + "id": 150244, + "name": "Geech", + "site_detail_url": "https://comicvine.gamespot.com/geech/4005-150244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150245/", + "id": 150245, + "name": "Gelt", + "site_detail_url": "https://comicvine.gamespot.com/gelt/4005-150245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150248/", + "id": 150248, + "name": "Tobias Beckett", + "site_detail_url": "https://comicvine.gamespot.com/tobias-beckett/4005-150248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150249/", + "id": 150249, + "name": "Gar-Kuva", + "site_detail_url": "https://comicvine.gamespot.com/gar-kuva/4005-150249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150251/", + "id": 150251, + "name": "General Karadick", + "site_detail_url": "https://comicvine.gamespot.com/general-karadick/4005-150251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150252/", + "id": 150252, + "name": "George", + "site_detail_url": "https://comicvine.gamespot.com/george/4005-150252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150253/", + "id": 150253, + "name": "Gethrin", + "site_detail_url": "https://comicvine.gamespot.com/gethrin/4005-150253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150254/", + "id": 150254, + "name": "Ghost Flyer", + "site_detail_url": "https://comicvine.gamespot.com/ghost-flyer/4005-150254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150255/", + "id": 150255, + "name": "Ghost Rider 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-1000000-bc/4005-150255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150256/", + "id": 150256, + "name": "Hellbilly", + "site_detail_url": "https://comicvine.gamespot.com/hellbilly/4005-150256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150257/", + "id": 150257, + "name": "Soldier Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/soldier-ghost-rider/4005-150257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150258/", + "id": 150258, + "name": "Chief Hellhawk", + "site_detail_url": "https://comicvine.gamespot.com/chief-hellhawk/4005-150258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150259/", + "id": 150259, + "name": "Gibbon", + "site_detail_url": "https://comicvine.gamespot.com/gibbon/4005-150259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150260/", + "id": 150260, + "name": "Giles McHeath", + "site_detail_url": "https://comicvine.gamespot.com/giles-mcheath/4005-150260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150279/", + "id": 150279, + "name": "Spider-Punk", + "site_detail_url": "https://comicvine.gamespot.com/spider-punk/4005-150279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150282/", + "id": 150282, + "name": "Glagg", + "site_detail_url": "https://comicvine.gamespot.com/glagg/4005-150282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150283/", + "id": 150283, + "name": "Glass", + "site_detail_url": "https://comicvine.gamespot.com/glass/4005-150283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150289/", + "id": 150289, + "name": "Starbrand 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/starbrand-1000000-bc/4005-150289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150290/", + "id": 150290, + "name": "Phoenix 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-1000000-bc/4005-150290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150291/", + "id": 150291, + "name": "Iron Fist 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-1000000-bc/4005-150291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150428/", + "id": 150428, + "name": "God-Killer", + "site_detail_url": "https://comicvine.gamespot.com/god-killer/4005-150428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150429/", + "id": 150429, + "name": "Golem (Smoke Elves)", + "site_detail_url": "https://comicvine.gamespot.com/golem-smoke-elves/4005-150429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150430/", + "id": 150430, + "name": "Goliath Robot", + "site_detail_url": "https://comicvine.gamespot.com/goliath-robot/4005-150430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150431/", + "id": 150431, + "name": "Goran Maledicta", + "site_detail_url": "https://comicvine.gamespot.com/goran-maledicta/4005-150431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150432/", + "id": 150432, + "name": "Gorgul", + "site_detail_url": "https://comicvine.gamespot.com/gorgul/4005-150432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150433/", + "id": 150433, + "name": "Gotron the Agile", + "site_detail_url": "https://comicvine.gamespot.com/gotron-the-agile/4005-150433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150434/", + "id": 150434, + "name": "Greithoth ", + "site_detail_url": "https://comicvine.gamespot.com/greithoth/4005-150434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150435/", + "id": 150435, + "name": "Grendel Symbiote", + "site_detail_url": "https://comicvine.gamespot.com/grendel-symbiote/4005-150435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150436/", + "id": 150436, + "name": "Grim Guardian", + "site_detail_url": "https://comicvine.gamespot.com/grim-guardian/4005-150436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150437/", + "id": 150437, + "name": "Grog", + "site_detail_url": "https://comicvine.gamespot.com/grog/4005-150437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150441/", + "id": 150441, + "name": "Groza", + "site_detail_url": "https://comicvine.gamespot.com/groza/4005-150441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150465/", + "id": 150465, + "name": "Grrix", + "site_detail_url": "https://comicvine.gamespot.com/grrix/4005-150465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150466/", + "id": 150466, + "name": "Gun Metal", + "site_detail_url": "https://comicvine.gamespot.com/gun-metal/4005-150466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150467/", + "id": 150467, + "name": "Guntharr", + "site_detail_url": "https://comicvine.gamespot.com/guntharr/4005-150467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150468/", + "id": 150468, + "name": "Gurr", + "site_detail_url": "https://comicvine.gamespot.com/gurr/4005-150468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150469/", + "id": 150469, + "name": "Captain H'Rham", + "site_detail_url": "https://comicvine.gamespot.com/captain-hrham/4005-150469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150471/", + "id": 150471, + "name": "Hal-Konn", + "site_detail_url": "https://comicvine.gamespot.com/hal-konn/4005-150471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150506/", + "id": 150506, + "name": "Arjun Vedha", + "site_detail_url": "https://comicvine.gamespot.com/arjun-vedha/4005-150506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150507/", + "id": 150507, + "name": "Harley Stevens", + "site_detail_url": "https://comicvine.gamespot.com/harley-stevens/4005-150507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150508/", + "id": 150508, + "name": "Hawkeye (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-doppleganger/4005-150508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150509/", + "id": 150509, + "name": "Helmut Von Schuler", + "site_detail_url": "https://comicvine.gamespot.com/helmut-von-schuler/4005-150509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150510/", + "id": 150510, + "name": "Hell-Driver", + "site_detail_url": "https://comicvine.gamespot.com/hell-driver/4005-150510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150511/", + "id": 150511, + "name": "Headhunter", + "site_detail_url": "https://comicvine.gamespot.com/headhunter/4005-150511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150512/", + "id": 150512, + "name": "Helium", + "site_detail_url": "https://comicvine.gamespot.com/helium/4005-150512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150529/", + "id": 150529, + "name": "Heno ", + "site_detail_url": "https://comicvine.gamespot.com/heno/4005-150529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150530/", + "id": 150530, + "name": "Vielfras", + "site_detail_url": "https://comicvine.gamespot.com/vielfras/4005-150530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150531/", + "id": 150531, + "name": "Skrull Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/skrull-giant-man/4005-150531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150533/", + "id": 150533, + "name": "Hon-Sann", + "site_detail_url": "https://comicvine.gamespot.com/hon-sann/4005-150533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150536/", + "id": 150536, + "name": "Killer Kole", + "site_detail_url": "https://comicvine.gamespot.com/killer-kole/4005-150536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150537/", + "id": 150537, + "name": "Queen Medusa", + "site_detail_url": "https://comicvine.gamespot.com/queen-medusa/4005-150537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150541/", + "id": 150541, + "name": "Horguun", + "site_detail_url": "https://comicvine.gamespot.com/horguun/4005-150541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150542/", + "id": 150542, + "name": "Horse ", + "site_detail_url": "https://comicvine.gamespot.com/horse/4005-150542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150636/", + "id": 150636, + "name": "Mikal", + "site_detail_url": "https://comicvine.gamespot.com/mikal/4005-150636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150673/", + "id": 150673, + "name": "Eoffren", + "site_detail_url": "https://comicvine.gamespot.com/eoffren/4005-150673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150711/", + "id": 150711, + "name": "Doctor Steven", + "site_detail_url": "https://comicvine.gamespot.com/doctor-steven/4005-150711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150712/", + "id": 150712, + "name": "Tel-Kar", + "site_detail_url": "https://comicvine.gamespot.com/tel-kar/4005-150712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150759/", + "id": 150759, + "name": "Warrior Woman", + "site_detail_url": "https://comicvine.gamespot.com/warrior-woman/4005-150759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150785/", + "id": 150785, + "name": "Horth ", + "site_detail_url": "https://comicvine.gamespot.com/horth/4005-150785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150786/", + "id": 150786, + "name": "Brady Cameron", + "site_detail_url": "https://comicvine.gamespot.com/brady-cameron/4005-150786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150787/", + "id": 150787, + "name": "Hrolf", + "site_detail_url": "https://comicvine.gamespot.com/hrolf/4005-150787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150788/", + "id": 150788, + "name": "Human Torch (Doppleganger)", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-doppleganger/4005-150788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150790/", + "id": 150790, + "name": "I'xx'II'tk", + "site_detail_url": "https://comicvine.gamespot.com/ixxiitk/4005-150790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150792/", + "id": 150792, + "name": "Jace Burns", + "site_detail_url": "https://comicvine.gamespot.com/jace-burns/4005-150792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150793/", + "id": 150793, + "name": "Winloss", + "site_detail_url": "https://comicvine.gamespot.com/winloss/4005-150793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150794/", + "id": 150794, + "name": "Nokk", + "site_detail_url": "https://comicvine.gamespot.com/nokk/4005-150794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150799/", + "id": 150799, + "name": "Iron Man (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-doppelganger/4005-150799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150800/", + "id": 150800, + "name": "Iron Man Robot", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-robot/4005-150800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150801/", + "id": 150801, + "name": "Bloodraven", + "site_detail_url": "https://comicvine.gamespot.com/bloodraven/4005-150801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150802/", + "id": 150802, + "name": "Bluestone", + "site_detail_url": "https://comicvine.gamespot.com/bluestone/4005-150802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150803/", + "id": 150803, + "name": "Greenskyn Smash Troll", + "site_detail_url": "https://comicvine.gamespot.com/greenskyn-smash-troll/4005-150803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150804/", + "id": 150804, + "name": "Ironheart", + "site_detail_url": "https://comicvine.gamespot.com/ironheart/4005-150804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150805/", + "id": 150805, + "name": "Black Blade", + "site_detail_url": "https://comicvine.gamespot.com/black-blade/4005-150805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150825/", + "id": 150825, + "name": "Grithstane", + "site_detail_url": "https://comicvine.gamespot.com/grithstane/4005-150825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150871/", + "id": 150871, + "name": "Black Phantom", + "site_detail_url": "https://comicvine.gamespot.com/black-phantom/4005-150871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150885/", + "id": 150885, + "name": "Oryx", + "site_detail_url": "https://comicvine.gamespot.com/oryx/4005-150885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150898/", + "id": 150898, + "name": "Captain Avalon", + "site_detail_url": "https://comicvine.gamespot.com/captain-avalon/4005-150898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150944/", + "id": 150944, + "name": "Deathlight", + "site_detail_url": "https://comicvine.gamespot.com/deathlight/4005-150944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150945/", + "id": 150945, + "name": "Darkwater", + "site_detail_url": "https://comicvine.gamespot.com/darkwater/4005-150945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150946/", + "id": 150946, + "name": "Iron Cross", + "site_detail_url": "https://comicvine.gamespot.com/iron-cross/4005-150946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150947/", + "id": 150947, + "name": "Jac'Oyaa", + "site_detail_url": "https://comicvine.gamespot.com/jacoyaa/4005-150947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150948/", + "id": 150948, + "name": "Ja'Rou", + "site_detail_url": "https://comicvine.gamespot.com/jarou/4005-150948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150963/", + "id": 150963, + "name": "Ms. Chloe", + "site_detail_url": "https://comicvine.gamespot.com/ms-chloe/4005-150963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150964/", + "id": 150964, + "name": "M'Lanz", + "site_detail_url": "https://comicvine.gamespot.com/mlanz/4005-150964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150965/", + "id": 150965, + "name": "Jake Martino", + "site_detail_url": "https://comicvine.gamespot.com/jake-martino/4005-150965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150966/", + "id": 150966, + "name": "Jake Slayton", + "site_detail_url": "https://comicvine.gamespot.com/jake-slayton/4005-150966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150967/", + "id": 150967, + "name": "James Harper", + "site_detail_url": "https://comicvine.gamespot.com/james-harper/4005-150967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150968/", + "id": 150968, + "name": "Wolverine Clone", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-clone/4005-150968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150969/", + "id": 150969, + "name": "Jash", + "site_detail_url": "https://comicvine.gamespot.com/jash/4005-150969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150970/", + "id": 150970, + "name": "Jason Cray", + "site_detail_url": "https://comicvine.gamespot.com/jason-cray/4005-150970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150971/", + "id": 150971, + "name": "Griever at the End of All Things", + "site_detail_url": "https://comicvine.gamespot.com/griever-at-the-end-of-all-things/4005-150971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150973/", + "id": 150973, + "name": "Jeremy", + "site_detail_url": "https://comicvine.gamespot.com/jeremy/4005-150973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150974/", + "id": 150974, + "name": "Jim Cunningham", + "site_detail_url": "https://comicvine.gamespot.com/jim-cunningham/4005-150974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150975/", + "id": 150975, + "name": "Jimmy Robotface", + "site_detail_url": "https://comicvine.gamespot.com/jimmy-robotface/4005-150975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-150976/", + "id": 150976, + "name": "Joey Bugs", + "site_detail_url": "https://comicvine.gamespot.com/joey-bugs/4005-150976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151156/", + "id": 151156, + "name": "Joe Spencer", + "site_detail_url": "https://comicvine.gamespot.com/joe-spencer/4005-151156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151157/", + "id": 151157, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-151157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151158/", + "id": 151158, + "name": "Cain", + "site_detail_url": "https://comicvine.gamespot.com/cain/4005-151158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151159/", + "id": 151159, + "name": "Jolt (Eurth)", + "site_detail_url": "https://comicvine.gamespot.com/jolt-eurth/4005-151159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151160/", + "id": 151160, + "name": "Jonas Williams", + "site_detail_url": "https://comicvine.gamespot.com/jonas-williams/4005-151160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151161/", + "id": 151161, + "name": "Jorr", + "site_detail_url": "https://comicvine.gamespot.com/jorr/4005-151161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151162/", + "id": 151162, + "name": "Jorge Santiago", + "site_detail_url": "https://comicvine.gamespot.com/jorge-santiago/4005-151162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151163/", + "id": 151163, + "name": "Juber", + "site_detail_url": "https://comicvine.gamespot.com/juber/4005-151163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151164/", + "id": 151164, + "name": "Jymrsk", + "site_detail_url": "https://comicvine.gamespot.com/jymrsk/4005-151164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151182/", + "id": 151182, + "name": "Dora Skirth", + "site_detail_url": "https://comicvine.gamespot.com/dora-skirth/4005-151182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151218/", + "id": 151218, + "name": "Xandra", + "site_detail_url": "https://comicvine.gamespot.com/xandra/4005-151218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151219/", + "id": 151219, + "name": "K'rk 'N'Kazaii", + "site_detail_url": "https://comicvine.gamespot.com/krk-nkazaii/4005-151219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151220/", + "id": 151220, + "name": "K'rtem", + "site_detail_url": "https://comicvine.gamespot.com/krtem/4005-151220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151221/", + "id": 151221, + "name": "K'thol", + "site_detail_url": "https://comicvine.gamespot.com/kthol/4005-151221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151222/", + "id": 151222, + "name": "Kak", + "site_detail_url": "https://comicvine.gamespot.com/kak/4005-151222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151223/", + "id": 151223, + "name": "Kal'du", + "site_detail_url": "https://comicvine.gamespot.com/kaldu/4005-151223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151224/", + "id": 151224, + "name": "Kam'N'Ehar", + "site_detail_url": "https://comicvine.gamespot.com/kamnehar/4005-151224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151225/", + "id": 151225, + "name": "Kar-Vokk", + "site_detail_url": "https://comicvine.gamespot.com/kar-vokk/4005-151225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151226/", + "id": 151226, + "name": "Karl Steiner", + "site_detail_url": "https://comicvine.gamespot.com/karl-steiner/4005-151226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151227/", + "id": 151227, + "name": "Keep", + "site_detail_url": "https://comicvine.gamespot.com/keep/4005-151227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151228/", + "id": 151228, + "name": "Khan", + "site_detail_url": "https://comicvine.gamespot.com/khan/4005-151228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151237/", + "id": 151237, + "name": "Killer Shrike (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/killer-shrike-hobgoblin/4005-151237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151238/", + "id": 151238, + "name": "Killyu", + "site_detail_url": "https://comicvine.gamespot.com/killyu/4005-151238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151241/", + "id": 151241, + "name": "Knight Errant", + "site_detail_url": "https://comicvine.gamespot.com/knight-errant/4005-151241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151242/", + "id": 151242, + "name": "Koru Kaviti", + "site_detail_url": "https://comicvine.gamespot.com/koru-kaviti/4005-151242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151243/", + "id": 151243, + "name": "Koyoti", + "site_detail_url": "https://comicvine.gamespot.com/koyoti/4005-151243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151244/", + "id": 151244, + "name": "Krogg", + "site_detail_url": "https://comicvine.gamespot.com/krogg/4005-151244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151245/", + "id": 151245, + "name": "Nightcrawler Clone", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-clone/4005-151245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151246/", + "id": 151246, + "name": "Skrull Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/skrull-nighthawk/4005-151246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151249/", + "id": 151249, + "name": "Demolisher", + "site_detail_url": "https://comicvine.gamespot.com/demolisher/4005-151249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151267/", + "id": 151267, + "name": "Rur", + "site_detail_url": "https://comicvine.gamespot.com/rur/4005-151267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151317/", + "id": 151317, + "name": "Bazine Netal", + "site_detail_url": "https://comicvine.gamespot.com/bazine-netal/4005-151317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151335/", + "id": 151335, + "name": "Tam Posla", + "site_detail_url": "https://comicvine.gamespot.com/tam-posla/4005-151335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151346/", + "id": 151346, + "name": "Henn Birdwing", + "site_detail_url": "https://comicvine.gamespot.com/henn-birdwing/4005-151346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151423/", + "id": 151423, + "name": "Alfonso Lopez", + "site_detail_url": "https://comicvine.gamespot.com/alfonso-lopez/4005-151423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151424/", + "id": 151424, + "name": "Lar-Ka", + "site_detail_url": "https://comicvine.gamespot.com/lar-ka/4005-151424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151425/", + "id": 151425, + "name": "Lariat", + "site_detail_url": "https://comicvine.gamespot.com/lariat/4005-151425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151426/", + "id": 151426, + "name": "Larry Arnold ", + "site_detail_url": "https://comicvine.gamespot.com/larry-arnold/4005-151426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151428/", + "id": 151428, + "name": "Lawrence Evans", + "site_detail_url": "https://comicvine.gamespot.com/lawrence-evans/4005-151428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151429/", + "id": 151429, + "name": "Leap-Frog ", + "site_detail_url": "https://comicvine.gamespot.com/leap-frog/4005-151429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151430/", + "id": 151430, + "name": "Lev ", + "site_detail_url": "https://comicvine.gamespot.com/lev/4005-151430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151431/", + "id": 151431, + "name": "Lizard (Creature)", + "site_detail_url": "https://comicvine.gamespot.com/lizard-creature/4005-151431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151433/", + "id": 151433, + "name": "Skrull Lobo", + "site_detail_url": "https://comicvine.gamespot.com/skrull-lobo/4005-151433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151434/", + "id": 151434, + "name": "Longo", + "site_detail_url": "https://comicvine.gamespot.com/longo/4005-151434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151444/", + "id": 151444, + "name": "Del Frye", + "site_detail_url": "https://comicvine.gamespot.com/del-frye/4005-151444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151446/", + "id": 151446, + "name": "Dr. McGowan", + "site_detail_url": "https://comicvine.gamespot.com/dr-mcgowan/4005-151446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151447/", + "id": 151447, + "name": "Dr. Clive", + "site_detail_url": "https://comicvine.gamespot.com/dr-clive/4005-151447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151510/", + "id": 151510, + "name": "Grey", + "site_detail_url": "https://comicvine.gamespot.com/grey/4005-151510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151516/", + "id": 151516, + "name": "Jundo", + "site_detail_url": "https://comicvine.gamespot.com/jundo/4005-151516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151517/", + "id": 151517, + "name": "Goldon", + "site_detail_url": "https://comicvine.gamespot.com/goldon/4005-151517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151518/", + "id": 151518, + "name": "Grimzor", + "site_detail_url": "https://comicvine.gamespot.com/grimzor/4005-151518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151534/", + "id": 151534, + "name": "Lord Quietus", + "site_detail_url": "https://comicvine.gamespot.com/lord-quietus/4005-151534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151535/", + "id": 151535, + "name": "Lucas Maats", + "site_detail_url": "https://comicvine.gamespot.com/lucas-maats/4005-151535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151536/", + "id": 151536, + "name": "Skrull Power Man", + "site_detail_url": "https://comicvine.gamespot.com/skrull-power-man/4005-151536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151537/", + "id": 151537, + "name": "Lurgh", + "site_detail_url": "https://comicvine.gamespot.com/lurgh/4005-151537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151539/", + "id": 151539, + "name": "Gringrave", + "site_detail_url": "https://comicvine.gamespot.com/gringrave/4005-151539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151647/", + "id": 151647, + "name": "Ella Sterling", + "site_detail_url": "https://comicvine.gamespot.com/ella-sterling/4005-151647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151648/", + "id": 151648, + "name": "Blake", + "site_detail_url": "https://comicvine.gamespot.com/blake/4005-151648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151667/", + "id": 151667, + "name": "Mo Wang", + "site_detail_url": "https://comicvine.gamespot.com/mo-wang/4005-151667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151787/", + "id": 151787, + "name": "Atlas Bear", + "site_detail_url": "https://comicvine.gamespot.com/atlas-bear/4005-151787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151788/", + "id": 151788, + "name": "Tighe", + "site_detail_url": "https://comicvine.gamespot.com/tighe/4005-151788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151789/", + "id": 151789, + "name": "Devondra", + "site_detail_url": "https://comicvine.gamespot.com/devondra/4005-151789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151820/", + "id": 151820, + "name": "Mukus", + "site_detail_url": "https://comicvine.gamespot.com/mukus/4005-151820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151821/", + "id": 151821, + "name": "M'Dom Typ", + "site_detail_url": "https://comicvine.gamespot.com/mdom-typ/4005-151821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151822/", + "id": 151822, + "name": "Mac Mangel", + "site_detail_url": "https://comicvine.gamespot.com/mac-mangel/4005-151822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151823/", + "id": 151823, + "name": "Madin", + "site_detail_url": "https://comicvine.gamespot.com/madin/4005-151823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151824/", + "id": 151824, + "name": "Magnesium", + "site_detail_url": "https://comicvine.gamespot.com/magnesium/4005-151824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151831/", + "id": 151831, + "name": "Mamadou Fall", + "site_detail_url": "https://comicvine.gamespot.com/mamadou-fall/4005-151831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151832/", + "id": 151832, + "name": "Mammoth (Imperial Guard)", + "site_detail_url": "https://comicvine.gamespot.com/mammoth-imperial-guard/4005-151832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151833/", + "id": 151833, + "name": "Mammoth Inferno", + "site_detail_url": "https://comicvine.gamespot.com/mammoth-inferno/4005-151833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151838/", + "id": 151838, + "name": "Maxwell Grant", + "site_detail_url": "https://comicvine.gamespot.com/maxwell-grant/4005-151838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151839/", + "id": 151839, + "name": "Mantid", + "site_detail_url": "https://comicvine.gamespot.com/mantid/4005-151839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151840/", + "id": 151840, + "name": "Strug", + "site_detail_url": "https://comicvine.gamespot.com/strug/4005-151840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151841/", + "id": 151841, + "name": "Marked Man", + "site_detail_url": "https://comicvine.gamespot.com/marked-man/4005-151841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151842/", + "id": 151842, + "name": "Massster", + "site_detail_url": "https://comicvine.gamespot.com/massster/4005-151842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151843/", + "id": 151843, + "name": "Mass ", + "site_detail_url": "https://comicvine.gamespot.com/mass/4005-151843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151844/", + "id": 151844, + "name": "Matthew Vaducci", + "site_detail_url": "https://comicvine.gamespot.com/matthew-vaducci/4005-151844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151845/", + "id": 151845, + "name": "Haste", + "site_detail_url": "https://comicvine.gamespot.com/haste/4005-151845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151846/", + "id": 151846, + "name": "Alexa Lukin", + "site_detail_url": "https://comicvine.gamespot.com/alexa-lukin/4005-151846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151855/", + "id": 151855, + "name": "Moon Knight Clone", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-clone/4005-151855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151856/", + "id": 151856, + "name": "Mauler (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/mauler-hobgoblin/4005-151856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151857/", + "id": 151857, + "name": "Mark Cephalos", + "site_detail_url": "https://comicvine.gamespot.com/mark-cephalos/4005-151857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151858/", + "id": 151858, + "name": "Joshua Kane", + "site_detail_url": "https://comicvine.gamespot.com/joshua-kane/4005-151858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151859/", + "id": 151859, + "name": "Sidney Sarnak", + "site_detail_url": "https://comicvine.gamespot.com/sidney-sarnak/4005-151859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151866/", + "id": 151866, + "name": "Algon", + "site_detail_url": "https://comicvine.gamespot.com/algon/4005-151866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151867/", + "id": 151867, + "name": "Brad Wrangle", + "site_detail_url": "https://comicvine.gamespot.com/brad-wrangle/4005-151867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151870/", + "id": 151870, + "name": "Tina Sands", + "site_detail_url": "https://comicvine.gamespot.com/tina-sands/4005-151870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151908/", + "id": 151908, + "name": "Luther Kane", + "site_detail_url": "https://comicvine.gamespot.com/luther-kane/4005-151908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151942/", + "id": 151942, + "name": "Mister Angel", + "site_detail_url": "https://comicvine.gamespot.com/mister-angel/4005-151942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151944/", + "id": 151944, + "name": "Michael Jeffries", + "site_detail_url": "https://comicvine.gamespot.com/michael-jeffries/4005-151944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151945/", + "id": 151945, + "name": "Michael (Man-Ape)", + "site_detail_url": "https://comicvine.gamespot.com/michael-man-ape/4005-151945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151951/", + "id": 151951, + "name": "Melter (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/melter-hobgoblin/4005-151951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151952/", + "id": 151952, + "name": "Merman", + "site_detail_url": "https://comicvine.gamespot.com/merman/4005-151952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151953/", + "id": 151953, + "name": "Merrin", + "site_detail_url": "https://comicvine.gamespot.com/merrin/4005-151953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151954/", + "id": 151954, + "name": "Der Metzger", + "site_detail_url": "https://comicvine.gamespot.com/der-metzger/4005-151954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151987/", + "id": 151987, + "name": "Mokk", + "site_detail_url": "https://comicvine.gamespot.com/mokk/4005-151987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151988/", + "id": 151988, + "name": "Terrier", + "site_detail_url": "https://comicvine.gamespot.com/terrier/4005-151988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151989/", + "id": 151989, + "name": "Moon Knight (2620 BC)", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-2620-bc/4005-151989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151990/", + "id": 151990, + "name": "Moon Shade", + "site_detail_url": "https://comicvine.gamespot.com/moon-shade/4005-151990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151991/", + "id": 151991, + "name": "Arrow Ace", + "site_detail_url": "https://comicvine.gamespot.com/arrow-ace/4005-151991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151992/", + "id": 151992, + "name": "Mr. Krane", + "site_detail_url": "https://comicvine.gamespot.com/mr-krane/4005-151992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151993/", + "id": 151993, + "name": "Mr. Mazo", + "site_detail_url": "https://comicvine.gamespot.com/mr-mazo/4005-151993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151994/", + "id": 151994, + "name": "Mr. Waspwind", + "site_detail_url": "https://comicvine.gamespot.com/mr-waspwind/4005-151994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-151995/", + "id": 151995, + "name": "Multiple Man (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/multiple-man-doppelganger/4005-151995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152006/", + "id": 152006, + "name": "Momin", + "site_detail_url": "https://comicvine.gamespot.com/momin/4005-152006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152016/", + "id": 152016, + "name": "Shaa", + "site_detail_url": "https://comicvine.gamespot.com/shaa/4005-152016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152017/", + "id": 152017, + "name": "Everyman Killer", + "site_detail_url": "https://comicvine.gamespot.com/everyman-killer/4005-152017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152021/", + "id": 152021, + "name": "Jared Beekman", + "site_detail_url": "https://comicvine.gamespot.com/jared-beekman/4005-152021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152022/", + "id": 152022, + "name": "Seeker", + "site_detail_url": "https://comicvine.gamespot.com/seeker/4005-152022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152045/", + "id": 152045, + "name": "Nathan Paul", + "site_detail_url": "https://comicvine.gamespot.com/nathan-paul/4005-152045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152046/", + "id": 152046, + "name": "Nep'Perr", + "site_detail_url": "https://comicvine.gamespot.com/nepperr/4005-152046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152047/", + "id": 152047, + "name": "Nerkkod", + "site_detail_url": "https://comicvine.gamespot.com/nerkkod/4005-152047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152048/", + "id": 152048, + "name": "Skrull Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/skrull-nick-fury/4005-152048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152049/", + "id": 152049, + "name": "Nickel", + "site_detail_url": "https://comicvine.gamespot.com/nickel/4005-152049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152050/", + "id": 152050, + "name": "Nighthowl", + "site_detail_url": "https://comicvine.gamespot.com/nighthowl/4005-152050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152051/", + "id": 152051, + "name": "Enfys Nest", + "site_detail_url": "https://comicvine.gamespot.com/enfys-nest/4005-152051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152062/", + "id": 152062, + "name": "Northstar (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/northstar-doppelganger/4005-152062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152063/", + "id": 152063, + "name": "Nova (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/nova-doppelganger/4005-152063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152064/", + "id": 152064, + "name": "Nos-Verr", + "site_detail_url": "https://comicvine.gamespot.com/nos-verr/4005-152064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152065/", + "id": 152065, + "name": "Null-Set", + "site_detail_url": "https://comicvine.gamespot.com/null-set/4005-152065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152110/", + "id": 152110, + "name": "Piano Player", + "site_detail_url": "https://comicvine.gamespot.com/piano-player/4005-152110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152337/", + "id": 152337, + "name": "Ou'zli", + "site_detail_url": "https://comicvine.gamespot.com/ouzli/4005-152337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152340/", + "id": 152340, + "name": "Orto ", + "site_detail_url": "https://comicvine.gamespot.com/orto/4005-152340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152341/", + "id": 152341, + "name": "Opistho", + "site_detail_url": "https://comicvine.gamespot.com/opistho/4005-152341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152342/", + "id": 152342, + "name": "Oliver Constantin", + "site_detail_url": "https://comicvine.gamespot.com/oliver-constantin/4005-152342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152343/", + "id": 152343, + "name": "Ogre ", + "site_detail_url": "https://comicvine.gamespot.com/ogre/4005-152343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152344/", + "id": 152344, + "name": "Octavio Von Bardas", + "site_detail_url": "https://comicvine.gamespot.com/octavio-von-bardas/4005-152344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152345/", + "id": 152345, + "name": "Obliteron", + "site_detail_url": "https://comicvine.gamespot.com/obliteron/4005-152345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152346/", + "id": 152346, + "name": "Obliterator", + "site_detail_url": "https://comicvine.gamespot.com/obliterator/4005-152346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152409/", + "id": 152409, + "name": "Pain ", + "site_detail_url": "https://comicvine.gamespot.com/pain/4005-152409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152410/", + "id": 152410, + "name": "Pascal Tyler", + "site_detail_url": "https://comicvine.gamespot.com/pascal-tyler/4005-152410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152411/", + "id": 152411, + "name": "Patrick Herbert", + "site_detail_url": "https://comicvine.gamespot.com/patrick-herbert/4005-152411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152412/", + "id": 152412, + "name": "Paul Garwood", + "site_detail_url": "https://comicvine.gamespot.com/paul-garwood/4005-152412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152413/", + "id": 152413, + "name": "Pentigaar", + "site_detail_url": "https://comicvine.gamespot.com/pentigaar/4005-152413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152414/", + "id": 152414, + "name": "Percival", + "site_detail_url": "https://comicvine.gamespot.com/percival/4005-152414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152491/", + "id": 152491, + "name": "Plainsman", + "site_detail_url": "https://comicvine.gamespot.com/plainsman/4005-152491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152492/", + "id": 152492, + "name": "Pierce", + "site_detail_url": "https://comicvine.gamespot.com/pierce/4005-152492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152493/", + "id": 152493, + "name": "Ur-Wendigo", + "site_detail_url": "https://comicvine.gamespot.com/ur-wendigo/4005-152493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152494/", + "id": 152494, + "name": "Phantom Bats of the Twelve Minds", + "site_detail_url": "https://comicvine.gamespot.com/phantom-bats-of-the-twelve-minds/4005-152494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152495/", + "id": 152495, + "name": "Puck (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/puck-doppelganger/4005-152495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152496/", + "id": 152496, + "name": "Pter", + "site_detail_url": "https://comicvine.gamespot.com/pter/4005-152496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152497/", + "id": 152497, + "name": "Protector-Bot", + "site_detail_url": "https://comicvine.gamespot.com/protector-bot/4005-152497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152498/", + "id": 152498, + "name": "Count Crag", + "site_detail_url": "https://comicvine.gamespot.com/count-crag/4005-152498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152499/", + "id": 152499, + "name": "Prince Morningstar", + "site_detail_url": "https://comicvine.gamespot.com/prince-morningstar/4005-152499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152500/", + "id": 152500, + "name": "Pitbull", + "site_detail_url": "https://comicvine.gamespot.com/pitbull/4005-152500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152506/", + "id": 152506, + "name": "Rotjaw", + "site_detail_url": "https://comicvine.gamespot.com/rotjaw/4005-152506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152507/", + "id": 152507, + "name": "Rok", + "site_detail_url": "https://comicvine.gamespot.com/rok/4005-152507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152508/", + "id": 152508, + "name": "Callus the Void", + "site_detail_url": "https://comicvine.gamespot.com/callus-the-void/4005-152508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152509/", + "id": 152509, + "name": "Iceman Clone", + "site_detail_url": "https://comicvine.gamespot.com/iceman-clone/4005-152509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152510/", + "id": 152510, + "name": "Ripcorde", + "site_detail_url": "https://comicvine.gamespot.com/ripcorde/4005-152510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152511/", + "id": 152511, + "name": "Rico", + "site_detail_url": "https://comicvine.gamespot.com/rico/4005-152511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152512/", + "id": 152512, + "name": "Rick Lawson", + "site_detail_url": "https://comicvine.gamespot.com/rick-lawson/4005-152512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152565/", + "id": 152565, + "name": "Qareen ", + "site_detail_url": "https://comicvine.gamespot.com/qareen/4005-152565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152568/", + "id": 152568, + "name": "Ragnar", + "site_detail_url": "https://comicvine.gamespot.com/ragnar/4005-152568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152569/", + "id": 152569, + "name": "Raman", + "site_detail_url": "https://comicvine.gamespot.com/raman/4005-152569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152570/", + "id": 152570, + "name": "Randall Macklin", + "site_detail_url": "https://comicvine.gamespot.com/randall-macklin/4005-152570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152571/", + "id": 152571, + "name": "Redeye", + "site_detail_url": "https://comicvine.gamespot.com/redeye/4005-152571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152631/", + "id": 152631, + "name": "Mister Fantastic (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/mister-fantastic-doppelganger/4005-152631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152632/", + "id": 152632, + "name": "Reflex", + "site_detail_url": "https://comicvine.gamespot.com/reflex/4005-152632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152635/", + "id": 152635, + "name": "Richard Bloom", + "site_detail_url": "https://comicvine.gamespot.com/richard-bloom/4005-152635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152645/", + "id": 152645, + "name": "Professor Monster", + "site_detail_url": "https://comicvine.gamespot.com/professor-monster/4005-152645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152646/", + "id": 152646, + "name": "Saint (Boris)", + "site_detail_url": "https://comicvine.gamespot.com/saint-boris/4005-152646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152647/", + "id": 152647, + "name": "Skull (Gleb)", + "site_detail_url": "https://comicvine.gamespot.com/skull-gleb/4005-152647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152648/", + "id": 152648, + "name": "Iron Hammer", + "site_detail_url": "https://comicvine.gamespot.com/iron-hammer/4005-152648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152649/", + "id": 152649, + "name": "Scars", + "site_detail_url": "https://comicvine.gamespot.com/scars/4005-152649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152653/", + "id": 152653, + "name": "Sandstorm", + "site_detail_url": "https://comicvine.gamespot.com/sandstorm/4005-152653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152654/", + "id": 152654, + "name": "Huntsman", + "site_detail_url": "https://comicvine.gamespot.com/huntsman/4005-152654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152656/", + "id": 152656, + "name": "Sasquatch (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/sasquatch-doppelganger/4005-152656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152657/", + "id": 152657, + "name": "Scorpius", + "site_detail_url": "https://comicvine.gamespot.com/scorpius/4005-152657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152658/", + "id": 152658, + "name": "Little Monster", + "site_detail_url": "https://comicvine.gamespot.com/little-monster/4005-152658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152671/", + "id": 152671, + "name": "Cyclops (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/cyclops-clone/4005-152671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152672/", + "id": 152672, + "name": "Scumtongue", + "site_detail_url": "https://comicvine.gamespot.com/scumtongue/4005-152672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152673/", + "id": 152673, + "name": "Scyphozotron", + "site_detail_url": "https://comicvine.gamespot.com/scyphozotron/4005-152673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152682/", + "id": 152682, + "name": "Spider-Byte", + "site_detail_url": "https://comicvine.gamespot.com/spider-byte/4005-152682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152699/", + "id": 152699, + "name": "Scythe (Eurth)", + "site_detail_url": "https://comicvine.gamespot.com/scythe-eurth/4005-152699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152700/", + "id": 152700, + "name": "Scythe", + "site_detail_url": "https://comicvine.gamespot.com/scythe/4005-152700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152701/", + "id": 152701, + "name": "Seeker", + "site_detail_url": "https://comicvine.gamespot.com/seeker/4005-152701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152727/", + "id": 152727, + "name": "Webslinger", + "site_detail_url": "https://comicvine.gamespot.com/webslinger/4005-152727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152733/", + "id": 152733, + "name": "Goblin King", + "site_detail_url": "https://comicvine.gamespot.com/goblin-king/4005-152733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152734/", + "id": 152734, + "name": "Mysterium", + "site_detail_url": "https://comicvine.gamespot.com/mysterium/4005-152734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152735/", + "id": 152735, + "name": "Talon (Eurth)", + "site_detail_url": "https://comicvine.gamespot.com/talon-eurth/4005-152735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152736/", + "id": 152736, + "name": "Tentaclus", + "site_detail_url": "https://comicvine.gamespot.com/tentaclus/4005-152736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152765/", + "id": 152765, + "name": "Guillermo Del Sol", + "site_detail_url": "https://comicvine.gamespot.com/guillermo-del-sol/4005-152765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152820/", + "id": 152820, + "name": "S.A.M.", + "site_detail_url": "https://comicvine.gamespot.com/sam/4005-152820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152821/", + "id": 152821, + "name": "Shell ", + "site_detail_url": "https://comicvine.gamespot.com/shell/4005-152821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152822/", + "id": 152822, + "name": "Shot", + "site_detail_url": "https://comicvine.gamespot.com/shot/4005-152822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152828/", + "id": 152828, + "name": "Shiv", + "site_detail_url": "https://comicvine.gamespot.com/shiv/4005-152828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152831/", + "id": 152831, + "name": "Silence ", + "site_detail_url": "https://comicvine.gamespot.com/silence/4005-152831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152833/", + "id": 152833, + "name": "Simian ", + "site_detail_url": "https://comicvine.gamespot.com/simian/4005-152833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152834/", + "id": 152834, + "name": "Icemaker", + "site_detail_url": "https://comicvine.gamespot.com/icemaker/4005-152834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152835/", + "id": 152835, + "name": "Brutus", + "site_detail_url": "https://comicvine.gamespot.com/brutus/4005-152835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152836/", + "id": 152836, + "name": "Simon Magnus", + "site_detail_url": "https://comicvine.gamespot.com/simon-magnus/4005-152836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152837/", + "id": 152837, + "name": "Skrull Wonderman", + "site_detail_url": "https://comicvine.gamespot.com/skrull-wonderman/4005-152837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152838/", + "id": 152838, + "name": "Sinister Six Skrull", + "site_detail_url": "https://comicvine.gamespot.com/sinister-six-skrull/4005-152838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152839/", + "id": 152839, + "name": "Sir Raptor", + "site_detail_url": "https://comicvine.gamespot.com/sir-raptor/4005-152839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152844/", + "id": 152844, + "name": "Sk'obe", + "site_detail_url": "https://comicvine.gamespot.com/skobe/4005-152844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152848/", + "id": 152848, + "name": "Skreech", + "site_detail_url": "https://comicvine.gamespot.com/skreech/4005-152848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152877/", + "id": 152877, + "name": "Sleeper", + "site_detail_url": "https://comicvine.gamespot.com/sleeper/4005-152877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152879/", + "id": 152879, + "name": "Smasher (Monster)", + "site_detail_url": "https://comicvine.gamespot.com/smasher-monster/4005-152879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152880/", + "id": 152880, + "name": "Smasher ", + "site_detail_url": "https://comicvine.gamespot.com/smasher/4005-152880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152883/", + "id": 152883, + "name": "Snarr", + "site_detail_url": "https://comicvine.gamespot.com/snarr/4005-152883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152889/", + "id": 152889, + "name": "Skorch", + "site_detail_url": "https://comicvine.gamespot.com/skorch/4005-152889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152915/", + "id": 152915, + "name": "Sourfoot", + "site_detail_url": "https://comicvine.gamespot.com/sourfoot/4005-152915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152916/", + "id": 152916, + "name": "Triosa Broog", + "site_detail_url": "https://comicvine.gamespot.com/triosa-broog/4005-152916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152917/", + "id": 152917, + "name": "Kanina Nico", + "site_detail_url": "https://comicvine.gamespot.com/kanina-nico/4005-152917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152918/", + "id": 152918, + "name": "Lyttan Dree", + "site_detail_url": "https://comicvine.gamespot.com/lyttan-dree/4005-152918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152919/", + "id": 152919, + "name": "Tamu Dree", + "site_detail_url": "https://comicvine.gamespot.com/tamu-dree/4005-152919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152920/", + "id": 152920, + "name": "Qi'ra", + "site_detail_url": "https://comicvine.gamespot.com/qira/4005-152920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152921/", + "id": 152921, + "name": "Spear", + "site_detail_url": "https://comicvine.gamespot.com/spear/4005-152921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152922/", + "id": 152922, + "name": "Spider-Man (Y-Men)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-y-men/4005-152922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152923/", + "id": 152923, + "name": "Laser-Fist", + "site_detail_url": "https://comicvine.gamespot.com/laser-fist/4005-152923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152924/", + "id": 152924, + "name": "Dragon-Breath", + "site_detail_url": "https://comicvine.gamespot.com/dragon-breath/4005-152924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152925/", + "id": 152925, + "name": "Hand-Gun", + "site_detail_url": "https://comicvine.gamespot.com/hand-gun/4005-152925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152926/", + "id": 152926, + "name": "Cheetah", + "site_detail_url": "https://comicvine.gamespot.com/cheetah/4005-152926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152927/", + "id": 152927, + "name": "Julio Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/julio-rodriguez/4005-152927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152928/", + "id": 152928, + "name": "Spike", + "site_detail_url": "https://comicvine.gamespot.com/spike/4005-152928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152929/", + "id": 152929, + "name": "Star Colossus", + "site_detail_url": "https://comicvine.gamespot.com/star-colossus/4005-152929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152942/", + "id": 152942, + "name": "St. Nathaniel", + "site_detail_url": "https://comicvine.gamespot.com/st-nathaniel/4005-152942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152966/", + "id": 152966, + "name": "Starktech 9", + "site_detail_url": "https://comicvine.gamespot.com/starktech-9/4005-152966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152967/", + "id": 152967, + "name": "Steeplejack (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/steeplejack-hobgoblin/4005-152967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152968/", + "id": 152968, + "name": "Steve Rogers Clone", + "site_detail_url": "https://comicvine.gamespot.com/steve-rogers-clone/4005-152968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152969/", + "id": 152969, + "name": "Stinger", + "site_detail_url": "https://comicvine.gamespot.com/stinger/4005-152969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152970/", + "id": 152970, + "name": "Striker", + "site_detail_url": "https://comicvine.gamespot.com/striker/4005-152970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152971/", + "id": 152971, + "name": "Sturm", + "site_detail_url": "https://comicvine.gamespot.com/sturm/4005-152971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-152973/", + "id": 152973, + "name": "Surge", + "site_detail_url": "https://comicvine.gamespot.com/surge/4005-152973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153111/", + "id": 153111, + "name": "Orb Weaver", + "site_detail_url": "https://comicvine.gamespot.com/orb-weaver/4005-153111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153112/", + "id": 153112, + "name": "Styro", + "site_detail_url": "https://comicvine.gamespot.com/styro/4005-153112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153113/", + "id": 153113, + "name": "Stark Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/stark-sentinel/4005-153113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153114/", + "id": 153114, + "name": "Sverrik", + "site_detail_url": "https://comicvine.gamespot.com/sverrik/4005-153114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153161/", + "id": 153161, + "name": "Swift (Eurth)", + "site_detail_url": "https://comicvine.gamespot.com/swift-eurth/4005-153161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153162/", + "id": 153162, + "name": "Swashbuckler", + "site_detail_url": "https://comicvine.gamespot.com/swashbuckler/4005-153162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153163/", + "id": 153163, + "name": "Swordsman (Criminal)", + "site_detail_url": "https://comicvine.gamespot.com/swordsman-criminal/4005-153163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153164/", + "id": 153164, + "name": "Syth", + "site_detail_url": "https://comicvine.gamespot.com/syth/4005-153164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153165/", + "id": 153165, + "name": "Tae", + "site_detail_url": "https://comicvine.gamespot.com/tae/4005-153165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153166/", + "id": 153166, + "name": "Tar-Rell", + "site_detail_url": "https://comicvine.gamespot.com/tar-rell/4005-153166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153167/", + "id": 153167, + "name": "Tarnok-Kol", + "site_detail_url": "https://comicvine.gamespot.com/tarnok-kol/4005-153167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153168/", + "id": 153168, + "name": "Tasver", + "site_detail_url": "https://comicvine.gamespot.com/tasver/4005-153168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153170/", + "id": 153170, + "name": "Thermatron", + "site_detail_url": "https://comicvine.gamespot.com/thermatron/4005-153170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153171/", + "id": 153171, + "name": "Thing (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/thing-doppelganger/4005-153171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153172/", + "id": 153172, + "name": "Lightning Chain", + "site_detail_url": "https://comicvine.gamespot.com/lightning-chain/4005-153172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153173/", + "id": 153173, + "name": "Skrull Thor", + "site_detail_url": "https://comicvine.gamespot.com/skrull-thor/4005-153173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153198/", + "id": 153198, + "name": "North Korean Thunderbird", + "site_detail_url": "https://comicvine.gamespot.com/north-korean-thunderbird/4005-153198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153229/", + "id": 153229, + "name": "King Crab", + "site_detail_url": "https://comicvine.gamespot.com/king-crab/4005-153229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153257/", + "id": 153257, + "name": "Spiders-Man", + "site_detail_url": "https://comicvine.gamespot.com/spiders-man/4005-153257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153258/", + "id": 153258, + "name": "Crescent", + "site_detail_url": "https://comicvine.gamespot.com/crescent/4005-153258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153259/", + "id": 153259, + "name": "Io", + "site_detail_url": "https://comicvine.gamespot.com/io/4005-153259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153260/", + "id": 153260, + "name": "Astronomica", + "site_detail_url": "https://comicvine.gamespot.com/astronomica/4005-153260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153378/", + "id": 153378, + "name": "Manon", + "site_detail_url": "https://comicvine.gamespot.com/manon/4005-153378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153379/", + "id": 153379, + "name": "Maxime", + "site_detail_url": "https://comicvine.gamespot.com/maxime/4005-153379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153471/", + "id": 153471, + "name": "Val", + "site_detail_url": "https://comicvine.gamespot.com/val/4005-153471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153472/", + "id": 153472, + "name": "Rio Durant", + "site_detail_url": "https://comicvine.gamespot.com/rio-durant/4005-153472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153473/", + "id": 153473, + "name": "Thane Markona", + "site_detail_url": "https://comicvine.gamespot.com/thane-markona/4005-153473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153591/", + "id": 153591, + "name": "Odessa Drake", + "site_detail_url": "https://comicvine.gamespot.com/odessa-drake/4005-153591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153609/", + "id": 153609, + "name": "Metus", + "site_detail_url": "https://comicvine.gamespot.com/metus/4005-153609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153613/", + "id": 153613, + "name": "Cosmic Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider/4005-153613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153626/", + "id": 153626, + "name": "M'Demwe", + "site_detail_url": "https://comicvine.gamespot.com/mdemwe/4005-153626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153627/", + "id": 153627, + "name": "Tanso", + "site_detail_url": "https://comicvine.gamespot.com/tanso/4005-153627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153628/", + "id": 153628, + "name": "Cangza", + "site_detail_url": "https://comicvine.gamespot.com/cangza/4005-153628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153629/", + "id": 153629, + "name": "Takami", + "site_detail_url": "https://comicvine.gamespot.com/takami/4005-153629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153663/", + "id": 153663, + "name": "End Woman", + "site_detail_url": "https://comicvine.gamespot.com/end-woman/4005-153663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153664/", + "id": 153664, + "name": "Pug-Smasher", + "site_detail_url": "https://comicvine.gamespot.com/pug-smasher/4005-153664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153665/", + "id": 153665, + "name": "Tina Cooke", + "site_detail_url": "https://comicvine.gamespot.com/tina-cooke/4005-153665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153678/", + "id": 153678, + "name": "One Below All", + "site_detail_url": "https://comicvine.gamespot.com/one-below-all/4005-153678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153679/", + "id": 153679, + "name": "Gridlock", + "site_detail_url": "https://comicvine.gamespot.com/gridlock/4005-153679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153680/", + "id": 153680, + "name": "Bad Dream", + "site_detail_url": "https://comicvine.gamespot.com/bad-dream/4005-153680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153689/", + "id": 153689, + "name": "Spider-Amoeba", + "site_detail_url": "https://comicvine.gamespot.com/spider-amoeba/4005-153689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153690/", + "id": 153690, + "name": "Spider-Horse", + "site_detail_url": "https://comicvine.gamespot.com/spider-horse/4005-153690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153703/", + "id": 153703, + "name": "Carl Brock", + "site_detail_url": "https://comicvine.gamespot.com/carl-brock/4005-153703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153761/", + "id": 153761, + "name": "Brilliance", + "site_detail_url": "https://comicvine.gamespot.com/brilliance/4005-153761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153763/", + "id": 153763, + "name": "Rutherford Winner", + "site_detail_url": "https://comicvine.gamespot.com/rutherford-winner/4005-153763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153764/", + "id": 153764, + "name": "Mary Mahajan", + "site_detail_url": "https://comicvine.gamespot.com/mary-mahajan/4005-153764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153776/", + "id": 153776, + "name": "Narca", + "site_detail_url": "https://comicvine.gamespot.com/narca/4005-153776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153777/", + "id": 153777, + "name": "Marmo", + "site_detail_url": "https://comicvine.gamespot.com/marmo/4005-153777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153778/", + "id": 153778, + "name": "Kthonn", + "site_detail_url": "https://comicvine.gamespot.com/kthonn/4005-153778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153780/", + "id": 153780, + "name": "Earth-Mover", + "site_detail_url": "https://comicvine.gamespot.com/earth-mover/4005-153780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153822/", + "id": 153822, + "name": "Gib", + "site_detail_url": "https://comicvine.gamespot.com/gib/4005-153822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153826/", + "id": 153826, + "name": "Ashe", + "site_detail_url": "https://comicvine.gamespot.com/ashe/4005-153826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153827/", + "id": 153827, + "name": "Soldier Supreme", + "site_detail_url": "https://comicvine.gamespot.com/soldier-supreme/4005-153827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153828/", + "id": 153828, + "name": "Dryden Vos", + "site_detail_url": "https://comicvine.gamespot.com/dryden-vos/4005-153828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153829/", + "id": 153829, + "name": "Eleanor Bishop", + "site_detail_url": "https://comicvine.gamespot.com/eleanor-bishop/4005-153829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153837/", + "id": 153837, + "name": "Master Xar", + "site_detail_url": "https://comicvine.gamespot.com/master-xar/4005-153837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153839/", + "id": 153839, + "name": "Tiger Shark (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/tiger-shark-hobgoblin/4005-153839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153840/", + "id": 153840, + "name": "Cutter", + "site_detail_url": "https://comicvine.gamespot.com/cutter/4005-153840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153841/", + "id": 153841, + "name": "Mavis Fein", + "site_detail_url": "https://comicvine.gamespot.com/mavis-fein/4005-153841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153842/", + "id": 153842, + "name": "Natalie Mier", + "site_detail_url": "https://comicvine.gamespot.com/natalie-mier/4005-153842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153853/", + "id": 153853, + "name": "Gedeon Plexus", + "site_detail_url": "https://comicvine.gamespot.com/gedeon-plexus/4005-153853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153877/", + "id": 153877, + "name": "Sidney Forbush", + "site_detail_url": "https://comicvine.gamespot.com/sidney-forbush/4005-153877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153878/", + "id": 153878, + "name": "Skrull Dum Dum Dugan", + "site_detail_url": "https://comicvine.gamespot.com/skrull-dum-dum-dugan/4005-153878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153879/", + "id": 153879, + "name": "Tir-Zarr", + "site_detail_url": "https://comicvine.gamespot.com/tir-zarr/4005-153879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153880/", + "id": 153880, + "name": "Titan (Eurth)", + "site_detail_url": "https://comicvine.gamespot.com/titan-eurth/4005-153880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153881/", + "id": 153881, + "name": "Tok'r the Terrible", + "site_detail_url": "https://comicvine.gamespot.com/tokr-the-terrible/4005-153881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153882/", + "id": 153882, + "name": "Tongar", + "site_detail_url": "https://comicvine.gamespot.com/tongar/4005-153882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153883/", + "id": 153883, + "name": "Brandon Ikeda", + "site_detail_url": "https://comicvine.gamespot.com/brandon-ikeda/4005-153883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153893/", + "id": 153893, + "name": "Bridgitte", + "site_detail_url": "https://comicvine.gamespot.com/bridgitte/4005-153893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153911/", + "id": 153911, + "name": "Manticore", + "site_detail_url": "https://comicvine.gamespot.com/manticore/4005-153911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153921/", + "id": 153921, + "name": "Sally Pierce", + "site_detail_url": "https://comicvine.gamespot.com/sally-pierce/4005-153921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153922/", + "id": 153922, + "name": "Tad Marshall", + "site_detail_url": "https://comicvine.gamespot.com/tad-marshall/4005-153922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153930/", + "id": 153930, + "name": "Overtime", + "site_detail_url": "https://comicvine.gamespot.com/overtime/4005-153930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153937/", + "id": 153937, + "name": "Pinpoint", + "site_detail_url": "https://comicvine.gamespot.com/pinpoint/4005-153937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153938/", + "id": 153938, + "name": "Crimson Witch", + "site_detail_url": "https://comicvine.gamespot.com/crimson-witch/4005-153938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153940/", + "id": 153940, + "name": "Vincent Cetewayo", + "site_detail_url": "https://comicvine.gamespot.com/vincent-cetewayo/4005-153940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153941/", + "id": 153941, + "name": "Dr. Jefferies", + "site_detail_url": "https://comicvine.gamespot.com/dr-jefferies/4005-153941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-153942/", + "id": 153942, + "name": "Rebecca Bergier", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-bergier/4005-153942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154030/", + "id": 154030, + "name": "Iron Man 2.0", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-20/4005-154030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154031/", + "id": 154031, + "name": "Tranq", + "site_detail_url": "https://comicvine.gamespot.com/tranq/4005-154031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154032/", + "id": 154032, + "name": "Travis", + "site_detail_url": "https://comicvine.gamespot.com/travis/4005-154032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154036/", + "id": 154036, + "name": "Tremolo", + "site_detail_url": "https://comicvine.gamespot.com/tremolo/4005-154036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154037/", + "id": 154037, + "name": "Triton (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/triton-doppelganger/4005-154037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154038/", + "id": 154038, + "name": "Tungsten", + "site_detail_url": "https://comicvine.gamespot.com/tungsten/4005-154038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154039/", + "id": 154039, + "name": "Unicorn (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/unicorn-hobgoblin/4005-154039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154040/", + "id": 154040, + "name": "Sister Mercy", + "site_detail_url": "https://comicvine.gamespot.com/sister-mercy/4005-154040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154058/", + "id": 154058, + "name": "Utand", + "site_detail_url": "https://comicvine.gamespot.com/utand/4005-154058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154059/", + "id": 154059, + "name": "V'lrym", + "site_detail_url": "https://comicvine.gamespot.com/vlrym/4005-154059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154060/", + "id": 154060, + "name": "Valknar the Exhumer", + "site_detail_url": "https://comicvine.gamespot.com/valknar-the-exhumer/4005-154060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154061/", + "id": 154061, + "name": "Vane", + "site_detail_url": "https://comicvine.gamespot.com/vane/4005-154061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154097/", + "id": 154097, + "name": "Montague", + "site_detail_url": "https://comicvine.gamespot.com/montague/4005-154097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154100/", + "id": 154100, + "name": "Vision (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/vision-doppelganger/4005-154100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154107/", + "id": 154107, + "name": "Vladimir Korda", + "site_detail_url": "https://comicvine.gamespot.com/vladimir-korda/4005-154107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154109/", + "id": 154109, + "name": "Volsak", + "site_detail_url": "https://comicvine.gamespot.com/volsak/4005-154109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154127/", + "id": 154127, + "name": "Koly", + "site_detail_url": "https://comicvine.gamespot.com/koly/4005-154127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154128/", + "id": 154128, + "name": "Jannor", + "site_detail_url": "https://comicvine.gamespot.com/jannor/4005-154128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154129/", + "id": 154129, + "name": "Vraniel", + "site_detail_url": "https://comicvine.gamespot.com/vraniel/4005-154129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154130/", + "id": 154130, + "name": "Warlord", + "site_detail_url": "https://comicvine.gamespot.com/warlord/4005-154130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154131/", + "id": 154131, + "name": "Doomsmith", + "site_detail_url": "https://comicvine.gamespot.com/doomsmith/4005-154131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154134/", + "id": 154134, + "name": "Warmaker", + "site_detail_url": "https://comicvine.gamespot.com/warmaker/4005-154134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154135/", + "id": 154135, + "name": "Warthog", + "site_detail_url": "https://comicvine.gamespot.com/warthog/4005-154135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154136/", + "id": 154136, + "name": "Gawain", + "site_detail_url": "https://comicvine.gamespot.com/gawain/4005-154136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154137/", + "id": 154137, + "name": "Weapon Red", + "site_detail_url": "https://comicvine.gamespot.com/weapon-red/4005-154137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154138/", + "id": 154138, + "name": "Wendigo 1,000,000 B.C.", + "site_detail_url": "https://comicvine.gamespot.com/wendigo-1000000-bc/4005-154138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154140/", + "id": 154140, + "name": "Wild Child (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/wild-child-doppelganger/4005-154140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154143/", + "id": 154143, + "name": "William Collins", + "site_detail_url": "https://comicvine.gamespot.com/william-collins/4005-154143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154144/", + "id": 154144, + "name": "Captain Kid", + "site_detail_url": "https://comicvine.gamespot.com/captain-kid/4005-154144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154151/", + "id": 154151, + "name": "Wolverine (Hatchitech)", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-hatchitech/4005-154151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154152/", + "id": 154152, + "name": "Wonder Man (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-doppelganger/4005-154152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154153/", + "id": 154153, + "name": "Wolverine (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-doppelganger/4005-154153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154167/", + "id": 154167, + "name": "Dr. Sheri Holman", + "site_detail_url": "https://comicvine.gamespot.com/dr-sheri-holman/4005-154167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154182/", + "id": 154182, + "name": "Wormsong", + "site_detail_url": "https://comicvine.gamespot.com/wormsong/4005-154182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154203/", + "id": 154203, + "name": "Darkveil", + "site_detail_url": "https://comicvine.gamespot.com/darkveil/4005-154203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154204/", + "id": 154204, + "name": "X'axal", + "site_detail_url": "https://comicvine.gamespot.com/xaxal/4005-154204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154207/", + "id": 154207, + "name": "Painted Xan", + "site_detail_url": "https://comicvine.gamespot.com/painted-xan/4005-154207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154215/", + "id": 154215, + "name": "Stepping Razor", + "site_detail_url": "https://comicvine.gamespot.com/stepping-razor/4005-154215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154231/", + "id": 154231, + "name": "Yves St. Monroe", + "site_detail_url": "https://comicvine.gamespot.com/yves-st-monroe/4005-154231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154234/", + "id": 154234, + "name": "Agent Planck ", + "site_detail_url": "https://comicvine.gamespot.com/agent-planck/4005-154234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154235/", + "id": 154235, + "name": "Agent Kepler", + "site_detail_url": "https://comicvine.gamespot.com/agent-kepler/4005-154235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154236/", + "id": 154236, + "name": "Agent Copernicus", + "site_detail_url": "https://comicvine.gamespot.com/agent-copernicus/4005-154236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154237/", + "id": 154237, + "name": "Shadow Wing", + "site_detail_url": "https://comicvine.gamespot.com/shadow-wing/4005-154237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154238/", + "id": 154238, + "name": "Answer (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/answer-hobgoblin/4005-154238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154240/", + "id": 154240, + "name": "Blizzard (Jim)", + "site_detail_url": "https://comicvine.gamespot.com/blizzard-jim/4005-154240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154241/", + "id": 154241, + "name": "Cirin", + "site_detail_url": "https://comicvine.gamespot.com/cirin/4005-154241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154242/", + "id": 154242, + "name": "Darkhawk (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-doppelganger/4005-154242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154243/", + "id": 154243, + "name": "Dervish", + "site_detail_url": "https://comicvine.gamespot.com/dervish/4005-154243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154244/", + "id": 154244, + "name": "Derek Petrie", + "site_detail_url": "https://comicvine.gamespot.com/derek-petrie/4005-154244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154253/", + "id": 154253, + "name": "Dr'zzt", + "site_detail_url": "https://comicvine.gamespot.com/drzzt/4005-154253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154254/", + "id": 154254, + "name": "Dzirot", + "site_detail_url": "https://comicvine.gamespot.com/dzirot/4005-154254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154255/", + "id": 154255, + "name": "Enteki", + "site_detail_url": "https://comicvine.gamespot.com/enteki/4005-154255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154263/", + "id": 154263, + "name": "Genin", + "site_detail_url": "https://comicvine.gamespot.com/genin/4005-154263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154264/", + "id": 154264, + "name": "Paul", + "site_detail_url": "https://comicvine.gamespot.com/paul/4005-154264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154265/", + "id": 154265, + "name": "John", + "site_detail_url": "https://comicvine.gamespot.com/john/4005-154265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154266/", + "id": 154266, + "name": "Ringo", + "site_detail_url": "https://comicvine.gamespot.com/ringo/4005-154266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154267/", + "id": 154267, + "name": "Stu", + "site_detail_url": "https://comicvine.gamespot.com/stu/4005-154267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154270/", + "id": 154270, + "name": "Hitman (Hobgoblin)", + "site_detail_url": "https://comicvine.gamespot.com/hitman-hobgoblin/4005-154270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154271/", + "id": 154271, + "name": "Kyle Dyne", + "site_detail_url": "https://comicvine.gamespot.com/kyle-dyne/4005-154271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154276/", + "id": 154276, + "name": "Blaast", + "site_detail_url": "https://comicvine.gamespot.com/blaast/4005-154276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154277/", + "id": 154277, + "name": "Krush", + "site_detail_url": "https://comicvine.gamespot.com/krush/4005-154277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154278/", + "id": 154278, + "name": "Living Lightning (Doppelganger)", + "site_detail_url": "https://comicvine.gamespot.com/living-lightning-doppelganger/4005-154278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154279/", + "id": 154279, + "name": "Bo'sun Stug Bar", + "site_detail_url": "https://comicvine.gamespot.com/bosun-stug-bar/4005-154279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154282/", + "id": 154282, + "name": "King Coldassian", + "site_detail_url": "https://comicvine.gamespot.com/king-coldassian/4005-154282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154292/", + "id": 154292, + "name": "Prowler (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/prowler-clone/4005-154292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154294/", + "id": 154294, + "name": "R.H.I.N.O.", + "site_detail_url": "https://comicvine.gamespot.com/rhino/4005-154294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154295/", + "id": 154295, + "name": "Amp", + "site_detail_url": "https://comicvine.gamespot.com/amp/4005-154295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154297/", + "id": 154297, + "name": "Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/black-knight/4005-154297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154298/", + "id": 154298, + "name": "Cruise", + "site_detail_url": "https://comicvine.gamespot.com/cruise/4005-154298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154366/", + "id": 154366, + "name": "Valerie the Librarian", + "site_detail_url": "https://comicvine.gamespot.com/valerie-the-librarian/4005-154366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154372/", + "id": 154372, + "name": "Echo ", + "site_detail_url": "https://comicvine.gamespot.com/echo/4005-154372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154373/", + "id": 154373, + "name": "First Knife", + "site_detail_url": "https://comicvine.gamespot.com/first-knife/4005-154373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154374/", + "id": 154374, + "name": "Gorgon", + "site_detail_url": "https://comicvine.gamespot.com/gorgon/4005-154374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154385/", + "id": 154385, + "name": "Granite Phantom", + "site_detail_url": "https://comicvine.gamespot.com/granite-phantom/4005-154385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154389/", + "id": 154389, + "name": "Mateena ", + "site_detail_url": "https://comicvine.gamespot.com/mateena/4005-154389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154392/", + "id": 154392, + "name": "Moneta", + "site_detail_url": "https://comicvine.gamespot.com/moneta/4005-154392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154403/", + "id": 154403, + "name": "Howard Stark Sr.", + "site_detail_url": "https://comicvine.gamespot.com/howard-stark-sr/4005-154403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154405/", + "id": 154405, + "name": "Red Hammer", + "site_detail_url": "https://comicvine.gamespot.com/red-hammer/4005-154405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154406/", + "id": 154406, + "name": "Subject A-17", + "site_detail_url": "https://comicvine.gamespot.com/subject-a-17/4005-154406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154407/", + "id": 154407, + "name": "Commander Keris", + "site_detail_url": "https://comicvine.gamespot.com/commander-keris/4005-154407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154413/", + "id": 154413, + "name": "Mammoth", + "site_detail_url": "https://comicvine.gamespot.com/mammoth/4005-154413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154414/", + "id": 154414, + "name": "Molotok", + "site_detail_url": "https://comicvine.gamespot.com/molotok/4005-154414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154415/", + "id": 154415, + "name": "Nakovalna", + "site_detail_url": "https://comicvine.gamespot.com/nakovalna/4005-154415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154417/", + "id": 154417, + "name": "General Mors", + "site_detail_url": "https://comicvine.gamespot.com/general-mors/4005-154417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154418/", + "id": 154418, + "name": "Regent ", + "site_detail_url": "https://comicvine.gamespot.com/regent/4005-154418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154419/", + "id": 154419, + "name": "Robert Blackthorne", + "site_detail_url": "https://comicvine.gamespot.com/robert-blackthorne/4005-154419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154420/", + "id": 154420, + "name": "Siegsoldat", + "site_detail_url": "https://comicvine.gamespot.com/siegsoldat/4005-154420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154421/", + "id": 154421, + "name": "Skull ", + "site_detail_url": "https://comicvine.gamespot.com/skull/4005-154421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154422/", + "id": 154422, + "name": "William Stryker Jr.", + "site_detail_url": "https://comicvine.gamespot.com/william-stryker-jr/4005-154422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154423/", + "id": 154423, + "name": "Zero (Adam)", + "site_detail_url": "https://comicvine.gamespot.com/zero-adam/4005-154423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154495/", + "id": 154495, + "name": "Night Cat", + "site_detail_url": "https://comicvine.gamespot.com/night-cat/4005-154495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154496/", + "id": 154496, + "name": "Green Widow", + "site_detail_url": "https://comicvine.gamespot.com/green-widow/4005-154496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154497/", + "id": 154497, + "name": "Ghost Panther", + "site_detail_url": "https://comicvine.gamespot.com/ghost-panther/4005-154497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154498/", + "id": 154498, + "name": "Weapon Hex", + "site_detail_url": "https://comicvine.gamespot.com/weapon-hex/4005-154498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154506/", + "id": 154506, + "name": "Alec Dupledge", + "site_detail_url": "https://comicvine.gamespot.com/alec-dupledge/4005-154506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154507/", + "id": 154507, + "name": "Angorr", + "site_detail_url": "https://comicvine.gamespot.com/angorr/4005-154507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154508/", + "id": 154508, + "name": "Man-Spider", + "site_detail_url": "https://comicvine.gamespot.com/man-spider/4005-154508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154512/", + "id": 154512, + "name": "Blitzgeist", + "site_detail_url": "https://comicvine.gamespot.com/blitzgeist/4005-154512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154514/", + "id": 154514, + "name": "Oizys", + "site_detail_url": "https://comicvine.gamespot.com/oizys/4005-154514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154516/", + "id": 154516, + "name": "Slugfest", + "site_detail_url": "https://comicvine.gamespot.com/slugfest/4005-154516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154517/", + "id": 154517, + "name": "Vengeance 2099", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-2099/4005-154517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154526/", + "id": 154526, + "name": "Tuoks", + "site_detail_url": "https://comicvine.gamespot.com/tuoks/4005-154526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154540/", + "id": 154540, + "name": "RJ", + "site_detail_url": "https://comicvine.gamespot.com/rj/4005-154540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154542/", + "id": 154542, + "name": "Urzuul", + "site_detail_url": "https://comicvine.gamespot.com/urzuul/4005-154542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154543/", + "id": 154543, + "name": "Commando", + "site_detail_url": "https://comicvine.gamespot.com/commando/4005-154543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154544/", + "id": 154544, + "name": "Bull", + "site_detail_url": "https://comicvine.gamespot.com/bull/4005-154544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154545/", + "id": 154545, + "name": "Samurai", + "site_detail_url": "https://comicvine.gamespot.com/samurai/4005-154545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154546/", + "id": 154546, + "name": "Steel Warrior", + "site_detail_url": "https://comicvine.gamespot.com/steel-warrior/4005-154546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154547/", + "id": 154547, + "name": "Crisp", + "site_detail_url": "https://comicvine.gamespot.com/crisp/4005-154547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154552/", + "id": 154552, + "name": "Crowd Control", + "site_detail_url": "https://comicvine.gamespot.com/crowd-control/4005-154552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154569/", + "id": 154569, + "name": "SkekEkt", + "site_detail_url": "https://comicvine.gamespot.com/skekekt/4005-154569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154570/", + "id": 154570, + "name": "SkekAyuk", + "site_detail_url": "https://comicvine.gamespot.com/skekayuk/4005-154570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154577/", + "id": 154577, + "name": "Ezekial Boddington", + "site_detail_url": "https://comicvine.gamespot.com/ezekial-boddington/4005-154577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154578/", + "id": 154578, + "name": "Graverobber", + "site_detail_url": "https://comicvine.gamespot.com/graverobber/4005-154578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154581/", + "id": 154581, + "name": "Gearbox", + "site_detail_url": "https://comicvine.gamespot.com/gearbox/4005-154581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154582/", + "id": 154582, + "name": "General Sluggfest", + "site_detail_url": "https://comicvine.gamespot.com/general-sluggfest/4005-154582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154597/", + "id": 154597, + "name": "Katt", + "site_detail_url": "https://comicvine.gamespot.com/katt/4005-154597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154598/", + "id": 154598, + "name": "Jumpcut", + "site_detail_url": "https://comicvine.gamespot.com/jumpcut/4005-154598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154601/", + "id": 154601, + "name": "Knife Ambrose", + "site_detail_url": "https://comicvine.gamespot.com/knife-ambrose/4005-154601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154602/", + "id": 154602, + "name": "Laser-Head", + "site_detail_url": "https://comicvine.gamespot.com/laser-head/4005-154602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154603/", + "id": 154603, + "name": "Lokjaw", + "site_detail_url": "https://comicvine.gamespot.com/lokjaw/4005-154603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154604/", + "id": 154604, + "name": "Lord Flame Bearer", + "site_detail_url": "https://comicvine.gamespot.com/lord-flame-bearer/4005-154604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154608/", + "id": 154608, + "name": "Machine Head", + "site_detail_url": "https://comicvine.gamespot.com/machine-head/4005-154608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154609/", + "id": 154609, + "name": "Mongrel", + "site_detail_url": "https://comicvine.gamespot.com/mongrel/4005-154609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154616/", + "id": 154616, + "name": "Multi-Fractor", + "site_detail_url": "https://comicvine.gamespot.com/multi-fractor/4005-154616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154617/", + "id": 154617, + "name": "Overseer", + "site_detail_url": "https://comicvine.gamespot.com/overseer/4005-154617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154618/", + "id": 154618, + "name": "Predator 37", + "site_detail_url": "https://comicvine.gamespot.com/predator-37/4005-154618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154624/", + "id": 154624, + "name": "Som", + "site_detail_url": "https://comicvine.gamespot.com/som/4005-154624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154648/", + "id": 154648, + "name": "Radian", + "site_detail_url": "https://comicvine.gamespot.com/radian/4005-154648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154649/", + "id": 154649, + "name": "Rook Seven", + "site_detail_url": "https://comicvine.gamespot.com/rook-seven/4005-154649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154650/", + "id": 154650, + "name": "Throwback", + "site_detail_url": "https://comicvine.gamespot.com/throwback/4005-154650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154714/", + "id": 154714, + "name": "Funny Bunny", + "site_detail_url": "https://comicvine.gamespot.com/funny-bunny/4005-154714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154715/", + "id": 154715, + "name": "Godmother", + "site_detail_url": "https://comicvine.gamespot.com/godmother/4005-154715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154716/", + "id": 154716, + "name": "Magic Wanda", + "site_detail_url": "https://comicvine.gamespot.com/magic-wanda/4005-154716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154718/", + "id": 154718, + "name": "Ephex", + "site_detail_url": "https://comicvine.gamespot.com/ephex/4005-154718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154719/", + "id": 154719, + "name": "Angus Munro", + "site_detail_url": "https://comicvine.gamespot.com/angus-munro/4005-154719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154720/", + "id": 154720, + "name": "Murderer by Spider", + "site_detail_url": "https://comicvine.gamespot.com/murderer-by-spider/4005-154720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154722/", + "id": 154722, + "name": "Queen of Diamonds", + "site_detail_url": "https://comicvine.gamespot.com/queen-of-diamonds/4005-154722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154743/", + "id": 154743, + "name": "Evil McWeevil", + "site_detail_url": "https://comicvine.gamespot.com/evil-mcweevil/4005-154743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154744/", + "id": 154744, + "name": "Jolly Roger", + "site_detail_url": "https://comicvine.gamespot.com/jolly-roger/4005-154744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154745/", + "id": 154745, + "name": "Bluebeard", + "site_detail_url": "https://comicvine.gamespot.com/bluebeard/4005-154745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154746/", + "id": 154746, + "name": "Hook", + "site_detail_url": "https://comicvine.gamespot.com/hook/4005-154746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154747/", + "id": 154747, + "name": "Birthday Bandit", + "site_detail_url": "https://comicvine.gamespot.com/birthday-bandit/4005-154747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154748/", + "id": 154748, + "name": "Wallflower", + "site_detail_url": "https://comicvine.gamespot.com/wallflower/4005-154748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154749/", + "id": 154749, + "name": "Queen Bee", + "site_detail_url": "https://comicvine.gamespot.com/queen-bee/4005-154749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154750/", + "id": 154750, + "name": "Royal Beekeeper", + "site_detail_url": "https://comicvine.gamespot.com/royal-beekeeper/4005-154750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154751/", + "id": 154751, + "name": "Smog Man", + "site_detail_url": "https://comicvine.gamespot.com/smog-man/4005-154751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154752/", + "id": 154752, + "name": "The Wall", + "site_detail_url": "https://comicvine.gamespot.com/the-wall/4005-154752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154753/", + "id": 154753, + "name": "Webby-Two", + "site_detail_url": "https://comicvine.gamespot.com/webby-two/4005-154753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154762/", + "id": 154762, + "name": "Mac Porter", + "site_detail_url": "https://comicvine.gamespot.com/mac-porter/4005-154762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154772/", + "id": 154772, + "name": "Saviour", + "site_detail_url": "https://comicvine.gamespot.com/saviour/4005-154772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154773/", + "id": 154773, + "name": "Billy Briggs", + "site_detail_url": "https://comicvine.gamespot.com/billy-briggs/4005-154773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154774/", + "id": 154774, + "name": "Ms. Quizzler", + "site_detail_url": "https://comicvine.gamespot.com/ms-quizzler/4005-154774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154775/", + "id": 154775, + "name": "Aero", + "site_detail_url": "https://comicvine.gamespot.com/aero/4005-154775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154776/", + "id": 154776, + "name": "Lin Lie", + "site_detail_url": "https://comicvine.gamespot.com/lin-lie/4005-154776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154779/", + "id": 154779, + "name": "Denny Haynes", + "site_detail_url": "https://comicvine.gamespot.com/denny-haynes/4005-154779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154780/", + "id": 154780, + "name": "Anton DeLionatus ", + "site_detail_url": "https://comicvine.gamespot.com/anton-delionatus/4005-154780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154781/", + "id": 154781, + "name": "Tumbler", + "site_detail_url": "https://comicvine.gamespot.com/tumbler/4005-154781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154782/", + "id": 154782, + "name": "Acrobat", + "site_detail_url": "https://comicvine.gamespot.com/acrobat/4005-154782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154783/", + "id": 154783, + "name": "Strongman ", + "site_detail_url": "https://comicvine.gamespot.com/strongman/4005-154783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154794/", + "id": 154794, + "name": "Leilani", + "site_detail_url": "https://comicvine.gamespot.com/leilani/4005-154794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154795/", + "id": 154795, + "name": "Jasper ", + "site_detail_url": "https://comicvine.gamespot.com/jasper/4005-154795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154796/", + "id": 154796, + "name": "Tierra", + "site_detail_url": "https://comicvine.gamespot.com/tierra/4005-154796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154801/", + "id": 154801, + "name": "Robert Callahan", + "site_detail_url": "https://comicvine.gamespot.com/robert-callahan/4005-154801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154805/", + "id": 154805, + "name": "Architect", + "site_detail_url": "https://comicvine.gamespot.com/architect/4005-154805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154808/", + "id": 154808, + "name": "Seymour Simms", + "site_detail_url": "https://comicvine.gamespot.com/seymour-simms/4005-154808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154809/", + "id": 154809, + "name": "Whisperer", + "site_detail_url": "https://comicvine.gamespot.com/whisperer/4005-154809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154810/", + "id": 154810, + "name": "Outrider", + "site_detail_url": "https://comicvine.gamespot.com/outrider/4005-154810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154811/", + "id": 154811, + "name": "Samuel Fox", + "site_detail_url": "https://comicvine.gamespot.com/samuel-fox/4005-154811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154812/", + "id": 154812, + "name": "Charles Bates", + "site_detail_url": "https://comicvine.gamespot.com/charles-bates/4005-154812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154813/", + "id": 154813, + "name": "D", + "site_detail_url": "https://comicvine.gamespot.com/d/4005-154813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154814/", + "id": 154814, + "name": "Matthew DeRoma", + "site_detail_url": "https://comicvine.gamespot.com/matthew-deroma/4005-154814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154832/", + "id": 154832, + "name": "Rat Bomber", + "site_detail_url": "https://comicvine.gamespot.com/rat-bomber/4005-154832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154833/", + "id": 154833, + "name": "Snowsnake", + "site_detail_url": "https://comicvine.gamespot.com/snowsnake/4005-154833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154834/", + "id": 154834, + "name": "The Carpathian", + "site_detail_url": "https://comicvine.gamespot.com/the-carpathian/4005-154834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154835/", + "id": 154835, + "name": "Sarge", + "site_detail_url": "https://comicvine.gamespot.com/sarge/4005-154835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154836/", + "id": 154836, + "name": "Boy-Thing", + "site_detail_url": "https://comicvine.gamespot.com/boy-thing/4005-154836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154837/", + "id": 154837, + "name": "Curtis Hoyle", + "site_detail_url": "https://comicvine.gamespot.com/curtis-hoyle/4005-154837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154838/", + "id": 154838, + "name": "Senator Stan Ori", + "site_detail_url": "https://comicvine.gamespot.com/senator-stan-ori/4005-154838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154839/", + "id": 154839, + "name": "Mary of the Mennonite", + "site_detail_url": "https://comicvine.gamespot.com/mary-of-the-mennonite/4005-154839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154840/", + "id": 154840, + "name": "Luis", + "site_detail_url": "https://comicvine.gamespot.com/luis/4005-154840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154849/", + "id": 154849, + "name": "Shadow Dancer", + "site_detail_url": "https://comicvine.gamespot.com/shadow-dancer/4005-154849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154850/", + "id": 154850, + "name": "Slurt", + "site_detail_url": "https://comicvine.gamespot.com/slurt/4005-154850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154851/", + "id": 154851, + "name": "Soul-Dark", + "site_detail_url": "https://comicvine.gamespot.com/soul-dark/4005-154851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154852/", + "id": 154852, + "name": "Shiv", + "site_detail_url": "https://comicvine.gamespot.com/shiv/4005-154852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154853/", + "id": 154853, + "name": "Warbird", + "site_detail_url": "https://comicvine.gamespot.com/warbird/4005-154853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154856/", + "id": 154856, + "name": "William", + "site_detail_url": "https://comicvine.gamespot.com/william/4005-154856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154857/", + "id": 154857, + "name": "Major Toler Weil", + "site_detail_url": "https://comicvine.gamespot.com/major-toler-weil/4005-154857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154858/", + "id": 154858, + "name": "Winston Walker", + "site_detail_url": "https://comicvine.gamespot.com/winston-walker/4005-154858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154859/", + "id": 154859, + "name": "Starbrand (Richards)", + "site_detail_url": "https://comicvine.gamespot.com/starbrand-richards/4005-154859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154860/", + "id": 154860, + "name": "Beetle Boy", + "site_detail_url": "https://comicvine.gamespot.com/beetle-boy/4005-154860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154861/", + "id": 154861, + "name": "Benjamin Killgrave", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-killgrave/4005-154861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154892/", + "id": 154892, + "name": "Spider-Kid", + "site_detail_url": "https://comicvine.gamespot.com/spider-kid/4005-154892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154896/", + "id": 154896, + "name": "Henderson", + "site_detail_url": "https://comicvine.gamespot.com/henderson/4005-154896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154932/", + "id": 154932, + "name": "Apate", + "site_detail_url": "https://comicvine.gamespot.com/apate/4005-154932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154933/", + "id": 154933, + "name": "Dolos", + "site_detail_url": "https://comicvine.gamespot.com/dolos/4005-154933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154955/", + "id": 154955, + "name": "Serpent", + "site_detail_url": "https://comicvine.gamespot.com/serpent/4005-154955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-154956/", + "id": 154956, + "name": "Victor Octavius", + "site_detail_url": "https://comicvine.gamespot.com/victor-octavius/4005-154956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155168/", + "id": 155168, + "name": "Mosquito Man", + "site_detail_url": "https://comicvine.gamespot.com/mosquito-man/4005-155168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155169/", + "id": 155169, + "name": "Good Night", + "site_detail_url": "https://comicvine.gamespot.com/good-night/4005-155169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155170/", + "id": 155170, + "name": "Madison Warner", + "site_detail_url": "https://comicvine.gamespot.com/madison-warner/4005-155170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155171/", + "id": 155171, + "name": "Alice Warner", + "site_detail_url": "https://comicvine.gamespot.com/alice-warner/4005-155171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155173/", + "id": 155173, + "name": "Baal", + "site_detail_url": "https://comicvine.gamespot.com/baal/4005-155173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155174/", + "id": 155174, + "name": "Kreega", + "site_detail_url": "https://comicvine.gamespot.com/kreega/4005-155174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155175/", + "id": 155175, + "name": "Marmakaa", + "site_detail_url": "https://comicvine.gamespot.com/marmakaa/4005-155175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155181/", + "id": 155181, + "name": "Venom Ninja", + "site_detail_url": "https://comicvine.gamespot.com/venom-ninja/4005-155181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155192/", + "id": 155192, + "name": "Gloria Warner", + "site_detail_url": "https://comicvine.gamespot.com/gloria-warner/4005-155192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155193/", + "id": 155193, + "name": "Carl Warner", + "site_detail_url": "https://comicvine.gamespot.com/carl-warner/4005-155193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155226/", + "id": 155226, + "name": "Morjak", + "site_detail_url": "https://comicvine.gamespot.com/morjak/4005-155226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155230/", + "id": 155230, + "name": "Sonny Burch", + "site_detail_url": "https://comicvine.gamespot.com/sonny-burch/4005-155230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155254/", + "id": 155254, + "name": "Toby", + "site_detail_url": "https://comicvine.gamespot.com/toby/4005-155254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155358/", + "id": 155358, + "name": "Atrahasis", + "site_detail_url": "https://comicvine.gamespot.com/atrahasis/4005-155358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155373/", + "id": 155373, + "name": "Deathbringer", + "site_detail_url": "https://comicvine.gamespot.com/deathbringer/4005-155373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155383/", + "id": 155383, + "name": "Unveil ", + "site_detail_url": "https://comicvine.gamespot.com/unveil/4005-155383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155464/", + "id": 155464, + "name": "Mister Nobody", + "site_detail_url": "https://comicvine.gamespot.com/mister-nobody/4005-155464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155477/", + "id": 155477, + "name": "Scope", + "site_detail_url": "https://comicvine.gamespot.com/scope/4005-155477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155479/", + "id": 155479, + "name": "Superoid", + "site_detail_url": "https://comicvine.gamespot.com/superoid/4005-155479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155482/", + "id": 155482, + "name": "Scrier Prime", + "site_detail_url": "https://comicvine.gamespot.com/scrier-prime/4005-155482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155487/", + "id": 155487, + "name": "Lyle Drutcher", + "site_detail_url": "https://comicvine.gamespot.com/lyle-drutcher/4005-155487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155488/", + "id": 155488, + "name": "Kanchar", + "site_detail_url": "https://comicvine.gamespot.com/kanchar/4005-155488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155492/", + "id": 155492, + "name": "Apate ", + "site_detail_url": "https://comicvine.gamespot.com/apate/4005-155492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155493/", + "id": 155493, + "name": "Scripture ", + "site_detail_url": "https://comicvine.gamespot.com/scripture/4005-155493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155511/", + "id": 155511, + "name": "Skull Punch", + "site_detail_url": "https://comicvine.gamespot.com/skull-punch/4005-155511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155533/", + "id": 155533, + "name": "Time Thumb", + "site_detail_url": "https://comicvine.gamespot.com/time-thumb/4005-155533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155534/", + "id": 155534, + "name": "Thurston", + "site_detail_url": "https://comicvine.gamespot.com/thurston/4005-155534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155542/", + "id": 155542, + "name": "Nezumi Sen", + "site_detail_url": "https://comicvine.gamespot.com/nezumi-sen/4005-155542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155889/", + "id": 155889, + "name": "Major X", + "site_detail_url": "https://comicvine.gamespot.com/major-x/4005-155889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155962/", + "id": 155962, + "name": "Koga Thun", + "site_detail_url": "https://comicvine.gamespot.com/koga-thun/4005-155962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155974/", + "id": 155974, + "name": "Conduit ", + "site_detail_url": "https://comicvine.gamespot.com/conduit/4005-155974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155975/", + "id": 155975, + "name": "Triptych ", + "site_detail_url": "https://comicvine.gamespot.com/triptych/4005-155975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155976/", + "id": 155976, + "name": "Andrei", + "site_detail_url": "https://comicvine.gamespot.com/andrei/4005-155976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155989/", + "id": 155989, + "name": "Suty", + "site_detail_url": "https://comicvine.gamespot.com/suty/4005-155989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-155990/", + "id": 155990, + "name": "Menes", + "site_detail_url": "https://comicvine.gamespot.com/menes/4005-155990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156214/", + "id": 156214, + "name": "Jeela Brebtin", + "site_detail_url": "https://comicvine.gamespot.com/jeela-brebtin/4005-156214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156215/", + "id": 156215, + "name": "Zin Graw", + "site_detail_url": "https://comicvine.gamespot.com/zin-graw/4005-156215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156216/", + "id": 156216, + "name": "Ganem Kahi", + "site_detail_url": "https://comicvine.gamespot.com/ganem-kahi/4005-156216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156217/", + "id": 156217, + "name": "Teso Broosh", + "site_detail_url": "https://comicvine.gamespot.com/teso-broosh/4005-156217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156218/", + "id": 156218, + "name": "Commander Nuress", + "site_detail_url": "https://comicvine.gamespot.com/commander-nuress/4005-156218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156219/", + "id": 156219, + "name": "Eldred", + "site_detail_url": "https://comicvine.gamespot.com/eldred/4005-156219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156220/", + "id": 156220, + "name": "Overcharge", + "site_detail_url": "https://comicvine.gamespot.com/overcharge/4005-156220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156221/", + "id": 156221, + "name": "Arachnikid", + "site_detail_url": "https://comicvine.gamespot.com/arachnikid/4005-156221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156223/", + "id": 156223, + "name": "Dark Matter", + "site_detail_url": "https://comicvine.gamespot.com/dark-matter/4005-156223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156312/", + "id": 156312, + "name": "Motherboard", + "site_detail_url": "https://comicvine.gamespot.com/motherboard/4005-156312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156326/", + "id": 156326, + "name": "Anubis Robot", + "site_detail_url": "https://comicvine.gamespot.com/anubis-robot/4005-156326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156327/", + "id": 156327, + "name": "Horus Robot", + "site_detail_url": "https://comicvine.gamespot.com/horus-robot/4005-156327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156328/", + "id": 156328, + "name": "Khnum Robot", + "site_detail_url": "https://comicvine.gamespot.com/khnum-robot/4005-156328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156329/", + "id": 156329, + "name": "Sobek Robot", + "site_detail_url": "https://comicvine.gamespot.com/sobek-robot/4005-156329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156330/", + "id": 156330, + "name": "Bragmir", + "site_detail_url": "https://comicvine.gamespot.com/bragmir/4005-156330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156331/", + "id": 156331, + "name": "Glane", + "site_detail_url": "https://comicvine.gamespot.com/glane/4005-156331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156339/", + "id": 156339, + "name": "Misan-Ha-Gorath", + "site_detail_url": "https://comicvine.gamespot.com/misan-ha-gorath/4005-156339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156340/", + "id": 156340, + "name": "Irma Krakov", + "site_detail_url": "https://comicvine.gamespot.com/irma-krakov/4005-156340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156341/", + "id": 156341, + "name": "Klove", + "site_detail_url": "https://comicvine.gamespot.com/klove/4005-156341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156342/", + "id": 156342, + "name": "Dok-Ondar", + "site_detail_url": "https://comicvine.gamespot.com/dok-ondar/4005-156342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156343/", + "id": 156343, + "name": "Remex", + "site_detail_url": "https://comicvine.gamespot.com/remex/4005-156343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156344/", + "id": 156344, + "name": "Kendoh Voss", + "site_detail_url": "https://comicvine.gamespot.com/kendoh-voss/4005-156344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156345/", + "id": 156345, + "name": "Wooro", + "site_detail_url": "https://comicvine.gamespot.com/wooro/4005-156345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156347/", + "id": 156347, + "name": "Ballista Grim", + "site_detail_url": "https://comicvine.gamespot.com/ballista-grim/4005-156347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156348/", + "id": 156348, + "name": "Ferox", + "site_detail_url": "https://comicvine.gamespot.com/ferox/4005-156348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156349/", + "id": 156349, + "name": "Infesti Macera", + "site_detail_url": "https://comicvine.gamespot.com/infesti-macera/4005-156349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156350/", + "id": 156350, + "name": "Gorg", + "site_detail_url": "https://comicvine.gamespot.com/gorg/4005-156350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156351/", + "id": 156351, + "name": "Tin Man", + "site_detail_url": "https://comicvine.gamespot.com/tin-man/4005-156351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156352/", + "id": 156352, + "name": "T-Rex", + "site_detail_url": "https://comicvine.gamespot.com/t-rex/4005-156352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156353/", + "id": 156353, + "name": "Glarg", + "site_detail_url": "https://comicvine.gamespot.com/glarg/4005-156353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156356/", + "id": 156356, + "name": "Orange Hulk", + "site_detail_url": "https://comicvine.gamespot.com/orange-hulk/4005-156356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156359/", + "id": 156359, + "name": "Rasta ", + "site_detail_url": "https://comicvine.gamespot.com/rasta/4005-156359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156364/", + "id": 156364, + "name": "Jefferson Banner", + "site_detail_url": "https://comicvine.gamespot.com/jefferson-banner/4005-156364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156365/", + "id": 156365, + "name": "Bodean Banner", + "site_detail_url": "https://comicvine.gamespot.com/bodean-banner/4005-156365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156366/", + "id": 156366, + "name": "Eustace Banner", + "site_detail_url": "https://comicvine.gamespot.com/eustace-banner/4005-156366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156369/", + "id": 156369, + "name": "Generator Alpha", + "site_detail_url": "https://comicvine.gamespot.com/generator-alpha/4005-156369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156370/", + "id": 156370, + "name": "Sunspot (Grey)", + "site_detail_url": "https://comicvine.gamespot.com/sunspot-grey/4005-156370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156395/", + "id": 156395, + "name": "Allene Green", + "site_detail_url": "https://comicvine.gamespot.com/allene-green/4005-156395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156396/", + "id": 156396, + "name": "Nalin Oberoi", + "site_detail_url": "https://comicvine.gamespot.com/nalin-oberoi/4005-156396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156397/", + "id": 156397, + "name": "Fire King", + "site_detail_url": "https://comicvine.gamespot.com/fire-king/4005-156397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156399/", + "id": 156399, + "name": "Daarroh", + "site_detail_url": "https://comicvine.gamespot.com/daarroh/4005-156399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156400/", + "id": 156400, + "name": "Devil Who Dares", + "site_detail_url": "https://comicvine.gamespot.com/devil-who-dares/4005-156400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156408/", + "id": 156408, + "name": "Captain America A.I.", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-ai/4005-156408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156409/", + "id": 156409, + "name": "Nicholas Travis", + "site_detail_url": "https://comicvine.gamespot.com/nicholas-travis/4005-156409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156410/", + "id": 156410, + "name": "Tannan Six", + "site_detail_url": "https://comicvine.gamespot.com/tannan-six/4005-156410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156414/", + "id": 156414, + "name": "Kree Captain America", + "site_detail_url": "https://comicvine.gamespot.com/kree-captain-america/4005-156414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156415/", + "id": 156415, + "name": "Officer Saxon", + "site_detail_url": "https://comicvine.gamespot.com/officer-saxon/4005-156415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156417/", + "id": 156417, + "name": "Britanotron", + "site_detail_url": "https://comicvine.gamespot.com/britanotron/4005-156417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156418/", + "id": 156418, + "name": "Marrow God", + "site_detail_url": "https://comicvine.gamespot.com/marrow-god/4005-156418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156419/", + "id": 156419, + "name": "Buccaneer Britain", + "site_detail_url": "https://comicvine.gamespot.com/buccaneer-britain/4005-156419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156420/", + "id": 156420, + "name": "Will of the People", + "site_detail_url": "https://comicvine.gamespot.com/will-of-the-people/4005-156420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156421/", + "id": 156421, + "name": "Akko", + "site_detail_url": "https://comicvine.gamespot.com/akko/4005-156421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156422/", + "id": 156422, + "name": "Diamond Patch", + "site_detail_url": "https://comicvine.gamespot.com/diamond-patch/4005-156422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156427/", + "id": 156427, + "name": "Watari", + "site_detail_url": "https://comicvine.gamespot.com/watari/4005-156427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156437/", + "id": 156437, + "name": "Moon Squirrel", + "site_detail_url": "https://comicvine.gamespot.com/moon-squirrel/4005-156437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156438/", + "id": 156438, + "name": "Tippysaur", + "site_detail_url": "https://comicvine.gamespot.com/tippysaur/4005-156438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156439/", + "id": 156439, + "name": "Hot Rocks", + "site_detail_url": "https://comicvine.gamespot.com/hot-rocks/4005-156439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156440/", + "id": 156440, + "name": "Mister Invisible", + "site_detail_url": "https://comicvine.gamespot.com/mister-invisible/4005-156440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156483/", + "id": 156483, + "name": "Lux Crownguard", + "site_detail_url": "https://comicvine.gamespot.com/lux-crownguard/4005-156483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156485/", + "id": 156485, + "name": "Aggregate", + "site_detail_url": "https://comicvine.gamespot.com/aggregate/4005-156485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156486/", + "id": 156486, + "name": "Wave", + "site_detail_url": "https://comicvine.gamespot.com/wave/4005-156486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156496/", + "id": 156496, + "name": "Ivy Warner", + "site_detail_url": "https://comicvine.gamespot.com/ivy-warner/4005-156496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156500/", + "id": 156500, + "name": "Arwyn Wong", + "site_detail_url": "https://comicvine.gamespot.com/arwyn-wong/4005-156500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156501/", + "id": 156501, + "name": "Spider-Bite", + "site_detail_url": "https://comicvine.gamespot.com/spider-bite/4005-156501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156502/", + "id": 156502, + "name": "Master Matrix", + "site_detail_url": "https://comicvine.gamespot.com/master-matrix/4005-156502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156523/", + "id": 156523, + "name": "Goblin by Night", + "site_detail_url": "https://comicvine.gamespot.com/goblin-by-night/4005-156523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156524/", + "id": 156524, + "name": "Arachknight", + "site_detail_url": "https://comicvine.gamespot.com/arachknight/4005-156524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156525/", + "id": 156525, + "name": "Stella Marchesi", + "site_detail_url": "https://comicvine.gamespot.com/stella-marchesi/4005-156525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156526/", + "id": 156526, + "name": "Krimson Kurse", + "site_detail_url": "https://comicvine.gamespot.com/krimson-kurse/4005-156526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156528/", + "id": 156528, + "name": "Naftali", + "site_detail_url": "https://comicvine.gamespot.com/naftali/4005-156528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156529/", + "id": 156529, + "name": "Alanna", + "site_detail_url": "https://comicvine.gamespot.com/alanna/4005-156529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156530/", + "id": 156530, + "name": "Malik Khan", + "site_detail_url": "https://comicvine.gamespot.com/malik-khan/4005-156530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156591/", + "id": 156591, + "name": "Hellfire 2099", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-2099/4005-156591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156592/", + "id": 156592, + "name": "Michael Morpheus", + "site_detail_url": "https://comicvine.gamespot.com/michael-morpheus/4005-156592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156593/", + "id": 156593, + "name": "Erik Killraven", + "site_detail_url": "https://comicvine.gamespot.com/erik-killraven/4005-156593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156594/", + "id": 156594, + "name": "Kasyckla", + "site_detail_url": "https://comicvine.gamespot.com/kasyckla/4005-156594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156595/", + "id": 156595, + "name": "Last Son of Kraven", + "site_detail_url": "https://comicvine.gamespot.com/last-son-of-kraven/4005-156595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156613/", + "id": 156613, + "name": "The Siberian", + "site_detail_url": "https://comicvine.gamespot.com/the-siberian/4005-156613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156624/", + "id": 156624, + "name": "Fernande", + "site_detail_url": "https://comicvine.gamespot.com/fernande/4005-156624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156628/", + "id": 156628, + "name": "Speed Weasel", + "site_detail_url": "https://comicvine.gamespot.com/speed-weasel/4005-156628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156629/", + "id": 156629, + "name": "Hellhound", + "site_detail_url": "https://comicvine.gamespot.com/hellhound/4005-156629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156630/", + "id": 156630, + "name": "Madame Hel", + "site_detail_url": "https://comicvine.gamespot.com/madame-hel/4005-156630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156631/", + "id": 156631, + "name": "Cat's Eye", + "site_detail_url": "https://comicvine.gamespot.com/cats-eye/4005-156631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156642/", + "id": 156642, + "name": "Mr. Ridge", + "site_detail_url": "https://comicvine.gamespot.com/mr-ridge/4005-156642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156659/", + "id": 156659, + "name": "Kataw", + "site_detail_url": "https://comicvine.gamespot.com/kataw/4005-156659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156694/", + "id": 156694, + "name": "Harry Russell", + "site_detail_url": "https://comicvine.gamespot.com/harry-russell/4005-156694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156715/", + "id": 156715, + "name": "Starling", + "site_detail_url": "https://comicvine.gamespot.com/starling/4005-156715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156729/", + "id": 156729, + "name": "Emila Vachon", + "site_detail_url": "https://comicvine.gamespot.com/emila-vachon/4005-156729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156816/", + "id": 156816, + "name": "K.O. ", + "site_detail_url": "https://comicvine.gamespot.com/ko/4005-156816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156819/", + "id": 156819, + "name": "Tasmanian Devil", + "site_detail_url": "https://comicvine.gamespot.com/tasmanian-devil/4005-156819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156820/", + "id": 156820, + "name": "Nancy Nuke", + "site_detail_url": "https://comicvine.gamespot.com/nancy-nuke/4005-156820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156821/", + "id": 156821, + "name": "Captain Outback", + "site_detail_url": "https://comicvine.gamespot.com/captain-outback/4005-156821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156837/", + "id": 156837, + "name": "Bruno Grainger", + "site_detail_url": "https://comicvine.gamespot.com/bruno-grainger/4005-156837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156859/", + "id": 156859, + "name": "Garen", + "site_detail_url": "https://comicvine.gamespot.com/garen/4005-156859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156860/", + "id": 156860, + "name": "Sylas", + "site_detail_url": "https://comicvine.gamespot.com/sylas/4005-156860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156862/", + "id": 156862, + "name": "Shari Sebbens", + "site_detail_url": "https://comicvine.gamespot.com/shari-sebbens/4005-156862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156863/", + "id": 156863, + "name": "Tommy Machan", + "site_detail_url": "https://comicvine.gamespot.com/tommy-machan/4005-156863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156867/", + "id": 156867, + "name": "Melissa Bowen", + "site_detail_url": "https://comicvine.gamespot.com/melissa-bowen/4005-156867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156900/", + "id": 156900, + "name": "Plug-In Maniac", + "site_detail_url": "https://comicvine.gamespot.com/plug-in-maniac/4005-156900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156901/", + "id": 156901, + "name": "Sadurang", + "site_detail_url": "https://comicvine.gamespot.com/sadurang/4005-156901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156903/", + "id": 156903, + "name": "Signore Saviano", + "site_detail_url": "https://comicvine.gamespot.com/signore-saviano/4005-156903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156904/", + "id": 156904, + "name": "Sickle Priest", + "site_detail_url": "https://comicvine.gamespot.com/sickle-priest/4005-156904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156974/", + "id": 156974, + "name": "Muti", + "site_detail_url": "https://comicvine.gamespot.com/muti/4005-156974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156989/", + "id": 156989, + "name": "Dave Gomez", + "site_detail_url": "https://comicvine.gamespot.com/dave-gomez/4005-156989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-156992/", + "id": 156992, + "name": "Kindred", + "site_detail_url": "https://comicvine.gamespot.com/kindred/4005-156992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157011/", + "id": 157011, + "name": "Victorious", + "site_detail_url": "https://comicvine.gamespot.com/victorious/4005-157011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157012/", + "id": 157012, + "name": "Cheb Hura", + "site_detail_url": "https://comicvine.gamespot.com/cheb-hura/4005-157012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157013/", + "id": 157013, + "name": "Raptor Prime", + "site_detail_url": "https://comicvine.gamespot.com/raptor-prime/4005-157013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157036/", + "id": 157036, + "name": "Reine du Rien", + "site_detail_url": "https://comicvine.gamespot.com/reine-du-rien/4005-157036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157059/", + "id": 157059, + "name": "Rumor", + "site_detail_url": "https://comicvine.gamespot.com/rumor/4005-157059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157069/", + "id": 157069, + "name": "Prodigal", + "site_detail_url": "https://comicvine.gamespot.com/prodigal/4005-157069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157070/", + "id": 157070, + "name": "Shabang", + "site_detail_url": "https://comicvine.gamespot.com/shabang/4005-157070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157071/", + "id": 157071, + "name": "Eclipse", + "site_detail_url": "https://comicvine.gamespot.com/eclipse/4005-157071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157102/", + "id": 157102, + "name": "Headman", + "site_detail_url": "https://comicvine.gamespot.com/headman/4005-157102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157103/", + "id": 157103, + "name": "Poltergeist", + "site_detail_url": "https://comicvine.gamespot.com/poltergeist/4005-157103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157104/", + "id": 157104, + "name": "Bullsai", + "site_detail_url": "https://comicvine.gamespot.com/bullsai/4005-157104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157105/", + "id": 157105, + "name": "Rick Fury", + "site_detail_url": "https://comicvine.gamespot.com/rick-fury/4005-157105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157106/", + "id": 157106, + "name": "Janice Jones", + "site_detail_url": "https://comicvine.gamespot.com/janice-jones/4005-157106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157108/", + "id": 157108, + "name": "Dark Starhawk", + "site_detail_url": "https://comicvine.gamespot.com/dark-starhawk/4005-157108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157109/", + "id": 157109, + "name": "Man-Thing Thang Thoom", + "site_detail_url": "https://comicvine.gamespot.com/man-thing-thang-thoom/4005-157109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157110/", + "id": 157110, + "name": "Bucky Wong", + "site_detail_url": "https://comicvine.gamespot.com/bucky-wong/4005-157110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157111/", + "id": 157111, + "name": "Dormammu Red", + "site_detail_url": "https://comicvine.gamespot.com/dormammu-red/4005-157111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157112/", + "id": 157112, + "name": "M.O.R.D.OC", + "site_detail_url": "https://comicvine.gamespot.com/mordoc/4005-157112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157113/", + "id": 157113, + "name": "Deathstrique", + "site_detail_url": "https://comicvine.gamespot.com/deathstrique/4005-157113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157114/", + "id": 157114, + "name": "Bushman the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/bushman-the-hunter/4005-157114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157115/", + "id": 157115, + "name": "Ulysses Klorb", + "site_detail_url": "https://comicvine.gamespot.com/ulysses-klorb/4005-157115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157116/", + "id": 157116, + "name": "Baroness Umar", + "site_detail_url": "https://comicvine.gamespot.com/baroness-umar/4005-157116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157117/", + "id": 157117, + "name": "Mad Ghost", + "site_detail_url": "https://comicvine.gamespot.com/mad-ghost/4005-157117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157118/", + "id": 157118, + "name": "Cameron Belasco", + "site_detail_url": "https://comicvine.gamespot.com/cameron-belasco/4005-157118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157119/", + "id": 157119, + "name": "Devil-Fist", + "site_detail_url": "https://comicvine.gamespot.com/devil-fist/4005-157119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157120/", + "id": 157120, + "name": "U.S.Archmage", + "site_detail_url": "https://comicvine.gamespot.com/usarchmage/4005-157120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157121/", + "id": 157121, + "name": "Shuriri", + "site_detail_url": "https://comicvine.gamespot.com/shuriri/4005-157121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157122/", + "id": 157122, + "name": "Brother Crash", + "site_detail_url": "https://comicvine.gamespot.com/brother-crash/4005-157122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157123/", + "id": 157123, + "name": "Elsa Bladestone", + "site_detail_url": "https://comicvine.gamespot.com/elsa-bladestone/4005-157123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157124/", + "id": 157124, + "name": "Agatha Darkness", + "site_detail_url": "https://comicvine.gamespot.com/agatha-darkness/4005-157124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157125/", + "id": 157125, + "name": "Dagger Li", + "site_detail_url": "https://comicvine.gamespot.com/dagger-li/4005-157125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157126/", + "id": 157126, + "name": "Ratmaster", + "site_detail_url": "https://comicvine.gamespot.com/ratmaster/4005-157126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157127/", + "id": 157127, + "name": "Doctor Doomactus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doomactus/4005-157127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157128/", + "id": 157128, + "name": "Iron Titania", + "site_detail_url": "https://comicvine.gamespot.com/iron-titania/4005-157128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157129/", + "id": 157129, + "name": "Master Mole", + "site_detail_url": "https://comicvine.gamespot.com/master-mole/4005-157129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157130/", + "id": 157130, + "name": "Kamala Kang", + "site_detail_url": "https://comicvine.gamespot.com/kamala-kang/4005-157130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157131/", + "id": 157131, + "name": "Marley Jane Watson", + "site_detail_url": "https://comicvine.gamespot.com/marley-jane-watson/4005-157131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157132/", + "id": 157132, + "name": "Stane Odinson", + "site_detail_url": "https://comicvine.gamespot.com/stane-odinson/4005-157132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157133/", + "id": 157133, + "name": "Pepper the Wise", + "site_detail_url": "https://comicvine.gamespot.com/pepper-the-wise/4005-157133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157134/", + "id": 157134, + "name": "Toni the Grim", + "site_detail_url": "https://comicvine.gamespot.com/toni-the-grim/4005-157134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157135/", + "id": 157135, + "name": "Rhodey the Bold", + "site_detail_url": "https://comicvine.gamespot.com/rhodey-the-bold/4005-157135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157136/", + "id": 157136, + "name": "King Dragon", + "site_detail_url": "https://comicvine.gamespot.com/king-dragon/4005-157136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157137/", + "id": 157137, + "name": "Zzzyclone", + "site_detail_url": "https://comicvine.gamespot.com/zzzyclone/4005-157137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157138/", + "id": 157138, + "name": "Imus the Champion", + "site_detail_url": "https://comicvine.gamespot.com/imus-the-champion/4005-157138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157139/", + "id": 157139, + "name": "M-41 Zu", + "site_detail_url": "https://comicvine.gamespot.com/m-41-zu/4005-157139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157143/", + "id": 157143, + "name": "Sonny Ocampo", + "site_detail_url": "https://comicvine.gamespot.com/sonny-ocampo/4005-157143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157151/", + "id": 157151, + "name": "The A", + "site_detail_url": "https://comicvine.gamespot.com/the-a/4005-157151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157152/", + "id": 157152, + "name": "Phatty", + "site_detail_url": "https://comicvine.gamespot.com/phatty/4005-157152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157153/", + "id": 157153, + "name": "Mirror Girl", + "site_detail_url": "https://comicvine.gamespot.com/mirror-girl/4005-157153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157154/", + "id": 157154, + "name": "Uno", + "site_detail_url": "https://comicvine.gamespot.com/uno/4005-157154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157155/", + "id": 157155, + "name": "Hurt John", + "site_detail_url": "https://comicvine.gamespot.com/hurt-john/4005-157155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157156/", + "id": 157156, + "name": "Wentigra", + "site_detail_url": "https://comicvine.gamespot.com/wentigra/4005-157156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157157/", + "id": 157157, + "name": "Captain Peace", + "site_detail_url": "https://comicvine.gamespot.com/captain-peace/4005-157157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157158/", + "id": 157158, + "name": "Machine Mandrill", + "site_detail_url": "https://comicvine.gamespot.com/machine-mandrill/4005-157158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157159/", + "id": 157159, + "name": "Dylan Brock", + "site_detail_url": "https://comicvine.gamespot.com/dylan-brock/4005-157159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157162/", + "id": 157162, + "name": "Drrf", + "site_detail_url": "https://comicvine.gamespot.com/drrf/4005-157162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157229/", + "id": 157229, + "name": "Cole North", + "site_detail_url": "https://comicvine.gamespot.com/cole-north/4005-157229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157230/", + "id": 157230, + "name": "Rac Syrmo", + "site_detail_url": "https://comicvine.gamespot.com/rac-syrmo/4005-157230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157231/", + "id": 157231, + "name": "Yurib Nakan", + "site_detail_url": "https://comicvine.gamespot.com/yurib-nakan/4005-157231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157232/", + "id": 157232, + "name": "Bansu Ro", + "site_detail_url": "https://comicvine.gamespot.com/bansu-ro/4005-157232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157233/", + "id": 157233, + "name": "Star", + "site_detail_url": "https://comicvine.gamespot.com/star/4005-157233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157234/", + "id": 157234, + "name": "Knightblade", + "site_detail_url": "https://comicvine.gamespot.com/knightblade/4005-157234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157235/", + "id": 157235, + "name": "Soldier Supreme 2099", + "site_detail_url": "https://comicvine.gamespot.com/soldier-supreme-2099/4005-157235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157236/", + "id": 157236, + "name": "Weapon Hex 2099", + "site_detail_url": "https://comicvine.gamespot.com/weapon-hex-2099/4005-157236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157237/", + "id": 157237, + "name": "Arachknight 2099", + "site_detail_url": "https://comicvine.gamespot.com/arachknight-2099/4005-157237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157238/", + "id": 157238, + "name": "Iron Hammer 2099", + "site_detail_url": "https://comicvine.gamespot.com/iron-hammer-2099/4005-157238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157239/", + "id": 157239, + "name": "Ghost Panther 2099", + "site_detail_url": "https://comicvine.gamespot.com/ghost-panther-2099/4005-157239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157242/", + "id": 157242, + "name": "Jeff the Baby Land Shark", + "site_detail_url": "https://comicvine.gamespot.com/jeff-the-baby-land-shark/4005-157242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157246/", + "id": 157246, + "name": "Triage", + "site_detail_url": "https://comicvine.gamespot.com/triage/4005-157246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157255/", + "id": 157255, + "name": "Emma Hernandez", + "site_detail_url": "https://comicvine.gamespot.com/emma-hernandez/4005-157255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157265/", + "id": 157265, + "name": "Mephicthton", + "site_detail_url": "https://comicvine.gamespot.com/mephicthton/4005-157265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157266/", + "id": 157266, + "name": "Doopool", + "site_detail_url": "https://comicvine.gamespot.com/doopool/4005-157266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157296/", + "id": 157296, + "name": "Hyperbrand", + "site_detail_url": "https://comicvine.gamespot.com/hyperbrand/4005-157296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157297/", + "id": 157297, + "name": "Hawkmask", + "site_detail_url": "https://comicvine.gamespot.com/hawkmask/4005-157297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157298/", + "id": 157298, + "name": "Princess Powerhouse", + "site_detail_url": "https://comicvine.gamespot.com/princess-powerhouse/4005-157298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157299/", + "id": 157299, + "name": "Doctor Justice", + "site_detail_url": "https://comicvine.gamespot.com/doctor-justice/4005-157299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157300/", + "id": 157300, + "name": "Blurrer", + "site_detail_url": "https://comicvine.gamespot.com/blurrer/4005-157300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157301/", + "id": 157301, + "name": "Megalodon", + "site_detail_url": "https://comicvine.gamespot.com/megalodon/4005-157301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157302/", + "id": 157302, + "name": "Codename: Eagle", + "site_detail_url": "https://comicvine.gamespot.com/codename-eagle/4005-157302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157310/", + "id": 157310, + "name": "Dr. Hessen", + "site_detail_url": "https://comicvine.gamespot.com/dr-hessen/4005-157310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157346/", + "id": 157346, + "name": "Eamon X. Reilly", + "site_detail_url": "https://comicvine.gamespot.com/eamon-x-reilly/4005-157346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157347/", + "id": 157347, + "name": "Sybil Survess", + "site_detail_url": "https://comicvine.gamespot.com/sybil-survess/4005-157347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157350/", + "id": 157350, + "name": "Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/rasputin/4005-157350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157351/", + "id": 157351, + "name": "Cylobel", + "site_detail_url": "https://comicvine.gamespot.com/cylobel/4005-157351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157352/", + "id": 157352, + "name": "Cardinal", + "site_detail_url": "https://comicvine.gamespot.com/cardinal/4005-157352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157356/", + "id": 157356, + "name": "Nomak", + "site_detail_url": "https://comicvine.gamespot.com/nomak/4005-157356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157357/", + "id": 157357, + "name": "Scud", + "site_detail_url": "https://comicvine.gamespot.com/scud/4005-157357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157358/", + "id": 157358, + "name": "Asad", + "site_detail_url": "https://comicvine.gamespot.com/asad/4005-157358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157359/", + "id": 157359, + "name": "Priest", + "site_detail_url": "https://comicvine.gamespot.com/priest/4005-157359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157360/", + "id": 157360, + "name": "Snowman", + "site_detail_url": "https://comicvine.gamespot.com/snowman/4005-157360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157361/", + "id": 157361, + "name": "Verlaine", + "site_detail_url": "https://comicvine.gamespot.com/verlaine/4005-157361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157362/", + "id": 157362, + "name": "Lighthammer", + "site_detail_url": "https://comicvine.gamespot.com/lighthammer/4005-157362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157363/", + "id": 157363, + "name": "Chupa", + "site_detail_url": "https://comicvine.gamespot.com/chupa/4005-157363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157364/", + "id": 157364, + "name": "Reinhardt", + "site_detail_url": "https://comicvine.gamespot.com/reinhardt/4005-157364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157365/", + "id": 157365, + "name": "Damaskinos", + "site_detail_url": "https://comicvine.gamespot.com/damaskinos/4005-157365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157366/", + "id": 157366, + "name": "Zarrko-Neg", + "site_detail_url": "https://comicvine.gamespot.com/zarrko-neg/4005-157366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157367/", + "id": 157367, + "name": "Korvos", + "site_detail_url": "https://comicvine.gamespot.com/korvos/4005-157367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157368/", + "id": 157368, + "name": "Happy Jane Hogan", + "site_detail_url": "https://comicvine.gamespot.com/happy-jane-hogan/4005-157368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157397/", + "id": 157397, + "name": "Isaac Ikeda", + "site_detail_url": "https://comicvine.gamespot.com/isaac-ikeda/4005-157397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157406/", + "id": 157406, + "name": "Aidan Tintreach ", + "site_detail_url": "https://comicvine.gamespot.com/aidan-tintreach/4005-157406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157567/", + "id": 157567, + "name": "North", + "site_detail_url": "https://comicvine.gamespot.com/north/4005-157567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157583/", + "id": 157583, + "name": "Peter Quincy", + "site_detail_url": "https://comicvine.gamespot.com/peter-quincy/4005-157583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157647/", + "id": 157647, + "name": "Mindy Libris", + "site_detail_url": "https://comicvine.gamespot.com/mindy-libris/4005-157647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157650/", + "id": 157650, + "name": "Fred Higgins", + "site_detail_url": "https://comicvine.gamespot.com/fred-higgins/4005-157650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157772/", + "id": 157772, + "name": "Wastrel", + "site_detail_url": "https://comicvine.gamespot.com/wastrel/4005-157772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157773/", + "id": 157773, + "name": "Hypno Creature", + "site_detail_url": "https://comicvine.gamespot.com/hypno-creature/4005-157773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157774/", + "id": 157774, + "name": "Russian Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/russian-ghost-rider/4005-157774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157906/", + "id": 157906, + "name": "Eno Cordova", + "site_detail_url": "https://comicvine.gamespot.com/eno-cordova/4005-157906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157907/", + "id": 157907, + "name": "Cere Junda", + "site_detail_url": "https://comicvine.gamespot.com/cere-junda/4005-157907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157918/", + "id": 157918, + "name": "Bo", + "site_detail_url": "https://comicvine.gamespot.com/bo/4005-157918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157919/", + "id": 157919, + "name": "Rim", + "site_detail_url": "https://comicvine.gamespot.com/rim/4005-157919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157938/", + "id": 157938, + "name": "Al'Ti Vidua", + "site_detail_url": "https://comicvine.gamespot.com/alti-vidua/4005-157938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157939/", + "id": 157939, + "name": "Phyllis", + "site_detail_url": "https://comicvine.gamespot.com/phyllis/4005-157939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157940/", + "id": 157940, + "name": "Kl'Rath", + "site_detail_url": "https://comicvine.gamespot.com/klrath/4005-157940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157941/", + "id": 157941, + "name": "Persephone", + "site_detail_url": "https://comicvine.gamespot.com/persephone/4005-157941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157945/", + "id": 157945, + "name": "Percival", + "site_detail_url": "https://comicvine.gamespot.com/percival/4005-157945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157955/", + "id": 157955, + "name": "Colleen Tintreach", + "site_detail_url": "https://comicvine.gamespot.com/colleen-tintreach/4005-157955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157956/", + "id": 157956, + "name": "Enemy Argent", + "site_detail_url": "https://comicvine.gamespot.com/enemy-argent/4005-157956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157964/", + "id": 157964, + "name": "Now", + "site_detail_url": "https://comicvine.gamespot.com/now/4005-157964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-157965/", + "id": 157965, + "name": "Then", + "site_detail_url": "https://comicvine.gamespot.com/then/4005-157965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158050/", + "id": 158050, + "name": "Keystone", + "site_detail_url": "https://comicvine.gamespot.com/keystone/4005-158050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158051/", + "id": 158051, + "name": "Madame Huang", + "site_detail_url": "https://comicvine.gamespot.com/madame-huang/4005-158051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158052/", + "id": 158052, + "name": "Ji Shuangshuang", + "site_detail_url": "https://comicvine.gamespot.com/ji-shuangshuang/4005-158052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158055/", + "id": 158055, + "name": "Death's Head V", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-v/4005-158055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158063/", + "id": 158063, + "name": "Sea Hunter", + "site_detail_url": "https://comicvine.gamespot.com/sea-hunter/4005-158063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158066/", + "id": 158066, + "name": "Elias Spector", + "site_detail_url": "https://comicvine.gamespot.com/elias-spector/4005-158066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158067/", + "id": 158067, + "name": "Zohar", + "site_detail_url": "https://comicvine.gamespot.com/zohar/4005-158067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158071/", + "id": 158071, + "name": "Ah Cheng", + "site_detail_url": "https://comicvine.gamespot.com/ah-cheng/4005-158071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158072/", + "id": 158072, + "name": "Octavia Vetivier", + "site_detail_url": "https://comicvine.gamespot.com/octavia-vetivier/4005-158072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158073/", + "id": 158073, + "name": "Cadaverous", + "site_detail_url": "https://comicvine.gamespot.com/cadaverous/4005-158073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158074/", + "id": 158074, + "name": "T'Wari", + "site_detail_url": "https://comicvine.gamespot.com/twari/4005-158074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158076/", + "id": 158076, + "name": "Red Widow", + "site_detail_url": "https://comicvine.gamespot.com/red-widow/4005-158076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158123/", + "id": 158123, + "name": "Tallisan Lintra", + "site_detail_url": "https://comicvine.gamespot.com/tallisan-lintra/4005-158123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158151/", + "id": 158151, + "name": "Inndig-o", + "site_detail_url": "https://comicvine.gamespot.com/inndig-o/4005-158151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158153/", + "id": 158153, + "name": "Ghost Cat", + "site_detail_url": "https://comicvine.gamespot.com/ghost-cat/4005-158153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158155/", + "id": 158155, + "name": "Seruly-n", + "site_detail_url": "https://comicvine.gamespot.com/seruly-n/4005-158155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158156/", + "id": 158156, + "name": "Cadmi-m", + "site_detail_url": "https://comicvine.gamespot.com/cadmi-m/4005-158156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158157/", + "id": 158157, + "name": "Yond-r", + "site_detail_url": "https://comicvine.gamespot.com/yond-r/4005-158157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158158/", + "id": 158158, + "name": "Major-l", + "site_detail_url": "https://comicvine.gamespot.com/major-l/4005-158158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158185/", + "id": 158185, + "name": "Count Ophidian", + "site_detail_url": "https://comicvine.gamespot.com/count-ophidian/4005-158185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158202/", + "id": 158202, + "name": "Sidearm", + "site_detail_url": "https://comicvine.gamespot.com/sidearm/4005-158202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158203/", + "id": 158203, + "name": "Elementa", + "site_detail_url": "https://comicvine.gamespot.com/elementa/4005-158203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158204/", + "id": 158204, + "name": "Kaylo", + "site_detail_url": "https://comicvine.gamespot.com/kaylo/4005-158204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158205/", + "id": 158205, + "name": "Kor", + "site_detail_url": "https://comicvine.gamespot.com/kor/4005-158205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158206/", + "id": 158206, + "name": "Belter", + "site_detail_url": "https://comicvine.gamespot.com/belter/4005-158206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158207/", + "id": 158207, + "name": "Citadel", + "site_detail_url": "https://comicvine.gamespot.com/citadel/4005-158207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158208/", + "id": 158208, + "name": "Sky", + "site_detail_url": "https://comicvine.gamespot.com/sky/4005-158208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158230/", + "id": 158230, + "name": "Baloney-Head", + "site_detail_url": "https://comicvine.gamespot.com/baloney-head/4005-158230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158274/", + "id": 158274, + "name": "Salmon Stunt Man", + "site_detail_url": "https://comicvine.gamespot.com/salmon-stunt-man/4005-158274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158300/", + "id": 158300, + "name": "Burner", + "site_detail_url": "https://comicvine.gamespot.com/burner/4005-158300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158301/", + "id": 158301, + "name": "Override", + "site_detail_url": "https://comicvine.gamespot.com/override/4005-158301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158302/", + "id": 158302, + "name": "Windchill", + "site_detail_url": "https://comicvine.gamespot.com/windchill/4005-158302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158303/", + "id": 158303, + "name": "Kid Vanish", + "site_detail_url": "https://comicvine.gamespot.com/kid-vanish/4005-158303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158304/", + "id": 158304, + "name": "Doubletime", + "site_detail_url": "https://comicvine.gamespot.com/doubletime/4005-158304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158309/", + "id": 158309, + "name": "Lenore Rogaland", + "site_detail_url": "https://comicvine.gamespot.com/lenore-rogaland/4005-158309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158310/", + "id": 158310, + "name": "Colonel Blackstone", + "site_detail_url": "https://comicvine.gamespot.com/colonel-blackstone/4005-158310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158312/", + "id": 158312, + "name": "Drako", + "site_detail_url": "https://comicvine.gamespot.com/drako/4005-158312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158313/", + "id": 158313, + "name": "Marguerita Burnemissza", + "site_detail_url": "https://comicvine.gamespot.com/marguerita-burnemissza/4005-158313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158314/", + "id": 158314, + "name": "Lenore Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/lenore-frankenstein/4005-158314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158315/", + "id": 158315, + "name": "Betty", + "site_detail_url": "https://comicvine.gamespot.com/betty/4005-158315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158316/", + "id": 158316, + "name": "Billy", + "site_detail_url": "https://comicvine.gamespot.com/billy/4005-158316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158317/", + "id": 158317, + "name": "Eddie", + "site_detail_url": "https://comicvine.gamespot.com/eddie/4005-158317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158318/", + "id": 158318, + "name": "Chad", + "site_detail_url": "https://comicvine.gamespot.com/chad/4005-158318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158322/", + "id": 158322, + "name": "Doc Justice", + "site_detail_url": "https://comicvine.gamespot.com/doc-justice/4005-158322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158330/", + "id": 158330, + "name": "Hurricane", + "site_detail_url": "https://comicvine.gamespot.com/hurricane/4005-158330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158331/", + "id": 158331, + "name": "Charade", + "site_detail_url": "https://comicvine.gamespot.com/charade/4005-158331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158332/", + "id": 158332, + "name": "Codec", + "site_detail_url": "https://comicvine.gamespot.com/codec/4005-158332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158333/", + "id": 158333, + "name": "Twister", + "site_detail_url": "https://comicvine.gamespot.com/twister/4005-158333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158334/", + "id": 158334, + "name": "Danton Vayla", + "site_detail_url": "https://comicvine.gamespot.com/danton-vayla/4005-158334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158335/", + "id": 158335, + "name": "Acolyte Croft", + "site_detail_url": "https://comicvine.gamespot.com/acolyte-croft/4005-158335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158336/", + "id": 158336, + "name": "Tisha", + "site_detail_url": "https://comicvine.gamespot.com/tisha/4005-158336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158337/", + "id": 158337, + "name": "Gretchen", + "site_detail_url": "https://comicvine.gamespot.com/gretchen/4005-158337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158338/", + "id": 158338, + "name": "Ruthie", + "site_detail_url": "https://comicvine.gamespot.com/ruthie/4005-158338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158339/", + "id": 158339, + "name": "James Talbott", + "site_detail_url": "https://comicvine.gamespot.com/james-talbott/4005-158339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158340/", + "id": 158340, + "name": "Master of Freaks", + "site_detail_url": "https://comicvine.gamespot.com/master-of-freaks/4005-158340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158341/", + "id": 158341, + "name": "Bruno", + "site_detail_url": "https://comicvine.gamespot.com/bruno/4005-158341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158342/", + "id": 158342, + "name": "Bernard", + "site_detail_url": "https://comicvine.gamespot.com/bernard/4005-158342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158343/", + "id": 158343, + "name": "Julia Winters", + "site_detail_url": "https://comicvine.gamespot.com/julia-winters/4005-158343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158344/", + "id": 158344, + "name": "Cynthia", + "site_detail_url": "https://comicvine.gamespot.com/cynthia/4005-158344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158345/", + "id": 158345, + "name": "Andy", + "site_detail_url": "https://comicvine.gamespot.com/andy/4005-158345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158346/", + "id": 158346, + "name": "George", + "site_detail_url": "https://comicvine.gamespot.com/george/4005-158346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158351/", + "id": 158351, + "name": "Red", + "site_detail_url": "https://comicvine.gamespot.com/red/4005-158351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158352/", + "id": 158352, + "name": "Yellow", + "site_detail_url": "https://comicvine.gamespot.com/yellow/4005-158352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158353/", + "id": 158353, + "name": "Blue", + "site_detail_url": "https://comicvine.gamespot.com/blue/4005-158353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158354/", + "id": 158354, + "name": "Green", + "site_detail_url": "https://comicvine.gamespot.com/green/4005-158354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158355/", + "id": 158355, + "name": "Orange", + "site_detail_url": "https://comicvine.gamespot.com/orange/4005-158355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158356/", + "id": 158356, + "name": "Ms. Brown", + "site_detail_url": "https://comicvine.gamespot.com/ms-brown/4005-158356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158371/", + "id": 158371, + "name": "Eddie", + "site_detail_url": "https://comicvine.gamespot.com/eddie/4005-158371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158372/", + "id": 158372, + "name": "Billy", + "site_detail_url": "https://comicvine.gamespot.com/billy/4005-158372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158373/", + "id": 158373, + "name": "Igor", + "site_detail_url": "https://comicvine.gamespot.com/igor/4005-158373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158374/", + "id": 158374, + "name": "Behemoth (Kay-Twelve)", + "site_detail_url": "https://comicvine.gamespot.com/behemoth-kay-twelve/4005-158374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158375/", + "id": 158375, + "name": "Mr. Gabriel", + "site_detail_url": "https://comicvine.gamespot.com/mr-gabriel/4005-158375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158376/", + "id": 158376, + "name": "Ma Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/ma-mayhem/4005-158376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158377/", + "id": 158377, + "name": "Larry Tong", + "site_detail_url": "https://comicvine.gamespot.com/larry-tong/4005-158377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158378/", + "id": 158378, + "name": "Louis Belski", + "site_detail_url": "https://comicvine.gamespot.com/louis-belski/4005-158378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158379/", + "id": 158379, + "name": "Liza Pyne", + "site_detail_url": "https://comicvine.gamespot.com/liza-pyne/4005-158379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158380/", + "id": 158380, + "name": "Gary Stone", + "site_detail_url": "https://comicvine.gamespot.com/gary-stone/4005-158380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158416/", + "id": 158416, + "name": "Sam", + "site_detail_url": "https://comicvine.gamespot.com/sam/4005-158416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158417/", + "id": 158417, + "name": "Simon Kolb", + "site_detail_url": "https://comicvine.gamespot.com/simon-kolb/4005-158417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158418/", + "id": 158418, + "name": "Mrs. Redditch", + "site_detail_url": "https://comicvine.gamespot.com/mrs-redditch/4005-158418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158424/", + "id": 158424, + "name": "Father of All Worlds", + "site_detail_url": "https://comicvine.gamespot.com/father-of-all-worlds/4005-158424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158425/", + "id": 158425, + "name": "Soul-Beast", + "site_detail_url": "https://comicvine.gamespot.com/soul-beast/4005-158425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158426/", + "id": 158426, + "name": "Dr. Allen", + "site_detail_url": "https://comicvine.gamespot.com/dr-allen/4005-158426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158427/", + "id": 158427, + "name": "Terri", + "site_detail_url": "https://comicvine.gamespot.com/terri/4005-158427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158428/", + "id": 158428, + "name": "Chains", + "site_detail_url": "https://comicvine.gamespot.com/chains/4005-158428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158429/", + "id": 158429, + "name": "Bennie & Little Man", + "site_detail_url": "https://comicvine.gamespot.com/bennie-and-little-man/4005-158429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158430/", + "id": 158430, + "name": "Garth", + "site_detail_url": "https://comicvine.gamespot.com/garth/4005-158430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158431/", + "id": 158431, + "name": "Louis", + "site_detail_url": "https://comicvine.gamespot.com/louis/4005-158431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158432/", + "id": 158432, + "name": "Mr. Evans", + "site_detail_url": "https://comicvine.gamespot.com/mr-evans/4005-158432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158433/", + "id": 158433, + "name": "Desmond", + "site_detail_url": "https://comicvine.gamespot.com/desmond/4005-158433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158434/", + "id": 158434, + "name": "Mr. Carruthers", + "site_detail_url": "https://comicvine.gamespot.com/mr-carruthers/4005-158434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158435/", + "id": 158435, + "name": "Lydia", + "site_detail_url": "https://comicvine.gamespot.com/lydia/4005-158435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158491/", + "id": 158491, + "name": "Smash & Grab", + "site_detail_url": "https://comicvine.gamespot.com/smash-and-grab/4005-158491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158495/", + "id": 158495, + "name": "Sardanus", + "site_detail_url": "https://comicvine.gamespot.com/sardanus/4005-158495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158496/", + "id": 158496, + "name": "Savant", + "site_detail_url": "https://comicvine.gamespot.com/savant/4005-158496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158497/", + "id": 158497, + "name": "Buttons Marston", + "site_detail_url": "https://comicvine.gamespot.com/buttons-marston/4005-158497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158498/", + "id": 158498, + "name": "Elaine Marston", + "site_detail_url": "https://comicvine.gamespot.com/elaine-marston/4005-158498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158499/", + "id": 158499, + "name": "Eddie", + "site_detail_url": "https://comicvine.gamespot.com/eddie/4005-158499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158500/", + "id": 158500, + "name": "Banita", + "site_detail_url": "https://comicvine.gamespot.com/banita/4005-158500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158501/", + "id": 158501, + "name": "Maura", + "site_detail_url": "https://comicvine.gamespot.com/maura/4005-158501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158502/", + "id": 158502, + "name": "Stroat", + "site_detail_url": "https://comicvine.gamespot.com/stroat/4005-158502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158503/", + "id": 158503, + "name": "Papa Jaranda", + "site_detail_url": "https://comicvine.gamespot.com/papa-jaranda/4005-158503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158504/", + "id": 158504, + "name": "Lara", + "site_detail_url": "https://comicvine.gamespot.com/lara/4005-158504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158510/", + "id": 158510, + "name": "Jerome Selwin", + "site_detail_url": "https://comicvine.gamespot.com/jerome-selwin/4005-158510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158524/", + "id": 158524, + "name": "Electro (Shiraishi)", + "site_detail_url": "https://comicvine.gamespot.com/electro-shiraishi/4005-158524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158525/", + "id": 158525, + "name": "Rumiko Shiraishi", + "site_detail_url": "https://comicvine.gamespot.com/rumiko-shiraishi/4005-158525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158526/", + "id": 158526, + "name": "Doctor Inumaru", + "site_detail_url": "https://comicvine.gamespot.com/doctor-inumaru/4005-158526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158527/", + "id": 158527, + "name": "Mysterio (Kitagawa)", + "site_detail_url": "https://comicvine.gamespot.com/mysterio-kitagawa/4005-158527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158528/", + "id": 158528, + "name": "Winter Woman", + "site_detail_url": "https://comicvine.gamespot.com/winter-woman/4005-158528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158533/", + "id": 158533, + "name": "Mack", + "site_detail_url": "https://comicvine.gamespot.com/mack/4005-158533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158534/", + "id": 158534, + "name": "Maura", + "site_detail_url": "https://comicvine.gamespot.com/maura/4005-158534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158535/", + "id": 158535, + "name": "Morrison", + "site_detail_url": "https://comicvine.gamespot.com/morrison/4005-158535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158536/", + "id": 158536, + "name": "Creach", + "site_detail_url": "https://comicvine.gamespot.com/creach/4005-158536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158537/", + "id": 158537, + "name": "Pardee", + "site_detail_url": "https://comicvine.gamespot.com/pardee/4005-158537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158538/", + "id": 158538, + "name": "Strenk", + "site_detail_url": "https://comicvine.gamespot.com/strenk/4005-158538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158539/", + "id": 158539, + "name": "Erasmus Mendel ", + "site_detail_url": "https://comicvine.gamespot.com/erasmus-mendel/4005-158539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158554/", + "id": 158554, + "name": "Cosmic Spector", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-spector/4005-158554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158555/", + "id": 158555, + "name": "Trojan", + "site_detail_url": "https://comicvine.gamespot.com/trojan/4005-158555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158556/", + "id": 158556, + "name": "Vaengar", + "site_detail_url": "https://comicvine.gamespot.com/vaengar/4005-158556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158557/", + "id": 158557, + "name": "Cratus", + "site_detail_url": "https://comicvine.gamespot.com/cratus/4005-158557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158558/", + "id": 158558, + "name": "Mephitis", + "site_detail_url": "https://comicvine.gamespot.com/mephitis/4005-158558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158559/", + "id": 158559, + "name": "Vigor", + "site_detail_url": "https://comicvine.gamespot.com/vigor/4005-158559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158567/", + "id": 158567, + "name": "Joro Spider", + "site_detail_url": "https://comicvine.gamespot.com/joro-spider/4005-158567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158568/", + "id": 158568, + "name": "Apastron", + "site_detail_url": "https://comicvine.gamespot.com/apastron/4005-158568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158570/", + "id": 158570, + "name": "Swoopy the Fearless", + "site_detail_url": "https://comicvine.gamespot.com/swoopy-the-fearless/4005-158570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158572/", + "id": 158572, + "name": "Overseer", + "site_detail_url": "https://comicvine.gamespot.com/overseer/4005-158572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158573/", + "id": 158573, + "name": "Shabby Allus", + "site_detail_url": "https://comicvine.gamespot.com/shabby-allus/4005-158573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158580/", + "id": 158580, + "name": "Carina", + "site_detail_url": "https://comicvine.gamespot.com/carina/4005-158580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158583/", + "id": 158583, + "name": "Kyungtae Kim", + "site_detail_url": "https://comicvine.gamespot.com/kyungtae-kim/4005-158583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158585/", + "id": 158585, + "name": "Uri", + "site_detail_url": "https://comicvine.gamespot.com/uri/4005-158585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158586/", + "id": 158586, + "name": "Mr. Horse", + "site_detail_url": "https://comicvine.gamespot.com/mr-horse/4005-158586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158747/", + "id": 158747, + "name": "Sidewaze", + "site_detail_url": "https://comicvine.gamespot.com/sidewaze/4005-158747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158748/", + "id": 158748, + "name": "Tutu", + "site_detail_url": "https://comicvine.gamespot.com/tutu/4005-158748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158749/", + "id": 158749, + "name": "NAAC-P30", + "site_detail_url": "https://comicvine.gamespot.com/naac-p30/4005-158749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158752/", + "id": 158752, + "name": "Bookworm", + "site_detail_url": "https://comicvine.gamespot.com/bookworm/4005-158752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158759/", + "id": 158759, + "name": "Organite ", + "site_detail_url": "https://comicvine.gamespot.com/organite/4005-158759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158768/", + "id": 158768, + "name": "Thunderbowl", + "site_detail_url": "https://comicvine.gamespot.com/thunderbowl/4005-158768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158769/", + "id": 158769, + "name": "The Whisker", + "site_detail_url": "https://comicvine.gamespot.com/the-whisker/4005-158769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158770/", + "id": 158770, + "name": "Mole-Dozer", + "site_detail_url": "https://comicvine.gamespot.com/mole-dozer/4005-158770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158771/", + "id": 158771, + "name": "Smile-Driver", + "site_detail_url": "https://comicvine.gamespot.com/smile-driver/4005-158771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158798/", + "id": 158798, + "name": "Ser Bennis", + "site_detail_url": "https://comicvine.gamespot.com/ser-bennis/4005-158798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158800/", + "id": 158800, + "name": "Wilbert Osgrey", + "site_detail_url": "https://comicvine.gamespot.com/wilbert-osgrey/4005-158800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158845/", + "id": 158845, + "name": "Dune", + "site_detail_url": "https://comicvine.gamespot.com/dune/4005-158845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158846/", + "id": 158846, + "name": "Compound", + "site_detail_url": "https://comicvine.gamespot.com/compound/4005-158846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158853/", + "id": 158853, + "name": "The Red Gull", + "site_detail_url": "https://comicvine.gamespot.com/the-red-gull/4005-158853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158863/", + "id": 158863, + "name": "Sapheara", + "site_detail_url": "https://comicvine.gamespot.com/sapheara/4005-158863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158864/", + "id": 158864, + "name": "Globalita", + "site_detail_url": "https://comicvine.gamespot.com/globalita/4005-158864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158865/", + "id": 158865, + "name": "The Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/the-prodigy/4005-158865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158871/", + "id": 158871, + "name": "Charlie", + "site_detail_url": "https://comicvine.gamespot.com/charlie/4005-158871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158872/", + "id": 158872, + "name": "Waspax", + "site_detail_url": "https://comicvine.gamespot.com/waspax/4005-158872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158900/", + "id": 158900, + "name": "Cap’n Oz", + "site_detail_url": "https://comicvine.gamespot.com/capn-oz/4005-158900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158987/", + "id": 158987, + "name": "Sentinel-X", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-x/4005-158987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158988/", + "id": 158988, + "name": "Stencil", + "site_detail_url": "https://comicvine.gamespot.com/stencil/4005-158988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-158990/", + "id": 158990, + "name": "Security Chief Hinkler", + "site_detail_url": "https://comicvine.gamespot.com/security-chief-hinkler/4005-158990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159013/", + "id": 159013, + "name": "Eschbacher", + "site_detail_url": "https://comicvine.gamespot.com/eschbacher/4005-159013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159032/", + "id": 159032, + "name": "Thermakk", + "site_detail_url": "https://comicvine.gamespot.com/thermakk/4005-159032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159052/", + "id": 159052, + "name": "Bart Slade", + "site_detail_url": "https://comicvine.gamespot.com/bart-slade/4005-159052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159053/", + "id": 159053, + "name": "Sam Silvercloud", + "site_detail_url": "https://comicvine.gamespot.com/sam-silvercloud/4005-159053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159054/", + "id": 159054, + "name": "Big Daddy Dawson", + "site_detail_url": "https://comicvine.gamespot.com/big-daddy-dawson/4005-159054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159055/", + "id": 159055, + "name": "Set", + "site_detail_url": "https://comicvine.gamespot.com/set/4005-159055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159056/", + "id": 159056, + "name": "Hecate", + "site_detail_url": "https://comicvine.gamespot.com/hecate/4005-159056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159057/", + "id": 159057, + "name": "Amon", + "site_detail_url": "https://comicvine.gamespot.com/amon/4005-159057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159063/", + "id": 159063, + "name": "Astreas", + "site_detail_url": "https://comicvine.gamespot.com/astreas/4005-159063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159067/", + "id": 159067, + "name": "Marcios", + "site_detail_url": "https://comicvine.gamespot.com/marcios/4005-159067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159069/", + "id": 159069, + "name": "Zang", + "site_detail_url": "https://comicvine.gamespot.com/zang/4005-159069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159072/", + "id": 159072, + "name": "Ivga", + "site_detail_url": "https://comicvine.gamespot.com/ivga/4005-159072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159073/", + "id": 159073, + "name": "Khumbanigash", + "site_detail_url": "https://comicvine.gamespot.com/khumbanigash/4005-159073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159074/", + "id": 159074, + "name": "Farra", + "site_detail_url": "https://comicvine.gamespot.com/farra/4005-159074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159075/", + "id": 159075, + "name": "Zinn", + "site_detail_url": "https://comicvine.gamespot.com/zinn/4005-159075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159084/", + "id": 159084, + "name": "Dicero", + "site_detail_url": "https://comicvine.gamespot.com/dicero/4005-159084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159085/", + "id": 159085, + "name": "Drhovo", + "site_detail_url": "https://comicvine.gamespot.com/drhovo/4005-159085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159091/", + "id": 159091, + "name": "Valannus", + "site_detail_url": "https://comicvine.gamespot.com/valannus/4005-159091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159102/", + "id": 159102, + "name": "Mary Crane Watsow", + "site_detail_url": "https://comicvine.gamespot.com/mary-crane-watsow/4005-159102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159103/", + "id": 159103, + "name": "Cannibal", + "site_detail_url": "https://comicvine.gamespot.com/cannibal/4005-159103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159125/", + "id": 159125, + "name": "Towtruk", + "site_detail_url": "https://comicvine.gamespot.com/towtruk/4005-159125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159161/", + "id": 159161, + "name": "Byron Hyatt", + "site_detail_url": "https://comicvine.gamespot.com/byron-hyatt/4005-159161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159162/", + "id": 159162, + "name": "Alan Crandall", + "site_detail_url": "https://comicvine.gamespot.com/alan-crandall/4005-159162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159163/", + "id": 159163, + "name": "Alex Quinn", + "site_detail_url": "https://comicvine.gamespot.com/alex-quinn/4005-159163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159164/", + "id": 159164, + "name": "Abrams", + "site_detail_url": "https://comicvine.gamespot.com/abrams/4005-159164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159166/", + "id": 159166, + "name": "Wilfred Noble", + "site_detail_url": "https://comicvine.gamespot.com/wilfred-noble/4005-159166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159167/", + "id": 159167, + "name": "Mary Manners", + "site_detail_url": "https://comicvine.gamespot.com/mary-manners/4005-159167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159168/", + "id": 159168, + "name": "Melissa Manners", + "site_detail_url": "https://comicvine.gamespot.com/melissa-manners/4005-159168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159169/", + "id": 159169, + "name": "Madam Swabada", + "site_detail_url": "https://comicvine.gamespot.com/madam-swabada/4005-159169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159170/", + "id": 159170, + "name": "Christine Sandt", + "site_detail_url": "https://comicvine.gamespot.com/christine-sandt/4005-159170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159171/", + "id": 159171, + "name": "Elwood Sandt", + "site_detail_url": "https://comicvine.gamespot.com/elwood-sandt/4005-159171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159172/", + "id": 159172, + "name": "Reverend Martin", + "site_detail_url": "https://comicvine.gamespot.com/reverend-martin/4005-159172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159173/", + "id": 159173, + "name": "Raymond Gossett", + "site_detail_url": "https://comicvine.gamespot.com/raymond-gossett/4005-159173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159186/", + "id": 159186, + "name": "Father Darklyte", + "site_detail_url": "https://comicvine.gamespot.com/father-darklyte/4005-159186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159187/", + "id": 159187, + "name": "Gloria Hefford", + "site_detail_url": "https://comicvine.gamespot.com/gloria-hefford/4005-159187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159188/", + "id": 159188, + "name": "Lewis Hefford", + "site_detail_url": "https://comicvine.gamespot.com/lewis-hefford/4005-159188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159196/", + "id": 159196, + "name": "Yasunga", + "site_detail_url": "https://comicvine.gamespot.com/yasunga/4005-159196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159197/", + "id": 159197, + "name": "Laranga", + "site_detail_url": "https://comicvine.gamespot.com/laranga/4005-159197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159198/", + "id": 159198, + "name": "Ajonga", + "site_detail_url": "https://comicvine.gamespot.com/ajonga/4005-159198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159200/", + "id": 159200, + "name": "Doctor Shapiro", + "site_detail_url": "https://comicvine.gamespot.com/doctor-shapiro/4005-159200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159208/", + "id": 159208, + "name": "Elias Flynn", + "site_detail_url": "https://comicvine.gamespot.com/elias-flynn/4005-159208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159221/", + "id": 159221, + "name": "Great Zoran", + "site_detail_url": "https://comicvine.gamespot.com/great-zoran/4005-159221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159222/", + "id": 159222, + "name": "Mrs. Zoran", + "site_detail_url": "https://comicvine.gamespot.com/mrs-zoran/4005-159222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159223/", + "id": 159223, + "name": "Michael Taine", + "site_detail_url": "https://comicvine.gamespot.com/michael-taine/4005-159223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159224/", + "id": 159224, + "name": "Ken Mishima", + "site_detail_url": "https://comicvine.gamespot.com/ken-mishima/4005-159224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159225/", + "id": 159225, + "name": "Brett Carson", + "site_detail_url": "https://comicvine.gamespot.com/brett-carson/4005-159225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159293/", + "id": 159293, + "name": "Dane", + "site_detail_url": "https://comicvine.gamespot.com/dane/4005-159293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159294/", + "id": 159294, + "name": "Basenji", + "site_detail_url": "https://comicvine.gamespot.com/basenji/4005-159294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159296/", + "id": 159296, + "name": "Poodle", + "site_detail_url": "https://comicvine.gamespot.com/poodle/4005-159296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159299/", + "id": 159299, + "name": "Spyder Knight", + "site_detail_url": "https://comicvine.gamespot.com/spyder-knight/4005-159299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159385/", + "id": 159385, + "name": "Invisible Boy", + "site_detail_url": "https://comicvine.gamespot.com/invisible-boy/4005-159385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159386/", + "id": 159386, + "name": "Andie Mugh", + "site_detail_url": "https://comicvine.gamespot.com/andie-mugh/4005-159386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159387/", + "id": 159387, + "name": "Sian Cortez", + "site_detail_url": "https://comicvine.gamespot.com/sian-cortez/4005-159387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159388/", + "id": 159388, + "name": "Bela Cortez", + "site_detail_url": "https://comicvine.gamespot.com/bela-cortez/4005-159388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159391/", + "id": 159391, + "name": "Moositaur", + "site_detail_url": "https://comicvine.gamespot.com/moositaur/4005-159391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159392/", + "id": 159392, + "name": "Beaver", + "site_detail_url": "https://comicvine.gamespot.com/beaver/4005-159392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159393/", + "id": 159393, + "name": "Puck-Man", + "site_detail_url": "https://comicvine.gamespot.com/puck-man/4005-159393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159396/", + "id": 159396, + "name": "Touchdown Terror", + "site_detail_url": "https://comicvine.gamespot.com/touchdown-terror/4005-159396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159397/", + "id": 159397, + "name": "Goal Eater", + "site_detail_url": "https://comicvine.gamespot.com/goal-eater/4005-159397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159399/", + "id": 159399, + "name": "Hector Tago", + "site_detail_url": "https://comicvine.gamespot.com/hector-tago/4005-159399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159430/", + "id": 159430, + "name": "Ghaznavi", + "site_detail_url": "https://comicvine.gamespot.com/ghaznavi/4005-159430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159449/", + "id": 159449, + "name": "Shukeli", + "site_detail_url": "https://comicvine.gamespot.com/shukeli/4005-159449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159450/", + "id": 159450, + "name": "Amalrus", + "site_detail_url": "https://comicvine.gamespot.com/amalrus/4005-159450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159453/", + "id": 159453, + "name": "Satha", + "site_detail_url": "https://comicvine.gamespot.com/satha/4005-159453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159469/", + "id": 159469, + "name": "Ascalante", + "site_detail_url": "https://comicvine.gamespot.com/ascalante/4005-159469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159470/", + "id": 159470, + "name": "Dion", + "site_detail_url": "https://comicvine.gamespot.com/dion/4005-159470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159471/", + "id": 159471, + "name": "Epemitreus", + "site_detail_url": "https://comicvine.gamespot.com/epemitreus/4005-159471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159489/", + "id": 159489, + "name": "Rudolpho ", + "site_detail_url": "https://comicvine.gamespot.com/rudolpho/4005-159489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159522/", + "id": 159522, + "name": "Servius Galannus", + "site_detail_url": "https://comicvine.gamespot.com/servius-galannus/4005-159522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159523/", + "id": 159523, + "name": "Crimson Dynamo XII", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dynamo-xii/4005-159523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159545/", + "id": 159545, + "name": "Alia Gregor", + "site_detail_url": "https://comicvine.gamespot.com/alia-gregor/4005-159545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159561/", + "id": 159561, + "name": "Alea Bell", + "site_detail_url": "https://comicvine.gamespot.com/alea-bell/4005-159561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159562/", + "id": 159562, + "name": "Augusta Bromes", + "site_detail_url": "https://comicvine.gamespot.com/augusta-bromes/4005-159562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159563/", + "id": 159563, + "name": "Opal Vetiver", + "site_detail_url": "https://comicvine.gamespot.com/opal-vetiver/4005-159563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159564/", + "id": 159564, + "name": "Lily Leymus", + "site_detail_url": "https://comicvine.gamespot.com/lily-leymus/4005-159564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159565/", + "id": 159565, + "name": "Edith Scutch", + "site_detail_url": "https://comicvine.gamespot.com/edith-scutch/4005-159565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159574/", + "id": 159574, + "name": "Secret Bear", + "site_detail_url": "https://comicvine.gamespot.com/secret-bear/4005-159574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159575/", + "id": 159575, + "name": "Champ Bear", + "site_detail_url": "https://comicvine.gamespot.com/champ-bear/4005-159575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159576/", + "id": 159576, + "name": "Lotsa Heart Elephant", + "site_detail_url": "https://comicvine.gamespot.com/lotsa-heart-elephant/4005-159576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159577/", + "id": 159577, + "name": "Bright Heart Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/bright-heart-raccoon/4005-159577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159578/", + "id": 159578, + "name": "Cozy Heart Penguin", + "site_detail_url": "https://comicvine.gamespot.com/cozy-heart-penguin/4005-159578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159579/", + "id": 159579, + "name": "Gentle Heart Lamb", + "site_detail_url": "https://comicvine.gamespot.com/gentle-heart-lamb/4005-159579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159580/", + "id": 159580, + "name": "Loyal Heart Dog", + "site_detail_url": "https://comicvine.gamespot.com/loyal-heart-dog/4005-159580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159581/", + "id": 159581, + "name": "Proud Heart Cat", + "site_detail_url": "https://comicvine.gamespot.com/proud-heart-cat/4005-159581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159582/", + "id": 159582, + "name": "Noble Heart Horse", + "site_detail_url": "https://comicvine.gamespot.com/noble-heart-horse/4005-159582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159583/", + "id": 159583, + "name": "True Heart Bear", + "site_detail_url": "https://comicvine.gamespot.com/true-heart-bear/4005-159583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159584/", + "id": 159584, + "name": "Drizzly Bear", + "site_detail_url": "https://comicvine.gamespot.com/drizzly-bear/4005-159584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159586/", + "id": 159586, + "name": "Izzy Libris", + "site_detail_url": "https://comicvine.gamespot.com/izzy-libris/4005-159586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159587/", + "id": 159587, + "name": "Teyanoga", + "site_detail_url": "https://comicvine.gamespot.com/teyanoga/4005-159587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159588/", + "id": 159588, + "name": "Kwarda", + "site_detail_url": "https://comicvine.gamespot.com/kwarda/4005-159588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159591/", + "id": 159591, + "name": "D'Lutz", + "site_detail_url": "https://comicvine.gamespot.com/dlutz/4005-159591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159592/", + "id": 159592, + "name": "Daniel DeCriscio", + "site_detail_url": "https://comicvine.gamespot.com/daniel-decriscio/4005-159592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159593/", + "id": 159593, + "name": "Count Von Stadt", + "site_detail_url": "https://comicvine.gamespot.com/count-von-stadt/4005-159593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159597/", + "id": 159597, + "name": "Kestle", + "site_detail_url": "https://comicvine.gamespot.com/kestle/4005-159597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159598/", + "id": 159598, + "name": "Varkis", + "site_detail_url": "https://comicvine.gamespot.com/varkis/4005-159598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159600/", + "id": 159600, + "name": "Tank ", + "site_detail_url": "https://comicvine.gamespot.com/tank/4005-159600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159601/", + "id": 159601, + "name": "M'Koy", + "site_detail_url": "https://comicvine.gamespot.com/mkoy/4005-159601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159602/", + "id": 159602, + "name": "Big Angry", + "site_detail_url": "https://comicvine.gamespot.com/big-angry/4005-159602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159603/", + "id": 159603, + "name": "Insect-By-Night", + "site_detail_url": "https://comicvine.gamespot.com/insect-by-night/4005-159603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159721/", + "id": 159721, + "name": "Amalric of Tor", + "site_detail_url": "https://comicvine.gamespot.com/amalric-of-tor/4005-159721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159979/", + "id": 159979, + "name": "Lady Birgit", + "site_detail_url": "https://comicvine.gamespot.com/lady-birgit/4005-159979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-159999/", + "id": 159999, + "name": "Wrench ", + "site_detail_url": "https://comicvine.gamespot.com/wrench/4005-159999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160000/", + "id": 160000, + "name": "Sonos Rex", + "site_detail_url": "https://comicvine.gamespot.com/sonos-rex/4005-160000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160001/", + "id": 160001, + "name": "Fauna", + "site_detail_url": "https://comicvine.gamespot.com/fauna/4005-160001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160035/", + "id": 160035, + "name": "Entea", + "site_detail_url": "https://comicvine.gamespot.com/entea/4005-160035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160036/", + "id": 160036, + "name": "Spider-Zero", + "site_detail_url": "https://comicvine.gamespot.com/spider-zero/4005-160036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160068/", + "id": 160068, + "name": "Hardrock", + "site_detail_url": "https://comicvine.gamespot.com/hardrock/4005-160068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160075/", + "id": 160075, + "name": "Vulaada", + "site_detail_url": "https://comicvine.gamespot.com/vulaada/4005-160075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160092/", + "id": 160092, + "name": "Peter Parquagh", + "site_detail_url": "https://comicvine.gamespot.com/peter-parquagh/4005-160092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160117/", + "id": 160117, + "name": "Neftha", + "site_detail_url": "https://comicvine.gamespot.com/neftha/4005-160117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160118/", + "id": 160118, + "name": "Sparks", + "site_detail_url": "https://comicvine.gamespot.com/sparks/4005-160118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160121/", + "id": 160121, + "name": "Moletron", + "site_detail_url": "https://comicvine.gamespot.com/moletron/4005-160121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160122/", + "id": 160122, + "name": "Black Colt", + "site_detail_url": "https://comicvine.gamespot.com/black-colt/4005-160122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160137/", + "id": 160137, + "name": "King Eannatum", + "site_detail_url": "https://comicvine.gamespot.com/king-eannatum/4005-160137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160138/", + "id": 160138, + "name": "Brian Roberts", + "site_detail_url": "https://comicvine.gamespot.com/brian-roberts/4005-160138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160141/", + "id": 160141, + "name": "Jackie the Ripper ", + "site_detail_url": "https://comicvine.gamespot.com/jackie-the-ripper/4005-160141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160142/", + "id": 160142, + "name": "Mr. Bullfinch", + "site_detail_url": "https://comicvine.gamespot.com/mr-bullfinch/4005-160142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160160/", + "id": 160160, + "name": "Beth Sheldon", + "site_detail_url": "https://comicvine.gamespot.com/beth-sheldon/4005-160160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160161/", + "id": 160161, + "name": "Jennie Sheldon", + "site_detail_url": "https://comicvine.gamespot.com/jennie-sheldon/4005-160161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160172/", + "id": 160172, + "name": "Imperial Commander Zahra", + "site_detail_url": "https://comicvine.gamespot.com/imperial-commander-zahra/4005-160172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160265/", + "id": 160265, + "name": "Apoth", + "site_detail_url": "https://comicvine.gamespot.com/apoth/4005-160265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160513/", + "id": 160513, + "name": "Zed", + "site_detail_url": "https://comicvine.gamespot.com/zed/4005-160513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160514/", + "id": 160514, + "name": "Kayn", + "site_detail_url": "https://comicvine.gamespot.com/kayn/4005-160514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160515/", + "id": 160515, + "name": "Shen", + "site_detail_url": "https://comicvine.gamespot.com/shen/4005-160515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160516/", + "id": 160516, + "name": "Akali", + "site_detail_url": "https://comicvine.gamespot.com/akali/4005-160516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160517/", + "id": 160517, + "name": "Khada Jhin", + "site_detail_url": "https://comicvine.gamespot.com/khada-jhin/4005-160517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160568/", + "id": 160568, + "name": "Scrum", + "site_detail_url": "https://comicvine.gamespot.com/scrum/4005-160568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160594/", + "id": 160594, + "name": "James Martin", + "site_detail_url": "https://comicvine.gamespot.com/james-martin/4005-160594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160601/", + "id": 160601, + "name": "Sphere", + "site_detail_url": "https://comicvine.gamespot.com/sphere/4005-160601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160602/", + "id": 160602, + "name": "Ethon", + "site_detail_url": "https://comicvine.gamespot.com/ethon/4005-160602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160603/", + "id": 160603, + "name": "Krellik", + "site_detail_url": "https://comicvine.gamespot.com/krellik/4005-160603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160604/", + "id": 160604, + "name": "Jalaia", + "site_detail_url": "https://comicvine.gamespot.com/jalaia/4005-160604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160605/", + "id": 160605, + "name": "Galarius", + "site_detail_url": "https://comicvine.gamespot.com/galarius/4005-160605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160651/", + "id": 160651, + "name": "The Traveler", + "site_detail_url": "https://comicvine.gamespot.com/the-traveler/4005-160651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160670/", + "id": 160670, + "name": "Suzanne Selby", + "site_detail_url": "https://comicvine.gamespot.com/suzanne-selby/4005-160670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160674/", + "id": 160674, + "name": "Anthony Diaz", + "site_detail_url": "https://comicvine.gamespot.com/anthony-diaz/4005-160674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160698/", + "id": 160698, + "name": "Man-Slaughter", + "site_detail_url": "https://comicvine.gamespot.com/man-slaughter/4005-160698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160781/", + "id": 160781, + "name": "Etienne Villiers", + "site_detail_url": "https://comicvine.gamespot.com/etienne-villiers/4005-160781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160858/", + "id": 160858, + "name": "Elizabeth Nikos", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-nikos/4005-160858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160871/", + "id": 160871, + "name": "Joe Gettings Jr.", + "site_detail_url": "https://comicvine.gamespot.com/joe-gettings-jr/4005-160871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160874/", + "id": 160874, + "name": "Phil", + "site_detail_url": "https://comicvine.gamespot.com/phil/4005-160874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160875/", + "id": 160875, + "name": "Nero", + "site_detail_url": "https://comicvine.gamespot.com/nero/4005-160875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160876/", + "id": 160876, + "name": "Bartlette", + "site_detail_url": "https://comicvine.gamespot.com/bartlette/4005-160876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160893/", + "id": 160893, + "name": "Maraudus Mahtir", + "site_detail_url": "https://comicvine.gamespot.com/maraudus-mahtir/4005-160893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160894/", + "id": 160894, + "name": "Kero", + "site_detail_url": "https://comicvine.gamespot.com/kero/4005-160894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160937/", + "id": 160937, + "name": "Cosmic King", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-king/4005-160937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-160989/", + "id": 160989, + "name": "Rufus", + "site_detail_url": "https://comicvine.gamespot.com/rufus/4005-160989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161064/", + "id": 161064, + "name": "Vespa", + "site_detail_url": "https://comicvine.gamespot.com/vespa/4005-161064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161065/", + "id": 161065, + "name": "Thread", + "site_detail_url": "https://comicvine.gamespot.com/thread/4005-161065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161066/", + "id": 161066, + "name": "Tusk", + "site_detail_url": "https://comicvine.gamespot.com/tusk/4005-161066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161067/", + "id": 161067, + "name": "Valery Stefanovich", + "site_detail_url": "https://comicvine.gamespot.com/valery-stefanovich/4005-161067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161077/", + "id": 161077, + "name": "Mighty Martian", + "site_detail_url": "https://comicvine.gamespot.com/mighty-martian/4005-161077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161078/", + "id": 161078, + "name": "Devil Dawg", + "site_detail_url": "https://comicvine.gamespot.com/devil-dawg/4005-161078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161079/", + "id": 161079, + "name": "Vampire Vixen", + "site_detail_url": "https://comicvine.gamespot.com/vampire-vixen/4005-161079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161080/", + "id": 161080, + "name": "Sun Wukong", + "site_detail_url": "https://comicvine.gamespot.com/sun-wukong/4005-161080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161081/", + "id": 161081, + "name": "Sha Wujing", + "site_detail_url": "https://comicvine.gamespot.com/sha-wujing/4005-161081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161094/", + "id": 161094, + "name": "The Natural", + "site_detail_url": "https://comicvine.gamespot.com/the-natural/4005-161094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161099/", + "id": 161099, + "name": "Aimee", + "site_detail_url": "https://comicvine.gamespot.com/aimee/4005-161099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161100/", + "id": 161100, + "name": "Gordon", + "site_detail_url": "https://comicvine.gamespot.com/gordon/4005-161100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161110/", + "id": 161110, + "name": "Pakim", + "site_detail_url": "https://comicvine.gamespot.com/pakim/4005-161110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161111/", + "id": 161111, + "name": "Simino", + "site_detail_url": "https://comicvine.gamespot.com/simino/4005-161111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161117/", + "id": 161117, + "name": "Serra", + "site_detail_url": "https://comicvine.gamespot.com/serra/4005-161117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161118/", + "id": 161118, + "name": "Zubair", + "site_detail_url": "https://comicvine.gamespot.com/zubair/4005-161118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161121/", + "id": 161121, + "name": "Sven Claris", + "site_detail_url": "https://comicvine.gamespot.com/sven-claris/4005-161121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161129/", + "id": 161129, + "name": "Killian Devo", + "site_detail_url": "https://comicvine.gamespot.com/killian-devo/4005-161129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161132/", + "id": 161132, + "name": "Ted Braddock", + "site_detail_url": "https://comicvine.gamespot.com/ted-braddock/4005-161132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161166/", + "id": 161166, + "name": "The Raven", + "site_detail_url": "https://comicvine.gamespot.com/the-raven/4005-161166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161169/", + "id": 161169, + "name": "Dietrich Trask", + "site_detail_url": "https://comicvine.gamespot.com/dietrich-trask/4005-161169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161170/", + "id": 161170, + "name": "Ingrid Trask", + "site_detail_url": "https://comicvine.gamespot.com/ingrid-trask/4005-161170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161171/", + "id": 161171, + "name": "Dorian Trask", + "site_detail_url": "https://comicvine.gamespot.com/dorian-trask/4005-161171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161172/", + "id": 161172, + "name": "Nora Trask", + "site_detail_url": "https://comicvine.gamespot.com/nora-trask/4005-161172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161173/", + "id": 161173, + "name": "Web-Slinger", + "site_detail_url": "https://comicvine.gamespot.com/web-slinger/4005-161173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161174/", + "id": 161174, + "name": "Spider-Monster", + "site_detail_url": "https://comicvine.gamespot.com/spider-monster/4005-161174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161175/", + "id": 161175, + "name": "Lord Spider", + "site_detail_url": "https://comicvine.gamespot.com/lord-spider/4005-161175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161180/", + "id": 161180, + "name": "Emily Bright", + "site_detail_url": "https://comicvine.gamespot.com/emily-bright/4005-161180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161181/", + "id": 161181, + "name": "Shaylee Moonpeddle", + "site_detail_url": "https://comicvine.gamespot.com/shaylee-moonpeddle/4005-161181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161182/", + "id": 161182, + "name": "Iric Brorson", + "site_detail_url": "https://comicvine.gamespot.com/iric-brorson/4005-161182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161183/", + "id": 161183, + "name": "Alvi Brorson", + "site_detail_url": "https://comicvine.gamespot.com/alvi-brorson/4005-161183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161184/", + "id": 161184, + "name": "Guslaug", + "site_detail_url": "https://comicvine.gamespot.com/guslaug/4005-161184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161185/", + "id": 161185, + "name": "Doyle Dormammu", + "site_detail_url": "https://comicvine.gamespot.com/doyle-dormammu/4005-161185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161186/", + "id": 161186, + "name": "Zoe Laveau", + "site_detail_url": "https://comicvine.gamespot.com/zoe-laveau/4005-161186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161187/", + "id": 161187, + "name": "Calvin Morse", + "site_detail_url": "https://comicvine.gamespot.com/calvin-morse/4005-161187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161188/", + "id": 161188, + "name": "Dessy", + "site_detail_url": "https://comicvine.gamespot.com/dessy/4005-161188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161189/", + "id": 161189, + "name": "Toth", + "site_detail_url": "https://comicvine.gamespot.com/toth/4005-161189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161190/", + "id": 161190, + "name": "Germān Aguilar", + "site_detail_url": "https://comicvine.gamespot.com/german-aguilar/4005-161190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161191/", + "id": 161191, + "name": "Alice Springs", + "site_detail_url": "https://comicvine.gamespot.com/alice-springs/4005-161191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161226/", + "id": 161226, + "name": "Amulet", + "site_detail_url": "https://comicvine.gamespot.com/amulet/4005-161226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161227/", + "id": 161227, + "name": "Billie Morales", + "site_detail_url": "https://comicvine.gamespot.com/billie-morales/4005-161227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161228/", + "id": 161228, + "name": "Garden-Spider", + "site_detail_url": "https://comicvine.gamespot.com/garden-spider/4005-161228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161229/", + "id": 161229, + "name": "Spider-Requiem", + "site_detail_url": "https://comicvine.gamespot.com/spider-requiem/4005-161229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161230/", + "id": 161230, + "name": "The Spinster", + "site_detail_url": "https://comicvine.gamespot.com/the-spinster/4005-161230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161231/", + "id": 161231, + "name": "V", + "site_detail_url": "https://comicvine.gamespot.com/v/4005-161231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161232/", + "id": 161232, + "name": "Spidair", + "site_detail_url": "https://comicvine.gamespot.com/spidair/4005-161232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161233/", + "id": 161233, + "name": "Sea-Spider", + "site_detail_url": "https://comicvine.gamespot.com/sea-spider/4005-161233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161234/", + "id": 161234, + "name": "Spider-Sting", + "site_detail_url": "https://comicvine.gamespot.com/spider-sting/4005-161234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161235/", + "id": 161235, + "name": "Sun-Spider", + "site_detail_url": "https://comicvine.gamespot.com/sun-spider/4005-161235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161236/", + "id": 161236, + "name": "White Widow", + "site_detail_url": "https://comicvine.gamespot.com/white-widow/4005-161236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161248/", + "id": 161248, + "name": "Sergeant Walker", + "site_detail_url": "https://comicvine.gamespot.com/sergeant-walker/4005-161248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161249/", + "id": 161249, + "name": "Everett Hale", + "site_detail_url": "https://comicvine.gamespot.com/everett-hale/4005-161249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161250/", + "id": 161250, + "name": "Isabelle Hartley", + "site_detail_url": "https://comicvine.gamespot.com/isabelle-hartley/4005-161250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161312/", + "id": 161312, + "name": "Carapace", + "site_detail_url": "https://comicvine.gamespot.com/carapace/4005-161312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161378/", + "id": 161378, + "name": "Cyborg X", + "site_detail_url": "https://comicvine.gamespot.com/cyborg-x/4005-161378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161383/", + "id": 161383, + "name": "Nakano Lash", + "site_detail_url": "https://comicvine.gamespot.com/nakano-lash/4005-161383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161391/", + "id": 161391, + "name": "Curse ", + "site_detail_url": "https://comicvine.gamespot.com/curse/4005-161391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161392/", + "id": 161392, + "name": "Cosmar", + "site_detail_url": "https://comicvine.gamespot.com/cosmar/4005-161392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161401/", + "id": 161401, + "name": "Janet Sorenson", + "site_detail_url": "https://comicvine.gamespot.com/janet-sorenson/4005-161401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161402/", + "id": 161402, + "name": "Ren", + "site_detail_url": "https://comicvine.gamespot.com/ren/4005-161402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161426/", + "id": 161426, + "name": "Percy Calvin", + "site_detail_url": "https://comicvine.gamespot.com/percy-calvin/4005-161426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161427/", + "id": 161427, + "name": "Joanne Lucas", + "site_detail_url": "https://comicvine.gamespot.com/joanne-lucas/4005-161427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161428/", + "id": 161428, + "name": "Jessica Lynne", + "site_detail_url": "https://comicvine.gamespot.com/jessica-lynne/4005-161428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161429/", + "id": 161429, + "name": "Angela Lynne", + "site_detail_url": "https://comicvine.gamespot.com/angela-lynne/4005-161429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161459/", + "id": 161459, + "name": "Susan", + "site_detail_url": "https://comicvine.gamespot.com/susan/4005-161459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161533/", + "id": 161533, + "name": "X-52", + "site_detail_url": "https://comicvine.gamespot.com/x-52/4005-161533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161534/", + "id": 161534, + "name": "Vox Supreme", + "site_detail_url": "https://comicvine.gamespot.com/vox-supreme/4005-161534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161535/", + "id": 161535, + "name": "Delian", + "site_detail_url": "https://comicvine.gamespot.com/delian/4005-161535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161593/", + "id": 161593, + "name": "Morgan Erskine", + "site_detail_url": "https://comicvine.gamespot.com/morgan-erskine/4005-161593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161682/", + "id": 161682, + "name": "M'Gyn", + "site_detail_url": "https://comicvine.gamespot.com/mgyn/4005-161682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161720/", + "id": 161720, + "name": "Marcia Hardesty", + "site_detail_url": "https://comicvine.gamespot.com/marcia-hardesty/4005-161720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161721/", + "id": 161721, + "name": "Silver Scythe", + "site_detail_url": "https://comicvine.gamespot.com/silver-scythe/4005-161721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161723/", + "id": 161723, + "name": "Witchling-at-Twilight", + "site_detail_url": "https://comicvine.gamespot.com/witchling-at-twilight/4005-161723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161724/", + "id": 161724, + "name": "Punch-Fist", + "site_detail_url": "https://comicvine.gamespot.com/punch-fist/4005-161724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161726/", + "id": 161726, + "name": "Doctor Sellvah", + "site_detail_url": "https://comicvine.gamespot.com/doctor-sellvah/4005-161726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161730/", + "id": 161730, + "name": "The Peacemaker", + "site_detail_url": "https://comicvine.gamespot.com/the-peacemaker/4005-161730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161731/", + "id": 161731, + "name": "Grim Archer", + "site_detail_url": "https://comicvine.gamespot.com/grim-archer/4005-161731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161732/", + "id": 161732, + "name": "Armored Angel", + "site_detail_url": "https://comicvine.gamespot.com/armored-angel/4005-161732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161735/", + "id": 161735, + "name": "The Foot", + "site_detail_url": "https://comicvine.gamespot.com/the-foot/4005-161735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161743/", + "id": 161743, + "name": "Flashback", + "site_detail_url": "https://comicvine.gamespot.com/flashback/4005-161743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161744/", + "id": 161744, + "name": "Attican", + "site_detail_url": "https://comicvine.gamespot.com/attican/4005-161744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161745/", + "id": 161745, + "name": "Splenk", + "site_detail_url": "https://comicvine.gamespot.com/splenk/4005-161745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161746/", + "id": 161746, + "name": "Klepo", + "site_detail_url": "https://comicvine.gamespot.com/klepo/4005-161746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161794/", + "id": 161794, + "name": "Grace Mercy", + "site_detail_url": "https://comicvine.gamespot.com/grace-mercy/4005-161794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161795/", + "id": 161795, + "name": "Mary Mercy", + "site_detail_url": "https://comicvine.gamespot.com/mary-mercy/4005-161795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161796/", + "id": 161796, + "name": "Mother Mold", + "site_detail_url": "https://comicvine.gamespot.com/mother-mold/4005-161796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161798/", + "id": 161798, + "name": "L.B. Kellogg", + "site_detail_url": "https://comicvine.gamespot.com/lb-kellogg/4005-161798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161799/", + "id": 161799, + "name": "Jed", + "site_detail_url": "https://comicvine.gamespot.com/jed/4005-161799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161800/", + "id": 161800, + "name": "Amanda", + "site_detail_url": "https://comicvine.gamespot.com/amanda/4005-161800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161818/", + "id": 161818, + "name": "Fish", + "site_detail_url": "https://comicvine.gamespot.com/fish/4005-161818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161822/", + "id": 161822, + "name": "Geoffrey Patrick", + "site_detail_url": "https://comicvine.gamespot.com/geoffrey-patrick/4005-161822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161824/", + "id": 161824, + "name": "Vindicator (Clone)", + "site_detail_url": "https://comicvine.gamespot.com/vindicator-clone/4005-161824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161844/", + "id": 161844, + "name": "Toren", + "site_detail_url": "https://comicvine.gamespot.com/toren/4005-161844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161845/", + "id": 161845, + "name": "Kan Be", + "site_detail_url": "https://comicvine.gamespot.com/kan-be/4005-161845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161846/", + "id": 161846, + "name": "Isin", + "site_detail_url": "https://comicvine.gamespot.com/isin/4005-161846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161855/", + "id": 161855, + "name": "Ilka", + "site_detail_url": "https://comicvine.gamespot.com/ilka/4005-161855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161856/", + "id": 161856, + "name": "Bett", + "site_detail_url": "https://comicvine.gamespot.com/bett/4005-161856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161857/", + "id": 161857, + "name": "Wenda", + "site_detail_url": "https://comicvine.gamespot.com/wenda/4005-161857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161858/", + "id": 161858, + "name": "Wisper", + "site_detail_url": "https://comicvine.gamespot.com/wisper/4005-161858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161859/", + "id": 161859, + "name": "Zumgi", + "site_detail_url": "https://comicvine.gamespot.com/zumgi/4005-161859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161860/", + "id": 161860, + "name": "Brrang", + "site_detail_url": "https://comicvine.gamespot.com/brrang/4005-161860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161861/", + "id": 161861, + "name": "Corlac", + "site_detail_url": "https://comicvine.gamespot.com/corlac/4005-161861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161862/", + "id": 161862, + "name": "Razoo Qin-Fee", + "site_detail_url": "https://comicvine.gamespot.com/razoo-qin-fee/4005-161862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161863/", + "id": 161863, + "name": "Tasu Leech", + "site_detail_url": "https://comicvine.gamespot.com/tasu-leech/4005-161863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161864/", + "id": 161864, + "name": "Bala-Tik", + "site_detail_url": "https://comicvine.gamespot.com/bala-tik/4005-161864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161865/", + "id": 161865, + "name": "N1-ZX ", + "site_detail_url": "https://comicvine.gamespot.com/n1-zx/4005-161865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161868/", + "id": 161868, + "name": "Warba Calip", + "site_detail_url": "https://comicvine.gamespot.com/warba-calip/4005-161868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161869/", + "id": 161869, + "name": "Dar Champion", + "site_detail_url": "https://comicvine.gamespot.com/dar-champion/4005-161869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161870/", + "id": 161870, + "name": "Second Sister", + "site_detail_url": "https://comicvine.gamespot.com/second-sister/4005-161870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161873/", + "id": 161873, + "name": "Paw Maccon", + "site_detail_url": "https://comicvine.gamespot.com/paw-maccon/4005-161873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161874/", + "id": 161874, + "name": "Reya", + "site_detail_url": "https://comicvine.gamespot.com/reya/4005-161874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161875/", + "id": 161875, + "name": "Dylanto Daa", + "site_detail_url": "https://comicvine.gamespot.com/dylanto-daa/4005-161875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161876/", + "id": 161876, + "name": "Neralli", + "site_detail_url": "https://comicvine.gamespot.com/neralli/4005-161876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161878/", + "id": 161878, + "name": "Maslo-Skaff", + "site_detail_url": "https://comicvine.gamespot.com/maslo-skaff/4005-161878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161879/", + "id": 161879, + "name": "Odu", + "site_detail_url": "https://comicvine.gamespot.com/odu/4005-161879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161880/", + "id": 161880, + "name": "Fess", + "site_detail_url": "https://comicvine.gamespot.com/fess/4005-161880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161881/", + "id": 161881, + "name": "En-Threelo", + "site_detail_url": "https://comicvine.gamespot.com/en-threelo/4005-161881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161882/", + "id": 161882, + "name": "Tera Sinube", + "site_detail_url": "https://comicvine.gamespot.com/tera-sinube/4005-161882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161901/", + "id": 161901, + "name": "Mytus Adema", + "site_detail_url": "https://comicvine.gamespot.com/mytus-adema/4005-161901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161903/", + "id": 161903, + "name": "Madame Swarm", + "site_detail_url": "https://comicvine.gamespot.com/madame-swarm/4005-161903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161904/", + "id": 161904, + "name": "Aggadeen", + "site_detail_url": "https://comicvine.gamespot.com/aggadeen/4005-161904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161906/", + "id": 161906, + "name": "Cal Alder", + "site_detail_url": "https://comicvine.gamespot.com/cal-alder/4005-161906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161910/", + "id": 161910, + "name": "Ello Asty", + "site_detail_url": "https://comicvine.gamespot.com/ello-asty/4005-161910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161916/", + "id": 161916, + "name": "Veronica Eden", + "site_detail_url": "https://comicvine.gamespot.com/veronica-eden/4005-161916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161969/", + "id": 161969, + "name": "Arro Basteren", + "site_detail_url": "https://comicvine.gamespot.com/arro-basteren/4005-161969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161970/", + "id": 161970, + "name": "Lt. Bastian", + "site_detail_url": "https://comicvine.gamespot.com/lt-bastian/4005-161970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161971/", + "id": 161971, + "name": "Martio Batch", + "site_detail_url": "https://comicvine.gamespot.com/martio-batch/4005-161971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161974/", + "id": 161974, + "name": "Benthic", + "site_detail_url": "https://comicvine.gamespot.com/benthic/4005-161974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161975/", + "id": 161975, + "name": "Berl", + "site_detail_url": "https://comicvine.gamespot.com/berl/4005-161975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161977/", + "id": 161977, + "name": "Harb Binli", + "site_detail_url": "https://comicvine.gamespot.com/harb-binli/4005-161977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161981/", + "id": 161981, + "name": "Utani Xane", + "site_detail_url": "https://comicvine.gamespot.com/utani-xane/4005-161981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161983/", + "id": 161983, + "name": "Blanaid", + "site_detail_url": "https://comicvine.gamespot.com/blanaid/4005-161983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161987/", + "id": 161987, + "name": "Lt. Bolandin", + "site_detail_url": "https://comicvine.gamespot.com/lt-bolandin/4005-161987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-161991/", + "id": 161991, + "name": "Derham Boyce", + "site_detail_url": "https://comicvine.gamespot.com/derham-boyce/4005-161991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162002/", + "id": 162002, + "name": "Teezee-Too", + "site_detail_url": "https://comicvine.gamespot.com/teezee-too/4005-162002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162003/", + "id": 162003, + "name": "Yosh Calfor", + "site_detail_url": "https://comicvine.gamespot.com/yosh-calfor/4005-162003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162005/", + "id": 162005, + "name": "Eskro Casrich", + "site_detail_url": "https://comicvine.gamespot.com/eskro-casrich/4005-162005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162015/", + "id": 162015, + "name": "Aero", + "site_detail_url": "https://comicvine.gamespot.com/aero/4005-162015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162016/", + "id": 162016, + "name": "Cav", + "site_detail_url": "https://comicvine.gamespot.com/cav/4005-162016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162017/", + "id": 162017, + "name": "Mic", + "site_detail_url": "https://comicvine.gamespot.com/mic/4005-162017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162018/", + "id": 162018, + "name": "Misty", + "site_detail_url": "https://comicvine.gamespot.com/misty/4005-162018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162019/", + "id": 162019, + "name": "Shrap", + "site_detail_url": "https://comicvine.gamespot.com/shrap/4005-162019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162020/", + "id": 162020, + "name": "Zuke", + "site_detail_url": "https://comicvine.gamespot.com/zuke/4005-162020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162034/", + "id": 162034, + "name": "Rexa Go", + "site_detail_url": "https://comicvine.gamespot.com/rexa-go/4005-162034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162036/", + "id": 162036, + "name": "Sister Six", + "site_detail_url": "https://comicvine.gamespot.com/sister-six/4005-162036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162037/", + "id": 162037, + "name": "Dek-Nil", + "site_detail_url": "https://comicvine.gamespot.com/dek-nil/4005-162037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162059/", + "id": 162059, + "name": "Corona", + "site_detail_url": "https://comicvine.gamespot.com/corona/4005-162059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162061/", + "id": 162061, + "name": "Korin Aphra", + "site_detail_url": "https://comicvine.gamespot.com/korin-aphra/4005-162061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162062/", + "id": 162062, + "name": "Sutha", + "site_detail_url": "https://comicvine.gamespot.com/sutha/4005-162062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162064/", + "id": 162064, + "name": "Yonak", + "site_detail_url": "https://comicvine.gamespot.com/yonak/4005-162064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162065/", + "id": 162065, + "name": "Gurtyl", + "site_detail_url": "https://comicvine.gamespot.com/gurtyl/4005-162065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162066/", + "id": 162066, + "name": "Pitina Mar-Mas Voor", + "site_detail_url": "https://comicvine.gamespot.com/pitina-mar-mas-voor/4005-162066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162068/", + "id": 162068, + "name": "Finch Dallow", + "site_detail_url": "https://comicvine.gamespot.com/finch-dallow/4005-162068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162070/", + "id": 162070, + "name": "White Dwarf", + "site_detail_url": "https://comicvine.gamespot.com/white-dwarf/4005-162070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162071/", + "id": 162071, + "name": "Vermin", + "site_detail_url": "https://comicvine.gamespot.com/vermin/4005-162071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162078/", + "id": 162078, + "name": "Broan Danurs", + "site_detail_url": "https://comicvine.gamespot.com/broan-danurs/4005-162078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162082/", + "id": 162082, + "name": "DS-61-4", + "site_detail_url": "https://comicvine.gamespot.com/ds-61-4/4005-162082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162113/", + "id": 162113, + "name": "Euwood Gor", + "site_detail_url": "https://comicvine.gamespot.com/euwood-gor/4005-162113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162114/", + "id": 162114, + "name": "Calum Gram", + "site_detail_url": "https://comicvine.gamespot.com/calum-gram/4005-162114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162124/", + "id": 162124, + "name": "Mithel ", + "site_detail_url": "https://comicvine.gamespot.com/mithel/4005-162124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162127/", + "id": 162127, + "name": "Barion Raner", + "site_detail_url": "https://comicvine.gamespot.com/barion-raner/4005-162127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162129/", + "id": 162129, + "name": "Paril Ritta", + "site_detail_url": "https://comicvine.gamespot.com/paril-ritta/4005-162129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162131/", + "id": 162131, + "name": "Bombinax ", + "site_detail_url": "https://comicvine.gamespot.com/bombinax/4005-162131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162133/", + "id": 162133, + "name": "Vespinax", + "site_detail_url": "https://comicvine.gamespot.com/vespinax/4005-162133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162134/", + "id": 162134, + "name": "Varroa", + "site_detail_url": "https://comicvine.gamespot.com/varroa/4005-162134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162135/", + "id": 162135, + "name": "Queen of Ktath'atn", + "site_detail_url": "https://comicvine.gamespot.com/queen-of-ktathatn/4005-162135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162137/", + "id": 162137, + "name": "Honnah", + "site_detail_url": "https://comicvine.gamespot.com/honnah/4005-162137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162138/", + "id": 162138, + "name": "Chio Fain", + "site_detail_url": "https://comicvine.gamespot.com/chio-fain/4005-162138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162140/", + "id": 162140, + "name": "Gwi", + "site_detail_url": "https://comicvine.gamespot.com/gwi/4005-162140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162141/", + "id": 162141, + "name": "Tosan", + "site_detail_url": "https://comicvine.gamespot.com/tosan/4005-162141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162144/", + "id": 162144, + "name": "Sabo", + "site_detail_url": "https://comicvine.gamespot.com/sabo/4005-162144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162147/", + "id": 162147, + "name": "Taidus Sefla", + "site_detail_url": "https://comicvine.gamespot.com/taidus-sefla/4005-162147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162148/", + "id": 162148, + "name": "Crokind Shand", + "site_detail_url": "https://comicvine.gamespot.com/crokind-shand/4005-162148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162152/", + "id": 162152, + "name": "Garn Stewer", + "site_detail_url": "https://comicvine.gamespot.com/garn-stewer/4005-162152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162157/", + "id": 162157, + "name": "Shadow University Dean", + "site_detail_url": "https://comicvine.gamespot.com/shadow-university-dean/4005-162157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162159/", + "id": 162159, + "name": "Ubin Des", + "site_detail_url": "https://comicvine.gamespot.com/ubin-des/4005-162159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162160/", + "id": 162160, + "name": "Chulco Gi", + "site_detail_url": "https://comicvine.gamespot.com/chulco-gi/4005-162160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162161/", + "id": 162161, + "name": "Davits Draven", + "site_detail_url": "https://comicvine.gamespot.com/davits-draven/4005-162161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162165/", + "id": 162165, + "name": "Hallio Bas", + "site_detail_url": "https://comicvine.gamespot.com/hallio-bas/4005-162165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162166/", + "id": 162166, + "name": "Glahst Ombra", + "site_detail_url": "https://comicvine.gamespot.com/glahst-ombra/4005-162166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162177/", + "id": 162177, + "name": "Razazel", + "site_detail_url": "https://comicvine.gamespot.com/razazel/4005-162177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162178/", + "id": 162178, + "name": "Razza", + "site_detail_url": "https://comicvine.gamespot.com/razza/4005-162178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162179/", + "id": 162179, + "name": "Zazella", + "site_detail_url": "https://comicvine.gamespot.com/zazella/4005-162179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162186/", + "id": 162186, + "name": "Jordo", + "site_detail_url": "https://comicvine.gamespot.com/jordo/4005-162186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162189/", + "id": 162189, + "name": "Tunga Arpagion", + "site_detail_url": "https://comicvine.gamespot.com/tunga-arpagion/4005-162189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162190/", + "id": 162190, + "name": "Bandwin Cor", + "site_detail_url": "https://comicvine.gamespot.com/bandwin-cor/4005-162190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162191/", + "id": 162191, + "name": "Haxen Delto", + "site_detail_url": "https://comicvine.gamespot.com/haxen-delto/4005-162191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162192/", + "id": 162192, + "name": "Baccam Grafis", + "site_detail_url": "https://comicvine.gamespot.com/baccam-grafis/4005-162192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162193/", + "id": 162193, + "name": "Lajaie", + "site_detail_url": "https://comicvine.gamespot.com/lajaie/4005-162193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162194/", + "id": 162194, + "name": "Pitt Onoran", + "site_detail_url": "https://comicvine.gamespot.com/pitt-onoran/4005-162194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162197/", + "id": 162197, + "name": "Tan Hubi", + "site_detail_url": "https://comicvine.gamespot.com/tan-hubi/4005-162197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162215/", + "id": 162215, + "name": "Gureni Telsig", + "site_detail_url": "https://comicvine.gamespot.com/gureni-telsig/4005-162215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162230/", + "id": 162230, + "name": "Ap'Lek", + "site_detail_url": "https://comicvine.gamespot.com/aplek/4005-162230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162231/", + "id": 162231, + "name": "Cardo", + "site_detail_url": "https://comicvine.gamespot.com/cardo/4005-162231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162232/", + "id": 162232, + "name": "Kuruk ", + "site_detail_url": "https://comicvine.gamespot.com/kuruk/4005-162232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162233/", + "id": 162233, + "name": "Trudgen", + "site_detail_url": "https://comicvine.gamespot.com/trudgen/4005-162233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162234/", + "id": 162234, + "name": "Ushar", + "site_detail_url": "https://comicvine.gamespot.com/ushar/4005-162234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162235/", + "id": 162235, + "name": "Vicrul", + "site_detail_url": "https://comicvine.gamespot.com/vicrul/4005-162235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162236/", + "id": 162236, + "name": "Aemon Gremm", + "site_detail_url": "https://comicvine.gamespot.com/aemon-gremm/4005-162236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162237/", + "id": 162237, + "name": "Silvasu Fi", + "site_detail_url": "https://comicvine.gamespot.com/silvasu-fi/4005-162237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162238/", + "id": 162238, + "name": "Batcha Hunaris", + "site_detail_url": "https://comicvine.gamespot.com/batcha-hunaris/4005-162238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162239/", + "id": 162239, + "name": "Pruno Jant", + "site_detail_url": "https://comicvine.gamespot.com/pruno-jant/4005-162239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162240/", + "id": 162240, + "name": "Callixido Ryss", + "site_detail_url": "https://comicvine.gamespot.com/callixido-ryss/4005-162240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162253/", + "id": 162253, + "name": "IG-11", + "site_detail_url": "https://comicvine.gamespot.com/ig-11/4005-162253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162256/", + "id": 162256, + "name": "Spider-Man Noir", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir/4005-162256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162263/", + "id": 162263, + "name": "Stansfield", + "site_detail_url": "https://comicvine.gamespot.com/stansfield/4005-162263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162309/", + "id": 162309, + "name": "Tubleek Ruz", + "site_detail_url": "https://comicvine.gamespot.com/tubleek-ruz/4005-162309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162310/", + "id": 162310, + "name": "Ronen Tagge", + "site_detail_url": "https://comicvine.gamespot.com/ronen-tagge/4005-162310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162315/", + "id": 162315, + "name": "Detta Yao", + "site_detail_url": "https://comicvine.gamespot.com/detta-yao/4005-162315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162316/", + "id": 162316, + "name": "Eustacia Okka", + "site_detail_url": "https://comicvine.gamespot.com/eustacia-okka/4005-162316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162317/", + "id": 162317, + "name": "Just Lucky", + "site_detail_url": "https://comicvine.gamespot.com/just-lucky/4005-162317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162318/", + "id": 162318, + "name": "TA-418", + "site_detail_url": "https://comicvine.gamespot.com/ta-418/4005-162318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162329/", + "id": 162329, + "name": "Lieutenant Blackwell", + "site_detail_url": "https://comicvine.gamespot.com/lieutenant-blackwell/4005-162329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162330/", + "id": 162330, + "name": "Officer Stone", + "site_detail_url": "https://comicvine.gamespot.com/officer-stone/4005-162330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162331/", + "id": 162331, + "name": "Joey", + "site_detail_url": "https://comicvine.gamespot.com/joey/4005-162331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162332/", + "id": 162332, + "name": "Willy", + "site_detail_url": "https://comicvine.gamespot.com/willy/4005-162332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162333/", + "id": 162333, + "name": "Mindy", + "site_detail_url": "https://comicvine.gamespot.com/mindy/4005-162333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162334/", + "id": 162334, + "name": "Michael Shaunessy", + "site_detail_url": "https://comicvine.gamespot.com/michael-shaunessy/4005-162334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162399/", + "id": 162399, + "name": "Ve'trock", + "site_detail_url": "https://comicvine.gamespot.com/vetrock/4005-162399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162400/", + "id": 162400, + "name": "Phthira", + "site_detail_url": "https://comicvine.gamespot.com/phthira/4005-162400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162401/", + "id": 162401, + "name": "Crematrix", + "site_detail_url": "https://comicvine.gamespot.com/crematrix/4005-162401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162402/", + "id": 162402, + "name": "Macrothrax", + "site_detail_url": "https://comicvine.gamespot.com/macrothrax/4005-162402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162449/", + "id": 162449, + "name": "Viper", + "site_detail_url": "https://comicvine.gamespot.com/viper/4005-162449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162477/", + "id": 162477, + "name": "Xavier King", + "site_detail_url": "https://comicvine.gamespot.com/xavier-king/4005-162477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162691/", + "id": 162691, + "name": "Shishi", + "site_detail_url": "https://comicvine.gamespot.com/shishi/4005-162691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162727/", + "id": 162727, + "name": "Chloe Robertson", + "site_detail_url": "https://comicvine.gamespot.com/chloe-robertson/4005-162727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162809/", + "id": 162809, + "name": "Lorenzo Brackett", + "site_detail_url": "https://comicvine.gamespot.com/lorenzo-brackett/4005-162809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162847/", + "id": 162847, + "name": "Felix Waterhouse", + "site_detail_url": "https://comicvine.gamespot.com/felix-waterhouse/4005-162847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162853/", + "id": 162853, + "name": "Marie", + "site_detail_url": "https://comicvine.gamespot.com/marie/4005-162853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162854/", + "id": 162854, + "name": "Craken", + "site_detail_url": "https://comicvine.gamespot.com/craken/4005-162854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162855/", + "id": 162855, + "name": "Oscar", + "site_detail_url": "https://comicvine.gamespot.com/oscar/4005-162855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162877/", + "id": 162877, + "name": "Summoner", + "site_detail_url": "https://comicvine.gamespot.com/summoner/4005-162877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-162979/", + "id": 162979, + "name": "Dr. Transom", + "site_detail_url": "https://comicvine.gamespot.com/dr-transom/4005-162979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163018/", + "id": 163018, + "name": "Ambertrance Fasia", + "site_detail_url": "https://comicvine.gamespot.com/ambertrance-fasia/4005-163018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163019/", + "id": 163019, + "name": "Ecka", + "site_detail_url": "https://comicvine.gamespot.com/ecka/4005-163019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163061/", + "id": 163061, + "name": "Mr. Smile", + "site_detail_url": "https://comicvine.gamespot.com/mr-smile/4005-163061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163062/", + "id": 163062, + "name": "Mr. Sulk", + "site_detail_url": "https://comicvine.gamespot.com/mr-sulk/4005-163062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163063/", + "id": 163063, + "name": "Grimlack the Troll", + "site_detail_url": "https://comicvine.gamespot.com/grimlack-the-troll/4005-163063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163064/", + "id": 163064, + "name": "Ragnor", + "site_detail_url": "https://comicvine.gamespot.com/ragnor/4005-163064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163065/", + "id": 163065, + "name": "The Profiteer", + "site_detail_url": "https://comicvine.gamespot.com/the-profiteer/4005-163065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163066/", + "id": 163066, + "name": "Jo-Venn", + "site_detail_url": "https://comicvine.gamespot.com/jo-venn/4005-163066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163082/", + "id": 163082, + "name": "Reyna Sirena", + "site_detail_url": "https://comicvine.gamespot.com/reyna-sirena/4005-163082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163200/", + "id": 163200, + "name": "Steven", + "site_detail_url": "https://comicvine.gamespot.com/steven/4005-163200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163212/", + "id": 163212, + "name": "Prince of Power", + "site_detail_url": "https://comicvine.gamespot.com/prince-of-power/4005-163212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163213/", + "id": 163213, + "name": "N'kalla", + "site_detail_url": "https://comicvine.gamespot.com/nkalla/4005-163213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163224/", + "id": 163224, + "name": "Octavia Vermis", + "site_detail_url": "https://comicvine.gamespot.com/octavia-vermis/4005-163224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163348/", + "id": 163348, + "name": "Pale Girl", + "site_detail_url": "https://comicvine.gamespot.com/pale-girl/4005-163348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163349/", + "id": 163349, + "name": "Jeff Bannister", + "site_detail_url": "https://comicvine.gamespot.com/jeff-bannister/4005-163349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163410/", + "id": 163410, + "name": "Lauri-Ell", + "site_detail_url": "https://comicvine.gamespot.com/lauri-ell/4005-163410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163414/", + "id": 163414, + "name": "Shi Qaanth", + "site_detail_url": "https://comicvine.gamespot.com/shi-qaanth/4005-163414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163432/", + "id": 163432, + "name": "Amazing Baby", + "site_detail_url": "https://comicvine.gamespot.com/amazing-baby/4005-163432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163610/", + "id": 163610, + "name": "Charlie", + "site_detail_url": "https://comicvine.gamespot.com/charlie/4005-163610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163611/", + "id": 163611, + "name": "Sarge", + "site_detail_url": "https://comicvine.gamespot.com/sarge/4005-163611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163616/", + "id": 163616, + "name": "Jill", + "site_detail_url": "https://comicvine.gamespot.com/jill/4005-163616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163617/", + "id": 163617, + "name": "Gil", + "site_detail_url": "https://comicvine.gamespot.com/gil/4005-163617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163618/", + "id": 163618, + "name": "Bill", + "site_detail_url": "https://comicvine.gamespot.com/bill/4005-163618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163619/", + "id": 163619, + "name": "Quonian", + "site_detail_url": "https://comicvine.gamespot.com/quonian/4005-163619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163620/", + "id": 163620, + "name": "Zrrgo", + "site_detail_url": "https://comicvine.gamespot.com/zrrgo/4005-163620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163621/", + "id": 163621, + "name": "The Night Wolf", + "site_detail_url": "https://comicvine.gamespot.com/the-night-wolf/4005-163621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163622/", + "id": 163622, + "name": "Bün Bün the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/bun-bun-the-destroyer/4005-163622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163623/", + "id": 163623, + "name": "Kohlaab the Pile", + "site_detail_url": "https://comicvine.gamespot.com/kohlaab-the-pile/4005-163623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163624/", + "id": 163624, + "name": "Chet Morita", + "site_detail_url": "https://comicvine.gamespot.com/chet-morita/4005-163624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163625/", + "id": 163625, + "name": "Jelby", + "site_detail_url": "https://comicvine.gamespot.com/jelby/4005-163625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163660/", + "id": 163660, + "name": "Jack McGee", + "site_detail_url": "https://comicvine.gamespot.com/jack-mcgee/4005-163660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163680/", + "id": 163680, + "name": "Bat-Bat", + "site_detail_url": "https://comicvine.gamespot.com/bat-bat/4005-163680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163681/", + "id": 163681, + "name": "Pearl Pureheart", + "site_detail_url": "https://comicvine.gamespot.com/pearl-pureheart/4005-163681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163746/", + "id": 163746, + "name": "Saucier", + "site_detail_url": "https://comicvine.gamespot.com/saucier/4005-163746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163810/", + "id": 163810, + "name": "Captain Last", + "site_detail_url": "https://comicvine.gamespot.com/captain-last/4005-163810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-163934/", + "id": 163934, + "name": "Leonora Yoon", + "site_detail_url": "https://comicvine.gamespot.com/leonora-yoon/4005-163934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164129/", + "id": 164129, + "name": "Chester Rat", + "site_detail_url": "https://comicvine.gamespot.com/chester-rat/4005-164129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164130/", + "id": 164130, + "name": "Masterson Rat", + "site_detail_url": "https://comicvine.gamespot.com/masterson-rat/4005-164130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164131/", + "id": 164131, + "name": "Beth Bear", + "site_detail_url": "https://comicvine.gamespot.com/beth-bear/4005-164131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164182/", + "id": 164182, + "name": "Black Winter", + "site_detail_url": "https://comicvine.gamespot.com/black-winter/4005-164182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164225/", + "id": 164225, + "name": "Fountainhead", + "site_detail_url": "https://comicvine.gamespot.com/fountainhead/4005-164225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164280/", + "id": 164280, + "name": "Willy Seal", + "site_detail_url": "https://comicvine.gamespot.com/willy-seal/4005-164280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164281/", + "id": 164281, + "name": "Zaggy Pig", + "site_detail_url": "https://comicvine.gamespot.com/zaggy-pig/4005-164281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164350/", + "id": 164350, + "name": "Precious", + "site_detail_url": "https://comicvine.gamespot.com/precious/4005-164350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164352/", + "id": 164352, + "name": "Marty Gilbert", + "site_detail_url": "https://comicvine.gamespot.com/marty-gilbert/4005-164352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164381/", + "id": 164381, + "name": "Kiki Fuji", + "site_detail_url": "https://comicvine.gamespot.com/kiki-fuji/4005-164381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164472/", + "id": 164472, + "name": "Kayla ", + "site_detail_url": "https://comicvine.gamespot.com/kayla/4005-164472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164492/", + "id": 164492, + "name": "Ma Pig", + "site_detail_url": "https://comicvine.gamespot.com/ma-pig/4005-164492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164514/", + "id": 164514, + "name": "Shandu", + "site_detail_url": "https://comicvine.gamespot.com/shandu/4005-164514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164539/", + "id": 164539, + "name": "Adam Aziz", + "site_detail_url": "https://comicvine.gamespot.com/adam-aziz/4005-164539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164605/", + "id": 164605, + "name": "Rattan", + "site_detail_url": "https://comicvine.gamespot.com/rattan/4005-164605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164680/", + "id": 164680, + "name": "T'm-Ber Boop ", + "site_detail_url": "https://comicvine.gamespot.com/tm-ber-boop/4005-164680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164699/", + "id": 164699, + "name": "Angelina", + "site_detail_url": "https://comicvine.gamespot.com/angelina/4005-164699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164709/", + "id": 164709, + "name": "Tobe", + "site_detail_url": "https://comicvine.gamespot.com/tobe/4005-164709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164710/", + "id": 164710, + "name": "Marilou", + "site_detail_url": "https://comicvine.gamespot.com/marilou/4005-164710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164720/", + "id": 164720, + "name": "Melody Watkins", + "site_detail_url": "https://comicvine.gamespot.com/melody-watkins/4005-164720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164721/", + "id": 164721, + "name": "Stevie Watkins", + "site_detail_url": "https://comicvine.gamespot.com/stevie-watkins/4005-164721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164722/", + "id": 164722, + "name": "Mike", + "site_detail_url": "https://comicvine.gamespot.com/mike/4005-164722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164723/", + "id": 164723, + "name": "Tom Hurdler", + "site_detail_url": "https://comicvine.gamespot.com/tom-hurdler/4005-164723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164724/", + "id": 164724, + "name": "Frank", + "site_detail_url": "https://comicvine.gamespot.com/frank/4005-164724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164725/", + "id": 164725, + "name": "Tim", + "site_detail_url": "https://comicvine.gamespot.com/tim/4005-164725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164726/", + "id": 164726, + "name": "Harvard-Man", + "site_detail_url": "https://comicvine.gamespot.com/harvard-man/4005-164726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164732/", + "id": 164732, + "name": "Petra Karela", + "site_detail_url": "https://comicvine.gamespot.com/petra-karela/4005-164732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164733/", + "id": 164733, + "name": "Vasily Makeyev", + "site_detail_url": "https://comicvine.gamespot.com/vasily-makeyev/4005-164733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164734/", + "id": 164734, + "name": "Antithesis", + "site_detail_url": "https://comicvine.gamespot.com/antithesis/4005-164734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164735/", + "id": 164735, + "name": "Michael Marchand", + "site_detail_url": "https://comicvine.gamespot.com/michael-marchand/4005-164735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164736/", + "id": 164736, + "name": "Rebecca Marchand", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-marchand/4005-164736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164737/", + "id": 164737, + "name": "Alexie Sablinova", + "site_detail_url": "https://comicvine.gamespot.com/alexie-sablinova/4005-164737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164739/", + "id": 164739, + "name": "Death ", + "site_detail_url": "https://comicvine.gamespot.com/death/4005-164739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164740/", + "id": 164740, + "name": "Famine ", + "site_detail_url": "https://comicvine.gamespot.com/famine/4005-164740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164741/", + "id": 164741, + "name": "War ", + "site_detail_url": "https://comicvine.gamespot.com/war/4005-164741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164742/", + "id": 164742, + "name": "Pestilence ", + "site_detail_url": "https://comicvine.gamespot.com/pestilence/4005-164742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164744/", + "id": 164744, + "name": "Quaddeus Quo", + "site_detail_url": "https://comicvine.gamespot.com/quaddeus-quo/4005-164744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164745/", + "id": 164745, + "name": "Ryl", + "site_detail_url": "https://comicvine.gamespot.com/ryl/4005-164745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164746/", + "id": 164746, + "name": "Sinner Rose", + "site_detail_url": "https://comicvine.gamespot.com/sinner-rose/4005-164746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164747/", + "id": 164747, + "name": "Temple", + "site_detail_url": "https://comicvine.gamespot.com/temple/4005-164747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164760/", + "id": 164760, + "name": "Our Lady of Comets", + "site_detail_url": "https://comicvine.gamespot.com/our-lady-of-comets/4005-164760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164761/", + "id": 164761, + "name": "The Meat Mother", + "site_detail_url": "https://comicvine.gamespot.com/the-meat-mother/4005-164761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164762/", + "id": 164762, + "name": "The Prince of Soot", + "site_detail_url": "https://comicvine.gamespot.com/the-prince-of-soot/4005-164762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164763/", + "id": 164763, + "name": "The Lord of Roots", + "site_detail_url": "https://comicvine.gamespot.com/the-lord-of-roots/4005-164763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164774/", + "id": 164774, + "name": "D-Cel", + "site_detail_url": "https://comicvine.gamespot.com/d-cel/4005-164774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164812/", + "id": 164812, + "name": "Genesis", + "site_detail_url": "https://comicvine.gamespot.com/genesis/4005-164812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164813/", + "id": 164813, + "name": "White Sword", + "site_detail_url": "https://comicvine.gamespot.com/white-sword/4005-164813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164814/", + "id": 164814, + "name": "Isca the Unbeaten", + "site_detail_url": "https://comicvine.gamespot.com/isca-the-unbeaten/4005-164814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164823/", + "id": 164823, + "name": "Nana", + "site_detail_url": "https://comicvine.gamespot.com/nana/4005-164823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164836/", + "id": 164836, + "name": "Stu Pfaffenberger", + "site_detail_url": "https://comicvine.gamespot.com/stu-pfaffenberger/4005-164836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164837/", + "id": 164837, + "name": "Cortland Kasady", + "site_detail_url": "https://comicvine.gamespot.com/cortland-kasady/4005-164837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164864/", + "id": 164864, + "name": "Solem", + "site_detail_url": "https://comicvine.gamespot.com/solem/4005-164864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164868/", + "id": 164868, + "name": "Goofwhacker", + "site_detail_url": "https://comicvine.gamespot.com/goofwhacker/4005-164868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164885/", + "id": 164885, + "name": "Brandy Selby", + "site_detail_url": "https://comicvine.gamespot.com/brandy-selby/4005-164885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-164967/", + "id": 164967, + "name": "Ochi of Bestoon", + "site_detail_url": "https://comicvine.gamespot.com/ochi-of-bestoon/4005-164967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165034/", + "id": 165034, + "name": "Jake Gomez", + "site_detail_url": "https://comicvine.gamespot.com/jake-gomez/4005-165034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165078/", + "id": 165078, + "name": "Lani Ko Ako", + "site_detail_url": "https://comicvine.gamespot.com/lani-ko-ako/4005-165078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165079/", + "id": 165079, + "name": "Nymbis Sternhoof", + "site_detail_url": "https://comicvine.gamespot.com/nymbis-sternhoof/4005-165079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165080/", + "id": 165080, + "name": "Val-Lorr", + "site_detail_url": "https://comicvine.gamespot.com/val-lorr/4005-165080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165081/", + "id": 165081, + "name": "Oracle-2", + "site_detail_url": "https://comicvine.gamespot.com/oracle-2/4005-165081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165082/", + "id": 165082, + "name": "Zoralis Gupa", + "site_detail_url": "https://comicvine.gamespot.com/zoralis-gupa/4005-165082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165083/", + "id": 165083, + "name": "Peacebringer", + "site_detail_url": "https://comicvine.gamespot.com/peacebringer/4005-165083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165084/", + "id": 165084, + "name": "Emperor Stote", + "site_detail_url": "https://comicvine.gamespot.com/emperor-stote/4005-165084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165152/", + "id": 165152, + "name": "Rashid Hammer Jones", + "site_detail_url": "https://comicvine.gamespot.com/rashid-hammer-jones/4005-165152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165156/", + "id": 165156, + "name": "Sean", + "site_detail_url": "https://comicvine.gamespot.com/sean/4005-165156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165159/", + "id": 165159, + "name": "Gia Whitechapel", + "site_detail_url": "https://comicvine.gamespot.com/gia-whitechapel/4005-165159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165160/", + "id": 165160, + "name": "Bei the Blood Moon", + "site_detail_url": "https://comicvine.gamespot.com/bei-the-blood-moon/4005-165160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165161/", + "id": 165161, + "name": "Pogg Ur-Pogg", + "site_detail_url": "https://comicvine.gamespot.com/pogg-ur-pogg/4005-165161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165162/", + "id": 165162, + "name": "Redroot, the Forest", + "site_detail_url": "https://comicvine.gamespot.com/redroot-the-forest/4005-165162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165175/", + "id": 165175, + "name": "Idyll", + "site_detail_url": "https://comicvine.gamespot.com/idyll/4005-165175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165176/", + "id": 165176, + "name": "Hoork", + "site_detail_url": "https://comicvine.gamespot.com/hoork/4005-165176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165177/", + "id": 165177, + "name": "Dai-Damun", + "site_detail_url": "https://comicvine.gamespot.com/dai-damun/4005-165177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165190/", + "id": 165190, + "name": "Vesperidae", + "site_detail_url": "https://comicvine.gamespot.com/vesperidae/4005-165190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165191/", + "id": 165191, + "name": "Sister Hammer", + "site_detail_url": "https://comicvine.gamespot.com/sister-hammer/4005-165191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165192/", + "id": 165192, + "name": "Brother Sabre", + "site_detail_url": "https://comicvine.gamespot.com/brother-sabre/4005-165192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165193/", + "id": 165193, + "name": "Sister Dagger", + "site_detail_url": "https://comicvine.gamespot.com/sister-dagger/4005-165193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165281/", + "id": 165281, + "name": "Mike Nguyen", + "site_detail_url": "https://comicvine.gamespot.com/mike-nguyen/4005-165281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165282/", + "id": 165282, + "name": "Katie Barton", + "site_detail_url": "https://comicvine.gamespot.com/katie-barton/4005-165282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165283/", + "id": 165283, + "name": "Irene LeBeau", + "site_detail_url": "https://comicvine.gamespot.com/irene-lebeau/4005-165283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165284/", + "id": 165284, + "name": "Sora", + "site_detail_url": "https://comicvine.gamespot.com/sora/4005-165284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165285/", + "id": 165285, + "name": "Brigid Thorsdottir", + "site_detail_url": "https://comicvine.gamespot.com/brigid-thorsdottir/4005-165285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165286/", + "id": 165286, + "name": "Carol Rhodes", + "site_detail_url": "https://comicvine.gamespot.com/carol-rhodes/4005-165286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165300/", + "id": 165300, + "name": "Eben Stafford", + "site_detail_url": "https://comicvine.gamespot.com/eben-stafford/4005-165300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165302/", + "id": 165302, + "name": "Doom the Living Planet", + "site_detail_url": "https://comicvine.gamespot.com/doom-the-living-planet/4005-165302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165303/", + "id": 165303, + "name": "Nehanda", + "site_detail_url": "https://comicvine.gamespot.com/nehanda/4005-165303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165304/", + "id": 165304, + "name": "Iron Fist 1,000 AD", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-1000-ad/4005-165304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165305/", + "id": 165305, + "name": "Phoenix 1,000 AD", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-1000-ad/4005-165305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165342/", + "id": 165342, + "name": "Annihilation ", + "site_detail_url": "https://comicvine.gamespot.com/annihilation/4005-165342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165363/", + "id": 165363, + "name": "Peter Rasputin Pryde", + "site_detail_url": "https://comicvine.gamespot.com/peter-rasputin-pryde/4005-165363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165364/", + "id": 165364, + "name": "Blackie", + "site_detail_url": "https://comicvine.gamespot.com/blackie/4005-165364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165389/", + "id": 165389, + "name": "Infernock", + "site_detail_url": "https://comicvine.gamespot.com/infernock/4005-165389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165432/", + "id": 165432, + "name": "Carolina Washington", + "site_detail_url": "https://comicvine.gamespot.com/carolina-washington/4005-165432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165434/", + "id": 165434, + "name": "Chief Brody", + "site_detail_url": "https://comicvine.gamespot.com/chief-brody/4005-165434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165545/", + "id": 165545, + "name": "Joey Jordan", + "site_detail_url": "https://comicvine.gamespot.com/joey-jordan/4005-165545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165549/", + "id": 165549, + "name": "Tarn the Uncaring", + "site_detail_url": "https://comicvine.gamespot.com/tarn-the-uncaring/4005-165549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165556/", + "id": 165556, + "name": "Speed-Freak", + "site_detail_url": "https://comicvine.gamespot.com/speed-freak/4005-165556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165557/", + "id": 165557, + "name": "Mudgear the Recanter", + "site_detail_url": "https://comicvine.gamespot.com/mudgear-the-recanter/4005-165557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165558/", + "id": 165558, + "name": "Monitor", + "site_detail_url": "https://comicvine.gamespot.com/monitor/4005-165558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165573/", + "id": 165573, + "name": "Mother Rapture", + "site_detail_url": "https://comicvine.gamespot.com/mother-rapture/4005-165573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165574/", + "id": 165574, + "name": "Hex Butcher", + "site_detail_url": "https://comicvine.gamespot.com/hex-butcher/4005-165574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165575/", + "id": 165575, + "name": "Sick Bird", + "site_detail_url": "https://comicvine.gamespot.com/sick-bird/4005-165575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165576/", + "id": 165576, + "name": "Amino Fetus", + "site_detail_url": "https://comicvine.gamespot.com/amino-fetus/4005-165576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165660/", + "id": 165660, + "name": "James Fisher", + "site_detail_url": "https://comicvine.gamespot.com/james-fisher/4005-165660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165661/", + "id": 165661, + "name": "Arnold Radisch", + "site_detail_url": "https://comicvine.gamespot.com/arnold-radisch/4005-165661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165662/", + "id": 165662, + "name": "Jeffrey Parks", + "site_detail_url": "https://comicvine.gamespot.com/jeffrey-parks/4005-165662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165663/", + "id": 165663, + "name": "Michael Stevenson", + "site_detail_url": "https://comicvine.gamespot.com/michael-stevenson/4005-165663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165664/", + "id": 165664, + "name": "Steven Tyler", + "site_detail_url": "https://comicvine.gamespot.com/steven-tyler/4005-165664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165665/", + "id": 165665, + "name": "Zarin", + "site_detail_url": "https://comicvine.gamespot.com/zarin/4005-165665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165666/", + "id": 165666, + "name": "General Greshkov", + "site_detail_url": "https://comicvine.gamespot.com/general-greshkov/4005-165666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165667/", + "id": 165667, + "name": "Murderface", + "site_detail_url": "https://comicvine.gamespot.com/murderface/4005-165667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165668/", + "id": 165668, + "name": "Red Hulkbunny", + "site_detail_url": "https://comicvine.gamespot.com/red-hulkbunny/4005-165668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165689/", + "id": 165689, + "name": "Kharrek", + "site_detail_url": "https://comicvine.gamespot.com/kharrek/4005-165689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165704/", + "id": 165704, + "name": "Violet Swan", + "site_detail_url": "https://comicvine.gamespot.com/violet-swan/4005-165704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165705/", + "id": 165705, + "name": "Captain Baboon", + "site_detail_url": "https://comicvine.gamespot.com/captain-baboon/4005-165705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165706/", + "id": 165706, + "name": "Captain Amphibian", + "site_detail_url": "https://comicvine.gamespot.com/captain-amphibian/4005-165706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165707/", + "id": 165707, + "name": "Samurai Saxon", + "site_detail_url": "https://comicvine.gamespot.com/samurai-saxon/4005-165707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165708/", + "id": 165708, + "name": "Right Honourable Captain Winston Faneshaw-Sinclair", + "site_detail_url": "https://comicvine.gamespot.com/right-honourable-captain-winston-faneshaw-sinclair/4005-165708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165709/", + "id": 165709, + "name": "Anglo-Simian", + "site_detail_url": "https://comicvine.gamespot.com/anglo-simian/4005-165709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165724/", + "id": 165724, + "name": "Terry Parker", + "site_detail_url": "https://comicvine.gamespot.com/terry-parker/4005-165724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165725/", + "id": 165725, + "name": "Matt Durgan", + "site_detail_url": "https://comicvine.gamespot.com/matt-durgan/4005-165725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165726/", + "id": 165726, + "name": "Timothy Ryan", + "site_detail_url": "https://comicvine.gamespot.com/timothy-ryan/4005-165726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165727/", + "id": 165727, + "name": "Harry Krunkeit", + "site_detail_url": "https://comicvine.gamespot.com/harry-krunkeit/4005-165727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165728/", + "id": 165728, + "name": "Milly McCoy", + "site_detail_url": "https://comicvine.gamespot.com/milly-mccoy/4005-165728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165729/", + "id": 165729, + "name": "Truman Swartz", + "site_detail_url": "https://comicvine.gamespot.com/truman-swartz/4005-165729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165730/", + "id": 165730, + "name": "Walter Reasoner", + "site_detail_url": "https://comicvine.gamespot.com/walter-reasoner/4005-165730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165731/", + "id": 165731, + "name": "Sigmar", + "site_detail_url": "https://comicvine.gamespot.com/sigmar/4005-165731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165864/", + "id": 165864, + "name": "Arthur King", + "site_detail_url": "https://comicvine.gamespot.com/arthur-king/4005-165864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165865/", + "id": 165865, + "name": "Lance", + "site_detail_url": "https://comicvine.gamespot.com/lance/4005-165865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165866/", + "id": 165866, + "name": "Breeze", + "site_detail_url": "https://comicvine.gamespot.com/breeze/4005-165866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165867/", + "id": 165867, + "name": "Brick", + "site_detail_url": "https://comicvine.gamespot.com/brick/4005-165867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165868/", + "id": 165868, + "name": "Darren", + "site_detail_url": "https://comicvine.gamespot.com/darren/4005-165868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165869/", + "id": 165869, + "name": "Gallop", + "site_detail_url": "https://comicvine.gamespot.com/gallop/4005-165869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165870/", + "id": 165870, + "name": "Phil", + "site_detail_url": "https://comicvine.gamespot.com/phil/4005-165870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165871/", + "id": 165871, + "name": "Tone", + "site_detail_url": "https://comicvine.gamespot.com/tone/4005-165871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165872/", + "id": 165872, + "name": "Trunk", + "site_detail_url": "https://comicvine.gamespot.com/trunk/4005-165872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165873/", + "id": 165873, + "name": "Wally", + "site_detail_url": "https://comicvine.gamespot.com/wally/4005-165873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165874/", + "id": 165874, + "name": "Zeke", + "site_detail_url": "https://comicvine.gamespot.com/zeke/4005-165874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165878/", + "id": 165878, + "name": "Lord Viper", + "site_detail_url": "https://comicvine.gamespot.com/lord-viper/4005-165878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165879/", + "id": 165879, + "name": "Blackwing", + "site_detail_url": "https://comicvine.gamespot.com/blackwing/4005-165879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165880/", + "id": 165880, + "name": "Warlord Axe", + "site_detail_url": "https://comicvine.gamespot.com/warlord-axe/4005-165880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165881/", + "id": 165881, + "name": "Warlord Bash", + "site_detail_url": "https://comicvine.gamespot.com/warlord-bash/4005-165881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165882/", + "id": 165882, + "name": "Blinder", + "site_detail_url": "https://comicvine.gamespot.com/blinder/4005-165882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165883/", + "id": 165883, + "name": "Warlord Hammer", + "site_detail_url": "https://comicvine.gamespot.com/warlord-hammer/4005-165883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165884/", + "id": 165884, + "name": "Warlord Lucan", + "site_detail_url": "https://comicvine.gamespot.com/warlord-lucan/4005-165884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165885/", + "id": 165885, + "name": "Warlord Spike", + "site_detail_url": "https://comicvine.gamespot.com/warlord-spike/4005-165885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165886/", + "id": 165886, + "name": "Slasher", + "site_detail_url": "https://comicvine.gamespot.com/slasher/4005-165886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165933/", + "id": 165933, + "name": "Kelpie", + "site_detail_url": "https://comicvine.gamespot.com/kelpie/4005-165933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165934/", + "id": 165934, + "name": "The Choir", + "site_detail_url": "https://comicvine.gamespot.com/the-choir/4005-165934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165935/", + "id": 165935, + "name": "Snakes", + "site_detail_url": "https://comicvine.gamespot.com/snakes/4005-165935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165966/", + "id": 165966, + "name": "The Helper", + "site_detail_url": "https://comicvine.gamespot.com/the-helper/4005-165966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165967/", + "id": 165967, + "name": "Clyde Dobronski", + "site_detail_url": "https://comicvine.gamespot.com/clyde-dobronski/4005-165967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165969/", + "id": 165969, + "name": "Steve Darwin", + "site_detail_url": "https://comicvine.gamespot.com/steve-darwin/4005-165969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-165970/", + "id": 165970, + "name": "Britannia", + "site_detail_url": "https://comicvine.gamespot.com/britannia/4005-165970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166017/", + "id": 166017, + "name": "Michelle Jones", + "site_detail_url": "https://comicvine.gamespot.com/michelle-jones/4005-166017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166019/", + "id": 166019, + "name": "James", + "site_detail_url": "https://comicvine.gamespot.com/james/4005-166019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166021/", + "id": 166021, + "name": "Isidore", + "site_detail_url": "https://comicvine.gamespot.com/isidore/4005-166021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166027/", + "id": 166027, + "name": "Cyril", + "site_detail_url": "https://comicvine.gamespot.com/cyril/4005-166027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166028/", + "id": 166028, + "name": "Jeph", + "site_detail_url": "https://comicvine.gamespot.com/jeph/4005-166028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166029/", + "id": 166029, + "name": "Hepti", + "site_detail_url": "https://comicvine.gamespot.com/hepti/4005-166029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166030/", + "id": 166030, + "name": "Fede", + "site_detail_url": "https://comicvine.gamespot.com/fede/4005-166030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166033/", + "id": 166033, + "name": "Mr. Cluck", + "site_detail_url": "https://comicvine.gamespot.com/mr-cluck/4005-166033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166046/", + "id": 166046, + "name": "Highwalker", + "site_detail_url": "https://comicvine.gamespot.com/highwalker/4005-166046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166047/", + "id": 166047, + "name": "Ove", + "site_detail_url": "https://comicvine.gamespot.com/ove/4005-166047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166048/", + "id": 166048, + "name": "Kharsa", + "site_detail_url": "https://comicvine.gamespot.com/kharsa/4005-166048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166049/", + "id": 166049, + "name": "Sycorax", + "site_detail_url": "https://comicvine.gamespot.com/sycorax/4005-166049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166050/", + "id": 166050, + "name": "Garanna", + "site_detail_url": "https://comicvine.gamespot.com/garanna/4005-166050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166051/", + "id": 166051, + "name": "Attukar", + "site_detail_url": "https://comicvine.gamespot.com/attukar/4005-166051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166052/", + "id": 166052, + "name": "Sweet Mercy", + "site_detail_url": "https://comicvine.gamespot.com/sweet-mercy/4005-166052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166053/", + "id": 166053, + "name": "The Mountain", + "site_detail_url": "https://comicvine.gamespot.com/the-mountain/4005-166053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166054/", + "id": 166054, + "name": "Syzandias", + "site_detail_url": "https://comicvine.gamespot.com/syzandias/4005-166054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166055/", + "id": 166055, + "name": "Frell", + "site_detail_url": "https://comicvine.gamespot.com/frell/4005-166055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166056/", + "id": 166056, + "name": "Needle", + "site_detail_url": "https://comicvine.gamespot.com/needle/4005-166056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166057/", + "id": 166057, + "name": "Commander Grek", + "site_detail_url": "https://comicvine.gamespot.com/commander-grek/4005-166057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166068/", + "id": 166068, + "name": "A.I.D.A.", + "site_detail_url": "https://comicvine.gamespot.com/aida/4005-166068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166072/", + "id": 166072, + "name": "Captain Ashei", + "site_detail_url": "https://comicvine.gamespot.com/captain-ashei/4005-166072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166152/", + "id": 166152, + "name": "Sanzu", + "site_detail_url": "https://comicvine.gamespot.com/sanzu/4005-166152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166153/", + "id": 166153, + "name": "Beasty-Brute", + "site_detail_url": "https://comicvine.gamespot.com/beasty-brute/4005-166153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166154/", + "id": 166154, + "name": "Soulscream", + "site_detail_url": "https://comicvine.gamespot.com/soulscream/4005-166154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166158/", + "id": 166158, + "name": "Bobo", + "site_detail_url": "https://comicvine.gamespot.com/bobo/4005-166158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166159/", + "id": 166159, + "name": "Beemer", + "site_detail_url": "https://comicvine.gamespot.com/beemer/4005-166159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166160/", + "id": 166160, + "name": "Zarina", + "site_detail_url": "https://comicvine.gamespot.com/zarina/4005-166160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166189/", + "id": 166189, + "name": "Syphacc", + "site_detail_url": "https://comicvine.gamespot.com/syphacc/4005-166189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166190/", + "id": 166190, + "name": "Kondra", + "site_detail_url": "https://comicvine.gamespot.com/kondra/4005-166190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166192/", + "id": 166192, + "name": "Kate Tollifson", + "site_detail_url": "https://comicvine.gamespot.com/kate-tollifson/4005-166192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166193/", + "id": 166193, + "name": "Fruzsina Markovich", + "site_detail_url": "https://comicvine.gamespot.com/fruzsina-markovich/4005-166193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166194/", + "id": 166194, + "name": "Costin von Doom", + "site_detail_url": "https://comicvine.gamespot.com/costin-von-doom/4005-166194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166195/", + "id": 166195, + "name": "Doru von Doom", + "site_detail_url": "https://comicvine.gamespot.com/doru-von-doom/4005-166195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166198/", + "id": 166198, + "name": "T'onga", + "site_detail_url": "https://comicvine.gamespot.com/tonga/4005-166198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166199/", + "id": 166199, + "name": "Losha Tarkon", + "site_detail_url": "https://comicvine.gamespot.com/losha-tarkon/4005-166199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166200/", + "id": 166200, + "name": "Ooris Bynar", + "site_detail_url": "https://comicvine.gamespot.com/ooris-bynar/4005-166200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166204/", + "id": 166204, + "name": "Yuralla Vega", + "site_detail_url": "https://comicvine.gamespot.com/yuralla-vega/4005-166204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166205/", + "id": 166205, + "name": "Vukorah", + "site_detail_url": "https://comicvine.gamespot.com/vukorah/4005-166205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166206/", + "id": 166206, + "name": "Cadeliah", + "site_detail_url": "https://comicvine.gamespot.com/cadeliah/4005-166206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166235/", + "id": 166235, + "name": "Sergius O'Hoolihan", + "site_detail_url": "https://comicvine.gamespot.com/sergius-ohoolihan/4005-166235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166236/", + "id": 166236, + "name": "Debbie McIlvane", + "site_detail_url": "https://comicvine.gamespot.com/debbie-mcilvane/4005-166236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166237/", + "id": 166237, + "name": "General Hager", + "site_detail_url": "https://comicvine.gamespot.com/general-hager/4005-166237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166239/", + "id": 166239, + "name": "Jose Quesada", + "site_detail_url": "https://comicvine.gamespot.com/jose-quesada/4005-166239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166295/", + "id": 166295, + "name": "Mr. Ditkovich", + "site_detail_url": "https://comicvine.gamespot.com/mr-ditkovich/4005-166295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166296/", + "id": 166296, + "name": "Ursula Ditkovich", + "site_detail_url": "https://comicvine.gamespot.com/ursula-ditkovich/4005-166296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166297/", + "id": 166297, + "name": "Rosalie Octavius", + "site_detail_url": "https://comicvine.gamespot.com/rosalie-octavius/4005-166297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166298/", + "id": 166298, + "name": "Ted Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/ted-hoffman/4005-166298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166299/", + "id": 166299, + "name": "Mr. Aziz", + "site_detail_url": "https://comicvine.gamespot.com/mr-aziz/4005-166299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166306/", + "id": 166306, + "name": "Penny Marko", + "site_detail_url": "https://comicvine.gamespot.com/penny-marko/4005-166306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166307/", + "id": 166307, + "name": "Emma Marko", + "site_detail_url": "https://comicvine.gamespot.com/emma-marko/4005-166307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166310/", + "id": 166310, + "name": "General Slocum", + "site_detail_url": "https://comicvine.gamespot.com/general-slocum/4005-166310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166354/", + "id": 166354, + "name": "Arakko ", + "site_detail_url": "https://comicvine.gamespot.com/arakko/4005-166354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166380/", + "id": 166380, + "name": "Gammon ", + "site_detail_url": "https://comicvine.gamespot.com/gammon/4005-166380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166494/", + "id": 166494, + "name": "Frank the Pug", + "site_detail_url": "https://comicvine.gamespot.com/frank-the-pug/4005-166494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166495/", + "id": 166495, + "name": "Edgar the Bug", + "site_detail_url": "https://comicvine.gamespot.com/edgar-the-bug/4005-166495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166496/", + "id": 166496, + "name": "Jack Jeebs", + "site_detail_url": "https://comicvine.gamespot.com/jack-jeebs/4005-166496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166497/", + "id": 166497, + "name": "Elle", + "site_detail_url": "https://comicvine.gamespot.com/elle/4005-166497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166502/", + "id": 166502, + "name": "Morgan Spetz", + "site_detail_url": "https://comicvine.gamespot.com/morgan-spetz/4005-166502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166630/", + "id": 166630, + "name": "Nurse Kelly", + "site_detail_url": "https://comicvine.gamespot.com/nurse-kelly/4005-166630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166631/", + "id": 166631, + "name": "Mrs. Krenzler", + "site_detail_url": "https://comicvine.gamespot.com/mrs-krenzler/4005-166631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166668/", + "id": 166668, + "name": "Frost Pharaoh ", + "site_detail_url": "https://comicvine.gamespot.com/frost-pharaoh/4005-166668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166673/", + "id": 166673, + "name": "Halcyon", + "site_detail_url": "https://comicvine.gamespot.com/halcyon/4005-166673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166742/", + "id": 166742, + "name": "Bemular", + "site_detail_url": "https://comicvine.gamespot.com/bemular/4005-166742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166743/", + "id": 166743, + "name": "Freyta Smyth", + "site_detail_url": "https://comicvine.gamespot.com/freyta-smyth/4005-166743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166744/", + "id": 166744, + "name": "Mart Mattin", + "site_detail_url": "https://comicvine.gamespot.com/mart-mattin/4005-166744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166745/", + "id": 166745, + "name": "Keeve Trennis", + "site_detail_url": "https://comicvine.gamespot.com/keeve-trennis/4005-166745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166746/", + "id": 166746, + "name": "Kanrii", + "site_detail_url": "https://comicvine.gamespot.com/kanrii/4005-166746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166747/", + "id": 166747, + "name": "Sskeer", + "site_detail_url": "https://comicvine.gamespot.com/sskeer/4005-166747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166748/", + "id": 166748, + "name": "Maru", + "site_detail_url": "https://comicvine.gamespot.com/maru/4005-166748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166749/", + "id": 166749, + "name": "Pra-Tre Veter", + "site_detail_url": "https://comicvine.gamespot.com/pra-tre-veter/4005-166749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166750/", + "id": 166750, + "name": "Avar Kriss", + "site_detail_url": "https://comicvine.gamespot.com/avar-kriss/4005-166750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166751/", + "id": 166751, + "name": "Marisol Hurtado-Ramos", + "site_detail_url": "https://comicvine.gamespot.com/marisol-hurtado-ramos/4005-166751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166845/", + "id": 166845, + "name": "Incendiary", + "site_detail_url": "https://comicvine.gamespot.com/incendiary/4005-166845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166846/", + "id": 166846, + "name": "Ampere", + "site_detail_url": "https://comicvine.gamespot.com/ampere/4005-166846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166847/", + "id": 166847, + "name": "Snakehead", + "site_detail_url": "https://comicvine.gamespot.com/snakehead/4005-166847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166889/", + "id": 166889, + "name": "Clone Commander Wolffe", + "site_detail_url": "https://comicvine.gamespot.com/clone-commander-wolffe/4005-166889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166949/", + "id": 166949, + "name": "Rachel MacGregor", + "site_detail_url": "https://comicvine.gamespot.com/rachel-macgregor/4005-166949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166956/", + "id": 166956, + "name": "Skadi", + "site_detail_url": "https://comicvine.gamespot.com/skadi/4005-166956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166971/", + "id": 166971, + "name": "Stormranger", + "site_detail_url": "https://comicvine.gamespot.com/stormranger/4005-166971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-166973/", + "id": 166973, + "name": "Benjamin Rabin", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-rabin/4005-166973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167073/", + "id": 167073, + "name": "Kuiil", + "site_detail_url": "https://comicvine.gamespot.com/kuiil/4005-167073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167087/", + "id": 167087, + "name": "9-Ball", + "site_detail_url": "https://comicvine.gamespot.com/9-ball/4005-167087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167097/", + "id": 167097, + "name": "Wen Delphis", + "site_detail_url": "https://comicvine.gamespot.com/wen-delphis/4005-167097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167100/", + "id": 167100, + "name": "Detective DiStefano", + "site_detail_url": "https://comicvine.gamespot.com/detective-distefano/4005-167100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167101/", + "id": 167101, + "name": "Detective Molina", + "site_detail_url": "https://comicvine.gamespot.com/detective-molina/4005-167101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167103/", + "id": 167103, + "name": "Skirn", + "site_detail_url": "https://comicvine.gamespot.com/skirn/4005-167103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167141/", + "id": 167141, + "name": "Professor Shecktor", + "site_detail_url": "https://comicvine.gamespot.com/professor-shecktor/4005-167141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167157/", + "id": 167157, + "name": "Bruce Andrews", + "site_detail_url": "https://comicvine.gamespot.com/bruce-andrews/4005-167157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167171/", + "id": 167171, + "name": "Bramble", + "site_detail_url": "https://comicvine.gamespot.com/bramble/4005-167171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167172/", + "id": 167172, + "name": "Fizzure", + "site_detail_url": "https://comicvine.gamespot.com/fizzure/4005-167172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167173/", + "id": 167173, + "name": "Flare ", + "site_detail_url": "https://comicvine.gamespot.com/flare/4005-167173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167174/", + "id": 167174, + "name": "Gnash", + "site_detail_url": "https://comicvine.gamespot.com/gnash/4005-167174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167178/", + "id": 167178, + "name": "Lowdown", + "site_detail_url": "https://comicvine.gamespot.com/lowdown/4005-167178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167180/", + "id": 167180, + "name": "Crackdown", + "site_detail_url": "https://comicvine.gamespot.com/crackdown/4005-167180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167181/", + "id": 167181, + "name": "Arc", + "site_detail_url": "https://comicvine.gamespot.com/arc/4005-167181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167182/", + "id": 167182, + "name": "Bass", + "site_detail_url": "https://comicvine.gamespot.com/bass/4005-167182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167183/", + "id": 167183, + "name": "Hook", + "site_detail_url": "https://comicvine.gamespot.com/hook/4005-167183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167184/", + "id": 167184, + "name": "Glaze", + "site_detail_url": "https://comicvine.gamespot.com/glaze/4005-167184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167185/", + "id": 167185, + "name": "Lava", + "site_detail_url": "https://comicvine.gamespot.com/lava/4005-167185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167186/", + "id": 167186, + "name": "Cubist", + "site_detail_url": "https://comicvine.gamespot.com/cubist/4005-167186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167187/", + "id": 167187, + "name": "Belle", + "site_detail_url": "https://comicvine.gamespot.com/belle/4005-167187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167188/", + "id": 167188, + "name": "Krunch", + "site_detail_url": "https://comicvine.gamespot.com/krunch/4005-167188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167213/", + "id": 167213, + "name": "Murmur", + "site_detail_url": "https://comicvine.gamespot.com/murmur/4005-167213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167214/", + "id": 167214, + "name": "Network", + "site_detail_url": "https://comicvine.gamespot.com/network/4005-167214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167215/", + "id": 167215, + "name": "Ripper", + "site_detail_url": "https://comicvine.gamespot.com/ripper/4005-167215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167216/", + "id": 167216, + "name": "Slime", + "site_detail_url": "https://comicvine.gamespot.com/slime/4005-167216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167217/", + "id": 167217, + "name": "Spike", + "site_detail_url": "https://comicvine.gamespot.com/spike/4005-167217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167218/", + "id": 167218, + "name": "Tailspin", + "site_detail_url": "https://comicvine.gamespot.com/tailspin/4005-167218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167219/", + "id": 167219, + "name": "T.K.O.", + "site_detail_url": "https://comicvine.gamespot.com/tko/4005-167219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167220/", + "id": 167220, + "name": "Triplex", + "site_detail_url": "https://comicvine.gamespot.com/triplex/4005-167220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167221/", + "id": 167221, + "name": "Vault", + "site_detail_url": "https://comicvine.gamespot.com/vault/4005-167221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167290/", + "id": 167290, + "name": "Blanch Sproull", + "site_detail_url": "https://comicvine.gamespot.com/blanch-sproull/4005-167290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167291/", + "id": 167291, + "name": "Mister Frosty", + "site_detail_url": "https://comicvine.gamespot.com/mister-frosty/4005-167291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167292/", + "id": 167292, + "name": "Fishhead", + "site_detail_url": "https://comicvine.gamespot.com/fishhead/4005-167292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167293/", + "id": 167293, + "name": "Shiny", + "site_detail_url": "https://comicvine.gamespot.com/shiny/4005-167293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167294/", + "id": 167294, + "name": "Reuben Brousseau", + "site_detail_url": "https://comicvine.gamespot.com/reuben-brousseau/4005-167294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167297/", + "id": 167297, + "name": "Marianna Stern", + "site_detail_url": "https://comicvine.gamespot.com/marianna-stern/4005-167297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167307/", + "id": 167307, + "name": "Silencer", + "site_detail_url": "https://comicvine.gamespot.com/silencer/4005-167307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167308/", + "id": 167308, + "name": "Scatterbrain", + "site_detail_url": "https://comicvine.gamespot.com/scatterbrain/4005-167308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167309/", + "id": 167309, + "name": "Rafe Michel", + "site_detail_url": "https://comicvine.gamespot.com/rafe-michel/4005-167309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167326/", + "id": 167326, + "name": "The Thing called It", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-called-it/4005-167326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167351/", + "id": 167351, + "name": "Victor Meachum", + "site_detail_url": "https://comicvine.gamespot.com/victor-meachum/4005-167351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167362/", + "id": 167362, + "name": "Augustine du Lac", + "site_detail_url": "https://comicvine.gamespot.com/augustine-du-lac/4005-167362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167413/", + "id": 167413, + "name": "Lula Talisola", + "site_detail_url": "https://comicvine.gamespot.com/lula-talisola/4005-167413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167417/", + "id": 167417, + "name": "Torban Buck", + "site_detail_url": "https://comicvine.gamespot.com/torban-buck/4005-167417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167466/", + "id": 167466, + "name": "Robert", + "site_detail_url": "https://comicvine.gamespot.com/robert/4005-167466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167524/", + "id": 167524, + "name": "Taegukgi", + "site_detail_url": "https://comicvine.gamespot.com/taegukgi/4005-167524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167525/", + "id": 167525, + "name": "Alisha Whitley", + "site_detail_url": "https://comicvine.gamespot.com/alisha-whitley/4005-167525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167768/", + "id": 167768, + "name": "Noreen Noolan", + "site_detail_url": "https://comicvine.gamespot.com/noreen-noolan/4005-167768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167769/", + "id": 167769, + "name": "Quan Yin", + "site_detail_url": "https://comicvine.gamespot.com/quan-yin/4005-167769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167770/", + "id": 167770, + "name": "Alvin Tarleton", + "site_detail_url": "https://comicvine.gamespot.com/alvin-tarleton/4005-167770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167771/", + "id": 167771, + "name": "Ziigwan", + "site_detail_url": "https://comicvine.gamespot.com/ziigwan/4005-167771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167781/", + "id": 167781, + "name": "Vulpine", + "site_detail_url": "https://comicvine.gamespot.com/vulpine/4005-167781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167791/", + "id": 167791, + "name": "Bulldog", + "site_detail_url": "https://comicvine.gamespot.com/bulldog/4005-167791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167792/", + "id": 167792, + "name": "Doc Croc", + "site_detail_url": "https://comicvine.gamespot.com/doc-croc/4005-167792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167811/", + "id": 167811, + "name": "Jenni Saito", + "site_detail_url": "https://comicvine.gamespot.com/jenni-saito/4005-167811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167812/", + "id": 167812, + "name": "Harley Keener", + "site_detail_url": "https://comicvine.gamespot.com/harley-keener/4005-167812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167834/", + "id": 167834, + "name": "Old Sharky", + "site_detail_url": "https://comicvine.gamespot.com/old-sharky/4005-167834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167835/", + "id": 167835, + "name": "Mud Pi", + "site_detail_url": "https://comicvine.gamespot.com/mud-pi/4005-167835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167884/", + "id": 167884, + "name": "Bianca Demonico ", + "site_detail_url": "https://comicvine.gamespot.com/bianca-demonico/4005-167884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167971/", + "id": 167971, + "name": "Cyclops-Lass", + "site_detail_url": "https://comicvine.gamespot.com/cyclops-lass/4005-167971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167972/", + "id": 167972, + "name": "Cherub", + "site_detail_url": "https://comicvine.gamespot.com/cherub/4005-167972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167973/", + "id": 167973, + "name": "Marvel Guy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-guy/4005-167973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167974/", + "id": 167974, + "name": "Gimmick", + "site_detail_url": "https://comicvine.gamespot.com/gimmick/4005-167974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167975/", + "id": 167975, + "name": "Daycrawler", + "site_detail_url": "https://comicvine.gamespot.com/daycrawler/4005-167975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167994/", + "id": 167994, + "name": "Father Everett", + "site_detail_url": "https://comicvine.gamespot.com/father-everett/4005-167994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-167995/", + "id": 167995, + "name": "Robert McKenzie", + "site_detail_url": "https://comicvine.gamespot.com/robert-mckenzie/4005-167995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168029/", + "id": 168029, + "name": "Iblis", + "site_detail_url": "https://comicvine.gamespot.com/iblis/4005-168029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168080/", + "id": 168080, + "name": "Nexus", + "site_detail_url": "https://comicvine.gamespot.com/nexus/4005-168080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168169/", + "id": 168169, + "name": "Crime-Wave", + "site_detail_url": "https://comicvine.gamespot.com/crime-wave/4005-168169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168189/", + "id": 168189, + "name": "Low Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/low-evolutionary/4005-168189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168193/", + "id": 168193, + "name": "Selwyn James", + "site_detail_url": "https://comicvine.gamespot.com/selwyn-james/4005-168193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168206/", + "id": 168206, + "name": "Animal", + "site_detail_url": "https://comicvine.gamespot.com/animal/4005-168206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168207/", + "id": 168207, + "name": "Baby Jack", + "site_detail_url": "https://comicvine.gamespot.com/baby-jack/4005-168207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168210/", + "id": 168210, + "name": "Gabriel Cruz", + "site_detail_url": "https://comicvine.gamespot.com/gabriel-cruz/4005-168210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168212/", + "id": 168212, + "name": "Ariole Yu", + "site_detail_url": "https://comicvine.gamespot.com/ariole-yu/4005-168212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168231/", + "id": 168231, + "name": "Lady-Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/lady-man-thing/4005-168231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168286/", + "id": 168286, + "name": "Harrower", + "site_detail_url": "https://comicvine.gamespot.com/harrower/4005-168286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168287/", + "id": 168287, + "name": "Volcanna", + "site_detail_url": "https://comicvine.gamespot.com/volcanna/4005-168287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168288/", + "id": 168288, + "name": "Lady Shimmering Lights", + "site_detail_url": "https://comicvine.gamespot.com/lady-shimmering-lights/4005-168288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168289/", + "id": 168289, + "name": "Craig", + "site_detail_url": "https://comicvine.gamespot.com/craig/4005-168289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168300/", + "id": 168300, + "name": "Saya Ishii", + "site_detail_url": "https://comicvine.gamespot.com/saya-ishii/4005-168300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168313/", + "id": 168313, + "name": "Mason Eckhart", + "site_detail_url": "https://comicvine.gamespot.com/mason-eckhart/4005-168313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168314/", + "id": 168314, + "name": "Dr. Paul Breedlove", + "site_detail_url": "https://comicvine.gamespot.com/dr-paul-breedlove/4005-168314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168349/", + "id": 168349, + "name": "Foreverbush Man", + "site_detail_url": "https://comicvine.gamespot.com/foreverbush-man/4005-168349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168368/", + "id": 168368, + "name": "Deadpool the Duck", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-duck/4005-168368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168392/", + "id": 168392, + "name": "Farool", + "site_detail_url": "https://comicvine.gamespot.com/farool/4005-168392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168393/", + "id": 168393, + "name": "Naru-Li", + "site_detail_url": "https://comicvine.gamespot.com/naru-li/4005-168393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168394/", + "id": 168394, + "name": "Yohnic", + "site_detail_url": "https://comicvine.gamespot.com/yohnic/4005-168394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168395/", + "id": 168395, + "name": "Threen", + "site_detail_url": "https://comicvine.gamespot.com/threen/4005-168395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168396/", + "id": 168396, + "name": "Kaylash", + "site_detail_url": "https://comicvine.gamespot.com/kaylash/4005-168396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168397/", + "id": 168397, + "name": "Banti", + "site_detail_url": "https://comicvine.gamespot.com/banti/4005-168397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168471/", + "id": 168471, + "name": "Moon Knight 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-1000000-bc/4005-168471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168478/", + "id": 168478, + "name": "Meiwei", + "site_detail_url": "https://comicvine.gamespot.com/meiwei/4005-168478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168479/", + "id": 168479, + "name": "Heng the Insurgent", + "site_detail_url": "https://comicvine.gamespot.com/heng-the-insurgent/4005-168479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168485/", + "id": 168485, + "name": "Ricardo Jones", + "site_detail_url": "https://comicvine.gamespot.com/ricardo-jones/4005-168485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168486/", + "id": 168486, + "name": "Imri Cantaros", + "site_detail_url": "https://comicvine.gamespot.com/imri-cantaros/4005-168486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168487/", + "id": 168487, + "name": "Vernestra Rwoh", + "site_detail_url": "https://comicvine.gamespot.com/vernestra-rwoh/4005-168487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168488/", + "id": 168488, + "name": "OrbaLin", + "site_detail_url": "https://comicvine.gamespot.com/orbalin/4005-168488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168489/", + "id": 168489, + "name": "Kalo Sulman", + "site_detail_url": "https://comicvine.gamespot.com/kalo-sulman/4005-168489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168506/", + "id": 168506, + "name": "Chief Hanson", + "site_detail_url": "https://comicvine.gamespot.com/chief-hanson/4005-168506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168591/", + "id": 168591, + "name": "Go-Getter", + "site_detail_url": "https://comicvine.gamespot.com/go-getter/4005-168591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168592/", + "id": 168592, + "name": "Press-On", + "site_detail_url": "https://comicvine.gamespot.com/press-on/4005-168592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168615/", + "id": 168615, + "name": "Aaron Heller", + "site_detail_url": "https://comicvine.gamespot.com/aaron-heller/4005-168615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168634/", + "id": 168634, + "name": "Exum Jermit", + "site_detail_url": "https://comicvine.gamespot.com/exum-jermit/4005-168634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168678/", + "id": 168678, + "name": "Dr. List", + "site_detail_url": "https://comicvine.gamespot.com/dr-list/4005-168678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168679/", + "id": 168679, + "name": "Councilman Yen", + "site_detail_url": "https://comicvine.gamespot.com/councilman-yen/4005-168679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168680/", + "id": 168680, + "name": "Mark Basso", + "site_detail_url": "https://comicvine.gamespot.com/mark-basso/4005-168680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168681/", + "id": 168681, + "name": "Nicholas Cooper", + "site_detail_url": "https://comicvine.gamespot.com/nicholas-cooper/4005-168681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168682/", + "id": 168682, + "name": "Mark Smith", + "site_detail_url": "https://comicvine.gamespot.com/mark-smith/4005-168682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168699/", + "id": 168699, + "name": "Rūna", + "site_detail_url": "https://comicvine.gamespot.com/runa/4005-168699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168782/", + "id": 168782, + "name": "Decathlon", + "site_detail_url": "https://comicvine.gamespot.com/decathlon/4005-168782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168798/", + "id": 168798, + "name": "April Manning", + "site_detail_url": "https://comicvine.gamespot.com/april-manning/4005-168798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168824/", + "id": 168824, + "name": "Bile", + "site_detail_url": "https://comicvine.gamespot.com/bile/4005-168824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168826/", + "id": 168826, + "name": "Naut", + "site_detail_url": "https://comicvine.gamespot.com/naut/4005-168826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168827/", + "id": 168827, + "name": "Py-Rite", + "site_detail_url": "https://comicvine.gamespot.com/py-rite/4005-168827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168828/", + "id": 168828, + "name": "Fizzle", + "site_detail_url": "https://comicvine.gamespot.com/fizzle/4005-168828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168829/", + "id": 168829, + "name": "Sneko", + "site_detail_url": "https://comicvine.gamespot.com/sneko/4005-168829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168830/", + "id": 168830, + "name": "Toby Robson", + "site_detail_url": "https://comicvine.gamespot.com/toby-robson/4005-168830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168831/", + "id": 168831, + "name": "Wezel", + "site_detail_url": "https://comicvine.gamespot.com/wezel/4005-168831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168832/", + "id": 168832, + "name": "Khondor", + "site_detail_url": "https://comicvine.gamespot.com/khondor/4005-168832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168833/", + "id": 168833, + "name": "Lyga", + "site_detail_url": "https://comicvine.gamespot.com/lyga/4005-168833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168834/", + "id": 168834, + "name": "HYDRA Agent", + "site_detail_url": "https://comicvine.gamespot.com/hydra-agent/4005-168834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168835/", + "id": 168835, + "name": "Khora of the Burning Heart", + "site_detail_url": "https://comicvine.gamespot.com/khora-of-the-burning-heart/4005-168835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168837/", + "id": 168837, + "name": "Jackie Chopra", + "site_detail_url": "https://comicvine.gamespot.com/jackie-chopra/4005-168837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168838/", + "id": 168838, + "name": "Phillip", + "site_detail_url": "https://comicvine.gamespot.com/phillip/4005-168838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168839/", + "id": 168839, + "name": "Boar-Man", + "site_detail_url": "https://comicvine.gamespot.com/boar-man/4005-168839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168840/", + "id": 168840, + "name": "Elephant-Man", + "site_detail_url": "https://comicvine.gamespot.com/elephant-man/4005-168840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168848/", + "id": 168848, + "name": "André Sims", + "site_detail_url": "https://comicvine.gamespot.com/andre-sims/4005-168848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168849/", + "id": 168849, + "name": "Miriam Blakemoore ", + "site_detail_url": "https://comicvine.gamespot.com/miriam-blakemoore/4005-168849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168907/", + "id": 168907, + "name": "Dr. Dentist", + "site_detail_url": "https://comicvine.gamespot.com/dr-dentist/4005-168907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168908/", + "id": 168908, + "name": "Blaze", + "site_detail_url": "https://comicvine.gamespot.com/blaze/4005-168908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168931/", + "id": 168931, + "name": "Warbird", + "site_detail_url": "https://comicvine.gamespot.com/warbird/4005-168931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168932/", + "id": 168932, + "name": "Kevin Schumer", + "site_detail_url": "https://comicvine.gamespot.com/kevin-schumer/4005-168932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168933/", + "id": 168933, + "name": "Threadneedle", + "site_detail_url": "https://comicvine.gamespot.com/threadneedle/4005-168933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168946/", + "id": 168946, + "name": "Zheng Yi", + "site_detail_url": "https://comicvine.gamespot.com/zheng-yi/4005-168946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168961/", + "id": 168961, + "name": "The Bumbler", + "site_detail_url": "https://comicvine.gamespot.com/the-bumbler/4005-168961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168965/", + "id": 168965, + "name": "Castor", + "site_detail_url": "https://comicvine.gamespot.com/castor/4005-168965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168966/", + "id": 168966, + "name": "Pollux", + "site_detail_url": "https://comicvine.gamespot.com/pollux/4005-168966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168969/", + "id": 168969, + "name": "Takahashi", + "site_detail_url": "https://comicvine.gamespot.com/takahashi/4005-168969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168971/", + "id": 168971, + "name": "Brother Staff", + "site_detail_url": "https://comicvine.gamespot.com/brother-staff/4005-168971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168973/", + "id": 168973, + "name": "Mackenzie Davies", + "site_detail_url": "https://comicvine.gamespot.com/mackenzie-davies/4005-168973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168975/", + "id": 168975, + "name": "Agent Johnson", + "site_detail_url": "https://comicvine.gamespot.com/agent-johnson/4005-168975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168976/", + "id": 168976, + "name": "Agent Peterson", + "site_detail_url": "https://comicvine.gamespot.com/agent-peterson/4005-168976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168988/", + "id": 168988, + "name": "Explodey Boy", + "site_detail_url": "https://comicvine.gamespot.com/explodey-boy/4005-168988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168990/", + "id": 168990, + "name": "Tony Stark (A.I.)", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-ai/4005-168990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168991/", + "id": 168991, + "name": "Lucid", + "site_detail_url": "https://comicvine.gamespot.com/lucid/4005-168991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-168992/", + "id": 168992, + "name": "Doc", + "site_detail_url": "https://comicvine.gamespot.com/doc/4005-168992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169020/", + "id": 169020, + "name": "Rasputin", + "site_detail_url": "https://comicvine.gamespot.com/rasputin/4005-169020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169021/", + "id": 169021, + "name": "Don Margello", + "site_detail_url": "https://comicvine.gamespot.com/don-margello/4005-169021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169022/", + "id": 169022, + "name": "Big Jesus", + "site_detail_url": "https://comicvine.gamespot.com/big-jesus/4005-169022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169023/", + "id": 169023, + "name": "Francesco Drago", + "site_detail_url": "https://comicvine.gamespot.com/francesco-drago/4005-169023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169030/", + "id": 169030, + "name": "Musty the Mustang", + "site_detail_url": "https://comicvine.gamespot.com/musty-the-mustang/4005-169030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169031/", + "id": 169031, + "name": "Black Rabbit", + "site_detail_url": "https://comicvine.gamespot.com/black-rabbit/4005-169031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169051/", + "id": 169051, + "name": "Lost", + "site_detail_url": "https://comicvine.gamespot.com/lost/4005-169051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169056/", + "id": 169056, + "name": "Salami Man", + "site_detail_url": "https://comicvine.gamespot.com/salami-man/4005-169056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169080/", + "id": 169080, + "name": "Katya Belyakov", + "site_detail_url": "https://comicvine.gamespot.com/katya-belyakov/4005-169080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169104/", + "id": 169104, + "name": "BB-9E", + "site_detail_url": "https://comicvine.gamespot.com/bb-9e/4005-169104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169105/", + "id": 169105, + "name": "R2-A3", + "site_detail_url": "https://comicvine.gamespot.com/r2-a3/4005-169105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169107/", + "id": 169107, + "name": "Michael Dumas", + "site_detail_url": "https://comicvine.gamespot.com/michael-dumas/4005-169107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169109/", + "id": 169109, + "name": "Doc Ragon", + "site_detail_url": "https://comicvine.gamespot.com/doc-ragon/4005-169109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169110/", + "id": 169110, + "name": "Wyrmen Lictor", + "site_detail_url": "https://comicvine.gamespot.com/wyrmen-lictor/4005-169110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169122/", + "id": 169122, + "name": "Maston-Dar", + "site_detail_url": "https://comicvine.gamespot.com/maston-dar/4005-169122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169129/", + "id": 169129, + "name": "Rash", + "site_detail_url": "https://comicvine.gamespot.com/rash/4005-169129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169135/", + "id": 169135, + "name": "Rusty Rumple", + "site_detail_url": "https://comicvine.gamespot.com/rusty-rumple/4005-169135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169241/", + "id": 169241, + "name": "Dark Paladin", + "site_detail_url": "https://comicvine.gamespot.com/dark-paladin/4005-169241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169250/", + "id": 169250, + "name": "Della Mason", + "site_detail_url": "https://comicvine.gamespot.com/della-mason/4005-169250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169251/", + "id": 169251, + "name": "The Hierophant", + "site_detail_url": "https://comicvine.gamespot.com/the-hierophant/4005-169251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169298/", + "id": 169298, + "name": "DD-BD", + "site_detail_url": "https://comicvine.gamespot.com/dd-bd/4005-169298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169306/", + "id": 169306, + "name": "Maximilian Fargas", + "site_detail_url": "https://comicvine.gamespot.com/maximilian-fargas/4005-169306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169307/", + "id": 169307, + "name": "Henry Balkan", + "site_detail_url": "https://comicvine.gamespot.com/henry-balkan/4005-169307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169321/", + "id": 169321, + "name": "Dum-E", + "site_detail_url": "https://comicvine.gamespot.com/dum-e/4005-169321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169415/", + "id": 169415, + "name": "Philip Stacy", + "site_detail_url": "https://comicvine.gamespot.com/philip-stacy/4005-169415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169416/", + "id": 169416, + "name": "Howard Stacy", + "site_detail_url": "https://comicvine.gamespot.com/howard-stacy/4005-169416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169417/", + "id": 169417, + "name": "Simon Stacy", + "site_detail_url": "https://comicvine.gamespot.com/simon-stacy/4005-169417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169418/", + "id": 169418, + "name": "Rajit Ratha", + "site_detail_url": "https://comicvine.gamespot.com/rajit-ratha/4005-169418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169419/", + "id": 169419, + "name": "Missy Kallenback", + "site_detail_url": "https://comicvine.gamespot.com/missy-kallenback/4005-169419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169439/", + "id": 169439, + "name": "Doctor Fog", + "site_detail_url": "https://comicvine.gamespot.com/doctor-fog/4005-169439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169445/", + "id": 169445, + "name": "Estala Maru", + "site_detail_url": "https://comicvine.gamespot.com/estala-maru/4005-169445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169471/", + "id": 169471, + "name": "Fix-It Man", + "site_detail_url": "https://comicvine.gamespot.com/fix-it-man/4005-169471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169472/", + "id": 169472, + "name": "Dan Lewis", + "site_detail_url": "https://comicvine.gamespot.com/dan-lewis/4005-169472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169473/", + "id": 169473, + "name": "Mrs. Chen", + "site_detail_url": "https://comicvine.gamespot.com/mrs-chen/4005-169473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169474/", + "id": 169474, + "name": "Trevor Slattery", + "site_detail_url": "https://comicvine.gamespot.com/trevor-slattery/4005-169474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169498/", + "id": 169498, + "name": "Redcap", + "site_detail_url": "https://comicvine.gamespot.com/redcap/4005-169498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169499/", + "id": 169499, + "name": "Alice", + "site_detail_url": "https://comicvine.gamespot.com/alice/4005-169499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169500/", + "id": 169500, + "name": "Butch", + "site_detail_url": "https://comicvine.gamespot.com/butch/4005-169500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169502/", + "id": 169502, + "name": "King Wild Man", + "site_detail_url": "https://comicvine.gamespot.com/king-wild-man/4005-169502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169503/", + "id": 169503, + "name": "Jodie Tarleton", + "site_detail_url": "https://comicvine.gamespot.com/jodie-tarleton/4005-169503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169504/", + "id": 169504, + "name": "Lou Tarleton", + "site_detail_url": "https://comicvine.gamespot.com/lou-tarleton/4005-169504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169505/", + "id": 169505, + "name": "Melissa Tarleton", + "site_detail_url": "https://comicvine.gamespot.com/melissa-tarleton/4005-169505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169522/", + "id": 169522, + "name": "Smokey", + "site_detail_url": "https://comicvine.gamespot.com/smokey/4005-169522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169523/", + "id": 169523, + "name": "Lily", + "site_detail_url": "https://comicvine.gamespot.com/lily/4005-169523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169524/", + "id": 169524, + "name": "Sammy", + "site_detail_url": "https://comicvine.gamespot.com/sammy/4005-169524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169541/", + "id": 169541, + "name": "Rudy Gillespie", + "site_detail_url": "https://comicvine.gamespot.com/rudy-gillespie/4005-169541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169542/", + "id": 169542, + "name": "Regina Hagen", + "site_detail_url": "https://comicvine.gamespot.com/regina-hagen/4005-169542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169543/", + "id": 169543, + "name": "More", + "site_detail_url": "https://comicvine.gamespot.com/more/4005-169543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169556/", + "id": 169556, + "name": "Marchion Ro", + "site_detail_url": "https://comicvine.gamespot.com/marchion-ro/4005-169556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169558/", + "id": 169558, + "name": "Assessor", + "site_detail_url": "https://comicvine.gamespot.com/assessor/4005-169558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169578/", + "id": 169578, + "name": "Amy Amanda Allen", + "site_detail_url": "https://comicvine.gamespot.com/amy-amanda-allen/4005-169578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169701/", + "id": 169701, + "name": "Isabela Alvarez", + "site_detail_url": "https://comicvine.gamespot.com/isabela-alvarez/4005-169701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169702/", + "id": 169702, + "name": "Horuz", + "site_detail_url": "https://comicvine.gamespot.com/horuz/4005-169702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169703/", + "id": 169703, + "name": "Maskless Sakaaran", + "site_detail_url": "https://comicvine.gamespot.com/maskless-sakaaran/4005-169703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169806/", + "id": 169806, + "name": "Really Really Big Man", + "site_detail_url": "https://comicvine.gamespot.com/really-really-big-man/4005-169806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-169879/", + "id": 169879, + "name": "Quantum", + "site_detail_url": "https://comicvine.gamespot.com/quantum/4005-169879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170000/", + "id": 170000, + "name": "Chief Morris", + "site_detail_url": "https://comicvine.gamespot.com/chief-morris/4005-170000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170135/", + "id": 170135, + "name": "Sundance", + "site_detail_url": "https://comicvine.gamespot.com/sundance/4005-170135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170158/", + "id": 170158, + "name": "A Man Named Frank", + "site_detail_url": "https://comicvine.gamespot.com/a-man-named-frank/4005-170158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170174/", + "id": 170174, + "name": "Spider-Bot", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot/4005-170174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170176/", + "id": 170176, + "name": "Bren Waters", + "site_detail_url": "https://comicvine.gamespot.com/bren-waters/4005-170176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170184/", + "id": 170184, + "name": "Tuumar", + "site_detail_url": "https://comicvine.gamespot.com/tuumar/4005-170184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170185/", + "id": 170185, + "name": "Zeneg", + "site_detail_url": "https://comicvine.gamespot.com/zeneg/4005-170185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170192/", + "id": 170192, + "name": "Lactuca the Knower", + "site_detail_url": "https://comicvine.gamespot.com/lactuca-the-knower/4005-170192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170193/", + "id": 170193, + "name": "Sobunar of the Depths", + "site_detail_url": "https://comicvine.gamespot.com/sobunar-of-the-depths/4005-170193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170194/", + "id": 170194, + "name": "Xilo", + "site_detail_url": "https://comicvine.gamespot.com/xilo/4005-170194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170195/", + "id": 170195, + "name": "Ariel", + "site_detail_url": "https://comicvine.gamespot.com/ariel/4005-170195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170196/", + "id": 170196, + "name": "Ibbar", + "site_detail_url": "https://comicvine.gamespot.com/ibbar/4005-170196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170197/", + "id": 170197, + "name": "Kabal", + "site_detail_url": "https://comicvine.gamespot.com/kabal/4005-170197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170198/", + "id": 170198, + "name": "Zargus", + "site_detail_url": "https://comicvine.gamespot.com/zargus/4005-170198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170199/", + "id": 170199, + "name": "Madoxx", + "site_detail_url": "https://comicvine.gamespot.com/madoxx/4005-170199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170206/", + "id": 170206, + "name": "Katsuo Sasaki", + "site_detail_url": "https://comicvine.gamespot.com/katsuo-sasaki/4005-170206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170312/", + "id": 170312, + "name": "Stockpile", + "site_detail_url": "https://comicvine.gamespot.com/stockpile/4005-170312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170318/", + "id": 170318, + "name": "The Treasure", + "site_detail_url": "https://comicvine.gamespot.com/the-treasure/4005-170318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170319/", + "id": 170319, + "name": "Mark Miller", + "site_detail_url": "https://comicvine.gamespot.com/mark-miller/4005-170319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170320/", + "id": 170320, + "name": "McCabe", + "site_detail_url": "https://comicvine.gamespot.com/mccabe/4005-170320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170334/", + "id": 170334, + "name": "Jean-Claude Lauziere", + "site_detail_url": "https://comicvine.gamespot.com/jean-claude-lauziere/4005-170334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170381/", + "id": 170381, + "name": "Dr. James Harvey", + "site_detail_url": "https://comicvine.gamespot.com/dr-james-harvey/4005-170381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170383/", + "id": 170383, + "name": "Carrigan Crittenden", + "site_detail_url": "https://comicvine.gamespot.com/carrigan-crittenden/4005-170383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170384/", + "id": 170384, + "name": "Amelia Harvey", + "site_detail_url": "https://comicvine.gamespot.com/amelia-harvey/4005-170384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170387/", + "id": 170387, + "name": "Father Guido Sarducci", + "site_detail_url": "https://comicvine.gamespot.com/father-guido-sarducci/4005-170387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170407/", + "id": 170407, + "name": "Bokku the Hutt", + "site_detail_url": "https://comicvine.gamespot.com/bokku-the-hutt/4005-170407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170409/", + "id": 170409, + "name": "Galura", + "site_detail_url": "https://comicvine.gamespot.com/galura/4005-170409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170410/", + "id": 170410, + "name": "Somnus", + "site_detail_url": "https://comicvine.gamespot.com/somnus/4005-170410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170466/", + "id": 170466, + "name": "The General", + "site_detail_url": "https://comicvine.gamespot.com/the-general/4005-170466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170467/", + "id": 170467, + "name": "Auntie Ante", + "site_detail_url": "https://comicvine.gamespot.com/auntie-ante/4005-170467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170468/", + "id": 170468, + "name": "Mr. Enigma", + "site_detail_url": "https://comicvine.gamespot.com/mr-enigma/4005-170468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170469/", + "id": 170469, + "name": "Gun-R II", + "site_detail_url": "https://comicvine.gamespot.com/gun-r-ii/4005-170469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170473/", + "id": 170473, + "name": "Aaron Fischer", + "site_detail_url": "https://comicvine.gamespot.com/aaron-fischer/4005-170473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170476/", + "id": 170476, + "name": "Carrie", + "site_detail_url": "https://comicvine.gamespot.com/carrie/4005-170476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170503/", + "id": 170503, + "name": "Queen Ursula", + "site_detail_url": "https://comicvine.gamespot.com/queen-ursula/4005-170503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170607/", + "id": 170607, + "name": "Ebann Drake", + "site_detail_url": "https://comicvine.gamespot.com/ebann-drake/4005-170607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170609/", + "id": 170609, + "name": "Mongdal", + "site_detail_url": "https://comicvine.gamespot.com/mongdal/4005-170609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170611/", + "id": 170611, + "name": "Lady Iron Fan", + "site_detail_url": "https://comicvine.gamespot.com/lady-iron-fan/4005-170611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170633/", + "id": 170633, + "name": "Genosha", + "site_detail_url": "https://comicvine.gamespot.com/genosha/4005-170633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170760/", + "id": 170760, + "name": "Master Roshi", + "site_detail_url": "https://comicvine.gamespot.com/master-roshi/4005-170760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170813/", + "id": 170813, + "name": "Iris Humphries", + "site_detail_url": "https://comicvine.gamespot.com/iris-humphries/4005-170813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170814/", + "id": 170814, + "name": "Danny Cruz", + "site_detail_url": "https://comicvine.gamespot.com/danny-cruz/4005-170814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170825/", + "id": 170825, + "name": "Deathstick", + "site_detail_url": "https://comicvine.gamespot.com/deathstick/4005-170825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170827/", + "id": 170827, + "name": "Feilong", + "site_detail_url": "https://comicvine.gamespot.com/feilong/4005-170827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170828/", + "id": 170828, + "name": "Cordyceps Jones", + "site_detail_url": "https://comicvine.gamespot.com/cordyceps-jones/4005-170828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170829/", + "id": 170829, + "name": "Spimvar", + "site_detail_url": "https://comicvine.gamespot.com/spimvar/4005-170829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-170831/", + "id": 170831, + "name": "Peter Krane", + "site_detail_url": "https://comicvine.gamespot.com/peter-krane/4005-170831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171060/", + "id": 171060, + "name": "Aram Baksh", + "site_detail_url": "https://comicvine.gamespot.com/aram-baksh/4005-171060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171071/", + "id": 171071, + "name": "Kevin Mulhearn", + "site_detail_url": "https://comicvine.gamespot.com/kevin-mulhearn/4005-171071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171072/", + "id": 171072, + "name": "Vicki Reppion", + "site_detail_url": "https://comicvine.gamespot.com/vicki-reppion/4005-171072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171129/", + "id": 171129, + "name": "Cutter Vasquez", + "site_detail_url": "https://comicvine.gamespot.com/cutter-vasquez/4005-171129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171159/", + "id": 171159, + "name": "President McKenna", + "site_detail_url": "https://comicvine.gamespot.com/president-mckenna/4005-171159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171161/", + "id": 171161, + "name": "Ronny Drake", + "site_detail_url": "https://comicvine.gamespot.com/ronny-drake/4005-171161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171196/", + "id": 171196, + "name": "Mrs. Tarleton", + "site_detail_url": "https://comicvine.gamespot.com/mrs-tarleton/4005-171196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171197/", + "id": 171197, + "name": "Dragon Shade", + "site_detail_url": "https://comicvine.gamespot.com/dragon-shade/4005-171197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171239/", + "id": 171239, + "name": "Deva Lompop", + "site_detail_url": "https://comicvine.gamespot.com/deva-lompop/4005-171239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171241/", + "id": 171241, + "name": "Samhain", + "site_detail_url": "https://comicvine.gamespot.com/samhain/4005-171241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171242/", + "id": 171242, + "name": "Lughnasa", + "site_detail_url": "https://comicvine.gamespot.com/lughnasa/4005-171242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171243/", + "id": 171243, + "name": "Beltane", + "site_detail_url": "https://comicvine.gamespot.com/beltane/4005-171243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171245/", + "id": 171245, + "name": "Mindspinner", + "site_detail_url": "https://comicvine.gamespot.com/mindspinner/4005-171245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171246/", + "id": 171246, + "name": "Selim", + "site_detail_url": "https://comicvine.gamespot.com/selim/4005-171246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171247/", + "id": 171247, + "name": "Shift", + "site_detail_url": "https://comicvine.gamespot.com/shift/4005-171247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171290/", + "id": 171290, + "name": "Nichelle Wright", + "site_detail_url": "https://comicvine.gamespot.com/nichelle-wright/4005-171290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171291/", + "id": 171291, + "name": "Kappa", + "site_detail_url": "https://comicvine.gamespot.com/kappa/4005-171291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171292/", + "id": 171292, + "name": "Leo", + "site_detail_url": "https://comicvine.gamespot.com/leo/4005-171292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171293/", + "id": 171293, + "name": "Brutha Nature", + "site_detail_url": "https://comicvine.gamespot.com/brutha-nature/4005-171293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171354/", + "id": 171354, + "name": "Orla Jareni", + "site_detail_url": "https://comicvine.gamespot.com/orla-jareni/4005-171354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171370/", + "id": 171370, + "name": "Sister Staff", + "site_detail_url": "https://comicvine.gamespot.com/sister-staff/4005-171370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171413/", + "id": 171413, + "name": "Mike Murdock", + "site_detail_url": "https://comicvine.gamespot.com/mike-murdock/4005-171413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171414/", + "id": 171414, + "name": "Butch Pharris", + "site_detail_url": "https://comicvine.gamespot.com/butch-pharris/4005-171414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171541/", + "id": 171541, + "name": "Gabriela Lopez", + "site_detail_url": "https://comicvine.gamespot.com/gabriela-lopez/4005-171541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171542/", + "id": 171542, + "name": "X-24", + "site_detail_url": "https://comicvine.gamespot.com/x-24/4005-171542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171558/", + "id": 171558, + "name": "Sevyr Blackmore", + "site_detail_url": "https://comicvine.gamespot.com/sevyr-blackmore/4005-171558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171572/", + "id": 171572, + "name": "Bracken", + "site_detail_url": "https://comicvine.gamespot.com/bracken/4005-171572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171593/", + "id": 171593, + "name": "Elizabeth Reston", + "site_detail_url": "https://comicvine.gamespot.com/elizabeth-reston/4005-171593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171594/", + "id": 171594, + "name": "Skootch", + "site_detail_url": "https://comicvine.gamespot.com/skootch/4005-171594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171617/", + "id": 171617, + "name": "Imbolc", + "site_detail_url": "https://comicvine.gamespot.com/imbolc/4005-171617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171618/", + "id": 171618, + "name": "Mr. Kenny", + "site_detail_url": "https://comicvine.gamespot.com/mr-kenny/4005-171618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171640/", + "id": 171640, + "name": "Cohmac Vitus", + "site_detail_url": "https://comicvine.gamespot.com/cohmac-vitus/4005-171640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171641/", + "id": 171641, + "name": "Reath Silas", + "site_detail_url": "https://comicvine.gamespot.com/reath-silas/4005-171641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171642/", + "id": 171642, + "name": "Myarga", + "site_detail_url": "https://comicvine.gamespot.com/myarga/4005-171642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171643/", + "id": 171643, + "name": "Dr. Bloodroot", + "site_detail_url": "https://comicvine.gamespot.com/dr-bloodroot/4005-171643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171719/", + "id": 171719, + "name": "Reese", + "site_detail_url": "https://comicvine.gamespot.com/reese/4005-171719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171732/", + "id": 171732, + "name": "Hunter's Moon", + "site_detail_url": "https://comicvine.gamespot.com/hunters-moon/4005-171732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171739/", + "id": 171739, + "name": "Monica Sellers", + "site_detail_url": "https://comicvine.gamespot.com/monica-sellers/4005-171739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171740/", + "id": 171740, + "name": "Julia ", + "site_detail_url": "https://comicvine.gamespot.com/julia/4005-171740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171741/", + "id": 171741, + "name": "Liana ", + "site_detail_url": "https://comicvine.gamespot.com/liana/4005-171741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171742/", + "id": 171742, + "name": "Jersey Devil", + "site_detail_url": "https://comicvine.gamespot.com/jersey-devil/4005-171742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171751/", + "id": 171751, + "name": "Canoness Veridyan", + "site_detail_url": "https://comicvine.gamespot.com/canoness-veridyan/4005-171751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171752/", + "id": 171752, + "name": "Rose Roche", + "site_detail_url": "https://comicvine.gamespot.com/rose-roche/4005-171752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171768/", + "id": 171768, + "name": "Diatrice Alraune", + "site_detail_url": "https://comicvine.gamespot.com/diatrice-alraune/4005-171768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171807/", + "id": 171807, + "name": "Guilded Saint", + "site_detail_url": "https://comicvine.gamespot.com/guilded-saint/4005-171807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171818/", + "id": 171818, + "name": "Multitude", + "site_detail_url": "https://comicvine.gamespot.com/multitude/4005-171818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171819/", + "id": 171819, + "name": "Joe Gomez", + "site_detail_url": "https://comicvine.gamespot.com/joe-gomez/4005-171819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171826/", + "id": 171826, + "name": "Abigail", + "site_detail_url": "https://comicvine.gamespot.com/abigail/4005-171826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171827/", + "id": 171827, + "name": "Gallin", + "site_detail_url": "https://comicvine.gamespot.com/gallin/4005-171827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171829/", + "id": 171829, + "name": "Connor Young", + "site_detail_url": "https://comicvine.gamespot.com/connor-young/4005-171829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171830/", + "id": 171830, + "name": "Wülf", + "site_detail_url": "https://comicvine.gamespot.com/wulf/4005-171830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171870/", + "id": 171870, + "name": "Second Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/second-cosmos/4005-171870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171871/", + "id": 171871, + "name": "Third Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/third-cosmos/4005-171871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171872/", + "id": 171872, + "name": "Fifth Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/fifth-cosmos/4005-171872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171873/", + "id": 171873, + "name": "Sixth Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/sixth-cosmos/4005-171873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171887/", + "id": 171887, + "name": "Zeetar", + "site_detail_url": "https://comicvine.gamespot.com/zeetar/4005-171887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171895/", + "id": 171895, + "name": "Cam Long", + "site_detail_url": "https://comicvine.gamespot.com/cam-long/4005-171895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171900/", + "id": 171900, + "name": "Michael Diwa", + "site_detail_url": "https://comicvine.gamespot.com/michael-diwa/4005-171900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171901/", + "id": 171901, + "name": "Jamie", + "site_detail_url": "https://comicvine.gamespot.com/jamie/4005-171901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171902/", + "id": 171902, + "name": "Aura Charles", + "site_detail_url": "https://comicvine.gamespot.com/aura-charles/4005-171902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-171948/", + "id": 171948, + "name": "Faceshopper", + "site_detail_url": "https://comicvine.gamespot.com/faceshopper/4005-171948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172021/", + "id": 172021, + "name": "Darth Krall", + "site_detail_url": "https://comicvine.gamespot.com/darth-krall/4005-172021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172167/", + "id": 172167, + "name": "Top Banana", + "site_detail_url": "https://comicvine.gamespot.com/top-banana/4005-172167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172173/", + "id": 172173, + "name": "Kurt", + "site_detail_url": "https://comicvine.gamespot.com/kurt/4005-172173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172174/", + "id": 172174, + "name": "Dave", + "site_detail_url": "https://comicvine.gamespot.com/dave/4005-172174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172192/", + "id": 172192, + "name": "Jiang Li", + "site_detail_url": "https://comicvine.gamespot.com/jiang-li/4005-172192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172201/", + "id": 172201, + "name": "Neo-Edge", + "site_detail_url": "https://comicvine.gamespot.com/neo-edge/4005-172201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172202/", + "id": 172202, + "name": "Taaia", + "site_detail_url": "https://comicvine.gamespot.com/taaia/4005-172202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172233/", + "id": 172233, + "name": "Kaydel Ko Connix", + "site_detail_url": "https://comicvine.gamespot.com/kaydel-ko-connix/4005-172233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172234/", + "id": 172234, + "name": "C'ai Threnalli", + "site_detail_url": "https://comicvine.gamespot.com/cai-threnalli/4005-172234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172235/", + "id": 172235, + "name": "Sarco Plank", + "site_detail_url": "https://comicvine.gamespot.com/sarco-plank/4005-172235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172236/", + "id": 172236, + "name": "Quiggold", + "site_detail_url": "https://comicvine.gamespot.com/quiggold/4005-172236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172245/", + "id": 172245, + "name": "Cho Lin", + "site_detail_url": "https://comicvine.gamespot.com/cho-lin/4005-172245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172246/", + "id": 172246, + "name": "Kwan-Shu", + "site_detail_url": "https://comicvine.gamespot.com/kwan-shu/4005-172246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172247/", + "id": 172247, + "name": "Meorti", + "site_detail_url": "https://comicvine.gamespot.com/meorti/4005-172247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172258/", + "id": 172258, + "name": "Kantam Sy", + "site_detail_url": "https://comicvine.gamespot.com/kantam-sy/4005-172258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172267/", + "id": 172267, + "name": "Carpo", + "site_detail_url": "https://comicvine.gamespot.com/carpo/4005-172267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172310/", + "id": 172310, + "name": "Derek Lu", + "site_detail_url": "https://comicvine.gamespot.com/derek-lu/4005-172310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172311/", + "id": 172311, + "name": "Harris Young", + "site_detail_url": "https://comicvine.gamespot.com/harris-young/4005-172311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172320/", + "id": 172320, + "name": "Hareck", + "site_detail_url": "https://comicvine.gamespot.com/hareck/4005-172320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172321/", + "id": 172321, + "name": "Ilini", + "site_detail_url": "https://comicvine.gamespot.com/ilini/4005-172321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172322/", + "id": 172322, + "name": "Brene", + "site_detail_url": "https://comicvine.gamespot.com/brene/4005-172322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172323/", + "id": 172323, + "name": "Tans", + "site_detail_url": "https://comicvine.gamespot.com/tans/4005-172323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172324/", + "id": 172324, + "name": "Eden Rixlo", + "site_detail_url": "https://comicvine.gamespot.com/eden-rixlo/4005-172324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172325/", + "id": 172325, + "name": "Marigold", + "site_detail_url": "https://comicvine.gamespot.com/marigold/4005-172325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172326/", + "id": 172326, + "name": "Arthur Krane", + "site_detail_url": "https://comicvine.gamespot.com/arthur-krane/4005-172326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172435/", + "id": 172435, + "name": "Doctor Gelsemium", + "site_detail_url": "https://comicvine.gamespot.com/doctor-gelsemium/4005-172435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172436/", + "id": 172436, + "name": "Shing Yin Khor", + "site_detail_url": "https://comicvine.gamespot.com/shing-yin-khor/4005-172436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172437/", + "id": 172437, + "name": "Jeeyon Shim", + "site_detail_url": "https://comicvine.gamespot.com/jeeyon-shim/4005-172437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172438/", + "id": 172438, + "name": "Lindsay Leighton", + "site_detail_url": "https://comicvine.gamespot.com/lindsay-leighton/4005-172438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172447/", + "id": 172447, + "name": "Arielle Agbayani", + "site_detail_url": "https://comicvine.gamespot.com/arielle-agbayani/4005-172447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172448/", + "id": 172448, + "name": "Jeremy Merrick", + "site_detail_url": "https://comicvine.gamespot.com/jeremy-merrick/4005-172448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172449/", + "id": 172449, + "name": "Nowk Asil", + "site_detail_url": "https://comicvine.gamespot.com/nowk-asil/4005-172449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172450/", + "id": 172450, + "name": "Sotna Reat", + "site_detail_url": "https://comicvine.gamespot.com/sotna-reat/4005-172450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172451/", + "id": 172451, + "name": "Delan Vook", + "site_detail_url": "https://comicvine.gamespot.com/delan-vook/4005-172451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172481/", + "id": 172481, + "name": "Aftab Ackbar", + "site_detail_url": "https://comicvine.gamespot.com/aftab-ackbar/4005-172481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172496/", + "id": 172496, + "name": "Davey Miller", + "site_detail_url": "https://comicvine.gamespot.com/davey-miller/4005-172496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172628/", + "id": 172628, + "name": "Lodus Logos", + "site_detail_url": "https://comicvine.gamespot.com/lodus-logos/4005-172628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172655/", + "id": 172655, + "name": "Madre", + "site_detail_url": "https://comicvine.gamespot.com/madre/4005-172655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172656/", + "id": 172656, + "name": "Diamante", + "site_detail_url": "https://comicvine.gamespot.com/diamante/4005-172656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172703/", + "id": 172703, + "name": "Marcus Momplaisir", + "site_detail_url": "https://comicvine.gamespot.com/marcus-momplaisir/4005-172703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172740/", + "id": 172740, + "name": "Countex Oublia", + "site_detail_url": "https://comicvine.gamespot.com/countex-oublia/4005-172740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172741/", + "id": 172741, + "name": "Countex Oscura", + "site_detail_url": "https://comicvine.gamespot.com/countex-oscura/4005-172741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172809/", + "id": 172809, + "name": "Zheng Zu", + "site_detail_url": "https://comicvine.gamespot.com/zheng-zu/4005-172809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172830/", + "id": 172830, + "name": "Headmaster", + "site_detail_url": "https://comicvine.gamespot.com/headmaster/4005-172830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172891/", + "id": 172891, + "name": "Emerick Caphtor", + "site_detail_url": "https://comicvine.gamespot.com/emerick-caphtor/4005-172891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172892/", + "id": 172892, + "name": "Sian Holt", + "site_detail_url": "https://comicvine.gamespot.com/sian-holt/4005-172892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172893/", + "id": 172893, + "name": "Chronicler", + "site_detail_url": "https://comicvine.gamespot.com/chronicler/4005-172893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172894/", + "id": 172894, + "name": "Hunter", + "site_detail_url": "https://comicvine.gamespot.com/hunter/4005-172894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172946/", + "id": 172946, + "name": "The Crown", + "site_detail_url": "https://comicvine.gamespot.com/the-crown/4005-172946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172947/", + "id": 172947, + "name": "The Crawling", + "site_detail_url": "https://comicvine.gamespot.com/the-crawling/4005-172947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-172948/", + "id": 172948, + "name": "The Wyrd", + "site_detail_url": "https://comicvine.gamespot.com/the-wyrd/4005-172948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173021/", + "id": 173021, + "name": "Riverwalker", + "site_detail_url": "https://comicvine.gamespot.com/riverwalker/4005-173021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173030/", + "id": 173030, + "name": "Unmaker ", + "site_detail_url": "https://comicvine.gamespot.com/unmaker/4005-173030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173149/", + "id": 173149, + "name": "Chester Chipmunk", + "site_detail_url": "https://comicvine.gamespot.com/chester-chipmunk/4005-173149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173212/", + "id": 173212, + "name": "RB-919", + "site_detail_url": "https://comicvine.gamespot.com/rb-919/4005-173212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173213/", + "id": 173213, + "name": "Half-Bot", + "site_detail_url": "https://comicvine.gamespot.com/half-bot/4005-173213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173214/", + "id": 173214, + "name": "Mr. Eloquent", + "site_detail_url": "https://comicvine.gamespot.com/mr-eloquent/4005-173214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173215/", + "id": 173215, + "name": "The Electric Head", + "site_detail_url": "https://comicvine.gamespot.com/the-electric-head/4005-173215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173216/", + "id": 173216, + "name": "Orbis Extremis", + "site_detail_url": "https://comicvine.gamespot.com/orbis-extremis/4005-173216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173217/", + "id": 173217, + "name": "Death Grip", + "site_detail_url": "https://comicvine.gamespot.com/death-grip/4005-173217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173218/", + "id": 173218, + "name": "Maxine Danger", + "site_detail_url": "https://comicvine.gamespot.com/maxine-danger/4005-173218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173219/", + "id": 173219, + "name": "The Living Blade", + "site_detail_url": "https://comicvine.gamespot.com/the-living-blade/4005-173219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173298/", + "id": 173298, + "name": "Pulsari", + "site_detail_url": "https://comicvine.gamespot.com/pulsari/4005-173298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173304/", + "id": 173304, + "name": "Howie", + "site_detail_url": "https://comicvine.gamespot.com/howie/4005-173304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173305/", + "id": 173305, + "name": "Heidi", + "site_detail_url": "https://comicvine.gamespot.com/heidi/4005-173305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173317/", + "id": 173317, + "name": "Shawn Trella", + "site_detail_url": "https://comicvine.gamespot.com/shawn-trella/4005-173317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173378/", + "id": 173378, + "name": "Luis", + "site_detail_url": "https://comicvine.gamespot.com/luis/4005-173378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173379/", + "id": 173379, + "name": "Ray", + "site_detail_url": "https://comicvine.gamespot.com/ray/4005-173379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173400/", + "id": 173400, + "name": "Gaslamp", + "site_detail_url": "https://comicvine.gamespot.com/gaslamp/4005-173400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173413/", + "id": 173413, + "name": "Ozkar Waters", + "site_detail_url": "https://comicvine.gamespot.com/ozkar-waters/4005-173413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173419/", + "id": 173419, + "name": "Princess Justice (Sarah Jo)", + "site_detail_url": "https://comicvine.gamespot.com/princess-justice-sarah-jo/4005-173419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173420/", + "id": 173420, + "name": "Matthew Caniglia", + "site_detail_url": "https://comicvine.gamespot.com/matthew-caniglia/4005-173420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173421/", + "id": 173421, + "name": "Princess Justice (McClure)", + "site_detail_url": "https://comicvine.gamespot.com/princess-justice-mcclure/4005-173421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173422/", + "id": 173422, + "name": "Princess Justice (Gaines)", + "site_detail_url": "https://comicvine.gamespot.com/princess-justice-gaines/4005-173422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173423/", + "id": 173423, + "name": "Princess Justice (Cass)", + "site_detail_url": "https://comicvine.gamespot.com/princess-justice-cass/4005-173423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173424/", + "id": 173424, + "name": "Blue-J", + "site_detail_url": "https://comicvine.gamespot.com/blue-j/4005-173424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173425/", + "id": 173425, + "name": "BumpStock", + "site_detail_url": "https://comicvine.gamespot.com/bumpstock/4005-173425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173426/", + "id": 173426, + "name": "Dolly Girl", + "site_detail_url": "https://comicvine.gamespot.com/dolly-girl/4005-173426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173427/", + "id": 173427, + "name": "The Gloom", + "site_detail_url": "https://comicvine.gamespot.com/the-gloom/4005-173427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173428/", + "id": 173428, + "name": "Kid Justice", + "site_detail_url": "https://comicvine.gamespot.com/kid-justice/4005-173428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173429/", + "id": 173429, + "name": "Little J", + "site_detail_url": "https://comicvine.gamespot.com/little-j/4005-173429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173430/", + "id": 173430, + "name": "Marty", + "site_detail_url": "https://comicvine.gamespot.com/marty/4005-173430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173431/", + "id": 173431, + "name": "Mister Swift", + "site_detail_url": "https://comicvine.gamespot.com/mister-swift/4005-173431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173432/", + "id": 173432, + "name": "SPF", + "site_detail_url": "https://comicvine.gamespot.com/spf/4005-173432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173433/", + "id": 173433, + "name": "Trench", + "site_detail_url": "https://comicvine.gamespot.com/trench/4005-173433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173435/", + "id": 173435, + "name": "Colonel Sellers", + "site_detail_url": "https://comicvine.gamespot.com/colonel-sellers/4005-173435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173484/", + "id": 173484, + "name": "Meridius", + "site_detail_url": "https://comicvine.gamespot.com/meridius/4005-173484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173485/", + "id": 173485, + "name": "Bedlam", + "site_detail_url": "https://comicvine.gamespot.com/bedlam/4005-173485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173499/", + "id": 173499, + "name": "Goebig", + "site_detail_url": "https://comicvine.gamespot.com/goebig/4005-173499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173500/", + "id": 173500, + "name": "Eidolon", + "site_detail_url": "https://comicvine.gamespot.com/eidolon/4005-173500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173501/", + "id": 173501, + "name": "Jack of Knives", + "site_detail_url": "https://comicvine.gamespot.com/jack-of-knives/4005-173501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173502/", + "id": 173502, + "name": "Daina", + "site_detail_url": "https://comicvine.gamespot.com/daina/4005-173502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173503/", + "id": 173503, + "name": "Argos", + "site_detail_url": "https://comicvine.gamespot.com/argos/4005-173503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173505/", + "id": 173505, + "name": "Eva Lopez", + "site_detail_url": "https://comicvine.gamespot.com/eva-lopez/4005-173505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173506/", + "id": 173506, + "name": "Julian Lopez", + "site_detail_url": "https://comicvine.gamespot.com/julian-lopez/4005-173506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173507/", + "id": 173507, + "name": "Megalith", + "site_detail_url": "https://comicvine.gamespot.com/megalith/4005-173507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173524/", + "id": 173524, + "name": "Harold Murch", + "site_detail_url": "https://comicvine.gamespot.com/harold-murch/4005-173524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173526/", + "id": 173526, + "name": "Elo", + "site_detail_url": "https://comicvine.gamespot.com/elo/4005-173526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173528/", + "id": 173528, + "name": "Brusque", + "site_detail_url": "https://comicvine.gamespot.com/brusque/4005-173528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173530/", + "id": 173530, + "name": "Tolau the Delirious", + "site_detail_url": "https://comicvine.gamespot.com/tolau-the-delirious/4005-173530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173531/", + "id": 173531, + "name": "Catalina Chavez", + "site_detail_url": "https://comicvine.gamespot.com/catalina-chavez/4005-173531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173550/", + "id": 173550, + "name": "Ambrose", + "site_detail_url": "https://comicvine.gamespot.com/ambrose/4005-173550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173551/", + "id": 173551, + "name": "Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie/4005-173551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173569/", + "id": 173569, + "name": "Master Ling", + "site_detail_url": "https://comicvine.gamespot.com/master-ling/4005-173569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173709/", + "id": 173709, + "name": "Ultimatum ", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum/4005-173709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173722/", + "id": 173722, + "name": "Babara Sanchez", + "site_detail_url": "https://comicvine.gamespot.com/babara-sanchez/4005-173722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173759/", + "id": 173759, + "name": "Anti-Venom", + "site_detail_url": "https://comicvine.gamespot.com/anti-venom/4005-173759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173765/", + "id": 173765, + "name": "Silence", + "site_detail_url": "https://comicvine.gamespot.com/silence/4005-173765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173773/", + "id": 173773, + "name": "Delilah Wang", + "site_detail_url": "https://comicvine.gamespot.com/delilah-wang/4005-173773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173800/", + "id": 173800, + "name": "Raze", + "site_detail_url": "https://comicvine.gamespot.com/raze/4005-173800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173808/", + "id": 173808, + "name": "Susan Bishop", + "site_detail_url": "https://comicvine.gamespot.com/susan-bishop/4005-173808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173811/", + "id": 173811, + "name": "Folasade", + "site_detail_url": "https://comicvine.gamespot.com/folasade/4005-173811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173812/", + "id": 173812, + "name": "Jhai", + "site_detail_url": "https://comicvine.gamespot.com/jhai/4005-173812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173813/", + "id": 173813, + "name": "Omolola", + "site_detail_url": "https://comicvine.gamespot.com/omolola/4005-173813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173847/", + "id": 173847, + "name": "Pulse", + "site_detail_url": "https://comicvine.gamespot.com/pulse/4005-173847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173848/", + "id": 173848, + "name": "Yahnos Tr'morr", + "site_detail_url": "https://comicvine.gamespot.com/yahnos-trmorr/4005-173848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173904/", + "id": 173904, + "name": "Edith Barton", + "site_detail_url": "https://comicvine.gamespot.com/edith-barton/4005-173904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173905/", + "id": 173905, + "name": "Harold Barton", + "site_detail_url": "https://comicvine.gamespot.com/harold-barton/4005-173905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-173987/", + "id": 173987, + "name": "Bryce Fowler", + "site_detail_url": "https://comicvine.gamespot.com/bryce-fowler/4005-173987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174062/", + "id": 174062, + "name": "Rosie Rodriguez", + "site_detail_url": "https://comicvine.gamespot.com/rosie-rodriguez/4005-174062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174063/", + "id": 174063, + "name": "Hector Pullman", + "site_detail_url": "https://comicvine.gamespot.com/hector-pullman/4005-174063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174064/", + "id": 174064, + "name": "Markos Argyros", + "site_detail_url": "https://comicvine.gamespot.com/markos-argyros/4005-174064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174066/", + "id": 174066, + "name": "Christopher O’Leary", + "site_detail_url": "https://comicvine.gamespot.com/christopher-oleary/4005-174066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174067/", + "id": 174067, + "name": "Alice Campbell", + "site_detail_url": "https://comicvine.gamespot.com/alice-campbell/4005-174067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174068/", + "id": 174068, + "name": "Jason Jackson", + "site_detail_url": "https://comicvine.gamespot.com/jason-jackson/4005-174068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174069/", + "id": 174069, + "name": "Alec Walsh", + "site_detail_url": "https://comicvine.gamespot.com/alec-walsh/4005-174069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174072/", + "id": 174072, + "name": "Mark Mason", + "site_detail_url": "https://comicvine.gamespot.com/mark-mason/4005-174072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174075/", + "id": 174075, + "name": "Mr. Wu", + "site_detail_url": "https://comicvine.gamespot.com/mr-wu/4005-174075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174103/", + "id": 174103, + "name": "Shell", + "site_detail_url": "https://comicvine.gamespot.com/shell/4005-174103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174104/", + "id": 174104, + "name": "Deep", + "site_detail_url": "https://comicvine.gamespot.com/deep/4005-174104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174120/", + "id": 174120, + "name": "Sandy", + "site_detail_url": "https://comicvine.gamespot.com/sandy/4005-174120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174162/", + "id": 174162, + "name": "Taxes", + "site_detail_url": "https://comicvine.gamespot.com/taxes/4005-174162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174163/", + "id": 174163, + "name": "Cosmic Comptroller", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-comptroller/4005-174163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174173/", + "id": 174173, + "name": "Callum Barton", + "site_detail_url": "https://comicvine.gamespot.com/callum-barton/4005-174173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174174/", + "id": 174174, + "name": "Lewis Barton", + "site_detail_url": "https://comicvine.gamespot.com/lewis-barton/4005-174174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174175/", + "id": 174175, + "name": "Nicole Barton", + "site_detail_url": "https://comicvine.gamespot.com/nicole-barton/4005-174175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174176/", + "id": 174176, + "name": "Grills", + "site_detail_url": "https://comicvine.gamespot.com/grills/4005-174176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174177/", + "id": 174177, + "name": "Benjamin Russell", + "site_detail_url": "https://comicvine.gamespot.com/benjamin-russell/4005-174177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174283/", + "id": 174283, + "name": "Avram Siegel", + "site_detail_url": "https://comicvine.gamespot.com/avram-siegel/4005-174283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174284/", + "id": 174284, + "name": "Father Artemis", + "site_detail_url": "https://comicvine.gamespot.com/father-artemis/4005-174284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174285/", + "id": 174285, + "name": "Father Lazar", + "site_detail_url": "https://comicvine.gamespot.com/father-lazar/4005-174285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174292/", + "id": 174292, + "name": "Donato", + "site_detail_url": "https://comicvine.gamespot.com/donato/4005-174292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174293/", + "id": 174293, + "name": "May Johnson", + "site_detail_url": "https://comicvine.gamespot.com/may-johnson/4005-174293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174317/", + "id": 174317, + "name": "Sam Lavelle", + "site_detail_url": "https://comicvine.gamespot.com/sam-lavelle/4005-174317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174320/", + "id": 174320, + "name": "War-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/war-wolf/4005-174320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174326/", + "id": 174326, + "name": "Eldon Lambert", + "site_detail_url": "https://comicvine.gamespot.com/eldon-lambert/4005-174326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174327/", + "id": 174327, + "name": "Frank Lorretti", + "site_detail_url": "https://comicvine.gamespot.com/frank-lorretti/4005-174327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174332/", + "id": 174332, + "name": "Clayton Burr", + "site_detail_url": "https://comicvine.gamespot.com/clayton-burr/4005-174332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174333/", + "id": 174333, + "name": "Mako", + "site_detail_url": "https://comicvine.gamespot.com/mako/4005-174333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174348/", + "id": 174348, + "name": "General Dieter Skul", + "site_detail_url": "https://comicvine.gamespot.com/general-dieter-skul/4005-174348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174349/", + "id": 174349, + "name": "Count Von Blitzkrieg", + "site_detail_url": "https://comicvine.gamespot.com/count-von-blitzkrieg/4005-174349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174350/", + "id": 174350, + "name": "Vunderknight", + "site_detail_url": "https://comicvine.gamespot.com/vunderknight/4005-174350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174351/", + "id": 174351, + "name": "Leopard Woman", + "site_detail_url": "https://comicvine.gamespot.com/leopard-woman/4005-174351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174352/", + "id": 174352, + "name": "Fritz Kron", + "site_detail_url": "https://comicvine.gamespot.com/fritz-kron/4005-174352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174360/", + "id": 174360, + "name": "Eric Hoffman", + "site_detail_url": "https://comicvine.gamespot.com/eric-hoffman/4005-174360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174361/", + "id": 174361, + "name": "Snake-Eyes", + "site_detail_url": "https://comicvine.gamespot.com/snake-eyes/4005-174361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174383/", + "id": 174383, + "name": "George Ovani", + "site_detail_url": "https://comicvine.gamespot.com/george-ovani/4005-174383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174384/", + "id": 174384, + "name": "Morgan Steps", + "site_detail_url": "https://comicvine.gamespot.com/morgan-steps/4005-174384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174385/", + "id": 174385, + "name": "Bo Barrigan", + "site_detail_url": "https://comicvine.gamespot.com/bo-barrigan/4005-174385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174390/", + "id": 174390, + "name": "David Wu", + "site_detail_url": "https://comicvine.gamespot.com/david-wu/4005-174390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174391/", + "id": 174391, + "name": "Maru", + "site_detail_url": "https://comicvine.gamespot.com/maru/4005-174391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174392/", + "id": 174392, + "name": "Gideon Malick", + "site_detail_url": "https://comicvine.gamespot.com/gideon-malick/4005-174392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174409/", + "id": 174409, + "name": "Quigley J. Warmflash", + "site_detail_url": "https://comicvine.gamespot.com/quigley-j-warmflash/4005-174409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174410/", + "id": 174410, + "name": "R-3X", + "site_detail_url": "https://comicvine.gamespot.com/r-3x/4005-174410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174414/", + "id": 174414, + "name": "Injun Joe", + "site_detail_url": "https://comicvine.gamespot.com/injun-joe/4005-174414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174415/", + "id": 174415, + "name": "Killer Croesus", + "site_detail_url": "https://comicvine.gamespot.com/killer-croesus/4005-174415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174441/", + "id": 174441, + "name": "Shifter", + "site_detail_url": "https://comicvine.gamespot.com/shifter/4005-174441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174492/", + "id": 174492, + "name": "Chieftain Xin", + "site_detail_url": "https://comicvine.gamespot.com/chieftain-xin/4005-174492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174538/", + "id": 174538, + "name": "Vornak", + "site_detail_url": "https://comicvine.gamespot.com/vornak/4005-174538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174558/", + "id": 174558, + "name": "Red Dot", + "site_detail_url": "https://comicvine.gamespot.com/red-dot/4005-174558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174684/", + "id": 174684, + "name": "Elzar Mann", + "site_detail_url": "https://comicvine.gamespot.com/elzar-mann/4005-174684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174685/", + "id": 174685, + "name": "Lyra Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/lyra-bloodstone/4005-174685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174686/", + "id": 174686, + "name": "Krakkan the Jailer", + "site_detail_url": "https://comicvine.gamespot.com/krakkan-the-jailer/4005-174686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174688/", + "id": 174688, + "name": "Shane Jametz", + "site_detail_url": "https://comicvine.gamespot.com/shane-jametz/4005-174688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174712/", + "id": 174712, + "name": "Thaelik", + "site_detail_url": "https://comicvine.gamespot.com/thaelik/4005-174712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174714/", + "id": 174714, + "name": "Festus", + "site_detail_url": "https://comicvine.gamespot.com/festus/4005-174714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174715/", + "id": 174715, + "name": "Sabaretus", + "site_detail_url": "https://comicvine.gamespot.com/sabaretus/4005-174715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174721/", + "id": 174721, + "name": "Damon Morelle", + "site_detail_url": "https://comicvine.gamespot.com/damon-morelle/4005-174721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174759/", + "id": 174759, + "name": "Giorgi", + "site_detail_url": "https://comicvine.gamespot.com/giorgi/4005-174759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174760/", + "id": 174760, + "name": "Kazit", + "site_detail_url": "https://comicvine.gamespot.com/kazit/4005-174760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174762/", + "id": 174762, + "name": "Cassian", + "site_detail_url": "https://comicvine.gamespot.com/cassian/4005-174762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174763/", + "id": 174763, + "name": "Lorenz", + "site_detail_url": "https://comicvine.gamespot.com/lorenz/4005-174763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174764/", + "id": 174764, + "name": "Cloviz", + "site_detail_url": "https://comicvine.gamespot.com/cloviz/4005-174764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174765/", + "id": 174765, + "name": "Romano", + "site_detail_url": "https://comicvine.gamespot.com/romano/4005-174765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174766/", + "id": 174766, + "name": "Blasius", + "site_detail_url": "https://comicvine.gamespot.com/blasius/4005-174766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174770/", + "id": 174770, + "name": "Malice", + "site_detail_url": "https://comicvine.gamespot.com/malice/4005-174770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174771/", + "id": 174771, + "name": "Damballah", + "site_detail_url": "https://comicvine.gamespot.com/damballah/4005-174771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174774/", + "id": 174774, + "name": "Antonius Cabreara", + "site_detail_url": "https://comicvine.gamespot.com/antonius-cabreara/4005-174774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174783/", + "id": 174783, + "name": "William Saul Hansen", + "site_detail_url": "https://comicvine.gamespot.com/william-saul-hansen/4005-174783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174785/", + "id": 174785, + "name": "Earl Angstrom", + "site_detail_url": "https://comicvine.gamespot.com/earl-angstrom/4005-174785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174786/", + "id": 174786, + "name": "The Human Adaptoid", + "site_detail_url": "https://comicvine.gamespot.com/the-human-adaptoid/4005-174786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174790/", + "id": 174790, + "name": "Mateo", + "site_detail_url": "https://comicvine.gamespot.com/mateo/4005-174790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174811/", + "id": 174811, + "name": "#378-βπ", + "site_detail_url": "https://comicvine.gamespot.com/378-bp/4005-174811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174826/", + "id": 174826, + "name": "Oya", + "site_detail_url": "https://comicvine.gamespot.com/oya/4005-174826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174840/", + "id": 174840, + "name": "Martin Leigh", + "site_detail_url": "https://comicvine.gamespot.com/martin-leigh/4005-174840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174843/", + "id": 174843, + "name": "Jenny Leigh", + "site_detail_url": "https://comicvine.gamespot.com/jenny-leigh/4005-174843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174845/", + "id": 174845, + "name": "Dr. Graves", + "site_detail_url": "https://comicvine.gamespot.com/dr-graves/4005-174845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174846/", + "id": 174846, + "name": "Number Nine", + "site_detail_url": "https://comicvine.gamespot.com/number-nine/4005-174846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174847/", + "id": 174847, + "name": "Amy Neils", + "site_detail_url": "https://comicvine.gamespot.com/amy-neils/4005-174847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174848/", + "id": 174848, + "name": "Hendricks", + "site_detail_url": "https://comicvine.gamespot.com/hendricks/4005-174848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174849/", + "id": 174849, + "name": "Mann", + "site_detail_url": "https://comicvine.gamespot.com/mann/4005-174849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174850/", + "id": 174850, + "name": "Horton", + "site_detail_url": "https://comicvine.gamespot.com/horton/4005-174850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174897/", + "id": 174897, + "name": "Unicorn (Blomfield)", + "site_detail_url": "https://comicvine.gamespot.com/unicorn-blomfield/4005-174897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174940/", + "id": 174940, + "name": "Nakia Cabral", + "site_detail_url": "https://comicvine.gamespot.com/nakia-cabral/4005-174940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174989/", + "id": 174989, + "name": "Terec", + "site_detail_url": "https://comicvine.gamespot.com/terec/4005-174989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174990/", + "id": 174990, + "name": "Ceret", + "site_detail_url": "https://comicvine.gamespot.com/ceret/4005-174990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174991/", + "id": 174991, + "name": "Nooranbakarakana", + "site_detail_url": "https://comicvine.gamespot.com/nooranbakarakana/4005-174991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174992/", + "id": 174992, + "name": "Lourna Dee", + "site_detail_url": "https://comicvine.gamespot.com/lourna-dee/4005-174992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-174993/", + "id": 174993, + "name": "Indeera Stokes", + "site_detail_url": "https://comicvine.gamespot.com/indeera-stokes/4005-174993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175081/", + "id": 175081, + "name": "Sha-Har-A-Zath", + "site_detail_url": "https://comicvine.gamespot.com/sha-har-a-zath/4005-175081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175083/", + "id": 175083, + "name": "Killjoy", + "site_detail_url": "https://comicvine.gamespot.com/killjoy/4005-175083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175084/", + "id": 175084, + "name": "Phreak", + "site_detail_url": "https://comicvine.gamespot.com/phreak/4005-175084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175172/", + "id": 175172, + "name": "V'ger", + "site_detail_url": "https://comicvine.gamespot.com/vger/4005-175172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175254/", + "id": 175254, + "name": "Tosin Oduye", + "site_detail_url": "https://comicvine.gamespot.com/tosin-oduye/4005-175254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175297/", + "id": 175297, + "name": "Burryaga Agaburry", + "site_detail_url": "https://comicvine.gamespot.com/burryaga-agaburry/4005-175297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175298/", + "id": 175298, + "name": "Goonral", + "site_detail_url": "https://comicvine.gamespot.com/goonral/4005-175298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175304/", + "id": 175304, + "name": "Ayesha of Balobedu", + "site_detail_url": "https://comicvine.gamespot.com/ayesha-of-balobedu/4005-175304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175306/", + "id": 175306, + "name": "XB723-51", + "site_detail_url": "https://comicvine.gamespot.com/xb723-51/4005-175306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175329/", + "id": 175329, + "name": "Madame Oopa", + "site_detail_url": "https://comicvine.gamespot.com/madame-oopa/4005-175329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175331/", + "id": 175331, + "name": "Fifi", + "site_detail_url": "https://comicvine.gamespot.com/fifi/4005-175331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175332/", + "id": 175332, + "name": "Pascale Tiboldt", + "site_detail_url": "https://comicvine.gamespot.com/pascale-tiboldt/4005-175332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175335/", + "id": 175335, + "name": "Joe Bomb", + "site_detail_url": "https://comicvine.gamespot.com/joe-bomb/4005-175335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175336/", + "id": 175336, + "name": "Rosa Lemper", + "site_detail_url": "https://comicvine.gamespot.com/rosa-lemper/4005-175336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175337/", + "id": 175337, + "name": "Xu Xialing", + "site_detail_url": "https://comicvine.gamespot.com/xu-xialing/4005-175337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175381/", + "id": 175381, + "name": "Mr. Jacks", + "site_detail_url": "https://comicvine.gamespot.com/mr-jacks/4005-175381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175385/", + "id": 175385, + "name": "Arthur Harrow", + "site_detail_url": "https://comicvine.gamespot.com/arthur-harrow/4005-175385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175386/", + "id": 175386, + "name": "Victoria Grail", + "site_detail_url": "https://comicvine.gamespot.com/victoria-grail/4005-175386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175427/", + "id": 175427, + "name": "Faze", + "site_detail_url": "https://comicvine.gamespot.com/faze/4005-175427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175428/", + "id": 175428, + "name": "Doctor Stasis", + "site_detail_url": "https://comicvine.gamespot.com/doctor-stasis/4005-175428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175433/", + "id": 175433, + "name": "Moon-Watcher", + "site_detail_url": "https://comicvine.gamespot.com/moon-watcher/4005-175433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175445/", + "id": 175445, + "name": "Woodrow Decker", + "site_detail_url": "https://comicvine.gamespot.com/woodrow-decker/4005-175445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175446/", + "id": 175446, + "name": "Vera Gentry ", + "site_detail_url": "https://comicvine.gamespot.com/vera-gentry/4005-175446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175447/", + "id": 175447, + "name": "Vira, the She-Demon", + "site_detail_url": "https://comicvine.gamespot.com/vira-the-she-demon/4005-175447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175448/", + "id": 175448, + "name": "Marak the Merciless", + "site_detail_url": "https://comicvine.gamespot.com/marak-the-merciless/4005-175448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175449/", + "id": 175449, + "name": "Egek the Thing-Maker", + "site_detail_url": "https://comicvine.gamespot.com/egek-the-thing-maker/4005-175449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175450/", + "id": 175450, + "name": "Jalessa", + "site_detail_url": "https://comicvine.gamespot.com/jalessa/4005-175450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175451/", + "id": 175451, + "name": "Death Master", + "site_detail_url": "https://comicvine.gamespot.com/death-master/4005-175451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175452/", + "id": 175452, + "name": "Princess Adora", + "site_detail_url": "https://comicvine.gamespot.com/princess-adora/4005-175452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175453/", + "id": 175453, + "name": "Farrell", + "site_detail_url": "https://comicvine.gamespot.com/farrell/4005-175453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175454/", + "id": 175454, + "name": "Baker", + "site_detail_url": "https://comicvine.gamespot.com/baker/4005-175454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175455/", + "id": 175455, + "name": "Gordon Pruett ", + "site_detail_url": "https://comicvine.gamespot.com/gordon-pruett/4005-175455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175498/", + "id": 175498, + "name": "Charles Cameo", + "site_detail_url": "https://comicvine.gamespot.com/charles-cameo/4005-175498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175501/", + "id": 175501, + "name": "Binary", + "site_detail_url": "https://comicvine.gamespot.com/binary/4005-175501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175504/", + "id": 175504, + "name": "Talia Warroad", + "site_detail_url": "https://comicvine.gamespot.com/talia-warroad/4005-175504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175506/", + "id": 175506, + "name": "Slyme", + "site_detail_url": "https://comicvine.gamespot.com/slyme/4005-175506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175507/", + "id": 175507, + "name": "Falo ", + "site_detail_url": "https://comicvine.gamespot.com/falo/4005-175507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175515/", + "id": 175515, + "name": "General Chasen", + "site_detail_url": "https://comicvine.gamespot.com/general-chasen/4005-175515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175531/", + "id": 175531, + "name": "Colonel Chaffee", + "site_detail_url": "https://comicvine.gamespot.com/colonel-chaffee/4005-175531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175557/", + "id": 175557, + "name": "Troubleshooter", + "site_detail_url": "https://comicvine.gamespot.com/troubleshooter/4005-175557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175600/", + "id": 175600, + "name": "The Thumper", + "site_detail_url": "https://comicvine.gamespot.com/the-thumper/4005-175600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175603/", + "id": 175603, + "name": "Big Tow", + "site_detail_url": "https://comicvine.gamespot.com/big-tow/4005-175603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175604/", + "id": 175604, + "name": "Fargo North, Decoder", + "site_detail_url": "https://comicvine.gamespot.com/fargo-north-decoder/4005-175604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175605/", + "id": 175605, + "name": "Spoiler", + "site_detail_url": "https://comicvine.gamespot.com/spoiler/4005-175605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175608/", + "id": 175608, + "name": "Mr. Measles", + "site_detail_url": "https://comicvine.gamespot.com/mr-measles/4005-175608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175610/", + "id": 175610, + "name": "Sam the Robot", + "site_detail_url": "https://comicvine.gamespot.com/sam-the-robot/4005-175610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175611/", + "id": 175611, + "name": "Chad O'Nay", + "site_detail_url": "https://comicvine.gamespot.com/chad-onay/4005-175611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175612/", + "id": 175612, + "name": "Jenn", + "site_detail_url": "https://comicvine.gamespot.com/jenn/4005-175612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175613/", + "id": 175613, + "name": "Tonic", + "site_detail_url": "https://comicvine.gamespot.com/tonic/4005-175613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175614/", + "id": 175614, + "name": "Perry P. Parish", + "site_detail_url": "https://comicvine.gamespot.com/perry-p-parish/4005-175614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175620/", + "id": 175620, + "name": "J. Arthur Crank", + "site_detail_url": "https://comicvine.gamespot.com/j-arthur-crank/4005-175620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175622/", + "id": 175622, + "name": "Mark", + "site_detail_url": "https://comicvine.gamespot.com/mark/4005-175622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175623/", + "id": 175623, + "name": "Jane", + "site_detail_url": "https://comicvine.gamespot.com/jane/4005-175623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175635/", + "id": 175635, + "name": "Maurice", + "site_detail_url": "https://comicvine.gamespot.com/maurice/4005-175635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175636/", + "id": 175636, + "name": "Mad Scientist", + "site_detail_url": "https://comicvine.gamespot.com/mad-scientist/4005-175636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175637/", + "id": 175637, + "name": "Dr. Fright", + "site_detail_url": "https://comicvine.gamespot.com/dr-fright/4005-175637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175647/", + "id": 175647, + "name": "Show-Stopper", + "site_detail_url": "https://comicvine.gamespot.com/show-stopper/4005-175647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175648/", + "id": 175648, + "name": "Tickler", + "site_detail_url": "https://comicvine.gamespot.com/tickler/4005-175648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175649/", + "id": 175649, + "name": "The Sitter", + "site_detail_url": "https://comicvine.gamespot.com/the-sitter/4005-175649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175652/", + "id": 175652, + "name": "Yeti", + "site_detail_url": "https://comicvine.gamespot.com/yeti/4005-175652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175653/", + "id": 175653, + "name": "The Stomper", + "site_detail_url": "https://comicvine.gamespot.com/the-stomper/4005-175653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175655/", + "id": 175655, + "name": "The Prankster", + "site_detail_url": "https://comicvine.gamespot.com/the-prankster/4005-175655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175656/", + "id": 175656, + "name": "The Uninvited", + "site_detail_url": "https://comicvine.gamespot.com/the-uninvited/4005-175656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175657/", + "id": 175657, + "name": "Blowhard", + "site_detail_url": "https://comicvine.gamespot.com/blowhard/4005-175657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175658/", + "id": 175658, + "name": "Hum Dinger", + "site_detail_url": "https://comicvine.gamespot.com/hum-dinger/4005-175658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175659/", + "id": 175659, + "name": "Slum Lord", + "site_detail_url": "https://comicvine.gamespot.com/slum-lord/4005-175659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175660/", + "id": 175660, + "name": "Fancy Dancer", + "site_detail_url": "https://comicvine.gamespot.com/fancy-dancer/4005-175660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175661/", + "id": 175661, + "name": "Mastermind", + "site_detail_url": "https://comicvine.gamespot.com/mastermind/4005-175661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175662/", + "id": 175662, + "name": "Toymaker", + "site_detail_url": "https://comicvine.gamespot.com/toymaker/4005-175662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175664/", + "id": 175664, + "name": "The Inventor", + "site_detail_url": "https://comicvine.gamespot.com/the-inventor/4005-175664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175665/", + "id": 175665, + "name": "Harvey", + "site_detail_url": "https://comicvine.gamespot.com/harvey/4005-175665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175666/", + "id": 175666, + "name": "Movie Menace", + "site_detail_url": "https://comicvine.gamespot.com/movie-menace/4005-175666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175669/", + "id": 175669, + "name": "Samuel T. Underwood", + "site_detail_url": "https://comicvine.gamespot.com/samuel-t-underwood/4005-175669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175677/", + "id": 175677, + "name": "Charles Lawson", + "site_detail_url": "https://comicvine.gamespot.com/charles-lawson/4005-175677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175678/", + "id": 175678, + "name": "Moxie Gahagan", + "site_detail_url": "https://comicvine.gamespot.com/moxie-gahagan/4005-175678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175679/", + "id": 175679, + "name": "Cindy Lawton", + "site_detail_url": "https://comicvine.gamespot.com/cindy-lawton/4005-175679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175686/", + "id": 175686, + "name": "Chassellon Stevis", + "site_detail_url": "https://comicvine.gamespot.com/chassellon-stevis/4005-175686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175687/", + "id": 175687, + "name": "Kier Domadi", + "site_detail_url": "https://comicvine.gamespot.com/kier-domadi/4005-175687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175688/", + "id": 175688, + "name": "Pangie", + "site_detail_url": "https://comicvine.gamespot.com/pangie/4005-175688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175689/", + "id": 175689, + "name": "Harp Allor", + "site_detail_url": "https://comicvine.gamespot.com/harp-allor/4005-175689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175690/", + "id": 175690, + "name": "Ress Batten", + "site_detail_url": "https://comicvine.gamespot.com/ress-batten/4005-175690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175692/", + "id": 175692, + "name": "JJ", + "site_detail_url": "https://comicvine.gamespot.com/jj/4005-175692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175693/", + "id": 175693, + "name": "Seraph", + "site_detail_url": "https://comicvine.gamespot.com/seraph/4005-175693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175702/", + "id": 175702, + "name": "Kyle Jacoby", + "site_detail_url": "https://comicvine.gamespot.com/kyle-jacoby/4005-175702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175704/", + "id": 175704, + "name": "The Brace", + "site_detail_url": "https://comicvine.gamespot.com/the-brace/4005-175704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175705/", + "id": 175705, + "name": "Adam", + "site_detail_url": "https://comicvine.gamespot.com/adam/4005-175705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175709/", + "id": 175709, + "name": "Charles Anderson", + "site_detail_url": "https://comicvine.gamespot.com/charles-anderson/4005-175709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175711/", + "id": 175711, + "name": "Dr. Noah Boddy", + "site_detail_url": "https://comicvine.gamespot.com/dr-noah-boddy/4005-175711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175740/", + "id": 175740, + "name": "Liho", + "site_detail_url": "https://comicvine.gamespot.com/liho/4005-175740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175741/", + "id": 175741, + "name": "Alpine", + "site_detail_url": "https://comicvine.gamespot.com/alpine/4005-175741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175751/", + "id": 175751, + "name": "Jeremoch Colton", + "site_detail_url": "https://comicvine.gamespot.com/jeremoch-colton/4005-175751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175753/", + "id": 175753, + "name": "Judith Cort", + "site_detail_url": "https://comicvine.gamespot.com/judith-cort/4005-175753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175754/", + "id": 175754, + "name": "Baron von Blimp", + "site_detail_url": "https://comicvine.gamespot.com/baron-von-blimp/4005-175754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175776/", + "id": 175776, + "name": "Third Eye", + "site_detail_url": "https://comicvine.gamespot.com/third-eye/4005-175776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175785/", + "id": 175785, + "name": "Dmitri Petrovitch", + "site_detail_url": "https://comicvine.gamespot.com/dmitri-petrovitch/4005-175785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175786/", + "id": 175786, + "name": "Ivan Trefkov", + "site_detail_url": "https://comicvine.gamespot.com/ivan-trefkov/4005-175786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175787/", + "id": 175787, + "name": "Fritz Sablinova", + "site_detail_url": "https://comicvine.gamespot.com/fritz-sablinova/4005-175787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175824/", + "id": 175824, + "name": "Khel Tanna", + "site_detail_url": "https://comicvine.gamespot.com/khel-tanna/4005-175824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175832/", + "id": 175832, + "name": "Mack Stennet", + "site_detail_url": "https://comicvine.gamespot.com/mack-stennet/4005-175832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175836/", + "id": 175836, + "name": "Alligator Loki", + "site_detail_url": "https://comicvine.gamespot.com/alligator-loki/4005-175836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175846/", + "id": 175846, + "name": "Tina Deacon", + "site_detail_url": "https://comicvine.gamespot.com/tina-deacon/4005-175846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175847/", + "id": 175847, + "name": "Edward Taylor", + "site_detail_url": "https://comicvine.gamespot.com/edward-taylor/4005-175847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175848/", + "id": 175848, + "name": "Father Cathal", + "site_detail_url": "https://comicvine.gamespot.com/father-cathal/4005-175848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175849/", + "id": 175849, + "name": "Leo Carraro", + "site_detail_url": "https://comicvine.gamespot.com/leo-carraro/4005-175849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175850/", + "id": 175850, + "name": "Pol Treidum", + "site_detail_url": "https://comicvine.gamespot.com/pol-treidum/4005-175850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175851/", + "id": 175851, + "name": "Moradmin Bast", + "site_detail_url": "https://comicvine.gamespot.com/moradmin-bast/4005-175851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175852/", + "id": 175852, + "name": "Milar Travis", + "site_detail_url": "https://comicvine.gamespot.com/milar-travis/4005-175852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175853/", + "id": 175853, + "name": "Wioslea", + "site_detail_url": "https://comicvine.gamespot.com/wioslea/4005-175853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175866/", + "id": 175866, + "name": "B-U4D", + "site_detail_url": "https://comicvine.gamespot.com/b-u4d/4005-175866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175875/", + "id": 175875, + "name": "Oceanus", + "site_detail_url": "https://comicvine.gamespot.com/oceanus/4005-175875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175895/", + "id": 175895, + "name": "Bor Ifriem", + "site_detail_url": "https://comicvine.gamespot.com/bor-ifriem/4005-175895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175903/", + "id": 175903, + "name": "Margo", + "site_detail_url": "https://comicvine.gamespot.com/margo/4005-175903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175904/", + "id": 175904, + "name": "Trinia", + "site_detail_url": "https://comicvine.gamespot.com/trinia/4005-175904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175905/", + "id": 175905, + "name": "Gyuti", + "site_detail_url": "https://comicvine.gamespot.com/gyuti/4005-175905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175919/", + "id": 175919, + "name": "Kisma Uttersond", + "site_detail_url": "https://comicvine.gamespot.com/kisma-uttersond/4005-175919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175920/", + "id": 175920, + "name": "Bell Zettifar", + "site_detail_url": "https://comicvine.gamespot.com/bell-zettifar/4005-175920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175921/", + "id": 175921, + "name": "Arathab Fal", + "site_detail_url": "https://comicvine.gamespot.com/arathab-fal/4005-175921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-175922/", + "id": 175922, + "name": "Ishnar Ti-Kharatal", + "site_detail_url": "https://comicvine.gamespot.com/ishnar-ti-kharatal/4005-175922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176154/", + "id": 176154, + "name": "Agent Foster", + "site_detail_url": "https://comicvine.gamespot.com/agent-foster/4005-176154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176158/", + "id": 176158, + "name": "Lupin", + "site_detail_url": "https://comicvine.gamespot.com/lupin/4005-176158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176159/", + "id": 176159, + "name": "Raffles", + "site_detail_url": "https://comicvine.gamespot.com/raffles/4005-176159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176160/", + "id": 176160, + "name": "Simon", + "site_detail_url": "https://comicvine.gamespot.com/simon/4005-176160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176161/", + "id": 176161, + "name": "Irene", + "site_detail_url": "https://comicvine.gamespot.com/irene/4005-176161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176219/", + "id": 176219, + "name": "Spider-Monkey", + "site_detail_url": "https://comicvine.gamespot.com/spider-monkey/4005-176219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176247/", + "id": 176247, + "name": "Hadley Harper", + "site_detail_url": "https://comicvine.gamespot.com/hadley-harper/4005-176247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176248/", + "id": 176248, + "name": "WEB-STER", + "site_detail_url": "https://comicvine.gamespot.com/web-ster/4005-176248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176249/", + "id": 176249, + "name": "Bootsie", + "site_detail_url": "https://comicvine.gamespot.com/bootsie/4005-176249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176250/", + "id": 176250, + "name": "CAL", + "site_detail_url": "https://comicvine.gamespot.com/cal/4005-176250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176253/", + "id": 176253, + "name": "K-7 Waitress", + "site_detail_url": "https://comicvine.gamespot.com/k-7-waitress/4005-176253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176260/", + "id": 176260, + "name": "Nameless, the Shape-Shifter Queen", + "site_detail_url": "https://comicvine.gamespot.com/nameless-the-shape-shifter-queen/4005-176260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176261/", + "id": 176261, + "name": "Kobak Never-Held", + "site_detail_url": "https://comicvine.gamespot.com/kobak-never-held/4005-176261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176266/", + "id": 176266, + "name": "Krell", + "site_detail_url": "https://comicvine.gamespot.com/krell/4005-176266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176286/", + "id": 176286, + "name": "Sights", + "site_detail_url": "https://comicvine.gamespot.com/sights/4005-176286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176288/", + "id": 176288, + "name": "Baron Harkness", + "site_detail_url": "https://comicvine.gamespot.com/baron-harkness/4005-176288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176317/", + "id": 176317, + "name": "Pood", + "site_detail_url": "https://comicvine.gamespot.com/pood/4005-176317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176357/", + "id": 176357, + "name": "Tuvo", + "site_detail_url": "https://comicvine.gamespot.com/tuvo/4005-176357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176382/", + "id": 176382, + "name": "William Jenkins", + "site_detail_url": "https://comicvine.gamespot.com/william-jenkins/4005-176382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176384/", + "id": 176384, + "name": "Morris", + "site_detail_url": "https://comicvine.gamespot.com/morris/4005-176384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176386/", + "id": 176386, + "name": "Granny Staples", + "site_detail_url": "https://comicvine.gamespot.com/granny-staples/4005-176386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176396/", + "id": 176396, + "name": "Ocelot", + "site_detail_url": "https://comicvine.gamespot.com/ocelot/4005-176396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176397/", + "id": 176397, + "name": "Orbit", + "site_detail_url": "https://comicvine.gamespot.com/orbit/4005-176397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176398/", + "id": 176398, + "name": "Ooze", + "site_detail_url": "https://comicvine.gamespot.com/ooze/4005-176398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176399/", + "id": 176399, + "name": "Orifice", + "site_detail_url": "https://comicvine.gamespot.com/orifice/4005-176399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176400/", + "id": 176400, + "name": "Oracle", + "site_detail_url": "https://comicvine.gamespot.com/oracle/4005-176400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176401/", + "id": 176401, + "name": "Oink", + "site_detail_url": "https://comicvine.gamespot.com/oink/4005-176401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176405/", + "id": 176405, + "name": "Reverend Garcia", + "site_detail_url": "https://comicvine.gamespot.com/reverend-garcia/4005-176405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176422/", + "id": 176422, + "name": "Mrs. Wilson", + "site_detail_url": "https://comicvine.gamespot.com/mrs-wilson/4005-176422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176423/", + "id": 176423, + "name": "Ducks", + "site_detail_url": "https://comicvine.gamespot.com/ducks/4005-176423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176434/", + "id": 176434, + "name": "Wayland", + "site_detail_url": "https://comicvine.gamespot.com/wayland/4005-176434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176435/", + "id": 176435, + "name": "Queen Dazboh", + "site_detail_url": "https://comicvine.gamespot.com/queen-dazboh/4005-176435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176436/", + "id": 176436, + "name": "Escher", + "site_detail_url": "https://comicvine.gamespot.com/escher/4005-176436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176437/", + "id": 176437, + "name": "Twodee", + "site_detail_url": "https://comicvine.gamespot.com/twodee/4005-176437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176439/", + "id": 176439, + "name": "Eiger", + "site_detail_url": "https://comicvine.gamespot.com/eiger/4005-176439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176440/", + "id": 176440, + "name": "Lt. Hawk", + "site_detail_url": "https://comicvine.gamespot.com/lt-hawk/4005-176440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176441/", + "id": 176441, + "name": "Admiral Hayes", + "site_detail_url": "https://comicvine.gamespot.com/admiral-hayes/4005-176441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176442/", + "id": 176442, + "name": "Paul Porter", + "site_detail_url": "https://comicvine.gamespot.com/paul-porter/4005-176442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176443/", + "id": 176443, + "name": "Solkar", + "site_detail_url": "https://comicvine.gamespot.com/solkar/4005-176443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176465/", + "id": 176465, + "name": "Kate", + "site_detail_url": "https://comicvine.gamespot.com/kate/4005-176465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176466/", + "id": 176466, + "name": "Lucy", + "site_detail_url": "https://comicvine.gamespot.com/lucy/4005-176466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176467/", + "id": 176467, + "name": "Bumpkin", + "site_detail_url": "https://comicvine.gamespot.com/bumpkin/4005-176467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176468/", + "id": 176468, + "name": "Douglas Hutchison", + "site_detail_url": "https://comicvine.gamespot.com/douglas-hutchison/4005-176468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176469/", + "id": 176469, + "name": "Grace", + "site_detail_url": "https://comicvine.gamespot.com/grace/4005-176469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176470/", + "id": 176470, + "name": "Kiza", + "site_detail_url": "https://comicvine.gamespot.com/kiza/4005-176470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176471/", + "id": 176471, + "name": "Milo Smutts", + "site_detail_url": "https://comicvine.gamespot.com/milo-smutts/4005-176471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176472/", + "id": 176472, + "name": "Poppa", + "site_detail_url": "https://comicvine.gamespot.com/poppa/4005-176472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176473/", + "id": 176473, + "name": "Marc Dale", + "site_detail_url": "https://comicvine.gamespot.com/marc-dale/4005-176473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176474/", + "id": 176474, + "name": "Tasha", + "site_detail_url": "https://comicvine.gamespot.com/tasha/4005-176474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176479/", + "id": 176479, + "name": "Yeji Sul", + "site_detail_url": "https://comicvine.gamespot.com/yeji-sul/4005-176479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176489/", + "id": 176489, + "name": "Galactipool", + "site_detail_url": "https://comicvine.gamespot.com/galactipool/4005-176489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176504/", + "id": 176504, + "name": "Shinko Yamashiro", + "site_detail_url": "https://comicvine.gamespot.com/shinko-yamashiro/4005-176504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176505/", + "id": 176505, + "name": "Takuji Yamashiro", + "site_detail_url": "https://comicvine.gamespot.com/takuji-yamashiro/4005-176505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176506/", + "id": 176506, + "name": "Hiroshi Yamashiro", + "site_detail_url": "https://comicvine.gamespot.com/hiroshi-yamashiro/4005-176506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176507/", + "id": 176507, + "name": "Hitomi Sakuma", + "site_detail_url": "https://comicvine.gamespot.com/hitomi-sakuma/4005-176507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176508/", + "id": 176508, + "name": "Amazoness", + "site_detail_url": "https://comicvine.gamespot.com/amazoness/4005-176508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176510/", + "id": 176510, + "name": "Xecu", + "site_detail_url": "https://comicvine.gamespot.com/xecu/4005-176510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176581/", + "id": 176581, + "name": "Shrine", + "site_detail_url": "https://comicvine.gamespot.com/shrine/4005-176581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176584/", + "id": 176584, + "name": "Antoni", + "site_detail_url": "https://comicvine.gamespot.com/antoni/4005-176584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176585/", + "id": 176585, + "name": "Cara", + "site_detail_url": "https://comicvine.gamespot.com/cara/4005-176585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176586/", + "id": 176586, + "name": "Heather", + "site_detail_url": "https://comicvine.gamespot.com/heather/4005-176586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176587/", + "id": 176587, + "name": "Kyle", + "site_detail_url": "https://comicvine.gamespot.com/kyle/4005-176587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176588/", + "id": 176588, + "name": "Toby", + "site_detail_url": "https://comicvine.gamespot.com/toby/4005-176588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176589/", + "id": 176589, + "name": "Oscar", + "site_detail_url": "https://comicvine.gamespot.com/oscar/4005-176589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176590/", + "id": 176590, + "name": "Jack Freestone", + "site_detail_url": "https://comicvine.gamespot.com/jack-freestone/4005-176590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176591/", + "id": 176591, + "name": "Paint", + "site_detail_url": "https://comicvine.gamespot.com/paint/4005-176591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176592/", + "id": 176592, + "name": "Dervish", + "site_detail_url": "https://comicvine.gamespot.com/dervish/4005-176592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176603/", + "id": 176603, + "name": "Luna", + "site_detail_url": "https://comicvine.gamespot.com/luna/4005-176603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176604/", + "id": 176604, + "name": "Luke", + "site_detail_url": "https://comicvine.gamespot.com/luke/4005-176604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176605/", + "id": 176605, + "name": "Irene Schank", + "site_detail_url": "https://comicvine.gamespot.com/irene-schank/4005-176605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176606/", + "id": 176606, + "name": "Mutalien", + "site_detail_url": "https://comicvine.gamespot.com/mutalien/4005-176606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176608/", + "id": 176608, + "name": "Nightvoid", + "site_detail_url": "https://comicvine.gamespot.com/nightvoid/4005-176608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176609/", + "id": 176609, + "name": "Brian Swaine", + "site_detail_url": "https://comicvine.gamespot.com/brian-swaine/4005-176609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176610/", + "id": 176610, + "name": "Rebecca Agee", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-agee/4005-176610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176611/", + "id": 176611, + "name": "Marilyn Hannah", + "site_detail_url": "https://comicvine.gamespot.com/marilyn-hannah/4005-176611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176613/", + "id": 176613, + "name": "Hector Orozeo", + "site_detail_url": "https://comicvine.gamespot.com/hector-orozeo/4005-176613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176614/", + "id": 176614, + "name": "Ellison Payton", + "site_detail_url": "https://comicvine.gamespot.com/ellison-payton/4005-176614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176696/", + "id": 176696, + "name": "Sonny Bean", + "site_detail_url": "https://comicvine.gamespot.com/sonny-bean/4005-176696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176697/", + "id": 176697, + "name": "Arthur Swift", + "site_detail_url": "https://comicvine.gamespot.com/arthur-swift/4005-176697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176699/", + "id": 176699, + "name": "Ao Jun", + "site_detail_url": "https://comicvine.gamespot.com/ao-jun/4005-176699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176702/", + "id": 176702, + "name": "Bludgeon", + "site_detail_url": "https://comicvine.gamespot.com/bludgeon/4005-176702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176703/", + "id": 176703, + "name": "Chela", + "site_detail_url": "https://comicvine.gamespot.com/chela/4005-176703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176704/", + "id": 176704, + "name": "Clive Vickers", + "site_detail_url": "https://comicvine.gamespot.com/clive-vickers/4005-176704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176705/", + "id": 176705, + "name": "Ms. Fingers", + "site_detail_url": "https://comicvine.gamespot.com/ms-fingers/4005-176705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176706/", + "id": 176706, + "name": "Oswald", + "site_detail_url": "https://comicvine.gamespot.com/oswald/4005-176706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176709/", + "id": 176709, + "name": "Jake ", + "site_detail_url": "https://comicvine.gamespot.com/jake/4005-176709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176710/", + "id": 176710, + "name": "Sister Bonita", + "site_detail_url": "https://comicvine.gamespot.com/sister-bonita/4005-176710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176711/", + "id": 176711, + "name": "Connie Moore", + "site_detail_url": "https://comicvine.gamespot.com/connie-moore/4005-176711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176713/", + "id": 176713, + "name": "Hulkbuster", + "site_detail_url": "https://comicvine.gamespot.com/hulkbuster/4005-176713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176715/", + "id": 176715, + "name": "Inza Cuzco", + "site_detail_url": "https://comicvine.gamespot.com/inza-cuzco/4005-176715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176717/", + "id": 176717, + "name": "Teresa", + "site_detail_url": "https://comicvine.gamespot.com/teresa/4005-176717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176718/", + "id": 176718, + "name": "Maria", + "site_detail_url": "https://comicvine.gamespot.com/maria/4005-176718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176719/", + "id": 176719, + "name": "Soft Serve", + "site_detail_url": "https://comicvine.gamespot.com/soft-serve/4005-176719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176722/", + "id": 176722, + "name": "Marinda", + "site_detail_url": "https://comicvine.gamespot.com/marinda/4005-176722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176724/", + "id": 176724, + "name": "Paradise", + "site_detail_url": "https://comicvine.gamespot.com/paradise/4005-176724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176730/", + "id": 176730, + "name": "Musclehead", + "site_detail_url": "https://comicvine.gamespot.com/musclehead/4005-176730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176731/", + "id": 176731, + "name": "Juliana Jararaca", + "site_detail_url": "https://comicvine.gamespot.com/juliana-jararaca/4005-176731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176732/", + "id": 176732, + "name": "Thiago Piranha", + "site_detail_url": "https://comicvine.gamespot.com/thiago-piranha/4005-176732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176733/", + "id": 176733, + "name": "Xande", + "site_detail_url": "https://comicvine.gamespot.com/xande/4005-176733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176734/", + "id": 176734, + "name": "Lazarus Ganglion", + "site_detail_url": "https://comicvine.gamespot.com/lazarus-ganglion/4005-176734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176735/", + "id": 176735, + "name": "Chetfield Murray", + "site_detail_url": "https://comicvine.gamespot.com/chetfield-murray/4005-176735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176736/", + "id": 176736, + "name": "Jo", + "site_detail_url": "https://comicvine.gamespot.com/jo/4005-176736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176737/", + "id": 176737, + "name": "Apache Kid (Rosa)", + "site_detail_url": "https://comicvine.gamespot.com/apache-kid-rosa/4005-176737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176738/", + "id": 176738, + "name": "Marlena Petrokova", + "site_detail_url": "https://comicvine.gamespot.com/marlena-petrokova/4005-176738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176742/", + "id": 176742, + "name": "Lobster-Man", + "site_detail_url": "https://comicvine.gamespot.com/lobster-man/4005-176742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176744/", + "id": 176744, + "name": "Phillip", + "site_detail_url": "https://comicvine.gamespot.com/phillip/4005-176744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176746/", + "id": 176746, + "name": "Josette", + "site_detail_url": "https://comicvine.gamespot.com/josette/4005-176746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176747/", + "id": 176747, + "name": "Mandy", + "site_detail_url": "https://comicvine.gamespot.com/mandy/4005-176747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176748/", + "id": 176748, + "name": "Peter", + "site_detail_url": "https://comicvine.gamespot.com/peter/4005-176748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176749/", + "id": 176749, + "name": "Sanji Yamamoto", + "site_detail_url": "https://comicvine.gamespot.com/sanji-yamamoto/4005-176749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176750/", + "id": 176750, + "name": "Scree", + "site_detail_url": "https://comicvine.gamespot.com/scree/4005-176750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176751/", + "id": 176751, + "name": "Teddy Matson", + "site_detail_url": "https://comicvine.gamespot.com/teddy-matson/4005-176751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176752/", + "id": 176752, + "name": "Tommy Reichert", + "site_detail_url": "https://comicvine.gamespot.com/tommy-reichert/4005-176752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176753/", + "id": 176753, + "name": "Vampyr", + "site_detail_url": "https://comicvine.gamespot.com/vampyr/4005-176753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176754/", + "id": 176754, + "name": "Vladimir Zaitsev", + "site_detail_url": "https://comicvine.gamespot.com/vladimir-zaitsev/4005-176754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176755/", + "id": 176755, + "name": "Aurelia Santiago", + "site_detail_url": "https://comicvine.gamespot.com/aurelia-santiago/4005-176755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176756/", + "id": 176756, + "name": "Billy Taylor", + "site_detail_url": "https://comicvine.gamespot.com/billy-taylor/4005-176756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176757/", + "id": 176757, + "name": "Wendy Taylor", + "site_detail_url": "https://comicvine.gamespot.com/wendy-taylor/4005-176757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176758/", + "id": 176758, + "name": "Mrs. Taylor", + "site_detail_url": "https://comicvine.gamespot.com/mrs-taylor/4005-176758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176759/", + "id": 176759, + "name": "Mr. Taylor", + "site_detail_url": "https://comicvine.gamespot.com/mr-taylor/4005-176759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176760/", + "id": 176760, + "name": "Tamara", + "site_detail_url": "https://comicvine.gamespot.com/tamara/4005-176760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176761/", + "id": 176761, + "name": "Faye Livingstone", + "site_detail_url": "https://comicvine.gamespot.com/faye-livingstone/4005-176761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176762/", + "id": 176762, + "name": "Whitney James", + "site_detail_url": "https://comicvine.gamespot.com/whitney-james/4005-176762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176764/", + "id": 176764, + "name": "Asher Cross", + "site_detail_url": "https://comicvine.gamespot.com/asher-cross/4005-176764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176765/", + "id": 176765, + "name": "Brian Morrison", + "site_detail_url": "https://comicvine.gamespot.com/brian-morrison/4005-176765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176766/", + "id": 176766, + "name": "Mr. Nance", + "site_detail_url": "https://comicvine.gamespot.com/mr-nance/4005-176766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176767/", + "id": 176767, + "name": "Skelter", + "site_detail_url": "https://comicvine.gamespot.com/skelter/4005-176767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176769/", + "id": 176769, + "name": "Gun-Barrel Kid ", + "site_detail_url": "https://comicvine.gamespot.com/gun-barrel-kid/4005-176769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176770/", + "id": 176770, + "name": "Hulk Simon ", + "site_detail_url": "https://comicvine.gamespot.com/hulk-simon/4005-176770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176771/", + "id": 176771, + "name": "Sam Dunbrow", + "site_detail_url": "https://comicvine.gamespot.com/sam-dunbrow/4005-176771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176772/", + "id": 176772, + "name": "Ashton Wither", + "site_detail_url": "https://comicvine.gamespot.com/ashton-wither/4005-176772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176773/", + "id": 176773, + "name": "Malcolm Whitman", + "site_detail_url": "https://comicvine.gamespot.com/malcolm-whitman/4005-176773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176774/", + "id": 176774, + "name": "Mutate 24-601", + "site_detail_url": "https://comicvine.gamespot.com/mutate-24-601/4005-176774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176775/", + "id": 176775, + "name": "Piecemeal", + "site_detail_url": "https://comicvine.gamespot.com/piecemeal/4005-176775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176776/", + "id": 176776, + "name": "Ricochet", + "site_detail_url": "https://comicvine.gamespot.com/ricochet/4005-176776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176777/", + "id": 176777, + "name": "Vincent Bloch", + "site_detail_url": "https://comicvine.gamespot.com/vincent-bloch/4005-176777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176778/", + "id": 176778, + "name": "Wesley Robb", + "site_detail_url": "https://comicvine.gamespot.com/wesley-robb/4005-176778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176779/", + "id": 176779, + "name": "Antonio Aggasiz", + "site_detail_url": "https://comicvine.gamespot.com/antonio-aggasiz/4005-176779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176780/", + "id": 176780, + "name": "Gordon Lefferts", + "site_detail_url": "https://comicvine.gamespot.com/gordon-lefferts/4005-176780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176781/", + "id": 176781, + "name": "Gregori", + "site_detail_url": "https://comicvine.gamespot.com/gregori/4005-176781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176782/", + "id": 176782, + "name": "Short Circuit", + "site_detail_url": "https://comicvine.gamespot.com/short-circuit/4005-176782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176783/", + "id": 176783, + "name": "Jonathan McFee", + "site_detail_url": "https://comicvine.gamespot.com/jonathan-mcfee/4005-176783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176784/", + "id": 176784, + "name": "Lewis Hammond", + "site_detail_url": "https://comicvine.gamespot.com/lewis-hammond/4005-176784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176785/", + "id": 176785, + "name": "Selena Ciscernos", + "site_detail_url": "https://comicvine.gamespot.com/selena-ciscernos/4005-176785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176786/", + "id": 176786, + "name": "Ms. Kaufman", + "site_detail_url": "https://comicvine.gamespot.com/ms-kaufman/4005-176786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176787/", + "id": 176787, + "name": "Matvey Tarasov", + "site_detail_url": "https://comicvine.gamespot.com/matvey-tarasov/4005-176787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176788/", + "id": 176788, + "name": "Vanna Herald", + "site_detail_url": "https://comicvine.gamespot.com/vanna-herald/4005-176788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176789/", + "id": 176789, + "name": "Zalme", + "site_detail_url": "https://comicvine.gamespot.com/zalme/4005-176789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176790/", + "id": 176790, + "name": "Benji", + "site_detail_url": "https://comicvine.gamespot.com/benji/4005-176790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176791/", + "id": 176791, + "name": "David Montgomery", + "site_detail_url": "https://comicvine.gamespot.com/david-montgomery/4005-176791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176792/", + "id": 176792, + "name": "Ahmed ", + "site_detail_url": "https://comicvine.gamespot.com/ahmed/4005-176792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176793/", + "id": 176793, + "name": "Sarah", + "site_detail_url": "https://comicvine.gamespot.com/sarah/4005-176793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176794/", + "id": 176794, + "name": "Andrea Hobbes", + "site_detail_url": "https://comicvine.gamespot.com/andrea-hobbes/4005-176794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176795/", + "id": 176795, + "name": "Walker Hobbes", + "site_detail_url": "https://comicvine.gamespot.com/walker-hobbes/4005-176795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176801/", + "id": 176801, + "name": "Carl", + "site_detail_url": "https://comicvine.gamespot.com/carl/4005-176801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176802/", + "id": 176802, + "name": "Colin", + "site_detail_url": "https://comicvine.gamespot.com/colin/4005-176802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176805/", + "id": 176805, + "name": "Matthew ", + "site_detail_url": "https://comicvine.gamespot.com/matthew/4005-176805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176806/", + "id": 176806, + "name": "Alina", + "site_detail_url": "https://comicvine.gamespot.com/alina/4005-176806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176807/", + "id": 176807, + "name": "Sandra Chen", + "site_detail_url": "https://comicvine.gamespot.com/sandra-chen/4005-176807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176808/", + "id": 176808, + "name": "Father Phillip", + "site_detail_url": "https://comicvine.gamespot.com/father-phillip/4005-176808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176809/", + "id": 176809, + "name": "Beth", + "site_detail_url": "https://comicvine.gamespot.com/beth/4005-176809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176810/", + "id": 176810, + "name": "Michael", + "site_detail_url": "https://comicvine.gamespot.com/michael/4005-176810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176811/", + "id": 176811, + "name": "Blowhard", + "site_detail_url": "https://comicvine.gamespot.com/blowhard/4005-176811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176812/", + "id": 176812, + "name": "Voodoo", + "site_detail_url": "https://comicvine.gamespot.com/voodoo/4005-176812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176813/", + "id": 176813, + "name": "Slimeball", + "site_detail_url": "https://comicvine.gamespot.com/slimeball/4005-176813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176814/", + "id": 176814, + "name": "Buzzsaw", + "site_detail_url": "https://comicvine.gamespot.com/buzzsaw/4005-176814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176815/", + "id": 176815, + "name": "Mohawk", + "site_detail_url": "https://comicvine.gamespot.com/mohawk/4005-176815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176818/", + "id": 176818, + "name": "Lazarus ", + "site_detail_url": "https://comicvine.gamespot.com/lazarus/4005-176818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176822/", + "id": 176822, + "name": "Alphonse", + "site_detail_url": "https://comicvine.gamespot.com/alphonse/4005-176822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176823/", + "id": 176823, + "name": "Stone", + "site_detail_url": "https://comicvine.gamespot.com/stone/4005-176823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176824/", + "id": 176824, + "name": "Gary Peterson", + "site_detail_url": "https://comicvine.gamespot.com/gary-peterson/4005-176824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176825/", + "id": 176825, + "name": "Collider", + "site_detail_url": "https://comicvine.gamespot.com/collider/4005-176825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176826/", + "id": 176826, + "name": "Jeannie Martin", + "site_detail_url": "https://comicvine.gamespot.com/jeannie-martin/4005-176826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176827/", + "id": 176827, + "name": "John Mairs", + "site_detail_url": "https://comicvine.gamespot.com/john-mairs/4005-176827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176828/", + "id": 176828, + "name": "Minnie Floyd", + "site_detail_url": "https://comicvine.gamespot.com/minnie-floyd/4005-176828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176829/", + "id": 176829, + "name": "Nelson Cragg", + "site_detail_url": "https://comicvine.gamespot.com/nelson-cragg/4005-176829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176830/", + "id": 176830, + "name": "Tim Hacker", + "site_detail_url": "https://comicvine.gamespot.com/tim-hacker/4005-176830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176831/", + "id": 176831, + "name": "Susan Catrini", + "site_detail_url": "https://comicvine.gamespot.com/susan-catrini/4005-176831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176835/", + "id": 176835, + "name": "Anne", + "site_detail_url": "https://comicvine.gamespot.com/anne/4005-176835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176836/", + "id": 176836, + "name": "Charmaine Grand", + "site_detail_url": "https://comicvine.gamespot.com/charmaine-grand/4005-176836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176837/", + "id": 176837, + "name": "Baby", + "site_detail_url": "https://comicvine.gamespot.com/baby/4005-176837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176838/", + "id": 176838, + "name": "Raya", + "site_detail_url": "https://comicvine.gamespot.com/raya/4005-176838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176839/", + "id": 176839, + "name": "Jason", + "site_detail_url": "https://comicvine.gamespot.com/jason/4005-176839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176840/", + "id": 176840, + "name": "Janine", + "site_detail_url": "https://comicvine.gamespot.com/janine/4005-176840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176841/", + "id": 176841, + "name": "Theo", + "site_detail_url": "https://comicvine.gamespot.com/theo/4005-176841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176842/", + "id": 176842, + "name": "Gabbi Sotelo", + "site_detail_url": "https://comicvine.gamespot.com/gabbi-sotelo/4005-176842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176843/", + "id": 176843, + "name": "Dia Sloane", + "site_detail_url": "https://comicvine.gamespot.com/dia-sloane/4005-176843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176844/", + "id": 176844, + "name": "Glowboy", + "site_detail_url": "https://comicvine.gamespot.com/glowboy/4005-176844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176845/", + "id": 176845, + "name": "Neil Langram", + "site_detail_url": "https://comicvine.gamespot.com/neil-langram/4005-176845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176846/", + "id": 176846, + "name": "Glowbrie", + "site_detail_url": "https://comicvine.gamespot.com/glowbrie/4005-176846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176847/", + "id": 176847, + "name": "Slamazon", + "site_detail_url": "https://comicvine.gamespot.com/slamazon/4005-176847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176848/", + "id": 176848, + "name": "Gerhart", + "site_detail_url": "https://comicvine.gamespot.com/gerhart/4005-176848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176854/", + "id": 176854, + "name": "Jonathon White", + "site_detail_url": "https://comicvine.gamespot.com/jonathon-white/4005-176854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176855/", + "id": 176855, + "name": "Alesky", + "site_detail_url": "https://comicvine.gamespot.com/alesky/4005-176855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176856/", + "id": 176856, + "name": "Antonio Fernandez", + "site_detail_url": "https://comicvine.gamespot.com/antonio-fernandez/4005-176856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176857/", + "id": 176857, + "name": "Grimlock", + "site_detail_url": "https://comicvine.gamespot.com/grimlock/4005-176857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176858/", + "id": 176858, + "name": "Mr. Poklemba", + "site_detail_url": "https://comicvine.gamespot.com/mr-poklemba/4005-176858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176859/", + "id": 176859, + "name": "Julian", + "site_detail_url": "https://comicvine.gamespot.com/julian/4005-176859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176860/", + "id": 176860, + "name": "Genus", + "site_detail_url": "https://comicvine.gamespot.com/genus/4005-176860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176861/", + "id": 176861, + "name": "Pete Gehringer", + "site_detail_url": "https://comicvine.gamespot.com/pete-gehringer/4005-176861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176862/", + "id": 176862, + "name": "King", + "site_detail_url": "https://comicvine.gamespot.com/king/4005-176862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176863/", + "id": 176863, + "name": "Knight", + "site_detail_url": "https://comicvine.gamespot.com/knight/4005-176863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176864/", + "id": 176864, + "name": "Rook", + "site_detail_url": "https://comicvine.gamespot.com/rook/4005-176864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176865/", + "id": 176865, + "name": "Lash", + "site_detail_url": "https://comicvine.gamespot.com/lash/4005-176865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176866/", + "id": 176866, + "name": "Jonas Murphy", + "site_detail_url": "https://comicvine.gamespot.com/jonas-murphy/4005-176866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176867/", + "id": 176867, + "name": "Whisper", + "site_detail_url": "https://comicvine.gamespot.com/whisper/4005-176867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176868/", + "id": 176868, + "name": "Snake", + "site_detail_url": "https://comicvine.gamespot.com/snake/4005-176868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176869/", + "id": 176869, + "name": "Skitter", + "site_detail_url": "https://comicvine.gamespot.com/skitter/4005-176869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176870/", + "id": 176870, + "name": "Jemail Karami", + "site_detail_url": "https://comicvine.gamespot.com/jemail-karami/4005-176870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176871/", + "id": 176871, + "name": "Ronny", + "site_detail_url": "https://comicvine.gamespot.com/ronny/4005-176871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176872/", + "id": 176872, + "name": "Philip", + "site_detail_url": "https://comicvine.gamespot.com/philip/4005-176872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176873/", + "id": 176873, + "name": "Firebolt", + "site_detail_url": "https://comicvine.gamespot.com/firebolt/4005-176873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176874/", + "id": 176874, + "name": "Rebecca Sloan", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-sloan/4005-176874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176875/", + "id": 176875, + "name": "Gretchen Carrenna", + "site_detail_url": "https://comicvine.gamespot.com/gretchen-carrenna/4005-176875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176876/", + "id": 176876, + "name": "Hattie Saint-Ange", + "site_detail_url": "https://comicvine.gamespot.com/hattie-saint-ange/4005-176876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176877/", + "id": 176877, + "name": "Leonard Gary", + "site_detail_url": "https://comicvine.gamespot.com/leonard-gary/4005-176877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176878/", + "id": 176878, + "name": "Bethany Bellamy", + "site_detail_url": "https://comicvine.gamespot.com/bethany-bellamy/4005-176878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176879/", + "id": 176879, + "name": "Wynter", + "site_detail_url": "https://comicvine.gamespot.com/wynter/4005-176879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176880/", + "id": 176880, + "name": "Sabre", + "site_detail_url": "https://comicvine.gamespot.com/sabre/4005-176880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176881/", + "id": 176881, + "name": "Ms. Yoshida", + "site_detail_url": "https://comicvine.gamespot.com/ms-yoshida/4005-176881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176889/", + "id": 176889, + "name": "Mr. Beckham", + "site_detail_url": "https://comicvine.gamespot.com/mr-beckham/4005-176889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176890/", + "id": 176890, + "name": "Helen Burnside", + "site_detail_url": "https://comicvine.gamespot.com/helen-burnside/4005-176890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176948/", + "id": 176948, + "name": "Iggy Nutmeg", + "site_detail_url": "https://comicvine.gamespot.com/iggy-nutmeg/4005-176948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176950/", + "id": 176950, + "name": "Muggsy Faber", + "site_detail_url": "https://comicvine.gamespot.com/muggsy-faber/4005-176950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176972/", + "id": 176972, + "name": "Junjie", + "site_detail_url": "https://comicvine.gamespot.com/junjie/4005-176972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176973/", + "id": 176973, + "name": "Grandma Nutmeg", + "site_detail_url": "https://comicvine.gamespot.com/grandma-nutmeg/4005-176973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176974/", + "id": 176974, + "name": "Grandpa Nutmeg", + "site_detail_url": "https://comicvine.gamespot.com/grandpa-nutmeg/4005-176974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176980/", + "id": 176980, + "name": "Willy", + "site_detail_url": "https://comicvine.gamespot.com/willy/4005-176980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176981/", + "id": 176981, + "name": "Scooper", + "site_detail_url": "https://comicvine.gamespot.com/scooper/4005-176981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176993/", + "id": 176993, + "name": "Morrison", + "site_detail_url": "https://comicvine.gamespot.com/morrison/4005-176993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176994/", + "id": 176994, + "name": "Grandma Wang", + "site_detail_url": "https://comicvine.gamespot.com/grandma-wang/4005-176994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176995/", + "id": 176995, + "name": "Baba Maximoff", + "site_detail_url": "https://comicvine.gamespot.com/baba-maximoff/4005-176995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176996/", + "id": 176996, + "name": "Ducharme ", + "site_detail_url": "https://comicvine.gamespot.com/ducharme/4005-176996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-176997/", + "id": 176997, + "name": "Juliette", + "site_detail_url": "https://comicvine.gamespot.com/juliette/4005-176997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177004/", + "id": 177004, + "name": "Gummy", + "site_detail_url": "https://comicvine.gamespot.com/gummy/4005-177004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177005/", + "id": 177005, + "name": "Ascott", + "site_detail_url": "https://comicvine.gamespot.com/ascott/4005-177005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177006/", + "id": 177006, + "name": "Jim Osborn", + "site_detail_url": "https://comicvine.gamespot.com/jim-osborn/4005-177006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177010/", + "id": 177010, + "name": "Rufus", + "site_detail_url": "https://comicvine.gamespot.com/rufus/4005-177010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177069/", + "id": 177069, + "name": "Brrkk", + "site_detail_url": "https://comicvine.gamespot.com/brrkk/4005-177069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177073/", + "id": 177073, + "name": "Enjana Dax", + "site_detail_url": "https://comicvine.gamespot.com/enjana-dax/4005-177073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177074/", + "id": 177074, + "name": "Brielle", + "site_detail_url": "https://comicvine.gamespot.com/brielle/4005-177074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177087/", + "id": 177087, + "name": "Kwai", + "site_detail_url": "https://comicvine.gamespot.com/kwai/4005-177087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177088/", + "id": 177088, + "name": "Shareen", + "site_detail_url": "https://comicvine.gamespot.com/shareen/4005-177088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177109/", + "id": 177109, + "name": "Jenny Quinn", + "site_detail_url": "https://comicvine.gamespot.com/jenny-quinn/4005-177109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177166/", + "id": 177166, + "name": "Fisher King", + "site_detail_url": "https://comicvine.gamespot.com/fisher-king/4005-177166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177167/", + "id": 177167, + "name": "Mei Min", + "site_detail_url": "https://comicvine.gamespot.com/mei-min/4005-177167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177168/", + "id": 177168, + "name": "Yang Yi", + "site_detail_url": "https://comicvine.gamespot.com/yang-yi/4005-177168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177173/", + "id": 177173, + "name": "Lin Feng", + "site_detail_url": "https://comicvine.gamespot.com/lin-feng/4005-177173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177189/", + "id": 177189, + "name": "Drakon Ismenios", + "site_detail_url": "https://comicvine.gamespot.com/drakon-ismenios/4005-177189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177190/", + "id": 177190, + "name": "Detective Mantegna", + "site_detail_url": "https://comicvine.gamespot.com/detective-mantegna/4005-177190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177193/", + "id": 177193, + "name": "Egor", + "site_detail_url": "https://comicvine.gamespot.com/egor/4005-177193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177202/", + "id": 177202, + "name": "Khruul ", + "site_detail_url": "https://comicvine.gamespot.com/khruul/4005-177202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177312/", + "id": 177312, + "name": "Whoosh ", + "site_detail_url": "https://comicvine.gamespot.com/whoosh/4005-177312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177313/", + "id": 177313, + "name": "Stripe ", + "site_detail_url": "https://comicvine.gamespot.com/stripe/4005-177313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177314/", + "id": 177314, + "name": "Fluff ", + "site_detail_url": "https://comicvine.gamespot.com/fluff/4005-177314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177316/", + "id": 177316, + "name": "George Grey", + "site_detail_url": "https://comicvine.gamespot.com/george-grey/4005-177316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177317/", + "id": 177317, + "name": "Ape Horgon", + "site_detail_url": "https://comicvine.gamespot.com/ape-horgon/4005-177317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177318/", + "id": 177318, + "name": "Sad Sam Simms", + "site_detail_url": "https://comicvine.gamespot.com/sad-sam-simms/4005-177318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177390/", + "id": 177390, + "name": "Weaponless Zsen", + "site_detail_url": "https://comicvine.gamespot.com/weaponless-zsen/4005-177390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177391/", + "id": 177391, + "name": "Saoirse", + "site_detail_url": "https://comicvine.gamespot.com/saoirse/4005-177391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177392/", + "id": 177392, + "name": "Dr Peter Alraune Jr", + "site_detail_url": "https://comicvine.gamespot.com/dr-peter-alraune-jr/4005-177392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177403/", + "id": 177403, + "name": "Mother Righteous", + "site_detail_url": "https://comicvine.gamespot.com/mother-righteous/4005-177403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177424/", + "id": 177424, + "name": "Joe", + "site_detail_url": "https://comicvine.gamespot.com/joe/4005-177424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177449/", + "id": 177449, + "name": "Ora Serrata", + "site_detail_url": "https://comicvine.gamespot.com/ora-serrata/4005-177449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177450/", + "id": 177450, + "name": "The Pall", + "site_detail_url": "https://comicvine.gamespot.com/the-pall/4005-177450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177467/", + "id": 177467, + "name": "Reno Eddie", + "site_detail_url": "https://comicvine.gamespot.com/reno-eddie/4005-177467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177533/", + "id": 177533, + "name": "Druid Walsh", + "site_detail_url": "https://comicvine.gamespot.com/druid-walsh/4005-177533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177537/", + "id": 177537, + "name": "Lewis", + "site_detail_url": "https://comicvine.gamespot.com/lewis/4005-177537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177538/", + "id": 177538, + "name": "Lenny", + "site_detail_url": "https://comicvine.gamespot.com/lenny/4005-177538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177539/", + "id": 177539, + "name": "Douglas Brenner", + "site_detail_url": "https://comicvine.gamespot.com/douglas-brenner/4005-177539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177540/", + "id": 177540, + "name": "Richardson", + "site_detail_url": "https://comicvine.gamespot.com/richardson/4005-177540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177568/", + "id": 177568, + "name": "Captain Bretland", + "site_detail_url": "https://comicvine.gamespot.com/captain-bretland/4005-177568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177569/", + "id": 177569, + "name": "Elspeth Braddock", + "site_detail_url": "https://comicvine.gamespot.com/elspeth-braddock/4005-177569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177601/", + "id": 177601, + "name": "Tanka", + "site_detail_url": "https://comicvine.gamespot.com/tanka/4005-177601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177602/", + "id": 177602, + "name": "S'ira", + "site_detail_url": "https://comicvine.gamespot.com/sira/4005-177602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177604/", + "id": 177604, + "name": "Wald", + "site_detail_url": "https://comicvine.gamespot.com/wald/4005-177604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177605/", + "id": 177605, + "name": "Zebadiah", + "site_detail_url": "https://comicvine.gamespot.com/zebadiah/4005-177605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177606/", + "id": 177606, + "name": "Alabaster", + "site_detail_url": "https://comicvine.gamespot.com/alabaster/4005-177606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177607/", + "id": 177607, + "name": "Director None", + "site_detail_url": "https://comicvine.gamespot.com/director-none/4005-177607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177609/", + "id": 177609, + "name": "Professor Frye", + "site_detail_url": "https://comicvine.gamespot.com/professor-frye/4005-177609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177610/", + "id": 177610, + "name": "Ozu", + "site_detail_url": "https://comicvine.gamespot.com/ozu/4005-177610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177611/", + "id": 177611, + "name": "Queen Elizabeth III", + "site_detail_url": "https://comicvine.gamespot.com/queen-elizabeth-iii/4005-177611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177666/", + "id": 177666, + "name": "Bambi", + "site_detail_url": "https://comicvine.gamespot.com/bambi/4005-177666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177688/", + "id": 177688, + "name": "Ghan", + "site_detail_url": "https://comicvine.gamespot.com/ghan/4005-177688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177756/", + "id": 177756, + "name": "Cormorant", + "site_detail_url": "https://comicvine.gamespot.com/cormorant/4005-177756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177757/", + "id": 177757, + "name": "Helmsman", + "site_detail_url": "https://comicvine.gamespot.com/helmsman/4005-177757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177758/", + "id": 177758, + "name": "Wrath", + "site_detail_url": "https://comicvine.gamespot.com/wrath/4005-177758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177766/", + "id": 177766, + "name": "Cookie Novak", + "site_detail_url": "https://comicvine.gamespot.com/cookie-novak/4005-177766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177770/", + "id": 177770, + "name": "Escapade", + "site_detail_url": "https://comicvine.gamespot.com/escapade/4005-177770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177829/", + "id": 177829, + "name": "Richard Salmons", + "site_detail_url": "https://comicvine.gamespot.com/richard-salmons/4005-177829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177880/", + "id": 177880, + "name": "Amari", + "site_detail_url": "https://comicvine.gamespot.com/amari/4005-177880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177881/", + "id": 177881, + "name": "David", + "site_detail_url": "https://comicvine.gamespot.com/david/4005-177881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177882/", + "id": 177882, + "name": "Mia", + "site_detail_url": "https://comicvine.gamespot.com/mia/4005-177882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177883/", + "id": 177883, + "name": "Hudson", + "site_detail_url": "https://comicvine.gamespot.com/hudson/4005-177883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177885/", + "id": 177885, + "name": "John", + "site_detail_url": "https://comicvine.gamespot.com/john/4005-177885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177886/", + "id": 177886, + "name": "Pam", + "site_detail_url": "https://comicvine.gamespot.com/pam/4005-177886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177919/", + "id": 177919, + "name": "Bhim Prabhakar", + "site_detail_url": "https://comicvine.gamespot.com/bhim-prabhakar/4005-177919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177920/", + "id": 177920, + "name": "Maya Prabhakar", + "site_detail_url": "https://comicvine.gamespot.com/maya-prabhakar/4005-177920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177938/", + "id": 177938, + "name": "Dynamus", + "site_detail_url": "https://comicvine.gamespot.com/dynamus/4005-177938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177939/", + "id": 177939, + "name": "Archivus", + "site_detail_url": "https://comicvine.gamespot.com/archivus/4005-177939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-177944/", + "id": 177944, + "name": "Soldier", + "site_detail_url": "https://comicvine.gamespot.com/soldier/4005-177944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178034/", + "id": 178034, + "name": "Tamara Blake ", + "site_detail_url": "https://comicvine.gamespot.com/tamara-blake/4005-178034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178044/", + "id": 178044, + "name": "Soldier Supreme", + "site_detail_url": "https://comicvine.gamespot.com/soldier-supreme/4005-178044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178054/", + "id": 178054, + "name": "Pity Girl", + "site_detail_url": "https://comicvine.gamespot.com/pity-girl/4005-178054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178055/", + "id": 178055, + "name": "Aphelion", + "site_detail_url": "https://comicvine.gamespot.com/aphelion/4005-178055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178056/", + "id": 178056, + "name": "Good Arson", + "site_detail_url": "https://comicvine.gamespot.com/good-arson/4005-178056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178057/", + "id": 178057, + "name": "Hawthorne Rayn", + "site_detail_url": "https://comicvine.gamespot.com/hawthorne-rayn/4005-178057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178068/", + "id": 178068, + "name": "Archer Lyle", + "site_detail_url": "https://comicvine.gamespot.com/archer-lyle/4005-178068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178069/", + "id": 178069, + "name": "Wilde", + "site_detail_url": "https://comicvine.gamespot.com/wilde/4005-178069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178070/", + "id": 178070, + "name": "Tyro", + "site_detail_url": "https://comicvine.gamespot.com/tyro/4005-178070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178071/", + "id": 178071, + "name": "Finnegan", + "site_detail_url": "https://comicvine.gamespot.com/finnegan/4005-178071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178072/", + "id": 178072, + "name": "Warstar", + "site_detail_url": "https://comicvine.gamespot.com/warstar/4005-178072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178112/", + "id": 178112, + "name": "Dora", + "site_detail_url": "https://comicvine.gamespot.com/dora/4005-178112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178113/", + "id": 178113, + "name": "Imani", + "site_detail_url": "https://comicvine.gamespot.com/imani/4005-178113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178129/", + "id": 178129, + "name": "The Artist", + "site_detail_url": "https://comicvine.gamespot.com/the-artist/4005-178129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178130/", + "id": 178130, + "name": "Jon Shayde", + "site_detail_url": "https://comicvine.gamespot.com/jon-shayde/4005-178130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178135/", + "id": 178135, + "name": "Zeiste", + "site_detail_url": "https://comicvine.gamespot.com/zeiste/4005-178135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178174/", + "id": 178174, + "name": "Aphrodite Ourania", + "site_detail_url": "https://comicvine.gamespot.com/aphrodite-ourania/4005-178174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178183/", + "id": 178183, + "name": "Tutor", + "site_detail_url": "https://comicvine.gamespot.com/tutor/4005-178183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178186/", + "id": 178186, + "name": "Archpriestess", + "site_detail_url": "https://comicvine.gamespot.com/archpriestess/4005-178186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178219/", + "id": 178219, + "name": "Hilary Astrovik", + "site_detail_url": "https://comicvine.gamespot.com/hilary-astrovik/4005-178219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178227/", + "id": 178227, + "name": "Frankie", + "site_detail_url": "https://comicvine.gamespot.com/frankie/4005-178227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178228/", + "id": 178228, + "name": "Lenny", + "site_detail_url": "https://comicvine.gamespot.com/lenny/4005-178228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178242/", + "id": 178242, + "name": "Ghost Ronin", + "site_detail_url": "https://comicvine.gamespot.com/ghost-ronin/4005-178242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178243/", + "id": 178243, + "name": "Switchback", + "site_detail_url": "https://comicvine.gamespot.com/switchback/4005-178243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178249/", + "id": 178249, + "name": "Red Cannon", + "site_detail_url": "https://comicvine.gamespot.com/red-cannon/4005-178249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178268/", + "id": 178268, + "name": "Rocky", + "site_detail_url": "https://comicvine.gamespot.com/rocky/4005-178268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178269/", + "id": 178269, + "name": "Adrian", + "site_detail_url": "https://comicvine.gamespot.com/adrian/4005-178269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178285/", + "id": 178285, + "name": "Joe Faces", + "site_detail_url": "https://comicvine.gamespot.com/joe-faces/4005-178285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178302/", + "id": 178302, + "name": "Zarina Zahari", + "site_detail_url": "https://comicvine.gamespot.com/zarina-zahari/4005-178302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178312/", + "id": 178312, + "name": "April", + "site_detail_url": "https://comicvine.gamespot.com/april/4005-178312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178317/", + "id": 178317, + "name": "Starbrand Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/starbrand-dinosaur/4005-178317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178324/", + "id": 178324, + "name": "Sabine", + "site_detail_url": "https://comicvine.gamespot.com/sabine/4005-178324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178325/", + "id": 178325, + "name": "Ant-Man of 2549", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-of-2549/4005-178325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178326/", + "id": 178326, + "name": "McCallum", + "site_detail_url": "https://comicvine.gamespot.com/mccallum/4005-178326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178327/", + "id": 178327, + "name": "Rascol", + "site_detail_url": "https://comicvine.gamespot.com/rascol/4005-178327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178354/", + "id": 178354, + "name": "Etienne", + "site_detail_url": "https://comicvine.gamespot.com/etienne/4005-178354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178389/", + "id": 178389, + "name": "Nemean", + "site_detail_url": "https://comicvine.gamespot.com/nemean/4005-178389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178390/", + "id": 178390, + "name": "Grand Mal", + "site_detail_url": "https://comicvine.gamespot.com/grand-mal/4005-178390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178391/", + "id": 178391, + "name": "Tumult", + "site_detail_url": "https://comicvine.gamespot.com/tumult/4005-178391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178423/", + "id": 178423, + "name": "PuriFire", + "site_detail_url": "https://comicvine.gamespot.com/purifire/4005-178423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178482/", + "id": 178482, + "name": "The Starbrand Kid", + "site_detail_url": "https://comicvine.gamespot.com/the-starbrand-kid/4005-178482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178483/", + "id": 178483, + "name": "Reno Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/reno-phoenix/4005-178483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178492/", + "id": 178492, + "name": "Necro the Tattooist ", + "site_detail_url": "https://comicvine.gamespot.com/necro-the-tattooist/4005-178492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178494/", + "id": 178494, + "name": "Phebe Reginax", + "site_detail_url": "https://comicvine.gamespot.com/phebe-reginax/4005-178494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178495/", + "id": 178495, + "name": "Rheaka Centaurus", + "site_detail_url": "https://comicvine.gamespot.com/rheaka-centaurus/4005-178495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178496/", + "id": 178496, + "name": "Syne the Memotaur", + "site_detail_url": "https://comicvine.gamespot.com/syne-the-memotaur/4005-178496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178497/", + "id": 178497, + "name": "Thieaka the Harpsicus", + "site_detail_url": "https://comicvine.gamespot.com/thieaka-the-harpsicus/4005-178497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178498/", + "id": 178498, + "name": "Tetytrona", + "site_detail_url": "https://comicvine.gamespot.com/tetytrona/4005-178498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178499/", + "id": 178499, + "name": "Themex", + "site_detail_url": "https://comicvine.gamespot.com/themex/4005-178499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178590/", + "id": 178590, + "name": "Theta Berwick", + "site_detail_url": "https://comicvine.gamespot.com/theta-berwick/4005-178590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178612/", + "id": 178612, + "name": "Robert Goldman", + "site_detail_url": "https://comicvine.gamespot.com/robert-goldman/4005-178612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178619/", + "id": 178619, + "name": "Donna Diego", + "site_detail_url": "https://comicvine.gamespot.com/donna-diego/4005-178619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178620/", + "id": 178620, + "name": "Leslie Gesneria", + "site_detail_url": "https://comicvine.gamespot.com/leslie-gesneria/4005-178620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178621/", + "id": 178621, + "name": "Trevor Cole", + "site_detail_url": "https://comicvine.gamespot.com/trevor-cole/4005-178621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178622/", + "id": 178622, + "name": "Carl Mach", + "site_detail_url": "https://comicvine.gamespot.com/carl-mach/4005-178622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178623/", + "id": 178623, + "name": "Ramon Hernandez ", + "site_detail_url": "https://comicvine.gamespot.com/ramon-hernandez/4005-178623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178624/", + "id": 178624, + "name": "Gemma Shin", + "site_detail_url": "https://comicvine.gamespot.com/gemma-shin/4005-178624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178674/", + "id": 178674, + "name": "Wayne", + "site_detail_url": "https://comicvine.gamespot.com/wayne/4005-178674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178675/", + "id": 178675, + "name": "Lanny", + "site_detail_url": "https://comicvine.gamespot.com/lanny/4005-178675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178676/", + "id": 178676, + "name": "Magee", + "site_detail_url": "https://comicvine.gamespot.com/magee/4005-178676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178699/", + "id": 178699, + "name": "Gus", + "site_detail_url": "https://comicvine.gamespot.com/gus/4005-178699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178706/", + "id": 178706, + "name": "Joanna Jeffers", + "site_detail_url": "https://comicvine.gamespot.com/joanna-jeffers/4005-178706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178802/", + "id": 178802, + "name": "Gutsen Glory", + "site_detail_url": "https://comicvine.gamespot.com/gutsen-glory/4005-178802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178871/", + "id": 178871, + "name": "The Man with the Peacock Tattoo", + "site_detail_url": "https://comicvine.gamespot.com/the-man-with-the-peacock-tattoo/4005-178871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178888/", + "id": 178888, + "name": "John Priest", + "site_detail_url": "https://comicvine.gamespot.com/john-priest/4005-178888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178901/", + "id": 178901, + "name": "Sakura Spider", + "site_detail_url": "https://comicvine.gamespot.com/sakura-spider/4005-178901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178902/", + "id": 178902, + "name": "Syzya of the Smoke", + "site_detail_url": "https://comicvine.gamespot.com/syzya-of-the-smoke/4005-178902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178934/", + "id": 178934, + "name": "Roxanne", + "site_detail_url": "https://comicvine.gamespot.com/roxanne/4005-178934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178942/", + "id": 178942, + "name": "Screamer", + "site_detail_url": "https://comicvine.gamespot.com/screamer/4005-178942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178943/", + "id": 178943, + "name": "Doomfish", + "site_detail_url": "https://comicvine.gamespot.com/doomfish/4005-178943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178944/", + "id": 178944, + "name": "Doctor Octopus' Octopus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopus-octopus/4005-178944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-178946/", + "id": 178946, + "name": "Angelo", + "site_detail_url": "https://comicvine.gamespot.com/angelo/4005-178946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179108/", + "id": 179108, + "name": "Princess Petra", + "site_detail_url": "https://comicvine.gamespot.com/princess-petra/4005-179108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179122/", + "id": 179122, + "name": "Eegro the Unbreakable", + "site_detail_url": "https://comicvine.gamespot.com/eegro-the-unbreakable/4005-179122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179154/", + "id": 179154, + "name": "Saracen", + "site_detail_url": "https://comicvine.gamespot.com/saracen/4005-179154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179197/", + "id": 179197, + "name": "Earworm", + "site_detail_url": "https://comicvine.gamespot.com/earworm/4005-179197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179198/", + "id": 179198, + "name": "Chimera", + "site_detail_url": "https://comicvine.gamespot.com/chimera/4005-179198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179214/", + "id": 179214, + "name": "The Revolution", + "site_detail_url": "https://comicvine.gamespot.com/the-revolution/4005-179214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179215/", + "id": 179215, + "name": "The Money", + "site_detail_url": "https://comicvine.gamespot.com/the-money/4005-179215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179216/", + "id": 179216, + "name": "The Machine", + "site_detail_url": "https://comicvine.gamespot.com/the-machine/4005-179216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179217/", + "id": 179217, + "name": "The Love", + "site_detail_url": "https://comicvine.gamespot.com/the-love/4005-179217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179218/", + "id": 179218, + "name": "The Power", + "site_detail_url": "https://comicvine.gamespot.com/the-power/4005-179218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179219/", + "id": 179219, + "name": "Amass", + "site_detail_url": "https://comicvine.gamespot.com/amass/4005-179219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179220/", + "id": 179220, + "name": "Crave", + "site_detail_url": "https://comicvine.gamespot.com/crave/4005-179220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179221/", + "id": 179221, + "name": "Theia", + "site_detail_url": "https://comicvine.gamespot.com/theia/4005-179221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-179222/", + "id": 179222, + "name": "Web-Weaver", + "site_detail_url": "https://comicvine.gamespot.com/web-weaver/4005-179222/" + } + ], + "date_added": "2008-06-06 11:08:00", + "date_last_updated": "2022-02-28 20:42:49", + "deck": "Formerly known by names including \"Atlas\" and \"Timely\", Marvel Entertainment is the publisher of comic books featuring iconic characters and teams such as the Fantastic Four, Spider-Man, the Avengers, the X-Men, Iron Man, the Hulk, Thor, Captain America and Daredevil. Currently owned by the Walt Disney Company, Marvel is one of the \"Big Two\" comic publishers along with DC Comics.", + "description": "

    Origin

    Created by current co publisher of Marvel, Stan Lee.

    Imprints

    History

    In 1939 Martin Goodman was persuaded by Frank Torpey, the sales manager of Funnies Inc. to start publishing comics. This was the start of Timely Comics Publications, which would later produce its first comic; Marvel Comics #1.

    Timeline

    1936

    • Introduction of Ka-Zar in a pulp fiction magazine published by Manvis owned by Martin Goodman prior to founding Timely Comics. Ka-Zar was created by Bob Byrd who was the author of Ka-Zar #1. Ka-Zar's pulp fiction story would later be adapted in Marvel Comics #1.

    1939

    \"The
    The Timely logo

    1940

    1941

    1942

    • The December 7 1941 attack on Pearl Harbor sends several Timely members into armed services.
    • Introduction of Citizen V.
    • Introduction of Miss Fury.
    • Vince Fago becomes Editor while Stan Lee is off at war.

    1943

    1944

    1945

    • The end of World War 2 brought the decline of “Super Heroes” sales.
    • Introduction of Millie the Model who spawned 207 issues.
    • Introduction of Patsy Walker.
    • Marvel reaches out to a young female audience.
    • Stan Lee returns to his chair as Editor-in-Chief after the war.

    1946

    • Introduction of The Blonde Phantom.
    • Introduction of Mighty Mouse.
    • Young Allies Comics was canceled.
    • All Winners Squad #21 was the last issue for the team.
    • Harvey Kurtzman starts doing freelance work for Timely comics. He would later become the original editor of MAD magazine.
    • Gene Colan is hired as an artist for Timely.

    1947

    • Introduction to Namora.
    • As Super Hero comic stayed in a slump, Crime, Romance and Westerns gain in popularity.

    1948

    • Comic Crime-fighters and Lawbreakers Always Lose! debut to increase the popularity of the crime comics.
    • Introduction of Two-Gun Kid.
    • Introduction of Sun Girl.
    • Introduction of Kid Colt.
    • Introduction of Venus
    • The Super Rabbit series is canceled.
    • John Buscema answers an ad to become one of the best know artists in Marvel’s history.
    • As Super Hero comics stayed in a slump, Crime, Romance and Westerns gain in popularity.

    1950's

    • Timely goes through an identity change. From Timely to Atlas Comics to eventually Marvel.

    1960's

    \"Fantastic
    Fantastic Four #1 launches the \"Marvel Age of Comics\".
    • As super hero comics make a re-emergence Marvel comes out with it's new heroes. These heroes have more personal and emotional back stories
    • 1961 sees the creation of The Fantastic Four.
    • In the following years (following the successful relaunch of DC's heroes ) Marvel launches the Hulk, X-Men, Iron Man, Spider-Man, Daredevil, Avengers, The return of the Golden Age Captain America and many more.

    The comic-book arm of the company started in 1939 as Timely Publications, and by the 1950s was generally known as Atlas Comics. Marvel's modern incarnation dates from 1961, with the launching of Fantastic Four and other superhero titles created by Stan Lee, Jack Kirby, Steve Ditko, and others. Marvel has since become the largest American comic book publisher over long time competitor DC Comics.

    Editors-in-chief

    Events in the Marvel Universe

    1980's

    1990's

    2000's

    \"No
    \"No

    2010's

    \"No

    2020's

    Marvel Animation

    \"No

    Marvel Movies (Cinematic Releases)

    Upcoming Films

    • Ant-Man and the Wasp (planned release July 6, 2018)
    • Captain Marvel (planned release March 8, 2019)

    Marvel Headquarters

    Located in New York City, Marvel has been successively headquartered in the McGraw-Hill Building (where it originated as Timely Comics in 1939); in suite 1401 of the Empire State Building; at 635 Madison Avenue (the actual location, though the comic books' indicia listed the parent publishing-company's address of 625 Madison Ave.); 575 Madison Avenue; 387 Park Avenue South; 10 East 40th Street; and 417 Fifth Avenue.

    Marvel has had 25 television series, 34 live-action films and 72 video games based on the Marvel Universe. There are also several theme park rides based on the characters of the Marvel Universe, too.

    ", + "id": 31, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/426367-marvel.gif", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/426367-marvel.gif", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/426367-marvel.gif", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/426367-marvel.gif", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/2/426367-marvel.gif", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/2/426367-marvel.gif", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/426367-marvel.gif", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/2/426367-marvel.gif", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/2/426367-marvel.gif", + "image_tags": "All Images,Marvel Comics logo" + }, + "location_address": "417 5th Avenue", + "location_city": "New York", + "location_state": "New York", + "name": "Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel/4010-31/", + "story_arcs": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-27758/", + "id": 27758, + "name": "Operation: Galactic Storm", + "site_detail_url": "https://comicvine.gamespot.com/operation-galactic-storm/4045-27758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40495/", + "id": 40495, + "name": "Captain America No More", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-no-more/4045-40495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40570/", + "id": 40570, + "name": "Starlost Saga", + "site_detail_url": "https://comicvine.gamespot.com/starlost-saga/4045-40570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40611/", + "id": 40611, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies/4045-40611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40615/", + "id": 40615, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war/4045-40615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40752/", + "id": 40752, + "name": "Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse/4045-40752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40978/", + "id": 40978, + "name": "Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars/4045-40978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40991/", + "id": 40991, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m/4045-40991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41075/", + "id": 41075, + "name": "Legion Quest", + "site_detail_url": "https://comicvine.gamespot.com/legion-quest/4045-41075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41147/", + "id": 41147, + "name": "1602", + "site_detail_url": "https://comicvine.gamespot.com/1602/4045-41147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41213/", + "id": 41213, + "name": "Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/planet-hulk/4045-41213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41287/", + "id": 41287, + "name": "Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/annihilation/4045-41287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41407/", + "id": 41407, + "name": "Mutant Massacre", + "site_detail_url": "https://comicvine.gamespot.com/mutant-massacre/4045-41407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41408/", + "id": 41408, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4045-41408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41409/", + "id": 41409, + "name": "Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/maximum-carnage/4045-41409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41708/", + "id": 41708, + "name": "Here Comes Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/here-comes-tomorrow/4045-41708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41745/", + "id": 41745, + "name": "Fall of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-mutants/4045-41745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41878/", + "id": 41878, + "name": "Fatal Attractions", + "site_detail_url": "https://comicvine.gamespot.com/fatal-attractions/4045-41878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41931/", + "id": 41931, + "name": "Acts of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance/4045-41931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-41966/", + "id": 41966, + "name": "Avengers Reborn", + "site_detail_url": "https://comicvine.gamespot.com/avengers-reborn/4045-41966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42176/", + "id": 42176, + "name": "Phalanx Covenant", + "site_detail_url": "https://comicvine.gamespot.com/phalanx-covenant/4045-42176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42177/", + "id": 42177, + "name": "X-Tinction Agenda", + "site_detail_url": "https://comicvine.gamespot.com/x-tinction-agenda/4045-42177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42178/", + "id": 42178, + "name": "X-Cutioner's Song", + "site_detail_url": "https://comicvine.gamespot.com/x-cutioners-song/4045-42178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42181/", + "id": 42181, + "name": "Evolutionary War", + "site_detail_url": "https://comicvine.gamespot.com/evolutionary-war/4045-42181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42182/", + "id": 42182, + "name": "Atlantis Attacks", + "site_detail_url": "https://comicvine.gamespot.com/atlantis-attacks/4045-42182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42183/", + "id": 42183, + "name": "Dark Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/dark-phoenix-saga/4045-42183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42233/", + "id": 42233, + "name": "Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet/4045-42233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42234/", + "id": 42234, + "name": "Infinity War", + "site_detail_url": "https://comicvine.gamespot.com/infinity-war/4045-42234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42235/", + "id": 42235, + "name": "Infinity Crusade", + "site_detail_url": "https://comicvine.gamespot.com/infinity-crusade/4045-42235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42238/", + "id": 42238, + "name": "Assault on Weapon Plus", + "site_detail_url": "https://comicvine.gamespot.com/assault-on-weapon-plus/4045-42238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42241/", + "id": 42241, + "name": "Bloodties", + "site_detail_url": "https://comicvine.gamespot.com/bloodties/4045-42241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42294/", + "id": 42294, + "name": "World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk/4045-42294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42933/", + "id": 42933, + "name": "Cosmos in Collision", + "site_detail_url": "https://comicvine.gamespot.com/cosmos-in-collision/4045-42933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43038/", + "id": 43038, + "name": "The Fall of the Hammer", + "site_detail_url": "https://comicvine.gamespot.com/the-fall-of-the-hammer/4045-43038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43220/", + "id": 43220, + "name": "The Death of Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-gwen-stacy/4045-43220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43327/", + "id": 43327, + "name": "Kraven's Last Hunt", + "site_detail_url": "https://comicvine.gamespot.com/kravens-last-hunt/4045-43327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43520/", + "id": 43520, + "name": "Deadly Genesis", + "site_detail_url": "https://comicvine.gamespot.com/deadly-genesis/4045-43520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43521/", + "id": 43521, + "name": "Rise and Fall of the Shi'ar Empire", + "site_detail_url": "https://comicvine.gamespot.com/rise-and-fall-of-the-shiar-empire/4045-43521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43569/", + "id": 43569, + "name": "Silent War", + "site_detail_url": "https://comicvine.gamespot.com/silent-war/4045-43569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43600/", + "id": 43600, + "name": "Son of M", + "site_detail_url": "https://comicvine.gamespot.com/son-of-m/4045-43600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43625/", + "id": 43625, + "name": "Avengers Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled/4045-43625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43626/", + "id": 43626, + "name": "Decimation", + "site_detail_url": "https://comicvine.gamespot.com/decimation/4045-43626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43639/", + "id": 43639, + "name": "Riot at Xavier's", + "site_detail_url": "https://comicvine.gamespot.com/riot-at-xaviers/4045-43639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43775/", + "id": 43775, + "name": "Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/clone-saga/4045-43775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43776/", + "id": 43776, + "name": "The Other", + "site_detail_url": "https://comicvine.gamespot.com/the-other/4045-43776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43814/", + "id": 43814, + "name": "Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/onslaught/4045-43814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43825/", + "id": 43825, + "name": "Sins Past", + "site_detail_url": "https://comicvine.gamespot.com/sins-past/4045-43825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43899/", + "id": 43899, + "name": "Operation: Zero Tolerance", + "site_detail_url": "https://comicvine.gamespot.com/operation-zero-tolerance/4045-43899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43901/", + "id": 43901, + "name": "Correction", + "site_detail_url": "https://comicvine.gamespot.com/correction/4045-43901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43902/", + "id": 43902, + "name": "Shockwave", + "site_detail_url": "https://comicvine.gamespot.com/shockwave/4045-43902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-43950/", + "id": 43950, + "name": "Endangered Species", + "site_detail_url": "https://comicvine.gamespot.com/endangered-species/4045-43950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44187/", + "id": 44187, + "name": "Onslaught Reborn", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-reborn/4045-44187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44423/", + "id": 44423, + "name": "The Contest", + "site_detail_url": "https://comicvine.gamespot.com/the-contest/4045-44423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44425/", + "id": 44425, + "name": "Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/days-of-future-past/4045-44425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44571/", + "id": 44571, + "name": "Earth X", + "site_detail_url": "https://comicvine.gamespot.com/earth-x/4045-44571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44806/", + "id": 44806, + "name": "The Great Fear", + "site_detail_url": "https://comicvine.gamespot.com/the-great-fear/4045-44806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44816/", + "id": 44816, + "name": "Universe X", + "site_detail_url": "https://comicvine.gamespot.com/universe-x/4045-44816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44817/", + "id": 44817, + "name": "Paradise X", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x/4045-44817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44939/", + "id": 44939, + "name": "World Tour", + "site_detail_url": "https://comicvine.gamespot.com/world-tour/4045-44939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-44982/", + "id": 44982, + "name": "Annihilation Conquest", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest/4045-44982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-46178/", + "id": 46178, + "name": "Midnight Massacre", + "site_detail_url": "https://comicvine.gamespot.com/midnight-massacre/4045-46178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-46179/", + "id": 46179, + "name": "Rise of the Midnight Sons", + "site_detail_url": "https://comicvine.gamespot.com/rise-of-the-midnight-sons/4045-46179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-46232/", + "id": 46232, + "name": "E is for Extinction", + "site_detail_url": "https://comicvine.gamespot.com/e-is-for-extinction/4045-46232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-46617/", + "id": 46617, + "name": "Trial of Gambit", + "site_detail_url": "https://comicvine.gamespot.com/trial-of-gambit/4045-46617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-47186/", + "id": 47186, + "name": "Quest For Magik", + "site_detail_url": "https://comicvine.gamespot.com/quest-for-magik/4045-47186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-47264/", + "id": 47264, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion/4045-47264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-47419/", + "id": 47419, + "name": "Authoritative Action", + "site_detail_url": "https://comicvine.gamespot.com/authoritative-action/4045-47419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-47439/", + "id": 47439, + "name": "Unthinkable", + "site_detail_url": "https://comicvine.gamespot.com/unthinkable/4045-47439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-47776/", + "id": 47776, + "name": "Defiant", + "site_detail_url": "https://comicvine.gamespot.com/defiant/4045-47776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-48424/", + "id": 48424, + "name": "The Crossing", + "site_detail_url": "https://comicvine.gamespot.com/the-crossing/4045-48424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-48995/", + "id": 48995, + "name": "Messiah Complex", + "site_detail_url": "https://comicvine.gamespot.com/messiah-complex/4045-48995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-49092/", + "id": 49092, + "name": "Maximum Security", + "site_detail_url": "https://comicvine.gamespot.com/maximum-security/4045-49092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-49666/", + "id": 49666, + "name": "Siege of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/siege-of-darkness/4045-49666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-49939/", + "id": 49939, + "name": "One More Day", + "site_detail_url": "https://comicvine.gamespot.com/one-more-day/4045-49939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-49940/", + "id": 49940, + "name": "Brand New Day", + "site_detail_url": "https://comicvine.gamespot.com/brand-new-day/4045-49940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-50436/", + "id": 50436, + "name": "Weapon X: The Draft", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft/4045-50436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-50498/", + "id": 50498, + "name": "Planet X", + "site_detail_url": "https://comicvine.gamespot.com/planet-x/4045-50498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-50499/", + "id": 50499, + "name": "Murder at the Mansion", + "site_detail_url": "https://comicvine.gamespot.com/murder-at-the-mansion/4045-50499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-50951/", + "id": 50951, + "name": "Mys-Tech Wars", + "site_detail_url": "https://comicvine.gamespot.com/mys-tech-wars/4045-50951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-51075/", + "id": 51075, + "name": "Black Blade", + "site_detail_url": "https://comicvine.gamespot.com/black-blade/4045-51075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-51110/", + "id": 51110, + "name": "Phoenix: Warsong", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-warsong/4045-51110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-51111/", + "id": 51111, + "name": "Phoenix: Endsong", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-endsong/4045-51111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-52197/", + "id": 52197, + "name": "Children of the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-x-men/4045-52197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-52315/", + "id": 52315, + "name": "The Six-Fingered Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-six-fingered-hand/4045-52315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-52603/", + "id": 52603, + "name": "Divided We Stand", + "site_detail_url": "https://comicvine.gamespot.com/divided-we-stand/4045-52603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-52604/", + "id": 52604, + "name": "Cross-Time Caper", + "site_detail_url": "https://comicvine.gamespot.com/cross-time-caper/4045-52604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53423/", + "id": 53423, + "name": "Primary Infection", + "site_detail_url": "https://comicvine.gamespot.com/primary-infection/4045-53423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53434/", + "id": 53434, + "name": "The Extremists", + "site_detail_url": "https://comicvine.gamespot.com/the-extremists/4045-53434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53467/", + "id": 53467, + "name": "Divided", + "site_detail_url": "https://comicvine.gamespot.com/divided/4045-53467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53481/", + "id": 53481, + "name": "Mercury Falling", + "site_detail_url": "https://comicvine.gamespot.com/mercury-falling/4045-53481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53482/", + "id": 53482, + "name": "The Only Game In Town", + "site_detail_url": "https://comicvine.gamespot.com/the-only-game-in-town/4045-53482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53503/", + "id": 53503, + "name": "Eve of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/eve-of-destruction/4045-53503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53603/", + "id": 53603, + "name": "Killed In Action", + "site_detail_url": "https://comicvine.gamespot.com/killed-in-action/4045-53603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53616/", + "id": 53616, + "name": "Angels & Demons", + "site_detail_url": "https://comicvine.gamespot.com/angels-demons/4045-53616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53633/", + "id": 53633, + "name": "Arms/War Baby", + "site_detail_url": "https://comicvine.gamespot.com/armswar-baby/4045-53633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53782/", + "id": 53782, + "name": "Get Mystique!", + "site_detail_url": "https://comicvine.gamespot.com/get-mystique/4045-53782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53802/", + "id": 53802, + "name": "The Isolationist", + "site_detail_url": "https://comicvine.gamespot.com/the-isolationist/4045-53802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53858/", + "id": 53858, + "name": "Monster and Marvel", + "site_detail_url": "https://comicvine.gamespot.com/monster-and-marvel/4045-53858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53859/", + "id": 53859, + "name": "Final Genesis", + "site_detail_url": "https://comicvine.gamespot.com/final-genesis/4045-53859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-53970/", + "id": 53970, + "name": "The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/the-initiative/4045-53970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54046/", + "id": 54046, + "name": "The Trust", + "site_detail_url": "https://comicvine.gamespot.com/the-trust/4045-54046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54079/", + "id": 54079, + "name": "Trial of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/trial-of-galactus/4045-54079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54251/", + "id": 54251, + "name": "Red Data", + "site_detail_url": "https://comicvine.gamespot.com/red-data/4045-54251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54398/", + "id": 54398, + "name": "Secret War", + "site_detail_url": "https://comicvine.gamespot.com/secret-war/4045-54398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54420/", + "id": 54420, + "name": "Nimrod", + "site_detail_url": "https://comicvine.gamespot.com/nimrod/4045-54420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54540/", + "id": 54540, + "name": "Fallen Son: The Death of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america/4045-54540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54577/", + "id": 54577, + "name": "Torn", + "site_detail_url": "https://comicvine.gamespot.com/torn/4045-54577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54617/", + "id": 54617, + "name": "Gifted", + "site_detail_url": "https://comicvine.gamespot.com/gifted/4045-54617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54838/", + "id": 54838, + "name": "From Genesis to Revelations", + "site_detail_url": "https://comicvine.gamespot.com/from-genesis-to-revelations/4045-54838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-54894/", + "id": 54894, + "name": "The Ultron Initiative", + "site_detail_url": "https://comicvine.gamespot.com/the-ultron-initiative/4045-54894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55505/", + "id": 55505, + "name": "Breakout", + "site_detail_url": "https://comicvine.gamespot.com/breakout/4045-55505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55638/", + "id": 55638, + "name": "Born Again", + "site_detail_url": "https://comicvine.gamespot.com/born-again/4045-55638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55639/", + "id": 55639, + "name": "The Whole Hero Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-whole-hero-thing/4045-55639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55645/", + "id": 55645, + "name": "Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan/4045-55645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55646/", + "id": 55646, + "name": "Thrashed", + "site_detail_url": "https://comicvine.gamespot.com/thrashed/4045-55646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55657/", + "id": 55657, + "name": "World War Hulk: Aftersmash", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash/4045-55657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55660/", + "id": 55660, + "name": "The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve/4045-55660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55663/", + "id": 55663, + "name": "Marvel Apes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes/4045-55663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55664/", + "id": 55664, + "name": "March On Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/march-on-ultimatum/4045-55664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55666/", + "id": 55666, + "name": "Operation Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/operation-rebirth/4045-55666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55673/", + "id": 55673, + "name": "Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/manifest-destiny/4045-55673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55678/", + "id": 55678, + "name": "Character Assassination", + "site_detail_url": "https://comicvine.gamespot.com/character-assassination/4045-55678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55679/", + "id": 55679, + "name": "Avengers/Invaders", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders/4045-55679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55684/", + "id": 55684, + "name": "Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/identity-crisis/4045-55684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55685/", + "id": 55685, + "name": "New Ways to Die", + "site_detail_url": "https://comicvine.gamespot.com/new-ways-to-die/4045-55685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55686/", + "id": 55686, + "name": "Days of Future Present", + "site_detail_url": "https://comicvine.gamespot.com/days-of-future-present/4045-55686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55688/", + "id": 55688, + "name": "Secret Wars II", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii/4045-55688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55698/", + "id": 55698, + "name": "Blood and Thunder", + "site_detail_url": "https://comicvine.gamespot.com/blood-and-thunder/4045-55698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55707/", + "id": 55707, + "name": "Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign/4045-55707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55708/", + "id": 55708, + "name": "SFX", + "site_detail_url": "https://comicvine.gamespot.com/sfx/4045-55708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55714/", + "id": 55714, + "name": "In The Beginning", + "site_detail_url": "https://comicvine.gamespot.com/in-the-beginning/4045-55714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55716/", + "id": 55716, + "name": "Kitchen Irish", + "site_detail_url": "https://comicvine.gamespot.com/kitchen-irish/4045-55716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55720/", + "id": 55720, + "name": "Forces Of Darkness, Forces Of Light", + "site_detail_url": "https://comicvine.gamespot.com/forces-of-darkness-forces-of-light/4045-55720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55738/", + "id": 55738, + "name": "Planet of the Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/planet-of-the-symbiotes/4045-55738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55740/", + "id": 55740, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/original-sin/4045-55740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55741/", + "id": 55741, + "name": "Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/armor-wars/4045-55741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55742/", + "id": 55742, + "name": "Kree/Skrull War", + "site_detail_url": "https://comicvine.gamespot.com/kreeskrull-war/4045-55742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55745/", + "id": 55745, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum/4045-55745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55752/", + "id": 55752, + "name": "Dangerous", + "site_detail_url": "https://comicvine.gamespot.com/dangerous/4045-55752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55753/", + "id": 55753, + "name": "Destiny War", + "site_detail_url": "https://comicvine.gamespot.com/destiny-war/4045-55753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55755/", + "id": 55755, + "name": "Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/korvac-saga/4045-55755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55757/", + "id": 55757, + "name": "Ultron Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/ultron-unlimited/4045-55757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55758/", + "id": 55758, + "name": "War of Kings", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings/4045-55758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55760/", + "id": 55760, + "name": "Spirits of Venom", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-venom/4045-55760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55763/", + "id": 55763, + "name": "X-Infernus", + "site_detail_url": "https://comicvine.gamespot.com/x-infernus/4045-55763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55765/", + "id": 55765, + "name": "Kang Dynasty", + "site_detail_url": "https://comicvine.gamespot.com/kang-dynasty/4045-55765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55774/", + "id": 55774, + "name": "Avengers/Defenders War", + "site_detail_url": "https://comicvine.gamespot.com/avengersdefenders-war/4045-55774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55776/", + "id": 55776, + "name": "Panther's Rage", + "site_detail_url": "https://comicvine.gamespot.com/panthers-rage/4045-55776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55777/", + "id": 55777, + "name": "The Draco", + "site_detail_url": "https://comicvine.gamespot.com/the-draco/4045-55777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55787/", + "id": 55787, + "name": "Universal Heroes", + "site_detail_url": "https://comicvine.gamespot.com/universal-heroes/4045-55787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55789/", + "id": 55789, + "name": "Judgement War", + "site_detail_url": "https://comicvine.gamespot.com/judgement-war/4045-55789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55790/", + "id": 55790, + "name": "Alone Against the Celestials", + "site_detail_url": "https://comicvine.gamespot.com/alone-against-the-celestials/4045-55790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55793/", + "id": 55793, + "name": "The Last Galactus Story", + "site_detail_url": "https://comicvine.gamespot.com/the-last-galactus-story/4045-55793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55802/", + "id": 55802, + "name": "The Assassin Nation Plot", + "site_detail_url": "https://comicvine.gamespot.com/the-assassin-nation-plot/4045-55802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55811/", + "id": 55811, + "name": "Round Robin", + "site_detail_url": "https://comicvine.gamespot.com/round-robin/4045-55811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55816/", + "id": 55816, + "name": "Amulet Quest", + "site_detail_url": "https://comicvine.gamespot.com/amulet-quest/4045-55816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55817/", + "id": 55817, + "name": "Operation Symbiote", + "site_detail_url": "https://comicvine.gamespot.com/operation-symbiote/4045-55817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55818/", + "id": 55818, + "name": "Heart Of The Hawk", + "site_detail_url": "https://comicvine.gamespot.com/heart-of-the-hawk/4045-55818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55819/", + "id": 55819, + "name": "A Hawk Supreme", + "site_detail_url": "https://comicvine.gamespot.com/a-hawk-supreme/4045-55819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55820/", + "id": 55820, + "name": "Shattered Fates", + "site_detail_url": "https://comicvine.gamespot.com/shattered-fates/4045-55820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55821/", + "id": 55821, + "name": "Return To Forever", + "site_detail_url": "https://comicvine.gamespot.com/return-to-forever/4045-55821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55822/", + "id": 55822, + "name": "Assault on Armor City", + "site_detail_url": "https://comicvine.gamespot.com/assault-on-armor-city/4045-55822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55823/", + "id": 55823, + "name": "Portals Of Power", + "site_detail_url": "https://comicvine.gamespot.com/portals-of-power/4045-55823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55824/", + "id": 55824, + "name": "Messiah War", + "site_detail_url": "https://comicvine.gamespot.com/messiah-war/4045-55824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55825/", + "id": 55825, + "name": "Color Blindness", + "site_detail_url": "https://comicvine.gamespot.com/color-blindness/4045-55825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55826/", + "id": 55826, + "name": "Web Of Confusion", + "site_detail_url": "https://comicvine.gamespot.com/web-of-confusion/4045-55826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55827/", + "id": 55827, + "name": "Mindfield!", + "site_detail_url": "https://comicvine.gamespot.com/mindfield/4045-55827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55828/", + "id": 55828, + "name": "Shrieking", + "site_detail_url": "https://comicvine.gamespot.com/shrieking/4045-55828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55829/", + "id": 55829, + "name": "Hard Choices", + "site_detail_url": "https://comicvine.gamespot.com/hard-choices/4045-55829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55830/", + "id": 55830, + "name": "Forever Yesterday", + "site_detail_url": "https://comicvine.gamespot.com/forever-yesterday/4045-55830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55831/", + "id": 55831, + "name": "Old Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/old-ghosts/4045-55831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55832/", + "id": 55832, + "name": "World Of Mutants", + "site_detail_url": "https://comicvine.gamespot.com/world-of-mutants/4045-55832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55833/", + "id": 55833, + "name": "Quest For The Shield", + "site_detail_url": "https://comicvine.gamespot.com/quest-for-the-shield/4045-55833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55834/", + "id": 55834, + "name": "Suicide Leper", + "site_detail_url": "https://comicvine.gamespot.com/suicide-leper/4045-55834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55835/", + "id": 55835, + "name": "Burning Down the House", + "site_detail_url": "https://comicvine.gamespot.com/burning-down-the-house/4045-55835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55836/", + "id": 55836, + "name": "Hammer Down", + "site_detail_url": "https://comicvine.gamespot.com/hammer-down/4045-55836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55839/", + "id": 55839, + "name": "Korvac Quest", + "site_detail_url": "https://comicvine.gamespot.com/korvac-quest/4045-55839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55842/", + "id": 55842, + "name": "Dead Wrong", + "site_detail_url": "https://comicvine.gamespot.com/dead-wrong/4045-55842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55851/", + "id": 55851, + "name": "Fall From Grace", + "site_detail_url": "https://comicvine.gamespot.com/fall-from-grace/4045-55851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55856/", + "id": 55856, + "name": "American Son", + "site_detail_url": "https://comicvine.gamespot.com/american-son/4045-55856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55860/", + "id": 55860, + "name": "The Initiative: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/the-initiative-disassembled/4045-55860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55861/", + "id": 55861, + "name": "Muir Island Saga", + "site_detail_url": "https://comicvine.gamespot.com/muir-island-saga/4045-55861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55862/", + "id": 55862, + "name": "Endgame", + "site_detail_url": "https://comicvine.gamespot.com/endgame/4045-55862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55863/", + "id": 55863, + "name": "Revelations", + "site_detail_url": "https://comicvine.gamespot.com/revelations/4045-55863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55875/", + "id": 55875, + "name": "World War 3", + "site_detail_url": "https://comicvine.gamespot.com/world-war-3/4045-55875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55876/", + "id": 55876, + "name": "Man and Wolf", + "site_detail_url": "https://comicvine.gamespot.com/man-and-wolf/4045-55876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55892/", + "id": 55892, + "name": "The Return of the Defenders", + "site_detail_url": "https://comicvine.gamespot.com/the-return-of-the-defenders/4045-55892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55894/", + "id": 55894, + "name": "The Masters of Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-masters-of-doom/4045-55894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55897/", + "id": 55897, + "name": "Timestorm 2009 / 2099", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-2009-2099/4045-55897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55900/", + "id": 55900, + "name": "Matrix Quest", + "site_detail_url": "https://comicvine.gamespot.com/matrix-quest/4045-55900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55902/", + "id": 55902, + "name": "Virtual Mortality", + "site_detail_url": "https://comicvine.gamespot.com/virtual-mortality/4045-55902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55903/", + "id": 55903, + "name": "Year of the Scourge", + "site_detail_url": "https://comicvine.gamespot.com/year-of-the-scourge/4045-55903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55905/", + "id": 55905, + "name": "Utopia", + "site_detail_url": "https://comicvine.gamespot.com/utopia/4045-55905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55906/", + "id": 55906, + "name": "Ghost Boxes", + "site_detail_url": "https://comicvine.gamespot.com/ghost-boxes/4045-55906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55914/", + "id": 55914, + "name": "Ultimate Galactus Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-galactus-trilogy/4045-55914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55919/", + "id": 55919, + "name": "Exiled", + "site_detail_url": "https://comicvine.gamespot.com/exiled/4045-55919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55921/", + "id": 55921, + "name": "The Siege of Wundagore", + "site_detail_url": "https://comicvine.gamespot.com/the-siege-of-wundagore/4045-55921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55926/", + "id": 55926, + "name": "Return of the King", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-king/4045-55926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55928/", + "id": 55928, + "name": "Cobra Civil War", + "site_detail_url": "https://comicvine.gamespot.com/cobra-civil-war/4045-55928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55930/", + "id": 55930, + "name": "Suicide Kings", + "site_detail_url": "https://comicvine.gamespot.com/suicide-kings/4045-55930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55932/", + "id": 55932, + "name": "Realm Of Kings", + "site_detail_url": "https://comicvine.gamespot.com/realm-of-kings/4045-55932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55937/", + "id": 55937, + "name": "The Trial of Yellowjacket", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-yellowjacket/4045-55937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55941/", + "id": 55941, + "name": "Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/necrosha/4045-55941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55942/", + "id": 55942, + "name": "World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks/4045-55942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55952/", + "id": 55952, + "name": "The Unspoken", + "site_detail_url": "https://comicvine.gamespot.com/the-unspoken/4045-55952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55955/", + "id": 55955, + "name": "Heroes Reborn", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn/4045-55955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55956/", + "id": 55956, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4045-55956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55957/", + "id": 55957, + "name": "Bloodstone Hunt", + "site_detail_url": "https://comicvine.gamespot.com/bloodstone-hunt/4045-55957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55960/", + "id": 55960, + "name": "Xandarian-Skrull War", + "site_detail_url": "https://comicvine.gamespot.com/xandarian-skrull-war/4045-55960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55961/", + "id": 55961, + "name": "Nation X", + "site_detail_url": "https://comicvine.gamespot.com/nation-x/4045-55961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55962/", + "id": 55962, + "name": "Flowers for Rhino", + "site_detail_url": "https://comicvine.gamespot.com/flowers-for-rhino/4045-55962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55965/", + "id": 55965, + "name": "Enemy Of The State", + "site_detail_url": "https://comicvine.gamespot.com/enemy-of-the-state/4045-55965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55966/", + "id": 55966, + "name": "Under Siege", + "site_detail_url": "https://comicvine.gamespot.com/under-siege/4045-55966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55970/", + "id": 55970, + "name": "The Morgan Conquest", + "site_detail_url": "https://comicvine.gamespot.com/the-morgan-conquest/4045-55970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55971/", + "id": 55971, + "name": "Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/second-coming/4045-55971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55973/", + "id": 55973, + "name": "Heroes Reunited", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reunited/4045-55973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55979/", + "id": 55979, + "name": "Fall Of The Hulks", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks/4045-55979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55984/", + "id": 55984, + "name": "The Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/the-gauntlet/4045-55984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55985/", + "id": 55985, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4045-55985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55988/", + "id": 55988, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4045-55988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55989/", + "id": 55989, + "name": "Passage To India", + "site_detail_url": "https://comicvine.gamespot.com/passage-to-india/4045-55989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55990/", + "id": 55990, + "name": "Dreamers and Demons", + "site_detail_url": "https://comicvine.gamespot.com/dreamers-and-demons/4045-55990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55991/", + "id": 55991, + "name": "Heroes & Martyrs", + "site_detail_url": "https://comicvine.gamespot.com/heroes-martyrs/4045-55991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55997/", + "id": 55997, + "name": "Assault on New Olympus", + "site_detail_url": "https://comicvine.gamespot.com/assault-on-new-olympus/4045-55997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-55999/", + "id": 55999, + "name": "Heart of the Infinite", + "site_detail_url": "https://comicvine.gamespot.com/heart-of-the-infinite/4045-55999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56003/", + "id": 56003, + "name": "Back In Black", + "site_detail_url": "https://comicvine.gamespot.com/back-in-black/4045-56003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56007/", + "id": 56007, + "name": "The Soul Sword Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/the-soul-sword-trilogy/4045-56007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56008/", + "id": 56008, + "name": "Starblast", + "site_detail_url": "https://comicvine.gamespot.com/starblast/4045-56008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56009/", + "id": 56009, + "name": "The Hunt for Xavier", + "site_detail_url": "https://comicvine.gamespot.com/the-hunt-for-xavier/4045-56009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56010/", + "id": 56010, + "name": "The Demon Bear Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-demon-bear-saga/4045-56010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56013/", + "id": 56013, + "name": "Blaze of Glory", + "site_detail_url": "https://comicvine.gamespot.com/blaze-of-glory/4045-56013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56014/", + "id": 56014, + "name": "Captain America Reborn", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn/4045-56014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56016/", + "id": 56016, + "name": "Venom Bomb", + "site_detail_url": "https://comicvine.gamespot.com/venom-bomb/4045-56016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56017/", + "id": 56017, + "name": "Destiny", + "site_detail_url": "https://comicvine.gamespot.com/destiny/4045-56017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56020/", + "id": 56020, + "name": "The Mask In The Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/the-mask-in-the-iron-man/4045-56020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56022/", + "id": 56022, + "name": "The Talisman of Tolometh", + "site_detail_url": "https://comicvine.gamespot.com/the-talisman-of-tolometh/4045-56022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56023/", + "id": 56023, + "name": "The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age/4045-56023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56028/", + "id": 56028, + "name": "Strangers Among Us", + "site_detail_url": "https://comicvine.gamespot.com/strangers-among-us/4045-56028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56029/", + "id": 56029, + "name": "Nick Fury: Agent of Nothing", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-agent-of-nothing/4045-56029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56030/", + "id": 56030, + "name": "Asgardian Wars", + "site_detail_url": "https://comicvine.gamespot.com/asgardian-wars/4045-56030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56031/", + "id": 56031, + "name": "World's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/worlds-most-wanted/4045-56031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56032/", + "id": 56032, + "name": "Stark Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/stark-disassembled/4045-56032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56033/", + "id": 56033, + "name": "Mutant X: Origins", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-origins/4045-56033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56035/", + "id": 56035, + "name": "Franken-Castle", + "site_detail_url": "https://comicvine.gamespot.com/franken-castle/4045-56035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56039/", + "id": 56039, + "name": "Black Sun", + "site_detail_url": "https://comicvine.gamespot.com/black-sun/4045-56039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56068/", + "id": 56068, + "name": "The Hunger", + "site_detail_url": "https://comicvine.gamespot.com/the-hunger/4045-56068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56069/", + "id": 56069, + "name": "Family Honor, Poisoned Memories", + "site_detail_url": "https://comicvine.gamespot.com/family-honor-poisoned-memories/4045-56069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56070/", + "id": 56070, + "name": "Nothing But The Truth", + "site_detail_url": "https://comicvine.gamespot.com/nothing-but-the-truth/4045-56070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56075/", + "id": 56075, + "name": "Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/lethal-protector/4045-56075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56077/", + "id": 56077, + "name": "Venom: Shiver", + "site_detail_url": "https://comicvine.gamespot.com/venom-shiver/4045-56077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56078/", + "id": 56078, + "name": "Reckoning", + "site_detail_url": "https://comicvine.gamespot.com/reckoning/4045-56078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56082/", + "id": 56082, + "name": "The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/the-enemy-within/4045-56082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56083/", + "id": 56083, + "name": "The Mace", + "site_detail_url": "https://comicvine.gamespot.com/the-mace/4045-56083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56084/", + "id": 56084, + "name": "Nights of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/nights-of-vengeance/4045-56084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56085/", + "id": 56085, + "name": "Separation Anxiety", + "site_detail_url": "https://comicvine.gamespot.com/separation-anxiety/4045-56085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56086/", + "id": 56086, + "name": "Carnage Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/carnage-unleashed/4045-56086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56088/", + "id": 56088, + "name": "Venom (Ultimate)", + "site_detail_url": "https://comicvine.gamespot.com/venom-ultimate/4045-56088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56089/", + "id": 56089, + "name": "Carnage (Ultimate)", + "site_detail_url": "https://comicvine.gamespot.com/carnage-ultimate/4045-56089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56090/", + "id": 56090, + "name": "Streets of Poison", + "site_detail_url": "https://comicvine.gamespot.com/streets-of-poison/4045-56090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56092/", + "id": 56092, + "name": "Kick-Ass Origin", + "site_detail_url": "https://comicvine.gamespot.com/kick-ass-origin/4045-56092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56093/", + "id": 56093, + "name": "Live Kree or Die", + "site_detail_url": "https://comicvine.gamespot.com/live-kree-or-die/4045-56093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56094/", + "id": 56094, + "name": "The Web of Carnage", + "site_detail_url": "https://comicvine.gamespot.com/the-web-of-carnage/4045-56094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56095/", + "id": 56095, + "name": "Demon In A Bottle", + "site_detail_url": "https://comicvine.gamespot.com/demon-in-a-bottle/4045-56095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56096/", + "id": 56096, + "name": "One Moment In Time", + "site_detail_url": "https://comicvine.gamespot.com/one-moment-in-time/4045-56096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56098/", + "id": 56098, + "name": "Kings Of Pain", + "site_detail_url": "https://comicvine.gamespot.com/kings-of-pain/4045-56098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56101/", + "id": 56101, + "name": "The Thanos Imperative", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-imperative/4045-56101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56106/", + "id": 56106, + "name": "The Deep End", + "site_detail_url": "https://comicvine.gamespot.com/the-deep-end/4045-56106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56107/", + "id": 56107, + "name": "Turf War", + "site_detail_url": "https://comicvine.gamespot.com/turf-war/4045-56107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56108/", + "id": 56108, + "name": "The Singularity", + "site_detail_url": "https://comicvine.gamespot.com/the-singularity/4045-56108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56111/", + "id": 56111, + "name": "Trial By Jury", + "site_detail_url": "https://comicvine.gamespot.com/trial-by-jury/4045-56111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56113/", + "id": 56113, + "name": "Crossing Line", + "site_detail_url": "https://comicvine.gamespot.com/crossing-line/4045-56113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56114/", + "id": 56114, + "name": "Shadowland", + "site_detail_url": "https://comicvine.gamespot.com/shadowland/4045-56114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56115/", + "id": 56115, + "name": "Doomwar", + "site_detail_url": "https://comicvine.gamespot.com/doomwar/4045-56115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56116/", + "id": 56116, + "name": "Save The Tiger", + "site_detail_url": "https://comicvine.gamespot.com/save-the-tiger/4045-56116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56127/", + "id": 56127, + "name": "Dream's End", + "site_detail_url": "https://comicvine.gamespot.com/dreams-end/4045-56127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56131/", + "id": 56131, + "name": "Guardian Devil", + "site_detail_url": "https://comicvine.gamespot.com/guardian-devil/4045-56131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56133/", + "id": 56133, + "name": "Ultimate War", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-war/4045-56133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56136/", + "id": 56136, + "name": "Curse of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/curse-of-the-mutants/4045-56136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56137/", + "id": 56137, + "name": "Xenogenesis", + "site_detail_url": "https://comicvine.gamespot.com/xenogenesis/4045-56137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56139/", + "id": 56139, + "name": "Revenge of the Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/revenge-of-the-sinister-six/4045-56139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56141/", + "id": 56141, + "name": "Fall of the New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-new-mutants/4045-56141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56152/", + "id": 56152, + "name": "Grim Hunt", + "site_detail_url": "https://comicvine.gamespot.com/grim-hunt/4045-56152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56153/", + "id": 56153, + "name": "Stark Resilient", + "site_detail_url": "https://comicvine.gamespot.com/stark-resilient/4045-56153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56154/", + "id": 56154, + "name": "Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-saga/4045-56154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56155/", + "id": 56155, + "name": "Tricky", + "site_detail_url": "https://comicvine.gamespot.com/tricky/4045-56155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56156/", + "id": 56156, + "name": "Whatever A Spider Can", + "site_detail_url": "https://comicvine.gamespot.com/whatever-a-spider-can/4045-56156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56157/", + "id": 56157, + "name": "Want You To Want Me", + "site_detail_url": "https://comicvine.gamespot.com/want-you-to-want-me/4045-56157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56161/", + "id": 56161, + "name": "The Left Hand Path", + "site_detail_url": "https://comicvine.gamespot.com/the-left-hand-path/4045-56161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56162/", + "id": 56162, + "name": "The Devils Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-devils-hand/4045-56162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56163/", + "id": 56163, + "name": "Not Forgotten", + "site_detail_url": "https://comicvine.gamespot.com/not-forgotten/4045-56163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56172/", + "id": 56172, + "name": "Hunting the Hunters", + "site_detail_url": "https://comicvine.gamespot.com/hunting-the-hunters/4045-56172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56173/", + "id": 56173, + "name": "Shed", + "site_detail_url": "https://comicvine.gamespot.com/shed/4045-56173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56177/", + "id": 56177, + "name": "The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/the-childrens-crusade/4045-56177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56178/", + "id": 56178, + "name": "Dire Consequences", + "site_detail_url": "https://comicvine.gamespot.com/dire-consequences/4045-56178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56182/", + "id": 56182, + "name": "The Tomorrow People", + "site_detail_url": "https://comicvine.gamespot.com/the-tomorrow-people/4045-56182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56183/", + "id": 56183, + "name": "Origin of the Species", + "site_detail_url": "https://comicvine.gamespot.com/origin-of-the-species/4045-56183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56185/", + "id": 56185, + "name": "Return to Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/return-to-weapon-x/4045-56185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56188/", + "id": 56188, + "name": "Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/widowmaker/4045-56188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56203/", + "id": 56203, + "name": "The Five Lights", + "site_detail_url": "https://comicvine.gamespot.com/the-five-lights/4045-56203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56204/", + "id": 56204, + "name": "Unstoppable", + "site_detail_url": "https://comicvine.gamespot.com/unstoppable/4045-56204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56205/", + "id": 56205, + "name": "The Magneto War", + "site_detail_url": "https://comicvine.gamespot.com/the-magneto-war/4045-56205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56209/", + "id": 56209, + "name": "War of the Iron Men", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-iron-men/4045-56209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56210/", + "id": 56210, + "name": "Avengers Assemble: The Oral History of the Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-the-oral-history-of-the-earths-m/4045-56210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56213/", + "id": 56213, + "name": "The Shattering", + "site_detail_url": "https://comicvine.gamespot.com/the-shattering/4045-56213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56214/", + "id": 56214, + "name": "Ultimate Enemy Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy-trilogy/4045-56214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56219/", + "id": 56219, + "name": "Lost in Space-Time", + "site_detail_url": "https://comicvine.gamespot.com/lost-in-space-time/4045-56219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56226/", + "id": 56226, + "name": "Tales to Astonish", + "site_detail_url": "https://comicvine.gamespot.com/tales-to-astonish/4045-56226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56227/", + "id": 56227, + "name": "Powerless", + "site_detail_url": "https://comicvine.gamespot.com/powerless/4045-56227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56229/", + "id": 56229, + "name": "Vision Quest", + "site_detail_url": "https://comicvine.gamespot.com/vision-quest/4045-56229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56236/", + "id": 56236, + "name": "Industrial Revolution", + "site_detail_url": "https://comicvine.gamespot.com/industrial-revolution/4045-56236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56241/", + "id": 56241, + "name": "Dark Son", + "site_detail_url": "https://comicvine.gamespot.com/dark-son/4045-56241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56246/", + "id": 56246, + "name": "Sex & Violence", + "site_detail_url": "https://comicvine.gamespot.com/sex-violence/4045-56246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56248/", + "id": 56248, + "name": "The Eighth Day", + "site_detail_url": "https://comicvine.gamespot.com/the-eighth-day/4045-56248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56249/", + "id": 56249, + "name": "Standoff", + "site_detail_url": "https://comicvine.gamespot.com/standoff/4045-56249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56254/", + "id": 56254, + "name": "Kiss or Kill", + "site_detail_url": "https://comicvine.gamespot.com/kiss-or-kill/4045-56254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56256/", + "id": 56256, + "name": "Similar Machines", + "site_detail_url": "https://comicvine.gamespot.com/similar-machines/4045-56256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56257/", + "id": 56257, + "name": "Chaos War", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war/4045-56257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56258/", + "id": 56258, + "name": "Time Wars", + "site_detail_url": "https://comicvine.gamespot.com/time-wars/4045-56258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56265/", + "id": 56265, + "name": "The Biohazard Agenda", + "site_detail_url": "https://comicvine.gamespot.com/the-biohazard-agenda/4045-56265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56268/", + "id": 56268, + "name": "The Trial of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-captain-america/4045-56268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56269/", + "id": 56269, + "name": "Child's Play", + "site_detail_url": "https://comicvine.gamespot.com/childs-play/4045-56269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56277/", + "id": 56277, + "name": "Wolverine Goes to Hell", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-goes-to-hell/4045-56277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56278/", + "id": 56278, + "name": "Big Time", + "site_detail_url": "https://comicvine.gamespot.com/big-time/4045-56278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56282/", + "id": 56282, + "name": "Age of X", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x/4045-56282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56288/", + "id": 56288, + "name": "Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself/4045-56288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56290/", + "id": 56290, + "name": "The Goblin Heir", + "site_detail_url": "https://comicvine.gamespot.com/the-goblin-heir/4045-56290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56291/", + "id": 56291, + "name": "The Spider Totem", + "site_detail_url": "https://comicvine.gamespot.com/the-spider-totem/4045-56291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56292/", + "id": 56292, + "name": "Amongst the Dead Men", + "site_detail_url": "https://comicvine.gamespot.com/amongst-the-dead-men/4045-56292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56294/", + "id": 56294, + "name": "A Death in the Family", + "site_detail_url": "https://comicvine.gamespot.com/a-death-in-the-family/4045-56294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56299/", + "id": 56299, + "name": "The Death of Jean DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-jean-dewolff/4045-56299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56307/", + "id": 56307, + "name": "The Lost Gods", + "site_detail_url": "https://comicvine.gamespot.com/the-lost-gods/4045-56307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56329/", + "id": 56329, + "name": "Three", + "site_detail_url": "https://comicvine.gamespot.com/three/4045-56329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56334/", + "id": 56334, + "name": "Two Americas", + "site_detail_url": "https://comicvine.gamespot.com/two-americas/4045-56334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56335/", + "id": 56335, + "name": "No Escape", + "site_detail_url": "https://comicvine.gamespot.com/no-escape/4045-56335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56336/", + "id": 56336, + "name": "Family Feud", + "site_detail_url": "https://comicvine.gamespot.com/family-feud/4045-56336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56338/", + "id": 56338, + "name": "Kraven's First Hunt", + "site_detail_url": "https://comicvine.gamespot.com/kravens-first-hunt/4045-56338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56343/", + "id": 56343, + "name": "Death of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/death-of-spider-man/4045-56343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56353/", + "id": 56353, + "name": "Dire Wraiths War", + "site_detail_url": "https://comicvine.gamespot.com/dire-wraiths-war/4045-56353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56359/", + "id": 56359, + "name": "Ages of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/ages-of-apocalypse/4045-56359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56360/", + "id": 56360, + "name": "The Terminus Factor", + "site_detail_url": "https://comicvine.gamespot.com/the-terminus-factor/4045-56360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56362/", + "id": 56362, + "name": "Shattershot", + "site_detail_url": "https://comicvine.gamespot.com/shattershot/4045-56362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56365/", + "id": 56365, + "name": "Brood Saga", + "site_detail_url": "https://comicvine.gamespot.com/brood-saga/4045-56365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56366/", + "id": 56366, + "name": "Road To Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/road-to-vengeance/4045-56366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56368/", + "id": 56368, + "name": "Atlantis Rising", + "site_detail_url": "https://comicvine.gamespot.com/atlantis-rising/4045-56368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56369/", + "id": 56369, + "name": "Revolution", + "site_detail_url": "https://comicvine.gamespot.com/revolution/4045-56369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56371/", + "id": 56371, + "name": "Redemption", + "site_detail_url": "https://comicvine.gamespot.com/redemption/4045-56371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56373/", + "id": 56373, + "name": "Child's Play", + "site_detail_url": "https://comicvine.gamespot.com/childs-play/4045-56373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56387/", + "id": 56387, + "name": "Red Zone", + "site_detail_url": "https://comicvine.gamespot.com/red-zone/4045-56387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56388/", + "id": 56388, + "name": "The Apocalypse Solution", + "site_detail_url": "https://comicvine.gamespot.com/the-apocalypse-solution/4045-56388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56389/", + "id": 56389, + "name": "Planet Savage", + "site_detail_url": "https://comicvine.gamespot.com/planet-savage/4045-56389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56390/", + "id": 56390, + "name": "Collision", + "site_detail_url": "https://comicvine.gamespot.com/collision/4045-56390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56392/", + "id": 56392, + "name": "Onslaught Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-unleashed/4045-56392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56393/", + "id": 56393, + "name": "Quarantine", + "site_detail_url": "https://comicvine.gamespot.com/quarantine/4045-56393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56394/", + "id": 56394, + "name": "Next Generation", + "site_detail_url": "https://comicvine.gamespot.com/next-generation/4045-56394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56395/", + "id": 56395, + "name": "Crime & Punishment", + "site_detail_url": "https://comicvine.gamespot.com/crime-punishment/4045-56395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56396/", + "id": 56396, + "name": "Blade Versus the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/blade-versus-the-avengers/4045-56396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56401/", + "id": 56401, + "name": "Origin", + "site_detail_url": "https://comicvine.gamespot.com/origin/4045-56401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56404/", + "id": 56404, + "name": "Schism", + "site_detail_url": "https://comicvine.gamespot.com/schism/4045-56404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56410/", + "id": 56410, + "name": "The Gehenna Stone Affair", + "site_detail_url": "https://comicvine.gamespot.com/the-gehenna-stone-affair/4045-56410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56415/", + "id": 56415, + "name": "The Lazarus Project", + "site_detail_url": "https://comicvine.gamespot.com/the-lazarus-project/4045-56415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56416/", + "id": 56416, + "name": "Blood Hungry", + "site_detail_url": "https://comicvine.gamespot.com/blood-hungry/4045-56416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56417/", + "id": 56417, + "name": "Blood & Claws", + "site_detail_url": "https://comicvine.gamespot.com/blood-claws/4045-56417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56418/", + "id": 56418, + "name": "Shiva Scenario", + "site_detail_url": "https://comicvine.gamespot.com/shiva-scenario/4045-56418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56419/", + "id": 56419, + "name": "The Crunch Conundrum", + "site_detail_url": "https://comicvine.gamespot.com/the-crunch-conundrum/4045-56419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56423/", + "id": 56423, + "name": "Not Dead Yet", + "site_detail_url": "https://comicvine.gamespot.com/not-dead-yet/4045-56423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56424/", + "id": 56424, + "name": "Survival of the Fittest", + "site_detail_url": "https://comicvine.gamespot.com/survival-of-the-fittest/4045-56424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56425/", + "id": 56425, + "name": "The System Bytes", + "site_detail_url": "https://comicvine.gamespot.com/the-system-bytes/4045-56425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56431/", + "id": 56431, + "name": "The Great Escape", + "site_detail_url": "https://comicvine.gamespot.com/the-great-escape/4045-56431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56432/", + "id": 56432, + "name": "God of Fear, God of War", + "site_detail_url": "https://comicvine.gamespot.com/god-of-fear-god-of-war/4045-56432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56433/", + "id": 56433, + "name": "Wake the Beast", + "site_detail_url": "https://comicvine.gamespot.com/wake-the-beast/4045-56433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56434/", + "id": 56434, + "name": "Blood Debt", + "site_detail_url": "https://comicvine.gamespot.com/blood-debt/4045-56434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56435/", + "id": 56435, + "name": "All Along the Watchtower", + "site_detail_url": "https://comicvine.gamespot.com/all-along-the-watchtower/4045-56435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56436/", + "id": 56436, + "name": "The Best There Is", + "site_detail_url": "https://comicvine.gamespot.com/the-best-there-is/4045-56436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56437/", + "id": 56437, + "name": "The Hunted", + "site_detail_url": "https://comicvine.gamespot.com/the-hunted/4045-56437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56438/", + "id": 56438, + "name": "Bloodsport", + "site_detail_url": "https://comicvine.gamespot.com/bloodsport/4045-56438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56439/", + "id": 56439, + "name": "Stay Alive", + "site_detail_url": "https://comicvine.gamespot.com/stay-alive/4045-56439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56440/", + "id": 56440, + "name": "The Logan Files", + "site_detail_url": "https://comicvine.gamespot.com/the-logan-files/4045-56440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56441/", + "id": 56441, + "name": "The Shadow Pulpit", + "site_detail_url": "https://comicvine.gamespot.com/the-shadow-pulpit/4045-56441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56442/", + "id": 56442, + "name": "Good Cop Bad Cop", + "site_detail_url": "https://comicvine.gamespot.com/good-cop-bad-cop/4045-56442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56443/", + "id": 56443, + "name": "Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood/4045-56443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56444/", + "id": 56444, + "name": "Coyote Crossing", + "site_detail_url": "https://comicvine.gamespot.com/coyote-crossing/4045-56444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56445/", + "id": 56445, + "name": "Return of the Native", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-native/4045-56445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56447/", + "id": 56447, + "name": "Origins & Endings", + "site_detail_url": "https://comicvine.gamespot.com/origins-endings/4045-56447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56448/", + "id": 56448, + "name": "Evolution", + "site_detail_url": "https://comicvine.gamespot.com/evolution/4045-56448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56449/", + "id": 56449, + "name": "Logan Dies", + "site_detail_url": "https://comicvine.gamespot.com/logan-dies/4045-56449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56450/", + "id": 56450, + "name": "A MILE IN MY MOCCASINS", + "site_detail_url": "https://comicvine.gamespot.com/a-mile-in-my-moccasins/4045-56450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56451/", + "id": 56451, + "name": "The Prince", + "site_detail_url": "https://comicvine.gamespot.com/the-prince/4045-56451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56452/", + "id": 56452, + "name": "My Hero", + "site_detail_url": "https://comicvine.gamespot.com/my-hero/4045-56452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56453/", + "id": 56453, + "name": "Godlike", + "site_detail_url": "https://comicvine.gamespot.com/godlike/4045-56453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56454/", + "id": 56454, + "name": "Punishment", + "site_detail_url": "https://comicvine.gamespot.com/punishment/4045-56454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56455/", + "id": 56455, + "name": "Born in Blood", + "site_detail_url": "https://comicvine.gamespot.com/born-in-blood/4045-56455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56456/", + "id": 56456, + "name": "Savior", + "site_detail_url": "https://comicvine.gamespot.com/savior/4045-56456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56457/", + "id": 56457, + "name": "Swift and Terrible", + "site_detail_url": "https://comicvine.gamespot.com/swift-and-terrible/4045-56457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56459/", + "id": 56459, + "name": "Our War", + "site_detail_url": "https://comicvine.gamespot.com/our-war/4045-56459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56460/", + "id": 56460, + "name": "The Deep End", + "site_detail_url": "https://comicvine.gamespot.com/the-deep-end/4045-56460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56461/", + "id": 56461, + "name": "Son of X", + "site_detail_url": "https://comicvine.gamespot.com/son-of-x/4045-56461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56462/", + "id": 56462, + "name": "Family Business", + "site_detail_url": "https://comicvine.gamespot.com/family-business/4045-56462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56463/", + "id": 56463, + "name": "Weapon XI", + "site_detail_url": "https://comicvine.gamespot.com/weapon-xi/4045-56463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56464/", + "id": 56464, + "name": "Romulus", + "site_detail_url": "https://comicvine.gamespot.com/romulus/4045-56464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56465/", + "id": 56465, + "name": "7 The Hard Way", + "site_detail_url": "https://comicvine.gamespot.com/7-the-hard-way/4045-56465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56466/", + "id": 56466, + "name": "What I Do", + "site_detail_url": "https://comicvine.gamespot.com/what-i-do/4045-56466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56467/", + "id": 56467, + "name": "First to Last", + "site_detail_url": "https://comicvine.gamespot.com/first-to-last/4045-56467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56468/", + "id": 56468, + "name": "The Adamantium Men", + "site_detail_url": "https://comicvine.gamespot.com/the-adamantium-men/4045-56468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56469/", + "id": 56469, + "name": "Insane In The Brain", + "site_detail_url": "https://comicvine.gamespot.com/insane-in-the-brain/4045-56469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56470/", + "id": 56470, + "name": "Tomorrow Dies Today", + "site_detail_url": "https://comicvine.gamespot.com/tomorrow-dies-today/4045-56470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56471/", + "id": 56471, + "name": "Wolverine vs The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-the-x-men/4045-56471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56472/", + "id": 56472, + "name": "Target X", + "site_detail_url": "https://comicvine.gamespot.com/target-x/4045-56472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56482/", + "id": 56482, + "name": "Dead Man's Hand", + "site_detail_url": "https://comicvine.gamespot.com/dead-mans-hand/4045-56482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56483/", + "id": 56483, + "name": "Hidden In View", + "site_detail_url": "https://comicvine.gamespot.com/hidden-in-view/4045-56483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56484/", + "id": 56484, + "name": "Faustus Affair", + "site_detail_url": "https://comicvine.gamespot.com/faustus-affair/4045-56484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56485/", + "id": 56485, + "name": "Spider-Island", + "site_detail_url": "https://comicvine.gamespot.com/spider-island/4045-56485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56486/", + "id": 56486, + "name": "Out", + "site_detail_url": "https://comicvine.gamespot.com/out/4045-56486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56487/", + "id": 56487, + "name": "Hulk No More", + "site_detail_url": "https://comicvine.gamespot.com/hulk-no-more/4045-56487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56500/", + "id": 56500, + "name": "Suicide Run", + "site_detail_url": "https://comicvine.gamespot.com/suicide-run/4045-56500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56504/", + "id": 56504, + "name": "The Death of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-captain-america/4045-56504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56517/", + "id": 56517, + "name": "Eyes of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/eyes-of-the-dragon/4045-56517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56520/", + "id": 56520, + "name": "Fix Me", + "site_detail_url": "https://comicvine.gamespot.com/fix-me/4045-56520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56522/", + "id": 56522, + "name": "Shattered Heroes", + "site_detail_url": "https://comicvine.gamespot.com/shattered-heroes/4045-56522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56523/", + "id": 56523, + "name": "Magneto Rex", + "site_detail_url": "https://comicvine.gamespot.com/magneto-rex/4045-56523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56526/", + "id": 56526, + "name": "Fighting Chance", + "site_detail_url": "https://comicvine.gamespot.com/fighting-chance/4045-56526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56527/", + "id": 56527, + "name": "The Dark Angel Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-angel-saga/4045-56527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56531/", + "id": 56531, + "name": "Breaking Point", + "site_detail_url": "https://comicvine.gamespot.com/breaking-point/4045-56531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56536/", + "id": 56536, + "name": "Assault on Olympus", + "site_detail_url": "https://comicvine.gamespot.com/assault-on-olympus/4045-56536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56537/", + "id": 56537, + "name": "Hero Killers", + "site_detail_url": "https://comicvine.gamespot.com/hero-killers/4045-56537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56538/", + "id": 56538, + "name": "Masques", + "site_detail_url": "https://comicvine.gamespot.com/masques/4045-56538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56539/", + "id": 56539, + "name": "Sub-City", + "site_detail_url": "https://comicvine.gamespot.com/sub-city/4045-56539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56540/", + "id": 56540, + "name": "Sabotage", + "site_detail_url": "https://comicvine.gamespot.com/sabotage/4045-56540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56541/", + "id": 56541, + "name": "Nomad", + "site_detail_url": "https://comicvine.gamespot.com/nomad/4045-56541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56542/", + "id": 56542, + "name": "Pursuit", + "site_detail_url": "https://comicvine.gamespot.com/pursuit/4045-56542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56543/", + "id": 56543, + "name": "American Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/american-nightmare/4045-56543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56544/", + "id": 56544, + "name": "The Secret Origin of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/the-secret-origin-of-captain-america/4045-56544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56545/", + "id": 56545, + "name": "Serpent Crown Saga", + "site_detail_url": "https://comicvine.gamespot.com/serpent-crown-saga/4045-56545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56546/", + "id": 56546, + "name": "Typhoid Attack", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-attack/4045-56546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56547/", + "id": 56547, + "name": "Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/family-ties/4045-56547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56548/", + "id": 56548, + "name": "The Pacific Overlords", + "site_detail_url": "https://comicvine.gamespot.com/the-pacific-overlords/4045-56548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56549/", + "id": 56549, + "name": "Darker than Scarlet", + "site_detail_url": "https://comicvine.gamespot.com/darker-than-scarlet/4045-56549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56550/", + "id": 56550, + "name": "In the Midst of Life", + "site_detail_url": "https://comicvine.gamespot.com/in-the-midst-of-life/4045-56550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56551/", + "id": 56551, + "name": "Lone Stranger", + "site_detail_url": "https://comicvine.gamespot.com/lone-stranger/4045-56551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56552/", + "id": 56552, + "name": "The Man Without Mercy", + "site_detail_url": "https://comicvine.gamespot.com/the-man-without-mercy/4045-56552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56553/", + "id": 56553, + "name": "Return of the Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-sinister-six/4045-56553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56554/", + "id": 56554, + "name": "Countdown to Dark", + "site_detail_url": "https://comicvine.gamespot.com/countdown-to-dark/4045-56554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56555/", + "id": 56555, + "name": "Liberty Legion", + "site_detail_url": "https://comicvine.gamespot.com/liberty-legion/4045-56555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56556/", + "id": 56556, + "name": "Storm Warnings", + "site_detail_url": "https://comicvine.gamespot.com/storm-warnings/4045-56556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56557/", + "id": 56557, + "name": "Rage of Angels", + "site_detail_url": "https://comicvine.gamespot.com/rage-of-angels/4045-56557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56558/", + "id": 56558, + "name": "Invasion of the Spider-Slayers", + "site_detail_url": "https://comicvine.gamespot.com/invasion-of-the-spider-slayers/4045-56558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56559/", + "id": 56559, + "name": "The Savaging", + "site_detail_url": "https://comicvine.gamespot.com/the-savaging/4045-56559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56560/", + "id": 56560, + "name": "Citizen Kang", + "site_detail_url": "https://comicvine.gamespot.com/citizen-kang/4045-56560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56561/", + "id": 56561, + "name": "Two Americas", + "site_detail_url": "https://comicvine.gamespot.com/two-americas/4045-56561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56562/", + "id": 56562, + "name": "Brothers and Keepers", + "site_detail_url": "https://comicvine.gamespot.com/brothers-and-keepers/4045-56562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56563/", + "id": 56563, + "name": "American Psycho", + "site_detail_url": "https://comicvine.gamespot.com/american-psycho/4045-56563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56564/", + "id": 56564, + "name": "Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier/4045-56564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56565/", + "id": 56565, + "name": "Red Menace", + "site_detail_url": "https://comicvine.gamespot.com/red-menace/4045-56565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56566/", + "id": 56566, + "name": "The Mortal Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-mortal-iron-fist/4045-56566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56567/", + "id": 56567, + "name": "Escape from the Eighth City", + "site_detail_url": "https://comicvine.gamespot.com/escape-from-the-eighth-city/4045-56567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56568/", + "id": 56568, + "name": "The Last Iron Fist Story", + "site_detail_url": "https://comicvine.gamespot.com/the-last-iron-fist-story/4045-56568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56569/", + "id": 56569, + "name": "The Seven Capital Cities of Heaven", + "site_detail_url": "https://comicvine.gamespot.com/the-seven-capital-cities-of-heaven/4045-56569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56570/", + "id": 56570, + "name": "The Book of the Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-book-of-the-iron-fist/4045-56570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56571/", + "id": 56571, + "name": "The Bottom", + "site_detail_url": "https://comicvine.gamespot.com/the-bottom/4045-56571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56572/", + "id": 56572, + "name": "Midnight Sun", + "site_detail_url": "https://comicvine.gamespot.com/midnight-sun/4045-56572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56573/", + "id": 56573, + "name": "The Death of Marc Spector", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-marc-spector/4045-56573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56574/", + "id": 56574, + "name": "Down South", + "site_detail_url": "https://comicvine.gamespot.com/down-south/4045-56574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56575/", + "id": 56575, + "name": "Shock and Awe", + "site_detail_url": "https://comicvine.gamespot.com/shock-and-awe/4045-56575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56576/", + "id": 56576, + "name": "Killed, Not Dead", + "site_detail_url": "https://comicvine.gamespot.com/killed-not-dead/4045-56576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56577/", + "id": 56577, + "name": "Doom Supreme", + "site_detail_url": "https://comicvine.gamespot.com/doom-supreme/4045-56577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56578/", + "id": 56578, + "name": "Timequake", + "site_detail_url": "https://comicvine.gamespot.com/timequake/4045-56578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56579/", + "id": 56579, + "name": "Behold the Vision", + "site_detail_url": "https://comicvine.gamespot.com/behold-the-vision/4045-56579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56580/", + "id": 56580, + "name": "Rebirth of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/rebirth-of-thanos/4045-56580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56581/", + "id": 56581, + "name": "Spidey's Totally Tiny Adventure", + "site_detail_url": "https://comicvine.gamespot.com/spideys-totally-tiny-adventure/4045-56581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56582/", + "id": 56582, + "name": "Heart of Stone", + "site_detail_url": "https://comicvine.gamespot.com/heart-of-stone/4045-56582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56583/", + "id": 56583, + "name": "Fear the Reaper", + "site_detail_url": "https://comicvine.gamespot.com/fear-the-reaper/4045-56583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56584/", + "id": 56584, + "name": "The Quest for Odin", + "site_detail_url": "https://comicvine.gamespot.com/the-quest-for-odin/4045-56584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56585/", + "id": 56585, + "name": "If Asgard Should Perish", + "site_detail_url": "https://comicvine.gamespot.com/if-asgard-should-perish/4045-56585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56586/", + "id": 56586, + "name": "Ragnarok", + "site_detail_url": "https://comicvine.gamespot.com/ragnarok/4045-56586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56587/", + "id": 56587, + "name": "Another Return of the Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/another-return-of-the-sinister-six/4045-56587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56588/", + "id": 56588, + "name": "Spider-Man No More!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-no-more/4045-56588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56589/", + "id": 56589, + "name": "Torment", + "site_detail_url": "https://comicvine.gamespot.com/torment/4045-56589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56590/", + "id": 56590, + "name": "Lifetheft", + "site_detail_url": "https://comicvine.gamespot.com/lifetheft/4045-56590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56591/", + "id": 56591, + "name": "The Taking of the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-taking-of-the-avengers/4045-56591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56592/", + "id": 56592, + "name": "Nothing Can Stop the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/nothing-can-stop-the-juggernaut/4045-56592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56593/", + "id": 56593, + "name": "Dead Man's Bluff", + "site_detail_url": "https://comicvine.gamespot.com/dead-mans-bluff/4045-56593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56594/", + "id": 56594, + "name": "The Arms of Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-arms-of-doctor-octopus/4045-56594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56595/", + "id": 56595, + "name": "The Predator and the Prey", + "site_detail_url": "https://comicvine.gamespot.com/the-predator-and-the-prey/4045-56595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56596/", + "id": 56596, + "name": "Death by Tombstone", + "site_detail_url": "https://comicvine.gamespot.com/death-by-tombstone/4045-56596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56597/", + "id": 56597, + "name": "Skirmish Beneath the Streets", + "site_detail_url": "https://comicvine.gamespot.com/skirmish-beneath-the-streets/4045-56597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56598/", + "id": 56598, + "name": "Armor Wars II", + "site_detail_url": "https://comicvine.gamespot.com/armor-wars-ii/4045-56598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56600/", + "id": 56600, + "name": "The Living Prison", + "site_detail_url": "https://comicvine.gamespot.com/the-living-prison/4045-56600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56601/", + "id": 56601, + "name": "The Day of the Hero Killers", + "site_detail_url": "https://comicvine.gamespot.com/the-day-of-the-hero-killers/4045-56601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56605/", + "id": 56605, + "name": "Revolution: 1993", + "site_detail_url": "https://comicvine.gamespot.com/revolution-1993/4045-56605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56606/", + "id": 56606, + "name": "Phoenix Rising", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-rising/4045-56606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56608/", + "id": 56608, + "name": "Defenders for a Day", + "site_detail_url": "https://comicvine.gamespot.com/defenders-for-a-day/4045-56608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56609/", + "id": 56609, + "name": "X-Sanction", + "site_detail_url": "https://comicvine.gamespot.com/x-sanction/4045-56609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56616/", + "id": 56616, + "name": "Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/ghosts/4045-56616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56617/", + "id": 56617, + "name": "The Name Of The Rose", + "site_detail_url": "https://comicvine.gamespot.com/the-name-of-the-rose/4045-56617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56618/", + "id": 56618, + "name": "My Enemy's Enemy", + "site_detail_url": "https://comicvine.gamespot.com/my-enemys-enemy/4045-56618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56620/", + "id": 56620, + "name": "Art Attack", + "site_detail_url": "https://comicvine.gamespot.com/art-attack/4045-56620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56622/", + "id": 56622, + "name": "Celluloid Heroes", + "site_detail_url": "https://comicvine.gamespot.com/celluloid-heroes/4045-56622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56624/", + "id": 56624, + "name": "The Final Chapter", + "site_detail_url": "https://comicvine.gamespot.com/the-final-chapter/4045-56624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56625/", + "id": 56625, + "name": "Fathers and Sons", + "site_detail_url": "https://comicvine.gamespot.com/fathers-and-sons/4045-56625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56627/", + "id": 56627, + "name": "Taking A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/taking-aim/4045-56627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56629/", + "id": 56629, + "name": "Family Plot", + "site_detail_url": "https://comicvine.gamespot.com/family-plot/4045-56629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56630/", + "id": 56630, + "name": "On the Road", + "site_detail_url": "https://comicvine.gamespot.com/on-the-road/4045-56630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56631/", + "id": 56631, + "name": "Power Play", + "site_detail_url": "https://comicvine.gamespot.com/power-play/4045-56631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56632/", + "id": 56632, + "name": "Return to Vegas", + "site_detail_url": "https://comicvine.gamespot.com/return-to-vegas/4045-56632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56633/", + "id": 56633, + "name": "Beware the Rage of a Desperate Man", + "site_detail_url": "https://comicvine.gamespot.com/beware-the-rage-of-a-desperate-man/4045-56633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56634/", + "id": 56634, + "name": "Claw and Chain", + "site_detail_url": "https://comicvine.gamespot.com/claw-and-chain/4045-56634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56635/", + "id": 56635, + "name": "Assassination Game", + "site_detail_url": "https://comicvine.gamespot.com/assassination-game/4045-56635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56636/", + "id": 56636, + "name": "The Battle of Berlin", + "site_detail_url": "https://comicvine.gamespot.com/the-battle-of-berlin/4045-56636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56638/", + "id": 56638, + "name": "The Final Days", + "site_detail_url": "https://comicvine.gamespot.com/the-final-days/4045-56638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56639/", + "id": 56639, + "name": "Total X-Tinction", + "site_detail_url": "https://comicvine.gamespot.com/total-x-tinction/4045-56639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56641/", + "id": 56641, + "name": "Worldengine", + "site_detail_url": "https://comicvine.gamespot.com/worldengine/4045-56641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56643/", + "id": 56643, + "name": "Fist of Khonshu", + "site_detail_url": "https://comicvine.gamespot.com/fist-of-khonshu/4045-56643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56644/", + "id": 56644, + "name": "Regenesis", + "site_detail_url": "https://comicvine.gamespot.com/regenesis/4045-56644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56646/", + "id": 56646, + "name": "Holocaust in a Hidden Land", + "site_detail_url": "https://comicvine.gamespot.com/holocaust-in-a-hidden-land/4045-56646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56647/", + "id": 56647, + "name": "Live and Let Die", + "site_detail_url": "https://comicvine.gamespot.com/live-and-let-die/4045-56647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56648/", + "id": 56648, + "name": "Dragon Seed Saga", + "site_detail_url": "https://comicvine.gamespot.com/dragon-seed-saga/4045-56648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56649/", + "id": 56649, + "name": "The Death of Captain Stacy", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-captain-stacy/4045-56649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56650/", + "id": 56650, + "name": "Vibranium Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/vibranium-vendetta/4045-56650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56651/", + "id": 56651, + "name": "Doomsday", + "site_detail_url": "https://comicvine.gamespot.com/doomsday/4045-56651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56654/", + "id": 56654, + "name": "The Death of the Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-the-red-skull/4045-56654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56655/", + "id": 56655, + "name": "One Nation Under Doom", + "site_detail_url": "https://comicvine.gamespot.com/one-nation-under-doom/4045-56655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56659/", + "id": 56659, + "name": "Time Out Of Mind", + "site_detail_url": "https://comicvine.gamespot.com/time-out-of-mind/4045-56659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56660/", + "id": 56660, + "name": "The Arachnis Project.", + "site_detail_url": "https://comicvine.gamespot.com/the-arachnis-project/4045-56660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56662/", + "id": 56662, + "name": "Meanwhile", + "site_detail_url": "https://comicvine.gamespot.com/meanwhile/4045-56662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56666/", + "id": 56666, + "name": "Monstrous", + "site_detail_url": "https://comicvine.gamespot.com/monstrous/4045-56666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56668/", + "id": 56668, + "name": "Nova Roma", + "site_detail_url": "https://comicvine.gamespot.com/nova-roma/4045-56668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56673/", + "id": 56673, + "name": "The Reaper and The Robot", + "site_detail_url": "https://comicvine.gamespot.com/the-reaper-and-the-robot/4045-56673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56674/", + "id": 56674, + "name": "Avengers vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men/4045-56674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56682/", + "id": 56682, + "name": "Otherworld", + "site_detail_url": "https://comicvine.gamespot.com/otherworld/4045-56682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56685/", + "id": 56685, + "name": "Time and Time Again", + "site_detail_url": "https://comicvine.gamespot.com/time-and-time-again/4045-56685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56727/", + "id": 56727, + "name": "Circle of Four", + "site_detail_url": "https://comicvine.gamespot.com/circle-of-four/4045-56727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56731/", + "id": 56731, + "name": "A Skinning of Souls", + "site_detail_url": "https://comicvine.gamespot.com/a-skinning-of-souls/4045-56731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56735/", + "id": 56735, + "name": "The Superia Stratagem", + "site_detail_url": "https://comicvine.gamespot.com/the-superia-stratagem/4045-56735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56736/", + "id": 56736, + "name": "Scarlet Redemption", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-redemption/4045-56736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56754/", + "id": 56754, + "name": "Dead", + "site_detail_url": "https://comicvine.gamespot.com/dead/4045-56754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56766/", + "id": 56766, + "name": "The Omega Effect", + "site_detail_url": "https://comicvine.gamespot.com/the-omega-effect/4045-56766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56773/", + "id": 56773, + "name": "Mayan Rule", + "site_detail_url": "https://comicvine.gamespot.com/mayan-rule/4045-56773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56781/", + "id": 56781, + "name": "Subterranean Wars", + "site_detail_url": "https://comicvine.gamespot.com/subterranean-wars/4045-56781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56782/", + "id": 56782, + "name": "Ends of the Earth", + "site_detail_url": "https://comicvine.gamespot.com/ends-of-the-earth/4045-56782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56783/", + "id": 56783, + "name": "The Von Strucker Gambit", + "site_detail_url": "https://comicvine.gamespot.com/the-von-strucker-gambit/4045-56783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56785/", + "id": 56785, + "name": "Haunted", + "site_detail_url": "https://comicvine.gamespot.com/haunted/4045-56785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56791/", + "id": 56791, + "name": "Final Execution", + "site_detail_url": "https://comicvine.gamespot.com/final-execution/4045-56791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56792/", + "id": 56792, + "name": "Exiled", + "site_detail_url": "https://comicvine.gamespot.com/exiled/4045-56792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56793/", + "id": 56793, + "name": "Extremis", + "site_detail_url": "https://comicvine.gamespot.com/extremis/4045-56793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56796/", + "id": 56796, + "name": "Supernovas", + "site_detail_url": "https://comicvine.gamespot.com/supernovas/4045-56796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56798/", + "id": 56798, + "name": "Infinity Quest", + "site_detail_url": "https://comicvine.gamespot.com/infinity-quest/4045-56798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56801/", + "id": 56801, + "name": "Wild Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/wild-kingdom/4045-56801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56802/", + "id": 56802, + "name": "Identity Wars", + "site_detail_url": "https://comicvine.gamespot.com/identity-wars/4045-56802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56805/", + "id": 56805, + "name": "Hulk of Arabia", + "site_detail_url": "https://comicvine.gamespot.com/hulk-of-arabia/4045-56805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56806/", + "id": 56806, + "name": "The Omegex Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-omegex-saga/4045-56806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56807/", + "id": 56807, + "name": "Planet Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/planet-red-hulk/4045-56807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56809/", + "id": 56809, + "name": "Magnum Opus", + "site_detail_url": "https://comicvine.gamespot.com/magnum-opus/4045-56809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56810/", + "id": 56810, + "name": "Scared Straight", + "site_detail_url": "https://comicvine.gamespot.com/scared-straight/4045-56810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56811/", + "id": 56811, + "name": "Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/widowmaker/4045-56811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56812/", + "id": 56812, + "name": "Acceptable Losses", + "site_detail_url": "https://comicvine.gamespot.com/acceptable-losses/4045-56812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56813/", + "id": 56813, + "name": "Faith in Monsters", + "site_detail_url": "https://comicvine.gamespot.com/faith-in-monsters/4045-56813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56814/", + "id": 56814, + "name": "Caged Angels", + "site_detail_url": "https://comicvine.gamespot.com/caged-angels/4045-56814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56815/", + "id": 56815, + "name": "Escape from the Negative Zone", + "site_detail_url": "https://comicvine.gamespot.com/escape-from-the-negative-zone/4045-56815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56816/", + "id": 56816, + "name": "Missing in Action", + "site_detail_url": "https://comicvine.gamespot.com/missing-in-action/4045-56816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56817/", + "id": 56817, + "name": "Nefaria Protocols", + "site_detail_url": "https://comicvine.gamespot.com/nefaria-protocols/4045-56817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56818/", + "id": 56818, + "name": "The Widow", + "site_detail_url": "https://comicvine.gamespot.com/the-widow/4045-56818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56819/", + "id": 56819, + "name": "Relentless", + "site_detail_url": "https://comicvine.gamespot.com/relentless/4045-56819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56820/", + "id": 56820, + "name": "The Final Threat", + "site_detail_url": "https://comicvine.gamespot.com/the-final-threat/4045-56820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56822/", + "id": 56822, + "name": "The Iron Age", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-age/4045-56822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56823/", + "id": 56823, + "name": "The Pegasus Project", + "site_detail_url": "https://comicvine.gamespot.com/the-pegasus-project/4045-56823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56824/", + "id": 56824, + "name": "First Sign", + "site_detail_url": "https://comicvine.gamespot.com/first-sign/4045-56824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56825/", + "id": 56825, + "name": "Gang War", + "site_detail_url": "https://comicvine.gamespot.com/gang-war/4045-56825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56826/", + "id": 56826, + "name": "Secrets & Lies", + "site_detail_url": "https://comicvine.gamespot.com/secrets-lies/4045-56826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56827/", + "id": 56827, + "name": "The Dragon's Corridor", + "site_detail_url": "https://comicvine.gamespot.com/the-dragons-corridor/4045-56827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56828/", + "id": 56828, + "name": "Secrets of the Deep", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-deep/4045-56828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56829/", + "id": 56829, + "name": "Terror of the Jade Claw", + "site_detail_url": "https://comicvine.gamespot.com/terror-of-the-jade-claw/4045-56829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56830/", + "id": 56830, + "name": "The Return of the Three Dimensional Man", + "site_detail_url": "https://comicvine.gamespot.com/the-return-of-the-three-dimensional-man/4045-56830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56831/", + "id": 56831, + "name": "Godmarked", + "site_detail_url": "https://comicvine.gamespot.com/godmarked/4045-56831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56832/", + "id": 56832, + "name": "The X-Heist", + "site_detail_url": "https://comicvine.gamespot.com/the-x-heist/4045-56832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56833/", + "id": 56833, + "name": "Earth's Mightiest Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/earths-mightiest-super-heroes/4045-56833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56835/", + "id": 56835, + "name": "Lionheart of Avalon", + "site_detail_url": "https://comicvine.gamespot.com/lionheart-of-avalon/4045-56835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56836/", + "id": 56836, + "name": "Once an Invader", + "site_detail_url": "https://comicvine.gamespot.com/once-an-invader/4045-56836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56837/", + "id": 56837, + "name": "Hands of the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/hands-of-the-mandarin/4045-56837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56838/", + "id": 56838, + "name": "Mad Dog Ward", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog-ward/4045-56838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56840/", + "id": 56840, + "name": "Search for the Sorcerer Supreme", + "site_detail_url": "https://comicvine.gamespot.com/search-for-the-sorcerer-supreme/4045-56840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56841/", + "id": 56841, + "name": "Savage Six", + "site_detail_url": "https://comicvine.gamespot.com/savage-six/4045-56841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56847/", + "id": 56847, + "name": "Divided We Fall", + "site_detail_url": "https://comicvine.gamespot.com/divided-we-fall/4045-56847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56848/", + "id": 56848, + "name": "Everything Burns", + "site_detail_url": "https://comicvine.gamespot.com/everything-burns/4045-56848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56851/", + "id": 56851, + "name": "Planet Skaar", + "site_detail_url": "https://comicvine.gamespot.com/planet-skaar/4045-56851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56858/", + "id": 56858, + "name": "Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/odyssey/4045-56858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56859/", + "id": 56859, + "name": "Infinity Union", + "site_detail_url": "https://comicvine.gamespot.com/infinity-union/4045-56859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56860/", + "id": 56860, + "name": "Deathblow", + "site_detail_url": "https://comicvine.gamespot.com/deathblow/4045-56860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56861/", + "id": 56861, + "name": "Collection Obsession", + "site_detail_url": "https://comicvine.gamespot.com/collection-obsession/4045-56861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56862/", + "id": 56862, + "name": "Chaos Cascade", + "site_detail_url": "https://comicvine.gamespot.com/chaos-cascade/4045-56862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56865/", + "id": 56865, + "name": "Holy War", + "site_detail_url": "https://comicvine.gamespot.com/holy-war/4045-56865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56866/", + "id": 56866, + "name": "No Turning Back", + "site_detail_url": "https://comicvine.gamespot.com/no-turning-back/4045-56866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56867/", + "id": 56867, + "name": "The Souls of Cyber-Folk", + "site_detail_url": "https://comicvine.gamespot.com/the-souls-of-cyber-folk/4045-56867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56868/", + "id": 56868, + "name": "The Pitt", + "site_detail_url": "https://comicvine.gamespot.com/the-pitt/4045-56868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56870/", + "id": 56870, + "name": "Mighty/Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/mightyfantastic/4045-56870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56871/", + "id": 56871, + "name": "Salvation", + "site_detail_url": "https://comicvine.gamespot.com/salvation/4045-56871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56872/", + "id": 56872, + "name": "Mighty/Dark", + "site_detail_url": "https://comicvine.gamespot.com/mightydark/4045-56872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56873/", + "id": 56873, + "name": "Terminatrix Objective", + "site_detail_url": "https://comicvine.gamespot.com/terminatrix-objective/4045-56873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56875/", + "id": 56875, + "name": "Sign of the End Times", + "site_detail_url": "https://comicvine.gamespot.com/sign-of-the-end-times/4045-56875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56876/", + "id": 56876, + "name": "Hellfire Hunt", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-hunt/4045-56876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56877/", + "id": 56877, + "name": "Blood Brothers", + "site_detail_url": "https://comicvine.gamespot.com/blood-brothers/4045-56877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56878/", + "id": 56878, + "name": "Nemesis Contract", + "site_detail_url": "https://comicvine.gamespot.com/nemesis-contract/4045-56878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56879/", + "id": 56879, + "name": "No Direction Home", + "site_detail_url": "https://comicvine.gamespot.com/no-direction-home/4045-56879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56880/", + "id": 56880, + "name": "Fearful Symmetry", + "site_detail_url": "https://comicvine.gamespot.com/fearful-symmetry/4045-56880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56881/", + "id": 56881, + "name": "Celestial Madonna Saga", + "site_detail_url": "https://comicvine.gamespot.com/celestial-madonna-saga/4045-56881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56882/", + "id": 56882, + "name": "Purple Reign", + "site_detail_url": "https://comicvine.gamespot.com/purple-reign/4045-56882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56883/", + "id": 56883, + "name": "Guardian Protocols", + "site_detail_url": "https://comicvine.gamespot.com/guardian-protocols/4045-56883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56884/", + "id": 56884, + "name": "Like Lightning", + "site_detail_url": "https://comicvine.gamespot.com/like-lightning/4045-56884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56885/", + "id": 56885, + "name": "Public Exposure", + "site_detail_url": "https://comicvine.gamespot.com/public-exposure/4045-56885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56886/", + "id": 56886, + "name": "Molecule Man", + "site_detail_url": "https://comicvine.gamespot.com/molecule-man/4045-56886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56887/", + "id": 56887, + "name": "Nightmare in Scarlet", + "site_detail_url": "https://comicvine.gamespot.com/nightmare-in-scarlet/4045-56887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56888/", + "id": 56888, + "name": "Future Shock", + "site_detail_url": "https://comicvine.gamespot.com/future-shock/4045-56888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56889/", + "id": 56889, + "name": "Maximum Clonage", + "site_detail_url": "https://comicvine.gamespot.com/maximum-clonage/4045-56889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56894/", + "id": 56894, + "name": "The Trial of Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-peter-parker/4045-56894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56895/", + "id": 56895, + "name": "Cataclysm", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm/4045-56895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56896/", + "id": 56896, + "name": "Best Intentions", + "site_detail_url": "https://comicvine.gamespot.com/best-intentions/4045-56896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56897/", + "id": 56897, + "name": "Heroic Tendencies", + "site_detail_url": "https://comicvine.gamespot.com/heroic-tendencies/4045-56897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56898/", + "id": 56898, + "name": "Six Arms Saga", + "site_detail_url": "https://comicvine.gamespot.com/six-arms-saga/4045-56898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56899/", + "id": 56899, + "name": "Contagion", + "site_detail_url": "https://comicvine.gamespot.com/contagion/4045-56899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56900/", + "id": 56900, + "name": "Broken Quarantine", + "site_detail_url": "https://comicvine.gamespot.com/broken-quarantine/4045-56900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56903/", + "id": 56903, + "name": "Death Song of Kulan Gath", + "site_detail_url": "https://comicvine.gamespot.com/death-song-of-kulan-gath/4045-56903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56904/", + "id": 56904, + "name": "Search for She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/search-for-she-hulk/4045-56904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56905/", + "id": 56905, + "name": "Soul Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/soul-gauntlet/4045-56905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56906/", + "id": 56906, + "name": "Pax Demonica", + "site_detail_url": "https://comicvine.gamespot.com/pax-demonica/4045-56906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56907/", + "id": 56907, + "name": "Ultron Unbound", + "site_detail_url": "https://comicvine.gamespot.com/ultron-unbound/4045-56907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56908/", + "id": 56908, + "name": "Death-Web Saga", + "site_detail_url": "https://comicvine.gamespot.com/death-web-saga/4045-56908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56909/", + "id": 56909, + "name": "Peace Dividend", + "site_detail_url": "https://comicvine.gamespot.com/peace-dividend/4045-56909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56910/", + "id": 56910, + "name": "Infamous Monsters of Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/infamous-monsters-of-hollywood/4045-56910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56911/", + "id": 56911, + "name": "Hidden Depth", + "site_detail_url": "https://comicvine.gamespot.com/hidden-depth/4045-56911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56912/", + "id": 56912, + "name": "Powderkeg", + "site_detail_url": "https://comicvine.gamespot.com/powderkeg/4045-56912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56913/", + "id": 56913, + "name": "Above and Beyond", + "site_detail_url": "https://comicvine.gamespot.com/above-and-beyond/4045-56913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56914/", + "id": 56914, + "name": "Super-Nova Saga", + "site_detail_url": "https://comicvine.gamespot.com/super-nova-saga/4045-56914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56916/", + "id": 56916, + "name": "United We Stand", + "site_detail_url": "https://comicvine.gamespot.com/united-we-stand/4045-56916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56917/", + "id": 56917, + "name": "Zodiac Attack", + "site_detail_url": "https://comicvine.gamespot.com/zodiac-attack/4045-56917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56918/", + "id": 56918, + "name": "Once and Future Kang", + "site_detail_url": "https://comicvine.gamespot.com/once-and-future-kang/4045-56918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56919/", + "id": 56919, + "name": "Heavy Metal", + "site_detail_url": "https://comicvine.gamespot.com/heavy-metal/4045-56919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56920/", + "id": 56920, + "name": "Futures Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/futures-imperfect/4045-56920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56921/", + "id": 56921, + "name": "Journey to Olympia", + "site_detail_url": "https://comicvine.gamespot.com/journey-to-olympia/4045-56921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56922/", + "id": 56922, + "name": "Attack of the Lava Men", + "site_detail_url": "https://comicvine.gamespot.com/attack-of-the-lava-men/4045-56922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56923/", + "id": 56923, + "name": "Nebula/Skrull Saga", + "site_detail_url": "https://comicvine.gamespot.com/nebulaskrull-saga/4045-56923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56924/", + "id": 56924, + "name": "Annihilation Gambit", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-gambit/4045-56924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56925/", + "id": 56925, + "name": "Secret Histories", + "site_detail_url": "https://comicvine.gamespot.com/secret-histories/4045-56925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56926/", + "id": 56926, + "name": "The Summoning", + "site_detail_url": "https://comicvine.gamespot.com/the-summoning/4045-56926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56927/", + "id": 56927, + "name": "Defenders/Offenders War", + "site_detail_url": "https://comicvine.gamespot.com/defendersoffenders-war/4045-56927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56929/", + "id": 56929, + "name": "Serpent Crown Affair", + "site_detail_url": "https://comicvine.gamespot.com/serpent-crown-affair/4045-56929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56932/", + "id": 56932, + "name": "No One Dies", + "site_detail_url": "https://comicvine.gamespot.com/no-one-dies/4045-56932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56935/", + "id": 56935, + "name": "Minimum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/minimum-carnage/4045-56935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56938/", + "id": 56938, + "name": "Yesterday Quest", + "site_detail_url": "https://comicvine.gamespot.com/yesterday-quest/4045-56938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56939/", + "id": 56939, + "name": "Let the Game Begin", + "site_detail_url": "https://comicvine.gamespot.com/let-the-game-begin/4045-56939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56940/", + "id": 56940, + "name": "Facades", + "site_detail_url": "https://comicvine.gamespot.com/facades/4045-56940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56941/", + "id": 56941, + "name": "Private War of Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/private-war-of-doctor-doom/4045-56941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56944/", + "id": 56944, + "name": "The Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/the-dogs-of-war/4045-56944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56945/", + "id": 56945, + "name": "Asunder", + "site_detail_url": "https://comicvine.gamespot.com/asunder/4045-56945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56946/", + "id": 56946, + "name": "The Devil in Cell-Block D", + "site_detail_url": "https://comicvine.gamespot.com/the-devil-in-cell-block-d/4045-56946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56947/", + "id": 56947, + "name": "Eternals Saga", + "site_detail_url": "https://comicvine.gamespot.com/eternals-saga/4045-56947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56948/", + "id": 56948, + "name": "Danger Zone", + "site_detail_url": "https://comicvine.gamespot.com/danger-zone/4045-56948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56949/", + "id": 56949, + "name": "Cult of Love", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-love/4045-56949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56954/", + "id": 56954, + "name": "Domination Factor", + "site_detail_url": "https://comicvine.gamespot.com/domination-factor/4045-56954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56967/", + "id": 56967, + "name": "Darkness", + "site_detail_url": "https://comicvine.gamespot.com/darkness/4045-56967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56969/", + "id": 56969, + "name": "World Power", + "site_detail_url": "https://comicvine.gamespot.com/world-power/4045-56969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56970/", + "id": 56970, + "name": "Midgard Aflame", + "site_detail_url": "https://comicvine.gamespot.com/midgard-aflame/4045-56970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56971/", + "id": 56971, + "name": "Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/dogs-of-war/4045-56971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56972/", + "id": 56972, + "name": "Tomorrow War", + "site_detail_url": "https://comicvine.gamespot.com/tomorrow-war/4045-56972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56973/", + "id": 56973, + "name": "Thanos War", + "site_detail_url": "https://comicvine.gamespot.com/thanos-war/4045-56973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56974/", + "id": 56974, + "name": "Past Gone Mad", + "site_detail_url": "https://comicvine.gamespot.com/past-gone-mad/4045-56974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56975/", + "id": 56975, + "name": "Bride of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/bride-of-ultron/4045-56975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56976/", + "id": 56976, + "name": "No Final Victory", + "site_detail_url": "https://comicvine.gamespot.com/no-final-victory/4045-56976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56977/", + "id": 56977, + "name": "Lost Weekend", + "site_detail_url": "https://comicvine.gamespot.com/lost-weekend/4045-56977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56978/", + "id": 56978, + "name": "Pride Comes Before the Fall", + "site_detail_url": "https://comicvine.gamespot.com/pride-comes-before-the-fall/4045-56978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56979/", + "id": 56979, + "name": "Moonwalk", + "site_detail_url": "https://comicvine.gamespot.com/moonwalk/4045-56979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56980/", + "id": 56980, + "name": "Big Break", + "site_detail_url": "https://comicvine.gamespot.com/big-break/4045-56980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56981/", + "id": 56981, + "name": "Empire", + "site_detail_url": "https://comicvine.gamespot.com/empire/4045-56981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56982/", + "id": 56982, + "name": "Madbomb", + "site_detail_url": "https://comicvine.gamespot.com/madbomb/4045-56982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56983/", + "id": 56983, + "name": "Shadows and Stars", + "site_detail_url": "https://comicvine.gamespot.com/shadows-and-stars/4045-56983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56984/", + "id": 56984, + "name": "Traitor in Our Midst", + "site_detail_url": "https://comicvine.gamespot.com/traitor-in-our-midst/4045-56984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56985/", + "id": 56985, + "name": "Contest of Death", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-death/4045-56985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56990/", + "id": 56990, + "name": "Infinity Effect", + "site_detail_url": "https://comicvine.gamespot.com/infinity-effect/4045-56990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56991/", + "id": 56991, + "name": "The Gift", + "site_detail_url": "https://comicvine.gamespot.com/the-gift/4045-56991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56992/", + "id": 56992, + "name": "Dying Wish", + "site_detail_url": "https://comicvine.gamespot.com/dying-wish/4045-56992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56997/", + "id": 56997, + "name": "Doomquest", + "site_detail_url": "https://comicvine.gamespot.com/doomquest/4045-56997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56998/", + "id": 56998, + "name": "Recurring Knightmare", + "site_detail_url": "https://comicvine.gamespot.com/recurring-knightmare/4045-56998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56999/", + "id": 56999, + "name": "Strange Changes", + "site_detail_url": "https://comicvine.gamespot.com/strange-changes/4045-56999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57000/", + "id": 57000, + "name": "Tiny Little War", + "site_detail_url": "https://comicvine.gamespot.com/tiny-little-war/4045-57000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57001/", + "id": 57001, + "name": "Final Defense", + "site_detail_url": "https://comicvine.gamespot.com/final-defense/4045-57001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57002/", + "id": 57002, + "name": "Aesthetic Imperative", + "site_detail_url": "https://comicvine.gamespot.com/aesthetic-imperative/4045-57002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57003/", + "id": 57003, + "name": "Mad God Saga", + "site_detail_url": "https://comicvine.gamespot.com/mad-god-saga/4045-57003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57004/", + "id": 57004, + "name": "Cheating Death", + "site_detail_url": "https://comicvine.gamespot.com/cheating-death/4045-57004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57005/", + "id": 57005, + "name": "Crazy Like a Fox", + "site_detail_url": "https://comicvine.gamespot.com/crazy-like-a-fox/4045-57005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57006/", + "id": 57006, + "name": "Monsters and Gods", + "site_detail_url": "https://comicvine.gamespot.com/monsters-and-gods/4045-57006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57007/", + "id": 57007, + "name": "Coven", + "site_detail_url": "https://comicvine.gamespot.com/coven/4045-57007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57008/", + "id": 57008, + "name": "Time Flies", + "site_detail_url": "https://comicvine.gamespot.com/time-flies/4045-57008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57010/", + "id": 57010, + "name": "Terrible Trio", + "site_detail_url": "https://comicvine.gamespot.com/terrible-trio/4045-57010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57011/", + "id": 57011, + "name": "Infinity Abyss", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss/4045-57011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57012/", + "id": 57012, + "name": "Celestial Quest", + "site_detail_url": "https://comicvine.gamespot.com/celestial-quest/4045-57012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57018/", + "id": 57018, + "name": "Marvel Universe vs.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs/4045-57018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57020/", + "id": 57020, + "name": "War of the Gods", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-gods/4045-57020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57023/", + "id": 57023, + "name": "Spider-Hunt", + "site_detail_url": "https://comicvine.gamespot.com/spider-hunt/4045-57023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57031/", + "id": 57031, + "name": "Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron/4045-57031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57035/", + "id": 57035, + "name": "The Marvels Project", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-project/4045-57035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57036/", + "id": 57036, + "name": "Sons of the Fathers", + "site_detail_url": "https://comicvine.gamespot.com/sons-of-the-fathers/4045-57036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57037/", + "id": 57037, + "name": "Trial of the Watcher", + "site_detail_url": "https://comicvine.gamespot.com/trial-of-the-watcher/4045-57037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57042/", + "id": 57042, + "name": "War Crimes", + "site_detail_url": "https://comicvine.gamespot.com/war-crimes/4045-57042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57043/", + "id": 57043, + "name": "Breaking Points", + "site_detail_url": "https://comicvine.gamespot.com/breaking-points/4045-57043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57047/", + "id": 57047, + "name": "Black Widow Hunt", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-hunt/4045-57047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57050/", + "id": 57050, + "name": "The Future", + "site_detail_url": "https://comicvine.gamespot.com/the-future/4045-57050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57051/", + "id": 57051, + "name": "End Times", + "site_detail_url": "https://comicvine.gamespot.com/end-times/4045-57051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57052/", + "id": 57052, + "name": "Hell On Earth War", + "site_detail_url": "https://comicvine.gamespot.com/hell-on-earth-war/4045-57052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57054/", + "id": 57054, + "name": "The God Butcher", + "site_detail_url": "https://comicvine.gamespot.com/the-god-butcher/4045-57054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57055/", + "id": 57055, + "name": "Heart of the Monster", + "site_detail_url": "https://comicvine.gamespot.com/heart-of-the-monster/4045-57055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57056/", + "id": 57056, + "name": "Happy Birthday", + "site_detail_url": "https://comicvine.gamespot.com/happy-birthday/4045-57056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57057/", + "id": 57057, + "name": "Love and War", + "site_detail_url": "https://comicvine.gamespot.com/love-and-war/4045-57057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57058/", + "id": 57058, + "name": "End of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/end-of-the-green-goblin/4045-57058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57059/", + "id": 57059, + "name": "Horns of the Rhino", + "site_detail_url": "https://comicvine.gamespot.com/horns-of-the-rhino/4045-57059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57060/", + "id": 57060, + "name": "Underbase Saga", + "site_detail_url": "https://comicvine.gamespot.com/underbase-saga/4045-57060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57061/", + "id": 57061, + "name": "Hulk vs. Banner", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-banner/4045-57061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57062/", + "id": 57062, + "name": "Stay Angry", + "site_detail_url": "https://comicvine.gamespot.com/stay-angry/4045-57062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57063/", + "id": 57063, + "name": "United", + "site_detail_url": "https://comicvine.gamespot.com/united/4045-57063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57065/", + "id": 57065, + "name": "Face Front", + "site_detail_url": "https://comicvine.gamespot.com/face-front/4045-57065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57066/", + "id": 57066, + "name": "Powerless", + "site_detail_url": "https://comicvine.gamespot.com/powerless/4045-57066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57067/", + "id": 57067, + "name": "Under My Skin", + "site_detail_url": "https://comicvine.gamespot.com/under-my-skin/4045-57067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57068/", + "id": 57068, + "name": "The Extremist", + "site_detail_url": "https://comicvine.gamespot.com/the-extremist/4045-57068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57069/", + "id": 57069, + "name": "The Death of Vermin", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-vermin/4045-57069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57070/", + "id": 57070, + "name": "Sin-Eater Released", + "site_detail_url": "https://comicvine.gamespot.com/sin-eater-released/4045-57070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57071/", + "id": 57071, + "name": "24/7", + "site_detail_url": "https://comicvine.gamespot.com/247/4045-57071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57074/", + "id": 57074, + "name": "Invasion of Atlantis", + "site_detail_url": "https://comicvine.gamespot.com/invasion-of-atlantis/4045-57074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57075/", + "id": 57075, + "name": "Heart of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/heart-of-the-atom/4045-57075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57076/", + "id": 57076, + "name": "Strangers on an Astral Plane", + "site_detail_url": "https://comicvine.gamespot.com/strangers-on-an-astral-plane/4045-57076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57077/", + "id": 57077, + "name": "Burning World", + "site_detail_url": "https://comicvine.gamespot.com/burning-world/4045-57077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57078/", + "id": 57078, + "name": "X-Termination", + "site_detail_url": "https://comicvine.gamespot.com/x-termination/4045-57078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57079/", + "id": 57079, + "name": "Last Rites", + "site_detail_url": "https://comicvine.gamespot.com/last-rites/4045-57079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57081/", + "id": 57081, + "name": "Battle of the Century", + "site_detail_url": "https://comicvine.gamespot.com/battle-of-the-century/4045-57081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57082/", + "id": 57082, + "name": "Masks", + "site_detail_url": "https://comicvine.gamespot.com/masks/4045-57082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57083/", + "id": 57083, + "name": "The Coming of Her", + "site_detail_url": "https://comicvine.gamespot.com/the-coming-of-her/4045-57083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57084/", + "id": 57084, + "name": "Alpha", + "site_detail_url": "https://comicvine.gamespot.com/alpha/4045-57084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57085/", + "id": 57085, + "name": "The Original Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-original-clone-saga/4045-57085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57086/", + "id": 57086, + "name": "The Carrion Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-carrion-saga/4045-57086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57087/", + "id": 57087, + "name": "Tree of Knowledge", + "site_detail_url": "https://comicvine.gamespot.com/tree-of-knowledge/4045-57087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57088/", + "id": 57088, + "name": "Fathoms of Humanity", + "site_detail_url": "https://comicvine.gamespot.com/fathoms-of-humanity/4045-57088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57089/", + "id": 57089, + "name": "Widow's Kiss", + "site_detail_url": "https://comicvine.gamespot.com/widows-kiss/4045-57089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57090/", + "id": 57090, + "name": "Lizard's Tale", + "site_detail_url": "https://comicvine.gamespot.com/lizards-tale/4045-57090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57091/", + "id": 57091, + "name": "Countdown", + "site_detail_url": "https://comicvine.gamespot.com/countdown/4045-57091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57092/", + "id": 57092, + "name": "Changes", + "site_detail_url": "https://comicvine.gamespot.com/changes/4045-57092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57093/", + "id": 57093, + "name": "Jumping the Tracks", + "site_detail_url": "https://comicvine.gamespot.com/jumping-the-tracks/4045-57093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57094/", + "id": 57094, + "name": "Sandblasted", + "site_detail_url": "https://comicvine.gamespot.com/sandblasted/4045-57094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57095/", + "id": 57095, + "name": "Taking Wing", + "site_detail_url": "https://comicvine.gamespot.com/taking-wing/4045-57095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57096/", + "id": 57096, + "name": "I Hate a Mystery", + "site_detail_url": "https://comicvine.gamespot.com/i-hate-a-mystery/4045-57096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57097/", + "id": 57097, + "name": "Last Temptation of Eddie Brock", + "site_detail_url": "https://comicvine.gamespot.com/last-temptation-of-eddie-brock/4045-57097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57098/", + "id": 57098, + "name": "Feral", + "site_detail_url": "https://comicvine.gamespot.com/feral/4045-57098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57099/", + "id": 57099, + "name": "Field of Dream", + "site_detail_url": "https://comicvine.gamespot.com/field-of-dream/4045-57099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57100/", + "id": 57100, + "name": "One Small Break", + "site_detail_url": "https://comicvine.gamespot.com/one-small-break/4045-57100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57101/", + "id": 57101, + "name": "Operation: Octopus", + "site_detail_url": "https://comicvine.gamespot.com/operation-octopus/4045-57101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57102/", + "id": 57102, + "name": "Tempest Fugit", + "site_detail_url": "https://comicvine.gamespot.com/tempest-fugit/4045-57102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57103/", + "id": 57103, + "name": "Ragnarok", + "site_detail_url": "https://comicvine.gamespot.com/ragnarok/4045-57103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57104/", + "id": 57104, + "name": "Gods and Men", + "site_detail_url": "https://comicvine.gamespot.com/gods-and-men/4045-57104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57105/", + "id": 57105, + "name": "The Reigning", + "site_detail_url": "https://comicvine.gamespot.com/the-reigning/4045-57105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57106/", + "id": 57106, + "name": "Spiral", + "site_detail_url": "https://comicvine.gamespot.com/spiral/4045-57106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57107/", + "id": 57107, + "name": "Sisterhood", + "site_detail_url": "https://comicvine.gamespot.com/sisterhood/4045-57107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57108/", + "id": 57108, + "name": "Once an Avenger", + "site_detail_url": "https://comicvine.gamespot.com/once-an-avenger/4045-57108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57109/", + "id": 57109, + "name": "Peace in Our Time", + "site_detail_url": "https://comicvine.gamespot.com/peace-in-our-time/4045-57109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57112/", + "id": 57112, + "name": "American Samurai", + "site_detail_url": "https://comicvine.gamespot.com/american-samurai/4045-57112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57114/", + "id": 57114, + "name": "Where Walks the Sleeper", + "site_detail_url": "https://comicvine.gamespot.com/where-walks-the-sleeper/4045-57114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57115/", + "id": 57115, + "name": "The Wedding of Crystal and Pietro", + "site_detail_url": "https://comicvine.gamespot.com/the-wedding-of-crystal-and-pietro/4045-57115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57117/", + "id": 57117, + "name": "White Lies and Dark Truths", + "site_detail_url": "https://comicvine.gamespot.com/white-lies-and-dark-truths/4045-57117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57118/", + "id": 57118, + "name": "Return of the Burglar", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-burglar/4045-57118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57119/", + "id": 57119, + "name": "The Gladiator, the Girl, and the Glory", + "site_detail_url": "https://comicvine.gamespot.com/the-gladiator-the-girl-and-the-glory/4045-57119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57120/", + "id": 57120, + "name": "Lady Mandarin Saga", + "site_detail_url": "https://comicvine.gamespot.com/lady-mandarin-saga/4045-57120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57121/", + "id": 57121, + "name": "I.T. Plot", + "site_detail_url": "https://comicvine.gamespot.com/i-t-plot/4045-57121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57122/", + "id": 57122, + "name": "Red Skull Lives", + "site_detail_url": "https://comicvine.gamespot.com/red-skull-lives/4045-57122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57123/", + "id": 57123, + "name": "Super Adaptoid Saga", + "site_detail_url": "https://comicvine.gamespot.com/super-adaptoid-saga/4045-57123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57124/", + "id": 57124, + "name": "The Nefaria Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/the-nefaria-trilogy/4045-57124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57125/", + "id": 57125, + "name": "Serpent War", + "site_detail_url": "https://comicvine.gamespot.com/serpent-war/4045-57125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57126/", + "id": 57126, + "name": "The Apocalypse Twins", + "site_detail_url": "https://comicvine.gamespot.com/the-apocalypse-twins/4045-57126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57127/", + "id": 57127, + "name": "Death Hunt", + "site_detail_url": "https://comicvine.gamespot.com/death-hunt/4045-57127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57128/", + "id": 57128, + "name": "War & Pieces", + "site_detail_url": "https://comicvine.gamespot.com/war-pieces/4045-57128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57129/", + "id": 57129, + "name": "Siege by Stealth and Storm", + "site_detail_url": "https://comicvine.gamespot.com/siege-by-stealth-and-storm/4045-57129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57130/", + "id": 57130, + "name": "Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/agent-of-s-h-i-e-l-d/4045-57130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57131/", + "id": 57131, + "name": "Back from the Dead", + "site_detail_url": "https://comicvine.gamespot.com/back-from-the-dead/4045-57131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57136/", + "id": 57136, + "name": "One vs. A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/one-vs-a-i-m/4045-57136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57137/", + "id": 57137, + "name": "Death of a Legend", + "site_detail_url": "https://comicvine.gamespot.com/death-of-a-legend/4045-57137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57138/", + "id": 57138, + "name": "The Man Who Lived Twice", + "site_detail_url": "https://comicvine.gamespot.com/the-man-who-lived-twice/4045-57138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57140/", + "id": 57140, + "name": "Sabretooth Reborn", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-reborn/4045-57140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57141/", + "id": 57141, + "name": "Hellfire and Brimstone", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-and-brimstone/4045-57141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57142/", + "id": 57142, + "name": "World Tour", + "site_detail_url": "https://comicvine.gamespot.com/world-tour/4045-57142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57143/", + "id": 57143, + "name": "Return of the King", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-king/4045-57143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57144/", + "id": 57144, + "name": "You Always Remember Your First Love", + "site_detail_url": "https://comicvine.gamespot.com/you-always-remember-your-first-love/4045-57144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57151/", + "id": 57151, + "name": "Vampire State", + "site_detail_url": "https://comicvine.gamespot.com/vampire-state/4045-57151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57152/", + "id": 57152, + "name": "Return of Korvac", + "site_detail_url": "https://comicvine.gamespot.com/return-of-korvac/4045-57152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57153/", + "id": 57153, + "name": "Divided We Fall", + "site_detail_url": "https://comicvine.gamespot.com/divided-we-fall/4045-57153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57154/", + "id": 57154, + "name": "Reconstruction", + "site_detail_url": "https://comicvine.gamespot.com/reconstruction/4045-57154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57155/", + "id": 57155, + "name": "Two Cities, Two Worlds", + "site_detail_url": "https://comicvine.gamespot.com/two-cities-two-worlds/4045-57155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57156/", + "id": 57156, + "name": "The Republic is Burning", + "site_detail_url": "https://comicvine.gamespot.com/the-republic-is-burning/4045-57156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57157/", + "id": 57157, + "name": "Natural Resources", + "site_detail_url": "https://comicvine.gamespot.com/natural-resources/4045-57157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57158/", + "id": 57158, + "name": "Reservation X", + "site_detail_url": "https://comicvine.gamespot.com/reservation-x/4045-57158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57159/", + "id": 57159, + "name": "The World", + "site_detail_url": "https://comicvine.gamespot.com/the-world/4045-57159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57160/", + "id": 57160, + "name": "Absolute Vision", + "site_detail_url": "https://comicvine.gamespot.com/absolute-vision/4045-57160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57161/", + "id": 57161, + "name": "The Ghost of Jessica Drew", + "site_detail_url": "https://comicvine.gamespot.com/the-ghost-of-jessica-drew/4045-57161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57162/", + "id": 57162, + "name": "Nightmare in New Orleans", + "site_detail_url": "https://comicvine.gamespot.com/nightmare-in-new-orleans/4045-57162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57163/", + "id": 57163, + "name": "All the Ways of Power", + "site_detail_url": "https://comicvine.gamespot.com/all-the-ways-of-power/4045-57163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57164/", + "id": 57164, + "name": "War Against the Gods", + "site_detail_url": "https://comicvine.gamespot.com/war-against-the-gods/4045-57164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57165/", + "id": 57165, + "name": "Fall of Avalon", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-avalon/4045-57165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57166/", + "id": 57166, + "name": "Meltdowns and Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/meltdowns-and-mayhem/4045-57166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57167/", + "id": 57167, + "name": "Infinity", + "site_detail_url": "https://comicvine.gamespot.com/infinity/4045-57167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57175/", + "id": 57175, + "name": "The Final Chapter", + "site_detail_url": "https://comicvine.gamespot.com/the-final-chapter/4045-57175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57176/", + "id": 57176, + "name": "Gathering of Five", + "site_detail_url": "https://comicvine.gamespot.com/gathering-of-five/4045-57176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57177/", + "id": 57177, + "name": "Hope", + "site_detail_url": "https://comicvine.gamespot.com/hope/4045-57177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57178/", + "id": 57178, + "name": "Dominant Species", + "site_detail_url": "https://comicvine.gamespot.com/dominant-species/4045-57178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57179/", + "id": 57179, + "name": "Hellfire Saga", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-saga/4045-57179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57180/", + "id": 57180, + "name": "Rules of Engagement", + "site_detail_url": "https://comicvine.gamespot.com/rules-of-engagement/4045-57180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57181/", + "id": 57181, + "name": "Holy War", + "site_detail_url": "https://comicvine.gamespot.com/holy-war/4045-57181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57182/", + "id": 57182, + "name": "Sacred Vows", + "site_detail_url": "https://comicvine.gamespot.com/sacred-vows/4045-57182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57183/", + "id": 57183, + "name": "Unnatural Instincts", + "site_detail_url": "https://comicvine.gamespot.com/unnatural-instincts/4045-57183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57184/", + "id": 57184, + "name": "New Beginnings", + "site_detail_url": "https://comicvine.gamespot.com/new-beginnings/4045-57184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57185/", + "id": 57185, + "name": "Lacuna", + "site_detail_url": "https://comicvine.gamespot.com/lacuna/4045-57185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57186/", + "id": 57186, + "name": "The Final Chapter", + "site_detail_url": "https://comicvine.gamespot.com/the-final-chapter/4045-57186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57187/", + "id": 57187, + "name": "Good Omens", + "site_detail_url": "https://comicvine.gamespot.com/good-omens/4045-57187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57188/", + "id": 57188, + "name": "The Moons of Venus", + "site_detail_url": "https://comicvine.gamespot.com/the-moons-of-venus/4045-57188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57189/", + "id": 57189, + "name": "Back from the Dead", + "site_detail_url": "https://comicvine.gamespot.com/back-from-the-dead/4045-57189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57190/", + "id": 57190, + "name": "The Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-cure/4045-57190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57191/", + "id": 57191, + "name": "The Good and The Famous", + "site_detail_url": "https://comicvine.gamespot.com/the-good-and-the-famous/4045-57191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57192/", + "id": 57192, + "name": "Dead a Long Time", + "site_detail_url": "https://comicvine.gamespot.com/dead-a-long-time/4045-57192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57193/", + "id": 57193, + "name": "Germ Free Generation", + "site_detail_url": "https://comicvine.gamespot.com/germ-free-generation/4045-57193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57194/", + "id": 57194, + "name": "Imperial", + "site_detail_url": "https://comicvine.gamespot.com/imperial/4045-57194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57195/", + "id": 57195, + "name": "New Worlds", + "site_detail_url": "https://comicvine.gamespot.com/new-worlds/4045-57195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57196/", + "id": 57196, + "name": "Old Wounds, New Battles", + "site_detail_url": "https://comicvine.gamespot.com/old-wounds-new-battles/4045-57196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57197/", + "id": 57197, + "name": "Superguardians", + "site_detail_url": "https://comicvine.gamespot.com/superguardians/4045-57197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57198/", + "id": 57198, + "name": "Son of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/son-of-apocalypse/4045-57198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57199/", + "id": 57199, + "name": "I Cover the Waterfront", + "site_detail_url": "https://comicvine.gamespot.com/i-cover-the-waterfront/4045-57199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57200/", + "id": 57200, + "name": "Timebreakers", + "site_detail_url": "https://comicvine.gamespot.com/timebreakers/4045-57200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57201/", + "id": 57201, + "name": "A Blink in Time", + "site_detail_url": "https://comicvine.gamespot.com/a-blink-in-time/4045-57201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57202/", + "id": 57202, + "name": "The Big M", + "site_detail_url": "https://comicvine.gamespot.com/the-big-m/4045-57202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57203/", + "id": 57203, + "name": "Enemy of the Stars", + "site_detail_url": "https://comicvine.gamespot.com/enemy-of-the-stars/4045-57203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57204/", + "id": 57204, + "name": "The New Exiles", + "site_detail_url": "https://comicvine.gamespot.com/the-new-exiles/4045-57204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57205/", + "id": 57205, + "name": "Another Rooster in the Henhouse", + "site_detail_url": "https://comicvine.gamespot.com/another-rooster-in-the-henhouse/4045-57205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57206/", + "id": 57206, + "name": "Living Planet", + "site_detail_url": "https://comicvine.gamespot.com/living-planet/4045-57206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57207/", + "id": 57207, + "name": "Engines of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/engines-of-destruction/4045-57207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57208/", + "id": 57208, + "name": "Rage Against the Machine", + "site_detail_url": "https://comicvine.gamespot.com/rage-against-the-machine/4045-57208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57209/", + "id": 57209, + "name": "Legacy", + "site_detail_url": "https://comicvine.gamespot.com/legacy/4045-57209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57210/", + "id": 57210, + "name": "With an Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/with-an-iron-fist/4045-57210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57211/", + "id": 57211, + "name": "Hard Choices", + "site_detail_url": "https://comicvine.gamespot.com/hard-choices/4045-57211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57212/", + "id": 57212, + "name": "Up North and in the Green", + "site_detail_url": "https://comicvine.gamespot.com/up-north-and-in-the-green/4045-57212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57213/", + "id": 57213, + "name": "Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/crossroads/4045-57213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57225/", + "id": 57225, + "name": "Game On", + "site_detail_url": "https://comicvine.gamespot.com/game-on/4045-57225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57226/", + "id": 57226, + "name": "Gods and Monster", + "site_detail_url": "https://comicvine.gamespot.com/gods-and-monster/4045-57226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57250/", + "id": 57250, + "name": "The Trial of Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-juggernaut/4045-57250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57251/", + "id": 57251, + "name": "She Lies with Angels", + "site_detail_url": "https://comicvine.gamespot.com/she-lies-with-angels/4045-57251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57252/", + "id": 57252, + "name": "To End All Wars", + "site_detail_url": "https://comicvine.gamespot.com/to-end-all-wars/4045-57252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57253/", + "id": 57253, + "name": "Blood", + "site_detail_url": "https://comicvine.gamespot.com/blood/4045-57253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57254/", + "id": 57254, + "name": "Cruel and Unusual", + "site_detail_url": "https://comicvine.gamespot.com/cruel-and-unusual/4045-57254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57256/", + "id": 57256, + "name": "Of Darkest Nights", + "site_detail_url": "https://comicvine.gamespot.com/of-darkest-nights/4045-57256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57257/", + "id": 57257, + "name": "Bright New Mourning", + "site_detail_url": "https://comicvine.gamespot.com/bright-new-mourning/4045-57257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57258/", + "id": 57258, + "name": "Day of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/day-of-the-atom/4045-57258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57259/", + "id": 57259, + "name": "Heroes and Villains", + "site_detail_url": "https://comicvine.gamespot.com/heroes-and-villains/4045-57259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57263/", + "id": 57263, + "name": "The Great Escape", + "site_detail_url": "https://comicvine.gamespot.com/the-great-escape/4045-57263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57264/", + "id": 57264, + "name": "The Killing Field", + "site_detail_url": "https://comicvine.gamespot.com/the-killing-field/4045-57264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57265/", + "id": 57265, + "name": "Invasive Exotic", + "site_detail_url": "https://comicvine.gamespot.com/invasive-exotic/4045-57265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57266/", + "id": 57266, + "name": "Industrial Revolution", + "site_detail_url": "https://comicvine.gamespot.com/industrial-revolution/4045-57266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57268/", + "id": 57268, + "name": "Mystic Arcana", + "site_detail_url": "https://comicvine.gamespot.com/mystic-arcana/4045-57268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57269/", + "id": 57269, + "name": "The Deadpool Killogy", + "site_detail_url": "https://comicvine.gamespot.com/the-deadpool-killogy/4045-57269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57270/", + "id": 57270, + "name": "Fire and Ice", + "site_detail_url": "https://comicvine.gamespot.com/fire-and-ice/4045-57270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57271/", + "id": 57271, + "name": "Carnage U.S.A", + "site_detail_url": "https://comicvine.gamespot.com/carnage-u-s-a/4045-57271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57272/", + "id": 57272, + "name": "The Hunt for Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/the-hunt-for-sabretooth/4045-57272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57273/", + "id": 57273, + "name": "Forever", + "site_detail_url": "https://comicvine.gamespot.com/forever/4045-57273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57276/", + "id": 57276, + "name": "Countdown to Zero", + "site_detail_url": "https://comicvine.gamespot.com/countdown-to-zero/4045-57276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57281/", + "id": 57281, + "name": "Revolution", + "site_detail_url": "https://comicvine.gamespot.com/revolution/4045-57281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57282/", + "id": 57282, + "name": "The Green Goblin Reborn", + "site_detail_url": "https://comicvine.gamespot.com/the-green-goblin-reborn/4045-57282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57293/", + "id": 57293, + "name": "Ultron Gambit", + "site_detail_url": "https://comicvine.gamespot.com/ultron-gambit/4045-57293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57313/", + "id": 57313, + "name": "Battle of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/battle-of-the-atom/4045-57313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57314/", + "id": 57314, + "name": "Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six/4045-57314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57315/", + "id": 57315, + "name": "Something Can Stop the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/something-can-stop-the-juggernaut/4045-57315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57317/", + "id": 57317, + "name": "Sibling Rivalry", + "site_detail_url": "https://comicvine.gamespot.com/sibling-rivalry/4045-57317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57318/", + "id": 57318, + "name": "Godbomb", + "site_detail_url": "https://comicvine.gamespot.com/godbomb/4045-57318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57319/", + "id": 57319, + "name": "World War X", + "site_detail_url": "https://comicvine.gamespot.com/world-war-x/4045-57319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57320/", + "id": 57320, + "name": "Killable", + "site_detail_url": "https://comicvine.gamespot.com/killable/4045-57320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57322/", + "id": 57322, + "name": "Terra Incognita", + "site_detail_url": "https://comicvine.gamespot.com/terra-incognita/4045-57322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57324/", + "id": 57324, + "name": "The End of X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/the-end-of-x-factor/4045-57324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57325/", + "id": 57325, + "name": "Route 616", + "site_detail_url": "https://comicvine.gamespot.com/route-616/4045-57325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57327/", + "id": 57327, + "name": "Who Was Ben Reilly?", + "site_detail_url": "https://comicvine.gamespot.com/who-was-ben-reilly/4045-57327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57328/", + "id": 57328, + "name": "Power to the People", + "site_detail_url": "https://comicvine.gamespot.com/power-to-the-people/4045-57328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57329/", + "id": 57329, + "name": "Keemia's Castle", + "site_detail_url": "https://comicvine.gamespot.com/keemias-castle/4045-57329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57330/", + "id": 57330, + "name": "Mysterioso", + "site_detail_url": "https://comicvine.gamespot.com/mysterioso/4045-57330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57331/", + "id": 57331, + "name": "Scavenging", + "site_detail_url": "https://comicvine.gamespot.com/scavenging/4045-57331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57332/", + "id": 57332, + "name": "Long-Term Arrangement", + "site_detail_url": "https://comicvine.gamespot.com/long-term-arrangement/4045-57332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57333/", + "id": 57333, + "name": "Red-Headed Stranger", + "site_detail_url": "https://comicvine.gamespot.com/red-headed-stranger/4045-57333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57334/", + "id": 57334, + "name": "New Ways to Live", + "site_detail_url": "https://comicvine.gamespot.com/new-ways-to-live/4045-57334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57335/", + "id": 57335, + "name": "The Return of Anti-Venom", + "site_detail_url": "https://comicvine.gamespot.com/the-return-of-anti-venom/4045-57335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57336/", + "id": 57336, + "name": "Mind on Fire", + "site_detail_url": "https://comicvine.gamespot.com/mind-on-fire/4045-57336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57337/", + "id": 57337, + "name": "We Need a Hero", + "site_detail_url": "https://comicvine.gamespot.com/we-need-a-hero/4045-57337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57338/", + "id": 57338, + "name": "Boss Level", + "site_detail_url": "https://comicvine.gamespot.com/boss-level/4045-57338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57339/", + "id": 57339, + "name": "God Complex", + "site_detail_url": "https://comicvine.gamespot.com/god-complex/4045-57339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57340/", + "id": 57340, + "name": "Planet Without a Hulk", + "site_detail_url": "https://comicvine.gamespot.com/planet-without-a-hulk/4045-57340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57341/", + "id": 57341, + "name": "Guns of Avalon", + "site_detail_url": "https://comicvine.gamespot.com/guns-of-avalon/4045-57341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57342/", + "id": 57342, + "name": "Hell Comes to Birmingham", + "site_detail_url": "https://comicvine.gamespot.com/hell-comes-to-birmingham/4045-57342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57344/", + "id": 57344, + "name": "The Apocalypse Journal", + "site_detail_url": "https://comicvine.gamespot.com/the-apocalypse-journal/4045-57344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57349/", + "id": 57349, + "name": "Entropy", + "site_detail_url": "https://comicvine.gamespot.com/entropy/4045-57349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57382/", + "id": 57382, + "name": "Deadpool Walkin'", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-walkin/4045-57382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57383/", + "id": 57383, + "name": "Dead Man's Switch", + "site_detail_url": "https://comicvine.gamespot.com/dead-man-s-switch/4045-57383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57384/", + "id": 57384, + "name": "Hold That Ghost", + "site_detail_url": "https://comicvine.gamespot.com/hold-that-ghost/4045-57384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57398/", + "id": 57398, + "name": "The Underground", + "site_detail_url": "https://comicvine.gamespot.com/the-underground/4045-57398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57399/", + "id": 57399, + "name": "Man and Monster", + "site_detail_url": "https://comicvine.gamespot.com/man-and-monster/4045-57399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57400/", + "id": 57400, + "name": "War of the Programs", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-programs/4045-57400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57401/", + "id": 57401, + "name": "Defection", + "site_detail_url": "https://comicvine.gamespot.com/defection/4045-57401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57402/", + "id": 57402, + "name": "The Arms of The Octopus", + "site_detail_url": "https://comicvine.gamespot.com/the-arms-of-the-octopus/4045-57402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57403/", + "id": 57403, + "name": "Salvage", + "site_detail_url": "https://comicvine.gamespot.com/salvage/4045-57403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57404/", + "id": 57404, + "name": "Collision", + "site_detail_url": "https://comicvine.gamespot.com/collision/4045-57404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57405/", + "id": 57405, + "name": "Fables of the Reconstruction", + "site_detail_url": "https://comicvine.gamespot.com/fables-of-the-reconstruction/4045-57405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57406/", + "id": 57406, + "name": "Lost Legions", + "site_detail_url": "https://comicvine.gamespot.com/lost-legions/4045-57406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57407/", + "id": 57407, + "name": "Five Miles South of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/five-miles-south-of-the-universe/4045-57407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57408/", + "id": 57408, + "name": "Lost Tribes", + "site_detail_url": "https://comicvine.gamespot.com/lost-tribes/4045-57408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57409/", + "id": 57409, + "name": "Mutant Time Bomb", + "site_detail_url": "https://comicvine.gamespot.com/mutant-time-bomb/4045-57409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57410/", + "id": 57410, + "name": "Occupy the Jean Grey School", + "site_detail_url": "https://comicvine.gamespot.com/occupy-the-jean-grey-school/4045-57410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57411/", + "id": 57411, + "name": "Allegiances", + "site_detail_url": "https://comicvine.gamespot.com/allegiances/4045-57411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57413/", + "id": 57413, + "name": "The Helix of an Age Foretold", + "site_detail_url": "https://comicvine.gamespot.com/the-helix-of-an-age-foretold/4045-57413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57422/", + "id": 57422, + "name": "Saga of the Serpent Crown", + "site_detail_url": "https://comicvine.gamespot.com/saga-of-the-serpent-crown/4045-57422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57423/", + "id": 57423, + "name": "The MASS Device", + "site_detail_url": "https://comicvine.gamespot.com/the-mass-device/4045-57423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57424/", + "id": 57424, + "name": "The Revenge of Cobra", + "site_detail_url": "https://comicvine.gamespot.com/the-revenge-of-cobra/4045-57424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57428/", + "id": 57428, + "name": "Saga of the High Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/saga-of-the-high-evolutionary/4045-57428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57429/", + "id": 57429, + "name": "Inhumanity", + "site_detail_url": "https://comicvine.gamespot.com/inhumanity/4045-57429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57431/", + "id": 57431, + "name": "Age of Ultron Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-aftermath/4045-57431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57432/", + "id": 57432, + "name": "Spider-Man No More", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-no-more/4045-57432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57433/", + "id": 57433, + "name": "Mania", + "site_detail_url": "https://comicvine.gamespot.com/mania/4045-57433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57434/", + "id": 57434, + "name": "Agent of T.I.M.E.", + "site_detail_url": "https://comicvine.gamespot.com/agent-of-t-i-m-e/4045-57434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57435/", + "id": 57435, + "name": "The Secret Origin of Tony Stark", + "site_detail_url": "https://comicvine.gamespot.com/the-secret-origin-of-tony-stark/4045-57435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57436/", + "id": 57436, + "name": "The Secret Origin of Tony Stark: The Best Offense", + "site_detail_url": "https://comicvine.gamespot.com/the-secret-origin-of-tony-stark-the-best-offense/4045-57436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57448/", + "id": 57448, + "name": "Cataclysm", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm/4045-57448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57449/", + "id": 57449, + "name": "Into the Grave", + "site_detail_url": "https://comicvine.gamespot.com/into-the-grave/4045-57449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57451/", + "id": 57451, + "name": "Iron Metropolitan", + "site_detail_url": "https://comicvine.gamespot.com/iron-metropolitan/4045-57451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57457/", + "id": 57457, + "name": "Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/disassembled/4045-57457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57461/", + "id": 57461, + "name": "Loose Nuke", + "site_detail_url": "https://comicvine.gamespot.com/loose-nuke/4045-57461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57462/", + "id": 57462, + "name": "In the Name of the King", + "site_detail_url": "https://comicvine.gamespot.com/in-the-name-of-the-king/4045-57462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57484/", + "id": 57484, + "name": "The Good, the Bad & the Ugly", + "site_detail_url": "https://comicvine.gamespot.com/the-good-the-bad-the-ugly/4045-57484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57485/", + "id": 57485, + "name": "The Accursed", + "site_detail_url": "https://comicvine.gamespot.com/the-accursed/4045-57485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57513/", + "id": 57513, + "name": "War of the Super-Villains", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-supervillains/4045-57513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57575/", + "id": 57575, + "name": "The Fantastic Four Are Doomed!", + "site_detail_url": "https://comicvine.gamespot.com/the-fantastic-four-are-doomed/4045-57575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57576/", + "id": 57576, + "name": "Brooklyn", + "site_detail_url": "https://comicvine.gamespot.com/brooklyn/4045-57576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57577/", + "id": 57577, + "name": "Muertas", + "site_detail_url": "https://comicvine.gamespot.com/muertas/4045-57577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57578/", + "id": 57578, + "name": "*Young Avengers*", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4045-57578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57609/", + "id": 57609, + "name": "Humanity Bomb", + "site_detail_url": "https://comicvine.gamespot.com/humanity-bomb/4045-57609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57610/", + "id": 57610, + "name": "Hands Covered In Blood", + "site_detail_url": "https://comicvine.gamespot.com/hands-covered-in-blood/4045-57610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57611/", + "id": 57611, + "name": "Darkest Hours", + "site_detail_url": "https://comicvine.gamespot.com/darkest-hours/4045-57611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57622/", + "id": 57622, + "name": "Whom Gods Destroy", + "site_detail_url": "https://comicvine.gamespot.com/whom-gods-destroy/4045-57622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57625/", + "id": 57625, + "name": "Frost", + "site_detail_url": "https://comicvine.gamespot.com/frost/4045-57625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57626/", + "id": 57626, + "name": "Wakandan Vacation!", + "site_detail_url": "https://comicvine.gamespot.com/wakandan-vacation/4045-57626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57627/", + "id": 57627, + "name": "How To MA.I.M. A Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/how-to-ma-i-m-a-mockingbird/4045-57627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57654/", + "id": 57654, + "name": "Savage", + "site_detail_url": "https://comicvine.gamespot.com/savage/4045-57654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57656/", + "id": 57656, + "name": "Venom War", + "site_detail_url": "https://comicvine.gamespot.com/venom-war/4045-57656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57667/", + "id": 57667, + "name": "The Black Lodge", + "site_detail_url": "https://comicvine.gamespot.com/the-black-lodge/4045-57667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57668/", + "id": 57668, + "name": "Deadpool vs. S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-s-h-i-e-l-d/4045-57668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57669/", + "id": 57669, + "name": "Resolution", + "site_detail_url": "https://comicvine.gamespot.com/resolution/4045-57669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57674/", + "id": 57674, + "name": "The Big Bang Theory", + "site_detail_url": "https://comicvine.gamespot.com/the-big-bang-theory/4045-57674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57676/", + "id": 57676, + "name": "The Frankenstein Syndrome", + "site_detail_url": "https://comicvine.gamespot.com/the-frankenstein-syndrome/4045-57676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57680/", + "id": 57680, + "name": "Manhunt", + "site_detail_url": "https://comicvine.gamespot.com/manhunt/4045-57680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57681/", + "id": 57681, + "name": "Vegas Bleeds Neon", + "site_detail_url": "https://comicvine.gamespot.com/vegas-bleeds-neon/4045-57681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57687/", + "id": 57687, + "name": "Rogue Planet", + "site_detail_url": "https://comicvine.gamespot.com/rogue-planet/4045-57687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57704/", + "id": 57704, + "name": "Love and Bullets", + "site_detail_url": "https://comicvine.gamespot.com/love-and-bullets/4045-57704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57705/", + "id": 57705, + "name": "Not Brand X", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-x/4045-57705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57706/", + "id": 57706, + "name": "Avengers Empire", + "site_detail_url": "https://comicvine.gamespot.com/avengers-empire/4045-57706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57707/", + "id": 57707, + "name": "Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/vendetta/4045-57707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57708/", + "id": 57708, + "name": "Revolutionary War", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war/4045-57708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57709/", + "id": 57709, + "name": "Wrath", + "site_detail_url": "https://comicvine.gamespot.com/wrath/4045-57709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57712/", + "id": 57712, + "name": "Contest of Champions II", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-ii/4045-57712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57716/", + "id": 57716, + "name": "Man Without A Country", + "site_detail_url": "https://comicvine.gamespot.com/man-without-a-country/4045-57716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57745/", + "id": 57745, + "name": "Gods and Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/gods-and-soldiers/4045-57745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57746/", + "id": 57746, + "name": "Goblin Nation", + "site_detail_url": "https://comicvine.gamespot.com/goblin-nation/4045-57746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57750/", + "id": 57750, + "name": "The Tape", + "site_detail_url": "https://comicvine.gamespot.com/the-tape/4045-57750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57757/", + "id": 57757, + "name": "The Trial of Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-jean-grey/4045-57757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57758/", + "id": 57758, + "name": "No Mercy", + "site_detail_url": "https://comicvine.gamespot.com/no-mercy/4045-57758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57767/", + "id": 57767, + "name": "The Iron Nail", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-nail/4045-57767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57773/", + "id": 57773, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4045-57773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57775/", + "id": 57775, + "name": "The Last Days of Midgard", + "site_detail_url": "https://comicvine.gamespot.com/the-last-days-of-midgard/4045-57775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57787/", + "id": 57787, + "name": "Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/ghosts/4045-57787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57799/", + "id": 57799, + "name": "The Fall of the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/the-fall-of-the-fantastic-four/4045-57799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57800/", + "id": 57800, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/original-sin/4045-57800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57823/", + "id": 57823, + "name": "Crucible of Power", + "site_detail_url": "https://comicvine.gamespot.com/crucible-of-power/4045-57823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57839/", + "id": 57839, + "name": "Save the Empire", + "site_detail_url": "https://comicvine.gamespot.com/save-the-empire/4045-57839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57847/", + "id": 57847, + "name": "Rings of the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/rings-of-the-mandarin/4045-57847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57856/", + "id": 57856, + "name": "Higher, Further, Faster, More.", + "site_detail_url": "https://comicvine.gamespot.com/higher-further-faster-more/4045-57856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57857/", + "id": 57857, + "name": "Tomorrow Never Learns", + "site_detail_url": "https://comicvine.gamespot.com/tomorrow-never-learns/4045-57857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57859/", + "id": 57859, + "name": "Engines of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/engines-of-vengeance/4045-57859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57860/", + "id": 57860, + "name": "Unbreakable", + "site_detail_url": "https://comicvine.gamespot.com/unbreakable/4045-57860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57861/", + "id": 57861, + "name": "Avenge the Earth", + "site_detail_url": "https://comicvine.gamespot.com/avenge-the-earth/4045-57861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57881/", + "id": 57881, + "name": "Descent", + "site_detail_url": "https://comicvine.gamespot.com/descent/4045-57881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57882/", + "id": 57882, + "name": "Rage", + "site_detail_url": "https://comicvine.gamespot.com/rage/4045-57882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57883/", + "id": 57883, + "name": "All In the Family", + "site_detail_url": "https://comicvine.gamespot.com/all-in-the-family/4045-57883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57884/", + "id": 57884, + "name": "Bloodline", + "site_detail_url": "https://comicvine.gamespot.com/bloodline/4045-57884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57887/", + "id": 57887, + "name": "The Troyjan War.", + "site_detail_url": "https://comicvine.gamespot.com/the-troyjan-war/4045-57887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57889/", + "id": 57889, + "name": "Crash and Burn", + "site_detail_url": "https://comicvine.gamespot.com/crash-and-burn/4045-57889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57900/", + "id": 57900, + "name": "Who Shot the Hulk", + "site_detail_url": "https://comicvine.gamespot.com/who-shot-the-hulk/4045-57900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57901/", + "id": 57901, + "name": "A Perfect World", + "site_detail_url": "https://comicvine.gamespot.com/a-perfect-world/4045-57901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57907/", + "id": 57907, + "name": "Bloodlines", + "site_detail_url": "https://comicvine.gamespot.com/bloodlines/4045-57907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57909/", + "id": 57909, + "name": "Web of Doom", + "site_detail_url": "https://comicvine.gamespot.com/web-of-doom/4045-57909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57910/", + "id": 57910, + "name": "Return to the Mad Dog Ward", + "site_detail_url": "https://comicvine.gamespot.com/return-to-the-mad-dog-ward/4045-57910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57913/", + "id": 57913, + "name": "Learning To Crawl", + "site_detail_url": "https://comicvine.gamespot.com/learning-to-crawl/4045-57913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57914/", + "id": 57914, + "name": "The Kids Are All Fight", + "site_detail_url": "https://comicvine.gamespot.com/the-kids-are-all-fight/4045-57914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57918/", + "id": 57918, + "name": "The Madripoor Job", + "site_detail_url": "https://comicvine.gamespot.com/the-madripoor-job/4045-57918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57930/", + "id": 57930, + "name": "Palace of the Brine", + "site_detail_url": "https://comicvine.gamespot.com/palace-of-the-brine/4045-57930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57933/", + "id": 57933, + "name": "Everything Is Calculable", + "site_detail_url": "https://comicvine.gamespot.com/everything-is-calculable/4045-57933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57958/", + "id": 57958, + "name": "No End In Sight", + "site_detail_url": "https://comicvine.gamespot.com/no-end-in-sight/4045-57958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57964/", + "id": 57964, + "name": "The Punisher vs. The Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-vs-the-thunderbolts/4045-57964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57966/", + "id": 57966, + "name": "World War Wendigo!", + "site_detail_url": "https://comicvine.gamespot.com/world-war-wendigo/4045-57966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57969/", + "id": 57969, + "name": "Games of Deceit and Death", + "site_detail_url": "https://comicvine.gamespot.com/games-of-deceit-and-death/4045-57969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57980/", + "id": 57980, + "name": "The Fateful Four", + "site_detail_url": "https://comicvine.gamespot.com/the-fateful-four/4045-57980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57981/", + "id": 57981, + "name": "Hidden In Plain Sight", + "site_detail_url": "https://comicvine.gamespot.com/hidden-in-plain-sight/4045-57981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57982/", + "id": 57982, + "name": "The Last Wolverine Story", + "site_detail_url": "https://comicvine.gamespot.com/the-last-wolverine-story/4045-57982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57987/", + "id": 57987, + "name": "Spirit Of Vengance", + "site_detail_url": "https://comicvine.gamespot.com/spirit-of-vengance/4045-57987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57988/", + "id": 57988, + "name": "Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/homecoming/4045-57988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57993/", + "id": 57993, + "name": "The Man Within", + "site_detail_url": "https://comicvine.gamespot.com/the-man-within/4045-57993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57995/", + "id": 57995, + "name": "Stuck", + "site_detail_url": "https://comicvine.gamespot.com/stuck/4045-57995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58015/", + "id": 58015, + "name": "Going Native", + "site_detail_url": "https://comicvine.gamespot.com/going-native/4045-58015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58016/", + "id": 58016, + "name": "El Diablito", + "site_detail_url": "https://comicvine.gamespot.com/el-diablito/4045-58016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58017/", + "id": 58017, + "name": "A Chasing Tale", + "site_detail_url": "https://comicvine.gamespot.com/a-chasing-tale/4045-58017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58024/", + "id": 58024, + "name": "The Ω Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-o-hulk/4045-58024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58025/", + "id": 58025, + "name": "No Future?", + "site_detail_url": "https://comicvine.gamespot.com/no-future/4045-58025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58034/", + "id": 58034, + "name": "Legend", + "site_detail_url": "https://comicvine.gamespot.com/legend/4045-58034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58035/", + "id": 58035, + "name": "The Great War", + "site_detail_url": "https://comicvine.gamespot.com/the-great-war/4045-58035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58041/", + "id": 58041, + "name": "Healing Factor", + "site_detail_url": "https://comicvine.gamespot.com/healing-factor/4045-58041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58055/", + "id": 58055, + "name": "The Good Old Days", + "site_detail_url": "https://comicvine.gamespot.com/the-good-old-days/4045-58055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58056/", + "id": 58056, + "name": "Exogenous", + "site_detail_url": "https://comicvine.gamespot.com/exogenous/4045-58056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58069/", + "id": 58069, + "name": "East of Eden", + "site_detail_url": "https://comicvine.gamespot.com/east-of-eden/4045-58069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58070/", + "id": 58070, + "name": "March To Axis", + "site_detail_url": "https://comicvine.gamespot.com/march-to-axis/4045-58070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58072/", + "id": 58072, + "name": "Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse/4045-58072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58078/", + "id": 58078, + "name": "Double Tap", + "site_detail_url": "https://comicvine.gamespot.com/double-tap/4045-58078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58090/", + "id": 58090, + "name": "Always and Forever", + "site_detail_url": "https://comicvine.gamespot.com/always-and-forever/4045-58090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58112/", + "id": 58112, + "name": "Edge of Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse/4045-58112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58113/", + "id": 58113, + "name": "Axis", + "site_detail_url": "https://comicvine.gamespot.com/axis/4045-58113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58114/", + "id": 58114, + "name": "Release the Flerken", + "site_detail_url": "https://comicvine.gamespot.com/release-the-flerken/4045-58114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58115/", + "id": 58115, + "name": "Down To the Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/down-to-the-crossroads/4045-58115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58131/", + "id": 58131, + "name": "Time Runs Out", + "site_detail_url": "https://comicvine.gamespot.com/time-runs-out/4045-58131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58132/", + "id": 58132, + "name": "Death of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine/4045-58132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58176/", + "id": 58176, + "name": "No Gods, No Masters", + "site_detail_url": "https://comicvine.gamespot.com/no-gods-no-masters/4045-58176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58186/", + "id": 58186, + "name": "The Availables", + "site_detail_url": "https://comicvine.gamespot.com/the-availables/4045-58186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58203/", + "id": 58203, + "name": "The Secret Life of Eva Bell", + "site_detail_url": "https://comicvine.gamespot.com/the-secret-life-of-eva-bell/4045-58203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58209/", + "id": 58209, + "name": "Révérence", + "site_detail_url": "https://comicvine.gamespot.com/reverence/4045-58209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58210/", + "id": 58210, + "name": "Generation Why", + "site_detail_url": "https://comicvine.gamespot.com/generation-why/4045-58210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58214/", + "id": 58214, + "name": "...And What Do You Believe?", + "site_detail_url": "https://comicvine.gamespot.com/and-what-do-you-believe/4045-58214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58224/", + "id": 58224, + "name": "Over the Edge", + "site_detail_url": "https://comicvine.gamespot.com/over-the-edge/4045-58224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58225/", + "id": 58225, + "name": "The Burning World", + "site_detail_url": "https://comicvine.gamespot.com/the-burning-world/4045-58225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58236/", + "id": 58236, + "name": "The Once and Future Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/the-once-and-future-juggernaut/4045-58236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58237/", + "id": 58237, + "name": "Power and Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/power-and-responsibility/4045-58237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58238/", + "id": 58238, + "name": "The Exile Returns", + "site_detail_url": "https://comicvine.gamespot.com/the-exile-returns/4045-58238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58239/", + "id": 58239, + "name": "Web of Death", + "site_detail_url": "https://comicvine.gamespot.com/web-of-death/4045-58239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58240/", + "id": 58240, + "name": "Web of Life", + "site_detail_url": "https://comicvine.gamespot.com/web-of-life/4045-58240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58241/", + "id": 58241, + "name": "Smoke and Mirrors", + "site_detail_url": "https://comicvine.gamespot.com/smoke-and-mirrors/4045-58241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58242/", + "id": 58242, + "name": "The Mark of Kaine", + "site_detail_url": "https://comicvine.gamespot.com/the-mark-of-kaine/4045-58242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58243/", + "id": 58243, + "name": "Crossfire", + "site_detail_url": "https://comicvine.gamespot.com/crossfire/4045-58243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58244/", + "id": 58244, + "name": "Time Bomb", + "site_detail_url": "https://comicvine.gamespot.com/time-bomb/4045-58244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58245/", + "id": 58245, + "name": "The Greatest Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/the-greatest-responsibility/4045-58245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58246/", + "id": 58246, + "name": "Cyberwar", + "site_detail_url": "https://comicvine.gamespot.com/cyberwar/4045-58246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58247/", + "id": 58247, + "name": "Media Blizzard", + "site_detail_url": "https://comicvine.gamespot.com/media-blizzard/4045-58247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58248/", + "id": 58248, + "name": "The Return of Kaine", + "site_detail_url": "https://comicvine.gamespot.com/the-return-of-kaine/4045-58248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58249/", + "id": 58249, + "name": "Blood Brothers", + "site_detail_url": "https://comicvine.gamespot.com/blood-brothers/4045-58249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58256/", + "id": 58256, + "name": "The End Is Fourever", + "site_detail_url": "https://comicvine.gamespot.com/the-end-is-fourever/4045-58256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58257/", + "id": 58257, + "name": "Back In Blue", + "site_detail_url": "https://comicvine.gamespot.com/back-in-blue/4045-58257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58266/", + "id": 58266, + "name": "Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars/4045-58266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58267/", + "id": 58267, + "name": "Counter-Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/counter-evolutionary/4045-58267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58272/", + "id": 58272, + "name": "The Return of Toro", + "site_detail_url": "https://comicvine.gamespot.com/the-return-of-toro/4045-58272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58288/", + "id": 58288, + "name": "Ice", + "site_detail_url": "https://comicvine.gamespot.com/ice/4045-58288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58289/", + "id": 58289, + "name": "The Extremists", + "site_detail_url": "https://comicvine.gamespot.com/the-extremists/4045-58289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58290/", + "id": 58290, + "name": "Cap Lives", + "site_detail_url": "https://comicvine.gamespot.com/cap-lives/4045-58290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58299/", + "id": 58299, + "name": "Great Power", + "site_detail_url": "https://comicvine.gamespot.com/great-power/4045-58299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58300/", + "id": 58300, + "name": "The 7 Seconds Before You Die", + "site_detail_url": "https://comicvine.gamespot.com/the-7-seconds-before-you-die/4045-58300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58301/", + "id": 58301, + "name": "The Black Vortex", + "site_detail_url": "https://comicvine.gamespot.com/the-black-vortex/4045-58301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58308/", + "id": 58308, + "name": "Before Time Runs Out", + "site_detail_url": "https://comicvine.gamespot.com/before-time-runs-out/4045-58308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58309/", + "id": 58309, + "name": "Redemption", + "site_detail_url": "https://comicvine.gamespot.com/redemption/4045-58309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58335/", + "id": 58335, + "name": "Guardians of the Galaxy Meet the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-meet-the-avengers/4045-58335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58349/", + "id": 58349, + "name": "The Graveyard Shift", + "site_detail_url": "https://comicvine.gamespot.com/the-graveyard-shift/4045-58349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58350/", + "id": 58350, + "name": "Inhuman Error", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-error/4045-58350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58351/", + "id": 58351, + "name": "Most Wanted?", + "site_detail_url": "https://comicvine.gamespot.com/most-wanted/4045-58351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58359/", + "id": 58359, + "name": "Crushed", + "site_detail_url": "https://comicvine.gamespot.com/crushed/4045-58359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58365/", + "id": 58365, + "name": "Spiral", + "site_detail_url": "https://comicvine.gamespot.com/spiral/4045-58365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58386/", + "id": 58386, + "name": "Ultron Forever", + "site_detail_url": "https://comicvine.gamespot.com/ultron-forever/4045-58386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58387/", + "id": 58387, + "name": "Bookends", + "site_detail_url": "https://comicvine.gamespot.com/bookends/4045-58387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58413/", + "id": 58413, + "name": "Wunderkammer", + "site_detail_url": "https://comicvine.gamespot.com/wunderkammer/4045-58413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58427/", + "id": 58427, + "name": "A Sort of Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/a-sort-of-homecoming/4045-58427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58455/", + "id": 58455, + "name": "The Chaos Serpent", + "site_detail_url": "https://comicvine.gamespot.com/the-chaos-serpent/4045-58455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58459/", + "id": 58459, + "name": "Last Days Of...", + "site_detail_url": "https://comicvine.gamespot.com/last-days-of/4045-58459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58462/", + "id": 58462, + "name": "Secret Wars: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-battleworld/4045-58462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58470/", + "id": 58470, + "name": "The Hydra Affair", + "site_detail_url": "https://comicvine.gamespot.com/the-hydra-affair/4045-58470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58471/", + "id": 58471, + "name": "Apogee of Disaster", + "site_detail_url": "https://comicvine.gamespot.com/apogee-of-disaster/4045-58471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58496/", + "id": 58496, + "name": "Last Days", + "site_detail_url": "https://comicvine.gamespot.com/last-days/4045-58496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58497/", + "id": 58497, + "name": "Doomed Youth", + "site_detail_url": "https://comicvine.gamespot.com/doomed-youth/4045-58497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58519/", + "id": 58519, + "name": "January", + "site_detail_url": "https://comicvine.gamespot.com/january/4045-58519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58520/", + "id": 58520, + "name": "Final Punishment", + "site_detail_url": "https://comicvine.gamespot.com/final-punishment/4045-58520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58536/", + "id": 58536, + "name": "The Trial of Marc Spector", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-marc-spector/4045-58536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58577/", + "id": 58577, + "name": "Wild Blue Yonder", + "site_detail_url": "https://comicvine.gamespot.com/wild-blue-yonder/4045-58577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58599/", + "id": 58599, + "name": "Hunter/Hunted", + "site_detail_url": "https://comicvine.gamespot.com/hunterhunted/4045-58599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58600/", + "id": 58600, + "name": "Jigsaw", + "site_detail_url": "https://comicvine.gamespot.com/jigsaw/4045-58600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58601/", + "id": 58601, + "name": "How I Won The War", + "site_detail_url": "https://comicvine.gamespot.com/how-i-won-the-war/4045-58601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58605/", + "id": 58605, + "name": "The Evil and the Cure", + "site_detail_url": "https://comicvine.gamespot.com/the-evil-and-the-cure/4045-58605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58631/", + "id": 58631, + "name": "Fear and Loathing", + "site_detail_url": "https://comicvine.gamespot.com/fear-and-loathing/4045-58631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58636/", + "id": 58636, + "name": "Greater Power", + "site_detail_url": "https://comicvine.gamespot.com/greater-power/4045-58636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58650/", + "id": 58650, + "name": "First Blood", + "site_detail_url": "https://comicvine.gamespot.com/first-blood/4045-58650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58662/", + "id": 58662, + "name": "The Bishop's Man", + "site_detail_url": "https://comicvine.gamespot.com/the-bishops-man/4045-58662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58665/", + "id": 58665, + "name": "Showdown On the Smugglers' Moon", + "site_detail_url": "https://comicvine.gamespot.com/showdown-on-the-smugglers-moon/4045-58665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58668/", + "id": 58668, + "name": "Vader Down", + "site_detail_url": "https://comicvine.gamespot.com/vader-down/4045-58668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58682/", + "id": 58682, + "name": "Amazing Grace", + "site_detail_url": "https://comicvine.gamespot.com/amazing-grace/4045-58682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58686/", + "id": 58686, + "name": "BFF", + "site_detail_url": "https://comicvine.gamespot.com/bff/4045-58686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58693/", + "id": 58693, + "name": "The Dark Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-kingdom/4045-58693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58696/", + "id": 58696, + "name": "Millennium", + "site_detail_url": "https://comicvine.gamespot.com/millennium/4045-58696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58697/", + "id": 58697, + "name": "Cho Time", + "site_detail_url": "https://comicvine.gamespot.com/cho-time/4045-58697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58705/", + "id": 58705, + "name": "The Coulson Protocols", + "site_detail_url": "https://comicvine.gamespot.com/the-coulson-protocols/4045-58705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58730/", + "id": 58730, + "name": "Rise of the Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/rise-of-the-alpha-flight/4045-58730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58735/", + "id": 58735, + "name": "Berserker", + "site_detail_url": "https://comicvine.gamespot.com/berserker/4045-58735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58741/", + "id": 58741, + "name": "Standoff", + "site_detail_url": "https://comicvine.gamespot.com/standoff/4045-58741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58742/", + "id": 58742, + "name": "Rebel Jail", + "site_detail_url": "https://comicvine.gamespot.com/rebel-jail/4045-58742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58752/", + "id": 58752, + "name": "The War Machines", + "site_detail_url": "https://comicvine.gamespot.com/the-war-machines/4045-58752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58753/", + "id": 58753, + "name": "The Road To Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/the-road-to-civil-war-ii/4045-58753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58761/", + "id": 58761, + "name": "Scorpio Rising", + "site_detail_url": "https://comicvine.gamespot.com/scorpio-rising/4045-58761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58762/", + "id": 58762, + "name": "The Last Days of Magic", + "site_detail_url": "https://comicvine.gamespot.com/the-last-days-of-magic/4045-58762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58764/", + "id": 58764, + "name": "Army of One", + "site_detail_url": "https://comicvine.gamespot.com/army-of-one/4045-58764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58766/", + "id": 58766, + "name": "Marvel Comics' Fast Lane", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-fast-lane/4045-58766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58772/", + "id": 58772, + "name": "Skyspears", + "site_detail_url": "https://comicvine.gamespot.com/skyspears/4045-58772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58773/", + "id": 58773, + "name": "Apocalypse Wars", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse-wars/4045-58773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58783/", + "id": 58783, + "name": "The Shu-Torun War", + "site_detail_url": "https://comicvine.gamespot.com/the-shu-torun-war/4045-58783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58784/", + "id": 58784, + "name": "Animal House", + "site_detail_url": "https://comicvine.gamespot.com/animal-house/4045-58784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58801/", + "id": 58801, + "name": "Ultimate Fighting", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fighting/4045-58801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58802/", + "id": 58802, + "name": "Spider-Women", + "site_detail_url": "https://comicvine.gamespot.com/spider-women/4045-58802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58807/", + "id": 58807, + "name": "A Nation Under Our Feet", + "site_detail_url": "https://comicvine.gamespot.com/a-nation-under-our-feet/4045-58807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58809/", + "id": 58809, + "name": "Welcome To New Egypt", + "site_detail_url": "https://comicvine.gamespot.com/welcome-to-new-egypt/4045-58809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58842/", + "id": 58842, + "name": "The Strongest Viking There Is", + "site_detail_url": "https://comicvine.gamespot.com/the-strongest-viking-there-is/4045-58842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58843/", + "id": 58843, + "name": "The Hulk In the Mirror", + "site_detail_url": "https://comicvine.gamespot.com/the-hulk-in-the-mirror/4045-58843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58844/", + "id": 58844, + "name": "Ghosts of the Future", + "site_detail_url": "https://comicvine.gamespot.com/ghosts-of-the-future/4045-58844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58853/", + "id": 58853, + "name": "Elektric Connection", + "site_detail_url": "https://comicvine.gamespot.com/elektric-connection/4045-58853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58854/", + "id": 58854, + "name": "The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/the-childrens-crusade/4045-58854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58856/", + "id": 58856, + "name": "Doctor Spectrum: Through the Lens", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum-through-the-lens/4045-58856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58857/", + "id": 58857, + "name": "Out of Orbit", + "site_detail_url": "https://comicvine.gamespot.com/out-of-orbit/4045-58857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58867/", + "id": 58867, + "name": "Something Sinister This Way Comes", + "site_detail_url": "https://comicvine.gamespot.com/something-sinister-this-way-comes/4045-58867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58868/", + "id": 58868, + "name": "There Is No High Road", + "site_detail_url": "https://comicvine.gamespot.com/there-is-no-high-road/4045-58868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58874/", + "id": 58874, + "name": "Battle of Titan", + "site_detail_url": "https://comicvine.gamespot.com/battle-of-titan/4045-58874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58879/", + "id": 58879, + "name": "Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii/4045-58879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58880/", + "id": 58880, + "name": "Sea Devil", + "site_detail_url": "https://comicvine.gamespot.com/sea-devil/4045-58880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58881/", + "id": 58881, + "name": "End of Games", + "site_detail_url": "https://comicvine.gamespot.com/end-of-games/4045-58881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58895/", + "id": 58895, + "name": "Power Play", + "site_detail_url": "https://comicvine.gamespot.com/power-play/4045-58895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58897/", + "id": 58897, + "name": "Spring Break", + "site_detail_url": "https://comicvine.gamespot.com/spring-break/4045-58897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58901/", + "id": 58901, + "name": "The Man Who Fell To Earth", + "site_detail_url": "https://comicvine.gamespot.com/the-man-who-fell-to-earth/4045-58901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58915/", + "id": 58915, + "name": "Tangled States", + "site_detail_url": "https://comicvine.gamespot.com/tangled-states/4045-58915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58918/", + "id": 58918, + "name": "The Box", + "site_detail_url": "https://comicvine.gamespot.com/the-box/4045-58918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58927/", + "id": 58927, + "name": "Deadpool 2099", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-2099/4045-58927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58928/", + "id": 58928, + "name": "Omega World", + "site_detail_url": "https://comicvine.gamespot.com/omega-world/4045-58928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58929/", + "id": 58929, + "name": "Cosmic Cooties", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-cooties/4045-58929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58960/", + "id": 58960, + "name": "Blind Man's Bluff", + "site_detail_url": "https://comicvine.gamespot.com/blind-mans-bluff/4045-58960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58964/", + "id": 58964, + "name": "A.I.M. vs. S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/aim-vs-shield/4045-58964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58974/", + "id": 58974, + "name": "Weapon of Choice", + "site_detail_url": "https://comicvine.gamespot.com/weapon-of-choice/4045-58974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58978/", + "id": 58978, + "name": "Death of X", + "site_detail_url": "https://comicvine.gamespot.com/death-of-x/4045-58978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58995/", + "id": 58995, + "name": "Lonely At the Top", + "site_detail_url": "https://comicvine.gamespot.com/lonely-at-the-top/4045-58995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58996/", + "id": 58996, + "name": "I Kissed A Squirrel and I Liked It", + "site_detail_url": "https://comicvine.gamespot.com/i-kissed-a-squirrel-and-i-liked-it/4045-58996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59016/", + "id": 59016, + "name": "Under New Management", + "site_detail_url": "https://comicvine.gamespot.com/under-new-management/4045-59016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59021/", + "id": 59021, + "name": "Destiny", + "site_detail_url": "https://comicvine.gamespot.com/destiny/4045-59021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59022/", + "id": 59022, + "name": "The Last Flight of the Harbinger", + "site_detail_url": "https://comicvine.gamespot.com/the-last-flight-of-the-harbinger/4045-59022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59033/", + "id": 59033, + "name": "The Last Ronin", + "site_detail_url": "https://comicvine.gamespot.com/the-last-ronin/4045-59033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59040/", + "id": 59040, + "name": "Finding Namor", + "site_detail_url": "https://comicvine.gamespot.com/finding-namor/4045-59040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59050/", + "id": 59050, + "name": "Dark Art", + "site_detail_url": "https://comicvine.gamespot.com/dark-art/4045-59050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59055/", + "id": 59055, + "name": "Before Dead No More", + "site_detail_url": "https://comicvine.gamespot.com/before-dead-no-more/4045-59055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59056/", + "id": 59056, + "name": "Civil War 2099", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2099/4045-59056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59070/", + "id": 59070, + "name": "What Dwells Beneath", + "site_detail_url": "https://comicvine.gamespot.com/what-dwells-beneath/4045-59070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59077/", + "id": 59077, + "name": "Incarnations", + "site_detail_url": "https://comicvine.gamespot.com/incarnations/4045-59077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59078/", + "id": 59078, + "name": "Lockdown", + "site_detail_url": "https://comicvine.gamespot.com/lockdown/4045-59078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59086/", + "id": 59086, + "name": "Bad Southern Pun Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/bad-southern-pun-trilogy/4045-59086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59104/", + "id": 59104, + "name": "Itsy Bitsy", + "site_detail_url": "https://comicvine.gamespot.com/itsy-bitsy/4045-59104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59105/", + "id": 59105, + "name": "Ham-ilton", + "site_detail_url": "https://comicvine.gamespot.com/ham-ilton/4045-59105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59116/", + "id": 59116, + "name": "Enemy of the State II", + "site_detail_url": "https://comicvine.gamespot.com/enemy-of-the-state-ii/4045-59116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59117/", + "id": 59117, + "name": "New Crew, New Rules", + "site_detail_url": "https://comicvine.gamespot.com/new-crew-new-rules/4045-59117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59118/", + "id": 59118, + "name": "Blood In the Aether", + "site_detail_url": "https://comicvine.gamespot.com/blood-in-the-aether/4045-59118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59123/", + "id": 59123, + "name": "Thin Air", + "site_detail_url": "https://comicvine.gamespot.com/thin-air/4045-59123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59125/", + "id": 59125, + "name": "Dead No More", + "site_detail_url": "https://comicvine.gamespot.com/dead-no-more/4045-59125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59126/", + "id": 59126, + "name": "Gwenpool: Head of M.O.D.O.K.", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-head-of-modok/4045-59126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59135/", + "id": 59135, + "name": "The Clone Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy/4045-59135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59136/", + "id": 59136, + "name": "No More Secrets", + "site_detail_url": "https://comicvine.gamespot.com/no-more-secrets/4045-59136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59137/", + "id": 59137, + "name": "#Take Back the Shield", + "site_detail_url": "https://comicvine.gamespot.com/take-back-the-shield/4045-59137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59138/", + "id": 59138, + "name": "Don't Stop Me-ow", + "site_detail_url": "https://comicvine.gamespot.com/dont-stop-me-ow/4045-59138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59151/", + "id": 59151, + "name": "Patience: Zero", + "site_detail_url": "https://comicvine.gamespot.com/patience-zero/4045-59151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59163/", + "id": 59163, + "name": "Scare Tactics", + "site_detail_url": "https://comicvine.gamespot.com/scare-tactics/4045-59163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59171/", + "id": 59171, + "name": "The Gathering Storm", + "site_detail_url": "https://comicvine.gamespot.com/the-gathering-storm/4045-59171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59180/", + "id": 59180, + "name": "Inhumans Vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-vs-x-men/4045-59180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59181/", + "id": 59181, + "name": "The Smartest There Is!", + "site_detail_url": "https://comicvine.gamespot.com/the-smartest-there-is/4045-59181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59194/", + "id": 59194, + "name": "Skywalker Strikes", + "site_detail_url": "https://comicvine.gamespot.com/skywalker-strikes/4045-59194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59205/", + "id": 59205, + "name": "Monster War", + "site_detail_url": "https://comicvine.gamespot.com/monster-war/4045-59205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59210/", + "id": 59210, + "name": "Four On the Floor", + "site_detail_url": "https://comicvine.gamespot.com/four-on-the-floor/4045-59210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59213/", + "id": 59213, + "name": "Wolverine: The End", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-end/4045-59213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59217/", + "id": 59217, + "name": "Return To The Wastelands", + "site_detail_url": "https://comicvine.gamespot.com/return-to-the-wastelands/4045-59217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59218/", + "id": 59218, + "name": "$kullocracy", + "site_detail_url": "https://comicvine.gamespot.com/kullocracy/4045-59218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59227/", + "id": 59227, + "name": "The Seventh Day", + "site_detail_url": "https://comicvine.gamespot.com/the-seventh-day/4045-59227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59228/", + "id": 59228, + "name": "The Asgard/Shi'ar War", + "site_detail_url": "https://comicvine.gamespot.com/the-asgardshiar-war/4045-59228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59229/", + "id": 59229, + "name": "Sitting In A Tree", + "site_detail_url": "https://comicvine.gamespot.com/sitting-in-a-tree/4045-59229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59241/", + "id": 59241, + "name": "Alien Nation", + "site_detail_url": "https://comicvine.gamespot.com/alien-nation/4045-59241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59246/", + "id": 59246, + "name": "Monsters Unleashed!", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed/4045-59246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59247/", + "id": 59247, + "name": "Deconstructed", + "site_detail_url": "https://comicvine.gamespot.com/deconstructed/4045-59247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59248/", + "id": 59248, + "name": "Yoda's Secret War", + "site_detail_url": "https://comicvine.gamespot.com/yodas-secret-war/4045-59248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59249/", + "id": 59249, + "name": "Big Apple Showdown", + "site_detail_url": "https://comicvine.gamespot.com/big-apple-showdown/4045-59249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59259/", + "id": 59259, + "name": "Death and Birth", + "site_detail_url": "https://comicvine.gamespot.com/death-and-birth/4045-59259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59261/", + "id": 59261, + "name": "Catch Me If You Can", + "site_detail_url": "https://comicvine.gamespot.com/catch-me-if-you-can/4045-59261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59262/", + "id": 59262, + "name": "Identity Theft", + "site_detail_url": "https://comicvine.gamespot.com/identity-theft/4045-59262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59263/", + "id": 59263, + "name": "Damage Per Second", + "site_detail_url": "https://comicvine.gamespot.com/damage-per-second/4045-59263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59284/", + "id": 59284, + "name": "Purple", + "site_detail_url": "https://comicvine.gamespot.com/purple/4045-59284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59291/", + "id": 59291, + "name": "Always Bet On Red", + "site_detail_url": "https://comicvine.gamespot.com/always-bet-on-red/4045-59291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59293/", + "id": 59293, + "name": "Return of the Masters", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-masters/4045-59293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59299/", + "id": 59299, + "name": "'Til Death Do Us...", + "site_detail_url": "https://comicvine.gamespot.com/til-death-do-us/4045-59299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59308/", + "id": 59308, + "name": "Gone Real Bad", + "site_detail_url": "https://comicvine.gamespot.com/gone-real-bad/4045-59308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59316/", + "id": 59316, + "name": "The Osborn Identity", + "site_detail_url": "https://comicvine.gamespot.com/the-osborn-identity/4045-59316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59324/", + "id": 59324, + "name": "The Trial of the Seven Masters", + "site_detail_url": "https://comicvine.gamespot.com/the-trial-of-the-seven-masters/4045-59324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59328/", + "id": 59328, + "name": "Resurrxion", + "site_detail_url": "https://comicvine.gamespot.com/resurrxion/4045-59328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59341/", + "id": 59341, + "name": "Back To The Basics", + "site_detail_url": "https://comicvine.gamespot.com/back-to-the-basics/4045-59341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59345/", + "id": 59345, + "name": "Past Lives", + "site_detail_url": "https://comicvine.gamespot.com/past-lives/4045-59345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59348/", + "id": 59348, + "name": "School Daze", + "site_detail_url": "https://comicvine.gamespot.com/school-daze/4045-59348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59349/", + "id": 59349, + "name": "We Are the Streets", + "site_detail_url": "https://comicvine.gamespot.com/we-are-the-streets/4045-59349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59353/", + "id": 59353, + "name": "Secret Empire: Opening Salvo", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-opening-salvo/4045-59353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59354/", + "id": 59354, + "name": "Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire/4045-59354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59367/", + "id": 59367, + "name": "What Would J. Jones Do?", + "site_detail_url": "https://comicvine.gamespot.com/what-would-j-jones-do/4045-59367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59368/", + "id": 59368, + "name": "Predators", + "site_detail_url": "https://comicvine.gamespot.com/predators/4045-59368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59369/", + "id": 59369, + "name": "Legend Lost", + "site_detail_url": "https://comicvine.gamespot.com/legend-lost/4045-59369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59388/", + "id": 59388, + "name": "The Blue River Score", + "site_detail_url": "https://comicvine.gamespot.com/the-blue-river-score/4045-59388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59389/", + "id": 59389, + "name": "To Begin the World Over Again", + "site_detail_url": "https://comicvine.gamespot.com/to-begin-the-world-over-again/4045-59389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59394/", + "id": 59394, + "name": "The Screaming Citadel", + "site_detail_url": "https://comicvine.gamespot.com/the-screaming-citadel/4045-59394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59409/", + "id": 59409, + "name": "Band of Sisters", + "site_detail_url": "https://comicvine.gamespot.com/band-of-sisters/4045-59409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59410/", + "id": 59410, + "name": "Girl-Moon", + "site_detail_url": "https://comicvine.gamespot.com/girl-moon/4045-59410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59411/", + "id": 59411, + "name": "Weapons of Mutant Destruction", + "site_detail_url": "https://comicvine.gamespot.com/weapons-of-mutant-destruction/4045-59411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59424/", + "id": 59424, + "name": "Supreme", + "site_detail_url": "https://comicvine.gamespot.com/supreme/4045-59424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59425/", + "id": 59425, + "name": "The New Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/the-new-sinister-six/4045-59425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59433/", + "id": 59433, + "name": "Days of Anger", + "site_detail_url": "https://comicvine.gamespot.com/days-of-anger/4045-59433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59434/", + "id": 59434, + "name": "The Night Shift", + "site_detail_url": "https://comicvine.gamespot.com/the-night-shift/4045-59434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59435/", + "id": 59435, + "name": "Beyond the Fourth Wall", + "site_detail_url": "https://comicvine.gamespot.com/beyond-the-fourth-wall/4045-59435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59436/", + "id": 59436, + "name": "The Land Before Crime", + "site_detail_url": "https://comicvine.gamespot.com/the-land-before-crime/4045-59436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59458/", + "id": 59458, + "name": "Venomverse", + "site_detail_url": "https://comicvine.gamespot.com/venomverse/4045-59458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59463/", + "id": 59463, + "name": "Hive", + "site_detail_url": "https://comicvine.gamespot.com/hive/4045-59463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59472/", + "id": 59472, + "name": "Let Them Eat Cake", + "site_detail_url": "https://comicvine.gamespot.com/let-them-eat-cake/4045-59472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59483/", + "id": 59483, + "name": "War Stories", + "site_detail_url": "https://comicvine.gamespot.com/war-stories/4045-59483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59484/", + "id": 59484, + "name": "Life of X", + "site_detail_url": "https://comicvine.gamespot.com/life-of-x/4045-59484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59487/", + "id": 59487, + "name": "Conquest", + "site_detail_url": "https://comicvine.gamespot.com/conquest/4045-59487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59488/", + "id": 59488, + "name": "The Enormous Profit", + "site_detail_url": "https://comicvine.gamespot.com/the-enormous-profit/4045-59488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59494/", + "id": 59494, + "name": "No Laughing Matter", + "site_detail_url": "https://comicvine.gamespot.com/no-laughing-matter/4045-59494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59495/", + "id": 59495, + "name": "Kitty Goes To Washington", + "site_detail_url": "https://comicvine.gamespot.com/kitty-goes-to-washington/4045-59495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59508/", + "id": 59508, + "name": "The Cold War of Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/the-cold-war-of-nick-fury/4045-59508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59525/", + "id": 59525, + "name": "The Hunt For Weapon H", + "site_detail_url": "https://comicvine.gamespot.com/the-hunt-for-weapon-h/4045-59525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59534/", + "id": 59534, + "name": "Toil and Trouble", + "site_detail_url": "https://comicvine.gamespot.com/toil-and-trouble/4045-59534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59546/", + "id": 59546, + "name": "Land of the Blind", + "site_detail_url": "https://comicvine.gamespot.com/land-of-the-blind/4045-59546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59548/", + "id": 59548, + "name": "Higher Learning", + "site_detail_url": "https://comicvine.gamespot.com/higher-learning/4045-59548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59549/", + "id": 59549, + "name": "Mind Games", + "site_detail_url": "https://comicvine.gamespot.com/mind-games/4045-59549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59550/", + "id": 59550, + "name": "Bloom", + "site_detail_url": "https://comicvine.gamespot.com/bloom/4045-59550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59557/", + "id": 59557, + "name": "If Trouble Must Come.", + "site_detail_url": "https://comicvine.gamespot.com/if-trouble-must-come/4045-59557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59563/", + "id": 59563, + "name": "The Curse of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/the-curse-of-the-green-goblin/4045-59563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59571/", + "id": 59571, + "name": "Worlds Collide", + "site_detail_url": "https://comicvine.gamespot.com/worlds-collide/4045-59571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59572/", + "id": 59572, + "name": "Champions Reunited", + "site_detail_url": "https://comicvine.gamespot.com/champions-reunited/4045-59572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59573/", + "id": 59573, + "name": "Sabretooth: Round Two", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-round-two/4045-59573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59574/", + "id": 59574, + "name": "Return of the Purple Man", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-purple-man/4045-59574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59575/", + "id": 59575, + "name": "Fire From Heaven", + "site_detail_url": "https://comicvine.gamespot.com/fire-from-heaven/4045-59575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59576/", + "id": 59576, + "name": "War At the Gates of Hell", + "site_detail_url": "https://comicvine.gamespot.com/war-at-the-gates-of-hell/4045-59576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59577/", + "id": 59577, + "name": "Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/lethal-protector/4045-59577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59578/", + "id": 59578, + "name": "Mojo Worldwide", + "site_detail_url": "https://comicvine.gamespot.com/mojo-worldwide/4045-59578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59585/", + "id": 59585, + "name": "Orphans of X", + "site_detail_url": "https://comicvine.gamespot.com/orphans-of-x/4045-59585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59586/", + "id": 59586, + "name": "Fall of Parker", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-parker/4045-59586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59587/", + "id": 59587, + "name": "Kingpins of New York", + "site_detail_url": "https://comicvine.gamespot.com/kingpins-of-new-york/4045-59587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59588/", + "id": 59588, + "name": "Deadpool Kills Cable", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-cable/4045-59588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59589/", + "id": 59589, + "name": "Take Flight", + "site_detail_url": "https://comicvine.gamespot.com/take-flight/4045-59589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59590/", + "id": 59590, + "name": "Northeast Corridor", + "site_detail_url": "https://comicvine.gamespot.com/northeast-corridor/4045-59590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59591/", + "id": 59591, + "name": "Doom Sees You", + "site_detail_url": "https://comicvine.gamespot.com/doom-sees-you/4045-59591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59592/", + "id": 59592, + "name": "Stars and Garters", + "site_detail_url": "https://comicvine.gamespot.com/stars-and-garters/4045-59592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59602/", + "id": 59602, + "name": "The Newer Mutants", + "site_detail_url": "https://comicvine.gamespot.com/the-newer-mutants/4045-59602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59603/", + "id": 59603, + "name": "Return To Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/return-to-planet-hulk/4045-59603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59604/", + "id": 59604, + "name": "The Search For Tony Stark", + "site_detail_url": "https://comicvine.gamespot.com/the-search-for-tony-stark/4045-59604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59605/", + "id": 59605, + "name": "Caged!", + "site_detail_url": "https://comicvine.gamespot.com/caged/4045-59605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59606/", + "id": 59606, + "name": "The Death of the Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-the-mighty-thor/4045-59606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59607/", + "id": 59607, + "name": "And Lo There Came... A Poison!", + "site_detail_url": "https://comicvine.gamespot.com/and-lo-there-came-a-poison/4045-59607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59608/", + "id": 59608, + "name": "Gwenom", + "site_detail_url": "https://comicvine.gamespot.com/gwenom/4045-59608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59609/", + "id": 59609, + "name": "Legend Found", + "site_detail_url": "https://comicvine.gamespot.com/legend-found/4045-59609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59618/", + "id": 59618, + "name": "Dark Origins", + "site_detail_url": "https://comicvine.gamespot.com/dark-origins/4045-59618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59619/", + "id": 59619, + "name": "Psych Wars", + "site_detail_url": "https://comicvine.gamespot.com/psych-wars/4045-59619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59620/", + "id": 59620, + "name": "Cannonball Run", + "site_detail_url": "https://comicvine.gamespot.com/cannonball-run/4045-59620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59621/", + "id": 59621, + "name": "Exterminatrix", + "site_detail_url": "https://comicvine.gamespot.com/exterminatrix/4045-59621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59626/", + "id": 59626, + "name": "Home of the Brave", + "site_detail_url": "https://comicvine.gamespot.com/home-of-the-brave/4045-59626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59627/", + "id": 59627, + "name": "The Dying Light", + "site_detail_url": "https://comicvine.gamespot.com/the-dying-light/4045-59627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59628/", + "id": 59628, + "name": "Infinity Quest", + "site_detail_url": "https://comicvine.gamespot.com/infinity-quest/4045-59628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59629/", + "id": 59629, + "name": "Sinister Six Reborn", + "site_detail_url": "https://comicvine.gamespot.com/sinister-six-reborn/4045-59629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59639/", + "id": 59639, + "name": "Mayor Fisk", + "site_detail_url": "https://comicvine.gamespot.com/mayor-fisk/4045-59639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59640/", + "id": 59640, + "name": "Crazy Runs In the Family", + "site_detail_url": "https://comicvine.gamespot.com/crazy-runs-in-the-family/4045-59640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59641/", + "id": 59641, + "name": "Find Your Way Home", + "site_detail_url": "https://comicvine.gamespot.com/find-your-way-home/4045-59641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59642/", + "id": 59642, + "name": "Jen Walters Must Die", + "site_detail_url": "https://comicvine.gamespot.com/jen-walters-must-die/4045-59642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59643/", + "id": 59643, + "name": "Arms Race", + "site_detail_url": "https://comicvine.gamespot.com/arms-race/4045-59643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59644/", + "id": 59644, + "name": "The Ashes of Jedha", + "site_detail_url": "https://comicvine.gamespot.com/the-ashes-of-jedha/4045-59644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59650/", + "id": 59650, + "name": "The Slingers Return", + "site_detail_url": "https://comicvine.gamespot.com/the-slingers-return/4045-59650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59651/", + "id": 59651, + "name": "Loki: Sorcerer Supreme", + "site_detail_url": "https://comicvine.gamespot.com/loki-sorcerer-supreme/4045-59651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59652/", + "id": 59652, + "name": "Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/most-wanted/4045-59652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59653/", + "id": 59653, + "name": "Punisher: War Machine", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-machine/4045-59653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59654/", + "id": 59654, + "name": "Vs. Mister Sinister!", + "site_detail_url": "https://comicvine.gamespot.com/vs-mister-sinister/4045-59654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59655/", + "id": 59655, + "name": "We Esteem Too Lightly.", + "site_detail_url": "https://comicvine.gamespot.com/we-esteem-too-lightly/4045-59655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59657/", + "id": 59657, + "name": "Remastered", + "site_detail_url": "https://comicvine.gamespot.com/remastered/4045-59657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59664/", + "id": 59664, + "name": "8 Years Later", + "site_detail_url": "https://comicvine.gamespot.com/8-years-later/4045-59664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59665/", + "id": 59665, + "name": "1+2 = Fantastic Three", + "site_detail_url": "https://comicvine.gamespot.com/12-fantastic-three/4045-59665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59666/", + "id": 59666, + "name": "Thanos Wins", + "site_detail_url": "https://comicvine.gamespot.com/thanos-wins/4045-59666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59667/", + "id": 59667, + "name": "The Negative Zone War", + "site_detail_url": "https://comicvine.gamespot.com/the-negative-zone-war/4045-59667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59674/", + "id": 59674, + "name": "Scarlet Samurai", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-samurai/4045-59674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59675/", + "id": 59675, + "name": "Cross Time Capers", + "site_detail_url": "https://comicvine.gamespot.com/cross-time-capers/4045-59675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59686/", + "id": 59686, + "name": "Venom Inc.", + "site_detail_url": "https://comicvine.gamespot.com/venom-inc/4045-59686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59687/", + "id": 59687, + "name": "The Midnight King Returns To Earth", + "site_detail_url": "https://comicvine.gamespot.com/the-midnight-king-returns-to-earth/4045-59687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59688/", + "id": 59688, + "name": "Family Reunion", + "site_detail_url": "https://comicvine.gamespot.com/family-reunion/4045-59688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59691/", + "id": 59691, + "name": "The Forbidden Pla-Nut", + "site_detail_url": "https://comicvine.gamespot.com/the-forbidden-pla-nut/4045-59691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59692/", + "id": 59692, + "name": "Nuke-Clear War", + "site_detail_url": "https://comicvine.gamespot.com/nuke-clear-war/4045-59692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59703/", + "id": 59703, + "name": "Survival of the Fittest", + "site_detail_url": "https://comicvine.gamespot.com/survival-of-the-fittest/4045-59703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59704/", + "id": 59704, + "name": "Fate of the Four", + "site_detail_url": "https://comicvine.gamespot.com/fate-of-the-four/4045-59704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59705/", + "id": 59705, + "name": "Learning Curve", + "site_detail_url": "https://comicvine.gamespot.com/learning-curve/4045-59705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59706/", + "id": 59706, + "name": "Teenage Wasteland", + "site_detail_url": "https://comicvine.gamespot.com/teenage-wasteland/4045-59706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59718/", + "id": 59718, + "name": "A Man Called X", + "site_detail_url": "https://comicvine.gamespot.com/a-man-called-x/4045-59718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59719/", + "id": 59719, + "name": "The Return of Adam Warlock", + "site_detail_url": "https://comicvine.gamespot.com/the-return-of-adam-warlock/4045-59719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59720/", + "id": 59720, + "name": "The Apocalypse Seed", + "site_detail_url": "https://comicvine.gamespot.com/the-apocalypse-seed/4045-59720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59726/", + "id": 59726, + "name": "No Surrender", + "site_detail_url": "https://comicvine.gamespot.com/no-surrender/4045-59726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59727/", + "id": 59727, + "name": "Bucket List", + "site_detail_url": "https://comicvine.gamespot.com/bucket-list/4045-59727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59729/", + "id": 59729, + "name": "Oldies", + "site_detail_url": "https://comicvine.gamespot.com/oldies/4045-59729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59730/", + "id": 59730, + "name": "Lost In the Plot", + "site_detail_url": "https://comicvine.gamespot.com/lost-in-the-plot/4045-59730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59739/", + "id": 59739, + "name": "Champion For A Day", + "site_detail_url": "https://comicvine.gamespot.com/champion-for-a-day/4045-59739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59747/", + "id": 59747, + "name": "Threat Level: Red", + "site_detail_url": "https://comicvine.gamespot.com/threat-level-red/4045-59747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59748/", + "id": 59748, + "name": "Poison-X", + "site_detail_url": "https://comicvine.gamespot.com/poison-x/4045-59748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59756/", + "id": 59756, + "name": "Phoenix Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-resurrection/4045-59756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59757/", + "id": 59757, + "name": "Moon Over Madripoor", + "site_detail_url": "https://comicvine.gamespot.com/moon-over-madripoor/4045-59757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59764/", + "id": 59764, + "name": "Area 14", + "site_detail_url": "https://comicvine.gamespot.com/area-14/4045-59764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59765/", + "id": 59765, + "name": "Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood/4045-59765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59766/", + "id": 59766, + "name": "The Hate Machine", + "site_detail_url": "https://comicvine.gamespot.com/the-hate-machine/4045-59766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59781/", + "id": 59781, + "name": "Fast Times At Midtown High", + "site_detail_url": "https://comicvine.gamespot.com/fast-times-at-midtown-high/4045-59781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59782/", + "id": 59782, + "name": "Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/out-of-time/4045-59782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59784/", + "id": 59784, + "name": "The Rule of Five", + "site_detail_url": "https://comicvine.gamespot.com/the-rule-of-five/4045-59784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59791/", + "id": 59791, + "name": "Infinity Countdown", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown/4045-59791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59806/", + "id": 59806, + "name": "Damnation", + "site_detail_url": "https://comicvine.gamespot.com/damnation/4045-59806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59807/", + "id": 59807, + "name": "Bleeding Neon", + "site_detail_url": "https://comicvine.gamespot.com/bleeding-neon/4045-59807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59814/", + "id": 59814, + "name": "Go Down Swinging", + "site_detail_url": "https://comicvine.gamespot.com/go-down-swinging/4045-59814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59815/", + "id": 59815, + "name": "Mutiny At Mon Cala", + "site_detail_url": "https://comicvine.gamespot.com/mutiny-at-mon-cala/4045-59815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59816/", + "id": 59816, + "name": "Cruel and Unusual", + "site_detail_url": "https://comicvine.gamespot.com/cruel-and-unusual/4045-59816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59824/", + "id": 59824, + "name": "Burning Seas", + "site_detail_url": "https://comicvine.gamespot.com/burning-seas/4045-59824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59825/", + "id": 59825, + "name": "Vampires In Brooklyn", + "site_detail_url": "https://comicvine.gamespot.com/vampires-in-brooklyn/4045-59825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59826/", + "id": 59826, + "name": "Moving Target", + "site_detail_url": "https://comicvine.gamespot.com/moving-target/4045-59826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59827/", + "id": 59827, + "name": "Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy/4045-59827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59828/", + "id": 59828, + "name": "Happy Birthday, Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/happy-birthday-old-man-logan/4045-59828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59829/", + "id": 59829, + "name": "Cry Havok", + "site_detail_url": "https://comicvine.gamespot.com/cry-havok/4045-59829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59835/", + "id": 59835, + "name": "Past Fears", + "site_detail_url": "https://comicvine.gamespot.com/past-fears/4045-59835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59836/", + "id": 59836, + "name": "World War Hulk II", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-ii/4045-59836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59837/", + "id": 59837, + "name": "Best Friends Forever", + "site_detail_url": "https://comicvine.gamespot.com/best-friends-forever/4045-59837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59838/", + "id": 59838, + "name": "The Life of Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-gwen-stacy/4045-59838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59839/", + "id": 59839, + "name": "AWOL", + "site_detail_url": "https://comicvine.gamespot.com/awol/4045-59839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59846/", + "id": 59846, + "name": "The Marvel Universe Kills Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-universe-kills-deadpool/4045-59846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59854/", + "id": 59854, + "name": "Old Woman Laura", + "site_detail_url": "https://comicvine.gamespot.com/old-woman-laura/4045-59854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59855/", + "id": 59855, + "name": "The Nativity", + "site_detail_url": "https://comicvine.gamespot.com/the-nativity/4045-59855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59861/", + "id": 59861, + "name": "Northern Lights", + "site_detail_url": "https://comicvine.gamespot.com/northern-lights/4045-59861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59862/", + "id": 59862, + "name": "Killer Instinct", + "site_detail_url": "https://comicvine.gamespot.com/killer-instinct/4045-59862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59871/", + "id": 59871, + "name": "Something New", + "site_detail_url": "https://comicvine.gamespot.com/something-new/4045-59871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59872/", + "id": 59872, + "name": "The Awakening", + "site_detail_url": "https://comicvine.gamespot.com/the-awakening/4045-59872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59873/", + "id": 59873, + "name": "'Til Death Do Us Part", + "site_detail_url": "https://comicvine.gamespot.com/til-death-do-us-part/4045-59873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59887/", + "id": 59887, + "name": "Promised Land", + "site_detail_url": "https://comicvine.gamespot.com/promised-land/4045-59887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59888/", + "id": 59888, + "name": "Hunt For Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine/4045-59888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59889/", + "id": 59889, + "name": "Sabretooth's In Charge", + "site_detail_url": "https://comicvine.gamespot.com/sabretooths-in-charge/4045-59889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59892/", + "id": 59892, + "name": "The Dark Ride", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-ride/4045-59892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59895/", + "id": 59895, + "name": "Glob Loves, Man Kills", + "site_detail_url": "https://comicvine.gamespot.com/glob-loves-man-kills/4045-59895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59896/", + "id": 59896, + "name": "No More", + "site_detail_url": "https://comicvine.gamespot.com/no-more/4045-59896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59905/", + "id": 59905, + "name": "Punisher: War Criminal", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-criminal/4045-59905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59908/", + "id": 59908, + "name": "Strange Way To Go", + "site_detail_url": "https://comicvine.gamespot.com/strange-way-to-go/4045-59908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59909/", + "id": 59909, + "name": "The Catastrophe Con", + "site_detail_url": "https://comicvine.gamespot.com/the-catastrophe-con/4045-59909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59924/", + "id": 59924, + "name": "Sorcerer Supreme of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/sorcerer-supreme-of-the-galaxy/4045-59924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59932/", + "id": 59932, + "name": "Logan the Hunted", + "site_detail_url": "https://comicvine.gamespot.com/logan-the-hunted/4045-59932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59940/", + "id": 59940, + "name": "Weird Science", + "site_detail_url": "https://comicvine.gamespot.com/weird-science/4045-59940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59941/", + "id": 59941, + "name": "Self-Made Man", + "site_detail_url": "https://comicvine.gamespot.com/self-made-man/4045-59941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59946/", + "id": 59946, + "name": "The Intergalactic Empire of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/the-intergalactic-empire-of-wakanda/4045-59946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59947/", + "id": 59947, + "name": "Save Our School", + "site_detail_url": "https://comicvine.gamespot.com/save-our-school/4045-59947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59948/", + "id": 59948, + "name": "Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/coming-home/4045-59948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59961/", + "id": 59961, + "name": "Until Our Hearts Stop", + "site_detail_url": "https://comicvine.gamespot.com/until-our-hearts-stop/4045-59961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59962/", + "id": 59962, + "name": "Winter in America", + "site_detail_url": "https://comicvine.gamespot.com/winter-in-america/4045-59962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59963/", + "id": 59963, + "name": "Infinity Wars", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars/4045-59963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59964/", + "id": 59964, + "name": "Hope Dies", + "site_detail_url": "https://comicvine.gamespot.com/hope-dies/4045-59964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59965/", + "id": 59965, + "name": "If He Dies, He Dies", + "site_detail_url": "https://comicvine.gamespot.com/if-he-dies-he-dies/4045-59965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59966/", + "id": 59966, + "name": "Prestige Dark", + "site_detail_url": "https://comicvine.gamespot.com/prestige-dark/4045-59966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59967/", + "id": 59967, + "name": "Marvel Rising", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising/4045-59967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59972/", + "id": 59972, + "name": "The Chosen One", + "site_detail_url": "https://comicvine.gamespot.com/the-chosen-one/4045-59972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59974/", + "id": 59974, + "name": "Give and Take", + "site_detail_url": "https://comicvine.gamespot.com/give-and-take/4045-59974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59975/", + "id": 59975, + "name": "The Ratio", + "site_detail_url": "https://comicvine.gamespot.com/the-ratio/4045-59975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59976/", + "id": 59976, + "name": "Bullseye Returns", + "site_detail_url": "https://comicvine.gamespot.com/bullseye-returns/4045-59976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59977/", + "id": 59977, + "name": "Kings and Queens", + "site_detail_url": "https://comicvine.gamespot.com/kings-and-queens/4045-59977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59978/", + "id": 59978, + "name": "Back To Basics", + "site_detail_url": "https://comicvine.gamespot.com/back-to-basics/4045-59978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60001/", + "id": 60001, + "name": "Wakanda Forever", + "site_detail_url": "https://comicvine.gamespot.com/wakanda-forever/4045-60001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60002/", + "id": 60002, + "name": "Two Birthdays and Three Funerals", + "site_detail_url": "https://comicvine.gamespot.com/two-birthdays-and-three-funerals/4045-60002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60011/", + "id": 60011, + "name": "Godwar", + "site_detail_url": "https://comicvine.gamespot.com/godwar/4045-60011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60019/", + "id": 60019, + "name": "Fortress Vader", + "site_detail_url": "https://comicvine.gamespot.com/fortress-vader/4045-60019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60020/", + "id": 60020, + "name": "Fourever", + "site_detail_url": "https://comicvine.gamespot.com/fourever/4045-60020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60025/", + "id": 60025, + "name": "Cracked Hourglass", + "site_detail_url": "https://comicvine.gamespot.com/cracked-hourglass/4045-60025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60026/", + "id": 60026, + "name": "Weapon X-Force", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-force/4045-60026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60032/", + "id": 60032, + "name": "Northern Flight", + "site_detail_url": "https://comicvine.gamespot.com/northern-flight/4045-60032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60037/", + "id": 60037, + "name": "Web of Venom", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom/4045-60037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60050/", + "id": 60050, + "name": "That Was Yesterday", + "site_detail_url": "https://comicvine.gamespot.com/that-was-yesterday/4045-60050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60060/", + "id": 60060, + "name": "World Tour", + "site_detail_url": "https://comicvine.gamespot.com/world-tour/4045-60060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60065/", + "id": 60065, + "name": "A Trivial Pursuit", + "site_detail_url": "https://comicvine.gamespot.com/a-trivial-pursuit/4045-60065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60066/", + "id": 60066, + "name": "King of Nothing", + "site_detail_url": "https://comicvine.gamespot.com/king-of-nothing/4045-60066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60076/", + "id": 60076, + "name": "Warriors of the Weird", + "site_detail_url": "https://comicvine.gamespot.com/warriors-of-the-weird/4045-60076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60077/", + "id": 60077, + "name": "The Two Doctors", + "site_detail_url": "https://comicvine.gamespot.com/the-two-doctors/4045-60077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60078/", + "id": 60078, + "name": "Typhoid Fever", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever/4045-60078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60079/", + "id": 60079, + "name": "Degeneration", + "site_detail_url": "https://comicvine.gamespot.com/degeneration/4045-60079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60080/", + "id": 60080, + "name": "X-Men: Black", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black/4045-60080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60087/", + "id": 60087, + "name": "Soldier of Fortune", + "site_detail_url": "https://comicvine.gamespot.com/soldier-of-fortune/4045-60087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60088/", + "id": 60088, + "name": "Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon/4045-60088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60089/", + "id": 60089, + "name": "Oversight", + "site_detail_url": "https://comicvine.gamespot.com/oversight/4045-60089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60098/", + "id": 60098, + "name": "The Death of Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-daredevil/4045-60098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60099/", + "id": 60099, + "name": "Infinity Warps", + "site_detail_url": "https://comicvine.gamespot.com/infinity-warps/4045-60099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60104/", + "id": 60104, + "name": "Heist", + "site_detail_url": "https://comicvine.gamespot.com/heist/4045-60104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60110/", + "id": 60110, + "name": "The Escape", + "site_detail_url": "https://comicvine.gamespot.com/the-escape/4045-60110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60120/", + "id": 60120, + "name": "Worst Among Equals", + "site_detail_url": "https://comicvine.gamespot.com/worst-among-equals/4045-60120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60121/", + "id": 60121, + "name": "Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/disassembled/4045-60121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60125/", + "id": 60125, + "name": "The Price", + "site_detail_url": "https://comicvine.gamespot.com/the-price/4045-60125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60126/", + "id": 60126, + "name": "Stark Realities", + "site_detail_url": "https://comicvine.gamespot.com/stark-realities/4045-60126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60128/", + "id": 60128, + "name": "The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/the-best-defense/4045-60128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60129/", + "id": 60129, + "name": "Bad Dream", + "site_detail_url": "https://comicvine.gamespot.com/bad-dream/4045-60129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60130/", + "id": 60130, + "name": "The Abyss", + "site_detail_url": "https://comicvine.gamespot.com/the-abyss/4045-60130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60131/", + "id": 60131, + "name": "Lifetime Achievement", + "site_detail_url": "https://comicvine.gamespot.com/lifetime-achievement/4045-60131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60132/", + "id": 60132, + "name": "Age of Republic", + "site_detail_url": "https://comicvine.gamespot.com/age-of-republic/4045-60132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60138/", + "id": 60138, + "name": "Sins of the Past", + "site_detail_url": "https://comicvine.gamespot.com/sins-of-the-past/4045-60138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60144/", + "id": 60144, + "name": "Beat the Devil", + "site_detail_url": "https://comicvine.gamespot.com/beat-the-devil/4045-60144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60145/", + "id": 60145, + "name": "The Life & Death of Conan", + "site_detail_url": "https://comicvine.gamespot.com/the-life-and-death-of-conan/4045-60145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60146/", + "id": 60146, + "name": "Gambit & Rogue Forever", + "site_detail_url": "https://comicvine.gamespot.com/gambit-and-rogue-forever/4045-60146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60149/", + "id": 60149, + "name": "War In Bagalia", + "site_detail_url": "https://comicvine.gamespot.com/war-in-bagalia/4045-60149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60156/", + "id": 60156, + "name": "Herald of Doom", + "site_detail_url": "https://comicvine.gamespot.com/herald-of-doom/4045-60156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60161/", + "id": 60161, + "name": "Mother of Exiles", + "site_detail_url": "https://comicvine.gamespot.com/mother-of-exiles/4045-60161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60162/", + "id": 60162, + "name": "The Final Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/the-final-gauntlet/4045-60162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60165/", + "id": 60165, + "name": "Age of X-Man", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man/4045-60165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60166/", + "id": 60166, + "name": "Family Matters", + "site_detail_url": "https://comicvine.gamespot.com/family-matters/4045-60166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60167/", + "id": 60167, + "name": "Captain of Nothing", + "site_detail_url": "https://comicvine.gamespot.com/captain-of-nothing/4045-60167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60172/", + "id": 60172, + "name": "Know Fear", + "site_detail_url": "https://comicvine.gamespot.com/know-fear/4045-60172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60173/", + "id": 60173, + "name": "This Is Forever", + "site_detail_url": "https://comicvine.gamespot.com/this-is-forever/4045-60173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60176/", + "id": 60176, + "name": "Re-Entry", + "site_detail_url": "https://comicvine.gamespot.com/re-entry/4045-60176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60188/", + "id": 60188, + "name": "War Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/war-ghosts/4045-60188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60191/", + "id": 60191, + "name": "Remittance", + "site_detail_url": "https://comicvine.gamespot.com/remittance/4045-60191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60196/", + "id": 60196, + "name": "Hunted", + "site_detail_url": "https://comicvine.gamespot.com/hunted/4045-60196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60197/", + "id": 60197, + "name": "The Scourging of Shu-Torun", + "site_detail_url": "https://comicvine.gamespot.com/the-scourging-of-shu-torun/4045-60197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60204/", + "id": 60204, + "name": "But You Can't Hide", + "site_detail_url": "https://comicvine.gamespot.com/but-you-cant-hide/4045-60204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60205/", + "id": 60205, + "name": "A Friend In Need", + "site_detail_url": "https://comicvine.gamespot.com/a-friend-in-need/4045-60205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60207/", + "id": 60207, + "name": "The Iron Mechanic", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-mechanic/4045-60207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60215/", + "id": 60215, + "name": "Herald Supreme", + "site_detail_url": "https://comicvine.gamespot.com/herald-supreme/4045-60215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60216/", + "id": 60216, + "name": "The War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/the-war-of-the-realms/4045-60216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60220/", + "id": 60220, + "name": "Age of Rebellion", + "site_detail_url": "https://comicvine.gamespot.com/age-of-rebellion/4045-60220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60221/", + "id": 60221, + "name": "Dear Gabby", + "site_detail_url": "https://comicvine.gamespot.com/dear-gabby/4045-60221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60250/", + "id": 60250, + "name": "Welcome Back, Logan", + "site_detail_url": "https://comicvine.gamespot.com/welcome-back-logan/4045-60250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60251/", + "id": 60251, + "name": "We Have Always Been", + "site_detail_url": "https://comicvine.gamespot.com/we-have-always-been/4045-60251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60259/", + "id": 60259, + "name": "Unspeakable Rebel Superweapon", + "site_detail_url": "https://comicvine.gamespot.com/unspeakable-rebel-superweapon/4045-60259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60260/", + "id": 60260, + "name": "The Counterfeit King", + "site_detail_url": "https://comicvine.gamespot.com/the-counterfeit-king/4045-60260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60269/", + "id": 60269, + "name": "The Lady & the Tiger", + "site_detail_url": "https://comicvine.gamespot.com/the-lady-and-the-tiger/4045-60269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60273/", + "id": 60273, + "name": "No Devils, Only God", + "site_detail_url": "https://comicvine.gamespot.com/no-devils-only-god/4045-60273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60280/", + "id": 60280, + "name": "Strange Trip", + "site_detail_url": "https://comicvine.gamespot.com/strange-trip/4045-60280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60284/", + "id": 60284, + "name": "Feast or Famine", + "site_detail_url": "https://comicvine.gamespot.com/feast-or-famine/4045-60284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60285/", + "id": 60285, + "name": "War On the Streets", + "site_detail_url": "https://comicvine.gamespot.com/war-on-the-streets/4045-60285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60295/", + "id": 60295, + "name": "Two Thousand Seasons", + "site_detail_url": "https://comicvine.gamespot.com/two-thousand-seasons/4045-60295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60300/", + "id": 60300, + "name": "Acts of Evil", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-evil/4045-60300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60301/", + "id": 60301, + "name": "Secret Warps", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps/4045-60301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60302/", + "id": 60302, + "name": "Age of Resistance", + "site_detail_url": "https://comicvine.gamespot.com/age-of-resistance/4045-60302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60308/", + "id": 60308, + "name": "Holiest of Holies", + "site_detail_url": "https://comicvine.gamespot.com/holiest-of-holies/4045-60308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60310/", + "id": 60310, + "name": "Conan the Gambler", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-gambler/4045-60310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60311/", + "id": 60311, + "name": "Rebels and Rogues", + "site_detail_url": "https://comicvine.gamespot.com/rebels-and-rogues/4045-60311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60316/", + "id": 60316, + "name": "Falling Star", + "site_detail_url": "https://comicvine.gamespot.com/falling-star/4045-60316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60317/", + "id": 60317, + "name": "Dead In the Water", + "site_detail_url": "https://comicvine.gamespot.com/dead-in-the-water/4045-60317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60318/", + "id": 60318, + "name": "The God Who Fell To Earth.", + "site_detail_url": "https://comicvine.gamespot.com/the-god-who-fell-to-earth/4045-60318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60324/", + "id": 60324, + "name": "Faithless", + "site_detail_url": "https://comicvine.gamespot.com/faithless/4045-60324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60325/", + "id": 60325, + "name": "House of X", + "site_detail_url": "https://comicvine.gamespot.com/house-of-x/4045-60325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60326/", + "id": 60326, + "name": "The Sacred and the Profane", + "site_detail_url": "https://comicvine.gamespot.com/the-sacred-and-the-profane/4045-60326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60329/", + "id": 60329, + "name": "Challenge of the Ghost Riders", + "site_detail_url": "https://comicvine.gamespot.com/challenge-of-the-ghost-riders/4045-60329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60332/", + "id": 60332, + "name": "Absolute Carnage", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage/4045-60332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60337/", + "id": 60337, + "name": "Who Run the World?", + "site_detail_url": "https://comicvine.gamespot.com/who-run-the-world/4045-60337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60338/", + "id": 60338, + "name": "The Prodigal Sun", + "site_detail_url": "https://comicvine.gamespot.com/the-prodigal-sun/4045-60338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60340/", + "id": 60340, + "name": "The Fear Eaters", + "site_detail_url": "https://comicvine.gamespot.com/the-fear-eaters/4045-60340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60349/", + "id": 60349, + "name": "The Legend of Steve", + "site_detail_url": "https://comicvine.gamespot.com/the-legend-of-steve/4045-60349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60350/", + "id": 60350, + "name": "Ms. Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/ms-fantastic/4045-60350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60357/", + "id": 60357, + "name": "Point of Origin", + "site_detail_url": "https://comicvine.gamespot.com/point-of-origin/4045-60357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60365/", + "id": 60365, + "name": "Yancy St. Shuffle", + "site_detail_url": "https://comicvine.gamespot.com/yancy-st-shuffle/4045-60365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60366/", + "id": 60366, + "name": "Through Hell", + "site_detail_url": "https://comicvine.gamespot.com/through-hell/4045-60366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60368/", + "id": 60368, + "name": "Eye of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/eye-of-the-storm/4045-60368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60369/", + "id": 60369, + "name": "The Ultron Agenda", + "site_detail_url": "https://comicvine.gamespot.com/the-ultron-agenda/4045-60369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60381/", + "id": 60381, + "name": "Canon Fodder", + "site_detail_url": "https://comicvine.gamespot.com/canon-fodder/4045-60381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60382/", + "id": 60382, + "name": "A Rogue's End", + "site_detail_url": "https://comicvine.gamespot.com/a-rogues-end/4045-60382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60412/", + "id": 60412, + "name": "Dark Cavern, Dark Crystal", + "site_detail_url": "https://comicvine.gamespot.com/dark-cavern-dark-crystal/4045-60412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60413/", + "id": 60413, + "name": "2099", + "site_detail_url": "https://comicvine.gamespot.com/2099/4045-60413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60414/", + "id": 60414, + "name": "The Last Avenger", + "site_detail_url": "https://comicvine.gamespot.com/the-last-avenger/4045-60414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60431/", + "id": 60431, + "name": "Annihilation: Scourge", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge/4045-60431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60435/", + "id": 60435, + "name": "Strange Aeons", + "site_detail_url": "https://comicvine.gamespot.com/strange-aeons/4045-60435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60438/", + "id": 60438, + "name": "Wakanda Unbound", + "site_detail_url": "https://comicvine.gamespot.com/wakanda-unbound/4045-60438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60440/", + "id": 60440, + "name": "Venom Island", + "site_detail_url": "https://comicvine.gamespot.com/venom-island/4045-60440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60445/", + "id": 60445, + "name": "Egregious Autonomous", + "site_detail_url": "https://comicvine.gamespot.com/egregious-autonomous/4045-60445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60446/", + "id": 60446, + "name": "The Destiny Path", + "site_detail_url": "https://comicvine.gamespot.com/the-destiny-path/4045-60446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60447/", + "id": 60447, + "name": "The Devourer King", + "site_detail_url": "https://comicvine.gamespot.com/the-devourer-king/4045-60447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60453/", + "id": 60453, + "name": "Ruins of Ravencroft", + "site_detail_url": "https://comicvine.gamespot.com/ruins-of-ravencroft/4045-60453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60455/", + "id": 60455, + "name": "Iron Man 2020", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020/4045-60455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60461/", + "id": 60461, + "name": "Breaking News", + "site_detail_url": "https://comicvine.gamespot.com/breaking-news/4045-60461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60494/", + "id": 60494, + "name": "Sleight of Hand", + "site_detail_url": "https://comicvine.gamespot.com/sleight-of-hand/4045-60494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60495/", + "id": 60495, + "name": "Dark Heart of the Sith", + "site_detail_url": "https://comicvine.gamespot.com/dark-heart-of-the-sith/4045-60495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60506/", + "id": 60506, + "name": "Into the Crucible", + "site_detail_url": "https://comicvine.gamespot.com/into-the-crucible/4045-60506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60507/", + "id": 60507, + "name": "At the End of All Things", + "site_detail_url": "https://comicvine.gamespot.com/at-the-end-of-all-things/4045-60507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60515/", + "id": 60515, + "name": "Hearts of Darkness II", + "site_detail_url": "https://comicvine.gamespot.com/hearts-of-darkness-ii/4045-60515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60521/", + "id": 60521, + "name": "Legion of Foom", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-foom/4045-60521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60522/", + "id": 60522, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4045-60522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60523/", + "id": 60523, + "name": "The Unspeakable and the Uneatable", + "site_detail_url": "https://comicvine.gamespot.com/the-unspeakable-and-the-uneatable/4045-60523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60531/", + "id": 60531, + "name": "All Die Young", + "site_detail_url": "https://comicvine.gamespot.com/all-die-young/4045-60531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60533/", + "id": 60533, + "name": "Empyre", + "site_detail_url": "https://comicvine.gamespot.com/empyre/4045-60533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60582/", + "id": 60582, + "name": "The Age of Khonshu", + "site_detail_url": "https://comicvine.gamespot.com/the-age-of-khonshu/4045-60582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60585/", + "id": 60585, + "name": "Suffer the Children", + "site_detail_url": "https://comicvine.gamespot.com/suffer-the-children/4045-60585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60587/", + "id": 60587, + "name": "Outlawed", + "site_detail_url": "https://comicvine.gamespot.com/outlawed/4045-60587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60613/", + "id": 60613, + "name": "Truth/Dare", + "site_detail_url": "https://comicvine.gamespot.com/truthdare/4045-60613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60615/", + "id": 60615, + "name": "Sins Rising", + "site_detail_url": "https://comicvine.gamespot.com/sins-rising/4045-60615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60616/", + "id": 60616, + "name": "Accused", + "site_detail_url": "https://comicvine.gamespot.com/accused/4045-60616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60635/", + "id": 60635, + "name": "Venom Beyond", + "site_detail_url": "https://comicvine.gamespot.com/venom-beyond/4045-60635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60640/", + "id": 60640, + "name": "Path To X of Swords", + "site_detail_url": "https://comicvine.gamespot.com/path-to-x-of-swords/4045-60640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60649/", + "id": 60649, + "name": "X of Swords Prelude", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords-prelude/4045-60649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60650/", + "id": 60650, + "name": "Hammerfall", + "site_detail_url": "https://comicvine.gamespot.com/hammerfall/4045-60650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60653/", + "id": 60653, + "name": "X of Swords", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords/4045-60653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60667/", + "id": 60667, + "name": "Last Remains", + "site_detail_url": "https://comicvine.gamespot.com/last-remains/4045-60667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60668/", + "id": 60668, + "name": "The New World", + "site_detail_url": "https://comicvine.gamespot.com/the-new-world/4045-60668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60669/", + "id": 60669, + "name": "Into the Fire", + "site_detail_url": "https://comicvine.gamespot.com/into-the-fire/4045-60669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60684/", + "id": 60684, + "name": "Fallen Order", + "site_detail_url": "https://comicvine.gamespot.com/fallen-order/4045-60684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60685/", + "id": 60685, + "name": "Prey", + "site_detail_url": "https://comicvine.gamespot.com/prey/4045-60685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60688/", + "id": 60688, + "name": "Target Valance", + "site_detail_url": "https://comicvine.gamespot.com/target-valance/4045-60688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60689/", + "id": 60689, + "name": "Galaxy's Deadliest", + "site_detail_url": "https://comicvine.gamespot.com/galaxys-deadliest/4045-60689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60691/", + "id": 60691, + "name": "Fortune and Fate", + "site_detail_url": "https://comicvine.gamespot.com/fortune-and-fate/4045-60691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60692/", + "id": 60692, + "name": "The Engine Job", + "site_detail_url": "https://comicvine.gamespot.com/the-engine-job/4045-60692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60697/", + "id": 60697, + "name": "The Red Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-red-fist/4045-60697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60701/", + "id": 60701, + "name": "Curse of the Nightstar", + "site_detail_url": "https://comicvine.gamespot.com/curse-of-the-nightstar/4045-60701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60702/", + "id": 60702, + "name": "Operation Starlight", + "site_detail_url": "https://comicvine.gamespot.com/operation-starlight/4045-60702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60703/", + "id": 60703, + "name": "Enter the Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/enter-the-phoenix/4045-60703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60716/", + "id": 60716, + "name": "Last Remains Post-Mortem", + "site_detail_url": "https://comicvine.gamespot.com/last-remains-post-mortem/4045-60716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60717/", + "id": 60717, + "name": "Only Death Is Eternal", + "site_detail_url": "https://comicvine.gamespot.com/only-death-is-eternal/4045-60717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60725/", + "id": 60725, + "name": "Negative Space", + "site_detail_url": "https://comicvine.gamespot.com/negative-space/4045-60725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60726/", + "id": 60726, + "name": "The Black Kitchen", + "site_detail_url": "https://comicvine.gamespot.com/the-black-kitchen/4045-60726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60729/", + "id": 60729, + "name": "Come Away With Me", + "site_detail_url": "https://comicvine.gamespot.com/come-away-with-me/4045-60729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60732/", + "id": 60732, + "name": "The Ties That Bind", + "site_detail_url": "https://comicvine.gamespot.com/the-ties-that-bind/4045-60732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60741/", + "id": 60741, + "name": "Funny Games", + "site_detail_url": "https://comicvine.gamespot.com/funny-games/4045-60741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60745/", + "id": 60745, + "name": "Land of the Lotus", + "site_detail_url": "https://comicvine.gamespot.com/land-of-the-lotus/4045-60745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60755/", + "id": 60755, + "name": "Curse of the Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/curse-of-the-man-thing/4045-60755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60760/", + "id": 60760, + "name": "King's Ransom", + "site_detail_url": "https://comicvine.gamespot.com/kings-ransom/4045-60760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60763/", + "id": 60763, + "name": "The Gilded City", + "site_detail_url": "https://comicvine.gamespot.com/the-gilded-city/4045-60763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60764/", + "id": 60764, + "name": "Doing Time", + "site_detail_url": "https://comicvine.gamespot.com/doing-time/4045-60764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60768/", + "id": 60768, + "name": "Strange Magic", + "site_detail_url": "https://comicvine.gamespot.com/strange-magic/4045-60768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60769/", + "id": 60769, + "name": "Killer App", + "site_detail_url": "https://comicvine.gamespot.com/killer-app/4045-60769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60780/", + "id": 60780, + "name": "War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-bounty-hunters/4045-60780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60781/", + "id": 60781, + "name": "War of the Bounty Hunters Prelude", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-bounty-hunters-prelude/4045-60781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60782/", + "id": 60782, + "name": "Heroes Reborn", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn/4045-60782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60786/", + "id": 60786, + "name": "Bride of Doom", + "site_detail_url": "https://comicvine.gamespot.com/bride-of-doom/4045-60786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60790/", + "id": 60790, + "name": "I Am the Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/i-am-the-black-widow/4045-60790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60802/", + "id": 60802, + "name": "Hellfire Gala", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-gala/4045-60802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60803/", + "id": 60803, + "name": "Chameleon Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/chameleon-conspiracy/4045-60803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60804/", + "id": 60804, + "name": "Infinite Destinies", + "site_detail_url": "https://comicvine.gamespot.com/infinite-destinies/4045-60804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60805/", + "id": 60805, + "name": "Infinite Fury", + "site_detail_url": "https://comicvine.gamespot.com/infinite-fury/4045-60805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60814/", + "id": 60814, + "name": "Demon Days", + "site_detail_url": "https://comicvine.gamespot.com/demon-days/4045-60814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60815/", + "id": 60815, + "name": "The Yashida Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-yashida-saga/4045-60815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60816/", + "id": 60816, + "name": "The Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-saga/4045-60816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60826/", + "id": 60826, + "name": "There Is No Fear", + "site_detail_url": "https://comicvine.gamespot.com/there-is-no-fear/4045-60826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60827/", + "id": 60827, + "name": "Heart of the Drengir", + "site_detail_url": "https://comicvine.gamespot.com/heart-of-the-drengir/4045-60827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60828/", + "id": 60828, + "name": "Lockdown", + "site_detail_url": "https://comicvine.gamespot.com/lockdown/4045-60828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60836/", + "id": 60836, + "name": "Don't Look Back", + "site_detail_url": "https://comicvine.gamespot.com/dont-look-back/4045-60836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60837/", + "id": 60837, + "name": "Fearless", + "site_detail_url": "https://comicvine.gamespot.com/fearless/4045-60837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60838/", + "id": 60838, + "name": "Sinister War", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war/4045-60838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60839/", + "id": 60839, + "name": "World War She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/world-war-she-hulk/4045-60839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60840/", + "id": 60840, + "name": "Extreme Carnage", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage/4045-60840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60846/", + "id": 60846, + "name": "Revelations", + "site_detail_url": "https://comicvine.gamespot.com/revelations/4045-60846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60848/", + "id": 60848, + "name": "The Last Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/the-last-annihilation/4045-60848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60852/", + "id": 60852, + "name": "Infinity Score", + "site_detail_url": "https://comicvine.gamespot.com/infinity-score/4045-60852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60862/", + "id": 60862, + "name": "The Shadow of the Nihil", + "site_detail_url": "https://comicvine.gamespot.com/the-shadow-of-the-nihil/4045-60862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60863/", + "id": 60863, + "name": "The Last of the Marvels", + "site_detail_url": "https://comicvine.gamespot.com/the-last-of-the-marvels/4045-60863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60868/", + "id": 60868, + "name": "The Defilement of All Things By the Cannibal-Sorcerer Kulan Gath", + "site_detail_url": "https://comicvine.gamespot.com/the-defilement-of-all-things-by-the-cannibal-sorce/4045-60868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60873/", + "id": 60873, + "name": "Revival", + "site_detail_url": "https://comicvine.gamespot.com/revival/4045-60873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60874/", + "id": 60874, + "name": "The Death of Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-doctor-strange/4045-60874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60878/", + "id": 60878, + "name": "Darkhold", + "site_detail_url": "https://comicvine.gamespot.com/darkhold/4045-60878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60879/", + "id": 60879, + "name": "The Secret Lives of Savages", + "site_detail_url": "https://comicvine.gamespot.com/the-secret-lives-of-savages/4045-60879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60882/", + "id": 60882, + "name": "Beyond", + "site_detail_url": "https://comicvine.gamespot.com/beyond/4045-60882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60893/", + "id": 60893, + "name": "Die By the Blade", + "site_detail_url": "https://comicvine.gamespot.com/die-by-the-blade/4045-60893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60913/", + "id": 60913, + "name": "Devil's Reign ", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign/4045-60913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60914/", + "id": 60914, + "name": "Crimson Reign", + "site_detail_url": "https://comicvine.gamespot.com/crimson-reign/4045-60914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60954/", + "id": 60954, + "name": "Exodus", + "site_detail_url": "https://comicvine.gamespot.com/exodus/4045-60954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60971/", + "id": 60971, + "name": "Blood and Monsters", + "site_detail_url": "https://comicvine.gamespot.com/blood-and-monsters/4045-60971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60977/", + "id": 60977, + "name": "The Killing Time", + "site_detail_url": "https://comicvine.gamespot.com/the-killing-time/4045-60977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60978/", + "id": 60978, + "name": "A.X.E.: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/axe-judgment-day/4045-60978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60983/", + "id": 60983, + "name": "Reign of X", + "site_detail_url": "https://comicvine.gamespot.com/reign-of-x/4045-60983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60984/", + "id": 60984, + "name": "Destiny of X", + "site_detail_url": "https://comicvine.gamespot.com/destiny-of-x/4045-60984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-61017/", + "id": 61017, + "name": "End of the Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/end-of-the-spider-verse/4045-61017/" + } + ], + "teams": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-1800/", + "id": 1800, + "name": "The Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-hand/4060-1800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-2171/", + "id": 2171, + "name": "Thunderiders", + "site_detail_url": "https://comicvine.gamespot.com/thunderiders/4060-2171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-2508/", + "id": 2508, + "name": "Ani-Men", + "site_detail_url": "https://comicvine.gamespot.com/ani-men/4060-2508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3173/", + "id": 3173, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4060-3173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3191/", + "id": 3191, + "name": "Morlocks", + "site_detail_url": "https://comicvine.gamespot.com/morlocks/4060-3191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3199/", + "id": 3199, + "name": "Hellions", + "site_detail_url": "https://comicvine.gamespot.com/hellions/4060-3199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3238/", + "id": 3238, + "name": "U-Foes", + "site_detail_url": "https://comicvine.gamespot.com/u-foes/4060-3238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3266/", + "id": 3266, + "name": "D.P.7", + "site_detail_url": "https://comicvine.gamespot.com/dp7/4060-3266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3480/", + "id": 3480, + "name": "HYDRA", + "site_detail_url": "https://comicvine.gamespot.com/hydra/4060-3480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3775/", + "id": 3775, + "name": "S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/shield/4060-3775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3804/", + "id": 3804, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4060-3804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3806/", + "id": 3806, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4060-3806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-4101/", + "id": 4101, + "name": "Shogun Warriors", + "site_detail_url": "https://comicvine.gamespot.com/shogun-warriors/4060-4101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-4296/", + "id": 4296, + "name": "Sentinels", + "site_detail_url": "https://comicvine.gamespot.com/sentinels/4060-4296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-4443/", + "id": 4443, + "name": "Stepford Cuckoos", + "site_detail_url": "https://comicvine.gamespot.com/stepford-cuckoos/4060-4443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-4951/", + "id": 4951, + "name": "Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/damage-control/4060-4951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-4987/", + "id": 4987, + "name": "Brood", + "site_detail_url": "https://comicvine.gamespot.com/brood/4060-4987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-5018/", + "id": 5018, + "name": "Weapon X Program", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-program/4060-5018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-6097/", + "id": 6097, + "name": "Imperial Guard", + "site_detail_url": "https://comicvine.gamespot.com/imperial-guard/4060-6097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-6331/", + "id": 6331, + "name": "Ewoks", + "site_detail_url": "https://comicvine.gamespot.com/ewoks/4060-6331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-6796/", + "id": 6796, + "name": "Bacchae", + "site_detail_url": "https://comicvine.gamespot.com/bacchae/4060-6796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7115/", + "id": 7115, + "name": "Cabal of Scrier", + "site_detail_url": "https://comicvine.gamespot.com/cabal-of-scrier/4060-7115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7582/", + "id": 7582, + "name": "Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/masters-of-evil/4060-7582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7588/", + "id": 7588, + "name": "Kree", + "site_detail_url": "https://comicvine.gamespot.com/kree/4060-7588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7903/", + "id": 7903, + "name": "Assassins Guild", + "site_detail_url": "https://comicvine.gamespot.com/assassins-guild/4060-7903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7906/", + "id": 7906, + "name": "Fallen Angels", + "site_detail_url": "https://comicvine.gamespot.com/fallen-angels/4060-7906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-7972/", + "id": 7972, + "name": "Dark Guard", + "site_detail_url": "https://comicvine.gamespot.com/dark-guard/4060-7972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-9483/", + "id": 9483, + "name": "Code: Blue", + "site_detail_url": "https://comicvine.gamespot.com/code-blue/4060-9483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-9726/", + "id": 9726, + "name": "Reavers", + "site_detail_url": "https://comicvine.gamespot.com/reavers/4060-9726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-9727/", + "id": 9727, + "name": "Upstarts", + "site_detail_url": "https://comicvine.gamespot.com/upstarts/4060-9727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-9730/", + "id": 9730, + "name": "Acolytes", + "site_detail_url": "https://comicvine.gamespot.com/acolytes/4060-9730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-10977/", + "id": 10977, + "name": "Iron Avengers", + "site_detail_url": "https://comicvine.gamespot.com/iron-avengers/4060-10977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11427/", + "id": 11427, + "name": "Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/inhumans/4060-11427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11439/", + "id": 11439, + "name": "Frightful Four", + "site_detail_url": "https://comicvine.gamespot.com/frightful-four/4060-11439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11482/", + "id": 11482, + "name": "O-Force", + "site_detail_url": "https://comicvine.gamespot.com/o-force/4060-11482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11485/", + "id": 11485, + "name": "X-Statix", + "site_detail_url": "https://comicvine.gamespot.com/x-statix/4060-11485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11523/", + "id": 11523, + "name": "The Watchers", + "site_detail_url": "https://comicvine.gamespot.com/the-watchers/4060-11523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11879/", + "id": 11879, + "name": "Wild Pack", + "site_detail_url": "https://comicvine.gamespot.com/wild-pack/4060-11879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-11896/", + "id": 11896, + "name": "New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors/4060-11896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13340/", + "id": 13340, + "name": "Externals", + "site_detail_url": "https://comicvine.gamespot.com/externals/4060-13340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13343/", + "id": 13343, + "name": "Celestials", + "site_detail_url": "https://comicvine.gamespot.com/celestials/4060-13343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13344/", + "id": 13344, + "name": "Eternals", + "site_detail_url": "https://comicvine.gamespot.com/eternals/4060-13344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13345/", + "id": 13345, + "name": "Deviants", + "site_detail_url": "https://comicvine.gamespot.com/deviants/4060-13345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13357/", + "id": 13357, + "name": "Hellfire Club", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-club/4060-13357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13407/", + "id": 13407, + "name": "Atlanteans", + "site_detail_url": "https://comicvine.gamespot.com/atlanteans/4060-13407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13497/", + "id": 13497, + "name": "A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/aim/4060-13497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13918/", + "id": 13918, + "name": "Rigellians", + "site_detail_url": "https://comicvine.gamespot.com/rigellians/4060-13918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13930/", + "id": 13930, + "name": "Ovoids", + "site_detail_url": "https://comicvine.gamespot.com/ovoids/4060-13930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13937/", + "id": 13937, + "name": "Brotherhood of the Wellspring", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-the-wellspring/4060-13937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13953/", + "id": 13953, + "name": "Megans", + "site_detail_url": "https://comicvine.gamespot.com/megans/4060-13953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-13986/", + "id": 13986, + "name": "Kronans", + "site_detail_url": "https://comicvine.gamespot.com/kronans/4060-13986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14015/", + "id": 14015, + "name": "Dire Wraiths", + "site_detail_url": "https://comicvine.gamespot.com/dire-wraiths/4060-14015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14245/", + "id": 14245, + "name": "Force Works", + "site_detail_url": "https://comicvine.gamespot.com/force-works/4060-14245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14616/", + "id": 14616, + "name": "Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight/4060-14616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14693/", + "id": 14693, + "name": "Technet", + "site_detail_url": "https://comicvine.gamespot.com/technet/4060-14693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14778/", + "id": 14778, + "name": "Knights of Pendragon", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-pendragon/4060-14778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14821/", + "id": 14821, + "name": "Crazy Gang", + "site_detail_url": "https://comicvine.gamespot.com/crazy-gang/4060-14821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14851/", + "id": 14851, + "name": "Black Air", + "site_detail_url": "https://comicvine.gamespot.com/black-air/4060-14851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14864/", + "id": 14864, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4060-14864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14871/", + "id": 14871, + "name": "Starjammers", + "site_detail_url": "https://comicvine.gamespot.com/starjammers/4060-14871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14915/", + "id": 14915, + "name": "Purifiers", + "site_detail_url": "https://comicvine.gamespot.com/purifiers/4060-14915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-14999/", + "id": 14999, + "name": "Hellfire Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-soldiers/4060-14999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15025/", + "id": 15025, + "name": "The Goth", + "site_detail_url": "https://comicvine.gamespot.com/the-goth/4060-15025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15083/", + "id": 15083, + "name": "Generation X", + "site_detail_url": "https://comicvine.gamespot.com/generation-x/4060-15083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15136/", + "id": 15136, + "name": "Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire/4060-15136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15150/", + "id": 15150, + "name": "Nasty Boys", + "site_detail_url": "https://comicvine.gamespot.com/nasty-boys/4060-15150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15344/", + "id": 15344, + "name": "New Men", + "site_detail_url": "https://comicvine.gamespot.com/new-men/4060-15344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15347/", + "id": 15347, + "name": "Gene Nation", + "site_detail_url": "https://comicvine.gamespot.com/gene-nation/4060-15347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15409/", + "id": 15409, + "name": "Factor Three", + "site_detail_url": "https://comicvine.gamespot.com/factor-three/4060-15409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15411/", + "id": 15411, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies/4060-15411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15521/", + "id": 15521, + "name": "People's Defense Force", + "site_detail_url": "https://comicvine.gamespot.com/people-s-defense-force/4060-15521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15595/", + "id": 15595, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4060-15595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15625/", + "id": 15625, + "name": "Great Beasts", + "site_detail_url": "https://comicvine.gamespot.com/great-beasts/4060-15625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15929/", + "id": 15929, + "name": "Wolfpack", + "site_detail_url": "https://comicvine.gamespot.com/wolfpack/4060-15929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-15971/", + "id": 15971, + "name": "New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants/4060-15971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-17647/", + "id": 17647, + "name": "A-Next", + "site_detail_url": "https://comicvine.gamespot.com/a-next/4060-17647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-17652/", + "id": 17652, + "name": "Brotherhood of Evil Mutants", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-evil-mutants/4060-17652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-17793/", + "id": 17793, + "name": "Headmen", + "site_detail_url": "https://comicvine.gamespot.com/headmen/4060-17793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-17900/", + "id": 17900, + "name": "Next Avengers", + "site_detail_url": "https://comicvine.gamespot.com/next-avengers/4060-17900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18424/", + "id": 18424, + "name": "Fantastic Five", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-five/4060-18424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18461/", + "id": 18461, + "name": "Psi-Force", + "site_detail_url": "https://comicvine.gamespot.com/psi-force/4060-18461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18464/", + "id": 18464, + "name": "Medusa Web", + "site_detail_url": "https://comicvine.gamespot.com/medusa-web/4060-18464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18519/", + "id": 18519, + "name": "Wrecking Crew", + "site_detail_url": "https://comicvine.gamespot.com/wrecking-crew/4060-18519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-18869/", + "id": 18869, + "name": "Fantastic Force", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-force/4060-18869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-19986/", + "id": 19986, + "name": "Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles/4060-19986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-20605/", + "id": 20605, + "name": "Pantheon", + "site_detail_url": "https://comicvine.gamespot.com/pantheon/4060-20605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-21778/", + "id": 21778, + "name": "Thieves Guild", + "site_detail_url": "https://comicvine.gamespot.com/thieves-guild/4060-21778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-22537/", + "id": 22537, + "name": "Winter Guard", + "site_detail_url": "https://comicvine.gamespot.com/winter-guard/4060-22537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-22646/", + "id": 22646, + "name": "V-Battalion", + "site_detail_url": "https://comicvine.gamespot.com/v-battalion/4060-22646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-22907/", + "id": 22907, + "name": "Badoon", + "site_detail_url": "https://comicvine.gamespot.com/badoon/4060-22907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-22911/", + "id": 22911, + "name": "The Jury", + "site_detail_url": "https://comicvine.gamespot.com/the-jury/4060-22911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23018/", + "id": 23018, + "name": "Sons Of The Tiger", + "site_detail_url": "https://comicvine.gamespot.com/sons-of-the-tiger/4060-23018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23019/", + "id": 23019, + "name": "X-People", + "site_detail_url": "https://comicvine.gamespot.com/x-people/4060-23019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23035/", + "id": 23035, + "name": "Circus of Crime", + "site_detail_url": "https://comicvine.gamespot.com/circus-of-crime/4060-23035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23162/", + "id": 23162, + "name": "Dark Gods", + "site_detail_url": "https://comicvine.gamespot.com/dark-gods/4060-23162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23438/", + "id": 23438, + "name": "Captain Britain Corps", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-corps/4060-23438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23588/", + "id": 23588, + "name": "Heroes For Hire", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire/4060-23588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23977/", + "id": 23977, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4060-23977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-23989/", + "id": 23989, + "name": "Great Lakes Avengers", + "site_detail_url": "https://comicvine.gamespot.com/great-lakes-avengers/4060-23989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-24131/", + "id": 24131, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor/4060-24131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-24132/", + "id": 24132, + "name": "Freedom Force", + "site_detail_url": "https://comicvine.gamespot.com/freedom-force/4060-24132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-24273/", + "id": 24273, + "name": "Sons of The Serpent", + "site_detail_url": "https://comicvine.gamespot.com/sons-of-the-serpent/4060-24273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-25418/", + "id": 25418, + "name": "Genoshan Magistrates", + "site_detail_url": "https://comicvine.gamespot.com/genoshan-magistrates/4060-25418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-25427/", + "id": 25427, + "name": "Hulkbusters", + "site_detail_url": "https://comicvine.gamespot.com/hulkbusters/4060-25427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-25623/", + "id": 25623, + "name": "Infinity Watch", + "site_detail_url": "https://comicvine.gamespot.com/infinity-watch/4060-25623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-25865/", + "id": 25865, + "name": "Invaders", + "site_detail_url": "https://comicvine.gamespot.com/invaders/4060-25865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-25956/", + "id": 25956, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4060-25956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26082/", + "id": 26082, + "name": "Maggia", + "site_detail_url": "https://comicvine.gamespot.com/maggia/4060-26082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26333/", + "id": 26333, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4060-26333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26568/", + "id": 26568, + "name": "Soviet Super Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/soviet-super-soldiers/4060-26568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26574/", + "id": 26574, + "name": "Midnight Sons", + "site_detail_url": "https://comicvine.gamespot.com/midnight-sons/4060-26574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26662/", + "id": 26662, + "name": "Lilin", + "site_detail_url": "https://comicvine.gamespot.com/lilin/4060-26662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26875/", + "id": 26875, + "name": "Daughters of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-the-dragon/4060-26875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-26989/", + "id": 26989, + "name": "Sisterhood of Mutants", + "site_detail_url": "https://comicvine.gamespot.com/sisterhood-of-mutants/4060-26989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-27218/", + "id": 27218, + "name": "Vishanti", + "site_detail_url": "https://comicvine.gamespot.com/vishanti/4060-27218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-27232/", + "id": 27232, + "name": "Riot Squad", + "site_detail_url": "https://comicvine.gamespot.com/riot-squad/4060-27232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-27233/", + "id": 27233, + "name": "The Darkholders", + "site_detail_url": "https://comicvine.gamespot.com/the-darkholders/4060-27233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-27634/", + "id": 27634, + "name": "Time Variance Authority", + "site_detail_url": "https://comicvine.gamespot.com/time-variance-authority/4060-27634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-28159/", + "id": 28159, + "name": "Fear Lords", + "site_detail_url": "https://comicvine.gamespot.com/fear-lords/4060-28159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-28349/", + "id": 28349, + "name": "Mutant Liberation Front", + "site_detail_url": "https://comicvine.gamespot.com/mutant-liberation-front/4060-28349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-28478/", + "id": 28478, + "name": "Femme Fatales", + "site_detail_url": "https://comicvine.gamespot.com/femme-fatales/4060-28478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-28980/", + "id": 28980, + "name": "Serpent Society", + "site_detail_url": "https://comicvine.gamespot.com/serpent-society/4060-28980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-29075/", + "id": 29075, + "name": "Avengers West Coast", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast/4060-29075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-29919/", + "id": 29919, + "name": "Gatherers", + "site_detail_url": "https://comicvine.gamespot.com/gatherers/4060-29919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-31159/", + "id": 31159, + "name": "Omega Flight", + "site_detail_url": "https://comicvine.gamespot.com/omega-flight/4060-31159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-31912/", + "id": 31912, + "name": "Limbo Demons", + "site_detail_url": "https://comicvine.gamespot.com/limbo-demons/4060-31912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-32019/", + "id": 32019, + "name": "Brand Corporation", + "site_detail_url": "https://comicvine.gamespot.com/brand-corporation/4060-32019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-32265/", + "id": 32265, + "name": "Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/enforcers/4060-32265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-32653/", + "id": 32653, + "name": "Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/howling-commandos/4060-32653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-32859/", + "id": 32859, + "name": "Guardians", + "site_detail_url": "https://comicvine.gamespot.com/guardians/4060-32859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-33065/", + "id": 33065, + "name": "Champions Of Xandar", + "site_detail_url": "https://comicvine.gamespot.com/champions-of-xandar/4060-33065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-33600/", + "id": 33600, + "name": "Warriors Three", + "site_detail_url": "https://comicvine.gamespot.com/warriors-three/4060-33600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-33962/", + "id": 33962, + "name": "Dragon Circle", + "site_detail_url": "https://comicvine.gamespot.com/dragon-circle/4060-33962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-36425/", + "id": 36425, + "name": "Witches", + "site_detail_url": "https://comicvine.gamespot.com/witches/4060-36425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-36925/", + "id": 36925, + "name": "Lemurians", + "site_detail_url": "https://comicvine.gamespot.com/lemurians/4060-36925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40413/", + "id": 40413, + "name": "Champions", + "site_detail_url": "https://comicvine.gamespot.com/champions/4060-40413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40418/", + "id": 40418, + "name": "X-Terminators", + "site_detail_url": "https://comicvine.gamespot.com/x-terminators/4060-40418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40421/", + "id": 40421, + "name": "Illuminati", + "site_detail_url": "https://comicvine.gamespot.com/illuminati/4060-40421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40423/", + "id": 40423, + "name": "Horsemen of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/horsemen-of-apocalypse/4060-40423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40425/", + "id": 40425, + "name": "X-Corporation", + "site_detail_url": "https://comicvine.gamespot.com/x-corporation/4060-40425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40426/", + "id": 40426, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4060-40426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40427/", + "id": 40427, + "name": "Marvel Knights", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights/4060-40427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40428/", + "id": 40428, + "name": "Thor Corps", + "site_detail_url": "https://comicvine.gamespot.com/thor-corps/4060-40428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40429/", + "id": 40429, + "name": "Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/sinister-six/4060-40429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40440/", + "id": 40440, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4060-40440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40462/", + "id": 40462, + "name": "Heralds of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/heralds-of-galactus/4060-40462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40473/", + "id": 40473, + "name": "Xavier Institute", + "site_detail_url": "https://comicvine.gamespot.com/xavier-institute/4060-40473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40477/", + "id": 40477, + "name": "Sinister Syndicate", + "site_detail_url": "https://comicvine.gamespot.com/sinister-syndicate/4060-40477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40478/", + "id": 40478, + "name": "Nextwave", + "site_detail_url": "https://comicvine.gamespot.com/nextwave/4060-40478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40479/", + "id": 40479, + "name": "Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme/4060-40479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40480/", + "id": 40480, + "name": "Marauders", + "site_detail_url": "https://comicvine.gamespot.com/marauders/4060-40480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40482/", + "id": 40482, + "name": "Nova Corps", + "site_detail_url": "https://comicvine.gamespot.com/nova-corps/4060-40482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40484/", + "id": 40484, + "name": "Big Hero 6", + "site_detail_url": "https://comicvine.gamespot.com/big-hero-6/4060-40484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40498/", + "id": 40498, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4060-40498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40504/", + "id": 40504, + "name": "Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/ultimates/4060-40504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40515/", + "id": 40515, + "name": "Young Allies", + "site_detail_url": "https://comicvine.gamespot.com/young-allies/4060-40515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40523/", + "id": 40523, + "name": "Nightstalkers", + "site_detail_url": "https://comicvine.gamespot.com/nightstalkers/4060-40523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40546/", + "id": 40546, + "name": "X.S.E.", + "site_detail_url": "https://comicvine.gamespot.com/xse/4060-40546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40549/", + "id": 40549, + "name": "Agency X", + "site_detail_url": "https://comicvine.gamespot.com/agency-x/4060-40549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40563/", + "id": 40563, + "name": "Friends of Humanity", + "site_detail_url": "https://comicvine.gamespot.com/friends-of-humanity/4060-40563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40565/", + "id": 40565, + "name": "Star Masters", + "site_detail_url": "https://comicvine.gamespot.com/star-masters/4060-40565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40585/", + "id": 40585, + "name": "Omega Gang", + "site_detail_url": "https://comicvine.gamespot.com/omega-gang/4060-40585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40591/", + "id": 40591, + "name": "Weapon Plus", + "site_detail_url": "https://comicvine.gamespot.com/weapon-plus/4060-40591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40592/", + "id": 40592, + "name": "The 198", + "site_detail_url": "https://comicvine.gamespot.com/the-198/4060-40592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40606/", + "id": 40606, + "name": "Loners", + "site_detail_url": "https://comicvine.gamespot.com/loners/4060-40606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40646/", + "id": 40646, + "name": "Timebreakers", + "site_detail_url": "https://comicvine.gamespot.com/timebreakers/4060-40646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40667/", + "id": 40667, + "name": "O*N*E", + "site_detail_url": "https://comicvine.gamespot.com/one/4060-40667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40668/", + "id": 40668, + "name": "Skrulls", + "site_detail_url": "https://comicvine.gamespot.com/skrulls/4060-40668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40675/", + "id": 40675, + "name": "League of Losers", + "site_detail_url": "https://comicvine.gamespot.com/league-of-losers/4060-40675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40758/", + "id": 40758, + "name": "Corporation", + "site_detail_url": "https://comicvine.gamespot.com/corporation/4060-40758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40788/", + "id": 40788, + "name": "Life Foundation", + "site_detail_url": "https://comicvine.gamespot.com/life-foundation/4060-40788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40822/", + "id": 40822, + "name": "Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle/4060-40822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40826/", + "id": 40826, + "name": "Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six/4060-40826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40860/", + "id": 40860, + "name": "X-Corps", + "site_detail_url": "https://comicvine.gamespot.com/x-corps/4060-40860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40890/", + "id": 40890, + "name": "Pride", + "site_detail_url": "https://comicvine.gamespot.com/pride/4060-40890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40904/", + "id": 40904, + "name": "Secret Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers/4060-40904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40959/", + "id": 40959, + "name": "Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas/4060-40959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40960/", + "id": 40960, + "name": "Femizons", + "site_detail_url": "https://comicvine.gamespot.com/femizons/4060-40960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40961/", + "id": 40961, + "name": "B.A.D. Girls Inc.", + "site_detail_url": "https://comicvine.gamespot.com/bad-girls-inc/4060-40961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40981/", + "id": 40981, + "name": "The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve/4060-40981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41013/", + "id": 41013, + "name": "Infinites", + "site_detail_url": "https://comicvine.gamespot.com/infinites/4060-41013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41032/", + "id": 41032, + "name": "Weapon P.R.I.M.E.", + "site_detail_url": "https://comicvine.gamespot.com/weapon-prime/4060-41032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41074/", + "id": 41074, + "name": "Dark Riders", + "site_detail_url": "https://comicvine.gamespot.com/dark-riders/4060-41074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41142/", + "id": 41142, + "name": "Elders of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/elders-of-the-universe/4060-41142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41156/", + "id": 41156, + "name": "Young Gods", + "site_detail_url": "https://comicvine.gamespot.com/young-gods/4060-41156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41159/", + "id": 41159, + "name": "X-Treme Sanctions Executive", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-sanctions-executive/4060-41159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41170/", + "id": 41170, + "name": "Zodiac", + "site_detail_url": "https://comicvine.gamespot.com/zodiac/4060-41170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41179/", + "id": 41179, + "name": "Cadre K", + "site_detail_url": "https://comicvine.gamespot.com/cadre-k/4060-41179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41180/", + "id": 41180, + "name": "Savage Land Mutates", + "site_detail_url": "https://comicvine.gamespot.com/savage-land-mutates/4060-41180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41190/", + "id": 41190, + "name": "Earth Force", + "site_detail_url": "https://comicvine.gamespot.com/earth-force/4060-41190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41212/", + "id": 41212, + "name": "Beta Flight", + "site_detail_url": "https://comicvine.gamespot.com/beta-flight/4060-41212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41219/", + "id": 41219, + "name": "Salem's Seven", + "site_detail_url": "https://comicvine.gamespot.com/salems-seven/4060-41219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41227/", + "id": 41227, + "name": "Gamma Flight", + "site_detail_url": "https://comicvine.gamespot.com/gamma-flight/4060-41227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41234/", + "id": 41234, + "name": "Jedi Order", + "site_detail_url": "https://comicvine.gamespot.com/jedi-order/4060-41234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41261/", + "id": 41261, + "name": "Neo", + "site_detail_url": "https://comicvine.gamespot.com/neo/4060-41261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41262/", + "id": 41262, + "name": "Heavy Mettle", + "site_detail_url": "https://comicvine.gamespot.com/heavy-mettle/4060-41262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41268/", + "id": 41268, + "name": "Shadowmasters", + "site_detail_url": "https://comicvine.gamespot.com/shadowmasters/4060-41268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41269/", + "id": 41269, + "name": "Sisters of Sin", + "site_detail_url": "https://comicvine.gamespot.com/sisters-of-sin/4060-41269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41275/", + "id": 41275, + "name": "Dominus' Minions", + "site_detail_url": "https://comicvine.gamespot.com/dominus-minions/4060-41275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41278/", + "id": 41278, + "name": "Supreme Soviets", + "site_detail_url": "https://comicvine.gamespot.com/supreme-soviets/4060-41278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41304/", + "id": 41304, + "name": "The Mandate", + "site_detail_url": "https://comicvine.gamespot.com/the-mandate/4060-41304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41314/", + "id": 41314, + "name": "Batroc's Brigade", + "site_detail_url": "https://comicvine.gamespot.com/batrocs-brigade/4060-41314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41330/", + "id": 41330, + "name": "Death Sponsors", + "site_detail_url": "https://comicvine.gamespot.com/death-sponsors/4060-41330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41420/", + "id": 41420, + "name": "The Crew", + "site_detail_url": "https://comicvine.gamespot.com/the-crew/4060-41420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41421/", + "id": 41421, + "name": "The Lawless", + "site_detail_url": "https://comicvine.gamespot.com/the-lawless/4060-41421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41423/", + "id": 41423, + "name": "Theatre of Pain", + "site_detail_url": "https://comicvine.gamespot.com/theatre-of-pain/4060-41423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41436/", + "id": 41436, + "name": "Darkhold Redeemers", + "site_detail_url": "https://comicvine.gamespot.com/darkhold-redeemers/4060-41436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41448/", + "id": 41448, + "name": "Wild Boys", + "site_detail_url": "https://comicvine.gamespot.com/wild-boys/4060-41448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41504/", + "id": 41504, + "name": "X-Men 2099", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2099/4060-41504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41512/", + "id": 41512, + "name": "Graces", + "site_detail_url": "https://comicvine.gamespot.com/graces/4060-41512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41517/", + "id": 41517, + "name": "Spaceknights", + "site_detail_url": "https://comicvine.gamespot.com/spaceknights/4060-41517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41651/", + "id": 41651, + "name": "H.A.T.E", + "site_detail_url": "https://comicvine.gamespot.com/hate/4060-41651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41652/", + "id": 41652, + "name": "New Paramounts", + "site_detail_url": "https://comicvine.gamespot.com/new-paramounts/4060-41652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41656/", + "id": 41656, + "name": "Alliance of Evil", + "site_detail_url": "https://comicvine.gamespot.com/alliance-of-evil/4060-41656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41662/", + "id": 41662, + "name": "Redeemers", + "site_detail_url": "https://comicvine.gamespot.com/redeemers/4060-41662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41664/", + "id": 41664, + "name": "Santerians", + "site_detail_url": "https://comicvine.gamespot.com/santerians/4060-41664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41665/", + "id": 41665, + "name": "Saurians", + "site_detail_url": "https://comicvine.gamespot.com/saurians/4060-41665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41666/", + "id": 41666, + "name": "S.W.O.R.D.", + "site_detail_url": "https://comicvine.gamespot.com/sword/4060-41666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41720/", + "id": 41720, + "name": "W.H.O.", + "site_detail_url": "https://comicvine.gamespot.com/who/4060-41720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41729/", + "id": 41729, + "name": "R.A.I.D.", + "site_detail_url": "https://comicvine.gamespot.com/raid/4060-41729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41735/", + "id": 41735, + "name": "Titans", + "site_detail_url": "https://comicvine.gamespot.com/titans/4060-41735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41740/", + "id": 41740, + "name": "Children Of The Voyager", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-voyager/4060-41740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41743/", + "id": 41743, + "name": "Sentinel Squad O*N*E", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-squad-one/4060-41743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41746/", + "id": 41746, + "name": "The Dance", + "site_detail_url": "https://comicvine.gamespot.com/the-dance/4060-41746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41808/", + "id": 41808, + "name": "Death Throws", + "site_detail_url": "https://comicvine.gamespot.com/death-throws/4060-41808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-41964/", + "id": 41964, + "name": "Smog Alert!", + "site_detail_url": "https://comicvine.gamespot.com/smog-alert/4060-41964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42039/", + "id": 42039, + "name": "Power Tools", + "site_detail_url": "https://comicvine.gamespot.com/power-tools/4060-42039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42046/", + "id": 42046, + "name": "Stone Perfs", + "site_detail_url": "https://comicvine.gamespot.com/stone-perfs/4060-42046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42060/", + "id": 42060, + "name": "Commission on Superhuman Activities", + "site_detail_url": "https://comicvine.gamespot.com/commission-on-superhuman-activities/4060-42060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42096/", + "id": 42096, + "name": "Night Shift", + "site_detail_url": "https://comicvine.gamespot.com/night-shift/4060-42096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42127/", + "id": 42127, + "name": "Exemplars", + "site_detail_url": "https://comicvine.gamespot.com/exemplars/4060-42127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42128/", + "id": 42128, + "name": "Lethal Legion", + "site_detail_url": "https://comicvine.gamespot.com/lethal-legion/4060-42128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42129/", + "id": 42129, + "name": "Squadron Sinister", + "site_detail_url": "https://comicvine.gamespot.com/squadron-sinister/4060-42129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42130/", + "id": 42130, + "name": "Institute of Evil", + "site_detail_url": "https://comicvine.gamespot.com/institute-of-evil/4060-42130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42216/", + "id": 42216, + "name": "Biker Mice from Mars", + "site_detail_url": "https://comicvine.gamespot.com/biker-mice-from-mars/4060-42216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42262/", + "id": 42262, + "name": "ClanDestine", + "site_detail_url": "https://comicvine.gamespot.com/clandestine/4060-42262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42293/", + "id": 42293, + "name": "Regional Preturnatural Investigation Taskforce", + "site_detail_url": "https://comicvine.gamespot.com/regional-preturnatural-investigation-taskforce/4060-42293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42383/", + "id": 42383, + "name": "Rangers", + "site_detail_url": "https://comicvine.gamespot.com/rangers/4060-42383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42384/", + "id": 42384, + "name": "Godpack", + "site_detail_url": "https://comicvine.gamespot.com/godpack/4060-42384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42403/", + "id": 42403, + "name": "Clan Chosen", + "site_detail_url": "https://comicvine.gamespot.com/clan-chosen/4060-42403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42467/", + "id": 42467, + "name": "X-Babies", + "site_detail_url": "https://comicvine.gamespot.com/x-babies/4060-42467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42520/", + "id": 42520, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4060-42520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42541/", + "id": 42541, + "name": "S.U.R.F.", + "site_detail_url": "https://comicvine.gamespot.com/surf/4060-42541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42560/", + "id": 42560, + "name": "Anachronauts", + "site_detail_url": "https://comicvine.gamespot.com/anachronauts/4060-42560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42561/", + "id": 42561, + "name": "Pacific Overlords", + "site_detail_url": "https://comicvine.gamespot.com/pacific-overlords/4060-42561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42562/", + "id": 42562, + "name": "Air Force", + "site_detail_url": "https://comicvine.gamespot.com/air-force/4060-42562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42568/", + "id": 42568, + "name": "Outlaws", + "site_detail_url": "https://comicvine.gamespot.com/outlaws/4060-42568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42781/", + "id": 42781, + "name": "The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/the-initiative/4060-42781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42878/", + "id": 42878, + "name": "Animators, Inc.", + "site_detail_url": "https://comicvine.gamespot.com/animators-inc/4060-42878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42945/", + "id": 42945, + "name": "Shock Troop", + "site_detail_url": "https://comicvine.gamespot.com/shock-troop/4060-42945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42968/", + "id": 42968, + "name": "Grapplers", + "site_detail_url": "https://comicvine.gamespot.com/grapplers/4060-42968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42976/", + "id": 42976, + "name": "Underground Legion", + "site_detail_url": "https://comicvine.gamespot.com/underground-legion/4060-42976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42981/", + "id": 42981, + "name": "Schutz Heiliggruppe", + "site_detail_url": "https://comicvine.gamespot.com/schutz-heiliggruppe/4060-42981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42982/", + "id": 42982, + "name": "Skrull Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/skrull-kill-krew/4060-42982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-42984/", + "id": 42984, + "name": "Starforce", + "site_detail_url": "https://comicvine.gamespot.com/starforce/4060-42984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43044/", + "id": 43044, + "name": "Avengers Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-infinity/4060-43044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43062/", + "id": 43062, + "name": "Ultimate Knights", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-knights/4060-43062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43065/", + "id": 43065, + "name": "S.H.I.E.L.D. Super-Agents", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d-super-agents/4060-43065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43158/", + "id": 43158, + "name": "X-Nation 2099", + "site_detail_url": "https://comicvine.gamespot.com/x-nation-2099/4060-43158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43206/", + "id": 43206, + "name": "Cypress Pool Jokers", + "site_detail_url": "https://comicvine.gamespot.com/cypress-pool-jokers/4060-43206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43229/", + "id": 43229, + "name": "H.E.A.R.T.", + "site_detail_url": "https://comicvine.gamespot.com/heart/4060-43229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43240/", + "id": 43240, + "name": "Warbound", + "site_detail_url": "https://comicvine.gamespot.com/warbound/4060-43240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43257/", + "id": 43257, + "name": "Stalkers", + "site_detail_url": "https://comicvine.gamespot.com/stalkers/4060-43257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43283/", + "id": 43283, + "name": "Psionex", + "site_detail_url": "https://comicvine.gamespot.com/psionex/4060-43283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43339/", + "id": 43339, + "name": "X-Cell", + "site_detail_url": "https://comicvine.gamespot.com/x-cell/4060-43339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43526/", + "id": 43526, + "name": "Shadow-X", + "site_detail_url": "https://comicvine.gamespot.com/shadow-x/4060-43526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43529/", + "id": 43529, + "name": "Slingers", + "site_detail_url": "https://comicvine.gamespot.com/slingers/4060-43529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43574/", + "id": 43574, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4060-43574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43648/", + "id": 43648, + "name": "3-Peace", + "site_detail_url": "https://comicvine.gamespot.com/3-peace/4060-43648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43765/", + "id": 43765, + "name": "Children of the Vault", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-vault/4060-43765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43805/", + "id": 43805, + "name": "Avant Guard", + "site_detail_url": "https://comicvine.gamespot.com/avant-guard/4060-43805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43835/", + "id": 43835, + "name": "Rat Pack", + "site_detail_url": "https://comicvine.gamespot.com/rat-pack/4060-43835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43844/", + "id": 43844, + "name": "The Chosen", + "site_detail_url": "https://comicvine.gamespot.com/the-chosen/4060-43844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43853/", + "id": 43853, + "name": "Freakshow", + "site_detail_url": "https://comicvine.gamespot.com/freakshow/4060-43853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43900/", + "id": 43900, + "name": "Six Pack", + "site_detail_url": "https://comicvine.gamespot.com/six-pack/4060-43900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-43952/", + "id": 43952, + "name": "Rising Sons", + "site_detail_url": "https://comicvine.gamespot.com/rising-sons/4060-43952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44134/", + "id": 44134, + "name": "Skeleton Crew", + "site_detail_url": "https://comicvine.gamespot.com/skeleton-crew/4060-44134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44427/", + "id": 44427, + "name": "Kickers, Inc.", + "site_detail_url": "https://comicvine.gamespot.com/kickers-inc/4060-44427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44442/", + "id": 44442, + "name": "Monster Hunters", + "site_detail_url": "https://comicvine.gamespot.com/monster-hunters/4060-44442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44443/", + "id": 44443, + "name": "First Line", + "site_detail_url": "https://comicvine.gamespot.com/first-line/4060-44443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44460/", + "id": 44460, + "name": "The Sith", + "site_detail_url": "https://comicvine.gamespot.com/the-sith/4060-44460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44492/", + "id": 44492, + "name": "Redeemers", + "site_detail_url": "https://comicvine.gamespot.com/redeemers/4060-44492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44522/", + "id": 44522, + "name": "Bogatyri", + "site_detail_url": "https://comicvine.gamespot.com/bogatyri/4060-44522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44545/", + "id": 44545, + "name": "Emissaries Of Evil", + "site_detail_url": "https://comicvine.gamespot.com/emissaries-of-evil/4060-44545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44572/", + "id": 44572, + "name": "The Crusaders", + "site_detail_url": "https://comicvine.gamespot.com/the-crusaders/4060-44572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44574/", + "id": 44574, + "name": "Liberty Legion", + "site_detail_url": "https://comicvine.gamespot.com/liberty-legion/4060-44574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44576/", + "id": 44576, + "name": "Free Radicals", + "site_detail_url": "https://comicvine.gamespot.com/free-radicals/4060-44576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44593/", + "id": 44593, + "name": "Legion of the Unliving", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-the-unliving/4060-44593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44594/", + "id": 44594, + "name": "M.O.D.O.K.'s 11", + "site_detail_url": "https://comicvine.gamespot.com/m-o-d-o-k-s-11/4060-44594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44619/", + "id": 44619, + "name": "Snarks", + "site_detail_url": "https://comicvine.gamespot.com/snarks/4060-44619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44648/", + "id": 44648, + "name": "Scarlet Spiders", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spiders/4060-44648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44689/", + "id": 44689, + "name": "Planeteers", + "site_detail_url": "https://comicvine.gamespot.com/planeteers/4060-44689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44758/", + "id": 44758, + "name": "Trash", + "site_detail_url": "https://comicvine.gamespot.com/trash/4060-44758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44808/", + "id": 44808, + "name": "All-Winners Squad", + "site_detail_url": "https://comicvine.gamespot.com/all-winners-squad/4060-44808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44823/", + "id": 44823, + "name": "Order", + "site_detail_url": "https://comicvine.gamespot.com/order/4060-44823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44846/", + "id": 44846, + "name": "Fin Fang Four", + "site_detail_url": "https://comicvine.gamespot.com/fin-fang-four/4060-44846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44860/", + "id": 44860, + "name": "Gamma Corps", + "site_detail_url": "https://comicvine.gamespot.com/gamma-corps/4060-44860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44895/", + "id": 44895, + "name": "United Front", + "site_detail_url": "https://comicvine.gamespot.com/united-front/4060-44895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-44984/", + "id": 44984, + "name": "HAV", + "site_detail_url": "https://comicvine.gamespot.com/hav/4060-44984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45042/", + "id": 45042, + "name": "Clan Askani", + "site_detail_url": "https://comicvine.gamespot.com/clan-askani/4060-45042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45051/", + "id": 45051, + "name": "The Jedi High Council", + "site_detail_url": "https://comicvine.gamespot.com/the-jedi-high-council/4060-45051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45111/", + "id": 45111, + "name": "Gladiators", + "site_detail_url": "https://comicvine.gamespot.com/gladiators/4060-45111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45140/", + "id": 45140, + "name": "Clan Rebellion", + "site_detail_url": "https://comicvine.gamespot.com/clan-rebellion/4060-45140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45189/", + "id": 45189, + "name": "The Firstborn", + "site_detail_url": "https://comicvine.gamespot.com/the-firstborn/4060-45189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45197/", + "id": 45197, + "name": "Thorites", + "site_detail_url": "https://comicvine.gamespot.com/thorites/4060-45197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45218/", + "id": 45218, + "name": "Black Womb Project", + "site_detail_url": "https://comicvine.gamespot.com/black-womb-project/4060-45218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45408/", + "id": 45408, + "name": "Alpha Squadron", + "site_detail_url": "https://comicvine.gamespot.com/alpha-squadron/4060-45408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45565/", + "id": 45565, + "name": "Neyaphem", + "site_detail_url": "https://comicvine.gamespot.com/neyaphem/4060-45565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45685/", + "id": 45685, + "name": "The Six", + "site_detail_url": "https://comicvine.gamespot.com/the-six/4060-45685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45716/", + "id": 45716, + "name": "Council of Kangs", + "site_detail_url": "https://comicvine.gamespot.com/council-of-kangs/4060-45716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45734/", + "id": 45734, + "name": "Rebel Alliance", + "site_detail_url": "https://comicvine.gamespot.com/rebel-alliance/4060-45734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45742/", + "id": 45742, + "name": "Galactic Empire", + "site_detail_url": "https://comicvine.gamespot.com/galactic-empire/4060-45742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45923/", + "id": 45923, + "name": "Serpent Squad", + "site_detail_url": "https://comicvine.gamespot.com/serpent-squad/4060-45923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-45933/", + "id": 45933, + "name": "Paragons", + "site_detail_url": "https://comicvine.gamespot.com/paragons/4060-45933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46116/", + "id": 46116, + "name": "Troubleshooters", + "site_detail_url": "https://comicvine.gamespot.com/troubleshooters/4060-46116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46124/", + "id": 46124, + "name": "Revengers", + "site_detail_url": "https://comicvine.gamespot.com/revengers/4060-46124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46134/", + "id": 46134, + "name": "Intruders", + "site_detail_url": "https://comicvine.gamespot.com/intruders/4060-46134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46135/", + "id": 46135, + "name": "Cotati", + "site_detail_url": "https://comicvine.gamespot.com/cotati/4060-46135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46227/", + "id": 46227, + "name": "Legion of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters/4060-46227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46298/", + "id": 46298, + "name": "X-Ternals", + "site_detail_url": "https://comicvine.gamespot.com/x-ternals/4060-46298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46330/", + "id": 46330, + "name": "The Fallen", + "site_detail_url": "https://comicvine.gamespot.com/the-fallen/4060-46330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46362/", + "id": 46362, + "name": "Replicants", + "site_detail_url": "https://comicvine.gamespot.com/replicants/4060-46362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46363/", + "id": 46363, + "name": "Blade Runner Squad", + "site_detail_url": "https://comicvine.gamespot.com/blade-runner-squad/4060-46363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46364/", + "id": 46364, + "name": "The Tyrell Corporation", + "site_detail_url": "https://comicvine.gamespot.com/the-tyrell-corporation/4060-46364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46470/", + "id": 46470, + "name": "Goodman, Lieber, Kurtzberg & Holliway", + "site_detail_url": "https://comicvine.gamespot.com/goodman-lieber-kurtzberg-holliway/4060-46470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46707/", + "id": 46707, + "name": "Heralds", + "site_detail_url": "https://comicvine.gamespot.com/heralds/4060-46707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46736/", + "id": 46736, + "name": "Desert Sword", + "site_detail_url": "https://comicvine.gamespot.com/desert-sword/4060-46736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46752/", + "id": 46752, + "name": "FIRM", + "site_detail_url": "https://comicvine.gamespot.com/firm/4060-46752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46753/", + "id": 46753, + "name": "The Blood", + "site_detail_url": "https://comicvine.gamespot.com/the-blood/4060-46753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46791/", + "id": 46791, + "name": "Lady Liberators", + "site_detail_url": "https://comicvine.gamespot.com/lady-liberators/4060-46791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46826/", + "id": 46826, + "name": "Corsairs", + "site_detail_url": "https://comicvine.gamespot.com/corsairs/4060-46826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46875/", + "id": 46875, + "name": "Sensors", + "site_detail_url": "https://comicvine.gamespot.com/sensors/4060-46875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46899/", + "id": 46899, + "name": "New Orleans Unified Guild", + "site_detail_url": "https://comicvine.gamespot.com/new-orleans-unified-guild/4060-46899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46917/", + "id": 46917, + "name": "Leatherneck Raiders", + "site_detail_url": "https://comicvine.gamespot.com/leatherneck-raiders/4060-46917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-46952/", + "id": 46952, + "name": "Deathweb", + "site_detail_url": "https://comicvine.gamespot.com/deathweb/4060-46952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47007/", + "id": 47007, + "name": "Storm's squad", + "site_detail_url": "https://comicvine.gamespot.com/storms-squad/4060-47007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47393/", + "id": 47393, + "name": "Singularity Investigations", + "site_detail_url": "https://comicvine.gamespot.com/singularity-investigations/4060-47393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47411/", + "id": 47411, + "name": "Warheads", + "site_detail_url": "https://comicvine.gamespot.com/warheads/4060-47411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47440/", + "id": 47440, + "name": "Mutant Underground", + "site_detail_url": "https://comicvine.gamespot.com/mutant-underground/4060-47440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47476/", + "id": 47476, + "name": "Team Carnage", + "site_detail_url": "https://comicvine.gamespot.com/team-carnage/4060-47476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47484/", + "id": 47484, + "name": "Lost Souls", + "site_detail_url": "https://comicvine.gamespot.com/lost-souls/4060-47484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47547/", + "id": 47547, + "name": "The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve/4060-47547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47819/", + "id": 47819, + "name": "Freedom's Five", + "site_detail_url": "https://comicvine.gamespot.com/freedoms-five/4060-47819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47823/", + "id": 47823, + "name": "Folding Circle", + "site_detail_url": "https://comicvine.gamespot.com/folding-circle/4060-47823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47944/", + "id": 47944, + "name": "Ultimate Federalist Freedom Fighters", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-federalist-freedom-fighters/4060-47944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-47994/", + "id": 47994, + "name": "U-Men", + "site_detail_url": "https://comicvine.gamespot.com/u-men/4060-47994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48035/", + "id": 48035, + "name": "The Facility", + "site_detail_url": "https://comicvine.gamespot.com/the-facility/4060-48035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48136/", + "id": 48136, + "name": "13th Atlantean Sleeper Cell", + "site_detail_url": "https://comicvine.gamespot.com/13th-atlantean-sleeper-cell/4060-48136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48159/", + "id": 48159, + "name": "Council of Godheads", + "site_detail_url": "https://comicvine.gamespot.com/council-of-godheads/4060-48159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48322/", + "id": 48322, + "name": "Warpies", + "site_detail_url": "https://comicvine.gamespot.com/warpies/4060-48322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48329/", + "id": 48329, + "name": "Speedball Revenge Squad", + "site_detail_url": "https://comicvine.gamespot.com/speedball-revenge-squad/4060-48329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48782/", + "id": 48782, + "name": "Wizard's Warriors", + "site_detail_url": "https://comicvine.gamespot.com/wizards-warriors/4060-48782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-48848/", + "id": 48848, + "name": "Menagerie of Rimthursar", + "site_detail_url": "https://comicvine.gamespot.com/menagerie-of-rimthursar/4060-48848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49042/", + "id": 49042, + "name": "Liberteens", + "site_detail_url": "https://comicvine.gamespot.com/liberteens/4060-49042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49086/", + "id": 49086, + "name": "D.O.A.", + "site_detail_url": "https://comicvine.gamespot.com/doa/4060-49086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49290/", + "id": 49290, + "name": "Reserves", + "site_detail_url": "https://comicvine.gamespot.com/reserves/4060-49290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49441/", + "id": 49441, + "name": "Proemial Gods", + "site_detail_url": "https://comicvine.gamespot.com/proemial-gods/4060-49441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49480/", + "id": 49480, + "name": "Les Heroes de Paris", + "site_detail_url": "https://comicvine.gamespot.com/les-heroes-de-paris/4060-49480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49537/", + "id": 49537, + "name": "Technarchy", + "site_detail_url": "https://comicvine.gamespot.com/technarchy/4060-49537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49826/", + "id": 49826, + "name": "Team X", + "site_detail_url": "https://comicvine.gamespot.com/team-x/4060-49826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-49885/", + "id": 49885, + "name": "Titanic Three", + "site_detail_url": "https://comicvine.gamespot.com/titanic-three/4060-49885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50055/", + "id": 50055, + "name": "Twisted Sisters", + "site_detail_url": "https://comicvine.gamespot.com/twisted-sisters/4060-50055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50312/", + "id": 50312, + "name": "The Imperfects", + "site_detail_url": "https://comicvine.gamespot.com/the-imperfects/4060-50312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50340/", + "id": 50340, + "name": "The Crimson Pirates", + "site_detail_url": "https://comicvine.gamespot.com/the-crimson-pirates/4060-50340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50418/", + "id": 50418, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4060-50418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50529/", + "id": 50529, + "name": "Cell Six", + "site_detail_url": "https://comicvine.gamespot.com/cell-six/4060-50529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50612/", + "id": 50612, + "name": "The A-Team", + "site_detail_url": "https://comicvine.gamespot.com/the-a-team/4060-50612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50613/", + "id": 50613, + "name": "Legion of the Night", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-the-night/4060-50613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50622/", + "id": 50622, + "name": "The Centurions", + "site_detail_url": "https://comicvine.gamespot.com/the-centurions/4060-50622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50864/", + "id": 50864, + "name": "The Guild", + "site_detail_url": "https://comicvine.gamespot.com/the-guild/4060-50864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50984/", + "id": 50984, + "name": "Victory Boys", + "site_detail_url": "https://comicvine.gamespot.com/victory-boys/4060-50984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-50992/", + "id": 50992, + "name": "Mys-Tech", + "site_detail_url": "https://comicvine.gamespot.com/mys-tech/4060-50992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51055/", + "id": 51055, + "name": "Elite Mutant Force", + "site_detail_url": "https://comicvine.gamespot.com/elite-mutant-force/4060-51055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51084/", + "id": 51084, + "name": "New Republic", + "site_detail_url": "https://comicvine.gamespot.com/new-republic/4060-51084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51146/", + "id": 51146, + "name": "Young X-Men", + "site_detail_url": "https://comicvine.gamespot.com/young-x-men/4060-51146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51166/", + "id": 51166, + "name": "Supremacists", + "site_detail_url": "https://comicvine.gamespot.com/supremacists/4060-51166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51250/", + "id": 51250, + "name": "Battleworld Avengers", + "site_detail_url": "https://comicvine.gamespot.com/battleworld-avengers/4060-51250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51279/", + "id": 51279, + "name": "Big Coffin Hunters", + "site_detail_url": "https://comicvine.gamespot.com/big-coffin-hunters/4060-51279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51326/", + "id": 51326, + "name": "Last Defenders", + "site_detail_url": "https://comicvine.gamespot.com/last-defenders/4060-51326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51526/", + "id": 51526, + "name": "Octessence", + "site_detail_url": "https://comicvine.gamespot.com/octessence/4060-51526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51531/", + "id": 51531, + "name": "Liberators", + "site_detail_url": "https://comicvine.gamespot.com/liberators/4060-51531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51537/", + "id": 51537, + "name": "Seed Nineteen", + "site_detail_url": "https://comicvine.gamespot.com/seed-nineteen/4060-51537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51549/", + "id": 51549, + "name": "Xavier's Underground Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/xaviers-underground-enforcers/4060-51549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51583/", + "id": 51583, + "name": "Immortal Weapons", + "site_detail_url": "https://comicvine.gamespot.com/immortal-weapons/4060-51583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51654/", + "id": 51654, + "name": "Tribe of the Moon", + "site_detail_url": "https://comicvine.gamespot.com/tribe-of-the-moon/4060-51654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51712/", + "id": 51712, + "name": "Confederacy of Independent Systems", + "site_detail_url": "https://comicvine.gamespot.com/confederacy-of-independent-systems/4060-51712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51721/", + "id": 51721, + "name": "Betans", + "site_detail_url": "https://comicvine.gamespot.com/betans/4060-51721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51722/", + "id": 51722, + "name": "Mega-Monsters", + "site_detail_url": "https://comicvine.gamespot.com/mega-monsters/4060-51722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51749/", + "id": 51749, + "name": "New Enforcers", + "site_detail_url": "https://comicvine.gamespot.com/new-enforcers/4060-51749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51802/", + "id": 51802, + "name": "Masters of Menace", + "site_detail_url": "https://comicvine.gamespot.com/masters-of-menace/4060-51802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51880/", + "id": 51880, + "name": "Galactic Republic", + "site_detail_url": "https://comicvine.gamespot.com/galactic-republic/4060-51880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-51962/", + "id": 51962, + "name": "Marvel Monsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters/4060-51962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52049/", + "id": 52049, + "name": "MI:13", + "site_detail_url": "https://comicvine.gamespot.com/mi13/4060-52049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52150/", + "id": 52150, + "name": "Xen", + "site_detail_url": "https://comicvine.gamespot.com/xen/4060-52150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52151/", + "id": 52151, + "name": "Ant Men", + "site_detail_url": "https://comicvine.gamespot.com/ant-men/4060-52151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52223/", + "id": 52223, + "name": "Elite Agents of SHIELD", + "site_detail_url": "https://comicvine.gamespot.com/elite-agents-of-shield/4060-52223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52264/", + "id": 52264, + "name": "Clone Army", + "site_detail_url": "https://comicvine.gamespot.com/clone-army/4060-52264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52622/", + "id": 52622, + "name": "Third World Slayers", + "site_detail_url": "https://comicvine.gamespot.com/third-world-slayers/4060-52622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52713/", + "id": 52713, + "name": "Hell-Lords", + "site_detail_url": "https://comicvine.gamespot.com/hell-lords/4060-52713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52719/", + "id": 52719, + "name": "Clan Akkaba", + "site_detail_url": "https://comicvine.gamespot.com/clan-akkaba/4060-52719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52779/", + "id": 52779, + "name": "Satan Squad", + "site_detail_url": "https://comicvine.gamespot.com/satan-squad/4060-52779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52790/", + "id": 52790, + "name": "Elder Gods", + "site_detail_url": "https://comicvine.gamespot.com/elder-gods/4060-52790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52831/", + "id": 52831, + "name": "Band of Baddies", + "site_detail_url": "https://comicvine.gamespot.com/band-of-baddies/4060-52831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52900/", + "id": 52900, + "name": "Legion of Losers", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-losers/4060-52900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52923/", + "id": 52923, + "name": "Cerebro's X-Men", + "site_detail_url": "https://comicvine.gamespot.com/cerebros-x-men/4060-52923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52945/", + "id": 52945, + "name": "Kymellians", + "site_detail_url": "https://comicvine.gamespot.com/kymellians/4060-52945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-52985/", + "id": 52985, + "name": "Force Four", + "site_detail_url": "https://comicvine.gamespot.com/force-four/4060-52985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53125/", + "id": 53125, + "name": "Spider Society", + "site_detail_url": "https://comicvine.gamespot.com/spider-society/4060-53125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53126/", + "id": 53126, + "name": "Sisterhood of the Wasps", + "site_detail_url": "https://comicvine.gamespot.com/sisterhood-of-the-wasps/4060-53126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53501/", + "id": 53501, + "name": "Outcasts (Subterranea)", + "site_detail_url": "https://comicvine.gamespot.com/outcasts-subterranea/4060-53501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53641/", + "id": 53641, + "name": "Demon Troops", + "site_detail_url": "https://comicvine.gamespot.com/demon-troops/4060-53641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53813/", + "id": 53813, + "name": "The Misfits", + "site_detail_url": "https://comicvine.gamespot.com/the-misfits/4060-53813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53845/", + "id": 53845, + "name": "Hell's Belles", + "site_detail_url": "https://comicvine.gamespot.com/hells-belles/4060-53845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53864/", + "id": 53864, + "name": "A.R.M.O.R.", + "site_detail_url": "https://comicvine.gamespot.com/armor/4060-53864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-53980/", + "id": 53980, + "name": "The Derangers", + "site_detail_url": "https://comicvine.gamespot.com/the-derangers/4060-53980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54019/", + "id": 54019, + "name": "Nth Command", + "site_detail_url": "https://comicvine.gamespot.com/nth-command/4060-54019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54030/", + "id": 54030, + "name": "Gnucci Family", + "site_detail_url": "https://comicvine.gamespot.com/gnucci-family/4060-54030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54113/", + "id": 54113, + "name": "Heavy Hitters", + "site_detail_url": "https://comicvine.gamespot.com/heavy-hitters/4060-54113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54173/", + "id": 54173, + "name": "Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/conspiracy/4060-54173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54215/", + "id": 54215, + "name": "Freedom Force", + "site_detail_url": "https://comicvine.gamespot.com/freedom-force/4060-54215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54216/", + "id": 54216, + "name": "Counter-Force", + "site_detail_url": "https://comicvine.gamespot.com/counter-force/4060-54216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54345/", + "id": 54345, + "name": "Alphaclan", + "site_detail_url": "https://comicvine.gamespot.com/alphaclan/4060-54345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54403/", + "id": 54403, + "name": "B-Sides", + "site_detail_url": "https://comicvine.gamespot.com/b-sides/4060-54403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54438/", + "id": 54438, + "name": "Force of Nature", + "site_detail_url": "https://comicvine.gamespot.com/force-of-nature/4060-54438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54557/", + "id": 54557, + "name": "The Street Arabs", + "site_detail_url": "https://comicvine.gamespot.com/the-street-arabs/4060-54557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54569/", + "id": 54569, + "name": "Secret Warriors", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors/4060-54569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54655/", + "id": 54655, + "name": "The Sinners", + "site_detail_url": "https://comicvine.gamespot.com/the-sinners/4060-54655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54669/", + "id": 54669, + "name": "Church of the Damned", + "site_detail_url": "https://comicvine.gamespot.com/church-of-the-damned/4060-54669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54675/", + "id": 54675, + "name": "OCP", + "site_detail_url": "https://comicvine.gamespot.com/ocp/4060-54675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54776/", + "id": 54776, + "name": "The Universal Church of Truth", + "site_detail_url": "https://comicvine.gamespot.com/the-universal-church-of-truth/4060-54776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54861/", + "id": 54861, + "name": "GeNEXT", + "site_detail_url": "https://comicvine.gamespot.com/genext/4060-54861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-54989/", + "id": 54989, + "name": "Venom Task Force", + "site_detail_url": "https://comicvine.gamespot.com/venom-task-force/4060-54989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55042/", + "id": 55042, + "name": "The Shadow Initiative", + "site_detail_url": "https://comicvine.gamespot.com/the-shadow-initiative/4060-55042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55230/", + "id": 55230, + "name": "The Crazy 8", + "site_detail_url": "https://comicvine.gamespot.com/the-crazy-8/4060-55230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55404/", + "id": 55404, + "name": "Harriers", + "site_detail_url": "https://comicvine.gamespot.com/harriers/4060-55404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55685/", + "id": 55685, + "name": "The God Squad", + "site_detail_url": "https://comicvine.gamespot.com/the-god-squad/4060-55685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55692/", + "id": 55692, + "name": "Super-Axis", + "site_detail_url": "https://comicvine.gamespot.com/super-axis/4060-55692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55693/", + "id": 55693, + "name": "X-Saviours", + "site_detail_url": "https://comicvine.gamespot.com/x-saviours/4060-55693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55694/", + "id": 55694, + "name": "Death 3", + "site_detail_url": "https://comicvine.gamespot.com/death-3/4060-55694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55697/", + "id": 55697, + "name": "Peoples Defence Force", + "site_detail_url": "https://comicvine.gamespot.com/peoples-defence-force/4060-55697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55702/", + "id": 55702, + "name": "Enclave", + "site_detail_url": "https://comicvine.gamespot.com/enclave/4060-55702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55703/", + "id": 55703, + "name": "The Five Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/the-five-symbiotes/4060-55703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55707/", + "id": 55707, + "name": "Cardinals", + "site_detail_url": "https://comicvine.gamespot.com/cardinals/4060-55707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55715/", + "id": 55715, + "name": "Euro-Trash", + "site_detail_url": "https://comicvine.gamespot.com/euro-trash/4060-55715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55716/", + "id": 55716, + "name": "Targoth Troops", + "site_detail_url": "https://comicvine.gamespot.com/targoth-troops/4060-55716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55719/", + "id": 55719, + "name": "Hulk Gang", + "site_detail_url": "https://comicvine.gamespot.com/hulk-gang/4060-55719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55727/", + "id": 55727, + "name": "Sunrise Society", + "site_detail_url": "https://comicvine.gamespot.com/sunrise-society/4060-55727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55734/", + "id": 55734, + "name": "Lunatic Legion", + "site_detail_url": "https://comicvine.gamespot.com/lunatic-legion/4060-55734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55735/", + "id": 55735, + "name": "New Defenders", + "site_detail_url": "https://comicvine.gamespot.com/new-defenders/4060-55735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55747/", + "id": 55747, + "name": "Legion of the Living Lightning", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-the-living-lightning/4060-55747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55757/", + "id": 55757, + "name": "Teen Brigade", + "site_detail_url": "https://comicvine.gamespot.com/teen-brigade/4060-55757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55765/", + "id": 55765, + "name": "Renegades", + "site_detail_url": "https://comicvine.gamespot.com/renegades/4060-55765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55767/", + "id": 55767, + "name": "ULTIMATUM", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum/4060-55767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55768/", + "id": 55768, + "name": "The Watchdogs", + "site_detail_url": "https://comicvine.gamespot.com/the-watchdogs/4060-55768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55780/", + "id": 55780, + "name": "Dora Milaje", + "site_detail_url": "https://comicvine.gamespot.com/dora-milaje/4060-55780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55783/", + "id": 55783, + "name": "The Hellfire Cult", + "site_detail_url": "https://comicvine.gamespot.com/the-hellfire-cult/4060-55783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55788/", + "id": 55788, + "name": "Hammer Industries", + "site_detail_url": "https://comicvine.gamespot.com/hammer-industries/4060-55788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55790/", + "id": 55790, + "name": "Fathom Five", + "site_detail_url": "https://comicvine.gamespot.com/fathom-five/4060-55790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55791/", + "id": 55791, + "name": "Freelance Restorations", + "site_detail_url": "https://comicvine.gamespot.com/freelance-restorations/4060-55791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55803/", + "id": 55803, + "name": "Heavy Metal", + "site_detail_url": "https://comicvine.gamespot.com/heavy-metal/4060-55803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55804/", + "id": 55804, + "name": "Easy X Gang", + "site_detail_url": "https://comicvine.gamespot.com/easy-x-gang/4060-55804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55805/", + "id": 55805, + "name": "The Seekers", + "site_detail_url": "https://comicvine.gamespot.com/the-seekers/4060-55805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55807/", + "id": 55807, + "name": "Masters of Silence", + "site_detail_url": "https://comicvine.gamespot.com/masters-of-silence/4060-55807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55809/", + "id": 55809, + "name": "Magistrati", + "site_detail_url": "https://comicvine.gamespot.com/magistrati/4060-55809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55815/", + "id": 55815, + "name": "True Believers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers/4060-55815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55816/", + "id": 55816, + "name": "Hatut Zeraze", + "site_detail_url": "https://comicvine.gamespot.com/hatut-zeraze/4060-55816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55817/", + "id": 55817, + "name": "X-Patriots", + "site_detail_url": "https://comicvine.gamespot.com/x-patriots/4060-55817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55818/", + "id": 55818, + "name": "Lady Killers", + "site_detail_url": "https://comicvine.gamespot.com/lady-killers/4060-55818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55823/", + "id": 55823, + "name": "Hulk-Hunters", + "site_detail_url": "https://comicvine.gamespot.com/hulk-hunters/4060-55823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55825/", + "id": 55825, + "name": "Doctor Doom's Generals", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom-s-generals/4060-55825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55828/", + "id": 55828, + "name": "Chaste", + "site_detail_url": "https://comicvine.gamespot.com/chaste/4060-55828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55829/", + "id": 55829, + "name": "The Outcasts", + "site_detail_url": "https://comicvine.gamespot.com/the-outcasts/4060-55829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55830/", + "id": 55830, + "name": "National Force", + "site_detail_url": "https://comicvine.gamespot.com/national-force/4060-55830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55833/", + "id": 55833, + "name": "Dreadnoughts", + "site_detail_url": "https://comicvine.gamespot.com/dreadnoughts/4060-55833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55836/", + "id": 55836, + "name": "The Resistants", + "site_detail_url": "https://comicvine.gamespot.com/the-resistants/4060-55836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55840/", + "id": 55840, + "name": "Angel Squad", + "site_detail_url": "https://comicvine.gamespot.com/angel-squad/4060-55840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55843/", + "id": 55843, + "name": "The Fangs", + "site_detail_url": "https://comicvine.gamespot.com/the-fangs/4060-55843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55849/", + "id": 55849, + "name": "Sandorr's Hunters", + "site_detail_url": "https://comicvine.gamespot.com/sandorrs-hunters/4060-55849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55850/", + "id": 55850, + "name": "The Damocles Foundation", + "site_detail_url": "https://comicvine.gamespot.com/the-damocles-foundation/4060-55850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55854/", + "id": 55854, + "name": "Shi'ar", + "site_detail_url": "https://comicvine.gamespot.com/shiar/4060-55854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55855/", + "id": 55855, + "name": "Elements of Doom", + "site_detail_url": "https://comicvine.gamespot.com/elements-of-doom/4060-55855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55856/", + "id": 55856, + "name": "Cosmic Commandos", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-commandos/4060-55856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55859/", + "id": 55859, + "name": "Lava Men", + "site_detail_url": "https://comicvine.gamespot.com/lava-men/4060-55859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55864/", + "id": 55864, + "name": "Dakkamites", + "site_detail_url": "https://comicvine.gamespot.com/dakkamites/4060-55864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55868/", + "id": 55868, + "name": "The Command", + "site_detail_url": "https://comicvine.gamespot.com/the-command/4060-55868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55869/", + "id": 55869, + "name": "U.S. Radar Station Team", + "site_detail_url": "https://comicvine.gamespot.com/us-radar-station-team/4060-55869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55871/", + "id": 55871, + "name": "The New Immortals", + "site_detail_url": "https://comicvine.gamespot.com/the-new-immortals/4060-55871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55875/", + "id": 55875, + "name": "Action Pack", + "site_detail_url": "https://comicvine.gamespot.com/action-pack/4060-55875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55884/", + "id": 55884, + "name": "Marvel Werewolves", + "site_detail_url": "https://comicvine.gamespot.com/marvel-werewolves/4060-55884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55895/", + "id": 55895, + "name": "Crimson Cadre", + "site_detail_url": "https://comicvine.gamespot.com/crimson-cadre/4060-55895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55897/", + "id": 55897, + "name": "Exterminators", + "site_detail_url": "https://comicvine.gamespot.com/exterminators/4060-55897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55902/", + "id": 55902, + "name": "Alpha Primitives", + "site_detail_url": "https://comicvine.gamespot.com/alpha-primitives/4060-55902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55905/", + "id": 55905, + "name": "Annihilation Wave", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-wave/4060-55905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55906/", + "id": 55906, + "name": "New Warriors Task Force", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-task-force/4060-55906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55909/", + "id": 55909, + "name": "Desert Stars", + "site_detail_url": "https://comicvine.gamespot.com/desert-stars/4060-55909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55913/", + "id": 55913, + "name": "Wild Cards", + "site_detail_url": "https://comicvine.gamespot.com/wild-cards/4060-55913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55918/", + "id": 55918, + "name": "Savage Six", + "site_detail_url": "https://comicvine.gamespot.com/savage-six/4060-55918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55930/", + "id": 55930, + "name": "The Loonies", + "site_detail_url": "https://comicvine.gamespot.com/the-loonies/4060-55930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55933/", + "id": 55933, + "name": "Next Wave", + "site_detail_url": "https://comicvine.gamespot.com/next-wave/4060-55933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55934/", + "id": 55934, + "name": "Kinsmen", + "site_detail_url": "https://comicvine.gamespot.com/kinsmen/4060-55934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55935/", + "id": 55935, + "name": "The Ruined", + "site_detail_url": "https://comicvine.gamespot.com/the-ruined/4060-55935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55936/", + "id": 55936, + "name": "Death Squad", + "site_detail_url": "https://comicvine.gamespot.com/death-squad/4060-55936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55937/", + "id": 55937, + "name": "Brute Force", + "site_detail_url": "https://comicvine.gamespot.com/brute-force/4060-55937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55939/", + "id": 55939, + "name": "Unlimited Class Wrestling Federation", + "site_detail_url": "https://comicvine.gamespot.com/unlimited-class-wrestling-federation/4060-55939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55941/", + "id": 55941, + "name": "Cadre", + "site_detail_url": "https://comicvine.gamespot.com/cadre/4060-55941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55942/", + "id": 55942, + "name": "Triumvirate of Terror", + "site_detail_url": "https://comicvine.gamespot.com/triumvirate-of-terror/4060-55942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55943/", + "id": 55943, + "name": "Spirits of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance/4060-55943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55944/", + "id": 55944, + "name": "Eugenix", + "site_detail_url": "https://comicvine.gamespot.com/eugenix/4060-55944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55946/", + "id": 55946, + "name": "Cell-12", + "site_detail_url": "https://comicvine.gamespot.com/cell-12/4060-55946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55947/", + "id": 55947, + "name": "Maelstrom's Minions", + "site_detail_url": "https://comicvine.gamespot.com/maelstroms-minions/4060-55947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55948/", + "id": 55948, + "name": "Animen", + "site_detail_url": "https://comicvine.gamespot.com/animen/4060-55948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55949/", + "id": 55949, + "name": "Axis Mundi", + "site_detail_url": "https://comicvine.gamespot.com/axis-mundi/4060-55949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55950/", + "id": 55950, + "name": "Luminals", + "site_detail_url": "https://comicvine.gamespot.com/luminals/4060-55950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55954/", + "id": 55954, + "name": "Bio-Genes", + "site_detail_url": "https://comicvine.gamespot.com/bio-genes/4060-55954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55955/", + "id": 55955, + "name": "Contingency", + "site_detail_url": "https://comicvine.gamespot.com/contingency/4060-55955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55965/", + "id": 55965, + "name": "Collection Agency", + "site_detail_url": "https://comicvine.gamespot.com/collection-agency/4060-55965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55966/", + "id": 55966, + "name": "System Crash", + "site_detail_url": "https://comicvine.gamespot.com/system-crash/4060-55966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55968/", + "id": 55968, + "name": "Great Powers of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/great-powers-of-the-universe/4060-55968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55972/", + "id": 55972, + "name": "Host", + "site_detail_url": "https://comicvine.gamespot.com/host/4060-55972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55978/", + "id": 55978, + "name": "Techno-Wizards", + "site_detail_url": "https://comicvine.gamespot.com/techno-wizards/4060-55978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55983/", + "id": 55983, + "name": "Arishem's Coup D'etat", + "site_detail_url": "https://comicvine.gamespot.com/arishems-coup-detat/4060-55983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55989/", + "id": 55989, + "name": "Y-Men", + "site_detail_url": "https://comicvine.gamespot.com/y-men/4060-55989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55990/", + "id": 55990, + "name": "Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers/4060-55990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55991/", + "id": 55991, + "name": "Shi'ar Death Commandos", + "site_detail_url": "https://comicvine.gamespot.com/shiar-death-commandos/4060-55991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55993/", + "id": 55993, + "name": "Valkyrior", + "site_detail_url": "https://comicvine.gamespot.com/valkyrior/4060-55993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55996/", + "id": 55996, + "name": "Offenders", + "site_detail_url": "https://comicvine.gamespot.com/offenders/4060-55996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-55997/", + "id": 55997, + "name": "Livewires", + "site_detail_url": "https://comicvine.gamespot.com/livewires/4060-55997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56000/", + "id": 56000, + "name": "Steel Skulls", + "site_detail_url": "https://comicvine.gamespot.com/steel-skulls/4060-56000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56004/", + "id": 56004, + "name": "Guthrie Family", + "site_detail_url": "https://comicvine.gamespot.com/guthrie-family/4060-56004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56010/", + "id": 56010, + "name": "Roxxon", + "site_detail_url": "https://comicvine.gamespot.com/roxxon/4060-56010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56015/", + "id": 56015, + "name": "Black Dragon Death Squad", + "site_detail_url": "https://comicvine.gamespot.com/black-dragon-death-squad/4060-56015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56051/", + "id": 56051, + "name": "Cabal", + "site_detail_url": "https://comicvine.gamespot.com/cabal/4060-56051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56056/", + "id": 56056, + "name": "Avenging Host", + "site_detail_url": "https://comicvine.gamespot.com/avenging-host/4060-56056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56059/", + "id": 56059, + "name": "18th Kree Diplomatic Gestalt", + "site_detail_url": "https://comicvine.gamespot.com/18th-kree-diplomatic-gestalt/4060-56059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56064/", + "id": 56064, + "name": "Foreigner's Death Squad", + "site_detail_url": "https://comicvine.gamespot.com/foreigners-death-squad/4060-56064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56065/", + "id": 56065, + "name": "H.A.M.M.E.R.", + "site_detail_url": "https://comicvine.gamespot.com/hammer/4060-56065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56067/", + "id": 56067, + "name": "Resistance Coordination Executive", + "site_detail_url": "https://comicvine.gamespot.com/resistance-coordination-executive/4060-56067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56070/", + "id": 56070, + "name": "The Right", + "site_detail_url": "https://comicvine.gamespot.com/the-right/4060-56070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56072/", + "id": 56072, + "name": "The Law Enforcement Squad", + "site_detail_url": "https://comicvine.gamespot.com/the-law-enforcement-squad/4060-56072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56074/", + "id": 56074, + "name": "Shadowforce", + "site_detail_url": "https://comicvine.gamespot.com/shadowforce/4060-56074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56087/", + "id": 56087, + "name": "Siberforce", + "site_detail_url": "https://comicvine.gamespot.com/siberforce/4060-56087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56088/", + "id": 56088, + "name": "People's Protectorate", + "site_detail_url": "https://comicvine.gamespot.com/peoples-protectorate/4060-56088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56089/", + "id": 56089, + "name": "X-Humed", + "site_detail_url": "https://comicvine.gamespot.com/x-humed/4060-56089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56090/", + "id": 56090, + "name": "Sapien League", + "site_detail_url": "https://comicvine.gamespot.com/sapien-league/4060-56090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56091/", + "id": 56091, + "name": "Sky-Wolves", + "site_detail_url": "https://comicvine.gamespot.com/sky-wolves/4060-56091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56095/", + "id": 56095, + "name": "Red Guard", + "site_detail_url": "https://comicvine.gamespot.com/red-guard/4060-56095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56096/", + "id": 56096, + "name": "Armed Response", + "site_detail_url": "https://comicvine.gamespot.com/armed-response/4060-56096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56097/", + "id": 56097, + "name": "Black Dahlias", + "site_detail_url": "https://comicvine.gamespot.com/black-dahlias/4060-56097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56098/", + "id": 56098, + "name": "Bloodforce", + "site_detail_url": "https://comicvine.gamespot.com/bloodforce/4060-56098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56099/", + "id": 56099, + "name": "Point Men", + "site_detail_url": "https://comicvine.gamespot.com/point-men/4060-56099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56100/", + "id": 56100, + "name": "Brotherhood of Chaos", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-chaos/4060-56100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56101/", + "id": 56101, + "name": "The Cavalry", + "site_detail_url": "https://comicvine.gamespot.com/the-cavalry/4060-56101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56102/", + "id": 56102, + "name": "Cherubim", + "site_detail_url": "https://comicvine.gamespot.com/cherubim/4060-56102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56103/", + "id": 56103, + "name": "Crime Wave", + "site_detail_url": "https://comicvine.gamespot.com/crime-wave/4060-56103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56104/", + "id": 56104, + "name": "Cybersamurai", + "site_detail_url": "https://comicvine.gamespot.com/cybersamurai/4060-56104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56105/", + "id": 56105, + "name": "Daydreamers", + "site_detail_url": "https://comicvine.gamespot.com/daydreamers/4060-56105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56107/", + "id": 56107, + "name": "The Garrison", + "site_detail_url": "https://comicvine.gamespot.com/the-garrison/4060-56107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56108/", + "id": 56108, + "name": "The Mavericks", + "site_detail_url": "https://comicvine.gamespot.com/the-mavericks/4060-56108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56109/", + "id": 56109, + "name": "The Battalion", + "site_detail_url": "https://comicvine.gamespot.com/the-battalion/4060-56109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56110/", + "id": 56110, + "name": "Dragons Of The Crimson Dawn", + "site_detail_url": "https://comicvine.gamespot.com/dragons-of-the-crimson-dawn/4060-56110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56111/", + "id": 56111, + "name": "Dread Dealers", + "site_detail_url": "https://comicvine.gamespot.com/dread-dealers/4060-56111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56112/", + "id": 56112, + "name": "Eight Immortals", + "site_detail_url": "https://comicvine.gamespot.com/eight-immortals/4060-56112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56113/", + "id": 56113, + "name": "Euroforce", + "site_detail_url": "https://comicvine.gamespot.com/euroforce/4060-56113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56115/", + "id": 56115, + "name": "Six-Fingered Hand", + "site_detail_url": "https://comicvine.gamespot.com/six-fingered-hand/4060-56115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56116/", + "id": 56116, + "name": "Powerline", + "site_detail_url": "https://comicvine.gamespot.com/powerline/4060-56116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56117/", + "id": 56117, + "name": "Promise", + "site_detail_url": "https://comicvine.gamespot.com/promise/4060-56117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56118/", + "id": 56118, + "name": "Punishers", + "site_detail_url": "https://comicvine.gamespot.com/punishers/4060-56118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56119/", + "id": 56119, + "name": "Republican Guard", + "site_detail_url": "https://comicvine.gamespot.com/republican-guard/4060-56119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56120/", + "id": 56120, + "name": "Rex-Dogs", + "site_detail_url": "https://comicvine.gamespot.com/rex-dogs/4060-56120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56121/", + "id": 56121, + "name": "Spider-Squad", + "site_detail_url": "https://comicvine.gamespot.com/spider-squad/4060-56121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56123/", + "id": 56123, + "name": "Thought Police", + "site_detail_url": "https://comicvine.gamespot.com/thought-police/4060-56123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56124/", + "id": 56124, + "name": "Thunder Guard", + "site_detail_url": "https://comicvine.gamespot.com/thunder-guard/4060-56124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56125/", + "id": 56125, + "name": "Triumph Division", + "site_detail_url": "https://comicvine.gamespot.com/triumph-division/4060-56125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56126/", + "id": 56126, + "name": "Turnpike Authority", + "site_detail_url": "https://comicvine.gamespot.com/turnpike-authority/4060-56126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56127/", + "id": 56127, + "name": "Upward Path", + "site_detail_url": "https://comicvine.gamespot.com/upward-path/4060-56127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56128/", + "id": 56128, + "name": "Weird Sisters", + "site_detail_url": "https://comicvine.gamespot.com/weird-sisters/4060-56128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56129/", + "id": 56129, + "name": "X-Punks", + "site_detail_url": "https://comicvine.gamespot.com/x-punks/4060-56129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56130/", + "id": 56130, + "name": "Cat People", + "site_detail_url": "https://comicvine.gamespot.com/cat-people/4060-56130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56135/", + "id": 56135, + "name": "She-Vengers", + "site_detail_url": "https://comicvine.gamespot.com/she-vengers/4060-56135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56139/", + "id": 56139, + "name": "Band of the Bland", + "site_detail_url": "https://comicvine.gamespot.com/band-of-the-bland/4060-56139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56143/", + "id": 56143, + "name": "Team Venom", + "site_detail_url": "https://comicvine.gamespot.com/team-venom/4060-56143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56144/", + "id": 56144, + "name": "Cult of Entropy", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-entropy/4060-56144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56151/", + "id": 56151, + "name": "The Infinites", + "site_detail_url": "https://comicvine.gamespot.com/the-infinites/4060-56151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56155/", + "id": 56155, + "name": "Those Who Sit Above in Shadow", + "site_detail_url": "https://comicvine.gamespot.com/those-who-sit-above-in-shadow/4060-56155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56162/", + "id": 56162, + "name": "The Horde", + "site_detail_url": "https://comicvine.gamespot.com/the-horde/4060-56162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56165/", + "id": 56165, + "name": "Gart and Rath", + "site_detail_url": "https://comicvine.gamespot.com/gart-and-rath/4060-56165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56168/", + "id": 56168, + "name": "The Galactic Avenger Battalion", + "site_detail_url": "https://comicvine.gamespot.com/the-galactic-avenger-battalion/4060-56168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56169/", + "id": 56169, + "name": "The Realm Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-realm-marvel/4060-56169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56170/", + "id": 56170, + "name": "The Light Brigade", + "site_detail_url": "https://comicvine.gamespot.com/the-light-brigade/4060-56170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56176/", + "id": 56176, + "name": "Church of Hala", + "site_detail_url": "https://comicvine.gamespot.com/church-of-hala/4060-56176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56179/", + "id": 56179, + "name": "The Wyrd Sisters", + "site_detail_url": "https://comicvine.gamespot.com/the-wyrd-sisters/4060-56179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56184/", + "id": 56184, + "name": "The Makers Chosen", + "site_detail_url": "https://comicvine.gamespot.com/the-makers-chosen/4060-56184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56186/", + "id": 56186, + "name": "The Vi-Locks", + "site_detail_url": "https://comicvine.gamespot.com/the-vi-locks/4060-56186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56187/", + "id": 56187, + "name": "The False Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-false-heroes/4060-56187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56190/", + "id": 56190, + "name": "Anti-Vivisectionists", + "site_detail_url": "https://comicvine.gamespot.com/anti-vivisectionists/4060-56190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56191/", + "id": 56191, + "name": "Aquilar Institute", + "site_detail_url": "https://comicvine.gamespot.com/aquilar-institute/4060-56191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56192/", + "id": 56192, + "name": "Arcane Order Of The Night", + "site_detail_url": "https://comicvine.gamespot.com/arcane-order-of-the-night/4060-56192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56193/", + "id": 56193, + "name": "Bedrocks", + "site_detail_url": "https://comicvine.gamespot.com/bedrocks/4060-56193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56194/", + "id": 56194, + "name": "Beyond Reason Spiritual Fellowship", + "site_detail_url": "https://comicvine.gamespot.com/beyond-reason-spiritual-fellowship/4060-56194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56195/", + "id": 56195, + "name": "Black School", + "site_detail_url": "https://comicvine.gamespot.com/black-school/4060-56195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56196/", + "id": 56196, + "name": "Road Warriors", + "site_detail_url": "https://comicvine.gamespot.com/road-warriors/4060-56196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56197/", + "id": 56197, + "name": "Bloody Claws", + "site_detail_url": "https://comicvine.gamespot.com/bloody-claws/4060-56197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56198/", + "id": 56198, + "name": "Boyz R Us", + "site_detail_url": "https://comicvine.gamespot.com/boyz-r-us/4060-56198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56199/", + "id": 56199, + "name": "Brood Mutants", + "site_detail_url": "https://comicvine.gamespot.com/brood-mutants/4060-56199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56200/", + "id": 56200, + "name": "Brotherhood Of Hades", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-hades/4060-56200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56201/", + "id": 56201, + "name": "Carson's Carnival of Travelling Wonders", + "site_detail_url": "https://comicvine.gamespot.com/carson-s-carnival-of-travelling-wonders/4060-56201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56204/", + "id": 56204, + "name": "The Haamin", + "site_detail_url": "https://comicvine.gamespot.com/the-haamin/4060-56204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56210/", + "id": 56210, + "name": "Committee Of Five", + "site_detail_url": "https://comicvine.gamespot.com/committee-of-five/4060-56210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56211/", + "id": 56211, + "name": "Cult Of The Jackal", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-the-jackal/4060-56211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56213/", + "id": 56213, + "name": "The Seven Friendless", + "site_detail_url": "https://comicvine.gamespot.com/the-seven-friendless/4060-56213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56215/", + "id": 56215, + "name": "Young Masters", + "site_detail_url": "https://comicvine.gamespot.com/young-masters/4060-56215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56216/", + "id": 56216, + "name": "Pet Avengers", + "site_detail_url": "https://comicvine.gamespot.com/pet-avengers/4060-56216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56217/", + "id": 56217, + "name": "Church Of Naked Truth", + "site_detail_url": "https://comicvine.gamespot.com/church-of-naked-truth/4060-56217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56218/", + "id": 56218, + "name": "Sisters Of Grace", + "site_detail_url": "https://comicvine.gamespot.com/sisters-of-grace/4060-56218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56219/", + "id": 56219, + "name": "Zum Corporation", + "site_detail_url": "https://comicvine.gamespot.com/zum-corporation/4060-56219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56223/", + "id": 56223, + "name": "Challengers Of Doom", + "site_detail_url": "https://comicvine.gamespot.com/challengers-of-doom/4060-56223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56224/", + "id": 56224, + "name": "Children Of Heaven", + "site_detail_url": "https://comicvine.gamespot.com/children-of-heaven/4060-56224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56225/", + "id": 56225, + "name": "Congress of Realities", + "site_detail_url": "https://comicvine.gamespot.com/congress-of-realities/4060-56225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56226/", + "id": 56226, + "name": "Culver Sport And Gun Club", + "site_detail_url": "https://comicvine.gamespot.com/culver-sport-and-gun-club/4060-56226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56227/", + "id": 56227, + "name": "Death's Head Squadron", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-squadron/4060-56227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56228/", + "id": 56228, + "name": "Delubric Consortium", + "site_detail_url": "https://comicvine.gamespot.com/delubric-consortium/4060-56228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56229/", + "id": 56229, + "name": "Demons Of Liberation", + "site_detail_url": "https://comicvine.gamespot.com/demons-of-liberation/4060-56229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56230/", + "id": 56230, + "name": "Dicemen", + "site_detail_url": "https://comicvine.gamespot.com/dicemen/4060-56230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56231/", + "id": 56231, + "name": "Empire Books", + "site_detail_url": "https://comicvine.gamespot.com/empire-books/4060-56231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56232/", + "id": 56232, + "name": "Enchanters", + "site_detail_url": "https://comicvine.gamespot.com/enchanters/4060-56232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56233/", + "id": 56233, + "name": "Fantastic Kids", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-kids/4060-56233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56235/", + "id": 56235, + "name": "Forsaken", + "site_detail_url": "https://comicvine.gamespot.com/forsaken/4060-56235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56236/", + "id": 56236, + "name": "GARID", + "site_detail_url": "https://comicvine.gamespot.com/garid/4060-56236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56237/", + "id": 56237, + "name": "Golden Claws", + "site_detail_url": "https://comicvine.gamespot.com/golden-claws/4060-56237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56238/", + "id": 56238, + "name": "Gotham Game Club", + "site_detail_url": "https://comicvine.gamespot.com/gotham-game-club/4060-56238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56239/", + "id": 56239, + "name": "Grateful Undead", + "site_detail_url": "https://comicvine.gamespot.com/grateful-undead/4060-56239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56240/", + "id": 56240, + "name": "Gun, Fist, and Blade", + "site_detail_url": "https://comicvine.gamespot.com/gun-fist-and-blade/4060-56240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56241/", + "id": 56241, + "name": "Hidden", + "site_detail_url": "https://comicvine.gamespot.com/hidden/4060-56241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56242/", + "id": 56242, + "name": "Incinerators", + "site_detail_url": "https://comicvine.gamespot.com/incinerators/4060-56242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56243/", + "id": 56243, + "name": "Inner Guard", + "site_detail_url": "https://comicvine.gamespot.com/inner-guard/4060-56243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56244/", + "id": 56244, + "name": "Intergalactic Warlords", + "site_detail_url": "https://comicvine.gamespot.com/intergalactic-warlords/4060-56244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56245/", + "id": 56245, + "name": "Light Brigade", + "site_detail_url": "https://comicvine.gamespot.com/light-brigade/4060-56245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56246/", + "id": 56246, + "name": "Legion Of Nihilists", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-nihilists/4060-56246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56247/", + "id": 56247, + "name": "Living Bombs", + "site_detail_url": "https://comicvine.gamespot.com/living-bombs/4060-56247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56248/", + "id": 56248, + "name": "Mad Twins", + "site_detail_url": "https://comicvine.gamespot.com/mad-twins/4060-56248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56249/", + "id": 56249, + "name": "Mer-Mutants", + "site_detail_url": "https://comicvine.gamespot.com/mer-mutants/4060-56249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56250/", + "id": 56250, + "name": "Mirror Modeling", + "site_detail_url": "https://comicvine.gamespot.com/mirror-modeling/4060-56250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56251/", + "id": 56251, + "name": "Mothmen", + "site_detail_url": "https://comicvine.gamespot.com/mothmen/4060-56251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56255/", + "id": 56255, + "name": "Office Of Insufficient Evidence", + "site_detail_url": "https://comicvine.gamespot.com/office-of-insufficient-evidence/4060-56255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56256/", + "id": 56256, + "name": "Organizatsiya", + "site_detail_url": "https://comicvine.gamespot.com/organizatsiya/4060-56256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56257/", + "id": 56257, + "name": "Pearl Sect", + "site_detail_url": "https://comicvine.gamespot.com/pearl-sect/4060-56257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56258/", + "id": 56258, + "name": "Power Cult", + "site_detail_url": "https://comicvine.gamespot.com/power-cult/4060-56258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56259/", + "id": 56259, + "name": "Praetorian Guard", + "site_detail_url": "https://comicvine.gamespot.com/praetorian-guard/4060-56259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56260/", + "id": 56260, + "name": "Prime Ten", + "site_detail_url": "https://comicvine.gamespot.com/prime-ten/4060-56260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56261/", + "id": 56261, + "name": "Probiti", + "site_detail_url": "https://comicvine.gamespot.com/probiti/4060-56261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56262/", + "id": 56262, + "name": "Project: Survival", + "site_detail_url": "https://comicvine.gamespot.com/project-survival/4060-56262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56263/", + "id": 56263, + "name": "Protectorate", + "site_detail_url": "https://comicvine.gamespot.com/protectorate/4060-56263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56264/", + "id": 56264, + "name": "Psycho-Warriors", + "site_detail_url": "https://comicvine.gamespot.com/psycho-warriors/4060-56264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56265/", + "id": 56265, + "name": "Quantum Banders", + "site_detail_url": "https://comicvine.gamespot.com/quantum-banders/4060-56265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56266/", + "id": 56266, + "name": "Reavers Of Arcturus", + "site_detail_url": "https://comicvine.gamespot.com/reavers-of-arcturus/4060-56266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56267/", + "id": 56267, + "name": "Requiem Sharks", + "site_detail_url": "https://comicvine.gamespot.com/requiem-sharks/4060-56267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56268/", + "id": 56268, + "name": "Revengers", + "site_detail_url": "https://comicvine.gamespot.com/revengers/4060-56268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56269/", + "id": 56269, + "name": "Savage Wolf Gang", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolf-gang/4060-56269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56270/", + "id": 56270, + "name": "Second Assembly", + "site_detail_url": "https://comicvine.gamespot.com/second-assembly/4060-56270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56271/", + "id": 56271, + "name": "SOOFI", + "site_detail_url": "https://comicvine.gamespot.com/soofi/4060-56271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56272/", + "id": 56272, + "name": "Starstealth", + "site_detail_url": "https://comicvine.gamespot.com/starstealth/4060-56272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56273/", + "id": 56273, + "name": "Stealth Inc.", + "site_detail_url": "https://comicvine.gamespot.com/stealth-inc/4060-56273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56274/", + "id": 56274, + "name": "Supernaturals", + "site_detail_url": "https://comicvine.gamespot.com/supernaturals/4060-56274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56275/", + "id": 56275, + "name": "Three Sisters", + "site_detail_url": "https://comicvine.gamespot.com/three-sisters/4060-56275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56276/", + "id": 56276, + "name": "Underground Mutant Safe-System", + "site_detail_url": "https://comicvine.gamespot.com/underground-mutant-safe-system/4060-56276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56277/", + "id": 56277, + "name": "UNISYM", + "site_detail_url": "https://comicvine.gamespot.com/unisym/4060-56277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56278/", + "id": 56278, + "name": "Vores", + "site_detail_url": "https://comicvine.gamespot.com/vores/4060-56278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56279/", + "id": 56279, + "name": "Web-Spinners", + "site_detail_url": "https://comicvine.gamespot.com/web-spinners/4060-56279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56281/", + "id": 56281, + "name": "The Inner Demons", + "site_detail_url": "https://comicvine.gamespot.com/the-inner-demons/4060-56281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56283/", + "id": 56283, + "name": "Ghost Riders Gang", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riders-gang/4060-56283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56284/", + "id": 56284, + "name": "Galactic Guardians", + "site_detail_url": "https://comicvine.gamespot.com/galactic-guardians/4060-56284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56286/", + "id": 56286, + "name": "Ubiquitor's Emissaries", + "site_detail_url": "https://comicvine.gamespot.com/ubiquitors-emissaries/4060-56286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56297/", + "id": 56297, + "name": "The Freaks", + "site_detail_url": "https://comicvine.gamespot.com/the-freaks/4060-56297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56298/", + "id": 56298, + "name": "Dracula Hunters", + "site_detail_url": "https://comicvine.gamespot.com/dracula-hunters/4060-56298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56305/", + "id": 56305, + "name": "Brethren of the Blue Fist", + "site_detail_url": "https://comicvine.gamespot.com/brethren-of-the-blue-fist/4060-56305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56306/", + "id": 56306, + "name": "X-Club", + "site_detail_url": "https://comicvine.gamespot.com/x-club/4060-56306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56307/", + "id": 56307, + "name": "The Avatars", + "site_detail_url": "https://comicvine.gamespot.com/the-avatars/4060-56307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56308/", + "id": 56308, + "name": "New Genix", + "site_detail_url": "https://comicvine.gamespot.com/new-genix/4060-56308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56322/", + "id": 56322, + "name": "Podunk Slam", + "site_detail_url": "https://comicvine.gamespot.com/podunk-slam/4060-56322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56323/", + "id": 56323, + "name": "Recombinants", + "site_detail_url": "https://comicvine.gamespot.com/recombinants/4060-56323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56324/", + "id": 56324, + "name": "Renegades", + "site_detail_url": "https://comicvine.gamespot.com/renegades/4060-56324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56326/", + "id": 56326, + "name": "Cycle Nurses", + "site_detail_url": "https://comicvine.gamespot.com/cycle-nurses/4060-56326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56327/", + "id": 56327, + "name": "Black Host", + "site_detail_url": "https://comicvine.gamespot.com/black-host/4060-56327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56329/", + "id": 56329, + "name": "Ghosts of Highway 18", + "site_detail_url": "https://comicvine.gamespot.com/ghosts-of-highway-18/4060-56329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56332/", + "id": 56332, + "name": "Kid Commandos", + "site_detail_url": "https://comicvine.gamespot.com/kid-commandos/4060-56332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56333/", + "id": 56333, + "name": "Stockpile", + "site_detail_url": "https://comicvine.gamespot.com/stockpile/4060-56333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56337/", + "id": 56337, + "name": "Femme Force", + "site_detail_url": "https://comicvine.gamespot.com/femme-force/4060-56337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56342/", + "id": 56342, + "name": "Hounds of Helios", + "site_detail_url": "https://comicvine.gamespot.com/hounds-of-helios/4060-56342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56343/", + "id": 56343, + "name": "Legion of the Damned", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-the-damned/4060-56343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56344/", + "id": 56344, + "name": "National Front", + "site_detail_url": "https://comicvine.gamespot.com/national-front/4060-56344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56345/", + "id": 56345, + "name": "Silent Ones", + "site_detail_url": "https://comicvine.gamespot.com/silent-ones/4060-56345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56347/", + "id": 56347, + "name": "Peristrike Force", + "site_detail_url": "https://comicvine.gamespot.com/peristrike-force/4060-56347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56348/", + "id": 56348, + "name": "Dancers of Zath", + "site_detail_url": "https://comicvine.gamespot.com/dancers-of-zath/4060-56348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56349/", + "id": 56349, + "name": "Snakeroot", + "site_detail_url": "https://comicvine.gamespot.com/snakeroot/4060-56349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56350/", + "id": 56350, + "name": "Zusommin", + "site_detail_url": "https://comicvine.gamespot.com/zusommin/4060-56350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56351/", + "id": 56351, + "name": "Mairavian Secret Police", + "site_detail_url": "https://comicvine.gamespot.com/mairavian-secret-police/4060-56351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56355/", + "id": 56355, + "name": "The Fraternity of Raptors", + "site_detail_url": "https://comicvine.gamespot.com/the-fraternity-of-raptors/4060-56355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56356/", + "id": 56356, + "name": "Lords of the Splinter Realms", + "site_detail_url": "https://comicvine.gamespot.com/lords-of-the-splinter-realms/4060-56356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56358/", + "id": 56358, + "name": "The Tucaro Indians", + "site_detail_url": "https://comicvine.gamespot.com/the-tucaro-indians/4060-56358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56359/", + "id": 56359, + "name": "Russian Oktober Guards", + "site_detail_url": "https://comicvine.gamespot.com/russian-oktober-guards/4060-56359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56360/", + "id": 56360, + "name": "Sweat Shop", + "site_detail_url": "https://comicvine.gamespot.com/sweat-shop/4060-56360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56373/", + "id": 56373, + "name": "Eco-Villains", + "site_detail_url": "https://comicvine.gamespot.com/eco-villains/4060-56373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56379/", + "id": 56379, + "name": "Force", + "site_detail_url": "https://comicvine.gamespot.com/force/4060-56379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56380/", + "id": 56380, + "name": "Intimidators", + "site_detail_url": "https://comicvine.gamespot.com/intimidators/4060-56380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56383/", + "id": 56383, + "name": "Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles/4060-56383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56388/", + "id": 56388, + "name": "Commandeers", + "site_detail_url": "https://comicvine.gamespot.com/commandeers/4060-56388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56389/", + "id": 56389, + "name": "The Stark", + "site_detail_url": "https://comicvine.gamespot.com/the-stark/4060-56389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56390/", + "id": 56390, + "name": "Magma Men", + "site_detail_url": "https://comicvine.gamespot.com/magma-men/4060-56390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56391/", + "id": 56391, + "name": "Karate Kommandos", + "site_detail_url": "https://comicvine.gamespot.com/karate-kommandos/4060-56391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56392/", + "id": 56392, + "name": "Darkling Lords", + "site_detail_url": "https://comicvine.gamespot.com/darkling-lords/4060-56392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56393/", + "id": 56393, + "name": "Earth Corps", + "site_detail_url": "https://comicvine.gamespot.com/earth-corps/4060-56393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56395/", + "id": 56395, + "name": "Spectral Knights", + "site_detail_url": "https://comicvine.gamespot.com/spectral-knights/4060-56395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56396/", + "id": 56396, + "name": "Bratpack", + "site_detail_url": "https://comicvine.gamespot.com/bratpack/4060-56396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56415/", + "id": 56415, + "name": "Masters of the Mental Arts", + "site_detail_url": "https://comicvine.gamespot.com/masters-of-the-mental-arts/4060-56415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56418/", + "id": 56418, + "name": "The Changelings", + "site_detail_url": "https://comicvine.gamespot.com/the-changelings/4060-56418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56424/", + "id": 56424, + "name": "Critics", + "site_detail_url": "https://comicvine.gamespot.com/critics/4060-56424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56429/", + "id": 56429, + "name": "Sons of Satannish", + "site_detail_url": "https://comicvine.gamespot.com/sons-of-satannish/4060-56429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56439/", + "id": 56439, + "name": "Strikeforce: Morituri", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-morituri/4060-56439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56445/", + "id": 56445, + "name": "Dark X-Men", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men/4060-56445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56447/", + "id": 56447, + "name": "Hyperkind", + "site_detail_url": "https://comicvine.gamespot.com/hyperkind/4060-56447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56450/", + "id": 56450, + "name": "Press Gang", + "site_detail_url": "https://comicvine.gamespot.com/press-gang/4060-56450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56457/", + "id": 56457, + "name": "The Death Gods", + "site_detail_url": "https://comicvine.gamespot.com/the-death-gods/4060-56457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56464/", + "id": 56464, + "name": "Legions of the Lost", + "site_detail_url": "https://comicvine.gamespot.com/legions-of-the-lost/4060-56464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56468/", + "id": 56468, + "name": "Alpha Prime", + "site_detail_url": "https://comicvine.gamespot.com/alpha-prime/4060-56468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56469/", + "id": 56469, + "name": "Terrible Trio", + "site_detail_url": "https://comicvine.gamespot.com/terrible-trio/4060-56469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56472/", + "id": 56472, + "name": "Strikeforce X", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-x/4060-56472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56484/", + "id": 56484, + "name": "The Strangers Prisoners", + "site_detail_url": "https://comicvine.gamespot.com/the-strangers-prisoners/4060-56484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56485/", + "id": 56485, + "name": "G.R.A.M.P.A.", + "site_detail_url": "https://comicvine.gamespot.com/grampa/4060-56485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56486/", + "id": 56486, + "name": "Blackjack", + "site_detail_url": "https://comicvine.gamespot.com/blackjack/4060-56486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56494/", + "id": 56494, + "name": "Star Sisters", + "site_detail_url": "https://comicvine.gamespot.com/star-sisters/4060-56494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56497/", + "id": 56497, + "name": "Chosen", + "site_detail_url": "https://comicvine.gamespot.com/chosen/4060-56497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56498/", + "id": 56498, + "name": "Rejects", + "site_detail_url": "https://comicvine.gamespot.com/rejects/4060-56498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56500/", + "id": 56500, + "name": "Yellow-Crested Titans", + "site_detail_url": "https://comicvine.gamespot.com/yellow-crested-titans/4060-56500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56501/", + "id": 56501, + "name": "The Elementals", + "site_detail_url": "https://comicvine.gamespot.com/the-elementals/4060-56501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56512/", + "id": 56512, + "name": "Mephitisoids", + "site_detail_url": "https://comicvine.gamespot.com/mephitisoids/4060-56512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56513/", + "id": 56513, + "name": "Ravagers of Creation", + "site_detail_url": "https://comicvine.gamespot.com/ravagers-of-creation/4060-56513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56519/", + "id": 56519, + "name": "Brethren", + "site_detail_url": "https://comicvine.gamespot.com/brethren/4060-56519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56522/", + "id": 56522, + "name": "Demon-Fire Cult", + "site_detail_url": "https://comicvine.gamespot.com/demon-fire-cult/4060-56522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56542/", + "id": 56542, + "name": "Maquis", + "site_detail_url": "https://comicvine.gamespot.com/maquis/4060-56542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56555/", + "id": 56555, + "name": "Alpha Centaurians", + "site_detail_url": "https://comicvine.gamespot.com/alpha-centaurians/4060-56555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56557/", + "id": 56557, + "name": "Olympus Corporation", + "site_detail_url": "https://comicvine.gamespot.com/olympus-corporation/4060-56557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56558/", + "id": 56558, + "name": "Sssth", + "site_detail_url": "https://comicvine.gamespot.com/sssth/4060-56558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56560/", + "id": 56560, + "name": "Project PEGASUS", + "site_detail_url": "https://comicvine.gamespot.com/project-pegasus/4060-56560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56561/", + "id": 56561, + "name": "Front Line", + "site_detail_url": "https://comicvine.gamespot.com/front-line/4060-56561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56565/", + "id": 56565, + "name": "Legion Accursed", + "site_detail_url": "https://comicvine.gamespot.com/legion-accursed/4060-56565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56566/", + "id": 56566, + "name": "F.E.A.S.T.", + "site_detail_url": "https://comicvine.gamespot.com/feast/4060-56566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56567/", + "id": 56567, + "name": "Rocketeers", + "site_detail_url": "https://comicvine.gamespot.com/rocketeers/4060-56567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56570/", + "id": 56570, + "name": "Dark Sisterhood", + "site_detail_url": "https://comicvine.gamespot.com/dark-sisterhood/4060-56570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56575/", + "id": 56575, + "name": "Z'Nox", + "site_detail_url": "https://comicvine.gamespot.com/znox/4060-56575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56583/", + "id": 56583, + "name": "Black Demon Sect", + "site_detail_url": "https://comicvine.gamespot.com/black-demon-sect/4060-56583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56584/", + "id": 56584, + "name": "S.H.E. (Super-Heroes of Europe)", + "site_detail_url": "https://comicvine.gamespot.com/she-super-heroes-of-europe/4060-56584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56585/", + "id": 56585, + "name": "B.E.S.T.", + "site_detail_url": "https://comicvine.gamespot.com/best/4060-56585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56588/", + "id": 56588, + "name": "Wicked Brigade", + "site_detail_url": "https://comicvine.gamespot.com/wicked-brigade/4060-56588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56591/", + "id": 56591, + "name": "Fatal Sisters", + "site_detail_url": "https://comicvine.gamespot.com/fatal-sisters/4060-56591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56592/", + "id": 56592, + "name": "Demons of the Realm of Madness", + "site_detail_url": "https://comicvine.gamespot.com/demons-of-the-realm-of-madness/4060-56592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56598/", + "id": 56598, + "name": "The Collectors", + "site_detail_url": "https://comicvine.gamespot.com/the-collectors/4060-56598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56609/", + "id": 56609, + "name": "Gang of Four", + "site_detail_url": "https://comicvine.gamespot.com/gang-of-four/4060-56609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56610/", + "id": 56610, + "name": "Black Spectre", + "site_detail_url": "https://comicvine.gamespot.com/black-spectre/4060-56610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56620/", + "id": 56620, + "name": "Stormtroopers", + "site_detail_url": "https://comicvine.gamespot.com/stormtroopers/4060-56620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56621/", + "id": 56621, + "name": "Holy Guard", + "site_detail_url": "https://comicvine.gamespot.com/holy-guard/4060-56621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56631/", + "id": 56631, + "name": "Convocation of Wizards", + "site_detail_url": "https://comicvine.gamespot.com/convocation-of-wizards/4060-56631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56632/", + "id": 56632, + "name": "Majesdanians", + "site_detail_url": "https://comicvine.gamespot.com/majesdanians/4060-56632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56633/", + "id": 56633, + "name": "Legion of Light", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-light/4060-56633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56635/", + "id": 56635, + "name": "Poppupians", + "site_detail_url": "https://comicvine.gamespot.com/poppupians/4060-56635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56638/", + "id": 56638, + "name": "Legion of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-vengeance/4060-56638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56640/", + "id": 56640, + "name": "Wolflings", + "site_detail_url": "https://comicvine.gamespot.com/wolflings/4060-56640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56642/", + "id": 56642, + "name": "Subterraneans", + "site_detail_url": "https://comicvine.gamespot.com/subterraneans/4060-56642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56644/", + "id": 56644, + "name": "Psigns of the Times", + "site_detail_url": "https://comicvine.gamespot.com/psigns-of-the-times/4060-56644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56653/", + "id": 56653, + "name": "Intergalactic Coalition of Survivors", + "site_detail_url": "https://comicvine.gamespot.com/intergalactic-coalition-of-survivors/4060-56653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56660/", + "id": 56660, + "name": "Women Warriors", + "site_detail_url": "https://comicvine.gamespot.com/women-warriors/4060-56660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56666/", + "id": 56666, + "name": "Double Dragons", + "site_detail_url": "https://comicvine.gamespot.com/double-dragons/4060-56666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56668/", + "id": 56668, + "name": "Aris", + "site_detail_url": "https://comicvine.gamespot.com/aris/4060-56668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56669/", + "id": 56669, + "name": "Ape Lords", + "site_detail_url": "https://comicvine.gamespot.com/ape-lords/4060-56669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56674/", + "id": 56674, + "name": "Genetix", + "site_detail_url": "https://comicvine.gamespot.com/genetix/4060-56674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56676/", + "id": 56676, + "name": "Deadly Dozen", + "site_detail_url": "https://comicvine.gamespot.com/deadly-dozen/4060-56676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56677/", + "id": 56677, + "name": "Missouri Marauders", + "site_detail_url": "https://comicvine.gamespot.com/missouri-marauders/4060-56677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56678/", + "id": 56678, + "name": "Samurai Squad", + "site_detail_url": "https://comicvine.gamespot.com/samurai-squad/4060-56678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56679/", + "id": 56679, + "name": "Gene Dogs", + "site_detail_url": "https://comicvine.gamespot.com/gene-dogs/4060-56679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56680/", + "id": 56680, + "name": "Shadow Riders", + "site_detail_url": "https://comicvine.gamespot.com/shadow-riders/4060-56680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56681/", + "id": 56681, + "name": "Brooklyn Badgers", + "site_detail_url": "https://comicvine.gamespot.com/brooklyn-badgers/4060-56681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56682/", + "id": 56682, + "name": "Para-Troop", + "site_detail_url": "https://comicvine.gamespot.com/para-troop/4060-56682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56683/", + "id": 56683, + "name": "Fem-Force", + "site_detail_url": "https://comicvine.gamespot.com/fem-force/4060-56683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56685/", + "id": 56685, + "name": "Sisterhood of Badoon", + "site_detail_url": "https://comicvine.gamespot.com/sisterhood-of-badoon/4060-56685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56688/", + "id": 56688, + "name": "Head Hunters", + "site_detail_url": "https://comicvine.gamespot.com/head-hunters/4060-56688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56689/", + "id": 56689, + "name": "Chess Set", + "site_detail_url": "https://comicvine.gamespot.com/chess-set/4060-56689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56690/", + "id": 56690, + "name": "Shadowforce Alpha", + "site_detail_url": "https://comicvine.gamespot.com/shadowforce-alpha/4060-56690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56698/", + "id": 56698, + "name": "Drogheda Royal Guard", + "site_detail_url": "https://comicvine.gamespot.com/drogheda-royal-guard/4060-56698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56699/", + "id": 56699, + "name": "Drogheda Revolutionaries", + "site_detail_url": "https://comicvine.gamespot.com/drogheda-revolutionaries/4060-56699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56700/", + "id": 56700, + "name": "Wookiees", + "site_detail_url": "https://comicvine.gamespot.com/wookiees/4060-56700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56702/", + "id": 56702, + "name": "Twi'leks", + "site_detail_url": "https://comicvine.gamespot.com/twileks/4060-56702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56709/", + "id": 56709, + "name": "Jawas", + "site_detail_url": "https://comicvine.gamespot.com/jawas/4060-56709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56723/", + "id": 56723, + "name": "Bothans", + "site_detail_url": "https://comicvine.gamespot.com/bothans/4060-56723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56727/", + "id": 56727, + "name": "Mon Calamari", + "site_detail_url": "https://comicvine.gamespot.com/mon-calamari/4060-56727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56732/", + "id": 56732, + "name": "Iridians", + "site_detail_url": "https://comicvine.gamespot.com/iridians/4060-56732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56733/", + "id": 56733, + "name": "Congregation of Finality", + "site_detail_url": "https://comicvine.gamespot.com/congregation-of-finality/4060-56733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56734/", + "id": 56734, + "name": "Assimilators", + "site_detail_url": "https://comicvine.gamespot.com/assimilators/4060-56734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56735/", + "id": 56735, + "name": "Territorial Troopers", + "site_detail_url": "https://comicvine.gamespot.com/territorial-troopers/4060-56735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56736/", + "id": 56736, + "name": "Silver Skyriders", + "site_detail_url": "https://comicvine.gamespot.com/silver-skyriders/4060-56736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56737/", + "id": 56737, + "name": "Blackbodies", + "site_detail_url": "https://comicvine.gamespot.com/blackbodies/4060-56737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56743/", + "id": 56743, + "name": "Cloud-Riders", + "site_detail_url": "https://comicvine.gamespot.com/cloud-riders/4060-56743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56747/", + "id": 56747, + "name": "Spammers", + "site_detail_url": "https://comicvine.gamespot.com/spammers/4060-56747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56748/", + "id": 56748, + "name": "Skeksis", + "site_detail_url": "https://comicvine.gamespot.com/skeksis/4060-56748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56833/", + "id": 56833, + "name": "Trandoshans", + "site_detail_url": "https://comicvine.gamespot.com/trandoshans/4060-56833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56839/", + "id": 56839, + "name": "New Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four/4060-56839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56840/", + "id": 56840, + "name": "Stark Industries", + "site_detail_url": "https://comicvine.gamespot.com/stark-industries/4060-56840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56848/", + "id": 56848, + "name": "The Other", + "site_detail_url": "https://comicvine.gamespot.com/the-other/4060-56848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56849/", + "id": 56849, + "name": "Gangers", + "site_detail_url": "https://comicvine.gamespot.com/gangers/4060-56849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56852/", + "id": 56852, + "name": "The Earth-Lords", + "site_detail_url": "https://comicvine.gamespot.com/the-earth-lords/4060-56852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56863/", + "id": 56863, + "name": "Enslavers", + "site_detail_url": "https://comicvine.gamespot.com/enslavers/4060-56863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56864/", + "id": 56864, + "name": "Fortisquians", + "site_detail_url": "https://comicvine.gamespot.com/fortisquians/4060-56864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56867/", + "id": 56867, + "name": "The Foursaken", + "site_detail_url": "https://comicvine.gamespot.com/the-foursaken/4060-56867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56871/", + "id": 56871, + "name": "Rodians", + "site_detail_url": "https://comicvine.gamespot.com/rodians/4060-56871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56879/", + "id": 56879, + "name": "Mergence", + "site_detail_url": "https://comicvine.gamespot.com/mergence/4060-56879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56880/", + "id": 56880, + "name": "Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/symbiotes/4060-56880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56905/", + "id": 56905, + "name": "Scraplet", + "site_detail_url": "https://comicvine.gamespot.com/scraplet/4060-56905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56912/", + "id": 56912, + "name": "Praetorians", + "site_detail_url": "https://comicvine.gamespot.com/praetorians/4060-56912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56919/", + "id": 56919, + "name": "Lightning Force", + "site_detail_url": "https://comicvine.gamespot.com/lightning-force/4060-56919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56925/", + "id": 56925, + "name": "Fenris", + "site_detail_url": "https://comicvine.gamespot.com/fenris/4060-56925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56932/", + "id": 56932, + "name": "Redeemers", + "site_detail_url": "https://comicvine.gamespot.com/redeemers/4060-56932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56937/", + "id": 56937, + "name": "Spacemen", + "site_detail_url": "https://comicvine.gamespot.com/spacemen/4060-56937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56953/", + "id": 56953, + "name": "Soldiers Of The Serpent", + "site_detail_url": "https://comicvine.gamespot.com/soldiers-of-the-serpent/4060-56953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56954/", + "id": 56954, + "name": "Code Red", + "site_detail_url": "https://comicvine.gamespot.com/code-red/4060-56954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56959/", + "id": 56959, + "name": "Intelligencia", + "site_detail_url": "https://comicvine.gamespot.com/intelligencia/4060-56959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56965/", + "id": 56965, + "name": "Pharegot", + "site_detail_url": "https://comicvine.gamespot.com/pharegot/4060-56965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56966/", + "id": 56966, + "name": "Spellbinders", + "site_detail_url": "https://comicvine.gamespot.com/spellbinders/4060-56966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56967/", + "id": 56967, + "name": "I'Than", + "site_detail_url": "https://comicvine.gamespot.com/ithan/4060-56967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56968/", + "id": 56968, + "name": "Crew of Sol III (Cyberspace 3000)", + "site_detail_url": "https://comicvine.gamespot.com/crew-of-sol-iii-cyberspace-3000/4060-56968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56973/", + "id": 56973, + "name": "Blastaar's Army", + "site_detail_url": "https://comicvine.gamespot.com/blastaars-army/4060-56973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56974/", + "id": 56974, + "name": "Queega", + "site_detail_url": "https://comicvine.gamespot.com/queega/4060-56974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56976/", + "id": 56976, + "name": "Disciples of Doom", + "site_detail_url": "https://comicvine.gamespot.com/disciples-of-doom/4060-56976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56977/", + "id": 56977, + "name": "Braineaters", + "site_detail_url": "https://comicvine.gamespot.com/braineaters/4060-56977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56978/", + "id": 56978, + "name": "Big Game Posse", + "site_detail_url": "https://comicvine.gamespot.com/big-game-posse/4060-56978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56979/", + "id": 56979, + "name": "Daily Globe", + "site_detail_url": "https://comicvine.gamespot.com/daily-globe/4060-56979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56982/", + "id": 56982, + "name": "Empire State University Faculty", + "site_detail_url": "https://comicvine.gamespot.com/empire-state-university-faculty/4060-56982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56983/", + "id": 56983, + "name": "Vulturions", + "site_detail_url": "https://comicvine.gamespot.com/vulturions/4060-56983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56984/", + "id": 56984, + "name": "Metahumes", + "site_detail_url": "https://comicvine.gamespot.com/metahumes/4060-56984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56985/", + "id": 56985, + "name": "Hero Killers", + "site_detail_url": "https://comicvine.gamespot.com/hero-killers/4060-56985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-56986/", + "id": 56986, + "name": "Initiative Staff", + "site_detail_url": "https://comicvine.gamespot.com/initiative-staff/4060-56986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57001/", + "id": 57001, + "name": "Annunaki", + "site_detail_url": "https://comicvine.gamespot.com/annunaki/4060-57001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57010/", + "id": 57010, + "name": "Super Hero Squad", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad/4060-57010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57014/", + "id": 57014, + "name": "Prime Sentinels", + "site_detail_url": "https://comicvine.gamespot.com/prime-sentinels/4060-57014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57017/", + "id": 57017, + "name": "Krylorians", + "site_detail_url": "https://comicvine.gamespot.com/krylorians/4060-57017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57018/", + "id": 57018, + "name": "Stonians", + "site_detail_url": "https://comicvine.gamespot.com/stonians/4060-57018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57020/", + "id": 57020, + "name": "Secret Defenders", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders/4060-57020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57026/", + "id": 57026, + "name": "Ama Collective", + "site_detail_url": "https://comicvine.gamespot.com/ama-collective/4060-57026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57027/", + "id": 57027, + "name": "Organpirates", + "site_detail_url": "https://comicvine.gamespot.com/organpirates/4060-57027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57031/", + "id": 57031, + "name": "Avengers Resistance", + "site_detail_url": "https://comicvine.gamespot.com/avengers-resistance/4060-57031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57032/", + "id": 57032, + "name": "Quentin Carnival", + "site_detail_url": "https://comicvine.gamespot.com/quentin-carnival/4060-57032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57034/", + "id": 57034, + "name": "Order of St. George", + "site_detail_url": "https://comicvine.gamespot.com/order-of-st-george/4060-57034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57035/", + "id": 57035, + "name": "Protarians", + "site_detail_url": "https://comicvine.gamespot.com/protarians/4060-57035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57036/", + "id": 57036, + "name": "Yancy Street Gang", + "site_detail_url": "https://comicvine.gamespot.com/yancy-street-gang/4060-57036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57038/", + "id": 57038, + "name": "Netherworlders", + "site_detail_url": "https://comicvine.gamespot.com/netherworlders/4060-57038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57046/", + "id": 57046, + "name": "Neo-Knights", + "site_detail_url": "https://comicvine.gamespot.com/neo-knights/4060-57046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57049/", + "id": 57049, + "name": "Z Foundation", + "site_detail_url": "https://comicvine.gamespot.com/z-foundation/4060-57049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57050/", + "id": 57050, + "name": "Sneepers", + "site_detail_url": "https://comicvine.gamespot.com/sneepers/4060-57050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57057/", + "id": 57057, + "name": "Anti-Spider Squad", + "site_detail_url": "https://comicvine.gamespot.com/anti-spider-squad/4060-57057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57061/", + "id": 57061, + "name": "Blitzkrieg Squad", + "site_detail_url": "https://comicvine.gamespot.com/blitzkrieg-squad/4060-57061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57073/", + "id": 57073, + "name": "Triune Understanding", + "site_detail_url": "https://comicvine.gamespot.com/triune-understanding/4060-57073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57078/", + "id": 57078, + "name": "Inhumanoids", + "site_detail_url": "https://comicvine.gamespot.com/inhumanoids/4060-57078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57086/", + "id": 57086, + "name": "The Fearsome Four", + "site_detail_url": "https://comicvine.gamespot.com/the-fearsome-four/4060-57086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57087/", + "id": 57087, + "name": "Deadpool Corps", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-corps/4060-57087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57091/", + "id": 57091, + "name": "Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/amazing-friends/4060-57091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57094/", + "id": 57094, + "name": "Guardsmen", + "site_detail_url": "https://comicvine.gamespot.com/guardsmen/4060-57094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57096/", + "id": 57096, + "name": "Leather and Lace", + "site_detail_url": "https://comicvine.gamespot.com/leather-and-lace/4060-57096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57103/", + "id": 57103, + "name": "Deadly Dozen", + "site_detail_url": "https://comicvine.gamespot.com/deadly-dozen/4060-57103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57113/", + "id": 57113, + "name": "Krotze International", + "site_detail_url": "https://comicvine.gamespot.com/krotze-international/4060-57113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57115/", + "id": 57115, + "name": "Codename: Spitfire", + "site_detail_url": "https://comicvine.gamespot.com/codename-spitfire/4060-57115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57121/", + "id": 57121, + "name": "Choir", + "site_detail_url": "https://comicvine.gamespot.com/choir/4060-57121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57122/", + "id": 57122, + "name": "Hearts of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/hearts-of-darkness/4060-57122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57131/", + "id": 57131, + "name": "The Council", + "site_detail_url": "https://comicvine.gamespot.com/the-council/4060-57131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57138/", + "id": 57138, + "name": "Sunset Riders", + "site_detail_url": "https://comicvine.gamespot.com/sunset-riders/4060-57138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57140/", + "id": 57140, + "name": "Iron Mask Gang", + "site_detail_url": "https://comicvine.gamespot.com/iron-mask-gang/4060-57140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57168/", + "id": 57168, + "name": "Ska'r", + "site_detail_url": "https://comicvine.gamespot.com/skar/4060-57168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57169/", + "id": 57169, + "name": "Remont Six", + "site_detail_url": "https://comicvine.gamespot.com/remont-six/4060-57169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57186/", + "id": 57186, + "name": "Hodinn", + "site_detail_url": "https://comicvine.gamespot.com/hodinn/4060-57186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57187/", + "id": 57187, + "name": "The Committee", + "site_detail_url": "https://comicvine.gamespot.com/the-committee/4060-57187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57190/", + "id": 57190, + "name": "Inner Circle", + "site_detail_url": "https://comicvine.gamespot.com/inner-circle/4060-57190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57197/", + "id": 57197, + "name": "Strontians", + "site_detail_url": "https://comicvine.gamespot.com/strontians/4060-57197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57198/", + "id": 57198, + "name": "Academy X", + "site_detail_url": "https://comicvine.gamespot.com/academy-x/4060-57198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57199/", + "id": 57199, + "name": "Ani-Mates", + "site_detail_url": "https://comicvine.gamespot.com/ani-mates/4060-57199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57200/", + "id": 57200, + "name": "P.R.I.D.E.", + "site_detail_url": "https://comicvine.gamespot.com/pride/4060-57200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57201/", + "id": 57201, + "name": "Maulers", + "site_detail_url": "https://comicvine.gamespot.com/maulers/4060-57201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57203/", + "id": 57203, + "name": "The Headshop", + "site_detail_url": "https://comicvine.gamespot.com/the-headshop/4060-57203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57212/", + "id": 57212, + "name": "Punishment Squad", + "site_detail_url": "https://comicvine.gamespot.com/punishment-squad/4060-57212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57213/", + "id": 57213, + "name": "Hellbent", + "site_detail_url": "https://comicvine.gamespot.com/hellbent/4060-57213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57251/", + "id": 57251, + "name": "Seekers", + "site_detail_url": "https://comicvine.gamespot.com/seekers/4060-57251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57258/", + "id": 57258, + "name": "Moonchildren", + "site_detail_url": "https://comicvine.gamespot.com/moonchildren/4060-57258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57265/", + "id": 57265, + "name": "Super-Apes", + "site_detail_url": "https://comicvine.gamespot.com/super-apes/4060-57265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57269/", + "id": 57269, + "name": "Alchemax", + "site_detail_url": "https://comicvine.gamespot.com/alchemax/4060-57269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57280/", + "id": 57280, + "name": "Split-Second Squad", + "site_detail_url": "https://comicvine.gamespot.com/split-second-squad/4060-57280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57290/", + "id": 57290, + "name": "Sword", + "site_detail_url": "https://comicvine.gamespot.com/sword/4060-57290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57294/", + "id": 57294, + "name": "Doc Fantastic and his Five for the Future", + "site_detail_url": "https://comicvine.gamespot.com/doc-fantastic-and-his-five-for-the-future/4060-57294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57297/", + "id": 57297, + "name": "Chain Gang", + "site_detail_url": "https://comicvine.gamespot.com/chain-gang/4060-57297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57299/", + "id": 57299, + "name": "Super Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/super-soldiers/4060-57299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57300/", + "id": 57300, + "name": "Q7 Strike Force", + "site_detail_url": "https://comicvine.gamespot.com/q7-strike-force/4060-57300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57302/", + "id": 57302, + "name": "Dragon's Claws", + "site_detail_url": "https://comicvine.gamespot.com/dragons-claws/4060-57302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57327/", + "id": 57327, + "name": "Kravinoff family", + "site_detail_url": "https://comicvine.gamespot.com/kravinoff-family/4060-57327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57330/", + "id": 57330, + "name": "Frost Family", + "site_detail_url": "https://comicvine.gamespot.com/frost-family/4060-57330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57339/", + "id": 57339, + "name": "Cult of the Third Moon", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-the-third-moon/4060-57339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57340/", + "id": 57340, + "name": "The Many-Angled Ones", + "site_detail_url": "https://comicvine.gamespot.com/the-many-angled-ones/4060-57340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57341/", + "id": 57341, + "name": "A.P.N.G.", + "site_detail_url": "https://comicvine.gamespot.com/apng/4060-57341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57347/", + "id": 57347, + "name": "Drenx", + "site_detail_url": "https://comicvine.gamespot.com/drenx/4060-57347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57354/", + "id": 57354, + "name": "Avengers Academy", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy/4060-57354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57411/", + "id": 57411, + "name": "Landau, Luckman, and Lake", + "site_detail_url": "https://comicvine.gamespot.com/landau-luckman-and-lake/4060-57411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57417/", + "id": 57417, + "name": "Leviathan", + "site_detail_url": "https://comicvine.gamespot.com/leviathan/4060-57417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57418/", + "id": 57418, + "name": "Division U", + "site_detail_url": "https://comicvine.gamespot.com/division-u/4060-57418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57422/", + "id": 57422, + "name": "Human High Council", + "site_detail_url": "https://comicvine.gamespot.com/human-high-council/4060-57422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57423/", + "id": 57423, + "name": "Mutant X", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x/4060-57423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57445/", + "id": 57445, + "name": "Spider-Girls", + "site_detail_url": "https://comicvine.gamespot.com/spider-girls/4060-57445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57448/", + "id": 57448, + "name": "Mutant Force", + "site_detail_url": "https://comicvine.gamespot.com/mutant-force/4060-57448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57449/", + "id": 57449, + "name": "Flying Trolls", + "site_detail_url": "https://comicvine.gamespot.com/flying-trolls/4060-57449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57460/", + "id": 57460, + "name": "The Pack", + "site_detail_url": "https://comicvine.gamespot.com/the-pack/4060-57460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57461/", + "id": 57461, + "name": "The Undying", + "site_detail_url": "https://comicvine.gamespot.com/the-undying/4060-57461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57469/", + "id": 57469, + "name": "Combat Colin and Semi Automatic Steve", + "site_detail_url": "https://comicvine.gamespot.com/combat-colin-and-semi-automatic-steve/4060-57469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57470/", + "id": 57470, + "name": "Arashikage Clan", + "site_detail_url": "https://comicvine.gamespot.com/arashikage-clan/4060-57470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57477/", + "id": 57477, + "name": "Council of The Guardians of All Galaxies", + "site_detail_url": "https://comicvine.gamespot.com/council-of-the-guardians-of-all-galaxies/4060-57477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57480/", + "id": 57480, + "name": "The Iron Legion", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-legion/4060-57480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57481/", + "id": 57481, + "name": "Priests of Pama", + "site_detail_url": "https://comicvine.gamespot.com/priests-of-pama/4060-57481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57487/", + "id": 57487, + "name": "The Black Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-black-hand/4060-57487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57488/", + "id": 57488, + "name": "European Defense Initiative", + "site_detail_url": "https://comicvine.gamespot.com/european-defense-initiative/4060-57488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57490/", + "id": 57490, + "name": "O.D.S.T.", + "site_detail_url": "https://comicvine.gamespot.com/odst/4060-57490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57495/", + "id": 57495, + "name": "Shadows", + "site_detail_url": "https://comicvine.gamespot.com/shadows/4060-57495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57496/", + "id": 57496, + "name": "Soldiers of Misfortune", + "site_detail_url": "https://comicvine.gamespot.com/soldiers-of-misfortune/4060-57496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57507/", + "id": 57507, + "name": "Rush Club", + "site_detail_url": "https://comicvine.gamespot.com/rush-club/4060-57507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57513/", + "id": 57513, + "name": "Mutant Response Division", + "site_detail_url": "https://comicvine.gamespot.com/mutant-response-division/4060-57513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57515/", + "id": 57515, + "name": "NYX", + "site_detail_url": "https://comicvine.gamespot.com/nyx/4060-57515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57516/", + "id": 57516, + "name": "The Zapata Brothers", + "site_detail_url": "https://comicvine.gamespot.com/the-zapata-brothers/4060-57516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57517/", + "id": 57517, + "name": "AIMarines", + "site_detail_url": "https://comicvine.gamespot.com/aimarines/4060-57517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57525/", + "id": 57525, + "name": "USS Voyager Crew", + "site_detail_url": "https://comicvine.gamespot.com/uss-voyager-crew/4060-57525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57529/", + "id": 57529, + "name": "The Nail", + "site_detail_url": "https://comicvine.gamespot.com/the-nail/4060-57529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57530/", + "id": 57530, + "name": "G.E.I.S.T.", + "site_detail_url": "https://comicvine.gamespot.com/geist/4060-57530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57532/", + "id": 57532, + "name": "W.C.A.", + "site_detail_url": "https://comicvine.gamespot.com/w-c-a/4060-57532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57536/", + "id": 57536, + "name": "Flaming Sword", + "site_detail_url": "https://comicvine.gamespot.com/flaming-sword/4060-57536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57538/", + "id": 57538, + "name": "Summers Rebellion", + "site_detail_url": "https://comicvine.gamespot.com/summers-rebellion/4060-57538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57543/", + "id": 57543, + "name": "Warzone", + "site_detail_url": "https://comicvine.gamespot.com/warzone/4060-57543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57545/", + "id": 57545, + "name": "Super-Skrulls", + "site_detail_url": "https://comicvine.gamespot.com/super-skrulls/4060-57545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57546/", + "id": 57546, + "name": "Warskrulls", + "site_detail_url": "https://comicvine.gamespot.com/warskrulls/4060-57546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57548/", + "id": 57548, + "name": "Goblin Cult", + "site_detail_url": "https://comicvine.gamespot.com/goblin-cult/4060-57548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57551/", + "id": 57551, + "name": "Toxic Crusaders", + "site_detail_url": "https://comicvine.gamespot.com/toxic-crusaders/4060-57551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57552/", + "id": 57552, + "name": "Future Foundation", + "site_detail_url": "https://comicvine.gamespot.com/future-foundation/4060-57552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57559/", + "id": 57559, + "name": "Chitauri", + "site_detail_url": "https://comicvine.gamespot.com/chitauri/4060-57559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57569/", + "id": 57569, + "name": "Team War Machine", + "site_detail_url": "https://comicvine.gamespot.com/team-war-machine/4060-57569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57576/", + "id": 57576, + "name": "Bastards of Evil", + "site_detail_url": "https://comicvine.gamespot.com/bastards-of-evil/4060-57576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57584/", + "id": 57584, + "name": "Hauk'ka", + "site_detail_url": "https://comicvine.gamespot.com/haukka/4060-57584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57596/", + "id": 57596, + "name": "War-Mind", + "site_detail_url": "https://comicvine.gamespot.com/war-mind/4060-57596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57599/", + "id": 57599, + "name": "Starblasters", + "site_detail_url": "https://comicvine.gamespot.com/starblasters/4060-57599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57600/", + "id": 57600, + "name": "The Enigma Force", + "site_detail_url": "https://comicvine.gamespot.com/the-enigma-force/4060-57600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57609/", + "id": 57609, + "name": "Cyber-Sidhe", + "site_detail_url": "https://comicvine.gamespot.com/cyber-sidhe/4060-57609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57610/", + "id": 57610, + "name": "I.C.O.N.", + "site_detail_url": "https://comicvine.gamespot.com/icon/4060-57610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57611/", + "id": 57611, + "name": "Brute Force", + "site_detail_url": "https://comicvine.gamespot.com/brute-force/4060-57611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57612/", + "id": 57612, + "name": "Heavy Metal", + "site_detail_url": "https://comicvine.gamespot.com/heavy-metal/4060-57612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57615/", + "id": 57615, + "name": "Anchorite Sect", + "site_detail_url": "https://comicvine.gamespot.com/anchorite-sect/4060-57615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57616/", + "id": 57616, + "name": "Claw Sect", + "site_detail_url": "https://comicvine.gamespot.com/claw-sect/4060-57616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57617/", + "id": 57617, + "name": "Krieger Sect", + "site_detail_url": "https://comicvine.gamespot.com/krieger-sect/4060-57617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57619/", + "id": 57619, + "name": "Plodex", + "site_detail_url": "https://comicvine.gamespot.com/plodex/4060-57619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57624/", + "id": 57624, + "name": "Sword of Judgement", + "site_detail_url": "https://comicvine.gamespot.com/sword-of-judgement/4060-57624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57626/", + "id": 57626, + "name": "Cold Warriors", + "site_detail_url": "https://comicvine.gamespot.com/cold-warriors/4060-57626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57627/", + "id": 57627, + "name": "Moksha sect", + "site_detail_url": "https://comicvine.gamespot.com/moksha-sect/4060-57627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57631/", + "id": 57631, + "name": "Siren Sect", + "site_detail_url": "https://comicvine.gamespot.com/siren-sect/4060-57631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57632/", + "id": 57632, + "name": "Nosferatu Sect", + "site_detail_url": "https://comicvine.gamespot.com/nosferatu-sect/4060-57632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57633/", + "id": 57633, + "name": "Charniputra Sect", + "site_detail_url": "https://comicvine.gamespot.com/charniputra-sect/4060-57633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57634/", + "id": 57634, + "name": "Mystikos Sect", + "site_detail_url": "https://comicvine.gamespot.com/mystikos-sect/4060-57634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57635/", + "id": 57635, + "name": "Aqueos", + "site_detail_url": "https://comicvine.gamespot.com/aqueos/4060-57635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57657/", + "id": 57657, + "name": "Unkillables", + "site_detail_url": "https://comicvine.gamespot.com/unkillables/4060-57657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57658/", + "id": 57658, + "name": "Department F.66", + "site_detail_url": "https://comicvine.gamespot.com/department-f66/4060-57658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57663/", + "id": 57663, + "name": "Sandstormers", + "site_detail_url": "https://comicvine.gamespot.com/sandstormers/4060-57663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57676/", + "id": 57676, + "name": "Ultimate Warriors", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-warriors/4060-57676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57680/", + "id": 57680, + "name": "Alpha Gen Soviet Super Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/alpha-gen-soviet-super-soldiers/4060-57680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57681/", + "id": 57681, + "name": "D'Bari", + "site_detail_url": "https://comicvine.gamespot.com/dbari/4060-57681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57698/", + "id": 57698, + "name": "Shadow Council", + "site_detail_url": "https://comicvine.gamespot.com/shadow-council/4060-57698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57704/", + "id": 57704, + "name": "The Machine Resistance", + "site_detail_url": "https://comicvine.gamespot.com/the-machine-resistance/4060-57704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57710/", + "id": 57710, + "name": "Mannites", + "site_detail_url": "https://comicvine.gamespot.com/mannites/4060-57710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57732/", + "id": 57732, + "name": "Yakiba", + "site_detail_url": "https://comicvine.gamespot.com/yakiba/4060-57732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57733/", + "id": 57733, + "name": "Quists", + "site_detail_url": "https://comicvine.gamespot.com/quists/4060-57733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57761/", + "id": 57761, + "name": "Xartans", + "site_detail_url": "https://comicvine.gamespot.com/xartans/4060-57761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57762/", + "id": 57762, + "name": "Fomalhauti", + "site_detail_url": "https://comicvine.gamespot.com/fomalhauti/4060-57762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57763/", + "id": 57763, + "name": "Banari", + "site_detail_url": "https://comicvine.gamespot.com/banari/4060-57763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57767/", + "id": 57767, + "name": "N'Garai", + "site_detail_url": "https://comicvine.gamespot.com/ngarai/4060-57767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57771/", + "id": 57771, + "name": "The Happy Campers", + "site_detail_url": "https://comicvine.gamespot.com/the-happy-campers/4060-57771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57772/", + "id": 57772, + "name": "The Black Hole Sons", + "site_detail_url": "https://comicvine.gamespot.com/the-black-hole-sons/4060-57772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57780/", + "id": 57780, + "name": "Tridents", + "site_detail_url": "https://comicvine.gamespot.com/tridents/4060-57780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57788/", + "id": 57788, + "name": "Cyber Ninjas", + "site_detail_url": "https://comicvine.gamespot.com/cyber-ninjas/4060-57788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57802/", + "id": 57802, + "name": "Star Brigade", + "site_detail_url": "https://comicvine.gamespot.com/star-brigade/4060-57802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57806/", + "id": 57806, + "name": "X", + "site_detail_url": "https://comicvine.gamespot.com/x/4060-57806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57818/", + "id": 57818, + "name": "Flashmob", + "site_detail_url": "https://comicvine.gamespot.com/flashmob/4060-57818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57819/", + "id": 57819, + "name": "Project Purgatory", + "site_detail_url": "https://comicvine.gamespot.com/project-purgatory/4060-57819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57822/", + "id": 57822, + "name": "Dream Team", + "site_detail_url": "https://comicvine.gamespot.com/dream-team/4060-57822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57828/", + "id": 57828, + "name": "The Bio-Predators", + "site_detail_url": "https://comicvine.gamespot.com/the-bio-predators/4060-57828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57834/", + "id": 57834, + "name": "The Swinester Six", + "site_detail_url": "https://comicvine.gamespot.com/the-swinester-six/4060-57834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57847/", + "id": 57847, + "name": "Muir Island X-Men", + "site_detail_url": "https://comicvine.gamespot.com/muir-island-x-men/4060-57847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57856/", + "id": 57856, + "name": "WebCorps", + "site_detail_url": "https://comicvine.gamespot.com/webcorps/4060-57856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57857/", + "id": 57857, + "name": "Stars and Stripes", + "site_detail_url": "https://comicvine.gamespot.com/stars-and-stripes/4060-57857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57863/", + "id": 57863, + "name": "Magnum Munitions", + "site_detail_url": "https://comicvine.gamespot.com/magnum-munitions/4060-57863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57867/", + "id": 57867, + "name": "Stark Prosthetics", + "site_detail_url": "https://comicvine.gamespot.com/stark-prosthetics/4060-57867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57869/", + "id": 57869, + "name": "The Warriors", + "site_detail_url": "https://comicvine.gamespot.com/the-warriors/4060-57869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57872/", + "id": 57872, + "name": "Marvanites", + "site_detail_url": "https://comicvine.gamespot.com/marvanites/4060-57872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57873/", + "id": 57873, + "name": "Nuwali", + "site_detail_url": "https://comicvine.gamespot.com/nuwali/4060-57873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57874/", + "id": 57874, + "name": "Quons", + "site_detail_url": "https://comicvine.gamespot.com/quons/4060-57874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57876/", + "id": 57876, + "name": "Thanosi", + "site_detail_url": "https://comicvine.gamespot.com/thanosi/4060-57876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57884/", + "id": 57884, + "name": "The Celestial Order of the Hai-Dai", + "site_detail_url": "https://comicvine.gamespot.com/the-celestial-order-of-the-hai-dai/4060-57884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57886/", + "id": 57886, + "name": "Zenn-Lavians", + "site_detail_url": "https://comicvine.gamespot.com/zenn-lavians/4060-57886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57887/", + "id": 57887, + "name": "Arcturans", + "site_detail_url": "https://comicvine.gamespot.com/arcturans/4060-57887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57888/", + "id": 57888, + "name": "Saurids", + "site_detail_url": "https://comicvine.gamespot.com/saurids/4060-57888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57889/", + "id": 57889, + "name": "Bombshells", + "site_detail_url": "https://comicvine.gamespot.com/bombshells/4060-57889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57893/", + "id": 57893, + "name": "Five Lights", + "site_detail_url": "https://comicvine.gamespot.com/five-lights/4060-57893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57906/", + "id": 57906, + "name": "Inferno Babies", + "site_detail_url": "https://comicvine.gamespot.com/inferno-babies/4060-57906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57908/", + "id": 57908, + "name": "Fall People", + "site_detail_url": "https://comicvine.gamespot.com/fall-people/4060-57908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57910/", + "id": 57910, + "name": "Dead Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dead-avengers/4060-57910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57912/", + "id": 57912, + "name": "Aakon", + "site_detail_url": "https://comicvine.gamespot.com/aakon/4060-57912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57913/", + "id": 57913, + "name": "Great Wall", + "site_detail_url": "https://comicvine.gamespot.com/great-wall/4060-57913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57918/", + "id": 57918, + "name": "Old Gods of Zenn-La", + "site_detail_url": "https://comicvine.gamespot.com/old-gods-of-zenn-la/4060-57918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57924/", + "id": 57924, + "name": "Godzilla Squad", + "site_detail_url": "https://comicvine.gamespot.com/godzilla-squad/4060-57924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57931/", + "id": 57931, + "name": "Minions' International Liberation Front", + "site_detail_url": "https://comicvine.gamespot.com/minions-international-liberation-front/4060-57931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57932/", + "id": 57932, + "name": "The Darkest Army", + "site_detail_url": "https://comicvine.gamespot.com/the-darkest-army/4060-57932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57935/", + "id": 57935, + "name": "Hysteries", + "site_detail_url": "https://comicvine.gamespot.com/hysteries/4060-57935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57937/", + "id": 57937, + "name": "The Lucky Seven", + "site_detail_url": "https://comicvine.gamespot.com/the-lucky-seven/4060-57937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57958/", + "id": 57958, + "name": "Monsters of Monster Island", + "site_detail_url": "https://comicvine.gamespot.com/monsters-of-monster-island/4060-57958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57959/", + "id": 57959, + "name": "Bannervengers", + "site_detail_url": "https://comicvine.gamespot.com/bannervengers/4060-57959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57964/", + "id": 57964, + "name": "SublimeCorp", + "site_detail_url": "https://comicvine.gamespot.com/sublimecorp/4060-57964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57965/", + "id": 57965, + "name": "Shatterforce", + "site_detail_url": "https://comicvine.gamespot.com/shatterforce/4060-57965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57969/", + "id": 57969, + "name": "Special Executive", + "site_detail_url": "https://comicvine.gamespot.com/special-executive/4060-57969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57971/", + "id": 57971, + "name": "The Mongrels", + "site_detail_url": "https://comicvine.gamespot.com/the-mongrels/4060-57971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57973/", + "id": 57973, + "name": "Annihilators", + "site_detail_url": "https://comicvine.gamespot.com/annihilators/4060-57973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57977/", + "id": 57977, + "name": "D/Monix", + "site_detail_url": "https://comicvine.gamespot.com/dmonix/4060-57977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57979/", + "id": 57979, + "name": "Dragon Tong", + "site_detail_url": "https://comicvine.gamespot.com/dragon-tong/4060-57979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57982/", + "id": 57982, + "name": "Terrible Trio", + "site_detail_url": "https://comicvine.gamespot.com/terrible-trio/4060-57982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57992/", + "id": 57992, + "name": "Baluurians", + "site_detail_url": "https://comicvine.gamespot.com/baluurians/4060-57992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-57996/", + "id": 57996, + "name": "Null-Trons", + "site_detail_url": "https://comicvine.gamespot.com/null-trons/4060-57996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58022/", + "id": 58022, + "name": "Deep Six", + "site_detail_url": "https://comicvine.gamespot.com/deep-six/4060-58022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58029/", + "id": 58029, + "name": "The Select", + "site_detail_url": "https://comicvine.gamespot.com/the-select/4060-58029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58039/", + "id": 58039, + "name": "HYDRA High Council", + "site_detail_url": "https://comicvine.gamespot.com/hydra-high-council/4060-58039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58046/", + "id": 58046, + "name": "Laxidazians", + "site_detail_url": "https://comicvine.gamespot.com/laxidazians/4060-58046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58047/", + "id": 58047, + "name": "Red Dragon", + "site_detail_url": "https://comicvine.gamespot.com/red-dragon/4060-58047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58057/", + "id": 58057, + "name": "Shosei Order", + "site_detail_url": "https://comicvine.gamespot.com/shosei-order/4060-58057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58063/", + "id": 58063, + "name": "The Yogi Yahooeys", + "site_detail_url": "https://comicvine.gamespot.com/the-yogi-yahooeys/4060-58063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58065/", + "id": 58065, + "name": "The Really Rottens", + "site_detail_url": "https://comicvine.gamespot.com/the-really-rottens/4060-58065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58074/", + "id": 58074, + "name": "Asura", + "site_detail_url": "https://comicvine.gamespot.com/asura/4060-58074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58079/", + "id": 58079, + "name": "Army of Insects", + "site_detail_url": "https://comicvine.gamespot.com/army-of-insects/4060-58079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58081/", + "id": 58081, + "name": "The Charter", + "site_detail_url": "https://comicvine.gamespot.com/the-charter/4060-58081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58082/", + "id": 58082, + "name": "Axi-Tun", + "site_detail_url": "https://comicvine.gamespot.com/axi-tun/4060-58082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58085/", + "id": 58085, + "name": "Mbangawi Army", + "site_detail_url": "https://comicvine.gamespot.com/mbangawi-army/4060-58085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58093/", + "id": 58093, + "name": "Silver Squad", + "site_detail_url": "https://comicvine.gamespot.com/silver-squad/4060-58093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58095/", + "id": 58095, + "name": "Super Hydra Agents", + "site_detail_url": "https://comicvine.gamespot.com/super-hydra-agents/4060-58095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58098/", + "id": 58098, + "name": "Whyos", + "site_detail_url": "https://comicvine.gamespot.com/whyos/4060-58098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58114/", + "id": 58114, + "name": "Sons of the Scarab", + "site_detail_url": "https://comicvine.gamespot.com/sons-of-the-scarab/4060-58114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58125/", + "id": 58125, + "name": "Nelwyns", + "site_detail_url": "https://comicvine.gamespot.com/nelwyns/4060-58125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58142/", + "id": 58142, + "name": "Saur-Lords", + "site_detail_url": "https://comicvine.gamespot.com/saur-lords/4060-58142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58153/", + "id": 58153, + "name": "Commedia Dell'Morte", + "site_detail_url": "https://comicvine.gamespot.com/commedia-dellmorte/4060-58153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58154/", + "id": 58154, + "name": "Bastard Sons Of Wilbur Day", + "site_detail_url": "https://comicvine.gamespot.com/bastard-sons-of-wilbur-day/4060-58154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58156/", + "id": 58156, + "name": "Legion of Light", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-light/4060-58156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58160/", + "id": 58160, + "name": "Force Warriors", + "site_detail_url": "https://comicvine.gamespot.com/force-warriors/4060-58160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58165/", + "id": 58165, + "name": "Power Platoon", + "site_detail_url": "https://comicvine.gamespot.com/power-platoon/4060-58165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58166/", + "id": 58166, + "name": "N-Men", + "site_detail_url": "https://comicvine.gamespot.com/n-men/4060-58166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58172/", + "id": 58172, + "name": "Four Horsemen of the Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/four-horsemen-of-the-apocalypse/4060-58172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58175/", + "id": 58175, + "name": "Church of Humanity", + "site_detail_url": "https://comicvine.gamespot.com/church-of-humanity/4060-58175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58177/", + "id": 58177, + "name": "Troll Associates", + "site_detail_url": "https://comicvine.gamespot.com/troll-associates/4060-58177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58182/", + "id": 58182, + "name": "The Great Wheel", + "site_detail_url": "https://comicvine.gamespot.com/the-great-wheel/4060-58182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58208/", + "id": 58208, + "name": "The All-Hate Squad", + "site_detail_url": "https://comicvine.gamespot.com/the-all-hate-squad/4060-58208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58224/", + "id": 58224, + "name": "Executive Elite", + "site_detail_url": "https://comicvine.gamespot.com/executive-elite/4060-58224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58227/", + "id": 58227, + "name": "VR Troopers", + "site_detail_url": "https://comicvine.gamespot.com/vr-troopers/4060-58227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58228/", + "id": 58228, + "name": "The Harvesters", + "site_detail_url": "https://comicvine.gamespot.com/the-harvesters/4060-58228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58236/", + "id": 58236, + "name": "Buzzard Brothers", + "site_detail_url": "https://comicvine.gamespot.com/buzzard-brothers/4060-58236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58238/", + "id": 58238, + "name": "Mystery Men", + "site_detail_url": "https://comicvine.gamespot.com/mystery-men/4060-58238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58239/", + "id": 58239, + "name": "Ano-Athox", + "site_detail_url": "https://comicvine.gamespot.com/ano-athox/4060-58239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58241/", + "id": 58241, + "name": "Satan's Saints", + "site_detail_url": "https://comicvine.gamespot.com/satans-saints/4060-58241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58242/", + "id": 58242, + "name": "Pale Riders", + "site_detail_url": "https://comicvine.gamespot.com/pale-riders/4060-58242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58243/", + "id": 58243, + "name": "Crane Daughters", + "site_detail_url": "https://comicvine.gamespot.com/crane-daughters/4060-58243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58246/", + "id": 58246, + "name": "Deathlok Legion", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-legion/4060-58246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58252/", + "id": 58252, + "name": "Beast-Men", + "site_detail_url": "https://comicvine.gamespot.com/beast-men/4060-58252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58253/", + "id": 58253, + "name": "Siris", + "site_detail_url": "https://comicvine.gamespot.com/siris/4060-58253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58258/", + "id": 58258, + "name": "New Canaanites", + "site_detail_url": "https://comicvine.gamespot.com/new-canaanites/4060-58258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58260/", + "id": 58260, + "name": "Hunters of Vellus-Kar", + "site_detail_url": "https://comicvine.gamespot.com/hunters-of-vellus-kar/4060-58260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58262/", + "id": 58262, + "name": "Uhari", + "site_detail_url": "https://comicvine.gamespot.com/uhari/4060-58262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58267/", + "id": 58267, + "name": "Moonstar Cadre", + "site_detail_url": "https://comicvine.gamespot.com/moonstar-cadre/4060-58267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58269/", + "id": 58269, + "name": "Gate-Keepers", + "site_detail_url": "https://comicvine.gamespot.com/gate-keepers/4060-58269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58270/", + "id": 58270, + "name": "Gor-Tokian Subterraneans", + "site_detail_url": "https://comicvine.gamespot.com/gor-tokian-subterraneans/4060-58270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58272/", + "id": 58272, + "name": "Undergrowth Resistance", + "site_detail_url": "https://comicvine.gamespot.com/undergrowth-resistance/4060-58272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58273/", + "id": 58273, + "name": "Psycho Circus", + "site_detail_url": "https://comicvine.gamespot.com/psycho-circus/4060-58273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58274/", + "id": 58274, + "name": "Krook", + "site_detail_url": "https://comicvine.gamespot.com/krook/4060-58274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58276/", + "id": 58276, + "name": "The Outcasts", + "site_detail_url": "https://comicvine.gamespot.com/the-outcasts/4060-58276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58278/", + "id": 58278, + "name": "The Worthy", + "site_detail_url": "https://comicvine.gamespot.com/the-worthy/4060-58278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58281/", + "id": 58281, + "name": "Frogs of Central Park", + "site_detail_url": "https://comicvine.gamespot.com/frogs-of-central-park/4060-58281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58282/", + "id": 58282, + "name": "Rats of Central Park", + "site_detail_url": "https://comicvine.gamespot.com/rats-of-central-park/4060-58282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58286/", + "id": 58286, + "name": "Avians", + "site_detail_url": "https://comicvine.gamespot.com/avians/4060-58286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58302/", + "id": 58302, + "name": "The Unforgiven", + "site_detail_url": "https://comicvine.gamespot.com/the-unforgiven/4060-58302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58303/", + "id": 58303, + "name": "S.C.A.R.s.", + "site_detail_url": "https://comicvine.gamespot.com/scars/4060-58303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58304/", + "id": 58304, + "name": "Breakworlders", + "site_detail_url": "https://comicvine.gamespot.com/breakworlders/4060-58304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58314/", + "id": 58314, + "name": "Archeopians", + "site_detail_url": "https://comicvine.gamespot.com/archeopians/4060-58314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58320/", + "id": 58320, + "name": "Wakandan Army", + "site_detail_url": "https://comicvine.gamespot.com/wakandan-army/4060-58320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58334/", + "id": 58334, + "name": "Century Club", + "site_detail_url": "https://comicvine.gamespot.com/century-club/4060-58334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58342/", + "id": 58342, + "name": "Evolutionaries", + "site_detail_url": "https://comicvine.gamespot.com/evolutionaries/4060-58342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58348/", + "id": 58348, + "name": "Warhawks", + "site_detail_url": "https://comicvine.gamespot.com/warhawks/4060-58348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58353/", + "id": 58353, + "name": "Carbone Family", + "site_detail_url": "https://comicvine.gamespot.com/carbone-family/4060-58353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58354/", + "id": 58354, + "name": "Saturnian Hawk-Hounds", + "site_detail_url": "https://comicvine.gamespot.com/saturnian-hawk-hounds/4060-58354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58356/", + "id": 58356, + "name": "Little Sister of Eluria", + "site_detail_url": "https://comicvine.gamespot.com/little-sister-of-eluria/4060-58356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58357/", + "id": 58357, + "name": "Zefiro Gypsies", + "site_detail_url": "https://comicvine.gamespot.com/zefiro-gypsies/4060-58357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58358/", + "id": 58358, + "name": "Pixel", + "site_detail_url": "https://comicvine.gamespot.com/pixel/4060-58358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58363/", + "id": 58363, + "name": "Furious Five", + "site_detail_url": "https://comicvine.gamespot.com/furious-five/4060-58363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58364/", + "id": 58364, + "name": "Retox", + "site_detail_url": "https://comicvine.gamespot.com/retox/4060-58364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58378/", + "id": 58378, + "name": "Kaylar", + "site_detail_url": "https://comicvine.gamespot.com/kaylar/4060-58378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58379/", + "id": 58379, + "name": "Talosians", + "site_detail_url": "https://comicvine.gamespot.com/talosians/4060-58379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58382/", + "id": 58382, + "name": "Varchas Crew", + "site_detail_url": "https://comicvine.gamespot.com/varchas-crew/4060-58382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58386/", + "id": 58386, + "name": "Lirins", + "site_detail_url": "https://comicvine.gamespot.com/lirins/4060-58386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58406/", + "id": 58406, + "name": "SPARTAN-II Program", + "site_detail_url": "https://comicvine.gamespot.com/spartan-ii-program/4060-58406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58418/", + "id": 58418, + "name": "Aquatic Assault Stormtrooper", + "site_detail_url": "https://comicvine.gamespot.com/aquatic-assault-stormtrooper/4060-58418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58420/", + "id": 58420, + "name": "Prophets", + "site_detail_url": "https://comicvine.gamespot.com/prophets/4060-58420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58422/", + "id": 58422, + "name": "Drones", + "site_detail_url": "https://comicvine.gamespot.com/drones/4060-58422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58423/", + "id": 58423, + "name": "Grunts", + "site_detail_url": "https://comicvine.gamespot.com/grunts/4060-58423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58425/", + "id": 58425, + "name": "Hunters", + "site_detail_url": "https://comicvine.gamespot.com/hunters/4060-58425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58426/", + "id": 58426, + "name": "Engineers", + "site_detail_url": "https://comicvine.gamespot.com/engineers/4060-58426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58430/", + "id": 58430, + "name": "Fatboys", + "site_detail_url": "https://comicvine.gamespot.com/fatboys/4060-58430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58438/", + "id": 58438, + "name": "Chakuun", + "site_detail_url": "https://comicvine.gamespot.com/chakuun/4060-58438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58443/", + "id": 58443, + "name": "Doom's Robot Army", + "site_detail_url": "https://comicvine.gamespot.com/dooms-robot-army/4060-58443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58444/", + "id": 58444, + "name": "Bounty Crew", + "site_detail_url": "https://comicvine.gamespot.com/bounty-crew/4060-58444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58445/", + "id": 58445, + "name": "Enterprise A Crew", + "site_detail_url": "https://comicvine.gamespot.com/enterprise-a-crew/4060-58445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58446/", + "id": 58446, + "name": "Excelsior Crew", + "site_detail_url": "https://comicvine.gamespot.com/excelsior-crew/4060-58446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58448/", + "id": 58448, + "name": "Temazi", + "site_detail_url": "https://comicvine.gamespot.com/temazi/4060-58448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58449/", + "id": 58449, + "name": "Slaves of Kral", + "site_detail_url": "https://comicvine.gamespot.com/slaves-of-kral/4060-58449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58475/", + "id": 58475, + "name": "Alpha Strike", + "site_detail_url": "https://comicvine.gamespot.com/alpha-strike/4060-58475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58480/", + "id": 58480, + "name": "Brides of Set", + "site_detail_url": "https://comicvine.gamespot.com/brides-of-set/4060-58480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58494/", + "id": 58494, + "name": "Tempo Cadre", + "site_detail_url": "https://comicvine.gamespot.com/tempo-cadre/4060-58494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58498/", + "id": 58498, + "name": "Mala", + "site_detail_url": "https://comicvine.gamespot.com/mala/4060-58498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58499/", + "id": 58499, + "name": "Chordai", + "site_detail_url": "https://comicvine.gamespot.com/chordai/4060-58499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58517/", + "id": 58517, + "name": "Advocates", + "site_detail_url": "https://comicvine.gamespot.com/advocates/4060-58517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58518/", + "id": 58518, + "name": "Chevaliers", + "site_detail_url": "https://comicvine.gamespot.com/chevaliers/4060-58518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58519/", + "id": 58519, + "name": "Tektos", + "site_detail_url": "https://comicvine.gamespot.com/tektos/4060-58519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58521/", + "id": 58521, + "name": "Crazy Sues", + "site_detail_url": "https://comicvine.gamespot.com/crazy-sues/4060-58521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58524/", + "id": 58524, + "name": "S.T.R.I.K.E.", + "site_detail_url": "https://comicvine.gamespot.com/strike/4060-58524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58525/", + "id": 58525, + "name": "Council Of Doom", + "site_detail_url": "https://comicvine.gamespot.com/council-of-doom/4060-58525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58526/", + "id": 58526, + "name": "Fearsome Four", + "site_detail_url": "https://comicvine.gamespot.com/fearsome-four/4060-58526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58528/", + "id": 58528, + "name": "Sagittarians", + "site_detail_url": "https://comicvine.gamespot.com/sagittarians/4060-58528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58529/", + "id": 58529, + "name": "Red Right Hand", + "site_detail_url": "https://comicvine.gamespot.com/red-right-hand/4060-58529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58530/", + "id": 58530, + "name": "Black Samurai", + "site_detail_url": "https://comicvine.gamespot.com/black-samurai/4060-58530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58533/", + "id": 58533, + "name": "Bold Urban Commandos", + "site_detail_url": "https://comicvine.gamespot.com/bold-urban-commandos/4060-58533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58540/", + "id": 58540, + "name": "Fight-Brigade", + "site_detail_url": "https://comicvine.gamespot.com/fight-brigade/4060-58540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58543/", + "id": 58543, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4060-58543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58547/", + "id": 58547, + "name": "Exemplars", + "site_detail_url": "https://comicvine.gamespot.com/exemplars/4060-58547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58548/", + "id": 58548, + "name": "Paladins", + "site_detail_url": "https://comicvine.gamespot.com/paladins/4060-58548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58550/", + "id": 58550, + "name": "Undercloaks", + "site_detail_url": "https://comicvine.gamespot.com/undercloaks/4060-58550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58551/", + "id": 58551, + "name": "Gorn", + "site_detail_url": "https://comicvine.gamespot.com/gorn/4060-58551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58557/", + "id": 58557, + "name": "Scarlet Knights", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-knights/4060-58557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58560/", + "id": 58560, + "name": "X-Calibre", + "site_detail_url": "https://comicvine.gamespot.com/x-calibre/4060-58560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58561/", + "id": 58561, + "name": "Hellstorm's Demon-Steeds", + "site_detail_url": "https://comicvine.gamespot.com/hellstorms-demon-steeds/4060-58561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58563/", + "id": 58563, + "name": "The Black Legion", + "site_detail_url": "https://comicvine.gamespot.com/the-black-legion/4060-58563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58565/", + "id": 58565, + "name": "Omega Squadron", + "site_detail_url": "https://comicvine.gamespot.com/omega-squadron/4060-58565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58566/", + "id": 58566, + "name": "Red Squadron", + "site_detail_url": "https://comicvine.gamespot.com/red-squadron/4060-58566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58567/", + "id": 58567, + "name": "Decker Family", + "site_detail_url": "https://comicvine.gamespot.com/decker-family/4060-58567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58573/", + "id": 58573, + "name": "Apocalypse´s Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse-s-bounty-hunters/4060-58573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58579/", + "id": 58579, + "name": "Brigade of Realms", + "site_detail_url": "https://comicvine.gamespot.com/brigade-of-realms/4060-58579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58589/", + "id": 58589, + "name": "Mutant Underground of Singapore", + "site_detail_url": "https://comicvine.gamespot.com/mutant-underground-of-singapore/4060-58589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58592/", + "id": 58592, + "name": "The Revengers", + "site_detail_url": "https://comicvine.gamespot.com/the-revengers/4060-58592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58595/", + "id": 58595, + "name": "Americommand", + "site_detail_url": "https://comicvine.gamespot.com/americommand/4060-58595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58607/", + "id": 58607, + "name": "Captain America Corps", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps/4060-58607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58608/", + "id": 58608, + "name": "The Forgiven", + "site_detail_url": "https://comicvine.gamespot.com/the-forgiven/4060-58608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58609/", + "id": 58609, + "name": "The Chosen", + "site_detail_url": "https://comicvine.gamespot.com/the-chosen/4060-58609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58622/", + "id": 58622, + "name": "Scourge Of The Underworld", + "site_detail_url": "https://comicvine.gamespot.com/scourge-of-the-underworld/4060-58622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58623/", + "id": 58623, + "name": "High Evolutionary's Eliminators", + "site_detail_url": "https://comicvine.gamespot.com/high-evolutionarys-eliminators/4060-58623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58624/", + "id": 58624, + "name": "High Evolutionary's Purifiers", + "site_detail_url": "https://comicvine.gamespot.com/high-evolutionarys-purifiers/4060-58624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58625/", + "id": 58625, + "name": "Vanguard", + "site_detail_url": "https://comicvine.gamespot.com/vanguard/4060-58625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58626/", + "id": 58626, + "name": "Evolutionary's Stormtroopers", + "site_detail_url": "https://comicvine.gamespot.com/evolutionarys-stormtroopers/4060-58626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58627/", + "id": 58627, + "name": "High Evolutionary's Technicians", + "site_detail_url": "https://comicvine.gamespot.com/high-evolutionarys-technicians/4060-58627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58630/", + "id": 58630, + "name": "Assassin Droids", + "site_detail_url": "https://comicvine.gamespot.com/assassin-droids/4060-58630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58637/", + "id": 58637, + "name": "Astromech Droids", + "site_detail_url": "https://comicvine.gamespot.com/astromech-droids/4060-58637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58650/", + "id": 58650, + "name": "Confederacy of Dunces", + "site_detail_url": "https://comicvine.gamespot.com/confederacy-of-dunces/4060-58650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58652/", + "id": 58652, + "name": "Villains for Hire", + "site_detail_url": "https://comicvine.gamespot.com/villains-for-hire/4060-58652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58678/", + "id": 58678, + "name": "Mighty", + "site_detail_url": "https://comicvine.gamespot.com/mighty/4060-58678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58683/", + "id": 58683, + "name": "Geraci Family", + "site_detail_url": "https://comicvine.gamespot.com/geraci-family/4060-58683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58685/", + "id": 58685, + "name": "H'ylthri", + "site_detail_url": "https://comicvine.gamespot.com/hylthri/4060-58685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58691/", + "id": 58691, + "name": "The Winged Ones", + "site_detail_url": "https://comicvine.gamespot.com/the-winged-ones/4060-58691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58692/", + "id": 58692, + "name": "Buzzard People", + "site_detail_url": "https://comicvine.gamespot.com/buzzard-people/4060-58692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58698/", + "id": 58698, + "name": "Berzerkers", + "site_detail_url": "https://comicvine.gamespot.com/berzerkers/4060-58698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58699/", + "id": 58699, + "name": "Avengers 1959", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1959/4060-58699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58700/", + "id": 58700, + "name": "Oscorp Industries", + "site_detail_url": "https://comicvine.gamespot.com/oscorp-industries/4060-58700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58701/", + "id": 58701, + "name": "White Rabbit Gang", + "site_detail_url": "https://comicvine.gamespot.com/white-rabbit-gang/4060-58701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58704/", + "id": 58704, + "name": "Troyjans", + "site_detail_url": "https://comicvine.gamespot.com/troyjans/4060-58704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58712/", + "id": 58712, + "name": "Dragon-Kings", + "site_detail_url": "https://comicvine.gamespot.com/dragon-kings/4060-58712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58716/", + "id": 58716, + "name": "Cult of the Dark Lord", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-the-dark-lord/4060-58716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58731/", + "id": 58731, + "name": "Operation: Lightning Storm", + "site_detail_url": "https://comicvine.gamespot.com/operation-lightning-storm/4060-58731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58737/", + "id": 58737, + "name": "Magic Secret Action Squad", + "site_detail_url": "https://comicvine.gamespot.com/magic-secret-action-squad/4060-58737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58740/", + "id": 58740, + "name": "Public Eye", + "site_detail_url": "https://comicvine.gamespot.com/public-eye/4060-58740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58741/", + "id": 58741, + "name": "Stark-Fujikawa", + "site_detail_url": "https://comicvine.gamespot.com/stark-fujikawa/4060-58741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58742/", + "id": 58742, + "name": "Synthia", + "site_detail_url": "https://comicvine.gamespot.com/synthia/4060-58742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58744/", + "id": 58744, + "name": "X-Terminated", + "site_detail_url": "https://comicvine.gamespot.com/x-terminated/4060-58744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58748/", + "id": 58748, + "name": "Freakers", + "site_detail_url": "https://comicvine.gamespot.com/freakers/4060-58748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58749/", + "id": 58749, + "name": "The Forgotten", + "site_detail_url": "https://comicvine.gamespot.com/the-forgotten/4060-58749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58750/", + "id": 58750, + "name": "Throwbacks", + "site_detail_url": "https://comicvine.gamespot.com/throwbacks/4060-58750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58751/", + "id": 58751, + "name": "Nightshade", + "site_detail_url": "https://comicvine.gamespot.com/nightshade/4060-58751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58752/", + "id": 58752, + "name": "Spiderites", + "site_detail_url": "https://comicvine.gamespot.com/spiderites/4060-58752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58753/", + "id": 58753, + "name": "Guild of Independents", + "site_detail_url": "https://comicvine.gamespot.com/guild-of-independents/4060-58753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58755/", + "id": 58755, + "name": "Cyber Nostra", + "site_detail_url": "https://comicvine.gamespot.com/cyber-nostra/4060-58755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58756/", + "id": 58756, + "name": "Knights of Banner", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-banner/4060-58756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58760/", + "id": 58760, + "name": "Lotusland Productions", + "site_detail_url": "https://comicvine.gamespot.com/lotusland-productions/4060-58760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58761/", + "id": 58761, + "name": "Sweet Dreams", + "site_detail_url": "https://comicvine.gamespot.com/sweet-dreams/4060-58761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58764/", + "id": 58764, + "name": "Dimension X Aliens", + "site_detail_url": "https://comicvine.gamespot.com/dimension-x-aliens/4060-58764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58765/", + "id": 58765, + "name": "Fenris", + "site_detail_url": "https://comicvine.gamespot.com/fenris/4060-58765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58766/", + "id": 58766, + "name": "Aesir 2099", + "site_detail_url": "https://comicvine.gamespot.com/aesir-2099/4060-58766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58767/", + "id": 58767, + "name": "Rand Corporation", + "site_detail_url": "https://comicvine.gamespot.com/rand-corporation/4060-58767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58769/", + "id": 58769, + "name": "Mad Squad", + "site_detail_url": "https://comicvine.gamespot.com/mad-squad/4060-58769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58773/", + "id": 58773, + "name": "The Circle of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/the-circle-of-shadows/4060-58773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58776/", + "id": 58776, + "name": "Young Blades", + "site_detail_url": "https://comicvine.gamespot.com/young-blades/4060-58776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58777/", + "id": 58777, + "name": "Artificial Kidz", + "site_detail_url": "https://comicvine.gamespot.com/artificial-kidz/4060-58777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58778/", + "id": 58778, + "name": "Hotwire Martyrs", + "site_detail_url": "https://comicvine.gamespot.com/hotwire-martyrs/4060-58778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58780/", + "id": 58780, + "name": "Moonchildren", + "site_detail_url": "https://comicvine.gamespot.com/moonchildren/4060-58780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58783/", + "id": 58783, + "name": "Human Tribe", + "site_detail_url": "https://comicvine.gamespot.com/human-tribe/4060-58783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58784/", + "id": 58784, + "name": "L.A. Locusts", + "site_detail_url": "https://comicvine.gamespot.com/la-locusts/4060-58784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58785/", + "id": 58785, + "name": "Black Cabinet", + "site_detail_url": "https://comicvine.gamespot.com/black-cabinet/4060-58785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58786/", + "id": 58786, + "name": "SHIELD 2099", + "site_detail_url": "https://comicvine.gamespot.com/shield-2099/4060-58786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58789/", + "id": 58789, + "name": "Seekers", + "site_detail_url": "https://comicvine.gamespot.com/seekers/4060-58789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58791/", + "id": 58791, + "name": "Light Brigade", + "site_detail_url": "https://comicvine.gamespot.com/light-brigade/4060-58791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58806/", + "id": 58806, + "name": "Beyonders", + "site_detail_url": "https://comicvine.gamespot.com/beyonders/4060-58806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58810/", + "id": 58810, + "name": "The Chessmen", + "site_detail_url": "https://comicvine.gamespot.com/the-chessmen/4060-58810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58814/", + "id": 58814, + "name": "Children of Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/children-of-tomorrow/4060-58814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58829/", + "id": 58829, + "name": "Cannibal Catch", + "site_detail_url": "https://comicvine.gamespot.com/cannibal-catch/4060-58829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58841/", + "id": 58841, + "name": "Ubermadchen", + "site_detail_url": "https://comicvine.gamespot.com/ubermadchen/4060-58841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58848/", + "id": 58848, + "name": "Ariguans", + "site_detail_url": "https://comicvine.gamespot.com/ariguans/4060-58848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58849/", + "id": 58849, + "name": "Spartoi", + "site_detail_url": "https://comicvine.gamespot.com/spartoi/4060-58849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58851/", + "id": 58851, + "name": "Hidden Ones", + "site_detail_url": "https://comicvine.gamespot.com/hidden-ones/4060-58851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58857/", + "id": 58857, + "name": "Shaolin Scientist Squad", + "site_detail_url": "https://comicvine.gamespot.com/shaolin-scientist-squad/4060-58857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58864/", + "id": 58864, + "name": "Genosha Freedom Brigade", + "site_detail_url": "https://comicvine.gamespot.com/genosha-freedom-brigade/4060-58864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58872/", + "id": 58872, + "name": "The Exchange", + "site_detail_url": "https://comicvine.gamespot.com/the-exchange/4060-58872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58874/", + "id": 58874, + "name": "Humanity's Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/humanitys-last-stand/4060-58874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58882/", + "id": 58882, + "name": "Mercury Team", + "site_detail_url": "https://comicvine.gamespot.com/mercury-team/4060-58882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58884/", + "id": 58884, + "name": "Militiamen", + "site_detail_url": "https://comicvine.gamespot.com/militiamen/4060-58884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58885/", + "id": 58885, + "name": "Trenchcoat Mafia", + "site_detail_url": "https://comicvine.gamespot.com/trenchcoat-mafia/4060-58885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58886/", + "id": 58886, + "name": "Black Choppers", + "site_detail_url": "https://comicvine.gamespot.com/black-choppers/4060-58886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58889/", + "id": 58889, + "name": "Bamfs", + "site_detail_url": "https://comicvine.gamespot.com/bamfs/4060-58889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58898/", + "id": 58898, + "name": "Inquisition", + "site_detail_url": "https://comicvine.gamespot.com/inquisition/4060-58898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58900/", + "id": 58900, + "name": "Outlaw Avengers", + "site_detail_url": "https://comicvine.gamespot.com/outlaw-avengers/4060-58900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58920/", + "id": 58920, + "name": "Muppet Babies", + "site_detail_url": "https://comicvine.gamespot.com/muppet-babies/4060-58920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58924/", + "id": 58924, + "name": "The Dynasty", + "site_detail_url": "https://comicvine.gamespot.com/the-dynasty/4060-58924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58927/", + "id": 58927, + "name": "The Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/the-brotherhood/4060-58927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58928/", + "id": 58928, + "name": "The Antitheses", + "site_detail_url": "https://comicvine.gamespot.com/the-antitheses/4060-58928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58929/", + "id": 58929, + "name": "Symbiote Warriors", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-warriors/4060-58929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58941/", + "id": 58941, + "name": "Kaddak", + "site_detail_url": "https://comicvine.gamespot.com/kaddak/4060-58941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58943/", + "id": 58943, + "name": "Scorpius", + "site_detail_url": "https://comicvine.gamespot.com/scorpius/4060-58943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58991/", + "id": 58991, + "name": "The Beetles", + "site_detail_url": "https://comicvine.gamespot.com/the-beetles/4060-58991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58992/", + "id": 58992, + "name": "Fake Defenders", + "site_detail_url": "https://comicvine.gamespot.com/fake-defenders/4060-58992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58993/", + "id": 58993, + "name": "Thunderbolts Army", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-army/4060-58993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-58995/", + "id": 58995, + "name": "Circle of Four", + "site_detail_url": "https://comicvine.gamespot.com/circle-of-four/4060-58995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59010/", + "id": 59010, + "name": "Knights of the Moon", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-the-moon/4060-59010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59017/", + "id": 59017, + "name": "Rancor's Lieutenants", + "site_detail_url": "https://comicvine.gamespot.com/rancors-lieutenants/4060-59017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59028/", + "id": 59028, + "name": "Project: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/project-rebirth/4060-59028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59030/", + "id": 59030, + "name": "The Creators", + "site_detail_url": "https://comicvine.gamespot.com/the-creators/4060-59030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59031/", + "id": 59031, + "name": "The Encoders", + "site_detail_url": "https://comicvine.gamespot.com/the-encoders/4060-59031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59032/", + "id": 59032, + "name": "LMDs", + "site_detail_url": "https://comicvine.gamespot.com/lmds/4060-59032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59033/", + "id": 59033, + "name": "Deltites", + "site_detail_url": "https://comicvine.gamespot.com/deltites/4060-59033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59035/", + "id": 59035, + "name": "The Descendants", + "site_detail_url": "https://comicvine.gamespot.com/the-descendants/4060-59035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59042/", + "id": 59042, + "name": "Posse", + "site_detail_url": "https://comicvine.gamespot.com/posse/4060-59042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59043/", + "id": 59043, + "name": "The Triad", + "site_detail_url": "https://comicvine.gamespot.com/the-triad/4060-59043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59048/", + "id": 59048, + "name": "Scy'ar Tal", + "site_detail_url": "https://comicvine.gamespot.com/scyar-tal/4060-59048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59049/", + "id": 59049, + "name": "Cybertrons", + "site_detail_url": "https://comicvine.gamespot.com/cybertrons/4060-59049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59050/", + "id": 59050, + "name": "Department H", + "site_detail_url": "https://comicvine.gamespot.com/department-h/4060-59050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59055/", + "id": 59055, + "name": "Gunslingers", + "site_detail_url": "https://comicvine.gamespot.com/gunslingers/4060-59055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59064/", + "id": 59064, + "name": "Hydro-Men", + "site_detail_url": "https://comicvine.gamespot.com/hydro-men/4060-59064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59067/", + "id": 59067, + "name": "Kree Sentry", + "site_detail_url": "https://comicvine.gamespot.com/kree-sentry/4060-59067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59068/", + "id": 59068, + "name": "Beasts of Berlin", + "site_detail_url": "https://comicvine.gamespot.com/beasts-of-berlin/4060-59068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59085/", + "id": 59085, + "name": "S.T.A.R.S.", + "site_detail_url": "https://comicvine.gamespot.com/stars/4060-59085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59097/", + "id": 59097, + "name": "Draumar", + "site_detail_url": "https://comicvine.gamespot.com/draumar/4060-59097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59098/", + "id": 59098, + "name": "Avengers Crew", + "site_detail_url": "https://comicvine.gamespot.com/avengers-crew/4060-59098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59107/", + "id": 59107, + "name": "The Peace Corpse", + "site_detail_url": "https://comicvine.gamespot.com/the-peace-corpse/4060-59107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59108/", + "id": 59108, + "name": "The Omega Clan", + "site_detail_url": "https://comicvine.gamespot.com/the-omega-clan/4060-59108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59112/", + "id": 59112, + "name": "Ducky's Dozen", + "site_detail_url": "https://comicvine.gamespot.com/duckys-dozen/4060-59112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59119/", + "id": 59119, + "name": "White Sky", + "site_detail_url": "https://comicvine.gamespot.com/white-sky/4060-59119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59124/", + "id": 59124, + "name": "All-Mothers", + "site_detail_url": "https://comicvine.gamespot.com/all-mothers/4060-59124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59145/", + "id": 59145, + "name": "Dre'lnn", + "site_detail_url": "https://comicvine.gamespot.com/drelnn/4060-59145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59146/", + "id": 59146, + "name": "Suffragists", + "site_detail_url": "https://comicvine.gamespot.com/suffragists/4060-59146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59169/", + "id": 59169, + "name": "The Children", + "site_detail_url": "https://comicvine.gamespot.com/the-children/4060-59169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59170/", + "id": 59170, + "name": "Prosilicans", + "site_detail_url": "https://comicvine.gamespot.com/prosilicans/4060-59170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59171/", + "id": 59171, + "name": "Krills", + "site_detail_url": "https://comicvine.gamespot.com/krills/4060-59171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59182/", + "id": 59182, + "name": "Undying Ones", + "site_detail_url": "https://comicvine.gamespot.com/undying-ones/4060-59182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59184/", + "id": 59184, + "name": "Kallusians", + "site_detail_url": "https://comicvine.gamespot.com/kallusians/4060-59184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59189/", + "id": 59189, + "name": "Yirbeks", + "site_detail_url": "https://comicvine.gamespot.com/yirbeks/4060-59189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59190/", + "id": 59190, + "name": "Kosmosians", + "site_detail_url": "https://comicvine.gamespot.com/kosmosians/4060-59190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59197/", + "id": 59197, + "name": "Morani", + "site_detail_url": "https://comicvine.gamespot.com/morani/4060-59197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59200/", + "id": 59200, + "name": "Utopia's Security Recon", + "site_detail_url": "https://comicvine.gamespot.com/utopias-security-recon/4060-59200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59202/", + "id": 59202, + "name": "Rajaks", + "site_detail_url": "https://comicvine.gamespot.com/rajaks/4060-59202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59203/", + "id": 59203, + "name": "Sakaarans", + "site_detail_url": "https://comicvine.gamespot.com/sakaarans/4060-59203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59206/", + "id": 59206, + "name": "Ant-Man's Ants", + "site_detail_url": "https://comicvine.gamespot.com/ant-mans-ants/4060-59206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59213/", + "id": 59213, + "name": "Tribbitites", + "site_detail_url": "https://comicvine.gamespot.com/tribbitites/4060-59213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59216/", + "id": 59216, + "name": "Ul'lula'ns", + "site_detail_url": "https://comicvine.gamespot.com/ullulans/4060-59216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59218/", + "id": 59218, + "name": "Xantareans", + "site_detail_url": "https://comicvine.gamespot.com/xantareans/4060-59218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59219/", + "id": 59219, + "name": "Xantha", + "site_detail_url": "https://comicvine.gamespot.com/xantha/4060-59219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59220/", + "id": 59220, + "name": "Xeronians", + "site_detail_url": "https://comicvine.gamespot.com/xeronians/4060-59220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59221/", + "id": 59221, + "name": "Fox-People", + "site_detail_url": "https://comicvine.gamespot.com/fox-people/4060-59221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59222/", + "id": 59222, + "name": "Yrds", + "site_detail_url": "https://comicvine.gamespot.com/yrds/4060-59222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59223/", + "id": 59223, + "name": "Planet Taker Corps", + "site_detail_url": "https://comicvine.gamespot.com/planet-taker-corps/4060-59223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59226/", + "id": 59226, + "name": "Venturans", + "site_detail_url": "https://comicvine.gamespot.com/venturans/4060-59226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59227/", + "id": 59227, + "name": "Sidri", + "site_detail_url": "https://comicvine.gamespot.com/sidri/4060-59227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59228/", + "id": 59228, + "name": "Vrellnexians", + "site_detail_url": "https://comicvine.gamespot.com/vrellnexians/4060-59228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59230/", + "id": 59230, + "name": "Mandarin's Operatives", + "site_detail_url": "https://comicvine.gamespot.com/mandarins-operatives/4060-59230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59233/", + "id": 59233, + "name": "Hyena Clan", + "site_detail_url": "https://comicvine.gamespot.com/hyena-clan/4060-59233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59234/", + "id": 59234, + "name": "Phoenix Five", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-five/4060-59234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59237/", + "id": 59237, + "name": "Makluans", + "site_detail_url": "https://comicvine.gamespot.com/makluans/4060-59237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59238/", + "id": 59238, + "name": "Quo Modari", + "site_detail_url": "https://comicvine.gamespot.com/quo-modari/4060-59238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59242/", + "id": 59242, + "name": "Paranormal Law Enforcement Team", + "site_detail_url": "https://comicvine.gamespot.com/paranormal-law-enforcement-team/4060-59242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59251/", + "id": 59251, + "name": "Avengers Unity Squad", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unity-squad/4060-59251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59265/", + "id": 59265, + "name": "The Black Watch", + "site_detail_url": "https://comicvine.gamespot.com/the-black-watch/4060-59265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59266/", + "id": 59266, + "name": "Va-Shaak", + "site_detail_url": "https://comicvine.gamespot.com/va-shaak/4060-59266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59267/", + "id": 59267, + "name": "The Paideia", + "site_detail_url": "https://comicvine.gamespot.com/the-paideia/4060-59267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59270/", + "id": 59270, + "name": "Power Pachyderms", + "site_detail_url": "https://comicvine.gamespot.com/power-pachyderms/4060-59270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59271/", + "id": 59271, + "name": "The New Musicians", + "site_detail_url": "https://comicvine.gamespot.com/the-new-musicians/4060-59271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59275/", + "id": 59275, + "name": "The Makers", + "site_detail_url": "https://comicvine.gamespot.com/the-makers/4060-59275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59286/", + "id": 59286, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4060-59286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59288/", + "id": 59288, + "name": "Wolverine Squad", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-squad/4060-59288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59290/", + "id": 59290, + "name": "Hammer And Anvil", + "site_detail_url": "https://comicvine.gamespot.com/hammer-and-anvil/4060-59290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59298/", + "id": 59298, + "name": "Deathforce: Morituri", + "site_detail_url": "https://comicvine.gamespot.com/deathforce-morituri/4060-59298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59305/", + "id": 59305, + "name": "Galactic Alliance of Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/galactic-alliance-of-spider-men/4060-59305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59306/", + "id": 59306, + "name": "Cosmic Champions", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-champions/4060-59306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59307/", + "id": 59307, + "name": "Cosmic Strangers", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-strangers/4060-59307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59311/", + "id": 59311, + "name": "VXX-199", + "site_detail_url": "https://comicvine.gamespot.com/vxx-199/4060-59311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59313/", + "id": 59313, + "name": "Glx", + "site_detail_url": "https://comicvine.gamespot.com/glx/4060-59313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59316/", + "id": 59316, + "name": "Humanoids", + "site_detail_url": "https://comicvine.gamespot.com/humanoids/4060-59316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59319/", + "id": 59319, + "name": "The Confederates of the Curious", + "site_detail_url": "https://comicvine.gamespot.com/the-confederates-of-the-curious/4060-59319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59321/", + "id": 59321, + "name": "Prime Movers", + "site_detail_url": "https://comicvine.gamespot.com/prime-movers/4060-59321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59322/", + "id": 59322, + "name": "Fanatix", + "site_detail_url": "https://comicvine.gamespot.com/fanatix/4060-59322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59323/", + "id": 59323, + "name": "Midnight Wreckers", + "site_detail_url": "https://comicvine.gamespot.com/midnight-wreckers/4060-59323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59324/", + "id": 59324, + "name": "Baintronics", + "site_detail_url": "https://comicvine.gamespot.com/baintronics/4060-59324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59326/", + "id": 59326, + "name": "Time-Keepers", + "site_detail_url": "https://comicvine.gamespot.com/time-keepers/4060-59326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59327/", + "id": 59327, + "name": "Thanos' Defenders", + "site_detail_url": "https://comicvine.gamespot.com/thanos-defenders/4060-59327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59329/", + "id": 59329, + "name": "The Clinic", + "site_detail_url": "https://comicvine.gamespot.com/the-clinic/4060-59329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59332/", + "id": 59332, + "name": "Therapy Group B", + "site_detail_url": "https://comicvine.gamespot.com/therapy-group-b/4060-59332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59333/", + "id": 59333, + "name": "ESPeople", + "site_detail_url": "https://comicvine.gamespot.com/espeople/4060-59333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59334/", + "id": 59334, + "name": "Black Powers", + "site_detail_url": "https://comicvine.gamespot.com/black-powers/4060-59334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59336/", + "id": 59336, + "name": "DDTeens", + "site_detail_url": "https://comicvine.gamespot.com/ddteens/4060-59336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59338/", + "id": 59338, + "name": "Time-Plucked Titans", + "site_detail_url": "https://comicvine.gamespot.com/time-plucked-titans/4060-59338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59339/", + "id": 59339, + "name": "Mindless Ones", + "site_detail_url": "https://comicvine.gamespot.com/mindless-ones/4060-59339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59340/", + "id": 59340, + "name": "Smoke Generals", + "site_detail_url": "https://comicvine.gamespot.com/smoke-generals/4060-59340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59341/", + "id": 59341, + "name": "Femme Force", + "site_detail_url": "https://comicvine.gamespot.com/femme-force/4060-59341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59344/", + "id": 59344, + "name": "Molans", + "site_detail_url": "https://comicvine.gamespot.com/molans/4060-59344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59346/", + "id": 59346, + "name": "White Eventists", + "site_detail_url": "https://comicvine.gamespot.com/white-eventists/4060-59346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59351/", + "id": 59351, + "name": "The Scatter", + "site_detail_url": "https://comicvine.gamespot.com/the-scatter/4060-59351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59352/", + "id": 59352, + "name": "Haab", + "site_detail_url": "https://comicvine.gamespot.com/haab/4060-59352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59355/", + "id": 59355, + "name": "The Warriors of the Thousand Galaxies", + "site_detail_url": "https://comicvine.gamespot.com/the-warriors-of-the-thousand-galaxies/4060-59355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59360/", + "id": 59360, + "name": "Boar Brothers", + "site_detail_url": "https://comicvine.gamespot.com/boar-brothers/4060-59360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59361/", + "id": 59361, + "name": "F.A.C.T.", + "site_detail_url": "https://comicvine.gamespot.com/fact/4060-59361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59362/", + "id": 59362, + "name": "Boss Enforcement Council", + "site_detail_url": "https://comicvine.gamespot.com/boss-enforcement-council/4060-59362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59363/", + "id": 59363, + "name": "Outlanders", + "site_detail_url": "https://comicvine.gamespot.com/outlanders/4060-59363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59372/", + "id": 59372, + "name": "League of Nazi Bowlers", + "site_detail_url": "https://comicvine.gamespot.com/league-of-nazi-bowlers/4060-59372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59373/", + "id": 59373, + "name": "Robo-Barbarians", + "site_detail_url": "https://comicvine.gamespot.com/robo-barbarians/4060-59373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59375/", + "id": 59375, + "name": "Four Winds", + "site_detail_url": "https://comicvine.gamespot.com/four-winds/4060-59375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59400/", + "id": 59400, + "name": "S-Men", + "site_detail_url": "https://comicvine.gamespot.com/s-men/4060-59400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59401/", + "id": 59401, + "name": "Microns", + "site_detail_url": "https://comicvine.gamespot.com/microns/4060-59401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59402/", + "id": 59402, + "name": "The Covenant", + "site_detail_url": "https://comicvine.gamespot.com/the-covenant/4060-59402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59420/", + "id": 59420, + "name": "Bane", + "site_detail_url": "https://comicvine.gamespot.com/bane/4060-59420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59437/", + "id": 59437, + "name": "Lemurians", + "site_detail_url": "https://comicvine.gamespot.com/lemurians/4060-59437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59438/", + "id": 59438, + "name": "Terror Birds", + "site_detail_url": "https://comicvine.gamespot.com/terror-birds/4060-59438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59444/", + "id": 59444, + "name": "Diskhord", + "site_detail_url": "https://comicvine.gamespot.com/diskhord/4060-59444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59445/", + "id": 59445, + "name": "A-Babies", + "site_detail_url": "https://comicvine.gamespot.com/a-babies/4060-59445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59453/", + "id": 59453, + "name": "Thermophile Lithometallovores", + "site_detail_url": "https://comicvine.gamespot.com/thermophile-lithometallovores/4060-59453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59460/", + "id": 59460, + "name": "Tracksuit Mafia", + "site_detail_url": "https://comicvine.gamespot.com/tracksuit-mafia/4060-59460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59464/", + "id": 59464, + "name": "Sky Lords of Indigarr", + "site_detail_url": "https://comicvine.gamespot.com/sky-lords-of-indigarr/4060-59464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59466/", + "id": 59466, + "name": "Ant-Man & Wasp", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-wasp/4060-59466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59472/", + "id": 59472, + "name": "Murder Circus", + "site_detail_url": "https://comicvine.gamespot.com/murder-circus/4060-59472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59475/", + "id": 59475, + "name": "Giant-Woman Squad", + "site_detail_url": "https://comicvine.gamespot.com/giant-woman-squad/4060-59475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59479/", + "id": 59479, + "name": "Puppeteers", + "site_detail_url": "https://comicvine.gamespot.com/puppeteers/4060-59479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59483/", + "id": 59483, + "name": "Trellions", + "site_detail_url": "https://comicvine.gamespot.com/trellions/4060-59483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59485/", + "id": 59485, + "name": "Doombots", + "site_detail_url": "https://comicvine.gamespot.com/doombots/4060-59485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59486/", + "id": 59486, + "name": "Ultravisions", + "site_detail_url": "https://comicvine.gamespot.com/ultravisions/4060-59486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59487/", + "id": 59487, + "name": "Machine People", + "site_detail_url": "https://comicvine.gamespot.com/machine-people/4060-59487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59494/", + "id": 59494, + "name": "The Avant Guard", + "site_detail_url": "https://comicvine.gamespot.com/the-avant-guard/4060-59494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59500/", + "id": 59500, + "name": "The Carol Corps", + "site_detail_url": "https://comicvine.gamespot.com/the-carol-corps/4060-59500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59508/", + "id": 59508, + "name": "The Garden", + "site_detail_url": "https://comicvine.gamespot.com/the-garden/4060-59508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59523/", + "id": 59523, + "name": "Merry Maladies", + "site_detail_url": "https://comicvine.gamespot.com/merry-maladies/4060-59523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59531/", + "id": 59531, + "name": "Slavers", + "site_detail_url": "https://comicvine.gamespot.com/slavers/4060-59531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59539/", + "id": 59539, + "name": "Justicers", + "site_detail_url": "https://comicvine.gamespot.com/justicers/4060-59539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59541/", + "id": 59541, + "name": "Reichsmen", + "site_detail_url": "https://comicvine.gamespot.com/reichsmen/4060-59541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59542/", + "id": 59542, + "name": "Phalanx", + "site_detail_url": "https://comicvine.gamespot.com/phalanx/4060-59542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59543/", + "id": 59543, + "name": "Warwolves", + "site_detail_url": "https://comicvine.gamespot.com/warwolves/4060-59543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59544/", + "id": 59544, + "name": "Gibborim", + "site_detail_url": "https://comicvine.gamespot.com/gibborim/4060-59544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59546/", + "id": 59546, + "name": "Whirldemons", + "site_detail_url": "https://comicvine.gamespot.com/whirldemons/4060-59546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59547/", + "id": 59547, + "name": "Zoms", + "site_detail_url": "https://comicvine.gamespot.com/zoms/4060-59547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59550/", + "id": 59550, + "name": "F.I.6", + "site_detail_url": "https://comicvine.gamespot.com/fi6/4060-59550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59551/", + "id": 59551, + "name": "R.C.X.", + "site_detail_url": "https://comicvine.gamespot.com/rcx/4060-59551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59552/", + "id": 59552, + "name": "Strike First", + "site_detail_url": "https://comicvine.gamespot.com/strike-first/4060-59552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59554/", + "id": 59554, + "name": "Crawlers", + "site_detail_url": "https://comicvine.gamespot.com/crawlers/4060-59554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59556/", + "id": 59556, + "name": "Uncreated", + "site_detail_url": "https://comicvine.gamespot.com/uncreated/4060-59556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59557/", + "id": 59557, + "name": "P.T.S.F.", + "site_detail_url": "https://comicvine.gamespot.com/ptsf/4060-59557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59565/", + "id": 59565, + "name": "Ex-Avengers", + "site_detail_url": "https://comicvine.gamespot.com/ex-avengers/4060-59565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59570/", + "id": 59570, + "name": "Tank 666", + "site_detail_url": "https://comicvine.gamespot.com/tank-666/4060-59570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59571/", + "id": 59571, + "name": "Celestial Order", + "site_detail_url": "https://comicvine.gamespot.com/celestial-order/4060-59571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59578/", + "id": 59578, + "name": "Organization", + "site_detail_url": "https://comicvine.gamespot.com/organization/4060-59578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59583/", + "id": 59583, + "name": "B1 Battle Droids", + "site_detail_url": "https://comicvine.gamespot.com/b1-battle-droids/4060-59583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59586/", + "id": 59586, + "name": "Genoshan Mutates", + "site_detail_url": "https://comicvine.gamespot.com/genoshan-mutates/4060-59586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59592/", + "id": 59592, + "name": "Black Berserkers", + "site_detail_url": "https://comicvine.gamespot.com/black-berserkers/4060-59592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59593/", + "id": 59593, + "name": "Death Legion", + "site_detail_url": "https://comicvine.gamespot.com/death-legion/4060-59593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59603/", + "id": 59603, + "name": "Cult of Kalumai", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-kalumai/4060-59603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59614/", + "id": 59614, + "name": "Mandroids", + "site_detail_url": "https://comicvine.gamespot.com/mandroids/4060-59614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59618/", + "id": 59618, + "name": "Braddock Academy", + "site_detail_url": "https://comicvine.gamespot.com/braddock-academy/4060-59618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59619/", + "id": 59619, + "name": "Starcore", + "site_detail_url": "https://comicvine.gamespot.com/starcore/4060-59619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59620/", + "id": 59620, + "name": "Children of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/children-of-thanos/4060-59620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59621/", + "id": 59621, + "name": "X-Treme X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men/4060-59621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59623/", + "id": 59623, + "name": "Warthos", + "site_detail_url": "https://comicvine.gamespot.com/warthos/4060-59623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59632/", + "id": 59632, + "name": "Killraven's Freemen", + "site_detail_url": "https://comicvine.gamespot.com/killravens-freemen/4060-59632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59639/", + "id": 59639, + "name": "Flatliners", + "site_detail_url": "https://comicvine.gamespot.com/flatliners/4060-59639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59643/", + "id": 59643, + "name": "Mer-People", + "site_detail_url": "https://comicvine.gamespot.com/mer-people/4060-59643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59644/", + "id": 59644, + "name": "Assembly of Evil", + "site_detail_url": "https://comicvine.gamespot.com/assembly-of-evil/4060-59644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59646/", + "id": 59646, + "name": "Epsilon Black", + "site_detail_url": "https://comicvine.gamespot.com/epsilon-black/4060-59646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59647/", + "id": 59647, + "name": "Epsilon Flight", + "site_detail_url": "https://comicvine.gamespot.com/epsilon-flight/4060-59647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59651/", + "id": 59651, + "name": "Raiders", + "site_detail_url": "https://comicvine.gamespot.com/raiders/4060-59651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59652/", + "id": 59652, + "name": "The Constables", + "site_detail_url": "https://comicvine.gamespot.com/the-constables/4060-59652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59671/", + "id": 59671, + "name": "M Squad", + "site_detail_url": "https://comicvine.gamespot.com/m-squad/4060-59671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59673/", + "id": 59673, + "name": "Sleepers", + "site_detail_url": "https://comicvine.gamespot.com/sleepers/4060-59673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59674/", + "id": 59674, + "name": "The Night People", + "site_detail_url": "https://comicvine.gamespot.com/the-night-people/4060-59674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59683/", + "id": 59683, + "name": "Spider-Slayers", + "site_detail_url": "https://comicvine.gamespot.com/spider-slayers/4060-59683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59690/", + "id": 59690, + "name": "Overmind", + "site_detail_url": "https://comicvine.gamespot.com/overmind/4060-59690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59695/", + "id": 59695, + "name": "Hounds", + "site_detail_url": "https://comicvine.gamespot.com/hounds/4060-59695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59697/", + "id": 59697, + "name": "Dog Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/dog-soldiers/4060-59697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59698/", + "id": 59698, + "name": "Fisk Industries", + "site_detail_url": "https://comicvine.gamespot.com/fisk-industries/4060-59698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59699/", + "id": 59699, + "name": "Triad Brothers", + "site_detail_url": "https://comicvine.gamespot.com/triad-brothers/4060-59699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59701/", + "id": 59701, + "name": "Killforms", + "site_detail_url": "https://comicvine.gamespot.com/killforms/4060-59701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59709/", + "id": 59709, + "name": "Army of Assassins", + "site_detail_url": "https://comicvine.gamespot.com/army-of-assassins/4060-59709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59711/", + "id": 59711, + "name": "The Wilders", + "site_detail_url": "https://comicvine.gamespot.com/the-wilders/4060-59711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59716/", + "id": 59716, + "name": "Hounds", + "site_detail_url": "https://comicvine.gamespot.com/hounds/4060-59716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59717/", + "id": 59717, + "name": "Black Sea People", + "site_detail_url": "https://comicvine.gamespot.com/black-sea-people/4060-59717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59718/", + "id": 59718, + "name": "Exterminators", + "site_detail_url": "https://comicvine.gamespot.com/exterminators/4060-59718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59724/", + "id": 59724, + "name": "Cabal", + "site_detail_url": "https://comicvine.gamespot.com/cabal/4060-59724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59730/", + "id": 59730, + "name": "Styx And Stone", + "site_detail_url": "https://comicvine.gamespot.com/styx-and-stone/4060-59730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59731/", + "id": 59731, + "name": "Gnobians", + "site_detail_url": "https://comicvine.gamespot.com/gnobians/4060-59731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59732/", + "id": 59732, + "name": "S.H.I.E.L.D. Executive Board of Directors", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d-executive-board-of-directors/4060-59732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59765/", + "id": 59765, + "name": "A.I.M. High Council", + "site_detail_url": "https://comicvine.gamespot.com/a-i-m-high-council/4060-59765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59767/", + "id": 59767, + "name": "Dracula's Legion", + "site_detail_url": "https://comicvine.gamespot.com/dracula-s-legion/4060-59767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59773/", + "id": 59773, + "name": "West Coast Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-ultimates/4060-59773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59774/", + "id": 59774, + "name": "Outriders", + "site_detail_url": "https://comicvine.gamespot.com/outriders/4060-59774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59781/", + "id": 59781, + "name": "Horusians ", + "site_detail_url": "https://comicvine.gamespot.com/horusians/4060-59781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59794/", + "id": 59794, + "name": "Tenga Warriors", + "site_detail_url": "https://comicvine.gamespot.com/tenga-warriors/4060-59794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59799/", + "id": 59799, + "name": "Hellfire Academy", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-academy/4060-59799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59808/", + "id": 59808, + "name": "Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood/4060-59808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59814/", + "id": 59814, + "name": "Mapmakers", + "site_detail_url": "https://comicvine.gamespot.com/mapmakers/4060-59814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59828/", + "id": 59828, + "name": "Dominant Species", + "site_detail_url": "https://comicvine.gamespot.com/dominant-species/4060-59828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59844/", + "id": 59844, + "name": "Green Cross", + "site_detail_url": "https://comicvine.gamespot.com/green-cross/4060-59844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59845/", + "id": 59845, + "name": "The Tribunal", + "site_detail_url": "https://comicvine.gamespot.com/the-tribunal/4060-59845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59846/", + "id": 59846, + "name": "Doom Maidens", + "site_detail_url": "https://comicvine.gamespot.com/doom-maidens/4060-59846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59852/", + "id": 59852, + "name": "Army of Brides", + "site_detail_url": "https://comicvine.gamespot.com/army-of-brides/4060-59852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59857/", + "id": 59857, + "name": "Blutsauger", + "site_detail_url": "https://comicvine.gamespot.com/blutsauger/4060-59857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59861/", + "id": 59861, + "name": "Guardsman Alpha Team", + "site_detail_url": "https://comicvine.gamespot.com/guardsman-alpha-team/4060-59861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59863/", + "id": 59863, + "name": "Contraxians", + "site_detail_url": "https://comicvine.gamespot.com/contraxians/4060-59863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59870/", + "id": 59870, + "name": "Action Force", + "site_detail_url": "https://comicvine.gamespot.com/action-force/4060-59870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59872/", + "id": 59872, + "name": "The Arbiters", + "site_detail_url": "https://comicvine.gamespot.com/the-arbiters/4060-59872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59877/", + "id": 59877, + "name": "Black Order", + "site_detail_url": "https://comicvine.gamespot.com/black-order/4060-59877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59880/", + "id": 59880, + "name": "Pterorists", + "site_detail_url": "https://comicvine.gamespot.com/pterorists/4060-59880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59893/", + "id": 59893, + "name": "Imperial Police Force", + "site_detail_url": "https://comicvine.gamespot.com/imperial-police-force/4060-59893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59896/", + "id": 59896, + "name": "Serpent Cartel", + "site_detail_url": "https://comicvine.gamespot.com/serpent-cartel/4060-59896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59910/", + "id": 59910, + "name": "Fellowship of Fear", + "site_detail_url": "https://comicvine.gamespot.com/fellowship-of-fear/4060-59910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59911/", + "id": 59911, + "name": "Cheyarafim", + "site_detail_url": "https://comicvine.gamespot.com/cheyarafim/4060-59911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59912/", + "id": 59912, + "name": "The Underground", + "site_detail_url": "https://comicvine.gamespot.com/the-underground/4060-59912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59916/", + "id": 59916, + "name": "Swamp Men", + "site_detail_url": "https://comicvine.gamespot.com/swamp-men/4060-59916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59923/", + "id": 59923, + "name": "Man-Apes ", + "site_detail_url": "https://comicvine.gamespot.com/man-apes/4060-59923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59928/", + "id": 59928, + "name": "Unholy Three", + "site_detail_url": "https://comicvine.gamespot.com/unholy-three/4060-59928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59930/", + "id": 59930, + "name": "Clan Yashida", + "site_detail_url": "https://comicvine.gamespot.com/clan-yashida/4060-59930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59942/", + "id": 59942, + "name": "Caged Angels", + "site_detail_url": "https://comicvine.gamespot.com/caged-angels/4060-59942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59944/", + "id": 59944, + "name": "Spider-Minions", + "site_detail_url": "https://comicvine.gamespot.com/spider-minions/4060-59944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59953/", + "id": 59953, + "name": "Dard'van", + "site_detail_url": "https://comicvine.gamespot.com/dardvan/4060-59953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59955/", + "id": 59955, + "name": "Shadow-Captains", + "site_detail_url": "https://comicvine.gamespot.com/shadow-captains/4060-59955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59956/", + "id": 59956, + "name": "Magnetic North", + "site_detail_url": "https://comicvine.gamespot.com/magnetic-north/4060-59956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59957/", + "id": 59957, + "name": "The Godlords", + "site_detail_url": "https://comicvine.gamespot.com/the-godlords/4060-59957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59962/", + "id": 59962, + "name": "Rune Army", + "site_detail_url": "https://comicvine.gamespot.com/rune-army/4060-59962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59964/", + "id": 59964, + "name": "Hive Reich", + "site_detail_url": "https://comicvine.gamespot.com/hive-reich/4060-59964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59966/", + "id": 59966, + "name": "ECO Patrol", + "site_detail_url": "https://comicvine.gamespot.com/eco-patrol/4060-59966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59967/", + "id": 59967, + "name": "Mutroids", + "site_detail_url": "https://comicvine.gamespot.com/mutroids/4060-59967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59970/", + "id": 59970, + "name": "Madame Masque's Bio-Duplicates", + "site_detail_url": "https://comicvine.gamespot.com/madame-masques-bio-duplicates/4060-59970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59973/", + "id": 59973, + "name": "Skifflefuffles", + "site_detail_url": "https://comicvine.gamespot.com/skifflefuffles/4060-59973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59976/", + "id": 59976, + "name": "Omnisapient Systems", + "site_detail_url": "https://comicvine.gamespot.com/omnisapient-systems/4060-59976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59977/", + "id": 59977, + "name": "N'astiri", + "site_detail_url": "https://comicvine.gamespot.com/n-astiri/4060-59977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59978/", + "id": 59978, + "name": "The Underhand", + "site_detail_url": "https://comicvine.gamespot.com/the-underhand/4060-59978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59979/", + "id": 59979, + "name": "Super-Slaves", + "site_detail_url": "https://comicvine.gamespot.com/super-slaves/4060-59979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59980/", + "id": 59980, + "name": "Uranians", + "site_detail_url": "https://comicvine.gamespot.com/uranians/4060-59980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59981/", + "id": 59981, + "name": "Black Dragons", + "site_detail_url": "https://comicvine.gamespot.com/black-dragons/4060-59981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59982/", + "id": 59982, + "name": "Shadow Warriors", + "site_detail_url": "https://comicvine.gamespot.com/shadow-warriors/4060-59982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59985/", + "id": 59985, + "name": "Clay Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/clay-soldiers/4060-59985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59987/", + "id": 59987, + "name": "Mindbugs", + "site_detail_url": "https://comicvine.gamespot.com/mindbugs/4060-59987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59991/", + "id": 59991, + "name": "Council of Elders", + "site_detail_url": "https://comicvine.gamespot.com/council-of-elders/4060-59991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-59997/", + "id": 59997, + "name": "Crystalloids", + "site_detail_url": "https://comicvine.gamespot.com/crystalloids/4060-59997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60002/", + "id": 60002, + "name": "Echo People", + "site_detail_url": "https://comicvine.gamespot.com/echo-people/4060-60002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60005/", + "id": 60005, + "name": "Godbeasts", + "site_detail_url": "https://comicvine.gamespot.com/godbeasts/4060-60005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60008/", + "id": 60008, + "name": "Horizon Labs", + "site_detail_url": "https://comicvine.gamespot.com/horizon-labs/4060-60008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60009/", + "id": 60009, + "name": "Maria Stark Foundation", + "site_detail_url": "https://comicvine.gamespot.com/maria-stark-foundation/4060-60009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60017/", + "id": 60017, + "name": "Alien Elite", + "site_detail_url": "https://comicvine.gamespot.com/alien-elite/4060-60017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60019/", + "id": 60019, + "name": "Builders", + "site_detail_url": "https://comicvine.gamespot.com/builders/4060-60019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60020/", + "id": 60020, + "name": "Dawn of the White Light", + "site_detail_url": "https://comicvine.gamespot.com/dawn-of-the-white-light/4060-60020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60024/", + "id": 60024, + "name": "Hard 7", + "site_detail_url": "https://comicvine.gamespot.com/hard-7/4060-60024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60028/", + "id": 60028, + "name": "Assassins' Guild", + "site_detail_url": "https://comicvine.gamespot.com/assassins-guild/4060-60028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60033/", + "id": 60033, + "name": "House of Magnus", + "site_detail_url": "https://comicvine.gamespot.com/house-of-magnus/4060-60033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60034/", + "id": 60034, + "name": "Darwin Force", + "site_detail_url": "https://comicvine.gamespot.com/darwin-force/4060-60034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60035/", + "id": 60035, + "name": "True People Tribe", + "site_detail_url": "https://comicvine.gamespot.com/true-people-tribe/4060-60035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60042/", + "id": 60042, + "name": "FOOM", + "site_detail_url": "https://comicvine.gamespot.com/f-o-o-m/4060-60042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60043/", + "id": 60043, + "name": "Tribe of Fire", + "site_detail_url": "https://comicvine.gamespot.com/tribe-of-fire/4060-60043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60044/", + "id": 60044, + "name": "GeneTech", + "site_detail_url": "https://comicvine.gamespot.com/genetech/4060-60044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60046/", + "id": 60046, + "name": "Galactic Council", + "site_detail_url": "https://comicvine.gamespot.com/galactic-council/4060-60046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60047/", + "id": 60047, + "name": "The Skulls", + "site_detail_url": "https://comicvine.gamespot.com/the-skulls/4060-60047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60048/", + "id": 60048, + "name": "Hydrators", + "site_detail_url": "https://comicvine.gamespot.com/hydrators/4060-60048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60050/", + "id": 60050, + "name": "Department K", + "site_detail_url": "https://comicvine.gamespot.com/department-k/4060-60050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60051/", + "id": 60051, + "name": "The Lupine", + "site_detail_url": "https://comicvine.gamespot.com/the-lupine/4060-60051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60052/", + "id": 60052, + "name": "Disposables", + "site_detail_url": "https://comicvine.gamespot.com/disposables/4060-60052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60053/", + "id": 60053, + "name": "Stane International", + "site_detail_url": "https://comicvine.gamespot.com/stane-international/4060-60053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60054/", + "id": 60054, + "name": "Circuits Maximus", + "site_detail_url": "https://comicvine.gamespot.com/circuits-maximus/4060-60054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60060/", + "id": 60060, + "name": "Halloween Parade", + "site_detail_url": "https://comicvine.gamespot.com/halloween-parade/4060-60060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60061/", + "id": 60061, + "name": "Faltine", + "site_detail_url": "https://comicvine.gamespot.com/faltine/4060-60061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60075/", + "id": 60075, + "name": "21st Century New World Order", + "site_detail_url": "https://comicvine.gamespot.com/21st-century-new-world-order/4060-60075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60076/", + "id": 60076, + "name": "Deterrence Research Corporation", + "site_detail_url": "https://comicvine.gamespot.com/deterrence-research-corporation/4060-60076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60079/", + "id": 60079, + "name": "The Black Musketeers", + "site_detail_url": "https://comicvine.gamespot.com/the-black-musketeers/4060-60079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60080/", + "id": 60080, + "name": "Space Rangers", + "site_detail_url": "https://comicvine.gamespot.com/space-rangers/4060-60080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60081/", + "id": 60081, + "name": "Savage Six", + "site_detail_url": "https://comicvine.gamespot.com/savage-six/4060-60081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60082/", + "id": 60082, + "name": "Annihilus' Queens", + "site_detail_url": "https://comicvine.gamespot.com/annihilus-queens/4060-60082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60083/", + "id": 60083, + "name": "Baron Mordo's Minions", + "site_detail_url": "https://comicvine.gamespot.com/baron-mordos-minions/4060-60083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60084/", + "id": 60084, + "name": "Cognoscenti", + "site_detail_url": "https://comicvine.gamespot.com/cognoscenti/4060-60084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60085/", + "id": 60085, + "name": "Collective Intelligence", + "site_detail_url": "https://comicvine.gamespot.com/collective-intelligence/4060-60085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60086/", + "id": 60086, + "name": "Exterminators", + "site_detail_url": "https://comicvine.gamespot.com/exterminators/4060-60086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60097/", + "id": 60097, + "name": "Sky Devils", + "site_detail_url": "https://comicvine.gamespot.com/sky-devils/4060-60097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60098/", + "id": 60098, + "name": "Interplaneteur Inc.", + "site_detail_url": "https://comicvine.gamespot.com/interplaneteur-inc/4060-60098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60099/", + "id": 60099, + "name": "Espionage Elite", + "site_detail_url": "https://comicvine.gamespot.com/espionage-elite/4060-60099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60102/", + "id": 60102, + "name": "Hunt Squad", + "site_detail_url": "https://comicvine.gamespot.com/hunt-squad/4060-60102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60103/", + "id": 60103, + "name": "Vennema Multiversal", + "site_detail_url": "https://comicvine.gamespot.com/vennema-multiversal/4060-60103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60104/", + "id": 60104, + "name": "Super-M.O.D.O.K. Squadron", + "site_detail_url": "https://comicvine.gamespot.com/supermodok-squadron/4060-60104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60110/", + "id": 60110, + "name": "Dark Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/dark-ultimates/4060-60110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60116/", + "id": 60116, + "name": "Kree Public Accuser Corps", + "site_detail_url": "https://comicvine.gamespot.com/kree-public-accuser-corps/4060-60116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60119/", + "id": 60119, + "name": "The Pan-Asian School for the Unusually Gifted", + "site_detail_url": "https://comicvine.gamespot.com/the-panasian-school-for-the-unusually-gifted/4060-60119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60120/", + "id": 60120, + "name": "The Wakandan School of Alternative Studies", + "site_detail_url": "https://comicvine.gamespot.com/the-wakandan-school-of-alternative-studies/4060-60120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60122/", + "id": 60122, + "name": "Mummudrai", + "site_detail_url": "https://comicvine.gamespot.com/mummudrai/4060-60122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60123/", + "id": 60123, + "name": "Braak'nhüd", + "site_detail_url": "https://comicvine.gamespot.com/braaknhud/4060-60123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60125/", + "id": 60125, + "name": "Cult of Death", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-death/4060-60125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60126/", + "id": 60126, + "name": "Chronarchists", + "site_detail_url": "https://comicvine.gamespot.com/chronarchists/4060-60126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60127/", + "id": 60127, + "name": "T.I.M.E.", + "site_detail_url": "https://comicvine.gamespot.com/t-i-m-e/4060-60127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60128/", + "id": 60128, + "name": "Ba-Bani", + "site_detail_url": "https://comicvine.gamespot.com/ba-bani/4060-60128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60129/", + "id": 60129, + "name": "Vorms", + "site_detail_url": "https://comicvine.gamespot.com/vorms/4060-60129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60130/", + "id": 60130, + "name": "Sons of Set", + "site_detail_url": "https://comicvine.gamespot.com/sons-of-set/4060-60130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60132/", + "id": 60132, + "name": "The Universal Church of Immortus", + "site_detail_url": "https://comicvine.gamespot.com/the-universal-church-of-immortus/4060-60132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60135/", + "id": 60135, + "name": "Tong of Creel", + "site_detail_url": "https://comicvine.gamespot.com/tong-of-creel/4060-60135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60136/", + "id": 60136, + "name": "Children of the Sun", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-sun/4060-60136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60141/", + "id": 60141, + "name": "Union Jacks", + "site_detail_url": "https://comicvine.gamespot.com/union-jacks/4060-60141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60143/", + "id": 60143, + "name": "K'aitians", + "site_detail_url": "https://comicvine.gamespot.com/k-aitians/4060-60143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60145/", + "id": 60145, + "name": "Monster Generation", + "site_detail_url": "https://comicvine.gamespot.com/monster-generation/4060-60145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60148/", + "id": 60148, + "name": "Men-Fish", + "site_detail_url": "https://comicvine.gamespot.com/men-fish/4060-60148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60161/", + "id": 60161, + "name": "Nihilistic Order", + "site_detail_url": "https://comicvine.gamespot.com/nihilistic-order/4060-60161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60165/", + "id": 60165, + "name": "Ex Nihili", + "site_detail_url": "https://comicvine.gamespot.com/ex-nihili/4060-60165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60174/", + "id": 60174, + "name": "Defenders of Dynatron City", + "site_detail_url": "https://comicvine.gamespot.com/defenders-of-dynatron-city/4060-60174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60181/", + "id": 60181, + "name": "Legion of The Skull", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-the-skull/4060-60181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60194/", + "id": 60194, + "name": "Obscurity Legion", + "site_detail_url": "https://comicvine.gamespot.com/obscurity-legion/4060-60194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60211/", + "id": 60211, + "name": "S.M.A.S.H.", + "site_detail_url": "https://comicvine.gamespot.com/s-m-a-s-h/4060-60211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60224/", + "id": 60224, + "name": "Luphomoids", + "site_detail_url": "https://comicvine.gamespot.com/luphomoids/4060-60224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60232/", + "id": 60232, + "name": "Latverian School of Science", + "site_detail_url": "https://comicvine.gamespot.com/latverian-school-of-science/4060-60232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60248/", + "id": 60248, + "name": "Heralds of Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/heralds-of-onslaught/4060-60248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60250/", + "id": 60250, + "name": "Congress of the Crowns", + "site_detail_url": "https://comicvine.gamespot.com/congress-of-the-crowns/4060-60250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60260/", + "id": 60260, + "name": "Questers", + "site_detail_url": "https://comicvine.gamespot.com/questers/4060-60260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60262/", + "id": 60262, + "name": "Ancients", + "site_detail_url": "https://comicvine.gamespot.com/ancients/4060-60262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60264/", + "id": 60264, + "name": "Cult of Set", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-set/4060-60264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60265/", + "id": 60265, + "name": "Brotherhood of the Shield", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-the-shield/4060-60265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60268/", + "id": 60268, + "name": "League of Realms ", + "site_detail_url": "https://comicvine.gamespot.com/league-of-realms/4060-60268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60270/", + "id": 60270, + "name": "Endless Knights", + "site_detail_url": "https://comicvine.gamespot.com/endless-knights/4060-60270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60271/", + "id": 60271, + "name": "Cult of the Negative Zone", + "site_detail_url": "https://comicvine.gamespot.com/cult-of-the-negative-zone/4060-60271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60276/", + "id": 60276, + "name": "Magnum Force", + "site_detail_url": "https://comicvine.gamespot.com/magnum-force/4060-60276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60279/", + "id": 60279, + "name": "Mek-Men", + "site_detail_url": "https://comicvine.gamespot.com/mek-men/4060-60279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60280/", + "id": 60280, + "name": "Secbots", + "site_detail_url": "https://comicvine.gamespot.com/secbots/4060-60280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60281/", + "id": 60281, + "name": "Phantoms", + "site_detail_url": "https://comicvine.gamespot.com/phantoms/4060-60281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60283/", + "id": 60283, + "name": "Nugent Technologies", + "site_detail_url": "https://comicvine.gamespot.com/nugent-technologies/4060-60283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60284/", + "id": 60284, + "name": "Avatars of Templar", + "site_detail_url": "https://comicvine.gamespot.com/avatars-of-templar/4060-60284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60286/", + "id": 60286, + "name": "The Neuronauts", + "site_detail_url": "https://comicvine.gamespot.com/the-neuronauts/4060-60286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60287/", + "id": 60287, + "name": "Limbic Infundibula", + "site_detail_url": "https://comicvine.gamespot.com/limbic-infundibula/4060-60287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60288/", + "id": 60288, + "name": "Time-Twisters", + "site_detail_url": "https://comicvine.gamespot.com/time-twisters/4060-60288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60289/", + "id": 60289, + "name": "Faceless Ones", + "site_detail_url": "https://comicvine.gamespot.com/faceless-ones/4060-60289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60290/", + "id": 60290, + "name": "Suburban She-Devils", + "site_detail_url": "https://comicvine.gamespot.com/suburban-shedevils/4060-60290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60295/", + "id": 60295, + "name": "Cross Technological Enterprises", + "site_detail_url": "https://comicvine.gamespot.com/cross-technological-enterprises/4060-60295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60298/", + "id": 60298, + "name": "Nobili", + "site_detail_url": "https://comicvine.gamespot.com/nobili/4060-60298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60299/", + "id": 60299, + "name": "Necro-Cyborgs", + "site_detail_url": "https://comicvine.gamespot.com/necro-cyborgs/4060-60299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60300/", + "id": 60300, + "name": "War Toys", + "site_detail_url": "https://comicvine.gamespot.com/war-toys/4060-60300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60310/", + "id": 60310, + "name": "Nighthawks", + "site_detail_url": "https://comicvine.gamespot.com/nighthawks/4060-60310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60311/", + "id": 60311, + "name": "Blue Eagles", + "site_detail_url": "https://comicvine.gamespot.com/blue-eagles/4060-60311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60312/", + "id": 60312, + "name": "Apocalypse Twins", + "site_detail_url": "https://comicvine.gamespot.com/apocalypse-twins/4060-60312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60314/", + "id": 60314, + "name": "Protoids", + "site_detail_url": "https://comicvine.gamespot.com/protoids/4060-60314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60315/", + "id": 60315, + "name": "Servitors", + "site_detail_url": "https://comicvine.gamespot.com/servitors/4060-60315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60337/", + "id": 60337, + "name": "Voldi", + "site_detail_url": "https://comicvine.gamespot.com/voldi/4060-60337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60338/", + "id": 60338, + "name": "Mechanohoplites", + "site_detail_url": "https://comicvine.gamespot.com/mechanohoplites/4060-60338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60362/", + "id": 60362, + "name": "Weapon Minus", + "site_detail_url": "https://comicvine.gamespot.com/weapon-minus/4060-60362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60367/", + "id": 60367, + "name": "Celestial Order of the Si-Fan", + "site_detail_url": "https://comicvine.gamespot.com/celestial-order-of-the-si-fan/4060-60367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60373/", + "id": 60373, + "name": "X-Melmen", + "site_detail_url": "https://comicvine.gamespot.com/x-melmen/4060-60373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60382/", + "id": 60382, + "name": "Thirteen Ninjas", + "site_detail_url": "https://comicvine.gamespot.com/thirteen-ninjas/4060-60382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60387/", + "id": 60387, + "name": "Vizier's Guard", + "site_detail_url": "https://comicvine.gamespot.com/viziers-guard/4060-60387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60394/", + "id": 60394, + "name": "Iron Rain", + "site_detail_url": "https://comicvine.gamespot.com/iron-rain/4060-60394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60400/", + "id": 60400, + "name": "The Paguros", + "site_detail_url": "https://comicvine.gamespot.com/the-paguros/4060-60400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60420/", + "id": 60420, + "name": "Imperial Guard Training Academy", + "site_detail_url": "https://comicvine.gamespot.com/imperial-guard-training-academy/4060-60420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60422/", + "id": 60422, + "name": "Warbirds", + "site_detail_url": "https://comicvine.gamespot.com/warbirds/4060-60422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60423/", + "id": 60423, + "name": "Zebra People", + "site_detail_url": "https://comicvine.gamespot.com/zebra-people/4060-60423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60445/", + "id": 60445, + "name": "Droogs", + "site_detail_url": "https://comicvine.gamespot.com/droogs/4060-60445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60455/", + "id": 60455, + "name": "Cortex Incorporated", + "site_detail_url": "https://comicvine.gamespot.com/cortex-incorporated/4060-60455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60458/", + "id": 60458, + "name": "Adaptoids", + "site_detail_url": "https://comicvine.gamespot.com/adaptoids/4060-60458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60485/", + "id": 60485, + "name": "Eyes of Agamotto", + "site_detail_url": "https://comicvine.gamespot.com/eyes-of-agamotto/4060-60485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60486/", + "id": 60486, + "name": "Iron Force", + "site_detail_url": "https://comicvine.gamespot.com/iron-force/4060-60486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60488/", + "id": 60488, + "name": "W.A.N.D.", + "site_detail_url": "https://comicvine.gamespot.com/w-a-n-d/4060-60488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60490/", + "id": 60490, + "name": "Parliamech", + "site_detail_url": "https://comicvine.gamespot.com/parliamech/4060-60490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60494/", + "id": 60494, + "name": "Omega Core", + "site_detail_url": "https://comicvine.gamespot.com/omega-core/4060-60494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60501/", + "id": 60501, + "name": "Black Priests", + "site_detail_url": "https://comicvine.gamespot.com/black-priests/4060-60501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60504/", + "id": 60504, + "name": "Space Patrol", + "site_detail_url": "https://comicvine.gamespot.com/space-patrol/4060-60504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60507/", + "id": 60507, + "name": "They Who Wield Power", + "site_detail_url": "https://comicvine.gamespot.com/they-who-wield-power/4060-60507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60513/", + "id": 60513, + "name": "Serval Industries", + "site_detail_url": "https://comicvine.gamespot.com/serval-industries/4060-60513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60514/", + "id": 60514, + "name": "S.H.I.E.L.D. Robot Hunter Squad", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d-robot-hunter-squad/4060-60514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60522/", + "id": 60522, + "name": "Jean Grey Academy", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey-academy/4060-60522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60540/", + "id": 60540, + "name": "The Chronos Corps", + "site_detail_url": "https://comicvine.gamespot.com/the-chronos-corps/4060-60540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60579/", + "id": 60579, + "name": "People's Protectorate", + "site_detail_url": "https://comicvine.gamespot.com/peoples-protectorate/4060-60579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60586/", + "id": 60586, + "name": "Trojan Guard", + "site_detail_url": "https://comicvine.gamespot.com/trojan-guard/4060-60586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60596/", + "id": 60596, + "name": "Leader's Androids", + "site_detail_url": "https://comicvine.gamespot.com/leader-s-androids/4060-60596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60598/", + "id": 60598, + "name": "Kree Pursuer Corps", + "site_detail_url": "https://comicvine.gamespot.com/kree-pursuer-corps/4060-60598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60603/", + "id": 60603, + "name": "Brilliant Citizens", + "site_detail_url": "https://comicvine.gamespot.com/brilliant-citizens/4060-60603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60611/", + "id": 60611, + "name": "New Modernist Army", + "site_detail_url": "https://comicvine.gamespot.com/new-modernist-army/4060-60611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60647/", + "id": 60647, + "name": "Acanti", + "site_detail_url": "https://comicvine.gamespot.com/acanti/4060-60647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60648/", + "id": 60648, + "name": "Starsharks", + "site_detail_url": "https://comicvine.gamespot.com/starsharks/4060-60648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60657/", + "id": 60657, + "name": "Kaptroids", + "site_detail_url": "https://comicvine.gamespot.com/kaptroids/4060-60657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60664/", + "id": 60664, + "name": "Delphan Brothers", + "site_detail_url": "https://comicvine.gamespot.com/delphan-brothers/4060-60664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60671/", + "id": 60671, + "name": "Sluggards", + "site_detail_url": "https://comicvine.gamespot.com/sluggards/4060-60671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60687/", + "id": 60687, + "name": "Phoenix Corporation", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-corporation/4060-60687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60698/", + "id": 60698, + "name": "Great Society", + "site_detail_url": "https://comicvine.gamespot.com/great-society/4060-60698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60702/", + "id": 60702, + "name": "Gamma Spores", + "site_detail_url": "https://comicvine.gamespot.com/gamma-spores/4060-60702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60724/", + "id": 60724, + "name": "Lor", + "site_detail_url": "https://comicvine.gamespot.com/lor/4060-60724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60734/", + "id": 60734, + "name": "Attilan Royal Family", + "site_detail_url": "https://comicvine.gamespot.com/attilan-royal-family/4060-60734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60735/", + "id": 60735, + "name": "Shaolin Terror Priests", + "site_detail_url": "https://comicvine.gamespot.com/shaolin-terror-priests/4060-60735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60736/", + "id": 60736, + "name": "Serpent Skulls", + "site_detail_url": "https://comicvine.gamespot.com/serpent-skulls/4060-60736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60737/", + "id": 60737, + "name": "Lightning Lords of Nepal", + "site_detail_url": "https://comicvine.gamespot.com/lightning-lords-of-nepal/4060-60737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60755/", + "id": 60755, + "name": "V.I.G.I.L.", + "site_detail_url": "https://comicvine.gamespot.com/v-i-g-i-l/4060-60755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60764/", + "id": 60764, + "name": "The Menagerie", + "site_detail_url": "https://comicvine.gamespot.com/the-menagerie/4060-60764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60765/", + "id": 60765, + "name": "Avengers of the Supernatural", + "site_detail_url": "https://comicvine.gamespot.com/avengers-of-the-supernatural/4060-60765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60781/", + "id": 60781, + "name": "Extreme Emergency Team", + "site_detail_url": "https://comicvine.gamespot.com/extreme-emergency-team/4060-60781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60851/", + "id": 60851, + "name": "Deathwalkers", + "site_detail_url": "https://comicvine.gamespot.com/deathwalkers/4060-60851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60855/", + "id": 60855, + "name": "Stark Seven", + "site_detail_url": "https://comicvine.gamespot.com/stark-seven/4060-60855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60862/", + "id": 60862, + "name": "Zero Tolerance Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/zero-tolerance-soldiers/4060-60862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60864/", + "id": 60864, + "name": "The Ascendant", + "site_detail_url": "https://comicvine.gamespot.com/the-ascendant/4060-60864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60868/", + "id": 60868, + "name": "S.P.E.A.R.", + "site_detail_url": "https://comicvine.gamespot.com/s-p-e-a-r/4060-60868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60870/", + "id": 60870, + "name": "Taheen", + "site_detail_url": "https://comicvine.gamespot.com/taheen/4060-60870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60871/", + "id": 60871, + "name": "Breakers", + "site_detail_url": "https://comicvine.gamespot.com/breakers/4060-60871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60872/", + "id": 60872, + "name": "Can-toi", + "site_detail_url": "https://comicvine.gamespot.com/can-toi/4060-60872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60887/", + "id": 60887, + "name": "Jahrmarkt", + "site_detail_url": "https://comicvine.gamespot.com/jahrmarkt/4060-60887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60934/", + "id": 60934, + "name": "Canadacorp", + "site_detail_url": "https://comicvine.gamespot.com/canadacorp/4060-60934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60977/", + "id": 60977, + "name": "Adjustors", + "site_detail_url": "https://comicvine.gamespot.com/adjustors/4060-60977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60978/", + "id": 60978, + "name": "T.O.T.E.M.", + "site_detail_url": "https://comicvine.gamespot.com/t-o-t-e-m/4060-60978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60981/", + "id": 60981, + "name": "Anti-Bodies", + "site_detail_url": "https://comicvine.gamespot.com/anti-bodies/4060-60981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60982/", + "id": 60982, + "name": "The Borers", + "site_detail_url": "https://comicvine.gamespot.com/the-borers/4060-60982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60993/", + "id": 60993, + "name": "Knights of Hykon", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-hykon/4060-60993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60994/", + "id": 60994, + "name": "S.H.I.E.L.D. Avian Squad", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d-avian-squad/4060-60994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-60995/", + "id": 60995, + "name": "Habit Heroes", + "site_detail_url": "https://comicvine.gamespot.com/habit-heroes/4060-60995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61044/", + "id": 61044, + "name": "Skull Squad", + "site_detail_url": "https://comicvine.gamespot.com/skull-squad/4060-61044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61049/", + "id": 61049, + "name": "Manchester Gods", + "site_detail_url": "https://comicvine.gamespot.com/manchester-gods/4060-61049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61060/", + "id": 61060, + "name": "Xandarians", + "site_detail_url": "https://comicvine.gamespot.com/xandarians/4060-61060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61061/", + "id": 61061, + "name": "Korbinites", + "site_detail_url": "https://comicvine.gamespot.com/korbinites/4060-61061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61073/", + "id": 61073, + "name": "Grover Lane", + "site_detail_url": "https://comicvine.gamespot.com/grover-lane/4060-61073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61111/", + "id": 61111, + "name": "The Purple Children", + "site_detail_url": "https://comicvine.gamespot.com/the-purple-children/4060-61111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61114/", + "id": 61114, + "name": "The Mary Janes", + "site_detail_url": "https://comicvine.gamespot.com/the-mary-janes/4060-61114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61117/", + "id": 61117, + "name": "Blue Hyde Brigade", + "site_detail_url": "https://comicvine.gamespot.com/blue-hyde-brigade/4060-61117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61135/", + "id": 61135, + "name": "Providian Order", + "site_detail_url": "https://comicvine.gamespot.com/providian-order/4060-61135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61137/", + "id": 61137, + "name": "Nightmericans", + "site_detail_url": "https://comicvine.gamespot.com/nightmericans/4060-61137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61151/", + "id": 61151, + "name": "Inheritors", + "site_detail_url": "https://comicvine.gamespot.com/inheritors/4060-61151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61155/", + "id": 61155, + "name": "Destructors", + "site_detail_url": "https://comicvine.gamespot.com/destructors/4060-61155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61156/", + "id": 61156, + "name": "Protectors", + "site_detail_url": "https://comicvine.gamespot.com/protectors/4060-61156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61184/", + "id": 61184, + "name": "Bowling League of America", + "site_detail_url": "https://comicvine.gamespot.com/bowling-league-of-america/4060-61184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61194/", + "id": 61194, + "name": "Portland Avengers", + "site_detail_url": "https://comicvine.gamespot.com/portland-avengers/4060-61194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61231/", + "id": 61231, + "name": "Green Flames", + "site_detail_url": "https://comicvine.gamespot.com/green-flames/4060-61231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61233/", + "id": 61233, + "name": "Vaughn Security Systems", + "site_detail_url": "https://comicvine.gamespot.com/vaughn-security-systems/4060-61233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61235/", + "id": 61235, + "name": "Save Our Society Foundation", + "site_detail_url": "https://comicvine.gamespot.com/save-our-society-foundation/4060-61235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61237/", + "id": 61237, + "name": "The Fast Five", + "site_detail_url": "https://comicvine.gamespot.com/the-fast-five/4060-61237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61240/", + "id": 61240, + "name": "All-Scar Squadron", + "site_detail_url": "https://comicvine.gamespot.com/allscar-squadron/4060-61240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61251/", + "id": 61251, + "name": "Ennilux", + "site_detail_url": "https://comicvine.gamespot.com/ennilux/4060-61251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61255/", + "id": 61255, + "name": "Xenotech", + "site_detail_url": "https://comicvine.gamespot.com/xenotech/4060-61255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61256/", + "id": 61256, + "name": "Vigilance", + "site_detail_url": "https://comicvine.gamespot.com/vigilance/4060-61256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61311/", + "id": 61311, + "name": "Primeans", + "site_detail_url": "https://comicvine.gamespot.com/primeans/4060-61311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61312/", + "id": 61312, + "name": "Ding-A-Ling Family", + "site_detail_url": "https://comicvine.gamespot.com/ding-a-ling-family/4060-61312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61313/", + "id": 61313, + "name": "Brundlebuds", + "site_detail_url": "https://comicvine.gamespot.com/brundlebuds/4060-61313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61314/", + "id": 61314, + "name": "Gatekeepers", + "site_detail_url": "https://comicvine.gamespot.com/gatekeepers/4060-61314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61343/", + "id": 61343, + "name": "Killing Squad", + "site_detail_url": "https://comicvine.gamespot.com/killing-squad/4060-61343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61361/", + "id": 61361, + "name": "X-Ceptionals", + "site_detail_url": "https://comicvine.gamespot.com/x-ceptionals/4060-61361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61363/", + "id": 61363, + "name": "Wolverines", + "site_detail_url": "https://comicvine.gamespot.com/wolverines/4060-61363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61378/", + "id": 61378, + "name": "Darwin's Martyrs", + "site_detail_url": "https://comicvine.gamespot.com/darwin-s-martyrs/4060-61378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61387/", + "id": 61387, + "name": "Hunter of Monster Special Force", + "site_detail_url": "https://comicvine.gamespot.com/hunter-of-monster-special-force/4060-61387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61456/", + "id": 61456, + "name": "Polar Bear Clan", + "site_detail_url": "https://comicvine.gamespot.com/polar-bear-clan/4060-61456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61457/", + "id": 61457, + "name": "City Stealers", + "site_detail_url": "https://comicvine.gamespot.com/city-stealers/4060-61457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61458/", + "id": 61458, + "name": "Innocents of God", + "site_detail_url": "https://comicvine.gamespot.com/innocents-of-god/4060-61458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61473/", + "id": 61473, + "name": "F.O.R.C.E.", + "site_detail_url": "https://comicvine.gamespot.com/f-o-r-c-e/4060-61473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61480/", + "id": 61480, + "name": "Freak Beat", + "site_detail_url": "https://comicvine.gamespot.com/freak-beat/4060-61480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61492/", + "id": 61492, + "name": "Mystics", + "site_detail_url": "https://comicvine.gamespot.com/mystics/4060-61492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61493/", + "id": 61493, + "name": "Garthim", + "site_detail_url": "https://comicvine.gamespot.com/garthim/4060-61493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61494/", + "id": 61494, + "name": "Gelfling", + "site_detail_url": "https://comicvine.gamespot.com/gelfling/4060-61494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61514/", + "id": 61514, + "name": "Jivaro Headhunters", + "site_detail_url": "https://comicvine.gamespot.com/jivaro-headhunters/4060-61514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61515/", + "id": 61515, + "name": "Council of Seven", + "site_detail_url": "https://comicvine.gamespot.com/council-of-seven/4060-61515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61516/", + "id": 61516, + "name": "Warlords of the Web", + "site_detail_url": "https://comicvine.gamespot.com/warlords-of-the-web/4060-61516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61517/", + "id": 61517, + "name": "Bewitchers of the Night", + "site_detail_url": "https://comicvine.gamespot.com/bewitchers-of-the-night/4060-61517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61548/", + "id": 61548, + "name": "Six Big Men", + "site_detail_url": "https://comicvine.gamespot.com/six-big-men/4060-61548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61550/", + "id": 61550, + "name": "The Scientists Guild", + "site_detail_url": "https://comicvine.gamespot.com/the-scientists-guild/4060-61550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61551/", + "id": 61551, + "name": "BIOTEK", + "site_detail_url": "https://comicvine.gamespot.com/biotek/4060-61551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61555/", + "id": 61555, + "name": "The Clarion", + "site_detail_url": "https://comicvine.gamespot.com/the-clarion/4060-61555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61556/", + "id": 61556, + "name": "Goblin Women", + "site_detail_url": "https://comicvine.gamespot.com/goblin-women/4060-61556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61562/", + "id": 61562, + "name": "The People of the Green Hills", + "site_detail_url": "https://comicvine.gamespot.com/the-people-of-the-green-hills/4060-61562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61563/", + "id": 61563, + "name": "Great Council of Order", + "site_detail_url": "https://comicvine.gamespot.com/great-council-of-order/4060-61563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61565/", + "id": 61565, + "name": "Insectoids", + "site_detail_url": "https://comicvine.gamespot.com/insectoids/4060-61565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61566/", + "id": 61566, + "name": "Sectaurs", + "site_detail_url": "https://comicvine.gamespot.com/sectaurs/4060-61566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61567/", + "id": 61567, + "name": "Keewazi Tribe", + "site_detail_url": "https://comicvine.gamespot.com/keewazi-tribe/4060-61567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61568/", + "id": 61568, + "name": "Followers of the Light", + "site_detail_url": "https://comicvine.gamespot.com/followers-of-the-light/4060-61568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61575/", + "id": 61575, + "name": "Cosmic Avengers", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-avengers/4060-61575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61577/", + "id": 61577, + "name": "Iron Trinity", + "site_detail_url": "https://comicvine.gamespot.com/iron-trinity/4060-61577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61580/", + "id": 61580, + "name": "Paradise Group", + "site_detail_url": "https://comicvine.gamespot.com/paradise-group/4060-61580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61588/", + "id": 61588, + "name": "Ergons", + "site_detail_url": "https://comicvine.gamespot.com/ergons/4060-61588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61619/", + "id": 61619, + "name": "Carmondians", + "site_detail_url": "https://comicvine.gamespot.com/carmondians/4060-61619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61714/", + "id": 61714, + "name": "Pets of Evil Masters", + "site_detail_url": "https://comicvine.gamespot.com/pets-of-evil-masters/4060-61714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61729/", + "id": 61729, + "name": "A-Force", + "site_detail_url": "https://comicvine.gamespot.com/a-force/4060-61729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61769/", + "id": 61769, + "name": "Voice Unheard", + "site_detail_url": "https://comicvine.gamespot.com/voice-unheard/4060-61769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61785/", + "id": 61785, + "name": "Web Warriors", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors/4060-61785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61795/", + "id": 61795, + "name": "Wai-Go Industries", + "site_detail_url": "https://comicvine.gamespot.com/waigo-industries/4060-61795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61804/", + "id": 61804, + "name": "Kamado", + "site_detail_url": "https://comicvine.gamespot.com/kamado/4060-61804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61853/", + "id": 61853, + "name": "Endless Summers", + "site_detail_url": "https://comicvine.gamespot.com/endless-summers/4060-61853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61858/", + "id": 61858, + "name": "S.T.A.K.E.", + "site_detail_url": "https://comicvine.gamespot.com/s-t-a-k-e/4060-61858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61866/", + "id": 61866, + "name": "Madballs", + "site_detail_url": "https://comicvine.gamespot.com/madballs/4060-61866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61944/", + "id": 61944, + "name": "Black Novas", + "site_detail_url": "https://comicvine.gamespot.com/black-novas/4060-61944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61952/", + "id": 61952, + "name": "The First Order", + "site_detail_url": "https://comicvine.gamespot.com/the-first-order/4060-61952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-61967/", + "id": 61967, + "name": "Ghost Crew", + "site_detail_url": "https://comicvine.gamespot.com/ghost-crew/4060-61967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62010/", + "id": 62010, + "name": "Falkeens", + "site_detail_url": "https://comicvine.gamespot.com/falkeens/4060-62010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62014/", + "id": 62014, + "name": "Empirikul", + "site_detail_url": "https://comicvine.gamespot.com/empirikul/4060-62014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62015/", + "id": 62015, + "name": "Witchfinder Wolves", + "site_detail_url": "https://comicvine.gamespot.com/witchfinder-wolves/4060-62015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62025/", + "id": 62025, + "name": "Marvelman Family", + "site_detail_url": "https://comicvine.gamespot.com/marvelman-family/4060-62025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62031/", + "id": 62031, + "name": "I.D.I.C.", + "site_detail_url": "https://comicvine.gamespot.com/i-d-i-c/4060-62031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62048/", + "id": 62048, + "name": "Road Force", + "site_detail_url": "https://comicvine.gamespot.com/road-force/4060-62048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62057/", + "id": 62057, + "name": "The Visions", + "site_detail_url": "https://comicvine.gamespot.com/the-visions/4060-62057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62061/", + "id": 62061, + "name": "Fangs of the Serpent", + "site_detail_url": "https://comicvine.gamespot.com/fangs-of-the-serpent/4060-62061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62062/", + "id": 62062, + "name": "Serpent Solutions", + "site_detail_url": "https://comicvine.gamespot.com/serpent-solutions/4060-62062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62065/", + "id": 62065, + "name": "Killer-Folk", + "site_detail_url": "https://comicvine.gamespot.com/killer-folk/4060-62065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62085/", + "id": 62085, + "name": "Ghosts of Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/ghosts-of-cyclops/4060-62085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62098/", + "id": 62098, + "name": "Spookshow", + "site_detail_url": "https://comicvine.gamespot.com/spookshow/4060-62098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62099/", + "id": 62099, + "name": "Warpsmiths", + "site_detail_url": "https://comicvine.gamespot.com/warpsmiths/4060-62099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62100/", + "id": 62100, + "name": "Qys", + "site_detail_url": "https://comicvine.gamespot.com/qys/4060-62100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62106/", + "id": 62106, + "name": "Man-Things", + "site_detail_url": "https://comicvine.gamespot.com/man-things/4060-62106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62107/", + "id": 62107, + "name": "Mercs For Money", + "site_detail_url": "https://comicvine.gamespot.com/mercs-for-money/4060-62107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62136/", + "id": 62136, + "name": "Oracle Inc.", + "site_detail_url": "https://comicvine.gamespot.com/oracle-inc/4060-62136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62147/", + "id": 62147, + "name": "Church of the Sheltering Hand", + "site_detail_url": "https://comicvine.gamespot.com/church-of-the-sheltering-hand/4060-62147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62168/", + "id": 62168, + "name": "Ghost Racers", + "site_detail_url": "https://comicvine.gamespot.com/ghost-racers/4060-62168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62175/", + "id": 62175, + "name": "Hordax", + "site_detail_url": "https://comicvine.gamespot.com/hordax/4060-62175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62197/", + "id": 62197, + "name": "Rhinosaurs", + "site_detail_url": "https://comicvine.gamespot.com/rhinosaurs/4060-62197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62217/", + "id": 62217, + "name": "Goblin Nation", + "site_detail_url": "https://comicvine.gamespot.com/goblin-nation/4060-62217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62222/", + "id": 62222, + "name": "Knowhere Corps", + "site_detail_url": "https://comicvine.gamespot.com/knowhere-corps/4060-62222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62227/", + "id": 62227, + "name": "Space Knights", + "site_detail_url": "https://comicvine.gamespot.com/space-knights/4060-62227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62231/", + "id": 62231, + "name": "Marvanite Robots", + "site_detail_url": "https://comicvine.gamespot.com/marvanite-robots/4060-62231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62240/", + "id": 62240, + "name": "Uprising Storm", + "site_detail_url": "https://comicvine.gamespot.com/uprising-storm/4060-62240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62241/", + "id": 62241, + "name": "Brooklyn Avengers", + "site_detail_url": "https://comicvine.gamespot.com/brooklyn-avengers/4060-62241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62277/", + "id": 62277, + "name": "The Family", + "site_detail_url": "https://comicvine.gamespot.com/the-family/4060-62277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62300/", + "id": 62300, + "name": "The People", + "site_detail_url": "https://comicvine.gamespot.com/the-people/4060-62300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62314/", + "id": 62314, + "name": "Secret Disciples of Strange", + "site_detail_url": "https://comicvine.gamespot.com/secret-disciples-of-strange/4060-62314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62343/", + "id": 62343, + "name": "Ant-Man Security Solutions", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-security-solutions/4060-62343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62449/", + "id": 62449, + "name": "Satori", + "site_detail_url": "https://comicvine.gamespot.com/satori/4060-62449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62472/", + "id": 62472, + "name": "Black Knights", + "site_detail_url": "https://comicvine.gamespot.com/black-knights/4060-62472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62477/", + "id": 62477, + "name": "Great Gambonnos", + "site_detail_url": "https://comicvine.gamespot.com/great-gambonnos/4060-62477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62501/", + "id": 62501, + "name": "Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/dogs-of-war/4060-62501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62509/", + "id": 62509, + "name": "Satan's Angels", + "site_detail_url": "https://comicvine.gamespot.com/satans-angels/4060-62509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62529/", + "id": 62529, + "name": "Vandorians", + "site_detail_url": "https://comicvine.gamespot.com/vandorians/4060-62529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62559/", + "id": 62559, + "name": "Golden Raiders", + "site_detail_url": "https://comicvine.gamespot.com/golden-raiders/4060-62559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62583/", + "id": 62583, + "name": "Americops", + "site_detail_url": "https://comicvine.gamespot.com/americops/4060-62583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62585/", + "id": 62585, + "name": "Midnight Angels", + "site_detail_url": "https://comicvine.gamespot.com/midnight-angels/4060-62585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62603/", + "id": 62603, + "name": "Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/phoenix/4060-62603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62612/", + "id": 62612, + "name": "Fist", + "site_detail_url": "https://comicvine.gamespot.com/fist/4060-62612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62617/", + "id": 62617, + "name": "Nhu’Ghari", + "site_detail_url": "https://comicvine.gamespot.com/nhughari/4060-62617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62643/", + "id": 62643, + "name": "Daughters of Sapna", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-sapna/4060-62643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62645/", + "id": 62645, + "name": "Condor", + "site_detail_url": "https://comicvine.gamespot.com/condor/4060-62645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62646/", + "id": 62646, + "name": "Tsum Tsums", + "site_detail_url": "https://comicvine.gamespot.com/tsum-tsums/4060-62646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62653/", + "id": 62653, + "name": "Preemptive Strike", + "site_detail_url": "https://comicvine.gamespot.com/preemptive-strike/4060-62653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62654/", + "id": 62654, + "name": "Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/dogs-of-war/4060-62654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62669/", + "id": 62669, + "name": "Silent Order", + "site_detail_url": "https://comicvine.gamespot.com/silent-order/4060-62669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62675/", + "id": 62675, + "name": "Gods of War", + "site_detail_url": "https://comicvine.gamespot.com/gods-of-war/4060-62675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62680/", + "id": 62680, + "name": "W.H.I.S.P.E.R.", + "site_detail_url": "https://comicvine.gamespot.com/whisper/4060-62680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62681/", + "id": 62681, + "name": "New Revengers", + "site_detail_url": "https://comicvine.gamespot.com/new-revengers/4060-62681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62684/", + "id": 62684, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4060-62684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62689/", + "id": 62689, + "name": "Smashers", + "site_detail_url": "https://comicvine.gamespot.com/smashers/4060-62689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62690/", + "id": 62690, + "name": "Mind Maggots", + "site_detail_url": "https://comicvine.gamespot.com/mind-maggots/4060-62690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62713/", + "id": 62713, + "name": "Hateful Hexad", + "site_detail_url": "https://comicvine.gamespot.com/hateful-hexad/4060-62713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62715/", + "id": 62715, + "name": "Sparkitects", + "site_detail_url": "https://comicvine.gamespot.com/sparkitects/4060-62715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62728/", + "id": 62728, + "name": "Black Squadron", + "site_detail_url": "https://comicvine.gamespot.com/black-squadron/4060-62728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62732/", + "id": 62732, + "name": "M.O.D.O.K.", + "site_detail_url": "https://comicvine.gamespot.com/modok/4060-62732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62736/", + "id": 62736, + "name": "Congress of Worlds", + "site_detail_url": "https://comicvine.gamespot.com/congress-of-worlds/4060-62736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62737/", + "id": 62737, + "name": "Dark Council", + "site_detail_url": "https://comicvine.gamespot.com/dark-council/4060-62737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62738/", + "id": 62738, + "name": "Thunder Guard", + "site_detail_url": "https://comicvine.gamespot.com/thunder-guard/4060-62738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62743/", + "id": 62743, + "name": "Sun-People", + "site_detail_url": "https://comicvine.gamespot.com/sun-people/4060-62743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62748/", + "id": 62748, + "name": "Parker Industries", + "site_detail_url": "https://comicvine.gamespot.com/parker-industries/4060-62748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62755/", + "id": 62755, + "name": "Sorcerers Supreme", + "site_detail_url": "https://comicvine.gamespot.com/sorcerers-supreme/4060-62755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62758/", + "id": 62758, + "name": "Black Cats", + "site_detail_url": "https://comicvine.gamespot.com/black-cats/4060-62758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62771/", + "id": 62771, + "name": "Fact Channel News", + "site_detail_url": "https://comicvine.gamespot.com/fact-channel-news/4060-62771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62772/", + "id": 62772, + "name": "New U Technologies", + "site_detail_url": "https://comicvine.gamespot.com/new-u-technologies/4060-62772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62774/", + "id": 62774, + "name": "Teuthidans", + "site_detail_url": "https://comicvine.gamespot.com/teuthidans/4060-62774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62775/", + "id": 62775, + "name": "The Bank Rollers", + "site_detail_url": "https://comicvine.gamespot.com/the-bank-rollers/4060-62775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62786/", + "id": 62786, + "name": "Lion-People", + "site_detail_url": "https://comicvine.gamespot.com/lion-people/4060-62786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62791/", + "id": 62791, + "name": "Elans", + "site_detail_url": "https://comicvine.gamespot.com/elans/4060-62791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62795/", + "id": 62795, + "name": "Fang Gang", + "site_detail_url": "https://comicvine.gamespot.com/fang-gang/4060-62795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62806/", + "id": 62806, + "name": "Dark Room", + "site_detail_url": "https://comicvine.gamespot.com/dark-room/4060-62806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62811/", + "id": 62811, + "name": "Taurs", + "site_detail_url": "https://comicvine.gamespot.com/taurs/4060-62811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62814/", + "id": 62814, + "name": "The Zoo Family", + "site_detail_url": "https://comicvine.gamespot.com/the-zoo-family/4060-62814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62826/", + "id": 62826, + "name": "Ravagers", + "site_detail_url": "https://comicvine.gamespot.com/ravagers/4060-62826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62827/", + "id": 62827, + "name": "New Pride", + "site_detail_url": "https://comicvine.gamespot.com/new-pride/4060-62827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62828/", + "id": 62828, + "name": "Order of the Glorious End", + "site_detail_url": "https://comicvine.gamespot.com/order-of-the-glorious-end/4060-62828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62831/", + "id": 62831, + "name": "Red Team", + "site_detail_url": "https://comicvine.gamespot.com/red-team/4060-62831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62832/", + "id": 62832, + "name": "A.G.M.", + "site_detail_url": "https://comicvine.gamespot.com/agm/4060-62832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62833/", + "id": 62833, + "name": "T.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/tim/4060-62833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62840/", + "id": 62840, + "name": "Agence Byzantine", + "site_detail_url": "https://comicvine.gamespot.com/agence-byzantine/4060-62840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62844/", + "id": 62844, + "name": "Rhinarians", + "site_detail_url": "https://comicvine.gamespot.com/rhinarians/4060-62844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62845/", + "id": 62845, + "name": "Viscardi", + "site_detail_url": "https://comicvine.gamespot.com/viscardi/4060-62845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62854/", + "id": 62854, + "name": "Myld", + "site_detail_url": "https://comicvine.gamespot.com/myld/4060-62854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62857/", + "id": 62857, + "name": "War D.O.G.S.", + "site_detail_url": "https://comicvine.gamespot.com/war-dogs/4060-62857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62862/", + "id": 62862, + "name": "Disavowed of Galadoria", + "site_detail_url": "https://comicvine.gamespot.com/disavowed-of-galadoria/4060-62862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62870/", + "id": 62870, + "name": "Crimson Hawks", + "site_detail_url": "https://comicvine.gamespot.com/crimson-hawks/4060-62870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62878/", + "id": 62878, + "name": "Bombshells", + "site_detail_url": "https://comicvine.gamespot.com/bombshells/4060-62878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62880/", + "id": 62880, + "name": "The Freelancers", + "site_detail_url": "https://comicvine.gamespot.com/the-freelancers/4060-62880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62884/", + "id": 62884, + "name": "Dr. Nod and the Bod Squad", + "site_detail_url": "https://comicvine.gamespot.com/dr-nod-and-the-bod-squad/4060-62884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62901/", + "id": 62901, + "name": "Zen-Whoberi", + "site_detail_url": "https://comicvine.gamespot.com/zen-whoberi/4060-62901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62902/", + "id": 62902, + "name": "Skratch", + "site_detail_url": "https://comicvine.gamespot.com/skratch/4060-62902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62977/", + "id": 62977, + "name": "Protectors", + "site_detail_url": "https://comicvine.gamespot.com/protectors/4060-62977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62994/", + "id": 62994, + "name": "The Maw", + "site_detail_url": "https://comicvine.gamespot.com/the-maw/4060-62994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-62997/", + "id": 62997, + "name": "Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers/4060-62997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63035/", + "id": 63035, + "name": "Cosmic Coven", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-coven/4060-63035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63038/", + "id": 63038, + "name": "Black Knife Cartel", + "site_detail_url": "https://comicvine.gamespot.com/black-knife-cartel/4060-63038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63086/", + "id": 63086, + "name": "Atlas Foundation", + "site_detail_url": "https://comicvine.gamespot.com/atlas-foundation/4060-63086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63091/", + "id": 63091, + "name": "Council of Liu-Shi", + "site_detail_url": "https://comicvine.gamespot.com/council-of-liu-shi/4060-63091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63096/", + "id": 63096, + "name": "The Crusade", + "site_detail_url": "https://comicvine.gamespot.com/the-crusade/4060-63096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63103/", + "id": 63103, + "name": "Echomelians", + "site_detail_url": "https://comicvine.gamespot.com/echomelians/4060-63103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63116/", + "id": 63116, + "name": "Simbi", + "site_detail_url": "https://comicvine.gamespot.com/simbi/4060-63116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63119/", + "id": 63119, + "name": "Gramosians", + "site_detail_url": "https://comicvine.gamespot.com/gramosians/4060-63119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63120/", + "id": 63120, + "name": "Agents of the Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-the-cosmos/4060-63120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63121/", + "id": 63121, + "name": "Fmora", + "site_detail_url": "https://comicvine.gamespot.com/fmora/4060-63121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63122/", + "id": 63122, + "name": "P'qui", + "site_detail_url": "https://comicvine.gamespot.com/pqui/4060-63122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63126/", + "id": 63126, + "name": "Underdwellers", + "site_detail_url": "https://comicvine.gamespot.com/underdwellers/4060-63126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63127/", + "id": 63127, + "name": "Wugin", + "site_detail_url": "https://comicvine.gamespot.com/wugin/4060-63127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63128/", + "id": 63128, + "name": "Bhiv", + "site_detail_url": "https://comicvine.gamespot.com/bhiv/4060-63128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63129/", + "id": 63129, + "name": "Ruu'lto", + "site_detail_url": "https://comicvine.gamespot.com/ruulto/4060-63129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63130/", + "id": 63130, + "name": "Garonthians", + "site_detail_url": "https://comicvine.gamespot.com/garonthians/4060-63130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63132/", + "id": 63132, + "name": "Champions of Europe", + "site_detail_url": "https://comicvine.gamespot.com/champions-of-europe/4060-63132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63135/", + "id": 63135, + "name": "Astrans", + "site_detail_url": "https://comicvine.gamespot.com/astrans/4060-63135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63136/", + "id": 63136, + "name": "Eternity Watch", + "site_detail_url": "https://comicvine.gamespot.com/eternity-watch/4060-63136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63141/", + "id": 63141, + "name": "G.I.R.L.", + "site_detail_url": "https://comicvine.gamespot.com/girl/4060-63141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63142/", + "id": 63142, + "name": "Nomadic Warlords of the Lost Quadrant", + "site_detail_url": "https://comicvine.gamespot.com/nomadic-warlords-of-the-lost-quadrant/4060-63142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63145/", + "id": 63145, + "name": "The Raksha", + "site_detail_url": "https://comicvine.gamespot.com/the-raksha/4060-63145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63146/", + "id": 63146, + "name": "Pyke Syndicate", + "site_detail_url": "https://comicvine.gamespot.com/pyke-syndicate/4060-63146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63176/", + "id": 63176, + "name": "The Vestigials", + "site_detail_url": "https://comicvine.gamespot.com/the-vestigials/4060-63176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63187/", + "id": 63187, + "name": "Red Hand Gang", + "site_detail_url": "https://comicvine.gamespot.com/red-hand-gang/4060-63187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63189/", + "id": 63189, + "name": "Chilarians", + "site_detail_url": "https://comicvine.gamespot.com/chilarians/4060-63189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63202/", + "id": 63202, + "name": "Icarus One crew", + "site_detail_url": "https://comicvine.gamespot.com/icarus-one-crew/4060-63202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63203/", + "id": 63203, + "name": "Regulators", + "site_detail_url": "https://comicvine.gamespot.com/regulators/4060-63203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63213/", + "id": 63213, + "name": "Corrupt", + "site_detail_url": "https://comicvine.gamespot.com/corrupt/4060-63213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63214/", + "id": 63214, + "name": "Slaughterhouse Six", + "site_detail_url": "https://comicvine.gamespot.com/slaughterhouse-six/4060-63214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63215/", + "id": 63215, + "name": "The Scourge", + "site_detail_url": "https://comicvine.gamespot.com/the-scourge/4060-63215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63218/", + "id": 63218, + "name": "Ravolians", + "site_detail_url": "https://comicvine.gamespot.com/ravolians/4060-63218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63222/", + "id": 63222, + "name": "Tarkans", + "site_detail_url": "https://comicvine.gamespot.com/tarkans/4060-63222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63224/", + "id": 63224, + "name": "Greater Nevada Syndicate", + "site_detail_url": "https://comicvine.gamespot.com/greater-nevada-syndicate/4060-63224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63226/", + "id": 63226, + "name": "The Norns", + "site_detail_url": "https://comicvine.gamespot.com/the-norns/4060-63226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63234/", + "id": 63234, + "name": "Cabe and McPherson Security Specialists", + "site_detail_url": "https://comicvine.gamespot.com/cabe-and-mcpherson-security-specialists/4060-63234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63275/", + "id": 63275, + "name": "Shogun Reapers", + "site_detail_url": "https://comicvine.gamespot.com/shogun-reapers/4060-63275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63286/", + "id": 63286, + "name": "Poisons", + "site_detail_url": "https://comicvine.gamespot.com/poisons/4060-63286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63287/", + "id": 63287, + "name": "The Resistance", + "site_detail_url": "https://comicvine.gamespot.com/the-resistance/4060-63287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63312/", + "id": 63312, + "name": "The Inquisitorius", + "site_detail_url": "https://comicvine.gamespot.com/the-inquisitorius/4060-63312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63313/", + "id": 63313, + "name": "Progenitors", + "site_detail_url": "https://comicvine.gamespot.com/progenitors/4060-63313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63314/", + "id": 63314, + "name": "Scar Squadron", + "site_detail_url": "https://comicvine.gamespot.com/scar-squadron/4060-63314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63326/", + "id": 63326, + "name": "The Lords of Light and Darkness", + "site_detail_url": "https://comicvine.gamespot.com/the-lords-of-light-and-darkness/4060-63326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63328/", + "id": 63328, + "name": "Awful Flight", + "site_detail_url": "https://comicvine.gamespot.com/awful-flight/4060-63328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63329/", + "id": 63329, + "name": "Terrible Terriers", + "site_detail_url": "https://comicvine.gamespot.com/terrible-terriers/4060-63329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63330/", + "id": 63330, + "name": "Hockawottamie Vice", + "site_detail_url": "https://comicvine.gamespot.com/hockawottamie-vice/4060-63330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63332/", + "id": 63332, + "name": "Scavengers", + "site_detail_url": "https://comicvine.gamespot.com/scavengers/4060-63332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63333/", + "id": 63333, + "name": "Beagle Brigadeers", + "site_detail_url": "https://comicvine.gamespot.com/beagle-brigadeers/4060-63333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63334/", + "id": 63334, + "name": "R-Gang", + "site_detail_url": "https://comicvine.gamespot.com/r-gang/4060-63334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63335/", + "id": 63335, + "name": "Avalon Five", + "site_detail_url": "https://comicvine.gamespot.com/avalon-five/4060-63335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63339/", + "id": 63339, + "name": "Midsummer Knights", + "site_detail_url": "https://comicvine.gamespot.com/midsummer-knights/4060-63339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63340/", + "id": 63340, + "name": "NyFax", + "site_detail_url": "https://comicvine.gamespot.com/nyfax/4060-63340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63341/", + "id": 63341, + "name": "Great Game", + "site_detail_url": "https://comicvine.gamespot.com/great-game/4060-63341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63342/", + "id": 63342, + "name": "A.R.E.S.", + "site_detail_url": "https://comicvine.gamespot.com/ares/4060-63342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63373/", + "id": 63373, + "name": "Black Cat's Gang", + "site_detail_url": "https://comicvine.gamespot.com/black-cats-gang/4060-63373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63426/", + "id": 63426, + "name": "Remnants", + "site_detail_url": "https://comicvine.gamespot.com/remnants/4060-63426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63449/", + "id": 63449, + "name": "Unvengers", + "site_detail_url": "https://comicvine.gamespot.com/unvengers/4060-63449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63453/", + "id": 63453, + "name": "Zola's Mutates", + "site_detail_url": "https://comicvine.gamespot.com/zolas-mutates/4060-63453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63457/", + "id": 63457, + "name": "Allergen Gang", + "site_detail_url": "https://comicvine.gamespot.com/allergen-gang/4060-63457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63503/", + "id": 63503, + "name": "Loci", + "site_detail_url": "https://comicvine.gamespot.com/loci/4060-63503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63505/", + "id": 63505, + "name": "The Stogies", + "site_detail_url": "https://comicvine.gamespot.com/the-stogies/4060-63505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63507/", + "id": 63507, + "name": "Deadpool Inc.", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-inc/4060-63507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63511/", + "id": 63511, + "name": "L.U.N.A.R.", + "site_detail_url": "https://comicvine.gamespot.com/lunar/4060-63511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63516/", + "id": 63516, + "name": "Leviathon Tide", + "site_detail_url": "https://comicvine.gamespot.com/leviathon-tide/4060-63516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63520/", + "id": 63520, + "name": "Paladin Corporation", + "site_detail_url": "https://comicvine.gamespot.com/paladin-corporation/4060-63520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63528/", + "id": 63528, + "name": "Order of Witnesses", + "site_detail_url": "https://comicvine.gamespot.com/order-of-witnesses/4060-63528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63532/", + "id": 63532, + "name": "Freaks", + "site_detail_url": "https://comicvine.gamespot.com/freaks/4060-63532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63537/", + "id": 63537, + "name": "Drug Lords", + "site_detail_url": "https://comicvine.gamespot.com/drug-lords/4060-63537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63554/", + "id": 63554, + "name": "Dark Celestials", + "site_detail_url": "https://comicvine.gamespot.com/dark-celestials/4060-63554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63577/", + "id": 63577, + "name": "Alpha Team", + "site_detail_url": "https://comicvine.gamespot.com/alpha-team/4060-63577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63579/", + "id": 63579, + "name": "The Circle", + "site_detail_url": "https://comicvine.gamespot.com/the-circle/4060-63579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63583/", + "id": 63583, + "name": "Strikeforce One", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-one/4060-63583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63586/", + "id": 63586, + "name": "Moksgm'ol", + "site_detail_url": "https://comicvine.gamespot.com/moksgmol/4060-63586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63587/", + "id": 63587, + "name": "Avengers 1,000,000 BC", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1000000-bc/4060-63587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63588/", + "id": 63588, + "name": "Polaris' X-Men", + "site_detail_url": "https://comicvine.gamespot.com/polaris-x-men/4060-63588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63592/", + "id": 63592, + "name": "GenForm Enterprises", + "site_detail_url": "https://comicvine.gamespot.com/genform-enterprises/4060-63592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63602/", + "id": 63602, + "name": "Wraithkights", + "site_detail_url": "https://comicvine.gamespot.com/wraithkights/4060-63602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63603/", + "id": 63603, + "name": "The Iron Rangers", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-rangers/4060-63603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63623/", + "id": 63623, + "name": "The Retrievers of Atlantis", + "site_detail_url": "https://comicvine.gamespot.com/the-retrievers-of-atlantis/4060-63623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63633/", + "id": 63633, + "name": "Societe des Sadiques", + "site_detail_url": "https://comicvine.gamespot.com/societe-des-sadiques/4060-63633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63676/", + "id": 63676, + "name": "Mindspawn", + "site_detail_url": "https://comicvine.gamespot.com/mindspawn/4060-63676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63677/", + "id": 63677, + "name": "Ryu Order", + "site_detail_url": "https://comicvine.gamespot.com/ryu-order/4060-63677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63682/", + "id": 63682, + "name": "Hatchitech's X-Men", + "site_detail_url": "https://comicvine.gamespot.com/hatchitechs-x-men/4060-63682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63683/", + "id": 63683, + "name": "The Kill Crew", + "site_detail_url": "https://comicvine.gamespot.com/the-kill-crew/4060-63683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63699/", + "id": 63699, + "name": "Weapon X-Force", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-force/4060-63699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63718/", + "id": 63718, + "name": "Champions of the Realm", + "site_detail_url": "https://comicvine.gamespot.com/champions-of-the-realm/4060-63718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63719/", + "id": 63719, + "name": "Asgardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/asgardians-of-the-galaxy/4060-63719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63729/", + "id": 63729, + "name": "Minions of Evil", + "site_detail_url": "https://comicvine.gamespot.com/minions-of-evil/4060-63729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63733/", + "id": 63733, + "name": "War Goblins", + "site_detail_url": "https://comicvine.gamespot.com/war-goblins/4060-63733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63744/", + "id": 63744, + "name": "RejeX", + "site_detail_url": "https://comicvine.gamespot.com/rejex/4060-63744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63771/", + "id": 63771, + "name": "Defenders of the Deep", + "site_detail_url": "https://comicvine.gamespot.com/defenders-of-the-deep/4060-63771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63772/", + "id": 63772, + "name": "Silvereye", + "site_detail_url": "https://comicvine.gamespot.com/silvereye/4060-63772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63782/", + "id": 63782, + "name": "Doom's Children", + "site_detail_url": "https://comicvine.gamespot.com/dooms-children/4060-63782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63790/", + "id": 63790, + "name": "Spinsterhood", + "site_detail_url": "https://comicvine.gamespot.com/spinsterhood/4060-63790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63794/", + "id": 63794, + "name": "X'Changlings", + "site_detail_url": "https://comicvine.gamespot.com/xchanglings/4060-63794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63798/", + "id": 63798, + "name": "Spider-Force", + "site_detail_url": "https://comicvine.gamespot.com/spider-force/4060-63798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63810/", + "id": 63810, + "name": "The Six Most Sinister", + "site_detail_url": "https://comicvine.gamespot.com/the-six-most-sinister/4060-63810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63862/", + "id": 63862, + "name": "The Fantastix", + "site_detail_url": "https://comicvine.gamespot.com/the-fantastix/4060-63862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63863/", + "id": 63863, + "name": "Death Regiments", + "site_detail_url": "https://comicvine.gamespot.com/death-regiments/4060-63863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63866/", + "id": 63866, + "name": "Horsemen of Salvation", + "site_detail_url": "https://comicvine.gamespot.com/horsemen-of-salvation/4060-63866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63880/", + "id": 63880, + "name": "Agents of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-wakanda/4060-63880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63881/", + "id": 63881, + "name": "Flerken", + "site_detail_url": "https://comicvine.gamespot.com/flerken/4060-63881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63889/", + "id": 63889, + "name": "Air Gladiators", + "site_detail_url": "https://comicvine.gamespot.com/air-gladiators/4060-63889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63892/", + "id": 63892, + "name": "Naglfar Armada", + "site_detail_url": "https://comicvine.gamespot.com/naglfar-armada/4060-63892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63897/", + "id": 63897, + "name": "Insect Squad", + "site_detail_url": "https://comicvine.gamespot.com/insect-squad/4060-63897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63898/", + "id": 63898, + "name": "Vulture Fliers", + "site_detail_url": "https://comicvine.gamespot.com/vulture-fliers/4060-63898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63909/", + "id": 63909, + "name": "The Warner Family", + "site_detail_url": "https://comicvine.gamespot.com/the-warner-family/4060-63909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63916/", + "id": 63916, + "name": "Orphans of X", + "site_detail_url": "https://comicvine.gamespot.com/orphans-of-x/4060-63916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63947/", + "id": 63947, + "name": "Dark Guardians ", + "site_detail_url": "https://comicvine.gamespot.com/dark-guardians/4060-63947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63960/", + "id": 63960, + "name": "Mutant Liberation Army", + "site_detail_url": "https://comicvine.gamespot.com/mutant-liberation-army/4060-63960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63977/", + "id": 63977, + "name": "Shadow Wing", + "site_detail_url": "https://comicvine.gamespot.com/shadow-wing/4060-63977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63982/", + "id": 63982, + "name": "Pharaoh's Guard", + "site_detail_url": "https://comicvine.gamespot.com/pharaohs-guard/4060-63982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63986/", + "id": 63986, + "name": "Savage Avengers", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers/4060-63986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63987/", + "id": 63987, + "name": "American Ninjas", + "site_detail_url": "https://comicvine.gamespot.com/american-ninjas/4060-63987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63991/", + "id": 63991, + "name": "Bashenga Unit", + "site_detail_url": "https://comicvine.gamespot.com/bashenga-unit/4060-63991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63992/", + "id": 63992, + "name": "Black Stream", + "site_detail_url": "https://comicvine.gamespot.com/black-stream/4060-63992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63993/", + "id": 63993, + "name": "Cockroach Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/cockroach-soldiers/4060-63993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63994/", + "id": 63994, + "name": "Cyber-Hunters", + "site_detail_url": "https://comicvine.gamespot.com/cyber-hunters/4060-63994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63995/", + "id": 63995, + "name": "Kree Death Squad", + "site_detail_url": "https://comicvine.gamespot.com/kree-death-squad/4060-63995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63996/", + "id": 63996, + "name": "Death-Flight", + "site_detail_url": "https://comicvine.gamespot.com/death-flight/4060-63996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63997/", + "id": 63997, + "name": "Iron Man Sentries", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-sentries/4060-63997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63998/", + "id": 63998, + "name": "Operations: Firepower", + "site_detail_url": "https://comicvine.gamespot.com/operations-firepower/4060-63998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-63999/", + "id": 63999, + "name": "Seven Silver Samurai", + "site_detail_url": "https://comicvine.gamespot.com/seven-silver-samurai/4060-63999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64001/", + "id": 64001, + "name": "Hammer Troopers", + "site_detail_url": "https://comicvine.gamespot.com/hammer-troopers/4060-64001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64002/", + "id": 64002, + "name": "Repulsor-Troopers", + "site_detail_url": "https://comicvine.gamespot.com/repulsor-troopers/4060-64002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64003/", + "id": 64003, + "name": "Shieldsmen ", + "site_detail_url": "https://comicvine.gamespot.com/shieldsmen/4060-64003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64004/", + "id": 64004, + "name": "Giant-Men", + "site_detail_url": "https://comicvine.gamespot.com/giant-men/4060-64004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64008/", + "id": 64008, + "name": "Latverian Army", + "site_detail_url": "https://comicvine.gamespot.com/latverian-army/4060-64008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64009/", + "id": 64009, + "name": "Jabari Tribe", + "site_detail_url": "https://comicvine.gamespot.com/jabari-tribe/4060-64009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64010/", + "id": 64010, + "name": "War Witches", + "site_detail_url": "https://comicvine.gamespot.com/war-witches/4060-64010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64015/", + "id": 64015, + "name": "Dogs of Hell", + "site_detail_url": "https://comicvine.gamespot.com/dogs-of-hell/4060-64015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64019/", + "id": 64019, + "name": "Young Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/young-ultimates/4060-64019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64022/", + "id": 64022, + "name": "The Vermin", + "site_detail_url": "https://comicvine.gamespot.com/the-vermin/4060-64022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64024/", + "id": 64024, + "name": "The Daughters of Liberty", + "site_detail_url": "https://comicvine.gamespot.com/the-daughters-of-liberty/4060-64024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64032/", + "id": 64032, + "name": "Terrific Two", + "site_detail_url": "https://comicvine.gamespot.com/terrific-two/4060-64032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64035/", + "id": 64035, + "name": "Warrior Machines Three", + "site_detail_url": "https://comicvine.gamespot.com/warrior-machines-three/4060-64035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64037/", + "id": 64037, + "name": "Bloodpack", + "site_detail_url": "https://comicvine.gamespot.com/bloodpack/4060-64037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64038/", + "id": 64038, + "name": "Supreme Seven", + "site_detail_url": "https://comicvine.gamespot.com/supreme-seven/4060-64038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64042/", + "id": 64042, + "name": "Children of the American Revolution", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-american-revolution/4060-64042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64047/", + "id": 64047, + "name": "Red Room", + "site_detail_url": "https://comicvine.gamespot.com/red-room/4060-64047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64051/", + "id": 64051, + "name": "Space Beasts", + "site_detail_url": "https://comicvine.gamespot.com/space-beasts/4060-64051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64057/", + "id": 64057, + "name": "Children of Eternity", + "site_detail_url": "https://comicvine.gamespot.com/children-of-eternity/4060-64057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64063/", + "id": 64063, + "name": "Vridai", + "site_detail_url": "https://comicvine.gamespot.com/vridai/4060-64063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64073/", + "id": 64073, + "name": "Hellstrom & Hellstrom: Occult Investigations", + "site_detail_url": "https://comicvine.gamespot.com/hellstrom-and-hellstrom-occult-investigations/4060-64073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64076/", + "id": 64076, + "name": "The Unparalleled", + "site_detail_url": "https://comicvine.gamespot.com/the-unparalleled/4060-64076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64078/", + "id": 64078, + "name": "Mini-Hulks", + "site_detail_url": "https://comicvine.gamespot.com/mini-hulks/4060-64078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64082/", + "id": 64082, + "name": "Future Avengers", + "site_detail_url": "https://comicvine.gamespot.com/future-avengers/4060-64082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64083/", + "id": 64083, + "name": "Brotherhood of Baal", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-baal/4060-64083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64084/", + "id": 64084, + "name": "M&M's", + "site_detail_url": "https://comicvine.gamespot.com/mandms/4060-64084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64089/", + "id": 64089, + "name": "Children of the Damned", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-damned/4060-64089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64091/", + "id": 64091, + "name": "Hellrunners", + "site_detail_url": "https://comicvine.gamespot.com/hellrunners/4060-64091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64096/", + "id": 64096, + "name": "Worldwatch", + "site_detail_url": "https://comicvine.gamespot.com/worldwatch/4060-64096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64097/", + "id": 64097, + "name": "Orchis", + "site_detail_url": "https://comicvine.gamespot.com/orchis/4060-64097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64114/", + "id": 64114, + "name": "Fantastic Fur", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fur/4060-64114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64122/", + "id": 64122, + "name": "Uncanny X-Bugs", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-bugs/4060-64122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64135/", + "id": 64135, + "name": "Ruthless Riders", + "site_detail_url": "https://comicvine.gamespot.com/ruthless-riders/4060-64135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64148/", + "id": 64148, + "name": "Church of the Dark Father", + "site_detail_url": "https://comicvine.gamespot.com/church-of-the-dark-father/4060-64148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64149/", + "id": 64149, + "name": "Black Corsairs", + "site_detail_url": "https://comicvine.gamespot.com/black-corsairs/4060-64149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64168/", + "id": 64168, + "name": "The Five", + "site_detail_url": "https://comicvine.gamespot.com/the-five/4060-64168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64169/", + "id": 64169, + "name": "The Quiet Council of Krakoa", + "site_detail_url": "https://comicvine.gamespot.com/the-quiet-council-of-krakoa/4060-64169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64170/", + "id": 64170, + "name": "Hordeculture", + "site_detail_url": "https://comicvine.gamespot.com/hordeculture/4060-64170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64205/", + "id": 64205, + "name": "Man-Serpents", + "site_detail_url": "https://comicvine.gamespot.com/man-serpents/4060-64205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64207/", + "id": 64207, + "name": "Homines Verendi", + "site_detail_url": "https://comicvine.gamespot.com/homines-verendi/4060-64207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64210/", + "id": 64210, + "name": "Strikeforce", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce/4060-64210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64218/", + "id": 64218, + "name": "The A.I. Army", + "site_detail_url": "https://comicvine.gamespot.com/the-ai-army/4060-64218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64267/", + "id": 64267, + "name": "Strange Academy", + "site_detail_url": "https://comicvine.gamespot.com/strange-academy/4060-64267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64304/", + "id": 64304, + "name": "Switchblade Sisters", + "site_detail_url": "https://comicvine.gamespot.com/switchblade-sisters/4060-64304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64338/", + "id": 64338, + "name": "Guavian Death Gang", + "site_detail_url": "https://comicvine.gamespot.com/guavian-death-gang/4060-64338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64339/", + "id": 64339, + "name": "Elite Praetorian Guard", + "site_detail_url": "https://comicvine.gamespot.com/elite-praetorian-guard/4060-64339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64340/", + "id": 64340, + "name": "Cloud-Riders", + "site_detail_url": "https://comicvine.gamespot.com/cloud-riders/4060-64340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64381/", + "id": 64381, + "name": "C.R.A.D.L.E.", + "site_detail_url": "https://comicvine.gamespot.com/cradle/4060-64381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64406/", + "id": 64406, + "name": "J.A.N.U.S.", + "site_detail_url": "https://comicvine.gamespot.com/janus/4060-64406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64439/", + "id": 64439, + "name": "The Marvels ", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels/4060-64439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64496/", + "id": 64496, + "name": "Mad Ave Advertising", + "site_detail_url": "https://comicvine.gamespot.com/mad-ave-advertising/4060-64496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64501/", + "id": 64501, + "name": "Project: Communion", + "site_detail_url": "https://comicvine.gamespot.com/project-communion/4060-64501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64536/", + "id": 64536, + "name": "United Science Patrol", + "site_detail_url": "https://comicvine.gamespot.com/united-science-patrol/4060-64536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64545/", + "id": 64545, + "name": "Doom's Brigade", + "site_detail_url": "https://comicvine.gamespot.com/dooms-brigade/4060-64545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64568/", + "id": 64568, + "name": "Arthrosians", + "site_detail_url": "https://comicvine.gamespot.com/arthrosians/4060-64568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64569/", + "id": 64569, + "name": "Grunds", + "site_detail_url": "https://comicvine.gamespot.com/grunds/4060-64569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64570/", + "id": 64570, + "name": "Rhunians", + "site_detail_url": "https://comicvine.gamespot.com/rhunians/4060-64570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64571/", + "id": 64571, + "name": "Froma", + "site_detail_url": "https://comicvine.gamespot.com/froma/4060-64571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64581/", + "id": 64581, + "name": "Junkyard Dogs", + "site_detail_url": "https://comicvine.gamespot.com/junkyard-dogs/4060-64581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64582/", + "id": 64582, + "name": "Swordbearers of Arakko", + "site_detail_url": "https://comicvine.gamespot.com/swordbearers-of-arakko/4060-64582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64587/", + "id": 64587, + "name": "Five Weapons Society ", + "site_detail_url": "https://comicvine.gamespot.com/five-weapons-society/4060-64587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64594/", + "id": 64594, + "name": "Swordbearers of Krakoa", + "site_detail_url": "https://comicvine.gamespot.com/swordbearers-of-krakoa/4060-64594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64595/", + "id": 64595, + "name": "Avengers 1,000 AD", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1000-ad/4060-64595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64611/", + "id": 64611, + "name": "Locus Vile", + "site_detail_url": "https://comicvine.gamespot.com/locus-vile/4060-64611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64616/", + "id": 64616, + "name": "Lost Boys", + "site_detail_url": "https://comicvine.gamespot.com/lost-boys/4060-64616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64635/", + "id": 64635, + "name": "The Union", + "site_detail_url": "https://comicvine.gamespot.com/the-union/4060-64635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64636/", + "id": 64636, + "name": "Stark Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/stark-unlimited/4060-64636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64637/", + "id": 64637, + "name": "The Six", + "site_detail_url": "https://comicvine.gamespot.com/the-six/4060-64637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64639/", + "id": 64639, + "name": "Swift Tide", + "site_detail_url": "https://comicvine.gamespot.com/swift-tide/4060-64639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64651/", + "id": 64651, + "name": "Aerians", + "site_detail_url": "https://comicvine.gamespot.com/aerians/4060-64651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64652/", + "id": 64652, + "name": "Von Doom Industries", + "site_detail_url": "https://comicvine.gamespot.com/von-doom-industries/4060-64652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64655/", + "id": 64655, + "name": "Great Ring of Arakko", + "site_detail_url": "https://comicvine.gamespot.com/great-ring-of-arakko/4060-64655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64684/", + "id": 64684, + "name": "Arquillians", + "site_detail_url": "https://comicvine.gamespot.com/arquillians/4060-64684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64685/", + "id": 64685, + "name": "Cephalapoids", + "site_detail_url": "https://comicvine.gamespot.com/cephalapoids/4060-64685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64686/", + "id": 64686, + "name": "Remoolians", + "site_detail_url": "https://comicvine.gamespot.com/remoolians/4060-64686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64691/", + "id": 64691, + "name": "Worms", + "site_detail_url": "https://comicvine.gamespot.com/worms/4060-64691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64703/", + "id": 64703, + "name": "Atheon", + "site_detail_url": "https://comicvine.gamespot.com/atheon/4060-64703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64714/", + "id": 64714, + "name": "Posse", + "site_detail_url": "https://comicvine.gamespot.com/posse/4060-64714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64716/", + "id": 64716, + "name": "The Order", + "site_detail_url": "https://comicvine.gamespot.com/the-order/4060-64716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64727/", + "id": 64727, + "name": "NuHumans", + "site_detail_url": "https://comicvine.gamespot.com/nuhumans/4060-64727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64731/", + "id": 64731, + "name": "Jedi Temple Guards", + "site_detail_url": "https://comicvine.gamespot.com/jedi-temple-guards/4060-64731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64738/", + "id": 64738, + "name": "Vanna", + "site_detail_url": "https://comicvine.gamespot.com/vanna/4060-64738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64741/", + "id": 64741, + "name": "8-Ball's Gang", + "site_detail_url": "https://comicvine.gamespot.com/8-balls-gang/4060-64741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64752/", + "id": 64752, + "name": "Stygians", + "site_detail_url": "https://comicvine.gamespot.com/stygians/4060-64752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64753/", + "id": 64753, + "name": "Coven Akkaba", + "site_detail_url": "https://comicvine.gamespot.com/coven-akkaba/4060-64753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64800/", + "id": 64800, + "name": "Satan's Servants", + "site_detail_url": "https://comicvine.gamespot.com/satans-servants/4060-64800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64809/", + "id": 64809, + "name": "Xeno", + "site_detail_url": "https://comicvine.gamespot.com/xeno/4060-64809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64823/", + "id": 64823, + "name": "S.P.A.F.O.N.", + "site_detail_url": "https://comicvine.gamespot.com/spafon/4060-64823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64833/", + "id": 64833, + "name": "The Unbroken Clan", + "site_detail_url": "https://comicvine.gamespot.com/the-unbroken-clan/4060-64833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64836/", + "id": 64836, + "name": "Omega Team", + "site_detail_url": "https://comicvine.gamespot.com/omega-team/4060-64836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64847/", + "id": 64847, + "name": "Misfits", + "site_detail_url": "https://comicvine.gamespot.com/misfits/4060-64847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64888/", + "id": 64888, + "name": "Gamma Dogs", + "site_detail_url": "https://comicvine.gamespot.com/gamma-dogs/4060-64888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64892/", + "id": 64892, + "name": "Drengir", + "site_detail_url": "https://comicvine.gamespot.com/drengir/4060-64892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64902/", + "id": 64902, + "name": "Orloni", + "site_detail_url": "https://comicvine.gamespot.com/orloni/4060-64902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64922/", + "id": 64922, + "name": "W.E.B.", + "site_detail_url": "https://comicvine.gamespot.com/web/4060-64922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64952/", + "id": 64952, + "name": "Council of Red", + "site_detail_url": "https://comicvine.gamespot.com/council-of-red/4060-64952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64953/", + "id": 64953, + "name": "The Nukes", + "site_detail_url": "https://comicvine.gamespot.com/the-nukes/4060-64953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64964/", + "id": 64964, + "name": "Tiger Division", + "site_detail_url": "https://comicvine.gamespot.com/tiger-division/4060-64964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-64988/", + "id": 64988, + "name": "Children of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-atom/4060-64988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65024/", + "id": 65024, + "name": "Abednedo", + "site_detail_url": "https://comicvine.gamespot.com/abednedo/4060-65024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65027/", + "id": 65027, + "name": "The Bad Batch ", + "site_detail_url": "https://comicvine.gamespot.com/the-bad-batch/4060-65027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65030/", + "id": 65030, + "name": "Marvel Balls", + "site_detail_url": "https://comicvine.gamespot.com/marvel-balls/4060-65030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65033/", + "id": 65033, + "name": "Mikkians", + "site_detail_url": "https://comicvine.gamespot.com/mikkians/4060-65033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65037/", + "id": 65037, + "name": "Crimson Dawn", + "site_detail_url": "https://comicvine.gamespot.com/crimson-dawn/4060-65037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65051/", + "id": 65051, + "name": "Sable International", + "site_detail_url": "https://comicvine.gamespot.com/sable-international/4060-65051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65052/", + "id": 65052, + "name": "Three Wombats", + "site_detail_url": "https://comicvine.gamespot.com/three-wombats/4060-65052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65053/", + "id": 65053, + "name": "Beyond Corporation", + "site_detail_url": "https://comicvine.gamespot.com/beyond-corporation/4060-65053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65054/", + "id": 65054, + "name": "Ten Rings", + "site_detail_url": "https://comicvine.gamespot.com/ten-rings/4060-65054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65057/", + "id": 65057, + "name": "Kyuzo", + "site_detail_url": "https://comicvine.gamespot.com/kyuzo/4060-65057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65059/", + "id": 65059, + "name": "Ardennians", + "site_detail_url": "https://comicvine.gamespot.com/ardennians/4060-65059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65060/", + "id": 65060, + "name": "Porgs", + "site_detail_url": "https://comicvine.gamespot.com/porgs/4060-65060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65062/", + "id": 65062, + "name": "Rancors", + "site_detail_url": "https://comicvine.gamespot.com/rancors/4060-65062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65067/", + "id": 65067, + "name": "Marchand Pharmaceuticals", + "site_detail_url": "https://comicvine.gamespot.com/marchand-pharmaceuticals/4060-65067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65079/", + "id": 65079, + "name": "Captains Network", + "site_detail_url": "https://comicvine.gamespot.com/captains-network/4060-65079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65084/", + "id": 65084, + "name": "Bestman and Toomes Electronics", + "site_detail_url": "https://comicvine.gamespot.com/bestman-and-toomes-electronics/4060-65084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65086/", + "id": 65086, + "name": "Darkhold Defenders", + "site_detail_url": "https://comicvine.gamespot.com/darkhold-defenders/4060-65086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65096/", + "id": 65096, + "name": "Essex Corp", + "site_detail_url": "https://comicvine.gamespot.com/essex-corp/4060-65096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65100/", + "id": 65100, + "name": "Three Mothers", + "site_detail_url": "https://comicvine.gamespot.com/three-mothers/4060-65100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65110/", + "id": 65110, + "name": "Flora Colossi", + "site_detail_url": "https://comicvine.gamespot.com/flora-colossi/4060-65110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65132/", + "id": 65132, + "name": "J-Team", + "site_detail_url": "https://comicvine.gamespot.com/j-team/4060-65132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65145/", + "id": 65145, + "name": "Sovereign", + "site_detail_url": "https://comicvine.gamespot.com/sovereign/4060-65145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65146/", + "id": 65146, + "name": "Abilisks", + "site_detail_url": "https://comicvine.gamespot.com/abilisks/4060-65146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65170/", + "id": 65170, + "name": "The Warforce", + "site_detail_url": "https://comicvine.gamespot.com/the-warforce/4060-65170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65187/", + "id": 65187, + "name": "Cybertek", + "site_detail_url": "https://comicvine.gamespot.com/cybertek/4060-65187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65188/", + "id": 65188, + "name": "The Paladins", + "site_detail_url": "https://comicvine.gamespot.com/the-paladins/4060-65188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65189/", + "id": 65189, + "name": "ICON", + "site_detail_url": "https://comicvine.gamespot.com/icon/4060-65189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65191/", + "id": 65191, + "name": "The Trust", + "site_detail_url": "https://comicvine.gamespot.com/the-trust/4060-65191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65195/", + "id": 65195, + "name": "Phansigars", + "site_detail_url": "https://comicvine.gamespot.com/phansigars/4060-65195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65196/", + "id": 65196, + "name": "Thugees", + "site_detail_url": "https://comicvine.gamespot.com/thugees/4060-65196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65197/", + "id": 65197, + "name": "Hashishin", + "site_detail_url": "https://comicvine.gamespot.com/hashishin/4060-65197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65198/", + "id": 65198, + "name": "Templars", + "site_detail_url": "https://comicvine.gamespot.com/templars/4060-65198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65199/", + "id": 65199, + "name": "Leopard Cult", + "site_detail_url": "https://comicvine.gamespot.com/leopard-cult/4060-65199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65207/", + "id": 65207, + "name": "Dark Squadron", + "site_detail_url": "https://comicvine.gamespot.com/dark-squadron/4060-65207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65215/", + "id": 65215, + "name": "House of Tagge", + "site_detail_url": "https://comicvine.gamespot.com/house-of-tagge/4060-65215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65223/", + "id": 65223, + "name": "Gamma Rats", + "site_detail_url": "https://comicvine.gamespot.com/gamma-rats/4060-65223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65226/", + "id": 65226, + "name": "Superior Four", + "site_detail_url": "https://comicvine.gamespot.com/superior-four/4060-65226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65229/", + "id": 65229, + "name": "The Unstoppables", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppables/4060-65229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65231/", + "id": 65231, + "name": "Amazons of Gamburu", + "site_detail_url": "https://comicvine.gamespot.com/amazons-of-gamburu/4060-65231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65232/", + "id": 65232, + "name": "Cyberwarriors", + "site_detail_url": "https://comicvine.gamespot.com/cyberwarriors/4060-65232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65235/", + "id": 65235, + "name": "First Strike", + "site_detail_url": "https://comicvine.gamespot.com/first-strike/4060-65235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65236/", + "id": 65236, + "name": "Gods of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/gods-of-wakanda/4060-65236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65268/", + "id": 65268, + "name": "X-Cellent", + "site_detail_url": "https://comicvine.gamespot.com/x-cellent/4060-65268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65271/", + "id": 65271, + "name": "Lost Club", + "site_detail_url": "https://comicvine.gamespot.com/lost-club/4060-65271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65295/", + "id": 65295, + "name": "Goddesses of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/goddesses-of-thunder/4060-65295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65337/", + "id": 65337, + "name": "Tognaths", + "site_detail_url": "https://comicvine.gamespot.com/tognaths/4060-65337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65339/", + "id": 65339, + "name": "Tarsunts", + "site_detail_url": "https://comicvine.gamespot.com/tarsunts/4060-65339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65341/", + "id": 65341, + "name": "Culisetto", + "site_detail_url": "https://comicvine.gamespot.com/culisetto/4060-65341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65342/", + "id": 65342, + "name": "Kessurians", + "site_detail_url": "https://comicvine.gamespot.com/kessurians/4060-65342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65343/", + "id": 65343, + "name": "Tarnabs", + "site_detail_url": "https://comicvine.gamespot.com/tarnabs/4060-65343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65344/", + "id": 65344, + "name": "Kotabi", + "site_detail_url": "https://comicvine.gamespot.com/kotabi/4060-65344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65356/", + "id": 65356, + "name": "Litter", + "site_detail_url": "https://comicvine.gamespot.com/litter/4060-65356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65359/", + "id": 65359, + "name": "Purrfect Purrloiners", + "site_detail_url": "https://comicvine.gamespot.com/purrfect-purrloiners/4060-65359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65367/", + "id": 65367, + "name": "Weaponeers", + "site_detail_url": "https://comicvine.gamespot.com/weaponeers/4060-65367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65372/", + "id": 65372, + "name": "Tanner Family", + "site_detail_url": "https://comicvine.gamespot.com/tanner-family/4060-65372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65374/", + "id": 65374, + "name": "Geonosians", + "site_detail_url": "https://comicvine.gamespot.com/geonosians/4060-65374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65375/", + "id": 65375, + "name": "Zygerrians", + "site_detail_url": "https://comicvine.gamespot.com/zygerrians/4060-65375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65376/", + "id": 65376, + "name": "Cosians", + "site_detail_url": "https://comicvine.gamespot.com/cosians/4060-65376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65379/", + "id": 65379, + "name": "X-Men Green", + "site_detail_url": "https://comicvine.gamespot.com/x-men-green/4060-65379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65380/", + "id": 65380, + "name": "Iron Cross Army", + "site_detail_url": "https://comicvine.gamespot.com/iron-cross-army/4060-65380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65389/", + "id": 65389, + "name": "The Apostles of War", + "site_detail_url": "https://comicvine.gamespot.com/the-apostles-of-war/4060-65389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65390/", + "id": 65390, + "name": "Knights of X ", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-x/4060-65390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65397/", + "id": 65397, + "name": "Qilin Riders ", + "site_detail_url": "https://comicvine.gamespot.com/qilin-riders/4060-65397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65413/", + "id": 65413, + "name": "Sleepwalkers", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalkers/4060-65413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65416/", + "id": 65416, + "name": "Huaxia ", + "site_detail_url": "https://comicvine.gamespot.com/huaxia/4060-65416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65428/", + "id": 65428, + "name": "Legion of X", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-x/4060-65428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65431/", + "id": 65431, + "name": "Savage Studs", + "site_detail_url": "https://comicvine.gamespot.com/savage-studs/4060-65431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65432/", + "id": 65432, + "name": "Iron Rose Inc.", + "site_detail_url": "https://comicvine.gamespot.com/iron-rose-inc/4060-65432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65434/", + "id": 65434, + "name": "Council of Night Magicians", + "site_detail_url": "https://comicvine.gamespot.com/council-of-night-magicians/4060-65434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65435/", + "id": 65435, + "name": "The Blasphemy Cartel", + "site_detail_url": "https://comicvine.gamespot.com/the-blasphemy-cartel/4060-65435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65467/", + "id": 65467, + "name": "Radio Company", + "site_detail_url": "https://comicvine.gamespot.com/radio-company/4060-65467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65474/", + "id": 65474, + "name": "The Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-fist/4060-65474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65476/", + "id": 65476, + "name": "Midnight Mission", + "site_detail_url": "https://comicvine.gamespot.com/midnight-mission/4060-65476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65478/", + "id": 65478, + "name": "Red Dot Collective", + "site_detail_url": "https://comicvine.gamespot.com/red-dot-collective/4060-65478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65480/", + "id": 65480, + "name": "Royal Inhuman Diplomatic Mission", + "site_detail_url": "https://comicvine.gamespot.com/royal-inhuman-diplomatic-mission/4060-65480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65481/", + "id": 65481, + "name": "New Attilan Security Force", + "site_detail_url": "https://comicvine.gamespot.com/new-attilan-security-force/4060-65481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65486/", + "id": 65486, + "name": "Spider-Band", + "site_detail_url": "https://comicvine.gamespot.com/spider-band/4060-65486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65488/", + "id": 65488, + "name": "Brotherhood of Arakko ", + "site_detail_url": "https://comicvine.gamespot.com/brotherhood-of-arakko/4060-65488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65490/", + "id": 65490, + "name": "Order of Uatu", + "site_detail_url": "https://comicvine.gamespot.com/order-of-uatu/4060-65490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65492/", + "id": 65492, + "name": "The Hex", + "site_detail_url": "https://comicvine.gamespot.com/the-hex/4060-65492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65500/", + "id": 65500, + "name": "Empty Throne", + "site_detail_url": "https://comicvine.gamespot.com/empty-throne/4060-65500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-65533/", + "id": 65533, + "name": "Outer Circle", + "site_detail_url": "https://comicvine.gamespot.com/outer-circle/4060-65533/" + } + ], + "volumes": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1062/", + "id": 1062, + "name": "Patsy Walker", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker/4050-1062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1199/", + "id": 1199, + "name": "Kid Colt Outlaw", + "site_detail_url": "https://comicvine.gamespot.com/kid-colt-outlaw/4050-1199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1276/", + "id": 1276, + "name": "Love Romances", + "site_detail_url": "https://comicvine.gamespot.com/love-romances/4050-1276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1497/", + "id": 1497, + "name": "Journey into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery/4050-1497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1583/", + "id": 1583, + "name": "Two-Gun Kid", + "site_detail_url": "https://comicvine.gamespot.com/two-gun-kid/4050-1583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1704/", + "id": 1704, + "name": "Gunsmoke Western", + "site_detail_url": "https://comicvine.gamespot.com/gunsmoke-western/4050-1704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-1718/", + "id": 1718, + "name": "Wyatt Earp", + "site_detail_url": "https://comicvine.gamespot.com/wyatt-earp/4050-1718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2006/", + "id": 2006, + "name": "Kathy", + "site_detail_url": "https://comicvine.gamespot.com/kathy/4050-2006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2007/", + "id": 2007, + "name": "Tales of Suspense", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-suspense/4050-2007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2008/", + "id": 2008, + "name": "Tales to Astonish", + "site_detail_url": "https://comicvine.gamespot.com/tales-to-astonish/4050-2008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2023/", + "id": 2023, + "name": "The Rawhide Kid", + "site_detail_url": "https://comicvine.gamespot.com/the-rawhide-kid/4050-2023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2024/", + "id": 2024, + "name": "Teen-Age Romance", + "site_detail_url": "https://comicvine.gamespot.com/teen-age-romance/4050-2024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2043/", + "id": 2043, + "name": "Amazing Adult Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adult-fantasy/4050-2043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2044/", + "id": 2044, + "name": "Amazing Adventures", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures/4050-2044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2045/", + "id": 2045, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-2045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2046/", + "id": 2046, + "name": "Linda Carter, Student Nurse", + "site_detail_url": "https://comicvine.gamespot.com/linda-carter-student-nurse/4050-2046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2077/", + "id": 2077, + "name": "The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk/4050-2077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2079/", + "id": 2079, + "name": "Strange Tales Annual", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-annual/4050-2079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2127/", + "id": 2127, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4050-2127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2128/", + "id": 2128, + "name": "The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers/4050-2128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2129/", + "id": 2129, + "name": "Fantastic Four Annual", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual/4050-2129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2132/", + "id": 2132, + "name": "Sgt. Fury and His Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/sgt-fury-and-his-howling-commandos/4050-2132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2133/", + "id": 2133, + "name": "The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men/4050-2133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2189/", + "id": 2189, + "name": "The Amazing Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-annual/4050-2189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2190/", + "id": 2190, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-2190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2237/", + "id": 2237, + "name": "Sgt. Fury Annual", + "site_detail_url": "https://comicvine.gamespot.com/sgt-fury-annual/4050-2237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2290/", + "id": 2290, + "name": "Fantasy Masterpieces", + "site_detail_url": "https://comicvine.gamespot.com/fantasy-masterpieces/4050-2290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2293/", + "id": 2293, + "name": "Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales/4050-2293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2294/", + "id": 2294, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-2294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2295/", + "id": 2295, + "name": "Thor Annual", + "site_detail_url": "https://comicvine.gamespot.com/thor-annual/4050-2295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2350/", + "id": 2350, + "name": "The Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-annual/4050-2350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2351/", + "id": 2351, + "name": "Daredevil Annual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual/4050-2351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2352/", + "id": 2352, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-2352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2353/", + "id": 2353, + "name": "Marvel Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes/4050-2353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2354/", + "id": 2354, + "name": "Not Brand Echh", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh/4050-2354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2400/", + "id": 2400, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-2400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2401/", + "id": 2401, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-2401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2402/", + "id": 2402, + "name": "Captain Savage", + "site_detail_url": "https://comicvine.gamespot.com/captain-savage/4050-2402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2403/", + "id": 2403, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4050-2403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2404/", + "id": 2404, + "name": "Groovy", + "site_detail_url": "https://comicvine.gamespot.com/groovy/4050-2404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2406/", + "id": 2406, + "name": "The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk/4050-2406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2407/", + "id": 2407, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-2407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2409/", + "id": 2409, + "name": "The Mighty Marvel Western", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-marvel-western/4050-2409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2410/", + "id": 2410, + "name": "Nick Fury, Agent of SHIELD", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-agent-of-shield/4050-2410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2411/", + "id": 2411, + "name": "The Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer/4050-2411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2413/", + "id": 2413, + "name": "Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner/4050-2413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2441/", + "id": 2441, + "name": "Chamber of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/chamber-of-darkness/4050-2441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2442/", + "id": 2442, + "name": "Chili", + "site_detail_url": "https://comicvine.gamespot.com/chili/4050-2442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2443/", + "id": 2443, + "name": "Homer, The Happy Ghost", + "site_detail_url": "https://comicvine.gamespot.com/homer-the-happy-ghost/4050-2443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2444/", + "id": 2444, + "name": "Mad About Millie", + "site_detail_url": "https://comicvine.gamespot.com/mad-about-millie/4050-2444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2445/", + "id": 2445, + "name": "My Love", + "site_detail_url": "https://comicvine.gamespot.com/my-love/4050-2445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2446/", + "id": 2446, + "name": "Our Love Story", + "site_detail_url": "https://comicvine.gamespot.com/our-love-story/4050-2446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2447/", + "id": 2447, + "name": "Peter, the Little Pest", + "site_detail_url": "https://comicvine.gamespot.com/peter-the-little-pest/4050-2447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2448/", + "id": 2448, + "name": "Tower of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/tower-of-shadows/4050-2448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2469/", + "id": 2469, + "name": "Amazing Adventures", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures/4050-2469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2470/", + "id": 2470, + "name": "Astonishing Tales", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-tales/4050-2470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2471/", + "id": 2471, + "name": "Conan the Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian/4050-2471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2472/", + "id": 2472, + "name": "Adventure into Fear", + "site_detail_url": "https://comicvine.gamespot.com/adventure-into-fear/4050-2472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2473/", + "id": 2473, + "name": "Harvey", + "site_detail_url": "https://comicvine.gamespot.com/harvey/4050-2473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2474/", + "id": 2474, + "name": "Iron Man Special", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-special/4050-2474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2475/", + "id": 2475, + "name": "Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar/4050-2475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2476/", + "id": 2476, + "name": "The Outlaw Kid", + "site_detail_url": "https://comicvine.gamespot.com/the-outlaw-kid/4050-2476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2477/", + "id": 2477, + "name": "Ringo Kid", + "site_detail_url": "https://comicvine.gamespot.com/ringo-kid/4050-2477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2478/", + "id": 2478, + "name": "Spoof", + "site_detail_url": "https://comicvine.gamespot.com/spoof/4050-2478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2479/", + "id": 2479, + "name": "Western Gunfighters", + "site_detail_url": "https://comicvine.gamespot.com/western-gunfighters/4050-2479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2480/", + "id": 2480, + "name": "Where Creatures Roam", + "site_detail_url": "https://comicvine.gamespot.com/where-creatures-roam/4050-2480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2481/", + "id": 2481, + "name": "Where Monsters Dwell", + "site_detail_url": "https://comicvine.gamespot.com/where-monsters-dwell/4050-2481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2510/", + "id": 2510, + "name": "Captain America Annual", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-annual/4050-2510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2512/", + "id": 2512, + "name": "Creatures on the Loose", + "site_detail_url": "https://comicvine.gamespot.com/creatures-on-the-loose/4050-2512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2513/", + "id": 2513, + "name": "Kull the Conqueror", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-conqueror/4050-2513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2515/", + "id": 2515, + "name": "Marvel Feature", + "site_detail_url": "https://comicvine.gamespot.com/marvel-feature/4050-2515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2516/", + "id": 2516, + "name": "Marvel Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight/4050-2516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2520/", + "id": 2520, + "name": "Special Marvel Edition", + "site_detail_url": "https://comicvine.gamespot.com/special-marvel-edition/4050-2520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2521/", + "id": 2521, + "name": "Sub-Mariner Annual", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-annual/4050-2521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2523/", + "id": 2523, + "name": "Western Kid", + "site_detail_url": "https://comicvine.gamespot.com/western-kid/4050-2523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2565/", + "id": 2565, + "name": "The Cat", + "site_detail_url": "https://comicvine.gamespot.com/the-cat/4050-2565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2566/", + "id": 2566, + "name": "Chamber of Chills", + "site_detail_url": "https://comicvine.gamespot.com/chamber-of-chills/4050-2566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2568/", + "id": 2568, + "name": "Combat Kelly and the Deadly Dozen", + "site_detail_url": "https://comicvine.gamespot.com/combat-kelly-and-the-deadly-dozen/4050-2568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2569/", + "id": 2569, + "name": "The Defenders", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders/4050-2569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2570/", + "id": 2570, + "name": "Doc Savage", + "site_detail_url": "https://comicvine.gamespot.com/doc-savage/4050-2570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2571/", + "id": 2571, + "name": "The Gunhawks", + "site_detail_url": "https://comicvine.gamespot.com/the-gunhawks/4050-2571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2572/", + "id": 2572, + "name": "Hero for Hire", + "site_detail_url": "https://comicvine.gamespot.com/hero-for-hire/4050-2572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2573/", + "id": 2573, + "name": "Journey into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery/4050-2573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2574/", + "id": 2574, + "name": "Jungle Action", + "site_detail_url": "https://comicvine.gamespot.com/jungle-action/4050-2574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2575/", + "id": 2575, + "name": "Marvel Premiere", + "site_detail_url": "https://comicvine.gamespot.com/marvel-premiere/4050-2575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2576/", + "id": 2576, + "name": "Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up/4050-2576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2577/", + "id": 2577, + "name": "Marvel Triple Action", + "site_detail_url": "https://comicvine.gamespot.com/marvel-triple-action/4050-2577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2579/", + "id": 2579, + "name": "Red Wolf", + "site_detail_url": "https://comicvine.gamespot.com/red-wolf/4050-2579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2580/", + "id": 2580, + "name": "Shanna the She-Devil", + "site_detail_url": "https://comicvine.gamespot.com/shanna-the-she-devil/4050-2580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2581/", + "id": 2581, + "name": "Supernatural Thrillers", + "site_detail_url": "https://comicvine.gamespot.com/supernatural-thrillers/4050-2581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2582/", + "id": 2582, + "name": "Tomb of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-dracula/4050-2582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2583/", + "id": 2583, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4050-2583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2584/", + "id": 2584, + "name": "Werewolf by Night", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night/4050-2584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2601/", + "id": 2601, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse - Necromancer", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse-nec/4050-2601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2629/", + "id": 2629, + "name": "Beware!", + "site_detail_url": "https://comicvine.gamespot.com/beware/4050-2629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2630/", + "id": 2630, + "name": "Conan the Barbarian Annual", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-annual/4050-2630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2631/", + "id": 2631, + "name": "Crazy", + "site_detail_url": "https://comicvine.gamespot.com/crazy/4050-2631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2632/", + "id": 2632, + "name": "Crypt of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/crypt-of-shadows/4050-2632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2633/", + "id": 2633, + "name": "Dead of Night", + "site_detail_url": "https://comicvine.gamespot.com/dead-of-night/4050-2633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2635/", + "id": 2635, + "name": "The Frankenstein Monster", + "site_detail_url": "https://comicvine.gamespot.com/the-frankenstein-monster/4050-2635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2636/", + "id": 2636, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-2636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2638/", + "id": 2638, + "name": "Kull the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-destroyer/4050-2638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2639/", + "id": 2639, + "name": "Marvel Double Feature", + "site_detail_url": "https://comicvine.gamespot.com/marvel-double-feature/4050-2639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2640/", + "id": 2640, + "name": "Marvel Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spectacular/4050-2640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2642/", + "id": 2642, + "name": "SHIELD", + "site_detail_url": "https://comicvine.gamespot.com/shield/4050-2642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2643/", + "id": 2643, + "name": "Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales/4050-2643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2646/", + "id": 2646, + "name": "Uncanny Tales", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-tales/4050-2646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2648/", + "id": 2648, + "name": "Vault of Evil", + "site_detail_url": "https://comicvine.gamespot.com/vault-of-evil/4050-2648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2649/", + "id": 2649, + "name": "War is Hell", + "site_detail_url": "https://comicvine.gamespot.com/war-is-hell/4050-2649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2650/", + "id": 2650, + "name": "Weird Wonder Tales", + "site_detail_url": "https://comicvine.gamespot.com/weird-wonder-tales/4050-2650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2652/", + "id": 2652, + "name": "Worlds Unknown", + "site_detail_url": "https://comicvine.gamespot.com/worlds-unknown/4050-2652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2657/", + "id": 2657, + "name": "Pride & Prejudice", + "site_detail_url": "https://comicvine.gamespot.com/pride-prejudice/4050-2657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2676/", + "id": 2676, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4050-2676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2677/", + "id": 2677, + "name": "Giant-Size Avengers", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-avengers/4050-2677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2679/", + "id": 2679, + "name": "Giant-Size Conan", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-conan/4050-2679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2681/", + "id": 2681, + "name": "Giant-Size Defenders", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-defenders/4050-2681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2682/", + "id": 2682, + "name": "Giant-Size Dracula", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-dracula/4050-2682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2683/", + "id": 2683, + "name": "Giant-Size Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-fantastic-four/4050-2683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2684/", + "id": 2684, + "name": "Giant-Size Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-man-thing/4050-2684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2685/", + "id": 2685, + "name": "Giant-Size Master of Kung Fu", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-master-of-kung-fu/4050-2685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2686/", + "id": 2686, + "name": "Giant-Size Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man/4050-2686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2689/", + "id": 2689, + "name": "Giant-Size Werewolf", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-werewolf/4050-2689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2691/", + "id": 2691, + "name": "The Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-human-torch/4050-2691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2692/", + "id": 2692, + "name": "Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar/4050-2692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2693/", + "id": 2693, + "name": "Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/man-thing/4050-2693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2694/", + "id": 2694, + "name": "Marvel Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-edition/4050-2694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2696/", + "id": 2696, + "name": "Marvel Two-in-One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one/4050-2696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2697/", + "id": 2697, + "name": "Master of Kung Fu", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu/4050-2697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2700/", + "id": 2700, + "name": "Power Man", + "site_detail_url": "https://comicvine.gamespot.com/power-man/4050-2700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2701/", + "id": 2701, + "name": "The Savage Sword of Conan", + "site_detail_url": "https://comicvine.gamespot.com/the-savage-sword-of-conan/4050-2701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2702/", + "id": 2702, + "name": "Spidey Super Stories", + "site_detail_url": "https://comicvine.gamespot.com/spidey-super-stories/4050-2702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2703/", + "id": 2703, + "name": "Tomb of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-darkness/4050-2703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2709/", + "id": 2709, + "name": "Deadpool: Suicide Kings", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings/4050-2709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2745/", + "id": 2745, + "name": "Adventures on the Planet of the Apes", + "site_detail_url": "https://comicvine.gamespot.com/adventures-on-the-planet-of-the-apes/4050-2745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2746/", + "id": 2746, + "name": "The Champions", + "site_detail_url": "https://comicvine.gamespot.com/the-champions/4050-2746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2751/", + "id": 2751, + "name": "Giant-Size Chillers", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-chillers/4050-2751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2758/", + "id": 2758, + "name": "Giant-Size Kid Colt", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-kid-colt/4050-2758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2759/", + "id": 2759, + "name": "Giant-Size Marvel Triple Action", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-marvel-triple-action/4050-2759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2761/", + "id": 2761, + "name": "Giant-Size Super-Villain Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-super-villain-team-up/4050-2761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2763/", + "id": 2763, + "name": "Giant-Size X-Men", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men/4050-2763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2764/", + "id": 2764, + "name": "The Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/the-inhumans/4050-2764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2765/", + "id": 2765, + "name": "The Invaders", + "site_detail_url": "https://comicvine.gamespot.com/the-invaders/4050-2765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2766/", + "id": 2766, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-2766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2770/", + "id": 2770, + "name": "Marvel Chillers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers/4050-2770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2771/", + "id": 2771, + "name": "Marvel Feature", + "site_detail_url": "https://comicvine.gamespot.com/marvel-feature/4050-2771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2773/", + "id": 2773, + "name": "Marvel Presents", + "site_detail_url": "https://comicvine.gamespot.com/marvel-presents/4050-2773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2780/", + "id": 2780, + "name": "Skull the Slayer", + "site_detail_url": "https://comicvine.gamespot.com/skull-the-slayer/4050-2780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2781/", + "id": 2781, + "name": "Son of Satan", + "site_detail_url": "https://comicvine.gamespot.com/son-of-satan/4050-2781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2782/", + "id": 2782, + "name": "Super-Villain Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/super-villain-team-up/4050-2782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2854/", + "id": 2854, + "name": "2001, A Space Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/2001-a-space-odyssey/4050-2854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2855/", + "id": 2855, + "name": "Black Goliath", + "site_detail_url": "https://comicvine.gamespot.com/black-goliath/4050-2855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2858/", + "id": 2858, + "name": "The Eternals", + "site_detail_url": "https://comicvine.gamespot.com/the-eternals/4050-2858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2859/", + "id": 2859, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4050-2859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2860/", + "id": 2860, + "name": "The Incredible Hulk Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-annual/4050-2860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2861/", + "id": 2861, + "name": "Marvel Adventure", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventure/4050-2861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2863/", + "id": 2863, + "name": "Marvel Team-Up Annual", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-annual/4050-2863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2865/", + "id": 2865, + "name": "Marvel Two-in-One Annual", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-annual/4050-2865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2867/", + "id": 2867, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-2867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2868/", + "id": 2868, + "name": "Omega the Unknown", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown/4050-2868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2870/", + "id": 2870, + "name": "The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man/4050-2870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2896/", + "id": 2896, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-2896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2898/", + "id": 2898, + "name": "Dynomutt", + "site_detail_url": "https://comicvine.gamespot.com/dynomutt/4050-2898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2900/", + "id": 2900, + "name": "The Flintstones", + "site_detail_url": "https://comicvine.gamespot.com/the-flintstones/4050-2900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2901/", + "id": 2901, + "name": "Godzilla", + "site_detail_url": "https://comicvine.gamespot.com/godzilla/4050-2901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2903/", + "id": 2903, + "name": "The Human Fly", + "site_detail_url": "https://comicvine.gamespot.com/the-human-fly/4050-2903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2905/", + "id": 2905, + "name": "Iron Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-annual/4050-2905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2907/", + "id": 2907, + "name": "John Carter Warlord of Mars", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-warlord-of-mars/4050-2907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2908/", + "id": 2908, + "name": "John Carter Warlord of Mars Annual", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-warlord-of-mars-annual/4050-2908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2909/", + "id": 2909, + "name": "Marvel Comics Super Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-super-special/4050-2909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2910/", + "id": 2910, + "name": "Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel/4050-2910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2912/", + "id": 2912, + "name": "Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/red-sonja/4050-2912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2913/", + "id": 2913, + "name": "Scooby-Doo", + "site_detail_url": "https://comicvine.gamespot.com/scooby-doo/4050-2913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2914/", + "id": 2914, + "name": "Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/star-wars/4050-2914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2916/", + "id": 2916, + "name": "Tarzan", + "site_detail_url": "https://comicvine.gamespot.com/tarzan/4050-2916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2917/", + "id": 2917, + "name": "Tarzan Annual", + "site_detail_url": "https://comicvine.gamespot.com/tarzan-annual/4050-2917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2918/", + "id": 2918, + "name": "What If?", + "site_detail_url": "https://comicvine.gamespot.com/what-if/4050-2918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2919/", + "id": 2919, + "name": "Yogi Bear", + "site_detail_url": "https://comicvine.gamespot.com/yogi-bear/4050-2919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2953/", + "id": 2953, + "name": "Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/devil-dinosaur/4050-2953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2955/", + "id": 2955, + "name": "Laff-A-Lympics", + "site_detail_url": "https://comicvine.gamespot.com/laff-a-lympics/4050-2955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2956/", + "id": 2956, + "name": "Machine Man", + "site_detail_url": "https://comicvine.gamespot.com/machine-man/4050-2956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2957/", + "id": 2957, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-2957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2958/", + "id": 2958, + "name": "Man from Atlantis", + "site_detail_url": "https://comicvine.gamespot.com/man-from-atlantis/4050-2958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2959/", + "id": 2959, + "name": "Power Man and Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist/4050-2959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2960/", + "id": 2960, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-2960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2961/", + "id": 2961, + "name": "Hanna-Barbera Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/hanna-barbera-spotlight/4050-2961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2962/", + "id": 2962, + "name": "TV Stars", + "site_detail_url": "https://comicvine.gamespot.com/tv-stars/4050-2962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3001/", + "id": 3001, + "name": "Amazing Adventures", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures/4050-3001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3002/", + "id": 3002, + "name": "Battlestar Galactica", + "site_detail_url": "https://comicvine.gamespot.com/battlestar-galactica/4050-3002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3003/", + "id": 3003, + "name": "Fantasy Masterpieces", + "site_detail_url": "https://comicvine.gamespot.com/fantasy-masterpieces/4050-3003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3004/", + "id": 3004, + "name": "Fun and Games Magazine", + "site_detail_url": "https://comicvine.gamespot.com/fun-and-games-magazine/4050-3004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3005/", + "id": 3005, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4050-3005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3006/", + "id": 3006, + "name": "Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/man-thing/4050-3006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3007/", + "id": 3007, + "name": "Marvel Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight/4050-3007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3008/", + "id": 3008, + "name": "Micronauts", + "site_detail_url": "https://comicvine.gamespot.com/micronauts/4050-3008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3009/", + "id": 3009, + "name": "Micronauts Annual", + "site_detail_url": "https://comicvine.gamespot.com/micronauts-annual/4050-3009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3010/", + "id": 3010, + "name": "Rom", + "site_detail_url": "https://comicvine.gamespot.com/rom/4050-3010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3011/", + "id": 3011, + "name": "Shogun Warriors", + "site_detail_url": "https://comicvine.gamespot.com/shogun-warriors/4050-3011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3012/", + "id": 3012, + "name": "The Spectacular Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-annual/4050-3012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3013/", + "id": 3013, + "name": "Star Wars Annual", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-annual/4050-3013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3015/", + "id": 3015, + "name": "The Tomb of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/the-tomb-of-dracula/4050-3015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3049/", + "id": 3049, + "name": "Epic Illustrated", + "site_detail_url": "https://comicvine.gamespot.com/epic-illustrated/4050-3049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3051/", + "id": 3051, + "name": "King Conan", + "site_detail_url": "https://comicvine.gamespot.com/king-conan/4050-3051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3052/", + "id": 3052, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-3052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3053/", + "id": 3053, + "name": "The Savage She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-savage-she-hulk/4050-3053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3054/", + "id": 3054, + "name": "Star Trek", + "site_detail_url": "https://comicvine.gamespot.com/star-trek/4050-3054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3082/", + "id": 3082, + "name": "Bizarre Adventures", + "site_detail_url": "https://comicvine.gamespot.com/bizarre-adventures/4050-3082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3083/", + "id": 3083, + "name": "Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/dazzler/4050-3083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3085/", + "id": 3085, + "name": "Dragonslayer", + "site_detail_url": "https://comicvine.gamespot.com/dragonslayer/4050-3085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3086/", + "id": 3086, + "name": "James Bond For Your Eyes Only", + "site_detail_url": "https://comicvine.gamespot.com/james-bond-for-your-eyes-only/4050-3086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3087/", + "id": 3087, + "name": "Ka-Zar the Savage", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-savage/4050-3087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3089/", + "id": 3089, + "name": "Raiders of the Lost Ark", + "site_detail_url": "https://comicvine.gamespot.com/raiders-of-the-lost-ark/4050-3089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3092/", + "id": 3092, + "name": "The Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men/4050-3092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3131/", + "id": 3131, + "name": "Annie", + "site_detail_url": "https://comicvine.gamespot.com/annie/4050-3131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3133/", + "id": 3133, + "name": "Blade Runner", + "site_detail_url": "https://comicvine.gamespot.com/blade-runner/4050-3133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3134/", + "id": 3134, + "name": "Conan the Barbarian Movie Special", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-movie-special/4050-3134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3138/", + "id": 3138, + "name": "G.I. Joe: A Real American Hero", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-a-real-american-hero/4050-3138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3139/", + "id": 3139, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4050-3139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3140/", + "id": 3140, + "name": "Kull the Conqueror", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-conqueror/4050-3140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3143/", + "id": 3143, + "name": "Marvel Fanfare", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare/4050-3143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3144/", + "id": 3144, + "name": "Marvel Graphic Novel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel/4050-3144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3145/", + "id": 3145, + "name": "Marvel Movie Showcase", + "site_detail_url": "https://comicvine.gamespot.com/marvel-movie-showcase/4050-3145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3147/", + "id": 3147, + "name": "Marvel Super Hero Contest of Champions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-contest-of-champions/4050-3147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3148/", + "id": 3148, + "name": "Rom Annual", + "site_detail_url": "https://comicvine.gamespot.com/rom-annual/4050-3148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3150/", + "id": 3150, + "name": "Smurfs", + "site_detail_url": "https://comicvine.gamespot.com/smurfs/4050-3150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3152/", + "id": 3152, + "name": "Team America", + "site_detail_url": "https://comicvine.gamespot.com/team-america/4050-3152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3154/", + "id": 3154, + "name": "The Very Best of Dennis the Menace", + "site_detail_url": "https://comicvine.gamespot.com/the-very-best-of-dennis-the-menace/4050-3154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3155/", + "id": 3155, + "name": "Vision and the Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/vision-and-the-scarlet-witch/4050-3155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3156/", + "id": 3156, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4050-3156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3157/", + "id": 3157, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-3157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3217/", + "id": 3217, + "name": "Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight/4050-3217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3218/", + "id": 3218, + "name": "Blip", + "site_detail_url": "https://comicvine.gamespot.com/blip/4050-3218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3219/", + "id": 3219, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4050-3219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3221/", + "id": 3221, + "name": "The Dark Crystal", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-crystal/4050-3221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3223/", + "id": 3223, + "name": "The Falcon", + "site_detail_url": "https://comicvine.gamespot.com/the-falcon/4050-3223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3224/", + "id": 3224, + "name": "The Further Adventures of Indiana Jones", + "site_detail_url": "https://comicvine.gamespot.com/the-further-adventures-of-indiana-jones/4050-3224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3225/", + "id": 3225, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-3225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3227/", + "id": 3227, + "name": "The Kree-Skrull War Starring the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-kree-skrull-war-starring-the-avengers/4050-3227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3228/", + "id": 3228, + "name": "Krull", + "site_detail_url": "https://comicvine.gamespot.com/krull/4050-3228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3229/", + "id": 3229, + "name": "Kull the Conqueror", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-conqueror/4050-3229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3230/", + "id": 3230, + "name": "Magik (Storm and Illyana Limited Series)", + "site_detail_url": "https://comicvine.gamespot.com/magik-storm-and-illyana-limited-series/4050-3230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3233/", + "id": 3233, + "name": "Moon Knight: The Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-the-special-edition/4050-3233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3234/", + "id": 3234, + "name": "The New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants/4050-3234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3235/", + "id": 3235, + "name": "Nick Fury, Agent of SHIELD", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-agent-of-shield/4050-3235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3237/", + "id": 3237, + "name": "The Official Handbook of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3238/", + "id": 3238, + "name": "Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/red-sonja/4050-3238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3239/", + "id": 3239, + "name": "The Saga of Crystar, Crystal Warrior", + "site_detail_url": "https://comicvine.gamespot.com/the-saga-of-crystar-crystal-warrior/4050-3239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3243/", + "id": 3243, + "name": "Star Wars: Return of the Jedi", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-return-of-the-jedi/4050-3243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3245/", + "id": 3245, + "name": "The Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-thing/4050-3245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3246/", + "id": 3246, + "name": "U.S. 1", + "site_detail_url": "https://comicvine.gamespot.com/us-1/4050-3246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3247/", + "id": 3247, + "name": "X-Men Classics Starring the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classics-starring-the-x-men/4050-3247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3330/", + "id": 3330, + "name": "The A-Team", + "site_detail_url": "https://comicvine.gamespot.com/the-a-team/4050-3330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3332/", + "id": 3332, + "name": "Amazing High Adventure", + "site_detail_url": "https://comicvine.gamespot.com/amazing-high-adventure/4050-3332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3333/", + "id": 3333, + "name": "Beauty and the Beast", + "site_detail_url": "https://comicvine.gamespot.com/beauty-and-the-beast/4050-3333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3334/", + "id": 3334, + "name": "Buckaroo Banzai", + "site_detail_url": "https://comicvine.gamespot.com/buckaroo-banzai/4050-3334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3335/", + "id": 3335, + "name": "Captain America Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-special-edition/4050-3335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3336/", + "id": 3336, + "name": "Conan the King", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-king/4050-3336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3338/", + "id": 3338, + "name": "Doctor Strange Classics", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-classics/4050-3338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3339/", + "id": 3339, + "name": "Doctor Who", + "site_detail_url": "https://comicvine.gamespot.com/doctor-who/4050-3339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3340/", + "id": 3340, + "name": "Elektra Saga", + "site_detail_url": "https://comicvine.gamespot.com/elektra-saga/4050-3340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3342/", + "id": 3342, + "name": "G.I. Joe Yearbook", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-yearbook/4050-3342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3344/", + "id": 3344, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4050-3344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3345/", + "id": 3345, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4050-3345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3346/", + "id": 3346, + "name": "Indiana Jones and the Temple of Doom", + "site_detail_url": "https://comicvine.gamespot.com/indiana-jones-and-the-temple-of-doom/4050-3346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3347/", + "id": 3347, + "name": "Jack of Hearts", + "site_detail_url": "https://comicvine.gamespot.com/jack-of-hearts/4050-3347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3348/", + "id": 3348, + "name": "Kitty Pryde and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/kitty-pryde-and-wolverine/4050-3348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3349/", + "id": 3349, + "name": "The Last Starfighter", + "site_detail_url": "https://comicvine.gamespot.com/the-last-starfighter/4050-3349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3350/", + "id": 3350, + "name": "Machine Man", + "site_detail_url": "https://comicvine.gamespot.com/machine-man/4050-3350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3352/", + "id": 3352, + "name": "Marvel Super Heroes Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars/4050-3352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3353/", + "id": 3353, + "name": "Micronauts: The New Voyages", + "site_detail_url": "https://comicvine.gamespot.com/micronauts-the-new-voyages/4050-3353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3356/", + "id": 3356, + "name": "The New Mutants Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-annual/4050-3356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3358/", + "id": 3358, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4050-3358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3359/", + "id": 3359, + "name": "Prince Namor, the Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/prince-namor-the-sub-mariner/4050-3359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3360/", + "id": 3360, + "name": "Questprobe", + "site_detail_url": "https://comicvine.gamespot.com/questprobe/4050-3360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3361/", + "id": 3361, + "name": "Sheena", + "site_detail_url": "https://comicvine.gamespot.com/sheena/4050-3361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3366/", + "id": 3366, + "name": "Starriors", + "site_detail_url": "https://comicvine.gamespot.com/starriors/4050-3366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3368/", + "id": 3368, + "name": "Tarzan of the Apes", + "site_detail_url": "https://comicvine.gamespot.com/tarzan-of-the-apes/4050-3368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3370/", + "id": 3370, + "name": "The Transformers", + "site_detail_url": "https://comicvine.gamespot.com/the-transformers/4050-3370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3372/", + "id": 3372, + "name": "West Coast Avengers", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers/4050-3372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3373/", + "id": 3373, + "name": "The X-Men and The Micronauts", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-and-the-micronauts/4050-3373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3470/", + "id": 3470, + "name": "2010", + "site_detail_url": "https://comicvine.gamespot.com/2010/4050-3470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3471/", + "id": 3471, + "name": "Balder the Brave", + "site_detail_url": "https://comicvine.gamespot.com/balder-the-brave/4050-3471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3475/", + "id": 3475, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4050-3475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3476/", + "id": 3476, + "name": "Conan the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-destroyer/4050-3476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3478/", + "id": 3478, + "name": "Dune", + "site_detail_url": "https://comicvine.gamespot.com/dune/4050-3478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3480/", + "id": 3480, + "name": "Eternals", + "site_detail_url": "https://comicvine.gamespot.com/eternals/4050-3480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3483/", + "id": 3483, + "name": "Gargoyle", + "site_detail_url": "https://comicvine.gamespot.com/gargoyle/4050-3483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3488/", + "id": 3488, + "name": "The Life Of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-captain-marvel/4050-3488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3489/", + "id": 3489, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/longshot/4050-3489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3490/", + "id": 3490, + "name": "The Marvel Saga The Official History of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4050-3490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3492/", + "id": 3492, + "name": "Moon Knight: Fist of Khonshu", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-fist-of-khonshu/4050-3492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3497/", + "id": 3497, + "name": "The Official Handbook of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3501/", + "id": 3501, + "name": "Rawhide Kid", + "site_detail_url": "https://comicvine.gamespot.com/rawhide-kid/4050-3501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3503/", + "id": 3503, + "name": "Rocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon/4050-3503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3505/", + "id": 3505, + "name": "Savage Tales", + "site_detail_url": "https://comicvine.gamespot.com/savage-tales/4050-3505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3506/", + "id": 3506, + "name": "Secret Wars II", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii/4050-3506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3507/", + "id": 3507, + "name": "Sectaurs", + "site_detail_url": "https://comicvine.gamespot.com/sectaurs/4050-3507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3510/", + "id": 3510, + "name": "The Sword of Solomon Kane", + "site_detail_url": "https://comicvine.gamespot.com/the-sword-of-solomon-kane/4050-3510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3511/", + "id": 3511, + "name": "Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme/4050-3511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3517/", + "id": 3517, + "name": "The Vision and the Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/the-vision-and-the-scarlet-witch/4050-3517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3519/", + "id": 3519, + "name": "Web of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man/4050-3519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3520/", + "id": 3520, + "name": "Web of Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-annual/4050-3520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3521/", + "id": 3521, + "name": "West Coast Avengers", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers/4050-3521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3522/", + "id": 3522, + "name": "X-Men/Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/x-menalpha-flight/4050-3522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3623/", + "id": 3623, + "name": "Alpha Flight Annual", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-annual/4050-3623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3626/", + "id": 3626, + "name": "Classic X-Men", + "site_detail_url": "https://comicvine.gamespot.com/classic-x-men/4050-3626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3627/", + "id": 3627, + "name": "D.P.7", + "site_detail_url": "https://comicvine.gamespot.com/dp7/4050-3627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3631/", + "id": 3631, + "name": "Firestar", + "site_detail_url": "https://comicvine.gamespot.com/firestar/4050-3631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3632/", + "id": 3632, + "name": "G.I. Joe and the Transformers", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-and-the-transformers/4050-3632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3634/", + "id": 3634, + "name": "The G.I. Joe Order of Battle", + "site_detail_url": "https://comicvine.gamespot.com/the-gi-joe-order-of-battle/4050-3634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3637/", + "id": 3637, + "name": "Howard the Duck: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-the-movie/4050-3637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3640/", + "id": 3640, + "name": "Justice", + "site_detail_url": "https://comicvine.gamespot.com/justice/4050-3640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3641/", + "id": 3641, + "name": "Kickers, Inc.", + "site_detail_url": "https://comicvine.gamespot.com/kickers-inc/4050-3641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3642/", + "id": 3642, + "name": "Labyrinth", + "site_detail_url": "https://comicvine.gamespot.com/labyrinth/4050-3642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3644/", + "id": 3644, + "name": "Mark Hazzard: Merc", + "site_detail_url": "https://comicvine.gamespot.com/mark-hazzard-merc/4050-3644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3647/", + "id": 3647, + "name": "Nightmask", + "site_detail_url": "https://comicvine.gamespot.com/nightmask/4050-3647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3649/", + "id": 3649, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-3649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3651/", + "id": 3651, + "name": "Spitfire and the Troubleshooters", + "site_detail_url": "https://comicvine.gamespot.com/spitfire-and-the-troubleshooters/4050-3651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3652/", + "id": 3652, + "name": "Star Brand", + "site_detail_url": "https://comicvine.gamespot.com/star-brand/4050-3652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3654/", + "id": 3654, + "name": "Strikeforce: Morituri", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-morituri/4050-3654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3655/", + "id": 3655, + "name": "Transformers: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/transformers-the-movie/4050-3655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3656/", + "id": 3656, + "name": "West Coast Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers-annual/4050-3656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3657/", + "id": 3657, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor/4050-3657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3658/", + "id": 3658, + "name": "X-Factor Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-annual/4050-3658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3835/", + "id": 3835, + "name": "Codename: Spitfire", + "site_detail_url": "https://comicvine.gamespot.com/codename-spitfire/4050-3835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3836/", + "id": 3836, + "name": "Comet Man", + "site_detail_url": "https://comicvine.gamespot.com/comet-man/4050-3836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3837/", + "id": 3837, + "name": "Conan Saga", + "site_detail_url": "https://comicvine.gamespot.com/conan-saga/4050-3837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3842/", + "id": 3842, + "name": "Fallen Angels", + "site_detail_url": "https://comicvine.gamespot.com/fallen-angels/4050-3842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3843/", + "id": 3843, + "name": "Fantastic Four vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-vs-x-men/4050-3843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3851/", + "id": 3851, + "name": "Marvel Masterworks", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks/4050-3851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3853/", + "id": 3853, + "name": "Mephisto Vs. ...", + "site_detail_url": "https://comicvine.gamespot.com/mephisto-vs/4050-3853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3855/", + "id": 3855, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-3855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3857/", + "id": 3857, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-3857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3859/", + "id": 3859, + "name": "Solo Avengers", + "site_detail_url": "https://comicvine.gamespot.com/solo-avengers/4050-3859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3860/", + "id": 3860, + "name": "Spider-Man Comics Magazine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-comics-magazine/4050-3860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3863/", + "id": 3863, + "name": "Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales/4050-3863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3864/", + "id": 3864, + "name": "The Transformers: Headmasters", + "site_detail_url": "https://comicvine.gamespot.com/the-transformers-headmasters/4050-3864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3867/", + "id": 3867, + "name": "The X-Men vs. The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-vs-the-avengers/4050-3867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4042/", + "id": 4042, + "name": "ALF", + "site_detail_url": "https://comicvine.gamespot.com/alf/4050-4042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4043/", + "id": 4043, + "name": "ALF* Annual", + "site_detail_url": "https://comicvine.gamespot.com/alf-annual/4050-4043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4044/", + "id": 4044, + "name": "ALF Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/alf-holiday-special/4050-4044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4045/", + "id": 4045, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-4045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4046/", + "id": 4046, + "name": "Captain Justice", + "site_detail_url": "https://comicvine.gamespot.com/captain-justice/4050-4046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4047/", + "id": 4047, + "name": "Count Duckula", + "site_detail_url": "https://comicvine.gamespot.com/count-duckula/4050-4047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4049/", + "id": 4049, + "name": "Doctor Strange, Sorcerer Supreme", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme/4050-4049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4052/", + "id": 4052, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4050-4052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4058/", + "id": 4058, + "name": "Marvel Comics Presents", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4060/", + "id": 4060, + "name": "The Mutant Misadventures of Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/the-mutant-misadventures-of-cloak-and-dagger/4050-4060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4061/", + "id": 4061, + "name": "Nick Fury vs. S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-vs-shield/4050-4061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4064/", + "id": 4064, + "name": "The Punisher Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-annual/4050-4064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4066/", + "id": 4066, + "name": "The Punisher War Journal", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal/4050-4066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4067/", + "id": 4067, + "name": "Saga of the Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/saga-of-the-sub-mariner/4050-4067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4068/", + "id": 4068, + "name": "Semper Fi", + "site_detail_url": "https://comicvine.gamespot.com/semper-fi/4050-4068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4069/", + "id": 4069, + "name": "Silver Surfer Annual", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-annual/4050-4069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4072/", + "id": 4072, + "name": "Sledge Hammer", + "site_detail_url": "https://comicvine.gamespot.com/sledge-hammer/4050-4072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4073/", + "id": 4073, + "name": "Speedball", + "site_detail_url": "https://comicvine.gamespot.com/speedball/4050-4073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4074/", + "id": 4074, + "name": "Spellbound", + "site_detail_url": "https://comicvine.gamespot.com/spellbound/4050-4074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4077/", + "id": 4077, + "name": "Tales Of G.I. Joe", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-gi-joe/4050-4077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4079/", + "id": 4079, + "name": "What The--?!", + "site_detail_url": "https://comicvine.gamespot.com/what-the/4050-4079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4080/", + "id": 4080, + "name": "Willow", + "site_detail_url": "https://comicvine.gamespot.com/willow/4050-4080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4081/", + "id": 4081, + "name": "Wolfpack", + "site_detail_url": "https://comicvine.gamespot.com/wolfpack/4050-4081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4082/", + "id": 4082, + "name": "X-Terminators", + "site_detail_url": "https://comicvine.gamespot.com/x-terminators/4050-4082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4218/", + "id": 4218, + "name": "Avengers Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/avengers-spotlight/4050-4218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4219/", + "id": 4219, + "name": "Avengers West Coast Annual", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-annual/4050-4219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4222/", + "id": 4222, + "name": "Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/destroyer/4050-4222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4223/", + "id": 4223, + "name": "Dino Riders", + "site_detail_url": "https://comicvine.gamespot.com/dino-riders/4050-4223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4230/", + "id": 4230, + "name": "Marc Spector: Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/marc-spector-moon-knight/4050-4230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4232/", + "id": 4232, + "name": "Nick Fury, Agent of SHIELD", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-agent-of-shield/4050-4232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4234/", + "id": 4234, + "name": "Nth Man the Ultimate Ninja", + "site_detail_url": "https://comicvine.gamespot.com/nth-man-the-ultimate-ninja/4050-4234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4235/", + "id": 4235, + "name": "The Official Handbook of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-4235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4236/", + "id": 4236, + "name": "Open Space", + "site_detail_url": "https://comicvine.gamespot.com/open-space/4050-4236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4237/", + "id": 4237, + "name": "Police Academy", + "site_detail_url": "https://comicvine.gamespot.com/police-academy/4050-4237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4240/", + "id": 4240, + "name": "The Punisher Magazine", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-magazine/4050-4240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4242/", + "id": 4242, + "name": "Quasar", + "site_detail_url": "https://comicvine.gamespot.com/quasar/4050-4242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4243/", + "id": 4243, + "name": "The Sensational She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-she-hulk/4050-4243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4244/", + "id": 4244, + "name": "Shadowmasters", + "site_detail_url": "https://comicvine.gamespot.com/shadowmasters/4050-4244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4247/", + "id": 4247, + "name": "Strikeforce Morituri: Electric Undertow", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-morituri-electric-undertow/4050-4247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4248/", + "id": 4248, + "name": "The War", + "site_detail_url": "https://comicvine.gamespot.com/the-war/4050-4248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4249/", + "id": 4249, + "name": "What If...?", + "site_detail_url": "https://comicvine.gamespot.com/what-if/4050-4249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4250/", + "id": 4250, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-4250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4251/", + "id": 4251, + "name": "Wolverine Saga", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-saga/4050-4251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4349/", + "id": 4349, + "name": "Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/damage-control/4050-4349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4350/", + "id": 4350, + "name": "Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/damage-control/4050-4350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4386/", + "id": 4386, + "name": "Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/black-knight/4050-4386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4387/", + "id": 4387, + "name": "Brute Force", + "site_detail_url": "https://comicvine.gamespot.com/brute-force/4050-4387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4389/", + "id": 4389, + "name": "Camp Candy", + "site_detail_url": "https://comicvine.gamespot.com/camp-candy/4050-4389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4391/", + "id": 4391, + "name": "Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/deathlok/4050-4391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4395/", + "id": 4395, + "name": "Foolkiller", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller/4050-4395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4397/", + "id": 4397, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-4397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4398/", + "id": 4398, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-4398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4400/", + "id": 4400, + "name": "The Impossible Man Summer Vacation Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/the-impossible-man-summer-vacation-spectacular/4050-4400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4404/", + "id": 4404, + "name": "Marvel Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes/4050-4404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4405/", + "id": 4405, + "name": "Mighty Mouse", + "site_detail_url": "https://comicvine.gamespot.com/mighty-mouse/4050-4405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4406/", + "id": 4406, + "name": "Namor, the Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-sub-mariner/4050-4406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4407/", + "id": 4407, + "name": "The New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors/4050-4407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4408/", + "id": 4408, + "name": "Nomad", + "site_detail_url": "https://comicvine.gamespot.com/nomad/4050-4408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4411/", + "id": 4411, + "name": "The Punisher Armory", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-armory/4050-4411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4418/", + "id": 4418, + "name": "RoboCop", + "site_detail_url": "https://comicvine.gamespot.com/robocop/4050-4418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4419/", + "id": 4419, + "name": "RoboCop 2", + "site_detail_url": "https://comicvine.gamespot.com/robocop-2/4050-4419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4420/", + "id": 4420, + "name": "Saga of the Original Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/saga-of-the-original-human-torch/4050-4420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4421/", + "id": 4421, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4050-4421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4423/", + "id": 4423, + "name": "Steeltown Rockers", + "site_detail_url": "https://comicvine.gamespot.com/steeltown-rockers/4050-4423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4425/", + "id": 4425, + "name": "The Thanos Quest", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-quest/4050-4425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4428/", + "id": 4428, + "name": "X-Men Spotlight on... Starjammers", + "site_detail_url": "https://comicvine.gamespot.com/x-men-spotlight-on-starjammers/4050-4428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4429/", + "id": 4429, + "name": "Zorro", + "site_detail_url": "https://comicvine.gamespot.com/zorro/4050-4429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4577/", + "id": 4577, + "name": "Adventures of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-captain-america/4050-4577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4579/", + "id": 4579, + "name": "Alpha Flight Special", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-special/4050-4579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4582/", + "id": 4582, + "name": "Barbie Fashion", + "site_detail_url": "https://comicvine.gamespot.com/barbie-fashion/4050-4582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4584/", + "id": 4584, + "name": "Captain Planet and the Planeteers", + "site_detail_url": "https://comicvine.gamespot.com/captain-planet-and-the-planeteers/4050-4584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4586/", + "id": 4586, + "name": "Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/damage-control/4050-4586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4587/", + "id": 4587, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk/4050-4587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4588/", + "id": 4588, + "name": "Deadly Foes of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/deadly-foes-of-spider-man/4050-4588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4589/", + "id": 4589, + "name": "Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/deathlok/4050-4589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4590/", + "id": 4590, + "name": "Deathlok Special", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-special/4050-4590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4591/", + "id": 4591, + "name": "Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/destroyer/4050-4591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4595/", + "id": 4595, + "name": "Guardians of the Galaxy Annual", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-annual/4050-4595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4596/", + "id": 4596, + "name": "The Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet/4050-4596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4597/", + "id": 4597, + "name": "The Legion of Night", + "site_detail_url": "https://comicvine.gamespot.com/the-legion-of-night/4050-4597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4599/", + "id": 4599, + "name": "The Punisher: P.O.V.", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-pov/4050-4599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4600/", + "id": 4600, + "name": "Sleepwalker", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker/4050-4600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4601/", + "id": 4601, + "name": "Terminator 2: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/terminator-2-judgment-day/4050-4601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4603/", + "id": 4603, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4050-4603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4604/", + "id": 4604, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4050-4604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4605/", + "id": 4605, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-4605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4771/", + "id": 4771, + "name": "The Adventures of the Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-the-thing/4050-4771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4773/", + "id": 4773, + "name": "American Tail: Fievel Goes West", + "site_detail_url": "https://comicvine.gamespot.com/american-tail-fievel-goes-west/4050-4773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4778/", + "id": 4778, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4050-4778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4779/", + "id": 4779, + "name": "Cage", + "site_detail_url": "https://comicvine.gamespot.com/cage/4050-4779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4782/", + "id": 4782, + "name": "Cops: The Job", + "site_detail_url": "https://comicvine.gamespot.com/cops-the-job/4050-4782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4784/", + "id": 4784, + "name": "Darkhold: Pages from the Book of Sins", + "site_detail_url": "https://comicvine.gamespot.com/darkhold-pages-from-the-book-of-sins/4050-4784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4785/", + "id": 4785, + "name": "Defenders of Dynatron City", + "site_detail_url": "https://comicvine.gamespot.com/defenders-of-dynatron-city/4050-4785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4786/", + "id": 4786, + "name": "Doctor Strange, Sorcerer Supreme Annual", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-annual/4050-4786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4789/", + "id": 4789, + "name": "Fish Police", + "site_detail_url": "https://comicvine.gamespot.com/fish-police/4050-4789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4790/", + "id": 4790, + "name": "Ghost Rider/Blaze: Spirits of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riderblaze-spirits-of-vengeance/4050-4790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4792/", + "id": 4792, + "name": "Hook", + "site_detail_url": "https://comicvine.gamespot.com/hook/4050-4792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4793/", + "id": 4793, + "name": "Hulk: Future Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/hulk-future-imperfect/4050-4793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4795/", + "id": 4795, + "name": "The Infinity War", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-war/4050-4795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4796/", + "id": 4796, + "name": "James Bond Jr.", + "site_detail_url": "https://comicvine.gamespot.com/james-bond-jr/4050-4796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4798/", + "id": 4798, + "name": "Morbius: The Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire/4050-4798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4801/", + "id": 4801, + "name": "Night Thrasher: Four Control", + "site_detail_url": "https://comicvine.gamespot.com/night-thrasher-four-control/4050-4801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4802/", + "id": 4802, + "name": "Nightstalkers", + "site_detail_url": "https://comicvine.gamespot.com/nightstalkers/4050-4802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4803/", + "id": 4803, + "name": "Nomad", + "site_detail_url": "https://comicvine.gamespot.com/nomad/4050-4803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4807/", + "id": 4807, + "name": "The Punisher: War Zone", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone/4050-4807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4808/", + "id": 4808, + "name": "The Ren & Stimpy Show", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-stimpy-show/4050-4808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4810/", + "id": 4810, + "name": "Silver Sable and the Wild Pack", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack/4050-4810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4811/", + "id": 4811, + "name": "Slapstick", + "site_detail_url": "https://comicvine.gamespot.com/slapstick/4050-4811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4814/", + "id": 4814, + "name": "Terror Inc.", + "site_detail_url": "https://comicvine.gamespot.com/terror-inc/4050-4814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4815/", + "id": 4815, + "name": "Toxic Crusaders", + "site_detail_url": "https://comicvine.gamespot.com/toxic-crusaders/4050-4815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4817/", + "id": 4817, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4050-4817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4818/", + "id": 4818, + "name": "Warlock and the Infinity Watch", + "site_detail_url": "https://comicvine.gamespot.com/warlock-and-the-infinity-watch/4050-4818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4822/", + "id": 4822, + "name": "X-Force Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-force-annual/4050-4822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4823/", + "id": 4823, + "name": "X-Men Adventures", + "site_detail_url": "https://comicvine.gamespot.com/x-men-adventures/4050-4823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4986/", + "id": 4986, + "name": "Avengers: The Terminatrix Objective", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-terminatrix-objective/4050-4986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4987/", + "id": 4987, + "name": "Biker Mice from Mars", + "site_detail_url": "https://comicvine.gamespot.com/biker-mice-from-mars/4050-4987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4989/", + "id": 4989, + "name": "Blaze: Legacy of Blood", + "site_detail_url": "https://comicvine.gamespot.com/blaze-legacy-of-blood/4050-4989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4992/", + "id": 4992, + "name": "Book of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/book-of-the-dead/4050-4992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4993/", + "id": 4993, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4050-4993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4997/", + "id": 4997, + "name": "Curse of the Weird", + "site_detail_url": "https://comicvine.gamespot.com/curse-of-the-weird/4050-4997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5000/", + "id": 5000, + "name": "Daredevil: The Man Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-man-without-fear/4050-5000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5003/", + "id": 5003, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-5003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5005/", + "id": 5005, + "name": "Death Metal Vs. Genetix", + "site_detail_url": "https://comicvine.gamespot.com/death-metal-vs-genetix/4050-5005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5009/", + "id": 5009, + "name": "Fantastic Four Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-unlimited/4050-5009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5011/", + "id": 5011, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-5011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5019/", + "id": 5019, + "name": "The Infinity Crusade", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-crusade/4050-5019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5020/", + "id": 5020, + "name": "The Invaders", + "site_detail_url": "https://comicvine.gamespot.com/the-invaders/4050-5020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5022/", + "id": 5022, + "name": "King Arthur And The Knights Of Justice", + "site_detail_url": "https://comicvine.gamespot.com/king-arthur-and-the-knights-of-justice/4050-5022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5024/", + "id": 5024, + "name": "Lethal Foes of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/lethal-foes-of-spider-man/4050-5024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5027/", + "id": 5027, + "name": "The Marvel Masterpieces Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-masterpieces-collection/4050-5027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5028/", + "id": 5028, + "name": "Meteor Man", + "site_detail_url": "https://comicvine.gamespot.com/meteor-man/4050-5028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5030/", + "id": 5030, + "name": "Monster Menace", + "site_detail_url": "https://comicvine.gamespot.com/monster-menace/4050-5030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5031/", + "id": 5031, + "name": "Morbius Revisited", + "site_detail_url": "https://comicvine.gamespot.com/morbius-revisited/4050-5031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5032/", + "id": 5032, + "name": "Mort the Dead Teenager", + "site_detail_url": "https://comicvine.gamespot.com/mort-the-dead-teenager/4050-5032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5034/", + "id": 5034, + "name": "Night Thrasher", + "site_detail_url": "https://comicvine.gamespot.com/night-thrasher/4050-5034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5039/", + "id": 5039, + "name": "Punisher: The Ghosts of Innocents", + "site_detail_url": "https://comicvine.gamespot.com/punisher-the-ghosts-of-innocents/4050-5039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5041/", + "id": 5041, + "name": "Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth/4050-5041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5044/", + "id": 5044, + "name": "Secret Defenders", + "site_detail_url": "https://comicvine.gamespot.com/secret-defenders/4050-5044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5046/", + "id": 5046, + "name": "Silver Surfer/Warlock: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/silver-surferwarlock-resurrection/4050-5046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5047/", + "id": 5047, + "name": "Spider-Man Classics", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-classics/4050-5047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5048/", + "id": 5048, + "name": "Spider-Man Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited/4050-5048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5049/", + "id": 5049, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-5049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5054/", + "id": 5054, + "name": "Thor Corps", + "site_detail_url": "https://comicvine.gamespot.com/thor-corps/4050-5054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5055/", + "id": 5055, + "name": "Thunderstrike", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike/4050-5055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5058/", + "id": 5058, + "name": "Transformers: Generation 2", + "site_detail_url": "https://comicvine.gamespot.com/transformers-generation-2/4050-5058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5059/", + "id": 5059, + "name": "Venom: Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector/4050-5059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5060/", + "id": 5060, + "name": "Venom: The Madness", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-madness/4050-5060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5062/", + "id": 5062, + "name": "Warlock Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/warlock-chronicles/4050-5062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5066/", + "id": 5066, + "name": "X-Men Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited/4050-5066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5272/", + "id": 5272, + "name": "The Adventures of Cyclops and Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-cyclops-and-phoenix/4050-5272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5274/", + "id": 5274, + "name": "Annex", + "site_detail_url": "https://comicvine.gamespot.com/annex/4050-5274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5277/", + "id": 5277, + "name": "Bishop", + "site_detail_url": "https://comicvine.gamespot.com/bishop/4050-5277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5281/", + "id": 5281, + "name": "Blaze", + "site_detail_url": "https://comicvine.gamespot.com/blaze/4050-5281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5286/", + "id": 5286, + "name": "ClanDestine", + "site_detail_url": "https://comicvine.gamespot.com/clandestine/4050-5286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5287/", + "id": 5287, + "name": "Conan Classic", + "site_detail_url": "https://comicvine.gamespot.com/conan-classic/4050-5287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5288/", + "id": 5288, + "name": "Conan the Adventurer", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-adventurer/4050-5288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5289/", + "id": 5289, + "name": "Coneheads", + "site_detail_url": "https://comicvine.gamespot.com/coneheads/4050-5289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5290/", + "id": 5290, + "name": "Cosmic Powers", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-powers/4050-5290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5296/", + "id": 5296, + "name": "Fantastic Force", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-force/4050-5296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5297/", + "id": 5297, + "name": "Force Works", + "site_detail_url": "https://comicvine.gamespot.com/force-works/4050-5297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5299/", + "id": 5299, + "name": "Galactic Guardians", + "site_detail_url": "https://comicvine.gamespot.com/galactic-guardians/4050-5299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5300/", + "id": 5300, + "name": "Generation X", + "site_detail_url": "https://comicvine.gamespot.com/generation-x/4050-5300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5301/", + "id": 5301, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-5301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5304/", + "id": 5304, + "name": "Justice: Four Balance", + "site_detail_url": "https://comicvine.gamespot.com/justice-four-balance/4050-5304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5307/", + "id": 5307, + "name": "Disney's The Little Mermaid", + "site_detail_url": "https://comicvine.gamespot.com/disneys-the-little-mermaid/4050-5307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5309/", + "id": 5309, + "name": "Machine Man 2020", + "site_detail_url": "https://comicvine.gamespot.com/machine-man-2020/4050-5309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5311/", + "id": 5311, + "name": "The Marvel Masterpieces 2 Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-masterpieces-2-collection/4050-5311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5312/", + "id": 5312, + "name": "Marvel Super-Heroes Megazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-megazine/4050-5312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5313/", + "id": 5313, + "name": "Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvels/4050-5313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5314/", + "id": 5314, + "name": "Nightwatch", + "site_detail_url": "https://comicvine.gamespot.com/nightwatch/4050-5314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5315/", + "id": 5315, + "name": "No Escape", + "site_detail_url": "https://comicvine.gamespot.com/no-escape/4050-5315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5316/", + "id": 5316, + "name": "Northstar", + "site_detail_url": "https://comicvine.gamespot.com/northstar/4050-5316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5319/", + "id": 5319, + "name": "Prince Valiant", + "site_detail_url": "https://comicvine.gamespot.com/prince-valiant/4050-5319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5322/", + "id": 5322, + "name": "Sabretooth Classic", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-classic/4050-5322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5323/", + "id": 5323, + "name": "Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch/4050-5323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5324/", + "id": 5324, + "name": "The Shroud", + "site_detail_url": "https://comicvine.gamespot.com/the-shroud/4050-5324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5325/", + "id": 5325, + "name": "Solo", + "site_detail_url": "https://comicvine.gamespot.com/solo/4050-5325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5326/", + "id": 5326, + "name": "Spider-Man Megazine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-megazine/4050-5326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5327/", + "id": 5327, + "name": "Spider-Man: The Arachnis Project", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-arachnis-project/4050-5327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5328/", + "id": 5328, + "name": "Spider-Man: The Mutant Agenda", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda/4050-5328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5329/", + "id": 5329, + "name": "Spider-Man: Web of Doom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-web-of-doom/4050-5329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5330/", + "id": 5330, + "name": "Spider-Man and X-Factor: Shadowgames", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-x-factor-shadowgames/4050-5330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5331/", + "id": 5331, + "name": "Starblast", + "site_detail_url": "https://comicvine.gamespot.com/starblast/4050-5331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5332/", + "id": 5332, + "name": "Venom: Nights of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/venom-nights-of-vengeance/4050-5332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5333/", + "id": 5333, + "name": "Venom: The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-enemy-within/4050-5333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5334/", + "id": 5334, + "name": "Venom: The Mace", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-mace/4050-5334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5335/", + "id": 5335, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4050-5335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5336/", + "id": 5336, + "name": "War Machine", + "site_detail_url": "https://comicvine.gamespot.com/war-machine/4050-5336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5337/", + "id": 5337, + "name": "X-Men Adventures", + "site_detail_url": "https://comicvine.gamespot.com/x-men-adventures/4050-5337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5338/", + "id": 5338, + "name": "X-Men: The Early Years", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-early-years/4050-5338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5533/", + "id": 5533, + "name": "Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy/4050-5533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5535/", + "id": 5535, + "name": "Amazing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/amazing-x-men/4050-5535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5536/", + "id": 5536, + "name": "Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men/4050-5536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5537/", + "id": 5537, + "name": "Avengers Unplugged", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unplugged/4050-5537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5539/", + "id": 5539, + "name": "Conan", + "site_detail_url": "https://comicvine.gamespot.com/conan/4050-5539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5540/", + "id": 5540, + "name": "Conan the Savage", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-savage/4050-5540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5543/", + "id": 5543, + "name": "Factor X", + "site_detail_url": "https://comicvine.gamespot.com/factor-x/4050-5543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5544/", + "id": 5544, + "name": "Flash Gordon", + "site_detail_url": "https://comicvine.gamespot.com/flash-gordon/4050-5544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5545/", + "id": 5545, + "name": "Fury of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/fury-of-shield/4050-5545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5546/", + "id": 5546, + "name": "Gambit & The X-Ternals", + "site_detail_url": "https://comicvine.gamespot.com/gambit-the-x-ternals/4050-5546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5547/", + "id": 5547, + "name": "Generation Next", + "site_detail_url": "https://comicvine.gamespot.com/generation-next/4050-5547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5549/", + "id": 5549, + "name": "The Phantom: The Ghost Who Walks", + "site_detail_url": "https://comicvine.gamespot.com/the-phantom-the-ghost-who-walks/4050-5549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5551/", + "id": 5551, + "name": "Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/nocturne/4050-5551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5552/", + "id": 5552, + "name": "Phantom 2040", + "site_detail_url": "https://comicvine.gamespot.com/phantom-2040/4050-5552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5553/", + "id": 5553, + "name": "Professor Xavier and the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/professor-xavier-and-the-x-men/4050-5553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5556/", + "id": 5556, + "name": "Ruins", + "site_detail_url": "https://comicvine.gamespot.com/ruins/4050-5556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5561/", + "id": 5561, + "name": "Spider-Man Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up/4050-5561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5562/", + "id": 5562, + "name": "Untold Tales of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man/4050-5562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5564/", + "id": 5564, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4050-5564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5566/", + "id": 5566, + "name": "X-Calibre", + "site_detail_url": "https://comicvine.gamespot.com/x-calibre/4050-5566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5567/", + "id": 5567, + "name": "X-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-man/4050-5567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5568/", + "id": 5568, + "name": "X-Men Archives Featuring Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/x-men-archives-featuring-captain-britain/4050-5568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5572/", + "id": 5572, + "name": "X-Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-universe/4050-5572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5776/", + "id": 5776, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-5776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5778/", + "id": 5778, + "name": "Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle/4050-5778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5779/", + "id": 5779, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4050-5779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5785/", + "id": 5785, + "name": "Pryde and Wisdom", + "site_detail_url": "https://comicvine.gamespot.com/pryde-and-wisdom/4050-5785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5787/", + "id": 5787, + "name": "Mystique & Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/mystique-sabretooth/4050-5787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5788/", + "id": 5788, + "name": "The Sensational Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man/4050-5788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5790/", + "id": 5790, + "name": "Star Trek: Deep Space Nine", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-deep-space-nine/4050-5790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5792/", + "id": 5792, + "name": "Star Trek: Starfleet Academy", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-starfleet-academy/4050-5792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5793/", + "id": 5793, + "name": "Star Trek Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-unlimited/4050-5793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5794/", + "id": 5794, + "name": "Star Trek: Voyager", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-voyager/4050-5794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5797/", + "id": 5797, + "name": "X-Men: ClanDestine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-clandestine/4050-5797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5999/", + "id": 5999, + "name": "Daydreamers", + "site_detail_url": "https://comicvine.gamespot.com/daydreamers/4050-5999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6000/", + "id": 6000, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-6000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6003/", + "id": 6003, + "name": "Heroes for Hire", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire/4050-6003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6004/", + "id": 6004, + "name": "Heroes Reborn: The Return", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return/4050-6004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6006/", + "id": 6006, + "name": "Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar/4050-6006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6009/", + "id": 6009, + "name": "Kitty Pryde, Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/kitty-pryde-agent-of-shield/4050-6009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6011/", + "id": 6011, + "name": "Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up/4050-6011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6012/", + "id": 6012, + "name": "New Mutants: Truth or Death", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-truth-or-death/4050-6012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6013/", + "id": 6013, + "name": "Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver/4050-6013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6014/", + "id": 6014, + "name": "Spider-Man: Hobgoblin Lives", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hobgoblin-lives/4050-6014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6015/", + "id": 6015, + "name": "Star Trek: Early Voyages", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-early-voyages/4050-6015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6020/", + "id": 6020, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4050-6020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6022/", + "id": 6022, + "name": "Wolverine: Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-days-of-future-past/4050-6022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6023/", + "id": 6023, + "name": "X-Men: Lost Tales", + "site_detail_url": "https://comicvine.gamespot.com/x-men-lost-tales/4050-6023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6041/", + "id": 6041, + "name": "Unlimited Access", + "site_detail_url": "https://comicvine.gamespot.com/unlimited-access/4050-6041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6205/", + "id": 6205, + "name": "A-Next", + "site_detail_url": "https://comicvine.gamespot.com/a-next/4050-6205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6206/", + "id": 6206, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-6206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6208/", + "id": 6208, + "name": "Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/conspiracy/4050-6208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6209/", + "id": 6209, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-6209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6211/", + "id": 6211, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-6211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6214/", + "id": 6214, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-6214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6215/", + "id": 6215, + "name": "Iron Man: The Iron Age", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-iron-age/4050-6215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6216/", + "id": 6216, + "name": "J2", + "site_detail_url": "https://comicvine.gamespot.com/j2/4050-6216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6217/", + "id": 6217, + "name": "Mutant X", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x/4050-6217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6218/", + "id": 6218, + "name": "Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl/4050-6218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6219/", + "id": 6219, + "name": "Spider-Man: Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one/4050-6219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6221/", + "id": 6221, + "name": "Star Trek: Untold Voyages", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-untold-voyages/4050-6221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6222/", + "id": 6222, + "name": "Star Trek: Voyager - Splashdown", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-voyager-splashdown/4050-6222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6224/", + "id": 6224, + "name": "Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales/4050-6224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6226/", + "id": 6226, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-6226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6230/", + "id": 6230, + "name": "Dark Tower: Fall of Gilead", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-fall-of-gilead/4050-6230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6351/", + "id": 6351, + "name": "Avengers United They Stand", + "site_detail_url": "https://comicvine.gamespot.com/avengers-united-they-stand/4050-6351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6352/", + "id": 6352, + "name": "Bishop: The Last X-Man", + "site_detail_url": "https://comicvine.gamespot.com/bishop-the-last-x-man/4050-6352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6353/", + "id": 6353, + "name": "Contest of Champions II", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-ii/4050-6353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6354/", + "id": 6354, + "name": "Earth X", + "site_detail_url": "https://comicvine.gamespot.com/earth-x/4050-6354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6355/", + "id": 6355, + "name": "Fantastic Five", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-five/4050-6355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6360/", + "id": 6360, + "name": "Wild Thing", + "site_detail_url": "https://comicvine.gamespot.com/wild-thing/4050-6360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6361/", + "id": 6361, + "name": "X-Men: True Friends", + "site_detail_url": "https://comicvine.gamespot.com/x-men-true-friends/4050-6361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6456/", + "id": 6456, + "name": "Blaze of Glory", + "site_detail_url": "https://comicvine.gamespot.com/blaze-of-glory/4050-6456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6457/", + "id": 6457, + "name": "The Buzz", + "site_detail_url": "https://comicvine.gamespot.com/the-buzz/4050-6457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6458/", + "id": 6458, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-6458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6496/", + "id": 6496, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-6496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6504/", + "id": 6504, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-6504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6505/", + "id": 6505, + "name": "Monsters on the Prowl", + "site_detail_url": "https://comicvine.gamespot.com/monsters-on-the-prowl/4050-6505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6558/", + "id": 6558, + "name": "Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk/4050-6558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6645/", + "id": 6645, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4050-6645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6670/", + "id": 6670, + "name": "The Original Ghost Rider Rides Again", + "site_detail_url": "https://comicvine.gamespot.com/the-original-ghost-rider-rides-again/4050-6670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6684/", + "id": 6684, + "name": "X-Men Adventures", + "site_detail_url": "https://comicvine.gamespot.com/x-men-adventures/4050-6684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6685/", + "id": 6685, + "name": "X-Men Classic", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classic/4050-6685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6700/", + "id": 6700, + "name": "Darkdevil", + "site_detail_url": "https://comicvine.gamespot.com/darkdevil/4050-6700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6724/", + "id": 6724, + "name": "Sgt. Fury", + "site_detail_url": "https://comicvine.gamespot.com/sgt-fury/4050-6724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6730/", + "id": 6730, + "name": "Avengers Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-infinity/4050-6730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6742/", + "id": 6742, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-6742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6745/", + "id": 6745, + "name": "Iron Man: Bad Blood", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-bad-blood/4050-6745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6748/", + "id": 6748, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4050-6748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6778/", + "id": 6778, + "name": "Hellcat", + "site_detail_url": "https://comicvine.gamespot.com/hellcat/4050-6778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6779/", + "id": 6779, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4050-6779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6781/", + "id": 6781, + "name": "Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/inhumans/4050-6781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6784/", + "id": 6784, + "name": "Marvel: The Lost Generation", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-lost-generation/4050-6784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6787/", + "id": 6787, + "name": "The New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors/4050-6787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6823/", + "id": 6823, + "name": "Big Town", + "site_detail_url": "https://comicvine.gamespot.com/big-town/4050-6823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6849/", + "id": 6849, + "name": "Fantastic Four Unplugged", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-unplugged/4050-6849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6938/", + "id": 6938, + "name": "Marvel Classics Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-classics-comics/4050-6938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6983/", + "id": 6983, + "name": "Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles/4050-6983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6985/", + "id": 6985, + "name": "Blink", + "site_detail_url": "https://comicvine.gamespot.com/blink/4050-6985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7084/", + "id": 7084, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-7084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7168/", + "id": 7168, + "name": "Journey into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery/4050-7168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7182/", + "id": 7182, + "name": "Wolverine/Gambit: Victims", + "site_detail_url": "https://comicvine.gamespot.com/wolverinegambit-victims/4050-7182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7183/", + "id": 7183, + "name": "Wolverine and the Punisher: Damaging Evidence", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-punisher-damaging-evidence/4050-7183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7190/", + "id": 7190, + "name": "The Further Adventures of Cyclops and Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/the-further-adventures-of-cyclops-and-phoenix/4050-7190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7191/", + "id": 7191, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4050-7191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7192/", + "id": 7192, + "name": "Starjammers", + "site_detail_url": "https://comicvine.gamespot.com/starjammers/4050-7192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7193/", + "id": 7193, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4050-7193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7196/", + "id": 7196, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4050-7196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7197/", + "id": 7197, + "name": "Uncanny Origins", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-origins/4050-7197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7198/", + "id": 7198, + "name": "X-Men: The Search For Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-search-for-cyclops/4050-7198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7232/", + "id": 7232, + "name": "Fantastic Four: Atlantis Rising", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-atlantis-rising/4050-7232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7253/", + "id": 7253, + "name": "Rampaging Hulk", + "site_detail_url": "https://comicvine.gamespot.com/rampaging-hulk/4050-7253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7255/", + "id": 7255, + "name": "Spider-Man's Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-tangled-web/4050-7255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7257/", + "id": 7257, + "name": "Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man/4050-7257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7258/", + "id": 7258, + "name": "Ultimate X-Men", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men/4050-7258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7259/", + "id": 7259, + "name": "U.S.Agent", + "site_detail_url": "https://comicvine.gamespot.com/usagent/4050-7259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7261/", + "id": 7261, + "name": "Avengers Two: Wonder Man and Beast", + "site_detail_url": "https://comicvine.gamespot.com/avengers-two-wonder-man-and-beast/4050-7261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7275/", + "id": 7275, + "name": "Shadows and Light", + "site_detail_url": "https://comicvine.gamespot.com/shadows-and-light/4050-7275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7282/", + "id": 7282, + "name": "Code of Honor", + "site_detail_url": "https://comicvine.gamespot.com/code-of-honor/4050-7282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7351/", + "id": 7351, + "name": "Immortal Weapons", + "site_detail_url": "https://comicvine.gamespot.com/immortal-weapons/4050-7351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7515/", + "id": 7515, + "name": "Ultimate Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up/4050-7515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7656/", + "id": 7656, + "name": "Trojan War", + "site_detail_url": "https://comicvine.gamespot.com/trojan-war/4050-7656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7658/", + "id": 7658, + "name": "Dark Tower: The Sorcerer", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-sorcerer/4050-7658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7734/", + "id": 7734, + "name": "Human Torch Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-comics-70th-anniversary-special/4050-7734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7847/", + "id": 7847, + "name": "Patsy and Hedy Annual", + "site_detail_url": "https://comicvine.gamespot.com/patsy-and-hedy-annual/4050-7847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-8077/", + "id": 8077, + "name": "X-Men: The Manga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-manga/4050-8077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-8496/", + "id": 8496, + "name": "Life With Millie", + "site_detail_url": "https://comicvine.gamespot.com/life-with-millie/4050-8496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-8510/", + "id": 8510, + "name": "Millie the Model Annual", + "site_detail_url": "https://comicvine.gamespot.com/millie-the-model-annual/4050-8510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-8517/", + "id": 8517, + "name": "Patsy and Hedy", + "site_detail_url": "https://comicvine.gamespot.com/patsy-and-hedy/4050-8517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9065/", + "id": 9065, + "name": "Fantastic Four: Fireworks", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-fireworks/4050-9065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9076/", + "id": 9076, + "name": "Avataars: Covenant of the Shield", + "site_detail_url": "https://comicvine.gamespot.com/avataars-covenant-of-the-shield/4050-9076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9080/", + "id": 9080, + "name": "Venom: Funeral Pyre", + "site_detail_url": "https://comicvine.gamespot.com/venom-funeral-pyre/4050-9080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9082/", + "id": 9082, + "name": "Spider-Man: Friends and Enemies", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies/4050-9082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9084/", + "id": 9084, + "name": "The Prowler", + "site_detail_url": "https://comicvine.gamespot.com/the-prowler/4050-9084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9096/", + "id": 9096, + "name": "Mad-Dog", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog/4050-9096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9097/", + "id": 9097, + "name": "Midnight Sons Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/midnight-sons-unlimited/4050-9097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9100/", + "id": 9100, + "name": "Hellstorm: Prince of Lies", + "site_detail_url": "https://comicvine.gamespot.com/hellstorm-prince-of-lies/4050-9100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9101/", + "id": 9101, + "name": "Excalibur Annual", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-annual/4050-9101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9109/", + "id": 9109, + "name": "Fury/Agent 13", + "site_detail_url": "https://comicvine.gamespot.com/furyagent-13/4050-9109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9110/", + "id": 9110, + "name": "Galactus the Devourer", + "site_detail_url": "https://comicvine.gamespot.com/galactus-the-devourer/4050-9110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9111/", + "id": 9111, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-9111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9115/", + "id": 9115, + "name": "Iron Fist: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-wolverine/4050-9115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9121/", + "id": 9121, + "name": "New X-Men", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men/4050-9121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9122/", + "id": 9122, + "name": "Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/red-sonja/4050-9122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9142/", + "id": 9142, + "name": "Peter Parker: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man/4050-9142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9144/", + "id": 9144, + "name": "Thor: Godstorm", + "site_detail_url": "https://comicvine.gamespot.com/thor-godstorm/4050-9144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9149/", + "id": 9149, + "name": "Universe X", + "site_detail_url": "https://comicvine.gamespot.com/universe-x/4050-9149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9165/", + "id": 9165, + "name": "Marvel Action Hour: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-hour-fantastic-four/4050-9165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9169/", + "id": 9169, + "name": "The Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/the-brotherhood/4050-9169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9185/", + "id": 9185, + "name": "Essential Hulk", + "site_detail_url": "https://comicvine.gamespot.com/essential-hulk/4050-9185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9191/", + "id": 9191, + "name": "X-Men/Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/x-menalpha-flight/4050-9191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9197/", + "id": 9197, + "name": "X-Men Forever", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever/4050-9197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9199/", + "id": 9199, + "name": "X-Men: Liberators", + "site_detail_url": "https://comicvine.gamespot.com/x-men-liberators/4050-9199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9200/", + "id": 9200, + "name": "X-Men: Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix/4050-9200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9202/", + "id": 9202, + "name": "X-Men: The Hidden Years", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-hidden-years/4050-9202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9204/", + "id": 9204, + "name": "X-Men: The Ultra Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-ultra-collection/4050-9204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9243/", + "id": 9243, + "name": "Avengers: Celestial Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-celestial-quest/4050-9243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9375/", + "id": 9375, + "name": "Webspinners: Tales of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/webspinners-tales-of-spider-man/4050-9375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9378/", + "id": 9378, + "name": "Avengers Icons: Tigra", + "site_detail_url": "https://comicvine.gamespot.com/avengers-icons-tigra/4050-9378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9408/", + "id": 9408, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4050-9408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9411/", + "id": 9411, + "name": "X-Treme X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men/4050-9411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9432/", + "id": 9432, + "name": "Namor, The Sub-Mariner Annual", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-sub-mariner-annual/4050-9432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9454/", + "id": 9454, + "name": "Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/bloodstone/4050-9454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9455/", + "id": 9455, + "name": "Call of Duty: The Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/call-of-duty-the-brotherhood/4050-9455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9456/", + "id": 9456, + "name": "The Call of Duty: The Precinct", + "site_detail_url": "https://comicvine.gamespot.com/the-call-of-duty-the-precinct/4050-9456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9457/", + "id": 9457, + "name": "Call of Duty: The Wagon", + "site_detail_url": "https://comicvine.gamespot.com/call-of-duty-the-wagon/4050-9457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9458/", + "id": 9458, + "name": "Captain America: Dead Men Running", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-dead-men-running/4050-9458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9459/", + "id": 9459, + "name": "Chamber", + "site_detail_url": "https://comicvine.gamespot.com/chamber/4050-9459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9460/", + "id": 9460, + "name": "Conan: Lord of the Spiders", + "site_detail_url": "https://comicvine.gamespot.com/conan-lord-of-the-spiders/4050-9460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9461/", + "id": 9461, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4050-9461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9462/", + "id": 9462, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-9462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9465/", + "id": 9465, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4050-9465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9467/", + "id": 9467, + "name": "Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler/4050-9467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9469/", + "id": 9469, + "name": "Spider-Man/Black Cat: The Evil that Men Do", + "site_detail_url": "https://comicvine.gamespot.com/spider-manblack-cat-the-evil-that-men-do/4050-9469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9470/", + "id": 9470, + "name": "Spider-Man: Quality of Life", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life/4050-9470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9471/", + "id": 9471, + "name": "Startling Stories: Banner", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-banner/4050-9471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9473/", + "id": 9473, + "name": "Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster/4050-9473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9474/", + "id": 9474, + "name": "Thing: Freakshow", + "site_detail_url": "https://comicvine.gamespot.com/thing-freakshow/4050-9474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9477/", + "id": 9477, + "name": "Avengers Icons: The Vision", + "site_detail_url": "https://comicvine.gamespot.com/avengers-icons-the-vision/4050-9477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9478/", + "id": 9478, + "name": "X-Statix", + "site_detail_url": "https://comicvine.gamespot.com/x-statix/4050-9478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9496/", + "id": 9496, + "name": "The Order", + "site_detail_url": "https://comicvine.gamespot.com/the-order/4050-9496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9504/", + "id": 9504, + "name": "Infinity Abyss", + "site_detail_url": "https://comicvine.gamespot.com/infinity-abyss/4050-9504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9520/", + "id": 9520, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4050-9520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9521/", + "id": 9521, + "name": "Venom: Along Came A Spider", + "site_detail_url": "https://comicvine.gamespot.com/venom-along-came-a-spider/4050-9521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9522/", + "id": 9522, + "name": "Venom: Carnage Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/venom-carnage-unleashed/4050-9522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9523/", + "id": 9523, + "name": "Venom: Separation Anxiety", + "site_detail_url": "https://comicvine.gamespot.com/venom-separation-anxiety/4050-9523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9524/", + "id": 9524, + "name": "Venom: Sinner Takes All", + "site_detail_url": "https://comicvine.gamespot.com/venom-sinner-takes-all/4050-9524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9525/", + "id": 9525, + "name": "Venom: The Hunger", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-hunger/4050-9525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9526/", + "id": 9526, + "name": "Venom: The Hunted", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-hunted/4050-9526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9539/", + "id": 9539, + "name": "The Amazing Scarlet Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-scarlet-spider/4050-9539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9541/", + "id": 9541, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4050-9541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9546/", + "id": 9546, + "name": "Marvel Mangaverse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse/4050-9546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9547/", + "id": 9547, + "name": "Paradise X", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x/4050-9547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9573/", + "id": 9573, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-9573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9624/", + "id": 9624, + "name": "Daredevil Visionaries: Frank Miller", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-visionaries-frank-miller/4050-9624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9959/", + "id": 9959, + "name": "Soldier X", + "site_detail_url": "https://comicvine.gamespot.com/soldier-x/4050-9959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10379/", + "id": 10379, + "name": "Ultimate Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four/4050-10379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10730/", + "id": 10730, + "name": "Avengers: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/avengers-director-s-cut/4050-10730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10731/", + "id": 10731, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-10731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10745/", + "id": 10745, + "name": "X-Men Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited/4050-10745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10746/", + "id": 10746, + "name": "Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men/4050-10746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10748/", + "id": 10748, + "name": "X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-annual/4050-10748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10757/", + "id": 10757, + "name": "The Uncanny X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-annual/4050-10757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10760/", + "id": 10760, + "name": "Spider-Man Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited/4050-10760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10761/", + "id": 10761, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4050-10761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10809/", + "id": 10809, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-10809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10811/", + "id": 10811, + "name": "Wolverine: The End", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-end/4050-10811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10812/", + "id": 10812, + "name": "Wolverine/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/wolverinecaptain-america/4050-10812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10818/", + "id": 10818, + "name": "Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight/4050-10818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10865/", + "id": 10865, + "name": "Marvel Age Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-fantastic-four/4050-10865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10904/", + "id": 10904, + "name": "Domino", + "site_detail_url": "https://comicvine.gamespot.com/domino/4050-10904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10906/", + "id": 10906, + "name": "Gambit & Bishop", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop/4050-10906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10925/", + "id": 10925, + "name": "Agent X", + "site_detail_url": "https://comicvine.gamespot.com/agent-x/4050-10925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10941/", + "id": 10941, + "name": "JLA/Avengers", + "site_detail_url": "https://comicvine.gamespot.com/jlaavengers/4050-10941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10948/", + "id": 10948, + "name": "Before the Fantastic Four: Ben Grimm and Logan", + "site_detail_url": "https://comicvine.gamespot.com/before-the-fantastic-four-ben-grimm-and-logan/4050-10948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10973/", + "id": 10973, + "name": "Captain America & the Falcon", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-falcon/4050-10973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10989/", + "id": 10989, + "name": "Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/kingpin/4050-10989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11006/", + "id": 11006, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4050-11006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11015/", + "id": 11015, + "name": "Avengers Forever", + "site_detail_url": "https://comicvine.gamespot.com/avengers-forever/4050-11015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11019/", + "id": 11019, + "name": "Before the Fantastic Four: The Storms", + "site_detail_url": "https://comicvine.gamespot.com/before-the-fantastic-four-the-storms/4050-11019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11023/", + "id": 11023, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4050-11023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11033/", + "id": 11033, + "name": "Venom: Tooth and Claw", + "site_detail_url": "https://comicvine.gamespot.com/venom-tooth-and-claw/4050-11033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11058/", + "id": 11058, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4050-11058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11067/", + "id": 11067, + "name": "The Adventures of the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-the-x-men/4050-11067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11068/", + "id": 11068, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4050-11068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11069/", + "id": 11069, + "name": "Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man/4050-11069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11090/", + "id": 11090, + "name": "Fantastic Four: Foes", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-foes/4050-11090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11114/", + "id": 11114, + "name": "Before the Fantastic Four: Reed Richards", + "site_detail_url": "https://comicvine.gamespot.com/before-the-fantastic-four-reed-richards/4050-11114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11136/", + "id": 11136, + "name": "Web of Scarlet Spider", + "site_detail_url": "https://comicvine.gamespot.com/web-of-scarlet-spider/4050-11136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11139/", + "id": 11139, + "name": "Union Jack", + "site_detail_url": "https://comicvine.gamespot.com/union-jack/4050-11139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11173/", + "id": 11173, + "name": "Sabretooth: Mary Shelley Overdrive", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-mary-shelley-overdrive/4050-11173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11175/", + "id": 11175, + "name": "Star Masters", + "site_detail_url": "https://comicvine.gamespot.com/star-masters/4050-11175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11182/", + "id": 11182, + "name": "Over the Edge", + "site_detail_url": "https://comicvine.gamespot.com/over-the-edge/4050-11182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11191/", + "id": 11191, + "name": "Untold Legend of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/untold-legend-of-captain-marvel/4050-11191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11200/", + "id": 11200, + "name": "Bishop: XSE", + "site_detail_url": "https://comicvine.gamespot.com/bishop-xse/4050-11200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11291/", + "id": 11291, + "name": "Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight/4050-11291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11292/", + "id": 11292, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4050-11292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11293/", + "id": 11293, + "name": "Identity Disc", + "site_detail_url": "https://comicvine.gamespot.com/identity-disc/4050-11293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11294/", + "id": 11294, + "name": "Wolverine: Xisle", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-xisle/4050-11294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11298/", + "id": 11298, + "name": "New Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts/4050-11298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11304/", + "id": 11304, + "name": "Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane/4050-11304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11305/", + "id": 11305, + "name": "Slingers", + "site_detail_url": "https://comicvine.gamespot.com/slingers/4050-11305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11306/", + "id": 11306, + "name": "Spider-Man Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unlimited/4050-11306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11308/", + "id": 11308, + "name": "Starjammers", + "site_detail_url": "https://comicvine.gamespot.com/starjammers/4050-11308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11309/", + "id": 11309, + "name": "The New Invaders", + "site_detail_url": "https://comicvine.gamespot.com/the-new-invaders/4050-11309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11310/", + "id": 11310, + "name": "The Pulse", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse/4050-11310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11353/", + "id": 11353, + "name": "X-Men: Phoenix - Endsong", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-endsong/4050-11353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11364/", + "id": 11364, + "name": "Powerless", + "site_detail_url": "https://comicvine.gamespot.com/powerless/4050-11364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11365/", + "id": 11365, + "name": "Abominations", + "site_detail_url": "https://comicvine.gamespot.com/abominations/4050-11365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11379/", + "id": 11379, + "name": "Hulk/Wolverine: 6 Hours", + "site_detail_url": "https://comicvine.gamespot.com/hulkwolverine-6-hours/4050-11379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11380/", + "id": 11380, + "name": "Nightside", + "site_detail_url": "https://comicvine.gamespot.com/nightside/4050-11380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11388/", + "id": 11388, + "name": "Domination Factor: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/domination-factor-avengers/4050-11388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11389/", + "id": 11389, + "name": "Domination Factor: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/domination-factor-fantastic-four/4050-11389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11390/", + "id": 11390, + "name": "Doc Samson", + "site_detail_url": "https://comicvine.gamespot.com/doc-samson/4050-11390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11391/", + "id": 11391, + "name": "Mystique", + "site_detail_url": "https://comicvine.gamespot.com/mystique/4050-11391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11450/", + "id": 11450, + "name": "Marvel Super Action", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-action/4050-11450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11486/", + "id": 11486, + "name": "Avengers/Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/avengersthunderbolts/4050-11486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11495/", + "id": 11495, + "name": "Psi-Force", + "site_detail_url": "https://comicvine.gamespot.com/psi-force/4050-11495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11497/", + "id": 11497, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4050-11497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11499/", + "id": 11499, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-11499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11501/", + "id": 11501, + "name": "X-Men: Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-apocalypse/4050-11501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11502/", + "id": 11502, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-11502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11667/", + "id": 11667, + "name": "X-Men: Magik", + "site_detail_url": "https://comicvine.gamespot.com/x-men-magik/4050-11667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11734/", + "id": 11734, + "name": "Marvel Special Edition Featuring Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/marvel-special-edition-featuring-star-wars/4050-11734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11799/", + "id": 11799, + "name": "G.L.A.", + "site_detail_url": "https://comicvine.gamespot.com/gla/4050-11799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11800/", + "id": 11800, + "name": "Spider-Man/Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhuman-torch/4050-11800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11801/", + "id": 11801, + "name": "Deadline", + "site_detail_url": "https://comicvine.gamespot.com/deadline/4050-11801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11868/", + "id": 11868, + "name": "X-51", + "site_detail_url": "https://comicvine.gamespot.com/x-51/4050-11868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11870/", + "id": 11870, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-11870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11872/", + "id": 11872, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-11872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11874/", + "id": 11874, + "name": "The New Warriors Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-annual/4050-11874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11879/", + "id": 11879, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-11879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11880/", + "id": 11880, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-11880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11892/", + "id": 11892, + "name": "Fantastic Four: House of M", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-house-of-m/4050-11892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11946/", + "id": 11946, + "name": "The Crew", + "site_detail_url": "https://comicvine.gamespot.com/the-crew/4050-11946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-12002/", + "id": 12002, + "name": "Elektra: The Hand", + "site_detail_url": "https://comicvine.gamespot.com/elektra-the-hand/4050-12002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-12008/", + "id": 12008, + "name": "Street Poet Ray", + "site_detail_url": "https://comicvine.gamespot.com/street-poet-ray/4050-12008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-12049/", + "id": 12049, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m/4050-12049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17987/", + "id": 17987, + "name": "NYX", + "site_detail_url": "https://comicvine.gamespot.com/nyx/4050-17987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17988/", + "id": 17988, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-17988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17989/", + "id": 17989, + "name": "Wolverine: Snikt!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-snikt/4050-17989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17990/", + "id": 17990, + "name": "Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel/4050-17990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17991/", + "id": 17991, + "name": "Civil War: Young Avengers & Runaways", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-runaways/4050-17991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17998/", + "id": 17998, + "name": "Friendly Neighborhood Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man/4050-17998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18008/", + "id": 18008, + "name": "Exiles Annual", + "site_detail_url": "https://comicvine.gamespot.com/exiles-annual/4050-18008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18014/", + "id": 18014, + "name": "Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost/4050-18014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18016/", + "id": 18016, + "name": "New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors/4050-18016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18017/", + "id": 18017, + "name": "Annihilation: Nova", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-nova/4050-18017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18018/", + "id": 18018, + "name": "Annihilation: Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-super-skrull/4050-18018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18019/", + "id": 18019, + "name": "New Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/new-excalibur/4050-18019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18020/", + "id": 18020, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4050-18020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18021/", + "id": 18021, + "name": "Runaways Saga", + "site_detail_url": "https://comicvine.gamespot.com/runaways-saga/4050-18021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18023/", + "id": 18023, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war/4050-18023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18024/", + "id": 18024, + "name": "Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up/4050-18024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18027/", + "id": 18027, + "name": "Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men/4050-18027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18036/", + "id": 18036, + "name": "Silver Surfer/Superman", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfersuperman/4050-18036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18037/", + "id": 18037, + "name": "X-Men Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/x-men-chronicles/4050-18037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18045/", + "id": 18045, + "name": "Ultimate Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-nightmare/4050-18045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18046/", + "id": 18046, + "name": "Ultimate Secret", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-secret/4050-18046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18050/", + "id": 18050, + "name": "X-Man '96", + "site_detail_url": "https://comicvine.gamespot.com/x-man-96/4050-18050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18051/", + "id": 18051, + "name": "X-Men Alpha", + "site_detail_url": "https://comicvine.gamespot.com/x-men-alpha/4050-18051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18054/", + "id": 18054, + "name": "Tales from the Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/tales-from-the-age-of-apocalypse/4050-18054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18055/", + "id": 18055, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-18055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18056/", + "id": 18056, + "name": "X-Men/Runaways", + "site_detail_url": "https://comicvine.gamespot.com/x-menrunaways/4050-18056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18060/", + "id": 18060, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-18060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18065/", + "id": 18065, + "name": "Age of Apocalypse: The Chosen", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse-the-chosen/4050-18065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18066/", + "id": 18066, + "name": "Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales/4050-18066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18067/", + "id": 18067, + "name": "Ultimate Extinction", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-extinction/4050-18067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18070/", + "id": 18070, + "name": "Cable & Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool/4050-18070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18073/", + "id": 18073, + "name": "X-Men 2099", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2099/4050-18073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18075/", + "id": 18075, + "name": "Ororo: Before the Storm", + "site_detail_url": "https://comicvine.gamespot.com/ororo-before-the-storm/4050-18075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18076/", + "id": 18076, + "name": "Machine Teen", + "site_detail_url": "https://comicvine.gamespot.com/machine-teen/4050-18076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18078/", + "id": 18078, + "name": "New X-Men", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men/4050-18078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18079/", + "id": 18079, + "name": "Venom vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/venom-vs-carnage/4050-18079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18085/", + "id": 18085, + "name": "Guardians", + "site_detail_url": "https://comicvine.gamespot.com/guardians/4050-18085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18087/", + "id": 18087, + "name": "Toxin", + "site_detail_url": "https://comicvine.gamespot.com/toxin/4050-18087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18091/", + "id": 18091, + "name": "X-Men: Deadly Genesis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deadly-genesis/4050-18091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18093/", + "id": 18093, + "name": "X-Men Omega", + "site_detail_url": "https://comicvine.gamespot.com/x-men-omega/4050-18093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18094/", + "id": 18094, + "name": "Marvel Adventures: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man/4050-18094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18095/", + "id": 18095, + "name": "Marvel Adventures: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four/4050-18095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18096/", + "id": 18096, + "name": "Doctor Strange: The Oath", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-oath/4050-18096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18100/", + "id": 18100, + "name": "Marvel Adventures: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers/4050-18100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18102/", + "id": 18102, + "name": "Heroes for Hire", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire/4050-18102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18104/", + "id": 18104, + "name": "Spider-Man Loves Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane/4050-18104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18105/", + "id": 18105, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-18105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18106/", + "id": 18106, + "name": "Civil War: The Return", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-return/4050-18106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18107/", + "id": 18107, + "name": "Silent War", + "site_detail_url": "https://comicvine.gamespot.com/silent-war/4050-18107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18108/", + "id": 18108, + "name": "Avengers Next", + "site_detail_url": "https://comicvine.gamespot.com/avengers-next/4050-18108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18109/", + "id": 18109, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor/4050-18109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18110/", + "id": 18110, + "name": "Araña: Heart of the Spider", + "site_detail_url": "https://comicvine.gamespot.com/arana-heart-of-the-spider/4050-18110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18113/", + "id": 18113, + "name": "New Avengers: Illuminati", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-illuminati/4050-18113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18117/", + "id": 18117, + "name": "Blade", + "site_detail_url": "https://comicvine.gamespot.com/blade/4050-18117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18119/", + "id": 18119, + "name": "Anita Blake, Vampire Hunter: Guilty Pleasures", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-guilty-pleasures/4050-18119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18125/", + "id": 18125, + "name": "Winter Soldier: Winter Kills", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-winter-kills/4050-18125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18126/", + "id": 18126, + "name": "All-New Official Handbook of the Marvel Universe A to Z", + "site_detail_url": "https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4050-18126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18128/", + "id": 18128, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4050-18128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18129/", + "id": 18129, + "name": "X-Men: The 198", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-198/4050-18129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18130/", + "id": 18130, + "name": "Wolverine: Origins", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins/4050-18130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18131/", + "id": 18131, + "name": "Mekanix", + "site_detail_url": "https://comicvine.gamespot.com/mekanix/4050-18131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18132/", + "id": 18132, + "name": "Decimation: House of M - The Day After", + "site_detail_url": "https://comicvine.gamespot.com/decimation-house-of-m-the-day-after/4050-18132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18133/", + "id": 18133, + "name": "Nextwave: Agents of H.A.T.E.", + "site_detail_url": "https://comicvine.gamespot.com/nextwave-agents-of-hate/4050-18133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18134/", + "id": 18134, + "name": "Union Jack", + "site_detail_url": "https://comicvine.gamespot.com/union-jack/4050-18134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18136/", + "id": 18136, + "name": "X-Men: The 198 Files", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-198-files/4050-18136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18137/", + "id": 18137, + "name": "Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/annihilation/4050-18137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18138/", + "id": 18138, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-18138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18141/", + "id": 18141, + "name": "Ultimate Civil War: Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-civil-war-spider-ham/4050-18141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18145/", + "id": 18145, + "name": "Generation M", + "site_detail_url": "https://comicvine.gamespot.com/generation-m/4050-18145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18147/", + "id": 18147, + "name": "New X-Men: Academy X Yearbook", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-yearbook/4050-18147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18148/", + "id": 18148, + "name": "Archangel", + "site_detail_url": "https://comicvine.gamespot.com/archangel/4050-18148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18149/", + "id": 18149, + "name": "Stryfe's Strike File", + "site_detail_url": "https://comicvine.gamespot.com/stryfes-strike-file/4050-18149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18150/", + "id": 18150, + "name": "Maverick", + "site_detail_url": "https://comicvine.gamespot.com/maverick/4050-18150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18151/", + "id": 18151, + "name": "Askani'Son", + "site_detail_url": "https://comicvine.gamespot.com/askanison/4050-18151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18152/", + "id": 18152, + "name": "Punisher War Journal", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal/4050-18152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18153/", + "id": 18153, + "name": "X-Men: Books of Askani", + "site_detail_url": "https://comicvine.gamespot.com/x-men-books-of-askani/4050-18153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18154/", + "id": 18154, + "name": "X-Men: Prime", + "site_detail_url": "https://comicvine.gamespot.com/x-men-prime/4050-18154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18155/", + "id": 18155, + "name": "White Tiger", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger/4050-18155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18157/", + "id": 18157, + "name": "Black Knight: Exodus", + "site_detail_url": "https://comicvine.gamespot.com/black-knight-exodus/4050-18157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18158/", + "id": 18158, + "name": "Ms. Marvel Special", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-special/4050-18158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18159/", + "id": 18159, + "name": "Annihilation: The Nova Corps Files", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-the-nova-corps-files/4050-18159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18160/", + "id": 18160, + "name": "Son of M", + "site_detail_url": "https://comicvine.gamespot.com/son-of-m/4050-18160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18161/", + "id": 18161, + "name": "Dark Tower: The Gunslinger Born", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-born/4050-18161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18169/", + "id": 18169, + "name": "X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-annual/4050-18169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18171/", + "id": 18171, + "name": "X-23: Target X", + "site_detail_url": "https://comicvine.gamespot.com/x-23-target-x/4050-18171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18172/", + "id": 18172, + "name": "Imperial Guard", + "site_detail_url": "https://comicvine.gamespot.com/imperial-guard/4050-18172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18173/", + "id": 18173, + "name": "New X-Men: Hellions", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-hellions/4050-18173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18174/", + "id": 18174, + "name": "GLX-Mas Special", + "site_detail_url": "https://comicvine.gamespot.com/glx-mas-special/4050-18174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18175/", + "id": 18175, + "name": "Fantastic Four: The End", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end/4050-18175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18176/", + "id": 18176, + "name": "X-23", + "site_detail_url": "https://comicvine.gamespot.com/x-23/4050-18176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18177/", + "id": 18177, + "name": "The Sensational Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man/4050-18177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18179/", + "id": 18179, + "name": "Official Handbook of the Marvel Universe: X-Men 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-200/4050-18179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18180/", + "id": 18180, + "name": "The New Avengers: Illuminati", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-illuminati/4050-18180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18182/", + "id": 18182, + "name": "Thunderbolts Presents: Zemo: Born Better", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-presents-zemo-born-better/4050-18182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18193/", + "id": 18193, + "name": "Wolverine: Netsuke", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-netsuke/4050-18193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18195/", + "id": 18195, + "name": "The Amazing Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-girl/4050-18195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18198/", + "id": 18198, + "name": "New Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual/4050-18198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18203/", + "id": 18203, + "name": "Eternals", + "site_detail_url": "https://comicvine.gamespot.com/eternals/4050-18203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18206/", + "id": 18206, + "name": "The Immortal Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist/4050-18206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18211/", + "id": 18211, + "name": "The New Avengers: Most Wanted Files", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-most-wanted-files/4050-18211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18215/", + "id": 18215, + "name": "Annihilation: Heralds of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-heralds-of-galactus/4050-18215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18220/", + "id": 18220, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-18220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18221/", + "id": 18221, + "name": "Beyond!", + "site_detail_url": "https://comicvine.gamespot.com/beyond/4050-18221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18222/", + "id": 18222, + "name": "Giant-Size Hulk", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-hulk/4050-18222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18223/", + "id": 18223, + "name": "Ultimate Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-annual/4050-18223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18224/", + "id": 18224, + "name": "All-New Official Handbook of the Marvel Universe A to Z: Update", + "site_detail_url": "https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4050-18224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18227/", + "id": 18227, + "name": "The Irredeemable Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-irredeemable-ant-man/4050-18227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18232/", + "id": 18232, + "name": "Onslaught Reborn", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-reborn/4050-18232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18234/", + "id": 18234, + "name": "Secret War", + "site_detail_url": "https://comicvine.gamespot.com/secret-war/4050-18234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18235/", + "id": 18235, + "name": "Civil War: The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-initiative/4050-18235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18236/", + "id": 18236, + "name": "Marvel Zombies/Army of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-army-of-darkness/4050-18236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18239/", + "id": 18239, + "name": "The Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers/4050-18239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18242/", + "id": 18242, + "name": "The Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-thing/4050-18242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18245/", + "id": 18245, + "name": "Civil War: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line/4050-18245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18254/", + "id": 18254, + "name": "Ultimate Fantastic Four Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-annual/4050-18254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18258/", + "id": 18258, + "name": "Civil War: The Confession", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-confession/4050-18258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18259/", + "id": 18259, + "name": "Mary Jane: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming/4050-18259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18260/", + "id": 18260, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4050-18260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18261/", + "id": 18261, + "name": "Ultimates Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-annual/4050-18261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18263/", + "id": 18263, + "name": "Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut/4050-18263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18269/", + "id": 18269, + "name": "Sabretooth Special", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-special/4050-18269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18270/", + "id": 18270, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-18270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18273/", + "id": 18273, + "name": "Civil War: Choosing Sides", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-choosing-sides/4050-18273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18276/", + "id": 18276, + "name": "Thunderbolts '97", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-97/4050-18276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18278/", + "id": 18278, + "name": "Onslaught: Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-marvel-universe/4050-18278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18279/", + "id": 18279, + "name": "Onslaught: Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-epilogue/4050-18279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18280/", + "id": 18280, + "name": "Onslaught: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-x-men/4050-18280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18281/", + "id": 18281, + "name": "X-Men: The Road To Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-road-to-onslaught/4050-18281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18289/", + "id": 18289, + "name": "Iron Man: The Inevitable", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-inevitable/4050-18289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18290/", + "id": 18290, + "name": "Annihilation: Prologue", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-prologue/4050-18290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18291/", + "id": 18291, + "name": "Drax the Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/drax-the-destroyer/4050-18291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18292/", + "id": 18292, + "name": "Spider-Woman: Origin", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-origin/4050-18292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18293/", + "id": 18293, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4050-18293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18296/", + "id": 18296, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-18296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18300/", + "id": 18300, + "name": "Gravity", + "site_detail_url": "https://comicvine.gamespot.com/gravity/4050-18300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18303/", + "id": 18303, + "name": "X-Men: Apocalypse/Dracula", + "site_detail_url": "https://comicvine.gamespot.com/x-men-apocalypsedracula/4050-18303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18306/", + "id": 18306, + "name": "newuniversal", + "site_detail_url": "https://comicvine.gamespot.com/newuniversal/4050-18306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18307/", + "id": 18307, + "name": "Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme/4050-18307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18310/", + "id": 18310, + "name": "Ultimate Power", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power/4050-18310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18311/", + "id": 18311, + "name": "Logan: Path of the Warlord", + "site_detail_url": "https://comicvine.gamespot.com/logan-path-of-the-warlord/4050-18311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18312/", + "id": 18312, + "name": "X-Men Rarities", + "site_detail_url": "https://comicvine.gamespot.com/x-men-rarities/4050-18312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18316/", + "id": 18316, + "name": "X-Men vs. The Brood", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-the-brood/4050-18316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18326/", + "id": 18326, + "name": "The Ultimates 2", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-2/4050-18326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18327/", + "id": 18327, + "name": "The Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates/4050-18327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18328/", + "id": 18328, + "name": "Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher/4050-18328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18332/", + "id": 18332, + "name": "Civil War: Battle Damage Report", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-battle-damage-report/4050-18332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18344/", + "id": 18344, + "name": "Logan's Run", + "site_detail_url": "https://comicvine.gamespot.com/logans-run/4050-18344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18351/", + "id": 18351, + "name": "New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants/4050-18351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18352/", + "id": 18352, + "name": "Mystic Arcana", + "site_detail_url": "https://comicvine.gamespot.com/mystic-arcana/4050-18352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18353/", + "id": 18353, + "name": "XSE", + "site_detail_url": "https://comicvine.gamespot.com/xse/4050-18353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18354/", + "id": 18354, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099/4050-18354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18365/", + "id": 18365, + "name": "Cable / Machine Man '98", + "site_detail_url": "https://comicvine.gamespot.com/cable-machine-man-98/4050-18365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18366/", + "id": 18366, + "name": "Marvel Encyclopedia", + "site_detail_url": "https://comicvine.gamespot.com/marvel-encyclopedia/4050-18366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18377/", + "id": 18377, + "name": "Ghost Rider/Ballistic", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riderballistic/4050-18377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18378/", + "id": 18378, + "name": "Cyblade / Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/cyblade-ghost-rider/4050-18378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18380/", + "id": 18380, + "name": "The New Mutants Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-special-edition/4050-18380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18382/", + "id": 18382, + "name": "X-Men: Phoenix Warsong", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-warsong/4050-18382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18383/", + "id": 18383, + "name": "Saga of Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/saga-of-squadron-supreme/4050-18383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18384/", + "id": 18384, + "name": "Druid", + "site_detail_url": "https://comicvine.gamespot.com/druid/4050-18384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18390/", + "id": 18390, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4050-18390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18392/", + "id": 18392, + "name": "Witchblade/Elektra", + "site_detail_url": "https://comicvine.gamespot.com/witchbladeelektra/4050-18392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18394/", + "id": 18394, + "name": "Silver Surfer/Weapon Zero", + "site_detail_url": "https://comicvine.gamespot.com/silver-surferweapon-zero/4050-18394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18397/", + "id": 18397, + "name": "Marvel Legacy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy/4050-18397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18400/", + "id": 18400, + "name": "Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas/4050-18400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18405/", + "id": 18405, + "name": "Uncanny X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-annual/4050-18405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18408/", + "id": 18408, + "name": "Ultimate Wolverine vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk/4050-18408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18412/", + "id": 18412, + "name": "Ghost Rider 2099", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-2099/4050-18412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18413/", + "id": 18413, + "name": "Fantastic Four 2099", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2099/4050-18413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18414/", + "id": 18414, + "name": "The Rise of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/the-rise-of-apocalypse/4050-18414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18419/", + "id": 18419, + "name": "Avengers: The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative/4050-18419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18420/", + "id": 18420, + "name": "Fallen Son: The Death of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america/4050-18420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18425/", + "id": 18425, + "name": "Dakota North", + "site_detail_url": "https://comicvine.gamespot.com/dakota-north/4050-18425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18432/", + "id": 18432, + "name": "Spider-Man, Punisher, Sabretooth: Designer Genes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-punisher-sabretooth-designer-genes/4050-18432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18441/", + "id": 18441, + "name": "Omega Flight", + "site_detail_url": "https://comicvine.gamespot.com/omega-flight/4050-18441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18442/", + "id": 18442, + "name": "Marvel Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-special/4050-18442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18445/", + "id": 18445, + "name": "Doom 2099", + "site_detail_url": "https://comicvine.gamespot.com/doom-2099/4050-18445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18447/", + "id": 18447, + "name": "X-Men: Millennial Visions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-millennial-visions/4050-18447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18449/", + "id": 18449, + "name": "Sable & Fortune", + "site_detail_url": "https://comicvine.gamespot.com/sable-fortune/4050-18449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18450/", + "id": 18450, + "name": "Heroes for Hope Starring the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hope-starring-the-x-men/4050-18450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18453/", + "id": 18453, + "name": "Ghost Rider: Trail of Tears", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-trail-of-tears/4050-18453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18456/", + "id": 18456, + "name": "X-Men: Millennial Visions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-millennial-visions/4050-18456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18457/", + "id": 18457, + "name": "Marvel Universe: Millennial Visions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-millennial-visions/4050-18457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18458/", + "id": 18458, + "name": "X-Nation 2099", + "site_detail_url": "https://comicvine.gamespot.com/x-nation-2099/4050-18458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18459/", + "id": 18459, + "name": "Spider-Man Family", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family/4050-18459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18461/", + "id": 18461, + "name": "The Loners", + "site_detail_url": "https://comicvine.gamespot.com/the-loners/4050-18461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18462/", + "id": 18462, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-18462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18463/", + "id": 18463, + "name": "2099 Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/2099-unlimited/4050-18463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18467/", + "id": 18467, + "name": "The Punisher 2099", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-2099/4050-18467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18470/", + "id": 18470, + "name": "Ravage 2099", + "site_detail_url": "https://comicvine.gamespot.com/ravage-2099/4050-18470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18471/", + "id": 18471, + "name": "Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/green-goblin/4050-18471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18474/", + "id": 18474, + "name": "The Phoenix Resurrection Genesis", + "site_detail_url": "https://comicvine.gamespot.com/the-phoenix-resurrection-genesis/4050-18474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18475/", + "id": 18475, + "name": "The Phoenix Resurrection: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/the-phoenix-resurrection-revelations/4050-18475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18477/", + "id": 18477, + "name": "Spider-Man: Back in Black Handbook", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-back-in-black-handbook/4050-18477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18481/", + "id": 18481, + "name": "Legion of Monsters: Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters-man-thing/4050-18481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18482/", + "id": 18482, + "name": "Spider-Man and the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four/4050-18482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18494/", + "id": 18494, + "name": "Avengers West Coast", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast/4050-18494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18495/", + "id": 18495, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4050-18495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18498/", + "id": 18498, + "name": "Daughters of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-the-dragon/4050-18498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18500/", + "id": 18500, + "name": "New Mangaverse: The Rings of Fate", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate/4050-18500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18501/", + "id": 18501, + "name": "Spider-Man: Legend of the Spider-Clan", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan/4050-18501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18502/", + "id": 18502, + "name": "Claws", + "site_detail_url": "https://comicvine.gamespot.com/claws/4050-18502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18510/", + "id": 18510, + "name": "Obnoxio the Clown", + "site_detail_url": "https://comicvine.gamespot.com/obnoxio-the-clown/4050-18510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18511/", + "id": 18511, + "name": "What If? X-Men: Deadly Genesis", + "site_detail_url": "https://comicvine.gamespot.com/what-if-x-men-deadly-genesis/4050-18511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18514/", + "id": 18514, + "name": "Wolverine & Doop", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-doop/4050-18514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18526/", + "id": 18526, + "name": "Avengers 1999", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1999/4050-18526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18528/", + "id": 18528, + "name": "Civil War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men/4050-18528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18530/", + "id": 18530, + "name": "Civil War Files", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-files/4050-18530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18531/", + "id": 18531, + "name": "Doom", + "site_detail_url": "https://comicvine.gamespot.com/doom/4050-18531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18532/", + "id": 18532, + "name": "Doom: The Emperor Returns", + "site_detail_url": "https://comicvine.gamespot.com/doom-the-emperor-returns/4050-18532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18533/", + "id": 18533, + "name": "Timeslip: The Collection", + "site_detail_url": "https://comicvine.gamespot.com/timeslip-the-collection/4050-18533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18534/", + "id": 18534, + "name": "Avengers Strikefile", + "site_detail_url": "https://comicvine.gamespot.com/avengers-strikefile/4050-18534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18535/", + "id": 18535, + "name": "Nextwave: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/nextwave-directors-cut/4050-18535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18537/", + "id": 18537, + "name": "World War Hulk Prologue: World Breaker", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-prologue-world-breaker/4050-18537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18539/", + "id": 18539, + "name": "Civil War: War Crimes", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-war-crimes/4050-18539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18540/", + "id": 18540, + "name": "Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/man-thing/4050-18540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18541/", + "id": 18541, + "name": "Werewolf by Night", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night/4050-18541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18542/", + "id": 18542, + "name": "Iron Man/Captain America: Casualties of War", + "site_detail_url": "https://comicvine.gamespot.com/iron-mancaptain-america-casualties-of-war/4050-18542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18543/", + "id": 18543, + "name": "The Sensational Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-annual/4050-18543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18544/", + "id": 18544, + "name": "Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales/4050-18544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18545/", + "id": 18545, + "name": "Tales of Suspense", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-suspense/4050-18545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18547/", + "id": 18547, + "name": "Iron Man & Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-sub-mariner/4050-18547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18550/", + "id": 18550, + "name": "X-Men: First Class", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class/4050-18550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18558/", + "id": 18558, + "name": "Marvel Zombies: Dead Days", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-dead-days/4050-18558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18578/", + "id": 18578, + "name": "Tales to Astonish", + "site_detail_url": "https://comicvine.gamespot.com/tales-to-astonish/4050-18578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18580/", + "id": 18580, + "name": "The Adventures of Kool-Aid Man", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-kool-aid-man/4050-18580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18585/", + "id": 18585, + "name": "X-Men First Class Special", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-special/4050-18585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18593/", + "id": 18593, + "name": "Wolverine: Soultaker", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-soultaker/4050-18593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18594/", + "id": 18594, + "name": "Generation X '95", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-95/4050-18594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18598/", + "id": 18598, + "name": "Avengers: The Ultron Imperative", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-ultron-imperative/4050-18598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18600/", + "id": 18600, + "name": "Baby's First Deadpool Book", + "site_detail_url": "https://comicvine.gamespot.com/babys-first-deadpool-book/4050-18600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18602/", + "id": 18602, + "name": "Deadpool & Widdle Wade Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-widdle-wade-team-up/4050-18602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18603/", + "id": 18603, + "name": "Avengers: Earth's Mightiest Heroes II", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii/4050-18603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18604/", + "id": 18604, + "name": "Giant-Size Invaders", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-invaders/4050-18604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18605/", + "id": 18605, + "name": "Invaders Annual", + "site_detail_url": "https://comicvine.gamespot.com/invaders-annual/4050-18605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18606/", + "id": 18606, + "name": "Deadpool / Death '98", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-death-98/4050-18606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18619/", + "id": 18619, + "name": "Friendly Neighborhood Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-annual/4050-18619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18624/", + "id": 18624, + "name": "Marvel Riot", + "site_detail_url": "https://comicvine.gamespot.com/marvel-riot/4050-18624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18633/", + "id": 18633, + "name": "Captain Universe / The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-the-incredible-hulk/4050-18633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18634/", + "id": 18634, + "name": "Generation X Preview", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-preview/4050-18634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18635/", + "id": 18635, + "name": "Captain Universe / Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-invisible-woman/4050-18635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18636/", + "id": 18636, + "name": "Captain Universe / Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-daredevil/4050-18636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18637/", + "id": 18637, + "name": "Captain Universe / X-23", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-x-23/4050-18637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18638/", + "id": 18638, + "name": "Captain Universe / Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-silver-surfer/4050-18638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18639/", + "id": 18639, + "name": "Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/inhumans/4050-18639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18641/", + "id": 18641, + "name": "Marvel Universe: The End", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end/4050-18641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18646/", + "id": 18646, + "name": "Ghost Rider, Wolverine, Punisher: Hearts of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-wolverine-punisher-hearts-of-darkness/4050-18646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18649/", + "id": 18649, + "name": "Wolverine: The Origin", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-origin/4050-18649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18650/", + "id": 18650, + "name": "Jubilee", + "site_detail_url": "https://comicvine.gamespot.com/jubilee/4050-18650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18651/", + "id": 18651, + "name": "Spider-Man 2099: Exodus Omega", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-exodus-omega/4050-18651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18653/", + "id": 18653, + "name": "Spider-Man Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales/4050-18653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18655/", + "id": 18655, + "name": "X-Men: Black Sun", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black-sun/4050-18655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18656/", + "id": 18656, + "name": "Tales of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-asgard/4050-18656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18663/", + "id": 18663, + "name": "Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy/4050-18663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18671/", + "id": 18671, + "name": "New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors/4050-18671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18674/", + "id": 18674, + "name": "Disney Afternoon", + "site_detail_url": "https://comicvine.gamespot.com/disney-afternoon/4050-18674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18675/", + "id": 18675, + "name": "Disney Comic Hits", + "site_detail_url": "https://comicvine.gamespot.com/disney-comic-hits/4050-18675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18680/", + "id": 18680, + "name": "Mystic Arcana: The Book of Marvel Magic", + "site_detail_url": "https://comicvine.gamespot.com/mystic-arcana-the-book-of-marvel-magic/4050-18680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18681/", + "id": 18681, + "name": "Punisher Kills the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kills-the-marvel-universe/4050-18681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18682/", + "id": 18682, + "name": "Rocko's Modern Life", + "site_detail_url": "https://comicvine.gamespot.com/rockos-modern-life/4050-18682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18684/", + "id": 18684, + "name": "Avengers Classic", + "site_detail_url": "https://comicvine.gamespot.com/avengers-classic/4050-18684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18686/", + "id": 18686, + "name": "World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk/4050-18686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18687/", + "id": 18687, + "name": "Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner/4050-18687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18688/", + "id": 18688, + "name": "Sleepwalker Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/sleepwalker-holiday-special/4050-18688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18689/", + "id": 18689, + "name": "Franklin Richards: WORLD be WARned", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-world-be-warned/4050-18689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18694/", + "id": 18694, + "name": "Hulk and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/hulk-and-power-pack/4050-18694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18699/", + "id": 18699, + "name": "X-Men: Colossus Bloodline", + "site_detail_url": "https://comicvine.gamespot.com/x-men-colossus-bloodline/4050-18699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18700/", + "id": 18700, + "name": "Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler/4050-18700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18708/", + "id": 18708, + "name": "Annihilation Conquest: Prologue", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-prologue/4050-18708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18714/", + "id": 18714, + "name": "Chamber of Darkness Special", + "site_detail_url": "https://comicvine.gamespot.com/chamber-of-darkness-special/4050-18714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18723/", + "id": 18723, + "name": "Marvel Monsters: Fin Fang 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters-fin-fang-4/4050-18723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18726/", + "id": 18726, + "name": "X-Men Endangered Species", + "site_detail_url": "https://comicvine.gamespot.com/x-men-endangered-species/4050-18726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18729/", + "id": 18729, + "name": "Mighty Avengers: Most Wanted Files", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-most-wanted-files/4050-18729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18730/", + "id": 18730, + "name": "Mythos: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/mythos-spider-man/4050-18730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18732/", + "id": 18732, + "name": "Iron Man: Hypervelocity", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-hypervelocity/4050-18732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18737/", + "id": 18737, + "name": "Marvel Adventures: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man/4050-18737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18738/", + "id": 18738, + "name": "Wyrms", + "site_detail_url": "https://comicvine.gamespot.com/wyrms/4050-18738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18770/", + "id": 18770, + "name": "George R. R. Martin's The Hedge Knight II: Sworn Sword", + "site_detail_url": "https://comicvine.gamespot.com/george-r-r-martins-the-hedge-knight-ii-sworn-sword/4050-18770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18771/", + "id": 18771, + "name": "Incredible Hulk vs. Venom", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-vs-venom/4050-18771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18772/", + "id": 18772, + "name": "Amazing Spider-Man Super Special", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-super-special/4050-18772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18775/", + "id": 18775, + "name": "Truth: Red, White and Black", + "site_detail_url": "https://comicvine.gamespot.com/truth-red-white-and-black/4050-18775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18784/", + "id": 18784, + "name": "Ghost Riders: Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riders-crossroads/4050-18784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18786/", + "id": 18786, + "name": "World War Hulk: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-x-men/4050-18786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18793/", + "id": 18793, + "name": "World War Hulk: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-front-line/4050-18793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18800/", + "id": 18800, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-18800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18816/", + "id": 18816, + "name": "Men in Black: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/men-in-black-the-movie/4050-18816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18829/", + "id": 18829, + "name": "New Avengers Illuminati: Secret History", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-illuminati-secret-history/4050-18829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18830/", + "id": 18830, + "name": "Legion of Monsters: Satana", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters-satana/4050-18830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18831/", + "id": 18831, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-18831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18832/", + "id": 18832, + "name": "New Avengers/Transformers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengerstransformers/4050-18832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18835/", + "id": 18835, + "name": "Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler/4050-18835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18843/", + "id": 18843, + "name": "X-Men: The End: Book 1: Dreamers & Demons", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons/4050-18843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18845/", + "id": 18845, + "name": "Marvel 1602: New World", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world/4050-18845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18846/", + "id": 18846, + "name": "Last Hero Standing", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing/4050-18846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18847/", + "id": 18847, + "name": "Tales of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-marvel-universe/4050-18847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18857/", + "id": 18857, + "name": "Anita Blake, Vampire Hunter: The First Death", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-first-death/4050-18857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18876/", + "id": 18876, + "name": "Spider-Man Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga/4050-18876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18877/", + "id": 18877, + "name": "Fantastic Five", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-five/4050-18877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18879/", + "id": 18879, + "name": "Deadpool/GLI Summer Fun Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/deadpoolgli-summer-fun-spectacular/4050-18879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18882/", + "id": 18882, + "name": "Annihilation: Conquest - Wraith", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-wraith/4050-18882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18892/", + "id": 18892, + "name": "Ultimate X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-annual/4050-18892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18893/", + "id": 18893, + "name": "Ultimate X4", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x4/4050-18893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18895/", + "id": 18895, + "name": "Avengers and Power Pack Assemble!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-power-pack-assemble/4050-18895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18896/", + "id": 18896, + "name": "Fantastic Four and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-and-power-pack/4050-18896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18897/", + "id": 18897, + "name": "X-Men and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/x-men-and-power-pack/4050-18897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18898/", + "id": 18898, + "name": "Spider-Man and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack/4050-18898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18899/", + "id": 18899, + "name": "Civil War Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles/4050-18899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18903/", + "id": 18903, + "name": "World War Hulk: Gamma Corps", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-gamma-corps/4050-18903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18904/", + "id": 18904, + "name": "Heroes Vs. Plaque", + "site_detail_url": "https://comicvine.gamespot.com/heroes-vs-plaque/4050-18904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18910/", + "id": 18910, + "name": "Thunderbolts: Desperate Measures", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-desperate-measures/4050-18910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18911/", + "id": 18911, + "name": "The Order", + "site_detail_url": "https://comicvine.gamespot.com/the-order/4050-18911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18919/", + "id": 18919, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4050-18919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18922/", + "id": 18922, + "name": "Giant-Size Marvel Adventures Avengers", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-marvel-adventures-avengers/4050-18922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18923/", + "id": 18923, + "name": "Annihilation: Conquest - Quasar", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-quasar/4050-18923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18924/", + "id": 18924, + "name": "Wolverine Origins Annual", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-annual/4050-18924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18929/", + "id": 18929, + "name": "Incredible Hulk vs Superman", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-vs-superman/4050-18929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18930/", + "id": 18930, + "name": "Felicia Hardy: The Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/felicia-hardy-the-black-cat/4050-18930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18940/", + "id": 18940, + "name": "Super-Villain Team-Up/MODOK's 11", + "site_detail_url": "https://comicvine.gamespot.com/super-villain-team-upmodoks-11/4050-18940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18941/", + "id": 18941, + "name": "X-Men: First Class", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class/4050-18941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18946/", + "id": 18946, + "name": "Superman vs. the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/superman-vs-the-amazing-spider-man/4050-18946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18947/", + "id": 18947, + "name": "Legion of Monsters: Morbius the Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters-morbius-the-living-vampire/4050-18947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18952/", + "id": 18952, + "name": "Shanna the She-Devil: Survival of the Fittest", + "site_detail_url": "https://comicvine.gamespot.com/shanna-the-she-devil-survival-of-the-fittest/4050-18952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18955/", + "id": 18955, + "name": "Spider-Man/Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/spider-manred-sonja/4050-18955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18958/", + "id": 18958, + "name": "Marvel Spotlight: World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-world-war-hulk/4050-18958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18959/", + "id": 18959, + "name": "X-Treme X-Men: Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-savage-land/4050-18959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19011/", + "id": 19011, + "name": "Marvel and DC Present featuring The Uncanny X-Men and The New Teen Titans", + "site_detail_url": "https://comicvine.gamespot.com/marvel-and-dc-present-featuring-the-uncanny-x-men-/4050-19011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19017/", + "id": 19017, + "name": "WildC.A.T.S/X-Men: The Dark Age", + "site_detail_url": "https://comicvine.gamespot.com/wildcatsx-men-the-dark-age/4050-19017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19034/", + "id": 19034, + "name": "Doc Samson", + "site_detail_url": "https://comicvine.gamespot.com/doc-samson/4050-19034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19039/", + "id": 19039, + "name": "Marvel Adventures Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk/4050-19039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19047/", + "id": 19047, + "name": "X-Men: The End: Book 2: Heroes & Martyrs", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-book-2-heroes-martyrs/4050-19047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19050/", + "id": 19050, + "name": "World War Hulk: Gamma Files", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-gamma-files/4050-19050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19051/", + "id": 19051, + "name": "Annihilation: Conquest - Starlord", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-starlord/4050-19051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19053/", + "id": 19053, + "name": "X-Men: The End: Book 3: Men & X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men/4050-19053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19065/", + "id": 19065, + "name": "Halo: Uprising", + "site_detail_url": "https://comicvine.gamespot.com/halo-uprising/4050-19065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19069/", + "id": 19069, + "name": "Journey into Mystery Annual", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-annual/4050-19069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19085/", + "id": 19085, + "name": "The Last Fantastic Four Story", + "site_detail_url": "https://comicvine.gamespot.com/the-last-fantastic-four-story/4050-19085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19089/", + "id": 19089, + "name": "Generation X Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-holiday-special/4050-19089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19092/", + "id": 19092, + "name": "Paradise X: Heralds", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-heralds/4050-19092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19095/", + "id": 19095, + "name": "Generation X Underground", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-underground/4050-19095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19096/", + "id": 19096, + "name": "Fred Hembeck Destroys the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/fred-hembeck-destroys-the-marvel-universe/4050-19096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19097/", + "id": 19097, + "name": "Fred Hembeck Sells the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/fred-hembeck-sells-the-marvel-universe/4050-19097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19100/", + "id": 19100, + "name": "Fantastic Four Roast", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-roast/4050-19100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19101/", + "id": 19101, + "name": "Marvel Monsters: From the Files of Ulysses Bloodstone (and the Monster Hunters)", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters-from-the-files-of-ulysses-bloodsto/4050-19101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19104/", + "id": 19104, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4050-19104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19112/", + "id": 19112, + "name": "Iron Man: Enter The Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-enter-the-mandarin/4050-19112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19130/", + "id": 19130, + "name": "X-Men: Emperor Vulcan", + "site_detail_url": "https://comicvine.gamespot.com/x-men-emperor-vulcan/4050-19130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19138/", + "id": 19138, + "name": "Ultimate Spider-Man Super Special", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-super-special/4050-19138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19142/", + "id": 19142, + "name": "Inhumans Special", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-special/4050-19142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19148/", + "id": 19148, + "name": "Spider-Man vs. Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-wolverine/4050-19148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19157/", + "id": 19157, + "name": "Spider-Man Adventures", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-adventures/4050-19157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19159/", + "id": 19159, + "name": "The Adventures of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man/4050-19159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19160/", + "id": 19160, + "name": "Penance: Relentless", + "site_detail_url": "https://comicvine.gamespot.com/penance-relentless/4050-19160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19161/", + "id": 19161, + "name": "Marvel Monsters: Monsters on the Prowl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters-monsters-on-the-prowl/4050-19161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19164/", + "id": 19164, + "name": "Marvel Comics Presents", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents/4050-19164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19173/", + "id": 19173, + "name": "Pint-Sized X-Babies: Murderama", + "site_detail_url": "https://comicvine.gamespot.com/pint-sized-x-babies-murderama/4050-19173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19174/", + "id": 19174, + "name": "X-Babies: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/x-babies-reborn/4050-19174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19176/", + "id": 19176, + "name": "Marvel Age", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age/4050-19176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19177/", + "id": 19177, + "name": "Marvel Age Annual", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-annual/4050-19177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19184/", + "id": 19184, + "name": "Hulk: Nightmerica", + "site_detail_url": "https://comicvine.gamespot.com/hulk-nightmerica/4050-19184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19185/", + "id": 19185, + "name": "Hulk: Destruction", + "site_detail_url": "https://comicvine.gamespot.com/hulk-destruction/4050-19185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19187/", + "id": 19187, + "name": "Captain America: The Medusa Effect", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-medusa-effect/4050-19187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19196/", + "id": 19196, + "name": "X-Men Evolution", + "site_detail_url": "https://comicvine.gamespot.com/x-men-evolution/4050-19196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19198/", + "id": 19198, + "name": "The Immortal Iron Fist Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-annual/4050-19198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19202/", + "id": 19202, + "name": "Franklin Richards: Monster Mash", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-monster-mash/4050-19202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19209/", + "id": 19209, + "name": "Legion of Monsters: Werewolf By Night", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters-werewolf-by-night/4050-19209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19214/", + "id": 19214, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4050-19214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19217/", + "id": 19217, + "name": "Omega the Unknown", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown/4050-19217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19218/", + "id": 19218, + "name": "Juggernaut: The Eighth Day", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut-the-eighth-day/4050-19218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19222/", + "id": 19222, + "name": "Wolverine Annual", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-annual/4050-19222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19223/", + "id": 19223, + "name": "Marvel Zombies: The Book of Angels, Demons & Various Monstrosities", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-the-book-of-angels-demons-various-m/4050-19223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19237/", + "id": 19237, + "name": "X-Men: Die by the Sword", + "site_detail_url": "https://comicvine.gamespot.com/x-men-die-by-the-sword/4050-19237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19252/", + "id": 19252, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies/4050-19252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19255/", + "id": 19255, + "name": "Marvel Zombies 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2/4050-19255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19279/", + "id": 19279, + "name": "What If? Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/what-if-fantastic-four/4050-19279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19301/", + "id": 19301, + "name": "What If? Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/what-if-planet-hulk/4050-19301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19319/", + "id": 19319, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-19319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19326/", + "id": 19326, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-19326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19327/", + "id": 19327, + "name": "District X", + "site_detail_url": "https://comicvine.gamespot.com/district-x/4050-19327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19378/", + "id": 19378, + "name": "Arrgh!", + "site_detail_url": "https://comicvine.gamespot.com/arrgh/4050-19378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19381/", + "id": 19381, + "name": "Captain America: Sentinel of Liberty", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sentinel-of-liberty/4050-19381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19405/", + "id": 19405, + "name": "Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-six/4050-19405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19415/", + "id": 19415, + "name": "Daredevil Annual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual/4050-19415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19419/", + "id": 19419, + "name": "X-Men: Messiah Complex", + "site_detail_url": "https://comicvine.gamespot.com/x-men-messiah-complex/4050-19419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19422/", + "id": 19422, + "name": "X-Force/Youngblood", + "site_detail_url": "https://comicvine.gamespot.com/x-forceyoungblood/4050-19422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19434/", + "id": 19434, + "name": "Crybaby", + "site_detail_url": "https://comicvine.gamespot.com/crybaby/4050-19434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19440/", + "id": 19440, + "name": "Modeling With Millie", + "site_detail_url": "https://comicvine.gamespot.com/modeling-with-millie/4050-19440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19441/", + "id": 19441, + "name": "Millie the Model", + "site_detail_url": "https://comicvine.gamespot.com/millie-the-model/4050-19441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19445/", + "id": 19445, + "name": "Spider-Man/Doctor Octopus: Year One", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one/4050-19445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19447/", + "id": 19447, + "name": "Doctor Octopus: Negative Exposure", + "site_detail_url": "https://comicvine.gamespot.com/doctor-octopus-negative-exposure/4050-19447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19465/", + "id": 19465, + "name": "Spider-Man: House of M", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m/4050-19465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19470/", + "id": 19470, + "name": "Mythos: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/mythos-fantastic-four/4050-19470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19482/", + "id": 19482, + "name": "Doctor Doom's Revenge", + "site_detail_url": "https://comicvine.gamespot.com/doctor-dooms-revenge/4050-19482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19493/", + "id": 19493, + "name": "Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/deathlok/4050-19493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19499/", + "id": 19499, + "name": "Iron Man/X-O Manowar", + "site_detail_url": "https://comicvine.gamespot.com/iron-manx-o-manowar/4050-19499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19500/", + "id": 19500, + "name": "Silver Surfer: Dangerous Artifacts", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-dangerous-artifacts/4050-19500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19502/", + "id": 19502, + "name": "Psi-Force Annual", + "site_detail_url": "https://comicvine.gamespot.com/psi-force-annual/4050-19502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19519/", + "id": 19519, + "name": "Mighty Morphin Power Rangers: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie/4050-19519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19535/", + "id": 19535, + "name": "Star Trek First Contact", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-first-contact/4050-19535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19570/", + "id": 19570, + "name": "Deathlok Annual", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-annual/4050-19570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19572/", + "id": 19572, + "name": "The Last Avengers Story", + "site_detail_url": "https://comicvine.gamespot.com/the-last-avengers-story/4050-19572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19601/", + "id": 19601, + "name": "U.S.Agent", + "site_detail_url": "https://comicvine.gamespot.com/usagent/4050-19601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19603/", + "id": 19603, + "name": "Super Boxers", + "site_detail_url": "https://comicvine.gamespot.com/super-boxers/4050-19603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19607/", + "id": 19607, + "name": "Annihilation: Conquest", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest/4050-19607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19608/", + "id": 19608, + "name": "Silver Surfer: In Thy Name", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-in-thy-name/4050-19608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19612/", + "id": 19612, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4050-19612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19619/", + "id": 19619, + "name": "Wolverine: Save the Tiger", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-save-the-tiger/4050-19619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19626/", + "id": 19626, + "name": "Doctor Strange: What is it That Disturbs You Stephen?", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-what-is-it-that-disturbs-you-stephe/4050-19626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19633/", + "id": 19633, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-19633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19636/", + "id": 19636, + "name": "Conan vs. Rune", + "site_detail_url": "https://comicvine.gamespot.com/conan-vs-rune/4050-19636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19638/", + "id": 19638, + "name": "Spider-Man Vs Dracula", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-dracula/4050-19638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19639/", + "id": 19639, + "name": "Spider-Man Vs. Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-venom/4050-19639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19644/", + "id": 19644, + "name": "Ultimate Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-iron-man/4050-19644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19650/", + "id": 19650, + "name": "Maximum Security: Thor vs. Ego", + "site_detail_url": "https://comicvine.gamespot.com/maximum-security-thor-vs-ego/4050-19650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19652/", + "id": 19652, + "name": "The Incredible Hulk versus Quasimodo", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-versus-quasimodo/4050-19652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19653/", + "id": 19653, + "name": "Dr. Strange vs. Dracula", + "site_detail_url": "https://comicvine.gamespot.com/dr-strange-vs-dracula/4050-19653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19668/", + "id": 19668, + "name": "House of M: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-avengers/4050-19668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19675/", + "id": 19675, + "name": "Last Planet Standing", + "site_detail_url": "https://comicvine.gamespot.com/last-planet-standing/4050-19675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19677/", + "id": 19677, + "name": "2099 A.D.", + "site_detail_url": "https://comicvine.gamespot.com/2099-ad/4050-19677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19678/", + "id": 19678, + "name": "2099 A.D. Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/2099-ad-apocalypse/4050-19678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19679/", + "id": 19679, + "name": "2099 A.D. Genesis", + "site_detail_url": "https://comicvine.gamespot.com/2099-ad-genesis/4050-19679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19680/", + "id": 19680, + "name": "2099 Special: The World of Doom", + "site_detail_url": "https://comicvine.gamespot.com/2099-special-the-world-of-doom/4050-19680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19681/", + "id": 19681, + "name": "Marvel Action Hour: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-hour-iron-man/4050-19681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19682/", + "id": 19682, + "name": "2099: Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/2099-manifest-destiny/4050-19682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19683/", + "id": 19683, + "name": "X-Men 2099 Oasis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2099-oasis/4050-19683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19684/", + "id": 19684, + "name": "X-Men 2099 A.D. Special", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2099-ad-special/4050-19684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19685/", + "id": 19685, + "name": "Spider-Man 2099 Meets Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-meets-spider-man/4050-19685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19686/", + "id": 19686, + "name": "Spider-Man 2099 Annual", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-annual/4050-19686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19687/", + "id": 19687, + "name": "Spider-Man 2099 Special", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-special/4050-19687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19688/", + "id": 19688, + "name": "Spider-Man: Breakout", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout/4050-19688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19689/", + "id": 19689, + "name": "Iron Man: House of M", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-house-of-m/4050-19689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19690/", + "id": 19690, + "name": "Avengers: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes/4050-19690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19694/", + "id": 19694, + "name": "Thunderbolts: Breaking Point", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-breaking-point/4050-19694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19698/", + "id": 19698, + "name": "Ghost Rider Annual", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-annual/4050-19698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19708/", + "id": 19708, + "name": "Batman/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/batmancaptain-america/4050-19708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19715/", + "id": 19715, + "name": "Weapon X: Days of Future Now", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-days-of-future-now/4050-19715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19717/", + "id": 19717, + "name": "Spellbinders", + "site_detail_url": "https://comicvine.gamespot.com/spellbinders/4050-19717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19743/", + "id": 19743, + "name": "Generation X Collectors' Preview", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-collectors-preview/4050-19743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19744/", + "id": 19744, + "name": "Generation X Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-ashcan-edition/4050-19744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19750/", + "id": 19750, + "name": "Iron Man: Director of S.H.I.E.L.D. Annual", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-director-of-shield-annual/4050-19750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19754/", + "id": 19754, + "name": "Killraven", + "site_detail_url": "https://comicvine.gamespot.com/killraven/4050-19754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19757/", + "id": 19757, + "name": "The 'Nam", + "site_detail_url": "https://comicvine.gamespot.com/the-nam/4050-19757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19758/", + "id": 19758, + "name": "Wizard Presents Cerebro’s Guide to the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wizard-presents-cerebros-guide-to-the-x-men/4050-19758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19759/", + "id": 19759, + "name": "Moon Knight Annual", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-annual/4050-19759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19791/", + "id": 19791, + "name": "Marvel Swimsuit Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-swimsuit-special/4050-19791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19807/", + "id": 19807, + "name": "Heroes for Hire / Quicksilver '98", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-quicksilver-98/4050-19807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19861/", + "id": 19861, + "name": "The Ultimates 3", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-3/4050-19861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19880/", + "id": 19880, + "name": "Spider-Man Black & Blue & Read All Over", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-black-blue-read-all-over/4050-19880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19885/", + "id": 19885, + "name": "Gladiator/Supreme", + "site_detail_url": "https://comicvine.gamespot.com/gladiatorsupreme/4050-19885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19919/", + "id": 19919, + "name": "World War Hulk: Aftersmash", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash/4050-19919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19935/", + "id": 19935, + "name": "Avengers: The Initiative Annual", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-annual/4050-19935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19947/", + "id": 19947, + "name": "The Punisher Summer Special", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-summer-special/4050-19947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19951/", + "id": 19951, + "name": "Savage Hulk", + "site_detail_url": "https://comicvine.gamespot.com/savage-hulk/4050-19951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19970/", + "id": 19970, + "name": "Spidey And The Mini Marvels", + "site_detail_url": "https://comicvine.gamespot.com/spidey-and-the-mini-marvels/4050-19970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19973/", + "id": 19973, + "name": "The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve/4050-19973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19974/", + "id": 19974, + "name": "Marvel Mangaverse: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-x-men/4050-19974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20026/", + "id": 20026, + "name": "NYX/X-23", + "site_detail_url": "https://comicvine.gamespot.com/nyxx-23/4050-20026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20027/", + "id": 20027, + "name": "X-23: Innocence Lost", + "site_detail_url": "https://comicvine.gamespot.com/x-23-innocence-lost/4050-20027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20029/", + "id": 20029, + "name": "Marvel Spotlight: Ed Brubaker & Billy Tan", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-ed-brubaker-billy-tan/4050-20029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20037/", + "id": 20037, + "name": "Uncanny X-Men: The New Age", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-new-age/4050-20037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20041/", + "id": 20041, + "name": "Startling Stories: The Megalomaniacal Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-the-megalomaniacal-spider-man/4050-20041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20060/", + "id": 20060, + "name": "Generation X/Gen 13", + "site_detail_url": "https://comicvine.gamespot.com/generation-xgen-13/4050-20060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20061/", + "id": 20061, + "name": "Ghost Rider Annual", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-annual/4050-20061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20064/", + "id": 20064, + "name": "Marvel Super Hero Island Adventures", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-island-adventures/4050-20064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20065/", + "id": 20065, + "name": "Marvel Vision", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vision/4050-20065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20073/", + "id": 20073, + "name": "The Original Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/the-original-ghost-rider/4050-20073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20075/", + "id": 20075, + "name": "Ultimate War", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-war/4050-20075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20081/", + "id": 20081, + "name": "X-Men: Supernovas", + "site_detail_url": "https://comicvine.gamespot.com/x-men-supernovas/4050-20081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20082/", + "id": 20082, + "name": "X-Men: The New Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-new-age-of-apocalypse/4050-20082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20084/", + "id": 20084, + "name": "Ultimate Iron Man II", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-iron-man-ii/4050-20084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20092/", + "id": 20092, + "name": "Marvel Mangaverse: Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-avengers-assemble/4050-20092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20097/", + "id": 20097, + "name": "Iron Man and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-and-power-pack/4050-20097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20099/", + "id": 20099, + "name": "Magneto Dark Seduction", + "site_detail_url": "https://comicvine.gamespot.com/magneto-dark-seduction/4050-20099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20106/", + "id": 20106, + "name": "Silver Surfer vs. Dracula", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-vs-dracula/4050-20106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20114/", + "id": 20114, + "name": "The Ultimates Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-saga/4050-20114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20128/", + "id": 20128, + "name": "Ant-Man's Big Christmas", + "site_detail_url": "https://comicvine.gamespot.com/ant-mans-big-christmas/4050-20128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20131/", + "id": 20131, + "name": "X-Men: Kitty Pryde - Shadow & Flame", + "site_detail_url": "https://comicvine.gamespot.com/x-men-kitty-pryde-shadow-flame/4050-20131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20135/", + "id": 20135, + "name": "Wolverine/Cable", + "site_detail_url": "https://comicvine.gamespot.com/wolverinecable/4050-20135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20136/", + "id": 20136, + "name": "X-Force / Cable '95", + "site_detail_url": "https://comicvine.gamespot.com/x-force-cable-95/4050-20136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20137/", + "id": 20137, + "name": "Ghost Rider and Cable: Servants of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-and-cable-servants-of-the-dead/4050-20137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20138/", + "id": 20138, + "name": "X-Force / Cable '96", + "site_detail_url": "https://comicvine.gamespot.com/x-force-cable-96/4050-20138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20139/", + "id": 20139, + "name": "X-Force / Cable '97", + "site_detail_url": "https://comicvine.gamespot.com/x-force-cable-97/4050-20139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20140/", + "id": 20140, + "name": "Cable 1999", + "site_detail_url": "https://comicvine.gamespot.com/cable-1999/4050-20140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20141/", + "id": 20141, + "name": "Cable: Second Genesis", + "site_detail_url": "https://comicvine.gamespot.com/cable-second-genesis/4050-20141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20142/", + "id": 20142, + "name": "X-Force: Shatterstar", + "site_detail_url": "https://comicvine.gamespot.com/x-force-shatterstar/4050-20142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20149/", + "id": 20149, + "name": "Ultimate Vision", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-vision/4050-20149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20151/", + "id": 20151, + "name": "What If? Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/what-if-annihilation/4050-20151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20153/", + "id": 20153, + "name": "World War Hulk Aftersmash: Warbound", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash-warbound/4050-20153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20154/", + "id": 20154, + "name": "Wolverine: Firebreak", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-firebreak/4050-20154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20155/", + "id": 20155, + "name": "What If? Civil War", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war/4050-20155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20173/", + "id": 20173, + "name": "Excalibur Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-special-edition/4050-20173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20182/", + "id": 20182, + "name": "What If? X-Men - Rise and Fall of the Shi'Ar Empire", + "site_detail_url": "https://comicvine.gamespot.com/what-if-x-men-rise-and-fall-of-the-shiar-empire/4050-20182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20185/", + "id": 20185, + "name": "Annihilation: Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-silver-surfer/4050-20185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20186/", + "id": 20186, + "name": "Annihilation: Ronan", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-ronan/4050-20186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20230/", + "id": 20230, + "name": "Fantastic Four: Isla De La Muerte", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-isla-de-la-muerte/4050-20230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20232/", + "id": 20232, + "name": "Giant-Size Avengers", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-avengers/4050-20232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20238/", + "id": 20238, + "name": "Hulk VS Fin Fang Foom", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-fin-fang-foom/4050-20238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20248/", + "id": 20248, + "name": "Exiles: Days Of Then And Now", + "site_detail_url": "https://comicvine.gamespot.com/exiles-days-of-then-and-now/4050-20248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20251/", + "id": 20251, + "name": "Ultimate Human", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-human/4050-20251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20257/", + "id": 20257, + "name": "Spider-Man: The Parker Years", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-parker-years/4050-20257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20258/", + "id": 20258, + "name": "Spider-Man/Kingpin: To The Death", + "site_detail_url": "https://comicvine.gamespot.com/spider-mankingpin-to-the-death/4050-20258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20267/", + "id": 20267, + "name": "Hulk/Pitt", + "site_detail_url": "https://comicvine.gamespot.com/hulkpitt/4050-20267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20270/", + "id": 20270, + "name": "X-Men & Ghost Rider: Brood Trouble In The Big Easy", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ghost-rider-brood-trouble-in-the-big-easy/4050-20270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20271/", + "id": 20271, + "name": "Blade: The Vampire Hunter", + "site_detail_url": "https://comicvine.gamespot.com/blade-the-vampire-hunter/4050-20271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20283/", + "id": 20283, + "name": "Team X/Team 7", + "site_detail_url": "https://comicvine.gamespot.com/team-xteam-7/4050-20283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20290/", + "id": 20290, + "name": "Brothers in Arms", + "site_detail_url": "https://comicvine.gamespot.com/brothers-in-arms/4050-20290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20291/", + "id": 20291, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4050-20291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20300/", + "id": 20300, + "name": "Free Comic Book Day 2007 (Spider-Man)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2007-spider-man/4050-20300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20304/", + "id": 20304, + "name": "Resident Evil", + "site_detail_url": "https://comicvine.gamespot.com/resident-evil/4050-20304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20312/", + "id": 20312, + "name": "Avengers/Ultraforce", + "site_detail_url": "https://comicvine.gamespot.com/avengersultraforce/4050-20312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20324/", + "id": 20324, + "name": "Spider-Man: Legacy of Evil", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legacy-of-evil/4050-20324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20328/", + "id": 20328, + "name": "The Golden Age of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/the-golden-age-of-marvel-comics/4050-20328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20331/", + "id": 20331, + "name": "Maverick", + "site_detail_url": "https://comicvine.gamespot.com/maverick/4050-20331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20332/", + "id": 20332, + "name": "Ares", + "site_detail_url": "https://comicvine.gamespot.com/ares/4050-20332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20334/", + "id": 20334, + "name": "Spider-Man 3: The Black", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-the-black/4050-20334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20347/", + "id": 20347, + "name": "New Exiles", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles/4050-20347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20348/", + "id": 20348, + "name": "Venom: On Trial", + "site_detail_url": "https://comicvine.gamespot.com/venom-on-trial/4050-20348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20353/", + "id": 20353, + "name": "Wolverine/Shi: Dark Night of Judgment", + "site_detail_url": "https://comicvine.gamespot.com/wolverineshi-dark-night-of-judgment/4050-20353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20367/", + "id": 20367, + "name": "Weapon X: The Draft - Agent Zero", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft-agent-zero/4050-20367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20368/", + "id": 20368, + "name": "Weapon X: The Draft - Kane", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft-kane/4050-20368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20369/", + "id": 20369, + "name": "Weapon X: The Draft - Marrow", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft-marrow/4050-20369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20370/", + "id": 20370, + "name": "Weapon X: The Draft - Sauron", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft-sauron/4050-20370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20371/", + "id": 20371, + "name": "Weapon X: The Draft - Wild Child", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft-wild-child/4050-20371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20380/", + "id": 20380, + "name": "Young Avengers Presents", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents/4050-20380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20385/", + "id": 20385, + "name": "Giant-Size Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-wolverine/4050-20385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20399/", + "id": 20399, + "name": "Fantastic Four/Iron Man: Big in Japan", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fouriron-man-big-in-japan/4050-20399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20402/", + "id": 20402, + "name": "World War Hulk Aftersmash: Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulk-aftersmash-damage-control/4050-20402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20410/", + "id": 20410, + "name": "What If? Spider-Man Vs. Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-vs-wolverine/4050-20410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20414/", + "id": 20414, + "name": "Ultimate Marvel Sampler", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-sampler/4050-20414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20439/", + "id": 20439, + "name": "Mutant X 1999", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-1999/4050-20439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20442/", + "id": 20442, + "name": "Ka-Zar: Guns of the Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-guns-of-the-savage-land/4050-20442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20443/", + "id": 20443, + "name": "Punisher/Black Widow: Spinning Doomsday's Web", + "site_detail_url": "https://comicvine.gamespot.com/punisherblack-widow-spinning-doomsdays-web/4050-20443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20448/", + "id": 20448, + "name": "ClanDestine", + "site_detail_url": "https://comicvine.gamespot.com/clandestine/4050-20448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20450/", + "id": 20450, + "name": "Maximum Security", + "site_detail_url": "https://comicvine.gamespot.com/maximum-security/4050-20450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20454/", + "id": 20454, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4050-20454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20455/", + "id": 20455, + "name": "What If Dr Doom Had Become the Thing?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-dr-doom-had-become-the-thing/4050-20455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20469/", + "id": 20469, + "name": "X-Men Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/x-men-fairy-tales/4050-20469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20474/", + "id": 20474, + "name": "Magneto Rex", + "site_detail_url": "https://comicvine.gamespot.com/magneto-rex/4050-20474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20476/", + "id": 20476, + "name": "NFL Superpro", + "site_detail_url": "https://comicvine.gamespot.com/nfl-superpro/4050-20476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20511/", + "id": 20511, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4050-20511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20513/", + "id": 20513, + "name": "Nova Annual", + "site_detail_url": "https://comicvine.gamespot.com/nova-annual/4050-20513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20524/", + "id": 20524, + "name": "Motormouth & Killpower", + "site_detail_url": "https://comicvine.gamespot.com/motormouth-killpower/4050-20524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20555/", + "id": 20555, + "name": "Scorpio Rising", + "site_detail_url": "https://comicvine.gamespot.com/scorpio-rising/4050-20555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20562/", + "id": 20562, + "name": "Dark Tower: Gunslinger's Guidebook", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-gunslingers-guidebook/4050-20562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20565/", + "id": 20565, + "name": "Stormbreaker: The Saga of Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill/4050-20565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20582/", + "id": 20582, + "name": "The Supernaturals", + "site_detail_url": "https://comicvine.gamespot.com/the-supernaturals/4050-20582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20588/", + "id": 20588, + "name": "Incredible Hercules", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules/4050-20588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20589/", + "id": 20589, + "name": "The Immortal Iron Fist: Orson Randall and the Green Mist of Death", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-orson-randall-and-the-green/4050-20589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20599/", + "id": 20599, + "name": "Razorline The First Cut", + "site_detail_url": "https://comicvine.gamespot.com/razorline-the-first-cut/4050-20599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20601/", + "id": 20601, + "name": "New Mutants Summer Special", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-summer-special/4050-20601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20603/", + "id": 20603, + "name": "Wolverine: Rahne of Terra", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-rahne-of-terra/4050-20603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20608/", + "id": 20608, + "name": "Captain America: What Price Glory?", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-what-price-glory/4050-20608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20609/", + "id": 20609, + "name": "Spider-Man '97", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-97/4050-20609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20619/", + "id": 20619, + "name": "Wolverine: Wizard Masterpiece Editon", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wizard-masterpiece-editon/4050-20619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20622/", + "id": 20622, + "name": "Spidey/Marrow", + "site_detail_url": "https://comicvine.gamespot.com/spideymarrow/4050-20622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20623/", + "id": 20623, + "name": "Night Nurse", + "site_detail_url": "https://comicvine.gamespot.com/night-nurse/4050-20623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20627/", + "id": 20627, + "name": "Marvel Illustrated: The Iliad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-iliad/4050-20627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20629/", + "id": 20629, + "name": "Tomb of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-dracula/4050-20629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20650/", + "id": 20650, + "name": "Psylocke & Archangel: Crimson Dawn", + "site_detail_url": "https://comicvine.gamespot.com/psylocke-archangel-crimson-dawn/4050-20650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20664/", + "id": 20664, + "name": "Marvel Collectors' Item Classics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectors-item-classics/4050-20664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20665/", + "id": 20665, + "name": "Marvel's Greatest Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-comics/4050-20665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20666/", + "id": 20666, + "name": "Ultimate Secrets", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-secrets/4050-20666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20676/", + "id": 20676, + "name": "Marvel Illustrated: The Picture Of Dorian Gray", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-picture-of-dorian-gray/4050-20676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20677/", + "id": 20677, + "name": "Spider-Man: Revenge of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin/4050-20677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20678/", + "id": 20678, + "name": "Marvel Illustrated: Moby Dick", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-moby-dick/4050-20678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20691/", + "id": 20691, + "name": "X-Men: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy/4050-20691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20692/", + "id": 20692, + "name": "Thunderbolts: International Incident", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-international-incident/4050-20692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20710/", + "id": 20710, + "name": "X-Men '96", + "site_detail_url": "https://comicvine.gamespot.com/x-men-96/4050-20710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20712/", + "id": 20712, + "name": "Wha...Huh?", + "site_detail_url": "https://comicvine.gamespot.com/whahuh/4050-20712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20713/", + "id": 20713, + "name": "Black Panther Annual", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-annual/4050-20713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20732/", + "id": 20732, + "name": "Spider-Man: The Lost Years", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-lost-years/4050-20732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20737/", + "id": 20737, + "name": "Fantastic Four The Lost Adventure", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-lost-adventure/4050-20737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20764/", + "id": 20764, + "name": "Thanos", + "site_detail_url": "https://comicvine.gamespot.com/thanos/4050-20764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20800/", + "id": 20800, + "name": "Dark Tower: The Long Road Home", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-long-road-home/4050-20800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20804/", + "id": 20804, + "name": "Secret Invasion Saga", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-saga/4050-20804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20805/", + "id": 20805, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4050-20805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20839/", + "id": 20839, + "name": "Planet Hulk: Gladiator Guidebook", + "site_detail_url": "https://comicvine.gamespot.com/planet-hulk-gladiator-guidebook/4050-20839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20859/", + "id": 20859, + "name": "The Origin of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/the-origin-of-galactus/4050-20859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20861/", + "id": 20861, + "name": "The Life of Christ: The Easter Story", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-christ-the-easter-story/4050-20861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20887/", + "id": 20887, + "name": "Franklin Richards: March Madness", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-march-madness/4050-20887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20889/", + "id": 20889, + "name": "Ultragirl", + "site_detail_url": "https://comicvine.gamespot.com/ultragirl/4050-20889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20892/", + "id": 20892, + "name": "Universe X Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-omnibus/4050-20892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20893/", + "id": 20893, + "name": "Avengers: Death Trap, The Vault", + "site_detail_url": "https://comicvine.gamespot.com/avengers-death-trap-the-vault/4050-20893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20894/", + "id": 20894, + "name": "Xavier Institute Alumni Yearbook", + "site_detail_url": "https://comicvine.gamespot.com/xavier-institute-alumni-yearbook/4050-20894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20895/", + "id": 20895, + "name": "X-Men Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe/4050-20895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20902/", + "id": 20902, + "name": "The Last Defenders", + "site_detail_url": "https://comicvine.gamespot.com/the-last-defenders/4050-20902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20904/", + "id": 20904, + "name": "The Iron Manual", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-manual/4050-20904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20905/", + "id": 20905, + "name": "Iron Man: The Legend", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-legend/4050-20905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20920/", + "id": 20920, + "name": "Venom: License to Kill", + "site_detail_url": "https://comicvine.gamespot.com/venom-license-to-kill/4050-20920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20941/", + "id": 20941, + "name": "Strange Tales: Dark Corners", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-dark-corners/4050-20941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20963/", + "id": 20963, + "name": "Avengers Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/avengers-fairy-tales/4050-20963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20971/", + "id": 20971, + "name": "Bug", + "site_detail_url": "https://comicvine.gamespot.com/bug/4050-20971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20983/", + "id": 20983, + "name": "Spider-Man: Funeral for an Octopus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus/4050-20983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20985/", + "id": 20985, + "name": "Ultimate Elektra", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-elektra/4050-20985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20997/", + "id": 20997, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-20997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21004/", + "id": 21004, + "name": "Spider-Man: The Final Adventure", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-final-adventure/4050-21004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21006/", + "id": 21006, + "name": "TeachersCount/Office Max Custom Comic", + "site_detail_url": "https://comicvine.gamespot.com/teacherscountoffice-max-custom-comic/4050-21006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21032/", + "id": 21032, + "name": "Spider-Man, Storm and Power Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-storm-and-power-man/4050-21032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21043/", + "id": 21043, + "name": "The Loners: The Secret Lives of Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-loners-the-secret-lives-of-super-heroes/4050-21043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21049/", + "id": 21049, + "name": "Wolverine: First Class", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class/4050-21049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21069/", + "id": 21069, + "name": "X-Men: Magneto War", + "site_detail_url": "https://comicvine.gamespot.com/x-men-magneto-war/4050-21069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21070/", + "id": 21070, + "name": "Lords Of Avalon: Sword Of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/lords-of-avalon-sword-of-darkness/4050-21070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21073/", + "id": 21073, + "name": "Power Pack: Day One", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-day-one/4050-21073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21076/", + "id": 21076, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion/4050-21076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21082/", + "id": 21082, + "name": "Young X-Men", + "site_detail_url": "https://comicvine.gamespot.com/young-x-men/4050-21082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21084/", + "id": 21084, + "name": "Hulk 2099", + "site_detail_url": "https://comicvine.gamespot.com/hulk-2099/4050-21084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21100/", + "id": 21100, + "name": "Marvel Knights Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-sketchbook/4050-21100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21101/", + "id": 21101, + "name": "Marvel Knights Wave 2 Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-wave-2-sketchbook/4050-21101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21102/", + "id": 21102, + "name": "Marvel Must Haves", + "site_detail_url": "https://comicvine.gamespot.com/marvel-must-haves/4050-21102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21105/", + "id": 21105, + "name": "Spider-Man: One More Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-one-more-day/4050-21105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21106/", + "id": 21106, + "name": "Spider-Man: Get Kraven", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-get-kraven/4050-21106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21107/", + "id": 21107, + "name": "Spider-Man: The Other", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-other/4050-21107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21146/", + "id": 21146, + "name": "X-Men: Vignettes", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vignettes/4050-21146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21190/", + "id": 21190, + "name": "Daredevil Legends", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-legends/4050-21190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21191/", + "id": 21191, + "name": "Daredevil: Marked For Death", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-marked-for-death/4050-21191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21192/", + "id": 21192, + "name": "Daredevil by Frank Miller Omnibus Companion", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-frank-miller-omnibus-companion/4050-21192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21193/", + "id": 21193, + "name": "Daredevil: The Man Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-man-without-fear/4050-21193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21196/", + "id": 21196, + "name": "Essential X-Men", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men/4050-21196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21197/", + "id": 21197, + "name": "Eternals Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/eternals-sketchbook/4050-21197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21199/", + "id": 21199, + "name": "Iron Man: Doomquest", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-doomquest/4050-21199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21200/", + "id": 21200, + "name": "Iron Man: Demon In A Bottle", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-demon-in-a-bottle/4050-21200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21201/", + "id": 21201, + "name": "Marvel Year-In-Review", + "site_detail_url": "https://comicvine.gamespot.com/marvel-year-in-review/4050-21201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21203/", + "id": 21203, + "name": "X-Men: Divided We Stand", + "site_detail_url": "https://comicvine.gamespot.com/x-men-divided-we-stand/4050-21203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21205/", + "id": 21205, + "name": "The Punisher: War Zone", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone/4050-21205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21206/", + "id": 21206, + "name": "Punisher/Batman: Deadly Knights", + "site_detail_url": "https://comicvine.gamespot.com/punisherbatman-deadly-knights/4050-21206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21207/", + "id": 21207, + "name": "Sentry: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/sentry-reborn/4050-21207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21209/", + "id": 21209, + "name": "Spider-Man: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revelations/4050-21209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21210/", + "id": 21210, + "name": "Star Brand Classic", + "site_detail_url": "https://comicvine.gamespot.com/star-brand-classic/4050-21210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21211/", + "id": 21211, + "name": "The Official Marvel Index to the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-x-men/4050-21211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21218/", + "id": 21218, + "name": "Thor: The Dark Gods", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-dark-gods/4050-21218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21228/", + "id": 21228, + "name": "Untold Tales of the New Universe: Star Brand", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe-star-brand/4050-21228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21229/", + "id": 21229, + "name": "Untold Tales of the New Universe", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe/4050-21229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21230/", + "id": 21230, + "name": "Wolverine: Enemy Of The State - The Complete Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition/4050-21230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21231/", + "id": 21231, + "name": "X-Men: Age of Apocalypse: The Complete Epic", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-apocalypse-the-complete-epic/4050-21231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21248/", + "id": 21248, + "name": "Iron Man: Legacy of Doom", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-legacy-of-doom/4050-21248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21251/", + "id": 21251, + "name": "WCW: World Championship Wrestling", + "site_detail_url": "https://comicvine.gamespot.com/wcw-world-championship-wrestling/4050-21251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21298/", + "id": 21298, + "name": "Avengers/Invaders Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders-sketchbook/4050-21298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21300/", + "id": 21300, + "name": "Giant Size Creatures", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-creatures/4050-21300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21326/", + "id": 21326, + "name": "Hulk Vs Hercules: When Titans Collide", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-hercules-when-titans-collide/4050-21326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21333/", + "id": 21333, + "name": "Fantastic Four: The Trial of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-trial-of-galactus/4050-21333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21334/", + "id": 21334, + "name": "New X-Men 2001", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-2001/4050-21334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21343/", + "id": 21343, + "name": "Marvel Mangaverse: New Dawn", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-new-dawn/4050-21343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21345/", + "id": 21345, + "name": "Marvel Mangaverse: Eternity Twilight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-eternity-twilight/4050-21345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21355/", + "id": 21355, + "name": "Thor: Ages of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-ages-of-thunder/4050-21355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21359/", + "id": 21359, + "name": "What If? Featuring Avengers Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/what-if-featuring-avengers-disassembled/4050-21359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21361/", + "id": 21361, + "name": "Civil War: Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-marvel-universe/4050-21361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21369/", + "id": 21369, + "name": "Star Trek/X-Men", + "site_detail_url": "https://comicvine.gamespot.com/star-trekx-men/4050-21369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21381/", + "id": 21381, + "name": "X-Men Free Comic Book Day 2008", + "site_detail_url": "https://comicvine.gamespot.com/x-men-free-comic-book-day-2008/4050-21381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21382/", + "id": 21382, + "name": "X-Men: Inferno", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno/4050-21382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21398/", + "id": 21398, + "name": "Daredevil: Blood of the Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-blood-of-the-tarantula/4050-21398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21401/", + "id": 21401, + "name": "Marvel Age: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man/4050-21401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21418/", + "id": 21418, + "name": "Marvel Spotlight Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-spider-man/4050-21418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21470/", + "id": 21470, + "name": "Avengers/Invaders", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders/4050-21470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21473/", + "id": 21473, + "name": "Solarman", + "site_detail_url": "https://comicvine.gamespot.com/solarman/4050-21473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21487/", + "id": 21487, + "name": "Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man/4050-21487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21498/", + "id": 21498, + "name": "Thunderbolts: Reason in Madness", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-reason-in-madness/4050-21498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21499/", + "id": 21499, + "name": "X-Factor: The Quick and the Dead", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-the-quick-and-the-dead/4050-21499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21500/", + "id": 21500, + "name": "American Dream", + "site_detail_url": "https://comicvine.gamespot.com/american-dream/4050-21500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21508/", + "id": 21508, + "name": "Beavis & Butt-Head", + "site_detail_url": "https://comicvine.gamespot.com/beavis-butt-head/4050-21508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21509/", + "id": 21509, + "name": "Franklin Richards: Not-So-Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-not-so-secret-invasion/4050-21509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21546/", + "id": 21546, + "name": "The 100 Greatest Marvels of All Time", + "site_detail_url": "https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time/4050-21546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21547/", + "id": 21547, + "name": "RoboCop", + "site_detail_url": "https://comicvine.gamespot.com/robocop/4050-21547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21550/", + "id": 21550, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-21550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21551/", + "id": 21551, + "name": "Captain Britain and MI:13", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-mi13/4050-21551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21552/", + "id": 21552, + "name": "The All-New Iron Manual", + "site_detail_url": "https://comicvine.gamespot.com/the-all-new-iron-manual/4050-21552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21574/", + "id": 21574, + "name": "Secret Invasion: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-21574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21576/", + "id": 21576, + "name": "Wolverine: The Amazing Immortal Man & Other Bloody Tales", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-amazing-immortal-man-other-bloody-ta/4050-21576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21577/", + "id": 21577, + "name": "Giant-Size Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-incredible-hulk/4050-21577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21581/", + "id": 21581, + "name": "GeNEXT", + "site_detail_url": "https://comicvine.gamespot.com/genext/4050-21581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21591/", + "id": 21591, + "name": "X-Men Origins: Colossus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-colossus/4050-21591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21594/", + "id": 21594, + "name": "Newuniversal: Shockfront", + "site_detail_url": "https://comicvine.gamespot.com/newuniversal-shockfront/4050-21594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21599/", + "id": 21599, + "name": "The Ultimate Spider-Man 100 Project", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimate-spider-man-100-project/4050-21599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21604/", + "id": 21604, + "name": "Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle/4050-21604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21614/", + "id": 21614, + "name": "America's Best TV Comics", + "site_detail_url": "https://comicvine.gamespot.com/americas-best-tv-comics/4050-21614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21657/", + "id": 21657, + "name": "Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/sentinel/4050-21657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21661/", + "id": 21661, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4050-21661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21663/", + "id": 21663, + "name": "Marvel Nemesis The Imperfects", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects/4050-21663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21670/", + "id": 21670, + "name": "Thor: Son of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-son-of-asgard/4050-21670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21671/", + "id": 21671, + "name": "Avengers: The Serpent Crown", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-serpent-crown/4050-21671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21673/", + "id": 21673, + "name": "Marvel 1602: Fantastick Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-fantastick-four/4050-21673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21674/", + "id": 21674, + "name": "MegaMorphs", + "site_detail_url": "https://comicvine.gamespot.com/megamorphs/4050-21674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21676/", + "id": 21676, + "name": "Conan: Flame and the Fiend", + "site_detail_url": "https://comicvine.gamespot.com/conan-flame-and-the-fiend/4050-21676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21692/", + "id": 21692, + "name": "Marvel Age Fantastic Four Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-fantastic-four-tales/4050-21692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21693/", + "id": 21693, + "name": "Marvel Age Spider-Man Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-spider-man-team-up/4050-21693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21695/", + "id": 21695, + "name": "Spider-Man Team-Up Special", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-special/4050-21695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21696/", + "id": 21696, + "name": "Spider-Man/Doctor Octopus: Out of Reach", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach/4050-21696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21698/", + "id": 21698, + "name": "Tales of the Thing", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-thing/4050-21698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21706/", + "id": 21706, + "name": "Skrull Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/skrull-kill-krew/4050-21706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21710/", + "id": 21710, + "name": "Giant-Size Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-astonishing-x-men/4050-21710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21711/", + "id": 21711, + "name": "1985", + "site_detail_url": "https://comicvine.gamespot.com/1985/4050-21711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21721/", + "id": 21721, + "name": "King-Size Hulk", + "site_detail_url": "https://comicvine.gamespot.com/king-size-hulk/4050-21721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21736/", + "id": 21736, + "name": "Marvel Knights: 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-4/4050-21736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21746/", + "id": 21746, + "name": "Cable Classic", + "site_detail_url": "https://comicvine.gamespot.com/cable-classic/4050-21746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21747/", + "id": 21747, + "name": "Cable and the New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-the-new-mutants/4050-21747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21748/", + "id": 21748, + "name": "Deadpool Classic", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic/4050-21748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21749/", + "id": 21749, + "name": "Heroes Reborn", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn/4050-21749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21751/", + "id": 21751, + "name": "Marvel Comics Presents: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-wolverine/4050-21751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21752/", + "id": 21752, + "name": "Marvel Spotlight: Heroes Reborn-Onslaught Reborn", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-heroes-reborn-onslaught-reborn/4050-21752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21755/", + "id": 21755, + "name": "Mission: Impossible", + "site_detail_url": "https://comicvine.gamespot.com/mission-impossible/4050-21755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21756/", + "id": 21756, + "name": "Onslaught Reborn", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-reborn/4050-21756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21762/", + "id": 21762, + "name": "X-Force and Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-force-and-spider-man/4050-21762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21763/", + "id": 21763, + "name": "X-Force Megazine", + "site_detail_url": "https://comicvine.gamespot.com/x-force-megazine/4050-21763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21769/", + "id": 21769, + "name": "Double Edge: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/double-edge-alpha/4050-21769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21774/", + "id": 21774, + "name": "Astonishing X-Men Sketchbook Special", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-sketchbook-special/4050-21774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21778/", + "id": 21778, + "name": "Ultimate Origins", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-origins/4050-21778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21779/", + "id": 21779, + "name": "Wolverine: Dangerous Games", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-dangerous-games/4050-21779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21781/", + "id": 21781, + "name": "Spider-Man Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-special-edition/4050-21781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21791/", + "id": 21791, + "name": "Skaar: Son of Hulk", + "site_detail_url": "https://comicvine.gamespot.com/skaar-son-of-hulk/4050-21791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21811/", + "id": 21811, + "name": "Secret Invasion: Who Do You Trust?", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-who-do-you-trust/4050-21811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21817/", + "id": 21817, + "name": "X-Force Special: Ain't No Dog", + "site_detail_url": "https://comicvine.gamespot.com/x-force-special-aint-no-dog/4050-21817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21823/", + "id": 21823, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4050-21823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21858/", + "id": 21858, + "name": "Power Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/power-man-annual/4050-21858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21874/", + "id": 21874, + "name": "Secret Invasion: Runaways/Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers/4050-21874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21877/", + "id": 21877, + "name": "Marvel: Shadows and Light", + "site_detail_url": "https://comicvine.gamespot.com/marvel-shadows-and-light/4050-21877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21882/", + "id": 21882, + "name": "The Punisher: Official Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-official-movie-adaptation/4050-21882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21883/", + "id": 21883, + "name": "Wolverine/Punisher Revelation", + "site_detail_url": "https://comicvine.gamespot.com/wolverinepunisher-revelation/4050-21883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21884/", + "id": 21884, + "name": "Punisher vs. Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/punisher-vs-daredevil/4050-21884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21885/", + "id": 21885, + "name": "Spider-Man/Punisher: Family Plot", + "site_detail_url": "https://comicvine.gamespot.com/spider-manpunisher-family-plot/4050-21885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21886/", + "id": 21886, + "name": "The Punisher War Zone Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone-annual/4050-21886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21887/", + "id": 21887, + "name": "Spider-Man vs Punisher", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-punisher/4050-21887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21889/", + "id": 21889, + "name": "Hero Initiative: Mike Wieringo Book: What if THIS Was the Fantastic Four?", + "site_detail_url": "https://comicvine.gamespot.com/hero-initiative-mike-wieringo-book-what-if-this-wa/4050-21889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21893/", + "id": 21893, + "name": "Mythos: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/mythos-captain-america/4050-21893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21895/", + "id": 21895, + "name": "Thor: Reign of Blood", + "site_detail_url": "https://comicvine.gamespot.com/thor-reign-of-blood/4050-21895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21905/", + "id": 21905, + "name": "The Deep", + "site_detail_url": "https://comicvine.gamespot.com/the-deep/4050-21905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21927/", + "id": 21927, + "name": "Books of Doom", + "site_detail_url": "https://comicvine.gamespot.com/books-of-doom/4050-21927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21928/", + "id": 21928, + "name": "Secret Invasion: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line/4050-21928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21934/", + "id": 21934, + "name": "Patsy Walker: Hellcat", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-hellcat/4050-21934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21937/", + "id": 21937, + "name": "Eternals", + "site_detail_url": "https://comicvine.gamespot.com/eternals/4050-21937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21938/", + "id": 21938, + "name": "Spider-Man and Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-mysterio/4050-21938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21940/", + "id": 21940, + "name": "Heroes Reborn: Young Allies", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-young-allies/4050-21940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21942/", + "id": 21942, + "name": "Heroes Reborn: Remnants", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-remnants/4050-21942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21943/", + "id": 21943, + "name": "Heroes Reborn: Doomsday", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-doomsday/4050-21943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21944/", + "id": 21944, + "name": "Heroes Reborn: Rebel", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-rebel/4050-21944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21945/", + "id": 21945, + "name": "Heroes Reborn: Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-masters-of-evil/4050-21945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21946/", + "id": 21946, + "name": "Heroes Reborn: Ashema", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-ashema/4050-21946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21950/", + "id": 21950, + "name": "The 'Nam Magazine", + "site_detail_url": "https://comicvine.gamespot.com/the-nam-magazine/4050-21950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21951/", + "id": 21951, + "name": "'Nuff Said", + "site_detail_url": "https://comicvine.gamespot.com/nuff-said/4050-21951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21973/", + "id": 21973, + "name": "Wolverine: Evolution", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-evolution/4050-21973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21977/", + "id": 21977, + "name": "Civil War Companion", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-companion/4050-21977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21978/", + "id": 21978, + "name": "Civil War: Opening Shot Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-opening-shot-sketchbook/4050-21978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21979/", + "id": 21979, + "name": "District X: Mr. M", + "site_detail_url": "https://comicvine.gamespot.com/district-x-mr-m/4050-21979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21980/", + "id": 21980, + "name": "District X: Underground", + "site_detail_url": "https://comicvine.gamespot.com/district-x-underground/4050-21980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21981/", + "id": 21981, + "name": "Marvel Spotlight: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-civil-war/4050-21981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21982/", + "id": 21982, + "name": "Marvel Mangaverse: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-fantastic-four/4050-21982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21983/", + "id": 21983, + "name": "Giant-Size Super-Stars", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-super-stars/4050-21983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21985/", + "id": 21985, + "name": "New Avengers: The Sentry", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-sentry/4050-21985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21986/", + "id": 21986, + "name": "New Avengers: The Collective", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-collective/4050-21986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21987/", + "id": 21987, + "name": "Ultimate Secret: Ultimate Galactus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-secret-ultimate-galactus/4050-21987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21988/", + "id": 21988, + "name": "What If Jessica Jones Had Joined the Avengers?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-jessica-jones-had-joined-the-avengers/4050-21988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21999/", + "id": 21999, + "name": "The 'Nam", + "site_detail_url": "https://comicvine.gamespot.com/the-nam/4050-21999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22011/", + "id": 22011, + "name": "Origin of Generation X", + "site_detail_url": "https://comicvine.gamespot.com/origin-of-generation-x/4050-22011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22014/", + "id": 22014, + "name": "Tales of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-asgard/4050-22014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22015/", + "id": 22015, + "name": "Spider-Man and the Black Cat: The Evil That Men Do", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-black-cat-the-evil-that-men-do/4050-22015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22032/", + "id": 22032, + "name": "Captain America: White", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-white/4050-22032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22061/", + "id": 22061, + "name": "Pirates of Dark Water", + "site_detail_url": "https://comicvine.gamespot.com/pirates-of-dark-water/4050-22061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22062/", + "id": 22062, + "name": "Heroes For Hire: Ahead of the Curve", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-ahead-of-the-curve/4050-22062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22071/", + "id": 22071, + "name": "The Stand Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-sketchbook/4050-22071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22086/", + "id": 22086, + "name": "Daredevil/Shi", + "site_detail_url": "https://comicvine.gamespot.com/daredevilshi/4050-22086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22095/", + "id": 22095, + "name": "The Sensational She-Hulk in Ceremony", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-she-hulk-in-ceremony/4050-22095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22117/", + "id": 22117, + "name": "Untold Tales of the New Universe: Psi-Force", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe-psi-force/4050-22117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22118/", + "id": 22118, + "name": "Untold Tales of the New Universe: Nightmask", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe-nightmask/4050-22118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22120/", + "id": 22120, + "name": "Avengers: Nights of Wundagore", + "site_detail_url": "https://comicvine.gamespot.com/avengers-nights-of-wundagore/4050-22120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22123/", + "id": 22123, + "name": "Emma Frost: Bloom", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost-bloom/4050-22123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22124/", + "id": 22124, + "name": "Emma Frost: Mind Games", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost-mind-games/4050-22124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22130/", + "id": 22130, + "name": "Marville", + "site_detail_url": "https://comicvine.gamespot.com/marville/4050-22130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22132/", + "id": 22132, + "name": "Ms. Marvel: Monster Smash", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-monster-smash/4050-22132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22133/", + "id": 22133, + "name": "Ms. Marvel: Operation Lightning Storm", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-operation-lightning-storm/4050-22133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22134/", + "id": 22134, + "name": "Namor", + "site_detail_url": "https://comicvine.gamespot.com/namor/4050-22134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22138/", + "id": 22138, + "name": "She-Hulk: Laws of Attraction", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-laws-of-attraction/4050-22138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22139/", + "id": 22139, + "name": "She-Hulk: Planet Without A Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-planet-without-a-hulk/4050-22139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22140/", + "id": 22140, + "name": "She-Hulk: Time Trials", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-time-trials/4050-22140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22142/", + "id": 22142, + "name": "Backpack Marvels: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/backpack-marvels-spider-man/4050-22142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22144/", + "id": 22144, + "name": "Backpack Marvels: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/backpack-marvels-x-men/4050-22144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22146/", + "id": 22146, + "name": "The Official Marvel Index to the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-amazing-spider-ma/4050-22146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22149/", + "id": 22149, + "name": "Black Widow: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-homecoming/4050-22149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22151/", + "id": 22151, + "name": "Gambit: House of Cards", + "site_detail_url": "https://comicvine.gamespot.com/gambit-house-of-cards/4050-22151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22152/", + "id": 22152, + "name": "Gambit: Hath No Fury", + "site_detail_url": "https://comicvine.gamespot.com/gambit-hath-no-fury/4050-22152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22153/", + "id": 22153, + "name": "Hulk: Raging Thunder", + "site_detail_url": "https://comicvine.gamespot.com/hulk-raging-thunder/4050-22153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22154/", + "id": 22154, + "name": "Legion of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters/4050-22154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22155/", + "id": 22155, + "name": "Marvel Romance Redux: Love Is A Four Letter Word", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance-redux-love-is-a-four-letter-word/4050-22155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22156/", + "id": 22156, + "name": "Nightcrawler: The Devil Inside", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-the-devil-inside/4050-22156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22164/", + "id": 22164, + "name": "The Punisher: X-Mas Special", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-x-mas-special/4050-22164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22165/", + "id": 22165, + "name": "Spectacular Spider-Man: Sins Remembered", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-sins-remembered/4050-22165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22166/", + "id": 22166, + "name": "Ultimate Fantastic Four: Crossover", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-crossover/4050-22166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22167/", + "id": 22167, + "name": "Ultimate Fantastic Four: Frightful", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-frightful/4050-22167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22169/", + "id": 22169, + "name": "Ultimate Fantastic Four: Inhuman", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-inhuman/4050-22169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22190/", + "id": 22190, + "name": "Untold Tales of the New Universe: D.P.7", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe-dp7/4050-22190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22191/", + "id": 22191, + "name": "Untold Tales of the New Universe: Justice", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-the-new-universe-justice/4050-22191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22210/", + "id": 22210, + "name": "Thor: Blood Oath", + "site_detail_url": "https://comicvine.gamespot.com/thor-blood-oath/4050-22210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22212/", + "id": 22212, + "name": "Scarlet Spider", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider/4050-22212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22213/", + "id": 22213, + "name": "G.I. Joe: Special Missions", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-special-missions/4050-22213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22216/", + "id": 22216, + "name": "Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth/4050-22216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22227/", + "id": 22227, + "name": "Marvel Western: Western Legends", + "site_detail_url": "https://comicvine.gamespot.com/marvel-western-western-legends/4050-22227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22228/", + "id": 22228, + "name": "Marvel Western: Two-Gun Kid", + "site_detail_url": "https://comicvine.gamespot.com/marvel-western-two-gun-kid/4050-22228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22229/", + "id": 22229, + "name": "Marvel Western: Strange Westerns Starring the Black Rider", + "site_detail_url": "https://comicvine.gamespot.com/marvel-western-strange-westerns-starring-the-black/4050-22229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22230/", + "id": 22230, + "name": "Marvel Western: Kid Colt and the Arizona Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-western-kid-colt-and-the-arizona-girl/4050-22230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22231/", + "id": 22231, + "name": "Marvel Westerns: Outlaw Files", + "site_detail_url": "https://comicvine.gamespot.com/marvel-westerns-outlaw-files/4050-22231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22281/", + "id": 22281, + "name": "Dark Tower: End-World Almanac", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-end-world-almanac/4050-22281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22283/", + "id": 22283, + "name": "Marvel Illustrated: The Three Musketeers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-three-musketeers/4050-22283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22284/", + "id": 22284, + "name": "Secret Invasion Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-directors-cut/4050-22284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22286/", + "id": 22286, + "name": "Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme/4050-22286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22309/", + "id": 22309, + "name": "Essential Marvel Horror", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-horror/4050-22309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22316/", + "id": 22316, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4050-22316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22319/", + "id": 22319, + "name": "Marvel Adventures Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes/4050-22319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22320/", + "id": 22320, + "name": "Witches", + "site_detail_url": "https://comicvine.gamespot.com/witches/4050-22320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22351/", + "id": 22351, + "name": "Startling Stories: Fantastic Four - Unstable Molecules", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-fantastic-four-unstable-molecule/4050-22351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22376/", + "id": 22376, + "name": "Power Pachyderms", + "site_detail_url": "https://comicvine.gamespot.com/power-pachyderms/4050-22376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22389/", + "id": 22389, + "name": "Marvel Milestones", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones/4050-22389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22390/", + "id": 22390, + "name": "Skrulls!", + "site_detail_url": "https://comicvine.gamespot.com/skrulls/4050-22390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22394/", + "id": 22394, + "name": "Mini Marvels: Rock, Paper, Scissors", + "site_detail_url": "https://comicvine.gamespot.com/mini-marvels-rock-paper-scissors/4050-22394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22401/", + "id": 22401, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-22401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22403/", + "id": 22403, + "name": "Fantastic Four: True Story", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-true-story/4050-22403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22404/", + "id": 22404, + "name": "Newuniversal: 1959", + "site_detail_url": "https://comicvine.gamespot.com/newuniversal-1959/4050-22404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22405/", + "id": 22405, + "name": "The Amazing Spider-Man: EXTRA!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-extra/4050-22405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22406/", + "id": 22406, + "name": "True Believers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers/4050-22406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22411/", + "id": 22411, + "name": "Typhoid", + "site_detail_url": "https://comicvine.gamespot.com/typhoid/4050-22411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22414/", + "id": 22414, + "name": "X-Men: Odd Men Out", + "site_detail_url": "https://comicvine.gamespot.com/x-men-odd-men-out/4050-22414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22438/", + "id": 22438, + "name": "Spider-Man and Batman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-batman/4050-22438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22443/", + "id": 22443, + "name": "The Beast", + "site_detail_url": "https://comicvine.gamespot.com/the-beast/4050-22443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22444/", + "id": 22444, + "name": "Skrulls vs. Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/skrulls-vs-power-pack/4050-22444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22448/", + "id": 22448, + "name": "Avengers: The Crossing", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-crossing/4050-22448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22454/", + "id": 22454, + "name": "Star Trek: Mirror, Mirror", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-mirror-mirror/4050-22454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22455/", + "id": 22455, + "name": "The Official Handbook of the Marvel Universe: Master Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-maste/4050-22455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22497/", + "id": 22497, + "name": "NYX: No Way Home", + "site_detail_url": "https://comicvine.gamespot.com/nyx-no-way-home/4050-22497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22499/", + "id": 22499, + "name": "Venom: Dark Origin", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin/4050-22499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22502/", + "id": 22502, + "name": "Spider-Man Loves Mary Jane Season 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-season-2/4050-22502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22507/", + "id": 22507, + "name": "Wolverine: Killing Made Simple", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-killing-made-simple/4050-22507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22508/", + "id": 22508, + "name": "King-Size Spider-Man Summer Special", + "site_detail_url": "https://comicvine.gamespot.com/king-size-spider-man-summer-special/4050-22508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22509/", + "id": 22509, + "name": "Franklin Richards: Summer Smackdown!", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-summer-smackdown/4050-22509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22510/", + "id": 22510, + "name": "Giant-Size Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-ms-marvel/4050-22510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22522/", + "id": 22522, + "name": "Archie Meets the Punisher", + "site_detail_url": "https://comicvine.gamespot.com/archie-meets-the-punisher/4050-22522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22554/", + "id": 22554, + "name": "Venom Super Special", + "site_detail_url": "https://comicvine.gamespot.com/venom-super-special/4050-22554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22555/", + "id": 22555, + "name": "Defenders Annual", + "site_detail_url": "https://comicvine.gamespot.com/defenders-annual/4050-22555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22560/", + "id": 22560, + "name": "The New Eternals - Apocalypse Now", + "site_detail_url": "https://comicvine.gamespot.com/the-new-eternals-apocalypse-now/4050-22560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22561/", + "id": 22561, + "name": "Secret Invasion: Thor", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-thor/4050-22561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22562/", + "id": 22562, + "name": "Secret Invasion: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-x-men/4050-22562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22563/", + "id": 22563, + "name": "Arena", + "site_detail_url": "https://comicvine.gamespot.com/arena/4050-22563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22564/", + "id": 22564, + "name": "The Life of Christ", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-christ/4050-22564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22565/", + "id": 22565, + "name": "The Mighty Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-heroes/4050-22565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22566/", + "id": 22566, + "name": "2001, A Space Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/2001-a-space-odyssey/4050-22566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22568/", + "id": 22568, + "name": "2099 Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/2099-sketchbook/4050-22568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22569/", + "id": 22569, + "name": "2099: World of Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/2099-world-of-tomorrow/4050-22569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22574/", + "id": 22574, + "name": "Heroes Reborn: Doom", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-doom/4050-22574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22575/", + "id": 22575, + "name": "Secret Invasion: Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-inhumans/4050-22575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22579/", + "id": 22579, + "name": "Daredevil By Ed Brubaker Saga", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-ed-brubaker-saga/4050-22579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22581/", + "id": 22581, + "name": "The Handbook of the Conan Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-handbook-of-the-conan-universe/4050-22581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22607/", + "id": 22607, + "name": "X-Men: Children of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/x-men-children-of-the-atom/4050-22607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22608/", + "id": 22608, + "name": "X-Men: Ronin", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ronin/4050-22608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22609/", + "id": 22609, + "name": "Spider-Man and the New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-new-mutants/4050-22609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22610/", + "id": 22610, + "name": "X-Men: Yearbook 1999", + "site_detail_url": "https://comicvine.gamespot.com/x-men-yearbook-1999/4050-22610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22614/", + "id": 22614, + "name": "X-Men: The Hellfire Club", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-hellfire-club/4050-22614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22615/", + "id": 22615, + "name": "Excalibur: XX Crossing", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-xx-crossing/4050-22615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22616/", + "id": 22616, + "name": "Sunfire & Big Hero 6", + "site_detail_url": "https://comicvine.gamespot.com/sunfire-big-hero-6/4050-22616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22629/", + "id": 22629, + "name": "X-Men Origins: Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-jean-grey/4050-22629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22645/", + "id": 22645, + "name": "40 Years of the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/40-years-of-the-amazing-spider-man/4050-22645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22646/", + "id": 22646, + "name": "40 Years of the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/40-years-of-the-avengers/4050-22646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22647/", + "id": 22647, + "name": "40 Years of X-Men", + "site_detail_url": "https://comicvine.gamespot.com/40-years-of-x-men/4050-22647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22648/", + "id": 22648, + "name": "411", + "site_detail_url": "https://comicvine.gamespot.com/411/4050-22648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22649/", + "id": 22649, + "name": "44 Years of the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/44-years-of-the-fantastic-four/4050-22649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22653/", + "id": 22653, + "name": "Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain/4050-22653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22669/", + "id": 22669, + "name": "Amazing Spider-Man Family", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family/4050-22669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22673/", + "id": 22673, + "name": "Spider-Man: India", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-india/4050-22673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22683/", + "id": 22683, + "name": "Domino", + "site_detail_url": "https://comicvine.gamespot.com/domino/4050-22683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22684/", + "id": 22684, + "name": "Immortal Iron Fist: The Origin of Danny Rand", + "site_detail_url": "https://comicvine.gamespot.com/immortal-iron-fist-the-origin-of-danny-rand/4050-22684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22685/", + "id": 22685, + "name": "Giant-Sized Gambit", + "site_detail_url": "https://comicvine.gamespot.com/giant-sized-gambit/4050-22685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22686/", + "id": 22686, + "name": "X-Force 1999", + "site_detail_url": "https://comicvine.gamespot.com/x-force-1999/4050-22686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22687/", + "id": 22687, + "name": "X-Men Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ashcan/4050-22687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22688/", + "id": 22688, + "name": "X-Men Archives Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/x-men-archives-sketchbook/4050-22688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22689/", + "id": 22689, + "name": "X-Men Alterniverse Visions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-alterniverse-visions/4050-22689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22690/", + "id": 22690, + "name": "X-Factor: Layla Miller", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-layla-miller/4050-22690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22700/", + "id": 22700, + "name": "Gambit 1999", + "site_detail_url": "https://comicvine.gamespot.com/gambit-1999/4050-22700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22703/", + "id": 22703, + "name": "Alpha Flight Special", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-special/4050-22703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22704/", + "id": 22704, + "name": "Colossus", + "site_detail_url": "https://comicvine.gamespot.com/colossus/4050-22704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22705/", + "id": 22705, + "name": "Strong Guy Reborn", + "site_detail_url": "https://comicvine.gamespot.com/strong-guy-reborn/4050-22705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22706/", + "id": 22706, + "name": "Team X 2000", + "site_detail_url": "https://comicvine.gamespot.com/team-x-2000/4050-22706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22711/", + "id": 22711, + "name": "The Pulse: House of M Special", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-house-of-m-special/4050-22711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22712/", + "id": 22712, + "name": "Mutopia X", + "site_detail_url": "https://comicvine.gamespot.com/mutopia-x/4050-22712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22719/", + "id": 22719, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4050-22719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22769/", + "id": 22769, + "name": "Secret Invasion: The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-the-amazing-spider-man/4050-22769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22775/", + "id": 22775, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-22775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22786/", + "id": 22786, + "name": "Newuniversal: Conqueror", + "site_detail_url": "https://comicvine.gamespot.com/newuniversal-conqueror/4050-22786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22808/", + "id": 22808, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-22808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22810/", + "id": 22810, + "name": "Venom: Seed of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/venom-seed-of-darkness/4050-22810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22814/", + "id": 22814, + "name": "Captain America Exclusive ComiCon Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-exclusive-comicon-edition/4050-22814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22819/", + "id": 22819, + "name": "Seeker 3000", + "site_detail_url": "https://comicvine.gamespot.com/seeker-3000/4050-22819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22826/", + "id": 22826, + "name": "X-Men Universe: Past, Present and Future", + "site_detail_url": "https://comicvine.gamespot.com/x-men-universe-past-present-and-future/4050-22826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22854/", + "id": 22854, + "name": "Marvel Apes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes/4050-22854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22867/", + "id": 22867, + "name": "X-Men: Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/x-men-manifest-destiny/4050-22867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22871/", + "id": 22871, + "name": "Ms. Marvel Annual", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-annual/4050-22871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22872/", + "id": 22872, + "name": "X-Men: Return of Magik", + "site_detail_url": "https://comicvine.gamespot.com/x-men-return-of-magik/4050-22872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22874/", + "id": 22874, + "name": "Spider-Man: The Power of Terror", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-power-of-terror/4050-22874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22875/", + "id": 22875, + "name": "X-Men Origins: Beast", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-beast/4050-22875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22880/", + "id": 22880, + "name": "Iron Man: Golden Avenger", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-golden-avenger/4050-22880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22896/", + "id": 22896, + "name": "Li'l Kids", + "site_detail_url": "https://comicvine.gamespot.com/lil-kids/4050-22896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22899/", + "id": 22899, + "name": "Marvels Comics: Spider-Man #1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-spider-man-1/4050-22899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22900/", + "id": 22900, + "name": "Toxic Avenger", + "site_detail_url": "https://comicvine.gamespot.com/toxic-avenger/4050-22900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22901/", + "id": 22901, + "name": "Two-Gun Kid: The Sunset Riders", + "site_detail_url": "https://comicvine.gamespot.com/two-gun-kid-the-sunset-riders/4050-22901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22911/", + "id": 22911, + "name": "Hulk Chronicles: WWH", + "site_detail_url": "https://comicvine.gamespot.com/hulk-chronicles-wwh/4050-22911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22914/", + "id": 22914, + "name": "Conan the Barbarian: The Usurper", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-the-usurper/4050-22914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22915/", + "id": 22915, + "name": "Mythos: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/mythos-ghost-rider/4050-22915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22924/", + "id": 22924, + "name": "Marvel: Your Universe Saga", + "site_detail_url": "https://comicvine.gamespot.com/marvel-your-universe-saga/4050-22924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22947/", + "id": 22947, + "name": "Conan the Barbarian: Stalker of the Woods", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-stalker-of-the-woods/4050-22947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22955/", + "id": 22955, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-22955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22965/", + "id": 22965, + "name": "Ultimate X-Men/Ultimate Fantastic Four Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-menultimate-fantastic-four-annual/4050-22965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22968/", + "id": 22968, + "name": "The Stand: Captain Trips", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-captain-trips/4050-22968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22973/", + "id": 22973, + "name": "House of M: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-civil-war/4050-22973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22978/", + "id": 22978, + "name": "King-Size Cable Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/king-size-cable-spectacular/4050-22978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22981/", + "id": 22981, + "name": "Official Handbook of the Marvel Universe A to Z", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22982/", + "id": 22982, + "name": "The Dark Tower: Treachery", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-treachery/4050-22982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22983/", + "id": 22983, + "name": "Big Hero 6", + "site_detail_url": "https://comicvine.gamespot.com/big-hero-6/4050-22983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22984/", + "id": 22984, + "name": "Wolverine: Saudade", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-saudade/4050-22984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22985/", + "id": 22985, + "name": "Marvel Illustrated: The Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-odyssey/4050-22985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22988/", + "id": 22988, + "name": "X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-annual/4050-22988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23002/", + "id": 23002, + "name": "Ultimate Adventures", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-adventures/4050-23002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23003/", + "id": 23003, + "name": "Ultimate Daredevil/Elektra", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-daredevilelektra/4050-23003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23004/", + "id": 23004, + "name": "Wolverine: Blood Hungry", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-blood-hungry/4050-23004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23033/", + "id": 23033, + "name": "The New Avengers: American Armed Forces Exclusive", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-american-armed-forces-exclusive/4050-23033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23040/", + "id": 23040, + "name": "Elektra and Wolverine: The Redeemer", + "site_detail_url": "https://comicvine.gamespot.com/elektra-and-wolverine-the-redeemer/4050-23040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23047/", + "id": 23047, + "name": "Wolverine: Blood & Sorrow", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-blood-sorrow/4050-23047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23051/", + "id": 23051, + "name": "Wolverine: Killing", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-killing/4050-23051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23052/", + "id": 23052, + "name": "Wolverine: Inner Fury", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-inner-fury/4050-23052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23053/", + "id": 23053, + "name": "Wolverine: The Jungle Adventure", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-jungle-adventure/4050-23053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23054/", + "id": 23054, + "name": "Wolverine: Blood Debt", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-blood-debt/4050-23054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23055/", + "id": 23055, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-23055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23064/", + "id": 23064, + "name": "Wolverine Classic", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-classic/4050-23064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23067/", + "id": 23067, + "name": "X-Force & Cable: The Legend Returns", + "site_detail_url": "https://comicvine.gamespot.com/x-force-cable-the-legend-returns/4050-23067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23068/", + "id": 23068, + "name": "X-Men: Mutant Genesis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-mutant-genesis/4050-23068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23071/", + "id": 23071, + "name": "Heroes Reborn: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-fantastic-four/4050-23071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23074/", + "id": 23074, + "name": "Gene Colan Tribute", + "site_detail_url": "https://comicvine.gamespot.com/gene-colan-tribute/4050-23074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23083/", + "id": 23083, + "name": "What If? Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/what-if-wolverine/4050-23083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23084/", + "id": 23084, + "name": "What if? Wolverine: Enemy of the State", + "site_detail_url": "https://comicvine.gamespot.com/what-if-wolverine-enemy-of-the-state/4050-23084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23088/", + "id": 23088, + "name": "The Age of The Sentry", + "site_detail_url": "https://comicvine.gamespot.com/the-age-of-the-sentry/4050-23088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23135/", + "id": 23135, + "name": "The Immortal Iron Fist: Orson Randall and the Death Queen of California", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-orson-randall-and-the-death/4050-23135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23137/", + "id": 23137, + "name": "Ultimate Fantastic Four/Ultimate X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-fourultimate-x-men-annual/4050-23137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23140/", + "id": 23140, + "name": "Carnage: Mind Bomb", + "site_detail_url": "https://comicvine.gamespot.com/carnage-mind-bomb/4050-23140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23167/", + "id": 23167, + "name": "Pro Action X-Men Giveaway", + "site_detail_url": "https://comicvine.gamespot.com/pro-action-x-men-giveaway/4050-23167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23168/", + "id": 23168, + "name": "The Uncanny X-Men at the State Fair of Texas", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-at-the-state-fair-of-texas/4050-23168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23172/", + "id": 23172, + "name": "Skaar: Son of Hulk Presents - Savage World of Sakaar", + "site_detail_url": "https://comicvine.gamespot.com/skaar-son-of-hulk-presents-savage-world-of-sakaar/4050-23172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23183/", + "id": 23183, + "name": "Web of Spider-Man Super Special", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man-super-special/4050-23183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23192/", + "id": 23192, + "name": "Marvel Mangaverse: The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-the-punisher/4050-23192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23204/", + "id": 23204, + "name": "Stan Lee Meets Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-doctor-strange/4050-23204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23205/", + "id": 23205, + "name": "Doctor Strange Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-special-edition/4050-23205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23206/", + "id": 23206, + "name": "Giant-Size Dr. Strange", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-dr-strange/4050-23206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23208/", + "id": 23208, + "name": "Spider-Girl 1999", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-1999/4050-23208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23209/", + "id": 23209, + "name": "Doctor Strange & Ghost Rider Special", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-ghost-rider-special/4050-23209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23220/", + "id": 23220, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse/4050-23220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23222/", + "id": 23222, + "name": "March On Ultimatum Saga", + "site_detail_url": "https://comicvine.gamespot.com/march-on-ultimatum-saga/4050-23222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23226/", + "id": 23226, + "name": "Custom: Lions Gate Dr. Strange", + "site_detail_url": "https://comicvine.gamespot.com/custom-lions-gate-dr-strange/4050-23226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23227/", + "id": 23227, + "name": "Doctor Strange & Doctor Doom: Triumph and Torment", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-doctor-doom-triumph-and-torment/4050-23227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23228/", + "id": 23228, + "name": "Essential Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/essential-doctor-strange/4050-23228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23229/", + "id": 23229, + "name": "Stan Lee Meets Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-silver-surfer/4050-23229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23230/", + "id": 23230, + "name": "Stan Lee Meets Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-doctor-doom/4050-23230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23234/", + "id": 23234, + "name": "Stan Lee Meets The Thing", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-the-thing/4050-23234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23235/", + "id": 23235, + "name": "Stan Lee Meets The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets-the-amazing-spider-man/4050-23235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23238/", + "id": 23238, + "name": "Ultimate Comics Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-wolverine/4050-23238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23239/", + "id": 23239, + "name": "Halloween Megazine", + "site_detail_url": "https://comicvine.gamespot.com/halloween-megazine/4050-23239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23276/", + "id": 23276, + "name": "Sentinel Squad O*N*E", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-squad-one/4050-23276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23306/", + "id": 23306, + "name": "The Amazing Spider-Man: The Origin of the Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-origin-of-the-hobgoblin/4050-23306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23335/", + "id": 23335, + "name": "Marvel Zombies 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-3/4050-23335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23350/", + "id": 23350, + "name": "X-Men: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/x-men-original-sin/4050-23350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23363/", + "id": 23363, + "name": "Ender's Game: Battle School", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-battle-school/4050-23363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23386/", + "id": 23386, + "name": "Alpha Flight Classic", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-classic/4050-23386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23387/", + "id": 23387, + "name": "The Champions Classic", + "site_detail_url": "https://comicvine.gamespot.com/the-champions-classic/4050-23387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23388/", + "id": 23388, + "name": "Marvel Masterworks: Rawhide Kid", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-rawhide-kid/4050-23388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23401/", + "id": 23401, + "name": "Marvel Masterworks: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-avengers/4050-23401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23402/", + "id": 23402, + "name": "Marvel Masterworks: The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-amazing-spider-man/4050-23402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23406/", + "id": 23406, + "name": "Spider-Man Super Special", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-super-special/4050-23406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23407/", + "id": 23407, + "name": "Spectacular Spider-Man Super Special", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-super-special/4050-23407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23418/", + "id": 23418, + "name": "Hulk Monster-Size Special", + "site_detail_url": "https://comicvine.gamespot.com/hulk-monster-size-special/4050-23418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23423/", + "id": 23423, + "name": "Marvel Illustrated Books: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-books-fantastic-four/4050-23423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23424/", + "id": 23424, + "name": "Marvel Illustrated: Star Wars: Return of the Jedi", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-star-wars-return-of-the-jedi/4050-23424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23425/", + "id": 23425, + "name": "Marvel Illustrated Books: The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-books-the-avengers/4050-23425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23426/", + "id": 23426, + "name": "Marvel Illustrated Books: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-books-x-men/4050-23426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23443/", + "id": 23443, + "name": "X-Men: Worlds Apart", + "site_detail_url": "https://comicvine.gamespot.com/x-men-worlds-apart/4050-23443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23445/", + "id": 23445, + "name": "Disney's Aladdin", + "site_detail_url": "https://comicvine.gamespot.com/disneys-aladdin/4050-23445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23449/", + "id": 23449, + "name": "Marvel Masterworks: Atlas Era Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-heroes/4050-23449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23450/", + "id": 23450, + "name": "Marvel Masterworks: Atlas Era Tales To Astonish", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-tales-to-astonish/4050-23450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23451/", + "id": 23451, + "name": "Marvel Masterworks: Atlas Era Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-strange-tales/4050-23451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23481/", + "id": 23481, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-23481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23485/", + "id": 23485, + "name": "Thor: Truth of History", + "site_detail_url": "https://comicvine.gamespot.com/thor-truth-of-history/4050-23485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23486/", + "id": 23486, + "name": "Wolverine: Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-manifest-destiny/4050-23486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23492/", + "id": 23492, + "name": "Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/human-torch/4050-23492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23498/", + "id": 23498, + "name": "Ghost Rider: Danny Ketch", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-danny-ketch/4050-23498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23510/", + "id": 23510, + "name": "Essential Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/essential-amazing-spider-man/4050-23510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23537/", + "id": 23537, + "name": "Essential Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/essential-iron-man/4050-23537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23541/", + "id": 23541, + "name": "Astonishing X-Men: Ghost Boxes", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-ghost-boxes/4050-23541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23542/", + "id": 23542, + "name": "Ultimate Captain America Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-captain-america-annual/4050-23542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23548/", + "id": 23548, + "name": "Captain America Theater of War: Operation Zero-Point", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-operation-zero-poin/4050-23548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23558/", + "id": 23558, + "name": "Essential Avengers", + "site_detail_url": "https://comicvine.gamespot.com/essential-avengers/4050-23558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23561/", + "id": 23561, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-23561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23569/", + "id": 23569, + "name": "Avengers Finale", + "site_detail_url": "https://comicvine.gamespot.com/avengers-finale/4050-23569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23572/", + "id": 23572, + "name": "Essential Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/essential-fantastic-four/4050-23572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23576/", + "id": 23576, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-23576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23586/", + "id": 23586, + "name": "Bullet Points", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points/4050-23586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23590/", + "id": 23590, + "name": "Marvel Atlas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-atlas/4050-23590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23592/", + "id": 23592, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum/4050-23592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23597/", + "id": 23597, + "name": "Adam: Legend of the Blue Marvel", + "site_detail_url": "https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel/4050-23597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23602/", + "id": 23602, + "name": "Avengers: The Initiative Special", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-special/4050-23602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23606/", + "id": 23606, + "name": "X-Men/Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-menspider-man/4050-23606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23620/", + "id": 23620, + "name": "Iron Man: The End", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-end/4050-23620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23629/", + "id": 23629, + "name": "Howard the Duck Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-holiday-special/4050-23629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23630/", + "id": 23630, + "name": "Crazy Magazine", + "site_detail_url": "https://comicvine.gamespot.com/crazy-magazine/4050-23630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23631/", + "id": 23631, + "name": "Howard the Duck Annual", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-annual/4050-23631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23632/", + "id": 23632, + "name": "The Official Marvel Index to Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-marvel-team-up/4050-23632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23634/", + "id": 23634, + "name": "Marvels: Portraits", + "site_detail_url": "https://comicvine.gamespot.com/marvels-portraits/4050-23634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23640/", + "id": 23640, + "name": "Essential Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/essential-human-torch/4050-23640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23656/", + "id": 23656, + "name": "Wolverine: Chop Shop", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-chop-shop/4050-23656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23665/", + "id": 23665, + "name": "Scarlet Spider Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-unlimited/4050-23665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23666/", + "id": 23666, + "name": "The Spectacular Scarlet Spider", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-scarlet-spider/4050-23666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23671/", + "id": 23671, + "name": "Daredevil & Captain America: Dead On Arrival", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-captain-america-dead-on-arrival/4050-23671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23676/", + "id": 23676, + "name": "Marvel Spotlight: Uncanny X-Men 500 Issues Celebration", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-uncanny-x-men-500-issues-celebrat/4050-23676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23685/", + "id": 23685, + "name": "Disney's The Lion King", + "site_detail_url": "https://comicvine.gamespot.com/disneys-the-lion-king/4050-23685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23716/", + "id": 23716, + "name": "Punisher War Journal Annual", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-annual/4050-23716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23724/", + "id": 23724, + "name": "Essential Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-team-up/4050-23724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23733/", + "id": 23733, + "name": "X-Men: First Class Giant-Sized Special", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-giant-sized-special/4050-23733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23747/", + "id": 23747, + "name": "Essential Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/essential-captain-marvel/4050-23747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23783/", + "id": 23783, + "name": "Weapon X: First Class", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-first-class/4050-23783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23791/", + "id": 23791, + "name": "Wolverine and Ghost Rider in Acts of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-ghost-rider-in-acts-of-vengeance/4050-23791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23815/", + "id": 23815, + "name": "Wolverine: Black Rio", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-black-rio/4050-23815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23816/", + "id": 23816, + "name": "Wolverine: Bloodlust", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-bloodlust/4050-23816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23817/", + "id": 23817, + "name": "Wolverine Encyclopedia", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-encyclopedia/4050-23817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23846/", + "id": 23846, + "name": "Essential Thor", + "site_detail_url": "https://comicvine.gamespot.com/essential-thor/4050-23846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23852/", + "id": 23852, + "name": "Eternals Annual", + "site_detail_url": "https://comicvine.gamespot.com/eternals-annual/4050-23852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23853/", + "id": 23853, + "name": "Billy The Marlin", + "site_detail_url": "https://comicvine.gamespot.com/billy-the-marlin/4050-23853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23854/", + "id": 23854, + "name": "Blackwulf", + "site_detail_url": "https://comicvine.gamespot.com/blackwulf/4050-23854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23858/", + "id": 23858, + "name": "Cheap Trick: Busted", + "site_detail_url": "https://comicvine.gamespot.com/cheap-trick-busted/4050-23858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23859/", + "id": 23859, + "name": "Ms. Marvel Special: Storyteller", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-special-storyteller/4050-23859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23866/", + "id": 23866, + "name": "Double Dragon", + "site_detail_url": "https://comicvine.gamespot.com/double-dragon/4050-23866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23868/", + "id": 23868, + "name": "Generic Comic Book", + "site_detail_url": "https://comicvine.gamespot.com/generic-comic-book/4050-23868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23870/", + "id": 23870, + "name": "Healthy Heroes", + "site_detail_url": "https://comicvine.gamespot.com/healthy-heroes/4050-23870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23871/", + "id": 23871, + "name": "Home Depot Safety Heroes", + "site_detail_url": "https://comicvine.gamespot.com/home-depot-safety-heroes/4050-23871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23873/", + "id": 23873, + "name": "The Life of Pope John Paul II", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-pope-john-paul-ii/4050-23873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23874/", + "id": 23874, + "name": "Lunatik", + "site_detail_url": "https://comicvine.gamespot.com/lunatik/4050-23874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23876/", + "id": 23876, + "name": "Nightcat", + "site_detail_url": "https://comicvine.gamespot.com/nightcat/4050-23876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23878/", + "id": 23878, + "name": "Robotix", + "site_detail_url": "https://comicvine.gamespot.com/robotix/4050-23878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23879/", + "id": 23879, + "name": "Suburban Jersey Ninja She-Devils", + "site_detail_url": "https://comicvine.gamespot.com/suburban-jersey-ninja-she-devils/4050-23879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23880/", + "id": 23880, + "name": "Triple-A Baseball Heroes", + "site_detail_url": "https://comicvine.gamespot.com/triple-a-baseball-heroes/4050-23880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23881/", + "id": 23881, + "name": "Tutenstein", + "site_detail_url": "https://comicvine.gamespot.com/tutenstein/4050-23881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23883/", + "id": 23883, + "name": "Virtua Fighter", + "site_detail_url": "https://comicvine.gamespot.com/virtua-fighter/4050-23883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23888/", + "id": 23888, + "name": "Marvel Treasury Special Giant Superhero Holiday Grab-Bag", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-special-giant-superhero-holiday-gr/4050-23888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23905/", + "id": 23905, + "name": "Wolverine and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-power-pack/4050-23905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23933/", + "id": 23933, + "name": "Counter X", + "site_detail_url": "https://comicvine.gamespot.com/counter-x/4050-23933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23934/", + "id": 23934, + "name": "Essential Captain America", + "site_detail_url": "https://comicvine.gamespot.com/essential-captain-america/4050-23934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23935/", + "id": 23935, + "name": "Essential Super-Villain Team Up", + "site_detail_url": "https://comicvine.gamespot.com/essential-super-villain-team-up/4050-23935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23936/", + "id": 23936, + "name": "Essential Classic X-Men", + "site_detail_url": "https://comicvine.gamespot.com/essential-classic-x-men/4050-23936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23940/", + "id": 23940, + "name": "Essential Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/essential-daredevil/4050-23940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23941/", + "id": 23941, + "name": "What If? Spider-Man: The Other", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-the-other/4050-23941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23949/", + "id": 23949, + "name": "Essential Marvel Two-In-One", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-two-in-one/4050-23949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23950/", + "id": 23950, + "name": "Essential Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/essential-ant-man/4050-23950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24034/", + "id": 24034, + "name": "Livewires", + "site_detail_url": "https://comicvine.gamespot.com/livewires/4050-24034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24079/", + "id": 24079, + "name": "X-Infernus", + "site_detail_url": "https://comicvine.gamespot.com/x-infernus/4050-24079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24109/", + "id": 24109, + "name": "Thor: Man of War", + "site_detail_url": "https://comicvine.gamespot.com/thor-man-of-war/4050-24109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24239/", + "id": 24239, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor/4050-24239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24240/", + "id": 24240, + "name": "X-Factor - Prisoner of Love", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-prisoner-of-love/4050-24240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24249/", + "id": 24249, + "name": "She-Hulk: Cosmic Collision", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-cosmic-collision/4050-24249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24270/", + "id": 24270, + "name": "Iron Man/Hulk/Fury", + "site_detail_url": "https://comicvine.gamespot.com/iron-manhulkfury/4050-24270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24271/", + "id": 24271, + "name": "X-Men Noir", + "site_detail_url": "https://comicvine.gamespot.com/x-men-noir/4050-24271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24272/", + "id": 24272, + "name": "What If? House Of M", + "site_detail_url": "https://comicvine.gamespot.com/what-if-house-of-m/4050-24272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24355/", + "id": 24355, + "name": "Universe X Special: 4", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-4/4050-24355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24356/", + "id": 24356, + "name": "Universe X Special: Spidey", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-spidey/4050-24356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24360/", + "id": 24360, + "name": "Universe X Special: Cap", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-cap/4050-24360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24399/", + "id": 24399, + "name": "Marvels: Eye of the Camera", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera/4050-24399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24450/", + "id": 24450, + "name": "Hulk Family: Green Genes", + "site_detail_url": "https://comicvine.gamespot.com/hulk-family-green-genes/4050-24450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24491/", + "id": 24491, + "name": "Moon Knight: Silent Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-silent-knight/4050-24491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24495/", + "id": 24495, + "name": "Universe X Special: Beasts", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-beasts/4050-24495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24499/", + "id": 24499, + "name": "Universe X Special: Iron Men", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-iron-men/4050-24499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24500/", + "id": 24500, + "name": "Iron Man 2020", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020/4050-24500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24551/", + "id": 24551, + "name": "Civil War: Amazing Spider-Man Decisions", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-amazing-spider-man-decisions/4050-24551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24578/", + "id": 24578, + "name": "Secret Invasion: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-dark-reign/4050-24578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24584/", + "id": 24584, + "name": "What If? Fallen Son", + "site_detail_url": "https://comicvine.gamespot.com/what-if-fallen-son/4050-24584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24595/", + "id": 24595, + "name": "Wolverine: Flies to a Spider", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-flies-to-a-spider/4050-24595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24614/", + "id": 24614, + "name": "Cosmic Powers Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-powers-unlimited/4050-24614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24615/", + "id": 24615, + "name": "The Wonderful Wizard of Oz", + "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz/4050-24615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24617/", + "id": 24617, + "name": "Paradise X Special: Xen", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-special-xen/4050-24617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24676/", + "id": 24676, + "name": "Marvel Spotlight: Secret Invasion Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-secret-invasion-aftermath/4050-24676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24677/", + "id": 24677, + "name": "Paradise X Special: Devils", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-special-devils/4050-24677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24715/", + "id": 24715, + "name": "Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk/4050-24715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24744/", + "id": 24744, + "name": "Paradise X Special: Ragnarok", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-special-ragnarok/4050-24744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24745/", + "id": 24745, + "name": "Essential X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-factor/4050-24745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24750/", + "id": 24750, + "name": "Paradise X Special: A", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-special-a/4050-24750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24870/", + "id": 24870, + "name": "Dark Reign: New Nation", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-new-nation/4050-24870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24874/", + "id": 24874, + "name": "Lords of Avalon: Knight of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/lords-of-avalon-knight-of-darkness/4050-24874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24916/", + "id": 24916, + "name": "Spider-Man: Noir", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir/4050-24916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24917/", + "id": 24917, + "name": "X-Men: Kingbreaker", + "site_detail_url": "https://comicvine.gamespot.com/x-men-kingbreaker/4050-24917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24926/", + "id": 24926, + "name": "What If? Newer Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/what-if-newer-fantastic-four/4050-24926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25055/", + "id": 25055, + "name": "Age of Innocence: The Rebirth of Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/age-of-innocence-the-rebirth-of-iron-man/4050-25055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25067/", + "id": 25067, + "name": "Thor: God-Size Special", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-size-special/4050-25067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25090/", + "id": 25090, + "name": "All About Collecting Comic Books", + "site_detail_url": "https://comicvine.gamespot.com/all-about-collecting-comic-books/4050-25090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25094/", + "id": 25094, + "name": "The Amazing Spider-Man Battles Ignorance", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-battles-ignorance/4050-25094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25095/", + "id": 25095, + "name": "Amazing Spider-Man Toy Fair Special", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-toy-fair-special/4050-25095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25127/", + "id": 25127, + "name": "What If? X-Men: Age Of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/what-if-x-men-age-of-apocalypse/4050-25127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25144/", + "id": 25144, + "name": "Spider-Man: The Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-saga/4050-25144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25145/", + "id": 25145, + "name": "The Avengers Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-collectors-edition/4050-25145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25146/", + "id": 25146, + "name": "Avengers: The Morgan Conquest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-morgan-conquest/4050-25146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25147/", + "id": 25147, + "name": "Avengers: Timeslide", + "site_detail_url": "https://comicvine.gamespot.com/avengers-timeslide/4050-25147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25148/", + "id": 25148, + "name": "Avengers: Avengers/X-Men - Bloodties", + "site_detail_url": "https://comicvine.gamespot.com/avengers-avengers-x-men-bloodties/4050-25148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25151/", + "id": 25151, + "name": "Avengers: Casebook 1999", + "site_detail_url": "https://comicvine.gamespot.com/avengers-casebook-1999/4050-25151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25178/", + "id": 25178, + "name": "Captain America Theater of War: America First", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-america-first/4050-25178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25190/", + "id": 25190, + "name": "Secret Invasion: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-requiem/4050-25190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25193/", + "id": 25193, + "name": "X-Men: Messiah Complex – Mutant Files", + "site_detail_url": "https://comicvine.gamespot.com/x-men-messiah-complex-mutant-files/4050-25193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25194/", + "id": 25194, + "name": "What If? Spider-Man: Back in Black", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-back-in-black/4050-25194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25231/", + "id": 25231, + "name": "Bill & Ted's Excellent Comic Book", + "site_detail_url": "https://comicvine.gamespot.com/bill-teds-excellent-comic-book/4050-25231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25278/", + "id": 25278, + "name": "Spider-Man Family Featuring Spider-Clan", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-featuring-spider-clan/4050-25278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25295/", + "id": 25295, + "name": "War Machine", + "site_detail_url": "https://comicvine.gamespot.com/war-machine/4050-25295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25301/", + "id": 25301, + "name": "Essential Nova", + "site_detail_url": "https://comicvine.gamespot.com/essential-nova/4050-25301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25308/", + "id": 25308, + "name": "What If? Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars/4050-25308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25314/", + "id": 25314, + "name": "Ender's Shadow: Battle School", + "site_detail_url": "https://comicvine.gamespot.com/enders-shadow-battle-school/4050-25314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25336/", + "id": 25336, + "name": "Captain America Goes to War Against Drugs", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-goes-to-war-against-drugs/4050-25336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25337/", + "id": 25337, + "name": "Captain America Meets the Asthma Monster!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-meets-the-asthma-monster/4050-25337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25338/", + "id": 25338, + "name": "Captain America's Bicentennial Battles", + "site_detail_url": "https://comicvine.gamespot.com/captain-americas-bicentennial-battles/4050-25338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25339/", + "id": 25339, + "name": "Captain America: 65th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-65th-anniversary-special/4050-25339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25340/", + "id": 25340, + "name": "Captain America: Streets Of Poison", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-streets-of-poison/4050-25340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25341/", + "id": 25341, + "name": "Captain America: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-movie/4050-25341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25360/", + "id": 25360, + "name": "Fantastic Four Cosmic-Size Special", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-cosmic-size-special/4050-25360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25363/", + "id": 25363, + "name": "Star Trek: Operation Assimilation", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-operation-assimilation/4050-25363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25369/", + "id": 25369, + "name": "War of Kings Saga", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-saga/4050-25369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25370/", + "id": 25370, + "name": "Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher/4050-25370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25381/", + "id": 25381, + "name": "Secret Invasion: War Of Kings", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-war-of-kings/4050-25381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25383/", + "id": 25383, + "name": "Spider-Man: Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fear-itself/4050-25383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25385/", + "id": 25385, + "name": "Wolverine: Switchback", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-switchback/4050-25385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25386/", + "id": 25386, + "name": "Giant-Size Chillers featuring Dracula", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-chillers-featuring-dracula/4050-25386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25403/", + "id": 25403, + "name": "New Exiles Annual", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-annual/4050-25403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25407/", + "id": 25407, + "name": "Ultimate Hulk Annual", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-hulk-annual/4050-25407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25414/", + "id": 25414, + "name": "Craptacular B-Sides", + "site_detail_url": "https://comicvine.gamespot.com/craptacular-b-sides/4050-25414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25419/", + "id": 25419, + "name": "Marvel Super Hero Squad Hero Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad-hero-up/4050-25419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25427/", + "id": 25427, + "name": "Nova: Origin of Richard Rider", + "site_detail_url": "https://comicvine.gamespot.com/nova-origin-of-richard-rider/4050-25427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25428/", + "id": 25428, + "name": "Morlocks", + "site_detail_url": "https://comicvine.gamespot.com/morlocks/4050-25428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25430/", + "id": 25430, + "name": "The Hulk 100 Project", + "site_detail_url": "https://comicvine.gamespot.com/the-hulk-100-project/4050-25430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25450/", + "id": 25450, + "name": "Freddy Krueger's A Nightmare on Elm Street", + "site_detail_url": "https://comicvine.gamespot.com/freddy-kruegers-a-nightmare-on-elm-street/4050-25450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25456/", + "id": 25456, + "name": "Muties", + "site_detail_url": "https://comicvine.gamespot.com/muties/4050-25456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25457/", + "id": 25457, + "name": "Avengers Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/avengers-anniversary-magazine/4050-25457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25458/", + "id": 25458, + "name": "Black Widow: The Coldest War", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-coldest-war/4050-25458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25459/", + "id": 25459, + "name": "The Punisher: Intruder", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-intruder/4050-25459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25460/", + "id": 25460, + "name": "Spider-Man Magazine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine/4050-25460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25461/", + "id": 25461, + "name": "X-Men Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-anniversary-magazine/4050-25461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25464/", + "id": 25464, + "name": "Daredevil: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-movie/4050-25464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25465/", + "id": 25465, + "name": "X-Men/Captain Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-mencaptain-universe/4050-25465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25483/", + "id": 25483, + "name": "X-Treme X-Pose", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-pose/4050-25483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25502/", + "id": 25502, + "name": "Combo Man", + "site_detail_url": "https://comicvine.gamespot.com/combo-man/4050-25502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25511/", + "id": 25511, + "name": "Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/sentinel/4050-25511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25512/", + "id": 25512, + "name": "Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers/4050-25512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25514/", + "id": 25514, + "name": "Dr. Doom And The Masters Of Evil", + "site_detail_url": "https://comicvine.gamespot.com/dr-doom-and-the-masters-of-evil/4050-25514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25516/", + "id": 25516, + "name": "Captain America Theater of War: America the Beautiful", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-america-the-beautif/4050-25516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25523/", + "id": 25523, + "name": "Underworld", + "site_detail_url": "https://comicvine.gamespot.com/underworld/4050-25523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25534/", + "id": 25534, + "name": "Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/nighthawk/4050-25534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25540/", + "id": 25540, + "name": "The Mighty Thor: Alone Against The Celestials", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-alone-against-the-celestials/4050-25540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25541/", + "id": 25541, + "name": "Nick Fury's Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/nick-furys-howling-commandos/4050-25541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25548/", + "id": 25548, + "name": "Fantastic Four: The Wedding Special", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-wedding-special/4050-25548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25551/", + "id": 25551, + "name": "Eden's Trail", + "site_detail_url": "https://comicvine.gamespot.com/edens-trail/4050-25551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25560/", + "id": 25560, + "name": "Marvel Spring Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spring-special/4050-25560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25563/", + "id": 25563, + "name": "Marvel Spotlight: Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-thor/4050-25563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25606/", + "id": 25606, + "name": "Marvel Spotlight: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-dark-reign/4050-25606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25618/", + "id": 25618, + "name": "Encyclopædia Deadpoolica", + "site_detail_url": "https://comicvine.gamespot.com/encyclopdia-deadpoolica/4050-25618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25637/", + "id": 25637, + "name": "War of Kings: Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-darkhawk/4050-25637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25638/", + "id": 25638, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-25638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25640/", + "id": 25640, + "name": "Secret Warriors", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors/4050-25640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25641/", + "id": 25641, + "name": "Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas/4050-25641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25642/", + "id": 25642, + "name": "Astonishing Tales", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-tales/4050-25642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25644/", + "id": 25644, + "name": "X-Men vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-hulk/4050-25644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25646/", + "id": 25646, + "name": "Spider-Man: The Manga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-manga/4050-25646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25647/", + "id": 25647, + "name": "Maximum Security Dangerous Planet", + "site_detail_url": "https://comicvine.gamespot.com/maximum-security-dangerous-planet/4050-25647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25653/", + "id": 25653, + "name": "The Call", + "site_detail_url": "https://comicvine.gamespot.com/the-call/4050-25653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25654/", + "id": 25654, + "name": "Marvel Spotlight: Joss Whedon & Michael Lark", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-joss-whedon-michael-lark/4050-25654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25655/", + "id": 25655, + "name": "Warlock", + "site_detail_url": "https://comicvine.gamespot.com/warlock/4050-25655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25657/", + "id": 25657, + "name": "Inhumans: The Great Refuge", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-the-great-refuge/4050-25657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25658/", + "id": 25658, + "name": "Alpha Flight / Inhumans '98", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-inhumans-98/4050-25658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25660/", + "id": 25660, + "name": "Marvel Fanfare", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare/4050-25660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25669/", + "id": 25669, + "name": "X-Men: First Class Finals", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-finals/4050-25669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25670/", + "id": 25670, + "name": "Essential Defenders", + "site_detail_url": "https://comicvine.gamespot.com/essential-defenders/4050-25670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25702/", + "id": 25702, + "name": "Essential Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/essential-spectacular-spider-man/4050-25702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25710/", + "id": 25710, + "name": "Marvel Illustrated: Kidnapped!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-kidnapped/4050-25710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25713/", + "id": 25713, + "name": "Marvel Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes/4050-25713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25714/", + "id": 25714, + "name": "X-Men: The Times & Life of Lucas Bishop", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-times-life-of-lucas-bishop/4050-25714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25745/", + "id": 25745, + "name": "X-Men Origins: Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-sabretooth/4050-25745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25749/", + "id": 25749, + "name": "Marvel Spotlight X-Men: Messiah Complex", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-x-men-messiah-complex/4050-25749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25756/", + "id": 25756, + "name": "Marvel TV: Galactus - The Real Story", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tv-galactus-the-real-story/4050-25756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25761/", + "id": 25761, + "name": "Spider-Man: Brand New Day Yearbook", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-yearbook/4050-25761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25795/", + "id": 25795, + "name": "The Marvel Tarot", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-tarot/4050-25795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25796/", + "id": 25796, + "name": "Annihilation Saga", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-saga/4050-25796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25806/", + "id": 25806, + "name": "Franklin Richards: Dark Reigning Cats And Dogs", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-dark-reigning-cats-and-dogs/4050-25806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25819/", + "id": 25819, + "name": "The Punisher: Countdown", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-countdown/4050-25819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25829/", + "id": 25829, + "name": "Young Guns Sketchbook 2009", + "site_detail_url": "https://comicvine.gamespot.com/young-guns-sketchbook-2009/4050-25829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25831/", + "id": 25831, + "name": "Carnage: It's a Wonderful Life", + "site_detail_url": "https://comicvine.gamespot.com/carnage-its-a-wonderful-life/4050-25831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25832/", + "id": 25832, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-25832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25839/", + "id": 25839, + "name": "Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie/4050-25839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25847/", + "id": 25847, + "name": "Dark Reign Files", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-files/4050-25847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25853/", + "id": 25853, + "name": "Marvel Double Shot", + "site_detail_url": "https://comicvine.gamespot.com/marvel-double-shot/4050-25853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25855/", + "id": 25855, + "name": "Essential Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/essential-dazzler/4050-25855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25856/", + "id": 25856, + "name": "Essential Power Man and Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/essential-power-man-and-iron-fist/4050-25856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25872/", + "id": 25872, + "name": "Elektra: On the Rise", + "site_detail_url": "https://comicvine.gamespot.com/elektra-on-the-rise/4050-25872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25888/", + "id": 25888, + "name": "Mini Marvels: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/mini-marvels-secret-invasion/4050-25888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25891/", + "id": 25891, + "name": "Punisher: Year One", + "site_detail_url": "https://comicvine.gamespot.com/punisher-year-one/4050-25891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25893/", + "id": 25893, + "name": "Punisher: Origin of Microchip", + "site_detail_url": "https://comicvine.gamespot.com/punisher-origin-of-microchip/4050-25893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25894/", + "id": 25894, + "name": "Punisher/Captain America: Blood & Glory", + "site_detail_url": "https://comicvine.gamespot.com/punishercaptain-america-blood-glory/4050-25894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25895/", + "id": 25895, + "name": "The Punisher: Back to School Special", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-back-to-school-special/4050-25895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25896/", + "id": 25896, + "name": "Punisher Invades the 'Nam", + "site_detail_url": "https://comicvine.gamespot.com/punisher-invades-the-nam/4050-25896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25897/", + "id": 25897, + "name": "Punisher: Bloodlines", + "site_detail_url": "https://comicvine.gamespot.com/punisher-bloodlines/4050-25897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25898/", + "id": 25898, + "name": "Punisher Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/punisher-holiday-special/4050-25898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25901/", + "id": 25901, + "name": "New Avengers: The Reunion", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-reunion/4050-25901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25904/", + "id": 25904, + "name": "War of Kings", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings/4050-25904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25905/", + "id": 25905, + "name": "Dark Reign: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-fantastic-four/4050-25905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25906/", + "id": 25906, + "name": "Hulk: Broken Worlds", + "site_detail_url": "https://comicvine.gamespot.com/hulk-broken-worlds/4050-25906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25908/", + "id": 25908, + "name": "Hercules: Heart of Chaos", + "site_detail_url": "https://comicvine.gamespot.com/hercules-heart-of-chaos/4050-25908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25910/", + "id": 25910, + "name": "Micronauts: Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/micronauts-special-edition/4050-25910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25911/", + "id": 25911, + "name": "Incredible Hulk: Hercules Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-hercules-unleashed/4050-25911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25914/", + "id": 25914, + "name": "Captain Universe: Power Unimaginable", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-power-unimaginable/4050-25914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25915/", + "id": 25915, + "name": "X-Men: The Wedding Album", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-wedding-album/4050-25915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25922/", + "id": 25922, + "name": "Darkhawk Annual", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-annual/4050-25922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25927/", + "id": 25927, + "name": "Thunderbolts: Life Sentences", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-life-sentences/4050-25927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25928/", + "id": 25928, + "name": "Essential Punisher", + "site_detail_url": "https://comicvine.gamespot.com/essential-punisher/4050-25928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25951/", + "id": 25951, + "name": "Spaceknights", + "site_detail_url": "https://comicvine.gamespot.com/spaceknights/4050-25951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25952/", + "id": 25952, + "name": "Sensational Spider-Man '96", + "site_detail_url": "https://comicvine.gamespot.com/sensational-spider-man-96/4050-25952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25962/", + "id": 25962, + "name": "Adventures of Cyclops and Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-cyclops-and-phoenix/4050-25962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25963/", + "id": 25963, + "name": "X-Men: Manifest Destiny: Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/x-men-manifest-destiny-nightcrawler/4050-25963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25966/", + "id": 25966, + "name": "Marvel Heroes and Legends", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heroes-and-legends/4050-25966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25967/", + "id": 25967, + "name": "X-Men: Firestar", + "site_detail_url": "https://comicvine.gamespot.com/x-men-firestar/4050-25967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25969/", + "id": 25969, + "name": "Essential Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/essential-ghost-rider/4050-25969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25971/", + "id": 25971, + "name": "The New Mutants Classic", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-classic/4050-25971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25996/", + "id": 25996, + "name": "The Stand: American Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-american-nightmares/4050-25996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25997/", + "id": 25997, + "name": "Fury", + "site_detail_url": "https://comicvine.gamespot.com/fury/4050-25997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25998/", + "id": 25998, + "name": "Nick Fury: Scorpio Connection", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-scorpio-connection/4050-25998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25999/", + "id": 25999, + "name": "Deadpool: Games of Death", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-games-of-death/4050-25999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26001/", + "id": 26001, + "name": "Master of Kung Fu: Bleeding Black", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu-bleeding-black/4050-26001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26009/", + "id": 26009, + "name": "Machine Man / Bastion '98", + "site_detail_url": "https://comicvine.gamespot.com/machine-man-bastion-98/4050-26009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26034/", + "id": 26034, + "name": "Spider-Man & The Human Torch In... Bahia De Los Muertos!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-human-torch-in-bahia-de-los-muertos/4050-26034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26045/", + "id": 26045, + "name": "Halo Graphic Novel", + "site_detail_url": "https://comicvine.gamespot.com/halo-graphic-novel/4050-26045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26047/", + "id": 26047, + "name": "Avengers: The Initiative Featuring Reptil", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-featuring-reptil/4050-26047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26048/", + "id": 26048, + "name": "Dark Reign: Elektra", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-elektra/4050-26048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26051/", + "id": 26051, + "name": "X-Men: Sword of the Braddocks", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sword-of-the-braddocks/4050-26051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26055/", + "id": 26055, + "name": "X-Force/Cable: Messiah War", + "site_detail_url": "https://comicvine.gamespot.com/x-forcecable-messiah-war/4050-26055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26073/", + "id": 26073, + "name": "Guardians of the Galaxy: Quest for the Shield", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-quest-for-the-shield/4050-26073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26082/", + "id": 26082, + "name": "Marvel Assistant-Sized Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-assistant-sized-spectacular/4050-26082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26083/", + "id": 26083, + "name": "The New Mutants Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-saga/4050-26083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26091/", + "id": 26091, + "name": "Marvel Apes: Speedball Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-speedball-special/4050-26091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26105/", + "id": 26105, + "name": "Ultimate Spider-Man Hardcover", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hardcover/4050-26105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26106/", + "id": 26106, + "name": "Essential Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/essential-ms-marvel/4050-26106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26109/", + "id": 26109, + "name": "Excalibur Mojo Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-mojo-mayhem/4050-26109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26150/", + "id": 26150, + "name": "Wolverine Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x/4050-26150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26151/", + "id": 26151, + "name": "All-New Savage She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/all-new-savage-she-hulk/4050-26151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26152/", + "id": 26152, + "name": "Dark Reign: Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-hawkeye/4050-26152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26159/", + "id": 26159, + "name": "Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles/4050-26159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26160/", + "id": 26160, + "name": "Marvel Zombies 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-4/4050-26160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26163/", + "id": 26163, + "name": "Timestorm 2009/2099", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099/4050-26163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26164/", + "id": 26164, + "name": "Daredevil Noir", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-noir/4050-26164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26174/", + "id": 26174, + "name": "Essential Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/essential-iron-fist/4050-26174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26175/", + "id": 26175, + "name": "Essential Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/essential-moon-knight/4050-26175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26176/", + "id": 26176, + "name": "Essential Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/essential-spider-woman/4050-26176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26189/", + "id": 26189, + "name": "War of Kings: Ascension", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-ascension/4050-26189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26208/", + "id": 26208, + "name": "Secret Invasion Aftermath: Beta Ray Bill - The Green Of Eden", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-aftermath-beta-ray-bill-the-green-/4050-26208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26210/", + "id": 26210, + "name": "Wolverine: Free Comic Book Day", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-free-comic-book-day/4050-26210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26211/", + "id": 26211, + "name": "Free Comic Book Day 2009 Avengers", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2009-avengers/4050-26211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26214/", + "id": 26214, + "name": "Captain America Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-comics-70th-anniversary-special/4050-26214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26215/", + "id": 26215, + "name": "Franklin Richards: April Fools", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-april-fools/4050-26215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26217/", + "id": 26217, + "name": "Essential Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/essential-wolverine/4050-26217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26218/", + "id": 26218, + "name": "Rampaging Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/rampaging-wolverine/4050-26218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26226/", + "id": 26226, + "name": "Wolverine Noir", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-noir/4050-26226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26229/", + "id": 26229, + "name": "Ectokid Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/ectokid-unleashed/4050-26229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26246/", + "id": 26246, + "name": "Dark Tower: Guide To Gilead", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-guide-to-gilead/4050-26246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26247/", + "id": 26247, + "name": "Marvel Apes: Amazing Spider-Monkey Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-amazing-spider-monkey-special/4050-26247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26255/", + "id": 26255, + "name": "Sub-Mariner Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-comics-70th-anniversary-special/4050-26255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26264/", + "id": 26264, + "name": "Darkman", + "site_detail_url": "https://comicvine.gamespot.com/darkman/4050-26264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26265/", + "id": 26265, + "name": "Darkman", + "site_detail_url": "https://comicvine.gamespot.com/darkman/4050-26265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26282/", + "id": 26282, + "name": "Fantastic Force", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-force/4050-26282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26283/", + "id": 26283, + "name": "Skrull Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/skrull-kill-krew/4050-26283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26286/", + "id": 26286, + "name": "Wolverine: The Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-anniversary/4050-26286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26290/", + "id": 26290, + "name": "Wolverine: Weapon X Files", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-files/4050-26290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26291/", + "id": 26291, + "name": "Spider-Man and His Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-his-amazing-friends/4050-26291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26299/", + "id": 26299, + "name": "Illuminator", + "site_detail_url": "https://comicvine.gamespot.com/illuminator/4050-26299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26304/", + "id": 26304, + "name": "Captain America Theater of War: A Brother in Arms", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-a-brother-in-arms/4050-26304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26305/", + "id": 26305, + "name": "Dark Reign: The Cabal", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-cabal/4050-26305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26310/", + "id": 26310, + "name": "X-Men Origins: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-wolverine/4050-26310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26314/", + "id": 26314, + "name": "Marvel Graphic Novel: The Pitt", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-the-pitt/4050-26314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26315/", + "id": 26315, + "name": "The Draft", + "site_detail_url": "https://comicvine.gamespot.com/the-draft/4050-26315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26316/", + "id": 26316, + "name": "X-Men / Dr. Doom '98", + "site_detail_url": "https://comicvine.gamespot.com/x-men-dr-doom-98/4050-26316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26327/", + "id": 26327, + "name": "New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants/4050-26327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26331/", + "id": 26331, + "name": "Wonder Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-annual/4050-26331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26333/", + "id": 26333, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4050-26333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26334/", + "id": 26334, + "name": "Tales of the Marvels: Wonder Years", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-marvels-wonder-years/4050-26334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26335/", + "id": 26335, + "name": "Avengers: The Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-korvac-saga/4050-26335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26338/", + "id": 26338, + "name": "X-Men: First Class - Mutant Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-mutant-mayhem/4050-26338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26343/", + "id": 26343, + "name": "She-Ra: Princess of Power Magazine", + "site_detail_url": "https://comicvine.gamespot.com/she-ra-princess-of-power-magazine/4050-26343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26375/", + "id": 26375, + "name": "Citizen V and the V-Battalion", + "site_detail_url": "https://comicvine.gamespot.com/citizen-v-and-the-v-battalion/4050-26375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26388/", + "id": 26388, + "name": "Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe/4050-26388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26389/", + "id": 26389, + "name": "Lockjaw and the Pet Avengers", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers/4050-26389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26390/", + "id": 26390, + "name": "Dark Reign: Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers/4050-26390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26394/", + "id": 26394, + "name": "GeNext: United", + "site_detail_url": "https://comicvine.gamespot.com/genext-united/4050-26394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26396/", + "id": 26396, + "name": "Marvel Triple Action", + "site_detail_url": "https://comicvine.gamespot.com/marvel-triple-action/4050-26396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26398/", + "id": 26398, + "name": "Excalibur Classic", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-classic/4050-26398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26426/", + "id": 26426, + "name": "Captain America: Red, White & Blue", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-white-blue/4050-26426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26431/", + "id": 26431, + "name": "Essential Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/essential-silver-surfer/4050-26431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26432/", + "id": 26432, + "name": "X-Men Forever Alpha", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-alpha/4050-26432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26438/", + "id": 26438, + "name": "Marvel Mystery Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mystery-comics-70th-anniversary-special/4050-26438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26448/", + "id": 26448, + "name": "Daredevil / Deadpool '97", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-deadpool-97/4050-26448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26449/", + "id": 26449, + "name": "Planet Skaar Prologue", + "site_detail_url": "https://comicvine.gamespot.com/planet-skaar-prologue/4050-26449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26453/", + "id": 26453, + "name": "Fin Fang Four Return!", + "site_detail_url": "https://comicvine.gamespot.com/fin-fang-four-return/4050-26453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26485/", + "id": 26485, + "name": "Spider-Man Family", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family/4050-26485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26486/", + "id": 26486, + "name": "Spider-Man Family Featuring Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-featuring-amazing-friends/4050-26486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26518/", + "id": 26518, + "name": "Thor: Tales Of Asgard By Stan Lee & Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/thor-tales-of-asgard-by-stan-lee-jack-kirby/4050-26518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26538/", + "id": 26538, + "name": "Secret Invasion Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles/4050-26538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26542/", + "id": 26542, + "name": "Dark Reign: The Hood", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-hood/4050-26542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26559/", + "id": 26559, + "name": "Marvel Mangaverse: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-spider-man/4050-26559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26560/", + "id": 26560, + "name": "Marvel Mangaverse: Ghost Riders", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-ghost-riders/4050-26560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26567/", + "id": 26567, + "name": "Sgt. Fury & His Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/sgt-fury-his-howling-commandos/4050-26567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26570/", + "id": 26570, + "name": "The Amazing Spider-Man 30th Anniversary Poster Magazine", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-30th-anniversary-poster-mag/4050-26570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26571/", + "id": 26571, + "name": "Spider-Man Anthologies", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-anthologies/4050-26571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26580/", + "id": 26580, + "name": "Giant-Size Thor", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-thor/4050-26580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26581/", + "id": 26581, + "name": "Blade: Nightstalking", + "site_detail_url": "https://comicvine.gamespot.com/blade-nightstalking/4050-26581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26600/", + "id": 26600, + "name": "Spider-Man/Gen 13", + "site_detail_url": "https://comicvine.gamespot.com/spider-mangen-13/4050-26600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26605/", + "id": 26605, + "name": "BBDO Campbell's Diversity: Ultimate Spider-Man/Ultimate X-Men", + "site_detail_url": "https://comicvine.gamespot.com/bbdo-campbells-diversity-ultimate-spider-manultima/4050-26605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26606/", + "id": 26606, + "name": "Blade II", + "site_detail_url": "https://comicvine.gamespot.com/blade-ii/4050-26606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26620/", + "id": 26620, + "name": "Super-Villain Classics", + "site_detail_url": "https://comicvine.gamespot.com/super-villain-classics/4050-26620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26621/", + "id": 26621, + "name": "Captain Britain and MI:13 Annual", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-mi13-annual/4050-26621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26626/", + "id": 26626, + "name": "Wolverine Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-poster-book/4050-26626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26627/", + "id": 26627, + "name": "Wolverine: Revolver", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-revolver/4050-26627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26633/", + "id": 26633, + "name": "Timestorm 2009/2099: Spider-Man One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-spider-man-one-shot/4050-26633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26645/", + "id": 26645, + "name": "Marvel Apes: Grunt Line", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-grunt-line/4050-26645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26657/", + "id": 26657, + "name": "Marvel Creators' Choice X-men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-creators-choice-x-men/4050-26657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26658/", + "id": 26658, + "name": "The X-Men Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-collectors-edition/4050-26658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26659/", + "id": 26659, + "name": "X-Men: Time Gliders", + "site_detail_url": "https://comicvine.gamespot.com/x-men-time-gliders/4050-26659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26662/", + "id": 26662, + "name": "Beta Ray Bill: Godhunter", + "site_detail_url": "https://comicvine.gamespot.com/beta-ray-bill-godhunter/4050-26662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26666/", + "id": 26666, + "name": "Uncanny X-Men: First Class Giant-Size Special", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-first-class-giant-size-special/4050-26666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26670/", + "id": 26670, + "name": "X-Men Forever", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever/4050-26670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26671/", + "id": 26671, + "name": "Spider-Man & Araña Special", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-arana-special/4050-26671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26676/", + "id": 26676, + "name": "War of Kings: The Savage World of Skaar", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-the-savage-world-of-skaar/4050-26676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26677/", + "id": 26677, + "name": "Spider-Man: The Short Halloween", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-short-halloween/4050-26677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26682/", + "id": 26682, + "name": "Miss America Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/miss-america-comics-70th-anniversary-special/4050-26682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26686/", + "id": 26686, + "name": "Essential Marvel Saga", + "site_detail_url": "https://comicvine.gamespot.com/essential-marvel-saga/4050-26686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26749/", + "id": 26749, + "name": "Ultimatum: Spider-Man - Requiem", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-spider-man-requiem/4050-26749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26755/", + "id": 26755, + "name": "X-Men Origins: Gambit", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-gambit/4050-26755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26766/", + "id": 26766, + "name": "Dark Reign: Mister Negative", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-mister-negative/4050-26766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26777/", + "id": 26777, + "name": "Spider-Man: The Venom Agenda", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-venom-agenda/4050-26777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26778/", + "id": 26778, + "name": "Spider-Man: Redemption", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-redemption/4050-26778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26787/", + "id": 26787, + "name": "Spider-Man and Daredevil Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-daredevil-special-edition/4050-26787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26788/", + "id": 26788, + "name": "Spider-Man: Lifeline", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-lifeline/4050-26788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26813/", + "id": 26813, + "name": "Spider-Man and the Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk/4050-26813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26822/", + "id": 26822, + "name": "Adventures of Snake Plissken", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-snake-plissken/4050-26822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26865/", + "id": 26865, + "name": "The Silver Surfer: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-homecoming/4050-26865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26874/", + "id": 26874, + "name": "Silver Surfer: Loftier Than Mortals", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-loftier-than-mortals/4050-26874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26883/", + "id": 26883, + "name": "Dark Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/dark-wolverine/4050-26883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26884/", + "id": 26884, + "name": "Thor: The Trial of Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-trial-of-thor/4050-26884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26886/", + "id": 26886, + "name": "Young Allies Comics: 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/young-allies-comics-70th-anniversary-special/4050-26886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26888/", + "id": 26888, + "name": "Dark Avengers/Uncanny X-Men: Utopia", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengersuncanny-x-men-utopia/4050-26888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26896/", + "id": 26896, + "name": "Dark Reign: Zodiac", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-zodiac/4050-26896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26900/", + "id": 26900, + "name": "Dark Reign: Lethal Legion", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-lethal-legion/4050-26900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26928/", + "id": 26928, + "name": "Riftwar", + "site_detail_url": "https://comicvine.gamespot.com/riftwar/4050-26928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26932/", + "id": 26932, + "name": "Timestorm 2009/2099: X-Men One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099-x-men-one-shot/4050-26932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26942/", + "id": 26942, + "name": "The Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates/4050-26942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26943/", + "id": 26943, + "name": "Ultimates 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2/4050-26943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26945/", + "id": 26945, + "name": "Dark Reign: Sinister Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-sinister-spider-man/4050-26945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26953/", + "id": 26953, + "name": "X-Men vs. Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-apocalypse/4050-26953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26954/", + "id": 26954, + "name": "X-Men: The Complete Onslaught Epic", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-complete-onslaught-epic/4050-26954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26958/", + "id": 26958, + "name": "Deadpool: Merc With a Mouth", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-merc-with-a-mouth/4050-26958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26960/", + "id": 26960, + "name": "USA Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/usa-comics-70th-anniversary-special/4050-26960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26962/", + "id": 26962, + "name": "Marvel Divas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-divas/4050-26962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26963/", + "id": 26963, + "name": "Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/official-index-to-the-marvel-universe/4050-26963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26966/", + "id": 26966, + "name": "Captain America: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn/4050-26966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26970/", + "id": 26970, + "name": "Ender's Game: Recruiting Valentine", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-recruiting-valentine/4050-26970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27004/", + "id": 27004, + "name": "Dark X-Men: The Beginning", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men-the-beginning/4050-27004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27022/", + "id": 27022, + "name": "War of Kings: Warriors", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-warriors/4050-27022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27024/", + "id": 27024, + "name": "Spider-Man: Sweet Charity", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-sweet-charity/4050-27024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27035/", + "id": 27035, + "name": "Marvel 70th Anniversary Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-70th-anniversary-collection/4050-27035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27037/", + "id": 27037, + "name": "Uncanny X-Men: First Class", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-first-class/4050-27037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27047/", + "id": 27047, + "name": "X-Treme X-Men 2001", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-2001/4050-27047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27080/", + "id": 27080, + "name": "Phoenix: The Untold Story", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-the-untold-story/4050-27080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27082/", + "id": 27082, + "name": "Spider-Man: Birth of Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-birth-of-venom/4050-27082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27084/", + "id": 27084, + "name": "X-Men 2099", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2099/4050-27084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27088/", + "id": 27088, + "name": "The Silver Surfer: Inner Demons", + "site_detail_url": "https://comicvine.gamespot.com/the-silver-surfer-inner-demons/4050-27088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27089/", + "id": 27089, + "name": "The Ren & Stimpy Show Special: Powdered Toastman's Cereal Serial", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-and-stimpy-show-special-powdered-toastmans/4050-27089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27113/", + "id": 27113, + "name": "Soviet Super Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/soviet-super-soldiers/4050-27113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27118/", + "id": 27118, + "name": "All Select Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/all-select-comics-70th-anniversary-special/4050-27118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27129/", + "id": 27129, + "name": "Wolverine '97", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-97/4050-27129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27130/", + "id": 27130, + "name": "Wolverine '95", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-95/4050-27130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27131/", + "id": 27131, + "name": "Wolverine 2000", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-2000/4050-27131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27132/", + "id": 27132, + "name": "Wolverine 2001", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-2001/4050-27132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27133/", + "id": 27133, + "name": "Iron Man: Dragon Seed Saga", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-dragon-seed-saga/4050-27133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27134/", + "id": 27134, + "name": "Gambit Classic", + "site_detail_url": "https://comicvine.gamespot.com/gambit-classic/4050-27134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27135/", + "id": 27135, + "name": "The Immortal Iron Fist: The Last Iron Fist Story", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-the-last-iron-fist-story/4050-27135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27136/", + "id": 27136, + "name": "Captain Britain Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-omnibus/4050-27136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27143/", + "id": 27143, + "name": "Halo: Helljumper", + "site_detail_url": "https://comicvine.gamespot.com/halo-helljumper/4050-27143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27145/", + "id": 27145, + "name": "Wolverine '96", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-96/4050-27145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27149/", + "id": 27149, + "name": "Wolverine: Doombringer", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-doombringer/4050-27149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27150/", + "id": 27150, + "name": "Wolverine 1999", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-1999/4050-27150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27153/", + "id": 27153, + "name": "What If Magneto Had Formed The X-Men With Professor X?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-magneto-had-formed-the-x-men-with-professo/4050-27153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27157/", + "id": 27157, + "name": "Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth/4050-27157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27158/", + "id": 27158, + "name": "Captain America: Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-winter-soldier/4050-27158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27167/", + "id": 27167, + "name": "Cutting Edge", + "site_detail_url": "https://comicvine.gamespot.com/cutting-edge/4050-27167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27176/", + "id": 27176, + "name": "Marvelous Adventures Of Gus Beezer: Gus Beezer & Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvelous-adventures-of-gus-beezer-gus-beezer-spid/4050-27176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27178/", + "id": 27178, + "name": "Starlord, The Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/starlord-the-special-edition/4050-27178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27189/", + "id": 27189, + "name": "Young Avengers 1 Directors Cut", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-directors-cut/4050-27189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27192/", + "id": 27192, + "name": "Iron Man: Armored Adventures", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-armored-adventures/4050-27192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27201/", + "id": 27201, + "name": "Franklin Richards: School's Out!", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-schools-out/4050-27201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27203/", + "id": 27203, + "name": "Amazing Spider-Man: A New Goblin", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-a-new-goblin/4050-27203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27204/", + "id": 27204, + "name": "Spider-Man: Saga of the Sandman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga-of-the-sandman/4050-27204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27206/", + "id": 27206, + "name": "Chili Special", + "site_detail_url": "https://comicvine.gamespot.com/chili-special/4050-27206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27217/", + "id": 27217, + "name": "Spider-Man: Breakout", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-breakout/4050-27217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27219/", + "id": 27219, + "name": "Spider-Man: Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-identity-crisis/4050-27219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27220/", + "id": 27220, + "name": "Spider-Man vs. Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-black-cat/4050-27220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27221/", + "id": 27221, + "name": "Spider-Man and Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-uncanny-x-men/4050-27221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27230/", + "id": 27230, + "name": "Dark Reign: The Goblin Legacy", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-goblin-legacy/4050-27230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27236/", + "id": 27236, + "name": "Secrets of the House of M", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-house-of-m/4050-27236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27243/", + "id": 27243, + "name": "Marvel Mystery Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mystery-comics/4050-27243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27251/", + "id": 27251, + "name": "The Spectacular Spider-Man Magazine", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-magazine/4050-27251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27255/", + "id": 27255, + "name": "Spider-Man: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-carnage/4050-27255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27262/", + "id": 27262, + "name": "Marvelous Adventures of Gus Beezer: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvelous-adventures-of-gus-beezer-spider-man/4050-27262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27268/", + "id": 27268, + "name": "Ghost Riders: Heaven's on Fire", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riders-heavens-on-fire/4050-27268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27280/", + "id": 27280, + "name": "Spider-Man: Son of the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-son-of-the-goblin/4050-27280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27281/", + "id": 27281, + "name": "Ultimatum: Fantastic Four Requiem", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-fantastic-four-requiem/4050-27281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27282/", + "id": 27282, + "name": "Spider-Man vs. Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-silver-sable/4050-27282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27283/", + "id": 27283, + "name": "Ultimatum: X-Men Requiem", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-x-men-requiem/4050-27283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27286/", + "id": 27286, + "name": "House of M: Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-masters-of-evil/4050-27286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27291/", + "id": 27291, + "name": "Luke Cage Noir", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-noir/4050-27291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27292/", + "id": 27292, + "name": "All Winners Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/all-winners-comics-70th-anniversary-special/4050-27292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27306/", + "id": 27306, + "name": "Iron Man & The Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-armor-wars/4050-27306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27311/", + "id": 27311, + "name": "Spider-Man: Round Robin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-round-robin/4050-27311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27312/", + "id": 27312, + "name": "Spider-Man: Venom Returns", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-venom-returns/4050-27312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27313/", + "id": 27313, + "name": "Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/maximum-carnage/4050-27313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27324/", + "id": 27324, + "name": "Spider-Man vs. Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-green-goblin/4050-27324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27325/", + "id": 27325, + "name": "Spider-Man and Daredevil Greatest Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-daredevil-greatest-team-ups/4050-27325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27327/", + "id": 27327, + "name": "Thor & Hercules: Encyclopædia Mythologica", + "site_detail_url": "https://comicvine.gamespot.com/thor-hercules-encyclopdia-mythologica/4050-27327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27329/", + "id": 27329, + "name": "Ms. Marvel: Best of the Best", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-best-of-the-best/4050-27329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27331/", + "id": 27331, + "name": "Very Best of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/very-best-of-spider-man/4050-27331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27332/", + "id": 27332, + "name": "Spider-Man: Clone Genesis", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-clone-genesis/4050-27332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27334/", + "id": 27334, + "name": "Ms. Marvel: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-civil-war/4050-27334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27354/", + "id": 27354, + "name": "Captain America/Nick Fury: The Otherworld War", + "site_detail_url": "https://comicvine.gamespot.com/captain-americanick-fury-the-otherworld-war/4050-27354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27363/", + "id": 27363, + "name": "Eternals: Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/eternals-manifest-destiny/4050-27363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27365/", + "id": 27365, + "name": "Silver Surfer: Rebirth of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-rebirth-of-thanos/4050-27365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27368/", + "id": 27368, + "name": "X-Men Legacy: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-original-sin/4050-27368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27374/", + "id": 27374, + "name": "Silver Surfer: The Enslavers", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-the-enslavers/4050-27374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27377/", + "id": 27377, + "name": "Silver Surfer: Parable", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-parable/4050-27377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27381/", + "id": 27381, + "name": "Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man/4050-27381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27387/", + "id": 27387, + "name": "Wolverine Saga", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-saga/4050-27387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27388/", + "id": 27388, + "name": "Ultimate Avengers", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers/4050-27388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27389/", + "id": 27389, + "name": "Ms. Marvel: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-secret-invasion/4050-27389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27392/", + "id": 27392, + "name": "The Marvels Project", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-project/4050-27392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27393/", + "id": 27393, + "name": "She-Hulk: Single Green Female", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-single-green-female/4050-27393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27396/", + "id": 27396, + "name": "Captain America Theater of War: To Soldier On", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-to-soldier-on/4050-27396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27407/", + "id": 27407, + "name": "Spider-Man: Cosmic Adventures", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-cosmic-adventures/4050-27407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27421/", + "id": 27421, + "name": "Spider-Man's Greatest Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-greatest-team-ups/4050-27421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27423/", + "id": 27423, + "name": "Spider-Man's Greatest Villains", + "site_detail_url": "https://comicvine.gamespot.com/spider-mans-greatest-villains/4050-27423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27429/", + "id": 27429, + "name": "Spider-Man: Invasion of the Spider-Slayers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-invasion-of-the-spider-slayers/4050-27429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27440/", + "id": 27440, + "name": "She-Hulk: Jaded", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-jaded/4050-27440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27458/", + "id": 27458, + "name": "Punisher Noir", + "site_detail_url": "https://comicvine.gamespot.com/punisher-noir/4050-27458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27473/", + "id": 27473, + "name": "Spider-Man: Parallel Lives", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-parallel-lives/4050-27473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27474/", + "id": 27474, + "name": "The Amazing Spider-Man: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-revelations/4050-27474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27476/", + "id": 27476, + "name": "Kid Colt One-Shot", + "site_detail_url": "https://comicvine.gamespot.com/kid-colt-one-shot/4050-27476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27489/", + "id": 27489, + "name": "X-Men Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-omnibus/4050-27489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27491/", + "id": 27491, + "name": "She-Hulk: Superhuman Law", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-superhuman-law/4050-27491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27492/", + "id": 27492, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war/4050-27492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27512/", + "id": 27512, + "name": "Uncanny X-Men Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-omnibus/4050-27512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27514/", + "id": 27514, + "name": "Invincible Iron Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-omnibus/4050-27514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27515/", + "id": 27515, + "name": "Iron Man: Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-armor-wars/4050-27515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27518/", + "id": 27518, + "name": "Captain America and the Falcon: Nomad", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-nomad/4050-27518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27519/", + "id": 27519, + "name": "Captain America and the Falcon: Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-secret-empire/4050-27519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27520/", + "id": 27520, + "name": "Captain America and the Falcon: The Swine", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-the-swine/4050-27520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27525/", + "id": 27525, + "name": "Invaders Classic", + "site_detail_url": "https://comicvine.gamespot.com/invaders-classic/4050-27525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27546/", + "id": 27546, + "name": "Day of the Defenders", + "site_detail_url": "https://comicvine.gamespot.com/day-of-the-defenders/4050-27546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27549/", + "id": 27549, + "name": "Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/nightmare/4050-27549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27569/", + "id": 27569, + "name": "Captain America: War & Remembrance", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-war-remembrance/4050-27569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27602/", + "id": 27602, + "name": "Ultimate X-Men: Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection/4050-27602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27603/", + "id": 27603, + "name": "Wolverine Origins: Born in Blood", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-born-in-blood/4050-27603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27605/", + "id": 27605, + "name": "Wolverine Origins: Savior", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-savior/4050-27605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27607/", + "id": 27607, + "name": "Wolverine Origins: Swift and Terrible", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-swift-and-terrible/4050-27607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27620/", + "id": 27620, + "name": "Wolverine Origins: Our War", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-our-war/4050-27620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27621/", + "id": 27621, + "name": "Wolverine Origins: Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-deadpool/4050-27621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27622/", + "id": 27622, + "name": "New Avengers: Breakout", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-breakout/4050-27622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27623/", + "id": 27623, + "name": "New Avengers: Secrets and Lies", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-secrets-and-lies/4050-27623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27624/", + "id": 27624, + "name": "New Avengers: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-civil-war/4050-27624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27625/", + "id": 27625, + "name": "New Avengers: Revolution", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-revolution/4050-27625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27640/", + "id": 27640, + "name": "The Punisher: Empty Quarter", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-empty-quarter/4050-27640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27668/", + "id": 27668, + "name": "Osborn Journals", + "site_detail_url": "https://comicvine.gamespot.com/osborn-journals/4050-27668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27681/", + "id": 27681, + "name": "Marvel Comics #1: 70th Anniversary Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1-70th-anniversary-edition/4050-27681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27684/", + "id": 27684, + "name": "Squadron Supreme: Death of a Universe", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-death-of-a-universe/4050-27684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27689/", + "id": 27689, + "name": "The Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-torch/4050-27689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27698/", + "id": 27698, + "name": "Daring Mystery Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/daring-mystery-comics-70th-anniversary-special/4050-27698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27699/", + "id": 27699, + "name": "Mystic Comics 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/mystic-comics-70th-anniversary-special/4050-27699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27709/", + "id": 27709, + "name": "Marvel Zombies Return", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return/4050-27709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27726/", + "id": 27726, + "name": "New Avengers: The Trust", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-trust/4050-27726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27731/", + "id": 27731, + "name": "New Avengers: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-secret-invasion/4050-27731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27741/", + "id": 27741, + "name": "New Avengers: Power", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-power/4050-27741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27747/", + "id": 27747, + "name": "Marvel Romance Redux: Another Kind Of Love", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance-redux-another-kind-of-love/4050-27747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27748/", + "id": 27748, + "name": "Mighty Avengers: The Ultron Initiative", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-the-ultron-initiative/4050-27748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27749/", + "id": 27749, + "name": "Mighty Avengers: Venom Bomb", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-venom-bomb/4050-27749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27750/", + "id": 27750, + "name": "G.I. Joe European Missions", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-european-missions/4050-27750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27751/", + "id": 27751, + "name": "Punisher: Blood on the Moors", + "site_detail_url": "https://comicvine.gamespot.com/punisher-blood-on-the-moors/4050-27751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27752/", + "id": 27752, + "name": "Mighty Avengers: Secret Invasion, Book One", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one/4050-27752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27753/", + "id": 27753, + "name": "Mighty Marvel Team-Up Thrillers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-team-up-thrillers/4050-27753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27754/", + "id": 27754, + "name": "Maximum Anniversary X-Perience", + "site_detail_url": "https://comicvine.gamespot.com/maximum-anniversary-x-perience/4050-27754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27755/", + "id": 27755, + "name": "MAX Yearbook", + "site_detail_url": "https://comicvine.gamespot.com/max-yearbook/4050-27755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27757/", + "id": 27757, + "name": "Marvel Action Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-universe/4050-27757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27758/", + "id": 27758, + "name": "Daredevil: Love's Labors Lost", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-loves-labors-lost/4050-27758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27759/", + "id": 27759, + "name": "Daredevil Vs. Vapora", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-vs-vapora/4050-27759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27760/", + "id": 27760, + "name": "Mighty Avengers: Secret Invasion, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-two/4050-27760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27803/", + "id": 27803, + "name": "Dark Reign: The List - Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-avengers/4050-27803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27804/", + "id": 27804, + "name": "Dark Avengers/Uncanny X-Men: Exodus", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengersuncanny-x-men-exodus/4050-27804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27828/", + "id": 27828, + "name": "Avengers: The Initiative: Basic Training", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-basic-training/4050-27828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27832/", + "id": 27832, + "name": "Marvel Pets Handbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-pets-handbook/4050-27832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27839/", + "id": 27839, + "name": "Models, Inc.", + "site_detail_url": "https://comicvine.gamespot.com/models-inc/4050-27839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27843/", + "id": 27843, + "name": "War of Kings: Who Will Rule?", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-who-will-rule/4050-27843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27845/", + "id": 27845, + "name": "Avengers: The Initiative: Killed in Action", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-killed-in-action/4050-27845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27851/", + "id": 27851, + "name": "Avengers: The Initiative: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion/4050-27851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27856/", + "id": 27856, + "name": "Nomad: Girl Without a World", + "site_detail_url": "https://comicvine.gamespot.com/nomad-girl-without-a-world/4050-27856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27862/", + "id": 27862, + "name": "Civil War: Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-amazing-spider-man/4050-27862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27863/", + "id": 27863, + "name": "Spider-Man: Back in Black", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-back-in-black/4050-27863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27880/", + "id": 27880, + "name": "Secret War: From the Files of Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/secret-war-from-the-files-of-nick-fury/4050-27880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27914/", + "id": 27914, + "name": "Vengeance of the Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-the-moon-knight/4050-27914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27925/", + "id": 27925, + "name": "Masked Rider", + "site_detail_url": "https://comicvine.gamespot.com/masked-rider/4050-27925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27942/", + "id": 27942, + "name": "Mighty Morphin Power Rangers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-morphin-power-rangers/4050-27942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27944/", + "id": 27944, + "name": "Mighty Morphin Power Rangers: Ninja Rangers/VR Troopers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-morphin-power-rangers-ninja-rangersvr-troop/4050-27944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27952/", + "id": 27952, + "name": "X-Men: Legacy Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-annual/4050-27952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27953/", + "id": 27953, + "name": "Dark Reign: The List - Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-daredevil/4050-27953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27958/", + "id": 27958, + "name": "Civil War: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fantastic-four/4050-27958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27959/", + "id": 27959, + "name": "Wolverine: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-civil-war/4050-27959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27961/", + "id": 27961, + "name": "Civil War: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-iron-man/4050-27961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27969/", + "id": 27969, + "name": "Amazing Spider-Man Presents: Anti-Venom - New Ways To Live", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-anti-venom-new-ways-to/4050-27969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27983/", + "id": 27983, + "name": "Civil War: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-thunderbolts/4050-27983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27984/", + "id": 27984, + "name": "Thunderbolts: Guardian Protocols", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-guardian-protocols/4050-27984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27985/", + "id": 27985, + "name": "New Thunderbolts: One Step Forward", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-one-step-forward/4050-27985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27986/", + "id": 27986, + "name": "New Thunderbolts: Modern Marvels", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-modern-marvels/4050-27986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27996/", + "id": 27996, + "name": "Marvels Comics: X-Men #1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-x-men-1/4050-27996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27997/", + "id": 27997, + "name": "X-Men The Movie Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-movie-special-edition/4050-27997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27998/", + "id": 27998, + "name": "Adventures in Reading Starring the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/adventures-in-reading-starring-the-amazing-spider-/4050-27998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27999/", + "id": 27999, + "name": "New Thunderbolts: Right of Power", + "site_detail_url": "https://comicvine.gamespot.com/new-thunderbolts-right-of-power/4050-27999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28000/", + "id": 28000, + "name": "New Warriors: Defiant", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-defiant/4050-28000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28003/", + "id": 28003, + "name": "New Warriors: Thrashed", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-thrashed/4050-28003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28007/", + "id": 28007, + "name": "M.O.D.O.K. Reign Delay", + "site_detail_url": "https://comicvine.gamespot.com/modok-reign-delay/4050-28007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28008/", + "id": 28008, + "name": "Ultimate Comics Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-armor-wars/4050-28008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28011/", + "id": 28011, + "name": "Secret Invasion: New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-new-warriors/4050-28011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28012/", + "id": 28012, + "name": "New Warriors Classic", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-classic/4050-28012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28013/", + "id": 28013, + "name": "X-Men: The Shattering", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-shattering/4050-28013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28015/", + "id": 28015, + "name": "Runaways: Pride and Joy", + "site_detail_url": "https://comicvine.gamespot.com/runaways-pride-and-joy/4050-28015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28016/", + "id": 28016, + "name": "Uncanny X-Men: Divided We Stand", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-divided-we-stand/4050-28016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28017/", + "id": 28017, + "name": "Spider-Man: Torment", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-torment/4050-28017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28023/", + "id": 28023, + "name": "Moon Knight: The Bottom", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-the-bottom/4050-28023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28024/", + "id": 28024, + "name": "Spider-Man: Kraven's Last Hunt", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-last-hunt/4050-28024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28026/", + "id": 28026, + "name": "Moon Knight: Midnight Sun", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-midnight-sun/4050-28026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28027/", + "id": 28027, + "name": "Avengers Next: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/avengers-next-rebirth/4050-28027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28054/", + "id": 28054, + "name": "Avengers Forever", + "site_detail_url": "https://comicvine.gamespot.com/avengers-forever/4050-28054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28063/", + "id": 28063, + "name": "Marvel Super Hero Squad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad/4050-28063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28067/", + "id": 28067, + "name": "Hulk Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/hulk-team-up/4050-28067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28068/", + "id": 28068, + "name": "Giant-Size Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-woman/4050-28068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28072/", + "id": 28072, + "name": "Ender's Game: Command School", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-command-school/4050-28072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28077/", + "id": 28077, + "name": "Fantastic Four: First Family", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-first-family/4050-28077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28078/", + "id": 28078, + "name": "Spider-Man: 101 Ways to End the Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-101-ways-to-end-the-clone-saga/4050-28078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28079/", + "id": 28079, + "name": "Requiem for Dracula", + "site_detail_url": "https://comicvine.gamespot.com/requiem-for-dracula/4050-28079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28080/", + "id": 28080, + "name": "Wolverine: Old Man Logan Giant-Size", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-giant-size/4050-28080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28081/", + "id": 28081, + "name": "Master of Kung Fu Annual", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu-annual/4050-28081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28082/", + "id": 28082, + "name": "Giant-Size Power Man", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-power-man/4050-28082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28083/", + "id": 28083, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-28083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28084/", + "id": 28084, + "name": "Dark Reign: The List - X-Men", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-x-men/4050-28084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28085/", + "id": 28085, + "name": "Dark X-Men: The Confession", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men-the-confession/4050-28085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28086/", + "id": 28086, + "name": "Ender's Shadow: Command School", + "site_detail_url": "https://comicvine.gamespot.com/enders-shadow-command-school/4050-28086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28087/", + "id": 28087, + "name": "Heroes Reborn: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-avengers/4050-28087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28088/", + "id": 28088, + "name": "Heroes Reborn: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-captain-america/4050-28088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28089/", + "id": 28089, + "name": "Heroes Reborn: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-iron-man/4050-28089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28090/", + "id": 28090, + "name": "Captain America and the Falcon: Madbomb", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-madbomb/4050-28090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28091/", + "id": 28091, + "name": "Captain America by Jack Kirby: Bicentennial Battles", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-jack-kirby-bicentennial-battles/4050-28091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28092/", + "id": 28092, + "name": "Captain Britain and MI:13 : Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-mi13-secret-invasion/4050-28092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28093/", + "id": 28093, + "name": "Captain Britain and MI:13 : Hell Comes To Birmingham", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-mi13-hell-comes-to-birmingham/4050-28093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28094/", + "id": 28094, + "name": "Thor Annual", + "site_detail_url": "https://comicvine.gamespot.com/thor-annual/4050-28094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28098/", + "id": 28098, + "name": "Dr. Doom and the Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/dr-doom-and-the-masters-of-evil/4050-28098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28099/", + "id": 28099, + "name": "Squadron Supreme: The Pre-War Years", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-the-pre-war-years/4050-28099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28104/", + "id": 28104, + "name": "Astonishing X-Men/Amazing Spider-Man: The Gauntlet Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-menamazing-spider-man-the-gauntlet-s/4050-28104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28108/", + "id": 28108, + "name": "G.L.A.: Misassembled", + "site_detail_url": "https://comicvine.gamespot.com/gla-misassembled/4050-28108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28113/", + "id": 28113, + "name": "Friendly Neighborhood Spider-Man: Derailed", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-derailed/4050-28113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28114/", + "id": 28114, + "name": "Friendly Neighborhood Spider-Man: Mystery Date", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-mystery-date/4050-28114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28115/", + "id": 28115, + "name": "Sensational Spider-Man: Feral", + "site_detail_url": "https://comicvine.gamespot.com/sensational-spider-man-feral/4050-28115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28119/", + "id": 28119, + "name": "Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/inhumans/4050-28119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28120/", + "id": 28120, + "name": "Penance: Relentless", + "site_detail_url": "https://comicvine.gamespot.com/penance-relentless/4050-28120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28121/", + "id": 28121, + "name": "Power Pack Classic", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-classic/4050-28121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28122/", + "id": 28122, + "name": "Spider-Girl Presents The Buzz and Darkdevil", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-presents-the-buzz-and-darkdevil/4050-28122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28123/", + "id": 28123, + "name": "Amazing Spider-Girl: Whatever Happened To The Daughter of Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-whatever-happened-to-the-daugh/4050-28123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28124/", + "id": 28124, + "name": "X-Men: Declassified", + "site_detail_url": "https://comicvine.gamespot.com/x-men-declassified/4050-28124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28134/", + "id": 28134, + "name": "Dark Reign: Made Men", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-made-men/4050-28134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28146/", + "id": 28146, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion/4050-28146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28147/", + "id": 28147, + "name": "Amazing Spider-Girl: Comes the Carnage!", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-comes-the-carnage/4050-28147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28148/", + "id": 28148, + "name": "Amazing Spider-Girl: Mind Games", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-mind-games/4050-28148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28149/", + "id": 28149, + "name": "Amazing Spider-Girl: Brand New May", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-brand-new-may/4050-28149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28150/", + "id": 28150, + "name": "Amazing Spider-Girl: Maybreak", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-girl-maybreak/4050-28150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28151/", + "id": 28151, + "name": "Secret Invasion: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-captain-marvel/4050-28151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28152/", + "id": 28152, + "name": "Secret Invasion: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-28152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28153/", + "id": 28153, + "name": "Secret Invasion: Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-amazing-spider-man/4050-28153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28156/", + "id": 28156, + "name": "Fantastic Five: The Final Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-five-the-final-doom/4050-28156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28159/", + "id": 28159, + "name": "Secret Invasion: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line/4050-28159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28160/", + "id": 28160, + "name": "Secret Wars Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-omnibus/4050-28160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28161/", + "id": 28161, + "name": "Spider-Man and the Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-human-torch/4050-28161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28192/", + "id": 28192, + "name": "X-Man / Hulk '98", + "site_detail_url": "https://comicvine.gamespot.com/x-man-hulk-98/4050-28192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28195/", + "id": 28195, + "name": "Thing & She-Hulk: The Long Night", + "site_detail_url": "https://comicvine.gamespot.com/thing-she-hulk-the-long-night/4050-28195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28237/", + "id": 28237, + "name": "Exiles Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/exiles-ultimate-collection/4050-28237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28238/", + "id": 28238, + "name": "Ghost Rider Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-team-up/4050-28238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28257/", + "id": 28257, + "name": "1939 Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/1939-daily-bugle/4050-28257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28264/", + "id": 28264, + "name": "Last Hero Standing", + "site_detail_url": "https://comicvine.gamespot.com/last-hero-standing/4050-28264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28267/", + "id": 28267, + "name": "Thing: Freakshow", + "site_detail_url": "https://comicvine.gamespot.com/thing-freakshow/4050-28267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28268/", + "id": 28268, + "name": "The Last Defenders", + "site_detail_url": "https://comicvine.gamespot.com/the-last-defenders/4050-28268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28269/", + "id": 28269, + "name": "Omega Flight: Alpha to Omega", + "site_detail_url": "https://comicvine.gamespot.com/omega-flight-alpha-to-omega/4050-28269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28284/", + "id": 28284, + "name": "Squadron Supreme: Power to the People", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-power-to-the-people/4050-28284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28300/", + "id": 28300, + "name": "Sub-Mariner: Revolution", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-revolution/4050-28300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28301/", + "id": 28301, + "name": "Spider-Man: Death of Captain Stacy", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-of-captain-stacy/4050-28301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28302/", + "id": 28302, + "name": "Spider-Man/Mary Jane:...You Just Hit the Jackpot", + "site_detail_url": "https://comicvine.gamespot.com/spider-manmary-janeyou-just-hit-the-jackpot/4050-28302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28304/", + "id": 28304, + "name": "Punisher Annual", + "site_detail_url": "https://comicvine.gamespot.com/punisher-annual/4050-28304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28313/", + "id": 28313, + "name": "Decimation: Generation M", + "site_detail_url": "https://comicvine.gamespot.com/decimation-generation-m/4050-28313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28376/", + "id": 28376, + "name": "Shang-Chi: Master of Kung Fu One-Shot (B&W)", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-master-of-kung-fu-one-shot-bw/4050-28376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28378/", + "id": 28378, + "name": "X-Babies", + "site_detail_url": "https://comicvine.gamespot.com/x-babies/4050-28378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28411/", + "id": 28411, + "name": "Dark Reign: The List - Secret Warriors", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-secret-warriors/4050-28411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28412/", + "id": 28412, + "name": "Doctor Voodoo: Avenger of the Supernatural", + "site_detail_url": "https://comicvine.gamespot.com/doctor-voodoo-avenger-of-the-supernatural/4050-28412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28414/", + "id": 28414, + "name": "X-Men vs. Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-agents-of-atlas/4050-28414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28441/", + "id": 28441, + "name": "Black Panther: Panther's Prey", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-panthers-prey/4050-28441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28444/", + "id": 28444, + "name": "Ultimate Wolverine vs. Hulk: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk-directors-cut/4050-28444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28453/", + "id": 28453, + "name": "Thor: The Legend", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-legend/4050-28453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28480/", + "id": 28480, + "name": "X-Men: Proteus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-proteus/4050-28480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28481/", + "id": 28481, + "name": "X-Men: First Class Finals", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-finals/4050-28481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28482/", + "id": 28482, + "name": "Venom vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/venom-vs-carnage/4050-28482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28484/", + "id": 28484, + "name": "Venom: Dark Origin", + "site_detail_url": "https://comicvine.gamespot.com/venom-dark-origin/4050-28484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28488/", + "id": 28488, + "name": "Vision: Yesterday and Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/vision-yesterday-and-tomorrow/4050-28488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28489/", + "id": 28489, + "name": "What If? Classic", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic/4050-28489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28492/", + "id": 28492, + "name": "X-Men: Future History –– Messiah War Sourcebook", + "site_detail_url": "https://comicvine.gamespot.com/x-men-future-history-messiah-war-sourcebook/4050-28492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28495/", + "id": 28495, + "name": "Marvel Mystery Handbook: 70th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mystery-handbook-70th-anniversary-special/4050-28495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28498/", + "id": 28498, + "name": "Fantastic Four Giant-Size Adventures", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-giant-size-adventures/4050-28498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28499/", + "id": 28499, + "name": "Thunderbolts Presents: Zemo: Born Better", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-presents-zemo-born-better/4050-28499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28503/", + "id": 28503, + "name": "Captain America Theater of War: Ghosts of My Country", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-ghosts-of-my-countr/4050-28503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28506/", + "id": 28506, + "name": "Daredevil/Batman", + "site_detail_url": "https://comicvine.gamespot.com/daredevilbatman/4050-28506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28512/", + "id": 28512, + "name": "Uncanny X-Men: Extremists", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-extremists/4050-28512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28513/", + "id": 28513, + "name": "X-Men: First Class: Tomorrow's Brightest", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-tomorrows-brightest/4050-28513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28514/", + "id": 28514, + "name": "X-Men: First Class: The Wonder Years", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-the-wonder-years/4050-28514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28515/", + "id": 28515, + "name": "Spider-Man 1602", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1602/4050-28515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28516/", + "id": 28516, + "name": "Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews/4050-28516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28554/", + "id": 28554, + "name": "Century", + "site_detail_url": "https://comicvine.gamespot.com/century/4050-28554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28561/", + "id": 28561, + "name": "X-Men: Blinded By the Light", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blinded-by-the-light/4050-28561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28565/", + "id": 28565, + "name": "Logan: Shadow Society", + "site_detail_url": "https://comicvine.gamespot.com/logan-shadow-society/4050-28565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28570/", + "id": 28570, + "name": "Toxin: The Devil You Know", + "site_detail_url": "https://comicvine.gamespot.com/toxin-the-devil-you-know/4050-28570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28571/", + "id": 28571, + "name": "X-Men: First Class: Band of Brothers", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-band-of-brothers/4050-28571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28576/", + "id": 28576, + "name": "Web of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man/4050-28576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28579/", + "id": 28579, + "name": "Iron Man: Iron Protocols", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-iron-protocols/4050-28579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28584/", + "id": 28584, + "name": "Uncanny X-Men: Lovelorn", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-lovelorn/4050-28584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28585/", + "id": 28585, + "name": "Cloak & Dagger: Child of Darkness, Child of Light", + "site_detail_url": "https://comicvine.gamespot.com/cloak-dagger-child-of-darkness-child-of-light/4050-28585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28586/", + "id": 28586, + "name": "Wonder Man: My Fair Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man-my-fair-super-hero/4050-28586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28590/", + "id": 28590, + "name": "Peter Parker, Spider-Man: Back in Black", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-back-in-black/4050-28590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28606/", + "id": 28606, + "name": "Marvel Spotlight: War Of Kings", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-war-of-kings/4050-28606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28607/", + "id": 28607, + "name": "X-Men: Deadly Genesis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deadly-genesis/4050-28607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28608/", + "id": 28608, + "name": "Avengers: Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/avengers-hawkeye/4050-28608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28617/", + "id": 28617, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-28617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28618/", + "id": 28618, + "name": "Marvel Reading Chronology", + "site_detail_url": "https://comicvine.gamespot.com/marvel-reading-chronology/4050-28618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28619/", + "id": 28619, + "name": "The Wonderful Wizard of Oz Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/the-wonderful-wizard-of-oz-sketchbook/4050-28619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28620/", + "id": 28620, + "name": "Wolverine and the X-Men Magazine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-magazine/4050-28620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28621/", + "id": 28621, + "name": "Marvel Spotlight: Punisher Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-punisher-movie/4050-28621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28622/", + "id": 28622, + "name": "Marvel Previews: Special Dark Reign Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-special-dark-reign-edition/4050-28622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28623/", + "id": 28623, + "name": "Marvel's Greatest Collections 2009", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-collections-2009/4050-28623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28624/", + "id": 28624, + "name": "Franklin Richards: Sons Of Geniuses", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-sons-of-geniuses/4050-28624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28632/", + "id": 28632, + "name": "Wolverine: Not Dead Yet", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-not-dead-yet/4050-28632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28633/", + "id": 28633, + "name": "X-Men: Emperor Vulcan", + "site_detail_url": "https://comicvine.gamespot.com/x-men-emperor-vulcan/4050-28633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28634/", + "id": 28634, + "name": "Uncanny X-Men: Rise and Fall of the Shi'ar Empire", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-rise-and-fall-of-the-shiar-empire/4050-28634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28640/", + "id": 28640, + "name": "Li'l Pals", + "site_detail_url": "https://comicvine.gamespot.com/lil-pals/4050-28640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28641/", + "id": 28641, + "name": "Tex Dawson, Gun-Slinger", + "site_detail_url": "https://comicvine.gamespot.com/tex-dawson-gun-slinger/4050-28641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28648/", + "id": 28648, + "name": "The Avengers: When Ultron Attacks!", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-when-ultron-attacks/4050-28648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28654/", + "id": 28654, + "name": "Build A Fantastic You", + "site_detail_url": "https://comicvine.gamespot.com/build-a-fantastic-you/4050-28654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28663/", + "id": 28663, + "name": "MGM's Marvelous Wizard of Oz", + "site_detail_url": "https://comicvine.gamespot.com/mgms-marvelous-wizard-of-oz/4050-28663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28711/", + "id": 28711, + "name": "Death of Groo the Wanderer", + "site_detail_url": "https://comicvine.gamespot.com/death-of-groo-the-wanderer/4050-28711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28715/", + "id": 28715, + "name": "Dark Reign: The List - Hulk", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-hulk/4050-28715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28726/", + "id": 28726, + "name": "FOOM", + "site_detail_url": "https://comicvine.gamespot.com/foom/4050-28726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28797/", + "id": 28797, + "name": "Gun-Slinger", + "site_detail_url": "https://comicvine.gamespot.com/gun-slinger/4050-28797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28798/", + "id": 28798, + "name": "Western Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/western-team-up/4050-28798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28819/", + "id": 28819, + "name": "Universal Studios Islands of Adventure Under Siege", + "site_detail_url": "https://comicvine.gamespot.com/universal-studios-islands-of-adventure-under-siege/4050-28819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28820/", + "id": 28820, + "name": "Masterlock Presents: The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/masterlock-presents-the-incredible-hulk/4050-28820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28843/", + "id": 28843, + "name": "Marvel Spotlight: Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-deadpool/4050-28843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28862/", + "id": 28862, + "name": "Disney Primer", + "site_detail_url": "https://comicvine.gamespot.com/disney-primer/4050-28862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28880/", + "id": 28880, + "name": "Annihilation, Book One", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-book-one/4050-28880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28886/", + "id": 28886, + "name": "Annihilation, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-book-two/4050-28886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28888/", + "id": 28888, + "name": "The Stand: Soul Survivors", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-soul-survivors/4050-28888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28899/", + "id": 28899, + "name": "The Amazing Spider-Man/The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-manthe-incredible-hulk/4050-28899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28907/", + "id": 28907, + "name": "Dragon Strike", + "site_detail_url": "https://comicvine.gamespot.com/dragon-strike/4050-28907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28935/", + "id": 28935, + "name": "Annihilation, Book Three", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-book-three/4050-28935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28936/", + "id": 28936, + "name": "X-Force/Cable: Messiah War", + "site_detail_url": "https://comicvine.gamespot.com/x-forcecable-messiah-war/4050-28936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28946/", + "id": 28946, + "name": "Black Widow: The Sting of the Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-sting-of-the-widow/4050-28946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28948/", + "id": 28948, + "name": "What If? Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars/4050-28948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28950/", + "id": 28950, + "name": "X-Men: Phoenix Rising", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-rising/4050-28950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28956/", + "id": 28956, + "name": "Giant-Size Hulk", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-hulk/4050-28956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28975/", + "id": 28975, + "name": "Astonishing X-Men Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-omnibus/4050-28975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28977/", + "id": 28977, + "name": "Ultimate Spider-Man: Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-collection/4050-28977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29054/", + "id": 29054, + "name": "Giant-Size Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-iron-man/4050-29054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29056/", + "id": 29056, + "name": "Venom: The Finale", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-finale/4050-29056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29100/", + "id": 29100, + "name": "Dark Avengers: Ares", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-ares/4050-29100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29101/", + "id": 29101, + "name": "Dark Reign: The List - Punisher", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-punisher/4050-29101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29102/", + "id": 29102, + "name": "Dark Reign: The List - Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-wolverine/4050-29102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29125/", + "id": 29125, + "name": "X Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/x-necrosha/4050-29125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29129/", + "id": 29129, + "name": "Giant-Size Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-super-heroes/4050-29129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29132/", + "id": 29132, + "name": "Night Rider", + "site_detail_url": "https://comicvine.gamespot.com/night-rider/4050-29132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29136/", + "id": 29136, + "name": "Wolverine: Flies to a Spider", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-flies-to-a-spider/4050-29136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29143/", + "id": 29143, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse - Executioner", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse-exe/4050-29143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29146/", + "id": 29146, + "name": "The Adventures of Pussycat", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-pussycat/4050-29146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29178/", + "id": 29178, + "name": "Wolverine: Get Mystique", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-get-mystique/4050-29178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29196/", + "id": 29196, + "name": "Marvel Holiday Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-spectacular/4050-29196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29219/", + "id": 29219, + "name": "Wolverine: Logan", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-logan/4050-29219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29222/", + "id": 29222, + "name": "Venom: Sign of the Boss", + "site_detail_url": "https://comicvine.gamespot.com/venom-sign-of-the-boss/4050-29222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29249/", + "id": 29249, + "name": "Spider-Man VS Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-doctor-doom/4050-29249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29251/", + "id": 29251, + "name": "Break The Chain!", + "site_detail_url": "https://comicvine.gamespot.com/break-the-chain/4050-29251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29259/", + "id": 29259, + "name": "Fantastic Four Visionaries: Walter Simonson", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-walter-simonson/4050-29259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29260/", + "id": 29260, + "name": "Nova: Annihilation Conquest", + "site_detail_url": "https://comicvine.gamespot.com/nova-annihilation-conquest/4050-29260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29270/", + "id": 29270, + "name": "The Amazing Spider-Man: Soul of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-soul-of-the-hunter/4050-29270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29271/", + "id": 29271, + "name": "Wolverine: Dangerous Games", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-dangerous-games/4050-29271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29272/", + "id": 29272, + "name": "The Amazing Spider-Man: Hit and Run!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-hit-and-run/4050-29272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29297/", + "id": 29297, + "name": "Assault on New Olympus Prologue", + "site_detail_url": "https://comicvine.gamespot.com/assault-on-new-olympus-prologue/4050-29297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29299/", + "id": 29299, + "name": "Psylocke", + "site_detail_url": "https://comicvine.gamespot.com/psylocke/4050-29299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29301/", + "id": 29301, + "name": "The Marvelous Land of Oz", + "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-land-of-oz/4050-29301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29302/", + "id": 29302, + "name": "Black Widow: Deadly Origin", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-deadly-origin/4050-29302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29328/", + "id": 29328, + "name": "X-Men Origins: Iceman", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-iceman/4050-29328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29329/", + "id": 29329, + "name": "Deadpool Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-team-up/4050-29329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29331/", + "id": 29331, + "name": "Avengers: Earth's Mightiest Heroes II", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii/4050-29331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29380/", + "id": 29380, + "name": "Avengers Log", + "site_detail_url": "https://comicvine.gamespot.com/avengers-log/4050-29380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29381/", + "id": 29381, + "name": "Avengers: Celestial Madonna", + "site_detail_url": "https://comicvine.gamespot.com/avengers-celestial-madonna/4050-29381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29383/", + "id": 29383, + "name": "Avengers: Clear and Present Dangers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-clear-and-present-dangers/4050-29383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29384/", + "id": 29384, + "name": "Avengers: Origin of Vision", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origin-of-vision/4050-29384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29385/", + "id": 29385, + "name": "Avengers: Ultron Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ultron-unleashed/4050-29385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29386/", + "id": 29386, + "name": "Avengers: Ultron Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ultron-unlimited/4050-29386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29405/", + "id": 29405, + "name": "Mark Hazzard: Merc Annual", + "site_detail_url": "https://comicvine.gamespot.com/mark-hazzard-merc-annual/4050-29405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29415/", + "id": 29415, + "name": "Avengers: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes/4050-29415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29416/", + "id": 29416, + "name": "X-Factor: The Longest Night", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-the-longest-night/4050-29416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29423/", + "id": 29423, + "name": "Fantastic Four Special", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-special/4050-29423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29424/", + "id": 29424, + "name": "Fantastic Four: A Death In The Family", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-a-death-in-the-family/4050-29424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29427/", + "id": 29427, + "name": "Marvel Zombies: Evil Evolution", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-evil-evolution/4050-29427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29459/", + "id": 29459, + "name": "Exiles: Point of No Return", + "site_detail_url": "https://comicvine.gamespot.com/exiles-point-of-no-return/4050-29459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29460/", + "id": 29460, + "name": "X-Factor: Life and Death Matters", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-life-and-death-matters/4050-29460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29462/", + "id": 29462, + "name": "X-Factor: Many Lives of Madrox", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-many-lives-of-madrox/4050-29462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29463/", + "id": 29463, + "name": "X-Factor: Heart of Ice", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-heart-of-ice/4050-29463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29464/", + "id": 29464, + "name": "X-Factor: The Only Game in Town", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-the-only-game-in-town/4050-29464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29466/", + "id": 29466, + "name": "X-Factor: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-secret-invasion/4050-29466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29498/", + "id": 29498, + "name": "Young X-Men: Final Genesis", + "site_detail_url": "https://comicvine.gamespot.com/young-x-men-final-genesis/4050-29498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29499/", + "id": 29499, + "name": "Young X-Men: Book of Revelations", + "site_detail_url": "https://comicvine.gamespot.com/young-x-men-book-of-revelations/4050-29499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29500/", + "id": 29500, + "name": "Wolverine: The Death of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-death-of-wolverine/4050-29500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29501/", + "id": 29501, + "name": "Invincible Iron Man: The Five Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-the-five-nightmares/4050-29501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29503/", + "id": 29503, + "name": "Iron Man: Haunted", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-haunted/4050-29503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29510/", + "id": 29510, + "name": "Decimation: Son of M", + "site_detail_url": "https://comicvine.gamespot.com/decimation-son-of-m/4050-29510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29511/", + "id": 29511, + "name": "Young Avengers Special", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-special/4050-29511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29512/", + "id": 29512, + "name": "What If?: Event Horizon", + "site_detail_url": "https://comicvine.gamespot.com/what-if-event-horizon/4050-29512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29576/", + "id": 29576, + "name": "X-Men/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/x-menfantastic-four/4050-29576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29619/", + "id": 29619, + "name": "S.W.O.R.D.", + "site_detail_url": "https://comicvine.gamespot.com/sword/4050-29619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29623/", + "id": 29623, + "name": "Dark X-Men", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men/4050-29623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29650/", + "id": 29650, + "name": "Colossus: God's Country", + "site_detail_url": "https://comicvine.gamespot.com/colossus-gods-country/4050-29650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29653/", + "id": 29653, + "name": "Wolverine: Evilution", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-evilution/4050-29653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29665/", + "id": 29665, + "name": "Strange", + "site_detail_url": "https://comicvine.gamespot.com/strange/4050-29665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29714/", + "id": 29714, + "name": "X-Men: Kitty Pryde and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-kitty-pryde-and-wolverine/4050-29714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29715/", + "id": 29715, + "name": "Captain America: The Man With No Face", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-man-with-no-face/4050-29715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29722/", + "id": 29722, + "name": "Realm of Kings: Imperial Guard", + "site_detail_url": "https://comicvine.gamespot.com/realm-of-kings-imperial-guard/4050-29722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29729/", + "id": 29729, + "name": "New X-Men: Hellions", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-hellions/4050-29729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29730/", + "id": 29730, + "name": "New Mutants: Back to School", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-back-to-school/4050-29730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29732/", + "id": 29732, + "name": "X-Men: Kitty Pryde: Shadow and Flame", + "site_detail_url": "https://comicvine.gamespot.com/x-men-kitty-pryde-shadow-and-flame/4050-29732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29733/", + "id": 29733, + "name": "Madrox: Multiple Choice", + "site_detail_url": "https://comicvine.gamespot.com/madrox-multiple-choice/4050-29733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29734/", + "id": 29734, + "name": "Spider-Man: Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-sinister-six/4050-29734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29747/", + "id": 29747, + "name": "X-Men: Messiah CompleX", + "site_detail_url": "https://comicvine.gamespot.com/x-men-messiah-complex/4050-29747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29748/", + "id": 29748, + "name": "X-Men Origins", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins/4050-29748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29783/", + "id": 29783, + "name": "X-Men: Magik: Storm and Illyana", + "site_detail_url": "https://comicvine.gamespot.com/x-men-magik-storm-and-illyana/4050-29783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29796/", + "id": 29796, + "name": "Buck Rogers", + "site_detail_url": "https://comicvine.gamespot.com/buck-rogers/4050-29796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29799/", + "id": 29799, + "name": "Disney's Pocahontas", + "site_detail_url": "https://comicvine.gamespot.com/disneys-pocahontas/4050-29799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29824/", + "id": 29824, + "name": "Captain Marvel/Ms. Marvel: Secret Invasion Infiltration", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvelms-marvel-secret-invasion-infiltrati/4050-29824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29825/", + "id": 29825, + "name": "Moon Knight: God and Country", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-god-and-country/4050-29825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29826/", + "id": 29826, + "name": "Moon Knight: The Death of Marc Spector", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-the-death-of-marc-spector/4050-29826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29827/", + "id": 29827, + "name": "Moon Knight: Down South", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-down-south/4050-29827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29828/", + "id": 29828, + "name": "Moon Knight Saga", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-saga/4050-29828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29838/", + "id": 29838, + "name": "Dark Reign: The List - Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-list-amazing-spider-man/4050-29838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29846/", + "id": 29846, + "name": "Realm of Kings", + "site_detail_url": "https://comicvine.gamespot.com/realm-of-kings/4050-29846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29847/", + "id": 29847, + "name": "Madness in Murderworld", + "site_detail_url": "https://comicvine.gamespot.com/madness-in-murderworld/4050-29847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29848/", + "id": 29848, + "name": "Iron Man: Director of S.H.I.E.L.D.: With Iron Hands", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-director-of-shield-with-iron-hands/4050-29848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29864/", + "id": 29864, + "name": "Daredevil: Yellow", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-yellow/4050-29864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29913/", + "id": 29913, + "name": "Realm of Kings Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/realm-of-kings-inhumans/4050-29913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29914/", + "id": 29914, + "name": "The Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/the-black-knight/4050-29914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29926/", + "id": 29926, + "name": "Daredevil by Frank Miller and Klaus Janson", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-frank-miller-and-klaus-janson/4050-29926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29929/", + "id": 29929, + "name": "Wolverine: Origin", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origin/4050-29929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29930/", + "id": 29930, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-29930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29931/", + "id": 29931, + "name": "X-Men: Animation Special", + "site_detail_url": "https://comicvine.gamespot.com/x-men-animation-special/4050-29931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29953/", + "id": 29953, + "name": "Essential Werewolf by Night", + "site_detail_url": "https://comicvine.gamespot.com/essential-werewolf-by-night/4050-29953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29958/", + "id": 29958, + "name": "The Marvel X-Men Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-x-men-collection/4050-29958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29959/", + "id": 29959, + "name": "Marvel Illustrated: Swimsuit Issue", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-swimsuit-issue/4050-29959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29960/", + "id": 29960, + "name": "Marvel Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectors-edition/4050-29960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29962/", + "id": 29962, + "name": "Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum/4050-29962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29973/", + "id": 29973, + "name": "Disney's Beauty and the Beast", + "site_detail_url": "https://comicvine.gamespot.com/disneys-beauty-and-the-beast/4050-29973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30002/", + "id": 30002, + "name": "Weapon X: Days of Future Now", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-days-of-future-now/4050-30002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30019/", + "id": 30019, + "name": "Daredevil: Born Again", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-born-again/4050-30019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30032/", + "id": 30032, + "name": "Son of Marvel Reading Chronology", + "site_detail_url": "https://comicvine.gamespot.com/son-of-marvel-reading-chronology/4050-30032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30034/", + "id": 30034, + "name": "Essential Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/essential-sub-mariner/4050-30034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30039/", + "id": 30039, + "name": "Wolverine: Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x/4050-30039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30051/", + "id": 30051, + "name": "Astonishing X-Men: Ghost Box", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-ghost-box/4050-30051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30053/", + "id": 30053, + "name": "Spider-Girl: Like Father, Like Daughter", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-like-father-like-daughter/4050-30053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30060/", + "id": 30060, + "name": "What If? Civil War", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war/4050-30060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30069/", + "id": 30069, + "name": "X-Men: God Loves, Man Kills", + "site_detail_url": "https://comicvine.gamespot.com/x-men-god-loves-man-kills/4050-30069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30085/", + "id": 30085, + "name": "The Immortal Iron Fist Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-omnibus/4050-30085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30086/", + "id": 30086, + "name": "Secret Invasion: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-x-men/4050-30086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30087/", + "id": 30087, + "name": "Women of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel/4050-30087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30089/", + "id": 30089, + "name": "Women of Marvel Posterbook", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-posterbook/4050-30089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30090/", + "id": 30090, + "name": "X-Men/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/x-menfantastic-four/4050-30090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30091/", + "id": 30091, + "name": "Uncanny X-Men: Sisterhood", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-sisterhood/4050-30091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30092/", + "id": 30092, + "name": "X-Men Legacy: Sins of the Father", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-sins-of-the-father/4050-30092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30093/", + "id": 30093, + "name": "X-Men Legacy: Divided He Stands", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-divided-he-stands/4050-30093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30095/", + "id": 30095, + "name": "Dark Reign: Accept Change", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-accept-change/4050-30095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30096/", + "id": 30096, + "name": "X-Men: The Dark Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga/4050-30096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30097/", + "id": 30097, + "name": "X-Men: Golgotha", + "site_detail_url": "https://comicvine.gamespot.com/x-men-golgotha/4050-30097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30098/", + "id": 30098, + "name": "X-Men: Bizarre Love Triangle", + "site_detail_url": "https://comicvine.gamespot.com/x-men-bizarre-love-triangle/4050-30098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30099/", + "id": 30099, + "name": "X-Men: Divided We Stand", + "site_detail_url": "https://comicvine.gamespot.com/x-men-divided-we-stand/4050-30099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30100/", + "id": 30100, + "name": "Uncanny X-Men: Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-manifest-destiny/4050-30100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30110/", + "id": 30110, + "name": "Incredible Hulk: The End", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-the-end/4050-30110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30111/", + "id": 30111, + "name": "Daredevil Omnibus by Ed Brubaker", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus-by-ed-brubaker/4050-30111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30113/", + "id": 30113, + "name": "Maxum Games: Demons of Mercy", + "site_detail_url": "https://comicvine.gamespot.com/maxum-games-demons-of-mercy/4050-30113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30120/", + "id": 30120, + "name": "The Sentry", + "site_detail_url": "https://comicvine.gamespot.com/the-sentry/4050-30120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30121/", + "id": 30121, + "name": "Secret Invasion: Home Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-home-invasion/4050-30121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30122/", + "id": 30122, + "name": "New X-Men Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-omnibus/4050-30122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30123/", + "id": 30123, + "name": "Ultimates Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-omnibus/4050-30123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30125/", + "id": 30125, + "name": "X-Men: Eve of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/x-men-eve-of-destruction/4050-30125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30126/", + "id": 30126, + "name": "X-Men/Black Panther: Wild Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/x-menblack-panther-wild-kingdom/4050-30126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30127/", + "id": 30127, + "name": "Black Panther: Back to Africa", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-back-to-africa/4050-30127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30135/", + "id": 30135, + "name": "Thor Giant-Size Finale", + "site_detail_url": "https://comicvine.gamespot.com/thor-giant-size-finale/4050-30135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30150/", + "id": 30150, + "name": "Black Panther: Four the Hard Way", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-four-the-hard-way/4050-30150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30155/", + "id": 30155, + "name": "Siege: The Cabal", + "site_detail_url": "https://comicvine.gamespot.com/siege-the-cabal/4050-30155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30159/", + "id": 30159, + "name": "Citizen V and the V-Battalion: the Everlasting", + "site_detail_url": "https://comicvine.gamespot.com/citizen-v-and-the-v-battalion-the-everlasting/4050-30159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30172/", + "id": 30172, + "name": "Dark Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-annual/4050-30172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30173/", + "id": 30173, + "name": "X-Force Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-force-annual/4050-30173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30174/", + "id": 30174, + "name": "Black Widow & The Marvel Girls", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-marvel-girls/4050-30174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30175/", + "id": 30175, + "name": "Ka-Zar '97", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-97/4050-30175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30176/", + "id": 30176, + "name": "Ka-Zar of the Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-of-the-savage-land/4050-30176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30182/", + "id": 30182, + "name": "What If? Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-invasion/4050-30182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30183/", + "id": 30183, + "name": "Black Panther: Bad Mutha", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-bad-mutha/4050-30183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30185/", + "id": 30185, + "name": "Black Panther: Little Green Men", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-little-green-men/4050-30185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30186/", + "id": 30186, + "name": "Black Panther: The Bride", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-bride/4050-30186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30187/", + "id": 30187, + "name": "Spider-Man Noir: Eyes Without A Face", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face/4050-30187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30188/", + "id": 30188, + "name": "Fall of the Hulks: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-alpha/4050-30188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30190/", + "id": 30190, + "name": "Conan: Scarlet Sword", + "site_detail_url": "https://comicvine.gamespot.com/conan-scarlet-sword/4050-30190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30200/", + "id": 30200, + "name": "Avengers/X-Men: Utopia", + "site_detail_url": "https://comicvine.gamespot.com/avengersx-men-utopia/4050-30200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30203/", + "id": 30203, + "name": "Avengers: The Initiative: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-disassembled/4050-30203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30207/", + "id": 30207, + "name": "Classic Punisher", + "site_detail_url": "https://comicvine.gamespot.com/classic-punisher/4050-30207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30208/", + "id": 30208, + "name": "Astonishing X-Men: Gifted", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-gifted/4050-30208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30209/", + "id": 30209, + "name": "Astonishing X-Men: Dangerous", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-dangerous/4050-30209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30210/", + "id": 30210, + "name": "Astonishing X-Men: Torn", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-torn/4050-30210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30211/", + "id": 30211, + "name": "Astonishing X-Men: Unstoppable", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-unstoppable/4050-30211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30212/", + "id": 30212, + "name": "Dark Tower: Battle of Jericho Hill", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-battle-of-jericho-hill/4050-30212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30213/", + "id": 30213, + "name": "Iron Man vs. Whiplash", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-vs-whiplash/4050-30213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30214/", + "id": 30214, + "name": "Iron Man: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-requiem/4050-30214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30217/", + "id": 30217, + "name": "Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men/4050-30217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30219/", + "id": 30219, + "name": "New X-Men Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-ultimate-collection/4050-30219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30221/", + "id": 30221, + "name": "New X-Men: E is for Extinction", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-e-is-for-extinction/4050-30221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30226/", + "id": 30226, + "name": "Avengers/Defenders War", + "site_detail_url": "https://comicvine.gamespot.com/avengersdefenders-war/4050-30226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30228/", + "id": 30228, + "name": "Wolverine Origins: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-dark-reign/4050-30228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30229/", + "id": 30229, + "name": "Wolverine: Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-agent-of-shield/4050-30229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30230/", + "id": 30230, + "name": "Wolverine: Enemy Of The State", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-enemy-of-the-state/4050-30230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30231/", + "id": 30231, + "name": "Wolverine: Origins & Endings", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-endings/4050-30231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30232/", + "id": 30232, + "name": "Captain America Theater of War: Prisoners of Duty", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-prisoners-of-duty/4050-30232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30233/", + "id": 30233, + "name": "X-Men: Phoenix - Endsong", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-endsong/4050-30233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30234/", + "id": 30234, + "name": "X-Men: Phoenix - Warsong", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-warsong/4050-30234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30235/", + "id": 30235, + "name": "X-Infernus", + "site_detail_url": "https://comicvine.gamespot.com/x-infernus/4050-30235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30236/", + "id": 30236, + "name": "X-Men: Worlds Apart", + "site_detail_url": "https://comicvine.gamespot.com/x-men-worlds-apart/4050-30236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30238/", + "id": 30238, + "name": "X-Men: The Blood of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-blood-of-apocalypse/4050-30238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30239/", + "id": 30239, + "name": "X-Men: Day of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/x-men-day-of-the-atom/4050-30239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30241/", + "id": 30241, + "name": "Uncanny X-Men: Bright New Mourning", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-bright-new-mourning/4050-30241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30242/", + "id": 30242, + "name": "The Uncanny X-Men: From the Ashes...", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-from-the-ashes/4050-30242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30245/", + "id": 30245, + "name": "Hulk: WWH - World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-world-war-hulk/4050-30245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30246/", + "id": 30246, + "name": "Decimation: X-Men - The Day After", + "site_detail_url": "https://comicvine.gamespot.com/decimation-x-men-the-day-after/4050-30246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30248/", + "id": 30248, + "name": "Punisher vs. Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/punisher-vs-bullseye/4050-30248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30250/", + "id": 30250, + "name": "New X-Men: Imperial", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-imperial/4050-30250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30251/", + "id": 30251, + "name": "New X-Men: New Worlds", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-new-worlds/4050-30251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30252/", + "id": 30252, + "name": "New X-Men: Riot at Xavier's", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-riot-at-xaviers/4050-30252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30253/", + "id": 30253, + "name": "New X-Men: Assault On Weapon Plus", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-assault-on-weapon-plus/4050-30253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30256/", + "id": 30256, + "name": "New X-Men: Planet X", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-planet-x/4050-30256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30258/", + "id": 30258, + "name": "New X-Men: Here Comes Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-here-comes-tomorrow/4050-30258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30262/", + "id": 30262, + "name": "New X-Men: Academy X: Choosing Sides", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-choosing-sides/4050-30262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30263/", + "id": 30263, + "name": "New X-Men: Academy X: Haunted", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-haunted/4050-30263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30264/", + "id": 30264, + "name": "New X-Men: Academy X: X-Posed", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-x-posed/4050-30264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30265/", + "id": 30265, + "name": "New X-Men: Academy X: House Of M", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m/4050-30265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30266/", + "id": 30266, + "name": "New X-Men: Childhood's End", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-childhoods-end/4050-30266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30268/", + "id": 30268, + "name": "New X-Men: Childhood's End: Crusade", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-childhoods-end-crusade/4050-30268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30269/", + "id": 30269, + "name": "New X-Men: Childhood's End: Nimrod", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-childhoods-end-nimrod/4050-30269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30270/", + "id": 30270, + "name": "New X-Men: Childhood's End: Mercury Falling", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-childhoods-end-mercury-falling/4050-30270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30271/", + "id": 30271, + "name": "New X-Men: Childhood's End: The Quest For Magik", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-childhoods-end-the-quest-for-magik/4050-30271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30273/", + "id": 30273, + "name": "X-Treme X-Men: Schism", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-schism/4050-30273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30274/", + "id": 30274, + "name": "X-Treme X-Men: Prisoner Of Fire", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-prisoner-of-fire/4050-30274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30277/", + "id": 30277, + "name": "Guardians of the Galaxy: The Power of Starhawk", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-the-power-of-starhawk/4050-30277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30278/", + "id": 30278, + "name": "Iron Man: Doomquest", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-doomquest/4050-30278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30279/", + "id": 30279, + "name": "Iron Man: War Machine", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-war-machine/4050-30279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30284/", + "id": 30284, + "name": "Incredible Hulk: Prelude to Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-prelude-to-planet-hulk/4050-30284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30285/", + "id": 30285, + "name": "Nightcrawler: The Winding Way", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-the-winding-way/4050-30285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30286/", + "id": 30286, + "name": "Rogue: Forget-Me-Not", + "site_detail_url": "https://comicvine.gamespot.com/rogue-forget-me-not/4050-30286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30287/", + "id": 30287, + "name": "X-Men: Colossus - Bloodline", + "site_detail_url": "https://comicvine.gamespot.com/x-men-colossus-bloodline/4050-30287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30289/", + "id": 30289, + "name": "Cable & Deadpool: If Looks Could Kill", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-if-looks-could-kill/4050-30289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30291/", + "id": 30291, + "name": "Cable & Deadpool: The Burnt Offering", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-the-burnt-offering/4050-30291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30292/", + "id": 30292, + "name": "Dark Avengers: Dark Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-dark-avengers-assemble/4050-30292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30296/", + "id": 30296, + "name": "New Exiles: Soul Awakening", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-soul-awakening/4050-30296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30297/", + "id": 30297, + "name": "Hulk: WWH - X-Men", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-x-men/4050-30297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30299/", + "id": 30299, + "name": "Civil War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men/4050-30299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30300/", + "id": 30300, + "name": "Wolverine & Black Cat: Claws", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-black-cat-claws/4050-30300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30302/", + "id": 30302, + "name": "Spectacular Spider-Man: The Hunger", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-the-hunger/4050-30302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30303/", + "id": 30303, + "name": "Spectacular Spider-Man: Countdown", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-countdown/4050-30303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30304/", + "id": 30304, + "name": "Spectacular Spider-Man: Here There Be Monsters", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-here-there-be-monsters/4050-30304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30305/", + "id": 30305, + "name": "Spectacular Spider-Man: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-disassembled/4050-30305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30306/", + "id": 30306, + "name": "Spectacular Spider-Man: The Final Curtain", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-man-the-final-curtain/4050-30306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30307/", + "id": 30307, + "name": "Peter Parker: Spider-Man: A Day in the Life", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-a-day-in-the-life/4050-30307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30308/", + "id": 30308, + "name": "Peter Parker: Spider-Man: One Small Break", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-one-small-break/4050-30308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30309/", + "id": 30309, + "name": "Peter Parker: Spider-Man: Return of the Goblin", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-return-of-the-goblin/4050-30309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30310/", + "id": 30310, + "name": "Peter Parker: Spider-Man: Trials and Tribulations", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-trials-and-tribulations/4050-30310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30311/", + "id": 30311, + "name": "Peter Parker: Spider-Man: Senseless Violence", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-senseless-violence/4050-30311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30313/", + "id": 30313, + "name": "Nation X", + "site_detail_url": "https://comicvine.gamespot.com/nation-x/4050-30313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30314/", + "id": 30314, + "name": "X Necrosha: The Gathering", + "site_detail_url": "https://comicvine.gamespot.com/x-necrosha-the-gathering/4050-30314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30315/", + "id": 30315, + "name": "Fury/Black Widow: Death Duty", + "site_detail_url": "https://comicvine.gamespot.com/furyblack-widow-death-duty/4050-30315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30316/", + "id": 30316, + "name": "Conan the Barbarian: The Horn of Azoth", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-the-horn-of-azoth/4050-30316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30318/", + "id": 30318, + "name": "Spider-Man & The Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-secret-wars/4050-30318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30332/", + "id": 30332, + "name": "X-Men Noir: Mark of Cain", + "site_detail_url": "https://comicvine.gamespot.com/x-men-noir-mark-of-cain/4050-30332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30334/", + "id": 30334, + "name": "Wolverine: Under the Boardwalk", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-under-the-boardwalk/4050-30334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30340/", + "id": 30340, + "name": "What If? World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/what-if-world-war-hulk/4050-30340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30343/", + "id": 30343, + "name": "Ender's Game: War Of Gifts Special", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-war-of-gifts-special/4050-30343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30344/", + "id": 30344, + "name": "Marvel 70th Anniversary Frame Art", + "site_detail_url": "https://comicvine.gamespot.com/marvel-70th-anniversary-frame-art/4050-30344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30350/", + "id": 30350, + "name": "X-Men: Longshot", + "site_detail_url": "https://comicvine.gamespot.com/x-men-longshot/4050-30350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30359/", + "id": 30359, + "name": "Guardians of the Galaxy: Earth Shall Overcome", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-earth-shall-overcome/4050-30359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30361/", + "id": 30361, + "name": "White Tiger: A Hero's Compulsion", + "site_detail_url": "https://comicvine.gamespot.com/white-tiger-a-heros-compulsion/4050-30361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30364/", + "id": 30364, + "name": "War Machine: Iron Heart", + "site_detail_url": "https://comicvine.gamespot.com/war-machine-iron-heart/4050-30364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30365/", + "id": 30365, + "name": "Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet/4050-30365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30366/", + "id": 30366, + "name": "Infinity War", + "site_detail_url": "https://comicvine.gamespot.com/infinity-war/4050-30366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30367/", + "id": 30367, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m/4050-30367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30368/", + "id": 30368, + "name": "What If General Ross Had Become The Hulk?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-general-ross-had-become-the-hulk/4050-30368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30371/", + "id": 30371, + "name": "Infinity Crusade", + "site_detail_url": "https://comicvine.gamespot.com/infinity-crusade/4050-30371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30372/", + "id": 30372, + "name": "Fantastic Four: The End Roughcut", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end-roughcut/4050-30372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30375/", + "id": 30375, + "name": "Astonishing X-Men Saga", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-saga/4050-30375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30376/", + "id": 30376, + "name": "What If? Special", + "site_detail_url": "https://comicvine.gamespot.com/what-if-special/4050-30376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30380/", + "id": 30380, + "name": "Captain America: Fighting Chance: Denial", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-fighting-chance-denial/4050-30380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30382/", + "id": 30382, + "name": "Captain America: Fighting Chance: Acceptance", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-fighting-chance-acceptance/4050-30382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30383/", + "id": 30383, + "name": "Iron Man: Legacy of Doom", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-legacy-of-doom/4050-30383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30384/", + "id": 30384, + "name": "X-Men: Wolverine/Gambit", + "site_detail_url": "https://comicvine.gamespot.com/x-men-wolverinegambit/4050-30384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30385/", + "id": 30385, + "name": "X-Men Forever: Picking Up Where We Left Off", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-picking-up-where-we-left-off/4050-30385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30386/", + "id": 30386, + "name": "X-Men: Dream's End", + "site_detail_url": "https://comicvine.gamespot.com/x-men-dreams-end/4050-30386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30388/", + "id": 30388, + "name": "X-23: Target X", + "site_detail_url": "https://comicvine.gamespot.com/x-23-target-x/4050-30388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30391/", + "id": 30391, + "name": "Iron Man / Captain America '98", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-captain-america-98/4050-30391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30393/", + "id": 30393, + "name": "Magneto: Rogue Nation", + "site_detail_url": "https://comicvine.gamespot.com/magneto-rogue-nation/4050-30393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30394/", + "id": 30394, + "name": "Astonishing X-Men: Deathwish", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-deathwish/4050-30394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30395/", + "id": 30395, + "name": "X-Men: Zero Tolerance", + "site_detail_url": "https://comicvine.gamespot.com/x-men-zero-tolerance/4050-30395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30404/", + "id": 30404, + "name": "Captain America: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-disassembled/4050-30404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30405/", + "id": 30405, + "name": "Avengers Disassembled: Thor", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled-thor/4050-30405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30406/", + "id": 30406, + "name": "Avengers Disassembled: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled-iron-man/4050-30406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30407/", + "id": 30407, + "name": "X-Men Poster Magazines", + "site_detail_url": "https://comicvine.gamespot.com/x-men-poster-magazines/4050-30407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30408/", + "id": 30408, + "name": "Avengers: Above and Beyond", + "site_detail_url": "https://comicvine.gamespot.com/avengers-above-and-beyond/4050-30408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30409/", + "id": 30409, + "name": "Wolverine: Knight of Terra", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-knight-of-terra/4050-30409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30418/", + "id": 30418, + "name": "GeNext", + "site_detail_url": "https://comicvine.gamespot.com/genext/4050-30418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30419/", + "id": 30419, + "name": "Fantastic Four: The Legend", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-legend/4050-30419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30421/", + "id": 30421, + "name": "Fantastic Four: The Fantastic 4th Voyage of Sinbad", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-fantastic-4th-voyage-of-sinbad/4050-30421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30423/", + "id": 30423, + "name": "Fantastic Four: The World's Greatest Comics Magazine", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4050-30423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30424/", + "id": 30424, + "name": "Moon Knight: High Strangers", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-high-strangers/4050-30424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30427/", + "id": 30427, + "name": "Avengers: Kang: Time and Time Again", + "site_detail_url": "https://comicvine.gamespot.com/avengers-kang-time-and-time-again/4050-30427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30439/", + "id": 30439, + "name": "Squadron Supreme: Hyperion vs. Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-hyperion-vs-nighthawk/4050-30439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30441/", + "id": 30441, + "name": "Franklin Richards: Super Summer Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-super-summer-spectacular/4050-30441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30442/", + "id": 30442, + "name": "Fantastic Four Presents: Franklin Richards: Son Of A Genius", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-presents-franklin-richards-son-of-a/4050-30442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30443/", + "id": 30443, + "name": "Franklin Richards: Collected Chaos", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-collected-chaos/4050-30443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30444/", + "id": 30444, + "name": "Franklin Richards: Fall Football Fiasco!", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-fall-football-fiasco/4050-30444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30445/", + "id": 30445, + "name": "Franklin Richards: Happy Franksgiving!", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-happy-franksgiving/4050-30445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30446/", + "id": 30446, + "name": "Franklin Richards: Lab Brat", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-lab-brat/4050-30446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30451/", + "id": 30451, + "name": "Franklin Richards One Shot", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-one-shot/4050-30451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30452/", + "id": 30452, + "name": "Franklin Richards: Spring Break", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-spring-break/4050-30452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30467/", + "id": 30467, + "name": "House of M Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-sketchbook/4050-30467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30468/", + "id": 30468, + "name": "Uncanny X-Men / Fantastic Four '98", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-fantastic-four-98/4050-30468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30505/", + "id": 30505, + "name": "Fantastic Four Visionaries: John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne/4050-30505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30525/", + "id": 30525, + "name": "What If? Daredevil vs. Elektra", + "site_detail_url": "https://comicvine.gamespot.com/what-if-daredevil-vs-elektra/4050-30525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30553/", + "id": 30553, + "name": "New Mutants: The Demon Bear Saga", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-the-demon-bear-saga/4050-30553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30591/", + "id": 30591, + "name": "X-Men 2: Nightcrawler - Official Movie Prequel", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2-nightcrawler-official-movie-prequel/4050-30591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30602/", + "id": 30602, + "name": "Captain America/Nick Fury: Blood Truce", + "site_detail_url": "https://comicvine.gamespot.com/captain-americanick-fury-blood-truce/4050-30602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30612/", + "id": 30612, + "name": "Hulk: Heart of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/hulk-heart-of-the-atom/4050-30612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30613/", + "id": 30613, + "name": "Annihilation: Conquest, Book One", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-book-one/4050-30613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30615/", + "id": 30615, + "name": "Annihilation: Conquest, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-book-two/4050-30615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30631/", + "id": 30631, + "name": "Captain Britain And MI:13 Vampire State", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-mi13-vampire-state/4050-30631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30632/", + "id": 30632, + "name": "Avengers / Squadron Supreme '98", + "site_detail_url": "https://comicvine.gamespot.com/avengers-squadron-supreme-98/4050-30632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30640/", + "id": 30640, + "name": "Hulk: Broken Worlds", + "site_detail_url": "https://comicvine.gamespot.com/hulk-broken-worlds/4050-30640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30643/", + "id": 30643, + "name": "Captain America: The Bloodstone Hunt", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-bloodstone-hunt/4050-30643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30658/", + "id": 30658, + "name": "Secret Invasion: Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-inhumans/4050-30658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30662/", + "id": 30662, + "name": "Marvel Illustrated: Treasure Island", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-treasure-island/4050-30662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30674/", + "id": 30674, + "name": "Giant-Size Marvel", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-marvel/4050-30674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30677/", + "id": 30677, + "name": "Captain America: Operation Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-operation-rebirth/4050-30677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30678/", + "id": 30678, + "name": "Captain America Reborn: Who Will Wield The Shield?", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn-who-will-wield-the-shield/4050-30678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30679/", + "id": 30679, + "name": "X-Men: The Asgardian Wars", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-asgardian-wars/4050-30679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30681/", + "id": 30681, + "name": "Fall of the Hulks: Gamma", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-gamma/4050-30681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30683/", + "id": 30683, + "name": "What If Karen Page Had Lived?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-karen-page-had-lived/4050-30683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30684/", + "id": 30684, + "name": "Marvel Illustrated: The Man In The Iron Mask", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-man-in-the-iron-mask/4050-30684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30685/", + "id": 30685, + "name": "Marvel Illustrated: Last Of The Mohicans", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-last-of-the-mohicans/4050-30685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30691/", + "id": 30691, + "name": "What If? Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/what-if-astonishing-x-men/4050-30691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30692/", + "id": 30692, + "name": "What If? Spider-Man House of M", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man-house-of-m/4050-30692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30701/", + "id": 30701, + "name": "Iron Man: Demon in a Bottle", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-demon-in-a-bottle/4050-30701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30702/", + "id": 30702, + "name": "Brian Michael Bendis: Ten Years At Marvel", + "site_detail_url": "https://comicvine.gamespot.com/brian-michael-bendis-ten-years-at-marvel/4050-30702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30703/", + "id": 30703, + "name": "Marvel Graphic Novel: The Punisher, Assassins' Guild", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-the-punisher-assassins-guild/4050-30703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30705/", + "id": 30705, + "name": "Dark Reign: The Hood", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-hood/4050-30705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30707/", + "id": 30707, + "name": "Ms. Marvel: War of the Marvels", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-war-of-the-marvels/4050-30707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30710/", + "id": 30710, + "name": "Punisher: The Prize", + "site_detail_url": "https://comicvine.gamespot.com/punisher-the-prize/4050-30710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30711/", + "id": 30711, + "name": "Punisher: No Escape", + "site_detail_url": "https://comicvine.gamespot.com/punisher-no-escape/4050-30711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30713/", + "id": 30713, + "name": "The Punisher Movie Special", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-movie-special/4050-30713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30714/", + "id": 30714, + "name": "Punisher: Kingdom Gone", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kingdom-gone/4050-30714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30715/", + "id": 30715, + "name": "Punisher: G-Force", + "site_detail_url": "https://comicvine.gamespot.com/punisher-g-force/4050-30715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30716/", + "id": 30716, + "name": "Punisher: Die Hard in the Big Easy", + "site_detail_url": "https://comicvine.gamespot.com/punisher-die-hard-in-the-big-easy/4050-30716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30718/", + "id": 30718, + "name": "Punisher: A Man Named Frank", + "site_detail_url": "https://comicvine.gamespot.com/punisher-a-man-named-frank/4050-30718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30719/", + "id": 30719, + "name": "Ghost Rider, Wolverine, Punisher: The Dark Design", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-wolverine-punisher-the-dark-design/4050-30719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30721/", + "id": 30721, + "name": "Secret Wars II Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii-omnibus/4050-30721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30724/", + "id": 30724, + "name": "MegaMorphs", + "site_detail_url": "https://comicvine.gamespot.com/megamorphs/4050-30724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30725/", + "id": 30725, + "name": "Incredible Hercules: Love And War", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-love-and-war/4050-30725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30726/", + "id": 30726, + "name": "Secret War", + "site_detail_url": "https://comicvine.gamespot.com/secret-war/4050-30726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30727/", + "id": 30727, + "name": "Runaways: Rock Zombies", + "site_detail_url": "https://comicvine.gamespot.com/runaways-rock-zombies/4050-30727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30728/", + "id": 30728, + "name": "X-Men: Endangered Species", + "site_detail_url": "https://comicvine.gamespot.com/x-men-endangered-species/4050-30728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30729/", + "id": 30729, + "name": "The Mighty Avengers: Earth's Mightiest", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-earths-mightiest/4050-30729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30730/", + "id": 30730, + "name": "Marvel Team-Up: Freedom Ring", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-freedom-ring/4050-30730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30731/", + "id": 30731, + "name": "Fantastic Four: Lost Adventures", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-lost-adventures/4050-30731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30732/", + "id": 30732, + "name": "Wolverine: World of M featuring Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-world-of-m-featuring-wolverine/4050-30732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30733/", + "id": 30733, + "name": "Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-omnibus/4050-30733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30734/", + "id": 30734, + "name": "Marvel Adventures Spider-Man: Thwip!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-thwip/4050-30734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30735/", + "id": 30735, + "name": "Fantastic Four: The Master of Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-master-of-doom/4050-30735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30737/", + "id": 30737, + "name": "X-Men: Ronin", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ronin/4050-30737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30738/", + "id": 30738, + "name": "Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/frankenstein/4050-30738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30746/", + "id": 30746, + "name": "X-Men: The End: Book 1: Dreamers & Demons", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons/4050-30746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30747/", + "id": 30747, + "name": "X-Men: The End: Book 2: Heroes & Martyrs", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-book-2-heroes-martyrs/4050-30747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30748/", + "id": 30748, + "name": "X-Men: The End: Book 3: Men & X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men/4050-30748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30749/", + "id": 30749, + "name": "X-Men: The End Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-end-trilogy/4050-30749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30752/", + "id": 30752, + "name": "Thor: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/thor-rebirth/4050-30752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30767/", + "id": 30767, + "name": "Dark Reign: Deadpool/Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-deadpoolthunderbolts/4050-30767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30768/", + "id": 30768, + "name": "Deadpool: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-dark-reign/4050-30768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30769/", + "id": 30769, + "name": "Dark Reign: The Sinister Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-sinister-spider-man/4050-30769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30770/", + "id": 30770, + "name": "Wolverine Weapon X: The Adamantium Men", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-the-adamantium-men/4050-30770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30772/", + "id": 30772, + "name": "Thunderbolts: Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-widowmaker/4050-30772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30779/", + "id": 30779, + "name": "Ghost Rider and the Midnight Sons Magazine", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-and-the-midnight-sons-magazine/4050-30779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30781/", + "id": 30781, + "name": "Avengers West Coast: Darker Than Scarlet", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-darker-than-scarlet/4050-30781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30789/", + "id": 30789, + "name": "Indiana Jones and the Last Crusade", + "site_detail_url": "https://comicvine.gamespot.com/indiana-jones-and-the-last-crusade/4050-30789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30807/", + "id": 30807, + "name": "Marvel Masterworks: The Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men/4050-30807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30808/", + "id": 30808, + "name": "Doctor Voodoo: The Origin of Jericho Drumm", + "site_detail_url": "https://comicvine.gamespot.com/doctor-voodoo-the-origin-of-jericho-drumm/4050-30808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30813/", + "id": 30813, + "name": "X-Force: Not Forgotten", + "site_detail_url": "https://comicvine.gamespot.com/x-force-not-forgotten/4050-30813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30819/", + "id": 30819, + "name": "Black Panther: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-civil-war/4050-30819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30821/", + "id": 30821, + "name": "New Excalibur: Battle For Eternity", + "site_detail_url": "https://comicvine.gamespot.com/new-excalibur-battle-for-eternity/4050-30821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30822/", + "id": 30822, + "name": "Agents of Atlas: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-dark-reign/4050-30822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30823/", + "id": 30823, + "name": "Origins of Siege", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-siege/4050-30823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30842/", + "id": 30842, + "name": "Spider-Man: Maximum Clonage Alpha", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-clonage-alpha/4050-30842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30846/", + "id": 30846, + "name": "Iron Man: Extremis", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-extremis/4050-30846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30847/", + "id": 30847, + "name": "Avengers Disassembled: Iron Man, Thor, and Captain America", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled-iron-man-thor-and-captain-am/4050-30847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30848/", + "id": 30848, + "name": "Captain Marvel: Nothing to Lose", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-nothing-to-lose/4050-30848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30849/", + "id": 30849, + "name": "Captain Marvel: Coven", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-coven/4050-30849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30850/", + "id": 30850, + "name": "Captain Marvel: Crazy Like A Fox", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-crazy-like-a-fox/4050-30850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30851/", + "id": 30851, + "name": "Captain Marvel: Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-odyssey/4050-30851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30861/", + "id": 30861, + "name": "Daredevil Omnibus by Brian Michael Bendis and Alex Maleev", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus-by-brian-michael-bendis-and-alex/4050-30861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30881/", + "id": 30881, + "name": "Dark Reign: Elektra", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-elektra/4050-30881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30882/", + "id": 30882, + "name": "Wolverine Magazine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-magazine/4050-30882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30903/", + "id": 30903, + "name": "Marvel Zombies vs. Army Of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness/4050-30903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30904/", + "id": 30904, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4050-30904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30906/", + "id": 30906, + "name": "Siege: Embedded", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded/4050-30906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30911/", + "id": 30911, + "name": "Wolverine And Power Pack: The Wild Pack", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-power-pack-the-wild-pack/4050-30911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30918/", + "id": 30918, + "name": "Nation X: X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/nation-x-x-factor/4050-30918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30919/", + "id": 30919, + "name": "Amazing Spider-Man Presents: Jackpot", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot/4050-30919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30922/", + "id": 30922, + "name": "Hulk: Gray", + "site_detail_url": "https://comicvine.gamespot.com/hulk-gray/4050-30922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30926/", + "id": 30926, + "name": "Oz: The Wonderful Wizard Of Oz", + "site_detail_url": "https://comicvine.gamespot.com/oz-the-wonderful-wizard-of-oz/4050-30926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30927/", + "id": 30927, + "name": "Marvel Masterworks: Atlas Era Black Knight/Yellow Claw", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-black-knightyellow-cl/4050-30927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30930/", + "id": 30930, + "name": "Ghost Rider: Danny Ketch Classic", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-danny-ketch-classic/4050-30930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30931/", + "id": 30931, + "name": "X-Factor: Time and a Half", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-time-and-a-half/4050-30931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30932/", + "id": 30932, + "name": "American Dream: Beyond Courage", + "site_detail_url": "https://comicvine.gamespot.com/american-dream-beyond-courage/4050-30932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30933/", + "id": 30933, + "name": "Annihilation Classic", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-classic/4050-30933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30940/", + "id": 30940, + "name": "Marvel Boy: The Uranian", + "site_detail_url": "https://comicvine.gamespot.com/marvel-boy-the-uranian/4050-30940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30947/", + "id": 30947, + "name": "Wolverine: Tales of Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-tales-of-weapon-x/4050-30947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30959/", + "id": 30959, + "name": "Marvel Divas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-divas/4050-30959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30960/", + "id": 30960, + "name": "Siege Prelude", + "site_detail_url": "https://comicvine.gamespot.com/siege-prelude/4050-30960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30963/", + "id": 30963, + "name": "New Avengers The Reunion", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-the-reunion/4050-30963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30964/", + "id": 30964, + "name": "Spider-Man 24/7", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-247/4050-30964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30966/", + "id": 30966, + "name": "X-Men vs. Avengers", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-avengers/4050-30966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30967/", + "id": 30967, + "name": "X-Men vs. Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-fantastic-four/4050-30967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30972/", + "id": 30972, + "name": "X-Men: Mutant Massacre", + "site_detail_url": "https://comicvine.gamespot.com/x-men-mutant-massacre/4050-30972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30977/", + "id": 30977, + "name": "List", + "site_detail_url": "https://comicvine.gamespot.com/list/4050-30977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30989/", + "id": 30989, + "name": "Invincible Iron Man: World's Most Wanted, Part One", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-worlds-most-wanted-part-one/4050-30989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30990/", + "id": 30990, + "name": "Invincible Iron Man: World's Most Wanted, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-worlds-most-wanted-part-two/4050-30990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30994/", + "id": 30994, + "name": "X-Men vs. Dracula", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-dracula/4050-30994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30995/", + "id": 30995, + "name": "Sentinel Squad O*N*E: Tin-Can Heroes", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-squad-one-tin-can-heroes/4050-30995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31002/", + "id": 31002, + "name": "Halo: Blood Line", + "site_detail_url": "https://comicvine.gamespot.com/halo-blood-line/4050-31002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31004/", + "id": 31004, + "name": "Ultimatum: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-spider-man/4050-31004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31010/", + "id": 31010, + "name": "Incredible Hulk: Hulk vs the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-hulk-vs-the-marvel-universe/4050-31010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31023/", + "id": 31023, + "name": "Spider-Man: National Committee for Prevention of Child Abuse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-national-committee-for-prevention-of-ch/4050-31023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31024/", + "id": 31024, + "name": "Runaways: The Good Die Young", + "site_detail_url": "https://comicvine.gamespot.com/runaways-the-good-die-young/4050-31024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31026/", + "id": 31026, + "name": "Sergio Aragones Massacres Marvel", + "site_detail_url": "https://comicvine.gamespot.com/sergio-aragones-massacres-marvel/4050-31026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31031/", + "id": 31031, + "name": "The Amazing Spider-Man: Skating on Thin Ice", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-skating-on-thin-ice/4050-31031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31034/", + "id": 31034, + "name": "Spider-Man Magazine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-magazine/4050-31034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31049/", + "id": 31049, + "name": "The Life and Death of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-life-and-death-of-captain-marvel/4050-31049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31052/", + "id": 31052, + "name": "X-Men Origins: Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-cyclops/4050-31052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31060/", + "id": 31060, + "name": "Adam: Legend of the Blue Marvel", + "site_detail_url": "https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel/4050-31060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31061/", + "id": 31061, + "name": "X-Men: Mutant Massacre", + "site_detail_url": "https://comicvine.gamespot.com/x-men-mutant-massacre/4050-31061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31062/", + "id": 31062, + "name": "Captain America and the Falcon: Two Americas", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-two-americas/4050-31062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31064/", + "id": 31064, + "name": "Marvel Super Hero Squad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad/4050-31064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31065/", + "id": 31065, + "name": "Captain America and the Falcon: Brothers and Keepers", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-brothers-and-keeper/4050-31065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31082/", + "id": 31082, + "name": "Ed Hannigan: Covered", + "site_detail_url": "https://comicvine.gamespot.com/ed-hannigan-covered/4050-31082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31085/", + "id": 31085, + "name": "Death of Captain America: The Death of the Dream", + "site_detail_url": "https://comicvine.gamespot.com/death-of-captain-america-the-death-of-the-dream/4050-31085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31086/", + "id": 31086, + "name": "Death of Captain America: The Burden of Dreams", + "site_detail_url": "https://comicvine.gamespot.com/death-of-captain-america-the-burden-of-dreams/4050-31086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31087/", + "id": 31087, + "name": "Death of Captain America: The Man Who Bought America", + "site_detail_url": "https://comicvine.gamespot.com/death-of-captain-america-the-man-who-bought-americ/4050-31087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31089/", + "id": 31089, + "name": "X-Men/Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-menspider-man/4050-31089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31096/", + "id": 31096, + "name": "X-Men: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-movie/4050-31096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31097/", + "id": 31097, + "name": "X-Men 2: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2-the-movie/4050-31097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31098/", + "id": 31098, + "name": "Greatest Battles of the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/greatest-battles-of-the-avengers/4050-31098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31099/", + "id": 31099, + "name": "Hawkeye: Earth's Mightiest Marksman", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-earths-mightiest-marksman/4050-31099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31128/", + "id": 31128, + "name": "Avengers vs. Atlas", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-atlas/4050-31128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31132/", + "id": 31132, + "name": "Incredible Hulk: Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-planet-hulk/4050-31132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31144/", + "id": 31144, + "name": "The Road to Civil War", + "site_detail_url": "https://comicvine.gamespot.com/the-road-to-civil-war/4050-31144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31157/", + "id": 31157, + "name": "New Exiles: New Life, New Gambit", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-new-life-new-gambit/4050-31157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31158/", + "id": 31158, + "name": "New Exiles: The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-the-enemy-within/4050-31158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31159/", + "id": 31159, + "name": "New Exiles: Away We Go", + "site_detail_url": "https://comicvine.gamespot.com/new-exiles-away-we-go/4050-31159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31175/", + "id": 31175, + "name": "Avengers: First to Last", + "site_detail_url": "https://comicvine.gamespot.com/avengers-first-to-last/4050-31175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31176/", + "id": 31176, + "name": "What If: Thor", + "site_detail_url": "https://comicvine.gamespot.com/what-if-thor/4050-31176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31184/", + "id": 31184, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-31184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31195/", + "id": 31195, + "name": "Kissnation", + "site_detail_url": "https://comicvine.gamespot.com/kissnation/4050-31195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31199/", + "id": 31199, + "name": "Special Collectors Edition", + "site_detail_url": "https://comicvine.gamespot.com/special-collectors-edition/4050-31199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31225/", + "id": 31225, + "name": "Disney's The Hunchback of Notre Dame", + "site_detail_url": "https://comicvine.gamespot.com/disneys-the-hunchback-of-notre-dame/4050-31225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31249/", + "id": 31249, + "name": "Spider-Man: Swing Shift Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-swing-shift-directors-cut/4050-31249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31254/", + "id": 31254, + "name": "Fall of the Hulks: Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-red-hulk/4050-31254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31271/", + "id": 31271, + "name": "Dark Reign: Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers/4050-31271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31274/", + "id": 31274, + "name": "Dark Reign: Skrull Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-skrull-kill-krew/4050-31274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31275/", + "id": 31275, + "name": "Siege: Storming Asgard –– Heroes & Villains", + "site_detail_url": "https://comicvine.gamespot.com/siege-storming-asgard-heroes-villains/4050-31275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31293/", + "id": 31293, + "name": "Iron Man: I Am Iron Man!", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-i-am-iron-man/4050-31293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31297/", + "id": 31297, + "name": "Wolverine: Wendigo!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wendigo/4050-31297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31298/", + "id": 31298, + "name": "Ultimate Enemy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-enemy/4050-31298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31315/", + "id": 31315, + "name": "Ultimatum: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-requiem/4050-31315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31317/", + "id": 31317, + "name": "Stoker's Dracula", + "site_detail_url": "https://comicvine.gamespot.com/stokers-dracula/4050-31317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31326/", + "id": 31326, + "name": "Marvel Adventures", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures/4050-31326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31348/", + "id": 31348, + "name": "Cable & Deadpool: Bosom Buddies", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-bosom-buddies/4050-31348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31354/", + "id": 31354, + "name": "Essential Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/essential-man-thing/4050-31354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31364/", + "id": 31364, + "name": "Timely 70th Anniversary Collection", + "site_detail_url": "https://comicvine.gamespot.com/timely-70th-anniversary-collection/4050-31364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31365/", + "id": 31365, + "name": "Wolverine: Savage", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-savage/4050-31365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31366/", + "id": 31366, + "name": "Realm of Kings Son of Hulk", + "site_detail_url": "https://comicvine.gamespot.com/realm-of-kings-son-of-hulk/4050-31366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31370/", + "id": 31370, + "name": "Avengers Legends: Avengers Forever", + "site_detail_url": "https://comicvine.gamespot.com/avengers-legends-avengers-forever/4050-31370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31374/", + "id": 31374, + "name": "Marvel Heartbreakers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-heartbreakers/4050-31374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31375/", + "id": 31375, + "name": "Ultimate X", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x/4050-31375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31387/", + "id": 31387, + "name": "Secret Invasion: War Machine", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-war-machine/4050-31387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31388/", + "id": 31388, + "name": "X-Men: Asgardian Wars", + "site_detail_url": "https://comicvine.gamespot.com/x-men-asgardian-wars/4050-31388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31408/", + "id": 31408, + "name": "Spider-Man/Dr. Strange: \"The Way to Dusty Death\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandr-strange-the-way-to-dusty-death/4050-31408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31409/", + "id": 31409, + "name": "Untold Tales of Spider-Man: Strange Encounters", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-strange-encounters/4050-31409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31410/", + "id": 31410, + "name": "The Indomitable Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/the-indomitable-iron-man/4050-31410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31431/", + "id": 31431, + "name": "Spider-Man: Death and Destiny", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-and-destiny/4050-31431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31432/", + "id": 31432, + "name": "Year in Review: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/year-in-review-spider-man/4050-31432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31438/", + "id": 31438, + "name": "House Of M: Masters Of Evil", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-masters-of-evil/4050-31438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31444/", + "id": 31444, + "name": "Spider-Man: The Jackal Files", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-jackal-files/4050-31444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31446/", + "id": 31446, + "name": "Spider-Man 2: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2-the-movie/4050-31446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31448/", + "id": 31448, + "name": "Spider-Man Collectors' Preview", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectors-preview/4050-31448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31474/", + "id": 31474, + "name": "Dark Tower: Fall of Gilead", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-fall-of-gilead/4050-31474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31475/", + "id": 31475, + "name": "Deadpool: X Marks The Spot", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-x-marks-the-spot/4050-31475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31476/", + "id": 31476, + "name": "Iron Man & The Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-armor-wars/4050-31476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31477/", + "id": 31477, + "name": "X-Men: Pixie Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/x-men-pixie-strikes-back/4050-31477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31478/", + "id": 31478, + "name": "Iron Man: Tales of the Golden Avenger", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-tales-of-the-golden-avenger/4050-31478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31479/", + "id": 31479, + "name": "Star Comics: All-Star Collection", + "site_detail_url": "https://comicvine.gamespot.com/star-comics-all-star-collection/4050-31479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31519/", + "id": 31519, + "name": "Hit-Monkey (MDCU)", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey-mdcu/4050-31519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31524/", + "id": 31524, + "name": "Tails of the Pet Avengers", + "site_detail_url": "https://comicvine.gamespot.com/tails-of-the-pet-avengers/4050-31524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31545/", + "id": 31545, + "name": "Excalibur: Air Apparent", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-air-apparent/4050-31545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31564/", + "id": 31564, + "name": "Mutant X: Origin", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-origin/4050-31564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31565/", + "id": 31565, + "name": "Mutant X: Dangerous Decisions", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-dangerous-decisions/4050-31565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31568/", + "id": 31568, + "name": "Venom: Deathtrap: The Vault", + "site_detail_url": "https://comicvine.gamespot.com/venom-deathtrap-the-vault/4050-31568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31569/", + "id": 31569, + "name": "Spider-Man Unmasked", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-unmasked/4050-31569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31585/", + "id": 31585, + "name": "Fantastic Firsts", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-firsts/4050-31585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31586/", + "id": 31586, + "name": "Fantastic Four: Into The Breach", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-into-the-breach/4050-31586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31593/", + "id": 31593, + "name": "Startling Stories: The Thing - Night falls on Yancy Street", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-the-thing-night-falls-on-yancy-s/4050-31593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31608/", + "id": 31608, + "name": "Doomwar", + "site_detail_url": "https://comicvine.gamespot.com/doomwar/4050-31608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31611/", + "id": 31611, + "name": "X-Men: Legacy: Emplate", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-emplate/4050-31611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31612/", + "id": 31612, + "name": "Captain America: Theater Of War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war/4050-31612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31616/", + "id": 31616, + "name": "Wolverine Legends", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-legends/4050-31616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31617/", + "id": 31617, + "name": "Hulk Legends: Hulk/Wolverine: 6 Hours", + "site_detail_url": "https://comicvine.gamespot.com/hulk-legends-hulkwolverine-6-hours/4050-31617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31624/", + "id": 31624, + "name": "Special Edition X-Men", + "site_detail_url": "https://comicvine.gamespot.com/special-edition-x-men/4050-31624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31625/", + "id": 31625, + "name": "The Best of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-marvel-comics/4050-31625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31627/", + "id": 31627, + "name": "Blade: Vampire Hunter", + "site_detail_url": "https://comicvine.gamespot.com/blade-vampire-hunter/4050-31627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31631/", + "id": 31631, + "name": "Amazing Adventures", + "site_detail_url": "https://comicvine.gamespot.com/amazing-adventures/4050-31631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31667/", + "id": 31667, + "name": "Second Coming: Prepare", + "site_detail_url": "https://comicvine.gamespot.com/second-coming-prepare/4050-31667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31672/", + "id": 31672, + "name": "House Of M: Wolverine, Iron Man & Hulk", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-wolverine-iron-man-hulk/4050-31672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31673/", + "id": 31673, + "name": "Daredevil/Black Widow: Abattoir", + "site_detail_url": "https://comicvine.gamespot.com/daredevilblack-widow-abattoir/4050-31673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31674/", + "id": 31674, + "name": "Wolverine: Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan/4050-31674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31675/", + "id": 31675, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-31675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31686/", + "id": 31686, + "name": "Ender's Game: Mazer In Prison Special", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-mazer-in-prison-special/4050-31686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31692/", + "id": 31692, + "name": "Nova: Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/nova-annihilation/4050-31692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31693/", + "id": 31693, + "name": "Halo: Helljumper", + "site_detail_url": "https://comicvine.gamespot.com/halo-helljumper/4050-31693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31696/", + "id": 31696, + "name": "Decimation: X-Men - The 198", + "site_detail_url": "https://comicvine.gamespot.com/decimation-x-men-the-198/4050-31696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31698/", + "id": 31698, + "name": "Spider-Man: Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-ties/4050-31698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31699/", + "id": 31699, + "name": "Spider-Man: Crime and Punisher", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-crime-and-punisher/4050-31699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31700/", + "id": 31700, + "name": "Spider-Man: Death and Dating", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-and-dating/4050-31700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31702/", + "id": 31702, + "name": "Spider-Man: Kraven's First Hunt", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-first-hunt/4050-31702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31703/", + "id": 31703, + "name": "Spider-Man: New Ways to Die", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-new-ways-to-die/4050-31703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31704/", + "id": 31704, + "name": "Spider-Girl Presents Wild Thing: Crash Course", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-presents-wild-thing-crash-course/4050-31704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31705/", + "id": 31705, + "name": "Spider-Girl Presents Avengers Next: Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-presents-avengers-next-second-coming/4050-31705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31706/", + "id": 31706, + "name": "Spider-Man: Brand New Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day/4050-31706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31714/", + "id": 31714, + "name": "Excalibur Visionaries: Alan Davis", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-visionaries-alan-davis/4050-31714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31726/", + "id": 31726, + "name": "X-Men: Hope", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hope/4050-31726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31727/", + "id": 31727, + "name": "Ultimate New Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-new-ultimates/4050-31727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31734/", + "id": 31734, + "name": "Fall of the Hulks: The Savage She-Hulks", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-the-savage-she-hulks/4050-31734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31737/", + "id": 31737, + "name": "Stephen King's N.", + "site_detail_url": "https://comicvine.gamespot.com/stephen-kings-n/4050-31737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31738/", + "id": 31738, + "name": "Prelude to Deadpool Corps", + "site_detail_url": "https://comicvine.gamespot.com/prelude-to-deadpool-corps/4050-31738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31741/", + "id": 31741, + "name": "Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas/4050-31741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31747/", + "id": 31747, + "name": "Invincible Iron Man MGC", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-mgc/4050-31747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31753/", + "id": 31753, + "name": "Girl Comics", + "site_detail_url": "https://comicvine.gamespot.com/girl-comics/4050-31753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31754/", + "id": 31754, + "name": "Spider-Man: Election Day", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-election-day/4050-31754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31755/", + "id": 31755, + "name": "Thing: Project Pegasus", + "site_detail_url": "https://comicvine.gamespot.com/thing-project-pegasus/4050-31755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31797/", + "id": 31797, + "name": "Fantastic Four: In Search Of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-in-search-of-galactus/4050-31797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31798/", + "id": 31798, + "name": "Secret Warriors: Nick Fury, Agent of Nothing", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-nick-fury-agent-of-nothing/4050-31798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31799/", + "id": 31799, + "name": "Secret Invasion: Runaways/Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers/4050-31799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31800/", + "id": 31800, + "name": "X-Men: Fatal Attractions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-fatal-attractions/4050-31800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31801/", + "id": 31801, + "name": "Daredevil: Lone Stranger", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-lone-stranger/4050-31801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31802/", + "id": 31802, + "name": "Young Avengers Presents", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents/4050-31802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31803/", + "id": 31803, + "name": "Captain America: Road to Reborn", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-road-to-reborn/4050-31803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31806/", + "id": 31806, + "name": "Spider-Man: American Son", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-american-son/4050-31806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31807/", + "id": 31807, + "name": "Ultimate Origins", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-origins/4050-31807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31817/", + "id": 31817, + "name": "Devil Dinosaur Spring Fling", + "site_detail_url": "https://comicvine.gamespot.com/devil-dinosaur-spring-fling/4050-31817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31818/", + "id": 31818, + "name": "Marvel: Your Universe", + "site_detail_url": "https://comicvine.gamespot.com/marvel-your-universe/4050-31818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31819/", + "id": 31819, + "name": "Marvel Spotlight: New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-new-mutants/4050-31819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31821/", + "id": 31821, + "name": "Spider-Man: Halloween Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-halloween-special-edition/4050-31821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31823/", + "id": 31823, + "name": "Spidey & The Mini-Marvels: Halloween 2003 Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/spidey-the-mini-marvels-halloween-2003-ashcan/4050-31823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31857/", + "id": 31857, + "name": "Official Handbook of the Marvel Universe A to Z Update", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-up/4050-31857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31860/", + "id": 31860, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/longshot/4050-31860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31861/", + "id": 31861, + "name": "House of M: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-avengers/4050-31861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31862/", + "id": 31862, + "name": "Civil War: House of M", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-house-of-m/4050-31862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31864/", + "id": 31864, + "name": "Deadpool Vs. The Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-the-marvel-universe/4050-31864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31878/", + "id": 31878, + "name": "Hulk: Hulk No More", + "site_detail_url": "https://comicvine.gamespot.com/hulk-hulk-no-more/4050-31878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31882/", + "id": 31882, + "name": "The Mystic Hands of Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/the-mystic-hands-of-doctor-strange/4050-31882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31889/", + "id": 31889, + "name": "Marvel 1602", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602/4050-31889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31890/", + "id": 31890, + "name": "Captain America: The Chosen", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-chosen/4050-31890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31897/", + "id": 31897, + "name": "Hulk: Let The Battle Begin", + "site_detail_url": "https://comicvine.gamespot.com/hulk-let-the-battle-begin/4050-31897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31899/", + "id": 31899, + "name": "Breaking Into Comics The Marvel Way!", + "site_detail_url": "https://comicvine.gamespot.com/breaking-into-comics-the-marvel-way/4050-31899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31900/", + "id": 31900, + "name": "Avengers: Galactic Storm", + "site_detail_url": "https://comicvine.gamespot.com/avengers-galactic-storm/4050-31900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31901/", + "id": 31901, + "name": "Lockjaw and the Pet Avengers Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-unleashed/4050-31901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31902/", + "id": 31902, + "name": "Mephisto vs....", + "site_detail_url": "https://comicvine.gamespot.com/mephisto-vs/4050-31902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31903/", + "id": 31903, + "name": "Spider-Man: House of M", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-house-of-m/4050-31903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31904/", + "id": 31904, + "name": "JLA / Avengers", + "site_detail_url": "https://comicvine.gamespot.com/jla-avengers/4050-31904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31906/", + "id": 31906, + "name": "The Twelve: Spearhead", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve-spearhead/4050-31906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31907/", + "id": 31907, + "name": "Wolverine: Mr X", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-mr-x/4050-31907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31909/", + "id": 31909, + "name": "DC vs. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/dc-vs-marvel/4050-31909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31919/", + "id": 31919, + "name": "Deadpool and Cable Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection/4050-31919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31920/", + "id": 31920, + "name": "Ultimatum: X-Men/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-x-menfantastic-four/4050-31920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31921/", + "id": 31921, + "name": "Cable and Deadpool: The Human Race", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-the-human-race/4050-31921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31923/", + "id": 31923, + "name": "Cable and Deadpool: Living Legends", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-living-legends/4050-31923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31927/", + "id": 31927, + "name": "Avengers: The Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-korvac-saga/4050-31927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31929/", + "id": 31929, + "name": "Wizard X-Men Pre-Press Edition", + "site_detail_url": "https://comicvine.gamespot.com/wizard-x-men-pre-press-edition/4050-31929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31979/", + "id": 31979, + "name": "Marvel Team-Up: The Golden Child", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-the-golden-child/4050-31979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31980/", + "id": 31980, + "name": "Black Panther: The Deadliest of the Species", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-deadliest-of-the-species/4050-31980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31997/", + "id": 31997, + "name": "Nextwave: Agents of H.A.T.E. Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/nextwave-agents-of-hate-ultimate-collection/4050-31997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31998/", + "id": 31998, + "name": "Generation X - Overstreet Fan Edition", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-overstreet-fan-edition/4050-31998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32008/", + "id": 32008, + "name": "Spider-Man: Dead Man's Hand", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-dead-mans-hand/4050-32008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32026/", + "id": 32026, + "name": "War Machine: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/war-machine-dark-reign/4050-32026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32027/", + "id": 32027, + "name": "Dark Avengers: Molecule Man", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-molecule-man/4050-32027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32029/", + "id": 32029, + "name": "Black Panther: Power", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-power/4050-32029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32033/", + "id": 32033, + "name": "Wonderful Wizard of Oz MGC", + "site_detail_url": "https://comicvine.gamespot.com/wonderful-wizard-of-oz-mgc/4050-32033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32034/", + "id": 32034, + "name": "X-Factor Forever", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-forever/4050-32034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32044/", + "id": 32044, + "name": "X-23", + "site_detail_url": "https://comicvine.gamespot.com/x-23/4050-32044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32050/", + "id": 32050, + "name": "Hercules: Fall of an Avenger", + "site_detail_url": "https://comicvine.gamespot.com/hercules-fall-of-an-avenger/4050-32050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32059/", + "id": 32059, + "name": "New Excalibur: Defenders of the Realm", + "site_detail_url": "https://comicvine.gamespot.com/new-excalibur-defenders-of-the-realm/4050-32059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32062/", + "id": 32062, + "name": "Captain America MGC", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-mgc/4050-32062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32067/", + "id": 32067, + "name": "Thor By Dan Jurgens & John Romita Jr.", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-dan-jurgens-john-romita-jr/4050-32067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32068/", + "id": 32068, + "name": "New Excalibur: Last Days of Camelot", + "site_detail_url": "https://comicvine.gamespot.com/new-excalibur-last-days-of-camelot/4050-32068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32094/", + "id": 32094, + "name": "Be X-tra Safe with the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/be-x-tra-safe-with-the-x-men/4050-32094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32096/", + "id": 32096, + "name": "Marvel Spotlight Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-marvel-zombies/4050-32096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32097/", + "id": 32097, + "name": "Marvel Spotlight Marvel Zombies Return", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-marvel-zombies-return/4050-32097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32098/", + "id": 32098, + "name": "Mythos: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/mythos-x-men/4050-32098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32099/", + "id": 32099, + "name": "X-Men Premium Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-premium-edition/4050-32099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32100/", + "id": 32100, + "name": "X-Men Mutant Search R.U.1", + "site_detail_url": "https://comicvine.gamespot.com/x-men-mutant-search-ru1/4050-32100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32101/", + "id": 32101, + "name": "The Marvelous Adventures of Gus Beezer with the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-adventures-of-gus-beezer-with-the-x-/4050-32101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32102/", + "id": 32102, + "name": "Wolverine Art Appreciation", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-art-appreciation/4050-32102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32103/", + "id": 32103, + "name": "Magneto Ascendant", + "site_detail_url": "https://comicvine.gamespot.com/magneto-ascendant/4050-32103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32105/", + "id": 32105, + "name": "Hot Shots: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/hot-shots-x-men/4050-32105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32106/", + "id": 32106, + "name": "Paradise X Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-sketchbook/4050-32106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32107/", + "id": 32107, + "name": "Cyclops Retribution", + "site_detail_url": "https://comicvine.gamespot.com/cyclops-retribution/4050-32107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32109/", + "id": 32109, + "name": "Wolverine Typhoid's Kiss", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-typhoids-kiss/4050-32109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32114/", + "id": 32114, + "name": "X-Men Pixies and Demons", + "site_detail_url": "https://comicvine.gamespot.com/x-men-pixies-and-demons/4050-32114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32115/", + "id": 32115, + "name": "X-Man: All Saint's Day", + "site_detail_url": "https://comicvine.gamespot.com/x-man-all-saints-day/4050-32115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32117/", + "id": 32117, + "name": "Wolverine: Global Jeopardy", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-global-jeopardy/4050-32117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32118/", + "id": 32118, + "name": "Wolverine: Son of Canada", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-son-of-canada/4050-32118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32119/", + "id": 32119, + "name": "The Incredible Hulk and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-and-wolverine/4050-32119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32120/", + "id": 32120, + "name": "Excalibur: Weird War III", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-weird-war-iii/4050-32120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32123/", + "id": 32123, + "name": "Wolverine: Prodigal Son", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-prodigal-son/4050-32123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32124/", + "id": 32124, + "name": "Wolverine vs. Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-spider-man/4050-32124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32126/", + "id": 32126, + "name": "X-Men Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ashcan/4050-32126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32134/", + "id": 32134, + "name": "Marvel Spotlight John Cassaday and Sean Mckeever", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-john-cassaday-and-sean-mckeever/4050-32134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32135/", + "id": 32135, + "name": "Marvel Spotlight Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-secret-invasion/4050-32135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32136/", + "id": 32136, + "name": "Marvel Spotlight: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-wolverine/4050-32136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32138/", + "id": 32138, + "name": "X-Men: God Loves, Man Kills", + "site_detail_url": "https://comicvine.gamespot.com/x-men-god-loves-man-kills/4050-32138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32149/", + "id": 32149, + "name": "Marvel Spotlight Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-captain-america/4050-32149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32152/", + "id": 32152, + "name": "Siege Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/siege-directors-cut/4050-32152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32155/", + "id": 32155, + "name": "Wolverine: Dark Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-dark-wolverine/4050-32155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32170/", + "id": 32170, + "name": "Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker/4050-32170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32175/", + "id": 32175, + "name": "X-Men 2 Prequel: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2-prequel-wolverine/4050-32175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32177/", + "id": 32177, + "name": "X-Men Movie Prequel: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-movie-prequel-wolverine/4050-32177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32178/", + "id": 32178, + "name": "X-Men Movie Prequel: Magneto", + "site_detail_url": "https://comicvine.gamespot.com/x-men-movie-prequel-magneto/4050-32178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32179/", + "id": 32179, + "name": "X-Men Movie Prequel: Rogue", + "site_detail_url": "https://comicvine.gamespot.com/x-men-movie-prequel-rogue/4050-32179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32182/", + "id": 32182, + "name": "Deadpool Corps: Rank and Foul", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-corps-rank-and-foul/4050-32182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32187/", + "id": 32187, + "name": "X-Men Origins: Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-nightcrawler/4050-32187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32188/", + "id": 32188, + "name": "Captain America: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn/4050-32188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32191/", + "id": 32191, + "name": "Mighty Avengers: The Unspoken", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-the-unspoken/4050-32191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32192/", + "id": 32192, + "name": "Spider-Man: The Gauntlet - Electro And Sandman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-electro-and-sandman/4050-32192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32195/", + "id": 32195, + "name": "Yuppies From Hell", + "site_detail_url": "https://comicvine.gamespot.com/yuppies-from-hell/4050-32195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32196/", + "id": 32196, + "name": "X-Men Ultra 3 Preview", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ultra-3-preview/4050-32196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32197/", + "id": 32197, + "name": "Real Heroes", + "site_detail_url": "https://comicvine.gamespot.com/real-heroes/4050-32197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32199/", + "id": 32199, + "name": "Spider-Man \"How to Beat the Bully\"/Jubilee \"Peer Pressure\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-how-to-beat-the-bullyjubilee-peer-press/4050-32199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32200/", + "id": 32200, + "name": "X-Men Halloween Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-halloween-special-edition/4050-32200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32202/", + "id": 32202, + "name": "X-Men: Life Lessons", + "site_detail_url": "https://comicvine.gamespot.com/x-men-life-lessons/4050-32202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32207/", + "id": 32207, + "name": "Wolverine Weapon X: Insane in the Brain", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-insane-in-the-brain/4050-32207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32208/", + "id": 32208, + "name": "The Official Marvel Index to the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-avengers/4050-32208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32209/", + "id": 32209, + "name": "The Official Marvel Index to the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-avengers/4050-32209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32210/", + "id": 32210, + "name": "The Official Marvel Index to the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-x-men/4050-32210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32212/", + "id": 32212, + "name": "Wolverine Bloody Choices", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-bloody-choices/4050-32212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32217/", + "id": 32217, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m/4050-32217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32219/", + "id": 32219, + "name": "Blade: Crescent City Blues", + "site_detail_url": "https://comicvine.gamespot.com/blade-crescent-city-blues/4050-32219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32228/", + "id": 32228, + "name": "Hulk: The End", + "site_detail_url": "https://comicvine.gamespot.com/hulk-the-end/4050-32228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32230/", + "id": 32230, + "name": "Stormbreaker: The Saga of Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/stormbreaker-the-saga-of-beta-ray-bill/4050-32230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32231/", + "id": 32231, + "name": "Hulk: WWH - Front Line", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-front-line/4050-32231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32232/", + "id": 32232, + "name": "Marvel Valentine's Day Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-valentines-day-special/4050-32232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32235/", + "id": 32235, + "name": "X-Men: Earthfall", + "site_detail_url": "https://comicvine.gamespot.com/x-men-earthfall/4050-32235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32236/", + "id": 32236, + "name": "X-Men Prelude to Perdition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-prelude-to-perdition/4050-32236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32237/", + "id": 32237, + "name": "Nightcrawler Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-poster-book/4050-32237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32238/", + "id": 32238, + "name": "X-Men The Coming of Triplikill", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-coming-of-triplikill/4050-32238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32239/", + "id": 32239, + "name": "X-Men Iconnect Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-iconnect-edition/4050-32239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32240/", + "id": 32240, + "name": "X-Men: Year of the Mutants Collectors' Preview", + "site_detail_url": "https://comicvine.gamespot.com/x-men-year-of-the-mutants-collectors-preview/4050-32240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32241/", + "id": 32241, + "name": "X-Men The Unlikely Saga of Xavier, Magneto and Stan", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-unlikely-saga-of-xavier-magneto-and-stan/4050-32241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32242/", + "id": 32242, + "name": "The Adventures of Quik bunny", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-quik-bunny/4050-32242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32243/", + "id": 32243, + "name": "ALF", + "site_detail_url": "https://comicvine.gamespot.com/alf/4050-32243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32244/", + "id": 32244, + "name": "X-Men/Alpha Flight: The Gift", + "site_detail_url": "https://comicvine.gamespot.com/x-menalpha-flight-the-gift/4050-32244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32245/", + "id": 32245, + "name": "Askani'son", + "site_detail_url": "https://comicvine.gamespot.com/askanison/4050-32245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32246/", + "id": 32246, + "name": "Avengers: Vision and the Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vision-and-the-scarlet-witch/4050-32246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32256/", + "id": 32256, + "name": "Bill & Ted's Bogus Journey", + "site_detail_url": "https://comicvine.gamespot.com/bill-teds-bogus-journey/4050-32256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32257/", + "id": 32257, + "name": "Blaze of Glory", + "site_detail_url": "https://comicvine.gamespot.com/blaze-of-glory/4050-32257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32258/", + "id": 32258, + "name": "Bullwinkle and Rocky Marvel Moosterworks", + "site_detail_url": "https://comicvine.gamespot.com/bullwinkle-and-rocky-marvel-moosterworks/4050-32258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32266/", + "id": 32266, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4050-32266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32267/", + "id": 32267, + "name": "Giant-Size Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-daredevil/4050-32267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32271/", + "id": 32271, + "name": "X-Men: Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/x-men-second-coming/4050-32271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32277/", + "id": 32277, + "name": "Clandestine Preview", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-preview/4050-32277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32282/", + "id": 32282, + "name": "Avengers/Invaders", + "site_detail_url": "https://comicvine.gamespot.com/avengers-invaders/4050-32282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32283/", + "id": 32283, + "name": "Iron Man: Armor Wars Prologue", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-armor-wars-prologue/4050-32283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32284/", + "id": 32284, + "name": "Iron Man: Iron Monger", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-iron-monger/4050-32284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32285/", + "id": 32285, + "name": "Dark Avengers: Ares", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-ares/4050-32285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32286/", + "id": 32286, + "name": "Avengers: Standoff", + "site_detail_url": "https://comicvine.gamespot.com/avengers-standoff/4050-32286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32290/", + "id": 32290, + "name": "She-Hulk Sensational", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-sensational/4050-32290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32295/", + "id": 32295, + "name": "Immortal Weapons", + "site_detail_url": "https://comicvine.gamespot.com/immortal-weapons/4050-32295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32296/", + "id": 32296, + "name": "Fantastic Four By Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman/4050-32296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32297/", + "id": 32297, + "name": "Identity Disc", + "site_detail_url": "https://comicvine.gamespot.com/identity-disc/4050-32297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32298/", + "id": 32298, + "name": "Incredible Hercules: Sacred Invasion", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-sacred-invasion/4050-32298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32301/", + "id": 32301, + "name": "Hot Shots: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hot-shots-avengers/4050-32301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32302/", + "id": 32302, + "name": "Hot Shots: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/hot-shots-spider-man/4050-32302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32303/", + "id": 32303, + "name": "ClanDestine Classic", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-classic/4050-32303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32308/", + "id": 32308, + "name": "Avengers: World Trust", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-trust/4050-32308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32309/", + "id": 32309, + "name": "Beta Ray Bill: Godhunter", + "site_detail_url": "https://comicvine.gamespot.com/beta-ray-bill-godhunter/4050-32309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32310/", + "id": 32310, + "name": "Civil War: Heroes for Hire", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-heroes-for-hire/4050-32310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32311/", + "id": 32311, + "name": "Civil War: Young Avengers and Runaways", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-and-runaways/4050-32311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32315/", + "id": 32315, + "name": "Marvel Adventures: Iron Man and Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-and-spider-man/4050-32315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32319/", + "id": 32319, + "name": "Dark Reign: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-fantastic-four/4050-32319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32320/", + "id": 32320, + "name": "Dark Reign: The Underside", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-the-underside/4050-32320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32321/", + "id": 32321, + "name": "Deadpool: Suicide Kings", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-suicide-kings/4050-32321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32322/", + "id": 32322, + "name": "Deadpool: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-secret-invasion/4050-32322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32323/", + "id": 32323, + "name": "Fantastic Four: World's Greatest", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-worlds-greatest/4050-32323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32324/", + "id": 32324, + "name": "Ghost Rider: Danny Ketch: Addict", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-danny-ketch-addict/4050-32324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32325/", + "id": 32325, + "name": "Ghost Rider: The Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-the-last-stand/4050-32325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32326/", + "id": 32326, + "name": "Ghost Rider: Trail of Tears", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-trail-of-tears/4050-32326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32327/", + "id": 32327, + "name": "Ghost Rider: Trials and Tribulations", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-trials-and-tribulations/4050-32327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32328/", + "id": 32328, + "name": "Ghost Rider: Vicious Cycle", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-vicious-cycle/4050-32328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32329/", + "id": 32329, + "name": "Ghost Rider: The Life and Death of Johnny Blaze", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-the-life-and-death-of-johnny-blaze/4050-32329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32330/", + "id": 32330, + "name": "Ghost Rider: Apocalypse Soon", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-apocalypse-soon/4050-32330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32331/", + "id": 32331, + "name": "Ghost Rider: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-revelations/4050-32331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32332/", + "id": 32332, + "name": "Ghost Rider: Hell Bent and Heaven Bound", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-hell-bent-and-heaven-bound/4050-32332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32333/", + "id": 32333, + "name": "Ghost Riders: Heaven's On Fire", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riders-heavens-on-fire/4050-32333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32334/", + "id": 32334, + "name": "The Invincible Iron Man: Execute Program", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-execute-program/4050-32334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32335/", + "id": 32335, + "name": "Heroes for Hire: World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-world-war-hulk/4050-32335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32336/", + "id": 32336, + "name": "Cable and Deadpool: Paved With Good Intentions", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-paved-with-good-intentions/4050-32336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32337/", + "id": 32337, + "name": "Cable and Deadpool: Separation Anxiety", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-separation-anxiety/4050-32337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32339/", + "id": 32339, + "name": "Thor MGC", + "site_detail_url": "https://comicvine.gamespot.com/thor-mgc/4050-32339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32341/", + "id": 32341, + "name": "The Invincible Iron Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-omnibus/4050-32341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32342/", + "id": 32342, + "name": "Avengers Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/avengers-disassembled/4050-32342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32343/", + "id": 32343, + "name": "Marvel Adventures Spider-Man: Fiercest Foes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-fiercest-foes/4050-32343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32344/", + "id": 32344, + "name": "Captain America Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-poster-book/4050-32344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32345/", + "id": 32345, + "name": "Marvel Adventures Spider-Man: Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-identity-crisis/4050-32345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32346/", + "id": 32346, + "name": "Marvel Adventures Spider-Man: Animal Instinct", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-animal-instinct/4050-32346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32347/", + "id": 32347, + "name": "Incognito Must Have", + "site_detail_url": "https://comicvine.gamespot.com/incognito-must-have/4050-32347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32348/", + "id": 32348, + "name": "Marvel Adventures Spider-Man: Jumping to Conclusions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-jumping-to-conclusion/4050-32348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32349/", + "id": 32349, + "name": "Marvel Adventures Spider-Man: Animal Attack!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-animal-attack/4050-32349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32350/", + "id": 32350, + "name": "Marvel Adventures Spider-Man: The Black Costume", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-the-black-costume/4050-32350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32351/", + "id": 32351, + "name": "Marvel Adventures Spider-Man: Forces of Nature", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-forces-of-nature/4050-32351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32352/", + "id": 32352, + "name": "Marvel Adventures: Spider-Man and the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-and-the-avengers/4050-32352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32353/", + "id": 32353, + "name": "Marvel Adventures: Thor and the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thor-and-the-avengers/4050-32353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32354/", + "id": 32354, + "name": "Marvel Adventures: Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thor/4050-32354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32355/", + "id": 32355, + "name": "Marvel Adventures Iron Man: Heart of Steel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-heart-of-steel/4050-32355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32356/", + "id": 32356, + "name": "Marvel Adventures Iron Man: Iron Armory", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-iron-armory/4050-32356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32357/", + "id": 32357, + "name": "Marvel Adventures Iron Man: Hero By Design", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-hero-by-design/4050-32357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32368/", + "id": 32368, + "name": "Marvel Adventures Spider-Man: The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-the-sinister-six/4050-32368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32369/", + "id": 32369, + "name": "Marvel Adventures Spider-Man: Power Struggle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-power-struggle/4050-32369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32370/", + "id": 32370, + "name": "Marvel Adventures Spider-Man: Doom With A View", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-doom-with-a-view/4050-32370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32371/", + "id": 32371, + "name": "Marvel Adventures Spider-Man: Concrete Jungle", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-concrete-jungle/4050-32371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32372/", + "id": 32372, + "name": "Marvel Adventures Spider-Man: Monsters On the Prowl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-monsters-on-the-prowl/4050-32372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32373/", + "id": 32373, + "name": "Marvel Adventures Spider-Man: Secret Identity", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-secret-identity/4050-32373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32374/", + "id": 32374, + "name": "Marvel Adventures Avengers: Heroes Assembled", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-heroes-assembled/4050-32374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32375/", + "id": 32375, + "name": "Marvel Adventures Avengers: Mischief", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-mischief/4050-32375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32376/", + "id": 32376, + "name": "Marvel Adventures Avengers: Bizarre Adventures", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-bizarre-adventures/4050-32376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32377/", + "id": 32377, + "name": "Marvel Adventures Avengers: The Dream Team", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-the-dream-team/4050-32377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32378/", + "id": 32378, + "name": "Marvel Adventures Avengers: Some Assembling Required", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-some-assembling-require/4050-32378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32379/", + "id": 32379, + "name": "Marvel Adventures Avengers: Mighty Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-mighty-marvels/4050-32379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32380/", + "id": 32380, + "name": "Marvel Adventures Avengers: Weirder & Wilder", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-weirder-and-wilder/4050-32380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32381/", + "id": 32381, + "name": "Marvel Adventures Avengers: The New Recruits", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-the-new-recruits/4050-32381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32382/", + "id": 32382, + "name": "Marvel Adventures Avengers: The Times They Are A-Changing'", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-the-times-they-are-a-ch/4050-32382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32383/", + "id": 32383, + "name": "Marvel Adventures Avengers: Invasion", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-invasion/4050-32383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32385/", + "id": 32385, + "name": "Marvel Adventures Spider-Man, Hulk & Iron Man: Triple Threat", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-hulk-iron-man-triple-/4050-32385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32388/", + "id": 32388, + "name": "Marvel Spotlight: Stan Lee/Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-stan-leejack-kirby/4050-32388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32389/", + "id": 32389, + "name": "Marvel Spotlight: Civil War Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-civil-war-aftermath/4050-32389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32390/", + "id": 32390, + "name": "Marvel Spotlight: Neil Gaiman/Salvador Larroca", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-neil-gaimansalvador-larroca/4050-32390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32391/", + "id": 32391, + "name": "Marvel Spotlight: Ultimates 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-ultimates-3/4050-32391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32392/", + "id": 32392, + "name": "Marvel Spotlight: Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-ultimatum/4050-32392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32393/", + "id": 32393, + "name": "Mini Marvels Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/mini-marvels-ultimate-collection/4050-32393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32394/", + "id": 32394, + "name": "What If? Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/what-if-sub-mariner/4050-32394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32395/", + "id": 32395, + "name": "Spider-Man: Made Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-made-men/4050-32395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32396/", + "id": 32396, + "name": "Marvel Adventures Fantastic Four: Family of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-family-of-heroes/4050-32396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32397/", + "id": 32397, + "name": "Marvel Adventures Fantastic Four: Fantastic Voyages", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-fantastic-voyages/4050-32397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32398/", + "id": 32398, + "name": "Marvel Adventures Fantastic Four: Cosmic Threats", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-cosmic-threats/4050-32398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32399/", + "id": 32399, + "name": "Marvel Adventures Fantastic Four: All 4 One, 4 For All", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-all-4-one-4-for-a/4050-32399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32400/", + "id": 32400, + "name": "Marvel Adventures Fantastic Four: Monsters and Mysteries", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-monsters-and-myst/4050-32400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32401/", + "id": 32401, + "name": "Marvel Adventures Fantastic Four: The Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-the-silver-surfer/4050-32401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32402/", + "id": 32402, + "name": "Marvel Adventures Fantastic Four: Monsters, Moles, Cowboys, and Coupons", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-monsters-moles-co/4050-32402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32403/", + "id": 32403, + "name": "Marvel Adventures Fantastic Four: New York's Finest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-new-yorks-finest/4050-32403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32404/", + "id": 32404, + "name": "Marvel Adventures Fantastic Four: Spaced Crusaders", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-spaced-crusaders/4050-32404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32405/", + "id": 32405, + "name": "Marvel Adventures Fantastic Four: Doomed If You Don't", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-fantastic-four-doomed-if-you-don/4050-32405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32406/", + "id": 32406, + "name": "Marvel Adventures Hulk: Misunderstood Monster", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-misunderstood-monster/4050-32406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32407/", + "id": 32407, + "name": "Marvel Adventures Hulk: Defenders", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-defenders/4050-32407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32408/", + "id": 32408, + "name": "Marvel Adventures Hulk: Strongest One There Is", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-strongest-one-there-is/4050-32408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32409/", + "id": 32409, + "name": "Marvel Adventures Hulk: Tales to Astonish", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-hulk-tales-to-astonish/4050-32409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32410/", + "id": 32410, + "name": "Cable: Messiah War", + "site_detail_url": "https://comicvine.gamespot.com/cable-messiah-war/4050-32410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32411/", + "id": 32411, + "name": "Cable: Waiting for the End of the World", + "site_detail_url": "https://comicvine.gamespot.com/cable-waiting-for-the-end-of-the-world/4050-32411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32412/", + "id": 32412, + "name": "Civil War: X-Men Universe", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men-universe/4050-32412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32414/", + "id": 32414, + "name": "GeNext: United", + "site_detail_url": "https://comicvine.gamespot.com/genext-united/4050-32414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32415/", + "id": 32415, + "name": "X-Force: Angels and Demons", + "site_detail_url": "https://comicvine.gamespot.com/x-force-angels-and-demons/4050-32415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32416/", + "id": 32416, + "name": "X-Force: Old Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/x-force-old-ghosts/4050-32416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32418/", + "id": 32418, + "name": "Secret Warriors: God of Fear, God of War", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-god-of-fear-god-of-war/4050-32418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32419/", + "id": 32419, + "name": "Cable: Stranded", + "site_detail_url": "https://comicvine.gamespot.com/cable-stranded/4050-32419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32421/", + "id": 32421, + "name": "New Mutants: Return of Legion", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-return-of-legion/4050-32421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32422/", + "id": 32422, + "name": "Spider-Man: Died In Your Arms Tonight", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-died-in-your-arms-tonight/4050-32422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32423/", + "id": 32423, + "name": "Spider-Man: Red-Headed Stranger", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-red-headed-stranger/4050-32423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32428/", + "id": 32428, + "name": "Spider-Man: Return of The Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-return-of-the-black-cat/4050-32428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32429/", + "id": 32429, + "name": "Avengers: The Origin", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-origin/4050-32429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32430/", + "id": 32430, + "name": "S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/shield/4050-32430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32441/", + "id": 32441, + "name": "Deadpool Corps", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-corps/4050-32441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32446/", + "id": 32446, + "name": "Thor and the Warriors Four", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-the-warriors-four/4050-32446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32448/", + "id": 32448, + "name": "Electric Ant", + "site_detail_url": "https://comicvine.gamespot.com/electric-ant/4050-32448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32449/", + "id": 32449, + "name": "World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks/4050-32449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32450/", + "id": 32450, + "name": "New Avengers: Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-luke-cage/4050-32450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32451/", + "id": 32451, + "name": "Marvel Zombies 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-5/4050-32451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32453/", + "id": 32453, + "name": "New Avengers: Search For the Sorcerer Supreme", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-search-for-the-sorcerer-supreme/4050-32453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32455/", + "id": 32455, + "name": "New Avengers: Power Loss", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-power-loss/4050-32455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32456/", + "id": 32456, + "name": "Wolverine Origins: Romulus", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-romulus/4050-32456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32459/", + "id": 32459, + "name": "Daredevil: Return of the King", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-return-of-the-king/4050-32459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32460/", + "id": 32460, + "name": "Daredevil: Lady Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-lady-bullseye/4050-32460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32462/", + "id": 32462, + "name": "Daredevil: Cruel and Unusual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-cruel-and-unusual/4050-32462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32464/", + "id": 32464, + "name": "Daredevil: Hell to Pay", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-hell-to-pay/4050-32464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32466/", + "id": 32466, + "name": "Daredevil: The Devil, Inside and Out", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-devil-inside-and-out/4050-32466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32467/", + "id": 32467, + "name": "Venom: Shiver", + "site_detail_url": "https://comicvine.gamespot.com/venom-shiver/4050-32467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32470/", + "id": 32470, + "name": "Venom: Run", + "site_detail_url": "https://comicvine.gamespot.com/venom-run/4050-32470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32471/", + "id": 32471, + "name": "Venom: Twist", + "site_detail_url": "https://comicvine.gamespot.com/venom-twist/4050-32471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32475/", + "id": 32475, + "name": "Ultimate Comics Iron Man: Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-iron-man-armor-wars/4050-32475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32477/", + "id": 32477, + "name": "Ultimate Comics Spider-Man: The New World According to Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-the-new-world-according/4050-32477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32478/", + "id": 32478, + "name": "Uncanny X-Men First Class: Hated and Feared", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-first-class-hated-and-feared/4050-32478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32480/", + "id": 32480, + "name": "Daredevil: Decalogue", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-decalogue/4050-32480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32490/", + "id": 32490, + "name": "Spider-Girl: Duty Calls", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-duty-calls/4050-32490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32492/", + "id": 32492, + "name": "Spider-Girl: Season of the Serpent", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-season-of-the-serpent/4050-32492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32493/", + "id": 32493, + "name": "Spider-Girl: The Games Villains Play", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-games-villains-play/4050-32493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32503/", + "id": 32503, + "name": "Black Widow: Deadly Origin", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-deadly-origin/4050-32503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32504/", + "id": 32504, + "name": "Civil War: Punisher War Journal", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-punisher-war-journal/4050-32504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32505/", + "id": 32505, + "name": "Black Widow: Web of Intrigue", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-web-of-intrigue/4050-32505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32512/", + "id": 32512, + "name": "Wolverine MGC", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-mgc/4050-32512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32513/", + "id": 32513, + "name": "Hulk: Planet Skaar", + "site_detail_url": "https://comicvine.gamespot.com/hulk-planet-skaar/4050-32513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32519/", + "id": 32519, + "name": "Hulk Visionaries: Peter David", + "site_detail_url": "https://comicvine.gamespot.com/hulk-visionaries-peter-david/4050-32519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32527/", + "id": 32527, + "name": "Comix Book", + "site_detail_url": "https://comicvine.gamespot.com/comix-book/4050-32527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32536/", + "id": 32536, + "name": "Giant-Size Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-captain-marvel/4050-32536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32537/", + "id": 32537, + "name": "Giant-Size Captain America", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-captain-america/4050-32537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32539/", + "id": 32539, + "name": "Giant-Size Doc Savage", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-doc-savage/4050-32539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32544/", + "id": 32544, + "name": "The Island of Dr. Moreau", + "site_detail_url": "https://comicvine.gamespot.com/the-island-of-dr-moreau/4050-32544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32546/", + "id": 32546, + "name": "Hulk: Unchained", + "site_detail_url": "https://comicvine.gamespot.com/hulk-unchained/4050-32546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32547/", + "id": 32547, + "name": "Hulk: Gamma Games", + "site_detail_url": "https://comicvine.gamespot.com/hulk-gamma-games/4050-32547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32557/", + "id": 32557, + "name": "Agents of Atlas: Turf Wars", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-turf-wars/4050-32557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32558/", + "id": 32558, + "name": "Skaar: Son of Hulk", + "site_detail_url": "https://comicvine.gamespot.com/skaar-son-of-hulk/4050-32558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32559/", + "id": 32559, + "name": "Hulk: Son of Hulk - Dark Son Rising", + "site_detail_url": "https://comicvine.gamespot.com/hulk-son-of-hulk-dark-son-rising/4050-32559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32580/", + "id": 32580, + "name": "Siege: Loki", + "site_detail_url": "https://comicvine.gamespot.com/siege-loki/4050-32580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32582/", + "id": 32582, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4050-32582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32584/", + "id": 32584, + "name": "Siege: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/siege-captain-america/4050-32584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32585/", + "id": 32585, + "name": "Siege: Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/siege-young-avengers/4050-32585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32589/", + "id": 32589, + "name": "Iron Man: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-legacy/4050-32589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32593/", + "id": 32593, + "name": "Hulked-Out Heroes", + "site_detail_url": "https://comicvine.gamespot.com/hulked-out-heroes/4050-32593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32594/", + "id": 32594, + "name": "Iron Man Noir", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-noir/4050-32594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32599/", + "id": 32599, + "name": "Iron Man Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-poster-book/4050-32599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32600/", + "id": 32600, + "name": "Iron Man Magazine", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine/4050-32600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32603/", + "id": 32603, + "name": "Iron Man 2 Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2-spotlight/4050-32603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32604/", + "id": 32604, + "name": "Ender's Game: The League War", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-the-league-war/4050-32604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32606/", + "id": 32606, + "name": "The Savage Axe of Ares (B&W)", + "site_detail_url": "https://comicvine.gamespot.com/the-savage-axe-of-ares-bw/4050-32606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32613/", + "id": 32613, + "name": "Hulk: WWH - Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-damage-control/4050-32613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32614/", + "id": 32614, + "name": "Hulk: WWH - Gamma Corps", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-gamma-corps/4050-32614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32615/", + "id": 32615, + "name": "Hulk: WWH - Incredible Herc", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-incredible-herc/4050-32615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32616/", + "id": 32616, + "name": "Hulk: WWH - Warbound", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wwh-warbound/4050-32616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32619/", + "id": 32619, + "name": "Incredible Hercules: Against the World", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-against-the-world/4050-32619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32620/", + "id": 32620, + "name": "Incredible Hercules: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-dark-reign/4050-32620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32621/", + "id": 32621, + "name": "Incredible Hercules: Mighty Thorcules", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-mighty-thorcules/4050-32621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32624/", + "id": 32624, + "name": "Incredible Hulk: Son of Banner", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-son-of-banner/4050-32624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32625/", + "id": 32625, + "name": "Marvel Apes: The Evolution Starts Here", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes-the-evolution-starts-here/4050-32625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32628/", + "id": 32628, + "name": "Marvel Adventures Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-super-heroes/4050-32628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32629/", + "id": 32629, + "name": "Amazing Spider-Man: Origin of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-origin-of-the-hunter/4050-32629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32633/", + "id": 32633, + "name": "Hulk MGC", + "site_detail_url": "https://comicvine.gamespot.com/hulk-mgc/4050-32633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32657/", + "id": 32657, + "name": "New-Gen", + "site_detail_url": "https://comicvine.gamespot.com/new-gen/4050-32657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32658/", + "id": 32658, + "name": "Iron Man vs. Whiplash", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-vs-whiplash/4050-32658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32659/", + "id": 32659, + "name": "Irredeemable Ant-Man: Small Minded", + "site_detail_url": "https://comicvine.gamespot.com/irredeemable-ant-man-small-minded/4050-32659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32661/", + "id": 32661, + "name": "Siege: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/siege-spider-man/4050-32661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32668/", + "id": 32668, + "name": "Firestar", + "site_detail_url": "https://comicvine.gamespot.com/firestar/4050-32668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32669/", + "id": 32669, + "name": "Sif", + "site_detail_url": "https://comicvine.gamespot.com/sif/4050-32669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32670/", + "id": 32670, + "name": "Defenders: Indefensible", + "site_detail_url": "https://comicvine.gamespot.com/defenders-indefensible/4050-32670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32672/", + "id": 32672, + "name": "Captain America: Who Won't Wield the Shield?", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-who-wont-wield-the-shield/4050-32672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32675/", + "id": 32675, + "name": "Her-oes", + "site_detail_url": "https://comicvine.gamespot.com/her-oes/4050-32675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32678/", + "id": 32678, + "name": "X-Men Forever Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-annual/4050-32678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32679/", + "id": 32679, + "name": "Iron Manual Mark 3", + "site_detail_url": "https://comicvine.gamespot.com/iron-manual-mark-3/4050-32679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32681/", + "id": 32681, + "name": "New Avengers MGC", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-mgc/4050-32681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32688/", + "id": 32688, + "name": "Marvel Boy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-boy/4050-32688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32699/", + "id": 32699, + "name": "Spider-Man: The Gauntlet - Rhino and Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-rhino-and-mysterio/4050-32699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32701/", + "id": 32701, + "name": "The Amazing Spider-Man: The Complete Clone Saga Epic", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4050-32701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32702/", + "id": 32702, + "name": "Marvel Fanfare: Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-strange-tales/4050-32702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32703/", + "id": 32703, + "name": "Marvel Zombies: Dead Days", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-dead-days/4050-32703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32704/", + "id": 32704, + "name": "Marvel Zombies 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-2/4050-32704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32733/", + "id": 32733, + "name": "The Official Marvel Index to the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-index-to-the-fantastic-four/4050-32733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32739/", + "id": 32739, + "name": "X-Man: Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-man-age-of-apocalypse/4050-32739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32779/", + "id": 32779, + "name": "Siege: Secret Warriors", + "site_detail_url": "https://comicvine.gamespot.com/siege-secret-warriors/4050-32779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32824/", + "id": 32824, + "name": "Strange: The Doctor is Out", + "site_detail_url": "https://comicvine.gamespot.com/strange-the-doctor-is-out/4050-32824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32826/", + "id": 32826, + "name": "Startling Stories: The Thing", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-the-thing/4050-32826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32844/", + "id": 32844, + "name": "Uncanny X-Men First Class: Knights of Hykon", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-first-class-knights-of-hykon/4050-32844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32845/", + "id": 32845, + "name": "Wolverine Origins: Seven the Hard Way", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-seven-the-hard-way/4050-32845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32854/", + "id": 32854, + "name": "Captain America: Winter Soldier Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-winter-soldier-ultimate-collection/4050-32854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32861/", + "id": 32861, + "name": "Marvel Apes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-apes/4050-32861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32872/", + "id": 32872, + "name": "Marvel Zombies 3", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-3/4050-32872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32887/", + "id": 32887, + "name": "Iron Man 2: Public Identity", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2-public-identity/4050-32887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32888/", + "id": 32888, + "name": "Marvel Adventures Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man/4050-32888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32889/", + "id": 32889, + "name": "Marvel Age Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-hulk/4050-32889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32890/", + "id": 32890, + "name": "Civil War MGC", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-mgc/4050-32890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32896/", + "id": 32896, + "name": "Moment of Silence", + "site_detail_url": "https://comicvine.gamespot.com/moment-of-silence/4050-32896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32901/", + "id": 32901, + "name": "Free Comic Book Day 2010 (Iron Man/Thor)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2010-iron-manthor/4050-32901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32903/", + "id": 32903, + "name": "Spider-Man: The Clone Journal", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-clone-journal/4050-32903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32923/", + "id": 32923, + "name": "G.I. Joe: Special", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-special/4050-32923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32928/", + "id": 32928, + "name": "X-Men: Hellbound", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hellbound/4050-32928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32931/", + "id": 32931, + "name": "Astonishing Spider-Man & Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine/4050-32931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32935/", + "id": 32935, + "name": "Many Loves Of The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/many-loves-of-the-amazing-spider-man/4050-32935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32953/", + "id": 32953, + "name": "Spider-Man: Grim Hunt - The Kraven Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-grim-hunt-the-kraven-saga/4050-32953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32954/", + "id": 32954, + "name": "Free Comic Book Day 2010 (Iron Man: Supernova)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2010-iron-man-supernova/4050-32954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32972/", + "id": 32972, + "name": "New Mutants: Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-necrosha/4050-32972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32973/", + "id": 32973, + "name": "Dark X-Men", + "site_detail_url": "https://comicvine.gamespot.com/dark-x-men/4050-32973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32980/", + "id": 32980, + "name": "Guardians of the Galaxy: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-legacy/4050-32980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32981/", + "id": 32981, + "name": "Guardians of the Galaxy: War of Kings, Book One", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-war-of-kings-book-one/4050-32981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32983/", + "id": 32983, + "name": "Guardians of the Galaxy: War of Kings, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-war-of-kings-book-two/4050-32983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32986/", + "id": 32986, + "name": "Marvel Zombies 4", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-4/4050-32986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33018/", + "id": 33018, + "name": "Marvel Zombies Return", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-return/4050-33018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33019/", + "id": 33019, + "name": "Avengers: I Am An Avenger", + "site_detail_url": "https://comicvine.gamespot.com/avengers-i-am-an-avenger/4050-33019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33021/", + "id": 33021, + "name": "Ms. Marvel: Best You Can Be", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-best-you-can-be/4050-33021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33029/", + "id": 33029, + "name": "Ms Marvel: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-dark-reign/4050-33029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33030/", + "id": 33030, + "name": "Ms Marvel: Ascension", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-ascension/4050-33030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33031/", + "id": 33031, + "name": "Mystic Arcana", + "site_detail_url": "https://comicvine.gamespot.com/mystic-arcana/4050-33031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33054/", + "id": 33054, + "name": "New Avengers: Illuminati", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-illuminati/4050-33054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33060/", + "id": 33060, + "name": "Avengers, Thor & Captain America: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/avengers-thor-captain-america-official-index-to-th/4050-33060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33063/", + "id": 33063, + "name": "Spectacular Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl/4050-33063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33085/", + "id": 33085, + "name": "Astonishing X-Men: Xenogenesis", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-xenogenesis/4050-33085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33086/", + "id": 33086, + "name": "Sentry: Fallen Sun", + "site_detail_url": "https://comicvine.gamespot.com/sentry-fallen-sun/4050-33086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33089/", + "id": 33089, + "name": "Heroic Age Previews", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-previews/4050-33089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33091/", + "id": 33091, + "name": "New Avengers Finale", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-finale/4050-33091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33092/", + "id": 33092, + "name": "Heroic Age: Prince of Power", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-prince-of-power/4050-33092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33096/", + "id": 33096, + "name": "Nomad: Girl Without A World", + "site_detail_url": "https://comicvine.gamespot.com/nomad-girl-without-a-world/4050-33096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33097/", + "id": 33097, + "name": "Patsy Walker: Hellcat", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-hellcat/4050-33097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33098/", + "id": 33098, + "name": "Punisher: Circle of Blood", + "site_detail_url": "https://comicvine.gamespot.com/punisher-circle-of-blood/4050-33098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33099/", + "id": 33099, + "name": "Punisher: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/punisher-dark-reign/4050-33099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33100/", + "id": 33100, + "name": "Punisher: Dead End", + "site_detail_url": "https://comicvine.gamespot.com/punisher-dead-end/4050-33100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33111/", + "id": 33111, + "name": "Avengers: Red Zone", + "site_detail_url": "https://comicvine.gamespot.com/avengers-red-zone/4050-33111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33112/", + "id": 33112, + "name": "Punisher War Journal Classic", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-classic/4050-33112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33113/", + "id": 33113, + "name": "Punisher War Journal: Goin' Out West", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-goin-out-west/4050-33113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33122/", + "id": 33122, + "name": "Daredevil: Cage Match", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-cage-match/4050-33122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33125/", + "id": 33125, + "name": "Punisher War Journal: Hunter/Hunted", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-hunterhunted/4050-33125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33126/", + "id": 33126, + "name": "Punisher War Journal: Jigsaw", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-jigsaw/4050-33126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33127/", + "id": 33127, + "name": "Punisher War Journal: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-secret-invasion/4050-33127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33128/", + "id": 33128, + "name": "Savage She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/savage-she-hulk/4050-33128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33129/", + "id": 33129, + "name": "Black Panther: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-secret-invasion/4050-33129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33130/", + "id": 33130, + "name": "Secret Invasion: The Infiltration", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-the-infiltration/4050-33130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33131/", + "id": 33131, + "name": "Fantastic Four Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-special-edition/4050-33131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33134/", + "id": 33134, + "name": "Agents of Atlas MGC", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-mgc/4050-33134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33136/", + "id": 33136, + "name": "Marvel Adventures Spider-Man: Peter Parker Vs. The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-peter-parker-vs-the-x/4050-33136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33144/", + "id": 33144, + "name": "Secret Invasion: Thor", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-thor/4050-33144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33146/", + "id": 33146, + "name": "Secret Invasion: Who Do You Trust?", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-who-do-you-trust/4050-33146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33147/", + "id": 33147, + "name": "Sentry: Age of the Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry-age-of-the-sentry/4050-33147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33148/", + "id": 33148, + "name": "She-Hulk: Here Today....", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-here-today/4050-33148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33149/", + "id": 33149, + "name": "She-Hulk: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-secret-invasion/4050-33149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33150/", + "id": 33150, + "name": "She-Hulk: Lady Liberators", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-lady-liberators/4050-33150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33155/", + "id": 33155, + "name": "Silent War", + "site_detail_url": "https://comicvine.gamespot.com/silent-war/4050-33155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33157/", + "id": 33157, + "name": "Mythos: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/mythos-hulk/4050-33157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33162/", + "id": 33162, + "name": "What If? Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/what-if-daredevil/4050-33162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33163/", + "id": 33163, + "name": "What If? Captain America", + "site_detail_url": "https://comicvine.gamespot.com/what-if-captain-america/4050-33163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33164/", + "id": 33164, + "name": "Elektra: The Official Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/elektra-the-official-movie-adaptation/4050-33164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33165/", + "id": 33165, + "name": "Daredevil And The Punisher: Child's Play", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-and-the-punisher-childs-play/4050-33165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33166/", + "id": 33166, + "name": "You Don't Say", + "site_detail_url": "https://comicvine.gamespot.com/you-dont-say/4050-33166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33167/", + "id": 33167, + "name": "More You Don't Say", + "site_detail_url": "https://comicvine.gamespot.com/more-you-dont-say/4050-33167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33169/", + "id": 33169, + "name": "Squadron Supreme: Bright Shining Lies", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-bright-shining-lies/4050-33169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33170/", + "id": 33170, + "name": "Super-Villain Team-Up: Modok's 11", + "site_detail_url": "https://comicvine.gamespot.com/super-villain-team-up-modoks-11/4050-33170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33188/", + "id": 33188, + "name": "Marvel 1602 MGC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-mgc/4050-33188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33207/", + "id": 33207, + "name": "X-Men: Nation X", + "site_detail_url": "https://comicvine.gamespot.com/x-men-nation-x/4050-33207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33227/", + "id": 33227, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-33227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33229/", + "id": 33229, + "name": "Enter The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/enter-the-heroic-age/4050-33229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33230/", + "id": 33230, + "name": "Rescue", + "site_detail_url": "https://comicvine.gamespot.com/rescue/4050-33230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33233/", + "id": 33233, + "name": "Monsters to Laugh With", + "site_detail_url": "https://comicvine.gamespot.com/monsters-to-laugh-with/4050-33233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33234/", + "id": 33234, + "name": "Monsters Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unlimited/4050-33234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33235/", + "id": 33235, + "name": "Patsy Walker's Fashion Parade", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walkers-fashion-parade/4050-33235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33236/", + "id": 33236, + "name": "Atlas", + "site_detail_url": "https://comicvine.gamespot.com/atlas/4050-33236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33238/", + "id": 33238, + "name": "Marvel Super-Heroes King-Size Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-king-size-special/4050-33238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33239/", + "id": 33239, + "name": "Dark Tower: The Gunslinger - The Journey Begins", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-journey-begins/4050-33239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33240/", + "id": 33240, + "name": "Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics/4050-33240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33241/", + "id": 33241, + "name": "Age of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/age-of-heroes/4050-33241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33246/", + "id": 33246, + "name": "Galacta: Daughter of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/galacta-daughter-of-galactus/4050-33246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33253/", + "id": 33253, + "name": "Women of Marvel: Celebrating Seven Decades Magazine", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-magazine/4050-33253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33255/", + "id": 33255, + "name": "Amazing Spider-Man Presents: American Son", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-american-son/4050-33255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33259/", + "id": 33259, + "name": "Anita Blake, Vampire Hunter: Circus of the Damned - The Charmer", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-circus-of-the-damned-th/4050-33259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33262/", + "id": 33262, + "name": "Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble/4050-33262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33263/", + "id": 33263, + "name": "Supreme Power: Contact", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power-contact/4050-33263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33264/", + "id": 33264, + "name": "Supreme Power: Powers and Principalities", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power-powers-and-principalities/4050-33264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33265/", + "id": 33265, + "name": "Supreme Power: High Command", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power-high-command/4050-33265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33266/", + "id": 33266, + "name": "Supreme Power: Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power-hyperion/4050-33266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33267/", + "id": 33267, + "name": "Supreme Power: Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power-nighthawk/4050-33267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33268/", + "id": 33268, + "name": "The Order: The Next Right Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-order-the-next-right-thing/4050-33268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33271/", + "id": 33271, + "name": "Petey", + "site_detail_url": "https://comicvine.gamespot.com/petey/4050-33271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33275/", + "id": 33275, + "name": "Thor: Ages of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-ages-of-thunder/4050-33275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33276/", + "id": 33276, + "name": "Mad About Millie Annual", + "site_detail_url": "https://comicvine.gamespot.com/mad-about-millie-annual/4050-33276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33277/", + "id": 33277, + "name": "Tower of Shadows Special", + "site_detail_url": "https://comicvine.gamespot.com/tower-of-shadows-special/4050-33277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33278/", + "id": 33278, + "name": "Rawhide Kid Special", + "site_detail_url": "https://comicvine.gamespot.com/rawhide-kid-special/4050-33278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33279/", + "id": 33279, + "name": "My Love Special", + "site_detail_url": "https://comicvine.gamespot.com/my-love-special/4050-33279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33280/", + "id": 33280, + "name": "Thor: Balder the Brave", + "site_detail_url": "https://comicvine.gamespot.com/thor-balder-the-brave/4050-33280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33281/", + "id": 33281, + "name": "Thor: Blood Oath", + "site_detail_url": "https://comicvine.gamespot.com/thor-blood-oath/4050-33281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33282/", + "id": 33282, + "name": "Timestorm 2009/2099", + "site_detail_url": "https://comicvine.gamespot.com/timestorm-20092099/4050-33282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33283/", + "id": 33283, + "name": "Union Jack: London Falling", + "site_detail_url": "https://comicvine.gamespot.com/union-jack-london-falling/4050-33283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33299/", + "id": 33299, + "name": "War of Kings", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings/4050-33299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33304/", + "id": 33304, + "name": "Road to War of Kings", + "site_detail_url": "https://comicvine.gamespot.com/road-to-war-of-kings/4050-33304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33330/", + "id": 33330, + "name": "Eternals: The Herod Factor", + "site_detail_url": "https://comicvine.gamespot.com/eternals-the-herod-factor/4050-33330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33337/", + "id": 33337, + "name": "Marvel Zombies MGC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-mgc/4050-33337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33341/", + "id": 33341, + "name": "X-Men: Psylocke", + "site_detail_url": "https://comicvine.gamespot.com/x-men-psylocke/4050-33341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33347/", + "id": 33347, + "name": "Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/dazzler/4050-33347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33348/", + "id": 33348, + "name": "The Thanos Imperative: Ignition", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-imperative-ignition/4050-33348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33350/", + "id": 33350, + "name": "Secret Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers/4050-33350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33351/", + "id": 33351, + "name": "X-Men: Blind Science", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blind-science/4050-33351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33383/", + "id": 33383, + "name": "X-Men Origins: Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-emma-frost/4050-33383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33385/", + "id": 33385, + "name": "Avengers: West Coast Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-assemble/4050-33385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33386/", + "id": 33386, + "name": "Iron Man: Armor Wars II", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-armor-wars-ii/4050-33386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33387/", + "id": 33387, + "name": "What If? Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-invasion/4050-33387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33388/", + "id": 33388, + "name": "Marvel 1602: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-spider-man/4050-33388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33398/", + "id": 33398, + "name": "Spider-Man: Death of the Stacys", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-death-of-the-stacys/4050-33398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33399/", + "id": 33399, + "name": "Spider-Man Family: Back in Black", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-back-in-black/4050-33399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33400/", + "id": 33400, + "name": "Spider-Man: Blue", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-blue/4050-33400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33401/", + "id": 33401, + "name": "Spider-Man Family: Untold Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-untold-team-ups/4050-33401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33402/", + "id": 33402, + "name": "Spider-Man Family: Itsy-Bitsy Battles", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-family-itsy-bitsy-battles/4050-33402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33403/", + "id": 33403, + "name": "Spider-Man and the Fantastic Four: Silver Rage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-silver-rage/4050-33403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33404/", + "id": 33404, + "name": "Spider-Man: The Gauntlet - Vulture and Morbius", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-vulture-and-morbius/4050-33404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33405/", + "id": 33405, + "name": "Spider-Man Noir", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir/4050-33405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33420/", + "id": 33420, + "name": "Spider-Man Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fairy-tales/4050-33420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33421/", + "id": 33421, + "name": "Spider-Man: The Short Halloween", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-short-halloween/4050-33421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33423/", + "id": 33423, + "name": "Spider-Woman: Origin", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-origin/4050-33423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33432/", + "id": 33432, + "name": "Hulk Visionaries: John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/hulk-visionaries-john-byrne/4050-33432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33446/", + "id": 33446, + "name": "Weapon X Noir", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-noir/4050-33446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33478/", + "id": 33478, + "name": "Star Team", + "site_detail_url": "https://comicvine.gamespot.com/star-team/4050-33478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33479/", + "id": 33479, + "name": "The Flintstones Christmas Party", + "site_detail_url": "https://comicvine.gamespot.com/the-flintstones-christmas-party/4050-33479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33480/", + "id": 33480, + "name": "Yogi Bear's Easter Parade", + "site_detail_url": "https://comicvine.gamespot.com/yogi-bears-easter-parade/4050-33480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33481/", + "id": 33481, + "name": "Flintstones Visits Laff-a-Lympics", + "site_detail_url": "https://comicvine.gamespot.com/flintstones-visits-laff-a-lympics/4050-33481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33482/", + "id": 33482, + "name": "The Eternals Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-eternals-annual/4050-33482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33483/", + "id": 33483, + "name": "Pizzazz", + "site_detail_url": "https://comicvine.gamespot.com/pizzazz/4050-33483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33492/", + "id": 33492, + "name": "Tales to Astonish", + "site_detail_url": "https://comicvine.gamespot.com/tales-to-astonish/4050-33492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33494/", + "id": 33494, + "name": "Time Bandits", + "site_detail_url": "https://comicvine.gamespot.com/time-bandits/4050-33494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33495/", + "id": 33495, + "name": "Avengers: Prime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime/4050-33495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33496/", + "id": 33496, + "name": "Dennis the Menace", + "site_detail_url": "https://comicvine.gamespot.com/dennis-the-menace/4050-33496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33509/", + "id": 33509, + "name": "The Thanos Imperative", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-imperative/4050-33509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33511/", + "id": 33511, + "name": "Avengers: Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/avengers-spotlight/4050-33511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33512/", + "id": 33512, + "name": "Heralds", + "site_detail_url": "https://comicvine.gamespot.com/heralds/4050-33512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33513/", + "id": 33513, + "name": "Hawkeye & Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-mockingbird/4050-33513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33514/", + "id": 33514, + "name": "Hercules: Twilight of a God", + "site_detail_url": "https://comicvine.gamespot.com/hercules-twilight-of-a-god/4050-33514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33515/", + "id": 33515, + "name": "Darkstar & The Winter Guard", + "site_detail_url": "https://comicvine.gamespot.com/darkstar-the-winter-guard/4050-33515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33516/", + "id": 33516, + "name": "Earth X", + "site_detail_url": "https://comicvine.gamespot.com/earth-x/4050-33516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33518/", + "id": 33518, + "name": "Marvel No-Prize Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-no-prize-book/4050-33518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33519/", + "id": 33519, + "name": "Marvel Tails Starring Peter Porker The Spectacular Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tails-starring-peter-porker-the-spectacular/4050-33519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33521/", + "id": 33521, + "name": "Mother Teresa of Calcutta", + "site_detail_url": "https://comicvine.gamespot.com/mother-teresa-of-calcutta/4050-33521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33522/", + "id": 33522, + "name": "The Marvel Fumetti Book", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-fumetti-book/4050-33522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33524/", + "id": 33524, + "name": "Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvels/4050-33524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33530/", + "id": 33530, + "name": "Transformers Universe", + "site_detail_url": "https://comicvine.gamespot.com/transformers-universe/4050-33530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33532/", + "id": 33532, + "name": "D.P.7 Annual", + "site_detail_url": "https://comicvine.gamespot.com/dp7-annual/4050-33532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33533/", + "id": 33533, + "name": "ALF* Comics Magazine", + "site_detail_url": "https://comicvine.gamespot.com/alf-comics-magazine/4050-33533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33535/", + "id": 33535, + "name": "House II The Second Story", + "site_detail_url": "https://comicvine.gamespot.com/house-ii-the-second-story/4050-33535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33539/", + "id": 33539, + "name": "Pinocchio and the Emperor of the Night", + "site_detail_url": "https://comicvine.gamespot.com/pinocchio-and-the-emperor-of-the-night/4050-33539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33540/", + "id": 33540, + "name": "Red Sonja: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/red-sonja-the-movie/4050-33540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33541/", + "id": 33541, + "name": "Star Brand Annual", + "site_detail_url": "https://comicvine.gamespot.com/star-brand-annual/4050-33541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33543/", + "id": 33543, + "name": "ALF* Spring Special", + "site_detail_url": "https://comicvine.gamespot.com/alf-spring-special/4050-33543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33552/", + "id": 33552, + "name": "Sense & Sensibility", + "site_detail_url": "https://comicvine.gamespot.com/sense-sensibility/4050-33552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33554/", + "id": 33554, + "name": "Iron Man: Extremis Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-extremis-directors-cut/4050-33554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33556/", + "id": 33556, + "name": "Universe X", + "site_detail_url": "https://comicvine.gamespot.com/universe-x/4050-33556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33560/", + "id": 33560, + "name": "Franken-Castle", + "site_detail_url": "https://comicvine.gamespot.com/franken-castle/4050-33560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33569/", + "id": 33569, + "name": "X-Men Forever Giant Size", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-giant-size/4050-33569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33570/", + "id": 33570, + "name": "Orson Scott Card's Ender in Exile", + "site_detail_url": "https://comicvine.gamespot.com/orson-scott-cards-ender-in-exile/4050-33570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33571/", + "id": 33571, + "name": "The Stand: Hardcases", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-hardcases/4050-33571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33574/", + "id": 33574, + "name": "The Amazing Spider-Man MGC", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-mgc/4050-33574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33575/", + "id": 33575, + "name": "Punisher: Franken-Castle - Birth of the Monster", + "site_detail_url": "https://comicvine.gamespot.com/punisher-franken-castle-birth-of-the-monster/4050-33575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33588/", + "id": 33588, + "name": "Marvel Spotlight Summer Events", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-summer-events/4050-33588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33595/", + "id": 33595, + "name": "Daily Bugle Civil War Newspaper Special", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-civil-war-newspaper-special/4050-33595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33607/", + "id": 33607, + "name": "Dark Tower: The Gunslinger Born", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-born/4050-33607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33618/", + "id": 33618, + "name": "The Rawhide Kid", + "site_detail_url": "https://comicvine.gamespot.com/the-rawhide-kid/4050-33618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33623/", + "id": 33623, + "name": "Deadpool MGC", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-mgc/4050-33623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33633/", + "id": 33633, + "name": "Avengers Academy", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy/4050-33633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33644/", + "id": 33644, + "name": "Young Allies", + "site_detail_url": "https://comicvine.gamespot.com/young-allies/4050-33644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33648/", + "id": 33648, + "name": "Dracula", + "site_detail_url": "https://comicvine.gamespot.com/dracula/4050-33648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33670/", + "id": 33670, + "name": "X-Men Forever 2", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2/4050-33670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33685/", + "id": 33685, + "name": "X-Force Oversized Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-force-oversized-edition/4050-33685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33689/", + "id": 33689, + "name": "House of M: No More Mutants", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-no-more-mutants/4050-33689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33697/", + "id": 33697, + "name": "Spider-Man, Captain America, The Incredible Hulk and Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-captain-america-the-incredible-hulk-and/4050-33697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33700/", + "id": 33700, + "name": "Dracula: Lord of the Undead", + "site_detail_url": "https://comicvine.gamespot.com/dracula-lord-of-the-undead/4050-33700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33723/", + "id": 33723, + "name": "Barbie", + "site_detail_url": "https://comicvine.gamespot.com/barbie/4050-33723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33726/", + "id": 33726, + "name": "Marvel Graphic Novel: A Sailor's Story Book II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-a-sailors-story-book-ii/4050-33726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33731/", + "id": 33731, + "name": "Marvel Graphic Novel: Ax", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-ax/4050-33731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33732/", + "id": 33732, + "name": "Marvel Graphic Novel: Cloak and Dagger and Power Pack: Shelter from the Storm", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-cloak-and-dagger-and-power-pa/4050-33732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33733/", + "id": 33733, + "name": "Kull: The Vale of Shadow", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-vale-of-shadow/4050-33733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33735/", + "id": 33735, + "name": "Marvel Graphic Novel: Rick Mason, The Agent", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-rick-mason-the-agent/4050-33735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33737/", + "id": 33737, + "name": "Marvel Graphic Novel: Roger Rabbit in The Resurrection of Doom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-roger-rabbit-in-the-resurrect/4050-33737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33738/", + "id": 33738, + "name": "The Dreamwalker", + "site_detail_url": "https://comicvine.gamespot.com/the-dreamwalker/4050-33738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33739/", + "id": 33739, + "name": "Marvel Graphic Novel: Who Framed Roger Rabbit?", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-who-framed-roger-rabbit/4050-33739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33749/", + "id": 33749, + "name": "Blade", + "site_detail_url": "https://comicvine.gamespot.com/blade/4050-33749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33750/", + "id": 33750, + "name": "Blade: Sins of the Father", + "site_detail_url": "https://comicvine.gamespot.com/blade-sins-of-the-father/4050-33750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33758/", + "id": 33758, + "name": "Rio Rides Again", + "site_detail_url": "https://comicvine.gamespot.com/rio-rides-again/4050-33758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33759/", + "id": 33759, + "name": "Conan the Rogue", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-rogue/4050-33759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33760/", + "id": 33760, + "name": "Conan the Barbarian: The Skull of Set", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-the-skull-of-set/4050-33760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33764/", + "id": 33764, + "name": "Son of Yuppies from Hell", + "site_detail_url": "https://comicvine.gamespot.com/son-of-yuppies-from-hell/4050-33764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33776/", + "id": 33776, + "name": "Amazing Spider-Man Presents: Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-black-cat/4050-33776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33777/", + "id": 33777, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4050-33777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33788/", + "id": 33788, + "name": "Marvel Requirer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-requirer/4050-33788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33793/", + "id": 33793, + "name": "Spider-Man Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-holiday-special/4050-33793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33795/", + "id": 33795, + "name": "Casper and Friends Magazine", + "site_detail_url": "https://comicvine.gamespot.com/casper-and-friends-magazine/4050-33795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33799/", + "id": 33799, + "name": "Spider-Man: The Official Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-official-movie-adaptation/4050-33799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33804/", + "id": 33804, + "name": "Blade", + "site_detail_url": "https://comicvine.gamespot.com/blade/4050-33804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33821/", + "id": 33821, + "name": "X-Men Survival Guide To The Mansion", + "site_detail_url": "https://comicvine.gamespot.com/x-men-survival-guide-to-the-mansion/4050-33821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33822/", + "id": 33822, + "name": "The History of Marvels Comics", + "site_detail_url": "https://comicvine.gamespot.com/the-history-of-marvels-comics/4050-33822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33825/", + "id": 33825, + "name": "Civil War: Fallen Son Daily Bugle Special", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fallen-son-daily-bugle-special/4050-33825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33828/", + "id": 33828, + "name": "New Avengers Director’s Cut", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-directors-cut/4050-33828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33829/", + "id": 33829, + "name": "Paradise X Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-special-edition/4050-33829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33830/", + "id": 33830, + "name": "Earth X Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-special-edition/4050-33830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33831/", + "id": 33831, + "name": "Ghost Rider Saga", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-saga/4050-33831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33832/", + "id": 33832, + "name": "Exiles Saga", + "site_detail_url": "https://comicvine.gamespot.com/exiles-saga/4050-33832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33835/", + "id": 33835, + "name": "Captain America: The Legend", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-legend/4050-33835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33836/", + "id": 33836, + "name": "Black Panther Saga", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-saga/4050-33836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33840/", + "id": 33840, + "name": "X-Infernus Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-infernus-saga/4050-33840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33841/", + "id": 33841, + "name": "X-Men/Spider-Man: Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/x-men-spider-man-savage-land/4050-33841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33843/", + "id": 33843, + "name": "Anita Blake, Vampire Hunter: Guilty Pleasures Handbook", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-guilty-pleasures-handbo/4050-33843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33844/", + "id": 33844, + "name": "Universe X Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-sketchbook/4050-33844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33845/", + "id": 33845, + "name": "The Punisher Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-saga/4050-33845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33846/", + "id": 33846, + "name": "The Invincible Iron Man Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-saga/4050-33846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33847/", + "id": 33847, + "name": "The Incredible Hulk Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-saga/4050-33847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33848/", + "id": 33848, + "name": "Spider-Woman Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-saga/4050-33848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33850/", + "id": 33850, + "name": "Marvels Comics: Thor #1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-thor-1/4050-33850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33851/", + "id": 33851, + "name": "Marvels Comics: Fantastic Four #1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-fantastic-four-1/4050-33851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33852/", + "id": 33852, + "name": "Marvels Comics: Daredevil #1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-daredevil-1/4050-33852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33853/", + "id": 33853, + "name": "Marvels Comics: Captain America #1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-comics-captain-america-1/4050-33853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33854/", + "id": 33854, + "name": "Marvel: Five Fabulous Decades of the World’s Greatest Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-five-fabulous-decades-of-the-worlds-greates/4050-33854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33856/", + "id": 33856, + "name": "Wolverine Files", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-files/4050-33856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33860/", + "id": 33860, + "name": "Marvel Chronicle: A Year by Year History", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chronicle-a-year-by-year-history/4050-33860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33867/", + "id": 33867, + "name": "New X-Men MGC", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-mgc/4050-33867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33872/", + "id": 33872, + "name": "The G.I. Joe Order Of Battle", + "site_detail_url": "https://comicvine.gamespot.com/the-gi-joe-order-of-battle/4050-33872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33873/", + "id": 33873, + "name": "Spider-Man: Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fear-itself/4050-33873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33905/", + "id": 33905, + "name": "Hero", + "site_detail_url": "https://comicvine.gamespot.com/hero/4050-33905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33907/", + "id": 33907, + "name": "Marvel Age Preview", + "site_detail_url": "https://comicvine.gamespot.com/marvel-age-preview/4050-33907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33908/", + "id": 33908, + "name": "Darkman", + "site_detail_url": "https://comicvine.gamespot.com/darkman/4050-33908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33910/", + "id": 33910, + "name": "Runaways: Teenage Wasteland", + "site_detail_url": "https://comicvine.gamespot.com/runaways-teenage-wasteland/4050-33910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33912/", + "id": 33912, + "name": "Namora", + "site_detail_url": "https://comicvine.gamespot.com/namora/4050-33912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33925/", + "id": 33925, + "name": "Captain America: Red Menace", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-menace/4050-33925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33927/", + "id": 33927, + "name": "Stan Lee Presents The Mighty Marvel Superheroes’ Cookbook", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-presents-the-mighty-marvel-superheroes-co/4050-33927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33928/", + "id": 33928, + "name": "Stan Lee’s Amazing Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/stan-lees-amazing-marvel-universe/4050-33928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33951/", + "id": 33951, + "name": "Daredevil MGC", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-mgc/4050-33951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33959/", + "id": 33959, + "name": "The Official Handbook of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-33959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33961/", + "id": 33961, + "name": "Transformers Universe", + "site_detail_url": "https://comicvine.gamespot.com/transformers-universe/4050-33961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33964/", + "id": 33964, + "name": "Franklin Richards Saga", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-saga/4050-33964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33965/", + "id": 33965, + "name": "Black Widow Saga", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-saga/4050-33965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33967/", + "id": 33967, + "name": "Dark Tower Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-sketchbook/4050-33967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33968/", + "id": 33968, + "name": "Marvel Spotlight: Dark Tower", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-dark-tower/4050-33968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33970/", + "id": 33970, + "name": "X-Factor Forever Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-forever-saga/4050-33970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33976/", + "id": 33976, + "name": "The Marvel Universe Roleplaying Game Guide To The Hulk & The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-universe-roleplaying-game-guide-to-the-/4050-33976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33977/", + "id": 33977, + "name": "Women of Marvel: Celebrating Seven Decades Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-poster-b/4050-33977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33984/", + "id": 33984, + "name": "Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-saga/4050-33984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33994/", + "id": 33994, + "name": "Funtastic World of Hanna-Barbera", + "site_detail_url": "https://comicvine.gamespot.com/funtastic-world-of-hanna-barbera/4050-33994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33997/", + "id": 33997, + "name": "Runaways: True Believers", + "site_detail_url": "https://comicvine.gamespot.com/runaways-true-believers/4050-33997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34001/", + "id": 34001, + "name": "X-Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/x-necrosha/4050-34001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34003/", + "id": 34003, + "name": "Death of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/death-of-dracula/4050-34003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34004/", + "id": 34004, + "name": "Runaways: Escape To New York", + "site_detail_url": "https://comicvine.gamespot.com/runaways-escape-to-new-york/4050-34004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34009/", + "id": 34009, + "name": "Destroyer", + "site_detail_url": "https://comicvine.gamespot.com/destroyer/4050-34009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34011/", + "id": 34011, + "name": "Hook", + "site_detail_url": "https://comicvine.gamespot.com/hook/4050-34011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34016/", + "id": 34016, + "name": "Superpro Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/superpro-special-edition/4050-34016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34017/", + "id": 34017, + "name": "NFL SuperPro Super Bowl Special", + "site_detail_url": "https://comicvine.gamespot.com/nfl-superpro-super-bowl-special/4050-34017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34019/", + "id": 34019, + "name": "Spider-Man Battles The Myth Monster", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-battles-the-myth-monster/4050-34019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34023/", + "id": 34023, + "name": "Sweet XVI", + "site_detail_url": "https://comicvine.gamespot.com/sweet-xvi/4050-34023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34028/", + "id": 34028, + "name": "The Amazing Spider-Ham Special 25th Anniversary Issue", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-ham-special-25th-anniversary-is/4050-34028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34032/", + "id": 34032, + "name": "X-Men: Curse Of The Mutants Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-saga/4050-34032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34033/", + "id": 34033, + "name": "Runaways: Parental Guidance", + "site_detail_url": "https://comicvine.gamespot.com/runaways-parental-guidance/4050-34033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34038/", + "id": 34038, + "name": "Invincible Iron Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-annual/4050-34038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34041/", + "id": 34041, + "name": "Marvel Spotlight: Captain America Remembered", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-captain-america-remembered/4050-34041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34051/", + "id": 34051, + "name": "X-Campus", + "site_detail_url": "https://comicvine.gamespot.com/x-campus/4050-34051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34060/", + "id": 34060, + "name": "New Warriors: Reality Check", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-reality-check/4050-34060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34061/", + "id": 34061, + "name": "The New Warriors: Beginnings", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-beginnings/4050-34061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34066/", + "id": 34066, + "name": "Thunderbolts: Justice Like Lightning", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-justice-like-lightning/4050-34066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34090/", + "id": 34090, + "name": "Spider-Man and the Dallas Cowboys: \"Danger in Dallas\"", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-dallas-cowboys-danger-in-dallas/4050-34090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34091/", + "id": 34091, + "name": "Spider-Man: The Real Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-real-clone-saga/4050-34091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34092/", + "id": 34092, + "name": "Cable: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/cable-homecoming/4050-34092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34093/", + "id": 34093, + "name": "Deadpool: Monkey Business", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-monkey-business/4050-34093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34101/", + "id": 34101, + "name": "Avengers: The Contest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-contest/4050-34101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34102/", + "id": 34102, + "name": "Captain Marvel: The Death of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-death-of-captain-marvel/4050-34102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34104/", + "id": 34104, + "name": "Guardians of the Galaxy: Realm of Kings", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-realm-of-kings/4050-34104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34108/", + "id": 34108, + "name": "Iron Man: Kiss and Kill", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-kiss-and-kill/4050-34108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34109/", + "id": 34109, + "name": "Captain America The 1940s Newspaper Strip", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-1940s-newspaper-strip/4050-34109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34115/", + "id": 34115, + "name": "X-Factor Visionaries: Peter David", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-visionaries-peter-david/4050-34115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34116/", + "id": 34116, + "name": "X-Factor: Invisible Woman Has Vanished", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-invisible-woman-has-vanished/4050-34116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34118/", + "id": 34118, + "name": "X-Factor: Overtime", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-overtime/4050-34118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34122/", + "id": 34122, + "name": "Atlas: Marvel Boy", + "site_detail_url": "https://comicvine.gamespot.com/atlas-marvel-boy/4050-34122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34123/", + "id": 34123, + "name": "X-Treme X-Men: Destiny", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-destiny/4050-34123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34124/", + "id": 34124, + "name": "X-Treme X-Men: Invasion", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-invasion/4050-34124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34125/", + "id": 34125, + "name": "X-Treme X-Men: Mekanix", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-mekanix/4050-34125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34126/", + "id": 34126, + "name": "X-Treme X-Men: God Loves, Man Kills", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-god-loves-man-kills/4050-34126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34127/", + "id": 34127, + "name": "X-Treme X-Men: Intifada", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-intifada/4050-34127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34129/", + "id": 34129, + "name": "X-Treme X-Men: Storm - The Arena", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-storm-the-arena/4050-34129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34130/", + "id": 34130, + "name": "X-Treme X-Men: Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-savage-land/4050-34130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34135/", + "id": 34135, + "name": "House of M: Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-uncanny-x-men/4050-34135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34136/", + "id": 34136, + "name": "Dark Reign: Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-hawkeye/4050-34136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34137/", + "id": 34137, + "name": "Spider-Man Noir: Eyes Without A Face", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir-eyes-without-a-face/4050-34137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34138/", + "id": 34138, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099/4050-34138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34139/", + "id": 34139, + "name": "Bullet Points", + "site_detail_url": "https://comicvine.gamespot.com/bullet-points/4050-34139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34142/", + "id": 34142, + "name": "Ultimate Annuals", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-annuals/4050-34142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34173/", + "id": 34173, + "name": "X-Force / Champions '98", + "site_detail_url": "https://comicvine.gamespot.com/x-force-champions-98/4050-34173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34176/", + "id": 34176, + "name": "Ultimate Hulk vs. Iron Man: Ultimate Human", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-hulk-vs-iron-man-ultimate-human/4050-34176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34180/", + "id": 34180, + "name": "Spider-Man & the Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-secret-wars/4050-34180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34181/", + "id": 34181, + "name": "Spider-Man: Anti-Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-anti-venom/4050-34181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34182/", + "id": 34182, + "name": "Avengers: I am an Avenger II", + "site_detail_url": "https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii/4050-34182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34183/", + "id": 34183, + "name": "Amazing Spider-Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-omnibus/4050-34183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34208/", + "id": 34208, + "name": "Death of Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/death-of-captain-america-omnibus/4050-34208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34221/", + "id": 34221, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-34221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34231/", + "id": 34231, + "name": "Golden Age of Marvel Comics Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/golden-age-of-marvel-comics-omnibus/4050-34231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34233/", + "id": 34233, + "name": "X-Women", + "site_detail_url": "https://comicvine.gamespot.com/x-women/4050-34233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34234/", + "id": 34234, + "name": "The Greatest Villains of the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/the-greatest-villains-of-the-fantastic-four/4050-34234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34239/", + "id": 34239, + "name": "Fantastic Four: Monsters Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-monsters-unleashed/4050-34239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34241/", + "id": 34241, + "name": "Avengers: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade/4050-34241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34243/", + "id": 34243, + "name": "Shadowland", + "site_detail_url": "https://comicvine.gamespot.com/shadowland/4050-34243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34244/", + "id": 34244, + "name": "Steve Rogers: Super Soldier", + "site_detail_url": "https://comicvine.gamespot.com/steve-rogers-super-soldier/4050-34244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34246/", + "id": 34246, + "name": "Incredible Hulk Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-omnibus/4050-34246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34247/", + "id": 34247, + "name": "Marvelman Family's Finest", + "site_detail_url": "https://comicvine.gamespot.com/marvelman-familys-finest/4050-34247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34255/", + "id": 34255, + "name": "Hit-Monkey", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey/4050-34255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34258/", + "id": 34258, + "name": "Thor: The Mighty Avenger", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-mighty-avenger/4050-34258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34260/", + "id": 34260, + "name": "Spider-Man/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four/4050-34260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34272/", + "id": 34272, + "name": "Wolverine Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-omnibus/4050-34272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34276/", + "id": 34276, + "name": "Thanos Sourcebook", + "site_detail_url": "https://comicvine.gamespot.com/thanos-sourcebook/4050-34276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34278/", + "id": 34278, + "name": "Fantastic Four Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-omnibus/4050-34278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34279/", + "id": 34279, + "name": "Tails of the Pet Avengers: The Dogs of Summer", + "site_detail_url": "https://comicvine.gamespot.com/tails-of-the-pet-avengers-the-dogs-of-summer/4050-34279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34281/", + "id": 34281, + "name": "Starlord", + "site_detail_url": "https://comicvine.gamespot.com/starlord/4050-34281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34283/", + "id": 34283, + "name": "Gravity: Big-City Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/gravity-big-city-super-hero/4050-34283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34284/", + "id": 34284, + "name": "DC/Marvel Crossover Classics", + "site_detail_url": "https://comicvine.gamespot.com/dcmarvel-crossover-classics/4050-34284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34289/", + "id": 34289, + "name": "Incredible Hercules: Assault on New Olympus", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-assault-on-new-olympus/4050-34289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34290/", + "id": 34290, + "name": "Marvel Team-Up: Master of the Ring", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-master-of-the-ring/4050-34290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34298/", + "id": 34298, + "name": "Irredeemable Ant-Man: Low-Life", + "site_detail_url": "https://comicvine.gamespot.com/irredeemable-ant-man-low-life/4050-34298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34299/", + "id": 34299, + "name": "The Ultimates Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-ultimate-collection/4050-34299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34300/", + "id": 34300, + "name": "Araña: The Heart of the Spider", + "site_detail_url": "https://comicvine.gamespot.com/arana-the-heart-of-the-spider/4050-34300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34301/", + "id": 34301, + "name": "Araña: In the Beginning", + "site_detail_url": "https://comicvine.gamespot.com/arana-in-the-beginning/4050-34301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34302/", + "id": 34302, + "name": "Araña: Night of the Hunter", + "site_detail_url": "https://comicvine.gamespot.com/arana-night-of-the-hunter/4050-34302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34307/", + "id": 34307, + "name": "Adventures in Reading Starring the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/adventures-in-reading-starring-the-amazing-spider-/4050-34307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34323/", + "id": 34323, + "name": "Scorpion: Poison Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/scorpion-poison-tomorrow/4050-34323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34324/", + "id": 34324, + "name": "Ultimates 3: Who Killed the Scarlet Witch?", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-3-who-killed-the-scarlet-witch/4050-34324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34325/", + "id": 34325, + "name": "Ultimate Iron Man Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-iron-man-ultimate-collection/4050-34325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34326/", + "id": 34326, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4050-34326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34327/", + "id": 34327, + "name": "Ultimate Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-iron-man/4050-34327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34328/", + "id": 34328, + "name": "Ultimate Iron Man II", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-iron-man-ii/4050-34328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34330/", + "id": 34330, + "name": "Daredevil Noir", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-noir/4050-34330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34331/", + "id": 34331, + "name": "Wolverine Noir", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-noir/4050-34331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34332/", + "id": 34332, + "name": "X-Men Noir", + "site_detail_url": "https://comicvine.gamespot.com/x-men-noir/4050-34332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34333/", + "id": 34333, + "name": "X-Men Noir: Mark of Cain", + "site_detail_url": "https://comicvine.gamespot.com/x-men-noir-mark-of-cain/4050-34333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34347/", + "id": 34347, + "name": "Action Force Special", + "site_detail_url": "https://comicvine.gamespot.com/action-force-special/4050-34347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34348/", + "id": 34348, + "name": "1985", + "site_detail_url": "https://comicvine.gamespot.com/1985/4050-34348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34378/", + "id": 34378, + "name": "Kid 'n Play", + "site_detail_url": "https://comicvine.gamespot.com/kid-n-play/4050-34378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34406/", + "id": 34406, + "name": "X-Men: Pixie Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/x-men-pixie-strikes-back/4050-34406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34407/", + "id": 34407, + "name": "Agents of Atlas: Vs.", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-vs/4050-34407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34411/", + "id": 34411, + "name": "X-Force: Sex & Violence", + "site_detail_url": "https://comicvine.gamespot.com/x-force-sex-violence/4050-34411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34412/", + "id": 34412, + "name": "Uncanny X-Men: The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-heroic-age/4050-34412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34414/", + "id": 34414, + "name": "World War Hulks: Captain America vs. Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks-captain-america-vs-wolverine/4050-34414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34420/", + "id": 34420, + "name": "Evel Knievel", + "site_detail_url": "https://comicvine.gamespot.com/evel-knievel/4050-34420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34424/", + "id": 34424, + "name": "X-Men Origins: Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-deadpool/4050-34424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34435/", + "id": 34435, + "name": "World War Hulks: Spider-Man vs. Thor", + "site_detail_url": "https://comicvine.gamespot.com/world-war-hulks-spider-man-vs-thor/4050-34435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34438/", + "id": 34438, + "name": "Gorilla-Man", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-man/4050-34438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34457/", + "id": 34457, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4050-34457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34465/", + "id": 34465, + "name": "Fall of the Hulks Prelude", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-prelude/4050-34465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34466/", + "id": 34466, + "name": "Eminem/Punisher", + "site_detail_url": "https://comicvine.gamespot.com/eminempunisher/4050-34466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34467/", + "id": 34467, + "name": "Exclusive Collectors' Edition: Spider-man", + "site_detail_url": "https://comicvine.gamespot.com/exclusive-collectors-edition-spider-man/4050-34467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34468/", + "id": 34468, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-34468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34469/", + "id": 34469, + "name": "Luke Cage Noir", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-noir/4050-34469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34472/", + "id": 34472, + "name": "Punisher Noir", + "site_detail_url": "https://comicvine.gamespot.com/punisher-noir/4050-34472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34474/", + "id": 34474, + "name": "Guiding Light", + "site_detail_url": "https://comicvine.gamespot.com/guiding-light/4050-34474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34475/", + "id": 34475, + "name": "Ultimate Comics Avengers: Next Generation", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-next-generation/4050-34475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34479/", + "id": 34479, + "name": "Vengeance of Moon Knight: Shock and Awe", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-moon-knight-shock-and-awe/4050-34479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34481/", + "id": 34481, + "name": "Iron Man 2: Fist Of Iron", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2-fist-of-iron/4050-34481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34482/", + "id": 34482, + "name": "Marvel's Greatest Heroes Sampler", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-heroes-sampler/4050-34482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34491/", + "id": 34491, + "name": "Marvel Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectors-edition/4050-34491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34492/", + "id": 34492, + "name": "Marvel Comics 70th Anniversary Celebration Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-70th-anniversary-celebration-magazin/4050-34492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34498/", + "id": 34498, + "name": "Marvel Special Edition Featuring Close Encounters of the Third Kind", + "site_detail_url": "https://comicvine.gamespot.com/marvel-special-edition-featuring-close-encounters-/4050-34498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34499/", + "id": 34499, + "name": "Moon Knight Special", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-special/4050-34499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34503/", + "id": 34503, + "name": "Power Pack Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-holiday-special/4050-34503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34504/", + "id": 34504, + "name": "Presidents' Day Celebration", + "site_detail_url": "https://comicvine.gamespot.com/presidents-day-celebration/4050-34504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34506/", + "id": 34506, + "name": "Nova: Realm of Kings", + "site_detail_url": "https://comicvine.gamespot.com/nova-realm-of-kings/4050-34506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34508/", + "id": 34508, + "name": "Sales To Astonish: The Comic Book, Autumn 1992", + "site_detail_url": "https://comicvine.gamespot.com/sales-to-astonish-the-comic-book-autumn-1992/4050-34508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34509/", + "id": 34509, + "name": "Sales To Astonish: The Comic Book, Summer 1992", + "site_detail_url": "https://comicvine.gamespot.com/sales-to-astonish-the-comic-book-summer-1992/4050-34509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34517/", + "id": 34517, + "name": "Sex, Lies, and Mutual Funds of the Yuppies From Hell", + "site_detail_url": "https://comicvine.gamespot.com/sex-lies-and-mutual-funds-of-the-yuppies-from-hell/4050-34517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34518/", + "id": 34518, + "name": "The Shadow", + "site_detail_url": "https://comicvine.gamespot.com/the-shadow/4050-34518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34520/", + "id": 34520, + "name": "Spider-Man and Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack/4050-34520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34521/", + "id": 34521, + "name": "Spider-Man, Fire-Star and Iceman", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fire-star-and-iceman/4050-34521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34524/", + "id": 34524, + "name": "Super Heroes Puzzles and Games", + "site_detail_url": "https://comicvine.gamespot.com/super-heroes-puzzles-and-games/4050-34524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34525/", + "id": 34525, + "name": "Sweet XVI Back to School Special", + "site_detail_url": "https://comicvine.gamespot.com/sweet-xvi-back-to-school-special/4050-34525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34526/", + "id": 34526, + "name": "Thor Visionaries: Walter Simonson", + "site_detail_url": "https://comicvine.gamespot.com/thor-visionaries-walter-simonson/4050-34526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34528/", + "id": 34528, + "name": "Invincible Iron Man: Stark Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-stark-disassembled/4050-34528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34531/", + "id": 34531, + "name": "Wolverine: Carni-Brawl", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-carni-brawl/4050-34531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34533/", + "id": 34533, + "name": "Nova: War of Kings", + "site_detail_url": "https://comicvine.gamespot.com/nova-war-of-kings/4050-34533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34543/", + "id": 34543, + "name": "Halo: Blood Line", + "site_detail_url": "https://comicvine.gamespot.com/halo-blood-line/4050-34543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34593/", + "id": 34593, + "name": "Lady Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/lady-deadpool/4050-34593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34595/", + "id": 34595, + "name": "Civil War: Peter Parker, Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-peter-parker-spider-man/4050-34595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34596/", + "id": 34596, + "name": "Alpha Flight: You Gotta Be Kiddin' Me!", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-you-gotta-be-kiddin-me/4050-34596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34597/", + "id": 34597, + "name": "Alpha Flight: Waxing Poetic", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-waxing-poetic/4050-34597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34598/", + "id": 34598, + "name": "Bullseye: Greatest Hits", + "site_detail_url": "https://comicvine.gamespot.com/bullseye-greatest-hits/4050-34598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34599/", + "id": 34599, + "name": "D.P.7 Classic", + "site_detail_url": "https://comicvine.gamespot.com/dp7-classic/4050-34599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34600/", + "id": 34600, + "name": "Essential Luke Cage, Power Man", + "site_detail_url": "https://comicvine.gamespot.com/essential-luke-cage-power-man/4050-34600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34603/", + "id": 34603, + "name": "X-Men: Phoenix Force Handbook", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-force-handbook/4050-34603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34608/", + "id": 34608, + "name": "Marvelman Classic Primer", + "site_detail_url": "https://comicvine.gamespot.com/marvelman-classic-primer/4050-34608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34609/", + "id": 34609, + "name": "Eternals: To Slay a God", + "site_detail_url": "https://comicvine.gamespot.com/eternals-to-slay-a-god/4050-34609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34623/", + "id": 34623, + "name": "Richie Rich", + "site_detail_url": "https://comicvine.gamespot.com/richie-rich/4050-34623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34653/", + "id": 34653, + "name": "Ultimate Mystery", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-mystery/4050-34653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34669/", + "id": 34669, + "name": "Heroic Age Magazine", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-magazine/4050-34669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34680/", + "id": 34680, + "name": "Fantastic Four Visionaries: George Pérez", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez/4050-34680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34682/", + "id": 34682, + "name": "House of M: Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-incredible-hulk/4050-34682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34683/", + "id": 34683, + "name": "Iron Man/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/iron-mancaptain-america/4050-34683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34685/", + "id": 34685, + "name": "Halo Wars Genesis", + "site_detail_url": "https://comicvine.gamespot.com/halo-wars-genesis/4050-34685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34686/", + "id": 34686, + "name": "Moon Knight: Divided We Fall", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-divided-we-fall/4050-34686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34718/", + "id": 34718, + "name": "Shadowland: Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-bullseye/4050-34718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34724/", + "id": 34724, + "name": "Marvel Universe vs. The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher/4050-34724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34725/", + "id": 34725, + "name": "New Mutants Forever", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-forever/4050-34725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34730/", + "id": 34730, + "name": "Spitfire", + "site_detail_url": "https://comicvine.gamespot.com/spitfire/4050-34730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34736/", + "id": 34736, + "name": "Thor: The Rage of Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-rage-of-thor/4050-34736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34741/", + "id": 34741, + "name": "Daredevil Black & White", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-black-white/4050-34741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34746/", + "id": 34746, + "name": "Silver Surfer: Rebirth of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-rebirth-of-thanos/4050-34746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34748/", + "id": 34748, + "name": "X-Men: S.W.O.R.D. - No Time To Breathe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-sword-no-time-to-breathe/4050-34748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34749/", + "id": 34749, + "name": "Fall of the Hulks: Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-red-hulk/4050-34749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34755/", + "id": 34755, + "name": "Fall of the Hulks: The Savage She-Hulks", + "site_detail_url": "https://comicvine.gamespot.com/fall-of-the-hulks-the-savage-she-hulks/4050-34755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34757/", + "id": 34757, + "name": "Marvel Masterworks: Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-daredevil/4050-34757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34760/", + "id": 34760, + "name": "Marvel Masterworks: Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-doctor-strange/4050-34760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34761/", + "id": 34761, + "name": "Captain America: Forever Allies", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-forever-allies/4050-34761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34765/", + "id": 34765, + "name": "Iron Man: Deadly Solutions", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-deadly-solutions/4050-34765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34766/", + "id": 34766, + "name": "Iron Man: The End", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-end/4050-34766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34767/", + "id": 34767, + "name": "Lockjaw and the Pet Avengers", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers/4050-34767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34768/", + "id": 34768, + "name": "Young Avengers Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-ultimate-collection/4050-34768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34783/", + "id": 34783, + "name": "Marvel Masterworks: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-captain-marvel/4050-34783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34791/", + "id": 34791, + "name": "Marvel Masterworks: The Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-silver-surfer/4050-34791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34794/", + "id": 34794, + "name": "Silver Surfer Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-omnibus/4050-34794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34795/", + "id": 34795, + "name": "Captain America: Two Americas", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-two-americas/4050-34795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34796/", + "id": 34796, + "name": "Secret Warriors: Wake the Beast", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-wake-the-beast/4050-34796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34833/", + "id": 34833, + "name": "X-Force: New Beginning", + "site_detail_url": "https://comicvine.gamespot.com/x-force-new-beginning/4050-34833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34834/", + "id": 34834, + "name": "X-Force: Final Chapter", + "site_detail_url": "https://comicvine.gamespot.com/x-force-final-chapter/4050-34834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34836/", + "id": 34836, + "name": "Marvel Masterworks: Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-inhumans/4050-34836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34839/", + "id": 34839, + "name": "Namor: The First Mutant", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-first-mutant/4050-34839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34854/", + "id": 34854, + "name": "Shadowland: Blood On the Streets", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-blood-on-the-streets/4050-34854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34872/", + "id": 34872, + "name": "The Marvels Project: Birth of the Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-project-birth-of-the-super-heroes/4050-34872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34885/", + "id": 34885, + "name": "Giant-Size Avengers/Invaders", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-avengersinvaders/4050-34885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34890/", + "id": 34890, + "name": "Pet Avengers Classic", + "site_detail_url": "https://comicvine.gamespot.com/pet-avengers-classic/4050-34890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34944/", + "id": 34944, + "name": "Incredible Hulk: Fall of the Hulks", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-fall-of-the-hulks/4050-34944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34959/", + "id": 34959, + "name": "X-Men: Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/x-men-days-of-future-past/4050-34959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34960/", + "id": 34960, + "name": "Uncanny X-Men in Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-in-days-of-future-past/4050-34960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34967/", + "id": 34967, + "name": "Tales of the Marvels: Inner Demons", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-marvels-inner-demons/4050-34967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34976/", + "id": 34976, + "name": "Shadowland: Daughters of the Shadow", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-daughters-of-the-shadow/4050-34976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34978/", + "id": 34978, + "name": "Shadowland: Power Man", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-power-man/4050-34978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35001/", + "id": 35001, + "name": "Avengers and the Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet/4050-35001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35012/", + "id": 35012, + "name": "Conan: Death Covered in Gold", + "site_detail_url": "https://comicvine.gamespot.com/conan-death-covered-in-gold/4050-35012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35023/", + "id": 35023, + "name": "S.H.I.E.L.D. Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/shield-directors-cut/4050-35023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35026/", + "id": 35026, + "name": "Siege: Embedded", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded/4050-35026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35041/", + "id": 35041, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4050-35041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35046/", + "id": 35046, + "name": "Spider-Man: The Gauntlet - Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-juggernaut/4050-35046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35048/", + "id": 35048, + "name": "Siege: Avengers: The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/siege-avengers-the-initiative/4050-35048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35051/", + "id": 35051, + "name": "X-Factor: Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-second-coming/4050-35051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35052/", + "id": 35052, + "name": "Daredevil: The Devil's Hand", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-devils-hand/4050-35052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35053/", + "id": 35053, + "name": "X-Men: Powerless!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-powerless/4050-35053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35058/", + "id": 35058, + "name": "X-Statix", + "site_detail_url": "https://comicvine.gamespot.com/x-statix/4050-35058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35059/", + "id": 35059, + "name": "X-Statix Presents: Dead Girl", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-presents-dead-girl/4050-35059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35073/", + "id": 35073, + "name": "Disney's The Three Musketeers", + "site_detail_url": "https://comicvine.gamespot.com/disneys-the-three-musketeers/4050-35073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35079/", + "id": 35079, + "name": "Hyperkind Unleashed!", + "site_detail_url": "https://comicvine.gamespot.com/hyperkind-unleashed/4050-35079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35092/", + "id": 35092, + "name": "Marvel Masterworks: Defenders", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-defenders/4050-35092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35104/", + "id": 35104, + "name": "X-Men: Curse of the Mutants - Storm & Gambit", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-storm-gambit/4050-35104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35108/", + "id": 35108, + "name": "X-Men: Curse of the Mutants - Blade", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-blade/4050-35108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35109/", + "id": 35109, + "name": "Shadowland: Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-moon-knight/4050-35109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35111/", + "id": 35111, + "name": "Spider-Girl: The End!", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-end/4050-35111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35122/", + "id": 35122, + "name": "All-New Wolverine Saga", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-saga/4050-35122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35129/", + "id": 35129, + "name": "Thunderbolts By Warren Ellis: Faith In Monsters", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-faith-in-monsters/4050-35129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35130/", + "id": 35130, + "name": "Runaways: Live Fast", + "site_detail_url": "https://comicvine.gamespot.com/runaways-live-fast/4050-35130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35131/", + "id": 35131, + "name": "Avengers: The Search for She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-search-for-she-hulk/4050-35131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35132/", + "id": 35132, + "name": "Avengers: Vision and the Scarlet Witch: A Year In the Life", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vision-and-the-scarlet-witch-a-year-in-th/4050-35132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35135/", + "id": 35135, + "name": "X-Men: Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/x-men-crossroads/4050-35135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35140/", + "id": 35140, + "name": "Women of Marvel: Celebrating Seven Decades Handbook", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-handbook/4050-35140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35142/", + "id": 35142, + "name": "Women of Marvel: Celebrating Seven Decades", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades/4050-35142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35148/", + "id": 35148, + "name": "Conan: The Ravagers Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-ravagers-out-of-time/4050-35148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35149/", + "id": 35149, + "name": "Fight Man", + "site_detail_url": "https://comicvine.gamespot.com/fight-man/4050-35149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35150/", + "id": 35150, + "name": "Ghost Rider/Captain America: Fear", + "site_detail_url": "https://comicvine.gamespot.com/ghost-ridercaptain-america-fear/4050-35150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35153/", + "id": 35153, + "name": "Marvel Preview '93", + "site_detail_url": "https://comicvine.gamespot.com/marvel-preview-93/4050-35153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35154/", + "id": 35154, + "name": "Meteor Man: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/meteor-man-the-movie/4050-35154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35155/", + "id": 35155, + "name": "Pilgrim's Progress", + "site_detail_url": "https://comicvine.gamespot.com/pilgrims-progress/4050-35155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35156/", + "id": 35156, + "name": "Quasar Special", + "site_detail_url": "https://comicvine.gamespot.com/quasar-special/4050-35156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35157/", + "id": 35157, + "name": "Ren & Stimpy Show Halloween Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/ren-stimpy-show-halloween-special-edition/4050-35157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35158/", + "id": 35158, + "name": "The Savage Return of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/the-savage-return-of-dracula/4050-35158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35161/", + "id": 35161, + "name": "The Life of Groo", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-groo/4050-35161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35162/", + "id": 35162, + "name": "Transformers Generation 2 Halloween Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/transformers-generation-2-halloween-special-editio/4050-35162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35163/", + "id": 35163, + "name": "The Wedding of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/the-wedding-of-dracula/4050-35163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35164/", + "id": 35164, + "name": "Invaders: Eve of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/invaders-eve-of-destruction/4050-35164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35166/", + "id": 35166, + "name": "The Ultimates 2 Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-2-ultimate-collection/4050-35166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35184/", + "id": 35184, + "name": "Deadpool Team-Up: Good Buddies", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-team-up-good-buddies/4050-35184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35185/", + "id": 35185, + "name": "Amazing Spider-Man Presents: Jackpot", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-presents-jackpot/4050-35185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35186/", + "id": 35186, + "name": "Marvel Masterworks: Golden Age Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-captain-america/4050-35186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35187/", + "id": 35187, + "name": "Marvel Masterworks: Golden Age Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-marvel-comics/4050-35187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35188/", + "id": 35188, + "name": "Marvel Masterworks: The Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner/4050-35188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35189/", + "id": 35189, + "name": "Marvel Masterworks: Golden Age Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-sub-mariner/4050-35189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35190/", + "id": 35190, + "name": "Startling Stories: Banner", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-banner/4050-35190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35196/", + "id": 35196, + "name": "Marvel Masterworks: The Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man/4050-35196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35197/", + "id": 35197, + "name": "Marvel Masterworks: The Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four/4050-35197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35205/", + "id": 35205, + "name": "Marvel Masterworks: The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-mighty-thor/4050-35205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35207/", + "id": 35207, + "name": "Marvel Masterworks: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-captain-america/4050-35207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35208/", + "id": 35208, + "name": "Marvel Masterworks: Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-deathlok/4050-35208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35209/", + "id": 35209, + "name": "Marvel Masterworks: The Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-human-torch/4050-35209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35210/", + "id": 35210, + "name": "Marvel Masterworks: The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk/4050-35210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35211/", + "id": 35211, + "name": "Marvel Masterworks: Nick Fury, Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield/4050-35211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35213/", + "id": 35213, + "name": "Marvel Masterworks: The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-x-men/4050-35213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35214/", + "id": 35214, + "name": "Marvel Masterworks: Warlock", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-warlock/4050-35214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35239/", + "id": 35239, + "name": "Barbie Halloween Special", + "site_detail_url": "https://comicvine.gamespot.com/barbie-halloween-special/4050-35239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35241/", + "id": 35241, + "name": "Heavy Hitters Annual", + "site_detail_url": "https://comicvine.gamespot.com/heavy-hitters-annual/4050-35241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35243/", + "id": 35243, + "name": "Namorita", + "site_detail_url": "https://comicvine.gamespot.com/namorita/4050-35243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35246/", + "id": 35246, + "name": "Punisher Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/punisher-anniversary-magazine/4050-35246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35247/", + "id": 35247, + "name": "Captain America: Drug War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-drug-war/4050-35247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35248/", + "id": 35248, + "name": "Ren & Stimpy Show Special Powdered Toastman", + "site_detail_url": "https://comicvine.gamespot.com/ren-stimpy-show-special-powdered-toastman/4050-35248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35249/", + "id": 35249, + "name": "Screwtape Letters", + "site_detail_url": "https://comicvine.gamespot.com/screwtape-letters/4050-35249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35250/", + "id": 35250, + "name": "Ren and Stimpy Show Special", + "site_detail_url": "https://comicvine.gamespot.com/ren-and-stimpy-show-special/4050-35250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35263/", + "id": 35263, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-35263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35271/", + "id": 35271, + "name": "I am An Avenger", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger/4050-35271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35274/", + "id": 35274, + "name": "Shadowland: Elektra", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-elektra/4050-35274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35275/", + "id": 35275, + "name": "Deadpool Pulp", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-pulp/4050-35275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35277/", + "id": 35277, + "name": "Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster/4050-35277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35279/", + "id": 35279, + "name": "Wolverine: The Road to Hell", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-road-to-hell/4050-35279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35292/", + "id": 35292, + "name": "X-Men: Curse of the Mutants - Smoke and Blood", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-smoke-and-blood/4050-35292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35303/", + "id": 35303, + "name": "Incredible Hulks", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks/4050-35303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35308/", + "id": 35308, + "name": "Origins of Marvel Comics: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics-x-men/4050-35308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35315/", + "id": 35315, + "name": "Uncanny X-Men: The Coming of Bishop", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-coming-of-bishop/4050-35315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35316/", + "id": 35316, + "name": "X-Men: Legionquest", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legionquest/4050-35316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35317/", + "id": 35317, + "name": "X-Men: Dawn of the Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-dawn-of-the-age-of-apocalypse/4050-35317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35318/", + "id": 35318, + "name": "Prelude to Deadpool Corps", + "site_detail_url": "https://comicvine.gamespot.com/prelude-to-deadpool-corps/4050-35318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35319/", + "id": 35319, + "name": "X-Babies: Stars Reborn", + "site_detail_url": "https://comicvine.gamespot.com/x-babies-stars-reborn/4050-35319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35334/", + "id": 35334, + "name": "X-Men: We Are the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men-we-are-the-x-men/4050-35334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35335/", + "id": 35335, + "name": "Heroic Age: One Month To Live", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-one-month-to-live/4050-35335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35338/", + "id": 35338, + "name": "Marvelman Classic", + "site_detail_url": "https://comicvine.gamespot.com/marvelman-classic/4050-35338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35340/", + "id": 35340, + "name": "War of Kings: Warriors", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-warriors/4050-35340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35341/", + "id": 35341, + "name": "The Pulse: Thin Air", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-thin-air/4050-35341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35342/", + "id": 35342, + "name": "The Pulse: Secret War", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-secret-war/4050-35342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35343/", + "id": 35343, + "name": "The Pulse: Fear", + "site_detail_url": "https://comicvine.gamespot.com/the-pulse-fear/4050-35343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35345/", + "id": 35345, + "name": "Siege: Thor", + "site_detail_url": "https://comicvine.gamespot.com/siege-thor/4050-35345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35346/", + "id": 35346, + "name": "Realm of Kings", + "site_detail_url": "https://comicvine.gamespot.com/realm-of-kings/4050-35346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35354/", + "id": 35354, + "name": "Iron Man 2: Agents of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2-agents-of-shield/4050-35354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35397/", + "id": 35397, + "name": "Elektra: The Hand", + "site_detail_url": "https://comicvine.gamespot.com/elektra-the-hand/4050-35397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35401/", + "id": 35401, + "name": "Astonishing X-Men: Xenogenesis Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-xenogenesis-directors-cut/4050-35401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35402/", + "id": 35402, + "name": "New Avengers: Siege", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-siege/4050-35402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35409/", + "id": 35409, + "name": "Daken: Dark Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine/4050-35409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35415/", + "id": 35415, + "name": "The Amazing Spider-Man by JMS Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection/4050-35415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35423/", + "id": 35423, + "name": "Invaders Now!", + "site_detail_url": "https://comicvine.gamespot.com/invaders-now/4050-35423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35441/", + "id": 35441, + "name": "Squadron Supreme: New World Order", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-new-world-order/4050-35441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35442/", + "id": 35442, + "name": "Squadron Supreme: Death of a Universe", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-death-of-a-universe/4050-35442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35443/", + "id": 35443, + "name": "Incredible Hulk: Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-dogs-of-war/4050-35443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35444/", + "id": 35444, + "name": "Incredible Hulk: Return of the Monster", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-return-of-the-monster/4050-35444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35445/", + "id": 35445, + "name": "Incredible Hulk: Boiling Point", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-boiling-point/4050-35445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35446/", + "id": 35446, + "name": "Incredible Hulk: Transfer of Power", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-transfer-of-power/4050-35446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35470/", + "id": 35470, + "name": "Marvel Spotlight: The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-the-amazing-spider-man/4050-35470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35493/", + "id": 35493, + "name": "Daredevil: The Fall of The Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-fall-of-the-kingpin/4050-35493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35496/", + "id": 35496, + "name": "X-23", + "site_detail_url": "https://comicvine.gamespot.com/x-23/4050-35496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35497/", + "id": 35497, + "name": "The Heroic Age: Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-super-heroes/4050-35497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35499/", + "id": 35499, + "name": "Shadowland: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-ghost-rider/4050-35499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35507/", + "id": 35507, + "name": "Incredible Hulks: Enigma Force", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-enigma-force/4050-35507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35508/", + "id": 35508, + "name": "Thor: First Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-first-thunder/4050-35508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35510/", + "id": 35510, + "name": "Captain America: Patriot", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-patriot/4050-35510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35533/", + "id": 35533, + "name": "Incredible Hulk: Abominable", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-abominable/4050-35533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35534/", + "id": 35534, + "name": "Incredible Hulk: Hide in Plain Sight", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-hide-in-plain-sight/4050-35534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35535/", + "id": 35535, + "name": "Incredible Hulk: Split Decisions", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-split-decisions/4050-35535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35536/", + "id": 35536, + "name": "Incredible Hulk: Dead Like Me", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-dead-like-me/4050-35536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35537/", + "id": 35537, + "name": "Incredible Hulk: Big Things", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-big-things/4050-35537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35538/", + "id": 35538, + "name": "Incredible Hulk: Tempest Fugit", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-tempest-fugit/4050-35538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35539/", + "id": 35539, + "name": "Moon Knight: Countdown to Dark", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-countdown-to-dark/4050-35539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35540/", + "id": 35540, + "name": "Halo: Fall of Reach - Boot Camp", + "site_detail_url": "https://comicvine.gamespot.com/halo-fall-of-reach-boot-camp/4050-35540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35543/", + "id": 35543, + "name": "X-Men: Inferno Crossovers", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno-crossovers/4050-35543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35544/", + "id": 35544, + "name": "Avengers: Lionheart of Avalon", + "site_detail_url": "https://comicvine.gamespot.com/avengers-lionheart-of-avalon/4050-35544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35545/", + "id": 35545, + "name": "Civil War: Front Line, Book One", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-book-one/4050-35545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35546/", + "id": 35546, + "name": "Civil War: Front Line, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line-book-two/4050-35546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35547/", + "id": 35547, + "name": "The Torch", + "site_detail_url": "https://comicvine.gamespot.com/the-torch/4050-35547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35563/", + "id": 35563, + "name": "Gunslingers", + "site_detail_url": "https://comicvine.gamespot.com/gunslingers/4050-35563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35567/", + "id": 35567, + "name": "Seeker 3000 Premiere", + "site_detail_url": "https://comicvine.gamespot.com/seeker-3000-premiere/4050-35567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35568/", + "id": 35568, + "name": "Marvel Masterworks: Golden Age Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-human-torch/4050-35568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35579/", + "id": 35579, + "name": "Siege: Battlefield", + "site_detail_url": "https://comicvine.gamespot.com/siege-battlefield/4050-35579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35588/", + "id": 35588, + "name": "Siege: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/siege-x-men/4050-35588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35589/", + "id": 35589, + "name": "Siege: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/siege-thunderbolts/4050-35589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35591/", + "id": 35591, + "name": "Siege: Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/siege-dark-avengers/4050-35591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35592/", + "id": 35592, + "name": "Siege: Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/siege-mighty-avengers/4050-35592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35595/", + "id": 35595, + "name": "Ultimate X-Men: The Tomorrow People", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-the-tomorrow-people/4050-35595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35596/", + "id": 35596, + "name": "Ultimate X-Men: Return to Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-return-to-weapon-x/4050-35596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35597/", + "id": 35597, + "name": "Ultimate X-Men: World Tour", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-world-tour/4050-35597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35598/", + "id": 35598, + "name": "Ultimate X-Men: Hellfire and Brimstone", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-hellfire-and-brimstone/4050-35598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35610/", + "id": 35610, + "name": "Ultimate X-Men: Ultimate War", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-ultimate-war/4050-35610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35611/", + "id": 35611, + "name": "Ultimate X-Men: Return of the King", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-return-of-the-king/4050-35611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35612/", + "id": 35612, + "name": "Ultimate X-Men: Blockbuster", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-blockbuster/4050-35612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35613/", + "id": 35613, + "name": "Ultimate X-Men: New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-new-mutants/4050-35613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35614/", + "id": 35614, + "name": "Ultimate X-Men: The Tempest", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-the-tempest/4050-35614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35615/", + "id": 35615, + "name": "Ultimate X-Men: Cry Wolf", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-cry-wolf/4050-35615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35616/", + "id": 35616, + "name": "Ultimate X-Men: The Most Dangerous Game", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-the-most-dangerous-game/4050-35616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35623/", + "id": 35623, + "name": "What If Aunt May Had Died Instead of Uncle Ben?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-aunt-may-had-died-instead-of-uncle-ben/4050-35623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35627/", + "id": 35627, + "name": "Ultimate X-Men: Hard Lessons", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-hard-lessons/4050-35627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35628/", + "id": 35628, + "name": "Ultimate X-Men: Magnetic North", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-magnetic-north/4050-35628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35629/", + "id": 35629, + "name": "Ultimate X-Men: Phoenix?", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-phoenix/4050-35629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35630/", + "id": 35630, + "name": "Ultimate X-Men: Magical", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-magical/4050-35630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35632/", + "id": 35632, + "name": "Ultimate X-Men: Cable", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-cable/4050-35632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35633/", + "id": 35633, + "name": "Ultimate X-Men: Sentinels", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-sentinels/4050-35633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35634/", + "id": 35634, + "name": "Ultimate X-Men: Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-apocalypse/4050-35634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35635/", + "id": 35635, + "name": "Ultimate X-Men: Absolute Power", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-absolute-power/4050-35635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35637/", + "id": 35637, + "name": "Gold Bug", + "site_detail_url": "https://comicvine.gamespot.com/gold-bug/4050-35637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35641/", + "id": 35641, + "name": "House of M: World of M Featuring Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-world-of-m-featuring-wolverine/4050-35641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35652/", + "id": 35652, + "name": "Powerless", + "site_detail_url": "https://comicvine.gamespot.com/powerless/4050-35652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35653/", + "id": 35653, + "name": "House of M Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-directors-cut/4050-35653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35654/", + "id": 35654, + "name": "Black Panther: Civil War - War Crimes", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-civil-war-war-crimes/4050-35654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35655/", + "id": 35655, + "name": "Hulk and Power Pack: Pack Smash!", + "site_detail_url": "https://comicvine.gamespot.com/hulk-and-power-pack-pack-smash/4050-35655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35656/", + "id": 35656, + "name": "Captain America and The Campbell Kids", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-campbell-kids/4050-35656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35658/", + "id": 35658, + "name": "Thor: The Mighty Avenger - Double Rainbow", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-mighty-avenger-double-rainbow/4050-35658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35659/", + "id": 35659, + "name": "Marvel Super Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-special/4050-35659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35662/", + "id": 35662, + "name": "Hulk vs Thing", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-thing/4050-35662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35679/", + "id": 35679, + "name": "X-Men: Age of Apocalypse One Shot", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-apocalypse-one-shot/4050-35679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35680/", + "id": 35680, + "name": "Spider-Man: Fever", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fever/4050-35680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35703/", + "id": 35703, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4050-35703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35716/", + "id": 35716, + "name": "X-Men: Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/x-men-second-coming/4050-35716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35725/", + "id": 35725, + "name": "X-Men: Curse of the Mutants - X-Men Vs. Vampires", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-x-men-vs-vampires/4050-35725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35734/", + "id": 35734, + "name": "Psi-Force Classic", + "site_detail_url": "https://comicvine.gamespot.com/psi-force-classic/4050-35734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35735/", + "id": 35735, + "name": "Newuniversal: Everything Went White", + "site_detail_url": "https://comicvine.gamespot.com/newuniversal-everything-went-white/4050-35735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35736/", + "id": 35736, + "name": "Avengers: Once an Invader", + "site_detail_url": "https://comicvine.gamespot.com/avengers-once-an-invader/4050-35736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35737/", + "id": 35737, + "name": "Deadpool: Merc With a Mouth: Head Trip", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-merc-with-a-mouth-head-trip/4050-35737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35738/", + "id": 35738, + "name": "Spider-Man: The Gauntlet: Lizard", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-gauntlet-lizard/4050-35738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35740/", + "id": 35740, + "name": "Heralds", + "site_detail_url": "https://comicvine.gamespot.com/heralds/4050-35740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35743/", + "id": 35743, + "name": "Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie/4050-35743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35759/", + "id": 35759, + "name": "Nova: Nova Corps", + "site_detail_url": "https://comicvine.gamespot.com/nova-nova-corps/4050-35759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35764/", + "id": 35764, + "name": "Nova: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/nova-secret-invasion/4050-35764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35765/", + "id": 35765, + "name": "Nova: Knowhere", + "site_detail_url": "https://comicvine.gamespot.com/nova-knowhere/4050-35765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35767/", + "id": 35767, + "name": "Wolverine: The Brotherhood", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-brotherhood/4050-35767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35768/", + "id": 35768, + "name": "Iron Man Noir", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-noir/4050-35768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35769/", + "id": 35769, + "name": "Avengers: Under Siege", + "site_detail_url": "https://comicvine.gamespot.com/avengers-under-siege/4050-35769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35776/", + "id": 35776, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4050-35776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35781/", + "id": 35781, + "name": "Ultimate Spider-Man: Power and Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-power-and-responsibility/4050-35781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35782/", + "id": 35782, + "name": "Ultimate Spider-Man: Learning Curve", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-learning-curve/4050-35782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35783/", + "id": 35783, + "name": "Ultimate Spider-Man: Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-double-trouble/4050-35783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35784/", + "id": 35784, + "name": "Ultimate Spider-Man: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-legacy/4050-35784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35795/", + "id": 35795, + "name": "Ultimate Spider-Man: Public Scrutiny", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-public-scrutiny/4050-35795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35802/", + "id": 35802, + "name": "Ultimate Spider-Man: Venom", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-venom/4050-35802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35803/", + "id": 35803, + "name": "Ultimate Spider-Man: Irresponsible", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-irresponsible/4050-35803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35804/", + "id": 35804, + "name": "Ultimate Spider-Man: Cats and Kings", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-cats-and-kings/4050-35804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35829/", + "id": 35829, + "name": "Fantastic Four in...Ataque del M.O.D.O.K.!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-inataque-del-modok/4050-35829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35835/", + "id": 35835, + "name": "Uncanny X-Force", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force/4050-35835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35839/", + "id": 35839, + "name": "X-Force: Famous, Mutant & Mortal", + "site_detail_url": "https://comicvine.gamespot.com/x-force-famous-mutant-mortal/4050-35839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35848/", + "id": 35848, + "name": "Klaws of the Panther", + "site_detail_url": "https://comicvine.gamespot.com/klaws-of-the-panther/4050-35848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35874/", + "id": 35874, + "name": "Shadowland: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-spider-man/4050-35874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35876/", + "id": 35876, + "name": "Spider-Man: Back In Quack", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-back-in-quack/4050-35876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35877/", + "id": 35877, + "name": "Chaos War", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war/4050-35877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35878/", + "id": 35878, + "name": "Tron: Betrayal", + "site_detail_url": "https://comicvine.gamespot.com/tron-betrayal/4050-35878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35917/", + "id": 35917, + "name": "New Avengers: Luke Cage: Town Without Pity", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-luke-cage-town-without-pity/4050-35917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35918/", + "id": 35918, + "name": "Civil War: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-avengers/4050-35918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35919/", + "id": 35919, + "name": "Ultimate Thor", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-thor/4050-35919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35930/", + "id": 35930, + "name": "Girl Comics", + "site_detail_url": "https://comicvine.gamespot.com/girl-comics/4050-35930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35932/", + "id": 35932, + "name": "Wolverine: Coyote Crossing", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-coyote-crossing/4050-35932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35933/", + "id": 35933, + "name": "Wolverine: Return of the Native", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-return-of-the-native/4050-35933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35934/", + "id": 35934, + "name": "The New Invaders: To End All Wars", + "site_detail_url": "https://comicvine.gamespot.com/the-new-invaders-to-end-all-wars/4050-35934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35935/", + "id": 35935, + "name": "Ultimate Spider-Man: Ultimate Six", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-six/4050-35935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35936/", + "id": 35936, + "name": "Ultimate Spider-Man: Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hollywood/4050-35936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35938/", + "id": 35938, + "name": "Ultimate Spider-Man: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-carnage/4050-35938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35940/", + "id": 35940, + "name": "Ultimate Spider-Man: Superstars", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-superstars/4050-35940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35943/", + "id": 35943, + "name": "Ultimate Spider-Man: Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-hobgoblin/4050-35943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35945/", + "id": 35945, + "name": "Ultimate Spider-Man: Warriors", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-warriors/4050-35945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35946/", + "id": 35946, + "name": "Ultimate Spider-Man: Silver Sable", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-silver-sable/4050-35946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35947/", + "id": 35947, + "name": "Ultimate Spider-Man: Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-deadpool/4050-35947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35948/", + "id": 35948, + "name": "Ultimate Spider-Man: Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-clone-saga/4050-35948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35949/", + "id": 35949, + "name": "Ultimate Spider-Man: Ultimate Knights", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimate-knights/4050-35949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35950/", + "id": 35950, + "name": "Ultimate Spider-Man: Death of A Goblin", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-death-of-a-goblin/4050-35950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35951/", + "id": 35951, + "name": "Ultimate Spider-Man: And His Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-and-his-amazing-friends/4050-35951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35952/", + "id": 35952, + "name": "Ultimate Spider-Man: War of the Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-war-of-the-symbiotes/4050-35952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35953/", + "id": 35953, + "name": "Ultimate Spider-Man: Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-ultimatum/4050-35953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35956/", + "id": 35956, + "name": "Marvel Romance Redux: Guys & Dolls", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance-redux-guys-dolls/4050-35956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35967/", + "id": 35967, + "name": "Exiles: Down the Rabbit Hole", + "site_detail_url": "https://comicvine.gamespot.com/exiles-down-the-rabbit-hole/4050-35967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35968/", + "id": 35968, + "name": "Exiles: A World Apart", + "site_detail_url": "https://comicvine.gamespot.com/exiles-a-world-apart/4050-35968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35977/", + "id": 35977, + "name": "Annie Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/annie-treasury-edition/4050-35977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36003/", + "id": 36003, + "name": "Age of Apocalypse: Generation Next", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse-generation-next/4050-36003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36036/", + "id": 36036, + "name": "Tomb Of Terror", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-terror/4050-36036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36045/", + "id": 36045, + "name": "X-Men: Second Coming Revelations", + "site_detail_url": "https://comicvine.gamespot.com/x-men-second-coming-revelations/4050-36045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36111/", + "id": 36111, + "name": "Exiles: Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/exiles-out-of-time/4050-36111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36116/", + "id": 36116, + "name": "Exiles: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/exiles-legacy/4050-36116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36132/", + "id": 36132, + "name": "Exiles: Unnatural Instincts", + "site_detail_url": "https://comicvine.gamespot.com/exiles-unnatural-instincts/4050-36132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36136/", + "id": 36136, + "name": "Exiles: Fantastic Voyage", + "site_detail_url": "https://comicvine.gamespot.com/exiles-fantastic-voyage/4050-36136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36148/", + "id": 36148, + "name": "Wolverine: The Reckoning", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-reckoning/4050-36148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36163/", + "id": 36163, + "name": "Exiles: A Blink in Time", + "site_detail_url": "https://comicvine.gamespot.com/exiles-a-blink-in-time/4050-36163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36172/", + "id": 36172, + "name": "Iron Man 2: Public Identity", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2-public-identity/4050-36172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36173/", + "id": 36173, + "name": "Deadpool: What Happened in Vegas", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-what-happened-in-vegas/4050-36173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36174/", + "id": 36174, + "name": "Invincible Iron Man: Stark Resilient, Book One", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-stark-resilient-book-one/4050-36174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36176/", + "id": 36176, + "name": "Exiles: Earn Your Wings", + "site_detail_url": "https://comicvine.gamespot.com/exiles-earn-your-wings/4050-36176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36177/", + "id": 36177, + "name": "Exiles: Bump in the Night", + "site_detail_url": "https://comicvine.gamespot.com/exiles-bump-in-the-night/4050-36177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36179/", + "id": 36179, + "name": "Exiles: Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/exiles-age-of-apocalypse/4050-36179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36186/", + "id": 36186, + "name": "Iron Man: Titanium!", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-titanium/4050-36186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36229/", + "id": 36229, + "name": "Captain America/Black Panther: Flags of Our Fathers", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-black-panther-flags-of-our-fathers/4050-36229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36240/", + "id": 36240, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/carnage/4050-36240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36273/", + "id": 36273, + "name": "Deadpool Corps: Pool-Pocalypse Now", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-corps-pool-pocalypse-now/4050-36273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36274/", + "id": 36274, + "name": "Thunderbolts: Cage", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-cage/4050-36274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36276/", + "id": 36276, + "name": "War Machine Classic", + "site_detail_url": "https://comicvine.gamespot.com/war-machine-classic/4050-36276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36277/", + "id": 36277, + "name": "Wolverine Weapon X: Tomorrow Dies Today", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-tomorrow-dies-today/4050-36277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36278/", + "id": 36278, + "name": "X-Babies Classic", + "site_detail_url": "https://comicvine.gamespot.com/x-babies-classic/4050-36278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36282/", + "id": 36282, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4050-36282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36292/", + "id": 36292, + "name": "Exiles: Timebreakers", + "site_detail_url": "https://comicvine.gamespot.com/exiles-timebreakers/4050-36292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36303/", + "id": 36303, + "name": "Exiles: World Tour", + "site_detail_url": "https://comicvine.gamespot.com/exiles-world-tour/4050-36303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36342/", + "id": 36342, + "name": "Hulk: World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-world-war-hulks/4050-36342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36354/", + "id": 36354, + "name": "Spider-Man Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-saga/4050-36354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36364/", + "id": 36364, + "name": "Avengers vs. Pet Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-pet-avengers/4050-36364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36367/", + "id": 36367, + "name": "Enslaved: Odyssey to the West Custom Comic", + "site_detail_url": "https://comicvine.gamespot.com/enslaved-odyssey-to-the-west-custom-comic/4050-36367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36369/", + "id": 36369, + "name": "Marvel Her-Oes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-her-oes/4050-36369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36370/", + "id": 36370, + "name": "Marvel Zombies 5", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-5/4050-36370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36371/", + "id": 36371, + "name": "Amazing Spider-Man: Grim Hunt", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-grim-hunt/4050-36371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36372/", + "id": 36372, + "name": "Thor vs. Hercules", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-hercules/4050-36372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36375/", + "id": 36375, + "name": "Ultimate Comics Avengers: Crime and Punishment", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-crime-and-punishment/4050-36375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36377/", + "id": 36377, + "name": "X-Men Forever: Once More... Into the Breach", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-once-more-into-the-breach/4050-36377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36380/", + "id": 36380, + "name": "Hulk: Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk-red-hulk/4050-36380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36381/", + "id": 36381, + "name": "Hulk: Red & Green", + "site_detail_url": "https://comicvine.gamespot.com/hulk-red-green/4050-36381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36382/", + "id": 36382, + "name": "Hulk vs. X-Force", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-x-force/4050-36382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36383/", + "id": 36383, + "name": "Hulk: Fall of the Hulks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-fall-of-the-hulks/4050-36383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36384/", + "id": 36384, + "name": "Exiles: Enemy of the Stars", + "site_detail_url": "https://comicvine.gamespot.com/exiles-enemy-of-the-stars/4050-36384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36385/", + "id": 36385, + "name": "Exiles: Starting Over", + "site_detail_url": "https://comicvine.gamespot.com/exiles-starting-over/4050-36385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36388/", + "id": 36388, + "name": "Exiles: The New Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles-the-new-exiles/4050-36388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36404/", + "id": 36404, + "name": "Spider-Man vs. Vampires (MDCU)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-vampires-mdcu/4050-36404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36414/", + "id": 36414, + "name": "Uncanny X-Men: Poptopia", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-poptopia/4050-36414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36415/", + "id": 36415, + "name": "Uncanny X-Men: Hope", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-hope/4050-36415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36416/", + "id": 36416, + "name": "Uncanny X-Men: Dominant Species", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-dominant-species/4050-36416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36417/", + "id": 36417, + "name": "Uncanny X-Men: Holy War", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-holy-war/4050-36417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36425/", + "id": 36425, + "name": "Earthworm Jim", + "site_detail_url": "https://comicvine.gamespot.com/earthworm-jim/4050-36425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36434/", + "id": 36434, + "name": "Uncanny X-Men: The Draco", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-draco/4050-36434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36436/", + "id": 36436, + "name": "Uncanny X-Men: She Lies With Angels", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-she-lies-with-angels/4050-36436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36438/", + "id": 36438, + "name": "Mystique: Drop Dead Gorgeous", + "site_detail_url": "https://comicvine.gamespot.com/mystique-drop-dead-gorgeous/4050-36438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36452/", + "id": 36452, + "name": "Mystique: Tinker, Tailor, Mutant, Spy", + "site_detail_url": "https://comicvine.gamespot.com/mystique-tinker-tailor-mutant-spy/4050-36452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36459/", + "id": 36459, + "name": "Mystique: Unnatural", + "site_detail_url": "https://comicvine.gamespot.com/mystique-unnatural/4050-36459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36460/", + "id": 36460, + "name": "Mystique: Quiet", + "site_detail_url": "https://comicvine.gamespot.com/mystique-quiet/4050-36460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36463/", + "id": 36463, + "name": "Wolverine: First Class: The Rookie", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class-the-rookie/4050-36463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36469/", + "id": 36469, + "name": "Generation Hope", + "site_detail_url": "https://comicvine.gamespot.com/generation-hope/4050-36469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36470/", + "id": 36470, + "name": "X-Men: To Serve and Protect", + "site_detail_url": "https://comicvine.gamespot.com/x-men-to-serve-and-protect/4050-36470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36477/", + "id": 36477, + "name": "Ozma of Oz", + "site_detail_url": "https://comicvine.gamespot.com/ozma-of-oz/4050-36477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36479/", + "id": 36479, + "name": "Tron: Original Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/tron-original-movie-adaptation/4050-36479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36480/", + "id": 36480, + "name": "Captain America: Man Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-man-out-of-time/4050-36480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36488/", + "id": 36488, + "name": "Punisher: In the Blood", + "site_detail_url": "https://comicvine.gamespot.com/punisher-in-the-blood/4050-36488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36497/", + "id": 36497, + "name": "Astonishing X-Men: Exogenetic", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-exogenetic/4050-36497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36498/", + "id": 36498, + "name": "Civil War: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-front-line/4050-36498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36499/", + "id": 36499, + "name": "Doomwar", + "site_detail_url": "https://comicvine.gamespot.com/doomwar/4050-36499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36500/", + "id": 36500, + "name": "Marvel Universe: The End", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-the-end/4050-36500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36507/", + "id": 36507, + "name": "Women of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel/4050-36507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36508/", + "id": 36508, + "name": "Warriors Three", + "site_detail_url": "https://comicvine.gamespot.com/warriors-three/4050-36508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36510/", + "id": 36510, + "name": "Iron Man/Thor", + "site_detail_url": "https://comicvine.gamespot.com/iron-manthor/4050-36510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36511/", + "id": 36511, + "name": "Secret Warriors: Last Ride of the Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-last-ride-of-the-howling-commandos/4050-36511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36512/", + "id": 36512, + "name": "Peter Parker", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker/4050-36512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36513/", + "id": 36513, + "name": "X-Factor Forever", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-forever/4050-36513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36514/", + "id": 36514, + "name": "Hulked-Out Heroes", + "site_detail_url": "https://comicvine.gamespot.com/hulked-out-heroes/4050-36514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36515/", + "id": 36515, + "name": "Incredible Hulk: World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-world-war-hulks/4050-36515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36516/", + "id": 36516, + "name": "Rogue: Going Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue-going-rogue/4050-36516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36517/", + "id": 36517, + "name": "Wolverine: First Class: To Russia, With Love", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class-to-russia-with-love/4050-36517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36524/", + "id": 36524, + "name": "Iron Man By Design", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-design/4050-36524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36527/", + "id": 36527, + "name": "Wolverine: First Class: Wolverine-By-Night", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class-wolverine-by-night/4050-36527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36540/", + "id": 36540, + "name": "Wolverine: First Class: Ninjas, Gods and Divas", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class-ninjas-gods-and-divas/4050-36540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36561/", + "id": 36561, + "name": "She-Hulks", + "site_detail_url": "https://comicvine.gamespot.com/she-hulks/4050-36561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36569/", + "id": 36569, + "name": "Wolverine: First Class: Class Actions", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-class-class-actions/4050-36569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36586/", + "id": 36586, + "name": "Ant-Man & Wasp", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-wasp/4050-36586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36604/", + "id": 36604, + "name": "Fantastic Four: Foes", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-foes/4050-36604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36606/", + "id": 36606, + "name": "Fantastic Four: First Family", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-first-family/4050-36606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36613/", + "id": 36613, + "name": "Chaos War: Thor", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-thor/4050-36613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36625/", + "id": 36625, + "name": "November 2010 Sneak Peeks", + "site_detail_url": "https://comicvine.gamespot.com/november-2010-sneak-peeks/4050-36625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36626/", + "id": 36626, + "name": "Avengers/X-Men: Maximum Security", + "site_detail_url": "https://comicvine.gamespot.com/avengersx-men-maximum-security/4050-36626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36627/", + "id": 36627, + "name": "The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age/4050-36627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36651/", + "id": 36651, + "name": "Spectacular Spider-Girl: The Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-the-last-stand/4050-36651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36653/", + "id": 36653, + "name": "Squadron Supreme by Mark Gruenwald Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-by-mark-gruenwald-omnibus/4050-36653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36665/", + "id": 36665, + "name": "Avengers: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes/4050-36665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36725/", + "id": 36725, + "name": "Osborn", + "site_detail_url": "https://comicvine.gamespot.com/osborn/4050-36725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36726/", + "id": 36726, + "name": "Darkstar & the Winter Guard", + "site_detail_url": "https://comicvine.gamespot.com/darkstar-the-winter-guard/4050-36726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36727/", + "id": 36727, + "name": "Amazing Spider-Man: One Moment in Time", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-one-moment-in-time/4050-36727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36729/", + "id": 36729, + "name": "Thor: Siege Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/thor-siege-aftermath/4050-36729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36730/", + "id": 36730, + "name": "Chaos War: Dead Avengers", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-dead-avengers/4050-36730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36735/", + "id": 36735, + "name": "Gargoyles", + "site_detail_url": "https://comicvine.gamespot.com/gargoyles/4050-36735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36737/", + "id": 36737, + "name": "Chaos War: Chaos King", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-chaos-king/4050-36737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36738/", + "id": 36738, + "name": "The Heroic Age: Villains", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-villains/4050-36738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36750/", + "id": 36750, + "name": "Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl/4050-36750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36761/", + "id": 36761, + "name": "Daredevil: Gang War", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-gang-war/4050-36761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36789/", + "id": 36789, + "name": "Civil War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men/4050-36789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36797/", + "id": 36797, + "name": "Thor: The Eternals Saga", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-eternals-saga/4050-36797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36800/", + "id": 36800, + "name": "Doctor Voodoo: Avenger of the Supernatural", + "site_detail_url": "https://comicvine.gamespot.com/doctor-voodoo-avenger-of-the-supernatural/4050-36800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36822/", + "id": 36822, + "name": "X-Force: A Forced To Be Reckoned With", + "site_detail_url": "https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with/4050-36822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36832/", + "id": 36832, + "name": "Wolverine: Weapon X 100 Project", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-100-project/4050-36832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36852/", + "id": 36852, + "name": "Chaos War: God Squad", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-god-squad/4050-36852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36853/", + "id": 36853, + "name": "December 2010 Sneak Peeks", + "site_detail_url": "https://comicvine.gamespot.com/december-2010-sneak-peeks/4050-36853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36892/", + "id": 36892, + "name": "Essential Godzilla King of the Monsters", + "site_detail_url": "https://comicvine.gamespot.com/essential-godzilla-king-of-the-monsters/4050-36892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36922/", + "id": 36922, + "name": "X-Men: Curse of the Mutants Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-spotlight/4050-36922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36926/", + "id": 36926, + "name": "Iron Man: Director of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-director-of-shield/4050-36926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36927/", + "id": 36927, + "name": "Howard the Duck Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-omnibus/4050-36927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36952/", + "id": 36952, + "name": "Chaos War: Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-alpha-flight/4050-36952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36953/", + "id": 36953, + "name": "Thunderstrike", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike/4050-36953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36955/", + "id": 36955, + "name": "Astonishing Thor", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-thor/4050-36955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36957/", + "id": 36957, + "name": "Thunderbolts By Warren Ellis: Caged Angels", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-caged-angels/4050-36957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36962/", + "id": 36962, + "name": "Thunderbolts: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-secret-invasion/4050-36962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36971/", + "id": 36971, + "name": "Marvel Superhero Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-superhero-team-up/4050-36971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36972/", + "id": 36972, + "name": "Punisher: Franken-Castle", + "site_detail_url": "https://comicvine.gamespot.com/punisher-franken-castle/4050-36972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36973/", + "id": 36973, + "name": "Captain America: The New Deal", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-new-deal/4050-36973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36980/", + "id": 36980, + "name": "Daredevil by Bendis and Maleev Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4050-36980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36981/", + "id": 36981, + "name": "Robert E. Howard's Conan the Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/robert-e-howards-conan-the-barbarian/4050-36981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36982/", + "id": 36982, + "name": "Red Sonja: Scavenger Hunt", + "site_detail_url": "https://comicvine.gamespot.com/red-sonja-scavenger-hunt/4050-36982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36983/", + "id": 36983, + "name": "Conan: Return of Styrm", + "site_detail_url": "https://comicvine.gamespot.com/conan-return-of-styrm/4050-36983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36985/", + "id": 36985, + "name": "Conan: River of Blood", + "site_detail_url": "https://comicvine.gamespot.com/conan-river-of-blood/4050-36985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36990/", + "id": 36990, + "name": "Spider-Woman: Agent of S.W.O.R.D.", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-agent-of-sword/4050-36990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36991/", + "id": 36991, + "name": "Spider-Man Loves Mary Jane: Super Crush", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-super-crush/4050-36991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36992/", + "id": 36992, + "name": "Spider-Man Loves Mary Jane: The New Girl", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-new-girl/4050-36992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36993/", + "id": 36993, + "name": "Spider-Man Loves Mary Jane: My Secret Life", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-my-secret-life/4050-36993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36994/", + "id": 36994, + "name": "Spider-Man Loves Mary Jane: Still Friends", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-still-friends/4050-36994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36996/", + "id": 36996, + "name": "Excalibur Visionaries: Warren Ellis", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-visionaries-warren-ellis/4050-36996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36998/", + "id": 36998, + "name": "X-Men Legacy: Salvage", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-salvage/4050-36998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37000/", + "id": 37000, + "name": "X-Men Forever: The Secret History of the Sentinels", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-the-secret-history-of-the-sentinels/4050-37000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37003/", + "id": 37003, + "name": "X-Men Forever: Come to Mother... Russia!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-come-to-mother-russia/4050-37003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37004/", + "id": 37004, + "name": "X-Men Forever: Devil in a White Dress", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-devil-in-a-white-dress/4050-37004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37059/", + "id": 37059, + "name": "Marvel Treasury of Oz featuring the Marvelous Land of Oz", + "site_detail_url": "https://comicvine.gamespot.com/marvel-treasury-of-oz-featuring-the-marvelous-land/4050-37059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37085/", + "id": 37085, + "name": "Grandson of Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/grandson-of-origins-of-marvel-comics/4050-37085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37097/", + "id": 37097, + "name": "Wolverine: The Best There Is", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-best-there-is/4050-37097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37120/", + "id": 37120, + "name": "Heroes for Hire", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire/4050-37120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37175/", + "id": 37175, + "name": "X-Men: Die by the Sword", + "site_detail_url": "https://comicvine.gamespot.com/x-men-die-by-the-sword/4050-37175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37176/", + "id": 37176, + "name": "X-Men: Prelude to Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/x-men-prelude-to-onslaught/4050-37176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37178/", + "id": 37178, + "name": "Avengers: The Origin", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-origin/4050-37178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37180/", + "id": 37180, + "name": "Deadpool: Wade Wilson's War", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-wade-wilsons-war/4050-37180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37181/", + "id": 37181, + "name": "Amazing Spider-Man: The Osborn Identity", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-osborn-identity/4050-37181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37182/", + "id": 37182, + "name": "Thor: Across All Worlds", + "site_detail_url": "https://comicvine.gamespot.com/thor-across-all-worlds/4050-37182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37329/", + "id": 37329, + "name": "Ultimate Comics Spider-Man: Chameleons", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-chameleons/4050-37329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37331/", + "id": 37331, + "name": "Civil War: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-spider-man/4050-37331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37338/", + "id": 37338, + "name": "Shadowland: After the Fall", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-after-the-fall/4050-37338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37344/", + "id": 37344, + "name": "Chaos War: Ares", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-ares/4050-37344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37346/", + "id": 37346, + "name": "Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/widowmaker/4050-37346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37348/", + "id": 37348, + "name": "What If? Wolverine: Father", + "site_detail_url": "https://comicvine.gamespot.com/what-if-wolverine-father/4050-37348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37350/", + "id": 37350, + "name": "Captain America & the Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-korvac-saga/4050-37350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37370/", + "id": 37370, + "name": "Gorilla-Man", + "site_detail_url": "https://comicvine.gamespot.com/gorilla-man/4050-37370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37371/", + "id": 37371, + "name": "Hercules: Twilight of a God", + "site_detail_url": "https://comicvine.gamespot.com/hercules-twilight-of-a-god/4050-37371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37372/", + "id": 37372, + "name": "Incredible Hercules: The New Prince of Power", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-the-new-prince-of-power/4050-37372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37375/", + "id": 37375, + "name": "Earth X Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-sketchbook/4050-37375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37382/", + "id": 37382, + "name": "Iron Man: War of the Iron Men", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-war-of-the-iron-men/4050-37382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37385/", + "id": 37385, + "name": "Thor: If Asgard Should Perish", + "site_detail_url": "https://comicvine.gamespot.com/thor-if-asgard-should-perish/4050-37385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37406/", + "id": 37406, + "name": "The Dark Tower: The Gunslinger - The Little Sisters of Eluria", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-the-little-sisters-o/4050-37406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37435/", + "id": 37435, + "name": "Punisher: Very Special Holidays", + "site_detail_url": "https://comicvine.gamespot.com/punisher-very-special-holidays/4050-37435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37446/", + "id": 37446, + "name": "Captain America: No Escape", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-no-escape/4050-37446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37447/", + "id": 37447, + "name": "Captain America: America First", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-america-first/4050-37447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37448/", + "id": 37448, + "name": "Deadpool Team-Up: Special Relationship", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-team-up-special-relationship/4050-37448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37478/", + "id": 37478, + "name": "Uncanny X-Men: The Birth of Generation Hope", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-birth-of-generation-hope/4050-37478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37479/", + "id": 37479, + "name": "Generation X Classic", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-classic/4050-37479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37490/", + "id": 37490, + "name": "Thor: The Mighty Avenger: The God Who Fell To Earth", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-mighty-avenger-the-god-who-fell-to-earth/4050-37490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37491/", + "id": 37491, + "name": "Vengeance of Moon Knight: Killed, Not Dead", + "site_detail_url": "https://comicvine.gamespot.com/vengeance-of-moon-knight-killed-not-dead/4050-37491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37502/", + "id": 37502, + "name": "Black Panther: The Man Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-man-without-fear/4050-37502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37503/", + "id": 37503, + "name": "What If? Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man/4050-37503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37509/", + "id": 37509, + "name": "X-Force: Sex and Violence", + "site_detail_url": "https://comicvine.gamespot.com/x-force-sex-and-violence/4050-37509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37510/", + "id": 37510, + "name": "Punisher: Year One", + "site_detail_url": "https://comicvine.gamespot.com/punisher-year-one/4050-37510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37511/", + "id": 37511, + "name": "Ultimate Galactus Trilogy", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-galactus-trilogy/4050-37511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37512/", + "id": 37512, + "name": "Ultimate Power", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power/4050-37512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37514/", + "id": 37514, + "name": "Ultimate Wolverine vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk/4050-37514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37515/", + "id": 37515, + "name": "Ultimate Vision", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-vision/4050-37515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37516/", + "id": 37516, + "name": "Ultimatum: March On Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-march-on-ultimatum/4050-37516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37525/", + "id": 37525, + "name": "Avengers/Thunderbolts: Best Intentions", + "site_detail_url": "https://comicvine.gamespot.com/avengersthunderbolts-best-intentions/4050-37525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37528/", + "id": 37528, + "name": "Avengers/Thunderbolts:The Nefaria Protocols", + "site_detail_url": "https://comicvine.gamespot.com/avengersthunderboltsthe-nefaria-protocols/4050-37528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37530/", + "id": 37530, + "name": "Thunderbolts: Marvel's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-marvels-most-wanted/4050-37530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37563/", + "id": 37563, + "name": "Thunderbolts: How to Lose", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-how-to-lose/4050-37563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37564/", + "id": 37564, + "name": "Sentinel: Salvage", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-salvage/4050-37564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37565/", + "id": 37565, + "name": "Sentinel: No Hero", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-no-hero/4050-37565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37566/", + "id": 37566, + "name": "Sentinel: Past Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/sentinel-past-imperfect/4050-37566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37572/", + "id": 37572, + "name": "Silver Surfer: The Coming of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-the-coming-of-galactus/4050-37572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37638/", + "id": 37638, + "name": "Rawhide Kid: The Sensational Seven", + "site_detail_url": "https://comicvine.gamespot.com/rawhide-kid-the-sensational-seven/4050-37638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37639/", + "id": 37639, + "name": "X-Campus", + "site_detail_url": "https://comicvine.gamespot.com/x-campus/4050-37639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37754/", + "id": 37754, + "name": "What If? Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/what-if-dark-reign/4050-37754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37761/", + "id": 37761, + "name": "Punisher Max: Hardcover", + "site_detail_url": "https://comicvine.gamespot.com/punisher-max-hardcover/4050-37761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37819/", + "id": 37819, + "name": "Spider-Man: Spirits of the Earth", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spirits-of-the-earth/4050-37819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37820/", + "id": 37820, + "name": "Marvel Graphic Novel: Conan of the Isles", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-conan-of-the-isles/4050-37820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37821/", + "id": 37821, + "name": "The Inhumans A Marvel Graphic Novel", + "site_detail_url": "https://comicvine.gamespot.com/the-inhumans-a-marvel-graphic-novel/4050-37821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37823/", + "id": 37823, + "name": "Ultimate Doom", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-doom/4050-37823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37834/", + "id": 37834, + "name": "Thor: Wolves of the North", + "site_detail_url": "https://comicvine.gamespot.com/thor-wolves-of-the-north/4050-37834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37853/", + "id": 37853, + "name": "What if? Iron Man: Demon In An Armor", + "site_detail_url": "https://comicvine.gamespot.com/what-if-iron-man-demon-in-an-armor/4050-37853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37956/", + "id": 37956, + "name": "Chaos War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-x-men/4050-37956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37973/", + "id": 37973, + "name": "Heroic Age: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/heroic-age-x-men/4050-37973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38026/", + "id": 38026, + "name": "Weapon X: The Draft", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-draft/4050-38026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38028/", + "id": 38028, + "name": "Weapon X: The Underground", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-underground/4050-38028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38029/", + "id": 38029, + "name": "Wolverine/Deadpool: Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-weapon-x/4050-38029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38031/", + "id": 38031, + "name": "Wolverine: The Best There Is", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-best-there-is/4050-38031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38041/", + "id": 38041, + "name": "Best of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/best-of-wolverine/4050-38041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38042/", + "id": 38042, + "name": "Emma Frost: Higher Learning", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost-higher-learning/4050-38042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38043/", + "id": 38043, + "name": "X-Men: Old Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/x-men-old-soldiers/4050-38043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38044/", + "id": 38044, + "name": "Civil War: War Crimes", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-war-crimes/4050-38044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38065/", + "id": 38065, + "name": "Runaways: Homeschooling", + "site_detail_url": "https://comicvine.gamespot.com/runaways-homeschooling/4050-38065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38068/", + "id": 38068, + "name": "The Thanos Imperative: Devastation", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-imperative-devastation/4050-38068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38069/", + "id": 38069, + "name": "Witches: The Gathering", + "site_detail_url": "https://comicvine.gamespot.com/witches-the-gathering/4050-38069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38070/", + "id": 38070, + "name": "Human Torch: Burn", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-burn/4050-38070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38071/", + "id": 38071, + "name": "Spellbinders: Signs and Wonders", + "site_detail_url": "https://comicvine.gamespot.com/spellbinders-signs-and-wonders/4050-38071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38072/", + "id": 38072, + "name": "Excalibur: Forging the Sword", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-forging-the-sword/4050-38072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38073/", + "id": 38073, + "name": "Excalibur: Saturday Night Fever", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-saturday-night-fever/4050-38073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38088/", + "id": 38088, + "name": "Ultimate Captain America", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-captain-america/4050-38088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38100/", + "id": 38100, + "name": "House of M Prelude: Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-prelude-excalibur/4050-38100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38101/", + "id": 38101, + "name": "House of M: Mutopia X", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-mutopia-x/4050-38101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38102/", + "id": 38102, + "name": "NYX: No Way Home", + "site_detail_url": "https://comicvine.gamespot.com/nyx-no-way-home/4050-38102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38110/", + "id": 38110, + "name": "January 2011 Sneak Peeks", + "site_detail_url": "https://comicvine.gamespot.com/january-2011-sneak-peeks/4050-38110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38157/", + "id": 38157, + "name": "Captain America: Hail Hydra", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-hail-hydra/4050-38157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38166/", + "id": 38166, + "name": "X-Force: Legacy of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/x-force-legacy-of-vengeance/4050-38166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38198/", + "id": 38198, + "name": "NYX: Wannabe", + "site_detail_url": "https://comicvine.gamespot.com/nyx-wannabe/4050-38198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38199/", + "id": 38199, + "name": "X-Force: Shatterstar", + "site_detail_url": "https://comicvine.gamespot.com/x-force-shatterstar/4050-38199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38200/", + "id": 38200, + "name": "What If...?: Why Not?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-why-not/4050-38200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38202/", + "id": 38202, + "name": "What If?: Mirror Mirror", + "site_detail_url": "https://comicvine.gamespot.com/what-if-mirror-mirror/4050-38202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38204/", + "id": 38204, + "name": "Black Widow: The Name of the Rose", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-name-of-the-rose/4050-38204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38205/", + "id": 38205, + "name": "Hit-Monkey: Year of the Monkey", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey-year-of-the-monkey/4050-38205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38206/", + "id": 38206, + "name": "Marvel Universe vs. The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-punisher/4050-38206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38221/", + "id": 38221, + "name": "Marvels: Eye of the Camera", + "site_detail_url": "https://comicvine.gamespot.com/marvels-eye-of-the-camera/4050-38221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38222/", + "id": 38222, + "name": "Thor vs. Seth, The Serpent God", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-seth-the-serpent-god/4050-38222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38223/", + "id": 38223, + "name": "Atlas: Return of the Three Dimensional Man", + "site_detail_url": "https://comicvine.gamespot.com/atlas-return-of-the-three-dimensional-man/4050-38223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38236/", + "id": 38236, + "name": "Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble/4050-38236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38237/", + "id": 38237, + "name": "Daredevil: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-reborn/4050-38237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38241/", + "id": 38241, + "name": "Civil War: The Underside", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-the-underside/4050-38241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38262/", + "id": 38262, + "name": "Ka-Zar by Mark Waid & Andy Kubert", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-by-mark-waid-andy-kubert/4050-38262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38263/", + "id": 38263, + "name": "Spider-Man: Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-black-cat/4050-38263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38264/", + "id": 38264, + "name": "X-Force: Cable and the New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-force-cable-and-the-new-mutants/4050-38264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38267/", + "id": 38267, + "name": "Spider-Man: Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-carnage/4050-38267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38270/", + "id": 38270, + "name": "Spider-Man/Doctor Octopus: Out of Reach", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-out-of-reach/4050-38270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38271/", + "id": 38271, + "name": "Spider-Man/Doctor Octopus: Year One", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-year-one/4050-38271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38272/", + "id": 38272, + "name": "Spider-Man/Doctor Octopus: Negative Exposure", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandoctor-octopus-negative-exposure/4050-38272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38273/", + "id": 38273, + "name": "Spider-Man: Legend of the Spider-Clan", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legend-of-the-spider-clan/4050-38273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38274/", + "id": 38274, + "name": "Spider-Man: Revenge of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-revenge-of-the-green-goblin/4050-38274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38318/", + "id": 38318, + "name": "Marvel Mangaverse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse/4050-38318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38320/", + "id": 38320, + "name": "Ultimate Galactus: Ultimate Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-galactus-ultimate-nightmare/4050-38320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38321/", + "id": 38321, + "name": "Ultimate Galactus: Ultimate Extinction", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-galactus-ultimate-extinction/4050-38321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38504/", + "id": 38504, + "name": "Wolverine and Jubilee", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-jubilee/4050-38504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38511/", + "id": 38511, + "name": "Daredevil vs. Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-vs-bullseye/4050-38511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38516/", + "id": 38516, + "name": "Anita Blake, Vampire Hunter: Circus of the Damned - The Ingenue", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-circus-of-the-damned-th/4050-38516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38518/", + "id": 38518, + "name": "New Mangaverse: The Rings of Fate", + "site_detail_url": "https://comicvine.gamespot.com/new-mangaverse-the-rings-of-fate/4050-38518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38519/", + "id": 38519, + "name": "Amazing Spider-Man: Origin of the Species", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-origin-of-the-species/4050-38519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38520/", + "id": 38520, + "name": "One Month To Live", + "site_detail_url": "https://comicvine.gamespot.com/one-month-to-live/4050-38520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38521/", + "id": 38521, + "name": "Deathlok: The Demolisher", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-the-demolisher/4050-38521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38522/", + "id": 38522, + "name": "Ultimate Daredevil and Elektra", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-daredevil-and-elektra/4050-38522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38523/", + "id": 38523, + "name": "Ultimate Elektra: Devil's Due", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-elektra-devils-due/4050-38523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38524/", + "id": 38524, + "name": "Marvel Knights 4: Wolf at the Door", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-4-wolf-at-the-door/4050-38524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38525/", + "id": 38525, + "name": "Marvel Knights 4: The Stuff of Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-4-the-stuff-of-nightmares/4050-38525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38526/", + "id": 38526, + "name": "Marvel Knights 4: Divine Time", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-4-divine-time/4050-38526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38527/", + "id": 38527, + "name": "Marvel Knights 4: Impossible Things Happen Every Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-4-impossible-things-happen-every-da/4050-38527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38528/", + "id": 38528, + "name": "X-Men: Apocalypse vs. Dracula", + "site_detail_url": "https://comicvine.gamespot.com/x-men-apocalypse-vs-dracula/4050-38528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38529/", + "id": 38529, + "name": "Ghost Rider by Jason Aaron Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-by-jason-aaron-omnibus/4050-38529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38530/", + "id": 38530, + "name": "Marvel Graphic Novel: The Shadow", + "site_detail_url": "https://comicvine.gamespot.com/marvel-graphic-novel-the-shadow/4050-38530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38551/", + "id": 38551, + "name": "Iron Manual", + "site_detail_url": "https://comicvine.gamespot.com/iron-manual/4050-38551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38611/", + "id": 38611, + "name": "Age of X: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-alpha/4050-38611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38622/", + "id": 38622, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4050-38622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38649/", + "id": 38649, + "name": "Ultimate Marvel Team-Up: Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-team-up-ultimate-collection/4050-38649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38650/", + "id": 38650, + "name": "Doctor Spectrum: Full Spectrum", + "site_detail_url": "https://comicvine.gamespot.com/doctor-spectrum-full-spectrum/4050-38650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38652/", + "id": 38652, + "name": "Marvel Knights 2099", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-2099/4050-38652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38653/", + "id": 38653, + "name": "Doctor Strange vs. Dracula: The Montesi Formula", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-vs-dracula-the-montesi-formula/4050-38653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38654/", + "id": 38654, + "name": "Daughters of the Dragon: Samurai Bullets", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-the-dragon-samurai-bullets/4050-38654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38655/", + "id": 38655, + "name": "Models Inc.", + "site_detail_url": "https://comicvine.gamespot.com/models-inc/4050-38655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38656/", + "id": 38656, + "name": "Doctor Strange: The Oath", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-oath/4050-38656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38660/", + "id": 38660, + "name": "The Romita Legacy", + "site_detail_url": "https://comicvine.gamespot.com/the-romita-legacy/4050-38660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38669/", + "id": 38669, + "name": "Doctor Strange: A Separate Reality", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-a-separate-reality/4050-38669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38671/", + "id": 38671, + "name": "Nextwave: Agents of HATE: This is What They Want", + "site_detail_url": "https://comicvine.gamespot.com/nextwave-agents-of-hate-this-is-what-they-want/4050-38671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38672/", + "id": 38672, + "name": "Nextwave: Agents of HATE: I Kick Your Face", + "site_detail_url": "https://comicvine.gamespot.com/nextwave-agents-of-hate-i-kick-your-face/4050-38672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38673/", + "id": 38673, + "name": "Strange: Beginnings & Endings", + "site_detail_url": "https://comicvine.gamespot.com/strange-beginnings-endings/4050-38673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38674/", + "id": 38674, + "name": "Avengers: The Coming of the Beast", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-coming-of-the-beast/4050-38674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38675/", + "id": 38675, + "name": "Fantastic Four: Resurrection of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-resurrection-of-galactus/4050-38675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38679/", + "id": 38679, + "name": "Blockbusters of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/blockbusters-of-the-marvel-universe/4050-38679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38699/", + "id": 38699, + "name": "Shanna the She-Devil: Survival of the Fittest", + "site_detail_url": "https://comicvine.gamespot.com/shanna-the-she-devil-survival-of-the-fittest/4050-38699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38700/", + "id": 38700, + "name": "Fantastic Four: Flesh and Stone", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-flesh-and-stone/4050-38700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38701/", + "id": 38701, + "name": "Best of the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/best-of-the-fantastic-four/4050-38701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38706/", + "id": 38706, + "name": "Captain America Collector's Preview", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-collectors-preview/4050-38706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38708/", + "id": 38708, + "name": "Marvel Comics Presents Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-captain-america/4050-38708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38710/", + "id": 38710, + "name": "The Best of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spider-man/4050-38710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38724/", + "id": 38724, + "name": "Marvel Collectible Classics: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-collectible-classics-x-men/4050-38724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38725/", + "id": 38725, + "name": "Wolverine: The End", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-end/4050-38725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38726/", + "id": 38726, + "name": "Fantastic Four: The End", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end/4050-38726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38727/", + "id": 38727, + "name": "Fantastic Four: Hereafter", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-hereafter/4050-38727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38728/", + "id": 38728, + "name": "Fantastic Four: The New Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-new-fantastic-four/4050-38728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38734/", + "id": 38734, + "name": "Captain America 70th Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-70th-anniversary-magazine/4050-38734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38736/", + "id": 38736, + "name": "Return of the Asthma Monster", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-asthma-monster/4050-38736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38739/", + "id": 38739, + "name": "Doctor Strange Sorcerer Supreme Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-ashcan/4050-38739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38742/", + "id": 38742, + "name": "Force Works Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/force-works-ashcan-edition/4050-38742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38747/", + "id": 38747, + "name": "Fantastic Four: The Life Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-life-fantastic/4050-38747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38748/", + "id": 38748, + "name": "Fantastic Four: The Beginning of the End", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-beginning-of-the-end/4050-38748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38749/", + "id": 38749, + "name": "Fantastic Four: Nobody Gets Out Alive", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-nobody-gets-out-alive/4050-38749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38750/", + "id": 38750, + "name": "Fantastic Four by J. Michael Straczynski", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-j-michael-straczynski/4050-38750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38751/", + "id": 38751, + "name": "Fantastic Four: Authoritative Action", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-authoritative-action/4050-38751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38778/", + "id": 38778, + "name": "Fantastic Four: Rising Storm", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-rising-storm/4050-38778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38779/", + "id": 38779, + "name": "Ororo: Before the Storm", + "site_detail_url": "https://comicvine.gamespot.com/ororo-before-the-storm/4050-38779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38780/", + "id": 38780, + "name": "Secret Avengers: Mission to Mars", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-mission-to-mars/4050-38780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38781/", + "id": 38781, + "name": "Deadpool & Cable", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-cable/4050-38781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38784/", + "id": 38784, + "name": "February 2011 Sneak Peeks", + "site_detail_url": "https://comicvine.gamespot.com/february-2011-sneak-peeks/4050-38784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38785/", + "id": 38785, + "name": "Doctor Strange: From the Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-from-the-marvel-vault/4050-38785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38826/", + "id": 38826, + "name": "Hawkeye and Mockingbird: Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-and-mockingbird-ghosts/4050-38826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38863/", + "id": 38863, + "name": "Fantastic Four: Unthinkable", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-unthinkable/4050-38863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38881/", + "id": 38881, + "name": "Fantastic Four/Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fourinhumans/4050-38881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38882/", + "id": 38882, + "name": "Fantastic Four: Imaginauts", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-imaginauts/4050-38882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38883/", + "id": 38883, + "name": "Fantastic Four: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-disassembled/4050-38883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38900/", + "id": 38900, + "name": "Ultimate Avengers vs. New Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates/4050-38900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38905/", + "id": 38905, + "name": "Onslaught Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-unleashed/4050-38905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38907/", + "id": 38907, + "name": "Power Man and Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist/4050-38907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38912/", + "id": 38912, + "name": "The Stand: No Man's Land", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-no-mans-land/4050-38912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38930/", + "id": 38930, + "name": "Steve Rogers: Super Soldier", + "site_detail_url": "https://comicvine.gamespot.com/steve-rogers-super-soldier/4050-38930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38931/", + "id": 38931, + "name": "Marvel Adventures Spider-Man: Amazing", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-amazing/4050-38931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38932/", + "id": 38932, + "name": "Marvel Adventures Spider-Man: Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-spectacular/4050-38932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38933/", + "id": 38933, + "name": "Fantastic Four/Iron Man: Big in Japan", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fouriron-man-big-in-japan/4050-38933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38934/", + "id": 38934, + "name": "Fantastic Four by Mark Waid", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-mark-waid/4050-38934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38935/", + "id": 38935, + "name": "Avengers Academy: Permanent Record", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-permanent-record/4050-38935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38936/", + "id": 38936, + "name": "Avengers by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis/4050-38936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38960/", + "id": 38960, + "name": "Lockjaw and the Pet Avengers Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-and-the-pet-avengers-unleashed/4050-38960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38962/", + "id": 38962, + "name": "Avengers: Citizen Kang", + "site_detail_url": "https://comicvine.gamespot.com/avengers-citizen-kang/4050-38962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38964/", + "id": 38964, + "name": "X-Men Forever 2: Back in Action", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2-back-in-action/4050-38964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38978/", + "id": 38978, + "name": "Elektra by Frank Miller Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/elektra-by-frank-miller-omnibus/4050-38978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39020/", + "id": 39020, + "name": "Marvel vs. Capcom: Fate of Two Worlds", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vs-capcom-fate-of-two-worlds/4050-39020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39031/", + "id": 39031, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-39031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39055/", + "id": 39055, + "name": "Hawkeye: Blind Spot", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-blind-spot/4050-39055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39059/", + "id": 39059, + "name": "Astonishing Spider-Man & Wolverine Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-wolverine-directors-cut/4050-39059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39064/", + "id": 39064, + "name": "Marvel Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-girl/4050-39064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39073/", + "id": 39073, + "name": "Mighty Marvel: Women of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-women-of-marvel/4050-39073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39076/", + "id": 39076, + "name": "Formic Wars: Burning Earth", + "site_detail_url": "https://comicvine.gamespot.com/formic-wars-burning-earth/4050-39076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39078/", + "id": 39078, + "name": "Orson Scott Card's Speaker for the Dead", + "site_detail_url": "https://comicvine.gamespot.com/orson-scott-cards-speaker-for-the-dead/4050-39078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39086/", + "id": 39086, + "name": "Amazing Spider-Man: Big Time", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time/4050-39086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39087/", + "id": 39087, + "name": "Thor: Ragnarok", + "site_detail_url": "https://comicvine.gamespot.com/thor-ragnarok/4050-39087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39089/", + "id": 39089, + "name": "Captain America: Patriot", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-patriot/4050-39089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39090/", + "id": 39090, + "name": "Incredible Hulks: Dark Son", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-dark-son/4050-39090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39091/", + "id": 39091, + "name": "Thor: Worldengine", + "site_detail_url": "https://comicvine.gamespot.com/thor-worldengine/4050-39091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39092/", + "id": 39092, + "name": "Blade: Undead Again", + "site_detail_url": "https://comicvine.gamespot.com/blade-undead-again/4050-39092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39093/", + "id": 39093, + "name": "Blade: Sins of the Father", + "site_detail_url": "https://comicvine.gamespot.com/blade-sins-of-the-father/4050-39093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39122/", + "id": 39122, + "name": "Iron Man 2.0", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-20/4050-39122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39130/", + "id": 39130, + "name": "Spider-Man/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/spider-manfantastic-four/4050-39130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39131/", + "id": 39131, + "name": "Acts of Vengeance Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-omnibus/4050-39131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39133/", + "id": 39133, + "name": "Venom/Deadpool: What If?", + "site_detail_url": "https://comicvine.gamespot.com/venomdeadpool-what-if/4050-39133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39140/", + "id": 39140, + "name": "Skeleton Warriors", + "site_detail_url": "https://comicvine.gamespot.com/skeleton-warriors/4050-39140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39141/", + "id": 39141, + "name": "Namor the First Mutant: Curse of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-first-mutant-curse-of-the-mutants/4050-39141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39142/", + "id": 39142, + "name": "Namor Visionaries: John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/namor-visionaries-john-byrne/4050-39142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39149/", + "id": 39149, + "name": "XIII", + "site_detail_url": "https://comicvine.gamespot.com/xiii/4050-39149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39156/", + "id": 39156, + "name": "X-Men Visionaries 2: The Neal Adams Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-visionaries-2-the-neal-adams-collection/4050-39156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39165/", + "id": 39165, + "name": "Young Allies", + "site_detail_url": "https://comicvine.gamespot.com/young-allies/4050-39165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39166/", + "id": 39166, + "name": "Mighty Thor Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor-omnibus/4050-39166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39182/", + "id": 39182, + "name": "Starlord Megazine", + "site_detail_url": "https://comicvine.gamespot.com/starlord-megazine/4050-39182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39190/", + "id": 39190, + "name": "Essential Killraven", + "site_detail_url": "https://comicvine.gamespot.com/essential-killraven/4050-39190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39191/", + "id": 39191, + "name": "Essential Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/essential-howard-the-duck/4050-39191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39199/", + "id": 39199, + "name": "X-Men Forever 2: Scream A Little Scream", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2-scream-a-little-scream/4050-39199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39202/", + "id": 39202, + "name": "X-Men Archives", + "site_detail_url": "https://comicvine.gamespot.com/x-men-archives/4050-39202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39209/", + "id": 39209, + "name": "Captain America: Scourge of the Underworld", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-scourge-of-the-underworld/4050-39209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39210/", + "id": 39210, + "name": "X-Men: Curse of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants/4050-39210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39212/", + "id": 39212, + "name": "New Mutants: Forever", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-forever/4050-39212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39214/", + "id": 39214, + "name": "Daken: Dark Wolverine: Empire", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-empire/4050-39214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39222/", + "id": 39222, + "name": "Wolverine/Hercules: Myths, Monsters & Mutants", + "site_detail_url": "https://comicvine.gamespot.com/wolverinehercules-myths-monsters-mutants/4050-39222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39223/", + "id": 39223, + "name": "5 Ronin", + "site_detail_url": "https://comicvine.gamespot.com/5-ronin/4050-39223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39231/", + "id": 39231, + "name": "Annihilators", + "site_detail_url": "https://comicvine.gamespot.com/annihilators/4050-39231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39236/", + "id": 39236, + "name": "Marvel Zombies Supreme", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-supreme/4050-39236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39248/", + "id": 39248, + "name": "Wolverine: Wolverine Goes to Hell", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wolverine-goes-to-hell/4050-39248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39255/", + "id": 39255, + "name": "Thanos Imperative", + "site_detail_url": "https://comicvine.gamespot.com/thanos-imperative/4050-39255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39262/", + "id": 39262, + "name": "Emma", + "site_detail_url": "https://comicvine.gamespot.com/emma/4050-39262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39272/", + "id": 39272, + "name": "Marvel Special Edition Featuring The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-special-edition-featuring-the-spectacular-s/4050-39272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39275/", + "id": 39275, + "name": "Marvel Adventures Avengers: Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-thor/4050-39275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39276/", + "id": 39276, + "name": "Captain America and Falcon", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-falcon/4050-39276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39277/", + "id": 39277, + "name": "New Avengers by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis/4050-39277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39301/", + "id": 39301, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4050-39301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39310/", + "id": 39310, + "name": "Captain America and the First Thirteen", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-first-thirteen/4050-39310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39328/", + "id": 39328, + "name": "Thor by J. Michael Straczynski Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-j-michael-straczynski-omnibus/4050-39328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39347/", + "id": 39347, + "name": "Captain America: Man and Wolf", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-man-and-wolf/4050-39347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39349/", + "id": 39349, + "name": "Captain America Lives Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-lives-omnibus/4050-39349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39355/", + "id": 39355, + "name": "Thor: The Death of Odin", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-death-of-odin/4050-39355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39356/", + "id": 39356, + "name": "Thor & Loki: Blood Brothers", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-loki-blood-brothers/4050-39356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39363/", + "id": 39363, + "name": "Fear Itself: Book of the Skull", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-book-of-the-skull/4050-39363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39370/", + "id": 39370, + "name": "Iceman and Angel", + "site_detail_url": "https://comicvine.gamespot.com/iceman-and-angel/4050-39370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39371/", + "id": 39371, + "name": "Avengers: The Children's Crusade - Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-young-avengers/4050-39371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39382/", + "id": 39382, + "name": "Captain America and Crossbones", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-crossbones/4050-39382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39420/", + "id": 39420, + "name": "Invincible Iron Man: Stark Resilient, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-stark-resilient-book-two/4050-39420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39421/", + "id": 39421, + "name": "Shadowland: Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-daredevil/4050-39421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39422/", + "id": 39422, + "name": "Shadowland", + "site_detail_url": "https://comicvine.gamespot.com/shadowland/4050-39422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39444/", + "id": 39444, + "name": "X-Men Legacy: Collision", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-collision/4050-39444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39445/", + "id": 39445, + "name": "X-Men: Curse of the Mutants - Mutants vs. Vampires", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-mutants-vs-vampires/4050-39445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39446/", + "id": 39446, + "name": "X-Men: Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/x-men-alpha-flight/4050-39446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39453/", + "id": 39453, + "name": "FF", + "site_detail_url": "https://comicvine.gamespot.com/ff/4050-39453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39468/", + "id": 39468, + "name": "Women of Marvel: Celebrating Seven Decades", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades/4050-39468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39469/", + "id": 39469, + "name": "Civil War: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fantastic-four/4050-39469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39472/", + "id": 39472, + "name": "Marvel Vampires Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-vampires-poster-book/4050-39472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39476/", + "id": 39476, + "name": "Atlantis Attacks Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/atlantis-attacks-omnibus/4050-39476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39487/", + "id": 39487, + "name": "Spider-Man: Animal Magnetism", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-animal-magnetism/4050-39487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39489/", + "id": 39489, + "name": "Captain America: Sentinel of Liberty", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sentinel-of-liberty/4050-39489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39497/", + "id": 39497, + "name": "Captain America and Batroc", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-batroc/4050-39497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39505/", + "id": 39505, + "name": "Ares: God Of War", + "site_detail_url": "https://comicvine.gamespot.com/ares-god-of-war/4050-39505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39506/", + "id": 39506, + "name": "Avengers Rough Cut", + "site_detail_url": "https://comicvine.gamespot.com/avengers-rough-cut/4050-39506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39513/", + "id": 39513, + "name": "Age of X: Universe", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-universe/4050-39513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39519/", + "id": 39519, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4050-39519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39533/", + "id": 39533, + "name": "Avengers and the Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet/4050-39533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39534/", + "id": 39534, + "name": "X-Men: First Class", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class/4050-39534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39543/", + "id": 39543, + "name": "Incredible Hulks: Enigma Force: Dark Son", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-enigma-force-dark-son/4050-39543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39585/", + "id": 39585, + "name": "Spider-Man: You're Hired!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-youre-hired/4050-39585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39588/", + "id": 39588, + "name": "Shadowland: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-thunderbolts/4050-39588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39589/", + "id": 39589, + "name": "Thor: Godstorm", + "site_detail_url": "https://comicvine.gamespot.com/thor-godstorm/4050-39589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39590/", + "id": 39590, + "name": "X-Factor: Happenings in Vegas", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-happenings-in-vegas/4050-39590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39592/", + "id": 39592, + "name": "Thor: The Quest for Odin", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-quest-for-odin/4050-39592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39594/", + "id": 39594, + "name": "Thor: First Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-first-thunder/4050-39594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39595/", + "id": 39595, + "name": "Venom by Daniel Way Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-daniel-way-ultimate-collection/4050-39595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39596/", + "id": 39596, + "name": "Marvelman: Family's Finest", + "site_detail_url": "https://comicvine.gamespot.com/marvelman-familys-finest/4050-39596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39597/", + "id": 39597, + "name": "Fear Itself Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-sketchbook/4050-39597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39611/", + "id": 39611, + "name": "Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself/4050-39611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39616/", + "id": 39616, + "name": "Skaar: King of the Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/skaar-king-of-the-savage-land/4050-39616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39618/", + "id": 39618, + "name": "Fear Itself: The Home Front", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-home-front/4050-39618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39619/", + "id": 39619, + "name": "Deadpool: I Rule, You Suck", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-i-rule-you-suck/4050-39619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39620/", + "id": 39620, + "name": "New Mutants: Fall of the New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-fall-of-the-new-mutants/4050-39620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39621/", + "id": 39621, + "name": "Ultimate Comics Thor", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-thor/4050-39621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39622/", + "id": 39622, + "name": "Shadowland: Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-moon-knight/4050-39622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39623/", + "id": 39623, + "name": "Marvel Adventures Thor: Bringers of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thor-bringers-of-the-storm/4050-39623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39633/", + "id": 39633, + "name": "Deadpool Family", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-family/4050-39633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39639/", + "id": 39639, + "name": "Herc", + "site_detail_url": "https://comicvine.gamespot.com/herc/4050-39639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39646/", + "id": 39646, + "name": "Thunderbolts: From the Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-from-the-marvel-vault/4050-39646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39653/", + "id": 39653, + "name": "Thor: The Mighty Avenger", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-mighty-avenger/4050-39653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39654/", + "id": 39654, + "name": "Age of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/age-of-heroes/4050-39654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39672/", + "id": 39672, + "name": "Astonishing X-Men: Xenogenesis", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-xenogenesis/4050-39672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39673/", + "id": 39673, + "name": "X-Men Origins II", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-ii/4050-39673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39675/", + "id": 39675, + "name": "Super Hero Squad: Super Hero Safari", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-super-hero-safari/4050-39675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39682/", + "id": 39682, + "name": "X-Force : Under the Gun", + "site_detail_url": "https://comicvine.gamespot.com/x-force-under-the-gun/4050-39682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39684/", + "id": 39684, + "name": "Thor: The Lost Gods", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-lost-gods/4050-39684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39687/", + "id": 39687, + "name": "Tales of the Marvels: Blockbuster", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-marvels-blockbuster/4050-39687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39688/", + "id": 39688, + "name": "Deadpool Pulp", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-pulp/4050-39688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39694/", + "id": 39694, + "name": "Ultimate Comics New Ultimates: Thor Reborn", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-new-ultimates-thor-reborn/4050-39694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39704/", + "id": 39704, + "name": "Avengers: The Initiative: Dreams & Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-dreams-nightmares/4050-39704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39713/", + "id": 39713, + "name": "What If?: Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/what-if-dark-avengers/4050-39713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39715/", + "id": 39715, + "name": "Runaways: Dead End Kids", + "site_detail_url": "https://comicvine.gamespot.com/runaways-dead-end-kids/4050-39715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39716/", + "id": 39716, + "name": "Runaways: Dead Wrong", + "site_detail_url": "https://comicvine.gamespot.com/runaways-dead-wrong/4050-39716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39726/", + "id": 39726, + "name": "Black Panther: Who Is The Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-who-is-the-black-panther/4050-39726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39761/", + "id": 39761, + "name": "Journey into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery/4050-39761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39763/", + "id": 39763, + "name": "The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor/4050-39763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39765/", + "id": 39765, + "name": "Steve Rogers: Super Soldier Annual", + "site_detail_url": "https://comicvine.gamespot.com/steve-rogers-super-soldier-annual/4050-39765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39770/", + "id": 39770, + "name": "Captain America: The Fighting Avenger", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-fighting-avenger/4050-39770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39773/", + "id": 39773, + "name": "Captain America and the Secret Avengers", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-secret-avengers/4050-39773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39814/", + "id": 39814, + "name": "X-Man '97", + "site_detail_url": "https://comicvine.gamespot.com/x-man-97/4050-39814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39816/", + "id": 39816, + "name": "Astonishing X-Men Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-directors-cut/4050-39816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39818/", + "id": 39818, + "name": "Power Pack: Origin Album", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-origin-album/4050-39818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39846/", + "id": 39846, + "name": "Hulk: The Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/hulk-the-movie-adaptation/4050-39846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39847/", + "id": 39847, + "name": "Fear Itself: Sin's Past", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-sins-past/4050-39847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39859/", + "id": 39859, + "name": "Marvel Adventures: Iron Man Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-special-edition/4050-39859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39871/", + "id": 39871, + "name": "Marvel Spotlight: Marvel Knights 10th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-marvel-knights-10th-anniversary/4050-39871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39872/", + "id": 39872, + "name": "The Marvelous Adventures of Gus Beezer: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-marvelous-adventures-of-gus-beezer-hulk/4050-39872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39873/", + "id": 39873, + "name": "Marvel Adventures: Iron Man and Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-and-hulk/4050-39873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39874/", + "id": 39874, + "name": "Marvel Adventures: Iron Man, Hulk, and Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-hulk-and-spider-man/4050-39874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39876/", + "id": 39876, + "name": "Independence Day", + "site_detail_url": "https://comicvine.gamespot.com/independence-day/4050-39876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39877/", + "id": 39877, + "name": "Marvel Halloween Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/marvel-halloween-ashcan/4050-39877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39883/", + "id": 39883, + "name": "Tomb of Dracula Presents Throne of Blood", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-dracula-presents-throne-of-blood/4050-39883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39884/", + "id": 39884, + "name": "The Mighty Thor Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-saga/4050-39884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39886/", + "id": 39886, + "name": "Iron Man/Hulk Sampler", + "site_detail_url": "https://comicvine.gamespot.com/iron-manhulk-sampler/4050-39886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39887/", + "id": 39887, + "name": "Silver Surfer '97", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-97/4050-39887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39899/", + "id": 39899, + "name": "Fantastic Four: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-movie/4050-39899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39901/", + "id": 39901, + "name": "Halo: Fall of Reach - Covenant", + "site_detail_url": "https://comicvine.gamespot.com/halo-fall-of-reach-covenant/4050-39901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39904/", + "id": 39904, + "name": "Marvel Monsters: Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters-devil-dinosaur/4050-39904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39905/", + "id": 39905, + "name": "Marvel Adventures: Spider-man and Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-and-fantastic-four/4050-39905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39906/", + "id": 39906, + "name": "Silver Surfer / Thor '98", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-thor-98/4050-39906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39912/", + "id": 39912, + "name": "Mutant X 2000", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-2000/4050-39912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39914/", + "id": 39914, + "name": "Mutant X 2001", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-2001/4050-39914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39916/", + "id": 39916, + "name": "Avengers 2000", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2000/4050-39916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39917/", + "id": 39917, + "name": "Avengers 2001", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2001/4050-39917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39918/", + "id": 39918, + "name": "Peter Parker: Spider-Man / Elektra '98", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-elektra-98/4050-39918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39919/", + "id": 39919, + "name": "Peter Parker: Spider-Man 1999", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-1999/4050-39919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39920/", + "id": 39920, + "name": "Peter Parker: Spider-Man 2000", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-2000/4050-39920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39921/", + "id": 39921, + "name": "Peter Parker: Spider-Man 2001", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-spider-man-2001/4050-39921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39927/", + "id": 39927, + "name": "Chaos War", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war/4050-39927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39928/", + "id": 39928, + "name": "X-23: The Killing Dream", + "site_detail_url": "https://comicvine.gamespot.com/x-23-the-killing-dream/4050-39928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39930/", + "id": 39930, + "name": "Incredible Hulk 2001", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-2001/4050-39930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39936/", + "id": 39936, + "name": "Captain America: First Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-first-vengeance/4050-39936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39952/", + "id": 39952, + "name": "X-Men: Prelude to Schism", + "site_detail_url": "https://comicvine.gamespot.com/x-men-prelude-to-schism/4050-39952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39954/", + "id": 39954, + "name": "X-Men: Fall of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-men-fall-of-the-mutants/4050-39954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39957/", + "id": 39957, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-39957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39960/", + "id": 39960, + "name": "Fear Itself: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spider-man/4050-39960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39973/", + "id": 39973, + "name": "Deadpool Annual", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual/4050-39973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39974/", + "id": 39974, + "name": "Avengers Academy Giant-Size", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-giant-size/4050-39974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39993/", + "id": 39993, + "name": "Spidey Sunday Spectacular!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-sunday-spectacular/4050-39993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39996/", + "id": 39996, + "name": "Thor: Whosoever Wields This Hammer", + "site_detail_url": "https://comicvine.gamespot.com/thor-whosoever-wields-this-hammer/4050-39996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40015/", + "id": 40015, + "name": "Thor: Latverian Prometheus", + "site_detail_url": "https://comicvine.gamespot.com/thor-latverian-prometheus/4050-40015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40020/", + "id": 40020, + "name": "Free Comic Book Day 2011 (Spider-Man)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2011-spider-man/4050-40020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40022/", + "id": 40022, + "name": "Free Comic Book Day 2011 (Thor the Mighty Avenger)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2011-thor-the-mighty-avenger/4050-40022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40026/", + "id": 40026, + "name": "Marvel Adventures Spider-Man: Sensational", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-sensational/4050-40026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40105/", + "id": 40105, + "name": "Fear Itself: Youth in Revolt", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-youth-in-revolt/4050-40105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40109/", + "id": 40109, + "name": "Thor: Asgard’s Avenger", + "site_detail_url": "https://comicvine.gamespot.com/thor-asgards-avenger/4050-40109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40111/", + "id": 40111, + "name": "Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics/4050-40111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40112/", + "id": 40112, + "name": "Marvel Annual Report", + "site_detail_url": "https://comicvine.gamespot.com/marvel-annual-report/4050-40112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40127/", + "id": 40127, + "name": "Fear Itself: The Worthy", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-worthy/4050-40127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40128/", + "id": 40128, + "name": "Captain America: The Captain", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-captain/4050-40128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40129/", + "id": 40129, + "name": "Thing Classic", + "site_detail_url": "https://comicvine.gamespot.com/thing-classic/4050-40129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40130/", + "id": 40130, + "name": "Klaws of the Panther", + "site_detail_url": "https://comicvine.gamespot.com/klaws-of-the-panther/4050-40130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40131/", + "id": 40131, + "name": "Fantastic Four: Extended Family", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-extended-family/4050-40131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40132/", + "id": 40132, + "name": "Iron Man: Rapture", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-rapture/4050-40132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40133/", + "id": 40133, + "name": "Strange Tales II", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales-ii/4050-40133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40151/", + "id": 40151, + "name": "Anita Blake, Vampire Hunter: The First Death", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-first-death/4050-40151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40157/", + "id": 40157, + "name": "Anita Blake, Vampire Hunter: Guilty Pleasures", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-guilty-pleasures/4050-40157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40164/", + "id": 40164, + "name": "Hawkeye and Mockingbird/Black Widow: Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-and-mockingbirdblack-widow-widowmaker/4050-40164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40166/", + "id": 40166, + "name": "Captain America: The Legacy of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-legacy-of-captain-america/4050-40166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40167/", + "id": 40167, + "name": "Shadowland: Blood on the Streets", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-blood-on-the-streets/4050-40167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40168/", + "id": 40168, + "name": "X-Men Forever 2: Perfect World", + "site_detail_url": "https://comicvine.gamespot.com/x-men-forever-2-perfect-world/4050-40168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40169/", + "id": 40169, + "name": "Avengers Prime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime/4050-40169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40183/", + "id": 40183, + "name": "Iron Man: Industrial Revolution", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-industrial-revolution/4050-40183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40184/", + "id": 40184, + "name": "Shadowland: Power Man", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-power-man/4050-40184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40185/", + "id": 40185, + "name": "Chaos War: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-avengers/4050-40185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40186/", + "id": 40186, + "name": "Invaders Now!", + "site_detail_url": "https://comicvine.gamespot.com/invaders-now/4050-40186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40203/", + "id": 40203, + "name": "Captain America: The Trial of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-trial-of-captain-america/4050-40203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40207/", + "id": 40207, + "name": "X-Men Giant-Size", + "site_detail_url": "https://comicvine.gamespot.com/x-men-giant-size/4050-40207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40215/", + "id": 40215, + "name": "Namor: The First Mutant Annual", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-first-mutant-annual/4050-40215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40216/", + "id": 40216, + "name": "Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight/4050-40216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40217/", + "id": 40217, + "name": "X-Men: Prelude to Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-prelude-to-age-of-apocalypse/4050-40217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40240/", + "id": 40240, + "name": "New X-Men By Grant Morrison", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-by-grant-morrison/4050-40240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40248/", + "id": 40248, + "name": "X-Men: Dark Phoenix Saga Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-dark-phoenix-saga-complete-collection/4050-40248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40262/", + "id": 40262, + "name": "Thor by Walter Simonson Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-walter-simonson-omnibus/4050-40262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40264/", + "id": 40264, + "name": "Ultimate Comics Avengers: Blade vs. the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-blade-vs-the-avengers/4050-40264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40271/", + "id": 40271, + "name": "Ultimate Fantastic Four: Doom", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-doom/4050-40271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40272/", + "id": 40272, + "name": "Ultimate Fantastic Four: The Fantastic", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-the-fantastic/4050-40272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40274/", + "id": 40274, + "name": "Ultimate Fantastic Four: N-Zone", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-n-zone/4050-40274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40281/", + "id": 40281, + "name": "Ultimate Fantastic Four: God War", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-god-war/4050-40281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40349/", + "id": 40349, + "name": "Emma Frost: Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost-ultimate-collection/4050-40349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40359/", + "id": 40359, + "name": "Chaos War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-x-men/4050-40359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40370/", + "id": 40370, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse: Animator", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse-ani/4050-40370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40391/", + "id": 40391, + "name": "X-Men: Earth's Mutant Heroes", + "site_detail_url": "https://comicvine.gamespot.com/x-men-earths-mutant-heroes/4050-40391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40392/", + "id": 40392, + "name": "X-Men: Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/x-men-spotlight/4050-40392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40411/", + "id": 40411, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse: Necromancer", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse-nec/4050-40411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40413/", + "id": 40413, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse: Executioner", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse-exe/4050-40413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40418/", + "id": 40418, + "name": "Fear Itself: The Deep", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-deep/4050-40418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40423/", + "id": 40423, + "name": "Mary Jane: Circle of Friends", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-circle-of-friends/4050-40423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40425/", + "id": 40425, + "name": "X-Men: To Serve and Protect", + "site_detail_url": "https://comicvine.gamespot.com/x-men-to-serve-and-protect/4050-40425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40434/", + "id": 40434, + "name": "S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/shield/4050-40434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40452/", + "id": 40452, + "name": "Uncanny X-Force: The Apocalypse Solution", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-the-apocalypse-solution/4050-40452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40453/", + "id": 40453, + "name": "Warriors Three: Dog Day Afternoon", + "site_detail_url": "https://comicvine.gamespot.com/warriors-three-dog-day-afternoon/4050-40453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40480/", + "id": 40480, + "name": "Captain America vs. the Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-vs-the-red-skull/4050-40480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40483/", + "id": 40483, + "name": "Red Hulk: Scorched Earth", + "site_detail_url": "https://comicvine.gamespot.com/red-hulk-scorched-earth/4050-40483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40486/", + "id": 40486, + "name": "S.H.I.E.L.D.: Architects of Forever", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d-architects-of-forever/4050-40486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40487/", + "id": 40487, + "name": "Spider-Man: New York Stories", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-new-york-stories/4050-40487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40490/", + "id": 40490, + "name": "Thunderbolts Classic", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-classic/4050-40490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40493/", + "id": 40493, + "name": "X-Men: First Class: Class Portraits", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-class-portraits/4050-40493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40496/", + "id": 40496, + "name": "Eternals", + "site_detail_url": "https://comicvine.gamespot.com/eternals/4050-40496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40500/", + "id": 40500, + "name": "X-Men: With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/x-men-with-great-power/4050-40500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40527/", + "id": 40527, + "name": "15-Love", + "site_detail_url": "https://comicvine.gamespot.com/15-love/4050-40527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40528/", + "id": 40528, + "name": "Mystery Men", + "site_detail_url": "https://comicvine.gamespot.com/mystery-men/4050-40528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40531/", + "id": 40531, + "name": "Sensational She-Hulk by John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/sensational-she-hulk-by-john-byrne/4050-40531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40532/", + "id": 40532, + "name": "Thor: Trials of Loki", + "site_detail_url": "https://comicvine.gamespot.com/thor-trials-of-loki/4050-40532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40533/", + "id": 40533, + "name": "Generation Hope: The Future's A Four-Letter Word", + "site_detail_url": "https://comicvine.gamespot.com/generation-hope-the-future-s-a-four-letter-word/4050-40533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40536/", + "id": 40536, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-40536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40537/", + "id": 40537, + "name": "The Iron Age: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-age-alpha/4050-40537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40543/", + "id": 40543, + "name": "Fear Itself: Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-deadpool/4050-40543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40565/", + "id": 40565, + "name": "Avengers Universe", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe/4050-40565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40592/", + "id": 40592, + "name": "Avengers: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes/4050-40592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40594/", + "id": 40594, + "name": "Captain America: Allies and Enemies", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-allies-and-enemies/4050-40594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40595/", + "id": 40595, + "name": "Captain America: Forever Allies", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-forever-allies/4050-40595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40596/", + "id": 40596, + "name": "Taskmaster: Unthinkable", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster-unthinkable/4050-40596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40597/", + "id": 40597, + "name": "Thor: For Asgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-for-asgard/4050-40597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40599/", + "id": 40599, + "name": "Thor/Iron Man: God Complex", + "site_detail_url": "https://comicvine.gamespot.com/thoriron-man-god-complex/4050-40599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40600/", + "id": 40600, + "name": "Thor: Wolves of the North", + "site_detail_url": "https://comicvine.gamespot.com/thor-wolves-of-the-north/4050-40600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40601/", + "id": 40601, + "name": "Thor: The Warriors Three Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-warriors-three-unleashed/4050-40601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40602/", + "id": 40602, + "name": "Avengers: We Are the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-we-are-the-avengers/4050-40602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40603/", + "id": 40603, + "name": "Fear Itself: Fearsome Four", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-fearsome-four/4050-40603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40606/", + "id": 40606, + "name": "Trouble", + "site_detail_url": "https://comicvine.gamespot.com/trouble/4050-40606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40661/", + "id": 40661, + "name": "Captain America and the Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-korvac-saga/4050-40661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40670/", + "id": 40670, + "name": "Mary Jane: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-homecoming/4050-40670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40694/", + "id": 40694, + "name": "Uncanny X-Men: Quarantine", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-quarantine/4050-40694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40712/", + "id": 40712, + "name": "Captain America Corps", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps/4050-40712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40716/", + "id": 40716, + "name": "Wolverine and Jubilee: Curse of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-jubilee-curse-of-the-mutants/4050-40716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40723/", + "id": 40723, + "name": "Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar/4050-40723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40727/", + "id": 40727, + "name": "Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-omnibus/4050-40727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40731/", + "id": 40731, + "name": "Deadpool Corps: You Say You Want A Revolution?", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-corps-you-say-you-want-a-revolution/4050-40731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40732/", + "id": 40732, + "name": "Marvel Adventures: Thor/Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-thorspider-man/4050-40732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40746/", + "id": 40746, + "name": "The Amazing Spider-Man: The Extremist", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-extremist/4050-40746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40747/", + "id": 40747, + "name": "Spider-Man: Hobgoblin Lives", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-hobgoblin-lives/4050-40747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40748/", + "id": 40748, + "name": "Amazing Spider-Man: Matters of Life and Death", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-matters-of-life-and-death/4050-40748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40749/", + "id": 40749, + "name": "Thor: Lord of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-lord-of-asgard/4050-40749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40754/", + "id": 40754, + "name": "Cable: The End", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-end/4050-40754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40784/", + "id": 40784, + "name": "Deadpool Max: Nutjob", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-max-nutjob/4050-40784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40785/", + "id": 40785, + "name": "Death of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/death-of-dracula/4050-40785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40786/", + "id": 40786, + "name": "Thor: The World Eaters", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-world-eaters/4050-40786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40787/", + "id": 40787, + "name": "Ultimate Comics Doomsday", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-doomsday/4050-40787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40802/", + "id": 40802, + "name": "5 Ronin", + "site_detail_url": "https://comicvine.gamespot.com/5-ronin/4050-40802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40803/", + "id": 40803, + "name": "Captain America: Man Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-man-out-of-time/4050-40803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40805/", + "id": 40805, + "name": "Mystique by Brian K. Vaughan Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/mystique-by-brian-k-vaughan-ultimate-collection/4050-40805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40807/", + "id": 40807, + "name": "Invincible Iron Man: My Monsters", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-my-monsters/4050-40807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40809/", + "id": 40809, + "name": "Punisher: In the Blood", + "site_detail_url": "https://comicvine.gamespot.com/punisher-in-the-blood/4050-40809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40810/", + "id": 40810, + "name": "Thunderstrike: Youth in Revolt", + "site_detail_url": "https://comicvine.gamespot.com/thunderstrike-youth-in-revolt/4050-40810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40812/", + "id": 40812, + "name": "Ultimate Comics Captain America", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-captain-america/4050-40812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40891/", + "id": 40891, + "name": "Fantastic Four: The Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-last-stand/4050-40891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40895/", + "id": 40895, + "name": "The New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers/4050-40895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40911/", + "id": 40911, + "name": "X-Men: Age of X", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-x/4050-40911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40923/", + "id": 40923, + "name": "Avengers Academy: Meet the New Class", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-meet-the-new-class/4050-40923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40940/", + "id": 40940, + "name": "Captain America: To Serve and Protect", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-to-serve-and-protect/4050-40940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40944/", + "id": 40944, + "name": "Thing: Idol of Millions", + "site_detail_url": "https://comicvine.gamespot.com/thing-idol-of-millions/4050-40944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40946/", + "id": 40946, + "name": "Thor: Son of Asgard: The Warriors Teen", + "site_detail_url": "https://comicvine.gamespot.com/thor-son-of-asgard-the-warriors-teen/4050-40946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40947/", + "id": 40947, + "name": "Thor: Son of Asgard: Worthy", + "site_detail_url": "https://comicvine.gamespot.com/thor-son-of-asgard-worthy/4050-40947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40950/", + "id": 40950, + "name": "Thor: Son of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-son-of-asgard/4050-40950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40952/", + "id": 40952, + "name": "Fantastic Four: Books of Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-books-of-doom/4050-40952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40954/", + "id": 40954, + "name": "Eternals by Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/eternals-by-jack-kirby/4050-40954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40960/", + "id": 40960, + "name": "Marvel 1602: New World/Fantastick Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-worldfantastick-four/4050-40960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40977/", + "id": 40977, + "name": "Thanos: Infinity Abyss", + "site_detail_url": "https://comicvine.gamespot.com/thanos-infinity-abyss/4050-40977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40979/", + "id": 40979, + "name": "Avengers: The Kang Dynasty", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-kang-dynasty/4050-40979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40982/", + "id": 40982, + "name": "X-Men: With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/x-men-with-great-power/4050-40982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40988/", + "id": 40988, + "name": "Anita Blake, Vampire Hunter: Circus Of The Damned", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-circus-of-the-damned/4050-40988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40993/", + "id": 40993, + "name": "New Avengers: American Armed Forces Exclusive Special", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-american-armed-forces-exclusive-speci/4050-40993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41026/", + "id": 41026, + "name": "Drax the Destroyer: Earthfall", + "site_detail_url": "https://comicvine.gamespot.com/drax-the-destroyer-earthfall/4050-41026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41027/", + "id": 41027, + "name": "X-Men: Magneto Testament", + "site_detail_url": "https://comicvine.gamespot.com/x-men-magneto-testament/4050-41027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41028/", + "id": 41028, + "name": "Angel: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/angel-revelations/4050-41028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41029/", + "id": 41029, + "name": "Spider-Man: Origin of the Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-origin-of-the-hobgoblin/4050-41029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41039/", + "id": 41039, + "name": "Marvel Universe vs. Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-wolverine/4050-41039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41040/", + "id": 41040, + "name": "Incredible Hulks Annual", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-annual/4050-41040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41041/", + "id": 41041, + "name": "Zombies Christmas Carol", + "site_detail_url": "https://comicvine.gamespot.com/zombies-christmas-carol/4050-41041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41042/", + "id": 41042, + "name": "Iron Age", + "site_detail_url": "https://comicvine.gamespot.com/iron-age/4050-41042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41054/", + "id": 41054, + "name": "Fear Itself: The Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-black-widow/4050-41054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41057/", + "id": 41057, + "name": "The Incredible Hulk & The Human Torch: From the Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-the-human-torch-from-the-marve/4050-41057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41079/", + "id": 41079, + "name": "PunisherMAX: Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/punishermax-kingpin/4050-41079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41080/", + "id": 41080, + "name": "PunisherMAX: Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/punishermax-bullseye/4050-41080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41085/", + "id": 41085, + "name": "She-Hulks: Hunt For the Intelligencia", + "site_detail_url": "https://comicvine.gamespot.com/she-hulks-hunt-for-the-intelligencia/4050-41085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41087/", + "id": 41087, + "name": "Thor: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/thor-resurrection/4050-41087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41088/", + "id": 41088, + "name": "X-Men Visionaries", + "site_detail_url": "https://comicvine.gamespot.com/x-men-visionaries/4050-41088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41089/", + "id": 41089, + "name": "X-Men Visionaries: Chris Claremont", + "site_detail_url": "https://comicvine.gamespot.com/x-men-visionaries-chris-claremont/4050-41089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41090/", + "id": 41090, + "name": "X-Men Visionaries: Jim Lee", + "site_detail_url": "https://comicvine.gamespot.com/x-men-visionaries-jim-lee/4050-41090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41091/", + "id": 41091, + "name": "X-Men Visionaries: Joe Madureira", + "site_detail_url": "https://comicvine.gamespot.com/x-men-visionaries-joe-madureira/4050-41091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41093/", + "id": 41093, + "name": "Marvel Masterworks: Golden Age Daring Mystery", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-daring-mystery/4050-41093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41097/", + "id": 41097, + "name": "Deadpool Team-Up: BFFs", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-team-up-bffs/4050-41097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41098/", + "id": 41098, + "name": "Captain Britain: Birth of a Legend", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-birth-of-a-legend/4050-41098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41099/", + "id": 41099, + "name": "Osborn: Evil Incarcerated", + "site_detail_url": "https://comicvine.gamespot.com/osborn-evil-incarcerated/4050-41099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41100/", + "id": 41100, + "name": "Thor: Thunderstrike", + "site_detail_url": "https://comicvine.gamespot.com/thor-thunderstrike/4050-41100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41101/", + "id": 41101, + "name": "Ant-Man and Wasp: Small World", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-and-wasp-small-world/4050-41101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41102/", + "id": 41102, + "name": "Captain America: American Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-american-nightmare/4050-41102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41112/", + "id": 41112, + "name": "All-Winners Squad: Band of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/all-winners-squad-band-of-heroes/4050-41112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41113/", + "id": 41113, + "name": "Captain America: America's Avenger", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-americas-avenger/4050-41113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41117/", + "id": 41117, + "name": "Captain America by Dan Jurgens", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-dan-jurgens/4050-41117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41118/", + "id": 41118, + "name": "Captain America: The Fighting Avenger", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-fighting-avenger/4050-41118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41120/", + "id": 41120, + "name": "Thor: Gods on Earth", + "site_detail_url": "https://comicvine.gamespot.com/thor-gods-on-earth/4050-41120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41121/", + "id": 41121, + "name": "Avengers: West Coast Avengers - Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-family-ties/4050-41121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41122/", + "id": 41122, + "name": "Captain America: Red Menace Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-menace-ultimate-collection/4050-41122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41136/", + "id": 41136, + "name": "Wolverine & The Black Cat: Claws 2", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-black-cat-claws-2/4050-41136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41143/", + "id": 41143, + "name": "Fear Itself: Uncanny X-Force", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-uncanny-x-force/4050-41143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41144/", + "id": 41144, + "name": "Fear Itself: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-wolverine/4050-41144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41147/", + "id": 41147, + "name": "Ultimatum Companion", + "site_detail_url": "https://comicvine.gamespot.com/ultimatum-companion/4050-41147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41149/", + "id": 41149, + "name": "Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/vengeance/4050-41149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41150/", + "id": 41150, + "name": "Avengers vs. Pet Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-pet-avengers/4050-41150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41151/", + "id": 41151, + "name": "Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/red-skull/4050-41151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41202/", + "id": 41202, + "name": "Deadpool by Daniel Way", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-daniel-way/4050-41202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41203/", + "id": 41203, + "name": "Impossible Man", + "site_detail_url": "https://comicvine.gamespot.com/impossible-man/4050-41203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41239/", + "id": 41239, + "name": "Chaos War: Incredible Hulks", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-incredible-hulks/4050-41239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41240/", + "id": 41240, + "name": "Marvel Monsters: Where Monsters Dwell", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters-where-monsters-dwell/4050-41240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41245/", + "id": 41245, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-41245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41260/", + "id": 41260, + "name": "Captain America by Jack Kirby Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-jack-kirby-omnibus/4050-41260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41262/", + "id": 41262, + "name": "Deadpool: Space Oddity", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-space-oddity/4050-41262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41263/", + "id": 41263, + "name": "Secret Warriors: Night", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-night/4050-41263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41265/", + "id": 41265, + "name": "Doctor Strange: Into the Dark Dimension", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-into-the-dark-dimension/4050-41265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41266/", + "id": 41266, + "name": "Mystique by Sean McKeever Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/mystique-by-sean-mckeever-ultimate-collection/4050-41266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41267/", + "id": 41267, + "name": "Secret Avengers: Eyes of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-eyes-of-the-dragon/4050-41267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41268/", + "id": 41268, + "name": "Thing: Liberty Legion", + "site_detail_url": "https://comicvine.gamespot.com/thing-liberty-legion/4050-41268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41269/", + "id": 41269, + "name": "Ultimate Comics Spider-Man: Death of Spider-Man Prelude", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-pre/4050-41269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41272/", + "id": 41272, + "name": "Daredevil: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-reborn/4050-41272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41273/", + "id": 41273, + "name": "Deadpool: Dead Head Redemption", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-dead-head-redemption/4050-41273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41275/", + "id": 41275, + "name": "Spider-Man: The Original Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-original-clone-saga/4050-41275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41277/", + "id": 41277, + "name": "Marvel Visionaries: Chris Claremont", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-chris-claremont/4050-41277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41278/", + "id": 41278, + "name": "Super Hero Squad Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-spectacular/4050-41278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41280/", + "id": 41280, + "name": "Spider-Island Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-daily-bugle/4050-41280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41281/", + "id": 41281, + "name": "X-Men: Schism", + "site_detail_url": "https://comicvine.gamespot.com/x-men-schism/4050-41281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41287/", + "id": 41287, + "name": "Marvel Visionaries: Gil Kane", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-gil-kane/4050-41287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41288/", + "id": 41288, + "name": "Marvel Visionaries: Jim Steranko", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-jim-steranko/4050-41288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41289/", + "id": 41289, + "name": "Ultimate Fallout", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fallout/4050-41289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41309/", + "id": 41309, + "name": "Marvel Visionaries: John Buscema", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-john-buscema/4050-41309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41311/", + "id": 41311, + "name": "Marvel Visionaries: John Romita Jr.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-john-romita-jr/4050-41311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41312/", + "id": 41312, + "name": "Marvel Visionaries: John Romita Sr.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-john-romita-sr/4050-41312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41316/", + "id": 41316, + "name": "Marvel Visionaries: Stan Lee", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-stan-lee/4050-41316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41318/", + "id": 41318, + "name": "Marvel Visionaries: Steve Ditko", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-steve-ditko/4050-41318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41335/", + "id": 41335, + "name": "The Amazing Spider-Man vs. the Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-vs-the-prodigy/4050-41335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41342/", + "id": 41342, + "name": "Marvel Visionaries: Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-jack-kirby/4050-41342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41353/", + "id": 41353, + "name": "Marvel Visionaries: Roy Thomas", + "site_detail_url": "https://comicvine.gamespot.com/marvel-visionaries-roy-thomas/4050-41353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41365/", + "id": 41365, + "name": "Dark Tower: The Gunslinger - The Battle of Tull", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-battle-of-tull/4050-41365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41366/", + "id": 41366, + "name": "Defenders: From the Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/defenders-from-the-marvel-vault/4050-41366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41368/", + "id": 41368, + "name": "X-Men vs. Avengers/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-avengersfantastic-four/4050-41368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41384/", + "id": 41384, + "name": "Hawkeye: Blind Spot", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-blind-spot/4050-41384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41386/", + "id": 41386, + "name": "Hulk-Sized Mini-Hulks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-sized-mini-hulks/4050-41386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41391/", + "id": 41391, + "name": "Daredevil/Echo: Vision Quest", + "site_detail_url": "https://comicvine.gamespot.com/daredevilecho-vision-quest/4050-41391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41405/", + "id": 41405, + "name": "X-Men: X-Tinction Agenda", + "site_detail_url": "https://comicvine.gamespot.com/x-men-x-tinction-agenda/4050-41405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41406/", + "id": 41406, + "name": "Fantastic Four/Spider-Man Classic", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fourspider-man-classic/4050-41406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41410/", + "id": 41410, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-41410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41417/", + "id": 41417, + "name": "Fear Itself: FF", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-ff/4050-41417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41424/", + "id": 41424, + "name": "Peter Porker, the Spectacular Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/peter-porker-the-spectacular-spider-ham/4050-41424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41426/", + "id": 41426, + "name": "Spider-Man: Spider-Women", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-women/4050-41426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41430/", + "id": 41430, + "name": "Spider-Man Visionaries: Roger Stern", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-roger-stern/4050-41430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41431/", + "id": 41431, + "name": "Spider-Man Visionaries: John Romita", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-john-romita/4050-41431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41437/", + "id": 41437, + "name": "Casper", + "site_detail_url": "https://comicvine.gamespot.com/casper/4050-41437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41441/", + "id": 41441, + "name": "Independence Day", + "site_detail_url": "https://comicvine.gamespot.com/independence-day/4050-41441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41444/", + "id": 41444, + "name": "RoboCop", + "site_detail_url": "https://comicvine.gamespot.com/robocop/4050-41444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41445/", + "id": 41445, + "name": "Disney's Toy Story", + "site_detail_url": "https://comicvine.gamespot.com/disneys-toy-story/4050-41445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41451/", + "id": 41451, + "name": "Strange Days: Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/strange-days-movie-adaptation/4050-41451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41455/", + "id": 41455, + "name": "Spider-Man Visionaries: Kurt Busiek", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-kurt-busiek/4050-41455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41456/", + "id": 41456, + "name": "Spider-Man Visionaries: Todd McFarlane", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-visionaries-todd-mcfarlane/4050-41456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41457/", + "id": 41457, + "name": "Spider-Man Legends", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-legends/4050-41457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41459/", + "id": 41459, + "name": "Nick Fury, Agent of SHIELD: Who Is Scorpio?", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-agent-of-shield-who-is-scorpio/4050-41459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41461/", + "id": 41461, + "name": "Super Hero Squad: A Squad For All Seasons", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-a-squad-for-all-seasons/4050-41461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41502/", + "id": 41502, + "name": "Fantastic Four by Waid and Wieringo Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-ultimate-colle/4050-41502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41503/", + "id": 41503, + "name": "Marvel Adventures Avengers: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-hulk/4050-41503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41504/", + "id": 41504, + "name": "Thor: Blood and Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-blood-and-thunder/4050-41504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41505/", + "id": 41505, + "name": "Captain America: First Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-first-vengeance/4050-41505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41506/", + "id": 41506, + "name": "Captain America: Hail Hydra", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-hail-hydra/4050-41506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41507/", + "id": 41507, + "name": "Heroes for Hire: Control", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-control/4050-41507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41511/", + "id": 41511, + "name": "Thor: Heaven & Earth", + "site_detail_url": "https://comicvine.gamespot.com/thor-heaven-earth/4050-41511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41519/", + "id": 41519, + "name": "The Hood: Blood From Stones", + "site_detail_url": "https://comicvine.gamespot.com/the-hood-blood-from-stones/4050-41519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41523/", + "id": 41523, + "name": "Marvel Adventures: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-captain-america/4050-41523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41524/", + "id": 41524, + "name": "Black Panther: The Man Without Fear: Urban Jungle", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-man-without-fear-urban-jungle/4050-41524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41551/", + "id": 41551, + "name": "Fear Itself: The Worthy", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-worthy/4050-41551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41552/", + "id": 41552, + "name": "Captain America and Bucky", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-bucky/4050-41552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41560/", + "id": 41560, + "name": "Supreme Power", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power/4050-41560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41571/", + "id": 41571, + "name": "Fear Itself: Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spotlight/4050-41571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41578/", + "id": 41578, + "name": "The New Avengers 100 Project", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-100-project/4050-41578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41579/", + "id": 41579, + "name": "Wolverine/Deadpool: The Decoy", + "site_detail_url": "https://comicvine.gamespot.com/wolverinedeadpool-the-decoy/4050-41579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41619/", + "id": 41619, + "name": "Uncanny X-Force: Deathlok Nation", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-deathlok-nation/4050-41619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41758/", + "id": 41758, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-41758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41800/", + "id": 41800, + "name": "Captain America & Thor: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-thor-avengers/4050-41800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41827/", + "id": 41827, + "name": "Thor: Spiral", + "site_detail_url": "https://comicvine.gamespot.com/thor-spiral/4050-41827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41828/", + "id": 41828, + "name": "Wolverine: The Best There Is: Contagion", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-best-there-is-contagion/4050-41828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41829/", + "id": 41829, + "name": "X-Factor: Scar Tissue", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-scar-tissue/4050-41829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41846/", + "id": 41846, + "name": "X-Men: Lifedeath", + "site_detail_url": "https://comicvine.gamespot.com/x-men-lifedeath/4050-41846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41847/", + "id": 41847, + "name": "Daken/X-23: Collision", + "site_detail_url": "https://comicvine.gamespot.com/dakenx-23-collision/4050-41847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41853/", + "id": 41853, + "name": "Incredible Hulks: Planet Savage", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-planet-savage/4050-41853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41854/", + "id": 41854, + "name": "Marvel Point One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-point-one/4050-41854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41889/", + "id": 41889, + "name": "Mighty Avengers: Assemble", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-assemble/4050-41889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41955/", + "id": 41955, + "name": "Spider-Island: Cloak & Dagger", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-cloak-dagger/4050-41955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41961/", + "id": 41961, + "name": "Marvel Adventures Iron Man: Armored Avenger", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-iron-man-armored-avenger/4050-41961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41965/", + "id": 41965, + "name": "Onslaught Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/onslaught-unleashed/4050-41965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41966/", + "id": 41966, + "name": "Spider-Man: Am I an Avenger?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-am-i-an-avenger/4050-41966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41982/", + "id": 41982, + "name": "Venom: Flashpoint", + "site_detail_url": "https://comicvine.gamespot.com/venom-flashpoint/4050-41982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42009/", + "id": 42009, + "name": "The Stand: The Night Has Come", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-the-night-has-come/4050-42009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42012/", + "id": 42012, + "name": "Spider-Island: Deadly Foes", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-deadly-foes/4050-42012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42051/", + "id": 42051, + "name": "Thor: The Black Galaxy Saga", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-black-galaxy-saga/4050-42051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42052/", + "id": 42052, + "name": "Thunderbolts: Violent Rejection", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-violent-rejection/4050-42052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42053/", + "id": 42053, + "name": "Wolverine: Wolverine vs. the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wolverine-vs-the-x-men/4050-42053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42054/", + "id": 42054, + "name": "X-Men/Steve Rogers: Escape from the Negative Zone", + "site_detail_url": "https://comicvine.gamespot.com/x-mensteve-rogers-escape-from-the-negative-zone/4050-42054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42055/", + "id": 42055, + "name": "Black Widow: Kiss or Kill", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-kiss-or-kill/4050-42055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42056/", + "id": 42056, + "name": "The Amazing Spider-Man: The Complete Ben Reilly Epic", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-ben-reilly-epi/4050-42056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42131/", + "id": 42131, + "name": "Spider-Island: The Amazing Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-the-amazing-spider-girl/4050-42131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42132/", + "id": 42132, + "name": "Weapon Omega", + "site_detail_url": "https://comicvine.gamespot.com/weapon-omega/4050-42132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42179/", + "id": 42179, + "name": "Marvel Super Stars Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-stars-magazine/4050-42179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42322/", + "id": 42322, + "name": "Ultimate Comics Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-ultimates/4050-42322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42359/", + "id": 42359, + "name": "Marvel Spotlight: Laurell K. Hamilton/George R.R. Martin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-laurell-k-hamiltongeorge-rr-marti/4050-42359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42369/", + "id": 42369, + "name": "The Iron Age: Omega", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-age-omega/4050-42369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42370/", + "id": 42370, + "name": "Carnage: Family Feud", + "site_detail_url": "https://comicvine.gamespot.com/carnage-family-feud/4050-42370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42372/", + "id": 42372, + "name": "Silver Surfer: Devolution", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-devolution/4050-42372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42402/", + "id": 42402, + "name": "X-Men Legacy: Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-aftermath/4050-42402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42441/", + "id": 42441, + "name": "Amazing Spider-Man by David Michelinie & Todd McFarlane Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-david-michelinie-and-todd-mc/4050-42441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42462/", + "id": 42462, + "name": "Ultimate Comics Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-hawkeye/4050-42462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42489/", + "id": 42489, + "name": "Fantastic Four Trapped in the Data Vortex", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-trapped-in-the-data-vortex/4050-42489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42490/", + "id": 42490, + "name": "Giant Size Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-spider-man/4050-42490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42513/", + "id": 42513, + "name": "Spider-Island: Deadly Hands of Kung Fu", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-deadly-hands-of-kung-fu/4050-42513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42547/", + "id": 42547, + "name": "Spider-Island: Emergence of Evil - Jackal & Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-emergence-of-evil-jackal-hobgoblin/4050-42547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42561/", + "id": 42561, + "name": "Gambit and the Champions: From the Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/gambit-and-the-champions-from-the-marvel-vault/4050-42561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42573/", + "id": 42573, + "name": "X-Men: Inferno", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno/4050-42573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42577/", + "id": 42577, + "name": "Astonishing Spider-Man and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-spider-man-and-wolverine/4050-42577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42579/", + "id": 42579, + "name": "Avengers Academy: Will We Use This In The Real World?", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-will-we-use-this-in-the-real-worl/4050-42579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42580/", + "id": 42580, + "name": "Spider-Man/Hulk/Deadpool: Identity Wars", + "site_detail_url": "https://comicvine.gamespot.com/spider-manhulkdeadpool-identity-wars/4050-42580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42582/", + "id": 42582, + "name": "Amazing Spider-Man: The Fantastic Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-fantastic-spider-man/4050-42582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42583/", + "id": 42583, + "name": "Thor: Gods and Men", + "site_detail_url": "https://comicvine.gamespot.com/thor-gods-and-men/4050-42583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42584/", + "id": 42584, + "name": "Wolverine/Hercules: Myths, Monsters, and Mutants", + "site_detail_url": "https://comicvine.gamespot.com/wolverinehercules-myths-monsters-and-mutants/4050-42584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42589/", + "id": 42589, + "name": "Amazing Spider-Man: Infested", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-infested/4050-42589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42605/", + "id": 42605, + "name": "Special Edition: Spider-Man and the Hulk", + "site_detail_url": "https://comicvine.gamespot.com/special-edition-spider-man-and-the-hulk/4050-42605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42606/", + "id": 42606, + "name": "Spider-Man and the Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk/4050-42606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42607/", + "id": 42607, + "name": "Special Edition: Spider-Man vs. the Hulk", + "site_detail_url": "https://comicvine.gamespot.com/special-edition-spider-man-vs-the-hulk/4050-42607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42613/", + "id": 42613, + "name": "Wolverine: Debt of Death", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-debt-of-death/4050-42613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42657/", + "id": 42657, + "name": "Spider-Island: I Love New York City", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-i-love-new-york-city/4050-42657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42661/", + "id": 42661, + "name": "Mystic", + "site_detail_url": "https://comicvine.gamespot.com/mystic/4050-42661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42663/", + "id": 42663, + "name": "Spider-Island: The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-the-avengers/4050-42663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42683/", + "id": 42683, + "name": "New Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual/4050-42683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42737/", + "id": 42737, + "name": "X-Men First Class: The High Hand", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-the-high-hand/4050-42737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42738/", + "id": 42738, + "name": "Fear Itself: Fellowship of Fear", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-fellowship-of-fear/4050-42738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42821/", + "id": 42821, + "name": "Ultimate Comics Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man/4050-42821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42824/", + "id": 42824, + "name": "Thunderbolts by Warren Ellis & Mike Deodato Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-mike-deodato-ultimate/4050-42824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42845/", + "id": 42845, + "name": "Avengers Academy: Arcade Death Game", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-arcade-death-game/4050-42845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42846/", + "id": 42846, + "name": "Marvel Adventures Spider-Man: Friendly Neighborhood", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-friendly-neighborhood/4050-42846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42899/", + "id": 42899, + "name": "Fear Itself: Hulk vs. Dracula", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-hulk-vs-dracula/4050-42899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42918/", + "id": 42918, + "name": "Fear Itself: The Monkey King", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-monkey-king/4050-42918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42927/", + "id": 42927, + "name": "Spider-Man: The Death of Jean DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-death-of-jean-dewolff/4050-42927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42928/", + "id": 42928, + "name": "X-Men: Fallen Angels", + "site_detail_url": "https://comicvine.gamespot.com/x-men-fallen-angels/4050-42928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42930/", + "id": 42930, + "name": "Captain America: Prisoner of War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-prisoner-of-war/4050-42930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42931/", + "id": 42931, + "name": "Young Marvelman Classic", + "site_detail_url": "https://comicvine.gamespot.com/young-marvelman-classic/4050-42931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42932/", + "id": 42932, + "name": "Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers/4050-42932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42935/", + "id": 42935, + "name": "Rocket Raccoon: Guardian of the Keystone Quadrant", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-guardian-of-the-keystone-quadrant/4050-42935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42936/", + "id": 42936, + "name": "X-Men Vs. Apocalypse: The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-apocalypse-the-twelve/4050-42936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42940/", + "id": 42940, + "name": "X-Men: X-Cutioner's Song", + "site_detail_url": "https://comicvine.gamespot.com/x-men-x-cutioners-song/4050-42940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42944/", + "id": 42944, + "name": "The Punisher Marvel Knights: Trade Paperback", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-marvel-knights-trade-paperback/4050-42944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42945/", + "id": 42945, + "name": "Avengers: Assault on Olympus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assault-on-olympus/4050-42945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42947/", + "id": 42947, + "name": "Ultimate Comics X-Men", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-x-men/4050-42947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42957/", + "id": 42957, + "name": "FF by Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/ff-by-jonathan-hickman/4050-42957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42958/", + "id": 42958, + "name": "Spider-Man: The Next Chapter", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-next-chapter/4050-42958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42959/", + "id": 42959, + "name": "Annihilators", + "site_detail_url": "https://comicvine.gamespot.com/annihilators/4050-42959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42960/", + "id": 42960, + "name": "Essential Web of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/essential-web-of-spider-man/4050-42960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42963/", + "id": 42963, + "name": "X-Men: Curse of the Mutants - X-Men vs. Vampires", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-mutants-x-men-vs-vampires/4050-42963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42964/", + "id": 42964, + "name": "X-Men: Curse of Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-mutants/4050-42964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42965/", + "id": 42965, + "name": "John Carter of Mars: A Princess of Mars", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-of-mars-a-princess-of-mars/4050-42965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42978/", + "id": 42978, + "name": "Spider-Island: Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-spider-woman/4050-42978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42990/", + "id": 42990, + "name": "Green Goblin: A Lighter Shade of Green", + "site_detail_url": "https://comicvine.gamespot.com/green-goblin-a-lighter-shade-of-green/4050-42990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42991/", + "id": 42991, + "name": "Invincible Iron Man: Unfixable", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-unfixable/4050-42991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42992/", + "id": 42992, + "name": "Namor the First Mutant: Namor Goes to Hell", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-first-mutant-namor-goes-to-hell/4050-42992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42993/", + "id": 42993, + "name": "Spider-Girl: Family Values", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-family-values/4050-42993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42994/", + "id": 42994, + "name": "X-Men: Prelude to Schism", + "site_detail_url": "https://comicvine.gamespot.com/x-men-prelude-to-schism/4050-42994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42995/", + "id": 42995, + "name": "Fantastic Four: The World's Greatest Comics Magazine", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4050-42995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42999/", + "id": 42999, + "name": "Anita Blake, Vampire Hunter: Circus of the Damned - The Scoundrel", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-circus-of-the-damned-th/4050-42999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43009/", + "id": 43009, + "name": "Astonishing Thor", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-thor/4050-43009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43010/", + "id": 43010, + "name": "Deadpool: All in the Family", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-all-in-the-family/4050-43010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43011/", + "id": 43011, + "name": "Evolutionary War Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/evolutionary-war-omnibus/4050-43011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43013/", + "id": 43013, + "name": "Captain America: Reborn MGC", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn-mgc/4050-43013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43014/", + "id": 43014, + "name": "Thor Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/thor-spotlight/4050-43014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43015/", + "id": 43015, + "name": "Fantastic Four: The Overthrow of Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-overthrow-of-doom/4050-43015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43020/", + "id": 43020, + "name": "Annihilators: Earthfall", + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall/4050-43020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43024/", + "id": 43024, + "name": "Marvel Adventures Avengers: Thor/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-thorcaptain-america/4050-43024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43025/", + "id": 43025, + "name": "Marvel Zombies Supreme", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-supreme/4050-43025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43026/", + "id": 43026, + "name": "Secret Warriors: Wheels Within Wheels", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-wheels-within-wheels/4050-43026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43027/", + "id": 43027, + "name": "Uncanny X-Men: Breaking Point", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-breaking-point/4050-43027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43028/", + "id": 43028, + "name": "Marvel Ghost Stories", + "site_detail_url": "https://comicvine.gamespot.com/marvel-ghost-stories/4050-43028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43029/", + "id": 43029, + "name": "Spider-Man: The Vengeance of Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-vengeance-of-venom/4050-43029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43031/", + "id": 43031, + "name": "Venom by Rick Remender", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-rick-remender/4050-43031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43032/", + "id": 43032, + "name": "X-Men: First to Last", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-to-last/4050-43032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43033/", + "id": 43033, + "name": "Captain Britain: The Siege of Camelot", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-the-siege-of-camelot/4050-43033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43057/", + "id": 43057, + "name": "FF: 50 Fantastic Years", + "site_detail_url": "https://comicvine.gamespot.com/ff-50-fantastic-years/4050-43057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43058/", + "id": 43058, + "name": "Deadpool: Operation Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-operation-annihilation/4050-43058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43060/", + "id": 43060, + "name": "Iron Man 2.0: Palmer Addley is Dead", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-20-palmer-addley-is-dead/4050-43060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43062/", + "id": 43062, + "name": "Ultimate Avengers vs. New Ultimates: Death of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-death-of-spider/4050-43062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43063/", + "id": 43063, + "name": "Thor and the Warriors Four", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-the-warriors-four/4050-43063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43077/", + "id": 43077, + "name": "Sabretooth: Open Season", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-open-season/4050-43077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43091/", + "id": 43091, + "name": "Avengers West Coast: Vision Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-vision-quest/4050-43091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43092/", + "id": 43092, + "name": "Hercules: The New Labors of Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules-the-new-labors-of-hercules/4050-43092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43093/", + "id": 43093, + "name": "Hercules: Prince of Power", + "site_detail_url": "https://comicvine.gamespot.com/hercules-prince-of-power/4050-43093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43094/", + "id": 43094, + "name": "Hercules: Full Circle", + "site_detail_url": "https://comicvine.gamespot.com/hercules-full-circle/4050-43094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43096/", + "id": 43096, + "name": "Thor: The Warriors Three", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-warriors-three/4050-43096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43097/", + "id": 43097, + "name": "Black Panther: The Client", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-client/4050-43097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43098/", + "id": 43098, + "name": "Black Panther: Enemy of the State", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-enemy-of-the-state/4050-43098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43099/", + "id": 43099, + "name": "Black Panther by Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-by-jack-kirby/4050-43099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43100/", + "id": 43100, + "name": "Thor Visionaries: Mike Deodato Jr.", + "site_detail_url": "https://comicvine.gamespot.com/thor-visionaries-mike-deodato-jr/4050-43100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43101/", + "id": 43101, + "name": "Daredevil by Frank Miller and Klaus Janson Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-frank-miller-and-klaus-janson-omnibus/4050-43101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43102/", + "id": 43102, + "name": "Sabretooth: Death Hunt", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth-death-hunt/4050-43102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43104/", + "id": 43104, + "name": "Daredevil: Parts of a Hole", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-parts-of-a-hole/4050-43104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43105/", + "id": 43105, + "name": "Daredevil: Wake Up", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-wake-up/4050-43105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43106/", + "id": 43106, + "name": "Daredevil: Underboss", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-underboss/4050-43106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43107/", + "id": 43107, + "name": "Daredevil: Out", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-out/4050-43107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43108/", + "id": 43108, + "name": "Daredevil: Lowlife", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-lowlife/4050-43108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43109/", + "id": 43109, + "name": "Daredevil: Hardcore", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-hardcore/4050-43109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43110/", + "id": 43110, + "name": "Daredevil: King of Hell's Kitchen", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-king-of-hells-kitchen/4050-43110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43111/", + "id": 43111, + "name": "Daredevil: The Widow", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-widow/4050-43111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43112/", + "id": 43112, + "name": "Daredevil: Golden Age", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-golden-age/4050-43112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43113/", + "id": 43113, + "name": "Daredevil/Echo: Parts of a Hole", + "site_detail_url": "https://comicvine.gamespot.com/daredevilecho-parts-of-a-hole/4050-43113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43114/", + "id": 43114, + "name": "Spider-Man by Mark Millar Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-mark-millar-ultimate-collection/4050-43114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43143/", + "id": 43143, + "name": "Avengers 1959", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1959/4050-43143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43145/", + "id": 43145, + "name": "Captain America: Red Glare", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-glare/4050-43145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43146/", + "id": 43146, + "name": "Fantastic Four: 1234", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-1234/4050-43146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43147/", + "id": 43147, + "name": "Red Hulk: Planet Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/red-hulk-planet-red-hulk/4050-43147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43148/", + "id": 43148, + "name": "Amazing Spider-Man: The Return of Anti-Venom", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-return-of-anti-venom/4050-43148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43157/", + "id": 43157, + "name": "Oz Primer", + "site_detail_url": "https://comicvine.gamespot.com/oz-primer/4050-43157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43159/", + "id": 43159, + "name": "Spider-Island: Heroes For Hire", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-heroes-for-hire/4050-43159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43163/", + "id": 43163, + "name": "X-Men by Chris Claremont & Jim Lee Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-chris-claremont-jim-lee-omnibus/4050-43163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43177/", + "id": 43177, + "name": "Williams-Sonoma Spider-Man & The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/williams-sonoma-spider-man-the-avengers/4050-43177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43206/", + "id": 43206, + "name": "Dorothy & the Wizard in Oz", + "site_detail_url": "https://comicvine.gamespot.com/dorothy-the-wizard-in-oz/4050-43206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43210/", + "id": 43210, + "name": "Kidz Water Hydrators", + "site_detail_url": "https://comicvine.gamespot.com/kidz-water-hydrators/4050-43210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43211/", + "id": 43211, + "name": "Marvel Selects: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-selects-fantastic-four/4050-43211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43212/", + "id": 43212, + "name": "Marvel Selects: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-selects-spider-man/4050-43212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43215/", + "id": 43215, + "name": "Fear Itself: The Fearless", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-fearless/4050-43215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43223/", + "id": 43223, + "name": "X-Men: Regenesis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-regenesis/4050-43223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43251/", + "id": 43251, + "name": "Doctor Strange: Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-strange-tales/4050-43251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43252/", + "id": 43252, + "name": "Marvel Firsts: The 1960's", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1960s/4050-43252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43253/", + "id": 43253, + "name": "New Mutants: Unfinished Business", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-unfinished-business/4050-43253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43254/", + "id": 43254, + "name": "X-Men Legacy: Lost Legions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-lost-legions/4050-43254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43268/", + "id": 43268, + "name": "Wolverine by Jason Aaron Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-jason-aaron-omnibus/4050-43268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43345/", + "id": 43345, + "name": "Legion of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters/4050-43345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43375/", + "id": 43375, + "name": "Ultimate Comics Spider-Man: Death of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man/4050-43375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43379/", + "id": 43379, + "name": "Venom: Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector/4050-43379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43382/", + "id": 43382, + "name": "X-Factor: Hard Labor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-hard-labor/4050-43382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43472/", + "id": 43472, + "name": "Timely Presents: All-Winners", + "site_detail_url": "https://comicvine.gamespot.com/timely-presents-all-winners/4050-43472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43473/", + "id": 43473, + "name": "Timely Presents: The Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/timely-presents-the-human-torch/4050-43473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43516/", + "id": 43516, + "name": "Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk/4050-43516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43536/", + "id": 43536, + "name": "Daily Bugle: Avenging Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/daily-bugle-avenging-spider-man/4050-43536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43539/", + "id": 43539, + "name": "Wolverine & the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-x-men/4050-43539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43593/", + "id": 43593, + "name": "Castle: Richard Castle's Deadly Storm", + "site_detail_url": "https://comicvine.gamespot.com/castle-richard-castle-s-deadly-storm/4050-43593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43648/", + "id": 43648, + "name": "Avengers: Solo", + "site_detail_url": "https://comicvine.gamespot.com/avengers-solo/4050-43648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43667/", + "id": 43667, + "name": "Spider-Man Drakes Cakes Mini Comics Series 2", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-2/4050-43667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43668/", + "id": 43668, + "name": "Spider-Man Drakes Cakes Mini Comics Series 1", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-drakes-cakes-mini-comics-series-1/4050-43668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43674/", + "id": 43674, + "name": "Silver Surfer Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-ashcan/4050-43674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43728/", + "id": 43728, + "name": "Spümcø Comic Book", + "site_detail_url": "https://comicvine.gamespot.com/spumc-comic-book/4050-43728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43738/", + "id": 43738, + "name": "Season One Guide", + "site_detail_url": "https://comicvine.gamespot.com/season-one-guide/4050-43738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43774/", + "id": 43774, + "name": "Daken: Dark Wolverine: Big Break", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-big-break/4050-43774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43776/", + "id": 43776, + "name": "Tales From the Marvel Vault", + "site_detail_url": "https://comicvine.gamespot.com/tales-from-the-marvel-vault/4050-43776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43779/", + "id": 43779, + "name": "The Iron Age", + "site_detail_url": "https://comicvine.gamespot.com/the-iron-age/4050-43779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43780/", + "id": 43780, + "name": "Spider-Man: Deadly Foes of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-deadly-foes-of-spider-man/4050-43780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43781/", + "id": 43781, + "name": "Ultimate Comics X: Origins", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-x-origins/4050-43781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43782/", + "id": 43782, + "name": "Wolverine: Wolverine's Revenge", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wolverines-revenge/4050-43782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43785/", + "id": 43785, + "name": "Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men/4050-43785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43787/", + "id": 43787, + "name": "The Irredeemable Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-irredeemable-ant-man/4050-43787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43792/", + "id": 43792, + "name": "X-Men: Days of Future Present", + "site_detail_url": "https://comicvine.gamespot.com/x-men-days-of-future-present/4050-43792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43800/", + "id": 43800, + "name": "Shame Itself", + "site_detail_url": "https://comicvine.gamespot.com/shame-itself/4050-43800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43805/", + "id": 43805, + "name": "Villains for Hire", + "site_detail_url": "https://comicvine.gamespot.com/villains-for-hire/4050-43805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43818/", + "id": 43818, + "name": "Thor: The Deviants Saga", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-deviants-saga/4050-43818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43822/", + "id": 43822, + "name": "WordGirl: Mystery Meat", + "site_detail_url": "https://comicvine.gamespot.com/wordgirl-mystery-meat/4050-43822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43841/", + "id": 43841, + "name": "Avengers Origins: Ant-Man & The Wasp", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-ant-man-the-wasp/4050-43841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43842/", + "id": 43842, + "name": "Black Widow: The Itsy-Bitsy Spider", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-itsy-bitsy-spider/4050-43842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43843/", + "id": 43843, + "name": "X-Force: Assault on Graymalkin", + "site_detail_url": "https://comicvine.gamespot.com/x-force-assault-on-graymalkin/4050-43843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43864/", + "id": 43864, + "name": "Target Avengers: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/target-avengers-earths-mightiest-heroes/4050-43864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43867/", + "id": 43867, + "name": "Avengers: The Yesterday Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-yesterday-quest/4050-43867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43874/", + "id": 43874, + "name": "Black Widow: The Things They Say About Her", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-things-they-say-about-her/4050-43874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43875/", + "id": 43875, + "name": "Hulk & Thing: Hard Knocks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-thing-hard-knocks/4050-43875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43884/", + "id": 43884, + "name": "Avenging Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man/4050-43884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43889/", + "id": 43889, + "name": "Six Guns", + "site_detail_url": "https://comicvine.gamespot.com/six-guns/4050-43889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43891/", + "id": 43891, + "name": "Magneto: Not A Hero", + "site_detail_url": "https://comicvine.gamespot.com/magneto-not-a-hero/4050-43891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43893/", + "id": 43893, + "name": "Point One", + "site_detail_url": "https://comicvine.gamespot.com/point-one/4050-43893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43894/", + "id": 43894, + "name": "Battle Scars", + "site_detail_url": "https://comicvine.gamespot.com/battle-scars/4050-43894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43900/", + "id": 43900, + "name": "Essential Sgt. Fury and His Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/essential-sgt-fury-and-his-howling-commandos/4050-43900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43901/", + "id": 43901, + "name": "Incredible Hulks: Heart of the Monster", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-heart-of-the-monster/4050-43901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43902/", + "id": 43902, + "name": "Power Man and Iron Fist: The Comedy of Death", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-the-comedy-of-death/4050-43902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43926/", + "id": 43926, + "name": "Avengers Origins: Vision", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-vision/4050-43926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43938/", + "id": 43938, + "name": "John Carter: The World of Mars", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-the-world-of-mars/4050-43938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43976/", + "id": 43976, + "name": "Fantastic Four by John Byrne Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus/4050-43976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44023/", + "id": 44023, + "name": "Captain America: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-civil-war/4050-44023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44057/", + "id": 44057, + "name": "Punisher, Moon Knight & Daredevil: The Big Shots", + "site_detail_url": "https://comicvine.gamespot.com/punisher-moon-knight-daredevil-the-big-shots/4050-44057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44063/", + "id": 44063, + "name": "Dark Tower: The Gunslinger Born MGC", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-born-mgc/4050-44063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44064/", + "id": 44064, + "name": "Avengers Origins: Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-luke-cage/4050-44064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44065/", + "id": 44065, + "name": "Marvel Universe vs. Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-wolverine/4050-44065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44066/", + "id": 44066, + "name": "Wolverine and Black Cat: Claws II", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-black-cat-claws-ii/4050-44066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44067/", + "id": 44067, + "name": "Men in Black: Far Cry", + "site_detail_url": "https://comicvine.gamespot.com/men-in-black-far-cry/4050-44067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44068/", + "id": 44068, + "name": "Men in Black: Retribution", + "site_detail_url": "https://comicvine.gamespot.com/men-in-black-retribution/4050-44068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44092/", + "id": 44092, + "name": "Civil War: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-directors-cut/4050-44092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44093/", + "id": 44093, + "name": "Vampires: The Marvel Undead", + "site_detail_url": "https://comicvine.gamespot.com/vampires-the-marvel-undead/4050-44093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44100/", + "id": 44100, + "name": "Excalibur: The Possession", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-the-possession/4050-44100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44105/", + "id": 44105, + "name": "Shadowland: Street Heroes", + "site_detail_url": "https://comicvine.gamespot.com/shadowland-street-heroes/4050-44105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44113/", + "id": 44113, + "name": "Fantastic Four: The Universal Guide", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-universal-guide/4050-44113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44127/", + "id": 44127, + "name": "X-Men #1: 20th Anniversary Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-1-20th-anniversary-edition/4050-44127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44128/", + "id": 44128, + "name": "Symantec/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/symanteccaptain-america/4050-44128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44130/", + "id": 44130, + "name": "Hulk of Arabia Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/hulk-of-arabia-ashcan/4050-44130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44134/", + "id": 44134, + "name": "Captain America Corps", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-corps/4050-44134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44148/", + "id": 44148, + "name": "Avengers Origins: Scarlet Witch & Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-scarlet-witch-quicksilver/4050-44148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44149/", + "id": 44149, + "name": "The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor/4050-44149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44150/", + "id": 44150, + "name": "Skaar: King of the Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/skaar-king-of-the-savage-land/4050-44150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44151/", + "id": 44151, + "name": "Thor: Heaven and Earth", + "site_detail_url": "https://comicvine.gamespot.com/thor-heaven-and-earth/4050-44151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44152/", + "id": 44152, + "name": "Ultimate Comics Spider-Man: Death of Spider-Man Fallout", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-fal/4050-44152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44153/", + "id": 44153, + "name": "Uncanny X-Force: The Dark Angel Saga, Book One", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-the-dark-angel-saga-book-one/4050-44153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44159/", + "id": 44159, + "name": "Ultimate Power 1 Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-power-1-directors-cut/4050-44159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44164/", + "id": 44164, + "name": "Prevent Child Abuse America Presents: Amazing Spider-Man on Bullying Prevention", + "site_detail_url": "https://comicvine.gamespot.com/prevent-child-abuse-america-presents-amazing-spide/4050-44164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44177/", + "id": 44177, + "name": "Ultimates 2 (Variant Sketch Edition)", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2-variant-sketch-edition/4050-44177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44180/", + "id": 44180, + "name": "Essential The Tomb of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/essential-the-tomb-of-dracula/4050-44180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44207/", + "id": 44207, + "name": "Marvel Spotlight: Fantastic Four and Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-fantastic-four-and-silver-surfer/4050-44207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44212/", + "id": 44212, + "name": "Giant Size Mini-Marvels: Starring Spidey", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-mini-marvels-starring-spidey/4050-44212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44216/", + "id": 44216, + "name": "Infinity War #1, A Marvel Comics Preview", + "site_detail_url": "https://comicvine.gamespot.com/infinity-war-1-a-marvel-comics-preview/4050-44216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44217/", + "id": 44217, + "name": "The Art of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-marvel/4050-44217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44218/", + "id": 44218, + "name": "AAFES 4th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-4th-edition/4050-44218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44226/", + "id": 44226, + "name": "Amazing Spider-Man 509 Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-509-directors-cut/4050-44226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44269/", + "id": 44269, + "name": "Avengers Origins: Thor", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins-thor/4050-44269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44273/", + "id": 44273, + "name": "Astonishing X-Men: Monstrous", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-monstrous/4050-44273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44274/", + "id": 44274, + "name": "Deadpool Max: Involuntary Armageddon", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-max-involuntary-armageddon/4050-44274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44275/", + "id": 44275, + "name": "Spider-Man: Marvel Team-Up by Claremont & Byrne", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-marvel-team-up-by-claremont-byrne/4050-44275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44283/", + "id": 44283, + "name": "AAFES 9th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-9th-edition/4050-44283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44284/", + "id": 44284, + "name": "AAFES Activity Book", + "site_detail_url": "https://comicvine.gamespot.com/aafes-activity-book/4050-44284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44329/", + "id": 44329, + "name": "X-men Legends Vol. 2: The Dark Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-vol-2-the-dark-phoenix-saga/4050-44329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44353/", + "id": 44353, + "name": "Untold Tales of Spider-Man '96", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-96/4050-44353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44361/", + "id": 44361, + "name": "Untold Tales of Spider-Man '97", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-97/4050-44361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44363/", + "id": 44363, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4050-44363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44386/", + "id": 44386, + "name": "X-Club", + "site_detail_url": "https://comicvine.gamespot.com/x-club/4050-44386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44429/", + "id": 44429, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4050-44429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44469/", + "id": 44469, + "name": "X-Men Evolutions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-evolutions/4050-44469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44477/", + "id": 44477, + "name": "Avengers: X-Sanction", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-sanction/4050-44477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44526/", + "id": 44526, + "name": "Carnage U.S.A.", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa/4050-44526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44585/", + "id": 44585, + "name": "Defenders Avengers X-Sanction Preview Book", + "site_detail_url": "https://comicvine.gamespot.com/defenders-avengers-x-sanction-preview-book/4050-44585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44656/", + "id": 44656, + "name": "The Incredible Hulk: Future Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-future-imperfect/4050-44656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44672/", + "id": 44672, + "name": "Big Looker Storybook: The Transformers", + "site_detail_url": "https://comicvine.gamespot.com/big-looker-storybook-the-transformers/4050-44672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44687/", + "id": 44687, + "name": "Supreme Power: Gods and Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/supreme-power-gods-and-soldiers/4050-44687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44688/", + "id": 44688, + "name": "Thor by Kieron Gillen Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-kieron-gillen-ultimate-collection/4050-44688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44689/", + "id": 44689, + "name": "Avengers: West Coast Avengers - Sins of the Past", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-sins-of-the-past/4050-44689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44690/", + "id": 44690, + "name": "Deadpool: Institutionalized", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-institutionalized/4050-44690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44691/", + "id": 44691, + "name": "SHIELD: Nick Fury vs. SHIELD", + "site_detail_url": "https://comicvine.gamespot.com/shield-nick-fury-vs-shield/4050-44691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44692/", + "id": 44692, + "name": "The Amazing Spider-Man: Through the Decades", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-through-the-decades/4050-44692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44693/", + "id": 44693, + "name": "Defenders: The Coming of the Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders-the-coming-of-the-defenders/4050-44693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44696/", + "id": 44696, + "name": "Defenders: Strange Heroes", + "site_detail_url": "https://comicvine.gamespot.com/defenders-strange-heroes/4050-44696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44698/", + "id": 44698, + "name": "X-Statix Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-omnibus/4050-44698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44699/", + "id": 44699, + "name": "Essential Rawhide Kid", + "site_detail_url": "https://comicvine.gamespot.com/essential-rawhide-kid/4050-44699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44700/", + "id": 44700, + "name": "Moon Knight by Bendis and Maleev", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-by-bendis-and-maleev/4050-44700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44701/", + "id": 44701, + "name": "Captain America and Bucky: The Life Story of Bucky Barnes", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-bucky-the-life-story-of-bucky-/4050-44701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44705/", + "id": 44705, + "name": "Jubilee by Robert Kirkman", + "site_detail_url": "https://comicvine.gamespot.com/jubilee-by-robert-kirkman/4050-44705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44719/", + "id": 44719, + "name": "American Welding Society Iron Man Special", + "site_detail_url": "https://comicvine.gamespot.com/american-welding-society-iron-man-special/4050-44719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44741/", + "id": 44741, + "name": "Formic Wars: Silent Strike", + "site_detail_url": "https://comicvine.gamespot.com/formic-wars-silent-strike/4050-44741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44756/", + "id": 44756, + "name": "Siege Oversized Hardcover Edition", + "site_detail_url": "https://comicvine.gamespot.com/siege-oversized-hardcover-edition/4050-44756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44770/", + "id": 44770, + "name": "Spider-Man: Chapter One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chapter-one/4050-44770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44773/", + "id": 44773, + "name": "Wolverine by Greg Rucka Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-greg-rucka-ultimate-collection/4050-44773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44798/", + "id": 44798, + "name": "Iron Man Wal-Mart Custom Comic", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-wal-mart-custom-comic/4050-44798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44812/", + "id": 44812, + "name": "Oz: Road to Oz", + "site_detail_url": "https://comicvine.gamespot.com/oz-road-to-oz/4050-44812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44847/", + "id": 44847, + "name": "Generation Hope: Schism", + "site_detail_url": "https://comicvine.gamespot.com/generation-hope-schism/4050-44847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44849/", + "id": 44849, + "name": "Hulk by John Byrne and Ron Garney", + "site_detail_url": "https://comicvine.gamespot.com/hulk-by-john-byrne-and-ron-garney/4050-44849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44851/", + "id": 44851, + "name": "Ka-Zar: The Burning Season", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-burning-season/4050-44851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44852/", + "id": 44852, + "name": "Mystery Men", + "site_detail_url": "https://comicvine.gamespot.com/mystery-men/4050-44852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44853/", + "id": 44853, + "name": "X-Men: Schism", + "site_detail_url": "https://comicvine.gamespot.com/x-men-schism/4050-44853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44933/", + "id": 44933, + "name": "AAFES 6th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-6th-edition/4050-44933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44964/", + "id": 44964, + "name": "Wolverine and the X-Men: Alpha & Omega", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-alpha-omega/4050-44964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44968/", + "id": 44968, + "name": "Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/avengers-annual/4050-44968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44974/", + "id": 44974, + "name": "Fear Itself", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself/4050-44974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44975/", + "id": 44975, + "name": "Hulk: World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/hulk-world-war-hulks/4050-44975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44977/", + "id": 44977, + "name": "Spider-Man: Masques", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-masques/4050-44977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44996/", + "id": 44996, + "name": "Stephen King's N.", + "site_detail_url": "https://comicvine.gamespot.com/stephen-kings-n/4050-44996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45006/", + "id": 45006, + "name": "Daredevil: Fall from Grace", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-fall-from-grace/4050-45006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45041/", + "id": 45041, + "name": "Cars 2", + "site_detail_url": "https://comicvine.gamespot.com/cars-2/4050-45041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45053/", + "id": 45053, + "name": "Earth X Trilogy Companion", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-trilogy-companion/4050-45053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45071/", + "id": 45071, + "name": "Dark Tower: The Gunslinger - The Way Station", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-way-station/4050-45071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45101/", + "id": 45101, + "name": "Scarlet Spider", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider/4050-45101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45113/", + "id": 45113, + "name": "Alpha Flight by Pak and Van Lente", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-by-pak-and-van-lente/4050-45113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45116/", + "id": 45116, + "name": "Fear Itself: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-avengers/4050-45116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45117/", + "id": 45117, + "name": "Fear Itself: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-ghost-rider/4050-45117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45138/", + "id": 45138, + "name": "Ghost Rider by Daniel Way Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-by-daniel-way-ultimate-collection/4050-45138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45175/", + "id": 45175, + "name": "Amazing Spider-Man: Spider-Island", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-spider-island/4050-45175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45177/", + "id": 45177, + "name": "Wolverine: The Best There Is: Broken Quarantine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-best-there-is-broken-quarantine/4050-45177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45189/", + "id": 45189, + "name": "Sega Iron Man Special", + "site_detail_url": "https://comicvine.gamespot.com/sega-iron-man-special/4050-45189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45272/", + "id": 45272, + "name": "Ren and Stimpy Radio Daze", + "site_detail_url": "https://comicvine.gamespot.com/ren-and-stimpy-radio-daze/4050-45272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45290/", + "id": 45290, + "name": "Defenders: Tournament of Heroes", + "site_detail_url": "https://comicvine.gamespot.com/defenders-tournament-of-heroes/4050-45290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45306/", + "id": 45306, + "name": "Fear Itself: Journey Into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-journey-into-mystery/4050-45306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45307/", + "id": 45307, + "name": "Fear Itself: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-thunderbolts/4050-45307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45308/", + "id": 45308, + "name": "The New Defenders", + "site_detail_url": "https://comicvine.gamespot.com/the-new-defenders/4050-45308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45309/", + "id": 45309, + "name": "Ultimate Comics Hawkeye by Hickman", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-hawkeye-by-hickman/4050-45309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45310/", + "id": 45310, + "name": "Marvel Firsts: The 1970's", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1970s/4050-45310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45314/", + "id": 45314, + "name": "Marvel Point One II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-point-one-ii/4050-45314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45353/", + "id": 45353, + "name": "Best-Selling Authors Sampler", + "site_detail_url": "https://comicvine.gamespot.com/best-selling-authors-sampler/4050-45353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45354/", + "id": 45354, + "name": "X-23: Chaos Theory", + "site_detail_url": "https://comicvine.gamespot.com/x-23-chaos-theory/4050-45354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45362/", + "id": 45362, + "name": "Spider-Man and the Fantastic Four in Hard Choices", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-in-hard-choices/4050-45362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45376/", + "id": 45376, + "name": "Amazing Fantasy Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-omnibus/4050-45376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45388/", + "id": 45388, + "name": "Devil Dinosaur by Jack Kirby Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/devil-dinosaur-by-jack-kirby-omnibus/4050-45388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45479/", + "id": 45479, + "name": "Avengers: The Children's Crusade - Search for the Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-search-for-the-scar/4050-45479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45481/", + "id": 45481, + "name": "Wolverine: Wolverine Goes to Hell", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-wolverine-goes-to-hell/4050-45481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45485/", + "id": 45485, + "name": "Marvel's Greatest Collections", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-collections/4050-45485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45487/", + "id": 45487, + "name": "Marvel Spotlight: Iron Man Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-iron-man-movie/4050-45487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45488/", + "id": 45488, + "name": "Marvel Spotlight: Hulk Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-hulk-movie/4050-45488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45495/", + "id": 45495, + "name": "Red Skull: Incarnate", + "site_detail_url": "https://comicvine.gamespot.com/red-skull-incarnate/4050-45495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45518/", + "id": 45518, + "name": "Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier/4050-45518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45527/", + "id": 45527, + "name": "Avengers: Solo Avengers Classic", + "site_detail_url": "https://comicvine.gamespot.com/avengers-solo-avengers-classic/4050-45527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45528/", + "id": 45528, + "name": "Captain America by Ed Brubaker", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-ed-brubaker/4050-45528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45529/", + "id": 45529, + "name": "Daredevil by Brubaker and Lark Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-brubaker-and-lark-ultimate-collection/4050-45529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45530/", + "id": 45530, + "name": "Daredevil by Mark Waid", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid/4050-45530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45546/", + "id": 45546, + "name": "Strikeforce: Morituri", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-morituri/4050-45546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45591/", + "id": 45591, + "name": "Fear Itself: Heroes for Hire", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-heroes-for-hire/4050-45591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45592/", + "id": 45592, + "name": "Incredible Hulks: Fall of the Hulks", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-fall-of-the-hulks/4050-45592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45634/", + "id": 45634, + "name": "Spider-Man Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-poster-book/4050-45634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45635/", + "id": 45635, + "name": "Thor Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/thor-poster-book/4050-45635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45636/", + "id": 45636, + "name": "New Avengers Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-poster-book/4050-45636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45641/", + "id": 45641, + "name": "Halo: Fall of Reach - Invasion", + "site_detail_url": "https://comicvine.gamespot.com/halo-fall-of-reach-invasion/4050-45641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45663/", + "id": 45663, + "name": "Strikeforce: Morituri - We Who Are About to Die", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-morituri-we-who-are-about-to-die/4050-45663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45674/", + "id": 45674, + "name": "Spider-Man: Brand New Day - Extra", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-brand-new-day-extra/4050-45674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45689/", + "id": 45689, + "name": "Fantastic Four: Season One", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-season-one/4050-45689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45749/", + "id": 45749, + "name": "Spider-Man, Fire-Star and Iceman at the Dallas Ballet Nutcracker", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fire-star-and-iceman-at-the-dallas-ball/4050-45749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45798/", + "id": 45798, + "name": "Anita Blake, Vampire Hunter: The Laughing Corpse Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/anita-blake-vampire-hunter-the-laughing-corpse-ult/4050-45798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45824/", + "id": 45824, + "name": "Astonishing X-Men: Children of the Brood", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-children-of-the-brood/4050-45824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45825/", + "id": 45825, + "name": "Avengers: Hawkeye - Earth's Mightiest Marksman", + "site_detail_url": "https://comicvine.gamespot.com/avengers-hawkeye-earths-mightiest-marksman/4050-45825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45826/", + "id": 45826, + "name": "Daken: Dark Wolverine: The Pride Comes Before The Fall", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-the-pride-comes-before-the-fa/4050-45826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45827/", + "id": 45827, + "name": "Fear Itself: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-hulk/4050-45827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45830/", + "id": 45830, + "name": "Fear Itself: Secret Avengers", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-secret-avengers/4050-45830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45831/", + "id": 45831, + "name": "Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars/4050-45831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45912/", + "id": 45912, + "name": "Astonishing X-Men by Whedon and Cassaday Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4050-45912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45913/", + "id": 45913, + "name": "Avengers Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-omnibus/4050-45913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45914/", + "id": 45914, + "name": "Fear Itself: Deadpool/Fearsome Four", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-deadpoolfearsome-four/4050-45914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45915/", + "id": 45915, + "name": "Spider-Man: Spider-Island Companion", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-island-companion/4050-45915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45916/", + "id": 45916, + "name": "Ultimate Comics Spider-Man by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-spider-man-by-brian-michael-bendis/4050-45916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45917/", + "id": 45917, + "name": "Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/vengeance/4050-45917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45918/", + "id": 45918, + "name": "X-Factor: Super Unnatural", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-super-unnatural/4050-45918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45919/", + "id": 45919, + "name": "X-Force: Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/x-force-necrosha/4050-45919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46001/", + "id": 46001, + "name": "The Sensational Spider-Man - Nothing Can Stop the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-nothing-can-stop-the-ju/4050-46001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46002/", + "id": 46002, + "name": "The Last Avengers Story", + "site_detail_url": "https://comicvine.gamespot.com/the-last-avengers-story/4050-46002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46067/", + "id": 46067, + "name": "Fear Itself: Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-uncanny-x-men/4050-46067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46068/", + "id": 46068, + "name": "Iron Man 2.0: Asymmetry", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-20-asymmetry/4050-46068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46069/", + "id": 46069, + "name": "Marvel Adventures Spider-Man: Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spider-man-tangled-web/4050-46069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46070/", + "id": 46070, + "name": "Quasar Classic", + "site_detail_url": "https://comicvine.gamespot.com/quasar-classic/4050-46070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46071/", + "id": 46071, + "name": "Spider-Man Fights Substance Abuse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-fights-substance-abuse/4050-46071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46072/", + "id": 46072, + "name": "Wolverine/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/wolverinecaptain-america/4050-46072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46073/", + "id": 46073, + "name": "X-Men: FF", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ff/4050-46073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46074/", + "id": 46074, + "name": "Tomb of Dracula Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-dracula-omnibus/4050-46074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46087/", + "id": 46087, + "name": "X-Men: Age of Apocalypse Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-apocalypse-omnibus/4050-46087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46111/", + "id": 46111, + "name": "Captain America: The Classic Years", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-classic-years/4050-46111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46263/", + "id": 46263, + "name": "Iron Man Magazine Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-magazine-special-edition/4050-46263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46347/", + "id": 46347, + "name": "Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse/4050-46347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46366/", + "id": 46366, + "name": "Rocket Raccoon and Groot Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-and-groot-complete-collection/4050-46366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46458/", + "id": 46458, + "name": "Civil War Script Book", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-script-book/4050-46458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46501/", + "id": 46501, + "name": "Toy Story", + "site_detail_url": "https://comicvine.gamespot.com/toy-story/4050-46501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46519/", + "id": 46519, + "name": "Avengers 1959", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1959/4050-46519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46527/", + "id": 46527, + "name": "Avengers: The Big Three", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-big-three/4050-46527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46528/", + "id": 46528, + "name": "Fear Itself: Black Panther: The Man Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-black-panther-the-man-without-fear/4050-46528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46533/", + "id": 46533, + "name": "Fear Itself: Herc", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-herc/4050-46533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46558/", + "id": 46558, + "name": "New-Gen: New Dawn", + "site_detail_url": "https://comicvine.gamespot.com/new-gen-new-dawn/4050-46558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46562/", + "id": 46562, + "name": "Punisher by Greg Rucka", + "site_detail_url": "https://comicvine.gamespot.com/punisher-by-greg-rucka/4050-46562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46563/", + "id": 46563, + "name": "Ultimate Comics Ultimates by Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-ultimates-by-jonathan-hickman/4050-46563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46564/", + "id": 46564, + "name": "Uncanny X-Force: The Dark Angel Saga, Book Two", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-the-dark-angel-saga-book-two/4050-46564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46565/", + "id": 46565, + "name": "X-Men: Legacy - Five Miles South Of The Universe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-five-miles-south-of-the-universe/4050-46565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46566/", + "id": 46566, + "name": "X-Men Legacy: Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-necrosha/4050-46566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46569/", + "id": 46569, + "name": "Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble/4050-46569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46571/", + "id": 46571, + "name": "Northanger Abbey", + "site_detail_url": "https://comicvine.gamespot.com/northanger-abbey/4050-46571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46577/", + "id": 46577, + "name": "Avengers: Earth's Mightiest Heroes Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ultimate-collecti/4050-46577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46579/", + "id": 46579, + "name": "Fear Itself: Avengers Academy", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-avengers-academy/4050-46579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46583/", + "id": 46583, + "name": "Fear Itself: Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-invincible-iron-man/4050-46583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46608/", + "id": 46608, + "name": "X-Men: Season One", + "site_detail_url": "https://comicvine.gamespot.com/x-men-season-one/4050-46608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46609/", + "id": 46609, + "name": "Avengers by Brian Michael Bendis: The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age/4050-46609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46610/", + "id": 46610, + "name": "Avengers: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade/4050-46610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46612/", + "id": 46612, + "name": "Avengers: Road to Marvel's The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-road-to-marvels-the-avengers/4050-46612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46613/", + "id": 46613, + "name": "Elektra by Greg Rucka Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/elektra-by-greg-rucka-ultimate-collection/4050-46613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46624/", + "id": 46624, + "name": "Journey Into Mystery: Fear Itself Fallout", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-fear-itself-fallout/4050-46624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46628/", + "id": 46628, + "name": "Spider-Man & the New Warriors: The Hero Killers", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-new-warriors-the-hero-killers/4050-46628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46725/", + "id": 46725, + "name": "Complete Frank Miller Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/complete-frank-miller-spider-man/4050-46725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46818/", + "id": 46818, + "name": "John Carter: The Gods of Mars", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-the-gods-of-mars/4050-46818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47000/", + "id": 47000, + "name": "Uncanny X-Men by Kieron Gillen", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen/4050-47000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47091/", + "id": 47091, + "name": "Annihilators: Earthfall", + "site_detail_url": "https://comicvine.gamespot.com/annihilators-earthfall/4050-47091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47094/", + "id": 47094, + "name": "Avengers: West Coast Avengers - Lost in Space-Time", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-lost-in-space-time/4050-47094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47098/", + "id": 47098, + "name": "Elektra: Assassin", + "site_detail_url": "https://comicvine.gamespot.com/elektra-assassin/4050-47098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47099/", + "id": 47099, + "name": "Fear Itself: Dracula", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-dracula/4050-47099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47197/", + "id": 47197, + "name": "Fear Itself: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spider-man/4050-47197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47205/", + "id": 47205, + "name": "Incredible Hulk: Past Perfect", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-past-perfect/4050-47205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47211/", + "id": 47211, + "name": "Marvel Universe Avengers: United", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-united/4050-47211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47250/", + "id": 47250, + "name": "Incredible Hulks: World War Hulks", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulks-world-war-hulks/4050-47250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47253/", + "id": 47253, + "name": "Ultimate Comics X-Men by Nick Spencer", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-x-men-by-nick-spencer/4050-47253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47254/", + "id": 47254, + "name": "Wolverine and Nick Fury: Scorpio", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-nick-fury-scorpio/4050-47254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47256/", + "id": 47256, + "name": "Wolverine: Goodbye, Chinatown", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-goodbye-chinatown/4050-47256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47329/", + "id": 47329, + "name": "Avengers: Saving the Day", + "site_detail_url": "https://comicvine.gamespot.com/avengers-saving-the-day/4050-47329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47331/", + "id": 47331, + "name": "Avengers Vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men/4050-47331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47463/", + "id": 47463, + "name": "Avengers vs. X-Men Program", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-program/4050-47463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47473/", + "id": 47473, + "name": "Ultimate X-Men/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-menfantastic-four/4050-47473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47505/", + "id": 47505, + "name": "The Stand: Captain Trips", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-captain-trips/4050-47505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47576/", + "id": 47576, + "name": "Avengers: West Coast Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-assemble/4050-47576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47625/", + "id": 47625, + "name": "Avengers Vs. X-Men: Infinite", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-infinite/4050-47625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47652/", + "id": 47652, + "name": "Avengers Solo", + "site_detail_url": "https://comicvine.gamespot.com/avengers-solo/4050-47652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47654/", + "id": 47654, + "name": "Timeslip Special", + "site_detail_url": "https://comicvine.gamespot.com/timeslip-special/4050-47654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47719/", + "id": 47719, + "name": "Captain America: Death of the Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-death-of-the-red-skull/4050-47719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47720/", + "id": 47720, + "name": "Deadpool: Evil Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-evil-deadpool/4050-47720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47723/", + "id": 47723, + "name": "Fear Itself: Youth in Revolt", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-youth-in-revolt/4050-47723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47752/", + "id": 47752, + "name": "Secret Avengers: Run the Mission, Don't Get Seen, Save the World", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-run-the-mission-dont-get-seen-save/4050-47752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47753/", + "id": 47753, + "name": "Shattered Heroes", + "site_detail_url": "https://comicvine.gamespot.com/shattered-heroes/4050-47753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47758/", + "id": 47758, + "name": "Thunderbolts: The Great Escape", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-the-great-escape/4050-47758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47809/", + "id": 47809, + "name": "Avengers Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earth-s-mightiest-heroes/4050-47809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47810/", + "id": 47810, + "name": "Punisher Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/punisher-nightmare/4050-47810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47815/", + "id": 47815, + "name": "Daredevil: Season One", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-season-one/4050-47815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47832/", + "id": 47832, + "name": "Amazing Spider-Man: Hooky", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-hooky/4050-47832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47859/", + "id": 47859, + "name": "Avengers Vs. X-Men: It's Coming", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-its-coming/4050-47859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48062/", + "id": 48062, + "name": "Ultimate Spider-Man Premiere Comic", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-premiere-comic/4050-48062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48072/", + "id": 48072, + "name": "Spider-Man: Season One", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-season-one/4050-48072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48077/", + "id": 48077, + "name": "Captain America: Homeland", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-homeland/4050-48077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48079/", + "id": 48079, + "name": "Avengers: Legion of the Unliving", + "site_detail_url": "https://comicvine.gamespot.com/avengers-legion-of-the-unliving/4050-48079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48082/", + "id": 48082, + "name": "Avengers: Mythos", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mythos/4050-48082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48181/", + "id": 48181, + "name": "Black Panther: The Most Dangerous Man Alive: The Kingpin of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive-the-kin/4050-48181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48184/", + "id": 48184, + "name": "Untold Tales of Spider-Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/untold-tales-of-spider-man-omnibus/4050-48184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48185/", + "id": 48185, + "name": "The Uncanny X-Men: Fatal Attractions", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-fatal-attractions/4050-48185/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48342/", + "id": 48342, + "name": "AVX: VS", + "site_detail_url": "https://comicvine.gamespot.com/avx-vs/4050-48342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48343/", + "id": 48343, + "name": "Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man/4050-48343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48362/", + "id": 48362, + "name": "Captain America and Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-iron-man/4050-48362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48370/", + "id": 48370, + "name": "Avengers: Roll Call", + "site_detail_url": "https://comicvine.gamespot.com/avengers-roll-call/4050-48370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48438/", + "id": 48438, + "name": "Hulk: Hulk of Arabia", + "site_detail_url": "https://comicvine.gamespot.com/hulk-hulk-of-arabia/4050-48438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48444/", + "id": 48444, + "name": "Wolverine: Covenant", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-covenant/4050-48444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48446/", + "id": 48446, + "name": "X-Men: Reckless Abandonment", + "site_detail_url": "https://comicvine.gamespot.com/x-men-reckless-abandonment/4050-48446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48517/", + "id": 48517, + "name": "Combat Zone: True Tales of GIs in Iraq", + "site_detail_url": "https://comicvine.gamespot.com/combat-zone-true-tales-of-gis-in-iraq/4050-48517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48554/", + "id": 48554, + "name": "Hulk Smash Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hulk-smash-avengers/4050-48554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48555/", + "id": 48555, + "name": "Exiled", + "site_detail_url": "https://comicvine.gamespot.com/exiled/4050-48555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48560/", + "id": 48560, + "name": "The Avengers Prelude: Black Widow Strikes", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-prelude-black-widow-strikes/4050-48560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48604/", + "id": 48604, + "name": "Avengers - The Avengers Initiative", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-avengers-initiative/4050-48604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48627/", + "id": 48627, + "name": "Max Payne 3", + "site_detail_url": "https://comicvine.gamespot.com/max-payne-3/4050-48627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48680/", + "id": 48680, + "name": "Marvel Spotlight: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-ghost-rider/4050-48680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48698/", + "id": 48698, + "name": "Free Comic Book Day 2012 (Avengers: Age of Ultron Point One)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2012-avengers-age-of-ultron-po/4050-48698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48759/", + "id": 48759, + "name": "Darkhawk Classic", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-classic/4050-48759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48760/", + "id": 48760, + "name": "Incredible Hulk: Pardoned", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-pardoned/4050-48760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48783/", + "id": 48783, + "name": "Marvel Zombies Destroy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-destroy/4050-48783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48850/", + "id": 48850, + "name": "Avengers: Ultron Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ultron-quest/4050-48850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48856/", + "id": 48856, + "name": "Free Comic Book Day 2012 (Spider-Man: Season One)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2012-spider-man-season-one/4050-48856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-48970/", + "id": 48970, + "name": "Amazing Spider-Man: Ends of the Earth", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-ends-of-the-earth/4050-48970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49018/", + "id": 49018, + "name": "Cable & Deadpool MGC", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-mgc/4050-49018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49033/", + "id": 49033, + "name": "Fear Itself: The Home Front", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-home-front/4050-49033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49034/", + "id": 49034, + "name": "Fear Itself: Uncanny X-Force/The Deep", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-uncanny-x-forcethe-deep/4050-49034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49035/", + "id": 49035, + "name": "Daken: Dark Wolverine: Empire", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-empire/4050-49035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49040/", + "id": 49040, + "name": "New Mutants: A Date With the Devil", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-a-date-with-the-devil/4050-49040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49042/", + "id": 49042, + "name": "Cable Vol.1, No. 73", + "site_detail_url": "https://comicvine.gamespot.com/cable-vol1-no-73/4050-49042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49050/", + "id": 49050, + "name": "Six Guns", + "site_detail_url": "https://comicvine.gamespot.com/six-guns/4050-49050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49052/", + "id": 49052, + "name": "Ultimate Comics Avengers by Mark Millar Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-avengers-by-mark-millar-omnibus/4050-49052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49053/", + "id": 49053, + "name": "Wolverine and the X-Men by Jason Aaron", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron/4050-49053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49072/", + "id": 49072, + "name": "X-Men: The Hidden Years", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-hidden-years/4050-49072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49073/", + "id": 49073, + "name": "Astonishing X-Men: Exalted", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-exalted/4050-49073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49078/", + "id": 49078, + "name": "Fear Itself: Wolverine/New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-wolverinenew-mutants/4050-49078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49081/", + "id": 49081, + "name": "Amazing Spider-Man: Flying Blind", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-flying-blind/4050-49081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49088/", + "id": 49088, + "name": "X-Force: Toy Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/x-force-toy-soldiers/4050-49088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49092/", + "id": 49092, + "name": "X-Men: War Machines", + "site_detail_url": "https://comicvine.gamespot.com/x-men-war-machines/4050-49092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49114/", + "id": 49114, + "name": "Avengers: The Crossing", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-crossing/4050-49114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49115/", + "id": 49115, + "name": "Avengers: The Private War of Dr. Doom", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-private-war-of-dr-doom/4050-49115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49119/", + "id": 49119, + "name": "The Amazing Spider-Man: Identity Crisis", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-identity-crisis/4050-49119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49120/", + "id": 49120, + "name": "Avengers: The Serpent Crown", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-serpent-crown/4050-49120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49147/", + "id": 49147, + "name": "X-Men: Wrath of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-wrath-of-apocalypse/4050-49147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49239/", + "id": 49239, + "name": "Avengers: The Many Faces of Henry Pym", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-many-faces-of-henry-pym/4050-49239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49258/", + "id": 49258, + "name": "Sense & Sensibility", + "site_detail_url": "https://comicvine.gamespot.com/sense-sensibility/4050-49258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49306/", + "id": 49306, + "name": "Lobezno: Involution", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-involution/4050-49306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49327/", + "id": 49327, + "name": "Ghost Rider: Cycle of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-cycle-of-vengeance/4050-49327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49369/", + "id": 49369, + "name": "Fantastic Four: True Story", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-true-story/4050-49369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49395/", + "id": 49395, + "name": "Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-men/4050-49395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49436/", + "id": 49436, + "name": "Hulk Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/hulk-poster-book/4050-49436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49453/", + "id": 49453, + "name": "Avengers vs. X-Men: VS", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-vs/4050-49453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49474/", + "id": 49474, + "name": "The Mighty Thor Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-annual/4050-49474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49505/", + "id": 49505, + "name": "Ultron", + "site_detail_url": "https://comicvine.gamespot.com/ultron/4050-49505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49594/", + "id": 49594, + "name": "Amazing Spider-Man Movie", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-movie/4050-49594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49614/", + "id": 49614, + "name": "Marvel Poster Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-poster-magazine/4050-49614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49615/", + "id": 49615, + "name": "Heroes", + "site_detail_url": "https://comicvine.gamespot.com/heroes/4050-49615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49618/", + "id": 49618, + "name": "Amazing Spider-Man: Parallel Lives", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-parallel-lives/4050-49618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49625/", + "id": 49625, + "name": "G.I. Joe A Real American Hero Special Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/gi-joe-a-real-american-hero-special-treasury-editi/4050-49625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49645/", + "id": 49645, + "name": "AAFES 7th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-7th-edition/4050-49645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49722/", + "id": 49722, + "name": "The Summer of Spider-Man Sampler", + "site_detail_url": "https://comicvine.gamespot.com/the-summer-of-spider-man-sampler/4050-49722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49728/", + "id": 49728, + "name": "Spider-Man: Spider-Hunt", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-hunt/4050-49728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49729/", + "id": 49729, + "name": "Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars/4050-49729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49730/", + "id": 49730, + "name": "Secret Wars II", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-ii/4050-49730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49760/", + "id": 49760, + "name": "Amazing Spider-Man: Secret Origins", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-secret-origins/4050-49760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49761/", + "id": 49761, + "name": "Avengers: X-Sanction", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-sanction/4050-49761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49762/", + "id": 49762, + "name": "Marvel's The Avengers Prelude: Fury's Big Week", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week/4050-49762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49773/", + "id": 49773, + "name": "Avengers Academy: Second Semester", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-second-semester/4050-49773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49774/", + "id": 49774, + "name": "Essential Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/essential-black-panther/4050-49774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49796/", + "id": 49796, + "name": "Magneto: Not A Hero", + "site_detail_url": "https://comicvine.gamespot.com/magneto-not-a-hero/4050-49796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49797/", + "id": 49797, + "name": "Thing: The Serpent Crown Affair", + "site_detail_url": "https://comicvine.gamespot.com/thing-the-serpent-crown-affair/4050-49797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49798/", + "id": 49798, + "name": "Deadpool Max: Second Cut", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-max-second-cut/4050-49798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49799/", + "id": 49799, + "name": "Generation Hope: The End of A Generation", + "site_detail_url": "https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation/4050-49799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49800/", + "id": 49800, + "name": "Daken: Dark Wolverine: No More Heroes", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-no-more-heroes/4050-49800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49801/", + "id": 49801, + "name": "Marvel Universe Spider-Man: Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-spider-man-amazing-fantasy/4050-49801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49802/", + "id": 49802, + "name": "Uncanny X-Force: Otherworld", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-otherworld/4050-49802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49804/", + "id": 49804, + "name": "Venom: Circle of Four", + "site_detail_url": "https://comicvine.gamespot.com/venom-circle-of-four/4050-49804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49813/", + "id": 49813, + "name": "Avenging Spider-Man: My Friends Can Beat Up Your Friends", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-my-friends-can-beat-up-your-fr/4050-49813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49814/", + "id": 49814, + "name": "Battle Scars", + "site_detail_url": "https://comicvine.gamespot.com/battle-scars/4050-49814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49816/", + "id": 49816, + "name": "Captain America and Bucky: Old Wounds", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-bucky-old-wounds/4050-49816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49817/", + "id": 49817, + "name": "Villains for Hire: Knight Takes King", + "site_detail_url": "https://comicvine.gamespot.com/villains-for-hire-knight-takes-king/4050-49817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49819/", + "id": 49819, + "name": "X-23: Don't Look Back", + "site_detail_url": "https://comicvine.gamespot.com/x-23-dont-look-back/4050-49819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49820/", + "id": 49820, + "name": "X-Factor: They Keep Killing Madrox", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-they-keep-killing-madrox/4050-49820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49822/", + "id": 49822, + "name": "X-Men: Phoenix Endsong/Warsong Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-endsongwarsong-ultimate-collection/4050-49822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49823/", + "id": 49823, + "name": "Avengers: West Coast Avengers - Along Came A Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-along-came-a-spider-w/4050-49823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49825/", + "id": 49825, + "name": "Amazing Spider-Man: Big Time Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-big-time-ultimate-collection/4050-49825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49830/", + "id": 49830, + "name": "Marvel Zombies: The Covers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-the-covers/4050-49830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49831/", + "id": 49831, + "name": "Carnage USA", + "site_detail_url": "https://comicvine.gamespot.com/carnage-usa/4050-49831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49846/", + "id": 49846, + "name": "Cloak and Dagger: Crime and Punishment", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-crime-and-punishment/4050-49846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49847/", + "id": 49847, + "name": "Deathlok: The Living Nightmare of Michael Collins", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-the-living-nightmare-of-michael-collins/4050-49847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49861/", + "id": 49861, + "name": "X-Men: X-Tinction Agenda", + "site_detail_url": "https://comicvine.gamespot.com/x-men-x-tinction-agenda/4050-49861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49862/", + "id": 49862, + "name": "X-Men: X-Cutioner's Song", + "site_detail_url": "https://comicvine.gamespot.com/x-men-x-cutioners-song/4050-49862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49868/", + "id": 49868, + "name": "Marvel Universe Avengers: Spider-Man and the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-spider-man-and-the-avenge/4050-49868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49869/", + "id": 49869, + "name": "Amazing Spider-Man: The Graphic Novels", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-graphic-novels/4050-49869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49870/", + "id": 49870, + "name": "Spider-Man: Perceptions", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-perceptions/4050-49870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49871/", + "id": 49871, + "name": "Ultimate Spider-Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-omnibus/4050-49871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49876/", + "id": 49876, + "name": "Dark Tower: The Gunslinger - The Man in Black", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-man-in-black/4050-49876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49893/", + "id": 49893, + "name": "Marvel Masterworks: Atlas Era Journey into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-journey-into-mystery/4050-49893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50030/", + "id": 50030, + "name": "The Coming of the Avengers!", + "site_detail_url": "https://comicvine.gamespot.com/the-coming-of-the-avengers/4050-50030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50112/", + "id": 50112, + "name": "John Carter: A Princess of Mars", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-a-princess-of-mars/4050-50112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50127/", + "id": 50127, + "name": "John Carter: The World of Mars", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-the-world-of-mars/4050-50127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50128/", + "id": 50128, + "name": "Legion of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-monsters/4050-50128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50153/", + "id": 50153, + "name": "The Infernal Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-infernal-man-thing/4050-50153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50169/", + "id": 50169, + "name": "X-Man: The Man Who Fell to Earth", + "site_detail_url": "https://comicvine.gamespot.com/x-man-the-man-who-fell-to-earth/4050-50169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50170/", + "id": 50170, + "name": "Alpha Flight: The Complete Series by Greg Pak & Fred Van Lente", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-the-complete-series-by-greg-pak-fred-/4050-50170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50199/", + "id": 50199, + "name": "Season One 2012 Guide", + "site_detail_url": "https://comicvine.gamespot.com/season-one-2012-guide/4050-50199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50216/", + "id": 50216, + "name": "Fear Itself: The Fearless", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-the-fearless/4050-50216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50236/", + "id": 50236, + "name": "Comic Book", + "site_detail_url": "https://comicvine.gamespot.com/comic-book/4050-50236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50241/", + "id": 50241, + "name": "Punisher by Rick Remender Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/punisher-by-rick-remender-omnibus/4050-50241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50242/", + "id": 50242, + "name": "Secret Warriors Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-omnibus/4050-50242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50267/", + "id": 50267, + "name": "Hulk: Heart of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/hulk-heart-of-the-atom/4050-50267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50269/", + "id": 50269, + "name": "Nick Fury, Agent of SHIELD Classic", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-agent-of-shield-classic/4050-50269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50297/", + "id": 50297, + "name": "Fantastic Four Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-ashcan/4050-50297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50299/", + "id": 50299, + "name": "Mandrake the Magician", + "site_detail_url": "https://comicvine.gamespot.com/mandrake-the-magician/4050-50299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50301/", + "id": 50301, + "name": "Spider-Man Peter Pan Peanut Butter", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-peter-pan-peanut-butter/4050-50301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50328/", + "id": 50328, + "name": "The Incredible Hulk By Jason Aaron", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-by-jason-aaron/4050-50328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50329/", + "id": 50329, + "name": "Invincible Iron Man: Demon", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-demon/4050-50329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50330/", + "id": 50330, + "name": "Amazing Spider-Man: Trouble on the Horizon", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-trouble-on-the-horizon/4050-50330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50331/", + "id": 50331, + "name": "The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve/4050-50331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50334/", + "id": 50334, + "name": "Wolverine: Back in Japan", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-back-in-japan/4050-50334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50359/", + "id": 50359, + "name": "2099 Unlimited Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/2099-unlimited-ashcan/4050-50359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50365/", + "id": 50365, + "name": "Space: Punisher", + "site_detail_url": "https://comicvine.gamespot.com/space-punisher/4050-50365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50388/", + "id": 50388, + "name": "Avengers: West Coast Avengers - Zodiac Attack", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-zodiac-attack/4050-50388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50394/", + "id": 50394, + "name": "X-Men: X-Club", + "site_detail_url": "https://comicvine.gamespot.com/x-men-x-club/4050-50394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50398/", + "id": 50398, + "name": "Defenders by Matt Fraction", + "site_detail_url": "https://comicvine.gamespot.com/defenders-by-matt-fraction/4050-50398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50403/", + "id": 50403, + "name": "X-Men Legacy: Back to School", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-back-to-school/4050-50403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50409/", + "id": 50409, + "name": "Spider-Man: Return of the Burglar", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-return-of-the-burglar/4050-50409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50410/", + "id": 50410, + "name": "X-Men: Beauty and the Beast", + "site_detail_url": "https://comicvine.gamespot.com/x-men-beauty-and-the-beast/4050-50410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50416/", + "id": 50416, + "name": "Ant-Man: Season One", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-season-one/4050-50416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50447/", + "id": 50447, + "name": "Spider-Man: The Assassin Nation Plot", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-assassin-nation-plot/4050-50447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50528/", + "id": 50528, + "name": "Marvel Universe Iron Man Digest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-iron-man-digest/4050-50528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50575/", + "id": 50575, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-50575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50695/", + "id": 50695, + "name": "Backpack Marvels: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/backpack-marvels-avengers/4050-50695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50701/", + "id": 50701, + "name": "Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers/4050-50701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50723/", + "id": 50723, + "name": "Ghost Rider: Complete Series by Rob Williams", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-complete-series-by-rob-williams/4050-50723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50726/", + "id": 50726, + "name": "Journey Into Mystery: The Terrorism Myth", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-the-terrorism-myth/4050-50726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50727/", + "id": 50727, + "name": "Wolverine and the X-Men: Alpha and Omega", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-alpha-and-omega/4050-50727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50728/", + "id": 50728, + "name": "Counter X: X-Force: Rage War", + "site_detail_url": "https://comicvine.gamespot.com/counter-x-x-force-rage-war/4050-50728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50729/", + "id": 50729, + "name": "Herc: The Complete Series by Grek Pak and Fred Van Lente", + "site_detail_url": "https://comicvine.gamespot.com/herc-the-complete-series-by-grek-pak-and-fred-van-/4050-50729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50730/", + "id": 50730, + "name": "Fantastic Four 527 (Director's Cut)", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-527-directors-cut/4050-50730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50732/", + "id": 50732, + "name": "Ultimate Marvel Flip Magazine", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-flip-magazine/4050-50732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50737/", + "id": 50737, + "name": "Hawkeye: My Life as a Weapon", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-my-life-as-a-weapon/4050-50737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50754/", + "id": 50754, + "name": "X-Treme X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men/4050-50754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50762/", + "id": 50762, + "name": "Son of Hulk", + "site_detail_url": "https://comicvine.gamespot.com/son-of-hulk/4050-50762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50784/", + "id": 50784, + "name": "Civil War Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-poster-book/4050-50784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50785/", + "id": 50785, + "name": "I (heart) Marvel: Marvel Ai", + "site_detail_url": "https://comicvine.gamespot.com/i-heart-marvel-marvel-ai/4050-50785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50786/", + "id": 50786, + "name": "I (heart) Marvel: Web of Romance", + "site_detail_url": "https://comicvine.gamespot.com/i-heart-marvel-web-of-romance/4050-50786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50787/", + "id": 50787, + "name": "I (heart) Marvel: Outlaw Love", + "site_detail_url": "https://comicvine.gamespot.com/i-heart-marvel-outlaw-love/4050-50787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50788/", + "id": 50788, + "name": "I (heart) Marvel: Masked Intentions", + "site_detail_url": "https://comicvine.gamespot.com/i-heart-marvel-masked-intentions/4050-50788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50789/", + "id": 50789, + "name": "I (heart) Marvel: My Mutant Heart", + "site_detail_url": "https://comicvine.gamespot.com/i-heart-marvel-my-mutant-heart/4050-50789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50791/", + "id": 50791, + "name": "Immortal Iron Fist Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/immortal-iron-fist-directors-cut/4050-50791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50803/", + "id": 50803, + "name": "Captain America and Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-hawkeye/4050-50803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50816/", + "id": 50816, + "name": "Captain America: Sentinel of Liberty Rough Cut", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sentinel-of-liberty-rough-cut/4050-50816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50819/", + "id": 50819, + "name": "Thor Rough Cut", + "site_detail_url": "https://comicvine.gamespot.com/thor-rough-cut/4050-50819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50823/", + "id": 50823, + "name": "Heroes Reborn Mini Comic", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-mini-comic/4050-50823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50828/", + "id": 50828, + "name": "Amazing Spider-Man: Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-coming-home/4050-50828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50830/", + "id": 50830, + "name": "Spider-Man: Ends of the Earth", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-ends-of-the-earth/4050-50830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50838/", + "id": 50838, + "name": "Dennis the Menace Comics Digest", + "site_detail_url": "https://comicvine.gamespot.com/dennis-the-menace-comics-digest/4050-50838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50864/", + "id": 50864, + "name": "Marvel Double Feature...The Avengers/Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-double-featurethe-avengersgiant-man/4050-50864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50868/", + "id": 50868, + "name": "The Official Handbook of the Conan Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-conan-universe/4050-50868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50915/", + "id": 50915, + "name": "AAFES 8th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-8th-edition/4050-50915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50916/", + "id": 50916, + "name": "AAFES 5th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-5th-edition/4050-50916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50922/", + "id": 50922, + "name": "Bubble Funnies", + "site_detail_url": "https://comicvine.gamespot.com/bubble-funnies/4050-50922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50940/", + "id": 50940, + "name": "Deadpool Kills the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe/4050-50940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50941/", + "id": 50941, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-50941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50943/", + "id": 50943, + "name": "Essential Monster of Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/essential-monster-of-frankenstein/4050-50943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50944/", + "id": 50944, + "name": "The First X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-first-x-men/4050-50944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50987/", + "id": 50987, + "name": "Fantastic Four Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-ashcan/4050-50987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51066/", + "id": 51066, + "name": "Captain America's Weird Tales", + "site_detail_url": "https://comicvine.gamespot.com/captain-americas-weird-tales/4050-51066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51107/", + "id": 51107, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-51107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51109/", + "id": 51109, + "name": "Daredevil Annual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual/4050-51109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51168/", + "id": 51168, + "name": "Daughters of the Dragon: Deadly Hands Special", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-the-dragon-deadly-hands-special/4050-51168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51173/", + "id": 51173, + "name": "X-Men Legends II: Rise of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-ii-rise-of-apocalypse/4050-51173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51321/", + "id": 51321, + "name": "Avengers: The Trial of Yellowjacket", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket/4050-51321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51322/", + "id": 51322, + "name": "Incredible Hulk: Regression", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-regression/4050-51322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51327/", + "id": 51327, + "name": "The Muppets: The Four Seasons", + "site_detail_url": "https://comicvine.gamespot.com/the-muppets-the-four-seasons/4050-51327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51341/", + "id": 51341, + "name": "Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews/4050-51341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51349/", + "id": 51349, + "name": "Marvel Double Feature... Thunderstrike/Code: Blue", + "site_detail_url": "https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue/4050-51349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51350/", + "id": 51350, + "name": "Marvel Illustrated: The Jungle Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-jungle-book/4050-51350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51353/", + "id": 51353, + "name": "Hulk: Season One", + "site_detail_url": "https://comicvine.gamespot.com/hulk-season-one/4050-51353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51402/", + "id": 51402, + "name": "X-Force: Child's Play", + "site_detail_url": "https://comicvine.gamespot.com/x-force-childs-play/4050-51402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51403/", + "id": 51403, + "name": "Essential Warlock", + "site_detail_url": "https://comicvine.gamespot.com/essential-warlock/4050-51403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51406/", + "id": 51406, + "name": "The Star Brand", + "site_detail_url": "https://comicvine.gamespot.com/the-star-brand/4050-51406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51435/", + "id": 51435, + "name": "Wolverine Annual", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-annual/4050-51435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51436/", + "id": 51436, + "name": "Captain America and Namor", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-namor/4050-51436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51519/", + "id": 51519, + "name": "Marvel 1602: Fantastick Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-fantastick-four/4050-51519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51792/", + "id": 51792, + "name": "Captain America: The First Avenger American Armed Forces Exclusive", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-first-avenger-american-armed-f/4050-51792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51805/", + "id": 51805, + "name": "Francis, Brother of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/francis-brother-of-the-universe/4050-51805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51823/", + "id": 51823, + "name": "Red Hulk: Haunted", + "site_detail_url": "https://comicvine.gamespot.com/red-hulk-haunted/4050-51823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51824/", + "id": 51824, + "name": "Secret Avengers by Rick Remender", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-by-rick-remender/4050-51824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51842/", + "id": 51842, + "name": "The Avengers American Armed Forces Exclusive", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-american-armed-forces-exclusive/4050-51842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51844/", + "id": 51844, + "name": "Thor: The Deviants Saga", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-deviants-saga/4050-51844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51845/", + "id": 51845, + "name": "Iron Man: Revenge of the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-revenge-of-the-mandarin/4050-51845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51847/", + "id": 51847, + "name": "X-Men: Iceman", + "site_detail_url": "https://comicvine.gamespot.com/x-men-iceman/4050-51847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51870/", + "id": 51870, + "name": "Road to Oz", + "site_detail_url": "https://comicvine.gamespot.com/road-to-oz/4050-51870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52028/", + "id": 52028, + "name": "Elektra Megazine", + "site_detail_url": "https://comicvine.gamespot.com/elektra-megazine/4050-52028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52058/", + "id": 52058, + "name": "Captain America and Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-black-widow/4050-52058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52106/", + "id": 52106, + "name": "Ghost Rider Finale", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-finale/4050-52106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52107/", + "id": 52107, + "name": "Doctor Strange: Season One", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-season-one/4050-52107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52232/", + "id": 52232, + "name": "Avengers: Celestial Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-celestial-quest/4050-52232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52258/", + "id": 52258, + "name": "Marvel's The Avengers Prelude: Fury's Big Week", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week/4050-52258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52313/", + "id": 52313, + "name": "Marvel Illustrated: The Picture of Dorian Gray", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-picture-of-dorian-gray/4050-52313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52357/", + "id": 52357, + "name": "Hulk (Upper Deck Collector's Edition)", + "site_detail_url": "https://comicvine.gamespot.com/hulk-upper-deck-collectors-edition/4050-52357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52358/", + "id": 52358, + "name": "Hulk (Wal-Mart Edition)", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wal-mart-edition/4050-52358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52365/", + "id": 52365, + "name": "Son of Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/son-of-origins-of-marvel-comics/4050-52365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52370/", + "id": 52370, + "name": "Longshot", + "site_detail_url": "https://comicvine.gamespot.com/longshot/4050-52370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52378/", + "id": 52378, + "name": "Marvel Super Hero Squad Online Game: Hero Up!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad-online-game-hero-up/4050-52378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52379/", + "id": 52379, + "name": "RoboCop 2", + "site_detail_url": "https://comicvine.gamespot.com/robocop-2/4050-52379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52380/", + "id": 52380, + "name": "Spider-Man: The Official Movie Adaptation (Wal-Mart Edition)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-official-movie-adaptation-wal-mart-/4050-52380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52381/", + "id": 52381, + "name": "Spider-Man and the Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk/4050-52381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52382/", + "id": 52382, + "name": "Spider-Man and the Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk/4050-52382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52383/", + "id": 52383, + "name": "Spider-Man and the Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-incredible-hulk/4050-52383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52384/", + "id": 52384, + "name": "Spider-Man Activision", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-activision/4050-52384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52449/", + "id": 52449, + "name": "Avengers: Earth's Mightiest Heroes Comic Reader", + "site_detail_url": "https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-comic-reader/4050-52449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52450/", + "id": 52450, + "name": "Uncanny X-Force: The Apocalypse Solution", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-the-apocalypse-solution/4050-52450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52520/", + "id": 52520, + "name": "Thanos: The Final Threat", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-final-threat/4050-52520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52589/", + "id": 52589, + "name": "Nick Fury vs S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-vs-shield/4050-52589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52640/", + "id": 52640, + "name": "Daredevil: End of Days", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-end-of-days/4050-52640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52643/", + "id": 52643, + "name": "The Stand: American Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-american-nightmares/4050-52643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52655/", + "id": 52655, + "name": "Marvel Universe: Avengers and Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-and-ultimate-spider-man/4050-52655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52689/", + "id": 52689, + "name": "Minimum Carnage: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/minimum-carnage-alpha/4050-52689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52732/", + "id": 52732, + "name": "The Stand: Soul Survivors", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-soul-survivors/4050-52732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52831/", + "id": 52831, + "name": "Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/earths-mightiest-heroes/4050-52831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52880/", + "id": 52880, + "name": "Uncanny Avengers", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers/4050-52880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52884/", + "id": 52884, + "name": "Red She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/red-she-hulk/4050-52884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52885/", + "id": 52885, + "name": "AVX: Consequences", + "site_detail_url": "https://comicvine.gamespot.com/avx-consequences/4050-52885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52893/", + "id": 52893, + "name": "Marvel Universe vs. The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-avengers/4050-52893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52923/", + "id": 52923, + "name": "The Stand: Hardcases", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-hardcases/4050-52923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52925/", + "id": 52925, + "name": "The Stand: No Man's Land", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-no-mans-land/4050-52925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52926/", + "id": 52926, + "name": "X-Men: Bishop's Crossing", + "site_detail_url": "https://comicvine.gamespot.com/x-men-bishops-crossing/4050-52926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52927/", + "id": 52927, + "name": "X-Men: The Wedding of Cyclops and Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-wedding-of-cyclops-and-phoenix/4050-52927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52932/", + "id": 52932, + "name": "The Stand: The Night Has Come", + "site_detail_url": "https://comicvine.gamespot.com/the-stand-the-night-has-come/4050-52932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53051/", + "id": 53051, + "name": "The Amazing Spider-Man: The Wedding", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-wedding/4050-53051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53097/", + "id": 53097, + "name": "Marvel NOW! Point One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-point-one/4050-53097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53117/", + "id": 53117, + "name": "Ultimate Comics Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-iron-man/4050-53117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53119/", + "id": 53119, + "name": "Marvel Zombies Halloween", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-halloween/4050-53119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53122/", + "id": 53122, + "name": "A-Babies vs. X-Babies", + "site_detail_url": "https://comicvine.gamespot.com/a-babies-vs-x-babies/4050-53122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53131/", + "id": 53131, + "name": "LeBron: King of the Rings", + "site_detail_url": "https://comicvine.gamespot.com/lebron-king-of-the-rings/4050-53131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53184/", + "id": 53184, + "name": "Spider-Man: With Great Power Comes Great Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-with-great-power-comes-great-responsibi/4050-53184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53367/", + "id": 53367, + "name": "Punisher: War Zone", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone/4050-53367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53535/", + "id": 53535, + "name": "A+X", + "site_detail_url": "https://comicvine.gamespot.com/ax/4050-53535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53537/", + "id": 53537, + "name": "Avenging Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-annual/4050-53537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53588/", + "id": 53588, + "name": "Marvel NOW! Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-previews/4050-53588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53665/", + "id": 53665, + "name": "Uncanny X-Force: Final Execution", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-final-execution/4050-53665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53725/", + "id": 53725, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-53725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53726/", + "id": 53726, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-53726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53784/", + "id": 53784, + "name": "Marvel's Iron Man 2 Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/marvels-iron-man-2-adaptation/4050-53784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53790/", + "id": 53790, + "name": "Spaceknights", + "site_detail_url": "https://comicvine.gamespot.com/spaceknights/4050-53790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53791/", + "id": 53791, + "name": "The Thanos Quest", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-quest/4050-53791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53793/", + "id": 53793, + "name": "Avengers Vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men/4050-53793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53815/", + "id": 53815, + "name": "The Infernal Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-infernal-man-thing/4050-53815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53816/", + "id": 53816, + "name": "Venom: The Savage Six", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-savage-six/4050-53816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53867/", + "id": 53867, + "name": "Marvel Illustrated Books: Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-books-star-wars/4050-53867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53919/", + "id": 53919, + "name": "All-New X-Men", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men/4050-53919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53920/", + "id": 53920, + "name": "Thor: God of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder/4050-53920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53921/", + "id": 53921, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-53921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53922/", + "id": 53922, + "name": "X-Men: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy/4050-53922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53934/", + "id": 53934, + "name": "Avengers Vs X-Men: Avengers Academy", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-avengers-academy/4050-53934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53943/", + "id": 53943, + "name": "Amazing Spider-Man Magazine", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-magazine/4050-53943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54011/", + "id": 54011, + "name": "Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-men/4050-54011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54110/", + "id": 54110, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-54110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54112/", + "id": 54112, + "name": "Indestructible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk/4050-54112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54134/", + "id": 54134, + "name": "Minimum Carnage: Omega", + "site_detail_url": "https://comicvine.gamespot.com/minimum-carnage-omega/4050-54134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54239/", + "id": 54239, + "name": "Fallen Son: The Death of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america/4050-54239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54241/", + "id": 54241, + "name": "Fallen Son: The Death of Captain America Oversized Edition", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-oversized-/4050-54241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54261/", + "id": 54261, + "name": "Oz: Marvelous Land of Oz", + "site_detail_url": "https://comicvine.gamespot.com/oz-marvelous-land-of-oz/4050-54261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54295/", + "id": 54295, + "name": "FF", + "site_detail_url": "https://comicvine.gamespot.com/ff/4050-54295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54341/", + "id": 54341, + "name": "Astonishing X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-annual/4050-54341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54343/", + "id": 54343, + "name": "Spider-Man: The Mutant Agenda", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-mutant-agenda/4050-54343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54370/", + "id": 54370, + "name": "The Amazing Spider-Man: Lizard - No Turning Back", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-lizard-no-turning-back/4050-54370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54428/", + "id": 54428, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-54428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54429/", + "id": 54429, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4050-54429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54505/", + "id": 54505, + "name": "Oz: Dorothy and the Wizard in Oz", + "site_detail_url": "https://comicvine.gamespot.com/oz-dorothy-and-the-wizard-in-oz/4050-54505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54506/", + "id": 54506, + "name": "Oz: Ozma of Oz", + "site_detail_url": "https://comicvine.gamespot.com/oz-ozma-of-oz/4050-54506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54558/", + "id": 54558, + "name": "Runaways: Pride and Joy", + "site_detail_url": "https://comicvine.gamespot.com/runaways-pride-and-joy/4050-54558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54622/", + "id": 54622, + "name": "Avengers Arena", + "site_detail_url": "https://comicvine.gamespot.com/avengers-arena/4050-54622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54644/", + "id": 54644, + "name": "Cable and X-Force", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-x-force/4050-54644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54677/", + "id": 54677, + "name": "Deadpool: Dead", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-dead/4050-54677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54795/", + "id": 54795, + "name": "Marvel Masterworks: Atlas Era: Venus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-venus/4050-54795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54800/", + "id": 54800, + "name": "Avengers: The Bride of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-bride-of-ultron/4050-54800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54815/", + "id": 54815, + "name": "Dark Avengers Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-poster-book/4050-54815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54836/", + "id": 54836, + "name": "Avengers: Visionaries", + "site_detail_url": "https://comicvine.gamespot.com/avengers-visionaries/4050-54836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54837/", + "id": 54837, + "name": "Age of Apocalypse: The X-Terminated", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse-the-x-terminated/4050-54837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54902/", + "id": 54902, + "name": "Castle: A Calm Before Storm", + "site_detail_url": "https://comicvine.gamespot.com/castle-a-calm-before-storm/4050-54902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54967/", + "id": 54967, + "name": "Halo: Fall of Reach: Invasion", + "site_detail_url": "https://comicvine.gamespot.com/halo-fall-of-reach-invasion/4050-54967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54969/", + "id": 54969, + "name": "Amazing Spider-Man/Ghost Rider: Motorstorm", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-manghost-rider-motorstorm/4050-54969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54984/", + "id": 54984, + "name": "New Avengers: Nannies and Nazis", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-nannies-and-nazis/4050-54984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54985/", + "id": 54985, + "name": "Taco Bell/X-Men", + "site_detail_url": "https://comicvine.gamespot.com/taco-bellx-men/4050-54985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54987/", + "id": 54987, + "name": "Taco Bell/Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/taco-bellinvincible-iron-man/4050-54987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54988/", + "id": 54988, + "name": "Taco Bell/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/taco-bellfantastic-four/4050-54988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54989/", + "id": 54989, + "name": "Taco Bell/Avengers", + "site_detail_url": "https://comicvine.gamespot.com/taco-bellavengers/4050-54989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-54992/", + "id": 54992, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-54992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55068/", + "id": 55068, + "name": "Marvel Spotlight: Spider-Man - One More Day/Brand New Day", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-spider-man-one-more-daybrand-new-/4050-55068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55207/", + "id": 55207, + "name": "Young Guns: Reloaded Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/young-guns-reloaded-sketchbook/4050-55207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55228/", + "id": 55228, + "name": "Marvel Spotlight: Brian Michael Bendis/Mark Bagley", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-brian-michael-bendismark-bagley/4050-55228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55247/", + "id": 55247, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4050-55247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55328/", + "id": 55328, + "name": "Monsters, Inc.", + "site_detail_url": "https://comicvine.gamespot.com/monsters-inc/4050-55328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55329/", + "id": 55329, + "name": "Morbius: The Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire/4050-55329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55330/", + "id": 55330, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4050-55330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55349/", + "id": 55349, + "name": "Iron Man 3 Prelude", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-3-prelude/4050-55349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55360/", + "id": 55360, + "name": "Amazing Spider-Man: Web-Slinger", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-web-slinger/4050-55360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55370/", + "id": 55370, + "name": "New Mutants: De-Animator", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-de-animator/4050-55370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55372/", + "id": 55372, + "name": "Punisher: Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/punisher-nightmare/4050-55372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55374/", + "id": 55374, + "name": "New Mutants: Fight the Future", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-fight-the-future/4050-55374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55380/", + "id": 55380, + "name": "Journey Into Mystery/New Mutants: Exiled", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mysterynew-mutants-exiled/4050-55380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55381/", + "id": 55381, + "name": "Journey Into Mystery: The Manchester Gods", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-the-manchester-gods/4050-55381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55466/", + "id": 55466, + "name": "The Incredible Hulk: Ground Zero", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-ground-zero/4050-55466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55552/", + "id": 55552, + "name": "Superior Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man/4050-55552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55606/", + "id": 55606, + "name": "The Dark Tower: The Gunslinger - The Man In Black", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-the-man-in-black/4050-55606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55608/", + "id": 55608, + "name": "Nova Classic", + "site_detail_url": "https://comicvine.gamespot.com/nova-classic/4050-55608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55665/", + "id": 55665, + "name": "Wolverine, Punisher & Ghost Rider: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-punisher-ghost-rider-official-index-to-t/4050-55665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55673/", + "id": 55673, + "name": "X-Man: Dance With the Devil", + "site_detail_url": "https://comicvine.gamespot.com/x-man-dance-with-the-devil/4050-55673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55674/", + "id": 55674, + "name": "I Am Captain America", + "site_detail_url": "https://comicvine.gamespot.com/i-am-captain-america/4050-55674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55675/", + "id": 55675, + "name": "History of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe/4050-55675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55706/", + "id": 55706, + "name": "Marvel Super Action", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-action/4050-55706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55737/", + "id": 55737, + "name": "X-23: Innocence Lost MGC", + "site_detail_url": "https://comicvine.gamespot.com/x-23-innocence-lost-mgc/4050-55737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55746/", + "id": 55746, + "name": "Ultimate Spider-Man MGC", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-mgc/4050-55746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55752/", + "id": 55752, + "name": "The Ultimates MGC", + "site_detail_url": "https://comicvine.gamespot.com/the-ultimates-mgc/4050-55752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55757/", + "id": 55757, + "name": "Mix-Tape", + "site_detail_url": "https://comicvine.gamespot.com/mix-tape/4050-55757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55793/", + "id": 55793, + "name": "Astonishing X-Men MGC", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-mgc/4050-55793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55794/", + "id": 55794, + "name": "Target X-Men Classic: Teamwork", + "site_detail_url": "https://comicvine.gamespot.com/target-x-men-classic-teamwork/4050-55794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55795/", + "id": 55795, + "name": "Stan's Soapbox: The Collection", + "site_detail_url": "https://comicvine.gamespot.com/stans-soapbox-the-collection/4050-55795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55802/", + "id": 55802, + "name": "Savage Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine/4050-55802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55834/", + "id": 55834, + "name": "AAFES 10th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-10th-edition/4050-55834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55856/", + "id": 55856, + "name": "Marvel's Thor Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/marvels-thor-adaptation/4050-55856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55859/", + "id": 55859, + "name": "Alpha: Big Time", + "site_detail_url": "https://comicvine.gamespot.com/alpha-big-time/4050-55859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55897/", + "id": 55897, + "name": "Avengers Academy: Final Exams", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-final-exams/4050-55897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55898/", + "id": 55898, + "name": "The Dark Tower: The Gunslinger - The Little Sisters of Eluria", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-the-little-sisters-o/4050-55898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55899/", + "id": 55899, + "name": "The Mighty Thor/Journey Into Mystery: Everything Burns", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thorjourney-into-mystery-everything-bur/4050-55899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55902/", + "id": 55902, + "name": "Captain America: Land of the Free", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-land-of-the-free/4050-55902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55903/", + "id": 55903, + "name": "Carnage: Minimum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/carnage-minimum-carnage/4050-55903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55905/", + "id": 55905, + "name": "Guardians of the Galaxy: Tomorrow's Avengers", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-tomorrows-avengers/4050-55905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55906/", + "id": 55906, + "name": "Marvel Masterworks: Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-ka-zar/4050-55906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55907/", + "id": 55907, + "name": "Marvel Universe Avengers Earth's Mightiest Heroes Digest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-d/4050-55907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55957/", + "id": 55957, + "name": "The Man Called Nova", + "site_detail_url": "https://comicvine.gamespot.com/the-man-called-nova/4050-55957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55967/", + "id": 55967, + "name": "Amazing Fantasy #15: Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-15-spider-man/4050-55967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56016/", + "id": 56016, + "name": "The Death of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-captain-marvel/4050-56016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56017/", + "id": 56017, + "name": "Marvel: The End", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-end/4050-56017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56090/", + "id": 56090, + "name": "Hulk: Winter Guard", + "site_detail_url": "https://comicvine.gamespot.com/hulk-winter-guard/4050-56090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56117/", + "id": 56117, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-56117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56119/", + "id": 56119, + "name": "Uncanny X-Force", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force/4050-56119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56120/", + "id": 56120, + "name": "Deadpool Killustrated", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-killustrated/4050-56120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56243/", + "id": 56243, + "name": "Wolverine: Sabretooth Reborn", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-sabretooth-reborn/4050-56243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56244/", + "id": 56244, + "name": "Wolverine: Rot", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-rot/4050-56244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56295/", + "id": 56295, + "name": "Ghost Rider Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-special-edition/4050-56295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56324/", + "id": 56324, + "name": "X-Factor: Short Stories", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-short-stories/4050-56324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56334/", + "id": 56334, + "name": "Avengers: Kree/Skrull War", + "site_detail_url": "https://comicvine.gamespot.com/avengers-kreeskrull-war/4050-56334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56480/", + "id": 56480, + "name": "Avengers Vs X-Men: Consequences", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-consequences/4050-56480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56482/", + "id": 56482, + "name": "Dark Avengers: The End Is The Beginning", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-the-end-is-the-beginning/4050-56482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56483/", + "id": 56483, + "name": "Fantastic Four: Reunited They Stand", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-reunited-they-stand/4050-56483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56484/", + "id": 56484, + "name": "Iron Man By Joe Quesada", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-joe-quesada/4050-56484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56485/", + "id": 56485, + "name": "Ultimate Comics: Divided We Fall, United We Stand", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-divided-we-fall-united-we-stand/4050-56485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56486/", + "id": 56486, + "name": "X-Men: Blank Generation", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blank-generation/4050-56486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56487/", + "id": 56487, + "name": "X-Women", + "site_detail_url": "https://comicvine.gamespot.com/x-women/4050-56487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56503/", + "id": 56503, + "name": "The Amazing Spider-Man: Managing Materials", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-managing-materials/4050-56503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56504/", + "id": 56504, + "name": "The Amazing Spider-Man NACME Series: Riot at Robotworld", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-nacme-series-riot-at-robotw/4050-56504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56506/", + "id": 56506, + "name": "The Amazing Spider-Man Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-ashcan-edition/4050-56506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56508/", + "id": 56508, + "name": "Avengers Legends: George Perez", + "site_detail_url": "https://comicvine.gamespot.com/avengers-legends-george-perez/4050-56508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56509/", + "id": 56509, + "name": "Amtrak Presents All Aboard", + "site_detail_url": "https://comicvine.gamespot.com/amtrak-presents-all-aboard/4050-56509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56522/", + "id": 56522, + "name": "Avengers: Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble/4050-56522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56578/", + "id": 56578, + "name": "Marvel 65th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-65th-anniversary-special/4050-56578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56579/", + "id": 56579, + "name": "Marvel 70th Anniversary Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-70th-anniversary-poster-book/4050-56579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56581/", + "id": 56581, + "name": "Marvel 2000-2001 Year in Review: Fanboys and Badgirls, Bill and Joe's Marvelous Adventure", + "site_detail_url": "https://comicvine.gamespot.com/marvel-2000-2001-year-in-review-fanboys-and-badgir/4050-56581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56583/", + "id": 56583, + "name": "Marvels Adventures", + "site_detail_url": "https://comicvine.gamespot.com/marvels-adventures/4050-56583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56588/", + "id": 56588, + "name": "Marvel Must Haves: Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-must-haves-ultimate-spider-man/4050-56588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56662/", + "id": 56662, + "name": "Marvel Illustrated: Last of the Mohicans", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-last-of-the-mohicans/4050-56662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56663/", + "id": 56663, + "name": "Marvel Comics: 2001", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-2001/4050-56663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56664/", + "id": 56664, + "name": "Marvel Comics: 2002", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-2002/4050-56664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56665/", + "id": 56665, + "name": "Marvel Previews: Special Initiative Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-special-initiative-edition/4050-56665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56666/", + "id": 56666, + "name": "Marvel Mix-Tape: SDCC 2009", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-tape-sdcc-2009/4050-56666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56667/", + "id": 56667, + "name": "The Marvel Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-poster-book/4050-56667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56668/", + "id": 56668, + "name": "Marvel Quarterly Report", + "site_detail_url": "https://comicvine.gamespot.com/marvel-quarterly-report/4050-56668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56669/", + "id": 56669, + "name": "Marvel Romance Redux: But I Thought He Loved Me", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance-redux-but-i-thought-he-loved-me/4050-56669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56670/", + "id": 56670, + "name": "Marvel Romance Redux: Restraining Orders Are For Other Girls", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance-redux-restraining-orders-are-for-ot/4050-56670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56671/", + "id": 56671, + "name": "1994 Marvel Comics Publishing Plan", + "site_detail_url": "https://comicvine.gamespot.com/1994-marvel-comics-publishing-plan/4050-56671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56672/", + "id": 56672, + "name": "Marvel Live", + "site_detail_url": "https://comicvine.gamespot.com/marvel-live/4050-56672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56673/", + "id": 56673, + "name": "Marvel Super Heroes Origins", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-origins/4050-56673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56674/", + "id": 56674, + "name": "The Project Pegasus Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-project-pegasus-saga/4050-56674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56675/", + "id": 56675, + "name": "Marvel Milestone Edition: Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestone-edition-iron-fist/4050-56675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56676/", + "id": 56676, + "name": "Marvel Milestone Edition: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestone-edition-fantastic-four/4050-56676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56677/", + "id": 56677, + "name": "Marvel Milestone Edition: Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestone-edition-strange-tales/4050-56677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56678/", + "id": 56678, + "name": "Marvel Milestones: Legion of Monsters, Spider-Man & Brother Voodoo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-legion-of-monsters-spider-man-br/4050-56678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56679/", + "id": 56679, + "name": "Marvel Milestones: Venom & Hercules", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-venom-hercules/4050-56679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56680/", + "id": 56680, + "name": "Marvel Milestones: Ultimate Spider-Man, Ultimate X-Men, Microman & Mantor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-ultimate-spider-man-ultimate-x-m/4050-56680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56681/", + "id": 56681, + "name": "Marvel Milestones Special: Bloodstone, X-51 & Captain Marvel II", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-special-bloodstone-x-51-captain-/4050-56681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56682/", + "id": 56682, + "name": "Marvel Milestones: Blade, Man-Thing & Satana", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-blade-man-thing-satana/4050-56682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56683/", + "id": 56683, + "name": "Marvel Milestones: Iron Man, Ant-Man & Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-iron-man-ant-man-captain-america/4050-56683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56684/", + "id": 56684, + "name": "Marvel Milestones: Wolverine, X-Men & Tuk: Caveboy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-wolverine-x-men-tuk-caveboy/4050-56684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56685/", + "id": 56685, + "name": "Marvel Milestones: Doom, Sub-Mariner & Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-doom-sub-mariner-red-skull/4050-56685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56686/", + "id": 56686, + "name": "Marvel Milestones: Dr. Strange, Silver Surfer, Sub-Mariner, & Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-dr-strange-silver-surfer-sub-mar/4050-56686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56687/", + "id": 56687, + "name": "Marvel Milestones: Captain Britain, Psylocke & Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-captain-britain-psylocke-sub-mar/4050-56687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56688/", + "id": 56688, + "name": "Marvel Milestones: Ghost Rider, Black Widow & Iceman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-ghost-rider-black-widow-iceman/4050-56688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56689/", + "id": 56689, + "name": "Marvel Milestones: Dragon Lord, Speedball & The Man in the Sky", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-dragon-lord-speedball-the-man-in/4050-56689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56690/", + "id": 56690, + "name": "Marvel Milestones: Star Brand & Quasar", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-star-brand-quasar/4050-56690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56691/", + "id": 56691, + "name": "Marvel Milestones: Beast & Kitty Pryde", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-beast-kitty-pryde/4050-56691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56692/", + "id": 56692, + "name": "Marvel Milestones: Black Panther, Storm & Ka-Zar", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-black-panther-storm-ka-zar/4050-56692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56693/", + "id": 56693, + "name": "Marvel Milestones: Rawhide Kid & Two-Gun Kid", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-rawhide-kid-two-gun-kid/4050-56693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56694/", + "id": 56694, + "name": "Marvel Milestones: Millie the Model & Patsy Walker", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-millie-the-model-patsy-walker/4050-56694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56695/", + "id": 56695, + "name": "Marvel Milestones: Jim Lee and Chris Claremont X-Men & The StarJammers Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-jim-lee-and-chris-claremont-x-me/4050-56695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56696/", + "id": 56696, + "name": "Marvel Milestones: X-Men & The StarJammers Part 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-x-men-the-starjammers-part-2/4050-56696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56697/", + "id": 56697, + "name": "Marvel Milestones: Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestones-onslaught/4050-56697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56701/", + "id": 56701, + "name": "Marvel Mix-Tape: SDCC 2012", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-tape-sdcc-2012/4050-56701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56709/", + "id": 56709, + "name": "Target Presents: Reading to the Rescue!", + "site_detail_url": "https://comicvine.gamespot.com/target-presents-reading-to-the-rescue/4050-56709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56714/", + "id": 56714, + "name": "Marvel Comics Presents Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-spider-man/4050-56714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56718/", + "id": 56718, + "name": "Marvel Comics Presents Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-spider-man/4050-56718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56719/", + "id": 56719, + "name": "Marvel Comics Presents The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents-the-x-men/4050-56719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56726/", + "id": 56726, + "name": "Marvel Holiday Magazine 2010", + "site_detail_url": "https://comicvine.gamespot.com/marvel-holiday-magazine-2010/4050-56726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56728/", + "id": 56728, + "name": "Captain America Evolution of an Icon", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-evolution-of-an-icon/4050-56728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56729/", + "id": 56729, + "name": "The Incredible Hulk Evolution of an Icon", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-evolution-of-an-icon/4050-56729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56730/", + "id": 56730, + "name": "Iron Man Evolution of an Icon", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-evolution-of-an-icon/4050-56730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56731/", + "id": 56731, + "name": "Venom Evolution of an Icon", + "site_detail_url": "https://comicvine.gamespot.com/venom-evolution-of-an-icon/4050-56731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56732/", + "id": 56732, + "name": "Wolverine Evolution of an Icon", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-evolution-of-an-icon/4050-56732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56733/", + "id": 56733, + "name": "Marvel Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight/4050-56733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56734/", + "id": 56734, + "name": "Marvel Spotlight: Daniel Way/Oliver Coipel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-daniel-wayoliver-coipel/4050-56734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56735/", + "id": 56735, + "name": "Marvel Spotlight: David Finch/Roberto Aguirre-Sacasa", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-david-finchroberto-aguirre-sacasa/4050-56735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56736/", + "id": 56736, + "name": "Marvel Spotlight: Halo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-halo/4050-56736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56737/", + "id": 56737, + "name": "Marvel Spotlight: Robert Kirkman/Greg Land", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-robert-kirkmangreg-land/4050-56737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56738/", + "id": 56738, + "name": "Marvel Spotlight: Warren Ellis/Jim Cheung", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-warren-ellisjim-cheung/4050-56738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56739/", + "id": 56739, + "name": "Marvels", + "site_detail_url": "https://comicvine.gamespot.com/marvels/4050-56739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56740/", + "id": 56740, + "name": "The Beast Evolution of an Icon", + "site_detail_url": "https://comicvine.gamespot.com/the-beast-evolution-of-an-icon/4050-56740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56741/", + "id": 56741, + "name": "Bring Back the Bad Guys", + "site_detail_url": "https://comicvine.gamespot.com/bring-back-the-bad-guys/4050-56741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56742/", + "id": 56742, + "name": "Bring on the Bad Guys Revised Edition", + "site_detail_url": "https://comicvine.gamespot.com/bring-on-the-bad-guys-revised-edition/4050-56742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56743/", + "id": 56743, + "name": "Marvel Authentix: Gambit", + "site_detail_url": "https://comicvine.gamespot.com/marvel-authentix-gambit/4050-56743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56744/", + "id": 56744, + "name": "Marvel Backlist Reading Chronology", + "site_detail_url": "https://comicvine.gamespot.com/marvel-backlist-reading-chronology/4050-56744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56746/", + "id": 56746, + "name": "Star Trek: The Next Generation: Riker", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-the-next-generation-riker/4050-56746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56747/", + "id": 56747, + "name": "Marvel Authentix: Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-authentix-spider-woman/4050-56747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56748/", + "id": 56748, + "name": "Sentry 1 (Rough Cut)", + "site_detail_url": "https://comicvine.gamespot.com/sentry-1-rough-cut/4050-56748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56752/", + "id": 56752, + "name": "The Official Marvel Comics Try-Out Book", + "site_detail_url": "https://comicvine.gamespot.com/the-official-marvel-comics-try-out-book/4050-56752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56753/", + "id": 56753, + "name": "The New Official Marvel Try-Out Book", + "site_detail_url": "https://comicvine.gamespot.com/the-new-official-marvel-try-out-book/4050-56753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56754/", + "id": 56754, + "name": "X-Force: Rough Cut", + "site_detail_url": "https://comicvine.gamespot.com/x-force-rough-cut/4050-56754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56757/", + "id": 56757, + "name": "Wolverine: Origins #1 (Director's Cut)", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origins-1-directors-cut/4050-56757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56759/", + "id": 56759, + "name": "Captain America #34 Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-34-directors-cut/4050-56759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56760/", + "id": 56760, + "name": "Nick Fury's Howling Commandos No. 1 (Director's Cut)", + "site_detail_url": "https://comicvine.gamespot.com/nick-furys-howling-commandos-no-1-directors-cut/4050-56760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56763/", + "id": 56763, + "name": "Target Marvel Mangaverse: New Dawn", + "site_detail_url": "https://comicvine.gamespot.com/target-marvel-mangaverse-new-dawn/4050-56763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56764/", + "id": 56764, + "name": "Target/Iron Man 2", + "site_detail_url": "https://comicvine.gamespot.com/targetiron-man-2/4050-56764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56784/", + "id": 56784, + "name": "X-Factor: Together Again For The First Time", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-together-again-for-the-first-time/4050-56784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56842/", + "id": 56842, + "name": "Ghost Rider Collector's Edition", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-collectors-edition/4050-56842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56843/", + "id": 56843, + "name": "Ghost Rider Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-poster-book/4050-56843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56844/", + "id": 56844, + "name": "Ghost Rider Poster Magazine", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-poster-magazine/4050-56844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56852/", + "id": 56852, + "name": "Hasbro/Dark Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hasbrodark-avengers/4050-56852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56871/", + "id": 56871, + "name": "Essential Savage She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/essential-savage-she-hulk/4050-56871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56877/", + "id": 56877, + "name": "Avengers Assemble Annual", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-annual/4050-56877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56878/", + "id": 56878, + "name": "Fearless Defenders", + "site_detail_url": "https://comicvine.gamespot.com/fearless-defenders/4050-56878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56879/", + "id": 56879, + "name": "Monsters, Inc.: The Humanween Party", + "site_detail_url": "https://comicvine.gamespot.com/monsters-inc-the-humanween-party/4050-56879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56940/", + "id": 56940, + "name": "Hasbro/Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hasbroavengers/4050-56940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56941/", + "id": 56941, + "name": "Hasbro/Captain America", + "site_detail_url": "https://comicvine.gamespot.com/hasbrocaptain-america/4050-56941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56960/", + "id": 56960, + "name": "Avengers/X-Men: Bloodties", + "site_detail_url": "https://comicvine.gamespot.com/avengersx-men-bloodties/4050-56960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57020/", + "id": 57020, + "name": "The New Warriors Limited Edition Ash Can", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-limited-edition-ash-can/4050-57020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57043/", + "id": 57043, + "name": "Ender's Game: Battle School", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-battle-school/4050-57043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57045/", + "id": 57045, + "name": "Ender's Shadow: Battle School", + "site_detail_url": "https://comicvine.gamespot.com/enders-shadow-battle-school/4050-57045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57051/", + "id": 57051, + "name": "Ender's Game: Command School", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-command-school/4050-57051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57056/", + "id": 57056, + "name": "Ender's Shadow: Command School", + "site_detail_url": "https://comicvine.gamespot.com/enders-shadow-command-school/4050-57056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57068/", + "id": 57068, + "name": "Ender's Game: War of Gifts", + "site_detail_url": "https://comicvine.gamespot.com/enders-game-war-of-gifts/4050-57068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57069/", + "id": 57069, + "name": "Ender in Exile", + "site_detail_url": "https://comicvine.gamespot.com/ender-in-exile/4050-57069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57071/", + "id": 57071, + "name": "Speaker for the Dead", + "site_detail_url": "https://comicvine.gamespot.com/speaker-for-the-dead/4050-57071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57073/", + "id": 57073, + "name": "Formic Wars: Burning Earth", + "site_detail_url": "https://comicvine.gamespot.com/formic-wars-burning-earth/4050-57073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57075/", + "id": 57075, + "name": "Formic Wars: Silent Strike", + "site_detail_url": "https://comicvine.gamespot.com/formic-wars-silent-strike/4050-57075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57106/", + "id": 57106, + "name": "Hasbro/Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hasbroavengers/4050-57106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57163/", + "id": 57163, + "name": "Avengers: The Once and Future Kang", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-once-and-future-kang/4050-57163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57164/", + "id": 57164, + "name": "The Death of Captain America Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection/4050-57164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57165/", + "id": 57165, + "name": "The First X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-first-x-men/4050-57165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57167/", + "id": 57167, + "name": "X-Force Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-force-omnibus/4050-57167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57180/", + "id": 57180, + "name": "Secret Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers/4050-57180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57181/", + "id": 57181, + "name": "Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men/4050-57181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57284/", + "id": 57284, + "name": "Captain America & Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-black-widow/4050-57284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57285/", + "id": 57285, + "name": "Counter X: Generation X: Four Days", + "site_detail_url": "https://comicvine.gamespot.com/counter-x-generation-x-four-days/4050-57285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57286/", + "id": 57286, + "name": "Fantastic Four: Island of Death", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-island-of-death/4050-57286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57287/", + "id": 57287, + "name": "Iron Man By Michelinie, Layton & Romita Jr.", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-michelinie-layton-romita-jr/4050-57287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57288/", + "id": 57288, + "name": "Marvel Firsts: WWII Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-wwii-super-heroes/4050-57288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57289/", + "id": 57289, + "name": "Scarlet Spider: Life After Death", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-life-after-death/4050-57289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57290/", + "id": 57290, + "name": "Thor: The Mighty Avenger Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-mighty-avenger-complete-collection/4050-57290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57291/", + "id": 57291, + "name": "Marvel Universe Ultimate Spider-Man Digest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest/4050-57291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57296/", + "id": 57296, + "name": "Dark Tower: The Gunslinger - Sheemie's Tale", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-sheemies-tale/4050-57296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57402/", + "id": 57402, + "name": "Pizza Hut Super Savings Book Featuring X-Men", + "site_detail_url": "https://comicvine.gamespot.com/pizza-hut-super-savings-book-featuring-x-men/4050-57402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57418/", + "id": 57418, + "name": "Tales of Suspense: Captain America & Iron Man #1 Commemorative Edition", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-suspense-captain-america-iron-man-1-comme/4050-57418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57420/", + "id": 57420, + "name": "The Amazing Spider-Man: Deadball", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-deadball/4050-57420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57421/", + "id": 57421, + "name": "The Amazing Spider-Man: Skating on Thin Ice: Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-skating-on-thin-ice-double-/4050-57421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57422/", + "id": 57422, + "name": "The Amazing Spider-Man: Chaos in Calgary", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-chaos-in-calgary/4050-57422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57442/", + "id": 57442, + "name": "Avengers: Season One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-season-one/4050-57442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57481/", + "id": 57481, + "name": "X-Men: Fall of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-men-fall-of-the-mutants/4050-57481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57482/", + "id": 57482, + "name": "Daredevil by Mark Waid", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid/4050-57482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57535/", + "id": 57535, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-57535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57543/", + "id": 57543, + "name": "Captain America #25 Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-25-directors-cut/4050-57543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57564/", + "id": 57564, + "name": "Acts of Vengeance Crossovers Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-crossovers-omnibus/4050-57564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57667/", + "id": 57667, + "name": "Avengers: Avengers vs. Thanos", + "site_detail_url": "https://comicvine.gamespot.com/avengers-avengers-vs-thanos/4050-57667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57670/", + "id": 57670, + "name": "Avenging Spider-Man: The Good, the Green and the Ugly", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-the-good-the-green-and-the-ugl/4050-57670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57672/", + "id": 57672, + "name": "Marvel Masterworks: Atlas Era Jungle Adventures", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-jungle-adventures/4050-57672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57674/", + "id": 57674, + "name": "Uncanny X-Men: The Complete Collection By Matt Fraction", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4050-57674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57675/", + "id": 57675, + "name": "X-Factor: Breaking Points", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-breaking-points/4050-57675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57727/", + "id": 57727, + "name": "Hasbro/X-Men", + "site_detail_url": "https://comicvine.gamespot.com/hasbrox-men/4050-57727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57728/", + "id": 57728, + "name": "Hasbro/Defenders", + "site_detail_url": "https://comicvine.gamespot.com/hasbrodefenders/4050-57728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57754/", + "id": 57754, + "name": "The New Warriors Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-new-warriors-ashcan-edition/4050-57754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57818/", + "id": 57818, + "name": "House of M MGC", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-mgc/4050-57818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57825/", + "id": 57825, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies/4050-57825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57826/", + "id": 57826, + "name": "Zombies Christmas Carol", + "site_detail_url": "https://comicvine.gamespot.com/zombies-christmas-carol/4050-57826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57829/", + "id": 57829, + "name": "Marvel Zomnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zomnibus/4050-57829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57960/", + "id": 57960, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-57960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58038/", + "id": 58038, + "name": "Spider-Man: Nothing Can Stop the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-nothing-can-stop-the-juggernaut/4050-58038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58059/", + "id": 58059, + "name": "Astonishing X-Men: Northstar", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-northstar/4050-58059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58060/", + "id": 58060, + "name": "Marvel Noir: Wolverine & the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-noir-wolverine-the-x-men/4050-58060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58061/", + "id": 58061, + "name": "X-Treme X-Men: Xavier Must Die!", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-xavier-must-die/4050-58061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58063/", + "id": 58063, + "name": "Marvel Special Edition Featuring Star Wars The Empire Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/marvel-special-edition-featuring-star-wars-the-emp/4050-58063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58223/", + "id": 58223, + "name": "Marvel Knights 4: Resurrection of Nicholas Scratch", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-4-resurrection-of-nicholas-scratch/4050-58223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58338/", + "id": 58338, + "name": "The Amazing Spider-Man: Danger Zone", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-danger-zone/4050-58338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58436/", + "id": 58436, + "name": "Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron/4050-58436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58437/", + "id": 58437, + "name": "Marvel Universe: Iron Man Comic Reader", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-iron-man-comic-reader/4050-58437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58438/", + "id": 58438, + "name": "Monsters, Inc.: A Perfect Date", + "site_detail_url": "https://comicvine.gamespot.com/monsters-inc-a-perfect-date/4050-58438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58522/", + "id": 58522, + "name": "Hulk 1999", + "site_detail_url": "https://comicvine.gamespot.com/hulk-1999/4050-58522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58526/", + "id": 58526, + "name": "Guardians of the Galaxy Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-infinite-comic/4050-58526/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58594/", + "id": 58594, + "name": "Avengers: Avengers Infinity Classic", + "site_detail_url": "https://comicvine.gamespot.com/avengers-avengers-infinity-classic/4050-58594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58599/", + "id": 58599, + "name": "Marvel Zombies Destroy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-destroy/4050-58599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58601/", + "id": 58601, + "name": "The Amazing Spider-Man: Dying Wish", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-dying-wish/4050-58601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58602/", + "id": 58602, + "name": "Ultimate Comics Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-iron-man/4050-58602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58669/", + "id": 58669, + "name": "The Punisher: Business As Usual", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-business-as-usual/4050-58669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58780/", + "id": 58780, + "name": "Captain America Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-ashcan-edition/4050-58780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58822/", + "id": 58822, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-58822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58850/", + "id": 58850, + "name": "Pro Action Spider-Man Giveaway", + "site_detail_url": "https://comicvine.gamespot.com/pro-action-spider-man-giveaway/4050-58850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-58872/", + "id": 58872, + "name": "Big Jim's P.A.C.K.", + "site_detail_url": "https://comicvine.gamespot.com/big-jims-pack/4050-58872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59061/", + "id": 59061, + "name": "Wolverine: An Origin Story", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-an-origin-story/4050-59061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59089/", + "id": 59089, + "name": "Beyond!", + "site_detail_url": "https://comicvine.gamespot.com/beyond/4050-59089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59097/", + "id": 59097, + "name": "Marvel Masterworks: Ant-Man/Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-ant-mangiant-man/4050-59097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59098/", + "id": 59098, + "name": "Marvel Masterworks: Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-black-panther/4050-59098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59099/", + "id": 59099, + "name": "Marvel Masterworks: Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-iron-fist/4050-59099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59100/", + "id": 59100, + "name": "Marvel Masterworks: Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-team-up/4050-59100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59101/", + "id": 59101, + "name": "Marvel Masterworks: Sgt. Fury", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-sgt-fury/4050-59101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59102/", + "id": 59102, + "name": "Marvel Masterworks: Atlas Era Battlefield", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-battlefield/4050-59102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59103/", + "id": 59103, + "name": "Marvel Masterworks: Atlas Era Menace", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-menace/4050-59103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59106/", + "id": 59106, + "name": "Marvel Masterworks: Atlas Era Tales of Suspense", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-atlas-era-tales-of-suspense/4050-59106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59111/", + "id": 59111, + "name": "Secret Invasion: Incredible Hercules", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-incredible-hercules/4050-59111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59171/", + "id": 59171, + "name": "A-Team Storybook Comics Illustrated", + "site_detail_url": "https://comicvine.gamespot.com/a-team-storybook-comics-illustrated/4050-59171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59188/", + "id": 59188, + "name": "X-Termination", + "site_detail_url": "https://comicvine.gamespot.com/x-termination/4050-59188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59211/", + "id": 59211, + "name": "Marvel Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fairy-tales/4050-59211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59216/", + "id": 59216, + "name": "Walt Disney's Snow White and the Seven Dwarfs", + "site_detail_url": "https://comicvine.gamespot.com/walt-disneys-snow-white-and-the-seven-dwarfs/4050-59216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59290/", + "id": 59290, + "name": "Gambit: Once a Thief...", + "site_detail_url": "https://comicvine.gamespot.com/gambit-once-a-thief/4050-59290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59291/", + "id": 59291, + "name": "Invincible Iron Man: Long Way Down", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-long-way-down/4050-59291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59293/", + "id": 59293, + "name": "Winter Soldier: Black Widow Hunt", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-black-widow-hunt/4050-59293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59296/", + "id": 59296, + "name": "Winter Soldier: The Longest Winter", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-the-longest-winter/4050-59296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59297/", + "id": 59297, + "name": "Winter Soldier: Broken Arrow", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-broken-arrow/4050-59297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59353/", + "id": 59353, + "name": "Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men/4050-59353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59404/", + "id": 59404, + "name": "All-New X-Men: Yesterday's X-Men", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-yesterday-s-x-men/4050-59404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59405/", + "id": 59405, + "name": "Astonishing X-Men: Weaponized", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-weaponized/4050-59405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59406/", + "id": 59406, + "name": "Avengers Vs X-Men", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men/4050-59406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59408/", + "id": 59408, + "name": "Doom 2099: The Complete Collection By Warren Ellis", + "site_detail_url": "https://comicvine.gamespot.com/doom-2099-the-complete-collection-by-warren-ellis/4050-59408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59411/", + "id": 59411, + "name": "Marvel Universe Vs The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-vs-the-avengers/4050-59411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59412/", + "id": 59412, + "name": "The Mighty Thor By Matt Fraction", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-by-matt-fraction/4050-59412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59449/", + "id": 59449, + "name": "Avengers Annual #10 [Marvel Legends Reprint]", + "site_detail_url": "https://comicvine.gamespot.com/avengers-annual-10-marvel-legends-reprint/4050-59449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59475/", + "id": 59475, + "name": "Avengers [Taco Bell]", + "site_detail_url": "https://comicvine.gamespot.com/avengers-taco-bell/4050-59475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59491/", + "id": 59491, + "name": "Half Dead", + "site_detail_url": "https://comicvine.gamespot.com/half-dead/4050-59491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59511/", + "id": 59511, + "name": "Thanos Rising", + "site_detail_url": "https://comicvine.gamespot.com/thanos-rising/4050-59511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59534/", + "id": 59534, + "name": "Black Panther: The Most Dangerous Man Alive", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-most-dangerous-man-alive/4050-59534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59558/", + "id": 59558, + "name": "The Dark Tower: The Gunslinger - Evil Ground", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-evil-ground/4050-59558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59564/", + "id": 59564, + "name": "Avengers: West Coast Avengers Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus/4050-59564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59569/", + "id": 59569, + "name": "Fantastic Four: New Departure, New Arrivals", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-new-departure-new-arrivals/4050-59569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59570/", + "id": 59570, + "name": "Iron Man: Believe", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-believe/4050-59570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59571/", + "id": 59571, + "name": "Iron Man: Season One", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-season-one/4050-59571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59573/", + "id": 59573, + "name": "Red She-Hulk: Hell Hath No Fury Now", + "site_detail_url": "https://comicvine.gamespot.com/red-she-hulk-hell-hath-no-fury-now/4050-59573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59583/", + "id": 59583, + "name": "Marvel's Iron Man 3 Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-iron-man-3-prelude/4050-59583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59624/", + "id": 59624, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-59624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59673/", + "id": 59673, + "name": "Avengers Assemble by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-by-brian-michael-bendis/4050-59673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59722/", + "id": 59722, + "name": "Spider-Man: The Lost Years", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-lost-years/4050-59722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59743/", + "id": 59743, + "name": "Ultimate Fantastic Four: Salem's Seven", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-salems-seven/4050-59743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59744/", + "id": 59744, + "name": "Ultimate Fantastic Four Oversized Edition", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-oversized-edition/4050-59744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59758/", + "id": 59758, + "name": "Marvel Legacy: The 1960s-1990s Handbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-the-1960s-1990s-handbook/4050-59758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59759/", + "id": 59759, + "name": "Wolverine: Weapon X Files", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-files/4050-59759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59760/", + "id": 59760, + "name": "Amazing Spider-Man: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-official-index-to-the-marvel-un/4050-59760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59762/", + "id": 59762, + "name": "Iron Man: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-official-index-to-the-marvel-universe/4050-59762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59763/", + "id": 59763, + "name": "Uncanny X-Men: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-official-index-to-the-marvel-univers/4050-59763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59764/", + "id": 59764, + "name": "Avengers: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/avengers-official-index-to-the-marvel-universe/4050-59764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59765/", + "id": 59765, + "name": "Captain America: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-official-index-to-the-marvel-unive/4050-59765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59821/", + "id": 59821, + "name": "Ghost Rider: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-official-index-to-the-marvel-universe/4050-59821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59822/", + "id": 59822, + "name": "Official Handbook of the Marvel Universe A-Z", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-z/4050-59822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59823/", + "id": 59823, + "name": "Punisher: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/punisher-official-index-to-the-marvel-universe/4050-59823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59824/", + "id": 59824, + "name": "Thor: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/thor-official-index-to-the-marvel-universe/4050-59824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59825/", + "id": 59825, + "name": "X-Men: First Class Magazine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-first-class-magazine/4050-59825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59884/", + "id": 59884, + "name": "Captain America and Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-iron-man/4050-59884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59887/", + "id": 59887, + "name": "Captain America and Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-hawkeye/4050-59887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59938/", + "id": 59938, + "name": "Loose Cannons", + "site_detail_url": "https://comicvine.gamespot.com/loose-cannons/4050-59938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60045/", + "id": 60045, + "name": "Captain Marvel: In Pursuit of Flight", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-in-pursuit-of-flight/4050-60045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60065/", + "id": 60065, + "name": "Age of Apocalypse: Weapon Omega", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse-weapon-omega/4050-60065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60066/", + "id": 60066, + "name": "Avengers: Avengers World", + "site_detail_url": "https://comicvine.gamespot.com/avengers-avengers-world/4050-60066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60067/", + "id": 60067, + "name": "Avengers Vs X-Men: X-Men Legacy", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-x-men-legacy/4050-60067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60072/", + "id": 60072, + "name": "Iron Man 2020", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020/4050-60072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60075/", + "id": 60075, + "name": "Scarlet Spider: Lone Star", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-lone-star/4050-60075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60077/", + "id": 60077, + "name": "Venom: Devil's Pack", + "site_detail_url": "https://comicvine.gamespot.com/venom-devils-pack/4050-60077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60078/", + "id": 60078, + "name": "X-Men: Legacy - Prodigal", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-prodigal/4050-60078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60175/", + "id": 60175, + "name": "Captain America: Extremists", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-extremists/4050-60175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60196/", + "id": 60196, + "name": "Captain America: Ice", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-ice/4050-60196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60199/", + "id": 60199, + "name": "Captain America: Cap Lives", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-cap-lives/4050-60199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60219/", + "id": 60219, + "name": "Magician Master: The Great One", + "site_detail_url": "https://comicvine.gamespot.com/magician-master-the-great-one/4050-60219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60319/", + "id": 60319, + "name": "Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme/4050-60319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60321/", + "id": 60321, + "name": "The Twelve", + "site_detail_url": "https://comicvine.gamespot.com/the-twelve/4050-60321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60322/", + "id": 60322, + "name": "Uncanny Avengers: The Red Shadow", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-the-red-shadow/4050-60322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60432/", + "id": 60432, + "name": "The Incredible Hulk '97", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-97/4050-60432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60434/", + "id": 60434, + "name": "Hulk / Sub-Mariner '98", + "site_detail_url": "https://comicvine.gamespot.com/hulk-sub-mariner-98/4050-60434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60435/", + "id": 60435, + "name": "Hulk 2000", + "site_detail_url": "https://comicvine.gamespot.com/hulk-2000/4050-60435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60436/", + "id": 60436, + "name": "The Amazing Spider-Man '96", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-96/4050-60436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60438/", + "id": 60438, + "name": "The Amazing Spider-Man '97", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-97/4050-60438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60439/", + "id": 60439, + "name": "Spider-Man '98", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-98/4050-60439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60440/", + "id": 60440, + "name": "The Amazing Spider-Man 1999", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-1999/4050-60440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60441/", + "id": 60441, + "name": "The Amazing Spider-Man 2000", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2000/4050-60441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60442/", + "id": 60442, + "name": "The Amazing Spider-Man 2001", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-2001/4050-60442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60443/", + "id": 60443, + "name": "Generation X '96", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-96/4050-60443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60444/", + "id": 60444, + "name": "Generation X '97", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-97/4050-60444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60445/", + "id": 60445, + "name": "Generation X / Dracula '98", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-dracula-98/4050-60445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60446/", + "id": 60446, + "name": "Generation X 1999", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-1999/4050-60446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60447/", + "id": 60447, + "name": "Thor 1999", + "site_detail_url": "https://comicvine.gamespot.com/thor-1999/4050-60447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60449/", + "id": 60449, + "name": "Thor 2000", + "site_detail_url": "https://comicvine.gamespot.com/thor-2000/4050-60449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60450/", + "id": 60450, + "name": "Thor 2001", + "site_detail_url": "https://comicvine.gamespot.com/thor-2001/4050-60450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60452/", + "id": 60452, + "name": "Captain America / Citizen V '98", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-citizen-v-98/4050-60452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60453/", + "id": 60453, + "name": "Captain America 1999", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-1999/4050-60453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60454/", + "id": 60454, + "name": "Captain America 2000", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-2000/4050-60454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60455/", + "id": 60455, + "name": "Captain America 2001", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-2001/4050-60455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60457/", + "id": 60457, + "name": "Iron Man 1999", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-1999/4050-60457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60459/", + "id": 60459, + "name": "Iron Man 2000", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2000/4050-60459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60460/", + "id": 60460, + "name": "Iron Man 2001", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2001/4050-60460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60462/", + "id": 60462, + "name": "X-Men '95", + "site_detail_url": "https://comicvine.gamespot.com/x-men-95/4050-60462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60463/", + "id": 60463, + "name": "X-Men 1999", + "site_detail_url": "https://comicvine.gamespot.com/x-men-1999/4050-60463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60464/", + "id": 60464, + "name": "X-Men '97", + "site_detail_url": "https://comicvine.gamespot.com/x-men-97/4050-60464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60465/", + "id": 60465, + "name": "X-Men 2000", + "site_detail_url": "https://comicvine.gamespot.com/x-men-2000/4050-60465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60468/", + "id": 60468, + "name": "Uncanny X-Men '95", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-95/4050-60468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60469/", + "id": 60469, + "name": "Uncanny X-Men '96", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-96/4050-60469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60470/", + "id": 60470, + "name": "Uncanny X-Men '97", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-97/4050-60470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60471/", + "id": 60471, + "name": "Uncanny X-Men 2000", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-2000/4050-60471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60472/", + "id": 60472, + "name": "Uncanny X-Men 2001", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-2001/4050-60472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60491/", + "id": 60491, + "name": "Thunderbolts 2000", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-2000/4050-60491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60492/", + "id": 60492, + "name": "Uncanny X-Men 1999", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-1999/4050-60492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60493/", + "id": 60493, + "name": "Fantastic Four / Fantastic 4 '98", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-fantastic-4-98/4050-60493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60494/", + "id": 60494, + "name": "Fantastic Four 1999", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-1999/4050-60494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60495/", + "id": 60495, + "name": "Fantastic Four 2000", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2000/4050-60495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60496/", + "id": 60496, + "name": "Fantastic Four 2001", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2001/4050-60496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60498/", + "id": 60498, + "name": "Gambit 2000", + "site_detail_url": "https://comicvine.gamespot.com/gambit-2000/4050-60498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60547/", + "id": 60547, + "name": "Iron Man: The Coming of the Melter", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-coming-of-the-melter/4050-60547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60586/", + "id": 60586, + "name": "Iron Man/War Machine: Hands of the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/iron-manwar-machine-hands-of-the-mandarin/4050-60586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60637/", + "id": 60637, + "name": "Cable and X-Force: Wanted", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-x-force-wanted/4050-60637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60639/", + "id": 60639, + "name": "The Art of Iron Man 3", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-iron-man-3/4050-60639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60640/", + "id": 60640, + "name": "Wolverine: The Best There Is - The Complete Series", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-best-there-is-the-complete-series/4050-60640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60789/", + "id": 60789, + "name": "Free Comic Book Day 2013 (Infinity)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2013-infinity/4050-60789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60830/", + "id": 60830, + "name": "Free Comic Book Day 2013 (Avengers/Hulk)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2013-avengers-hulk/4050-60830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60890/", + "id": 60890, + "name": "Hasbro/Thanos & Warlock", + "site_detail_url": "https://comicvine.gamespot.com/hasbrothanos-warlock/4050-60890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60891/", + "id": 60891, + "name": "Avengers: Heart of Stone", + "site_detail_url": "https://comicvine.gamespot.com/avengers-heart-of-stone/4050-60891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60966/", + "id": 60966, + "name": "Cartoons Marooned", + "site_detail_url": "https://comicvine.gamespot.com/cartoons-marooned/4050-60966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60969/", + "id": 60969, + "name": "Avengers Arena: Kill Or Die", + "site_detail_url": "https://comicvine.gamespot.com/avengers-arena-kill-or-die/4050-60969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60970/", + "id": 60970, + "name": "Avengers Vs X-Men Companion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-companion/4050-60970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60971/", + "id": 60971, + "name": "Avenging Spider-Man: Threats & Menaces", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-threats-menaces/4050-60971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-60974/", + "id": 60974, + "name": "Thunderbolts: No Quarter", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-no-quarter/4050-60974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61040/", + "id": 61040, + "name": "Marvel Illustrated: The Odyssey", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-odyssey/4050-61040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61158/", + "id": 61158, + "name": "Paradise X: X", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x-x/4050-61158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61161/", + "id": 61161, + "name": "Avengers/Invaders #1 Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders-1-directors-cut/4050-61161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61164/", + "id": 61164, + "name": "Gambit and Bishop: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/gambit-and-bishop-alpha/4050-61164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61165/", + "id": 61165, + "name": "Gambit & Bishop: Genesis", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop-genesis/4050-61165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61176/", + "id": 61176, + "name": "The Supernaturals Tour Book", + "site_detail_url": "https://comicvine.gamespot.com/the-supernaturals-tour-book/4050-61176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61177/", + "id": 61177, + "name": "Secret Invasion Prologue", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-prologue/4050-61177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61179/", + "id": 61179, + "name": "Fantastic Four: Atlantis Rising Collectors' Preview", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-atlantis-rising-collectors-preview/4050-61179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61180/", + "id": 61180, + "name": "Dark Reign: Fantastic Four Preview", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-fantastic-four-preview/4050-61180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61181/", + "id": 61181, + "name": "Captain America: Reborn Prologue", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-reborn-prologue/4050-61181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61182/", + "id": 61182, + "name": "MTV's Beavis & Butt-Head", + "site_detail_url": "https://comicvine.gamespot.com/mtvs-beavis-butt-head/4050-61182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61211/", + "id": 61211, + "name": "Universe X Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/universe-x-special-edition/4050-61211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61213/", + "id": 61213, + "name": "The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor/4050-61213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61215/", + "id": 61215, + "name": "Cartoons from the Editors of Male and Stag", + "site_detail_url": "https://comicvine.gamespot.com/cartoons-from-the-editors-of-male-and-stag/4050-61215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61264/", + "id": 61264, + "name": "Cartoons from the Dungeon", + "site_detail_url": "https://comicvine.gamespot.com/cartoons-from-the-dungeon/4050-61264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61317/", + "id": 61317, + "name": "Avengers: The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-enemy-within/4050-61317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61318/", + "id": 61318, + "name": "New Warriors Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-omnibus/4050-61318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61399/", + "id": 61399, + "name": "Captain Marvel: Down", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-down/4050-61399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61401/", + "id": 61401, + "name": "Incredible Hulk: Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-crossroads/4050-61401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61402/", + "id": 61402, + "name": "Indestructible Hulk: Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-agent-of-s-h-i-e-l-d/4050-61402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61404/", + "id": 61404, + "name": "Wolverine: Official Index to the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-official-index-to-the-marvel-universe/4050-61404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61607/", + "id": 61607, + "name": "Ren and Stimpy Show Special: Sports", + "site_detail_url": "https://comicvine.gamespot.com/ren-and-stimpy-show-special-sports/4050-61607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61609/", + "id": 61609, + "name": "The Ren & Stimpy Show: Around the World in a Daze", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-stimpy-show-around-the-world-in-a-daze/4050-61609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61610/", + "id": 61610, + "name": "The Ren & Stimpy Show Eenteracteeve Special", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-stimpy-show-eenteracteeve-special/4050-61610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61611/", + "id": 61611, + "name": "Ren & Stimpy Show", + "site_detail_url": "https://comicvine.gamespot.com/ren-stimpy-show/4050-61611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61773/", + "id": 61773, + "name": "Spider-Man vs. Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-wolverine/4050-61773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61870/", + "id": 61870, + "name": "A+X: A+X = Awesome", + "site_detail_url": "https://comicvine.gamespot.com/ax-ax-awesome/4050-61870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61873/", + "id": 61873, + "name": "Journey Into Mystery: Stronger Than Monsters", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-stronger-than-monsters/4050-61873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61886/", + "id": 61886, + "name": "Boys' Ranch", + "site_detail_url": "https://comicvine.gamespot.com/boys-ranch/4050-61886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62001/", + "id": 62001, + "name": "Marvel's Iron Man 3 Prelude Custom Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvels-iron-man-3-prelude-custom-edition/4050-62001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62148/", + "id": 62148, + "name": "Avengers: Defenders War", + "site_detail_url": "https://comicvine.gamespot.com/avengers-defenders-war/4050-62148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62150/", + "id": 62150, + "name": "Avengers: Under Siege", + "site_detail_url": "https://comicvine.gamespot.com/avengers-under-siege/4050-62150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62180/", + "id": 62180, + "name": "Young Guns Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/young-guns-sketchbook/4050-62180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62244/", + "id": 62244, + "name": "Star Wars: Return of the Jedi", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-return-of-the-jedi/4050-62244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62318/", + "id": 62318, + "name": "Captain America [Taco Bell]", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-taco-bell/4050-62318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62319/", + "id": 62319, + "name": "Captain America Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-spotlight/4050-62319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62320/", + "id": 62320, + "name": "Captain America & The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-incredible-hulk/4050-62320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62383/", + "id": 62383, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-62383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62457/", + "id": 62457, + "name": "All-New X-Men: Here To Stay", + "site_detail_url": "https://comicvine.gamespot.com/all-new-x-men-here-to-stay/4050-62457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62458/", + "id": 62458, + "name": "Cable & X-Force Classic", + "site_detail_url": "https://comicvine.gamespot.com/cable-x-force-classic/4050-62458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62460/", + "id": 62460, + "name": "Deadpool: Dead Presidents", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-dead-presidents/4050-62460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62461/", + "id": 62461, + "name": "Marvel Noir: Spider-Man/Punisher", + "site_detail_url": "https://comicvine.gamespot.com/marvel-noir-spider-manpunisher/4050-62461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62462/", + "id": 62462, + "name": "Monsters, Inc.: Scary Stories", + "site_detail_url": "https://comicvine.gamespot.com/monsters-inc-scary-stories/4050-62462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62463/", + "id": 62463, + "name": "Punisher War Zone", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-zone/4050-62463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62465/", + "id": 62465, + "name": "Superior Spider-Man: My Own Worst Enemy", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-my-own-worst-enemy/4050-62465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62466/", + "id": 62466, + "name": "Thor: God of Thunder - The God Butcher", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder-the-god-butcher/4050-62466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62468/", + "id": 62468, + "name": "Ultimate Comics X-Men By Brian Wood", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-x-men-by-brian-wood/4050-62468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62487/", + "id": 62487, + "name": "Avengers: The Complete Collection by Geoff Johns", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-complete-collection-by-geoff-johns/4050-62487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62517/", + "id": 62517, + "name": "Captain Universe: The Hero Who Could Be You!", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-the-hero-who-could-be-you/4050-62517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62619/", + "id": 62619, + "name": "Like a Volt from the Blue!!", + "site_detail_url": "https://comicvine.gamespot.com/like-a-volt-from-the-blue/4050-62619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62685/", + "id": 62685, + "name": "Fighting American", + "site_detail_url": "https://comicvine.gamespot.com/fighting-american/4050-62685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62691/", + "id": 62691, + "name": "FDNY Custom Comic", + "site_detail_url": "https://comicvine.gamespot.com/fdny-custom-comic/4050-62691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62697/", + "id": 62697, + "name": "Fantastic Four: Franklin’s Adventures", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-franklin-s-adventures/4050-62697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62698/", + "id": 62698, + "name": "Fantastic Four: First Family", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-first-family/4050-62698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62699/", + "id": 62699, + "name": "Fantastic Four [Taco Bell]", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-taco-bell/4050-62699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62701/", + "id": 62701, + "name": "Fantastic Four 2K Games Giveaway", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2k-games-giveaway/4050-62701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62718/", + "id": 62718, + "name": "Star Trek: Telepathy War", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-telepathy-war/4050-62718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62719/", + "id": 62719, + "name": "Star Trek: Collector's Preview", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-collector-s-preview/4050-62719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62737/", + "id": 62737, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-62737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62861/", + "id": 62861, + "name": "Custom: Deal - Fox Home Entertainment (X-3 Stan Lee Comic)", + "site_detail_url": "https://comicvine.gamespot.com/custom-deal-fox-home-entertainment-x-3-stan-lee-co/4050-62861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62878/", + "id": 62878, + "name": "Daredevil: Dark Nights", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-dark-nights/4050-62878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62951/", + "id": 62951, + "name": "X-Men: Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/x-men-ghosts/4050-62951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62964/", + "id": 62964, + "name": "Marvel's Thor: The Dark World Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-thor-the-dark-world-prelude/4050-62964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62974/", + "id": 62974, + "name": "Wolverine: Season One", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-season-one/4050-62974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63077/", + "id": 63077, + "name": "In His Steps", + "site_detail_url": "https://comicvine.gamespot.com/in-his-steps/4050-63077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63086/", + "id": 63086, + "name": "Iron Man & Force Works Collectors' Preview", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-force-works-collectors-preview/4050-63086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63174/", + "id": 63174, + "name": "John Romita Jr. 30th Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/john-romita-jr-30th-anniversary-special/4050-63174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63175/", + "id": 63175, + "name": "John Carter Warlord of Mars Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/john-carter-warlord-of-mars-omnibus/4050-63175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63188/", + "id": 63188, + "name": "Jesse James Is A Dead Man", + "site_detail_url": "https://comicvine.gamespot.com/jesse-james-is-a-dead-man/4050-63188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63195/", + "id": 63195, + "name": "Marvel Team-Up: League of Losers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up-league-of-losers/4050-63195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63254/", + "id": 63254, + "name": "Captain America: Transformation and Triumph", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-transformation-and-triumph/4050-63254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63290/", + "id": 63290, + "name": "Wolverine Comic Reader", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-comic-reader/4050-63290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63426/", + "id": 63426, + "name": "Captain America: Castaway In Dimension Z", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-castaway-in-dimension-z/4050-63426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63427/", + "id": 63427, + "name": "Deadpool Killustrated", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-killustrated/4050-63427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63428/", + "id": 63428, + "name": "Marvel Noir: Daredevil/Cage/Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-noir-daredevilcageiron-man/4050-63428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63429/", + "id": 63429, + "name": "Marvel Universe: Wolverine Digest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-wolverine-digest/4050-63429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63430/", + "id": 63430, + "name": "Wolverine: First Cuts", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-first-cuts/4050-63430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63474/", + "id": 63474, + "name": "The Incredible Hulk Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-ashcan-edition/4050-63474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63485/", + "id": 63485, + "name": "Kà by Cirque Du Soleil", + "site_detail_url": "https://comicvine.gamespot.com/ka-by-cirque-du-soleil/4050-63485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63494/", + "id": 63494, + "name": "Union Jack", + "site_detail_url": "https://comicvine.gamespot.com/union-jack/4050-63494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63586/", + "id": 63586, + "name": "Thunderbolts: Like Lightning", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-like-lightning/4050-63586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63604/", + "id": 63604, + "name": "Hero Initiative: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/hero-initiative-fantastic-four/4050-63604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63614/", + "id": 63614, + "name": "Marvel Action Hour Preview", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-hour-preview/4050-63614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63615/", + "id": 63615, + "name": "Marvel Adventures Jack in the Box Exclusive", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-jack-in-the-box-exclusive/4050-63615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63617/", + "id": 63617, + "name": "Marvel Chillers: The Thing in The Glass Case", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-the-thing-in-the-glass-case/4050-63617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63621/", + "id": 63621, + "name": "The Marvel Guide to Collecting Comics", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-guide-to-collecting-comics/4050-63621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63623/", + "id": 63623, + "name": "Marvel Mart", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mart/4050-63623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63624/", + "id": 63624, + "name": "Marvel Masters: The Art of John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masters-the-art-of-john-byrne/4050-63624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63625/", + "id": 63625, + "name": "Marvel Mix-Tape: SDCC 2011", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-tape-sdcc-2011/4050-63625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63626/", + "id": 63626, + "name": "Marvel Monthly Catalog", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monthly-catalog/4050-63626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63628/", + "id": 63628, + "name": "Marvel Previews SDCC Special", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews-sdcc-special/4050-63628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63629/", + "id": 63629, + "name": "Marvel Romance", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance/4050-63629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63794/", + "id": 63794, + "name": "Birds Eye Puzzle Fun Book", + "site_detail_url": "https://comicvine.gamespot.com/birds-eye-puzzle-fun-book/4050-63794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63876/", + "id": 63876, + "name": "The Invincible Iron Man: The Future", + "site_detail_url": "https://comicvine.gamespot.com/the-invincible-iron-man-the-future/4050-63876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63907/", + "id": 63907, + "name": "The Punisher and Wolverine in African Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-and-wolverine-in-african-saga/4050-63907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63916/", + "id": 63916, + "name": "The Rise Of Master M", + "site_detail_url": "https://comicvine.gamespot.com/the-rise-of-master-m/4050-63916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63926/", + "id": 63926, + "name": "Sales To Astonish: The Comic Book, Autumn 1993", + "site_detail_url": "https://comicvine.gamespot.com/sales-to-astonish-the-comic-book-autumn-1993/4050-63926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63927/", + "id": 63927, + "name": "Sales To Astonish: The Comic Book, Winter 1993", + "site_detail_url": "https://comicvine.gamespot.com/sales-to-astonish-the-comic-book-winter-1993/4050-63927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63948/", + "id": 63948, + "name": "Saturday Morning The Comic", + "site_detail_url": "https://comicvine.gamespot.com/saturday-morning-the-comic/4050-63948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63949/", + "id": 63949, + "name": "Savage Fists Of Kung Fu", + "site_detail_url": "https://comicvine.gamespot.com/savage-fists-of-kung-fu/4050-63949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63951/", + "id": 63951, + "name": "Spider-Man: Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-savage-land/4050-63951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-63999/", + "id": 63999, + "name": "The Seventh Shrine", + "site_detail_url": "https://comicvine.gamespot.com/the-seventh-shrine/4050-63999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64021/", + "id": 64021, + "name": "Star Trek: The Next Generation/X-Men: Second Contact", + "site_detail_url": "https://comicvine.gamespot.com/star-trek-the-next-generationx-men-second-contact/4050-64021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64098/", + "id": 64098, + "name": "Sleepy's Hulk Custom Comic", + "site_detail_url": "https://comicvine.gamespot.com/sleepys-hulk-custom-comic/4050-64098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64122/", + "id": 64122, + "name": "Son of Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/son-of-origins-of-marvel-comics/4050-64122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64125/", + "id": 64125, + "name": "Spider-Man Interactive Comic Book", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-interactive-comic-book/4050-64125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64126/", + "id": 64126, + "name": "Spider-Man Mysteries", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-mysteries/4050-64126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64146/", + "id": 64146, + "name": "Spider-Island Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/spider-island-spotlight/4050-64146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64147/", + "id": 64147, + "name": "Spider-Man 3: Movie Prequel", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-3-movie-prequel/4050-64147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64148/", + "id": 64148, + "name": "Spider-Man: Bug Stops Here", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-bug-stops-here/4050-64148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64149/", + "id": 64149, + "name": "Spider-Man Doctor Octopus Mini Reprint", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doctor-octopus-mini-reprint/4050-64149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64151/", + "id": 64151, + "name": "Spider-Man and Sinister 6 Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-sinister-6-poster-book/4050-64151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64152/", + "id": 64152, + "name": "Spider-Man and Spider-Woman (7-11 Giveaway)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-spider-woman-7-11-giveaway/4050-64152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64154/", + "id": 64154, + "name": "Spider-Man: Christmas in Dallas (Dallas Times Herald Giveaway)", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-christmas-in-dallas-dallas-times-herald/4050-64154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64155/", + "id": 64155, + "name": "Spider-Man’s Fearsome Foes Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-s-fearsome-foes-poster-book/4050-64155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64200/", + "id": 64200, + "name": "Avengers: The Sentinels Strike", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-sentinels-strike/4050-64200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64318/", + "id": 64318, + "name": "Thor: Tales of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-tales-of-asgard/4050-64318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64348/", + "id": 64348, + "name": "Star-Lord: The Hollow Crown", + "site_detail_url": "https://comicvine.gamespot.com/star-lord-the-hollow-crown/4050-64348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64429/", + "id": 64429, + "name": "Castle: A Calm Before Storm", + "site_detail_url": "https://comicvine.gamespot.com/castle-a-calm-before-storm/4050-64429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64431/", + "id": 64431, + "name": "Ultimate Comics Ultimates by Sam Humphries", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-ultimates-by-sam-humphries/4050-64431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64432/", + "id": 64432, + "name": "Ultimate Comics Wolverine: Legacies", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-wolverine-legacies/4050-64432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64433/", + "id": 64433, + "name": "Wolverine by Larry Hama and Marc Silvestri", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-larry-hama-and-marc-silvestri/4050-64433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64453/", + "id": 64453, + "name": "Avengers: Season One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-season-one/4050-64453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64457/", + "id": 64457, + "name": "Thor (Taco Bell)", + "site_detail_url": "https://comicvine.gamespot.com/thor-taco-bell/4050-64457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64458/", + "id": 64458, + "name": "Thor: Search For Odin", + "site_detail_url": "https://comicvine.gamespot.com/thor-search-for-odin/4050-64458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64683/", + "id": 64683, + "name": "Avengers A.I.", + "site_detail_url": "https://comicvine.gamespot.com/avengers-a-i/4050-64683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64684/", + "id": 64684, + "name": "Deadpool Kills Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-deadpool/4050-64684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64685/", + "id": 64685, + "name": "Dexter", + "site_detail_url": "https://comicvine.gamespot.com/dexter/4050-64685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64686/", + "id": 64686, + "name": "The Emerald City of Oz", + "site_detail_url": "https://comicvine.gamespot.com/the-emerald-city-of-oz/4050-64686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64687/", + "id": 64687, + "name": "The Superior Foes of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man/4050-64687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64688/", + "id": 64688, + "name": "What If? AVX", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx/4050-64688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64771/", + "id": 64771, + "name": "Daredevil: End of Days", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-end-of-days/4050-64771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64772/", + "id": 64772, + "name": "Dark Avengers: Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-masters-of-evil/4050-64772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64773/", + "id": 64773, + "name": "Marvel Now! Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-omnibus/4050-64773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64774/", + "id": 64774, + "name": "New Avengers: Everything Dies", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-everything-dies/4050-64774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64776/", + "id": 64776, + "name": "Uncanny X-Men: Revolution", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-revolution/4050-64776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64777/", + "id": 64777, + "name": "Venom: The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-enemy-within/4050-64777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64778/", + "id": 64778, + "name": "Wolverine By Mark Millar Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus/4050-64778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64779/", + "id": 64779, + "name": "X-Factor: Hell On Earth War", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-hell-on-earth-war/4050-64779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64806/", + "id": 64806, + "name": "Guardians of the Galaxy: Tomorrow's Avengers", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-tomorrows-avengers/4050-64806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64901/", + "id": 64901, + "name": "Sensational Spider-Man Wizard Mini Comic", + "site_detail_url": "https://comicvine.gamespot.com/sensational-spider-man-wizard-mini-comic/4050-64901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64914/", + "id": 64914, + "name": "X-Men Firsts", + "site_detail_url": "https://comicvine.gamespot.com/x-men-firsts/4050-64914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64915/", + "id": 64915, + "name": "X-Men Legends Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-poster-book/4050-64915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65112/", + "id": 65112, + "name": "Wolverine: Japan's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-japans-most-wanted/4050-65112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65113/", + "id": 65113, + "name": "Marvel Share Your Universe Sampler", + "site_detail_url": "https://comicvine.gamespot.com/marvel-share-your-universe-sampler/4050-65113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65135/", + "id": 65135, + "name": "Share Your Universe: The Avengers!", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-the-avengers/4050-65135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65187/", + "id": 65187, + "name": "Avengers: The Last White Event", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-last-white-event/4050-65187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65188/", + "id": 65188, + "name": "The Dark Tower: The Gunslinger - The Way Station", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-the-way-station/4050-65188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65190/", + "id": 65190, + "name": "FF: Fantastic Faux", + "site_detail_url": "https://comicvine.gamespot.com/ff-fantastic-faux/4050-65190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65191/", + "id": 65191, + "name": "Gambit: Tombstone Blues", + "site_detail_url": "https://comicvine.gamespot.com/gambit-tombstone-blues/4050-65191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65193/", + "id": 65193, + "name": "Hawkeye: Little Hits", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-little-hits/4050-65193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65197/", + "id": 65197, + "name": "Superior Spider-Man Team-Up: Superiority Complex", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-team-up-superiority-complex/4050-65197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65203/", + "id": 65203, + "name": "Share Your Universe: Ultimate Spider-Man Premiere", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-ultimate-spider-man-premiere/4050-65203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65204/", + "id": 65204, + "name": "Share Your Universe Hulk: Agents of Smash", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-hulk-agents-of-smash/4050-65204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65205/", + "id": 65205, + "name": "Share Your Universe: Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-ultimate-spider-man/4050-65205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65206/", + "id": 65206, + "name": "Share Your Universe: Thor", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-thor/4050-65206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65207/", + "id": 65207, + "name": "Share Your Universe: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-captain-america/4050-65207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65208/", + "id": 65208, + "name": "Share Your Universe: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-spider-man/4050-65208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65209/", + "id": 65209, + "name": "Share Your Universe: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-iron-man/4050-65209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65210/", + "id": 65210, + "name": "Share Your Universe Thor: God of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-thor-god-of-thunder/4050-65210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65211/", + "id": 65211, + "name": "Share Your Universe: Captain America & Thor", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-captain-america-thor/4050-65211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65212/", + "id": 65212, + "name": "Share Your Universe: Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-invincible-iron-man/4050-65212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65213/", + "id": 65213, + "name": "Share Your Universe: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-wolverine/4050-65213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65214/", + "id": 65214, + "name": "Share Your Universe: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-x-men/4050-65214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65215/", + "id": 65215, + "name": "Share Your Universe: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/share-your-universe-avengers/4050-65215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65216/", + "id": 65216, + "name": "Thor: Gods, Gladiators and the Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/thor-gods-gladiators-and-the-guardians-of-the-gala/4050-65216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65314/", + "id": 65314, + "name": "Avengers Legends: The Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/avengers-legends-the-korvac-saga/4050-65314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65336/", + "id": 65336, + "name": "The Best Of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-marvel/4050-65336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65337/", + "id": 65337, + "name": "Big Hero 6: Brave New Heroes", + "site_detail_url": "https://comicvine.gamespot.com/big-hero-6-brave-new-heroes/4050-65337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65378/", + "id": 65378, + "name": "Superior Carnage", + "site_detail_url": "https://comicvine.gamespot.com/superior-carnage/4050-65378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65413/", + "id": 65413, + "name": "Deadpool Kills the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe/4050-65413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65431/", + "id": 65431, + "name": "Deadpool By Daniel Way: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection/4050-65431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65438/", + "id": 65438, + "name": "Avengers/Invaders", + "site_detail_url": "https://comicvine.gamespot.com/avengersinvaders/4050-65438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65556/", + "id": 65556, + "name": "Best of Marvel '96", + "site_detail_url": "https://comicvine.gamespot.com/best-of-marvel-96/4050-65556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65579/", + "id": 65579, + "name": "Cartoon Humorama", + "site_detail_url": "https://comicvine.gamespot.com/cartoon-humorama/4050-65579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65596/", + "id": 65596, + "name": "Mighty Avengers: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion/4050-65596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65597/", + "id": 65597, + "name": "Mighty Avengers: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-dark-reign/4050-65597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65627/", + "id": 65627, + "name": "Hawkeye Annual", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-annual/4050-65627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65628/", + "id": 65628, + "name": "Hunger", + "site_detail_url": "https://comicvine.gamespot.com/hunger/4050-65628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65629/", + "id": 65629, + "name": "Superior Spider-Man Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-team-up/4050-65629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65709/", + "id": 65709, + "name": "Avengers: Heavy Metal", + "site_detail_url": "https://comicvine.gamespot.com/avengers-heavy-metal/4050-65709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65711/", + "id": 65711, + "name": "Fantastic Four: Crusaders & Titans", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-crusaders-titans/4050-65711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65712/", + "id": 65712, + "name": "Infinity: Incoming!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-incoming/4050-65712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65714/", + "id": 65714, + "name": "Marvel Masterworks: Golden Age All-Winners", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-all-winners/4050-65714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65716/", + "id": 65716, + "name": "X-Men: X-Termination", + "site_detail_url": "https://comicvine.gamespot.com/x-men-x-termination/4050-65716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65717/", + "id": 65717, + "name": "X-Treme X-Men: You Can't Go Home Again", + "site_detail_url": "https://comicvine.gamespot.com/x-treme-x-men-you-cant-go-home-again/4050-65717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65724/", + "id": 65724, + "name": "Marvel Mix-Tape: SDCC 2013", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mix-tape-sdcc-2013/4050-65724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65725/", + "id": 65725, + "name": "Official Handbook of the Marvel Universe: Spider-Man 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-spider-ma/4050-65725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65726/", + "id": 65726, + "name": "Official Handbook of the Marvel Universe: Avengers 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-avengers-/4050-65726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65727/", + "id": 65727, + "name": "Official Handbook of the Marvel Universe: Hulk 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-hulk-2004/4050-65727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65728/", + "id": 65728, + "name": "Official Handbook of the Marvel Universe: Daredevil 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-daredevil/4050-65728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65729/", + "id": 65729, + "name": "Official Handbook of the Marvel Universe: Wolverine 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-wolverine/4050-65729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65730/", + "id": 65730, + "name": "Official Handbook of the Marvel Universe: Book of the Dead 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-book-of-t/4050-65730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65731/", + "id": 65731, + "name": "Official Handbook of the Marvel Universe: Golden Age Marvel 2004", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-golden-ag/4050-65731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65732/", + "id": 65732, + "name": "Official Handbook of the Marvel Universe: The Women of Marvel 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-the-women/4050-65732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65733/", + "id": 65733, + "name": "Official Handbook of the Marvel Universe: Marvel Knights 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-marvel-kn/4050-65733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65734/", + "id": 65734, + "name": "Official Handbook of the Marvel Universe: X-Men - Age of Apocalypse 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-age/4050-65734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65735/", + "id": 65735, + "name": "Official Handbook of the Marvel Universe: Spider-Man 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-spider-ma/4050-65735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65736/", + "id": 65736, + "name": "Official Handbook of the Marvel Universe: Teams 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-teams-200/4050-65736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65737/", + "id": 65737, + "name": "Official Handbook of the Marvel Universe: Fantastic Four 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-fantastic/4050-65737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65738/", + "id": 65738, + "name": "Official Handbook of the Marvel Universe: Avengers 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-avengers-/4050-65738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65739/", + "id": 65739, + "name": "Official Handbook of the Ultimate Marvel Universe: The Fantastic Four & Spider-Man 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4050-65739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65740/", + "id": 65740, + "name": "Official Handbook of the Marvel Universe: Alternate Universes 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-alternate/4050-65740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65741/", + "id": 65741, + "name": "Official Handbook of the Marvel Universe: Horror 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-horror-20/4050-65741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65742/", + "id": 65742, + "name": "Official Handbook of the Marvel Universe: X-Men 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-200/4050-65742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65743/", + "id": 65743, + "name": "Official Handbook of the Ultimate Marvel Universe: The Ultimates & X-Men 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4050-65743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65744/", + "id": 65744, + "name": "Halo: Fall of Reach - Boot Camp", + "site_detail_url": "https://comicvine.gamespot.com/halo-fall-of-reach-boot-camp/4050-65744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65753/", + "id": 65753, + "name": "The Immortal Iron Fist: The Seven Capital Cities of Heaven", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-the-seven-capital-cities-of/4050-65753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65754/", + "id": 65754, + "name": "The Immortal Iron Fist: The Book of the Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-the-book-of-the-iron-fist/4050-65754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65755/", + "id": 65755, + "name": "The Immortal Iron Fist: The Mortal Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-the-mortal-iron-fist/4050-65755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65756/", + "id": 65756, + "name": "The Immortal Iron Fist: Escape From the Eighth City", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-escape-from-the-eighth-city/4050-65756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65757/", + "id": 65757, + "name": "The Amazing Spider-Man: Until the Stars Turn Cold", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-until-the-stars-turn-cold/4050-65757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65758/", + "id": 65758, + "name": "The Amazing Spider-Man: Life and Death of Spiders", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-life-and-death-of-spiders/4050-65758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65759/", + "id": 65759, + "name": "The Amazing Spider-Man: Unintended Consequences", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-unintended-consequences/4050-65759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65760/", + "id": 65760, + "name": "The Amazing Spider-Man: Happy Birthday", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-happy-birthday/4050-65760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65761/", + "id": 65761, + "name": "The Amazing Spider-Man: The Book of Ezekiel", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-book-of-ezekiel/4050-65761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65762/", + "id": 65762, + "name": "The Amazing Spider-Man: Sins Past", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-sins-past/4050-65762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65763/", + "id": 65763, + "name": "The Amazing Spider-Man: Skin Deep", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-skin-deep/4050-65763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65764/", + "id": 65764, + "name": "The Amazing Spider-Man: New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-new-avengers/4050-65764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65793/", + "id": 65793, + "name": "Halo: Uprising", + "site_detail_url": "https://comicvine.gamespot.com/halo-uprising/4050-65793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65921/", + "id": 65921, + "name": "Wolverine: In the Flesh", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-in-the-flesh/4050-65921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65962/", + "id": 65962, + "name": "Uncanny X-Force: Let It Bleed", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-force-let-it-bleed/4050-65962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65968/", + "id": 65968, + "name": "Black Bolt: Something Inhuman This Way Comes", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt-something-inhuman-this-way-comes/4050-65968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66048/", + "id": 66048, + "name": "X-Men: Age of X", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-x/4050-66048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66095/", + "id": 66095, + "name": "Dark Tower: The Long Road Home", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-long-road-home/4050-66095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66113/", + "id": 66113, + "name": "Iron Man: The Secret Origin of Tony Stark", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-secret-origin-of-tony-stark/4050-66113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66114/", + "id": 66114, + "name": "Savage Wolverine: Kill Island", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-kill-island/4050-66114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66115/", + "id": 66115, + "name": "The Mighty Thor By Walter Simonson", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson/4050-66115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66117/", + "id": 66117, + "name": "Venom: Toxin With A Vengeance!", + "site_detail_url": "https://comicvine.gamespot.com/venom-toxin-with-a-vengeance/4050-66117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66118/", + "id": 66118, + "name": "Winter Soldier: The Electric Ghost", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-the-electric-ghost/4050-66118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66120/", + "id": 66120, + "name": "Dark Tower: The Gunslinger - So Fell Lord Perth", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-so-fell-lord-perth/4050-66120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66319/", + "id": 66319, + "name": "Infinity", + "site_detail_url": "https://comicvine.gamespot.com/infinity/4050-66319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66370/", + "id": 66370, + "name": "Alpha: Big Time", + "site_detail_url": "https://comicvine.gamespot.com/alpha-big-time/4050-66370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66371/", + "id": 66371, + "name": "Avengers Assemble: Science Bros", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-science-bros/4050-66371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66372/", + "id": 66372, + "name": "Fearless Defenders: Doom Maidens", + "site_detail_url": "https://comicvine.gamespot.com/fearless-defenders-doom-maidens/4050-66372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66376/", + "id": 66376, + "name": "Wolverine: Hunting Season", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-hunting-season/4050-66376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66377/", + "id": 66377, + "name": "X-Force: Phalanx Covenant", + "site_detail_url": "https://comicvine.gamespot.com/x-force-phalanx-covenant/4050-66377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66403/", + "id": 66403, + "name": "Infinity: Against the Tide", + "site_detail_url": "https://comicvine.gamespot.com/infinity-against-the-tide/4050-66403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66450/", + "id": 66450, + "name": "Spider-Man Collectible Series", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-collectible-series/4050-66450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66608/", + "id": 66608, + "name": "Fantastic Four: Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-road-trip/4050-66608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66609/", + "id": 66609, + "name": "Superior Spider-Man: A Troubled Mind", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-a-troubled-mind/4050-66609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66634/", + "id": 66634, + "name": "Deadpool: Soul Hunter", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-soul-hunter/4050-66634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66834/", + "id": 66834, + "name": "Guardians of the Galaxy: Cosmic Avengers", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-cosmic-avengers/4050-66834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66835/", + "id": 66835, + "name": "Secret Avengers: Reverie", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-reverie/4050-66835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66836/", + "id": 66836, + "name": "X-Men Legacy: Invasive Exotics", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legacy-invasive-exotics/4050-66836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66837/", + "id": 66837, + "name": "X-Men: Magik - Storm & Illyana", + "site_detail_url": "https://comicvine.gamespot.com/x-men-magik-storm-illyana/4050-66837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66853/", + "id": 66853, + "name": "Marvel Authentix: Magneto Rex", + "site_detail_url": "https://comicvine.gamespot.com/marvel-authentix-magneto-rex/4050-66853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66854/", + "id": 66854, + "name": "Marvel Authentix: Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-authentix-astonishing-x-men/4050-66854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66855/", + "id": 66855, + "name": "Rocket Raccoon: Tales From Half-World", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-tales-from-half-world/4050-66855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66903/", + "id": 66903, + "name": "Young Avengers: Style > Substance", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-style-substance/4050-66903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67026/", + "id": 67026, + "name": "Ender's Game", + "site_detail_url": "https://comicvine.gamespot.com/enders-game/4050-67026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67027/", + "id": 67027, + "name": "Once Upon A Time: Shadow of the Queen", + "site_detail_url": "https://comicvine.gamespot.com/once-upon-a-time-shadow-of-the-queen/4050-67027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67028/", + "id": 67028, + "name": "X-Men: Battle of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/x-men-battle-of-the-atom/4050-67028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67057/", + "id": 67057, + "name": "Thanos: Epiphany", + "site_detail_url": "https://comicvine.gamespot.com/thanos-epiphany/4050-67057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67058/", + "id": 67058, + "name": "Thanos: Samaritan", + "site_detail_url": "https://comicvine.gamespot.com/thanos-samaritan/4050-67058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67059/", + "id": 67059, + "name": "Infinity Gauntlet: Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-aftermath/4050-67059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67079/", + "id": 67079, + "name": "Age Of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron/4050-67079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67082/", + "id": 67082, + "name": "Nova: Origin", + "site_detail_url": "https://comicvine.gamespot.com/nova-origin/4050-67082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67162/", + "id": 67162, + "name": "Monster Masterworks", + "site_detail_url": "https://comicvine.gamespot.com/monster-masterworks/4050-67162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67222/", + "id": 67222, + "name": "Infinity: The Hunt", + "site_detail_url": "https://comicvine.gamespot.com/infinity-the-hunt/4050-67222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67223/", + "id": 67223, + "name": "Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers/4050-67223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67278/", + "id": 67278, + "name": "Indestructible Hulk: Gods and Monster", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-gods-and-monster/4050-67278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67287/", + "id": 67287, + "name": "Avengers/Iron Man: First Sign", + "site_detail_url": "https://comicvine.gamespot.com/avengersiron-man-first-sign/4050-67287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67338/", + "id": 67338, + "name": "Avengers Arena: Game On", + "site_detail_url": "https://comicvine.gamespot.com/avengers-arena-game-on/4050-67338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67340/", + "id": 67340, + "name": "Inhumans By Paul Jenkins & Jae Lee", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-by-paul-jenkins-jae-lee/4050-67340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67341/", + "id": 67341, + "name": "Iron Man By Kurt Busiek and Sean Chen Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-kurt-busiek-and-sean-chen-omnibus/4050-67341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67342/", + "id": 67342, + "name": "Shield By Steranko: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/shield-by-steranko-the-complete-collection/4050-67342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67343/", + "id": 67343, + "name": "Superior Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman/4050-67343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67347/", + "id": 67347, + "name": "Avengers Sampler", + "site_detail_url": "https://comicvine.gamespot.com/avengers-sampler/4050-67347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67381/", + "id": 67381, + "name": "Captain Marvel: First Contact", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-first-contact/4050-67381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67382/", + "id": 67382, + "name": "Avengers: Supreme Justice", + "site_detail_url": "https://comicvine.gamespot.com/avengers-supreme-justice/4050-67382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67383/", + "id": 67383, + "name": "Cable: The Shining Path", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-shining-path/4050-67383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67386/", + "id": 67386, + "name": "The Sensational She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-shehulk/4050-67386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67394/", + "id": 67394, + "name": "Spider-Man vs. Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-vs-doctor-octopus/4050-67394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67395/", + "id": 67395, + "name": "Thunderbolts: Prelude", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-prelude/4050-67395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67396/", + "id": 67396, + "name": "Thunderbolts: First Strikes", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-first-strikes/4050-67396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67501/", + "id": 67501, + "name": "All-New X-Men: Out of Their Depths", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-out-of-their-depths/4050-67501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67505/", + "id": 67505, + "name": "The Inhumans: The Origin of the Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/the-inhumans-the-origin-of-the-inhumans/4050-67505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67506/", + "id": 67506, + "name": "Iron Man Epic Collection: The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-the-enemy-within/4050-67506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67509/", + "id": 67509, + "name": "Wolverine: The Return of Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-return-of-weapon-x/4050-67509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67625/", + "id": 67625, + "name": "Man-Thing Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/manthing-omnibus/4050-67625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67698/", + "id": 67698, + "name": "Infinity: Heist", + "site_detail_url": "https://comicvine.gamespot.com/infinity-heist/4050-67698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67699/", + "id": 67699, + "name": "Marvel Universe Thor Comic Reader", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-thor-comic-reader/4050-67699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67700/", + "id": 67700, + "name": "Punisher: Trial of the Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher-trial-of-the-punisher/4050-67700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67742/", + "id": 67742, + "name": "Thunderbolts: Red Scare", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-red-scare/4050-67742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67786/", + "id": 67786, + "name": "The Dark Tower: The Gunslinger - Last Shots", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-last-shots/4050-67786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67787/", + "id": 67787, + "name": "Red She-Hulk: Route 616", + "site_detail_url": "https://comicvine.gamespot.com/red-shehulk-route-616/4050-67787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67789/", + "id": 67789, + "name": "What If? AvX", + "site_detail_url": "https://comicvine.gamespot.com/what-if-avx/4050-67789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67790/", + "id": 67790, + "name": "Young Marvel: Little X-Men/Little Avengers Big Trouble", + "site_detail_url": "https://comicvine.gamespot.com/young-marvel-little-xmenlittle-avengers-big-troubl/4050-67790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67792/", + "id": 67792, + "name": "Wolverine By Claremont & Miller", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-claremont-miller/4050-67792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67916/", + "id": 67916, + "name": "All-New X-Men Special", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-special/4050-67916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67917/", + "id": 67917, + "name": "Captain America: Living Legend", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-living-legend/4050-67917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67919/", + "id": 67919, + "name": "Marvel Knights: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spiderman/4050-67919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67920/", + "id": 67920, + "name": "Marvel Universe Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-assemble/4050-67920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67921/", + "id": 67921, + "name": "Thor and the Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-the-mighty-avengers/4050-67921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67985/", + "id": 67985, + "name": "Avengers: Endless Wartime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-endless-wartime/4050-67985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67987/", + "id": 67987, + "name": "Fantastic Four By Hickman Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-hickman-omnibus/4050-67987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67988/", + "id": 67988, + "name": "Halo Oversized Collection", + "site_detail_url": "https://comicvine.gamespot.com/halo-oversized-collection/4050-67988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67991/", + "id": 67991, + "name": "Thor: Season One", + "site_detail_url": "https://comicvine.gamespot.com/thor-season-one/4050-67991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67993/", + "id": 67993, + "name": "Wolverine: Blood Wedding", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-blood-wedding/4050-67993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68055/", + "id": 68055, + "name": "Castle: Richard Castle's Storm Season", + "site_detail_url": "https://comicvine.gamespot.com/castle-richard-castles-storm-season/4050-68055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68124/", + "id": 68124, + "name": "Marvel Universe Hulk: Agents of S.M.A.S.H.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hulk-agents-of-smash/4050-68124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68168/", + "id": 68168, + "name": "Iron Man: Fatal Frontier", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-fatal-frontier/4050-68168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68189/", + "id": 68189, + "name": "Iron Man: Armored Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-armored-vengeance/4050-68189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68190/", + "id": 68190, + "name": "Thanos Rising", + "site_detail_url": "https://comicvine.gamespot.com/thanos-rising/4050-68190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68191/", + "id": 68191, + "name": "Thor: God of Thunder - Godbomb", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder-godbomb/4050-68191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68192/", + "id": 68192, + "name": "X-Men: Storm", + "site_detail_url": "https://comicvine.gamespot.com/x-men-storm/4050-68192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68296/", + "id": 68296, + "name": "Ruins", + "site_detail_url": "https://comicvine.gamespot.com/ruins/4050-68296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68320/", + "id": 68320, + "name": "Indestructible Hulk Special", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-special/4050-68320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68321/", + "id": 68321, + "name": "Marvel's Thor: The Dark World Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-thor-the-dark-world-prelude/4050-68321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68369/", + "id": 68369, + "name": "Avengers: Prelude to Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prelude-to-infinity/4050-68369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68371/", + "id": 68371, + "name": "Marvel Zombies: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-the-complete-collection/4050-68371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68523/", + "id": 68523, + "name": "Marvel: Now What?!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-what/4050-68523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68555/", + "id": 68555, + "name": "The Avengers: Emperor Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-emperor-doom/4050-68555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68571/", + "id": 68571, + "name": "Journey Into Mystery: Seeds of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-seeds-of-destruction/4050-68571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68572/", + "id": 68572, + "name": "The Amazing Spider-Man: Life in the Mad Dog Ward", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-life-in-the-mad-dog-ward/4050-68572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68574/", + "id": 68574, + "name": "Thor Epic Collection: War of the Pantheons", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-war-of-the-pantheons/4050-68574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68576/", + "id": 68576, + "name": "Uncanny Avengers: The Apocalypse Twins", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-the-apocalypse-twins/4050-68576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68577/", + "id": 68577, + "name": "X-Men: X-Corps", + "site_detail_url": "https://comicvine.gamespot.com/xmen-xcorps/4050-68577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68646/", + "id": 68646, + "name": "The Amazing Spider-Man, The Death of Jean DeWolff", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-the-death-of-jean-dewolff/4050-68646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68649/", + "id": 68649, + "name": "The Marvel Art of Marko Djurdjevic", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-marko-djurdjevic/4050-68649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68720/", + "id": 68720, + "name": "Cataclysm", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm/4050-68720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68721/", + "id": 68721, + "name": "Superior Spider-Man Team-Up Special", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-team-up-special/4050-68721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68722/", + "id": 68722, + "name": "Thor: Crown of Fools", + "site_detail_url": "https://comicvine.gamespot.com/thor-crown-of-fools/4050-68722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68752/", + "id": 68752, + "name": "Iron Man: Hypervelocity", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-hypervelocity/4050-68752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68762/", + "id": 68762, + "name": "Cable and X-Force: Dead or Alive", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-xforce-dead-or-alive/4050-68762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68814/", + "id": 68814, + "name": "Inhumans: By Right of Birth", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-by-right-of-birth/4050-68814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68816/", + "id": 68816, + "name": "Marvel Universe Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-thor/4050-68816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68817/", + "id": 68817, + "name": "Scarlet Spider: The Big Leagues", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-the-big-leagues/4050-68817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68820/", + "id": 68820, + "name": "Thor Vs Thanos", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-thanos/4050-68820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68821/", + "id": 68821, + "name": "Ultimate Comics Ultimates: Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-ultimates-disassembled/4050-68821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68844/", + "id": 68844, + "name": "Spider-Man/Red Sonja", + "site_detail_url": "https://comicvine.gamespot.com/spidermanred-sonja/4050-68844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68918/", + "id": 68918, + "name": "S.H.I.E.L.D. Origins", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d-origins/4050-68918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68919/", + "id": 68919, + "name": "Amazing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/amazing-xmen/4050-68919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68920/", + "id": 68920, + "name": "Marvel's Captain America: The First Avenger Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/marvel-s-captain-america-the-first-avenger-adaptat/4050-68920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68921/", + "id": 68921, + "name": "Cataclysm: The Ultimates' Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand/4050-68921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68922/", + "id": 68922, + "name": "Longshot Saves the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/longshot-saves-the-marvel-universe/4050-68922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68971/", + "id": 68971, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-68971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68972/", + "id": 68972, + "name": "Marvel Firsts: The 1980's", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1980s/4050-68972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68974/", + "id": 68974, + "name": "Thanos: Redemption", + "site_detail_url": "https://comicvine.gamespot.com/thanos-redemption/4050-68974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68975/", + "id": 68975, + "name": "Uncanny X-Men: Broken", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-broken/4050-68975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69122/", + "id": 69122, + "name": "Cataclysm: Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm-ultimate-spider-man/4050-69122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69123/", + "id": 69123, + "name": "Marvel Knights: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-xmen/4050-69123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69124/", + "id": 69124, + "name": "X-Men Gold", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gold/4050-69124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69216/", + "id": 69216, + "name": "Hulk by Jeph Loeb", + "site_detail_url": "https://comicvine.gamespot.com/hulk-by-jeph-loeb/4050-69216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69218/", + "id": 69218, + "name": "Marvel Masterworks: Marvel Two-In-One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-twoinone/4050-69218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69226/", + "id": 69226, + "name": "Thor: Sunlight and Shadows", + "site_detail_url": "https://comicvine.gamespot.com/thor-sunlight-and-shadows/4050-69226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69227/", + "id": 69227, + "name": "Thor: The Warriors Three - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-warriors-three-the-complete-collection/4050-69227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69234/", + "id": 69234, + "name": "X-Men Legacy: Revenants", + "site_detail_url": "https://comicvine.gamespot.com/xmen-legacy-revenants/4050-69234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69252/", + "id": 69252, + "name": "Wolverine/Shi: Dark Night of Judgment Ashcan", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-shi-dark-night-of-judgment-ashcan/4050-69252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69262/", + "id": 69262, + "name": "X-Men Revolution: Genesis Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-revolution-genesis-edition/4050-69262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69263/", + "id": 69263, + "name": "Spider-Man Universe", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-universe/4050-69263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69264/", + "id": 69264, + "name": "WCW S.L.A.M. Force", + "site_detail_url": "https://comicvine.gamespot.com/wcw-s-l-a-m-force/4050-69264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69282/", + "id": 69282, + "name": "Marvel Milestone Edition: Giant-Size X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestone-edition-giantsize-xmen/4050-69282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69348/", + "id": 69348, + "name": "Superior Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-annual/4050-69348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69371/", + "id": 69371, + "name": "Cataclysm: The Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm-the-ultimates/4050-69371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69382/", + "id": 69382, + "name": "A+X: A+X = Amazing", + "site_detail_url": "https://comicvine.gamespot.com/ax-ax-amazing/4050-69382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69383/", + "id": 69383, + "name": "Superior Spider-Man: No Escape", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-no-escape/4050-69383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69385/", + "id": 69385, + "name": "Uncanny X-Force: Torn and Frayed", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xforce-torn-and-frayed/4050-69385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69427/", + "id": 69427, + "name": "Spider-Man Epic Collection: Cosmic Adventures", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-epic-collection-cosmic-adventures/4050-69427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69428/", + "id": 69428, + "name": "Morbius: The Living Vampire - The Man Called Morbius", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-the-man-called-morbius/4050-69428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69430/", + "id": 69430, + "name": "X-Men: A Skinning of Souls", + "site_detail_url": "https://comicvine.gamespot.com/xmen-a-skinning-of-souls/4050-69430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69431/", + "id": 69431, + "name": "X-Men: Primer", + "site_detail_url": "https://comicvine.gamespot.com/xmen-primer/4050-69431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69448/", + "id": 69448, + "name": "Hulk: The Monster Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/hulk-the-monster-unleashed/4050-69448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69571/", + "id": 69571, + "name": "Cataclysm: Ultimate X-Men", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm-ultimate-x-men/4050-69571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69572/", + "id": 69572, + "name": "Deadpool Annual", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual/4050-69572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69573/", + "id": 69573, + "name": "Wolverine & the X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-xmen-annual/4050-69573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69605/", + "id": 69605, + "name": "Amazing Spider-Man: Big Time - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-big-time-the-complete-collection/4050-69605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69613/", + "id": 69613, + "name": "Avengers: Absolute Vision", + "site_detail_url": "https://comicvine.gamespot.com/avengers-absolute-vision/4050-69613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69686/", + "id": 69686, + "name": "Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/avengers-annual/4050-69686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69687/", + "id": 69687, + "name": "Indestructible Hulk Annual", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-annual/4050-69687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69688/", + "id": 69688, + "name": "Inhumanity", + "site_detail_url": "https://comicvine.gamespot.com/inhumanity/4050-69688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69689/", + "id": 69689, + "name": "Star-Lord: Worlds On the Brink", + "site_detail_url": "https://comicvine.gamespot.com/starlord-worlds-on-the-brink/4050-69689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69742/", + "id": 69742, + "name": "Gambit: King of Thieves", + "site_detail_url": "https://comicvine.gamespot.com/gambit-king-of-thieves/4050-69742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69750/", + "id": 69750, + "name": "Spider-Man and Wolverine by Wells & Madureira", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-wolverine-by-wells-and-madureira/4050-69750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69751/", + "id": 69751, + "name": "Spider-Man: Mark of the Tarantula", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-mark-of-the-tarantula/4050-69751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69786/", + "id": 69786, + "name": "Avengers: The Enemy Within", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-enemy-within/4050-69786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69788/", + "id": 69788, + "name": "Deadpool Kills Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-deadpool/4050-69788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69789/", + "id": 69789, + "name": "Wolverine by Jason Aaron: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-jason-aaron-the-complete-collection/4050-69789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69823/", + "id": 69823, + "name": "The Hedge Knight", + "site_detail_url": "https://comicvine.gamespot.com/the-hedge-knight/4050-69823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69824/", + "id": 69824, + "name": "The Hedge Knight II: Sworn Sword", + "site_detail_url": "https://comicvine.gamespot.com/the-hedge-knight-ii-sworn-sword/4050-69824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69866/", + "id": 69866, + "name": "Inhumanity: The Awakening", + "site_detail_url": "https://comicvine.gamespot.com/inhumanity-the-awakening/4050-69866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69867/", + "id": 69867, + "name": "Marvel Knights: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-hulk/4050-69867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69962/", + "id": 69962, + "name": "Avengers Epic Collection: The Final Threat", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-final-threat/4050-69962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70029/", + "id": 70029, + "name": "Spider-Man Chronicle", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-chronicle/4050-70029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70061/", + "id": 70061, + "name": "Thunderbolts Annual", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-annual/4050-70061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70139/", + "id": 70139, + "name": "Astonishing X-Men: Unmasked", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-xmen-unmasked/4050-70139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70140/", + "id": 70140, + "name": "Deadpool: The Good, The Bad and the Ugly", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-good-the-bad-and-the-ugly/4050-70140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70142/", + "id": 70142, + "name": "Spider-Man: The Gathering of Five", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-the-gathering-of-five/4050-70142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70143/", + "id": 70143, + "name": "Venom: The Land Where Killers Dwell", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-land-where-killers-dwell/4050-70143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70144/", + "id": 70144, + "name": "X-Factor: The End of X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/xfactor-the-end-of-xfactor/4050-70144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70186/", + "id": 70186, + "name": "All-New Marvel NOW! Previews", + "site_detail_url": "https://comicvine.gamespot.com/allnew-marvel-now-previews/4050-70186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70218/", + "id": 70218, + "name": "Origin II", + "site_detail_url": "https://comicvine.gamespot.com/origin-ii/4050-70218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70252/", + "id": 70252, + "name": "Thor Goes Hollywood", + "site_detail_url": "https://comicvine.gamespot.com/thor-goes-hollywood/4050-70252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70368/", + "id": 70368, + "name": "Omega The Unknown Classic", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown-classic/4050-70368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70446/", + "id": 70446, + "name": "Punisher Kills the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kills-the-marvel-universe/4050-70446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70447/", + "id": 70447, + "name": "Deadpool Kills the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe/4050-70447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70580/", + "id": 70580, + "name": "Avengers A.I.: Human After All", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ai-human-after-all/4050-70580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70581/", + "id": 70581, + "name": "Deadpool by Joe Kelly Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-joe-kelly-omnibus/4050-70581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70582/", + "id": 70582, + "name": "New Avengers: Infinity", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-infinity/4050-70582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70676/", + "id": 70676, + "name": "Ultimate Spider-Man Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-infinite-comic/4050-70676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70677/", + "id": 70677, + "name": "Wolverine Custom Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-custom-edition/4050-70677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70702/", + "id": 70702, + "name": "All-New Marvel Now! Point One", + "site_detail_url": "https://comicvine.gamespot.com/allnew-marvel-now-point-one/4050-70702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70703/", + "id": 70703, + "name": "All-New X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xfactor/4050-70703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70704/", + "id": 70704, + "name": "Avengers World", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world/4050-70704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70705/", + "id": 70705, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4050-70705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70706/", + "id": 70706, + "name": "Revolutionary War: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-alpha/4050-70706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70756/", + "id": 70756, + "name": "Deadpool: The Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-gauntlet/4050-70756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70821/", + "id": 70821, + "name": "All-New X-Men/Indestructible Hulk/Superior Spider-Man: The Arms of the Octopus", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmenindestructible-hulksuperior-spiderman-t/4050-70821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70824/", + "id": 70824, + "name": "Fantastic Four/Inhumans: Atlantis Rising", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-fourinhumans-atlantis-rising/4050-70824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70825/", + "id": 70825, + "name": "Guardians of the Galaxy By Jim Valentino", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-jim-valentino/4050-70825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70826/", + "id": 70826, + "name": "Superior Spider-Man Team-Up: Friendly Fire", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-teamup-friendly-fire/4050-70826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70827/", + "id": 70827, + "name": "X-Men: Battle of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/xmen-battle-of-the-atom/4050-70827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70863/", + "id": 70863, + "name": "The Ren and Stimpy Show Special: Four Swerks", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-and-stimpy-show-special-four-swerks/4050-70863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70864/", + "id": 70864, + "name": "The Ren & Stimpy Show Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/the-ren-stimpy-show-holiday-special/4050-70864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70896/", + "id": 70896, + "name": "Disney Kingdoms: Seekers of the Weird", + "site_detail_url": "https://comicvine.gamespot.com/disney-kingdoms-seekers-of-the-weird/4050-70896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70897/", + "id": 70897, + "name": "Deadpool: The Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-gauntlet/4050-70897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70898/", + "id": 70898, + "name": "Inhumanity: Superior Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/inhumanity-superior-spider-man/4050-70898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70899/", + "id": 70899, + "name": "Revolutionary War: Dark Angel", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-dark-angel/4050-70899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70900/", + "id": 70900, + "name": "Night of the Living Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/night-of-the-living-deadpool/4050-70900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70918/", + "id": 70918, + "name": "Miracleman", + "site_detail_url": "https://comicvine.gamespot.com/miracleman/4050-70918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70940/", + "id": 70940, + "name": "Avengers: Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-infinity/4050-70940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70949/", + "id": 70949, + "name": "Avengers Arena: Boss Level", + "site_detail_url": "https://comicvine.gamespot.com/avengers-arena-boss-level/4050-70949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70950/", + "id": 70950, + "name": "Dexter", + "site_detail_url": "https://comicvine.gamespot.com/dexter/4050-70950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70951/", + "id": 70951, + "name": "Fantastic Four Epic Collection: All In the Family", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-all-in-the-family/4050-70951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70952/", + "id": 70952, + "name": "Superior Spider-Man: Necessary Evil", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-necessary-evil/4050-70952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71064/", + "id": 71064, + "name": "All-New Invaders", + "site_detail_url": "https://comicvine.gamespot.com/allnew-invaders/4050-71064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71065/", + "id": 71065, + "name": "George Romero's Empire of the Dead: Act One", + "site_detail_url": "https://comicvine.gamespot.com/george-romero-s-empire-of-the-dead-act-one/4050-71065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71224/", + "id": 71224, + "name": "Indestructible Hulk: S.M.A.S.H. Time", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-smash-time/4050-71224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71227/", + "id": 71227, + "name": "X-Factor By Peter David: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/xfactor-by-peter-david-the-complete-collection/4050-71227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71228/", + "id": 71228, + "name": "X-Men: Road To Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/xmen-road-to-onslaught/4050-71228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71229/", + "id": 71229, + "name": "Young Avengers: Alternative Culture", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-alternative-culture/4050-71229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71240/", + "id": 71240, + "name": "The Super Hero Squad Show: Get Yer Hero On", + "site_detail_url": "https://comicvine.gamespot.com/the-super-hero-squad-show-get-yer-hero-on/4050-71240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71264/", + "id": 71264, + "name": "The Amazing Spider-Man Presents: Jackpot", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-presents-jackpot/4050-71264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71321/", + "id": 71321, + "name": "The Amazing Spider-Man: The Movie Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-the-movie-adaptation/4050-71321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71322/", + "id": 71322, + "name": "Revolutionary War: Knights of Pendragon", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-knights-of-pendragon/4050-71322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71357/", + "id": 71357, + "name": "Captain America: The Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-winter-soldier/4050-71357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71400/", + "id": 71400, + "name": "Cable and X-Force: This Won't End Well", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-xforce-this-wont-end-well/4050-71400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71401/", + "id": 71401, + "name": "Guardians of the Galaxy: Angela", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-angela/4050-71401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71402/", + "id": 71402, + "name": "Superior Carnage", + "site_detail_url": "https://comicvine.gamespot.com/superior-carnage/4050-71402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71403/", + "id": 71403, + "name": "Thunderbolts: Infinity", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-infinity/4050-71403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71404/", + "id": 71404, + "name": "Warlock By Jim Starlin: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/warlock-by-jim-starlin-the-complete-collection/4050-71404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71420/", + "id": 71420, + "name": "Essential Tales of the Zombie", + "site_detail_url": "https://comicvine.gamespot.com/essential-tales-of-the-zombie/4050-71420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71431/", + "id": 71431, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-71431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71432/", + "id": 71432, + "name": "Loki: Agent of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard/4050-71432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71435/", + "id": 71435, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-71435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71457/", + "id": 71457, + "name": "Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel/4050-71457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71458/", + "id": 71458, + "name": "Star-Lord: Annihilation - Conquest", + "site_detail_url": "https://comicvine.gamespot.com/star-lord-annihilation-conquest/4050-71458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71459/", + "id": 71459, + "name": "Superior Carnage Annual", + "site_detail_url": "https://comicvine.gamespot.com/superior-carnage-annual/4050-71459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71514/", + "id": 71514, + "name": "Captain America: Living Legend", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-living-legend/4050-71514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71515/", + "id": 71515, + "name": "Deadpool by Posehn And Duggan", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan/4050-71515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71516/", + "id": 71516, + "name": "Infinity", + "site_detail_url": "https://comicvine.gamespot.com/infinity/4050-71516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71517/", + "id": 71517, + "name": "Infinity: Heist/The Hunt", + "site_detail_url": "https://comicvine.gamespot.com/infinity-heist-the-hunt/4050-71517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71518/", + "id": 71518, + "name": "Savage Wolverine: Hands On A Dead Body", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-hands-on-a-dead-body/4050-71518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71519/", + "id": 71519, + "name": "X-Men: Phalanx Covenant", + "site_detail_url": "https://comicvine.gamespot.com/xmen-phalanx-covenant/4050-71519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71522/", + "id": 71522, + "name": "Marvel Adventures: Black Widow and The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-black-widow-and-the-avengers/4050-71522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71523/", + "id": 71523, + "name": "Marvel Adventures Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-spiderman/4050-71523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71602/", + "id": 71602, + "name": "Startling Stories: Fantastic Four - Unstable Molecules", + "site_detail_url": "https://comicvine.gamespot.com/startling-stories-fantastic-four-unstable-molecule/4050-71602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71611/", + "id": 71611, + "name": "Revolutionary War: Death's Head II", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-deaths-head-ii/4050-71611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71612/", + "id": 71612, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4050-71612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71613/", + "id": 71613, + "name": "Winter Soldier: The Bitter March", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-the-bitter-march/4050-71613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71614/", + "id": 71614, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4050-71614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71656/", + "id": 71656, + "name": "Fearless Defenders: The Most Fabulous Fighting Team of All", + "site_detail_url": "https://comicvine.gamespot.com/fearless-defenders-the-most-fabulous-fighting-team/4050-71656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71658/", + "id": 71658, + "name": "Scarlet Spider: Into the Grave", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spider-into-the-grave/4050-71658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71659/", + "id": 71659, + "name": "She-Hulk by Dan Slott: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-by-dan-slott-the-complete-collection/4050-71659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71799/", + "id": 71799, + "name": "Captain America Epic Collection: Dawn's Early Light", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-dawns-early-light/4050-71799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71800/", + "id": 71800, + "name": "Dexter Down Under", + "site_detail_url": "https://comicvine.gamespot.com/dexter-down-under/4050-71800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71801/", + "id": 71801, + "name": "Iron Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-annual/4050-71801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71802/", + "id": 71802, + "name": "New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors/4050-71802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71878/", + "id": 71878, + "name": "Golden Age Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/golden-age-captain-america-omnibus/4050-71878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71879/", + "id": 71879, + "name": "Journey Into Mystery By Kieron Gillen", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-by-kieron-gillen/4050-71879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71949/", + "id": 71949, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-71949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71950/", + "id": 71950, + "name": "Revolutionary War: SuperSoldiers", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-supersoldiers/4050-71950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71980/", + "id": 71980, + "name": "Daredevil: Road Warrior", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-road-warrior/4050-71980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71994/", + "id": 71994, + "name": "The Amazing Spider-Man: Behind the Scenes & Beyond the Web", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-behind-the-scenes-beyond-the/4050-71994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71996/", + "id": 71996, + "name": "Secret Avengers: Iliad", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-iliad/4050-71996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71998/", + "id": 71998, + "name": "Superior Foes of Spider-Man: Getting the Band Back Together", + "site_detail_url": "https://comicvine.gamespot.com/superior-foes-of-spiderman-getting-the-band-back-t/4050-71998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71999/", + "id": 71999, + "name": "Superior Spider-Man Team-Up: Versus", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-teamup-versus/4050-71999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72000/", + "id": 72000, + "name": "X-Force by Craig Kyle & Chris Yost", + "site_detail_url": "https://comicvine.gamespot.com/xforce-by-craig-kyle-chris-yost/4050-72000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72039/", + "id": 72039, + "name": "All-New Marvel Now! Teen Heroes", + "site_detail_url": "https://comicvine.gamespot.com/allnew-marvel-now-teen-heroes/4050-72039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72111/", + "id": 72111, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4050-72111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72112/", + "id": 72112, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-72112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72113/", + "id": 72113, + "name": "Wolverine & the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-xmen/4050-72113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72187/", + "id": 72187, + "name": "Oz: The Emerald City Of Oz", + "site_detail_url": "https://comicvine.gamespot.com/oz-the-emerald-city-of-oz/4050-72187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72196/", + "id": 72196, + "name": "Avengers: Falcon", + "site_detail_url": "https://comicvine.gamespot.com/avengers-falcon/4050-72196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72197/", + "id": 72197, + "name": "The Muppets Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-muppets-omnibus/4050-72197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72198/", + "id": 72198, + "name": "Nova: Rookie Season", + "site_detail_url": "https://comicvine.gamespot.com/nova-rookie-season/4050-72198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72199/", + "id": 72199, + "name": "Uncanny X-Force by Rick Remender Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xforce-by-rick-remender-omnibus/4050-72199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72200/", + "id": 72200, + "name": "X-Men: Days of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/xmen-days-of-future-past/4050-72200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72245/", + "id": 72245, + "name": "Marvel Chillers Blood Storm", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-blood-storm/4050-72245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72271/", + "id": 72271, + "name": "Avengers Undercover", + "site_detail_url": "https://comicvine.gamespot.com/avengers-undercover/4050-72271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72272/", + "id": 72272, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-72272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72273/", + "id": 72273, + "name": "Revolutionary War: Motormouth", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-motormouth/4050-72273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72274/", + "id": 72274, + "name": "Secret Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers/4050-72274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72346/", + "id": 72346, + "name": "Thor: God of Thunder: The Accursed", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder-the-accursed/4050-72346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72365/", + "id": 72365, + "name": "Daredevil: Dark Nights", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-dark-nights/4050-72365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72366/", + "id": 72366, + "name": "Fantastic Four: Doomed", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-doomed/4050-72366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72367/", + "id": 72367, + "name": "FF: Family Freakout", + "site_detail_url": "https://comicvine.gamespot.com/ff-family-freakout/4050-72367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72368/", + "id": 72368, + "name": "Marvel Universe All-New Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-all-new-avengers-assemble/4050-72368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72369/", + "id": 72369, + "name": "Marvel's Captain America: The Winter Soldier Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-america-the-winter-soldier-prelude/4050-72369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72370/", + "id": 72370, + "name": "Wolverine: Killable", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-killable/4050-72370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72385/", + "id": 72385, + "name": "Young Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/young-inhumans/4050-72385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72417/", + "id": 72417, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-72417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72418/", + "id": 72418, + "name": "Iron Man Epic Collection: War Games", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-war-games/4050-72418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72419/", + "id": 72419, + "name": "Revolutionary War: Warheads", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-warheads/4050-72419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72466/", + "id": 72466, + "name": "The Immortal Iron Fist: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fist-the-complete-collection/4050-72466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72488/", + "id": 72488, + "name": "Mighty Avengers: No Single Hero", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-no-single-hero/4050-72488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72489/", + "id": 72489, + "name": "Wolverine: Japan's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-japans-most-wanted/4050-72489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72490/", + "id": 72490, + "name": "Wolverine MAX: Vegas", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-max-vegas/4050-72490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72491/", + "id": 72491, + "name": "Young Avengers: Mic-Drop At the Edge of Time and Space", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-micdrop-at-the-edge-of-time-and-spa/4050-72491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72525/", + "id": 72525, + "name": "Ms. Marvel Infinite", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-infinite/4050-72525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72578/", + "id": 72578, + "name": "Captain America: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-homecoming/4050-72578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72579/", + "id": 72579, + "name": "All-New Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/allnew-ghost-rider/4050-72579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72580/", + "id": 72580, + "name": "Iron Patriot", + "site_detail_url": "https://comicvine.gamespot.com/iron-patriot/4050-72580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72581/", + "id": 72581, + "name": "Revolutionary War: Omega", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war-omega/4050-72581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72582/", + "id": 72582, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-72582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72583/", + "id": 72583, + "name": "Survive", + "site_detail_url": "https://comicvine.gamespot.com/survive/4050-72583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72627/", + "id": 72627, + "name": "Silver Surfer Infinite", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-infinite/4050-72627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72681/", + "id": 72681, + "name": "Cable and X-Force: Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-xforce-vendetta/4050-72681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72685/", + "id": 72685, + "name": "Uncanny Avengers: Ragnarok Now", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-ragnarok-now/4050-72685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72686/", + "id": 72686, + "name": "Uncanny X-Force: The Great Corruption", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xforce-the-great-corruption/4050-72686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72721/", + "id": 72721, + "name": "Thor: God of Thunder - Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder-halloween-comicfest/4050-72721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72722/", + "id": 72722, + "name": "Ultimate Spider-Man Adventures: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-adventures-halloween-comicfest/4050-72722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72789/", + "id": 72789, + "name": "Captain America: Winter Soldier #1 Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-winter-soldier-1-directors-cut/4050-72789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72790/", + "id": 72790, + "name": "Deadpool vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-carnage/4050-72790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72791/", + "id": 72791, + "name": "Inhuman", + "site_detail_url": "https://comicvine.gamespot.com/inhuman/4050-72791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72792/", + "id": 72792, + "name": "Marvel's Captain America: The Winter Soldier - The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-s-captain-america-the-winter-soldier-the-ar/4050-72792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72793/", + "id": 72793, + "name": "Marvel's Guardians of the Galaxy Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-guardians-of-the-galaxy-prelude/4050-72793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72794/", + "id": 72794, + "name": "Star-Lord: Tears For Heaven", + "site_detail_url": "https://comicvine.gamespot.com/star-lord-tears-for-heaven/4050-72794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72795/", + "id": 72795, + "name": "What If? Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/what-if-age-of-ultron/4050-72795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72815/", + "id": 72815, + "name": "Marvel's Guardians of The Galaxy Prequel Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-s-guardians-of-the-galaxy-prequel-infinite-/4050-72815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72837/", + "id": 72837, + "name": "Amazing Spider-Man: Family Business", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-family-business/4050-72837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72879/", + "id": 72879, + "name": "Amazing Spider-Man Firsts", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-firsts/4050-72879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72881/", + "id": 72881, + "name": "X-Men: The Age of Apocalypse Omnibus Companion", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-age-of-apocalypse-omnibus-companion/4050-72881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72919/", + "id": 72919, + "name": "Spider-Man: Revenge of the Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-revenge-of-the-sinister-six/4050-72919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72932/", + "id": 72932, + "name": "All-New Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/allnew-ultimates/4050-72932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72933/", + "id": 72933, + "name": "Iron Fist: The Living Weapon", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-living-weapon/4050-72933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72934/", + "id": 72934, + "name": "Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler/4050-72934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72960/", + "id": 72960, + "name": "All-New Doop", + "site_detail_url": "https://comicvine.gamespot.com/allnew-doop/4050-72960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72970/", + "id": 72970, + "name": "Amazing Spider-Man Cinematic Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-cinematic-infinite-comic/4050-72970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73011/", + "id": 73011, + "name": "Amazing Spider-Man 2 Prelude", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-2-prelude/4050-73011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73012/", + "id": 73012, + "name": "Captain America: Loose Nuke", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-loose-nuke/4050-73012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73013/", + "id": 73013, + "name": "Daredevil Epic Collection: Fall From Grace", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-fall-from-grace/4050-73013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73014/", + "id": 73014, + "name": "Infinity Companion", + "site_detail_url": "https://comicvine.gamespot.com/infinity-companion/4050-73014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73015/", + "id": 73015, + "name": "Marvel Universe Hulk: Agents of S.M.A.S.H.", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-hulk-agents-of-smash/4050-73015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73063/", + "id": 73063, + "name": "Wolverine Battles The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-battles-the-incredible-hulk/4050-73063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73100/", + "id": 73100, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4050-73100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73101/", + "id": 73101, + "name": "Ultimate FF", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-ff/4050-73101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73188/", + "id": 73188, + "name": "Spider-Man Newspaper Strips", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-newspaper-strips/4050-73188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73189/", + "id": 73189, + "name": "Superior Spider-Man: The Superior Venom", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-the-superior-venom/4050-73189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73190/", + "id": 73190, + "name": "The Mighty Thor Epic Collection: A Kingdom Lost", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-epic-collection-a-kingdom-lost/4050-73190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73240/", + "id": 73240, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4050-73240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73241/", + "id": 73241, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/original-sin/4050-73241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73319/", + "id": 73319, + "name": "Spectacular Spider-Man Adventures: Riot at Ryker's Island!", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spiderman-adventures-riot-at-rykers-is/4050-73319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73328/", + "id": 73328, + "name": "Secret Avengers: How To MA.I.M. A Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-how-to-maim-a-mockingbird/4050-73328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73329/", + "id": 73329, + "name": "X-Men Legacy: For We Are Many", + "site_detail_url": "https://comicvine.gamespot.com/xmen-legacy-for-we-are-many/4050-73329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73334/", + "id": 73334, + "name": "Spider-Man by Roger Stern Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-by-roger-stern-omnibus/4050-73334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73378/", + "id": 73378, + "name": "An American Tail: Fievel Goes West", + "site_detail_url": "https://comicvine.gamespot.com/an-american-tail-fievel-goes-west/4050-73378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73420/", + "id": 73420, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman/4050-73420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73421/", + "id": 73421, + "name": "Uncanny Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-annual/4050-73421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73474/", + "id": 73474, + "name": "Avengers: Heroes Welcome", + "site_detail_url": "https://comicvine.gamespot.com/avengers-heroes-welcome/4050-73474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73495/", + "id": 73495, + "name": "All-New X-Men: All-Different", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-alldifferent/4050-73495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73496/", + "id": 73496, + "name": "The Amazing Spider-Man Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-special-edition/4050-73496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73546/", + "id": 73546, + "name": "X-Men: Muertas", + "site_detail_url": "https://comicvine.gamespot.com/xmen-muertas/4050-73546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73576/", + "id": 73576, + "name": "Guardians of the Galaxy: Free Comic Book Day", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-free-comic-book-day/4050-73576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73587/", + "id": 73587, + "name": "Rocket Raccoon: Free Comic Book Day", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-free-comic-book-day/4050-73587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73676/", + "id": 73676, + "name": "Amazing Spider-Man: Who Am I?", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-who-am-i/4050-73676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73677/", + "id": 73677, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4050-73677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73678/", + "id": 73678, + "name": "Miles Morales: Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spiderman/4050-73678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73679/", + "id": 73679, + "name": "X-Men: No More Humans", + "site_detail_url": "https://comicvine.gamespot.com/xmen-no-more-humans/4050-73679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73718/", + "id": 73718, + "name": "Amazing Spider-Man: Who Am I?", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-who-am-i/4050-73718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73765/", + "id": 73765, + "name": "Richard Castle's Unholy Storm", + "site_detail_url": "https://comicvine.gamespot.com/richard-castles-unholy-storm/4050-73765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73766/", + "id": 73766, + "name": "Fire", + "site_detail_url": "https://comicvine.gamespot.com/fire/4050-73766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73767/", + "id": 73767, + "name": "Iron Man: Fatal Frontier", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-fatal-frontier/4050-73767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73768/", + "id": 73768, + "name": "Uncanny X-Men: The Good, The Bad, The Inhuman", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-the-good-the-bad-the-inhuman/4050-73768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73769/", + "id": 73769, + "name": "X-Men: The Adamantium Collection", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-adamantium-collection/4050-73769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73770/", + "id": 73770, + "name": "X-Men Vs Hulk", + "site_detail_url": "https://comicvine.gamespot.com/xmen-vs-hulk/4050-73770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73895/", + "id": 73895, + "name": "Deadly Hands of Kung-Fu", + "site_detail_url": "https://comicvine.gamespot.com/deadly-hands-of-kungfu/4050-73895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73977/", + "id": 73977, + "name": "Iron Man: Iron Metropolitan", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-iron-metropolitan/4050-73977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73999/", + "id": 73999, + "name": "Age Of Ultron Companion", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-companion/4050-73999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74000/", + "id": 74000, + "name": "Amazing Spider-Man: Peter Parker The One And Only", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-peter-parker-the-one-and-only/4050-74000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74002/", + "id": 74002, + "name": "Marvel Knights: X-Men - Haunted", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-xmen-haunted/4050-74002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74158/", + "id": 74158, + "name": "Original Sin: Secret Avengers Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-secret-avengers-infinite-comic/4050-74158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74201/", + "id": 74201, + "name": "A+X: A+X = Outstanding", + "site_detail_url": "https://comicvine.gamespot.com/a-x-a-x-outstanding/4050-74201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74202/", + "id": 74202, + "name": "The Amazing Spider-Man Epic Collection: Ghosts of the Past", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-epic-collection-ghosts-of-th/4050-74202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74203/", + "id": 74203, + "name": "Deadpool: Deadpool vs. S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-deadpool-vs-shield/4050-74203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74204/", + "id": 74204, + "name": "Longshot Saves the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/longshot-saves-the-marvel-universe/4050-74204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74205/", + "id": 74205, + "name": "Marvel Knights Hulk: Transformé", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-hulk-transforme/4050-74205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74206/", + "id": 74206, + "name": "Nova: Nova Corpse", + "site_detail_url": "https://comicvine.gamespot.com/nova-nova-corpse/4050-74206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74329/", + "id": 74329, + "name": "Giant-Size Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/giantsize-spiderman/4050-74329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74330/", + "id": 74330, + "name": "Thanos Annual", + "site_detail_url": "https://comicvine.gamespot.com/thanos-annual/4050-74330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74434/", + "id": 74434, + "name": "Avengers Assemble: The Forgeries of Jealousy", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-the-forgeries-of-jealousy/4050-74434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74435/", + "id": 74435, + "name": "Cataclysm: The Ultimates Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand/4050-74435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74436/", + "id": 74436, + "name": "Guardians of the Galaxy/All-New X-Men: The Trial of Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxyallnew-xmen-the-trial-of-je/4050-74436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74437/", + "id": 74437, + "name": "Miracleman: A Dream of Flying", + "site_detail_url": "https://comicvine.gamespot.com/miracleman-a-dream-of-flying/4050-74437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74438/", + "id": 74438, + "name": "Revolutionary War", + "site_detail_url": "https://comicvine.gamespot.com/revolutionary-war/4050-74438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74520/", + "id": 74520, + "name": "Amazing X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/amazing-xmen-annual/4050-74520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74652/", + "id": 74652, + "name": "Original Sin Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-special-edition/4050-74652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74653/", + "id": 74653, + "name": "Indestructible Hulk: Humanity Bomb", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-humanity-bomb/4050-74653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74654/", + "id": 74654, + "name": "Inhumanity", + "site_detail_url": "https://comicvine.gamespot.com/inhumanity/4050-74654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74655/", + "id": 74655, + "name": "Punisher Max by Jason Aaron Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/punisher-max-by-jason-aaron-omnibus/4050-74655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74656/", + "id": 74656, + "name": "Wolverine and the X-Men by Jason Aaron Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-xmen-by-jason-aaron-omnibus/4050-74656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74704/", + "id": 74704, + "name": "Figment", + "site_detail_url": "https://comicvine.gamespot.com/figment/4050-74704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74729/", + "id": 74729, + "name": "Original Sins", + "site_detail_url": "https://comicvine.gamespot.com/original-sins/4050-74729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74730/", + "id": 74730, + "name": "Uncanny X-Men Special", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-special/4050-74730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74778/", + "id": 74778, + "name": "All-New Young Guns", + "site_detail_url": "https://comicvine.gamespot.com/allnew-young-guns/4050-74778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74816/", + "id": 74816, + "name": "Avengers: The Legacy of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-legacy-of-thanos/4050-74816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74817/", + "id": 74817, + "name": "The Invaders Classic: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-invaders-classic-the-complete-collection/4050-74817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75008/", + "id": 75008, + "name": "All-New X-Factor: Not Brand X", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xfactor-not-brand-x/4050-75008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75009/", + "id": 75009, + "name": "Amazing X-Men: The Quest For Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/amazing-xmen-the-quest-for-nightcrawler/4050-75009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75010/", + "id": 75010, + "name": "The Avengers Epic Collection: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-epic-collection-judgment-day/4050-75010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75011/", + "id": 75011, + "name": "Avengers World: A.I.M.pire", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-aimpire/4050-75011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75012/", + "id": 75012, + "name": "Galactus the Devourer", + "site_detail_url": "https://comicvine.gamespot.com/galactus-the-devourer/4050-75012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75013/", + "id": 75013, + "name": "Superior Spider-Man: Goblin Nation", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-goblin-nation/4050-75013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75029/", + "id": 75029, + "name": "Dead Rising 3", + "site_detail_url": "https://comicvine.gamespot.com/dead-rising-3/4050-75029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75047/", + "id": 75047, + "name": "How To Draw X-Men", + "site_detail_url": "https://comicvine.gamespot.com/how-to-draw-xmen/4050-75047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75049/", + "id": 75049, + "name": "Iron Man and the M&Ms in Armored and Irresistible", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-and-the-mms-in-armored-and-irresistible/4050-75049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75060/", + "id": 75060, + "name": "Marvel Comics Group Special Edition Calendar", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-group-special-edition-calendar/4050-75060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75061/", + "id": 75061, + "name": "Marvel Super Heroes Adventure Game Roster Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-adventure-game-roster-book/4050-75061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75127/", + "id": 75127, + "name": "Habit Heroes and Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/habit-heroes-and-iron-man/4050-75127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75140/", + "id": 75140, + "name": "New Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-annual/4050-75140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75141/", + "id": 75141, + "name": "Savage Hulk", + "site_detail_url": "https://comicvine.gamespot.com/savage-hulk/4050-75141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75142/", + "id": 75142, + "name": "Spider-Man Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-spectacular/4050-75142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75245/", + "id": 75245, + "name": "Avengers A.I.: 12,000 A.D.", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ai-12000-ad/4050-75245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75246/", + "id": 75246, + "name": "New Avengers: Other Worlds", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-other-worlds/4050-75246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75247/", + "id": 75247, + "name": "Superior Spider-Man Team-Up: Superior Six", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-teamup-superior-six/4050-75247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75248/", + "id": 75248, + "name": "What If? Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/what-if-age-of-ultron/4050-75248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75290/", + "id": 75290, + "name": "AAFES 11th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-11th-edition/4050-75290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75291/", + "id": 75291, + "name": "AAFES 15th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-15th-edition/4050-75291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75292/", + "id": 75292, + "name": "AAFES 16th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-16th-edition/4050-75292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75293/", + "id": 75293, + "name": "AAFES 13th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-13th-edition/4050-75293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75294/", + "id": 75294, + "name": "AAFES 14th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-14th-edition/4050-75294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75295/", + "id": 75295, + "name": "AAFES 12th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-12th-edition/4050-75295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75335/", + "id": 75335, + "name": "Legendary Star-Lord", + "site_detail_url": "https://comicvine.gamespot.com/legendary-starlord/4050-75335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75336/", + "id": 75336, + "name": "Rocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon/4050-75336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75358/", + "id": 75358, + "name": "100th Anniversary Special: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/100th-anniversary-special-fantastic-four/4050-75358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75359/", + "id": 75359, + "name": "Deadpool vs. X-Force", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-xforce/4050-75359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75360/", + "id": 75360, + "name": "Guardians of the Galaxy: Galaxy's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-galaxys-most-wanted/4050-75360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75391/", + "id": 75391, + "name": "Thanos: A God Up There Listening", + "site_detail_url": "https://comicvine.gamespot.com/thanos-a-god-up-there-listening/4050-75391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75399/", + "id": 75399, + "name": "Power Pack: Day One", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-day-one/4050-75399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75413/", + "id": 75413, + "name": "Legendary Star-Lord Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/legendary-star-lord-special-edition/4050-75413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75414/", + "id": 75414, + "name": "Rocket Raccoon Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-special-edition/4050-75414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75485/", + "id": 75485, + "name": "Infinity Gauntlet Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-omnibus/4050-75485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75486/", + "id": 75486, + "name": "Marvel's Guardians of the Galaxy Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-guardians-of-the-galaxy-prelude/4050-75486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75487/", + "id": 75487, + "name": "Savage Wolverine: Wrath", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-wrath/4050-75487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75523/", + "id": 75523, + "name": "Captain America: Playball", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-playball/4050-75523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75538/", + "id": 75538, + "name": "Power Pack: The Kids Are All Right", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-the-kids-are-all-right/4050-75538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75555/", + "id": 75555, + "name": "100th Anniversary Special: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/100th-anniversary-special-spiderman/4050-75555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75556/", + "id": 75556, + "name": "Deadpool: Dracula's Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-draculas-gauntlet/4050-75556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75557/", + "id": 75557, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099/4050-75557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75612/", + "id": 75612, + "name": "Marvel's Agents of S.H.I.E.L.D. Season One Declassified", + "site_detail_url": "https://comicvine.gamespot.com/marvels-agents-of-s-h-i-e-l-d-season-one-declassif/4050-75612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75628/", + "id": 75628, + "name": "Star-Lord: Guardian of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/starlord-guardian-of-the-galaxy/4050-75628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75716/", + "id": 75716, + "name": "100th Anniversary Special: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/100th-anniversary-special-xmen/4050-75716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75813/", + "id": 75813, + "name": "Black Widow: The Finely Woven Thread", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-finely-woven-thread/4050-75813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75814/", + "id": 75814, + "name": "Marvel Universe Guardians of the Galaxy: Cosmic Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-guardians-of-the-galaxy-cosmic-tea/4050-75814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75825/", + "id": 75825, + "name": "Marvel Knights: Spider-Man: Fight Night", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-spiderman-fight-night/4050-75825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75857/", + "id": 75857, + "name": "Giant Size Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-astonishing-x-men/4050-75857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75874/", + "id": 75874, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4050-75874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75888/", + "id": 75888, + "name": "100th Anniversary Special: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/100th-anniversary-special-avengers/4050-75888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75929/", + "id": 75929, + "name": "Avengers: Adapt Or Die", + "site_detail_url": "https://comicvine.gamespot.com/avengers-adapt-or-die/4050-75929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75936/", + "id": 75936, + "name": "The Wedding of Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/the-wedding-of-deadpool/4050-75936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75940/", + "id": 75940, + "name": "Disney Kingdoms: Seekers Of The Weird", + "site_detail_url": "https://comicvine.gamespot.com/disney-kingdoms-seekers-of-the-weird/4050-75940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75943/", + "id": 75943, + "name": "George Romero's Empire of the Dead: Act One", + "site_detail_url": "https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-one/4050-75943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75983/", + "id": 75983, + "name": "Wolverine: Origin II", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origin-ii/4050-75983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75984/", + "id": 75984, + "name": "Wolverine: Three Months To Die", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-three-months-to-die/4050-75984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76010/", + "id": 76010, + "name": "Fantastic Four Epic Collection: Into the Time Stream", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-into-the-time-strea/4050-76010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76011/", + "id": 76011, + "name": "Guardians of the Galaxy By Abnett & Lanning: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-abnett-lanning-the-comp/4050-76011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76012/", + "id": 76012, + "name": "Thunderbolts: No Mercy", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-no-mercy/4050-76012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76065/", + "id": 76065, + "name": "Marvel's Agents of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/marvels-agents-of-shield/4050-76065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76084/", + "id": 76084, + "name": "100th Anniversary Special: Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/100th-anniversary-special-guardians-of-the-galaxy/4050-76084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76085/", + "id": 76085, + "name": "Iron Man Special", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-special/4050-76085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76135/", + "id": 76135, + "name": "All-New Invaders: Gods and Soldiers", + "site_detail_url": "https://comicvine.gamespot.com/allnew-invaders-gods-and-soldiers/4050-76135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76162/", + "id": 76162, + "name": "Mighty Avengers: Family Bonding", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-family-bonding/4050-76162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76175/", + "id": 76175, + "name": "The Superior Foes of Spider-Man: The Crime of the Century", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-the-crime-of-the-c/4050-76175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76192/", + "id": 76192, + "name": "The Amazing Spider-Man: The Complete Alien Costume Saga", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-the-complete-alien-costume-s/4050-76192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76193/", + "id": 76193, + "name": "Human Torch: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/human-torch-the-complete-collection/4050-76193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76194/", + "id": 76194, + "name": "Runaways: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/runaways-the-complete-collection/4050-76194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76202/", + "id": 76202, + "name": "Guardians of the Galaxy Infinite", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-infinite/4050-76202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76263/", + "id": 76263, + "name": "Thanos: The Infinity Revelation", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-revelation/4050-76263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76337/", + "id": 76337, + "name": "The Dark Tower: The Drawing of the Three Sampler", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-sampler/4050-76337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76387/", + "id": 76387, + "name": "Nova Special", + "site_detail_url": "https://comicvine.gamespot.com/nova-special/4050-76387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76451/", + "id": 76451, + "name": "Captain America: The Iron Nail", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-iron-nail/4050-76451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76485/", + "id": 76485, + "name": "Yellow, Blue and Gray", + "site_detail_url": "https://comicvine.gamespot.com/yellow-blue-and-gray/4050-76485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76487/", + "id": 76487, + "name": "Uncanny X-Force by Rick Remender", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xforce-by-rick-remender/4050-76487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76497/", + "id": 76497, + "name": "Dark Tower: The Gunslinger - The Journey Begins", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-journey-begins/4050-76497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76498/", + "id": 76498, + "name": "Hulk Smash Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hulk-smash-avengers/4050-76498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76514/", + "id": 76514, + "name": "Flashback: The Quest for Identity", + "site_detail_url": "https://comicvine.gamespot.com/flashback-the-quest-for-identity/4050-76514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76515/", + "id": 76515, + "name": "Uncanny X-Men Masterworks", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-masterworks/4050-76515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76523/", + "id": 76523, + "name": "Rise of Incarnates", + "site_detail_url": "https://comicvine.gamespot.com/rise-of-incarnates/4050-76523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76538/", + "id": 76538, + "name": "Loki: Agent of Asgard - Trust Me", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard-trust-me/4050-76538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76539/", + "id": 76539, + "name": "The Punisher: Black and White", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-black-and-white/4050-76539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76540/", + "id": 76540, + "name": "Winter Soldier: The Bitter March", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-the-bitter-march/4050-76540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76541/", + "id": 76541, + "name": "Wolverine Annual", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-annual/4050-76541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76582/", + "id": 76582, + "name": "Captain America Epic Collection: Society of Serpents", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-society-of-serpent/4050-76582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76630/", + "id": 76630, + "name": "New Warriors: The Kids Are All Fight", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-the-kids-are-all-fight/4050-76630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76666/", + "id": 76666, + "name": "Avengers Undercover: Descent", + "site_detail_url": "https://comicvine.gamespot.com/avengers-undercover-descent/4050-76666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76672/", + "id": 76672, + "name": "Deadpool vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-carnage/4050-76672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76675/", + "id": 76675, + "name": "Fantastic Four: The Fall of the Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-fall-of-the-fantastic-four/4050-76675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76696/", + "id": 76696, + "name": "X-Force: Dirty/Tricks", + "site_detail_url": "https://comicvine.gamespot.com/xforce-dirtytricks/4050-76696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76698/", + "id": 76698, + "name": "Jessica Jones: The Pulse - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-the-pulse-the-complete-collection/4050-76698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76699/", + "id": 76699, + "name": "Marvel Masterworks: Marvel Rarities", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-marvel-rarities/4050-76699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76702/", + "id": 76702, + "name": "X-Men: Operation Zero Tolerance", + "site_detail_url": "https://comicvine.gamespot.com/xmen-operation-zero-tolerance/4050-76702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76710/", + "id": 76710, + "name": "Death of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine/4050-76710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76722/", + "id": 76722, + "name": "Captain America: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-rebirth/4050-76722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76734/", + "id": 76734, + "name": "The Dark Tower: The Drawing of the Three - The Prisoner", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-the-prison/4050-76734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76735/", + "id": 76735, + "name": "Hawkeye vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-vs-deadpool/4050-76735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76736/", + "id": 76736, + "name": "Revenge: The Secret Origin of Emily Thorne", + "site_detail_url": "https://comicvine.gamespot.com/revenge-the-secret-origin-of-emily-thorne/4050-76736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76816/", + "id": 76816, + "name": "The Dark Tower: The Gunslinger Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-gunslinger-omnibus/4050-76816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76817/", + "id": 76817, + "name": "Deadpool Minibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-minibus/4050-76817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76818/", + "id": 76818, + "name": "Oz Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/oz-omnibus/4050-76818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76863/", + "id": 76863, + "name": "Edge of Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spiderverse/4050-76863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76864/", + "id": 76864, + "name": "George Romero's Empire of the Dead: Act Two", + "site_detail_url": "https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-two/4050-76864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76899/", + "id": 76899, + "name": "All-New X-Men: One Down", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-one-down/4050-76899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76910/", + "id": 76910, + "name": "Fantastic Four Epic Collection: The World's Greatest Comic Magazine", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-worlds-greatest/4050-76910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76937/", + "id": 76937, + "name": "Uncanny Avengers: Avenge The Earth", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-avenge-the-earth/4050-76937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76940/", + "id": 76940, + "name": "Winter Soldier By Brubaker: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-by-brubaker-the-complete-collection/4050-76940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76943/", + "id": 76943, + "name": "Spider-Man J", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-j/4050-76943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76965/", + "id": 76965, + "name": "Midnight Sons Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/midnight-sons-ashcan-edition/4050-76965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76966/", + "id": 76966, + "name": "The Punisher Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-ashcan-edition/4050-76966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76981/", + "id": 76981, + "name": "Deadpool Bi-Annual", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-biannual/4050-76981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76982/", + "id": 76982, + "name": "Hulk Annual", + "site_detail_url": "https://comicvine.gamespot.com/hulk-annual/4050-76982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77048/", + "id": 77048, + "name": "Sub-Mariner & the Original Human Torch", + "site_detail_url": "https://comicvine.gamespot.com/submariner-the-original-human-torch/4050-77048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77053/", + "id": 77053, + "name": "Uncanny X-Men: Vs. S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-vs-shield/4050-77053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77058/", + "id": 77058, + "name": "X-Men: The Adventures of Cyclops and Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-adventures-of-cyclops-and-phoenix/4050-77058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77072/", + "id": 77072, + "name": "Master Lock Presents: The Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/master-lock-presents-the-incredible-hulk/4050-77072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77075/", + "id": 77075, + "name": "Hulk: Beauty and The Behemoth", + "site_detail_url": "https://comicvine.gamespot.com/hulk-beauty-and-the-behemoth/4050-77075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77076/", + "id": 77076, + "name": "Hulk: Smash", + "site_detail_url": "https://comicvine.gamespot.com/hulk-smash/4050-77076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77081/", + "id": 77081, + "name": "Marvel Authentix: Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-authentix-daredevil/4050-77081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77082/", + "id": 77082, + "name": "Marvel Milestone Edition: The X-Men #1", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestone-edition-the-x-men-1/4050-77082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77083/", + "id": 77083, + "name": "Marvel Milestone Edition: Tales of Suspense", + "site_detail_url": "https://comicvine.gamespot.com/marvel-milestone-edition-tales-of-suspense/4050-77083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77097/", + "id": 77097, + "name": "X-Factor: The Road To Redemption", + "site_detail_url": "https://comicvine.gamespot.com/xfactor-the-road-to-redemption/4050-77097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77099/", + "id": 77099, + "name": "Avengers Assemble Featuring Captain Citrus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-featuring-captain-citrus/4050-77099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77111/", + "id": 77111, + "name": "Marvel Covers: Artist's Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-covers-artists-edition/4050-77111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77149/", + "id": 77149, + "name": "The Amazing Spider-Man Epic Collection: Great Power", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-epic-collection-great-power/4050-77149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77209/", + "id": 77209, + "name": "Marvel MegaMorphs - Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-wolverine/4050-77209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77215/", + "id": 77215, + "name": "Marvel MegaMorphs - Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-captain-america/4050-77215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77216/", + "id": 77216, + "name": "Marvel MegaMorphs - Doctor Octopus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-doctor-octopus/4050-77216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77223/", + "id": 77223, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-77223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77224/", + "id": 77224, + "name": "Guardians 3000", + "site_detail_url": "https://comicvine.gamespot.com/guardians-3000/4050-77224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77225/", + "id": 77225, + "name": "Bucky Barnes: The Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/bucky-barnes-the-winter-soldier/4050-77225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77247/", + "id": 77247, + "name": "Fantastic Four Annual", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual/4050-77247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77304/", + "id": 77304, + "name": "All-New Ghost Rider: Engines of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/allnew-ghost-rider-engines-of-vengeance/4050-77304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77305/", + "id": 77305, + "name": "All-New X-Men", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen/4050-77305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77316/", + "id": 77316, + "name": "Deathlok The Demolisher: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-the-demolisher-the-complete-collection/4050-77316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77326/", + "id": 77326, + "name": "Iron Man: Rings of the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-rings-of-the-mandarin/4050-77326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77330/", + "id": 77330, + "name": "Magneto: Infamous", + "site_detail_url": "https://comicvine.gamespot.com/magneto-infamous/4050-77330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77333/", + "id": 77333, + "name": "Moon Knight Epic Collection: Bad Moon Rising", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-epic-collection-bad-moon-rising/4050-77333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77334/", + "id": 77334, + "name": "Moon Knight: From The Dead", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-from-the-dead/4050-77334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77336/", + "id": 77336, + "name": "The New Mutants/X-Force: Demon Bear", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-x-force-demon-bear/4050-77336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77424/", + "id": 77424, + "name": "Avengers & X-Men: Axis", + "site_detail_url": "https://comicvine.gamespot.com/avengers-x-men-axis/4050-77424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77425/", + "id": 77425, + "name": "Thanos: A God Up There Listening", + "site_detail_url": "https://comicvine.gamespot.com/thanos-a-god-up-there-listening/4050-77425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77495/", + "id": 77495, + "name": "All-New Doop", + "site_detail_url": "https://comicvine.gamespot.com/allnew-doop/4050-77495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77501/", + "id": 77501, + "name": "Captain Marvel: Higher, Further, Faster, More", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-higher-further-faster-more/4050-77501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77514/", + "id": 77514, + "name": "Hawkeye: L.A. Woman", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-la-woman/4050-77514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77521/", + "id": 77521, + "name": "Marvels Companion", + "site_detail_url": "https://comicvine.gamespot.com/marvels-companion/4050-77521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77530/", + "id": 77530, + "name": "She-Hulk: Law and Disorder", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-law-and-disorder/4050-77530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77538/", + "id": 77538, + "name": "Ultimate FF: Strangest Ever", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-ff-strangest-ever/4050-77538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77542/", + "id": 77542, + "name": "X-Men: Bloodline", + "site_detail_url": "https://comicvine.gamespot.com/xmen-bloodline/4050-77542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77551/", + "id": 77551, + "name": "Starriors Mini-Comics", + "site_detail_url": "https://comicvine.gamespot.com/starriors-mini-comics/4050-77551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77575/", + "id": 77575, + "name": "Deadpool's Art of War", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-art-of-war/4050-77575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77576/", + "id": 77576, + "name": "Death of Wolverine: The Logan Legacy", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-the-logan-legacy/4050-77576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77577/", + "id": 77577, + "name": "Original Sin Annual", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-annual/4050-77577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77619/", + "id": 77619, + "name": "All-New Ultimates: Power For Power", + "site_detail_url": "https://comicvine.gamespot.com/allnew-ultimates-power-for-power/4050-77619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77620/", + "id": 77620, + "name": "All-New X-Factor: Change of Decay", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xfactor-change-of-decay/4050-77620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77621/", + "id": 77621, + "name": "The Amazing Spider-Man: The Parker Luck", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-parker-luck/4050-77621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77628/", + "id": 77628, + "name": "Daredevil: Devil At Bay", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-devil-at-bay/4050-77628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77630/", + "id": 77630, + "name": "Deadly Hands of Kung Fu: Out Of The Past", + "site_detail_url": "https://comicvine.gamespot.com/deadly-hands-of-kung-fu-out-of-the-past/4050-77630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77631/", + "id": 77631, + "name": "Deadpool: Dracula's Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-draculas-gauntlet/4050-77631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77643/", + "id": 77643, + "name": "Marvel Masterworks: Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-ms-marvel/4050-77643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77646/", + "id": 77646, + "name": "Ms. Marvel: No Normal", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-no-normal/4050-77646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77662/", + "id": 77662, + "name": "Thor Epic Collection: The God Of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-god-of-thunder/4050-77662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77675/", + "id": 77675, + "name": "Marvel Megamorphs - Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-ghost-rider/4050-77675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77676/", + "id": 77676, + "name": "Marvel Megamorphs - Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-hulk/4050-77676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77691/", + "id": 77691, + "name": "Axis: Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/axis-hobgoblin/4050-77691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77727/", + "id": 77727, + "name": "Spider-Man's Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/spidermans-tangled-web/4050-77727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77732/", + "id": 77732, + "name": "New Avengers/Transformers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengerstransformers/4050-77732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77746/", + "id": 77746, + "name": "Hulk: Banner D.O.A.", + "site_detail_url": "https://comicvine.gamespot.com/hulk-banner-doa/4050-77746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77747/", + "id": 77747, + "name": "Iron Patriot: Unbreakable", + "site_detail_url": "https://comicvine.gamespot.com/iron-patriot-unbreakable/4050-77747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77753/", + "id": 77753, + "name": "Marvel 100th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/marvel-100th-anniversary/4050-77753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77758/", + "id": 77758, + "name": "Original Sin: Hulk vs. Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-hulk-vs-iron-man/4050-77758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77761/", + "id": 77761, + "name": "Secret Avengers: Let's Have A Problem", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-lets-have-a-problem/4050-77761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77763/", + "id": 77763, + "name": "Silver Surfer: New Dawn", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-new-dawn/4050-77763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77786/", + "id": 77786, + "name": "Spider-Man: Father's Day is Every Day", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-fathers-day-is-every-day/4050-77786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77805/", + "id": 77805, + "name": "Axis: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/axis-carnage/4050-77805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77806/", + "id": 77806, + "name": "Axis: Revolutions", + "site_detail_url": "https://comicvine.gamespot.com/axis-revolutions/4050-77806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77807/", + "id": 77807, + "name": "Death of Wolverine: Deadpool & Captain America", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-deadpool-captain-america/4050-77807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77808/", + "id": 77808, + "name": "Deathlok", + "site_detail_url": "https://comicvine.gamespot.com/deathlok/4050-77808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77810/", + "id": 77810, + "name": "Marvel 75th Anniversary Celebration", + "site_detail_url": "https://comicvine.gamespot.com/marvel-75th-anniversary-celebration/4050-77810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77856/", + "id": 77856, + "name": "Marvel Comics #1: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1-halloween-comicfest/4050-77856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77857/", + "id": 77857, + "name": "Marvel Super Heroes: Secret Wars #1 - Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-secret-wars-1-halloween-comicf/4050-77857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77869/", + "id": 77869, + "name": "Miracleman: The Red King Syndrome", + "site_detail_url": "https://comicvine.gamespot.com/miracleman-the-red-king-syndrome/4050-77869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77871/", + "id": 77871, + "name": "All-New Captain America: Fear Him Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/allnew-captain-america-fear-him-infinite-comic/4050-77871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77885/", + "id": 77885, + "name": "Deadpool & Cable Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-cable-omnibus/4050-77885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77896/", + "id": 77896, + "name": "Iron Man Epic Collection: The Golden Avenger", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-the-golden-avenger/4050-77896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77906/", + "id": 77906, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/original-sin/4050-77906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77913/", + "id": 77913, + "name": "Uncanny X-Men/Iron Man/Nova: No End In Sight", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmeniron-mannova-no-end-in-sight/4050-77913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77916/", + "id": 77916, + "name": "Wolverine and the X-Men: Tomorrow Never Learns", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-x-men-tomorrow-never-learns/4050-77916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77939/", + "id": 77939, + "name": "Death of Wolverine: Life After Logan", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-life-after-logan/4050-77939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77940/", + "id": 77940, + "name": "Death of Wolverine: The Weapon X Program", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-the-weapon-x-program/4050-77940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77941/", + "id": 77941, + "name": "Spider-Verse Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/spiderverse-teamup/4050-77941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77988/", + "id": 77988, + "name": "Avengers: Infinite Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-infinite-avengers/4050-77988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77995/", + "id": 77995, + "name": "Deadpool vs. X-Force", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-xforce/4050-77995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-77997/", + "id": 77997, + "name": "Elektra: Bloodlines", + "site_detail_url": "https://comicvine.gamespot.com/elektra-bloodlines/4050-77997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78014/", + "id": 78014, + "name": "Marvel 75th Anniversary Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-75th-anniversary-omnibus/4050-78014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78015/", + "id": 78015, + "name": "Miles Morales: The Ultimate Spider-Man: Revival", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-the-ultimate-spiderman-revival/4050-78015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78018/", + "id": 78018, + "name": "New Avengers: A Perfect World", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-a-perfect-world/4050-78018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78023/", + "id": 78023, + "name": "Thor: God of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder/4050-78023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78044/", + "id": 78044, + "name": "All-New Captain America", + "site_detail_url": "https://comicvine.gamespot.com/allnew-captain-america/4050-78044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78045/", + "id": 78045, + "name": "Captain America & the Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers/4050-78045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78046/", + "id": 78046, + "name": "Marvel Universe Avengers Assemble Season 2", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2/4050-78046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78047/", + "id": 78047, + "name": "Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse/4050-78047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78048/", + "id": 78048, + "name": "Superior Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/superior-iron-man/4050-78048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78105/", + "id": 78105, + "name": "Avengers Epic Collection: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-earths-mightiest-heroes/4050-78105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78106/", + "id": 78106, + "name": "Avengers Undercover: Going Native", + "site_detail_url": "https://comicvine.gamespot.com/avengers-undercover-going-native/4050-78106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78107/", + "id": 78107, + "name": "Avengers World: Ascension", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-ascension/4050-78107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78120/", + "id": 78120, + "name": "Fantastic Four: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-original-sin/4050-78120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78137/", + "id": 78137, + "name": "Nightcrawler: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-homecoming/4050-78137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78138/", + "id": 78138, + "name": "Original Sin: Thor & Loki - The Tenth Realm", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-thor-loki-the-tenth-realm/4050-78138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78176/", + "id": 78176, + "name": "Pride & Prejudice", + "site_detail_url": "https://comicvine.gamespot.com/pride-prejudice/4050-78176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78202/", + "id": 78202, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-78202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78275/", + "id": 78275, + "name": "Guardians of the Galaxy: Guardians Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-guardians-disassembled/4050-78275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78279/", + "id": 78279, + "name": "Iron Fist: The Living Weapon: Rage", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-living-weapon-rage/4050-78279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78292/", + "id": 78292, + "name": "Silver Surfer Epic Collection: When Calls Galactus", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-when-calls-galactus/4050-78292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78295/", + "id": 78295, + "name": "Thor: God of Thunder: The Last Days of Midgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder-the-last-days-of-midgard/4050-78295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78355/", + "id": 78355, + "name": "Marvel Universe Ultimate Spider-Man: Web Warriors", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-web-warriors/4050-78355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78356/", + "id": 78356, + "name": "Scarlet Spiders", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-spiders/4050-78356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78431/", + "id": 78431, + "name": "All-New Invaders: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/allnew-invaders-original-sin/4050-78431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78432/", + "id": 78432, + "name": "Amazing Spider-Man: Learning To Crawl", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-learning-to-crawl/4050-78432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78439/", + "id": 78439, + "name": "Captain America Epic Collection: Captain America Lives Again", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-captain-america-li/4050-78439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78444/", + "id": 78444, + "name": "Deadpool: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-original-sin/4050-78444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78455/", + "id": 78455, + "name": "Inhuman: Genesis", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-genesis/4050-78455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78466/", + "id": 78466, + "name": "Savage Wolverine: The Best There Is", + "site_detail_url": "https://comicvine.gamespot.com/savage-wolverine-the-best-there-is/4050-78466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78548/", + "id": 78548, + "name": "Angela: Asgard's Assassin", + "site_detail_url": "https://comicvine.gamespot.com/angela-asgards-assassin/4050-78548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78549/", + "id": 78549, + "name": "Captain America: Peggy Carter, Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-peggy-carter-agent-of-shield/4050-78549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78550/", + "id": 78550, + "name": "Thanos vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/thanos-vs-hulk/4050-78550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78626/", + "id": 78626, + "name": "Captain America: The Trial of Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-trial-of-captain-america-omnib/4050-78626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78654/", + "id": 78654, + "name": "Thanos: A God Up There Listening", + "site_detail_url": "https://comicvine.gamespot.com/thanos-a-god-up-there-listening/4050-78654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78660/", + "id": 78660, + "name": "X-Men: Inferno Prologue", + "site_detail_url": "https://comicvine.gamespot.com/xmen-inferno-prologue/4050-78660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78661/", + "id": 78661, + "name": "Young Avengers By Gillen And McKelvie Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-gillen-and-mckelvie-omnibus/4050-78661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78685/", + "id": 78685, + "name": "Fear Itself: Hulk/Dracula", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-hulkdracula/4050-78685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78686/", + "id": 78686, + "name": "House of M: Fantastic Four/Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-fantastic-fouriron-man/4050-78686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78701/", + "id": 78701, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4050-78701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78715/", + "id": 78715, + "name": "Amazing Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-annual/4050-78715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78716/", + "id": 78716, + "name": "Guardians of the Galaxy Annual", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-annual/4050-78716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78717/", + "id": 78717, + "name": "Spider-Man & the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-x-men/4050-78717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78718/", + "id": 78718, + "name": "Uncanny X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-annual/4050-78718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78772/", + "id": 78772, + "name": "Essential Official Handbook of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/essential-official-handbook-of-the-marvel-universe/4050-78772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78776/", + "id": 78776, + "name": "Essential Official Handbook of the Marvel Universe Master Edition", + "site_detail_url": "https://comicvine.gamespot.com/essential-official-handbook-of-the-marvel-universe/4050-78776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78796/", + "id": 78796, + "name": "Mighty Avengers: Original Sin - Not Your Father's Avengers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-original-sin-not-your-fathers-aven/4050-78796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78802/", + "id": 78802, + "name": "Savage Hulk: The Man Within", + "site_detail_url": "https://comicvine.gamespot.com/savage-hulk-the-man-within/4050-78802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78816/", + "id": 78816, + "name": "Wolverine Epic Collection: Madripoor Nights", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-madripoor-nights/4050-78816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78826/", + "id": 78826, + "name": "Essential Official Handbook of the Marvel Universe Update '89", + "site_detail_url": "https://comicvine.gamespot.com/essential-official-handbook-of-the-marvel-universe/4050-78826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78827/", + "id": 78827, + "name": "Essential Rampaging Hulk", + "site_detail_url": "https://comicvine.gamespot.com/essential-rampaging-hulk/4050-78827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78846/", + "id": 78846, + "name": "Spider-Man, Storm And Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-storm-and-luke-cage/4050-78846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78925/", + "id": 78925, + "name": "Avengers Now!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-now/4050-78925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78949/", + "id": 78949, + "name": "Cyclops: Starstruck", + "site_detail_url": "https://comicvine.gamespot.com/cyclops-starstruck/4050-78949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78974/", + "id": 78974, + "name": "Thunderbolts: Punisher vs. The Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-punisher-vs-the-thunderbolts/4050-78974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79024/", + "id": 79024, + "name": "All-New X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-annual/4050-79024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79025/", + "id": 79025, + "name": "Marvel's The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers/4050-79025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79073/", + "id": 79073, + "name": "Amazing X-Men: World War Wendigo", + "site_detail_url": "https://comicvine.gamespot.com/amazing-xmen-world-war-wendigo/4050-79073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79081/", + "id": 79081, + "name": "Captain America: The Tomorrow Soldier", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-tomorrow-soldier/4050-79081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79094/", + "id": 79094, + "name": "Nova: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/nova-original-sin/4050-79094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79108/", + "id": 79108, + "name": "X-Men Epic Collection: Children of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/xmen-epic-collection-children-of-the-atom/4050-79108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79131/", + "id": 79131, + "name": "Punisher: Barbarian with a Gun", + "site_detail_url": "https://comicvine.gamespot.com/punisher-barbarian-with-a-gun/4050-79131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79159/", + "id": 79159, + "name": "S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/s-h-i-e-l-d/4050-79159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79169/", + "id": 79169, + "name": "All-New Miracleman Annual", + "site_detail_url": "https://comicvine.gamespot.com/allnew-miracleman-annual/4050-79169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79225/", + "id": 79225, + "name": "X-Men: The Curse Is Broken", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-curse-is-broken/4050-79225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79250/", + "id": 79250, + "name": "Double Edge: Omega", + "site_detail_url": "https://comicvine.gamespot.com/double-edge-omega/4050-79250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79252/", + "id": 79252, + "name": "Spider-Man: Maximum Clonage Omega", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-maximum-clonage-omega/4050-79252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79255/", + "id": 79255, + "name": "Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/ant-man/4050-79255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79256/", + "id": 79256, + "name": "Operation: S.I.N.", + "site_detail_url": "https://comicvine.gamespot.com/operation-sin/4050-79256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79259/", + "id": 79259, + "name": "The Mighty Thor Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-annual/4050-79259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79268/", + "id": 79268, + "name": "Avengers: No More Bullying", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-more-bullying/4050-79268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79269/", + "id": 79269, + "name": "The Unbeatable Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl/4050-79269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79270/", + "id": 79270, + "name": "Wolverines", + "site_detail_url": "https://comicvine.gamespot.com/wolverines/4050-79270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79315/", + "id": 79315, + "name": "The Amazing Spider-Man: Spider-Verse Prelude", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-spider-verse-prelude/4050-79315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79321/", + "id": 79321, + "name": "Death of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine/4050-79321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79334/", + "id": 79334, + "name": "The Punisher: Border Crossing", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-border-crossing/4050-79334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79342/", + "id": 79342, + "name": "Uncanny Avengers: AXIS Prelude", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-axis-prelude/4050-79342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79398/", + "id": 79398, + "name": "Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/star-wars/4050-79398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79404/", + "id": 79404, + "name": "Barbie and Baby Sister Kelly", + "site_detail_url": "https://comicvine.gamespot.com/barbie-and-baby-sister-kelly/4050-79404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79464/", + "id": 79464, + "name": "Avengers: Time Runs Out", + "site_detail_url": "https://comicvine.gamespot.com/avengers-time-runs-out/4050-79464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79470/", + "id": 79470, + "name": "Deathlok: The Souls Of Cyber-Folk", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-the-souls-of-cyberfolk/4050-79470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79494/", + "id": 79494, + "name": "Star Wars: The Original Marvel Years", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-original-marvel-years/4050-79494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79601/", + "id": 79601, + "name": "Avengers: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/avengers-revelations/4050-79601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79602/", + "id": 79602, + "name": "Black Widow: The Tightly Tangled Web", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-the-tightly-tangled-web/4050-79602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79615/", + "id": 79615, + "name": "Iron Man Epic Collection: Stark Wars", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-stark-wars/4050-79615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79617/", + "id": 79617, + "name": "Legendary Star-Lord: Face It, I Rule", + "site_detail_url": "https://comicvine.gamespot.com/legendary-starlord-face-it-i-rule/4050-79617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79619/", + "id": 79619, + "name": "Magneto: Reversals", + "site_detail_url": "https://comicvine.gamespot.com/magneto-reversals/4050-79619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79620/", + "id": 79620, + "name": "Original Sin Companion", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-companion/4050-79620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79634/", + "id": 79634, + "name": "X-Force: Hide/Fear", + "site_detail_url": "https://comicvine.gamespot.com/xforce-hidefear/4050-79634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79736/", + "id": 79736, + "name": "Uncanny Avengers", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers/4050-79736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79775/", + "id": 79775, + "name": "Deadpool: The Ones With Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-ones-with-deadpool/4050-79775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79782/", + "id": 79782, + "name": "New Warriors: Always and Forever", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-always-and-forever/4050-79782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79789/", + "id": 79789, + "name": "The Superior Foes of Spider-Man: Game Over", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spiderman-game-over/4050-79789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79793/", + "id": 79793, + "name": "Wolverine and the X-Men: Death of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-the-xmen-death-of-wolverine/4050-79793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79841/", + "id": 79841, + "name": "Marvel MegaMorphs - Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-iron-man/4050-79841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79842/", + "id": 79842, + "name": "Marvel MegaMorphs - Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-venom/4050-79842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79847/", + "id": 79847, + "name": "All-New Captain America: Fear Him", + "site_detail_url": "https://comicvine.gamespot.com/allnew-captain-america-fear-him/4050-79847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79860/", + "id": 79860, + "name": "Guardians of the Galaxy & X-Men: The Black Vortex Alpha", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-xmen-the-black-vortex-alph/4050-79860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79868/", + "id": 79868, + "name": "Marvel's Ant-Man Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-antman-prelude/4050-79868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79871/", + "id": 79871, + "name": "Return of the Living Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-living-deadpool/4050-79871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79881/", + "id": 79881, + "name": "Avengers: Age of Ultron Prelude - This Sceptre'd Isle Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/avengers-age-of-ultron-prelude-this-sceptred-isle-/4050-79881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79894/", + "id": 79894, + "name": "Fantastic Four By Matt Fraction Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-matt-fraction-omnibus/4050-79894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79896/", + "id": 79896, + "name": "Spider-Man 2099: Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099-out-of-time/4050-79896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79897/", + "id": 79897, + "name": "Uncanny Avengers Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-omnibus/4050-79897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79990/", + "id": 79990, + "name": "Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/darth-vader/4050-79990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80032/", + "id": 80032, + "name": "Avengers World: Next World", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-next-world/4050-80032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80034/", + "id": 80034, + "name": "Deathlok: Rage Against the Machine", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-rage-against-the-machine/4050-80034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80038/", + "id": 80038, + "name": "Rocket Raccoon: A Chasing Tale", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-a-chasing-tale/4050-80038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80109/", + "id": 80109, + "name": "Avengers: Electric Rain", + "site_detail_url": "https://comicvine.gamespot.com/avengers-electric-rain/4050-80109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80115/", + "id": 80115, + "name": "Marvel Universe Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-guardians-of-the-galaxy/4050-80115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80116/", + "id": 80116, + "name": "Silk", + "site_detail_url": "https://comicvine.gamespot.com/silk/4050-80116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80155/", + "id": 80155, + "name": "Amazing Spider-Man: Who Am I?", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-who-am-i/4050-80155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80157/", + "id": 80157, + "name": "Axis: Carnage & Hobgoblin", + "site_detail_url": "https://comicvine.gamespot.com/axis-carnage-hobgoblin/4050-80157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80158/", + "id": 80158, + "name": "Civil War Prelude: New Warriors", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-prelude-new-warriors/4050-80158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80161/", + "id": 80161, + "name": "Daredevil: West-Case Scenario", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-westcase-scenario/4050-80161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80176/", + "id": 80176, + "name": "Storm: Make It Rain", + "site_detail_url": "https://comicvine.gamespot.com/storm-make-it-rain/4050-80176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80181/", + "id": 80181, + "name": "X-Men: Exogenous", + "site_detail_url": "https://comicvine.gamespot.com/xmen-exogenous/4050-80181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80298/", + "id": 80298, + "name": "Spider-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen/4050-80298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80299/", + "id": 80299, + "name": "Thor Annual", + "site_detail_url": "https://comicvine.gamespot.com/thor-annual/4050-80299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80332/", + "id": 80332, + "name": "Avengers: Millennium Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium-infinite-comic/4050-80332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80333/", + "id": 80333, + "name": "Marvel Megamorphs - Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-spiderman/4050-80333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80342/", + "id": 80342, + "name": "Marvel Megamorphs - Thing", + "site_detail_url": "https://comicvine.gamespot.com/marvel-megamorphs-thing/4050-80342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80350/", + "id": 80350, + "name": "Avengers & X-Men: Axis", + "site_detail_url": "https://comicvine.gamespot.com/avengers-xmen-axis/4050-80350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80356/", + "id": 80356, + "name": "Death of Wolverine: The Logan Legacy", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-the-logan-legacy/4050-80356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80386/", + "id": 80386, + "name": "Thor Epic Collection: To Wake The Mangog", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-to-wake-the-mangog/4050-80386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80453/", + "id": 80453, + "name": "All-New Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/allnew-hawkeye/4050-80453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80454/", + "id": 80454, + "name": "Guardians Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/guardians-teamup/4050-80454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80455/", + "id": 80455, + "name": "Princess Leia", + "site_detail_url": "https://comicvine.gamespot.com/princess-leia/4050-80455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80486/", + "id": 80486, + "name": "Marvel's Ant-Man - Scott Lang: Small Time Marvel Cinematic Universe Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvels-antman-scott-lang-small-time-marvel-cinema/4050-80486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80523/", + "id": 80523, + "name": "Death of Wolverine: The Weapon X Program", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-the-weapon-x-program/4050-80523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80530/", + "id": 80530, + "name": "Hawkeye vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-vs-deadpool/4050-80530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80534/", + "id": 80534, + "name": "Marvel's The Avengers: Age of Ultron Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-age-of-ultron-prelude/4050-80534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80542/", + "id": 80542, + "name": "Super Villains Unite: The Complete Super-Villain Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/super-villains-unite-the-complete-supervillain-tea/4050-80542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80596/", + "id": 80596, + "name": "The Amazing Spider-Man Special", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-special/4050-80596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80597/", + "id": 80597, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4050-80597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80598/", + "id": 80598, + "name": "Nova Annual", + "site_detail_url": "https://comicvine.gamespot.com/nova-annual/4050-80598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80647/", + "id": 80647, + "name": "All-New Ultimates: No Gods, No Masters", + "site_detail_url": "https://comicvine.gamespot.com/allnew-ultimates-no-gods-no-masters/4050-80647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80648/", + "id": 80648, + "name": "Avengers: Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/avengers-quicksilver/4050-80648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80651/", + "id": 80651, + "name": "Deadpool: AXIS", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-axis/4050-80651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80658/", + "id": 80658, + "name": "George Romero's Empire of the Dead: Act Two", + "site_detail_url": "https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-two/4050-80658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80797/", + "id": 80797, + "name": "All-New X-Men: The Ultimate Adventure", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-the-ultimate-adventure/4050-80797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80800/", + "id": 80800, + "name": "Avengers By Kurt Busiek & George Perez Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-kurt-busiek-george-perez-omnibus/4050-80800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80806/", + "id": 80806, + "name": "Deadpool's Art of War", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-art-of-war/4050-80806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80814/", + "id": 80814, + "name": "Guardians of the Galaxy: Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-original-sin/4050-80814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80827/", + "id": 80827, + "name": "Ms. Marvel: Generation Why", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-generation-why/4050-80827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80893/", + "id": 80893, + "name": "Big Thunder Mountain Railroad", + "site_detail_url": "https://comicvine.gamespot.com/big-thunder-mountain-railroad/4050-80893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80894/", + "id": 80894, + "name": "The Dark Tower: The Drawing of the Three - House of Cards", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-house-of-c/4050-80894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80959/", + "id": 80959, + "name": "All-New X-Factor: AXIS", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xfactor-axis/4050-80959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80960/", + "id": 80960, + "name": "Amazing Spider-Man Epic Collection: Round Robin", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-epic-collection-round-robin/4050-80960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80966/", + "id": 80966, + "name": "Hawkeye: Avenging Archer", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-avenging-archer/4050-80966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80969/", + "id": 80969, + "name": "Hulk: Omega Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk-omega-hulk/4050-80969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80970/", + "id": 80970, + "name": "Inhuman: AXIS", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-axis/4050-80970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80971/", + "id": 80971, + "name": "Iron Fist: The Return of K'un Lun", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-return-of-kun-lun/4050-80971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80974/", + "id": 80974, + "name": "Marvel Universe Ultimate Spider-Man: Web-Warriors", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-webwarriors/4050-80974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80985/", + "id": 80985, + "name": "Secret Avengers: The Labyrinth", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-the-labyrinth/4050-80985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80988/", + "id": 80988, + "name": "She-Hulk: Disorderly Conduct", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-disorderly-conduct/4050-80988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-80992/", + "id": 80992, + "name": "Uncanny X-Men: The Omega Mutant", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-the-omega-mutant/4050-80992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81041/", + "id": 81041, + "name": "Spider-Man: The Other Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-the-other-sketchbook/4050-81041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81042/", + "id": 81042, + "name": "War Machine: Ashcan Edition", + "site_detail_url": "https://comicvine.gamespot.com/war-machine-ashcan-edition/4050-81042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81063/", + "id": 81063, + "name": "Avengers: Rage of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/avengers-rage-of-ultron/4050-81063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81083/", + "id": 81083, + "name": "Avengers: Millennium", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium/4050-81083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81084/", + "id": 81084, + "name": "Avengers: Scarlet Witch by Dan Abnett & Andy Lanning", + "site_detail_url": "https://comicvine.gamespot.com/avengers-scarlet-witch-by-dan-abnett-andy-lanning/4050-81084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81085/", + "id": 81085, + "name": "Avengers: Ultron Forever", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ultron-forever/4050-81085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81086/", + "id": 81086, + "name": "George Romero's Empire of the Dead: Act Three", + "site_detail_url": "https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-three/4050-81086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81087/", + "id": 81087, + "name": "Guardians of the Galaxy: Best Story Ever", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-best-story-ever/4050-81087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81088/", + "id": 81088, + "name": "Kanan", + "site_detail_url": "https://comicvine.gamespot.com/kanan/4050-81088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81089/", + "id": 81089, + "name": "True Believers: X-Men The Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-xmen-the-age-of-apocalypse/4050-81089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81090/", + "id": 81090, + "name": "Once Upon A Time: Out of the Past", + "site_detail_url": "https://comicvine.gamespot.com/once-upon-a-time-out-of-the-past/4050-81090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81091/", + "id": 81091, + "name": "True Believers: Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-zombies/4050-81091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81092/", + "id": 81092, + "name": "Uncanny Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans/4050-81092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81184/", + "id": 81184, + "name": "Weirdworld", + "site_detail_url": "https://comicvine.gamespot.com/weirdworld/4050-81184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81230/", + "id": 81230, + "name": "Avengers: Ultron Unbound", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ultron-unbound/4050-81230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81231/", + "id": 81231, + "name": "Max Ride: First Flight", + "site_detail_url": "https://comicvine.gamespot.com/max-ride-first-flight/4050-81231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81232/", + "id": 81232, + "name": "True Believers: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-civil-war/4050-81232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81233/", + "id": 81233, + "name": "True Believers: Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-planet-hulk/4050-81233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81264/", + "id": 81264, + "name": "Miracleman: Olympus", + "site_detail_url": "https://comicvine.gamespot.com/miracleman-olympus/4050-81264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81279/", + "id": 81279, + "name": "Avengers By Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jonathan-hickman/4050-81279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81280/", + "id": 81280, + "name": "Avengers VS", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs/4050-81280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81281/", + "id": 81281, + "name": "Avengers: The Vibranium Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-vibranium-collection/4050-81281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81284/", + "id": 81284, + "name": "Captain Marvel: Stay Fly", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-stay-fly/4050-81284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81300/", + "id": 81300, + "name": "Marvel's The Avengers: Black Widow Strikes", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-black-widow-strikes/4050-81300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81301/", + "id": 81301, + "name": "The Millionaire's Pregnant Wife", + "site_detail_url": "https://comicvine.gamespot.com/the-millionaires-pregnant-wife/4050-81301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81304/", + "id": 81304, + "name": "New Avengers By Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-jonathan-hickman/4050-81304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81312/", + "id": 81312, + "name": "Skull The Slayer", + "site_detail_url": "https://comicvine.gamespot.com/skull-the-slayer/4050-81312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81314/", + "id": 81314, + "name": "Star Wars Legends Epic Collection: The Empire", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-empire/4050-81314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81358/", + "id": 81358, + "name": "True Believers: House of M", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-house-of-m/4050-81358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81359/", + "id": 81359, + "name": "True Believers: Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-old-man-logan/4050-81359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81400/", + "id": 81400, + "name": "Deadpool Classic Companion", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-companion/4050-81400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81404/", + "id": 81404, + "name": "Fantastic Four: Back In Blue", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-back-in-blue/4050-81404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81415/", + "id": 81415, + "name": "Marvel Universe All-New Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-all-new-avengers-assemble/4050-81415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81418/", + "id": 81418, + "name": "Moon Knight: Dead Will Rise", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-dead-will-rise/4050-81418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81419/", + "id": 81419, + "name": "Nova: AXIS", + "site_detail_url": "https://comicvine.gamespot.com/nova-axis/4050-81419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81426/", + "id": 81426, + "name": "Skrulls Must Die! - The Complete Skrull Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/skrulls-must-die-the-complete-skrull-kill-krew/4050-81426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81481/", + "id": 81481, + "name": "Avengers: Operation Hydra", + "site_detail_url": "https://comicvine.gamespot.com/avengers-operation-hydra/4050-81481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81482/", + "id": 81482, + "name": "Guardians of the Galaxy & X-Men: The Black Vortex Omega", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-xmen-the-black-vortex-omeg/4050-81482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81483/", + "id": 81483, + "name": "Inhuman Special", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-special/4050-81483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81484/", + "id": 81484, + "name": "True Believers: Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-armor-wars/4050-81484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81485/", + "id": 81485, + "name": "True Believers: The Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-infinity-gauntlet/4050-81485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81527/", + "id": 81527, + "name": "Avengers Magazine", + "site_detail_url": "https://comicvine.gamespot.com/avengers-magazine/4050-81527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81540/", + "id": 81540, + "name": "Hulk: Future Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/hulk-future-imperfect/4050-81540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81543/", + "id": 81543, + "name": "Loki: Agent of Asgard: I Cannot Tell A Lie", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard-i-cannot-tell-a-lie/4050-81543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81557/", + "id": 81557, + "name": "Superior Iron Man: Infamous", + "site_detail_url": "https://comicvine.gamespot.com/superior-iron-man-infamous/4050-81557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81562/", + "id": 81562, + "name": "Wolverines: Dancing With The Devil", + "site_detail_url": "https://comicvine.gamespot.com/wolverines-dancing-with-the-devil/4050-81562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81602/", + "id": 81602, + "name": "New Avengers: Ultron Forever", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-ultron-forever/4050-81602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81604/", + "id": 81604, + "name": "True Believers: Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-age-of-ultron/4050-81604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81605/", + "id": 81605, + "name": "True Believers: Miles Morales: Ultimate Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-miles-morales-ultimate-spiderman/4050-81605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81654/", + "id": 81654, + "name": "Amazing Spider-Man: Edge of Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-edge-of-spiderverse/4050-81654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81657/", + "id": 81657, + "name": "Avengers Epic Collection: Behold... The Vision", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-behold-the-vision/4050-81657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81665/", + "id": 81665, + "name": "Elektra: Reverence", + "site_detail_url": "https://comicvine.gamespot.com/elektra-reverence/4050-81665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81670/", + "id": 81670, + "name": "Marvel's Avengers: Age of Ultron - The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-age-of-ultron-the-art-of-the-movi/4050-81670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81671/", + "id": 81671, + "name": "Marvel's New York Bulletin Secret Wars Newspaper", + "site_detail_url": "https://comicvine.gamespot.com/marvels-new-york-bulletin-secret-wars-newspaper/4050-81671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81673/", + "id": 81673, + "name": "Original Sin by Aaron & Deodato", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-by-aaron-deodato/4050-81673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81674/", + "id": 81674, + "name": "Original Sins", + "site_detail_url": "https://comicvine.gamespot.com/original-sins/4050-81674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81681/", + "id": 81681, + "name": "Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse/4050-81681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81684/", + "id": 81684, + "name": "X-Force: Ends/Means", + "site_detail_url": "https://comicvine.gamespot.com/xforce-endsmeans/4050-81684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81688/", + "id": 81688, + "name": "Free Comic Book Day 2015 (Avengers)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2015-avengers/4050-81688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81729/", + "id": 81729, + "name": "Free Comic Book Day 2015 (Secret Wars)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2015-secret-wars/4050-81729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81773/", + "id": 81773, + "name": "Night of the Living Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/night-of-the-living-deadpool/4050-81773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81779/", + "id": 81779, + "name": "Secret Wars: Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-armor-wars/4050-81779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81829/", + "id": 81829, + "name": "All-New Captain America Special", + "site_detail_url": "https://comicvine.gamespot.com/allnew-captain-america-special/4050-81829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81830/", + "id": 81830, + "name": "Avengers VS", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs/4050-81830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81831/", + "id": 81831, + "name": "Figment", + "site_detail_url": "https://comicvine.gamespot.com/figment/4050-81831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81832/", + "id": 81832, + "name": "Inhuman Annual", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-annual/4050-81832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81833/", + "id": 81833, + "name": "Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars/4050-81833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81834/", + "id": 81834, + "name": "Secret Wars Prelude", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-prelude/4050-81834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81835/", + "id": 81835, + "name": "Star Wars: Episode IV - A New Hope", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-episode-iv-a-new-hope/4050-81835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81896/", + "id": 81896, + "name": "Captain America: Return of the Winter Soldier Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-return-of-the-winter-soldier-omnib/4050-81896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81904/", + "id": 81904, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-81904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81912/", + "id": 81912, + "name": "The Road To Avengers: Age of Ultron - The Art of the Marvel Cinematic Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-road-to-avengers-age-of-ultron-the-art-of-the-/4050-81912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81913/", + "id": 81913, + "name": "Secret Wars May Previews", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-may-previews/4050-81913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81964/", + "id": 81964, + "name": "Night Nurse", + "site_detail_url": "https://comicvine.gamespot.com/night-nurse/4050-81964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81965/", + "id": 81965, + "name": "Savage Hulk: Down To the Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/savage-hulk-down-to-the-crossroads/4050-81965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81966/", + "id": 81966, + "name": "Star Wars Legends Epic Collection: The New Republic", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-new-republic/4050-81966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81967/", + "id": 81967, + "name": "Thor: The Goddess of Thunder", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-goddess-of-thunder/4050-81967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82012/", + "id": 82012, + "name": "Bucky Barnes: The Winter Soldier: The Man On The Wall", + "site_detail_url": "https://comicvine.gamespot.com/bucky-barnes-the-winter-soldier-the-man-on-the-wal/4050-82012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82099/", + "id": 82099, + "name": "A-Force", + "site_detail_url": "https://comicvine.gamespot.com/a-force/4050-82099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82100/", + "id": 82100, + "name": "All-New Ghost Rider: Legend", + "site_detail_url": "https://comicvine.gamespot.com/allnew-ghost-rider-legend/4050-82100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82101/", + "id": 82101, + "name": "AXIS: Revolutions", + "site_detail_url": "https://comicvine.gamespot.com/axis-revolutions/4050-82101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82102/", + "id": 82102, + "name": "Deadpool's Secret Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-secret-secret-wars/4050-82102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82103/", + "id": 82103, + "name": "Fantastic Four Epic Collection: Strange Days", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-strange-days/4050-82103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82104/", + "id": 82104, + "name": "Master of Kung Fu", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu/4050-82104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82105/", + "id": 82105, + "name": "Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/planet-hulk/4050-82105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82106/", + "id": 82106, + "name": "Secret Warriors: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-the-complete-collection/4050-82106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82107/", + "id": 82107, + "name": "Secret Wars: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-battleworld/4050-82107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82108/", + "id": 82108, + "name": "Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse/4050-82108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82109/", + "id": 82109, + "name": "Ultimate End", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-end/4050-82109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82196/", + "id": 82196, + "name": "Deadpool: All Good Things", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-all-good-things/4050-82196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82197/", + "id": 82197, + "name": "Deathlok: Control. Alt. Delete.", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-control-alt-delete/4050-82197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82202/", + "id": 82202, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4050-82202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82203/", + "id": 82203, + "name": "The Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet/4050-82203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82204/", + "id": 82204, + "name": "Inhumans: Attilan Rising", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-attilan-rising/4050-82204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82207/", + "id": 82207, + "name": "M.O.D.O.K. Assassin", + "site_detail_url": "https://comicvine.gamespot.com/modok-assassin/4050-82207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82208/", + "id": 82208, + "name": "Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan/4050-82208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82209/", + "id": 82209, + "name": "Secret Wars 2099", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-2099/4050-82209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82210/", + "id": 82210, + "name": "Secret Wars Journal", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-journal/4050-82210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82215/", + "id": 82215, + "name": "Uncanny Avengers: Ultron Forever", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-ultron-forever/4050-82215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82217/", + "id": 82217, + "name": "Where Monsters Dwell", + "site_detail_url": "https://comicvine.gamespot.com/where-monsters-dwell/4050-82217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82218/", + "id": 82218, + "name": "Wolverines: Claw, Blade and Fang", + "site_detail_url": "https://comicvine.gamespot.com/wolverines-claw-blade-and-fang/4050-82218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82249/", + "id": 82249, + "name": "Guardians 3000: Time After Time", + "site_detail_url": "https://comicvine.gamespot.com/guardians-3000-time-after-time/4050-82249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82250/", + "id": 82250, + "name": "Nightcrawler: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/nightcrawler-reborn/4050-82250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82251/", + "id": 82251, + "name": "Thanos vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/thanos-vs-hulk/4050-82251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82272/", + "id": 82272, + "name": "X-Men '92 Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/xmen-92-infinite-comic/4050-82272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82289/", + "id": 82289, + "name": "All-New Invaders: The Martians Are Coming", + "site_detail_url": "https://comicvine.gamespot.com/allnew-invaders-the-martians-are-coming/4050-82289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82296/", + "id": 82296, + "name": "Giant-Size X-Men: 40th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/giantsize-xmen-40th-anniversary/4050-82296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82337/", + "id": 82337, + "name": "Amazing Spider-Man: Renew Your Vows", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows/4050-82337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82340/", + "id": 82340, + "name": "Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/armor-wars/4050-82340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82341/", + "id": 82341, + "name": "Avengers: Millennium", + "site_detail_url": "https://comicvine.gamespot.com/avengers-millennium/4050-82341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82358/", + "id": 82358, + "name": "Future Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/future-imperfect/4050-82358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82359/", + "id": 82359, + "name": "Giant Size Little Marvel: AvX", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx/4050-82359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82362/", + "id": 82362, + "name": "Groot", + "site_detail_url": "https://comicvine.gamespot.com/groot/4050-82362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82364/", + "id": 82364, + "name": "House of Hem", + "site_detail_url": "https://comicvine.gamespot.com/house-of-hem/4050-82364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82377/", + "id": 82377, + "name": "Thanos: The Infinity Relativity", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-relativity/4050-82377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82378/", + "id": 82378, + "name": "Venom By Rick Remender: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-rick-remender-the-complete-collection/4050-82378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82381/", + "id": 82381, + "name": "X-Tinction Agenda", + "site_detail_url": "https://comicvine.gamespot.com/xtinction-agenda/4050-82381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82382/", + "id": 82382, + "name": "Years of Future Past", + "site_detail_url": "https://comicvine.gamespot.com/years-of-future-past/4050-82382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82409/", + "id": 82409, + "name": "FCBD 2015: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/fcbd-2015-avengers/4050-82409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82434/", + "id": 82434, + "name": "Marvel Masterworks: Not Brand Echh", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-not-brand-echh/4050-82434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82435/", + "id": 82435, + "name": "Marvel Universe: Ant-Man Digest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-antman-digest/4050-82435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82465/", + "id": 82465, + "name": "Secret Wars June Previews", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-june-previews/4050-82465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82472/", + "id": 82472, + "name": "1602 Witch Hunter Angela", + "site_detail_url": "https://comicvine.gamespot.com/1602-witch-hunter-angela/4050-82472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82479/", + "id": 82479, + "name": "Ant-Man: Scott Lang", + "site_detail_url": "https://comicvine.gamespot.com/antman-scott-lang/4050-82479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82486/", + "id": 82486, + "name": "Captain Marvel & The Carol Corps", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-carol-corps/4050-82486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82498/", + "id": 82498, + "name": "Ghost Racers", + "site_detail_url": "https://comicvine.gamespot.com/ghost-racers/4050-82498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82504/", + "id": 82504, + "name": "Marvel's Ant-Man Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-antman-prelude/4050-82504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82505/", + "id": 82505, + "name": "Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies/4050-82505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82510/", + "id": 82510, + "name": "Miles Morales: Ultimate Spider-Man - Revelations", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-revelations/4050-82510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82511/", + "id": 82511, + "name": "Mrs. Deadpool and the Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/mrs-deadpool-and-the-howling-commandos/4050-82511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82512/", + "id": 82512, + "name": "Ms. Marvel: Crushed", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-crushed/4050-82512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82516/", + "id": 82516, + "name": "Silver Surfer: Worlds Apart", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-worlds-apart/4050-82516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82523/", + "id": 82523, + "name": "Weirdworld", + "site_detail_url": "https://comicvine.gamespot.com/weirdworld/4050-82523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82599/", + "id": 82599, + "name": "Fantastic Four Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-poster-book/4050-82599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82666/", + "id": 82666, + "name": "Amazing X-Men: Once and Future Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/amazing-xmen-once-and-future-juggernaut/4050-82666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82667/", + "id": 82667, + "name": "Annihilation: Conquest Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-conquest-omnibus/4050-82667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82670/", + "id": 82670, + "name": "Captain America Epic Collection: Streets of Poison", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-streets-of-poison/4050-82670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82671/", + "id": 82671, + "name": "Captain America & the Mighty Avengers: Open For Business", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-mighty-avengers-open-for-busin/4050-82671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82705/", + "id": 82705, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-82705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82710/", + "id": 82710, + "name": "Spider-Woman: Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spiderwoman-spiderverse/4050-82710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82711/", + "id": 82711, + "name": "Squadron Sinister", + "site_detail_url": "https://comicvine.gamespot.com/squadron-sinister/4050-82711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82716/", + "id": 82716, + "name": "Thors", + "site_detail_url": "https://comicvine.gamespot.com/thors/4050-82716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82717/", + "id": 82717, + "name": "X-Men: The Hunt For Professor X", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-hunt-for-professor-x/4050-82717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82729/", + "id": 82729, + "name": "Darth Vader Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/darth-vader-directors-cut/4050-82729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82730/", + "id": 82730, + "name": "Star Wars Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-directors-cut/4050-82730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82764/", + "id": 82764, + "name": "Fantastic Four: The End Is Fourever", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-end-is-fourever/4050-82764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82811/", + "id": 82811, + "name": "Space: Punisher", + "site_detail_url": "https://comicvine.gamespot.com/space-punisher/4050-82811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82820/", + "id": 82820, + "name": "Age of Ultron vs. Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-vs-marvel-zombies/4050-82820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82821/", + "id": 82821, + "name": "All-New Captain America: Fear Him", + "site_detail_url": "https://comicvine.gamespot.com/allnew-captain-america-fear-him/4050-82821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82822/", + "id": 82822, + "name": "All-New Captain America: Hydra Ascendant", + "site_detail_url": "https://comicvine.gamespot.com/allnew-captain-america-hydra-ascendant/4050-82822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82823/", + "id": 82823, + "name": "Ant-Man/Giant-Man Epic Collection: The Man In the Ant Hill", + "site_detail_url": "https://comicvine.gamespot.com/antmangiantman-epic-collection-the-man-in-the-ant-/4050-82823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82824/", + "id": 82824, + "name": "Ant-Man: Larger Than Life", + "site_detail_url": "https://comicvine.gamespot.com/antman-larger-than-life/4050-82824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82825/", + "id": 82825, + "name": "Ant-Man: Second-Chance Man", + "site_detail_url": "https://comicvine.gamespot.com/antman-secondchance-man/4050-82825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82833/", + "id": 82833, + "name": "E Is For Extinction", + "site_detail_url": "https://comicvine.gamespot.com/e-is-for-extinction/4050-82833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82837/", + "id": 82837, + "name": "Howard the Duck: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-the-complete-collection/4050-82837/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82841/", + "id": 82841, + "name": "Korvac Saga", + "site_detail_url": "https://comicvine.gamespot.com/korvac-saga/4050-82841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82842/", + "id": 82842, + "name": "Marvel's Agent Carter: Season One Declassified", + "site_detail_url": "https://comicvine.gamespot.com/marvels-agent-carter-season-one-declassified/4050-82842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82853/", + "id": 82853, + "name": "Secret Avengers: God Level", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-god-level/4050-82853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82858/", + "id": 82858, + "name": "X-Men '92", + "site_detail_url": "https://comicvine.gamespot.com/xmen-92/4050-82858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82913/", + "id": 82913, + "name": "Avengers in Gearing Up", + "site_detail_url": "https://comicvine.gamespot.com/avengers-in-gearing-up/4050-82913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82917/", + "id": 82917, + "name": "Cyclops: A Pirate's Life For Me", + "site_detail_url": "https://comicvine.gamespot.com/cyclops-a-pirates-life-for-me/4050-82917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82922/", + "id": 82922, + "name": "Iron Man Presented by DJI", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-presented-by-dji/4050-82922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82974/", + "id": 82974, + "name": "Guardians of the Galaxy & X-Men: The Black Vortex", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-xmen-the-black-vortex/4050-82974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82982/", + "id": 82982, + "name": "Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/red-skull/4050-82982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82985/", + "id": 82985, + "name": "S.H.I.E.L.D.: Perfect Bullets", + "site_detail_url": "https://comicvine.gamespot.com/shield-perfect-bullets/4050-82985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82988/", + "id": 82988, + "name": "Star Wars Legends Epic Collection: The Old Republic", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-old-republic/4050-82988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82996/", + "id": 82996, + "name": "Ultimate Fantastic Four: Devils", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-devils/4050-82996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83022/", + "id": 83022, + "name": "All-New, All-Different Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-previews/4050-83022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83070/", + "id": 83070, + "name": "Ultimate Fantastic Four: Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-silver-surfer/4050-83070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83118/", + "id": 83118, + "name": "1872", + "site_detail_url": "https://comicvine.gamespot.com/1872/4050-83118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83119/", + "id": 83119, + "name": "Age of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse/4050-83119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83125/", + "id": 83125, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war/4050-83125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83138/", + "id": 83138, + "name": "Iron Fist Epic Collection: The Fury of Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-epic-collection-the-fury-of-iron-fist/4050-83138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83141/", + "id": 83141, + "name": "King-Size Kirby", + "site_detail_url": "https://comicvine.gamespot.com/kingsize-kirby/4050-83141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83142/", + "id": 83142, + "name": "Lando", + "site_detail_url": "https://comicvine.gamespot.com/lando/4050-83142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83156/", + "id": 83156, + "name": "Spider-Island", + "site_detail_url": "https://comicvine.gamespot.com/spider-island/4050-83156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83157/", + "id": 83157, + "name": "Storm: Bring the Thunder", + "site_detail_url": "https://comicvine.gamespot.com/storm-bring-the-thunder/4050-83157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83160/", + "id": 83160, + "name": "Thor: Who Holds the Hammer?", + "site_detail_url": "https://comicvine.gamespot.com/thor-who-holds-the-hammer/4050-83160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83232/", + "id": 83232, + "name": "The Amazing Spider-Man: Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-spider-verse/4050-83232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83246/", + "id": 83246, + "name": "Marvel Universe Guardians of the Galaxy: Galaxy's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-guardians-of-the-galaxy-galaxys-mo/4050-83246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83294/", + "id": 83294, + "name": "All-New X-Men: The Utopians", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-the-utopians/4050-83294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83295/", + "id": 83295, + "name": "Ant-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/antman-annual/4050-83295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83299/", + "id": 83299, + "name": "Captain Britain and the Mighty Defenders", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-and-the-mighty-defenders/4050-83299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83305/", + "id": 83305, + "name": "Fantastic Four by Aguirre-Sacasa & McNiven", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-aguirresacasa-mcniven/4050-83305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83310/", + "id": 83310, + "name": "Guardians of Knowhere", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-knowhere/4050-83310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83311/", + "id": 83311, + "name": "Hail Hydra", + "site_detail_url": "https://comicvine.gamespot.com/hail-hydra/4050-83311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83322/", + "id": 83322, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4050-83322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83327/", + "id": 83327, + "name": "Wolverines: The Living and the Dead", + "site_detail_url": "https://comicvine.gamespot.com/wolverines-the-living-and-the-dead/4050-83327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83328/", + "id": 83328, + "name": "X-Men: The Burning World", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-burning-world/4050-83328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83348/", + "id": 83348, + "name": "Ultimate Spider-Man Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-infinite-comic/4050-83348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83384/", + "id": 83384, + "name": "Marvel's The Art of Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-art-of-antman/4050-83384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83392/", + "id": 83392, + "name": "Spider-Man 2099: Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099-spiderverse/4050-83392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83442/", + "id": 83442, + "name": "Daredevil: The Daredevil You Know", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-daredevil-you-know/4050-83442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83460/", + "id": 83460, + "name": "Rocket Raccoon: Storytailer", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-storytailer/4050-83460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83467/", + "id": 83467, + "name": "Spider-Man & the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-the-xmen/4050-83467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83469/", + "id": 83469, + "name": "Star-Lord & Kitty Pryde", + "site_detail_url": "https://comicvine.gamespot.com/starlord-kitty-pryde/4050-83469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83489/", + "id": 83489, + "name": "Marvel 75th Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-75th-anniversary-magazine/4050-83489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83522/", + "id": 83522, + "name": "Legendary Star-Lord: Rise of The Black Vortex", + "site_detail_url": "https://comicvine.gamespot.com/legendary-starlord-rise-of-the-black-vortex/4050-83522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83525/", + "id": 83525, + "name": "Marvel's Agents of S.H.I.E.L.D. Season Two Declassified", + "site_detail_url": "https://comicvine.gamespot.com/marvels-agents-of-shield-season-two-declassified/4050-83525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83578/", + "id": 83578, + "name": "Hawkeye: Rio Bravo", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-rio-bravo/4050-83578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83579/", + "id": 83579, + "name": "Inhuman: Lineage", + "site_detail_url": "https://comicvine.gamespot.com/inhuman-lineage/4050-83579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83584/", + "id": 83584, + "name": "Magneto: Shadow Games", + "site_detail_url": "https://comicvine.gamespot.com/magneto-shadow-games/4050-83584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83586/", + "id": 83586, + "name": "Miles Morales: The Ultimate Spider-Man Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-the-ultimate-spiderman-ultimate-coll/4050-83586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83602/", + "id": 83602, + "name": "Ultimate Fantastic Four: Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-ghosts/4050-83602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83637/", + "id": 83637, + "name": "Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews/4050-83637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83685/", + "id": 83685, + "name": "Angela: Asgards Assassin - Priceless", + "site_detail_url": "https://comicvine.gamespot.com/angela-asgards-assassin-priceless/4050-83685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83705/", + "id": 83705, + "name": "Power Man and Iron Fist Epic Collection: Heroes For Hire", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-epic-collection-heroes-for/4050-83705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83801/", + "id": 83801, + "name": "Black Panther by Christopher Priest: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-by-christopher-priest-the-complete-c/4050-83801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83808/", + "id": 83808, + "name": "Daredevil: Typhoid's Kiss", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-typhoids-kiss/4050-83808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83833/", + "id": 83833, + "name": "Operation: S.I.N. - Agent Carter", + "site_detail_url": "https://comicvine.gamespot.com/operation-sin-agent-carter/4050-83833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83841/", + "id": 83841, + "name": "Star Wars: Episode V The Empire Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-episode-v-the-empire-strikes-back/4050-83841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83846/", + "id": 83846, + "name": "Avengers Presented By Gillette", + "site_detail_url": "https://comicvine.gamespot.com/avengers-presented-by-gillette/4050-83846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83847/", + "id": 83847, + "name": "Avengers Presented By Western Union", + "site_detail_url": "https://comicvine.gamespot.com/avengers-presented-by-western-union/4050-83847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83848/", + "id": 83848, + "name": "Iron Man: Early Warnings", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-early-warnings/4050-83848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83849/", + "id": 83849, + "name": "Road Force: Wrecked & Ruined", + "site_detail_url": "https://comicvine.gamespot.com/road-force-wrecked-ruined/4050-83849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83944/", + "id": 83944, + "name": "Captain Marvel: Alis Volat Propriis", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-alis-volat-propriis/4050-83944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83947/", + "id": 83947, + "name": "Daredevil Epic Collection: Widow's Kiss", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-widows-kiss/4050-83947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83957/", + "id": 83957, + "name": "Guardians of the Galaxy: Best Story Ever", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-best-story-ever/4050-83957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83959/", + "id": 83959, + "name": "House of M", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m/4050-83959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83960/", + "id": 83960, + "name": "Howard the Human", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-human/4050-83960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83963/", + "id": 83963, + "name": "Marvel Firsts: The 1990s Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1990s-omnibus/4050-83963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83964/", + "id": 83964, + "name": "Marvel Masterworks: Luke Cage, Hero For Hire", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-luke-cage-hero-for-hire/4050-83964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83966/", + "id": 83966, + "name": "Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel/4050-83966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83976/", + "id": 83976, + "name": "Rogue: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/rogue-the-complete-collection/4050-83976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83978/", + "id": 83978, + "name": "Secret Wars: Secret Love", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-secret-love/4050-83978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83982/", + "id": 83982, + "name": "Ultimate Marvel Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-marvel-omnibus/4050-83982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83983/", + "id": 83983, + "name": "The Unbeatable Squirrel Girl: Squirrel Power", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-squirrel-power/4050-83983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83987/", + "id": 83987, + "name": "X-Men: The Age of Apocalypse Alpha", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-age-of-apocalypse-alpha/4050-83987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-83988/", + "id": 83988, + "name": "X-Men/Avengers: Onslaught Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/xmenavengers-onslaught-omnibus/4050-83988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84018/", + "id": 84018, + "name": "Avengers World: Before Time Runs Out", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-before-time-runs-out/4050-84018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84068/", + "id": 84068, + "name": "Iron Man: The Inevitable", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-inevitable/4050-84068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84084/", + "id": 84084, + "name": "The Amazing Spider-Man: Graveyard Shift", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-graveyard-shift/4050-84084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84086/", + "id": 84086, + "name": "Ant-Man: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/antman-last-days/4050-84086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84109/", + "id": 84109, + "name": "Hank Johnson, Agent of Hydra", + "site_detail_url": "https://comicvine.gamespot.com/hank-johnson-agent-of-hydra/4050-84109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84113/", + "id": 84113, + "name": "Iron Fist: The Living Weapon: Redemption", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-living-weapon-redemption/4050-84113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84125/", + "id": 84125, + "name": "Return of the Living Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/return-of-the-living-deadpool/4050-84125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84132/", + "id": 84132, + "name": "Star Wars Legends Epic Collection: Rise of the Sith", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-rise-of-the-sith/4050-84132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84137/", + "id": 84137, + "name": "Uncanny Avengers: Counter-Evolutionary", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-counterevolutionary/4050-84137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84217/", + "id": 84217, + "name": "Wolverines: Destiny", + "site_detail_url": "https://comicvine.gamespot.com/wolverines-destiny/4050-84217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84267/", + "id": 84267, + "name": "Dark Tower: The Drawing of the Three - Lady of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-drawing-of-the-three-lady-of-shadow/4050-84267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84268/", + "id": 84268, + "name": "Deadpool vs. Thanos", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-thanos/4050-84268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84272/", + "id": 84272, + "name": "Disney Kingdoms: Figment 2", + "site_detail_url": "https://comicvine.gamespot.com/disney-kingdoms-figment-2/4050-84272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84288/", + "id": 84288, + "name": "Mockingbird: S.H.I.E.L.D. 50th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird-shield-50th-anniversary/4050-84288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84312/", + "id": 84312, + "name": "True Believers: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel/4050-84312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84321/", + "id": 84321, + "name": "Miracleman by Gaiman and Buckingham", + "site_detail_url": "https://comicvine.gamespot.com/miracleman-by-gaiman-and-buckingham/4050-84321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84323/", + "id": 84323, + "name": "True Believers: Spider-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spidergwen/4050-84323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84326/", + "id": 84326, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-84326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84419/", + "id": 84419, + "name": "The Dark Tower: The Drawing of the Three - House of Cards", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-house-of-c/4050-84419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84432/", + "id": 84432, + "name": "Journey to Star Wars: The Force Awakens - Shattered Empire", + "site_detail_url": "https://comicvine.gamespot.com/journey-to-star-wars-the-force-awakens-shattered-e/4050-84432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84435/", + "id": 84435, + "name": "Luke Cage: Second Chances", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-second-chances/4050-84435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84439/", + "id": 84439, + "name": "Quake: S.H.I.E.L.D. 50th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/quake-shield-50th-anniversary/4050-84439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84443/", + "id": 84443, + "name": "Superior Iron Man: Stark Contrast", + "site_detail_url": "https://comicvine.gamespot.com/superior-iron-man-stark-contrast/4050-84443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84473/", + "id": 84473, + "name": "True Believers: Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow/4050-84473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84474/", + "id": 84474, + "name": "True Believers: Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ms-marvel/4050-84474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84508/", + "id": 84508, + "name": "Campus Humor", + "site_detail_url": "https://comicvine.gamespot.com/campus-humor/4050-84508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84564/", + "id": 84564, + "name": "A-Force Presents", + "site_detail_url": "https://comicvine.gamespot.com/aforce-presents/4050-84564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84565/", + "id": 84565, + "name": "Agent Carter: S.H.I.E.L.D. 50th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/agent-carter-shield-50th-anniversary/4050-84565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84592/", + "id": 84592, + "name": "Incredible Hulk Epic Collection: Ghosts of the Past", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-ghosts-of-the-past/4050-84592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84636/", + "id": 84636, + "name": "True Believers: She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-shehulk/4050-84636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84637/", + "id": 84637, + "name": "True Believers: Thor", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-thor/4050-84637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84745/", + "id": 84745, + "name": "The Amazing Spider-Man: Spiral", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-spiral/4050-84745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84752/", + "id": 84752, + "name": "Black Widow: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-last-days/4050-84752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84755/", + "id": 84755, + "name": "Deathlok: Man Versus Machine", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-man-versus-machine/4050-84755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84762/", + "id": 84762, + "name": "Fury: S.H.I.E.L.D. 50th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/fury-shield-50th-anniversary/4050-84762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84768/", + "id": 84768, + "name": "Howard the Duck: What the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-what-the-duck/4050-84768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84770/", + "id": 84770, + "name": "Loki: Agent of Asgard: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard-last-days/4050-84770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84778/", + "id": 84778, + "name": "The Punisher: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-last-days/4050-84778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84784/", + "id": 84784, + "name": "True Believers: Silk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-silk/4050-84784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84927/", + "id": 84927, + "name": "True Believers: Princess Leia", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-princess-leia/4050-84927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84956/", + "id": 84956, + "name": "The Cavalry: S.H.I.E.L.D. 50th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/the-cavalry-shield-50th-anniversary/4050-84956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84969/", + "id": 84969, + "name": "Greenberg the Vampire", + "site_detail_url": "https://comicvine.gamespot.com/greenberg-the-vampire/4050-84969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84970/", + "id": 84970, + "name": "Guardians of the Galaxy: Through the Looking Glass", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-through-the-looking-glass/4050-84970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84984/", + "id": 84984, + "name": "The Monster of Frankenstein", + "site_detail_url": "https://comicvine.gamespot.com/the-monster-of-frankenstein/4050-84984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84985/", + "id": 84985, + "name": "Moon Knight: In the Night", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-in-the-night/4050-84985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85009/", + "id": 85009, + "name": "True Believers: Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spiderwoman/4050-85009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85010/", + "id": 85010, + "name": "True Believers: The Unbeatable Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-unbeatable-squirrel-girl/4050-85010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85052/", + "id": 85052, + "name": "S.H.I.E.L.D. by Lee & Kirby: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/shield-by-lee-kirby-the-complete-collection/4050-85052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85075/", + "id": 85075, + "name": "All-New All-Different Marvel Point One", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-point-one/4050-85075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85076/", + "id": 85076, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman/4050-85076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85077/", + "id": 85077, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-85077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85078/", + "id": 85078, + "name": "Avengers: No More Bullying", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-more-bullying/4050-85078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85086/", + "id": 85086, + "name": "Color Your Own Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-age-of-ultron/4050-85086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85088/", + "id": 85088, + "name": "Contest of Champions", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions/4050-85088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85094/", + "id": 85094, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4050-85094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85095/", + "id": 85095, + "name": "Doctor Strange: Don't Pay the Ferryman", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-dont-pay-the-ferryman/4050-85095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85110/", + "id": 85110, + "name": "Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man/4050-85110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85116/", + "id": 85116, + "name": "The Marvel Legacy of Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-legacy-of-jack-kirby/4050-85116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85118/", + "id": 85118, + "name": "Marvel Super Hero Contest of Champions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-contest-of-champions/4050-85118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85119/", + "id": 85119, + "name": "Marvel Super Hero Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-spectacular/4050-85119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85120/", + "id": 85120, + "name": "Marvel Universe Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-guardians-of-the-galaxy/4050-85120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85121/", + "id": 85121, + "name": "Max Ride: First Flight", + "site_detail_url": "https://comicvine.gamespot.com/max-ride-first-flight/4050-85121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85133/", + "id": 85133, + "name": "S.H.I.E.L.D.: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/shield-the-complete-collection/4050-85133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85137/", + "id": 85137, + "name": "Star Wars: Darth Vader - Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-vader/4050-85137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85138/", + "id": 85138, + "name": "Star Wars: The Marvel Covers", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-marvel-covers/4050-85138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85139/", + "id": 85139, + "name": "Star Wars: Skywalker Strikes", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-skywalker-strikes/4050-85139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85148/", + "id": 85148, + "name": "Werewolf By Night Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-omnibus/4050-85148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85150/", + "id": 85150, + "name": "What If? Infinity - Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-inhumans/4050-85150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85151/", + "id": 85151, + "name": "What If? Infinity - Thanos", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-thanos/4050-85151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85178/", + "id": 85178, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4050-85178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85271/", + "id": 85271, + "name": "Big Thunder Mountain Railroad", + "site_detail_url": "https://comicvine.gamespot.com/big-thunder-mountain-railroad/4050-85271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85274/", + "id": 85274, + "name": "Captain America: Sam Wilson", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson/4050-85274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85275/", + "id": 85275, + "name": "Chewbacca", + "site_detail_url": "https://comicvine.gamespot.com/chewbacca/4050-85275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85280/", + "id": 85280, + "name": "Damage Control: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/damage-control-the-complete-collection/4050-85280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85290/", + "id": 85290, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-85290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85293/", + "id": 85293, + "name": "The Infinity War Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-war-aftermath/4050-85293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85298/", + "id": 85298, + "name": "Magneto: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/magneto-last-days/4050-85298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85299/", + "id": 85299, + "name": "Man-Thing by Steve Gerber: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/manthing-by-steve-gerber-the-complete-collection/4050-85299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85301/", + "id": 85301, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4050-85301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85311/", + "id": 85311, + "name": "Spider-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen/4050-85311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85312/", + "id": 85312, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099/4050-85312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85318/", + "id": 85318, + "name": "Uncanny Avengers", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers/4050-85318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85320/", + "id": 85320, + "name": "What If? Infinity - X-Men", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-xmen/4050-85320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85321/", + "id": 85321, + "name": "X-Men: Age of Apocalypse: Reign", + "site_detail_url": "https://comicvine.gamespot.com/x-men-age-of-apocalypse-reign/4050-85321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85342/", + "id": 85342, + "name": "All-New, All-Different Marvel October Previews", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-october-previews/4050-85342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85402/", + "id": 85402, + "name": "Deadpool & Cable: Split Second Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-cable-split-second-infinite-comic/4050-85402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85419/", + "id": 85419, + "name": "Secret Wars: Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-agents-of-atlas/4050-85419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85420/", + "id": 85420, + "name": "The Astonishing Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-antman/4050-85420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85423/", + "id": 85423, + "name": "Captain America and the Mighty Avengers: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-mighty-avengers-last-days/4050-85423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85437/", + "id": 85437, + "name": "Karnak", + "site_detail_url": "https://comicvine.gamespot.com/karnak/4050-85437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85440/", + "id": 85440, + "name": "Moon Knight Epic Collection: Shadows of the Moon", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-epic-collection-shadows-of-the-moon/4050-85440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85456/", + "id": 85456, + "name": "What If? Infinity - Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-guardians-of-the-galaxy/4050-85456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85501/", + "id": 85501, + "name": "The Villainy of Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/the-villainy-of-doctor-doom/4050-85501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85503/", + "id": 85503, + "name": "Stoker's Dracula", + "site_detail_url": "https://comicvine.gamespot.com/stokers-dracula/4050-85503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85549/", + "id": 85549, + "name": "Angela, Queen of Hel", + "site_detail_url": "https://comicvine.gamespot.com/angela-queen-of-hel/4050-85549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85553/", + "id": 85553, + "name": "Avengers: Ultron Forever", + "site_detail_url": "https://comicvine.gamespot.com/avengers-ultron-forever/4050-85553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85568/", + "id": 85568, + "name": "Guardians Team-Up: Guardians Assemble", + "site_detail_url": "https://comicvine.gamespot.com/guardians-teamup-guardians-assemble/4050-85568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85569/", + "id": 85569, + "name": "Guidebook To the Marvel Cinematic Universe - Marvel's Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-85569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85573/", + "id": 85573, + "name": "Howling Commandos of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/howling-commandos-of-shield/4050-85573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85582/", + "id": 85582, + "name": "Nova: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/nova-homecoming/4050-85582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85590/", + "id": 85590, + "name": "Secret Wars: Official Guide To the Marvel Multiverse", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-official-guide-to-the-marvel-multivers/4050-85590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85601/", + "id": 85601, + "name": "The Unbeatable Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl/4050-85601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85606/", + "id": 85606, + "name": "What If? Infinity - Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity-dark-reign/4050-85606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85608/", + "id": 85608, + "name": "Hawkeye by Matt Fraction And David Aja Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-by-matt-fraction-and-david-aja-omnibus/4050-85608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85609/", + "id": 85609, + "name": "The Order: California Dreaming", + "site_detail_url": "https://comicvine.gamespot.com/the-order-california-dreaming/4050-85609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85613/", + "id": 85613, + "name": "Bucky Barnes: The Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/bucky-barnes-the-winter-soldier/4050-85613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85654/", + "id": 85654, + "name": "Silk: The Life and Times of Cindy Moon", + "site_detail_url": "https://comicvine.gamespot.com/silk-the-life-and-times-of-cindy-moon/4050-85654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85658/", + "id": 85658, + "name": "The Punisher: An Eye for an Eye", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-an-eye-for-an-eye/4050-85658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85672/", + "id": 85672, + "name": "Doctor Strange: The Oath: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-oath-halloween-comicfest/4050-85672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85679/", + "id": 85679, + "name": "Marvel Universe Ultimate Spider-Man: Web Warriors/Avengers Assemble Season 2: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-web-warriorsave/4050-85679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85718/", + "id": 85718, + "name": "Captain America Featuring Road Force", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-featuring-road-force/4050-85718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85735/", + "id": 85735, + "name": "Age of Apocalypse: Warzones", + "site_detail_url": "https://comicvine.gamespot.com/age-of-apocalypse-warzones/4050-85735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85738/", + "id": 85738, + "name": "Avengers Vs Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-infinity/4050-85738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85741/", + "id": 85741, + "name": "Blade: Undead By Daylight", + "site_detail_url": "https://comicvine.gamespot.com/blade-undead-by-daylight/4050-85741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85750/", + "id": 85750, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-85750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85753/", + "id": 85753, + "name": "Drax", + "site_detail_url": "https://comicvine.gamespot.com/drax/4050-85753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85756/", + "id": 85756, + "name": "Extraordinary X-Men", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-xmen/4050-85756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85758/", + "id": 85758, + "name": "George Romero's Empire of the Dead: Act Three", + "site_detail_url": "https://comicvine.gamespot.com/george-romeros-empire-of-the-dead-act-three/4050-85758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85759/", + "id": 85759, + "name": "Guardians of the Galaxy Solo Classic Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-solo-classic-omnibus/4050-85759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85760/", + "id": 85760, + "name": "Hawkeye: All-New Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-allnew-hawkeye/4050-85760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85761/", + "id": 85761, + "name": "Hercules", + "site_detail_url": "https://comicvine.gamespot.com/hercules/4050-85761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85762/", + "id": 85762, + "name": "Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck/4050-85762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85773/", + "id": 85773, + "name": "Max Ride: Ultimate Flight", + "site_detail_url": "https://comicvine.gamespot.com/max-ride-ultimate-flight/4050-85773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85778/", + "id": 85778, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-85778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85787/", + "id": 85787, + "name": "Star Wars: Kanan - The Last Padawan", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-kanan-the-last-padawan/4050-85787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85788/", + "id": 85788, + "name": "Star Wars: Princess Leia", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-princess-leia/4050-85788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85793/", + "id": 85793, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4050-85793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85852/", + "id": 85852, + "name": "Star Wars Previews", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-previews/4050-85852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85877/", + "id": 85877, + "name": "Marvel 1602: New World", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1602-new-world/4050-85877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85926/", + "id": 85926, + "name": "Age of Ultron vs. Marvel Zombies", + "site_detail_url": "https://comicvine.gamespot.com/age-of-ultron-vs-marvel-zombies/4050-85926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85928/", + "id": 85928, + "name": "All-New, All-Different Avengers", + "site_detail_url": "https://comicvine.gamespot.com/all-new-all-different-avengers/4050-85928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85929/", + "id": 85929, + "name": "All-New Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/allnew-hawkeye/4050-85929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85930/", + "id": 85930, + "name": "All-New Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine/4050-85930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85938/", + "id": 85938, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/carnage/4050-85938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85951/", + "id": 85951, + "name": "Illuminati", + "site_detail_url": "https://comicvine.gamespot.com/illuminati/4050-85951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85966/", + "id": 85966, + "name": "Star Wars Episode VI: Return of the Jedi", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-episode-vi-return-of-the-jedi/4050-85966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85969/", + "id": 85969, + "name": "Thanos: Cosmic Powers", + "site_detail_url": "https://comicvine.gamespot.com/thanos-cosmic-powers/4050-85969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85972/", + "id": 85972, + "name": "Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/ultimates/4050-85972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85976/", + "id": 85976, + "name": "Web Warriors", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors/4050-85976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86002/", + "id": 86002, + "name": "All-New, All-Different Marvel November Previews", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-november-previews/4050-86002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86011/", + "id": 86011, + "name": "Marvel Movie Spotlight Featuring Raiders of the Lost Ark", + "site_detail_url": "https://comicvine.gamespot.com/marvel-movie-spotlight-featuring-raiders-of-the-lo/4050-86011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86032/", + "id": 86032, + "name": "Marvel Masterworks: Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-spiderwoman/4050-86032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86061/", + "id": 86061, + "name": "Spider-Island: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/spiderisland-warzones/4050-86061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86089/", + "id": 86089, + "name": "A-Force: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/aforce-warzones/4050-86089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86096/", + "id": 86096, + "name": "Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/black-knight/4050-86096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86097/", + "id": 86097, + "name": "Captain Marvel & The Carol Corps: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-and-the-carol-corps-warzones/4050-86097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86102/", + "id": 86102, + "name": "Guardians of Knowhere: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-knowhere-warzones/4050-86102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86107/", + "id": 86107, + "name": "Star Wars: Journey to Star Wars: The Force Awakens - Shattered Empire", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-journey-to-star-wars-the-force-awakens-s/4050-86107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86108/", + "id": 86108, + "name": "Korvac Saga: Wazones!", + "site_detail_url": "https://comicvine.gamespot.com/korvac-saga-wazones/4050-86108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86112/", + "id": 86112, + "name": "Marvel Zombies: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-battleworld/4050-86112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86113/", + "id": 86113, + "name": "Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor/4050-86113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86114/", + "id": 86114, + "name": "Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel/4050-86114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86115/", + "id": 86115, + "name": "Ms. Marvel: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-last-days/4050-86115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86121/", + "id": 86121, + "name": "Secret Wars 2099: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-2099-warzones/4050-86121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86122/", + "id": 86122, + "name": "Secret Wars, Too", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-too/4050-86122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86124/", + "id": 86124, + "name": "Silver Surfer Epic Collection: Freedom", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-freedom/4050-86124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86127/", + "id": 86127, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-86127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86128/", + "id": 86128, + "name": "Star-Lord", + "site_detail_url": "https://comicvine.gamespot.com/star-lord/4050-86128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86131/", + "id": 86131, + "name": "Star Wars: Vader Down", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-vader-down/4050-86131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86135/", + "id": 86135, + "name": "Uncanny Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-annual/4050-86135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86233/", + "id": 86233, + "name": "Guidebook To the Marvel Cinematic Universe - Incredible Hulk/Iron Man 2", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-incredi/4050-86233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86244/", + "id": 86244, + "name": "Marvel Universe Ultimate Spider-Man Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-spider-verse/4050-86244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86245/", + "id": 86245, + "name": "Moon Girl and Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur/4050-86245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86251/", + "id": 86251, + "name": "Silk", + "site_detail_url": "https://comicvine.gamespot.com/silk/4050-86251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86263/", + "id": 86263, + "name": "Venom: Space Knight", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight/4050-86263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86279/", + "id": 86279, + "name": "Marvel Universe Guardians of the Galaxy Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-guardians-of-the-galaxy-infinite-c/4050-86279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86288/", + "id": 86288, + "name": "Dead Island", + "site_detail_url": "https://comicvine.gamespot.com/dead-island/4050-86288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86310/", + "id": 86310, + "name": "Daredevil: The Autobiography of Matt Murdock", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-autobiography-of-matt-murdock/4050-86310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86311/", + "id": 86311, + "name": "Deadpool vs. Thanos", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-thanos/4050-86311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86313/", + "id": 86313, + "name": "Marvel 1872: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-1872-warzones/4050-86313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86314/", + "id": 86314, + "name": "Spider-Gwen : Most Wanted?", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-most-wanted/4050-86314/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86315/", + "id": 86315, + "name": "Star-Lord and Kitty Pryde: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/starlord-and-kitty-pryde-battleworld/4050-86315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86316/", + "id": 86316, + "name": "The Unbeatable Squirrel Girl: Squirrel You Know It's True", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-squirrel-you-know-its/4050-86316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86317/", + "id": 86317, + "name": "Wolverine: Old Man Logan: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-warzones/4050-86317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86318/", + "id": 86318, + "name": "X-Men: Years of Future Past: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/x-men-years-of-future-past-warzones/4050-86318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86333/", + "id": 86333, + "name": "All-New Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/allnew-inhumans/4050-86333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86334/", + "id": 86334, + "name": "All-New X-Men", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen/4050-86334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86343/", + "id": 86343, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-86343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86359/", + "id": 86359, + "name": "Guardians of Infinity", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-infinity/4050-86359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86389/", + "id": 86389, + "name": "Red Wolf", + "site_detail_url": "https://comicvine.gamespot.com/red-wolf/4050-86389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86398/", + "id": 86398, + "name": "Spider-Verse: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/spiderverse-warzones/4050-86398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86399/", + "id": 86399, + "name": "Spidey", + "site_detail_url": "https://comicvine.gamespot.com/spidey/4050-86399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86408/", + "id": 86408, + "name": "The Totally Awesome Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-totally-awesome-hulk/4050-86408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86409/", + "id": 86409, + "name": "Uncanny X-Men: Storyville", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-storyville/4050-86409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86412/", + "id": 86412, + "name": "Wolverine Epic Collection: The Dying Game", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-the-dying-game/4050-86412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86533/", + "id": 86533, + "name": "Gwenpool Special", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-special/4050-86533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86536/", + "id": 86536, + "name": "The Infinity Gauntlet: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-warzones/4050-86536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86551/", + "id": 86551, + "name": "Runaways: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/runaways-battleworld/4050-86551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86552/", + "id": 86552, + "name": "Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch/4050-86552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86554/", + "id": 86554, + "name": "Squadron Sinister: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/squadron-sinister-warzones/4050-86554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86555/", + "id": 86555, + "name": "Star Wars Annual", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-annual/4050-86555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86579/", + "id": 86579, + "name": "Star Wars Movie Sampler", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-movie-sampler/4050-86579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86675/", + "id": 86675, + "name": "The Amazing Spider-Man: Renew Your Vows: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-renew-your-vows-warzones/4050-86675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86684/", + "id": 86684, + "name": "Darth Vader Annual", + "site_detail_url": "https://comicvine.gamespot.com/darth-vader-annual/4050-86684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86694/", + "id": 86694, + "name": "Inferno: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/inferno-warzones/4050-86694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86705/", + "id": 86705, + "name": "M.O.D.O.K. Assassin", + "site_detail_url": "https://comicvine.gamespot.com/modok-assassin/4050-86705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86706/", + "id": 86706, + "name": "Marvel's Captain America: Civil War Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude/4050-86706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86716/", + "id": 86716, + "name": "Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme/4050-86716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86717/", + "id": 86717, + "name": "Starbrand & Nightmask", + "site_detail_url": "https://comicvine.gamespot.com/starbrand-nightmask/4050-86717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86719/", + "id": 86719, + "name": "Star Wars Legends Epic Collection: Infinities", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-infinities/4050-86719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86723/", + "id": 86723, + "name": "Weirdworld", + "site_detail_url": "https://comicvine.gamespot.com/weirdworld/4050-86723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86724/", + "id": 86724, + "name": "Weirdworld: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/weirdworld-warzones/4050-86724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86773/", + "id": 86773, + "name": "Future Imperfect: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/future-imperfect-warzones/4050-86773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86774/", + "id": 86774, + "name": "Guidebook To the Marvel Cinematic Universe - Marvel's Thor", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-86774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86778/", + "id": 86778, + "name": "Master of Kung-Fu: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kungfu-battleworld/4050-86778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86780/", + "id": 86780, + "name": "Patsy Walker, A.K.A. Hellcat!", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-aka-hellcat/4050-86780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86796/", + "id": 86796, + "name": "Where Monsters Dwell: The Phantom Eagle Flies the Savage Skies", + "site_detail_url": "https://comicvine.gamespot.com/where-monsters-dwell-the-phantom-eagle-flies-the-s/4050-86796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86816/", + "id": 86816, + "name": "Guidebook to the Marvel Cinematic Universe: Marvel's Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-86816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86817/", + "id": 86817, + "name": "Guidebook to the Marvel Cinematic Universe: Marvel's Iron Man 2", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-86817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86860/", + "id": 86860, + "name": "All-New, All-Different Marvel December/January Previews", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-decemberjanuary-preview/4050-86860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86965/", + "id": 86965, + "name": "Deadpool & Cable: Split Second", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-cable-split-second/4050-86965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86973/", + "id": 86973, + "name": "Hail Hydra: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/hail-hydra-warzones/4050-86973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86986/", + "id": 86986, + "name": "Obi-Wan and Anakin", + "site_detail_url": "https://comicvine.gamespot.com/obi-wan-and-anakin/4050-86986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86987/", + "id": 86987, + "name": "Planet Hulk: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/planet-hulk-warzones/4050-86987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-86989/", + "id": 86989, + "name": "Rocket Raccoon & Groot", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-and-groot/4050-86989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87152/", + "id": 87152, + "name": "A-Force", + "site_detail_url": "https://comicvine.gamespot.com/a-force/4050-87152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87154/", + "id": 87154, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman/4050-87154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87159/", + "id": 87159, + "name": "Color Your Own Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-deadpool/4050-87159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87160/", + "id": 87160, + "name": "Deadpool Classic Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-classic-omnibus/4050-87160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87161/", + "id": 87161, + "name": "Deadpool's Secret Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/deadpools-secret-secret-wars/4050-87161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87171/", + "id": 87171, + "name": "Marvel Universe Ultimate Spider-Man and Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-and-avengers/4050-87171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87179/", + "id": 87179, + "name": "Silver Surfer: Last Days", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-last-days/4050-87179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87182/", + "id": 87182, + "name": "Spider-Man/Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-deadpool/4050-87182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87183/", + "id": 87183, + "name": "Star Wars: Darth Vader - Shadows and Secrets", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-shadows-and-secrets/4050-87183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87187/", + "id": 87187, + "name": "True Believers: Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-deadpool/4050-87187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87188/", + "id": 87188, + "name": "True Believers: Deadpool Origins", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-deadpool-origins/4050-87188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87189/", + "id": 87189, + "name": "Ultimate End", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-end/4050-87189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87190/", + "id": 87190, + "name": "Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen/4050-87190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87194/", + "id": 87194, + "name": "X-Men: Worst X-Man Ever", + "site_detail_url": "https://comicvine.gamespot.com/xmen-worst-xman-ever/4050-87194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87217/", + "id": 87217, + "name": "Marvel: The Hip-Hop Covers Sampler", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-hiphop-covers-sampler/4050-87217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87218/", + "id": 87218, + "name": "Marvel Universe Avengers Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-infinite-comic/4050-87218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87258/", + "id": 87258, + "name": "Cartoons - For Men Only", + "site_detail_url": "https://comicvine.gamespot.com/cartoons-for-men-only/4050-87258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87304/", + "id": 87304, + "name": "Agents of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield/4050-87304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87309/", + "id": 87309, + "name": "Daredevil Epic Collection: A Touch of Typhoid", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-a-touch-of-typhoid/4050-87309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87310/", + "id": 87310, + "name": "Deadpool Flashbacks", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-flashbacks/4050-87310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87316/", + "id": 87316, + "name": "Guardians Team-Up: Unlikely Story", + "site_detail_url": "https://comicvine.gamespot.com/guardians-teamup-unlikely-story/4050-87316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87321/", + "id": 87321, + "name": "House of M: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/house-of-m-warzones/4050-87321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87339/", + "id": 87339, + "name": "Star Wars: Showdown On the Smuggler's Moon", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-showdown-on-the-smugglers-moon/4050-87339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87340/", + "id": 87340, + "name": "True Believers: Detective Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-detective-deadpool/4050-87340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87341/", + "id": 87341, + "name": "True Believers: Uncanny Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-uncanny-deadpool/4050-87341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87351/", + "id": 87351, + "name": "S.H.I.E.L.D.: Secret History", + "site_detail_url": "https://comicvine.gamespot.com/shield-secret-history/4050-87351/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87359/", + "id": 87359, + "name": "Cartoon Laughs", + "site_detail_url": "https://comicvine.gamespot.com/cartoon-laughs/4050-87359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87428/", + "id": 87428, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-87428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87441/", + "id": 87441, + "name": "Marvel Frontier Comics: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-frontier-comics-the-complete-collection/4050-87441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87449/", + "id": 87449, + "name": "Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer/4050-87449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87450/", + "id": 87450, + "name": "Star Wars: Lando", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-lando/4050-87450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87453/", + "id": 87453, + "name": "True Believers: The Groovy Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-groovy-deadpool/4050-87453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87454/", + "id": 87454, + "name": "True Believers: The Meaty Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-meaty-deadpool/4050-87454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87455/", + "id": 87455, + "name": "True Believers: The Wedding of Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-wedding-of-deadpool/4050-87455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87458/", + "id": 87458, + "name": "X-Men: Inferno", + "site_detail_url": "https://comicvine.gamespot.com/xmen-inferno/4050-87458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87462/", + "id": 87462, + "name": "Spider-Man: Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-silver-surfer/4050-87462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87476/", + "id": 87476, + "name": "Amazing Spider-Man/Inhumans/All-New Captain America: Inhuman Error", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spidermaninhumansallnew-captain-america-in/4050-87476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87477/", + "id": 87477, + "name": "Amazing Spider-Man & Silk: Spider(Fly) Effect Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-silk-spiderfly-effect-infinite-c/4050-87477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87522/", + "id": 87522, + "name": "X-Men Epic Collection: The Gift", + "site_detail_url": "https://comicvine.gamespot.com/xmen-epic-collection-the-gift/4050-87522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87545/", + "id": 87545, + "name": "Ghost Racers", + "site_detail_url": "https://comicvine.gamespot.com/ghost-racers/4050-87545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87569/", + "id": 87569, + "name": "X-Men: Age of Apocalypse: Omega", + "site_detail_url": "https://comicvine.gamespot.com/xmen-age-of-apocalypse-omega/4050-87569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87596/", + "id": 87596, + "name": "Armor Wars: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/armor-wars-warzones/4050-87596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87597/", + "id": 87597, + "name": "Avengers: The Death of Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-death-of-mockingbird/4050-87597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87616/", + "id": 87616, + "name": "Groot", + "site_detail_url": "https://comicvine.gamespot.com/groot/4050-87616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87617/", + "id": 87617, + "name": "Guidebook To the Marvel Cinematic Universe – Marvel's Captain America: The First Avenger", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-87617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87619/", + "id": 87619, + "name": "Inhumans: Attilan Rising", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-attilan-rising/4050-87619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87624/", + "id": 87624, + "name": "Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan/4050-87624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87629/", + "id": 87629, + "name": "S.H.I.E.L.D.: The Man Called D.E.A.T.H.", + "site_detail_url": "https://comicvine.gamespot.com/shield-the-man-called-death/4050-87629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87633/", + "id": 87633, + "name": "Spider-Woman: New Duds", + "site_detail_url": "https://comicvine.gamespot.com/spiderwoman-new-duds/4050-87633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87640/", + "id": 87640, + "name": "What If? Infinity", + "site_detail_url": "https://comicvine.gamespot.com/what-if-infinity/4050-87640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87641/", + "id": 87641, + "name": "X-Men: Colossus: God's Country", + "site_detail_url": "https://comicvine.gamespot.com/xmen-colossus-gods-country/4050-87641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87684/", + "id": 87684, + "name": "True Believers: Deadpool the Musical!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-deadpool-the-musical/4050-87684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87685/", + "id": 87685, + "name": "True Believers: Deadpool the Variants", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-deadpool-the-variants/4050-87685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87686/", + "id": 87686, + "name": "True Believers: Evil Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-evil-deadpool/4050-87686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87792/", + "id": 87792, + "name": "Captain America: The 75th Anniversary Vibranium Collection Slipcase", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-75th-anniversary-vibranium-col/4050-87792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87793/", + "id": 87793, + "name": "Deadpool & The Mercs For Money", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-mercs-for-money/4050-87793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87798/", + "id": 87798, + "name": "Giant-Size Little Marvel: AvX", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvel-avx/4050-87798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87808/", + "id": 87808, + "name": "Marvel Universe Deadpool & Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-deadpool-wolverine/4050-87808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87820/", + "id": 87820, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4050-87820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87822/", + "id": 87822, + "name": "The Superior Foes of Spider-Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-foes-of-spider-man-omnibus/4050-87822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87825/", + "id": 87825, + "name": "Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen/4050-87825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87930/", + "id": 87930, + "name": "1602 Witch Hunter Angela: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/1602-witch-hunter-angela-warzones/4050-87930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87931/", + "id": 87931, + "name": "The Amazing Spider-Man Epic Collection: Return of the Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-return-of-t/4050-87931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87944/", + "id": 87944, + "name": "Deadpool Firsts", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-firsts/4050-87944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87955/", + "id": 87955, + "name": "Marvel Universe Captain America: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-captain-america-civil-war/4050-87955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87958/", + "id": 87958, + "name": "Red Skull: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/red-skull-battleworld/4050-87958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87965/", + "id": 87965, + "name": "Secret Wars Journal/Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-journalbattleworld/4050-87965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87977/", + "id": 87977, + "name": "X-Men: Age of Apocalypse: Dawn", + "site_detail_url": "https://comicvine.gamespot.com/xmen-age-of-apocalypse-dawn/4050-87977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88059/", + "id": 88059, + "name": "Marvel New Stories Start Now! Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-new-stories-start-now-previews/4050-88059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88060/", + "id": 88060, + "name": "Marvel's Captain America: Civil War Prelude Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude-infinite/4050-88060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88063/", + "id": 88063, + "name": "A Year Of Marvels: February Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-february-infinite-comic/4050-88063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88100/", + "id": 88100, + "name": "Nomextra and Kevlor", + "site_detail_url": "https://comicvine.gamespot.com/nomextra-and-kevlor/4050-88100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88187/", + "id": 88187, + "name": "Avengers Standoff: Welcome to Pleasant Hill", + "site_detail_url": "https://comicvine.gamespot.com/avengers-standoff-welcome-to-pleasant-hill/4050-88187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88195/", + "id": 88195, + "name": "Captain America: White", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-white/4050-88195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88197/", + "id": 88197, + "name": "Civil War: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-warzones/4050-88197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88204/", + "id": 88204, + "name": "E Is For Extinction: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/e-is-for-extinction-warzones/4050-88204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88214/", + "id": 88214, + "name": "Power Man and Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist/4050-88214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88216/", + "id": 88216, + "name": "Punisher vs. the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/punisher-vs-the-marvel-universe/4050-88216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88224/", + "id": 88224, + "name": "X-Men: Gambit: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gambit-the-complete-collection/4050-88224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88225/", + "id": 88225, + "name": "X-Tinction Agenda: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/xtinction-agenda-warzones/4050-88225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88386/", + "id": 88386, + "name": "Guidebook To the Marvel Cinematic Universe – Marvel's The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-88386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88397/", + "id": 88397, + "name": "Marvel Masterworks: The Champions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-champions/4050-88397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88405/", + "id": 88405, + "name": "Siege: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/siege-battleworld/4050-88405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88406/", + "id": 88406, + "name": "Star Wars: Chewbacca", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-chewbacca/4050-88406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88473/", + "id": 88473, + "name": "Mystic: The Tenth Apprentice", + "site_detail_url": "https://comicvine.gamespot.com/mystic-the-tenth-apprentice/4050-88473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88503/", + "id": 88503, + "name": "Wheely Nutz", + "site_detail_url": "https://comicvine.gamespot.com/wheely-nutz/4050-88503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88519/", + "id": 88519, + "name": "GoodNites Presents: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/goodnites-presents-spider-man/4050-88519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88529/", + "id": 88529, + "name": "Red Hulk: Mayan Rule", + "site_detail_url": "https://comicvine.gamespot.com/red-hulk-mayan-rule/4050-88529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88530/", + "id": 88530, + "name": "Ruse: The Victorian Guide To Murder", + "site_detail_url": "https://comicvine.gamespot.com/ruse-the-victorian-guide-to-murder/4050-88530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88531/", + "id": 88531, + "name": "Sigil: Out Of Time", + "site_detail_url": "https://comicvine.gamespot.com/sigil-out-of-time/4050-88531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88532/", + "id": 88532, + "name": "Thor: The Reigning", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-reigning/4050-88532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88547/", + "id": 88547, + "name": "Amazing Spider-Man & Silk: the Spider(Fly) Effect", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-silk-the-spiderfly-effect/4050-88547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88551/", + "id": 88551, + "name": "Avengers Standoff: Assault On Pleasant Hill Alpha", + "site_detail_url": "https://comicvine.gamespot.com/avengers-standoff-assault-on-pleasant-hill-alpha/4050-88551/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88554/", + "id": 88554, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4050-88554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88565/", + "id": 88565, + "name": "Inhuman", + "site_detail_url": "https://comicvine.gamespot.com/inhuman/4050-88565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88573/", + "id": 88573, + "name": "Marvel Universe Avengers Assemble Season 2: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-civil-w/4050-88573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88574/", + "id": 88574, + "name": "Miracleman by Gaiman & Buckingham: The Golden Age", + "site_detail_url": "https://comicvine.gamespot.com/miracleman-by-gaiman-buckingham-the-golden-age/4050-88574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88623/", + "id": 88623, + "name": "Daredevil/Punisher: Seventh Circle Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/daredevilpunisher-seventh-circle-infinite-comic/4050-88623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88709/", + "id": 88709, + "name": "X-Men: Manifest Destiny", + "site_detail_url": "https://comicvine.gamespot.com/xmen-manifest-destiny/4050-88709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88735/", + "id": 88735, + "name": "Captain America: Marvel Knights", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-marvel-knights/4050-88735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88736/", + "id": 88736, + "name": "Civil War: Captain America/Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-captain-americairon-man/4050-88736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88756/", + "id": 88756, + "name": "Haunted Mansion", + "site_detail_url": "https://comicvine.gamespot.com/haunted-mansion/4050-88756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88759/", + "id": 88759, + "name": "The Infinity Entity", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-entity/4050-88759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88764/", + "id": 88764, + "name": "Mockingbird", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird/4050-88764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88780/", + "id": 88780, + "name": "Thor Corps", + "site_detail_url": "https://comicvine.gamespot.com/thor-corps/4050-88780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88781/", + "id": 88781, + "name": "Thors: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/thors-battleworld/4050-88781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88816/", + "id": 88816, + "name": "X-Men '92: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/xmen-92-warzones/4050-88816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88817/", + "id": 88817, + "name": "A Year of Marvels: March Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-march-infinite-comic/4050-88817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88843/", + "id": 88843, + "name": "Casper", + "site_detail_url": "https://comicvine.gamespot.com/casper/4050-88843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88919/", + "id": 88919, + "name": "Dark Tower: The Drawing of the Three: Lady of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-drawing-of-the-three-lady-of-shadow/4050-88919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88934/", + "id": 88934, + "name": "International Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/international-iron-man/4050-88934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88953/", + "id": 88953, + "name": "Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars/4050-88953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89048/", + "id": 89048, + "name": "Captain America and The Falcon by Priest: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-falcon-by-priest-the-compl/4050-89048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89079/", + "id": 89079, + "name": "Doctor Strange & Doctor Doom: Triumph & Torment", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-doctor-doom-triumph-and-torment/4050-89079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89149/", + "id": 89149, + "name": "Civil War: Heroes for Hire/Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-heroes-for-hirethunderbolts/4050-89149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89163/", + "id": 89163, + "name": "Hyperion", + "site_detail_url": "https://comicvine.gamespot.com/hyperion/4050-89163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89188/", + "id": 89188, + "name": "The Infinity Watch", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-watch/4050-89188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89208/", + "id": 89208, + "name": "Marvel: Avengers Alliance", + "site_detail_url": "https://comicvine.gamespot.com/marvel-avengers-alliance/4050-89208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89255/", + "id": 89255, + "name": "All-New, All-Different Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-universe/4050-89255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89261/", + "id": 89261, + "name": "Figment 2: Legacy of Imagination", + "site_detail_url": "https://comicvine.gamespot.com/figment-2-legacy-of-imagination/4050-89261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89265/", + "id": 89265, + "name": "Iron Man Epic Collection: Duel of Iron", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-duel-of-iron/4050-89265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89268/", + "id": 89268, + "name": "Marvel Universe Ultimate Spider-Man: Contest of Champions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-contest-of-cha/4050-89268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89281/", + "id": 89281, + "name": "Uncanny Inhumans: Time Crush", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans-time-crush/4050-89281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89284/", + "id": 89284, + "name": "X-Men '92", + "site_detail_url": "https://comicvine.gamespot.com/xmen-92/4050-89284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89302/", + "id": 89302, + "name": "Marvel Universe Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-guardians-of-the-galaxy/4050-89302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89316/", + "id": 89316, + "name": "A Year of Marvels: April Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-april-infinite-comic/4050-89316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89344/", + "id": 89344, + "name": "Amadeus Cho: Genius At Work", + "site_detail_url": "https://comicvine.gamespot.com/amadeus-cho-genius-at-work/4050-89344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89345/", + "id": 89345, + "name": "Amazing Spider-Man: Worldwide", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-worldwide/4050-89345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89350/", + "id": 89350, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-89350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89355/", + "id": 89355, + "name": "Color Your Own Civil War", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-civil-war/4050-89355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89368/", + "id": 89368, + "name": "Invincible Iron Man: Reboot", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-reboot/4050-89368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89373/", + "id": 89373, + "name": "Marvel Universe by John Byrne Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-john-byrne-omnibus/4050-89373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89380/", + "id": 89380, + "name": "Star Wars: Poe Dameron", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron/4050-89380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89385/", + "id": 89385, + "name": "Spider-Women Alpha", + "site_detail_url": "https://comicvine.gamespot.com/spider-women-alpha/4050-89385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89430/", + "id": 89430, + "name": "Marvel New Stories Road To Civil War II Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-new-stories-road-to-civil-war-ii-previews/4050-89430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89496/", + "id": 89496, + "name": "Guard Force", + "site_detail_url": "https://comicvine.gamespot.com/guard-force/4050-89496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89563/", + "id": 89563, + "name": "Silver Surfer: In Thy Name", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-in-thy-name/4050-89563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89582/", + "id": 89582, + "name": "C-3PO", + "site_detail_url": "https://comicvine.gamespot.com/c-3-p-o/4050-89582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89584/", + "id": 89584, + "name": "Captain America Epic Collection: Man Without A Country", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-man-without-a-coun/4050-89584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89594/", + "id": 89594, + "name": "Guardians of the Galaxy: New Guard - Emperor Quill", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-emperor-quill/4050-89594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89610/", + "id": 89610, + "name": "Marvel's Captain America: Civil War Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude/4050-89610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89611/", + "id": 89611, + "name": "Marvel Universe Ultimate Spider-Man: Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-spiderverse/4050-89611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89613/", + "id": 89613, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-89613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89615/", + "id": 89615, + "name": "Mrs. Deadpool and the Howling Commandos: Warzones!", + "site_detail_url": "https://comicvine.gamespot.com/mrs-deadpool-and-the-howling-commandos-warzones/4050-89615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89625/", + "id": 89625, + "name": "Thanos: The Infinity Finale", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-finale/4050-89625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89627/", + "id": 89627, + "name": "The Unbelievable Gwenpool", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool/4050-89627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89628/", + "id": 89628, + "name": "Uncanny Avengers: Unity - Lost Future", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-unity-lost-future/4050-89628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89653/", + "id": 89653, + "name": "Captain America 75th Anniversary Magazine", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-75th-anniversary-magazine/4050-89653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89762/", + "id": 89762, + "name": "All-New, All-Different Avengers: The Magnificent Seven", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-avengers-the-magnificent-seven/4050-89762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89766/", + "id": 89766, + "name": "Captain America: Road To War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-road-to-war/4050-89766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89767/", + "id": 89767, + "name": "Captain America: Sam Wilson: Not My Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-not-my-captain-america/4050-89767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89768/", + "id": 89768, + "name": "Captain America: Theater of War: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-theater-of-war-the-complete-collec/4050-89768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89770/", + "id": 89770, + "name": "Contest of Champions: Battleworld", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-battleworld/4050-89770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89773/", + "id": 89773, + "name": "Dark Tower: The Drawing of the Three - Bitter Medicine", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-drawing-of-the-three-bitter-medicin/4050-89773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89775/", + "id": 89775, + "name": "Deadpool & Cable: Split Second", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-cable-split-second/4050-89775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89776/", + "id": 89776, + "name": "Deadpool: World's Greatest: Millionaire With A Mouth", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-millionaire-with-a-mouth/4050-89776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89784/", + "id": 89784, + "name": "Hawkeye & The Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-the-thunderbolts/4050-89784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89793/", + "id": 89793, + "name": "Marvel Firsts: The 1990s", + "site_detail_url": "https://comicvine.gamespot.com/marvel-firsts-the-1990s/4050-89793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89796/", + "id": 89796, + "name": "New Avengers: A.I.M.: Everything Is New", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-aim-everything-is-new/4050-89796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89804/", + "id": 89804, + "name": "Star Wars: Vader Down", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-vader-down/4050-89804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89913/", + "id": 89913, + "name": "The Astonishing Ant-Man: Everybody Loves Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-antman-everybody-loves-teamups/4050-89913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89915/", + "id": 89915, + "name": "Avengers Standoff: Assault On Pleasant Hill Omega", + "site_detail_url": "https://comicvine.gamespot.com/avengers-standoff-assault-on-pleasant-hill-omega/4050-89915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89922/", + "id": 89922, + "name": "Carnage: The One That Got Away", + "site_detail_url": "https://comicvine.gamespot.com/carnage-the-one-that-got-away/4050-89922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89927/", + "id": 89927, + "name": "Doctor Strange: Last Days of Magic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-last-days-of-magic/4050-89927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89928/", + "id": 89928, + "name": "Doctor Strange: The Way of the Weird", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-way-of-the-weird/4050-89928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89932/", + "id": 89932, + "name": "Extraordinary X-Men: X-Haven", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-xmen-xhaven/4050-89932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89935/", + "id": 89935, + "name": "Guidebook To The Marvel Cinematic Universe - Marvel's Iron Man 3/Marvel's Thor: The Dark World", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-89935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89950/", + "id": 89950, + "name": "Spider-Man 2099: Smack To the Future", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099-smack-to-the-future/4050-89950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89951/", + "id": 89951, + "name": "The Amazing Spider-Man: Brand New Day: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-brand-new-day-the-complete-/4050-89951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89958/", + "id": 89958, + "name": "X-Men: Age of Apocalypse: Twilight", + "site_detail_url": "https://comicvine.gamespot.com/xmen-age-of-apocalypse-twilight/4050-89958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89959/", + "id": 89959, + "name": "A Year Of Marvels", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels/4050-89959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90093/", + "id": 90093, + "name": "All-New X-Men: Inevitable: Ghosts of Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-inevitable-ghosts-of-cyclops/4050-90093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90095/", + "id": 90095, + "name": "Avengers/Iron Man: Force Works", + "site_detail_url": "https://comicvine.gamespot.com/avengersiron-man-force-works/4050-90095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90101/", + "id": 90101, + "name": "Daredevil/Punisher: Seventh Circle", + "site_detail_url": "https://comicvine.gamespot.com/daredevilpunisher-seventh-circle/4050-90101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90102/", + "id": 90102, + "name": "Deadpool: Masacre", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-masacre/4050-90102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90118/", + "id": 90118, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-90118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90125/", + "id": 90125, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4050-90125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90126/", + "id": 90126, + "name": "True Believers: Star Wars Covers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-covers/4050-90126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90199/", + "id": 90199, + "name": "Guardians of the Galaxy by Abnett & Lanning Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-abnett-and-lanning-omni/4050-90199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90200/", + "id": 90200, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Iron Man 3", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90201/", + "id": 90201, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Thor: The Dark World", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90203/", + "id": 90203, + "name": "Marvel's Greatest Collections", + "site_detail_url": "https://comicvine.gamespot.com/marvels-greatest-collections/4050-90203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90210/", + "id": 90210, + "name": "True Believers: Chewbacca", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-chewbacca/4050-90210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90211/", + "id": 90211, + "name": "True Believers: Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-darth-vader/4050-90211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90212/", + "id": 90212, + "name": "True Believers: Droids", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-droids/4050-90212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90213/", + "id": 90213, + "name": "True Believers: Journey to Star Wars: The Force Awakens: Shattered Empire", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-journey-to-star-wars-the-force-awak/4050-90213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90214/", + "id": 90214, + "name": "True Believers: Kanan The Last Padawan", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-kanan-the-last-padawan/4050-90214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90215/", + "id": 90215, + "name": "True Believers: Lando", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-lando/4050-90215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90216/", + "id": 90216, + "name": "True Believers: Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars/4050-90216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90217/", + "id": 90217, + "name": "True Believers: Star Wars Classic", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-classic/4050-90217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90218/", + "id": 90218, + "name": "True Believers: Vader Down", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-vader-down/4050-90218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90219/", + "id": 90219, + "name": "A Year Of Marvels: May Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-may-infinite-comic/4050-90219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90253/", + "id": 90253, + "name": "Free Comic Book Day 2016 (Captain America)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2016-captain-america/4050-90253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90254/", + "id": 90254, + "name": "Free Comic Book Day 2016 (Civil War II)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2016-civil-war-ii/4050-90254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90393/", + "id": 90393, + "name": "All-New Wolverine: The Four Sisters", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-the-four-sisters/4050-90393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90398/", + "id": 90398, + "name": "Avengers Epic Collection: Under Siege", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-under-siege/4050-90398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90404/", + "id": 90404, + "name": "Daredevil: Back In Black: Chinatown", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-chinatown/4050-90404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90427/", + "id": 90427, + "name": "Spider-Gwen: Greater Power", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-greater-power/4050-90427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90428/", + "id": 90428, + "name": "Spider-Man/Deadpool: Don't Call It A Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-dont-call-it-a-teamup/4050-90428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90436/", + "id": 90436, + "name": "Web Warriors of The Spider-Verse: Electroverse", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-of-the-spiderverse-electroverse/4050-90436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90439/", + "id": 90439, + "name": "X-Men: Mutant Genesis 2.0", + "site_detail_url": "https://comicvine.gamespot.com/xmen-mutant-genesis-20/4050-90439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90515/", + "id": 90515, + "name": "All-New Inhumans: Global Outreach", + "site_detail_url": "https://comicvine.gamespot.com/allnew-inhumans-global-outreach/4050-90515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90516/", + "id": 90516, + "name": "Avengers K: Avengers Vs. Ultron", + "site_detail_url": "https://comicvine.gamespot.com/avengers-k-avengers-vs-ultron/4050-90516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90521/", + "id": 90521, + "name": "Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii/4050-90521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90523/", + "id": 90523, + "name": "Deadpool: Last Days of Magic", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-last-days-of-magic/4050-90523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90535/", + "id": 90535, + "name": "Howard The Duck: Duck Hunt", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-duck-hunt/4050-90535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90540/", + "id": 90540, + "name": "Mighty Thor: Thunder In Her Veins", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor-thunder-in-her-veins/4050-90540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90544/", + "id": 90544, + "name": "Silk: Sinister", + "site_detail_url": "https://comicvine.gamespot.com/silk-sinister/4050-90544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90545/", + "id": 90545, + "name": "Star Brand: New Universe", + "site_detail_url": "https://comicvine.gamespot.com/star-brand-new-universe/4050-90545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90546/", + "id": 90546, + "name": "Star Wars: Kanan: First Blood", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-kanan-first-blood/4050-90546/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90554/", + "id": 90554, + "name": "X-Men: The Rise of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-rise-of-apocalypse/4050-90554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90698/", + "id": 90698, + "name": "Captain America: Steve Rogers", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers/4050-90698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90702/", + "id": 90702, + "name": "Drax: The Galaxy's Best Detective", + "site_detail_url": "https://comicvine.gamespot.com/drax-the-galaxys-best-detective/4050-90702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90705/", + "id": 90705, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Captain America: The Winter Soldier/Marvel's Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90706/", + "id": 90706, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90707/", + "id": 90707, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Captain America: The Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90708/", + "id": 90708, + "name": "Howling Commandos of S.H.I.E.L.D.: Monster Squad", + "site_detail_url": "https://comicvine.gamespot.com/howling-commandos-of-shield-monster-squad/4050-90708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90714/", + "id": 90714, + "name": "Max Ride: Ultimate Flight", + "site_detail_url": "https://comicvine.gamespot.com/max-ride-ultimate-flight/4050-90714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90716/", + "id": 90716, + "name": "Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/nighthawk/4050-90716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90722/", + "id": 90722, + "name": "Spider-Man: Tombstone", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-tombstone/4050-90722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90725/", + "id": 90725, + "name": "Star Wars: Episode I - The Phantom Menace", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-episode-i-the-phantom-menace/4050-90725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90733/", + "id": 90733, + "name": "The Unbeatable Squirrel Girl: Squirrel, You Really Got Me Now", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-squirrel-you-really-g/4050-90733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90770/", + "id": 90770, + "name": "Civil War II Daily Bugle Newspaper", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-daily-bugle-newspaper/4050-90770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90887/", + "id": 90887, + "name": "Secret Wars: Last Days of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-last-days-of-the-marvel-universe/4050-90887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90890/", + "id": 90890, + "name": "Spider-Woman: Shifting Gears - Baby Talk", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-shifting-gears-baby-talk/4050-90890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90891/", + "id": 90891, + "name": "Spider-Women Omega", + "site_detail_url": "https://comicvine.gamespot.com/spiderwomen-omega/4050-90891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90892/", + "id": 90892, + "name": "Squadron Supreme Classic Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-classic-omnibus/4050-90892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90893/", + "id": 90893, + "name": "Stan Lee: Marvel Treasury Edition Slipcase", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-marvel-treasury-edition-slipcase/4050-90893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90894/", + "id": 90894, + "name": "Star Wars: Droids & Ewoks Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-droids-ewoks-omnibus/4050-90894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90927/", + "id": 90927, + "name": "Marvel Civil War II Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-civil-war-ii-previews/4050-90927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90929/", + "id": 90929, + "name": "Timely Comics: All-New Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-allnew-inhumans/4050-90929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90930/", + "id": 90930, + "name": "Timely Comics: All-New, All-Different Avengers", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-allnew-alldifferent-avengers/4050-90930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90931/", + "id": 90931, + "name": "Timely Comics: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-carnage/4050-90931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90965/", + "id": 90965, + "name": "Shang-Chi Master of Kung-Fu Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/shangchi-master-of-kungfu-omnibus/4050-90965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91088/", + "id": 91088, + "name": "Black Knight: The Fall of Dane Whitman", + "site_detail_url": "https://comicvine.gamespot.com/black-knight-the-fall-of-dane-whitman/4050-91088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91090/", + "id": 91090, + "name": "Civil War II: Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spiderman/4050-91090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91091/", + "id": 91091, + "name": "Civil War II: Gods of War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-gods-of-war/4050-91091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91096/", + "id": 91096, + "name": "Color Your Own Young Marvel by Skottie Young", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-young-marvel-by-skottie-young/4050-91096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91097/", + "id": 91097, + "name": "Deadpool: World's Greatest: End of An Error", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-end-of-an-error/4050-91097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91101/", + "id": 91101, + "name": "Hercules: Still Going Strong", + "site_detail_url": "https://comicvine.gamespot.com/hercules-still-going-strong/4050-91101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91103/", + "id": 91103, + "name": "Incredible Hulk Epic Collection: Man or Monster?", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-man-or-monster/4050-91103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91110/", + "id": 91110, + "name": "Nova: The Human Rocket - Burn Out", + "site_detail_url": "https://comicvine.gamespot.com/nova-the-human-rocket-burn-out/4050-91110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91151/", + "id": 91151, + "name": "Timely Comics: Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-daredevil/4050-91151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91152/", + "id": 91152, + "name": "Timely Comics: Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-doctor-strange/4050-91152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91153/", + "id": 91153, + "name": "Timely Comics: Drax", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-drax/4050-91153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91154/", + "id": 91154, + "name": "Ultimate Spider-Man Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spiderman-infinite-comic/4050-91154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91212/", + "id": 91212, + "name": "Captain Marvel: Earth's Mightiest Hero", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-earths-mightiest-hero/4050-91212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91260/", + "id": 91260, + "name": "The Avengers Featuring Ready Girl", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-featuring-ready-girl/4050-91260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91275/", + "id": 91275, + "name": "Civil War II: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-xmen/4050-91275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91286/", + "id": 91286, + "name": "Han Solo", + "site_detail_url": "https://comicvine.gamespot.com/han-solo/4050-91286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91287/", + "id": 91287, + "name": "Hawkeye: Hawkeyes", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-hawkeyes/4050-91287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91293/", + "id": 91293, + "name": "Patsy Walker, A.K.A. Hellcat!: Hooked On A Feline", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-aka-hellcat-hooked-on-a-feline/4050-91293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91296/", + "id": 91296, + "name": "Spidey: All-New Marvel Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/spidey-allnew-marvel-treasury-edition/4050-91296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91297/", + "id": 91297, + "name": "Squadron Supreme: By Any Means Necessary!", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-by-any-means-necessary/4050-91297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91299/", + "id": 91299, + "name": "Timely Comics: Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-invincible-iron-man/4050-91299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91300/", + "id": 91300, + "name": "Timely Comics: Moon Girl and Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-moon-girl-and-devil-dinosaur/4050-91300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91301/", + "id": 91301, + "name": "Timely Comics: New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-new-avengers/4050-91301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91303/", + "id": 91303, + "name": "Vote Loki", + "site_detail_url": "https://comicvine.gamespot.com/vote-loki/4050-91303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91306/", + "id": 91306, + "name": "A Year Of Marvels: The Incredible", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-the-incredible/4050-91306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91316/", + "id": 91316, + "name": "Civil War II: Ulysses Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-ulysses-infinite-comic/4050-91316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91321/", + "id": 91321, + "name": "A Year Of Marvels: June Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-june-infinite-comic/4050-91321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91595/", + "id": 91595, + "name": "Iron Man Featuring Captain Mercaptan", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-featuring-captain-mercaptan/4050-91595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91743/", + "id": 91743, + "name": "Carnage Classic", + "site_detail_url": "https://comicvine.gamespot.com/carnage-classic/4050-91743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91744/", + "id": 91744, + "name": "Civil War II: Choosing Sides", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-choosing-sides/4050-91744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91746/", + "id": 91746, + "name": "Deadpool v Gambit", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-v-gambit/4050-91746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91752/", + "id": 91752, + "name": "Guidebook To the Marvel Cinematic Universe - Marvel's Agents of S.H.I.E.L.D. Season One", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-91752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91758/", + "id": 91758, + "name": "Legendary Star-Lord: First Flight", + "site_detail_url": "https://comicvine.gamespot.com/legendary-starlord-first-flight/4050-91758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91761/", + "id": 91761, + "name": "Moon Girl and Devil Dinosaur: BFF", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-bff/4050-91761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91764/", + "id": 91764, + "name": "NYX: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/nyx-the-complete-collection/4050-91764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91768/", + "id": 91768, + "name": "Red Wolf: Man Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/red-wolf-man-out-of-time/4050-91768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91772/", + "id": 91772, + "name": "Star Wars: The Force Awakens Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-force-awakens-adaptation/4050-91772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91773/", + "id": 91773, + "name": "Star Wars Legends Epic Collection: The Rebellion", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-rebellion/4050-91773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91796/", + "id": 91796, + "name": "Timely Comics: Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-scarlet-witch/4050-91796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91797/", + "id": 91797, + "name": "Timely Comics: Squadron Supreme", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-squadron-supreme/4050-91797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91798/", + "id": 91798, + "name": "Timely Comics: Totally Awesome Hulk", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-totally-awesome-hulk/4050-91798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91874/", + "id": 91874, + "name": "Angela: Queen of Hel: Journey To the FUNderworld", + "site_detail_url": "https://comicvine.gamespot.com/angela-queen-of-hel-journey-to-the-funderworld/4050-91874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91877/", + "id": 91877, + "name": "Avengers: Standoff", + "site_detail_url": "https://comicvine.gamespot.com/avengers-standoff/4050-91877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91884/", + "id": 91884, + "name": "Color Your Own James Patterson: Max Ride", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-james-patterson-max-ride/4050-91884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91897/", + "id": 91897, + "name": "Ms. Marvel: Super Famous", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-super-famous/4050-91897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91903/", + "id": 91903, + "name": "Spider-Gwen Annual", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-annual/4050-91903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91904/", + "id": 91904, + "name": "Starbrand and Nightmask: Eternity's Children (Attend University)", + "site_detail_url": "https://comicvine.gamespot.com/starbrand-and-nightmask-eternitys-children-attend-/4050-91904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91910/", + "id": 91910, + "name": "Timely Comics: Ultimates", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-ultimates/4050-91910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91911/", + "id": 91911, + "name": "Timely Comics: Uncanny Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-uncanny-inhumans/4050-91911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91912/", + "id": 91912, + "name": "Timely Comics: Venom: Space Knight", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-venom-space-knight/4050-91912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91913/", + "id": 91913, + "name": "Timely Comics: Web Warriors", + "site_detail_url": "https://comicvine.gamespot.com/timely-comics-web-warriors/4050-91913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91914/", + "id": 91914, + "name": "Ultimates: Omniversal: Start With the Impossible", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-omniversal-start-with-the-impossible/4050-91914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91915/", + "id": 91915, + "name": "Uncanny X-Men: Superior: Survival of the Fittest", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-superior-survival-of-the-fittest/4050-91915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91916/", + "id": 91916, + "name": "Vision: Little Worse Than A Man", + "site_detail_url": "https://comicvine.gamespot.com/vision-little-worse-than-a-man/4050-91916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91942/", + "id": 91942, + "name": "A Year Of Marvels: July Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-july-infinite-comic/4050-91942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92013/", + "id": 92013, + "name": "Avengers: Time Runs Out", + "site_detail_url": "https://comicvine.gamespot.com/avengers-time-runs-out/4050-92013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92020/", + "id": 92020, + "name": "Civil War II: Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-kingpin/4050-92020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92035/", + "id": 92035, + "name": "Marvel's Doctor Strange Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-doctor-strange-prelude/4050-92035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92036/", + "id": 92036, + "name": "Marvel Universe Avengers: Ultron Revolution", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-ultron-revolution/4050-92036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92042/", + "id": 92042, + "name": "Scarlet Witch: Witches' Road", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch-witches-road/4050-92042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92046/", + "id": 92046, + "name": "Star Wars: Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader/4050-92046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92049/", + "id": 92049, + "name": "True Believers: Extraordinary X-Men: The Burning Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-extraordinary-xmen-the-burning-man/4050-92049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92050/", + "id": 92050, + "name": "True Believers: Invincible Iron Man: The War Machines", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-invincible-iron-man-the-war-machine/4050-92050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92065/", + "id": 92065, + "name": "Avengers Featuring Hulk & Nova", + "site_detail_url": "https://comicvine.gamespot.com/avengers-featuring-hulk-nova/4050-92065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92066/", + "id": 92066, + "name": "Avengers: King of the Road", + "site_detail_url": "https://comicvine.gamespot.com/avengers-king-of-the-road/4050-92066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92078/", + "id": 92078, + "name": "A-Force: Hypertime", + "site_detail_url": "https://comicvine.gamespot.com/aforce-hypertime/4050-92078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92079/", + "id": 92079, + "name": "Deadpool: Too Soon? Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic/4050-92079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92101/", + "id": 92101, + "name": "The Amazing Spider-Man: Meets Sally's Superheroes of Beauty !", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-meets-sallys-superheroes-of-/4050-92101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92104/", + "id": 92104, + "name": "The Best of Spidey Super Stories", + "site_detail_url": "https://comicvine.gamespot.com/the-best-of-spidey-super-stories/4050-92104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92107/", + "id": 92107, + "name": "Nets BrooklyKnight", + "site_detail_url": "https://comicvine.gamespot.com/nets-brooklyknight/4050-92107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92176/", + "id": 92176, + "name": "Daredevil Epic Collection: The Man Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-the-man-without-fear/4050-92176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92203/", + "id": 92203, + "name": "Spider-Women", + "site_detail_url": "https://comicvine.gamespot.com/spider-women/4050-92203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92209/", + "id": 92209, + "name": "The Totally Awesome Hulk: Cho Time", + "site_detail_url": "https://comicvine.gamespot.com/the-totally-awesome-hulk-cho-time/4050-92209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92210/", + "id": 92210, + "name": "True Believers: All-New, All-Different Avengers: Cyclone", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-allnew-alldifferent-avengers-cyclon/4050-92210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92211/", + "id": 92211, + "name": "True Believers: Daredevil: Practice To Deceive", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-daredevil-practice-to-deceive/4050-92211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92212/", + "id": 92212, + "name": "True Believers: Uncanny Avengers: The Bagalia Job", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-uncanny-avengers-the-bagalia-job/4050-92212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92216/", + "id": 92216, + "name": "Wolverine: Old Man Logan: Berzerker", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-berzerker/4050-92216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92259/", + "id": 92259, + "name": "Marvel Now! Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-previews/4050-92259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92297/", + "id": 92297, + "name": "Avengers by John Byrne Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-john-byrne-omnibus/4050-92297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92302/", + "id": 92302, + "name": "Illuminati: Life of Crime", + "site_detail_url": "https://comicvine.gamespot.com/illuminati-life-of-crime/4050-92302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92304/", + "id": 92304, + "name": "The Infinity Entity", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-entity/4050-92304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92310/", + "id": 92310, + "name": "Venom: Space Knight: Agent of the Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-agent-of-the-cosmos/4050-92310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92350/", + "id": 92350, + "name": "Agents of S.H.I.E.L.D.: The Coulson Protocols", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-the-coulson-protocols/4050-92350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92356/", + "id": 92356, + "name": "Captain Marvel: Rise of Alpha Flight", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-rise-of-alpha-flight/4050-92356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92360/", + "id": 92360, + "name": "Deadpool & The Mercs For Money", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-mercs-for-money/4050-92360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92377/", + "id": 92377, + "name": "Luke Cage: Avenger", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-avenger/4050-92377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92386/", + "id": 92386, + "name": "Rocket Raccoon & Groot: Tricks of the Trade", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-groot-tricks-of-the-trade/4050-92386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92390/", + "id": 92390, + "name": "Star Wars: Obi-Wan and Anakin", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-obiwan-and-anakin/4050-92390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92394/", + "id": 92394, + "name": "True Believers: Deadpool: Deadpool Vs. Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-deadpool-deadpool-vs-sabretooth/4050-92394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92395/", + "id": 92395, + "name": "True Believers: Guardians of the Galaxy: Galaxy's Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-guardians-of-the-galaxy-galaxys-mos/4050-92395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92396/", + "id": 92396, + "name": "The Unbeatable Squirrel Girl & the Great Lakes Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-the-great-lakes-aveng/4050-92396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92400/", + "id": 92400, + "name": "X-Men: The Trial of Gambit", + "site_detail_url": "https://comicvine.gamespot.com/xmen-the-trial-of-gambit/4050-92400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92412/", + "id": 92412, + "name": "Laugh It Off!", + "site_detail_url": "https://comicvine.gamespot.com/laugh-it-off/4050-92412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92415/", + "id": 92415, + "name": "Avengers: Never Alone", + "site_detail_url": "https://comicvine.gamespot.com/avengers-never-alone/4050-92415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92445/", + "id": 92445, + "name": "Laugh Riot", + "site_detail_url": "https://comicvine.gamespot.com/laugh-riot/4050-92445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92518/", + "id": 92518, + "name": "Dark Tower: The Gunslinger: Battle of Jericho Hill", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-battle-of-jericho-hill/4050-92518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92519/", + "id": 92519, + "name": "Dark Tower: The Gunslinger: The Battle of Tull", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-the-battle-of-tull/4050-92519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92520/", + "id": 92520, + "name": "Dark Tower: The Gunslinger: Treachery", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-gunslinger-treachery/4050-92520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92555/", + "id": 92555, + "name": "Guardians of the Galaxy Classic: In The Year 3000", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-classic-in-the-year-3000/4050-92555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92556/", + "id": 92556, + "name": "Guidebook To The Marvel Cinematic Universe — Marvel's Guardians Of The Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-92556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92563/", + "id": 92563, + "name": "Machine Man by Kirby & Ditko: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/machine-man-by-kirby-ditko-the-complete-collection/4050-92563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92564/", + "id": 92564, + "name": "Marvel Universe Ultimate Spider-Man Vs. The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-vs-the-sinister/4050-92564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92576/", + "id": 92576, + "name": "Spider-Man 2099: Gods and Women", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099-gods-and-women/4050-92576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92578/", + "id": 92578, + "name": "True Believers: The Amazing Spider-Man: The Dark Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spiderman-the-dark-king/4050-92578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92579/", + "id": 92579, + "name": "True Believers: Doctor Strange: The Last Days of Magic", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-doctor-strange-the-last-days-of-mag/4050-92579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92580/", + "id": 92580, + "name": "True Believers: The Mighty Thor: The Strongest Viking There Is", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-mighty-thor-the-strongest-vikin/4050-92580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92581/", + "id": 92581, + "name": "Weirdworld: Where Lost Things Go", + "site_detail_url": "https://comicvine.gamespot.com/weirdworld-where-lost-things-go/4050-92581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92585/", + "id": 92585, + "name": "X-23: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/x23-the-complete-collection/4050-92585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92737/", + "id": 92737, + "name": "Daredevil Annual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual/4050-92737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92759/", + "id": 92759, + "name": "Marvel Tsum Tsum", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tsum-tsum/4050-92759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92762/", + "id": 92762, + "name": "Mockingbird: Bobbi Morse, Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird-bobbi-morse-agent-of-shield/4050-92762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92765/", + "id": 92765, + "name": "New Avengers: A.I.M.: Standoff", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-aim-standoff/4050-92765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92772/", + "id": 92772, + "name": "Spider-Man by Todd McFarlane Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-by-todd-mcfarlane-omnibus/4050-92772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92777/", + "id": 92777, + "name": "Uncanny Inhumans: The Quiet Room", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans-the-quiet-room/4050-92777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92780/", + "id": 92780, + "name": "A Year of Marvels: The Unstoppable", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-the-unstoppable/4050-92780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92785/", + "id": 92785, + "name": "Annihilation Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-omnibus/4050-92785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92821/", + "id": 92821, + "name": "Civil War II Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-special-edition/4050-92821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92945/", + "id": 92945, + "name": "The Accused", + "site_detail_url": "https://comicvine.gamespot.com/the-accused/4050-92945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92946/", + "id": 92946, + "name": "All-New, All-Different Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-avengers-annual/4050-92946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92950/", + "id": 92950, + "name": "Avengers K: The Advent of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/avengers-k-the-advent-of-ultron/4050-92950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92960/", + "id": 92960, + "name": "Guardians of the Galaxy: Guardians of Infinity", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-guardians-of-infinity/4050-92960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92971/", + "id": 92971, + "name": "Spidey: First Day", + "site_detail_url": "https://comicvine.gamespot.com/spidey-first-day/4050-92971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92973/", + "id": 92973, + "name": "Star Wars: Darth Vader: The Shu-Torun War", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-the-shutorun-war/4050-92973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93011/", + "id": 93011, + "name": "A Year Of Marvels: August Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-august-infinite-comic/4050-93011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93024/", + "id": 93024, + "name": "Guardians of the Galaxy: Tales of the Cosmos", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-tales-of-the-cosmos/4050-93024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93027/", + "id": 93027, + "name": "Thor Epic Collection: Runequest", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-runequest/4050-93027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93118/", + "id": 93118, + "name": "Marvel Romance Redux: I Should Have Been A Blonde!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-romance-redux-i-should-have-been-a-blonde/4050-93118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93183/", + "id": 93183, + "name": "Deadpool & the Mercs For Money: Merc Madness", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-mercs-for-money-merc-madness/4050-93183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93187/", + "id": 93187, + "name": "The Fallen", + "site_detail_url": "https://comicvine.gamespot.com/the-fallen/4050-93187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93204/", + "id": 93204, + "name": "Star Wars: Rebel Jail", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-rebel-jail/4050-93204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93365/", + "id": 93365, + "name": "Amazing Spider-Man: Amazing Grace", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-amazing-grace/4050-93365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93373/", + "id": 93373, + "name": "Civil War II: Ulysses", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-ulysses/4050-93373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93374/", + "id": 93374, + "name": "Deadpool: World's Greatest: Deadpool Vs. Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-deadpool-vs-sabretooth/4050-93374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93396/", + "id": 93396, + "name": "Uncanny Inhumans Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans-annual/4050-93396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93423/", + "id": 93423, + "name": "Defenders Epic Collection: The Six-Fingered Hand Saga", + "site_detail_url": "https://comicvine.gamespot.com/defenders-epic-collection-the-sixfingered-hand-sag/4050-93423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93425/", + "id": 93425, + "name": "Mosaic Prelude", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-prelude/4050-93425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93427/", + "id": 93427, + "name": "X-Men: Worst X-Man Ever", + "site_detail_url": "https://comicvine.gamespot.com/xmen-worst-xman-ever/4050-93427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93642/", + "id": 93642, + "name": "All-New Wolverine Annual", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-annual/4050-93642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93649/", + "id": 93649, + "name": "Black Panther: A Nation Under Our Feet", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-a-nation-under-our-feet/4050-93649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93654/", + "id": 93654, + "name": "Doctor Strange: Strange Origin", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-strange-origin/4050-93654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93657/", + "id": 93657, + "name": "Drax: Guardian of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/drax-guardian-of-the-galaxy/4050-93657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93667/", + "id": 93667, + "name": "Invincible Iron Man: The War Machines", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-the-war-machines/4050-93667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93668/", + "id": 93668, + "name": "Jessica Jones: Avenger", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-avenger/4050-93668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93673/", + "id": 93673, + "name": "Marvel Universe Avengers Assemble: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-assemble-civil-war/4050-93673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93674/", + "id": 93674, + "name": "Marvel Universe Ultimate Spider-Man: Contest of Champions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-contest-of-cham/4050-93674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93678/", + "id": 93678, + "name": "Secret Wars, Too", + "site_detail_url": "https://comicvine.gamespot.com/secret-wars-too/4050-93678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93680/", + "id": 93680, + "name": "Spider-Man/Deadpool: Isn't It Bromantic", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-isnt-it-bromantic/4050-93680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93803/", + "id": 93803, + "name": "Captain America: Truth", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-truth/4050-93803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93911/", + "id": 93911, + "name": "Color Your Own Women of Power", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-women-of-power/4050-93911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93928/", + "id": 93928, + "name": "Max Ride: Final Flight", + "site_detail_url": "https://comicvine.gamespot.com/max-ride-final-flight/4050-93928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93945/", + "id": 93945, + "name": "Spider-Man: Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-miles-morales/4050-93945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93946/", + "id": 93946, + "name": "Star Wars: Episode II: Attack of the Clones", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-episode-ii-attack-of-the-clones/4050-93946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93950/", + "id": 93950, + "name": "Thor by Jason Aaron & Russell Dauterman", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-jason-aaron-russell-dauterman/4050-93950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93981/", + "id": 93981, + "name": "Doctor Strange and the Secret Defenders", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-secret-defenders/4050-93981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93983/", + "id": 93983, + "name": "Marvel Super Hero Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-spectacular/4050-93983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93984/", + "id": 93984, + "name": "Marvel's Doctor Strange Prelude Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvels-doctor-strange-prelude-infinite-comic/4050-93984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93987/", + "id": 93987, + "name": "Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/star-wars/4050-93987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93988/", + "id": 93988, + "name": "A Year Of Marvels: September Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-september-infinite-comic/4050-93988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94111/", + "id": 94111, + "name": "Daredevil: Back In Black: Supersonic", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-supersonic/4050-94111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94136/", + "id": 94136, + "name": "Punisher War Journal By Carl Potts & Jim Lee", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-by-carl-potts-jim-lee/4050-94136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94146/", + "id": 94146, + "name": "Uncanny Avengers: Unity: The Man Who Fell To Earth", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-unity-the-man-who-fell-to-earth/4050-94146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94150/", + "id": 94150, + "name": "X-Men Origins: Gambit", + "site_detail_url": "https://comicvine.gamespot.com/xmen-origins-gambit/4050-94150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94248/", + "id": 94248, + "name": "Amazing Spider-Man & Silk: The Spider(Fly) Effect", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-silk-the-spiderfly-effect/4050-94248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94253/", + "id": 94253, + "name": "The Astonishing Ant-Man: Small-Time Criminal", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-antman-smalltime-criminal/4050-94253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94262/", + "id": 94262, + "name": "Captain America Epic Collection: The Coming of... The Falcon", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-the-coming-of-the-/4050-94262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94263/", + "id": 94263, + "name": "Captain America: Serpents Unite!", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-serpents-unite/4050-94263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94269/", + "id": 94269, + "name": "Doctor Strange Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-omnibus/4050-94269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94271/", + "id": 94271, + "name": "Extraordinary X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-xmen-annual/4050-94271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94272/", + "id": 94272, + "name": "Gamora: Guardian of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/gamora-guardian-of-the-galaxy/4050-94272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94274/", + "id": 94274, + "name": "Haunted Mansion", + "site_detail_url": "https://comicvine.gamespot.com/haunted-mansion/4050-94274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94281/", + "id": 94281, + "name": "Marvel: The Hip-Hop Covers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-hiphop-covers/4050-94281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94287/", + "id": 94287, + "name": "Power Man and Iron Fist: The Boys Are Back In Town", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-the-boys-are-back-in-town/4050-94287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94404/", + "id": 94404, + "name": "All-New, All-Different Avengers: Family Business", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-avengers-family-business/4050-94404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94409/", + "id": 94409, + "name": "Black Panther Epic Collection: Panther's Rage", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-epic-collection-panthers-rage/4050-94409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94412/", + "id": 94412, + "name": "Captain America: Sam Wilson: Standoff", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-standoff/4050-94412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94415/", + "id": 94415, + "name": "Deadpool Annual", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual/4050-94415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94419/", + "id": 94419, + "name": "Doctor Strange Annual", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-annual/4050-94419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94422/", + "id": 94422, + "name": "George Romero's Empire of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/george-romeros-empire-of-the-dead/4050-94422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94427/", + "id": 94427, + "name": "Guidebook To the Marvel Cinematic Universe – Marvel's Avengers: Age of Ultron", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-94427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94439/", + "id": 94439, + "name": "Marvel Universe Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-doctor-strange/4050-94439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94446/", + "id": 94446, + "name": "Silver Surfer: Citizen of Earth", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-citizen-of-earth/4050-94446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94451/", + "id": 94451, + "name": "Star Wars Legends Epic Collection: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-legacy/4050-94451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94463/", + "id": 94463, + "name": "X-Men: Apocalypse Wars", + "site_detail_url": "https://comicvine.gamespot.com/x-men-apocalypse-wars/4050-94463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94483/", + "id": 94483, + "name": "Iron Man: A Cold Run", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-a-cold-run/4050-94483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94484/", + "id": 94484, + "name": "Thor/Road Force", + "site_detail_url": "https://comicvine.gamespot.com/thorroad-force/4050-94484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94485/", + "id": 94485, + "name": "Harley-Davidson/Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/harley-davidsoniron-man/4050-94485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94494/", + "id": 94494, + "name": "Marvel Now! Free Previews 2016", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-free-previews-2016/4050-94494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94609/", + "id": 94609, + "name": "Cage!", + "site_detail_url": "https://comicvine.gamespot.com/cage/4050-94609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94612/", + "id": 94612, + "name": "Champions", + "site_detail_url": "https://comicvine.gamespot.com/champions/4050-94612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94613/", + "id": 94613, + "name": "Color Your Own Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-doctor-strange/4050-94613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94618/", + "id": 94618, + "name": "Deadpool: Back In Black", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black/4050-94618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94620/", + "id": 94620, + "name": "Death of X", + "site_detail_url": "https://comicvine.gamespot.com/death-of-x/4050-94620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94623/", + "id": 94623, + "name": "Doctor Strange: The Last Days of Magic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-last-days-of-magic/4050-94623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94624/", + "id": 94624, + "name": "Enchanted Tiki Room", + "site_detail_url": "https://comicvine.gamespot.com/enchanted-tiki-room/4050-94624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94643/", + "id": 94643, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4050-94643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94646/", + "id": 94646, + "name": "Marvel's Doctor Strange Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-doctor-strange-prelude/4050-94646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94655/", + "id": 94655, + "name": "Power Man And Iron Fist Epic Collection: Revenge!", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-epic-collection-revenge/4050-94655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94668/", + "id": 94668, + "name": "The Unbeatable Squirrel Girl Beats Up the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-beats-up-the-marvel-u/4050-94668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94669/", + "id": 94669, + "name": "Vote Loki", + "site_detail_url": "https://comicvine.gamespot.com/vote-loki/4050-94669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94698/", + "id": 94698, + "name": "Marvel's Agent Carter: Season Two Declassified", + "site_detail_url": "https://comicvine.gamespot.com/marvels-agent-carter-season-two-declassified/4050-94698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94701/", + "id": 94701, + "name": "Spider-Man Clone Saga Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-clone-saga-omnibus/4050-94701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94779/", + "id": 94779, + "name": "All-New X-Men: Inevitable: Apocalypse Wars", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-inevitable-apocalypse-wars/4050-94779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94788/", + "id": 94788, + "name": "The Clone Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy/4050-94788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94790/", + "id": 94790, + "name": "Color Your Own Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-star-wars/4050-94790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94793/", + "id": 94793, + "name": "The Dark Tower: The Drawing of the Three - Bitter Medicine", + "site_detail_url": "https://comicvine.gamespot.com/the-dark-tower-the-drawing-of-the-three-bitter-med/4050-94793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94794/", + "id": 94794, + "name": "Dark Tower: The Drawing of the Three - The Sailor", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-drawing-of-the-three-the-sailor/4050-94794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94799/", + "id": 94799, + "name": "Extraordinary X-Men: Apocalypse Wars", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-xmen-apocalypse-wars/4050-94799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94801/", + "id": 94801, + "name": "Great Lakes Avengers", + "site_detail_url": "https://comicvine.gamespot.com/great-lakes-avengers/4050-94801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94809/", + "id": 94809, + "name": "The Marvel Universe According To Hembeck", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-universe-according-to-hembeck/4050-94809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94811/", + "id": 94811, + "name": "Mosaic", + "site_detail_url": "https://comicvine.gamespot.com/mosaic/4050-94811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94818/", + "id": 94818, + "name": "Solo", + "site_detail_url": "https://comicvine.gamespot.com/solo/4050-94818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94829/", + "id": 94829, + "name": "Wolverine: Old Man Logan: Bordertown", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-bordertown/4050-94829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94831/", + "id": 94831, + "name": "X-Men: Gambit & Rogue", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gambit-rogue/4050-94831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94881/", + "id": 94881, + "name": "Spirits of Vengeance: Rise of the Midnight Sons", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance-rise-of-the-midnight-sons/4050-94881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94936/", + "id": 94936, + "name": "Indiana Jones and the Last Crusade: The Official Comics Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/indiana-jones-and-the-last-crusade-the-official-co/4050-94936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94990/", + "id": 94990, + "name": "All-New Inhumans: Skyspears", + "site_detail_url": "https://comicvine.gamespot.com/allnew-inhumans-skyspears/4050-94990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-94991/", + "id": 94991, + "name": "All-New Wolverine: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-civil-war-ii/4050-94991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95000/", + "id": 95000, + "name": "Daredevil/Punisher: Seventh Circle", + "site_detail_url": "https://comicvine.gamespot.com/daredevilpunisher-seventh-circle/4050-95000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95002/", + "id": 95002, + "name": "Deadpool: Too Soon", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-too-soon/4050-95002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95006/", + "id": 95006, + "name": "Doctor Strange Epic Collection: A Separate Reality", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-a-separate-reality/4050-95006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95007/", + "id": 95007, + "name": "Doctor Strange: The Flight of Bones", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-flight-of-bones/4050-95007/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95016/", + "id": 95016, + "name": "Infamous Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/infamous-iron-man/4050-95016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95020/", + "id": 95020, + "name": "Legendary Star-Lord: Out of Orbit", + "site_detail_url": "https://comicvine.gamespot.com/legendary-starlord-out-of-orbit/4050-95020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95025/", + "id": 95025, + "name": "Mockingbird: I Can Explain", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird-i-can-explain/4050-95025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95032/", + "id": 95032, + "name": "Slapstick Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-infinite-comic/4050-95032/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95033/", + "id": 95033, + "name": "The Son of Satan Classic", + "site_detail_url": "https://comicvine.gamespot.com/the-son-of-satan-classic/4050-95033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95044/", + "id": 95044, + "name": "A Year of Marvels: The Unbeatable", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-the-unbeatable/4050-95044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95202/", + "id": 95202, + "name": "Black Widow: S.H.I.E.L.D.'s Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-shields-most-wanted/4050-95202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95207/", + "id": 95207, + "name": "Carnage: World Tour", + "site_detail_url": "https://comicvine.gamespot.com/carnage-world-tour/4050-95207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95208/", + "id": 95208, + "name": "The Champions: No Time For Losers", + "site_detail_url": "https://comicvine.gamespot.com/the-champions-no-time-for-losers/4050-95208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95210/", + "id": 95210, + "name": "Deadpool: World's Greatest: Temporary Insanitation", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-temporary-insanitation/4050-95210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95211/", + "id": 95211, + "name": "Doctor Strange and the Sorcerers Supreme", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme/4050-95211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95212/", + "id": 95212, + "name": "Doctor Strange: Mystic Apprentice", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-mystic-apprentice/4050-95212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95213/", + "id": 95213, + "name": "Doctor Strange: What Is It That Disturbs You, Stephen?", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-what-is-it-that-disturbs-you-stephe/4050-95213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95221/", + "id": 95221, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Agent Carter Season One", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-95221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95222/", + "id": 95222, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Agents of S.H.I.E.L.D. Season Two", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-95222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95223/", + "id": 95223, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel’s Agents of S.H.I.E.L.D. Season Two/Marvel’s Agent Carter Season One", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-95223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95225/", + "id": 95225, + "name": "Hyperion: Daddy Issues", + "site_detail_url": "https://comicvine.gamespot.com/hyperion-daddy-issues/4050-95225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95226/", + "id": 95226, + "name": "International Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/international-iron-man/4050-95226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95232/", + "id": 95232, + "name": "Prowler", + "site_detail_url": "https://comicvine.gamespot.com/prowler/4050-95232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95233/", + "id": 95233, + "name": "The Punisher Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-annual/4050-95233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95240/", + "id": 95240, + "name": "Star Wars Legends Epic Collection: The Original Marvel Years", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-original-mar/4050-95240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95251/", + "id": 95251, + "name": "X-Men '92: The World Is A Vampire", + "site_detail_url": "https://comicvine.gamespot.com/xmen-92-the-world-is-a-vampire/4050-95251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95286/", + "id": 95286, + "name": "A Year Of Marvels: October Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-october-infinite-comic/4050-95286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95402/", + "id": 95402, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-95402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95410/", + "id": 95410, + "name": "Civil War II: Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-amazing-spiderman/4050-95410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95415/", + "id": 95415, + "name": "Foolkiller", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller/4050-95415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95431/", + "id": 95431, + "name": "Occupy Avengers", + "site_detail_url": "https://comicvine.gamespot.com/occupy-avengers/4050-95431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95438/", + "id": 95438, + "name": "Star Wars: Heroes For A New Hope", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-heroes-for-a-new-hope/4050-95438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95441/", + "id": 95441, + "name": "Thor Epic Collection: When Titans Clash", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-when-titans-clash/4050-95441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95443/", + "id": 95443, + "name": "The Unbeatable Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl/4050-95443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95444/", + "id": 95444, + "name": "The Unworthy Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-unworthy-thor/4050-95444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95461/", + "id": 95461, + "name": "Doctor Strange/Punisher: Magic Bullets Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets-infinite-comi/4050-95461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95466/", + "id": 95466, + "name": "The Art of Marvel's Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-marvels-doctor-strange/4050-95466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95471/", + "id": 95471, + "name": "Ms. Marvel Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-omnibus/4050-95471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95476/", + "id": 95476, + "name": "War of Kings Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-omnibus/4050-95476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95482/", + "id": 95482, + "name": "Darth Vader: Doctor Aphra: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/darth-vader-doctor-aphra-halloween-comicfest/4050-95482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95486/", + "id": 95486, + "name": "The Haunted Mansion: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/the-haunted-mansion-halloween-comicfest/4050-95486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95498/", + "id": 95498, + "name": "Spidey: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/spidey-halloween-comicfest/4050-95498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95502/", + "id": 95502, + "name": "The Unbeatable Squirrel Girl: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-halloween-comicfest/4050-95502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95572/", + "id": 95572, + "name": "Amazing Spider-Man: Renew Your Vows", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-renew-your-vows/4050-95572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95577/", + "id": 95577, + "name": "Avengers K: Avengers Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/avengers-k-avengers-disassembled/4050-95577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95579/", + "id": 95579, + "name": "Black Panther: World of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-world-of-wakanda/4050-95579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95580/", + "id": 95580, + "name": "Civil War II: Choosing Sides", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-choosing-sides/4050-95580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95581/", + "id": 95581, + "name": "Civil War II: Gods of War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-gods-of-war/4050-95581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95587/", + "id": 95587, + "name": "The Deadly Hands of Kung Fu Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-deadly-hands-of-kung-fu-omnibus/4050-95587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95588/", + "id": 95588, + "name": "Deadpool V Gambit: The \"V\" Is For \"Vs.\"", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-v-gambit-the-v-is-for-vs/4050-95588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95596/", + "id": 95596, + "name": "Invincible Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man/4050-95596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95606/", + "id": 95606, + "name": "Rocket Raccoon & Groot: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-groot-civil-war-ii/4050-95606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95613/", + "id": 95613, + "name": "Gwenpool, The Unbelievable: Believe It", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-the-unbelievable-believe-it/4050-95613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95723/", + "id": 95723, + "name": "Civil War II: Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-kingpin/4050-95723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95724/", + "id": 95724, + "name": "Civil War II: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-xmen/4050-95724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95747/", + "id": 95747, + "name": "Squadron Supreme: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-civil-war-ii/4050-95747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95750/", + "id": 95750, + "name": "Thanos", + "site_detail_url": "https://comicvine.gamespot.com/thanos/4050-95750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95754/", + "id": 95754, + "name": "Uncanny X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-annual/4050-95754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95755/", + "id": 95755, + "name": "Uncanny X-Men: Superior: Apocalypse Wars", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-superior-apocalypse-wars/4050-95755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95762/", + "id": 95762, + "name": "Avengers Epic Collection: Once An Avenger", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-once-an-avenger/4050-95762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95763/", + "id": 95763, + "name": "Howard The Duck: Good Night, and Good Duck", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-good-night-and-good-duck/4050-95763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95807/", + "id": 95807, + "name": "All-New X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-annual/4050-95807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95808/", + "id": 95808, + "name": "Amazing Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-annual/4050-95808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95813/", + "id": 95813, + "name": "Captain Britain: Legacy of A Legend", + "site_detail_url": "https://comicvine.gamespot.com/captain-britain-legacy-of-a-legend/4050-95813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95814/", + "id": 95814, + "name": "Captain Marvel By Jim Starlin: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-by-jim-starlin-the-complete-collect/4050-95814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95817/", + "id": 95817, + "name": "Contest of Champions: Final Fight", + "site_detail_url": "https://comicvine.gamespot.com/contest-of-champions-final-fight/4050-95817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95819/", + "id": 95819, + "name": "Drax: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/drax-the-childrens-crusade/4050-95819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95825/", + "id": 95825, + "name": "Guardians of the Galaxy: New Guard - Wanted", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-wanted/4050-95825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95838/", + "id": 95838, + "name": "Star Wars: Darth Vader: End of Games", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-end-of-games/4050-95838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95843/", + "id": 95843, + "name": "Ultimates 2", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2/4050-95843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95844/", + "id": 95844, + "name": "The Unbeatable Squirrel Girl: I Kissed A Squirrel And I Liked It", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-i-kissed-a-squirrel-a/4050-95844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95845/", + "id": 95845, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4050-95845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-95867/", + "id": 95867, + "name": "A Year Of Marvels: November Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-november-infinite-comic/4050-95867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96060/", + "id": 96060, + "name": "Barnes & Noble Make Mine Marvel Sampler", + "site_detail_url": "https://comicvine.gamespot.com/barnes-noble-make-mine-marvel-sampler/4050-96060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96068/", + "id": 96068, + "name": "ESPN: The Body Issue: Super Heroes Edition", + "site_detail_url": "https://comicvine.gamespot.com/espn-the-body-issue-super-heroes-edition/4050-96068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96069/", + "id": 96069, + "name": "Guardians of the Galaxy: Rocket's Powerful Plan", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-rockets-powerful-plan/4050-96069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96090/", + "id": 96090, + "name": "Popsicle", + "site_detail_url": "https://comicvine.gamespot.com/popsicle/4050-96090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96101/", + "id": 96101, + "name": "Zoned Comics: Bullies in a Strange Land", + "site_detail_url": "https://comicvine.gamespot.com/zoned-comics-bullies-in-a-strange-land/4050-96101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96138/", + "id": 96138, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-96138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96144/", + "id": 96144, + "name": "IvX", + "site_detail_url": "https://comicvine.gamespot.com/ivx/4050-96144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96148/", + "id": 96148, + "name": "Luke Cage, Iron Fist & The Heroes For Hire", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-iron-fist-the-heroes-for-hire/4050-96148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96149/", + "id": 96149, + "name": "Moon Knight: Lunatic", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-lunatic/4050-96149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96159/", + "id": 96159, + "name": "The Sensational She-Hulk By John Byrne: The Return", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-shehulk-by-john-byrne-the-return/4050-96159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96164/", + "id": 96164, + "name": "Star Wars: Episode III: Revenge of the Sith", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-episode-iii-revenge-of-the-sith/4050-96164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96168/", + "id": 96168, + "name": "Venom: Space Knight - Enemies And Allies", + "site_detail_url": "https://comicvine.gamespot.com/venom-space-knight-enemies-and-allies/4050-96168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96169/", + "id": 96169, + "name": "Vision: Little Better Than A Beast", + "site_detail_url": "https://comicvine.gamespot.com/vision-little-better-than-a-beast/4050-96169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96181/", + "id": 96181, + "name": "Guardians of the Galaxy: Awesome Mix Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-awesome-mix-infinite-comic/4050-96181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96200/", + "id": 96200, + "name": "Mighty Thor: Lords of Midgard", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor-lords-of-midgard/4050-96200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96205/", + "id": 96205, + "name": "Young Avengers By Allan Heinberg & Jim Cheung Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-allan-heinberg-jim-cheung-comple/4050-96205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96278/", + "id": 96278, + "name": "Captain America: Steve Rogers - Hail Hydra", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers-hail-hydra/4050-96278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96284/", + "id": 96284, + "name": "Star Wars: Doctor Aphra", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra/4050-96284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96300/", + "id": 96300, + "name": "Nova", + "site_detail_url": "https://comicvine.gamespot.com/nova/4050-96300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96307/", + "id": 96307, + "name": "Slapstick", + "site_detail_url": "https://comicvine.gamespot.com/slapstick/4050-96307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96310/", + "id": 96310, + "name": "Star Wars: The Force Awakens Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-force-awakens-adaptation/4050-96310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96311/", + "id": 96311, + "name": "Star Wars: Poe Dameron: Black Squadron", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron-black-squadron/4050-96311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96317/", + "id": 96317, + "name": "X-Men Epic Collection: Lonely Are The Hunted", + "site_detail_url": "https://comicvine.gamespot.com/xmen-epic-collection-lonely-are-the-hunted/4050-96317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96318/", + "id": 96318, + "name": "A Year of Marvels: The Uncanny", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels-the-uncanny/4050-96318/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96374/", + "id": 96374, + "name": "Deadpool By Posehn & Duggan Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-posehn-duggan-omnibus/4050-96374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96375/", + "id": 96375, + "name": "Guardians of the Galaxy By Brian Michael Bendis Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-brian-michael-bendis-om/4050-96375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96376/", + "id": 96376, + "name": "Marvel Free Previews Monsters Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/marvel-free-previews-monsters-unleashed/4050-96376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96377/", + "id": 96377, + "name": "Star Wars: Kanan Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-kanan-omnibus/4050-96377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96633/", + "id": 96633, + "name": "Avengers Vs X-Men Companion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-xmen-companion/4050-96633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96646/", + "id": 96646, + "name": "Agents of S.H.I.E.L.D.: Under New Management", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-shield-under-new-management/4050-96646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96657/", + "id": 96657, + "name": "Doctor Strange/Punisher: Magic Bullets", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets/4050-96657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96660/", + "id": 96660, + "name": "Gwenpool Holiday Special: Merry Mix-Up", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-holiday-special-merry-mixup/4050-96660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96661/", + "id": 96661, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-96661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96667/", + "id": 96667, + "name": "Ms. Marvel: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-civil-war-ii/4050-96667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96710/", + "id": 96710, + "name": "Ghost Rider X-Mas Special Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-xmas-special-infinite-comic/4050-96710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96713/", + "id": 96713, + "name": "Uncanny Inhumans: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans-civil-war-ii/4050-96713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96714/", + "id": 96714, + "name": "Web Warriors of the Spider-Verse: Spiders Vs.", + "site_detail_url": "https://comicvine.gamespot.com/web-warriors-of-the-spiderverse-spiders-vs/4050-96714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96715/", + "id": 96715, + "name": "X-Men: Inferno Crossovers", + "site_detail_url": "https://comicvine.gamespot.com/xmen-inferno-crossovers/4050-96715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97041/", + "id": 97041, + "name": "Gamora", + "site_detail_url": "https://comicvine.gamespot.com/gamora/4050-97041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97060/", + "id": 97060, + "name": "Marvel Universe Avengers: Ultron Revolution", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-avengers-ultron-revolution/4050-97060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97062/", + "id": 97062, + "name": "The Mighty Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-captain-marvel/4050-97062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97064/", + "id": 97064, + "name": "Patsy Walker, A.K.A. Hellcat!: Don't Stop Me-Ow", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-aka-hellcat-dont-stop-meow/4050-97064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97066/", + "id": 97066, + "name": "Power Man and Iron Fist: Sweet Christmas Annual", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-sweet-christmas-annual/4050-97066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97067/", + "id": 97067, + "name": "The Punisher: On The Road", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-on-the-road/4050-97067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97070/", + "id": 97070, + "name": "Silk: The Negative", + "site_detail_url": "https://comicvine.gamespot.com/silk-the-negative/4050-97070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97071/", + "id": 97071, + "name": "Spider-Gwen: Weapon of Choice", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-weapon-of-choice/4050-97071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97073/", + "id": 97073, + "name": "Star-Lord", + "site_detail_url": "https://comicvine.gamespot.com/star-lord/4050-97073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97082/", + "id": 97082, + "name": "Ultimates: Omniversal: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-omniversal-civil-war-ii/4050-97082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97084/", + "id": 97084, + "name": "Venom: Separation Anxiety", + "site_detail_url": "https://comicvine.gamespot.com/venom-separation-anxiety/4050-97084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97134/", + "id": 97134, + "name": "Amazing Spider-Man Epic Collection: Great Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-epic-collection-great-responsibi/4050-97134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97135/", + "id": 97135, + "name": "Deadpool: World's Greatest: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-civil-war-ii/4050-97135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97420/", + "id": 97420, + "name": "Guidebook To the Marvel Cinematic Universe – Marvel's Agents of S.H.I.E.L.D. Season Three/Marvel's Agent Carter Season Two", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-97420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97421/", + "id": 97421, + "name": "Heroes of Power: The Women of Marvel - All-New Marvel Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/heroes-of-power-the-women-of-marvel-allnew-marvel-/4050-97421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97422/", + "id": 97422, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4050-97422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97425/", + "id": 97425, + "name": "Moon Girl and Devil Dinosaur: Cosmic Cooties", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-cosmic-cooties/4050-97425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97426/", + "id": 97426, + "name": "New Avengers: A.I.M. - Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-aim-civil-war-ii/4050-97426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97427/", + "id": 97427, + "name": "Nighthawk: Hate Makes Hate", + "site_detail_url": "https://comicvine.gamespot.com/nighthawk-hate-makes-hate/4050-97427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97428/", + "id": 97428, + "name": "Nova: The Human Rocket - Afterburn", + "site_detail_url": "https://comicvine.gamespot.com/nova-the-human-rocket-afterburn/4050-97428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97430/", + "id": 97430, + "name": "Rocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon/4050-97430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97434/", + "id": 97434, + "name": "Spider-Woman: Shifting Gears - Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/spiderwoman-shifting-gears-civil-war-ii/4050-97434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97435/", + "id": 97435, + "name": "Spidey: After-School Special", + "site_detail_url": "https://comicvine.gamespot.com/spidey-afterschool-special/4050-97435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97436/", + "id": 97436, + "name": "Star Wars Legends Epic Collection: The Clone Wars", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-clone-wars/4050-97436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97439/", + "id": 97439, + "name": "Thunderbolts: There Is No High Road", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-there-is-no-high-road/4050-97439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97441/", + "id": 97441, + "name": "The Totally Awesome Hulk: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/the-totally-awesome-hulk-civil-war-ii/4050-97441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97471/", + "id": 97471, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Agent Carter Season Two", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-97471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97472/", + "id": 97472, + "name": "Guidebook to the Marvel Cinematic Universe - Marvel's Agents of S.H.I.E.L.D. Season Three", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-97472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97745/", + "id": 97745, + "name": "Deadpool the Duck", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-duck/4050-97745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97755/", + "id": 97755, + "name": "The Incredible Hulk Epic Collection: Future Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-epic-collection-future-imperfe/4050-97755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97759/", + "id": 97759, + "name": "Guardians of the Galaxy Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-adaptation/4050-97759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97760/", + "id": 97760, + "name": "Marvel Universe Ultimate Spider-Man Vs. The Sinister Six", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-vs-the-sinister/4050-97760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97761/", + "id": 97761, + "name": "Monsters Unleashed! Prelude", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-prelude/4050-97761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97768/", + "id": 97768, + "name": "Star Wars: Han Solo", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-han-solo/4050-97768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97772/", + "id": 97772, + "name": "U.S.Avengers", + "site_detail_url": "https://comicvine.gamespot.com/u-s-avengers/4050-97772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97774/", + "id": 97774, + "name": "The Unstoppable Wasp", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp/4050-97774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97870/", + "id": 97870, + "name": "Mega Marvel Catalog", + "site_detail_url": "https://comicvine.gamespot.com/mega-marvel-catalog/4050-97870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97872/", + "id": 97872, + "name": "Amazing Spider-Man: Worldwide", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-worldwide/4050-97872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97875/", + "id": 97875, + "name": "Deadpool: World's Greatest", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest/4050-97875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97880/", + "id": 97880, + "name": "New Avengers by Brian Michael Bendis: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4050-97880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97896/", + "id": 97896, + "name": "Monsters Unleashed! Free Preview", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-free-preview/4050-97896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97901/", + "id": 97901, + "name": "Captain America: Sam Wilson - Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-civil-war-ii/4050-97901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97909/", + "id": 97909, + "name": "Guardians of the Galaxy: Road To Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-road-to-annihilation/4050-97909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97928/", + "id": 97928, + "name": "Wolverine: Weapon X Unbound", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-unbound/4050-97928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97982/", + "id": 97982, + "name": "Marvel New Year's Eve Special Infinite Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-new-years-eve-special-infinite-comic/4050-97982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98039/", + "id": 98039, + "name": "A-Force: Rage Against the Dying of the Light", + "site_detail_url": "https://comicvine.gamespot.com/aforce-rage-against-the-dying-of-the-light/4050-98039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98060/", + "id": 98060, + "name": "Ka-Zar: Savage Dawn", + "site_detail_url": "https://comicvine.gamespot.com/kazar-savage-dawn/4050-98060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98067/", + "id": 98067, + "name": "Monsters Unleashed!", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed/4050-98067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98072/", + "id": 98072, + "name": "Scarlet Witch: World of Witchcraft", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch-world-of-witchcraft/4050-98072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98074/", + "id": 98074, + "name": "Spider-Man 2099: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099-civil-war-ii/4050-98074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98075/", + "id": 98075, + "name": "Star Wars: Last Flight of the Harbinger", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-last-flight-of-the-harbinger/4050-98075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98078/", + "id": 98078, + "name": "Wolverine: Old Man Logan - The Last Ronin", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-the-last-ronin/4050-98078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98091/", + "id": 98091, + "name": "Monsters Unleashed! Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-special-edition/4050-98091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98106/", + "id": 98106, + "name": "Power Pack: Pack Attack!", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-pack-attack/4050-98106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98110/", + "id": 98110, + "name": "Wolverine by Daniel Way: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-daniel-way-the-complete-collection/4050-98110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98111/", + "id": 98111, + "name": "Wolverine Origin: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-origin-the-complete-collection/4050-98111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98112/", + "id": 98112, + "name": "X-Men and Power Pack: The Power of X", + "site_detail_url": "https://comicvine.gamespot.com/xmen-and-power-pack-the-power-of-x/4050-98112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98113/", + "id": 98113, + "name": "Punisher MAX: From First to Last", + "site_detail_url": "https://comicvine.gamespot.com/punisher-max-from-first-to-last/4050-98113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98327/", + "id": 98327, + "name": "Civil War II: The Oath", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-the-oath/4050-98327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98337/", + "id": 98337, + "name": "Guidebook To the Marvel Cinematic Universe – Marvel's Captain America: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-98337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98341/", + "id": 98341, + "name": "Iron Man Epic Collection: By Force of Arms", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-by-force-of-arms/4050-98341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98350/", + "id": 98350, + "name": "Marvel Tsum Tsum: Takeover!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tsum-tsum-takeover/4050-98350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98358/", + "id": 98358, + "name": "Star Wars Legends Epic Collection: The Newspaper Strips", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-newspaper-st/4050-98358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98361/", + "id": 98361, + "name": "Uncanny X-Men: Superior - Waking From The Dream", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-superior-waking-from-the-dream/4050-98361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98395/", + "id": 98395, + "name": "Black Panther: Doomwar", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-doomwar/4050-98395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98397/", + "id": 98397, + "name": "Deadpool Beginnings Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-beginnings-omnibus/4050-98397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98512/", + "id": 98512, + "name": "Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/bullseye/4050-98512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98513/", + "id": 98513, + "name": "Captain Marvel: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-civil-war-ii/4050-98513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98515/", + "id": 98515, + "name": "Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii/4050-98515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98516/", + "id": 98516, + "name": "Color Your Own Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-wolverine/4050-98516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98517/", + "id": 98517, + "name": "Star Wars: Darth Maul", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-maul/4050-98517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98540/", + "id": 98540, + "name": "Wolverine Epic Collection: Shadow of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-shadow-of-apocalypse/4050-98540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98560/", + "id": 98560, + "name": "Alpha Flight By John Byrne Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-by-john-byrne-omnibus/4050-98560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98567/", + "id": 98567, + "name": "Spider-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen/4050-98567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98568/", + "id": 98568, + "name": "True Believers: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine/4050-98568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98569/", + "id": 98569, + "name": "True Believers: Wolverine vs Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-vs-hulk/4050-98569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98570/", + "id": 98570, + "name": "War of Kings Aftermath: Realm of Kings Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-aftermath-realm-of-kings-omnibus/4050-98570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98721/", + "id": 98721, + "name": "All-New, All-Different Avengers: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-avengers-civil-war-ii/4050-98721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98724/", + "id": 98724, + "name": "Avengers K: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-k-secret-invasion/4050-98724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98729/", + "id": 98729, + "name": "Cloak and Dagger: Shadows and Light", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-shadows-and-light/4050-98729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98730/", + "id": 98730, + "name": "Daredevil Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-omnibus/4050-98730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98741/", + "id": 98741, + "name": "Ghost Rider/Wolverine/Punisher: Hearts of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/ghost-riderwolverinepunisher-hearts-of-darkness/4050-98741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98747/", + "id": 98747, + "name": "Invincible Iron Man: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-civil-war-ii/4050-98747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98750/", + "id": 98750, + "name": "Kingpin", + "site_detail_url": "https://comicvine.gamespot.com/kingpin/4050-98750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98807/", + "id": 98807, + "name": "True Believers: Wolverine - Origin", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-origin/4050-98807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98808/", + "id": 98808, + "name": "True Believers: Wolverine - Save the Tiger", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-save-the-tiger/4050-98808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98809/", + "id": 98809, + "name": "True Believers: Wolverine - Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-weapon-x/4050-98809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98886/", + "id": 98886, + "name": "Deadpool & The Mercs For Money: Mo' Mercs, Mo' Monkeys", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-mercs-for-money-mo-mercs-mo-monkeys/4050-98886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98887/", + "id": 98887, + "name": "Deadpool and the Secret Defenders", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-the-secret-defenders/4050-98887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98890/", + "id": 98890, + "name": "Extraordinary X-Men: Kingdoms Fall", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-xmen-kingdoms-fall/4050-98890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98895/", + "id": 98895, + "name": "Guardians of the Galaxy: New Guard - Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-civil-war-ii/4050-98895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98914/", + "id": 98914, + "name": "Wolverine: Prehistory", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-prehistory/4050-98914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98940/", + "id": 98940, + "name": "True Believers: Wolverine: Enemy of the State", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-enemy-of-the-state/4050-98940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98941/", + "id": 98941, + "name": "True Believers: Wolverine: X-23", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-x23/4050-98941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98950/", + "id": 98950, + "name": "Wolverine: Soultaker", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-soultaker/4050-98950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-98973/", + "id": 98973, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-98973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99017/", + "id": 99017, + "name": "All-New X-Men: Inevitable: Hell Hath So Much Fury", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-inevitable-hell-hath-so-much-fury/4050-99017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99027/", + "id": 99027, + "name": "Daredevil: Back In Black: Dark Art", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-dark-art/4050-99027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99028/", + "id": 99028, + "name": "Daredevil Epic Collection: Brother, Take My Hand", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-brother-take-my-hand/4050-99028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99029/", + "id": 99029, + "name": "Deadpool: Back In Black", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-back-in-black/4050-99029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99031/", + "id": 99031, + "name": "Doctor Strange: Blood In The Aether", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-blood-in-the-aether/4050-99031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99034/", + "id": 99034, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4050-99034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99035/", + "id": 99035, + "name": "Elektra by Peter Milligan, Larry Hama, & Mike Deodato Jr.: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/elektra-by-peter-milligan-larry-hama-mike-deodato-/4050-99035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99049/", + "id": 99049, + "name": "Punisher & Bullseye: Deadliest Hits", + "site_detail_url": "https://comicvine.gamespot.com/punisher-bullseye-deadliest-hits/4050-99049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99062/", + "id": 99062, + "name": "Wolverine vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-deadpool/4050-99062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99085/", + "id": 99085, + "name": "True Believers: All-New Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-allnew-wolverine/4050-99085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99086/", + "id": 99086, + "name": "True Believers: Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-old-man-logan/4050-99086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99087/", + "id": 99087, + "name": "True Believers: Wolverine and the X-Men", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-and-the-xmen/4050-99087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99242/", + "id": 99242, + "name": "America", + "site_detail_url": "https://comicvine.gamespot.com/america/4050-99242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99245/", + "id": 99245, + "name": "The Clone Conspiracy Omega", + "site_detail_url": "https://comicvine.gamespot.com/the-clone-conspiracy-omega/4050-99245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99248/", + "id": 99248, + "name": "Deadpool: The Adamantium Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-adamantium-collection/4050-99248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99249/", + "id": 99249, + "name": "Death of X", + "site_detail_url": "https://comicvine.gamespot.com/death-of-x/4050-99249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99255/", + "id": 99255, + "name": "Karnak: The Flaw In All Things", + "site_detail_url": "https://comicvine.gamespot.com/karnak-the-flaw-in-all-things/4050-99255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99269/", + "id": 99269, + "name": "Marvel's Spider-Man: Homecoming Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-homecoming-prelude/4050-99269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99273/", + "id": 99273, + "name": "X-Factor Epic Collection: Genesis & Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/xfactor-epic-collection-genesis-apocalypse/4050-99273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99293/", + "id": 99293, + "name": "Daredevil by Mark Waid Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-mark-waid-omnibus/4050-99293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99296/", + "id": 99296, + "name": "Guardians of the Galaxy by Jim Valentino Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-jim-valentino-omnibus/4050-99296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99299/", + "id": 99299, + "name": "Uncanny Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans/4050-99299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99438/", + "id": 99438, + "name": "Cloak and Dagger: Lost and Found", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-lost-and-found/4050-99438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99444/", + "id": 99444, + "name": "Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/man-thing/4050-99444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99445/", + "id": 99445, + "name": "Max Ride: Final Flight", + "site_detail_url": "https://comicvine.gamespot.com/max-ride-final-flight/4050-99445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99448/", + "id": 99448, + "name": "New Mutants Epic Collection: Renewal", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-epic-collection-renewal/4050-99448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99450/", + "id": 99450, + "name": "Power Man and Iron Fist: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-civil-war-ii/4050-99450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99481/", + "id": 99481, + "name": "Marvel Illustrated: The Three Musketeers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-three-musketeers/4050-99481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99482/", + "id": 99482, + "name": "Marvel Illustrated: Moby Dick", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-moby-dick/4050-99482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99483/", + "id": 99483, + "name": "Marvel Illustrated: The Iliad", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-iliad/4050-99483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99484/", + "id": 99484, + "name": "Emma", + "site_detail_url": "https://comicvine.gamespot.com/emma/4050-99484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99485/", + "id": 99485, + "name": "Northanger Abbey", + "site_detail_url": "https://comicvine.gamespot.com/northanger-abbey/4050-99485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99486/", + "id": 99486, + "name": "Marvel Illustrated: Kidnapped!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-kidnapped/4050-99486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99487/", + "id": 99487, + "name": "Dracula", + "site_detail_url": "https://comicvine.gamespot.com/dracula/4050-99487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99488/", + "id": 99488, + "name": "Trojan War", + "site_detail_url": "https://comicvine.gamespot.com/trojan-war/4050-99488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99489/", + "id": 99489, + "name": "Marvel Illustrated: The Man In The Iron Mask", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-the-man-in-the-iron-mask/4050-99489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99490/", + "id": 99490, + "name": "Marvel Illustrated: Treasure Island", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrated-treasure-island/4050-99490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99861/", + "id": 99861, + "name": "Excalibur Epic Collection: The Sword Is Drawn", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-epic-collection-the-sword-is-drawn/4050-99861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99863/", + "id": 99863, + "name": "Gwenpool, The Unbelievable: Head of M.O.D.O.K.", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-the-unbelievable-head-of-modok/4050-99863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99881/", + "id": 99881, + "name": "Wolverine vs. The Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-the-marvel-universe/4050-99881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-99943/", + "id": 99943, + "name": "Avengers: The Initiative: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-the-complete-collection/4050-99943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100025/", + "id": 100025, + "name": "Spider-Man: Black & Blue", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-black-blue/4050-100025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100071/", + "id": 100071, + "name": "Civil War II Fallout", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-ii-fallout/4050-100071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100073/", + "id": 100073, + "name": "Deadpool: Too Soon?", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-too-soon/4050-100073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100082/", + "id": 100082, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-100082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100083/", + "id": 100083, + "name": "Iron Fist: The Book of Changes", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-book-of-changes/4050-100083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100089/", + "id": 100089, + "name": "Night Raven: From The Marvel UK Vaults", + "site_detail_url": "https://comicvine.gamespot.com/night-raven-from-the-marvel-uk-vaults/4050-100089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100096/", + "id": 100096, + "name": "The Unbeatable Squirrel Girl: Like I'm The Only Squirrel In The World", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-like-im-the-only-squi/4050-100096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100097/", + "id": 100097, + "name": "Uncanny Avengers: Civil War II", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-civil-war-ii/4050-100097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100099/", + "id": 100099, + "name": "Wolverine vs. The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-the-punisher/4050-100099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100100/", + "id": 100100, + "name": "X-Force Epic Collection: Under The Gun", + "site_detail_url": "https://comicvine.gamespot.com/xforce-epic-collection-under-the-gun/4050-100100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100170/", + "id": 100170, + "name": "Iron Man: Enter the Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-enter-the-mandarin/4050-100170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100353/", + "id": 100353, + "name": "The Astonishing Ant-Man: The Trial of Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-antman-the-trial-of-antman/4050-100353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100367/", + "id": 100367, + "name": "Guardians of the Galaxy: All-New Marvel Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-allnew-marvel-treasury-edi/4050-100367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100368/", + "id": 100368, + "name": "Guidebook To The Marvel Cinematic Universe — Marvel's Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-100368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100372/", + "id": 100372, + "name": "Inhumans Prime", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-prime/4050-100372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100394/", + "id": 100394, + "name": "X-Men Epic Collection: Second Genesis", + "site_detail_url": "https://comicvine.gamespot.com/xmen-epic-collection-second-genesis/4050-100394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100395/", + "id": 100395, + "name": "X-Men Prime", + "site_detail_url": "https://comicvine.gamespot.com/xmen-prime/4050-100395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100412/", + "id": 100412, + "name": "ResurrXion Free Previews Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/resurrxion-free-previews-spotlight/4050-100412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100425/", + "id": 100425, + "name": "Avengers: Kree-Skrull Wars", + "site_detail_url": "https://comicvine.gamespot.com/avengers-kreeskrull-wars/4050-100425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100432/", + "id": 100432, + "name": "Iron Fist: The Living Weapon: Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-living-weapon-complete-collection/4050-100432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100538/", + "id": 100538, + "name": "Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage/4050-100538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100563/", + "id": 100563, + "name": "Captain America Epic Collection: Justice Is Served", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-justice-is-served/4050-100563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100564/", + "id": 100564, + "name": "Color Your Own Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-guardians-of-the-galaxy/4050-100564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100582/", + "id": 100582, + "name": "Marvel Cinematic Universe Guidebook: The Avengers Initiative", + "site_detail_url": "https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-avengers-i/4050-100582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100585/", + "id": 100585, + "name": "Mighty Avengers by Brian Michael Bendis: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4050-100585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100590/", + "id": 100590, + "name": "Royals", + "site_detail_url": "https://comicvine.gamespot.com/royals/4050-100590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100597/", + "id": 100597, + "name": "Star Wars: Rogue One Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-rogue-one-adaptation/4050-100597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100598/", + "id": 100598, + "name": "Star Wars Special Edition: A New Hope", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-special-edition-a-new-hope/4050-100598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100603/", + "id": 100603, + "name": "X-Men: Gold", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold/4050-100603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100619/", + "id": 100619, + "name": "True Believers: Giant-Size X-Men", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-giantsize-xmen/4050-100619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100620/", + "id": 100620, + "name": "True Believers: The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-xmen/4050-100620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100621/", + "id": 100621, + "name": "War of Kings Prelude: Road To War of Kings Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/war-of-kings-prelude-road-to-war-of-kings-omnibus/4050-100621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100622/", + "id": 100622, + "name": "X-Men Legacy: Legion Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/xmen-legacy-legion-omnibus/4050-100622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100678/", + "id": 100678, + "name": "Amazing Spider-Man: The Clone Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-the-clone-conspiracy/4050-100678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100682/", + "id": 100682, + "name": "Avengers: The Complete Celestial Madonna Saga", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-complete-celestial-madonna-saga/4050-100682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100687/", + "id": 100687, + "name": "Black Panther and the Crew", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-and-the-crew/4050-100687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100688/", + "id": 100688, + "name": "Captain America: Steve Rogers: The Trial of Maria Hill", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers-the-trial-of-maria-hi/4050-100688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100691/", + "id": 100691, + "name": "Deadpool vs. The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-the-punisher/4050-100691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100693/", + "id": 100693, + "name": "Enchanted Tiki Room", + "site_detail_url": "https://comicvine.gamespot.com/enchanted-tiki-room/4050-100693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100709/", + "id": 100709, + "name": "Weapon X", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x/4050-100709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100712/", + "id": 100712, + "name": "X-Men: Blue", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue/4050-100712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100742/", + "id": 100742, + "name": "True Believers: Cable & The New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-cable-the-new-mutants/4050-100742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100743/", + "id": 100743, + "name": "True Believers: New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-new-mutants/4050-100743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100744/", + "id": 100744, + "name": "True Believers: X-Force", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-xforce/4050-100744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100755/", + "id": 100755, + "name": "Magician: Apprentice Collected Edition", + "site_detail_url": "https://comicvine.gamespot.com/magician-apprentice-collected-edition/4050-100755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100811/", + "id": 100811, + "name": "Cage!", + "site_detail_url": "https://comicvine.gamespot.com/cage/4050-100811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100812/", + "id": 100812, + "name": "Captain America: Sam Wilson: #TAKEBACKTHESHIELD", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-takebacktheshield/4050-100812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100819/", + "id": 100819, + "name": "Guardians of the Galaxy: Dream On", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-dream-on/4050-100819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100828/", + "id": 100828, + "name": "Mockingbird: My Feminist Agenda", + "site_detail_url": "https://comicvine.gamespot.com/mockingbird-my-feminist-agenda/4050-100828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100829/", + "id": 100829, + "name": "Monsters Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed/4050-100829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100830/", + "id": 100830, + "name": "Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury/4050-100830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100839/", + "id": 100839, + "name": "Scarlet Witch: The Final Hex", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch-the-final-hex/4050-100839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100840/", + "id": 100840, + "name": "Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire/4050-100840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100843/", + "id": 100843, + "name": "Spider-Man: Friendly Neighborhood Spider-Man by Peter David - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-friendly-neighborhood-spiderman-by-peter/4050-100843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100851/", + "id": 100851, + "name": "X-Men '92: Lilapalooza", + "site_detail_url": "https://comicvine.gamespot.com/xmen-92-lilapalooza/4050-100851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100852/", + "id": 100852, + "name": "A Year of Marvels", + "site_detail_url": "https://comicvine.gamespot.com/a-year-of-marvels/4050-100852/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100887/", + "id": 100887, + "name": "True Believers: X-Factor: Mutant Genesis", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-xfactor-mutant-genesis/4050-100887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100888/", + "id": 100888, + "name": "True Believers: X-Men: Blue", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-xmen-blue/4050-100888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100896/", + "id": 100896, + "name": "Spider-Girl: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-legacy/4050-100896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100897/", + "id": 100897, + "name": "Spider-Girl: Avenging Allies", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-avenging-allies/4050-100897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100898/", + "id": 100898, + "name": "Spider-Girl: Turning Point", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-turning-point/4050-100898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100962/", + "id": 100962, + "name": "Avengers Epic Collection: The Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-masters-of-evil/4050-100962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100966/", + "id": 100966, + "name": "Ben Reilly: Scarlet Spider", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider/4050-100966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100969/", + "id": 100969, + "name": "Black Widow: No More Secrets", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-no-more-secrets/4050-100969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100973/", + "id": 100973, + "name": "Carnage: What Dwells Beneath", + "site_detail_url": "https://comicvine.gamespot.com/carnage-what-dwells-beneath/4050-100973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100976/", + "id": 100976, + "name": "Dark Tower: The Drawing of the Three - The Sailor", + "site_detail_url": "https://comicvine.gamespot.com/dark-tower-the-drawing-of-the-three-the-sailor/4050-100976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100977/", + "id": 100977, + "name": "Deadpool & The Mercs For Money: IvX", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-mercs-for-money-ivx/4050-100977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100978/", + "id": 100978, + "name": "Deadpool: World's Greatest: Patience: Zero", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-patience-zero/4050-100978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100991/", + "id": 100991, + "name": "Mosaic: King of the World", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-king-of-the-world/4050-100991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101000/", + "id": 101000, + "name": "Secret Empire Prelude", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-prelude/4050-101000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101006/", + "id": 101006, + "name": "X-Men Origins: Firestar", + "site_detail_url": "https://comicvine.gamespot.com/xmen-origins-firestar/4050-101006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101012/", + "id": 101012, + "name": "All-New, All-Different Marvel Reading Chronology", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-marvel-reading-chronology/4050-101012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101020/", + "id": 101020, + "name": "Secret Empire Free Previews Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-free-previews-spotlight/4050-101020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101025/", + "id": 101025, + "name": "True Believers: Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-astonishing-xmen/4050-101025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101026/", + "id": 101026, + "name": "True Believers: Generation X", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-generation-x/4050-101026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101027/", + "id": 101027, + "name": "True Believers: X-Men Gold", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-xmen-gold/4050-101027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101036/", + "id": 101036, + "name": "Spider-Girl: Endgame", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-endgame/4050-101036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101037/", + "id": 101037, + "name": "Spider-Girl: Too Many Spiders", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-too-many-spiders/4050-101037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101158/", + "id": 101158, + "name": "All-New Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/allnew-guardians-of-the-galaxy/4050-101158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101159/", + "id": 101159, + "name": "All-New Wolverine: Enemy of the State II", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-enemy-of-the-state-ii/4050-101159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101161/", + "id": 101161, + "name": "Amazing Spider-Man Epic Collection: The Goblin's Last Stand", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-epic-collection-the-goblins-last/4050-101161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101166/", + "id": 101166, + "name": "Black Bolt", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt/4050-101166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101167/", + "id": 101167, + "name": "Champions: Change The World", + "site_detail_url": "https://comicvine.gamespot.com/champions-change-the-world/4050-101167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101180/", + "id": 101180, + "name": "Guardians of the Galaxy: Mission Breakout", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-mission-breakout/4050-101180/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101181/", + "id": 101181, + "name": "Guardians of the Galaxy: Mother Entropy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy/4050-101181/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101195/", + "id": 101195, + "name": "Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey/4050-101195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101200/", + "id": 101200, + "name": "Monsters: The Marvel Monsterbus by Stan Lee, Larry Lieber & Jack Kirby", + "site_detail_url": "https://comicvine.gamespot.com/monsters-the-marvel-monsterbus-by-stan-lee-larry-l/4050-101200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101241/", + "id": 101241, + "name": "Guardians of the Galaxy: Hi-Tech Heroes", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-hitech-heroes/4050-101241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101242/", + "id": 101242, + "name": "Marvels Guardians of the Galaxy Vol. 2: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvels-guardians-of-the-galaxy-vol-2-the-art-of-t/4050-101242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101264/", + "id": 101264, + "name": "Free Comic Book Day 2017 (All-New Guardians of the Galaxy)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2017-allnew-guardians-of-the-g/4050-101264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101266/", + "id": 101266, + "name": "Free Comic Book Day 2017 (Secret Empire)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2017-secret-empire/4050-101266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101360/", + "id": 101360, + "name": "Stan Lee Meets", + "site_detail_url": "https://comicvine.gamespot.com/stan-lee-meets/4050-101360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101364/", + "id": 101364, + "name": "Spider-Girl: Betrayed", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-betrayed/4050-101364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101379/", + "id": 101379, + "name": "Avengers K: Assembling The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-k-assembling-the-avengers/4050-101379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101397/", + "id": 101397, + "name": "Jessica Jones: Uncaged!", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-uncaged/4050-101397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101410/", + "id": 101410, + "name": "Rocket", + "site_detail_url": "https://comicvine.gamespot.com/rocket/4050-101410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101411/", + "id": 101411, + "name": "Secret Warriors", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors/4050-101411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101413/", + "id": 101413, + "name": "Spider-Man: The Lifeline Tablet Saga", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-the-lifeline-tablet-saga/4050-101413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101415/", + "id": 101415, + "name": "Star Wars: Screaming Citadel", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-screaming-citadel/4050-101415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101420/", + "id": 101420, + "name": "Zombies Assemble", + "site_detail_url": "https://comicvine.gamespot.com/zombies-assemble/4050-101420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101432/", + "id": 101432, + "name": "Spider-Girl: Secret Lives", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-secret-lives/4050-101432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101476/", + "id": 101476, + "name": "Deadpool: Bad Blood", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-bad-blood/4050-101476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101478/", + "id": 101478, + "name": "Generation X", + "site_detail_url": "https://comicvine.gamespot.com/generation-x/4050-101478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101482/", + "id": 101482, + "name": "Iron Man: Director of S.H.I.E.L.D. - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-director-of-shield-the-complete-collectio/4050-101482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101484/", + "id": 101484, + "name": "Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage/4050-101484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101491/", + "id": 101491, + "name": "Spider-Man/Spider-Gwen: Sitting In A Tree", + "site_detail_url": "https://comicvine.gamespot.com/spidermanspidergwen-sitting-in-a-tree/4050-101491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101492/", + "id": 101492, + "name": "Spider-Man vs. The Vulture", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-vs-the-vulture/4050-101492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101521/", + "id": 101521, + "name": "Spider-Girl: Marked For Death", + "site_detail_url": "https://comicvine.gamespot.com/spidergirl-marked-for-death/4050-101521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101568/", + "id": 101568, + "name": "Laugh Digest", + "site_detail_url": "https://comicvine.gamespot.com/laugh-digest/4050-101568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101601/", + "id": 101601, + "name": "Color Your Own Marvel Tsum Tsum", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-marvel-tsum-tsum/4050-101601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101603/", + "id": 101603, + "name": "Deadpool: World's Greatest: Deadpool Does Shakespeare", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-deadpool-does-shakespeare/4050-101603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101607/", + "id": 101607, + "name": "Doctor Strange and the Sorcerers Supreme: Out of Time", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-out-of-ti/4050-101607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101616/", + "id": 101616, + "name": "I Am Groot", + "site_detail_url": "https://comicvine.gamespot.com/i-am-groot/4050-101616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101627/", + "id": 101627, + "name": "Moon Knight: Reincarnations", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-reincarnations/4050-101627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101636/", + "id": 101636, + "name": "Silver Surfer Epic Collection: The Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-the-infinity-gauntle/4050-101636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101637/", + "id": 101637, + "name": "Spider-Man by Todd Dezago & Mike Wieringo", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-by-todd-dezago-mike-wieringo/4050-101637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101638/", + "id": 101638, + "name": "Star-Lord Annual", + "site_detail_url": "https://comicvine.gamespot.com/starlord-annual/4050-101638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101640/", + "id": 101640, + "name": "Uncanny Inhumans: IvX", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-inhumans-ivx/4050-101640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101641/", + "id": 101641, + "name": "The Unworthy Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-unworthy-thor/4050-101641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101688/", + "id": 101688, + "name": "Guardians of the Galaxy: EcoSport Adventure", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-ecosport-adventure/4050-101688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101764/", + "id": 101764, + "name": "Avengers: Four", + "site_detail_url": "https://comicvine.gamespot.com/avengers-four/4050-101764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101767/", + "id": 101767, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4050-101767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101770/", + "id": 101770, + "name": "Deadpool the Duck", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-duck/4050-101770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101776/", + "id": 101776, + "name": "Hawkeye: Kate Bishop: Anchor Points", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-kate-bishop-anchor-points/4050-101776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101778/", + "id": 101778, + "name": "Infamous Iron Man: Infamous", + "site_detail_url": "https://comicvine.gamespot.com/infamous-iron-man-infamous/4050-101778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101788/", + "id": 101788, + "name": "Secret Empire: Uprising", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-uprising/4050-101788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101789/", + "id": 101789, + "name": "Solo: The One-Man War On Terror", + "site_detail_url": "https://comicvine.gamespot.com/solo-the-oneman-war-on-terror/4050-101789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101790/", + "id": 101790, + "name": "Spider-Woman: Shifting Gears: Scare Tactics", + "site_detail_url": "https://comicvine.gamespot.com/spiderwoman-shifting-gears-scare-tactics/4050-101790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101797/", + "id": 101797, + "name": "Wolverine: Old Man Logan: Old Monsters", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-old-monsters/4050-101797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101801/", + "id": 101801, + "name": "Young Avengers by Allan Heinberg & Jim Cheung: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-allan-heinberg-jim-cheung-the-ch/4050-101801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101812/", + "id": 101812, + "name": "Squadron Supreme: Finding Namor", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-finding-namor/4050-101812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101838/", + "id": 101838, + "name": "Brother Billy, the Pain From Plains", + "site_detail_url": "https://comicvine.gamespot.com/brother-billy-the-pain-from-plains/4050-101838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101919/", + "id": 101919, + "name": "Amazing Spider-Man Epic Collection: Kraven's Last Hunt", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-epic-collection-kravens-last-hun/4050-101919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101928/", + "id": 101928, + "name": "Color Your Own Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-spiderman/4050-101928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101937/", + "id": 101937, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4050-101937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101954/", + "id": 101954, + "name": "Secret Empire: Brave New World", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-brave-new-world/4050-101954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101957/", + "id": 101957, + "name": "Spider-Man: Amazing Origins", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-amazing-origins/4050-101957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101958/", + "id": 101958, + "name": "Spider-Man/Deadpool: Side Pieces", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-side-pieces/4050-101958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101959/", + "id": 101959, + "name": "Spider-Man: Homecoming Prelude", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-homecoming-prelude/4050-101959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-101960/", + "id": 101960, + "name": "Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/darth-vader/4050-101960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102029/", + "id": 102029, + "name": "Spider-Man by Michelinie and Larsen Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-by-michelinie-and-larsen-omnibus/4050-102029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102049/", + "id": 102049, + "name": "Franklin Richards: Not-So-Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-notsosecret-invasion/4050-102049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102100/", + "id": 102100, + "name": "Amazing Spider-Man: Renew Your Vows: Brawl In The Family", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-renew-your-vows-brawl-in-the-fam/4050-102100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102105/", + "id": 102105, + "name": "Black Panther: World of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-world-of-wakanda/4050-102105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102106/", + "id": 102106, + "name": "Brian Michael Bendis: Crime Noir Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/brian-michael-bendis-crime-noir-omnibus/4050-102106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102109/", + "id": 102109, + "name": "The Defenders", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders/4050-102109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102133/", + "id": 102133, + "name": "Secret Empire: United", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-united/4050-102133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102139/", + "id": 102139, + "name": "Venom: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/venom-homecoming/4050-102139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102140/", + "id": 102140, + "name": "Vision Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/vision-directors-cut/4050-102140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102168/", + "id": 102168, + "name": "Spider-Man's Tangled Web Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spidermans-tangled-web-omnibus/4050-102168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102241/", + "id": 102241, + "name": "Avengers: Unleashed: Kang War One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unleashed-kang-war-one/4050-102241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102258/", + "id": 102258, + "name": "Guardians of the Galaxy: New Guard: Grounded", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-grounded/4050-102258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102262/", + "id": 102262, + "name": "Invincible Iron Man: Ironheart: Riri Williams", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-ironheart-riri-williams/4050-102262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102271/", + "id": 102271, + "name": "Occupy Avengers: Taking Back Justice", + "site_detail_url": "https://comicvine.gamespot.com/occupy-avengers-taking-back-justice/4050-102271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102272/", + "id": 102272, + "name": "Peter Parker: The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spiderman/4050-102272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102273/", + "id": 102273, + "name": "Secret Empire: Underground", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-underground/4050-102273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102277/", + "id": 102277, + "name": "Spider-Gwen: Long-Distance", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-longdistance/4050-102277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102278/", + "id": 102278, + "name": "Spider-Man/Doctor Strange: The Way To Dusty Death", + "site_detail_url": "https://comicvine.gamespot.com/spidermandoctor-strange-the-way-to-dusty-death/4050-102278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102279/", + "id": 102279, + "name": "Star-Lord: Grounded", + "site_detail_url": "https://comicvine.gamespot.com/starlord-grounded/4050-102279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102281/", + "id": 102281, + "name": "Star Wars: Doctor Aphra: Aphra", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-aphra/4050-102281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102282/", + "id": 102282, + "name": "Star Wars: Poe Dameron Annual", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron-annual/4050-102282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102283/", + "id": 102283, + "name": "Star Wars: Poe Dameron: The Gathering Storm", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron-the-gathering-storm/4050-102283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102285/", + "id": 102285, + "name": "Ultimates 2: Troubleshooters", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2-troubleshooters/4050-102285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102287/", + "id": 102287, + "name": "Weapons of Mutant Destruction: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/weapons-of-mutant-destruction-alpha/4050-102287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102442/", + "id": 102442, + "name": "All-New Guardians of the Galaxy Annual", + "site_detail_url": "https://comicvine.gamespot.com/allnew-guardians-of-the-galaxy-annual/4050-102442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102455/", + "id": 102455, + "name": "Edge of Venomverse", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-venomverse/4050-102455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102458/", + "id": 102458, + "name": "Fantastic Four Epic Collection: The Master Plan of Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-master-plan-of-/4050-102458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102460/", + "id": 102460, + "name": "Foolkiller: Psycho Therapy", + "site_detail_url": "https://comicvine.gamespot.com/foolkiller-psycho-therapy/4050-102460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102461/", + "id": 102461, + "name": "Ghost Rider: Four On The Floor", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-four-on-the-floor/4050-102461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102462/", + "id": 102462, + "name": "Great Lakes Avengers: Same Old, Same Old", + "site_detail_url": "https://comicvine.gamespot.com/great-lakes-avengers-same-old-same-old/4050-102462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102468/", + "id": 102468, + "name": "Moon Girl and Devil Dinosaur: The Smartest There Is", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-the-smartest-there-is/4050-102468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102475/", + "id": 102475, + "name": "Prowler: The Clone Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/prowler-the-clone-conspiracy/4050-102475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102482/", + "id": 102482, + "name": "Spider-Man: Webspinners: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-webspinners-the-complete-collection/4050-102482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102484/", + "id": 102484, + "name": "Star Wars: Droids Unplugged", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-droids-unplugged/4050-102484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102487/", + "id": 102487, + "name": "Thanos: Thanos Returns", + "site_detail_url": "https://comicvine.gamespot.com/thanos-thanos-returns/4050-102487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102488/", + "id": 102488, + "name": "Thunderbolts: No Going Back", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-no-going-back/4050-102488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102490/", + "id": 102490, + "name": "True Believers: The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spiderman/4050-102490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102491/", + "id": 102491, + "name": "True Believers: Miles Morales: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-miles-morales-spiderman/4050-102491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102492/", + "id": 102492, + "name": "True Believers: Peter Parker, The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-peter-parker-the-spectacular-spider/4050-102492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102574/", + "id": 102574, + "name": "Avengers by Jonathan Hickman Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jonathan-hickman-omnibus/4050-102574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102578/", + "id": 102578, + "name": "Captain America Epic Collection: Bucky Reborn", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-bucky-reborn/4050-102578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102583/", + "id": 102583, + "name": "Deadpool Kills The Marvel Universe Again", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again/4050-102583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102586/", + "id": 102586, + "name": "Doctor Strange, Sorcerer Supreme Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-omnibus/4050-102586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102589/", + "id": 102589, + "name": "Gamora: Memento Mori", + "site_detail_url": "https://comicvine.gamespot.com/gamora-memento-mori/4050-102589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102597/", + "id": 102597, + "name": "Inhumans Vs. X-Men", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-vs-xmen/4050-102597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102605/", + "id": 102605, + "name": "Marvel Masterworks: The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-spectacular-spiderman/4050-102605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102606/", + "id": 102606, + "name": "Marvel's Thor: Ragnarok Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-thor-ragnarok-prelude/4050-102606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102607/", + "id": 102607, + "name": "Monsters Unleashed!", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed/4050-102607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102614/", + "id": 102614, + "name": "Spider-Man: Homecoming - The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-homecoming-the-art-of-the-movie/4050-102614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102615/", + "id": 102615, + "name": "Spider-Man: Master Plan", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-master-plan/4050-102615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102616/", + "id": 102616, + "name": "Star Wars: Yoda's Secret War", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-yodas-secret-war/4050-102616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102618/", + "id": 102618, + "name": "True Believers: Amazing Fantasy Starring Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-amazing-fantasy-starring-spiderman/4050-102618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102619/", + "id": 102619, + "name": "True Believers: The Amazing Spider-Man: Brand New Day", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spiderman-brand-new-day/4050-102619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102620/", + "id": 102620, + "name": "True Believers: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spiderman/4050-102620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102745/", + "id": 102745, + "name": "Daken: Dark Wolverine - Punishment", + "site_detail_url": "https://comicvine.gamespot.com/daken-dark-wolverine-punishment/4050-102745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102767/", + "id": 102767, + "name": "Monsters Unleashed: Battleground", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-battleground/4050-102767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102774/", + "id": 102774, + "name": "She-Hulk: Deconstructed", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-deconstructed/4050-102774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102777/", + "id": 102777, + "name": "Spider-Men II", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-ii/4050-102777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102778/", + "id": 102778, + "name": "Steve Rogers: Super-Soldier - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/steve-rogers-supersoldier-the-complete-collection/4050-102778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102783/", + "id": 102783, + "name": "The Totally Awesome Hulk: Big Apple Showdown", + "site_detail_url": "https://comicvine.gamespot.com/the-totally-awesome-hulk-big-apple-showdown/4050-102783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102834/", + "id": 102834, + "name": "Laugh Parade", + "site_detail_url": "https://comicvine.gamespot.com/laugh-parade/4050-102834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102882/", + "id": 102882, + "name": "Astonishing X-Men", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-xmen/4050-102882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102883/", + "id": 102883, + "name": "The A-Z of Marvel Monsters", + "site_detail_url": "https://comicvine.gamespot.com/the-az-of-marvel-monsters/4050-102883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102889/", + "id": 102889, + "name": "Black Eyed Peas Present: Masters of the Sun: The Zombie Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/black-eyed-peas-present-masters-of-the-sun-the-zom/4050-102889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102892/", + "id": 102892, + "name": "Captain America and The Avengers: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-avengers-the-complete-coll/4050-102892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102896/", + "id": 102896, + "name": "Daredevil: Back In Black: Identity", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-identity/4050-102896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102919/", + "id": 102919, + "name": "The Mighty Thor: Asgard/Shi'ar War", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-asgardshiar-war/4050-102919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102921/", + "id": 102921, + "name": "Ms. Marvel: Damage Per Second", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-damage-per-second/4050-102921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102922/", + "id": 102922, + "name": "Patsy Walker, A.K.A. Hellcat!: Careless Whisker(s)", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-aka-hellcat-careless-whiskers/4050-102922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102926/", + "id": 102926, + "name": "The Punisher: End of the Line", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-end-of-the-line/4050-102926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102936/", + "id": 102936, + "name": "U.S.Avengers: American Intelligence Mechanics", + "site_detail_url": "https://comicvine.gamespot.com/usavengers-american-intelligence-mechanics/4050-102936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102958/", + "id": 102958, + "name": "Generations Free Previews Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/generations-free-previews-spotlight/4050-102958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103011/", + "id": 103011, + "name": "The Immortal Iron Fists", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fists/4050-103011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103068/", + "id": 103068, + "name": "Avengers Epic Collection: Operation Galactic Storm", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-operation-galactic-storm/4050-103068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103080/", + "id": 103080, + "name": "Extraordinary X-Men: IvX", + "site_detail_url": "https://comicvine.gamespot.com/extraordinary-xmen-ivx/4050-103080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103087/", + "id": 103087, + "name": "Guardians of the Galaxy: The Telltale Series", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-the-telltale-series/4050-103087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103100/", + "id": 103100, + "name": "Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews/4050-103100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103104/", + "id": 103104, + "name": "Nova: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/nova-resurrection/4050-103104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103114/", + "id": 103114, + "name": "Slapstick: That's Not Funny", + "site_detail_url": "https://comicvine.gamespot.com/slapstick-thats-not-funny/4050-103114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103121/", + "id": 103121, + "name": "Uncanny Avengers: Unity: Red Skull", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-unity-red-skull/4050-103121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103122/", + "id": 103122, + "name": "Uncanny X-Men: Superior: IvX", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-xmen-superior-ivx/4050-103122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103217/", + "id": 103217, + "name": "All-New, All-Different Avengers", + "site_detail_url": "https://comicvine.gamespot.com/allnew-alldifferent-avengers/4050-103217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103222/", + "id": 103222, + "name": "Black Panther: A Nation Under Our Feet", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-a-nation-under-our-feet/4050-103222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103225/", + "id": 103225, + "name": "Captain America: Steve Rogers: Empire Building", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-steve-rogers-empire-building/4050-103225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103227/", + "id": 103227, + "name": "Color Your Own Marvel Masters", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-marvel-masters/4050-103227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103234/", + "id": 103234, + "name": "Generations: Banner Hulk & Totally Awesome Hulk", + "site_detail_url": "https://comicvine.gamespot.com/generations-banner-hulk-totally-awesome-hulk/4050-103234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103248/", + "id": 103248, + "name": "Lockjaw: Dog Days", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-dog-days/4050-103248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103249/", + "id": 103249, + "name": "Loki: Journey Into Mystery by Kieron Gillen Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/loki-journey-into-mystery-by-kieron-gillen-omnibus/4050-103249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103250/", + "id": 103250, + "name": "Marvel Masterworks: The Savage She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-savage-shehulk/4050-103250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103251/", + "id": 103251, + "name": "Marvel Universe by Chris Claremont Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-chris-claremont-omnibus/4050-103251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103274/", + "id": 103274, + "name": "Thor Epic Collection: In Mortal Flesh", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-in-mortal-flesh/4050-103274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103332/", + "id": 103332, + "name": "True Believers: Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-panther/4050-103332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103333/", + "id": 103333, + "name": "True Believers: Captain America Lives Again", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-america-lives-again/4050-103333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103378/", + "id": 103378, + "name": "Captain America: Sam Wilson: End of the Line", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-end-of-the-line/4050-103378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103386/", + "id": 103386, + "name": "Generations: Phoenix & Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/generations-phoenix-jean-grey/4050-103386/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103389/", + "id": 103389, + "name": "Inhumans: Once And Future Kings", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-once-and-future-kings/4050-103389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103407/", + "id": 103407, + "name": "Rocket Raccoon: Grounded", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-grounded/4050-103407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103408/", + "id": 103408, + "name": "S.H.I.E.L.D.: Hydra Reborn", + "site_detail_url": "https://comicvine.gamespot.com/shield-hydra-reborn/4050-103408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103411/", + "id": 103411, + "name": "Silk: The Clone Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/silk-the-clone-conspiracy/4050-103411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103413/", + "id": 103413, + "name": "Star Wars: Rogue One - Cassian & K2SO Special", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-rogue-one-cassian-k2so-special/4050-103413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103418/", + "id": 103418, + "name": "Zombies Assemble 2", + "site_detail_url": "https://comicvine.gamespot.com/zombies-assemble-2/4050-103418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103427/", + "id": 103427, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-103427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103453/", + "id": 103453, + "name": "True Believers: Groot!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-groot/4050-103453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103454/", + "id": 103454, + "name": "True Believers: The Mighty Thor!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-mighty-thor/4050-103454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103455/", + "id": 103455, + "name": "True Believers: Thor vs. Hulk!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-thor-vs-hulk/4050-103455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103478/", + "id": 103478, + "name": "Sif: Journey into Mystery - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/sif-journey-into-mystery-the-complete-collection/4050-103478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103510/", + "id": 103510, + "name": "Deadpool 2099", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-2099/4050-103510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103514/", + "id": 103514, + "name": "Generations: Wolverine & All-New Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/generations-wolverine-allnew-wolverine/4050-103514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103520/", + "id": 103520, + "name": "Heroes for Hire by Abnett & Lanning: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/heroes-for-hire-by-abnett-lanning-the-complete-col/4050-103520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103525/", + "id": 103525, + "name": "The Punisher: Suicide Run", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-suicide-run/4050-103525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103529/", + "id": 103529, + "name": "The Unbelievable Gwenpool: Totally In Continuity", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool-totally-in-continuity/4050-103529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103559/", + "id": 103559, + "name": "True Believers: Jack Kirby 100th Anniversary: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-captai/4050-103559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103560/", + "id": 103560, + "name": "True Believers: Jack Kirby 100th Anniversary: Eternals", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-eterna/4050-103560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103595/", + "id": 103595, + "name": "All-New X-Men: Inevitable: IvX", + "site_detail_url": "https://comicvine.gamespot.com/allnew-xmen-inevitable-ivx/4050-103595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103602/", + "id": 103602, + "name": "Deadpool: World's Greatest: 'Till Death Do Us...", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-till-death-do-us/4050-103602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103605/", + "id": 103605, + "name": "Generations: The Unworthy Thor & The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/generations-the-unworthy-thor-the-mighty-thor/4050-103605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103609/", + "id": 103609, + "name": "Guardians of the Galaxy: Mother Entropy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-mother-entropy/4050-103609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103619/", + "id": 103619, + "name": "The Mighty Captain Marvel: Alien Nation", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-captain-marvel-alien-nation/4050-103619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103626/", + "id": 103626, + "name": "Star Wars: Doctor Aphra Annual", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-annual/4050-103626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103630/", + "id": 103630, + "name": "Weapon X: Weapons of Mutant Destruction Prelude", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-weapons-of-mutant-destruction-prelude/4050-103630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103632/", + "id": 103632, + "name": "X-Men: Blue: Strangest", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-strangest/4050-103632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103633/", + "id": 103633, + "name": "X-Men: Gold: Back To The Basics", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-back-to-the-basics/4050-103633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103695/", + "id": 103695, + "name": "True Believers: Jack Kirby 100th Anniversary: Devil Dinosaur", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-devil-/4050-103695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103696/", + "id": 103696, + "name": "True Believers: Jack Kirby 100th Anniversary: The Inhumans!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-the-in/4050-103696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103697/", + "id": 103697, + "name": "True Believers: Jack Kirby 100th Anniversary: Nick Fury, Agent of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-nick-f/4050-103697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103806/", + "id": 103806, + "name": "Bullseye: The Colombian Connection", + "site_detail_url": "https://comicvine.gamespot.com/bullseye-the-colombian-connection/4050-103806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103811/", + "id": 103811, + "name": "Deadpool vs. The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-the-punisher/4050-103811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103812/", + "id": 103812, + "name": "Defenders Epic Collection: Ashes, Ashes...", + "site_detail_url": "https://comicvine.gamespot.com/defenders-epic-collection-ashes-ashes/4050-103812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103813/", + "id": 103813, + "name": "Doctor Strange/Punisher: Magic Bullets", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strangepunisher-magic-bullets/4050-103813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103816/", + "id": 103816, + "name": "Generations: Hawkeye & Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/generations-hawkeye-hawkeye/4050-103816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103832/", + "id": 103832, + "name": "Spider-Man 2099: Apocalypse Soon", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-2099-apocalypse-soon/4050-103832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103834/", + "id": 103834, + "name": "Star Wars: Mace Windu", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-mace-windu/4050-103834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103839/", + "id": 103839, + "name": "The Unstoppable Wasp: Unstoppable!", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-unstoppable/4050-103839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103849/", + "id": 103849, + "name": "Spider-Man: Revenge of the Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-revenge-of-the-green-goblin/4050-103849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103882/", + "id": 103882, + "name": "True Believers: Jack Kirby 100th Anniversary: Ant-Man and the Wasp", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-antman/4050-103882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103883/", + "id": 103883, + "name": "True Believers: Jack Kirby 100th Anniversary: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-iron-m/4050-103883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103885/", + "id": 103885, + "name": "Stop Stare and Laugh", + "site_detail_url": "https://comicvine.gamespot.com/stop-stare-and-laugh/4050-103885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104054/", + "id": 104054, + "name": "Generations: Iron Man & Ironheart", + "site_detail_url": "https://comicvine.gamespot.com/generations-iron-man-ironheart/4050-104054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104059/", + "id": 104059, + "name": "Hulk: Planet Hulk Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/hulk-planet-hulk-omnibus/4050-104059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104061/", + "id": 104061, + "name": "Iron Fist: The Trial of the Seven Masters", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-trial-of-the-seven-masters/4050-104061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104062/", + "id": 104062, + "name": "Journey to Star Wars: The Last Jedi - Captain Phasma", + "site_detail_url": "https://comicvine.gamespot.com/journey-to-star-wars-the-last-jedi-captain-phasma/4050-104062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104067/", + "id": 104067, + "name": "Man-Thing by R.L. Stine", + "site_detail_url": "https://comicvine.gamespot.com/manthing-by-rl-stine/4050-104067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104072/", + "id": 104072, + "name": "The Punisher: Back To the War Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-back-to-the-war-omnibus/4050-104072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104081/", + "id": 104081, + "name": "Star Wars: Darth Maul", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-maul/4050-104081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104082/", + "id": 104082, + "name": "Star Wars: Darth Vader by Kieron Gillen & Salvador Larroca", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-by-kieron-gillen-salvador-la/4050-104082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104083/", + "id": 104083, + "name": "Star Wars: The Marvel UK Collection Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-marvel-uk-collection-omnibus/4050-104083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104086/", + "id": 104086, + "name": "Thor vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-hulk/4050-104086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104087/", + "id": 104087, + "name": "Thor vs. Hulk: Champions of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-hulk-champions-of-the-universe/4050-104087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104088/", + "id": 104088, + "name": "Venomverse", + "site_detail_url": "https://comicvine.gamespot.com/venomverse/4050-104088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104089/", + "id": 104089, + "name": "Venomverse: War Stories", + "site_detail_url": "https://comicvine.gamespot.com/venomverse-war-stories/4050-104089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104120/", + "id": 104120, + "name": "Marvel Masterworks: Luke Cage, Power Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-luke-cage-power-man/4050-104120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104144/", + "id": 104144, + "name": "Marvel Future Fight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-future-fight/4050-104144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104145/", + "id": 104145, + "name": "Spider-Man Homecoming: Fight or Flight", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-homecoming-fight-or-flight/4050-104145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104163/", + "id": 104163, + "name": "The Punisher by Garth Ennis Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-by-garth-ennis-omnibus/4050-104163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104267/", + "id": 104267, + "name": "Avengers by Brian Michael Bendis: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-complete-coll/4050-104267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104276/", + "id": 104276, + "name": "Color Your Own Star Wars: Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-star-wars-darth-vader/4050-104276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104279/", + "id": 104279, + "name": "Deadpool: World's Greatest: Deadpool In Space", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-deadpool-in-space/4050-104279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104282/", + "id": 104282, + "name": "Elektra: Always Bet On Red", + "site_detail_url": "https://comicvine.gamespot.com/elektra-always-bet-on-red/4050-104282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104284/", + "id": 104284, + "name": "Generations: Captain Marvel & Captain Mar-vell", + "site_detail_url": "https://comicvine.gamespot.com/generations-captain-marvel-captain-marvell/4050-104284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104301/", + "id": 104301, + "name": "Kingpin: Born Against", + "site_detail_url": "https://comicvine.gamespot.com/kingpin-born-against/4050-104301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104311/", + "id": 104311, + "name": "Mosaic: Down Below", + "site_detail_url": "https://comicvine.gamespot.com/mosaic-down-below/4050-104311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104320/", + "id": 104320, + "name": "Runaways", + "site_detail_url": "https://comicvine.gamespot.com/runaways/4050-104320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104322/", + "id": 104322, + "name": "Secret Empire Omega", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-omega/4050-104322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104417/", + "id": 104417, + "name": "Avengers - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/avengers-marvel-legacy-primer-pages/4050-104417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104420/", + "id": 104420, + "name": "Iceman - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/iceman-marvel-legacy-primer-pages/4050-104420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104421/", + "id": 104421, + "name": "Iron Fist - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-marvel-legacy-primer-pages/4050-104421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104422/", + "id": 104422, + "name": "Jessica Jones - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-marvel-legacy-primer-pages/4050-104422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104425/", + "id": 104425, + "name": "Royals - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/royals-marvel-legacy-primer-pages/4050-104425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104426/", + "id": 104426, + "name": "Spirits of Vengeance - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance-marvel-legacy-primer-pages/4050-104426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104428/", + "id": 104428, + "name": "Venom - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/venom-marvel-legacy-primer-pages/4050-104428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104429/", + "id": 104429, + "name": "X-Men: Gold - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gold-marvel-legacy-primer-pages/4050-104429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104460/", + "id": 104460, + "name": "Captain America: Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-secret-empire/4050-104460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104463/", + "id": 104463, + "name": "Daredevil Epic Collection: Heart of Darkness", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-heart-of-darkness/4050-104463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104468/", + "id": 104468, + "name": "Doctor Strange: Mr. Misery", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-mr-misery/4050-104468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104475/", + "id": 104475, + "name": "Generations: Ms. Marvel & Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/generations-ms-marvel-ms-marvel/4050-104475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104484/", + "id": 104484, + "name": "Legacy Free September Previews Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/legacy-free-september-previews-spotlight/4050-104484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104493/", + "id": 104493, + "name": "Moon Knight: Birth and Death", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-birth-and-death/4050-104493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104496/", + "id": 104496, + "name": "Power Man and Iron Fist: Street Magic", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-street-magic/4050-104496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104503/", + "id": 104503, + "name": "Thor: The Trial of Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-trial-of-thor/4050-104503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104504/", + "id": 104504, + "name": "Thor: Worthy Origins", + "site_detail_url": "https://comicvine.gamespot.com/thor-worthy-origins/4050-104504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104536/", + "id": 104536, + "name": "All-New Wolverine - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-marvel-legacy-primer-pages/4050-104536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104537/", + "id": 104537, + "name": "The Amazing Spider-Man - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spiderman-marvel-legacy-primer-pages/4050-104537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104539/", + "id": 104539, + "name": "The Defenders - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-marvel-legacy-primer-pages/4050-104539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104540/", + "id": 104540, + "name": "The Despicable Deadpool - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/the-despicable-deadpool-marvel-legacy-primer-pages/4050-104540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104541/", + "id": 104541, + "name": "Falcon - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/falcon-marvel-legacy-primer-pages/4050-104541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104544/", + "id": 104544, + "name": "The Unbelievable Gwenpool - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool-marvel-legacy-primer-pag/4050-104544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104545/", + "id": 104545, + "name": "X-Men: Blue - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/xmen-blue-marvel-legacy-primer-pages/4050-104545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104602/", + "id": 104602, + "name": "Bloodstone & The Legion of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/bloodstone-the-legion-of-monsters/4050-104602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104612/", + "id": 104612, + "name": "Generations: Miles Morales: Spider-Man & Peter Parker: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/generations-miles-morales-spiderman-peter-parker-s/4050-104612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104613/", + "id": 104613, + "name": "Generations: Sam Wilson: Captain America & Steve Rogers: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/generations-sam-wilson-captain-america-steve-roger/4050-104613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104619/", + "id": 104619, + "name": "Indestructible Hulk by Mark Waid: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/indestructible-hulk-by-mark-waid-the-complete-coll/4050-104619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104625/", + "id": 104625, + "name": "Marvel Legacy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy/4050-104625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104629/", + "id": 104629, + "name": "Occupy Avengers: In Plain Sight", + "site_detail_url": "https://comicvine.gamespot.com/occupy-avengers-in-plain-sight/4050-104629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104631/", + "id": 104631, + "name": "The Prox Transmissions", + "site_detail_url": "https://comicvine.gamespot.com/the-prox-transmissions/4050-104631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104638/", + "id": 104638, + "name": "Spider-Man 2099: Back To the Future, Shock!", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-back-to-the-future-shock/4050-104638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104639/", + "id": 104639, + "name": "Spider-Man: Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-daily-bugle/4050-104639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104640/", + "id": 104640, + "name": "Spider-Man/Deadpool: Itsy Bitsy", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-itsy-bitsy/4050-104640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104642/", + "id": 104642, + "name": "Thor Epic Collection: The Wrath of Odin", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-wrath-of-odin/4050-104642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104644/", + "id": 104644, + "name": "The Unbeatable Squirrel Girl: Who Run The World? Squirrels", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-who-run-the-world-squ/4050-104644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104645/", + "id": 104645, + "name": "Wolverine: Old Man Logan: Past Lives", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-past-lives/4050-104645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104694/", + "id": 104694, + "name": "FOOM Magazine", + "site_detail_url": "https://comicvine.gamespot.com/foom-magazine/4050-104694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104723/", + "id": 104723, + "name": "Cable - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/cable-marvel-legacy-primer-pages/4050-104723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104724/", + "id": 104724, + "name": "Champions - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/champions-marvel-legacy-primer-pages/4050-104724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104726/", + "id": 104726, + "name": "Luke Cage - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-marvel-legacy-primer-pages/4050-104726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104727/", + "id": 104727, + "name": "Mighty Thor - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor-marvel-legacy-primer-pages/4050-104727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104728/", + "id": 104728, + "name": "Spider-Gwen - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-marvel-legacy-primer-pages/4050-104728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104739/", + "id": 104739, + "name": "Hulk: Transformations", + "site_detail_url": "https://comicvine.gamespot.com/hulk-transformations/4050-104739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104780/", + "id": 104780, + "name": "Color Your Own Thor", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-thor/4050-104780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104784/", + "id": 104784, + "name": "Doctor Strange Epic Collection: Afterlife", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-afterlife/4050-104784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104792/", + "id": 104792, + "name": "Hulk: World War Hulk Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/hulk-world-war-hulk-omnibus/4050-104792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104801/", + "id": 104801, + "name": "Marvel's Thor: Ragnarok Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-thor-ragnarok-prelude/4050-104801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104803/", + "id": 104803, + "name": "Muppet Babies Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/muppet-babies-omnibus/4050-104803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104812/", + "id": 104812, + "name": "Royals: Beyond Inhuman", + "site_detail_url": "https://comicvine.gamespot.com/royals-beyond-inhuman/4050-104812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104818/", + "id": 104818, + "name": "Spirits of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance/4050-104818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104824/", + "id": 104824, + "name": "Thor: Heroes Return Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/thor-heroes-return-omnibus/4050-104824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104825/", + "id": 104825, + "name": "Thor vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-hulk/4050-104825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104828/", + "id": 104828, + "name": "The Tomb of Dracula: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-tomb-of-dracula-the-complete-collection/4050-104828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104835/", + "id": 104835, + "name": "Werewolf By Night: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection/4050-104835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104864/", + "id": 104864, + "name": "America - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/america-marvel-legacy-primer-pages/4050-104864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104866/", + "id": 104866, + "name": "Black Panther - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-marvel-legacy-primer-pages/4050-104866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104867/", + "id": 104867, + "name": "Captain Marvel - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-marvel-legacy-primer-pages/4050-104867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104868/", + "id": 104868, + "name": "Incredible Hulk - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-marvel-legacy-primer-pages/4050-104868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104870/", + "id": 104870, + "name": "Invincible Iron Man - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-marvel-legacy-primer-pages/4050-104870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104871/", + "id": 104871, + "name": "Jean Grey - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey-marvel-legacy-primer-pages/4050-104871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104873/", + "id": 104873, + "name": "Monsters Unleashed - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-marvel-legacy-primer-pages/4050-104873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104938/", + "id": 104938, + "name": "Falcon", + "site_detail_url": "https://comicvine.gamespot.com/falcon/4050-104938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104948/", + "id": 104948, + "name": "Incredible Hulk by Jason Aaron: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-by-jason-aaron-the-complete-collec/4050-104948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104960/", + "id": 104960, + "name": "Marvel Horror: The Magazine Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-horror-the-magazine-collection/4050-104960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104969/", + "id": 104969, + "name": "Secret Empire: United We Stand", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-united-we-stand/4050-104969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104970/", + "id": 104970, + "name": "Secret Warriors: Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-secret-empire/4050-104970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104976/", + "id": 104976, + "name": "Star Wars Reads", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-reads/4050-104976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104977/", + "id": 104977, + "name": "Star Wars: Screaming Citadel", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-screaming-citadel/4050-104977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104999/", + "id": 104999, + "name": "Despicable Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/despicable-deadpool/4050-104999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105009/", + "id": 105009, + "name": "Captain America - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-marvel-legacy-primer-pages/4050-105009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105010/", + "id": 105010, + "name": "Guardians of the Galaxy - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-marvel-legacy-primer-pages/4050-105010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105013/", + "id": 105013, + "name": "Spider-Man - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-marvel-legacy-primer-pages/4050-105013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105078/", + "id": 105078, + "name": "Captain America ComiCave Custom Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-comicave-custom-edition/4050-105078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105295/", + "id": 105295, + "name": "America: The Life and Times of America Chavez", + "site_detail_url": "https://comicvine.gamespot.com/america-the-life-and-times-of-america-chavez/4050-105295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105304/", + "id": 105304, + "name": "Black Panther & the Crew: We Are The Streets", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-crew-we-are-the-streets/4050-105304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105311/", + "id": 105311, + "name": "Deadpool vs. Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-old-man-logan/4050-105311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105319/", + "id": 105319, + "name": "Guardians of the Galaxy: An Awesome Mix", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-an-awesome-mix/4050-105319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105325/", + "id": 105325, + "name": "Incredible Hulk", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk/4050-105325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105328/", + "id": 105328, + "name": "Jean Grey: Nightmare Fuel", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey-nightmare-fuel/4050-105328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105337/", + "id": 105337, + "name": "Marvel's Black Panther Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-black-panther-prelude/4050-105337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105357/", + "id": 105357, + "name": "Spider-Gwen: Predators", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-predators/4050-105357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105363/", + "id": 105363, + "name": "Thor: Gods & Deviants", + "site_detail_url": "https://comicvine.gamespot.com/thor-gods-deviants/4050-105363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105364/", + "id": 105364, + "name": "Thor: Ragnaroks", + "site_detail_url": "https://comicvine.gamespot.com/thor-ragnaroks/4050-105364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105420/", + "id": 105420, + "name": "Daredevil - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-marvel-legacy-primer-pages/4050-105420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105425/", + "id": 105425, + "name": "Moon Knight - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-marvel-legacy-primer-pages/4050-105425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105427/", + "id": 105427, + "name": "She-Hulk - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-marvel-legacy-primer-pages/4050-105427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105429/", + "id": 105429, + "name": "Spider-Man/Deadpool - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-marvel-legacy-primer-pages/4050-105429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105466/", + "id": 105466, + "name": "The Unbeatables", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatables/4050-105466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105502/", + "id": 105502, + "name": "Ben Reilly: Scarlet Spider: Back In The Hood", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-back-in-the-hood/4050-105502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105506/", + "id": 105506, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-105506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105534/", + "id": 105534, + "name": "Incredible Hulk Epic Collection: The Hulk Must Die", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-the-hulk-must-die/4050-105534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105552/", + "id": 105552, + "name": "Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire/4050-105552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105560/", + "id": 105560, + "name": "Thor: Where Walk The Frost Giants", + "site_detail_url": "https://comicvine.gamespot.com/thor-where-walk-the-frost-giants/4050-105560/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105564/", + "id": 105564, + "name": "Venom: The Land Before Crime", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-land-before-crime/4050-105564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105566/", + "id": 105566, + "name": "Weapons of Mutant Destruction", + "site_detail_url": "https://comicvine.gamespot.com/weapons-of-mutant-destruction/4050-105566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105650/", + "id": 105650, + "name": "Ben Reilly Scarlet Spider - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-marvel-legacy-primer-pag/4050-105650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105652/", + "id": 105652, + "name": "Doctor Strange - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-marvel-legacy-primer-pages/4050-105652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105655/", + "id": 105655, + "name": "Punisher - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/punisher-marvel-legacy-primer-pages/4050-105655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105744/", + "id": 105744, + "name": "Deadpool & X-Force Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-xforce-omnibus/4050-105744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105745/", + "id": 105745, + "name": "Deadpool: World's Greatest: Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-worlds-greatest-secret-empire/4050-105745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105756/", + "id": 105756, + "name": "Generation X: Natural Selection", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-natural-selection/4050-105756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105759/", + "id": 105759, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-105759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105763/", + "id": 105763, + "name": "Marvel's Thor: Ragnarok: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvels-thor-ragnarok-the-art-of-the-movie/4050-105763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105771/", + "id": 105771, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4050-105771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105805/", + "id": 105805, + "name": "Black Panther by Reginald Hudlin: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-by-reginald-hudlin-the-complete-coll/4050-105805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105829/", + "id": 105829, + "name": "Thor by Simonson Halloween Comic Fest 2017", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-simonson-halloween-comic-fest-2017/4050-105829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105833/", + "id": 105833, + "name": "Runaways Halloween Comic Fest 2017", + "site_detail_url": "https://comicvine.gamespot.com/runaways-halloween-comic-fest-2017/4050-105833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105834/", + "id": 105834, + "name": "Star Wars: Darth Maul Halloween Comic Fest 2017", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-maul-halloween-comic-fest-2017/4050-105834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105885/", + "id": 105885, + "name": "Amazing Spider-Man: Renew Your Vows - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-renew-your-vows-marvel-legacy-pr/4050-105885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105887/", + "id": 105887, + "name": "Moon Girl and Devil Dinosaur - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-marvel-legacy-primer-/4050-105887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105890/", + "id": 105890, + "name": "Thanos - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/thanos-marvel-legacy-primer-pages/4050-105890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105908/", + "id": 105908, + "name": "Legacy Free November Previews Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/legacy-free-november-previews-spotlight/4050-105908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105961/", + "id": 105961, + "name": "Black Panther: Avengers of the New World Part One", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-avengers-of-the-new-world-part-one/4050-105961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105962/", + "id": 105962, + "name": "Edge of Venomverse", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-venomverse/4050-105962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105963/", + "id": 105963, + "name": "Master of Kung Fu", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu/4050-105963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105964/", + "id": 105964, + "name": "Old Man Logan - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan-marvel-legacy-primer-pages/4050-105964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105965/", + "id": 105965, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4050-105965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105966/", + "id": 105966, + "name": "Zombies Assemble: Manga", + "site_detail_url": "https://comicvine.gamespot.com/zombies-assemble-manga/4050-105966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106044/", + "id": 106044, + "name": "Spider-Man: The World's Greatest Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-the-worlds-greatest-super-hero/4050-106044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106045/", + "id": 106045, + "name": "Star Wars: Darth Maul - Son of Dathomir", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-maul-son-of-dathomir/4050-106045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106108/", + "id": 106108, + "name": "Avengers: Unleashed: Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unleashed-secret-empire/4050-106108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106113/", + "id": 106113, + "name": "Cable: The Hellfire Hunt", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-hellfire-hunt/4050-106113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106131/", + "id": 106131, + "name": "Luke Cage: Sins of the Father", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-sins-of-the-father/4050-106131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106134/", + "id": 106134, + "name": "Not Brand Echh", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh/4050-106134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106138/", + "id": 106138, + "name": "Star Wars: Journey to Star Wars: The Last Jedi - Captain Phasma", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-journey-to-star-wars-the-last-jedi-capta/4050-106138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106139/", + "id": 106139, + "name": "Star Wars: Poe Dameron: Legend Lost", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron-legend-lost/4050-106139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106142/", + "id": 106142, + "name": "Venom: Carnage Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/venom-carnage-unleashed/4050-106142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106145/", + "id": 106145, + "name": "X-Men: Gold: Evil Empires", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-evil-empires/4050-106145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106201/", + "id": 106201, + "name": "Black Bolt - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt-marvel-legacy-primer-pages/4050-106201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106204/", + "id": 106204, + "name": "Marvel Tales by Alan Davis", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-by-alan-davis/4050-106204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106205/", + "id": 106205, + "name": "Marvel Two-In-One - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/marvel-twoinone-marvel-legacy-primer-pages/4050-106205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106209/", + "id": 106209, + "name": "The Unbeatable Squirrel Girl - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-marvel-legacy-primer-/4050-106209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106210/", + "id": 106210, + "name": "Weapon X - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-marvel-legacy-primer-pages/4050-106210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106261/", + "id": 106261, + "name": "Black Panther: Soul of A Machine", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-soul-of-a-machine/4050-106261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106274/", + "id": 106274, + "name": "All-New Guardians of the Galaxy: Communication Breakdown", + "site_detail_url": "https://comicvine.gamespot.com/allnew-guardians-of-the-galaxy-communication-break/4050-106274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106282/", + "id": 106282, + "name": "Deadpool Kills The Marvel Universe Again", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-kills-the-marvel-universe-again/4050-106282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106285/", + "id": 106285, + "name": "Doctor Strange and the Sorcerers Supreme: Time After Time", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-and-the-sorcerers-supreme-time-afte/4050-106285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106290/", + "id": 106290, + "name": "Generations", + "site_detail_url": "https://comicvine.gamespot.com/generations/4050-106290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106295/", + "id": 106295, + "name": "I Am Groot", + "site_detail_url": "https://comicvine.gamespot.com/i-am-groot/4050-106295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106298/", + "id": 106298, + "name": "Infamous Iron Man: The Absolution of Doom", + "site_detail_url": "https://comicvine.gamespot.com/infamous-iron-man-the-absolution-of-doom/4050-106298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106303/", + "id": 106303, + "name": "Nick Fury: Deep-Cover Capers", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury-deepcover-capers/4050-106303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106307/", + "id": 106307, + "name": "Silver Sable and the Wild Pack", + "site_detail_url": "https://comicvine.gamespot.com/silver-sable-and-the-wild-pack/4050-106307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106310/", + "id": 106310, + "name": "Star Wars: Darth Vader: Dark Lord of the Sith: Imperial Machine", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-dark-lord-of-the-sith-imperi/4050-106310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106312/", + "id": 106312, + "name": "Ultimates 2: Eternity War", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-2-eternity-war/4050-106312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106317/", + "id": 106317, + "name": "X-Men: Blue: Toil and Trouble", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-toil-and-trouble/4050-106317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106441/", + "id": 106441, + "name": "Hulk: Abominable", + "site_detail_url": "https://comicvine.gamespot.com/hulk-abominable/4050-106441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106443/", + "id": 106443, + "name": "Marvel's The Avengers: The Avengers Initiative", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-the-avengers-initiative/4050-106443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106444/", + "id": 106444, + "name": "Ms. Marvel - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-marvel-legacy-primer-pages/4050-106444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106488/", + "id": 106488, + "name": "All-New Wolverine: Immune", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-immune/4050-106488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106489/", + "id": 106489, + "name": "Amazing Spider-Man: Renew Your Vows: The Venom Experiment", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-renew-your-vows-the-venom-experi/4050-106489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106499/", + "id": 106499, + "name": "Daredevil: Back In Black: Supreme", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-supreme/4050-106499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106501/", + "id": 106501, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk/4050-106501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106515/", + "id": 106515, + "name": "Jessica Jones: The Secrets of Maria Hill", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-the-secrets-of-maria-hill/4050-106515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106521/", + "id": 106521, + "name": "Legacy Free December Previews Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/legacy-free-december-previews-spotlight/4050-106521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106524/", + "id": 106524, + "name": "Marvel Super Heroes: Larger Than Life", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-larger-than-life/4050-106524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106525/", + "id": 106525, + "name": "Monsters Unleashed!: Monster Mash", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-monster-mash/4050-106525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106543/", + "id": 106543, + "name": "Secret Empire: Brave New World", + "site_detail_url": "https://comicvine.gamespot.com/secret-empire-brave-new-world/4050-106543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106545/", + "id": 106545, + "name": "Silver Surfer: A Power Greater Than Cosmic", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-a-power-greater-than-cosmic/4050-106545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106552/", + "id": 106552, + "name": "Star Wars: Rogue One Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-rogue-one-adaptation/4050-106552/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106562/", + "id": 106562, + "name": "X-Men: Age of Apocalypse: Termination", + "site_detail_url": "https://comicvine.gamespot.com/xmen-age-of-apocalypse-termination/4050-106562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106563/", + "id": 106563, + "name": "X-Men Epic Collection: Mutant Genesis", + "site_detail_url": "https://comicvine.gamespot.com/xmen-epic-collection-mutant-genesis/4050-106563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106593/", + "id": 106593, + "name": "Machine Teen: History 101001", + "site_detail_url": "https://comicvine.gamespot.com/machine-teen-history-101001/4050-106593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106662/", + "id": 106662, + "name": "Amazing Spider-Man: Venom Inc. Alpha", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-venom-inc-alpha/4050-106662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106669/", + "id": 106669, + "name": "Black Bolt: Hard Time", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt-hard-time/4050-106669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106670/", + "id": 106670, + "name": "Cable: Conquest", + "site_detail_url": "https://comicvine.gamespot.com/cable-conquest/4050-106670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106671/", + "id": 106671, + "name": "Captain America by Mark Waid, Ron Garney & Andy Kubert Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-mark-waid-ron-garney-andy-kuber/4050-106671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106673/", + "id": 106673, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4050-106673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106687/", + "id": 106687, + "name": "Punisher Epic Collection: Capital Punishment", + "site_detail_url": "https://comicvine.gamespot.com/punisher-epic-collection-capital-punishment/4050-106687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106696/", + "id": 106696, + "name": "Star Wars: Out Among The Stars", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-out-among-the-stars/4050-106696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106700/", + "id": 106700, + "name": "True Believers: Enter the Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-enter-the-phoenix/4050-106700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106701/", + "id": 106701, + "name": "True Believers: Phoenix Presents Cyclops and Marvel Girl", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-presents-cyclops-and-marvel/4050-106701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106707/", + "id": 106707, + "name": "X-Men Classic Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/xmen-classic-omnibus/4050-106707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106778/", + "id": 106778, + "name": "Astonishing X-Men - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-xmen-marvel-legacy-primer-pages/4050-106778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106783/", + "id": 106783, + "name": "Hulk: Boiling Point", + "site_detail_url": "https://comicvine.gamespot.com/hulk-boiling-point/4050-106783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106789/", + "id": 106789, + "name": "Avengers: No Surrender Free Preview", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-surrender-free-preview/4050-106789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106853/", + "id": 106853, + "name": "Black Panther: Long Live the King", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-long-live-the-king/4050-106853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106857/", + "id": 106857, + "name": "Champions: The Freelancer Lifestyle", + "site_detail_url": "https://comicvine.gamespot.com/champions-the-freelancer-lifestyle/4050-106857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106860/", + "id": 106860, + "name": "The Defenders: Diamonds Are Forever", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-diamonds-are-forever/4050-106860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106891/", + "id": 106891, + "name": "Marvel Cinematic Universe Guidebook: The Good, The Bad, The Guardians", + "site_detail_url": "https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-good-the-b/4050-106891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106896/", + "id": 106896, + "name": "Ms. Marvel: Mecca", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-mecca/4050-106896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106900/", + "id": 106900, + "name": "Peter Parker: The Spectacular Spider-Man: Into The Twilight", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spiderman-into-the-tw/4050-106900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106904/", + "id": 106904, + "name": "Rocket: The Blue River Score", + "site_detail_url": "https://comicvine.gamespot.com/rocket-the-blue-river-score/4050-106904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106923/", + "id": 106923, + "name": "True Believers: Phoenix Bizarre Adventures", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-bizarre-adventures/4050-106923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106924/", + "id": 106924, + "name": "True Believers: Phoenix Classic", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-classic/4050-106924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106925/", + "id": 106925, + "name": "True Believers: Phoenix Returns!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-returns/4050-106925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106963/", + "id": 106963, + "name": "Dark Avengers By Brian Michael Bendis Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/dark-avengers-by-brian-michael-bendis-complete-col/4050-106963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107121/", + "id": 107121, + "name": "X-Men: Grand Design", + "site_detail_url": "https://comicvine.gamespot.com/xmen-grand-design/4050-107121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107128/", + "id": 107128, + "name": "All-New Guardians of the Galaxy: Riders In the Sky", + "site_detail_url": "https://comicvine.gamespot.com/allnew-guardians-of-the-galaxy-riders-in-the-sky/4050-107128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107149/", + "id": 107149, + "name": "Hawkeye: Kate Bishop: Masks", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-kate-bishop-masks/4050-107149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107152/", + "id": 107152, + "name": "Invincible Iron Man: Ironheart: Choices", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-ironheart-choices/4050-107152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107157/", + "id": 107157, + "name": "Marvel Two-In-One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-twoinone/4050-107157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107169/", + "id": 107169, + "name": "Tales of Suspense", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-suspense/4050-107169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107172/", + "id": 107172, + "name": "The Totally Awesome Hulk: My Best Friends Are Monsters", + "site_detail_url": "https://comicvine.gamespot.com/the-totally-awesome-hulk-my-best-friends-are-monst/4050-107172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107173/", + "id": 107173, + "name": "True Believers: Phoenix Presents: Jean Grey vs. Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-presents-jean-grey-vs-sabre/4050-107173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107174/", + "id": 107174, + "name": "True Believers: Phoenix Presents: The Wedding of Scott Summers & Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-presents-the-wedding-of-sco/4050-107174/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107175/", + "id": 107175, + "name": "The Unbelievable Gwenpool: Beyond the Fourth Wall", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool-beyond-the-fourth-wall/4050-107175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107352/", + "id": 107352, + "name": "Avengers: Tales To Astonish", + "site_detail_url": "https://comicvine.gamespot.com/avengers-tales-to-astonish/4050-107352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107355/", + "id": 107355, + "name": "Black Panther: Panther's Quest", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-panthers-quest/4050-107355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107359/", + "id": 107359, + "name": "Doctor Strange: Lords of Fear", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-lords-of-fear/4050-107359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107362/", + "id": 107362, + "name": "Iceman: Thawing Out", + "site_detail_url": "https://comicvine.gamespot.com/iceman-thawing-out/4050-107362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107364/", + "id": 107364, + "name": "Marvel Mangaverse: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mangaverse-the-complete-collection/4050-107364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107365/", + "id": 107365, + "name": "The Mighty Captain Marvel: Band of Sisters", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-captain-marvel-band-of-sisters/4050-107365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107366/", + "id": 107366, + "name": "Moon Girl and Devil Dinosaur: Girl-Moon", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-girlmoon/4050-107366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107368/", + "id": 107368, + "name": "Phoenix Resurrection: The Return of Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-resurrection-the-return-of-jean-grey/4050-107368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107371/", + "id": 107371, + "name": "Star Wars: The Last Jedi - The Storms of Crait", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-jedi-the-storms-of-crait/4050-107371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107372/", + "id": 107372, + "name": "Thanos: The God Quarry", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-god-quarry/4050-107372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107373/", + "id": 107373, + "name": "True Believers: Death of Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-death-of-phoenix/4050-107373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107374/", + "id": 107374, + "name": "True Believers: Phoenix Origins", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-phoenix-origins/4050-107374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107375/", + "id": 107375, + "name": "True Believers: What If Phoenix Had Not Died?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-phoenix-had-not-died/4050-107375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107377/", + "id": 107377, + "name": "Venomverse", + "site_detail_url": "https://comicvine.gamespot.com/venomverse/4050-107377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107405/", + "id": 107405, + "name": "Black Panther: The Man Without Fear: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-man-without-fear-the-complete-co/4050-107405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107494/", + "id": 107494, + "name": "Black Panther Adventures", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-adventures/4050-107494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107498/", + "id": 107498, + "name": "Color Your Own Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-black-panther/4050-107498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107505/", + "id": 107505, + "name": "Inhumans: Beware the Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-beware-the-inhumans/4050-107505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107508/", + "id": 107508, + "name": "Marvel Cinematic Universe Guidebook: It's All Connected", + "site_detail_url": "https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-its-all-connec/4050-107508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107512/", + "id": 107512, + "name": "Rise of the Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/rise-of-the-black-panther/4050-107512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107513/", + "id": 107513, + "name": "Rogue & Gambit", + "site_detail_url": "https://comicvine.gamespot.com/rogue-gambit/4050-107513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107515/", + "id": 107515, + "name": "Spider-Man/Deadpool: Serious Business", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-serious-business/4050-107515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107638/", + "id": 107638, + "name": "Cable: The Nemesis Contract", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-nemesis-contract/4050-107638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107646/", + "id": 107646, + "name": "Doctor Strange: Secret Empire", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-secret-empire/4050-107646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107659/", + "id": 107659, + "name": "Incredible Hulk Epic Collection: Fall of the Pantheon", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-fall-of-the-panthe/4050-107659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107660/", + "id": 107660, + "name": "Marvel's Black Panther Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-black-panther-prelude/4050-107660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107664/", + "id": 107664, + "name": "Old Man Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/old-man-hawkeye/4050-107664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107666/", + "id": 107666, + "name": "She-Hulk: Let Them Eat Cake", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-let-them-eat-cake/4050-107666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107670/", + "id": 107670, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4050-107670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107672/", + "id": 107672, + "name": "X-Men: Gold Annual", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gold-annual/4050-107672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107680/", + "id": 107680, + "name": "Deadpool & Co.", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-co/4050-107680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107726/", + "id": 107726, + "name": "Deadpool by Posehn & Duggan: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-posehn-duggan-the-complete-collection/4050-107726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107934/", + "id": 107934, + "name": "Amazing Spider-Man: Venom Inc. Omega", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spiderman-venom-inc-omega/4050-107934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107953/", + "id": 107953, + "name": "The Mighty Thor: The War Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-the-war-thor/4050-107953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-107965/", + "id": 107965, + "name": "X-Men: Legion: Shadow King Rising", + "site_detail_url": "https://comicvine.gamespot.com/xmen-legion-shadow-king-rising/4050-107965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108098/", + "id": 108098, + "name": "Guardians of the Galaxy: Telltale Games", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-telltale-games/4050-108098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108099/", + "id": 108099, + "name": "The Immortal Iron Fists", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-iron-fists/4050-108099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108101/", + "id": 108101, + "name": "Inhumans: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-judgment-day/4050-108101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108102/", + "id": 108102, + "name": "Iron Man Epic Collection: Doom", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-doom/4050-108102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108105/", + "id": 108105, + "name": "Legion", + "site_detail_url": "https://comicvine.gamespot.com/legion/4050-108105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108108/", + "id": 108108, + "name": "Marvel's Avengers: Infinity War Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-infinity-war-prelude/4050-108108/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108110/", + "id": 108110, + "name": "New Mutants: Back To School: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-back-to-school-the-complete-collection/4050-108110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108116/", + "id": 108116, + "name": "The Punisher: King of the New York Streets", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-king-of-the-new-york-streets/4050-108116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108124/", + "id": 108124, + "name": "Wolverine: Old Man Logan: Days of Anger", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-days-of-anger/4050-108124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108125/", + "id": 108125, + "name": "Wolverine: Old Man Logan: Days of Anger Black and White Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-days-of-anger-black-and-wh/4050-108125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108127/", + "id": 108127, + "name": "X-Men Blue Annual", + "site_detail_url": "https://comicvine.gamespot.com/xmen-blue-annual/4050-108127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108128/", + "id": 108128, + "name": "X-Men: Gold: Mojo Worldwide", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-mojo-worldwide/4050-108128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108237/", + "id": 108237, + "name": "Ben Reilly: Scarlet Spider: Death's Sting", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-deaths-sting/4050-108237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108259/", + "id": 108259, + "name": "Mystery Men: The Golden Age", + "site_detail_url": "https://comicvine.gamespot.com/mystery-men-the-golden-age/4050-108259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108261/", + "id": 108261, + "name": "Royals: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/royals-judgment-day/4050-108261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108265/", + "id": 108265, + "name": "Star Wars: The Last Jedi - DJ - Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-jedi-dj-most-wanted/4050-108265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108266/", + "id": 108266, + "name": "U.S.Avengers: Cannonball Run", + "site_detail_url": "https://comicvine.gamespot.com/usavengers-cannonball-run/4050-108266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108267/", + "id": 108267, + "name": "Venom: Lethal Protector: Blood In The Water", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector-blood-in-the-water/4050-108267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108290/", + "id": 108290, + "name": "Black Panther - Start Here!", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-start-here/4050-108290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108292/", + "id": 108292, + "name": "Legion: Son of X: Prodigal", + "site_detail_url": "https://comicvine.gamespot.com/legion-son-of-x-prodigal/4050-108292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108511/", + "id": 108511, + "name": "Avengers & Champions: Worlds Collide", + "site_detail_url": "https://comicvine.gamespot.com/avengers-champions-worlds-collide/4050-108511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108515/", + "id": 108515, + "name": "Black Panther: The Sound and the Fury", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-sound-and-the-fury/4050-108515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108528/", + "id": 108528, + "name": "Infinity Countdown: Adam Warlock", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-adam-warlock/4050-108528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108529/", + "id": 108529, + "name": "Inhumans: Once And Future Kings", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-once-and-future-kings/4050-108529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108542/", + "id": 108542, + "name": "Star Wars: Doctor Aphra: Doctor Aphra and the Enormous Profit", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-doctor-aphra-and-the-enormo/4050-108542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108548/", + "id": 108548, + "name": "X-Men: Red", + "site_detail_url": "https://comicvine.gamespot.com/x-men-red/4050-108548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108581/", + "id": 108581, + "name": "Daredevil: Shadowland Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-shadowland-omnibus/4050-108581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108582/", + "id": 108582, + "name": "Deadpool By Daniel Way: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection/4050-108582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108585/", + "id": 108585, + "name": "Hulk: Return of the Monster", + "site_detail_url": "https://comicvine.gamespot.com/hulk-return-of-the-monster/4050-108585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108586/", + "id": 108586, + "name": "Invincible Iron Man by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-by-brian-michael-bendis/4050-108586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108588/", + "id": 108588, + "name": "The 'Nam", + "site_detail_url": "https://comicvine.gamespot.com/the-nam/4050-108588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108730/", + "id": 108730, + "name": "Color Your Own X-Men: The New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-xmen-the-new-mutants/4050-108730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108731/", + "id": 108731, + "name": "Daredevil Epic Collection: Mike Murdock Must Die!", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-mike-murdock-must-die/4050-108731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108746/", + "id": 108746, + "name": "New Mutants by Zeb Wells: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-by-zeb-wells-the-complete-collection/4050-108746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108758/", + "id": 108758, + "name": "Star Wars: Thrawn", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-thrawn/4050-108758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108795/", + "id": 108795, + "name": "All-New Wolverine: Orphans of X", + "site_detail_url": "https://comicvine.gamespot.com/allnew-wolverine-orphans-of-x/4050-108795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108796/", + "id": 108796, + "name": "Astonishing X-Men by Charles Soule: Life of X", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-xmen-by-charles-soule-life-of-x/4050-108796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108798/", + "id": 108798, + "name": "Black Panther Annual", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-annual/4050-108798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108801/", + "id": 108801, + "name": "Cable & X-Force: Onslaught Rising", + "site_detail_url": "https://comicvine.gamespot.com/cable-xforce-onslaught-rising/4050-108801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108809/", + "id": 108809, + "name": "Doctor Strange: Damnation", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-damnation/4050-108809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108812/", + "id": 108812, + "name": "Excalibur Epic Collection: The Cross-Time Caper", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-epic-collection-the-crosstime-caper/4050-108812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108818/", + "id": 108818, + "name": "Infinity Countdown Prime", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-prime/4050-108818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108822/", + "id": 108822, + "name": "Marvel Legacy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy/4050-108822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108835/", + "id": 108835, + "name": "Secret Warriors: If Trouble Must Come", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-if-trouble-must-come/4050-108835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108874/", + "id": 108874, + "name": "Marvel Masterworks: Golden Age Young Allies", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-young-allies/4050-108874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108920/", + "id": 108920, + "name": "Marvel Masterworks: Golden Age U.S.A. Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-usa-comics/4050-108920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108934/", + "id": 108934, + "name": "Captain America: The Adventures of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-adventures-of-captain-america/4050-108934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108939/", + "id": 108939, + "name": "Despicable Deadpool: Deadpool Kills Cable", + "site_detail_url": "https://comicvine.gamespot.com/despicable-deadpool-deadpool-kills-cable/4050-108939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108951/", + "id": 108951, + "name": "Lockjaw", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw/4050-108951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108957/", + "id": 108957, + "name": "New Mutants Epic Collection: Curse of the Valkyries", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-epic-collection-curse-of-the-valkyries/4050-108957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108963/", + "id": 108963, + "name": "Star Wars: Jedi of the Republic: Mace Windu", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-jedi-of-the-republic-mace-windu/4050-108963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108969/", + "id": 108969, + "name": "The Unbeatable Squirrel Girl: I've Been Waiting For A Squirrel Like You", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-ive-been-waiting-for-/4050-108969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108970/", + "id": 108970, + "name": "Uncanny Avengers: Unity: Stars and Garters", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-avengers-unity-stars-and-garters/4050-108970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108971/", + "id": 108971, + "name": "The Unstoppable Wasp: Agents of G.I.R.L.", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-agents-of-girl/4050-108971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108976/", + "id": 108976, + "name": "Weapon X: The Hunt For Weapon H", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-hunt-for-weapon-h/4050-108976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-108986/", + "id": 108986, + "name": "Avengers Academy: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-academy-the-complete-collection/4050-108986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109036/", + "id": 109036, + "name": "Jinx", + "site_detail_url": "https://comicvine.gamespot.com/jinx/4050-109036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109081/", + "id": 109081, + "name": "Avengers: Back To Basics", + "site_detail_url": "https://comicvine.gamespot.com/avengers-back-to-basics/4050-109081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109103/", + "id": 109103, + "name": "Infinity Countdown", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown/4050-109103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109110/", + "id": 109110, + "name": "Marvel's Ant-Man and the Wasp Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-antman-and-the-wasp-prelude/4050-109110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109112/", + "id": 109112, + "name": "Moon Knight by Brian Michael Bendis & Alex Maleev", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-by-brian-michael-bendis-alex-maleev/4050-109112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109135/", + "id": 109135, + "name": "Spider-Man/Deadpool by Joe Kelly & Ed McGuinness", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-by-joe-kelly-ed-mcguinness/4050-109135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109136/", + "id": 109136, + "name": "True Believers: Venom Symbiosis", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-symbiosis/4050-109136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109137/", + "id": 109137, + "name": "True Believers: Venom vs. Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-vs-spiderman/4050-109137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109143/", + "id": 109143, + "name": "Custom Disney Child Life Avengers: Solo Act", + "site_detail_url": "https://comicvine.gamespot.com/custom-disney-child-life-avengers-solo-act/4050-109143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109178/", + "id": 109178, + "name": "Guardians of the Galaxy: Infinity Quest", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-infinity-quest/4050-109178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109182/", + "id": 109182, + "name": "Avengers Epic Collection: The Collection Obsession", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-collection-obsession/4050-109182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109187/", + "id": 109187, + "name": "Cloak and Dagger: Runaways and Reversals", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-runaways-and-reversals/4050-109187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109201/", + "id": 109201, + "name": "Master of Kung Fu Epic Collection: Weapon of the Soul", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu-epic-collection-weapon-of-the-so/4050-109201/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109202/", + "id": 109202, + "name": "New Mutants: Dead Souls", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-dead-souls/4050-109202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109267/", + "id": 109267, + "name": "True Believers: Venom: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-carnage/4050-109267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109268/", + "id": 109268, + "name": "True Believers: Venom: Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-lethal-protector/4050-109268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109269/", + "id": 109269, + "name": "True Believers: Venom: Shiver", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-shiver/4050-109269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109316/", + "id": 109316, + "name": "Generation X: Survival of the Fittest", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-survival-of-the-fittest/4050-109316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109322/", + "id": 109322, + "name": "Iron Fist: Sabretooth – Round Two", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-sabretooth-round-two/4050-109322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109323/", + "id": 109323, + "name": "Iron Man: Hong Kong Heroes", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-hong-kong-heroes/4050-109323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109330/", + "id": 109330, + "name": "Marvel's Avengers: Infinity War Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-infinity-war-prelude/4050-109330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109337/", + "id": 109337, + "name": "Spider-Men II", + "site_detail_url": "https://comicvine.gamespot.com/spidermen-ii/4050-109337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109340/", + "id": 109340, + "name": "True Believers: Venom: Dark Origin", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-dark-origin/4050-109340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109341/", + "id": 109341, + "name": "True Believers: Venom: Flashpoint", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-flashpoint/4050-109341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109344/", + "id": 109344, + "name": "Weapon H", + "site_detail_url": "https://comicvine.gamespot.com/weapon-h/4050-109344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109346/", + "id": 109346, + "name": "X-Men: Blue: Reunion", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-reunion/4050-109346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109347/", + "id": 109347, + "name": "X-Men: Blue: Cross Time Capers", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-cross-time-capers/4050-109347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109377/", + "id": 109377, + "name": "Vampire Tales", + "site_detail_url": "https://comicvine.gamespot.com/vampire-tales/4050-109377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109421/", + "id": 109421, + "name": "Spider-Man J", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-j/4050-109421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109441/", + "id": 109441, + "name": "Captain Marvel: Carol Danvers – The Ms. Marvel Years", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-carol-danvers-the-ms-marvel-years/4050-109441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109442/", + "id": 109442, + "name": "Color Your Own Avengers", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-avengers/4050-109442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109444/", + "id": 109444, + "name": "Damnation: Johnny Blaze - Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/damnation-johnny-blaze-ghost-rider/4050-109444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109455/", + "id": 109455, + "name": "The New Mutants: Demon Bear", + "site_detail_url": "https://comicvine.gamespot.com/the-new-mutants-demon-bear/4050-109455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109462/", + "id": 109462, + "name": "Thor vs. Hulk: Champions of the Universe", + "site_detail_url": "https://comicvine.gamespot.com/thor-vs-hulk-champions-of-the-universe/4050-109462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109464/", + "id": 109464, + "name": "Wolverine Epic Collection: Blood Debt", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-blood-debt/4050-109464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109466/", + "id": 109466, + "name": "X-Men: Gold: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gold-homecoming/4050-109466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109467/", + "id": 109467, + "name": "X-Men: Gold: The Negative Zone War", + "site_detail_url": "https://comicvine.gamespot.com/xmen-gold-the-negative-zone-war/4050-109467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109474/", + "id": 109474, + "name": "Annihilation: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-the-complete-collection/4050-109474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109475/", + "id": 109475, + "name": "Thing: Project Pegasus", + "site_detail_url": "https://comicvine.gamespot.com/thing-project-pegasus/4050-109475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109476/", + "id": 109476, + "name": "True Believers: Venom: Agent Venom", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-agent-venom/4050-109476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109477/", + "id": 109477, + "name": "True Believers: Venom: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-homecoming/4050-109477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109478/", + "id": 109478, + "name": "True Believers: Venom: Toxin", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-venom-toxin/4050-109478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109533/", + "id": 109533, + "name": "X-Men: Grand Design", + "site_detail_url": "https://comicvine.gamespot.com/xmen-grand-design/4050-109533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109591/", + "id": 109591, + "name": "Avengers: Mighty Origins", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mighty-origins/4050-109591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109592/", + "id": 109592, + "name": "Avengers: Shards of Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-shards-of-infinity/4050-109592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109593/", + "id": 109593, + "name": "Avengers vs. Thanos", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-thanos/4050-109593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109614/", + "id": 109614, + "name": "Marvel Legacy Companion", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legacy-companion/4050-109614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109625/", + "id": 109625, + "name": "Star Wars: The Ashes of Jedha", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-ashes-of-jedha/4050-109625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109627/", + "id": 109627, + "name": "Star Wars: A New Hope: The 40th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-a-new-hope-the-40th-anniversary/4050-109627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109630/", + "id": 109630, + "name": "Thanos: The Infinity Siblings", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-siblings/4050-109630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109637/", + "id": 109637, + "name": "Venomized", + "site_detail_url": "https://comicvine.gamespot.com/venomized/4050-109637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109646/", + "id": 109646, + "name": "True Believers: Avengers vs. Thanos", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-vs-thanos/4050-109646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109647/", + "id": 109647, + "name": "True Believers: Thanos the First", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-thanos-the-first/4050-109647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109648/", + "id": 109648, + "name": "X-Men: Legion Quest", + "site_detail_url": "https://comicvine.gamespot.com/xmen-legion-quest/4050-109648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109746/", + "id": 109746, + "name": "America: Fast and Fuertona", + "site_detail_url": "https://comicvine.gamespot.com/america-fast-and-fuertona/4050-109746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109747/", + "id": 109747, + "name": "Avengers Epic Collection: The Avengers/Defenders War", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-avengersdefenders-war/4050-109747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109753/", + "id": 109753, + "name": "Cable: The Newer Mutants", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-newer-mutants/4050-109753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109760/", + "id": 109760, + "name": "Deadpool vs. Old Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-vs-old-man-logan/4050-109760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109761/", + "id": 109761, + "name": "Domino", + "site_detail_url": "https://comicvine.gamespot.com/domino/4050-109761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109764/", + "id": 109764, + "name": "Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles/4050-109764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109773/", + "id": 109773, + "name": "Jean Grey: Final Fight", + "site_detail_url": "https://comicvine.gamespot.com/jean-grey-final-fight/4050-109773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109779/", + "id": 109779, + "name": "Peter Parker: The Spectacular Spider-Man: Most Wanted", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spiderman-most-wanted/4050-109779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109790/", + "id": 109790, + "name": "Spider-Man/Deadpool: Arms Race", + "site_detail_url": "https://comicvine.gamespot.com/spidermandeadpool-arms-race/4050-109790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109795/", + "id": 109795, + "name": "The Unbelievable Gwenpool: Lost In The Plot", + "site_detail_url": "https://comicvine.gamespot.com/the-unbelievable-gwenpool-lost-in-the-plot/4050-109795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109807/", + "id": 109807, + "name": "True Believers: Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-infinity-gauntlet/4050-109807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109808/", + "id": 109808, + "name": "True Believers: Thanos Rising", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-thanos-rising/4050-109808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109960/", + "id": 109960, + "name": "Luke Cage: Caged!", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-caged/4050-109960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109961/", + "id": 109961, + "name": "Marvel Super Hero Adventures", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures/4050-109961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109962/", + "id": 109962, + "name": "Marvel Universe Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-magazine/4050-109962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109965/", + "id": 109965, + "name": "Phoenix Resurrection: The Return of Jean Grey", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-resurrection-the-return-of-jean-grey/4050-109965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109966/", + "id": 109966, + "name": "Punisher: The Platoon", + "site_detail_url": "https://comicvine.gamespot.com/punisher-the-platoon/4050-109966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109969/", + "id": 109969, + "name": "Runaways by Rainbow Rowell: Find Your Way Home", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-rainbow-rowell-find-your-way-home/4050-109969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109974/", + "id": 109974, + "name": "Spider-Gwen: Gwenom", + "site_detail_url": "https://comicvine.gamespot.com/spidergwen-gwenom/4050-109974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110077/", + "id": 110077, + "name": "Cable: Revolution", + "site_detail_url": "https://comicvine.gamespot.com/cable-revolution/4050-110077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110078/", + "id": 110078, + "name": "Captain America Epic Collection: The Bloodstone Hunt", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-the-bloodstone-hun/4050-110078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110091/", + "id": 110091, + "name": "Hunt For Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine/4050-110091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110092/", + "id": 110092, + "name": "Iceman: Absolute Zero", + "site_detail_url": "https://comicvine.gamespot.com/iceman-absolute-zero/4050-110092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110101/", + "id": 110101, + "name": "Jessica Jones: Return of the Purple Man", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-return-of-the-purple-man/4050-110101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110114/", + "id": 110114, + "name": "Spirits of Vengeance: War At The Gates of Hell", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance-war-at-the-gates-of-hell/4050-110114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110116/", + "id": 110116, + "name": "Star Wars: Darth Vader: Dark Lord of the Sith: Legacy's End", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-dark-lord-of-the-sith-legacy/4050-110116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110118/", + "id": 110118, + "name": "Superior Spider-Man: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/superior-spiderman-the-complete-collection/4050-110118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110119/", + "id": 110119, + "name": "Thanos Annual", + "site_detail_url": "https://comicvine.gamespot.com/thanos-annual/4050-110119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110120/", + "id": 110120, + "name": "X-Men: Domino", + "site_detail_url": "https://comicvine.gamespot.com/xmen-domino/4050-110120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110121/", + "id": 110121, + "name": "X-Men Legacy: Legion: Revenants", + "site_detail_url": "https://comicvine.gamespot.com/xmen-legacy-legion-revenants/4050-110121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110122/", + "id": 110122, + "name": "Cable: The Last Hope", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-last-hope/4050-110122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110219/", + "id": 110219, + "name": "Carnage Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/carnage-omnibus/4050-110219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110222/", + "id": 110222, + "name": "Marvel Rising", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising/4050-110222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110226/", + "id": 110226, + "name": "True Believers: Carol Danvers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-carol-danvers/4050-110226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110227/", + "id": 110227, + "name": "True Believers: Infinity Incoming!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-infinity-incoming/4050-110227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110228/", + "id": 110228, + "name": "True Believers: The Infinity War", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-infinity-war/4050-110228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110229/", + "id": 110229, + "name": "True Believers: Rebirth of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-rebirth-of-thanos/4050-110229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110492/", + "id": 110492, + "name": "Agents of Atlas: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-the-complete-collection/4050-110492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110496/", + "id": 110496, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-110496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110497/", + "id": 110497, + "name": "Avengers Assemble: Game On", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-game-on/4050-110497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110502/", + "id": 110502, + "name": "Color Your Own Deadpool Again!", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-deadpool-again/4050-110502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110503/", + "id": 110503, + "name": "Color Your Own Star Wars: Han Solo", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-star-wars-han-solo/4050-110503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110516/", + "id": 110516, + "name": "Hunt For Wolverine: Weapon Lost", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-weapon-lost/4050-110516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110532/", + "id": 110532, + "name": "S.H.I.E.L.D. by Hickman & Weaver: The Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/shield-by-hickman-weaver-the-rebirth/4050-110532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110533/", + "id": 110533, + "name": "She-Hulk: Jen Walters Must Die", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-jen-walters-must-die/4050-110533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110535/", + "id": 110535, + "name": "Spider-Man: Free Falling", + "site_detail_url": "https://comicvine.gamespot.com/spiderman-free-falling/4050-110535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110537/", + "id": 110537, + "name": "Star Wars: Han Solo", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-han-solo/4050-110537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110538/", + "id": 110538, + "name": "Star Wars: Tag & Bink Were Here", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-tag-bink-were-here/4050-110538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110542/", + "id": 110542, + "name": "Weapon X: The Return Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-the-return-omnibus/4050-110542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110543/", + "id": 110543, + "name": "You Are Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/you-are-deadpool/4050-110543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110616/", + "id": 110616, + "name": "Free Comic Book Day 2018 (Amazing Spider-Man/Guardians of the Galaxy)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2018-amazing-spidermanguardian/4050-110616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110617/", + "id": 110617, + "name": "Free Comic Book Day 2018 (Avengers/Captain America)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2018-avengerscaptain-america/4050-110617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110734/", + "id": 110734, + "name": "Amazing Spider-Man: Venom Inc.", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-venom-inc/4050-110734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110739/", + "id": 110739, + "name": "Death of Wolverine: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-the-complete-collection/4050-110739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110741/", + "id": 110741, + "name": "Despicable Deadpool: Bucket List", + "site_detail_url": "https://comicvine.gamespot.com/despicable-deadpool-bucket-list/4050-110741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110744/", + "id": 110744, + "name": "Hawkeye: Kate Bishop: Family Reunion", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-kate-bishop-family-reunion/4050-110744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110748/", + "id": 110748, + "name": "Hunt For Wolverine: Adamantium Agenda", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda/4050-110748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110763/", + "id": 110763, + "name": "Star Wars: The Last Jedi Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-jedi-adaptation/4050-110763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110767/", + "id": 110767, + "name": "True Believers: Wolverine: Blood Hungry", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-blood-hungry/4050-110767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110768/", + "id": 110768, + "name": "True Believers: Wolverine vs Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-vs-sabretooth/4050-110768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110770/", + "id": 110770, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4050-110770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110903/", + "id": 110903, + "name": "Amazing Spider-Man Epic Collection: Spider-Man No More", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-spider-man-no-m/4050-110903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110908/", + "id": 110908, + "name": "Ben Reilly: Scarlet Spider: The Slingers Return", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-the-slingers-return/4050-110908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110920/", + "id": 110920, + "name": "Hulk: Return To Planet Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk-return-to-planet-hulk/4050-110920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110921/", + "id": 110921, + "name": "Hunt For Wolverine: Claws Of A Killer", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-claws-of-a-killer/4050-110921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110922/", + "id": 110922, + "name": "Infinity Countdown: Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-daredevil/4050-110922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110925/", + "id": 110925, + "name": "Mighty Thor: At the Gates of Valhalla", + "site_detail_url": "https://comicvine.gamespot.com/mighty-thor-at-the-gates-of-valhalla/4050-110925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110926/", + "id": 110926, + "name": "Moon Knight: Legacy: Crazy Runs In The Family", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-legacy-crazy-runs-in-the-family/4050-110926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110931/", + "id": 110931, + "name": "Punisher Invades the 'Nam", + "site_detail_url": "https://comicvine.gamespot.com/punisher-invades-the-nam/4050-110931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110933/", + "id": 110933, + "name": "Quicksilver: No Surrender", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver-no-surrender/4050-110933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110936/", + "id": 110936, + "name": "Star Wars: Poe Dameron: Legend Found", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron-legend-found/4050-110936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110941/", + "id": 110941, + "name": "True Believers: Wolverine: Dying Game", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-dying-game/4050-110941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110942/", + "id": 110942, + "name": "True Believers: Wolverine: Fatal Attractions", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-fatal-attractions/4050-110942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110945/", + "id": 110945, + "name": "X-Men: The Wedding Special", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-wedding-special/4050-110945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110959/", + "id": 110959, + "name": "Hulk Wal-Mart Custom Comic", + "site_detail_url": "https://comicvine.gamespot.com/hulk-wal-mart-custom-comic/4050-110959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110963/", + "id": 110963, + "name": "Spider-Girl: A Fresh Start", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-a-fresh-start/4050-110963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110964/", + "id": 110964, + "name": "Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl/4050-110964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-110967/", + "id": 110967, + "name": "Norton Captain America: Evil Lurks Everywhere", + "site_detail_url": "https://comicvine.gamespot.com/norton-captain-america-evil-lurks-everywhere/4050-110967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111034/", + "id": 111034, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-111034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111035/", + "id": 111035, + "name": "Black Panther: Long Live The King", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-long-live-the-king/4050-111035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111043/", + "id": 111043, + "name": "Hunt For Wolverine: Mystery In Madripoor", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-mystery-in-madripoor/4050-111043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111044/", + "id": 111044, + "name": "Infinity Countdown: Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-darkhawk/4050-111044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111047/", + "id": 111047, + "name": "The Mighty Captain Marvel: Dark Origins", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-captain-marvel-dark-origins/4050-111047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111048/", + "id": 111048, + "name": "Monsters Unleashed: Learning Curve", + "site_detail_url": "https://comicvine.gamespot.com/monsters-unleashed-learning-curve/4050-111048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111059/", + "id": 111059, + "name": "Venom & X-Men: Poison-X", + "site_detail_url": "https://comicvine.gamespot.com/venom-and-x-men-poison-x/4050-111059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111071/", + "id": 111071, + "name": "S.H.I.E.L.D. by Hickman & Weaver", + "site_detail_url": "https://comicvine.gamespot.com/shield-by-hickman-and-weaver/4050-111071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111072/", + "id": 111072, + "name": "True Believers: Wolverine: The Brothers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-the-brothers/4050-111072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111073/", + "id": 111073, + "name": "True Believers: Wolverine vs. Venom", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-vs-venom/4050-111073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111126/", + "id": 111126, + "name": "Amazing Spider-Man: Renew Your Vows: Eight Years Later", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-eight-years-lat/4050-111126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111134/", + "id": 111134, + "name": "Color Your Own Ant-Man and the Wasp", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-ant-man-and-the-wasp/4050-111134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111142/", + "id": 111142, + "name": "Infinity Countdown: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-captain-marvel/4050-111142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111146/", + "id": 111146, + "name": "Marvel Super Hero Adventures: The Spider-Doctor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-the-spider-doctor/4050-111146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111150/", + "id": 111150, + "name": "The Punisher: War Machine", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-machine/4050-111150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111152/", + "id": 111152, + "name": "Silver Surfer Epic Collection: Thanos Quest", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-thanos-quest/4050-111152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111154/", + "id": 111154, + "name": "Star Wars: Lando: Double Or Nothing", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-lando-double-or-nothing/4050-111154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111165/", + "id": 111165, + "name": "Wolverine: The Amazing Immortal Man and Other Bloody Tales", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-amazing-immortal-man-and-other-blood/4050-111165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111166/", + "id": 111166, + "name": "X-Men Gold: Cruel and Unusual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-cruel-and-unusual/4050-111166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111167/", + "id": 111167, + "name": "X-Men: Red Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-men-red-annual/4050-111167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111225/", + "id": 111225, + "name": "Black Panther: Avengers of the New World Part Two", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-avengers-of-the-new-world-part-two/4050-111225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111226/", + "id": 111226, + "name": "True Believers: Exiles", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-exiles/4050-111226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111227/", + "id": 111227, + "name": "True Believers: Wolverine: Evolution", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-wolverine-evolution/4050-111227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111228/", + "id": 111228, + "name": "Iron Man: The Armor Wars", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-armor-wars/4050-111228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111375/", + "id": 111375, + "name": "Spidey: School's Out", + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out/4050-111375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111397/", + "id": 111397, + "name": "Ant-Man & the Wasp", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-and-the-wasp/4050-111397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111398/", + "id": 111398, + "name": "Ant-Man and the Wasp Adventures", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-and-the-wasp-adventures/4050-111398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111399/", + "id": 111399, + "name": "Ant-Man & the Wasp: Living Legends", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-and-the-wasp-living-legends/4050-111399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111400/", + "id": 111400, + "name": "Ant-Man: Astonishing Origins", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-astonishing-origins/4050-111400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111404/", + "id": 111404, + "name": "Black Bolt: Home Free", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt-home-free/4050-111404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111409/", + "id": 111409, + "name": "Captain America by Waid & Samnee: Home of the Brave", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-waid-and-samnee-home-of-the-bra/4050-111409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111413/", + "id": 111413, + "name": "Dazzler: X-Song", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-x-song/4050-111413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111414/", + "id": 111414, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-111414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111415/", + "id": 111415, + "name": "Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange/4050-111415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111425/", + "id": 111425, + "name": "The Immortal Hulk", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk/4050-111425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111431/", + "id": 111431, + "name": "Marvel's Ant-Man and the Wasp Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-ant-man-and-the-wasp-prelude/4050-111431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111433/", + "id": 111433, + "name": "Miles Morales: Ultimate Spider-Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-omnibus/4050-111433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111442/", + "id": 111442, + "name": "Runaways by Brian K. Vaughan & Adrian Alphona Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-brian-k-vaughan-and-adrian-alphona-omn/4050-111442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111446/", + "id": 111446, + "name": "Tales of Suspense: Hawkeye and the Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-suspense-hawkeye-and-the-winter-soldier/4050-111446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111450/", + "id": 111450, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4050-111450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111577/", + "id": 111577, + "name": "Dakota North: Design For Dying", + "site_detail_url": "https://comicvine.gamespot.com/dakota-north-design-for-dying/4050-111577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111579/", + "id": 111579, + "name": "Deadpool: Assassin", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-assassin/4050-111579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111580/", + "id": 111580, + "name": "The Defenders: Kingpins of New York", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-kingpins-of-new-york/4050-111580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111583/", + "id": 111583, + "name": "Marvel Rising: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising-alpha/4050-111583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111584/", + "id": 111584, + "name": "Marvel Two-In-One Annual", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-annual/4050-111584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111585/", + "id": 111585, + "name": "The Mighty Thor: The Death of the Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-thor-the-death-of-the-mighty-thor/4050-111585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111590/", + "id": 111590, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-111590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111591/", + "id": 111591, + "name": "Thor Epic Collection: Worldengine", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-worldengine/4050-111591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111593/", + "id": 111593, + "name": "The Weeknd Presents Starboy", + "site_detail_url": "https://comicvine.gamespot.com/the-weeknd-presents-starboy/4050-111593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111601/", + "id": 111601, + "name": "True Believers: Ant-Man and the Wasp: On the Trail of Spider-Man!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ant-man-and-the-wasp-on-the-trail-o/4050-111601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111602/", + "id": 111602, + "name": "True Believers: Ant-Man and the Wasp: 'Til Death Do Us Part!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ant-man-and-the-wasp-til-death-do-u/4050-111602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111662/", + "id": 111662, + "name": "Champions Classic: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/champions-classic-the-complete-collection/4050-111662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111665/", + "id": 111665, + "name": "Doctor Strange by Donny Cates: God of Magic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-donny-cates-god-of-magic/4050-111665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111676/", + "id": 111676, + "name": "Infinity Countdown: Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-black-widow/4050-111676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111677/", + "id": 111677, + "name": "Infinity Countdown: Champions", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-champions/4050-111677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111688/", + "id": 111688, + "name": "Peter Parker: The Spectacular Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-annual/4050-111688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111704/", + "id": 111704, + "name": "Tony Stark: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-iron-man/4050-111704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111707/", + "id": 111707, + "name": "The Unbeatable Squirrel Girl: My Best Friend's Squirrel", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-my-best-friends-squir/4050-111707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111708/", + "id": 111708, + "name": "Weapon X: Modern Warfare", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-modern-warfare/4050-111708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111709/", + "id": 111709, + "name": "Wolverine: Savage Origins", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-savage-origins/4050-111709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111719/", + "id": 111719, + "name": "Tony Stark: Iron Man: The Many Armors of Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-iron-man-the-many-armors-of-iron-man/4050-111719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111720/", + "id": 111720, + "name": "True Believers: The Astonishing Ant-Man: Incredible Shrinking Doom!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-astonishing-ant-man-incredible-/4050-111720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111721/", + "id": 111721, + "name": "True Believers: Scott Lang, The Astonishing Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-scott-lang-the-astonishing-ant-man/4050-111721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111810/", + "id": 111810, + "name": "Amazing Spider-Man: Wakanda Forever", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-wakanda-forever/4050-111810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111811/", + "id": 111811, + "name": "Ant-Man/Giant-Man: Growing Pains", + "site_detail_url": "https://comicvine.gamespot.com/ant-mangiant-man-growing-pains/4050-111811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111813/", + "id": 111813, + "name": "Avengers: No Surrender", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-surrender/4050-111813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111826/", + "id": 111826, + "name": "Fantastic Four Epic Collection: The New Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-new-fantastic-f/4050-111826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111832/", + "id": 111832, + "name": "Marvel Super Hero Adventures: Webs and Arrows and Ants, Oh My!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-webs-and-arrows-and-a/4050-111832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111838/", + "id": 111838, + "name": "Moon Girl and Devil Dinosaur: Fantastic Three", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-fantastic-three/4050-111838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111839/", + "id": 111839, + "name": "Multiple Man", + "site_detail_url": "https://comicvine.gamespot.com/multiple-man/4050-111839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111840/", + "id": 111840, + "name": "Nightmask: New Universe", + "site_detail_url": "https://comicvine.gamespot.com/nightmask-new-universe/4050-111840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111844/", + "id": 111844, + "name": "Sentry", + "site_detail_url": "https://comicvine.gamespot.com/sentry/4050-111844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111851/", + "id": 111851, + "name": "Thanos Wins by Donny Cates", + "site_detail_url": "https://comicvine.gamespot.com/thanos-wins-by-donny-cates/4050-111851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111874/", + "id": 111874, + "name": "True Believers: Ant-Man and Hawkeye: Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ant-man-and-hawkeye-avengers-assemb/4050-111874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111875/", + "id": 111875, + "name": "True Believers: Ant-Man Presents Iron Man: The Ghost and the Machine!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-ant-man-presents-iron-man-the-ghost/4050-111875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112027/", + "id": 112027, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-112027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112031/", + "id": 112031, + "name": "Cosmic Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider/4050-112031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112033/", + "id": 112033, + "name": "Death of the Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/death-of-the-inhumans/4050-112033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112034/", + "id": 112034, + "name": "Doctor Strange: Damnation - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-damnation-the-complete-collection/4050-112034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112045/", + "id": 112045, + "name": "Marvel Rising: Squirrel Girl & Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising-squirrel-girl-and-ms-marvel/4050-112045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112046/", + "id": 112046, + "name": "Marvel's Ant-Man and the Wasp: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvels-ant-man-and-the-wasp-the-art-of-the-movie/4050-112046/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112049/", + "id": 112049, + "name": "Punisher: Shadowmasters", + "site_detail_url": "https://comicvine.gamespot.com/punisher-shadowmasters/4050-112049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112052/", + "id": 112052, + "name": "Rogue & Gambit: Ring of Fire", + "site_detail_url": "https://comicvine.gamespot.com/rogue-and-gambit-ring-of-fire/4050-112052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112072/", + "id": 112072, + "name": "True Believers: Fantastic Four: The Coming of Galactus!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-coming-of-galact/4050-112072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112073/", + "id": 112073, + "name": "True Believers: Fantastic Four: The Wedding of Sue and Reed!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-wedding-of-sue-a/4050-112073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112160/", + "id": 112160, + "name": "All-New Wolverine: Old Woman Laura", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-old-woman-laura/4050-112160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112161/", + "id": 112161, + "name": "The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man/4050-112161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112162/", + "id": 112162, + "name": "Amazing Spider-Man Behind-the-Scenes Edition", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-behind-the-scenes-edition/4050-112162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112167/", + "id": 112167, + "name": "Captain America Epic Collection: Hero Or Hoax?", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-hero-or-hoax/4050-112167/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112172/", + "id": 112172, + "name": "Despicable Deadpool: The Marvel Universe Kills Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/despicable-deadpool-the-marvel-universe-kills-dead/4050-112172/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112190/", + "id": 112190, + "name": "Nova by Abnett & Lanning: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/nova-by-abnett-and-lanning-the-complete-collection/4050-112190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112204/", + "id": 112204, + "name": "Star Wars: Doctor Aphra: Remastered", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-remastered/4050-112204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112211/", + "id": 112211, + "name": "Wolverine: Old Man Logan: Scarlet Samurai", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-scarlet-samurai/4050-112211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112212/", + "id": 112212, + "name": "X-23", + "site_detail_url": "https://comicvine.gamespot.com/x-23/4050-112212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112223/", + "id": 112223, + "name": "True Believers: Fantastic Four: Galactus Hungers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-galactus-hungers/4050-112223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112224/", + "id": 112224, + "name": "True Believers: Fantastic Four: Hulk vs. Thing", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-hulk-vs-thing/4050-112224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112225/", + "id": 112225, + "name": "True Believers: Fantastic Four: Marvel Two-In-One", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-marvel-two-in-one/4050-112225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112226/", + "id": 112226, + "name": "True Believers: Fantastic Four vs. Doctor Doom!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-vs-doctor-doom/4050-112226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112309/", + "id": 112309, + "name": "Falcon: Take Flight", + "site_detail_url": "https://comicvine.gamespot.com/falcon-take-flight/4050-112309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112320/", + "id": 112320, + "name": "Invincible Iron Man: The Search For Tony Stark", + "site_detail_url": "https://comicvine.gamespot.com/invincible-iron-man-the-search-for-tony-stark/4050-112320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112323/", + "id": 112323, + "name": "Legion: Trauma", + "site_detail_url": "https://comicvine.gamespot.com/legion-trauma/4050-112323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112325/", + "id": 112325, + "name": "The Life of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-captain-marvel/4050-112325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112328/", + "id": 112328, + "name": "Marvel Super Hero Adventures: Ms. Marvel and the Teleporting Dog", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-ms-marvel-and-the-tel/4050-112328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112329/", + "id": 112329, + "name": "Marvel Two-In-One: Fate of the Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-fate-of-the-four/4050-112329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112330/", + "id": 112330, + "name": "Ms. Marvel: Teenage Wasteland", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-teenage-wasteland/4050-112330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112349/", + "id": 112349, + "name": "Skaar: Son of Hulk: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/skaar-son-of-hulk-the-complete-collection/4050-112349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112353/", + "id": 112353, + "name": "Spider-Man/Deadpool: WLMD", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-wlmd/4050-112353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112359/", + "id": 112359, + "name": "True Believers: Fantastic Four By John Byrne", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-by-john-byrne/4050-112359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112360/", + "id": 112360, + "name": "True Believers: Fantastic Four By Walter Simonson", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-by-walter-simonson/4050-112360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112361/", + "id": 112361, + "name": "True Believers: Fantastic Four: The Coming of H.E.R.B.I.E.", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-coming-of-herbie/4050-112361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112372/", + "id": 112372, + "name": "Cloak and Dagger", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger/4050-112372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112373/", + "id": 112373, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4050-112373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112374/", + "id": 112374, + "name": "Marvel Spotlight July 2018", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-july-2018/4050-112374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112433/", + "id": 112433, + "name": "S.H.I.E.L.D.: Infinity", + "site_detail_url": "https://comicvine.gamespot.com/shield-infinity/4050-112433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112442/", + "id": 112442, + "name": "Daredevil: Back In Black: Mayor Fisk", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-mayor-fisk/4050-112442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112443/", + "id": 112443, + "name": "Daredevil Epic Collection: Root of Evil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-root-of-evil/4050-112443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112453/", + "id": 112453, + "name": "Infinity Wars Prime", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-prime/4050-112453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112458/", + "id": 112458, + "name": "Mr. and Mrs. X", + "site_detail_url": "https://comicvine.gamespot.com/mr-and-mrs-x/4050-112458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112464/", + "id": 112464, + "name": "S.H.I.E.L.D. by Hickman & Weaver: The Human Machine", + "site_detail_url": "https://comicvine.gamespot.com/shield-by-hickman-and-weaver-the-human-machine/4050-112464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112465/", + "id": 112465, + "name": "Secret Invasion by Brian Michael Bendis Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-by-brian-michael-bendis-omnibus/4050-112465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112466/", + "id": 112466, + "name": "Secret Invasion: Rise of the Skrulls", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-rise-of-the-skrulls/4050-112466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112469/", + "id": 112469, + "name": "Venomized", + "site_detail_url": "https://comicvine.gamespot.com/venomized/4050-112469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112471/", + "id": 112471, + "name": "X-Men Blue: Cry Havok", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-cry-havok/4050-112471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112472/", + "id": 112472, + "name": "Wakanda Forever: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/wakanda-forever-x-men/4050-112472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112481/", + "id": 112481, + "name": "X-Men: Grand Design - Second Genesis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-112481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112482/", + "id": 112482, + "name": "True Believers: Fantastic Four: The Birth of Valeria", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-birth-of-valeria/4050-112482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112483/", + "id": 112483, + "name": "True Believers: Fantastic Four: What If?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-what-if/4050-112483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112484/", + "id": 112484, + "name": "True Believers: New Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-new-fantastic-four/4050-112484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112564/", + "id": 112564, + "name": "Astonishing X-Men by Charles Soule: A Man Called X", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-by-charles-soule-a-man-called-x/4050-112564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112582/", + "id": 112582, + "name": "Fantastic Four Epic Collection: The Coming of Galactus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-coming-of-galac/4050-112582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112585/", + "id": 112585, + "name": "Infinity Wars", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars/4050-112585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112590/", + "id": 112590, + "name": "Marvel Rising: Ms. Marvel & Squirrel Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising-ms-marvel-and-squirrel-girl/4050-112590/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112596/", + "id": 112596, + "name": "Rise of the Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/rise-of-the-black-panther/4050-112596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112607/", + "id": 112607, + "name": "X-Men: The Dark Phoenix Saga Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga-omnibus/4050-112607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112608/", + "id": 112608, + "name": "X-Men: Revolution by Chris Claremont Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-revolution-by-chris-claremont-omnibus/4050-112608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112680/", + "id": 112680, + "name": "Champions: Champion For A Day", + "site_detail_url": "https://comicvine.gamespot.com/champions-champion-for-a-day/4050-112680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112685/", + "id": 112685, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-112685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112694/", + "id": 112694, + "name": "Marvel Two-In-One Epic Collection: Cry Monster", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-epic-collection-cry-monster/4050-112694/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112702/", + "id": 112702, + "name": "Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual/4050-112702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112703/", + "id": 112703, + "name": "Spider-Man: Kraven's Last Hunt Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-last-hunt-deluxe-edition/4050-112703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112704/", + "id": 112704, + "name": "Star Wars: Mutiny At Mon Cala", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-mutiny-at-mon-cala/4050-112704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112707/", + "id": 112707, + "name": "Wolfpack: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/wolfpack-the-complete-collection/4050-112707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112708/", + "id": 112708, + "name": "X-Men Gold: 'Til Death Do Us Part", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-til-death-do-us-part/4050-112708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112791/", + "id": 112791, + "name": "Astonishing X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-annual/4050-112791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112796/", + "id": 112796, + "name": "Brute Force", + "site_detail_url": "https://comicvine.gamespot.com/brute-force/4050-112796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112797/", + "id": 112797, + "name": "Cable Deadpool Annual", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-annual/4050-112797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112801/", + "id": 112801, + "name": "Defenders Epic Collection: The New Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders-epic-collection-the-new-defenders/4050-112801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112806/", + "id": 112806, + "name": "Edge of Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-geddon/4050-112806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112807/", + "id": 112807, + "name": "Extermination", + "site_detail_url": "https://comicvine.gamespot.com/extermination/4050-112807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112811/", + "id": 112811, + "name": "The Human Torch and the Thing: Strange Tales: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-human-torch-and-the-thing-strange-tales-the-co/4050-112811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112816/", + "id": 112816, + "name": "Old Man Hawkeye: An Eye For An Eye", + "site_detail_url": "https://comicvine.gamespot.com/old-man-hawkeye-an-eye-for-an-eye/4050-112816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112818/", + "id": 112818, + "name": "Peter Parker: The Spectacular Spider-Man: Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-amazing-fa/4050-112818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112825/", + "id": 112825, + "name": "Star Wars: Beckett", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-beckett/4050-112825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112829/", + "id": 112829, + "name": "The Thing and the Human Torch by Dan Slott", + "site_detail_url": "https://comicvine.gamespot.com/the-thing-and-the-human-torch-by-dan-slott/4050-112829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112834/", + "id": 112834, + "name": "X-Men Adventures", + "site_detail_url": "https://comicvine.gamespot.com/x-men-adventures/4050-112834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112860/", + "id": 112860, + "name": "Luke Cage: Marvel Digital Original", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-marvel-digital-original/4050-112860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112907/", + "id": 112907, + "name": "Venomnibus", + "site_detail_url": "https://comicvine.gamespot.com/venomnibus/4050-112907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112936/", + "id": 112936, + "name": "Avengers: Back To Basics", + "site_detail_url": "https://comicvine.gamespot.com/avengers-back-to-basics/4050-112936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112941/", + "id": 112941, + "name": "Cloak and Dagger: Predator and Prey", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-predator-and-prey/4050-112941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112947/", + "id": 112947, + "name": "Destroyer by Robert Kirkman", + "site_detail_url": "https://comicvine.gamespot.com/destroyer-by-robert-kirkman/4050-112947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112949/", + "id": 112949, + "name": "Fantastic Four by Jonathan Hickman: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-jonathan-hickman-the-complete-co/4050-112949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112958/", + "id": 112958, + "name": "Lockjaw: Who's A Good Boy?", + "site_detail_url": "https://comicvine.gamespot.com/lockjaw-whos-a-good-boy/4050-112958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112960/", + "id": 112960, + "name": "Marvel Super Hero Adventures: Inferno", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-inferno/4050-112960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112965/", + "id": 112965, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-112965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112973/", + "id": 112973, + "name": "Venom: Along Came A Spider...", + "site_detail_url": "https://comicvine.gamespot.com/venom-along-came-a-spider/4050-112973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112975/", + "id": 112975, + "name": "Wakanda Forever Avengers", + "site_detail_url": "https://comicvine.gamespot.com/wakanda-forever-avengers/4050-112975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112976/", + "id": 112976, + "name": "Warlock: Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/warlock-second-coming/4050-112976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112977/", + "id": 112977, + "name": "West Coast Avengers", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers/4050-112977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113053/", + "id": 113053, + "name": "Amazing Spider-Man Epic Collection: Venom", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-venom/4050-113053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113061/", + "id": 113061, + "name": "Captain America by Mark Waid: Promised Land", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-mark-waid-promised-land/4050-113061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113063/", + "id": 113063, + "name": "Daredevil Annual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual/4050-113063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113068/", + "id": 113068, + "name": "Fantastic Four #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-1-facsimile-edition/4050-113068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113069/", + "id": 113069, + "name": "Fantastic Four: Behold... Galactus!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-behold-galactus/4050-113069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113074/", + "id": 113074, + "name": "Hunt For Wolverine: Dead Ends", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-dead-ends/4050-113074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113088/", + "id": 113088, + "name": "New Warriors: Darkness & Light", + "site_detail_url": "https://comicvine.gamespot.com/new-warriors-darkness-and-light/4050-113088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113094/", + "id": 113094, + "name": "Venom: First Host", + "site_detail_url": "https://comicvine.gamespot.com/venom-first-host/4050-113094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113095/", + "id": 113095, + "name": "Web of Venom: Ve'Nam", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-venam/4050-113095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113217/", + "id": 113217, + "name": "Asgardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/asgardians-of-the-galaxy/4050-113217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113231/", + "id": 113231, + "name": "Color Your Own Venom", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-venom/4050-113231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113237/", + "id": 113237, + "name": "Earth X Trilogy Omnibus: Alpha", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-trilogy-omnibus-alpha/4050-113237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113245/", + "id": 113245, + "name": "Marvel Knights Black Panther by Priest & Texeira: The Client", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-black-panther-by-priest-and-texeira/4050-113245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113248/", + "id": 113248, + "name": "Moon Knight by Jeff Lemire & Greg Smallwood", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-by-jeff-lemire-and-greg-smallwood/4050-113248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113250/", + "id": 113250, + "name": "Old Man Logan Annual", + "site_detail_url": "https://comicvine.gamespot.com/old-man-logan-annual/4050-113250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113258/", + "id": 113258, + "name": "Silver Surfer Annual", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-annual/4050-113258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113261/", + "id": 113261, + "name": "Spider-Man Vs. Venom Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-venom-omnibus/4050-113261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113264/", + "id": 113264, + "name": "Thanos Legacy", + "site_detail_url": "https://comicvine.gamespot.com/thanos-legacy/4050-113264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113270/", + "id": 113270, + "name": "Wolverine: Old Man Logan: To Kill For", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-to-kill-for/4050-113270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113272/", + "id": 113272, + "name": "X-Men: Red: The Hate Machine", + "site_detail_url": "https://comicvine.gamespot.com/x-men-red-the-hate-machine/4050-113272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113273/", + "id": 113273, + "name": "X-Men: The Wedding of Cyclops & Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-wedding-of-cyclops-and-phoenix/4050-113273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113277/", + "id": 113277, + "name": "Campus Jokes & Cartoons", + "site_detail_url": "https://comicvine.gamespot.com/campus-jokes-and-cartoons/4050-113277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113280/", + "id": 113280, + "name": "True Believers: Marvel Knights 20th Anniversary: Daredevil by Kevin Smith, Joe Quesada & Jimmy Palmiotti", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-20th-anniversary-dar/4050-113280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113281/", + "id": 113281, + "name": "True Believers: Marvel Knights 20th Anniversary: Daredevil by Stan Lee & Bill Everett", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-20th-anniversary-dar/4050-113281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113282/", + "id": 113282, + "name": "Deadpool: Secret Agent Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-secret-agent-deadpool/4050-113282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113294/", + "id": 113294, + "name": "Super Hero Squad: Super Stars", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-super-stars/4050-113294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113491/", + "id": 113491, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4050-113491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113492/", + "id": 113492, + "name": "Infinity Countdown", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown/4050-113492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113493/", + "id": 113493, + "name": "Infinity Countdown Companion", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-companion/4050-113493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113494/", + "id": 113494, + "name": "Journey Into Mystery: The Birth of Krakoa", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-mystery-the-birth-of-krakoa/4050-113494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113495/", + "id": 113495, + "name": "Marvel Knights Daredevil by Smith & Quesada: Guardian Devil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-daredevil-by-smith-and-quesada-guar/4050-113495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113496/", + "id": 113496, + "name": "Marvel Rising: Omega", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising-omega/4050-113496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113497/", + "id": 113497, + "name": "Star Wars: Darth Vader: Dark Lord of the Sith: The Burning Seas", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-dark-lord-of-the-sith-the-bu/4050-113497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113498/", + "id": 113498, + "name": "Star Wars: Thrawn", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-thrawn/4050-113498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113499/", + "id": 113499, + "name": "True Believers: Marvel Knights: Daredevil and the Defenders", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-daredevil-and-the-de/4050-113499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113500/", + "id": 113500, + "name": "True Believers: Marvel Knights: Jessica Jones: Alias", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-jessica-jones-alias/4050-113500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113501/", + "id": 113501, + "name": "True Believers: Marvel Knights: Luke Cage, Hero For Hire", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-luke-cage-hero-for-h/4050-113501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113502/", + "id": 113502, + "name": "Venom Adventures", + "site_detail_url": "https://comicvine.gamespot.com/venom-adventures/4050-113502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113503/", + "id": 113503, + "name": "Venom: Planet of the Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/venom-planet-of-the-symbiotes/4050-113503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113504/", + "id": 113504, + "name": "Venom: Tooth and Claw", + "site_detail_url": "https://comicvine.gamespot.com/venom-tooth-and-claw/4050-113504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113566/", + "id": 113566, + "name": "Marvel Masterworks: Golden Age Mystic Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-golden-age-mystic-comics/4050-113566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113575/", + "id": 113575, + "name": "Super Hero Squad: Squad Up!", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-squad-up/4050-113575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113679/", + "id": 113679, + "name": "Custom Sony Pictures 2018 Venom English Comic", + "site_detail_url": "https://comicvine.gamespot.com/custom-sony-pictures-2018-venom-english-comic/4050-113679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113685/", + "id": 113685, + "name": "Amazing Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-annual/4050-113685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113686/", + "id": 113686, + "name": "Amazing Spider-Man: Red Goblin", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-red-goblin/4050-113686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113692/", + "id": 113692, + "name": "Cable: Past Fears", + "site_detail_url": "https://comicvine.gamespot.com/cable-past-fears/4050-113692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113693/", + "id": 113693, + "name": "Captain America Annual", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-annual/4050-113693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113696/", + "id": 113696, + "name": "ClanDestine: Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-family-ties/4050-113696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113703/", + "id": 113703, + "name": "Franklin Richards: A Fantastic Year", + "site_detail_url": "https://comicvine.gamespot.com/franklin-richards-a-fantastic-year/4050-113703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113709/", + "id": 113709, + "name": "Infinity Countdown: Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/infinity-countdown-darkhawk/4050-113709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113710/", + "id": 113710, + "name": "Infinity Wars: Soldier Supreme", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-soldier-supreme/4050-113710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113715/", + "id": 113715, + "name": "Marvel Knights Fantastic Four by Morrison & Lee: 1234", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-fantastic-four-by-morrison-and-lee-/4050-113715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113716/", + "id": 113716, + "name": "Marvel Masterworks: Killraven", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-killraven/4050-113716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113717/", + "id": 113717, + "name": "Marvel Super Hero Adventures: Captain Marvel: First Day of School", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-first-/4050-113717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113726/", + "id": 113726, + "name": "Return of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/return-of-wolverine/4050-113726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113733/", + "id": 113733, + "name": "Spider-Gwen: The Life of Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-the-life-of-gwen-stacy/4050-113733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113735/", + "id": 113735, + "name": "Star Wars: Doctor Aphra", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra/4050-113735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113736/", + "id": 113736, + "name": "Star Wars Legends Epic Collection: The Menace Revealed", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-the-menace-revea/4050-113736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113738/", + "id": 113738, + "name": "Venom: The Nativity", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-nativity/4050-113738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113768/", + "id": 113768, + "name": "True Believers: Marvel Knights: Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-iron-fist/4050-113768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113769/", + "id": 113769, + "name": "True Believers: Marvel Knights: Power Man & Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-power-man-and-iron-f/4050-113769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113770/", + "id": 113770, + "name": "True Believers: Marvel Knights: The Punisher by Grant & Zeck", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-by-gran/4050-113770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113771/", + "id": 113771, + "name": "True Believers: Marvel Knights: The Punisher: The First Appearance", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-the-fir/4050-113771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113820/", + "id": 113820, + "name": "Super Hero Squad: Squaddies Forever", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-squaddies-forever/4050-113820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113854/", + "id": 113854, + "name": "Avengers West Coast Epic Collection: How The West Was Won", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-epic-collection-how-the-west-w/4050-113854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113856/", + "id": 113856, + "name": "Ben Reilly: Scarlet Spider: Damnation", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-damnation/4050-113856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113859/", + "id": 113859, + "name": "Darkhold: Pages From the Book of Sins: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/darkhold-pages-from-the-book-of-sins-the-complete-/4050-113859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113865/", + "id": 113865, + "name": "Domino Annual", + "site_detail_url": "https://comicvine.gamespot.com/domino-annual/4050-113865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113867/", + "id": 113867, + "name": "Exiles: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/exiles-the-complete-collection/4050-113867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113868/", + "id": 113868, + "name": "Exiles: Test of Time", + "site_detail_url": "https://comicvine.gamespot.com/exiles-test-of-time/4050-113868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113878/", + "id": 113878, + "name": "Guardians of the Galaxy by Gerry Duggan Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-gerry-duggan-omnibus/4050-113878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113882/", + "id": 113882, + "name": "Hulk: World War Hulk II", + "site_detail_url": "https://comicvine.gamespot.com/hulk-world-war-hulk-ii/4050-113882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113884/", + "id": 113884, + "name": "Infinity Wars: Iron Hammer", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-iron-hammer/4050-113884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113899/", + "id": 113899, + "name": "Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon/4050-113899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113904/", + "id": 113904, + "name": "Thor Epic Collection: The Fall of Asgard", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-fall-of-asgard/4050-113904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113906/", + "id": 113906, + "name": "True Believers: Marvel Knights: Luke Cage and Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-luke-cage-and-fantas/4050-113906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113914/", + "id": 113914, + "name": "You Are Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/you-are-deadpool/4050-113914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113930/", + "id": 113930, + "name": "True Believers: Marvel Knights: Hellcat", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-hellcat/4050-113930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113931/", + "id": 113931, + "name": "True Believers: Marvel Knights: The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher/4050-113931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113932/", + "id": 113932, + "name": "True Believers: Marvel Knights: The Punisher War Journal", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-knights-the-punisher-war-jou/4050-113932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-113937/", + "id": 113937, + "name": "Super Hero Squad: Infinity Sword Quest", + "site_detail_url": "https://comicvine.gamespot.com/super-hero-squad-infinity-sword-quest/4050-113937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114043/", + "id": 114043, + "name": "Avengers by Jason Aaron: The Final Host", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-the-final-host/4050-114043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114044/", + "id": 114044, + "name": "Avengers/Doctor Strange: Rise of the Darkhold", + "site_detail_url": "https://comicvine.gamespot.com/avengersdoctor-strange-rise-of-the-darkhold/4050-114044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114054/", + "id": 114054, + "name": "Doctor Strange by Donny Cates: City of Sin", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-donny-cates-city-of-sin/4050-114054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114060/", + "id": 114060, + "name": "Hellstorm by Warren Ellis Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/hellstorm-by-warren-ellis-omnibus/4050-114060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114061/", + "id": 114061, + "name": "Infinity Wars: Sleepwalker", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-sleepwalker/4050-114061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114071/", + "id": 114071, + "name": "The Marvel Cinematic Universe: The Marvel Comics Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-cinematic-universe-the-marvel-comics-om/4050-114071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114084/", + "id": 114084, + "name": "Shatterstar", + "site_detail_url": "https://comicvine.gamespot.com/shatterstar/4050-114084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114089/", + "id": 114089, + "name": "Superior Octopus", + "site_detail_url": "https://comicvine.gamespot.com/superior-octopus/4050-114089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114097/", + "id": 114097, + "name": "Typhoid Fever: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-spider-man/4050-114097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114099/", + "id": 114099, + "name": "What If? Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/what-if-spider-man/4050-114099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114100/", + "id": 114100, + "name": "What If? X-Men", + "site_detail_url": "https://comicvine.gamespot.com/what-if-x-men/4050-114100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114104/", + "id": 114104, + "name": "X-Men: Black - Magneto", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black-magneto/4050-114104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114105/", + "id": 114105, + "name": "X-Men: Phoenix In Darkness by Grant Morrison", + "site_detail_url": "https://comicvine.gamespot.com/x-men-phoenix-in-darkness-by-grant-morrison/4050-114105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114112/", + "id": 114112, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-114112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114113/", + "id": 114113, + "name": "True Believers: What If Jane Foster Had Found the Hammer of Thor?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-jane-foster-had-found-the-h/4050-114113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114114/", + "id": 114114, + "name": "True Believers: What If The Avengers Had Fought Evil During the 1950's?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-the-avengers-had-fought-evi/4050-114114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114127/", + "id": 114127, + "name": "Spectacular Spider-Girl: Who Killed Gwen Reilly?", + "site_detail_url": "https://comicvine.gamespot.com/spectacular-spider-girl-who-killed-gwen-reilly/4050-114127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114154/", + "id": 114154, + "name": "Spider-Girl: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-the-complete-collection/4050-114154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114237/", + "id": 114237, + "name": "Blade: Blood and Chaos", + "site_detail_url": "https://comicvine.gamespot.com/blade-blood-and-chaos/4050-114237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114252/", + "id": 114252, + "name": "Marvel Knights Black Widow by Grayson & Rucka: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-black-widow-by-grayson-and-rucka-th/4050-114252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114256/", + "id": 114256, + "name": "New Mutants: Dead Souls", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-dead-souls/4050-114256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114262/", + "id": 114262, + "name": "Quasar: Cosmos In Collision", + "site_detail_url": "https://comicvine.gamespot.com/quasar-cosmos-in-collision/4050-114262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114269/", + "id": 114269, + "name": "Solo: A Star Wars Story Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/solo-a-star-wars-story-adaptation/4050-114269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114277/", + "id": 114277, + "name": "What If? The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/what-if-the-punisher/4050-114277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114278/", + "id": 114278, + "name": "X-Men: Black - Mojo", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black-mojo/4050-114278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114279/", + "id": 114279, + "name": "X-Men: Cyclops & Phoenix - Past & Future", + "site_detail_url": "https://comicvine.gamespot.com/x-men-cyclops-and-phoenix-past-and-future/4050-114279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114280/", + "id": 114280, + "name": "X-Men: The Magneto War", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-magneto-war/4050-114280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114281/", + "id": 114281, + "name": "X-Men: Uncanny Origins", + "site_detail_url": "https://comicvine.gamespot.com/x-men-uncanny-origins/4050-114281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114294/", + "id": 114294, + "name": "True Believers: What If Dr. Doom Had Become A Hero?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-dr-doom-had-become-a-hero/4050-114294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114295/", + "id": 114295, + "name": "True Believers: What If Spider-Man Had Rescued Gwen Stacy?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-spider-man-had-rescued-gwen/4050-114295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114364/", + "id": 114364, + "name": "Marvel Adventures Avengers: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-adventures-avengers-iron-man/4050-114364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114414/", + "id": 114414, + "name": "Doctor Strange: Damnation", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-damnation/4050-114414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114415/", + "id": 114415, + "name": "Doctor Strange Epic Collection: Master of the Mystic Arts", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-master-of-the-mysti/4050-114415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114416/", + "id": 114416, + "name": "Infinity Wars: Weapon Hex", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-weapon-hex/4050-114416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114417/", + "id": 114417, + "name": "Marvel Knights Daredevil by Bendis & Maleev: Underboss", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-daredevil-by-bendis-and-maleev-unde/4050-114417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114418/", + "id": 114418, + "name": "Marvel Knights by Dixon & Barreto: Defenders of the Streets", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-by-dixon-and-barreto-defenders-of-t/4050-114418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114419/", + "id": 114419, + "name": "Marvel Zombie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombie/4050-114419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114420/", + "id": 114420, + "name": "Runaways by Rainbow Rowell & Kris Anka: Best Friends Forever", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-rainbow-rowell-and-kris-anka-best-frie/4050-114420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114421/", + "id": 114421, + "name": "Shuri", + "site_detail_url": "https://comicvine.gamespot.com/shuri/4050-114421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114422/", + "id": 114422, + "name": "Spider-Man/Iron Man: Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/spider-maniron-man-marvel-team-up/4050-114422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114423/", + "id": 114423, + "name": "True Believers: What If... The Alien Costume Had Possessed Spider-Man?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-the-alien-costume-had-posse/4050-114423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114424/", + "id": 114424, + "name": "True Believers: What If The Fantastic Four Had Not Gained Their Powers?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-the-fantastic-four-had-not-/4050-114424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114425/", + "id": 114425, + "name": "The Unstoppable Wasp", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp/4050-114425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114426/", + "id": 114426, + "name": "Venom Annual", + "site_detail_url": "https://comicvine.gamespot.com/venom-annual/4050-114426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114427/", + "id": 114427, + "name": "What If? Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/what-if-ghost-rider/4050-114427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114428/", + "id": 114428, + "name": "X-Men: Black - Mystique", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black-mystique/4050-114428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114701/", + "id": 114701, + "name": "Black Panther vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-vs-deadpool/4050-114701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114704/", + "id": 114704, + "name": "Cable: Soldier X", + "site_detail_url": "https://comicvine.gamespot.com/cable-soldier-x/4050-114704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114707/", + "id": 114707, + "name": "Deadpool: Assassin", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-assassin/4050-114707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114714/", + "id": 114714, + "name": "Hunt For Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine/4050-114714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114715/", + "id": 114715, + "name": "Infinity Wars: Arachknight", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-arachknight/4050-114715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114721/", + "id": 114721, + "name": "Marvel Super Hero Adventures: To Wakanda and Beyond", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-to-wakanda-and-beyond/4050-114721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114722/", + "id": 114722, + "name": "Marvel Super Hero Adventures: Captain Marvel - Halloween Spooktacular", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-hallow/4050-114722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114733/", + "id": 114733, + "name": "Spider-Girls", + "site_detail_url": "https://comicvine.gamespot.com/spider-girls/4050-114733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114734/", + "id": 114734, + "name": "Spider-Gwen: Ghost-Spider", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-ghost-spider/4050-114734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114735/", + "id": 114735, + "name": "Star Wars: Darth Vader: Dark Lord of the Sith", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-dark-lord-of-the-sith/4050-114735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114736/", + "id": 114736, + "name": "True Believers: What If... Kraven the Hunter Had Killed Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-kraven-the-hunter-had-kille/4050-114736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114737/", + "id": 114737, + "name": "True Believers: What If... The Silver Surfer Possessed the Infinity Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-the-silver-surfer-possessed/4050-114737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114740/", + "id": 114740, + "name": "Wakanda Forever", + "site_detail_url": "https://comicvine.gamespot.com/wakanda-forever/4050-114740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114741/", + "id": 114741, + "name": "What If? Thor", + "site_detail_url": "https://comicvine.gamespot.com/what-if-thor/4050-114741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114744/", + "id": 114744, + "name": "X-Men: Black - Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black-juggernaut/4050-114744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114762/", + "id": 114762, + "name": "Return of Wolverine: Director's Cut Edition", + "site_detail_url": "https://comicvine.gamespot.com/return-of-wolverine-directors-cut-edition/4050-114762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114783/", + "id": 114783, + "name": "Rawhide Kid: Slap Leather", + "site_detail_url": "https://comicvine.gamespot.com/rawhide-kid-slap-leather/4050-114783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114838/", + "id": 114838, + "name": "Ms. Marvel: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-halloween-comicfest/4050-114838/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114845/", + "id": 114845, + "name": "The Superior Spider-Man: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/the-superior-spider-man-halloween-comicfest/4050-114845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114846/", + "id": 114846, + "name": "Thor: Road To War of the Realms: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/thor-road-to-war-of-the-realms-halloween-comicfest/4050-114846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114867/", + "id": 114867, + "name": "Avengers Halloween Special", + "site_detail_url": "https://comicvine.gamespot.com/avengers-halloween-special/4050-114867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114868/", + "id": 114868, + "name": "Avengers Undercover: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-undercover-the-complete-collection/4050-114868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114890/", + "id": 114890, + "name": "Incredible Hulk Epic Collection: The Leader Lives", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-the-leader-lives/4050-114890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114891/", + "id": 114891, + "name": "Jessica Jones: Blind Spot", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-blind-spot/4050-114891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114900/", + "id": 114900, + "name": "Mutant X: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/mutant-x-the-complete-collection/4050-114900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114912/", + "id": 114912, + "name": "Spider-Force", + "site_detail_url": "https://comicvine.gamespot.com/spider-force/4050-114912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114916/", + "id": 114916, + "name": "Vault of Spiders", + "site_detail_url": "https://comicvine.gamespot.com/vault-of-spiders/4050-114916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114917/", + "id": 114917, + "name": "Weapon H: AWOL", + "site_detail_url": "https://comicvine.gamespot.com/weapon-h-awol/4050-114917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114918/", + "id": 114918, + "name": "Weapon X: Russian Revolution", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-russian-revolution/4050-114918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114919/", + "id": 114919, + "name": "What If? Magik", + "site_detail_url": "https://comicvine.gamespot.com/what-if-magik/4050-114919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114923/", + "id": 114923, + "name": "X-Men: Black - Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black-emma-frost/4050-114923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114924/", + "id": 114924, + "name": "X-Men: Blue: Surviving The Experience", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-surviving-the-experience/4050-114924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114948/", + "id": 114948, + "name": "X-Men: Grand Design - Second Genesis", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-114948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115033/", + "id": 115033, + "name": "Ant-Man and the Wasp: Lost and Found", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-and-the-wasp-lost-and-found/4050-115033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115043/", + "id": 115043, + "name": "Champions: Northern Lights", + "site_detail_url": "https://comicvine.gamespot.com/champions-northern-lights/4050-115043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115049/", + "id": 115049, + "name": "Domino: Killer Instinct", + "site_detail_url": "https://comicvine.gamespot.com/domino-killer-instinct/4050-115049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115061/", + "id": 115061, + "name": "Marvel Knights: 20th", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-20th/4050-115061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115062/", + "id": 115062, + "name": "Marvel Knights by Joe Quesada Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-by-joe-quesada-omnibus/4050-115062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115063/", + "id": 115063, + "name": "Marvel Rising", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising/4050-115063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115065/", + "id": 115065, + "name": "Marvel Super Hero Adventures: Captain Marvel - Mealtime Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel-mealti/4050-115065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115066/", + "id": 115066, + "name": "Marvel's Avengers: Infinity War: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-infinity-war-the-art-of-the-movie/4050-115066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115082/", + "id": 115082, + "name": "Star Wars: Han Solo - Imperial Cadet", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-han-solo-imperial-cadet/4050-115082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115083/", + "id": 115083, + "name": "Star Wars: Lando - Double Or Nothing", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-lando-double-or-nothing/4050-115083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115084/", + "id": 115084, + "name": "Star Wars: The Last Jedi Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-last-jedi-adaptation/4050-115084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115090/", + "id": 115090, + "name": "Typhoid Fever: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-x-men/4050-115090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115098/", + "id": 115098, + "name": "X-Men: Mutant Massacre Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-mutant-massacre-omnibus/4050-115098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115237/", + "id": 115237, + "name": "Black Order", + "site_detail_url": "https://comicvine.gamespot.com/black-order/4050-115237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115259/", + "id": 115259, + "name": "Infinity Wars: Infinity Warps", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-infinity-warps/4050-115259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115261/", + "id": 115261, + "name": "Luke Cage: Everyman", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-everyman/4050-115261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115263/", + "id": 115263, + "name": "Marvel's Captain Marvel Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-marvel-prelude/4050-115263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115264/", + "id": 115264, + "name": "Marvels: The Remastered Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-remastered-edition/4050-115264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115274/", + "id": 115274, + "name": "Spider-Man: Spider-Verse - Fearsome Foes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-fearsome-foes/4050-115274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115275/", + "id": 115275, + "name": "Spider-Man: Spider-Verse - Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-miles-morales/4050-115275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115276/", + "id": 115276, + "name": "Spider-Man: Spider-Verse - Spider-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-gwen/4050-115276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115277/", + "id": 115277, + "name": "Spider-Man: Spider-Verse - Spider-Men", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-men/4050-115277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115282/", + "id": 115282, + "name": "Thanos: The Infinity Conflict", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-conflict/4050-115282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115284/", + "id": 115284, + "name": "The Unbeatable Squirrel Girl: Squirrels Fall Like Dominoes", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-squirrels-fall-like-d/4050-115284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115285/", + "id": 115285, + "name": "Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men/4050-115285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115289/", + "id": 115289, + "name": "X-Men Epic Collection: The Sentinels Live", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-the-sentinels-live/4050-115289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115297/", + "id": 115297, + "name": "Black Panther: Avengers of the New World", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-avengers-of-the-new-world/4050-115297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115298/", + "id": 115298, + "name": "Daughters of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-the-dragon/4050-115298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115299/", + "id": 115299, + "name": "Secrets of Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-uncanny-x-men/4050-115299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115344/", + "id": 115344, + "name": "Strange Tales", + "site_detail_url": "https://comicvine.gamespot.com/strange-tales/4050-115344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115378/", + "id": 115378, + "name": "Amazing Spider-Man: Renew Your Vows: Are You Okay, Annie?", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-are-you-okay-an/4050-115378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115394/", + "id": 115394, + "name": "Immortal Hulk: Or Is He Both?", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-or-is-he-both/4050-115394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115395/", + "id": 115395, + "name": "Infinity Wars: Ghost Panther", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-ghost-panther/4050-115395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115408/", + "id": 115408, + "name": "Peter Parker: The Spectacular Spider-Man: Coming Home", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-coming-hom/4050-115408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115411/", + "id": 115411, + "name": "Silver Surfer by Slott & Allred Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-by-slott-and-allred-omnibus/4050-115411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115413/", + "id": 115413, + "name": "Spider-Man: Enter the Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-enter-the-spider-verse/4050-115413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115414/", + "id": 115414, + "name": "Spidey: School's Out", + "site_detail_url": "https://comicvine.gamespot.com/spidey-schools-out/4050-115414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115417/", + "id": 115417, + "name": "Venom by Donny Cates: Rex", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates-rex/4050-115417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115418/", + "id": 115418, + "name": "Web of Venom: Carnage Born", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-carnage-born/4050-115418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115545/", + "id": 115545, + "name": "Marvel Action: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-spider-man/4050-115545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115556/", + "id": 115556, + "name": "Amazing Spider-Man by Nick Spencer: Back To Basics", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-back-to-basics/4050-115556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115566/", + "id": 115566, + "name": "Dead Man Logan", + "site_detail_url": "https://comicvine.gamespot.com/dead-man-logan/4050-115566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115575/", + "id": 115575, + "name": "Ironheart", + "site_detail_url": "https://comicvine.gamespot.com/ironheart/4050-115575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115577/", + "id": 115577, + "name": "Marvel Knights Marvel Boy by Morrison & Jones", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-marvel-boy-by-morrison-and-jones/4050-115577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115580/", + "id": 115580, + "name": "Moon Girl and the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-the-marvel-universe/4050-115580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115585/", + "id": 115585, + "name": "Quicksilver: No Surrender", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver-no-surrender/4050-115585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115589/", + "id": 115589, + "name": "Spider-Man/Deadpool: My Two Dads", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-my-two-dads/4050-115589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115597/", + "id": 115597, + "name": "X-Factor Epic Collection: All-New, All-Different X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-epic-collection-all-new-all-different-x-f/4050-115597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115598/", + "id": 115598, + "name": "X-Men Classic: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-classic-the-complete-collection/4050-115598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115599/", + "id": 115599, + "name": "X-Men: Gold: Godwar", + "site_detail_url": "https://comicvine.gamespot.com/x-men-gold-godwar/4050-115599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115600/", + "id": 115600, + "name": "X-Men: Marauders", + "site_detail_url": "https://comicvine.gamespot.com/x-men-marauders/4050-115600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115640/", + "id": 115640, + "name": "Iron Man: I Am Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-i-am-iron-man/4050-115640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115717/", + "id": 115717, + "name": "Avengers Assemble: Time Will Tell", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-time-will-tell/4050-115717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115727/", + "id": 115727, + "name": "Doctor Strange by Mark Waid: Across The Universe", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-mark-waid-across-the-universe/4050-115727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115729/", + "id": 115729, + "name": "Fantastic Four by Waid & Wieringo Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-waid-and-wieringo-omnibus/4050-115729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115739/", + "id": 115739, + "name": "Hunt For Wolverine: Adamantium Agenda", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda/4050-115739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115740/", + "id": 115740, + "name": "Hunt For Wolverine: Claws of A Killer", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-claws-of-a-killer/4050-115740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115741/", + "id": 115741, + "name": "Hunt For Wolverine: Mystery In Madripoor", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-mystery-in-madripoor/4050-115741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115742/", + "id": 115742, + "name": "Hunt For Wolverine: Weapon Lost", + "site_detail_url": "https://comicvine.gamespot.com/hunt-for-wolverine-weapon-lost/4050-115742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115743/", + "id": 115743, + "name": "Immortal Hulk: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-the-best-defense/4050-115743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115744/", + "id": 115744, + "name": "Jeph Loeb & Tim Sale: Yellow, Blue, Gray & White Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/jeph-loeb-and-tim-sale-yellow-blue-gray-and-white-/4050-115744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115745/", + "id": 115745, + "name": "Killmonger", + "site_detail_url": "https://comicvine.gamespot.com/killmonger/4050-115745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115749/", + "id": 115749, + "name": "Marvel's Avengers: Untitled Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-untitled-prelude/4050-115749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115752/", + "id": 115752, + "name": "Merry X-Men Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/merry-x-men-holiday-special/4050-115752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115754/", + "id": 115754, + "name": "Namor: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-best-defense/4050-115754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115762/", + "id": 115762, + "name": "Spider-Geddon Handbook", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-handbook/4050-115762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115764/", + "id": 115764, + "name": "Star Wars: Age of Republic - Qui-Gon Jin ", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-qui-gon-jin/4050-115764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115765/", + "id": 115765, + "name": "Star Wars: Poe Dameron: The Spark and the Fire", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-poe-dameron-the-spark-and-the-fire/4050-115765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115768/", + "id": 115768, + "name": "True Believers: Fantastic Four: The Mad Thinker and His Awesome Android!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-mad-thinker-and-/4050-115768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115769/", + "id": 115769, + "name": "True Believers: Fantastic Four: Prisoners of the Puppet-Master!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-prisoners-of-the-pup/4050-115769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115770/", + "id": 115770, + "name": "True Believers: Fantastic Four: Skrulls From Outer Space!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-skrulls-from-outer-s/4050-115770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115772/", + "id": 115772, + "name": "Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier/4050-115772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115774/", + "id": 115774, + "name": "Wolverine: Old Man Logan: The Hunter and the Hunted", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-the-hunter-and-the-hunted/4050-115774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115775/", + "id": 115775, + "name": "X-Men: The Exterminated", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-exterminated/4050-115775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115823/", + "id": 115823, + "name": "Iron Man: Many Armors of Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-many-armors-of-iron-man/4050-115823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115875/", + "id": 115875, + "name": "Cloak and Dagger: Shades of Grey", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-shades-of-grey/4050-115875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115877/", + "id": 115877, + "name": "Doctor Strange: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-best-defense/4050-115877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115881/", + "id": 115881, + "name": "Fantastic Four: Wedding Special", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-wedding-special/4050-115881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115894/", + "id": 115894, + "name": "Marvel Knights Punisher by Garth Ennis: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-punisher-by-garth-ennis-the-complet/4050-115894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115897/", + "id": 115897, + "name": "Miles Morales: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man/4050-115897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115902/", + "id": 115902, + "name": "The Punisher Epic Collection: Circle of Blood", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-epic-collection-circle-of-blood/4050-115902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115905/", + "id": 115905, + "name": "Silver Surfer: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-the-best-defense/4050-115905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115908/", + "id": 115908, + "name": "Spider-Man: Demolition Days", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-demolition-days/4050-115908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115909/", + "id": 115909, + "name": "Star Wars: Age of Republic - Darth Maul", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-darth-maul/4050-115909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115910/", + "id": 115910, + "name": "Star Wars: Hope Dies", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-hope-dies/4050-115910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115914/", + "id": 115914, + "name": "Typhoid Fever: Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever-iron-fist/4050-115914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115941/", + "id": 115941, + "name": "True Believers: Fantastic Four: Dragon Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-dragon-man/4050-115941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115942/", + "id": 115942, + "name": "True Believers: Fantastic Four: The Molecule Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-the-molecule-man/4050-115942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115943/", + "id": 115943, + "name": "True Believers: Fantastic Four: Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-super-skrull/4050-115943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115950/", + "id": 115950, + "name": "Black Widow & the Marvel Girls", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-and-the-marvel-girls/4050-115950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116065/", + "id": 116065, + "name": "Champions Annual", + "site_detail_url": "https://comicvine.gamespot.com/champions-annual/4050-116065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116066/", + "id": 116066, + "name": "Daredevil: Back In Black: Mayor Murdock", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-mayor-murdock/4050-116066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116067/", + "id": 116067, + "name": "Defenders: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/defenders-the-best-defense/4050-116067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116068/", + "id": 116068, + "name": "Infinity Wars: Fallen Guardian", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-fallen-guardian/4050-116068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116069/", + "id": 116069, + "name": "League of Legends: Ashe: Warmother Special Edition", + "site_detail_url": "https://comicvine.gamespot.com/league-of-legends-ashe-warmother-special-edition/4050-116069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116070/", + "id": 116070, + "name": "Marvel Knights Daredevil by Bendis, Jenkins, Gale & Mack: Unusual Suspects", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-daredevil-by-bendis-jenkins-gale-an/4050-116070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116071/", + "id": 116071, + "name": "Marvel Knights Daredevil by Mack & Quesada: Parts of A Whole", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-daredevil-by-mack-and-quesada-parts/4050-116071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116072/", + "id": 116072, + "name": "Marvel Super Hero Adventures: Frost Giants Among Us!", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-frost-giants-among-us/4050-116072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116073/", + "id": 116073, + "name": "Marvel Universe by Frank Miller Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-frank-miller-omnibus/4050-116073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116074/", + "id": 116074, + "name": "Moon Girl and Devil Dinosaur: Save Our School", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-save-our-school/4050-116074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116075/", + "id": 116075, + "name": "Moon Knight Epic Collection: Final Rest", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-epic-collection-final-rest/4050-116075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116076/", + "id": 116076, + "name": "Moon Knight: Legacy: Phases", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-legacy-phases/4050-116076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116077/", + "id": 116077, + "name": "Multiple Man: It All Makes Sense In the End", + "site_detail_url": "https://comicvine.gamespot.com/multiple-man-it-all-makes-sense-in-the-end/4050-116077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116078/", + "id": 116078, + "name": "New X-Men: Academy X: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-academy-x-the-complete-collection/4050-116078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116079/", + "id": 116079, + "name": "Season's Beatings", + "site_detail_url": "https://comicvine.gamespot.com/seasons-beatings/4050-116079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116080/", + "id": 116080, + "name": "Sentry: Man of Two Worlds", + "site_detail_url": "https://comicvine.gamespot.com/sentry-man-of-two-worlds/4050-116080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116081/", + "id": 116081, + "name": "She-Hulk by Soule & Pulido: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-soule-and-pulido-the-complete-collecti/4050-116081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116082/", + "id": 116082, + "name": "Superior Spider-Man Companion", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-companion/4050-116082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116083/", + "id": 116083, + "name": "Thor: God of Thunder Reborn", + "site_detail_url": "https://comicvine.gamespot.com/thor-god-of-thunder-reborn/4050-116083/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116084/", + "id": 116084, + "name": "True Believers: Fantastic Four: Blastaar", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-blastaar/4050-116084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116085/", + "id": 116085, + "name": "True Believers: Fantastic Four: Frightful Four", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-frightful-four/4050-116085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116086/", + "id": 116086, + "name": "True Believers: Fantastic Four: Klaw", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-klaw/4050-116086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116087/", + "id": 116087, + "name": "True Believers: Fantastic Four: Ronan and the Kree", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-fantastic-four-ronan-and-the-kree/4050-116087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116088/", + "id": 116088, + "name": "Venom: First Host", + "site_detail_url": "https://comicvine.gamespot.com/venom-first-host/4050-116088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116089/", + "id": 116089, + "name": "X-Men: Reload by Chris Claremont: The End of History", + "site_detail_url": "https://comicvine.gamespot.com/x-men-reload-by-chris-claremont-the-end-of-history/4050-116089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116160/", + "id": 116160, + "name": "Superior Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man/4050-116160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116161/", + "id": 116161, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4050-116161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116202/", + "id": 116202, + "name": "Cloak and Dagger: Negative Exposure", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-negative-exposure/4050-116202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116205/", + "id": 116205, + "name": "Wolverine: Snikt!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-snikt/4050-116205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116243/", + "id": 116243, + "name": "Champions", + "site_detail_url": "https://comicvine.gamespot.com/champions/4050-116243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116245/", + "id": 116245, + "name": "Conan the Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian/4050-116245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116246/", + "id": 116246, + "name": "Deadpool by Skottie Young: Mercin' Hard For the Money", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-skottie-young-mercin-hard-for-the-mone/4050-116246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116247/", + "id": 116247, + "name": "Death of the Inhumans", + "site_detail_url": "https://comicvine.gamespot.com/death-of-the-inhumans/4050-116247/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116248/", + "id": 116248, + "name": "Guardians of the Galaxy: Tomorrow's Heroes Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-tomorrows-heroes-omnibus/4050-116248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116253/", + "id": 116253, + "name": "Infinity Wars: Infinity", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-infinity/4050-116253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116254/", + "id": 116254, + "name": "Iron Fist: Phantom Limb", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-phantom-limb/4050-116254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116257/", + "id": 116257, + "name": "Man Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/man-without-fear/4050-116257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116258/", + "id": 116258, + "name": "Marvel Super Hero Adventures: Spider-Man – Across the Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-across-the/4050-116258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116259/", + "id": 116259, + "name": "Marvel Tales: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-fantastic-four/4050-116259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116263/", + "id": 116263, + "name": "Spider-Geddon: Edge of Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-edge-of-spider-geddon/4050-116263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116264/", + "id": 116264, + "name": "Spider-Man: Ben Reilly Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-ben-reilly-omnibus/4050-116264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116265/", + "id": 116265, + "name": "Star Wars: Age of Republic - Obi-Wan Kenobi", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-obi-wan-kenobi/4050-116265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116267/", + "id": 116267, + "name": "Tony Stark: Iron Man: Self-Made Man", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-iron-man-self-made-man/4050-116267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116269/", + "id": 116269, + "name": "Wolverine: The Long Night Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-long-night-adaptation/4050-116269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116362/", + "id": 116362, + "name": "Astonishing X-Men by Matt Rosenberg: Until Our Hearts Stop", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-by-matt-rosenberg-until-our-hear/4050-116362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116365/", + "id": 116365, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4050-116365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116368/", + "id": 116368, + "name": "Friendly Neighborhood Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man/4050-116368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116369/", + "id": 116369, + "name": "Guardians of the Galaxy: Marvel Presents #3: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-marvel-presents-3-facsimil/4050-116369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116375/", + "id": 116375, + "name": "Marvel Super Hero Adventures: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-captain-marvel/4050-116375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116378/", + "id": 116378, + "name": "Ms. Marvel Epic Collection: This Woman, This Warrior", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-epic-collection-this-woman-this-warrior/4050-116378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116384/", + "id": 116384, + "name": "Star Wars: Age of Republic - Jango Fett", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-jango-fett/4050-116384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116385/", + "id": 116385, + "name": "Star Wars: Doctor Aphra: The Catastrophe Con", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-the-catastrophe-con/4050-116385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116392/", + "id": 116392, + "name": "Web of Venom: Venom Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-venom-unleashed/4050-116392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116394/", + "id": 116394, + "name": "Wolverine: Old Man Logan: End of the World", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-old-man-logan-end-of-the-world/4050-116394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116395/", + "id": 116395, + "name": "X-23: Family Album", + "site_detail_url": "https://comicvine.gamespot.com/x-23-family-album/4050-116395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116410/", + "id": 116410, + "name": "True Believers: Conan the Barbarian: The Devil-God of Bal-Sagoth!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-the-barbarian-the-devil-god-o/4050-116410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116411/", + "id": 116411, + "name": "True Believers: Conan the Barbarian: Swords In the Night!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-the-barbarian-swords-in-the-n/4050-116411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116493/", + "id": 116493, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4050-116493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116494/", + "id": 116494, + "name": "Champions: Weird War One", + "site_detail_url": "https://comicvine.gamespot.com/champions-weird-war-one/4050-116494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116496/", + "id": 116496, + "name": "Decades: Marvel In The '40s: The Human Torch vs. The Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-40s-the-human-torch-vs-the-s/4050-116496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116501/", + "id": 116501, + "name": "Incredible Hulk Epic Collection: Ghosts of the Future", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-ghosts-of-the-futu/4050-116501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116502/", + "id": 116502, + "name": "Invaders", + "site_detail_url": "https://comicvine.gamespot.com/invaders/4050-116502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116503/", + "id": 116503, + "name": "The Life of Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-captain-marvel/4050-116503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116505/", + "id": 116505, + "name": "Marvel Comics Presents", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-presents/4050-116505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116506/", + "id": 116506, + "name": "Marvel Tales: Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-venom/4050-116506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116514/", + "id": 116514, + "name": "Star Wars: Age of Republic Special", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-special/4050-116514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116519/", + "id": 116519, + "name": "What If? Classic: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/what-if-classic-the-complete-collection/4050-116519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116554/", + "id": 116554, + "name": "Jessica Jones: Purple Daughter", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-purple-daughter/4050-116554/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116555/", + "id": 116555, + "name": "True Believers: Conan the Barbarian: Curse of the Golden Skull!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-the-barbarian-curse-of-the-go/4050-116555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116556/", + "id": 116556, + "name": "True Believers: Conan the Barbarian: Queen of the Black Coast!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-the-barbarian-queen-of-the-bl/4050-116556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116696/", + "id": 116696, + "name": "Ben Reilly: Scarlet Spider: Deal With The Devil", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-scarlet-spider-deal-with-the-devil/4050-116696/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116697/", + "id": 116697, + "name": "Black Panther: The Intergalactic Empire of Wakanda Part One", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-intergalactic-empire-of-wakanda-/4050-116697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116698/", + "id": 116698, + "name": "Cosmic Ghost Rider: Baby Thanos Must Die", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-baby-thanos-must-die/4050-116698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116699/", + "id": 116699, + "name": "Crypt of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/crypt-of-shadows/4050-116699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116700/", + "id": 116700, + "name": "Daredevil: Back In Black: The Death of Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-back-in-black-the-death-of-daredevil/4050-116700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116701/", + "id": 116701, + "name": "Extermination", + "site_detail_url": "https://comicvine.gamespot.com/extermination/4050-116701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116702/", + "id": 116702, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-116702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116703/", + "id": 116703, + "name": "Marvel Two-In-One: Next of Kin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-two-in-one-next-of-kin/4050-116703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116704/", + "id": 116704, + "name": "New Mutants by Abnett & Lanning: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-by-abnett-and-lanning-the-complete-col/4050-116704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116705/", + "id": 116705, + "name": "Silver Surfer #14: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-14-facsimile-edition/4050-116705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116706/", + "id": 116706, + "name": "True Believers: Conan the Barbarian: The Secret of Skull River", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-the-barbarian-the-secret-of-s/4050-116706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116707/", + "id": 116707, + "name": "True Believers: King Conan", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-conan/4050-116707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116708/", + "id": 116708, + "name": "Uncanny X-Men Annual", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-annual/4050-116708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116709/", + "id": 116709, + "name": "War Is Hell", + "site_detail_url": "https://comicvine.gamespot.com/war-is-hell/4050-116709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116812/", + "id": 116812, + "name": "Age of X-Man Alpha", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-alpha/4050-116812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116814/", + "id": 116814, + "name": "Captain Marvel: Monica Rambeau", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-monica-rambeau/4050-116814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116815/", + "id": 116815, + "name": "Color Your Own Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-captain-marvel/4050-116815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116823/", + "id": 116823, + "name": "Journey Into Unknown Worlds", + "site_detail_url": "https://comicvine.gamespot.com/journey-into-unknown-worlds/4050-116823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116827/", + "id": 116827, + "name": "Marvel Knights Punisher by Golden, Sniegoski & Wrightson: Purgatory", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-punisher-by-golden-sniegoski-and-wr/4050-116827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116828/", + "id": 116828, + "name": "Marvel Universe: Time and Again", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-time-and-again/4050-116828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116831/", + "id": 116831, + "name": "New X-Men: Childhood's End: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-childhoods-end-the-complete-collection/4050-116831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116839/", + "id": 116839, + "name": "Star Wars: Darth Vader: Dark Lord of the Sith: Fortress Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-dark-lord-of-the-sith-fortre/4050-116839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116844/", + "id": 116844, + "name": "The Uncanny X-Men 3D", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-3d/4050-116844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116845/", + "id": 116845, + "name": "Weapon X: Weapon X-Force", + "site_detail_url": "https://comicvine.gamespot.com/weapon-x-weapon-x-force/4050-116845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116850/", + "id": 116850, + "name": "X-Men: Unstoppable", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unstoppable/4050-116850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116871/", + "id": 116871, + "name": "Captain Marvel Start Here Sampler 2019", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-start-here-sampler-2019/4050-116871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116872/", + "id": 116872, + "name": "True Believers: Conan the Barbarian: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-the-barbarian-resurrection/4050-116872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116873/", + "id": 116873, + "name": "True Believers: What If Conan the Barbarian Walked Earth Today?", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-what-if-conan-the-barbarian-walked-/4050-116873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116954/", + "id": 116954, + "name": "Age of X-Man: The Marvelous X-Men", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-the-marvelous-x-men/4050-116954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116963/", + "id": 116963, + "name": "Conan Chronicles Epic Collection: Out of the Darksome Hills", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-out-of-the-darkso/4050-116963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116964/", + "id": 116964, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-116964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116970/", + "id": 116970, + "name": "Gunhawks", + "site_detail_url": "https://comicvine.gamespot.com/gunhawks/4050-116970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116972/", + "id": 116972, + "name": "The Infinity Gauntlet: Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-gauntlet-deluxe-edition/4050-116972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116977/", + "id": 116977, + "name": "Marvel's Captain Marvel Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-marvel-prelude/4050-116977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116978/", + "id": 116978, + "name": "Moon Girl and Devil Dinosaur: The Beginning", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-the-beginning/4050-116978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116979/", + "id": 116979, + "name": "Ms. Marvel: Kamala Khan", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-kamala-khan/4050-116979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116983/", + "id": 116983, + "name": "Old Man Quill", + "site_detail_url": "https://comicvine.gamespot.com/old-man-quill/4050-116983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116984/", + "id": 116984, + "name": "Punisher Epic Collection: Kingpin Rules", + "site_detail_url": "https://comicvine.gamespot.com/punisher-epic-collection-kingpin-rules/4050-116984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116985/", + "id": 116985, + "name": "Punisher War Journal by Matt Fraction: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-by-matt-fraction-the-complete/4050-116985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116987/", + "id": 116987, + "name": "Star Wars: Age of Republic: Anakin Skywalker", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-anakin-skywalker/4050-116987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116989/", + "id": 116989, + "name": "True Believers: Captain Marvel: Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-ms-marvel/4050-116989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116990/", + "id": 116990, + "name": "True Believers: Captain Marvel: Spider-Man and Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-spider-man-and-ms-ma/4050-116990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117039/", + "id": 117039, + "name": "Fraggle Rock", + "site_detail_url": "https://comicvine.gamespot.com/fraggle-rock/4050-117039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117041/", + "id": 117041, + "name": "Age of X-Man: NextGen", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-nextgen/4050-117041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117047/", + "id": 117047, + "name": "Avengers: No Road Home", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-road-home/4050-117047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117049/", + "id": 117049, + "name": "Captain Marvel: Ms. Marvel: A Hero Is Born", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-ms-marvel-a-hero-is-born/4050-117049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117052/", + "id": 117052, + "name": "Daughters of the Dragon: Deep Cuts", + "site_detail_url": "https://comicvine.gamespot.com/daughters-of-the-dragon-deep-cuts/4050-117052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117053/", + "id": 117053, + "name": "Decades: Marvel In The '50s: Captain America Strikes!", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-50s-captain-america-strikes/4050-117053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117057/", + "id": 117057, + "name": "Excalibur Epic Collection: Girls' School From Heck", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-epic-collection-girls-school-from-heck/4050-117057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117064/", + "id": 117064, + "name": "Hulk: Dogs of War", + "site_detail_url": "https://comicvine.gamespot.com/hulk-dogs-of-war/4050-117064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117065/", + "id": 117065, + "name": "The Immortal Hulk: The Green Door", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-the-green-door/4050-117065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117066/", + "id": 117066, + "name": "Infinity Warps: Two-In-One", + "site_detail_url": "https://comicvine.gamespot.com/infinity-warps-two-in-one/4050-117066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117067/", + "id": 117067, + "name": "Infinity Wars", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars/4050-117067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117069/", + "id": 117069, + "name": "Marvel Super Hero Adventures: Spider-Man – Web of Intrigue", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-web-of-int/4050-117069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117070/", + "id": 117070, + "name": "Marvel Tales: Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-black-widow/4050-117070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117071/", + "id": 117071, + "name": "Marvels Annotated", + "site_detail_url": "https://comicvine.gamespot.com/marvels-annotated/4050-117071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117076/", + "id": 117076, + "name": "Peter Parker: The Spectacular Spider-Man: Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-spider-ged/4050-117076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117080/", + "id": 117080, + "name": "The Savage Sword of Conan", + "site_detail_url": "https://comicvine.gamespot.com/the-savage-sword-of-conan/4050-117080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117081/", + "id": 117081, + "name": "Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon/4050-117081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117082/", + "id": 117082, + "name": "Star Wars: Age of Republic - Count Dooku", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-count-dooku/4050-117082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117111/", + "id": 117111, + "name": "True Believers: Captain Marvel vs. Ronan", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-vs-ronan/4050-117111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117112/", + "id": 117112, + "name": "True Believers: Captain Mar-Vell", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-mar-vell/4050-117112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117190/", + "id": 117190, + "name": "Age of X-Man: The Amazing Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler/4050-117190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117192/", + "id": 117192, + "name": "Amazing Spider-Man by Nick Spencer: Friends and Foes", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-friends-and-foe/4050-117192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117199/", + "id": 117199, + "name": "Black Panther Epic Collection: Revenge of the Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-epic-collection-revenge-of-the-black/4050-117199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117202/", + "id": 117202, + "name": "Cable & X-Force: Onslaught!", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-x-force-onslaught/4050-117202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117203/", + "id": 117203, + "name": "Captain America: Winter In America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-winter-in-america/4050-117203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117206/", + "id": 117206, + "name": "Dazzler #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/dazzler-1-facsimile-edition/4050-117206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117208/", + "id": 117208, + "name": "Deadpool: Secret Agent Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-secret-agent-deadpool/4050-117208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117212/", + "id": 117212, + "name": "Ghost Rider: The War For Heaven", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-the-war-for-heaven/4050-117212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117215/", + "id": 117215, + "name": "Hulkverines!", + "site_detail_url": "https://comicvine.gamespot.com/hulkverines/4050-117215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117219/", + "id": 117219, + "name": "Love Romances", + "site_detail_url": "https://comicvine.gamespot.com/love-romances/4050-117219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117221/", + "id": 117221, + "name": "Old Man Hawkeye: The Whole World Blind", + "site_detail_url": "https://comicvine.gamespot.com/old-man-hawkeye-the-whole-world-blind/4050-117221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117222/", + "id": 117222, + "name": "The Punisher: World War Frank", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-world-war-frank/4050-117222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117226/", + "id": 117226, + "name": "True Believers: Captain Marvel: Binary", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-binary/4050-117226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117227/", + "id": 117227, + "name": "True Believers: Captain Marvel: Earth's Mightiest Hero", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-earths-mightiest-her/4050-117227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117228/", + "id": 117228, + "name": "True Believers: Captain Marvel: The Kree/Skrull War", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-the-kreeskrull-war/4050-117228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117229/", + "id": 117229, + "name": "Uncanny X-Men by Kieron Gillen: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-the-complete-collec/4050-117229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117230/", + "id": 117230, + "name": "West Coast Avengers: Best Coast", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers-best-coast/4050-117230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117231/", + "id": 117231, + "name": "Wolverine: Infinity Watch", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-infinity-watch/4050-117231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117339/", + "id": 117339, + "name": "Age of X-Man: X-Tremists", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-x-tremists/4050-117339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117340/", + "id": 117340, + "name": "Captain Marvel: Braver & Mightier", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-braver-and-mightier/4050-117340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117341/", + "id": 117341, + "name": "Infinity Wars: Sleepwalker", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-sleepwalker/4050-117341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117342/", + "id": 117342, + "name": "Iron Fist: The Deadly Hands of Kung Fu: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-the-deadly-hands-of-kung-fu-the-complete/4050-117342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117343/", + "id": 117343, + "name": "Marvel Knights Punisher by Peyer & Gutierrez: Taxi Wars", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-punisher-by-peyer-and-gutierrez-tax/4050-117343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117344/", + "id": 117344, + "name": "Mr. & Mrs. X: Love and Marriage", + "site_detail_url": "https://comicvine.gamespot.com/mr-and-mrs-x-love-and-marriage/4050-117344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117345/", + "id": 117345, + "name": "Spider-Geddon: Covert Ops", + "site_detail_url": "https://comicvine.gamespot.com/spider-geddon-covert-ops/4050-117345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117346/", + "id": 117346, + "name": "Star Wars by Jason Aaron Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-by-jason-aaron-omnibus/4050-117346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117347/", + "id": 117347, + "name": "True Believers: Captain Marvel: Avenger", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-avenger/4050-117347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117348/", + "id": 117348, + "name": "True Believers: Captain Marvel Betrayed!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-betrayed/4050-117348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117349/", + "id": 117349, + "name": "True Believers: Captain Marvel: The New Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-captain-marvel-the-new-ms-marvel/4050-117349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117350/", + "id": 117350, + "name": "Typhoid Fever", + "site_detail_url": "https://comicvine.gamespot.com/typhoid-fever/4050-117350/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117431/", + "id": 117431, + "name": "Age of X-Man: Prisoner X", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-prisoner-x/4050-117431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117436/", + "id": 117436, + "name": "Avengers by Jason Aaron: World Tour", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-world-tour/4050-117436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117439/", + "id": 117439, + "name": "Cosmic Ghost Rider Destroys Marvel History", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history/4050-117439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117444/", + "id": 117444, + "name": "Domino: Hotshots", + "site_detail_url": "https://comicvine.gamespot.com/domino-hotshots/4050-117444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117445/", + "id": 117445, + "name": "Earth X Trilogy Omnibus: Omega", + "site_detail_url": "https://comicvine.gamespot.com/earth-x-trilogy-omnibus-omega/4050-117445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117446/", + "id": 117446, + "name": "Exiles: The Trial of the Exiles", + "site_detail_url": "https://comicvine.gamespot.com/exiles-the-trial-of-the-exiles/4050-117446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117447/", + "id": 117447, + "name": "Fantastic Four: Fourever", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-fourever/4050-117447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117455/", + "id": 117455, + "name": "Marvel's Captain Marvel: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/marvels-captain-marvel-the-art-of-the-movie/4050-117455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117456/", + "id": 117456, + "name": "Marvel Super Hero Adventures: Spider-Man – Spider-Sense of Adventure", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-spider-sen/4050-117456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117457/", + "id": 117457, + "name": "Meet The Skrulls", + "site_detail_url": "https://comicvine.gamespot.com/meet-the-skrulls/4050-117457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117471/", + "id": 117471, + "name": "Star Wars: Age of Republic - Padme Amidala", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-padme-amidala/4050-117471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117472/", + "id": 117472, + "name": "Star Wars: Ewoks: Flight To Danger", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-ewoks-flight-to-danger/4050-117472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117473/", + "id": 117473, + "name": "Star Wars: Vader: Dark Visions", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-vader-dark-visions/4050-117473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117475/", + "id": 117475, + "name": "The Unbeatable Squirrel Girl: Life Is Too Short, Squirrel", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-life-is-too-short-squ/4050-117475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117478/", + "id": 117478, + "name": "Wolverine Epic Collection: Back To Basics", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-back-to-basics/4050-117478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117481/", + "id": 117481, + "name": "X-Men Black", + "site_detail_url": "https://comicvine.gamespot.com/x-men-black/4050-117481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117482/", + "id": 117482, + "name": "X-Men Red: Waging Peace", + "site_detail_url": "https://comicvine.gamespot.com/x-men-red-waging-peace/4050-117482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117483/", + "id": 117483, + "name": "Ziggy Pig: Silly Seal Comics", + "site_detail_url": "https://comicvine.gamespot.com/ziggy-pig-silly-seal-comics/4050-117483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117568/", + "id": 117568, + "name": "Age of Conan: Bêlit, Queen of the Black Coast", + "site_detail_url": "https://comicvine.gamespot.com/age-of-conan-belit-queen-of-the-black-coast/4050-117568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117569/", + "id": 117569, + "name": "Age of X-Man: Apocalypse and the X-Tracts", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-apocalypse-and-the-x-tracts/4050-117569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117579/", + "id": 117579, + "name": "Death of Wolverine Companion", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-companion/4050-117579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117580/", + "id": 117580, + "name": "Decades: Marvel In the '60s: Spider-Man Meets the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-60s-spider-man-meets-the-mar/4050-117580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117581/", + "id": 117581, + "name": "Defenders: The Best Defense", + "site_detail_url": "https://comicvine.gamespot.com/defenders-the-best-defense/4050-117581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117583/", + "id": 117583, + "name": "Domino: Soldier of Fortune", + "site_detail_url": "https://comicvine.gamespot.com/domino-soldier-of-fortune/4050-117583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117585/", + "id": 117585, + "name": "Fantastic Four: Heroes Return: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-heroes-return-the-complete-collecti/4050-117585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117586/", + "id": 117586, + "name": "Gambit: Thieves' World", + "site_detail_url": "https://comicvine.gamespot.com/gambit-thieves-world/4050-117586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117588/", + "id": 117588, + "name": "Iron Man Epic Collection: Return of the Ghost", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-return-of-the-ghost/4050-117588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117593/", + "id": 117593, + "name": "The Magnificent Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-magnificent-ms-marvel/4050-117593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117594/", + "id": 117594, + "name": "Marvel Tales: Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-thor/4050-117594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117606/", + "id": 117606, + "name": "Star Wars: Age of Republic - General Grievous", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-general-grievous/4050-117606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117610/", + "id": 117610, + "name": "Uncanny X-Men: Winter's End", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-winters-end/4050-117610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117612/", + "id": 117612, + "name": "War of the Realms Prelude", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-prelude/4050-117612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117684/", + "id": 117684, + "name": "Venom by Cullen Bunn: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-cullen-bunn-the-complete-collection/4050-117684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117734/", + "id": 117734, + "name": "Black Panther vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-vs-deadpool/4050-117734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117737/", + "id": 117737, + "name": "Captain America Epic Collection: The Superia Stratagem", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-the-superia-strata/4050-117737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117749/", + "id": 117749, + "name": "Iron Man by Fraction & Larroca: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-fraction-and-larroca-the-complete-coll/4050-117749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117754/", + "id": 117754, + "name": "Marvel's Spider-Man: City At War", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war/4050-117754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117761/", + "id": 117761, + "name": "Return of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/return-of-wolverine/4050-117761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117763/", + "id": 117763, + "name": "The Savage Sword of Conan: The Original Marvel Years Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-savage-sword-of-conan-the-original-marvel-year/4050-117763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117766/", + "id": 117766, + "name": "Spider-Man: Life Story", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story/4050-117766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117768/", + "id": 117768, + "name": "Uncanny X-Men: X-Men Disassembled", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-x-men-disassembled/4050-117768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117771/", + "id": 117771, + "name": "X-Men: Onslaught Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/x-men-onslaught-aftermath/4050-117771/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117805/", + "id": 117805, + "name": "Hulk by Mark Waid & Gerry Duggan: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/hulk-by-mark-waid-and-gerry-duggan-the-complete-co/4050-117805/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117953/", + "id": 117953, + "name": "Spider-Man: New Ways To Live", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-new-ways-to-live/4050-117953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117956/", + "id": 117956, + "name": "Asgardians of the Galaxy: The Infinity Armada", + "site_detail_url": "https://comicvine.gamespot.com/asgardians-of-the-galaxy-the-infinity-armada/4050-117956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117960/", + "id": 117960, + "name": "Cloak and Dagger: Negative Exposure", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-negative-exposure/4050-117960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117961/", + "id": 117961, + "name": "Color Your Own Avengers: Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/color-your-own-avengers-earths-mightiest-heroes/4050-117961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117971/", + "id": 117971, + "name": "Incredible Hulk #181: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-181-facsimile-edition/4050-117971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117974/", + "id": 117974, + "name": "Marvel Knights Fantastic Four By Aguirre-Sacasa, Mcniven & Muniz: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-fantastic-four-by-aguirre-sacasa-mc/4050-117974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117975/", + "id": 117975, + "name": "Marvel Rising", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising/4050-117975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117976/", + "id": 117976, + "name": "Marvel: Universe of Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-of-super-heroes/4050-117976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117980/", + "id": 117980, + "name": "Ms. Marvel: Time and Again", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-time-and-again/4050-117980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117989/", + "id": 117989, + "name": "Secret Avengers by Rick Remender: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-by-rick-remender-the-complete-coll/4050-117989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117990/", + "id": 117990, + "name": "Sgt. Fury Epic Collection: The Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/sgt-fury-epic-collection-the-howling-commandos/4050-117990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117996/", + "id": 117996, + "name": "Spider-Man: Far From Home Prelude", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-prelude/4050-117996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118000/", + "id": 118000, + "name": "The Thanos Wars: Infinity Origin", + "site_detail_url": "https://comicvine.gamespot.com/the-thanos-wars-infinity-origin/4050-118000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118003/", + "id": 118003, + "name": "War of the Realms Magazine", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-magazine/4050-118003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118004/", + "id": 118004, + "name": "Weapon H: War For Weirdworld", + "site_detail_url": "https://comicvine.gamespot.com/weapon-h-war-for-weirdworld/4050-118004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118005/", + "id": 118005, + "name": "What If? With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/what-if-with-great-power/4050-118005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118015/", + "id": 118015, + "name": "Marvel Future Fight: An Eye on the Future", + "site_detail_url": "https://comicvine.gamespot.com/marvel-future-fight-an-eye-on-the-future/4050-118015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118017/", + "id": 118017, + "name": "X-Men Origins: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-origins-the-complete-collection/4050-118017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118111/", + "id": 118111, + "name": "Avengers Assemble: Living Legends", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-living-legends/4050-118111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118112/", + "id": 118112, + "name": "Avengers Start Here Sampler 2019", + "site_detail_url": "https://comicvine.gamespot.com/avengers-start-here-sampler-2019/4050-118112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118113/", + "id": 118113, + "name": "Avengers World: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-the-complete-collection/4050-118113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118120/", + "id": 118120, + "name": "Conan Chronicles Epic Collection: The Heart of Yag-Kosha", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-the-heart-of-yag-/4050-118120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118130/", + "id": 118130, + "name": "Infinity by Starlin & Hickman Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/infinity-by-starlin-and-hickman-omnibus/4050-118130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118131/", + "id": 118131, + "name": "The Infinity War Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-infinity-war-omnibus/4050-118131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118135/", + "id": 118135, + "name": "Major X", + "site_detail_url": "https://comicvine.gamespot.com/major-x/4050-118135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118136/", + "id": 118136, + "name": "Marvel's Avengers: Endgame Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-endgame-prelude/4050-118136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118138/", + "id": 118138, + "name": "Marvel Super Hero Adventures: Spider-Man – Web Designers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-web-design/4050-118138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118139/", + "id": 118139, + "name": "Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/marvel-team-up/4050-118139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118146/", + "id": 118146, + "name": "Spidey: Freshman Year", + "site_detail_url": "https://comicvine.gamespot.com/spidey-freshman-year/4050-118146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118150/", + "id": 118150, + "name": "True Believers: Avengers: Nebula", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-nebula/4050-118150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118151/", + "id": 118151, + "name": "True Believers: Avengers: Thanos vs. the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-thanos-vs-the-marvel-unive/4050-118151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118152/", + "id": 118152, + "name": "The Unstoppable Wasp: G.I.R.L. Power", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-girl-power/4050-118152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118154/", + "id": 118154, + "name": "War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms/4050-118154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118237/", + "id": 118237, + "name": "Avengers Epic Collection: Fear The Reaper", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-fear-the-reaper/4050-118237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118238/", + "id": 118238, + "name": "Avenging Spider-Man: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avenging-spider-man-the-complete-collection/4050-118238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118241/", + "id": 118241, + "name": "Decades: Marvel In The '70s - Legion of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-70s-legion-of-monsters/4050-118241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118248/", + "id": 118248, + "name": "Iceman: Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/iceman-amazing-friends/4050-118248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118253/", + "id": 118253, + "name": "Marvel Tales: Thanos", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-thanos/4050-118253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118255/", + "id": 118255, + "name": "Mighty Avengers by Dan Slott: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-by-dan-slott-the-complete-collecti/4050-118255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118264/", + "id": 118264, + "name": "Runaways by Rainbow Rowell & Kris Anka: That Was Yesterday", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-rainbow-rowell-and-kris-anka-that-was-/4050-118264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118268/", + "id": 118268, + "name": "Spider-Man/Deadpool: Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-road-trip/4050-118268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118269/", + "id": 118269, + "name": "Star Wars: Age of Rebellion - Grand Moff Tarkin", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-grand-moff-tarkin/4050-118269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118270/", + "id": 118270, + "name": "Star Wars: Age of Rebellion - Princess Leia", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-princess-leia/4050-118270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118271/", + "id": 118271, + "name": "Star Wars: The Escape", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-escape/4050-118271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118275/", + "id": 118275, + "name": "Symbiote Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man/4050-118275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118276/", + "id": 118276, + "name": "True Believers: Avengers: Ronin", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-ronin/4050-118276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118277/", + "id": 118277, + "name": "True Believers: Avengers: Stormbreaker", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-stormbreaker/4050-118277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118278/", + "id": 118278, + "name": "True Believers: Avengers: Thanos & Gamora", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-thanos-and-gamora/4050-118278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118281/", + "id": 118281, + "name": "War of the Realms: Journey Into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-journey-into-mystery/4050-118281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118282/", + "id": 118282, + "name": "Web of Venom: Cult of Carnage", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-cult-of-carnage/4050-118282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118289/", + "id": 118289, + "name": "The Astonishing Ant-Man: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-ant-man-the-complete-collection/4050-118289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118290/", + "id": 118290, + "name": "Avengers Arena: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-arena-the-complete-collection/4050-118290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118373/", + "id": 118373, + "name": "Amazing Spider-Man #252: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-252-facsimile-edition/4050-118373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118378/", + "id": 118378, + "name": "Doctor Strange by Donny Cates", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-donny-cates/4050-118378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118382/", + "id": 118382, + "name": "Iron Man Epic Collection: The Man Who Killed Tony Stark", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-the-man-who-killed-tony-s/4050-118382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118383/", + "id": 118383, + "name": "Iron Man: Heroes Return: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-heroes-return-the-complete-collection/4050-118383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118392/", + "id": 118392, + "name": "Shatterstar: Reality Star", + "site_detail_url": "https://comicvine.gamespot.com/shatterstar-reality-star/4050-118392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118394/", + "id": 118394, + "name": "Spider-Man 2099 vs. Venom 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-vs-venom-2099/4050-118394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118395/", + "id": 118395, + "name": "Star Wars: Age of Rebellion Special", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-special/4050-118395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118396/", + "id": 118396, + "name": "Star Wars: Tie Fighter", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-tie-fighter/4050-118396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118398/", + "id": 118398, + "name": "True Believers: Avengers: Endgame", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-endgame/4050-118398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118399/", + "id": 118399, + "name": "True Believers: Avengers: The Gatherers Saga", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-the-gatherers-saga/4050-118399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118400/", + "id": 118400, + "name": "True Believers: Avengers: Thanos: The Final Battle", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-thanos-the-final-battle/4050-118400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118401/", + "id": 118401, + "name": "War of the Realms: Punisher", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-punisher/4050-118401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118402/", + "id": 118402, + "name": "War of the Realms: War Scrolls", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-war-scrolls/4050-118402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118406/", + "id": 118406, + "name": "X-Men by Peter Milligan: Dangerous Liaisons", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-peter-milligan-dangerous-liaisons/4050-118406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118467/", + "id": 118467, + "name": "Secret Avengers by Ed Brubaker: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/secret-avengers-by-ed-brubaker-the-complete-collec/4050-118467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118501/", + "id": 118501, + "name": "Avengers: Edge of Infinity", + "site_detail_url": "https://comicvine.gamespot.com/avengers-edge-of-infinity/4050-118501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118504/", + "id": 118504, + "name": "The Black Order: The Warmasters of Thanos", + "site_detail_url": "https://comicvine.gamespot.com/the-black-order-the-warmasters-of-thanos/4050-118504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118506/", + "id": 118506, + "name": "The Despicable Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/the-despicable-deadpool/4050-118506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118514/", + "id": 118514, + "name": "Jessica Jones: Purple Daughter", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-purple-daughter/4050-118514/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118520/", + "id": 118520, + "name": "Marvel Knights: 20th", + "site_detail_url": "https://comicvine.gamespot.com/marvel-knights-20th/4050-118520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118527/", + "id": 118527, + "name": "The Road to Marvel's Avengers: Endgame: The Art of the Marvel Cinematic Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-road-to-marvels-avengers-endgame-the-art-of-th/4050-118527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118530/", + "id": 118530, + "name": "Shuri: The Search For Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/shuri-the-search-for-black-panther/4050-118530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118531/", + "id": 118531, + "name": "Spider-Man: Light In the Darkness", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-light-in-the-darkness/4050-118531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118532/", + "id": 118532, + "name": "Star Wars: Galaxy's Edge", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-galaxys-edge/4050-118532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118536/", + "id": 118536, + "name": "Thanos", + "site_detail_url": "https://comicvine.gamespot.com/thanos/4050-118536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118538/", + "id": 118538, + "name": "True Believers: Avengers: Rocket Raccoon", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-avengers-rocket-raccoon/4050-118538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118539/", + "id": 118539, + "name": "True Believers: Star Wars: The Ashes of Jedha", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-the-ashes-of-jedha/4050-118539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118540/", + "id": 118540, + "name": "True Believers: Star Wars: Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-darth-vader/4050-118540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118541/", + "id": 118541, + "name": "True Believers: Star Wars: Original Marvel Years", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-original-marvel-years/4050-118541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118542/", + "id": 118542, + "name": "True Believers: Star Wars: Skywalker Strikes", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-skywalker-strikes/4050-118542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118543/", + "id": 118543, + "name": "The Unstoppable Wasp: Unlimited: Fix Everything", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-unlimited-fix-everything/4050-118543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118545/", + "id": 118545, + "name": "War of the Realms: Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-uncanny-x-men/4050-118545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118547/", + "id": 118547, + "name": "Venom by Donny Cates: The Abyss", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates-the-abyss/4050-118547/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118655/", + "id": 118655, + "name": "Amazing Spider-Man by Nick Spencer: Lifetime Achievement", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-lifetime-achiev/4050-118655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118656/", + "id": 118656, + "name": "The Art of War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/the-art-of-war-of-the-realms/4050-118656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118657/", + "id": 118657, + "name": "Black Panther: Killmonger: By Any Means", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-killmonger-by-any-means/4050-118657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118658/", + "id": 118658, + "name": "Doctor Strange by Mark Waid: Remittance", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-mark-waid-remittance/4050-118658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118659/", + "id": 118659, + "name": "Gambit: King of Thieves: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/gambit-king-of-thieves-the-complete-collection/4050-118659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118660/", + "id": 118660, + "name": "Man Without Fear: The Death of Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/man-without-fear-the-death-of-daredevil/4050-118660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118661/", + "id": 118661, + "name": "Marvel Tales: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-avengers/4050-118661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118662/", + "id": 118662, + "name": "Ms. Marvel Epic Collection: The Woman Who Fell To Earth", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-epic-collection-the-woman-who-fell-to-ea/4050-118662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118663/", + "id": 118663, + "name": "Savage Avengers", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers/4050-118663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118664/", + "id": 118664, + "name": "Star Wars: Age of Rebellion - Han Solo", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-han-solo/4050-118664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118665/", + "id": 118665, + "name": "Star Wars May the 4th Previews", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-may-the-4th-previews/4050-118665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118666/", + "id": 118666, + "name": "Star Wars: The Original Marvel Years #50: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-original-marvel-years-50-facsimile-e/4050-118666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118667/", + "id": 118667, + "name": "True Believers: Marvel's Greatest Creators: Avengers: The Origin of Mantis", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-avengers-/4050-118667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118668/", + "id": 118668, + "name": "True Believers: Marvel's Greatest Creators: The Incredible Hulk: The Wedding of Rick Jones", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-the-incre/4050-118668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118669/", + "id": 118669, + "name": "True Believers: Star Wars: Darth Maul", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-darth-maul/4050-118669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118670/", + "id": 118670, + "name": "True Believers: Star Wars: Ewoks", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-ewoks/4050-118670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118671/", + "id": 118671, + "name": "True Believers: Star Wars: Rebel Jail", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-rebel-jail/4050-118671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118672/", + "id": 118672, + "name": "True Believers: Star Wars: Thrawn", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-thrawn/4050-118672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118673/", + "id": 118673, + "name": "War of the Realms Strikeforce: The Dark Elf Realm", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-strikeforce-the-dark-elf-realm/4050-118673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118756/", + "id": 118756, + "name": "Free Comic Book Day 2019 (Avengers/Savage Avengers)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2019-avengerssavage-avengers/4050-118756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118758/", + "id": 118758, + "name": "Free Comic Book Day 2019 (Spider-Man/Venom)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2019-spider-manvenom/4050-118758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118835/", + "id": 118835, + "name": "League of Legends: Lux", + "site_detail_url": "https://comicvine.gamespot.com/league-of-legends-lux/4050-118835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118839/", + "id": 118839, + "name": "The Amazing Spider-Man by J. Michael Straczynski", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-by-j-michael-straczynski/4050-118839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118846/", + "id": 118846, + "name": "Decades: Marvel In The '80s: Awesome Evolutions", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-80s-awesome-evolutions/4050-118846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118847/", + "id": 118847, + "name": "Defenders: Marvel Feature #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/defenders-marvel-feature-1-facsimile-edition/4050-118847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118870/", + "id": 118870, + "name": "Spider-Gwen: Ghost-Spider: Spider-Geddon", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-ghost-spider-spider-geddon/4050-118870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118871/", + "id": 118871, + "name": "Star Wars: Age of Rebellion - Boba Fett", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-boba-fett/4050-118871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118872/", + "id": 118872, + "name": "Star Wars: Age of Republic: Villains", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-villains/4050-118872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118873/", + "id": 118873, + "name": "Thor by Jason Aaron: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-jason-aaron-the-complete-collection/4050-118873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118875/", + "id": 118875, + "name": "True Believers: Marvel's Greatest Creators: The Invaders", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-the-invad/4050-118875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118876/", + "id": 118876, + "name": "True Believers: Marvel's Greatest Creators: Iron Fist: Colleen Wing", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-iron-fist/4050-118876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-118877/", + "id": 118877, + "name": "War of the Realms: New Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-new-agents-of-atlas/4050-118877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119132/", + "id": 119132, + "name": "Amazing Spider-Man Epic Collection: Assassin Nation", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-assassin-nation/4050-119132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119136/", + "id": 119136, + "name": "Captain Marvel: Starforce", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-starforce/4050-119136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119141/", + "id": 119141, + "name": "Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/giant-man/4050-119141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119145/", + "id": 119145, + "name": "Immortal Hulk: Hulk In Hell", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-hulk-in-hell/4050-119145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119151/", + "id": 119151, + "name": "League of Legends: Ashe: Warmother", + "site_detail_url": "https://comicvine.gamespot.com/league-of-legends-ashe-warmother/4050-119151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119152/", + "id": 119152, + "name": "Marvel Tales: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-iron-man/4050-119152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119162/", + "id": 119162, + "name": "Star Wars: Age of Rebellion - Lando Calrissian", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-lando-calrissian/4050-119162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119163/", + "id": 119163, + "name": "Star Wars: Age of Republic: Heroes", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic-heroes/4050-119163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119164/", + "id": 119164, + "name": "Star Wars: Han Solo: Imperial Cadet", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-han-solo-imperial-cadet/4050-119164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119169/", + "id": 119169, + "name": "War of the Realms: Spider-Man & the League of Realms", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-spider-man-and-the-league-of-rea/4050-119169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119170/", + "id": 119170, + "name": "War of the Realms Strikeforce: The War Avengers", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-strikeforce-the-war-avengers/4050-119170/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119183/", + "id": 119183, + "name": "True Believers: Marvel's Greatest Creators: Luke Cage, Power Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-luke-cage/4050-119183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119282/", + "id": 119282, + "name": "Alpha Flight #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-1-facsimile-edition/4050-119282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119288/", + "id": 119288, + "name": "Champions: Because The World Still Needs Heroes", + "site_detail_url": "https://comicvine.gamespot.com/champions-because-the-world-still-needs-heroes/4050-119288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119293/", + "id": 119293, + "name": "Fantastic Four: Mr. And Mrs. Grimm", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-mr-and-mrs-grimm/4050-119293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119305/", + "id": 119305, + "name": "Silver Surfer Epic Collection: Inner Demons", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-inner-demons/4050-119305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119307/", + "id": 119307, + "name": "Star Comics: Planet Terry: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/star-comics-planet-terry-the-complete-collection/4050-119307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119308/", + "id": 119308, + "name": "Star Wars: Age of Rebellion - Jabba the Hutt", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-jabba-the-hutt/4050-119308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119311/", + "id": 119311, + "name": "True Believers: Marvel's Greatest Creators: Iron Fist: Misty Knight", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-iron-fist/4050-119311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119312/", + "id": 119312, + "name": "True Believers: Marvel's Greatest Creators: Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-power-pac/4050-119312/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119313/", + "id": 119313, + "name": "True Believers: Marvel's Greatest Creators: What If... Starring Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-what-if-s/4050-119313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119315/", + "id": 119315, + "name": "War of the Realms Strikeforce: The Land of Giants", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-strikeforce-the-land-of-giants/4050-119315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119344/", + "id": 119344, + "name": "X-Men: Grand Design – X-Tinction", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-x-tinction/4050-119344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119370/", + "id": 119370, + "name": "Daredevil: Fearless Origins", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-fearless-origins/4050-119370/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119384/", + "id": 119384, + "name": "Kirby Is... Fantastic!", + "site_detail_url": "https://comicvine.gamespot.com/kirby-is-fantastic/4050-119384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119387/", + "id": 119387, + "name": "Marvel Comics: Timeless Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-timeless-tales/4050-119387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119393/", + "id": 119393, + "name": "The Punisher: War In Bagalia", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-in-bagalia/4050-119393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119399/", + "id": 119399, + "name": "Speedball: The Masked Marvel", + "site_detail_url": "https://comicvine.gamespot.com/speedball-the-masked-marvel/4050-119399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119400/", + "id": 119400, + "name": "Spider-Man Noir: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir-the-complete-collection/4050-119400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119401/", + "id": 119401, + "name": "Spider-Man vs. Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vs-mysterio/4050-119401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119407/", + "id": 119407, + "name": "True Believers: Marvel's Greatest Creators: Silver Surfer: Rude Awakening", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvels-greatest-creators-silver-su/4050-119407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119409/", + "id": 119409, + "name": "X-Force: Sins of the Past", + "site_detail_url": "https://comicvine.gamespot.com/x-force-sins-of-the-past/4050-119409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119516/", + "id": 119516, + "name": "The Adventures of Spider-Man: Sinister Intentions", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-sinister-intentions/4050-119516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119518/", + "id": 119518, + "name": "Avengers by Jason Aaron: War of the Vampires", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-war-of-the-vampires/4050-119518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119520/", + "id": 119520, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/black-cat/4050-119520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119523/", + "id": 119523, + "name": "Captain America: Evolutions of a Living Legend", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-evolutions-of-a-living-legend/4050-119523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119528/", + "id": 119528, + "name": "Cloak and Dagger: Agony and Ecstasy", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-agony-and-ecstasy/4050-119528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119529/", + "id": 119529, + "name": "Daredevil Epic Collection: Purgatory & Paradise", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-purgatory-and-paradise/4050-119529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119535/", + "id": 119535, + "name": "Guardians of the Galaxy Annual", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-annual/4050-119535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119538/", + "id": 119538, + "name": "Incredible Hulk: Last Call", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-last-call/4050-119538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119543/", + "id": 119543, + "name": "The Marvel Art of Skottie Young", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-skottie-young/4050-119543/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119544/", + "id": 119544, + "name": "Marvel Super Hero Adventures: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man/4050-119544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119555/", + "id": 119555, + "name": "Solo: A Star Wars Story Adaptation", + "site_detail_url": "https://comicvine.gamespot.com/solo-a-star-wars-story-adaptation/4050-119555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119556/", + "id": 119556, + "name": "Spider-Man: Far From Home Prelude", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-prelude/4050-119556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119557/", + "id": 119557, + "name": "Spider-Man Start Here Sampler 2019", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-start-here-sampler-2019/4050-119557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119558/", + "id": 119558, + "name": "Star Wars: Age of Rebellion - Luke Skywalker", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-luke-skywalker/4050-119558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119561/", + "id": 119561, + "name": "True Believers: The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man/4050-119561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119562/", + "id": 119562, + "name": "True Believers: The New Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-new-spider-man/4050-119562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119563/", + "id": 119563, + "name": "True Believers: Spider-Armor", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-armor/4050-119563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119631/", + "id": 119631, + "name": "Avengers: No Road Home", + "site_detail_url": "https://comicvine.gamespot.com/avengers-no-road-home/4050-119631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119646/", + "id": 119646, + "name": "Hulk by Loeb & McGuinness Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/hulk-by-loeb-and-mcguinness-omnibus/4050-119646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119647/", + "id": 119647, + "name": "Hulkverines!", + "site_detail_url": "https://comicvine.gamespot.com/hulkverines/4050-119647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119654/", + "id": 119654, + "name": "Marvel Monograph: The Art of Humberto Ramos: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-humberto-ramos-spider-/4050-119654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119655/", + "id": 119655, + "name": "Marvel Tales: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-spider-man/4050-119655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119662/", + "id": 119662, + "name": "Silver Surfer: Black", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-black/4050-119662/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119664/", + "id": 119664, + "name": "Spider-Man Loves Mary Jane: The Real Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-real-thing/4050-119664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119667/", + "id": 119667, + "name": "True Believers: The Sinister Secret of Spider-Man's New Costume!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-sinister-secret-of-spider-mans-/4050-119667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119668/", + "id": 119668, + "name": "True Believers: Spider-Man: Morbius", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-morbius/4050-119668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119669/", + "id": 119669, + "name": "True Believers: Spider-Man vs. Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-vs-hulk/4050-119669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119744/", + "id": 119744, + "name": "Amazing Spider-Man Epic Collection: The Goblin Lives", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-the-goblin-live/4050-119744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119745/", + "id": 119745, + "name": "Amazing Spider-Man: The Gauntlet: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-gauntlet-the-complete-colle/4050-119745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119750/", + "id": 119750, + "name": "Dead Man Logan: Sins of the Father", + "site_detail_url": "https://comicvine.gamespot.com/dead-man-logan-sins-of-the-father/4050-119750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119751/", + "id": 119751, + "name": "Decades: Marvel In The '90s: The Mutant X-plosion", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-90s-the-mutant-x-plosion/4050-119751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119753/", + "id": 119753, + "name": "Fantastic Four Epic Collection: The More Things Change...", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-more-things-cha/4050-119753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119758/", + "id": 119758, + "name": "Howard the Duck #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/howard-the-duck-1-facsimile-edition/4050-119758/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119764/", + "id": 119764, + "name": "Ms. Marvel: Metamorphosis", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-metamorphosis/4050-119764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119765/", + "id": 119765, + "name": "New X-Men: The Quest For Magik: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-the-quest-for-magik-the-complete-collect/4050-119765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119776/", + "id": 119776, + "name": "Thor: Road To War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/thor-road-to-war-of-the-realms/4050-119776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119779/", + "id": 119779, + "name": "True Believers: The Amazing Spider-Man: Spidey Fights In London!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-spidey-fight/4050-119779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119780/", + "id": 119780, + "name": "True Believers: The Amazing Spider-Man: The Wedding of Aunt May & Doc Ock", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-amazing-spider-man-the-wedding-/4050-119780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119782/", + "id": 119782, + "name": "Uncanny X-Men: Cyclops and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-cyclops-and-wolverine/4050-119782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119785/", + "id": 119785, + "name": "Winter Soldier: Second Chances", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-second-chances/4050-119785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119827/", + "id": 119827, + "name": "Crazy Super Special ", + "site_detail_url": "https://comicvine.gamespot.com/crazy-super-special/4050-119827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119853/", + "id": 119853, + "name": "Heroes Reborn Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-omnibus/4050-119853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119858/", + "id": 119858, + "name": "Marvel Comics: The World Outside Your Window", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-the-world-outside-your-window/4050-119858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119859/", + "id": 119859, + "name": "Marvels Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/marvels-poster-book/4050-119859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119860/", + "id": 119860, + "name": "Master of Kung Fu Epic Collection: Fight Without Pity", + "site_detail_url": "https://comicvine.gamespot.com/master-of-kung-fu-epic-collection-fight-without-pi/4050-119860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119862/", + "id": 119862, + "name": "Moon Girl and Devil Dinosaur: Bad Dream", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-bad-dream/4050-119862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119863/", + "id": 119863, + "name": "Not Brand Echh: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/not-brand-echh-the-complete-collection/4050-119863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119865/", + "id": 119865, + "name": "Peter Porker, The Spectacular Spider-Ham: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/peter-porker-the-spectacular-spider-ham-the-comple/4050-119865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119874/", + "id": 119874, + "name": "Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-annual/4050-119874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119876/", + "id": 119876, + "name": "Spider-Man: Reptilian Rage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-reptilian-rage/4050-119876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119877/", + "id": 119877, + "name": "Starjammers", + "site_detail_url": "https://comicvine.gamespot.com/starjammers/4050-119877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119878/", + "id": 119878, + "name": "Star Wars: Age of Rebellion - Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-darth-vader/4050-119878/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119879/", + "id": 119879, + "name": "Star Wars: Doctor Aphra: Worst Among Equals", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-worst-among-equals/4050-119879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119884/", + "id": 119884, + "name": "Tony Stark: Iron Man: Stark Realities", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-iron-man-stark-realities/4050-119884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119888/", + "id": 119888, + "name": "West Coast Avengers: City of Evils", + "site_detail_url": "https://comicvine.gamespot.com/west-coast-avengers-city-of-evils/4050-119888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119889/", + "id": 119889, + "name": "Wolverine: Exit Wounds", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-exit-wounds/4050-119889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119890/", + "id": 119890, + "name": "X-Men: Eve of Destruction", + "site_detail_url": "https://comicvine.gamespot.com/x-men-eve-of-destruction/4050-119890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119891/", + "id": 119891, + "name": "X-Men Milestones: Dark Phoenix Saga", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-dark-phoenix-saga/4050-119891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119929/", + "id": 119929, + "name": "True Believers: Marvel Tails Starring Peter Porker, The Spectacular Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-marvel-tails-starring-peter-porker-/4050-119929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119930/", + "id": 119930, + "name": "True Believers: Spider-Man vs Mysterio", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-spider-man-vs-mysterio/4050-119930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119932/", + "id": 119932, + "name": "Men In Black: Initiation", + "site_detail_url": "https://comicvine.gamespot.com/men-in-black-initiation/4050-119932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119933/", + "id": 119933, + "name": "Clueless Comic Magazine", + "site_detail_url": "https://comicvine.gamespot.com/clueless-comic-magazine/4050-119933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119996/", + "id": 119996, + "name": "Adventures of the X-Men: Clear and Present Dangers", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-the-x-men-clear-and-present-dangers/4050-119996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119997/", + "id": 119997, + "name": "Aero", + "site_detail_url": "https://comicvine.gamespot.com/aero/4050-119997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119998/", + "id": 119998, + "name": "Cable & X-Force Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-x-force-omnibus/4050-119998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119999/", + "id": 119999, + "name": "Captain America & the Invaders: Bahamas Triangle", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-and-the-invaders-bahamas-triangle/4050-119999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120001/", + "id": 120001, + "name": "Conan the Barbarian: The Life and Death of Conan", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-the-life-and-death-of-conan/4050-120001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120002/", + "id": 120002, + "name": "Conan: The Jewels of Gwahlur and Other Stories", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-jewels-of-gwahlur-and-other-stories/4050-120002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120005/", + "id": 120005, + "name": "Fantastic Four: The Prodigal Sun", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-prodigal-sun/4050-120005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120010/", + "id": 120010, + "name": "Kirby Is... Mighty! King-Size", + "site_detail_url": "https://comicvine.gamespot.com/kirby-is-mighty-king-size/4050-120010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120014/", + "id": 120014, + "name": "The Magnificent Ms. Marvel Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-magnificent-ms-marvel-annual/4050-120014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120019/", + "id": 120019, + "name": "New Mutants #98: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-98-facsimile-edition/4050-120019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120025/", + "id": 120025, + "name": "Secret Warps: Soldier Supreme Annual", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps-soldier-supreme-annual/4050-120025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120026/", + "id": 120026, + "name": "Silver Surfer: Parable 30th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-parable-30th-anniversary/4050-120026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120029/", + "id": 120029, + "name": "Star Wars: Age of Resistance - Finn", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-finn/4050-120029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120030/", + "id": 120030, + "name": "Star Wars: Target Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-target-vader/4050-120030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120035/", + "id": 120035, + "name": "True Believers: Absolute Carnage: Carnage U.S.A.", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-carnage-usa/4050-120035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120036/", + "id": 120036, + "name": "True Believers: Absolute Carnage: She-Venom", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-she-venom/4050-120036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120127/", + "id": 120127, + "name": "Decades: Marvel In the '00s: Hitting the Headlines", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-00s-hitting-the-headlines/4050-120127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120128/", + "id": 120128, + "name": "Friendly Neighborhood Spider-Man: Secrets and Rumors", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-secrets-and-rumor/4050-120128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120129/", + "id": 120129, + "name": "Giant-Size X-Statix", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-statix/4050-120129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120130/", + "id": 120130, + "name": "Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/invisible-woman/4050-120130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120131/", + "id": 120131, + "name": "Ironheart: Those With Courage", + "site_detail_url": "https://comicvine.gamespot.com/ironheart-those-with-courage/4050-120131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120132/", + "id": 120132, + "name": "Marvel Monograph: J. Scott Campbell: The Complete Covers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-j-scott-campbell-the-complete-cov/4050-120132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120133/", + "id": 120133, + "name": "Marvel Tales: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-captain-america/4050-120133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120134/", + "id": 120134, + "name": "New Mutants Epic Collection: The Demon Bear Saga", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-epic-collection-the-demon-bear-saga/4050-120134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120135/", + "id": 120135, + "name": "New X-Men Companion", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-companion/4050-120135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120136/", + "id": 120136, + "name": "Secret Warps: Weapon Hex Annual", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps-weapon-hex-annual/4050-120136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120137/", + "id": 120137, + "name": "Spider-Man/Deadpool: Eventpool", + "site_detail_url": "https://comicvine.gamespot.com/spider-mandeadpool-eventpool/4050-120137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120138/", + "id": 120138, + "name": "Star Wars: Age of Resistance - Captain Phasma", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-captain-phasma/4050-120138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120139/", + "id": 120139, + "name": "True Believers: Absolute Carnage: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-carnage/4050-120139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120140/", + "id": 120140, + "name": "True Believers: Absolute Carnage: Venom vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-venom-vs-carnage/4050-120140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120141/", + "id": 120141, + "name": "War of the Realms Omega", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-omega/4050-120141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120142/", + "id": 120142, + "name": "Weirdworld: The Dragonmaster of Klarn", + "site_detail_url": "https://comicvine.gamespot.com/weirdworld-the-dragonmaster-of-klarn/4050-120142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120143/", + "id": 120143, + "name": "Wolverine & Captain America: Weapon Plus", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-captain-america-weapon-plus/4050-120143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120144/", + "id": 120144, + "name": "Wolverine vs. Blade", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-blade/4050-120144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120145/", + "id": 120145, + "name": "X-Men #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-1-facsimile-edition/4050-120145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120146/", + "id": 120146, + "name": "Young Guns Sketchbook 2019", + "site_detail_url": "https://comicvine.gamespot.com/young-guns-sketchbook-2019/4050-120146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120235/", + "id": 120235, + "name": "House of X/Powers of X Free Previews", + "site_detail_url": "https://comicvine.gamespot.com/house-of-xpowers-of-x-free-previews/4050-120235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120236/", + "id": 120236, + "name": "Age of X-Man Omega", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-omega/4050-120236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120237/", + "id": 120237, + "name": "Giant-Size X-Men #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-1-facsimile-edition/4050-120237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120238/", + "id": 120238, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4050-120238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120239/", + "id": 120239, + "name": "The Punisher Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-annual/4050-120239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120240/", + "id": 120240, + "name": "Secret Warps: Ghost Panther Annual", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps-ghost-panther-annual/4050-120240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120241/", + "id": 120241, + "name": "True Believers: Absolute Carnage: Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-maximum-carnage/4050-120241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120242/", + "id": 120242, + "name": "True Believers: Absolute Carnage: Savage Rebirth!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-savage-rebirth/4050-120242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120256/", + "id": 120256, + "name": "Black Widow: No Restraints Play", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-no-restraints-play/4050-120256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120257/", + "id": 120257, + "name": "Havok & Wolverine: Meltdown", + "site_detail_url": "https://comicvine.gamespot.com/havok-and-wolverine-meltdown/4050-120257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120258/", + "id": 120258, + "name": "Miles Morales: Straight Out of Brooklyn", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-straight-out-of-brooklyn/4050-120258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120259/", + "id": 120259, + "name": "Thanos by Donny Cates", + "site_detail_url": "https://comicvine.gamespot.com/thanos-by-donny-cates/4050-120259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120260/", + "id": 120260, + "name": "Tomb of Dracula: Day of Blood, Night of Redemption", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-dracula-day-of-blood-night-of-redemption/4050-120260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120261/", + "id": 120261, + "name": "Wolverine: The Long Night", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-long-night/4050-120261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120262/", + "id": 120262, + "name": "X-Men Epic Collection: It's Always Darkest Before the Dawn", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-its-always-darkest-before-th/4050-120262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120263/", + "id": 120263, + "name": "X-Men Milestones: Fall of the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-fall-of-the-mutants/4050-120263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120303/", + "id": 120303, + "name": "Black Panther: The Intergalactic Empire of Wakanda Part Two", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-intergalactic-empire-of-wakanda-/4050-120303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120306/", + "id": 120306, + "name": "Fearless", + "site_detail_url": "https://comicvine.gamespot.com/fearless/4050-120306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120307/", + "id": 120307, + "name": "History of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe/4050-120307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120309/", + "id": 120309, + "name": "House of X", + "site_detail_url": "https://comicvine.gamespot.com/house-of-x/4050-120309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120315/", + "id": 120315, + "name": "Marvels Epilogue", + "site_detail_url": "https://comicvine.gamespot.com/marvels-epilogue/4050-120315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120316/", + "id": 120316, + "name": "Marvel Tales: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-hulk/4050-120316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120317/", + "id": 120317, + "name": "Miles Morales: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man/4050-120317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120319/", + "id": 120319, + "name": "Punisher: Return To Big Nothing", + "site_detail_url": "https://comicvine.gamespot.com/punisher-return-to-big-nothing/4050-120319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120321/", + "id": 120321, + "name": "Savage Sword of Conan: The Cult of Koga Thun", + "site_detail_url": "https://comicvine.gamespot.com/savage-sword-of-conan-the-cult-of-koga-thun/4050-120321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120322/", + "id": 120322, + "name": "Secret Warps: Arachknight Annual", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps-arachknight-annual/4050-120322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120325/", + "id": 120325, + "name": "Sword Master", + "site_detail_url": "https://comicvine.gamespot.com/sword-master/4050-120325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120326/", + "id": 120326, + "name": "Thor of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/thor-of-the-realms/4050-120326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120329/", + "id": 120329, + "name": "True Believers: Absolute Carnage: Mania", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-mania/4050-120329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120330/", + "id": 120330, + "name": "True Believers: Absolute Carnage: Separation Anxiety", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-separation-anxiety/4050-120330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120331/", + "id": 120331, + "name": "Valkyrie: Jane Foster", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie-jane-foster/4050-120331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120332/", + "id": 120332, + "name": "Web of Venom: Funeral Pyre", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-funeral-pyre/4050-120332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120334/", + "id": 120334, + "name": "X-Men #137: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-137-facsimile-edition/4050-120334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120335/", + "id": 120335, + "name": "Savage Sword of Conan: The Cult of Koga Thun Black & White Edition", + "site_detail_url": "https://comicvine.gamespot.com/savage-sword-of-conan-the-cult-of-koga-thun-black-/4050-120335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120377/", + "id": 120377, + "name": "Conan the Barbarian: The Original Marvel Years Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-the-original-marvel-years-omni/4050-120377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120389/", + "id": 120389, + "name": "Daredevil by Chip Zdarsky: Know Fear", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-know-fear/4050-120389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120392/", + "id": 120392, + "name": "Deadpool by Skottie Young: Good Night", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-skottie-young-good-night/4050-120392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120394/", + "id": 120394, + "name": "Death's Head", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head/4050-120394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120396/", + "id": 120396, + "name": "Fantastic Four: Fantastic Origins", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-fantastic-origins/4050-120396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120399/", + "id": 120399, + "name": "Incredible Hercules: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hercules-the-complete-collection/4050-120399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120400/", + "id": 120400, + "name": "Invaders: War Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/invaders-war-ghosts/4050-120400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120406/", + "id": 120406, + "name": "Marvels Monster-Sized Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvels-monster-sized-edition/4050-120406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120407/", + "id": 120407, + "name": "Powers of X", + "site_detail_url": "https://comicvine.gamespot.com/powers-of-x/4050-120407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120411/", + "id": 120411, + "name": "Secret Warps: Iron Hammer Annual", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps-iron-hammer-annual/4050-120411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120412/", + "id": 120412, + "name": "Star Wars: Age of Resistance Special", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-special/4050-120412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120414/", + "id": 120414, + "name": "Superior Spider-Man: Full Otto", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-full-otto/4050-120414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120417/", + "id": 120417, + "name": "Venom Annual", + "site_detail_url": "https://comicvine.gamespot.com/venom-annual/4050-120417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120421/", + "id": 120421, + "name": "X-23: X-Assassin", + "site_detail_url": "https://comicvine.gamespot.com/x-23-x-assassin/4050-120421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120422/", + "id": 120422, + "name": "X-Men Milestones: Mutant Massacre", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-mutant-massacre/4050-120422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120448/", + "id": 120448, + "name": "True Believers: Absolute Carnage: Mind Bomb", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-mind-bomb/4050-120448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120449/", + "id": 120449, + "name": "True Believers: Absolute Carnage: Planet of the Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-absolute-carnage-planet-of-the-symb/4050-120449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120492/", + "id": 120492, + "name": "How to Draw Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/how-to-draw-iron-man/4050-120492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120532/", + "id": 120532, + "name": "Absolute Carnage", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage/4050-120532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120533/", + "id": 120533, + "name": "Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas/4050-120533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120539/", + "id": 120539, + "name": "Champions by Jim Zub: Beat The Devil", + "site_detail_url": "https://comicvine.gamespot.com/champions-by-jim-zub-beat-the-devil/4050-120539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120545/", + "id": 120545, + "name": "Future Foundation", + "site_detail_url": "https://comicvine.gamespot.com/future-foundation/4050-120545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120559/", + "id": 120559, + "name": "Kirby Returns!", + "site_detail_url": "https://comicvine.gamespot.com/kirby-returns/4050-120559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120563/", + "id": 120563, + "name": "Marvel Art of Conan the Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/marvel-art-of-conan-the-barbarian/4050-120563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120564/", + "id": 120564, + "name": "Marvel Comics #1: 80th Anniversary Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1-80th-anniversary-edition/4050-120564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120567/", + "id": 120567, + "name": "Old Man Quill: Nobody's Fault But Mine", + "site_detail_url": "https://comicvine.gamespot.com/old-man-quill-nobodys-fault-but-mine/4050-120567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120573/", + "id": 120573, + "name": "The Sensational Spider-Man: Self-Improvement", + "site_detail_url": "https://comicvine.gamespot.com/the-sensational-spider-man-self-improvement/4050-120573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120576/", + "id": 120576, + "name": "Star Wars: Age of Rebellion - Heroes", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-heroes/4050-120576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120580/", + "id": 120580, + "name": "War of the Realms: Giant-Man", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-giant-man/4050-120580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120627/", + "id": 120627, + "name": "Absolute Carnage: Scream", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-scream/4050-120627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120628/", + "id": 120628, + "name": "Absolute Carnage: Separation Anxiety", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-separation-anxiety/4050-120628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120630/", + "id": 120630, + "name": "Age of Conan: Valeria", + "site_detail_url": "https://comicvine.gamespot.com/age-of-conan-valeria/4050-120630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120631/", + "id": 120631, + "name": "Amazing Spider-Man: Hunted", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-hunted/4050-120631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120634/", + "id": 120634, + "name": "Asgardians of the Galaxy: War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/asgardians-of-the-galaxy-war-of-the-realms/4050-120634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120636/", + "id": 120636, + "name": "Conan the Barbarian: Exodus", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-exodus/4050-120636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120637/", + "id": 120637, + "name": "Decades: Marvel In The '10s - Legends and Legacy", + "site_detail_url": "https://comicvine.gamespot.com/decades-marvel-in-the-10s-legends-and-legacy/4050-120637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120642/", + "id": 120642, + "name": "Guardians of the Galaxy: The Final Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-the-final-gauntlet/4050-120642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120643/", + "id": 120643, + "name": "Gwenpool Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-strikes-back/4050-120643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120645/", + "id": 120645, + "name": "Immortal Hulk Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-directors-cut/4050-120645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120652/", + "id": 120652, + "name": "Marvel 80th Anniversary Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-80th-anniversary-poster-book/4050-120652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120654/", + "id": 120654, + "name": "Mr. & Mrs. X: Gambit and Rogue Forever", + "site_detail_url": "https://comicvine.gamespot.com/mr-and-mrs-x-gambit-and-rogue-forever/4050-120654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120658/", + "id": 120658, + "name": "Punisher Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kill-krew/4050-120658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120663/", + "id": 120663, + "name": "Silver Surfer: The Prodigal Sun", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-the-prodigal-sun/4050-120663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120669/", + "id": 120669, + "name": "War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms/4050-120669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120672/", + "id": 120672, + "name": "X-Factor #87: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-87-facsimile-edition/4050-120672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120673/", + "id": 120673, + "name": "X-Men Epic Collection: Dissolution & Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-dissolution-and-rebirth/4050-120673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120682/", + "id": 120682, + "name": "Marvel Masters of Suspense: Stan Lee & Steve Ditko", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masters-of-suspense-stan-lee-and-steve-ditk/4050-120682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120684/", + "id": 120684, + "name": "Sān Huáng Dòu Zhànshì", + "site_detail_url": "https://comicvine.gamespot.com/san-huang-dou-zhanshi/4050-120684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120748/", + "id": 120748, + "name": "X-Men: Grand Design – X-Tinction", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-x-tinction/4050-120748/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120751/", + "id": 120751, + "name": "Marvel Action: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-action-captain-marvel/4050-120751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120811/", + "id": 120811, + "name": "Absolute Carnage vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-vs-deadpool/4050-120811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120812/", + "id": 120812, + "name": "Age of X-Man: Marvelous X-Men", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-marvelous-x-men/4050-120812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120813/", + "id": 120813, + "name": "Age of X-Man: NextGen", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-nextgen/4050-120813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120814/", + "id": 120814, + "name": "Deadpool Annual", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-annual/4050-120814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120815/", + "id": 120815, + "name": "Fantastic Four Epic Collection: The Mystery of the Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-mystery-of-the-/4050-120815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120816/", + "id": 120816, + "name": "Ghost-Spider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider/4050-120816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120817/", + "id": 120817, + "name": "Hawkeye: Private Eye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-private-eye/4050-120817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120818/", + "id": 120818, + "name": "Marvel Tales: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-x-men/4050-120818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120819/", + "id": 120819, + "name": "Meet the Skrulls", + "site_detail_url": "https://comicvine.gamespot.com/meet-the-skrulls/4050-120819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120820/", + "id": 120820, + "name": "Star Wars: Age of Rebellion - Villains", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-villains/4050-120820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120821/", + "id": 120821, + "name": "Star Wars: The Scourging of Shu-Torun", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-scourging-of-shu-torun/4050-120821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120822/", + "id": 120822, + "name": "War of the Realms Strikeforce", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-strikeforce/4050-120822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120945/", + "id": 120945, + "name": "Absolute Carnage: Lethal Protectors", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-lethal-protectors/4050-120945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120946/", + "id": 120946, + "name": "Absolute Carnage: Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-miles-morales/4050-120946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120947/", + "id": 120947, + "name": "Amazing Spider-Man: Venom 3D", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-venom-3d/4050-120947/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120948/", + "id": 120948, + "name": "Fantastic Four: 4 Yancy Street", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-4-yancy-street/4050-120948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120949/", + "id": 120949, + "name": "Marvel Monsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters/4050-120949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120950/", + "id": 120950, + "name": "Marvel's Spider-Man: Velocity", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity/4050-120950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120951/", + "id": 120951, + "name": "Marvel Universe Fall 2019 Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-fall-2019-magazine/4050-120951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120952/", + "id": 120952, + "name": "Power Pack: Grow Up!", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-grow-up/4050-120952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120953/", + "id": 120953, + "name": "She-Hulk Annual", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-annual/4050-120953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120954/", + "id": 120954, + "name": "Star Wars: Age of Resistance - General Hux", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-general-hux/4050-120954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120955/", + "id": 120955, + "name": "Star Wars: Age of Resistance - Poe Dameron", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-poe-dameron/4050-120955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120956/", + "id": 120956, + "name": "Age of X-Man: The Amazing Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler/4050-120956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120957/", + "id": 120957, + "name": "Age of X-Man: X-Tremists", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-x-tremists/4050-120957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120958/", + "id": 120958, + "name": "Captain Marvel: Re-Entry", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-re-entry/4050-120958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120959/", + "id": 120959, + "name": "Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics/4050-120959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120960/", + "id": 120960, + "name": "Marvel Monograph: The Art of Adi Granov", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-adi-granov/4050-120960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120961/", + "id": 120961, + "name": "Marvels Postcard Book", + "site_detail_url": "https://comicvine.gamespot.com/marvels-postcard-book/4050-120961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120962/", + "id": 120962, + "name": "Star Wars: Vader - Dark Visions", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-vader-dark-visions/4050-120962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120963/", + "id": 120963, + "name": "Thor Epic Collection: The Black Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-black-galaxy/4050-120963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120964/", + "id": 120964, + "name": "War of the Realms: Journey Into Mystery", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-journey-into-mystery/4050-120964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120965/", + "id": 120965, + "name": "Wolverine: Infinity Watch", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-infinity-watch/4050-120965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120966/", + "id": 120966, + "name": "X-Men Milestones: Inferno", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-inferno/4050-120966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121056/", + "id": 121056, + "name": "Absolute Carnage: Symbiote Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-symbiote-spider-man/4050-121056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121057/", + "id": 121057, + "name": "Age of X-Man: Prisoner X", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-prisoner-x/4050-121057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121058/", + "id": 121058, + "name": "Alpha Flight: True North", + "site_detail_url": "https://comicvine.gamespot.com/alpha-flight-true-north/4050-121058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121059/", + "id": 121059, + "name": "Amazing Spider-Man: Going Big", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-going-big/4050-121059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121077/", + "id": 121077, + "name": "Ghost-Spider Annual", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-annual/4050-121077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121080/", + "id": 121080, + "name": "Immortal Hulk: Abomination", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-abomination/4050-121080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121087/", + "id": 121087, + "name": "The Marvel Art of Joe Quesada", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-joe-quesada/4050-121087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121088/", + "id": 121088, + "name": "Marvel Horror Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-horror-omnibus/4050-121088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121103/", + "id": 121103, + "name": "Spider-Gwen: Ghost-Spider: Impossible Year", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-ghost-spider-impossible-year/4050-121103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121104/", + "id": 121104, + "name": "Spider-Man By John Byrne Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-john-byrne-omnibus/4050-121104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121105/", + "id": 121105, + "name": "Spider-Woman #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-1-facsimile-edition/4050-121105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121107/", + "id": 121107, + "name": "Star Wars: Jedi Fallen Order–Dark Temple", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-jedi-fallen-order-dark-temple/4050-121107/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121109/", + "id": 121109, + "name": "Thanos Rising Marvel Select Edition", + "site_detail_url": "https://comicvine.gamespot.com/thanos-rising-marvel-select-edition/4050-121109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121110/", + "id": 121110, + "name": "Timely's Greatest: The Golden Age Sub-Mariner: The Pre-War Years By Bill Everett", + "site_detail_url": "https://comicvine.gamespot.com/timelys-greatest-the-golden-age-sub-mariner-the-pr/4050-121110/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121112/", + "id": 121112, + "name": "True Believers: Hulk: Head of Banner", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-head-of-banner/4050-121112/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121113/", + "id": 121113, + "name": "True Believers: Hulk: Intelligent Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-intelligent-hulk/4050-121113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121116/", + "id": 121116, + "name": "Venom Unleashed", + "site_detail_url": "https://comicvine.gamespot.com/venom-unleashed/4050-121116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121118/", + "id": 121118, + "name": "War of the Realms: New Agents of Atlas", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-new-agents-of-atlas/4050-121118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121119/", + "id": 121119, + "name": "Web of Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/web-of-black-widow/4050-121119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121120/", + "id": 121120, + "name": "X-Force: The Counterfeit King", + "site_detail_url": "https://comicvine.gamespot.com/x-force-the-counterfeit-king/4050-121120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121221/", + "id": 121221, + "name": "Absolute Carnage: Symbiote of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-symbiote-of-vengeance/4050-121221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121222/", + "id": 121222, + "name": "Age of X-Man: Apocalypse & the X-Tracts", + "site_detail_url": "https://comicvine.gamespot.com/age-of-x-man-apocalypse-and-the-x-tracts/4050-121222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121232/", + "id": 121232, + "name": "Domino: Hotshots", + "site_detail_url": "https://comicvine.gamespot.com/domino-hotshots/4050-121232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121237/", + "id": 121237, + "name": "Guardians of the Galaxy: The Prodigal Sun", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-the-prodigal-sun/4050-121237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121238/", + "id": 121238, + "name": "King Thor", + "site_detail_url": "https://comicvine.gamespot.com/king-thor/4050-121238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121239/", + "id": 121239, + "name": "Marvel Monograph: The Art of Esad Ribić", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-esad-ribic/4050-121239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121240/", + "id": 121240, + "name": "Marvel Tales: Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-black-panther/4050-121240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121242/", + "id": 121242, + "name": "Miles Morales: With Great Power", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-with-great-power/4050-121242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121245/", + "id": 121245, + "name": "Moon Knight Annual", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-annual/4050-121245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121254/", + "id": 121254, + "name": "Shuri: 24/7 Vibranium", + "site_detail_url": "https://comicvine.gamespot.com/shuri-247-vibranium/4050-121254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121255/", + "id": 121255, + "name": "Spider-Man: The Many Hosts of Carnage", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-many-hosts-of-carnage/4050-121255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121256/", + "id": 121256, + "name": "Star Wars: Age of Resistance - Supreme Leader Snoke", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-supreme-leader-snoke/4050-121256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121260/", + "id": 121260, + "name": "The Unbeatable Squirrel Girl: Call Your Squirrelfriend", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-call-your-squirrelfri/4050-121260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121262/", + "id": 121262, + "name": "The Unstoppable Wasp: Unlimited: G.I.R.L. vs. A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-unlimited-girl-vs-aim/4050-121262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121263/", + "id": 121263, + "name": "Venom: War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/venom-war-of-the-realms/4050-121263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121264/", + "id": 121264, + "name": "War of the Realms: Spider-Man/Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-spider-mandaredevil/4050-121264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121265/", + "id": 121265, + "name": "X-Men by Roy Thomas & Neal Adams Gallery Edition", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-roy-thomas-and-neal-adams-gallery-edition/4050-121265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121290/", + "id": 121290, + "name": "True Believers: The Incredible Hulk: Gray Hulk Returns", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-incredible-hulk-gray-hulk-retur/4050-121290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121291/", + "id": 121291, + "name": "True Believers: The Incredible Hulk: Mindless Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-incredible-hulk-mindless-hulk/4050-121291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121413/", + "id": 121413, + "name": "Age of Conan: Bêlit", + "site_detail_url": "https://comicvine.gamespot.com/age-of-conan-belit/4050-121413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121414/", + "id": 121414, + "name": "Avengers West Coast Epic Collection: Lost In Space-Time", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-epic-collection-lost-in-space-/4050-121414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121415/", + "id": 121415, + "name": "Black Panther and the Agents of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-and-the-agents-of-wakanda/4050-121415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121416/", + "id": 121416, + "name": "Daredevil #181: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-181-facsimile-edition/4050-121416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121417/", + "id": 121417, + "name": "Doctor Strange by Mark Waid: Herald", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-mark-waid-herald/4050-121417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121419/", + "id": 121419, + "name": "Infinity Wars by Gerry Duggan: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/infinity-wars-by-gerry-duggan-the-complete-collect/4050-121419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121420/", + "id": 121420, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4050-121420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121421/", + "id": 121421, + "name": "Spider-Man #1: Behind The Scenes Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-behind-the-scenes-edition/4050-121421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121422/", + "id": 121422, + "name": "Star Wars: Age of Resistance - Rey", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-rey/4050-121422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121423/", + "id": 121423, + "name": "Star Wars: Age of Resistance - Rose Tico", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-rose-tico/4050-121423/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121424/", + "id": 121424, + "name": "True Believers: Hulk Returns!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-returns/4050-121424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121425/", + "id": 121425, + "name": "True Believers: Hulk: Joe Fixit", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-joe-fixit/4050-121425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121426/", + "id": 121426, + "name": "True Believers: Hulk: Professor Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-professor-hulk/4050-121426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121427/", + "id": 121427, + "name": "Uncanny Origins: Mutants & Monsters", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-origins-mutants-and-monsters/4050-121427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121449/", + "id": 121449, + "name": "Fantastic Four: The Herald of Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-herald-of-doom/4050-121449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121572/", + "id": 121572, + "name": "The Adventures of Spider-Man: Spectacular Foes", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-spectacular-foes/4050-121572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121573/", + "id": 121573, + "name": "Avengers: Loki Unleashed!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-loki-unleashed/4050-121573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121574/", + "id": 121574, + "name": "Captain America: Captain of Nothing", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-captain-of-nothing/4050-121574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121575/", + "id": 121575, + "name": "Incredible Hulk Epic Collection: In the Hands of Hydra", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-in-the-hands-of-hy/4050-121575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121576/", + "id": 121576, + "name": "Marvel 80th Anniversary Postcard Book", + "site_detail_url": "https://comicvine.gamespot.com/marvel-80th-anniversary-postcard-book/4050-121576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121577/", + "id": 121577, + "name": "Marvel Illustrator's Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/marvel-illustrators-sketchbook/4050-121577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121578/", + "id": 121578, + "name": "Marvel Rising: Heroes of the Round Table", + "site_detail_url": "https://comicvine.gamespot.com/marvel-rising-heroes-of-the-round-table/4050-121578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121579/", + "id": 121579, + "name": "New Mutants: War Children", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-war-children/4050-121579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121580/", + "id": 121580, + "name": "Secret Warps", + "site_detail_url": "https://comicvine.gamespot.com/secret-warps/4050-121580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121581/", + "id": 121581, + "name": "Son of Satan: Marvel Spotlight #12: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/son-of-satan-marvel-spotlight-12-facsimile-edition/4050-121581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121582/", + "id": 121582, + "name": "Spider-Man Postcard Book", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-postcard-book/4050-121582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121583/", + "id": 121583, + "name": "Star Wars: Age of Resistance - Kylo Ren", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-kylo-ren/4050-121583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121584/", + "id": 121584, + "name": "Strikeforce", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce/4050-121584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121585/", + "id": 121585, + "name": "True Believers: Hulk: Devil Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-devil-hulk/4050-121585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121586/", + "id": 121586, + "name": "True Believers: Hulk: The Other Hulks", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-the-other-hulks/4050-121586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121587/", + "id": 121587, + "name": "True Believers: Hulk: Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-hulk-red-hulk/4050-121587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121588/", + "id": 121588, + "name": "Wolverine Annual", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-annual/4050-121588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121589/", + "id": 121589, + "name": "X-Men Milestones: X-Tinction Agenda", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-x-tinction-agenda/4050-121589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121731/", + "id": 121731, + "name": "Absolute Carnage: Immortal Hulk", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-immortal-hulk/4050-121731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121732/", + "id": 121732, + "name": "Bizarre Adventures", + "site_detail_url": "https://comicvine.gamespot.com/bizarre-adventures/4050-121732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121733/", + "id": 121733, + "name": "Conan Chronicles Epic Collection: Return To Cimmeria", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-return-to-cimmeri/4050-121733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121734/", + "id": 121734, + "name": "Contagion", + "site_detail_url": "https://comicvine.gamespot.com/contagion/4050-121734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121735/", + "id": 121735, + "name": "Cosmic Ghost Rider Destroys Marvel History", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history/4050-121735/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121736/", + "id": 121736, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-121736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121737/", + "id": 121737, + "name": "Immortal Hulk", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk/4050-121737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121738/", + "id": 121738, + "name": "Major X", + "site_detail_url": "https://comicvine.gamespot.com/major-x/4050-121738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121739/", + "id": 121739, + "name": "Man-Wolf: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/man-wolf-the-complete-collection/4050-121739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121740/", + "id": 121740, + "name": "The Marvel Art of Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-star-wars/4050-121740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121741/", + "id": 121741, + "name": "Marvel Universe By Rob Liefeld Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-by-rob-liefeld-omnibus/4050-121741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121742/", + "id": 121742, + "name": "Namor The Sub-Mariner By Byrne and Jae Lee Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-sub-mariner-by-byrne-and-jae-lee-omnibus/4050-121742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121743/", + "id": 121743, + "name": "Spider-Man: Far From Home: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-far-from-home-the-art-of-the-movie/4050-121743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121744/", + "id": 121744, + "name": "Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse/4050-121744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121745/", + "id": 121745, + "name": "Thanos: The Infinity Ending", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-ending/4050-121745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121746/", + "id": 121746, + "name": "True Believers: The Uncanny X-Men: Bishop", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-bishop/4050-121746/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121747/", + "id": 121747, + "name": "True Believers: The Uncanny X-Men: Kitty Pryde & Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-kitty-pryde-and-e/4050-121747/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121800/", + "id": 121800, + "name": "AXE: The Freshmen. Featuring the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/axe-the-freshmen-featuring-the-avengers/4050-121800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121801/", + "id": 121801, + "name": "M&M's", + "site_detail_url": "https://comicvine.gamespot.com/mandms/4050-121801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121895/", + "id": 121895, + "name": "Amazing Fantasy #15: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-15-facsimile-edition/4050-121895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121896/", + "id": 121896, + "name": "Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom/4050-121896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121897/", + "id": 121897, + "name": "Future Fight Firsts: White Fox", + "site_detail_url": "https://comicvine.gamespot.com/future-fight-firsts-white-fox/4050-121897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121898/", + "id": 121898, + "name": "Hulk: Incredible Origins", + "site_detail_url": "https://comicvine.gamespot.com/hulk-incredible-origins/4050-121898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121899/", + "id": 121899, + "name": "Journey To Star Wars: The Rise of Skywalker - Allegiance", + "site_detail_url": "https://comicvine.gamespot.com/journey-to-star-wars-the-rise-of-skywalker-allegia/4050-121899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121900/", + "id": 121900, + "name": "Marvel 80 For 80", + "site_detail_url": "https://comicvine.gamespot.com/marvel-80-for-80/4050-121900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121902/", + "id": 121902, + "name": "Marvel Monograph: The Art of Sara Pichelli", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-sara-pichelli/4050-121902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121903/", + "id": 121903, + "name": "Spider-Man Loves Mary Jane: The Unexpected Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-unexpected-thing/4050-121903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121904/", + "id": 121904, + "name": "True Believers: The Uncanny X-Men: Pyro", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-pyro/4050-121904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121905/", + "id": 121905, + "name": "True Believers: X-Men: Betsy Braddock", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-betsy-braddock/4050-121905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121906/", + "id": 121906, + "name": "Ultimate Spider-Man: Power & Responsibility Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-power-and-responsibility-marve/4050-121906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121907/", + "id": 121907, + "name": "War of the Realms: The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-the-punisher/4050-121907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121908/", + "id": 121908, + "name": "X-Men XXL by Jim Lee", + "site_detail_url": "https://comicvine.gamespot.com/x-men-xxl-by-jim-lee/4050-121908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-121909/", + "id": 121909, + "name": "Marvel Masterworks: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-ghost-rider/4050-121909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122065/", + "id": 122065, + "name": "Absolute Carnage: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-avengers/4050-122065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122066/", + "id": 122066, + "name": "Crazy", + "site_detail_url": "https://comicvine.gamespot.com/crazy/4050-122066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122067/", + "id": 122067, + "name": "Hit-Monkey by Daniel Way: Bullets & Bananas", + "site_detail_url": "https://comicvine.gamespot.com/hit-monkey-by-daniel-way-bullets-and-bananas/4050-122067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122068/", + "id": 122068, + "name": "How To Paint Characters the Marvel Studios Way", + "site_detail_url": "https://comicvine.gamespot.com/how-to-paint-characters-the-marvel-studios-way/4050-122068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122069/", + "id": 122069, + "name": "Ironheart: Riri Williams", + "site_detail_url": "https://comicvine.gamespot.com/ironheart-riri-williams/4050-122069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122070/", + "id": 122070, + "name": "Marvel's Spider-Man: City At War", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-city-at-war/4050-122070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122071/", + "id": 122071, + "name": "Marvel Tales: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-ghost-rider/4050-122071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122072/", + "id": 122072, + "name": "Ms. Marvel by Saladin Ahmed: Destined", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-by-saladin-ahmed-destined/4050-122072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122073/", + "id": 122073, + "name": "Runaways by Rainbow Rowell: But You Can't Hide", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-rainbow-rowell-but-you-cant-hide/4050-122073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122074/", + "id": 122074, + "name": "Star Wars: Tie Fighter", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-tie-fighter/4050-122074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122075/", + "id": 122075, + "name": "True Believers: X-Men: Jubilee", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-jubilee/4050-122075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122076/", + "id": 122076, + "name": "True Believers: X-Men: Rictor", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-rictor/4050-122076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122077/", + "id": 122077, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-122077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122192/", + "id": 122192, + "name": "Amazing Spider-Man by Nick Spencer: Behind The Scenes", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-behind-the-scen/4050-122192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122193/", + "id": 122193, + "name": "Daredevil Epic Collection: A Woman Called Widow", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-a-woman-called-widow/4050-122193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122194/", + "id": 122194, + "name": "Doctor Strange Epic Collection: Triumph and Torment", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-triumph-and-torment/4050-122194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122195/", + "id": 122195, + "name": "Fantastic Four: Behold... Galactus! Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-behold-galactus-marvel-select/4050-122195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122196/", + "id": 122196, + "name": "Spider-Man: Life Story", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story/4050-122196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122197/", + "id": 122197, + "name": "Star Wars: Galaxy's Edge", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-galaxys-edge/4050-122197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122198/", + "id": 122198, + "name": "Timely's Greatest: The Golden Age: Simon & Kirby Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/timelys-greatest-the-golden-age-simon-and-kirby-om/4050-122198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122199/", + "id": 122199, + "name": "Write Your Own Marvel", + "site_detail_url": "https://comicvine.gamespot.com/write-your-own-marvel/4050-122199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122200/", + "id": 122200, + "name": "X-Men Milestones: X-Cutioner's Song", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-x-cutioners-song/4050-122200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122214/", + "id": 122214, + "name": "Amazing Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/amazing-mary-jane/4050-122214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122215/", + "id": 122215, + "name": "Amazing Spider-Man: Full Circle", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-full-circle/4050-122215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122216/", + "id": 122216, + "name": "Future Fight Firsts: Luna Snow", + "site_detail_url": "https://comicvine.gamespot.com/future-fight-firsts-luna-snow/4050-122216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122217/", + "id": 122217, + "name": "The Incredible Hulk #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-1-facsimile-edition/4050-122217/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122218/", + "id": 122218, + "name": "Marauders", + "site_detail_url": "https://comicvine.gamespot.com/marauders/4050-122218/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122219/", + "id": 122219, + "name": "True Believers: X-Men: Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-apocalypse/4050-122219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122220/", + "id": 122220, + "name": "True Believers: X-Men: Kwannon", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-kwannon/4050-122220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122264/", + "id": 122264, + "name": "Damnation: Johnny Blaze - Ghost Rider: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/damnation-johnny-blaze-ghost-rider-halloween-comic/4050-122264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122268/", + "id": 122268, + "name": "Iron Man: Road To Iron Man 2020", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-road-to-iron-man-2020/4050-122268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122274/", + "id": 122274, + "name": "Miles Morales: Spider-Man: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-halloween-comicfest/4050-122274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122278/", + "id": 122278, + "name": "Star Wars: Age of Rebellion - Boba Fett: Halloween ComicFest", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion-boba-fett-halloween-com/4050-122278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122284/", + "id": 122284, + "name": "Avengers: Save Like A Hero", + "site_detail_url": "https://comicvine.gamespot.com/avengers-save-like-a-hero/4050-122284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122285/", + "id": 122285, + "name": "Guardians of the Galaxy, Ozone Heroes", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-ozone-heroes/4050-122285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122452/", + "id": 122452, + "name": "Fantastic Four: Grand Design", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-grand-design/4050-122452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122486/", + "id": 122486, + "name": "Deadpool by Skottie Young: Weasel Goes To Hell", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-skottie-young-weasel-goes-to-hell/4050-122486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122487/", + "id": 122487, + "name": "Doctor Strange Annual", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-annual/4050-122487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122488/", + "id": 122488, + "name": "Excalibur", + "site_detail_url": "https://comicvine.gamespot.com/excalibur/4050-122488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122489/", + "id": 122489, + "name": "Marvel Zombies: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection/4050-122489/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122490/", + "id": 122490, + "name": "Marvel-Verse: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-iron-man/4050-122490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122491/", + "id": 122491, + "name": "Marvel-Verse: Thanos", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-thanos/4050-122491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122492/", + "id": 122492, + "name": "Red Goblin: Red Death", + "site_detail_url": "https://comicvine.gamespot.com/red-goblin-red-death/4050-122492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122493/", + "id": 122493, + "name": "Savage Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-annual/4050-122493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122494/", + "id": 122494, + "name": "Spider-Gwen: Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-gwen-stacy/4050-122494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122495/", + "id": 122495, + "name": "Symbiote Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man/4050-122495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122496/", + "id": 122496, + "name": "Thor: War's End", + "site_detail_url": "https://comicvine.gamespot.com/thor-wars-end/4050-122496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122497/", + "id": 122497, + "name": "Tony Stark: Iron Man: War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-iron-man-war-of-the-realms/4050-122497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122498/", + "id": 122498, + "name": "True Believers: X-Men: Karima Shapandar, Omega Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-karima-shapandar-omega-sentin/4050-122498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122499/", + "id": 122499, + "name": "True Believers: X-Men: Moira MacTaggert", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-moira-mactaggert/4050-122499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122500/", + "id": 122500, + "name": "War of the Realms: Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-uncanny-x-men/4050-122500/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122501/", + "id": 122501, + "name": "X-Men: Starjammers by Dave Cockrum", + "site_detail_url": "https://comicvine.gamespot.com/x-men-starjammers-by-dave-cockrum/4050-122501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122502/", + "id": 122502, + "name": "X-Men: Trial of the Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/x-men-trial-of-the-juggernaut/4050-122502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122507/", + "id": 122507, + "name": "AAFES 17th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-17th-edition/4050-122507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122591/", + "id": 122591, + "name": "Ultimate Fantastic Four Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-fantastic-four-collection/4050-122591/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122660/", + "id": 122660, + "name": "Iron Man: Sound Effects", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-sound-effects/4050-122660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122661/", + "id": 122661, + "name": "Iron Man Featuring Globalita", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-featuring-globalita/4050-122661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122664/", + "id": 122664, + "name": "Absolute Carnage: Weapon Plus", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-weapon-plus/4050-122664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122665/", + "id": 122665, + "name": "Future Fight Firsts: Crescent & Io", + "site_detail_url": "https://comicvine.gamespot.com/future-fight-firsts-crescent-and-io/4050-122665/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122666/", + "id": 122666, + "name": "New Mutants", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants/4050-122666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122667/", + "id": 122667, + "name": "Spider-Man & Venom: Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble/4050-122667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122668/", + "id": 122668, + "name": "X-Force", + "site_detail_url": "https://comicvine.gamespot.com/x-force/4050-122668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122669/", + "id": 122669, + "name": "Yondu", + "site_detail_url": "https://comicvine.gamespot.com/yondu/4050-122669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122670/", + "id": 122670, + "name": "Deadpool by Joe Kelly: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-by-joe-kelly-the-complete-collection/4050-122670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122671/", + "id": 122671, + "name": "Fantastic Four: The Prodigal Sun", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-prodigal-sun/4050-122671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122672/", + "id": 122672, + "name": "Iron Man: Extremis Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-extremis-marvel-select/4050-122672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122673/", + "id": 122673, + "name": "League of Legends: Lux", + "site_detail_url": "https://comicvine.gamespot.com/league-of-legends-lux/4050-122673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122674/", + "id": 122674, + "name": "The Official Handbook of the Marvel Universe Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-omnib/4050-122674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122675/", + "id": 122675, + "name": "Venom by Donny Cates", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates/4050-122675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122813/", + "id": 122813, + "name": "Black Cat Annual", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-annual/4050-122813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122814/", + "id": 122814, + "name": "Fallen Angels", + "site_detail_url": "https://comicvine.gamespot.com/fallen-angels/4050-122814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122815/", + "id": 122815, + "name": "Marvel Sampler November 2019", + "site_detail_url": "https://comicvine.gamespot.com/marvel-sampler-november-2019/4050-122815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122816/", + "id": 122816, + "name": "Marvel Tales: Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-doctor-strange/4050-122816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122817/", + "id": 122817, + "name": "Morbius", + "site_detail_url": "https://comicvine.gamespot.com/morbius/4050-122817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122819/", + "id": 122819, + "name": "Tomb of Dracula #10: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/tomb-of-dracula-10-facsimile-edition/4050-122819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122820/", + "id": 122820, + "name": "Adventures of the X-Men: Rites of Passage", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-the-x-men-rites-of-passage/4050-122820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122821/", + "id": 122821, + "name": "Savage Avengers: City of Sickles", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-city-of-sickles/4050-122821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122822/", + "id": 122822, + "name": "Star Wars: Age of Resistance - Heroes", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-heroes/4050-122822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122823/", + "id": 122823, + "name": "Vision: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/vision-the-complete-collection/4050-122823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122824/", + "id": 122824, + "name": "X-Factor Epic Collection: X-aminations", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-epic-collection-x-aminations/4050-122824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122825/", + "id": 122825, + "name": "X-Men Milestones: Fatal Attractions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-fatal-attractions/4050-122825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122848/", + "id": 122848, + "name": "Heroes Reborn: The Return", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return/4050-122848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122849/", + "id": 122849, + "name": "Hulk: Green Hulk/Red Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk-green-hulkred-hulk/4050-122849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122938/", + "id": 122938, + "name": "League of Legends: Zed", + "site_detail_url": "https://comicvine.gamespot.com/league-of-legends-zed/4050-122938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122984/", + "id": 122984, + "name": "2099 Alpha", + "site_detail_url": "https://comicvine.gamespot.com/2099-alpha/4050-122984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122985/", + "id": 122985, + "name": "Absolute Carnage: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-captain-marvel/4050-122985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122986/", + "id": 122986, + "name": "Annihilation: Scourge Alpha", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge-alpha/4050-122986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122987/", + "id": 122987, + "name": "Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/deadpool/4050-122987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122988/", + "id": 122988, + "name": "Fantastic Four 2099", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-2099/4050-122988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122989/", + "id": 122989, + "name": "Avengers Endgame: The Art of the Movie", + "site_detail_url": "https://comicvine.gamespot.com/avengers-endgame-the-art-of-the-movie/4050-122989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122990/", + "id": 122990, + "name": "The Immortal Hulk: Breaker of Worlds", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-breaker-of-worlds/4050-122990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122991/", + "id": 122991, + "name": "Journey To Star Wars: The Rise of Skywalker - Allegiance", + "site_detail_url": "https://comicvine.gamespot.com/journey-to-star-wars-the-rise-of-skywalker-allegia/4050-122991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122992/", + "id": 122992, + "name": "Power Man and Iron Fist Epic Collection: Doombringer", + "site_detail_url": "https://comicvine.gamespot.com/power-man-and-iron-fist-epic-collection-doombringe/4050-122992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122993/", + "id": 122993, + "name": "The Punisher: Street By Street, Block By Block", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-street-by-street-block-by-block/4050-122993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122994/", + "id": 122994, + "name": "Star Wars: Age of Resistance - Villains", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance-villains/4050-122994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-122995/", + "id": 122995, + "name": "Star Wars: Rebels and Rogues", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-rebels-and-rogues/4050-122995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123122/", + "id": 123122, + "name": "Conan 2099", + "site_detail_url": "https://comicvine.gamespot.com/conan-2099/4050-123122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123123/", + "id": 123123, + "name": "Fantastic Four: Negative Zone", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-negative-zone/4050-123123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123124/", + "id": 123124, + "name": "The Punisher 2099", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-2099/4050-123124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123125/", + "id": 123125, + "name": "Scream: Curse of Carnage", + "site_detail_url": "https://comicvine.gamespot.com/scream-curse-of-carnage/4050-123125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123126/", + "id": 123126, + "name": "Uncanny X-Men #266: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-266-facsimile-edition/4050-123126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123127/", + "id": 123127, + "name": "The Adventures of Spider-Man: Radioactive", + "site_detail_url": "https://comicvine.gamespot.com/the-adventures-of-spider-man-radioactive/4050-123127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123128/", + "id": 123128, + "name": "Avengers by Jason Aaron: War of the Realms", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-war-of-the-realms/4050-123128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123129/", + "id": 123129, + "name": "Fearless", + "site_detail_url": "https://comicvine.gamespot.com/fearless/4050-123129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123130/", + "id": 123130, + "name": "M.O.D.O.K.: Head Trips", + "site_detail_url": "https://comicvine.gamespot.com/modok-head-trips/4050-123130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123131/", + "id": 123131, + "name": "Ms. Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-team-up/4050-123131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123132/", + "id": 123132, + "name": "Thanos: Zero Sanctuary", + "site_detail_url": "https://comicvine.gamespot.com/thanos-zero-sanctuary/4050-123132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123133/", + "id": 123133, + "name": "Timely's Greatest: The Golden Age Human Torch By Carl Burgos Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/timelys-greatest-the-golden-age-human-torch-by-car/4050-123133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123183/", + "id": 123183, + "name": "Marvel Super Hero Squad Online Magazine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-hero-squad-online-magazine/4050-123183/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123263/", + "id": 123263, + "name": "Annihilation - Scourge: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge-fantastic-four/4050-123263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123264/", + "id": 123264, + "name": "Annihilation - Scourge: Nova", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge-nova/4050-123264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123265/", + "id": 123265, + "name": "Conan: Serpent War", + "site_detail_url": "https://comicvine.gamespot.com/conan-serpent-war/4050-123265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123266/", + "id": 123266, + "name": "Ghost Rider 2099", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-2099/4050-123266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123267/", + "id": 123267, + "name": "Star Wars #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-1-facsimile-edition/4050-123267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123268/", + "id": 123268, + "name": "Star Wars Saga", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-saga/4050-123268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123269/", + "id": 123269, + "name": "Thor: The Worthy", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-worthy/4050-123269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123270/", + "id": 123270, + "name": "True Believers: Conan Serpent War: The Valley of the Worm", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-conan-serpent-war-the-valley-of-the/4050-123270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123271/", + "id": 123271, + "name": "True Believers: Star Wars: According To the Droids", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-according-to-the-droids/4050-123271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123272/", + "id": 123272, + "name": "True Believers: Star Wars: Death Probe!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-death-probe/4050-123272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123273/", + "id": 123273, + "name": "True Believers: Star Wars: Hutt Run", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-hutt-run/4050-123273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123274/", + "id": 123274, + "name": "True Believers: Star Wars: The Hunter!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-the-hunter/4050-123274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123275/", + "id": 123275, + "name": "True Believers: Star Wars: Vader vs. Leia!", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-star-wars-vader-vs-leia/4050-123275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123276/", + "id": 123276, + "name": "Venom 2099", + "site_detail_url": "https://comicvine.gamespot.com/venom-2099/4050-123276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123277/", + "id": 123277, + "name": "Avengers Epic Collection: The Gatherers Strike!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-gatherers-strike/4050-123277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123278/", + "id": 123278, + "name": "Avengers vs. Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-fantastic-four/4050-123278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123279/", + "id": 123279, + "name": "Champions by Jim Zub: Give and Take", + "site_detail_url": "https://comicvine.gamespot.com/champions-by-jim-zub-give-and-take/4050-123279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123280/", + "id": 123280, + "name": "Daredevil by Chip Zdarsky: No Devils, Only God", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-no-devils-only-god/4050-123280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123281/", + "id": 123281, + "name": "Ditko Is... Amazing!", + "site_detail_url": "https://comicvine.gamespot.com/ditko-is-amazing/4050-123281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123282/", + "id": 123282, + "name": "Iron Man: The Mask In the Iron Man Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-mask-in-the-iron-man-omnibus/4050-123282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123283/", + "id": 123283, + "name": "The Spectacular Spider-Man: Lo, This Monster", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-lo-this-monster/4050-123283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123284/", + "id": 123284, + "name": "Thor: The God Butcher Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/thor-the-god-butcher-marvel-select/4050-123284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123401/", + "id": 123401, + "name": "Giant-Size Defenders #3: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-defenders-3-facsimile-edition/4050-123401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123402/", + "id": 123402, + "name": "True Believers: Annihilation: Annihilus", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-annihilus/4050-123402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123403/", + "id": 123403, + "name": "True Believers: Annihilation: Man-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-man-wolf/4050-123403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123404/", + "id": 123404, + "name": "True Believers: Annihilation: Nova", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-nova/4050-123404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123405/", + "id": 123405, + "name": "True Believers: Annihilation: Omega the Unknown", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-omega-the-unknown/4050-123405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123406/", + "id": 123406, + "name": "True Believers: Annihilation: Quasar", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-quasar/4050-123406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123407/", + "id": 123407, + "name": "Annihilation - Scourge: Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge-beta-ray-bill/4050-123407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123408/", + "id": 123408, + "name": "Annihilation - Scourge: Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge-silver-surfer/4050-123408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123409/", + "id": 123409, + "name": "Doom 2099", + "site_detail_url": "https://comicvine.gamespot.com/doom-2099/4050-123409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123410/", + "id": 123410, + "name": "Marvel's Avengers: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-iron-man/4050-123410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123411/", + "id": 123411, + "name": "Spider-Man 2099", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099/4050-123411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123412/", + "id": 123412, + "name": "Symbiote Spider-Man: Alien Reality", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality/4050-123412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123413/", + "id": 123413, + "name": "House of X/Powers of X", + "site_detail_url": "https://comicvine.gamespot.com/house-of-xpowers-of-x/4050-123413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123414/", + "id": 123414, + "name": "Marvel Monograph: The Art of Ed McGuinness: Deadpool & His Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-ed-mcguinness-deadpool/4050-123414/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123415/", + "id": 123415, + "name": "Silver Surfer: Black Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-black-treasury-edition/4050-123415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123416/", + "id": 123416, + "name": "Star Wars: Doctor Aphra: Unspeakable Rebel Superweapon", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-unspeakable-rebel-superweap/4050-123416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123417/", + "id": 123417, + "name": "Tigra: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/tigra-the-complete-collection/4050-123417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123418/", + "id": 123418, + "name": "X-Force Epic Collection: X-Cutioner's Song", + "site_detail_url": "https://comicvine.gamespot.com/x-force-epic-collection-x-cutioners-song/4050-123418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123419/", + "id": 123419, + "name": "X-Men: Reload By Chris Claremont: House of M", + "site_detail_url": "https://comicvine.gamespot.com/x-men-reload-by-chris-claremont-house-of-m/4050-123419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123420/", + "id": 123420, + "name": "X-Men: Shattershot", + "site_detail_url": "https://comicvine.gamespot.com/x-men-shattershot/4050-123420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123691/", + "id": 123691, + "name": "2099 Omega", + "site_detail_url": "https://comicvine.gamespot.com/2099-omega/4050-123691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123702/", + "id": 123702, + "name": "Eternals #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/eternals-1-facsimile-edition/4050-123702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123703/", + "id": 123703, + "name": "True Believers: Annihilation: Mantis", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-mantis/4050-123703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123704/", + "id": 123704, + "name": "True Believers: Annihilation: Moondragon", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-moondragon/4050-123704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123705/", + "id": 123705, + "name": "True Believers: Annihilation: Odinpower", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-odinpower/4050-123705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123706/", + "id": 123706, + "name": "True Believers: Annihilation: The Super-Adaptoid", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-the-super-adaptoid/4050-123706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123707/", + "id": 123707, + "name": "True Believers: Annihilation: Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-annihilation-super-skrull/4050-123707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123709/", + "id": 123709, + "name": "Annihilation - Scourge Omega", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge-omega/4050-123709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123710/", + "id": 123710, + "name": "The Eternals: Secrets From The Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/the-eternals-secrets-from-the-marvel-universe/4050-123710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123711/", + "id": 123711, + "name": "Marvel Tales: Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-annihilation/4050-123711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123712/", + "id": 123712, + "name": "Revenge of the Cosmic Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/revenge-of-the-cosmic-ghost-rider/4050-123712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123713/", + "id": 123713, + "name": "Star Wars: Empire Ascendant", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-empire-ascendant/4050-123713/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123714/", + "id": 123714, + "name": "Star Wars: The Rise of Kylo Ren", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-rise-of-kylo-ren/4050-123714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123715/", + "id": 123715, + "name": "Dead Man Logan: Welcome Back, Logan", + "site_detail_url": "https://comicvine.gamespot.com/dead-man-logan-welcome-back-logan/4050-123715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123716/", + "id": 123716, + "name": "Death's Head: Clone Drive", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-clone-drive/4050-123716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123717/", + "id": 123717, + "name": "Defenders Epic Collection: The End of All Songs", + "site_detail_url": "https://comicvine.gamespot.com/defenders-epic-collection-the-end-of-all-songs/4050-123717/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123718/", + "id": 123718, + "name": "Iron Man: Invincible Origins", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-invincible-origins/4050-123718/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123719/", + "id": 123719, + "name": "Loki: Agent of Asgard: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/loki-agent-of-asgard-the-complete-collection/4050-123719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123720/", + "id": 123720, + "name": "Marvel Strike Force: The Art of the Game", + "site_detail_url": "https://comicvine.gamespot.com/marvel-strike-force-the-art-of-the-game/4050-123720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123721/", + "id": 123721, + "name": "Moon Girl and Devil Dinosaur: Yancy Street Legends", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-yancy-street-legends/4050-123721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123722/", + "id": 123722, + "name": "Superior Spider-Man: Otto-Matic", + "site_detail_url": "https://comicvine.gamespot.com/superior-spider-man-otto-matic/4050-123722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123723/", + "id": 123723, + "name": "The Unbeatable Squirrel Girl: Powers of A Squirrel", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-powers-of-a-squirrel/4050-123723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123724/", + "id": 123724, + "name": "Uncanny Origins: Myth & Magic", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-origins-myth-and-magic/4050-123724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123725/", + "id": 123725, + "name": "X-Men Milestones: Phalanx Covenant", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-phalanx-covenant/4050-123725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123726/", + "id": 123726, + "name": "X-Men: Summers and Winter", + "site_detail_url": "https://comicvine.gamespot.com/x-men-summers-and-winter/4050-123726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123732/", + "id": 123732, + "name": "Ultimate X-Men Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-x-men-collection/4050-123732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123765/", + "id": 123765, + "name": "Dr. Strange", + "site_detail_url": "https://comicvine.gamespot.com/dr-strange/4050-123765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123766/", + "id": 123766, + "name": "Incoming!", + "site_detail_url": "https://comicvine.gamespot.com/incoming/4050-123766/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123767/", + "id": 123767, + "name": "Marvel 2020 Calendar", + "site_detail_url": "https://comicvine.gamespot.com/marvel-2020-calendar/4050-123767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123768/", + "id": 123768, + "name": "Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham/4050-123768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123857/", + "id": 123857, + "name": "True Believers: The Criminally Insane: Bullseye", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-bullseye/4050-123857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123858/", + "id": 123858, + "name": "True Believers: The Criminally Insane: Green Goblin", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-green-goblin/4050-123858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123859/", + "id": 123859, + "name": "Hawkeye: Freefall", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-freefall/4050-123859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123860/", + "id": 123860, + "name": "Star Wars", + "site_detail_url": "https://comicvine.gamespot.com/star-wars/4050-123860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123861/", + "id": 123861, + "name": "Tarot", + "site_detail_url": "https://comicvine.gamespot.com/tarot/4050-123861/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123862/", + "id": 123862, + "name": "Thor", + "site_detail_url": "https://comicvine.gamespot.com/thor/4050-123862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123863/", + "id": 123863, + "name": "Amazing Spider-Man by Nick Spencer: Absolute Carnage", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-absolute-carnag/4050-123863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123864/", + "id": 123864, + "name": "Black Bolt", + "site_detail_url": "https://comicvine.gamespot.com/black-bolt/4050-123864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123865/", + "id": 123865, + "name": "Black Cat: Grand Theft Marvel", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-grand-theft-marvel/4050-123865/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123866/", + "id": 123866, + "name": "Conan Chronicles Epic Collection: The Battle of Shamla Pass", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-the-battle-of-sha/4050-123866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123867/", + "id": 123867, + "name": "Conan: The Hour of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-hour-of-the-dragon/4050-123867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123868/", + "id": 123868, + "name": "Legends of Marvel: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-marvel-spider-man/4050-123868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123869/", + "id": 123869, + "name": "Miles Morales: Bring On the Bad Guys", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-bring-on-the-bad-guys/4050-123869/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123870/", + "id": 123870, + "name": "Moon Girl and Devil Dinosaur: Full Moon", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-full-moon/4050-123870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123871/", + "id": 123871, + "name": "Oz: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection/4050-123871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124121/", + "id": 124121, + "name": "True Believers: The Criminally Insane: Bushman", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-bushman/4050-124121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124122/", + "id": 124122, + "name": "True Believers: The Criminally Insane: Masters of Evil", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-masters-of-ev/4050-124122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124123/", + "id": 124123, + "name": "Marvel's Avengers: Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-thor/4050-124123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124124/", + "id": 124124, + "name": "Marvels X", + "site_detail_url": "https://comicvine.gamespot.com/marvels-x/4050-124124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124125/", + "id": 124125, + "name": "Miles Morales: The End", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-the-end/4050-124125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124126/", + "id": 124126, + "name": "Ruins of Ravencroft: Carnage", + "site_detail_url": "https://comicvine.gamespot.com/ruins-of-ravencroft-carnage/4050-124126/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124127/", + "id": 124127, + "name": "Star", + "site_detail_url": "https://comicvine.gamespot.com/star/4050-124127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124130/", + "id": 124130, + "name": "Absolute Carnage", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage/4050-124130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124131/", + "id": 124131, + "name": "Absolute Carnage vs. Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-vs-deadpool/4050-124131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124132/", + "id": 124132, + "name": "Black Panther: The Intergalactic Empire of Wakanda Part Three", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-intergalactic-empire-of-wakanda-/4050-124132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124133/", + "id": 124133, + "name": "Black Widow: Welcome To The Game", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-welcome-to-the-game/4050-124133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124134/", + "id": 124134, + "name": "Captain Marvel: Falling Star", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-falling-star/4050-124134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124135/", + "id": 124135, + "name": "Doctor Strange by Mark Waid: The Choice", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-by-mark-waid-the-choice/4050-124135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124136/", + "id": 124136, + "name": "Loki: The God Who Fell To Earth", + "site_detail_url": "https://comicvine.gamespot.com/loki-the-god-who-fell-to-earth/4050-124136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124137/", + "id": 124137, + "name": "Marvel Monograph: The Art of Declan Shalvey", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-declan-shalvey/4050-124137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124138/", + "id": 124138, + "name": "New Avengers: Breakout Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-breakout-marvel-select/4050-124138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124161/", + "id": 124161, + "name": "Ultimate Spider-Man Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-spider-man-collection/4050-124161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124224/", + "id": 124224, + "name": "Playmates Toys", + "site_detail_url": "https://comicvine.gamespot.com/playmates-toys/4050-124224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124269/", + "id": 124269, + "name": "The Incredible Hulk #180: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-incredible-hulk-180-facsimile-edition/4050-124269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124270/", + "id": 124270, + "name": "Marvel Tales: Ravencroft", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-ravencroft/4050-124270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124271/", + "id": 124271, + "name": "True Believers: The Criminally Insane: Gypsy Moth", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-gypsy-moth/4050-124271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124272/", + "id": 124272, + "name": "True Believers: The Criminally Insane: Mandarin", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-mandarin/4050-124272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124275/", + "id": 124275, + "name": "Iron Manual 2020 Primer", + "site_detail_url": "https://comicvine.gamespot.com/iron-manual-2020-primer/4050-124275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124276/", + "id": 124276, + "name": "Iron Man 2020", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020/4050-124276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124277/", + "id": 124277, + "name": "Jessica Jones: Blind Spot", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones-blind-spot/4050-124277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124278/", + "id": 124278, + "name": "Marvel's Black Widow Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-black-widow-prelude/4050-124278/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124279/", + "id": 124279, + "name": "Marvel's Spider-Man: The Black Cat Strikes", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes/4050-124279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124280/", + "id": 124280, + "name": "Ruins of Ravencroft: Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/ruins-of-ravencroft-sabretooth/4050-124280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124281/", + "id": 124281, + "name": "Venom: The End", + "site_detail_url": "https://comicvine.gamespot.com/venom-the-end/4050-124281/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124282/", + "id": 124282, + "name": "Absolute Carnage: Immortal Hulk and Other Tales", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-immortal-hulk-and-other-tales/4050-124282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124283/", + "id": 124283, + "name": "Absolute Carnage: Lethal Protectors", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-lethal-protectors/4050-124283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124284/", + "id": 124284, + "name": "Absolute Carnage: Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-miles-morales/4050-124284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124285/", + "id": 124285, + "name": "Absolute Carnage: Scream", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-scream/4050-124285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124286/", + "id": 124286, + "name": "Acts of Evil!", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-evil/4050-124286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124287/", + "id": 124287, + "name": "The Amazing Spider-Man Epic Collection: Maximum Carnage", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-maximum-car/4050-124287/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124288/", + "id": 124288, + "name": "Contagion", + "site_detail_url": "https://comicvine.gamespot.com/contagion/4050-124288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124289/", + "id": 124289, + "name": "Crazy", + "site_detail_url": "https://comicvine.gamespot.com/crazy/4050-124289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124290/", + "id": 124290, + "name": "Incredible Hulk By Peter David Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-by-peter-david-omnibus/4050-124290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124291/", + "id": 124291, + "name": "Savage Sword of Conan: Conan the Gambler", + "site_detail_url": "https://comicvine.gamespot.com/savage-sword-of-conan-conan-the-gambler/4050-124291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124292/", + "id": 124292, + "name": "Star Wars: The Original Trilogy: The Movie Adaptations", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-original-trilogy-the-movie-adaptatio/4050-124292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124413/", + "id": 124413, + "name": "X-Statix: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-statix-the-complete-collection/4050-124413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124444/", + "id": 124444, + "name": "True Believers: The Criminally Insane: Dracula", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-dracula/4050-124444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124445/", + "id": 124445, + "name": "True Believers: The Criminally Insane: Purple Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-purple-man/4050-124445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124446/", + "id": 124446, + "name": "Atlantis Attacks", + "site_detail_url": "https://comicvine.gamespot.com/atlantis-attacks/4050-124446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124447/", + "id": 124447, + "name": "Guardians of the Galaxy", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-124447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124448/", + "id": 124448, + "name": "Ruins of Ravencroft: Dracula", + "site_detail_url": "https://comicvine.gamespot.com/ruins-of-ravencroft-dracula/4050-124448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124449/", + "id": 124449, + "name": "Web of Venom: The Good Son", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-the-good-son/4050-124449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124453/", + "id": 124453, + "name": "Captain America: Sam Wilson: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sam-wilson-the-complete-collection/4050-124453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124454/", + "id": 124454, + "name": "Invisible Woman: Partners In Crime", + "site_detail_url": "https://comicvine.gamespot.com/invisible-woman-partners-in-crime/4050-124454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124455/", + "id": 124455, + "name": "Ironheart: Ten Rings", + "site_detail_url": "https://comicvine.gamespot.com/ironheart-ten-rings/4050-124455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124456/", + "id": 124456, + "name": "Punisher Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/punisher-kill-krew/4050-124456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124457/", + "id": 124457, + "name": "Star Wars Legends: Forever Crimson", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-forever-crimson/4050-124457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124458/", + "id": 124458, + "name": "Valkyrie: Jane Foster: The Sacred and the Profane", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie-jane-foster-the-sacred-and-the-profane/4050-124458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124459/", + "id": 124459, + "name": "X-Men Milestones: Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-onslaught/4050-124459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124630/", + "id": 124630, + "name": "Fantastic Four: Grand Design", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-grand-design/4050-124630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124631/", + "id": 124631, + "name": "Amazing Spider-Man #347: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-347-facsimile-edition/4050-124631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124632/", + "id": 124632, + "name": "Fantastic Four Annual #6: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-annual-6-facsimile-edition/4050-124632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124633/", + "id": 124633, + "name": "True Believers: The Criminally Insane: Absorbing Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-absorbing-man/4050-124633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124634/", + "id": 124634, + "name": "True Believers: The Criminally Insane: Klaw", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-the-criminally-insane-klaw/4050-124634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124635/", + "id": 124635, + "name": "Wolverine vs. Sabretooth 3D", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-vs-sabretooth-3d/4050-124635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124676/", + "id": 124676, + "name": "Amazing Spider-Man: Daily Bugle", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-daily-bugle/4050-124676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124677/", + "id": 124677, + "name": "Avengers of the Wastelands", + "site_detail_url": "https://comicvine.gamespot.com/avengers-of-the-wastelands/4050-124677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124678/", + "id": 124678, + "name": "Captain Marvel: The End", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-end/4050-124678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124679/", + "id": 124679, + "name": "Deadpool: The End", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-end/4050-124679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124680/", + "id": 124680, + "name": "Doctor Strange: The End", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-end/4050-124680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124681/", + "id": 124681, + "name": "Ravencroft", + "site_detail_url": "https://comicvine.gamespot.com/ravencroft/4050-124681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124682/", + "id": 124682, + "name": "Weapon Plus: World War IV", + "site_detail_url": "https://comicvine.gamespot.com/weapon-plus-world-war-iv/4050-124682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124684/", + "id": 124684, + "name": "Acts of Vengeance: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-avengers/4050-124684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124685/", + "id": 124685, + "name": "Avengers by Jason Aaron: Challenge of the Ghost Riders", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-challenge-of-the-ghost-rid/4050-124685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124686/", + "id": 124686, + "name": "Black Widow: Widowmaker", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-widowmaker/4050-124686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124687/", + "id": 124687, + "name": "Friendly Neighborhood Spider-Man: Hostile Takeovers", + "site_detail_url": "https://comicvine.gamespot.com/friendly-neighborhood-spider-man-hostile-takeovers/4050-124687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124688/", + "id": 124688, + "name": "Marvels Spider-Man Script Book", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-script-book/4050-124688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124689/", + "id": 124689, + "name": "Marvel-Verse: Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-black-panther/4050-124689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124814/", + "id": 124814, + "name": "True Believers: Iron Man 2020: Pepper Potts", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-iron-man-2020-pepper-potts/4050-124814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124815/", + "id": 124815, + "name": "Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/ant-man/4050-124815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124816/", + "id": 124816, + "name": "Captain America: The End", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-the-end/4050-124816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124817/", + "id": 124817, + "name": "Conan: Battle For the Serpent Crown", + "site_detail_url": "https://comicvine.gamespot.com/conan-battle-for-the-serpent-crown/4050-124817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124818/", + "id": 124818, + "name": "Dark Agnes", + "site_detail_url": "https://comicvine.gamespot.com/dark-agnes/4050-124818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124819/", + "id": 124819, + "name": "The Immortal Hulk: Great Power", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-great-power/4050-124819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124820/", + "id": 124820, + "name": "Marvel's Avengers: Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-hulk/4050-124820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124821/", + "id": 124821, + "name": "Star Wars: Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader/4050-124821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124822/", + "id": 124822, + "name": "X-Men/Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/x-menfantastic-four/4050-124822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124879/", + "id": 124879, + "name": "Adventures of the X-Men: Tooth & Claw", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-the-x-men-tooth-and-claw/4050-124879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124880/", + "id": 124880, + "name": "Agents of Atlas: Pandemonium", + "site_detail_url": "https://comicvine.gamespot.com/agents-of-atlas-pandemonium/4050-124880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124881/", + "id": 124881, + "name": "Black Panther Postcard Book", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-postcard-book/4050-124881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124882/", + "id": 124882, + "name": "Ghost-Spider: Dog Days Are Over", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-dog-days-are-over/4050-124882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124883/", + "id": 124883, + "name": "Old Man Quill: Go Your Own Way", + "site_detail_url": "https://comicvine.gamespot.com/old-man-quill-go-your-own-way/4050-124883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124884/", + "id": 124884, + "name": "The Punisher Epic Collection: Jigsaw Puzzle", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-epic-collection-jigsaw-puzzle/4050-124884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124885/", + "id": 124885, + "name": "Star Wars: Age of Republic", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-republic/4050-124885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124886/", + "id": 124886, + "name": "Sword Master: War of the Ancients", + "site_detail_url": "https://comicvine.gamespot.com/sword-master-war-of-the-ancients/4050-124886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124887/", + "id": 124887, + "name": "Venom by Donny Cates: Absolute Carnage", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates-absolute-carnage/4050-124887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124888/", + "id": 124888, + "name": "X-Men Vs. Apocalypse: The Twelve Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-vs-apocalypse-the-twelve-omnibus/4050-124888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124906/", + "id": 124906, + "name": "Marvel Chillers Saga of the Alien Costume", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-saga-of-the-alien-costume/4050-124906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124907/", + "id": 124907, + "name": "Marvel Chillers The Pryde and Terror of The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-the-pryde-and-terror-of-the-x-men/4050-124907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124908/", + "id": 124908, + "name": "Marvel Chillers The Frightful Four", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-the-frightful-four/4050-124908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124909/", + "id": 124909, + "name": "Marvel Chillers Shades of Green Monsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-shades-of-green-monsters/4050-124909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124910/", + "id": 124910, + "name": "Marvel Chillers Spider-Man and the Mark of the Man-Wolf", + "site_detail_url": "https://comicvine.gamespot.com/marvel-chillers-spider-man-and-the-mark-of-the-man/4050-124910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124928/", + "id": 124928, + "name": "Fun House ", + "site_detail_url": "https://comicvine.gamespot.com/fun-house/4050-124928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124984/", + "id": 124984, + "name": "Marvel Tales: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-wolverine/4050-124984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124985/", + "id": 124985, + "name": "True Believers: Iron Man 2020: Albert & Elsie-Dee", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-iron-man-2020-albert-and-elsie-dee/4050-124985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124986/", + "id": 124986, + "name": "True Believers: Iron Man 2020: Arno Stark", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-iron-man-2020-arno-stark/4050-124986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124987/", + "id": 124987, + "name": "Wolverine By Claremont & Miller #1 Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-claremont-and-miller-1-facsimile-edit/4050-124987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124988/", + "id": 124988, + "name": "Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/gwen-stacy/4050-124988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124989/", + "id": 124989, + "name": "Nebula", + "site_detail_url": "https://comicvine.gamespot.com/nebula/4050-124989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124990/", + "id": 124990, + "name": "Spirits of Ghost Rider: Mother of Demons", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-ghost-rider-mother-of-demons/4050-124990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124991/", + "id": 124991, + "name": "Aero: Before The Storm", + "site_detail_url": "https://comicvine.gamespot.com/aero-before-the-storm/4050-124991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124992/", + "id": 124992, + "name": "Age of Conan: Valeria", + "site_detail_url": "https://comicvine.gamespot.com/age-of-conan-valeria/4050-124992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124993/", + "id": 124993, + "name": "Amazing Spider-Man Epic Collection: The Secret of the Petrified Tablet", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-the-secret-of-t/4050-124993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124994/", + "id": 124994, + "name": "Black Panther: Visions of Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-visions-of-wakanda/4050-124994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124995/", + "id": 124995, + "name": "Black Widow Epic Collection: Beware the Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-epic-collection-beware-the-black-widow/4050-124995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124996/", + "id": 124996, + "name": "Dawn of X", + "site_detail_url": "https://comicvine.gamespot.com/dawn-of-x/4050-124996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124997/", + "id": 124997, + "name": "The Life of Captain Marvel Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/the-life-of-captain-marvel-marvel-select/4050-124997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124998/", + "id": 124998, + "name": "Miles Morales: Great Responsibility", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-great-responsibility/4050-124998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-124999/", + "id": 124999, + "name": "Spider-Man: Miles Morales Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-miles-morales-omnibus/4050-124999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125000/", + "id": 125000, + "name": "Star Wars: Doctor Aphra: A Rogue's End", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-a-rogues-end/4050-125000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125001/", + "id": 125001, + "name": "Star Wars: Target Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-target-vader/4050-125001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125002/", + "id": 125002, + "name": "Ultimates By Mark Millar & Bryan Hitch Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-by-mark-millar-and-bryan-hitch-omnibus/4050-125002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125117/", + "id": 125117, + "name": "True Believers: Iron Man 2020: Jocasta", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-iron-man-2020-jocasta/4050-125117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125118/", + "id": 125118, + "name": "Wolverine: Through The Years Primer", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-through-the-years-primer/4050-125118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125119/", + "id": 125119, + "name": "2020 Machine Man", + "site_detail_url": "https://comicvine.gamespot.com/2020-machine-man/4050-125119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125120/", + "id": 125120, + "name": "Marvel's Voices", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices/4050-125120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125121/", + "id": 125121, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-125121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125191/", + "id": 125191, + "name": "Death's Head: Freelance Peacekeeping Agent", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-freelance-peacekeeping-agent/4050-125191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125192/", + "id": 125192, + "name": "Guardians of the Galaxy: Faithless", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-faithless/4050-125192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125193/", + "id": 125193, + "name": "Gwenpool Strikes Back", + "site_detail_url": "https://comicvine.gamespot.com/gwenpool-strikes-back/4050-125193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125194/", + "id": 125194, + "name": "Marvel's Spider-Man: Velocity", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-velocity/4050-125194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125195/", + "id": 125195, + "name": "Tales Through The Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/tales-through-the-marvel-universe/4050-125195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125196/", + "id": 125196, + "name": "Taskmaster: Anything You Can Do...", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster-anything-you-can-do/4050-125196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125296/", + "id": 125296, + "name": "Marvel Sampler February 2020", + "site_detail_url": "https://comicvine.gamespot.com/marvel-sampler-february-2020/4050-125296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125297/", + "id": 125297, + "name": "True Believers: Iron Man 2020: War Machine", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-iron-man-2020-war-machine/4050-125297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125298/", + "id": 125298, + "name": "Wolverine By Claremont & Buscema #1 Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-claremont-and-buscema-1-facsimile-edi/4050-125298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125299/", + "id": 125299, + "name": "2020 Force Works", + "site_detail_url": "https://comicvine.gamespot.com/2020-force-works/4050-125299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125300/", + "id": 125300, + "name": "Falcon & Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/falcon-and-winter-soldier/4050-125300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125301/", + "id": 125301, + "name": "Fantastic Four: Grimm Noir", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-grimm-noir/4050-125301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125302/", + "id": 125302, + "name": "Giant-Size X-Men: Jean Grey and Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-jean-grey-and-emma-frost/4050-125302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125354/", + "id": 125354, + "name": "Blade by Marc Guggenheim: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/blade-by-marc-guggenheim-the-complete-collection/4050-125354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125355/", + "id": 125355, + "name": "Excalibur Epic Collection: Curiouser and Curiouser", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-epic-collection-curiouser-and-curiouser/4050-125355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125356/", + "id": 125356, + "name": "Future Foundation", + "site_detail_url": "https://comicvine.gamespot.com/future-foundation/4050-125356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125357/", + "id": 125357, + "name": "Invaders: Dead In the Water", + "site_detail_url": "https://comicvine.gamespot.com/invaders-dead-in-the-water/4050-125357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125358/", + "id": 125358, + "name": "Legends of Marvel: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-marvel-x-men/4050-125358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125359/", + "id": 125359, + "name": "Marvel Monograph: The Art of Arthur Adams: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-arthur-adams-x-men/4050-125359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125360/", + "id": 125360, + "name": "Marvel Portfolio: Joe Quesada", + "site_detail_url": "https://comicvine.gamespot.com/marvel-portfolio-joe-quesada/4050-125360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125361/", + "id": 125361, + "name": "Strikeforce: Trust Me", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-trust-me/4050-125361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125362/", + "id": 125362, + "name": "The Unbeatable Squirrel Girl: To All the Squirrels I've Loved Before", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-to-all-the-squirrels-/4050-125362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125363/", + "id": 125363, + "name": "Wolverine: The Daughter of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-the-daughter-of-wolverine/4050-125363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125364/", + "id": 125364, + "name": "X-Men Milestones: Operation Zero Tolerance", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-operation-zero-tolerance/4050-125364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125395/", + "id": 125395, + "name": "Werewolf by Night: In the Blood", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-in-the-blood/4050-125395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125471/", + "id": 125471, + "name": "Black Widow Postcard Book", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-postcard-book/4050-125471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125472/", + "id": 125472, + "name": "True Believers: Empyre: Mantis", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-mantis/4050-125472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125473/", + "id": 125473, + "name": "True Believers: Empyre: Mar-Vell", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-mar-vell/4050-125473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125474/", + "id": 125474, + "name": "2020 Rescue", + "site_detail_url": "https://comicvine.gamespot.com/2020-rescue/4050-125474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125475/", + "id": 125475, + "name": "Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel/4050-125475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125476/", + "id": 125476, + "name": "Spider-Man Noir", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir/4050-125476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125477/", + "id": 125477, + "name": "Strange Academy", + "site_detail_url": "https://comicvine.gamespot.com/strange-academy/4050-125477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125480/", + "id": 125480, + "name": "Black Widow by Waid & Samnee: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-by-waid-and-samnee-the-complete-collec/4050-125480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125481/", + "id": 125481, + "name": "Marvel Comics 1000 Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1000-collection/4050-125481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125482/", + "id": 125482, + "name": "Power Pack Classic Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-classic-omnibus/4050-125482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125483/", + "id": 125483, + "name": "Web of Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/web-of-black-widow/4050-125483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125592/", + "id": 125592, + "name": "Paradise X", + "site_detail_url": "https://comicvine.gamespot.com/paradise-x/4050-125592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125672/", + "id": 125672, + "name": "Marvel Monograph: The Art of Chris Bachalo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-chris-bachalo/4050-125672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125673/", + "id": 125673, + "name": "Marvel Tales: Silver Surfer", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-silver-surfer/4050-125673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125674/", + "id": 125674, + "name": "Thor #229: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/thor-229-facsimile-edition/4050-125674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125675/", + "id": 125675, + "name": "True Believers: Empyre: Anelle", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-anelle/4050-125675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125676/", + "id": 125676, + "name": "True Believers: Empyre: Hulking", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-hulking/4050-125676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125677/", + "id": 125677, + "name": "True Believers: Empyre: Quoi", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-quoi/4050-125677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125678/", + "id": 125678, + "name": "Cable", + "site_detail_url": "https://comicvine.gamespot.com/cable/4050-125678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125679/", + "id": 125679, + "name": "Star Wars: Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-bounty-hunters/4050-125679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125680/", + "id": 125680, + "name": "Sub-Mariner: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/sub-mariner-marvels-snapshots/4050-125680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125683/", + "id": 125683, + "name": "Annihilation: Scourge", + "site_detail_url": "https://comicvine.gamespot.com/annihilation-scourge/4050-125683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125684/", + "id": 125684, + "name": "Black Widow: Marvel Team-Up", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-marvel-team-up/4050-125684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125685/", + "id": 125685, + "name": "Fantastic Four: Thing vs. Immortal Hulk", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-thing-vs-immortal-hulk/4050-125685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125686/", + "id": 125686, + "name": "History of the Marvel Universe Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe-treasury-edition/4050-125686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125687/", + "id": 125687, + "name": "Legends of Marvel: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-marvel-avengers/4050-125687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125688/", + "id": 125688, + "name": "Rocket Raccoon and Groot: Tall Tails", + "site_detail_url": "https://comicvine.gamespot.com/rocket-raccoon-and-groot-tall-tails/4050-125688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125689/", + "id": 125689, + "name": "Wolverine Epic Collection: Inner Fury", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-inner-fury/4050-125689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125807/", + "id": 125807, + "name": "True Believers: Empyre: Galactus", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-galactus/4050-125807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125808/", + "id": 125808, + "name": "True Believers: Empyre: Swordsman", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-swordsman/4050-125808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125809/", + "id": 125809, + "name": "2020 Iron Age", + "site_detail_url": "https://comicvine.gamespot.com/2020-iron-age/4050-125809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125810/", + "id": 125810, + "name": "Marvel's Avengers: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-captain-america/4050-125810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125811/", + "id": 125811, + "name": "Outlawed", + "site_detail_url": "https://comicvine.gamespot.com/outlawed/4050-125811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125812/", + "id": 125812, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4050-125812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125814/", + "id": 125814, + "name": "Black Panther and the Agents of Wakanda: Eye of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-and-the-agents-of-wakanda-eye-of-the/4050-125814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125815/", + "id": 125815, + "name": "Captain America Epic Collection: Blood and Glory", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-blood-and-glory/4050-125815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125816/", + "id": 125816, + "name": "Captain America: Winter Soldier Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-winter-soldier-marvel-select/4050-125816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125817/", + "id": 125817, + "name": "Immortal Hulk: We Believe In Bruce Banner", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-we-believe-in-bruce-banner/4050-125817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125818/", + "id": 125818, + "name": "King Thor", + "site_detail_url": "https://comicvine.gamespot.com/king-thor/4050-125818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125819/", + "id": 125819, + "name": "Marvel Masterworks: Dazzler", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-dazzler/4050-125819/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125820/", + "id": 125820, + "name": "Marvels 25th Anniversary", + "site_detail_url": "https://comicvine.gamespot.com/marvels-25th-anniversary/4050-125820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125821/", + "id": 125821, + "name": "Star Wars: Rogues and Rebels", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-rogues-and-rebels/4050-125821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125822/", + "id": 125822, + "name": "Taskmaster: The Right Price", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster-the-right-price/4050-125822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125823/", + "id": 125823, + "name": "X-Men/Avengers: Onslaught", + "site_detail_url": "https://comicvine.gamespot.com/x-menavengers-onslaught/4050-125823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125824/", + "id": 125824, + "name": "X-Men Milestones: Messiah Complex", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-messiah-complex/4050-125824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126009/", + "id": 126009, + "name": "Incredible Hulk #182: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-182-facsimile-edition/4050-126009/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126010/", + "id": 126010, + "name": "True Believers: Empyre: Lyja", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-lyja/4050-126010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126011/", + "id": 126011, + "name": "True Believers: Empyre: She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-she-hulk/4050-126011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126012/", + "id": 126012, + "name": "True Believers: Empyre: Vision", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-vision/4050-126012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126013/", + "id": 126013, + "name": "Fantastic Four: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-marvels-snapshots/4050-126013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126014/", + "id": 126014, + "name": "Giant-Size X-Men: Nightcrawler", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-nightcrawler/4050-126014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126015/", + "id": 126015, + "name": "Hellions", + "site_detail_url": "https://comicvine.gamespot.com/hellions/4050-126015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126016/", + "id": 126016, + "name": "Marvel's Avengers: Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-black-widow/4050-126016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126017/", + "id": 126017, + "name": "Road To Empyre: The Kree/Skrull War", + "site_detail_url": "https://comicvine.gamespot.com/road-to-empyre-the-kreeskrull-war/4050-126017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126037/", + "id": 126037, + "name": "Captain America by Ta-Nehisi Coates", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-ta-nehisi-coates/4050-126037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126038/", + "id": 126038, + "name": "Captain America by Ta-Nehisi Coates: The Legend of Steve", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-ta-nehisi-coates-the-legend-of-/4050-126038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126039/", + "id": 126039, + "name": "Doctor Doom: Pottersville", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom-pottersville/4050-126039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126040/", + "id": 126040, + "name": "Future Fight Firsts", + "site_detail_url": "https://comicvine.gamespot.com/future-fight-firsts/4050-126040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126041/", + "id": 126041, + "name": "New Mutants by Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-by-jonathan-hickman/4050-126041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126042/", + "id": 126042, + "name": "Thor Epic Collection: Into The Dark Nebula", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-into-the-dark-nebula/4050-126042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126152/", + "id": 126152, + "name": "Amazing Spider-Man: Full Circle", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-full-circle/4050-126152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126153/", + "id": 126153, + "name": "Conan: Book of Thoth and Other Stories", + "site_detail_url": "https://comicvine.gamespot.com/conan-book-of-thoth-and-other-stories/4050-126153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126154/", + "id": 126154, + "name": "Ghost Rider: The King of Hell ", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-the-king-of-hell/4050-126154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126155/", + "id": 126155, + "name": "Mephisto: Speak of the Devil", + "site_detail_url": "https://comicvine.gamespot.com/mephisto-speak-of-the-devil/4050-126155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126156/", + "id": 126156, + "name": "Ms. Marvel by Saladin Ahmed: Stormranger", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-by-saladin-ahmed-stormranger/4050-126156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126192/", + "id": 126192, + "name": "Skrulls vs. Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/skrulls-vs-power-pack/4050-126192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126294/", + "id": 126294, + "name": "Iron Man Epic Collection: War Machine", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-war-machine/4050-126294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126295/", + "id": 126295, + "name": "Marvel Monograph: The Art of Frank Cho", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-frank-cho/4050-126295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126296/", + "id": 126296, + "name": "Marvel-Verse: Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-black-widow/4050-126296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126297/", + "id": 126297, + "name": "Marvel's Black Widow Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvels-black-widow-prelude/4050-126297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126298/", + "id": 126298, + "name": "Spider-Man & Venom: Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-venom-double-trouble/4050-126298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126299/", + "id": 126299, + "name": "X-Men by Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-jonathan-hickman/4050-126299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126300/", + "id": 126300, + "name": "Squadron Supreme: Hyperion vs Nighthawk", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-hyperion-vs-nighthawk/4050-126300/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126379/", + "id": 126379, + "name": "Amazing Mary Jane: Down In Flames, Up In Smoke", + "site_detail_url": "https://comicvine.gamespot.com/amazing-mary-jane-down-in-flames-up-in-smoke/4050-126379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126380/", + "id": 126380, + "name": "Daredevil by Chip Zdarsky: Through Hell", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-through-hell/4050-126380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126381/", + "id": 126381, + "name": "Death of Wolverine Prelude: Three Months To Die", + "site_detail_url": "https://comicvine.gamespot.com/death-of-wolverine-prelude-three-months-to-die/4050-126381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126382/", + "id": 126382, + "name": "Marauders by Gerry Duggan", + "site_detail_url": "https://comicvine.gamespot.com/marauders-by-gerry-duggan/4050-126382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126383/", + "id": 126383, + "name": "Star Wars: Age of Rebellion", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-rebellion/4050-126383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126384/", + "id": 126384, + "name": "The Unbeatable Squirrel Girl: Big Squirrels Don't Cry", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-big-squirrels-dont-cr/4050-126384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126518/", + "id": 126518, + "name": "Amazing Spider-Man: 2099", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-2099/4050-126518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126519/", + "id": 126519, + "name": "Conan: Serpent War", + "site_detail_url": "https://comicvine.gamespot.com/conan-serpent-war/4050-126519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126520/", + "id": 126520, + "name": "Excalibur by Tini Howard", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-by-tini-howard/4050-126520/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126521/", + "id": 126521, + "name": "Iron Man: The Ultron Agenda", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-ultron-agenda/4050-126521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126522/", + "id": 126522, + "name": "Marvel's Avengers: Road To A-Day", + "site_detail_url": "https://comicvine.gamespot.com/marvels-avengers-road-to-a-day/4050-126522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126523/", + "id": 126523, + "name": "Runaways: Pride & Joy Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/runaways-pride-and-joy-marvel-select/4050-126523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126524/", + "id": 126524, + "name": "Yondu: My Two Yondus", + "site_detail_url": "https://comicvine.gamespot.com/yondu-my-two-yondus/4050-126524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126598/", + "id": 126598, + "name": "Spider-Man: Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-amazing-friends/4050-126598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126599/", + "id": 126599, + "name": "Marvel: The Action Figure Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/marvel-the-action-figure-variant-covers/4050-126599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126600/", + "id": 126600, + "name": "Uncanny X-Men: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/uncanny-x-men-the-variant-covers/4050-126600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126603/", + "id": 126603, + "name": "Avengers: Assault On Armor City", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assault-on-armor-city/4050-126603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126604/", + "id": 126604, + "name": "Hulk: Lifeform", + "site_detail_url": "https://comicvine.gamespot.com/hulk-lifeform/4050-126604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126605/", + "id": 126605, + "name": "Spider-Man: Vibranium Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-vibranium-vendetta/4050-126605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126606/", + "id": 126606, + "name": "Thanos Loses", + "site_detail_url": "https://comicvine.gamespot.com/thanos-loses/4050-126606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126607/", + "id": 126607, + "name": "The Villainous Venom Battles Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-villainous-venom-battles-spider-man/4050-126607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126608/", + "id": 126608, + "name": "Astonishing X-Men Companion", + "site_detail_url": "https://comicvine.gamespot.com/astonishing-x-men-companion/4050-126608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126609/", + "id": 126609, + "name": "Fantastic Four Epic Collection: The Name Is Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-the-name-is-doom/4050-126609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126610/", + "id": 126610, + "name": "Runaways by Rainbow Rowell: Cannon Fodder", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-rainbow-rowell-cannon-fodder/4050-126610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126611/", + "id": 126611, + "name": "X-Men Milestones: Messiah War", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-messiah-war/4050-126611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126612/", + "id": 126612, + "name": "Young Avengers by Gillen & Mckelvie: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-gillen-and-mckelvie-the-complete/4050-126612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126644/", + "id": 126644, + "name": "Star Wars: Doctor Aphra", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra/4050-126644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126701/", + "id": 126701, + "name": "Carnage-ized: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/carnage-ized-the-variant-covers/4050-126701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126702/", + "id": 126702, + "name": "Venomized: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/venomized-the-variant-covers/4050-126702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126703/", + "id": 126703, + "name": "Avengers: 'Nuff Said", + "site_detail_url": "https://comicvine.gamespot.com/avengers-nuff-said/4050-126703/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126704/", + "id": 126704, + "name": "Captain America: Von Strucker Gambit", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-von-strucker-gambit/4050-126704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126705/", + "id": 126705, + "name": "X-Men: Days of Future Present", + "site_detail_url": "https://comicvine.gamespot.com/x-men-days-of-future-present/4050-126705/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126706/", + "id": 126706, + "name": "X-Men: Kings of Pain", + "site_detail_url": "https://comicvine.gamespot.com/x-men-kings-of-pain/4050-126706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126707/", + "id": 126707, + "name": "X-Men: Krakoa Lives", + "site_detail_url": "https://comicvine.gamespot.com/x-men-krakoa-lives/4050-126707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126895/", + "id": 126895, + "name": "Deadpool: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-the-variant-covers/4050-126895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126896/", + "id": 126896, + "name": "Avengers: Subterranean Wars", + "site_detail_url": "https://comicvine.gamespot.com/avengers-subterranean-wars/4050-126896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126897/", + "id": 126897, + "name": "Defenders: Return of the Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders-return-of-the-defenders/4050-126897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126898/", + "id": 126898, + "name": "Fantastic Four: Korvac Quest", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-korvac-quest/4050-126898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126899/", + "id": 126899, + "name": "X-Men: Betrayals", + "site_detail_url": "https://comicvine.gamespot.com/x-men-betrayals/4050-126899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126900/", + "id": 126900, + "name": "X-Men: 'Nuff Said", + "site_detail_url": "https://comicvine.gamespot.com/x-men-nuff-said/4050-126900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127022/", + "id": 127022, + "name": "Avengers and Power Pack Assemble!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-power-pack-assemble/4050-127022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127023/", + "id": 127023, + "name": "Giant-Size Hulk", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-hulk/4050-127023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127118/", + "id": 127118, + "name": "Omega: The Unknown", + "site_detail_url": "https://comicvine.gamespot.com/omega-the-unknown/4050-127118/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127179/", + "id": 127179, + "name": "2020 Ironheart", + "site_detail_url": "https://comicvine.gamespot.com/2020-ironheart/4050-127179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127243/", + "id": 127243, + "name": "The Amazing Spider-Man and Mary Jane: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-and-mary-jane-the-variant-c/4050-127243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127245/", + "id": 127245, + "name": "Bring On The Bad Guys!: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/bring-on-the-bad-guys-the-variant-covers/4050-127245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127273/", + "id": 127273, + "name": "Hulk vs. The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-the-avengers/4050-127273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127274/", + "id": 127274, + "name": "Spider-Man: Spidey's Totally Tiny Adventure", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spideys-totally-tiny-adventure/4050-127274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127275/", + "id": 127275, + "name": "X-Men Weddings", + "site_detail_url": "https://comicvine.gamespot.com/x-men-weddings/4050-127275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127668/", + "id": 127668, + "name": "Sensational She-Hulk by John Byrne Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/sensational-she-hulk-by-john-byrne-omnibus/4050-127668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127669/", + "id": 127669, + "name": "Star Wars: Darth Vader Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-poster-book/4050-127669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127833/", + "id": 127833, + "name": "Mythos", + "site_detail_url": "https://comicvine.gamespot.com/mythos/4050-127833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128101/", + "id": 128101, + "name": "Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews/4050-128101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128102/", + "id": 128102, + "name": "Captain America: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-marvels-snapshots/4050-128102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128103/", + "id": 128103, + "name": "Empyre: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/empyre-avengers/4050-128103/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128226/", + "id": 128226, + "name": "Morbius the Living Vampire Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/morbius-the-living-vampire-omnibus/4050-128226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128243/", + "id": 128243, + "name": "The Amazing Spider-Man Poster Magazine", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-poster-magazine/4050-128243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128306/", + "id": 128306, + "name": "Empyre Magazine", + "site_detail_url": "https://comicvine.gamespot.com/empyre-magazine/4050-128306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128307/", + "id": 128307, + "name": "Infinity Gauntlet Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/infinity-gauntlet-marvel-select/4050-128307/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128308/", + "id": 128308, + "name": "Timely's Greatest: The Golden Age Sub-Mariner: The Post-War Years By Bill Everett", + "site_detail_url": "https://comicvine.gamespot.com/timelys-greatest-the-golden-age-sub-mariner-the-po/4050-128308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128396/", + "id": 128396, + "name": "Star Wars Omnibus: Darth Vader", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-omnibus-darth-vader/4050-128396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128447/", + "id": 128447, + "name": "Empyre: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/empyre-fantastic-four/4050-128447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128448/", + "id": 128448, + "name": "X-Men: God Loves, Man Kills Extended Cut", + "site_detail_url": "https://comicvine.gamespot.com/x-men-god-loves-man-kills-extended-cut/4050-128448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128449/", + "id": 128449, + "name": "Marvel's Spider-Man Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-poster-book/4050-128449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128450/", + "id": 128450, + "name": "Previously In Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/previously-in-marvel-comics/4050-128450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128498/", + "id": 128498, + "name": "ClanDestine: Blood Relative", + "site_detail_url": "https://comicvine.gamespot.com/clandestine-blood-relative/4050-128498/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128607/", + "id": 128607, + "name": "Free Comic Book Day 2020 (X-Men/Dark Ages)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2020-x-mendark-ages/4050-128607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128614/", + "id": 128614, + "name": "2020 iWolverine", + "site_detail_url": "https://comicvine.gamespot.com/2020-iwolverine/4050-128614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128616/", + "id": 128616, + "name": "Empyre", + "site_detail_url": "https://comicvine.gamespot.com/empyre/4050-128616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128617/", + "id": 128617, + "name": "Giant-Size X-Men: Magneto", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-magneto/4050-128617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128640/", + "id": 128640, + "name": "Fantastic Four and Power Pack: Favorite Son", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-and-power-pack-favorite-son/4050-128640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128680/", + "id": 128680, + "name": "Grow Up, Ant-Man!", + "site_detail_url": "https://comicvine.gamespot.com/grow-up-ant-man/4050-128680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128689/", + "id": 128689, + "name": "Captain Marvel: What Makes A Hero", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-what-makes-a-hero/4050-128689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128690/", + "id": 128690, + "name": "First Day of Groot!", + "site_detail_url": "https://comicvine.gamespot.com/first-day-of-groot/4050-128690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128692/", + "id": 128692, + "name": "Marvel: Powers of A Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-powers-of-a-girl/4050-128692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128693/", + "id": 128693, + "name": "Night Night, Groot", + "site_detail_url": "https://comicvine.gamespot.com/night-night-groot/4050-128693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128818/", + "id": 128818, + "name": "The Eternals by Jack Kirby: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/the-eternals-by-jack-kirby-the-complete-collection/4050-128818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128879/", + "id": 128879, + "name": "Amazing Spider-Man: Sins Rising Prelude", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-sins-rising-prelude/4050-128879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128880/", + "id": 128880, + "name": "Empyre: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/empyre-x-men/4050-128880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128881/", + "id": 128881, + "name": "Lords of Empyre: Emperor Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/lords-of-empyre-emperor-hulkling/4050-128881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128891/", + "id": 128891, + "name": "Amazing Spider-Man 2099 Companion", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-2099-companion/4050-128891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128892/", + "id": 128892, + "name": "Avengers by Jason Aaron: Star Brand Reborn", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-star-brand-reborn/4050-128892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128893/", + "id": 128893, + "name": "Iron Man and Power Pack: Armored and Dangerous", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-and-power-pack-armored-and-dangerous/4050-128893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128894/", + "id": 128894, + "name": "Miles Morales: Family Business", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-family-business/4050-128894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128895/", + "id": 128895, + "name": "Ruins of Ravencroft", + "site_detail_url": "https://comicvine.gamespot.com/ruins-of-ravencroft/4050-128895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128896/", + "id": 128896, + "name": "Venom by Donny Cates: Venom Island", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates-venom-island/4050-128896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128897/", + "id": 128897, + "name": "X-Force by Benjamin Percy", + "site_detail_url": "https://comicvine.gamespot.com/x-force-by-benjamin-percy/4050-128897/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128901/", + "id": 128901, + "name": "Free Comic Book Day 2020 (Spider-Man/Venom)", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2020-spider-manvenom/4050-128901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129094/", + "id": 129094, + "name": "Empyre: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/empyre-captain-america/4050-129094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129095/", + "id": 129095, + "name": "Empyre: Savage Avengers", + "site_detail_url": "https://comicvine.gamespot.com/empyre-savage-avengers/4050-129095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129096/", + "id": 129096, + "name": "The Rise of Ultraman Sampler", + "site_detail_url": "https://comicvine.gamespot.com/the-rise-of-ultraman-sampler/4050-129096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129097/", + "id": 129097, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor/4050-129097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129188/", + "id": 129188, + "name": "Adventure Into Fear Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/adventure-into-fear-omnibus/4050-129188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129190/", + "id": 129190, + "name": "Avengers Epic Collection: This Beachhead Earth", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-this-beachhead-earth/4050-129190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129191/", + "id": 129191, + "name": "Avengers: Live Kree Or Die", + "site_detail_url": "https://comicvine.gamespot.com/avengers-live-kree-or-die/4050-129191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129192/", + "id": 129192, + "name": "Marvel-Verse: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-captain-america/4050-129192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129193/", + "id": 129193, + "name": "Ms. Marvel Meets The Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-meets-the-marvel-universe/4050-129193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129195/", + "id": 129195, + "name": "Spider-Verse: Spider-Zero", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-spider-zero/4050-129195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129196/", + "id": 129196, + "name": "Star Wars: The Rise of Kylo Ren", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-rise-of-kylo-ren/4050-129196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129206/", + "id": 129206, + "name": "Spider-Man and Power Pack: Big-City Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-power-pack-big-city-super-heroes/4050-129206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129244/", + "id": 129244, + "name": "Empyre Handbook", + "site_detail_url": "https://comicvine.gamespot.com/empyre-handbook/4050-129244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129245/", + "id": 129245, + "name": "Giant-Size X-Men: Fantomex", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-fantomex/4050-129245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129246/", + "id": 129246, + "name": "Lords of Empyre: Celestial Messiah", + "site_detail_url": "https://comicvine.gamespot.com/lords-of-empyre-celestial-messiah/4050-129246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129248/", + "id": 129248, + "name": "Marvel Tales: Maestro: Future Imperfect", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-maestro-future-imperfect/4050-129248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129249/", + "id": 129249, + "name": "Solomon Kane: The Original Marvel Years Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/solomon-kane-the-original-marvel-years-omnibus/4050-129249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129253/", + "id": 129253, + "name": "Captain Marvel: The Last Avenger", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-last-avenger/4050-129253/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129254/", + "id": 129254, + "name": "Conan the Barbarian Epic Collection: The Original Marvel Years: The Coming of Conan", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-epic-collection-the-original-m/4050-129254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129255/", + "id": 129255, + "name": "Morbius: Old Wounds", + "site_detail_url": "https://comicvine.gamespot.com/morbius-old-wounds/4050-129255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129256/", + "id": 129256, + "name": "Oz: The Complete Collection – Ozma/Dorothy & The Wizard", + "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-ozmadorothy-and-the-wiz/4050-129256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129258/", + "id": 129258, + "name": "Savage Avengers: To Dine With Doom", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-to-dine-with-doom/4050-129258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129259/", + "id": 129259, + "name": "Thor by Jason Aaron", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-jason-aaron/4050-129259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129463/", + "id": 129463, + "name": "Star Wars: The Action Figure Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-action-figure-variant-covers/4050-129463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129471/", + "id": 129471, + "name": "Captain Marvel: The Many Lives of Carol Danvers", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-many-lives-of-carol-danvers/4050-129471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129473/", + "id": 129473, + "name": "Hellstrom: Evil Origins", + "site_detail_url": "https://comicvine.gamespot.com/hellstrom-evil-origins/4050-129473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129476/", + "id": 129476, + "name": "Heroes Reborn: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-captain-america/4050-129476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129477/", + "id": 129477, + "name": "Scream: Curse of Carnage", + "site_detail_url": "https://comicvine.gamespot.com/scream-curse-of-carnage/4050-129477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129478/", + "id": 129478, + "name": "Spider-Gwen: Amazing Powers", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-amazing-powers/4050-129478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129479/", + "id": 129479, + "name": "Spider-Ham: Aporkalypse Now", + "site_detail_url": "https://comicvine.gamespot.com/spider-ham-aporkalypse-now/4050-129479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129480/", + "id": 129480, + "name": "Symbiote Spider-Man: Alien Reality", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-alien-reality/4050-129480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129648/", + "id": 129648, + "name": "Spider-Man #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-1-facsimile-edition/4050-129648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129649/", + "id": 129649, + "name": "Lords of Empyre: Swordsman", + "site_detail_url": "https://comicvine.gamespot.com/lords-of-empyre-swordsman/4050-129649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129650/", + "id": 129650, + "name": "Maestro", + "site_detail_url": "https://comicvine.gamespot.com/maestro/4050-129650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129776/", + "id": 129776, + "name": "Aero & Sword Master: Origins and Odysseys", + "site_detail_url": "https://comicvine.gamespot.com/aero-and-sword-master-origins-and-odysseys/4050-129776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129777/", + "id": 129777, + "name": "Fantastic Four: Point of Origin", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-point-of-origin/4050-129777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129778/", + "id": 129778, + "name": "Guardians of the Galaxy: Somebody's Got To Do It Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-somebodys-got-to-do-it-mar/4050-129778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129779/", + "id": 129779, + "name": "Revenge of the Cosmic Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/revenge-of-the-cosmic-ghost-rider/4050-129779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129780/", + "id": 129780, + "name": "Spider-Man: Spider-Verse - Spider-Ham", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-ham/4050-129780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129781/", + "id": 129781, + "name": "X-Men Milestones: Necrosha", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-necrosha/4050-129781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129808/", + "id": 129808, + "name": "Captain Marvel: Beware the Flerken!", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-beware-the-flerken/4050-129808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129885/", + "id": 129885, + "name": "Fortnite x Marvel - Nexus War: Thor", + "site_detail_url": "https://comicvine.gamespot.com/fortnite-x-marvel-nexus-war-thor/4050-129885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129886/", + "id": 129886, + "name": "Daredevil Annual", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-annual/4050-129886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129887/", + "id": 129887, + "name": "Fantastic Four: Antithesis", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-antithesis/4050-129887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129899/", + "id": 129899, + "name": "Ant-Man: World Hive", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-world-hive/4050-129899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129900/", + "id": 129900, + "name": "Avengers by Jonathan Hickman: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jonathan-hickman-the-complete-collecti/4050-129900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129901/", + "id": 129901, + "name": "The End", + "site_detail_url": "https://comicvine.gamespot.com/the-end/4050-129901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129902/", + "id": 129902, + "name": "Fallen Angels by Bryan Hill", + "site_detail_url": "https://comicvine.gamespot.com/fallen-angels-by-bryan-hill/4050-129902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129903/", + "id": 129903, + "name": "Iron Man Epic Collection: The Fury of the Firebrand", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-the-fury-of-the-firebrand/4050-129903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129904/", + "id": 129904, + "name": "Steranko Is… Revolutionary!", + "site_detail_url": "https://comicvine.gamespot.com/steranko-is-revolutionary/4050-129904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-129905/", + "id": 129905, + "name": "X-Men Epic Collection: Proteus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-proteus/4050-129905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130059/", + "id": 130059, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4050-130059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130060/", + "id": 130060, + "name": "Marvel Zombies: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection/4050-130060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130062/", + "id": 130062, + "name": "True Believers: X-Men: Mister Sinister", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-mister-sinister/4050-130062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130063/", + "id": 130063, + "name": "True Believers: X-Men: Nanny & Orphan Maker", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-nanny-and-orphan-maker/4050-130063/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130064/", + "id": 130064, + "name": "True Believers: X-Men: Wild Child", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-wild-child/4050-130064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130068/", + "id": 130068, + "name": "Marvel Tales: Captain Britain", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-captain-britain/4050-130068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130069/", + "id": 130069, + "name": "The Black Widow Strikes Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-black-widow-strikes-omnibus/4050-130069/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130070/", + "id": 130070, + "name": "Cloak and Dagger Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/cloak-and-dagger-omnibus/4050-130070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130071/", + "id": 130071, + "name": "Daredevil/Elektra: Love and War Gallery Edition", + "site_detail_url": "https://comicvine.gamespot.com/daredevilelektra-love-and-war-gallery-edition/4050-130071/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130072/", + "id": 130072, + "name": "Amazing Spider-Man by Nick Spencer: Threats & Menaces", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-threats-and-men/4050-130072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130073/", + "id": 130073, + "name": "Black Cat: On The Run", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-on-the-run/4050-130073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130074/", + "id": 130074, + "name": "Immortal Hulk: Hulk Is Hulk", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-hulk-is-hulk/4050-130074/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130075/", + "id": 130075, + "name": "Old Man Hawkeye: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/old-man-hawkeye-the-complete-collection/4050-130075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130076/", + "id": 130076, + "name": "Tarot: Avengers/Defenders", + "site_detail_url": "https://comicvine.gamespot.com/tarot-avengersdefenders/4050-130076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130186/", + "id": 130186, + "name": "Empyre: Aftermath Avengers", + "site_detail_url": "https://comicvine.gamespot.com/empyre-aftermath-avengers/4050-130186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130187/", + "id": 130187, + "name": "Empyre: Fallout Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/empyre-fallout-fantastic-four/4050-130187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130188/", + "id": 130188, + "name": "The Rise of Ultraman", + "site_detail_url": "https://comicvine.gamespot.com/the-rise-of-ultraman/4050-130188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130189/", + "id": 130189, + "name": "Web of Venom: Wraith", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-wraith/4050-130189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130191/", + "id": 130191, + "name": "True Believers: X-Men: Empath", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-empath/4050-130191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130192/", + "id": 130192, + "name": "True Believers: X-Men: Greycrow", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-greycrow/4050-130192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130193/", + "id": 130193, + "name": "Heroes Reborn: The Return Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-the-return-omnibus/4050-130193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130194/", + "id": 130194, + "name": "Ghost Rider: Hearts of Darkness II", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-hearts-of-darkness-ii/4050-130194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130195/", + "id": 130195, + "name": "Silver Surfer Epic Collection: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-epic-collection-resurrection/4050-130195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130196/", + "id": 130196, + "name": "Star Comics: Top Dog - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/star-comics-top-dog-the-complete-collection/4050-130196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130198/", + "id": 130198, + "name": "Star Wars: Age of Resistance", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-age-of-resistance/4050-130198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130205/", + "id": 130205, + "name": "Marvel Storybook Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-storybook-collection/4050-130205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130207/", + "id": 130207, + "name": "Devil's Reign: Omega", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-omega/4050-130207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130243/", + "id": 130243, + "name": "Spider-Man Loves Mary Jane", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane/4050-130243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130339/", + "id": 130339, + "name": "X-Men: Grand Design Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-grand-design-omnibus/4050-130339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130383/", + "id": 130383, + "name": "Snow Day For Groot!", + "site_detail_url": "https://comicvine.gamespot.com/snow-day-for-groot/4050-130383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130391/", + "id": 130391, + "name": "True Believers: X-Men: Cypher", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-cypher/4050-130391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130392/", + "id": 130392, + "name": "True Believers: X-Men: Havok", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-havok/4050-130392/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130393/", + "id": 130393, + "name": "True Believers: X-Men: Magik", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-magik/4050-130393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130394/", + "id": 130394, + "name": "Amazing Spider-Man: The Sins of Norman Osborn", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-the-sins-of-norman-osborn/4050-130394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130395/", + "id": 130395, + "name": "Giant-Size X-Men: Storm", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-storm/4050-130395/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130396/", + "id": 130396, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4050-130396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130397/", + "id": 130397, + "name": "X-Men: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/x-men-marvels-snapshots/4050-130397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130407/", + "id": 130407, + "name": "Avengers of the Wastelands", + "site_detail_url": "https://comicvine.gamespot.com/avengers-of-the-wastelands/4050-130407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130408/", + "id": 130408, + "name": "Marvel Portfolio: Stanley \"Artgerm\" Lau", + "site_detail_url": "https://comicvine.gamespot.com/marvel-portfolio-stanley-artgerm-lau/4050-130408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130409/", + "id": 130409, + "name": "Marvel's Spider-Man: The Black Cat Strikes", + "site_detail_url": "https://comicvine.gamespot.com/marvels-spider-man-the-black-cat-strikes/4050-130409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130410/", + "id": 130410, + "name": "Spider-Man: Spider-Verse - Spider-Women", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-spider-verse-spider-women/4050-130410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130417/", + "id": 130417, + "name": "Star Wars: Jedi Fallen Order - Dark Temple", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-jedi-fallen-order-dark-temple/4050-130417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130418/", + "id": 130418, + "name": "X-Men/Fantastic Four: 4X", + "site_detail_url": "https://comicvine.gamespot.com/x-menfantastic-four-4x/4050-130418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130419/", + "id": 130419, + "name": "X-Men Milestones: Second Coming", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-second-coming/4050-130419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130420/", + "id": 130420, + "name": "X-Men: Reloaded", + "site_detail_url": "https://comicvine.gamespot.com/x-men-reloaded/4050-130420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130564/", + "id": 130564, + "name": "Tales of Suspense #39: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-suspense-39-facsimile-edition/4050-130564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130565/", + "id": 130565, + "name": "True Believers: X-Men: Saturnyne", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-saturnyne/4050-130565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130566/", + "id": 130566, + "name": "True Believers: X-Men: Soulsword", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-x-men-soulsword/4050-130566/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130567/", + "id": 130567, + "name": "Immortal She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/immortal-she-hulk/4050-130567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130568/", + "id": 130568, + "name": "Juggernaut", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut/4050-130568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130569/", + "id": 130569, + "name": "X of Swords: Creation", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords-creation/4050-130569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130573/", + "id": 130573, + "name": "Absolute Carnage Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/absolute-carnage-omnibus/4050-130573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130574/", + "id": 130574, + "name": "Black Widow Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-poster-book/4050-130574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130575/", + "id": 130575, + "name": "Acts of Vengeance: Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-marvel-universe/4050-130575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130576/", + "id": 130576, + "name": "Avengers West Coast Epic Collection: Tales To Astonish", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-epic-collection-tales-to-aston/4050-130576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130578/", + "id": 130578, + "name": "Heroes Reborn: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-avengers/4050-130578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130580/", + "id": 130580, + "name": "Valkyrie: Jane Foster: At the End of All Things", + "site_detail_url": "https://comicvine.gamespot.com/valkyrie-jane-foster-at-the-end-of-all-things/4050-130580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130761/", + "id": 130761, + "name": "Giant-Size X-Men: Tribute To Wein & Cockrum", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-tribute-to-wein-and-cockrum/4050-130761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130762/", + "id": 130762, + "name": "Immortal Hulk: The Threshing Place", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-the-threshing-place/4050-130762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130763/", + "id": 130763, + "name": "Shang-Chi", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi/4050-130763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130784/", + "id": 130784, + "name": "Conan Chronicles Epic Collection: Horrors Beneath the Stones", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-horrors-beneath-t/4050-130784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130785/", + "id": 130785, + "name": "Daredevil by Chip Zdarsky: End of Hell", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-end-of-hell/4050-130785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130786/", + "id": 130786, + "name": "Ditko Is… Strange!", + "site_detail_url": "https://comicvine.gamespot.com/ditko-is-strange/4050-130786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130787/", + "id": 130787, + "name": "League of Legends: Zed", + "site_detail_url": "https://comicvine.gamespot.com/league-of-legends-zed/4050-130787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130788/", + "id": 130788, + "name": "Marvel Classics Comics Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-classics-comics-omnibus/4050-130788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130789/", + "id": 130789, + "name": "Spider-Man Loves Mary Jane: The Secret Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-the-secret-thing/4050-130789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130790/", + "id": 130790, + "name": "Venom: Rex Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/venom-rex-marvel-select/4050-130790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130847/", + "id": 130847, + "name": "Elektra and Wolverine: The Redeemer", + "site_detail_url": "https://comicvine.gamespot.com/elektra-and-wolverine-the-redeemer/4050-130847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130979/", + "id": 130979, + "name": "Champions", + "site_detail_url": "https://comicvine.gamespot.com/champions/4050-130979/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130980/", + "id": 130980, + "name": "The Official Handbook of the Conan Universe Anniversary Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-conan-universe-annive/4050-130980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130981/", + "id": 130981, + "name": "Spider-Man: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-marvels-snapshots/4050-130981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130983/", + "id": 130983, + "name": "Marvel Fanfare #10: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fanfare-10-facsimile-edition/4050-130983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130984/", + "id": 130984, + "name": "True Believers: Black Widow & Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-and-daredevil/4050-130984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130985/", + "id": 130985, + "name": "True Believers: Black Widow: Red Guardian", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-red-guardian/4050-130985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130986/", + "id": 130986, + "name": "True Believers: Introducing the Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-introducing-the-black-widow/4050-130986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130987/", + "id": 130987, + "name": "Original Marvel Zombies: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/original-marvel-zombies-marvel-tales/4050-130987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130989/", + "id": 130989, + "name": "Black Widow Epic Collection: The Coldest War", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-epic-collection-the-coldest-war/4050-130989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130990/", + "id": 130990, + "name": "Empyre: Road To Empyre", + "site_detail_url": "https://comicvine.gamespot.com/empyre-road-to-empyre/4050-130990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130991/", + "id": 130991, + "name": "Fury: Peacemaker", + "site_detail_url": "https://comicvine.gamespot.com/fury-peacemaker/4050-130991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130996/", + "id": 130996, + "name": "King Deadpool: Hail To the King", + "site_detail_url": "https://comicvine.gamespot.com/king-deadpool-hail-to-the-king/4050-130996/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130997/", + "id": 130997, + "name": "Marvel Westerns", + "site_detail_url": "https://comicvine.gamespot.com/marvel-westerns/4050-130997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130998/", + "id": 130998, + "name": "New Mutants Epic Collection: Cable", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-epic-collection-cable/4050-130998/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130999/", + "id": 130999, + "name": "Shanna, The She-Devil", + "site_detail_url": "https://comicvine.gamespot.com/shanna-the-she-devil/4050-130999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131000/", + "id": 131000, + "name": "Spider-Man: The Road To Venom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-road-to-venom/4050-131000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131199/", + "id": 131199, + "name": "Warhammer 40,000: Marneus Calgar", + "site_detail_url": "https://comicvine.gamespot.com/warhammer-40000-marneus-calgar/4050-131199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131200/", + "id": 131200, + "name": "X of Swords Handbook", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords-handbook/4050-131200/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131202/", + "id": 131202, + "name": "Marvel Monograph: The Art of Mark Brooks", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monograph-the-art-of-mark-brooks/4050-131202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131203/", + "id": 131203, + "name": "True Believers: Black Widow & the Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-and-the-amazing-spider-/4050-131203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131204/", + "id": 131204, + "name": "True Believers: Black Widow: Amazing Adventures", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-amazing-adventures/4050-131204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131205/", + "id": 131205, + "name": "Marvel Horror Lives Again! Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-horror-lives-again-omnibus/4050-131205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131206/", + "id": 131206, + "name": "War of the Realms Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/war-of-the-realms-omnibus/4050-131206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131207/", + "id": 131207, + "name": "Captain America Epic Collection: Monsters and Men", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-monsters-and-men/4050-131207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131208/", + "id": 131208, + "name": "Guardians of the Galaxy by Al Ewing: Then It's Us", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-al-ewing-then-its-us/4050-131208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131209/", + "id": 131209, + "name": "Iron Man 2020: Robot Revolution", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020-robot-revolution/4050-131209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131210/", + "id": 131210, + "name": "Marvel-Verse: Venom", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-venom/4050-131210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131212/", + "id": 131212, + "name": "X-Men Milestones: Age of X", + "site_detail_url": "https://comicvine.gamespot.com/x-men-milestones-age-of-x/4050-131212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131352/", + "id": 131352, + "name": "Werewolf By Night", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night/4050-131352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131355/", + "id": 131355, + "name": "True Believers: Black Widow & the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-and-the-avengers/4050-131355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131356/", + "id": 131356, + "name": "True Believers: Black Widow: Darkstar", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-darkstar/4050-131356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131357/", + "id": 131357, + "name": "True Believers: Black Widow: Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-taskmaster/4050-131357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131358/", + "id": 131358, + "name": "Hellstrom: Prince of Lies", + "site_detail_url": "https://comicvine.gamespot.com/hellstrom-prince-of-lies/4050-131358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131360/", + "id": 131360, + "name": "Skrull Kill Krew", + "site_detail_url": "https://comicvine.gamespot.com/skrull-kill-krew/4050-131360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131522/", + "id": 131522, + "name": "True Believers: Black Widow & the Thing", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-and-the-thing/4050-131522/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131523/", + "id": 131523, + "name": "True Believers: Black Widow: Yelena Belova", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-black-widow-yelena-belova/4050-131523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131524/", + "id": 131524, + "name": "Black Widow: Widow's Sting", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-widows-sting/4050-131524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131525/", + "id": 131525, + "name": "X of Swords: Stasis", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords-stasis/4050-131525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131527/", + "id": 131527, + "name": "The Marvel Art of Mondo Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-mondo-poster-book/4050-131527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131528/", + "id": 131528, + "name": "The Marvel Art of the Savage Sword of Conan the Barbarian", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-the-savage-sword-of-conan-the-ba/4050-131528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131529/", + "id": 131529, + "name": "She-Hulk by Dan Slott Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-dan-slott-omnibus/4050-131529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131534/", + "id": 131534, + "name": "Daredevil: Marvel Knights Collection", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-marvel-knights-collection/4050-131534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131535/", + "id": 131535, + "name": "Daredevil: The Man Without Fear Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-the-man-without-fear-marvel-select/4050-131535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131536/", + "id": 131536, + "name": "Empyre", + "site_detail_url": "https://comicvine.gamespot.com/empyre/4050-131536/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131537/", + "id": 131537, + "name": "Fantastic Four Epic Collection: At War With Atlantis", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-at-war-with-atlanti/4050-131537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131538/", + "id": 131538, + "name": "Iron Man 2020: Robot Revolution - Force Works", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020-robot-revolution-force-works/4050-131538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131539/", + "id": 131539, + "name": "Iron Man 2020: Robot Revolution - iWolverine", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-2020-robot-revolution-iwolverine/4050-131539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131540/", + "id": 131540, + "name": "Ironheart: Meant To Fly", + "site_detail_url": "https://comicvine.gamespot.com/ironheart-meant-to-fly/4050-131540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131541/", + "id": 131541, + "name": "Star Wars: From the Journals of Obi-Wan Kenobi", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-from-the-journals-of-obi-wan-kenobi/4050-131541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131727/", + "id": 131727, + "name": "True Believers: King In Black: Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-black-knight/4050-131727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131728/", + "id": 131728, + "name": "True Believers: King In Black: Gamma Flight's Doc Samson", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-gamma-flights-doc-sam/4050-131728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131729/", + "id": 131729, + "name": "Avengers #57: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/avengers-57-facsimile-edition/4050-131729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131730/", + "id": 131730, + "name": "Hellstrom: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/hellstrom-marvel-tales/4050-131730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131731/", + "id": 131731, + "name": "The Marvel Art of Adam Kubert", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-adam-kubert/4050-131731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131732/", + "id": 131732, + "name": "U.S.Agent", + "site_detail_url": "https://comicvine.gamespot.com/usagent/4050-131732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131733/", + "id": 131733, + "name": "Web of Venom: Empyre's End", + "site_detail_url": "https://comicvine.gamespot.com/web-of-venom-empyres-end/4050-131733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131734/", + "id": 131734, + "name": "Wolverine: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-black-white-and-blood/4050-131734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131737/", + "id": 131737, + "name": "Amazing Spider-Man by Nick Spencer: Sins Rising", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-sins-rising/4050-131737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131738/", + "id": 131738, + "name": "Black Panther by Ta-Nehisi Coates: The Intergalactic Empire of Wakanda Part One Collection", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-by-ta-nehisi-coates-the-intergalacti/4050-131738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131739/", + "id": 131739, + "name": "Disney Kingdoms: Haunted Mansion", + "site_detail_url": "https://comicvine.gamespot.com/disney-kingdoms-haunted-mansion/4050-131739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131740/", + "id": 131740, + "name": "Empyre: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/empyre-x-men/4050-131740/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131741/", + "id": 131741, + "name": "Heroes Reborn: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-iron-man/4050-131741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131742/", + "id": 131742, + "name": "Marvel-Verse: Deadpool and Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-deadpool-and-wolverine/4050-131742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131743/", + "id": 131743, + "name": "Star: Birth of A Dragon", + "site_detail_url": "https://comicvine.gamespot.com/star-birth-of-a-dragon/4050-131743/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131744/", + "id": 131744, + "name": "Thor by Donny Cates: The Devourer King", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-donny-cates-the-devourer-king/4050-131744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131745/", + "id": 131745, + "name": "Venom Epic Collection: Symbiosis", + "site_detail_url": "https://comicvine.gamespot.com/venom-epic-collection-symbiosis/4050-131745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131829/", + "id": 131829, + "name": "True Believers: King In Black: Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-beta-ray-bill/4050-131829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131830/", + "id": 131830, + "name": "The X-Men #4: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-x-men-4-facsimile-edition/4050-131830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131879/", + "id": 131879, + "name": "True Believers: King In Black: Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-black-panther/4050-131879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131880/", + "id": 131880, + "name": "True Believers: King In Black: Valkyrie", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-valkyrie/4050-131880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131881/", + "id": 131881, + "name": "Taskmaster", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster/4050-131881/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131882/", + "id": 131882, + "name": "Avengers Epic Collection: Heavy Metal", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-heavy-metal/4050-131882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131883/", + "id": 131883, + "name": "Star Wars: The Destiny Path", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-destiny-path/4050-131883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131884/", + "id": 131884, + "name": "Thanos: The Infinity Saga Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/thanos-the-infinity-saga-omnibus/4050-131884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131885/", + "id": 131885, + "name": "Death's Head 3.0: Unnatural Selection", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-30-unnatural-selection/4050-131885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131886/", + "id": 131886, + "name": "X-Men Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/x-men-fairy-tales/4050-131886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132121/", + "id": 132121, + "name": "True Believers: King In Black: Monsterworld", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-monsterworld/4050-132121/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132122/", + "id": 132122, + "name": "True Believers: King In Black: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-thunderbolts/4050-132122/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132123/", + "id": 132123, + "name": "Stormbreakers 2020 Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/stormbreakers-2020-sketchbook/4050-132123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132128/", + "id": 132128, + "name": "Avengers: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/avengers-marvels-snapshots/4050-132128/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132129/", + "id": 132129, + "name": "Marvel's Voices: Indigenous Voices", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-indigenous-voices/4050-132129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132130/", + "id": 132130, + "name": "Symbiote Spider-Man: King In Black", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black/4050-132130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132131/", + "id": 132131, + "name": "Widowmakers: Red Guardian and Yelena Belova", + "site_detail_url": "https://comicvine.gamespot.com/widowmakers-red-guardian-and-yelena-belova/4050-132131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132133/", + "id": 132133, + "name": "Cable by Gerry Duggan", + "site_detail_url": "https://comicvine.gamespot.com/cable-by-gerry-duggan/4050-132133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132134/", + "id": 132134, + "name": "Daredevil Epic Collection: Last Rites", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-epic-collection-last-rites/4050-132134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132135/", + "id": 132135, + "name": "Empyre: Captain America & The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/empyre-captain-america-and-the-avengers/4050-132135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132136/", + "id": 132136, + "name": "Empyre: Lords of Empyre", + "site_detail_url": "https://comicvine.gamespot.com/empyre-lords-of-empyre/4050-132136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132137/", + "id": 132137, + "name": "Hellions by Zeb Wells", + "site_detail_url": "https://comicvine.gamespot.com/hellions-by-zeb-wells/4050-132137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132138/", + "id": 132138, + "name": "Wolverine by Benjamin Percy", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-benjamin-percy/4050-132138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132139/", + "id": 132139, + "name": "Marvel Monsters", + "site_detail_url": "https://comicvine.gamespot.com/marvel-monsters/4050-132139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132141/", + "id": 132141, + "name": "Spider-Girl Presents Juggernaut Jr.: Secrets & Lies", + "site_detail_url": "https://comicvine.gamespot.com/spider-girl-presents-juggernaut-jr-secrets-and-lie/4050-132141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132142/", + "id": 132142, + "name": "Excalibur Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-omnibus/4050-132142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132228/", + "id": 132228, + "name": "X of Swords: Destruction", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords-destruction/4050-132228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132229/", + "id": 132229, + "name": "Power Pack", + "site_detail_url": "https://comicvine.gamespot.com/power-pack/4050-132229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132230/", + "id": 132230, + "name": "True Believers: King In Black: Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-black-cat/4050-132230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132231/", + "id": 132231, + "name": "True Believers: King In Black: Franklin Richards", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-franklin-richards/4050-132231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132232/", + "id": 132232, + "name": "True Believers: King In Black: Iron Man/Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-king-in-black-iron-mandoctor-doom/4050-132232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132319/", + "id": 132319, + "name": "Captain America: Sharon Carter", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sharon-carter/4050-132319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132320/", + "id": 132320, + "name": "Conan: Battle For the Serpent Crown", + "site_detail_url": "https://comicvine.gamespot.com/conan-battle-for-the-serpent-crown/4050-132320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132321/", + "id": 132321, + "name": "Fantastic Four: Empyre", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-empyre/4050-132321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132322/", + "id": 132322, + "name": "Oz: The Complete Collection - Road To/Emerald City", + "site_detail_url": "https://comicvine.gamespot.com/oz-the-complete-collection-road-toemerald-city/4050-132322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132323/", + "id": 132323, + "name": "Shuri: Wakanda Forever", + "site_detail_url": "https://comicvine.gamespot.com/shuri-wakanda-forever/4050-132323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132325/", + "id": 132325, + "name": "Star Wars: Bounty Hunters: Galaxy's Deadliest", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-bounty-hunters-galaxys-deadliest/4050-132325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132327/", + "id": 132327, + "name": "Star Wars: Darth Vader by Greg Pak: Dark Heart of the Sith", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-by-greg-pak-dark-heart-of-th/4050-132327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132330/", + "id": 132330, + "name": "Star Wars Legends Epic Collection: Tales of the Jedi", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-epic-collection-tales-of-the-jed/4050-132330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132331/", + "id": 132331, + "name": "Conan the Barbarian by Kurt Busiek Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-by-kurt-busiek-omnibus/4050-132331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132374/", + "id": 132374, + "name": "Civil War: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-marvels-snapshots/4050-132374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132375/", + "id": 132375, + "name": "Fantastic Four: Road Trip", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-road-trip/4050-132375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132376/", + "id": 132376, + "name": "King In Black", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black/4050-132376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132377/", + "id": 132377, + "name": "M.O.D.O.K.: Head Games", + "site_detail_url": "https://comicvine.gamespot.com/modok-head-games/4050-132377/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132378/", + "id": 132378, + "name": "The Union", + "site_detail_url": "https://comicvine.gamespot.com/the-union/4050-132378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132379/", + "id": 132379, + "name": "Knull: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/knull-marvel-tales/4050-132379/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132380/", + "id": 132380, + "name": "Peach MoMoKo: The Variant Covers", + "site_detail_url": "https://comicvine.gamespot.com/peach-momoko-the-variant-covers/4050-132380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132381/", + "id": 132381, + "name": "Captain Marvel: Accused", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-accused/4050-132381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132382/", + "id": 132382, + "name": "Incredible Hulk Epic Collection: Going Gray", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-going-gray/4050-132382/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132383/", + "id": 132383, + "name": "New Mutants by Ed Brisson", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-by-ed-brisson/4050-132383/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132384/", + "id": 132384, + "name": "Captain Universe: Universal Heroes", + "site_detail_url": "https://comicvine.gamespot.com/captain-universe-universal-heroes/4050-132384/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132385/", + "id": 132385, + "name": "Last Planet Standing", + "site_detail_url": "https://comicvine.gamespot.com/last-planet-standing/4050-132385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132398/", + "id": 132398, + "name": "The Eternals: The Complete Saga Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-eternals-the-complete-saga-omnibus/4050-132398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132509/", + "id": 132509, + "name": "Heroes At Home", + "site_detail_url": "https://comicvine.gamespot.com/heroes-at-home/4050-132509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132510/", + "id": 132510, + "name": "King In Black: Namor", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-namor/4050-132510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132511/", + "id": 132511, + "name": "S.W.O.R.D.", + "site_detail_url": "https://comicvine.gamespot.com/sword/4050-132511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132513/", + "id": 132513, + "name": "Amazing Spider-Man by Nick Spencer: Green Goblin Returns", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-green-goblin-re/4050-132513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132515/", + "id": 132515, + "name": "Giant-Size X-Men by Jonathan Hickman", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-by-jonathan-hickman/4050-132515/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132516/", + "id": 132516, + "name": "Strikeforce: Fight Me", + "site_detail_url": "https://comicvine.gamespot.com/strikeforce-fight-me/4050-132516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132517/", + "id": 132517, + "name": "Thor Epic Collection: The Thor War", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-thor-war/4050-132517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132628/", + "id": 132628, + "name": "King In Black Previews Sampler", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-previews-sampler/4050-132628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132631/", + "id": 132631, + "name": "Black Cat", + "site_detail_url": "https://comicvine.gamespot.com/black-cat/4050-132631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132632/", + "id": 132632, + "name": "King In Black: Immortal Hulk", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-immortal-hulk/4050-132632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132636/", + "id": 132636, + "name": "Fudge Brownie M&M's: Easy Does It", + "site_detail_url": "https://comicvine.gamespot.com/fudge-brownie-mandms-easy-does-it/4050-132636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132637/", + "id": 132637, + "name": "Dr. Strange, Surgeon Supreme: Under the Knife", + "site_detail_url": "https://comicvine.gamespot.com/dr-strange-surgeon-supreme-under-the-knife/4050-132637/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132638/", + "id": 132638, + "name": "Marvels X", + "site_detail_url": "https://comicvine.gamespot.com/marvels-x/4050-132638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132639/", + "id": 132639, + "name": "Spider-Woman: Bad Blood", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-bad-blood/4050-132639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132640/", + "id": 132640, + "name": "U.S.Agent: The Good Fight", + "site_detail_url": "https://comicvine.gamespot.com/usagent-the-good-fight/4050-132640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132641/", + "id": 132641, + "name": "X-Men: God Loves, Man Kills Extended Cut", + "site_detail_url": "https://comicvine.gamespot.com/x-men-god-loves-man-kills-extended-cut/4050-132641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132642/", + "id": 132642, + "name": "New Mutants Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-omnibus/4050-132642/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132742/", + "id": 132742, + "name": "King-Size Conan", + "site_detail_url": "https://comicvine.gamespot.com/king-size-conan/4050-132742/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132763/", + "id": 132763, + "name": "Araña: Here Comes the Spider-Girl", + "site_detail_url": "https://comicvine.gamespot.com/arana-here-comes-the-spider-girl/4050-132763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132764/", + "id": 132764, + "name": "Avengers West Coast Epic Collection: Vision Quest", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-epic-collection-vision-quest/4050-132764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132765/", + "id": 132765, + "name": "Ghost-Spider: Party People", + "site_detail_url": "https://comicvine.gamespot.com/ghost-spider-party-people/4050-132765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132767/", + "id": 132767, + "name": "Hawkeye: Freefall", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-freefall/4050-132767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132768/", + "id": 132768, + "name": "Marvel-Verse: Wanda and Vision", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-wanda-and-vision/4050-132768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132769/", + "id": 132769, + "name": "Ravencroft", + "site_detail_url": "https://comicvine.gamespot.com/ravencroft/4050-132769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132770/", + "id": 132770, + "name": "Marvel Cosmic Universe by Donny Cates Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-cosmic-universe-by-donny-cates-omnibus/4050-132770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132912/", + "id": 132912, + "name": "Ghost Rider: Return of Vengeance", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-return-of-vengeance/4050-132912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132913/", + "id": 132913, + "name": "King In Black: Iron Man/Doom", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-iron-mandoom/4050-132913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132918/", + "id": 132918, + "name": "Spider-Man: Into the Spider-Verse Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-into-the-spider-verse-poster-book/4050-132918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132920/", + "id": 132920, + "name": "Spider-Man Noir: Twilight In Babylon", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-noir-twilight-in-babylon/4050-132920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132921/", + "id": 132921, + "name": "X-Factor by Leah Williams", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-by-leah-williams/4050-132921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133048/", + "id": 133048, + "name": "Marvel Mini-Books", + "site_detail_url": "https://comicvine.gamespot.com/marvel-mini-books/4050-133048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133077/", + "id": 133077, + "name": "Captain America #117: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-117-facsimile-edition/4050-133077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133078/", + "id": 133078, + "name": "Eternals: Never Die, Never Win Behind-the-Scenes Edition", + "site_detail_url": "https://comicvine.gamespot.com/eternals-never-die-never-win-behind-the-scenes-edi/4050-133078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133079/", + "id": 133079, + "name": "Star Wars: The High Republic", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic/4050-133079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133080/", + "id": 133080, + "name": "Eternals", + "site_detail_url": "https://comicvine.gamespot.com/eternals/4050-133080/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133081/", + "id": 133081, + "name": "King In Black: Return of the Valkyries", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries/4050-133081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133082/", + "id": 133082, + "name": "Symbiote Spider-Man: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-marvel-tales/4050-133082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133093/", + "id": 133093, + "name": "Aero: The Mystery of Madame Huang", + "site_detail_url": "https://comicvine.gamespot.com/aero-the-mystery-of-madame-huang/4050-133093/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133094/", + "id": 133094, + "name": "Always An Invader", + "site_detail_url": "https://comicvine.gamespot.com/always-an-invader/4050-133094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133095/", + "id": 133095, + "name": "Avengers by Jason Aaron: The Age of Khonshu", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-the-age-of-khonshu/4050-133095/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133096/", + "id": 133096, + "name": "Deadpool: Hey, It's Deadpool! Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-hey-its-deadpool-marvel-select/4050-133096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133097/", + "id": 133097, + "name": "Guardians of the Galaxy by Donny Cates", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-donny-cates/4050-133097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133098/", + "id": 133098, + "name": "Incredible Hulk Epic Collection: Who Will Judge The Hulk?", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-who-will-judge-the/4050-133098/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133099/", + "id": 133099, + "name": "Infinity Crusade Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/infinity-crusade-omnibus/4050-133099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133100/", + "id": 133100, + "name": "Moon Knight Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-omnibus/4050-133100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133192/", + "id": 133192, + "name": "Captain America #354: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-354-facsimile-edition/4050-133192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133194/", + "id": 133194, + "name": "Chris Claremont Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/chris-claremont-anniversary-special/4050-133194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133195/", + "id": 133195, + "name": "King In Black: Gwenom vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-gwenom-vs-carnage/4050-133195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133196/", + "id": 133196, + "name": "King In Black: Planet of the Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-planet-of-the-symbiotes/4050-133196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133197/", + "id": 133197, + "name": "King In Black: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-thunderbolts/4050-133197/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133205/", + "id": 133205, + "name": "Black Cat: All Dressed Up", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-all-dressed-up/4050-133205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133206/", + "id": 133206, + "name": "Eternals: The Dreaming Celestial Saga", + "site_detail_url": "https://comicvine.gamespot.com/eternals-the-dreaming-celestial-saga/4050-133206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133207/", + "id": 133207, + "name": "Marvel Nemesis: The Imperfects", + "site_detail_url": "https://comicvine.gamespot.com/marvel-nemesis-the-imperfects/4050-133207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133208/", + "id": 133208, + "name": "Marvel-Verse: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-captain-marvel/4050-133208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133209/", + "id": 133209, + "name": "Thor and the Eternals: The Celestials Saga", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-the-eternals-the-celestials-saga/4050-133209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133210/", + "id": 133210, + "name": "Vision & The Scarlet Witch: The Saga of Wanda and Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision-and-the-scarlet-witch-the-saga-of-wanda-and/4050-133210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133342/", + "id": 133342, + "name": "Eternals: Cosmic Origins", + "site_detail_url": "https://comicvine.gamespot.com/eternals-cosmic-origins/4050-133342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133355/", + "id": 133355, + "name": "Iron Fist: Heart of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-heart-of-the-dragon/4050-133355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133356/", + "id": 133356, + "name": "Maestro: War & Pax", + "site_detail_url": "https://comicvine.gamespot.com/maestro-war-and-pax/4050-133356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133357/", + "id": 133357, + "name": "Conan Chronicles Epic Collection: The Song of Bêlit", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-the-song-of-belit/4050-133357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133358/", + "id": 133358, + "name": "Immortal Hulk: The Keeper of the Door", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-the-keeper-of-the-door/4050-133358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133481/", + "id": 133481, + "name": "Doctor Strange Epic Collection: Alone Against Eternity", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-alone-against-etern/4050-133481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133482/", + "id": 133482, + "name": "Falcon & Winter Soldier: Cut Off One Head", + "site_detail_url": "https://comicvine.gamespot.com/falcon-and-winter-soldier-cut-off-one-head/4050-133482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133483/", + "id": 133483, + "name": "Star Wars: Doctor Aphra: Fortune and Fate", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-fortune-and-fate/4050-133483/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133484/", + "id": 133484, + "name": "The Unstoppable Wasp: A.I.M. Escape!", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-aim-escape/4050-133484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133485/", + "id": 133485, + "name": "Wolverine by Frank Cho: Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-frank-cho-savage-land/4050-133485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133486/", + "id": 133486, + "name": "Captain America By Ed Brubaker Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-ed-brubaker-omnibus/4050-133486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133488/", + "id": 133488, + "name": "X-Men Legends: Arthur Adams", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-arthur-adams/4050-133488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133607/", + "id": 133607, + "name": "Amazing Spider-Man #101: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-101-facsimile-edition/4050-133607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133608/", + "id": 133608, + "name": "Avengers Mech Strike", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike/4050-133608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133609/", + "id": 133609, + "name": "King In Black: Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-black-knight/4050-133609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133610/", + "id": 133610, + "name": "King In Black: Marauders", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-marauders/4050-133610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133611/", + "id": 133611, + "name": "The Legend of Shang-Chi", + "site_detail_url": "https://comicvine.gamespot.com/the-legend-of-shang-chi/4050-133611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133623/", + "id": 133623, + "name": "Avengers: Living Legends", + "site_detail_url": "https://comicvine.gamespot.com/avengers-living-legends/4050-133623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133624/", + "id": 133624, + "name": "Conan the Barbarian by Aaron & Asrar", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-by-aaron-and-asrar/4050-133624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133626/", + "id": 133626, + "name": "Eternals: To Defy the Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/eternals-to-defy-the-apocalypse/4050-133626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133628/", + "id": 133628, + "name": "Luke Cage Epic Collection: Retribution", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage-epic-collection-retribution/4050-133628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133629/", + "id": 133629, + "name": "Marvel Zombies: Resurrection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-zombies-resurrection/4050-133629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133630/", + "id": 133630, + "name": "Morbius: Preludes and Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/morbius-preludes-and-nightmares/4050-133630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133631/", + "id": 133631, + "name": "Scarlet Witch by James Robinson: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch-by-james-robinson-the-complete-colle/4050-133631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133632/", + "id": 133632, + "name": "Spider-Man: Kraven's Last Hunt Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-kravens-last-hunt-marvel-select/4050-133632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133633/", + "id": 133633, + "name": "Sword Master: God of War", + "site_detail_url": "https://comicvine.gamespot.com/sword-master-god-of-war/4050-133633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133724/", + "id": 133724, + "name": "King In Black: Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-black-panther/4050-133724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133725/", + "id": 133725, + "name": "Morbius: Bond of Blood", + "site_detail_url": "https://comicvine.gamespot.com/morbius-bond-of-blood/4050-133725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133731/", + "id": 133731, + "name": "Captain America by Ta-Nehisi Coates: All Die Young", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-ta-nehisi-coates-all-die-young/4050-133731/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133732/", + "id": 133732, + "name": "Disney Kingdoms: Figment", + "site_detail_url": "https://comicvine.gamespot.com/disney-kingdoms-figment/4050-133732/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133733/", + "id": 133733, + "name": "Morbius Epic Collection: The Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/morbius-epic-collection-the-living-vampire/4050-133733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133855/", + "id": 133855, + "name": "Eternals: Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/eternals-poster-book/4050-133855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133885/", + "id": 133885, + "name": "The Black Knight #1: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/the-black-knight-1-facsimile-edition/4050-133885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133886/", + "id": 133886, + "name": "Immortal Hulk: Flatline", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-flatline/4050-133886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133887/", + "id": 133887, + "name": "X-Men Legends", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends/4050-133887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133899/", + "id": 133899, + "name": "Black Panther: Who Is The Black Panther? Marvel Select", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-who-is-the-black-panther-marvel-sele/4050-133899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133900/", + "id": 133900, + "name": "Captain America: Heroes Return - The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-heroes-return-the-complete-collect/4050-133900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133901/", + "id": 133901, + "name": "Daredevil by Chip Zdarsky: Truth/Dare", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-truthdare/4050-133901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133902/", + "id": 133902, + "name": "Marvel Masterworks: Howard the Duck", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-howard-the-duck/4050-133902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133903/", + "id": 133903, + "name": "Ms. Marvel: Army of One", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-army-of-one/4050-133903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133904/", + "id": 133904, + "name": "Silk: Out of the Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/silk-out-of-the-spider-verse/4050-133904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133905/", + "id": 133905, + "name": "Strange Academy: First Class", + "site_detail_url": "https://comicvine.gamespot.com/strange-academy-first-class/4050-133905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133906/", + "id": 133906, + "name": "X-Men: Evolution", + "site_detail_url": "https://comicvine.gamespot.com/x-men-evolution/4050-133906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134051/", + "id": 134051, + "name": "Captain Marvel: Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-marvels-snapshots/4050-134051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134052/", + "id": 134052, + "name": "Marvel's Voices: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-legacy/4050-134052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134053/", + "id": 134053, + "name": "Conan: Exodus and Other Tales", + "site_detail_url": "https://comicvine.gamespot.com/conan-exodus-and-other-tales/4050-134053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134054/", + "id": 134054, + "name": "Miles Morales: Ultimatum", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimatum/4050-134054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134055/", + "id": 134055, + "name": "Punisher: River of Blood", + "site_detail_url": "https://comicvine.gamespot.com/punisher-river-of-blood/4050-134055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134056/", + "id": 134056, + "name": "Spider-Man: Bloodline", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-bloodline/4050-134056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134219/", + "id": 134219, + "name": "America Chavez: Made In The USA", + "site_detail_url": "https://comicvine.gamespot.com/america-chavez-made-in-the-usa/4050-134219/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134220/", + "id": 134220, + "name": "Demon Days: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/demon-days-x-men/4050-134220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134221/", + "id": 134221, + "name": "King In Black: Captain America", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-captain-america/4050-134221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134222/", + "id": 134222, + "name": "King In Black Handbook", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-handbook/4050-134222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134223/", + "id": 134223, + "name": "King In Black: Wiccan and Hulking", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-wiccan-and-hulking/4050-134223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134225/", + "id": 134225, + "name": "Amazing Spider-Man by Nick Spencer: Last Remains", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-last-remains/4050-134225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134226/", + "id": 134226, + "name": "Doctor Doom: Bedford Falls", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom-bedford-falls/4050-134226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134227/", + "id": 134227, + "name": "Maestro: Symphony In A Gamma Key", + "site_detail_url": "https://comicvine.gamespot.com/maestro-symphony-in-a-gamma-key/4050-134227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134228/", + "id": 134228, + "name": "Savage Avengers: Enter The Dragon", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-enter-the-dragon/4050-134228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134229/", + "id": 134229, + "name": "X of Swords", + "site_detail_url": "https://comicvine.gamespot.com/x-of-swords/4050-134229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134230/", + "id": 134230, + "name": "X-Men Epic Collection: The Fate of the Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-the-fate-of-the-phoenix/4050-134230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134388/", + "id": 134388, + "name": "Children of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-atom/4050-134388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134389/", + "id": 134389, + "name": "Deadpool Nerdy 30", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-nerdy-30/4050-134389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134390/", + "id": 134390, + "name": "Non-Stop Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man/4050-134390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134391/", + "id": 134391, + "name": "Thor & Loki: Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-loki-double-trouble/4050-134391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134426/", + "id": 134426, + "name": "Amazing Spider-Man: Last Remains Companion", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-last-remains-companion/4050-134426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134427/", + "id": 134427, + "name": "Black Panther Epic Collection: Panther's Prey", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-epic-collection-panthers-prey/4050-134427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134428/", + "id": 134428, + "name": "Conan the Barbarian Epic Collection: The Original Marvel Years: Hawks From the Sea", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-epic-collection-the-original-m/4050-134428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134429/", + "id": 134429, + "name": "Fantastic Four by Dan Slott", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-by-dan-slott/4050-134429/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134430/", + "id": 134430, + "name": "Spider-Man by Todd McFarlane: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-by-todd-mcfarlane-the-complete-collecti/4050-134430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134431/", + "id": 134431, + "name": "Spider-Man: Quality of Life", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-quality-of-life/4050-134431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134433/", + "id": 134433, + "name": "Venom by Donny Cates: Venom Beyond", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates-venom-beyond/4050-134433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134434/", + "id": 134434, + "name": "Star Wars: Doctor Aphra Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-omnibus/4050-134434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134612/", + "id": 134612, + "name": "The Trials of Ultraman", + "site_detail_url": "https://comicvine.gamespot.com/the-trials-of-ultraman/4050-134612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134613/", + "id": 134613, + "name": "Black Knight: Curse of the Ebony Blade", + "site_detail_url": "https://comicvine.gamespot.com/black-knight-curse-of-the-ebony-blade/4050-134613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134614/", + "id": 134614, + "name": "Captain America Anniversary Tribute", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-anniversary-tribute/4050-134614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134620/", + "id": 134620, + "name": "King In Black: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-spider-man/4050-134620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134645/", + "id": 134645, + "name": "Avengers by Jason Aaron", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron/4050-134645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134646/", + "id": 134646, + "name": "Daredevil by Chip Zdarsky: To Heaven Through Hell", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-to-heaven-through-hell/4050-134646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134647/", + "id": 134647, + "name": "Hawkeye: Go West", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-go-west/4050-134647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134649/", + "id": 134649, + "name": "Iron Man: Big Iron", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-big-iron/4050-134649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134650/", + "id": 134650, + "name": "Juggernaut: No Stopping Now", + "site_detail_url": "https://comicvine.gamespot.com/juggernaut-no-stopping-now/4050-134650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134651/", + "id": 134651, + "name": "Ultraman: The Rise of Ultraman", + "site_detail_url": "https://comicvine.gamespot.com/ultraman-the-rise-of-ultraman/4050-134651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134652/", + "id": 134652, + "name": "The Official Handbook of the Marvel Universe Deluxe Edition Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-delux/4050-134652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134653/", + "id": 134653, + "name": "Tony Stark: Iron Man by Dan Slott Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/tony-stark-iron-man-by-dan-slott-omnibus/4050-134653/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134778/", + "id": 134778, + "name": "Alien", + "site_detail_url": "https://comicvine.gamespot.com/alien/4050-134778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134780/", + "id": 134780, + "name": "Carnage: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/carnage-black-white-and-blood/4050-134780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134781/", + "id": 134781, + "name": "King In Black: Scream", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-scream/4050-134781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134782/", + "id": 134782, + "name": "Marvel Portfolio: Peach MoMoKo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-portfolio-peach-momoko/4050-134782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134783/", + "id": 134783, + "name": "Avengers: The Gathering Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-gathering-omnibus/4050-134783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134784/", + "id": 134784, + "name": "Conan the Barbarian by Jim Zub: Into The Crucible", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-by-jim-zub-into-the-crucible/4050-134784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134786/", + "id": 134786, + "name": "Werewolf By Night: New Wolf Rising", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-new-wolf-rising/4050-134786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134787/", + "id": 134787, + "name": "X-Men: Inferno Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-inferno-omnibus/4050-134787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-134836/", + "id": 134836, + "name": "Marvel Universe Live! Prelude", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-live-prelude/4050-134836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135000/", + "id": 135000, + "name": "Avengers: Curse of the Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/avengers-curse-of-the-man-thing/4050-135000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135002/", + "id": 135002, + "name": "Beta Ray Bill", + "site_detail_url": "https://comicvine.gamespot.com/beta-ray-bill/4050-135002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135003/", + "id": 135003, + "name": "King In Black: Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-ghost-rider/4050-135003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135005/", + "id": 135005, + "name": "Silk", + "site_detail_url": "https://comicvine.gamespot.com/silk/4050-135005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135033/", + "id": 135033, + "name": "Elektra: Introspect", + "site_detail_url": "https://comicvine.gamespot.com/elektra-introspect/4050-135033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135034/", + "id": 135034, + "name": "Fantastic Four: Antithesis", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-antithesis/4050-135034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135035/", + "id": 135035, + "name": "Shang-Chi: Brothers & Sisters", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-brothers-and-sisters/4050-135035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135036/", + "id": 135036, + "name": "Shang-Chi: Earth's Mightiest Martial Artist", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-earths-mightiest-martial-artist/4050-135036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135295/", + "id": 135295, + "name": "Squadron Supreme: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-marvel-tales/4050-135295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135301/", + "id": 135301, + "name": "The Defenders Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/the-defenders-omnibus/4050-135301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135302/", + "id": 135302, + "name": "Elektra: Everything Old Is New Again", + "site_detail_url": "https://comicvine.gamespot.com/elektra-everything-old-is-new-again/4050-135302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135303/", + "id": 135303, + "name": "Elektra: Relentless", + "site_detail_url": "https://comicvine.gamespot.com/elektra-relentless/4050-135303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135304/", + "id": 135304, + "name": "Elektra: Frenzy", + "site_detail_url": "https://comicvine.gamespot.com/elektra-frenzy/4050-135304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135305/", + "id": 135305, + "name": "Star Wars: Operation Starlight", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-operation-starlight/4050-135305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135306/", + "id": 135306, + "name": "Warhammer 40,000: Marneus Calgar", + "site_detail_url": "https://comicvine.gamespot.com/warhammer-40000-marneus-calgar/4050-135306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135390/", + "id": 135390, + "name": "Darkhawk: Heart of the Hawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-heart-of-the-hawk/4050-135390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135391/", + "id": 135391, + "name": "Spider-Man: The Spider's Shadow", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow/4050-135391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135435/", + "id": 135435, + "name": "Disney Kingdoms: Big Thunder Mountain Railroad", + "site_detail_url": "https://comicvine.gamespot.com/disney-kingdoms-big-thunder-mountain-railroad/4050-135435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135436/", + "id": 135436, + "name": "Namor, The Sub-Mariner Epic Collection: Enter The Sub-Mariner", + "site_detail_url": "https://comicvine.gamespot.com/namor-the-sub-mariner-epic-collection-enter-the-su/4050-135436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135450/", + "id": 135450, + "name": "Summer Adventure For Groot!", + "site_detail_url": "https://comicvine.gamespot.com/summer-adventure-for-groot/4050-135450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135581/", + "id": 135581, + "name": "The Mighty Valkyries", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-valkyries/4050-135581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135582/", + "id": 135582, + "name": "Women of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel/4050-135582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135583/", + "id": 135583, + "name": "Way of X", + "site_detail_url": "https://comicvine.gamespot.com/way-of-x/4050-135583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135610/", + "id": 135610, + "name": "The Immortal Hulk by Alex Ross Poster Book", + "site_detail_url": "https://comicvine.gamespot.com/the-immortal-hulk-by-alex-ross-poster-book/4050-135610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135611/", + "id": 135611, + "name": "Thunderbolts Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts-omnibus/4050-135611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135612/", + "id": 135612, + "name": "Black Widow by Kelly Thompson: The Ties That Bind", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-by-kelly-thompson-the-ties-that-bind/4050-135612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135613/", + "id": 135613, + "name": "Captain Marvel: The New World", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-the-new-world/4050-135613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135614/", + "id": 135614, + "name": "X-Factor Epic Collection: Angel of Death", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-epic-collection-angel-of-death/4050-135614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135702/", + "id": 135702, + "name": "Custom Lego 2020 Comic", + "site_detail_url": "https://comicvine.gamespot.com/custom-lego-2020-comic/4050-135702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135710/", + "id": 135710, + "name": "The Vitals: True Nurse Stories", + "site_detail_url": "https://comicvine.gamespot.com/the-vitals-true-nurse-stories/4050-135710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135719/", + "id": 135719, + "name": "Marvel Hero Project: Braden", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-braden/4050-135719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135760/", + "id": 135760, + "name": "Hellfire Gala Guide", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-gala-guide/4050-135760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135761/", + "id": 135761, + "name": "Star Wars: The Empire Strikes Back: The 40th Anniversary Covers by Chris Sprouse", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-empire-strikes-back-the-40th-anniver/4050-135761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135762/", + "id": 135762, + "name": "The Marvels", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels/4050-135762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135763/", + "id": 135763, + "name": "Spider-Man: Curse of the Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-curse-of-the-man-thing/4050-135763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135765/", + "id": 135765, + "name": "Champions: Worlds Collide", + "site_detail_url": "https://comicvine.gamespot.com/champions-worlds-collide/4050-135765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135899/", + "id": 135899, + "name": "Star Wars: War of the Bounty Hunters Alpha", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-alpha/4050-135899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135900/", + "id": 135900, + "name": "Star Wars: War of the Bounty Hunters Alpha #1: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-alpha-1-direct/4050-135900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135901/", + "id": 135901, + "name": "Thanos Quest: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/thanos-quest-marvel-tales/4050-135901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135903/", + "id": 135903, + "name": "Heroes Reborn", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn/4050-135903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135904/", + "id": 135904, + "name": "X-Men: Curse of the Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/x-men-curse-of-the-man-thing/4050-135904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135905/", + "id": 135905, + "name": "All-New Wolverine by Tom Taylor Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/all-new-wolverine-by-tom-taylor-omnibus/4050-135905/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135906/", + "id": 135906, + "name": "The Complete Kirby War & Romance", + "site_detail_url": "https://comicvine.gamespot.com/the-complete-kirby-war-and-romance/4050-135906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135907/", + "id": 135907, + "name": "Kull the Savage: The Original Marvel Years Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-savage-the-original-marvel-years-omnibus/4050-135907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135908/", + "id": 135908, + "name": "Dead Man Logan: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/dead-man-logan-the-complete-collection/4050-135908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135909/", + "id": 135909, + "name": "King Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/king-deadpool/4050-135909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135910/", + "id": 135910, + "name": "Ms. Marvel by Saladin Ahmed: Outlawed", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-by-saladin-ahmed-outlawed/4050-135910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135911/", + "id": 135911, + "name": "Ultimate Adventures: One Tin Soldier", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-adventures-one-tin-soldier/4050-135911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-135912/", + "id": 135912, + "name": "Venom by Michelinie & McFarlane", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-michelinie-and-mcfarlane/4050-135912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136022/", + "id": 136022, + "name": "Giant-Size Amazing Spider-Man: King's Ransom", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-amazing-spider-man-kings-ransom/4050-136022/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136023/", + "id": 136023, + "name": "Heroes Reborn: Hyperion & the Imperial Guard", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-hyperion-and-the-imperial-guard/4050-136023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136024/", + "id": 136024, + "name": "Heroes Reborn: Peter Parker, The Amazing Shutterbug", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-peter-parker-the-amazing-shutterbug/4050-136024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136025/", + "id": 136025, + "name": "X-Corp", + "site_detail_url": "https://comicvine.gamespot.com/x-corp/4050-136025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136026/", + "id": 136026, + "name": "Blade: Black & White", + "site_detail_url": "https://comicvine.gamespot.com/blade-black-and-white/4050-136026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136027/", + "id": 136027, + "name": "Fantastic Four: The Forever Gate", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-forever-gate/4050-136027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136028/", + "id": 136028, + "name": "Marvel-Verse: Loki", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-loki/4050-136028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136029/", + "id": 136029, + "name": "Morbius Epic Collection: The End Of A Living Vampire", + "site_detail_url": "https://comicvine.gamespot.com/morbius-epic-collection-the-end-of-a-living-vampir/4050-136029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136141/", + "id": 136141, + "name": "Fantastic Four: Life Story", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-life-story/4050-136141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136142/", + "id": 136142, + "name": "Immortal Hulk: Time of Monsters", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-time-of-monsters/4050-136142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136143/", + "id": 136143, + "name": "Shang-Chi", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi/4050-136143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136147/", + "id": 136147, + "name": "Acts of Vengeance: Spider-Man & The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/acts-of-vengeance-spider-man-and-the-x-men/4050-136147/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136149/", + "id": 136149, + "name": "Avengers Epic Collection: A Traitor Stalks Among Us", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-a-traitor-stalks-among-us/4050-136149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136150/", + "id": 136150, + "name": "Captain Marvel vs. Rogue", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-vs-rogue/4050-136150/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136151/", + "id": 136151, + "name": "Conan: The Songs of the Dead and Other Stories", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-songs-of-the-dead-and-other-stories/4050-136151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136158/", + "id": 136158, + "name": "Ghost Rider: Robbie Reyes: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-robbie-reyes-the-complete-collection/4050-136158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136159/", + "id": 136159, + "name": "Marvel Masterworks: Brother Voodoo", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-brother-voodoo/4050-136159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136160/", + "id": 136160, + "name": "Aliens: The Original Years Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/aliens-the-original-years-omnibus/4050-136160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136161/", + "id": 136161, + "name": "Ka-Zar the Savage Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-the-savage-omnibus/4050-136161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136388/", + "id": 136388, + "name": "Heroes Reborn: Magneto & the Mutant Force", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-magneto-and-the-mutant-force/4050-136388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136389/", + "id": 136389, + "name": "Heroes Reborn: Siege Society", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-siege-society/4050-136389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136390/", + "id": 136390, + "name": "Heroes Reborn: Young Squadron", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-young-squadron/4050-136390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136391/", + "id": 136391, + "name": "Reptil", + "site_detail_url": "https://comicvine.gamespot.com/reptil/4050-136391/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136453/", + "id": 136453, + "name": "Cartoons and Gags", + "site_detail_url": "https://comicvine.gamespot.com/cartoons-and-gags/4050-136453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136473/", + "id": 136473, + "name": "Amazing Spider-Man by Nick Spencer: Shattered Web", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-shattered-web/4050-136473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136474/", + "id": 136474, + "name": "Champions: Outlawed", + "site_detail_url": "https://comicvine.gamespot.com/champions-outlawed/4050-136474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136475/", + "id": 136475, + "name": "Iron Man by Mike Grell: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-by-mike-grell-the-complete-collection/4050-136475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136476/", + "id": 136476, + "name": "Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel/4050-136476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136477/", + "id": 136477, + "name": "Marvel-Verse: Shang-Chi", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-shang-chi/4050-136477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136541/", + "id": 136541, + "name": "Star Wars: The High Republic: Behind-the-Scenes Exclusive", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-behind-the-scenes-excl/4050-136541/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136616/", + "id": 136616, + "name": "Star Wars: War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters/4050-136616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136617/", + "id": 136617, + "name": "Marvel Tales: The Trials of Loki", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-the-trials-of-loki/4050-136617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136618/", + "id": 136618, + "name": "Heroes Reborn: American Knights", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-american-knights/4050-136618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136619/", + "id": 136619, + "name": "Heroes Reborn: Marvel Double Action", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-marvel-double-action/4050-136619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136620/", + "id": 136620, + "name": "Iron Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-annual/4050-136620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136622/", + "id": 136622, + "name": "Funnyboy", + "site_detail_url": "https://comicvine.gamespot.com/funnyboy/4050-136622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136623/", + "id": 136623, + "name": "Cartoon Comedy-Parade", + "site_detail_url": "https://comicvine.gamespot.com/cartoon-comedy-parade/4050-136623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136624/", + "id": 136624, + "name": "Humorama", + "site_detail_url": "https://comicvine.gamespot.com/humorama/4050-136624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136625/", + "id": 136625, + "name": "Eye, Lively Talk 'n Pictures!", + "site_detail_url": "https://comicvine.gamespot.com/eye-lively-talk-n-pictures/4050-136625/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136631/", + "id": 136631, + "name": "Joker", + "site_detail_url": "https://comicvine.gamespot.com/joker/4050-136631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136633/", + "id": 136633, + "name": "Cartoon Parade", + "site_detail_url": "https://comicvine.gamespot.com/cartoon-parade/4050-136633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136634/", + "id": 136634, + "name": "Popular Jokes", + "site_detail_url": "https://comicvine.gamespot.com/popular-jokes/4050-136634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136675/", + "id": 136675, + "name": "Guardians of the Galaxy by Al Ewing: Here We Make Our Stand", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-al-ewing-here-we-make-o/4050-136675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136676/", + "id": 136676, + "name": "Marvels Snapshots", + "site_detail_url": "https://comicvine.gamespot.com/marvels-snapshots/4050-136676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136677/", + "id": 136677, + "name": "Moon Girl and Devil Dinosaur: Bad Buzz", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-bad-buzz/4050-136677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136678/", + "id": 136678, + "name": "Spider-Woman: King In Black", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-king-in-black/4050-136678/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136679/", + "id": 136679, + "name": "Silver Surfer: Communion", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-communion/4050-136679/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136680/", + "id": 136680, + "name": "The Amazing Spider-Man: The Death of Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-the-death-of-gwen-stacy/4050-136680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136800/", + "id": 136800, + "name": "W.E.B. of Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/web-of-spider-man/4050-136800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136813/", + "id": 136813, + "name": "Heroes Reborn: Night-Gwen", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-night-gwen/4050-136813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136814/", + "id": 136814, + "name": "Heroes Reborn: Squadron Savage", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-squadron-savage/4050-136814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136822/", + "id": 136822, + "name": "The Marvel Art of George Perez", + "site_detail_url": "https://comicvine.gamespot.com/the-marvel-art-of-george-perez/4050-136822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136823/", + "id": 136823, + "name": "Black Cat: Queen In Black", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-queen-in-black/4050-136823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136824/", + "id": 136824, + "name": "Immortal Hulk: The Weakest One There Is", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-the-weakest-one-there-is/4050-136824/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136825/", + "id": 136825, + "name": "Mighty Marvel Masterworks: The Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-the-amazing-spider-man/4050-136825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136826/", + "id": 136826, + "name": "Star Wars: Bounty Hunters: Target Valance", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-bounty-hunters-target-valance/4050-136826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136827/", + "id": 136827, + "name": "Thor Epic Collection: The Final Gauntlet", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-the-final-gauntlet/4050-136827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136828/", + "id": 136828, + "name": "Spider-Gwen Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-omnibus/4050-136828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136935/", + "id": 136935, + "name": "Demon Days: Mariko", + "site_detail_url": "https://comicvine.gamespot.com/demon-days-mariko/4050-136935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136937/", + "id": 136937, + "name": "Planet-Size X-Men", + "site_detail_url": "https://comicvine.gamespot.com/planet-size-x-men/4050-136937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136939/", + "id": 136939, + "name": "Captain America Annual", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-annual/4050-136939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136946/", + "id": 136946, + "name": "Heroes Reborn: Weapon X & Final Flight", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-weapon-x-and-final-flight/4050-136946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136970/", + "id": 136970, + "name": "Captain America's Bicentennial Battles Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/captain-americas-bicentennial-battles-treasury-edi/4050-136970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136971/", + "id": 136971, + "name": "Power Pack: The Powers That Be", + "site_detail_url": "https://comicvine.gamespot.com/power-pack-the-powers-that-be/4050-136971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-136972/", + "id": 136972, + "name": "Thor By Donny Cates: Prey", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-donny-cates-prey/4050-136972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137048/", + "id": 137048, + "name": "Gamma Flight", + "site_detail_url": "https://comicvine.gamespot.com/gamma-flight/4050-137048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137049/", + "id": 137049, + "name": "Heroes Return", + "site_detail_url": "https://comicvine.gamespot.com/heroes-return/4050-137049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137050/", + "id": 137050, + "name": "Marvel's Voices: Pride", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-pride/4050-137050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137134/", + "id": 137134, + "name": "King In Black: Return of the Valkyries", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-return-of-the-valkyries/4050-137134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137136/", + "id": 137136, + "name": "Miles Morales: Ultimate End", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-ultimate-end/4050-137136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137137/", + "id": 137137, + "name": "Star Wars: Darth Vader By Greg Pak: Into The Fire", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-by-greg-pak-into-the-fire/4050-137137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137138/", + "id": 137138, + "name": "U.S.Agent: American Zealot", + "site_detail_url": "https://comicvine.gamespot.com/usagent-american-zealot/4050-137138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137139/", + "id": 137139, + "name": "Wolverine/Punisher", + "site_detail_url": "https://comicvine.gamespot.com/wolverinepunisher/4050-137139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137254/", + "id": 137254, + "name": "Black Cat Annual", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-annual/4050-137254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137255/", + "id": 137255, + "name": "Giant-Size Amazing Spider-Man: Chameleon Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-amazing-spider-man-chameleon-conspiracy/4050-137255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137256/", + "id": 137256, + "name": "The United States of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/the-united-states-of-captain-america/4050-137256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137260/", + "id": 137260, + "name": "Avengers By Jason Aaron: Enter the Phoenix", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-jason-aaron-enter-the-phoenix/4050-137260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137261/", + "id": 137261, + "name": "Fantastic Four: Clobberin' Time", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-clobberin-time/4050-137261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137263/", + "id": 137263, + "name": "King In Black", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black/4050-137263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137264/", + "id": 137264, + "name": "M.O.D.O.K.: Head Games", + "site_detail_url": "https://comicvine.gamespot.com/modok-head-games/4050-137264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137265/", + "id": 137265, + "name": "Reign of X", + "site_detail_url": "https://comicvine.gamespot.com/reign-of-x/4050-137265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137400/", + "id": 137400, + "name": "Werewolf By Night #32: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/werewolf-by-night-32-facsimile-edition/4050-137400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137402/", + "id": 137402, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-137402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137403/", + "id": 137403, + "name": "Extreme Carnage Alpha", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-alpha/4050-137403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137502/", + "id": 137502, + "name": "Black Panther: The Intergalactic Empire of Wakanda Part Four", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-the-intergalactic-empire-of-wakanda-/4050-137502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137504/", + "id": 137504, + "name": "Inhumans: Culture Shock", + "site_detail_url": "https://comicvine.gamespot.com/inhumans-culture-shock/4050-137504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137505/", + "id": 137505, + "name": "King In Black: Atlantis Attacks", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-atlantis-attacks/4050-137505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137506/", + "id": 137506, + "name": "Livewires: Clockwork Thugs, Yo", + "site_detail_url": "https://comicvine.gamespot.com/livewires-clockwork-thugs-yo/4050-137506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137507/", + "id": 137507, + "name": "Man-Thing: Whatever Knows Fear…", + "site_detail_url": "https://comicvine.gamespot.com/man-thing-whatever-knows-fear/4050-137507/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137508/", + "id": 137508, + "name": "Symbiote Spider-Man: King In Black", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-king-in-black/4050-137508/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137509/", + "id": 137509, + "name": "Wolverine Epic Collection: Blood and Claws", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-epic-collection-blood-and-claws/4050-137509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137510/", + "id": 137510, + "name": "Star Wars: Legends of the Old Republic Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-of-the-old-republic-omnibus/4050-137510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137603/", + "id": 137603, + "name": "Aliens: Aftermath", + "site_detail_url": "https://comicvine.gamespot.com/aliens-aftermath/4050-137603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137604/", + "id": 137604, + "name": "Extreme Carnage: Scream", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-scream/4050-137604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137605/", + "id": 137605, + "name": "Sinister War", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war/4050-137605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137613/", + "id": 137613, + "name": "History of the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/history-of-the-marvel-universe/4050-137613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137617/", + "id": 137617, + "name": "King In Black: Planet of the Symbiotes", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-planet-of-the-symbiotes/4050-137617/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137618/", + "id": 137618, + "name": "Loki: Mistress of Mischief", + "site_detail_url": "https://comicvine.gamespot.com/loki-mistress-of-mischief/4050-137618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137619/", + "id": 137619, + "name": "Marvel Weddings", + "site_detail_url": "https://comicvine.gamespot.com/marvel-weddings/4050-137619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137620/", + "id": 137620, + "name": "Marvel-Verse: She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-she-hulk/4050-137620/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137621/", + "id": 137621, + "name": "Mighty Marvel Masterworks: The Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-the-fantastic-four/4050-137621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137622/", + "id": 137622, + "name": "Squadron Supreme vs. Avengers", + "site_detail_url": "https://comicvine.gamespot.com/squadron-supreme-vs-avengers/4050-137622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137623/", + "id": 137623, + "name": "Taskmaster: The Rubicon Trigger", + "site_detail_url": "https://comicvine.gamespot.com/taskmaster-the-rubicon-trigger/4050-137623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137624/", + "id": 137624, + "name": "Ultimates By Al Ewing: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/ultimates-by-al-ewing-the-complete-collection/4050-137624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137695/", + "id": 137695, + "name": "Star Wars: War of the Bounty Hunters: Jabba the Hutt", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-jabba-the-hutt/4050-137695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137697/", + "id": 137697, + "name": "Extreme Carnage: Phage", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-phage/4050-137697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137698/", + "id": 137698, + "name": "Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight/4050-137698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137699/", + "id": 137699, + "name": "House of X #1: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/house-of-x-1-directors-cut/4050-137699/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137700/", + "id": 137700, + "name": "Thor Annual", + "site_detail_url": "https://comicvine.gamespot.com/thor-annual/4050-137700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137800/", + "id": 137800, + "name": "Spider-Man: India", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-india/4050-137800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137801/", + "id": 137801, + "name": "Spider-Man Team-Up: A Little Help From My Friends", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-team-up-a-little-help-from-my-friends/4050-137801/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137802/", + "id": 137802, + "name": "Generation X Epic Collection: Back To School", + "site_detail_url": "https://comicvine.gamespot.com/generation-x-epic-collection-back-to-school/4050-137802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137803/", + "id": 137803, + "name": "King In Black: Namor", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-namor/4050-137803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137807/", + "id": 137807, + "name": "Punisher Epic Collection: Return To Big Nothing", + "site_detail_url": "https://comicvine.gamespot.com/punisher-epic-collection-return-to-big-nothing/4050-137807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137808/", + "id": 137808, + "name": "The Union: The Britannia Project", + "site_detail_url": "https://comicvine.gamespot.com/the-union-the-britannia-project/4050-137808/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137880/", + "id": 137880, + "name": "Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy/4050-137880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137889/", + "id": 137889, + "name": "Symbiote Spider-Man: Crossroads", + "site_detail_url": "https://comicvine.gamespot.com/symbiote-spider-man-crossroads/4050-137889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137983/", + "id": 137983, + "name": "Conan the Barbarian Epic Collection: The Original Marvel Years: The Curse of the Golden Skull", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-epic-collection-the-original-m/4050-137983/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137986/", + "id": 137986, + "name": "Giant-Size X-Men: Tribute To Wein & Cockrum Gallery Edition", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-tribute-to-wein-and-cockrum-galle/4050-137986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137987/", + "id": 137987, + "name": "King In Black: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-avengers/4050-137987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137989/", + "id": 137989, + "name": "King In Black: Gwenom Vs. Carnage", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-gwenom-vs-carnage/4050-137989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137990/", + "id": 137990, + "name": "King In Black: Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/king-in-black-thunderbolts/4050-137990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137991/", + "id": 137991, + "name": "X-Men: Children of the Atom", + "site_detail_url": "https://comicvine.gamespot.com/x-men-children-of-the-atom/4050-137991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138048/", + "id": 138048, + "name": "Star Wars: War of the Bounty Hunters: 4-Lom & Zuckuss", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-4-lom-and-zuck/4050-138048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138049/", + "id": 138049, + "name": "Deadpool: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-black-white-and-blood/4050-138049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138050/", + "id": 138050, + "name": "Extreme Carnage: Lasher", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-lasher/4050-138050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138051/", + "id": 138051, + "name": "Guardians of the Galaxy Annual", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-annual/4050-138051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138052/", + "id": 138052, + "name": "Spirits of Vengeance: Spirit Rider", + "site_detail_url": "https://comicvine.gamespot.com/spirits-of-vengeance-spirit-rider/4050-138052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138151/", + "id": 138151, + "name": "Captain America by Dan Jurgens Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-dan-jurgens-omnibus/4050-138151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138153/", + "id": 138153, + "name": "Curse of the Man-Thing", + "site_detail_url": "https://comicvine.gamespot.com/curse-of-the-man-thing/4050-138153/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138154/", + "id": 138154, + "name": "Excalibur by Tini Howard", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-by-tini-howard/4050-138154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138155/", + "id": 138155, + "name": "Maestro: War and Pax", + "site_detail_url": "https://comicvine.gamespot.com/maestro-war-and-pax/4050-138155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138156/", + "id": 138156, + "name": "Miles Morales: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-marvel-tales/4050-138156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138157/", + "id": 138157, + "name": "New Mutants by Vita Ayala", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-by-vita-ayala/4050-138157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138158/", + "id": 138158, + "name": "New Mutants Epic Collection: Sudden Death", + "site_detail_url": "https://comicvine.gamespot.com/new-mutants-epic-collection-sudden-death/4050-138158/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138159/", + "id": 138159, + "name": "Wolverine: Black, White & Blood Treasury Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-black-white-and-blood-treasury-edition/4050-138159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138206/", + "id": 138206, + "name": "Avengers: Tech-On", + "site_detail_url": "https://comicvine.gamespot.com/avengers-tech-on/4050-138206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138207/", + "id": 138207, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4050-138207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138214/", + "id": 138214, + "name": "Wink", + "site_detail_url": "https://comicvine.gamespot.com/wink/4050-138214/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138271/", + "id": 138271, + "name": "Amazing Spider-Man By Nick Spencer: King's Ransom", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-kings-ransom/4050-138271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138272/", + "id": 138272, + "name": "Captain America Epic Collection: The Captain", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-epic-collection-the-captain/4050-138272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138273/", + "id": 138273, + "name": "Iron Fist: Heart of the Dragon", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist-heart-of-the-dragon/4050-138273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138274/", + "id": 138274, + "name": "Star Wars: Doctor Aphra: The Engine Job", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-the-engine-job/4050-138274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138275/", + "id": 138275, + "name": "Marvel: August 1961 Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-august-1961-omnibus/4050-138275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138276/", + "id": 138276, + "name": "X-Factor By Peter David Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-factor-by-peter-david-omnibus/4050-138276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138331/", + "id": 138331, + "name": "Breezy", + "site_detail_url": "https://comicvine.gamespot.com/breezy/4050-138331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138340/", + "id": 138340, + "name": "Free Comic Book Day 2021: Avengers/Hulk", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2021-avengershulk/4050-138340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138341/", + "id": 138341, + "name": "Free Comic Book Day 2021: Spider-Man/Venom", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2021-spider-manvenom/4050-138341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138342/", + "id": 138342, + "name": "Warhammer 40,000: Sisters of Battle", + "site_detail_url": "https://comicvine.gamespot.com/warhammer-40000-sisters-of-battle/4050-138342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138343/", + "id": 138343, + "name": "X-Men: The Trial of Magneto", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-trial-of-magneto/4050-138343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138345/", + "id": 138345, + "name": "Kang the Conqueror", + "site_detail_url": "https://comicvine.gamespot.com/kang-the-conqueror/4050-138345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138346/", + "id": 138346, + "name": "Miles Morales: Spider-Man Annual", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-annual/4050-138346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138454/", + "id": 138454, + "name": "Heroes Reborn: America's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-americas-mightiest-heroes/4050-138454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138455/", + "id": 138455, + "name": "Marvel-Verse: Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-doctor-strange/4050-138455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138456/", + "id": 138456, + "name": "Mighty Marvel Masterworks: The X-Men", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-the-x-men/4050-138456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138527/", + "id": 138527, + "name": "Cable: Reloaded", + "site_detail_url": "https://comicvine.gamespot.com/cable-reloaded/4050-138527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138528/", + "id": 138528, + "name": "Avengers Annual", + "site_detail_url": "https://comicvine.gamespot.com/avengers-annual/4050-138528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138529/", + "id": 138529, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk/4050-138529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138530/", + "id": 138530, + "name": "Extreme Carnage: Riot", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-riot/4050-138530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138531/", + "id": 138531, + "name": "Marvel's Voices: Identity", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-identity/4050-138531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138532/", + "id": 138532, + "name": "Spider-Man: Life Story Annual", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-life-story-annual/4050-138532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138533/", + "id": 138533, + "name": "Winter Guard", + "site_detail_url": "https://comicvine.gamespot.com/winter-guard/4050-138533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138613/", + "id": 138613, + "name": "Fantastic Four Epic Collection: Battle of the Behemoths", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-battle-of-the-behem/4050-138613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138614/", + "id": 138614, + "name": "Star Wars: The High Republic: There Is No Fear", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-there-is-no-fear/4050-138614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138615/", + "id": 138615, + "name": "The Unbeatable Squirrel Girl: Squirrels Just Wanna Have Fun", + "site_detail_url": "https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-squirrels-just-wanna-/4050-138615/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138616/", + "id": 138616, + "name": "Venom By Donny Cates: King In Black", + "site_detail_url": "https://comicvine.gamespot.com/venom-by-donny-cates-king-in-black/4050-138616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138656/", + "id": 138656, + "name": "Ultimate Comics Fallout #4: Facsimile Edition", + "site_detail_url": "https://comicvine.gamespot.com/ultimate-comics-fallout-4-facsimile-edition/4050-138656/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138657/", + "id": 138657, + "name": "Demon Days: Cursed Web", + "site_detail_url": "https://comicvine.gamespot.com/demon-days-cursed-web/4050-138657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138658/", + "id": 138658, + "name": "Dark Ages", + "site_detail_url": "https://comicvine.gamespot.com/dark-ages/4050-138658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138659/", + "id": 138659, + "name": "The Last Annihilation: Wiccan & Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/the-last-annihilation-wiccan-and-hulkling/4050-138659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138720/", + "id": 138720, + "name": "What If?: The Original Marvel Series Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/what-if-the-original-marvel-series-omnibus/4050-138720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138721/", + "id": 138721, + "name": "Amazing Spider-Man By Nick Spencer: Chameleon Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-chameleon-consp/4050-138721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138722/", + "id": 138722, + "name": "Black Cat: I'll Take Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-ill-take-manhattan/4050-138722/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138723/", + "id": 138723, + "name": "Captain America By Ta-Nehisi Coates: All Die Young Part Two", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-ta-nehisi-coates-all-die-young-/4050-138723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138724/", + "id": 138724, + "name": "Doctor Strange Epic Collection: The Vampiric Verses", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-the-vampiric-verses/4050-138724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138725/", + "id": 138725, + "name": "Eternals: Only Death Is Eternal", + "site_detail_url": "https://comicvine.gamespot.com/eternals-only-death-is-eternal/4050-138725/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138726/", + "id": 138726, + "name": "Heroes Reborn: America's Mightiest Heroes Companion", + "site_detail_url": "https://comicvine.gamespot.com/heroes-reborn-americas-mightiest-heroes-companion/4050-138726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138729/", + "id": 138729, + "name": "Marauders By Gerry Duggan", + "site_detail_url": "https://comicvine.gamespot.com/marauders-by-gerry-duggan/4050-138729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138730/", + "id": 138730, + "name": "Thor & Loki: Double Trouble", + "site_detail_url": "https://comicvine.gamespot.com/thor-and-loki-double-trouble/4050-138730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138755/", + "id": 138755, + "name": "Marvel Super Heroes Computer Fun", + "site_detail_url": "https://comicvine.gamespot.com/marvel-super-heroes-computer-fun/4050-138755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138795/", + "id": 138795, + "name": "9/11 20th Anniversary Tribute: The Four Fives", + "site_detail_url": "https://comicvine.gamespot.com/911-20th-anniversary-tribute-the-four-fives/4050-138795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138796/", + "id": 138796, + "name": "Ka-Zar: Marvel Tales", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-marvel-tales/4050-138796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138797/", + "id": 138797, + "name": "Marvel Portfolio: In-Hyuk Lee", + "site_detail_url": "https://comicvine.gamespot.com/marvel-portfolio-in-hyuk-lee/4050-138797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138799/", + "id": 138799, + "name": "Extreme Carnage: Toxin", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-toxin/4050-138799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138800/", + "id": 138800, + "name": "Ka-Zar: Lord of the Savage Land", + "site_detail_url": "https://comicvine.gamespot.com/ka-zar-lord-of-the-savage-land/4050-138800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138889/", + "id": 138889, + "name": "Captain America by Rick Remender Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-by-rick-remender-omnibus/4050-138889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138890/", + "id": 138890, + "name": "Cosmic Ghost Rider Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/cosmic-ghost-rider-omnibus/4050-138890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138891/", + "id": 138891, + "name": "Loki Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/loki-omnibus/4050-138891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138892/", + "id": 138892, + "name": "Mighty Marvel Masterworks: The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-the-avengers/4050-138892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138893/", + "id": 138893, + "name": "Ms. Marvel: Game Over", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-game-over/4050-138893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138926/", + "id": 138926, + "name": "Marvel Hero Project: Adonis", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-adonis/4050-138926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138927/", + "id": 138927, + "name": "Marvel Hero Project: Austin", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-austin/4050-138927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138928/", + "id": 138928, + "name": "Marvel Hero Project: Daniella", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-daniella/4050-138928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138929/", + "id": 138929, + "name": "Marvel Hero Project: Elijah", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-elijah/4050-138929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138930/", + "id": 138930, + "name": "Marvel Hero Project: Genesis", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-genesis/4050-138930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138931/", + "id": 138931, + "name": "Star Wars: War of the Bounty Hunters: Boushh", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-boushh/4050-138931/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138933/", + "id": 138933, + "name": "Eternals: Thanos Rises", + "site_detail_url": "https://comicvine.gamespot.com/eternals-thanos-rises/4050-138933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138934/", + "id": 138934, + "name": "Extreme Carnage: Agony", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-agony/4050-138934/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138937/", + "id": 138937, + "name": "The Last Annihilation: Wakanda", + "site_detail_url": "https://comicvine.gamespot.com/the-last-annihilation-wakanda/4050-138937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138938/", + "id": 138938, + "name": "L'Étonnant Spider-Man: La Rondelle de Troie", + "site_detail_url": "https://comicvine.gamespot.com/letonnant-spider-man-la-rondelle-de-troie/4050-138938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138962/", + "id": 138962, + "name": "Marvel Hero Project: Tokata", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-tokata/4050-138962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138963/", + "id": 138963, + "name": "Marvel Hero Project: Sidney", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-sidney/4050-138963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138964/", + "id": 138964, + "name": "Marvel Hero Project: Rebekah", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-rebekah/4050-138964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138965/", + "id": 138965, + "name": "Marvel Hero Project: Lorelei", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-lorelei/4050-138965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138966/", + "id": 138966, + "name": "Marvel Hero Project: Jordan", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-jordan/4050-138966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138967/", + "id": 138967, + "name": "Marvel Hero Project: Jayera", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-jayera/4050-138967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138968/", + "id": 138968, + "name": "Marvel Hero Project: Jahkil", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-jahkil/4050-138968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138969/", + "id": 138969, + "name": "Marvel Hero Project: Izzy", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-izzy/4050-138969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138970/", + "id": 138970, + "name": "Marvel Hero Project: Hailey", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-hailey/4050-138970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138971/", + "id": 138971, + "name": "Marvel Hero Project: High-Flying Hailey", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-high-flying-hailey/4050-138971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138986/", + "id": 138986, + "name": "Miles Morales: The Clone Saga", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-the-clone-saga/4050-138986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138987/", + "id": 138987, + "name": "Savage Avengers: King in Black", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-king-in-black/4050-138987/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138997/", + "id": 138997, + "name": "John Carpenter's Tales of Science Fiction: Vortex 2.0", + "site_detail_url": "https://comicvine.gamespot.com/john-carpenters-tales-of-science-fiction-vortex-20/4050-138997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139004/", + "id": 139004, + "name": "Shang-Chi and the Legend of the Ten Rings: Who Guards My Sleep?", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-and-the-legend-of-the-ten-rings-who-guar/4050-139004/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139040/", + "id": 139040, + "name": "Amazing Fantasy: Prelude Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy-prelude-infinity-comic/4050-139040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139041/", + "id": 139041, + "name": "Black Panther Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-infinity-comic-primer/4050-139041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139042/", + "id": 139042, + "name": "Black Widow Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-infinity-comic/4050-139042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139043/", + "id": 139043, + "name": "Captain America Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-infinity-comic/4050-139043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139044/", + "id": 139044, + "name": "Captain Marvel Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-infinity-comic-primer/4050-139044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139045/", + "id": 139045, + "name": "Giant-Size Little Marvels Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-little-marvels-infinity-comic/4050-139045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139047/", + "id": 139047, + "name": "It's Jeff Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/its-jeff-infinity-comic/4050-139047/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139048/", + "id": 139048, + "name": "Moon Girl and Devil Dinosaur Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/moon-girl-and-devil-dinosaur-infinity-comic-primer/4050-139048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139049/", + "id": 139049, + "name": "Moon Knight Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-infinity-comic-primer/4050-139049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139050/", + "id": 139050, + "name": "Ms. Marvel Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-infinity-comic-primer/4050-139050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139051/", + "id": 139051, + "name": "Shang-Chi Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-infinity-comic/4050-139051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139052/", + "id": 139052, + "name": "Spider-Gwen Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-infinity-comic-primer/4050-139052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139053/", + "id": 139053, + "name": "Spider-Man Loves Mary Jane Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-loves-mary-jane-infinity-comic/4050-139053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139054/", + "id": 139054, + "name": "Venom Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/venom-infinity-comic-primer/4050-139054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139055/", + "id": 139055, + "name": "X-Men Unlimited Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited-infinity-comic/4050-139055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139058/", + "id": 139058, + "name": "Amazing Spider-Man Infinity Comic Primer", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-infinity-comic-primer/4050-139058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139106/", + "id": 139106, + "name": "Marvel Previews", + "site_detail_url": "https://comicvine.gamespot.com/marvel-previews/4050-139106/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139124/", + "id": 139124, + "name": "X-Men: The Onslaught Revelation", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-onslaught-revelation/4050-139124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139125/", + "id": 139125, + "name": "Death of Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange/4050-139125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139160/", + "id": 139160, + "name": "Daredevil By Chip Zdarsky: Doing Time", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-doing-time/4050-139160/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139161/", + "id": 139161, + "name": "Incredible Hulk Epic Collection: Crisis On Counter-Earth", + "site_detail_url": "https://comicvine.gamespot.com/incredible-hulk-epic-collection-crisis-on-counter-/4050-139161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139162/", + "id": 139162, + "name": "S.W.O.R.D. By Al Ewing", + "site_detail_url": "https://comicvine.gamespot.com/sword-by-al-ewing/4050-139162/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139266/", + "id": 139266, + "name": "Venom/Carnage Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/venomcarnage-infinity-comic/4050-139266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139289/", + "id": 139289, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4050-139289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139292/", + "id": 139292, + "name": "Darkhold Alpha", + "site_detail_url": "https://comicvine.gamespot.com/darkhold-alpha/4050-139292/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139293/", + "id": 139293, + "name": "Extreme Carnage Omega", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage-omega/4050-139293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139294/", + "id": 139294, + "name": "Captain Marvel: Strange Magic", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-strange-magic/4050-139294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139394/", + "id": 139394, + "name": "Deadpool: Invisible Touch Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-invisible-touch-infinity-comic/4050-139394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139433/", + "id": 139433, + "name": "Eternals: Celestia", + "site_detail_url": "https://comicvine.gamespot.com/eternals-celestia/4050-139433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139434/", + "id": 139434, + "name": "Killraven Epic Collection: Warrior of the Worlds", + "site_detail_url": "https://comicvine.gamespot.com/killraven-epic-collection-warrior-of-the-worlds/4050-139434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139435/", + "id": 139435, + "name": "Runaways by Rainbow Rowell: Come Away With Me", + "site_detail_url": "https://comicvine.gamespot.com/runaways-by-rainbow-rowell-come-away-with-me/4050-139435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139506/", + "id": 139506, + "name": "Popular Cartoons", + "site_detail_url": "https://comicvine.gamespot.com/popular-cartoons/4050-139506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139510/", + "id": 139510, + "name": "Ghost Rider: Kushala Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-kushala-infinity-comic/4050-139510/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139561/", + "id": 139561, + "name": "Star Wars: The High Republic: Trail of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-trail-of-shadows/4050-139561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139563/", + "id": 139563, + "name": "Black Panther Legends", + "site_detail_url": "https://comicvine.gamespot.com/black-panther-legends/4050-139563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139564/", + "id": 139564, + "name": "The Darkhold: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-iron-man/4050-139564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139565/", + "id": 139565, + "name": "Eternals Forever", + "site_detail_url": "https://comicvine.gamespot.com/eternals-forever/4050-139565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139568/", + "id": 139568, + "name": "Marvel Tales: Ms. Marvel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-ms-marvel/4050-139568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139569/", + "id": 139569, + "name": "Avengers Mech Strike", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mech-strike/4050-139569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139570/", + "id": 139570, + "name": "Mighty Marvel Masterworks: The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-the-mighty-thor/4050-139570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139571/", + "id": 139571, + "name": "Ms. Marvel: Something New", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-something-new/4050-139571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139572/", + "id": 139572, + "name": "Spider-Man: The Spider's Shadow", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-the-spiders-shadow/4050-139572/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139711/", + "id": 139711, + "name": "Phoenix Song: Echo", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-song-echo/4050-139711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139776/", + "id": 139776, + "name": "Alien: Bloodlines", + "site_detail_url": "https://comicvine.gamespot.com/alien-bloodlines/4050-139776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139777/", + "id": 139777, + "name": "The Amazing Spider-Man Epic Collection: The Death of Captain Stacy", + "site_detail_url": "https://comicvine.gamespot.com/the-amazing-spider-man-epic-collection-the-death-o/4050-139777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139778/", + "id": 139778, + "name": "Iron Man: Books of Korvac II: Overclock", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-books-of-korvac-ii-overclock/4050-139778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139779/", + "id": 139779, + "name": "Marvel Masterworks: The Tomb of Dracula", + "site_detail_url": "https://comicvine.gamespot.com/marvel-masterworks-the-tomb-of-dracula/4050-139779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139780/", + "id": 139780, + "name": "Strange Academy: Bright Side", + "site_detail_url": "https://comicvine.gamespot.com/strange-academy-bright-side/4050-139780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139818/", + "id": 139818, + "name": "Spine-Tingling Spider-Man: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/spine-tingling-spider-man-infinity-comic/4050-139818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139830/", + "id": 139830, + "name": "Cartoon Capers", + "site_detail_url": "https://comicvine.gamespot.com/cartoon-capers/4050-139830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139833/", + "id": 139833, + "name": "Star Wars: War of the Bounty Hunters: IG-88", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-ig-88/4050-139833/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139834/", + "id": 139834, + "name": "Mighty Marvel Holiday Special: Halloween with the Rhino Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-holiday-special-halloween-with-the-r/4050-139834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139835/", + "id": 139835, + "name": "The Darkhold: Blade", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-blade/4050-139835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139909/", + "id": 139909, + "name": "Black Knight: Curse of the Ebony Blade", + "site_detail_url": "https://comicvine.gamespot.com/black-knight-curse-of-the-ebony-blade/4050-139909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139910/", + "id": 139910, + "name": "Black Widow by Kelly Thompson: I Am the Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-by-kelly-thompson-i-am-the-black-widow/4050-139910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139911/", + "id": 139911, + "name": "Children of the Atom by Vita Ayala", + "site_detail_url": "https://comicvine.gamespot.com/children-of-the-atom-by-vita-ayala/4050-139911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139912/", + "id": 139912, + "name": "Hawkeye by Fraction & Aja: The Saga of Barton and Bishop", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-by-fraction-and-aja-the-saga-of-barton-and/4050-139912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139913/", + "id": 139913, + "name": "Immortal Hulk: Great Power", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-great-power/4050-139913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139914/", + "id": 139914, + "name": "Marvel-Verse: Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-hawkeye/4050-139914/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139919/", + "id": 139919, + "name": "Hulkling & Wiccan Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/hulkling-and-wiccan-infinity-comic/4050-139919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139929/", + "id": 139929, + "name": "Halo - Fall of Reach: Covenant", + "site_detail_url": "https://comicvine.gamespot.com/halo-fall-of-reach-covenant/4050-139929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139949/", + "id": 139949, + "name": "Death of Doctor Strange: The Avengers", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-the-avengers/4050-139949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139950/", + "id": 139950, + "name": "Strange Academy Presents: The Death of Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/strange-academy-presents-the-death-of-doctor-stran/4050-139950/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139951/", + "id": 139951, + "name": "Daredevil Halloween Comic Book Extravaganza", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-halloween-comic-book-extravaganza/4050-139951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139952/", + "id": 139952, + "name": "Hawkeye Halloween Comic Book Extravaganza", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-halloween-comic-book-extravaganza/4050-139952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139953/", + "id": 139953, + "name": "Miles Morales: Spider-Man Halloween Comic Book Extravaganza", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-halloween-comic-book-extr/4050-139953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139954/", + "id": 139954, + "name": "Star Wars: The High Republic Halloween Comic Book Extravaganza", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-halloween-comic-book-e/4050-139954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139955/", + "id": 139955, + "name": "America Chavez: Made In The USA", + "site_detail_url": "https://comicvine.gamespot.com/america-chavez-made-in-the-usa/4050-139955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139956/", + "id": 139956, + "name": "Carnage: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/carnage-black-white-and-blood/4050-139956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139957/", + "id": 139957, + "name": "Fantastic Four: The Bride of Doom", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-the-bride-of-doom/4050-139957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139958/", + "id": 139958, + "name": "Fantastic Four Epic Collection: This Flame, This Fury", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-this-flame-this-fur/4050-139958/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-139959/", + "id": 139959, + "name": "Kull the Destroyer: The Original Marvel Years Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/kull-the-destroyer-the-original-marvel-years-omnib/4050-139959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140084/", + "id": 140084, + "name": "Venom", + "site_detail_url": "https://comicvine.gamespot.com/venom/4050-140084/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140088/", + "id": 140088, + "name": "The Thing", + "site_detail_url": "https://comicvine.gamespot.com/the-thing/4050-140088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140090/", + "id": 140090, + "name": "The Darkhold: Wasp", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-wasp/4050-140090/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140125/", + "id": 140125, + "name": "Fantastic Four: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-infinity-comic/4050-140125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140140/", + "id": 140140, + "name": "Marvel Tales: Genis-Vell", + "site_detail_url": "https://comicvine.gamespot.com/marvel-tales-genis-vell/4050-140140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140141/", + "id": 140141, + "name": "The Fantastic Four Anniversary Tribute", + "site_detail_url": "https://comicvine.gamespot.com/the-fantastic-four-anniversary-tribute/4050-140141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140169/", + "id": 140169, + "name": "Shang-Chi: Brothers & Sisters Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-brothers-and-sisters-infinity-comic/4050-140169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140213/", + "id": 140213, + "name": "Hulk", + "site_detail_url": "https://comicvine.gamespot.com/hulk/4050-140213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140220/", + "id": 140220, + "name": "Hawkeye: Kate Bishop", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-kate-bishop/4050-140220/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140221/", + "id": 140221, + "name": "X-Force: Killshot Anniversary Special", + "site_detail_url": "https://comicvine.gamespot.com/x-force-killshot-anniversary-special/4050-140221/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140222/", + "id": 140222, + "name": "Black Panther", + "site_detail_url": "https://comicvine.gamespot.com/black-panther/4050-140222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140223/", + "id": 140223, + "name": "Star Wars: Life Day", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-life-day/4050-140223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140238/", + "id": 140238, + "name": "X-Corp by Tini Howard", + "site_detail_url": "https://comicvine.gamespot.com/x-corp-by-tini-howard/4050-140238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140239/", + "id": 140239, + "name": "X-Men Legends: The Missing Links", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-the-missing-links/4050-140239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140242/", + "id": 140242, + "name": "Lucky the Pizza Dog: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/lucky-the-pizza-dog-infinity-comic/4050-140242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140248/", + "id": 140248, + "name": "X-Men Epic Collection: I, Magneto", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-i-magneto/4050-140248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140277/", + "id": 140277, + "name": "The Darkhold: Black Bolt", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-black-bolt/4050-140277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140282/", + "id": 140282, + "name": "Death of Doctor Strange: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-spider-man/4050-140282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140283/", + "id": 140283, + "name": "Death of Doctor Strange: White Fox", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-white-fox/4050-140283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140337/", + "id": 140337, + "name": "Kellogg’s Frosted Flakes Presents Spider-Man and Tony the Tiger", + "site_detail_url": "https://comicvine.gamespot.com/kelloggs-frosted-flakes-presents-spider-man-and-to/4050-140337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140339/", + "id": 140339, + "name": "Thomas the Tank Engine & Friends", + "site_detail_url": "https://comicvine.gamespot.com/thomas-the-tank-engine-and-friends/4050-140339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140341/", + "id": 140341, + "name": "How to Read Comics the Marvel Way", + "site_detail_url": "https://comicvine.gamespot.com/how-to-read-comics-the-marvel-way/4050-140341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140354/", + "id": 140354, + "name": "Devil's Reign", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign/4050-140354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140355/", + "id": 140355, + "name": "Giant-Sized Black Cat: Infinity Score", + "site_detail_url": "https://comicvine.gamespot.com/giant-sized-black-cat-infinity-score/4050-140355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140356/", + "id": 140356, + "name": "Marvel's Voices: Comunidades", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-comunidades/4050-140356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140357/", + "id": 140357, + "name": "Death of Doctor Strange: Blade", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-blade/4050-140357/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140358/", + "id": 140358, + "name": "Captain America/Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/captain-americairon-man/4050-140358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140398/", + "id": 140398, + "name": "Star Wars: Crimson Reign", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-crimson-reign/4050-140398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140442/", + "id": 140442, + "name": "Demon Days: Rising Storm", + "site_detail_url": "https://comicvine.gamespot.com/demon-days-rising-storm/4050-140442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140443/", + "id": 140443, + "name": "Wastelanders: Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wastelanders-wolverine/4050-140443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140445/", + "id": 140445, + "name": "X-Men: Hellfire Gala – The Red Carpet Collection", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hellfire-gala-the-red-carpet-collection/4050-140445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140469/", + "id": 140469, + "name": "Deadpool Epic Collection: The Circle Chase", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-epic-collection-the-circle-chase/4050-140469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140532/", + "id": 140532, + "name": "Avengers Forever", + "site_detail_url": "https://comicvine.gamespot.com/avengers-forever/4050-140532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140533/", + "id": 140533, + "name": "Ms. Marvel: Beyond the Limit", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-beyond-the-limit/4050-140533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140534/", + "id": 140534, + "name": "The Darkhold: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-spider-man/4050-140534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140535/", + "id": 140535, + "name": "Wastelanders: Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/wastelanders-hawkeye/4050-140535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140540/", + "id": 140540, + "name": "King Conan", + "site_detail_url": "https://comicvine.gamespot.com/king-conan/4050-140540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140558/", + "id": 140558, + "name": "Secrets of the Avengers #50", + "site_detail_url": "https://comicvine.gamespot.com/secrets-of-the-avengers-50/4050-140558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140559/", + "id": 140559, + "name": "Demon Days: X-Men: Creator's Cut", + "site_detail_url": "https://comicvine.gamespot.com/demon-days-x-men-creators-cut/4050-140559/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140567/", + "id": 140567, + "name": "Immortal Hulk: Of Hell And Of Death", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-of-hell-and-of-death/4050-140567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140623/", + "id": 140623, + "name": "Timeless", + "site_detail_url": "https://comicvine.gamespot.com/timeless/4050-140623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140641/", + "id": 140641, + "name": "Wastelanders: Star-Lord", + "site_detail_url": "https://comicvine.gamespot.com/wastelanders-star-lord/4050-140641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140787/", + "id": 140787, + "name": "Elektra: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/elektra-black-white-and-blood/4050-140787/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140788/", + "id": 140788, + "name": "The Darkhold Omega", + "site_detail_url": "https://comicvine.gamespot.com/the-darkhold-omega/4050-140788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140789/", + "id": 140789, + "name": "Wastelanders: Doom", + "site_detail_url": "https://comicvine.gamespot.com/wastelanders-doom/4050-140789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141051/", + "id": 141051, + "name": "Black Cat: Infinity Score", + "site_detail_url": "https://comicvine.gamespot.com/black-cat-infinity-score/4050-141051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141052/", + "id": 141052, + "name": "Conan the Barbarian Epic Collection: The Original Marvel Years: Queen of the Black Coast", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-epic-collection-the-original-m/4050-141052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141053/", + "id": 141053, + "name": "Star Wars: War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters/4050-141053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141156/", + "id": 141156, + "name": "Star Wars: The High Republic: Eye of the Storm", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-eye-of-the-storm/4050-141156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141175/", + "id": 141175, + "name": "Daredevil: Woman Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-woman-without-fear/4050-141175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141176/", + "id": 141176, + "name": "Death of Doctor Strange: Bloodstone", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-bloodstone/4050-141176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141177/", + "id": 141177, + "name": "Devil's Reign: Superior Four", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-superior-four/4050-141177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141178/", + "id": 141178, + "name": "Marvel Voices: Heritage", + "site_detail_url": "https://comicvine.gamespot.com/marvel-voices-heritage/4050-141178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141179/", + "id": 141179, + "name": "Wastelanders: Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/wastelanders-black-widow/4050-141179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141325/", + "id": 141325, + "name": "Ben Reilly: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/ben-reilly-spider-man/4050-141325/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141326/", + "id": 141326, + "name": "Death of Doctor Strange: X-Men/Black Knight", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-x-menblack-knight/4050-141326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141327/", + "id": 141327, + "name": "Devil's Reign: Villains for Hire", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-villains-for-hire/4050-141327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141328/", + "id": 141328, + "name": "Devil's Reign: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-x-men/4050-141328/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141329/", + "id": 141329, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4050-141329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141330/", + "id": 141330, + "name": "Silk", + "site_detail_url": "https://comicvine.gamespot.com/silk/4050-141330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141331/", + "id": 141331, + "name": "Silver Surfer Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/silver-surfer-rebirth/4050-141331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141332/", + "id": 141332, + "name": "X Lives of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/x-lives-of-wolverine/4050-141332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141378/", + "id": 141378, + "name": "Spider-Bot: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/spider-bot-infinity-comic/4050-141378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141396/", + "id": 141396, + "name": "Hawkeye: My Life as a Weapon: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-my-life-as-a-weapon-infinity-comic/4050-141396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141397/", + "id": 141397, + "name": "Eternals: The 500 Year War: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/eternals-the-500-year-war-infinity-comic/4050-141397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141398/", + "id": 141398, + "name": "Eternals by Gaiman & Romita Jr.: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/eternals-by-gaiman-and-romita-jr-infinity-comic/4050-141398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141426/", + "id": 141426, + "name": "Life of Wolverine: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/life-of-wolverine-infinity-comic/4050-141426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141427/", + "id": 141427, + "name": "Mighty Marvel Holiday Special: Iceman's New Year's Resolutions: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-holiday-special-icemans-new-years-re/4050-141427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141428/", + "id": 141428, + "name": "Mighty Marvel Holiday Special: Happy Holidays, Mr. Howlett: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-holiday-special-happy-holidays-mr-ho/4050-141428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141457/", + "id": 141457, + "name": "Mary Jane & Black Cat: Beyond", + "site_detail_url": "https://comicvine.gamespot.com/mary-jane-and-black-cat-beyond/4050-141457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141458/", + "id": 141458, + "name": "Devil's Reign: Winter Soldier", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-winter-soldier/4050-141458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141459/", + "id": 141459, + "name": "Marauders Annual", + "site_detail_url": "https://comicvine.gamespot.com/marauders-annual/4050-141459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141460/", + "id": 141460, + "name": "X Deaths of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/x-deaths-of-wolverine/4050-141460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141461/", + "id": 141461, + "name": "X-Men: Hellfire Gala ", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hellfire-gala/4050-141461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141463/", + "id": 141463, + "name": "Spider-Man and the Fantastic Four in Bubble Trouble", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-in-bubble-troubl/4050-141463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141472/", + "id": 141472, + "name": "The Heist", + "site_detail_url": "https://comicvine.gamespot.com/the-heist/4050-141472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141473/", + "id": 141473, + "name": "Amazing Spider-Man featuring the Silver Surfer Magazine", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-featuring-the-silver-surfer-mag/4050-141473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141490/", + "id": 141490, + "name": "X-Cellent", + "site_detail_url": "https://comicvine.gamespot.com/x-cellent/4050-141490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141523/", + "id": 141523, + "name": "Savage Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/savage-spider-man/4050-141523/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141524/", + "id": 141524, + "name": "Sabretooth", + "site_detail_url": "https://comicvine.gamespot.com/sabretooth/4050-141524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141525/", + "id": 141525, + "name": "Fantastic Four: Reckoning War Alpha", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-reckoning-war-alpha/4050-141525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141527/", + "id": 141527, + "name": "Star Wars: The Halcyon Legacy", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-halcyon-legacy/4050-141527/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141588/", + "id": 141588, + "name": "The Secret X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-secret-x-men/4050-141588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141589/", + "id": 141589, + "name": "Maestro: World War M", + "site_detail_url": "https://comicvine.gamespot.com/maestro-world-war-m/4050-141589/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141607/", + "id": 141607, + "name": "Star Wars: War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters/4050-141607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141608/", + "id": 141608, + "name": "Star Wars: Bounty Hunters: War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-bounty-hunters-war-of-the-bounty-hunters/4050-141608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141609/", + "id": 141609, + "name": "Star Wars: Darth Vader by Greg Pak: War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-by-greg-pak-war-of-the-bount/4050-141609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141621/", + "id": 141621, + "name": "Marvel Hero Project: Gitanjali", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-gitanjali/4050-141621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141622/", + "id": 141622, + "name": "Marvel Hero Project: Robbie", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-robbie/4050-141622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141623/", + "id": 141623, + "name": "Marvel Hero Project: Salvador", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-salvador/4050-141623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141624/", + "id": 141624, + "name": "Marvel Hero Project: Seamus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-hero-project-seamus/4050-141624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141626/", + "id": 141626, + "name": "Star Wars: Doctor Aphra: War of the Bounty Hunters", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-doctor-aphra-war-of-the-bounty-hunters/4050-141626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141628/", + "id": 141628, + "name": "Star Wars: War of the Bounty Hunters Companion", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-war-of-the-bounty-hunters-companion/4050-141628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141629/", + "id": 141629, + "name": "Star Wars: The High Republic: The Heart of Drengir", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-the-heart-of-drengir/4050-141629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141631/", + "id": 141631, + "name": "Iron Fist", + "site_detail_url": "https://comicvine.gamespot.com/iron-fist/4050-141631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141633/", + "id": 141633, + "name": "Marvel's Voices: Legacy", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-legacy/4050-141633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141649/", + "id": 141649, + "name": "Spider-Men: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/spider-men-infinity-comic/4050-141649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141650/", + "id": 141650, + "name": "Mighty Marvel Holiday Special: Year of the Wong: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-holiday-special-year-of-the-wong-inf/4050-141650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141651/", + "id": 141651, + "name": "Mighty Marvel Holiday Special: Ghost Ridin' to Love: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-holiday-special-ghost-ridin-to-love-/4050-141651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141704/", + "id": 141704, + "name": "Way of X By Si Spurrier", + "site_detail_url": "https://comicvine.gamespot.com/way-of-x-by-si-spurrier/4050-141704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141707/", + "id": 141707, + "name": "Ghost Rider", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider/4050-141707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141708/", + "id": 141708, + "name": "Carnage Forever", + "site_detail_url": "https://comicvine.gamespot.com/carnage-forever/4050-141708/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141784/", + "id": 141784, + "name": "Strange", + "site_detail_url": "https://comicvine.gamespot.com/strange/4050-141784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141785/", + "id": 141785, + "name": "Devil's Reign: Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-spider-man/4050-141785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141786/", + "id": 141786, + "name": "What If...? Miles Morales", + "site_detail_url": "https://comicvine.gamespot.com/what-if-miles-morales/4050-141786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141806/", + "id": 141806, + "name": "Conan the Barbarian by Jim Zub: Land of the Lotus", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-by-jim-zub-land-of-the-lotus/4050-141806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141818/", + "id": 141818, + "name": "X-Men By Gerry Duggan", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-gerry-duggan/4050-141818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141831/", + "id": 141831, + "name": "X-Men: The Trial of Magneto", + "site_detail_url": "https://comicvine.gamespot.com/x-men-the-trial-of-magneto/4050-141831/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141832/", + "id": 141832, + "name": "Marvel Meow: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-meow-infinity-comic/4050-141832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141836/", + "id": 141836, + "name": "Fantastic Four: Eternal Flame", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-eternal-flame/4050-141836/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141841/", + "id": 141841, + "name": "Women of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/women-of-marvel/4050-141841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141842/", + "id": 141842, + "name": "Spider-Gwen: Gwenverse", + "site_detail_url": "https://comicvine.gamespot.com/spider-gwen-gwenverse/4050-141842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141843/", + "id": 141843, + "name": "Punisher", + "site_detail_url": "https://comicvine.gamespot.com/punisher/4050-141843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141844/", + "id": 141844, + "name": "Devil's Reign: Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/devils-reign-moon-knight/4050-141844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141845/", + "id": 141845, + "name": "Captain Carter", + "site_detail_url": "https://comicvine.gamespot.com/captain-carter/4050-141845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141846/", + "id": 141846, + "name": "Star Wars: Han Solo & Chewbacca ", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-han-solo-and-chewbacca/4050-141846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141862/", + "id": 141862, + "name": "Beta Ray Bill: Argent Star", + "site_detail_url": "https://comicvine.gamespot.com/beta-ray-bill-argent-star/4050-141862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141863/", + "id": 141863, + "name": "Avengers Epic Collection: Taking A.I.M.", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-taking-aim/4050-141863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141871/", + "id": 141871, + "name": "Marvel Fairy Tales Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fairy-tales-infinity-comic/4050-141871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141883/", + "id": 141883, + "name": "Alligator Loki Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/alligator-loki-infinity-comic/4050-141883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141912/", + "id": 141912, + "name": "Conan: Exiles", + "site_detail_url": "https://comicvine.gamespot.com/conan-exiles/4050-141912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141917/", + "id": 141917, + "name": "Reckoning War: Trial of the Watcher ", + "site_detail_url": "https://comicvine.gamespot.com/reckoning-war-trial-of-the-watcher/4050-141917/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141918/", + "id": 141918, + "name": "Eternals: The Heretic ", + "site_detail_url": "https://comicvine.gamespot.com/eternals-the-heretic/4050-141918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141919/", + "id": 141919, + "name": "Carnage", + "site_detail_url": "https://comicvine.gamespot.com/carnage/4050-141919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141946/", + "id": 141946, + "name": "Infinite Possibilities: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/infinite-possibilities-infinity-comic/4050-141946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141990/", + "id": 141990, + "name": "Wolverine: Patch", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-patch/4050-141990/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141991/", + "id": 141991, + "name": "Demon Days: Blood Feud", + "site_detail_url": "https://comicvine.gamespot.com/demon-days-blood-feud/4050-141991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141992/", + "id": 141992, + "name": "Venom: Lethal Protector", + "site_detail_url": "https://comicvine.gamespot.com/venom-lethal-protector/4050-141992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142005/", + "id": 142005, + "name": "Excalibur Epic Collection: The Battle For Britain", + "site_detail_url": "https://comicvine.gamespot.com/excalibur-epic-collection-the-battle-for-britain/4050-142005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142006/", + "id": 142006, + "name": "X-Men By Peter Milligan: Blood of Apocalypse", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-peter-milligan-blood-of-apocalypse/4050-142006/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142035/", + "id": 142035, + "name": "Hulk Grand Design: Monster", + "site_detail_url": "https://comicvine.gamespot.com/hulk-grand-design-monster/4050-142035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142053/", + "id": 142053, + "name": "Immortal X-Men", + "site_detail_url": "https://comicvine.gamespot.com/immortal-x-men/4050-142053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142054/", + "id": 142054, + "name": "X-Men Unlimited: Latitude", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited-latitude/4050-142054/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142067/", + "id": 142067, + "name": "Avengers Forever - Infinity Comic ", + "site_detail_url": "https://comicvine.gamespot.com/avengers-forever-infinity-comic/4050-142067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142077/", + "id": 142077, + "name": "Amazing Spider-Man: Beyond", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-beyond/4050-142077/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142081/", + "id": 142081, + "name": "X-Men By Jonathan Hickman Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/x-men-by-jonathan-hickman-omnibus/4050-142081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142082/", + "id": 142082, + "name": "X-Men Epic Collection: Bishop's Crossing", + "site_detail_url": "https://comicvine.gamespot.com/x-men-epic-collection-bishops-crossing/4050-142082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142086/", + "id": 142086, + "name": "Ghost Rider 2099: Daddy Dearest", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-2099-daddy-dearest/4050-142086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142111/", + "id": 142111, + "name": "Amazing Spider-Man Epic Collection: Lifetheft", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-lifetheft/4050-142111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142119/", + "id": 142119, + "name": "Avengers Origins", + "site_detail_url": "https://comicvine.gamespot.com/avengers-origins/4050-142119/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142133/", + "id": 142133, + "name": "Spidey and His Amazing Friends: Team Spidey Does It All!", + "site_detail_url": "https://comicvine.gamespot.com/spidey-and-his-amazing-friends-team-spidey-does-it/4050-142133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142134/", + "id": 142134, + "name": "X-Men: Red", + "site_detail_url": "https://comicvine.gamespot.com/x-men-red/4050-142134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142135/", + "id": 142135, + "name": "Marauders", + "site_detail_url": "https://comicvine.gamespot.com/marauders/4050-142135/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142136/", + "id": 142136, + "name": "Captain Marvel Annual", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel-annual/4050-142136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142143/", + "id": 142143, + "name": "X-Force Annual", + "site_detail_url": "https://comicvine.gamespot.com/x-force-annual/4050-142143/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142144/", + "id": 142144, + "name": "Spider-Punk", + "site_detail_url": "https://comicvine.gamespot.com/spider-punk/4050-142144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142173/", + "id": 142173, + "name": "Amazing Spider-Man By Nick Spencer: What Cost Victory", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-by-nick-spencer-what-cost-victo/4050-142173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142177/", + "id": 142177, + "name": "Captain America: Triple Threat", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-triple-threat/4050-142177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142224/", + "id": 142224, + "name": "Champions: Killer App", + "site_detail_url": "https://comicvine.gamespot.com/champions-killer-app/4050-142224/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142234/", + "id": 142234, + "name": "White Fox Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/white-fox-infinity-comic/4050-142234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142304/", + "id": 142304, + "name": "X-Men '92: House of XCII ", + "site_detail_url": "https://comicvine.gamespot.com/x-men-92-house-of-xcii/4050-142304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142334/", + "id": 142334, + "name": "Deadpool: Bad Blood", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-bad-blood/4050-142334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142335/", + "id": 142335, + "name": "Moon Knight: Welcome to New Egypt Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-welcome-to-new-egypt-infinity-comic/4050-142335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142336/", + "id": 142336, + "name": "Spider-Verse Unlimited - Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/spider-verse-unlimited-infinity-comic/4050-142336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142345/", + "id": 142345, + "name": "Elektra", + "site_detail_url": "https://comicvine.gamespot.com/elektra/4050-142345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142428/", + "id": 142428, + "name": "Captain America/Iron Man: Invasion Force", + "site_detail_url": "https://comicvine.gamespot.com/captain-americairon-man-invasion-force/4050-142428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142431/", + "id": 142431, + "name": "Who Is... America Chavez: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/who-is-america-chavez-infinity-comic/4050-142431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142447/", + "id": 142447, + "name": "X-Force Epic Collection: Zero Tolerance", + "site_detail_url": "https://comicvine.gamespot.com/x-force-epic-collection-zero-tolerance/4050-142447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142454/", + "id": 142454, + "name": "Doctor Strange: Nexus of Nightmares", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-nexus-of-nightmares/4050-142454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142456/", + "id": 142456, + "name": "Nick Fury/Black Widow: Jungle Warfare", + "site_detail_url": "https://comicvine.gamespot.com/nick-furyblack-widow-jungle-warfare/4050-142456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142457/", + "id": 142457, + "name": "Daredevil: Protection Racket", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-protection-racket/4050-142457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142458/", + "id": 142458, + "name": "Amazing Spider-Man: Sandblasted", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-sandblasted/4050-142458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142459/", + "id": 142459, + "name": "Marvel's Excelsior Theatre", + "site_detail_url": "https://comicvine.gamespot.com/marvels-excelsior-theatre/4050-142459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142460/", + "id": 142460, + "name": "X-Men Twisted History", + "site_detail_url": "https://comicvine.gamespot.com/x-men-twisted-history/4050-142460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142464/", + "id": 142464, + "name": "Black Widow", + "site_detail_url": "https://comicvine.gamespot.com/black-widow/4050-142464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142485/", + "id": 142485, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-142485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142492/", + "id": 142492, + "name": "Blade", + "site_detail_url": "https://comicvine.gamespot.com/blade/4050-142492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142556/", + "id": 142556, + "name": "Marvel and Dell Present: Ant-Man & Wasp", + "site_detail_url": "https://comicvine.gamespot.com/marvel-and-dell-present-ant-man-and-wasp/4050-142556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142558/", + "id": 142558, + "name": "Hulk Grand Design: Madness", + "site_detail_url": "https://comicvine.gamespot.com/hulk-grand-design-madness/4050-142558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142576/", + "id": 142576, + "name": "Knights of X", + "site_detail_url": "https://comicvine.gamespot.com/knights-of-x/4050-142576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142577/", + "id": 142577, + "name": "Amazing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man/4050-142577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142593/", + "id": 142593, + "name": "Marvel and Synchrony Present Ant-Man and the Wasp: Saving Time ", + "site_detail_url": "https://comicvine.gamespot.com/marvel-and-synchrony-present-ant-man-and-the-wasp-/4050-142593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142761/", + "id": 142761, + "name": "Giant-Size X-Men: Thunderbird", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-x-men-thunderbird/4050-142761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142762/", + "id": 142762, + "name": "Spider-Man 2099: Exodus Alpha", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-exodus-alpha/4050-142762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142775/", + "id": 142775, + "name": "Star Wars: Obi-Wan", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-obi-wan/4050-142775/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142776/", + "id": 142776, + "name": "Spider-Man: Doom Control", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-doom-control/4050-142776/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142782/", + "id": 142782, + "name": "Death of Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange/4050-142782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142783/", + "id": 142783, + "name": "Death of Doctor Strange Companion", + "site_detail_url": "https://comicvine.gamespot.com/death-of-doctor-strange-companion/4050-142783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142793/", + "id": 142793, + "name": "Doctor Strange Epic Collection: The Reality War", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-epic-collection-the-reality-war/4050-142793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142799/", + "id": 142799, + "name": "Avengers West Coast Epic Collection: Darker Than Scarlet", + "site_detail_url": "https://comicvine.gamespot.com/avengers-west-coast-epic-collection-darker-than-sc/4050-142799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142816/", + "id": 142816, + "name": "Mighty Marvel Masterworks: Doctor Strange", + "site_detail_url": "https://comicvine.gamespot.com/mighty-marvel-masterworks-doctor-strange/4050-142816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142840/", + "id": 142840, + "name": "Captain America: Symbol of Truth", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-symbol-of-truth/4050-142840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142841/", + "id": 142841, + "name": "Free Comic Book Day 2022: Avengers/X-Men ", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2022-avengersx-men/4050-142841/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142842/", + "id": 142842, + "name": "Free Comic Book Day 2022: Marvel's Voices", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2022-marvels-voices/4050-142842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142843/", + "id": 142843, + "name": "Free Comic Book Day 2022: Spider-Man/Venom", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2022-spider-manvenom/4050-142843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142844/", + "id": 142844, + "name": "Hulk vs. Thor: Banner of War Alpha", + "site_detail_url": "https://comicvine.gamespot.com/hulk-vs-thor-banner-of-war-alpha/4050-142844/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142845/", + "id": 142845, + "name": "Moon Knight: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-black-white-and-blood/4050-142845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142943/", + "id": 142943, + "name": "Spidey and His Amazing Friends", + "site_detail_url": "https://comicvine.gamespot.com/spidey-and-his-amazing-friends/4050-142943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142971/", + "id": 142971, + "name": "Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy/4050-142971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142973/", + "id": 142973, + "name": "Darkhawk: Airborne", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-airborne/4050-142973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143013/", + "id": 143013, + "name": "Savage Avengers: The Defilement of All Things By The Cannibal-Sorcerer Kulan Gath", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers-the-defilement-of-all-things-by-th/4050-143013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143014/", + "id": 143014, + "name": "Savage Avengers", + "site_detail_url": "https://comicvine.gamespot.com/savage-avengers/4050-143014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143026/", + "id": 143026, + "name": "Shang-Chi: Shang-Chi vs. the Marvel Universe", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-shang-chi-vs-the-marvel-universe/4050-143026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143029/", + "id": 143029, + "name": "Marvel's Voices: Identity", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-identity/4050-143029/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143111/", + "id": 143111, + "name": "She-Hulk by Peter David Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-peter-david-omnibus/4050-143111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143115/", + "id": 143115, + "name": "Legion of X", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-x/4050-143115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143235/", + "id": 143235, + "name": "Star Wars Legends: Boba Fett - Blood Ties", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-legends-boba-fett-blood-ties/4050-143235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143242/", + "id": 143242, + "name": "Immortal Hulk: Apocrypha", + "site_detail_url": "https://comicvine.gamespot.com/immortal-hulk-apocrypha/4050-143242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143290/", + "id": 143290, + "name": "S.H.I.E.L.D. Sketchbook", + "site_detail_url": "https://comicvine.gamespot.com/shield-sketchbook/4050-143290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143301/", + "id": 143301, + "name": "Spider-Man 2099: Exodus", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-2099-exodus/4050-143301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143304/", + "id": 143304, + "name": "X-Men Legends: Mutant Mayhem", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends-mutant-mayhem/4050-143304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143358/", + "id": 143358, + "name": "Gamma Flight", + "site_detail_url": "https://comicvine.gamespot.com/gamma-flight/4050-143358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143368/", + "id": 143368, + "name": "Doctor Strange: The Way of the Weird Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/doctor-strange-the-way-of-the-weird-infinity-comic/4050-143368/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143369/", + "id": 143369, + "name": "Who Is... The Scarlet Witch Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/who-is-the-scarlet-witch-infinity-comic/4050-143369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143418/", + "id": 143418, + "name": "Deadpool: Black, White & Blood", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-black-white-and-blood/4050-143418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143430/", + "id": 143430, + "name": "Non-Stop Spider-Man: Big Brain Play", + "site_detail_url": "https://comicvine.gamespot.com/non-stop-spider-man-big-brain-play/4050-143430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143439/", + "id": 143439, + "name": "Jane Foster & The Mighty Thor", + "site_detail_url": "https://comicvine.gamespot.com/jane-foster-and-the-mighty-thor/4050-143439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143440/", + "id": 143440, + "name": "Fortnite X Marvel: Zero War", + "site_detail_url": "https://comicvine.gamespot.com/fortnite-x-marvel-zero-war/4050-143440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143442/", + "id": 143442, + "name": "Krrsantan: Star Wars Tales", + "site_detail_url": "https://comicvine.gamespot.com/krrsantan-star-wars-tales/4050-143442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143444/", + "id": 143444, + "name": "Miles Morales: All Eyes On Me", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-all-eyes-on-me/4050-143444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143488/", + "id": 143488, + "name": "Extreme Carnage", + "site_detail_url": "https://comicvine.gamespot.com/extreme-carnage/4050-143488/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143575/", + "id": 143575, + "name": "X-Force By Benjamin Percy", + "site_detail_url": "https://comicvine.gamespot.com/x-force-by-benjamin-percy/4050-143575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143608/", + "id": 143608, + "name": "Kang The Conqueror: Only Myself Left To Conquer", + "site_detail_url": "https://comicvine.gamespot.com/kang-the-conqueror-only-myself-left-to-conquer/4050-143608/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143626/", + "id": 143626, + "name": "Best Cartoons from the Editors of Male & Stag", + "site_detail_url": "https://comicvine.gamespot.com/best-cartoons-from-the-editors-of-male-and-stag/4050-143626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143627/", + "id": 143627, + "name": "World's Best Cartoons", + "site_detail_url": "https://comicvine.gamespot.com/worlds-best-cartoons/4050-143627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143632/", + "id": 143632, + "name": "Captain America: Sentinel of Liberty", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-sentinel-of-liberty/4050-143632/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143644/", + "id": 143644, + "name": "Hulkling & Wiccan", + "site_detail_url": "https://comicvine.gamespot.com/hulkling-and-wiccan/4050-143644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143736/", + "id": 143736, + "name": "Hellfire Gala Guide 2022", + "site_detail_url": "https://comicvine.gamespot.com/hellfire-gala-guide-2022/4050-143736/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143750/", + "id": 143750, + "name": "Fantastic Four: Fate of the Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-fate-of-the-four/4050-143750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143757/", + "id": 143757, + "name": "New Fantastic Four ", + "site_detail_url": "https://comicvine.gamespot.com/new-fantastic-four/4050-143757/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143765/", + "id": 143765, + "name": "Punisher War Journal: Blitz", + "site_detail_url": "https://comicvine.gamespot.com/punisher-war-journal-blitz/4050-143765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143815/", + "id": 143815, + "name": "Marvel's Voices: Pride", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-pride/4050-143815/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143818/", + "id": 143818, + "name": "Spider-Woman: Devil's Reign", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-devils-reign/4050-143818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143820/", + "id": 143820, + "name": "Black Widow by Kelly Thompson: Die By The Blade", + "site_detail_url": "https://comicvine.gamespot.com/black-widow-by-kelly-thompson-die-by-the-blade/4050-143820/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143821/", + "id": 143821, + "name": "Captain America / Iron Man: The Armor & The Shield", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-iron-man-the-armor-and-the-shield/4050-143821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143822/", + "id": 143822, + "name": "Defenders: There Are No Rules", + "site_detail_url": "https://comicvine.gamespot.com/defenders-there-are-no-rules/4050-143822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143827/", + "id": 143827, + "name": "Hawkeye: Kate Bishop", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-kate-bishop/4050-143827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143828/", + "id": 143828, + "name": "Phoenix Song: Echo", + "site_detail_url": "https://comicvine.gamespot.com/phoenix-song-echo/4050-143828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143830/", + "id": 143830, + "name": "Miles Morales: Beyond", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-beyond/4050-143830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143843/", + "id": 143843, + "name": "Miles Morales: Spider-Man and Moon Girl", + "site_detail_url": "https://comicvine.gamespot.com/miles-morales-spider-man-and-moon-girl/4050-143843/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143856/", + "id": 143856, + "name": "The Variants", + "site_detail_url": "https://comicvine.gamespot.com/the-variants/4050-143856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143857/", + "id": 143857, + "name": "Iron Man/Hellcat Annual", + "site_detail_url": "https://comicvine.gamespot.com/iron-manhellcat-annual/4050-143857/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143858/", + "id": 143858, + "name": "Iron Cat", + "site_detail_url": "https://comicvine.gamespot.com/iron-cat/4050-143858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143859/", + "id": 143859, + "name": "Thor: Lightning and Lament", + "site_detail_url": "https://comicvine.gamespot.com/thor-lightning-and-lament/4050-143859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143860/", + "id": 143860, + "name": "Mech Strike: Monster Hunters", + "site_detail_url": "https://comicvine.gamespot.com/mech-strike-monster-hunters/4050-143860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143884/", + "id": 143884, + "name": "Thor By Donny Cates: Revelations", + "site_detail_url": "https://comicvine.gamespot.com/thor-by-donny-cates-revelations/4050-143884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143894/", + "id": 143894, + "name": "Marvel S.T.R.I.K.E. Force: Prequel", + "site_detail_url": "https://comicvine.gamespot.com/marvel-strike-force-prequel/4050-143894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143899/", + "id": 143899, + "name": "Iron Man Epic Collection: In the Hands of Evil", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-epic-collection-in-the-hands-of-evil/4050-143899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143901/", + "id": 143901, + "name": "Fantastic Four Epic Collection: Nobody Gets Out Alive", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-nobody-gets-out-ali/4050-143901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143933/", + "id": 143933, + "name": "Thor Epic Collection: Ulik Unchained", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-ulik-unchained/4050-143933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143935/", + "id": 143935, + "name": "Wolverine: Weapon X Gallery Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-weapon-x-gallery-edition/4050-143935/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143940/", + "id": 143940, + "name": "The United States of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/the-united-states-of-captain-america/4050-143940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143964/", + "id": 143964, + "name": "The Marvels: The War in Siancong", + "site_detail_url": "https://comicvine.gamespot.com/the-marvels-the-war-in-siancong/4050-143964/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143982/", + "id": 143982, + "name": "Guardians of the Galaxy by Al Ewing: We're Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/guardians-of-the-galaxy-by-al-ewing-were-super-her/4050-143982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143994/", + "id": 143994, + "name": "Sinister War", + "site_detail_url": "https://comicvine.gamespot.com/sinister-war/4050-143994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144005/", + "id": 144005, + "name": "Star Wars: The High Republic: Trail of Shadows", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-trail-of-shadows/4050-144005/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144025/", + "id": 144025, + "name": "X-Men: Hellfire Gala", + "site_detail_url": "https://comicvine.gamespot.com/x-men-hellfire-gala/4050-144025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144026/", + "id": 144026, + "name": "A.X.E.: Eve Of Judgment", + "site_detail_url": "https://comicvine.gamespot.com/axe-eve-of-judgment/4050-144026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144027/", + "id": 144027, + "name": "Daredevil", + "site_detail_url": "https://comicvine.gamespot.com/daredevil/4050-144027/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144030/", + "id": 144030, + "name": "Star Wars: The Mandalorian", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-mandalorian/4050-144030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144062/", + "id": 144062, + "name": "Squirrel Girl: The Unbeatable Radio Show Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/squirrel-girl-the-unbeatable-radio-show-infinity-c/4050-144062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144088/", + "id": 144088, + "name": "Shang-Chi and the Ten Rings", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-and-the-ten-rings/4050-144088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144123/", + "id": 144123, + "name": "A.X.E.: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/axe-judgment-day/4050-144123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144124/", + "id": 144124, + "name": "Defenders: Beyond", + "site_detail_url": "https://comicvine.gamespot.com/defenders-beyond/4050-144124/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144138/", + "id": 144138, + "name": "Moon Knight TPB", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-tpb/4050-144138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144139/", + "id": 144139, + "name": "The X Lives & Deaths Of Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/the-x-lives-and-deaths-of-wolverine/4050-144139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144140/", + "id": 144140, + "name": "Inferno", + "site_detail_url": "https://comicvine.gamespot.com/inferno/4050-144140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144204/", + "id": 144204, + "name": "Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/ant-man/4050-144204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144205/", + "id": 144205, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4050-144205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144206/", + "id": 144206, + "name": "Genis-Vell: Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/genis-vell-captain-marvel/4050-144206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144211/", + "id": 144211, + "name": "Wild Cards: The Drawing Of Cards ", + "site_detail_url": "https://comicvine.gamespot.com/wild-cards-the-drawing-of-cards/4050-144211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144226/", + "id": 144226, + "name": "Alien Annual", + "site_detail_url": "https://comicvine.gamespot.com/alien-annual/4050-144226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144228/", + "id": 144228, + "name": "Wolverine by Claremont & Miller Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-by-claremont-and-miller-deluxe-edition/4050-144228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144308/", + "id": 144308, + "name": "Edge of Spider-Verse", + "site_detail_url": "https://comicvine.gamespot.com/edge-of-spider-verse/4050-144308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144359/", + "id": 144359, + "name": "Marvel's Voices Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-infinity-comic/4050-144359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144364/", + "id": 144364, + "name": "Demon Wars: The Iron Samurai", + "site_detail_url": "https://comicvine.gamespot.com/demon-wars-the-iron-samurai/4050-144364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144396/", + "id": 144396, + "name": "Thor Epic Collection: War Of The Gods", + "site_detail_url": "https://comicvine.gamespot.com/thor-epic-collection-war-of-the-gods/4050-144396/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144398/", + "id": 144398, + "name": "Shang-Chi: Family of Origin ", + "site_detail_url": "https://comicvine.gamespot.com/shang-chi-family-of-origin/4050-144398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144406/", + "id": 144406, + "name": "Conan Chronicles Epic Collection: Shadows Over Kush", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-shadows-over-kush/4050-144406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144407/", + "id": 144407, + "name": "Hawkeye Epic Collection: The Avenging Archer", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-epic-collection-the-avenging-archer/4050-144407/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144409/", + "id": 144409, + "name": "Conan Chronicles Epic Collection: Blood In His Wake", + "site_detail_url": "https://comicvine.gamespot.com/conan-chronicles-epic-collection-blood-in-his-wake/4050-144409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144435/", + "id": 144435, + "name": "Avengers & Moon Girl", + "site_detail_url": "https://comicvine.gamespot.com/avengers-and-moon-girl/4050-144435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144436/", + "id": 144436, + "name": "Ghost Rider: Vengeance Forever", + "site_detail_url": "https://comicvine.gamespot.com/ghost-rider-vengeance-forever/4050-144436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144437/", + "id": 144437, + "name": "Giant-Size Gwen Stacy", + "site_detail_url": "https://comicvine.gamespot.com/giant-size-gwen-stacy/4050-144437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144438/", + "id": 144438, + "name": "Ms. Marvel & Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-and-wolverine/4050-144438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144439/", + "id": 144439, + "name": "Predator", + "site_detail_url": "https://comicvine.gamespot.com/predator/4050-144439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144446/", + "id": 144446, + "name": "Marvel-Verse: Morbius", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-morbius/4050-144446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144447/", + "id": 144447, + "name": "Marvel-Verse: Thor", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-thor/4050-144447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144448/", + "id": 144448, + "name": "Marvel-Verse: Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-moon-knight/4050-144448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144449/", + "id": 144449, + "name": "Marvel-Verse: Moon Girl", + "site_detail_url": "https://comicvine.gamespot.com/marvel-verse-moon-girl/4050-144449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144486/", + "id": 144486, + "name": "X-Men Legends", + "site_detail_url": "https://comicvine.gamespot.com/x-men-legends/4050-144486/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144487/", + "id": 144487, + "name": "She-Hulk Epic Collection: Breaking The Fourth Wall", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-epic-collection-breaking-the-fourth-wall/4050-144487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144490/", + "id": 144490, + "name": "Star Wars: Darth Vader by Charles Soule Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-darth-vader-by-charles-soule-omnibus/4050-144490/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144561/", + "id": 144561, + "name": "Patsy Walker Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/patsy-walker-infinity-comic/4050-144561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144562/", + "id": 144562, + "name": "Love Unlimited Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/love-unlimited-infinity-comic/4050-144562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144575/", + "id": 144575, + "name": "Ultraman: The Mystery of Ultraseven", + "site_detail_url": "https://comicvine.gamespot.com/ultraman-the-mystery-of-ultraseven/4050-144575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144576/", + "id": 144576, + "name": "Ms. Marvel & Moon Knight", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-and-moon-knight/4050-144576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144577/", + "id": 144577, + "name": "A.X.E.: Death to the Mutants", + "site_detail_url": "https://comicvine.gamespot.com/axe-death-to-the-mutants/4050-144577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144579/", + "id": 144579, + "name": "Avengers 1,000,000 B.C.", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1000000-bc/4050-144579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144596/", + "id": 144596, + "name": "X-Men Unlimited: X-Men Green", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited-x-men-green/4050-144596/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144734/", + "id": 144734, + "name": "Damage Control", + "site_detail_url": "https://comicvine.gamespot.com/damage-control/4050-144734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144780/", + "id": 144780, + "name": "Avengers Epic Collection: Kang War", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-kang-war/4050-144780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144784/", + "id": 144784, + "name": "Conan: The People of the Black Circle and Other Stories", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-people-of-the-black-circle-and-other-sto/4050-144784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144785/", + "id": 144785, + "name": "Avengers Epic Collection: The Crossing Line", + "site_detail_url": "https://comicvine.gamespot.com/avengers-epic-collection-the-crossing-line/4050-144785/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144798/", + "id": 144798, + "name": "Amazing Spider-Man Epic Collection: Man-Wolf at Midnight", + "site_detail_url": "https://comicvine.gamespot.com/amazing-spider-man-epic-collection-man-wolf-at-mid/4050-144798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144814/", + "id": 144814, + "name": "Hawkeye: Kate Bishop - Team Spirit", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-kate-bishop-team-spirit/4050-144814/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144863/", + "id": 144863, + "name": "Thunderbolts", + "site_detail_url": "https://comicvine.gamespot.com/thunderbolts/4050-144863/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144893/", + "id": 144893, + "name": "Amazing Fantasy", + "site_detail_url": "https://comicvine.gamespot.com/amazing-fantasy/4050-144893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144900/", + "id": 144900, + "name": "Fantastic Four Epic Collection: Annihilus Revealed", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-epic-collection-annihilus-revealed/4050-144900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144933/", + "id": 144933, + "name": "Star Wars: The High Republic: Jedi's End", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-the-high-republic-jedis-end/4050-144933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144954/", + "id": 144954, + "name": "Cartoon Parade ", + "site_detail_url": "https://comicvine.gamespot.com/cartoon-parade/4050-144954/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144974/", + "id": 144974, + "name": "All-Out Avengers", + "site_detail_url": "https://comicvine.gamespot.com/all-out-avengers/4050-144974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144977/", + "id": 144977, + "name": "King Conan Chronicles Epic Collection: Phantoms and Phoenixes", + "site_detail_url": "https://comicvine.gamespot.com/king-conan-chronicles-epic-collection-phantoms-and/4050-144977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144978/", + "id": 144978, + "name": "X-Men and Moon Girl", + "site_detail_url": "https://comicvine.gamespot.com/x-men-and-moon-girl/4050-144978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144991/", + "id": 144991, + "name": "Alien", + "site_detail_url": "https://comicvine.gamespot.com/alien/4050-144991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145008/", + "id": 145008, + "name": "Star Wars: Crimson Reign", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-crimson-reign/4050-145008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145039/", + "id": 145039, + "name": "Ms. Marvel & Venom", + "site_detail_url": "https://comicvine.gamespot.com/ms-marvel-and-venom/4050-145039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145040/", + "id": 145040, + "name": "Midnight Suns", + "site_detail_url": "https://comicvine.gamespot.com/midnight-suns/4050-145040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145144/", + "id": 145144, + "name": "Spider-Woman: Back To Basics", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman-back-to-basics/4050-145144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145163/", + "id": 145163, + "name": "X-Terminators", + "site_detail_url": "https://comicvine.gamespot.com/x-terminators/4050-145163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145175/", + "id": 145175, + "name": "Moon Knight Epic Collection: Butcher's Moon", + "site_detail_url": "https://comicvine.gamespot.com/moon-knight-epic-collection-butchers-moon/4050-145175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145195/", + "id": 145195, + "name": "Daredevil: Woman Without Fear", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-woman-without-fear/4050-145195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145212/", + "id": 145212, + "name": "Daredevil By Chip Zdarsky: Lockdown", + "site_detail_url": "https://comicvine.gamespot.com/daredevil-by-chip-zdarsky-lockdown/4050-145212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145213/", + "id": 145213, + "name": "Jane Foster: The Saga of Valkyrie ", + "site_detail_url": "https://comicvine.gamespot.com/jane-foster-the-saga-of-valkyrie/4050-145213/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145299/", + "id": 145299, + "name": "A.X.E.: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/axe-avengers/4050-145299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145334/", + "id": 145334, + "name": "Conan the Barbarian Epic Collection: The Original Marvel Years: Vengeance In Asgalun", + "site_detail_url": "https://comicvine.gamespot.com/conan-the-barbarian-epic-collection-the-original-m/4050-145334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145341/", + "id": 145341, + "name": "Marvel Voices: Comunidades", + "site_detail_url": "https://comicvine.gamespot.com/marvel-voices-comunidades/4050-145341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145362/", + "id": 145362, + "name": "A.X.E.: Starfox", + "site_detail_url": "https://comicvine.gamespot.com/axe-starfox/4050-145362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145363/", + "id": 145363, + "name": "A.X.E.: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/axe-x-men/4050-145363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145364/", + "id": 145364, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4050-145364/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-145385/", + "id": 145385, + "name": "Star Wars: Crimson Reign", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-crimson-reign/4050-145385/" + } + ] + }, + "version": "1.0" +} \ No newline at end of file diff --git a/samples/api-data/publisher-list-item/publishers.json b/samples/api-data/publisher-list-item/publishers.json new file mode 100644 index 0000000..1d298b9 --- /dev/null +++ b/samples/api-data/publisher-list-item/publishers.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":9130,"status_code":1,"results":[{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-07-15 03:52:52","deck":"Also Known as Dell Comics Group and Dell Super Comics Group was an American publisher of books and comic books, founded in 1921. They would partner with Western Publishing from 1938 to 1962. Dell was bought by Random House and is now part of the \"Bantam Dell Publishing Group\".","description":"

    History

    George T. Delacorte Jr. started the company with $10.000, two employees and one magazine called 'I Confess', which was soon followed by pulp magazines. During the 1920s - 1940s Dell Publishing was one of the largest magazine publishers. From 1938-1962 they published comics under their imprint name of Dell Comics, most of which were done in partnership with Western Publishing. They started paperback book publishing in 1943 with their new imprint called Dell Paperbacks. Their imprint line grew and they started bringing out books under the names of: Dial Press, Delacorte Books, Yearling Books and Laurel Leaf Library.

    Dell Publishing were bought out and are now part of the Bantam Dell Publishing Group of Random House. They are still using some of the imprints Dell Publishing started. Dell magazines was sold in 1997. To this day it still publishes puzzle, mystery, horoscope and science fiction magazines.

    Comic characters

    Some of the stable of characters that were originally published by Dell or published in partnership with Western Publishing were

    • Black Knight (Dell version)
    • Brain Boy (Dell, Dark Horse)
    • Captain Easy
    • Martan the Marvel Man and Vana (Dell, Dynamite)
    • Triple Terror (United Features, Dell)
    • Phantasmo (Dell, Dynamite)
    • Professor Supermind and Son (Dell, Dynamite)
    • The Voice, Invisible Detective (Quality, Dell)
    • The Owl and Owl Girl (Dell, Gold Key, Dynamite)
    • Owl Girl (Dell, Gold Key, Dynamite)
    • Captain Midnight (Fawcett, Dell, Moonstone, Dark Horse)
    • Captain Tornado
    • Dan Dunn (The other Dick Tracy) (Eastern Color, Dell, Gold Key)
    • Doctor Death I, II (Dell version)
    • Doctor Hammond
    • Gray Mask and Dove
    • Green Lama (Prize, Spark, Dell, Moonstone, Dynamite)
    • John Carter, Warlord of Mars (Dell, Gold Key, DC, Marvel, Dynamite)
    • Deja Thoris (Dell, Marvel, Dark Horse, Dynamite)
    • Jungle Jim (Alex Raymond creation) (King Features, Nedor, Dell, Charlton, Dynamite)
    • Lothar (King Features, Harvey, Dell, Marvel, Dynamite)
    • Magic Morro
    • Mandrake the Magician (United Features, Harvey, Dell, Marvel, Moonstone, Dynamite)
    • Masked Pilot
    • Ming the Merciless (United Features, Toby Press, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)
    • Mr. Ozymandias
    • Night Devils aka Black Wings
    • Pantherman
    • Phantom Raider of the Sky
    • Radior: The X-Ray Powerman (Dell, Dynamite)
    • Red Ryder
    • Ricota
    • Scarlet Ace (Dell version)
    • Scarlet Ace (Pulp)
    • Sikander, the Robot Master
    • Skyhawk (Dell version)
    • Sky Ranger
    • Space Man
    • Speed Martin
    • Stratosphere Jim
    • Viking Carter
    • X5328B
    • Young Hawk
    • Nukla
    • Brain Boy (Dell, Dark Horse)
    • Neutro
    • Fab Four
    • Kona, Monarch of Monster Isle
    • Flash Gordon (United Features, Toby, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)
    • Tarzan (Dell, Gold Key, DC, Marvel, Dark Horse, Dynamite)
    • The Lone Ranger (Dell, Gold Key, Dynamite)
    • Tom Corbett (Prize, Dell, Blue Water)
    • Zorro (Quality,Dell, Gold Key, Dynamite)
    • Turok (Dell, Gold Key, Valiant, Dark Horse, Dynamite)
    • Andar (Dell. Gold Key, Valiant, Dark Horse, Dynamite)

    ","id":4,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1387447-logo.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1387447-logo.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1387447-logo.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1387447-logo.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1387447-logo.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1387447-logo.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1387447-logo.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1387447-logo.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1387447-logo.gif","image_tags":"All Images"},"location_address":"1745 Broadwa","location_city":"New York","location_state":"New York","name":"Dell","site_detail_url":"https://comicvine.gamespot.com/dell/4010-4/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-03-16 16:24:42","deck":null,"description":"

    United Features had three heroes that they published:

    Iron Vic

    Mirror Man (United Features version)

    Spark Man (United Features, Dynamite)

    Tarzan (United Features, Dell. DC, Marvel, Dynamite)

    Triple Terror (United Features, Dell)

    Spark Man is the only hero from United Features revived by Dynamite Entertainment under their Project Superpowers title.

    Tarzan was also published by United Features for a time. Tarzan would be revived in Dell's Four Color title.

    Some of the characters have separate pages while others do not.

    ","id":5,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1640972-789831_spark_1_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1640972-789831_spark_1_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1640972-789831_spark_1_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1640972-789831_spark_1_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1640972-789831_spark_1_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1640972-789831_spark_1_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1640972-789831_spark_1_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1640972-789831_spark_1_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1640972-789831_spark_1_super.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"United Features","site_detail_url":"https://comicvine.gamespot.com/united-features/4010-5/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","date_added":"2008-06-06 11:08:00","date_last_updated":"2017-05-25 17:07:52","deck":"A pulp magazine and comic book publisher in the Golden Age of Comics.","description":"

    (Fiction House was a big time publisher of both pulp magazines and comic books from the 1920s to the 1950s. Its comics division was best known for its pinup-style good girl art, as epitomized by the company's most popular character Sheena, Queen of the Jungle. Fiction House also launched the careers of Jack Kirby and Will Eisner as well. The publisher was also a target of Dr. Fredric Wertham's infamous book Seduction of the Innocent in 1954.

    Some of the stable of characters that were originally published by Fiction House were

    Agent ZX-5

    Akina

    Amazona the Mighty Woman

    Angel Eyes

    Ant Woman

    Auro, Lord of Jupiter I, II

    Black Axeman

    Blaque

    Bron

    Bob Reynolds (sidekick to Sheena)

    Bull's Eye Brannon

    Buzz Crandall

    Camilla

    Camilla, Queen of the City

    Captain Fight and Yank Adams

    Captain Fight (Pirate)

    Captain Morgan's U.S. Rangers or Sky Rangers

    Captain Nelson Cole

    Captain Plastic (on cover)

    Captain Tiger

    Captain Thunder (Fawcett changed their character to Captain Marvel)

    Captain Wings

    Cerberex (look inspired Brainiac's ship)

    Chip Collins and his Skull Squadron

    Colonel Kamikaze

    Commando Ranger

    Commander Cubs

    Cosmo Corrigan

    Crash Parker

    Crimson Cobra

    Crossbow Crew

    Dexter Ames

    Domino Lady (Fiction House, Moonstone) Lady Domino Saucy Romantic Adventures May 1936 First Appearance

    Dr. Drew (Fiction House, Dark Horse)

    Dr. Shelley

    The Eye (Fiction House version)

    El Cuchillo

    Fantomah (Fiction House, Devil's Due)

    Fantomah, Daughter of the Pharohs

    Fero, Planet Detective

    Firehair (Fiction House version)

    Flint Baker

    Frosty North

    Futura

    Gale Allen and her Girl Squadron

    Ghazia

    G. I. Jane (Fiction House version)

    Goliath the Gladiator

    The Hawk

    Hunt Bowman

    Ibid and Noxid

    Inspector Dayton

    Jan of the Jungle

    Jane Martin

    Jim Grant

    Jungle Demon

    Ka' a'nga, Jungle King and Ann Mason

    Kazanda, Wild Girl of the Continent

    Ki-Gor, Jungle Lord (Fiction House, Moonstone)

    King Tonga

    Kinks Mason

    Leopard Men

    Lightning (Fiction House version)

    Lone Wolf and Little Wolf

    Long Bow (Fiction House version)

    Lustra

    Madame Terror

    Madame Zero

    Man 'O Mars

    Manzar

    Mark Lord

    Mandoor

    Mysta of The Moon

    Oran of the Jungle

    The Phantom Falcon (Fiction House, Holyoke, Moonstone)

    Phantom Falcons

    Planet Payson

    Rangers of Freedom

    Red Comet

    Red Panther

    Reef Ryan

    Rip Regan Power-Man

    Rocky Hall, Jungle Explorer

    Roy Lance, Jungle Explorer

    Saber, the Spy Hunter

    Sarko

    Sea Devil (Fiction House version)

    Senorita Rio

    Shark Brodie

    Sheena, Queen of The Jungle (Fiction House, Devil's Due, Moonstone, Dynamite) (created by Will Eisner and Jerry Iger)

    Sky Girl

    Spurt Hammond

    The Spy Fighter

    Star Pirate

    Stuart Taylor

    Suicide Smith

    Super American (Fiction House, Dynamite)

    Super-Brain and his Super Gorillas

    Sylf

    Tabu, Wizard of the Jungle (Fiction House version)

    Tiger Girl (Fiction House version)

    Tiger Hart

    Tiger Man (Fiction House version)

    The Spirit (Quality, Fiction House, Harvey, Dark Horse, DC, Dynamite)

    Tortug

    Werewolf Hunter

    White Panther

    X-7 of the British Intelligence

    Yrina

    Zan Marzov

    Many of the characters have seperate pages while others do not.

    ","id":8,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1387073-fiction_house.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1387073-fiction_house.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1387073-fiction_house.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1387073-fiction_house.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1387073-fiction_house.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1387073-fiction_house.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1387073-fiction_house.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1387073-fiction_house.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1387073-fiction_house.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Fiction House","site_detail_url":"https://comicvine.gamespot.com/fiction-house/4010-8/"},{"aliases":"National Comics\r\nDetective Comics Inc.\r\nNational Periodical Publications\r\nNational Allied Publications\r\nNicholson Publishing\r\nAll-American Publications\r\nDC Entertainment\r\nDC Nation\r\nJohnny DC\r\nNational Comics Publishing\r\nNational Comics Publications","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-04-29 21:35:48","deck":"Originally known as \"National Publications\", DC is a publisher of comic books featuring iconic characters and teams such as Superman, Batman, Wonder Woman, Green Lantern, the Justice League of America, and the Teen Titans, and is considered the originator of the American superhero genre. DC, along with rival Marvel Comics, is one of the \"big two\" American comic book publishers. DC Entertainment is a subsidiary of Warner Brothers and its parent company Warner Media.","description":"

    Current Personnel

    History

    What is known today as DC Comics was founded in 1934 by publishing entrepreneur Malcolm Wheeler-Nicholson under the name of \"National Allied Publications\". DC was formed by the merging of \"National Allied Publications\" and \"Detective Comics Inc\", as well as the affiliated \"All-American Publications\". Despite being officially known as \"National Comics\", the comic covers carried a \"DC\" logo and were referred to as a result of its nickname: \"DC Comics\". People had nicknamed it \"DC\" in reference to Distinct of Columbia in Washington, due to the extreme patriotism during a time of war. Thus was born one of the world's most recognizable comic book brandings along with rivals Marvel publishing.

    The company did not officially change its name to DC Comics however, until 1977 during the presidency of Jenette Kahn.

    DC Comics has its current official headquarters at 1700 Broadway, 7th, New York, New York. Random House distributes DC Comics' books to the bookstore market, while Diamond Comics Distributors supplies the comics shop specialty market.

    Golden Age

    \"No

    National Allied Publications' first comic was New Fun: The Big Comic Magazine #1 which was released in the February of 1935. It hit off, and was surprisingly popular. Later that year, a second title was released: New Comics #1. The size and length New Comics #1 became the archetype for many comics afterwards, and it became the longest running comic series of all time.

    In 1938, National launched Action Comics, which featured the brand new character from regular contributors Jerry Siegel and Joe Shuster, Superman. Originally dismissed as \"silly\" by editorial, reports soon came back noting the popularity and sales increase resulting from the Superman feature. Superman quickly became a sensation and before long, dozens of imitations from both National and other publishing houses appeared almost overnight. Writer Bill Finger and his artist employer Bob Kane soon submitted Batman to appear in Detective Comics and before long, an entire Justice Society of America had been formed including properties such as The Flash, Green Lantern, The Sandman, Wonder Woman, Hawkman and The Spectre, to name a few, many of whom were either created or written by the prolific Gardner Fox.

    With the establishment of DC as one of the major comic book companies and with many of the most marketable names in the early years of comics, it is sometimes considered the main company that other companies had to compete with. Companies tried different approaches, One that succeeded and often outsold DC for instance was Fawcett Publications who had a character who some consider similar to Superman who was an all-powerful hero with a supporting \"family\" known as Captain Marvel and the Marvel Family, whereas other companies such as Charlton Comics created entire new worlds preventing DC from attacking them with lawsuits. Further along in the Silver Age many of these companies failed or like Fawcett were sued out of existence. Thus although they had once been competitors, many of the soon public domain properties of Fawcett and Charlton were eventually revived and trademarked and seemingly taken under DC's control.

    Silver & Bronze Age

    During the post-War years, the popularity of superheroes had declined almost completely, though DC and other publishers were still going strong moving into other genres such as funny animals, romance, Sci-Fi, Westerns and horror. Major characters such as Batman, Wonder Woman and Superman has managed to remain in publication and by the mid-1950s the superhero was again due for a comeback. Showcase #4 in 1956 introduced readers to Barry Allen, the all-new Flash re-imagined with a sleeker design and steeped much heavier in science fiction (an the older Golden Age heroes being relegated to existing on Earth Two). Characters such as The Atom, Green Lantern and the JSA, now reinvented as the Justice League of America soon followed and a new superhero boom was kicked off.

    During this time, The Comics Code Authority has also come into play, which drastically subdued the content available in the comic book medium. Many of the stories during the period moved away from more controversial horror or violent themes.

    With the re-invigoration of Marvel in the 1960s under the leadership of Stan Lee and Jack Kirby, DC found itself a new and more potent competitor. Marvel succeeded by breaking what had become by then generic archetypes of superheroes by introducing characters which were younger and more flawed (and thus appeared more human and appealed to a younger crowd in a more direct manner.) After falling behind Marvel in sales, DC was finally forced to adopt much of the same system which Marvel had, by introducing such young teams as the Teen Titans to compete with the X-Men.

    Modern Age & Crisis on Infinite Earths

    \"The
    The Modern Age

    In 1985, DC Comics decided its 50 years of continuity and numerous alternative Earths had become too messy and was in need of new blank slate. DC penned one of the first major comic book crossovers that incorporated almost every DC title and character ever published by the company. The series ended with multiple Earths being erased and merging into to one unified Earth. Following this, Batman, Superman and Wonder Woman were given new leases of life thanks to big name creators such as John Byrne, Frank Miller and George Perez that redefined the elderly heroes for a new generation.

    During this same period, the comic audience has begun to grow up and the direct market for comic stores had opened allowing a wider variety of publications to be experimented with. One such experiment involved bringing in British writer Alan Moore to pen the low selling Saga of the Swamp Thing series. What resulted was style of comic book not experienced before by mainstream readers in its literary and story driven complexity and execution. Before long, other writers from across the pond such as Neil Gaiman, Peter Milligan and Grant Morrison were recruited to revamp obscure properties and tell new and interesting stories with an older audience in mind. 1986 saw the release of two seminal works from DC Comics, Frank Miller's The Dark Knight Returns and Alan Moore's Watchmen that reached unprecedented levels of critical acclaim and outside media attention. By the 90's DC and the entire comic book industry experienced a boom in mature comics aimed at older audiences and simultaneously witnessed a collector's boom that increased sales but almost caused the industry to collapse soon after.

    In 1993, senior editor Karen Berger convinced DC to make her own imprint for mature readers named Vertigo, similar to DC imprints Piranha Press and Paradox Press as well as Marvel's Epic Comics. Using popular titles such as Animal Man, Swamp Thing, Hellblazer, The Sandman and Shade, The Changing Man as its blueprint along side new creator owned material, DC/Vertigo became a hub for intelligent and acclaimed comic books. While rival Marvel Comics continued to dominate the publishing arena with their exceedingly popular properties, DC/Vertigo became the destination for literary and inventive titles during the period.

    In 1999, DC purchased Jim Lee's WildStorm Productions, formerly one of the founding studios of Image. The line of WildStorm comics and properties came under DC's control though the line continued to be published on the West Coast away from DC editorial until 2010.

    All Star DC Comics

    In 2000 Marvel Comics started an imprint called ultimate marvel in which the characters' origin is changed and modernized. This eventually led DC to starting an imprint of their own in 2005, thus All Star was born.

    Both All-Star series are in their own continuity, except All-Star Batman and Robin which was part of Earth- 31.

    All Star Batman and Robin the Boy Wonder

    All-Star Batman started in 2005 and was written by Frank Miller and Penciled by Jim Lee. This was the first series in the All Star imprint and opened to mainly negative reviews but had high sales. The series was released in a sporadic schedule. The series only reached 10 issues (2008) 2 issues before the intended end of the series.

    All Star Superman

    All-Star Superman started in 2006 and was written by Grant Morrison and Penciled by Frank Quitley. This was the second series under the All Star imprint, the first being All-Star Batman and Robin. The series opened to mainly good reviews and went on to win the Eisner Award for best new series in 2006 and best ongoing series in 2007 and 2009. Like All-Star Batman the series was also released in a sporadic schedule. The series ended with issue 12. The series overall has widely considered to be one of the best Superman stories of all time.

    The New 52

    \"Justice
    Justice League # 1

    In 2011, after a period of declining comic sales, DC announced they were cancelling all the main titles and starting over with all New 52's as part of a relaunch. In charge of the relaunch is Geoff Johns and Jim Lee. The relaunch started with the release of Justice League # 1 on August 31st. this was done partially to revitalize the company and to de-age the characters and thus make them more dynamic. On January 12, 2012, it was announced that there would be a second wave of the new 52 where six titles would be getting canceled with another six to replace them, though the plan to stay at 52 ongoing monthlies seems to be consistent. DC also released a Third wave in September 2012, one year after the relaunch in September 2011. One book in the Third Wave, Talon, starring Calvin Rose was the first solo book for a character who was introduced in the New 52. The Fourth wave started in January 2013 and ended in March 2013, meaning that it was the first wave not to come out in a single month. The Fifth Wave consisted of titles such as the Movement, the Green Team and Superman Unchained.

    The New 52 had proved to be so successful with critics, fans and commercially that Marvel the main competitor of DC decided to do a relaunch of their own called \"Marvel NOW!\" in late 2012.

    Relocating from Manhattan to Burbank

    In 2015, DC Entertainment moved their entire operations from their Manhattan headquarters in New York City to their new home in Burbank, California. DC's digital and administrative departments had already been relocated to Burbank beginning in 2010. The new office is only a few blocks from their corporate parent company, Warner Bros. Studios.

    DC Imprints and Sub-Imprints

    Active

    Defunct

    *the imprint was founded in 1992 but as part of the Image conglomerate and only moved to DC in 1999.

    Other Media

    Film

    DC Comics' parent company Warner Brothers (with a few exceptions) has produced a variety of feature films based on DC Comics properties for cinematic release.

    Currently in production:

    • Black Adam (Production)
    • The Flash (Production)
    • Shazam! Fury of the Gods (Production)

    In development:

    • Aquaman 2
    • Batgirl
    • Nightwing
    • Blue Beetle

    Other live action films based on publications from DC Comics include RED, RED 2, V for Vendetta, Road to Perdition and A History of Violence.

    ","id":10,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5213245-dc_logo_blue_final.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5213245-dc_logo_blue_final.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5213245-dc_logo_blue_final.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5213245-dc_logo_blue_final.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5213245-dc_logo_blue_final.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5213245-dc_logo_blue_final.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5213245-dc_logo_blue_final.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5213245-dc_logo_blue_final.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5213245-dc_logo_blue_final.jpg","image_tags":"All Images,DC Comics logo"},"location_address":"4000 Warner Blvd","location_city":"Burbank","location_state":"California","name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-14/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-07-25 06:29:34","deck":null,"description":"

    After Success with Collections of Popeye and Henry in 1935 David McKay published comics from 1936-1950. Ace Comics 11 which contains the first appearance of The Phantom introduced one of the first of the costumed heroes.

    ","id":14,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3178876-784817.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3178876-784817.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3178876-784817.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3178876-784817.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3178876-784817.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3178876-784817.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3178876-784817.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3178876-784817.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3178876-784817.jpg","image_tags":"All Images"},"location_address":"South 9th Street","location_city":"Philidelphia","location_state":"Pennsylvania","name":"David McKay","site_detail_url":"https://comicvine.gamespot.com/david-mckay/4010-14/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-15/","date_added":"2008-06-06 11:08:00","date_last_updated":"2020-02-14 15:18:49","deck":"American publisher, started in part by Will Eisner, and famous as the home of Plastic Man, Blackhawks, The Spirit and others","description":"

    Quality Comics went out of business in 1957 after having sold the rights to most of their characters to DC Comics, including Blackhawk, Doll Man, Uncle Sam, the Human Bomb, the Black Condor, Phantom Lady, the Ray, Miss America, the Manhunter, the Red Bee, Firebrand, Max Mercury (the Golden Age Quicksilver), Plastic Man and the Spirit. These characters continued to be published and updated by DC Comics.

    Other characters from Quality Comics such as Midnight, 711, Neon the Unknown, the Red Torpedo and the Invisible Hood were also acquired by DC Comics. After a period of only a few appearances, these characters lapsed into limbo or into the public domain.

    Some of the original characters published by Quality Comics are:

    711 (DC unpublished)

    Ace of Space

    Alias the Spider (Quality, DC)

    Amorpho

    Archer

    Atmos Fear

    Beauty

    Bela Jet

    Big Shot (Quality version)

    Black Bat (Quality version)

    Black Condor (Quality, DC)

    Black Death

    Blackhawks (Quality, DC)

    Blackout (Quality version) (Villain)

    Black Shark

    Blaze Barton

    Blue Tracer (DC unpublished)

    Bozo the Iron Man (The Robot)

    Brain Master

    Brick Bat

    Burp the Twerp

    Cadava

    Captain Triumph (Quality, DC)

    The Clock (Centaur, Quality, DC, Dynamite)

    Cobra (Quality version)

    Corpse

    Corsair Queen

    Crimesmith (Quality version)

    Crossbow (Quality version)

    Crystal Queen

    Cyanide Cindy

    Cyclone Space Pioneer

    Death Patrol

    Destiny (Quality, DC) (Quality version)

    Destroying Demon

    Doctor Claw

    Doll Man (Quality, DC)

    Doll Girl (Quality, DC)

    Dr. Thirteen (Quality version)

    The Dragon

    Espionage (Black X) (DC unpublished) (created by Will Eisner)

    Figure

    Firebrand (Quality, DC)

    G-2

    General Tala (Quality, Dell, Gold Key, Dynamite)

    Ghost of Flanders

    Granite Lady

    Grasshopper

    Great Defender

    Green Lizard

    Hand of Horror

    Her Highness (Quality, DC)

    Human Bomb (Quality, DC)

    Huntress (Quality version)

    Invisible Hood (Quality, DC)

    Iron Emperor (Quality version)

    Jane Arden (precursor to Lois Lane)

    Jester (Quality, DC) (Hero)

    Jester (Villain)

    Jets

    Joe Hercules (Quality, DC)

    Just N Right

    Kid Eternity (Quality, DC)

    Kid Patrol

    King Killer

    Lady Luck (Quality, IDW, DC)

    Laughing Puppeteer

    Leopard Man (Quality version)

    Lightning Man

    Madame Doom

    Madame Fatal (Quality, DC)

    Madame Serpina

    Magno (Quality, DC)

    Manhunter (Quality, DC)

    Margo the Magician

    Marmaduke the Mouse

    Marksman (Quality, DC)

    Master Man (Quality version)

    Merlin the Magician (Quality, DC)

    Midnight (Quality, DC)

    Miss America (Quality, DC)

    Miss Fear

    Mr. Aqua

    Mr. Green

    Mr. Keeper (Quality, DC)

    Mr. Pointer

    Molly the Model

    Monsieur X

    Mouthpiece (DC unpublished)

    Neon the Unknown (Quality, DC)

    Peg Leg Friel (DC unpublished)

    Phantom Lady (Fox, Quality, DC)

    Plastic Man (Quality, DC)

    Purple Shirts

    Porcupine (Quality version)

    Quicksilver (Quality, DC) (Quality version)

    Raven (DC unpublished) (Quality version)

    The Ray (Quality, DC)

    Red Bee (Quality, DC)

    Red, White, and Blue

    Red Torpedo (Quality, DC)

    Riverman

    Rusty Ryan (Quality, DC)

    Sadly Sadly

    Samar

    Scarlet Seal (Quality, DC)

    Silk (Quality, DC)

    The Sniper

    Spider (Quality version)

    Spider Widow (Quality, DC)

    Steel Hand (Quality version)

    Steel Harrigan

    Strange Turns

    Stretcho (Quality version)

    Stormy Foster (Quality, DC)

    Supermo

    Suratai

    Sword (Quality version)

    Thrilla

    Tiger Woman

    Tom Thumb (Quality version)

    Tor (Quality version)

    Torchy (creator owned)

    The Barker (Quality, DC)

    The Spirit (Quality, Fiction House, Harvey, Dark Horse, DC, Dynamite)

    The Unknown (Quality, DC) (Quality version)

    Uncle Sam (Quality, DC)

    USA, the Spirit of Old Glory

    Veda the Cobra Woman

    Velvet

    The Voice, Invisible Detective (Quality, Dell)

    The War Wheel (Quality, DC) (Quality version)

    Wasp (Quality version)

    The Whistler

    The Whip (Quality version)

    Wildfire (Quality, DC) (Quality version)

    Wings Wendell

    Witch Quenn

    Wonder Boy (DC unpublished) (Quality version)

    Xaxol

    X of the Underground

    X-5 Secret Agent (changed to G-5 by DC)

    Yankee Eagle

    Zero: Ghost Detective (Quality, Moonstone)

    Zorro (Quality, Dell, Gold Key, Dynamite)

    The Spirit (Quality, DC, Dynamite)

    Commissioner Dolan (Quality, DC, Dynamite)

    Dr, Cobra (Quality, DC, Dynamite)

    The Octopus (Quality, DC, Dynamite)

    Hazel P. Macbeth (Quality, DC. Dynamite)

    Mister Carrion (Quality, DC, Dynamite)

    P'Gell (Quality, DC, Dynamite)

    Sand Saref (Quality, DC, Dynamite)

    Silken Floss (Quality, DC, Dynamite)

    Darling O' Shea (Quality, DC, Dynamite)

    Lorelie Rox (Quality, DC, Dynamite)

    Silk Satin (Quality, DC, Dynamite)

    DC published an Elseworlds title called JLA Destiny where many of the Quality heroes founded the JLA and were funded by Thomas Wayne. The original members were The Clock, Manhunter, Midnight, and Destiny. The Unknown, Spider Widow, Wildfire, and Destiny were characters that were based on their 1940's counter-parts. Joe Hercules and Stormy Foster appeared in Golden Age a DC Elseworlds title. Stormy would later make his New 52 debut in Earth 2. The Spirit was originally in newspapers that would later appear in Police Comics. 711, Blue Tracer, Black X, Merlin the Magician, and Raven have not made any appearances in DC canon. Bozo the Robot, Madame Fatal, Mouthpiece, and Wonder Boy have only been referred to and Lady Luck is published by IDW publishing. Lady Luck will make her DC appearance in Phantom Stranger 6. Stormy Foster and Torchy were the only characters that remained creator owned. Madame Fatale appeared in The Shade Mini series which was one of the few mini series published after The New 52.

    Some of these characters have separate pages while others do not. There was a character named Mouthpiece in the 1999 Doctor Midnight mini series; it is unknown if he is related to the Quality character of the same name. Image Comics reimagned the Golden Age characters and published Crack Comics #63 as an anthology one shot around 2008. Most of the characters are owned by DC may have lapsed into the Public Domain. The characters story arcs that continued were The Mouthpiece, Molly the Model, Alias the Spider, Wildfire, and Captain Triumph.

    ","id":15,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1387458-logo_quality.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1387458-logo_quality.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1387458-logo_quality.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1387458-logo_quality.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1387458-logo_quality.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1387458-logo_quality.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1387458-logo_quality.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1387458-logo_quality.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1387458-logo_quality.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Quality Comics","site_detail_url":"https://comicvine.gamespot.com/quality-comics/4010-15/"},{"aliases":"Fox Publications\r\nFox Feature Syndicate","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-18/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-04-21 16:47:44","deck":null,"description":"

    Fox Feature Syndicate (also known as Fox Comics and Fox Publications) was an early comic book publisher in the Golden Age of Comic Books. Founded by entrepreneur Victor S. Fox, it produced such popular titles as Blue Beetle, Fantastic Comics and Mystery Men Comics.

    It is unrelated to the company Fox Publications, a Colorado publisher of railroad photography books.

    Victor S. Fox and business associate Bob Farrell launched Fox Feature Syndicate at 480 Lexington Avenue in New York City in the late 1930s. For content, Fox contracted with comics packager Eisner & Iger, one of a handful of companies creating comic books on demand for publishers then entering the field. Writer-artist Will Eisner, at Victor Fox's request for a hero similar to the newly published hit Superman, created the superhero Wonder Man for Fox's first publication, Wonder Comics #1 (May 1939), signing his work \"Willis\". Superman owner National Periodical Publications, the company that would evolve into DC Comics, cited copyright infringement and quickly obtained a permanent injunction. Wonder Man did not reappear.

    After Eisner testified against Fox Publications at trial, Victor Fox dropped the packager and hired his own stable of comic creators, beginning with a New York Times classified ad on Dec. 2, 1939. Joe Simon, a former Eisner & Iger freelancer, became Fox Publications' editor.

    As one of the earliest companies in the emerging field, it employed or bought the packaged material of a huge number of Golden Age greats, many at the start of their careers. Lou Fine created the superhero The Flame in Wonderworld Comics; Dick Briefer created Rex Dexter of Mars in the eponymous series. George Tuska did his first comics work here with the features \"Zanzibar\" (Mystery Men Comics #1, Aug. 1939) and \"Tom Barry\" (Wonderworld Comics #4). Fletcher Hanks created, wrote, and drew Stardust the Super Wizard in Fantastic Comics in 1939 and 1940. Matt Baker, one of the few African-American comic book artists of the Golden Age, revamped — in more than one sense — the newly acquired Quality Comics character Phantom Lady' in 1947, creating one of the most memorable and controversial examples of superhero \"good girl art\".

    Future comics legend Jack Kirby, brought on staff here after freelancing for Eisner & Iger, wrote and drew the syndicated newspaper comic strip The Blue Beetle (starting Jan. 1940), starring a character created by Charles Nicholas Wojtkowski in Mystery Men Comics #1 (Aug. 1939). Kirby retained the house name \"Charles Nicholas\" for the comic strip, which lasted three months. Kirby, additionally, created and did one story each of the Fox features \"Wing Turner\" (Mystery Men #10, May 1940) and \" Cosmic Carson\" (Science Comics #4, same month).

    Throughout the 1940s, Fox produced comics in a typically wide variety of genres, but was best known for superheroes and humor. With the post-war decline in superheroes' popularity, Fox, like other publishers, concentrated on horror and crime comics, including some of the most notorious of the latter. Following the establishment of Comics Code Authority in the mid-1950s, Fox went out of business, selling the rights to the Blue Beetle to Charlton Comics.

    Born in England, Fox Publications founder Victor S. Fox was a stockbroker for the Allied Capital Corp./Fox Motor and Bank Stocks, Inc./American Common Stocks, Inc., on Park Avenue in New York City when he was [indicted citation needed] on Nov. 27, 1929 for mail fraud and related illegal \"boiler room\" activities. It appears unrecorded whether this resulted in a conviction.

    Historian Jon Berk rumors that Fox went on to become an accountant/bookkeeper at the publishing firm that would become DC Comics, where he was privy to sales figures that convinced him to launch his own comic-book company. Fellow historian Gerard Jones, writing in his book Men of Tomorrow: Geeks, Gangsters, and the Birth of the Comic Book, was unable to find documentation of this. Other sources say that at the time Action Comics #1 came out he was publishing Astrology magazines and shared a distributor with DC after seeing a sales card receipt for Action #1 he Immediately opened Fox comics in the same building DC was based in on a different floor.

    Jack Kirby: \"Victor Fox was a character. He'd look up at the ceiling with a big cigar, this little fellow, very broad, going back and forth with his hands behind his back saying, 'I'm the King of Comics! I'm the King of Comics!' and we would watch him and, of course, smile a little because he was a genuine type\".

    Joe Simon on Victor Fox : \"He was an accountant for DC Comics. He was doing the sales figures and he liked what he saw. So, he moved downstairs and started his own company.... I happened to get a job; I went over to Fox and became editor there, which was just an impossible job, because ... there were no artists, no writers, no editors, no letterers — nothing there. Everything came out of the Eisner and Iger shop. ... He was a very strange character. He had kind of a British accent; he was like 5'2\", told us he was a former ballroom dancer. He was very loud, menacing, and really a scary little guy. He used to say, 'I'm the King of the Comics. I'm the King of the Comics. I'm the King of the Comics.' We couldn't stop him\".

    Nicky Wright: \"Competing well in the 'most sexy, sadistic, and violent' category, Victor Fox’s Murder Incorporated and Blue Beetle are noteworthy.... When historians describe sleaze, sex, and violence as Fox’s obsession, they are masters of understatement. His best artists, Jack Kamen and Matt Baker, are much revered and collected for their good girl art. (Of special note is the company’s breasty crime-fighter-in-bedroom-lingerie, Phantom Lady...along with the wild and scantily attired Rulah, Jungle Goddess.)\"

    Boyd Magers: \"Never one to overlook a secondary sale, Fox often repackaged four remaindered (unsold) comics into a 25¢ Giant with a new cover, hence Hoot Gibson's Western Roundup, 132 pages dated 1950. However, since Fox always started their stories on the inside front cover (where other publishers ran an ad), these repackaged comics are always missing the first page of story content. Also, since Fox used remaindered issues, contents will vary from copy to copy of Hoot Gibson's Western Roundup.\"

    Dynamite Entertainment has revived a few of the Fox Feature Syndicate characters in their Project Superpowers title

    A portion of the stable of characters that were originally published by Fox are:

    Ace of Spades

    Adam Anteas, Jr.

    Agent D-13

    Ayesha

    The Banshee

    The Bat Boy

    Beast (Fox version)

    Beau Brummel

    Betty Boyd

    Bird Man (Fox version)

    Black Baron (Fox version)

    Blackbird (Fox version)

    Black Death (Fox version)

    Black Flagg

    Black Fury and Kid Fury (Fox and Holyoke)

    Black Fury II, Black Fury III

    Black Lion and Cub

    Black Rider

    Black Snake

    Black Tarantula

    Blast Bennett

    Blitz (Fox version)

    Blue Beetle and Sparky (Fox, Holyoke, Charlton, DC, Dynamite)

    The Bouncer

    Bronze Man (Fox version)

    Bwani

    Captain Abbott

    Captain Kidd

    Captain Savage

    Captain V

    Captain X-13

    Condor (Enemy of the original Blue Beetle)

    Cosmic Carson (Created by Jack Kirby)

    D-13 (Fox version)

    Dagar, the Desert Hawk

    Dart and Ace, the Amazing Boy (Fox, Dynamite)

    Deathmask

    Demon (Fox version)

    Diana

    Doctor Death (Fox version)

    Doctor Drool

    Doctor Fung

    Doctor Mortal

    Doctor Mortinous

    Dr. Doom (Fox version)

    The Dome (Fox version)

    Doxol

    Dynamite Thor

    Dynamo (Fox version)

    Echo (Fox version)

    The Eagle and Buddy, the Daredevil Boy (Fox, Dynamite)

    Electro ( later Dynamo)

    The Flame and Flame Girl (Fox, Dynamite) (Will Eisner creations)

    Flip Falcon

    Gary Brent

    Gimp

    Gladiator

    Gloat

    Golden Knight

    Gordon Fife and the Boy King

    The Gorilla with the Human Brain

    Green Mask and Domino (Fox, Dynamite)

    Green Mask II

    Halo (Fox, Holyoke)

    The Hand (Fox version)

    Hooded Master

    Hooded Specter of Death

    Hooded Terror

    Illuso

    Izzuki of Amazonland

    Jaguar/Jaguar Man

    Jo Jo, the Congo King

    Jungle Jo

    Jungle Lil

    K-5

    Kalkor

    Karno the Chessman

    King Cobra

    Krooga

    Lantida of Atlantis

    Lu-Nac

    Lunar the Moon Man

    The Lynx and Blackie the Mystery Boy

    Manx

    Marga the Panther Woman

    Martha of the Tree Folk

    The Mask (Fox version)

    Mastermind of Crime

    Mea of Mermea

    Merciless the Sorceress

    Miss Green Mask

    Miss X

    Mokon, King of the Moon

    Moth/Mothman

    Moths

    Mr. Death

    Mystery Man

    Nightbird

    Navy Jones

    Numa

    Octopus (Fox version)

    Perisphere Payne

    Phantom Lady (Fox, Quality, later DC)

    Phantom Rider (Fox version)

    Phara

    Prince Ferdinand Diablo

    Professor Fiend

    Puppeteer (Fox version)

    Purple Tigress

    Queen Alice

    Queen of Evil

    Ragin Doctor

    Rani-Boy

    The Rapier

    The Raven (Fox version)

    Red Robbins

    Rex Dexter of Mars

    Robbing Robot

    Rocket Kelly

    Rook (Fox version)

    Rulah, Jungle Goddess (Fox, Ajax Farell)

    Samson and David (Fox, Dynamite)

    Saturina

    The Scarecrow (Fox version)

    Scorpion (Fox version)

    Sea-Weed Men

    Secret Agent D-13

    Serpent Lady

    Skull

    Sorceress of Zoom

    Space Smith

    Sphinx

    Spider Queen

    Stardust, the Super Wizard

    Sub Saunders

    Sulia of Souless Isle

    Sukon, King of the Sun

    Super Spy Q-4

    Swamp Master

    Tanee

    Tangi

    Tegra, Jungle Empress

    Thor (Fox version)

    Thinker (Fox version)

    The Topper

    Tumbler

    Typhon

    U.S. Jones (Fox, Dynamite)

    V-Man and the V-Boys (Fox, Holyoke, Dynamite)

    Voodoo Man

    Weather Kings

    Wing Turner (Created by Jack Kirby)

    Winkon, King of the Winds

    Wonder Man (Fox version) (Created by Will Eisner)

    The Wraith (Fox version)

    Yank and Rebel

    Yank Wilson

    Yarko, the Great

    Zago, Jungle Prince

    Zanzibar, The Magician

    Zegra, Jungle Princess

    Zoro, the Wizard

    Many of these characters have their own separate page and others do not. Image reimagined Golden Age characters and literally published the next issue as an anthology one shot series in 2008. They published Fantastic Comics #24 on February 13 2008.

    The issue republished the continuing story arc of characters Samson, Flip Falcon, Golden Knight, Yank Wilson, Space Smith, Captain KIdd, Professor Fiend, Sub Saunders, and Stardust the Super Wizard.

    ","id":18,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/19772/673150-foxfeatr.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/19772/673150-foxfeatr.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/19772/673150-foxfeatr.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/19772/673150-foxfeatr.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/19772/673150-foxfeatr.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/19772/673150-foxfeatr.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/19772/673150-foxfeatr.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/19772/673150-foxfeatr.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/19772/673150-foxfeatr.jpg","image_tags":"All Images"},"location_address":"480 Lexington Avenue","location_city":"New York","location_state":"New York","name":"Fox Comics (US)","site_detail_url":"https://comicvine.gamespot.com/fox-comics-us/4010-18/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-20/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-04-19 03:01:06","deck":"Harvey is a long standing publishing company that presents such lovable characters as Casper, the Friendly Ghost, Richie Rich, and Lil' Hot Stuff.","description":"

    Harvey Comics was founded by Alfred Harvey in New York City in 1941. Alfred was joined by his brothers Robert B. Harvey and Leon Harvey, and they focused on licensed characters mostly from the animation company Famous Studios (from Paramount Pictures). Harvey Comics is also know to be one of the pioneers in 3-D comics in the 1950s. One of their original superheroes is deemed to be the first 3-D hero - Captain 3-D.

    The company is defunct since the 1990s.

    Some of the characters that Harvey published were:

    Golden Age

    • Atoma
    • Biff Bannon
    • Black Cat and Black Kitten (Harvey Estate)
    • Black Orchid (Harvey version)
    • Blazing Scarab
    • Blonde Bomber
    • Boy Explorers (owned by Simon/Kirby)
    • Boy Heroes
    • Boy's Ranch (owned by Simon/Kirby)
    • British Agent 99
    • Buck Johnson
    • Buckskin Boys
    • Cadet
    • Captain Colt
    • Captain Freedom
    • Captain Red Blaze and Spark
    • Captain Red Cross
    • Chief Justice and Jester
    • The Clown (Harvey version)
    • Crimson Raider
    • Dr. Diablo
    • Dr, Grimm, Ghost Detective
    • Dr. Miracle
    • Dr. Skull
    • Dr. Taboo
    • Firebrand (Chesler/Harvey version)
    • Firebug (Harvey version)
    • Fly-Man
    • Green Ghost (Hero)
    • Green Ghost II (Villian)
    • Green Hornet and Kato (Holyoke, Harvey, Monnstone, Dynamite)
    • Human Meteor (Harvey, Marvel)
    • Invisible Scarlet O'Neil (Eastern Color, Harvey)
    • Jackal (Harvey version)
    • Jim Cannon
    • Johnny Fox
    • Johnny Rebel (Chesler/Harvey)
    • Jungleman
    • Kilraye
    • King Walrus
    • Lady Satan (Chesler/Harvey)
    • Landor, Maker of Monsters
    • Magician from Bagdad
    • Mars Mason
    • Master Key
    • Mr. Q (Harvey version)
    • Nazi Shock Gibson
    • Neptina
    • Night Hawk (Harvey version)
    • Padlock Holmes
    • Pat Parker, War Nurse and the Girl Commandos
    • Phantom Sphinx
    • Red Blazer
    • Red Demon
    • Rurik, the Sea King
    • Scarlet Arrow
    • Scarlet Nemesis
    • Scarlet Phantom
    • Scarlet Sentry
    • Sceptre
    • Shock Gibson (Brookwood)
    • Smoke Carter
    • Speed Taylor
    • Spike Marlin
    • Spin Hawkins
    • Spirit of 76 (Harvey version)
    • Spitfire (Harvey version)
    • Steve Battle
    • Stuntman (owned by Simon/Kirby)
    • Ted Parrish, Man of 1,000 Faces
    • Texas Tyler
    • The Hand (Harvey version)
    • The Man in Black, called Fate
    • The Hand (Harvey version)
    • The Spirit (Quality, Fiction House, Harvey, Dark Horse, DC, Dynamite)
    • The Wasp (Harvey version)
    • Three Aces
    • Tigra (Harvey version)
    • Vagabond Prince
    • White Mask
    • Yankee Doodle Jones (Chesler/Harvey)
    • The Zebra

    Silver Age

    • 3 Rocketeers (owned by Simon/Kirby)
    • Bee-Man
    • Captain 3-D (owned by Simon/Kirby)
    • Captain Flower
    • Dynamite Joe (owned by Simon/Kirby)
    • Fighting American (owned by Simon/Kirby) (Prize, Harvey, Topps, DC, Dynamite)
    • Fruitman (owned by Warren Harvey)
    • Glowing Gladiator
    • Jack Quick Frost
    • Jigsaw (owned by Simon/Kirby) (Harvey version)
    • Magic Master
    • Miracles, Inc.
    • Pirana (owned by Simon/Kirby)
    • Sooper Hippie
    • Spyman (owned by Simon/Kirby)
    • Tiger Boy (owned by Simon/Kirby)

    Some of these characters have separate entries, while others do not.

    ","id":20,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3252847-pix_harvey_002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3252847-pix_harvey_002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3252847-pix_harvey_002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3252847-pix_harvey_002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3252847-pix_harvey_002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3252847-pix_harvey_002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3252847-pix_harvey_002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3252847-pix_harvey_002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3252847-pix_harvey_002.jpg","image_tags":"All Images"},"location_address":"55 West 42nd Street","location_city":"New York","location_state":"New York","name":"Harvey","site_detail_url":"https://comicvine.gamespot.com/harvey/4010-20/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-04-21 16:47:51","deck":"The 1930s and 40's predecessor to Marvel Comics.","description":"

    Brief History

    \"
    Many of the Heroes of the 1940's are still active today

    The company that started it all. Timely Comics was established in 1939 and run by Martin Goodman. Ironically, the very first comic the company published was named \"Marvel Comics\"--the very name the company would later take for itself. Timely is famous for creating iconic comic book characters who are still published to this day such as Captain America, The Human Torch, and Namor. The company published mostly superhero comics until they were no longer profitable in the late 1940s. In the 1950s, the company changed its name to Atlas, publishing mostly horror and detective comics until the early 1960s when the company again changed its name, this time to Marvel Comics, a name that would last and continues to build on the foundation laid by Timely Comics.

    ","id":21,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1045708-222_20060830001202_publisher_1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1045708-222_20060830001202_publisher_1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1045708-222_20060830001202_publisher_1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1045708-222_20060830001202_publisher_1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1045708-222_20060830001202_publisher_1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1045708-222_20060830001202_publisher_1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1045708-222_20060830001202_publisher_1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1045708-222_20060830001202_publisher_1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1045708-222_20060830001202_publisher_1_.jpg","image_tags":"All Images"},"location_address":"330 West 42nd Street","location_city":"New York","location_state":"New York","name":"Timely","site_detail_url":"https://comicvine.gamespot.com/timely/4010-21/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-22/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-01-02 19:50:18","deck":"Eastern Color Printing are given credit for the birth of the comic book. Funnies on Parade and Famous Funnies were\nthe two comics that gave birth to the medium. Eastern Color published comics from 1933 through the mid 1950's. In 1973 it ceased printing comics for other companies.","description":"

    In the early 2000's Eastern Color closed it's doors.

    Dynamite Entertainment has recently revived some of these characters in the Project Superpowers title.

    This is list of a few of the stable of characters that were originally published by Easter Color Printing:

    Buck Rogers novella Armageddon 2419 A.D. (Eastern Color, Toby, Dell, Gold Key, Marvel, DC, Dynamite)

    Dan Dunn, the other Dick Tracy (Eastern Color, Dell, Gold Key)

    Dr. Chuda

    Fearless Flint ( Eastern Color, Dynamite)

    Flash Gordon (Toby, Eastern Color, Dell. Gold Key, Harvey, Charlton, Mar, DC, DE)

    Fly'n Jenny

    Hydroman (Eastern Color, Dynamite)

    Invisible Scarlet O'Neil (Eastern Color, Harvey)

    Jane Arden (Eastern Color, Quality)

    King Fiu

    Lava Man

    Lone Rider (Eastern Color, Ajax Farell)

    Man O' Metal (Eastern Color, Dynamite)

    Mann of India

    Music Master

    Rainbow Boy (Eastern Color, Dynamite)

    Spider Woman (Eastern Color version)

    The Purple Zombie (Eastern Color, Gold Key)

    Third Key

    Zina of Koraka

    Many of these characters have separate pages and some do not.

    ","id":22,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1395337-famous_funnies.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1395337-famous_funnies.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1395337-famous_funnies.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1395337-famous_funnies.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1395337-famous_funnies.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1395337-famous_funnies.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1395337-famous_funnies.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1395337-famous_funnies.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1395337-famous_funnies.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Eastern Color","site_detail_url":"https://comicvine.gamespot.com/eastern-color/4010-22/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-24/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-12-16 14:57:21","deck":null,"description":null,"id":24,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"National Periodical Publications","site_detail_url":"https://comicvine.gamespot.com/national-periodical-publications/4010-24/"},{"aliases":"Marvel Comics Group\r\nMarvel Entertainment\r\nMarvel Worldwide Inc.\r\nMarvel Publishing Inc.","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-02-28 20:42:49","deck":"Formerly known by names including \"Atlas\" and \"Timely\", Marvel Entertainment is the publisher of comic books featuring iconic characters and teams such as the Fantastic Four, Spider-Man, the Avengers, the X-Men, Iron Man, the Hulk, Thor, Captain America and Daredevil. Currently owned by the Walt Disney Company, Marvel is one of the \"Big Two\" comic publishers along with DC Comics.","description":"

    Origin

    Created by current co publisher of Marvel, Stan Lee.

    Imprints

    History

    In 1939 Martin Goodman was persuaded by Frank Torpey, the sales manager of Funnies Inc. to start publishing comics. This was the start of Timely Comics Publications, which would later produce its first comic; Marvel Comics #1.

    Timeline

    1936

    • Introduction of Ka-Zar in a pulp fiction magazine published by Manvis owned by Martin Goodman prior to founding Timely Comics. Ka-Zar was created by Bob Byrd who was the author of Ka-Zar #1. Ka-Zar's pulp fiction story would later be adapted in Marvel Comics #1.

    1939

    \"The
    The Timely logo

    1940

    1941

    1942

    • The December 7 1941 attack on Pearl Harbor sends several Timely members into armed services.
    • Introduction of Citizen V.
    • Introduction of Miss Fury.
    • Vince Fago becomes Editor while Stan Lee is off at war.

    1943

    1944

    1945

    • The end of World War 2 brought the decline of “Super Heroes” sales.
    • Introduction of Millie the Model who spawned 207 issues.
    • Introduction of Patsy Walker.
    • Marvel reaches out to a young female audience.
    • Stan Lee returns to his chair as Editor-in-Chief after the war.

    1946

    • Introduction of The Blonde Phantom.
    • Introduction of Mighty Mouse.
    • Young Allies Comics was canceled.
    • All Winners Squad #21 was the last issue for the team.
    • Harvey Kurtzman starts doing freelance work for Timely comics. He would later become the original editor of MAD magazine.
    • Gene Colan is hired as an artist for Timely.

    1947

    • Introduction to Namora.
    • As Super Hero comic stayed in a slump, Crime, Romance and Westerns gain in popularity.

    1948

    • Comic Crime-fighters and Lawbreakers Always Lose! debut to increase the popularity of the crime comics.
    • Introduction of Two-Gun Kid.
    • Introduction of Sun Girl.
    • Introduction of Kid Colt.
    • Introduction of Venus
    • The Super Rabbit series is canceled.
    • John Buscema answers an ad to become one of the best know artists in Marvel’s history.
    • As Super Hero comics stayed in a slump, Crime, Romance and Westerns gain in popularity.

    1950's

    • Timely goes through an identity change. From Timely to Atlas Comics to eventually Marvel.

    1960's

    \"Fantastic
    Fantastic Four #1 launches the \"Marvel Age of Comics\".
    • As super hero comics make a re-emergence Marvel comes out with it's new heroes. These heroes have more personal and emotional back stories
    • 1961 sees the creation of The Fantastic Four.
    • In the following years (following the successful relaunch of DC's heroes ) Marvel launches the Hulk, X-Men, Iron Man, Spider-Man, Daredevil, Avengers, The return of the Golden Age Captain America and many more.

    The comic-book arm of the company started in 1939 as Timely Publications, and by the 1950s was generally known as Atlas Comics. Marvel's modern incarnation dates from 1961, with the launching of Fantastic Four and other superhero titles created by Stan Lee, Jack Kirby, Steve Ditko, and others. Marvel has since become the largest American comic book publisher over long time competitor DC Comics.

    Editors-in-chief

    Events in the Marvel Universe

    1980's

    1990's

    2000's

    \"No
    \"No

    2010's

    \"No

    2020's

    Marvel Animation

    \"No

    Marvel Movies (Cinematic Releases)

    Upcoming Films

    • Ant-Man and the Wasp (planned release July 6, 2018)
    • Captain Marvel (planned release March 8, 2019)

    Marvel Headquarters

    Located in New York City, Marvel has been successively headquartered in the McGraw-Hill Building (where it originated as Timely Comics in 1939); in suite 1401 of the Empire State Building; at 635 Madison Avenue (the actual location, though the comic books' indicia listed the parent publishing-company's address of 625 Madison Ave.); 575 Madison Avenue; 387 Park Avenue South; 10 East 40th Street; and 417 Fifth Avenue.

    Marvel has had 25 television series, 34 live-action films and 72 video games based on the Marvel Universe. There are also several theme park rides based on the characters of the Marvel Universe, too.

    ","id":31,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2/426367-marvel.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2/426367-marvel.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2/426367-marvel.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2/426367-marvel.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2/426367-marvel.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2/426367-marvel.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2/426367-marvel.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2/426367-marvel.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2/426367-marvel.gif","image_tags":"All Images,Marvel Comics logo"},"location_address":"417 5th Avenue","location_city":"New York","location_state":"New York","name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-32/","date_added":"2008-06-06 11:08:00","date_last_updated":"2017-07-13 14:19:43","deck":"Ace Magazines was a Golden Age comic book publisher","description":"

    The stable of characters of Ace Magazines were

    Ace McCoy

    Agent Q-13

    The Black Ace

    Black Puma

    Black Spider (Ace Magazines version)

    Blitz Buster

    Blue Rubber Man

    Blue Spark

    Buck Steele

    Buckskin Blake

    The Clown (Ace Magazines version, Dynamite) (Clown C.E.O.)

    Captain Courageous (Ace Magazines, Dynamite)

    Captain Gallant (Ace Magazines version)

    Captain Nippo (Ace Magazines, Dynamite)

    Captain Victory (Ace Magazines version)

    Congo Jack

    Copperheads

    Corporal Flint

    Cougar (Ace Magazines version)

    Cross Draw Kid

    Dictator's Shadow

    Dr. Diablo

    Dr. Nemesis (Ace Magazines, Marvel)

    Doctor Oxyo

    Eel (Ace Magazines version)

    Fate (Ace Magazines version)

    The Flag (Ace Magazines, Dynamite)

    Flash Lightning

    Gilda

    Green Arrowhead

    Green Genie

    Hap Hazard

    Icicle (Ace Magazines version)

    Jewel

    Lash Lightning and Lightning Girl (Ace Magazines, Dynamite)

    Lenore Black

    Lizard (Ace Magazines version-similar look to Marvel's Lizard)

    Lone Warrior and Dickey

    Maestro (Ace Magazines version)

    Magno the Magnetic Man and Davey (Ace Magazines, Dynamite)

    Marvo the Magician

    Mastermind (Ace Magazines version)

    Mirror Man (Ace Magazines version)

    Moon Man (Ace Magazines, Moonstone)

    Mr. Risk

    Old Man of the Pyramids

    Paul Revere, Jr.

    Phoenix (Ace Magazines version)

    Professor Aries, the Invisible Man

    Professor Bixby

    Professor Octopus

    Purple Plague

    Red Death

    Retribution

    Secret Agent X, the Man of 1,000 Faces

    Shinto Samaraui

    Surgeon

    Teacher

    The Cobra (Ace Magazines, Dynamite)

    The Mummy

    The Raven (Mr. Raven) (Ace Magazines, Dynamite)

    The Swami

    The Sword and Lancer (Ace Magazines, Dynamite)

    The Torcher

    The Unknown

    The Unknown Soldier (The Soldier Unknown) (Ace Magazines, Dynamite)

    The Vulture (Ace Magazines version)

    Tiger Man (Ace Magazines version)

    Uno

    Vulcan (Ace Magazines version, Dynamite)

    Whiz Wilson

    X-2

    X the Phantom Fed (Ace Magazines, Moonstone)

    ","id":32,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1387443-logo_ace1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1387443-logo_ace1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1387443-logo_ace1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1387443-logo_ace1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1387443-logo_ace1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1387443-logo_ace1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1387443-logo_ace1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1387443-logo_ace1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1387443-logo_ace1.jpg","image_tags":"All Images"},"location_address":"88 West 44th Street","location_city":"New York","location_state":"New York","name":"Ace Magazines","site_detail_url":"https://comicvine.gamespot.com/ace-magazines/4010-32/"},{"aliases":"Crest","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-09-11 05:50:18","deck":"Fawcett is best known as being the publisher that created Captain Marvel, who eclipsed Superman in sales during the Golden age. Eventually sued and forced out of business by litigious competitor DC, they ceased publishing in the early 1950s. \nDC and others have since revived some of Fawcett's bigger stars.","description":"

    Some of the characters that were published by Fawcett are:

    Ace of Blades

    Ant Queen

    Atom Blake

    Balbo, the Boy Magician

    Banshee O' Brien (Fawcett, DC)

    Bee

    Birdman (Fawcett version)

    Black Adam (Fawcett, DC)

    Black Beauty

    Black Clown

    Black Hood (Fawcett version)

    Black Mandarin

    Blackmask (Fawcett version)

    Black Mikado

    Black Rat

    Black Spider (Fawcett version)

    Black Thorn (Fawcett version)

    Brain (Fawcett version)

    Boss

    Bulletcrook

    Bulletman and Bulletgirl and Bulletdog (Fawcett, DC)

    Commando Yank

    Captain Nazi (Fawcett, DC)

    Captain Marvel (Fawcett, DC)

    Captain Marvel Jr. (Fawcett, DC)

    Captain Midnight (Fawcett, Dell, Moonstone, Dark Horse)

    Captain Venture (Fawcett, Dell)

    Captain Video

    Chuck Ramsey (Fawcett, Dark Horse)

    Count Spectrum

    Countess Siroon

    Crime Man

    Crystal (Fawcett version)

    Dan Dare (not the British sci-fi hero) (Fawcett version)

    Dark Angel (Fawcett version)

    Devil's Dagger

    Diamond Jack

    Doctor Death I,II (Fawcett version)

    Doctor Destiny

    Doctor Fear

    Doctor Mood

    Doctor Riddle

    Doctor Voodoo (Fawcett, Charlton)

    Don Winslow of the Navy (Bell, Fawcett, Charlton)

    El Carim: Master of Magic

    Dr. Sivana (Fawcett, DC)

    Sivana Family (Fawcett, DC)

    Evil Eye

    Fleshless Ones

    Ghost (Fawcett version)

    Golden Arrow (Fawcett, DC)

    Green Devil

    Headless Horror

    Horned Hood

    Horrible Hand

    The Hunchback

    Hurricane Hanson

    Illyria, the Spy Queen

    Invisible Man

    Ivan Shark (Fawcett, Dark Horse)

    Jagga, the Space Raider

    Jim Dolan

    Johnny Blair

    Joyce Ryan (Fawcett, DC)

    Judges of the Dead

    Lance O' Casey

    Lee Granger, Jungle King

    Laughing Skull

    Lightning King

    Limping Mummy

    Master Man (Fawcett version)

    Mark Swift and The Time Retarder

    Mister H

    Mystic Man

    Ibis the Invincible (Fawcett, DC)

    Mary Marvel (Fawcett, DC)

    Marvel Family (Fawcett, DC)

    Minute Man (Fawcett, DC)

    Mirage Maker

    Mento, Spirit of Murder

    Mentor

    Mr. Atom (Fawcett, DC)

    Mr. Avarice

    Mr. Mind (Fawcett, DC)

    Mr. Mind's Monster Society of Evil (Fawcett, DC)

    Mister Night

    Mister Skeleton

    Mister Scarlett and Pinky (Fawcett, DC)

    Mister Skeleton

    Mister Tawky Tawny (Fawcett, DC)

    Murder Prophet

    Nyoka, the Jungle Girl (based on Edgar Rice Burroughs movie Jungle Girl)

    Olbaid

    Phantom Bomber

    Phantom Eagle (Fawcett, Marvel)

    Penguin (Fawcett version)

    Radar

    Raiders of Ramat

    Rainbow Skywriter

    Red Death

    Red Gaucho

    Scoop Smith (Fawcett, DC)

    Shazam (Fawcett, DC)

    Sea-Devil (Fawcett version)

    Sargeant Twilight

    ShopKeeper

    Spooks

    Spy Smasher (Fawcett, DC)

    Taia

    Tigress (Fawcett version)

    The Mask (Fawcett version)

    The Shark (Fawcett, DC)

    Vampires Daughter

    War Bird (Fawcett version)

    Warlock the Wizard

    Weeper (Fawcett, DC)

    White Rajah

    X-33 (Fawcett version of G.I. Robot)

    Xog, King of Saturn

    Zoe of El Casa Del Oro

    Zoro, The Mystery Man

    Some characters have separate bios, while others do not.

    ","id":34,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8650262-fawcett.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8650262-fawcett.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8650262-fawcett.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8650262-fawcett.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8650262-fawcett.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8650262-fawcett.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8650262-fawcett.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8650262-fawcett.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8650262-fawcett.jpg","image_tags":"All Images,Publishers"},"location_address":"1501 Broadway","location_city":"New York","location_state":"New York","name":"Fawcett Publications","site_detail_url":"https://comicvine.gamespot.com/fawcett-publications/4010-34/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-37/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-04-21 20:45:11","deck":null,"description":"

    Hillman Published Various titles chief among them were Air Fighters and Airboy.

    A few of the Hillman characters have been revived by Dynamite Entertainment under their Project Superpowers title.

    These are some of the stable of characters that were originally published by Hillman:

    Airboy (Hillman, Moonstone, Image)

    The Heap (Hillman, Moonstone)

    Skywolf (Hillman, Moonstone)

    Valkyrie (Hillman, Moonstone)

    Iron Ace (Hillman, Moonstone)

    Iron Lady (create by Simon-Kirby)

    Bald Eagle (Hillman, Moonstone)

    Airmaidens

    Baroness Blood

    Bill Colt, the Ghost Rider

    Black Ace

    Black Baron

    Black Commander/Commander X (Hillman, Moonstone)

    Black Mail

    Boy King and his Giant (Hillman, Dynamite)

    Black Angel

    Blanda, Jungle Queen

    Bomber Burns

    Boy Rangers and Loco

    Brother Crane

    Bullet Bob

    Buzzard Barnes and the Sky Devils

    Checker

    Conqueror

    Crash Davis

    Crusader, Man in Black

    Dash Dixon, Man of Might

    Deathless Brain

    Defender, Man of 1,000 Faces

    Dr. Plasma

    Dr. Roulette

    Dr. Royce

    Dusty Doyle

    Firebug (Hillman version)

    Flying Cadet

    Flying Dutchman (Hillman, Moonstone)

    Flying Fool (Hillman, Moonstone) (created by Simon/Kirby)

    Green Eyed Man

    Gunmaster (Hillman version)

    Half Man

    Hitler's Rex

    K-7, Secret Agent

    Lefty Larson

    Madame Claw

    Masked Angel

    Micro-Face

    Misery

    Mosquito

    Muggsy

    Nightmare and Sleepy

    Paris

    Phantom Ranger

    The Porcupine (Hillman version)

    Punch and Judy (Hillman version)

    Queen of Hearts

    Rackman

    Red Roberts, The Electro Man

    Rocket Riley

    Rubberman

    Sky Wizard, Master of Space (Hillman, Dynamite)

    Spade of the Secret Service

    The Steel Shark (Hero)

    The Steel Shark (Villian)

    The Scorpion (Hillman version)

    The Veiled Prophet

    Tex Trainor

    Twilight

    Zippo

    Zzed

    Many of these characters have separate pages while others do not.

    ","id":37,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3232361-pix_hillman_001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3232361-pix_hillman_001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3232361-pix_hillman_001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3232361-pix_hillman_001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3232361-pix_hillman_001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3232361-pix_hillman_001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3232361-pix_hillman_001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3232361-pix_hillman_001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3232361-pix_hillman_001.jpg","image_tags":"All Images"},"location_address":"11 East 44th Street","location_city":"New York","location_state":"New York","name":"Hillman","site_detail_url":"https://comicvine.gamespot.com/hillman/4010-37/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-45/","date_added":"2008-06-06 11:08:00","date_last_updated":"2017-08-03 19:48:48","deck":"Prize Comics or Crestwood Publications was a Golden Age comic publisher from 1940 to 1968.\n Some of the best known Prize characters were revived by Dynamite Entertainment in 2008.","description":"

    There have been a few Prize Comics characters that have been revived by Dynamite Entertainment under the Project Superpowers title.

    Some of the stable of characters that were published by Prize were:

    Air Male and Stampy (Prize, Dynamite)

    American Eagle

    Atomic-Man

    Black Bull

    Blue Streak (Prize version)

    Black Owl II (Prize, Dynamite)

    Bucky, Brady, and Storm

    Bulldog Denny

    Captain Gallant (Prize version)

    Captain Heroic (parody of Captain Marvel)

    Cheif Skullface

    Croco-Man

    Double Header (Prize version)

    Dr. Dekkar, Master of Monsters

    Dr. Frost and Frankenstein (Prize version)

    Dr. Styx

    Emperor Seng I (Prize, Dynamite)

    Fighting American and Speedboy, the Wonder Kid (Prize, Harvey,Topps, DC, Dynamite, Titan)

    Flying Fist and Bingo

    Fox (Prize version)

    Gorr, the Gorilla King

    Green Lama (Prize, Spark, Harvey, Dell, Moonstone, Dynamite)

    Invisible Boy

    Jaxon, of The Jungle

    Junior Rangers

    Jupiter, Master Magician

    Lt. Hercules and the Boy Champions

    Oom, the Great

    Power Nelson, Future Man and Jupiter (Prize, Dynamite)

    Prince Ra

    Round Robin (Prize, Harvey, Topps, DC, Dynamite)

    Secret Agent M-11

    Stopwatch

    Ted O' Neil, Master Magician

    Tom Corbett, Space Cadet (Prize, Dell, Blue Water) ABC, CBS and NBC each aired his tv series

    Tsarong (Prize, Dynamite)

    Twist Turner

    Yank and Doodle (Prize, Dynamite)

    K the Unknown aka Black Owl I

    The Great Voodini

    Vulcan (Prize version)

    Zora

    Many of these characters have their separate pages, while others do not.

    ","id":45,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3044747-untitled.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3044747-untitled.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3044747-untitled.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3044747-untitled.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3044747-untitled.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3044747-untitled.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3044747-untitled.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3044747-untitled.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3044747-untitled.png","image_tags":"All Images"},"location_address":"32 West 22nd Street","location_city":"New York","location_state":"New York","name":"Prize","site_detail_url":"https://comicvine.gamespot.com/prize/4010-45/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-46/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-08-04 11:34:38","deck":"Founded in 1855, Street & Smith was a New York publisher of inexpensive paperbacks and magazines called pulp fiction or dime novels, as well as comic books and sporting yearbooks.","description":"

    sFrancis Scott Street and Francis Shubael Smith began their publishing partnership when they bought an old fiction magazine. In 1858 they bought the New York Weekly Dispatch, in 1933 they bought some tittles from Clayton Magazine which included \"Astonishing Stories\". In 1937 Street & Smith discontinued many of their pulp tittles such as \"Complete Stories\" and \"Top-Notch\".

    Street & Smith stopped publishing pulps and comics in 1949 when sales declined due to the advent of television. They sold many of their tittles to Popular Publications. Conde Nast Publications bought them out in 1959. The company name continued to be used on the sports pre-season magazine until 2007. American City Business Journals acquired the Sporting News and merged Street and Smith in to TSN's annuals.

    Street & Smith were responsible for creating such classic pulp characters as The Shadow, The Avenger, Justice Inc, and Doc Savage.

    The other characters originally published by Street and Smith were

    Ajax, The Sun Man

    Bill Barnes

    Black Dragon

    The Black Fury V

    Cap Fury

    Crime Wizard

    Dazaar, the Arch Fiend

    Devil Kyoti

    Doc Savage (Street and Smith, Gold Key, Marvel, DC, Dark Horse, Dynamite)

    Dr. Quartz

    Frank Merriwell

    Frank Reed

    Gadget Man (first creation of Lester Dent. This lead to the Dent's creation of The Shadow)

    Hooded Wasp with sidekicks Wasplet and Honey Wasp

    Iron Ghost

    Iron Munro, the Astonishing Man (Street and Smith version)

    I. V. Frost (Street and Smith, Moonstone)

    John Sunlight (Street and Smith, DC, Dynamite)

    The Joker (Detective Story Magazine 1919)

    Justice, Inc (Street and Smith, DC, Dynamite)

    Metal Master (Street and Smith, Marvel)

    Monstradamus (First multi-arc Shadow villian)

    Nick Carter

    Norgil the Magician

    Professor Solarus, The Space Master

    Red Dragon (Street and Smith version)

    The Avenger (Street and Smith, DC, Dynamite)

    The Shadow (Street and Smith, DC, Marvel, Dark Horse, Dynamite)

    Shiwan Khan (Street and Smith, DC, Dynamite)

    Spider (Street and Smith version)

    The Talon

    Thunderbolt (Street and Smith version)

    Vanisher (Street and Smith, Marvel)

    Voodoo Master (Street and Smith, Dynamite)

    White Rook

    Dynamite publishes The Shadow. Shadow was published by DC. DC was publishing The Avenger, Doc Savage, and Justice Inc. before Dynamite picked up the publishing rights to all the characters.

    Street & Smith was purchased by Conde Nast in 1959.

    Major series:

    For a list of Street and Smith publications including the pulp work see Wikipedia.org.

    ","id":46,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/1633245-streetsmith.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/1633245-streetsmith.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/1633245-streetsmith.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/1633245-streetsmith.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/1633245-streetsmith.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/1633245-streetsmith.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/1633245-streetsmith.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/1633245-streetsmith.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/1633245-streetsmith.jpg","image_tags":"All Images"},"location_address":"79 Seventh Avenue, Manhattan","location_city":"New York","location_state":"New York","name":"Street And Smith","site_detail_url":"https://comicvine.gamespot.com/street-and-smith/4010-46/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-52/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-12-02 13:09:13","deck":null,"description":"

    Overview

    There have been a few Lev Gleason characters that have been re-imagined at Dynamite Entertainment under their Project Superpowers title.

    Some of the characters that were originally published by Lev Gleason were:

    • Lev Gleason Heroes
    • Ace Powers
    • Barry Lane, Adventure Hunter
    • Bill Wayne, Texas Terror
    • Black Diamond
    • Blackout (Lev Gleason version)
    • Bombshell (Lev Gleason version)
    • Bronze Terror
    • Captain Battle and Nathan Hale aka Captain Battle Jr. (Lev Gleason, Dynamite)
    • Captain Battle Jr.(Lev Gleason, Dynamite)
    • Captain Fearless (Lev Gleason version)
    • Crimebuster and Squeeks
    • Cloud Curtis
    • Congo Raider
    • Daredevil (Death Defying Devil) (Dynamite)
    • Dash Dillion
    • Deadly Dreaded Dragon
    • Dickie Dean, Boy Inventor
    • Duke Kelly, Ace Investigator
    • Dynamo Hill
    • Egghead
    • Flag
    • The Ghost (Lev Gleason, Dynamite) (Lev Gleason version)
    • Hot Rock Flanagan
    • Houdonnit the Great
    • Jack of Spades
    • Johnny Law, Sky Ranger
    • Kelly The Cop
    • Ken Keene
    • Kilroy
    • Lance Hale and Jackie
    • Little Wise Guys I, II
    • London (created by Jerry Robinson)
    • Meatball
    • Mr. Midnight
    • Nightro
    • Pat Patriot
    • Pioneer, Champion of America (Lev Gleason and Dynamite)
    • Pirate Prince
    • The Planet Patrol
    • Presto Martin
    • Red American #1
    • Red Reeves, Boy Magician
    • Rocky X of the Rocketeers
    • The Saint (the only known comic book appearance of Leslie Charteris character) (Lev Gleason, Moonstone)
    • Scoop Scuttle
    • Secret Agent X-101
    • Silver Ranger
    • Silver Streak and Meteor/Mercury with Whiz the Falcon (Lev Gleason and DE)
    • Sky Wolf
    • Sniffer and Jinx
    • Solar Patrol
    • Spirit Man
    • Swoop Storm or Swoop Smith
    • 13 (Lev Gleason, Dynamite)
    • Times Square
    • Thun-Dohr
    • War Eagle
    • The Wasp (Lev Gleason version)
    • Yankee Longago
    • Young Robin Hood
    • Zongar, the Miracle Man

    • Lev Gleason Villians
    • Baron Doom
    • Black Dragon
    • Boar
    • Bolt (Lev Gleason version)
    • The Claw (Lev Gleason version) (Lev Gleason, Dynamite)
    • Cobra Lady or Queen
    • Crow King
    • Deadly Dozen
    • Degalos
    • Dr. Dracula
    • Dr. Horror
    • The FFF
    • Friar Diablo
    • Frogface
    • Fu Tong
    • The Ghoul
    • The Green Claw
    • Green Dragon
    • The Greys
    • Herr Death
    • He-She
    • Hyena (Lev Gleason version)
    • Invisible Men
    • Iron Jaw I (Lev Gleason version)
    • Iron Jaw II
    • Iron Moles of Galaxy X
    • King Questionmark
    • Lady Killer
    • The Mallet
    • Mr. Crime
    • Mummy Master
    • Noman
    • Panther (Lev Gleason version)
    • Phantom Archer
    • The Professor
    • Prof. Blitznozzle
    • Prof. Skinn
    • Prof. Venom
    • Princess Sheba
    • Punch and Judy (Lev Gleason version)
    • Rodent
    • Scarlet Skull
    • Serpent
    • Silver Cult
    • Sir Satan
    • Skull Men
    • Spider (Lev Gleason version)
    • Spook (Lev Gleason version)
    • Striker
    • The Vacuum
    • The Veiled Lady (Lev Gleason, Dynamite)
    • Wizard (Lev Gleason version)
    • Wolf Carson

    Many of these characters have separate pages while others do not. Image Comics re-imagined Golden Age characters and revived many in their next issue project in 2009. Silver Streak Comics #24 was published in December 2009. The characters story arcs that were continued were Daredevil, Silver Streak, Kelly the Cop, The Claw, and Captain Battle. Kelly the Cop is the only character that was not also re-created at Dynamite Entertainment.

    ","id":52,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3241120-pix_gleason_001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3241120-pix_gleason_001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3241120-pix_gleason_001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3241120-pix_gleason_001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3241120-pix_gleason_001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3241120-pix_gleason_001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3241120-pix_gleason_001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3241120-pix_gleason_001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3241120-pix_gleason_001.jpg","image_tags":"All Images"},"location_address":"114 East 32nd Street","location_city":"New York","location_state":"New York","name":"Lev Gleason","site_detail_url":"https://comicvine.gamespot.com/lev-gleason/4010-52/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-53/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":53,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Publication Enterprises","site_detail_url":"https://comicvine.gamespot.com/publication-enterprises/4010-53/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-55/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-07-21 00:22:47","deck":"Golden Age Canadian publisher, Double A stood for Anglo-American Publishing.","description":"

    known for their reworking of Fawcett's material, Anglo-American was a Canadian publisher active during World War II .

    ","id":55,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3188998-01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3188998-01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3188998-01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3188998-01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3188998-01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3188998-01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3188998-01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3188998-01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3188998-01.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Double A Comics","site_detail_url":"https://comicvine.gamespot.com/double-a-comics/4010-55/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-57/","date_added":"2008-06-06 11:08:00","date_last_updated":"2019-06-02 12:38:30","deck":null,"description":"

    The Gilberton Publisher was founded in 1942, after the parent company Elliot Publishing Company in 1941 by Albert Lewis Kanter in New York. It published comics based on older literary tales. It was sold to Frawley Corporation in 1967. Gilberto Publication went defunct in 1971.

    ","id":57,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1683591-900747_pictureparade_1_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1683591-900747_pictureparade_1_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1683591-900747_pictureparade_1_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1683591-900747_pictureparade_1_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1683591-900747_pictureparade_1_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1683591-900747_pictureparade_1_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1683591-900747_pictureparade_1_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1683591-900747_pictureparade_1_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1683591-900747_pictureparade_1_super.jpg","image_tags":"All Images"},"location_address":null,"location_city":"New York City","location_state":"New York","name":"Gilberton Publications","site_detail_url":"https://comicvine.gamespot.com/gilberton-publications/4010-57/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-68/","date_added":"2008-06-06 11:08:00","date_last_updated":"2021-12-15 15:41:23","deck":null,"description":null,"id":68,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8290222-whitman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8290222-whitman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8290222-whitman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8290222-whitman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8290222-whitman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8290222-whitman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8290222-whitman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8290222-whitman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8290222-whitman.jpg","image_tags":"All Images,Publishers"},"location_address":null,"location_city":null,"location_state":null,"name":"Whitman","site_detail_url":"https://comicvine.gamespot.com/whitman/4010-68/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-72/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":72,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Kk","site_detail_url":"https://comicvine.gamespot.com/kk/4010-72/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-75/","date_added":"2008-06-06 11:08:00","date_last_updated":"2015-03-31 07:42:22","deck":"Atlas Comics is a comic book publisher that would later evolve into Marvel. It was created by Martin Goodman and founded in the 1950's.","description":"

    Background

    The Atlas comic company began in the 1950's after it changed it's name from Timely Comics to Atlas. Martin Goodman, the creator of Timely Comics, used Atlas as the name of his comic books during the 1950's. It was located in the Empire State Building. While Timely Comics focused more on superheroes and funny cartoon comics, Atlas often published a bit more darker subjects such as horror, crime, and thriller comics. Famous Marvel titles such as Journey Into Mystery, Strange Tales and Menace all started in the Atlas era. Some of these series can be directly traced to comics being published today. However, due to parent outcry because of the violence in these and other horror comics, Martin Goodman had to change their policy and turned most horror comics into more kid-friendly monster comics before finally changing the name of his company once again. This time he changed the name to Marvel -- a name that would last.

    ","id":75,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/638644-atlas_marvel.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/638644-atlas_marvel.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/638644-atlas_marvel.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/638644-atlas_marvel.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/638644-atlas_marvel.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/638644-atlas_marvel.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/638644-atlas_marvel.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/638644-atlas_marvel.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/638644-atlas_marvel.jpeg","image_tags":"All Images,Atlas,Publishers"},"location_address":null,"location_city":null,"location_state":null,"name":"Atlas","site_detail_url":"https://comicvine.gamespot.com/atlas/4010-75/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-81/","date_added":"2008-06-06 11:08:00","date_last_updated":"2011-02-10 22:01:38","deck":null,"description":"

    Four Star Publications was an imprint of Ajax/Farrel.

    ","id":81,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1388126-four_star.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1388126-four_star.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1388126-four_star.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1388126-four_star.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1388126-four_star.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1388126-four_star.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1388126-four_star.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1388126-four_star.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1388126-four_star.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Four Star Publications","site_detail_url":"https://comicvine.gamespot.com/four-star-publications/4010-81/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-02-27 09:16:09","deck":null,"description":"

    Some of the stable of characters that were originally published by Magazine Enterprises were

    Black Phantom

    Calico Kid

    Cave Girl

    Durango Kid (Western movie character)

    El Lobo

    Flor

    Ghost Rider (Magazine Enterprises version)

    Grey Comet

    Harpy (Magazine Enterprises)

    Iron Mask (Magazine Enterprises version)

    Jet Black, Space Ace

    Jet Powers

    Johnny Devildog

    Lady Devildog

    Lady Doom

    Lemanade Kid

    Major Inapak, the Space Ace

    Pha (Magazine Enterprises, Dynamite)

    Presto Kid

    The Red Fox

    Red Mask (Magazine Enterprises version)

    Starr Flagg, the Undercover Girl

    Straight Arrow

    Strong Man (Magazine Enterprises version)

    The Avenger (Magazine Enterprises version)

    The Corsair

    The Masquerader

    Thun'da

    White Indian

    Many of the characters have seperate pages while others do not.

    ","id":84,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3181315-magazine%20enterprises%20logo.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3181315-magazine%20enterprises%20logo.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3181315-magazine%20enterprises%20logo.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3181315-magazine%20enterprises%20logo.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3181315-magazine%20enterprises%20logo.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3181315-magazine%20enterprises%20logo.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3181315-magazine%20enterprises%20logo.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3181315-magazine%20enterprises%20logo.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3181315-magazine%20enterprises%20logo.png","image_tags":"All Images"},"location_address":null,"location_city":"New York ","location_state":"New York ","name":"Magazine Enterprises","site_detail_url":"https://comicvine.gamespot.com/magazine-enterprises/4010-84/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-86/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-01-01 12:50:08","deck":null,"description":"

    The character from Spark publications have been revived by Dynamite Entertainment under their Project Superpowers title but without the permission of the Crossen Estate. Moonstone is publishing new Green Lama tales with the Crossen Estate license.

    Some of the stable of characters were:

    Air Rover

    Atoman (created by Jerry Robinson)

    Atomaster

    Golden Lad (Spark, Dynamite)

    Golden Girl (Spark, Dynamite)

    Kid Wizards

    Marga the Magnificent

    Marvin the Great

    Shaman and The Flame

    Green Lama (Prize, Spark, Dell, Moonstone, Dynamite)

    Swift Arrow (Spark, Ajax-Farrell)

    Many of these characters have separate pages and some do not

    ","id":86,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1641002-1474319_01_cover_atoman_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1641002-1474319_01_cover_atoman_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1641002-1474319_01_cover_atoman_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1641002-1474319_01_cover_atoman_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1641002-1474319_01_cover_atoman_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1641002-1474319_01_cover_atoman_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1641002-1474319_01_cover_atoman_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1641002-1474319_01_cover_atoman_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1641002-1474319_01_cover_atoman_super.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Spark Publications","site_detail_url":"https://comicvine.gamespot.com/spark-publications/4010-86/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-87/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":87,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Spotlight Publishers","site_detail_url":"https://comicvine.gamespot.com/spotlight-publishers/4010-87/"},{"aliases":"EC Comics\r\nEntertaining Comics","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-89/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-12-21 12:46:37","deck":"Entertaining Comics, more commonly known as EC Comics, was an American publisher of comic books specializing in horror fiction, crime fiction, satire, military fiction and science fiction from the 1940s through the mid-1950s, most notably the Tales from the Crypt series, until censorship pressures prompted it to concentrate on the seminal humor magazine Mad, which became a major popular culture institution. The publishing company was privately owned by Maxwell Gaines and later, during its period of notoriet","description":"

    History

    The firm, first known as Educational Comics, was founded by Max Gaines, former editor of the comic-book company All-American Publications. When that company merged with DC Comics in 1944, Gaines retained rights to the comic book, Picture Stories from the Bible, and began his new company with a dubious plan to market comics about science, history and the Bible to schools and churches. A decade earlier, Max Gaines had been one of the pioneers of the comic book form, with Eastern Color Printing's proto-comic book Funnies on Parade, and with Dell Publishing's Famous Funnies: A Carnival of Comics considered by many historians to be the first true American comic book.

    When Max Gaines died in 1947 in a boating accident, his son William inherited the comics company. After four years (1942-46) in the Army Air Corps, Gaines had returned home to finish school at New York University, planning to work as a chemistry teacher. He never taught but instead took over the family business. In 1949 and 1950, Will Gaines began to introduce series focusing on horror, suspense, science fiction, military fiction and crime fiction. His editors, Al Feldstein and Harvey Kurtzman, gave assignments to such prominent and highly accomplished freelance artists as Johnny Craig, Reed Crandall, Jack Davis, Will Elder, George Evans, Frank Frazetta, Graham Ingels, Jack Kamen, Bernard Kriegstein, Joe Orlando, John Severin, Al Williamson, Basil Wolverton, and Wally Wood. Kurtzman and Feldstein themselves also drew stories, which generally were written by them and Craig, with assistance from Gaines. Other writers including Carl Wessler, Jack Oleck and Otto Binder were later brought on board.

    EC had success with its fresh approach and pioneered in forming relationships with its readers through its letters to the editor and its fan organization, the National EC Fan-Addict Club. While the stories were sensational, the art was highly regarded.

    EC Comics promoted its stable of illustrators, allowing each to sign his art and encouraging them to develop idiosyncratic styles; the company additionally published one-page biographies of them in the comic books. This was in contrast to the industry's common practice, in which credits were often missing, although some artists at other companies, such as the Jack Kirby- Joe Simon team, Jack Cole and Bob Kane had been prominently promoted elsewhere at the time.

    EC published distinct lines of titles under its Entertaining Comics umbrella. Most notorious were its horror books, Tales from the Crypt, The Vault of Horror and The Haunt of Fear.

    These titles reveled in a gruesome joie de vivre, with grimly ironic fates meted out to many of the stories' protagonists. The company's war comics Frontline Combat and Two-Fisted Tales often featured weary-eyed, unheroic stories out of step with the jingoistic times. Shock SuspenStories tackled weighty issues such as racism, sex, drug use and the American way of life. EC always claimed to be \"proudest of our science fiction titles\", with Weird Science and Weird Fantasy publishing stories unlike the space opera found in such titles as Fiction House's Planet Comics. Crime SuspenStories had many parallels with film noir. As noted by Max Allan Collins in his story annotations for Russ Cochran's 1983 hardcover reprint of Crime SuspenStories, Johnny Craig had developed a \"film noir-ish bag of effects\" in his visuals, while characters and themes found in the crime stories often showed the strong influence of writers associated with film noir, notably James M. Cain.

    Superior illustrations of stories with surprise endings became EC's trademark. Gaines would generally stay up late and read large amounts of material while seeking \"springboards\" for story concepts. The next day he would present each premise until Feldstein found one that he thought he could develop into a story. At EC's peak, Feldstein edited seven titles while Kurtzman handled three. Artists were assigned stories specific to their styles. Davis and Ingels often drew gruesome, supernatural-themed stories, while Kamen and Evans did tamer material.

    With hundreds of stories written, common themes became apparent. Some of EC's more well-known themes include:

    • An ordinary situation given an ironic and gruesome twist, often as poetic justice for a character's crimes. In \"Collection Completed\" a man takes up taxidermy in order to annoy his wife. When he kills and stuffs her beloved cat, the wife snaps and kills him, stuffing and mounting his body. In \"Revulsion\", a spaceship pilot is bothered by insects due to a past experience when he found one in his food. At the conclusion of the story, a giant alien insect screams in horror at finding the dead pilot in his salad. Dissection, the broiling of lobsters, Mexican jumping beans, fur coats and fishing are just a small sample of the kind of situations and objects used in this fashion.
    • The \"Grim Fairy Tale\", featuring gruesome interpretations of such fairy tales as \"Hansel and Gretel\", \"Sleeping Beauty\" and \"Little Red Riding Hood\".
    • Siamese twins were a popular theme, primarily in EC's three horror comics. No less than nine siamese twin stories appeared in EC's horror and crime comics from 1950-1954. In an interview Feldstein speculated that he and Gaines wrote so many siamese twin stories because of the interdependence they had on each other, as if they were siamese twins themselves.
    • Adaptations of Ray Bradbury science-fiction stories, which appeared in two dozen EC comics starting in 1952. It began inauspiciously, with an incident in which Feldstein and Gaines plagiarized two of Bradbury's stories and combined them into a single tale. Learning of the story, Bradbury sent a note praising them, while remarking that he had \"inadvertently\" not yet received his payment for their use. EC sent a check and negotiated a productive series of Bradbury adaptations.
    • Stories with a political message, which became common in EC's science fiction and suspense comics. Among the many topics were lynching, anti-Semitism and police corruption.

    The three horror titles featured stories introduced by a trio of horror hosts. The Crypt Keeper introduced Tales from the Crypt, the Vault Keeper welcomed readers to The Vault of Horror and the Old Witch cackled over The Haunt of Fear. Besides gleefully recounting the unpleasant details of the stories, the characters squabbled with one another, unleashed an arsenal of puns and even insulted and taunted the readers: \"Greetings, boils and ghouls...\" This irreverent mockery of the audience also became the trademark attitude of Mad, and such glib give-and-take was later mimicked by many, including Stan Lee at Marvel Comics.

    EC's most lasting legacy came with Mad, which started as a side project for Kurtzman before buoying the company's fortunes and becoming one of the country's most notable and enduring humor publications. When satire became an industry rage in 1954 and other publishers created imitations of Mad, EC introduced a sister title, Panic, edited by Al Feldstein and using the regular Mad artists, plus Joe Orlando.

    Beginning in the late 1940s, the comic book industry became the target of mounting public criticism for the content of comic books and their potentially harmful effects on children. The problem came to a head in 1948 with the publication by Dr. Fredric Wertham of two articles: \"Horror in the Nursery\" (in Collier's) and \"The Psychopathology of Comic Books\" (in the American Journal of Psychotherapy). As a result, an industry trade group, the Association of Comics Magazine Publishers, was formed in 1948, but proved ineffective. EC left the association in 1950 after Gaines had an argument with its executive director, Henry Schultz. By 1954 only three comic publishers were still members, and Schultz admitted that the ACMP seals placed on comics were meaningless.

    In 1954, the publication of Wertham's Seduction of the Innocent and a highly publicized Congressional hearing on juvenile delinquency cast comic books in an especially poor light. At the same time, a federal investigation led to a shakeup in the distribution companies that delivered comic books and pulp magazines across America. Sales plummeted, and several companies went out of business.

    Gaines called a meeting of his fellow publishers and suggested that the comic book industry gather to fight outside censorship and help repair the industry's damaged reputation. They formed the Comics Magazine Association of America and its Comics Code Authority. The CCA code expanded on the ACMP's restrictions. Unlike its predecessor, the CCA code was rigorously enforced, with all comics requiring code approval prior to their publication. This not being what Gaines intended, he refused to join the association. Among the Code's new rules were that no comic book title could use the words \"horror\" or \"terror\" or \"weird\" on its cover. When distributors refused to handle many of his comics, Gaines ended publication of his three horror and the two SuspenStory titles on September 14, 1954. EC shifted its focus to a line of more realistic comic book titles, including M.D. and Psychoanalysis (known as the New Direction line). It also renamed its remaining science-fiction comic. Since the initial issues did not carry the Comics Code seal, the wholesalers refused to carry them. After consulting with his staff, Gaines reluctantly started submitting his comics to the Comics Code; all the New Direction titles carried the seal starting with the second issue. This attempted revamp failed commercially and after the fifth issues, all the New Direction titles were canceled.

    Gaines waged a number of battles with the Comics Code Authority in an attempt to keep his magazines free from censorship. In one particular example noted by comics historian Digby Diehl, Gaines threatened Judge Charles Murphy, the Comics Code Administrator, with a lawsuit when Murphy ordered EC to alter the science-fiction story \"Judgment Day.\" The story depicted a human astronaut visiting a planet inhabited by robots as a representative of the Galactic Republic. He finds the robots divided into functionally identical orange and blue races, one of which has fewer rights and privileges than the other. The astronaut decides that due to the robots' bigotry, the Galactic Republic should not admit the planet. In the final panel, he removes his helmet, revealing himself to be a black man. Murphy demanded, without any authority in the Code, that the black astronaut had to be removed. As Diehl recounted in Tales from the Crypt: The Official Archives:

    \"This really made 'em go bananas in the Code czar's office. 'Judge Murphy was off his nut. He was really out to get us', recalls [EC editor] Feldstein. 'I went in there with this story and Murphy says, \"It can't be a Black man\". But ... but that's the whole point of the story!' Feldstein sputtered. When Murphy continued to insist that the Black man had to go, Feldstein put it on the line. 'Listen', he told Murphy, 'you've been riding us and making it impossible to put out anything at all because you guys just want us out of business'. [Feldstein] reported the results of his audience with the czar to Gaines, who was furious [and] immediately picked up the phone and called Murphy. 'This is ridiculous!' he bellowed. 'I'm going to call a press conference on this. You have no grounds, no basis, to do this. I'll sue you'. Murphy made what he surely thought was a gracious concession. 'All right. Just take off the beads of sweat'. At that, Gaines and Feldstein both went ballistic. 'Fuck you!' they shouted into the telephone in unison. Murphy hung up on them, but the story ran in its original form. \"

    Feldstein, interviewed for the book Tales of Terror: The EC Companion, reiterated his recollection of Murphy making the racist request:

    \"So he said it can't be a Black [person]. So I said, 'For God's sakes, Judge Murphy, that's the whole point of the Goddamn story!' So he said, 'No, it can't be a Black'. Bill [Gaines] just called him up [later] and raised the roof, and finally they said, 'Well, you gotta take the perspiration off'. I had the stars glistening in the perspiration on his Black skin. Bill said, 'Fuck you', and he hung up.\"

    Although the story would eventually be printed uncensored in Incredible Science Fiction #33, it was the last comic book ever published by EC. Gaines switched his focus to EC's Picto-Fiction titles, a line of typeset black-and-white magazines with heavily illustrated stories. Fiction was formatted to alternate illustrations with blocks of typeset text, and some of the contents were rewrites of stories previously published in EC's comic books. This experimental line lost money from the start and only lasted two issues per title. When EC's national distributor went bankrupt, Gaines dropped all of his titles except Mad.

    The Vault of Horror, Tales from the Crypt, and The Haunt of Fear

    The Vault of Horror, Tales from the Crypt, and The Haunt of Fear are three bi-monthly horror comic anthology series published by EC Comics in the early 1950s. The Vault of Horror hit newsstands with its April/May 1950 issue and ceased publication with its December/January 1955 issue, producing a total of twenty-nine issues. The title was popular, but, in the late 1940s and early 1950s, comic books came under attack from moralizing parents, clergymen, schoolteachers, and others who believed the books contributed to illiteracy and juvenile delinquency. In April and June 1954, highly publicized Congressional subcommittee hearings on the effects of comic books upon children left the comics industry shaken. With the imposition of the highly restrictive Comics Code Authority, EC Comics publisher William Maxwell Gaines canceled The Vault of Horror and its two companion titles in September 1954. All three titles have been reprinted at various times since their demise and have been adapted for television and film.

    Horror comics emerged as a distinct comic book genre after World War II when young adult males lost interest in caped crimebusters, and returning GIs wanted titillating sex and violence in their reading. One-shot Eerie Comics (1947) is generally considered the first true horror comic with its cover depicting a dagger-wielding, red eyed ghoul threatening a rope-bound, scantily clad, voluptuous young woman beneath a full moon. In 1948, Adventures Into the Unknown became the first regularly published horror title, enjoying a nearly two decade life-span.

    In 1950, publisher William Gaines and his editor Al Feldstein discovered they shared similar tastes in horror and began experimenting with such stories in EC's crime comic War Against Crime and its companion title, Crime Patrol. With issue #12 of War Against Crime, the title was changed permanently to The Vault of Horror. The Vault Keeper became the title's sardonic host and commentator, occasionally sharing duties with The Old Witch and The Crypt Keeper. Due to an attempt to save money on second-class postage permits, the numbering, however, did not change with the title — the first issue of The Vault of Horror was #12.

    Like its horror companion titles, Tales From the Crypt and The Haunt of Fear, The Vault of Horror had its own distinctive qualities and atmosphere — in this case, created by its main artist, Johnny Craig. Craig illustrated all the covers for the entire run and was responsible for the lead story of all but issues #13 and #33. He also wrote all his own stories (save two) in Vault, something rarely done at EC, and became editor with issue #35 (February, 1954). Gaines and Feldstein wrote almost every other story until late 1953/early 1954 when outside writers Carl Wessler and Jack Oleck were brought in. Other contributing artists to The Vault of Horror were Feldstein, George Evans, Jack Kamen, Wally Wood, Graham Ingels, Harvey Kurtzman, Jack Davis, Sid Check, Al Williamson, Joe Orlando, Reed Crandall, Bernard Krigstein, Harry Harrison and Howard Larsen.

    With The Crypt Keeper and The Old Witch, The Vault-Keeper was one of the hosts for EC's horror comics (known as the GhouLunatics), He served as narrator, and added a lighter touch to the often gruesome stories by using a number of puns. In addition to appearances in his own book, he also had a guest story in each issue of Tales From the Crypt and The Haunt of Fear. Although The Vault-Keeper was originally designed by Al Feldstein, Johnny Craig is the artist most associated with the character, having drawn all his lead stories in the Vault of Horror with the exception of two. Craig would also draw The Vault-Keeper in his guest appearances in the other comics, although another artist frequently drew the rest of the story. For the final four issues of The Vault of Horror, The Vault-Keeper was joined by Drusilla, hostess of the book. The Vault-Keeper appeared in animated form on Tales from the Cryptkeeper and was voiced by Dan Hennessey.

    In 1954, Gaines and Feldstein intended to add a fourth book to their horror publications by reactivating an earlier title, The Crypt of Terror. They were stopped dead in their tracks, however. Horror and other violent comics had come under scrutiny by moralizing parents, schoolteachers, clergymen, psychologists, and others who viewed the material as dangerous to the well-being of children and a significant contributor to the juvenile delinquency crisis in America (although the formulaic nature of the books usually resulted in truly immoral characters receiving a well-deserved, if gruesome, comeupance.) Matters came to a head in April and June 1954 with a highly publicized Senate Subcommittee on Juvenile Delinquency. Hearings targeted violent comic books — which fared poorly in the proceedings. While the committee stopped short of blaming the comics industry for juvenile deliquency, they did suggest it tone down the product. Publishers were left reeling.

    The industry deftly avoided outside censorship by creating the self-regulatory Comics Magazine Association of America (CMAA) and a Comics Code Authority (CCA) that placed severe restrictions on violent comic book genres. Publishers were forbidden from using the words \"terror\" and \"horror\" in titles, for example, and forbidden from depicting zombies, werewolves, and other gruesome characters and outrè horror fiction trappings. Gaines was fed up; he believed his titles were being specifically targeted and realized they were doomed to future failure. He threw in the towel, canceling The Vault of Horror and its companion titles in September 1954. The last issue of Vault was its twenty-ninth, (#40, December/January 1955). Since an issue of The Crypt of Terror had already been produced, it was published as the final issue of Tales from the Crypt, February/March, 1955.

    ","id":89,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2977915-0511122314224.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2977915-0511122314224.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2977915-0511122314224.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2977915-0511122314224.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2977915-0511122314224.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2977915-0511122314224.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2977915-0511122314224.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2977915-0511122314224.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2977915-0511122314224.jpg","image_tags":"All Images"},"location_address":"225 Lafayette Street","location_city":"New York City","location_state":"New York","name":"EC","site_detail_url":"https://comicvine.gamespot.com/ec/4010-89/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-91/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":91,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Newsbook Publishing","site_detail_url":"https://comicvine.gamespot.com/newsbook-publishing/4010-91/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-92/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":92,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Gem Publications","site_detail_url":"https://comicvine.gamespot.com/gem-publications/4010-92/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-100/","date_added":"2008-06-06 11:08:00","date_last_updated":"2020-08-07 12:44:54","deck":"Italian leading comic publisher, founded in 1940 by comics author Gian Luigi Bonelli.","description":"
    \"Bonelli
    Bonelli Universe in 2014

    Gian Luigi Bonelli called the company Edizioni Audace after buying it from publisher Lotario Vecchi. Edizioni Audace published famous characters such as Tex.

    In the 60's, with Gian Luigi's son Sergio Bonelli, the company changed its name in Edizioni Araldo, then Cepim, Daim Press, and Altamira, until the current name.

    ","id":100,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11121/111219335/4641352-logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11121/111219335/4641352-logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11121/111219335/4641352-logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11121/111219335/4641352-logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11121/111219335/4641352-logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11121/111219335/4641352-logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11121/111219335/4641352-logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11121/111219335/4641352-logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11121/111219335/4641352-logo.png","image_tags":"All Images,Sergio Bonelli Editore"},"location_address":"Via Buonarroti 38","location_city":"Milano","location_state":null,"name":"Sergio Bonelli Editore","site_detail_url":"https://comicvine.gamespot.com/sergio-bonelli-editore/4010-100/"},{"aliases":"Archie MLJ","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-101/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-03-22 04:08:49","deck":"Archie Comics are the publishers of the Riverdale Gang's adventures as well as Sonic.","description":null,"id":101,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11141/111417740/8418061-archie-comics-vector-logo-small.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11141/111417740/8418061-archie-comics-vector-logo-small.png","image_tags":"All Images"},"location_address":"325 Fayette Ave.","location_city":"Mamaroneck","location_state":"New York","name":"Archie Comics","site_detail_url":"https://comicvine.gamespot.com/archie-comics/4010-101/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-111/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":111,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Capitol Stories","site_detail_url":"https://comicvine.gamespot.com/capitol-stories/4010-111/"},{"aliases":"ACG","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-113/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-06-18 03:39:35","deck":"American Comics Group (ACG) The little company that almost could","description":"

    American Comics Group (ACG) was a small publisher during the Golden and Silver Age of comic books that existed from 1943 to 1967 publishing mainly low key \"horror\" and also ran superheros.

    ","id":113,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/23749/518243-untitled.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/23749/518243-untitled.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/23749/518243-untitled.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/23749/518243-untitled.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/23749/518243-untitled.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/23749/518243-untitled.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/23749/518243-untitled.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/23749/518243-untitled.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/23749/518243-untitled.jpg","image_tags":"All Images"},"location_address":"45 West 45th Street","location_city":"New York","location_state":"New York","name":"American Comics Group","site_detail_url":"https://comicvine.gamespot.com/american-comics-group/4010-113/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-117/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-08-12 00:14:43","deck":null,"description":"

    Rising from the ashes of Novelty Press in 1949, Star published crime, horror, romance, and funny animals comics featuring talent such as Wally Wood, Frank Frazetta, and Joe Kubert.

    Targeted in Fredric Wertham's book, Seduction of the Innocent, due to the graphic nature of it's horror comics, Star closed it's doors in 1954.

    ","id":117,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3234876-pix_star_002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3234876-pix_star_002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3234876-pix_star_002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3234876-pix_star_002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3234876-pix_star_002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3234876-pix_star_002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3234876-pix_star_002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3234876-pix_star_002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3234876-pix_star_002.jpg","image_tags":"All Images"},"location_address":"545 Fifth Avenue","location_city":"New York","location_state":"New York","name":"Star Publications","site_detail_url":"https://comicvine.gamespot.com/star-publications/4010-117/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-120/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-01-09 08:13:32","deck":"Italian publisher, created in 1907 by Arnoldo Mondadori.","description":null,"id":120,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/956311-p_4_3_mondadori_list_paragraph_paragrafo_0_photo_paragraph.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Arnoldo Mondadori Editore","site_detail_url":"https://comicvine.gamespot.com/arnoldo-mondadori-editore/4010-120/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-121/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-07-18 00:33:11","deck":null,"description":"Avon Books was founded in 1941 by the American News Corporation (ANC) to create a rival to Pocket Books. They hired brother and sister Joseph Myers and Edna Myers Williams to establish the company. ANC bought out J.S. Ogilvie Publications, a pulp magazine publisher partly owned by both the Myers, and renamed it \"Avon Publications\". They also got into comic books. \"The early Avons were somewhat similar in appearance to the existing paperbacks of Pocket Books, resulting in an immediate and largely ineffective lawsuit by that company. Despite this superficial similarity, though, from early on Myers differentiated Avon by placing an emphasis on popular appeal rather than loftier concepts of literary merit.\"] The first 40 titles were not numbered. First editions of the first dozen or so have front and rear endpapers with an illustration of a globe. The emphasis on \"popular appeal\" led Avon to publish ghost stories, sexually-suggestive love stories, fantasy novels and science fiction in its early years, which were far removed in audience appeal from the somewhat more literary Pocket competition.

    As well as normal-sized paperbacks, Avon published digest-format paperbacks (the size and shape of the present-day Ellery Queen's Mystery Magazine) in series. These included Murder Mystery Monthly, Modern Short Story Monthly and Avon Fantasy Readers. Many authors highly prized by present-day collectors were published in these editions, including A. Merritt, James M. Cain, H. P. Lovecraft, Raymond Chandler and Robert E. Howard.

    In 1953, Avon Books sold books in the price range of 25¢ to 50¢ (for the Avon \"G\" series, the \"G\" standing for \"Giant\") and were selling more than 20 million copies a year. Their books were characterized by Time Magazine as \"westerns, whodunits and the kind of boy-meets-girl story that can be illustrated by a ripe cheesecake jacket.\" At around this time, Avon also began to publish under other imprints, including Eton (1951-1953), Novel Library, Broadway and Diversey. Avon's 35-cent \"T\" series, introduced in 1953, also had strong mass-market appeal and contains many outstanding examples of the then-popular juvenile delinquent story. The T series also contained many movie tie-in editions and the stand-bys of mysteries and science fiction.

    Avon was bought by the Hearst Corporation in 1959. In 1999, the News Corporation bought out Hearst's book division, and merged Avon with HarperCollins.","id":121,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3181403-718447-avon_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3181403-718447-avon_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3181403-718447-avon_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3181403-718447-avon_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3181403-718447-avon_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3181403-718447-avon_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3181403-718447-avon_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3181403-718447-avon_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3181403-718447-avon_logo.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Avon","site_detail_url":"https://comicvine.gamespot.com/avon/4010-121/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-122/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":122,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Cross Publications","site_detail_url":"https://comicvine.gamespot.com/cross-publications/4010-122/"},{"aliases":"Toby Press","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-123/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-08-17 09:49:17","deck":null,"description":"

    A small outfit in business from 1949 until 1955. Published some original titles like Billy the Kid, The Purple Claw, and Super Brat. Also published some newspaper comics reprints like Barney Google and Lil Abner. The latter is not surprising, since Toby's owner, Elliot Caplin, was Al Capp's brother and creator in his own right of comic strips The Heart of Juliet Jones and Big Ben Bolt.

    Malibu Comics published The Purple Claw as a member of The Protectors. This group was mainly Nedor characters. The Purple Claw has not been published since.

    The original characters

    Black Knight (Toby version)

    Buck Rogers (Toby Press, Eastern Color, Dell, Gold Key, Marvel, DC, Dynamite)

    Captain Comet (Toby) debuted 2 years after DC's Captain Comet

    Flash Gordon (Toby, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)

    Purple Claw (Toby, Malibu)

    ","id":123,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8622435-tobypress.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8622435-tobypress.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8622435-tobypress.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8622435-tobypress.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8622435-tobypress.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8622435-tobypress.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8622435-tobypress.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8622435-tobypress.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8622435-tobypress.png","image_tags":"All Images,Publishers"},"location_address":"17 East 45th Street","location_city":"New York","location_state":"New York","name":"Toby","site_detail_url":"https://comicvine.gamespot.com/toby/4010-123/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-125/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-07-17 09:51:22","deck":"Charlton Comics entered the comic-book business as a way to keep busy the expensive presses they used to publish magazines. As one may imagine, this meant they weren't too critical of the quality of their output. Charlton owned several characters that were later acquired by DC Comics after the company folded.","description":"

    Publishing History

    Charlton Comics was founded in 1946 and went out of business in 1985. The company published comic books in a wide range of genres, reflecting whatever were the variety of popular trends at a given time, much the same way Timely/Atlas did. Charlton published War Comics, Horror Comics, Cartoon Comics, Teen comics, Humor Comics, Superhero Comics, Kung Fu Comics, Action Adventure Comics, Romantic Comics and Science Fiction Comics. The wider publishing company published song-lyric magazines (popular in the 1940's), puzzle magazines (of the type often found at supermarket check out lines), Digest-sized story magazines, and paperbacks under the imprints Monarch and Gold Star.

    Charlton began as a magazine printing concern, Charlton Publications, of which comic books were only one small facet. Begun in 1940 under founders John Santangelo, Sr. & Edward Levy, the company was originally called T.W.O. Charles Company, named for the two sons of the co-founders, both of whom were named Charles. The company renamed itself Charlton Publications in 1945. In its early years the company's lead editor was Al Fago, brother to Timely comics' lead funny animal artist, Vince Fago.

    \"No

    Charlton was a unique company in that unlike larger publishing concerns, Charlton's entire production process for its comic books (as well as its other published output) was entirely produced under its own auspices; every phase of production, from Editorial art creation to Printing to Distribution, came directly from the company's editorial headquarters/printing plant in Derby Connecticut. (in fact, that alone would make Charlton unique as a publisher. Photos exist of the offices of \"Charlton Publications\" which feature a massive building -- the printing plant--looking more like the factory it in fact was than a publishing concern)

    While in one way this unique organizational structure gave the company singular control of its product, it also meant that if the company didn't particularly care about the quality of its output, it had to answer to no one (except of course it readers. More on that in a moment). Since the comic-book line was essentially created as a way to keep the company's massive printing facility up and running overnights, (since shutting down the gigantic industrial printers for the night and then starting them up again in the morning would be prohibitively expensive) they were decidedly less critical about the quality exhibited in their comics. Charlton was notorious for the low quality control they exerted over the comics they produced--the quality of their comic-book paper was often a much cheaper grade than higher-end publishers, there was less oversight of the registration of printing plates, so no matter the quality of the artwork, patches of color often floated far and wide from the lines that were meant to border them, and of course because they paid so little, their artists were often less careful about the quality of their artwork or so overworked (adding page count as a way to fill up a decent paycheck) that their books' artwork suffered in comparison to other publishers--- as well as for the extremely low page rates they paid to their artists and writers. At the same time, the company often exerted less stringent editorial control over their comics, which could meant that their artists could exhibit a distinctively expressive personal style even at a time when \"house styles\" were dominant in the comics industry.

    The company's fortunes ebbed and grew across the decades, often dependent on how other larger comics concerns were doing. For example, as the comics boom ebbed after WWII, so did Charlton. As the boom in horror comics in the 50's grew the industry overall, so grew Charlton, if on a smaller scale. Its lead horror title, The Thing! featured seminal early work by the young Steve Ditko in what was at the time one of the most garish and violent horror comics of the era. Charlton's knack for imitation is most evident in the wake of the 1960's Marvel Age of Comics,\" when Ditko left Marvel and lent his talents to Charlton -- precisely BECAUSE of Charlton's lesser editorial control over his work-- and the quality of Charlton's product went up commensurately. The same minor revival happened in the mid-70's, with an influx of fresh new talent to the industry, who could find a welcome work opportunity (and that lower paycheck) at Charlton, always hungry for new talent to exploit. Soon-to-be-stellar artists like Dick Giordano, who later became editor-in-chief at the company before moving to fame and fortune (and a renowned collaborative partnership with Neal Adams) at DC, Jim Aparo, Frank McLaughlin and others in the 60's, and John Byrne, Joe Staton, Wayne Howard, and others in the 1970's got their starts at the Derby, CT based funnybook company.

    As editor, Giordano in the 1960's spearheaded the company's push into the Superhero genre (Giordano preferring to call them \"Action Heroes\") in the company's effort to follow the burgeoning trend in the market. They grew their line, and with the disaffected Ditko at the high end of their creative roster the company made their feeble push into market expansion. While fondly remembered by fans, it remained that the quality of Charlton's product really did pale in comparison to the larger concerns like Marvel & DC, and the sales numbers reflected the tastes of the buying public.

    \"Aw heck, sold out of Spider-Man?\" some gum-chewing moppet would cuss at the newsstand spinner rack, \"I'll have to settle for this lousy Blue Beetle...\"

    Notably, however, Charlton's loose editorial oversight permitted craftsmen like Ditko and his collaborator Joe Gill to give vent to some of the most extreme Ayn Randian libertarian politics ever exhibited in comics, in text heavy dialog balloons spouted by characters such as The Blue Beetle and especially The Question, a character created specifically to embody those political views, and a precursor to Ditko's own later character Mr. A. The Question spent most of his career as a backup feature to The Blue Beetle, but did warrant an over-long special issue devoted exclusively to the character, Mysterious Suspense #1, published in 1968 with a 25-page Question story made up of what appears to be shorter pieces intended for backups in the cancelled Blue Beetle title, collected into the longer story for this one-off issue.

    Critical appraisal of most of Charlton's output would rate most of what they produced poorly versus the larger competition, though some genres were superior to others. The superhero books were a pale comparison to the likes of Marvel & DC, but their feeble horror and ghost titles managed to be moody and often downright weirder than their competitors comic-code neutered products. Charlton was a large licensor of characters from other media -- cartoon characters from television and motion pictures, (even oddballs like Hong Kong Phooey) and comic strip characters such as The Phantom-- and those titles were often a steady stream of income for the company when their attempts at superheroes bombed after a few issues. Some in fandom actually rate Charlton's Romance comics -- a genre objectively at best a feeble, pallid imitation of real-life at best from almost any company except the likes of St. John in the 50's-- on a par with any of its competitors, even with its rotten printing, off-register colors and coarse, cheap paper.

    Romance comic books were one place where Charlton was able to exhibit some distinction, the comic-book slum of that genre which attracted primarily young female readers and which no boy would admit to reading (but given that the females were well-rendered, drawn primarily by men as unrealistically well-endowed, and often exhibited in passionate embrace with their paramours, almost all male readers did at one time or another, if only to later cast it off after getting the pages stuck together). Larger companies like Atlas and DC produced some distinctive and notable romance titles for some time in the 1950's, 60's and 70's. Some smaller companies like St. John produced romance books that were uniformly excellent (or at least of passable readability, given comics' inability to deal at the time with anything approaching an adult theme. St John at least tried) Charlton was in no place to compete on quality, given its low production values, so they competed by turning out a dizzying volume of romance titles from the late 50's through the early 80's. The company hit its peak from about 1958 to 1966, with just some titles during this period being: Brides in Love, Cowboy Love, First Kiss, I Love You, Intimate, Just Married, Love Diary, My Secret Life, Negro Romances, Pictorial Love Story, Romantic Secrets, Romantic Story, Secrets of Love & Marriage, Secrets of Young Brides, Sweethearts, Sweetheart Diary, Teen-Age Love, Teen Confessions, and Teen-Age Confidential Confessions. This incomplete list nevertheless is exemplary of a practice used on the company's entire line, and an approach to comic book making: most of these titles were purchased from bankrupt competitor companies, many rehashed the same stories again and again, and examples exist documenting Charlton's note-for-note plagiarizing stories and swiping poses for those stories form other companies. And while the comics code imposed a sterility on these comics that a superior producer like St. John did not have to deal with, these books' art almost makes up for the tired soap opera of the narratives.

    (This practice, of building a stable of titles by purchasing properties from other companies on the verge of insolvency, included characters such as The Blue Beetle, purchased from Fox Publications, and several horror & crime titles from defunct publishers such as Fox Comics, Canadian publisher Superior Comics, Mainline, the previously mentioned St. John and the comic-book division of Fawcett Publications when that company lost a prolonged legal battle with DC over the alleged copyright infringement of Fawcett's Captain Marvel upon DCs Superman.)

    While it is true that readers of romance comics claim that DC's art was superior to that of Charlton, such is a matter of personal opinion. The author of this paragraph and apparently an extreme fan of romance comic art in general is of the view that from the late 1950's to the mid 1960's, Charlton's romance titles were just as good as those from DC and probably a shade better. At the very least, the artwork, by the likes of Vince Colletta, Nicholas Alascia, Jon D'Agostino, Sal Trapani, Charles Nicholas and others, could stand against the rest of the romance books on the rack, even if Charlton's were more cheaply produced. Colletta in particular excelled at implying a subtle eroticism to his figurative posing in a manner that meant that Charlton could count on the appeal of some of these titles, as mentioned earlier, to easily excite adolescent boys as well as the books' intended audience of young girls (who were simultaneously being drilled on culturally acceptable gender roles at the same time).

    These sorts of business practices were at work at all comic book companies, or at least at the companies that weren't DC or Dell, and Charlton engaged in the same behaviors across all their titles across all genres to a certain extent, at least until the company hit a new stride in the mid 1970's. Nevertheless, for all the originality of a title like E-Man, there were still the same lame rehashes in the romance, ghost, and war titles right up until the company's demise.

    ----------------------------------------

    \"Top
    Top Charlton Heroes

    DC Comics bought the rights to several characters from Charlton Comics, and began exploiting them as their own. When writer Alan Moore proposed a limited series for DC to be entitled WATCHMEN, his original concept made use of these moribund Charlton characters. But because a comic book company will rarely kill a potentially moneymaking character property, DC management refused to permit the Charlton acquisitions to be used in Moore's magnum opus, so he adapted them. (e.g. Captain Atom became Dr. Manhattan, The Question became Rorschach, etc.) Several of the Charlton characters made significant appearances in DCs Crisis on Infinite Earths story arc, some might say to lesser dramatic effect. During the Crisis, DC editorially explained where the hell these superheroes had been for all of DCs history by saying that these heroes came from a reality known as Earth-4 and became merged with the New Earth after the Crisis and part of the eventual retcon of the DC Universe. The Charlton heroes from Earth-4 that appeared in the Crisis included Captain Atom, Blue Beetle, Nightshade, Peacemaker, JudoMaster, Thunderbolt and the Question. Not every hero was bought by DC Comics. One such minor hero was Mercury Man. He was a hero from a post apocalyptic planet Mercury. Another was E-Man, who had been decidedly more popular.

    In 1996 Roger Broughton, owner of Sword In Stone Productions, purchased the rights to the remaining Charlton Comics and characters (the Fightin’ 5, Gunmaster & Bullet Boy, and Atomic Rabbit, and after being bought from Fawcett, Don Winslow) that had not been bought by DC comics, who now own the rights to most of Charlton’s superheroes. Later he also bought the rights to the titles and characters of the old ACG comics group ( Magicman, John Force: Magic Agent, Nemesis, Herbie “the Fat FuryPopnecker, the Hooded Horseman, Cowboy Sahib, and Commander Battle and his Atomic Sub.)

    In 2002 he changed the name of his company to the \"Charlton Media Group\". Since then he has announced attempts to revive the various titles and characters that he owns, but so far nothing new has come of it other than a number of reprints of Charlton and ACG material in Europe, and the licensing of the rights to produce new Nemesis, Magicman and Herbie stories to Dark Horse as yet the other characters remain untouched. Thus far his attempts to make good on his questionable investment has been unsuccessful.

    Charlton's Greatest Heroes

    So many of Charlton's characters were bought by DC Comics that the Top Charlton Characters list to the left of the page is very inaccurate. Many of Charlton's more famous heroes are here on ComicVine attributed to DC and instead of being correctly attributed to Charlton. This leaves some of Charlton's greatest characters in the dark.

    Nevertheless, it remains true that some of Charlton's biggest successes themselves did not originate at the company. Blue Beetle, for example changed hands 3 times before being acquired by Charlton and being given a successful makeover. It should also be noted that because of Charlton's wide range of genres covered that they did not have an extensive pantheon of heroes, at least compared to companies like DC Comics and Marvel Comics. They did have several heroes however that made up a cool list. Many of these heroes went on to have a big legacy in the DC Universe. Below is an alphabetized list of Charlton's more famous Characters:

    Blue Beetles

    \"Ted
    Ted Kord - Blue Beetle

    There is probably no hero more loved in all of Charlton Comics than the Blue Beetle. Charlton bought the rights to the original Blue Beetle Dan Garret from Fox Comics. This eventually (in a way) kept him out of the Public Domain unlike his counterparts Samson and the Flame from the same publisher.

    Despite the popularity of the original Blue Beetle, Charlton completely rebooted the character. He had different powers, origin, occupation, secondary characters and even his last name had a different spelling with an extra t. Unfortunately for the character he was not as popular after the reboot as he was before so to solve the problem they decided to reboot the character again. This time Dan was killed off and Ted Kord became the next Blue Beetle. Ted Kord was created by Joe Gill and Steve Ditko.

    When DC bought the rights to the characters they bought both Dan Garrett (with two t's) and Ted Kord and continued on this the story instead of starting over with the original Dan Garret (with one t). This technically means that the Dan Garret (with one t) is suppose to be in public domain but it is difficult to clarify with name similarities and so not much has been done with it. Dynamite Entertainment revamp the character and called him Scarab. They also used his sidekick Sparky who is in Public Domain.

    Captain Atom

    \"Captain
    Captain Atom - Costumes

    Captain Atom was another creation for Charlton by Joe Gill and Steve Ditko. Originally the character's name was Allen Adam (or \"Captain Adam,\" in what passed for clever wordplay in Charlton books) when the property was bought out by DC comics his name was changed to Nathaniel Christopher Adam. His costume was also changed several times. There were two three main costumes however and one of them may have been a printing mistake.

    In the first issue Captain Atom has a blue costume on the inside of the book but a gold one on the cover. He did then wear the gold costumes for quite a while with small variations until he went to the blue and red costume with the silver arms. It wasn't until he went to DC that his costume changed to the mostly silver costume he wears today

    E-Man and Nova Kane

    E-Man was a character introduced during the company's last major revival in the mid 1970's, and proved that the firm could produce entertaining, engaging comics even at its typical bottom-of-the-barrel rates. The character, and his girlfriend, exotic dancer turned superheroine Nova Kane, were not purchased by DC but attempts have been made to revive the characters by companies like First Comics and Comico. The characters were created by Nicola Cuti and Joe Staton. E-Man was a being from outer space who existed as pure energy, and was discovered by Nova, an exotic dancer. E-Man modeled himself after the humans he saw and could blast energy, turn into pure energy and distort his form much as the classic character Plastic Man could. Cuti's well-executed scripts and Staton's strong, appealing art were decidedly more lighthearted than most superheroes of the time and that quality helped differentiate the book from others on the racks, and the book soon became the sales leader for the company (with the exception of its huge line of animated character licenses, which were being sold for very young children). It certainly helped to sell the book that Nova was designed as an attractive and well-proportioned redhead, and was often portrayed in various states of undress. Even so, the title has a cheery innocence about it that was never sullied by Nova's bustline or midriff on display. Cuti and Charlton eventually turned Nova into a superhero as well with the same powers as E-Man, which allowed Staton to draw her in a skimpy skintight one-piece costume. The title featured a variety of intriguing back-up features, several by Steve Ditko, including his decidedly oddball character Killjoy, and eventually settled on a backup featuring a charming robot called Rog-2000 which featured very appealing early professional work by a young John Byrne.

    Judo Master and Tiger

    \"Tiger
    Tiger and Judo Master

    Judo Master was created by Joe Gill and Frank McLaughlin. Judo master was a World War II vet that save a man's daughter while at was in the specific and is taught judo by the grateful father. Judo Master eventually gets a sidekick named Tiger. Judo Master was another of the characters bought by DC Comics and has subsequently gone through many changes. Lately the new Judo Master is a woman named Sonia Sato.

    Mr. Muscles

    Mr. Muscles was created by Jerry Siegel and was the star of a two issue self titles series. He may not have been one of the greatest Charlton characters but he did have a fortunate chance to have his own book even if it only lasted two issues. He only appeared in one issue after that.

    Nature Boy

    Nature Boy like Mr. Muscles was also created by Jerry Siegel. Actually Nature Boy shares a lot with Mr. Muscles. Not only do they share the same creator, they were both fortunate enough to have a very small run in their own self titled comic.

    Nightshade

    \"Charlton's
    Charlton's Nightshade

    Nightshade was only in a handful of Charlton Comics but she did have a powerful legacy in DC Comics. She was created by Joe Gill and Steve Ditko. In DC Comics Nightshade appeared in many issues of the Suicide Squad and Shadowpack. She has also gone through many evolutions that has made her a very popular hero.

    Peacemaker

    Peacemaker first appeared in Charlton Comics as part of a team known as the Fighting 5. He then had his own series that lasted five issues. Peacemaker was created by Joe Gill and Pat Boyette and was completely rebooted in the DC Universe.

    Phantom

    The Phantom is one of the oldest superheros ever and is considered to be the first by some. The Phantom first appeared two years before Superman, Batman and the Blue Beetle. Charlton picked up the hero and he was their longest running superhero series. He was created by Lee Falk.

    Question

    \"Question,
    Question, Phantom, Steel

    The Question first appeared in Blue Beetle #1 in June of 1967. Created by Steve Ditko, the character was intended to express the burgeoning philosophy of Objectivism which had grown fervently in Ditko's consciousness throughout his career at Marvel (and perhaps contributed to his decision to finally leave the company). The Question was quite distinctive and was considered one of Charlton's more successful heroes even though his own series was limited to backup features in other books and a single issue of his own (published under the title \"Mysterious Suspense Featuring The Return of The Question\" in 1968, a book made up of backup stories building a single story arc, collected from the backup stories intended for the cancelled Blue Beetle title). The same year Charlton released that book, Ditko distilled the Ayn Randian concepts in The Question even further into a character he called Mr. A which was introduced in the third issue of Wally Wood's independent underground magazine WITZEND.

    After being acquired by DC Comics in their purchase of a large number of Charlton characters, the Question, thoroughly rinsed of Ditko's often impenetrable philosophy, became quite popular in his own title self titled comic and the Question Quarterly. The Question became popular again in the Justice League Unlimited cartoons and the 52 series where he died of cancer and passed the torch on to Renee Montoya.

    Sarge Steel

    Sarge Steel was created by Pat Masulli and made his first appearance in Sarge Steel #1. Sarge Steel was not an a typical hero and was private eye and Viet Nam veteran. His name and power came from his hand that was formed in a fist.

    When Sarge Steel came to DC Comics his character became more entrenched as a government agent, an admittedly derivative variation designed to add depth to the character and provide better fodder for plotting stories. The character was frequently combined with with Project X and the Suicide Squad. This has put him in a situation of being pitted against and worked for the more costumed superheroes. It has not, however, put him in a situation of being more interesting as a character.

    Son of Vulcan

    Son of Vulcan was also created by Pat Musulli with the help of penciler Bill Fraccio. Son of Vulcan was really Johnny Mann who was several injured in war and cursed the gods who allowed him to end up this way. His prayer/plea does not go unanswered as Vulcan himself arrives and tells him his troubles or not of the gods by the failures of man. Not only that but Vulcan gives him the power to fight for justice.

    Thunderbolt

    \"Thunderbolt
    Thunderbolt & Yang

    Peter Cannon, Thunderbolt was created by Pete Morisi. Peter Cannon was an orphaned child who was raised by Tibetan monks. The monks were very grateful to Peter's parents

    Yang

    Yang was created by Joe Gill and Warren Sattler in the wake of the popularity of martial arts in American popular culture in the early 1970's. Marvel had sought to publish a comics version of the popular television show Kung Fu but were denied the rights so they created their own martial arts character in the same mold, Master of Kung Fu. As stated earlier, Charlton sought to follow the trends, and created Yang after seeing the success of the Marvel book. Yang was a Kung Fu fighter and sometimes didn't fit the superhero mold to some. Whatever fan disagreements there may be, he wore a costume and set out to fight crime, even wearing a costume that was the same issue to issue. The title Yang ran for 14 issues under Charlton's management. The Charlton title House of Yang, running only 6 issues, featured distinctive artwork by the sadly underutilized Sanho Kim in one of his too-rare appearances in American publications. Kim was one of the only artists working in America to make use of the Korean Manhwa style of comics.

    ","id":125,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18411/428470-CharltonBullseye_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18411/428470-CharltonBullseye_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18411/428470-CharltonBullseye_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18411/428470-CharltonBullseye_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18411/428470-CharltonBullseye_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18411/428470-CharltonBullseye_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18411/428470-CharltonBullseye_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18411/428470-CharltonBullseye_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18411/428470-CharltonBullseye_logo.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Charlton","site_detail_url":"https://comicvine.gamespot.com/charlton/4010-125/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-126/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-08-11 23:48:50","deck":"Small, eclectic, late-Golden Age publisher","description":"

    Youthful (which was also known as Youthful Magazines) operated during the late Golden Age (1949–1954). The company was reportedly owned by attorney Bill and Sophie Friedman. Other principals reportedly included Lew Stricof and S. Wind, George Ungar and Morton Myers. Harry Donenfeld (of DC publishing fame) was also reported to be financially involved in Youthful. There is speculation that some of the switches of titles between imprints as discussed below were due to disagreements between creditors.

    Youthful and its related imprints have been described as \"A circular group of owners hiding behind a lot of fake addresses. \" (See the history at http://dccomicsartists.com/dchistory/youthful-story.htm) At times, the imprints associated with the same titles and owners included

    • Story
    • Master
    • Premier
    • Western, and
    • Pix-Parade Comics

    Youthful et al eschewed superheros. Romance, Western, and horror were its generes. Notable volumes included Gunsmoke, Indian Fighter, and Redskin (later known as Famous Western Badmen); Captain Science (later Fantastic, Beware, and Chilling Tales), and Jackpot (humor).

    Gunsmoke was the publisher's first title, and debuted Apr./May 1949, running until 1952. Youthful began publishing Youthful Hearts in its own name in 1952 (previously published under the Pix-Parade imprint). In 1953 its numbering continued under the new title Daring Confessions. The Youthful titles Attack and Beware were re-branded Trojan in 1952, which continued their numbering. Youthful, in turn, renamed the titles Atomic Attack and Chilling Tales, respectively, also continuing the numbering.

    ","id":126,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3176936-637117-cap1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3176936-637117-cap1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3176936-637117-cap1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3176936-637117-cap1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3176936-637117-cap1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3176936-637117-cap1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3176936-637117-cap1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3176936-637117-cap1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3176936-637117-cap1.jpg","image_tags":"All Images"},"location_address":"21 West 26th Street","location_city":"New York","location_state":"New York","name":"Youthful","site_detail_url":"https://comicvine.gamespot.com/youthful/4010-126/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-127/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":127,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Famous Funnies","site_detail_url":"https://comicvine.gamespot.com/famous-funnies/4010-127/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-130/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-08-12 00:05:57","deck":null,"description":null,"id":130,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3234870-2915952-wc.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3234870-2915952-wc.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3234870-2915952-wc.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3234870-2915952-wc.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3234870-2915952-wc.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3234870-2915952-wc.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3234870-2915952-wc.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3234870-2915952-wc.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3234870-2915952-wc.jpg","image_tags":"All Images"},"location_address":"125 East 46th Street","location_city":"New York","location_state":"New York","name":"Trojan","site_detail_url":"https://comicvine.gamespot.com/trojan/4010-130/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-131/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-08-11 23:37:41","deck":"Ziff - Davis","description":"

    Ziff-Davis is a publishing firm that has been around since the 1920’s and is in fact still around to day publishing mainly computer and technology magazines and which is one of the biggest producers of on-line magazines.

    They have had a diverse range of publications over the years, from Popular Electronics, to for a while, Amazing Stories the first science fiction pulp.

    They however came late into publishing comic books, and did not stay long when they did. Starting in 1950 they produced dozens of titles, almost none of which lasted longer than half a dozen issues, they ended their try at comic books late in 1953. 

    Their two most successful comics were G. I. Joe, which lasted 46 issues, and Kid Cowboy which lasted 10 issues.

    The things that most distinguish a Z-D comic are their striking painted covers that more resemble the pulp magazines of an earlier era, the extensive use of violent and sexually suggestive covers on many of their comics, and the odd fact that they almost always start their books with issue # 10, but if it is able to last more than a half dozen issues switching to the number that it would have been at if they had started it at # 1, so that several of their comics have two # 10’s - 14 and no # 1 - 5.

    This to say the least caused some consternation to collectors when the hobby became popular after Z-D left the comics business, which they did with the coming of the Comics Code Authority, which would never have approved of some of their covers.

    ","id":131,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3190759-0bbbbbbbbbbbbbbbbbbbbbbbb.jpg","image_tags":"All Images"},"location_address":"366 Madison Ave.","location_city":"New York","location_state":"New York","name":"Ziff-Davis","site_detail_url":"https://comicvine.gamespot.com/ziff-davis/4010-131/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-132/","date_added":"2008-06-06 11:08:00","date_last_updated":"2012-01-16 15:02:26","deck":"They would later become ACG","description":"

    Starting in 1943 this  Missouri-based comics publisher would, by 1948, be bought out by the company that would come to be known as American Comic Group.

    ","id":132,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Creston Publishing Corporation","site_detail_url":"https://comicvine.gamespot.com/creston-publishing-corporation/4010-132/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-133/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":133,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Aragon","site_detail_url":"https://comicvine.gamespot.com/aragon/4010-133/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-136/","date_added":"2008-06-06 11:08:00","date_last_updated":"2021-12-25 06:50:03","deck":null,"description":"

    This Canadian publisher started out in the Golden-age of comics. They started out by reprinting American comics and distributing them across Canada. Later they also published a fair number of original comics. The company published comics from 1945 to 1956.

    ","id":136,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8302593-superiorcomic.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8302593-superiorcomic.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8302593-superiorcomic.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8302593-superiorcomic.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8302593-superiorcomic.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8302593-superiorcomic.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8302593-superiorcomic.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8302593-superiorcomic.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8302593-superiorcomic.png","image_tags":"All Images,Publishers"},"location_address":null,"location_city":null,"location_state":null,"name":"Superior Publishers Limited","site_detail_url":"https://comicvine.gamespot.com/superior-publishers-limited/4010-136/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-139/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-08-11 23:28:06","deck":null,"description":null,"id":139,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/3063712-story%20comics%20war.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/3063712-story%20comics%20war.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/3063712-story%20comics%20war.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/3063712-story%20comics%20war.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/3063712-story%20comics%20war.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/3063712-story%20comics%20war.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/3063712-story%20comics%20war.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/3063712-story%20comics%20war.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/3063712-story%20comics%20war.png","image_tags":"All Images"},"location_address":"11 East 44th Street","location_city":"New York","location_state":"New York","name":"Story Comics","site_detail_url":"https://comicvine.gamespot.com/story-comics/4010-139/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-141/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-03-06 09:46:27","deck":null,"description":null,"id":141,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"ST Publications","site_detail_url":"https://comicvine.gamespot.com/st-publications/4010-141/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-142/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":142,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Excellent Publications","site_detail_url":"https://comicvine.gamespot.com/excellent-publications/4010-142/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-143/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":143,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Ajax","site_detail_url":"https://comicvine.gamespot.com/ajax/4010-143/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-144/","date_added":"2008-06-06 11:08:00","date_last_updated":"2010-01-04 15:59:07","deck":null,"description":null,"id":144,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1082820-comicmedia.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1082820-comicmedia.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1082820-comicmedia.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1082820-comicmedia.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1082820-comicmedia.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1082820-comicmedia.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1082820-comicmedia.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1082820-comicmedia.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1082820-comicmedia.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Comic Media","site_detail_url":"https://comicvine.gamespot.com/comic-media/4010-144/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-145/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":145,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Gilmor","site_detail_url":"https://comicvine.gamespot.com/gilmor/4010-145/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-147/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":147,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Stanmor Publications","site_detail_url":"https://comicvine.gamespot.com/stanmor-publications/4010-147/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-150/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":150,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Arleigh","site_detail_url":"https://comicvine.gamespot.com/arleigh/4010-150/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-152/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":152,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Popular Press","site_detail_url":"https://comicvine.gamespot.com/popular-press/4010-152/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-153/","date_added":"2008-06-06 11:08:00","date_last_updated":"2019-08-12 02:11:38","deck":null,"description":"

    The stable of characters from Sterling were

    Black Knight (Sterling version)

    Captain Flash and Ricky

    Imagions

    Iron Mask (Sterling version)

    Mirror Man (Sterling version)

    Muscle Man

    Sharkmen

    Soundwave (Sterling version)

    The Actor

    The Claw (Sterling version)

    Tomboy

    Many of these characters have seperate pages while others do not.

    ","id":153,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1967116-sterling_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1967116-sterling_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1967116-sterling_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1967116-sterling_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1967116-sterling_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1967116-sterling_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1967116-sterling_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1967116-sterling_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1967116-sterling_logo.jpg","image_tags":"All Images"},"location_address":"480 Lexington Avenue","location_city":"New York","location_state":"New York","name":"Sterling Comics","site_detail_url":"https://comicvine.gamespot.com/sterling-comics/4010-153/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-154/","date_added":"2008-06-06 11:08:00","date_last_updated":"2019-04-02 13:59:59","deck":"American publisher. Many of their publications were paperbacks.","description":"

    .

    ","id":154,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/6873716-ballantine.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/6873716-ballantine.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/6873716-ballantine.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/6873716-ballantine.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/6873716-ballantine.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/6873716-ballantine.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/6873716-ballantine.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/6873716-ballantine.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/6873716-ballantine.png","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Ballantine Books","site_detail_url":"https://comicvine.gamespot.com/ballantine-books/4010-154/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-157/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":157,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Sussex Publishing Co","site_detail_url":"https://comicvine.gamespot.com/sussex-publishing-co/4010-157/"},{"aliases":"Nonfiction\r\nNonfictional\r\nFactual\r\nActual\r\nHistorical\r\nNon-Fiction","api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-159/","date_added":"2008-06-06 11:08:00","date_last_updated":"2017-06-12 02:00:03","deck":"The people and things which have actually existed in the real world.","description":"

    This page is used for real-life people and characters, who don't have a traditional publisher. These characters are basically public domain property, free to be used by anyone (though it is important to note that as with general public domain characters, specific interpretations may still be subject to their own copyright though the core individual cannot be owned by anyone as they are part of historical record).

    ","id":159,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/2976885-non-fiction.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/2976885-non-fiction.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/2976885-non-fiction.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/2976885-non-fiction.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/2976885-non-fiction.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/2976885-non-fiction.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/2976885-non-fiction.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/2976885-non-fiction.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/2976885-non-fiction.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Non-Fictional","site_detail_url":"https://comicvine.gamespot.com/non-fictional/4010-159/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-162/","date_added":"2008-06-06 11:08:00","date_last_updated":"2010-06-22 14:23:31","deck":"All the Funny Paper characters you just don't care about.","description":"

    Argo was a short lived publication venture that was created to publish comic books featuring newspaper characters that none of the larger comic companies were interested in.

    Much of their output consisted of comics based on such newspaper soap opera characters as Merry Worth, Rex Morgan MD, and Judge Parker, characters that the comic buying audience of the time simply didn’t care about.    

    ","id":162,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1273005-argologo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1273005-argologo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1273005-argologo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1273005-argologo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1273005-argologo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1273005-argologo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1273005-argologo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1273005-argologo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1273005-argologo.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Argo Publications","site_detail_url":"https://comicvine.gamespot.com/argo-publications/4010-162/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-167/","date_added":"2008-06-06 11:08:00","date_last_updated":"2011-08-28 03:13:07","deck":"Archie comics imprint of the 50's-60's, not to be confused with Radio Comix, a publisher that would debut in the 90's.","description":"

    .

    ","id":167,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Radio Comics","site_detail_url":"https://comicvine.gamespot.com/radio-comics/4010-167/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-169/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":169,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Al Fago Magazines","site_detail_url":"https://comicvine.gamespot.com/al-fago-magazines/4010-169/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-171/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-06-07 03:41:13","deck":"I.W. Publishing was an essentially disreputable publisher, named for founder Israel Waldman, that repackaged older comics and reprinted them as their own.","description":"

    Publisher Israel Waldman had a great idea in the late 1950's: He knew there had been a LOT of comic books published, and a LOT of those were by companies no longer in business, so why not reprint the output of those comics companies and foist them on a youthful buying public that hadn't seen them before? Years before today's trend in glossy reprints of public-domain comics, Waldman grabbed work from several defunct publishers (among them the renowned QUALITY Comics, Avon, Fox, Toby, Magazine Enterprises, Harry A. Chesler, and others) and re-issued them with new covers -- and sometimes new titles: The Blue Beetle appeared in a comic book titled \"The Human Fly\" for just one example-- and at times, without even bothering to receive legal authorization to actually produce those reprints. It seemed a sure-fire way to easy money-- low production costs, low overhead, and, if the covers were appealing enough, an unsuspecting audience eager for new titles.

    I.W. and its quickly-created partner company Super Comics, released Westerns, Humor, Funny Animals, Superheroes, Horror, Science Fiction, Romance, War, seemingly anything they could get their hands on. Regardless of the contents of the books, it is often amusing to see what sort of misleading cover has been put on these reprints. It may be rewarding to inspect the publisher's output at The Digital Comics Museum, and a very interesting article on I.W. by T. Casey Brennan appeared in the 57th issue of The Comics Journal from June 1980.

    Nevertheless, sometimes a product is seen as what it actually is, and I.W./Super was out of business by 1964. Waldman went on to found the Warren-inspired SKYWALD line of B&W Horror Magazines with Marvel production chief Sol Brodsky.

    ","id":171,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/820391-iw_publishing.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/820391-iw_publishing.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/820391-iw_publishing.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/820391-iw_publishing.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/820391-iw_publishing.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/820391-iw_publishing.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/820391-iw_publishing.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/820391-iw_publishing.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/820391-iw_publishing.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"I.W. Publishing","site_detail_url":"https://comicvine.gamespot.com/iw-publishing/4010-171/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-173/","date_added":"2008-06-06 11:08:00","date_last_updated":"2018-04-21 19:43:31","deck":"Warren Publishing (named after its founder James Warren) was a famous horror comic publisher.","description":"

    James Warren founded the Warren Publishing in Philadelphia, Pennsylvania in 1957. Warren Publishing´s first magazines were FAMOUS MONSTERS OF FILMLAND an MONSTER WORLD. The editor in chief for both titels was the legendary science fiction/horror grandmaster Forrest J. Ackerman.

    \"No

    FAMOUS MONSTERS OF FILMLAND was orginally supposed to be a one shot published in 1958, but when it went to it´s second printing Warren and Ackerman decided to continue it. Magazine started when Warren noticed that baby boomer children wathcing old horror movies in television shows that each had a monster host, were actually rooting for the monsters. He wanted to create similar thing in magazine format. The first number sold out in days and later on the magazine had a print run of 200 000 copies.

    In 1960 Warren started to publish Help! magazine. It employed many former MAD artists and was edited by Harvey Kurtzman. During it´s five year run, Help! had many collaborators who later on became famous, Terry Gilliam, Gloria Steinem, John Cleese and Woody Allen. It also featured underground comics by Robert Crumb and Gilberts Shelton.

    \"No

    The monster comics Warren published in MONSTER WORLD expanded to two legendary horror comics, CREEPY and EERIE. Warren was able to avert the Comics Code cencorship by claiming that his publication was not in fact a comic, but due to pricing and format a magazine. This was also to protect James Warren from the fate that EC publisher BILL GAINES suffered in front of a Congressional committee.

    Warren also published openly anti-war war comic, BLAZING COMBAT in 1965-66. He later said that from everything he published, he was most proud from these four issues. Because of the content of BLAZING COMBAT, the U.S. Army PXs refused to sell it, and when other wholesalers were threatening to drop every WARREN publications from their shelves because of BC, it was ended.

    \"No

    In 1969 Warren launched it´s third classic horror comic, VAMPIRELLA. It was a hit and ment end to a dry season that had followed company´s move to New York and a cash flow problem. During this period Warren also started to use more and more Spanish artists mainly in production of VAMPIRELLA.

    \"No

    In 1971 the company changed it´s name to WARREN COMMUNICATIONS and the orginal company was dissolved. In 1974 Warren started to publish Will Eisner´s legendary THE SPIRIT in magazine format.

    In 1983 James Warren declared banckruptcy and the HARRIS PUBLICATIONS bought the companys assets same year. This was followed by a lawsuit that eventually gave back the rights of EERIE and CREEPY to James Warren in 1998.

    ","id":173,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/97318/1759660-warren.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/97318/1759660-warren.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/97318/1759660-warren.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/97318/1759660-warren.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/97318/1759660-warren.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/97318/1759660-warren.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/97318/1759660-warren.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/97318/1759660-warren.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/97318/1759660-warren.png","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Warren","site_detail_url":"https://comicvine.gamespot.com/warren/4010-173/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-174/","date_added":"2008-06-06 11:08:00","date_last_updated":"2022-05-25 15:10:27","deck":null,"description":null,"id":174,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8510543-archieadventureseries.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8510543-archieadventureseries.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8510543-archieadventureseries.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8510543-archieadventureseries.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8510543-archieadventureseries.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8510543-archieadventureseries.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8510543-archieadventureseries.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8510543-archieadventureseries.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8510543-archieadventureseries.png","image_tags":"All Images,Publishers"},"location_address":null,"location_city":null,"location_state":null,"name":"Archie Adventure Series","site_detail_url":"https://comicvine.gamespot.com/archie-adventure-series/4010-174/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-175/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":175,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Signet Books","site_detail_url":"https://comicvine.gamespot.com/signet-books/4010-175/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-176/","date_added":"2008-06-06 11:08:00","date_last_updated":"2009-09-30 10:03:55","deck":"Planet Comics reprinted various DC titles in Australia","description":null,"id":176,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/946963-planet_comics.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/946963-planet_comics.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/946963-planet_comics.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/946963-planet_comics.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/946963-planet_comics.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/946963-planet_comics.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/946963-planet_comics.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/946963-planet_comics.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/946963-planet_comics.gif","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Planet Comics","site_detail_url":"https://comicvine.gamespot.com/planet-comics/4010-176/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-177/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-09-06 19:51:50","deck":"An Australian comic publisher. Reprinted many DC Comics titles, a branch of Murray Comics","description":null,"id":177,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/937024-colour.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/937024-colour.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/937024-colour.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/937024-colour.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/937024-colour.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/937024-colour.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/937024-colour.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/937024-colour.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/937024-colour.gif","image_tags":"All Images,Small Press"},"location_address":null,"location_city":null,"location_state":null,"name":"Colour Comics Pty Ltd","site_detail_url":"https://comicvine.gamespot.com/colour-comics-pty-ltd/4010-177/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-178/","date_added":"2008-06-06 11:08:00","date_last_updated":"2021-12-25 06:57:09","deck":"Gold Key was known as Western Publishing. They dissolved their partnership with Dell and created their own stable of characters.","description":"

    Gold Key Comics was created in 1962, when Western switched to in-house publishing rather than packaging content for branding and distribution by its business partner, Dell Comics. Hoping to make their comics more like traditional children's books they initially eliminated panel borders (using strips of color instead) and had word and thought balloons that were rectangular rather than oval. Within a year they had reverted to using inked panel borders and oval balloons. They also experimented with new formats, including black and white 136 page hardcovers containing reprints (Whitman Comic Books) and tabloid sized 52 page hardcovers containing new material (Golden Picture Story Book). These evidently were aimed at the book trade and department stores, in the manner of their popular Little Golden Books. In 1967 they reprinted a number of selected issues of their comics under the title Top Comics which were sold in plastic bags of 5 at gas stations and various eateries; some locations removed them from the bags and sold them individually with price stickers attached to the covers.

    A striking difference between Gold Key and other publishers (which had been done by Dell as well) was to publish most of their mystery, jungle, science-fiction, adventure and similar series with full color painted covers rather than the standard line-artwork.

    Gold Key featured a number of licensed properties and several original titles (including a number of publications that spun-off from Dell's Four Color series). It maintained decent sales numbers throughout the 1960s, thanks to its offering many titles based upon popular TV series of the day, as well as numerous titles based upon both Walt Disney Studios and Warner Bros. animated properties. It was also the first company to publish comic books based upon Star Trek.

    Over the years it did lose several properties, including the King Features Syndicate characters (Popeye, Flash Gordon, The Phantom, etc) in 1966, the Hanna Barbera characters (to Charlton Comics) in 1970, and Star Trek (to Marvel Comics) in 1979.

    The stable of writers and artists built up by Western Publishing during the Dell Comics era mostly continued into the Gold Key era. In the mid-60s a number of artists left to work for the newly formed Disney Studio Program. Among the few new creators at Gold Key were writers Don Glut, Len Wein and Mark Evanier and artist Mike Royer. Also in the 70s writer Bob Gregory started drawing stories, mostly for Daisy and Donald. Acclaimed artist/writer Frank Miller had his first published comic book artwork in The Twilight Zone for Gold Key in 1978.

    According to former Western Publishing writer Mark Evanier, during the mid-1960s comedy writer Jerry Belson (whose writing partner at the time was Garry Marshall), while writing for leading TV sitcoms like The Dick Van Dyke Show, also did scripts for Gold Key. Among the comics he wrote for were The Flintstones, Uncle Scrooge, Daffy Duck, Bugs Bunny, The Three Stooges and Woody Woodpecker.

    In the 1970s, when the comics industry experienced a downswing, Gold Key was among the hardest hit. Its editorial policies had not kept pace with changing times and suffered erosion of its base of sales among children who could now instead watch cartoons and other entertainment on free television. By 1977, all of the company's original series had been canceled (most had been dropped circa 1973-1974), and its licensed series were virtually all reprint-only, although Gold Key was still able to obtain the rights to publish a comic book series based upon Buck Rogers in the 25th Century between 1979 and 1981.

    In this period Gold Key experimented with digests which had some success. In a similar vein to explore new markets they produced in the mid-1970s a four volume series with somewhat better production values and printing aimed at the emerging collector market containing classic stories of the Disney characters by Carl Barks and Floyd Gottfredson (Best of Walt Disney's Comics). In the late 1970s came somewhat higher grade reprints of various licensed characters also aimed at new venues (Dynabrites) plus a four issue series adapting classic science fiction stories by authors such as Issac Asimov and John W. Campbell (Starstream). Golden Press released trade paperback reprint collections (Walt Disney Christmas Parade, Bugs Bunny Comics-Go-Round, Star Trek Enterprise Logs). And while still distributing comic books on spinners and racks at drug stores, super markets and such under the Gold Key label simultaneously distributing the same comics — usually in plastic bags of three — to toy and department stores plus newsstands at airports and bus/train stations \"as well as other outlets that weren't conducive to conventional comic racks\" under the Whitman logo which it also used for such products as coloring books. Western at one point also distributed bagged comics from its rivals DC Comics and Marvel Comics under the Whitman logo. President of DC Comics Paul Levitz has stated \"The Western program was enormous — even well into the '70s they were taking very large numbers of DC titles for distribution (I recall 50,000 copies offhand).\" Continued declining sales forced Western in 1981 to cease newsstand distribution and thereafter release all its comics solely in bags as \" Whitman Comics\". The \"Gold Key\" logo was discontinued. Eventually arrangements were made to distribute these releases to the nascent national network of comic book stores as part of the Whitman alternate methods of distribution. All these efforts proved ultimately unsuccessful, and by 1984 Western was out of the comic book business.

    Many of their characters have been revived over the decades by companies ranging from Valiant to Dark Horse who recently revived and published some of their more memorable characters. Dynamite has the publishing rights to the major/well known Gold Key characters.

    Some of the stable of characters that were originally published were:

    Magnus (Gold Key, Valiant, Dark Horse, Dynamite)

    Dr. Solar (Gold Key, Valiant, Dark Horse, Dynamite)

    Turok (Dell, Gold Key, Valiant, Dark Horse, Dynamite)

    M.A.R.S. Patrol

    Mighty Samson (This version is paid homage to in Project Superpowers) (Gold Key, Dark Horse, DE)

    Terra (Gold Key, Dark Horse, Dynamite)

    Tiger Girl (Gold Key version)

    Dr. Spektor (Gold Key, Dynamite)

    Tragg

    Dagar

    Captain Johner (Gold Key, Valiant)

    Tanek Nuro (Gold Key, Dark Horse)

    Captain Venture (Fawcett, Gold Key)

    Mindor (Gold Key, Dynamite)

    Sharmaine (Gold Key, Dynamite)

    Leeja (Gold Key, Valiant, Dark Horse, Dynamite)

    Doc Savage (Street and Smith, Gold Key, Marvel, DC, Dark Horse, Dynamite)

    Flash Gordon (King Features Syndicate, Toby, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)

    Ming the Merciless (King Features Syndicate, Toby, Eastern Color, Dell, Gold Key, Harvey, Charlton, Marvel, DC, Dynamite)

    The Phantom (King Features Syndicate, Gold Key, Marvel, DC, Moonstone, Dynamite)

    The Lone Ranger (Dell, Gold Key, Dynamite)

    Tarzan (Dell, Gold Key, DC, Marvel, Dark Horse, Dynamite)

    John Carter, Warlord of Mars (Dell, Gold Key, DC, Marvel, Dynamite)

    Carson Napier (Gold Key, DC, Dark Horse) Edgar Rice Burroughs creation

    Duare (Gold Key, DC, Dark Horse)

    Korak (Gold Key, DC, Marvel, Dark Horse) Edgar Rice Burroughs creation

    David Innes (Gold Key, DC, Dark Horse)

    Abner Perry (Gold Key, DC, Dark Horse)

    La of Opar (Dell, Gold Key, DC, Marvel, Dark Horse, Dynamite)

    Lakota Rainflower (Gold Key, Dynamite)

    Commander Zarz (Gold Key, Valiant)

    The Owl (Dell, Gold Key, Dynamite)

    Owl Girl (Dell, Gold Key, Dynamite)

    The Scarecrow (seen in DC's League of Extrodinary Gentlemen)

    Oran

    1-A (Gold Key, Valiant, Dark Horse, Dynamite)

    Mekman (Gold Key, Valiant, Dynamite)

    Hutek (Dell, Gold Key)

    Major Timbuk

    The Bionic Man novel by Martin Caidin (Gold Key, Charlton, Dynamite)

    M'Rees (Gold Key, Valiant)

    G-8 (Popular, Gold Key, Moonstone)

    Sigma

    L'Sier

    Purple Zombie (Eastern Color, Gold Key)

    Sentinel

    Loyra

    Dr. Zen Abron

    Honey West novel This Girl for Hire Gloria Fickling (Gold Key, Moonstone)

    Nura

    Talpa

    Dan Dunn (Eastern Color, Dell, Gold Key)

    Andar (Dell, Gold Key, Valiant, Dark Horse, Dynamite)

    Many of these characters have separate pages while others do not.

    ","id":178,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8302618-goldkeycomics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8302618-goldkeycomics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8302618-goldkeycomics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8302618-goldkeycomics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8302618-goldkeycomics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8302618-goldkeycomics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8302618-goldkeycomics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8302618-goldkeycomics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8302618-goldkeycomics.png","image_tags":"All Images,Publishers"},"location_address":null,"location_city":"Poughkeepsie","location_state":"New York","name":"Gold Key","site_detail_url":"https://comicvine.gamespot.com/gold-key/4010-178/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-183/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":183,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Illustrated Humor Inc","site_detail_url":"https://comicvine.gamespot.com/illustrated-humor-inc/4010-183/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-184/","date_added":"2008-06-06 11:08:00","date_last_updated":"2010-08-08 07:15:04","deck":"Italian publishing house, specially of comic books, that introduced Italy to the Marvel's characters. It was founded by Andrea Corno and Luciano Secchi in 1961.","description":null,"id":184,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/974998-910829_editoriale_corno_catalogo_generale_1977_copertina_super.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Editoriale Corno","site_detail_url":"https://comicvine.gamespot.com/editoriale-corno/4010-184/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-185/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":185,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Edwin Aprill","site_detail_url":"https://comicvine.gamespot.com/edwin-aprill/4010-185/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-186/","date_added":"2008-06-06 11:08:00","date_last_updated":"2011-01-27 13:48:41","deck":"mighty comics is published by archie comics, red circle comics, spectrum comics, impact comics to dc comics","description":"


    Heroes of the Mighty comics. 
    1 Black hood
    2 The Shield
    3 The Web
    4 The Jaguar
    5 Flygirl
    6 The Fox
    7 The Shadow

    8 Bob Phantom
    9 Dusty

    10 Pow Girl
    11 Roy the Superboy
    12 The Wizard
    13 Captain Flagg
    14 Firefly

    15 Inferno

    ","id":186,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Mighty Comics","site_detail_url":"https://comicvine.gamespot.com/mighty-comics/4010-186/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-189/","date_added":"2008-06-06 11:08:00","date_last_updated":"2009-10-27 02:01:29","deck":"Italian publisher, owned by Casarotti's family (Gino, the father, and Pucci Giuseppe, the son).","description":null,"id":189,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/1005745-01_07_1988.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/1005745-01_07_1988.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/1005745-01_07_1988.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/1005745-01_07_1988.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/1005745-01_07_1988.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/1005745-01_07_1988.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/1005745-01_07_1988.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/1005745-01_07_1988.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/1005745-01_07_1988.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Casa Editrice Dardo","site_detail_url":"https://comicvine.gamespot.com/casa-editrice-dardo/4010-189/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-191/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-07-19 01:06:45","deck":"It's the most important daily newspaper in Italy. It is also an important publisher of books, including comic-books. It belongs to RCS MediaGroup.","description":null,"id":191,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/943205-corriere_della_sera.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/943205-corriere_della_sera.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/943205-corriere_della_sera.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/943205-corriere_della_sera.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/943205-corriere_della_sera.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/943205-corriere_della_sera.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/943205-corriere_della_sera.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/943205-corriere_della_sera.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/943205-corriere_della_sera.jpg","image_tags":"All Images"},"location_address":"via Solferino, 28","location_city":"Milano","location_state":null,"name":"Corriere Della Sera","site_detail_url":"https://comicvine.gamespot.com/corriere-della-sera/4010-191/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-194/","date_added":"2008-06-06 11:08:00","date_last_updated":"2010-09-10 12:54:18","deck":"Publisher of T.H.U.N.D.E.R. Agents.","description":"

    Tower comics failed to include a correct copyright notice on their comic books, thus all their characters became Public Domain upon publication according to U.S. copyright laws at the time.

    ","id":194,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69951/1388135-towerlog.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69951/1388135-towerlog.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69951/1388135-towerlog.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69951/1388135-towerlog.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69951/1388135-towerlog.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69951/1388135-towerlog.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69951/1388135-towerlog.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69951/1388135-towerlog.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69951/1388135-towerlog.jpeg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Tower","site_detail_url":"https://comicvine.gamespot.com/tower/4010-194/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-195/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":195,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"New American Library","site_detail_url":"https://comicvine.gamespot.com/new-american-library/4010-195/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-196/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-04-24 15:42:44","deck":"Video game developer and publisher producing mainly comic and television based games and home console versions of major arcade games, such as Mortal Kombat and Killer Instinct","description":"

    Acclaim also published comics under their subdivisions Armada and Windjammer.

    ","id":196,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/19151/659825-acclaim_entertainment.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/19151/659825-acclaim_entertainment.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/19151/659825-acclaim_entertainment.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/19151/659825-acclaim_entertainment.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/19151/659825-acclaim_entertainment.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/19151/659825-acclaim_entertainment.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/19151/659825-acclaim_entertainment.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/19151/659825-acclaim_entertainment.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/19151/659825-acclaim_entertainment.png","image_tags":"All Images,Logo"},"location_address":null,"location_city":null,"location_state":null,"name":"Acclaim","site_detail_url":"https://comicvine.gamespot.com/acclaim/4010-196/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-198/","date_added":"2008-06-06 11:08:00","date_last_updated":"2016-01-05 08:39:17","deck":"For them publishing comics was at best an also-ran activity.","description":"

    King Features Syndicate which newspaper comic strips, and for a time they published a number of comic books featuring the strips they syndicated. As the profits for their comic books started to drop in the 60's they left the business and since then license the characters to other publishers.

    The List of Characters that were considered Super heroes

    Agent X-9 (King Features) (created by Dashiell Hammett and Alex Raymond)

    Brick Bradford (King Features, Nedor)

    Flash Gordon (King Features, Toby Press, Eastern Color, Dell, Harvey, Charlton, Gold Key, Marvel, DC, Dynamite)

    Jungle Jim (King Features, Nedor, Dell, Charlton, Dynamite)

    Lothar (King Features, Harvey, Marvel, Dynamite)

    Mandrake the Magician (King Features, Harvey, Marvel, Moonstone, Dynamite)

    Prince Valiant (King Features, Dynamite)

    The Phantom (King Features, Gold Key, Harvey, Charlton, Marvel, DC, Moonstone, Dynamite)

    Ming the Merciless (King Features, Toby Press, Eastern Color, Dell, Gold Key, Harvey, Charlton, DC, Marvel, Dynamite)

    Dynamite is publishing all of King Features Syndicate hero sans Agent X-9

    ","id":198,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1475525-king_features_color_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1475525-king_features_color_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1475525-king_features_color_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1475525-king_features_color_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1475525-king_features_color_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1475525-king_features_color_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1475525-king_features_color_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1475525-king_features_color_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1475525-king_features_color_logo.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"King Features Syndicate","site_detail_url":"https://comicvine.gamespot.com/king-features-syndicate/4010-198/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-202/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":202,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Tower Books","site_detail_url":"https://comicvine.gamespot.com/tower-books/4010-202/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-203/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":203,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Milson","site_detail_url":"https://comicvine.gamespot.com/milson/4010-203/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-208/","date_added":"2008-06-06 11:08:00","date_last_updated":"2013-08-06 04:48:14","deck":"Founded by Max Bunker after his experience with Editoriale Corno, published Alan Ford and other Bunker's characters until 2013, when it closed.","description":"
    \"MBP
    MBP characters
    ","id":208,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/947836-logo_home.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/947836-logo_home.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/947836-logo_home.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/947836-logo_home.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/947836-logo_home.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/947836-logo_home.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/947836-logo_home.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/947836-logo_home.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/947836-logo_home.jpg","image_tags":"All Images"},"location_address":null,"location_city":"Milan","location_state":null,"name":"Max Bunker Press","site_detail_url":"https://comicvine.gamespot.com/max-bunker-press/4010-208/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-209/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":209,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Nostalgia Press","site_detail_url":"https://comicvine.gamespot.com/nostalgia-press/4010-209/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-210/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:12","deck":null,"description":null,"id":210,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Wallace Wood","site_detail_url":"https://comicvine.gamespot.com/wallace-wood/4010-210/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-212/","date_added":"2008-06-06 11:08:00","date_last_updated":"2011-04-07 08:13:32","deck":"Cepim is one of the former names of the publisher Sergio Bonelli Editore.","description":"

    The different names that Sergio Bonelli Editore adopted are Edizioni Audace, Edizioni Araldo, Cepim, Daim Press, and Altamira.

    ","id":212,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/1760714-sergio_toppi_uomo_del_nilo.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Cepim","site_detail_url":"https://comicvine.gamespot.com/cepim/4010-212/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-214/","date_added":"2008-06-06 11:08:00","date_last_updated":"2015-01-22 06:26:56","deck":null,"description":"

    1970s publisher specializing in b/w horror comics.

    ","id":214,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Skywald","site_detail_url":"https://comicvine.gamespot.com/skywald/4010-214/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-217/","date_added":"2008-06-06 11:08:00","date_last_updated":"2015-01-22 06:36:27","deck":null,"description":"

    The company ran until 1993, primarily bringing out existing comics translating them into Swedish.

    ","id":217,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Bonniers Juniorförlag","site_detail_url":"https://comicvine.gamespot.com/bonniers-juniorforlag/4010-217/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-219/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":219,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Crown Publishers","site_detail_url":"https://comicvine.gamespot.com/crown-publishers/4010-219/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-223/","date_added":"2008-06-06 11:08:00","date_last_updated":"2009-02-04 19:56:25","deck":null,"description":null,"id":223,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/19772/597575-marvelmysterycomics12_81.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/19772/597575-marvelmysterycomics12_81.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/19772/597575-marvelmysterycomics12_81.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/19772/597575-marvelmysterycomics12_81.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/19772/597575-marvelmysterycomics12_81.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/19772/597575-marvelmysterycomics12_81.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/19772/597575-marvelmysterycomics12_81.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/19772/597575-marvelmysterycomics12_81.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/19772/597575-marvelmysterycomics12_81.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Magazine Management","site_detail_url":"https://comicvine.gamespot.com/magazine-management/4010-223/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-224/","date_added":"2008-06-06 11:08:00","date_last_updated":"2008-06-06 20:36:10","deck":null,"description":null,"id":224,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Barbour Christian Comics","site_detail_url":"https://comicvine.gamespot.com/barbour-christian-comics/4010-224/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-225/","date_added":"2008-06-06 11:08:00","date_last_updated":"2012-04-16 02:55:29","deck":"A defunct italian publisher, notably known for producing the \"Intrepido\" magazine","description":"

    .

    ","id":225,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/99729/2298163-editriceuniverso.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/99729/2298163-editriceuniverso.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/99729/2298163-editriceuniverso.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/99729/2298163-editriceuniverso.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/99729/2298163-editriceuniverso.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/99729/2298163-editriceuniverso.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/99729/2298163-editriceuniverso.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/99729/2298163-editriceuniverso.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/99729/2298163-editriceuniverso.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Casa Editrice Universo","site_detail_url":"https://comicvine.gamespot.com/casa-editrice-universo/4010-225/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-229/","date_added":"2008-06-06 11:08:01","date_last_updated":"2010-10-02 16:28:55","deck":"Italian publisher, active during the 70's and the 80's. It published Tarzan, Warner Bros. and DC Comics' characters.","description":null,"id":229,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/1433002-12_editrice_cenisio___logo__2_.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Editrice Cenisio","site_detail_url":"https://comicvine.gamespot.com/editrice-cenisio/4010-229/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-230/","date_added":"2008-06-06 11:08:01","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":230,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Gebers","site_detail_url":"https://comicvine.gamespot.com/gebers/4010-230/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-233/","date_added":"2008-06-06 11:08:01","date_last_updated":"2019-10-09 01:09:45","deck":"Last Gasp (short for Last Gasp Eco Funnies) is a company created by Richard Corben. Richard Corben is best known for his character DEN and his work on Fantagor. DEN Fantastic Adventures! is through Fantagor Press.","description":"

    Last Gasp (short for Last Gasp Eco Funnies) is a company created by Richard Corben. Richard Corben is best known for his character DEN and his work on Fantagor. DEN Fantastic Adventures! is through Fantagor Press.

    ","id":233,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/71975/7100268-4370860903-TgeRK.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/71975/7100268-4370860903-TgeRK.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/71975/7100268-4370860903-TgeRK.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/71975/7100268-4370860903-TgeRK.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/71975/7100268-4370860903-TgeRK.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/71975/7100268-4370860903-TgeRK.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/71975/7100268-4370860903-TgeRK.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/71975/7100268-4370860903-TgeRK.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/71975/7100268-4370860903-TgeRK.jpg","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Last Gasp","site_detail_url":"https://comicvine.gamespot.com/last-gasp/4010-233/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-234/","date_added":"2008-06-06 11:08:01","date_last_updated":"2010-04-01 23:51:13","deck":"Italian publisher founded in 1914 by the \"Società San Paolo\", owned by the religious congregation of the Paulines.","description":null,"id":234,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/48397/1172722-logo_edizioni_paoline.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/48397/1172722-logo_edizioni_paoline.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/48397/1172722-logo_edizioni_paoline.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/48397/1172722-logo_edizioni_paoline.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/48397/1172722-logo_edizioni_paoline.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/48397/1172722-logo_edizioni_paoline.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/48397/1172722-logo_edizioni_paoline.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/48397/1172722-logo_edizioni_paoline.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/48397/1172722-logo_edizioni_paoline.png","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Edizioni San Paolo","site_detail_url":"https://comicvine.gamespot.com/edizioni-san-paolo/4010-234/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-235/","date_added":"2008-06-06 11:08:01","date_last_updated":"2022-03-22 13:22:17","deck":"An imprint of Archie Comics that published characters unrelated to mainstream Archie Comics.","description":"

    History

    Red Circle Comics began publishing in October of 1973, after Chilling Adventures in Sorcery as told by Sabrina was turned over to them after its second issue was released. After passing into Red Circle's control, it was retitled as simply Chilling Adventures in Sorcery and released under this title for the following three issues. It was retitled again with the sixth issue, taking the name Red Circle Sorcery. The title lasted for a further five issues before being cancelled. In 1974 Red Circle published a single issue of The Super Cops, and several issues of Mad House. In early 1975 Mad House was taken from Red Circle's control and re-assimilated into the main Archie line. Red Circle did not publish anything for the next four years until, in 1979, they released two digests of superhero material that was originally released by Archie in the 1960s, under the titles Archie's Super Hero Special and Archie's Super Hero Comic Digest Magazine #2.

    This period of occasional dormancy was followed in the 1980s with a resurgence in the attempted use of Archie's superhero properties. Red Circle released a number of revived titles after the 1983 revival of The Mighty Crusaders. Some of the revived titles included Blue Ribbon Comics, The Comet and The Fly. In February of 1984 this new line was retitled as Archie Adventure Series. By September of 1985 all new titles in this line had been cancelled. There were plans to revive them under a new title, but these plans did not result in anything. Red Circle ceased publication, and Archie's superhero properties were leased to DC Comics.

    Titles

    During its first phase of publication, 1973-1979, Red Circle released

    Chilling Adventures in Sorcery #3-5

    Red Circle Sorcery #6-11

    Mad House #95-97

    Super Cops #1

    Archie's Super Hero Special

    Archie's Super Hero Comic Digest Magazine #2

    During its second phase of publication, 1980-1985, Red Circle released

    Blue Ribbon Comics #1-14

    The Comet #1-2

    The Fly #1-9

    Lancelot Strong: The Shield, later retitled Shield-Steel Sterling, later retitled Steel Sterling, #1-7

    ManTech Robot Warriors #1-4

    Mighty Crusaders #1-13

    Original Shield #1-4

    ","id":235,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9541/1440469-shade1.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9541/1440469-shade1.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9541/1440469-shade1.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9541/1440469-shade1.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9541/1440469-shade1.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9541/1440469-shade1.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9541/1440469-shade1.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9541/1440469-shade1.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9541/1440469-shade1.gif","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Red Circle","site_detail_url":"https://comicvine.gamespot.com/red-circle/4010-235/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-236/","date_added":"2008-06-06 11:08:01","date_last_updated":"2013-04-30 09:24:28","deck":"Kitchen Sink published the work of Rand Homes, whose character Harold Hedd engages in various escapades that will remind the reader of those of the slightly more notorious Fabulous Furry Freak Brothers.\n","description":"

    Founded in 1969, Kitchen Sink Press was one of the earliest underground comics publishers in North America. In addition to being the original publisher of Omaha The Cat Dancer and The Crow, they were also the publishers of Kevin Eastman and Eric Talbot's comic series \"Melting Pot\", which later inspired Eastman's film \"Heavy Metal 2000\".

    ","id":236,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/3016589-ksplogo.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/3016589-ksplogo.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/3016589-ksplogo.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/3016589-ksplogo.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/3016589-ksplogo.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/3016589-ksplogo.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/3016589-ksplogo.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/3016589-ksplogo.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/3016589-ksplogo.gif","image_tags":"All Images"},"location_address":null,"location_city":null,"location_state":null,"name":"Kitchen Sink","site_detail_url":"https://comicvine.gamespot.com/kitchen-sink/4010-236/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-238/","date_added":"2008-06-06 11:08:01","date_last_updated":"2008-06-06 20:36:11","deck":null,"description":null,"id":238,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"location_address":null,"location_city":null,"location_state":null,"name":"Hemmets Journal Ab","site_detail_url":"https://comicvine.gamespot.com/hemmets-journal-ab/4010-238/"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/series-details/series-4075-13.json b/samples/api-data/series-details/series-4075-13.json new file mode 100644 index 0000000..b97f253 --- /dev/null +++ b/samples/api-data/series-details/series-4075-13.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Der ultimative Spider-Man\nUltimate Spider-Man: Web Warriors\nUltimate Spider-Man Vs. The Sinister 6\nUltimate Spider-Man Vs. The Sinister Six","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-13/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1443/","id":1443,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4005-1443/","count":"104"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1450/","id":1450,"name":"Luke Cage","site_detail_url":"https://comicvine.gamespot.com/luke-cage/4005-1450/","count":"66"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1492/","id":1492,"name":"Iron Fist","site_detail_url":"https://comicvine.gamespot.com/iron-fist/4005-1492/","count":"66"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80709/","id":80709,"name":"Ava Ayala","site_detail_url":"https://comicvine.gamespot.com/ava-ayala/4005-80709/","count":"64"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82858/","id":82858,"name":"Sam Alexander","site_detail_url":"https://comicvine.gamespot.com/sam-alexander/4005-82858/","count":"61"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3202/","id":3202,"name":"Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury/4005-3202/","count":"54"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1489/","id":1489,"name":"Flash Thompson","site_detail_url":"https://comicvine.gamespot.com/flash-thompson/4005-1489/","count":"39"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1485/","id":1485,"name":"Doctor Octopus","site_detail_url":"https://comicvine.gamespot.com/doctor-octopus/4005-1485/","count":"38"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1486/","id":1486,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/venom/4005-1486/","count":"36"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1780/","id":1780,"name":"Aunt May","site_detail_url":"https://comicvine.gamespot.com/aunt-may/4005-1780/","count":"29"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58812/","id":58812,"name":"Norman Osborn","site_detail_url":"https://comicvine.gamespot.com/norman-osborn/4005-58812/","count":"29"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2478/","id":2478,"name":"Harry Osborn","site_detail_url":"https://comicvine.gamespot.com/harry-osborn/4005-2478/","count":"28"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13380/","id":13380,"name":"Mary Jane","site_detail_url":"https://comicvine.gamespot.com/mary-jane/4005-13380/","count":"26"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43587/","id":43587,"name":"Amadeus Cho","site_detail_url":"https://comicvine.gamespot.com/amadeus-cho/4005-43587/","count":"26"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1487/","id":1487,"name":"J. Jonah Jameson","site_detail_url":"https://comicvine.gamespot.com/j-jonah-jameson/4005-1487/","count":"24"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70860/","id":70860,"name":"Phil Coulson","site_detail_url":"https://comicvine.gamespot.com/phil-coulson/4005-70860/","count":"23"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1935/","id":1935,"name":"Dagger","site_detail_url":"https://comicvine.gamespot.com/dagger/4005-1935/","count":"21"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1474/","id":1474,"name":"Cloak","site_detail_url":"https://comicvine.gamespot.com/cloak/4005-1474/","count":"18"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79420/","id":79420,"name":"Miles Morales","site_detail_url":"https://comicvine.gamespot.com/miles-morales/4005-79420/","count":"18"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1488/","id":1488,"name":"Lizard","site_detail_url":"https://comicvine.gamespot.com/lizard/4005-1488/","count":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2267/","id":2267,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4005-2267/","count":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2488/","id":2488,"name":"Squirrel Girl","site_detail_url":"https://comicvine.gamespot.com/squirrel-girl/4005-2488/","count":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2126/","id":2126,"name":"Rhino","site_detail_url":"https://comicvine.gamespot.com/rhino/4005-2126/","count":"16"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6286/","id":6286,"name":"Ben Reilly","site_detail_url":"https://comicvine.gamespot.com/ben-reilly/4005-6286/","count":"16"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1442/","id":1442,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4005-1442/","count":"15"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2268/","id":2268,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4005-2268/","count":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1455/","id":1455,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4005-1455/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2475/","id":2475,"name":"Kraven the Hunter","site_detail_url":"https://comicvine.gamespot.com/kraven-the-hunter/4005-2475/","count":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1456/","id":1456,"name":"Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/doctor-strange/4005-1456/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3228/","id":3228,"name":"Electro","site_detail_url":"https://comicvine.gamespot.com/electro/4005-3228/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4822/","id":4822,"name":"Abe Jenkins","site_detail_url":"https://comicvine.gamespot.com/abe-jenkins/4005-4822/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14876/","id":14876,"name":"Arnim Zola","site_detail_url":"https://comicvine.gamespot.com/arnim-zola/4005-14876/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1490/","id":1490,"name":"Carnage","site_detail_url":"https://comicvine.gamespot.com/carnage/4005-1490/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1529/","id":1529,"name":"Batroc","site_detail_url":"https://comicvine.gamespot.com/batroc/4005-1529/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3558/","id":3558,"name":"Ka-Zar","site_detail_url":"https://comicvine.gamespot.com/ka-zar/4005-3558/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4578/","id":4578,"name":"Taskmaster","site_detail_url":"https://comicvine.gamespot.com/taskmaster/4005-4578/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1475/","id":1475,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/hawkeye/4005-1475/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3537/","id":3537,"name":"Zabu","site_detail_url":"https://comicvine.gamespot.com/zabu/4005-3537/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3544/","id":3544,"name":"Sandman","site_detail_url":"https://comicvine.gamespot.com/sandman/4005-3544/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4484/","id":4484,"name":"Scorpion","site_detail_url":"https://comicvine.gamespot.com/scorpion/4005-4484/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11428/","id":11428,"name":"Triton","site_detail_url":"https://comicvine.gamespot.com/triton/4005-11428/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3200/","id":3200,"name":"Black Widow","site_detail_url":"https://comicvine.gamespot.com/black-widow/4005-3200/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4328/","id":4328,"name":"Trapster","site_detail_url":"https://comicvine.gamespot.com/trapster/4005-4328/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4459/","id":4459,"name":"Vulture","site_detail_url":"https://comicvine.gamespot.com/vulture/4005-4459/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8682/","id":8682,"name":"Spider-Ham","site_detail_url":"https://comicvine.gamespot.com/spider-ham/4005-8682/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124552/","id":124552,"name":"Petra Parker","site_detail_url":"https://comicvine.gamespot.com/petra-parker/4005-124552/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3114/","id":3114,"name":"Uncle Ben","site_detail_url":"https://comicvine.gamespot.com/uncle-ben/4005-3114/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3115/","id":3115,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4005-3115/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3225/","id":3225,"name":"Crossbones","site_detail_url":"https://comicvine.gamespot.com/crossbones/4005-3225/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4324/","id":4324,"name":"Loki","site_detail_url":"https://comicvine.gamespot.com/loki/4005-4324/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4825/","id":4825,"name":"Shocker","site_detail_url":"https://comicvine.gamespot.com/shocker/4005-4825/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13987/","id":13987,"name":"Collector","site_detail_url":"https://comicvine.gamespot.com/collector/4005-13987/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1440/","id":1440,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4005-1440/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1468/","id":1468,"name":"Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/doctor-doom/4005-1468/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2500/","id":2500,"name":"Monkey Joe","site_detail_url":"https://comicvine.gamespot.com/monkey-joe/4005-2500/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3517/","id":3517,"name":"Executioner","site_detail_url":"https://comicvine.gamespot.com/executioner/4005-3517/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4457/","id":4457,"name":"Hydro-Man","site_detail_url":"https://comicvine.gamespot.com/hydro-man/4005-4457/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6722/","id":6722,"name":"Morbius","site_detail_url":"https://comicvine.gamespot.com/morbius/4005-6722/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13812/","id":13812,"name":"Zzzax","site_detail_url":"https://comicvine.gamespot.com/zzzax/4005-13812/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20577/","id":20577,"name":"Ant-Man (Lang)","site_detail_url":"https://comicvine.gamespot.com/ant-man-lang/4005-20577/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32735/","id":32735,"name":"Grandmaster","site_detail_url":"https://comicvine.gamespot.com/grandmaster/4005-32735/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39695/","id":39695,"name":"Grizzly","site_detail_url":"https://comicvine.gamespot.com/grizzly/4005-39695/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40524/","id":40524,"name":"Spider-Man 2099","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099/4005-40524/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73456/","id":73456,"name":"Max Fury","site_detail_url":"https://comicvine.gamespot.com/max-fury/4005-73456/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162256/","id":162256,"name":"Spider-Man Noir","site_detail_url":"https://comicvine.gamespot.com/spider-man-noir/4005-162256/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173759/","id":173759,"name":"Anti-Venom","site_detail_url":"https://comicvine.gamespot.com/anti-venom/4005-173759/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1445/","id":1445,"name":"Juggernaut","site_detail_url":"https://comicvine.gamespot.com/juggernaut/4005-1445/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1451/","id":1451,"name":"Falcon","site_detail_url":"https://comicvine.gamespot.com/falcon/4005-1451/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1945/","id":1945,"name":"Swarm","site_detail_url":"https://comicvine.gamespot.com/swarm/4005-1945/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2646/","id":2646,"name":"Nightmare","site_detail_url":"https://comicvine.gamespot.com/nightmare/4005-2646/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3171/","id":3171,"name":"Klaw","site_detail_url":"https://comicvine.gamespot.com/klaw/4005-3171/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3287/","id":3287,"name":"Wizard","site_detail_url":"https://comicvine.gamespot.com/wizard/4005-3287/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3457/","id":3457,"name":"Thunderbolt Ross","site_detail_url":"https://comicvine.gamespot.com/thunderbolt-ross/4005-3457/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3709/","id":3709,"name":"M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/modok/4005-3709/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4234/","id":4234,"name":"Rio Morales","site_detail_url":"https://comicvine.gamespot.com/rio-morales/4005-4234/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5065/","id":5065,"name":"Mesmero","site_detail_url":"https://comicvine.gamespot.com/mesmero/4005-5065/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6299/","id":6299,"name":"Boomerang","site_detail_url":"https://comicvine.gamespot.com/boomerang/4005-6299/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6803/","id":6803,"name":"Howard the Duck","site_detail_url":"https://comicvine.gamespot.com/howard-the-duck/4005-6803/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7235/","id":7235,"name":"Thundra","site_detail_url":"https://comicvine.gamespot.com/thundra/4005-7235/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11554/","id":11554,"name":"Molten Man","site_detail_url":"https://comicvine.gamespot.com/molten-man/4005-11554/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13313/","id":13313,"name":"Wendigo","site_detail_url":"https://comicvine.gamespot.com/wendigo/4005-13313/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15232/","id":15232,"name":"Shriek","site_detail_url":"https://comicvine.gamespot.com/shriek/4005-15232/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16197/","id":16197,"name":"Julia Carpenter","site_detail_url":"https://comicvine.gamespot.com/julia-carpenter/4005-16197/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24341/","id":24341,"name":"Groot","site_detail_url":"https://comicvine.gamespot.com/groot/4005-24341/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32814/","id":32814,"name":"Rocket Raccoon","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon/4005-32814/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61344/","id":61344,"name":"Shou-Lao the Undying","site_detail_url":"https://comicvine.gamespot.com/shou-lao-the-undying/4005-61344/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-159299/","id":159299,"name":"Spyder Knight","site_detail_url":"https://comicvine.gamespot.com/spyder-knight/4005-159299/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1779/","id":1779,"name":"Absorbing Man","site_detail_url":"https://comicvine.gamespot.com/absorbing-man/4005-1779/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1781/","id":1781,"name":"Jarvis","site_detail_url":"https://comicvine.gamespot.com/jarvis/4005-1781/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2106/","id":2106,"name":"Terrax","site_detail_url":"https://comicvine.gamespot.com/terrax/4005-2106/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2114/","id":2114,"name":"Thing","site_detail_url":"https://comicvine.gamespot.com/thing/4005-2114/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2149/","id":2149,"name":"Galactus","site_detail_url":"https://comicvine.gamespot.com/galactus/4005-2149/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2205/","id":2205,"name":"Dormammu","site_detail_url":"https://comicvine.gamespot.com/dormammu/4005-2205/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2213/","id":2213,"name":"Baron Mordo","site_detail_url":"https://comicvine.gamespot.com/baron-mordo/4005-2213/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3489/","id":3489,"name":"Abomination","site_detail_url":"https://comicvine.gamespot.com/abomination/4005-3489/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3534/","id":3534,"name":"Lockjaw","site_detail_url":"https://comicvine.gamespot.com/lockjaw/4005-3534/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4327/","id":4327,"name":"Medusa","site_detail_url":"https://comicvine.gamespot.com/medusa/4005-4327/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4329/","id":4329,"name":"Black Bolt","site_detail_url":"https://comicvine.gamespot.com/black-bolt/4005-4329/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4944/","id":4944,"name":"Awesome Android","site_detail_url":"https://comicvine.gamespot.com/awesome-android/4005-4944/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4984/","id":4984,"name":"Werewolf By Night","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night/4005-4984/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4988/","id":4988,"name":"Man-Thing","site_detail_url":"https://comicvine.gamespot.com/man-thing/4005-4988/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6806/","id":6806,"name":"Gamora","site_detail_url":"https://comicvine.gamespot.com/gamora/4005-6806/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6807/","id":6807,"name":"Drax the Destroyer","site_detail_url":"https://comicvine.gamespot.com/drax-the-destroyer/4005-6807/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6823/","id":6823,"name":"Dragon Man","site_detail_url":"https://comicvine.gamespot.com/dragon-man/4005-6823/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7570/","id":7570,"name":"Blade","site_detail_url":"https://comicvine.gamespot.com/blade/4005-7570/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7617/","id":7617,"name":"Leader","site_detail_url":"https://comicvine.gamespot.com/leader/4005-7617/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8667/","id":8667,"name":"Kaine","site_detail_url":"https://comicvine.gamespot.com/kaine/4005-8667/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10957/","id":10957,"name":"Star-Lord","site_detail_url":"https://comicvine.gamespot.com/star-lord/4005-10957/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10975/","id":10975,"name":"Karnak","site_detail_url":"https://comicvine.gamespot.com/karnak/4005-10975/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12323/","id":12323,"name":"Ulik","site_detail_url":"https://comicvine.gamespot.com/ulik/4005-12323/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13925/","id":13925,"name":"Morgan Le Fay","site_detail_url":"https://comicvine.gamespot.com/morgan-le-fay/4005-13925/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13939/","id":13939,"name":"Living Mummy","site_detail_url":"https://comicvine.gamespot.com/living-mummy/4005-13939/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14422/","id":14422,"name":"Whizzer (Frank)","site_detail_url":"https://comicvine.gamespot.com/whizzer-frank/4005-14422/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15517/","id":15517,"name":"Blood Spider","site_detail_url":"https://comicvine.gamespot.com/blood-spider/4005-15517/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15779/","id":15779,"name":"Attuma","site_detail_url":"https://comicvine.gamespot.com/attuma/4005-15779/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16075/","id":16075,"name":"Frankenstein","site_detail_url":"https://comicvine.gamespot.com/frankenstein/4005-16075/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35031/","id":35031,"name":"The Kraken","site_detail_url":"https://comicvine.gamespot.com/the-kraken/4005-35031/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42048/","id":42048,"name":"Tippy-Toe","site_detail_url":"https://comicvine.gamespot.com/tippy-toe/4005-42048/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65186/","id":65186,"name":"Dracula","site_detail_url":"https://comicvine.gamespot.com/dracula/4005-65186/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87738/","id":87738,"name":"Titus","site_detail_url":"https://comicvine.gamespot.com/titus/4005-87738/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1449/","id":1449,"name":"She-Hulk","site_detail_url":"https://comicvine.gamespot.com/she-hulk/4005-1449/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1466/","id":1466,"name":"Scarlet Witch","site_detail_url":"https://comicvine.gamespot.com/scarlet-witch/4005-1466/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1480/","id":1480,"name":"Gwen Stacy","site_detail_url":"https://comicvine.gamespot.com/gwen-stacy/4005-1480/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1493/","id":1493,"name":"Moon Knight","site_detail_url":"https://comicvine.gamespot.com/moon-knight/4005-1493/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2115/","id":2115,"name":"Crystal","site_detail_url":"https://comicvine.gamespot.com/crystal/4005-2115/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2248/","id":2248,"name":"Rick Jones","site_detail_url":"https://comicvine.gamespot.com/rick-jones/4005-2248/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2251/","id":2251,"name":"Piledriver","site_detail_url":"https://comicvine.gamespot.com/piledriver/4005-2251/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2252/","id":2252,"name":"Wrecker","site_detail_url":"https://comicvine.gamespot.com/wrecker/4005-2252/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2253/","id":2253,"name":"Thunderball","site_detail_url":"https://comicvine.gamespot.com/thunderball/4005-2253/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2254/","id":2254,"name":"Bulldozer","site_detail_url":"https://comicvine.gamespot.com/bulldozer/4005-2254/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2479/","id":2479,"name":"George Stacy","site_detail_url":"https://comicvine.gamespot.com/george-stacy/4005-2479/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2501/","id":2501,"name":"Captain Ultra","site_detail_url":"https://comicvine.gamespot.com/captain-ultra/4005-2501/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3316/","id":3316,"name":"Hellcat","site_detail_url":"https://comicvine.gamespot.com/hellcat/4005-3316/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3447/","id":3447,"name":"Maximus","site_detail_url":"https://comicvine.gamespot.com/maximus/4005-3447/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4330/","id":4330,"name":"Gorgon","site_detail_url":"https://comicvine.gamespot.com/gorgon/4005-4330/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4333/","id":4333,"name":"Mysterio","site_detail_url":"https://comicvine.gamespot.com/mysterio/4005-4333/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4456/","id":4456,"name":"John Jameson","site_detail_url":"https://comicvine.gamespot.com/john-jameson/4005-4456/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4563/","id":4563,"name":"Sabretooth","site_detail_url":"https://comicvine.gamespot.com/sabretooth/4005-4563/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6767/","id":6767,"name":"Montana","site_detail_url":"https://comicvine.gamespot.com/montana/4005-6767/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6817/","id":6817,"name":"Hammerhead","site_detail_url":"https://comicvine.gamespot.com/hammerhead/4005-6817/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6828/","id":6828,"name":"Whirlwind","site_detail_url":"https://comicvine.gamespot.com/whirlwind/4005-6828/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7239/","id":7239,"name":"Phantom Rider","site_detail_url":"https://comicvine.gamespot.com/phantom-rider/4005-7239/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7606/","id":7606,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4005-7606/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7940/","id":7940,"name":"Destroyer","site_detail_url":"https://comicvine.gamespot.com/destroyer/4005-7940/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8145/","id":8145,"name":"Fin Fang Foom","site_detail_url":"https://comicvine.gamespot.com/fin-fang-foom/4005-8145/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8429/","id":8429,"name":"Arcade","site_detail_url":"https://comicvine.gamespot.com/arcade/4005-8429/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8692/","id":8692,"name":"Iron Mouse","site_detail_url":"https://comicvine.gamespot.com/iron-mouse/4005-8692/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8693/","id":8693,"name":"Captain Americat","site_detail_url":"https://comicvine.gamespot.com/captain-americat/4005-8693/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9904/","id":9904,"name":"Living Laser","site_detail_url":"https://comicvine.gamespot.com/living-laser/4005-9904/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10267/","id":10267,"name":"Ymir","site_detail_url":"https://comicvine.gamespot.com/ymir/4005-10267/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10963/","id":10963,"name":"Blastaar","site_detail_url":"https://comicvine.gamespot.com/blastaar/4005-10963/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10964/","id":10964,"name":"Annihilus","site_detail_url":"https://comicvine.gamespot.com/annihilus/4005-10964/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12624/","id":12624,"name":"Kangaroo","site_detail_url":"https://comicvine.gamespot.com/kangaroo/4005-12624/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12726/","id":12726,"name":"Mad-Dog","site_detail_url":"https://comicvine.gamespot.com/mad-dog/4005-12726/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13498/","id":13498,"name":"Fancy Dan","site_detail_url":"https://comicvine.gamespot.com/fancy-dan/4005-13498/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14467/","id":14467,"name":"Korvac","site_detail_url":"https://comicvine.gamespot.com/korvac/4005-14467/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15279/","id":15279,"name":"The Burglar","site_detail_url":"https://comicvine.gamespot.com/the-burglar/4005-15279/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18429/","id":18429,"name":"Steel Spider","site_detail_url":"https://comicvine.gamespot.com/steel-spider/4005-18429/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20398/","id":20398,"name":"The Invisible Man","site_detail_url":"https://comicvine.gamespot.com/the-invisible-man/4005-20398/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27036/","id":27036,"name":"Dreamstalker","site_detail_url":"https://comicvine.gamespot.com/dreamstalker/4005-27036/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30596/","id":30596,"name":"Throg","site_detail_url":"https://comicvine.gamespot.com/throg/4005-30596/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33176/","id":33176,"name":"Hulkbunny","site_detail_url":"https://comicvine.gamespot.com/hulkbunny/4005-33176/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34207/","id":34207,"name":"White Tiger","site_detail_url":"https://comicvine.gamespot.com/white-tiger/4005-34207/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38747/","id":38747,"name":"Ox","site_detail_url":"https://comicvine.gamespot.com/ox/4005-38747/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39132/","id":39132,"name":"Merlin","site_detail_url":"https://comicvine.gamespot.com/merlin/4005-39132/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40470/","id":40470,"name":"Bucky Barnes","site_detail_url":"https://comicvine.gamespot.com/bucky-barnes/4005-40470/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42387/","id":42387,"name":"Khonshu","site_detail_url":"https://comicvine.gamespot.com/khonshu/4005-42387/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48518/","id":48518,"name":"Skaar","site_detail_url":"https://comicvine.gamespot.com/skaar/4005-48518/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49203/","id":49203,"name":"Cosmo","site_detail_url":"https://comicvine.gamespot.com/cosmo/4005-49203/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49969/","id":49969,"name":"Mister Negative","site_detail_url":"https://comicvine.gamespot.com/mister-negative/4005-49969/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53078/","id":53078,"name":"Aunt Ham","site_detail_url":"https://comicvine.gamespot.com/aunt-ham/4005-53078/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53621/","id":53621,"name":"Kraven","site_detail_url":"https://comicvine.gamespot.com/kraven/4005-53621/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85517/","id":85517,"name":"James Lucas","site_detail_url":"https://comicvine.gamespot.com/james-lucas/4005-85517/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86502/","id":86502,"name":"Jefferson Davis","site_detail_url":"https://comicvine.gamespot.com/jefferson-davis/4005-86502/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99748/","id":99748,"name":"Esther Lucas","site_detail_url":"https://comicvine.gamespot.com/esther-lucas/4005-99748/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105831/","id":105831,"name":"Jemma Simmons","site_detail_url":"https://comicvine.gamespot.com/jemma-simmons/4005-105831/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105832/","id":105832,"name":"Leo Fitz","site_detail_url":"https://comicvine.gamespot.com/leo-fitz/4005-105832/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124553/","id":124553,"name":"Norma Osborn","site_detail_url":"https://comicvine.gamespot.com/norma-osborn/4005-124553/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-124593/","id":124593,"name":"Jack O'Lantern","site_detail_url":"https://comicvine.gamespot.com/jack-olantern/4005-124593/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126760/","id":126760,"name":"J. Jonah Jackal","site_detail_url":"https://comicvine.gamespot.com/j-jonah-jackal/4005-126760/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150279/","id":150279,"name":"Spider-Punk","site_detail_url":"https://comicvine.gamespot.com/spider-punk/4005-150279/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-153690/","id":153690,"name":"Spider-Horse","site_detail_url":"https://comicvine.gamespot.com/spider-horse/4005-153690/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154762/","id":154762,"name":"Mac Porter","site_detail_url":"https://comicvine.gamespot.com/mac-porter/4005-154762/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-170174/","id":170174,"name":"Spider-Bot","site_detail_url":"https://comicvine.gamespot.com/spider-bot/4005-170174/","count":"1"}],"count_of_episodes":104,"date_added":"2013-09-24 13:35:03","date_last_updated":"2018-09-13 09:02:34","deck":null,"description":"

    Ultimate Spider-Man is an animated television series based on the superhero Spider-Man and is loosely based of the comic series.

    ","episodes":[{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1967/","id":1967,"name":"Great Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-101-great-power/4070-1967/","episode_number":"101"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1969/","id":1969,"name":"Great Responsibility","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-102-great-responsibility/4070-1969/","episode_number":"102"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2147/","id":2147,"name":"Doomed","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-103-doomed/4070-2147/","episode_number":"103"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2148/","id":2148,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-104-venom/4070-2148/","episode_number":"104"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2149/","id":2149,"name":"Flight of the Iron-Spider","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-105-flight-of-the-iron-spider/4070-2149/","episode_number":"105"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2166/","id":2166,"name":"Game Over","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-220-game-over/4070-2166/","episode_number":"220"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2861/","id":2861,"name":"Ultimate Deadpool","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-215-ultimate-deadpool/4070-2861/","episode_number":"215"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3403/","id":3403,"name":"Why I Hate Gym","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-106-why-i-hate-gym/4070-3403/","episode_number":"106"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3404/","id":3404,"name":"Exclusive","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-107-exclusive/4070-3404/","episode_number":"107"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3405/","id":3405,"name":"Back in Black","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-108-back-in-black/4070-3405/","episode_number":"108"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3406/","id":3406,"name":"Field Trip","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-109-field-trip/4070-3406/","episode_number":"109"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3407/","id":3407,"name":"Freaky","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-110-freaky/4070-3407/","episode_number":"110"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3408/","id":3408,"name":"Venomous","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-111-venomous/4070-3408/","episode_number":"111"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3409/","id":3409,"name":"Me Time","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-112-me-time/4070-3409/","episode_number":"112"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3417/","id":3417,"name":"Strange","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-113-strange/4070-3417/","episode_number":"113"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3418/","id":3418,"name":"Awesome","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-114-awesome/4070-3418/","episode_number":"114"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3419/","id":3419,"name":"For Your Eye Only","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-115-for-your-eye-only/4070-3419/","episode_number":"115"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3420/","id":3420,"name":"Beetle Mania","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-116-beetle-mania/4070-3420/","episode_number":"116"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3421/","id":3421,"name":"Snow Day","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-117-snow-day/4070-3421/","episode_number":"117"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3422/","id":3422,"name":"Damage","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-118-damage/4070-3422/","episode_number":"118"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3423/","id":3423,"name":"Home Sick Hulk","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-119-home-sick-hulk/4070-3423/","episode_number":"119"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3424/","id":3424,"name":"Run Pig Run","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-120-run-pig-run/4070-3424/","episode_number":"120"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3425/","id":3425,"name":"I Am Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-121-i-am-spider-man/4070-3425/","episode_number":"121"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3426/","id":3426,"name":"The Iron Octopus","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-122-the-iron-octopus/4070-3426/","episode_number":"122"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3427/","id":3427,"name":"Not A Toy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-123-not-a-toy/4070-3427/","episode_number":"123"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3429/","id":3429,"name":"The Attack of the Beetle","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-124-the-attack-of-the-beetle/4070-3429/","episode_number":"124"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3430/","id":3430,"name":"Revealed","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-125-revealed/4070-3430/","episode_number":"125"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3431/","id":3431,"name":"The Rise of the Goblin","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-126-the-rise-of-the-goblin/4070-3431/","episode_number":"126"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3432/","id":3432,"name":"The Lizard","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-201-the-lizard/4070-3432/","episode_number":"201"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3434/","id":3434,"name":"Electro","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-202-electro/4070-3434/","episode_number":"202"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3435/","id":3435,"name":"The Rhino","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-203-the-rhino/4070-3435/","episode_number":"203"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3437/","id":3437,"name":"Kraven the Hunter","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-204-kraven-the-hunter/4070-3437/","episode_number":"204"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3438/","id":3438,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-205-hawkeye/4070-3438/","episode_number":"205"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3440/","id":3440,"name":"The Sinister Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-206-the-sinister-six/4070-3440/","episode_number":"206"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3442/","id":3442,"name":"Spidah-Man!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-207-spidah-man/4070-3442/","episode_number":"207"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3443/","id":3443,"name":"Carnage","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-208-carnage/4070-3443/","episode_number":"208"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3444/","id":3444,"name":"House Arrest","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-209-house-arrest/4070-3444/","episode_number":"209"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3445/","id":3445,"name":"The Man-Wolf","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-210-the-man-wolf/4070-3445/","episode_number":"210"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3446/","id":3446,"name":"Swarm","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-211-swarm/4070-3446/","episode_number":"211"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3447/","id":3447,"name":"Itsy Bitsy Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-212-itsy-bitsy-spider-man/4070-3447/","episode_number":"212"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3448/","id":3448,"name":"Journey of the Iron Fist","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-213-journey-of-the-iron-fist/4070-3448/","episode_number":"213"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3460/","id":3460,"name":"The Incredible Spider-Hulk","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-214-the-incredible-spider-hulk/4070-3460/","episode_number":"214"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3461/","id":3461,"name":"Venom Bomb","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-216-venom-bomb/4070-3461/","episode_number":"216"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3462/","id":3462,"name":"Guardians of the Galaxy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-217-guardians-of-the-galaxy/4070-3462/","episode_number":"217"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3463/","id":3463,"name":"The Parent Trap","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-218-the-parent-trap/4070-3463/","episode_number":"218"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3464/","id":3464,"name":"Stan By Me","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-219-stan-by-me/4070-3464/","episode_number":"219"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3465/","id":3465,"name":"Blade and the Howling Commandos Pt. 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-221-blade-and-the-howling-comm/4070-3465/","episode_number":"221"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5028/","id":5028,"name":"Second Chance Hero","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-223-second-chance-hero/4070-5028/","episode_number":"223"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5029/","id":5029,"name":"Sandman Returns","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-224-sandman-returns/4070-5029/","episode_number":"224"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5030/","id":5030,"name":"Return of the Sinister Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-225-return-of-the-sinister-six/4070-5030/","episode_number":"225"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5031/","id":5031,"name":"Ultimate","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-226-ultimate/4070-5031/","episode_number":"226"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-8648/","id":8648,"name":"Blade and the Howling Commandos Pt. 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-222-blade-and-the-howling-comm/4070-8648/","episode_number":"222"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-13318/","id":13318,"name":"The Return of the Guardians of the Galaxy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-313-the-return-of-the-guardian/4070-13318/","episode_number":"313"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-14973/","id":14973,"name":"The Spider-Verse: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-309-the-spider-verse-part-1/4070-14973/","episode_number":"309"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-14974/","id":14974,"name":"The Spider-Verse: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-310-the-spider-verse-part-2/4070-14974/","episode_number":"310"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-14975/","id":14975,"name":"The Spider-Verse: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-311-the-spider-verse-part-3/4070-14975/","episode_number":"311"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-14976/","id":14976,"name":"The Spider-Verse: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-312-the-spider-verse-part-4/4070-14976/","episode_number":"312"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19385/","id":19385,"name":"The Avenging Spider-Man, Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-301-the-avenging-spider-man-pa/4070-19385/","episode_number":"301"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19386/","id":19386,"name":"The Avenging Spider-Man, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-302-the-avenging-spider-man-pa/4070-19386/","episode_number":"302"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19387/","id":19387,"name":"Agent Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-303-agent-venom/4070-19387/","episode_number":"303"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19388/","id":19388,"name":"Cloak and Dagger","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-304-cloak-and-dagger/4070-19388/","episode_number":"304"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19389/","id":19389,"name":"The Next Iron Spider","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-305-the-next-iron-spider/4070-19389/","episode_number":"305"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19390/","id":19390,"name":"The Vulture","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-306-the-vulture/4070-19390/","episode_number":"306"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19391/","id":19391,"name":"The Savage Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-307-the-savage-spider-man/4070-19391/","episode_number":"307"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19392/","id":19392,"name":"New Warriors","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-308-new-warriors/4070-19392/","episode_number":"308"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19393/","id":19393,"name":"S.H.I.E.L.D Academy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-314-shield-academy/4070-19393/","episode_number":"314"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19394/","id":19394,"name":"Rampaging Rhino","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-315-rampaging-rhino/4070-19394/","episode_number":"315"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19395/","id":19395,"name":"Ant-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-316-ant-man/4070-19395/","episode_number":"316"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19396/","id":19396,"name":"Burrito Run","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-317-burrito-run/4070-19396/","episode_number":"317"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19397/","id":19397,"name":"Inhumanity","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-318-inhumanity/4070-19397/","episode_number":"318"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19398/","id":19398,"name":"Attack of the Synthezoids","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-319-attack-of-the-synthezoids/4070-19398/","episode_number":"319"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20532/","id":20532,"name":"The Revenge of Arnim Zola","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-320-the-revenge-of-arnim-zola/4070-20532/","episode_number":"320"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20548/","id":20548,"name":"Halloween Night at the Museum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-321-halloween-night-at-the-mus/4070-20548/","episode_number":"321"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20549/","id":20549,"name":"Nightmare on Christmas","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-322-nightmare-on-christmas/4070-20549/","episode_number":"322"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20550/","id":20550,"name":"Contest of Champions, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-323-contest-of-champions-part-/4070-20550/","episode_number":"323"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20551/","id":20551,"name":"Contest of Champions, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-324-contest-of-champions-part-/4070-20551/","episode_number":"324"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20553/","id":20553,"name":"Contest of Champions, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-325-contest-of-champions-part-/4070-20553/","episode_number":"325"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20554/","id":20554,"name":"Contest of Champions, Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-326-contest-of-champions-part-/4070-20554/","episode_number":"326"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20679/","id":20679,"name":"Agent Web","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-412-agent-web/4070-20679/","episode_number":"412"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25009/","id":25009,"name":"Lizards","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-405-lizards/4070-25009/","episode_number":"405"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25068/","id":25068,"name":"Hydra Attacks: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-401-hydra-attacks-part-1/4070-25068/","episode_number":"401"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25069/","id":25069,"name":"Hydra Attacks: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-402-hydra-attacks-part-2/4070-25069/","episode_number":"402"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25070/","id":25070,"name":"Miles from Home","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-403-miles-from-home/4070-25070/","episode_number":"403"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25071/","id":25071,"name":"Iron Vulture","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-404-iron-vulture/4070-25071/","episode_number":"404"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25072/","id":25072,"name":"Double Agent Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-406-double-agent-venom/4070-25072/","episode_number":"406"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25073/","id":25073,"name":"Beached","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-407-beached/4070-25073/","episode_number":"407"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25074/","id":25074,"name":"Anti-Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-408-anti-venom/4070-25074/","episode_number":"408"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25075/","id":25075,"name":"Force of Nature","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-409-force-of-nature/4070-25075/","episode_number":"409"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25076/","id":25076,"name":"The New Sinister 6: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-410-the-new-sinister-6-part-1/4070-25076/","episode_number":"410"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25077/","id":25077,"name":"The New Sinister 6: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-411-the-new-sinister-6-part-2/4070-25077/","episode_number":"411"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25078/","id":25078,"name":"The Symbiote Saga: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-413-the-symbiote-saga-part-1/4070-25078/","episode_number":"413"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25079/","id":25079,"name":"The Symbiote Saga: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-414-the-symbiote-saga-part-2/4070-25079/","episode_number":"414"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25080/","id":25080,"name":"The Symbiote Saga: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-415-the-symbiote-saga-part-3/4070-25080/","episode_number":"415"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25081/","id":25081,"name":"Return to the Spider-Verse: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-416-return-to-the-spider-verse/4070-25081/","episode_number":"416"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25082/","id":25082,"name":"Return to the Spider-Verse: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-417-return-to-the-spider-verse/4070-25082/","episode_number":"417"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25083/","id":25083,"name":"Return to the Spider-Verse: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-418-return-to-the-spider-verse/4070-25083/","episode_number":"418"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25084/","id":25084,"name":"Return to the Spider-Verse: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-419-return-to-the-spider-verse/4070-25084/","episode_number":"419"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25085/","id":25085,"name":"Strange Little Halloween","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-420-strange-little-halloween/4070-25085/","episode_number":"420"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25086/","id":25086,"name":"The Spider Slayers: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-421-the-spider-slayers-part-1/4070-25086/","episode_number":"421"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25087/","id":25087,"name":"The Spider Slayers: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-422-the-spider-slayers-part-2/4070-25087/","episode_number":"422"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25088/","id":25088,"name":"The Spider Slayers: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-423-the-spider-slayers-part-3/4070-25088/","episode_number":"423"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25089/","id":25089,"name":"The Moon Knight Before Christmas","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-424-the-moon-knight-before-chr/4070-25089/","episode_number":"424"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25090/","id":25090,"name":"Graduation Day: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-425-graduation-day-part-1/4070-25090/","episode_number":"425"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25091/","id":25091,"name":"Graduation Day: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-426-graduation-day-part-2/4070-25091/","episode_number":"426"}],"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1967/","id":1967,"name":"Great Power","episode_number":"101"},"id":13,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6608400-default.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6608400-default.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6608400-default.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6608400-default.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6608400-default.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6608400-default.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6608400-default.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6608400-default.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6608400-default.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25090/","id":25090,"name":"Graduation Day: Part 1","episode_number":"425"},"name":"Ultimate Spider-Man","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman/4075-13/","start_year":"2012-2017"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/series-details/series-4075-28.json b/samples/api-data/series-details/series-4075-28.json new file mode 100644 index 0000000..ed46864 --- /dev/null +++ b/samples/api-data/series-details/series-4075-28.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Code Geass: Hangyaku no Rurūshu","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-28/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50976/","id":50976,"name":"Lelouch vi Britannia","site_detail_url":"https://comicvine.gamespot.com/lelouch-vi-britannia/4005-50976/","count":"50"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50977/","id":50977,"name":"Suzaku Kururugi","site_detail_url":"https://comicvine.gamespot.com/suzaku-kururugi/4005-50977/","count":"42"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50980/","id":50980,"name":"Kallen Kozuki","site_detail_url":"https://comicvine.gamespot.com/kallen-kozuki/4005-50980/","count":"37"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50978/","id":50978,"name":"C.C.","site_detail_url":"https://comicvine.gamespot.com/cc/4005-50978/","count":"33"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51044/","id":51044,"name":"Lloyd Asplund","site_detail_url":"https://comicvine.gamespot.com/lloyd-asplund/4005-51044/","count":"15"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51043/","id":51043,"name":"Jeremiah Gottwald","site_detail_url":"https://comicvine.gamespot.com/jeremiah-gottwald/4005-51043/","count":"14"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88046/","id":88046,"name":"Rolo","site_detail_url":"https://comicvine.gamespot.com/rolo/4005-88046/","count":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51036/","id":51036,"name":"Nunnally vi Britannia","site_detail_url":"https://comicvine.gamespot.com/nunnally-vi-britannia/4005-51036/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51041/","id":51041,"name":"Euphemia li Brittania","site_detail_url":"https://comicvine.gamespot.com/euphemia-li-brittania/4005-51041/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51042/","id":51042,"name":"Schneizel el Britannia","site_detail_url":"https://comicvine.gamespot.com/schneizel-el-britannia/4005-51042/","count":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73766/","id":73766,"name":"Charles zi Britannia","site_detail_url":"https://comicvine.gamespot.com/charles-zi-britannia/4005-73766/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88071/","id":88071,"name":"V.V.","site_detail_url":"https://comicvine.gamespot.com/vv/4005-88071/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73767/","id":73767,"name":"Lady Marianne","site_detail_url":"https://comicvine.gamespot.com/lady-marianne/4005-73767/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98925/","id":98925,"name":"Mao","site_detail_url":"https://comicvine.gamespot.com/mao/4005-98925/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51123/","id":51123,"name":"Clovis la Britannia","site_detail_url":"https://comicvine.gamespot.com/clovis-la-britannia/4005-51123/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51040/","id":51040,"name":"Cornelia li Britannia","site_detail_url":"https://comicvine.gamespot.com/cornelia-li-britannia/4005-51040/","count":"1"}],"count_of_episodes":50,"date_added":"2013-09-24 16:42:17","date_last_updated":"2013-09-25 14:28:50","deck":"Code Geass is an anime that was released at the same time as the manga in 2006 and ended in 2008.","description":"

    Code Geass: Lelouch of the Rebellion (コードギアス 反逆のルルーシュ, Kōdo Giasu: Hangyaku no Rurūshu)

    ","episodes":[{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-176/","id":176,"name":"The Day a New Demon was Born","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-101-the-day-a-/4070-176/","episode_number":"101"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-538/","id":538,"name":"The White Knight Awakens","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-102-the-white-/4070-538/","episode_number":"102"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-540/","id":540,"name":"The False Classmate","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-103-the-false-/4070-540/","episode_number":"103"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-543/","id":543,"name":"His Name is Zero","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-104-his-name-i/4070-543/","episode_number":"104"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1299/","id":1299,"name":"The Princess and the Witch","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-105-the-prince/4070-1299/","episode_number":"105"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1300/","id":1300,"name":"The Stolen Mask","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-106-the-stolen/4070-1300/","episode_number":"106"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1301/","id":1301,"name":"Attack Cornelia","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-107-attack-cor/4070-1301/","episode_number":"107"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1302/","id":1302,"name":"The Black Knights","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-108-the-black-/4070-1302/","episode_number":"108"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1303/","id":1303,"name":"Refrain","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-109-refrain/4070-1303/","episode_number":"109"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1304/","id":1304,"name":"Guren Dances","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-110-guren-danc/4070-1304/","episode_number":"110"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1305/","id":1305,"name":"Battle for Narita","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-111-battle-for/4070-1305/","episode_number":"111"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1306/","id":1306,"name":"The Messenger from Kyoto","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-112-the-messen/4070-1306/","episode_number":"112"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1307/","id":1307,"name":"Shirley at Gunpoint","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-113-shirley-at/4070-1307/","episode_number":"113"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1308/","id":1308,"name":"Geass vs. Geass","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-114-geass-vs-g/4070-1308/","episode_number":"114"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1309/","id":1309,"name":"Cheering Mao","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-115-cheering-m/4070-1309/","episode_number":"115"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1310/","id":1310,"name":"Nunnally Held Hostage","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-116-nunnally-h/4070-1310/","episode_number":"116"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1311/","id":1311,"name":"Knight","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-117-knight/4070-1311/","episode_number":"117"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1312/","id":1312,"name":"I Order you, Suzaku Kururugi","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-118-i-order-yo/4070-1312/","episode_number":"118"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1313/","id":1313,"name":"Island of the Gods","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-119-island-of-/4070-1313/","episode_number":"119"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1411/","id":1411,"name":"Battle at Kyushu","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-120-battle-at-/4070-1411/","episode_number":"120"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1416/","id":1416,"name":"The School Festival Declaration","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-121-the-school/4070-1416/","episode_number":"121"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1418/","id":1418,"name":"Bloodstaine Euphy","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-122-bloodstain/4070-1418/","episode_number":"122"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1421/","id":1421,"name":"At Least with Sorrow","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-123-at-least-w/4070-1421/","episode_number":"123"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1424/","id":1424,"name":"The Collapsing Stage","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-124-the-collap/4070-1424/","episode_number":"124"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1425/","id":1425,"name":"Zero","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-125-zero/4070-1425/","episode_number":"125"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1427/","id":1427,"name":"The Day a Demon Awakens","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-201-the-day-a-/4070-1427/","episode_number":"201"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1429/","id":1429,"name":"Plan for Independent Japan","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-202-plan-for-i/4070-1429/","episode_number":"202"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1431/","id":1431,"name":"Imprisoned in Campus","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-203-imprisoned/4070-1431/","episode_number":"203"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1433/","id":1433,"name":"Counterattack at the Gallows","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-204-counteratt/4070-1433/","episode_number":"204"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1435/","id":1435,"name":"Knights of the Round","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-205-knights-of/4070-1435/","episode_number":"205"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1436/","id":1436,"name":"Surprise Attack over the Pacific","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-206-surprise-a/4070-1436/","episode_number":"206"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1437/","id":1437,"name":"The Abandoned Mask","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-207-the-abando/4070-1437/","episode_number":"207"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1438/","id":1438,"name":"One Million Miracles","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-208-one-millio/4070-1438/","episode_number":"208"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1439/","id":1439,"name":"A Bride in the Vermillion Forbidden City","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-209-a-bride-in/4070-1439/","episode_number":"209"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1440/","id":1440,"name":"When Shen Hu Wins Glory","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-210-when-shen-/4070-1440/","episode_number":"210"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1441/","id":1441,"name":"Power of Passion","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-211-power-of-p/4070-1441/","episode_number":"211"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1447/","id":1447,"name":"Love Attack!","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-212-love-attac/4070-1447/","episode_number":"212"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1455/","id":1455,"name":"Assassin from the Past","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-213-assassin-f/4070-1455/","episode_number":"213"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1457/","id":1457,"name":"Geass Hunt","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-214-geass-hunt/4070-1457/","episode_number":"214"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1461/","id":1461,"name":"The C's World","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-215-the-c-s-wo/4070-1461/","episode_number":"215"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1469/","id":1469,"name":"United Federation of Nations Resolution Number One","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-216-united-fed/4070-1469/","episode_number":"216"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1474/","id":1474,"name":"The Taste of Humiliation","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-217-the-taste-/4070-1474/","episode_number":"217"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1481/","id":1481,"name":"Final Battle Tokyo II","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-218-final-batt/4070-1481/","episode_number":"218"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1484/","id":1484,"name":"Betrayal","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-219-betrayal/4070-1484/","episode_number":"219"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1486/","id":1486,"name":"Emperor Dismissed","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-220-emperor-di/4070-1486/","episode_number":"220"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1489/","id":1489,"name":"The Ragnarok Connection","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-221-the-ragnar/4070-1489/","episode_number":"221"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1492/","id":1492,"name":"Emperor Lelouch","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-222-emperor-le/4070-1492/","episode_number":"222"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1494/","id":1494,"name":"The Schneizel's Guise","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-223-the-schnei/4070-1494/","episode_number":"223"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1496/","id":1496,"name":"The Grip of Damocles","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-224-the-grip-o/4070-1496/","episode_number":"224"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1499/","id":1499,"name":"Re;","site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion-225-re/4070-1499/","episode_number":"225"}],"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1299/","id":1299,"name":"The Princess and the Witch","episode_number":"105"},"id":28,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/41224/3332575-code%20geass%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/41224/3332575-code%20geass%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/41224/3332575-code%20geass%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/41224/3332575-code%20geass%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/41224/3332575-code%20geass%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/41224/3332575-code%20geass%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/41224/3332575-code%20geass%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/41224/3332575-code%20geass%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/41224/3332575-code%20geass%20logo.jpg","image_tags":"All Images,Wiki"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-176/","id":176,"name":"The Day a New Demon was Born","episode_number":"101"},"name":"Code Geass: Lelouch of the Rebellion","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion/4075-28/","start_year":"2006-2008"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/series-details/series-4075-35.json b/samples/api-data/series-details/series-4075-35.json new file mode 100644 index 0000000..0e7f233 --- /dev/null +++ b/samples/api-data/series-details/series-4075-35.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-35/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40485/","id":40485,"name":"The Tick","site_detail_url":"https://comicvine.gamespot.com/the-tick/4005-40485/","count":"36"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42115/","id":42115,"name":"Arthur","site_detail_url":"https://comicvine.gamespot.com/arthur/4005-42115/","count":"36"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175209/","id":175209,"name":"Die Fledermaus","site_detail_url":"https://comicvine.gamespot.com/die-fledermaus/4005-175209/","count":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175229/","id":175229,"name":"American Maid","site_detail_url":"https://comicvine.gamespot.com/american-maid/4005-175229/","count":"14"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49148/","id":49148,"name":"Chairface Chippendale","site_detail_url":"https://comicvine.gamespot.com/chairface-chippendale/4005-49148/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49240/","id":49240,"name":"Four-Legged Man","site_detail_url":"https://comicvine.gamespot.com/four-legged-man/4005-49240/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49352/","id":49352,"name":"Sally Vacuum","site_detail_url":"https://comicvine.gamespot.com/sally-vacuum/4005-49352/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49189/","id":49189,"name":"Feral Boy","site_detail_url":"https://comicvine.gamespot.com/feral-boy/4005-49189/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49149/","id":49149,"name":"Professor Chromedome","site_detail_url":"https://comicvine.gamespot.com/professor-chromedome/4005-49149/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49341/","id":49341,"name":"Dot","site_detail_url":"https://comicvine.gamespot.com/dot/4005-49341/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49178/","id":49178,"name":"The Terror","site_detail_url":"https://comicvine.gamespot.com/the-terror/4005-49178/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49206/","id":49206,"name":"Big Shot","site_detail_url":"https://comicvine.gamespot.com/big-shot/4005-49206/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67762/","id":67762,"name":"The Evil Midnight Bomber What Bombs at Midnight","site_detail_url":"https://comicvine.gamespot.com/the-evil-midnight-bomber-what-bombs-at-midnight/4005-67762/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49154/","id":49154,"name":"Pineapple Pokopo","site_detail_url":"https://comicvine.gamespot.com/pineapple-pokopo/4005-49154/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49182/","id":49182,"name":"Mighty Agrippa","site_detail_url":"https://comicvine.gamespot.com/mighty-agrippa/4005-49182/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49366/","id":49366,"name":"Fishboy","site_detail_url":"https://comicvine.gamespot.com/fishboy/4005-49366/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10691/","id":10691,"name":"Leonardo Da Vinci","site_detail_url":"https://comicvine.gamespot.com/leonardo-da-vinci/4005-10691/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10692/","id":10692,"name":"Mona Lisa","site_detail_url":"https://comicvine.gamespot.com/mona-lisa/4005-10692/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20002/","id":20002,"name":"Thomas Alva Edison","site_detail_url":"https://comicvine.gamespot.com/thomas-alva-edison/4005-20002/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20197/","id":20197,"name":"George Washington Carver","site_detail_url":"https://comicvine.gamespot.com/george-washington-carver/4005-20197/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22143/","id":22143,"name":"Santa Claus","site_detail_url":"https://comicvine.gamespot.com/santa-claus/4005-22143/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38634/","id":38634,"name":"Benjamin Franklin","site_detail_url":"https://comicvine.gamespot.com/benjamin-franklin/4005-38634/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41614/","id":41614,"name":"Man-Eating Cow","site_detail_url":"https://comicvine.gamespot.com/man-eating-cow/4005-41614/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41875/","id":41875,"name":"Caped Wonder","site_detail_url":"https://comicvine.gamespot.com/caped-wonder/4005-41875/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49152/","id":49152,"name":"Zipperneck","site_detail_url":"https://comicvine.gamespot.com/zipperneck/4005-49152/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49166/","id":49166,"name":"Thrakkorzog","site_detail_url":"https://comicvine.gamespot.com/thrakkorzog/4005-49166/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49181/","id":49181,"name":"Tuun-La","site_detail_url":"https://comicvine.gamespot.com/tuun-la/4005-49181/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49196/","id":49196,"name":"Barry Hubris","site_detail_url":"https://comicvine.gamespot.com/barry-hubris/4005-49196/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49198/","id":49198,"name":"Multiple Santa","site_detail_url":"https://comicvine.gamespot.com/multiple-santa/4005-49198/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49243/","id":49243,"name":"The Forehead","site_detail_url":"https://comicvine.gamespot.com/the-forehead/4005-49243/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49249/","id":49249,"name":"Boils Brown","site_detail_url":"https://comicvine.gamespot.com/boils-brown/4005-49249/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49251/","id":49251,"name":"Harriet Curse","site_detail_url":"https://comicvine.gamespot.com/harriet-curse/4005-49251/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49348/","id":49348,"name":"El Flamingo","site_detail_url":"https://comicvine.gamespot.com/el-flamingo/4005-49348/","count":"1"}],"count_of_episodes":36,"date_added":"2013-09-24 19:44:25","date_last_updated":"2014-04-06 08:26:44","deck":null,"description":"

    A cartoon that aired on Fox Kids based on the comic book.

    ","episodes":[{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-250/","id":250,"name":"The Tick vs. The Idea Men","site_detail_url":"https://comicvine.gamespot.com/the-tick-101-the-tick-vs-the-idea-men/4070-250/","episode_number":"101"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-471/","id":471,"name":"The Tick vs. Chairface Chippendale","site_detail_url":"https://comicvine.gamespot.com/the-tick-102-the-tick-vs-chairface-chippendale/4070-471/","episode_number":"102"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-472/","id":472,"name":"The Tick vs. Dinosaur Neil","site_detail_url":"https://comicvine.gamespot.com/the-tick-103-the-tick-vs-dinosaur-neil/4070-472/","episode_number":"103"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-473/","id":473,"name":"The Tick vs. Mr. Mental","site_detail_url":"https://comicvine.gamespot.com/the-tick-104-the-tick-vs-mr-mental/4070-473/","episode_number":"104"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-474/","id":474,"name":"The Tick vs. The Breadmaster","site_detail_url":"https://comicvine.gamespot.com/the-tick-105-the-tick-vs-the-breadmaster/4070-474/","episode_number":"105"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-475/","id":475,"name":"The Tick vs. El Seed","site_detail_url":"https://comicvine.gamespot.com/the-tick-106-the-tick-vs-el-seed/4070-475/","episode_number":"106"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-476/","id":476,"name":"The Tick vs. The Tick","site_detail_url":"https://comicvine.gamespot.com/the-tick-107-the-tick-vs-the-tick/4070-476/","episode_number":"107"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-477/","id":477,"name":"The Tick vs. The Uncommon Cold","site_detail_url":"https://comicvine.gamespot.com/the-tick-108-the-tick-vs-the-uncommon-cold/4070-477/","episode_number":"108"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-478/","id":478,"name":"The Tick vs. Brainchild","site_detail_url":"https://comicvine.gamespot.com/the-tick-109-the-tick-vs-brainchild/4070-478/","episode_number":"109"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-479/","id":479,"name":"The Tick vs. Pineapple Pokopo","site_detail_url":"https://comicvine.gamespot.com/the-tick-110-the-tick-vs-pineapple-pokopo/4070-479/","episode_number":"110"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-480/","id":480,"name":"The Tick vs. The Mole-Men","site_detail_url":"https://comicvine.gamespot.com/the-tick-111-the-tick-vs-the-mole-men/4070-480/","episode_number":"111"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-481/","id":481,"name":"The Tick vs. The Proto-Clown","site_detail_url":"https://comicvine.gamespot.com/the-tick-112-the-tick-vs-the-proto-clown/4070-481/","episode_number":"112"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-482/","id":482,"name":"The Tick vs. Arthur's Bank Account","site_detail_url":"https://comicvine.gamespot.com/the-tick-113-the-tick-vs-arthur-s-bank-account/4070-482/","episode_number":"113"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-483/","id":483,"name":"The Little Wooden Boy and the Belly of Love","site_detail_url":"https://comicvine.gamespot.com/the-tick-201-the-little-wooden-boy-and-the-belly-o/4070-483/","episode_number":"201"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-484/","id":484,"name":"Alone Together","site_detail_url":"https://comicvine.gamespot.com/the-tick-202-alone-together/4070-484/","episode_number":"202"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-485/","id":485,"name":"Armless But Not Harmless","site_detail_url":"https://comicvine.gamespot.com/the-tick-203-armless-but-not-harmless/4070-485/","episode_number":"203"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-486/","id":486,"name":"Leonardo da Vinci and His Fightin' Genius Time Commandos!","site_detail_url":"https://comicvine.gamespot.com/the-tick-204-leonardo-da-vinci-and-his-fightin-gen/4070-486/","episode_number":"204"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-487/","id":487,"name":"Coach Fussell's Lament","site_detail_url":"https://comicvine.gamespot.com/the-tick-205-coach-fussell-s-lament/4070-487/","episode_number":"205"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-488/","id":488,"name":"Bloomsday","site_detail_url":"https://comicvine.gamespot.com/the-tick-206-bloomsday/4070-488/","episode_number":"206"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-489/","id":489,"name":"Evil Sits Down for a Moment","site_detail_url":"https://comicvine.gamespot.com/the-tick-207-evil-sits-down-for-a-moment/4070-489/","episode_number":"207"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-490/","id":490,"name":"Heroes","site_detail_url":"https://comicvine.gamespot.com/the-tick-208-heroes/4070-490/","episode_number":"208"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-492/","id":492,"name":"Ants in Pants!","site_detail_url":"https://comicvine.gamespot.com/the-tick-209-ants-in-pants/4070-492/","episode_number":"209"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-493/","id":493,"name":"The Tick Loves Santa!","site_detail_url":"https://comicvine.gamespot.com/the-tick-210-the-tick-loves-santa/4070-493/","episode_number":"210"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-494/","id":494,"name":"The Tick vs. The Big Nothing","site_detail_url":"https://comicvine.gamespot.com/the-tick-211-the-tick-vs-the-big-nothing/4070-494/","episode_number":"211"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-495/","id":495,"name":"The Tick vs. Reno, Nevada","site_detail_url":"https://comicvine.gamespot.com/the-tick-212-the-tick-vs-reno-nevada/4070-495/","episode_number":"212"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-496/","id":496,"name":"Grandpa Wore Tights","site_detail_url":"https://comicvine.gamespot.com/the-tick-213-grandpa-wore-tights/4070-496/","episode_number":"213"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-497/","id":497,"name":"That Mustache Feeling","site_detail_url":"https://comicvine.gamespot.com/the-tick-301-that-mustache-feeling/4070-497/","episode_number":"301"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-499/","id":499,"name":"The Tick vs. Dot and Neil's Wedding","site_detail_url":"https://comicvine.gamespot.com/the-tick-302-the-tick-vs-dot-and-neil-s-wedding/4070-499/","episode_number":"302"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-501/","id":501,"name":"Sidekicks Don't Kiss","site_detail_url":"https://comicvine.gamespot.com/the-tick-303-sidekicks-don-t-kiss/4070-501/","episode_number":"303"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-502/","id":502,"name":"The Tick vs. Arthur","site_detail_url":"https://comicvine.gamespot.com/the-tick-304-the-tick-vs-arthur/4070-502/","episode_number":"304"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-504/","id":504,"name":"The Tick vs. Filth","site_detail_url":"https://comicvine.gamespot.com/the-tick-306-the-tick-vs-filth/4070-504/","episode_number":"306"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-505/","id":505,"name":"Devil in Diapers","site_detail_url":"https://comicvine.gamespot.com/the-tick-305-devil-in-diapers/4070-505/","episode_number":"305"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-506/","id":506,"name":"Tick vs. Europe","site_detail_url":"https://comicvine.gamespot.com/the-tick-307-tick-vs-europe/4070-506/","episode_number":"307"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-507/","id":507,"name":"Tick vs. Science","site_detail_url":"https://comicvine.gamespot.com/the-tick-308-tick-vs-science/4070-507/","episode_number":"308"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-509/","id":509,"name":"Tick vs. Prehistory","site_detail_url":"https://comicvine.gamespot.com/the-tick-309-tick-vs-prehistory/4070-509/","episode_number":"309"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-510/","id":510,"name":"Tick vs. Education","site_detail_url":"https://comicvine.gamespot.com/the-tick-310-tick-vs-education/4070-510/","episode_number":"310"}],"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-250/","id":250,"name":"The Tick vs. The Idea Men","episode_number":"101"},"id":35,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/83918/3332917-the%20tick%20title.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/83918/3332917-the%20tick%20title.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/83918/3332917-the%20tick%20title.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/83918/3332917-the%20tick%20title.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/83918/3332917-the%20tick%20title.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/83918/3332917-the%20tick%20title.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/83918/3332917-the%20tick%20title.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/83918/3332917-the%20tick%20title.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/83918/3332917-the%20tick%20title.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-510/","id":510,"name":"Tick vs. Education","episode_number":"310"},"name":"The Tick","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1121/","id":1121,"name":"New England Comics"},"site_detail_url":"https://comicvine.gamespot.com/the-tick/4075-35/","start_year":"1994"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/series-details/series-4075-38.json b/samples/api-data/series-details/series-4075-38.json new file mode 100644 index 0000000..538d721 --- /dev/null +++ b/samples/api-data/series-details/series-4075-38.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-38/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1699/","id":1699,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4005-1699/","count":"65"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5556/","id":5556,"name":"Alfred Pennyworth","site_detail_url":"https://comicvine.gamespot.com/alfred-pennyworth/4005-5556/","count":"48"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1691/","id":1691,"name":"Dick Grayson","site_detail_url":"https://comicvine.gamespot.com/dick-grayson/4005-1691/","count":"24"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1702/","id":1702,"name":"Joker","site_detail_url":"https://comicvine.gamespot.com/joker/4005-1702/","count":"22"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5368/","id":5368,"name":"Barbara Gordon","site_detail_url":"https://comicvine.gamespot.com/barbara-gordon/4005-5368/","count":"21"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6133/","id":6133,"name":"Detective Yin","site_detail_url":"https://comicvine.gamespot.com/detective-yin/4005-6133/","count":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3727/","id":3727,"name":"James Gordon","site_detail_url":"https://comicvine.gamespot.com/james-gordon/4005-3727/","count":"16"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4885/","id":4885,"name":"Penguin","site_detail_url":"https://comicvine.gamespot.com/penguin/4005-4885/","count":"14"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69911/","id":69911,"name":"Ethan Bennett","site_detail_url":"https://comicvine.gamespot.com/ethan-bennett/4005-69911/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3715/","id":3715,"name":"Mr. Freeze","site_detail_url":"https://comicvine.gamespot.com/mr-freeze/4005-3715/","count":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16817/","id":16817,"name":"Hugo Strange","site_detail_url":"https://comicvine.gamespot.com/hugo-strange/4005-16817/","count":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69973/","id":69973,"name":"Angel Rojas","site_detail_url":"https://comicvine.gamespot.com/angel-rojas/4005-69973/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88484/","id":88484,"name":"Mayor Marion Grange","site_detail_url":"https://comicvine.gamespot.com/mayor-marion-grange/4005-88484/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1697/","id":1697,"name":"Poison Ivy","site_detail_url":"https://comicvine.gamespot.com/poison-ivy/4005-1697/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1698/","id":1698,"name":"Catwoman","site_detail_url":"https://comicvine.gamespot.com/catwoman/4005-1698/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1807/","id":1807,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4005-1807/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3733/","id":3733,"name":"Firefly","site_detail_url":"https://comicvine.gamespot.com/firefly/4005-3733/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6129/","id":6129,"name":"Bane","site_detail_url":"https://comicvine.gamespot.com/bane/4005-6129/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1696/","id":1696,"name":"Harley Quinn","site_detail_url":"https://comicvine.gamespot.com/harley-quinn/4005-1696/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2047/","id":2047,"name":"Martian Manhunter","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter/4005-2047/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3718/","id":3718,"name":"Riddler","site_detail_url":"https://comicvine.gamespot.com/riddler/4005-3718/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3724/","id":3724,"name":"Black Mask","site_detail_url":"https://comicvine.gamespot.com/black-mask/4005-3724/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3725/","id":3725,"name":"Killer Croc","site_detail_url":"https://comicvine.gamespot.com/killer-croc/4005-3725/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5767/","id":5767,"name":"Ventriloquist (Wesker)","site_detail_url":"https://comicvine.gamespot.com/ventriloquist-wesker/4005-5767/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5768/","id":5768,"name":"Scarface","site_detail_url":"https://comicvine.gamespot.com/scarface/4005-5768/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5936/","id":5936,"name":"Green Arrow","site_detail_url":"https://comicvine.gamespot.com/green-arrow/4005-5936/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6131/","id":6131,"name":"Man-Bat","site_detail_url":"https://comicvine.gamespot.com/man-bat/4005-6131/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11202/","id":11202,"name":"Hal Jordan","site_detail_url":"https://comicvine.gamespot.com/hal-jordan/4005-11202/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22804/","id":22804,"name":"Barry Allen","site_detail_url":"https://comicvine.gamespot.com/barry-allen/4005-22804/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81180/","id":81180,"name":"Katar Hol","site_detail_url":"https://comicvine.gamespot.com/katar-hol/4005-81180/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3738/","id":3738,"name":"Lucius Fox","site_detail_url":"https://comicvine.gamespot.com/lucius-fox/4005-3738/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6132/","id":6132,"name":"Peri Kabuki","site_detail_url":"https://comicvine.gamespot.com/peri-kabuki/4005-6132/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11251/","id":11251,"name":"Ragdoll","site_detail_url":"https://comicvine.gamespot.com/ragdoll/4005-11251/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157809/","id":157809,"name":"Gale Kabuki","site_detail_url":"https://comicvine.gamespot.com/gale-kabuki/4005-157809/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8262/","id":8262,"name":"Killer Moth","site_detail_url":"https://comicvine.gamespot.com/killer-moth/4005-8262/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9589/","id":9589,"name":"Clayface (Karlo)","site_detail_url":"https://comicvine.gamespot.com/clayface-karlo/4005-9589/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9995/","id":9995,"name":"Mercy Graves","site_detail_url":"https://comicvine.gamespot.com/mercy-graves/4005-9995/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10187/","id":10187,"name":"Cluemaster","site_detail_url":"https://comicvine.gamespot.com/cluemaster/4005-10187/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26635/","id":26635,"name":"Rupert Thorne","site_detail_url":"https://comicvine.gamespot.com/rupert-thorne/4005-26635/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41952/","id":41952,"name":"Lex Luthor","site_detail_url":"https://comicvine.gamespot.com/lex-luthor/4005-41952/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78303/","id":78303,"name":"Mirror Master (Scudder)","site_detail_url":"https://comicvine.gamespot.com/mirror-master-scudder/4005-78303/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1808/","id":1808,"name":"Lois Lane","site_detail_url":"https://comicvine.gamespot.com/lois-lane/4005-1808/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3213/","id":3213,"name":"Jimmy Olsen","site_detail_url":"https://comicvine.gamespot.com/jimmy-olsen/4005-3213/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3602/","id":3602,"name":"Thomas Wayne","site_detail_url":"https://comicvine.gamespot.com/thomas-wayne/4005-3602/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3603/","id":3603,"name":"Martha Wayne","site_detail_url":"https://comicvine.gamespot.com/martha-wayne/4005-3603/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4689/","id":4689,"name":"Metallo","site_detail_url":"https://comicvine.gamespot.com/metallo/4005-4689/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5766/","id":5766,"name":"Rhino","site_detail_url":"https://comicvine.gamespot.com/rhino/4005-5766/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6844/","id":6844,"name":"John Grayson","site_detail_url":"https://comicvine.gamespot.com/john-grayson/4005-6844/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8342/","id":8342,"name":"Solomon Grundy","site_detail_url":"https://comicvine.gamespot.com/solomon-grundy/4005-8342/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10448/","id":10448,"name":"Sinestro","site_detail_url":"https://comicvine.gamespot.com/sinestro/4005-10448/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11012/","id":11012,"name":"Spellbinder","site_detail_url":"https://comicvine.gamespot.com/spellbinder/4005-11012/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11246/","id":11246,"name":"Doctor Phosphorus","site_detail_url":"https://comicvine.gamespot.com/doctor-phosphorus/4005-11246/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11343/","id":11343,"name":"Maxie Zeus","site_detail_url":"https://comicvine.gamespot.com/maxie-zeus/4005-11343/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19006/","id":19006,"name":"Count Vertigo","site_detail_url":"https://comicvine.gamespot.com/count-vertigo/4005-19006/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22815/","id":22815,"name":"Anthony Zucco","site_detail_url":"https://comicvine.gamespot.com/anthony-zucco/4005-22815/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22926/","id":22926,"name":"Gearhead","site_detail_url":"https://comicvine.gamespot.com/gearhead/4005-22926/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31113/","id":31113,"name":"Shadow-Thief","site_detail_url":"https://comicvine.gamespot.com/shadow-thief/4005-31113/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32398/","id":32398,"name":"Hamilton Hill","site_detail_url":"https://comicvine.gamespot.com/hamilton-hill/4005-32398/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-32672/","id":32672,"name":"Joe Chill","site_detail_url":"https://comicvine.gamespot.com/joe-chill/4005-32672/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38117/","id":38117,"name":"Mary Grayson","site_detail_url":"https://comicvine.gamespot.com/mary-grayson/4005-38117/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38834/","id":38834,"name":"Fox","site_detail_url":"https://comicvine.gamespot.com/fox/4005-38834/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38835/","id":38835,"name":"Vulture","site_detail_url":"https://comicvine.gamespot.com/vulture/4005-38835/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50593/","id":50593,"name":"Wrath","site_detail_url":"https://comicvine.gamespot.com/wrath/4005-50593/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50891/","id":50891,"name":"Shark","site_detail_url":"https://comicvine.gamespot.com/shark/4005-50891/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57335/","id":57335,"name":"Everywhere Man","site_detail_url":"https://comicvine.gamespot.com/everywhere-man/4005-57335/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83417/","id":83417,"name":"D.A.V.E.","site_detail_url":"https://comicvine.gamespot.com/dave/4005-83417/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90558/","id":90558,"name":"Scorn","site_detail_url":"https://comicvine.gamespot.com/scorn/4005-90558/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93743/","id":93743,"name":"Toyman (Nimball)","site_detail_url":"https://comicvine.gamespot.com/toyman-nimball/4005-93743/","count":"1"}],"count_of_episodes":65,"date_added":"2013-09-24 20:30:32","date_last_updated":"2016-04-16 18:57:00","deck":"A Batman animated series that aired on Kid's WB from 2004-2008 following a younger, more inexperienced Batman in his third year as he encounters his classic Rogues' Gallery for the first time in Gotham; as well as familiar characters from the comics, and some unique to the show.","description":"

    The series is set in its own universe, separate from all the others. The character designs were provided by artist Jeff Matsuda who was also a producer on the show. The show's style was very Manga/Anime influenced, resulting in mixed reactions from fans.

    The series ran for five seasons, 65 episodes, and spawned an animated movie and comic series. The Batman won a total of six Daytime Emmy Awards during its span.

    ","episodes":[{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-534/","id":534,"name":"The Bat in the Belfry","site_detail_url":"https://comicvine.gamespot.com/the-batman-101-the-bat-in-the-belfry/4070-534/","episode_number":"101"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-542/","id":542,"name":"Traction","site_detail_url":"https://comicvine.gamespot.com/the-batman-102-traction/4070-542/","episode_number":"102"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-549/","id":549,"name":"Call of the Cobblepot","site_detail_url":"https://comicvine.gamespot.com/the-batman-103-call-of-the-cobblepot/4070-549/","episode_number":"103"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-551/","id":551,"name":"The Man Who Would Be Bat","site_detail_url":"https://comicvine.gamespot.com/the-batman-104-the-man-who-would-be-bat/4070-551/","episode_number":"104"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-552/","id":552,"name":"The Big Chill","site_detail_url":"https://comicvine.gamespot.com/the-batman-105-the-big-chill/4070-552/","episode_number":"105"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-553/","id":553,"name":"The Cat and the Bat","site_detail_url":"https://comicvine.gamespot.com/the-batman-106-the-cat-and-the-bat/4070-553/","episode_number":"106"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-554/","id":554,"name":"The Big Heat","site_detail_url":"https://comicvine.gamespot.com/the-batman-107-the-big-heat/4070-554/","episode_number":"107"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-555/","id":555,"name":"Q&A","site_detail_url":"https://comicvine.gamespot.com/the-batman-108-q-a/4070-555/","episode_number":"108"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-556/","id":556,"name":"The Big Dummy","site_detail_url":"https://comicvine.gamespot.com/the-batman-109-the-big-dummy/4070-556/","episode_number":"109"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-557/","id":557,"name":"Topsy Turvy","site_detail_url":"https://comicvine.gamespot.com/the-batman-110-topsy-turvy/4070-557/","episode_number":"110"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-558/","id":558,"name":"Bird of Prey","site_detail_url":"https://comicvine.gamespot.com/the-batman-111-bird-of-prey/4070-558/","episode_number":"111"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-560/","id":560,"name":"The Rubberface of Comedy","site_detail_url":"https://comicvine.gamespot.com/the-batman-112-the-rubberface-of-comedy/4070-560/","episode_number":"112"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-562/","id":562,"name":"The Clayface of Tragedy","site_detail_url":"https://comicvine.gamespot.com/the-batman-113-the-clayface-of-tragedy/4070-562/","episode_number":"113"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4144/","id":4144,"name":"The Cat, The Bat, and the Very Ugly","site_detail_url":"https://comicvine.gamespot.com/the-batman-201-the-cat-the-bat-and-the-very-ugly/4070-4144/","episode_number":"201"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4145/","id":4145,"name":"Riddled","site_detail_url":"https://comicvine.gamespot.com/the-batman-202-riddled/4070-4145/","episode_number":"202"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4146/","id":4146,"name":"Fire & Ice","site_detail_url":"https://comicvine.gamespot.com/the-batman-203-fire-ice/4070-4146/","episode_number":"203"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4147/","id":4147,"name":"The Laughing Bat","site_detail_url":"https://comicvine.gamespot.com/the-batman-204-the-laughing-bat/4070-4147/","episode_number":"204"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4148/","id":4148,"name":"Swamped","site_detail_url":"https://comicvine.gamespot.com/the-batman-205-swamped/4070-4148/","episode_number":"205"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4149/","id":4149,"name":"Pets","site_detail_url":"https://comicvine.gamespot.com/the-batman-206-pets/4070-4149/","episode_number":"206"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4150/","id":4150,"name":"Meltdown","site_detail_url":"https://comicvine.gamespot.com/the-batman-207-meltdown/4070-4150/","episode_number":"207"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4191/","id":4191,"name":"JTV","site_detail_url":"https://comicvine.gamespot.com/the-batman-208-jtv/4070-4191/","episode_number":"208"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4192/","id":4192,"name":"Ragdolls to Riches","site_detail_url":"https://comicvine.gamespot.com/the-batman-209-ragdolls-to-riches/4070-4192/","episode_number":"209"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4193/","id":4193,"name":"The Butler Did It","site_detail_url":"https://comicvine.gamespot.com/the-batman-210-the-butler-did-it/4070-4193/","episode_number":"210"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4194/","id":4194,"name":"Grundy's Night","site_detail_url":"https://comicvine.gamespot.com/the-batman-211-grundy-s-night/4070-4194/","episode_number":"211"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4195/","id":4195,"name":"Strange Minds","site_detail_url":"https://comicvine.gamespot.com/the-batman-212-strange-minds/4070-4195/","episode_number":"212"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4196/","id":4196,"name":"Night and the City","site_detail_url":"https://comicvine.gamespot.com/the-batman-213-night-and-the-city/4070-4196/","episode_number":"213"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4202/","id":4202,"name":"Batgirl Begins, Part One","site_detail_url":"https://comicvine.gamespot.com/the-batman-301-batgirl-begins-part-one/4070-4202/","episode_number":"301"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4203/","id":4203,"name":"Batgirl Begins, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-batman-302-batgirl-begins-part-two/4070-4203/","episode_number":"302"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4204/","id":4204,"name":"A Dark Knight To Remember","site_detail_url":"https://comicvine.gamespot.com/the-batman-303-a-dark-knight-to-remember/4070-4204/","episode_number":"303"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4205/","id":4205,"name":"A Fistful of Felt","site_detail_url":"https://comicvine.gamespot.com/the-batman-304-a-fistful-of-felt/4070-4205/","episode_number":"304"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4206/","id":4206,"name":"Brawn","site_detail_url":"https://comicvine.gamespot.com/the-batman-306-brawn/4070-4206/","episode_number":"306"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4207/","id":4207,"name":"Cash for Toys","site_detail_url":"https://comicvine.gamespot.com/the-batman-309-cash-for-toys/4070-4207/","episode_number":"309"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4208/","id":4208,"name":"The Apprentice","site_detail_url":"https://comicvine.gamespot.com/the-batman-311-the-apprentice/4070-4208/","episode_number":"311"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4209/","id":4209,"name":"The Icy Depths","site_detail_url":"https://comicvine.gamespot.com/the-batman-312-the-icy-depths/4070-4209/","episode_number":"312"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4210/","id":4210,"name":"Gotham's Ultimate Criminal Mastermind","site_detail_url":"https://comicvine.gamespot.com/the-batman-313-gotham-s-ultimate-criminal-mastermi/4070-4210/","episode_number":"313"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4212/","id":4212,"name":"RPM","site_detail_url":"https://comicvine.gamespot.com/the-batman-305-rpm/4070-4212/","episode_number":"305"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4213/","id":4213,"name":"The Laughing Cats","site_detail_url":"https://comicvine.gamespot.com/the-batman-307-the-laughing-cats/4070-4213/","episode_number":"307"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4214/","id":4214,"name":"Fleurs du Mal","site_detail_url":"https://comicvine.gamespot.com/the-batman-308-fleurs-du-mal/4070-4214/","episode_number":"308"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4215/","id":4215,"name":"Thunder","site_detail_url":"https://comicvine.gamespot.com/the-batman-310-thunder/4070-4215/","episode_number":"310"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4227/","id":4227,"name":"The Batman/ Superman Story","site_detail_url":"https://comicvine.gamespot.com/the-batman-501-the-batman-superman-story/4070-4227/","episode_number":"501"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4228/","id":4228,"name":"The Batman/Superman Story: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-batman-502-the-batman-superman-story-part-2/4070-4228/","episode_number":"502"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4229/","id":4229,"name":"Lost Heroes: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-batman-512-lost-heroes-part-1/4070-4229/","episode_number":"512"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4230/","id":4230,"name":"Lost Heroes: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-batman-513-lost-heroes-part-2/4070-4230/","episode_number":"513"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4324/","id":4324,"name":"A Matter of Family","site_detail_url":"https://comicvine.gamespot.com/the-batman-401-a-matter-of-family/4070-4324/","episode_number":"401"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4325/","id":4325,"name":"Team Penguin","site_detail_url":"https://comicvine.gamespot.com/the-batman-402-team-penguin/4070-4325/","episode_number":"402"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4326/","id":4326,"name":"Clayfaces","site_detail_url":"https://comicvine.gamespot.com/the-batman-403-clayfaces/4070-4326/","episode_number":"403"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4327/","id":4327,"name":"The Everywhere Man","site_detail_url":"https://comicvine.gamespot.com/the-batman-404-the-everywhere-man/4070-4327/","episode_number":"404"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4328/","id":4328,"name":"Strange New World","site_detail_url":"https://comicvine.gamespot.com/the-batman-405-strange-new-world/4070-4328/","episode_number":"405"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4329/","id":4329,"name":"The Breakout","site_detail_url":"https://comicvine.gamespot.com/the-batman-406-the-breakout/4070-4329/","episode_number":"406"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4330/","id":4330,"name":"Artifacts","site_detail_url":"https://comicvine.gamespot.com/the-batman-407-artifacts/4070-4330/","episode_number":"407"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4331/","id":4331,"name":"Two of a Kind","site_detail_url":"https://comicvine.gamespot.com/the-batman-408-two-of-a-kind/4070-4331/","episode_number":"408"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4333/","id":4333,"name":"Seconds","site_detail_url":"https://comicvine.gamespot.com/the-batman-409-seconds/4070-4333/","episode_number":"409"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4373/","id":4373,"name":"Riddler's Revenge","site_detail_url":"https://comicvine.gamespot.com/the-batman-410-riddler-s-revenge/4070-4373/","episode_number":"410"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4374/","id":4374,"name":"Rumors","site_detail_url":"https://comicvine.gamespot.com/the-batman-411-rumors/4070-4374/","episode_number":"411"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4376/","id":4376,"name":"The Joining, Part One","site_detail_url":"https://comicvine.gamespot.com/the-batman-412-the-joining-part-one/4070-4376/","episode_number":"412"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4377/","id":4377,"name":"The Joining, Part Two","site_detail_url":"https://comicvine.gamespot.com/the-batman-413-the-joining-part-two/4070-4377/","episode_number":"413"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5050/","id":5050,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/the-batman-503-vertigo/4070-5050/","episode_number":"503"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5051/","id":5051,"name":"White Heat","site_detail_url":"https://comicvine.gamespot.com/the-batman-504-white-heat/4070-5051/","episode_number":"504"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5053/","id":5053,"name":"A Mirror Darkly","site_detail_url":"https://comicvine.gamespot.com/the-batman-505-a-mirror-darkly/4070-5053/","episode_number":"505"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5054/","id":5054,"name":"The Joker Express","site_detail_url":"https://comicvine.gamespot.com/the-batman-506-the-joker-express/4070-5054/","episode_number":"506"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5055/","id":5055,"name":"Ring Toss","site_detail_url":"https://comicvine.gamespot.com/the-batman-507-ring-toss/4070-5055/","episode_number":"507"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5056/","id":5056,"name":"The Metalface of Comedy","site_detail_url":"https://comicvine.gamespot.com/the-batman-508-the-metalface-of-comedy/4070-5056/","episode_number":"508"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5057/","id":5057,"name":"Attack of the Terrible Trio","site_detail_url":"https://comicvine.gamespot.com/the-batman-509-attack-of-the-terrible-trio/4070-5057/","episode_number":"509"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5058/","id":5058,"name":"The End of the Batman","site_detail_url":"https://comicvine.gamespot.com/the-batman-510-the-end-of-the-batman/4070-5058/","episode_number":"510"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5060/","id":5060,"name":"What Goes Up...","site_detail_url":"https://comicvine.gamespot.com/the-batman-511-what-goes-up/4070-5060/","episode_number":"511"}],"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-534/","id":534,"name":"The Bat in the Belfry","episode_number":"101"},"id":38,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64675/3332981-thebatman.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64675/3332981-thebatman.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64675/3332981-thebatman.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64675/3332981-thebatman.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64675/3332981-thebatman.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64675/3332981-thebatman.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64675/3332981-thebatman.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64675/3332981-thebatman.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64675/3332981-thebatman.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4229/","id":4229,"name":"Lost Heroes: Part 1","episode_number":"512"},"name":"The Batman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/the-batman/4075-38/","start_year":"2004"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/series-details/series-4075-43.json b/samples/api-data/series-details/series-4075-43.json new file mode 100644 index 0000000..46e4354 --- /dev/null +++ b/samples/api-data/series-details/series-4075-43.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-43/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20105/","id":20105,"name":"Jean-Luc Picard","site_detail_url":"https://comicvine.gamespot.com/jean-luc-picard/4005-20105/","count":"45"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20106/","id":20106,"name":"William Riker","site_detail_url":"https://comicvine.gamespot.com/william-riker/4005-20106/","count":"45"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20109/","id":20109,"name":"Data","site_detail_url":"https://comicvine.gamespot.com/data/4005-20109/","count":"44"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21619/","id":21619,"name":"Worf","site_detail_url":"https://comicvine.gamespot.com/worf/4005-21619/","count":"43"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20108/","id":20108,"name":"Geordi La Forge","site_detail_url":"https://comicvine.gamespot.com/geordi-la-forge/4005-20108/","count":"42"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22691/","id":22691,"name":"Deanna Troi","site_detail_url":"https://comicvine.gamespot.com/deanna-troi/4005-22691/","count":"40"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11244/","id":11244,"name":"Dr. Beverly Crusher","site_detail_url":"https://comicvine.gamespot.com/dr-beverly-crusher/4005-11244/","count":"32"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45775/","id":45775,"name":"Wesley Crusher","site_detail_url":"https://comicvine.gamespot.com/wesley-crusher/4005-45775/","count":"28"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26772/","id":26772,"name":"Tasha Yar","site_detail_url":"https://comicvine.gamespot.com/tasha-yar/4005-26772/","count":"20"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55493/","id":55493,"name":"Miles O'Brien","site_detail_url":"https://comicvine.gamespot.com/miles-obrien/4005-55493/","count":"15"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24646/","id":24646,"name":"Katherine Pulaski","site_detail_url":"https://comicvine.gamespot.com/katherine-pulaski/4005-24646/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26771/","id":26771,"name":"Guinan","site_detail_url":"https://comicvine.gamespot.com/guinan/4005-26771/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48390/","id":48390,"name":"Lt. Reginald Barclay","site_detail_url":"https://comicvine.gamespot.com/lt-reginald-barclay/4005-48390/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22210/","id":22210,"name":"James Moriarty","site_detail_url":"https://comicvine.gamespot.com/james-moriarty/4005-22210/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55490/","id":55490,"name":"Q","site_detail_url":"https://comicvine.gamespot.com/q/4005-55490/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62435/","id":62435,"name":"Alyssa Ogawa","site_detail_url":"https://comicvine.gamespot.com/alyssa-ogawa/4005-62435/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155998/","id":155998,"name":"Spot","site_detail_url":"https://comicvine.gamespot.com/spot/4005-155998/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176390/","id":176390,"name":"Livingston","site_detail_url":"https://comicvine.gamespot.com/livingston/4005-176390/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-20080/","id":20080,"name":"Leonard McCoy","site_detail_url":"https://comicvine.gamespot.com/leonard-mccoy/4005-20080/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25747/","id":25747,"name":"Montgomery Scott","site_detail_url":"https://comicvine.gamespot.com/montgomery-scott/4005-25747/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28256/","id":28256,"name":"Lwaxana Troi","site_detail_url":"https://comicvine.gamespot.com/lwaxana-troi/4005-28256/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49115/","id":49115,"name":"Albert Einstein","site_detail_url":"https://comicvine.gamespot.com/albert-einstein/4005-49115/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63080/","id":63080,"name":"Selar","site_detail_url":"https://comicvine.gamespot.com/selar/4005-63080/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63086/","id":63086,"name":"Keiko O'Brien","site_detail_url":"https://comicvine.gamespot.com/keiko-obrien/4005-63086/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76663/","id":76663,"name":"Inspector Lestrade","site_detail_url":"https://comicvine.gamespot.com/inspector-lestrade/4005-76663/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-160651/","id":160651,"name":"The Traveler","site_detail_url":"https://comicvine.gamespot.com/the-traveler/4005-160651/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176016/","id":176016,"name":"Hugh","site_detail_url":"https://comicvine.gamespot.com/hugh/4005-176016/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176850/","id":176850,"name":"Yvette Picard","site_detail_url":"https://comicvine.gamespot.com/yvette-picard/4005-176850/","count":"1"}],"count_of_episodes":56,"date_added":"2013-09-24 22:29:37","date_last_updated":"2015-09-14 13:54:45","deck":"A new crew, a new enterprise and a new time period.","description":"

    Star Trek: The Next Generation (TNG) focuses on the 24th century adventures of Captain Jean-Luc Picard aboard the U.S.S. Enterprise (NCC-1701-D). This incarnation of the famous starship is much larger than the one captained by James T. Kirk a century earlier, and, accordingly, it carries a larger crew complement: 1,012 men, women…and, surprisingly, children. This era’s Starfleet Command believes that men and women are more likely to sign up for long-term exploratory missions if they think of their ship as home. Thus, Picard’s crew enjoys many of the comforts they’d have otherwise left behind, including a wide variety of recreational opportunities, “replicated” food dishes to suit every palate, and quarters large enough to share with spouses and offspring. There are schools for the children and a bar (stocked with synthetic alcohol, or synthehol) where the adults can unwind. However, the ongoing mission—no longer limited to a mere five years—remains virtually the same as it was during Kirk’s time: to seek out new life and new civilizations, and to boldly go where no one has gone before.

    ","episodes":[{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2114/","id":2114,"name":"Encounter at Farpoint","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-101102-encounter-at-/4070-2114/","episode_number":"101/102"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2115/","id":2115,"name":"The Naked Now","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-103-the-naked-now/4070-2115/","episode_number":"103"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2116/","id":2116,"name":"Code of Honor","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-104-code-of-honor/4070-2116/","episode_number":"104"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2117/","id":2117,"name":"The Last Outpost","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-105-the-last-outpost/4070-2117/","episode_number":"105"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2118/","id":2118,"name":"Where No One Has Gone Before","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-106-where-no-one-has/4070-2118/","episode_number":"106"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2119/","id":2119,"name":"Lonely Among Us","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-107-lonely-among-us/4070-2119/","episode_number":"107"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2120/","id":2120,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-108-justice/4070-2120/","episode_number":"108"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2121/","id":2121,"name":"The Battle","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-109-the-battle/4070-2121/","episode_number":"109"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2122/","id":2122,"name":"Hide And Q","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-110-hide-and-q/4070-2122/","episode_number":"110"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2123/","id":2123,"name":"Haven","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-111-haven/4070-2123/","episode_number":"111"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2124/","id":2124,"name":"The Big Goodbye","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-112-the-big-goodbye/4070-2124/","episode_number":"112"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2125/","id":2125,"name":"Datalore","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-113-datalore/4070-2125/","episode_number":"113"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2126/","id":2126,"name":"Angel One","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-114-angel-one/4070-2126/","episode_number":"114"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2127/","id":2127,"name":"11001001","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-115-11001001/4070-2127/","episode_number":"115"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2128/","id":2128,"name":"Too Short A Season","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-116-too-short-a-seas/4070-2128/","episode_number":"116"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2129/","id":2129,"name":"When the Bough Breaks","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-117-when-the-bough-b/4070-2129/","episode_number":"117"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2130/","id":2130,"name":"Home Soil","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-118-home-soil/4070-2130/","episode_number":"118"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2131/","id":2131,"name":"Coming of Age","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-119-coming-of-age/4070-2131/","episode_number":"119"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2132/","id":2132,"name":"Heart of Glory","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-120-heart-of-glory/4070-2132/","episode_number":"120"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2133/","id":2133,"name":"The Arsenal of Freedom","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-121-the-arsenal-of-f/4070-2133/","episode_number":"121"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2134/","id":2134,"name":"Symbiosis","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-122-symbiosis/4070-2134/","episode_number":"122"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2135/","id":2135,"name":"Skin of Evil","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-123-skin-of-evil/4070-2135/","episode_number":"123"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2136/","id":2136,"name":"We'll Always Have Paris","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-124-we-ll-always-hav/4070-2136/","episode_number":"124"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2137/","id":2137,"name":"Conspiracy","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-125-conspiracy/4070-2137/","episode_number":"125"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2138/","id":2138,"name":"The Neutral Zone","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-126-the-neutral-zone/4070-2138/","episode_number":"126"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5756/","id":5756,"name":"The Child","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-201-the-child/4070-5756/","episode_number":"201"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5757/","id":5757,"name":"Where Silence Has Lease","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-202-where-silence-ha/4070-5757/","episode_number":"202"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5758/","id":5758,"name":"Elementary, Dear Data","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-203-elementary-dear-/4070-5758/","episode_number":"203"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5759/","id":5759,"name":"The Outrageous Okona","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-204-the-outrageous-o/4070-5759/","episode_number":"204"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5760/","id":5760,"name":"Loud As A Whisper","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-205-loud-as-a-whispe/4070-5760/","episode_number":"205"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5761/","id":5761,"name":"The Schizoid Man","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-206-the-schizoid-man/4070-5761/","episode_number":"206"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5762/","id":5762,"name":"Unnatural Selection","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-207-unnatural-select/4070-5762/","episode_number":"207"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5763/","id":5763,"name":"A Matter Of Honor","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-208-a-matter-of-hono/4070-5763/","episode_number":"208"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5765/","id":5765,"name":"The Dauphin","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-210-the-dauphin/4070-5765/","episode_number":"210"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5766/","id":5766,"name":"The Measure Of A Man","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-209-the-measure-of-a/4070-5766/","episode_number":"209"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5767/","id":5767,"name":"Contagion","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-211-contagion/4070-5767/","episode_number":"211"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5768/","id":5768,"name":"The Royale","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-212-the-royale/4070-5768/","episode_number":"212"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5769/","id":5769,"name":"Time Squared","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-213-time-squared/4070-5769/","episode_number":"213"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5771/","id":5771,"name":"The Icarus Factor","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-214-the-icarus-facto/4070-5771/","episode_number":"214"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5772/","id":5772,"name":"Pen Pals","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-215-pen-pals/4070-5772/","episode_number":"215"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5773/","id":5773,"name":"Q Who","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-216-q-who/4070-5773/","episode_number":"216"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5774/","id":5774,"name":"Samaritan Snare","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-217-samaritan-snare/4070-5774/","episode_number":"217"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5775/","id":5775,"name":"Up The Long Ladder","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-218-up-the-long-ladd/4070-5775/","episode_number":"218"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5776/","id":5776,"name":"Manhunt","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-219-manhunt/4070-5776/","episode_number":"219"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5778/","id":5778,"name":"The Emissary","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-220-the-emissary/4070-5778/","episode_number":"220"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5779/","id":5779,"name":"Peak Performance","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-221-peak-performance/4070-5779/","episode_number":"221"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-5780/","id":5780,"name":"Shades of Gray","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-222-shades-of-gray/4070-5780/","episode_number":"222"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29685/","id":29685,"name":"Hollow Pursuits","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-321-hollow-pursuits/4070-29685/","episode_number":"321"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29686/","id":29686,"name":"The Nth Degree","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-419-the-nth-degree/4070-29686/","episode_number":"419"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29687/","id":29687,"name":"Realm of Fear","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-602-realm-of-fear/4070-29687/","episode_number":"602"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29688/","id":29688,"name":"Ship in a Bottle","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-612-ship-in-a-bottle/4070-29688/","episode_number":"612"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29689/","id":29689,"name":"Genesis","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-719-genesis/4070-29689/","episode_number":"719"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29690/","id":29690,"name":"Data's Day","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-411-datas-day/4070-29690/","episode_number":"411"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-31728/","id":31728,"name":"Relics","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-604-relics/4070-31728/","episode_number":"604"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-35415/","id":35415,"name":"Evolution","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-301-evolution/4070-35415/","episode_number":"301"},{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-37230/","id":37230,"name":"I, Borg","site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation-523-i-borg/4070-37230/","episode_number":"523"}],"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2125/","id":2125,"name":"Datalore","episode_number":"113"},"id":43,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134028/3333227-tng%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134028/3333227-tng%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134028/3333227-tng%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134028/3333227-tng%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134028/3333227-tng%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134028/3333227-tng%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134028/3333227-tng%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134028/3333227-tng%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134028/3333227-tng%20logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29689/","id":29689,"name":"Genesis","episode_number":"719"},"name":"Star Trek: The Next Generation","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4615/","id":4615,"name":"Paramount Pictures"},"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation/4075-43/","start_year":"1987-1994"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/series-list-item/series_list.json b/samples/api-data/series-list-item/series_list.json new file mode 100644 index 0000000..982f1ed --- /dev/null +++ b/samples/api-data/series-list-item/series_list.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":954,"status_code":1,"results":[{"aliases":"Agents of SHIELD\r\nMarvel's Agents of S.H.I.E.L.D.","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-1/","count_of_episodes":136,"date_added":"2013-09-23 14:13:53","date_last_updated":"2021-01-27 16:07:24","deck":null,"description":"
    \"No

    The missions of the Strategic Homeland Intervention, Enforcement and Logistics Division. A small team of operatives led by Agent Coulson (Clark Gregg) who must deal with the strange new world of \"superheroes\" after the \"Battle of New York\", protecting the public from new and unknown threats.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1/","id":1,"name":"Pilot","episode_number":"101"},"id":1,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6238345-3060875932-35677.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6238345-3060875932-35677.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6238345-3060875932-35677.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6238345-3060875932-35677.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6238345-3060875932-35677.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6238345-3060875932-35677.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6238345-3060875932-35677.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6238345-3060875932-35677.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6238345-3060875932-35677.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-32765/","id":32765,"name":"The End Is At Hand","episode_number":"712"},"name":"Agents of S.H.I.E.L.D.","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d/4075-1/","start_year":"2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-3/","count_of_episodes":170,"date_added":"2013-09-24 12:13:02","date_last_updated":"2019-02-21 09:25:34","deck":"Thought to be dead after a catastrophe at sea, Oliver Queen returns to Starling City a changed man, determined to fight injustice as a hooded vigilante who comes to be known as The Arrow. Based on DC Comics' Green Arrow franchise.","description":"
    \"No

    After a violent shipwreck, billionaire playboy Oliver Queen was missing and presumed dead for five years before being discovered alive on a remote island in the Pacific. When he returns home to Starling City, his devoted mother Moira, much-beloved sister Thea, and best friend Tommy welcome him home, but they sense Oliver has been changed by his ordeal on the island. While Oliver hides the truth about the man he's become, he desperately wants to make amends for the actions he took as the boy he was. Most particularly, he seeks reconciliation with his former girlfriend, Laurel Lance. As Oliver reconnects with those closest to him, he secretly creates the persona of Arrow - a vigilante – to right the wrongs of his family, fight the ills of society, and restore Starling City to its former glory. By day, Oliver plays the role of a wealthy, carefree and careless philanderer he used to be - flanked by his devoted chauffeur/bodyguard, John Diggle - while carefully concealing the secret identity he turns to under cover of darkness. However, Laurel's father, Detective Quentin Lance, is determined to arrest the vigilante operating in his city. Meanwhile, Oliver's own mother, Moira, knows much more about the deadly shipwreck than she has let on – and is more ruthless than he could ever imagine.

    The series stars Stephen Amell as Oliver Queen/Green Arrow, Katie Cassidy as Laurel Lance/Black Canary, Colin Donnell as Tommy Merlyn, David Ramsey as John Diggle, Willa Holland as Thea Queen/Speedy, Susanna Thompson as Moira Queen, Emily Bett Rickards as Felicity Smoak, Colton Haynes as Roy Harper/Arsenal, Manu Bennett as Slade Wilson/Deathstroke with John Barrowman as Malcolm Merlyn/Dark Archer and Paul Blackthorne as Captain Quentin Lance.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-12/","id":12,"name":"Pilot","episode_number":"101"},"id":3,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3332003-6337447359-25765.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3332003-6337447359-25765.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3332003-6337447359-25765.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3332003-6337447359-25765.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3332003-6337447359-25765.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3332003-6337447359-25765.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3332003-6337447359-25765.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3332003-6337447359-25765.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3332003-6337447359-25765.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-32096/","id":32096,"name":"Fadeout","episode_number":"810"},"name":"Arrow","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/arrow/4075-3/","start_year":"2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-4/","count_of_episodes":31,"date_added":"2013-09-24 12:17:15","date_last_updated":"2013-09-27 17:06:17","deck":"TV series based on the UK comic strip.","description":"

    Plot Summary

    Eric is a boy like any other, until he eats a banana. Then, he transforms into Bananaman, a superhero with extraordinary powers, but very little common sense.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4/","id":4,"name":"Bananaman Meets Doctor Gloom","episode_number":"101"},"id":4,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332016-tit.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332016-tit.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332016-tit.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332016-tit.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332016-tit.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332016-tit.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332016-tit.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332016-tit.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332016-tit.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2023/","id":2023,"name":"The Crown Jewel Caper","episode_number":"314"},"name":"Bananaman","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/bananaman/4075-4/","start_year":"1983"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-6/","count_of_episodes":26,"date_added":"2013-09-24 12:24:13","date_last_updated":"2013-09-27 07:35:06","deck":null,"description":"

    An explosive event shatters the lives of the X-Men, as their mentor, Professor X, and friend, Jean Grey - are taken away from them. Disheartened, the team disbands. That is, until one of them is given a rare glimpse into a terrifiying future guarded by Sentinels and ruled by Magneto and The Brotherhood of Mutants -- a world without X-Men. Now, it's up to Wolverine to reunite the team, find his lost friends, and prevent the world's destruction. So now the most legendary of all X-Men, Wolverine, must take the lead on the ultimate mission--to prevent the world's destruction- while fending off enemies Magneto and The Brotherhood.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2834/","id":2834,"name":"Breakdown","episode_number":"120"},"id":6,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/83918/3332039-wolverinex-men1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/83918/3332039-wolverinex-men1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/83918/3332039-wolverinex-men1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/83918/3332039-wolverinex-men1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/83918/3332039-wolverinex-men1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/83918/3332039-wolverinex-men1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/83918/3332039-wolverinex-men1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/83918/3332039-wolverinex-men1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/83918/3332039-wolverinex-men1.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-11348/","id":11348,"name":"Foresight - Part 1","episode_number":"124"},"name":"Wolverine and the X-Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-xmen/4075-6/","start_year":"2008"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-8/","count_of_episodes":210,"date_added":"2013-09-24 12:30:50","date_last_updated":"2021-11-24 08:57:43","deck":"Two FBI agents fight to uncover the truth behind the existence of extraterrestrial beings.","description":"

    Plot Summary

    Fox Mulder was once one of the most gifted criminal profilers working at the FBI. But after years of searching, he gradually became obsessed with the disappearance of his younger sister when they were children. Believing her abduction to be the work of aliens, Mulder's off the wall theories consumed him, and isolated him from his peers. After taking charge of the X-Files - an umbrella term for unsolved and unexplained cases - he became a figure of ridicule, relegated to the basement of FBI headquarters.

    Suspicious of Mulder and anxious about what he may or may not discover, his superiors assigned another agent to watch over him: Dana Scully, chosen for her background in science and her analytical, skeptical point of view. However, while Scully was meant to debunk his work, she developed a deep friendship with Mulder, and became sympathetic to his cause.

    Regular Cast Members

    In Comics

    The X-Files television series spawned a number of comic book adaptations and spin-offs, including:

    Movies

    The series also led to two full length feature films:

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-11/","id":11,"name":"The Jersey Devil","episode_number":"104"},"id":8,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3332057-x-files-season-7.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3332057-x-files-season-7.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3332057-x-files-season-7.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3332057-x-files-season-7.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3332057-x-files-season-7.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3332057-x-files-season-7.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3332057-x-files-season-7.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3332057-x-files-season-7.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3332057-x-files-season-7.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-23816/","id":23816,"name":"Kitten","episode_number":"1106"},"name":"The X-Files","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/the-xfiles/4075-8/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-9/","count_of_episodes":77,"date_added":"2013-09-24 12:36:53","date_last_updated":"2015-07-20 12:41:52","deck":"Created by Stan Lee, Steve Ditko and Ralph Bakshi. Airing from September 9, 1967 - June 14, 1970 on ABC.","description":"

    First airing on the ABC television network in 1967, the series revolves around the scientific-minded teenager Peter Parker who, after being bitten by a radioactive spider, develops amazing strength and spider-like powers. He decides to become a crime-fighting, costumed superhero; all the while dealing with his personal problems and the insecurities resulting from being a teenager.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-10/","id":10,"name":"The Power of Dr. Octopus","episode_number":"101"},"id":9,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/3332062-5tsybgegoly.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/3332062-5tsybgegoly.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/3332062-5tsybgegoly.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/3332062-5tsybgegoly.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/3332062-5tsybgegoly.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/3332062-5tsybgegoly.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/3332062-5tsybgegoly.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/3332062-5tsybgegoly.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/3332062-5tsybgegoly.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19130/","id":19130,"name":"Trip to Tomorrow","episode_number":"320"},"name":"Spider-Man","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/spider-man/4075-9/","start_year":"1967"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-10/","count_of_episodes":91,"date_added":"2013-09-24 13:23:48","date_last_updated":"2021-05-07 08:47:17","deck":"The Adventures of Darkwing Duck!","description":"

    A spin-off of Duck Tales starring Jim Cummings as Darkwing Duck.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-109/","id":109,"name":"Comic Book Capers","episode_number":"109"},"id":10,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/7952757-darkwingduck.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/7952757-darkwingduck.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/7952757-darkwingduck.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/7952757-darkwingduck.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/7952757-darkwingduck.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/7952757-darkwingduck.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/7952757-darkwingduck.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/7952757-darkwingduck.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/7952757-darkwingduck.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-27859/","id":27859,"name":"Extinct Possibility","episode_number":"313"},"name":"Darkwing Duck","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"site_detail_url":"https://comicvine.gamespot.com/darkwing-duck/4075-10/","start_year":"1991"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-11/","count_of_episodes":26,"date_added":"2013-09-24 13:29:30","date_last_updated":"2020-08-22 14:45:48","deck":"Think relationships, school, friends and doting parents are enough for a kid to deal with? Try living Peter Parker's life as the Spectacular Spider-Man, a teenage hero with a part-time job and a host of evil, super-powered enemies.","description":"

    A show staring Spider-man which ran from 2008-2009

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4941/","id":4941,"name":"Opening Night","episode_number":"212"},"id":11,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14787/3332158-6730999621-46769.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14787/3332158-6730999621-46769.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14787/3332158-6730999621-46769.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14787/3332158-6730999621-46769.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14787/3332158-6730999621-46769.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14787/3332158-6730999621-46769.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14787/3332158-6730999621-46769.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14787/3332158-6730999621-46769.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14787/3332158-6730999621-46769.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4855/","id":4855,"name":"Subtext","episode_number":"211"},"name":"Spectacular Spider-Man","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/spectacular-spiderman/4075-11/","start_year":"2008"},{"aliases":"The New Batman/Superman Adventures","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-12/","count_of_episodes":54,"date_added":"2013-09-24 13:29:52","date_last_updated":"2014-03-11 17:05:42","deck":"The animated adventures of Superman.","description":"

    Following the critical success of Batman: The Animated Series, DC's most iconic hero received the same in-universe animated treatment by the same creative team of Paul Dini, Bruce Timm and Alan Burnett that brought the Dark Knight to animation.

    Due to the nature of Superman, the producers introduced a host of familiar faces into the DC animated universe (as they wanted Batman: The Animated Series to be more grounded in reality). Such guest appearances included The Flash, Kyle Rayner, Aquaman and Kent Nelson amongst others.

    The third season was aired alongside episodes of The New Batman Adventures and packaged together as The New Batman/Superman Adventures.

    The three part episode \"World's Finest\" was collected as a whole and distributed as The Batman/Superman Movie.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4139/","id":4139,"name":"The Last Son of Krypton: Part 2","episode_number":"102"},"id":12,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/119711/3332159-5928547769-super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/119711/3332159-5928547769-super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/119711/3332159-5928547769-super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/119711/3332159-5928547769-super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/119711/3332159-5928547769-super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/119711/3332159-5928547769-super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/119711/3332159-5928547769-super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/119711/3332159-5928547769-super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/119711/3332159-5928547769-super.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4273/","id":4273,"name":"Apokolips... Now!: Part I","episode_number":"225"},"name":"Superman: The Animated Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-574/","id":574,"name":"Warner Brothers"},"site_detail_url":"https://comicvine.gamespot.com/superman-the-animated-series/4075-12/","start_year":"1996-2000"},{"aliases":"Der ultimative Spider-Man\nUltimate Spider-Man: Web Warriors\nUltimate Spider-Man Vs. The Sinister 6\nUltimate Spider-Man Vs. The Sinister Six","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-13/","count_of_episodes":104,"date_added":"2013-09-24 13:35:03","date_last_updated":"2018-09-13 09:02:34","deck":null,"description":"

    Ultimate Spider-Man is an animated television series based on the superhero Spider-Man and is loosely based of the comic series.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1967/","id":1967,"name":"Great Power","episode_number":"101"},"id":13,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/6608400-default.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/6608400-default.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/6608400-default.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/6608400-default.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/6608400-default.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/6608400-default.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/6608400-default.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/6608400-default.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/6608400-default.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25090/","id":25090,"name":"Graduation Day: Part 1","episode_number":"425"},"name":"Ultimate Spider-Man","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman/4075-13/","start_year":"2012-2017"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-14/","count_of_episodes":218,"date_added":"2013-09-24 13:42:15","date_last_updated":"2018-06-25 12:19:38","deck":"Before he becomes Superman, a young Clark Kent struggles to find his place in the world as he learns to harness his alien powers for good and deals with the typical troubles of teenage life in Smallville.","description":"

    \"Smallville\" was a live action TV series, which lasted for 10 seasons with an 11-issue tie-ins, a magazine, and even a comic book (one being a one-shot and the other being a small comic book series).

    A year after the show has ended, the story continued in comic books:

    and a few ministories like Smallville: Titans and Smallville: Alien.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-264/","id":264,"name":"Pilot","episode_number":"101"},"id":14,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14787/3332174-7526015225-s10po.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14787/3332174-7526015225-s10po.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14787/3332174-7526015225-s10po.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14787/3332174-7526015225-s10po.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14787/3332174-7526015225-s10po.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14787/3332174-7526015225-s10po.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14787/3332174-7526015225-s10po.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14787/3332174-7526015225-s10po.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14787/3332174-7526015225-s10po.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3887/","id":3887,"name":"Finale, Part I","episode_number":"1021"},"name":"Smallville","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/smallville/4075-14/","start_year":"2001-2011"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-15/","count_of_episodes":159,"date_added":"2013-09-24 13:54:27","date_last_updated":"2019-01-13 08:24:59","deck":"The original 1963-1989 adventures of everyone's favorite time lord","description":"

    Revived in 2005 also named Doctor Who

    The Doctors

    In the original Doctor Who series the show went through 7 Doctors (8 including the Doctor Who TV movie in 1996). After the First Doctor decided to leave the show the writers had to work out a way of introducing a new doctor so the writers introduced 'regeneration'.

    1. William Hartnell (1st Doctor, 1963-1966, 1973) (Different actor in the 20th anniversary)
    2. Patrick Troughton (2nd Doctor, 1966 - 1969, 1973, 1983, 1985)
    3. Jon Pertwee (3rd Doctor, 1970 - 1974, 1983)
    4. Tom Baker (4th Doctor, 1974 - 1981, 1983)
    5. Peter Davison (5th Doctor, 1982 - 1984, 2007)
    6. Colin Baker (6th Doctor, 1984 - 1986)
    7. Sylvester McCoy (7th Doctor, 1987 - 1989, 1996)
    8. Paul McGann (8th Doctor, 1996, 2013)

    The Companions

    The Doctor traveled with many companions over the years.

    The First Doctor companions were:

    The Second Doctor companions were:

    The Third Doctor companions were:

    The Fourth Doctor companions were:

    The Fifth Doctor companions were:

    The Sixth Doctor companions were:

    The Seventh Doctor companions were:

    The Eighth Doctor companions were:

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-238/","id":238,"name":"An Unearthly Child","episode_number":"101"},"id":15,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332915-2011-01-04_doctor_who_classic_logo.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29053/","id":29053,"name":"Shada","episode_number":"1706"},"name":"Doctor Who","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2797/","id":2797,"name":"BBC Magazines"},"site_detail_url":"https://comicvine.gamespot.com/doctor-who/4075-15/","start_year":"1963"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-16/","count_of_episodes":83,"date_added":"2013-09-24 14:01:54","date_last_updated":"2014-01-18 18:41:02","deck":"The TV show starring Bill Bixby as David Banner and Lou Ferrigno as the Hulk. Also starring Jack Colvin as Jack McGee, obsessive and troublesome reporter from Chicago's \"National Register\".","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-74/","id":74,"name":"Pilot","episode_number":"101"},"id":16,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/119711/3332228-4259954487-the-i.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/119711/3332228-4259954487-the-i.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/119711/3332228-4259954487-the-i.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/119711/3332228-4259954487-the-i.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/119711/3332228-4259954487-the-i.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/119711/3332228-4259954487-the-i.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/119711/3332228-4259954487-the-i.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/119711/3332228-4259954487-the-i.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/119711/3332228-4259954487-the-i.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-7251/","id":7251,"name":"A Minor Problem","episode_number":"507"},"name":"The Incredible Hulk","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4075-16/","start_year":"1977-1982"},{"aliases":"The Adventures of Batman & Robin\r\nBatman: TAS\r\nBTAS\r\nThe New Batman/Superman Adventures","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-17/","count_of_episodes":85,"date_added":"2013-09-24 14:03:50","date_last_updated":"2013-11-23 15:18:44","deck":"Considered by many to be the best Batman TV show, this show started the famous DCAU and recreates characters and creates new characters in ways that were later picked up by the mainstream DCU.","description":"

    Batman: The Animated Series was not aired in the same order the episodes were produced. All episodes are listed by production number.

    The last 20 episodes were known as The Adventures of Batman & Robin, where Robin was used more prominently. Production wise this is considered season 2 (episodes 66-85). The last episodes were aired in 1995.

    Episodes were also re-aired as a package show with Superman: The Animated Series under the title The New Batman/Superman Adventures.

    The series spawned two full-length features: Batman: Mask of the Phantasm and Batman & Mr. Freeze: Sub-Zero.

    These episodes were followed by The New Batman Adventures in 1997.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2162/","id":2162,"name":"The Cat and the Claw, Part One","episode_number":"115"},"id":17,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/66303/3332249-batman_the_animated_series_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/66303/3332249-batman_the_animated_series_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/66303/3332249-batman_the_animated_series_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/66303/3332249-batman_the_animated_series_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/66303/3332249-batman_the_animated_series_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/66303/3332249-batman_the_animated_series_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/66303/3332249-batman_the_animated_series_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/66303/3332249-batman_the_animated_series_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/66303/3332249-batman_the_animated_series_logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4446/","id":4446,"name":"The Lion and the Unicorn","episode_number":"177"},"name":"Batman: The Animated Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-574/","id":574,"name":"Warner Brothers"},"site_detail_url":"https://comicvine.gamespot.com/batman-the-animated-series/4075-17/","start_year":"1992-1995"},{"aliases":"Die Avengers – Die mächtigsten Helden der Welt","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-18/","count_of_episodes":52,"date_added":"2013-09-24 14:06:52","date_last_updated":"2016-12-31 16:32:34","deck":null,"description":"

    When the planet is threatened by Super Villains, time-traveling conquerors, alien invaders, mythical monsters or mad robots bent on the total destruction of humanity; when the forces of evil are so overwhelming that no single hero has the power to save the world; when there is no hope left, the AVENGERS ASSEMBLE!

    This series was replaced by Avengers Assemble, which premiered on July 7, 2013.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1344/","id":1344,"name":"Living Legend","episode_number":"109"},"id":18,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14787/3332209-6230092393-AVENG.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14787/3332209-6230092393-AVENG.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14787/3332209-6230092393-AVENG.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14787/3332209-6230092393-AVENG.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14787/3332209-6230092393-AVENG.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14787/3332209-6230092393-AVENG.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14787/3332209-6230092393-AVENG.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14787/3332209-6230092393-AVENG.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14787/3332209-6230092393-AVENG.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1456/","id":1456,"name":"Powerless","episode_number":"215"},"name":"The Avengers: Earth's Mightiest Heroes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-avengers-earths-mightiest-heroes/4075-18/","start_year":"2010"},{"aliases":"Avengers – Gemeinsam unbesiegbar!\nAvengers : Ultron Revolution\nAvengers: Secret Wars","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-19/","count_of_episodes":103,"date_added":"2013-09-24 14:10:23","date_last_updated":"2018-12-06 02:58:51","deck":null,"description":"

    With an all-star roster consisting of Iron Man, Captain America, Thor, Hulk, Hawkeye, Falcon and, occasionally--when she feels like it and only when she feels like it--Black Widow, the Avengers are a team in the truest sense. The Avengers save the world from the biggest threats imaginable--threats no single super hero could withstand.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25043/","id":25043,"name":"Avengers No More: Part One","episode_number":"401"},"id":19,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14787/3332265-0183381462-Marve.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14787/3332265-0183381462-Marve.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14787/3332265-0183381462-Marve.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14787/3332265-0183381462-Marve.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14787/3332265-0183381462-Marve.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14787/3332265-0183381462-Marve.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14787/3332265-0183381462-Marve.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14787/3332265-0183381462-Marve.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14787/3332265-0183381462-Marve.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-25065/","id":25065,"name":"The Citadel","episode_number":"423"},"name":"Avengers Assemble","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"site_detail_url":"https://comicvine.gamespot.com/avengers-assemble/4075-19/","start_year":"2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-20/","count_of_episodes":65,"date_added":"2013-09-24 14:13:46","date_last_updated":"2013-10-02 02:56:23","deck":null,"description":"

    Spider-Man: The Animated Series aired on Fox Kids between November 1994 and January 1998 and ran for 5 seasons (65 episodes). The series starred Spider-Man and featured many of the character's supporting cast and villains as well as guest appearances from other corners of the Marvel Universe. Written by John Semper Jr and produced by Marvel Films Animation, the series adapted several classic Spider-Man stories and featured a crossover with X-Men: The Animated Series.

    Hugely successful around the world, Spider-Man: The Animated Series is generally acclaimed to be the most accurate TV adaptation of the famous web-slinger. Originally the show was created to accompany the James Cameron Spider-Man movie, however that film was scrapped. This is one of the reasons the show doesn't show Spider-Man's origin until the third season.

    Stan Lee, Avi Arad, and Bill Kerstetter were the executive producers of the show. Stan Lee claimed to check \"everything to do with putting the show together\" to ensure the stories were told faithfully. Veteran writers Gerry Conway and Marv Wolfman were among those chosen to write scripts for the show.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1318/","id":1318,"name":"Six Forgotten Warriors Chapter 1: Six Forgotten Warriors","episode_number":"502"},"id":20,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117930/3332280-2piscllutfxcxds.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117930/3332280-2piscllutfxcxds.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117930/3332280-2piscllutfxcxds.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117930/3332280-2piscllutfxcxds.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117930/3332280-2piscllutfxcxds.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117930/3332280-2piscllutfxcxds.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117930/3332280-2piscllutfxcxds.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117930/3332280-2piscllutfxcxds.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117930/3332280-2piscllutfxcxds.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1317/","id":1317,"name":"The Wedding","episode_number":"501"},"name":"Spider-Man: The Animated Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/spider-man-the-animated-series/4075-20/","start_year":"1994"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-21/","count_of_episodes":460,"date_added":"2013-09-24 14:14:11","date_last_updated":"2020-01-26 20:46:25","deck":"One Piece is an anime adaptation of Eiichiro Oda's manga. Following the adventures of Luffy and his mischievous friends out to find One Piece, and in their adventure they will find many enemies and friends that will help them in their journey.","description":"

    One Piece (ワンピース, Wan Pīsu) is a direct anime adaptation of the hit manga One Piece that was created by the now acclaimed manga artist/author Eiichiro Oda. One Piece is an adventure/comedy series that follows in the path of the series Oda took inspiration in. It is produced by the Toei Animation studio and has aired in Japan on both the Fuji TV and Animax networks. It is mainly targeted toward a younger male audience, but does have cross gender appeal. The first episode originally aired on October 20, 1999.

    Originally being distributed to the U.S. by the 4Kids company. They lost the rights and were later acquired by the FUNimation company in 2007. They would later go on to streaming the latest episode out of Japan with subtitles off their official website. The episodes are currently being added to the FUNimation site one hour after they air in Japan.

    One Piece Movie Chronology

    1. One Piece: The Movie
    2. Adventure Of Spiral Island
    3. Chopper's Kingdom on the Island of Strange Animals
    4. Dead End Adventure
    5. The Cursed Holy Sword
    6. Baron Omatsuri and the Secret Island
    7. The Giant Mechanical Soldier of Karakuri Castle
    8. Episode of Alabasta: The Desert Princess and the Pirates
    9. Episode of Chopper Plus: Bloom in Winter, Miracle Sakura
    10. One Piece Film: Strong World
    11. One Piece 3D: Straw Hat Chase
    12. One Piece Film: Z
    13. One Piece Film: Gold
    14. One Piece: Stampede

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1142/","id":1142,"name":"A Battle in the Heat! Luffy vs. The Giant Dragon!","episode_number":"580"},"id":21,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3332282-5549479837-45188.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3332282-5549479837-45188.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3332282-5549479837-45188.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3332282-5549479837-45188.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3332282-5549479837-45188.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3332282-5549479837-45188.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3332282-5549479837-45188.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3332282-5549479837-45188.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3332282-5549479837-45188.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-16897/","id":16897,"name":"Rivalry of Warriors! B Block on Fire!","episode_number":"637"},"name":"One Piece","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/one-piece/4075-21/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-22/","count_of_episodes":220,"date_added":"2013-09-24 14:49:47","date_last_updated":"2013-09-24 20:42:59","deck":"Naruto is the anime adaptation of the Naruto manga series. Naruto Uzumaki is a misfit ninja who dreams to become the greatest ninja of them all.","description":"

    Naruto (ナルト, Naruto) is the first anime based upon the manga series Naruto, created by the writer and artist Masashi Kishimoto. The series was directed by Hayato Date, music by Toshio Masuda. It's a shonen action series in the tradition of Dragon Ball. It is produced by the Studio Pierrot and has aired in Japan on both the TV Tokyo and Animax networks. It is mainly targeted toward a younger male audience, but does have cross gender appear. the first episode originally aired on October 3, 2002.

    After Episode 135 of the Naruto anime that aired in May of 2005, the series began a constant run of filler episodes that would last till the series end with Episode 220 that aired in February 8th 2007. At which point, the Naruto Shippuden series picked up the Naruto manga story from the point of the beginning of a two year time skip and much of the younger cast grew and developed in skill.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-115/","id":115,"name":"He Appears! Naruto Uzumaki","episode_number":"101"},"id":22,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3332376-3669668489-2175-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3332376-3669668489-2175-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3332376-3669668489-2175-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3332376-3669668489-2175-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3332376-3669668489-2175-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3332376-3669668489-2175-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3332376-3669668489-2175-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3332376-3669668489-2175-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3332376-3669668489-2175-.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-17570/","id":17570,"name":"Departure","episode_number":"535"},"name":"Naruto","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/naruto/4075-22/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-23/","count_of_episodes":500,"date_added":"2013-09-24 15:01:41","date_last_updated":"2019-03-16 15:11:43","deck":"Naruto Shippuuden is the continuation of the series Naruto, taking place two and a half years after the end of the original series.","description":"

    Naruto Uzumaki wants to be the best ninja in the land. He's done well so far, but with the looming danger posed by the mysterious Akatsuki organization, Naruto knows he must train harder than ever and leaves his village for intense exercises that will push him to his limits.

    Naruto Shippuden (ナルト 疾風伝, Naruto Shippūden) is the second anime based on the manga series Naruto, created by the writer and artist Masashi Kishimoto. The series is directed by Hayato Date, with music by Yasuharu Takanashi and -yaiba-. It's a shonen action series in the tradition of Dragon Ball. It is produced by Studio Pierrot and has aired in Japan on both the TV Tokyo and Animax networks. It is mainly targeted towards a younger male audience but does have cross-gender appeal. The first episode originally aired on February 15, 2007. Crunchyroll began to simulcast the series starting with episode #91 in July 2009, it also added 8 older episode along with the latest episode every week, to build its back-catalog.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-26168/","id":26168,"name":"The Infinite Dream","episode_number":"2012"},"id":23,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3332399-6298950321-42814.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3332399-6298950321-42814.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3332399-6298950321-42814.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3332399-6298950321-42814.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3332399-6298950321-42814.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3332399-6298950321-42814.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3332399-6298950321-42814.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3332399-6298950321-42814.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3332399-6298950321-42814.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-26243/","id":26243,"name":"The Message","episode_number":"2120"},"name":"Naruto Shippuden","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/naruto-shippuden/4075-23/","start_year":"2007"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-24/","count_of_episodes":366,"date_added":"2013-09-24 15:40:44","date_last_updated":"2014-11-23 12:54:16","deck":"BLEACH is the anime adaptation of the Bleach manga series that ran from 2004-2012. Ichigo Kurosaki has been able to see ghosts his whole life. Now, the Hollows are coming after him.","description":"

    BLEACH (ブリーチ, Burīchi) is based upon the original BLEACH manga that was created by Tite Kubo. The series is directed by Noriyuki Abe, and the music by Shiro Sagisu. It's a shonen action series that was produced for a young male audience and older. It was produced by Studio Pierrot, the same production studio as Naruto and Naruto Shippuden; and Dentsu. It's aired in Japan on various distributors, such as TV Tokyo.The first episode originally aired on October 5, 2004. The series has followed much of the original mangas story arcs but with various filler arcs in between. Many of these filler arcs have appeared within the middle of canon arcs. Unlike many other anime, some characters that appear in the filler episodes have played roles in the canon story.

    On June 8th 2010, Crunchyroll began simulcasting the series starting with the latest episode at the time, episode #274. Crunchyroll also began adding previous episodes to their online catalog.

    The BLEACH anime was eventually canceled after Episode 366, which aired on March 27, 2012. This was as the series concluded what would be the arc before the series finale arc.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-134/","id":134,"name":"The Day I Became A Shinigami","episode_number":"101"},"id":24,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3332450-4018930770-2174-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3332450-4018930770-2174-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3332450-4018930770-2174-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3332450-4018930770-2174-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3332450-4018930770-2174-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3332450-4018930770-2174-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3332450-4018930770-2174-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3332450-4018930770-2174-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3332450-4018930770-2174-.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-15529/","id":15529,"name":"Changing History, Unchanging Heart","episode_number":"1624"},"name":"BLEACH","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/b-l-e-a-c-h/4075-24/","start_year":"2004-2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-25/","count_of_episodes":52,"date_added":"2013-09-24 15:54:12","date_last_updated":"2019-10-12 06:51:00","deck":"X-Men: Evolution was an animated series based on the X-Men comic books. It aired on Kids' WB and ran between 2000 and 2003.","description":"

    Description:

    X-Men: Evolution takes place in upstate New York in the town of Bayville. The Xavier Students train at the Xavier Institute as the X-Men, while trying to keep their powers a secret. To that end, they try to blend in by attending the local high school, Bayville High, where they also run into their enemies: the Brotherhood.

    Contribution to Comic Books

    While this series is originally based on comic books, it actually created new characters, who would later be introduced to the comic books.

    \"X-23
    X-23 as she appeared in her debut

    X-23 first appeared in season 3 in the episode \"X23,\" and later in \"Target X\" as well as the series finale. While in the comic books she was created by the Facility, an off-shoot of Weapon X, in the animated series X-23 was created by HYDRA.

    X-23 was created by Craig Kyle. She was voiced by Andrea Libman in her first appearance in \"X23,\" though was later voiced by Britt Irvin in \"Target X.\"

    X-23 would later make her comic book debut in NYX #3.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-639/","id":639,"name":"African Storm","episode_number":"207"},"id":25,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/41224/5280818-x-men%20evolution%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/41224/5280818-x-men%20evolution%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/41224/5280818-x-men%20evolution%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/41224/5280818-x-men%20evolution%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/41224/5280818-x-men%20evolution%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/41224/5280818-x-men%20evolution%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/41224/5280818-x-men%20evolution%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/41224/5280818-x-men%20evolution%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/41224/5280818-x-men%20evolution%20logo.jpg","image_tags":"All Images,Wiki - X-Men Evolution Title Cards"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-675/","id":675,"name":"X23","episode_number":"310"},"name":"X-Men: Evolution","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/xmen-evolution/4075-25/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-26/","count_of_episodes":76,"date_added":"2013-09-24 16:11:03","date_last_updated":"2018-05-24 16:34:16","deck":null,"description":"

    X-Men: The Animated Series aired from 1992-1997 on Fox Kids and ran for 5 seasons. The series adapted many classic X-Men stories, ranging from the Dark Phoenix Saga to Age of Apocalypse, and starred a core team of X-Men mostly based on the team featured in the then recent Claremont/Lee X-Men book (Beast, Cyclops, Gambit, Jean Grey, Jubilee, Professor X, Rogue, Storm, Wolverine) and the series also featured recurring appearances from other X-Men members (most notably sizeable appearances by Colossus, Morph and Nightcrawler). Other X-Men teams, such as X-Factor, also appeared multiple times in the show. Interestingly, despite lasting 5 seasons and featuring the majority of iconic X-Men characters, Kitty Pryde never appeared in the show.

    Seasons 3 and 4 were mostly aired out of order causing inconsistencies and continuity problems between episodes. The series was originally intended to finish with Season 4 but 8 more episodes were ordered at the last minute resulting in the fifth season which featured animation by a different studio and many voice actors being replaced.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-147/","id":147,"name":"Night of the Sentinels (Part 1)","episode_number":"101"},"id":26,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/92932/3334060-x-men%20animated.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/92932/3334060-x-men%20animated.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/92932/3334060-x-men%20animated.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/92932/3334060-x-men%20animated.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/92932/3334060-x-men%20animated.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/92932/3334060-x-men%20animated.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/92932/3334060-x-men%20animated.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/92932/3334060-x-men%20animated.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/92932/3334060-x-men%20animated.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-469/","id":469,"name":"Graduation Day","episode_number":"510"},"name":"X-Men: The Animated Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/xmen-the-animated-series/4075-26/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-27/","count_of_episodes":161,"date_added":"2013-09-24 16:21:17","date_last_updated":"2021-09-05 22:27:07","deck":"Police officer Rick Grimes leads a group of survivors in a world overrun by zombies. Fighting for their lives each day and trying to find and establish a new home in a world riddled with not just zombies, but also something more dangerous, human beings.","description":"

    Based on the comic book series written and created by Robert Kirkman and published by Skybound, his imprint at Image Comics. The series is executive produced by show runner Angela Kang, Scott Gimple, Robert Kirkman, Gale Anne Hurd, Greg Nicotero, David Alpert and Tom Luse.

    Episodes

    • Season 1 (2010) - 6 Episodes
    • Season 2 (2011-12) - 13 Episodes
    • Season 3 (2012-13) - 16 Episodes
    • Season 4 (2013-14) - 16 Episodes
    • Season 5 (2014-15) - 16 Episodes
    • Season 6 (2015-16) - 16 Episodes
    • Season 7 (2016-17) - 16 Episodes
    • Season 8 (2017-18) - 16 Episodes
    • Season 9 (2018-19) - 16 Episodes
    • Season 10 (2019-21) - 22 Episodes
    • Season 11 (2021-22) - 24 Episodes

    Main Cast

    Season 1:

    • Andrew Lincoln as Rick Grimes (6/6 episodes)
    • Jon Bernthal as Shane Walsh (6/6 episodes)
    • Sarah Wayne Callies as Lori Grimes (6/6 episodes)
    • Laurie Holden as Andrea (5/6 episodes)
    • Jeffrey DeMunn as Dale Horvath (6/6 episodes)
    • Steven Yeun as Glenn Rhee (6/6 episodes)
    • Chandler Riggs as Carl Grimes (6/6 episodes)

    Season 2:

    • Andrew Lincoln as Rick Grimes (13/13 episodes)
    • Jon Bernthal as Shane Walsh (12/13 episodes)
    • Sarah Wayne Callies as Lori Grimes (13/13 episodes)
    • Laurie Holden as Andrea (13/13 episodes)
    • Jeffrey DeMunn as Dale Horvath (10/13 episodes)
    • Steven Yeun as Glenn Rhee (12/13 episodes)
    • Chandler Riggs as Carl Grimes (12/13 episodes)
    • Norman Reedus as Daryl Dixon (12/13 episodes)

    Season 3:

    • Andrew Lincoln as Rick Grimes (15/16 episodes)
    • Sarah Wayne Callies as Lori Grimes (10/16 episodes)
    • Laurie Holden as Andrea (13/16 episodes)
    • Norman Reedus as Daryl Dixon (13/16 episodes)
    • Steven Yeun as Glenn Rhee (13/16 episodes)
    • Lauren Cohan as Maggie Greene (13/16 episodes)
    • Chandler Riggs as Carl Grimes (14/16 episodes)
    • Danai Gurira as Michonne Hawthorne (15/16 episodes)
    • Michael Rooker as Merle Dixon (11/16 episodes)
    • David Morrissey as Philip Blake (13/16 episodes)

    Season 4:

    • Andrew Lincoln as Rick Grimes (11/16 episodes)
    • Norman Reedus as Daryl Dixon (11/16 episodes)
    • Steven Yeun as Glenn Rhee (10/16 episodes)
    • Lauren Cohan as Maggie Greene (10/16 episodes)
    • Chandler Riggs as Carl Grimes (10/16 episodes)
    • Danai Gurira as Michonne Hawthorne (11/16 episodes)
    • Melissa McBride as Carol Peletier (7/16 episodes)
    • Scott Wilson as Hershel Greene (8/16 episodes)
    • David Morrissey as Philip Blake (5/16 episodes)

    Season 5:

    • Andrew Lincoln as Rick Grimes (14/16 episodes)
    • Norman Reedus as Daryl Dixon (14/16 episodes)
    • Steven Yeun as Glenn Rhee (14/16 episodes)
    • Lauren Cohan as Maggie Greene (13/16 episodes)
    • Chandler Riggs as Carl Grimes (12/16 episodes)
    • Danai Gurira as Michonne Hawthorne (12/16 episodes)
    • Melissa McBride as Carol Peletier (14/16 episodes)
    • Michael Cudlitz as Abraham Ford (13/16 episodes)
    • Emily Kinney as Beth Greene (5/16 episodes)
    • Chad Coleman as Tyreese Williams (8/16 episodes)

    Season 6:

    • Andrew Lincoln as Rick Grimes (14/16 episodes)
    • Norman Reedus as Daryl Dixon (12/16 episodes)
    • Steven Yeun as Glenn Rhee (10/16 episodes)
    • Lauren Cohan as Maggie Greene (12/16 episodes)
    • Chandler Riggs as Carl Grimes (10/16 episodes)
    • Danai Gurira as Michonne Hawthorne (12/16 episodes)
    • Melissa McBride as Carol Peletier (11/16 episodes)
    • Michael Cudlitz as Abraham Ford (10/16 episodes)
    • Lennie James as Morgan Jones (11/16 episodes)
    • Sonequa Martin-Green as Sasha Williams (10/16 episodes)

    Season 7:

    • Andrew Lincoln as Rick Grimes (10/16 episodes)
    • Norman Reedus as Daryl Dixon (10/16 episodes)
    • Steven Yeun as Glenn Rhee (2/16 episodes)
    • Lauren Cohan as Maggie Greene (7/16 episodes)
    • Chandler Riggs as Carl Grimes (8/16 episodes)
    • Danai Gurira as Michonne Hawthorne (10/16 episodes)
    • Melissa McBride as Carol Peletier (7/16 episodes)
    • Michael Cudlitz as Abraham Ford (2/16 episodes)
    • Lennie James as Morgan Jones (7/16 episodes)
    • Sonequa Martin-Green as Sasha Williams (8/16 episodes)
    • Alanna Masterson as Tara Chambler (8/16 episodes)
    • Josh McDermitt as Eugene Porter (9/16 episodes)
    • Christian Serratos as Rosita Espinosa (11/16 episodes)
    • Jeffrey Dean Morgan as Negan Smith (10/16 episodes)

    Season 8:

    • Andrew Lincoln as Rick Grimes (15/16 episodes)
    • Norman Reedus as Daryl Dixon (15/16 episodes)
    • Lauren Cohan as Maggie Rhee (10/16 episodes)
    • Chandler Riggs as Carl Grimes (5/16 episodes)
    • Danai Gurira as Michonne Hawthorne (11/16 episodes)
    • Melissa McBride as Carol Peletier (11/16 episodes)
    • Lennie James as Morgan Jones (11/16 episodes)
    • Alanna Masterson as Tara Chambler (11/16 episodes)
    • Josh McDermitt as Eugene Porter (9/16 episodes)
    • Christian Serratos as Rosita Espinosa (11/16 episodes)
    • Seth Gilliam as Gabriel Stokes (7/16 episodes)
    • Ross Marquand as Aaron (8/16 episodes)
    • Jeffrey Dean Morgan as Negan Smith (11/16 episodes)

    Season 9:

    • Andrew Lincoln as Rick Grimes (5/16 episodes)
    • Norman Reedus as Daryl Dixon (16/16 episodes)
    • Lauren Cohan as Maggie Rhee (5/16 episodes)
    • Danai Gurira as Michonne Hawthorne (13/16 episodes)
    • Melissa McBride as Carol Peletier (12/16 episodes)
    • Alanna Masterson as Tara Chambler (10/16 episodes)
    • Josh McDermitt as Eugene Porter (11/16 episodes)
    • Christian Serratos as Rosita Espinosa (12/16 episodes)
    • Seth Gilliam as Gabriel Stokes (10/16 episodes)
    • Ross Marquand as Aaron (9/16 episodes)
    • Katelyn Nacon as Enid (7/16 episodes)
    • Tom Payne as Paul Rovia (8/16 episodes)
    • Khary Payton as Ezekiel (8/16 episodes)
    • Samantha Morton as Alpha (6/16 episodes)
    • Jeffrey Dean Morgan as Negan Smith (9/16 episodes)

    Season 10:

    • Norman Reedus as Daryl Dixon (20/22 episodes)
    • Danai Gurira as Michonne Hawthorne (6/22 episodes)
    • Melissa McBride as Carol Peletier (17/22 episodes)
    • Lauren Cohan as Maggie Rhee (4/22 episodes)
    • Christian Serratos as Rosita Espinosa (12/22 episodes)
    • Josh McDermitt as Eugene Porter (13/22 episodes)
    • Seth Gilliam as Gabriel Stokes (9/22 episodes)
    • Ross Marquand as Aaron (14/22 episodes)
    • Khary Payton as Ezekiel (10/22 episodes)
    • Ryan Hurst as Beta (11/22 episodes)
    • Samantha Morton as Alpha (13/22 episodes)
    • Jeffrey Dean Morgan as Negan Smith (14/22 episodes)

    Season 11:

    • Norman Reedus as Daryl Dixon (4/24 episodes)
    • Melissa McBride as Carol Peletier (2/24 episodes)
    • Lauren Cohan as Maggie Rhee (3/24 episodes)
    • Christian Serratos as Rosita Espinosa (2/24 episodes)
    • Josh McDermitt as Eugene Porter (2/24 episodes)
    • Seth Gilliam as Gabriel Stokes (3/24 episodes)
    • Ross Marquand as Aaron (2/24 episodes)
    • Khary Payton as Ezekiel (2/24 episodes)
    • Cooper Andrews as Jerry (1/24 episodes)
    • Callan McAuliffe as Alden (3/24 episodes)
    • Jeffrey Dean Morgan as Negan Smith (3/24 episodes)

    See The Walking Dead for more information on The Walking Dead franchise.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-260/","id":260,"name":"Days Gone Bye","episode_number":"101"},"id":27,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/142800/3332217-430540-the_walking_dead_04.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/142800/3332217-430540-the_walking_dead_04.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/142800/3332217-430540-the_walking_dead_04.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/142800/3332217-430540-the_walking_dead_04.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/142800/3332217-430540-the_walking_dead_04.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/142800/3332217-430540-the_walking_dead_04.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/142800/3332217-430540-the_walking_dead_04.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/142800/3332217-430540-the_walking_dead_04.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/142800/3332217-430540-the_walking_dead_04.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-34528/","id":34528,"name":"For Blood","episode_number":"1108"},"name":"The Walking Dead","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2861/","id":2861,"name":"Skybound"},"site_detail_url":"https://comicvine.gamespot.com/the-walking-dead/4075-27/","start_year":"2010"},{"aliases":"Code Geass: Hangyaku no Rurūshu","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-28/","count_of_episodes":50,"date_added":"2013-09-24 16:42:17","date_last_updated":"2013-09-25 14:28:50","deck":"Code Geass is an anime that was released at the same time as the manga in 2006 and ended in 2008.","description":"

    Code Geass: Lelouch of the Rebellion (コードギアス 反逆のルルーシュ, Kōdo Giasu: Hangyaku no Rurūshu)

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1299/","id":1299,"name":"The Princess and the Witch","episode_number":"105"},"id":28,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/41224/3332575-code%20geass%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/41224/3332575-code%20geass%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/41224/3332575-code%20geass%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/41224/3332575-code%20geass%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/41224/3332575-code%20geass%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/41224/3332575-code%20geass%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/41224/3332575-code%20geass%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/41224/3332575-code%20geass%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/41224/3332575-code%20geass%20logo.jpg","image_tags":"All Images,Wiki"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-176/","id":176,"name":"The Day a New Demon was Born","episode_number":"101"},"name":"Code Geass: Lelouch of the Rebellion","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/code-geass-lelouch-of-the-rebellion/4075-28/","start_year":"2006-2008"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-29/","count_of_episodes":26,"date_added":"2013-09-24 17:51:06","date_last_updated":"2022-02-16 12:38:21","deck":"A television series staring Van Williams as the Green Hornet and Bruce Lee as Kato.","description":"

    Lasting only one season, the show stars Van Williams as Green Hornet, Bruce Lee as Kato and Wende Wagner as Lenore Case.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-211/","id":211,"name":"The Silent Gun","episode_number":"101"},"id":29,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/7929170-greenhornet1966.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/7929170-greenhornet1966.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/7929170-greenhornet1966.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/7929170-greenhornet1966.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/7929170-greenhornet1966.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/7929170-greenhornet1966.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/7929170-greenhornet1966.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/7929170-greenhornet1966.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/7929170-greenhornet1966.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3685/","id":3685,"name":"Invasion from Outer Space (2)","episode_number":"126"},"name":"The Green Hornet","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/the-green-hornet/4075-29/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-30/","count_of_episodes":26,"date_added":"2013-09-24 19:00:46","date_last_updated":"2019-05-13 09:02:02","deck":null,"description":"

    Season 1 covers The Red Dragon Emperor's Awakening Arc.

    Theme Song

    Opening Theme Song - Trip-innocent of D-

    Lyrics by Kirishima Airi

    Composed by C.G MIX

    Arranged by C.G MIX and Ozaki Takeshi

    Performed by Larval Stage Planning

    Majiwariau sen to tooku yobikakeru sora

    Juuji no shita de mau senritsu no koe

    Yowasa nado kimi ni misetaku nai kara

    Kaze wo ukete furikitte susume

    Shoudou wo tokihanate! kakemeguri tsumoru ishi

    Sono me wo wasure wa shinai

    Kioku wo yurasu DrawxDelete ashita ni kaeru ima wo

    Mata rinne suru tomoshibi sotto hoho wo tsutau kurenai

    Itazura ni hohoemu shiroi toge no Maria

    Kizamareta kizuato umeteiku iro

    Honno sukoshi no yume wo se ni uketa nara

    Mamorinukeru kago yori mo tsuyoku

    Nayameru sekai no hate kodou ga takanatteiku

    Musubareshi sei no negai

    Namida ni nureru kimi ni kibou no ko egaku kara

    Mata rinne suru tomoshibi kitto kono na wa kakegaenai

    Futashika na towa to kibou kasanetara

    Meguru omoi mune ni sotto fureta

    Shoudou wo tokihanate! kakemeguri tsumoru ishi

    Sono me wo wasure wa shinai

    Kioku wo yurasu DrawxDelete hikari ni tachimukaou

    Saa tatakai no maku ake sotto mune ni tsutau kurenai

    Sou zettai makerarenai

    Ending Theme Song - Study X Study

    Written by Kodama Saori

    Composed and Arranged by Takada Kyou

    Performed by StylipS

    Saenai desho, konnan ja

    Watashi kimi no HAATO wo shidou shichau yo

    Dore dake sugoi no honto no tokoro wa?

    Naked soul, Wake UP↑

    Imaichi poin dakedo damasarete agenai

    Genzai shinkoukei yaru shikanai desho Don't you know? Baby

    Datte ima kyun toshite sanbyougo no hoshou wa nai no

    Yosougai KYACCHI shita SHIGUNARU kimi wa nani mo shiranai

    Tokimeki e to shinka shiteiru no wa

    NO-NO-NO TOPPU SHIIKURETTO naisho NAISHO desu

    Ieru wake ga na-i!

    STUDY NOW!! renaiteki KARIKYURAMU nyuumonhen de tsumazukanai de

    Keshigomu ja kesenai yo mune ni choku de kaichau no

    Tenkai wa kibun shidai!? kakugo shite aishou nante shinjinai

    Shunkan ga daiji nanda STUDYxSTUDY motto shitai na

    Boy meets Girl kitto UNMEI

    STUDYxSTUDY koi wa KIMAGURE

    Boy meets Girl saa goisshoni

    Hajimeyo

    otenami haiken doryoku no seika wa?

    Naked soul, kakusei

    Heijoushin no PINCHI ikinari de aseru

    Gyakuten SHIISOO GEEMU osarechashaku da yo Don't you know? Baby

    Datte sakki mutto shite nanda kanda yurushite shimau

    Mitsumetara gyutto atsuku naru kawatteiku no wakaru

    Konna toki wa nante ieba ii no?

    Shishishi Thinking time matte matte yo

    Suki! de seikai??

    HURRY UP!! renairyoku kyoukachuu RESSUN WAN kara susumenai

    Kono mama ja kimi no koto dareka ni torarechai sou

    TAIMINGU wa kocchi de tsukuritai kono tsugi nante konai no

    Tsuishi kibou aitai ne SYUDYxSTUDY motto shinakucha

    Boy meets Girl zutto hitsuzen

    STUDYxSTUDY kyoukasho wa nai

    Boy meets Girl oteage nante

    ARIENAI! kara!

    RESSUN TSUU

    Saenai desho, konnan ja

    Aimai nante yada yo

    STUDY NOW!! renaiteki KARIKYURAMU nyuumonhen de tsumazukanai de

    Keshigomu ja kesenai yo mune ni choku de kaichau no

    Tenkai wa kibun shidai!? kakugo shite aishou nante shinjinai

    Shunkan ga daiji nanda STUDYxSTUDY motto shitai na

    Boy meets Girl kitto UNMEI

    STUDYxSTUDY koi wa KIMAGURE

    Boy meets Girl saa goisshoni

    Hajimeyo

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3877/","id":3877,"name":"A Strong Enemy Appeared!","episode_number":"204"},"id":30,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111112793/3332841-1274320491-High_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111112793/3332841-1274320491-High_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111112793/3332841-1274320491-High_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111112793/3332841-1274320491-High_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111112793/3332841-1274320491-High_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111112793/3332841-1274320491-High_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111112793/3332841-1274320491-High_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111112793/3332841-1274320491-High_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111112793/3332841-1274320491-High_.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3799/","id":3799,"name":"I'm Here to Keep My Promise!","episode_number":"112"},"name":"High School DXD","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4919/","id":4919,"name":"TNK"},"site_detail_url":"https://comicvine.gamespot.com/high-school-dxd/4075-30/","start_year":"2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-31/","count_of_episodes":120,"date_added":"2013-09-24 19:05:01","date_last_updated":"2017-06-25 15:18:07","deck":null,"description":"

    The classic live-action 1960s Batman TV series starring Adam West and Burt Ward

    A show that, while usually described as 'campy humor', was a success due to how all the actors were phenomenally awesome and because they played their roles very seriously. This show was also responsible for the Riddler becoming popular enough to move to A-list Bat villains and for setting the foundation for Mr. Freeze's origin that would later be refined and made canon in Batman: The Animated Series.

    It ran for three seasons and one movie set between seasons 1 and 2

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-561/","id":561,"name":"Smack in the Middle","episode_number":"102"},"id":31,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/112241/3332624-2930190488-1966_.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/112241/3332624-2930190488-1966_.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/112241/3332624-2930190488-1966_.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/112241/3332624-2930190488-1966_.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/112241/3332624-2930190488-1966_.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/112241/3332624-2930190488-1966_.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/112241/3332624-2930190488-1966_.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/112241/3332624-2930190488-1966_.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/112241/3332624-2930190488-1966_.JPG","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-13966/","id":13966,"name":"\"Minerva, Mayhem and Millionaires\"","episode_number":"326"},"name":"Batman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/batman/4075-31/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-32/","count_of_episodes":26,"date_added":"2013-09-24 19:06:22","date_last_updated":"2019-02-21 09:28:03","deck":"Beware the Batman is a computer animated TV show focusing on the early exploits of the Caped Crusader.","description":"

    A cool, new take on the classic Dark Knight franchise, Beware the Batman incorporates Batman’s core characters with a rogue gallery of new villains not previously seen in animated form. Along with backup from ex-secret agent Alfred and lethal swordstress Katana, the Dark Knight faces the twisted machinations of Gotham City’s criminal underworld led by the likes of Anarky, Professor Pyg, Mister Toad and Magpie. Produced by Warner Bros. Animation, this action-packed detective thriller deftly redefines what we have come to know as a “Batman show.” Featuring cutting-edge CGI visuals to match the intricate twists and turns of the narrative, Batman steps out of the shadows and into the spotlight for an entirely new generation of fans.

    Starring Anthony Ruivivar (Banshee) as Batman/Bruce Wayne, Beware The Batman boasts a stellar voice cast with JB Blanc (The Count of Monte Cristo) as Alfred and Sumalee Montano (ER) as Katana.

    With WBAs Sam Register executive producing, and Batman Beyond's Glen Murakami and Scooby-Doo! Mystery Incorporated's Mitch Watson producing, Beware The Batman is one of the more radical series based on the famed Dark Knight to be added to DC Nation, Cartoon Network’s Saturday morning programming block.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1195/","id":1195,"name":"Hunted","episode_number":"101"},"id":32,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64675/3332701-bat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64675/3332701-bat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64675/3332701-bat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64675/3332701-bat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64675/3332701-bat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64675/3332701-bat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64675/3332701-bat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64675/3332701-bat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64675/3332701-bat.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-14185/","id":14185,"name":"Alone","episode_number":"126"},"name":"Beware the Batman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/beware-the-batman/4075-32/","start_year":"2013"},{"aliases":"Young Justice: Invasion","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-33/","count_of_episodes":46,"date_added":"2013-09-24 19:06:50","date_last_updated":"2019-01-03 02:28:02","deck":null,"description":"

    A series based on the comic of the same name that aired on Cartoon Network from 2010-2013, focusing on the sidekicks of the Justice League.

    The second season was distinguished by the name \"Invasion\".

    Continues as web based series titled Young Justice: Outsiders.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1897/","id":1897,"name":"Happy New Year!","episode_number":"201"},"id":33,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64675/3332718-yj.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64675/3332718-yj.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64675/3332718-yj.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64675/3332718-yj.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64675/3332718-yj.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64675/3332718-yj.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64675/3332718-yj.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64675/3332718-yj.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64675/3332718-yj.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1922/","id":1922,"name":"Endgame","episode_number":"220"},"name":"Young Justice","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/young-justice/4075-33/","start_year":"2010"},{"aliases":"Hulk and the Agents of SMASH\r\nHulk und das Team S.M.A.S.H.","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-34/","count_of_episodes":52,"date_added":"2013-09-24 19:10:22","date_last_updated":"2015-05-09 10:17:28","deck":"Hulk and the Agents of S.M.A.S.H. is an American cartoon series based on the superhero character by Marvel Comics.","description":"

    Hulk and the agents of S.M.A.S.H. is a new show created by Disney centered around the \"hulk family\" of the Marvel Universe, the main characters being Hulk, She-Hulk, Red-Hulk, A-bomb, and Skarr. The show makes changes to the characters, the most prominent being that Hulk has full intelligence and has less of a hair trigger than any other versions of himself. The second is that none of the Hulks have shown to be able to change back to human form. The show details the Hulks lives living together, dealing with each others differences and pasts while saving the world and trying to prove they are more than monsters.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1593/","id":1593,"name":"Doorway to Destruction Part 2","episode_number":"102"},"id":34,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111119888/3332778-image.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111119888/3332778-image.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111119888/3332778-image.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111119888/3332778-image.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111119888/3332778-image.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111119888/3332778-image.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111119888/3332778-image.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111119888/3332778-image.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111119888/3332778-image.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-18776/","id":18776,"name":"Planet Monster: Part 2","episode_number":"226"},"name":"Hulk and the Agents of S.M.A.S.H.","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/hulk-and-the-agents-of-s-m-a-s-h/4075-34/","start_year":"2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-35/","count_of_episodes":36,"date_added":"2013-09-24 19:44:25","date_last_updated":"2014-04-06 08:26:44","deck":null,"description":"

    A cartoon that aired on Fox Kids based on the comic book.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-250/","id":250,"name":"The Tick vs. The Idea Men","episode_number":"101"},"id":35,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/83918/3332917-the%20tick%20title.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/83918/3332917-the%20tick%20title.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/83918/3332917-the%20tick%20title.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/83918/3332917-the%20tick%20title.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/83918/3332917-the%20tick%20title.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/83918/3332917-the%20tick%20title.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/83918/3332917-the%20tick%20title.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/83918/3332917-the%20tick%20title.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/83918/3332917-the%20tick%20title.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-510/","id":510,"name":"Tick vs. Education","episode_number":"310"},"name":"The Tick","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1121/","id":1121,"name":"New England Comics"},"site_detail_url":"https://comicvine.gamespot.com/the-tick/4075-35/","start_year":"1994"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-36/","count_of_episodes":174,"date_added":"2013-09-24 19:57:58","date_last_updated":"2020-03-13 08:58:47","deck":null,"description":"
    \"No

    Doctor Who's popularity is on-going with a cult following that stretches all the way from New Zealand to Los Angeles via Britain. The new incarnation of the Doctor will travel much further afield. With high production values, innovative CGI from Oscar-winning company The Mill, an all-star cast and scripts from the cream of British writers led by Russell T Davies, Doctor Who is the ultimate adventure in the human race -- gripping, breathtaking and action-packed.

    Revival of the classic 1963-1989 Doctor Who series.

    The Doctors

    So far the revival of Doctor Who has had 6 actors play the Doctor. They are the following ...

    • Christopher Eccleston (9th Doctor, 2005)
    • David Tennant (10th Doctor, 2005 - 2010)
    • Matt Smith (11th Doctor, 2010 - 2013)
    • Peter Capaldi (12th Doctor, 2013-2017)
    • Jodie Whittaker (13th Doctor, Present)

    The War Doctor is played by John Hurt and debuted in the series 7 finale 'The Name of The Doctor' in 2013. He regenerates from the Eighth Doctor in 'Night of the Doctor'

    The Companions

    Ever since Doctor Who has returned in 2005 the show has had a number of main companions as well as other supporting ones (Main ones are in Bold)

    • Rose Tyler
    • Adam Mitchell
    • Jack Harkness
    • Mickey Smith
    • Martha Jones
    • Astrid Peth
    • Donna Noble
    • Jackson Lake
    • Christina de Souza
    • Wilfred Mott
    • Amy Pond
    • Rory Williams
    • River Song
    • Clara Oswald
    • Nardole
    • Bill Potts
    • Graham O'Brien
    • Yasmin Khan
    • Ryan Sinclair

    Story Arcs

    Ever since the show started in 2005 each series has had a story arc that lead up to the end of the series. At the end of each series they also explain why that word or topic has been appearing. 2 story arcs have gone over 2 seasons and 1 has been going since the start of the show in 2005. They are as following...

    • Series 1 - Bad Wolf
    • Series 2 - Torchwood
    • Series 3 - John Saxon
    • Series 4 - The Medusa Cascade (others were used but this is the major one)
    • Series 4 and 2009 specials - 4 Knocks
    • Series 5 - Cracks in Time
    • Series 5 and Series 6 - Silence will Fall
    • Series 7 - Who is Clara Oswald?
    • Series 8 - Who is Missy, and what is the promised land?
    • Series 9 - The Hybrid
    • Series 10 - The Vault
    • Series 11-12 - The Timeless Child

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-255/","id":255,"name":"Rose","episode_number":"101"},"id":36,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/3332936-ecclestonalt.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/3332936-ecclestonalt.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/3332936-ecclestonalt.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/3332936-ecclestonalt.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/3332936-ecclestonalt.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/3332936-ecclestonalt.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/3332936-ecclestonalt.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/3332936-ecclestonalt.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/3332936-ecclestonalt.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-37257/","id":37257,"name":"Legend of the Sea Devils","episode_number":"1308"},"name":"Doctor Who","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2797/","id":2797,"name":"BBC Magazines"},"site_detail_url":"https://comicvine.gamespot.com/doctor-who/4075-36/","start_year":"2005"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-37/","count_of_episodes":75,"date_added":"2013-09-24 20:26:25","date_last_updated":"2014-09-07 18:16:49","deck":"The third live action TV series in the star trek universe and the first not to be based on a starship.","description":"

    Star Trek: Deep Space Nine (DS9) focuses on the 24th century adventures of Captain Benjamin Sisko on space station Deep Space 9, an outpost situated near the mouth of a stable wormhole on the far reaches of explored space. Although Sisko commands Deep Space 9, the station actually belongs to the inhabitants of nearby Bajor, who requested Starfleet’s protective presence after Bajoran freedom fighters put an end to the brutal Cardassian occupation of their world.

    Approximately a sixth of the station’s 300 permanent residents are Starfleet personnel; there is also a sizable Bajoran militia presence. The rest of Deep Space 9’s inhabitants are civilians, most of whom work in the station’s Promenade, a kind of indoor marketplace.

    Initially, Sisko’s mandate from Starfleet was to protect Bajor and the station from any hostiles who ventured into the area. But with the discovery of the nearby wormhole—a shortcut through space that leads directly to the uncharted Gamma quadrant—Sisko’s mandate has expanded exponentially, as the region becomes the gateway to all manner of visitors, both friendly and extremely hostile.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3898/","id":3898,"name":"Emissary","episode_number":"101 & 102"},"id":37,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134028/3332979-ds9logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134028/3332979-ds9logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134028/3332979-ds9logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134028/3332979-ds9logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134028/3332979-ds9logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134028/3332979-ds9logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134028/3332979-ds9logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134028/3332979-ds9logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134028/3332979-ds9logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-36977/","id":36977,"name":"Trials and Tribble-ations","episode_number":"506"},"name":"Star Trek: Deep Space Nine","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4615/","id":4615,"name":"Paramount Pictures"},"site_detail_url":"https://comicvine.gamespot.com/star-trek-deep-space-nine/4075-37/","start_year":"1993 - 1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-38/","count_of_episodes":65,"date_added":"2013-09-24 20:30:32","date_last_updated":"2016-04-16 18:57:00","deck":"A Batman animated series that aired on Kid's WB from 2004-2008 following a younger, more inexperienced Batman in his third year as he encounters his classic Rogues' Gallery for the first time in Gotham; as well as familiar characters from the comics, and some unique to the show.","description":"

    The series is set in its own universe, separate from all the others. The character designs were provided by artist Jeff Matsuda who was also a producer on the show. The show's style was very Manga/Anime influenced, resulting in mixed reactions from fans.

    The series ran for five seasons, 65 episodes, and spawned an animated movie and comic series. The Batman won a total of six Daytime Emmy Awards during its span.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-534/","id":534,"name":"The Bat in the Belfry","episode_number":"101"},"id":38,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64675/3332981-thebatman.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64675/3332981-thebatman.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64675/3332981-thebatman.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64675/3332981-thebatman.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64675/3332981-thebatman.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64675/3332981-thebatman.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64675/3332981-thebatman.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64675/3332981-thebatman.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64675/3332981-thebatman.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4229/","id":4229,"name":"Lost Heroes: Part 1","episode_number":"512"},"name":"The Batman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/the-batman/4075-38/","start_year":"2004"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-40/","count_of_episodes":25,"date_added":"2013-09-24 21:51:24","date_last_updated":"2021-05-23 21:03:11","deck":"2003 Emmy-award winning series that chronicles events from the Clone Wars.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-375/","id":375,"name":"Chapter 1","episode_number":"101"},"id":40,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132327/3333118-cwclonewarsposter.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132327/3333118-cwclonewarsposter.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132327/3333118-cwclonewarsposter.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132327/3333118-cwclonewarsposter.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132327/3333118-cwclonewarsposter.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132327/3333118-cwclonewarsposter.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132327/3333118-cwclonewarsposter.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132327/3333118-cwclonewarsposter.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132327/3333118-cwclonewarsposter.jpg","image_tags":"All Images,Star Wars"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1366/","id":1366,"name":"Chapter 25","episode_number":"305"},"name":"Star Wars: Clone Wars","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-464/","id":464,"name":"Disney"},"site_detail_url":"https://comicvine.gamespot.com/star-wars-clone-wars/4075-40/","start_year":"2003-2005"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-41/","count_of_episodes":69,"date_added":"2013-09-24 22:21:56","date_last_updated":"2013-10-30 14:46:12","deck":"The one, the only 'Star Trek'","description":"

    Star Trek is a gateway to the future with adventures that take place hundreds of years from now. The denizens of the Star Trek universe are intensely curious and eager to learn about life beyond their own backyard. They travel through space, seeking out \"new life and new civilizations,\" in large ships that travel faster than the speed of light. These starships are crewed with personnel who serve in Starfleet, an agency chartered by the United Federation of Planets (UFP) to conduct exploratory, scientific, diplomatic and defensive operations in deep space.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3763/","id":3763,"name":"A Taste of Armageddon","episode_number":"123"},"id":41,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134028/3333219-logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134028/3333219-logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134028/3333219-logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134028/3333219-logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134028/3333219-logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134028/3333219-logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134028/3333219-logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134028/3333219-logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134028/3333219-logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20565/","id":20565,"name":"Elaan of Troyius","episode_number":"313"},"name":"Star Trek","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/star-trek/4075-41/","start_year":"1966 - 1969"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-42/","count_of_episodes":22,"date_added":"2013-09-24 22:26:07","date_last_updated":"2013-09-24 23:11:19","deck":"The first Star Trek spin off, 'Star Trek The Animated Series'.\nThis series finishes off the the enterprise's 5 year mission.","description":"

    Star Trek: The Animated Series premiered in 1973 as a Saturday morning cartoon - four years after The Original Series' final season. The series' 22 episodes featured characters voiced by their original actors and was the first Star Trek series to win an Emmy Award.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-27066/","id":27066,"name":"Beyond the Farthest Star","episode_number":"101"},"id":42,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134028/3333223-tas%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134028/3333223-tas%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134028/3333223-tas%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134028/3333223-tas%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134028/3333223-tas%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134028/3333223-tas%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134028/3333223-tas%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134028/3333223-tas%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134028/3333223-tas%20logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-27087/","id":27087,"name":"The Counter-Clock Incident","episode_number":"206"},"name":"Star Trek: The Animated Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4615/","id":4615,"name":"Paramount Pictures"},"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-animated-series/4075-42/","start_year":"1973 - 1974"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-43/","count_of_episodes":56,"date_added":"2013-09-24 22:29:37","date_last_updated":"2015-09-14 13:54:45","deck":"A new crew, a new enterprise and a new time period.","description":"

    Star Trek: The Next Generation (TNG) focuses on the 24th century adventures of Captain Jean-Luc Picard aboard the U.S.S. Enterprise (NCC-1701-D). This incarnation of the famous starship is much larger than the one captained by James T. Kirk a century earlier, and, accordingly, it carries a larger crew complement: 1,012 men, women…and, surprisingly, children. This era’s Starfleet Command believes that men and women are more likely to sign up for long-term exploratory missions if they think of their ship as home. Thus, Picard’s crew enjoys many of the comforts they’d have otherwise left behind, including a wide variety of recreational opportunities, “replicated” food dishes to suit every palate, and quarters large enough to share with spouses and offspring. There are schools for the children and a bar (stocked with synthetic alcohol, or synthehol) where the adults can unwind. However, the ongoing mission—no longer limited to a mere five years—remains virtually the same as it was during Kirk’s time: to seek out new life and new civilizations, and to boldly go where no one has gone before.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2125/","id":2125,"name":"Datalore","episode_number":"113"},"id":43,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134028/3333227-tng%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134028/3333227-tng%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134028/3333227-tng%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134028/3333227-tng%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134028/3333227-tng%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134028/3333227-tng%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134028/3333227-tng%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134028/3333227-tng%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134028/3333227-tng%20logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29689/","id":29689,"name":"Genesis","episode_number":"719"},"name":"Star Trek: The Next Generation","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4615/","id":4615,"name":"Paramount Pictures"},"site_detail_url":"https://comicvine.gamespot.com/star-trek-the-next-generation/4075-43/","start_year":"1987-1994"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-44/","count_of_episodes":24,"date_added":"2013-09-24 22:31:32","date_last_updated":"2013-09-24 23:07:29","deck":"Stuck 70,000 light years away from earth in the gamma quadrant, the crew of the USS Voyager have to get home.","description":"

    Star Trek: Voyager (VOY) focuses on the 24th century adventures of Captain Kathryn Janeway aboard the U.S.S. Voyager. Smaller than either Kirk’s or Picard’s starships—its crew complement is only 150—Voyager is fast and powerful, and has the ability to land on a planet’s surface. It is one of the most technologically advanced vessels in Starfleet, utilizing computer circuitry that incorporates synthetic neural tissue. Ironically, Janeway’s inaugural mission aboard Voyager was to be her last in the Alpha quadrant. While attempting to capture the crew of a renegade Maquis vessel, both her ship and that of the Maquis were pulled into the distant Delta quadrant by powerful alien technology. Unfortunately, there would be no similar “express” route to take them home again. Stranded 70,000 light-years from Earth, Janeway convinced the Maquis to join her Starfleet crew and serve together during the long voyage back to Federation space.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1610/","id":1610,"name":"Caretaker","episode_number":"101x02"},"id":44,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134028/3333228-voy%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134028/3333228-voy%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134028/3333228-voy%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134028/3333228-voy%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134028/3333228-voy%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134028/3333228-voy%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134028/3333228-voy%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134028/3333228-voy%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134028/3333228-voy%20logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-33602/","id":33602,"name":"Flashback","episode_number":"302"},"name":"Star Trek: Voyager","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4615/","id":4615,"name":"Paramount Pictures"},"site_detail_url":"https://comicvine.gamespot.com/star-trek-voyager/4075-44/","start_year":"1995 - 2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-45/","count_of_episodes":2,"date_added":"2013-09-24 22:35:16","date_last_updated":"2022-06-22 15:02:37","deck":"The prequel to Star Trek, 'Star Trek Enterprise'!","description":"

    Star Trek: Enterprise (ENT) focuses on the 22nd century adventures of Captain Jonathan Archer aboard the Enterprise NX-01 during the early days of interstellar travel. The NX designation indicates that this Enterprise is an experimental prototype; Archer’s ship is Earth’s first vessel designed for long-range exploration of the galaxy. Prior to the development of warp engines that could reach a velocity of warp 5, missions of this nature were impossible. At warp 2, only a handful of inhabited planets were within a year’s travel from Earth. But at warp 5, that number increases to ten thousand planets! It is Archer’s job to visit as many of those worlds as he can. At 190 meters long, the NX-01 is a bit smaller than Kirk’s Enterprise, and carries a crew complement of just eighty-three men and women, all human, with the exception of the Vulcan science officer and the Denobulan doctor. Unlike the starships of the four other Star Trek series, this Enterprise doesn’t have deflector shields or phasers, but it does come equipped with a phase cannon and a rudimentary transporter that functions efficiently most of the time.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3710/","id":3710,"name":"Broken Bow","episode_number":"101/102"},"id":45,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8544460-enterprise.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8544460-enterprise.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8544460-enterprise.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8544460-enterprise.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8544460-enterprise.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8544460-enterprise.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8544460-enterprise.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8544460-enterprise.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8544460-enterprise.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-33595/","id":33595,"name":"The Forgotten","episode_number":"320"},"name":"Star Trek: Enterprise","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4615/","id":4615,"name":"Paramount Pictures"},"site_detail_url":"https://comicvine.gamespot.com/star-trek-enterprise/4075-45/","start_year":"2001 - 2005"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-46/","count_of_episodes":25,"date_added":"2013-09-25 00:33:30","date_last_updated":"2013-09-25 01:07:14","deck":"A forensic technician for the Miami Police Department lives a double life as a serial killer who hunts other killers, working by a code that his father created for him. Based on Jeff Lindsay's Dexter novels, which have been adapted into a Marvel comic book.","description":"

    He's smart, he's good looking, and he's got a great sense of humor. He's Dexter Morgan, everyone's favorite serial killer. As a Miami forensics expert, he spends his days solving crimes, and nights committing them. But Dexter lives by a strict code of honor that is both his saving grace and lifelong burden. Torn between his deadly compulsion and his desire for true happiness, Dexter is a man in profound conflict with the world and himself. Golden Globe® winner Michael C. Hall stars in the hit Showtime Original Series.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-386/","id":386,"name":"Dexter","episode_number":"101"},"id":46,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3333333-6097371986-79349.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3333333-6097371986-79349.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3333333-6097371986-79349.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3333333-6097371986-79349.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3333333-6097371986-79349.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3333333-6097371986-79349.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3333333-6097371986-79349.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3333333-6097371986-79349.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3333333-6097371986-79349.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-7127/","id":7127,"name":"Our Father","episode_number":"301"},"name":"Dexter","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/dexter/4075-46/","start_year":"2006-2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-47/","count_of_episodes":52,"date_added":"2013-09-25 00:41:21","date_last_updated":"2014-05-15 21:58:14","deck":"Brought together by a common threat, seven of Earth's superheroes band together as the Justice League.","description":"

    Following the DC Animated Universe series Batman: The Animated Series and Superman: The Animated Series, Justice League added many of DC's characters to the show. It was followed by Justice League Unlimited.

    Airing from 2001-2004, Justice League detailed the adventures of Superman, Batman, Wonder Woman, Flash, Martian Manhunter, Green Lantern and Hawkgirl; the founding members of the Justice League.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-390/","id":390,"name":"Secret Origins: Part 1","episode_number":"101"},"id":47,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/70204/3333336-275px-justiceleague-intro.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/70204/3333336-275px-justiceleague-intro.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/70204/3333336-275px-justiceleague-intro.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/70204/3333336-275px-justiceleague-intro.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/70204/3333336-275px-justiceleague-intro.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/70204/3333336-275px-justiceleague-intro.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/70204/3333336-275px-justiceleague-intro.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/70204/3333336-275px-justiceleague-intro.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/70204/3333336-275px-justiceleague-intro.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-403/","id":403,"name":"Secret Origins: Part 3","episode_number":"103"},"name":"Justice League","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-574/","id":574,"name":"Warner Brothers"},"site_detail_url":"https://comicvine.gamespot.com/justice-league/4075-47/","start_year":"2001-2004"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-48/","count_of_episodes":24,"date_added":"2013-09-25 02:39:44","date_last_updated":"2013-10-14 08:50:57","deck":"A New York City police detective comes into contact with an ancient weapon called the Witchblade, and must become its master in order to fight the looming darkness. Based on Top Cow's Witchblade comics.","description":"

    While investigating the murder of her childhood friend, NYPD Detective Sara Pezzini comes in contact with an ancient gauntlet, which melds onto her wrist and protects her from harm -- forever changing her destiny. It is the Witchblade, an ancient weapon that heightens her powers of perception and transforms into a formidable sword that is one with its wearer. With an arsenal of amazing powers -- and a mind of its own -- the Witchblade is both a blessing and a curse. Now Sara must learn its secrets in order to master its mystery before it masters her.

    Based on the best-selling comic book of the same name, WITCHBLADE is a one-hour drama series starring Yancy Butler (Drop Zone, Hard Target) as the fierce and sexy Sara Pezzini. WITCHBLADE is produced by Top Cow Productions, Inc. and Halsted Pictures, in association with Warner Bros. Television. Ralph Hemecker (Millennium, The X-Files) serves as executive producer with Dan Halsted (Any Given Sunday,The Virgin Suicides) of Halsted Pictures and Marc Silvestri of Top Cow Productions.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-438/","id":438,"name":"Pilot","episode_number":"101"},"id":48,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3333416-2660578621-79072.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3333416-2660578621-79072.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3333416-2660578621-79072.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3333416-2660578621-79072.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3333416-2660578621-79072.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3333416-2660578621-79072.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3333416-2660578621-79072.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3333416-2660578621-79072.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3333416-2660578621-79072.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-27373/","id":27373,"name":"Ubique","episode_number":"212"},"name":"Witchblade","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-606/","id":606,"name":"Top Cow"},"site_detail_url":"https://comicvine.gamespot.com/witchblade/4075-48/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-49/","count_of_episodes":60,"date_added":"2013-09-25 04:39:14","date_last_updated":"2016-02-13 11:15:35","deck":"Live action series featuring Wonder Woman and Steve Trevor.","description":"

    Overview

    The show was initially based on the golden age comics where Wonder Woman battled a variety of threats during the Second World War. Despite its popularity, there was much discussion around renewing the series after the first year due to the high production costs of creating a series set in a different period. The solution was to change the setting of the series from the 1940s to the contemporary 1970s for the second season, with the same principal actors, though with Steve Trevor now being the nephew of the previous version of the character. The series at this time took on a format more consistent with the detective shows common at the time in the 1970s.

    Cast and Crew

    \"Lynda
    Lynda Carter as Wonder Woman

    Wonder Woman was played by Lynda Carter and Steve Trevor was played by Lyle Waggoner. Additional cast included Norman Burton, Richard Eastham, Beatrice Colen and Sandra Sharp. Debra Winger made one of the early appearances in her career as Wonder Girl. The series was produced by Douglas S. Cramer, William Lloyd Baums, Bruce Lansbury, Charles B. Fitzsimmons and Mark Rodgers.

    Theme Music

    The theme music was composed by Charles Fox (music) and Norman Gimbel (lyrics) and featured the following lyrics in the first season:

    Wonder Woman!

    Wonder Woman!

    All the World is Waiting for you!

    And the power you possess

    In your satin tights

    Fighting for your rights

    And the old red, white and blue!

    Wonder Woman!

    Wonder Woman!

    Now the world is ready for you!

    And the wonders you can do

    Make a hawk and dove

    Stop a war with love

    Make a liar tell the truth!

    Wonder Woman!

    Get us out from under, Wonder Woman!

    All our hopes are pinned upon you

    And the magic that you can do

    Stop a bullet cold

    Make the Axis Fold

    Change their minds and change the world!

    Wonder Woman!

    Wonder Woman!

    You're a wonder, Wonder Woman!

    Legacy

    Due to her advocacy for LGBT rights, Lynda Carter later became an icon in the gay community. As a result, this show has led Wonder Woman to become associated as a gay icon through the association of Carter's most famous role. For instance, the theme song of the movie was included as a track in the movie \"To Wong Foo, Thanks For Everything, Julie Newmar.\"

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20031/","id":20031,"name":"The New Original Wonder Woman","episode_number":"001"},"id":49,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/92932/3333527-wonder%20woman%20intro.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/92932/3333527-wonder%20woman%20intro.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/92932/3333527-wonder%20woman%20intro.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/92932/3333527-wonder%20woman%20intro.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/92932/3333527-wonder%20woman%20intro.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/92932/3333527-wonder%20woman%20intro.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/92932/3333527-wonder%20woman%20intro.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/92932/3333527-wonder%20woman%20intro.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/92932/3333527-wonder%20woman%20intro.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20078/","id":20078,"name":"The Phantom of the Roller Coaster Part 2","episode_number":"324"},"name":"Wonder Woman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-574/","id":574,"name":"Warner Brothers"},"site_detail_url":"https://comicvine.gamespot.com/wonder-woman/4075-49/","start_year":"1975"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-50/","count_of_episodes":440,"date_added":"2013-09-25 05:47:15","date_last_updated":"2020-04-19 06:10:42","deck":null,"description":"
    \"No

    The Simpsons are the perfect animated TV family -- Perfectly outrageous! The typical American family, complete with a dad who yells, a mom who nags, and three kids who get blamed for everything.

    Created by Matt Groening, The Simpsons has been airing for nearly 30 years and is the longest-running animated series in America.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-23252/","id":23252,"name":"Bart's Girlfriend","episode_number":"607"},"id":50,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/20814/381776-138335-the-simpsons.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/20814/381776-138335-the-simpsons.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/20814/381776-138335-the-simpsons.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/20814/381776-138335-the-simpsons.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/20814/381776-138335-the-simpsons.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/20814/381776-138335-the-simpsons.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/20814/381776-138335-the-simpsons.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/20814/381776-138335-the-simpsons.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/20814/381776-138335-the-simpsons.jpg","image_tags":"All Images,The Family"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-38021/","id":38021,"name":"The Road to Cincinnati","episode_number":"3208"},"name":"The Simpsons","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-530/","id":530,"name":"Bongo"},"site_detail_url":"https://comicvine.gamespot.com/the-simpsons/4075-50/","start_year":"1989"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-51/","count_of_episodes":26,"date_added":"2013-09-25 11:53:39","date_last_updated":"2013-09-29 10:31:46","deck":"Persona 4: The Animation is an anime based upon the popular PlayStation 2 game.","description":"

    Persona 4: The Animation (ペルソナ4アニメーション, Perusona Fō za Animeshon)

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-577/","id":577,"name":"You're myself, I'm yourself","episode_number":"1"},"id":51,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3034693-2678357066-40008.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3034693-2678357066-40008.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3034693-2678357066-40008.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3034693-2678357066-40008.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3034693-2678357066-40008.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3034693-2678357066-40008.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3034693-2678357066-40008.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3034693-2678357066-40008.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3034693-2678357066-40008.jpg","image_tags":"All Images,Others"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2014/","id":2014,"name":"No One is Alone","episode_number":"26"},"name":"Persona 4: The Animation","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2824/","id":2824,"name":"ASCII Media Works"},"site_detail_url":"https://comicvine.gamespot.com/persona-4-the-animation/4075-51/","start_year":"2011-2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-52/","count_of_episodes":153,"date_added":"2013-09-25 13:03:23","date_last_updated":"2015-06-03 06:01:05","deck":"The acclaimed manga series by legendary Dr. Slump creator Akira Toriyama takes its first humble steps to greatness in the action-adventure anime adaptation of Dragon Ball! Join Goku, a young kid living in complete solitude in the mountains, as his life takes an exciting turn after encountering the energetic Bulma, a fiesty young girl who is on a quest to find the seven \"Dragon Balls\" -- mysterious star-studded marbles rumoured that, when gathered together, have the power to grant any wish!","description":"

    Original Title: ドラゴンボール (Doragon Bōru)

    Note: episodes will be numbered on a saga (a season) to saga basis. Thus...

    Emperor Pilaf Saga: #101--#113

    Tournament Saga: #201--#215

    To be expanded further...

    The beginning...of the beginning...!

    Long before there was Dragon Ball Z, the story that established the grand epic lingered in temporary obscurity in the minds of the western audience. Meet Goku, as you've never seen him before, a short, energetic and happy child who has not yet tasted the power of Super Saiyan transformations. Join Goku, at his youngest and most inexperienced hour as he sets off on a quest that will forever shape the course of his destiny. Along the way, he will stop tyrants, give his all in World Tournaments, assault towers, halt devious plots and defeat villainous demons!

    \"No

    But he will not make the journey alone. Watch as the friendships forged so strongly in Dragon Ball Z are off to rocky starts in this origin tale as we meet Bulma, Yamcha the bandit and his partner Pu'ar, Oolong the perverted shapeshifter, the legendary martial arts master Roshi the turtle hermit, Krillin, and lots, loooots more!

    This is Dragon Ball, before the world could be put in dire danger, before a punch had the chance of reshaping landscapes. This was Dragon Ball...when the biggest concern was preventing a wish!

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-588/","id":588,"name":"The Secret of the Dragon Balls","episode_number":"101"},"id":52,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/104752/3334272-image35.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/104752/3334272-image35.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/104752/3334272-image35.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/104752/3334272-image35.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/104752/3334272-image35.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/104752/3334272-image35.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/104752/3334272-image35.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/104752/3334272-image35.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/104752/3334272-image35.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1364/","id":1364,"name":"The Legend of Goku","episode_number":"113"},"name":"Dragon Ball","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/dragon-ball/4075-52/","start_year":"1986-1989"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-53/","count_of_episodes":12,"date_added":"2013-09-25 13:36:02","date_last_updated":"2013-09-25 14:14:04","deck":"Black Lagoon is the anime adaptation of the seinen manga series from Rei Hiroe.","description":"

    Black Lagoon (ブラック・ラグーン, Burakku Ragūn)

    Continued in Black Lagoon: The Second Barrage

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-592/","id":592,"name":"The Black Lagoon","episode_number":"101"},"id":53,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3334428-7646102968-2346-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3334428-7646102968-2346-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3334428-7646102968-2346-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3334428-7646102968-2346-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3334428-7646102968-2346-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3334428-7646102968-2346-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3334428-7646102968-2346-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3334428-7646102968-2346-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3334428-7646102968-2346-.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1101/","id":1101,"name":"Guerrillas in the Jungle","episode_number":"112"},"name":"Black Lagoon","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2781/","id":2781,"name":"Shogakukan"},"site_detail_url":"https://comicvine.gamespot.com/black-lagoon/4075-53/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-54/","count_of_episodes":12,"date_added":"2013-09-25 13:43:34","date_last_updated":"2013-09-25 14:13:30","deck":"Black Lagoon: The Second Barrage is the sequel series to the Black Lagoon anime.","description":"

    Black Lagoon: The Second Barrage (ブラック・ラグーン The Second Barrage, Burakku Ragūn Za Sekando Baraji)

    Continued from Black Lagoon

    Continued in Black Lagoon: Roberta's Blood Trail

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-596/","id":596,"name":"The Vampire Twins Comen","episode_number":"101"},"id":54,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3334438-6055448171-43503.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3334438-6055448171-43503.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3334438-6055448171-43503.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3334438-6055448171-43503.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3334438-6055448171-43503.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3334438-6055448171-43503.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3334438-6055448171-43503.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3334438-6055448171-43503.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3334438-6055448171-43503.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1116/","id":1116,"name":"The Gunslingers","episode_number":"112"},"name":"Black Lagoon: The Second Barrage","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2781/","id":2781,"name":"Shogakukan"},"site_detail_url":"https://comicvine.gamespot.com/black-lagoon-the-second-barrage/4075-54/","start_year":"2008"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-55/","count_of_episodes":24,"date_added":"2013-09-25 13:54:38","date_last_updated":"2013-09-25 13:55:33","deck":null,"description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-597/","id":597,"name":"The Triumph Of The Green Goblin","episode_number":"101"},"id":55,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/110802/3334449-spiderman%20and%20his%20amazing%20friends%20-%201x01%20-%20triumph%20of%20the%20green%20goblin%20dvdrip.avi_000019480.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-621/","id":621,"name":"Mission: Save The Guardstar","episode_number":"308"},"name":"Spider-Man And His Amazing Friends","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/spiderman-and-his-amazing-friends/4075-55/","start_year":"1981"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-56/","count_of_episodes":5,"date_added":"2013-09-25 14:01:32","date_last_updated":"2019-10-08 02:00:48","deck":"Black Lagoon: Roberta's Blood Trail is the third season of the Black Lagoon anime that was sold as direct to market OVAs.","description":"

    Black Lagoon: Roberta's Blood Trail (ブラック・ラグーン: ロベルタブラッドトレール, Burakku Ragūn: Roberuta Buraddo Toreeru)

    Continued from Black Lagoon: The Second Barrage

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-610/","id":610,"name":"Collateral Massacre","episode_number":"101"},"id":56,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3334477-7570646113-42467.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3334477-7570646113-42467.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3334477-7570646113-42467.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3334477-7570646113-42467.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3334477-7570646113-42467.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3334477-7570646113-42467.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3334477-7570646113-42467.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3334477-7570646113-42467.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3334477-7570646113-42467.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1085/","id":1085,"name":"Codename Paradise, Status MIA","episode_number":"105"},"name":"Black Lagoon: Roberta's Blood Trail","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2781/","id":2781,"name":"Shogakukan"},"site_detail_url":"https://comicvine.gamespot.com/black-lagoon-robertas-blood-trail/4075-56/","start_year":"2010"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-57/","count_of_episodes":39,"date_added":"2013-09-25 14:02:38","date_last_updated":"2014-05-13 22:04:20","deck":"Picks up where the Justice League series ended and focuses on a wider array of Justice League members.","description":"
    \"The
    The cast of Justice League Unlimited (most of them at any rate...)

    An animated series based around an extended roster of the Justice League which aired from July 2004 to May 2006. Justice League Unlimited is a direct sequel to the Justice League series and while it includes more characters it is still the founding members of the Justice League that appear most often.

    The team roster includes: Wonder Woman, Hawkgirl, Martian Manhunter, Superman, Green Lantern, Batman, Supergirl, Captain Atom, Ice, Fire, Flash, Doctor Light, Red Tornado, Black Canary, Green Arrow, Huntress, The Question, Crimson Fox, Vibe, Gypsy, Steel, Captain Marvel, Doctor Fate, Star Girl, S.T.R.I.P.E., Doctor Midnight, Vixen, The Ray, Obsidian, Mr. Terrific, Booster Gold, The Atom, Elongated Man, Hawk, Dove, Wildcat, Blue Devil, Aztec The Ultimate Man, Nemesis, Rocket Red, Shining Knight, Atom Smasher, Waverider, Hourman, Metamorpho, Vigilante, and a few others.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-622/","id":622,"name":"Initiation","episode_number":"101"},"id":57,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58820/3334469-justice_league_unlimited_title_card.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58820/3334469-justice_league_unlimited_title_card.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58820/3334469-justice_league_unlimited_title_card.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58820/3334469-justice_league_unlimited_title_card.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58820/3334469-justice_league_unlimited_title_card.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58820/3334469-justice_league_unlimited_title_card.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58820/3334469-justice_league_unlimited_title_card.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58820/3334469-justice_league_unlimited_title_card.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58820/3334469-justice_league_unlimited_title_card.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1428/","id":1428,"name":"Destroyer","episode_number":"313"},"name":"Justice League Unlimited","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-574/","id":574,"name":"Warner Brothers"},"site_detail_url":"https://comicvine.gamespot.com/justice-league-unlimited/4075-57/","start_year":"2004-2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-58/","count_of_episodes":13,"date_added":"2013-09-25 14:25:28","date_last_updated":"2021-11-26 03:04:46","deck":"Panty & Stocking with Garterbelt is a GAINAX comedy anime series. Panty and Stocking are angels cast down to Earth for their sins to wipe out the ghosts terrorizing humanity.","description":"

    Panty & Stocking with Garterbelt (パンティ&ストッキング with ガーターベルト, Panti & Sutokkingu ūizu Gātāberuto)

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-626/","id":626,"name":"Excretion Without Honor And Humanity; Death Race 2010","episode_number":"1"},"id":58,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3334513-4929869082-33597.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3334513-4929869082-33597.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3334513-4929869082-33597.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3334513-4929869082-33597.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3334513-4929869082-33597.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3334513-4929869082-33597.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3334513-4929869082-33597.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3334513-4929869082-33597.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3334513-4929869082-33597.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1137/","id":1137,"name":"Bitch Girls; Bitch Girls: 2 Bitch","episode_number":"13"},"name":"Panty & Stocking with Garterbelt","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1961/","id":1961,"name":"Kadokawa Shoten"},"site_detail_url":"https://comicvine.gamespot.com/panty-stocking-with-garterbelt/4075-58/","start_year":"2010"},{"aliases":"NARUTO Sugoi Doryoku: Rock Lee no Seishun Full-Power Ninden\r\nNARUTO SD: Rock Lee & His Ninja Pals","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-59/","count_of_episodes":17,"date_added":"2013-09-25 14:38:57","date_last_updated":"2015-03-12 15:37:59","deck":"NARUTO Spin-Off: Rock Lee & His Ninja Pals is a comedy spin-off of the Naruto series that focuses on Rock Lee and his team.","description":"

    NARUTO Spin-Off: Rock Lee & His Ninja Pals (NARUTO-ナルト- SD ロック・リーの青春フルパワー忍伝, NARUTO Sugoi Doryoku: Rokku Rī no Seishun Furupowā Ninden)

    Welcome to the Village Hidden in the Leaves, home to famous Naruto Uzumaki, star of Naruto. Here ninja train day and night to be able to carry out important missions. But wait! This show isn't about Naruto, the mightiest ninja! It's about Rock Lee, the one who can't use ninjutsu at all!

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-35791/","id":35791,"name":"The Pool's Finally Open! / The Super Happy Orochi-Pool Park!","episode_number":"115"},"id":59,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3082616-naruto%20sd.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3082616-naruto%20sd.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3082616-naruto%20sd.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3082616-naruto%20sd.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3082616-naruto%20sd.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3082616-naruto%20sd.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3082616-naruto%20sd.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3082616-naruto%20sd.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3082616-naruto%20sd.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-36576/","id":36576,"name":"The new Naruto Movie Premiere! / Please go see the new Naruto Movie!","episode_number":"117"},"name":"NARUTO Spin-Off: Rock Lee & His Ninja Pals","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/naruto-spinoff-rock-lee-his-ninja-pals/4075-59/","start_year":"2012-2013"},{"aliases":"Gakuen Mokushiroku Highschool of the Dead","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-60/","count_of_episodes":12,"date_added":"2013-09-25 14:54:28","date_last_updated":"2013-09-25 16:15:39","deck":"Highschool of the Dead is the anime adaptation of of the Highschool of the Dead anime created by Daisuke Sato and Shoji Sato.","description":"

    Highschool of the Dead (学園黙示録HIGHSCHOOL OF THE DEAD, Gakuen Mokushiroku Haisukuuru obu za Deddo)

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-628/","id":628,"name":"Spring of the Dead","episode_number":"1"},"id":60,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/2968062-5976860586-27471.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/2968062-5976860586-27471.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/2968062-5976860586-27471.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/2968062-5976860586-27471.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/2968062-5976860586-27471.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/2968062-5976860586-27471.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/2968062-5976860586-27471.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/2968062-5976860586-27471.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/2968062-5976860586-27471.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1081/","id":1081,"name":"All Dead's Attack","episode_number":"12"},"name":"Highschool of the Dead","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1961/","id":1961,"name":"Kadokawa Shoten"},"site_detail_url":"https://comicvine.gamespot.com/highschool-of-the-dead/4075-60/","start_year":"2010"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-61/","count_of_episodes":163,"date_added":"2013-09-25 15:27:41","date_last_updated":"2021-11-29 09:56:29","deck":"A live action sitcom based on the Archie Comics character Sabrina Spellman.","description":"

    The series stars Melissa Joan Hart as the titular character.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-629/","id":629,"name":"Pilot","episode_number":"101"},"id":61,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/3334610-8461473412-Sabri.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/3334610-8461473412-Sabri.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/3334610-8461473412-Sabri.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/3334610-8461473412-Sabri.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/3334610-8461473412-Sabri.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/3334610-8461473412-Sabri.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/3334610-8461473412-Sabri.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/3334610-8461473412-Sabri.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/3334610-8461473412-Sabri.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3234/","id":3234,"name":"Oh What a Tangled Spell She Weaves","episode_number":"211"},"name":"Sabrina, the Teenage Witch","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-101/","id":101,"name":"Archie Comics"},"site_detail_url":"https://comicvine.gamespot.com/sabrina-the-teenage-witch/4075-61/","start_year":"1996"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-62/","count_of_episodes":56,"date_added":"2013-09-25 22:51:12","date_last_updated":"2013-10-03 03:56:43","deck":null,"description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-909/","id":909,"name":"Cafe Disaffecto","episode_number":"104"},"id":62,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3335265-77996-4.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3335265-77996-4.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3335265-77996-4.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3335265-77996-4.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3335265-77996-4.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3335265-77996-4.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3335265-77996-4.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3335265-77996-4.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3335265-77996-4.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1510/","id":1510,"name":"Boxing Daria","episode_number":"513"},"name":"Daria","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/daria/4075-62/","start_year":"1997"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-63/","count_of_episodes":99,"date_added":"2013-09-25 22:51:43","date_last_updated":"2021-05-30 16:54:47","deck":"The cartoon adventures of a cat and dog.","description":"

    Oh Joy! This slapstick buddy comedy centers on a skinny, temperamental chihuahua Ren and his trusting feline sidekick, Stimpy. Together, this twisted twosome find themselves in crazy absurd adventures. Brace yourselves for the anything-and everything-goes crazy world of Ren & Stimpy.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-826/","id":826,"name":"Blazing Entrails","episode_number":"404"},"id":63,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3335266-tumblr_lps5bsdu5g1qd9jlto1_500.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-33874/","id":33874,"name":"Naked Beach Frenzy","episode_number":"604"},"name":"The Ren & Stimpy Show","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10020/","id":10020,"name":"Nickelodeon"},"site_detail_url":"https://comicvine.gamespot.com/the-ren-stimpy-show/4075-63/","start_year":"1991"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-64/","count_of_episodes":30,"date_added":"2013-09-26 03:54:47","date_last_updated":"2013-10-05 20:42:16","deck":"Cartoon based on the comic strip by Scott Adams.","description":"

    Plot Summary

    Dilbert is an average white collar worker trying to make sense of the corporate world around him. With the help of his pet dog, Dogbert - a highly intelligent animal with a lot of powerful connections - he struggles to find his place in the ever changing, fast paced and occasionally overwhelming modern workplace.

    Regular Cast Members

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1031/","id":1031,"name":"The Dupey","episode_number":"205"},"id":64,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3335902-dilbert_season_01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3335902-dilbert_season_01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3335902-dilbert_season_01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3335902-dilbert_season_01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3335902-dilbert_season_01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3335902-dilbert_season_01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3335902-dilbert_season_01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3335902-dilbert_season_01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3335902-dilbert_season_01.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1035/","id":1035,"name":"Elbonian Trip","episode_number":"106"},"name":"Dilbert","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/dilbert/4075-64/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-65/","count_of_episodes":81,"date_added":"2013-09-26 05:55:57","date_last_updated":"2021-11-05 00:37:36","deck":null,"description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1039/","id":1039,"name":"For Better or Verse","episode_number":"216"},"id":65,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3336013-beavis-butthead-mtv.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3336013-beavis-butthead-mtv.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3336013-beavis-butthead-mtv.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3336013-beavis-butthead-mtv.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3336013-beavis-butthead-mtv.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3336013-beavis-butthead-mtv.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3336013-beavis-butthead-mtv.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3336013-beavis-butthead-mtv.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3336013-beavis-butthead-mtv.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-29339/","id":29339,"name":"Dream On","episode_number":"522"},"name":"Beavis and Butt-Head","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/beavis-and-butthead/4075-65/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-67/","count_of_episodes":144,"date_added":"2013-09-26 11:07:30","date_last_updated":"2022-02-09 20:18:10","deck":null,"description":"
    \"No

    \"Buffy the Vampire Slayer\" is a comedy-action series that chronicles the adventures of Buffy Summers, a teenage girl who is gifted with the strength and skill to hunt vampires.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-36216/","id":36216,"name":"Bargaining, Part Two","episode_number":"602"},"id":67,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11151/111513412/8364709-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11151/111513412/8364709-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11151/111513412/8364709-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11151/111513412/8364709-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11151/111513412/8364709-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11151/111513412/8364709-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11151/111513412/8364709-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11151/111513412/8364709-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11151/111513412/8364709-1.jpg","image_tags":"All Images,DVD Cover,Season 1"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19609/","id":19609,"name":"Chosen","episode_number":"722"},"name":"Buffy the Vampire Slayer","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-364/","id":364,"name":"Dark Horse Comics"},"site_detail_url":"https://comicvine.gamespot.com/buffy-the-vampire-slayer/4075-67/","start_year":"1997"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-68/","count_of_episodes":325,"date_added":"2013-09-26 11:11:07","date_last_updated":"2018-11-08 09:33:07","deck":"Raised in the supernatural hunter's lifestyle, two brothers follow in their father's footsteps as they crisscross the country, saving people from the dark side of the occult and paranormal.","description":"
    \"No

    Supernatural features stars Jensen Ackles and Jared Padalecki as Dean and Sam Winchester, two brothers who travel the country looking for their missing father and battling evil spirits along the way. Sam Winchester is a college student bound for law school, determined to escape his family's past - unlike his older brother, Dean. Ever since they were little their father has been consumed with an obsession to find the evil forces that murdered his beloved wife, in result recruiting and training his two young sons to help him in revenge. They have grown up as hunters of the supernatural. Sam escaped under the premise of going to college, and now has a happy life with his girlfriend, Jessica, and a promising future career. Dean, however, stayed behind with his father to join him in his \"hunting\". Dean goes to Sam for help when their father goes missing. Now Sam must join his brother to find him. His one weekend trip to search for the missing John Winchester becomes an ongoing quest after a horrible tragedy ruins any thought of a happy life for Sam. The two brothers, bound by tragedy and blood to their mission, travel across the country encountering terrifying and dangerous forces most believe to be nothing but superstition and folklore, such as the Lady in White, the Indian beast known as the Wendigo, Phantom Travelers who cause plane crashes, Bloody Mary, vampires, demons and many more. From Warner Bros. Television Production Inc. in association with Wonderland Sound and Vision, with executive producers McG (Charlie's Angels, The O.C.), writer/executive producer Eric Kripke (Boogeyman) and Robert Singer (Midnight Caller).

    Comics

    There are four limited-series comic books based on the show. The first three (Origins, Rising Son and Beginning's End) were published under the Wildstorm imprint, and the fourth was published by DC Comics after Wildstorm was absorbed into it.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20717/","id":20717,"name":"Meet the New Boss","episode_number":"701"},"id":68,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3336397-6621085636-78901.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3336397-6621085636-78901.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3336397-6621085636-78901.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3336397-6621085636-78901.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3336397-6621085636-78901.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3336397-6621085636-78901.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3336397-6621085636-78901.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3336397-6621085636-78901.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3336397-6621085636-78901.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-32552/","id":32552,"name":"Destiny's Child","episode_number":"1513"},"name":"Supernatural","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/supernatural/4075-68/","start_year":"2005"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-69/","count_of_episodes":136,"date_added":"2013-09-26 13:56:47","date_last_updated":"2021-06-07 19:01:01","deck":"A cartoon about three little girls with superpowers.","description":"

    Plot Summary

    Scientist Professor Utonium attempts to create the perfect little girls. But after an accident causes him to add an unintended ingredient - Chemical X - the girls are born with superpowers.

    Regular Cast Members

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2842/","id":2842,"name":"Cop Out","episode_number":"309"},"id":69,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3336660-the-powerpuff-girls-movie-poster-2002-1020478094.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20498/","id":20498,"name":"Dance Pantsed","episode_number":"S02"},"name":"The Powerpuff Girls","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5018/","id":5018,"name":"Hanna-Barbera"},"site_detail_url":"https://comicvine.gamespot.com/the-powerpuff-girls/4075-69/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-70/","count_of_episodes":178,"date_added":"2013-09-26 14:22:01","date_last_updated":"2019-10-12 06:45:21","deck":"Charmed is a series that focuses on three powerful witches. Who protect the innocent from demons.","description":"
    \"No

    After 7 years of protecting the innocent, demon fighting and generally ridding the world of evil, the Halliwell sisters have begun a search for a different destiny - living normal lives. As \"The Charmed Ones,\" the most powerful good witches to ever exist, the sisters faked their own deaths last year and created new identities, but appearing as themselves to those closest to them. Now, they must reconcile with their own guilt about not fighting the supernatural evil that continues in the world.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1675/","id":1675,"name":"Something Wicca This Way Comes","episode_number":"101"},"id":70,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/26147/3336582-charmed-charmed-665446_1024_768.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-34261/","id":34261,"name":"Forever Charmed","episode_number":"822"},"name":"Charmed","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1986/","id":1986,"name":"Zenescope Entertainment"},"site_detail_url":"https://comicvine.gamespot.com/charmed/4075-70/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-71/","count_of_episodes":35,"date_added":"2013-09-26 14:44:42","date_last_updated":"2022-09-07 14:31:00","deck":null,"description":"

    The fourth installment of the Yu-Gi-Oh! frachise, began by Kazuki Takahashi (who created the designs for the main characters of this series). The anime follows the story of a rookie duelist called Yuma Tsukumo, and an amnestic mysterious being from another dimension, Astral, who is bonded to him.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-39289/","id":39289,"name":"Hunter of Souls! Numbers Hunter Appears!","episode_number":"13"},"id":71,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/9/93477/3336761-2419806053-15-yu.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/9/93477/3336761-2419806053-15-yu.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/9/93477/3336761-2419806053-15-yu.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/9/93477/3336761-2419806053-15-yu.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/9/93477/3336761-2419806053-15-yu.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/9/93477/3336761-2419806053-15-yu.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/9/93477/3336761-2419806053-15-yu.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/9/93477/3336761-2419806053-15-yu.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/9/93477/3336761-2419806053-15-yu.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1692/","id":1692,"name":"Yuma and Shark - Scar- Filled Tag Duel","episode_number":"11"},"name":"Yu-Gi-Oh! Zexal","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/yugioh-zexal/4075-71/","start_year":"2011"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-72/","count_of_episodes":147,"date_added":"2013-09-26 23:03:25","date_last_updated":"2013-09-28 16:55:23","deck":null,"description":"
    \"No

    Proper Japanese Title: トリコ

    Anime adaptation of the manga Toriko.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1849/","id":1849,"name":"Arrival on Gourmet Island! The Gourmet Hunter Toriko Appears!","episode_number":"1"},"id":72,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67663/3338075-toriko.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67663/3338075-toriko.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67663/3338075-toriko.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67663/3338075-toriko.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67663/3338075-toriko.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67663/3338075-toriko.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67663/3338075-toriko.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67663/3338075-toriko.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67663/3338075-toriko.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-10972/","id":10972,"name":"Toriko and Komatsu Embark on a New Voyage!","episode_number":"147"},"name":"Toriko","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1867/","id":1867,"name":"Shueisha"},"site_detail_url":"https://comicvine.gamespot.com/toriko/4075-72/","start_year":"2011"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-74/","count_of_episodes":10,"date_added":"2013-09-27 13:42:13","date_last_updated":"2015-09-27 10:17:57","deck":"Hellsing Ultimate is an anime OVA adaptation of the manga series, \"Hellsing.\"","description":"

    Remember when vampires had fangs? Remember when they were known as terrifying monsters that stalked the night, instead of moody teenagers that sparkle in daylight? It’s time to drive a stake through the lovesick heart of contemporary vampire nonsense. Satisfy your bloodlust with Hellsing Ultimate, the definitive action-horror anime.

    The rogue vampire Arucard is the Hellsing Organization’s deadliest instrument in its mission to protect the British Empire from satanic ghouls and Nazi freaks. He is not alone in his assault on the occult; the master has a servant. Policewoman Seras Victoria accepted Arucard’s gift of dark salvation after falling in the line of duty, and now the remnants of her human soul struggle against her growing vampire urges. Together, they haunt the shadows as a sinister force of good – and tonight the foggy streets of England shall flow with the blood of their evil prey.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1501/","id":1501,"name":"Hellsing I","episode_number":"101"},"id":74,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/41224/3338996-hellsing%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/41224/3338996-hellsing%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/41224/3338996-hellsing%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/41224/3338996-hellsing%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/41224/3338996-hellsing%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/41224/3338996-hellsing%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/41224/3338996-hellsing%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/41224/3338996-hellsing%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/41224/3338996-hellsing%20logo.jpg","image_tags":"All Images,Wiki"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1501/","id":1501,"name":"Hellsing I","episode_number":"101"},"name":"Hellsing Ultimate","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2814/","id":2814,"name":"Shōnen Gahōsha"},"site_detail_url":"https://comicvine.gamespot.com/hellsing-ultimate/4075-74/","start_year":"2006-2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-75/","count_of_episodes":13,"date_added":"2013-09-27 14:46:28","date_last_updated":"2015-09-27 09:51:34","deck":"A loose anime adaptation of the manga of the same name, Hellsing began in 2001. However, because the manga was unfinished, the series came up with original content, which ended up telling a completely different story.","description":"

    Witness the blood-soaked roots of a legend in Hellsing, the original action-horror series that launched the careers of some of anime’s brightest stars.

    The rogue vampire Arucard is the Hellsing Organization’s deadliest instrument in its mission to protect the British Empire from undead ghouls and satanic freaks. He is not alone in his assault on the occult; the master has a servant. Policewoman Seras Victoria accepted Arucard’s gift of dark salvation after falling in the line of duty, and now the remnants of her human soul struggle against her growing vampire urges. Together, they haunt the shadows as a sinister force of good – and tonight the foggy streets of England shall flow with the blood of their evil prey.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1559/","id":1559,"name":"Dead Zone","episode_number":"106"},"id":75,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/41224/3339174-hellsing%20logo%202.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/41224/3339174-hellsing%20logo%202.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/41224/3339174-hellsing%20logo%202.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/41224/3339174-hellsing%20logo%202.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/41224/3339174-hellsing%20logo%202.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/41224/3339174-hellsing%20logo%202.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/41224/3339174-hellsing%20logo%202.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/41224/3339174-hellsing%20logo%202.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/41224/3339174-hellsing%20logo%202.jpg","image_tags":"All Images,Wiki"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1559/","id":1559,"name":"Dead Zone","episode_number":"106"},"name":"Hellsing","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2814/","id":2814,"name":"Shōnen Gahōsha"},"site_detail_url":"https://comicvine.gamespot.com/hellsing/4075-75/","start_year":"2001-2002"},{"aliases":"Children of Earth\r\nMiracle Day","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-76/","count_of_episodes":41,"date_added":"2013-09-28 00:52:48","date_last_updated":"2013-09-29 03:59:36","deck":"Saving the planet from aliens and you don't even know about it. A \"Doctor Who\" Spin-off","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1861/","id":1861,"name":"Everything Changes","episode_number":"101"},"id":76,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3341759-6308279151-33416.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3341759-6308279151-33416.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3341759-6308279151-33416.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3341759-6308279151-33416.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3341759-6308279151-33416.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3341759-6308279151-33416.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3341759-6308279151-33416.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3341759-6308279151-33416.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3341759-6308279151-33416.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-17689/","id":17689,"name":"The Blood Line","episode_number":"410"},"name":"Torchwood","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/torchwood/4075-76/","start_year":"2006-2011"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-77/","count_of_episodes":74,"date_added":"2013-09-28 02:09:53","date_last_updated":"2018-02-27 23:54:40","deck":"Two alien robot factions from the planet Cybertron, the heroic Autobots and the evil Decepticons, continue to wage war, but this time it's on a new battleground: Earth.","description":"

    The Transformers, was the original cartoon that ran from 1984 to 1987. Writing and distribution for this series were handled as a joint effort by Marvel Productions and Sunbow Productions. Animation was produced overseas, by Toei & AKOM. This cartoon series is commonly referred to as \"Generation 1\" by fans. The popular cartoon feature film, Transformers: The Movie (1986), takes place between the events of the second and third seasons.

    Episodes

    Season 1 - 16 Episodes

    Season 2 - 49 Episodes

    Transformers: The Movie (later released as five episodes along with 15 previously released episodes as Season 5)

    Season 3 - 30 Episodes

    Season 4 - 3 Episodes

    Season 5 - 20 Episodes (Season five featured a new opening and closing of an animatronic puppet of Optimus Prime in his Powermaster form telling a human Tommy Kennedy old stories ala \"prior episodes\" involving the Transformers)

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-15177/","id":15177,"name":"The Ultimate Doom Part 1","episode_number":"108"},"id":77,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/108875/3339799-4997875766-350px.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/108875/3339799-4997875766-350px.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/108875/3339799-4997875766-350px.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/108875/3339799-4997875766-350px.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/108875/3339799-4997875766-350px.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/108875/3339799-4997875766-350px.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/108875/3339799-4997875766-350px.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/108875/3339799-4997875766-350px.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/108875/3339799-4997875766-350px.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1740/","id":1740,"name":"The Rebirth, Part 3","episode_number":"403"},"name":"The Transformers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-transformers/4075-77/","start_year":"1984 - 1987"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-78/","count_of_episodes":13,"date_added":"2013-09-28 05:39:10","date_last_updated":"2013-09-28 07:16:45","deck":"A mix of animation and CGI, the Silver Surfer series tells the cosmic tale of Norrin Radd - forever changed to save the ones he loves.","description":"

    The Silver Surfer animated series began airing on Fox in 1998. The show is animated in the style of Silver Surfer creator Jack Kirby. It is also one of the first animated shows to incorporate computer animation, with characters such as Galactus being entirely compter generated.

    Due to Marvel's bankrupcy issues at the time, the series only lasted for 13 episodes, although eight episodes for a second season had already been written. Those episodes never reached production, which is very unfortunate as the final episode of the first season was a multi-episode story. The final epsiode ends with 'The End?', making the series an unfinished cliffhanger.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1605/","id":1605,"name":"The Origin of the Silver Surfer: Part One","episode_number":"101"},"id":78,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/3340237-silver%20surfer%20logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/3340237-silver%20surfer%20logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/3340237-silver%20surfer%20logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/3340237-silver%20surfer%20logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/3340237-silver%20surfer%20logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/3340237-silver%20surfer%20logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/3340237-silver%20surfer%20logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/3340237-silver%20surfer%20logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/3340237-silver%20surfer%20logo.jpg","image_tags":"All Images,Silver Surfer Animated (1998)"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1620/","id":1620,"name":"The Forever War","episode_number":"111"},"name":"Silver Surfer","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/silver-surfer/4075-78/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-79/","count_of_episodes":26,"date_added":"2013-09-28 05:53:21","date_last_updated":"2014-10-04 04:58:12","deck":"An animated cartoon show of the Fantastic Four on Cartoon Network.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1632/","id":1632,"name":"De-Mole-Ition","episode_number":"110"},"id":79,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/3340245-7920862535-FF_Do.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/3340245-7920862535-FF_Do.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/3340245-7920862535-FF_Do.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/3340245-7920862535-FF_Do.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/3340245-7920862535-FF_Do.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/3340245-7920862535-FF_Do.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/3340245-7920862535-FF_Do.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/3340245-7920862535-FF_Do.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/3340245-7920862535-FF_Do.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1659/","id":1659,"name":"Scavenger Hunt","episode_number":"126"},"name":"Fantastic Four: World's Greatest Heroes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/fantastic-four-worlds-greatest-heroes/4075-79/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-80/","count_of_episodes":65,"date_added":"2013-09-28 06:57:21","date_last_updated":"2013-12-14 10:04:03","deck":"A CG animated cartoon show centered around Autobots and Decepticons war on Earth.","description":"

    Transformers: Prime is a multiple Daytime Emmy Award-winning computer-animated television series that premiered on The Hub on November 26, 2010. It started with a five part mini series then a season of twenty one episodes followed on 11th February 2011.

    Episodes

    Season 1 - 26 Episodes

    Season 2 - 26 Episodes

    Season 3: Beast Hunters - 13 Episodes

    Series Finale : Predacons Rising (TV Movie)

    Awards and Nominations

    2011 Daytime Emmy Awards

    • Outstanding Performer In An Animated Program - Peter Cullen as Optimus Prime
    • Outstanding Directing In An Animated Program - David Hartman, Supervising Director; Shaunt Nigoghossian; Todd Waterman; Vinton Heuck; Susan Blu, Voice Director
    • Outstanding Individual Achievement in Animation - Vince Toyama, Background Designer (WINNER)
    • Outstanding Individual Achievement in Animation - Christophe Vacher, Colour Designer (WINNER)
    • Outstanding Achievement in Music Direction And Composition - Brian Tyler
    • Outstanding Writing In Animation - Duane Capizzi, Writer/Producer; Steven Melching; Nicole Dubuc; Joseph Kuhr; Marsha Griffin

    2012 Daytime Emmy Awards

    • Outstanding Achievement in Sound Editing (Animation) - Robbi Smith, Dialogue Editor, Robert Poole II, Sound Effects Editor, Roy Braverman, Foley Editor
    • Outstanding Achievement in Sound Mixing (Animation) - Ray Leonard, Re-Recording Mixer, Mike Bieriger, Re-Recording Mixer
    • Outstanding Special Class Animated Program - Roberto Orci, Stephen Davis, Shuzo Shiota, Alex Kurtzman, Jeff Kline, Duane Capizzi, Mandy Safavi, Rafael Ruthchild, Shinji Santoh, Meiko Sato, Therese Trujillo (WINNER)
    • Outstanding Directing in an Animated Program - David Hartman, Vinton Heuck, Shaunt Nigoghossian, Todd Waterman, Jamie Simone
    • Outstanding Individual Achievement in Animation - Christophe Vacher (WINNER)[20]

    2013 Daytime Emmy Awards

    • Outstanding Individual Achievement in Animation - Jason Park, background design for \"Orion Pax, Part 3\". (WINNER)
    • Outstanding Individual Achievement in Animation - Arato Kato, character animation for \"Hard Knocks\". (WINNER)
    • Outstanding Individual Achievement in Animation - Kirk Van Wormer, storyboard art for \"Nemesis Prime\". (WINNER)

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1631/","id":1631,"name":"Darkness Rising Part 1","episode_number":"101"},"id":80,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/3340313-2008996773-70234.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/3340313-2008996773-70234.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/3340313-2008996773-70234.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/3340313-2008996773-70234.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/3340313-2008996773-70234.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/3340313-2008996773-70234.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/3340313-2008996773-70234.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/3340313-2008996773-70234.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/3340313-2008996773-70234.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-7008/","id":7008,"name":"Persuasion","episode_number":"311"},"name":"Transformers: Prime","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2697/","id":2697,"name":"Hasbro"},"site_detail_url":"https://comicvine.gamespot.com/transformers-prime/4075-80/","start_year":"2010-2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-81/","count_of_episodes":26,"date_added":"2013-09-28 14:35:06","date_last_updated":"2013-09-28 15:53:22","deck":"The 2011 revisioning of the 1980's series","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1687/","id":1687,"name":"Omens, Part One: The Sword of Omens","episode_number":"101"},"id":81,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/3340960-thundercats%202011.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/3340960-thundercats%202011.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/3340960-thundercats%202011.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/3340960-thundercats%202011.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/3340960-thundercats%202011.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/3340960-thundercats%202011.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/3340960-thundercats%202011.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/3340960-thundercats%202011.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/3340960-thundercats%202011.jpeg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1716/","id":1716,"name":"Birth of the Blades","episode_number":"121"},"name":"Thundercats","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-574/","id":574,"name":"Warner Brothers"},"site_detail_url":"https://comicvine.gamespot.com/thundercats/4075-81/","start_year":"2011-2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-82/","count_of_episodes":62,"date_added":"2013-09-28 16:54:12","date_last_updated":"2021-05-21 17:33:20","deck":"A Samurai prince is trapped in the future ruled by Aku.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-22793/","id":22793,"name":"Robo-Samurai vs. Mondo-Bot","episode_number":"402"},"id":82,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/3341145-tantutotem.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/3341145-tantutotem.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/3341145-tantutotem.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/3341145-tantutotem.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/3341145-tantutotem.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/3341145-tantutotem.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/3341145-tantutotem.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/3341145-tantutotem.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/3341145-tantutotem.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-23134/","id":23134,"name":"CI","episode_number":"510"},"name":"Samurai Jack","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1190/","id":1190,"name":"IDW Publishing"},"site_detail_url":"https://comicvine.gamespot.com/samurai-jack/4075-82/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-83/","count_of_episodes":16,"date_added":"2013-09-29 06:32:36","date_last_updated":"2015-02-26 21:04:11","deck":"An animated series based on characters from Archie Comics.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1935/","id":1935,"name":"The Nemo's a No-No Affair","episode_number":"101"},"id":83,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/3342262-2461863841-post-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/3342262-2461863841-post-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/3342262-2461863841-post-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/3342262-2461863841-post-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/3342262-2461863841-post-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/3342262-2461863841-post-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/3342262-2461863841-post-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/3342262-2461863841-post-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/3342262-2461863841-post-.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-1954/","id":1954,"name":"Don't Count on a Countess","episode_number":"116"},"name":"Josie and the Pussycats","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-101/","id":101,"name":"Archie Comics"},"site_detail_url":"https://comicvine.gamespot.com/josie-and-the-pussycats/4075-83/","start_year":"1970"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-84/","count_of_episodes":68,"date_added":"2013-09-29 22:26:19","date_last_updated":"2021-12-30 16:53:27","deck":"Fullmetal Alchemist: Brotherhood is an anime adaptation based on the manga, Fullmetal Alchemist. Unlike the first FMA anime, Brotherhood is more faithful to the source material. This series ran from 2009 to 2010","description":"

    \"Note\" Season two is only the OVA episodes.

    Edward and Alphonse Elric’s reckless disregard for alchemy’s fundamental laws ripped half of Ed’s limbs from his body and left Al’s soul clinging to a cold suit of armor. To restore what was lost, the brothers scour a war-torn land for the Philosopher’s Stone, a fabled relic which grants the ability to perform alchemy in impossible ways.

    The Elrics are not alone in their search; the corrupt State Military is eager to harness the artifact’s power. So too are the strange Homunculi and their shadowy creator. The mythical Stone lures exotic alchemists from distant kingdoms, scarring some deeply enough to inspire murder. As the Elrics find their course altered by these enemies and allies, their purpose remains unchanged – and their bond unbreakable.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2108/","id":2108,"name":"Fullmetal Alchemist","episode_number":"101"},"id":84,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8310123-fmabrotherhood.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8310123-fmabrotherhood.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8310123-fmabrotherhood.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8310123-fmabrotherhood.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8310123-fmabrotherhood.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8310123-fmabrotherhood.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8310123-fmabrotherhood.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8310123-fmabrotherhood.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8310123-fmabrotherhood.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-16706/","id":16706,"name":"Yet Another Man's Battlefield","episode_number":"204"},"name":"Fullmetal Alchemist: Brotherhood","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-3691/","id":3691,"name":"Square Enix"},"site_detail_url":"https://comicvine.gamespot.com/fullmetal-alchemist-brotherhood/4075-84/","start_year":"2009-2010"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-86/","count_of_episodes":26,"date_added":"2013-09-30 16:37:01","date_last_updated":"2013-10-03 13:43:17","deck":"CGI animated series chronicling the adventures of Hal Jordan and his fellow Lanterns.","description":"

    The series follows Hal Jordan, Green Lantern of Space Sector 2814, and Kilowog on their journey through frontier space. Aboard the Interceptor and guided by the artificial intelligence unit Aya, this small team comes up against many challenges to, not just the Green Lantern Corps, but to the entire universe!

    The team also come face to face with some of the strangest and most recognizable figures in DC Comics during their travels.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2212/","id":2212,"name":"Beware My Power: Green Lantern's Light Part One","episode_number":"101"},"id":86,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/110531/3344255-green-lantern-the-animated-series-season-2-episode-3-steam-lantern.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2247/","id":2247,"name":"Dark Matter","episode_number":"126"},"name":"Green Lantern: The Animated Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/green-lantern-the-animated-series/4075-86/","start_year":"2011-2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-87/","count_of_episodes":24,"date_added":"2013-10-01 15:37:37","date_last_updated":"2021-06-30 20:21:23","deck":null,"description":"

    Kill la Kill (キルラキル Kiru ra Kiru) is the first original anime production created by Trigger, which was founded by two former Gainax employees in 2011. The series is directed by Hiroyuki Imaishi, Trigger co-founder; and written by Kazuki Nakashima. The first episode aired on October 3, 2013.

    The series is licensed by Aniplex for North America for the purpose of both simulcasting and later U.S. market release. The simulcast servers for the English audience with subtitles are Crunchyroll and HULU.

    A tie-in manga series illustrated by Ryou Akizuki began on October 4, 2013 in Kadokawa Shoten's Young Ace magazine.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-12085/","id":12085,"name":"Into the Night","episode_number":"18"},"id":87,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/47703/3346543-klk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/47703/3346543-klk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/47703/3346543-klk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/47703/3346543-klk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/47703/3346543-klk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/47703/3346543-klk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/47703/3346543-klk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/47703/3346543-klk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/47703/3346543-klk.jpg","image_tags":"All Images,Official Series Art"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-12091/","id":12091,"name":"Past the Infinite Darkness","episode_number":"24"},"name":"Kill la Kill","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1961/","id":1961,"name":"Kadokawa Shoten"},"site_detail_url":"https://comicvine.gamespot.com/kill-la-kill/4075-87/","start_year":"2013"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-89/","count_of_episodes":12,"date_added":"2013-10-01 15:50:54","date_last_updated":"2013-10-08 09:17:57","deck":null,"description":"

    RoboCop: The Animated Sereies is a Marvel production aired in late 1988. It has been made in the United States and animated by AKOM productions.

    The series based on the original movie RoboCop.

    RoboCop/Alex Murphy still upholding the law in Old Detroit, trying to reconnect with his humanity and trying to prove his usfulness to the OCP's chairman,the Old Man.

    The series had 1 season which contained 12 episodes.

    Home Media

    In 1991 Marvel Videos released three individulal NTSC VHS from the series which was:

    • Vol 1 - Man In The Iron Suit
    • Vol 2 - Crime Wave
    • Vol 3 - A Robot's Revenge

    The whole series only has been released in 2008 as a 3 disc DVD box set by Jetix Films UK.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2376/","id":2376,"name":"Crime Wave","episode_number":"101"},"id":89,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11113/111132725/3345938-3828614217-x240-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11113/111132725/3345938-3828614217-x240-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11113/111132725/3345938-3828614217-x240-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11113/111132725/3345938-3828614217-x240-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11113/111132725/3345938-3828614217-x240-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11113/111132725/3345938-3828614217-x240-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11113/111132725/3345938-3828614217-x240-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11113/111132725/3345938-3828614217-x240-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11113/111132725/3345938-3828614217-x240-.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2827/","id":2827,"name":"Menace Of The Mind","episode_number":"112"},"name":"RoboCop: The Animated Series","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/robocop-the-animated-series/4075-89/","start_year":"1988"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-90/","count_of_episodes":65,"date_added":"2013-10-02 17:58:51","date_last_updated":"2016-02-27 05:55:45","deck":null,"description":"

    Animated series about the adventures of Flash Gordon, The Phantom, and Mandrake the Magician.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-18215/","id":18215,"name":"Bits 'n' Chips","episode_number":"105"},"id":90,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/142972/3348819-defenders%20title%20card.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/142972/3348819-defenders%20title%20card.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/142972/3348819-defenders%20title%20card.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/142972/3348819-defenders%20title%20card.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/142972/3348819-defenders%20title%20card.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/142972/3348819-defenders%20title%20card.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/142972/3348819-defenders%20title%20card.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/142972/3348819-defenders%20title%20card.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/142972/3348819-defenders%20title%20card.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-20272/","id":20272,"name":"The Panther Peril","episode_number":"118"},"name":"Defenders of the Earth","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-198/","id":198,"name":"King Features Syndicate"},"site_detail_url":"https://comicvine.gamespot.com/defenders-of-the-earth/4075-90/","start_year":"1986"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-91/","count_of_episodes":32,"date_added":"2013-10-02 19:00:53","date_last_updated":"2015-06-29 11:43:26","deck":"Animated series about Flash Gordon.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-18758/","id":18758,"name":"Gremlin the Dragon","episode_number":"201"},"id":91,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/142972/3348966-mv5bmtiynzazmjk5mf5bml5banbnxkftztcwndi2nzmzmq%40%40._v1_sy317_cr10%2C0%2C214%2C317_.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-18620/","id":18620,"name":"A Planet in Peril","episode_number":"101"},"name":"The New Adventures of Flash Gordon","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-198/","id":198,"name":"King Features Syndicate"},"site_detail_url":"https://comicvine.gamespot.com/the-new-adventures-of-flash-gordon/4075-91/","start_year":"1979"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-92/","count_of_episodes":92,"date_added":"2013-10-03 06:23:51","date_last_updated":"2013-10-05 20:32:32","deck":"Two laboratory mice attempt to take over the world.","description":"

    Plot Summary

    Pinky and Brain are two laboratory mice who, thanks to a genetic experiment, are more intelligent than regular mice. Brain is a mouse genius, while Pinky is considered the dumber of the two. Every night, the two try their hand at world domination. But something always goes wrong - and ironically, it is more often an error on Brain's part, rather than Pinky's.

    Regular Cast Members

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2414/","id":2414,"name":"Brain Food","episode_number":"351"},"id":92,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3350055-pinky_and_the_brain_vol1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3350055-pinky_and_the_brain_vol1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3350055-pinky_and_the_brain_vol1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3350055-pinky_and_the_brain_vol1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3350055-pinky_and_the_brain_vol1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3350055-pinky_and_the_brain_vol1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3350055-pinky_and_the_brain_vol1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3350055-pinky_and_the_brain_vol1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3350055-pinky_and_the_brain_vol1.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2394/","id":2394,"name":"Inherit the Wheeze","episode_number":"339"},"name":"Pinky and the Brain","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/pinky-and-the-brain/4075-92/","start_year":"1995"},{"aliases":"Avatar: Der Herr der Elemente","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-93/","count_of_episodes":61,"date_added":"2013-10-03 15:02:07","date_last_updated":"2020-10-30 02:50:05","deck":"A Nickelodeon series that ran from 2005 to 2008.","description":"

    Avatar: The Last Airbender is a Nickelodeon show about an airbender who must learn three other elements before summer, and save the entire world. This airbender, a twelve year old nomad named Aang , is the very last airbender, and is the Avatar, the only person capable of learning all four elements (water, earth, fire, and air). He awoke after being frozen in a block of ice, along with his air bison Appa, to find a world thrown into war by the Fire nation. He was found by two Water tribe children, Katara, the only water bender in the South pole, and her brother Sokka, a non bender. They become a group, and travel the world, helping anyone they can, while Aang learns water bending, earth bending, and fire bending (in that specific order). Along the way, they meet lots of people, including Toph, an earthbender who would join them to teach Aang, Zuko, who started as an enemy, but eventually joined them to teach Aang firebending, Momo, a lemur who they found at the Southern Air temple, and many more.

    Aang must learn the elements before the Firelord Ozai, and the rest of the Fire nation army, take over or destroy the rest of the world like they did to the Air Nomads. It lasted for three seasons (Book 1: Water, Book 2: Earth, and Book 3: Fire, and produced spin-offs, including comic books, and a sequel (Legend of Korra). It borrows heavily from both Anime and Asian culture, and dealt with mature subject that makes it enjoyed by all ages.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2592/","id":2592,"name":"The Boy in the Iceberg","episode_number":"101"},"id":93,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111116916/3350839-avatar_the_last_airbender_logo.svg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-13690/","id":13690,"name":"Sozin's Comet Part 1: Phoenix King","episode_number":"318"},"name":"Avatar: The Last Airbender","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-364/","id":364,"name":"Dark Horse Comics"},"site_detail_url":"https://comicvine.gamespot.com/avatar-the-last-airbender/4075-93/","start_year":"2005-2008"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-94/","count_of_episodes":52,"date_added":"2013-10-03 15:04:58","date_last_updated":"2020-10-30 02:50:51","deck":null,"description":"

    A sequel tv series of Avatar: The Last Airbender.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4665/","id":4665,"name":"A Leaf in the Wind","episode_number":"102"},"id":94,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111116916/3350846-masthead_korra.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111116916/3350846-masthead_korra.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111116916/3350846-masthead_korra.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111116916/3350846-masthead_korra.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111116916/3350846-masthead_korra.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111116916/3350846-masthead_korra.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111116916/3350846-masthead_korra.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111116916/3350846-masthead_korra.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111116916/3350846-masthead_korra.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-19727/","id":19727,"name":"Day of the Colossus","episode_number":"412"},"name":"The Legend of Korra","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-364/","id":364,"name":"Dark Horse Comics"},"site_detail_url":"https://comicvine.gamespot.com/the-legend-of-korra/4075-94/","start_year":"2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-95/","count_of_episodes":51,"date_added":"2013-10-03 16:14:50","date_last_updated":"2021-11-29 08:54:19","deck":"A Cartoon Network show from 1996 to 2003 by Genndy Tartakovsky, the creator of Samurai Jack.","description":"

    Dexter is a boy genius with a secret high-tech laboratory in his room, which he keeps as a secret from his parents. He also has an annoying sister named Dee Dee who won't leave him alone!

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2382/","id":2382,"name":"Deedeemensional/Magmanamus/Maternal Combat","episode_number":"101"},"id":95,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111116916/3351209-dexter%27s_laboratory_title.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2380/","id":2380,"name":"Rude Removal","episode_number":"501"},"name":"Dexter's Laboratory","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5018/","id":5018,"name":"Hanna-Barbera"},"site_detail_url":"https://comicvine.gamespot.com/dexters-laboratory/4075-95/","start_year":"1996-2003"},{"aliases":"エックスメン\r\nEkkusu Men","api_detail_url":"https://comicvine.gamespot.com/api/series/4075-96/","count_of_episodes":12,"date_added":"2013-10-03 23:34:11","date_last_updated":"2018-10-30 17:45:49","deck":"Marvel Anime: X-Men is the third series in the Marvel Anime Universe.","description":"

    The X-Men are a team of superhuman mutants founded by the worlds most powerful telepath, Professor Charles Xavier. Formed to defend human and mutants alike, the X-Men have disbanded in the wake of a tragedy when one of their members, Jean Grey, is killed in battle with the evil secret society, known as the Inner Circle.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3518/","id":3518,"name":"The Return - Joining Forces","episode_number":"101"},"id":96,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/120730/3352165-x-men-anime-english%5B1%5D.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-26264/","id":26264,"name":"Destiny","episode_number":"112"},"name":"X-Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/x-men/4075-96/","start_year":"2011"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-97/","count_of_episodes":21,"date_added":"2013-10-03 23:34:47","date_last_updated":"2015-04-25 16:08:47","deck":"The Incredible Hulk is an American animated television series starring the Marvel Comics character the Hulk. In this dark take on the Green Goliath's life, Bruce Banner attempts to cure his condition permanently while he tries to escape from enemies who are following him, every step of the way.","description":"

    Plot

    Season 1 (13 Episodes)

    Unlike Fantastic Four: The Animated Series and Iron Man: The Animated Series, the entire series was developed by the two shows' second season creators. The first season was mainly dark and mature in take, which is not similar to the two programs above since these two shows may have a mild adult tone, the endings are mostly calm and are considered happy endings, mostly. The first season concerns Dr. Bruce Banner's attempts to seek a cure for the cure, with some aid from Rick Jones, the reason why Bruce became the Hulk, Betty Ross, Bruce's love interest and his friend Doc Samson. Bruce's attempt to find a cure were ended mostly in failure, due to the intervention of several of his enemies. Bruce, while uncontrollably transforms into the Hulk in several occasions, travels to several parts of the world to find peace, an end to his pain and to stop his adversaries. Along his journey for inner peace, the Hulk encounters several enemies like General Ross, and his right hand man, Major Talbot. He also fights fellow rogue SHIELD Agent Gabriel Jones, The Leader and his servant boys, Gargoyle, and Abomination, the supercharged alien, Zzzax, the savage Sasquatch, the tyrannical Doctor Doom and the monstrous Wendigo and the villainous Ogress. With all of these enemies in the way, the Hulk may need help from people like Rick Jones, Betty Ross, Doc Samson, Iron Man, with his friend War Machine and his computer HOMER, the mysterious Daniel Ketch, a member of the Fantastic Four name the Thing, his cousin She-Hulk and the mighty Thor. Will the Hulk save the world and receive peace?

    Click here for the intro of Season 1.

    Season 2 (8 Episodes)

    By this time, the show is now called, \"The Incredible Hulk and She-Hulk\". The dark tone of the show has been removed, thus making it more child friendly. After the events of the \"Darkness and Light\" trilogy, which is the first season's finale, Bruce Banner unwillingly transforms into the Grey Hulk, and the other Hulk is not happy about his new brother. This causes further inner turmoil with them. Luckily, She-Hulk and Rick Jones return to help him and General Ross is in a coma, which lessens his problems. Many more of Hulk's alter ego's surface like the gangster Mr. Fixit. With more added help from Doctor Strange, will the Hulk get his head straight? By the way, Doctor Doom returns again.

    Click here for the intro of The Incredible Hulk and She-Hulk.

    Season 3 (No Episodes)

    When the creators of the show decided to make the show lighter, it's popularity plummeted, thus leading to it's confirmed fate, which is cancellation after the episode \"Mission: Incredible\" was aired. As of now, Season 3 will never happen.

    Reception

    Critical reception for Season 1 was general acclaim from critics and fans of the comic books as well. The first season was given unanimous praise for it's undeniably adult tone and it's seriousness, as well as the first season's story arcs. The voice acting was also likened such as the several guest appearances from famous actors and well-known characters from the comics. However, the second season was received with disappointment because of it's lack of the first season's darkness, and the core characters sudden disappearance was also received negatively. As a result, the show only lasted two seasons with, only 21 episodes.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2819/","id":2819,"name":"Return of the Beast: Part One","episode_number":"101"},"id":97,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/120730/3352220-incredible_hulk_tas%5B1%5D.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-17726/","id":17726,"name":"Mission: Incredible","episode_number":"208"},"name":"The Incredible Hulk","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4075-97/","start_year":"1996-1997"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-98/","count_of_episodes":13,"date_added":"2013-10-03 23:49:57","date_last_updated":"2013-10-14 02:42:30","deck":"An anime based on the light novel series by Izuru Yumizuru. Infinite Stratos or \"IS\" are exoskeleton frame that are considered as powerful weapons and it seems like only females can use it.","description":"
    \"No

    I.S. or Infinite Stratos is a anime based on the light novel by Izuru Yumizuru and illustrated by Okiura and CHOCO. I.S. are exoskeleton suits that gives it user superhuman speed, strength, and flight.

    I.S. can also be outfitted with various weapons making them a powerful military asset. There is a catch to this powerful weapons, it can only be piloted by women.

    The story revolves around Ichika Orimura, the only known male I.S. pilot.

    \"No

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2854/","id":2854,"name":"All My Classmate are Female","episode_number":"101"},"id":98,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111112793/3352298-0841787429-infin.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111112793/3352298-0841787429-infin.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111112793/3352298-0841787429-infin.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111112793/3352298-0841787429-infin.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111112793/3352298-0841787429-infin.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111112793/3352298-0841787429-infin.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111112793/3352298-0841787429-infin.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111112793/3352298-0841787429-infin.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111112793/3352298-0841787429-infin.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-27193/","id":27193,"name":"A Sextet Yearns to Be in Love","episode_number":"113"},"name":"Infinite Stratos","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-3169/","id":3169,"name":"Media Factory"},"site_detail_url":"https://comicvine.gamespot.com/infinite-stratos/4075-98/","start_year":"2011"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-99/","count_of_episodes":271,"date_added":"2013-10-04 01:28:34","date_last_updated":"2014-06-26 10:39:16","deck":"The animated adventures of Finn the Human and Jake the Dog.","description":"

    Plot Summary

    Finn and his best friend and adoptive brother Jake go on countless adventures in the Land of Ooo. Together they have fun, help their friends, and defend the land and it's inhabitants from the mysterious Ice King.

    Regular Cast Members

    In Comics

    The series has also been adapted into comic book format, along with a spin-off comic starring Marceline, and the following volumes are currently available:

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-23395/","id":23395,"name":"Elemental","episode_number":"808"},"id":99,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3352367-4070%20adventure%20time%20iceking%20lg_3.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-23457/","id":23457,"name":"Elements Part 8: Skyhooks II","episode_number":"909"},"name":"Adventure Time","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1868/","id":1868,"name":"Boom! Studios"},"site_detail_url":"https://comicvine.gamespot.com/adventure-time/4075-99/","start_year":"2008"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-100/","count_of_episodes":30,"date_added":"2013-10-04 01:48:38","date_last_updated":"2013-11-08 01:43:18","deck":"One of the most beloved Romance Comedy by Ken Akamatsu.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4550/","id":4550,"name":"Motoko's Choice, Love or the Sword: Don't Cry","episode_number":"125"},"id":100,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111112793/3352393-0297631783--Love.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111112793/3352393-0297631783--Love.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111112793/3352393-0297631783--Love.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111112793/3352393-0297631783--Love.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111112793/3352393-0297631783--Love.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111112793/3352393-0297631783--Love.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111112793/3352393-0297631783--Love.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111112793/3352393-0297631783--Love.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111112793/3352393-0297631783--Love.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-4555/","id":4555,"name":"Naru","episode_number":"303"},"name":"Love Hina","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4930/","id":4930,"name":"XEBEC"},"site_detail_url":"https://comicvine.gamespot.com/love-hina/4075-100/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-101/","count_of_episodes":25,"date_added":"2013-10-04 09:16:32","date_last_updated":"2020-06-28 14:23:28","deck":null,"description":"

    The first show featuring Scooby and the gang solving mysteries of men hiding behind masks. Even though it was only 45 episodes, its legacy can't be understated.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2555/","id":2555,"name":"What a Night for a Knight","episode_number":"101"},"id":101,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/3353024-4436804208-Scoob.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/3353024-4436804208-Scoob.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/3353024-4436804208-Scoob.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/3353024-4436804208-Scoob.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/3353024-4436804208-Scoob.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/3353024-4436804208-Scoob.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/3353024-4436804208-Scoob.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/3353024-4436804208-Scoob.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/3353024-4436804208-Scoob.png","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2911/","id":2911,"name":"Don't Fool with a Phantom","episode_number":"208"},"name":"Scooby-Doo, Where Are You!","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5018/","id":5018,"name":"Hanna-Barbera"},"site_detail_url":"https://comicvine.gamespot.com/scoobydoo-where-are-you/4075-101/","start_year":"1969"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-102/","count_of_episodes":25,"date_added":"2013-10-04 09:28:06","date_last_updated":"2015-02-26 21:04:38","deck":"The second show featuring Scooby and the gang along with special guest.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2556/","id":2556,"name":"Ghastly Ghostly Town","episode_number":"101"},"id":102,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/3353045-2565796041-The_N.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/3353045-2565796041-The_N.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/3353045-2565796041-The_N.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/3353045-2565796041-The_N.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/3353045-2565796041-The_N.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/3353045-2565796041-The_N.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/3353045-2565796041-The_N.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/3353045-2565796041-The_N.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/3353045-2565796041-The_N.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-32842/","id":32842,"name":"Night of the Living Doo","episode_number":"301"},"name":"The New Scooby-Doo Movies","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5018/","id":5018,"name":"Hanna-Barbera"},"site_detail_url":"https://comicvine.gamespot.com/the-new-scoobydoo-movies/4075-102/","start_year":"1972"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-103/","count_of_episodes":95,"date_added":"2013-10-05 13:28:06","date_last_updated":"2013-10-09 13:07:37","deck":null,"description":"

    Based on the Marvel comics.

    Episodes 001-005 make up a miniseries that ran in 1983 and have been included in packaging for Season 1.

    Episodes 006-010 make up the Revenge of Cobra miniseries that ran in 1984, which has also been included in packaging for Season 1.

    Regular seasons begin with the regular numbers, starting with 101.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2594/","id":2594,"name":"The Cobra Strikes","episode_number":"001"},"id":103,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/83918/3355717-gi%20joe%20title.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/83918/3355717-gi%20joe%20title.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/83918/3355717-gi%20joe%20title.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/83918/3355717-gi%20joe%20title.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/83918/3355717-gi%20joe%20title.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/83918/3355717-gi%20joe%20title.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/83918/3355717-gi%20joe%20title.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/83918/3355717-gi%20joe%20title.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/83918/3355717-gi%20joe%20title.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-3552/","id":3552,"name":"Spell of the Siren","episode_number":"130"},"name":"G.I. Joe: A Real American Hero","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/gi-joe-a-real-american-hero/4075-103/","start_year":"1983"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-104/","count_of_episodes":16,"date_added":"2013-10-06 01:50:44","date_last_updated":"2013-10-06 05:53:14","deck":"Original 1973 animated series based on the strips by Charles Addams.","description":"

    Regular Cast Members

    Pilot Cast

    The official series pilot was an episode of The New Scooby-Doo Movies, specifically The New Scooby-Doo Movies #103 - Wednesday is Missing.

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2600/","id":2600,"name":"The Addams Family in New York","episode_number":"101"},"id":104,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3356968-1320641706.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3356968-1320641706.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3356968-1320641706.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3356968-1320641706.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3356968-1320641706.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3356968-1320641706.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3356968-1320641706.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3356968-1320641706.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3356968-1320641706.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2615/","id":2615,"name":"The Addams Family at the Kentucky Derby","episode_number":"116"},"name":"The Addams Family","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/the-addams-family/4075-104/","start_year":"1973"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-105/","count_of_episodes":26,"date_added":"2013-10-06 01:50:47","date_last_updated":"2013-10-06 01:51:48","deck":"1992 animated series.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2616/","id":2616,"name":"Happyester Fester","episode_number":"101"},"id":105,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3356969-addams_family_1992.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3356969-addams_family_1992.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3356969-addams_family_1992.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3356969-addams_family_1992.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3356969-addams_family_1992.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3356969-addams_family_1992.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3356969-addams_family_1992.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3356969-addams_family_1992.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3356969-addams_family_1992.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2632/","id":2632,"name":"Camp Addams","episode_number":"211"},"name":"The Addams Family","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/the-addams-family/4075-105/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-106/","count_of_episodes":64,"date_added":"2013-10-06 14:55:07","date_last_updated":"2013-10-06 22:07:58","deck":"The first live action Addams Family television series.","description":"

    The Addams Family, America's first family of ghastly giddiness, are here in all of their ghoulish glory in the original TV series based on the delightfully demented imagination of Charles Addams. Tarantulas, torture racks and tombstones have never been so much fun! Join Gomez, Morticia, Uncle Fester, Lurch, Cousin Itt and the rest of the gang for a fiendishly funny and altogether ooky experience. It's time to pay a call on...The Addams Family!

    Regular Cast Members

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2644/","id":2644,"name":"The Addams Family Goes To School","episode_number":"101"},"id":106,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3357658-mv5bmtkxmduwmdiyn15bml5banbnxkftztcwnzm1mjg4na%40%40._v1._sx400_sy600_.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2709/","id":2709,"name":"Ophelia's Career","episode_number":"230"},"name":"The Addams Family","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/the-addams-family/4075-106/","start_year":"1964"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-107/","count_of_episodes":65,"date_added":"2013-10-06 22:26:19","date_last_updated":"2013-10-06 22:26:59","deck":"Nineties remake of the television series The Addams Family.","description":null,"first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2712/","id":2712,"name":"Halloween with the Addams Family","episode_number":"101"},"id":107,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/132162/3358118-addams-family-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/132162/3358118-addams-family-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/132162/3358118-addams-family-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/132162/3358118-addams-family-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/132162/3358118-addams-family-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/132162/3358118-addams-family-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/132162/3358118-addams-family-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/132162/3358118-addams-family-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/132162/3358118-addams-family-1.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2712/","id":2712,"name":"Halloween with the Addams Family","episode_number":"101"},"name":"The New Addams Family","publisher":null,"site_detail_url":"https://comicvine.gamespot.com/the-new-addams-family/4075-107/","start_year":"1998"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/series/4075-108/","count_of_episodes":221,"date_added":"2013-10-07 02:29:32","date_last_updated":"2021-11-26 16:27:39","deck":null,"description":"

    The fourth My Little Pony series which was created by Lauren Faust. Since the show's airing it has amassed a large male fanbase.

    In the magical land of Equestria, a kingdom populated only by colorful ponies, TWILIGHT SPARKLE, a studious and slightly reclusive young unicorn intent only on enhancing her magical abilities, has been assigned by her mentor, PRINCESS CELESTIA, a very important task: get your muzzle out of those books and make some friends! In the quaint, fairytale village of PONYVILLE, TWILIGHT SPARKLE meets 5 new ponies, and through funny, offbeat experiences and exciting, enchanted adventures, they teach her about the most powerful magic of all: the magic of friendship!

    ","first_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-2761/","id":2761,"name":"Friendship Is Magic - Part 1 (Mare in the Moon)","episode_number":"101"},"id":108,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/55582/3358646-main_characters_and_celestia_around_logo.jpg","image_tags":"All Images"},"last_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/episode/4070-32539/","id":32539,"name":"The Last Problem","episode_number":"926"},"name":"My Little Pony: Friendship is Magic","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2697/","id":2697,"name":"Hasbro"},"site_detail_url":"https://comicvine.gamespot.com/my-little-pony-friendship-is-magic/4075-108/","start_year":"2010"}],"version":"1.0"} \ No newline at end of file diff --git a/packages/client/src/__mocks__/api-response/story-arc-details.json b/samples/api-data/story-arc-details/story_arc-4045-40764.json similarity index 100% rename from packages/client/src/__mocks__/api-response/story-arc-details.json rename to samples/api-data/story-arc-details/story_arc-4045-40764.json diff --git a/samples/api-data/story-arc-details/story_arc-4045-40800.json b/samples/api-data/story-arc-details/story_arc-4045-40800.json new file mode 100644 index 0000000..f5ac854 --- /dev/null +++ b/samples/api-data/story-arc-details/story_arc-4045-40800.json @@ -0,0 +1,74 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40800/", + "count_of_isssue_appearances": 0, + "date_added": "2008-06-06 11:27:51", + "date_last_updated": "2013-03-01 13:32:33", + "deck": "The Blue Beetle, Ted Kord, has discovered something that has endangered his life, and the lives of others. Maxwell Lord has betrayed his former superhero colleagues, and plans to destroy them all.", + "description": "

    Collected Editions

    Related Issues

    Non-U.S. Editions

    Novelization

    \"No
    Cosmic legend has it that when the primordial gods of antiquity perished in some bygone cataclysm, the universe gave birth to a new breed of gods who reigned from two eternally warring worlds, the heavenly New Genesis and the hellish Apokolips. Now, a vast conspiracy of evil is determined to eradicate the New Gods, stealing their souls to wield universal power that can destroy all of reality.
    At the end of an age in which time, space, and reality may bow before such sinister forces, the fate of the Earth lies in the hands of five unlikely super heroes who have one destiny to fulfill: to save the world at all costs, regardless of the consequences.
    Written By: Greg Cox
    Publisher: Ace Trade (July, 2009)
    ISBN-10: 0441017185
    ", + "episodes": [], + "first_appeared_in_episode": null, + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107912/", + "id": 107912, + "name": null, + "issue_number": "1" + }, + "id": 40800, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/54/81244-99319-countdown-to-infinit.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/54/81244-99319-countdown-to-infinit.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/54/81244-99319-countdown-to-infinit.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/54/81244-99319-countdown-to-infinit.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/54/81244-99319-countdown-to-infinit.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/54/81244-99319-countdown-to-infinit.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/54/81244-99319-countdown-to-infinit.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/54/81244-99319-countdown-to-infinit.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/54/81244-99319-countdown-to-infinit.jpg", + "image_tags": "All Images,Countdown to Infinite Crisis" + }, + "issues": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107912/", + "id": 107912, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/countdown-to-infinite-crisis-1/4000-107912/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107684/", + "id": 107684, + "name": "Affirmative Defense (Sacrifice, Aftermath)", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-220-affirmative-defense-sacrifice-aft/4000-107684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107685/", + "id": 107685, + "name": "Pride of the Amazons", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-221-pride-of-the-amazons/4000-107685/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265983/", + "id": 265983, + "name": "Truth and Consequences!; Snapshot: Redemption!", + "site_detail_url": "https://comicvine.gamespot.com/dc-universe-legacies-10-truth-and-consequences-sna/4000-265983/" + } + ], + "movies": [], + "name": "Countdown to Infinite Crisis", + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-10/", + "id": 10, + "name": "DC Comics", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics/4010-10/" + }, + "site_detail_url": "https://comicvine.gamespot.com/countdown-to-infinite-crisis/4045-40800/" + }, + "version": "1.0" +} diff --git a/samples/api-data/story-arc-details/story_arc-4045-42219.json b/samples/api-data/story-arc-details/story_arc-4045-42219.json new file mode 100644 index 0000000..a3858e0 --- /dev/null +++ b/samples/api-data/story-arc-details/story_arc-4045-42219.json @@ -0,0 +1,68 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-42219/", + "count_of_isssue_appearances": 0, + "date_added": "2008-06-06 11:27:51", + "date_last_updated": "2011-05-05 17:04:18", + "deck": "Pre-dating Knightfall by a few years, this 3-issue arc appeared in Detective Comics 598-600.", + "description": "

    Blind Justice was written by Sam Hamm who was a hot property, having just turned in his script for Tim Burton's first Batman movie.

    Batman is badly hurt in a fight and unable to fulfill his mission as the Dark Knight. Instead he trains a replacement, but his shoes may be too big to fill. 

    Collected Editions

    ", + "episodes": [], + "first_appeared_in_episode": null, + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106871/", + "id": 106871, + "name": "Blind Justice, Chapter One: The Sleep of Reason", + "issue_number": "598" + }, + "id": 42219, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1677945-blindjustcie5.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1677945-blindjustcie5.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1677945-blindjustcie5.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1677945-blindjustcie5.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1677945-blindjustcie5.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1677945-blindjustcie5.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1677945-blindjustcie5.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1677945-blindjustcie5.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/6/64770/1677945-blindjustcie5.jpg", + "image_tags": "All Images" + }, + "issues": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106871/", + "id": 106871, + "name": "Blind Justice, Chapter One: The Sleep of Reason", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-598-blind-justice-chapter-one-the/4000-106871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106872/", + "id": 106872, + "name": "Blind Justice", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-599-blind-justice/4000-106872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105900/", + "id": 105900, + "name": "Blind Justice", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-600-blind-justice/4000-105900/" + } + ], + "movies": [], + "name": "Blind Justice", + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-10/", + "id": 10, + "name": "DC Comics", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics/4010-10/" + }, + "site_detail_url": "https://comicvine.gamespot.com/blind-justice/4045-42219/" + }, + "version": "1.0" +} diff --git a/samples/api-data/story-arc-details/story_arc-4045-42241.json b/samples/api-data/story-arc-details/story_arc-4045-42241.json new file mode 100644 index 0000000..c805366 --- /dev/null +++ b/samples/api-data/story-arc-details/story_arc-4045-42241.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42241/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-03-10 11:29:54","deck":"Follow up event to Fatal Attractions that pitted the Avengers and X-Men against Fabian Cortez and Exodus in battle on the island of Genosha.","description":"

    Cortez attempted to shield himself from his former master's wrath by kidnapping Magneto's granddaughter Luna. However, as Luna's father Quicksilver had strong ties to the X-Men and her mother Crystal was a member of the Avengers, both teams became involved in the Genoshan conflict. The situation was further complicated by Magneto's lieutenant and self-proclaimed heir Exodus, who sought to kill both Cortez for his betrayal and Luna for \"disgracing\" Magneto's line by being merely human.

    Collected Editions

    Non-U.S. Editions

    ","episodes":[],"first_appeared_in_episode":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-38090/","id":38090,"name":"Bloodties Part I of V: Reckoning","issue_number":"368"},"id":42241,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","image_tags":"All Images,Bloodties,Story Arcs"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65727/","id":65727,"name":"Bloodties Part II of V: Civil Disobedience","site_detail_url":"https://comicvine.gamespot.com/x-men-26-bloodties-part-ii-of-v-civil-disobedience/4000-65727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38090/","id":38090,"name":"Bloodties Part I of V: Reckoning","site_detail_url":"https://comicvine.gamespot.com/the-avengers-368-bloodties-part-i-of-v-reckoning/4000-38090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114163/","id":114163,"name":"Bloodties Part III of V: Genosha, Mon Amour","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-101-bloodties-part-iii-of-v-ge/4000-114163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38290/","id":38290,"name":"Bloodties Part IV of V: Night and Fog","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-307-bloodties-part-iv-of-v-night/4000-38290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38246/","id":38246,"name":"Bloodties Part V of V: Of Kith and Kin","site_detail_url":"https://comicvine.gamespot.com/the-avengers-369-bloodties-part-v-of-v-of-kith-and/4000-38246/"}],"movies":[],"name":"Bloodties","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/bloodties/4045-42241/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/story-arc-details/story_arc-4045-43775.json b/samples/api-data/story-arc-details/story_arc-4045-43775.json new file mode 100644 index 0000000..e84f819 --- /dev/null +++ b/samples/api-data/story-arc-details/story_arc-4045-43775.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43775/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-01-10 17:39:25","deck":"Distraught over the death Gwen Stacy and angry at Spider-Man, the Jackal, with the help of Norman Osborn, concocts an elaborate revenge scheme involving cloning. He convinces Peter Parker that he is a clone and forces him to fight multiple copies of himself.","description":"

    Publication History

    There have been multiple Clone Sagas over the years. The original was written in the 1970's by Gerry Conway. However, the sequel written in the 1990's largely eclipsed it and has become an extremely important event in Spider-Man's history. This second Clone Saga was written by Terry Kavanagh and Howard Mackie. The executive editors involved were Tom DeFalco, Bob Budiansky and Bob Harras.

    Originally, the story arch was intended to conclude within less than a year. However, when sales exceeded expectations, Marvel decided to prolong the saga, stretching it out over almost three years. Unfortunately, the changes made in the aftermath of this decision proved largely unpopular and ultimately caused the story to seem somewhat convoluted.

    Since then, there have been a couple of additional attempts to revive and reboot the clone saga, including the 2006 Ultimate Clone Saga and a 2009 storyline called the Real Clone Saga.

    The Original Clone Saga

    The original Clone Saga began in \"Amazing Spider-Man #144” (May 1975). The story takes place in the aftermath of the death of Peter Parker's girlfriend, Gwen Stacy. This event was an extremely traumatic experience for Spider-Man and almost led him to quit being a superhero. However, only a few months later, after finally coming to grips with his loss, he would have to go through emotional turmoil once again when Gwen Stacy seemingly returns from the dead.

    As he would come to discover, her return was the work of a new super villain named Jackal. Jackal’s real identity is that of Miles Warren, a biochemist at Empire State University where Peter and Gwen studied. It was here that Miles fell in love with Gwen. However, after her death, he was driven mad by grief and desperately sought to clone her. After a number of failed attempts he finally succeeded in perfecting the formula and created identical copies of both her and Spider-Man.

    Jackal blames Spider-Man for Gwen's death and so, commands the clone to battle the original. Capitalizing on this opportunity, he also places a time bomb nearby. However, the fight between Spider-Man and the clone rages too long and the bomb goes off before Jackal can escape. In the end, the explosion kills both him and the clone, leaving Spider-Man the only one alive.

    Unnerved by the experience and worried that he may actually be the clone, Spider-Man conducts some genetic tests in an attempt to confirm his identity as the original. However, afraid of the truth, he ultimately avoids the results. Instead, he convinces himself that his love for Mary Jane Watson is proof enough of his identity. He remembers having feelings for her before the clone appeared, and thus concludes that he must be the real Spider-Man.

    The clone of Gwen Stacy moves on with her life. She leaves Empire State University in hopes of starting over somewhere new.

    Jackal's Genetic Weapon

    Years later, Spider-Man encounters Carrion, a clone of Warren who is suffering from genetic degeneration. After visiting Jackal's old laboratory, he discovers the professor's notes, which explain that Carrion is actually a genetic weapon created to infect all man kind with the degenerative disease. Deciding to put an end to Warren’s scheme, Spider-Man fights Carrion and defeats him. However, before the clone goes down, he manages to infect a student of Empire State University named Malcolm McBride with the plague, transforming him into a new Carrion.

    The New Clone Saga

    Many years later, it is revealed that the clone that Spider-Man had thought dead, had actually survived. Deeply depressed, he had left New York and taken on the name Ben Reilly, a combination of Uncle Ben's first name and Aunt May's maiden name. He had all the memories of Spider-Man, but knew he was a clone, and so, decided to keep his distance from Peter Parker. Moving to a different town, he made a new life for himself and started fighting crime as the Scarlet Spider.

    \"Clones,
    Clones, clones, clones.

    However, when Aunt May becomes ill and is hospitalized, he decides he cannot keep away any longer and goes to visit her. This leads to a confrontation between him and Peter. At first, the two fight, but eventually they come to an understanding and become friends. Unfortunately though, Ben and Peter aren't able to rest easy for long. Soon after Ben arrives, a mentally unstable man named Kaine shows up and challenges the two to a fight. Kaine reveals that he was the result of Jackal's first attempt at cloning Spider-Man. Unfortunately, something had gone awry in the cloning process and he had developed the degenerative disease. This caused a large black mark to appear on his face and forced him to wear a specially designed black suit that kept the disease at bay.

    Working together, Spider-Man and Scarlet Spider are able to defeat Kaine. Deciding they need to investigate further, they revisit Jackal's old lab. However, to their great surprise, he is revealed to be alive. He explains that the time bomb had actually killed a clone of himself, while he had lived on to continue his genetic experiments. Now ready to inflict the degenerative virus on the populace, he begins to put his plan into motion and commands a third Spider-Man clone named Spidercide to keep Spider-Man, Scarlet Spider, and Kaine at bay.

    Fortunately, they are able to defeat Spidercide and stop Warren's mad scheme. However, before escaping, Jackal reveals that Ben Reilly is actually the original Spider-Man and that Peter Parker is really a clone. After conducting their own genetic test, Peter and Ben realize that what he said is true and are forced to rethink their lives. Peter is particularly distraught over this revelation. Feeling he has stolen Ben's life, he decides to stop being Spider-Man and move to Portland with Mary Jane to start a more humble life. With him now gone, Ben moves to New York permanently and becomes the new Spider-Man.

    This became the status quo for close to a year. However, when Jackal reappears, Peter moves back to New York and works with Ben to investigate. Eventually they find the criminal and have another explosive battle. However, they would experience a huge shock when the long thought dead Norman Osborn reveals himself and explains that he had been secretly manipulating events all along. He tells them that he had switched the test results and that Peter really was the original Spider-Man, with Ben being the clone.

    At first, they aren't sure if they should believe the former Green Goblin. However, after a climactic battle with the criminal, Ben is stabbed by the Goblin's Glider and dies. As he breaths his last breath, his body disintegrates, succumbing to the degenerative genetic disorder that all the clones suffer from. This finally proves that Peter is the original, and after defeating Norman Osborn, he returns to his old life as Spider-Man.

    Ultimate Clone Saga

    A rebooted version of the Clone Saga was later written by Brian Michael Bendis for Marvel's Ultimate imprint. In this telling, Spider-Man, after catching the Scorpion, learns that the villain is actually a clone, sharing 94.2% of his DNA with our hero. Soon afterward, Mary Jane is abducted. However, in his quest to find his missing girlfriend, Peter encounters several other clones of himself, including one with a disfigured face named Kaine , one with six arms named Tarantula , and a female clone named Spider-Woman. In the course of this adventure, he reveals his secret identity to Aunt May and the Fantastic Four, and encounters both an amnesiatic Gwen Stacy and his long thought dead father, Richard Parker.

    After talking to Spider-Woman, he learns that each clone has inherited his love for Mary Jane. As a result, they each set out to protect her in different ways. Spider Woman and Tarantula both try to defend her from the other clones. However, Kaine eventually gets past them and administers the super human drug OZ to her in an attempt to make her more resistant to injury. Upon waking and discovering what has happened, Mary Jane is enraged and transforms into a large, red monster.

    As the story continues, Spider-Man discovers that the masterminds behind the creation of the clones are Doctor Octopus and a scientist named Ben Reilly. It is revealed that Reilly stole a sample of Peter's blood shortly after the death of Gwen Stacy and with the help of Doc Ock and the consent of the FBI, had set out to create the duplicates. This leads to a confrontation between the villains and clones which ends with both Tarantula and Kaine dead, and Dr. Octopus captured by S.H.I.E.L.D. In addition, Gwen reveals herself as Carnage and Richard discovers that he is yet another clone of Peter Parker, aged artificially and implanted with false memories. In the end, the clone posing as Richard Parker dies from rapid aging, Spider-Woman helps Peter defeat Octavius, and Reed Richards finds a cure for Mary Jane's affliction. Peter's relief at her safe condition leads him to rediscover his true feelings for her and resume their relationship. Spider-Woman runs away to start a new life somewhere else, and the Scorpion and Gwen Stacy are left in the custody of Nick Fury.

    Spider Wars

    The Clone Saga was also adapted by the 1990's Spider-Man television series in a storyline known as the Spider Wars. This version, however, differs in some significant ways. In a departure from the comics, the other Spider-Men are not clones, but are alternate reality versions of Spider-Man.

    The story begins in a distopic alternate Earth. In this Universe, a version of Spider-Man who has bonded with Carnage sets off a massive bomb that turns his world into a barren wasteland. However, unsatisfied with the destruction he has wrought, he decides to build an even larger bomb that can do the same to other alternate worlds. To thwart this menace, the cosmic being known as the Beyonder gathers six Spider-Men from different Universes to stop him.

    In addition to the mainstream Spider-Man, his other champions include the Iron Armor Spiderman, the Octo-Spiderman, the mutant Spiderman, Scarlet Spider, and an actor who, in his world, plays Spider-Man on television. The Spider-Man from the animated series was made leader of the team, and, together, they travel to confront Spider-Carnage. There is an intense fight. However, the villainous Spider-Man escapes with his bomb to the world of Iron Armor Spider-Man.

    Unfortunately, the Beyonder has been weakened and is only able to teleport one person to pursue the villain. As leader, the mainstream Spider-Man volunteers and so, is sent to track down Spider-Carnage in this new world. He quickly finds him. However, after a short fight, he realizes he isn't strong enough to win. Thinking the matter over, he realizes that the only way to stop him may be to appeal to his good nature. He finds Uncle Ben, who, in this Universe, never died, and, with his help, tries to convince Spider-Carnage to abandon his plan.

    His idea works, and the alternate Peter is able to fight the influence of Carnage. Desperate to stop the monster, he uses the weapon to kill himself and Carnage, thus saving the Multiverse. As thanks, the Beyonder allows Spider-Man to meet Stan Lee and then sends him back to his world.

    Collected Editions

    Non U.S. Editions

    ","episodes":[],"first_appeared_in_episode":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-64433/","id":64433,"name":"Power and Responsibility, Part 2- Breakdown!","issue_number":"394"},"id":43775,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2114146-1323112185.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2114146-1323112185.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2114146-1323112185.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2114146-1323112185.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2114146-1323112185.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2114146-1323112185.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2114146-1323112185.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2114146-1323112185.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2114146-1323112185.jpg","image_tags":"All Images,Clone Saga,Earth-616 Kaine,Earth-616 Scarlet Spider,Marvel Clones,Spider-man,Spiders"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65542/","id":65542,"name":"Power and Responsibility, Part 1: Shadow Rising","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-117-power-and-responsibility-par/4000-65542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65611/","id":65611,"name":"Power and Responsibility, Part 4- Higher Ground","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-217-power-and-responsib/4000-65611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64433/","id":64433,"name":"Power and Responsibility, Part 2- Breakdown!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-394-power-and-responsibilit/4000-64433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64630/","id":64630,"name":"Power and Responsibility, Part 3: A Heart Beat Away!","site_detail_url":"https://comicvine.gamespot.com/spider-man-51-power-and-responsibility-part-3-a-he/4000-64630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65543/","id":65543,"name":"The Exile Returns, Part 1 of 4: Memories","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-118-the-exile-returns-part-1-of-/4000-65543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64631/","id":64631,"name":"The Exile Returns, Part 2 of 4: Deadline","site_detail_url":"https://comicvine.gamespot.com/spider-man-52-the-exile-returns-part-2-of-4-deadli/4000-64631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57294/","id":57294,"name":"Second Rate Choices; A Conflict of Interests!; To Protect and Serve","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-7-second-rate-choices-a-confl/4000-57294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65544/","id":65544,"name":"The Exile Returns, Part 3 of 4:Echoes of Silence","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-119-the-exile-returns-part-3-of-/4000-65544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64632/","id":64632,"name":"The Exile Returns, Part 4 of 4 - Gathering Storms","site_detail_url":"https://comicvine.gamespot.com/spider-man-53-the-exile-returns-part-4-of-4-gather/4000-64632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65545/","id":65545,"name":"Web of Life, Part 1: Lure of the Spider","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-120-web-of-life-part-1-lure-of-t/4000-65545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65615/","id":65615,"name":"Web of Death Part 2: A Time to Live!; Scoop!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-220-web-of-death-part-2/4000-65615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64436/","id":64436,"name":"Web of Death, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-397-web-of-death-part-1-of-/4000-64436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64633/","id":64633,"name":"Web of Life, Part 2 of 4: Snared","site_detail_url":"https://comicvine.gamespot.com/spider-man-54-web-of-life-part-2-of-4-snared/4000-64633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65616/","id":65616,"name":"Web of Death, 4 of 4: A Time to Die!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-221-web-of-death-4-of-4/4000-65616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64634/","id":64634,"name":"Web of Life, Part 4 of 4: End Hunt","site_detail_url":"https://comicvine.gamespot.com/spider-man-55-web-of-life-part-4-of-4-end-hunt/4000-64634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57295/","id":57295,"name":"Behind The Terror","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-8-behind-the-terror/4000-57295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65546/","id":65546,"name":"Web of Life, Part 3: The Hunting","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-121-web-of-life-part-3-the-hunti/4000-65546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64438/","id":64438,"name":"Smoke and Mirrors, Part 2 of 3: The Jackal Reborn!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-399-smoke-and-mirrors-part-/4000-64438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64635/","id":64635,"name":"Smoke and Mirrors, Part 3 of 3: Truths & Deceptions","site_detail_url":"https://comicvine.gamespot.com/spider-man-56-smoke-and-mirrors-part-3-of-3-truths/4000-64635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125633/","id":125633,"name":"Eight Arms Beyond the Grave","site_detail_url":"https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus-1-eight-arms-bey/4000-125633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65547/","id":65547,"name":"Smoke and Mirrors, Part 1: The Call","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-122-smoke-and-mirrors-part-1-the/4000-65547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65617/","id":65617,"name":"Players and Pawns Part 1: False Truths","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-222-players-and-pawns-p/4000-65617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65548/","id":65548,"name":"Players and Pawns, Part 2: True Lies","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-123-players-and-pawns-part-2-tru/4000-65548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125692/","id":125692,"name":"Armed and Dangerous","site_detail_url":"https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus-2-armed-and-dang/4000-125692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64439/","id":64439,"name":"A Death in the Family","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-400-a-death-in-the-family/4000-64439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64636/","id":64636,"name":"Aftershocks","site_detail_url":"https://comicvine.gamespot.com/spider-man-57-aftershocks/4000-64636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70252/","id":70252,"name":"Radicals","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-59-radicals/4000-70252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65549/","id":65549,"name":"The Mark of Kaine, Part 1: Walls","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-124-the-mark-of-kaine-part-1-wal/4000-65549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65619/","id":65619,"name":"The Mark of Kaine Part 4: The Assassin With My Face","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-224-the-mark-of-kaine-p/4000-65619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125693/","id":125693,"name":"A Farewell To Arms!","site_detail_url":"https://comicvine.gamespot.com/spider-man-funeral-for-an-octopus-3-a-farewell-to-/4000-125693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64440/","id":64440,"name":"The Mark of Kaine, Part Two of Five: Down in the Darkness","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-401-the-mark-of-kaine-part-/4000-64440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64637/","id":64637,"name":"The Mark of Kaine, Part Three of Five - Spider, Spider, Who's Got The Spider?","site_detail_url":"https://comicvine.gamespot.com/spider-man-58-the-mark-of-kaine-part-three-of-five/4000-64637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57296/","id":57296,"name":"The Mark of Kaine, Part Five of Five: The Sinister Six Strike!","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-9-the-mark-of-kaine-part-five/4000-57296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110899/","id":110899,"name":"Planet of the Symbiotes Chapter One: The Far Cry!; Street Fear; Ghosts","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-super-special-1-planet-of-the-s/4000-110899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65550/","id":65550,"name":"Lives Unlived; Shining Armor","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-125-lives-unlived-shining-armor/4000-65550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65620/","id":65620,"name":"The Return of the Green Goblin; He Was Such a Nice Boy...","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-225-the-return-of-the-g/4000-65620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111213/","id":111213,"name":"Crossfire: Part One","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-402-crossfire-part-one/4000-111213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64638/","id":64638,"name":"Crossfire, Part Two: The Future is Now","site_detail_url":"https://comicvine.gamespot.com/spider-man-59-crossfire-part-two-the-future-is-now/4000-64638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140411/","id":140411,"name":"Planet of the Symbiotes, Part 2: Lurkers","site_detail_url":"https://comicvine.gamespot.com/spider-man-super-special-1-planet-of-the-symbiotes/4000-140411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65551/","id":65551,"name":"The Trial of Peter Parker (Part 1): Opening Statements","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-126-the-trial-of-peter-parker-pa/4000-65551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65621/","id":65621,"name":"The Trial of Peter Parker, Part 4 of 4: The Final Verdict","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-226-the-trial-of-peter-/4000-65621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64441/","id":64441,"name":"The Trial of Peter Parker, Part 2 of 4: Savage Judgement!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-403-the-trial-of-peter-park/4000-64441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64639/","id":64639,"name":"The Trial of Peter Parker, Part 3 of 4: The Face of Kaine","site_detail_url":"https://comicvine.gamespot.com/spider-man-60-the-trial-of-peter-parker-part-3-of-/4000-64639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41156/","id":41156,"name":"Everyone hates a clone","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-61-everyone-hates-a-clone/4000-41156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190583/","id":190583,"name":"Maximum Clonage Part 1: ...And the Jackel Cries, \"Death!\"","site_detail_url":"https://comicvine.gamespot.com/spider-man-maximum-clonage-1-maximum-clonage-part-/4000-190583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135337/","id":135337,"name":"Planet of the Symbiotes, Part 3","site_detail_url":"https://comicvine.gamespot.com/venom-super-special-1-planet-of-the-symbiotes-part/4000-135337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190632/","id":190632,"name":"Maximum Clonage Conclusion: The End of the Beginning","site_detail_url":"https://comicvine.gamespot.com/spider-man-maximum-clonage-omega-1-maximum-clonage/4000-190632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65552/","id":65552,"name":"Maximum Clonage (Part 2): The Last Temptation Of Peter Parker","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-127-maximum-clonage-part-2-the-l/4000-65552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109299/","id":109299,"name":"Maximum Clonage Part 5: If Death Be My Destiny","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-227-maximum-clonage-par/4000-109299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64442/","id":64442,"name":"Maximum Clonage, Part 3 of 6: War of the Spider-Men!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-404-maximum-clonage-part-3-/4000-64442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64640/","id":64640,"name":"Maximum Clonage, Part 4 of 6: Heading Towards Omega","site_detail_url":"https://comicvine.gamespot.com/spider-man-61-maximum-clonage-part-4-of-6-heading-/4000-64640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140414/","id":140414,"name":"Planet of the Symbiotes, Part 4","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-super-special-1-planet-of-t/4000-140414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139552/","id":139552,"name":"Planet of the Symbiotes, Part 5","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-super-special-1-planet-of-the-sy/4000-139552/"}],"movies":[],"name":"Clone Saga","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/clone-saga/4045-43775/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/story-arc-details/story_arc-4045-43901.json b/samples/api-data/story-arc-details/story_arc-4045-43901.json new file mode 100644 index 0000000..513de74 --- /dev/null +++ b/samples/api-data/story-arc-details/story_arc-4045-43901.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43901/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-08-21 13:27:12","deck":"From Generation X #63 to #66, the House of Correction storyline ran.","description":"

    Correction was an event featured only in the pages of Generation X.

    Collected Editions

    Non-U.S. Editions

    ","episodes":[],"first_appeared_in_episode":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46672/","id":46672,"name":"Correction (Part 1)","issue_number":"63"},"id":43901,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3848/121154-186779-correction.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3848/121154-186779-correction.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3848/121154-186779-correction.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3848/121154-186779-correction.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3848/121154-186779-correction.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3848/121154-186779-correction.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3848/121154-186779-correction.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3848/121154-186779-correction.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3848/121154-186779-correction.JPG","image_tags":"All Images,Correction"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46672/","id":46672,"name":"Correction (Part 1)","site_detail_url":"https://comicvine.gamespot.com/generation-x-63-correction-part-1/4000-46672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46673/","id":46673,"name":"Correction (Part 2)","site_detail_url":"https://comicvine.gamespot.com/generation-x-64-correction-part-2/4000-46673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46674/","id":46674,"name":"Correction (Part 3)","site_detail_url":"https://comicvine.gamespot.com/generation-x-65-correction-part-3/4000-46674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46675/","id":46675,"name":"Correction (Part 4)","site_detail_url":"https://comicvine.gamespot.com/generation-x-66-correction-part-4/4000-46675/"}],"movies":[],"name":"Correction","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/correction/4045-43901/"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/story-arc-list-item/story_arcs.json b/samples/api-data/story-arc-list-item/story_arcs.json new file mode 100644 index 0000000..446d8e6 --- /dev/null +++ b/samples/api-data/story-arc-list-item/story_arcs.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":5460,"status_code":1,"results":[{"aliases":"Kree/Shi'ar War","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-27758/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2022-04-21 17:33:51","deck":"Operation: Galactic Storm was a 19 part Avengers event. It ran within Avengers, West Coast Avengers, Captain America, Thor, Quasar, Iron Man and Wonder Man comics of the time.","description":"

    Plot Summary

    As a war between the Kree and Shi'ar rages, Earth becomes drawn into the conflict. The Shi'ar Imperial Guard come to steal the technology left by the deceased Captain Marvel while Kree agents try to secure their loose technology, getting the attention of the Avengers. Earth's Mightiest Heroes learn not only of the intergalactic war taking place but that their solar system is being used as a strategic hyperspace stop and it is severely destabilizing their sun.

    The east coast branch of the Avengers unite with the Avengers West Coast and divide into three teams. One team remains on Earth while the other two journey to the respective throneworlds of the Shi'ar and Kree to find some way of protecting Earth from this war. These space-bound teams are quickly embroiled in conspiracy within both alien empires. The Shi'ar team expose Skrull infiltrators deep within the Shi'ar ruling body, and the Kree team become fugitives as the Supreme Intelligence rises to rule the Kree once more.

    Even with the conspiracies becoming clear, the war continues with a life of its own. The Shi'ar complete their Nega-Bomb, an unprecedented weapon of mass destruction, and the Avengers are unable to stop Lilandra from deploying it against the Kree. Its detonation ends the war, killing millions upon millions of Kree.

    The Avengers survive and discover the true architect of all this death is the Supreme Intelligence, who sacrificed countless lives so that the few surviving Kree would break free of their evolutionary dead end thanks to the Nega-Bomb's fallout. This leads to half of the Avengers to decide to hunt down the Supreme Intelligence in the ruins of the Kree Empire and execute him for his crimes, despite Captain America's strong objections.

    The Shi'ar soon arrive to occupy the former Kree Empire, and the Avengers return to Earth.

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-134714/","id":134714,"name":"Decisions In A Vacuum","issue_number":"278"},"first_appeared_in_episode":null,"id":27758,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2028274-untitled.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2028274-untitled.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2028274-untitled.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2028274-untitled.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2028274-untitled.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2028274-untitled.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2028274-untitled.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2028274-untitled.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2028274-untitled.png","image_tags":"All Images,Story Arcs"},"name":"Operation: Galactic Storm","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/operation-galactic-storm/4045-27758/"},{"aliases":"The Captain","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40495/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2019-04-08 21:44:27","deck":"When Steve Rogers refuses to become a government operative, he is stripped of his uniform, title and shield, and a new Captain America is born! John Walker, the former Super-Patriot and future U.S.Agent, along with sidekick Battlestar, does his best to fill the big shoes Rogers left behind.","description":"

    Plot Summary

    It all begins with Captain America shooting a terrorist dead in a bid to save the lives of a bunch of hostages. This single moment of necessary force leads to public unease in the nation's symbol as sees rise to a series of new super soldiers who believe themselves fit to replace Captain America; in the shape of the Super-Patriot, Nuke and G.I. Max.

    At the same time the US Government discovers the secret identity of Captain America and subsequently declare the costume, shield, and very symbol that is Captain America as government property. In order to retain the persona of Captain America, Steve Rogers was ordered to serve as a government agent answering only to the Higher Commission, a group of suits in charge of super human activities.

    With the United States being a free country, Rogers envoked his right to choose and after 24 hours gave up the uniform and shield of Captain America. The Commission appointed a new Captain America; the Super-Patriot who had recently saved Washington from a serious terrorist attack. After several weeks, Rogers emerged as \"The Captain\" and armed with a Vibranium shield provided by Stark Enterprises. The Captain and a group of his close friends work together to continue to save the world from threats. A large interlude of the story, ties in with Armor Wars, in which The Captain finds himself at odds with Iron Man.

    The new Captain America begins to slip up and things only get worse when his parents get caught in the line of fire. The increasingly unstable Captain America begins a murderous rampage which eventually leads to the confrontation we've all been waiting for: the Original Captain America vs. the New Captain America!

    Collected Editions

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-28455/","id":28455,"name":"The Choice","issue_number":"332"},"first_appeared_in_episode":null,"id":40495,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/1979494-cap2.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/1979494-cap2.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/1979494-cap2.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/1979494-cap2.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/1979494-cap2.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/1979494-cap2.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/1979494-cap2.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/1979494-cap2.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/1979494-cap2.png","image_tags":"All Images,Captain America No More,Story Arcs"},"name":"Captain America No More","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/captain-america-no-more/4045-40495/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40503/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-03-08 05:05:10","deck":"The Joker tries to turn Commissioner Gordon crazy through a series of devised methods, proving that anyone can have a bad day. By Alan Moore and Brian Bolland.","description":"

    One night Batman goes to visit the Joker in Arkham Asylum. While contemplating the futility of their relationship, and that it will only result in either his or the Joker's death in the future, he discovers that the Joker sitting before him is not actually the Joker, but an impostor. Batman threatens the imposter, and asks his infamous question \"Where is he?!\"

    Meanwhile, the Joker is looking to buy a run-down old theme park for then unknown reasons. Through flashbacks, Moore reveals parts of the Joker's past, and shows he had a significant other named Jeannie who was pregnant with his child. Joker kills the owner of the theme park with his joker venom (the same one that made him the way he is) and makes the land his own. Later, Barbara Gordon answers the door only to find the Joker on the other side. The Joker shoots Barbara and takes nude photos of her on the floor and bleeding. His goons abduct Commissioner Gordon. In another flashback we see that the Joker was a failed comedian who, out of desperation for the life of his unborn baby, joins the mob for one job and becomes the Red Hood. Barbara is later revealed to be paralyses from the waist down. Batman consoles Barbara, and she tells him that this time its different. \"The look in his eyes\" she utters, while crying.

    Commissioner Gordon is stripped naked and sent through an insane carnival ride, bombarded with the nude images of his daughter in an attempt to to break his sanity. He is ridiculed and made fun off by the Joker, to an audience of carnival freaks. Another flash back shows that before the Joker could even begin the job, Jeannie had died. Distraught, he has doubts about the job, but gets bullied into going through with it anyway. When Batman ruins the job, the Joker (while trying to escape) accidentally falls into a river of chemical waste and after removing his red helmet/hood, he sees what he has become. It becomes evident that he is insane, as he is shown laughing with blood dripping from his eyes and mouth. Back in the present, after gathering clues, Batman finds his way to the carnival and proceeds to fight the Joker and free Gordon. He tries to comfort Gordon, but is told to continue in the pursuit of the Joker, and to \"bring him in by the books\". The Joker attempts to shoot Batman with what would seem to be the same gun he used to cripple Barbara Gordon. The gun turns out to be a fake and Batman lives. The Joker tells an unusual joke about two insane men, and as he laughs uncontrollably, Batman utters a solitary chuckle. The story ends as it starts pouring rain and the police show up.

    Some time later, she decides to become the omniscient computer presence known as the Oracle. She ends up being more useful and dangerous as the Oracle than Batgirl.

    The Killing Joke has gained notoriety due to its labeling as a graphic novel, despite it's short length.

    Tim Burton stated \"I was never a giant comic book fan, but I've always loved the image of Batman and The Joker. The reason I've never been a comic book fan - and I think it started when I was a child - is because I could never tell which box I was supposed to read. I don't know if it was dyslexia or whatever, but that's why I loved The Killing Joke, because for the first time I could tell which one to read. It's my favorite. It's the first comic I've ever loved. And the success of those graphic novels made our ideas more acceptable.\" He has stated in the past that The Killing Joke was his inspiration for his Batman movie. There is however speculation as to whether or not this is a legitimate claim as Tim Burton's depiction of the Joker was much different to the one portrayed in the Killing Joke.

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-119383/","id":119383,"name":null,"issue_number":"1"},"first_appeared_in_episode":null,"id":40503,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2915004-killing_joke_ad.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2915004-killing_joke_ad.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2915004-killing_joke_ad.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2915004-killing_joke_ad.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2915004-killing_joke_ad.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2915004-killing_joke_ad.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2915004-killing_joke_ad.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2915004-killing_joke_ad.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2915004-killing_joke_ad.jpg","image_tags":"All Images,The Killing Joke"},"name":"The Killing Joke","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/the-killing-joke/4045-40503/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40570/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2011-05-05 17:04:18","deck":"The Starlost Saga featured the battle between Nova (Rich Rider) and Supernova. It also resulted in the resurrection of the domed world of Xandar.","description":"

    The Starlost Saga featured the battle between Nova (Rich Rider) and Supernova. After their battle which resulted in the loss of Rich Rider's powers to Garthan Saal (Supernova), Rich began a mission to regain his powers from his enemy. During the course of their rematch, the two men merged into an energy being with Rich in control of the body. Rich's will and spirit overcame the overwhelming power of the Nova Force which threatened his sanity.

    At the conclusion of the story arc, Rich releases the power into Xandar's WorldMind and completes the resurrection of the domed world of Xandar. The Starlost Saga ran in New Warriors #40-#42 v1.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105456/","id":105456,"name":"The Starlost, Part One: Power Tools","issue_number":"40"},"first_appeared_in_episode":null,"id":40570,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/90793-112801-starlost-saga.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/90793-112801-starlost-saga.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/90793-112801-starlost-saga.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/90793-112801-starlost-saga.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/90793-112801-starlost-saga.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/90793-112801-starlost-saga.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/90793-112801-starlost-saga.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/90793-112801-starlost-saga.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/90793-112801-starlost-saga.jpg","image_tags":"All Images,gallery"},"name":"Starlost Saga","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/starlost-saga/4045-40570/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40611/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-06-11 16:23:39","deck":"When a zombie plague came from above, the Avengers arrived on the scene to end the crisis. With their infection the people of Earth-2149 stood no chance, as the entire world became engulfed by the plague.","description":"

    Note: This page is for the original Marvel Zombies that were introduced in Ultimate Fantastic Four and continued in the Marvel Zombies limited series. It includes the Earth-2149 zombies only, the A.R.M.O.R.'s missions as a result of the Earth-2149 zombies and spin-offs or other one-shot issues, should be linked to the Marvel Zombies concept, and can be listed on this page under related issues.

    Plot Summary

    When the Sentry came from another dimension to that of Earth-2149, he carried an infection with him. This infection was a zombie plague, and when the Avengers of Earth-2149 arrived at the scene of the Sentry's arrival, he infected them all. Soon the Avengers would spread the plague to other heroes, and before long the entire world became either infected or devoured.

    Before long though, the Marvel Zombies ran out of food. While some of the zombies such as Iron Man, Spider-Man, and Wolverine, gained the powers of Galactus, others stayed behind and used cloning technologies to continue eating. Years later, Iron Man, Spider-Man, Wolverine, and the others came back to Earth to find that Black Panther had survived and created a new life for the survivors of the plague. Running low on food it wouldn't be long until the hunger took over, and the zombies found a way to cross universes.

    Soon the zombies came to Earth-616 resulting in the creation of A.R.M.O.R. to combat the zombie infestation. They travel between Universes to help rid them of the zombie plague and to prevent it from spreading into the Marvel Universe.

    Full Plot

    Dead Days

    A strange lightning in the sky struck New York. There it shows a zombified Sentry infecting the Avengers. The Avengers then went around eating the citizens and infecting other heroes/villains. All remaining heroes retreat to the S.H.I.E.L.D hellicarrier to plan for an attack on the zombies. Tony Stark and Reed Richards plan for a way to solve the problem but Reed goes mad and infects the Fantastic Four having the hellicarrier become infected. Stark makes a dimensional teleporter and has the remaining heroes escort it away while he gets infected. Nick Fury then decides to destroy the teleporter so the zombies will be stuck in this universe.

    Ultimate Fantastic Four; Crossover

    It didn't take long for the zombies to eat most of the population. The zombied heroes are still hungry, so they manipulate Reed Richards from the ultimate universe to build the dimensional teleporter that Stark created. The teleporter was made but was then destroyed by Magneto to once again prevent the zombies from infecting the ultimate universe.

    Marvel Zombies 1

    Magneto destroyed the teleporter and is on the run trying to return to his base on asteroid M. Unfortunately he was found by zombie heroes and fought. Magneto put up a great fight but was defeated and eaten by zombie Captain America (now called colonel america), Spider-Man, Hulk, Thor, Luke Cage, Hank Pym, Wasp, Wolverine, and Daredevil. After that they are discussing how the biology of being a zombie works which they can't figure out.They then see the Silver Surfer but disappears quickly. The group then reunites with Zombie Iron man who is angry about the group eating magneto without him. meanwhile zombie Hank Pym sneaks into a secret lab where he has a sedated Black Panther who Hank uses as a secret meal. He then amputates his leg for a meal until zombie Wasp finds Hank and asks him to split Black Panther with her. Hank then kills Wasp by biting her head off but spits it out because of bad taste. Meanwhile the group encounter the Silver Surfer again. Silver Surfer tells the zombies Galactus is coming to devour the planet but the zombie's respond by attacking him. The surfer puts up good fight by destroying Iron man's legs and burning Hulk's face. Unfortunately The Silver Surfer is defeated by the Hulk by biting his head off. So Colonel America, Spider-man, Wolverine, Hank Pym, Iron man, and Luke Cage eat the Silver Surfer and gain the surfers cosmic powers. They then show off their powers by destroying almost every other zombie. Meanwhile, Black Panther (missing an arm and a leg) escaped the lab with Wasp (now only a head) to find a group of mutants who are searching for Magneto. At first they reject T'Challa because he has zombie Wasp but later accept him and they escape to Asteroid M where Black Panther was able to get a prosthetic arm and leg from Forge. Back on Earth, Galactus has reached Earth and easily overpowers the cosmic zombies. The zombies then retreat to Hank Pym's secret lab to build a cannon that can destroy Galactus. They then fuel it with their cosmic powers and knocks Galactus unconscious. They then see a group of zombie villains going to try to eat Galactus but is easily defeated except Colonel America who was killed by zombie Red Skull. The cosmic zombies then go and eat Galactus gaining his powers. It is then shown years later and Asteroid M landed on earth. Black Panter and Wasp (now with a robotic body) find earth not inhabited by anything so they start to rebuild. Meanwhile we see a alien planet being attacked by the zombies who are now dressed like Galactus.

    Ultimate Fantastic Four; Frightful

    Black Panther

    Marvel Zombies 2

    Many years later the cosmic zombies (Spider-man, Wolverine, Iron man, Luke Cage, Hank Pym, Hulk) and a couple new zombies (Phoenix, Thanos, Gladiator, Firelord) ate everything in the known universe.Thanos blamed Hulk for biting more than he can chew which resulted in Hulk killing Thanos. Hank then remembered the dimensional teleporter that they can rebuild and use to find more food. So the zombies began their journey to earth. Meanwhile on earth. Black Panther (now an old man) is leader of New Wakanda and is learning that they don't have enough people to sustain a population and fears extinction, also they found the head of zombie Hawkeye who's still alive but can't remember much after being buried for so many years. Also there's a mutant resistance group that is planning to assassinate Black Panther. So that night, and assassin came and stabbed Panther in the gut fatally wounding him. Zombie Wasp comes in and incapacitates the assassin. She then sees the only way of keeping Panther alive is by turning him into a zombie. So she bites him but doing this has returned her hunger and tries to eat Black Panther's wife but Panther (now a zombie) stops her and tells her to help him eat the assassin. Panther and Wasp then go into a reinforced safe to get over the hunger. Later, Black Panther and Wasp are cured of the hunger and leave only to find the leader of the resistance group Malcolm Cortez rant about Panther becoming a zombie roweling up the crowd. Then the other zombies appear. Hank Pym shocked by there being some humans left suggest making a breeding program so they can eat humans forever. In an anger, Spider-man shoots the top of hank's head. Spider-man tells them they used to be heroes and they should learn to get over the hunger because Spider-man and Luke Cage already got over it. In response the rest of the zombies attack Spider-man and Luke cage. Black Panther and wasp came to assist until the people put up force field keeping the zombies out except Gladiator. Spider-man, Luke cage, Black Panther, and wasp then fought Gladiator. Gladiator was proven stronger than them combined. Forge then came wearing a new and improved Iron man armor and holds down Gladiator for Spider-man and Luke Cage to blast Gladiator's head off. The zombies outside the barrier then left to look for the teleporter. The good zombies then went into the city to get prosthetic limbs. Meanwhile the zombies finally reached Earth and head to Stark industries to look for the teleporter but are attacked by the buildings security which made Stark believe someone already came here and took the teleporter. Later, Forge showed the good zombies the teleporter and told them they better prepare for the other zombie's return. Also forge also helped even the battle by revealing Black Panther's son who has a chunk of Captain America's brain inside.The bad zombies returned and the good zombies fought them but they eventually got into the city. Hank Pym was about to eat a person until the hunger vanished in him. Hank then saw all the horrible things he did and told the other zombies to stop. The Hulk then tried eating people and all the zombies fought Hulk but Hulk killed Phoenix, Firelord, hawkeye, and Iron man. Then a man came and sacrificed himself to the hulk causing hulk to turn into banner where the zombies killed him. After all this they plan to use the teleporter to teleport the remaining humans to a different dimension until Malcolm came and teleported the zombies away making Malcolm leader of New Wakanda.

    Marvel Zombies Return

    Chronological Order

    • Marvel Zombies: Dead Days
    • Marvel Zombies vs. Army of Darkness
    • Marvel Zombies: Evil Evolution
    • Marvel Apes
    • Ultimate Fantastic Four, issues 21-23 (Original Appearance)
    • Marvel Zombies
    • Ultimate Fantastic Four, issues 30-32
    • Black Panther, issues 28-30
    • Marvel Zombies 2
    • Marvel Zombies Return
    • Marvel Zombies 3
    • Marvel Zombies 4
    • Deadpool: Merc with a Mouth
    • Marvel Zombies 5
    • Marvel Zombies Supreme
    • Marvel Zombies Destroy

    Collected Editions

    Related Issues

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-115533/","id":115533,"name":"Part 1 of 5","issue_number":"1"},"first_appeared_in_episode":null,"id":40611,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/102613-78971-marvel-zombies.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/102613-78971-marvel-zombies.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/102613-78971-marvel-zombies.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/102613-78971-marvel-zombies.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/102613-78971-marvel-zombies.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/102613-78971-marvel-zombies.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/102613-78971-marvel-zombies.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/102613-78971-marvel-zombies.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/102613-78971-marvel-zombies.jpg","image_tags":"All Images,Covers"},"name":"Marvel Zombies","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/marvel-zombies/4045-40611/"},{"aliases":"Casualities of War","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40615/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2021-03-19 22:32:45","deck":"Following a catastrophic tragedy caused by superhumans, the US Government passes a Super-Human Registration Act that requires all super-powered individuals in the country to reveal their identities, disclose their powers and personal details, and register as government employees or risk indefinite incarceration. This causes a deep rift in the hero community, with some backing the Act while others oppose it.","description":"

    Plot Summary

    After the super-villain Nitro sets off an explosion in Stamford, CT, killing the New Warriors and hundreds of innocents, the American Government, blaming the super-hero community for these deaths, enforces a Super-Human Registration Act that forces super-heroes to reveal their secret identities and work for the government, labeled as weapons of mass destruction. This doesn't sit well with some heroes and the Super-Hero community is divides into sides: Iron Man's Pro-Registration Act team enforced by S.H.I.E.L.D. and its new director Maria Hill, and Captain America's Anti-Registration Act team called the Secret Avengers. This separation causes a super-human Civil War that pits the two teams against each other physically and morally.

    The Civil War has many consequences including the separation of the Avengers and the Fantastic Four, the revelation of Spider-Man's secret identity to the world, the departure of the Thing to France, the death of Goliath and finally the death of Captain America himself at the end of the War.

    Full Plot

    Whose Side Are You On?

    Tony Stark and Peter Parker go to Washington D.C. to try to refute the Super-human Registration Act. Peter is to act as Tony's eyes and ears. However, things go awry and an assassination is plotted against Tony by Titanium Man. It is later revealed to the reader that Iron-Man (Tony Stark) planned the assassination in order to show the need for a Super-human Registration Act. When Captain America is approached by SHIELD to see if he could neutralize all of those against the Super-Human Registration Act, he refuses and has to run out after they try to shoot him down. Captain America is denounced as a criminal by the President, and he is ambushed by S.H.I.E.L.D, yet still escapes.

    The New Warriors, a group of mutants with their own TV show, trying to get higher ratings ambush Nitro, Coldheart, Cobalt Man, and Speedfreek. But Nitro, with powers amplified by Mutant Growth Hormone, sets off an explosion, killing around 600-1200 people, at least 60 confirmed to be children. Of the super-human individuals involved in the incident only Robbie Baldwin and Nitro survived. Speedball was rocketed from the incident, hanging on to life, and Nitro jumped into the back of a passing pickup truck and fled the scene. This horrific event rushes the Super-human Registration Act, and within a week it gets passed. Although it is not necessary for a superhuman to give away his secret identity to the public, he or she is required to register with S.H.I.E.L.D., giving away all personal information. In return, SHIELD will provide some sort of safe-haven, pay heroes a salary, and they will be scheduled holiday breaks. This is seen as a slap in the face to a large portion of heroes, being forced to choose between become a federal employee, or stop fighting crime. Others, such as Iron Man, see this just as an evolution of Super-humans' roles in society. As a sort of reward for his support of the act, Stark gives Spider-Man an new \"Iron Spider\" suit that will enhance Spider-Man's abilities with technology similar to Stark's own Iron man outfit.

    \"I
    I am Peter Parker.

    In a move that would shock the world, Spider-Man would demonstrate his support for both Iron-Man and the bill by coming out publicly in support of the Bill as Peter Parker and Spider-Man. In a shocking conclusion to the secret identity that Peter spent his entire adult life protecting he pulls off his mask in a news conference, saying \"I'm Peter Parker, and I've been Spider-Man since I was 15 years old. Any Questions?\" It is in this instant that Peter's life changed forever. Friends and enemies are hurt and shocked by the deception. Now knowing that his most hated enemy and one of his most faithful employees are one in the same J. Jonah Jameson fires Parker and begins contemplating legal action he can take against Peter for fraud. Also enraged by the perceived betrayal, Doctor Octopus attacks Peter outside of the high school at which he teaches. Other former villains also begin to launch attacks on Peter and those closest to him, making him realize one of the greatest fears he had of losing his secret identity. In order to protect those he loves Mary Jane and Aunt May are moved into Stark Tower where they can receive 24 hour protection and monitoring.

    Behind the scenes, the U.S. government is constructing a secret facility that will come to be known as the Negative Zone prison. Designated Facility 42, it is located in the Negative Zone, and will be accessible at first through a portal controlled by Stark, Mr. Fantastic, and S.H.I.E.L.D. The prison was designed by Tony Stark, Reed Richards, and Hank Pym with the intention of housing superpowered individuals that did not comply with the Superhuman Registration Act. Meant for security, there are facilities for neutralizing and restraining individuals with just about any power imaginable.

    \"Cyborg
    Cyborg Thor kills Goliath

    As many current and former superheroes and villains begin signing up for the registration act an underground resistance movement begins to grow. Other superheroes begin to band together with Captain America against the act including Luke Cage, Iron Fist, Goliath, Cloak, Dagger, the Young Avengers and many others. The growing friction escalates until the first major battle between Iron Man's registration act support and Cap's \" Secret Avengers\". This battle involves all of the heroes associated with either side of the conflict, and comes to a climax with the unveiling of a cyborg version of Thor (presumed to be the actual Thor at the time) as being in support of the Registration Act. The appearance of Thor surprises both sides of the conflict, as few knew of his existence before this point. The clone is much more violent than the real Thor and kills Bill Foster with a lightning blast through the chest. Horrified at what has happened, Invisible Woman creates a force field around the battered remainder of the resistance allowing Cloak to teleport the team to safety. After the battle Thor is revealed to be a cyborg rather than the original that was made by Iron Man and Reed Richards and that his violent behavior was an unintentional glitch in their work. This event move begins shaking the resolve of some pro-registration heroes such as Spider-Man and the Invisible Woman and causing anti-registration heroes Nighthawk and Stature to switch sides.

    After the death of Bill Foster, the Civil War now spills into the personal lives of Susan Storm and Reed Richards and threatens their marriage by disagreement over the course of action which Reed and Tony have carelessly embarked upon. Offended and hurt when Reed says that he is doing what he is to protect Sue, she erects a cylindrical forcefield that comes crashing through the center of all 35 floors of the Baxter Building and asks Reed if she looks like she needs protection. Unable to come to an agreement, Susan and Human Torch leave the Baxter building under the cover of night to join Captain America's underground resistance to the act. The Thing also finds himself increasingly torn by the direction of the Civil War. He is watching those he loves and respects fight and take sides against each other. On one hand he is against the Superhuman Registration Act because he does not believe in what it stands for. On the other hand he believes himself to be a patriot, and as such does not believe that it is proper for him to be fighting his own government.

    At this point the Thunderbolts have already began a recruitment drive, attacking and capturing other former villains for the government to train and employ as a means to capture more of the renegade super-heroes and super-villians. The Super-Human Restraint Unit, a sub-division of SHIELD also starts to neutralize mutants who still display their powers (e.g., stop crime) without registering with SHIELD. Individuals such as Prodigy even get taken down by Iron Man himself.

    \"The
    The Thing leaves

    While transporting captured heroes to the containment facility Spider-Man finds himself uneasy when Iron Man asks him to remain at the head of the caravan of vehicles because of his ability to sense danger. Since he has never disclosed his Spider-Sense to Stark, Stark may have found out about his ability by using the suit to monitor him. A battle erupts when the Secret Avengers meet the caravan to release the captured members of the resistance. Using info from the Yancy Street Gang the anti-registration group tries to free captured heroes. Going after Captain America himself, Spider-Man finds himself in a fight he may not win. The two eventually stop fighting because Spider-Man cannot bring Captain America in himself even if he does win. Meanwhile, the Thing has been unintentionally drawn into the battle despite the Things insistence on remaining neutral. Both sides of the conflict mistake his intervention as acting on their behalf. After the battle the Thing angrily states that he cannot take any more of the fighting, and will be leaving for France. The government puts a hold on all of his finances and closely monitors him. Despite the unwanted attention, Ben Grim makes his way to France away from the conflict.

    \"Line
    Line 11-Peter v.s Tony Spider-man v.s Iron-man

    Possibly because he trusted Peter more (or possibly to watch him turn) Tony Stark takes Peter Parker on a tour of the Negative Zone prison so that Peter can finally see more of the inner workings of the act. Peter's faith in the act had been shaky ever since first agreeing to assist Tony, however it is finally broken as he sees the inhuman conditions in which former allies and enemies are to be kept in the negative zone for their civil disobedience. Occupants are locked up in their cells, and many will never leave because of the escape threat they pose. Some are fully restrained to the point they cannot move their bodies at all and others yet are put in virtual reality goggles to immerse them in a fake world to pacify them. Before leaving Tony leaves Peter alone with Reed briefly. Unbeknownst to Peter, Tony is monitoring their entire conversation (presumably using the bugs designed into Peters suit) where Peter questions a nearly broken Reed Richards about what they have found themselves in. When he gets back to Stark Tower Peter rushes Aunt May and Mary Jane to grab what they can and flee Tony Stark's grasp. Tony crashes in through the wall of the building and begins a fight with Peter that would flow into the streets of New York. Tony incapacitates Peter with a fail-safe he built into Peter's suit. Peter is able to gain the upper hand by reversing the fail-safe (Peter being quite adept with computer technology had already secretly discovered the secret code in his new suit and hacked Tony's programming). Peter flees into the sewer and Stark unleashes several of Spider-Man's enemies in the Thunderbolts into the sewers to capture Peter.

    \"Punisher
    Punisher saved my life.

    Captured and beaten nearly to death, Peter is saved in the nick of time by the Punisher who shoots and kills his attackers. Carrying Peter over his shoulder, the Punisher breaks into Captain America's secret hideout to get Peter medical attention. The Punisher did not have much patience for costumed superheroes before the Civil War, and probably would not have become involved had it not been for Stark's alliance with the Thunderbolts allowing costumed villains to become government sponsored bounty hunters. Captain America disagrees with Castle's involvement because of his track record, yet tentatively allows him to remain with the group. His tenure with the Secret Avengers is cut short when a pair of costumed villains come to the Secret Avengers hideout with offer of truce to join the cause. Castle automatically shoots and kills them in cold blood causing Captain America to give the Punisher a severe beating. Castle would not fight back due to his respect for Captain America (who as it turns out also played a role in training Castle's army regiment), and simply takes the attack.

    \"Hulkling
    Hulkling Disguise

    Knowing that one of the members of the resistance is actually a double agent for Stark (specifically it is Tigra that is double-crossing them), Captain America plans the most massive assault yet on the Registration Act. The plan is to infiltrate the Negative Zone prison and catch Stark off guard. What Tony does not know is that the morning of the attack Captain America sends Hulkling disguised as Hank Pym to incapacitate Pym and take his place. As one of the key members of Stark's group, Pym has full access to everything about the Negative Zone Prison. Teddy, disguised as Pym, infiltrates the Prison and releases all of the anti-registration heroes and villains that had been captured until this point. Tony along with the registered heroes attempts to head off the Secret Avengers only to discover that the fixed fight that he had prepared in order to put an end to the resistance was now evenly matched. Attempting to stop the fight from leaving the prison, prison officials attempt to close down the portals to the Positive Zone, stranding everyone in the Negative Zone until things are resolved and the Secret Avengers are captured. Not allowing this to happen, Cloak uses everything he has to teleport all of the heroes and villains involved in the conflict through the portal into the middle of the skies of New York.

    \"The
    The last and final battle.

    Raining down from the skies, flying heroes are instructed to assist non-fliers to the ground regardless of their affiliation. Once mobile, both groups begin fighting again, and inadvertently begin destroying everything around them. At the climax of the battle Iron Man has Captain America in his sights, and is ready to take him out of the battle. As instructed by Captain America, the Young Avengers's Vision phases into Iron Man's armor and partially solidifies to take his weapons out of the equation. Caught off guard and with his heavy armor effectively useless, Captain America is able to gain the upper hand against Iron Man. Pummeling him with his fists and his shield, Captain America raises his shield over the smashed helmet of Iron Man. Looking through the pieces of his broken armor up at Captain America he simply challenges \"Do it.\" Before Captain America is able to bring his shield down upon Tony's face he is tackled by nearby government workers: police, firemen, and other emergency personnel. At first struggling against them, Steve Rogers stops and drops down. The battle around him begins to stop almost immediately. Rogers is horrified by the realization that he was no longer fighting for the people that he was sworn to protect. Looking at the carnage around him and seeing for the first time the true cost to everyone involved (civilian and super power alike), Captain America surrenders and tells his team to stand down. For better or for worse, Steve Rogers has single handedly ended the Civil War. While some heroes including Captain America are taken into custody following the final battle of the War, many escape including some key members of the Secret Avengers.

    Involvement in the Civil War

    While sides were changed during the war, this is a tally of the main characters and teams involved on either side of the Civil War at the end and the official stance they took on registration

    Pro-Registration Characters: Iron Man, Hank Pym, Mr. Fantastic, She-Hulk, Ms. Marvel, Sentry, Wonder Man, Tigra, Stature, Bishop, Doc Samson, Black Widow, Thor clone, Wasp, Henry Gyrich, Val Cooper, Venom, Radioactive Man

    Pro-Registration Teams: Avengers, Great Lakes Initiative

    Anti-Registration Characters: Captain America, Spider-Man, Invisible Woman, Goliath, Iron Fist, Matt Murdock, Hercules, Black Panther, Storm, Spider-Woman, Human Torch, Luke Cage, Cloak, Dagger, Hulkling, Wiccan, Arachne, Punisher, Falcon, Typeface, Vision, Madrox, Cable, Nick Fury, Jessica Jones, Namor, Patriot, Bucky Barnes, Kate Bishop

    Anti-Registration Teams: Secret Avengers, X-Factor

    Neutral Characters: The Thing, Doctor Strange, Firestar, Deadpool, Doctor Octopus, Black Cat, Uatu the Watcher

    Neutral Teams: X-Men, Runaways

    Casualties of War

    A list of those that died during the course of the Civil War. While the total number of deaths during the War were small, some major characters in the Marvel Universe rocking the course of Marvel continuity.

    Deceased during the war: Captain America, Goliath, Ragnarok, Typeface, Bantam, Jack O'Lantern

    Stanford Incident: Night Thrasher, Namorita, Microbe, Coldheart, Cobalt Man, Speedfreek

    The Super-human Registration Act

    In the United States, a Super-human Registration Act is passed, which decrees that all Mutants or Super-Humans must register with the government, giving all personal information, as well as powers. Registration is required of all Mutants and other Super-Powered individuals. Anyone without powers that wishes to don a costume to fight crime is also required to register. Individuals that accept and register will effectively become government S.H.I.E.L.D.. Agents and will be trained by S.H.I.E.L.D. and are required to work for the government on government salary. Amnesty for past actions is also offered as an incentive to registrants. Parallels can be drawn between the Super-human Registration act and the Mutant Registration Act.

    See: Super-Human Registration Act.

    Collected Editions

    Related Items

    Non-U.S. Editions

    Other Media

    Film

    Captain America: Civil War (2016)

    \"Civil
    Civil War: The Movie

    The comic book will be the basis for the third Captain America movie, taking place after the events of Avengers: Age of Ultron. The film will see an altered version of the plot with the central conflict being about world governments seeking to control the Avenger and the superhero population at large, rather than forcing them to reveal their identities. The movie will star Chris Evans as Captain America, Robert Downey, Jr. as Iron Man, Anthony Mackie as Falcon, Scarlett Johansson as Black Widow, Chadwick Boseman as the Black Panther, Sebastian Stan as the Winter Soldier, Emily VanCamp as Sharon Carter, Jeremy Renner as Hawkeye, Don Cheadle as War Machine, Paul Bettany as Vision, Elizabeth Olsen as Scarlet Witch, Paul Rudd as Ant-Man, Tom Holland as Spider-Man, William Hurt as Thaddeus \"Thunderbolt\" Ross, Frank Grillo asCrossbones, and Daniel Bruhl as Baron Zemo.

    Novels

    Civil War

    \"No
    The epic story that blows the Marvel Universe apart. When a tragic battle occurs, killing hundreds of people, the U.S. government demands that all super heroes unmask and register their powers. To Tony Stark - Iron Man - it's a regrettable but necessary step. To Captain America, it's an unbearable assault on civil liberties. So begins the Civil War. Based on the smash hit graphic novel - over half a million copies have sold in print and digital formats.
    • Written by: Stuart Moore
    • Published by: Marvel

    Television

    Avengers Assemble

    The Season 2 storyline \"Avengers Disassembled\" very loosely adapted elements of the Civil War crossover, with a schism forming within the Avengers due to friction between Captain America. However, the story was much smaller in scale, and ended with the two teams of Avengers reuniting to face Ultron.

    A more faithful adaptation is scheduled for the third season, Avengers: Ultron Revolution. The story will feature Captain America, Iron Man, Falcon, Thor, Hulk, Black Widow, Hawkeye, Ant-Man, Black Panther, Doctor Strange, Captain Marvel, and Ms. Marvel.

    Video Games

    Marvel: Ultimate Alliance 2

    \"Ultimate
    Ultimate Alliance 2

    This game's story line was based on that of Civil War but with a few variations - for instance the two sides reunited to face a common enemy.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106921/","id":106921,"name":"Mr. Parker Goes To Washington, Part 1","issue_number":"529"},"first_appeared_in_episode":null,"id":40615,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/107584-34366-civil-war.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/107584-34366-civil-war.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/107584-34366-civil-war.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/107584-34366-civil-war.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/107584-34366-civil-war.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/107584-34366-civil-war.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/107584-34366-civil-war.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/107584-34366-civil-war.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/107584-34366-civil-war.jpg","image_tags":"All Images,Art,captain america,Pages"},"name":"Civil War","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/civil-war/4045-40615/"},{"aliases":"More than Rubies","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40643/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-06-19 19:32:07","deck":"Dream of the Endless is captured and held prisoner for 80 years by a sorcerer who was actually trying to capture his sister, Death. When he escapes, he goes on a mission to takes back his tools of trade.","description":"

    It was supposed to be the greatest piece of magic ever: A mortal capturing Death. But something goes wrong and instead of Death, Dream is trapped for 80 years on the mortal plane.

    Once he escapes, Dream must retrieve his tools which are his bag of sand which he retrives from Constantine old girlfriend. His gets his mask from Lucifer in Hell which will cause other events to happen in later volumes and fianlly he gets his ruby which was found by John Dee aka Doctor Destiny which bring on the \"24 hours\" scene which is what this book is known for where he controls these people in the restaurant fully among other things. Since Doctor Destiny warped it so much he thought if he destroyed the ruby it would kill Dream but actually in destroying he. Dream got his full power back. In the final issue we meet Death who is the exact opposite of what you expect the personification of death to be.

    Preludes & Nocturnes collects the first story arc of Neil Gaiman's landmark series The Sandman.

    In these early adventures, Dream crossed into the mainstream DC universe more than he ever would again as we catch glimpses of John Constantine, Mister Miracle and the Martian Manhunter.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-30745/","id":30745,"name":"Sleep of the Just","issue_number":"1"},"first_appeared_in_episode":null,"id":40643,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/90397-82204-preludes--nocturnes.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/90397-82204-preludes--nocturnes.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/90397-82204-preludes--nocturnes.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/90397-82204-preludes--nocturnes.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/90397-82204-preludes--nocturnes.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/90397-82204-preludes--nocturnes.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/90397-82204-preludes--nocturnes.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/90397-82204-preludes--nocturnes.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/90397-82204-preludes--nocturnes.jpg","image_tags":"All Images,gallery"},"name":"Preludes & Nocturnes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/preludes-nocturnes/4045-40643/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40645/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2016-03-25 07:46:10","deck":"When a race of extradimensional parasites invaded the earth, feeding of human spinal fluids, new heros and villians rise to oppose them.","description":"

    Back in the boom years the only way to make Annuals relevant was to run a company-wide crossover with deep implications for the rest of the universe for the coming year. These crossovers were very much hit or miss with the comic book fans and the Bloodlines series has long been consigned to the bargain bins.

    The series ran through all 23 of DC's annuals that year and was bookended by a two-part special called Bloodbath.

    The parasites came to earth to feed, but it turned out that their bite would sometimes trigger the latent superpowers of their victims.

    This event has the unique honour of being the only big DC cross-title event to star the second Batman, Jean-Paul Valley. It was also the first reappearance of Superman after the Reign of the Supermen.

    Very few of the heroes created during this spawning period managed to last beyond the miniseries. One major exception was Hitman who first appeared in the Demon Annual before going on to have his own 60 issue series written by Garth Ennis.

    The Annuals covered the three waves of the alien attack, which included the debut of the new characters, dubbed \"new Bloods\":

    Outbreak

    The parasites arrive to the main universe and reach earth.

    • ''Lobo Annual #1''; Character debut: Layla.
    • ''Superman: The Man of Steel Annual #2'' ; Character debut: Edge
    • ''Batman: Shadow of The Bat Annual #1'' ; Character debut: Joe Public
    • ''Flash Annual #6'' ; Character debut: Argus
    • ''New Titans Annual #9'' ; Character debut: Anima
    • ''Superman Annual #5'' ; Character debut: Myriad
    • ''Green Lantern Annual #2'' ; Character debut: Nightblade
    • ''Batman Annual #17'' ; Character debut: Ballistic
    • ''Justice League International Annual #4'' ; Character debut: Lionheart

    Earthplague

    The alien infection and the appearance of the new bloods is discovered.

    • ''Legion of Super-Heroes Annual #4'' ; Character debut: Jamm
    • ''Green Arrow Annual #6'' ; Character debut: Hook
    • ''Detective Comics Annual #6'' ; Character debut: Geist
    • ''Justice League America Annual #7'' ; Character debut: Terrorsmith
    • ''Adventures of Superman Annual #5'' ; Character debut: Sparx
    • ''Hawkman Annual #1'' ; Character debut: Mongrel

    Deathstorm

    The attack of the parasites and their last attack in launched.

    • ''Deathstroke Annual #2'' ; Character debut: Gunfire
    • ''Eclipso Annual #1'' ; Character debut: Prism
    • ''Demon Annual #2'' ; Character debut: Hitman
    • ''Team Titans Annual #1'' ; Character debut: Chimera
    • ''L.E.G.I.O.N. Annual #4'' ; Character debut: Pax

    Bloodbath specials

    • Bloodbath # 1. The Taker awakes.
    • Bloodbath # 2.

    Related Issues

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36608/","id":36608,"name":"Transformation","issue_number":"3"},"first_appeared_in_episode":null,"id":40645,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/90790-132243-bloodlines.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/90790-132243-bloodlines.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/90790-132243-bloodlines.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/90790-132243-bloodlines.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/90790-132243-bloodlines.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/90790-132243-bloodlines.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/90790-132243-bloodlines.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/90790-132243-bloodlines.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/90790-132243-bloodlines.jpg","image_tags":"All Images,gallery"},"name":"Bloodlines","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/bloodlines/4045-40645/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40663/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-03-16 18:22:05","deck":"The WildCATs finally return to their home planet, Khera. But it is the utopia they dreamed about?\nMeanwhile, on earth a new Covert Action Team arises. ","description":"

    Homecoming is the first saga on Alan Moore original run on WIldCATs. It covers WildC.A.T.S 21-27. During Homecoming, The original WildC.A.T.S team (Emp, Zealot, Warblade, Maul and Voodoo) take a space ship and return to planet Khera, where they discover that it's not the planet they thought it was. They also learn that the Kherubim-Daemonite War has been over for 300 years and nobody bothered to tell the Kherubim stranded on Earth. Meanwhile, back on Earth, Savant uses blackmail and torture to create a new team of WildC.A.T.S led by Mr. Majestic.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-47285/","id":47285,"name":null,"issue_number":"21"},"first_appeared_in_episode":null,"id":40663,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/80221-69577-homecoming.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/80221-69577-homecoming.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/80221-69577-homecoming.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/80221-69577-homecoming.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/80221-69577-homecoming.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/80221-69577-homecoming.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/80221-69577-homecoming.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/80221-69577-homecoming.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/80221-69577-homecoming.jpg","image_tags":"All Images,Homecoming"},"name":"Homecoming","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-708/","id":708,"name":"Wildstorm","site_detail_url":"https://comicvine.gamespot.com/wildstorm/4010-708/"},"site_detail_url":"https://comicvine.gamespot.com/homecoming/4045-40663/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40664/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-03-16 18:47:57","deck":"The fractured WildCATs return earth to found themselves involved between an international conspiracy and street fight between heroes an villians, only to discover than friends can became the worst enemies. ","description":"

    In the second part of Alan Moore's WildCATs run, the original team returns to Earth disillusioned after the events than took place on Khera. They get no rest however, since their replacement team is caught in a crime war in New York, an alien enemy is on the moon, and an old friend turned enemy is causing problem in Gamorra.

    Gang War covers WildC.A.T.S 28-34. Gang War picks up right where the Homecoming arc leaves off. Also includes WildCATs chapters related to Fire From Heaven event.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-47292/","id":47292,"name":"Fire From Heaven: Chapter 7","issue_number":"29"},"first_appeared_in_episode":null,"id":40664,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/80222-24936-gang-war.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/80222-24936-gang-war.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/80222-24936-gang-war.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/80222-24936-gang-war.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/80222-24936-gang-war.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/80222-24936-gang-war.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/80222-24936-gang-war.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/80222-24936-gang-war.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/80222-24936-gang-war.jpg","image_tags":"All Images,Gang War"},"name":"Gang War","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-708/","id":708,"name":"Wildstorm","site_detail_url":"https://comicvine.gamespot.com/wildstorm/4010-708/"},"site_detail_url":"https://comicvine.gamespot.com/gang-war/4045-40664/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40752/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-08-10 15:25:17","deck":"This story takes place on Earth-295, an alternate Marvel universe. After the death of Charles Xavier at the hands of his own son Legion, his friend Magneto gathers a group of mutants to fight against the oppressive reign of Apocalypse.","description":"

    Creation

    The Age of Apocalypse story crossover was introduced into the X-Men franchise in 1995 and was later connected to the alternative universe Earth- 295 and later introduced in the mainstream reality of Earth -616. The story arc was created by a group of writers of which included Scott Lobdell, Mark Waid, Fabian Nicieza, John Francis Moore, Larry Hama, Warren Ellis, Jeph Loeb, Howard Mackie and Terry Kavanagh. The story arc lasted from 1995 till 1996 and then continued on to the Earth 616 reality and celebrated its 10th Anniversary in 2005. At 2011 as part of Dark Angel Saga, X-Force travelled to Earth 295.

    Major Story Arcs

    Legion Quest

    \"No

    After waking up from his coma due to his encounter with the Shadow King, David Haller (Professor X's son Legion) decided that the best way to help his father's dream was if Magneto had not been around to stand in the way. He travels back in time, taking several X-Men with him and attempts to murder Magneto, while Magnus and Xavier were still helping WWII survivors in Israel. Magneto is saved when Xavier jumps in front of Legion's psychic knife, taking the killing blow for his friend. As Xavier dies, Magneto pledges to carry on his friends dream when suddenly Legion and all the X-Men (except for Bishop) disappear from existence. In the present, all of Earth 616 is covered in a crystal like form irradiated from the Shi'ar's M'Kraan Crystal.

    X-Men: Alpha

    During a genetic culling in Seattle, Magneto's group of X-Men save a mysterious stranger from Apocalypse's Infinites. Following the battle, the stranger (an aged and slightly brain damaged Bishop) accuses Magneto of being the cause of everything wrong being wrong in the world. Meanwhile , Mr. Sinister's Prelates, Cyclops and Havok destroy one of Beast's experiments (aka Blob), who was out of control, and Sinister warns Cyclops of his leaving and of the dark times soon to come. At Angel's \" Heaven\" nightclub, Gambit is trying to find out from Angel how to find Magneto's hideout because Magnus require his skills. At the ruins of the Xavier Mansion where Magneto's X-Men reside, Magneto's wife Rogue is watching the robot Nanny take care of her son, Charles wishing she could touch him. Bishop regains consciousness but is knocked out by Magneto again and begins to rant again. Apocalypse and three of his Horsemen (Sinister, Holocaust and Abyss) discuss Mikhail Rasputin's (the final Horseman) errors in judgment, his absence and the upcoming \"Kelly Pact\" with the humans and their plans to disregard it. In London, Weapon X (616's Wolverine) and Jean Grey track down the Human High Counsel, led by Bolivar and Moira Trask ,to offer their help, using a mysterious package delivered by Sinister. Back at Xavier's Mansion, Rogue touches Bishop to look into his mind and the psychic backlash washes over her and Magneto, showing them glimpse of the real world and how everything should be. In the closing moments, Apocalypse notices Sinister is missing and Magneto calls a meeting for all of the X-Men and their associates while out in space the universe begins to crystallize.

    X-Men Chronicles

    The first issue shows Apocalypse's first attack on humanity and the first battle between Magneto's X-Men and Apocalypse's Horsemen ( Gideon, Candra, War, Death, and Sabretooth). In battle Sabretooth hesitated and he is left behind. Meanwhile back at Wundagore Mountain ,the X-Men's base of operations, Scarlet Witch and Rogue defend the base and the younger mutant children against Nemesis (Apocalypse's chosen son). The X-Men are successful in thwarting Apocalypse's attack on both fronts but at the cost of the life of the Scarlet Witch.

    The second issue opens with Weapon X and Jean Grey leaving the team following him rescuing her from Sinister's genetic holding pens. Gambit and Rogue begin a romantic relationship but when Wolverine attacks at Holocaust's (formerly Nemesis until his skin was all blown away) behest ,Rogue is forced to make a choice of saving Gambit or Magneto. She chooses Magneto and Gambit is buried under a falling wall. He survives and the battle is won but at the end he leaves the team.

    Astonishing X-Men

    Magneto tells all his X-Men what he saw in Bishop's head. Then Blink arrives through a portal and is followed by a blazing out of control Sunfire and it takes the combined powers of Magneto, Storm and Iceman to calm him down. They are followed by one of Apocalypse's Prelates, but Blink closes the portal on him killing him. Later, Rogue is preparing to leave and Gambit tries to talk to her down, and as he tries to kiss her they are interrupted by Blink carrying baby Charles. Nightcrawler and Magneto discuss the various missions that have been assigned. Quicksilver tries to stop Rogue from going to no avail while Morph make jokes and then everyone departs.

    A team of X-Men (Rogue, Sunfire, Blink, Morph, Sabretooth, and Wild Child) are sent to Chicago to stop Apocalypse's cullings. Sunfire freaks out as he remembers the killing that he lived through, and Rogue is forced to take his powers to calm him down. At the Mansion, Magneto is holding his sleeping son while Bishop berates him for his less-then-aggressive strategy. He tells Bishop he just wants tonight with his son. Meanwhile, Apocalypse has finally found Magneto's base and plans to handle the matter personally. Back in the battle, Sabretooth has Blink teleport him and Wild Child directly to Holocaust, against her own better judgement and Rogue's fervent wishes. After a brutal battle, Sabretooth finally cracks Holocaust's armor and watches the villain dissipate. However, after Sabretooth falls unconscious due to his own injuries, Holocaust rematerialized in his armor.

    Wild Child flees the Infinities only to run into Holocaust. Holocaust picks up Wild Child and then reveals himself to actually be Morph just seconds before Sunfire fries them. Rogue and Blink arrive through a portal and Wild Child (since he cant speak) licks Rogue to give her his memories of what has occurred. Meanwhile the real Holocaust is holding a badly beaten Sabretooth over a cliff overlooking a new Infinities processing plant. He gloats about Apocalypse's new army before knocking Sabretooth unconscious again where Creed dreams of the night he and Logan (Weapon X) were on a mission and he saved a young Blink from being killed. As Sunfire flies the rest of the team to Creed's location, Morph continues to crack jokes and sing despite protest from Sunfire. Back at the Mansion, Bishop and Magneto have a tense conversation when Nanny comes in with Charles. The robot then senses major danger and wraps itself around the baby and disappears into the floor (Magneto explains that's her programming to protect Charles). At the Infinities plant, Holocaust is watching as thousands of Infinite soldiers are pumped out of the factory , when all of a sudden a large hump back whale becomes marooned on the plant floor. The whale reveals itself to be Morph and has the entire team hiding inside his mouth. They defeat the Infinities and go searching for Sabretooth. Blink cries out and teleports to him when she sees him tied up to a pole and bleeding.

    Blink confronts Holocaust directly and after a brief but intense battle she teleports him over a vat of acid and drops him in. In another part of the facility Rogue and the rest of the team are fighting against hopeless odds, with an army of Infinities. Meanwhile Magneto is a captive of Apocalypse (see Amazing X-Men) and is being made to watch his wife's team fight their losing battle. Apocalypse continues to taunt the restrained Magneto until he knocks him out. Back at the plant, Wild Child and Sunfire free the humans being held captive while Morph goes after Blink. He finds her and as the two escape, Holocaust punches through the side of the acid vat and attacks them both. Suddenly \"Morph\" reveals himself as Rogue and uses her own powers to crack Holocaust armor again just as the real Morph jumps through the roof and becomes a large brick that crashes down on Holocaust. Rogue then lunges at him but he sends her flying leaving a ditch in the ground as she slides. While the rest of the team attacks Holocaust, Morph goes after Rogue, changing into her baby to get her attention. Holocaust then taunts about how Apocalypse found and destroyed the Mansion that the X-Men were in. This gives Rogue all the fury she needs as she pounds on him, landing both of them on a teleporter. Iceman grabs her just as he is about to teleport them both to Apocalypse's stronghold. With Creed saved and the team together again they vow to go after Apocalypse and end his reign.

    X-Calibre

    The young mutant Switchback takes a gondola ride down a river cavern where she is left alone. Thinking shes been taken advantage of she is approached by a huge man who tells her that there are \"no charlatans here\". His name is Cain and he is there to lead her to Avalon. They travel through freezing jungle (which she doesnt notice getting less and less frozen as she goes) then after several days they come upon the paradise of Avalon (616's Savage Land). Back in what was once Manhattan, Nightcrawler is lurking in Angel's private quarters at \"Heaven\" nightclub to get information on his travel plans to Avalon so he can locate the precog Destiny for Magneto. Angel balks at being used by him, Gambit and Magneto for illicit activities but gives him the information anyway, telling him to go to the east river and ask for Proudstar.At the Xavier Mansion, Magneto orders Mystique to assist her son, Nightcrawler, in reaching Avalon and assist him in extracting Destiny from there. At the warehouse by the east river, Nightcrawler meets Proudstar and his tribe \"the Ghost Dance\" which is the first step on the trek to Avalon, called \"the Infernal Gallop\". When Proudstar accuses Mystique of pillaging the people she ferries to Avalon before delivering them, Nightcrawler grabs his finger and teleports it off his hand. In the background, a young woman sneaks away to Apocalypse's citadel, frying the brain of a guard with a psychic arrow on the way there. The young woman, Danielle Moonstar, approaches Apocalypse and one of his puppets, Dead Man Wade, to tell him of Nightcrawler's trek to Avalon. Apocalypse call for Damask and tell her to take these two, collectively the Pale Riders, and find Avalon and burn it to the ground. Nightcrawler is on a cramped barge with other refugees, while down in Avalon Switchback has arrived an is brought by Cain to meet Destiny. As their fingers touch, Destiny has a painful precognitive flash of Avalon burning and Apocalypse coming.

    As Destiny collapses from the shock of her vision Switchback, Cain, and Destiny's adopted son Doug Ramsey rush to her side as she screams about Avalon burning. By the east river, Apocalypse's Infinities attack Proudstar's Ghost Dance and despite their best efforts are summarily dispatched. Menawhile on the submarine bound for Avalon, the air conditioning unit has busted and Nightcrawler and the other passengers are choking on their own exhalations. The captain surfaces rather then have everyone perish but warns that the instrumentation is broken and they may not be beyond American Detection Range. When they break the surface the crew realizes that the cargo bay doors are electronically sealed and everyone may have already suffocated to death. They signal a nearby ship who happen to have a torch to cut through the doors and save at least some of the people inside. The new ship's captain, Callisto, offers her own ship to finish the submarine's trip to Avalon. Nightcrawler is on the roof of the sub, having teleported out (barely) when the ship broke air. Above on the Pale Riders' ship, Damask is watching these events unfold while Moonstar is repeatedly cutting Wade and watching his healing factor work. Damask receives a transmission from Apocalypse informing her that he is sending a secondary expedition and that when they arrive in Avalon she is to \"kill Avalon\". In frustration, she kills Moonstar and tells Wade \"And I loved it\". Back on the ship, Callisto has taken hold of the refugees to Avalon and they head on their way. She and her crew collect all valuables that the refugees have on them and then when they get to deeper water she orders the cargo doors in the water, dumping every passenger into the freezing cold ocean killing them. The bodies pile up the boat drifts in what is called an Atrocity Zone, small islands in the Atlantic where Apocalypse dumped all the corpses he was creating. Callisto shoots the crewman responsible for letting them drift in to it and tells the rest of the crew to wait for her signal. Unbeknown to Callisto, Nightcrawler has been teleporting around the ship taking out her crew one by one and he then appears on the deck and takes out the remainder of the crew. Callisto is about to shoot Nightcrawler when Mystique shows up and points a gun at her head.

    Callisto is dead and Mystique and Nightcrawler, mother and son, are having a family reunion. They jump onto the ladder up to Mystique's helicopter and when Nightcrawler asks how she found him, she tells him that she was actually looking for the pirates because they'd killed the last two groups of travelers. On the Pale Riders ship, Wade is still devestated about Moonstar's death and Damask tell him that Moonstar never liked him anyway. Nightcrawler and Mystique arrive at Mystique's Antarctic headquarters and Kurt asks his mother why she won't go to Avalon. When she evades the topic he slaps her and accuses her of everything he had heard about her from the Ghost Dance. She admits that she takes the possessions of her passengers, calls it a tariff, and Nightcrawler tells her she isnt worthy of being in Avalon. Later, they are rowing down the underground river to Avalon and they meet Cain. Mystique asks where Destiny is and when he says she's too old to greet people anymore so he does it. The three of them trek to Avalon, with Cain carrying all the crates they brought and when they reach the edge of the paradise Mystique, who has never actually the end of the journey, is breathless over the beauty of Avalon and of the news the Destiny has a son. As they approach Destiny, Irene is thrilled to see Raven and hopeful that this means she will stay with them. When Mystique says she came to take her back with them, Destiny silently turns and leads them to Avalon Village. She introduced them to Switchback and tells of her vision that they will all die . Meanwhile at the entrance of Avalon, Wade is ready to kill everything as per his order while Damask on the other hand is so taken aback by the beauty she sees and is having seconds thoughts about her orders. In Avalon Village, Mystique and Nightcrawler are telling Destiny about Bishop, Xavier, and the alternate timeline. Destiny is hesitant to leave, claiming that her departure might cause Avalon to be destroyed and telling them that she has much to lose, such as her son. Suddenly a rocket blows up their tent and everyone scrambles to see what happened. Nightcrawler tries to get Cain to fight to protect them but he has a crisis of conscious so severe (his violent nature fighting his fanatical pacifist nature) that it caused an anuerism, killing him. Mystique and Co break out their guns, while on a hill Wade is continuing to shot at them. He asks Damask why she isnt killing anyone and she changes sides, stabbing Wade. This stalls his just long enough for Nightcrawler to teleport his head off his body. Damask tells him that if he wants her help shes willing and together with Mystique and Switchback they stand ready for Apocalypse's invasion.

    While still standing over Wade's dead body, Switchback suddenly changes positions explaining that its her mutant power to shift herself back down her own timeline a max of 10 seconds, in this case to fix the headache she was getting. Mystique and Switchback head back to the village while Nightcrawler interrogates Damask about Apocalypse's next wave. She tells him she doesn't know as she learns in and rubs his face fur commenting it feels like velvet. Back in the village, everything is on fire and everyone is in pain. They find Destiny and Doug helping other people and Doug and Mystique get into a fight over Doug's mutant status (his translation field covers the area so everyone can communicatie) and how his mother could ever be friends with someone like Mystique. Switchback jumps in and says that all they want is for her to come to America and confirm or deny what Bishop is saying. Suddenly one of the villagers with bio-electric powers goes berzerk killing several others. Before Mystique can kill her, Doug stops her and says that he can read background noise in thoughts and that she has two. At this point, Shadow King reveals him as possessing the girl explaining that he came in with Wade and when he was killed jumped to Switchback (which explained her headache). Mystique shoves Doug out of the way and blasts the possessed girl. Damask tells them that all they did was kill his host and he'll have a new one by now. Nightcrawler asks how does his power work and she explains that he traveling from mind to mind through an adjacent dimension. Destiny stumbles through the carnage and Shadow King approaches her in the guise of a pyrotic mutant named Marcus and berates her life's work as a waste of time. Damask lashes out with her own power, searing psychic knives, which forces Shadow King out of the boy. The boy is released as Doug accuses Nightcrawler and Mystique of causing all the carnage to which he replies that it was inevitable andall they did was move it up the schedule. Suddenly, Mystique is possessed by Shadow King and begins cycling through forms until she stops on Sabretooth, because it was the worst memory he could find in her mind. Using a combination of their powers, Nightcrawler teleports while Switchback uses her power to extend their time between worlds (where they find Shadow King) and Damask destroys his mind with her psychic knives. With his last vestige of power he makes a nearby mutant blast Destiny but Doug jumps in the way and saves her, dying in the process. Destiny agrees to accompany Nightcrawler back to Magneto and help bring down Apocalypse.

    Gambit & the X-Ternals

    Jubilee is fleeing from Infinite soldier while carrying stolen medical supplies and as she falls Guido comes barreling through a wall and Sunspot blasts them. Jubilee is gathering up her bundles when Sunspot explodes another grunt above her. When Guido tries to check on her she just yells that shes fine and wasnt scared. The trio sneaks through the city to a human safehouses where they deliver the medical supplies under the watchful eye of the teams human member, Lila Cheney. She tells them that Gambit just got back but wont tell them where hes been. They walk through the underground tunnels (where legend tell of a tribe of mutants that once lived there) they that serve as their base until they come upon Magneto. They almost attack him but Gambit stops them and tell them that they came together and that Magneto needs their help stealing something BIG. At the headquarters of the Madri, a priesthood devoted to Apocalypse, Rictor berates his lackeys for not capturing the X-ternals and helping him get promoted. While the team walks through the tunnels, Guido and Jubilee discuss (sorta) Lila and Remy's dating again while Gambit and Erik have tense conversation about Rogue. Magneto leads them to a hidden chamber in the tunnel dubbed \"the Science Chamber\" and when they question Magneto's motives he tells them he got his information from Apocalypse's scientific librarian for cataloging and the information is guaranteed. He mentions that she didnt complain about his methods and reasons when he rescued her from an asylum but she says it was a long time ago. The doors open to a room full of scientific wonder jsut before the Madri teleport in. The X-ternals and Magneto dispatch the invaders while Sunspot locates Peter Corbeau the \"librarian\". Peter warns that if the Madri came the other will come and they dont have time. He pulls up information about the Shi'ar galaxy (which Magneto had asked him to find) on the rooms computers, which are composed of the remains of Apocalypse Celestial ship that Magneto downs years earlier. When Lila balks at the idea of going to outer space, Magneto informs her that she is a latent mutant and that her long range teleportation powers will be responsible for taking them. Using the chamber's cybernetic helmet, Corbeau helps Lila visualize the far off galaxy and open her mind to her own powers. As her power floods through her, Rictor and the Madri arrive and Magneto tells them to go while he fights them off. Lila opens a vortex that takes all the X-ternals through it and at the last possible second Rictor jumps through. Magneto defeats the rest of the soldiers and Peter(knowing Apocalypse will have him killed for this, sets the self destruct program.

    The team arrives a moment later on the Shi 'ar homeworld and are immediately confronted by the Shi'ar Imperial Guard. Guido catches Lila as she falls from the sky, dropping Jubilee in the process. Rictor instantly surrenders but Gambit and the team turn and run which only incites the Imperial Guard to pursue them. After a brief battle they are able to escape into the cover of the forest. However, once they enter the forest, the forest trees begin to attack them and suck them down into the ground. Moments later the Guard with Rictor in tow come by and find no sign of them at all. Underground, the X-ternals see a speak to the shadowy figure who had the sentient plants abduct them and Lila says she felt the entire planet call her here through the portal. Rictor tells the Imperials that he has a tracker on one of the other mutants and as Oracle tries to read his mind there is a sort of feedback where she says that for a brief moment everything ceased to exist. She says that the telepathic spies were right and Emperor D'Ken's meddling of the M'Kraan crystal will destroy everything. Rictor offers to help provided he can have the X-ternals when they are finished. In the underground cavern, everyone also felt the nexus expansion effect. The leader, Jonah, recounts the story of how D'Ken came to power by murdering his father and Lilandra and wresting the throne from Deathbird. After becoming emperor, D'Ken discovered the M'Kraan crystal which was now radiating out energies that were threatening the entire universe. He tells them that the blink they felt means that this sector of space is next to be nullified. Even with Jonah's assurance that they will be spared so as to see \"the end of all that is\" so they can stop it from happening again, Jubilee still freaks out saying that they were just supposed to steal a rock, which Sunspot agrees with. Just as Jonah is rallying them to the cause, Rictor and the Imperial Guard burst in through the ceiling. As they groups battle another blink happens and everything starts to crystalize around them. At the last moment before they are turned to crystal, the X-ternals are teleported to a ship where they are face to face with the Deathbird and the Starjammers

    The Starjammers ship drops out of hyper speed just outside the energy absorption system that surrounds the M'Kraan planet. When Gambit reconsiders the plan, Deathbird reminds him that he traveled across the universe for this. The Starjammers plan to keep the armada busy while the X-Ternals teleport planet-side. When they reach the surface they are instantly attacked by Shi'ar guards and Bobby tells them they don't have to beat the army; they simply have to delay them while Gambit and Lila get the jewel. Meanwhile, Gambit, Lila, and Deathbird approach the crystal (which Gambit didn't expect to be 3 stories high) and Deathbird tells them that as much power is in a sliver as in the whole crystal. As more soldiers approach them, Lila is grabbed by a strange hand and pulled inside the crystal. Gambit and Deathbird follow her and meet Jahf, the guardian of the M'Kraan. Outside, Guido, Sunspot and Jubilee continue fighting and after the next blink Sunspots hands turn white with energy. Suddenly Gladiator flies in with Rictor in tow, with soldiers still surrounding them the situation seems more and more hopeless. Inside the crystal Gambit, Deathbird and Jahf approach the center of the crystal where Lila and D'Ken stand transfixed by the glowing energy ball. When Deathbird attempts to attack Jahf she is mesmerized also. Jahf explains to Gambit how the crystal is the nexus of all realities (even mentioning the X-men who came through there back in the 70's). He tells Remy that Bishop is telling the truth about the world being wrong and how it was affecting every reality. Jahf tells him to take a shard of the crystal and use it to send Bishop tot the past and fix everything. Outside while Gladiator and Sunspot fight, there's another blink but this time Sunspot's entire body glows bright white and everyone except Rictor and the X-ternals are turned to crystal. Everyone leaps into the crystal as Gambit prepares to smash the energy matrix. As he hits the glowing ball, everything explodes and Sunspot absorbs more energy then ever before. He is left behind as Lila teleports them home.

    Dazzler and Exodus search the Morlock tunnels beneath the mansion and find the ruined remains of Nanny but no sign of baby Charles. At Apocalypse's citadel, Rictor is being questioned by Apocalypse regarding the events with the X-Ternals. He recounts chasing Remy and Lila through the tunnel (with Guido and Jubilee heading in a different direction with the crystal shard towards Magneto). Though exhausted, Lila runs towards daylight while Rictor follows behind then taunting. Back at Rictor's interrogation, Apocalypse informs him that he was wrong to think that Gambit was more important than the crystal shard Jubilee carried, while he stroked the head of Magneto's son. Meanwhile in the tunnel, Jubilee is running with the crystal and baby Charles from Guido, who it turns out was a spy on their team. He tells her that two months earlier he was captured and has hated Gambit ever since. Guido agreed to spy on them and keep the rest of them safe. Apocalypse wants Gambit and Rogue to get to Magneto, but the plan went awry when they run into the robot which lead them to the mansion instead of Apocalypse as planned. Gambit destroys the robot.

    Lasting Effects

    Though this reality was supposed to have vanished when all was said and done, further issues have come out to show that this alternate reality still thrives. In addition, Bishop lived through both realities. But, since the AoA was never to have happened, his body reverted to what it was before the event but his mind kept the memories.

    A few characters from the Age of Apocalypse made their way to Earth-616 before the reality was to disappear:

    • X-Man - The reality's version of Cable created by Mr. Sinister using the genetic material from Cyclops and Jean Grey. Nate Grey showed up in the main timeline after ramming a shard of the M'Kraan crystal into Holocaust's chest.
    • Holocaust - Also entered the main reality when the crystal was jammed into his chest. He appeared in space frozen in ice and was found by the Acolytes
    • Sugar Man - He somehow ended up 20 years in the past on Earth-616 and had a base in Genosha. There he seemed to aid the Genegineer in the mutate process.
    • Dark Beast - Another mutant to have ended up in the past. He was learned to have used principles from his master, the AoA's Mr. Sinister, and experimented on mutants, thereby forming the Morlocks. It is seen that the main timeline's Mr. Sinister recognized his work (but perverted) and approved the Mutant Massacre.
    • Hatchet-9 - An inter-dimensional traveler using a gate Apocalypse with which had experimented.

    These characters didn't make it to 616 proper but made it out of their own world nonetheless to join the reality hopping Exiles:

    • Blink - Though the main timeline already had a Blink, the AoA version proved popular enough to spark another incarnation who became a dimensional traveler
    • Sabretooth - He was plucked from AoA to replace the team's version of Heather Hudson.

    Other characters either made their debut or had a major overhaul that later also happened in 616:

    • Iceman was shown here to be able to become solid ice and also reform upon shattering for the first time in AoA. He later discovered this ability in 616
    • Sunfire's flaming image and costume were first seen here and later brought back in 616 as his \"Horsemen of Apocalypse\" guise
    • Sunspot was shown as having a more flame like energy signature when his power was active, this was worked into his powers during the Reignfire storyline in 616
    • Abyss was one of Apocalypse's Horsemen when he made his debut in AoA. When he showed up in 616 he was revealed to be Nightcrawlers half brother by their father.
    • A minor change/intro was this was the first time we saw Bishop bald. Until now he had always had long hair, the bald look didn't show up for many years.
    • This is the first time we see Rogue and Magneto touch, an aspect of his power that is later explored by his clone Joseph in 616.
    • Switchback first appeared in X-Calibre during Age of Apocalypse but never made it to a 616 appearance.

    Supplements

    Since the Age of Apocalypse was so popular, Marvel would allow the timeline to be revisited in stories that were published later. While these stories add to the history of the AoA, they do not technically fall in line with the original story arc.

    For in depth looks at these supplemental stories, see the Age of Apocalypse concept page here.

    Also, a new volume of monthly stories has begun under the same name, Age of Apocalypse, that continues to follow the inhabitants of the different timeline.

    Collected Editions

    Non-U.S. Editions

    Related Issues

    Other Media

    Television

    X-Men: The Animated Series

    A similar version of the Age of Apocalypse storyline was included in the X-Men animated series. However, Apocalypse wasn't shown to control this reality. In this alternate reality, Magneto gathered all mutants to fight against humanity after Xavier was dead. In the two-part episode, \"One Man's Worth,\" a temporal anomaly caused Xavier to disappear and altered the reality. Bishop and his sister, Shard, learns that Fitzroy, the time-traveling mutant, had killed young Xavier in the past. Since Xavier was killed, his dreams of human and mutant coexistence had no meaning and thus the two races are having a war against each other. To prevent his death, Bishop and Shard convinces Wolverine and Storm's alternate selves to go with them and stop Fitzroy from killing young Xavier.

    Wolverine and the X-Men

    After the X-Men accomplish their mission in the present to avoid a world ruled by Sentinels, a variant of the Age of Apocalypse reality is shown in the final episode. Mr. Sinister and Cyclops are depicted in their Age of Apocalypse versions, alongside Apocalypse.

    Video Games

    X-Men Legends II: Rise of Apocalypse

    \"AoA\"
    AoA

    This game is heavily influenced by the \"Age of Apocalypse\" storyline. This role-playing game focuses on an X-Men and Brotherhood alliance to face Apocalypse´s coming. As in AoA, Apocalypse attacks New York and sets his base there (though the game combines some concepts of Earth 616 and AoA).

    Similarities:

    - Horsemen of Apocalypse (Abyss, Mikhail, Mr. Sinister and Holocaust).

    - Affection felt for Blink by Sabretooth.

    - Angel as information provider.

    - Destiny seeks refuge on Avalon (Savage Land).

    - Grizzly is convinced to work for Apocalypse to satiate his thirst for violence.

    - Sugar Man controls the Core, that supplies energy to Apocalypse's reign.

    - After completing the second act the game offers special outfits that are based on The Age of Apocalypse.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105731/","id":105731,"name":"Beginnings","issue_number":"1"},"first_appeared_in_episode":null,"id":40752,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/181846-139830-age-of-apocalypse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/181846-139830-age-of-apocalypse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/181846-139830-age-of-apocalypse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/181846-139830-age-of-apocalypse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/181846-139830-age-of-apocalypse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/181846-139830-age-of-apocalypse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/181846-139830-age-of-apocalypse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/181846-139830-age-of-apocalypse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/181846-139830-age-of-apocalypse.jpg","image_tags":"All Images,Covers,Earth-295: The Age of Apocalypse"},"name":"Age of Apocalypse","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse/4045-40752/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40760/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2011-05-05 17:04:15","deck":"Young psychopath, Tara Markov, is seduced and trained by Deathstroke to infiltrate the Teen Titans and to tear them apart from within.","description":"

    One of the most shocking stories ever to be written in comics. Deathstroke the Terminator has a long held grudge against the Titans relating to the death of his son Grant Wilson the original Ravager.

    In order to fulfill this grudge he seduces a 15 year old with the extraordinary ability to command the very earth to her will.

    Terra successfully fools the other titans into accepting her onto the team as Terra, even stealing Beast Boy's heart in the process, but when the time comes to execute Deathstroke's final plan, Terra proves too emotionally unstable and literally brings the house down killing herself in the process.

    The Titans were never entirely clear what happened to them and Terra's betrayal was considered an aberration despite the fact that she clearly relished her role as a sexpot and a traitor. 

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-24277/","id":24277,"name":"The Judas Contract: Book One - The Eyes of Tara Markov!","issue_number":"42"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-2887/","id":2887,"name":"Aftershock, Pt. I","episode_number":"212"},"id":40760,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89685-125116-judas-contract.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89685-125116-judas-contract.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89685-125116-judas-contract.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89685-125116-judas-contract.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89685-125116-judas-contract.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89685-125116-judas-contract.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89685-125116-judas-contract.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89685-125116-judas-contract.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89685-125116-judas-contract.jpg","image_tags":"All Images,Judas Contract"},"name":"Judas Contract","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/judas-contract/4045-40760/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40761/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-05-01 10:10:03","deck":"Seeking Gotham as his ultimate prize, the Santa Priscan crime lord Bane wages a slow-burning war to wear Batman down - bringing the Dark Knight to his knees before Bane breaks him.","description":"

    This storyline follows Batman in the aftermath of the massive breakout at Arkham Asylum, leading up to his confrontation with Bane and the fallout from that. Knightfall is broken up into two parts \"The Broken Bat\" and \"Who Rules the Night\".

    The Broken Bat

    \"No

    Following Bane's massive break out at Arkham Asylum Batman hunts through the city of Gotham tracking down the escaped inmates. He confronts multiple enemies in rapid succession including Mad Hatter, Killer Croc, Zsasz, Poison Ivy, Scarecrow, and Joker (among others). With no rest between battles he quickly wears down but refuses to give up or stop. Finally when he is at the end of his rope, he is confronted by Bane right inside Wayne Manor and after a brutal and bloody battle, Bane lifts Batman above his head and breaks his back over his knee. He then throws Batman's broken unconscious body into a crowd in Gotham City. Bruce Wayne is now in a coma with severe spinal trauma.

    Who Rules the Night

    With Bruce stabilized but out of commission, Gotham City still needs a Batman, so Bruce asks Jean Paul Valley (Azrael) to step in as Batman. His first battle is with Scarecrow and he begins to get more and more comfortable in the role of Batman. However his previous brainwashing begins to kick in and his Batman becomes more and more ruthles s as time goes on. He develops a pair of razor claws that he wears out as Batman and eventually even attacks Tim Drake (Robin in the Bat Cave.) Meanwhile, Bruce leaves the country to rescue Tim Drake's father and Dr Shondra Kinsolving and is unaware of his replacements behavior. Increasing in madness, Jean-Paul in his new Batman-like aromor tracks down Bane and beats him within an inch of his life however at the last minute pulls back and spares him. He hands Bane over to the police and expels Robin from the Bat Cave at the end of the storyline.

    KnightQuest

    This storyline continues in KnightQuest: The Crusade which follow Jean Paul and his violent rampage as Batman against Gotham City villains and KnightQuest: The Search which follows Bruce Wayne quest to find Frank Drake and Shondra Kinsolving.

    Collected Editions

    Related Items

    Novelization

    \"No
    In 1994, DC Comics brought readers a landmark story featuring Batman. The Dark Knight has been Gotham City's protector for years, challenged by its many villains. But now there's a new villain on the scene, determined to conquer where others have failed. Known as Bane, he starts his campaign against Batman and Gotham by emptying Arkham Asylum, where so many of Batman's enemies are imprisoned and have spent their time plotting revenge. Almot single-handedly, Batman fights off these long-time opponents only to find himself so exhausted after it all that his strength fails him when Bane follows the onslaught to face Batman himself. Now Bruce Wayne is confined to a wheel-chair and must turn over his cloak and cowl to his apprentice, Azrael. But Azrael's philosophy of crime-fighting is much more violent and harsher than Batman's ever was. And now Bruce faces two challenges: the first is dealing with his incapacitation; and the second is dealing with Azrael who, it's become clear, is a loose cannon with an agenda all his own.
    • Written By: Dennis O'Neil
    • Publisher: Bantam Books (July, 1994)
    • ISBN-10: 0553096737
    • ISBN-13: 978-0553096736
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37038/","id":37038,"name":"The Freedom of Madness!","issue_number":"491"},"first_appeared_in_episode":null,"id":40761,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/149111/3587431-knightfall-vol.-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/149111/3587431-knightfall-vol.-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/149111/3587431-knightfall-vol.-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/149111/3587431-knightfall-vol.-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/149111/3587431-knightfall-vol.-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/149111/3587431-knightfall-vol.-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/149111/3587431-knightfall-vol.-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/149111/3587431-knightfall-vol.-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/149111/3587431-knightfall-vol.-1.jpg","image_tags":"All Images"},"name":"Knightfall","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/knightfall/4045-40761/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40762/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-05-12 09:41:14","deck":"After Jason Todd's death, Batman begins to go on a rampage.Taking unnecessary risks and actions. Only Dick Grayson or a very young boy named Tim Drake can calm him.","description":"

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-32093/","id":32093,"name":"A Lonely Place of Dying Part 1: Suspects","issue_number":"440"},"first_appeared_in_episode":null,"id":40762,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1787396-alonelyplaceofdying.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1787396-alonelyplaceofdying.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1787396-alonelyplaceofdying.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1787396-alonelyplaceofdying.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1787396-alonelyplaceofdying.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1787396-alonelyplaceofdying.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1787396-alonelyplaceofdying.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1787396-alonelyplaceofdying.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/1787396-alonelyplaceofdying.jpg","image_tags":"A Lonely Place of Dying,All Images"},"name":"A Lonely Place of Dying","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/a-lonely-place-of-dying/4045-40762/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40763/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-05-03 09:10:16","deck":"\"The Janus Directive\" was a 1989 crossover spanning 11 issues that ran through the series Checkmate, Suicide Squad, Manhunter, Firestorm and Captain Atom.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-31169/","id":31169,"name":"The Janus Directive, Part 1 - Knight Kill","issue_number":"15"},"first_appeared_in_episode":null,"id":40763,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/3022423-tumblr_mlvde0cbxg1s6szeio1_1280.jpg","image_tags":"All Images"},"name":"The Janus Directive","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/the-janus-directive/4045-40763/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40764/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-04-28 00:30:27","deck":"Crisis on Infinite Earths was one of the biggest events in the DCU. It erased the DC Multiverse and rebooted many DC Heroes' origins. It mark's the end of the Silver and Bronze Ages of Comic Books.","description":"

    In addition to the 12-part maxi series the following titles were part of the official crossover:

    Collected Editions

    Related Items

    Non-U.S. Editions

    Novelization

    \"No
    A spectacular and original novel based on the epic comics series that forever changed the universe of Superman and Batman by the man who created the original tale! Trapped in a timeless limbo, Barry Allen, the Flash, can only watch in silent and helpless horror as, one by one, countless universes fade from existence in order to feed the insatiable need for power of the Anti-Monitor, a being from the anti-matter universe of Qward. Under the guidance of the Monitor, his benevolent opposite, the super-heroes and villains of all realities are brought together for a last, desperate stand against the forces that promise the literal end of all existence.
    • Written By: Marv Wolfman
    • Publisher: Ibooks (April, 2007)
    • ISBN-10: 1596873434
    • ISBN-13: 978-1596873438
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109965/","id":109965,"name":"Doctor Cyber's Revenge! / The Final Blackout","issue_number":"321"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-29962/","id":29962,"name":"You Have Saved This City ","episode_number":"722"},"id":40764,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2532/150510-140433-crisis-on-infinite-e.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2532/150510-140433-crisis-on-infinite-e.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2532/150510-140433-crisis-on-infinite-e.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2532/150510-140433-crisis-on-infinite-e.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2532/150510-140433-crisis-on-infinite-e.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2532/150510-140433-crisis-on-infinite-e.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2532/150510-140433-crisis-on-infinite-e.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2532/150510-140433-crisis-on-infinite-e.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2532/150510-140433-crisis-on-infinite-e.jpg","image_tags":"All Images,gallery"},"name":"Crisis on Infinite Earths","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/crisis-on-infinite-earths/4045-40764/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40765/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2019-07-04 06:01:09","deck":"In the chaos ensuing after the unleashing of the OMACs on Earth, the Spectre's vendetta against magic, and the Rann-Thanagar War, four beings decide to try and save the universe: Superman and Lois Lane of Earth-Two, Superboy of Earth-Prime, and Alexander Luthor of Earth-Three. What resulted was the *Infinite Crisis.*","description":"

    Plot Summary

    The story begins in the wake of the four lead-in limited series, with Superman, Wonder Woman, and Batman feuding, the JLA Watchtower destroyed, and the heroes of the world all facing a variety of menaces. Over this backdrop, Kal-L (the Earth-Two Superman), along with Earth-Two Lois Lane, Earth-Three Alexander Luthor, and Superboy-Prime escape from the pocket universe where they had been left at the end of Crisis on Infinite Earths. Kal-L seeks out his cousin, Power Girl, also a survivor of Earth-Two. Believing Lois' health will improve on her native world, he hopes to replace the current Earth-One with Earth-Two, which he considers perfect.

    Kal-L tries to enlist Batman's support, stating that the Post-Crisis Earth's inherent \"bad\" nature caused Batman's recent mistrust and hostility. Batman refuses. Afterward, he learns Superboy-Prime destroyed the JLA Watchtower.

    Alexander reveals to Power Girl that he and Superboy-Prime had been leaving their \"paradise\" for some time, manipulating events to help create an inter-dimensional tuning fork. Using the Anti-Monitor's remains and captured heroes and villains specifically attuned to former universes (Power Girl among them), Alex restores Earth-Two, un-populated except for the Earth-Two heroes transported there.

    Superboy-Prime attacks Conner Kent, this world's Superboy. Multiple super-teams intervene. Superboy-Prime accidentally kills several heroes before the Flashes and Kid Flash force him into the Speed Force, assisted by speedsters already within it. Jay Garrick, the only speedster left behind, says the Speed Force is now gone.

    Seeking to create a perfect world, Alexander restores many alternate Earths. The Earth-Two Lois dies, and an aggrieved Kal-L and the younger Superman Kal-El fight until Wonder Woman separates them. Bart Allen (wearing Barry Allen's costume and aged to adulthood) emerges from the Speed Force, warning that he and the other speedsters were unable to hold Superboy-Prime, who returns wearing Anti-Monitor inspired armor that stores yellow sun radiation to empower him, making him even stronger.

    Batman's strike force destroys Brother Eye, a satellite AI created by Batman that had gone rogue and begun transforming civilians into nano-infused robots. Alexander selects and merges alternate Earths, trying to create a \"perfect\" world, until Firestorm blocks his efforts. Conner, Nightwing, and Wonder Girl release the Tower's prisoners. Fighting each other, Conner and Superboy-Prime collide with the tower, destroying it. The multiple Earths recombine into a \"New Earth\" as Conner dies in Wonder Girl's arms. Power Girl soon arrives and asks Kal-L what happened to Lois. The answer causes her to break down prompting her to ask Kal-L why. His answer is because he chose the wrong Superboy.

    When a horde of supervillains attack Metropolis, heroes, current and retired, fly off to the rescue. They are joined by the National Guard. The battle results in multiple deaths on both sides, including many by Superboy-Prime himself, who kills villains and heroes alike. During the battle, Superboy-Prime takes off to destroy Oa, planning to collapse the Universe, and recreate it with himself as the only superhero. Superboy-Prime breaks through a 300-mile thick wall of willpower, and then kills thirty-two Green Lanterns before Kal-L and Kal-El carry him toward Krypton's remains, now essentially a huge cloud of kryptonite. Flying through Krypton's red sun Rao destroys Superboy-Prime's armor and causes all three Kryptonians' powers to dissipate. Landing on the sentient planet (and Green Lantern Corps member) Mogo, they fight. Kal-El finally knocks Superboy-Prime out and the older Superman Kal-L dies of his injuries in the arms of his cousin, Power Girl.

    Back on Earth, Batman, struggling with Superboy's death and Nightwing's severe injuries sustained during the Metropolis battle, contemplates shooting Alex. Batman is discouraged by Wonder Woman. Alex manages to escape.

    Wonder Woman, Batman, and Superman later meet up in Gotham. Wonder Woman plans to find out who she is. Batman plans a similar journey of self-discovery, revisiting the training of his youth, this time with Dick Grayson, now healthier, and Tim Drake joining him. Superman retires from superheroics until his powers return. He is just Clark Kent a reporter and also spending time with his wife Lois Lane and family and reporter on the missing year [See 52 comics to find out]

    Hiding in an alley in Gotham City and making new plans, Alexander Luthor is found by Lex Luthor and the Joker. The Joker deforms him by spraying acid onto his face, then kills Alexander as Lex mocks him for making the mistake of not letting the Joker play in the Society.

    The Green Lantern Corps imprison Superboy-Prime inside a red Sun-Eater. The series ends with him carving an S into his chest with his bare hands and declaring that he has escaped from worse prisons than this.

    Deaths in Infinite Crisis

    \"Alex
    Alex Luthor
    • Air Wave - Split into a million pieces. Infinite Crisis #4
    • Ballistic - Vaporized by Superboy-Prime. Infinite Crisis #7
    • Baron Blitzkrieg - Vaporized by Superboy-Prime. Infinite Crisis #7
    • Bushido - Sliced in half by Superboy-Prime. Infinite Crisis #4
    • Breach - Exploded after his shell is ruptured by Superboy-Prime. Infinite Crisis #7
    • Charaxes - Torn in half by Superboy-Prime. Infinite Crisis #7
    • Geist - Vaporized by Superboy-Prime. Infinite Crisis #7
    \"Wildebeest\"
    Wildebeest
    • Jade - Fried by lightning emanating from an energy rift in space. Rann/Thanagar War: Infinite Crisis Special #1
    • Lois Lane of Earth-Two - Died of old age. Infinite Crisis #5
    • Alexander Luthor - Shot by Joker. Infinite Crisis #7
    • Major Disaster - Neck snapped by Superboy-Prime. Infinite Crisis #7
    • Mongrel - Vaporized by Superboy-Prime. Infinite Crisis #7
    • Nabu - Burnt while battling the Spectre. Day of Vengeance: Infinite Crisis Special #1
    \"Superboy\"
    Superboy
    • Nightblade - Vaporized by Superboy-Prime. Infinite Crisis #7
    • Pantha - Head punched off by Superboy-Prime. Infinite Crisis #4
    • Peacemaker (Mitchell Black) - Shot in the back by Prometheus. Infinite Crisis #7
    • Psycho Pirate (Roger Hayden) - Masked shoved through head by Black Adam. Infinite Crisis #6
    • Razorsharp - Vaporized by Superboy-Prime's heat vision. Infinite Crisis #7
    • Lady Spellbinder. Shot. Infinite Crisis #7
    • Stallion. Caught in explosion. Infinite Crisis #4
    • Star Sapphire (Deborah Camille Darnell). Turned into sapphire and shattered by the Spectre. Infinite Crisis #6
    • Superboy (Conner Kent) - Killed in explosion of Alexander Luthor's arctic tower. Infinite Crisis #6
    • Superman of Earth-Two - Beaten to death by Superboy-Prime. Infinite Crisis #7
    • Technocrat - Incinerated when Breach exploded. Infinite Crisis #7
    • Trigger Twins - Shot. Infinite Crisis #7
    • Wildebeest - Punched through the stomach by Superboy-Prime. Infinite Crisis #4
    • Mick Wong - Split from Firestorm in space and suffocated. Infinite Crisis #4

    Chronology of Infinite Crisis

    Infinite Crisis was DC's most ambitious story arc to date, and as such consisted of seven separate mini-series, several one-shots, and tie-ins from DC's other titles. This leads to much confusion when determining an official reading order, but breaking each arc into smaller parts can alleviate this a bit. The following sequence is a high-level chronology.

    • Prelude to Infinite Crisis (one-shot) collected several stories from earlier titles that led into the main story.
    • Countdown to Infinite Crisis (one-shot) told the story of how Blue Beetle investigates the relationships between all the seemingly unrelated activities that are plaguing the world.
    • Prelude Mini-Series included The OMAC Project, Day of Vengeance, Villains United and Rann-Thanagar War. Each series was unrelated to the others in the sense that they can be read stand-alone, and only tie in to the main story after each is complete.
    • Infinite Crisis is the main story.
    • Infinite Crisis Secret Files (one-shot) tells the background story of the main players in the Infinite Crisis mini. This was published between issues 5 and 6 of the main series.
    • Four Infinite Crisis specials/one-shots were published, with the same titles as each of the Prelude Minis, in between Infinite Crisis issues 3 thru 7. These tie the prelude stories back into the events of the main series.
    • The Aftermath Mini-Series included Battle for Bludhaven and The Spectre. These also are independent of each other.
    • Brave New World comes last (see also the Impacts on DC Titles section below).

    Impacts on DC Titles

    Infinite Crisis was a wide-ranging arc that impacted much of the DC Universe. As such, many titles either ended, were rebooted, or changed titles. Several new volumes were started as a result of Infinite Crisis as well.

    Changes to Existing Series

    • Superman (vol. 2, 1987) ended with issue #226 (April 2006).
    • Adventures of Superman reverted back to its original title of Superman (vol. 1, 1939) with issue #650 (May 2006), maintaining issue numbering.
    • Wonder Woman (vol. 2, 1987) ended with issue #226 (Apr 2006), and Wonder Woman (vol. 3, 2006) rebooted the character with issue #1 in August 2006.
    • Hawkman (2002) changed its title to Hawkgirl (2006), maintaining issue numbering, starting with issue #50 (May 2006).
    • Aquaman (2003) changed its title to Aquaman: Sword of Atlantis, retaining issue numbering, with issue #40 (May 2006)
    • JLA (1997) ended with issue #125 (April 2006) and Justice League of America (vol. 2, 2006) began with issue #1 in September 2006.
    • JSA (1999) ran only 5 more issues after Infinite Crisis, ending shortly after One Year Later with issue 87 (September 2006), and was rebooted as Justice Society of America (vol. 3, 2007) with issue #1 in Feb 2007.
    • Legion of Super-Heroes (2005) changed its title to Supergirl and the Legion of Super-Heroes with issue #16 (May 2006), and eventually reverted back to its original title after running 21 issues with the new name.

    New Series/Volumes

    This section lists either brand new volumes, or titles that had ended well before Infinite Crisis and got a new volume as a result.

    Brave New World and Related Minis

    The Brave New World one-shot (August 2006) continued several stories \"in the wake of Infinite Crisis,\" as was listed on its cover. This spawned several additional mini-series and ongoing series, including:

    Related Reading

    In addition to the series mentioned above, there are several series and story arcs that are not officially part of Infinite Crisis, but are strongly related to the events of Infinite Crisis.

    Lead-Ins:

    Aftermath:

    • One Year Later shows what happened in the chaos of the disappearance of the world's greatest heroes as a result of Infinite Crisis.

    Collected Editions

    Non-U.S. Editions

    Novelization

    \"No
    The must-have novel based on the comic event of 2006-the seven-issue story arc featuring Batman, Superman, and Wonder Woman published by DC Comics-which changed the face of the DC Universe.
    • Written By: Greg Cox
    • Publisher: Ace (June, 2010)
    • ISBN-10: 0441018955
    • ISBN-13: 978-0441018956
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-153625/","id":153625,"name":"Prelude to Infinite Crisis","issue_number":"1"},"first_appeared_in_episode":null,"id":40765,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/54/81239-83951-infinite-crisis.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/54/81239-83951-infinite-crisis.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/54/81239-83951-infinite-crisis.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/54/81239-83951-infinite-crisis.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/54/81239-83951-infinite-crisis.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/54/81239-83951-infinite-crisis.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/54/81239-83951-infinite-crisis.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/54/81239-83951-infinite-crisis.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/54/81239-83951-infinite-crisis.jpg","image_tags":"All Images,Infinite Crisis"},"name":"Infinite Crisis","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/infinite-crisis/4045-40765/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40770/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2016-09-05 03:01:49","deck":"Matthew Ryder is sent back to 1991 to try to prevent the evil dictator Monarch ever achieving power.","description":"

    Famously mismanaged DC crossover from the early 1990s.

    Waverider is sent back in time from a dystopian future to prevent a tyrant from gaining power. Armed only with the knowledge that Monarch used to be a superhero, Waverider touches each superhero with his or her own Annual for a glimpse of the future.

    The problems arose when word leaked early in the summer that Monarch was going to be Captain Atom. In a ridiculous attempt at damage control, the editors at DC decided to re-write their ending on the fly. At the last minute, Captain Atom was allowed to continue as a hero while Monarch appeared and brutally murdered Dove from also-ran Titan wannabes Hawk & Dove. When Dove is killed, Hawk goes crazy, murdering Monarch who is revealed to be a future version of Hawk and putting on the Monarch armour himself.

    It was a ignominious end for Hawk and Dove and was received badly by fans who sensed the rush job.

    Interestingly, Captain Atom has recently been seen donning something similar to the Monarch armour so it's possible that there will be a return to the originally planned ending to this best forgotten series.

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-34156/","id":34156,"name":"Darktime","issue_number":"1"},"first_appeared_in_episode":null,"id":40770,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2950951-ad-armageddon-2001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2950951-ad-armageddon-2001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2950951-ad-armageddon-2001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2950951-ad-armageddon-2001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2950951-ad-armageddon-2001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2950951-ad-armageddon-2001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2950951-ad-armageddon-2001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2950951-ad-armageddon-2001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2950951-ad-armageddon-2001.jpg","image_tags":"All Images"},"name":"Armageddon 2001","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/armageddon-2001/4045-40770/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40771/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-02-14 11:24:41","deck":null,"description":"

    Reading order

    1. Eclipso: The Darkness Within #1
    2. Superman: Man of Steel Annual #1
    3. Green Lantern Annual #1
    4. Detective Comics Annual #5
    5. Superman Annual #4
    6. Justice League America Annual #6
    7. Demon Annual #1
    8. Flash Annual #5
    9. Action Comics Annual #4;
    10. Wonder Woman Annual #3;
    11. Green Arrow Annual #5.
    12. Robin Annual #1;
    13. Hawkworld Annual #3;
    14. Deathstroke the Terminator Annual #1;
    15. New Titans Annual #8;
    16. Justice League Europe Annual #3;
    17. Batman Annual #16;
    18. LEGION Annual #3;
    19. Adventures of Superman Annual #4;
    20. Eclipso: The Darkness Within #2;
    21. Valor #1;
    22. Eclipso #1.

    Related Issues

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-35869/","id":35869,"name":null,"issue_number":"1"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-34687/","id":34687,"name":"Summer School: Chapter Thirteen","episode_number":"213"},"id":40771,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2981998-darkness_within_advert_01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2981998-darkness_within_advert_01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2981998-darkness_within_advert_01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2981998-darkness_within_advert_01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2981998-darkness_within_advert_01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2981998-darkness_within_advert_01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2981998-darkness_within_advert_01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2981998-darkness_within_advert_01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2981998-darkness_within_advert_01.jpg","image_tags":"All Images"},"name":"Eclipso: The Darkness Within","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/eclipso-the-darkness-within/4045-40771/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40773/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2015-02-15 05:48:16","deck":"The Great Darkness Saga chronicles the fight between the Legion of Super-Heroes against the newly-risen Darkseid, the New God of Apokolips.","description":"

    The Great Darkness Saga spans between issues of Legion of Super-Heroes #290-294.

    Legion of Super-Heroes #287 serves as a prologue. Legion of Super-Heroes Annual #3 serves as an epilogue.

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-22136/","id":22136,"name":"Save The Espionage Suicide Squad","issue_number":"287"},"first_appeared_in_episode":null,"id":40773,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/2026653-legion_of_super_heroes_the_great_darkness_saga_tp__new_edition.jpg","image_tags":"All Images,Great Darkness Saga"},"name":"Great Darkness Saga","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/great-darkness-saga/4045-40773/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40774/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2012-12-03 09:07:40","deck":"The Dominators along with many other alien races, form an alliance to take out the Earth and it's meta-human heroes.","description":"

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-199178/","id":199178,"name":"Earth to Invaders: Drop Dead!","issue_number":"1"},"first_appeared_in_episode":null,"id":40774,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1867/1223024-invasion1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1867/1223024-invasion1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1867/1223024-invasion1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1867/1223024-invasion1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1867/1223024-invasion1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1867/1223024-invasion1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1867/1223024-invasion1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1867/1223024-invasion1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1867/1223024-invasion1.jpg","image_tags":"All Images"},"name":"Invasion!","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/invasion/4045-40774/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40775/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-09-29 17:04:03","deck":"Darkseid and the Phantom Stranger debate the nature of humanity. Darkseid vows to make humanity forsake its heroes. The Phantom Stranger vows to stop him.","description":"

    Legends was the first crossover event to take place in the Post-Crisis universe. It was published from late 1986 to early 1987.

    Plot Summary

    Darkseid sends his minion Glorious Godfrey to weaken the heroes of Earth by turning public opinion against them. The Phantom Stranger opposes him by helping to organize the heroes.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-27340/","id":27340,"name":"Once Upon a Time...! / Secret of the Temple","issue_number":"1"},"first_appeared_in_episode":null,"id":40775,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/54/94392-18730-legends.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/54/94392-18730-legends.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/54/94392-18730-legends.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/54/94392-18730-legends.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/54/94392-18730-legends.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/54/94392-18730-legends.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/54/94392-18730-legends.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/54/94392-18730-legends.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/54/94392-18730-legends.jpg","image_tags":"All Images,Legends"},"name":"Legends","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/legends/4045-40775/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40776/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-09-20 20:21:44","deck":"1988 DC crossover. The Manhunters returned to dominate the universe and crush the heroes of Earth along with the Green Lantern Corps.","description":"

    Complicated and ultimately discarded plot featuring the Guardians Of The Universe and the robotic cult, the Manhunters.

    There was an eight part mini-series called Millennium which was published weekly over two months and several crossovers resulting in a 56 chapter novel.

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-225754/","id":225754,"name":null,"issue_number":"1"},"first_appeared_in_episode":null,"id":40776,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2951023-ad-millennium-main.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2951023-ad-millennium-main.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2951023-ad-millennium-main.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2951023-ad-millennium-main.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2951023-ad-millennium-main.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2951023-ad-millennium-main.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2951023-ad-millennium-main.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2951023-ad-millennium-main.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2951023-ad-millennium-main.jpg","image_tags":"All Images"},"name":"Millennium","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/millennium/4045-40776/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40777/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-04-25 13:41:03","deck":"One year after the events of Infinite Crisis, the DC Universe's biggest three heroes (Superman, Wonder Woman, Batman) finally return after disappearing for a year.","description":"

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108019/","id":108019,"name":"Candor, Part 1","issue_number":"6"},"first_appeared_in_episode":null,"id":40777,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96281-119875-one-year-later.PNG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96281-119875-one-year-later.PNG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96281-119875-one-year-later.PNG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96281-119875-one-year-later.PNG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96281-119875-one-year-later.PNG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96281-119875-one-year-later.PNG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96281-119875-one-year-later.PNG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96281-119875-one-year-later.PNG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96281-119875-one-year-later.PNG","image_tags":"All Images,One Year Later"},"name":"One Year Later","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/one-year-later/4045-40777/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40778/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2016-04-03 16:08:23","deck":"DC Crossover from Summer 2001.","description":"

    Our Worlds at War was a crossover event following the invasion of Earth by the cosmic entity known as Imperiex, who intended to use Earth as the staging ground for the \"hollowing\" of the entire universe.

    The crossover was published during the summer of 2001, with each month's books being separated into three different phases: Prelude to War, All-Out War, and Casualties Of War.

    Reading Order

    Prelude to War

    1. Superman #171
    2. Green Lantern: Our Worlds at War #1
    3. Adventures of Superman #593
    4. Batman: Our Worlds at War #1
    5. Superman: The Man of Steel #115
    6. Superboy #89
    7. Young Justice: Our Worlds at War #1
    8. Action Comics #780
    9. Supergirl #59
    10. Wonder Woman #171
    11. Superman: Our Worlds at War Secret Files & Origins #1

    All-Out War

    1. Superman #172
    2. JLA: Our Worlds at War #1
    3. Young Justice #35
    4. Adventures of Superman #594
    5. Nightwing: Our Worlds at War #1
    6. Superman: The Man of Steel #116
    7. Superboy #90
    8. Action Comics #781
    9. JSA: Our Worlds at War #1
    10. Batman #593
    11. Supergirl #60
    12. Wonder Woman #172
    13. Wonder Woman: Our Worlds at War #1

    Casualties of War

    1. Superman #173
    2. Young Justice #36
    3. Adventures of Superman #595
    4. The Flash: Our Worlds at War #1
    5. Impulse #77
    6. Superman: The Man of Steel #117
    7. Harley Quinn: Our Worlds at War #1
    8. Superboy #91
    9. Action Comics #782
    10. Wonder Woman #173
    11. Supergirl #61
    12. Batman #594
    13. World's Finest: Our Worlds at War #1

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-53528/","id":53528,"name":"Greed I$ Good","issue_number":"89"},"first_appeared_in_episode":null,"id":40778,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96288-85429-our-worlds-at-war.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96288-85429-our-worlds-at-war.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96288-85429-our-worlds-at-war.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96288-85429-our-worlds-at-war.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96288-85429-our-worlds-at-war.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96288-85429-our-worlds-at-war.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96288-85429-our-worlds-at-war.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96288-85429-our-worlds-at-war.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96288-85429-our-worlds-at-war.jpg","image_tags":"All Images,Our Worlds at War"},"name":"Our Worlds At War","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/our-worlds-at-war/4045-40778/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40780/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-07-07 18:51:40","deck":"DC crossover from Late 1991. George Pérez originally conceived the War of the Gods crossover as a tribute for Wonder Woman's 50th anniversary.","description":"

    War of the Gods

    War of the Gods was orchestrated by the sorceress Circe, to destroy reality and re-create it in her own twisted vision. In the name of Hecate the goddess of witchcraft and the source of Circe's power. She teamed up with a host of Wonder Womans enemies to unleash her 'Holy War' just as Queen Hippolyte led a delegation of Amazons from their home, Themyscira to mans world. It would be the first time in 3000 years that any of the Amazons had set foot in the world of man.

    Circe along with Barbara Minerva and Konrad Kaslak a museum curator of unscrupulous morals, collected ancient relics dedicated to the war gods of various pantheons. Mikos, Circe' right hand man had learnt of the Amazons visit to the United States and with the Amazons of Bana-Mighdall framed the Themyscirans for the apparent theft of the valuable artifacts. Dr. Psycho another of Wonder Womans enemies distracted the Amazon Warrior by invading the minds of her closest friends the Kapatelis', and turning them against her. He then turned on the weakened Hermes, who was then bested by his Roman counterpart Mercury. Finally Circe lured the children of Ares, Phobos and Eris to her side - promising them greater power when her War of the Gods ended with her as victor.

    As planned the Egyptian Amazons stole the relevant relics from various cities at the same time as the Themyscirian Amazons began their Tour. But the Banas left countless dead and the police began investigating Wonder Woman and her Amazons, suspecting a connection. In Gotham City, the Cheetah sought out Hippolyte and hired Maxie Zeus to steal the Goblet of Heracles from the Amazon Queen. At the same time, Bana Amazons arrived at the Queens hotel to kidnap her and her Amazons and take them back to Circe. But the Goblet and the Queen vanished. Enraged, the Cheetah took out her frustrations on the remaining Amazons - killing Hellene before fleeing back to Boston. The police arrived and opened fire on the Amazons badly wounding General Phillipus, as Police Commissioner gordon called for a city wide hunt for the fugitive Amazons.

    Meanwhile in South America, Circe assembled the stolen relics at her altar while coercing the roman Gods to battle their greek counterparts. Having last their Mount Olympus when the Greek Gods destroyed there own. Dr Psycho continued to manipulate the minds of Wonder Woman and Hermes, making them battle each other above Boston. After freeing herself from the villains mental powers, Diana handed herself into the police. Across the nation the Banas bombed embassies and public places and framing the Themyscirans as they did it. The UN declared a state of war between itself and the Amazons. Wonder Woman came to the realisation that her enemies were collectively trying to destroy her and her whole nation. At this realisation, Wonder Woman fled the police and having found a couple of Amazon sisters, fled with them back to their island. On Themyscira the Amazons voted to invade America before America brought the war to them and demanded that Diana lead the fight in the absence of her mother, the Queen.

    Just the the newly returned Olympian Gods ushered Diana to New Olympus, where they explained that something had corrupted Olympus spirit and had made it a cosmic prison. Donna Troy had also materialised on Olympus trapped in an energy field that no-one could break through. It was then that the Roman Gods showed themselves and claiming Olympus as theirs. They had with them their champion - Captain Marvel. The gods quickly went to war with each other as did Wonder Woman and Captain Marvel before being teleported off the Mount. Wonder Woman reappeared on earth while Captain Marvel was sent across the galaxy.

    Circe used the God War to make her Hellfire Spell. A spell that would go round the earth and start to destroy it and the fabric of reality itself. The spell also called on the War Gods of various pantheons, each wanting to destroy the reality and remake it in their own image. Egyptian Gods attacked Dr. Fate in New York. The Babylonian god Kingu and the monster Tiamat fought against Aquaman and Power Girl in Atlantis. While Firestorm and Firehawk fought in Africa. Celae, a Thanagarian goddess took possession of Hawkwoman in Chicago and the Justice League battled the Norse Gods in Norway. And Phobos unleashed Quetzalcoatl against Superman, in a hope that the Man of Steel's attention would be taken off Circe and the conflict on New Olympus.

    With Eris, the goddess of Discord's help - Mars the Roman god of War attacked Ares in his own home, Areopagus. And in Central City, Hermes battled his Roman counterpart Mercury until Mercury disappeared. At the same time other mythological figures disappeared - Hercules, Atlas, Zeus and Achilles.

    Fearing the earth would be destroyed by the conflict, earths sorcerers brought Wonder Woman to them, hoping to use her spiritual bond with the earth goddess Gaea, and the terramorph powers of Geo-Force to wrap the earth in a protective spell. Circe had hoped for this, and was going to use her own magics to steal the collected sorcerers powers, and add it into the Hellfire Web. But the witch's former alley Konrad Kaslak, betrayed her, taking one of the relics from the alter, therefore preventing the witch from accessing the powers of the magicians. Gaea was saved and many of the war gods threw off Circe's cloud of deception and departed.

    Wonder Woman then located her missing mother with help from Batman and tracked her back to Egypt and the ruins of Bana-Mighdall. There she found her mother dressed in the armor of Shim'Tar, the Bana Queen. They clashed but Hippolyte was no match for her daughter in strength and was easily defeated and taken home.

    Meanwhile Black Adam and the Suicide Squad invaded Circe's tower as a distraction for the witch as earths sorcerers used Animal Mans powers to nullify the Bestiamorph spell. Transforming the were-creatures into harmless animals. The Squad destroying Circe's tower in the process. Circe, outraged by the disruption to her Holy War, took her anger out on the greatly weakened Hermes, in a fight in Limbo, where he had banished her before, Hermes lost and was killed by the witch. From there, Circe teleported to Themyscira and faced Diana directly. Goading Wonder Woman into anger by showing her Hermes still smoking skeleton. Diana didnt get very far though, as Circe unleashed a spell that began to transform Diana into the clay that she was born from, the clay they were standing on. Wonder Woman was no more! At the same time US fighter planes broke through the islands shields set to bomb it. Even as New Olympus appeared in Earths atmosphere.

    The Amazons, Earths heroes and Heracles stormed New Olympus to save all of creation. In the midst of battle, Circe destroyed Son of Vulcan and drained her one time ally, Eris. While Phobos retreated to parts unknown. Ares, God of War realised that the conflict was fueling Circe's magic and would only end with their destruction at each others hands. he and various other War Gods, asked for there to be an end to the war. While Superman intercepted the fighter planes and saved the Amazons home from being destroyed.

    Harbinger led a newly awakened Hippolyte to the beach to resurrect her daughter while the wizard Shazam wanted to repower Captain Marvel. Using the original spirits of the Shazam spell - safely out of Circe's reach in the bodies of the Metal Men. The spell was recast to give Billy Batson his powers back. While Wonder Woman was reborn in the newly sculpted clay body. Captain Marvel took the fight to Olympus, powered now by the powers of the Gods. The sorcerers of earth teleported Donna Troy and Circe herself into Limbo, where Wonder Woman was waiting for them. Circe, enraged that Diana was alive again, attacked by firing her mystic might at Diana. Her bolts were deflected by the talisman of Harmonia and absorbed into Donna Troys tunic, which was a portal to the original gods, The Titans of Myth. At this, Circe's body began to decay as the Goddess Hecate's soul deserted her and tried to possess Wonder Woman. But catching Hecate's soul in her lasso of truth, Diana bound the goddess as the Titans consumed her soul as Circe's body crmbled to dust.

    With the War of the Gods over, the Greek Olympians gave their Roman counterparts New Olympus while they decided to explore the universe. As they left they lifted the protection that surrounded Themyscira and for the first time in its history the island was visible to the world. The UN cleared the Amazons of Themyscira of any crimes, even as the Amazons mourned their dead.The city of Bana-Mighdall was covered over by the desert and Circe's own island of Aeaea disappeared into the sea.

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-34259/","id":34259,"name":"Is / Not Is","issue_number":"54"},"first_appeared_in_episode":null,"id":40780,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/91025-65479-war-of-the-gods.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/91025-65479-war-of-the-gods.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/91025-65479-war-of-the-gods.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/91025-65479-war-of-the-gods.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/91025-65479-war-of-the-gods.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/91025-65479-war-of-the-gods.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/91025-65479-war-of-the-gods.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/91025-65479-war-of-the-gods.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/91025-65479-war-of-the-gods.jpg","image_tags":"All Images,gallery"},"name":"War of the Gods","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/war-of-the-gods/4045-40780/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40781/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-08-19 15:29:47","deck":"Worlds collide as the DC Universe combines with the Milestone Universe. Heroes battle one another while their two universes hang in the balance.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39386/","id":39386,"name":"No Rest for the Weary","issue_number":"17"},"first_appeared_in_episode":null,"id":40781,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/4042771-worlds%20collide%20ad.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/4042771-worlds%20collide%20ad.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/4042771-worlds%20collide%20ad.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/4042771-worlds%20collide%20ad.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/4042771-worlds%20collide%20ad.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/4042771-worlds%20collide%20ad.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/4042771-worlds%20collide%20ad.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/4042771-worlds%20collide%20ad.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/4042771-worlds%20collide%20ad.jpg","image_tags":"All Images"},"name":"Worlds Collide","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/worlds-collide/4045-40781/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40782/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-03-16 15:21:58","deck":"The villain Monarch gains the power to manipulate time and becomes Extant. He and his mysterious boss try to recreate the universe by eating away at time itself. The heroes of the DC Universe, including alternate and past versions of themselves, must stop Extant and restart time.","description":"

    Plot Summary

    \"Waverider
    Waverider investigating the time rift in the 64th century

    After a confrontation with Waverider and Rip Hunter, the villain Monarch (Hank Hall) gains the ability to travel through time and becomes Extant. Being aided by a mysterious figure, Extant begins the systematic obliteration of time itself. Two temporal anomalies are created: one at the start of time, and one at the end of time, traveling backwards through the timestream destroying everything in their path. They will intersect once they reach the 20th century.

    Heroes and villains band together to fight this Crisis in Time. The Flash is the first hero to encounter the entropy wave, in the 64th century. He tries to run through time to warn the heroes of the 20th century, but only his costume appears in our time to warn the heroes of Earth. The Time Trapper, a villain of the Legion of Super-Heroes, aids his former arch-enemies to stop the decay of the 30th century, but to no avail. In the past, heroes like Dr. Mist and villains like Vandal Savage also try to stop the decay, and fail. The Justice Society of America makes an assault on Extant, only to have Atom, Dr. Mid-Nite and Hourman killed, along with most of the other members aged drastically. Extant is also revealed to be the secret creator of the Team Titans, and uses them as weapons against the other heroes.

    Superman enlists the aide of Green Lantern's power ring to send out a call to rally all of the heroes the ring can reach. As the timestream breaks apart, alternate versions of heroes appear: a Dick Grayson from when he was Robin; Barbara Gordon from when she was Batgirl; a pre-Crisis Superboy; and an alternate history hero named Alpha Centurion. The heroes deal with their alternate counterparts, while trying to stem the tide of chaos the time rifts are creating. While the heroes think Extant is behind the crisis, the true enemy is soon revealed: Hal Jordan. Under the guise of Parallax, Jordan wanted to recreate a universe where Coast City was never destroyed.

    \"The
    The heroes channeling energy through Waverider into Damage

    The time rifts converge at the 20th century, destroying all time. However, the Linear Men manage to pull a small group of heroes outside of time to the Vanishing Point, just as Parallax and Extant pull themselves outside of time. The heroes regroup, and launch an attack on Parallax in the void of nothingness. The heroes defeat Parallax, and manage to restart the universe, recreating the Big Bang by using Damage as a catalyst. However, this new restarted universe varies slightly from the old one, with some discontinuities eliminated and retcons introduced in the Crisis on Infinite Earths cleaned up.

    Creation

    Background

    Zero Hour: Crisis in Time was a crossover event that thematically followed DC Comics’ 1985 crossover event Crisis on Infinite Earths. During the Crisis on Infinite Earths, the DC multiverse was condensed down to a single universe, which necessitated a revamping of the origins of many of its superheroes. Creative teams were engaged to revamp, or “retcon” superheroes to make their origins much simpler and to appeal to a newer audience.

    After the Crisis on Infinite Earths, there were major revamps to the histories of characters like Superman, Wonder Woman and Hawkman. However, each of these relaunches happened in varying times after the Crisis; Superman’s revamp in 1986, Wonder Woman’s in 1987, and Hawkman’s in 1989, for example. Because of these revamps, and their delays in taking effect, DC Comics’ continuity became muddled; for instance, Superman was said to never have been Superboy, which affected the history of the Legion of Super-Heroes. The retcons caused havoc in the characters’ timelines.

    DC sought to rectify this by creating a new event called Zero Hour, which would relaunch all of the heroes from the same point in time. They would use this event to make some changes (minor for the most part) to characters’ backstories, to allow for previous inconsistencies. From a marketing point-of-view, they also used this event to cancel lower-selling books, while launching new books with new origins for characters. Titles that were canceled include Justice League International, L.E.G.I.O.N., Team Titans and Valor.

    Zero Hour

    \"Sample
    Sample Zero Hour \"wipeout\" from issue #1

    The Zero Hour event took place in a five-issue miniseries (numbered in descending order from 4 to 0), and with 27 crossover books. Showcase ’94 #8-9 served as a backstory to the event, highlighting Extant’s creation. Then Zero Hour : Crisis in Time #4-0 highlights the major story arc, including Hal Jordan’s first appearance since the Emerald Twilight story arc in Green Lantern. Zero Hour: Crisis in Time #0 also featured a pullout three-page timeline of the “new” DC universe.

    Each of the Zero Hour crossover books follow the same format: some event tied to the Zero Hour cross-over would happen, with the “time rift” causing the world to be wiped out. This “wipe out” was represented by pages fading to blank, and blank pages filling out the book until the back cover, with the Zero Hour logo usually appearing ion the last page. To accommodate this design, DC placed the traditional letter column earlier in the issue.

    Zero Month

    With the release of Zero Hour #0, the universe was said to begin anew. Each comic was released as a number zero, and the event was referred to as Zero Month. These comics either served as a retelling of the retconned origin of the major character or team ( Superman, Batman, Wonder Woman), as a change of direction for the character or team ( Green Arrow, Justice League Task Force, New Titans), or as a way to launch a new series altogether. The new series launched during Zero Month include Fate, Gunfire, Manhunter, Primal Force, R.E.B.E.L.S, Starman and Xenobrood.

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-389991/","id":389991,"name":"A Comprehensive Look at DC Comics","issue_number":"1"},"first_appeared_in_episode":null,"id":40782,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96295-156461-zero-hour.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96295-156461-zero-hour.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96295-156461-zero-hour.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96295-156461-zero-hour.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96295-156461-zero-hour.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96295-156461-zero-hour.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96295-156461-zero-hour.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96295-156461-zero-hour.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96295-156461-zero-hour.jpg","image_tags":"All Images,Zero Hour"},"name":"Zero Hour","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/zero-hour/4045-40782/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40798/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2015-08-15 15:52:35","deck":"The Infinite Crisis has ended; the world mourns the passing of Superboy. But where are Superman, Batman, and Wonder Woman?","description":"

    Follow this link to the comic maxi-series list of covers and issues '52.'

    This event is the filler-in of the missing year when the One Year Later event took place. It often brings up the number 52 within its stories in every imaginable circumstance, concluding with their being 52 Universes.

    *INFORMATION ON UPCOMING EVENTS:

    Week 50 of 52 is planned to cover the events of World War III.

    The four tie-ins that DC plans to release the same week, hopes to clarify the mysteries of what transpired between the Infinite Crisis and the \"One Year Later\" series.

    3.The DC Nation column in Week 37 reveals in a coded message that states: \"the secret of fifty-two is that the multiverse still exists\". The message is spelled out using the first letter of every third word.

    Collected Editions

    Related Items

    Novelization

    \"No
    The epic follow-up to Infinite Crisis-starring the superheroes of the DC Comics universe.
    Earth's greatest protectors-Superman, Batman, and Wonder Woman-have vanished. The cities of Metropolis and Gotham are overrun with criminal activity both on the streets and behind the closed doors of powerful corporations as villains take advantage of the absence of superheroes.
    In their place stand the veteran and rookie heroes they inspired. From popular media personality Booster Gold and the enigmatic Question to the mysterious vigilante Batwoman and the secretive Supernova, these heroes are the only ones who can turn the tide against a vast conspiracy of evil determined to take control of the planet.
    This is the story of one year without the world's greatest superheroes. Twelve months. 365 days. 52 weeks.
    • Written By: Greg Cox
    • Publisher: Ace Trade (July, 2007)
    • ISBN-10: 0441015077
    • ISBN-13: 978-0441015078
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105733/","id":105733,"name":"Golden Lads & Lasses Must...","issue_number":"1"},"first_appeared_in_episode":null,"id":40798,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/54/81243-67659-52.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/54/81243-67659-52.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/54/81243-67659-52.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/54/81243-67659-52.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/54/81243-67659-52.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/54/81243-67659-52.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/54/81243-67659-52.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/54/81243-67659-52.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/54/81243-67659-52.jpg","image_tags":"52,All Images"},"name":"52","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/52/4045-40798/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40799/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2019-07-04 06:00:42","deck":"Maxwell Lord, now Black King of Checkmate, hijacked control over Batman's satellite, the Brother Eye. He then proceeded to use the OMAC nanobot sleeper agents across the globe under the control of the satellite in an attempt to erradicate all Metahumans on Earth.","description":"

    Plot Summary

    Ted Kord, the Blue Beetle, dies investigating a conspiracy that leads him to discovering Max Lord is the Black King of Checkmate and actively conspiring against the metahuman community using a spy satellite called Brother EYE. After killing Ted, Max continues to work his agenda against metahumans using his OMACs, normal people who could unknowingly be transformed into powerful soldiers via nanotechnology.

    Sasha Bordeaux, Max's Black Knight, loses what trust she had in him after Ted's death and passes information to Batman, who is the actual creator of Brother EYE. Batman quickly comes to realize he has completely lost control of the satellite while Sasha realizes how far Max is willing to go when he assassinates the other Royals of Checkmate to take complete control. He imprisons Sasha Bordeaux for her betrayal along with Jessica Midnight, the former Black Queen's Knight, and steps up his plans early due to Batman getting too close.

    \"The
    The Snap Heard Around the World

    Max reveals that he has spent time quietly intruding upon Superman's mind and now has the ability to control Superman. He uses Superman to brutally attack Batman and then Wonder Woman, only for Wonder Woman to snap his neck in order to free Superman. Though Max dies, Brother EYE continues on now as its own master and begins unleashing OMACs in force.

    News of Ted's death spreads, provoking the surviving members of the old Justice League International team to reunite and investigate how and why he died. Booster Gold, Fire and Guy Gardner soon find Martian Manhunter and Rocket Red in battle with OMACs. Rocket Red sacrifices his life defeating them.

    Sasha finds herself transformed into an unique kind of OMAC and retains her free will. She takes control of Checkmate's resources and together with Batman, coordinates a two-pronged counterattack on the OMACs that eliminates the majority of Brother EYE's OMAC army. However, Brother EYE still manages to retain around two hundred thousand OMACs.

    As planned by Batman, a team of superheroes locate and destroy Brother EYE. However, its remains fall to Earth and are salvageable, which could include Max's detailed intelligence on the identities and weaknesses of Earth's superheroes. Organizations all over the world converge on it, including what's left of Checkmate now controlled by Amanda Waller. Sasha heads them all off at the requested of Batman, accessing Brother EYE's remains and causing it to self-destruct. This results in her shedding most of her OMAC skin and leaves her only partially transformed.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107912/","id":107912,"name":null,"issue_number":"1"},"first_appeared_in_episode":null,"id":40799,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/54/81245-181088-the-omac-project.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/54/81245-181088-the-omac-project.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/54/81245-181088-the-omac-project.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/54/81245-181088-the-omac-project.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/54/81245-181088-the-omac-project.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/54/81245-181088-the-omac-project.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/54/81245-181088-the-omac-project.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/54/81245-181088-the-omac-project.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/54/81245-181088-the-omac-project.jpg","image_tags":"All Images,OMAC Project"},"name":"The OMAC Project","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/the-omac-project/4045-40799/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40800/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-03-01 13:32:33","deck":"The Blue Beetle, Ted Kord, has discovered something that has endangered his life, and the lives of others. Maxwell Lord has betrayed his former superhero colleagues, and plans to destroy them all.","description":"

    Collected Editions

    Related Issues

    Non-U.S. Editions

    Novelization

    \"No
    Cosmic legend has it that when the primordial gods of antiquity perished in some bygone cataclysm, the universe gave birth to a new breed of gods who reigned from two eternally warring worlds, the heavenly New Genesis and the hellish Apokolips. Now, a vast conspiracy of evil is determined to eradicate the New Gods, stealing their souls to wield universal power that can destroy all of reality.
    At the end of an age in which time, space, and reality may bow before such sinister forces, the fate of the Earth lies in the hands of five unlikely super heroes who have one destiny to fulfill: to save the world at all costs, regardless of the consequences.
    Written By: Greg Cox
    Publisher: Ace Trade (July, 2009)
    ISBN-10: 0441017185
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107912/","id":107912,"name":null,"issue_number":"1"},"first_appeared_in_episode":null,"id":40800,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/54/81244-99319-countdown-to-infinit.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/54/81244-99319-countdown-to-infinit.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/54/81244-99319-countdown-to-infinit.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/54/81244-99319-countdown-to-infinit.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/54/81244-99319-countdown-to-infinit.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/54/81244-99319-countdown-to-infinit.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/54/81244-99319-countdown-to-infinit.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/54/81244-99319-countdown-to-infinit.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/54/81244-99319-countdown-to-infinit.jpg","image_tags":"All Images,Countdown to Infinite Crisis"},"name":"Countdown to Infinite Crisis","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/countdown-to-infinite-crisis/4045-40800/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40833/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-05-14 23:43:32","deck":null,"description":"

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-31621/","id":31621,"name":"Master of Dreams, Part 9: Tales in the Sand","issue_number":"9"},"first_appeared_in_episode":null,"id":40833,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/89804-195095-the-dolls-house.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/89804-195095-the-dolls-house.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/89804-195095-the-dolls-house.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/89804-195095-the-dolls-house.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/89804-195095-the-dolls-house.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/89804-195095-the-dolls-house.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/89804-195095-the-dolls-house.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/89804-195095-the-dolls-house.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/89804-195095-the-dolls-house.jpg","image_tags":"All Images,gallery"},"name":"The Doll's House","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/the-dolls-house/4045-40833/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40834/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-01-21 09:35:23","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33499/","id":33499,"name":"Season of Mists: Prologue","issue_number":"21"},"first_appeared_in_episode":null,"id":40834,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/26595/628995-season5.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/26595/628995-season5.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/26595/628995-season5.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/26595/628995-season5.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/26595/628995-season5.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/26595/628995-season5.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/26595/628995-season5.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/26595/628995-season5.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/26595/628995-season5.jpg","image_tags":"All Images"},"name":"Season of Mists","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/season-of-mists/4045-40834/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40835/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-06-19 19:55:51","deck":"A Sandman Story Arc","description":"

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109862/","id":109862,"name":"A Game of You, Part 1: Slaughter on Fifth Avenue","issue_number":"32"},"first_appeared_in_episode":null,"id":40835,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2864498-sandman_a_game_of_you_ad_1993.jpg","image_tags":"All Images"},"name":"A Game Of You","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/a-game-of-you/4045-40835/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40836/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-01-21 12:03:24","deck":"Brief Lives is the second-longest arc in Neil Gaiman's Sandman epic (at the time it was the longest). Spanning nine issues, it makes up the entirety of what would become the seventh collection in the series. It was in the middle of serializing this arc that Sandman moved to Vertigo.","description":"

    Brief Lives was a significant step in the series at the time, for one thing it was the first time readers saw the remaining sibling in The Endless family, Destruction. All the other six had made their first appearance at least two years prior. This arc was pivotal in defining Dream's family and took away a lot of the earlier mysteries about them. Some of his siblings had jumped in and out of his life throughout previous arcs and they had gathered for a brief meeting at the beginning of Season of Mists, but this saw more development for most of them then they had up until that point and better showed the interpersonal relationships between them.

    More specifically, Brief Lives was the arc that established an identity for the youngest member of the family, Delirium, who would become the second most significant of Dream's brothers and sisters after Death.

    In this arc, Dream was forced to become more involved with his family he had previously tried to shun and he found himself putting aside his own personal drama as an act of kindness towards his sister which ended in him doing things he had never intended, developing his character into that of a much more selfless being. The consequences of these actions would have a huge impact on his personal journey and the series as a whole.

    Thus, Brief Lives became the turning point in the series, beginning the journey to the already inevitable end of Dream's death.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36126/","id":36126,"name":"Brief Lives 1: Blossom for a Lady - Rain in the Doorway - Not Her Sister-Want/Not Want - The View from the Backs of Mirrors - Journal of the Plague Year - The Number You Have Dialed...","issue_number":"41"},"first_appeared_in_episode":null,"id":40836,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/26595/628999-brief.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/26595/628999-brief.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/26595/628999-brief.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/26595/628999-brief.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/26595/628999-brief.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/26595/628999-brief.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/26595/628999-brief.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/26595/628999-brief.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/26595/628999-brief.jpg","image_tags":"All Images"},"name":"Brief Lives","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/brief-lives/4045-40836/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40837/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-01-27 09:47:20","deck":"How do you kill one of the Endless?","description":"

    By the end of this arc we find the answer to this impossible question.

    Some of our protagonists are motivated by spite, some by revenge and some by divine mischief.

    Lyta Hall blames Dream for the disappearance of her child, Daniel. Driven mad she seeks revenge from the Furies, the Erinyes, the Eumenides also known with classical irony as the Kindly Ones.

    Lyta calls upon the Kindly Ones to avenge the death of her son, but they end up avenging the only death they can - the murder of a person by his own blood.

    Simultaneously the saddest and the most inevitable of The Sandman story arcs. It seems Morpheus has ever been unable to forgive himself for his haughty behaviour whether towards his former lovers or his son.

    In the end he accepts his fate as he expects all those that enter his realm to do. Morpheus dies, but the Dream lives on.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-38608/","id":38608,"name":"The Kindly Ones, Part 1","issue_number":"57"},"first_appeared_in_episode":null,"id":40837,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/90796-47210-the-kindly-ones.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/90796-47210-the-kindly-ones.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/90796-47210-the-kindly-ones.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/90796-47210-the-kindly-ones.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/90796-47210-the-kindly-ones.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/90796-47210-the-kindly-ones.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/90796-47210-the-kindly-ones.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/90796-47210-the-kindly-ones.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/90796-47210-the-kindly-ones.jpg","image_tags":"All Images,gallery"},"name":"The Kindly Ones","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/the-kindly-ones/4045-40837/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40838/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-01-27 09:57:03","deck":null,"description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-41225/","id":41225,"name":"The Wake, Chapter 1: Which Occurs in the Wake of What Has Gone Before","issue_number":"70"},"first_appeared_in_episode":null,"id":40838,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/26595/628983-wake.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/26595/628983-wake.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/26595/628983-wake.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/26595/628983-wake.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/26595/628983-wake.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/26595/628983-wake.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/26595/628983-wake.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/26595/628983-wake.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/26595/628983-wake.jpg","image_tags":"All Images"},"name":"The Wake","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/the-wake/4045-40838/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40875/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-10-18 14:28:53","deck":"Batman faces a new enemy who knows his secret identity and is out to destroy both Bruce Wayne and Batman.","description":"

    Plot Summary

    A mutated Killer Croc holds the young heir of a wealthy family for a ten million dollar ransom which he plans to use to fix his mutation. Batman arrives on the scene, defeats Croc and saves the child. During the fight, Catwoman snuck in and stole the ransom money. As Batman chases after her high above the rooftops of Gotham, his bat-rope is mysteriously cut and he fall right in the middle of Crime Alley, fracturing his skull. He is saved by Huntress and Oracle who brings him back to the Bat-Cave using the Batmobile. With Alfred unable to help him, a barely conscious Batman signals to his butler with Morse code the name \"Thomas Elliot\", a famous surgeon and a childhood friend of Bruce Wayne. Dr. Elliot manages to save Bruce's life.

    Killer Cros escapes from jail and goes after Catwoman who reveals that she was being mind-controlled by Poison Ivy when she stole the money, but Croc doesn't care and tries to kill her only to be stopped and defeated by Batman again. Catwoman thanks Batman with a passionate kiss causing Batman to start to develop feelings for her. She also reveals that Ivy is in Metropolis. There, the two track her down only to be confronted by her latest mind-controlled victim, Superman. Using a kryptonite ring, underground tunnels and his own wits, Batman manages to hold off Superman's long enough to break Ivy's control over him. After that, they manages to finally take down Poison Ivy.

    Later on, Bruce Wayne is invited to the Opera House by his friend Tommy Elliot along with Selina Kyle and Leslie Thompkins. Harley Quinn then crashes the show and attempts a robbery. As Batman chases after here, he is horrified at the site of Joker standing over the dead body of Tommy. Enraged, Batman quickly takes down Harley and then proceeds to savagely beat Joker almost to death until he is stopped by Jim Gordon. Later on, after stopping a robbery by Riddler, Batman finds traces of the Lazarus Pit in the crime scene and so tracks down Ra's Al Ghul to Africa where, after defeating the villain, learns that someone has been using Ra's' Lazarus Pit.

    Following Nightwing's advice, Batman finally gives in to his feelings for Catwoman and reveals his identity to her. Later on, Scarecrow is on the loose in a cemetery, and after Batman takes him down, a man with a bandaged face appears, holding Robin hostage and reveals himself to be Jason Todd, the Robin who dies many years ago. As Batman gives chases, he finally realizes that it's actually Clayface in disguise.

    Part 1: The Ransom

    Batman breaks into a building in a shipping yard. He knocks out several miscellaneous people (a Gotham city wrestler, an FBI agent, a military veteran). We see in the captions that Batman is out to rescue a kidnapped boy who is the son of a major Industrialist and a close friend of Lex Luthor. Batman rescues the boy but Killer Croc (the kidnapper) attacks him. Batman and Croc fight. Batman says that this is too smart for someone like Croc, that's why he had to get involved but he would have anyway. Batman and Killer Croc fight and Batman wins and chains up Croc. Several FBI field operatives swarm the place. They take the boy with them but the ransom money is missing since it was with Croc a while a ago. Batman activates the Heat sensors in his mask and sees Catwoman swing away with the ransom money. Batman chases her and Batman acknowledges there is something strange about this even for Catwoman to just come and steal the ransom money. He chases her and just when he was about to catch her something cuts the bat line and Batman falls. He grabs a gargoyle but slips and crashes to the ground in crime alley. Catwoman meanwhile goes and delivers the ransom money to Poison Ivy.

    A street gang surrounds Batman, one of them tries to take off his mask but it releases a pepper spray. Another one tries to hit Batman with a metal pipe but the batsuit electrifies him. Oracle meanwhile finds out Batman is down and calls for help. A gang member was about to shoot Batman in the head. Huntress then arrives on her bike and kicks the would-be shooter. She takes on the gang. Batman, unconscious is able to hear Huntress fight and compliments her in his head that she is just like he was in his first year. Oracle sends the Batmobile by remote control and Huntress puts him in it. Poison Ivy arrives in a dark street, a voice in the dark ask if it is his half. She says yes and hands it over to him. A while later, Bruce is able to hear Alfred. Bruce's injuries are too big even for him to operate on. Bruce's skull is fractures and has many other injuries. Bruce begins to tap morse code of the operating table, Alfred hears it as Dr. Tommy Elliot a childhood friend of Bruce. Bruce is taken to a hospital and Dick wreaks the Wayne car to fake a car accident. Tommy Elliot arrives from Philpedia, now a world renown surgeon. He operates on Bruce with several other surgeons, Bruce has a brief flash back of both of them playing antique war games, Bruce loses because he can't think like the enemy. Bruce recovers from the head injury and will leave the hospital soon. Later a shadowy figure is reading an article on the accident written by Lois Lane. He crushes the paper and cuts through the Wayne's picture with a sharp object. He declares war so \"That we may live in peace\".

    Part Two: Beast

    Batman, now recovered, visits Killer Croc in Arkham Asylum. Killer Croc shouts to Batman saying the money was his. Batman ignores him and speaks to the guards. Killer Croc gets mad and shatters the shatterproof glass. He attacks the guards and Batman attacks him only to get a choke hold on his neck. Croc throws him at the guards and escapes through the drainage. Amanda Waller was watching this, she tells Batman he has until midnight to find and interrogate Croc after that the FBI will recapture him and he becomes a federal criminal since Croc had kidnapped the son of a close friend of President Lex Luthor. Batman goes after Croc, Batman was counting on his escape since he had jammed a tracking device on him, he was hoping that it will lead to the person who orchestrated the kidnapping. Meanwhile, Tommy Elliot visits the Wayne Manor. He talks to Alfred and leaves when he finds Bruce gone. Before he leaves he says that Bruce is playing a dangerous game, going out about. Batman has a flashback of a similar night, Tommy comes to visit him during a storm his parents just had a car crash and were near death. Bruce promises to Tommy that his father will save them. Thomas comes out and says Tommy's mother survived but his father had died. Tommy gets angry and punches Bruce, Thomas comforts Tommy and tells Bruce to be quiet despite the fact that Bruce was bleeding. Back in the real world Batman is still on the trail of Croc. Something blows out one of the tires of the Batmobile. The car loses control and crashes into a wall. Batman escapes with no injuries. Killer Croc arrives at a Greenhouse to find Catwoman. Croc believes she has his money and Ivy passed the word to her in Arkham. Catwoman denies of having the money and that Ivy was supposed to meet her there. Croc almost eats Catwoman but Batman ties Croc's jaws with a bat bola, connects it to the grapnel hook and shoots it outside taking Croc with it.

    Batman begins to talk to Croc who says he needed the money to fix himself to, become human again, but before he could go further the FBI arrives and catches Croc. A figure perched on a roof top quotes \"All men by nature desires knowledge\". Batman turns around to see no one there. A few nights later, Batman meets with Catwoman. She says that she's found Poison Ivy and that she is in Metropolis. Catwoman and Batman have a moment and she kisses for saving her life. After a moment they separate Batman gives her a tracking device. If she finds Ivy first she has to alert him with that. Catwoman then takes off into the night.

    Part Three: Metropolis

    Bruce Wayne goes to Metropolis he remembers a long time ago, when he was a kid, he wanted to come to Metropolis. He has brief flashbacks of him kissing Catwoman. He walks around the airport and several women seem to admire him. Tommy Elliot is there and he calls Bruce. They meet up and talk friend to friend. They talk about the first time they visited Metropolis. Thomas Wayne took them there once Tommy came along when Martha Wayne suggested Bruce could bring a friend. While Bruce and Tommy were waiting for Thomas to come out of the Metropolis hospital, they see Green Lantern ( Alan Scott) fly over them. They both follow him and sees him fighting with Icicle. Tommy gets excited about the battle and wants to follow them, but Bruce suggested they go back. Thomas finds out that both of them had wandered off and the two had to stay at a hotel room the entire time they were in Metropolis. Bruce and Tommy are talking about this in the Limo, Tommy mentions Bruce hadn't given himself enough time to heal, (\"You're not Superman, you know\"). Tommy also mentions that he had to take a bone chip out of Bruce's skull while operating in him. They arrive at the Daily Planet (\"It's always nice to see Lois\" Bruce thinking) and Tommy departs for a little walk.

    Bruce enters the Daily Planet and brings a bunch of roses to Lois. Clark and Lois were working on a story and Lois pretends to flirt with Bruce. Bruce asks whether he could use Lois's computer. He establishes a link with Oracle, about a plant called Aztec Gilia according to Oracle it requires ethylene which Lex Corp has bio engineered to withstand temperature changes. Lois secretly read some of that and Perry arrives and talks with Bruce, they both go on away from the newsroom. As for Lois (\"So much for flirting with the billionaire playboy to find out what he is really doing here, hope I didn't make you too jealous, Mr Kent\"). Clark says that there is another way to find out what Bruce is really doing here, he then pulls on his collar. That night, Batman breaks into Lex Corp tower, now that Lex is the President of the U.S.A, Talia Head is in control of the company. They both talk and Talia (\"There is something different about you.\"). Batman asks her whether anyone in the city had obtained large doses of ethylene. She agrees to give him the information he needs and Batman gets a signal Catwoman had found Poison Ivy.

    Batman and Catwoman meet on an elevated train. Catwoman explains to Batman that she wants to get her revenge on Poison Ivy. She had taken control over her Catwoman's mind and now that she is out of it she wants to make her pay for violating her like that. She then tells Batman that he has to wait his turn when they confront Poison Ivy. At the docks, Poison Ivy is tending her plants, Catwoman comes in still pretending to be under her control but (Poison Ivy: *yesss, ;but I can always tell when someone is pretending!) She slaps Catwoman but she fights back, and cuts a shallow cut on her neck when one of Poison Ivy's vines attacks her, a flying batarang cuts through the vine killing it. Poison Ivy smiles and says she's got her own champion, the building begins to shake (..no, not here), two hands begins to lift the entire building(\"not now..:\") and turns it over and it falls into the water. (Not HIM) Batman gets up from the rubble, Catwoman is unconscious and Superman stands in front of Batman with Poison Ivy in his arms. He warns Batman: If you come near her, you are going to have to go through me.

    Part 4:Batman vs Superman

    Catwoman wakes up from the rubble then Poison Ivy orders Superman (under her control) to kill them both. Superman uses his heat vision, Batman grabs Catwoman and ducks. The heat vision cuts through Batman's cape and Batman (still holding on to Catwoman) jumps into the water with her. He gives her a breathing mask and Batman presses a button in his belt and jet propellers propel them through the water. Poison Ivy looks down at her plants, all of them were dead. She tells Superman that he killed them and they were like children to her, (*I'm sorry) she smiles and tells Superman that there's one more thing she likes for him to do, she kisses him again to bring him to her control. Batman and Catwoman enter a tunnel accessed through the water and Oracle guides them through the maze. Batman explains that Superman will be back and plants several devices on the wall, and takes out a green kryptonite ring (You don't come to Metropolis, not expecting to meet him). Catwoman agrees to Batman's plan and kisses, she says next time he may not be able to do that. The walls suddenly begin to shake and Catwoman leaves. Superman bursts through the wall and Batman throws the first punch. They both fight and Batman activates a button in his belt and a hypersonic sound wave disrupts Superman's super hearing and gave him a massive headache. Superman fights back freezing Batman's hand . Batman activates the devices only the wall, a blinding light fills the tunnel. As Superman recovers (Clark! I've activated a gas leak, if you used your heat vision you will take out the entire block, and you know what building we are under!) Batman shoots his grapnel, Superman throws another punch but Batman swings away saying he lied about the gas main and Superman ends up hitting a power line. After Batman comes to the surface and melts away the ice on his hand, Superman comes out of the hole, angry, and picks up a truck to crush Batman (Look up, you can either save her or fight me) Superman looks up and sees Catwoman forcefully, taking Lois on a flag pole and she hits Catwoman on the stomach and falls. (C'mon Clark be the boyscout...please*). Superman super speeds into the air and catches Lois, breaking Poison Ivy's spell. (No offense Clark, but you look like hell. Lois). Superman lands on the roof top and so does Batman. He explains about the Poison Ivy's mind control and that her lipstick was laced with kryptonite for her spell to work, Clark knew what he was doing but couldn't control it. They talk about how to catch Poison Ivy and Batman picks up a leaf on Superman and points it to his face and Superman knew what he meant. A while later Poison Ivy is in a rich hotel room with her cash when Batman (it's over Poison Ivy) and she turns to the other side to see Superman now out of her spell, she runs to the door and opens it, only to face Krypto: the Superdog (All the detective work in the world can't beat a Superdog with super smell). Poison Ivy turns around to see Catwoman (Hello, Ivy) and she punches her lights out (Bye, Ivy). The sun begins to rise on Metropolis, Catwoman is with Krypto and Batman is on a gargoyle speaking with Superman. Clark says that Bruce could have hurt Lois, Batman answers that he knew Superman would react as he did.

    Superman: But still, you might have hurt Lois

    Batman: No, I believed in you.

    Superman: All the good work including the JLA.

    Batman: Meaning?

    Superman: (smiles) Always the detective?

    Batman: Ever the boy scout

    Superman: (shakes hand) Thanks now more than ever, I know I gave the ring to the right person.

    Batman: What are friends for?

    A bandaged figure on a distant roof with binoculars: \"What are friends for?\" Ha Ha Ha

    Part 5: Opera

    Bruce Wayne is back in Gotham and Alfred straightens Bruce's bow tie. He is attending an opera which he doesn't like. Selina Kyle is there too and so is Tommy Elliot and Dr. Leslie Thompkins. They enter the balcony and Tommy helps Leslie to the chair. The show begins and a figure in robes was banging a drum. Bruce and Selina became a bit suspicious then the figure bursts out of the robes and was really Harley Quinn. A gang of masked men come out with guns. Harley leaps acrobatically to the balcony and grabs a necklace Tommy is wearing she then shoots them and jumps away. Tommy goes after Harley, Bruce is missing and Leslie asks what Selina is keeping in her purse since it looks heavy. Tommy has a flashback of both childhood him and Bruce playing Bruce sees the necklace and jokes to dip it in water. Tommy explains that it is mother's necklace. Batman comes in uses a smoke grenade, mace and razor sharp batarangs to stop them. He goes after Quinn, then Catwoman swings in and kicks Harley. They both fight and Catwoman gets seriously injured and falls of the stage prop. Batman catches her on stage and the spectators clap thinking that its all part of the show. Leslie comes on stage with a medical bag telling Batman that she will help her while he goes after Harley. Tommy is still running after Harley but she has already dropped the bag with the necklace. Batman runs after them and finds that they are out of the Opera house. Batman runs through the rain and into an alley way and comes across (No) Tommy's corpse shot dead and the Joker near it with a....gun.

    Batman goes mad and contemplates on killing the Joker this time. He begins to strangle the Joker and meanwhile on the roof a bandaged figure is watching this. The police force arrives at the Opera house with Jim Gordon. He gets a call from the bandaged man telling him to come to the back. Gordon does so and sees Batman strangling him. Gordon stops Batman from doing it and allows the Joker to be sent to Arkham Asylum. Batman deals with Tommy's death and at his funeral Dick asks whether he should reveal his identity to Selina. At Arkham the bandaged figure come in and tears it off revealing it to be a bald Harvey Dent with no scars. He has the Joker released because he believes him to be innocent. At the Batcave, Alfred is tending some of Bruce's injuries and Catwoman is there and she asks about them. She sees a particular one on his chest where their is scratches. Batman (you don't remember?) it was the one she gave to him during their earlier encounters. He then reveals his identity to her.

    *[I haven't read the issue where the events in paragraph 2 takes place, most of them

    are important events mentioned on the internet.]

    Part 6: The Assassins

    It's a dark night over the skies of Metropolis. Lexcorp 1 is making a routine flight out of Metropolis. The Batplane is flying behind it. (Oracle, I'm in position), Batman presses a button and a device comes out and shoots a cable at Lexcorp 1. (Even for you, this is crazy, you got civilians in there Batman) Batman does not listen to her and swings down the rope. Batman thinks about his talk with Lucius about the design in the Lexcorp 1 and how it's similar to the Wayne Tech aircrafts. Batman places a gadgets near the hull and the cabin door opens. The plane begins to de-pressurize and Oracle jams their distress call. The guards confronts Batman who beats them easily. Batman had only seconds left before the cabin door re seals (by then I will have came for.) Talia. She was on the plane and Batman takes her out of the plane and jumps. Batman releases his parachute and Talia asks why he is doing this (Ask your father.). They parachute down into the bat boat. Batman believes it's Ras Al Ghul who is responsible for all that is happening. He has kidnapped Talia to get his attention. Some after midnight, Pete Ross runs into President Lex Luther's office explaining there's been a kidnapping and hijacking on Lexcorp 1. Pete explains that it was Batman and asks whether he wants to take action. Lex smiles and says (Not...yet). Batman returns to the Bat cave leaving Talia elsewhere. He comes in to find a sword embedded on the computer console. Batman picks up the sword and (\"If he accompanied by any of his League of Assassins..then\") Batman screams Alfred he runs up the stair case and out of the cave. To his relief Alfred was safe, they have a conversation and Alfred suggests that Ra's Al Ghul might want to draw Batman to his homeland and leave something or someone unprotected. Somewhere in Gotham, Catwoman is holding Talia hostage. Talia says she knows about Catwoman and Batman and she can never have him. Catwoman replies she's gone through life without having to have someone. Catwoman was thinking about gagging Talia when Lady Shiva comes in through the window. Catwoman jumps at her only to be kicked back. In North Africa, Ra's Al Ghul is sitting in a desert with a sword. Batman comes there and Ra's claims that he is not responsible for Batman's misfortunes. (You have means opportunity and knowledge only a few possess about my personal life.) Ra's then makes a deal with Batman, if Batman is able to defeat Ra's then he will help him solve his problems however if Ra's wins, Talia is to be released and Batman will be executed. Batman attacks Ra's first and Batman remembers the small pewter war games he used to play with Tommy. Ra's then tells Batman to show his true self. In Gotham City, Jim Gordon is asleep when a noise seems to bother him, suddenly he takes out his gun and (Hands in the air you think you can break into my home...) sees Harvey Dent with plastic surgery. Gordon says it will take more than plastic surgery to make him believe Harvey's changed sides.

    Harvey: Is that it, Jimbo? No second chances?

    Gordon: In your case you've gotten seconds, third and fourth chances and you burned them all.

    Harvey: Okay, I deserved that but I didn't come here tonight for me. It's Bats and he needs our help more than ever.

    Gordon: I heard about the stunt you pulled at Arkham getting the Joker released posing as his attorney.

    Harvey: I had my license reinstated by the state. The Joker was innocent, you know that. The phone call that told you to go there, tell me you didn't recognize my voice?

    Gordon: What the hell do you want?

    Harvey: The gun that killed Tommy Elliot. When it's found it will be traced back to you. It's your service revolver. The one you turned in when you retired. It's all part of a game. The question is how long do you want to play?

    Catwoman and Lady Shiva continue their fight and Shiva matches her move for move and shatters the lenses on Catwoman's mask. She suffers serious injuries and Shiva kicks her into a pile of boxes. Catwoman laid near death and Shiva was about to kill her when, Talia hits her in the head with a chair. Shiva falls unconscious and Talia uses Shiva's grapnel to get out of there. Meanwhile Ra's slashes Batman's arm with with his sword. Ra's says the people who manipulated Batman this way should be commended and once again calls it a game. Batman in a fit of rage declares (This.Is. Not.A.) and slashes Ra's forehead (Game!). Batman stabs Ra's in the side and Ra's falls down defeated. The League of Assassins rises from the sand with guns pointed at Batman, Batman offers Ra's the chance to get to Lazurus Pit then waste time watching Batman fight his Assassins.Without any other option,Ra's agrees and tells Batman that a Lazarus Pit has been tempered with and asks Batman to ask him self \"who do you want, back from the dead?\". Batman returns to Catwoman's apartment to find her seriously wounded but her life is saved thanks to Talia who had returned moments after she left. Talia tells Batman that she has given Catwoman herbs that will heal her wounds and with that she kisses Batman and leaves.

    Part 7: The Grave

    Back at the Batcave, Alfred is tending to Batman's wounds while Catwoman is shocked and amazed at how many scars and wounds Bruce has. Catwoman then asks Batman about a mark on his chest in which he recalls that Catwoman made it awhile back when she was still in her old costume. After Alfred is done,Catwoman kisses Batman and tells him that \"its to make it all better\". As Batman walks away after,Catwoman turns to Alfred and asks why does he keep doing it. Alfred then says that it is difficult to say and proceeds to tell Catwoman that her presence here has helped him a lot and although Batman may not say it, thinks the world of her. Catwoman then joins Batman as he fixes his computer system. Batman asks Catwoman whats different when all this started,Catwoman says \"us\" but before they continue they are interrupted by Robin who engages Catwoman in a fight telling her that she doesn't belong here. Batman stops the fight and reveals to Robin that he brought her here and that she knows Batman is Bruce Wayne. Catwoman then leaves the cave as she does not want to trip any of Batman's strings/connections. She then takes one of the motorcycles and leaves out of the cave. After she is gone, it is revealed that the fight was staged and that Robin had already known about Batman's decision and the fight was done to see if he could truly trust Catwoman. As Catwoman arrives in Gotham, she meets Huntress who quickly engages in a battle with her seeing Catwoman as her Helena Wayne counterpart. Batman and Robin watch the fight from afar and Batman leaves Robin to assist Catwoman. As Batman leaves, Robin is knocked out from behind. Batman throws Catwoman an injection needle to sedate Huntress who upon being injected is unconscious. Batman and Catwoman are then attacked by The Scarecrow who rides on Huntress motorcycle. Batman leaps on top of it and The Scarecrow crashes into a grave yard. Batman then beats Scarecrow who is shocked that his fear gas did not work saying Batman had been effected by another but before he can finished he is knocked out by a batarang coming from the figure who knocked out Robin and now has him hostage. The figure then cuts the bandages of his face and reveals him self to be Jason Todd.

    Part 8: The Game

    Batman is shocked to see an alive Jason Todd who is also holding Robin as a hostage. As Jason is threatening the life of Robin, Catwoman arrives and binds Jason's hands with her whip allowing Robin to escape. In a heartbeat Batman engages Jason in battle, after being knocked down Batman stabs Jason in the leg with a batarang and Jason starts to bleed. Jason then attempts to escape and flips over Batman but Batman launches his grapple and soon follows. Catwoman also attempts to follow but is stopped by Robin who says he needs to this alone. Catwoman then reminds Robin of what Batman's like when hes angry and what if Jason turns out to be fake. Over the top of a building, Batman has Jason at the ledge and continues to punch him and eventually it is revealed that the Jason Todd is really Clayface in disguise. Clayface who is beaten and unable to hold his form melts down from the bulding above. Robin arrives and asks Batman how he knew in which Batman explained that the imposter never called him Bruce which would have confirmed it and that while he was standing on the grave there was clay beneath him. Catwoman then arrives and apologizes that it wasn't Jason in which he replies he wished it was because the people who are responsible are still out there. Batman goes to Oracle's clock tower where she reveals that there a subliminal message planted in his computer to call Thomas Elliot when he had seriously wounded him self. Batman then figures out who could have access to the bat cave and put the message there. Batman with the help of Oracle tracks down Harold who was Batman's old mechanic and helped him with alot of his equipment. As Batman confronts Harold it is revealed that Harold is no longer mute. Harold has reluctantly betrayed Batman wanting to have the ability to talk and have the chance to be happy, discovering this Batman forgives Harold telling him that Happiness can be a powerful thing to exploit. Batman then asks Harold who did this to him but before Harold can answer he is shot in the head. Batman turns around to see a Bandaged covered man similar to the disguise Jason Todd was wearing at the grave before. The bandaged covered man quotes Aristotle saying \"What is a friend? a single soul dwelling in two bodies?\"

    Part 9:The End

    As Batman craddle's Harold dead body in the pouring rain the masked bandaged figure who is referred to as Hush holds Batman at gun point. Hush begins to shoot at Batman but Batman avoids the bullets by using his grapple to go upwards. Batman throws several batarangs at Hush but Hush is able to shoot all of them and Batman suspects that he could have been trained by Deadshot. As Batman uses his grapple again to swing to the side, Hush is able to shoot the line causing Batman to fall. Batman lifts him self up and glides towards Hush position and kicks him directly at the face saying \"the game ends here tonight\". Batman begins to punch Hush in the face and finds his friend Tommy Elliot's jade pendant that Tommy's mother gave him to him as a child around Hushes neck. Hush smacks Batman in the face with the handle on his gun and recounts to him the story in which Tommy and Bruce were just kids and Bruce took it as a joke. Tommy got mad and beat Bruce up yelling \"Give it back\". Hush then strangles Batman on the floor, Batman who is tired of all the deceptions reaches for Hushes mask but Hush smacks his hands saying \"you don't get to peek yet\". Batman kicks Hush off of him and yells \"Why hide your face??\". Hush then recounts the story of how Tommy Elliots parents died on a bridge similar to the one their standing on when their car breaks didnt work and they died in a car crash. Thomas Wayne who was Batman's father had saved Tommys mother but not his father. Batman attacks Hush saying that Thomas Wayne did everything he could to save him, Hush tells him to stick a needle (a line that Bruce and Tommy use to say to each other as kids). As Batman punches Hush again, he asks Hush if his motive all this time was to exact revenge on him for his father failing to save Tommy's father. Hush reveals that that was not his motive, instead he wanted to exact revenge because he envied all the weatlth Bruce had and wanted it all for him self. He reveals that the night his parents died, it was Tommy who severed their break lines causing them to be involved the car crash. Hush wanted revenge not because Batman's father had failed to save his father but because he prevented the death of his mother. Tommy had to wait for his mother to die years later of cancer before he could get their wealth. Batman who is distracted by the story is unable to dodge an explosion from behind him caused by a bomb planted by Hush on the Batmobile while Batman was distracted with Harold. As Hush is about to kill Batman, Harvey Dent and Commissioner Gordan arrive. Hush is suprised to see Harvey and yells about an agreement they made but Harvey responds by shooting Hush twice causing him to fall of the bridge. Batman dives in after him but doesn't find anything. Batman climbs back onto the bridge where Harvey reveals that hes no longer Two-Face. Harvey also reveals that Hush is definitely Tommy Elliot and the one who was shot by Joker was really Clayface. Harvey also reveals that his surgery was done by Tommy Elliot in exchange for shooting the Clayface disguised as him. Two weeks later Catwoman finds Huntress and tells her that Tommy Elliot is dead again in which she replies \"good....bastard\". Back at the Batcave, Superman and Batman meet where Superman tells him that he didnt find anything in the rivers. Batman then asks Superman to use his microscopic vision on him and Superman finds a chip implanted in Batman at the base of his skull. Batman then tells Superman to burn it. After that, Batman goes to Arkhum Asylum to meet with the Riddler.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-124939/","id":124939,"name":"Hush Chapter One: The Ransom","issue_number":"608"},"first_appeared_in_episode":null,"id":40875,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89683-191015-hush.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89683-191015-hush.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89683-191015-hush.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89683-191015-hush.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89683-191015-hush.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89683-191015-hush.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89683-191015-hush.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89683-191015-hush.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89683-191015-hush.jpg","image_tags":"All Images,Hush"},"name":"Hush","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/hush/4045-40875/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40978/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-05-04 15:09:38","deck":"The Secret Wars was a ground breaking mini-series from Marvel that brought all of Earth-616's greatest heroes together to battle with the worst villains under the watchful eye of the Beyonder.","description":"

    Plot Summary

    The War Begins

    The story begins when a team of heroes finds themselves transported to a space station in an unknown region of the galaxy. The heroes' team is comprised of Captain Marvel, Captain America, Wasp, She-Hulk, Thor, Hawkeye, Iron Man, Professor X, Storm, Nightcrawler, Rogue, Cyclops, Wolverine, Colossus, Lockheed, Spider-Man, Mr. Fantastic, Thing, Human Torch and Magneto. The heroes quickly realize that they are not alone as a second space station hangs not far away, in perfect view from theirs. This is where a similar group of villains has been transported, consisting of Enchantress, Ultron, Absorbing Man, Wrecker, Thunderball, Piledriver, Bulldozer, Kang, Galactus, Lizard, Molecule Man, Doctor Octopus and Doctor Doom.

    The two groups are made aware of each others' presence and transported to a planet made up of pieces of other planets by the Beyonder. While the location of this planet is not known exactly, Doctor Doom believes that it is in orbit of a star that is the last star of the galaxy that they are in. There is immediate turmoil among the villains as they begin to fight with one another. Ultron makes a first strike against Galactus and is drained of all his energy for his trouble. The Beyonder then tells them to fight and that the victorious group shall be granted all that they desire. Galactus and Doctor Doom immediately attempt an attack on the Beyonder in an attempt to seize his power for their own, but they are swatted away like flies. The heroes are in awe, having witnessed this display of power and realizing how easily he defeated two of their greatest enemies.

    The two groups are then transported to the planet surface with the exception of Galactus and Doctor Doom who land there after being knocked back by the Beyonder. The heroes immediately attempt to attack Magneto, but rather than fight, he repels himself into the sky by riding the magnetic waves of the planet. Doctor Doom finds a fortress and hopes to rally the villains to stand against the Beyonder, but they rebel against his plan and so he sets out to obtain the Beyonder's power for his own. Kang witnesses Doctor Doom attempt to leave and uses weaponry available in the fortress to blast Doctor Doom out of the sky. Doom conveniently crashes near the heroes, followed shortly by the group of angered villains and the first battle of the series ensues.

    Prisoners of War

    As his allies do battle with the heroes, Doom attempts to take council with Galactus, but is ignored. He then goes back to the fortress to see what kind of technology has been provided for the Beyonder's victims to use in the war game. He makes quick work of the fortress' defense systems and discovers an inert Ultron. Meanwhile, the heroes defeat several of the villains, and the remnants flee from the battle. In need of a place to detain the captured villains, the heroes discover that a fortress has been provided for them as well. Rather than press their advantage, they decide to regroup and prepare for a long series of battles by learning about their new, temporary headquarters. Magneto finds yet a third fortress, located hundreds of miles away from the other two and plans his next move as well.

    The villains return to their fortress only to be assaulted by Doctor Doom and a rebuilt Ultron that now serves him. Under their combined might, the remaining villains are subjugated and agree to obey Doom's leadership. Meanwhile, the heroes attack Magneto at yet the power plant and Wasp is captured by Magneto during his retreat. During the confrontation, Thing discovers that he is able to revert to his human form.

    Tempest Without, Crisis Within

    Magneto takes Wasp back to his fortress and the two are trapped there as the weather in his section of the world changes and prevents them from leaving. Spider-Man overhears Charles Xavier (now able to walk) and the X-Men planning to leave the heroes and join with Magneto and attempts to intervene and stop them. Spider-Man attempts to report the activities of the X-Men to the Avengers, but has his memory altered by Xavier before he can do so.

    Doctor Doom suggests an alliance with Magneto, but is turned down. Magneto then returns to Wasp and the two share a moment while the storm rages outside. At Doombase, Doctor Doom begins experimenting on Skeeter (who was not previously mentioned in the series) and grants her new powers. With her new powers, she chooses a new name and becomes Titania. The second subject that Doom experiments on is granted the power to project plasma and chooses the name Volcana.

    Thor frees Enchantress and the two depart to have a moment away from the mortals. At dawn, Doom leads an assault against the heroes' base with the remaining villains and manages to catch the heroes off guard. Using their advantage, they force the heroes to regroup while the prisoners are freed. The heroes' base is destroyed but the villains discover that the heroes managed to escape while checking the wreckage.

    Situation: Hopeless

    The villains quickly spot the fleeing group and use their combined might to throw a mountain on the heroes. Thor and Enchantress are interrupted by the concussion of the falling mountain and return to the ruins of the heroes' base only to appear in the middle of the villains. Thor takes on the villains single-handedly but is defeated and vanishes, leaving only his helmet. Doom then orders Ultron to kill Kang for his earlier attempt to take Doom's life.

    The X-Men arrive at Magneto's stronghold and form an alliance with their former enemy. Magneto then reveals that he believes the heroes should take an aggressive role and do as the Beyonder requests: kill the villains and claim the prize. Wasp then compares him to Hitler and flees from the base. Meanwhile, the heroes are revealed to have survived the mountain toss, as Hulk caught it on his back and prevented it from crushing the group. Iron Man's armour was damaged, and with Hulk only able to hold the mountain up, they are effectively trapped. Mr. Fantastic then uses Hawkeye's arrows and Spider-Man's web shooters to repair Iron Man's armour and he blasts an escape path through the mountain. As they exit, Thor returns to the group, explaining that he hid his escape with a flash of lightning. The heroes then regroup to a village that was brought to the planet, but are concerned with Galactus who is standing on top of a nearby mountain.

    The Battle of the Four Armies

    Galactus then moves, and summons his ship to the planet. Seeing the ship in the sky, Magneto and the X-Men leap begin making their way to Galactus. Also seeing the ship, Doom begins preparing the villains for battle as well. Charles Xavier and Magneto attempt a combined psychic attack on Galactus while Mr. Fantastic attempts to distract him. Galactus unleashes a robot from his ship to fight Captain America's faction while repelling the psychic attack. The America faction defeats the robot, but not without leaving several members of the team incapacitated. It is then that the Doom faction steps in and attacks the heroes. The heroes are hard pressed, and in danger of being defeated when Magneto and the X-Men arrive. While Galactus is distracted by the battle at his feet, Doom sneaks on board Galactus' ship. Eventually the Doom faction is driven back, but Colossus is gravely wounded. Magneto and the X-Men depart, leaving Colossus behind (not without protest of several of the X-Men). Galactus continues to construct his world devouring machine, unhindered.

    A Little Death...

    Wasp begins making her way back to the America faction. Doom, exploring Galactus' ship, discovers Klaw, the self-styled master of sound. With new orders from Doom, Klaw returns to the villains. Xavier takes a moment to rest his legs while the X-Men survey the damage done to their base by Galactus' psychic attack. While resting, Xavier stretches out with his mind and touches the minds of the villains, ascertaining their new plan. He then orders the X-Men into action. Storm, unhappy with Xavier's new direct leadership role, confronts him. Xavier then tells her that he would go so far as to alter the memories of the X-Men to prevent insubordination. Meanwhile, Colossus begins to show interest in an alien woman named Zsaji but she is whisked away by the Human Torch. The villains arrive at a volcano and begin setting Doom's plan into motion but are attacked by the remaining X-Men. During the fight Molecule Man is seriously injured by Wolverine and the villains flee. Cyclops, realizing that their plan was most likely to harm Galactus, fires his optic beam into a region of volcanoes, igniting them. In an unexpected turn, Wasp is then shot and killed by Wrecker as the villains make their way back to Doombase.

    Berserker

    Spider-Woman joins Captain America's faction, having been uprooted from earth during the construction of the planet. The Wrecking Crew tosses Wasp's body into the village as they continue towards Doombase. Zsaji, the healer, attempts to help Wasp but it is too late. While the Avengers try to decide their next course of action, the X-Men continue to pursue the fleeing villains.

    Collected Editions

    Related Issues

    Non-U.S. Editions

    In Other Media

    Television

    \"The
    The assembled heroes in Spider-Man: The Animated Series
    • The final season of Spider-Man: The Animated Series featured a loose adaptation of the original \"Secret Wars\" storyline. The arc saw the Beyonder teleport various heroes and villains to Battleworld as part of an experiment to determine if good or evil was stronger, with Spider-Man chosen to lead the heroes. Spider-Man recruited a team consisting of Storm, Iron Man, Black Cat, the Fantastic Four and Captain America, while the opposing group of villains was made up of Doctor Doom, Doctor Octopus, Lizard, Alistair Smythe and the Red Skull. The Hulk was originally going to appear as well, but wasn't able to due so because of the fact that The Incredible Hulk aired on UPN, a rival network to Fox Kids. The other X-Men were not permitted to show up due to the Fox executives declaring that flying in the cast of X-Men: The Animated Series would be prohibitively expensive, which is why Storm was the only mutant hero present in the adaptation.
    • The fourth season of Avengers Assemble was renamed Avengers: Secret Wars, and featured elements of both the original and 2015 versions of the story. The story arc sees the Beyonder create Battleworld out of various universes as part of an experiment.

    Merchandise

    \"An
    An ad for the toys
    • As the series was conceived at the best of Mattel executives, the company released a line of tie-in action figures. The series featured characters like Captain America, Doctor Doom, Spider-Man, Wolverine, Iron Man, Doctor Octopus, Magneto and Kang, many of whom had never been immortalized in plastic before. Strangely, despite the cynical nature of the project, many core characters featured in the comic book series did not make it into the toyline, while a number of characters who did not appear in the comic did receive toys. These included Falcon, Baron Zemo and Hobgoblin, as well as European-exclusive characters Iceman, Constrictor and Electro. The toy line also featured a number of vehicles and playsets, including a base for the villains called the Tower of Doom. The toyline was also notable for including the very first action figure of Spider-Man in his black costume.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-57504/","id":57504,"name":"The War Begins","issue_number":"1"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-25060/","id":25060,"name":"Underworld","episode_number":"418"},"id":40978,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/35816/831663-secretwarsposterbyross.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/35816/831663-secretwarsposterbyross.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/35816/831663-secretwarsposterbyross.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/35816/831663-secretwarsposterbyross.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/35816/831663-secretwarsposterbyross.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/35816/831663-secretwarsposterbyross.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/35816/831663-secretwarsposterbyross.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/35816/831663-secretwarsposterbyross.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/35816/831663-secretwarsposterbyross.jpg","image_tags":"All Images,Earth-616 Iron Man"},"name":"Secret Wars","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/secret-wars/4045-40978/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40991/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2021-12-07 07:37:13","deck":"Reality is flipped upside down by the Scarlet Witch when mutants are the ruling majority. This story arc occurred in Marvel Comics titles between 2005 and 2006.","description":"

    Plot Summary

    \"The
    The Avengers and the X-Men coming together to discuss Wanda Maximoff's fate

    Following the destruction of the Avengers, a group of super-heroes came together to decide what to do about the Scarlet Witch. Over the years, her mental instability and subsequent lack of control over the immense reality-manipulating power she wields have put herself, those closest to her, and the general public in imminent danger. Together the X-Men, as well as Avengers, new and old, decide that she is too dangerous to live, and that something must be done before reality itself is undone by her madness. Of all those heroes involved only Quicksilver seeks to preserve his sister. Magneto is absent because when he heard of his daughter's breakdown he rescued her and remains reclusive on the island nation of Genosha while she recuperates.

    \"The
    The House of Magnus

    As the heroes make their way to where Wanda is being held, Quicksilver rushes to his sister's side. Awakening her, he tells her of the plot to kill her and that she needs to use her powers to save them. Suddenly, a white flash over-takes the world, and reality is flipped upside down. The Scarlet Witch has remade reality in the views of Mutant superiority over humans formerly held by her father. In this new, alternate reality mutants are the majority, with normal Homo sapiens are in the minority. Sapiens (sapes, as the slur goes) is now also second class citizens, suffering the ridicule, indignity, and the same constant fear of persecution that mutants had to endure for so long. Mutants now hold positions of authority in business, as well as the highest offices in the world's military and governmental bodies.

    Of the world's population, only two remember life before House of M. Wolverine's mind rejected this new reality from the beginning. He knew of his life in this new reality, but he also knew it was fabricated. The other person in this reality who initially understood that the accepted truth was fake was the child Layla Miller. Layla has the fortuitous ability to be able to re-activate people's memories of their past lives, as well as their lives in the new House of M reality, granting them the ability to understand that the world they now belong to is fake.

    Before long, Layla had assembled a group who were going to assault Magneto (the beloved global dictator in the House of M reality). Not long after the assault began, Magneto's memory had been restored.

    He is both shocked and angered at what had happened, and, immediately, realized that the Scarlet Witch had been coerced by Quicksilver to re-form reality to one which she, and her family, could live seemingly perfect lives.

    \"\"
    \"No More Mutants.\"

    Angry at Magneto for, again, choosing mutants over their family, the Scarlet Witch spoke her now famous words, \"No more mutants\", which caused the M-Day, in which 99% of the world's mutants lost their powers, and reality was reverted to its original state.

    After House of M

    Decimation - The events occurring directly after the House of M detailing the fallout in the wake of the House of M.

    Civil War - Partially in response to the events of the House of M the U.S. government drafts and enacts a bill that will require registration with SHIELD for all superpowered individuals.

    Deadly Genesis - A powerful figure from the X-Men's past is awakened by the surge of power created when the Scarlet Witch de-powered the majority of the Earth's mutants.

    Onslaught Reborn - When Professor X and Magneto are de-powered during the House of M their mutant energies re-awaken the creature Onslaught who desires revenge against the Earth's heroes; particularly Franklin Richards.

    Collected Editions

    Related Items

    Non U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-101045/","id":101045,"name":"The Devil's Own Part 1: Save the Life of My Child!","issue_number":"11"},"first_appeared_in_episode":null,"id":40991,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/107413-158824-house-of-m.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/107413-158824-house-of-m.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/107413-158824-house-of-m.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/107413-158824-house-of-m.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/107413-158824-house-of-m.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/107413-158824-house-of-m.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/107413-158824-house-of-m.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/107413-158824-house-of-m.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/107413-158824-house-of-m.jpg","image_tags":"All Images,House of M"},"name":"House of M","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/house-of-m/4045-40991/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41075/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-12-26 17:16:28","deck":"The prelude to the alternate reality \"Age of Apocalypse\", \"Legion Quest\" followed the story of Professor X's son Legion, who attempted to realize his father's dreams by killing his worst enemy.","description":"

    A Son's Revenge

    David Haller ( Legion), son of Charles Xavier ( Professor X) and Israeli diplomat Gabrielle Haller, had spent many years of his schizophrenic life in a coma following a battle between the Shadow King (who had possessed David) and the X-Men. Suddenly, in a response to the presence of Mystique, David awakes, his fractured mind healed into one single personality with one single goal -- to help his father achieve his goals of peaceful coexistence between humans and mutants. David targets Erik Lehnsherr ( Magneto) as the true adversary to Xavier achieving his dream. His solution is to travel back in time approximately 20 years and murder Magneto before he adopts his anti-human policies and becomes Professor X's enemy.

    Battle For The Past

    A team of X-Men, consisting of Jean Grey, Storm, Iceman, Bishop, and Psylocke, arrive in Israel in order to stop Legion, who has destroyed everything the Israeli army has thrown at him. In the ensuing battle, Storm realizes Legion's plan, but only after Bishop is knocked unconscious attempting to absorb some of Legion's powers. Storm orders Psylocke to mind-link to Bishop, who still possesses some of Legion's chronal energy, causing the X-Men (with the exception of Jean Grey, who had telekinetically anchored herself) to teleport along with Legion. Before she passes out, though, Jean is able to contact Professor X and the rest of the X-Men in order to alert them to Legion's plan.

    Back In Time

    The four X-Men and Legion arrive safely in the past, though the time travel erases all five of the mutants' memories. Legion arrives at the hospital at which both Xavier and Magneto, both young and friends, work. Following a touch from Magneto, Legion experiences a psychic backlash that causes him to project visions of Magneto's past. Magneto gets angry and storms out and Legion apologizes, but this energy starts to awaken Legion's memory. In the present, Jean Grey, Professor X, and Cable pool their energies and send Cable back in time to alert the four time-stranded X-Men, who had got jobs working at the docks. Cable appears to them and, although they don't recognize him, Bishop thinks he looks familiar and touches him, causing the temporal energy surrounding Cable to reach the others, awakening their memories as well.

    Battle For The Future

    Legion, disguised as his father, Xavier, appears to Gabrielle Haller at the hospital. He seduces her. At the docks, Xavier gets a psychic warning, alerting him that something is wrong with Gabrielle. With Magneto in tow, he runs to the hospital to find Gabrielle disheveled, on the floor, clothes torn. Suddenly, Legion appears behind the two men and threatens Magneto. The X-Men, memories restored, quickly rush to the scene of the fight, only to find Magneto and Legion locked in battle high above in the sky. Bishop and Iceman work on controlling the damage, while Storm and Psylocke attempts to find Xavier. Iceman, who finds himself much more powerful tries to defeat Legion, but to no avail. Legion grabs the defeated Magneto and starts to deliver his murderous blow, but at the last moment, Xavier throws himself in the way of the blast, getting killed instantly, but saving the life of his friend in the process. With Xavier's death, Legion and the X-Men disappear. Only Bishop remained, due to the fact that he was a time traveler and, therefore, a chronal anomaly in the first place. Magneto, defeated but alive, is left to cradle the lifeless body of his friend, Charles Xavier.

    Effects

    With Xavier out of the picture, the Age of Apocalypse is ushered in and dominates the X-books for four months.

    Associated Issues

    Though it is not a part of the official canon of Legion Quest, X-Factor #108 is an important read because it chronicles when Legion actually wakes from his coma. Then proceed to the Prelude before reading X-Factor #109. After that, there is a vignette in X-Men #39 of Legion wandering the Israeli desert and receiving instructions from Destiny. The story then picks up with the first numbered issue of Legion Quest in Uncanny X-Men #320.

    An anomaly with this arc is that seven issues are included but only four are numbered as such. It's possible that this is because the events of the non-numbered issues happen concurrently. Or, that Marvel only numbered the X-Men titles for some reason.

    Related Issues

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-65690/","id":65690,"name":"Legion Quest: The Waking","issue_number":"109"},"first_appeared_in_episode":null,"id":41075,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2021218-163814_10150090770478856_829193855_6045688_6611816_n.jpg","image_tags":"All Images,Alternate Earths,Covers,Story Arcs"},"name":"Legion Quest","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/legion-quest/4045-41075/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41147/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-08-08 08:49:31","deck":"A time rift causes some of Marvel's most well known heroes to come into existence over three hundred years early, in 1602.","description":"

    This is the initial 1602-story arc. If you want to see all the stories linked to this story arcs continuity, go to its concept page.

    Basic Concept

    1602 poses an alternate history to Marvel's Earth-616. Familiar heroes and villains, from X-Men to Nick Fury to Doctor Doom, come into existence in the era of Queen Elizabeth. The story follows Sir Nicholas Fury, the students from Carlos Javier's Select College for the Sons of Gentlefolk, Rojhaz the American Indian and others, as they attempt to decipher the riddle of strange and deadly weather patterns and foil the machinations of Count Otto Von Doom.

    Eventually, the main characters discover that Earth-616 is coming apart in a para-temporal event caused by the untimely arrival of Steve Rogers, commonly known as Captain America, of Earth-460 having been sent more than 400 years back through time. They foil Von Doom's schemes and rescue the Four of the Fantastick, then head to America where they finally seal the rift by sending Captain America back through, and return Earth-616 to its proper timeline.

    This reality has been named Earth-311.

    The characters

    The characters of Earth-311 are not alternate reality counterparts of Earth-616 characters, but analogues.

    The following is a list of the characters, who they are on Earth-311, and who they are analogues of in Earth-616.

    • Elizabeth I of England: Herself*
    • James I of England: Himself*
    • Virginia Dare: No counterpart
    • Uatu, the Watcher: Himself*
    • Sir Nicholas Fury: Nick Fury*
    • Doctor Stephen Strange: Himself*
    • Peter Parquagh: Peter Parker (Spider-man)*
    • Matthew Murdoch: Matt Murdock (Daredevil)*
    • Clea Strange: Clea*
    • Rojhaz: Steve Rogers (Captian America)*
    • Carlos Javier: Charles Xavier*
    • The Four from the Fantastick: Reed Richards (Mr. Fantastic), Sue Storm (Invisible Woman), John Storm (Human Torch), Ben Grimm (The Thing)*
    • Grand Inquisitor Enrique: Erik Magnus Lehnsherr (Magneto)*
    • David Banner: Bruce Banner (The Hulk)*
    • Count Otto von Doom: Victor Von Doom (Dr. Doom)*
    • Pestros: Pietro Django Maximoff (Quicksilver)*
    • Scotius Summerisle: Scott Summers (Cyclops)*
    • Robert Trefusis: Robert Drake (Iceman)*
    • John (Jean) Grey: Jean Grey*
    • Werner: Warren Worthington III (Angel)*
    • Master McCoy: Henry McCoy (Beast)*
    • Sister Wanda: Wanda Django Maximoff (Scarlet Witch)

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-94000/","id":94000,"name":"In Which Things Begin To Change...","issue_number":"2"},"first_appeared_in_episode":null,"id":41147,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/91027-81385-1602.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/91027-81385-1602.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/91027-81385-1602.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/91027-81385-1602.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/91027-81385-1602.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/91027-81385-1602.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/91027-81385-1602.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/91027-81385-1602.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/91027-81385-1602.jpg","image_tags":"All Images"},"name":"1602","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/1602/4045-41147/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41213/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2019-03-04 00:36:42","deck":"Hulk gets trapped on another planet by the Illuminati where he overthrows the emperor and becomes their king. This story leads into the World War Hulk event.","description":"

    Plot Summary

    The Illuminati (a group consisting of Tony Stark, Reed Richards, Black Bolt, Namor, and Dr. Stephen Strange only – Charles Xavier was absent) meet to discuss the recent destruction of Hulk and how to deal with him. The decision to deposit Hulk on a peaceful uninhabited planet is interrupted by a wormhole, placing the savage Hulk on the violent planet Sakaar.

    The green skinned warrior quickly bonds with others like him in a gladiator arena, as well as creates an enemy of Red King. Through his conflicts and troubles Hulk unites a planet by killing the tyrant king, while finding a kindred spirit and falls in love with the warrior Caiera. Hulk, the savior of the people, is crowned king with Caiera as his queen. The peace does not last for the green goliath however, but instead leads to the destruction of Sakaar and the terribly destructive World War Hulk.

    Full Plot

    Prelude to Planet Hulk

    \"Hulk
    Hulk on Sakaar

    After Hulk's rampage where most of Las Vegas was destroyed, Hulk has exiled himself into the northern wilderness in an attempt to keep himself from harming other living beings. Banner is approached by Nick Fury for a mission that will have Hulk go into space to destroy a rogue, sentient Hydra satellite with the capability of detonating every nuke on earth. Banner agrees, and as Hulk is sent into space to deal with the satellite. There, Hulk finds a dead crew and the computer takes on humanoid form. This machine appears to be able to match Hulk's strength, but Hulk is able to get the better of it and destroy it. Hulk is infuriated when he discovers that Fury lied to him about the satellite which is actually one of SHIELD's own. A message begins playing of the members of the Illuminati telling Hulk that he has been tricked, and is being exiled to an uninhabited far-off planet where he cannot hurt anyone and can finally live in peace. The ship was sucked into a portal and deposited Hulk on the violent planet Sakaar. Traveling through the wormhole has weakened Hulk, leaving his strength depleted and with the ability to sustain injury. Unable to resist Hulk is captured almost immediately upon arrival, and is forced to become a gladiator in the great arena for the viewing pleasure of the evil Red King of Sakaar.

    Sakaarson

    \"Hulk
    Hulk vs. Silver Savage

    Hulk is forced to battle the Silver Surfer (dubbed \"The Silver Savage\") in the gladiatorial arena. The Surfer had also been weakened when he was drawn through the wormhole that brought Hulk to Sakaar. Hulk recognized the Surfer, and rather than fight him for the Red King's amusement, Hulk smashed the control unit that kept the Surfer in check, allowing him to flee Sakaar and make his way to the events of the Annihilation. As a gladiator in the arena, Hulk quickly makes an enemy of the Red King. After watching Hulk win several battles the Red King dons his battle suit to fight the Hulk. Not to be underestimated Hulk draws blood from the Red Kings face, an act which was until then unprecedented. As a means to save face the Red King makes a deal with Hulk, offering to allow the Hulk to go free as long as he is able to pass a certain number of trials. The motive for this apparent display of leniency is to make it appear so that Hulk has a fighting chance of his freedom, but to be able to kill him anyway. It is during these trials that Hulk would meet and forge a warbond with several allies on Sakaar: Korg the Kronan, Miek the insect, the No-name Broodspawn, Hiroim the Shamed shadow priest, and Elloe. These allies would become a force that could not be broken, no matter what trials the Red King threw their way. The more the Hulk was able to overcome, the more the people of Sakaar grew to support him. A growing number of the people of Sakaar also believed Hulk to be their fabled savior, the Sakaarson, after a plant was discovered to have sprung to life in the arena from where Hulk's blood touched the soil.

    Hulk and his Warbound allies eventually escaped the Red King's control and made their way into the wilderness. Enraged, the Red King is growing more and more impatient with the Hulk and tries even harder to kill him, first sending his armies after him and then sending his personal bodyguard Caiera, the shadowguard. Caiera, harboring an ancient power known only to her people as the Oldstrong had not found a match in pure power until meeting the Hulk. It was while Hulk battled Caiera that the Red King had finally had enough of the Hulk and sent in his most dangerous weapon: a plague of sentient spores known as the Spikes which consumed all living organisms, turning them into spikes too. The threat of the Spikes is too great for Caiera and Hulk to continue battling each other, for now they are in a race for their lives just to avoid the Spikes. Many of those around them are turned into spikes as well including Miek's queen, the last hope for their race.

    Coming back to battle the Red King once final time, Hulk is able to release the spike leaders who revealed that they are captives of the Red King that crash landed on Sakaar a long time ago and do not mean to harm anyone. Now with an army supporting him, Hulk confronts the Red King who is desperate and sets off a charge that will destroy the planet from the inside. Jumping into the destruction of Sakaar, Hulk grabs the plates of the planet and pulls them back into place himself. As the planet's savior, Hulk slays the Red King. Now would be a time for rebuilding.

    King Hulk

    \"Hulk
    Hulk and the Warbound as heroes of the people

    After the events of the final battle against the Red King, Hulk is looked to as the leader. All was not well at first. Hulk's allies against the Red King are now fighting with each other in an attempt to decide what to do with the Red King gone. Meeting in the arena once more former teammates prepare to battle each other until Hulk steps in and says that if they want to fight they can fight him. The Shadow Priests watch from a distance believing the Hulk to be no better than the Red King. Hulk forces the opposition to attack him, plunging their spears, arrows, and swords into his flesh. Hulk declared that they are all warbound with each other as they had teamed up against him, and need not fight each other. This proved once again that regardless of whether Hulk is the Sakaarson or not, Hulk is a natural leader for Sakaar.

    Hulk allows the Spikes to feed off of him during the day so that no one else is harmed while they work on a way to send the spikes back into space where they belong. In love with Caiera, Hulk and Caiera become married and Caiera reveals to Hulk that she is pregnant with his child. Hulk returns the Spikes to space, and finally becomes more comfortable with his role as the new king of Sakaar. A new era of peace looms on the horizon for Sakaar as old relationships are rekindled, and as the Warbound now work together with the people of Sakaar to rebuild what the Red King had destroyed. It seems as if everything is all right. This is proof of the toughness of Hulk. Even launched into space on a desolate, angry planet, he managed to prosper.

    Everything seemed almost too good to be true when the ship the Hulk was brought to Sakaar on began to emit warnings that its power systems were failing. Hulk was not able to send the ship into the atmosphere in time, and an explosion rocked the world destroying virtually all life (including Caiera) and setting the planet up for its demise once again. Hulk is found by the Warbound, some of the only survivors of the planet's destruction, and with them plots a course back to Earth to seek out the Illuminati to make them pay for destroying their paradise. Let the World War Hulk begin!

    The events of Planet Hulk are continued in the World War Hulk storyline, where Hulk returns to Earth with his Warbound allies to find the Illuminati. A lot has changed while Hulk was gone, and Hulk is angrier than ever...

    Collected Editions

    Related Items

    Non-U.S. Editions

    In Other Media

    Film

    Animated

    \"Hulk
    Hulk with Caiera in the movie
    • In 2010, Lionsgate released an animated Planet Hulk movie as part of their deal with Marvel (a partnership that also led to Ultimate Avengers, Ultimate Avengers 2, Next Avengers: Heroes of Tomorrow, Hulk vs. Wolverine and Hulk vs. Thor). The film followed the plot of the original comic storyline fairly closely, but featured a few significant deviations from the plot, such as Beta Ray Bill being the controlled superhero the Hulk is forced to fight in the Red King's arena. The movie also featured a far more optimistic ending than the comic, with Caiera becoming the Hulk's bride, and the members of the Warbound being viewed as heroes by the people of Sakaar. The tragic twist ending of the comic never occurs, and thus the planet is not destroyed.

    Live-Action

    \"Hulk
    Hulk vs. Thor on Sakaar
    • Certain plot elements of \"Planet Hulk\" were loosely adapted in the 2017 live-action film Thor: Ragnarok, part of the Marvel Cinematic Universe. The film reveals that after the events of Avengers: Age of Ultron, the Hulk ended up in a wormhole and was teleported to the alien world of Sakaar. When Thor crash lands on Sakaar two years later, he discovers that the Hulk has become the star attraction in the Contest of Champions, a brutal and vicious gladiatorial tournament hosted by the Grandmaster (who rules Sakaar in this version, replacing the Red King). After being fitted with an obedience disk, Thor is forced to battle the Hulk in the Grandmaster's arena, mirroring the fight between the Hulk and the Silver Savage in the comic. The heroes eventually escape from Sakaar, but not before helping Korg start a populist revolution against the Grandmaster's tyranny.

    Video Games

    \"Ultimate
    Ultimate Marvel vs. Capcom 3
    • Marvel Animation released a free online flash game called Planet Hulk: Gladiators to promote the animated movie.
    • The Hulk's time on Sakaar is referenced in Marvel Ultimate Alliance 2.
    • When facing the Hulk in Ultimate Marvel vs. Capcom 3, Doctor Strange references his part in launching the Hulk into space. The Hulk's gladiator gear is also available as an alternate costume.
    • Marvel vs. Capcom: Infinite once again feature's the Hulk's gladiator gear as an alternate costume.
    • Gladiator Hulk is a playable character in the Marvel Contest of Champions mobile app game.
    • Gladiator Hulk appears in Marvel Future Fight mobile app game.
    • Gladiator Hulk is a playable character in Lego Marvel Super Heroes 2.

    Merchandise

    \"Marvel
    Marvel Legends
    • Gladiator Hulk (dubbed \"Planet Hulk\") was featured in Hasbro's Marvel Legends line as part of the Annihilus Build-a-Figure wave. A newer version (now dubbed \"King Hulk\") was later released as part of the Fin Fang Foom Build-a-Figure wave.
    • Similarly, the Silver Savage was featured in Hasbro's Marvel Legends Red Hulk Build-a-Figure wave.
    • XM Studios produced a King Hulk statue.
    • The HeroClix figure game featured a special diorama figure that included Hulk, Silver Savage, Korg and Miek.
    • Gladiator Hulk was featured in Diamond Select's Minimates line as part of a two-pack with the Red King.
    • Gladiator Hulk was featured in Diamond Collectibles' Marvel Select line.
    • A Gladiator Hulk statue was produced by Bowen Designs.
    • A Gladiator Hulk statue was released by Sideshow Collectibles.
    • The Ragnarok version of Hulk was the subject of a Marvel Legends Build-a-Figure wave from Hasbro.
    • Gladiator Hulk was featured in the various product lines released for Thor: Ragnarok, including those by Hasbro, Funko, Lego, Bandai, Comicave, Hot Toys and more.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108947/","id":108947,"name":"Planet Hulk: Exile, Part 1 of 4","issue_number":"92"},"first_appeared_in_episode":null,"id":41213,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/86280-14791-planet-hulk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/86280-14791-planet-hulk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/86280-14791-planet-hulk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/86280-14791-planet-hulk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/86280-14791-planet-hulk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/86280-14791-planet-hulk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/86280-14791-planet-hulk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/86280-14791-planet-hulk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/86280-14791-planet-hulk.jpg","image_tags":"All Images,Planet Hulk"},"name":"Planet Hulk","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/planet-hulk/4045-41213/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41233/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-05-01 10:08:22","deck":"When the alien monster Doomsday surfaces on Earth, Superman may be the only hero powerful enough to save the planet from Doomsday's wrath. But who will save Superman from Doomsday?","description":"

    Plot Summary

    Known as the biggest story ever, in which Superman finally meets his match and battles to protect the city that he loves from the monster known as Doomsday. By the battle’s end Doomsday is dead; however, Superman is fatally wounded and dies in the arms of Lois Lane. Though Superman is dead, four new characters are about to emerge: The Reign of the Supermen is about to begin.

    Full Plot

    \"Bye
    Bye Bye Birdie.

    Another normal day for Superman, fighting the Underworlders, while in Ohio a green-clothed fist beats its way out of an underground chamber. Once the monster is above ground, he instantly starts to destroy, crushing a bird in his hand, and snapping the neck of a deer. As it cuts a path across Ohio and Pennsylvania it continues maiming, and destroying. The news spreads quickly about this monster, and the Justice League of America prepares to attack it.

    \"Pinned
    Pinned to the Sky

    After the league clean up a mess left by the beast, Maxima uses her psionic powers to track the creature. Attempting to establish first contact, the Warrior Queen finds that the monster's mind is nothing more than hate, death, and blood lust personified. As they move towards it, they see the monster's path of destruction. When the see the creature he throws a tree like a spear and crushes the Bug ship. This tosses the league around and they are left scrambling to save their own before they can regroup Guy Gardner charges into action and asks the beast to \"take [his] pick cremation or burial\".

    The beast catches Guy off guard and moves faster than Guy can see. After that all hell breaks loose for the team. absent their strongest member Superman the League suffers. Several Leagues are knocked out and Blue Beetle is put in a coma. As the battle gets larger the League tries to fight the beast while saving lives of civilians. The battle is so big that Superman hears about it in Metropolis and goes into action. By the time he gets there Maxima has been convinced by Ice to take Blue Beetle to the hospital; everyone else was knocked out but Booster Gold who was hit so hard he was not even in sight. At this point Ice tries to hold the monster off all by herself.

    \"Superman's
    Superman's Doomsday!

    Superman runs into Booster in midair on the way to help and Booster Gold again dubs the creature Doomsday. The League starts to recover and fight. They even gather the remnants of the league Bloodwynd, Fire and Guy Gardner, Booster and Superman shoot Doomsday with their respective energy projectile weapons. It does has little effect. Doomsday punches Superman, who stands unharmed, but when Doomsday kicks him in the stomach, Superman gets knocked into the air. Then Booster is made powerless by his suit getting destroyed and Guy's eyes have been swollen shut from Doomsday's first tossing his face into concrete.

    Maxima comes back from saving Blue Beetle and helps fight Doomsday but is done in by a mistake she makes. Doomsday meanwhile makes his way to Metropolis, and Superman realizes he must stop him. Doomsday crushes everything. None of Metropolis' defenses can stop him. Not Supergirl, team Luthor, Cadmus or the Guardian. They fight a huge battle, shattering windows with their blows, and finally ending with one hit from each. Doomsday was seemingly dead. but so was Superman.

    Collected Editions

    Related Issues

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-68544/","id":68544,"name":"Countdown to Doomsday!","issue_number":"74"},"first_appeared_in_episode":null,"id":41233,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2532/158645-175940-death-and-return-of.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2532/158645-175940-death-and-return-of.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2532/158645-175940-death-and-return-of.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2532/158645-175940-death-and-return-of.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2532/158645-175940-death-and-return-of.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2532/158645-175940-death-and-return-of.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2532/158645-175940-death-and-return-of.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2532/158645-175940-death-and-return-of.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2532/158645-175940-death-and-return-of.jpg","image_tags":"All Images,Death of Superman"},"name":"Death of Superman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/death-of-superman/4045-41233/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41287/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-07-28 13:01:20","deck":"The Annihilation Wave sweeps through the galaxy extinguishing all life in its path. This involves Nova, Galactus, Silver Surfer, Annihilus and a lot more.","description":"

    Prologue

    When an extraterrestrial prison ship called Dredge 01 crash landed on Earth near Coot’s Bluff, Alaska. Paibok The Power Skrull, the Blood Brothers, Lunatik, and Drax The Destroyer were unleashed upon the Earth. Realizing they were on Earth, a world known to have countless superhumans, the escaped prisoners begin preparations for a hasty escape off-world.

    The dimwitted Drax opposes his fellow escapees, but is murdered when Paibok assumes the form of Thanos (whom Drax was created to destroy), taking Drax off-guard just long enough to kill him. Cammi, a local girl bargains with Paibok and somehow claims ownership of Drax’s body. She is rather surprised however when the body returns to life transformed. Drax had lost much of his power, but he has regained his intellect and received all the instincts and senses of a true warrior.

    In short order, Drax kills Lunatik and one of the Blood Brothers before Paibok fearing for his own safety summons his former captors to take him back into custody. Paibok, Drax, and Cammi are all escorted off-planet aboard the prison ship Dredge 02.

    Annihilation

    Events of the Annihilation are chronicled in terms of the Annihilation Day.

    A.D. -7

    The Crunch lying at the center of the universe is the region in which all space expands from. The energies released by the Crunch have been used as a prison for countless millennia to contain criminals and unwanted entities from around the universe. This prison was called the Kyln.

    Thanos of Titan recently visited Kyln, he claimed the chaos mite Skreet as a pet and the seeming first herald of Galactus, the Fallen One as his own herald. Death (in the form of a young girl) appears to Thanos and tells him something wonderful will soon emerge from the Crunch.

    Annihilation Day

    An exceedingly large armada of starships manned by insectoid creatures emerges from the Crunch and lays waste to the Kyln. This large armada, dubbed the Annihilation Wave, follows one simple command: Extinguish life wherever they find it. Their lord, Annihilus has declared war upon our universe as it is always expanding while his Negative Zone is always contracted, which Annihilus sees as an invasion of his territory by our universe.

    Annihilation Day 7

    On Xandar, the Nova Corps convenes to prepare to confront the Annihilation Wave, as they do the Wave attacks, a brief, but fierce battle Xandar is destroyed and all the Nova Corps are dead except one. Nova, the Nova of Earth. Drax and Cammi, who arrived on Xandar the same day are able to escape death with the help of Drax’s finely tuned instincts. As Richard surveys the destruction Xandar he falls to his knees, defeated.

    A.D. 11

    Apparently having fallen into a coma, Nova recovers to the Xandarian Worldmind attempting to contact him. It is in danger of going offline. If the Worldmind be goes offline, the Nova Force itself and all that remains of Xandar’s knowledge and culture would also be lost forever. In order to maintain the Worldmind, Nova allows the Worldmind and all the power of the Nova Force to be downloaded into him.

    Drunk on his newfound power, Nova sets out to destroy the Annihilation Wave, in the ensuing battle, he loses control of the power and nearly kills himself. Recovering in the crater he created when he crash-landed, he encounters the only other known survivors of the destruction of Xandar, Drax and Cammi.

    The trio set out to find salvageable transport off Xandar. After some resistance from the Annihilation Wave’s carrion feeders, they are able to find a Nova Corps transport, which Nova interfaces with to order to open a stargate to escape the Annihilation Wave.

    The ship arrives in orbit of Nycos Aristedes, a planet 7.8 light-years from Xandar and quickly loses power. As the ship begins to fall out of orbit they are saved by Quasar, the Protector of the Universe, who is an old friend of Nova’s.

    They quickly find that Quasar is overseeing a mass-evacuation before the Wave can reach the planet. Quasar manages to talk Nova into assisting despite the objections of the Worldmind and Drax. Nova attempts to open another stargate for the colonists to escape though, but Annihilus sensing the power of the stargate attacks. Nova and Quasar defend the colonists and take the fight to the capital ships of the Annihilation Wave itself. Seeking to stop Annihilus before this invasion gets any worse they attempt to kill Annihilus, but he is ready for them.

    During the brief struggle Quasar is slain and his Quantum Bands are claimed by Annihilus, making him even more powerful. In a desperate gambit, as Annihilus attempts to drain the Nova Force as he had Quasar’s Quantum-power, the Worldmind interfaces with the Wave’s hive-mind, causing the fleet to attack itself. Nova barely escapes with his life and is retrieved by Drax and Cammi and is quickly treated for his wounds. Annihilus tasting defeat for the first time orders a retreat.

    A.D. 12

    Ronan the Accuser of the Kree is taken into military custody to face court martial for crimes against the Empire.

    A.D. 15

    While performing espionage against the Kree, the Super-Skrull learns of the Annihilation Wave’s destruction of several Skrull worlds and its weapon, the Harvester of Sorrows.

    A.D. 17

    Annihilus orders his forces to bring him the heralds of Galactus alive in the hopes of analyzing and mastering the Power Cosmic. To that end, Ravenous, Annihilus’ chief lieutenant assaults the android re-creation of Gabriel Air-Walker a former herald, who had been drawn to the destruction of Xandar, his former homeworld. The Silver Surfer arrives and manages to drive off Ravenous and his Seekers, but not before Air Walker is far too badly damaged to sustain himself. Surfer marks his friend’s passing by creating a black hole where Gabriel fell.

    A.D. 19

    Terrax the Tamer confronts the Seekers, but is captured. Silver Surfer enters Skrull space and surveys the destruction wrought by the Annihilation Wave and vows to stop Annihilus. Amongst the wreckage Surfer finds a former indentured slave of the Skrulls named Tarq Maru who the Surfers bring to safety rather than leaving him to die. During this time Surfer is attacked by more Seekers but despite having them outmatched watches as they are cut down by his fellow former heralds Firelord and Red Shift. Meanwhile, Thanos meets with Annihilus to form an alliance.

    A.D. 20

    Two ancient entities freed by the decimation of the Kyln prison slowly come to grips with how much the universe has grown and changed since their imprisonment and vow revenge upon their captor, Galactus. As these beings, Tenebrous and Aegis discover the Fallen One amongst the ruins, sensing Galactus’ power coursing through his body they capture and question him.

    Silver Surfer, Firelord, and Red Shift deposit Tarq Maru with a refugee fleet departing Skrull space, they are quickly joined by Stardust, Galactus’ current herald, who directs the Surfer to an audience with his former master.

    Annihilus reveals his quest to gain the Power Cosmic to Thanos despite the former’s failure to capture it from the dying body of another former herald, Morg.

    A.D. 21

    When the Silver Surfer arrives to meet with Galactus, his former master reveals the threat of Aegis and Tenebrous and requests that the Surfer rejoin him as his herald. Surfer agrees and Galactus readies the Surfer for the coming conflict with more power just as Ravenous and the Seekers arrive with the advanced scouts of the Annihilation Wave, having tracked the Surfer there, and demands that Galactus surrender to them. Galactus simply unleashes the Silver Surfer upon them and watches with mute interest as he devastates the fleet and elegantly defeats Ravenous, asking that they retreat back to the Negative Zone. Ravenous declines and is nearly killed.

    A.D. 29

    Ronan’s court martial is held, during which the Rigellian Tana Nile gives false testimony of Ronan’s treason and he is summarily stripped of his title of Accuser.

    A.D. 40

    Thanos, drawn by the Fallen One’s summons, meets with Aegis and Tenebrous where he learns of their similar goals, so they strike a deal: If Tenebrous and Aegis defeat Galactus, Thanos will see him imprisoned.

    A.D. 41

    In a pitched battle, the Skrull world of Aks’lo is destroyed by the Harvester of Sorrows, Super-Skrull narrowly escapes death.

    A.D. 46

    Super Skrull asks Baroness S’Bak if he may lead a force against the Harvester itself to destroy it before it reaches Zaragz’na, a former Skrull homeworld. This world also is where Super Skrull’s son lives. S’Bak denies permission. Super-Skrull goes rogue and decides to destroy the Harvester with or without the help of the Skrull Empire. He is joined in this suicidal venture by a young Skrull engineer named R'Kin.

    A.D. 47

    R’Kin and Super-Skrull travel to Earth to meet with the one man in the entire universe who has access to the Negative Zone, Reed Richards, who agrees to give them access to his portal.

    A.D. 48

    Super-Skrull and R’Kin gain access to a Negative Zone vessel at the expense of it crew, who are spaced.

    A.D. 52

    Super-Skrull interrogates a member of the Annihilation Wave and learns that the Harvester of Sorrows was created by Hawal.

    A.D. 55

    They find Hawal on UX-73, a penal colony. Super-Skrull defeats the security forces and then recruits the inmates against Hawal, who had committed many experiments against them against their will. Super Skrull forces Hawal to prepare a weapon that can be used against the Harvester.

    A.D. 65

    R’Kin begins work on a portal back to our universe based upon plans stolen from Reed Richards by Super-Skrull.

    A.D 66

    After Hawal completes the weapon Super Skrull kills him. Praxagora offers Super Skrull her love and he rejects her.

    A.D. 68

    Super-Skrull’s forces travel to our universe and attack the Harvester of Sorrow, but they are betrayed by R’Kin, who blames Super-Skrull for the death of his father. They are captured and brought onboard the Harvester and they are forced to watch as Zaragz’na is destroyed. Desperate for escape and revenge, Super-Skrull hypnotizes R’Kin into freeing them. R’Kin flees as Super Skrull kills Admiral Salo and prepares to destroy the Harvester with the help of Preak and Praxagora. Super-Skrull exacts his revenge upon R’Kin by tearing off his limbs and cauterizing the stumps, then leaving him barely alive tied to a bulkhead within a shuttle. Preak is killed attempting to overload the Harvester’s core. Super Skrull refuses to allow Praxagora to sacrifice herself for his cause, he absorbs the energy he needs from her and kisses her farewell. He destroys the Harvester of Sorrow. Praxagora later recovers his body.

    A.D. 79

    By now most Skrull worlds are either subjugated or destroyed.

    A.D. 88

    A still deposed Ronan exacts Kree justice on the world of Bwokk and then continues his tracking of Tana Nile to the insignificant world of Godthab Omega.

    A.D. 95

    Once at Godthab Omega, Ronan reunites with his longtime friend Korath the Pursuer and former teammate from the Kree Starforce. Korath disregards the ruling against Ronan, knowing his friend to be innocent. Ronan enlists Korath in his search for Tana Nile, but before they can begin they are attacked by two women, Stellaris and Nebula. The battle is brief but brutal as Ronan quickly dispatches their attackers.

    Ronan learns from Korath that the Graces have been attacking settlements all over the planet on behalf of Gamora, the deadliest woman in the universe. Other beings of power seem drawn to Godthab Omega like moths to the flame, among them are Talos and Devos The Devastator.

    Unfortunately, it seems that Talos, Devos, Gamora, and even Ronan are all pawns of the cosmic being Glorian as he endeavors to recreate Godthab Omega into a paradise. Sadly, this not to be as the Annihilation Wave is on its way. Annihilus sensing Glorian in the act of creation directs one of his mates, Eradica, to take a contingent of ships to destroy all life on that world.

    A.D. 99

    Ronan and Gamora are in the midst of trying to kill each other when Korath informs them of the Annihilation Wave’s immanent arrival. They join forces to combat the Wave, but Glorian’s power ultimately defeats the Wave, though the effort leaves him a mental vegetable.

    Tana Nile is fatally wounded in the battle, but she admits to Ronan just before she dies that the Kree ruling House Fiyero instructed her to frame him. Ronan and Gamora prepare the survivors for transport to Kree space to warn the empire about the Annihilation Wave.

    At some point between day 100 and 200 since the Annihilation Wave breached the Crunch, several things happen in which we don’t have an exact date.

    Nova and Drax form the United Front to oppose the Annihilation Wave. The Battle of Tartus Minor during which the United Front is defeated. Peter “Starlord” Quill, Firelord, Stardust, Red Shift, Ronan, Gamora, and, presumably, their followers join the United Front.

    A.D. 183

    While visiting the final resting place of Captain Marvel and his son, Genis-Vell, Phyla and her lover Moondragon are assaulted by Thanos. He takes Moondragon captive leaving her torn ear with Phyla to give to Moondragon’s father, Drax as a message.

    A.D. 204

    The United Front barely holds out against the Annihilation Wave on the Kree world of Daedalus 5, taking Extirpa (another of Annihilus’ mates) prisoner in the process thanks to Firelord.

    A.D. 206

    Extirpa shows to the commanders of the United Front imagery (via the Annihilation Wave’s hive-mind) of Galactus’ and Silver Surfer’s defeat at the hands of Tenebrous and Aegis, declaring the war is already lost to the United Front.

    A.D. 212

    Phyla arrives at Daedalus 5 and tells Drax of Moondragon’s fate. He seems determined to fulfill his purpose. To destroy Thanos even if it means the death of his daughter. When members of House Fiyero attempt to arrest Ronan he kills them. Praxagora arrives with Super-Skrull’s body and tells of his honorable death. Without warning Ravenous invades with Terrax, one of the Mad Thinker’s androids, Paibok, and the Infant Terrible, all controlled by parasites.

    The battle is evenly matched until Ravenous is joined by the Centurions one hundred warriors from many of the worlds conquered by the Annihilation Wave. The United Front’s defeat is quickly turned into a rout when Red Shift and Stardust become aware that Galactus is in the vicinity, the world is lost. In the chaos that follows Super-Skrull is miraculously resurrected by a fallen Firelord. Drax stays behind to get a shot at Thanos, leaving Cammi with the evacuees. Red Shift and Stardust sacrifice their lives to hold off Galactus’ power from destroying the planet long enough for everyone to escape Daedalus 5.

    In the aftermath the United Front disbands in the face of this terrible defeat. Ronan, Super-Skrull, and Praxagora all set out for Hala to overthrow House Fiyero, while Nova plots to kill Annihilus.

    A.D. 220

    Drax manages to get off-world before it is consumed by Galactus’ power (controlled by Thanos), he reaches Eradica and kills her, using the vessel to get closer to Thanos’ ship. Meanwhile, Nova warns Earth of the Annihilation Wave, but intercepts transmissions about how the Superhuman Registration Act has fractured the heroes into a Civil War.

    On Hala, Ronan, Super Skrull and Praxagora discover that House Fiyero has brokered a treaty with the Annihilation Wave, which would shelter Ravenous and the Centurions on Hala. A furious Ronan delivers a crushing blow to Ravenous. Discovering the Supreme Intelligence lobotomized, a merciful Ronan ends its existence. He is quickly declared emperor by the Kree people.

    Moondragon reveals through her scans that Annihilus’ ultimate goal is to end all life in not only our universe but the Negative Zone as well, so that he can rule over the void that remains. No longer interested in helping Annihilus, Thanos releases Moondragon from the parasites, and is about to release Galactus when Drax bursts in and tears Thanos’ heart from his chest as Moondragon helplessly looks on.

    Moondragon explains the circumstances to her father and he attempts to make it right by freeing the Silver Surfer who in turn frees Galactus, who in his rage decimates the Annihilation Wave.

    As the Annihilation Wave finds itself quickly becoming annihilated by an angry Galactus, Nova, Phyla, and Quill confront Annihilus. At first Annihilus brutally overpowers Nova, but the Quantum bands choose Phyla to be their new bearer, turning the tide. Annihilus is weakened enough for Nova to tear his insides out, killing him.

    With the Annihilation Wave destroyed by Galactus and Annihilus dead, the threat is over for the time being.

    Aftermath

    A.D. 222

    With Annihilus dead, the parasites controlling Terrax, Paibok, and Delinquent are deactivated. The trio escape to New Xeron, a world ruled by the Space Parasite, whom Terrax kills and then he destroys the planet, reminding the universe that he is a man to be feared.

    A.D. 227

    Stardust reforms after its destruction and returns to Galactus and finds that his former master requires more sustenance to survive. Stardust gives Galactus the energy of the last survivors of its race as a demonstration of its loyalty to Galactus.

    A.D. 268: Armistice Day

    Hostilities are brought to an official end and a treaty is signed. All of Skrull space and large portions of Kree space (including the one time capitol of Kree-Lar) are ceded to Ravenous and the surviving forces of the Annihilation Wave.

    Phyla and Moondragon are reunited. Phyla still bears the Quantum bands and considered following in Quasar’s footsteps and her father, Mar-Vell as Protector of the Universe.

    Cammi seems to have found a new ally in Skreet.

    A.D. 274

    Firelord refuses to accept the terms of surrender and seeks revenge upon the former forces of the Annihilation Wave, though he learns that there are some Centurions who believe that Annihilus had corrupted their purpose. He briefly aids some Centurions on Omina Prime.

    A.D. 277

    On Kree-Lar, Annihilus’ queen dies giving birth to Annihilus’ scion, Annihilus himself is reborn.

    A.D. 281

    The Silver Surfer confronts Aegis and Tenebrous on behalf of his master. Destroying them within the Crunch, nearly dying himself in the process. He is healed by a very impressed Galactus.

    Once healed from his wounds sustained during his battle with Annihilus, Nova continues to act as the sole member of the Nova Corps, putting out brush fires still remaining from the war. Despite the Worldmind’s wishes he has yet to begin to rebuild the Corps.

    Issue Checklist

    Related Story-Arcs

    • Annihilation Conquest - Starting in June 2007, Annihilation: Conquest is the sequel to the Annihilation story-arc.

    Collected Editions

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107044/","id":107044,"name":"Earthfall","issue_number":"1"},"first_appeared_in_episode":null,"id":41287,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/86651-196399-annihilation.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/86651-196399-annihilation.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/86651-196399-annihilation.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/86651-196399-annihilation.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/86651-196399-annihilation.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/86651-196399-annihilation.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/86651-196399-annihilation.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/86651-196399-annihilation.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/86651-196399-annihilation.jpg","image_tags":"All Images,gallery,Nova"},"name":"Annihilation","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/annihilation/4045-41287/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41289/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-05-01 00:13:06","deck":"Driven to desperation by the destruction of Coast City, Hal Jordan walks down a dark path that leads him to war against the Green Lantern Corps - and his own downfall.","description":"

    Hal Jordan visited the remains of Coast City, finding a tattered doll in the crater. This willed him to recreate his city, and a fountain of energy flowed from his ring, creating every detail of Coast City from Hal's mind. By doing this, he violated the most sacred rule of the Green Lantern Corps; Never use your ring for personal gain. The projection stopped, because his ring had run out of power. A Guardian Of The Universe presented a projection of himself to Jordan, explaining that he must be transported to Oa to surrender his ring.

    Hal refused, insisting that he needed more power. He drained the energy of the projection into his ring, and took off towards Oa.

    Seeing Hal take off, Kyle Rayner and his girlfriend Alex mistook him for a shooting star.

    On Hal's journey to Oa, the Corps sent its members to stop him. Hal killed them all, taking their rings, making it easier and easier to kill the next. In a desperate attempt to stop him, the Guardians gave Sinestro, former Lantern of Korugar. his ring back. Hal removed all his rings but one, and they fought, man to man. Hal beat Sinestro to a pulp with his bare hands, and finally snapped his neck.

    As Hal walked towards the central power battery, Kilowog, who had already been defeated by Hal, returned to stop him. They traded blows, but due to Hal's extreme determination, he unleased a blast from his ring that burnt the flesh off of Kilowog's bones. He confronted the Guardians, and flew into the central power battery, absorbing all of its energy, causing the battery to explode. He became a new being, known as Parallax. The explosion of the battery killed all of the guardians but one, Ganthet.

    Ganthet took a ring and flew to earth, giving it to an artist. The artist's name; Kyle Rayner.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-38445/","id":38445,"name":"Emerald Twilight, Part 1: The Past","issue_number":"48"},"first_appeared_in_episode":null,"id":41289,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1513/85676-194945-emerald-twilight.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1513/85676-194945-emerald-twilight.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1513/85676-194945-emerald-twilight.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1513/85676-194945-emerald-twilight.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1513/85676-194945-emerald-twilight.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1513/85676-194945-emerald-twilight.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1513/85676-194945-emerald-twilight.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1513/85676-194945-emerald-twilight.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1513/85676-194945-emerald-twilight.jpg","image_tags":"All Images,Images"},"name":"Emerald Twilight","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/emerald-twilight/4045-41289/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41407/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2016-07-11 23:11:27","deck":"The Mutant Massacre was a Marvel Comics crossover event beginning in 1986. It involved the X-Men, X-Factor, the New Mutants, Power Pack, Thor, and Daredevil. The principle writer was Chris Claremont.","description":"

    Plot Summary

    The Marauders stalk a mutant named Tommy from Los Angeles to New York City in order to find the location of the Morlocks. Once they discover the underground layer of the Morlocks they massacre hundreds of innocent mutants before either the X-Men or X-Factor can arrive to protect the rest. During the ensuing battle, Angel is crucified by Harpoon, and several of the X-Men are severly beaten. Eventually, the Power Pack, the New Mutants and the Mighty Thor arrive to tip the scales in favor of the X-Teams.

    Later, Sabretooth of the Marauders follows Wolverine back to the X-Mansion and destroys Cerebro. Then Psylocke confronts Sabretooth who falls off a cliff in order to escape. Wolverine pursues him while Psylocke scans Sabretooth's mind for information regarding the Marauders motives. Eventually, Sabretooth is met by Daredevil in New York City after he gets away from Wolverine, and the two clash in battle.

    Years later it is revealed that Gambit lead the Marauders in their attack under orders from Mr. Sinister.

    Collected Editions

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107057/","id":107057,"name":"The Morning After","issue_number":"210"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-164/","id":164,"name":"Out of the Past (Part 1)","episode_number":"301"},"id":41407,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2078758-essxmn006cvr4_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2078758-essxmn006cvr4_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2078758-essxmn006cvr4_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2078758-essxmn006cvr4_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2078758-essxmn006cvr4_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2078758-essxmn006cvr4_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2078758-essxmn006cvr4_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2078758-essxmn006cvr4_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2078758-essxmn006cvr4_.jpg","image_tags":"All Images"},"name":"Mutant Massacre","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/mutant-massacre/4045-41407/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41408/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-08-11 14:28:55","deck":"After manipulating Madelyne Pryor and Magik, a horde of demons attack an unsuspecting Manhattan as the X-Men, X-Factor, New Mutants and Excalibur face the consequences. Meanwhile, Spider-Man, Daredevil and the Avengers are put through their paces as they attempt to defend New York from the growing demonic legions.","description":"

    Plot Summary

    When the young mutant hero Magik became ruler of the dimension of Limbo, one of its demon-sorcerers, N'astirh, began to covet the idea of not only controlling Limbo, but of become master of Earth as well.

    He gathered demonic agents in defiance of Limbo’s new ruler, S’ym, and finally launched his grand scheme. N'astirh orchestrated a kidnapping of 13 babies of Earth in hopes to sacrifice them in a ritual known as Inferno, which would have given him control over both dimensions. Previously, N'astirh had also contacted the woman known as Madelyne Pryor, sensing her power as a clone of Phoenix (Jean Grey) and helped her release her power in what would eventually make her the Goblin Queen.

    First, N’astirh opened a gateway between Earth and Limbo through which his demon horde could travel, using the 13 children's souls as energy for the pentagram-shaped nexus. Inferno had begun, and New York began to feel its effects. The weather turned hot, unearthly hot, and people began to succumb to their more evil desires. Even inanimate objects began to be effected, coming to life and acting in malicious, evil ways.

    N’astirh was ultimately defeated by the New Mutants and Magik, who rejected her dark heritage and reverted to her innocent six-year old self. They were also helped by the X-Terminators, a team of mutant teenagers.

    During the event, Madelyne Pryor, as the Goblin Queen, had taken the opportunity to confront the X-Men and the original X-Factor, and she even managed to make N’astirh her servant, for a time. However, she was finally defeated when the teams joined forces against her.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-30213/","id":30213,"name":"Invasion of the Baby-Snatchers","issue_number":"1"},"first_appeared_in_episode":null,"id":41408,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2894150-inferno_2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2894150-inferno_2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2894150-inferno_2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2894150-inferno_2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2894150-inferno_2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2894150-inferno_2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2894150-inferno_2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2894150-inferno_2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2894150-inferno_2.jpg","image_tags":"All Images,Art,Earth-616 Archangel,Earth-616 Beast,Earth-616 Cyclops,Earth-616 Iceman,Earth-616 Madelyne Pryor,Earth-616 Marvel Girl,Earth-616 Mr. Sinister,Earth-616 X-Factor"},"name":"Inferno","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/inferno/4045-41408/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41409/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-05-12 19:07:13","deck":"Carnage, Shriek, Doppelganger, Demogoblin, and Carrion goes on a killing spree in New York.","description":"

    Plot Summary

    Maximum Carnage is a crossover that ran in the Spider-Man titles in '93. Spider-Man and Venom have to team up to take out Carnage and his 'family'.

    The story is that Carnage, Shriek, Doppelganger, Demogoblin, and Carrion goes on a killing spree in New York, and Spider-Man and Venom has to team up to stop them assisted by Black Cat, Captain America, Cloak, Dagger, Firestar, Deathlok, Morbius, Iron Fist and Nightwatch.

    While attending Harry's funeral, Peter promises MJ that he'll take a break from super-heroics for a while. Meanwhile, Carnage has just escaped from prison and has formed an alliance with the super-villainess Shriek, and together they go on a hunt for Spider-Man and Venom. During their hunt, they encounter Spider-Man's doppleganger and they take him in as their \"pet\". When Peter learns of Carnage's escape, he breaks his promise and dons his costume to fight this menace.

    He is eventually confronted by Carnage and his team-mates and is easily knocked out. Before they could finish him off however, Cloak and Dagger appear and teleport Spidey just in time to tend to his wounds. They are then attacked by Doppleganger and Shriek before Carnage himself joins the fight and lays waste to the heroes before they could escape. Elsewhere, Venom discovers of Carnage's return and decides to return to New York and attempts to fight them on his own but he is defeated. While Spidey was searching for Carnage, he discovers Demogoblin in a park and fights him, but the villain manages to escape. When Peter returned home, he found a defeated and injured Venom asking for his help in defeating Carnage who has recruited Demogoblin and Carrion to his \"family\".

    Spider-Man has now formed his own team consisting of himself, Venom, Cloak, Dagger and Black Cat. They attack the villains but they are again defeated. Venom then recruits Morbius into their team and they fight Carnage's team again at a night club but the fight ends with the villains' escape and Spidey's team helping the civilians. After that, they obtain a Sonic gun from Reed Richards and recruit Firestar. They lead Carnage to his old foster home and ambush him with Firestar and the Sonic Gun, giving Venom an opportunity to kill Cassady but is stopped by Spider-Man. Shriek then attacks Venom, giving Carnage the chance to recuperate and the two team clash again before Captain America appears and joins the heroes. Venom is kidnapped and tortured by Carnage while Spidey and his team-mates rendezvous at Avengers Mansion where they recruited Deathlok and Iron Fist.

    Soon Nightwatch joins the team and they follow the villains to the Statue of Liberty where Venom is being held. Venom was able to escape and he joins the heroes in their final clash against the villains. Iron Fist and Dagger combine their powers through Deathlok to channel an energy that calms and weakens the villains, giving the heroes the chance to gain the upper hand and defeat their foes except for Carnage who was able to escape. Venom and Spider-Man confront Carnage at a Cemetery where they fight and Carnage is defeated in an explosion. Venom makes his escape and Carnage is placed in a stasis chamber while the rest of his \"family\" are taken to prison. Black Cat is fearful of Carnage's return but Peter tells her after looking at the Osborns' graves that \"not all monsters return\".

    Collected Editions

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-57288/","id":57288,"name":"Maximum Carnage, Part 1: Begins Here","issue_number":"1"},"first_appeared_in_episode":null,"id":41409,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2050885-maximum_carnage.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2050885-maximum_carnage.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2050885-maximum_carnage.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2050885-maximum_carnage.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2050885-maximum_carnage.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2050885-maximum_carnage.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2050885-maximum_carnage.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2050885-maximum_carnage.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2050885-maximum_carnage.jpg","image_tags":"All Images,Maximum Carnage,Story Arcs"},"name":"Maximum Carnage","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/maximum-carnage/4045-41409/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41641/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2012-12-11 23:25:29","deck":"When Superman goes into retirement after the rise of numerous vigilante \"heroes\", who will defend the world against the coming destruction? \r\nIllustrated by Alex Ross","description":"

    Plot

    Sometime in the not-so-distant future, Superheroes have lost sight of their true goal, their true calling. Most of the Super Villains are dead or taken care of, and the Heroes now battle each other over turf, bragging rights or whatever. Most of the Metahumans are descendants of former heroes, such as Nightstar, daughter of Dick Grayson (Nightwing) and Starfire’s daughter and Lightning, daughter of Black Lightning. The Heroes of the previous generation are mostly retired, following the lead of their greatest champion, Superman.

    A battle finally ensues between the two generations. All the while, we watch through the eyes of an elderly pastor, Norman McKay. Norman was chosen by the Spectre to choose the fate of the guilty during Armageddon. Norman was chosen because of his relationship with the now deceased Wesley Dodds, the Sandman. McKay was the pastor in the hospital room when the Sandman died, and the Sandman passed his visions to McKay.

    Superman’s Retirement

    Superman, the greatest hero of Earth’s History, had been defending his adoptive planet for many years. He had grown to love and protect humanity. He had fallen in love with Lois Lane and married her. Superman manages to protect Earth daily. Until the day Joker came to town. The Joker killed 93 people at the Daily Planet, including Lois Lane. The slowly aging Superman searched everywhere for the Joker but the Joker was apprehended by the authorities. While in their custody, the Joker was killed in cold-blood by an up and comer Superhero named Magog. Infuriated, Superman took Magog to jail. Magog stood trial for the murder of the Joker but was acquitted. When this happened, Superman decides humanity and time had tossed him away, and retires.

    Kansas

    After Superman’s retirement, many of his contemporaries followed his lead. This allowed the new generation of win at all costs Superheroes to take the lead in “crime fighting” and “world saving”. In fact, while Magog’s team of Superheroes were chasing down a “villain”, an accident occurs in which all of Kansas is destroyed. This is the queue for Superman’s return after ten long years. Superman reforms the Justice League with Wonder Woman, Red Robin (Dick Grayson), Green Lantern (Alan Scott), Red Arrow, Hawkman and others. This sets the stage for a “New School” versus “Old School” battle.

    Collected Edition

    Non-U.S. Editions

    Novelization

    Kingdom Come

    \"No
    On rare occasions, a graphic novel gains the critical and popular acclaim needed to become both a genre legend and a mainstream phenomenon. Kingdom Come, DC Comics' multiple award-winning bestseller, is such a classic. Now the epic story by celebrated writer Mark Waid and artist Alex Ross has been transformed into a thrilling new novel, combining passion and fantasy as generations of heroes battle in a war of visions and bblical apocalypse.
    Includes four original black and white drawings by Alex Ross.
    • Written By: Elliot S. Maggin
    • Publisher: Warner Books, Aspect (September, 1999)
    • ISBN-10: 0553285688
    • ISBN-13: 978-0446606691
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-42353/","id":42353,"name":"Strange Visitor","issue_number":"1"},"first_appeared_in_episode":null,"id":41641,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1012/88406-136559-kingdom-come.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1012/88406-136559-kingdom-come.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1012/88406-136559-kingdom-come.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1012/88406-136559-kingdom-come.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1012/88406-136559-kingdom-come.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1012/88406-136559-kingdom-come.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1012/88406-136559-kingdom-come.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1012/88406-136559-kingdom-come.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1012/88406-136559-kingdom-come.jpg","image_tags":"Alex Ross,All Images,Kingdom Come"},"name":"Kingdom Come","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/kingdom-come/4045-41641/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41658/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-10-04 09:11:31","deck":"Jesse Custer forms his plan to sacrifice himself so that God will return to His throne and be killed by the Saint of Killers.","description":"

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-83149/","id":83149,"name":"Texas, By God","issue_number":"59"},"first_appeared_in_episode":null,"id":41658,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2914953-preacher_59_ad.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2914953-preacher_59_ad.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2914953-preacher_59_ad.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2914953-preacher_59_ad.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2914953-preacher_59_ad.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2914953-preacher_59_ad.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2914953-preacher_59_ad.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2914953-preacher_59_ad.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2914953-preacher_59_ad.jpg","image_tags":"All Images"},"name":"Alamo","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/alamo/4045-41658/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41708/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-02-03 11:18:24","deck":"Here Comes Tomorrow is an alternate future in which the sentient bacteria Sublime tries to use the Phoenix to destroy all creation.","description":"

    After Xorn killed Jean Grey, the X-Men quickly fell apart. Professor X decided that he was finally finished working at the Xavier Institute. Cyclops lost the will to continue trying, and without Cyclops involvement Emma Frost also withdrew. Beast attempted to keep the school going, but quickly burned himself out from the effort. He turned to the mutant-enhancing drug Kick before it was known that Kick was actually the aerosol form of the Sublime bacteria. Sublime took over Beast's body, and used it to continue his quest for mutant extermination. The Sublime Beast would experiment on himself, turning white and slowing down the aging process. With access to genetic samples of all the X-Men he created a hybrid race from mutant DNA that were called the crawlers. The crawlers were based on Nightcrawler's DNA, giving them a similar appearance and his power of teleportation. He continued to develop them, adding in the genetic traits of other mutants and giving the ability to duplicate themselves (from the Madrox), eye-beams (presumably from Cyclops's power), wings, and more. He developed a laboratory that worked as a factory for generating crawlers, and doing other experiments. At some point he gained control of Fantomex, grafting new parts onto him and turning him into the last of his U-Men. Now called Apollyon the Destroyer, Fantomex became the Beast's herald, carrying out his bidding.

    Around 150 years from Jean's death a Phoenix Force egg was found dormant on the moon. This was brought to the Earth. The mutants that discovered the Egg did not have it for long as Apollyon was sent to retrieve it for his master. If Beast were to gain control of the egg he would have control over the Phoenix would be virtually unstoppable. The egg was entrusted into the care of Tom Skylark. Tom's longtime companion Rover, one of the last of the original Sentinels, was used to transport the egg. Tom and Rover escaped with the egg as his teammates were being slain by Apollyon and the crawlers. Tom sought out the X-Men to help protect the egg. After he had Rover destroy a pack of crawlers that were following them Tom located E.V.A. E.V.A. was Apollyon's sentinel external nervous system when he was still Fantomex. She took them back to the X-Men's base not knowing that one of the crawlers had hitched a ride inside of Rover.

    Back at the X-Men's base the crawler teleported out and began to duplicate himself. E.V.A. called upon the X-Men to help protect the egg. Tito arrived to help beat off the intruders, but several swarmed over Rover and were able to teleport the egg back to the Beast's lair. The surviving three Stepford Cuckoos, now simply going by the three-in-one told Wolverine and Cassandra Nova (now going by Cassandra Nova Xavier) about their dreams of the start of a new dark age. Now possessing the Phoenix egg the Beast would try to live out his dreams of stopping evolution. He could potentially encode the traits of the Phoenix into his armies or even in himself. Tom got Rover back, disinfected and safe. Rover looked even more torn up than before.

    Back at the Beast's layer Apollyon begged him for grafts from the phoenix. Beast called upon his crawlers to use their power to incubate the phoenix egg, causing it to hatch prematurely. Jean Grey came out of the egg, drawn back from the White Hot Room early and because of this was confused. Beast greeted her, unknowing that her old friend was now taken over by the Sublime entity. Beast sent her out to kill the Termids, a race of insects, where she found Bumbleboy the X-Men's ambassador to the Termid multitude. She killed him but before sending his consciousness to the White Hot Room she kept his essence in his skull to learn about the X-Men.

    Meanwhile Beast had grafted the traits of a mind parasite onto one of his crawlers and sent it to destroy the X-Men. The crawler burst both of its lungs to teleport into the school through the X-Men's shields. The X-Men fought it, not realizing that the mind-parisite was taking hold of them. The out of control X-Men came after the Stepford Cukoos who were held up with Cerebra. Not wishing to be eaten by the Mind Parasite that had taken hold of the others, the Cuckoos turned on an auto-destruct sequence for their consciousness, and slapped each other a high-five as the former X-Men broke into the building.

    Deep in the ocean Mer-Max was being attacked by a ship full of Crawlers. Cassandra Nova and Martha Johansson arrived in their jet just in time, sending the Crawlers into fits of pain with intense telepathic noise. Rover, Tom Skylark, Beak, and E.V.A followed right behind. Tom was about to tell E.V.A. something in case they didn't make it, but before he got the chance the Crawlers began to teleport around Rover, and attacked him until he plunged into the ocean depths. Tom cried out for his partner to no avail, and the ocean liner they were on was now sinking.

    When Phoenix arrived back she asked Submlime about the X-Men. He told her that they were enemies that needed to be destroyed. He explained to her that they just continue to become more powerful, resisting his influence and dominating the planet. He wishes to finally exterminate them. Sublime sent Phoenix after the remaining X-Men, and he remained at his hide-out. Sublime told the agonized Apollyon about his life which began eons ago. He described how as a bacterial life form he arose from the Earth to become the dominant life-form. Even the rise of humanity could not sway him, and he continued to infect and spread as he pleased. The rise of mutants created generations of homo-superior that were growing more and more immune, some capable of power on a cosmic scale. These mutants challanged his position as the dominant life form on Earth, and for the first time he felt the fear of extinction. In almost unbearable anguish Apollyon demanded Sublime give him the power of the Phoenix, grafts that would finally make him feel whole. As Sublime finished his story he climbed into a chamber which would give him a portion of the Phoenix power, not Apollyon.

    Back in the ocean Phoenix had found Wolverine. Phoenix told him how the mutants time was over and that she would be their destroyer. Wolverine tried to talk Jean out of it, trying to force her to remember her life before. Cassandra and Martha flew in. Cassandra had read the Shi'ar files on the Phoenix, and discovered how to telepathically unplug that power from its host. Wolverine caught Jean and she seemed to be remembering her old life. Wolverine described how after her death Cyclops simply gave up, and that Beast eventually became infected by Sublime due to the pressures of trying to run the school. Sublime arrived with his new power and blew up Cassandra and Martha's ship. Beak was the first to attack and was fried by Sublime. Tom summoned what he could of his power to call Rover back to help. Sublime fought off both Rover and E.V.A., causing E.V.A.'s software to go haywire. After watching Beak die Wolverine lunged at Sublime, but it was no use. Sublime turned off Wolverine's healing factor and cast him aside. As he fell Martha assured him that they were all going to the White Hot Room.

    As Sublime believed his victory was guaranteed Phoenix informed him that he had lost. She extracted the Sublime bacteria from Beast's body. Beast was back, but not for long. Appolyon had arrived and removed Beast's head. Wolverine was finally at peace and Tom rushed to aid the dying E.V.A.

    Phoenix went back to the White Hot Room where she sanitizes that timeline by cutting it off where it went bad. Hundreds of other Phoenix hosts were there with her and helped her including Kid Omega, the Green Phoenix. Here Jean was dressed in a white and gold Phoenix outfit as the White Phoenix of the Crown. She healed the broken time-line, urging Cyclops to live. Back in the present, when Scott had made the decision to abandon the X-Men (thereby causing this timeline to occur) Scott was again presented with the decision to leave or stay by Emma Frost. Standing over Jean's grave Scott decided this time that he wanted to go on, fixing the time-line permanently.

    Related Story-Arcs

    Planet X - Jean's death at the hands of Xorn created the alternate time-line where Here Comes Tomorrow takes place.

    Additional Information

    This reality is designated Earth-15104.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106246/","id":106246,"name":"Here Comes Tomorrow, Part 2: Surrender the Starlit City","issue_number":"152"},"first_appeared_in_episode":null,"id":41708,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/181268-135500-x-men.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/181268-135500-x-men.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/181268-135500-x-men.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/181268-135500-x-men.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/181268-135500-x-men.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/181268-135500-x-men.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/181268-135500-x-men.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/181268-135500-x-men.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/181268-135500-x-men.jpg","image_tags":"All Images,Alternate Earths,Art,gallery"},"name":"Here Comes Tomorrow","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/here-comes-tomorrow/4045-41708/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41745/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-06-13 03:05:22","deck":"Fall of the Mutants was an event in which dramatic changes were made to the status quo of the X-men, X-Factor and New Mutant Teams.","description":"

    This cross-over featured three ongoing x-titles, X-Men, X-Factor, and the New Mutants.

    X-Men

    Storm was depowered, she was also the Leader of the X-Men at this time. She was on a mission to find Forge a mutant inventor whom she hope could find a way to restore her former power.

    This led the rest of the X-Men on a journey after her, the ended up crossing paths with Freedom Force, in Dallas,Texas. The Freedom Force was led by Mystique, and were a government supported team of ex-villains. Mystique and the Freedom Force were under strict orders to sub-due the X-Men for they had failed to comply with the rules of the Mutant Registration Act.

    The two groups engage in a super-powered battle. In the midst of the battle the mutant known as Destiny catches a small glimpse of the near future. The vision show that everyone inside of a particular Skyscraper in Dallas will soon be dead.

    Then when the weather changes to snowy in the middle of July in Dallas, as well as prehistoric creatures and other monsters begin to randomly appear, both teams realise that something of grave importance is going on. They put aside there differences for the time being and co-operate as one team to try and restore the balance.

    Elsewhere Storm and Forge are in a new world where time moves at an accelerated rate. while only mere minutes pass in real time, Storm and Forge spend a year in this altered time. allowing Forge the time he needs to build a device that restores Storms powers. Forge and Storm combine their Magic and Lighting respectively to open a portal back to the real world and to Dallas.

    Back in the city with the X-Men, the X-Team learns of something Forge did in the Vietnam War that created a being known as the Adversary whom is behind the madness and utter chaos surrounding them.

    Storm, Wolverine, Colossus, Rogue, Longshot, Dazzler, Psylocke, Havok, and Madelyne Pryor all end up having to sacrifice their lives just as destiny had foreseen. The sacrificed themselves using Forge's Magic to banish Adversary. Seeing that that the X-Men gave their lives to save humanity the goddess Roma granted them all their lives back as well as the ability to be invisible to any-means of detection other than plain sight. She also gave them the Siege Perilous which give the X-men the ability to reset time.

    X-Factor

    Cyclops, Marvel Girl, Beast, Iceman and Caliban are transported aboard the evil mutant Apocalypse's where they are then offered the once in a lifetime chance of being on of Apocalypse's team to aid in his war against the humans. The X-Factor team refuses Apocalypse's offer and is the pitted in battle against his four horsemen, Death is revealed to bet the long thought deceased Angel, now re-born as Archangel. Archangel quickly and easily defeats the entire team, and restrains them all except for Caliban, who had now offered his services to Apocalypse in return for stronger powers. Caliban also begins to refer to himself as Archangel.

    Apocalypse then turns his sights on New York City, and begins his attack. The young team known as Power Pack shows up and helps in defending the city, minimising damage and casualties. This allows Iceman to form a plan to defeat Apocalypse. Iceman then attacks Apocalypse only to have his most powerful attacks easily repelled. Although Apocalypse fends off Iceman with ease, his airship is badly damaged, and his horsemen defeated. He withdraws before suffering further losses.

    New Mutants

    Cannonball, Cypher, Magik, Mirage, Sunspot, Warlock and Wolfsbane, all go to visit the island of their good friend Bird-Brain. While their the team learns that Bird-Brain's creator the Anti-Mator is creating new life and doing cruel experiments on them. During their Rescue attempt the team is interrupted by the Right who shoot and kill the language mastering mutant Cypher when he dodges in front of Wolfsbane saving her.eventually Bird-Brain and Magik defeat the Right and the Anti-Mator, by using Magik's abilities to transport the villains to Limbo. Magneto then blames the humans for Cypher's death, gives up on the X-Men's teachings.

    Non-U.S. Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-29158/","id":29158,"name":"False Dawn!","issue_number":"225"},"first_appeared_in_episode":null,"id":41745,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2893267-x_men___fall_of_the_mutants_hc__minutemen_syl3ntbob___page_814b.png","image_tags":"All Images,Art,Earth-616 Apocalypse,Earth-616 Archangel,Earth-616 Beast,Earth-616 Cyclops,Earth-616 Horsemen,Earth-616 Iceman,Earth-616 Marvel Girl,Earth-616 Pestilence,Earth-616 X-Factor,Fall of the Mutants,Famine,War"},"name":"Fall of the Mutants","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/fall-of-the-mutants/4045-41745/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41751/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2011-05-05 17:04:11","deck":"Every year Gran'ma Ben is the sole human entry in The Great Cow Race. This year, Phoney Bone starts collecting bets on a mystery cow. What does he know that everyone else is missing?","description":"

    Having been run out of Boneville, Phoney Bone arrives in Barrelhaven looking to make some extra dough. Unfortunately the people of Barrelhaven tend to bet with commodities other than cash.

    It takes the sharp mind of Lucius to see through Phoney's plot and unmask Smiley Bone as the 'brains' behind the mystery cow. Lucius bets his inn on Gran'ma Ben to win.

    Just when you think you know what the outcome will be, the stampeding cattle, Gran'ma Ben and the Mystery Cow run into a rampaging horde of Rat Creatures.

    Hilarity ensues, but who will win the race?

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36461/","id":36461,"name":"The Spring Fair","issue_number":"7"},"first_appeared_in_episode":null,"id":41751,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/89375-198919-the-great-cow-race.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/89375-198919-the-great-cow-race.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/89375-198919-the-great-cow-race.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/89375-198919-the-great-cow-race.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/89375-198919-the-great-cow-race.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/89375-198919-the-great-cow-race.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/89375-198919-the-great-cow-race.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/89375-198919-the-great-cow-race.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/89375-198919-the-great-cow-race.jpg","image_tags":"All Images,gallery"},"name":"The Great Cow Race","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-490/","id":490,"name":"Cartoon Books","site_detail_url":"https://comicvine.gamespot.com/cartoon-books/4010-490/"},"site_detail_url":"https://comicvine.gamespot.com/the-great-cow-race/4045-41751/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41828/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-02-23 07:03:18","deck":"Diagnosed with lung cancer, John Constantine is willing to do anything it takes in order to survive.","description":"

    After finding out that he has non-operable lung cancer, John Constantine begins his own personal quest to get rid of it.

    His journey begins with a visit to an old friend in Ireland, only to find out that his friend is dying as well. John manages to save his friend's soul from the First of the Fallen, tricking the devil into drinking holy water.

    This is a move that has its consequences, however. Not able to find any other cures, Constantine makes a deal with the Trimuverate, a group of demons that currently rule Hell. He promises his soul to two of the three, then proceeds to kill himself. The two demons and the First of the Fallen agree to cure his cancer as to avoid a civil war in hell.

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-34167/","id":34167,"name":"The Beginning of the End, Dangerous Habits - Part One","issue_number":"41"},"first_appeared_in_episode":null,"id":41828,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/14/148518/2888664-hellblazer_ad.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/14/148518/2888664-hellblazer_ad.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/14/148518/2888664-hellblazer_ad.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/14/148518/2888664-hellblazer_ad.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/14/148518/2888664-hellblazer_ad.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/14/148518/2888664-hellblazer_ad.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/14/148518/2888664-hellblazer_ad.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/14/148518/2888664-hellblazer_ad.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/14/148518/2888664-hellblazer_ad.jpg","image_tags":"All Images"},"name":"Dangerous Habits","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-521/","id":521,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4010-521/"},"site_detail_url":"https://comicvine.gamespot.com/dangerous-habits/4045-41828/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41878/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-03-10 11:27:49","deck":"A very significant and somewhat controversial story arc during its time pitting Magneto and his Acolytes against the various X-teams.","description":"

    After gathering the remaining Acolytes after Asteroid M was destroyed in X-Men, Magneto captures the space station Graymalkin from Cable (nearly killing him in the process) and renames it Avalon. Sending his Acolytes, especially the newest member Exodus, out to recruit “worthy” mutants to his sanctuary Magneto attempts to create a nation of mutant-kind. Magneto himself arrives at Illyana Rasputin’s funeral and Colossus agrees to join him.

    Feeling threatened by his activities, the U.N. enables the “Magneto Protocols”, a network of satellites which would prevent him from using his powers (and therefore bring more mutants to Avalon) within Earth’s atmosphere. Magneto destroys the network with a massive electromagnetic pulse, blacking out the entire planet and killing thousands.

    The X-Men retaliate with a small strike team, including Professor X in a Shi'ar exoskeleton, which slips into Avalon, attacking Magneto. In the course of battle, Magneto rips the adamantium from Wolverine’s skeleton. In retaliation Xavier wipes Magneto's mind, leaving him in a vegetative state.

    Effects

    Both sides withdraw, but a seed of Magneto’s rage remained hidden within Xavier’s psyche and they merged later to create to psychic entity Onslaught.

    Collected Editions

    Reprints

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37532/","id":37532,"name":"Fatal Attractions Part 1: The Man Who Wasn't There","issue_number":"92"},"first_appeared_in_episode":null,"id":41878,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/89987-100074-fatal-attractions.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/89987-100074-fatal-attractions.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/89987-100074-fatal-attractions.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/89987-100074-fatal-attractions.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/89987-100074-fatal-attractions.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/89987-100074-fatal-attractions.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/89987-100074-fatal-attractions.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/89987-100074-fatal-attractions.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/89987-100074-fatal-attractions.jpeg","image_tags":"All Images,Fatal Attractions "},"name":"Fatal Attractions","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/fatal-attractions/4045-41878/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41931/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-09-16 16:42:51","deck":"Loki schemes to destroy the Avengers and many of the world's other heroes by recruiting super villains he dubs The Prime Movers: Magneto, Kingpin, Mandarin, Wizard, Dr. Doom, and the Red Skull. All of them are tasked with attacking heroes they normally would not.","description":"

    Plot Summary

    A disguised Loki gathers a group of supervillains he calls the Prime Movers to join forces and destroy the Avengers---whom Loki had actually inadvertently created back in the day---and to strike out at his arch-rival Thor. Dr Doom, Kingpin, Magneto, Mandarin, Red Skull and the Wizard agree, while Apocalypse (in the pages of X-Factor #50), Cobra, Mad Thinker and Namor decline the offer. As part of his plan, Loki engineers a prison break at the Vault. The main thrust of the issues involved in this line-wide event is that heroes face off against unfamiliar enemies, for example, Mandarin appears in the X-Men issues, and Rusty and Skids of the New Mutants battle the Vulture.

    The assembled villains fail to operate in a cohesive way, thwarting their plans to kill their enemies. Loki ends up imprisoning the Kingpin, Mandarin and Wizard in frustration, when the Wizard accidentally reveals the location of their secret meeting place on the Isle of Silence. The Avengers track Loki down and Thor banishes him back to Asgard. Doctor Doom backs out of the arrangement and pursues his own scheme to defeat the Fantastic Four, as his own self-importance means he can't allow anyone else to defeat them. While the Fantastic Four are called to Congress to testify on the proposed Superhuman Registration Act, he sends a random assortment of villains to attack them.

    Although this event was huge in its scope, covering almost every title in Marvel's line-up at the time, it had few lasting consequences. The most significant outcomes perhaps were the transformation of Psylocke into an Asian ninja assassin, and the first appearance of the New Warriors team in comics (in the pages of Thor). Although Spider-Man briefly gained the powers of Captain Universe, he lost them fairly soon afterward.

    Collected Editions

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-31923/","id":31923,"name":"The Doctor's Passion","issue_number":"249"},"first_appeared_in_episode":null,"id":41931,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2058671-34253_418260213855_829193855_4534343_1949873_n.jpg","image_tags":"Acts of Vengeance,All Images,Earth-616 Cabal,Story Arcs"},"name":"Acts of Vengeance","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/acts-of-vengeance/4045-41931/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41966/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2012-09-18 04:56:52","deck":"Avengers Reborn was a 4 issue story arc that ran in Avengers Spotlight 37-40. It was used to bring several Avengers out of comicbook limbo and revitalize the characters.","description":"

    Four Avengers are reborn in this series, they are Dr. Druid, Tigra, Black Knight and Vision.

    Avengers Spotlight - 37

    This issue focuses on the return of Doctor Druid to the regular universe. Previously, Doctor Druid had been lost in a Time Bubble with Kang Nebula. They realize that their idyllic life has been an illusion and escape back to earth. She traps the city the end up in within a time bubble before the age of marvels. She ejects him from the time bubble and he lands back at the monstary were he first learn his mystical powers. On this journey he learns that his mentor was actually the Ancient One, and he was meant to be a precursor to Dr. Strange...a John the Baptist almost. This gives Dr. Druid a renewed sense of purpose. He returns to the city and defeats Kang Nebula. In the resulting temporal battle he is de-aged.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33307/","id":33307,"name":"Interlude In A Peaceful Kingdom","issue_number":"37"},"first_appeared_in_episode":null,"id":41966,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96296-97308-avengers-reborn.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96296-97308-avengers-reborn.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96296-97308-avengers-reborn.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96296-97308-avengers-reborn.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96296-97308-avengers-reborn.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96296-97308-avengers-reborn.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96296-97308-avengers-reborn.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96296-97308-avengers-reborn.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96296-97308-avengers-reborn.jpg","image_tags":"All Images,Avengers Reborn"},"name":"Avengers Reborn","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/avengers-reborn/4045-41966/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42106/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2019-05-08 03:30:21","deck":"After a devastating earthquake, Gotham is declared a disaster zone and closed to the outside world.","description":"

    Plot Summary

    Gotham City had suffered the results of a magnitude 7.6 earthquake in the earlier \"Cataclysm\" storyline. Previous disasters, such as two separate plague outbreaks, caused many to want to write off Gotham completely. The U.S. Government gave a timeline. At the end, all bridges were destroyed and all known paths out of the island city were covered by the National Guard. The Justice League of America were forbidden by law from entering the city. They kept busy defeating outside threats to the city, along with other crises. The situation inside was left to Batman and his allies; Superman offered his help in the city, but after staying for one day realized this was not the type of problem he could fix with just power. Upon the realization, he leaves Gotham in the hands of Batman, (although Superman, in the guise of Clark Kent, would appear again months later to check on Batman's progress).

    The city was swiftly carved up by gangs and various supervillains Batman had battled over the years. Jim Gordon and several well known Gotham officers chose to stay behind and an unknown number of policemen willingly followed suit, all in an effort to protect the innocent people. Oracle and Huntress also ended up on the inside.

    Huntress adopted the Batgirl persona in Batman's absence, realizing that Gotham needed 'Bat-Personnel' to keep the situation under control. As Bruce Wayne, Batman had left the city to try to solve the problem politically, using his name and money to convince the federal government to delay closing off Gotham. Unfortunately, his efforts failed, arguably because he appeared to the government as Bruce Wayne an air-headed billionaire with little concern for serious issues of which the No Man's Land was exemplary.

    Some 100 days after the Federal Declaration of the No Man's Land, he returned to Gotham to reclaim the Batman title and his people, many of whom had long since given up on him. Even his former ally, Jim Gordon, believed that Batman had abandoned Gotham to the villains.

    What Batman returned to was a state of unrest and disorder on a grand scale. Since there was no longer anywhere to spend it, money became worthless; people would barter anything from batteries to services to protection for daily necessities. It seemed the only person to have any use for cash was The Penguin, who had nightly events where those few with cash left spent it all on such rare and simple items as an apple. The Penguin, despite his riches and implicit opportunities to flee the city, instead opted to stay. He had his own mysterious link to the outside and apparently enjoyed taking advantage of the dire situation in Gotham.

    With Batman being gone for so long, and his very existence debatable in the Gotham underworld, the Huntress was able to pass off as not Batgirl, but Batman himself to many of the criminals she faced. Following the example of the gangs in town, she even tagged by graffiti her territory with the bat symbol. She went back to her Huntress costume when the Dark Knight confronted her after her failure to hold territory against Two-Face's forces, without any pleasantries. The third Batgirl, Cassandra Cain, estranged daughter of assassin David Cain, made important contributions to the effort during this time, as well as starting a lasting friendship with the Oracle.

    In an effort to redeem herself, the Huntress went to the aid of a church that was open as a hospital and sanctuary to anyone desiring it in Gotham. Having no protection because of their benevolent intentions, the church and its kind staff were sitting ducks. The Huntress' desires to use her expertise to protect them was seen more as an unnecessary and warlike show of force than as help, even when she was trying to halt the Scarecrow's machinations to sabotage the church's efforts.

    The weaker gang-leaders fell first, mostly to Batman and or James Gordon's officers. Street by street battles were fought, with deaths on both sides. Eventually Gordon's forces split, with half the squad following the more violent Petit, who believed that the only solution was to meet violence with more violence rather than Gordon's more peaceful methods. Two-Face became a major warlord, acquiring and losing territory every so often, and caused major problems for the police. He kidnapped Jim Gordon, killing two of his guards, in revenge for breaking a previous alliance, although in the subsequent trial Gordon was acquitted by the defence of Harvey Dent, Dent concluding that since Gordon had been essentially blackmailed into the alliance the agreement was void. The Penguin, as previously mentioned, remained in the city and was approached by Mercy Graves, acting on behalf of Lex Luthor, to begin a rudimentary clean-up of the downtown districts for Luthor's eventual move-in. Poison Ivy took over Robinson Park. She ended up caring for numerous orphans and was left alone by Batman in return for providing food. Zsasz owned his own territory, as did Mr. Freeze.

    Bane was also involved indirectly as a strong man for Lex Luthor; he notably destroyed the Hall of Records to fulfill one of Luthor's goals. He also drastically reduced Two-Face's territory in the process, making him insignificant. Despite his status as a supervillain, the Scarecrow was welcomed into a church filled with refugees and manipulated various factions in a plot to send the church's refugees spiraling into fear and despair. The Riddler, strangest of all perhaps, actually fled Gotham and spent the year barely noticed. The Joker made the most of his rare appearances. He spent some time as the ruler of an apartment building filled with supplies. This ended up, naturally, with lots of dead people, many from his own gang. He later re-formed and attacked Petit's territory. During the attack, he captured several of Petit's men, dressed them up to look like him, and forced them to walk in front of Petit; the now-insane cop shot all of them without even confirming whether or not they were the real Joker. When Petit killed an officer who tried to desert, Huntress knocked him out, subsequently facing the Joker and around twenty of his men all by herself, suffering near-fatal wounds in the process before Batman and Nightwing showed up to help her.

    When Lex Luthor's money illegally brought in an army of construction workers, the Joker tried to kill his share. Bane, employed by Luthor now, appeared again, protecting the innocent workers from death, maiming and worse.

    Near the end of the saga, as a statement to murder hope with the news that the No Man's Land was intended to end on New Year's Day, the Joker decided to kill all the children born during the \"No Man's Land\" storyline. Sarah Essen, Commissioner Gordon's wife, ended up confronting the Joker alone in Gordon's police headquarters. While saving a baby from a dangerous drop to a hard floor, she was shot and killed. Gordon restrained himself from killing the Joker, opting only to shoot out his knee. The Joker, quite naturally, found this unspeakably funny, since it had been he who crippled Barbara Gordon.

    Eventually, thanks in no small part to the financial and political machinations of Lex Luthor dipping his hands, as ever, in both legitimate and illegal means to achieve his goals Gotham City was released and rebuilt, and rejoined the United States. Gordon and the surviving officers were reinstated as full policemen.

    Much of the story line was narrated by Oracle, as she used her resources to become a low-tech version of herself. She used paper to document events and the passage of time, operatives and emergency phones (knowing which ones were still in operation) to gather intel, and maps colored by pencils to keep track of who controlled which portions of the city at a particular time. Her maps were frequently shown in the comics to help the reader follow the progression of territorial disputes (Gotham City maps in current series are based in large part on Oracle's maps from this series). Oracle remained one of the few people in the city with the ability to contact the outside world. In his own series, Hitman, Tommy Monaghan had found his own ways in and out of Gotham (he spent No Man's Land protecting his own few blocks of where he had grown up, putting out the skulls of vampires as warning signs).

    Like Oracle, all of the characters got serious testing of their mettle. Commissioner Gordon became more of a general leading an army than a police officer and held a grudge against Batman, even after he had returned. It wasn't until nearly the end of the story line before they talked again, and Batman even revealed to Gordon his secret identity, in a gesture to regain his trust, but Gordon turned away without looking. He didn't want to know who was under the mask, and told Batman to put it back on.

    Collected Editions

    Non-U.S. Editions

    Novelization

    \"No
    GOTHAM CITY: a dark, twisted reÞection of urban America. Overcrowded, overbuilt, and overshadowed by a continuous air of menace, this gothic nightmare is a breeding ground for the depraved, the indifferent, and the criminally insane. It's also the object of one man's obsession. Witness to the brutal murder of his parents, Bruce Wayne has dedicated his life to protecting this city, taking a form to inspire hope in the innocent...and fear in the guilty. He is the masked vigilante known as the Batman.
    Now the battlefield has changed. Leveled by a massive earthquake that left thousands dead and millions more wounded, Gotham City has been transformed into a lawless wilderness -- a No Man's Land -- where the survivors are turning against one another, and where the city's protectors are torn by a crisis that may consume them all.
    • Written By: Greg Ruka
    • Publisher: Pocket Star (March, 2001)
    • ISBN-10: 0671774557
    • ISBN-13: 978-0671774554
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-131936/","id":131936,"name":"Values","issue_number":"1"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-27637/","id":27637,"name":"Year Zero","episode_number":"501"},"id":42106,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1309369-nomanslandf.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1309369-nomanslandf.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1309369-nomanslandf.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1309369-nomanslandf.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1309369-nomanslandf.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1309369-nomanslandf.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1309369-nomanslandf.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1309369-nomanslandf.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/1309369-nomanslandf.jpg","image_tags":"All Images"},"name":"No Man's Land","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/no-mans-land/4045-42106/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42176/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2021-10-10 22:36:40","deck":"The Phalanx attempt to take over the Earth and join the collective on the home planet. It takes the combined forces of the X-Teams and the mutants that would become Generation X to stop it.","description":"

    The three chapters are to be taken as happening concurrently.

    Generation Next (Chapter One)

    To some humans, mutants are simply a scary step on the evolutionary ladder. Humans are unable to top this next phase naturally. Not content with this state of affairs, both Stephen Lang and Cameron Hodge allow themselves to be assimilated into the Phalanx. This act, they hope, will ensure that humans have a leg-up on the evolutionary ladder. One problem stands in the way of mutant domination: mutants cannot be assimilated into the Phalanx. For this reason, the Phalanx goes after the next generation of mutants, so as to find some way to cure the mutant immunity.

    Banshee visits the X-Mansion and notices that the X-Men are acting odd. Running a computer scan, he learns that the only mutants in the mansion are himself, Emma Frost, Jubilee, and Sabretooth. The four manage to get free and learn of the Phalanx objective of finding the newer mutants. They are able to save one, Synch, before heading to California (a lead they got from following Husk's psy-trail from when she got captured). There, Emma and Banshee break into a SHIELD base and trace the Phalanx signature to a boat in San Diego.

    The Phalanx is successful in capturing Husk, Monet, Blink, and Skin. In their cell, they band together and find a way out of their cell, only to come face-to-face with the Phalanx. Fortunately, Banshee and company arrive to save the younger mutants, but it is only Blink who can actually save the day. She teleports the Phalanx away, leaving her new friends safe.

    Life Signs (Chapter Two)

    At Mont St. Francis, Professor Xavier has assembled the collective teams of Excalibur, X-Factor, and X-Force. He alerts the teams of the Phalanx threat, having started when the Friends of Humanity got a hold of Warlock's remains. They initially wanted to use the remains as a way to change humans into a way to be the next breed of Sentinels, but the hosts became a part of the collective and the Phalanx evolved faster than the humans had intended. Instead of finding a way to eliminate the mutant threat, the Phalanx grew to trying to eradicate life on Earth.

    Wolfsbane and Cannonball hear of the incarceration of Douglock and go to inspect him to see if he is a reanimated Doug Ramsey. Forge joins them and sees the wonder of a new life form, as Douglock is a being that has broken off the Phalanx collective. Douglock then kidnaps the three visitors and takes them to Italy where the Phalanx has built a spire to communicate to the originators of the Phalanx. Douglock, Cannonball, and Wolfsbane travel to the top of the tower in hopes of jamming the signal to the stars.

    Meanwhile, a Phalanx leader has turned Forge's mutant power against himself. Forge is shown the glory of bringing on a new race and he is unable to stop himself from caring for the incubators of the Phalanx. The incubators hold the next generation of Phalanx, a fail-safe in case the transmission isn't able to get through to the Phalanx originators. Fortunately, Nightcrawler is able to talk Forge into rebooting how Forge's mutant power operates and Forge is able to destroy the incubators. At this point, Douglock supposedly sacrifices himself by throwing himself onto the beam to space. The Phalanx is undone and breaks down. Douglock survives, however, since he has things left to live for.

    Final Sanction (Chapter Three)

    Cyclops and Jean Grey return from their honeymoon to find the X-Men have been kidnapped. They head to Muir Island to meet up with the Professor and find out how they can help; instead they find the island overrun with Phalanx. The Professor, however, had sent a message to both Wolverine and Cable before leaving the island and the two meet up with Cyclops and Jean Grey in time to prevent the Phalanx from getting their hands on Moira MacTaggert's research. The research is needed so that the Phalanx can learn how to assimilate mutants into their collective. To stop the Phalanx, Cable and Jean stage a psionic assault on the Astral Plane while Cyclops and Wolverine sneak in and take the information. The mutants learn that the Phalanx collective is located in Tibet, blow up Moira's laboratory, and head to finally eradicate the Phalanx threat.

    In Tibet, Stephen Lang has realized that the Phalanx has gotten out of hand. He wants mutants eradicated, but he sees that humanity will suffer, as well. He constructs a plan that he hopes will stop Cameron Hodge and the Phalanx for good. Oddly enough, his plan involves the X-Men. He talks Psylocke into being his mole. She is \"assimilated\" and is able to regain her mind when given the command to attack the other X-Men. This comes to pass when Wolverine gets passed the Phalanx defenses, puts a small hole in Bishop's energy containment chamber, and gives Bishop an energy source. Blasting the X-Men out, the Phalanx citadel is taken down. While Lang thinks he's pulled himself out of the danger and in a position to further his quest of mutant genocide, Hodge pulls Lang into the collapsing citadel.

    Effects

    The next generation of mutants would form a group called Generation X and be led by Banshee and Emma Frost.

    Due to the combined psi-attack of Jean Grey and Cable, Cable is able to catch some hints as to who Slym and Redd (the couple who raised him) actually were.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-39680/","id":39680,"name":"Generation Next, Part 1: Encounter","issue_number":"316"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-167/","id":167,"name":"The Phalanx Covenant (Part 1)","episode_number":"501"},"id":42176,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2940131-51kcstmvj6l._sl500_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2940131-51kcstmvj6l._sl500_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2940131-51kcstmvj6l._sl500_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2940131-51kcstmvj6l._sl500_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2940131-51kcstmvj6l._sl500_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2940131-51kcstmvj6l._sl500_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2940131-51kcstmvj6l._sl500_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2940131-51kcstmvj6l._sl500_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2940131-51kcstmvj6l._sl500_.jpg","image_tags":"All Images,Phalanx Covenant"},"name":"Phalanx Covenant","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/phalanx-covenant/4045-42176/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42177/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-08-11 15:59:35","deck":"The X-Men are reunited but must now fight for their lives against the cyborg Cameron Hodge on the mutant enslaving island of Genosha, along with the New Mutants, and X-Factor.","description":"

    Overview

    The X-Tinction Agenda was a nine-part crossover event (or X-Over, as X-Men crossovers are sometimes called) beginning in 1990 that took place in the pages of Uncanny X-Men, The New Mutants, and X-Factor. Chris Claremont and Louise Simonson were the principle writers, while star artists Jim Lee, Rob Liefeld and Jon Bogdanove illustrated.

    Plot Summary

    Cameron Hodge, now a cyborg, sends his Magistrates, lead by a brainwashed Havok, to attack the X-Mansion. They capture several members of the X-Men and New Mutants, namely Storm, Wolfsbane, Boom Boom, and Rictor. They also kill Warlock. After becoming mutates, Storm and Wolfsbane end up brainwashed like Havok. Mutates, like the three of them, are slaves on the island nation of Genosha and dominated by an elite human minority similar to apartheid. Several mutant groups from around the world gather and travel to Genosha in order to rescue their friends. They include the remaining New Mutants lead by Cable, X-Factor, and X-Men members previously scattered across the globe.

    Once in Genosha, many of them end up captured as well, including Wolverine and Gambit. Cyclops manages to reach Havok, and helps his brother overcome his brainwashing. At the opportune moment, Havok turns on his master, Cameron Hodge, enabling others to revolt as well. Cameron Hodge is beheaded and then buried alive by Rictor, who also causes the Genoshan capital building (known as the Citadel) to collapse onto Hodge's remains. In the wake of the battle, Havok and Wolfsbane decide to stay in Genosha in order to help rebuild the country and protect the mutant population.

    Effects

    X-Men

    \"The
    The New Betsy

    Storm was programmed by the Genegineer to snap out of her mutate state with the ability to restore a mutant's power by touch. This is first manifested when she restores Cyclops's power after the trial. A side effect of coming out of her mutate condition was that Storm once again possessed an adult body and could control her powers more fully. Also, the rest of the X-Men get to see the new Betsy Braddock. Havok stays in Genosha so as to help rebuild the country and to see that the mutates are dealt with in a humane way.

    X-Factor

    During the events of the X-Tinction Agenda, Wolverine lay dying in a cell. Jean Grey had been placed in this cell as well and the two shared a moment of intimacy. This scene further showed the confusion Jean feels concerning the emotional bond she has with both Wolverine and Cyclops. Cyclops is shown to acknowledge that his hold on Jean is strained, at best, and tried to rein her in during some key elements of various battles. Jean showed that she still had a mind of her own and could help in whatever way would be best for the teams.

    New Mutants

    \"Mutate
    Mutate Rahne

    The team most influenced by the events of the X-Tinction Agenda. In an attempt to rescue his friends, Warlock de-powered their cell and allowed himself to be captured. This ultimately led to Cameron Hodge trying to assimilate the transmode virus, which would allow him to shift his shape. Rahne stopped the process but it was too late for Warlock. He became the only one to die at during these events. His ashes would later be spread on Doug Ramsey's grave.

    In trying to stop Hodge from taking Warlock's power, Rahne herself was captured and turned into Mutate 20. Even after Storm touched her, if Rahne stayed in her human form she would still be a mindless mutate since her suit was bonded to her. She did, however, gain even more power in her wolf form. The Genegineer explained that all Rahne's former inhibitions were taken away and her mutant powers would evidence this. True to form, Rahne's lycanthropic form was far more fierce and difficult to calm. Rahne decided to leave the New Mutants and stay in Genosha to help with its rebuilding process.

    Collected Editions

    Related Issues

    Non-U.S. Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33443/","id":33443,"name":"The X-Tinction Agenda: First Strike","issue_number":"270"},"first_appeared_in_episode":null,"id":42177,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2029760-164347_500372043855_829193855_5997441_2232168_n.jpg","image_tags":"All Images,Story Arcs"},"name":"X-Tinction Agenda","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/x-tinction-agenda/4045-42177/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42178/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-08-11 19:03:02","deck":"Stryfe's masterpiece of revenge on his numerous enemies.","description":"

    Plot Summary

    Stryfe, with Cable's visage, attempts to assassinate Professor Charles Xavier during a speech on equality by shooting him in the head with a techno-organic virus slug. Xavier's body is soon overrun by a virus that turns each infected cell into a technological circuit. Beast and Moira MacTaggert work tirelessly on restoring the professor but to little avail.

    As the Professor is being attacked, Cyclops and Jean Grey eat at Harry's Hideaway, during which Caliban barges in and kidnaps the two. Colossus and Iceman try to help but they are attacked by two more of the Horsemen of Apocalypse. The foes are defeated and it seems that Apocalypse is behind the schemes to kidnap the two X-Men and kill the Professor. Yet, once Cyclops and Jean Grey are handed over, it seems as if Mr. Sinister is orchestrating the events. Apocalypse is actually awakened during a regenerative sleep to be informed that actions are being done in his name.

    Meanwhile, X-Factor seeks out the attacker with a few select members of the X-Men. X-Force, not wanting to believe their mentor could be behind such a thing, sets out in search of the real assassin. They run in to the other X-Teams and try to fight their way out. X-Force is soon apprehended and held captive in the Danger Room. Mr. Sinister shows up at the X-Mansion and tells that Stryfe is really behind it all.

    Cable shows up and learns about the current events. Believing Canadian intelligence has the answers, Cable arrives in time be confronted by Wolverine and Bishop, two guys who had the same ideas about the Canadian intelligence, but for information on Cable's safehouses. A fight ensues and Cable talks the two others into believing that he is innocent. The three then escape the government building and teleport to Graymalkin, Cable's space base, where Cable explains that he and Stryfe are both from the future and share a face. There, Wolverine receives a signal from Jean and the three men figure out the location that Cyclops and Jean are being held.

    Apocalypse breaks into one of Cable's safehouses and starts to piece together that Cable or Stryfe is the son of Cyclops. He then returns to Egypt. His Dark Riders are easily defeated by Stryfe. Stryfe then turns his attention to Apocalypse and nearly kills him. Apocalypse is able to teleport away before the death blow.

    During the events, Stryfe has tortured and tormented Cyclops and Jean, accompanied by parental taunts. The two are finally able to escape only to find they are being held captive on the Moon.

    On earth, the Beast is able to remove the techno slug, but the Professor's condition doesn't get any better. Fortunately, Apocalypse shows up and convinces the X-Men to let him help cure the Professor. After all, he did use the same stuff to form Archangel's wings, as well as infect the son of Cyclops in the Endgame story arc. The team reluctantly agrees and Apocalypse (after regenerating) cures the Professor by accelerating the infection. With the virus out, the Professor sleeps deeply. The remaining members of the X-Men, Apocalypse included, head to the Moon.

    Cable, Bishop and Wolverine are already on the Moon and under heavy attack. The X-Teams show up in time to help defeat the Dark Riders. The teams then spread out to find Cyclops and Jean, as well as Stryfe. Stryfe, meanwhile, has recaptured Cyclops and Jean and removed them to different location. Cable, Havok, Polaris, and Cannonball track Stryfe to a building but a gray force field only lets those in of Summers blood. Cable then fights Stryfe. Losing, Cable is able to find relief from Havok, who made it through. With the assault on Stryfe, Cyclops and Jean are able to break free of Stryfe's hold and help in the fight. Cable knows the only way to finish the fight is to take Stryfe out for good, which means taking himself out, too. Cyclops triggers the mechanism that opens a portal into which Stryfe and Cable are pulled to their supposed deaths. Cyclops doesn't know for sure, but he can't help but feel as if he's let his son go again.

    Mr. Sinister is finally seen to open a canister, his payment for the part he played in Stryfe's game. Instead of the promised genetic make-up of the Summers family, the canister is supposedly empty.

    Effects

    X-Men

    Xavier could walk again, albeit briefly, due to the effects of the techno-organic virus. Rogue was blinded by the MLF member Strobe. The effects would only last a few weeks, but that time was spent mostly around Gambit.

    X-Force

    Cannonball stepped up and took the reigns of leadership of the team.

    Mutant Liberation Front

    Each mutant member not killed is arrested (except Zero). Only some are released when Reignfire later restarts the MLF.

    Cable and Stryfe

    Both men were seemingly lost into the vortex. Cable later returns, but Stryfe's mind is locked into Cable's brain. He resurfaces at later times but is always defeated.

    Mutants in General

    The canister Mr. Sinister opened wasn't empty. It actually contained the Legacy Virus, a disease that largely only affected mutants.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107063/","id":107063,"name":"X-Cutioner's Song Part One: The Overture","issue_number":"294"},"first_appeared_in_episode":null,"id":42178,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2021315-190483_10150132287548856_829193855_6492351_4179156_n.jpg","image_tags":"All Images,Story Arcs"},"name":"X-Cutioner's Song","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/x-cutioners-song/4045-42178/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42181/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-09-29 10:16:41","deck":"The High Evolutionary attempts to evolve the human race into a more advanced species using various schemes such as drugs, eradicating mutants, and a genetic bomb.","description":"

    Collected Editions

    Related Issues

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-94396/","id":94396,"name":"The Return of Rhonda","issue_number":"1"},"first_appeared_in_episode":null,"id":42181,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2021145-181988_10150103407343856_829193855_6218970_1309909_n.jpg","image_tags":"All Images,Earth-616 Avengers,Earth-616 Falcon,Earth-616 Hercules,Earth-616 High Evolutionary,Earth-616 Hulk,Earth-616 Jocasta,Earth-616 Yellowjacket,Story Arcs"},"name":"Evolutionary War","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/evolutionary-war/4045-42181/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42182/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2016-06-19 16:05:22","deck":"Ghuar, Llyra, and Attuma join forces to launch an attack on the surface world in a bid for global domination using the armies of Atlantis and Lemuria.","description":"

    Marvel crossover running through the annuals from Summer 1989

    Collected Editions

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-31363/","id":31363,"name":"Splash!","issue_number":"76"},"first_appeared_in_episode":null,"id":42182,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31599/2008867-atlantis_attacks_omnibus.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31599/2008867-atlantis_attacks_omnibus.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31599/2008867-atlantis_attacks_omnibus.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31599/2008867-atlantis_attacks_omnibus.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31599/2008867-atlantis_attacks_omnibus.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31599/2008867-atlantis_attacks_omnibus.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31599/2008867-atlantis_attacks_omnibus.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31599/2008867-atlantis_attacks_omnibus.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31599/2008867-atlantis_attacks_omnibus.jpg","image_tags":"All Images"},"name":"Atlantis Attacks","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/atlantis-attacks/4045-42182/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42183/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2021-09-11 21:06:11","deck":"The Phoenix Force consumes Jean Grey and with the manipulation of the Hellfire Club's Mastermind, she is driven mad. The Phoenix Force becomes the Dark Phoenix and consumes the power of a star and destroys an entire solar system before sacrificing herself to save the universe from mass destruction.","description":"

    This larger story arc \"The Dark Phoenix Saga\" is broken up into two parts. The first part is The Phoenix Saga in (X-Men #101-108). This is the second part of the two-part series mostly taking place in X-Men #129-138.

    The Creation of the Dark Phoenix Saga

    The Dark Phoenix Saga was created because of the number of fans that loved the original Phoenix Saga. Marvel needed a way to bring the Phoenix back in a way like never before, so they decided to have the Phoenix come back to earth evil. They figured what better way to shock the readers than to have the once great and powerful balance maker turn evil and show its true colors. This idea resulted in the creation of the Dark Phoenix Saga.

    How it Started

    After taking some time off to find herself, Jean Grey journeyed to Muir Island. While shopping she met a strange man named Jason Wyngarde, who was secretly the old X-men villain \"Mastermind\". After Mastermind toyed with Jean's mind, she decided to stay on Muir Island so that Moira MacTaggart could test the full extent of her new powers. During an emergency alarm concerning Moira's son Proteus, Jean was swept up in an illusion of herself in the 1800's as Lady Jean Grey (an ancestor of Jean's). Lady Jean Grey was the wife of the era's Jason Wyngarde and Black Queen of the Hellfire Club at that time. This psychic illusion caught her off guard and she was felled by Proteus. Later during the Proteus situation, Mastermind once again took Jean into his 19th Century illusion where he convinced her that a cruel game of manhunt was her own idea!

    Following the defeat of Proteus Jean returned to the mansion and very quickly got reports of 2 new mutants, Kitty Pryde and Dazzler. The team decided it would be best to split up and look for the two mutants, Jean decided to search for Dazzler. When Jean researched Dazzler's last known location, she found that Dazzler worked at a nearby club so she decided to look there first. At the club where they find Dazzler was performing Jean once again saw Jason Wyngarde walking across the floor and was instantly brought back into the illusion where she was his wife. While in the illusion Cyclops's face appears and Jean is able to break free from it. While Jean walked out of the club, Jason sends Hellfire grunts after her and in little time, they are all defeated.

    During the assault, Wyngarde brought Jean into one last illusion where she was the Black Queen and helped him along with the Inner Circle take down the X-men. After that she then and took her place as their new Black Queen.

    Dark Phoenix Saga

    Jean Grey's powers were increasing it began to corrupt her and make her want more and more energy which caused Jean to develop a split-personality. At first Jean was able to control it but as time went on it became harder and harder to control. Mastermind wanted to join the Hellfire Club and captured Jean Grey by using her hunger to his advantage. Mastermind made Jean think she was in the 18th century by using hallucinations and in time, she became the “Black Queen”.

    In attempt to save Jean, the X-Men were captured and chained up in the corner of the dining room. When the Hellfire Club was sitting at the table for supper Emma Frost saw Jean’s puzzled face and soon realized what was going on. She knew that Cyclops was trying to connect to Jean Grey through their telepathic connection (which only Scott and Jean shared). Emma ordered that Mastermind do something at once. Mastermind then had a telepathic battle with Cyclops inside of Jean Grey’s mind and in the end Mastermind killed Cyclops, making the real Jean Grey heartbroken. Jean reassumed control over her body and powers for a short amount of time but when the Phoenix retook control of her body she became overwhelmed with madness. The Phoenix broke free of Mastermind's illusion. Confused and angry the Dark Phoenix turned itself into a bird-like form of pure fire, and stated “No one can control the power of the Phoenix!\" and burst through the ceiling and flew to the roof. Mastermind followed her to the roof in hopes that he would still be able to control her, but soon learned that he was no match for the mighty Phoenix.

    When the Phoenix was done with Mastermind, Cyclops got to the roof and called out Jean Grey’s name. That upset the Dark Phoenix so much that she broke out and yelled, “The mortal Jean Grey is no more, I am the Dark Phoenix!\". The Phoenix then felt Jean Grey retake her body once again (only for a few seconds) but manages to say the words, \"Scott, Help Me\". When the Dark Phoenix retook control, she shot a fire ball at them which blew the X-Men into a nearby park.

    The Dark Phoenix then flew over to the park and told the X-Men that their destinies had come to an end and that the Dark Phoenix had come to destroy them all. Then the battle began and in the end, the X-Men lost. Cyclops (being the last to go down) was hit the hardest because he had upset the Dark Phoenix the most, mainly because he confused her. When the Dark Phoenix asked Cyclops why he had cared about the body of Jean Grey so much, he replied, “I love her”. That statement made the Dark Phoenix upset because she didn’t understand or know what the emotion felt like, so she replied, “I do not understand, your answer is unacceptable” and used a force-field to wipe him out. When Cyclops was knocked out Jean Grey retook control of her body again (this time for a longer period of time) and walked over to Cyclops’s body and started to cry.

    She then said, “Don’t ever forget Scott, I will always love you.” The Dark Phoenix resumed control and became madder than ever and took the form of an enormous bird made out of pure fire. This figure was seen for hundreds and hundreds of miles. The Dark Phoenix then flew straight up into the sky until she was no longer seen. The waves of power that the Dark Phoenix gave off when she transformed into the birdlike shape were sensed by extremely powerful telepaths throughout the universe, each one showed an extremely puzzled face.

    The Dark Phoenix then entered space and created a black hole to teleport into another galaxy (D’Bari Galaxy). The Dark Phoenix dove into the D’Bari’s star and started to feed on its energy until there was nothing left but a nova.

    When the Shi’ar tried to attack the Dark Phoenix she then turned around and attacked back, but with little effort, luckily not destroying the Shi’ar but causing more than enough to damage to give them the hint to back off. The Dark Phoenix then flew back to earth causing the captain in charge of the spacecraft to contact the empress and give her the warning. Meanwhile when all of this was going on, Beast was creating a machine that would neutralize the power of the Dark Phoenix, but only for an extremely short period of time. Once created Beast tried to figure out where the Dark Phoenix could be headed next but had no trouble figuring it out.

    Beast along with all the other X-Men (including Xavier) went to Jean Grey’s childhood home and waited for her to arrive. When she arrived Xavier tried to fool the Dark Phoenix by putting hallucinations into her head, making her think that her parents are sitting in the drive way waiting for her. Once Jean walked outside, the car started to pull away causing Jean to go farther and farther into the yard as she chased after it. When she was far enough, the X-Men made their move and with some luck Beast slipped the device onto Dark Phoenix’s head. At first it looked like it was working, the Dark Phoenix had fallen to the ground in pain, but after a few short seconds the Phoenix stood up and melted the device. The Dark Phoenix then became overwhelmed with rage, she laughed and taunted Beast for his failure. Dark Phoenix picked up the X-Men with her telekinetic powers, by this time it looked like the X-Men had finally came to their end, but then out of nowhere Xavier tries his best to invade the mind of the Dark Phoenix and successes. He then summoned the Dark Phoenix to a telepathic battle.

    Dark Phoenix knows that Xavier is no match for her, so she decides to taunt and play around a little bit. He tries his best to defeat her, but once the Dark Phoenix had had enough she then decided to destroy him. She had almost succeeded, but Xavier called for the help of Jean Grey herself (who is in a way trapped within her own body) just in time. Together with the two extremely powerful telepaths working together, they are able to bind the Dark Phoenix into her own powers, but only for the time being.

    Since the Dark Phoenix had been contained, Jean Grey was able to retake control of her body once again. Once she awoke, Jean Grey was greeted home by all her fellow X-Men. It seemed like everything had just fallen back into place. Then the Shi’ar arrived and tried to take Jean Grey away so that they could destroy her and the evil, powerful creature that was within her to ensure the universe’s safety. The empress then ordered her Imperial Guards to capture Jean. The X-Men got ready for the battle of their lives and were willing to do anything to protect Jean. Luckily for them Xavier was able to enter the mind of the empress and found out that if the Imperial Guards were challenged to a battle, they must accept it. The X-Men were then brought onto the spacecraft and were taken into space. On board, Jean Grey was accused of genocide and the only solution was death. The X-Men and the Shi’ar agreed that there would be a battle and the winner would determine Jean Grey’s fate. Once the X-Men had gotten ready they along with the Imperial Guards were then teleported to a moon where the battle would take place.

    The X-Men (not knowing they were no match for the Imperial Guards) then decided to split up into pairs. After many hours of battle Jean Grey and Scott Summers were the last two left in the match. Before the two decided to give the Imperial Guards the best they had, Jean and Scott hid in a nearby cave to say their last few words before they fought for their lives. When they were done they ran out and were confronted by all of the Imperial Guards. Jean and Scott were doing great until Scott was shot down. The sight of Jean Grey’s true love falling to the ground put so much guilt and stress on her that the Dark Phoenix was able to retake control of the body once again. By doing so she sent off extremely powerful waves of power which knock off the energy flow of the Shi’ar spacecraft.

    The Dark Phoenix then went after the Imperial Guards and had them feel the wraith of the Dark Phoenix. Once the Imperial Guards were out of the picture Jean Grey had retaken control of the powers and body. She knew that her control over the Dark Phoenix was not going to last long and right under the Shi’ar spacecraft. She then used her powers to boost the spacecraft’s weapon system. Thinking that the Shi’ar’s weapon was powerful enough to kill her and the Dark Phoenix she said her farewell to Scott by saying, “I love you Scott, don’t ever forget, I will always be with you.” The empress blasted the weapon directly at the Dark Phoenix. During the blast the Dark Phoenix had retaken control of the body forming once again the shape of the fire bird, then it was gone.

    Thinking that the Phoenix was destroyed, the empress then teleported herself and Xavier to the moon. She apologized to Scott along with the other X-Men. Then out of nowhere the Phoenix rose from her ashes as the Phoenix Force and brought Jean Grey’s body with her. The Phoenix then apologized to all the X-Men. She explained to them how she lost her way and assured them all that it would never happen again. When Scott asked what would happen to Jean, the Phoenix Force told him that the flame within her was no more, but that with a small portion from many would be enough to restore the life within Jean Grey. The X-Men accepted the deal and they all grouped together and watched as a small part of each of them went into Jean Grey. The Phoenix then said, “I have been here too long, I must depart” and flew away. When Jean woke up, the first thing she said was Scott’s name and the saga ended with Jean Grey kissing Scott Summers.

    Collected Editions

    Related Issues

    Non-U.S. Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20114/","id":20114,"name":"God Spare The Child...","issue_number":"129"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-3518/","id":3518,"name":"The Return - Joining Forces","episode_number":"101"},"id":42183,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2030057-31434_393783078855_829193855_3940699_6692665_n.jpg","image_tags":"All Images,Story Arcs"},"name":"Dark Phoenix Saga","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/dark-phoenix-saga/4045-42183/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42218/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2015-12-30 16:51:49","deck":"The ground-breaking story where people got to vote on the fate of Jason Todd, the second Robin.","description":"

    If you were referring to the Marvel Comics/Spider-Man Story Arc: A Death in the Family.

    Plot Summary

    Jason Todd had never been a popular choice to replace Dick Grayson even after the retcon of the Crisis on Infinite Earths. When the public was allowed to choose whether he would live or die the count went against him. Cue the Joker... and a tire iron.

    Collected Editions

    Related Issues

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-30541/","id":30541,"name":"A Death in the Family Chapter 5","issue_number":"428"},"first_appeared_in_episode":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-34094/","id":34094,"name":"Barbara Gordon","episode_number":"301"},"id":42218,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/92737-83629-a-death-in-the-famil.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/92737-83629-a-death-in-the-famil.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/92737-83629-a-death-in-the-famil.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/92737-83629-a-death-in-the-famil.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/92737-83629-a-death-in-the-famil.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/92737-83629-a-death-in-the-famil.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/92737-83629-a-death-in-the-famil.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/92737-83629-a-death-in-the-famil.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/92737-83629-a-death-in-the-famil.jpg","image_tags":"A Death in the Family,All Images"},"name":"A Death in the Family","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/a-death-in-the-family/4045-42218/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42219/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2011-05-05 17:04:18","deck":"Pre-dating Knightfall by a few years, this 3-issue arc appeared in Detective Comics 598-600.","description":"

    Blind Justice was written by Sam Hamm who was a hot property, having just turned in his script for Tim Burton's first Batman movie.

    Batman is badly hurt in a fight and unable to fulfill his mission as the Dark Knight. Instead he trains a replacement, but his shoes may be too big to fill. 

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106871/","id":106871,"name":"Blind Justice, Chapter One: The Sleep of Reason","issue_number":"598"},"first_appeared_in_episode":null,"id":42219,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1677945-blindjustcie5.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1677945-blindjustcie5.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1677945-blindjustcie5.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1677945-blindjustcie5.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1677945-blindjustcie5.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1677945-blindjustcie5.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1677945-blindjustcie5.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1677945-blindjustcie5.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/1677945-blindjustcie5.jpg","image_tags":"All Images"},"name":"Blind Justice","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/blind-justice/4045-42219/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42224/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-07-02 17:32:05","deck":"Frank Miller's reimagining of the Batman's first year in costume.","description":"

    Plot Summary

    The story recounts the beginning of Bruce Wayne's career as Batman and Jim Gordon's with the Gotham City Police Department.

    Bruce Wayne, aged 25, returns home from training abroad in martial arts, manhunting and science for nearly twelve years. In Gotham, he bides his time, waiting for the right moment to strike, all the while preparing himself. Gordon, meanwhile, has moved to Gotham from Chicago with his pregnant wife, Barbara Kean-Gordon, and pursues a career in law enforcement. His first time out patrolling reveals to him the disturbing nature of law enforcement in Gotham as a senior officer, Detective Flass, assaults an unsuspecting teenager for \"staying out late\". Gordon is disgusted with his partner's behavior towards all the \"offenders\" Jim feels that he has to straighten things out.

    Bruce makes preparations - registering at a hotel to provide an alibi, giving himself a fake scar to disguise himself - before going out for his first street mission. He enters the Red Light District of Gotham. A young prostitute named Holly Robinson tries to proposition him. Her pimp, angry because he knows Bruce isn't the type to hire prostitutes, forcefully drags her away. Bruce confronts him and gets into a fight, and a few others join in. Selina Kyle, a dominatrix in the slums of Gotham, jumps from her window and fights with Bruce; he is stabbed in the thigh by Holly.

    The police arrive on the scene, shoot Bruce and then throw him into the back seat of their car. On the way to the station, he manages to escape by causing the corrupt officers to wreck their squad car. After pulling the unconscious officers out of the car Bruce returns home, bleeding from his various wounds. There he sits, looking for inspiration, something he feels will strike fear into the hearts of criminals. A bat crashes into the room through a window and perches on a sculpture of his father, to which Bruce immediately responds. He has found what he is looking for, stating the words \"Yes Father, I will become a bat.\"

    Gordon tries to clean up GCPD, but on the orders of the corrupt Commissioner Gillian B. Loeb, is attacked and threatened by fellow officers. After recovering, he visits the house of one of these officers, where they have gathered to play poker. He waits for Detective Flass, who he knows is responsible for organizing the attack. Flass is the last to leave, and Gordon tails him into the woods, where he proceeds to attack the drunken officer.

    Bruce goes out for the first time as Batman and stops a trio of teenagers from stealing a television. A brief struggle ensues, resulting in the Dark Knight's first victory. The legend quickly grows with Batman attacking criminals with increasing boldness, including Flass, who was present at one crime, receiving a pay off from the criminals. One night, when the corrupt city leaders and gangsters like Carmine Falcone gather for a dinner party, Commissioner Loeb explains why Batman is politically advantageous to themselves, assuming he would never bother them; meanwhile, Batman sneaks onto the grounds, puts the guards to sleep and sets up stage lights around the window that comprises one of the dining room walls. He cuts the electricity, throwing the room in darkness, blows a hole in the outside wall and then activates the lights. He gives the men and women a dire warning that he is just as determined to deliver them to justice as well, then leaves. Meanwhile, Selina Kyle is inspired to become a costumed cat burglar when she sees Batman in action and becomes Catwoman.

    The police try to capture Batman numerous times, but Bruce is too elusive and alert to fall for their traps. In addition, the maverick district attorney, Harvey Dent, becomes Batman's secret ally. After a night of following useless leads, Gordon and his partner, Detective Sarah Essen, see a truck barreling down the street. They give chase and Gordon hands the wheel over to Essen as he tries to get into the vehicle. An old, homeless woman stands in the way of the truck and is about to be run over just as soon as Batman jumps in and shoves her out of the way. The bus runs into a wall and Gordon briefly blacks out, only to awake moments later and find Essen holding Batman at gunpoint. She is momentarily distracted when she turns to ask if he is all right and Batman takes advantage to disarm her and flee into an abandoned building.

    When cops arrive on the scene, the commissioner is quick to call in the trigger-happy Branden and his squad to drop a bomb on the building, which the Commissioner claims has already been scheduled for demolition. While dodging the fire from the explosion, Batman's belt (which contained explosives) catches fire, and he is forced to discard it. After suffering two dizzying gun wounds, Batman escapes into the secure basement and survives the blast. A crowd gathers outside the building. Stuck with only a blow gun and 3 darts, Batman uses a small device in his boot to summon thousands of bats from his cave to the building. A battle occurs as the police storm into the building and hunt him down. He incapacitates some and even saves a cat, jumping out of the building (after throwing a police officer forcefully through a wall) and takes advantage of the chaos that occurs when the bat colony arrives to speed away on a police motorcycle and escape.

    Gordon has a brief affair with Essen. During the affair, he is confronted by the Commissioner, who threatens to inform his wife of the affair if he doesn't comply. Gordon, after bringing his wife to an interview with Bruce Wayne, whom he and others suspect of being Batman, stops the car in the driveway on the way back and tells her about his affair. Essen later leaves for New York.

    Months pass and Batman overhears a local mafia boss planning revenge against Gordon. Selina Kyle, frustrated because she feels her petty crimes aren't enough, interferes and attacks the group. Batman does not appear, but helps Selina from the shadows, throwing small bat-shaped blades laced with tranquilizers at some of the men. Bruce, while working out, figures out the plan based on the part of the conversation he was able to record.

    Gordon is called away by the police to investigate a robbery. On his way out, a mysterious motorist entering his garage raises Gordon's suspicions, as Gordon has never seen the motorist. He returns to the garage only to find his wife and baby being pulled into a car. He shoots and kills the men trying to take his wife, who survives; however, one assailant is unharmed. The car leaves with Gordon's baby in it, and Gordon shoots the motorist, takes his motorcycle and follows. The motorist, Bruce, is unharmed thanks to a bullet-proof vest. He attempts to leave, but not before Barbara threatens to shoot him. She lets him go when he promises to save her baby, takes a bicycle from a passing stranger, and pursues Gordon and the car.

    Gordon shoots out a wheel on the car and it crashes into the side of a bridge. The don's hired knife, his nephew, exits the car, baby in hand. A struggle ensues and the baby is thrown off the bridge, followed by Gordon. However, Bruce had already arrived and dived after the baby before Gordon even falls over the rail. Gordon, having lost his glasses in the struggle with the hitman, thanks Bruce (whom he claims to not recognize due to his aforementioned missing glasses) and makes it clear that he won't turn him in.

    Dent and Batman's efforts bear fruit with Flass, who is persuaded to turn damaging states evidence against his superiors, including a disgraced Commissioner Loeb, who is forced to resign. Although his immediate replacement, Grogan, is apparently worse, Gordon is content for the moment with receiving a job promotion and family counseling with his wife. The story ends with the new Captain Gordon waiting on the rooftop of the GCPD headquarters for Batman, to discuss somebody called The Joker and his scheme to poison the reservoir.

    The story also includes the first appearance of Mafia don Carmine Falcone.

    It has been announced that there will be an animated movie made.

    Collected Editions

    Non-U.S. Collected Editions

    Other

    There is an adaptation of Frank Miller's Batman Year One story that is being turned into a DC Animated Movie.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-27733/","id":27733,"name":"Who I am, How I Came To Be.","issue_number":"404"},"first_appeared_in_episode":null,"id":42224,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/1793613-yearoneultimate.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/1793613-yearoneultimate.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/1793613-yearoneultimate.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/1793613-yearoneultimate.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/1793613-yearoneultimate.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/1793613-yearoneultimate.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/1793613-yearoneultimate.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/1793613-yearoneultimate.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/1793613-yearoneultimate.png","image_tags":"All Images,Art,Batman"},"name":"Batman: Year One","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/batman-year-one/4045-42224/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42225/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2012-08-23 16:52:24","deck":"A follow up of sorts to Frank Miller's Year One.","description":"

    Batman by now is an established vigilante in Gotham City. Captain Gordon has recently succeeded Loeb as Police Commissioner, and is addressing local media stations on his new stature. The media also reflects on the anniversary of the final sighting of Gotham's first vigilante, The Reaper.

    Bruce Wayne, Batman's alter ego, in the meantime is visited by an old acquaintance, Leslie Thompkins, the medic who helped to raise him after his parents were murdered, and knows all too well of his double life. She is joined by Judson Caspian, and his daughter Rachel, who gradually develops a romantic infatuation with Bruce Wayne.

    It soon comes to light that Judson is really The Reaper, driven to his life by the tragic death of his wife and it takes only one stroll down Gotham to remind Judson of the horrors of crime he thought he had put to rest long ago in his dual identity; he returns to his apartment and dons The Reaper costume. Immediately making an impact and leaving several criminal heavies dead, Batman and The Reaper soon come face to face, but The Reaper's experience and weaponry prove too much for Batman, and he is left bloodied, broken, and forced to flee before he is killed. Upon returning to Wayne Manor, a bandaged, injured Bruce angrilly admits that his best wasn't enough, and that perhaps the only way to confront a killer with his measure of thinking head on is to become that which he loathes the most, prompting him to now bear a firearm, the gun that took the lives of his parents.

    Batman's vendetta against The Reaper leads to a falling out with Gordon, whom Batman nearly wounds or kills to prevent him from getting closer to what he considers his prey. Gordon misinterprets this action as Batman following in The Reaper's murderous footsteps, and soon deploys his forces against both Batman and The Reaper. As The Reaper lays waste to Gotham's underworld, various crimelords assemble and discuss ways of defeating him. Batman eventually intervenes in the meetings, and proposes they join forces against The Reaper. The crimelords agree, but only if Batman cooperates with a hand picked agent of their choosing; that individual is Joe Chill, the man who shot Thomas and Martha Wayne. Knowing his reason for being is working alongside him, Batman schemes to take Chill's life once The Reaper is disposed of, whilst at the same time he lays the groundwork for his life after Batman, asking Rachel not to convert to a nunnery and marry him. She accepts.

    There is a battle which kills most of the underworld connections tied to Batman and Chill, as well as helping convince Gordon that Batman is not connected to The Reaper in his crimes. The Reaper is presumed dead, Batman and Chill escape separately, but meet up later at night at Batman's insistence. Batman takes Chill to a familiar alley... the alley where Chill took the lives of the Waynes. Batman reveals his identity to the shocked Chill and taunts him with the gun he used on them. Chill, stunned, remains composed, convinced that Batman will not pull the trigger; before Bruce can find out, The Reaper re-emerges and kills Chill point blank with a gunshot. Now knowing Bruce's identity, The Reaper beckons Batman to a final confrontation in the frameworks of the under-construction Wayne Foundation. There Batman and The Reaper fight to a standstill, and Batman eventually discovers The Reaper is Judson before he jumps and kills himself.

    Bruce returns to Rachel, who has heard the news from television. Her path is now clear: Judson was her father, and she must atone for his sins. She produces her nun dressings and calls off the engagement. Bruce returns to prowl Gotham's streets as its sole vigilante for the present.

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-113037/","id":113037,"name":"Year Two, Chapter 1: Fear the Reaper","issue_number":"575"},"first_appeared_in_episode":null,"id":42225,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/62070/2076933-yeartwo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/62070/2076933-yeartwo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/62070/2076933-yeartwo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/62070/2076933-yeartwo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/62070/2076933-yeartwo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/62070/2076933-yeartwo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/62070/2076933-yeartwo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/62070/2076933-yeartwo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/62070/2076933-yeartwo.jpg","image_tags":"All Images"},"name":"Batman: Year Two","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/batman-year-two/4045-42225/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42226/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2014-10-08 02:52:01","deck":"Huge crossover that began in the 12 Cent Adventure and ran through all the Batman titles.","description":"

    Act One - Outbreak:

    • Prelude: Batman: The 12 Cent Adventure #1
    • Part 1: Detective Comics #797
    • Part 2: Legends of the Dark Knight #182
    • Part 3: Nightwing #96
    • Part 4: Gotham Knights #56
    • Part 5: Robin #129
    • Part 6: Batgirl #55
    • Part 7: Catwoman (2002) #34
    • Part 8: Batman #631

    Act Two - Tides:

    • Part 1: Detective Comics #798
    • Part 2: Legends of the Dark Knight #183
    • Part 3: Nightwing #97
    • Part 4: Gotham Knights #57
    • Part 5: Robin #130
    • Part 6: Batgirl #56
    • Part 7: Catwoman #35
    • Part 8: Batman #632

    Act Three - Endgame:

    • Part 1: Detective Comics #798
    • Part 2: Legends of the Dark Knight #184
    • Part 3: Nightwing #98
    • Part 4: Robin #131
    • Part 5: Gotham Knights #58
    • Part 6: Batgirl #57
    • Part 7: Catwoman #36
    • Part 8: Batman #633
    • Epilogue: Detective Comics #800
    • Epilogue: Batman #634

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-100886/","id":100886,"name":"Last Stand at Alamo High","issue_number":"631"},"first_appeared_in_episode":null,"id":42226,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96302-20305-war-games.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96302-20305-war-games.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96302-20305-war-games.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96302-20305-war-games.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96302-20305-war-games.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96302-20305-war-games.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96302-20305-war-games.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96302-20305-war-games.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96302-20305-war-games.jpg","image_tags":"All Images,War Games"},"name":"War Games","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/war-games/4045-42226/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42227/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-02-11 05:32:04","deck":"A deadly plague hits Gotham and Batman is left to deal with the consequences.","description":"

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108469/","id":108469,"name":"Contagion, Part 2: The Gray Area","issue_number":"695"},"first_appeared_in_episode":null,"id":42227,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/2185486-contagion_bat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/2185486-contagion_bat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/2185486-contagion_bat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/2185486-contagion_bat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/2185486-contagion_bat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/2185486-contagion_bat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/2185486-contagion_bat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/2185486-contagion_bat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/2185486-contagion_bat.jpg","image_tags":"All Images"},"name":"Batman: Contagion","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/batman-contagion/4045-42227/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42228/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-02-11 05:37:44","deck":"Gotham may have survived the Contagion but will it survive its Legacy? Batman and the Batman Family have to stop Earth's most dangerous terrorist and his new apprentice: Bane!","description":"

    Plot

    When the international terrorist Bane, meets with Talia and several members of the League while attempting to learn the identity of his father, Talia brings Bane back to meet with Ra's himself who sends him on a mission alongside Talia to discover the location of the wheel of plagues from Kobra. Bane following this is invited to stay as a guest of Ra's and following saving Talia's life, she rewards him with a night of sex, but afterwards becomes disgusted with him, having Ra's capture him but upon Bane's escape impresses him enough that he deems Bane a worthy mate for Talia.

    When the trio go to the desert in order to retrieve the data from the wheel of plagues Batman, Robin, and Nightwing arrive to foil their plans. As the three escape, Talia heads to Gotham with Ra's in order to release the plague which will wipe out 90% of humanity. However, the plan was stopped as Bane and Batman commence their rematch with Batman defeating the villain, who is washed out to sea. Robin, Nightwing, and Huntress board Ra's ship while Talia battles Huntress, and Robin links the system to Oracle in order to eradicate the data left of the plague. The ship explodes supposedly killing Talia and Ra's, which is revealed later to be wrong.

    Following Bane's regaining of consciousness, he takes over a ship carrying a floating nuclear reactor. Shortly after several of Ra's League arrive, where they deliver the news of the two al Ghul's deaths to a devastated Bane. Bane then decides to use the ship to carry out the dream of Gotham's destruction, in Talia's name. However he is once again foiled by Batman, Nightwing and Robin.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106843/","id":106843,"name":"Progeny of the Demon","issue_number":"700"},"first_appeared_in_episode":null,"id":42228,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/1232778-batman___gordon_s_law__4_pg25.jpg","image_tags":"All Images"},"name":"Legacy","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/legacy/4045-42228/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42229/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2018-06-22 06:41:51","deck":"One year after the events of Legacy a huge earthquake hits Gotham, destroying Wayne Manor and cutting the city off from the rest of the world.","description":"

    \"Cataclysm\" is an 18 chapter story arc that ran through the various Batman family comics. Insult is added to injury as Gotham City, already weakened by a debilitating plague (Batman: Contagion and Batman: Legacy) is hit by a massive earthquake, the epicenter of the which is less than a mile from Wayne Manor, which comes tumbling down on top of Batman and Alfred. In the aftermath of the destruction, Batman and his allies join the frantic rescue efforts around the devastated city. This story arc is followed by No Man's Land.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-113190/","id":113190,"name":"Cataclysm! Prelude : Sound and Fury","issue_number":"719"},"first_appeared_in_episode":null,"id":42229,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96307-14217-batman-cataclysm.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96307-14217-batman-cataclysm.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96307-14217-batman-cataclysm.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96307-14217-batman-cataclysm.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96307-14217-batman-cataclysm.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96307-14217-batman-cataclysm.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96307-14217-batman-cataclysm.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96307-14217-batman-cataclysm.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96307-14217-batman-cataclysm.jpg","image_tags":"All Images,Cataclysm"},"name":"Batman: Cataclysm","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/batman-cataclysm/4045-42229/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42230/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2011-08-08 20:45:54","deck":"After Commissioner Jim Gordon is shot, Batman has to employ his skills as the world's greatest detective to discover the true culprit.","description":"

    Story crossed over nearly all the Batman related titles for one month:

    • Batman #587
    • Batman: Gotham Knights #13
    • Birds of Prey #27
    • Catwoman #90
    • Detective Comics #754
    • Nightwing #53
    • Robin #86

    Collected Editions

    Non-U.S. Editions 

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46631/","id":46631,"name":"Officer Down, Part Two: Behind the Lines","issue_number":"86"},"first_appeared_in_episode":null,"id":42230,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/574/92805-61470-officer-down.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/574/92805-61470-officer-down.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/574/92805-61470-officer-down.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/574/92805-61470-officer-down.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/574/92805-61470-officer-down.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/574/92805-61470-officer-down.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/574/92805-61470-officer-down.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/574/92805-61470-officer-down.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/574/92805-61470-officer-down.jpg","image_tags":"All Images,gallery"},"name":"Officer Down","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics","site_detail_url":"https://comicvine.gamespot.com/dc-comics/4010-10/"},"site_detail_url":"https://comicvine.gamespot.com/officer-down/4045-42230/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42233/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-04-03 15:39:18","deck":"Death resurrects Thanos who acquires the six infinity gems and kills half the life in the universe in her honor with the Infinity Gauntlet. Adam Warlock leads Earth's Mightiest Heroes against the Mad Titan.","description":"

    Plot Summary

    The Infinity Gauntlet is a six issue miniseries written by Jim Starlin, penciled by George Perez and inked by Ron Lim published in 1991.

    Mistress Death is upset that the balance between life and death has recently not been in her favor. Her solution is to give her ardent follower, Thanos, a chance at rebirth setting him forth with a mission of killing half the life in the universe. Despite his powers, Thanos realizes his mission is near impossible. Remembering the Infinity Gems that were instrumental in his death, he peered into the Infinity Well to discover their secrets. He divines the true nature of the gems, and their current owners.

    The Thanos Quest

    Thanos discovers that the Infinity Gems are currently in possession of the Elders of the Universe with the Soul Gem in possession of the In-Betweener. With cunning, Thanos is able to obtain possession of the gems. He then places the gems on the Infinity Gauntlet, and becomes the most powerful being in the universe.

    The Infinity Gauntlet

    Thanos immediately fulfills his objective and kills half of all life in the universe. He also brings a tortured Nebula (who alleges to be his granddaughter) as a sacrifice to Death. But because Thanos is so powerful, becoming superior to Death in every facet, Thanos' hope of being treated as an equal escapes his grasp. He gleans from Death that they are not equal, and Death becomes subservient to him. This infuriates Thanos who doesn't want Death as a slave but as a lover. In an attempt to make Death jealous, he creates a mate, Terraxia.

    On earth, the heroes are informed by the Silver Surfer as to the reason for the monumental genocide. All of Marvel's mightiest heroes band together to try to defeat Thanos and save the universe. Despite previous conflicts with the Mad Titan, Thanos still remains a mystery. Adam Warlock, one of Thanos' most persistent foes, is asked to lead the forces.

    Knowing full well the impossible odds, Adam Warlock and Silver Surfer attempt cosmic diplomacy in the hopes of thwarting Thanos. The two heroes meet up with Epoch and her cosmic champion Quasar and a cosmic summit of the great cosmic powers begins. It includes Eternity, the Watcher Uatu, Kronos, Lord Chaos, Master Order, the Celestials, Galactus, Stranger, Love and Hate and the Living Tribunal. In the summit Eternity tries to convince the Living Tribunal to intervene. The Living Tribunal refuses, in since he believes that if Thanos were to replace Eternity it would still be within the process in natural selection. After seeing this, Adam Warlock persuades the Cosmic powers to aid them in stopping Thanos.

    Thanos is fully aware of the coming conflict. Mephisto arrives and advises Thanos to remove his omniscience to make the fight somewhat fair in the hopes of impressing Death. Despite the machinations of Mephisto, the battle is grueling and over quickly for the heroes. Thanos dispatched the heroes with ease. Some examples of the carnage include Terraxia murdering Spider-Man and decapitating Iron Man. The X-men fared no better, as Wolverine had his adamantium skeleton turned to spongy rubber and Cyclops had his head trapped in a cube, stopping his optic blasts and suffocating him. Cosmic heroes like Nova was turned into small cubes, and with Quasar, Thanos causes the Quantum Bands upon his wrists to explode and then disintegrated him. Fearsome foes like Thor were turned to glass. The last man standing was Captain America, who made his last stand. Absent from the battle and light years away were the Silver Surfer and Adam Warlock, who knew and fully expected the frontal assault to fail. The key to the real strategy was Mephisto's involvement. After shattering Captain America's shield, Thanos raised his fist to deliver the final blow. This was the cue for Adam Warlock's true plan to go into effect as Surfer rushed in to steal the gauntlet. This gambit failed, and Thanos realized how close he was to failure himself. He once again reinstated his omniscience, and became all-powerful, all-knowing once again.

    It was then that the Cosmic forces themselves attacked. The mighty forces, each near-omnipotent on their own, were no match for the omnipotence the Infinity Gauntlet bestowed upon Thanos. Eternity and Thanos had a final epic battle where Thanos perseveres, becoming the embodiment of this universe's reality. Thanos sheds his mortal form and takes his place Eternity's replacement. Nebula seizes this opportunity to take the gauntlet from the former body of Thanos. Thanos realizes his error and joins with the remaining heroes and cosmic forces to defeat the now omnipotent Nebula. Their relentless attack on the confused Gauntlet wielder allows Adam Warlock to enter the Soul Gem, a gem he is intimately attached to. From within the Soul Gem he links with the other Infinity Gems and causes the gems to feedback on Nebula, causing her to remove it.

    Adam Warlock then becomes wielder of the Gauntlet. In an attempt to be a \"perfect\" god, Warlock's first use of the power was to expel from his soul the Good and Evil. This was the first step to his reign as God. But before he can begin, the Living Tribunal appears and deems Warlock too unstable and therefore unfit to wield the power. He didn't appear previously because he knew that Thanos wouldn't upset the delicate balance of the universe. Without morals or vices, with his sole focus of being a god being undermined, Warlock violently reacts to the Living Tribunal's judgment. The Living Tribunal dismisses Warlock's uses of the Gauntlet and deems that they would no longer be able to function together, preventing anyone from achieving omnipotence through possession of the gems. The gems separate, and Adam Warlock forms Infinity Watch to safeguard the powerful and dangerous Infinity Gems. Thanos retreats to a life of farming to reflect on his life, death, and brush with godhood.

    Reading Order

    Prologue

    1. Silver Surfer #34
    2. Silver Surfer #35
    3. Silver Surfer #36
    4. Silver Surfer #37
    5. Silver Surfer #38
    6. Silver Surfer Annual #3
    7. Silver Surfer #40
    8. Silver Surfer #42
    9. Thanos Quest #1
    10. Thanos Quest #2
    11. Silver Surfer #44
    12. Silver Surfer #45
    13. Silver Surfer #46
    14. Silver Surfer #47
    15. Silver Surfer #48
    16. Silver Surfer #49
    17. Silver Surfer #50

    Infinity Gauntlet

    1. The Infinity Gauntlet #1
    2. The Infinity Gauntlet #2
    3. The Infinity Gauntlet #3
    4. The Infinity Gauntlet #4
    5. The Infinity Gauntlet #5
    6. The Infinity Gauntlet #6

    Crossovers

    1. Cloak and Dagger #18
    2. Quasar #24
    3. Spider-Man #17
    4. The Incredible Hulk #383
    5. Doctor Strange, Sorcerer Supreme #31
    6. Silver Surfer #51
    7. Quasar #26
    8. Quasar #27
    9. Doctor Strange, Sorcerer Supreme #32
    10. Silver Surfer #52
    11. Silver Surfer #53
    12. Silver Surfer #54
    13. Doctor Strange, Sorcerer Supreme #33
    14. Silver Surfer #55
    15. Silver Surfer #56
    16. Silver Surfer #57
    17. Silver Surfer #58
    18. Doctor Strange, Sorcerer Supreme #34
    19. The Incredible Hulk #384
    20. Doctor Strange, Sorcerer Supreme #35
    21. Silver Surfer #59
    22. Sleepwalker #6
    23. The Incredible Hulk #385

    Infinity Gauntlet Aftermath

    1. Silver Surfer #60
    2. Doctor Strange, Sorcerer Supreme #36
    3. Warlock and the Infinity Watch #1
    4. Warlock and the Infinity Watch #2
    5. Warlock and the Infinity Watch #3
    6. Warlock and the Infinity Watch #4
    7. Warlock and the Infinity Watch #5
    8. Warlock and the Infinity Watch #6
    9. Silver Surfer #61
    10. Silver Surfer #62
    11. Silver Surfer #63
    12. Silver Surfer #64
    13. Silver Surfer #65
    14. Silver Surfer #66
    15. Silver Surfer Annual #5

    Related Story-Arcs

    • Rebirth of Thanos - this story arc set the stage to bring Thanos back into the limelight of the Marvel Universe and was the immediate precursor for Infinity Gauntlet.

    Collected Editions

    Related Items

    Non-U.S. Editions

    Adaptations

    Television

    • The Infinity Gems plays a major part in The Super Hero Squad Show, with Thanos trying to assemble the Gauntlet.
    • The storyline was loosely adapted in the Avengers Assemble episode \"Thanos Triumphant.\" Following a multi-episode arc about the Infinity Gems, Thanos assembles the Infinity Gauntlet and challenges the Avengers to a final battle on a floating shrine he's created.

    Film

    Video Games

    \"Marvel
    Marvel Super Heroes
    • The comic was loosely adapted in the Japanese fighting game Marvel Super Heroes, which was made by Capcom. The game featured Captain America, Spider-Man, Iron Man, Hulk, Wolverine, Psylocke, Magneto, Blackheart and Shuma-Gorath as playable characters, Anita as a secret unlockable character, with Doctor Doom as the sub-boss and Thanos as the final boss. The plot revolves around the heroes and villains fighting for possession of the Infinity Gems, with culminating in a final battle against Thanos for the fate of the universe.
    • The plot was also loosely adapted in Marvel Super Heroes: War of the Gems.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-132450/","id":132450,"name":"The Heat Is On...","issue_number":"18"},"first_appeared_in_episode":null,"id":42233,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2021132-23957_342631188855_829193855_3541011_111802_n.jpg","image_tags":"All Images,Artwork,Earth-616 Avengers,Earth-616 Cloak,Earth-616 Cyclops,Earth-616 Doctor Doom,Earth-616 Doctor Strange,Earth-616 Drax,Earth-616 Firelord,Earth-616 Hulk,Earth-616 Iron Man,Earth-616 Namor,Earth-616 Nova,Earth-616 Quasar,Earth-616 Scarlet Witch,Earth-616 She-Hulk,Earth-616 Silver Surfer,Earth-616 Thor,Earth-616 Vision,Earth-616 Warlock,Earth-616 Wolverine,Infinity Gauntlet"},"name":"Infinity Gauntlet","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet/4045-42233/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42234/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-08-11 19:45:55","deck":"Adam Warlock's bad side, the Magus, separates from his body and assembles the Infinity Gauntlet. Magus creates doppelgangers of Earth's heroes as part of his plan to recreate a universe of evil.","description":"

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-304148/","id":304148,"name":"The Infinity War Preview","issue_number":"1"},"first_appeared_in_episode":null,"id":42234,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2966185-infwar_cover_front_col.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2966185-infwar_cover_front_col.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2966185-infwar_cover_front_col.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2966185-infwar_cover_front_col.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2966185-infwar_cover_front_col.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2966185-infwar_cover_front_col.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2966185-infwar_cover_front_col.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2966185-infwar_cover_front_col.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2966185-infwar_cover_front_col.jpg","image_tags":"All Images"},"name":"Infinity War","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/infinity-war/4045-42234/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42235/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-04-03 15:16:48","deck":"Adam Warlock's discarded good side, the Goddess, recruits devout heroes and assembles the cosmic cubes to create a cosmic egg that would provide her with the power to purge all evil from the universe.","description":"

    Related Items

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-37399/","id":37399,"name":"From Here...To There...To Eternity","issue_number":"54"},"first_appeared_in_episode":null,"id":42235,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/1575053-infinitycrusade.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/1575053-infinitycrusade.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/1575053-infinitycrusade.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/1575053-infinitycrusade.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/1575053-infinitycrusade.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/1575053-infinitycrusade.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/1575053-infinitycrusade.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/1575053-infinitycrusade.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/1575053-infinitycrusade.jpg","image_tags":"All Images"},"name":"Infinity Crusade","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/infinity-crusade/4045-42235/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42238/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-03-17 04:04:48","deck":"Wolverine, Cyclops, and Fantomex assault the Weapon Plus base to uncover important revelations about the Weapon Plus program including the suggestion that Captain America was Weapon I.","description":"

    After having his telepathic affair with Emma Frost discovered by his wife Jean Grey, Cyclops leaves the Xavier Institute for Higher Learning and the X-Men. Not knowing what to do, he goes to the Hellfire Club to watch the exotic dancers and get drunk. What he doesn't expect to find there is Wolverine. Wolverine invites him to do some \"serious drinking\", and turns it into a wager. If Scott can out-drink Wolverine then he can get back to doing whatever he wanted to do. If Wolverine wins Scott needs to help him out with a mission. Wolverine had arrived with Fantomex, who had promised to help him uncover the truth behind their origin and the Weapon Plus program. Wolverine tracked down Scott to help them. Scott lost the wager and passes out.

    Cyclops, Wolverine, and Fantomex arrive to Weapon Plus's The World to find that someone had already been there before them. The remains of a team of A.I.M agents is all over the place and the only remaining member is not in a position to tell them much. Fantomex deduces that Ultimaton (Weapon XV) had killed the agents. He explains that within The World time is artificial, and can be sped up, slowed down, or stopped completely. The inhabitants of The World were engineered from biological creatures as well as micro-sentinel technology. Speeding up time within The World and regular Gamma radiation bombardment allowed Weapon Plus to artificially stimulate evolution within the inhabitants. Their goal was to create super-human soldiers to fight in the pending war between humanity and mutant kind.

    Fantomex pauses time within The World and they venture inside the dome to locate Weapon IV. It has not been long on the outside since Fantomex escaped The World, but inside the dome generations had passed. Within the world they saw World Police Cars driven by whale brains, and massive destruction. All of the other inhabitants of the world were killed by Weapon XV. The doors to the world slam shut as the last surviving agent of the A.I.M. raid turns time within The World back on, releasing Weapon XV from stasis. The three are able to find XV quickly, but are of little use against him. Fantomex signals for E.V.A to regain control of The World from the A.I.M. agent, but when she gets to the controls she realizes that Weapon XV has locked her out. After beating Wolverine, Cyclops, and Fantomex in combat, Weapon XV smashes out of The World, freeing himself.

    Within E.V.A. they tracked Ultimaton to a nearly completed space-station orbiting around the Earth. Within they found the records of the Weapon Plus program, as well as its plans. The Super-Sentinels that were Weapon XII through XV were designed to rid the world of mutants. Within the station EVA was captured by Weapon Plus, and killed. Wolverine had read the files about himself and those that came before him, learning that the Weapon Plus program started back in World War II with Captain America: Weapon I. Wolverine also discovered that there was a traitor within the mansion, someone sent to infiltrate them. Ultimaton found Wolverine and before he could do anything Wolverine triggered the auto-destruct for the station. Cyclops and Fantomex are able to escape in one of the planes.

    Professor X uses Cerebro to find Wolverine is still in space. The explosion had thrown them into a nearby asteroid near the course of the satellite. Jean Grey takes one of the X-Planes to rescue Logan. She finds him destroying Weapon XV, and recognizes that the asteroid they are on is no ordinary satellite, it is Magneto's former base Asteroid M.

    Related Story-Arcs

    Murder at the Mansion - The events that took place before Assault on Weapon Plus, including the attempt on Emma Frost's life.

    Planet X - The events of Assault on Weapon Plus are continued through the Planet X story-arc.

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114457/","id":114457,"name":"Assault on Weapon Plus, Part 1: Brimstone & Whiskey","issue_number":"142"},"first_appeared_in_episode":null,"id":42238,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/96310-195738-assault-on-weapon-pl.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/96310-195738-assault-on-weapon-pl.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/96310-195738-assault-on-weapon-pl.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/96310-195738-assault-on-weapon-pl.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/96310-195738-assault-on-weapon-pl.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/96310-195738-assault-on-weapon-pl.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/96310-195738-assault-on-weapon-pl.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/96310-195738-assault-on-weapon-pl.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/96310-195738-assault-on-weapon-pl.jpg","image_tags":"All Images,Assault on Weapon Plus"},"name":"Assault on Weapon Plus","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/assault-on-weapon-plus/4045-42238/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42241/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-03-10 11:29:54","deck":"Follow up event to Fatal Attractions that pitted the Avengers and X-Men against Fabian Cortez and Exodus in battle on the island of Genosha.","description":"

    Cortez attempted to shield himself from his former master's wrath by kidnapping Magneto's granddaughter Luna. However, as Luna's father Quicksilver had strong ties to the X-Men and her mother Crystal was a member of the Avengers, both teams became involved in the Genoshan conflict. The situation was further complicated by Magneto's lieutenant and self-proclaimed heir Exodus, who sought to kill both Cortez for his betrayal and Luna for \"disgracing\" Magneto's line by being merely human.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-38090/","id":38090,"name":"Bloodties Part I of V: Reckoning","issue_number":"368"},"first_appeared_in_episode":null,"id":42241,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2029805-avnxmbtmphc_cov4_col.jpg","image_tags":"All Images,Bloodties,Story Arcs"},"name":"Bloodties","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/bloodties/4045-42241/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42294/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-09-24 14:09:42","deck":"The Hulk returns to Earth after the Planet Hulk storyline, waging war on the Illuminati and all that wronged him.","description":"

    Plot Summary

    \"World
    World War Hulk #2

    Trapped on the violent planet Sakaar by the Illuminati, Hulk has finally found peace. After the events of the Planet Hulk storyline Hulk has defeated the Red King, become a king and a savior to a world full of aliens, liberated the spikes, and found a wife and family in Caiera and their unborn child. For the first time in his life Hulk is happy. However, all this was taken away when the shuttle exploded and destroyed hulks kingdom along with his wife and unborn child. Thus, he sets off on a quest to avenge his fallen, and make the illuminati pay for what they have done. Little did he know that it was his companion, Miek, that was at fault here.

    Full Plot

    Everything Hulk has worked so hard to build comes crashing down around him when the ship that brought him to Sakaar is investigated. The Sakaar people did not care about Hulk's origin, or that he was there because the Illuminati of earth saw fit to banish Hulk, they cared only about Hulk's actions since coming to Sakaar. The Sakaar people made the ship into a shrine celebrating Hulk's arrival and their subsequent liberation . When Hulk and Caiera are brought to view this Shrine, the ship begins to emit overload warnings. Angered once again at those who sent him there, Hulk grabs the ship and hurls it into the sky. Hulk's actions did not matter as the ship exploded before leaving the planet's atmosphere, destroying virtually all life on the planet including Caiera. Hulk is left alone and hurt, king of a now broken and desolate planet that threatens to take Hulk as well. Hulk's Warbound are all that survives the destruction of Sakaar, and with a robot that can navigate most of the known universe Hulk, Korg, Miek, No-name the Broodspawn, Elloe, and Hiroim forge weapons and plot a course to Earth to seek revenge on those that destroyed their paradise.

    On the way back to Earth the true nature of Hulk's rage begins to frighten his allies. When a group of alien parasites sweeps over the ship intending to take it for themselves, Hulk loses control to his anger. Hulk tears through the invading aliens not even seeing them, but instead seeing only the faces of those that sent him away. Wanting to help their comrade, No-name and Korg exited the ship to assist Hulk. Still seeing the faces of the Illuminati in everyone around him Hulk nearly kills two of his closest allies. Concerned for the Hulk as well as their own safety, Hiroim teaches Hulk to meditate, helping him to control and direct his anger while still keeping in control of his rage. Hulk works with Hiroim to develop a plan of action. Using Hulk's knowledge of his enemies strengths and weaknesses, Hiroim is able to come up with a plan of attack, starting with taking out their most powerful enemy, Black Bolt the king of the Inhumans. Meanwhile, back on Earth She-Hulk has been depowered. After she learned about what the Illuminati did by sending her cousin into space, she punched out Iron Man, the director of SHIELD. Also, feeling that he owes Hulk a debt for saving his life, Amadeus Cho is working to assemble a group of Hulk's most powerful allies to support Hulk upon his return.

    Dawn of War

    Hulk arrives first on the Earth's Moon, facing off against Black Bolt and Medusa of the Inhumans. Hulk is warned that a single whisper on the lips of Black Bolt can destroy Hulk. Attacking the King, Hulk is hurled backward by the power of Black Bolt's whisper. Enraged, the Hulk attacks again telling Black Bolt that Hulk didn't come for a whisper and wants to hear him scream. He projects an image of himself in New York City, and talks about the bad that Dr. Strange, Iron Man, Black Bolt, and Mr. Fantastic have done to him. He urges that Manhattan be evacuated, or, as he holds up a mauled Black Bolt, \"I will do THIS to your whole puny planet.\" Shortly afterwards, New York's heroes are seen evacuating Manhattan, to the public's disapproval. Iron Man offered complete freedom to any unregistered hero who would register, and also fight on the side of Earth, against Hulk.

    World War

    Iron Man dons his \"Hulkbuster\" Suit, in hopes of defeating Hulk. As the fight rages on, Iron Man, in a monologue, takes full responsibility for the incident, and explains that he knew that this day would come, as soon as he heard news that Hulk had not reached his destination. As they are battling, Iron Man injects nanobots into Hulk's bloodstream. This was supposed to slow him down, but hasn't seemed to take effect yet. After much fighting in the now empty Manhattan, Iron Man seems to have defeated Hulk. But, after a flashback of the death of his wife, Caiera, he only becomes angrier. He bursts from the crater his body had created, and dominates Iron Man.

    Next, he sets his eyes on Reed Richards. All of the Fantastic Four comes to his aid including its temporary members Black Panther and Storm. After the ensuing battle in which the Fantastic Four is defeated Reed escapes to find Sentry, one of Hulks best friends. Sentry recalled his last visit with the Hulk when he was battling the Void and decides not to go. With this news Reed tries to create the illusion that Sentry is appearing in an effort to quell the Hulks rage. This does not work.

    After defeating the Fantastic Four the Hulk sets out to kill Doctor Strange. Strange unleashes the power of the Sorceror Supreme only to be defeated by the Hulk. Strange then fuses with the demon Zom replacing his shattered hands with battle axes. Somehow the Hulk still managed to defeat Dr. Strange.

    Hulk and the Warbound then decide to build a coliseum. In it Hulk has the super hero Mister Fantastic fight Tony without his armor using control units from Sakaar. Eventually Reed defeats Tony and ordered to kill him but before anything can happens Hulk stops the telling them he came for \"justice not murder\". Hulk also tells them of his plan to destroy New York with no one in it and to leave the Illuminati in defeat. Then before this destruction the Sentry finally makes a appearance. They battle for a very long time and in the end the two lead to a stalemate, with both reverting to human forms as Banner weakly throws the last punch leaving Reynolds to collapse before him. As Banner extends his hand to Rick Jones as truce, Miek one of the Warbound lashes out at Banner but strikes Rick instead. This causes Bruce to revert back to the Hulk and angrily attacks Miek. It is then Miek reveals the truth. He says that Hulk conquered Sakaar and killed the Red King. But he should also have slaughtered his people. Instead he let them live. So, he watched as they loaded an old warp core into the shuttle that brought the Hulk in the first place. He didn't warn anyone or stop the Red King's followers as he knew, that it wouldn't kill the Hulk, it would just remind him what he was made for. As No-Name assault Miek brutally in retaliation, Miek's betrayal angers the Hulk and his rage increases beyond anything he has ever felt. In his rage, Hulk releases so much energy that each of his footsteps causes tremors alongside the entire eastern seaboard, throughout Connecticut, Massachusetts and New York. Screaming out his hatred and rage, he asked the heroes to stop him before he 'breaks the world'.

    In defense Iron Man then activates a series of satellite anti-gamma lasers which fire and finally ends the Hulk's prolonged rampage. Leading to the arrest of Bruce Banner. Now (Banner) locked up three miles inside the Earths crust inside a Shield prison lies in a coma-like state. As then Skaar, son of Hulk, rises from the destruction of Sakaar. What happens now awaits to be seen.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108922/","id":108922,"name":"Warbound, Part 1","issue_number":"106"},"first_appeared_in_episode":null,"id":42294,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/93654-146565-world-war-hulk.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/93654-146565-world-war-hulk.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/93654-146565-world-war-hulk.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/93654-146565-world-war-hulk.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/93654-146565-world-war-hulk.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/93654-146565-world-war-hulk.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/93654-146565-world-war-hulk.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/93654-146565-world-war-hulk.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/93654-146565-world-war-hulk.jpg","image_tags":"All Images,World War Hulk"},"name":"World War Hulk","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/world-war-hulk/4045-42294/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-42933/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2019-08-30 12:17:12","deck":"Maelstrom attempts to destroy the universe with a super-massive-black hole. Only Quasar can stop him, but he's dead.","description":"

    Fresh off his victory at the Stranger’s Lab world (see Journey into Mystery), where he saved the Squadron Supreme from Overmind, and saved the entire watcher race from the Oblivion Plague, a confident Wendell Vaughn wanted to celebrate. He used the recent client acquisitions for his business at Vaughn Securities as an excuse to ask his small staff out for a dinner. For one reason or another, most of the staff was not able to attend with the exception of his secretary, Kayla Ballantine.

    Kayla wasted little time in explaining to Wendell that she has had a crush on him since the day he hired her. She stressed that she broke up with her boyfriend just on the off-chance that Wendell might be interested, unless he had an issue with dating a subordinate. She briefly questioned if Wendell might be gay, given his friendship with Mike Khary. Wendell clarified he was attracted to women in general and Kayla in particular, but stressed that it might be okay for them to date as long as she doesn’t feel pressured by him. Just as the conversation looked as though it was going somewhere, Wendell’s Quantum-Bands informed him that a ship had just penetrated the sensor net he had erected around the planet.

    Wendell decided that because of the way she had opened up to him, that he felt obliged to share his secret identity with her after offering up countless excuses over the months that they had worked together. He asked if she had ever heard of the new Avenger, Quasar (despite that Quasar had saved her life upon their first encounter) and showed her his Quantum-Bands. He then offered to take her flying just like in the Superman movie. He left some cash on the table for the bill and departed, leaving behind a very shocked Kayla Ballantine.

    Quasar got into orbit and found Jack Of Hearts leading a rag-tag group of tethered spaceship hulls. He confronted Jack, who responded with naked aggression having taxed his powers and patience to the limit on his trip from the Stranger’s lab world. After a brief struggle Jack found himself betrayed by two other members of the entourage the Presence and Starlight (formerly Red Guardian II).

    The Presence attempted to kill Quasar outright, but when Jack refused to take part in murder he blasted him instead. Then with a close-range blast to the temples he thought Quasar dead. However, Quasar quantum-jumped out of harm’s way at the last possible second. Finding that Jack was hurtling away from the Earth; the tethered refugee ships headed into the atmosphere threatening to burn up somewhere over Siberia, while the Presence and Starlight headed into the atmosphere toward the North American continent.

    Realizing lives were directly at stake on the refugee ship; Quasar caught up with them as they entered Russian airspace and he rendered them invisible to radar and planted them down in Siberia. He questioned the occupants of the ships and found that despite their very alien appearances they were all very human. Eon contacted Quasar directly to explain that he was under direct attack Quasar quickly departed, leaving the refugees there.

    He radioed ahead to the Fantastic Four, telling them that a couple of cosmic level menaces were breaking into a lower level of their building. The FF was able to capture Starlight, and Quasar was able to arrive in time to protect Eon by trapping the Presence in the trackless Quantum-Zone. Feeling that he had saved his mentor from the “Cosmic Assassin”, Quasar decided it was time to celebrate. He instead found Kayla, who he was just starting a relationship, with in the arms of his best friend, Makkari. He left the scene without a word to either of them. He traveled to his father's house and found him dead on the kitchen floor. He learned to his shock that his father had been dead since before Quasar visited the Stranger’s Lab world. Quasar felt betrayed. Eon chose to animate him because he was certain that the Cosmic Assassin had killed him to throw off Quasar’s mental stability, and Eon was not convinced that the Presence had been the threat that Quasar had been appointed to combat. Quasar quit as Protector and told Eon to stay out of his life.

    Malcolm Stromberg, a wealthy philanthropist wanted to gain the services of Vaughn Securities and that he knew Wendell Vaughn’s identity as Quasar, saying in no uncertain terms that he would have Quasar’sQuantum-Bands or he would kill Quasar's friends. Not knowing what else to do Quasar attacked only to find his beams bending around Stromberg. Stromberg then revealed himself to be none other thanMaelstrom, the Cosmic Assassin.

    \"No

    Holding Quasar frozen in place with his control of kinetic energy, Maelstrom gave an ultimatum: Give up the Quantum-Bands or his friends would die. Quasar attempted to bargain for their lives with the understanding that the bands could not be removed from Quasar until he was dead. Maelstrom simply used a steak knife to cut Quasar's hands off at the forearm.

    Shortly thereafter, having been nailed to a wall of Stromberg's manor, of an energy manifestation of Mar-Vell appears to Quasar. Mar-Vell speaks for Eon, saying that despite that he was facing death now, he was a worthy successor and that he surpassed all of Eon's expectations. He then departs saying only \"Goodbye, brother.\" Later, an energy manifestation of Gilbert Vaughn appeared and explained his aloofness to his son saying:

    “Wendell, you know that I was never any good at expressing how I felt. But I’m telling you now that I was proud of you, son. Maybe a little jealous, too. Each generation wants their progeny to do a little better than they did—but what you achieved was just so much better than I could have hoped to have accomplished… it was hard to accept…”

    “… I’m very proud of you, son. I’m sorry you had to wait until I was dead to hear it… …I love you.”

    And with that Dr. Gilbert Vaughn vanished.

    Quasar was greatly strengthened by these visits and was now ready to face his death. It was then that Phobus appeared with an energy whip. Saying he was going to whip Quasar a mere 39 times and needed Quasar to keep count for him. Phobus proceeded to whip him, but Quasar refused to keep count, only repeating \"One\". Phobus enraged by this, could not keep count and whipped Quasar innumerable times. Exhausted, Phobus left satisfied, and Quasar was left dying.

    It was then that Wendell Vaughn's own personified version of Death manifests before him: Kid Reaper.

    Kid Reaper ended that last little ember of lifeforce that Wendell was still defiantly clinging to with a sudden stab to Wendell's heart with his scythe.

    Much later, an energy wraith manifestation bearing Quasar's appearance and seeming to be in some sort of trance simply floated out in the outer void. Kid Reaper suddenly appeared nearby and openly questioned the energy manifestation as though it was truly Quasar. Awakened from his stupor, Quasar asked Kid Reaper what this place was and why he wasn't dead. Kid Reaper pled ignorance saying that \"Nothing like this had ever happened to him before\". In a flash, Quasar realizes that Eon is still in danger and that it is his duty (even in death) to protect him. Quasar asks Reaper to hold open his cape. He says he finally knows what it is for.\" and he travels into it- using it as a portal.

    Quasar along with Kid Reaper quickly arrived at the base of Eon’s brain, which is about the size of a planetoid, where Maelstrom reclines in a (Quantum-created) chair and has created various probes into the gray matter. Maelstrom hears Eon explain where Quasar should fire a blast that would result in immediate death for Eon. Maelstrom howls in rage at the sudden re-appearance of his adversary and attempts to blast him into nothingness (with the recently acquired Quantum-Bands), but since the energy-wraith Quasar is made from the same energy type that the Quantum-Bands produce the beam passes harmlessly through him. Quasar believing that it was Eon who was animating his form asked Kid Reaper to alert the Avengers to Maelstrom's threat and Kid Reaper agrees. Quasar responds by heeding his mentor’s wishes and firing a devastating bolt of energy right into Eon’s Brain stem.

    When the dust clears, there is a gaping crater where Eon's brainstem used to be. Maelstrom howls in rage at apparently denied the secret of Cosmic Awareness. Quasar to his surprise still existed and found that his awareness is expanding as stars start to form on his face. Maelstrom understood that Eon had in his last act given the secret of Cosmic Awareness to his protector and quickly demanded that Quasar give it to Maelstrom. Knowing that Maelstrom could not threaten him anymore, Quasar refused. Changing tactics Maelstrom quantum-jumped out of the Eonverse to orbit of Earth where Quasar and Kid Reaper followed him.

    \"No

    Maelstrom halted the rotation of the Earth using his own power, the power of the anomaly and augmented that power with the Quantum-Bands, saying he'd only free the planet from imminent destruction only if Quasar would release Cosmic Awareness to him. Unable to gamble with his own home planet, Quasar retreated to the Quantum-Zone, leaving Kid Reaper behind.

    It was then that Maelstrom revealed that he already had Cosmic Awareness and simply wanted Quasar to give his up. Maelstrom then sent Kid Reaper back to the realm of Oblivion.

    Maelstrom uses his mastery of Kinetic energy backed by the limitless power of the Quantum-Zone to create a super-black hole at a point he arbitrarily decides is the center of the universe. The black hole quickly grows to dwarf most average sized galaxies. And with Quasar in hiding, and his plan proceeding apace, Maelstrom takes the time to taunt Galactus, Thanos (who was at the time wielding the Infinity Gauntlet), and Arishem the Judge of the Celestials.

    Watchers (probably mostly those displaced by the black hole) have come to the site of the Black Hole (which at this point was roughly the size of a galaxy) to watch what is likely the very end of the universe, Galactus and his herald, Nova have also appeared near the event horizon, several different species have sent emissaries to see first hand the devastation; finally the Prime Celestial Host arrive, all powerless to do anything, they have all come simply to watch the collapse of the universe.

    Within the Quantum-Zone, Quasar is contemplating his next move- it is then that Infinity makes her presence known. She explains to Quasar that is she who animated his quantum-form along with her place of the cosmological order. She is sister to Eternity and the physical manifestation of our universe and as such, Maelstrom's black hole was quite literally killing her. She named Quasar as her avatar.

    She offers the power to offset the power of the Black Hole by feeding it the energy of the Quantum-Zone- ideally overloading it. Quasar returns to our universe and attempts this, but Maelstrom senses his presence and intervenes. He slams into Quasar knocking them both into the Black hole, Quasar being made of Quantum-Energy can resist its destructive force, but Maelstrom cannot especially when Quasar augments the power singularity, causing it to destroy Maelstrom, but increase the speed at which it is taking in matter from the Universe.

    With Maelstrom destroyed, Quasar re-enters the Black hole and attempts to again overload the Black hole directly from within and almost succeeds, but Oblivion pulls Quasar into his realm. Oblivion reveals that he is Maelstrom's baker hoping to bring the entire universe into Oblivion's realm. He also reveals that he has animated Maelstrom just as Infinity animated Quasar and named Maelstrom his avatar.

    Maelstrom gloats that Quasar almost succeeded in overloading the black hole, but now that he is trapped in Oblivion's realm, Maelstrom was going to \"thrash the Infinity-force out of him\". It is than that a small aspect of Infinity flies out of Quasar's mouth and manifests as Infinity herself; she augments Quasar so that he and Maelstrom are on even terms; Oblivion tells her that it is time that a new deal is struck between the forces of life and death. Infinity regretfully agrees. The battle is met and they find that they are indeed too evenly matched, which means that there is no way to stop the black hole.

    Quasar and Maelstrom stand deadlocked firing blasts of unimaginable amounts of energy at each other even as Infinity and Oblivion mirror their battle on much higher planes of existence. Maelstrom explains that the longer they battle the more of the universe the black hole will consume so than even if Maelstrom cannot win their battle, he will win his war against all life. Quasar focuses his Cosmic Awareness on the conundrum and realizes that he might have one advantage over Maelstrom.

    Quasar tells Maelstrom that he has something to show him and Quasar’s costume changes briefly. Under the onslaught of energy Maelstrom barely notices so Quasar shows him again. Quasar costume changes to his previous costume that the cosmic entity Origin had retroactively removed from reality when Quasar had protected her against the Unbeing. What would otherwise be a simple costume change was actually a physical paradox that sent ripples of temporal anomalies down the time stream. This simple fact made Quasar a more powerful anomaly than Maelstrom. Maelstrom shocked by this fact loosed his concentration upon the Quantum Bands for only a moment, but that was all it took before the Quantum Bands consumed him. Quasar then reclaimed the Quantum-bands.

    With Maelstrom destroyed, all the energy and power he had accumulated was released back through the Black Hole which reversed its flow. The universe was safe and Infinity, Eternity, Oblivion and Death negotiated a new balance between their powers as they represented the four cosmological points of creation. Quasar took the opportunity to use Infinity’s power to restore Earth’s rotation, resurrect himself, and create a new costume.

    \"No

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33888/","id":33888,"name":"Refugees","issue_number":"19"},"first_appeared_in_episode":null,"id":42933,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2355/583469-30653_4242_34107_1_quasar_super.jpg","image_tags":"All Images"},"name":"Cosmos in Collision","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/cosmos-in-collision/4045-42933/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43038/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-01-26 11:28:20","deck":"The Fall of the Hammer - A floating city, called Vahalla, appears in the sky and those aboard claim to be gods. The heroes of the year 2099 plan to find out the truth.","description":"

    Plot Summary

    After creating a group known as the Aesir; mainly to combat vigilant heroes, Avatarr decided to also build the floating city known as Valhalla to house the Aesir. But soon afterwards Jordan Boone and the man-beast Ravage investigated Valhalla, with Ravage discovering a considerable weakness in the engines; which maintained the city afloat.(Anti gravity engines which allowed the city to remain in the sky) However Boone became more interested in becoming a superhuman to keep up with his friend, Meanstreak. Boone soon found a way to trick his way in to the Aesir program and influence them to eventually make him become the 2099s Loki, while Ravage joined both the X-Men and Doom. Soon afterwards X-Men and Doom fought with the Aesir, resulting in the death of Heimdell with the help of Loki. Doom then began to battle 2099s Thor. This battle eventually led to a great explosion, separating both Thor and Doom. Although, both soon regrouped separately, with Avatarr reminding Thor of his mortality, while Doom joined 2099s Spider-man, Punisher and Ravage. Doom's group eventually took control of Valhalla, when soon afterwards the engines maintaining the city afloat began to malfunction and caused the city to collapse upon New York. During this time the X-Men gathered the workers at Valhalla and brought them to safety. However after Punisher used Thor's recognition as Jake Gallows, the team of 2099 heroes threw Thor's hammer in to the engines causing the engines to begin stabilizing and work again once more. In the end, Doom claimed Valhalla for himself and was made a province of Latveria. The majority of Aesir perished in battle, with Loki and Hela being some of the few to survive.

    Collected Editions

    Related Items

    \"All
    All five covers merged

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108718/","id":108718,"name":"The Rise of the Hammer","issue_number":"15"},"first_appeared_in_episode":null,"id":43038,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2028252-untitled.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2028252-untitled.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2028252-untitled.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2028252-untitled.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2028252-untitled.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2028252-untitled.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2028252-untitled.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2028252-untitled.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2028252-untitled.png","image_tags":"All Images,Story Arcs"},"name":"The Fall of the Hammer","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/the-fall-of-the-hammer/4045-43038/"},{"aliases":"The Night Gwen Stacy Died","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43220/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2016-12-30 16:36:50","deck":"One of the biggest shocks in the comic book industry, the death of Gwen Stacy. The Green Goblin kidnaps Gwen and throws her off the Brooklyn Bridge. Spider-Man tries to save her but is unsuccessful.","description":"

    The story arc is entitled “The Night Gwen Stacy Died” and it was written by Gerry Conway, penciled by Gil Kane, and inked by John Romita Sr. It also featured Tony Mortellaro penciling the fight scene between Spider-Man and the Green Goblin. It was a two-issue story in The Amazing Spider-Man issues #121 and #122.

    Plot (Contains Spoilers)

    Harry Osborn had become a drug addict and his father secluded him to the Osborn mansion so this does not go public and possibly ruin Norman. When Peter, Gwen, and Mary Jane go to visit Harry who is still ill due to his drug addiction, Norman blamed the three of them for Harry’s condition. Norman had lost his memories of the Green Goblin and the identity of Spider-Man due to amnesia. Later Norman would soon discover that he was going to face financial ruins anyways. This caused him to suffer a breakdown, which results in him unlocking the lost memories. Norman remembers the Green Goblin and the identity of Spider-Man again. He becomes obsessed over making Spider-Man pay for ruining his life and Harry’s life. Norman would use Spider-Man’s identity to his advantage by abducting the girlfriend of Peter Parker, Gwen Stacy. He was able to kidnap Gwen and took her hostage to lure Spider-Man to him. Goblin lures Spider-Man to the Brooklyn Bridge, where the two began to fight. While they fought each other, Gwen is unconscious the whole time. Spider-Man seemed to have the upper hand in the fight, until Goblin grabs Gwen and throws her off the bridge. Spider-Man frantically shoots his webbing to catch and he does. Upon catching her though was a “snap” sound effect next to her neck. After Spider-Man reels her back up to the bridge, he realizes that she is dead. Whether Gwen died because of whiplash or if the Goblin had already killed her to begin with was never explained. Spider-Man still blames himself for Gwen’s death and swears revenge against the Green Goblin. Spider-Man starts looking for the Green Goblin soon and was able to track him down to a warehouse. Spider-Man proceeds to beating Norman to near death, but he tells himself he can’t kill him. While Spider-Man hesitated, Goblin remote controlled his glider to try and impale Spider-Man from behind. Spider-Man is alerted by his Spider-Sense that enabled him to jump out of the glider’s path right before it hit him. The glider continues to go towards Goblin which stabs him and kills him instead. Peter is finally at home when he is confronted by Mary Jane, at first Peter thought Mary Jane would not know how he feels because she is a “party girl,” but when MJ cried, that was the first time the two connected so deeply.

    Movie Adaption

    In the movie Spider-Man (2002), it adapted itself to this story arc. The Green Goblin had found out Spider-Man’s secret identity and planned to make him suffer. The Green Goblin kidnaps not Gwen, but Mary Jane Watson since Gwen was not introduced in this movie. Mary Jane was kidnapped by the Green Goblin. The differences are that he took her hostage at Queensboro Bridge. Mary Jane is conscious unlike Gwen in the comics, but she was tossed off the bridge like Gwen. Spider-Man catches Mary Jane and she was able to survive. One of the big similarities in the movie adaptation was when the Green Goblin and Spider-Man fought in the abandoned warehouse. Peter could not come to kill the Green Goblin and was nearly stabbed in the back by the glider, but his Spider-Sense alerted him in time to jump out of the glider’s way and ended up stabbing Norman himself, killing him.

    Animated Adaption

    In the Spider-Man animated series (1994-1998) in the episode Turning Point the Green Goblin finds out Spider-Man's secret identity using a portal device called the time dilation accelerator which he had previously stolen from the Kingpin. Using this knowledge to his advantage the Goblin encourages his son Harry to invite Peter to his birthday party (the Peter-Harry relationship being strained during that time). At the party the Goblin psychologically tortures Peter, constantly implying that he will reveal his identity to the party goers. After Peter creates a distraction by throwing his web cartridges into the fire place causing the mansion to catch fire Norman uses the opportunity to change into his Green Goblin garb and engages Peter in the backyard. The Goblin manages to stun Spider-Man and drag him off at the back of his goblin glider to the Brooklyn Bridge. At the bridge Peter is able to free himself and change into his Spider-Man costume which was hidden under his clothes. After a brief battle, the Goblin decides that he hasn't made Spider-Man suffer enough and uses the accelerator to teleport to Spider-Man's house with the intent of kidnapping his Aunt May. Spider-Man races back to his house only to find his aunt sleeping peacefully. The Goblin then appears and tells Spider-Man that he would rather pay a visit to his other \"co-conspirator.\" The Goblin then vanishes through a portal. Due to a comment Osborn previously made at the party Spider-Man recognizes that the Goblin was talking about Mary Jane. Spider-Man races to her home but he is too late, the Goblin got there first and was now bringing her to the bridge. Spider-Man follows the Goblin to the bridge where a climactic battle begins between the two foes. During a pause in the fight the Goblin remote controls his glider to fire a missile at Spider-Man and Mary Jane. The blast accidently sets off the accelerator creating a portal on the side of the bridge. The blast also separates Spider-Man and Mary Jane who falls off the bridge and into the aforementioned portal which then closes shut. Spider-Man looks over the bridge but can't see Mary Jane's body. He dives into the river to look for her. Meanwhile the Goblin finds the accelerator and mounts back on his glider. The search for Mary Jane's body ends in vain and Spider-Man rises from the water with nothing but vengeance on his mind. Believing Mary Jane dead and vowing to make the Goblin pay Spider-Man engages him once more. Stunned by the webslinger's anger the Goblin attempts to retreat by creating a portal but the accelerator was presumably damaged when the Goblin attempted to blast Spider-Man. The portal begins to suck everything into it, including the Goblin himself. Barely able to hang on the Goblin reverts back to his Norman Osborn personality and begs Spider-Man to help him. At first Spider-Man refuses, but then realizes that revenge is never justified and that nothing will bring Mary Jane back. Spider-Man attempts to help Norman (Spidey is able to resist the pull of the vortex because he can stick to the ground), however he once again reverts back to his Goblin persona and remote controls his glider to hit Spider-Man from behind which would send them both into the vortex. Thanks to his spider-sense Spider-Man dodges the glider and it hits the Goblin in the chest sending him into the portal and destroying the accelerator. The portal then closes shut. A broken Spider-Man is left alone to contemplate what had just happened.

    The presence of a portal device in the story was used by the writers as a substitute for death, as they were not allowed to kill people on Saturday mornings. As Gwen Stacy had not yet been introduced into the show, Mary Jane served as her replacement. It is notable that the real Mary Jane never again appears in the series after this episode.

    Collected Editions

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-13263/","id":13263,"name":"The Night Gwen Stacy Died","issue_number":"121"},"first_appeared_in_episode":null,"id":43220,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/108454-191425-the-death-of-gwen-st.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/108454-191425-the-death-of-gwen-st.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/108454-191425-the-death-of-gwen-st.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/108454-191425-the-death-of-gwen-st.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/108454-191425-the-death-of-gwen-st.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/108454-191425-the-death-of-gwen-st.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/108454-191425-the-death-of-gwen-st.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/108454-191425-the-death-of-gwen-st.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/108454-191425-the-death-of-gwen-st.jpg","image_tags":"All Images,Gwen's death"},"name":"The Death of Gwen Stacy","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/the-death-of-gwen-stacy/4045-43220/"},{"aliases":"Fearful Symmetry","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43327/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-09-14 11:37:09","deck":"Regarded as the greatest Kraven-story ever told, and one of the best Spider-man stories.","description":"

    There was a time when the world marveled at his physical prowess. A period when his courage inspired awe and his exploits drew envy. An interval when he truly was the world's greatest hunter. That was before the environmentalists deserted him, and the animal rights activists condemned him. It was before he met Spider-Man. Before he knew failure and humiliation. Sergei Kravinov was aware that death was coming. He could sense its stealthy approach and could almost see it grinning in the shadows. But Kraven wasn't ready to die. He couldn't rest until he had reclaimed his honor and dignity. Until he had satiated his pride and proven his superiority. Until he had defeated Spider-Man. And so, gathering his strength, Kraven went out on one last hunt...

    Fading Powers

    Kraven was still faster than a panther and stronger that a great ape, but he knew that he was no longer in his prime. Yet he believed that he would never know peace unless he humbled Spider-Man. Formulating a daring plan, he sought to immerse himself in Spider-Man's essence by burying his body within a veritable mountain of spiders and by using jungle herbs and potions to expand his consciousness.

    The Capture

    Having recently returned home from his honeymoon, and thinking about death all around him after going to a crook's funeral, Spider-Man was out web-swinging one night when he was suddenly attacked , drugged and captured by Kraven. As the hunter advanced on his prey, Spider-Man was unconcerned. Until, that is, he saw the rifle and the look in Kraven's eyes. Aiming the rifle at Spider-Man, Kraven shot the wall-crawler right between the eyes.

    Masquerade

    Kraven took the wall-crawler's body back to his estate, placed him in a coffin, and buried him on the grounds. But it wasn't enough for Kraven to merely slay Spider-Man. The hunter had to prove his superiority. He had to become his enemy. So, dressing up in a duplicate costume, Kraven assumed Spider-Man's identity.

    New Justice

    Kraven began to patrol the city, dispensing his own vicious brand of justice. He even rescued Mary Jane from muggers, but she immediately saw through the disguise. Unlike Spider-Man, Kraven actually killed some of the criminals he came across.

    The Battle

    While Kraven focused on Spider-Man, a ratlike monster stalked the streets of Manhattan. He was called Vermin, and he possessed superhuman strength, speed, and stamina. Kraven used his skills to track the monster through the sewers. Dressed like Spider-Man, Kraven confronted Vermin, beat him unconscious, and took him prisoner.

    Resurrection

    As Kraven claimed victory over Vermin, the real Spider-Man stirred...he had only been drugged by Kraven. Buried deep in the ground, Peter Parker opened his eyes. Desperate to be united with Mary Jane, he broke his way out of the coffin and began to crawl upward, clawing his way to the surface. Two weeks had passed since Kraven had buried him alive. After a brief visit to assure his wife that he was still alive, Spider-Man began to hunt the hunter.

    Compassion, Not Vengeance

    Through sheer brutality, Kraven had battered Vermin into submission. He took the monster into custody because he wanted to see if Spider-Man was powerful enough to do the same. But the web-swinger had nothing to prove. He didn't care what the hunter thought and no desire to inflict pain.

    Blood and Thunder

    Filled with fury, Spider-Man attacked Kraven, who didn't bother to resist. The hunter merely smiled... he had won. He had allowed Spider-Man to live when he could have easily killed him. Kraven had finally proven himself superior to Spider-Man. When the wall-crawler refused Kraven's challenge to fight Vermin, the monster attacked him. Kraven immediately acted to save his old enemy, but released Vermin. Having achieved what he set out to do, Kraven allowed Spider-Man to pursue Vermin. The hunter then committed suicide.

    Collected Editions

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-28701/","id":28701,"name":"Kraven's Last Hunt, Part One: The Coffin","issue_number":"31"},"first_appeared_in_episode":null,"id":43327,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2357/110025-129886-kraven-s-last-hunt.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2357/110025-129886-kraven-s-last-hunt.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2357/110025-129886-kraven-s-last-hunt.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2357/110025-129886-kraven-s-last-hunt.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2357/110025-129886-kraven-s-last-hunt.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2357/110025-129886-kraven-s-last-hunt.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2357/110025-129886-kraven-s-last-hunt.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2357/110025-129886-kraven-s-last-hunt.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2357/110025-129886-kraven-s-last-hunt.jpg","image_tags":"All Images,Kraven's Last Hunt"},"name":"Kraven's Last Hunt","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/kravens-last-hunt/4045-43327/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43520/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2011-10-25 20:32:17","deck":"On the heels of the House of M an omega level mutant from the X-Men's past awakens and reemerges with a startling secret about Professor Xavier and the \"Second Genesis\" of the X-Men.","description":"

    Background

    When Corsair and Katherine Summers were kidnapped by the Shi'ar alien race their two children Scott ( Cyclops) and Alexander ( Havok) were left behind on Earth. At the time Katherine was pregnant with her third child. During a failed escape attempt by Christopher (Corsair), Katherine was murdered and her unborn child was cut from her womb as a punishment. The child, Gabriel, was believed to be dead. In reality D'Ken saved the child and kept it alive with advanced Shi'ar technology and artificially accelerated his aging in order make him a slave. When Gabriel became older he was sent to Earth as a slave for Eric The Red where he was able to escape. He was found by Moira MacTaggert with little memory of his past and extended an invitation to join a team of young mutants that she would train in the use of their powers. He took the name Vulcan after the Roman god. Professor X recognized Vulcan's relationship with Cyclops using his psychic powers and was able to reunite the brothers.

    Later, when the original team of X-Men were sent to a remote island in the pacific ocean to investigate the signal of a powerful Mutant that was detected by Cerebro. The team was captured by the island, which turned out to be the source of the mutant signal. The island, Krakoa, held the X-Men save for Cyclops who was able to escape. From there it was originally believed that Professor X collected the all-new all-different X-Men from around the world to rescue the original team. What was not known at the time was that there was this team was not Xavier's first rescue attempt. Moira MacTaggert's team was much less skilled and experienced than the X-Men themselves and consisted of the mutants Petra, Sway, Darwin, and Vulcan. Xavier recruited Moira's team to be the next team of X-Men, and also met with the a young Emma Frost to offer a position on the team. Emma, who was not ready for the X-Men at the time refused and Xavier and Vulcan left her with the Hellfire Club. While leaving Xavier erased her memory of the encounter. With little time to spare, Xavier used his telepathy to train the team psychically, allowing them to train in the use of their powers in their minds. The duration of this training felt like it was extended, while only lasting a period of hours in the real world.

    When the team, led by Vulcan, was sent to Krakoa to rescue the original X-Men they were quickly subdued by the island. Vulcan was able to survive by absorbing the powers of his teammates, buried deep in the island. When the island was shot into space by the second rescue team, Vulcan remained on it in stasis, kept alive by Darwin's powers. Because of the X-Men's heavy emotions over what had occurred Xavier used his telepathic powers to erase the memories of everyone involved, leaving no trace of recollection of the original team.

    Xavier's Shame

    After the events of the House of M, 90% of the world's mutants were de-powered by the Scarlet Witch. This surge of power released into the universe when the so many mutants lost their powers caused Vulcan to stir, still inside of the island which was orbiting the Earth. Realizing what had occurred Vulcan felt betrayed by Xavier. Wanting to make Xavier pay for his deception Vulcan sought to drive Xavier out (who Vulcan did not know had not been seen since M-Day). Vulcan, whose powers are now at Omega-level mutant, first killed Banshee by hitting him with a plane. He drew Cyclops and Wolverine into a cave with the image of their beloved Jean Grey, and quickly bested them in combat. Vulcan captured Cyclops and Marvel Girl and imprisoned them in the facility where Vulcans team originally trained with Cyclops. After barely escaping, Vulcan confronted the team, including Xavier, about what happened. Professor X, who had lost his powers on M-Day could not show the team what had actually transpired as Vulcan demanded. Rachel used her telepathic abilities to link the minds of the X-Men with the Professor so that he could show them what actually happened.

    The team attacks Vulcan for killing Banshee, but Vulcan escaped into outer space. Vulcan, who had spent his childhood imprisoned by the Shi'ar as a slave, left for Shi'ar space to make them pay for killing his mother and for his difficult childhood. Horrified by the betrayal against both teams of X-Men, Cyclops tells Xavier that as a human he is no longer welcome at the Xavier Institute for Higher Learning.

    Suggest Reading

    Giant-Size X-Men #1

    X-Men: Deadly Genesis #1-6

    Related Storylines

    House of M - The events of the Deadly Genesis are preceded by the House of M, although other than the link mentioned there is no real relationship between the stories.

    Rise and Fall of the Shi'ar Empire - The events that occur directly after the Deadly Genesis storyline, beginning with Vulcan heading into Shi'ar space to exact his revenge.

    Collected Editions

    Related Items

    Non U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-120892/","id":120892,"name":"Part 1; Petra","issue_number":"1"},"first_appeared_in_episode":null,"id":43520,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/112636-120556-deadly-genesis.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/112636-120556-deadly-genesis.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/112636-120556-deadly-genesis.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/112636-120556-deadly-genesis.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/112636-120556-deadly-genesis.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/112636-120556-deadly-genesis.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/112636-120556-deadly-genesis.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/112636-120556-deadly-genesis.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/112636-120556-deadly-genesis.jpg","image_tags":"All Images,Deadly Genesis"},"name":"Deadly Genesis","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/deadly-genesis/4045-43520/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43521/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2012-11-12 08:55:01","deck":"After Vulcan reawakens from his stasis in space and confronts Charles Xavier, he leaves for the the Shi'ar empire to destroy those who killed his mother and imprisoned him as a child.","description":"

    Background

    When Corsair and Katherine Summers Summers were kidnapped by the Shi'ar Katherine Ann was pregnant with her third child. When Christopher (eventually to become the pirate Corsair) made an unsuccessful attempt at escape, Katherine was killed and her unborn child was ripped from her womb as a punishment for disobedience. Christopher was sent off into slavery, and it was believed that the child died with her. Instead, it was kept alive and incubated by Shi'ar technology in order to make him a slave. The child Gabriel would eventually escape life as a slave and make its way to Professor X and Moira MacTaggert. Gabriel was a mutant like his older brothers Scott ( Cyclops) and Alexander ( Havok) with the power to manipulate energy. He joined a team of mutants that Moira was training in the safe use of their powers in much the same way that Professor Xavier trained the X-Men (although for a different purpose than the X-Men). Gabriel was even able to meet and train with his older brother Cyclops.

    When the X-Men were sent to the remote pacific island Krakoa to investigate a mutant signal, they were quickly subdued by the island itself to use as a source of sustenance. Professor Xavier recruited Moira's team for a rescue effort. Xavier used his telepathic abilities to train the team psychically in the use of their powers. While much more prepared in the use of their abilities, the team was inexperienced in the field and also taken by the island. Of his teammates only Vulcan survived by absorbing his comrades' powers and tunneling deep into the island. Xavier recruited a second rescue team of X-Men consisting of older mutants from around the globe, and this time met with ultimate success sending the island into space. While the original team was alive and well, losing the first rescue team of X-Men took its toll on the members, particularly Cyclops because of the loss of his younger brother. In an attempt to fix his mistake Xavier removed the memory of the first team from everyone's minds. After the events of the House of M most of the world's mutants were de-powered. This sudden surge of power traveling back into the Universe caused Vulcan to awaken. Angered at Xavier's betrayal, Vulcan killed Banshee to draw out the X-Men and forced Xavier to show the team what actually happened. When the X-Men attacked Vulcan for killing Banshee Vulcan fled into space on a course for the Shi'ar empire to make them pay for enslaving him and killing his mother.

    Vulcan's teammate Darwin's abilities included the ability to adapt to any scenario. When Vulcan awoke, the ambient energies of Darwin came with him. Separated from Vulcan on Earth, Darwin's life energy began to evolve him a new body. Eventually Darwin regained consciousness at the Xavier Institute for Higher Learning and learned of what had happened to his team and Vulcan.

    For further reading see: Deadly Genesis

    Journey to the Shi'ar Empire

    Although Xavier is no longer welcome at the Xavier Institute for Higher Learning, he understands that whether Vulcan succeeds or fails in his quest for revenge, the outcome would be terrible. Xavier assembles a team consisting of Darwin, Marvel Girl, Nightcrawler, Polaris, Havok, and Warpath to fly after Vulcan in an attempt to stop him before he can reach Shi'ar space.

    Suggested Reading

    Deadly Genesis #1-6

    The Uncanny X-Men #475-486, Rise and Fall of the Shi'ar Empire parts 1-12

    Related Story Arcs

    Deadly Genesis - Occurs before and leads into the events of the Rise and Fall of the Shi'ar Empire story arc.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107939/","id":107939,"name":"The Rise and Fall of the Shi’ar Empire: Chapter Two - The Things They Left Behind","issue_number":"476"},"first_appeared_in_episode":null,"id":43521,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/112645-29186-rise-and-fall-of-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/112645-29186-rise-and-fall-of-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/112645-29186-rise-and-fall-of-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/112645-29186-rise-and-fall-of-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/112645-29186-rise-and-fall-of-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/112645-29186-rise-and-fall-of-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/112645-29186-rise-and-fall-of-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/112645-29186-rise-and-fall-of-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/112645-29186-rise-and-fall-of-the.jpg","image_tags":"All Images,Rise and Fall of the Shi'ar Empire"},"name":"Rise and Fall of the Shi'ar Empire","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/rise-and-fall-of-the-shiar-empire/4045-43521/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43569/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2011-09-11 05:11:40","deck":"After the sacred Terrigen Mists are stolen by Quicksilver and the U.S. government, the Inhumans decide to go to war for the future of their race.","description":"

    Background

    After the events of the House of M, Quicksilver finds himself mostly responsible for the de-powering of most of the world's Mutant population. He is also powerless, and depressed. Where once he lived his life permanently in the fast lane, he now finds himself as slow as any normal human. With nowhere to go Pietro travels to the moon to visit his Inhumans wife Crystal and their daughter Luna. While he is there he hatches a plan to regain his lost abilities and more with the Inhuman's sacred Terrigen Mists. After acquiring the mists, he finds himself re-powered, but not how he used to be. He can now hyper-accelerate every aspect of his body so that he could now travel through time. With the Terrigen Crystals in hand he travels back to Earth with his daughter and Lockjaw. Back on Earth he dangerously exposes himself and his daughter (who the Inhuman high council did not believe it was safe to go through the process of Terrigenesis as she is half human) to the mists multiple times.

    Later, Quicksilver travels to the now broken island nation of Genosha where he offers to re-power several of the de-powered mutants that were living there. The process, however, is not meant for humans and proves fatal to at least one of the mutants exposed. Others were trapped or haunted by their powers rather than living freely again as they had hoped. After a mutant that carried the powers of all the de-powered mutants came to Genosha to re-power Magneto, SHIELD took the crystals that generated the mists, leaving Quicksilver with only a small portion of them. The Inhuman leader Black Bolt came to Gensoha at the same time to request the return of the mists to their rightful place. SHIELD, understanding what a powerful weapon they may have in the Terrigen Mists, announced that they were now the property of the United States government. The Inhumans announce that this is a declaration of war upon them, and that they will act upon the situation. By stealing the Mists from them, the Inhumans believe that the first shot in a war has been fired. As the Mists are the cornerstone of their tradition and civilization, they will do anything they have to in order to restore the mists.

    For further reading see: House of M and Son of M

    Related Story arcs

    Son of M - The events of Son of M set the stage for the Silent War. 

    Collected Editions 

    Non-U.S. Editions 

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106025/","id":106025,"name":"Act 1: The Warrior","issue_number":"1"},"first_appeared_in_episode":null,"id":43569,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/113985-9724-silent-war.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/113985-9724-silent-war.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/113985-9724-silent-war.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/113985-9724-silent-war.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/113985-9724-silent-war.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/113985-9724-silent-war.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/113985-9724-silent-war.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/113985-9724-silent-war.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/113985-9724-silent-war.jpg","image_tags":"All Images,Silent War"},"name":"Silent War","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/silent-war/4045-43569/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43600/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2013-03-17 05:20:39","deck":"Following the events of the House of M, Quicksilver is partially responsible for the sudden de-powering of 90% of the Earth's mutant population. Can he now fix things for everyone?","description":"

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106360/","id":106360,"name":"One Day In The Life Of Pietro Maximoff... Homo Sapiens","issue_number":"1"},"first_appeared_in_episode":null,"id":43600,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/115152-162539-son-of-m.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/115152-162539-son-of-m.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/115152-162539-son-of-m.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/115152-162539-son-of-m.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/115152-162539-son-of-m.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/115152-162539-son-of-m.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/115152-162539-son-of-m.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/115152-162539-son-of-m.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/115152-162539-son-of-m.jpg","image_tags":"All Images,Son of M"},"name":"Son of M","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/son-of-m/4045-43600/"},{"aliases":"Chaos","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43625/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-08-21 19:46:49","deck":"The world of the Avengers is rocked to its foundation in this cross-over event, leaving the Earth's Mightiest Heroes broken and changing their lives forever.","description":"

    Plot Summary

    When Wasp began a romantic relationship with Hawkeye, she would constantly talk to Scarlet Witch about it. While lounging around the swimming pool, a drunk Wasp accidentally slips and reveals to Wanda that she once had children and that this fact was hidden from her by her teacher, Agatha Harkness. After confirming the truth of the story, that her children were not real and were actually willed into being, Wanda becomes enraged. Her initial acts are subtle at first, but become terrifying and result in the destruction of the Avengers team as a whole. An attack by the recently deceased Jack Of Hearts - who walks into the Avengers Mansion gates and explodes, killing Scott Lang - is followed by Iron Man giving an embarrassing, drunken, enraged speech to the UN in which he shouts and rants to the Latverian delegate about how he should just kill him. The Vision then slams a Quinjet into the already battered Avengers mansion before dropping several large, silver orbs from his mouth which proceed to form into copies of the Avengers long-time enemy Ultron, which attack the team. Unprovoked, She-Hulk now becomes more and more enraged and grabs the Vision and rips him in half, and proceeds to attack her startled friends. The culmination of events is the sudden, inexplicable arrival of a fleet of Kree warships who attack the assembled heroes. Hawkeye dies when he sacrifices himself to save his friends and gets sucked into a warship's air intake, causing it to explode. The remaining Kree troops around the ground dematerialize as quickly as they had at first come, and the smaller attack ships flee the scene. Doctor Strange finally appears on the scene to ask which powerful being could possibly be causing these horrific things. The group and Strange deduce that the Scarlet Witch is behind the events due to the loss of her children, and fly to apprehend her. When Strange confronts and uses the All-Seeing Eye of Agamotto to show her the truth of what she has unwittingly caused, Wanda falls to the ground and her creations fade away. Magneto, Professor X and the mutants that made up Excalibur are in Genosha, trying to rebuild after the most recent destruction of the small nation, hear about the destruction caused by Magneto's daughter. Magneto travels to the Avengers and takes his daughter away back to Genosha. He seals her in his home in hopes of protecting her from the outside world, repairing her shattered mind and nursing her back to health. The tragic events shock the Avengers so much that they decide to disperse and the team is effectively ended.

    This story arc is one of the most controversial of any Avengers storyline, leading to the deaths of three major characters: Hawkeye, Vision and Scott Lang and the temporary end of the Avengers, who would reform in the title New Avengers (actually only a month later in real comics terms). Under the creative direction of Brian Bendis, among others, Disassembled was used to shift the tone and reset the Avengers franchise for years to come.

    Accompanying stories were written in other major Marvel titles at the time which also concluded their runs. In the pages of Thor, Thor battles to stop the cycle of death and rebirth called Ragnarok, set off this time by Loki. The conclusion sees Thor enter a period of hibernation. Thor ceased to feature with the main Avengers team until his return to the group in 2010 with the relaunch of Avengers. In Iron Man, Tony Stark encounters a terrorist weapons developer who steals a suit of Iron Man armor. In Captain America, Steve Rogers discovers that his wartime partner Bucky Barnes was not in fact dead, but is still alive as the Russian agent: Winter Soldier.

    Crossover Characters

    Agatha Harkness, Beast, Black Knight, Black Panther, Black Widow, Crystal, Daredevil, Doctor Strange, Dum Dum Dugan, Falcon, Hank Pym(YellowJacket), Hercules, Hulk (as a manifestation of the Scarlet Witch's power), Human Torch, Iron Man, Iron Fist, Invisible Woman, Jack Of Hearts, Magneto, Jarvis, Jocasta, Justice, Lionheart, Moon Knight, Mr. Fantastic, Ms. Marvel, Nick Fury, Photon, Rogue (as a manifestation of the Scarlet Witch's power), Scarlet Witch, Scott Lang ( Ant-Man), Namor, Quicksilver (most likely a manifestation of the Scarlet Witch's power), Red Skull (as a manifestation of the Scarlet Witch's power), Sentry, She-Hulk, Spider-Man, Spider-Woman, Thing, Tigra, Ultron (most likely a manifestation of the Scarlet Witch's power), Vision, Wasp, Wolverine (as a manifestation of the Scarlet Witch's power), Wonder Man.

    Related Story-Arcs

    House of M - After the destruction of the Avengers, Wanda was coerced by her brother Quicksilver into manipulating reality to create a world where mutants ruled the earth and humankind was hated by the mutant majority. The Avengers Disassembled event is considered by Marvel to be the first part of a series of events, with the House of M being the second part.

    Civil War - The third part of the trilogy event started out and continued by the House of M, the Civil war was largely influenced by the events of both other story-lines.

    Decimation

    Deadly Genesis

    Onslaught Reborn

    Rise and Fall of the Shi'ar Empire

    Collected Editions

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-99327/","id":99327,"name":"Ragnarok Part The Second","issue_number":"81"},"first_appeared_in_episode":null,"id":43625,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/181882-64423-avengers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/181882-64423-avengers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/181882-64423-avengers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/181882-64423-avengers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/181882-64423-avengers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/181882-64423-avengers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/181882-64423-avengers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/181882-64423-avengers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/181882-64423-avengers.jpg","image_tags":"All Images,Avengers ,Earth-616 Avengers"},"name":"Avengers Disassembled","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/avengers-disassembled/4045-43625/"},{"aliases":"M-Day","api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43626/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-09-28 03:39:44","deck":"The Decimation spans several series' and story-lines, chronicling the aftermath of the House of M and the lives affected.","description":"

    Origin

    The House of M ended the same way it began. With a flash of white light the Scarlet Witch used her power to alter reality. The first time she was coerced by her brother Pietro (Quicksilver) and created a world where Mutants were dominant and ordinary humans lived in fear of persecution, giving rise to the House of M. The second time she uttered the words: \"No more mutants\", and with the flash of white the world she created reverted back to what it was before... almost. In that instant the mutant population was instantly reduced from millions to thousands, the majority suddenly realizing that they were powerless. These millions of former mutants are changed, reduced to normal humans in every way down to their DNA. The Scarlet Witch has completely erased the X-Gene from their genetic code. Those few that remembered the events of the House of M were those that were touched by the powers of Layla Miller during the House of M, revealing that the reality that the Scarlet Witch had created was not how things should be.

    Because virtually none of the population was aware of what had actually occurred, the sudden de-powering of almost all mutants was met with varying reactions. The day with which the mutants were de-powered is alternatively referred to as M-Day or the Decimation. The term Decimation also became synonymous with the reduction of the mutant population due to the large reduction in their total numbers. In terms of the story-arch, the Decimation is the events that occur directly after the House of M that chronicle the fallout of the massive event. It spans several different comic book series, and is comprised of several different story-archs that are related in origin.

    198

    During the Decimation things became quite difficult for mutants, powered and de-powered alike. Now that their numbers were no where near as strong as they were before, human gangs began to violently attack many of the remaining mutants. Because of the hostilities, Cyclops offered the use of the Xavier Institute for Higher Learning as a sanctuary to any mutant in the world regardless of their history. Mutants friend, foe, and relatively unknown came to the mansion hoping for safety against the dangerous outside world. The mutants that camped out on the school grounds began referring to themselves as the 198. While this number did not accurately reflect the number of mutants left (or the number of mutants in the group), 198 was the earliest confirmed number of mutants still powered after M-Day.

    Tensions grew at the mansion as the 198 began to feel more like prisoners than guests. The Office of National Emergency (ONE) had deployed their Sentinel Squad ONE at the mansion as a protective measure, keeping the mutants safe from outside threat. To do so they also were authorized in the use of force to keep the 198 from leaving the school grounds. Only the secretive Mr. M seemed to have the power to stop the Sentinels, which he demonstrated at one point by hurling two sentinels out of the way to prevent one of them from stepping on a butterfly. Seeing what awesome power Mr. M possessed, ONE determined that he was a threat and needed to be dealt with. After much tension and pushing from both sides the 198, under the leadership of Mr. M, left the school grounds with the intention of creating their own island settlement under their own protection and governance. The sentinels were powerless to stop him, but ONE had a foothold within the group. The mutant Johnny Dee had used his power over the duration of his stay with the 198 to create voodoo doll replicas of many prominent members of the group. With these dolls he could control the actions of those individuals. Taking control of leech and magma he was able to neutralize Mr. M's powers, and destroy him in a rush of molten lava.

    For more information see the 198.

    Son of M

    Quicksilver (Quicksilver) is de-powered after the House of M. It seems to be a fitting punishment after convincing his sister to create the House of M. Formerly living life permanently in the fast lane, Pietro is now forced to live his life at the painfully slow pace of a normal human. Pietro travels to the Moon to visit his Inhumans wife and daughter, Crystal and Luna. While in the Inhuman city on the Moon, Pietro is given the idea to re-power himself with the Inhuman Terrigen Mists. After exposing himself to the mists, Pietro believes that nothing has happened. He is confronted by a disheveled, future version of himself who tells him that the mists have not only given him back speed, but have given him the ability to jump through time by vibrating his body at high rates of speed. He hatches a plan to steal the crystals that generate the mists and take them back to Earth.

    On Earth Pietro exposes himself and his daughter. Luna was disallowed the rite of Terrigenesis by the Inhumans because her being half human made exposure a risk to her health. Believing it to be his fate and duty, Pietro then took the crystals to the island of Genosha to begin his quest to re-power the world's de-powered mutants. He exposed several former mutants on Genosha to the mists with devastating results. His father condemns his actions, and for his disregard for the safety of those he exposes to the mists. The U.S. government intercepts him and takes control of the crystals. Black Bolt, the leader of the Inhumans asks for the crystals back and is told by SHIELD that they are now the property of the U.S. government. The Inhumans take this threat to their culture and tradition as an act of war and declare war on the government of the United States. These events lead into the Silent War storyline.

    For more information see the Son of M.

    New Avengers

    It was noted by both Beast and Hank Pym that the energies of the de-powered mutants needed to go somewhere rather than simply ceasing to exist. When the Scarlet Witch de-powered the majority of the earth's mutants, the immense power was collected into the body of Alaskan mutant postal worker The Collective. Michael had no idea that he was a mutant. His power was to absorb the energies of others, and his body instinctively reacted to the ambient energies of the de-powered mutants in the Earth's atmosphere and absorbed them. This immense load of power channeled into Pointer's body destroyed the post office and everyone in the vicinity. Amongst the energies which had been ambient in the atmosphere was the consciousness of the deceased mutant Xorn. When he absorbed these powers, Xorn was able to take possession of Pointer's body. Most likely realizing what he now was, Xorn seeks out Magneto who was de-powered on M-Day.

    Xorn in Pointer's body (now the being known as the Collective) begins to travel down from Alaska through the Canadian wilderness on foot. The Collective is confronted by the Canadian Super-Team Alpha Flight in an attempt to stop him. In almost no time the Collective laid waste to the entire team, leaving them dead in the snow (with the exception of Sasquatch who was presumed dead but survived because of his healing factor). Unfazed, the Collective continued South. It was Spider-Man, being one of the few involved in the House of M that retained memory of the event, who initially figured out the Collective's origin when he realized that the powers he was exhibiting seemed to be those of the mutants de-powered on M-Day. At the time Spider-Man is on a SHIELD Helicarrier. He is rescued by fellow members of the New Avengers, but not before S.H.I.E.L.D. telepaths were able to probe his mind to discover the truth behind the House of M.

    In America the Collective moves through New York, continuing to ignore the pedestrians encountered on his trip. When he was attacked by the New Avengers he realized that he was able to fly. He is taken into space by the combined efforts of Iron Man and the Sentry but, again, has little problem circumventing the two when he hurls the Sentry into space and flies back to Earth. He heads straight to the island Genosha where he finds Magneto. It was there that the Collective revealed that it is being controlled by Xorn, whose personality was able to dominate Pointer's own. Xorn explains that he sought out Magneto because the mutants are in need of a leader, and that they will follow Magneto's lead. Xorn re-powers Magneto. Magneto, no longer in control of his body begins to battle the New Avengers. Not wanting to be someone else's pawn Magneto begs the Avengers to kill him. He is taken down by S.H.I.E.L.D. agent Daisy Johnson who uses her power to create a tremor in Magneto's brain, separating the collective entity from him. The Collective is hurled into the sun by the Sentry, separating Michael Pointer from Xorn. Pointer and Magneto are both separately taken into S.H.I.E.L.D. custody and the helicopter carrying Magneto's body explodes in mid air above Genosha.

    Deadly Genesis

    A startling revelation is made by a figure from the X-Men's hidden past. When the original team of X-Men consisting of Cyclops, Beast, Jean Grey, Iceman, and Angel are captured by the island mutant Krakoa it was originally believed that Professor X assembled the new team of X-Men from around the world for a rescue mission. While these events did occur in this manner there was a first rescue team dispatched to Krakoa prior to the all-new all-different X-Men consisting of several of Moira MacTaggert's students: Petra, Sway, Darwin, and Vulcan (youngest brother of Havok and Cyclops). This team was young and inexperienced and met with a quick defeat by the island. It was after this first rescue mission that Xavier gathered together a group of older, more experienced mutants from around the world. After the second team rescued the original X-Men, Krakoa was lifted into orbit by Polaris. The deaths of the first rescue team weighed heavy on the hearts of the X-Men so Xavier decided to remove the memory of the original team from the surviving X-Men. Only Vulcan survived having absorbed the powers of his fallen comrades, and remained in stasis on the island.

    After the Scarlet Witch de-powered most of the world's mutant population when ending the House of M, the energies of the de-powered mutants released back into the universe caused Vulcan to awake. Knowing what had happened Vulcan began to attack the X-Men, first psychologically and then physically to draw Xavier out (who had not been seen since before the House of M). Vulcan forced the de-powered Xavier to show his students what actually occurred surrounding the Krakoa incident. Before the X-Men were able to attack, Vulcan flew into space to make the Shi'ar pay for the traumatic childhood they caused him. The events of the Deadly Genesis lead directly into the Rise and Fall of the Shi'ar Empire.

    For more information see the Deadly Genesis.

    New X-Men

    After M-Day a large portion of the students at the Xavier Institute for Higher Learning are left powerless. Emma Frost disbands the teams of students and collects those whose powers remain in the danger room for an impromptu session to determine who will remain on a single squad of young X-Men trainees (the New X-Men). After a quick but intense battle session, the new team is selected. It is also decided that because of increased hostilities against mutants since M-Day, it would be safer for the de-powered students to be sent home rather than remaining at the institute. With the exception of Prodigy, 42 de-powered mutants are loaded onto a bus to be taken away which, once full, explodes. This attack was perpetrated by long-time enemy of the X-Men, and political and religious crusader against mutants:William Stryker. Stryker was aided by the remains of the future Sentinel Nimrod, whose memory banks are used to determine which of the surviving mutants to target. After unsuccessfully attempting to murder Dust, Stryker and his \"Purifiers\" are stopped by the New X-Men during an assault on the mansion. In order to stop Stryker, Elixir reversed his powers from a healing touch to a death touch, killing Stryker. The New X-Men then discovered that the remains of Nimrod had gone after Forge to force Forge to build it a new body.

    While the New X-Men were on their way to rescue Forge, Forge was able to trick Nimrod into downloading its personality into a prototype body which Forge had built. This new body had built-in safe-guards which prevented Nimrod's programming from taking over its new body. Misunderstanding what had happened, the New Mutants attacked the robot which released Nimrod's primary programming allowing it to attack. In the battle against Nimrod both Rockslide and X-23. Rockslide's body was obliterated Nimrod's blasts, but was re-assembled by his teammate Hellion's telekinesis. X-23 was badly burned while destroying Nimrod's body, and her healing factor was unable to cope with the damage. Hellion flew back to the mansion, only able to make it back in time when Emma Frost used her telepathy to remove mental blocks allowing him full access to his powers. Back at the mansion Elixir was able to use his power to assist X-23's own healing factor, saving her life.

    Related Story Arcs

    House of M - Precedes and creates the events of the Decimation.

    Rise and Fall of the Shi'ar Empire - Events following the Deadly Genesis storyline.

    Silent War - Events following the Son of M storyline.

    Endangered Species - upcoming With the numbers of mutants in the world reduced from millions to thousands on M-Day, mutants are on the brink of extinction. With no new mutants occurring in the human population will this be the end of mutant kind, or a new beginning?

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106157/","id":106157,"name":"Here We Go Again!","issue_number":"1"},"first_appeared_in_episode":null,"id":43626,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25453/488401-94161_123333_scarlet_witch_super.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25453/488401-94161_123333_scarlet_witch_super.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25453/488401-94161_123333_scarlet_witch_super.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25453/488401-94161_123333_scarlet_witch_super.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25453/488401-94161_123333_scarlet_witch_super.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25453/488401-94161_123333_scarlet_witch_super.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25453/488401-94161_123333_scarlet_witch_super.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25453/488401-94161_123333_scarlet_witch_super.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25453/488401-94161_123333_scarlet_witch_super.jpg","image_tags":"All Images,Decimation,House of M"},"name":"Decimation","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/decimation/4045-43626/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43639/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2012-09-05 21:28:14","deck":"A group of students at Xavier's school who disagree with Professor X's views on human/mutant relations start a riot.","description":"

    There were two primary incidents that acted as a catalyst for the student riot at the mansion. The first (although more indirect) was the death of famed mutant fashion designer Jumbo Carnation. The second was a radical change in identity of the young mutant Kid Omega. Quentin was one of the prized pupils of both Professor X and Jean Grey. While his mutant powers were primarily undefined he was a genius and was capable of some telepathy. Quentin's identity was called into question when he learned from his mother that he was adopted. He lashed out at some of the other students, and began to abuse the mutant-enhancing drug Kick. He visited the site of Jumbo Carnation's death, and clung to the event as a personal cause. Quentin had his hair cut to resemble an artist's rendition of mutants from the day he was born. He also adopted a clothing style that was designed by Jumbo Carnation which was designed with human's fears and hatred of mutants in mind. With a public open house happening at the mansion, Quentin hoped to make a bold and confrontational statement about how far mutants have come by embracing stereotypical images of mutants. Kick was already boosting his mutant abilities, and his brain was processing over 10,000 brilliant ideas per second.

    Quentin would have a public confrontation with Professor Xavier during their telepathy class. He openly challenged Xavier's ideals of tolerance in favor of a much more radical view of human mutant relations, desiring not to live in a world side-by-side with Jumbo's human killers. This display impressed several other students who began to follow Quentin's line of thinking. With Glob Herman still by his side fellow students Tattoo, Phaser, and Skybolt adopted the same clothing as Quentin forming the Omega Gang. Now all five were abusing Kick, and ventured outside of the mansion that night. In a back-alley they found a group of humans who they savagely beat, killing some.

    Next the Omega gang attacked a U-Men hideout, killing all of the U-Men inside. Upon arriving back at the mansion they waited in Professor Xavier's office to ambush him, knocking him out with a wooden bat. The following day Xavier regained consciousness and found himself tied up and masked by a helmet that Quentin designed after the helmet worn by Magneto. The helmet would prevent Xavier from using his telepathy on anyone the same way that Magneto's shielded his mind from telepaths. This was the day of the mansion's open house, and as the attendees were approaching Quire announced to the campus that they were holding Xavier hostage and incited the students to riot.

    The other students, guided by Quire, began a protest around the mansion which quickly escalated into violence. The X-Men attempted to stop them, but the student body fought back. Wolverine was briefly incapacitated by Quentin's telepathy. Radian, Tattoo, and Redneck fought with the X-Men and lost. Glob Herman lit his body on fire and attacked a fleeing busload of humans. He was subdued by Beast, Cyclops, and Xorn. The Stepford Cuckoos had were executing a plan to stop Quire from doing any more harm. Sophie took a dose of kick to augment her telepathic abilities, and used Cerebro to further enhance her power. Together the five Cukoos were powerful, but with this added assistance they were able to completely take out Quire. Quentin was left crying, battered, and beaten.

    Quentin was rushed to Beast's lab where they discovered that the kick had caused his neurons to move faster than the speed of light, rapidly killing him by turning his brain into pure energy. Xorn assisted Quire in this transition, easing him into a new form of being. What was left of him would remain in stasis in Beast's lab. The few remaining student protesters were met by Xavier who explained what had happened, and told them that they were welcome to continue protesting as long as they did it in a non-violent manner. The Riot at Xaviers came to an end. 

    Collected Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106499/","id":106499,"name":"Kid Ω","issue_number":"134"},"first_appeared_in_episode":null,"id":43639,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31599/2576361-new_x_men_vol_1_137_textless.jpg","image_tags":"All Images"},"name":"Riot at Xavier's","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/riot-at-xaviers/4045-43639/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43725/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-12-31 16:25:39","deck":"A cross-publisher event of a series of titles put out by both Marvel Comics and DC Comics under the name Amalgam Comics, it blended elements from the two publishers' catalogs.","description":"

    Overview

    \"When
    When universes collide

    Amalgam Comics put out twelve comics in 1996, replacing both publisher's regular releases at the time, with six published by DC and six by Marvel, repeating the process again in 1997. Amalgam Comics also mentioned many other mythological comics published as far back as the Golden Age, comics that were never really published but merely added to the sense of Amalgam Comics being a real publisher, when in reality it wasn't.

    This reality has been designated Earth-9602 in the Marvel multiverse, DC numbering is unknown if it even exists in the post-52 DC multiverse. The reality is otherwise known as Earth-AMALGAM.

    Collected Editions

    Related Titles

    Titles

    1996

    Titles published by DC

    Titles published by Marvel Comics

    1997

    Titles published by DC

    Titles published by Marvel Comics

    Never published Titles

    These were titles said to have been published by Amalgam a.k.a. meta-fictional titles

    • Action and Suspense Comics: The first Amalgam Comics title, an amalgamation of Tales of Suspense and Action Comics, lasted until 1917 with 50 issues and later integrated into All-Star Winners Comics.
    • All-Star Winners Comics: A Golden Age title, an amalgamation of All Star Comics and All-Winners Comics, included appearances by All-Star Winners Squadron and the Young Commandos, ran between 1941 and 1942, ended with Super Soldier Action. Notable for the debut of American Belle, The Whiz, Human Lantern, and Brooklyn Barnes.
    • Astounding Comics: A version of All Star Comics. Issue #1 notably featured the debut of Diana Prince.
    • Amalgam 2099: Mentioned in Spider-Boy Team Up #1, this comic is a version of Marvel 2099, featuring the Legion of Galactic Guardians and, briefly, Spider-Boy.
    • Bonghunters Special: A Lobo the Duck special featuring Doctor Bongface.
    • Amazons: The Contest: A version of Wonder Woman: The Contest, this miniseries that began in June 1995; follows Diana's run in Castle. Diana and Ororo fight for the title of Wonder Woman; Ororo emerges victorious. Following this miniseries, Diana moves on to her own title called Bullets & Bracelets and Ororo moves on to her own title called Amazon.
    • Castle: A version of Marvel's title Punisher. In issue #18, Diana Prince was introduced to the comic (following her run in Tales of the Amazons, see below) as she saves a dying Trevor Castle (from Bullets & Bracelets #1), which is the first meeting of this couple.
    • Dare the Terminator: The title, which ran for under 200 issues, featured Dare The Terminator, Catsai, and The Big Question before the title was integrated into the Assassins series (from Assassins #1). Dare the Terminator was experimented on by The Big Question in issue #3, Dare lost her eye in a fight against Deadeye (an amalgam of Bullseye and Deadshot) in issue #13, and Catsai and Dare teamed up in issue #168 against Tombstone the Ravager.
    • Dark Claw: The Murder Gag: The only Graphic Novel mentioned as having been published by Amalgam Comics, a version of The Killing Joke, it featured Bruce Wayne (the S.H.I.E.L.D. Agent, that is) traveling to New Gotham City and teaming up with Dark Claw to stop Hyena (from Legends Of The Dark Claw #1). Also included is the end of Jason Todd as Moonwing (an amalgam of Moon Knight and Nightwing).
    • Diana Prince, Freelance: Diana Prince's title before Bullets & Bracelets.
    • Elsewhat If: An alternate-reality storyline that looks at different ways that Amalgam Comics characters may have changed, an amalgamation of What If? and Elseworlds.
    • Giant-Sized Bat-Thing: Bat-Thing continues his adventures in this series. The adventures of Lobo the Duck are also featured.
    • Giant-Sized Tales of the Amazons: The title Wonder Woman/Amazon was in following her run in Tales of the Amazons.
    • Marine Mystery: The Golden Age comic featuring the debut of Aqua Mariner, a version of Marvel Comics' Sub-Mariner and DC's Aquaman.
    • Mighty Amazons: A version of the Wonder Woman series, this title also featured Shatterstarfire in issue #34 before that character before moved on to X-Patrol (from X-Patrol #1).
    • My Great Astonishment: A Silver Age title, an amalgam of Tales to Astonish and My Greatest Adventure, featuring the Challengers of the Fantastic (from Challengers of the Fantastic #1). In this series, Tino Lumpkin became a Challenger.
    • Secret Crisis of the Infinity Hour: An amalgamation of Secret Wars, The Infinity Gauntlet, Crisis On Infinite Earths, and Zero Hour. In issue #1, Dr. Strangefate summons the heroes of Earth to battle Thanoseid (from Bullets & Bracelets #1). In issue #7, American Girl sacrifices her life for the cause.
    • Showcase of Suspense: An amalgamation of Tales of Suspense and Showcase, this title notably featured Iron Lantern (from Iron Lantern #1). Issues include:
    1. -Issue #1 a.k.a. The death of Rhomann Sur and the emergence of Iron Lantern
    2. -Issue #27 a.k.a. The Coming of 5700, featuring Iron Lantern 5700
    3. -Issue #75 a.k.a. A battle with Madame Sapphire
    4. -Issue #84 - The Other Iron Lantern, featuring the debut of Green Guardsman
    5. -There were other unnumbered issues involving a fight with Great White and a team-up with Aqua Mariner against H.E.C.T.O.R
    • Sleuth Comics: A version of the Detective Comics series (where Batman debuted), this title featured the debut of Dark Claw, in issue #27.
    • Strange Tales of the Unexpected: An amalgamation of Strange Tales and Tales of the Unexpected, this Silver Age imprint featured the debut of Challengers of the Fantastic and Dream Crystal of the Un-People, whom fell in love with Johnny \"Red\" Storm. Sections of these \"tales\" were reprinted in Challengers of the Fantastic #1.
    • Strange Tales of War: An amalgamation of Strange Tales and Weird War Tales, this title is notable for the introduction of Hydra and S.H.I.E.L.D.
    • Tales of the Amazons: A version of Wonder Woman, this long-running title featuring Prince and Wonder Woman a.k.a. Amazon; each had a 12-page featurette. Diana Prince and Wonder Woman teamed up during a 4-issue plot to face Professor Psycho, Panthera, Circe, and Giganta; Bruce Wayne (of S.H.I.E.L.D.) is also featured during that plot. The last issue was in 1995.
    • Tales of Strangefate: A version of Strange Tales, this title featured the debuts of Dr. Strangefate, Jade Nova, White Witch, and Skulk. Villains included Mephistanus and Baron Wotan (from Dr. Strangefate #1).
    • Tales to Astonish: An earlier title that featured Thorion and the New Asgods (from Thorion Of The New Asgods #1).
    • Radiotower Comics: A version of Tower Comics, this imprint featured the Thunder Crusaders, whose membership included No-Fly and Dynashield, an amalgamation of Tower's T.H.U.N.D.E.R. Agents and !mpact's (a DC imprint) the Mighty Crusaders.

    Amalgam Characters/ Teams/ Concepts/ Locations

    Abominite [Hellgrammite / Abomination]

    Absorbing Bug [Forager/ Ambush Bug / Absorbing Man]

    Agamotto Empress [Emerald Empress / Eye of Agamotto]

    Aim-Star Labs [Star Labs / AIM]

    All Highfather Odin [Highfather / Odin]

    Amazon [Wonder Woman/ Storm]

    All-Star Winners Squadron [All-Star Squadron/ JSA / All-Winners Squad]

    Ambush the Lunatik [Ambush Bug / Lunatik]

    American Belle [Liberty Belle / Miss America]

    Angelhawk [Hawkman / Archangel]

    Antimony [Platinum / Scarlet Witch]

    Apocalypso [Eclipso / Apocalypse]

    Apokalips [Apokolips / Apocalypse]

    Apollo [Ray / Cyclops]

    Aqua-Mariner [Aquaman / Namor]

    Arkham Tower [Arkham Asylum / Fisk Tower]

    Armageddon Agenda [Armageddon 2001 / X-tinction Agenda]

    Arrowcaster [Speedy / Nightcaster]

    Asgods [New Gods / Asgardians]

    Atomic Black Knight [Atomic Knight / Black Knight]

    Bald'r Lightbringer [Lightray / Balder]

    Banisher [Bane / Punisher]

    Barnes, \"Brooklyn\" [\"Brooklyn\" \"Terrible\" Turpin / Bucky Barnes]

    Baron Wotan [Wotan / Baron Mordo]

    Baron Zero [Mister Zero (AKA Mister Freeze) / Baron Zemo]

    Barrow [Batcave / Wolverine elements]

    Bat-Thing [Man-Bat/ Swamp Thing / Man-Thing]

    Beastling [Changeling (Beast Boy)/ Beast]

    Bevarlene [Darla / Beverly]

    Big Gorgon [Big Bear / Gorgon]

    Big Question [Riddler / Kingpin]

    Big Sif [Big Barda / Sif]

    Big Titania [Big Barda / Titania]

    Bismuth [Tin / Toad]

    Bizarnage [Bizarro / Carnage]

    Black Bat [Black Cat / Batgirl]

    Black Brand [Black Hand / Firebrand]

    Black Diamond Soul Gem [Black Diamond / Soul Gem]

    Black, Jean [Black Canary/ Jean Grey]

    Black Orchid the Unknown [Black Orchid / Omega the Unknown]

    Black Vulture [Hawkman I/ Black Condor / Vulture]

    Blob [Chunk / Blob]

    Blobba [Stompa / Blob]

    Bloodcrow [Scarecrow / Bloodscream (aka Bloodsport)]

    Blue Jacket [Blue Beetle II / Yellowjacket]

    Bottle Country of Latveria [Kandor / Latveria]

    Bouncing Ball [Bouncing Boy / Speedball]

    Bronze Tiger [Bronze Tiger / Black Panther]

    Brood Pit [Blood Pit / Brood]

    Brother Brood [Brother Blood / Brood]

    Brotherhood of Evil Gods [New Gods / Brotherhood of Evil Mutants]

    Brotherhood of Injustice [Injustice League / Brotherhood of Evil Mutants]

    Bulldozer Gabriel [Bulldozer / Gabriel Jones]

    Cable, Niles [Chief / Cable]

    Canary [Black Canary / Mockingbird]

    Cannonfire [Wildfire I / Cannonball]

    Cannonflash [Flash / Cannonball]

    Captain America Jr. [Captain Marvel Jr. / Captain America]

    Captain Marvel [Captain Marvel (Billy Batson) / Captain Marvel (Mar-vell)]

    Carter, Sharon [Lois Lane / Sharon Carter]

    Catsai [Catwoman / Elektra/ Storm]

    Challenger Haters of Evil [League of Challenger Haters / Masters of Evil]

    Challengers of the Fantastic [Challengers of the Unknown / Fantastic Four]

    Chameleon I & II [Chameleon Boy/ Chameleon II / Chameleon]

    Chaos [Spitfire (Joshua Terrill) / Havok]

    Chemodam [Chemo / Modok]

    Chronos-Tut, the Time Pharoh [Chronos / Rama-Tut / Richard Nixon (real)]

    Claw Copter [Batcopter / Blackbird]

    Clawmobile [Batmobile / Wolverine elements]

    Comrade Grodd [Gorilla Grodd / Red Ghost elements]

    Congo-Red [Congorilla / Red Ghost elements]

    Cosbie [Cosmo / Herbie]

    Cult of Brood [Cult of Blood / Brood]

    Cybercroc [Croc / Cyber]

    Danger Cave [Batcave / Danger Room]

    Dare [Deathstroke / Daredevil/ Black Cat]

    Dark Claw [Batman / Wolverine]

    Dark Firebird [Fire / Dark Phoenix]

    Darkstar [Umbra/ Darkstar / Storm]

    Dayspring, Niles [Jericho / X-Man]

    Deaddevil [Deadman / Daredevil]

    Deadeye [Deadshot / Bullseye]

    Deathbird, Amanda [Amanda Waller / Deathbird]

    Deathborg [Cyborg I / Deathlok]

    Deathlok [Deadshot / Deathlok]

    Detective Dinosaur [Detective Chimp / Devil Dinosaur]

    Devilance the Storm Giant [Devilance / Storm Giants]

    Diablo, the Volcano Man [Volcano Man / Diablo]

    Dial H.U.S.K. [Dial \"H\" For Hero/ Crazy Jane/ Husk]

    Diana Prince [Wonder Woman / Elektra]

    Dino Four-Eyes [4-Eyes / Dino Manelli]

    Disastermind [Desaad / Mastermind]

    Doc Alternity [Doctor Fate/ Eternity]

    Doctor Bongface [Scarface / Doctor Bong]

    Doctor Doomsday [Doomsday / Doctor Doom]

    Doctor Strangefate [Doctor Fate / Doctor Strange/ Professor X]

    Doctor Whiplash [Doctor Polaris / Blacklash]

    Doomnaut [Doomsday / Juggernaut]

    Double Helix - DNA Project [Project Cadmus / Deviants]

    Drabny the Fixer [Drabny / Fixer]

    Dream Crystal [Beautiful Dreamer / Crystal]

    Dream Date [Dream Girl / Destiny]

    Ego-Mass [The Wall around the Source / Ego the Living Planet]

    El Papamondo [El Papagaya / Mondo]

    Elasti-Girl [Elasti-Girl / Wasp, Domino]

    Emerald Eye [Green Lantern / Cyclops]

    Enchanted Tigra [Tigra (Orion's mother) / Enchantress]

    Extreme Works [Extreme Justice / Force Works]

    Fantasti-Wagon [Whiz Wagon / Fantasticar]

    Fantastic Lad [Elastic Lad / Mister Fantastic]

    Fantastic Legion [Legion of Super-Heroes / Fantastic Four]

    Fantastic Mountain [Challengers Mountain / Fantastic Four elements]

    Fantastinite [Kryptonite / Fantastic Four elements]

    Ferris, Pepper [Carol Ferris / Virginia \"Pepper\" Potts]

    Ferro Man [Ferro / Colossus]

    Fin Fang Flame [Brimstone / Fin Fang Foom]

    Firebird [Fire / Phoenix]

    Four-Armed Thing [Four-Armed Terror / Thing, Galactus' Punisher robot]

    Foster, Oberon [Oberon / Jane Foster]

    Free, Don [Mister Miracle (Scott Free) / Thor (Donald Blake)]

    Frightful Five [Fatal Five / Frightful Four]

    Galactiac [Brainiac / Galactus]

    General Annihilus [General Zod / Annihilus]

    Generation Hex [Jonah Hex / Generation X]

    Goliath [Green Arrow / Goliath]

    Gotham Bugle [Gotham Gazette / Daily Bugle]

    Granny Harkness [Granny Goodness / Agatha Harkness]

    Green Goliath [Green Lantern II / Goliath]

    Green Guardsman [Green Lantern (Kyle Rayner) / Guardsman I]

    Green Phoenix [Martian Manhunter / Phoenix]

    Green Skull [Lex Luthor / Red Skull]

    Grimm, Senator Ben \"Rocky\" [Rocky / Thing]

    Growing Boy [Colossal Boy / Growing Man]

    Harper, Doctor Tom [Guardian / Angel (Golden Age)]

    Hawk and Dagger [Hawk and Dove / Cloak and Dagger]

    Hawkeye [Green Arrow / Hawkeye]

    Hawkhawk [Hawkman/ Hawkeye]

    H.E.C.T.O.R. [Hector Hammond / Modok]

    Heimron [Metron / Heimdall]

    Hellfire League of Injustice [Injustice League / Hellfire Club]

    Hex, Jono [Jonah Hex / Chamber]

    Howard the Mxztplx [Mister Mxyzptlk / Howard the Duck]

    Howling Commandos [Easy Company / Howling Commandos]

    Human Lantern [Green Lantern (Alan Scott) / Human Torch (Jim Hammond)]

    Huntress I [Huntress / Ms. Marvel]

    Huntress II [Huntress/ Batgirl / Mockingbird/ Black Cat]

    Hyena [Joker/ Lobo/ Harley Quinn / Sabretooth]

    Ice-Cream Cohen [Ice Cream Soldier / Izzy Cohen]

    Iceberg [Ice / Iceman]

    Icebreaker [Aquaman / Iceman]

    Imperial Suicide Squad [Suicide Squad / Imperial Guard]

    Impossible Dawg [Dawg / Impossible Man]

    Impossible Mod [Mad Mod / Impossible Man]

    Infant Mite Terrible [Bat-Mite / Infant Terrible]

    Infinite Kickers, Inc. [Infinity Inc. / Kickers, Inc. (New Universe)]

    Infinity Links [Anti-Life Formula/ Infinity Gems]

    Infinity, the Beta-Ray Man [Infinity Man / Beta-Ray Bill]

    Insect Queen [Mary Jane Watson / Insect Queen]

    Invisible Force-Field Belt [Force Field Belt / Invisible Force Field]

    Invisible Girl I & II [Invisible Kid II & IV / Invisible Girl]

    Iriskani [Iris Allen / Askani]

    Iron [Iron / Unus]

    Iron Lantern [Green Lantern (Hal Jordan) / Iron Man (Tony Stark)]

    Jackal [Joker / Jackal]

    Jade Nova [Jade/ Fire/ Green Lantern / Nova]

    Jericha [Jericho / Elektra]

    Jericho [Jericho / X-Man/ Thing]

    JLX [Justice League / various \"X\" teams]

    Jocasta [Platinum / Jocasta/ Sentinels]

    Johnny Stormtrooper [Scrapper-Trooper / Human Torch]

    Jones, John [Martian Manhunter / Blade]

    Jones, Snapper [Snapper Carr / Rick Jones]

    Judgment League Avengers [Justice League / Avengers]

    Jupiter, Gideon [Mister Jupiter / Gideon]

    Kalmaku, Happy [Tom \"Pieface\" Kalmaku / Harold \"Happy\" Hogan]

    Kang, the Time Conqueror [Time Trapper / Kang]

    Kantique [Kanto / Mystique]

    \"King\" Cain and \"Smiling\" Abel [Cain and Abel / Stan and Jack]

    King Lizard [King Shark / Lizard]

    Knight, Artemisty [Artemis / Misty Knight]

    Kokoro [Katana / Psylocke]

    Krakoa, the Living Dinosaur Island [Dinosaur Island / Krakoa]

    Kultron [Kobra / Ultron]

    L'ok D'saad [Desaad / Loki]

    Lady Bug I & II [Shrinking Violet I & III / Wasp]

    Lady Talia [Talia / Lady Deathstrike]

    Latkovia [Markovia / Latveria]

    Le Bat [Batman / Jubilee]

    'Lectron [Live Wire II / Electro]

    Legion Anti-Grav Ring [Legion Flight Ring / Wizard's Anti-Grav Discs]

    Legion of Evil Mutants [Legion of Super-Villains / Brotherhood of Evil Mutants]

    Legion of Galactic Guardians 2099 I [Legion of Super-Heroes (pre-boot) / Guardians of the Galaxy]

    Lethal [Cheetah / Kraven]

    Little Dum-Dum [Little Sure Shot / \"Dum-Dum\" Dugan]

    Living Colossus [Leviathan II / It, the Living Colossus]

    Living Lightning Lad [Lightning Lad / Living Lightning]

    Living Lightning Lass [Lightning Lass / Living Lightning]

    Living Totem Pole [Living Totem/ Wyatt Wingfoot]

    Lobo the Duck [Lobo / Howard the Duck]

    Lord Maxwell [Maxwell Lord / Cameron Hodge]

    Lord Nimrod [Lord Havoc / Nimrod]

    Lumpkin, Tino [Tino Ryan / Willie Lumpkin]

    Luthor, Selina [Catwoman / Viper]

    M'Kryptaan [Kryptonite / M'Kraan Crystal]

    M-Parasiteplate [Parasite / Emplate]

    Madame Banshee [Madame 44 / Banshee]

    Madame Sapphire [Star Sapphire / Madame Masque]

    Mademoiselle Peggy [Mademoiselle Marie / Peggy Carter]

    MagneMorpho [Metamorpho / Magneto]

    Magnetic Men [Metal Men / Brotherhood of Evil Mutants]

    Magneto [Doc Magnus / Magneto]

    Magnetometers [Responsometers / Magneto elements]

    Magnus, Will [Doc Magnus / Bolivar Trask]

    Major Zemo [Iron Major / Baron Zemo]

    Malone, Patch [Matches Malone / Patch]

    Mandarinestro [Sinestro / Mandarin]

    Manorb [Mano / Orb]

    Martinex 5 I & II [Brainiac 5 I & III / Martinex]

    Mary Marvel Girl [Mary Marvel / Marvel Girl]

    Mass [Star Boy II / Mass Master]

    Masters, June [June Robbins / Alicia Masters]

    Medusa Moonrider [Mark Moonrider / Medusa]

    Mephisatanus [Satanus / Mephisto]

    Mephiston [Neron / Mephisto]

    Mercury [Impulse / Quicksilver]

    Metamimic [Metamorpho / Mimic]

    Metamutants [Meta-humans / Mutants]

    Miss Miracle [Mister Miracle / Crystal]

    Mister Immortus [General Immortus / Mister Immortal/ Immortus]

    Mister Mastermind [Mister Mind / Mastermind]

    Mister X [Martian Manhunter / Professor X/ Bishop/ Skrull]

    Molecule Lad [Element Lad I / Molecule Man]

    Monarch [Monarch / War Machine]

    Mongslaught [Mongul / Onslaught]

    Moonwing [Nightwing / Moon Knight]

    Mother Cube [Mother Box / Cosmic Cube]

    Multi-Master [Multi-Man / Puppet Master]

    Multiple Maid [Triplicate Girl / Multiple Man]

    Murdock, Alicia [Alicia Masters/ Daredevil]

    Myriad [Triad II / Multiple Man]

    Mystallo [Metallo / Mysterio]

    Myx [Mister Mxyzptlk / Wong/ Nyx]

    Nabu the Ancient One [Nabu / Ancient One]

    Neron-Claw [Neron / Satan Claw]

    New Asgard [New Genesis / Asgard]

    New Asgods [New Gods / Asgardians]

    New Gotham [Gotham / New York]

    Nickel [Mercury / Quicksilver]

    Night Spectre [Spectre / Nightmare]

    Nightcreeper [Creeper / Nightcrawler]

    Nightgate [Nighthawk / Gateway]

    Nornonite [Kryptonite / Norns]

    Nucleus [Element Lad II / Molecule Man]

    Nuke [Bane / Nuke]

    Oa, the Living Planet [Oa / Ego the Living Planet]

    O'Brien, Kyle [Kyle Rayner (Green Lantern) / Kevin O'Brien (Guardsman I)]

    Offending Society [JSA / Avengers]

    Olsen, Jimmy [Jimmy Olsen / Bucky]

    Omega Beast [KGBeast / Omega Red]

    Omega Guard [Omega Men / Imperial Guard]

    Paste-Eater Pete [Matter-Eater Lad / Paste-Pot Pete]

    Phantom Cat I & II [Phantom Girl & Apparition II / Shadowcat]

    Phantom-Negative Zone [Phantom Zone / Negative Zone]

    Phantom-Negative Zone Projector [Phantom Zone / Negative Zone]

    Phoenetix [Kinetix / Phoenix]

    Polaris [Doctor Polaris / Polaris]

    Prez: Master of Kung Fu [Prez / Shang-chi, Master of Kung Fu]

    Professor Kang [Professor Zoom / Kang]

    Psi-Girl I & II [Saturn Girl I & III / Psylocke I & II]

    Puck [Oberon / Puck]

    Punisher [Steve Trevor / Punisher]

    Quasimodox [Vril Dox II / Quasimodo]

    Quick Freeze [Impulse / Iceman]

    Ra's-A-Pocalypse [Ra's Al Ghul / Apocalypse]

    Radioactive Kra [Kra the Living Robot / Radioactive Man]

    Rainbow Chair [Mobius Chair / Rainbow Bridge]

    Random, Johnny [Johnny Thunder II / Random]

    Rasputin, Alexi [Ferro's brother / Colossus' brother]

    Raveniya [Raven / Aliya]

    Razormen [Scissormen / Sentinels]

    Rebel Farmer [Farmer Boy / \"Rebel\" Ralston]

    Red Lash [Lashina / Scarlet Witch]

    Red Vision [Red Tornado II / Vision]

    Redwing, the Avenging Wonder [Robin, the Boy Wonder / the Avenging Angel]

    Retribution [Firehair / Penance]

    Rhodes, Stewart [John Stewart (Green Lantern) / James Rhodes (Iron Man, War Machine)]

    Rhomann Sur [Abin Sur / Centurion Rhomann Dey]

    Richards, Professor Reed \"Prof\" [Prof / Mister Fantastic]

    Richmond, Lucius [Lucius Fox / Kyle Richmond]

    Ritz-Carwald [Ritz-Carlton / Carlin / Gruenwald ]

    Ross, Pete [Pete Ross / General Ross/ Peter Parker]

    Runaway [Gypsy / Rogue]

    Sabrebak [Kalibak / Sabretooth]

    Sallis, Francie-Ellen [Francine Langstrom / Ellen Sallis]

    Savage, Black Tom [Matt Savage / Black Tom]

    Savage Shaw [Vandal Savage / Sebastian Shaw]

    Scavulture [Scavenger / Vulture]

    Sea Devil Dinosaurs [Sea Devils / Devil Dinosaur]

    Secret Crisis [Crisis on Infinite Earths / Secret Wars]

    Shadow Guild [Obsidian elements / Thieves' Guild]

    Shadowstar [Shadow Lass / Starhawk]

    Shaggynaut [Shaggy Man / Juggernaut]

    Shatterstarfire [Starfire / Shatterstar]

    Sheldon, Vicky [Vicki Vale / Phil Sheldon]

    Siliconman [Plastic Man / Sandman]

    Silverlance [Devilance, the Pursuer / Quicksilver]

    Silver Racer [Black Racer / Silver Surfer]

    Silver Streak [Streaky / Silver Surfer]

    Silver Tornado [Red Tornado / Silver Surfer]

    Sinister Society [Society of Sin/ Secret Society of Super-Villains / Sinister Six/ Serpent Society/ Sinister Syndicate]

    Sinistron [Brainiac/ Sinestro / Mister Sinister/ Ultron/ Nimrod]

    Six-Gun Triplicate Kid [Triplicate Girl / Two-Gun Kid]

    Skinhunter [Scalphunter / Skin]

    Skulk [Solomon Grundy / Hulk]

    Smith, Pow Wow Boom Boom [Pow-Wow Smith / Boom Boom]

    Sonicorn [Sonar / Unicorn]

    Soniklaw [Sonar/ Klaw]

    Souls of Power [Valor/ Flash I/ Iris / Mister Sinister/ Super-Skrull/ Leader/ Mister Fantastic]

    Sparkler [Spark / Dazzler]

    Sparrow [Robin / Jubilee]

    Sparticus [Persuader / Gladiator II]

    Speed Demon I [Flash/ Etrigan / Ghost Rider]

    Speed Demon II [Flash III / Ghost Rider II]

    Spider-Boy [Superboy / Spider-Man]

    Spider-Boy 2099 [M'Onel / Spider-Man 2099]

    Spider-Clones [Bizarro / Spider-Man I or II]

    Spiral Harley [Harley Quinn / Spiral]

    Spitfire and the Blackhawks [Blackhawks / Spitfire and the Troubleshooters (New Universe)]

    Splinter Army [Superman/ Batman/ Wonder Woman / Spider-Man/ Wolverine]

    Star Charlie [Star Boy I / Charlie 27]

    Star International [STAR Labs / Stark Industries]

    Starbrand Corps [Green Lantern Corps / Starbrand (New Universe)]

    Stark Aircraft [Ferris Aircraft / Stark Industries]

    Stark Labs [STAR Labs / Stark International]

    Steppenorn, the Wolf Queen [Steppenwolf / Norns]

    Storm, Doctor Johnny \"Red\" [Red / Human Torch]

    Storm, Susan \"Ace\" [Ace / Invisible Woman]

    Suicide Street [Suicide Slum / Yancy Street]

    Sun Lord [Sun Boy / Firelord]

    Sunfirestorm [Firestorm / Sunfire]

    Super Four [Superman / Fantastic Four]

    Super-Soldier [Superman / Captain America]

    Supermutant [Superman / Bishop]

    Super-Weirdies [DNAliens / Deviants]

    Tamojoran [Tamaran/ Katarthans/ Mojoverse/ Microverse]

    Terra-X [Terra / Terrax]

    Terrible Three [Terrible Trio / Sinister Six]

    Thanoseid [Darkseid / Thanos]

    Tharlock [Tharok / Deathlok]

    Thor-El [Superman, Jor-El / Thor]

    Thorion the Hunter [Orion / Thor]

    Thorion the Celestial [Orion/ Promethean Giants/ Thor/ Celestials]

    Thunderchick [Nighthawk / Siryn]

    Timberwolf by Night [Timber Wolf / Werewolf by Night]

    Time Square [Time Sphere / Time Cube]

    Tower of Strangefate [Arkham Asylum / Doctor Strange's Sanctum]

    Trask, Marshal \"Bat\" [Bat Lash / Bolivar Trask]

    Triserniak [Serifan / Triton/ Karnak]

    Twins Trigger [Trigger Twins/ Cinnamon / Aurora & Northstar]

    Two-Face [Two-Face / Arnim Zola]

    Two-Faced Goblin [Two-Face / Green Goblin]

    Uatu [Guardians / Uatu the Watcher]

    Ubuwong [Ubu / Wong]

    Ultivac the Multi-Robot [Ultivac/ Multi-Woman / Super-Skrull]

    Ultra-Metallo [Metallo/ Ultra-Humanite / Ultron/ Sleeper Robots]

    Un-People [Forever People / Inhumans]

    Uni-Friend [Source / Uni-Mind]

    Universe Boy I & II [Ultra Boy I & III / Captain Universe]

    Universe-Two [Earth-2 / New Universe]

    Urich, Jimmy [Jimmy Olsen / Ben Urich]

    Vale, Lance [Vicki Vale / Lance Bannon]

    Valhalla Zone [Phantom Zone / Valhalla]

    Valinus [Validus / Terminus]

    Van Dyne, Salu [Shrinking Violet I / Wasp]

    Vance Cosmic I & II [Cosmic Boy I & III / Vance Astro]

    Virmin Vundavort [Virmin Vundabar / Toad]

    Vengeance [Reverse-Flash / Stryfe]

    Vigilante Kid [Vigilante / Rawhide Kid]

    Vikki Valkyrie [Vicki Vale/ Valkyrie]

    Vykin the Black Bolt [Vykin the Black / Black Bolt]

    Walker, Debbi [Debbi / Patsy Walker]

    War Monarch [Monarch / War Machine]

    Warlord Gh'ul [Ras Al Ghul / Warlord Krang]

    Wayne, Bruce [Batman / Nick Fury]

    Weaponers of A.I.M. [Weaponers of Qward / AIM]

    White Whip [Whip / Emma Frost]

    White Witch [Zatanna/ White Witch/ Scarlet Witch]

    White, J. Jonah [Perry White / J. Jonah Jameson]

    Whiz [Flash I / Whizzer I]

    Wildman Percy [Wildman / Percy Pinkerton]

    Winterstick [Wintergreen / Stick]

    Wired [Manhunter / Cable]

    Wonder-Gold [Booster Gold / Wonder Man]

    Wonder-Girl [Troia / Wonder Man]

    Wonder Wasp [Wonder Girl II / Wasp]

    Wraith [Obsidian / Gambit]

    X-League I [JLA / X-Men]

    X-League II [Justice League of America / X-Men/ Avengers]

    X-Patrol [Doom Patrol / X-Force]

    X-Stroke, the Eliminator [Deathstroke, the Terminator / X-Cutioner]

    Yancy Legion [Legion of Super-Heroes/ Newsboy Legion / Yancy Street Gang]

    Zenosha [Zandia / Genosha]

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105603/","id":105603,"name":null,"issue_number":"1"},"first_appeared_in_episode":null,"id":43725,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11352/1054667-bro10cx7.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11352/1054667-bro10cx7.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11352/1054667-bro10cx7.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11352/1054667-bro10cx7.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11352/1054667-bro10cx7.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11352/1054667-bro10cx7.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11352/1054667-bro10cx7.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11352/1054667-bro10cx7.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11352/1054667-bro10cx7.jpg","image_tags":"All Images,Amalgam"},"name":"Amalgam","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2014/","id":2014,"name":"Amalgam Comics","site_detail_url":"https://comicvine.gamespot.com/amalgam-comics/4010-2014/"},"site_detail_url":"https://comicvine.gamespot.com/amalgam/4045-43725/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43775/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-01-10 17:39:25","deck":"Distraught over the death Gwen Stacy and angry at Spider-Man, the Jackal, with the help of Norman Osborn, concocts an elaborate revenge scheme involving cloning. He convinces Peter Parker that he is a clone and forces him to fight multiple copies of himself.","description":"

    Publication History

    There have been multiple Clone Sagas over the years. The original was written in the 1970's by Gerry Conway. However, the sequel written in the 1990's largely eclipsed it and has become an extremely important event in Spider-Man's history. This second Clone Saga was written by Terry Kavanagh and Howard Mackie. The executive editors involved were Tom DeFalco, Bob Budiansky and Bob Harras.

    Originally, the story arch was intended to conclude within less than a year. However, when sales exceeded expectations, Marvel decided to prolong the saga, stretching it out over almost three years. Unfortunately, the changes made in the aftermath of this decision proved largely unpopular and ultimately caused the story to seem somewhat convoluted.

    Since then, there have been a couple of additional attempts to revive and reboot the clone saga, including the 2006 Ultimate Clone Saga and a 2009 storyline called the Real Clone Saga.

    The Original Clone Saga

    The original Clone Saga began in \"Amazing Spider-Man #144” (May 1975). The story takes place in the aftermath of the death of Peter Parker's girlfriend, Gwen Stacy. This event was an extremely traumatic experience for Spider-Man and almost led him to quit being a superhero. However, only a few months later, after finally coming to grips with his loss, he would have to go through emotional turmoil once again when Gwen Stacy seemingly returns from the dead.

    As he would come to discover, her return was the work of a new super villain named Jackal. Jackal’s real identity is that of Miles Warren, a biochemist at Empire State University where Peter and Gwen studied. It was here that Miles fell in love with Gwen. However, after her death, he was driven mad by grief and desperately sought to clone her. After a number of failed attempts he finally succeeded in perfecting the formula and created identical copies of both her and Spider-Man.

    Jackal blames Spider-Man for Gwen's death and so, commands the clone to battle the original. Capitalizing on this opportunity, he also places a time bomb nearby. However, the fight between Spider-Man and the clone rages too long and the bomb goes off before Jackal can escape. In the end, the explosion kills both him and the clone, leaving Spider-Man the only one alive.

    Unnerved by the experience and worried that he may actually be the clone, Spider-Man conducts some genetic tests in an attempt to confirm his identity as the original. However, afraid of the truth, he ultimately avoids the results. Instead, he convinces himself that his love for Mary Jane Watson is proof enough of his identity. He remembers having feelings for her before the clone appeared, and thus concludes that he must be the real Spider-Man.

    The clone of Gwen Stacy moves on with her life. She leaves Empire State University in hopes of starting over somewhere new.

    Jackal's Genetic Weapon

    Years later, Spider-Man encounters Carrion, a clone of Warren who is suffering from genetic degeneration. After visiting Jackal's old laboratory, he discovers the professor's notes, which explain that Carrion is actually a genetic weapon created to infect all man kind with the degenerative disease. Deciding to put an end to Warren’s scheme, Spider-Man fights Carrion and defeats him. However, before the clone goes down, he manages to infect a student of Empire State University named Malcolm McBride with the plague, transforming him into a new Carrion.

    The New Clone Saga

    Many years later, it is revealed that the clone that Spider-Man had thought dead, had actually survived. Deeply depressed, he had left New York and taken on the name Ben Reilly, a combination of Uncle Ben's first name and Aunt May's maiden name. He had all the memories of Spider-Man, but knew he was a clone, and so, decided to keep his distance from Peter Parker. Moving to a different town, he made a new life for himself and started fighting crime as the Scarlet Spider.

    \"Clones,
    Clones, clones, clones.

    However, when Aunt May becomes ill and is hospitalized, he decides he cannot keep away any longer and goes to visit her. This leads to a confrontation between him and Peter. At first, the two fight, but eventually they come to an understanding and become friends. Unfortunately though, Ben and Peter aren't able to rest easy for long. Soon after Ben arrives, a mentally unstable man named Kaine shows up and challenges the two to a fight. Kaine reveals that he was the result of Jackal's first attempt at cloning Spider-Man. Unfortunately, something had gone awry in the cloning process and he had developed the degenerative disease. This caused a large black mark to appear on his face and forced him to wear a specially designed black suit that kept the disease at bay.

    Working together, Spider-Man and Scarlet Spider are able to defeat Kaine. Deciding they need to investigate further, they revisit Jackal's old lab. However, to their great surprise, he is revealed to be alive. He explains that the time bomb had actually killed a clone of himself, while he had lived on to continue his genetic experiments. Now ready to inflict the degenerative virus on the populace, he begins to put his plan into motion and commands a third Spider-Man clone named Spidercide to keep Spider-Man, Scarlet Spider, and Kaine at bay.

    Fortunately, they are able to defeat Spidercide and stop Warren's mad scheme. However, before escaping, Jackal reveals that Ben Reilly is actually the original Spider-Man and that Peter Parker is really a clone. After conducting their own genetic test, Peter and Ben realize that what he said is true and are forced to rethink their lives. Peter is particularly distraught over this revelation. Feeling he has stolen Ben's life, he decides to stop being Spider-Man and move to Portland with Mary Jane to start a more humble life. With him now gone, Ben moves to New York permanently and becomes the new Spider-Man.

    This became the status quo for close to a year. However, when Jackal reappears, Peter moves back to New York and works with Ben to investigate. Eventually they find the criminal and have another explosive battle. However, they would experience a huge shock when the long thought dead Norman Osborn reveals himself and explains that he had been secretly manipulating events all along. He tells them that he had switched the test results and that Peter really was the original Spider-Man, with Ben being the clone.

    At first, they aren't sure if they should believe the former Green Goblin. However, after a climactic battle with the criminal, Ben is stabbed by the Goblin's Glider and dies. As he breaths his last breath, his body disintegrates, succumbing to the degenerative genetic disorder that all the clones suffer from. This finally proves that Peter is the original, and after defeating Norman Osborn, he returns to his old life as Spider-Man.

    Ultimate Clone Saga

    A rebooted version of the Clone Saga was later written by Brian Michael Bendis for Marvel's Ultimate imprint. In this telling, Spider-Man, after catching the Scorpion, learns that the villain is actually a clone, sharing 94.2% of his DNA with our hero. Soon afterward, Mary Jane is abducted. However, in his quest to find his missing girlfriend, Peter encounters several other clones of himself, including one with a disfigured face named Kaine , one with six arms named Tarantula , and a female clone named Spider-Woman. In the course of this adventure, he reveals his secret identity to Aunt May and the Fantastic Four, and encounters both an amnesiatic Gwen Stacy and his long thought dead father, Richard Parker.

    After talking to Spider-Woman, he learns that each clone has inherited his love for Mary Jane. As a result, they each set out to protect her in different ways. Spider Woman and Tarantula both try to defend her from the other clones. However, Kaine eventually gets past them and administers the super human drug OZ to her in an attempt to make her more resistant to injury. Upon waking and discovering what has happened, Mary Jane is enraged and transforms into a large, red monster.

    As the story continues, Spider-Man discovers that the masterminds behind the creation of the clones are Doctor Octopus and a scientist named Ben Reilly. It is revealed that Reilly stole a sample of Peter's blood shortly after the death of Gwen Stacy and with the help of Doc Ock and the consent of the FBI, had set out to create the duplicates. This leads to a confrontation between the villains and clones which ends with both Tarantula and Kaine dead, and Dr. Octopus captured by S.H.I.E.L.D. In addition, Gwen reveals herself as Carnage and Richard discovers that he is yet another clone of Peter Parker, aged artificially and implanted with false memories. In the end, the clone posing as Richard Parker dies from rapid aging, Spider-Woman helps Peter defeat Octavius, and Reed Richards finds a cure for Mary Jane's affliction. Peter's relief at her safe condition leads him to rediscover his true feelings for her and resume their relationship. Spider-Woman runs away to start a new life somewhere else, and the Scorpion and Gwen Stacy are left in the custody of Nick Fury.

    Spider Wars

    The Clone Saga was also adapted by the 1990's Spider-Man television series in a storyline known as the Spider Wars. This version, however, differs in some significant ways. In a departure from the comics, the other Spider-Men are not clones, but are alternate reality versions of Spider-Man.

    The story begins in a distopic alternate Earth. In this Universe, a version of Spider-Man who has bonded with Carnage sets off a massive bomb that turns his world into a barren wasteland. However, unsatisfied with the destruction he has wrought, he decides to build an even larger bomb that can do the same to other alternate worlds. To thwart this menace, the cosmic being known as the Beyonder gathers six Spider-Men from different Universes to stop him.

    In addition to the mainstream Spider-Man, his other champions include the Iron Armor Spiderman, the Octo-Spiderman, the mutant Spiderman, Scarlet Spider, and an actor who, in his world, plays Spider-Man on television. The Spider-Man from the animated series was made leader of the team, and, together, they travel to confront Spider-Carnage. There is an intense fight. However, the villainous Spider-Man escapes with his bomb to the world of Iron Armor Spider-Man.

    Unfortunately, the Beyonder has been weakened and is only able to teleport one person to pursue the villain. As leader, the mainstream Spider-Man volunteers and so, is sent to track down Spider-Carnage in this new world. He quickly finds him. However, after a short fight, he realizes he isn't strong enough to win. Thinking the matter over, he realizes that the only way to stop him may be to appeal to his good nature. He finds Uncle Ben, who, in this Universe, never died, and, with his help, tries to convince Spider-Carnage to abandon his plan.

    His idea works, and the alternate Peter is able to fight the influence of Carnage. Desperate to stop the monster, he uses the weapon to kill himself and Carnage, thus saving the Multiverse. As thanks, the Beyonder allows Spider-Man to meet Stan Lee and then sends him back to his world.

    Collected Editions

    Non U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-64433/","id":64433,"name":"Power and Responsibility, Part 2- Breakdown!","issue_number":"394"},"first_appeared_in_episode":null,"id":43775,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2114146-1323112185.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2114146-1323112185.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2114146-1323112185.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2114146-1323112185.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2114146-1323112185.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2114146-1323112185.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2114146-1323112185.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2114146-1323112185.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2114146-1323112185.jpg","image_tags":"All Images,Clone Saga,Earth-616 Kaine,Earth-616 Scarlet Spider,Marvel Clones,Spider-man,Spiders"},"name":"Clone Saga","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/clone-saga/4045-43775/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43776/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-10-18 11:42:41","deck":"Evolve Or Die!","description":"

    Red

    Friendly Neighborhood Spider-Man #1

    \"Friendly
    Friendly Neighborhood Spider-Man #1

    Peter Parker tries to tell Mary Jane about a weird dream he has been having but she doesn't seem to be listening to him. Spider-Man has a run in with a new villain named Tracer who was robbing a bank. During the battle, Spider-Man tries to take some advice from Captain America and in doing so gets shot in the shoulder. He goes to see a doctor who bandages him up. At the end of the comic, the doctor calls him and tells him that she has very bad news. The reader is left with an image of Morlun staring down at Spider-Man's window.

    Marvel Knights Spider-Man #19

    After one of Mary Jane's plays there is a news report about Spider-Man in a battle with Tracer. Mary Jane runs to a nearby bar, where she pays the bartender so everyone can have beers so she can watch the news. During the battle, Tracer takes over Iron Man's Armor and attacks Spider-Man. The coverage ends as the news channel was not allowed to report the rest of the battle. It is then that one of Mary Jane's stalkers attackers her. She defends herself using training she had gained from Captain America. At the end of this comic, Peter shows Mary Jane what the bad news is.

    The Amazing Spider-Man #525

    Tracer has all of New York City's machines running wild attacking each other. The New Avengers go out to stop them, and during the battle Spider-Man is knocked back into an alley. In this alley, Spider-Man sees Morlun who he thought was dead. Morlun runs off and Wolverine, who had come to check on Spider-Man, says that he didn't see or smell him. Spider-Man, thinking he is going crazy, returns to Stark Tower where he finds Tracer talking with his Aunt May. Peter brutally attacks Tracer, who does not fight back and says that he wanted to fight Spider-Man in his prime. At the end, Aunt May demands Peter tells her what is bothering him.

    Blue

    Friendly Neighborhood Spider-Man #2

    It is revealed that Peter is dying but from an unknown cause. Hank Pym, Reed Richards, and Tony Stark all study him but can't figure out the what he is dying from. Thinking that perhaps his radioactive spider-bite is the cause, the heroes go to find an expert on radiation, Bruce Banner. When they find him, Banner is in his Incredible Hulk state and attacks them. Using a gas to calm him down they revert him back to Bruce Banner. Banner was also not able to find the cause of the problem so Peter goes to see Black Panther. Black Panther gives Peter a special herb that is meant only for a warrior proven to be worthy of being king. This still does not cure Peter though. He decides to take a non-science approach to the problem and visits Dr. Strange. Dr. Strange tells him that he can not be helped and that he has lived a long life and should prepare to die.

    Marvel Knights Spider-Man #20

    \"Marvel
    Marvel Knights Spider-Man #20

    Spider-Man is excepting the fact that he is going to die. Using some of Tony's old Iron Man armors, Peter, Aunt May, and Mary Jane sneak into Lavteria and use Dr. Doom's time machine to view parts of Peter's life. Afterwards, Peter goes to Las Vegas to win some money using his Spider-Sense for Mary Jane and Aunt May to live off of when he dies. Their trip is interrupted by the Wreaking Crew who Peter is forced to battle. Later, Morlun is shown looking for Peter but can't find him because he is in a space with Mary Jane watching the Earth.

    The Amazing Spider-Man #526

    In this issue, Spider-Man is found by Morlun and the two start battling at the Daily Bugle. Spider-Man tries to lead Morlun away from people so he moves the battle over to Empire State University. During the fight Peter says that he has never been hit so hard and he has gone toe-to-toe with the Hulk. This is probably due to Morlun becoming stronger and Peter becoming weaker as the battle goes on. At the end of the battle, Morlun rips out Peter's eye and eats them, leaving him to die before the police show up.

    Black

    Friendly Neighborhood Spider-Man #3

    Peter is taken to the hospital after his battle with Morlun. The Avengers and Mary Jane go to check on him at the hospital, where they are told that he is not going to make it. Morlun makes it to Spider-Man's room before they do and wants to finish him off. Mary Jane defends Peter and attacks Morlun. Morlun, clearly the stronger of the two, knocks Mary-Jane back. Seeing this Peter gains the strength to fight on. With eyes glowing red, fangs, and stingers now shooting out of his arms, Peter dives on Morlun, stabbing him in the back and biting his neck eventually killing him. This last attack kills Peter too.

    Marvel Knights Spider-Man #21

    Peter's body has been moved to Stark Tower where Mary Jane and the rest of the Avengers are staying. They are trying to figure out how they are going to explain to the world how Peter died without giving away that he is Spider-Man. Mary Jane is having difficulty dealing with Peter's death and Wolverine decides that this is the time to make a move on her. She slaps him and runs off. Later, Wolverine tells Jarvis he did this so she can have a place to take her anger out. At the end of the issue, the alarm at Stark Tower goes off and the Avenger's rush to Peter's body. When they reach the room, the window is broken and Peter is gone with only his husk remaining. Tony says that the window was bulletproof, so either someone was very strong or there is a lot they don't know about spiders.

    The Amazing Spider-Man #527

    \"The
    The Amazing Spider-Man #527

    The Avengers are out looking for Peter's body. It is revealed that he has made a cocoon that his body is in right now. While in it he has a dream about a spider eating everyone he was close to. This Spider then tells him that he has been denying what he really is and that he needs to embrace his true self. It appears that he does embrace his inner spider when he breaks free of the cocoon. He then returns to the Avengers and his family who can't believe he is alive.

    Gold

    Friendly Neighborhood Spider-Man #4

    \"Friendly
    Friendly Neighborhood Spider-Man #4

    Peter is in Tony's lab, where the top minds in the world are trying to figure out why he is still alive. At one point Tony goes to touch Peter's shoulder, but Peter reacted before he could and tripped him without realizing he was doing it. Aunt May tells Stark and the others to let Peter enjoy his second chance at life. Running off, Peter takes Mary Jane for a ride around the city. When they return to Stark Tower it is covered in webs. It is in the tower that Peter finds a figure made up of spiders who breaks out of the Tower.

    Marvel Knights Spider-Man #22

    Spider-Man battles the figure made of Spiders who reveals that he should not be alive. Before he is able to stop the figure, it breaks up into many spiders and runs down into the sewers. Peter returns home and tries to figure out what is going on. Peter goes back to Dr. Strange who tells him him he is caught in a \"cosmic web\". He explains that he can actually choose to be the spider who made the web or the \"meal\" as Peter put it.

    The Amazing Spider-Man #528

    Peter goes to get his costume fixed when a building falls. Attempting to save the people inside Peter realizes he gained the ability to see in the dark. He also has the ability to feel the vibrations in his web as well as feel when wind patterns change. When he finds a little girl he sees that he can stick her to his back instead of just with is hands and feet. At the end of the issue, it is revealed that Tony is working on a costume for Peter.

    Collected Editions

    Related Issues

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-484645/","id":484645,"name":null,"issue_number":"1"},"first_appeared_in_episode":null,"id":43776,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2058490-spider_man_cover_by_diablo2003.jpg","image_tags":"All Images,Spider-Man: The Other"},"name":"The Other","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/the-other/4045-43776/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43814/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2013-06-17 08:19:49","deck":"The culmination of the X-Traitor storyline and then leads in to Heroes Reborn. Onslaught attempted to recreate the world in his image, only to be defeated by the combined sacrifice of Earth's heroes.","description":"

    The Onslaught story arc began at the end of X-Men #54 and started off in Onslaught: X-Men, then was developed over the course of Onslaught Phases 1 & 2, finally concluding in Onslaught: Marvel Universe. Tie-in issues were dubbed Onslaught Impact 1 & 2, corresponding with the Phases.

    Suggested Reading

    Preludes:

    Epilogues:

    Related Story-Arcs

    Onslaught Reborn - After the House of M when the Scarlet Witch alters reality to de-power over 90% of the worlds mutants, Professor X and Magneto are de-powered as well. The energies of both powerful mutants combine to re-awaken Onslaught, who has a vendetta against Franklin Richards and the heroes of Earth.

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-66382/","id":66382,"name":"Fire With Fire","issue_number":"99"},"first_appeared_in_episode":null,"id":43814,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3113174-avengersannual09904.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3113174-avengersannual09904.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3113174-avengersannual09904.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3113174-avengersannual09904.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3113174-avengersannual09904.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3113174-avengersannual09904.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3113174-avengersannual09904.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3113174-avengersannual09904.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3113174-avengersannual09904.jpg","image_tags":"All Images,Art,Earth-616 Avengers,Earth-616 Captain America,Earth-616 Giant Man,Earth-616 Namor,Earth-616 Onslaught,Earth-616 Scarlet Witch,Earth-616 Thor,Earth-616 Wasp,Earth-96020 Iron Boy"},"name":"Onslaught","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/onslaught/4045-43814/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43825/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-01-01 07:47:15","deck":"Gwen's twins emerge to battle Spider-Man.","description":"

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-304352/","id":304352,"name":"Sins Past Part One","issue_number":"1"},"first_appeared_in_episode":null,"id":43825,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2589366-stacybrats.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2589366-stacybrats.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2589366-stacybrats.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2589366-stacybrats.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2589366-stacybrats.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2589366-stacybrats.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2589366-stacybrats.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2589366-stacybrats.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2589366-stacybrats.png","image_tags":"All Images,Artwork,cover of sins past,Grey goblin,Sarah Stacy"},"name":"Sins Past","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/sins-past/4045-43825/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43899/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2014-12-27 20:54:28","deck":"Follows the \"Onslaught\" storyline. Due to growing mistrust between humankind and mutantkind, Bastion and his Sentinels were given the U.S. government's approval to carry out a campaign of eradication.","description":"

    Prelude:

    • Uncanny X-Men #343 (1997/04)
    • Generation X #25 (1997/03)
    • Uncanny X-Men #344 (1997/05)
    • Generation X #26 (1997/04)
    • Generation X #27 (1997/05)
    • X-Men #64 (1997/05)
    • X-Force #67 (1997/06)

    Prologue:

    • X-Men #65 (1997/06)

    Main Body:

    • Cable #45 (1997/08)
    • Generation X #29 (1997/08)
    • Uncanny X-Men #346 (1997/08)
    • Wolverine #115 (1997/08)
    • X-Force #68 (1997/08)
    • X-Men #66 (1997/08)
    • Cable #46 (1997/09)
    • Generation X #30 (1997/09)
    • Wolverine #116 (1997/09)
    • X-Force #69 (1997/09)
    • X-Men #67 (1997/09)
    • Cable #47 (1997/10)
    • Generation X #31 (1997/10)
    • Wolverine #117 (1997/10)
    • X-Men #68 (1997/10)

    Conclusion:

    • X-Men #69 (1997/11)
    • Wolverine #118 (1997/11)

    Aftermath:

    • X-Men #70 (1997/12)

    Tie-in:

    • X-Man #30 (1997/09)
    • Deadpool #12 (1998/01)

    Collected Editions

    Related Items

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-43578/","id":43578,"name":"Adrift","issue_number":"26"},"first_appeared_in_episode":null,"id":43899,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/81513-179884-x-men.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/81513-179884-x-men.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/81513-179884-x-men.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/81513-179884-x-men.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/81513-179884-x-men.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/81513-179884-x-men.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/81513-179884-x-men.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/81513-179884-x-men.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/81513-179884-x-men.jpg","image_tags":"All Images,Artwork,Earth-616 Cecilia Reyes,Earth-616 Marrow,Earth-616 X-Men,X-Men ,Zero Tolerance"},"name":"Operation: Zero Tolerance","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/operation-zero-tolerance/4045-43899/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43901/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-08-21 13:27:12","deck":"From Generation X #63 to #66, the House of Correction storyline ran.","description":"

    Correction was an event featured only in the pages of Generation X.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46672/","id":46672,"name":"Correction (Part 1)","issue_number":"63"},"first_appeared_in_episode":null,"id":43901,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3848/121154-186779-correction.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3848/121154-186779-correction.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3848/121154-186779-correction.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3848/121154-186779-correction.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3848/121154-186779-correction.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3848/121154-186779-correction.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3848/121154-186779-correction.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3848/121154-186779-correction.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3848/121154-186779-correction.JPG","image_tags":"All Images,Correction"},"name":"Correction","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/correction/4045-43901/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43902/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-08-21 13:34:34","deck":"This event spanned three X-titles in the year 2000, namely Generation X, X-Force, and X-Man.","description":"

    Issues:

    • Generation X #67 (2000/09)
    • X-Force #106 (2000/09)
    • X-Man #67 (2000/09)
    • Generation X #68 (2000/10)
    • X-Force #107 (2000/10)
    • X-Man #68 (2000/10)
    • Generation X #69 (2000/11)
    • X-Force #108 (2000/11)
    • X-Force #109 (2000/11)
    • X-Man #69 (2000/11)
    • Generation X #70 (2000/12)
    • X-Man #70 (2000/12)

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46676/","id":46676,"name":"Shockwave - Part 1 of 4","issue_number":"67"},"first_appeared_in_episode":null,"id":43902,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3848/121157-166895-shockwave.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3848/121157-166895-shockwave.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3848/121157-166895-shockwave.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3848/121157-166895-shockwave.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3848/121157-166895-shockwave.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3848/121157-166895-shockwave.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3848/121157-166895-shockwave.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3848/121157-166895-shockwave.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3848/121157-166895-shockwave.JPG","image_tags":"All Images,Shockwave"},"name":"Shockwave","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/shockwave/4045-43902/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43950/","count_of_isssue_appearances":0,"date_added":"2008-06-06 11:27:52","date_last_updated":"2017-02-01 23:25:45","deck":"Following the events of the House of M, mutants are on the brink of extinction with no new mutancy occurring in the human race. Will this be the end, or a new beginning for mutantkind?","description":"

    Background

    When the Scarlet Witch had a mental breakdown and destroyed the Avengers (Avengers Disassembled), her brother Quicksilver convinced her to alter reality. In a flash of light the world was changed. Mutants were no longer the minority, hated for the way they were born. Instead, normal humans were subjugated by the powerful mutagenic and super-powered population under the rule of Magneto. Everyone lived content in this new world, knowing nothing of their original histories, only aware of this new world that the Scarlet Witch created. Slowly the Earth's heroes were awakened to what actually occurred by Wolverine, the mysterious young mutant named Layla Miller, and a small band of rebels. Things came to a breaking point during a battle at a celebration at Magneto's palace when the rebel group attacked. After Magneto's eyes were opened to what had actually occurred the world flashed bright white again and the Scarlet Witch changed reality back to how it was with a major exception--over 90% of the world's mutants were now de-powered and a population of mutants that once numbered in the millions now only totalled in the thousands.

    Mutants are an even smaller minority than before. Many are taking the opportunity to target the remaining mutants. Few are aware of what actually occurred during this House of M (referred to commonly as M-Day). Speculation as to the reason for the mass de-powering range from a government conspiracy to an act of God. The once proud and mighty Magneto was one of the many mutants left powerless by his daughter. A being called the The Collective, composed of the powers of all the de-powered mutants was born, came down from Alaska to locate Magneto. Telling Magneto that the mutant world needed a leader and that they would follow him, the Collective re-powered Magneto. Controlled by the Collective mind, Magneto is forced to battle the Avengers, who were able to remove the Collective from him. Magneto's weak body was taken into SHIELD custody, but the helicopter he was on exploded in mid-air. He has not been seen since.

    Further reading: House of M, Decimation

    Overview

    A young Mutant named Landru is dead. He was not a member of a super-powered peace keeping team. His powers were relatively unimportant. His death was not even out of the ordinary. Landru was hit by a motor vehicle and subsequently died. Still with the number of surviving mutants now numbering in the hundreds rather than the millions that once existed, the death of any mutant is a solemn occasion for mutant-kind. Most of the current X-Men as well as the members X-Factor paid a visit to Landru's funeral. Even Sebastian Shaw, concealed by an image inducer, attended to pay his respects. All who attended the funeral understand some of its implications but perhaps more than Beast. Beast reveals that since the events of M-Day not a single mutant child has been born. It is as if the mutant race was simply removed from the equation.

    Beast has sought help from some of the world's brightest minds including Iron Man, Mr. Fantastic, and Hank Pym to no avail. None were able to help discern the root of mutancy's disappearance. Still determined to understand the root cause of mutant-kind's endangerment, and possibly restoring the species, Beast summons the nerve to invite some of the X-Men's greatest adversaries into the picture in hopes that such a team could discover what is happening. He initiates talks with the likes of Doctor Doom, Arnim Zola, Dr. Kavita Rao, Mr. Sinister, MODOK, Spiral, Sugar Man, Pandemic, and the High Evolutionary by way of a video conference in hopes that the competition between them would bait at least one of them into giving some form of assistance. Beast offers that in his research he has already discovered several important facets of their race which anyone who helped would become privy to, less some finds which he felt were too dangerous which he \"took off of the table\" by destroying. Contrary to Beast's hopes and expectations interest in teaming up remained low in the group. M.O.D.O.K. said that A.I.M had their own plans for exploiting the situation. Still recovering from having his life's work thwarted by the likes of the X-Men, Pandemic offered no assistance and hopes for the extinction of mutants. Always arrogant, Mr. Sinister says that there is nothing scientifically that Beast has to offer him. Despite the mass rejection, Beast finds himself curious at the comments of one--the High Evolutionary--who remarked that he should not attempt to embark on such a journey when starting in the wrong direction.

    Needing elaboration on his earlier comments, Beast embarks on a journey to meet with the High Evolutionary face-to-face in his hidden home high at the top of Wungadore Mountain. With the assistance of a team of locals that he hired (and with his appearance altered by an image inducer) Beast works to scale the mountain. Toward the top they are stopped by the Knights of Wungadore--the High Evolutionary's personal guards, who intend to turn Beast around. After fighting with the Knights and attempting to plead his case the image of the Evolutionary appears before them and commands his servants to allow Beast entrance to his fortress. There Beast pleads his case to the High Evolutionary himself, begging for some assistance in his quest to save mutants from the brink of extinction. Rather than offer assistance, the Evolutionary tries to talk Beast into abandoning his cause as he believes that the Extinction of mutant kind may simply be natural selection in action--regardless of its catalyst. The Evolutionary also divulges that Beast is not the first person to come to him in search of these same answers, but without elaborating on who else has taken up Beast's quest before him the High Evolutionary fades away revealing that Beast was again talking with a image of the Evolutionary as he continued his work elsewhere. The High Evolutionary commands his subjects to escort Beast out of the compound so that he may leave. With little more to go on than before, Beast must seek help elsewhere.

    The next stop in his journey is at the research laboratory of Dr. Kativa Rao. With the scientific help of the extra-terrestrial enemy of the X-Men Ord of the Breakworld, Rao had developed a \"cure\" which would permanently remove the mutant X-Gene from a mutant's genome making them human. Rao had fallen out of favor in the scientific community when it was revealed that her research and data was not her own but was instead provided by Ord. A laughingstock, Rao was now giving what help she could to one of the very mutant that even considered taking her \"cure\". Rao informed Beast that little was to be learned from her data. She informed him that she was done her quest, and that Beast could take anything from her that he needed, although she knew that she had nothing that would help. She revealed a refrigerator which held gene samples taken from thousands of mutants prior to M-Day which were provided to her by Ord. Even these genetic samples no longer contained any trace of the x-gene, just like their previous owners. Beast learns from this that the Scarlet Witch had not only de-powered millions of mutants around the world, save for the few remaining members of the species she eliminated all traces of the mutant x-gene which gave them their unique powers and abilities.

    Hank's next stop was at the rumored Neverland facility, a compound in Canada created by the Weapon X program for unethical experiments on mutants as well as eventual termination. This place, as Beast would discover, was not very unlike the camps used by the Nazi's during World War II. All that remained of the facility was the remains of the buildings as well as the impeccable daily records records kept by those in charge. Beast notices evidence of \"the other\" which the High Evolutionary had alluded to having already been there. Not only did this other rifle through the same records which Beast needed, he searched step by step in the same manner that Beast would, only days earlier. There was even evidence of the same search protocols having been used which Beast himself would run. Beast read through the horrific accounts of Neverland--from the experiments conducted, to the prevention of riots, to the collection and final extermination of its inmates as the facility would be closed down. Leaving the buildings to attempt to recover the mass-graves of the once occupants of Neverland Beast is confronted by a face he did not expect to see--the evil and infamous doppelganger of himself from an alternate version of Earth where Apocalypse ruled--Dark Beast.

    The Endangered Species Story Arc is slated to kick off June 2007 with the Endangered Species One-Shot and is supposed to continue through October 2007.

    Related Story Arcs

    House of M - The catalyst that created the M-Day, Endangered Species, and several other story arcs when the Scarlet Witch altered reality and de-powered over 90% of the Earth's mutant population.

    Decimation - The events following the House of M, occurring between the House of M and Endangered Species story arcs.

    Messiah CompleX - The events that occur after the events of Endangered Species following the first mutant child born since M-Day.

    Collected Editions

    Non-U.S. Editions

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111032/","id":111032,"name":"Blinded by the Light, Part 1 of 4; Endangered Species, Chapter 1","issue_number":"200"},"first_appeared_in_episode":null,"id":43950,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/123325-59484-endangered-species.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/123325-59484-endangered-species.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/123325-59484-endangered-species.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/123325-59484-endangered-species.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/123325-59484-endangered-species.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/123325-59484-endangered-species.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/123325-59484-endangered-species.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/123325-59484-endangered-species.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/123325-59484-endangered-species.jpg","image_tags":"All Images,Endangered Species"},"name":"Endangered Species","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4010-31/"},"site_detail_url":"https://comicvine.gamespot.com/endangered-species/4045-43950/"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/team-details/team-4060-13357.json b/samples/api-data/team-details/team-4060-13357.json new file mode 100644 index 0000000..95ef73d --- /dev/null +++ b/samples/api-data/team-details/team-4060-13357.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13357/","character_enemies":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3548/","id":3548,"name":"Kitty Pryde","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde/4005-3548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2497/","id":2497,"name":"Mockingbird","site_detail_url":"https://comicvine.gamespot.com/mockingbird/4005-2497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1505/","id":1505,"name":"Professor X","site_detail_url":"https://comicvine.gamespot.com/professor-x/4005-1505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1440/","id":1440,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4005-1440/"}],"character_friends":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1455/","id":1455,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4005-1455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1476/","id":1476,"name":"Namor","site_detail_url":"https://comicvine.gamespot.com/namor/4005-1476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58812/","id":58812,"name":"Norman Osborn","site_detail_url":"https://comicvine.gamespot.com/norman-osborn/4005-58812/"}],"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10567/","id":10567,"name":"Adrienne Frost","site_detail_url":"https://comicvine.gamespot.com/adrienne-frost/4005-10567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4814/","id":4814,"name":"Andrea von Strucker","site_detail_url":"https://comicvine.gamespot.com/andrea-von-strucker/4005-4814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4815/","id":4815,"name":"Andreas von Strucker","site_detail_url":"https://comicvine.gamespot.com/andreas-von-strucker/4005-4815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2112/","id":2112,"name":"Angel","site_detail_url":"https://comicvine.gamespot.com/angel/4005-2112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154719/","id":154719,"name":"Angus Munro","site_detail_url":"https://comicvine.gamespot.com/angus-munro/4005-154719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40526/","id":40526,"name":"Azazel","site_detail_url":"https://comicvine.gamespot.com/azazel/4005-40526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9706/","id":9706,"name":"Benazir Kaur","site_detail_url":"https://comicvine.gamespot.com/benazir-kaur/4005-9706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9705/","id":9705,"name":"Benedict Kine","site_detail_url":"https://comicvine.gamespot.com/benedict-kine/4005-9705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3176/","id":3176,"name":"Betsy Braddock","site_detail_url":"https://comicvine.gamespot.com/betsy-braddock/4005-3176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59754/","id":59754,"name":"Bianca LaNeige","site_detail_url":"https://comicvine.gamespot.com/bianca-laneige/4005-59754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1503/","id":1503,"name":"Bishop","site_detail_url":"https://comicvine.gamespot.com/bishop/4005-1503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10976/","id":10976,"name":"Black King","site_detail_url":"https://comicvine.gamespot.com/black-king/4005-10976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4568/","id":4568,"name":"Black Tom Cassidy","site_detail_url":"https://comicvine.gamespot.com/black-tom-cassidy/4005-4568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14728/","id":14728,"name":"Blackheart","site_detail_url":"https://comicvine.gamespot.com/blackheart/4005-14728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105319/","id":105319,"name":"Briar Raleigh","site_detail_url":"https://comicvine.gamespot.com/briar-raleigh/4005-105319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3423/","id":3423,"name":"Callisto","site_detail_url":"https://comicvine.gamespot.com/callisto/4005-3423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13320/","id":13320,"name":"Candy Southern","site_detail_url":"https://comicvine.gamespot.com/candy-southern/4005-13320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1496/","id":1496,"name":"Cannonball","site_detail_url":"https://comicvine.gamespot.com/cannonball/4005-1496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7477/","id":7477,"name":"Captain Britain","site_detail_url":"https://comicvine.gamespot.com/captain-britain/4005-7477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80723/","id":80723,"name":"Carlton Kilgore","site_detail_url":"https://comicvine.gamespot.com/carlton-kilgore/4005-80723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11317/","id":11317,"name":"Cassandra Nova","site_detail_url":"https://comicvine.gamespot.com/cassandra-nova/4005-11317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58172/","id":58172,"name":"Castlemere","site_detail_url":"https://comicvine.gamespot.com/castlemere/4005-58172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45050/","id":45050,"name":"Christian Frost","site_detail_url":"https://comicvine.gamespot.com/christian-frost/4005-45050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63113/","id":63113,"name":"Cornelius Shaw","site_detail_url":"https://comicvine.gamespot.com/cornelius-shaw/4005-63113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3431/","id":3431,"name":"Courtney Ross","site_detail_url":"https://comicvine.gamespot.com/courtney-ross/4005-3431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3556/","id":3556,"name":"Donald Pierce","site_detail_url":"https://comicvine.gamespot.com/donald-pierce/4005-3556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45217/","id":45217,"name":"Elias Bogan","site_detail_url":"https://comicvine.gamespot.com/elias-bogan/4005-45217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45271/","id":45271,"name":"Elizabeth Shaw-Worthington","site_detail_url":"https://comicvine.gamespot.com/elizabeth-shaw-worthington/4005-45271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1457/","id":1457,"name":"Emma Frost","site_detail_url":"https://comicvine.gamespot.com/emma-frost/4005-1457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31490/","id":31490,"name":"Emmanuel DaCosta","site_detail_url":"https://comicvine.gamespot.com/emmanuel-dacosta/4005-31490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45215/","id":45215,"name":"Esau Shaw","site_detail_url":"https://comicvine.gamespot.com/esau-shaw/4005-45215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50487/","id":50487,"name":"Esme Cuckoo","site_detail_url":"https://comicvine.gamespot.com/esme-cuckoo/4005-50487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7870/","id":7870,"name":"Fold","site_detail_url":"https://comicvine.gamespot.com/fold/4005-7870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29764/","id":29764,"name":"Friedrich Von Roehm","site_detail_url":"https://comicvine.gamespot.com/friedrich-von-roehm/4005-29764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45195/","id":45195,"name":"Gerhard Van Ostamgen","site_detail_url":"https://comicvine.gamespot.com/gerhard-van-ostamgen/4005-45195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3555/","id":3555,"name":"Harry Leland","site_detail_url":"https://comicvine.gamespot.com/harry-leland/4005-3555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14695/","id":14695,"name":"Hellstorm","site_detail_url":"https://comicvine.gamespot.com/hellstorm/4005-14695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48549/","id":48549,"name":"Howard Stark","site_detail_url":"https://comicvine.gamespot.com/howard-stark/4005-48549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1455/","id":1455,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4005-1455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29195/","id":29195,"name":"James Braddock","site_detail_url":"https://comicvine.gamespot.com/james-braddock/4005-29195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3552/","id":3552,"name":"Jean Grey","site_detail_url":"https://comicvine.gamespot.com/jean-grey/4005-3552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4811/","id":4811,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/justice/4005-4811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78998/","id":78998,"name":"Kade Kilgore","site_detail_url":"https://comicvine.gamespot.com/kade-kilgore/4005-78998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3548/","id":3548,"name":"Kitty Pryde","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde/4005-3548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45203/","id":45203,"name":"Lady Grey","site_detail_url":"https://comicvine.gamespot.com/lady-grey/4005-45203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12055/","id":12055,"name":"Lady Mastermind","site_detail_url":"https://comicvine.gamespot.com/lady-mastermind/4005-12055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86436/","id":86436,"name":"Leonine","site_detail_url":"https://comicvine.gamespot.com/leonine/4005-86436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63114/","id":63114,"name":"Lord Molyneux","site_detail_url":"https://comicvine.gamespot.com/lord-molyneux/4005-63114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56615/","id":56615,"name":"Lourdes Chantel","site_detail_url":"https://comicvine.gamespot.com/lourdes-chantel/4005-56615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40460/","id":40460,"name":"M","site_detail_url":"https://comicvine.gamespot.com/m/4005-40460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10981/","id":10981,"name":"Madelyne Pryor","site_detail_url":"https://comicvine.gamespot.com/madelyne-pryor/4005-10981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1441/","id":1441,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4005-1441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45208/","id":45208,"name":"Major General Wallace Worthington","site_detail_url":"https://comicvine.gamespot.com/major-general-wallace-worthington/4005-45208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80663/","id":80663,"name":"Manuel Enduque","site_detail_url":"https://comicvine.gamespot.com/manuel-enduque/4005-80663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23007/","id":23007,"name":"Margali Szardos","site_detail_url":"https://comicvine.gamespot.com/margali-szardos/4005-23007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13726/","id":13726,"name":"Marrow","site_detail_url":"https://comicvine.gamespot.com/marrow/4005-13726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8306/","id":8306,"name":"Mastermind","site_detail_url":"https://comicvine.gamespot.com/mastermind/4005-8306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80676/","id":80676,"name":"Maximilian Frankenstein","site_detail_url":"https://comicvine.gamespot.com/maximilian-frankenstein/4005-80676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56522/","id":56522,"name":"Miss Sinister","site_detail_url":"https://comicvine.gamespot.com/miss-sinister/4005-56522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-89549/","id":89549,"name":"Mondo","site_detail_url":"https://comicvine.gamespot.com/mondo/4005-89549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14850/","id":14850,"name":"Mountjoy","site_detail_url":"https://comicvine.gamespot.com/mountjoy/4005-14850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-140031/","id":140031,"name":"Ms. Hoo","site_detail_url":"https://comicvine.gamespot.com/ms-hoo/4005-140031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24084/","id":24084,"name":"Ms. Steed","site_detail_url":"https://comicvine.gamespot.com/ms-steed/4005-24084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54349/","id":54349,"name":"Ned Buckman","site_detail_url":"https://comicvine.gamespot.com/ned-buckman/4005-54349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41178/","id":41178,"name":"Negasonic Teenage Warhead","site_detail_url":"https://comicvine.gamespot.com/negasonic-teenage-warhead/4005-41178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2098/","id":2098,"name":"Night Thrasher","site_detail_url":"https://comicvine.gamespot.com/night-thrasher/4005-2098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58812/","id":58812,"name":"Norman Osborn","site_detail_url":"https://comicvine.gamespot.com/norman-osborn/4005-58812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56614/","id":56614,"name":"Paris Seville","site_detail_url":"https://comicvine.gamespot.com/paris-seville/4005-56614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50489/","id":50489,"name":"Phoebe Cuckoo","site_detail_url":"https://comicvine.gamespot.com/phoebe-cuckoo/4005-50489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2164/","id":2164,"name":"Phoenix Force","site_detail_url":"https://comicvine.gamespot.com/phoenix-force/4005-2164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1473/","id":1473,"name":"Polaris","site_detail_url":"https://comicvine.gamespot.com/polaris/4005-1473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40583/","id":40583,"name":"Quentin Quire","site_detail_url":"https://comicvine.gamespot.com/quentin-quire/4005-40583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30828/","id":30828,"name":"Randall Chase","site_detail_url":"https://comicvine.gamespot.com/randall-chase/4005-30828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85864/","id":85864,"name":"Randolph Winstrom","site_detail_url":"https://comicvine.gamespot.com/randolph-winstrom/4005-85864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82390/","id":82390,"name":"Red Bishop","site_detail_url":"https://comicvine.gamespot.com/red-bishop/4005-82390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55436/","id":55436,"name":"Red King","site_detail_url":"https://comicvine.gamespot.com/red-king/4005-55436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9707/","id":9707,"name":"Reeva Payge","site_detail_url":"https://comicvine.gamespot.com/reeva-payge/4005-9707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-177829/","id":177829,"name":"Richard Salmons","site_detail_url":"https://comicvine.gamespot.com/richard-salmons/4005-177829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15703/","id":15703,"name":"Ronald Parvenue","site_detail_url":"https://comicvine.gamespot.com/ronald-parvenue/4005-15703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4559/","id":4559,"name":"Sage","site_detail_url":"https://comicvine.gamespot.com/sage/4005-4559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-63115/","id":63115,"name":"Salome","site_detail_url":"https://comicvine.gamespot.com/salome/4005-63115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59571/","id":59571,"name":"Salvatore","site_detail_url":"https://comicvine.gamespot.com/salvatore/4005-59571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45380/","id":45380,"name":"Samarra Shaw","site_detail_url":"https://comicvine.gamespot.com/samarra-shaw/4005-45380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26530/","id":26530,"name":"Sat-Yr-9","site_detail_url":"https://comicvine.gamespot.com/sat-yr-9/4005-26530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14849/","id":14849,"name":"Scribe","site_detail_url":"https://comicvine.gamespot.com/scribe/4005-14849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2175/","id":2175,"name":"Sebastian Shaw","site_detail_url":"https://comicvine.gamespot.com/sebastian-shaw/4005-2175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2176/","id":2176,"name":"Selene","site_detail_url":"https://comicvine.gamespot.com/selene/4005-2176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29258/","id":29258,"name":"Sharon Kelly","site_detail_url":"https://comicvine.gamespot.com/sharon-kelly/4005-29258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9704/","id":9704,"name":"Shinobi Shaw","site_detail_url":"https://comicvine.gamespot.com/shinobi-shaw/4005-9704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12062/","id":12062,"name":"Sir Gordon Philips","site_detail_url":"https://comicvine.gamespot.com/sir-gordon-philips/4005-12062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45216/","id":45216,"name":"Sir Waltham Pierce","site_detail_url":"https://comicvine.gamespot.com/sir-waltham-pierce/4005-45216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50490/","id":50490,"name":"Sophie Cuckoo","site_detail_url":"https://comicvine.gamespot.com/sophie-cuckoo/4005-50490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1444/","id":1444,"name":"Storm","site_detail_url":"https://comicvine.gamespot.com/storm/4005-1444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4644/","id":4644,"name":"Sunspot","site_detail_url":"https://comicvine.gamespot.com/sunspot/4005-4644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86440/","id":86440,"name":"Tithe","site_detail_url":"https://comicvine.gamespot.com/tithe/4005-86440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8300/","id":8300,"name":"Trevor Fitzroy","site_detail_url":"https://comicvine.gamespot.com/trevor-fitzroy/4005-8300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8080/","id":8080,"name":"Trickster","site_detail_url":"https://comicvine.gamespot.com/trickster/4005-8080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3420/","id":3420,"name":"Viper","site_detail_url":"https://comicvine.gamespot.com/viper/4005-3420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56525/","id":56525,"name":"Warren Worthington Jr.","site_detail_url":"https://comicvine.gamespot.com/warren-worthington-jr/4005-56525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80668/","id":80668,"name":"Wilhelmina Kensington","site_detail_url":"https://comicvine.gamespot.com/wilhelmina-kensington/4005-80668/"}],"count_of_isssue_appearances":0,"count_of_team_members":100,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-09-14 15:14:33","deck":"An international group of the world's social elite run by mutants that consider themselves superior to other mutants in both their mutant abilities and social status.","description":"

    Origin

    The Hellfire Club is a centuries old organization with roots in Britain during the 18th Century. It's members were infamous rakes who used their connections within the club to further boost their social standing and to indulge their sexual excesses.

    Over time the club has evolved to include high-flying business men and women, as well as the profitable descendants of royalty and other Hellfire Club members. Being a member of the Hellfire Club is an illustrious boost among elite society. However, there is an even more esoteric sect of individuals who run the Hellfire Club, known as the Inner Circle.

    The Inner Circle

    The Club is run by a small group of influential members who form the infamous Inner Circle. Named after chess pieces, members of the Inner Circle will take on the titles of the Black and White (and later also Red) Kings, Queens, Bishops, and Rooks. The final position of Lord Imperial is reserved for the most powerful member of the club. Additionally, prominent members have also had assistants that did not have official titles within the club.

    The Inner Circle was not always mutant dominated, but few members in several generations were not mutants. The Inner Circle dominates the club and secretly influences the club's activities in order to achieve even more power and wealth.

    Creation

    The Hellfire club was created by Chris Claremont and John Byrne and it made it's first appearance in Uncanny X-Man #129.

    Claremont was inspired by The Hellfire Club of the '60s British TV series The Avengers in the episode titled \"A Touch of Brimstone\". One of the protagonists--Emma Peel-would inspire the designs for Emma Frost.

    The name of the Hellfire Club can be traced back to socialite clubs in the real world that dates back as far as 18th century of Britain and Ireland. Men of high social standing would gather to take part in \"immoral acts\" that would remain a secret. This mainly pertained to intercourse with young women who were hired. The first was founded in London in 1719. Over the decades, new clubs would spring up using the Hellfire Club name. The club motto at one was \"Fais ce que tu voudras\", which translates to \"Do what thou wilt\". One of the many historically significant figures include Benjamin Franklin during 1758. In 1781, a man by the name of Joseph Alderson created a club based off the Hellfire Club's original ideals while at Brasenose College in Oxford , but his version was called the Phoenix Society (later named the Phoenix Common Room).

    Team Evolution

    The Hellfire Club was originally founded in 18th century England by, Sir Francis Dashwood, Duncan Munro and Scotman John Stuart (Third Earl of Butte). It had some connection to King James I and retained some of his writings on the occult from the 16th and 17th centuries. In the 1760s, it functioned as a social club for the elite of British society. The Club not only provided its members with pleasures, often of sorts that violated moral standards at the time, but also sewed as a means for the members to consolidate their Influence over British economic and political matters. During the Revolutionary War, Philadelphia members tried to obtain secret information from Major General Wallace Worthington. In 1859 the club had to align itself with Apocalypse.

    \"Hellfire
    Hellfire Queens

    A number of the Club's most important members emigrated to the colony of New York in the 1780s, where they founded the new American Hellfire Club. Clemens and Knight served as its first leaders under their Club titles of Black King and Black Queen. The Club's headquarters was an abandoned church that stood on the site of the present day Hellfire Club mansion, located at what is now Fifth Avenue on Manhattan's East Side, only a few blocks away from the Avengers Mansion.

    Today's Hellfire Club counts among its members the wealthy, the powerful, and the celebrated from virtually all over the world. Membership is by Invitation only, but such Invitations are rarely turned down, for membership in the Hellfire Club Is universally regarded as the ultimate status symbol. Membership is also hereditary. Tony Stark and Norman Osborne have both been invited into the Hellfire Club.

    Major Story Arcs

    Council of the Chosen

    • White King: Edward \"Ned\" Buckman
    • White Queen: Paris Seville

    Edward Buckman invited many people into the Hellfire Club including Howard Stark, Warren Worthington Jr., and Sir James Braddock. Edward Buckman had a secret agenda he held from those in his Inner Circle, which was to eliminate all mutants by releasing the mutant hunting sentinels. After Shaw came under attack and his lover Lourdes Chantel was killed, Shaw had Emma Frost use her telepathy in order to control Buckman's mind and kill his entire council, then himself. With Buckman dead, Shaw took control of his Inner Circle as the Black King and renamed the Council of the Chosen to the Lords of the Cardinal.

    Lords of the Cardinal

    \"No
    \"No

    Shaw appointed Harry Leland to the Black Bishop position, and Leland introduced Emma Frost to the Hellfire Club and she attained the White Queen title. The cyborg Donald Pierce became the White Rook and the mutant known as Mastermind (Jason Wyngarde) joined as well. Shaw was looking for world domination, so he took over the manufacturing of the sentinels. The Hellfire Club tried to eliminate the X-Men because the X-Men fought for coexistence between humans ans mutants where the Hellfire Club wanted a mutant dominated world.

    \"Sebastian
    Sebastian Shaw and Tessa

    In a Mental battle with the Phoenix, Emma Frost was defeated and left traumatized for several years. Wyngarde began manipulating Phoenix trying to turn her to there side. When the X-Men tried to infiltrate the Hellfire Club they were discovered and the Phoenix turned on the X-Men and became the Black Queen. Phoenix eventually overcame Wyngarde's influence, which led to the the club's defeat. The Phoenix used her mental powers and left Wyngarde in a catatonic state but the damage to phoenix was already done. Wyngarde's mental tampering transformed her into the Dark Phoenix. Pierce tried to overthrow Shaw's rule and failed, resulting in his exclusion from the group.

    The ancient sorceress Selene became the Black Queen, followed by Emmanuelle da Costa as the new White Rook. Leland was later died after a battle with Nimrod forcing the Hellfire Club and the X-Men. Magneto became the White King along with Storm. Differences between Shaw and Magneto led to Shaw's dismissal and Magneto being retitled the Grey King. Magneto would soon leave the club. Selene and Emma soon plan to vote Shaw out of the club. Emma goes on to train her young mutant group the Hellions. Selene takes control and uses the group called the Upstarts to go against members of the inner circle to see who is the best to be in the Hellfire Club. Shinobi Shaw son of Sebastian Shaw, is a member of the upstarts and supposedly kills his father. Fabian Cortez tries to kill Magneto but fails. The Upstarts try to kill Emma Frost but she escapes and her group of Hellions are killed. The Upstarts soon turn against Selene.

    Shinobi's Inner Circle

    \"Shinobi's
    Shinobi's Inner Circle

    After killing his father and turning on Selene, Shinobi takes over the New York Branch as the Hellfire Club's new Black King. Shinobi offers membership to Psylocke (who inherited her membership from her father), Archangel and Storm, they all decline the offer. Shinobi asked Brian Braddock ( Captain Britain, Psylocke's brother) to join the club's London Branch as a Black Bishop to gain information on there activities. Captain Britain found out that the London branch was trying to harness an ancient evil buried beneath England's capitol. The plot failed. Shinobi lost several battles with other super-humans resulting in the club's lack of confidence in him. The Inner Circle quickly diminished and after finding out that his father was still alive Shinobi deserted his position.

    Shaw's Second Term

    \"Madelyne
    Madelyne Pryor

    Shaw resumed his role as the Black King and rebuilt his Inner Circle with Selene, Donald Pierce, Madelyne Pryor and the time traveler Fitzroy(a descendant of Shaw's in an alternate future). Shaw came in contact with Holocaust and had him kidnap X-Force, to get a new containment suit in return. X-Force was brainwashed into hunting down Cable, but instead Cable used his own powers to free his team. After a failed attempt to cure the Legacy Virus he resigned from the Inner Circle. Shaw would soon find out that his aide Tessa had been a spy for Professor Xavier all along. Selene then assumed control of the club and changed it to match her evil nature.

    Selene's Inner Circle

    Selene approached Blackheart the Black King position and Daimon Hellstrom the White King spot. Selene also approached Sunspot for membership since his father had a seat in the club, then so did he. Selene promised to resurrect his girlfriend Julianna if he became her new Black Rook. Selene only partially keeps her word, she resurrects Julianna's spirit and places it in a comatose patient. Nonetheless he keeps his word and accepts his seat. Shaw soon returns as the Lord Imperial of the entire club. Selene was placed in captivity beneath the the Hellfire Club headquarters.

    Shaw's Return

    \"No
    • Lord Imperial: Sebastian Shaw
    • Black King: Sunspot
    • Black Queen: Selene
    • White Queen: Courtney Ross
    • Warrior White Princess: Viper
    • Tessa: Shaw's aide

    When Sir Gordon Phillips dies from the Legacy Virus, Shaw takes the Lord Imperial seat for himself. Shaw approaches Sunspot to be the club's new Black King claiming that he is trying to reform the Hellfire Club for the greater good. Sunspot accepts the title of Black King. Tessa now Sage (X-Men member) fails to warn Shaw of Pierce's assassination attempt, leaving him hospitalized but not before Shaw knocks his head off. Emma Frost also claims to have never lost the White Queen title around this time. Sunspot becomes the new Lord Imperial and is trying to change the club into a force for good, though Ross and Viper appear to have their own agenda.

    Cassandra Nova's Inner Circle

    \"No

    This incarnation of the Hellfire Club didn't exist in the physical world. When the Sentinels attacked Genosha, Cassandra Nova offered Emma Frost a means to survive. In return for igniting her diamond secondary mutation, Emma Frost's mind became host to a portion of Cassandra Nova. She was then mind-wiped to prevent her from fighting Nova's subsequent plans.

    Using Emma Frost's telepathic powers, Nova made the X-Men believe that they were fighting an assault of the Hellfire Club's Inner Circle inside the mansion. Her ruse was ultimately to use Kitty Pryde's phasing powers to retrieve what was left of her body.

    The other members of this incarnation of the Hellfire Club were based on figures buried into Emma Frost's psyche. Perfection was an old out-dated reflection of herself, as the White Queen who had originally confronted the X-Men during the Dark Phoenix Saga. Sebastian Shaw had always been Black King while she was a member of the Inner Circle. Negasonic Teenage Warhead was one of Emma's students on the day that the Sentinels attacked Genosha, and who's lifeless body Emma carried out from the rubble.

    New Age of the Hellfire Club

    Schism

    For more information: Schism

    The Hellfire Club has currently been taken over by the 11 year old Kade Kilgore who has just murdered his father and taken over his company. Kade consults with the elder members of the club as they state their new objective being to purge the club of any mutants. Kade frees Quentin Quire from his cell on Utopia so that he may incite the riot at the UN conference which leads to the activation of Sentinels.

    The Hellfire Club is next seen trading with aliens from brain slugs. The new White Queen slaughters the aliens and keeps the brain slugs as the Club packs it in. They attack the X-Men at an unveiling of a mutant museum. They take down Magneto, Namor, Colossus and Emma each with specific tactics before attaching the alien brain slugs to them. Though Idie is able to save the X-Men the Hellfire Club unleashes an enormous Sentinel which gains mass magnetically from surrounding materials. The Hellfire Club watches on from the shore while the Sentinel heads towards Utopia. The Sentinel is defeated but the events leading up to it have caused the X-Men to split.

    \"No

    Welcome to the X-Men. Now Die!

    For more information: Wolverine and the X-Men

    During a visit from the New York State Department of Education to the Jean Grey School for Higher Learning, the Hellfire Club launches an attack on the school. Kade first formally informs Logan of what he's done so far and that he plans to destroy everything Logan's built. The Hellfire Club unleashes a group of small \"Bamf\" like creatures and awaken a grandchild of Krakoa upon which the school is built. They also turn the reps from the Dept of Education into a Sauron and Wendigo. Maximilian developed guns which fire mortars loaded with miniaturized Frankenstein troopers armed with flame throwers. Quentin Quire takes control of the situation by calming Krakoa and defeating the Frankenstein monsters. The Hellfire Club leave, defeated but are served by Matt Murdock for the repairs of the school.

    Kade is later seen hiring Sabretooth to terrorize the school.

    Phoenix Corporation

    It was revealed that the Phoenix Corporation, headed by Quentin Quire, owned the East Coast branch of the Hellfire Club. Quire, himself, became the new White King of the Hellfire Club.

    Alternate Universes

    Earth-1610 Ultimate

    In the Ultimate Universe the Hellfire Club is an offshoot of the Church of the Shi'ar Enlightenment, a group that worships a cosmic entity known as the Phoenix. While the Church believes the Phoenix to represent both destruction and rebirth, the Hellfire Club believes that the Phoenix entity is only associated with destruction. The ultimate hellfire club is also an enemy of the X-Men.

    X-Men: Misfits

    \"X-Men:
    X-Men: Misfits Vol 1

    The Hellfire Club in Del Rey's manga version of the X-Men is still an elite club of privileged individuals. However, it no longer revolves around the chessboard-based Inner Circle in high society. Instead, the Hellfire Club is a group of spoiled boys who attend Xavier's Academy for the Gifted. The members included Angel, Forge, Havok, Longshot Pyro, Quicksilver and Kitty Pryde. All of them, bar Kitty, had advanced beyond Epsilon-Delta level to Beta level, and often taunted others who they saw as below them.

    They use the Danger Room for their own needs, including turning it into a nightclub complete with simulated girls for them to flirt with. They would often skip classes and break curfew to meet outside and roast marshmallows over a bonfire. Their rule breaking was often over-looked as they were favorites of Magneto. As a new student, Kitty wanted to study, but the other members of the club would steal her books to force her to play with them. If she ran away, they would spend hours chasing her around the mansion until she phased into the crawl space between walls to hide from them.

    Other Media

    Television

    \"X-Men:
    X-Men: The Animated Series
    • X-Men: The Animated Series - The Hellfire Club appears in the multi-part \"Dark Phoenix Saga\" storyline. Much like in the comics, the members of the organization seek to manipulate the Phoenix and bring her under the control. The group is renamed the Inner Circle to fit the network TV broadcast standards.
    • Wolverine & the X-Men - It transpired that they were hunting down the entity known as the Phoenix, who had inhabited telepaths on Earth throughout history. They had kept many archaic pieces of art which told the story of the Phoenix. They had organized a telepathic assault on Jean Grey, which caused the explosion which tore the X-Men apart at the start of the series. Emma Frost used her telepathic powers with the powers of the five Stepford Cuckoos to attack Jean Grey's mind and force the Phoenix out of her body, which caused the explosion. When the X-Men had located & retrieve Jean Grey, Emma Frost used her powers to disable the other X-Men allowing the Inner Circle to abduct Jean. They explained the history of the Phoenix to Jean, claiming that they wanted to eradicate the Phoenix. However, once inside Jean's mind, the Cuckoos followed Sebastian Shaw's order to unlock all of the barriers placed there by Professor Xavier. They intended to release the Phoenix, contain it's power and use it for themselves. As occurred previously, the group is renamed the Inner Circle here.
    • Marvel Anime: X-Men - The members of the Hellfire Club appear as antagonists in the series. In a departure from the comics, Mastermind acts as the leader of the Inner Circle.
    • The Gifted - In the show's first season, it is revealed that the Stepford Cuckoos are actually agents of the Hellfire Club. Several of the show's major characters, including Polaris and Andy Strucker, join the Hellfire Club as the series progresses.

    Films

    \"First
    First Class
    • The Hellfire Club appears in the 2011 origin movie X-Men: First Class, where they are the primary villains. The members of the club in the film are Sebastian Shaw, Emma Frost, Azazel and Riptide. In 1963, Shaw attempts to manipulate the United States and the U.S.S.R. into starting a nuclear war that will decimate the planet, believing that the ensuing chaos will allow the Hellfire Club to rule the new, mutant-dominated society that will arise from the ashes. The X-Men seek to stop the Hellfire Club, leading to a pitched battle between both teams in Cuba. Shaw is ultimately killed by the young Magneto, whose mother had previously been murdered by Shaw back during World War 2. After Shaw's death, Magneto offers the remaining members of the Hellfire Club a place at his side, leading to the creation of the first Brotherhood of Mutants.

    Video Games

    \"Avengers
    Avengers Alliance
    • The Hellfire Club appears as a stage in the X-Men game for the Sega Game Gear.
    • The Hellfire Club is also a stage in X-Men 2: Game Master's Legacy.
    • The Hellfire Club appears as antagonistic force in Wolverine: Adamantium Rage, with the group's mansion serving as a stage. Selene and Shinobi Shaw serve as the boss characters for this segment of the game.
    • Hellfire Club mercenaries appear as enemies in X-Men Legends II: Rise of Apocalypse.
    • Hellfire Club mercenaries appear as enemies in the Facebook game Marvel Avengers Alliance. The members of the Hellfire Club appear again throughout the game, enlisting the help of characters like the Living Monolith and Bullseye.

    Merchandise

    \"Marvel
    Marvel Select
    • A Hellfire Club guard was featured in Diamond Select's Minimates line as part of a two-pack with Jean Grey as the Black Queen.
    • The Hellfire Club guards were featured in the HeroClix figure game. Various members of the organization, such as Emma Frost, Sebastian Shaw, Selene, Donald Pierce and Harry Leland also appeared in the game. A special Team Base that can be used to display Emma Frost, Sebastian Shaw, Donald Pierce and Selene was also released.
    • Emma Frost and Jean Grey as the Black Queen were both featured in the Marvel Legends line from Hasbro.
    • The Marvel Select Emma Frost figure from Diamond Select included a Hellfire Club display base.
    • Sideshow Collectibles released a statue depicting Emma Frost in her Hellfire Club costume.
    ","disbanded_in_issues":[],"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20114/","id":20114,"name":"God Spare The Child...","issue_number":"129"},"id":13357,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8151617-marauders_vol_1_24_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8151617-marauders_vol_1_24_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8151617-marauders_vol_1_24_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8151617-marauders_vol_1_24_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8151617-marauders_vol_1_24_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8151617-marauders_vol_1_24_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8151617-marauders_vol_1_24_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8151617-marauders_vol_1_24_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8151617-marauders_vol_1_24_textless.jpg","image_tags":"All Images"},"isssues_disbanded_in":[],"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-936258/","id":936258,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-12-volume-12/4000-936258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917204/","id":917204,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-25/4000-917204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917203/","id":917203,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-24/4000-917203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913702/","id":913702,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-by-jonathan-hickman-omnibus-1-hc/4000-913702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-932627/","id":932627,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-14-volume-14/4000-932627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917202/","id":917202,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-23/4000-917202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913701/","id":913701,"name":"Volume 20","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-bishops-crossing-1-volume-20/4000-913701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904768/","id":904768,"name":"A New Horizon - Hellfire and Brimstone","site_detail_url":"https://comicvine.gamespot.com/marauders-annual-1-a-new-horizon-hellfire-and-brim/4000-904768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902690/","id":902690,"name":"How I Learned to Stop Worrying About Walking the Plank","site_detail_url":"https://comicvine.gamespot.com/marauders-27-how-i-learned-to-stop-worrying-about-/4000-902690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908467/","id":908467,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan-4-vol-4/4000-908467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917201/","id":917201,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-22/4000-917201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-896131/","id":896131,"name":"Many Happy Returns","site_detail_url":"https://comicvine.gamespot.com/marauders-26-many-happy-returns/4000-896131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904843/","id":904843,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-1-tpb/4000-904843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898443/","id":898443,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-the-red-carpet-collection-1-hc/4000-898443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891563/","id":891563,"name":"Night of the Comet","site_detail_url":"https://comicvine.gamespot.com/marauders-25-night-of-the-comet/4000-891563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895781/","id":895781,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-i-magneto-1-volume-8/4000-895781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903138/","id":903138,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-19/4000-903138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903137/","id":903137,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-18/4000-903137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-872876/","id":872876,"name":"The Morning After","site_detail_url":"https://comicvine.gamespot.com/marauders-22-the-morning-after/4000-872876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-861642/","id":861642,"name":"Fireworks","site_detail_url":"https://comicvine.gamespot.com/planet-size-x-men-1-fireworks/4000-861642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857597/","id":857597,"name":"You Are Cordially Invited To the Hellfire Gala; Out With the Old A Tale of Hellfire Gala Past","site_detail_url":"https://comicvine.gamespot.com/marauders-21-you-are-cordially-invited-to-the-hell/4000-857597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864577/","id":864577,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-13-volume-13/4000-864577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929100/","id":929100,"name":"X-Men 15","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-376-x-men-15/4000-929100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903129/","id":903129,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-12/4000-903129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828998/","id":828998,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-4-volume-4/4000-828998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820747/","id":820747,"name":"Consequences","site_detail_url":"https://comicvine.gamespot.com/marauders-16-consequences/4000-820747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821559/","id":821559,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-omnibus-1-volume-1/4000-821559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823577/","id":823577,"name":null,"site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-108/4000-823577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807642/","id":807642,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-8-volume-8/4000-807642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814966/","id":814966,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-9-volume-9/4000-814966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787352/","id":787352,"name":"The World","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-fantomex-1-the-world/4000-787352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799762/","id":799762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796427/","id":796427,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-7-volume-7/4000-796427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794977/","id":794977,"name":"Marauders 5","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-83-marauders-5/4000-794977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823719/","id":823719,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-5/4000-823719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823718/","id":823718,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-4/4000-823718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794976/","id":794976,"name":"Marauders 4","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-82-marauders-4/4000-794976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794975/","id":794975,"name":"Marauders 3","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-81-marauders-3/4000-794975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-750596/","id":750596,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-3/4000-750596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-748557/","id":748557,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan-1-vol-1/4000-748557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737758/","id":737758,"name":"Furious Anger","site_detail_url":"https://comicvine.gamespot.com/marauders-8-furious-anger/4000-737758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736492/","id":736492,"name":"From Emma, With Love","site_detail_url":"https://comicvine.gamespot.com/marauders-7-from-emma-with-love/4000-736492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742431/","id":742431,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-messiah-complex-1-tpb/4000-742431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740961/","id":740961,"name":"Sempre fomos","site_detail_url":"https://comicvine.gamespot.com/fabulosos-x-men-4-sempre-fomos/4000-740961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740888/","id":740888,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-3-volume-3/4000-740888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740178/","id":740178,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-2/4000-740178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739740/","id":739740,"name":"1985","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-lintegrale-3-1985/4000-739740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739613/","id":739613,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-1000-collection-1-hc/4000-739613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794974/","id":794974,"name":"Marauders 2","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-80-marauders-2/4000-794974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738008/","id":738008,"name":"Powers of X 6","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-78-powers-of-x-6/4000-738008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737987/","id":737987,"name":"Merodeadores 1","site_detail_url":"https://comicvine.gamespot.com/merodeadores-1-merodeadores-1/4000-737987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737981/","id":737981,"name":"Potencias de X 6","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-82-potencias-de-x-6/4000-737981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742650/","id":742650,"name":"Marauders 1","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-79-marauders-1/4000-742650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731519/","id":731519,"name":"The Red Bishop","site_detail_url":"https://comicvine.gamespot.com/marauders-4-the-red-bishop/4000-731519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729682/","id":729682,"name":"The Bishop In Black","site_detail_url":"https://comicvine.gamespot.com/marauders-3-the-bishop-in-black/4000-729682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728426/","id":728426,"name":"The Red Coronation","site_detail_url":"https://comicvine.gamespot.com/marauders-2-the-red-coronation/4000-728426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730353/","id":730353,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-xpowers-of-x-1-hctpb/4000-730353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723862/","id":723862,"name":"I'm On A Boat","site_detail_url":"https://comicvine.gamespot.com/marauders-1-im-on-a-boat/4000-723862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721789/","id":721789,"name":"House of X","site_detail_url":"https://comicvine.gamespot.com/powers-of-x-6-house-of-x/4000-721789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721166/","id":721166,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-kitty-pryde-and-e/4000-721166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721165/","id":721165,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-bishop-1/4000-721165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734240/","id":734240,"name":"L'ultima battaglia","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-355-lultima-battaglia/4000-734240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734239/","id":734239,"name":"Il ritorno della Regina","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-354-il-ritorno-della-regina/4000-734239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732163/","id":732163,"name":null,"site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-90/4000-732163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717540/","id":717540,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-comics-1000/4000-717540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-719460/","id":719460,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-cyclops-and-wolverine-2-volume-2/4000-719460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742925/","id":742925,"name":null,"site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial-2/4000-742925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732162/","id":732162,"name":null,"site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-89/4000-732162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714235/","id":714235,"name":null,"site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe-1/4000-714235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713087/","id":713087,"name":"We Have Always Been Part 5","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-21-we-have-always-been-part-5/4000-713087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732233/","id":732233,"name":"Emma Frost","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-76-emma-frost/4000-732233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709217/","id":709217,"name":"We Have Always Been Part 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-18-we-have-always-been-part-2/4000-709217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707533/","id":707533,"name":"We Have Always Been Part 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-17-we-have-always-been-part-1/4000-707533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707508/","id":707508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history-3/4000-707508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702479/","id":702479,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-black-1-tpb/4000-702479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697640/","id":697640,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-11-volume-11/4000-697640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742923/","id":742923,"name":null,"site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial-1/4000-742923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695672/","id":695672,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-reload-by-chris-claremont-the-end-of-history/4000-695672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740985/","id":740985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-5/4000-740985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690825/","id":690825,"name":"Hunger Is Productive; Apocalypse: Degeneration Conclusion","site_detail_url":"https://comicvine.gamespot.com/x-men-black-emma-frost-1-hunger-is-productive-apoc/4000-690825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704573/","id":704573,"name":"Império Secreto","site_detail_url":"https://comicvine.gamespot.com/x-men-23-imperio-secreto/4000-704573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690617/","id":690617,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1-vol-2/4000-690617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682508/","id":682508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-2/4000-682508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-683847/","id":683847,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-the-wedding-of-cyclops-and-phoenix-1/4000-683847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740981/","id":740981,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-2/4000-740981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677823/","id":677823,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1/4000-677823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678544/","id":678544,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga-omnibus-1-hc/4000-678544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701992/","id":701992,"name":"Academia infernal","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-4-academia-i/4000-701992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679787/","id":679787,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-x-men-artifact-edition-1-volume-8/4000-679787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704558/","id":704558,"name":"Inumanos vs X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-17-inumanos-vs-x-men/4000-704558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664932/","id":664932,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-legion-quest-1-hc/4000-664932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663219/","id":663219,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-21/4000-663219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739738/","id":739738,"name":"1982-1983","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-lintegrale-1-1982-1983/4000-739738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704556/","id":704556,"name":"Começa a Guerra","site_detail_url":"https://comicvine.gamespot.com/x-men-15-comeca-a-guerra/4000-704556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704111/","id":704111,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion-5/4000-704111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704555/","id":704555,"name":"Encurralados","site_detail_url":"https://comicvine.gamespot.com/x-men-14-encurralados/4000-704555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702909/","id":702909,"name":"Il regno della Regina Bianca (Secret Empire)","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-55-il-regno-della-regina-bianca/4000-702909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701991/","id":701991,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-3/4000-701991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654066/","id":654066,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-legion-shadow-king-rising-1-tpb/4000-654066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704554/","id":704554,"name":"Alianças profanas","site_detail_url":"https://comicvine.gamespot.com/x-men-13-aliancas-profanas/4000-704554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644520/","id":644520,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-omnibus-1-hc/4000-644520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704553/","id":704553,"name":"Adaptação","site_detail_url":"https://comicvine.gamespot.com/x-men-12-adaptacao/4000-704553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-638590/","id":638590,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cable-the-hellfire-hunt-1-tpb/4000-638590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-631075/","id":631075,"name":"VvX","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-2-vvx/4000-631075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625685/","id":625685,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-625685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610543/","id":610543,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-blue-8/4000-610543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617440/","id":617440,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-14/4000-617440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702746/","id":702746,"name":"La via del male","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-326-la-via-del-male/4000-702746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610541/","id":610541,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-superior-ivx-1-volume-1/4000-610541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611862/","id":611862,"name":"Inhumanos Vs. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-61-inhumanos-vs-patrulla-x/4000-611862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598096/","id":598096,"name":"Mort sous X","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-hors-serie-3-mort-sous-x/4000-598096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593426/","id":593426,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-gold-1/4000-593426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601135/","id":601135,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-323/4000-601135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601131/","id":601131,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-322/4000-601131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597963/","id":597963,"name":"Entre femmes","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-11-entre-femmes/4000-597963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593279/","id":593279,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-firestar-1-tpb/4000-593279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581574/","id":581574,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-18/4000-581574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625214/","id":625214,"name":"Empieza curso","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-1-empieza-cu/4000-625214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601117/","id":601117,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-321/4000-601117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597962/","id":597962,"name":"Le destin","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-10-le-destin/4000-597962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585087/","id":585087,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-epic-collection-renewal-1-volume-1/4000-585087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611858/","id":611858,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-57/4000-611858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601086/","id":601086,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-320/4000-601086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581285/","id":581285,"name":"Magnéto contre Tornade","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-9-magneto-contre-tornade/4000-581285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580758/","id":580758,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-10-volume-10/4000-580758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580743/","id":580743,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-shadows-and-light-1-tpb/4000-580743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563720/","id":563720,"name":"Do The Truffle Shuffle","site_detail_url":"https://comicvine.gamespot.com/deadpool-23-do-the-truffle-shuffle/4000-563720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611856/","id":611856,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-56/4000-611856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581284/","id":581284,"name":"Royaumes déchus","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-8-royaumes-dechus/4000-581284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578480/","id":578480,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-superior-waking-from-the-dream-1-vol/4000-578480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562597/","id":562597,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-0/4000-562597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611855/","id":611855,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-55/4000-611855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552174/","id":552174,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-14/4000-552174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550370/","id":550370,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-13/4000-550370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548588/","id":548588,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12/4000-548588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542634/","id":542634,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-542634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525031/","id":525031,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-2/4000-525031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520209/","id":520209,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/secret-wars-1-hc/4000-520209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511169/","id":511169,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-die-x-men-sonderband-6/4000-511169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499374/","id":499374,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-wars-2/4000-499374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488656/","id":488656,"name":"Doom Messiah","site_detail_url":"https://comicvine.gamespot.com/Secret%20Wars-2-Doom%20Messiah/4000-488656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703146/","id":703146,"name":"Gli Incredibili X-Men: Dispersi nel tempo","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-235-gli-incredibili-x-men-dispersi-ne/4000-703146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702318/","id":702318,"name":"I mallvagi .... X-MEN","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-39-i-mallvagi-x-men/4000-702318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490159/","id":490159,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-40th-anniversary-1-hc/4000-490159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487963/","id":487963,"name":"Axis","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-34-axis/4000-487963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478156/","id":478156,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-death-of-wolverine-1-volum/4000-478156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477105/","id":477105,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-9-volume-9/4000-477105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471326/","id":471326,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-12/4000-471326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467196/","id":467196,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-1-volume-1/4000-467196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459933/","id":459933,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-9/4000-459933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459814/","id":459814,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-59/4000-459814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456121/","id":456121,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-58/4000-456121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452796/","id":452796,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-57/4000-452796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477955/","id":477955,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-definitive-x-men-1/4000-477955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453664/","id":453664,"name":"New X-Men By Grant Morrison","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-1-new-x-men-by-grant-morrison/4000-453664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453661/","id":453661,"name":"Les origines","site_detail_url":"https://comicvine.gamespot.com/marvel-select-x-men-1-les-origines/4000-453661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453639/","id":453639,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-7/4000-453639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453060/","id":453060,"name":"Zukunft ist Vergangenheit","site_detail_url":"https://comicvine.gamespot.com/x-men-zukunft-ist-vergangenheit-1-zukunft-ist-verg/4000-453060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452409/","id":452409,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-10/4000-452409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450319/","id":450319,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-56/4000-450319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450781/","id":450781,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-2-volume-2/4000-450781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450346/","id":450346,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-9/4000-450346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447744/","id":447744,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-55/4000-447744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453293/","id":453293,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-2/4000-453293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447136/","id":447136,"name":"Vunérable","site_detail_url":"https://comicvine.gamespot.com/wolverine-9-vunerable/4000-447136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446630/","id":446630,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-by-craig-kyle-chris-yost-1-volume-1/4000-446630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447665/","id":447665,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-8/4000-447665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447616/","id":447616,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband-3/4000-447616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441326/","id":441326,"name":"Mortel","site_detail_url":"https://comicvine.gamespot.com/wolverine-7-mortel/4000-441326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449075/","id":449075,"name":"Wolverine & gli X-Men: Prima lezione","site_detail_url":"https://comicvine.gamespot.com/supereroi-il-mito-9-wolverine-gli-x-men-prima-lezi/4000-449075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444654/","id":444654,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-6/4000-444654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442260/","id":442260,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-442260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441340/","id":441340,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-3/4000-441340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438132/","id":438132,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-2/4000-438132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437073/","id":437073,"name":"X-Men: Scisma","site_detail_url":"https://comicvine.gamespot.com/supereroi-il-mito-4-x-men-scisma/4000-437073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436514/","id":436514,"name":"Patrulla-X Vs. Vengadores Oscuros: Utopía","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-1-patrulla-x-vs-vengadores-oscuros-u/4000-436514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436379/","id":436379,"name":"X-Men: A Queda dos Mutantes Vol. 3","site_detail_url":"https://comicvine.gamespot.com/x-men-a-queda-dos-mutantes-3-x-men-a-queda-dos-mut/4000-436379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610310/","id":610310,"name":"Patrulla-X 3: Vísperas de destrucción","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes-31-patrulla-x-3-visper/4000-610310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432502/","id":432502,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1980s-1-volume-1/4000-432502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433521/","id":433521,"name":"L'intégrale 1989","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men-2-l-integrale-1989/4000-433521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433288/","id":433288,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-1/4000-433288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431679/","id":431679,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-7-volume-se/4000-431679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428382/","id":428382,"name":"La Hermandad","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-la-hermandad/4000-428382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427804/","id":427804,"name":"Départ","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-4-depart/4000-427804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423685/","id":423685,"name":"The Hellfire Saga Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-35-the-hellfire-saga-part-5-of/4000-423685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421701/","id":421701,"name":"The Hellfire Saga Part Four","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-34-the-hellfire-saga-part-four/4000-421701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425797/","id":425797,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-106/4000-425797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424644/","id":424644,"name":"Joies et Déconvenues","site_detail_url":"https://comicvine.gamespot.com/wolverine-3-joies-et-deconvenues/4000-424644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444770/","id":444770,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-444770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426986/","id":426986,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-3/4000-426986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426975/","id":426975,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-17/4000-426975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426309/","id":426309,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-222/4000-426309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424818/","id":424818,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-16/4000-424818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424645/","id":424645,"name":"Le dernier chant","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-3-le-dernier-chant/4000-424645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420889/","id":420889,"name":"La Voix du Sang","site_detail_url":"https://comicvine.gamespot.com/wolverine-2-la-voix-du-sang/4000-420889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420543/","id":420543,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-47/4000-420543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423959/","id":423959,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-16/4000-423959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422605/","id":422605,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-3/4000-422605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421280/","id":421280,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-105/4000-421280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420565/","id":420565,"name":"X-Men d'hier","site_detail_url":"https://comicvine.gamespot.com/x-men-2-x-men-dhier/4000-420565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416776/","id":416776,"name":"Un Vent Nouveau","site_detail_url":"https://comicvine.gamespot.com/wolverine-1-un-vent-nouveau/4000-416776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418927/","id":418927,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband-1/4000-418927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406982/","id":406982,"name":"The Hellfire Saga Prelude","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-30-the-hellfire-saga-prelude/4000-406982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410516/","id":410516,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-2/4000-410516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409093/","id":409093,"name":"l'Homme de Fer","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-12-lhomme-de-fer/4000-409093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401472/","id":401472,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-10/4000-401472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410502/","id":410502,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-103/4000-410502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416865/","id":416865,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-13/4000-416865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409196/","id":409196,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-ghosts-1-tpb/4000-409196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401618/","id":401618,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-44/4000-401618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414101/","id":414101,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-5-volume-fi/4000-414101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402961/","id":402961,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-102/4000-402961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402289/","id":402289,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-omnibus-1-volume-1/4000-402289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401287/","id":401287,"name":"Le grand bal de la fin du monde","site_detail_url":"https://comicvine.gamespot.com/wolverine-11-le-grand-bal-de-la-fin-du-monde/4000-401287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405730/","id":405730,"name":"L'intégrale 1981","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men-1-l-integrale-1981/4000-405730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407093/","id":407093,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-13/4000-407093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397412/","id":397412,"name":null,"site_detail_url":"https://comicvine.gamespot.com/essential-x-men-43/4000-397412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399440/","id":399440,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-45/4000-399440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392467/","id":392467,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-9/4000-392467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402614/","id":402614,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-4-volume-fo/4000-402614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401368/","id":401368,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-companion-1-hc/4000-401368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394510/","id":394510,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-12/4000-394510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397744/","id":397744,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4000-397744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399175/","id":399175,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-12/4000-399175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386131/","id":386131,"name":"Requiem","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-12-requiem/4000-386131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397745/","id":397745,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-weapon-omega-1-volume-2/4000-397745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407275/","id":407275,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-5/4000-407275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401052/","id":401052,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-136/4000-401052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394501/","id":394501,"name":"L'arme secrète de Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine-10-larme-secrete-de-wolverine/4000-394501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391830/","id":391830,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men-3/4000-391830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385039/","id":385039,"name":"La Era de Apocalipsis","site_detail_url":"https://comicvine.gamespot.com/100-marvella-era-de-apocalipsis-1-la-era-de-apocal/4000-385039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385033/","id":385033,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-11/4000-385033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450468/","id":450468,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-uncanny-x-force-1/4000-450468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387064/","id":387064,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants-1-volume-one/4000-387064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376661/","id":376661,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-5/4000-376661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407092/","id":407092,"name":"Nueva Roma","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes-1-nueva-roma/4000-407092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378900/","id":378900,"name":"The Last Frankenstein","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-23-the-last-frankenstein/4000-378900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394824/","id":394824,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-42/4000-394824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391464/","id":391464,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-135/4000-391464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388035/","id":388035,"name":"Encore une tournée","site_detail_url":"https://comicvine.gamespot.com/wolverine-9-encore-une-tournee/4000-388035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377282/","id":377282,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-10/4000-377282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379660/","id":379660,"name":"Age of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-age-of-apocalypse-1-age-of-apocal/4000-379660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417597/","id":417597,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2013-02/4000-417597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387541/","id":387541,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-41/4000-387541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385544/","id":385544,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-134/4000-385544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385541/","id":385541,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-99/4000-385541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379968/","id":379968,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-comics-x-men-4/4000-379968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373573/","id":373573,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-9/4000-373573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373313/","id":373313,"name":"Big Top Hell","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-22-big-top-hell/4000-373313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372451/","id":372451,"name":"Hit the Fan","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-10-hit-the-fan/4000-372451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379554/","id":379554,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-man-dance-with-the-devil-1-tpb/4000-379554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369058/","id":369058,"name":"The Greatest Freakshow on Earth","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-21-the-greatest-freakshow-/4000-369058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387540/","id":387540,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-40/4000-387540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379428/","id":379428,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-133/4000-379428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379427/","id":379427,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-98/4000-379427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437060/","id":437060,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-276/4000-437060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367279/","id":367279,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-4/4000-367279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444732/","id":444732,"name":"Marvel Omnibus: Avengers vs X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-avengers-vs-x-men-1-marvel-omnibus-/4000-444732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369703/","id":369703,"name":"Mirroirs Abandonnés","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-6-mirroirs-abandonnes/4000-369703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364133/","id":364133,"name":"More Pencils, More Books, More Teachers' Dirty Looks","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-19-more-pencils-more-books/4000-364133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360916/","id":360916,"name":"Dance Like There's No Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-18-dance-like-theres-no-to/4000-360916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407090/","id":407090,"name":"Tercera Génesis","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes-1-tercera-genesis/4000-407090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372760/","id":372760,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-212/4000-372760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370951/","id":370951,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-131/4000-370951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356779/","id":356779,"name":"The Fires of Hell A-Glowing","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-16-the-fires-of-hell-a-glo/4000-356779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498641/","id":498641,"name":"X-Men 4: Fuego Infernal y Azufre","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-15-x-men-4-fuego-infernal-y/4000-498641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361084/","id":361084,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-the-wedding-of-cyclops-and-phoenix-1-tpb/4000-361084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361083/","id":361083,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-bishops-crossing-1-hc/4000-361083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367277/","id":367277,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-2/4000-367277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444855/","id":444855,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-444855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373091/","id":373091,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-the-x-terminated-1-tpb/4000-373091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372514/","id":372514,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-6/4000-372514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357112/","id":357112,"name":"Rien d'Impossible","site_detail_url":"https://comicvine.gamespot.com/wolverine-4-rien-dimpossible/4000-357112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357111/","id":357111,"name":"Contrats Ouvert","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-4-contrats-ouvert/4000-357111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355933/","id":355933,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-92/4000-355933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355078/","id":355078,"name":"Wolverine und die X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-1-wolverine-und-die-x-men/4000-355078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376017/","id":376017,"name":"El fin de Generación Hope","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-generacion-hope-2-el-fin-de-generacion-/4000-376017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353174/","id":353174,"name":"GoodBye Chinatown","site_detail_url":"https://comicvine.gamespot.com/wolverine-3-goodbye-chinatown/4000-353174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353106/","id":353106,"name":"El fin de Generación Hope","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-prologo-1-el-f/4000-353106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344455/","id":344455,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-4/4000-344455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387899/","id":387899,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-2-volume-tw/4000-387899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343207/","id":343207,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-139/4000-343207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352234/","id":352234,"name":"MPC","site_detail_url":"https://comicvine.gamespot.com/x-force-childs-play-1-mpc/4000-352234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354484/","id":354484,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-266/4000-354484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353173/","id":353173,"name":"Un Jour Ordinaire dans le Westchester","site_detail_url":"https://comicvine.gamespot.com/wolverine-2-un-jour-ordinaire-dans-le-westchester/4000-353173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344576/","id":344576,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-marvel-imposibles-x-force-3/4000-344576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338342/","id":338342,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-3/4000-338342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343206/","id":343206,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-138/4000-343206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417608/","id":417608,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2012-07/4000-417608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400999/","id":400999,"name":"Especie en peligro","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-especie-en-peligro/4000-400999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444852/","id":444852,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-444852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347341/","id":347341,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-3/4000-347341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343287/","id":343287,"name":"Rayon d'Espoir","site_detail_url":"https://comicvine.gamespot.com/wolverine-1-rayon-despoir/4000-343287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334448/","id":334448,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-2/4000-334448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334324/","id":334324,"name":"Back from the Dead","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-3-back-from-the-dead/4000-334324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345214/","id":345214,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-back-in-japan-1-hc-tpb/4000-345214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342227/","id":342227,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-graphic-novels-1-hc/4000-342227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331959/","id":331959,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-137/4000-331959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343254/","id":343254,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-16/4000-343254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343064/","id":343064,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-2/4000-343064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343059/","id":343059,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-207/4000-343059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343057/","id":343057,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-264/4000-343057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329214/","id":329214,"name":"One More Round","site_detail_url":"https://comicvine.gamespot.com/wolverine-304-one-more-round/4000-329214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326863/","id":326863,"name":"A Little Impossible","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-8-a-little-impossible/4000-326863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341551/","id":341551,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-7-volume-seven/4000-341551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341549/","id":341549,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation-1-volume-3/4000-341549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331718/","id":331718,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-30/4000-331718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444850/","id":444850,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-3/4000-444850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433739/","id":433739,"name":"","site_detail_url":"https://comicvine.gamespot.com/novos-x-men-planeta-x-1/4000-433739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396996/","id":396996,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-z-5-vol/4000-396996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375713/","id":375713,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-world-7/4000-375713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343253/","id":343253,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-15/4000-343253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319368/","id":319368,"name":"X","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-1-x/4000-319368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317974/","id":317974,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-cisma-4/4000-317974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336301/","id":336301,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-1-volume-on/4000-336301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329745/","id":329745,"name":"It's Coming","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-its-coming-1-its-coming/4000-329745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444849/","id":444849,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-2/4000-444849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375712/","id":375712,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-world-6/4000-375712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317972/","id":317972,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-cisma-3/4000-317972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315083/","id":315083,"name":"Mutatis Mutandis, Part One: Congratulations! It's a Brood!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-5-mutatis-mutandis-part-on/4000-315083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323419/","id":323419,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-60/4000-323419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323689/","id":323689,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4000-323689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311798/","id":311798,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-hope-15/4000-311798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321185/","id":321185,"name":"Uncanny X-Force: The Dark Angel Saga, Book Two","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-the-dark-angel-saga-book-two-1-unc/4000-321185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316047/","id":316047,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha-1-x-force-necrosha/4000-316047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316037/","id":316037,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4000-316037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446147/","id":446147,"name":"X-Men: Cisma","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition-1-x-men-cisma/4000-446147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444968/","id":444968,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-35/4000-444968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394411/","id":394411,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-8-volume-8/4000-394411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319081/","id":319081,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-122/4000-319081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307452/","id":307452,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-3/4000-307452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311494/","id":311494,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-2-volume-two/4000-311494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372506/","id":372506,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-132/4000-372506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303379/","id":303379,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-2/4000-303379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301656/","id":301656,"name":"Opens A Window","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-17-opens-a-window/4000-301656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308862/","id":308862,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-1-x-men-schism/4000-308862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297216/","id":297216,"name":"Uncanny","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-544-uncanny/4000-297216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294049/","id":294049,"name":"Schism, Part Five","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-5-schism-part-five/4000-294049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731819/","id":731819,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-16/4000-731819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307133/","id":307133,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-119/4000-307133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300935/","id":300935,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-iron-age-1-hc/4000-300935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294354/","id":294354,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-1-volume-one/4000-294354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435359/","id":435359,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-83/4000-435359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295218/","id":295218,"name":"Book 6","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-6-book-6/4000-295218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343215/","id":343215,"name":"X-Men Sonderband: Die Neue X-Force","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-die-neue-x-force-1-x-men-sonderba/4000-343215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286947/","id":286947,"name":"Schism, Part Three","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-3-schism-part-three/4000-286947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285554/","id":285554,"name":"Bad Moon Rising","site_detail_url":"https://comicvine.gamespot.com/iron-age-3-bad-moon-rising/4000-285554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293973/","id":293973,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-69/4000-293973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407086/","id":407086,"name":"El origen de Legión","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes-1-el-origen-de-leg/4000-407086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293541/","id":293541,"name":"Evolutionary War Omnibus","site_detail_url":"https://comicvine.gamespot.com/evolutionary-war-omnibus-1-evolutionary-war-omnibu/4000-293541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292134/","id":292134,"name":"The High Hand","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-the-high-hand-1-the-high-hand/4000-292134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343518/","id":343518,"name":"100% Marvel. Imposibles X-Force","site_detail_url":"https://comicvine.gamespot.com/100-marvel-imposibles-x-force-1-100-marvel-imposib/4000-343518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318880/","id":318880,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-318880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281713/","id":281713,"name":"Schism, Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-2-schism-part-two/4000-281713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278744/","id":278744,"name":"Schism, Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-1-schism-part-one/4000-278744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443587/","id":443587,"name":"X-Men: Utopia","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel-16-x-men-utopia/4000-443587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318945/","id":318945,"name":"La Malédiction des Mutants (3/5)","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-6-la-malediction-des-mutants-35/4000-318945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444961/","id":444961,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-28/4000-444961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278181/","id":278181,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/impossible-man-1-tpb/4000-278181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273267/","id":273267,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-20/4000-273267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386942/","id":386942,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-les-grandes-sagas-x-men-1-x-men/4000-386942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274410/","id":274410,"name":"Quarantine","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-quarantine-1-quarantine/4000-274410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269984/","id":269984,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics-1-tpb/4000-269984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269473/","id":269473,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants-1-hc/4000-269473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417636/","id":417636,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2011-04/4000-417636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268475/","id":268475,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-17/4000-268475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307126/","id":307126,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-112/4000-307126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299690/","id":299690,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-0/4000-299690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267764/","id":267764,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-ii-1-hctpb/4000-267764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417637/","id":417637,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2011-03/4000-417637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277119/","id":277119,"name":"X-Necrosha parte 8 di 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-191-x-necrosha-parte-8-di-9/4000-277119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264454/","id":264454,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/new-mutants-forever-1-tpb/4000-264454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253004/","id":253004,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroic-age-x-men-1/4000-253004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417638/","id":417638,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2011-02/4000-417638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435375/","id":435375,"name":"Surpreendentes X-Men: Destroçados","site_detail_url":"https://comicvine.gamespot.com/supreendentes-x-men-2-surpreendentes-x-men-destroc/4000-435375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307124/","id":307124,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-110/4000-307124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300874/","id":300874,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-69/4000-300874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250624/","id":250624,"name":"Quarantine: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-531-quarantine-part-2/4000-250624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260054/","id":260054,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4000-260054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263122/","id":263122,"name":"The Legacy of Charles Xavier!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-14-the-legacy-of-charles-xavier/4000-263122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385163/","id":385163,"name":"Признание","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-200-wikiissue/4000-385163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300854/","id":300854,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-68/4000-300854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291788/","id":291788,"name":"X-Men: Origins","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-90-x-men-origins/4000-291788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266651/","id":266651,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-7-volume-7/4000-266651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266643/","id":266643,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades-1-hc/4000-266643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249230/","id":249230,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/excalibur-visionaries-warren-ellis-3-volume-three/4000-249230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299710/","id":299710,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-7/4000-299710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249874/","id":249874,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-campus-1-tpb/4000-249874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385863/","id":385863,"name":"Разрыв","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-3-wikiissue/4000-385863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277089/","id":277089,"name":"X-Necrosha parte 2 di 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-188-x-necrosha-parte-2-di-9/4000-277089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454202/","id":454202,"name":"Necrosha 5","site_detail_url":"https://comicvine.gamespot.com/x-force-25-necrosha-5/4000-454202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232620/","id":232620,"name":"Falling; Brace For Impact; The First Day of the Rest of Your Life","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-road-to-hell-1-falling-brace-for-imp/4000-232620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454195/","id":454195,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-24/4000-454195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227831/","id":227831,"name":"The Fall of Nova Roma part 1 of 5: Shadows in the Night!","site_detail_url":"https://comicvine.gamespot.com/new-mutants-forever-1-the-fall-of-nova-roma-part-1/4000-227831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407084/","id":407084,"name":"Hijos de las Sombras","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes-1-hijos-de-las-som/4000-407084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307148/","id":307148,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-106/4000-307148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-612206/","id":612206,"name":"La Patrulla-X: La saga de Fénix Oscura","site_detail_url":"https://comicvine.gamespot.com/coleccionable-marvel-heroes-4-la-patrulla-x-la-sag/4000-612206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454194/","id":454194,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-23/4000-454194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226185/","id":226185,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-force-handbook-1/4000-226185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251495/","id":251495,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-10/4000-251495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385156/","id":385156,"name":"Икс-Клуб. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-193--2/4000-385156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270630/","id":270630,"name":"Dark Phoenix Saga","site_detail_url":"https://comicvine.gamespot.com/x-men-dark-phoenix-saga-complete-collection-1-dark/4000-270630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235152/","id":235152,"name":"Book 5","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-5-book-5/4000-235152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221891/","id":221891,"name":"X-Men a Go-Go!","site_detail_url":"https://comicvine.gamespot.com/x-men-curse-of-the-mutants-saga-1-x-men-a-go-go/4000-221891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385155/","id":385155,"name":"Икс-Клуб. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-192--1/4000-385155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251568/","id":251568,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-9/4000-251568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232925/","id":232925,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-we-are-the-x-men-1-tpb/4000-232925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222457/","id":222457,"name":"Iron Widow; Glitch","site_detail_url":"https://comicvine.gamespot.com/iron-man-kiss-and-kill-1-iron-widow-glitch/4000-222457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386860/","id":386860,"name":"Paraíso perdido","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-treme-x-men-2-paraiso-perdido/4000-386860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216366/","id":216366,"name":"Will & Love","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-emma-frost-1-will-love/4000-216366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385862/","id":385862,"name":"Побег ожившего компьютера","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-2-wikiissue/4000-385862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444949/","id":444949,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-16/4000-444949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307145/","id":307145,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-103/4000-307145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290174/","id":290174,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-241/4000-290174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249037/","id":249037,"name":"Death To The Skrulls!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6-death-to-the-skrulls/4000-249037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222059/","id":222059,"name":"Chapter One: Greenwich Mean Time; Chapter Two: Cyberno","site_detail_url":"https://comicvine.gamespot.com/x-campus-1-chapter-one-greenwich-mean-time-chapter/4000-222059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299444/","id":299444,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-20/4000-299444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292837/","id":292837,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-54/4000-292837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221765/","id":221765,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-1-x-necrosha/4000-221765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300389/","id":300389,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-113/4000-300389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417710/","id":417710,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-06/4000-417710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306222/","id":306222,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-161/4000-306222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249035/","id":249035,"name":"Attack of the Skrulls!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4-attack-of-the-skrulls/4000-249035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454032/","id":454032,"name":"Invincible","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-2-invincible/4000-454032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212988/","id":212988,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-warriors-classic-2-volume-2/4000-212988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198343/","id":198343,"name":"Necrosha: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/x-force-24-necrosha-chapter-5/4000-198343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292834/","id":292834,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-51/4000-292834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306219/","id":306219,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-158/4000-306219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247806/","id":247806,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-prelude-to-onslaught-1-tpb/4000-247806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300385/","id":300385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-109/4000-300385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417734/","id":417734,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-02/4000-417734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444944/","id":444944,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-444944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307140/","id":307140,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-98/4000-307140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186683/","id":186683,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-the-gathering-1/4000-186683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185752/","id":185752,"name":"Undeadpool","site_detail_url":"https://comicvine.gamespot.com/x-force-annual-1-undeadpool/4000-185752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291635/","id":291635,"name":"Desgarrada","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-3-desgarrada/4000-291635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192682/","id":192682,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre-1-hc/4000-192682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191688/","id":191688,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/siege-prelude-1-tpb/4000-191688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300382/","id":300382,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-106/4000-300382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444941/","id":444941,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-444941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306218/","id":306218,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-154/4000-306218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300034/","id":300034,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-95/4000-300034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298957/","id":298957,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-60/4000-298957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290130/","id":290130,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-233/4000-290130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172433/","id":172433,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-the-confession-1-one-shot/4000-172433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292829/","id":292829,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-46/4000-292829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807583/","id":807583,"name":null,"site_detail_url":"https://comicvine.gamespot.com/twisted-toyfare-theatre-10/4000-807583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444940/","id":444940,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-7/4000-444940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437021/","id":437021,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-238/4000-437021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437020/","id":437020,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-237/4000-437020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300033/","id":300033,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-94/4000-300033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298956/","id":298956,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-59/4000-298956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178421/","id":178421,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus-1-hc/4000-178421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434080/","id":434080,"name":"X-Men: Rivolta Mutante","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-4-x-men-rivolta-mutante/4000-434080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433928/","id":433928,"name":"X-Men: Messiah Complex","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-25-x-men-messiah-complex/4000-433928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306216/","id":306216,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-152/4000-306216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300458/","id":300458,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-45/4000-300458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300032/","id":300032,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-93/4000-300032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171720/","id":171720,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-classic-1-volume-1/4000-171720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437019/","id":437019,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-236/4000-437019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402922/","id":402922,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-3/4000-402922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306215/","id":306215,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-151/4000-306215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300457/","id":300457,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-44/4000-300457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201641/","id":201641,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-4-volume-4/4000-201641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169585/","id":169585,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-misfits-1-vol-1/4000-169585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161867/","id":161867,"name":"The Origins of the Species","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-512-the-origins-of-the-species/4000-161867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444937/","id":444937,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-4/4000-444937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402921/","id":402921,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-2/4000-402921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300030/","id":300030,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-91/4000-300030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284028/","id":284028,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-50/4000-284028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264422/","id":264422,"name":"The Secret of Emma Frost!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-179-the-secret-of-emma-frost/4000-264422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199541/","id":199541,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-3-volume-3/4000-199541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176169/","id":176169,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn-1-uncanny-x-men-lovelorn/4000-176169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417743/","id":417743,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2009-04/4000-417743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444936/","id":444936,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-3/4000-444936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306213/","id":306213,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-149/4000-306213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300029/","id":300029,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-90/4000-300029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290089/","id":290089,"name":"Secret Ivasion","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-228-secret-ivasion/4000-290089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277057/","id":277057,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-170/4000-277057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264463/","id":264463,"name":"Clash of the Living Legends!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-178-clash-of-the-living-legends/4000-264463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156209/","id":156209,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-cabal-1/4000-156209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163037/","id":163037,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-9-volume-9/4000-163037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264305/","id":264305,"name":"Torn!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-177-torn/4000-264305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306212/","id":306212,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-148/4000-306212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300454/","id":300454,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-41/4000-300454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300028/","id":300028,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-89/4000-300028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277056/","id":277056,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-169/4000-277056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451669/","id":451669,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-156/4000-451669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290351/","id":290351,"name":"","site_detail_url":"https://comicvine.gamespot.com/jovenes-x-men-2/4000-290351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300375/","id":300375,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-99/4000-300375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306211/","id":306211,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-147/4000-306211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289905/","id":289905,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-226/4000-289905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277055/","id":277055,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-168/4000-277055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411035/","id":411035,"name":"Erfenis Deel 2 & Regressie","site_detail_url":"https://comicvine.gamespot.com/x-mannen-317-erfenis-deel-2-regressie/4000-411035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300374/","id":300374,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-98/4000-300374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306210/","id":306210,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-146/4000-306210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185339/","id":185339,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-sins-of-the-father-1-hctpb/4000-185339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150498/","id":150498,"name":"White Queen, Dark Reign","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual-2-white-queen-dark-reign/4000-150498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411036/","id":411036,"name":"Erfenis Deel 1","site_detail_url":"https://comicvine.gamespot.com/x-mannen-316-erfenis-deel-1/4000-411036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306209/","id":306209,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-145/4000-306209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300451/","id":300451,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-38/4000-300451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289900/","id":289900,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-224/4000-289900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411037/","id":411037,"name":"Van Genesis Tot Openbaringen","site_detail_url":"https://comicvine.gamespot.com/x-mannen-315-van-genesis-tot-openbaringen/4000-411037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300450/","id":300450,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-37/4000-300450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291234/","id":291234,"name":"Los Nuevos Exiliados","site_detail_url":"https://comicvine.gamespot.com/los-exiliados-17-los-nuevos-exiliados/4000-291234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166689/","id":166689,"name":"Original Sin","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-original-sin-1-original-sin/4000-166689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143160/","id":143160,"name":"Original Sin: Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-30-original-sin-conclusion/4000-143160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142503/","id":142503,"name":"Original Sin, Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-218-original-sin-part-4/4000-142503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181914/","id":181914,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/young-x-men-final-genesis-1-volume-1/4000-181914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140141/","id":140141,"name":"Original Sin, Part I of V","site_detail_url":"https://comicvine.gamespot.com/x-men-original-sin-1-original-sin-part-i-of-v/4000-140141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307106/","id":307106,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-84/4000-307106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141684/","id":141684,"name":"Original Sin, Part III of V","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-29-original-sin-part-iii-of-v/4000-141684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140847/","id":140847,"name":"Original Sin, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-217-original-sin-part-2/4000-140847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454031/","id":454031,"name":"Surdoués","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-1-surdoues/4000-454031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183107/","id":183107,"name":"X-Men: Messiah CompleX","site_detail_url":"https://comicvine.gamespot.com/x-men-messiah-complex-1-x-men-messiah-complex/4000-183107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151428/","id":151428,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-151428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136584/","id":136584,"name":"Walkthrough, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-215-walkthrough-part-1/4000-136584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136066/","id":136066,"name":"Fall of the Mutants","site_detail_url":"https://comicvine.gamespot.com/young-x-men-5-fall-of-the-mutants/4000-136066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203157/","id":203157,"name":"X-Campus","site_detail_url":"https://comicvine.gamespot.com/x-campus-1-x-campus/4000-203157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134100/","id":134100,"name":"Sins Of The Father, Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-214-sins-of-the-father-part-4/4000-134100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133021/","id":133021,"name":"Extinction Agenda","site_detail_url":"https://comicvine.gamespot.com/young-x-men-4-extinction-agenda/4000-133021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451663/","id":451663,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-150/4000-451663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418047/","id":418047,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2008-04/4000-418047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435374/","id":435374,"name":"Supreendentes X-Men: Edição Especial","site_detail_url":"https://comicvine.gamespot.com/supreendentes-x-men-1-supreendentes-x-men-edicao-e/4000-435374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185340/","id":185340,"name":"Divided He Stands","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-divided-he-stands-1-divided-he-stands/4000-185340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131325/","id":131325,"name":"Life Death","site_detail_url":"https://comicvine.gamespot.com/young-x-men-3-life-death/4000-131325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385094/","id":385094,"name":"Разрыв. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-141-6/4000-385094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385093/","id":385093,"name":"Разрыв. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-140-5/4000-385093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300018/","id":300018,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-79/4000-300018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130246/","id":130246,"name":"Sins Of The Father, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-211-sins-of-the-father-part-1/4000-130246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300365/","id":300365,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-89/4000-300365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385092/","id":385092,"name":"Разрыв. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-139-4/4000-385092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385091/","id":385091,"name":"Разрыв. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-138-3/4000-385091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128965/","id":128965,"name":"From Genesis To Revelations, Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-210-from-genesis-to-revelations-part-/4000-128965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162956/","id":162956,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-2-volume-2/4000-162956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385090/","id":385090,"name":"Разрыв. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-137-2/4000-385090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385089/","id":385089,"name":"Разрыв. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-136-1/4000-385089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289865/","id":289865,"name":"Specie in Extinzione","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-215-specie-in-extinzione/4000-289865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285638/","id":285638,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-24/4000-285638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154118/","id":154118,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-3-volume-three/4000-154118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448626/","id":448626,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-18/4000-448626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300172/","id":300172,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-135/4000-300172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399459/","id":399459,"name":"ZERRISSEN","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks-3-zerrissen/4000-399459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448625/","id":448625,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-17/4000-448625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448624/","id":448624,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-16/4000-448624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411043/","id":411043,"name":"Het Verbond","site_detail_url":"https://comicvine.gamespot.com/x-mannen-309-het-verbond/4000-411043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448623/","id":448623,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-15/4000-448623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119336/","id":119336,"name":"Sentinels Epilogue","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-88-sentinels-epilogue/4000-119336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411054/","id":411054,"name":"Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/x-mannen-300-deadly-genesis/4000-411054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191319/","id":191319,"name":"Volume 4: Cross Time Caper, Book Two","site_detail_url":"https://comicvine.gamespot.com/excalibur-classic-4-volume-4-cross-time-caper-book/4000-191319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448622/","id":448622,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-14/4000-448622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285633/","id":285633,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-19/4000-285633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285372/","id":285372,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-5/4000-285372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448621/","id":448621,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-13/4000-448621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448620/","id":448620,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-12/4000-448620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152752/","id":152752,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-dazzler-1-volume-1/4000-152752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285631/","id":285631,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-17/4000-285631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285630/","id":285630,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-16/4000-285630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110657/","id":110657,"name":"X-Men: Endangered Species, Prologue","site_detail_url":"https://comicvine.gamespot.com/x-men-endangered-species-1-x-men-endangered-specie/4000-110657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285629/","id":285629,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-15/4000-285629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300538/","id":300538,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-67/4000-300538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285628/","id":285628,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-14/4000-285628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300353/","id":300353,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-77/4000-300353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264951/","id":264951,"name":"Chasing Hellfire!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-152-chasing-hellfire/4000-264951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300536/","id":300536,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-65/4000-300536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284098/","id":284098,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1/4000-284098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240203/","id":240203,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/exiles-the-new-exiles-1-volume-14/4000-240203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299667/","id":299667,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-genesis-mortal-5/4000-299667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416855/","id":416855,"name":"Feuer Und Schwefel","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-4-feuer-und-schwefel/4000-416855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284003/","id":284003,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-22/4000-284003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275912/","id":275912,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-143/4000-275912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285624/","id":285624,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-10/4000-285624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186274/","id":186274,"name":"Torn","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-torn-1-torn/4000-186274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106385/","id":106385,"name":"Wallflowers","site_detail_url":"https://comicvine.gamespot.com/exiles-89-wallflowers/4000-106385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286118/","id":286118,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men-27/4000-286118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176289/","id":176289,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-1-tpbhc/4000-176289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284001/","id":284001,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-20/4000-284001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106130/","id":106130,"name":"Torn, Part 6","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-18-torn-part-6/4000-106130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285621/","id":285621,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-7/4000-285621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433767/","id":433767,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-i-personaggi-e-il-loro-universo-1/4000-433767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106752/","id":106752,"name":"Torn, Part 5","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-17-torn-part-5/4000-106752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285620/","id":285620,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-6/4000-285620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122587/","id":122587,"name":"Restless Souls","site_detail_url":"https://comicvine.gamespot.com/x-men-fairy-tales-4-restless-souls/4000-122587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411411/","id":411411,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-290/4000-411411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220331/","id":220331,"name":"The Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-marvel-encyclopedia-the-definitive-guide-to-th/4000-220331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106751/","id":106751,"name":"Torn, Part 4","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-16-torn-part-4/4000-106751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454023/","id":454023,"name":"Planète X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-3-planete-x/4000-454023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451652/","id":451652,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-139/4000-451652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418117/","id":418117,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2006-05/4000-418117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138254/","id":138254,"name":"X-Men: The Characters and Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1-x-men-th/4000-138254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285618/","id":285618,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-4/4000-285618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284097/","id":284097,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-12/4000-284097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220985/","id":220985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1/4000-220985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399458/","id":399458,"name":"GEFÄHRLICH","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks-2-gefahrlich/4000-399458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291761/","id":291761,"name":"X-Men: Tödliches Erwachen","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-63-x-men-todliches-erwachen/4000-291761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106750/","id":106750,"name":"Torn, Part 3","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-15-torn-part-3/4000-106750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291634/","id":291634,"name":"Peligroso","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-2-peligroso/4000-291634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286100/","id":286100,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men-9/4000-286100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384763/","id":384763,"name":"Страшное. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-91-6/4000-384763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106678/","id":106678,"name":"Torn, Part 2","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-14-torn-part-2/4000-106678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285615/","id":285615,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-1/4000-285615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167686/","id":167686,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-1-volume-1/4000-167686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153489/","id":153489,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-firestar-1-tpb/4000-153489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106024/","id":106024,"name":"Part 5; What Emma Doesn't Know","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis-5-part-5-what-emma-doesnt-kno/4000-106024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433744/","id":433744,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-enzyklopadie-1/4000-433744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433743/","id":433743,"name":"Enciclopedia Marvel : X-Men","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-4-enciclopedia-marvel-x-men/4000-433743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433742/","id":433742,"name":"","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-x-men-1/4000-433742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433741/","id":433741,"name":"","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-x-men-1/4000-433741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283993/","id":283993,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-12/4000-283993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264985/","id":264985,"name":"Storm Battles The White Queen!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-125-storm-battles-the-white-queen/4000-264985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110573/","id":110573,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299991/","id":299991,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-52/4000-299991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153497/","id":153497,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-1-volume-1/4000-153497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151195/","id":151195,"name":"Whedon & Lark","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-joss-whedon-michael-lark-1-whedon/4000-151195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106677/","id":106677,"name":"Torn, Part 1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-13-torn-part-1/4000-106677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292785/","id":292785,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-3/4000-292785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275800/","id":275800,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-131/4000-275800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292784/","id":292784,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-2/4000-292784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187184/","id":187184,"name":"1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-saga-1-1/4000-187184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299988/","id":299988,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-49/4000-299988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265965/","id":265965,"name":"X-Men 2","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-7-x-men-2/4000-265965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264963/","id":264963,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-133/4000-264963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185343/","id":185343,"name":"The Dark Phoenix Saga","site_detail_url":"https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga-1-the-dark-phoenix-sag/4000-185343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292782/","id":292782,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-117/4000-292782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300336/","id":300336,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-60/4000-300336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384662/","id":384662,"name":"Что, если бы Чарль Хавьер и Магнето вместе создали \"Людей Икс\"? Восхождение","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-79-wikiissue/4000-384662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300146/","id":300146,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-106/4000-300146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186272/","id":186272,"name":"Dangerous","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-dangerous-1-dangerous/4000-186272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300334/","id":300334,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-58/4000-300334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288890/","id":288890,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-184/4000-288890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127639/","id":127639,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6-volume-6/4000-127639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300333/","id":300333,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-57/4000-300333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288889/","id":288889,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-183/4000-288889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451645/","id":451645,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-132/4000-451645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411398/","id":411398,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-277/4000-411398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418249/","id":418249,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-04/4000-418249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300143/","id":300143,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-103/4000-300143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106676/","id":106676,"name":"Dangerous, Part 6","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-12-dangerous-part-6/4000-106676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411397/","id":411397,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-276/4000-411397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300331/","id":300331,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-55/4000-300331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451644/","id":451644,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-131/4000-451644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411396/","id":411396,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-275/4000-411396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418255/","id":418255,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-03/4000-418255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418256/","id":418256,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-02/4000-418256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281053/","id":281053,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-179/4000-281053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451643/","id":451643,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-130/4000-451643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255729/","id":255729,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-why-not-1-tpb/4000-255729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411393/","id":411393,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-272/4000-411393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99475/","id":99475,"name":"Chasing Hellfire, Part 3: Cardinal Law","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-454-chasing-hellfire-part-3-card/4000-99475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165000/","id":165000,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-magneto-had-formed-the-x-men-with-professo/4000-165000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418257/","id":418257,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-01/4000-418257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97419/","id":97419,"name":"Chasing Hellfire, Part 2: Cardinal Betrayal","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-453-chasing-hellfire-part-2-card/4000-97419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451642/","id":451642,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-129/4000-451642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106697/","id":106697,"name":null,"site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4000-106697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106691/","id":106691,"name":null,"site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-200/4000-106691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233671/","id":233671,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-5-volume-5/4000-233671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167043/","id":167043,"name":"The Cruelest Cut","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-new-age-2-the-cruelest-cut/4000-167043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96812/","id":96812,"name":"Chasing Hellfire, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-452-chasing-hellfire-part-1/4000-96812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187206/","id":187206,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-dreams-end-1-tpb/4000-187206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93555/","id":93555,"name":"Guess Who's Back In Town?, Part 2: To Slay A Queen","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-449-guess-whos-back-in-town-part/4000-93555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299973/","id":299973,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-34/4000-299973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233668/","id":233668,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-4-volume-4/4000-233668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265036/","id":265036,"name":"Shhhh...","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-116-shhhh/4000-265036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300320/","id":300320,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-44/4000-300320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265038/","id":265038,"name":"Getting Even!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-115-getting-even/4000-265038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317386/","id":317386,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-100/4000-317386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265039/","id":265039,"name":"When Rogue Breaks Out... Someone's Gonna Get Hurt!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-114-when-rogue-breaks-out-someones/4000-265039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127437/","id":127437,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-5-volume-5/4000-127437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451639/","id":451639,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-126/4000-451639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418278/","id":418278,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2004-04/4000-418278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313051/","id":313051,"name":"X-Men : Los Chicas son Guerreras","site_detail_url":"https://comicvine.gamespot.com/x-men-los-chicas-son-guerreras-1-x-men-los-chicas-/4000-313051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306186/","id":306186,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-89/4000-306186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300502/","id":300502,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-29/4000-300502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281007/","id":281007,"name":"Nuova Serie n.43 : Le origini di Nightcrawler","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-167-nuova-serie-n43-le-origi/4000-281007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298350/","id":298350,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-13/4000-298350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298349/","id":298349,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-12/4000-298349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300314/","id":300314,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-38/4000-300314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312768/","id":312768,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-21/4000-312768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230117/","id":230117,"name":"Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/x-men-days-of-future-past-1-days-of-future-past/4000-230117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398371/","id":398371,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-15/4000-398371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742156/","id":742156,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-13/4000-742156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448758/","id":448758,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-128/4000-448758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275597/","id":275597,"name":"X-Treme X-Men 21","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-104-x-treme-x-men-21/4000-275597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190361/","id":190361,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-1-volume-1/4000-190361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384529/","id":384529,"name":"Геенна огненная. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-26-5/4000-384529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448750/","id":448750,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-121/4000-448750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384528/","id":384528,"name":"Геенна огненная. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-25-4/4000-384528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114457/","id":114457,"name":"Assault on Weapon Plus, Part 1: Brimstone & Whiskey","site_detail_url":"https://comicvine.gamespot.com/new-x-men-142-assault-on-weapon-plus-part-1-brimst/4000-114457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186549/","id":186549,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-schism-1-tpb/4000-186549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139308/","id":139308,"name":"Shima (Zone of Death)","site_detail_url":"https://comicvine.gamespot.com/x-men-ronin-5-shima-zone-of-death/4000-139308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139307/","id":139307,"name":"Kakuage (Promotion)","site_detail_url":"https://comicvine.gamespot.com/x-men-ronin-4-kakuage-promotion/4000-139307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139306/","id":139306,"name":"Hell","site_detail_url":"https://comicvine.gamespot.com/x-men-ronin-3-hell/4000-139306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742396/","id":742396,"name":"Le fiamme dell'Inferno 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-13-le-fiamme-dellinferno-3/4000-742396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300491/","id":300491,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-18/4000-300491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114335/","id":114335,"name":"Shattered","site_detail_url":"https://comicvine.gamespot.com/new-x-men-139-shattered/4000-114335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222693/","id":222693,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-destiny-1-volume-1/4000-222693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139305/","id":139305,"name":"Bunraku (The Puppet Show)","site_detail_url":"https://comicvine.gamespot.com/x-men-ronin-2-bunraku-the-puppet-show/4000-139305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135699/","id":135699,"name":"Hajime No Ippo (The First Step)","site_detail_url":"https://comicvine.gamespot.com/x-men-ronin-1-hajime-no-ippo-the-first-step/4000-135699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300490/","id":300490,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-17/4000-300490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300489/","id":300489,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-16/4000-300489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106125/","id":106125,"name":"Schism, Part 2: Broken Faith","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-21-schism-part-2-broken-faith/4000-106125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110572/","id":110572,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107656/","id":107656,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-2-x-men/4000-107656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300303/","id":300303,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-27/4000-300303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300302/","id":300302,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-26/4000-300302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300488/","id":300488,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-15/4000-300488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312780/","id":312780,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-9/4000-312780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265055/","id":265055,"name":"When Mutants Clash!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-98-when-mutants-clash/4000-265055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265050/","id":265050,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-103/4000-265050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105483/","id":105483,"name":"Hellfire and Brimstone: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-25-hellfire-and-brimstone-part-5/4000-105483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105482/","id":105482,"name":"Hellfire and Brimstone: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-24-hellfire-and-brimstone-part-4/4000-105482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312781/","id":312781,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-8/4000-312781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275358/","id":275358,"name":"X-Treme X-Men 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-92-x-treme-x-men-9/4000-275358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105480/","id":105480,"name":"Hellfire and Brimstone: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-23-hellfire-and-brimstone-part-3/4000-105480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312782/","id":312782,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-7/4000-312782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275290/","id":275290,"name":"X-Treme X-Men 8","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-91-x-treme-x-men-8/4000-275290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312783/","id":312783,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-6/4000-312783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275284/","id":275284,"name":"X-Treme X-Men 7","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-90-x-treme-x-men-7/4000-275284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300482/","id":300482,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-9/4000-300482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451621/","id":451621,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-108/4000-451621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418734/","id":418734,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2002-04/4000-418734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312786/","id":312786,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-3/4000-312786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275275/","id":275275,"name":"X-Treme X-Men 3","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-86-x-treme-x-men-3/4000-275275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299943/","id":299943,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-4/4000-299943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76565/","id":76565,"name":"Face the Music!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-9-face-the-music/4000-76565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105920/","id":105920,"name":"Boomerang!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-8-boomerang/4000-105920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300289/","id":300289,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-13/4000-300289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300114/","id":300114,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-60/4000-300114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76564/","id":76564,"name":"Getting Even!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-7-getting-even/4000-76564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309320/","id":309320,"name":"","site_detail_url":"https://comicvine.gamespot.com/super-herois-premium-x-men-17/4000-309320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76563/","id":76563,"name":"Paradise Lost!","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-6-paradise-lost/4000-76563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358227/","id":358227,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-revolution-7/4000-358227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313994/","id":313994,"name":"El Fin del Sueño","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-67-el-fin-del-sueno/4000-313994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311250/","id":311250,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante-17/4000-311250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201507/","id":201507,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-vignettes-1-volume-one/4000-201507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76560/","id":76560,"name":"Hell To Pay","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-3-hell-to-pay/4000-76560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309316/","id":309316,"name":"","site_detail_url":"https://comicvine.gamespot.com/super-herois-premium-x-men-13/4000-309316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280479/","id":280479,"name":"La fine del sogno 1 di 3","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-134-la-fine-del-sogno-1-di-3/4000-280479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316836/","id":316836,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-64/4000-316836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309315/","id":309315,"name":"","site_detail_url":"https://comicvine.gamespot.com/super-herois-premium-x-men-12/4000-309315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448685/","id":448685,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-61/4000-448685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275185/","id":275185,"name":"X-Men Revolution 5","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-72-x-men-revolution-5/4000-275185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229409/","id":229409,"name":"Van Goth Los","site_detail_url":"https://comicvine.gamespot.com/x-mannen-225-van-goth-los/4000-229409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280318/","id":280318,"name":"Nuova Serie n.5","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-129-nuova-serie-n-5/4000-280318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448677/","id":448677,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-54/4000-448677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300103/","id":300103,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-49/4000-300103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415131/","id":415131,"name":"Het einde van de droom, hoofdstuk 1: Het verleden is nog maar het begin!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-44-het-einde-van-de-droom-hoofdst/4000-415131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311241/","id":311241,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante-9/4000-311241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65166/","id":65166,"name":"Dream’s End, Part 1: The Past is but Prologue!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-388-dreams-end-part-1-the-past-i/4000-65166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313061/","id":313061,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men-1-wildcats-x-men/4000-313061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275176/","id":275176,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-67-x-men-universe/4000-275176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83129/","id":83129,"name":"Shockwave - Part 3 Of 4","site_detail_url":"https://comicvine.gamespot.com/generation-x-69-shockwave-part-3-of-4/4000-83129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110559/","id":110559,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-ultimate-/4000-110559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65803/","id":65803,"name":"Painted Ladies","site_detail_url":"https://comicvine.gamespot.com/x-men-104-painted-ladies/4000-65803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311233/","id":311233,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante-4/4000-311233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275153/","id":275153,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-63/4000-275153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453958/","id":453958,"name":"Les leçons de la vie","site_detail_url":"https://comicvine.gamespot.com/100-marvel-3-les-lecons-de-la-vie/4000-453958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269227/","id":269227,"name":"A Sinister Thread / Thieves in The Night / First Blood","site_detail_url":"https://comicvine.gamespot.com/mutant-x-annual-2000-1-a-sinister-thread-thieves-i/4000-269227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395594/","id":395594,"name":"Juegos de traición y muerte. Parte 1 de 3","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-33-juegos-de-traicion-y-muerte-parte/4000-395594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135748/","id":135748,"name":"Also sprach Sebastian","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hellfire-club-4-also-sprach-sebastian/4000-135748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65817/","id":65817,"name":"A New Day Yesterday","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-7-a-new-day-yesterday/4000-65817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325024/","id":325024,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-19/4000-325024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135747/","id":135747,"name":"For want of a soul","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hellfire-club-3-for-want-of-a-soul/4000-135747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83126/","id":83126,"name":"Christmas Fear: Part Two","site_detail_url":"https://comicvine.gamespot.com/generation-x-61-christmas-fear-part-two/4000-83126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65816/","id":65816,"name":"The Kith Trilogy, Part 3 - The Battle Of Evermore","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-6-the-kith-trilogy-part-3-th/4000-65816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135746/","id":135746,"name":"Toll the bell liberty","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hellfire-club-2-toll-the-bell-liberty/4000-135746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103840/","id":103840,"name":"The Harder They Fall","site_detail_url":"https://comicvine.gamespot.com/x-51-7-the-harder-they-fall/4000-103840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46258/","id":46258,"name":"The Kith Trilogy, Part 2 - In The Hall Of The Mountain King","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-5-the-kith-trilogy-part-2-in/4000-46258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135742/","id":135742,"name":"Witchhunt","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hellfire-club-1-witchhunt/4000-135742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46175/","id":46175,"name":"The Ripple Effect","site_detail_url":"https://comicvine.gamespot.com/mutant-x-15-the-ripple-effect/4000-46175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394300/","id":394300,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-132/4000-394300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-83121/","id":83121,"name":"Sins of The Past Part Two: Heal Thyself","site_detail_url":"https://comicvine.gamespot.com/generation-x-56-sins-of-the-past-part-two-heal-thy/4000-83121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394298/","id":394298,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-131/4000-394298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451603/","id":451603,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-90/4000-451603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394297/","id":394297,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-130/4000-394297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153154/","id":153154,"name":"A Mere Technicality","site_detail_url":"https://comicvine.gamespot.com/x-51-0-a-mere-technicality/4000-153154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393980/","id":393980,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-129/4000-393980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111017/","id":111017,"name":"The Keys to the Kingdom","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1999-1-the-keys-to-the-kingdom/4000-111017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436863/","id":436863,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-110/4000-436863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436862/","id":436862,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-109/4000-436862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-393973/","id":393973,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-124/4000-393973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436861/","id":436861,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-108/4000-436861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300078/","id":300078,"name":"La nouvelle se propage","site_detail_url":"https://comicvine.gamespot.com/x-men-24-la-nouvelle-se-propage/4000-300078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252098/","id":252098,"name":"A New Tale From Wolverine's Past! Shadow Society!","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-38-a-new-tale-from-wolverines-/4000-252098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252090/","id":252090,"name":"Wolverine... The Leader Of Alpha Flight?","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-30-wolverine-the-leader-of-alp/4000-252090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385741/","id":385741,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mix-22/4000-385741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309234/","id":309234,"name":"","site_detail_url":"https://comicvine.gamespot.com/fator-x-22/4000-309234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300077/","id":300077,"name":"Flashback","site_detail_url":"https://comicvine.gamespot.com/x-men-23-flashback/4000-300077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238691/","id":238691,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men-1-wildcats-x-men/4000-238691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309233/","id":309233,"name":"","site_detail_url":"https://comicvine.gamespot.com/fator-x-21/4000-309233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435944/","id":435944,"name":"Excalibur","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel-61-excalibur/4000-435944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325038/","id":325038,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-10/4000-325038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300074/","id":300074,"name":"Plus près des Flammes","site_detail_url":"https://comicvine.gamespot.com/x-men-20-plus-pres-des-flammes/4000-300074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453765/","id":453765,"name":"","site_detail_url":"https://comicvine.gamespot.com/logan-sociedade-das-sombras-1/4000-453765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118641/","id":118641,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wizard-presents-cerebros-guide-to-the-x-men-1/4000-118641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140965/","id":140965,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-3-volume-3/4000-140965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381776/","id":381776,"name":"","site_detail_url":"https://comicvine.gamespot.com/wiz-32/4000-381776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300071/","id":300071,"name":"La douleur d'un fils","site_detail_url":"https://comicvine.gamespot.com/x-men-17-la-douleur-dun-fils/4000-300071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436853/","id":436853,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-100/4000-436853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300070/","id":300070,"name":"Frères ennemis","site_detail_url":"https://comicvine.gamespot.com/x-men-16-freres-ennemis/4000-300070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65634/","id":65634,"name":"The Hellfire Hunt, Part 6: Beautiful Friend","site_detail_url":"https://comicvine.gamespot.com/cable-53-the-hellfire-hunt-part-6-beautiful-friend/4000-65634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311157/","id":311157,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-x-25/4000-311157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300069/","id":300069,"name":"Passé recomposé","site_detail_url":"https://comicvine.gamespot.com/x-men-15-passe-recompose/4000-300069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135790/","id":135790,"name":"The Hellfire Hunt, Part 5: Beyond Belief","site_detail_url":"https://comicvine.gamespot.com/cable-52-the-hellfire-hunt-part-5-beyond-belief/4000-135790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65773/","id":65773,"name":"The Elements Within Us","site_detail_url":"https://comicvine.gamespot.com/x-men-73-the-elements-within-us/4000-65773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436851/","id":436851,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-98/4000-436851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300068/","id":300068,"name":"Aprés l'Orage","site_detail_url":"https://comicvine.gamespot.com/x-men-14-apres-lorage/4000-300068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65633/","id":65633,"name":"The Hellfire Hunt, Part 4: Faith and Deception","site_detail_url":"https://comicvine.gamespot.com/cable-51-the-hellfire-hunt-part-4-faith-and-decept/4000-65633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436850/","id":436850,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-97/4000-436850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65771/","id":65771,"name":"A House in Order","site_detail_url":"https://comicvine.gamespot.com/x-men-71-a-house-in-order/4000-65771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44598/","id":44598,"name":"The Hellfire Hunt, Part 3: And He Shall Be Called... Man!","site_detail_url":"https://comicvine.gamespot.com/cable-50-the-hellfire-hunt-part-3-and-he-shall-be-/4000-44598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436849/","id":436849,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-96/4000-436849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300066/","id":300066,"name":"Souvenir du Futur","site_detail_url":"https://comicvine.gamespot.com/x-men-12-souvenir-du-futur/4000-300066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292089/","id":292089,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-4/4000-292089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453770/","id":453770,"name":"","site_detail_url":"https://comicvine.gamespot.com/o-melhor-dos-x-men-2/4000-453770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135789/","id":135789,"name":"The Hellfire Hunt Part 2-Weary Knights & Shabby Paladins","site_detail_url":"https://comicvine.gamespot.com/cable-49-the-hellfire-hunt-part-2-weary-knights-sh/4000-135789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436848/","id":436848,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-95/4000-436848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300065/","id":300065,"name":"Le retour Fulgurant du Fléau","site_detail_url":"https://comicvine.gamespot.com/x-men-11-le-retour-fulgurant-du-fleau/4000-300065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66212/","id":66212,"name":"The Hellfire Hunt Part 1-Dirty Secrets","site_detail_url":"https://comicvine.gamespot.com/cable-48-the-hellfire-hunt-part-1-dirty-secrets/4000-66212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436847/","id":436847,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-94/4000-436847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385733/","id":385733,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mix-16/4000-385733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300064/","id":300064,"name":"Opération Tolérance Zéro","site_detail_url":"https://comicvine.gamespot.com/x-men-10-operation-tolerance-zero/4000-300064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140971/","id":140971,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-2-volume-2/4000-140971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436846/","id":436846,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-93/4000-436846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44201/","id":44201,"name":"Death and Disobedience","site_detail_url":"https://comicvine.gamespot.com/what-if-101-death-and-disobedience/4000-44201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275037/","id":275037,"name":"L'Unione fa la Forza","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-29-l-unione-fa-la-forza/4000-275037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436844/","id":436844,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-91/4000-436844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113365/","id":113365,"name":"The Modern Age","site_detail_url":"https://comicvine.gamespot.com/wildcatsx-men-the-modern-age-1-the-modern-age/4000-113365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275030/","id":275030,"name":"Tutti contro di Loro","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-27-tutti-contro-di-loro/4000-275030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43873/","id":43873,"name":"The Beginning of a Beautiful Friendship!","site_detail_url":"https://comicvine.gamespot.com/generation-x--1-the-beginning-of-a-beautiful-frien/4000-43873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43784/","id":43784,"name":"Dance With the Devil","site_detail_url":"https://comicvine.gamespot.com/x-man-28-dance-with-the-devil/4000-43784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436842/","id":436842,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-89/4000-436842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453769/","id":453769,"name":"","site_detail_url":"https://comicvine.gamespot.com/o-melhor-dos-x-men-1/4000-453769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313805/","id":313805,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-14/4000-313805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134699/","id":134699,"name":"Bad Karma","site_detail_url":"https://comicvine.gamespot.com/the-beast-1-bad-karma/4000-134699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313803/","id":313803,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-13/4000-313803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51700/","id":51700,"name":"Part 2: Verdicts","site_detail_url":"https://comicvine.gamespot.com/code-of-honor-2-part-2-verdicts/4000-51700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43495/","id":43495,"name":"Closer to the Lame","site_detail_url":"https://comicvine.gamespot.com/x-man-25-closer-to-the-lame/4000-43495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313802/","id":313802,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-12/4000-313802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43397/","id":43397,"name":"First Noel","site_detail_url":"https://comicvine.gamespot.com/x-man-24-first-noel/4000-43397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313801/","id":313801,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-11/4000-313801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43285/","id":43285,"name":"Crash Course","site_detail_url":"https://comicvine.gamespot.com/x-man-23-crash-course/4000-43285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415523/","id":415523,"name":"Als dromen waarheid konden worden.","site_detail_url":"https://comicvine.gamespot.com/generatie-x-12-als-dromen-waarheid-konden-worden/4000-415523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313800/","id":313800,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-10/4000-313800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96937/","id":96937,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-x-men-10/4000-96937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175968/","id":175968,"name":null,"site_detail_url":"https://comicvine.gamespot.com/logan-shadow-society-1/4000-175968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43091/","id":43091,"name":"Falling Up","site_detail_url":"https://comicvine.gamespot.com/x-man-22-falling-up/4000-43091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435936/","id":435936,"name":"X-Force e os Novos Guerreiros","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel-54-x-force-e-os-novos-guerre/4000-435936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390208/","id":390208,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-98/4000-390208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96936/","id":96936,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-x-men-9/4000-96936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42994/","id":42994,"name":"Open Cage","site_detail_url":"https://comicvine.gamespot.com/x-man-21-open-cage/4000-42994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142319/","id":142319,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-encyclopedia-1/4000-142319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42888/","id":42888,"name":"The Mourning After","site_detail_url":"https://comicvine.gamespot.com/x-man-20-the-mourning-after/4000-42888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396079/","id":396079,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-fabulosos-x-men-10/4000-396079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51322/","id":51322,"name":"The Origin of A Species","site_detail_url":"https://comicvine.gamespot.com/the-further-adventures-of-cyclops-and-phoenix-3-th/4000-51322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66383/","id":66383,"name":"London's Burning: Onslaught: Impact 1","site_detail_url":"https://comicvine.gamespot.com/excalibur-100-londons-burning-onslaught-impact-1/4000-66383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66382/","id":66382,"name":"Fire With Fire","site_detail_url":"https://comicvine.gamespot.com/excalibur-99-fire-with-fire/4000-66382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51321/","id":51321,"name":"Unnatural Selection","site_detail_url":"https://comicvine.gamespot.com/further-adventures-of-cyclops-and-phoenix-2-unnatu/4000-51321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66381/","id":66381,"name":"Fireflies","site_detail_url":"https://comicvine.gamespot.com/excalibur-98-fireflies/4000-66381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129123/","id":129123,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno-1-inferno/4000-129123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66380/","id":66380,"name":"Counterfire","site_detail_url":"https://comicvine.gamespot.com/excalibur-97-counterfire/4000-66380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42302/","id":42302,"name":"Fireback","site_detail_url":"https://comicvine.gamespot.com/excalibur-96-fireback/4000-42302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436828/","id":436828,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-75/4000-436828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389300/","id":389300,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-89/4000-389300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274922/","id":274922,"name":"Il Matrimonio di Jean e Scott","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-11-il-matrimonio-di-jean-e-scott/4000-274922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382459/","id":382459,"name":"","site_detail_url":"https://comicvine.gamespot.com/facteur-x-39/4000-382459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136063/","id":136063,"name":"Alterniverse Visions","site_detail_url":"https://comicvine.gamespot.com/x-men-alterniverse-visions-1-alterniverse-visions/4000-136063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70438/","id":70438,"name":" The Inner Circle","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-11-the-inner-circle/4000-70438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41773/","id":41773,"name":"Double or Nothing","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up-1-double-or-nothing/4000-41773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70437/","id":70437,"name":"No Time for Illusions","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-10-no-time-for-illusions/4000-70437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382458/","id":382458,"name":"","site_detail_url":"https://comicvine.gamespot.com/facteur-x-38/4000-382458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41389/","id":41389,"name":"What if Legion Had Killed Magneto","site_detail_url":"https://comicvine.gamespot.com/what-if-77-what-if-legion-had-killed-magneto/4000-41389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419886/","id":419886,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1995-09/4000-419886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388678/","id":388678,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-81/4000-388678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359372/","id":359372,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-18/4000-359372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388677/","id":388677,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-80/4000-388677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382623/","id":382623,"name":"Je vous déclare unis","site_detail_url":"https://comicvine.gamespot.com/x-men-15-je-vous-declare-unis/4000-382623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232777/","id":232777,"name":"Uncanny X-Men: The Coming of Bishop","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-coming-of-bishop-1-uncanny-x-men/4000-232777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382622/","id":382622,"name":"Le diable en la demeure","site_detail_url":"https://comicvine.gamespot.com/x-men-14-le-diable-en-la-demeure/4000-382622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388655/","id":388655,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-75/4000-388655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90586/","id":90586,"name":"Heart and Soul","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-3-heart-and-soul/4000-90586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313367/","id":313367,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-31/4000-313367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70491/","id":70491,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-the-ultra-collection-1/4000-70491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317431/","id":317431,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-28/4000-317431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279204/","id":279204,"name":"Il suo nome è Alfiere...e il destino degli X-Men cambierà per sempre","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-52-il-suo-nome-e-alfiere-e-i/4000-279204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279203/","id":279203,"name":"Omega Red l'inizio","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-51-omega-red-l-inizio/4000-279203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451561/","id":451561,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-48/4000-451561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279200/","id":279200,"name":"Opposizione Lunare","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-49-opposizione-lunare/4000-279200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451560/","id":451560,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-47/4000-451560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38952/","id":38952,"name":"X-Men Wedding Album","site_detail_url":"https://comicvine.gamespot.com/what-if-60-x-men-wedding-album/4000-38952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107190/","id":107190,"name":"Child's Play (First Move): With a Roll of the Dice","site_detail_url":"https://comicvine.gamespot.com/x-force-32-childs-play-first-move-with-a-roll-of-t/4000-107190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47729/","id":47729,"name":"Two Girls out to have Fun","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-93-two-girls-out-to-have-fun/4000-47729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38810/","id":38810,"name":"What If Wolverine Led Alpha Flight","site_detail_url":"https://comicvine.gamespot.com/what-if-59-what-if-wolverine-led-alpha-flight/4000-38810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65730/","id":65730,"name":"Return to Hellfire!","site_detail_url":"https://comicvine.gamespot.com/x-men-29-return-to-hellfire/4000-65730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160675/","id":160675,"name":"That sleep of Death","site_detail_url":"https://comicvine.gamespot.com/marvel-frontier-comics-special-1-that-sleep-of-dea/4000-160675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414916/","id":414916,"name":"Monster in huis","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-10-monster-in-huis/4000-414916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184316/","id":184316,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-marvel-x-men-collection-1/4000-184316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424172/","id":424172,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1993-12/4000-424172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424173/","id":424173,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1993-11/4000-424173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278084/","id":278084,"name":"Una luce si spegne","site_detail_url":"https://comicvine.gamespot.com/speciale-x-men-5-una-luce-si-spegne/4000-278084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237618/","id":237618,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-42/4000-237618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237616/","id":237616,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-40/4000-237616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237615/","id":237615,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-39/4000-237615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237614/","id":237614,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-38/4000-237614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237612/","id":237612,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-36/4000-237612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184368/","id":184368,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-maste/4000-184368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36872/","id":36872,"name":"What If... Cable Had Destroyed The X-Men?","site_detail_url":"https://comicvine.gamespot.com/what-if-46-what-if-cable-had-destroyed-the-x-men/4000-36872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388245/","id":388245,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-51/4000-388245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106316/","id":106316,"name":null,"site_detail_url":"https://comicvine.gamespot.com/stryfe-s-strike-file-1/4000-106316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273883/","id":273883,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-33/4000-273883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411186/","id":411186,"name":"Bishop's komst","site_detail_url":"https://comicvine.gamespot.com/x-mannen-123-bishop-s-komst/4000-411186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411185/","id":411185,"name":"Wraak!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-122-wraak/4000-411185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388225/","id":388225,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-48/4000-388225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314197/","id":314197,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-122/4000-314197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411184/","id":411184,"name":"Een frisse start","site_detail_url":"https://comicvine.gamespot.com/x-mannen-121-een-frisse-start/4000-411184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388220/","id":388220,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-47/4000-388220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382439/","id":382439,"name":"","site_detail_url":"https://comicvine.gamespot.com/facteur-x-19/4000-382439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314198/","id":314198,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-121/4000-314198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273877/","id":273877,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-30/4000-273877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388214/","id":388214,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-46/4000-388214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314199/","id":314199,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-120/4000-314199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388210/","id":388210,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-45/4000-388210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273568/","id":273568,"name":"Double Issue 28-29","site_detail_url":"https://comicvine.gamespot.com/x-marvel-2829-double-issue-28-29/4000-273568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86093/","id":86093,"name":"Fireworks","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-11-fireworks/4000-86093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311468/","id":311468,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-53/4000-311468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277839/","id":277839,"name":"Il mattino dopo","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-21-il-mattino-dopo/4000-277839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277837/","id":277837,"name":"Spettri","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-20-spettri/4000-277837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388160/","id":388160,"name":"","site_detail_url":"https://comicvine.gamespot.com/superalmanaque-marvel-5/4000-388160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431795/","id":431795,"name":"Rote Dämmerung","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-14-rote-dammerun/4000-431795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431793/","id":431793,"name":"Ein Mann, Ein Mord","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-13-ein-mann-ein-/4000-431793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424276/","id":424276,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1992-01/4000-424276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436779/","id":436779,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-25/4000-436779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107061/","id":107061,"name":"Bishop's Crossing","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-283-bishops-crossing/4000-107061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436778/","id":436778,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-24/4000-436778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34932/","id":34932,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-89/4000-34932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34895/","id":34895,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-282-payback/4000-34895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424279/","id":424279,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1991-10/4000-424279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313227/","id":313227,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-59/4000-313227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34779/","id":34779,"name":"Fresh Upstart","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-281-fresh-upstart/4000-34779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455366/","id":455366,"name":"Wieviel Kostet der Kobold im Fenster?","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-19-wieviel-kostet-der-kob/4000-455366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424280/","id":424280,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1991-09/4000-424280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313226/","id":313226,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-58/4000-313226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277705/","id":277705,"name":"Il Retaggio dei Dannati","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-13-il-retaggio-dei-dannati/4000-277705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455367/","id":455367,"name":"Arcade Retten?","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-20-arcade-retten/4000-455367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34316/","id":34316,"name":"Endgame (Part 3): Lunar Opposition!","site_detail_url":"https://comicvine.gamespot.com/x-factor-67-endgame-part-3-lunar-opposition/4000-34316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34301/","id":34301,"name":"Weapon X Part 7","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-78-weapon-x-part-7/4000-34301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388120/","id":388120,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-31/4000-388120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334787/","id":334787,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-148/4000-334787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388119/","id":388119,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-30/4000-388119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277698/","id":277698,"name":"Follia","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-10-follia/4000-277698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34113/","id":34113,"name":"What if Wolverine was Lord of the Vampires?","site_detail_url":"https://comicvine.gamespot.com/what-if-24-what-if-wolverine-was-lord-of-the-vampi/4000-34113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34009/","id":34009,"name":"What If the All-New All-Different X-Men Had Never Existed?","site_detail_url":"https://comicvine.gamespot.com/what-if-23-what-if-the-all-new-all-different-x-men/4000-34009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33883/","id":33883,"name":"Devil's at the Doorsteps","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-8-devil-s-at-the-doorsteps/4000-33883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455364/","id":455364,"name":"Staatsfeind Nummer Eins","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-17-staatsfeind-nummer-ein/4000-455364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274645/","id":274645,"name":"Nell ' Arena fino alla Morte","site_detail_url":"https://comicvine.gamespot.com/i-nuovi-mutanti-22-nell-arena-fino-alla-morte/4000-274645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313672/","id":313672,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-21/4000-313672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313222/","id":313222,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-54/4000-313222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277691/","id":277691,"name":"Storie D'amore","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-6-storie-d-amore/4000-277691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274642/","id":274642,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovi-mutanti-21/4000-274642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33433/","id":33433,"name":"The Man Who Stole Tomorrow","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors-5-the-man-who-stole-tomorrow/4000-33433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274637/","id":274637,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovi-mutanti-19/4000-274637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277647/","id":277647,"name":"Catacombe","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-3-catacombe/4000-277647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311346/","id":311346,"name":"","site_detail_url":"https://comicvine.gamespot.com/inferno-13/4000-311346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451542/","id":451542,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-29/4000-451542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311345/","id":311345,"name":"","site_detail_url":"https://comicvine.gamespot.com/inferno-12/4000-311345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451541/","id":451541,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-28/4000-451541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32836/","id":32836,"name":"The Cross-Time Caper, Part 10: Shadows Thriumphant?","site_detail_url":"https://comicvine.gamespot.com/excalibur-22-the-cross-time-caper-part-10-shadows-/4000-32836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455363/","id":455363,"name":"Endlich Frei!","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-16-endlich-frei/4000-455363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334238/","id":334238,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-135/4000-334238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313218/","id":313218,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-50/4000-313218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311342/","id":311342,"name":"","site_detail_url":"https://comicvine.gamespot.com/inferno-9/4000-311342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66345/","id":66345,"name":"The Cross-Time Caper, Part 9: Crusader X","site_detail_url":"https://comicvine.gamespot.com/excalibur-21-the-cross-time-caper-part-9-crusader-/4000-66345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32625/","id":32625,"name":"The Skeleton Crew","site_detail_url":"https://comicvine.gamespot.com/captain-america-369-the-skeleton-crew/4000-32625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451540/","id":451540,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-27/4000-451540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334236/","id":334236,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-134/4000-334236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314291/","id":314291,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-91/4000-314291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32516/","id":32516,"name":"Red Twilight","site_detail_url":"https://comicvine.gamespot.com/captain-america-368-red-twilight/4000-32516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334235/","id":334235,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-133/4000-334235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313217/","id":313217,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-49/4000-313217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32415/","id":32415,"name":"Magnetic Repulsion","site_detail_url":"https://comicvine.gamespot.com/captain-america-367-magnetic-repulsion/4000-32415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436758/","id":436758,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-3/4000-436758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251050/","id":251050,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/spider-man-spirits-of-the-earth-1-ogn/4000-251050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411015/","id":411015,"name":"De dag van het andere licht","site_detail_url":"https://comicvine.gamespot.com/x-mannen-90-de-dag-van-het-andere-licht/4000-411015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186427/","id":186427,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-from-the-ashes-1-tpb/4000-186427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313216/","id":313216,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-48/4000-313216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387833/","id":387833,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-13/4000-387833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274550/","id":274550,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovi-mutanti-7/4000-274550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334228/","id":334228,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-126/4000-334228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47422/","id":47422,"name":"The Dark Phoenix Saga Part 1: God Spare the Child...","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-35-the-dark-phoenix-saga-part-1-god-/4000-47422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31451/","id":31451,"name":"The Day of Other Lights","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-246-the-day-of-other-lights/4000-31451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430422/","id":430422,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1989-03/4000-430422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47421/","id":47421,"name":"The Action of the Tiger!","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-34-the-action-of-the-tiger/4000-47421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435902/","id":435902,"name":"A Origem da Fenix!","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel-24-a-origem-da-fenix/4000-435902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31251/","id":31251,"name":"King Of The Hill!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-75-king-of-the-hill/4000-31251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387821/","id":387821,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-387821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31143/","id":31143,"name":"The Right Stuff","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-74-the-right-stuff/4000-31143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451534/","id":451534,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-21/4000-451534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387819/","id":387819,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-5/4000-387819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313627/","id":313627,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-1/4000-313627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31027/","id":31027,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-73-the-gift/4000-31027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314307/","id":314307,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-78/4000-314307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451533/","id":451533,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-20/4000-451533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334028/","id":334028,"name":"Titans","site_detail_url":"https://comicvine.gamespot.com/titans-120-titans/4000-334028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314308/","id":314308,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-77/4000-314308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313211/","id":313211,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-43/4000-313211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30824/","id":30824,"name":"Limbo","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-71-limbo/4000-30824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334026/","id":334026,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-119/4000-334026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314309/","id":314309,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-76/4000-314309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313210/","id":313210,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-42/4000-313210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47416/","id":47416,"name":"Cry For The Children","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-28-cry-for-the-children/4000-47416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30472/","id":30472,"name":"Self-Fulfilling Prophesy","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-70-self-fulfilling-prophesy/4000-30472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314310/","id":314310,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-75/4000-314310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334022/","id":334022,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-117/4000-334022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314311/","id":314311,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-74/4000-314311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30178/","id":30178,"name":"Warwolves of London","site_detail_url":"https://comicvine.gamespot.com/excalibur-1-warwolves-of-london/4000-30178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29033/","id":29033,"name":"Mind Games","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-annual-4-mind-games/4000-29033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430428/","id":430428,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-09/4000-430428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48867/","id":48867,"name":"Superbman Vs The Fantastical Four - My Badguy... My Enemy !","site_detail_url":"https://comicvine.gamespot.com/what-the--2-superbman-vs-the-fantastical-four-my-b/4000-48867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29405/","id":29405,"name":"Our Way!","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-61-our-way/4000-29405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455357/","id":455357,"name":"Caliban aus der Unterwelt","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-10-caliban-aus-der-unterw/4000-455357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451529/","id":451529,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-16/4000-451529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430436/","id":430436,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-02/4000-430436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315131/","id":315131,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-61/4000-315131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430437/","id":430437,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-01/4000-430437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315134/","id":315134,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-58/4000-315134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315133/","id":315133,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-59/4000-315133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315132/","id":315132,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-60/4000-315132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432642/","id":432642,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1987-12/4000-432642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313195/","id":313195,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-29/4000-313195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313193/","id":313193,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-27/4000-313193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28490/","id":28490,"name":"Ratrace","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-54-ratrace/4000-28490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313190/","id":313190,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-24/4000-313190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313189/","id":313189,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-23/4000-313189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28378/","id":28378,"name":"Seduced & Abandoned","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-53-seduced-abandoned/4000-28378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28351/","id":28351,"name":"Where Duty Lies","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-219-where-duty-lies/4000-28351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28142/","id":28142,"name":"Teacher's Choice","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-51-teachers-choice/4000-28142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315157/","id":315157,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-40/4000-315157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47395/","id":47395,"name":"Deathstar, Rising!","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-7-deathstar-rising/4000-47395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315164/","id":315164,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-34/4000-315164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47394/","id":47394,"name":"Merry Christmas, X-Men","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-6-merry-christmas-x-men/4000-47394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415182/","id":415182,"name":"Zielestrijd","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants-15-zielestrijd/4000-415182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415181/","id":415181,"name":"Legioen","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants-14-legioen/4000-415181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415178/","id":415178,"name":"Verborgen monsters","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants-12-verborgen-monsters/4000-415178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315333/","id":315333,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-32/4000-315333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455355/","id":455355,"name":"Wolverines Solo","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-8-wolverines-solo/4000-455355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315334/","id":315334,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-31/4000-315334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441912/","id":441912,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-10/4000-441912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315339/","id":315339,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-26/4000-315339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107057/","id":107057,"name":"The Morning After","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-210-the-morning-after/4000-107057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313173/","id":313173,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-7/4000-313173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27189/","id":27189,"name":"Salvation","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-209-salvation/4000-27189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315342/","id":315342,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-23/4000-315342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27093/","id":27093,"name":"Retribution","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-208-retribution/4000-27093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26997/","id":26997,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-207-ghosts/4000-26997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26890/","id":26890,"name":"Now Strikes The Assassin!","site_detail_url":"https://comicvine.gamespot.com/firestar-4-now-strikes-the-assassin/4000-26890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26791/","id":26791,"name":"This Lady Kills","site_detail_url":"https://comicvine.gamespot.com/firestar-3-this-lady-kills/4000-26791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26699/","id":26699,"name":"The Players And The Pawn!","site_detail_url":"https://comicvine.gamespot.com/firestar-2-the-players-and-the-pawn/4000-26699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455354/","id":455354,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-7/4000-455354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333898/","id":333898,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-85/4000-333898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315353/","id":315353,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-12/4000-315353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66622/","id":66622,"name":"Gardener To The Hulk","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-5-gar/4000-66622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333892/","id":333892,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-83/4000-333892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315354/","id":315354,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-11/4000-315354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325949/","id":325949,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-80/4000-325949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451524/","id":451524,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-11/4000-451524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325947/","id":325947,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-79/4000-325947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451523/","id":451523,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-10/4000-451523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451522/","id":451522,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-9/4000-451522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25614/","id":25614,"name":"Soulwar","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-28-soulwar/4000-25614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451521/","id":451521,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-8/4000-451521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451520/","id":451520,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-7/4000-451520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315363/","id":315363,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-2/4000-315363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25414/","id":25414,"name":"Legion","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-26-legion/4000-25414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435885/","id":435885,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel-7-x-men/4000-435885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415165/","id":415165,"name":"Terug naar Rio","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants-4-terug-naar-rio/4000-415165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25182/","id":25182,"name":"Shadowman","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-23-shadowman/4000-25182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25178/","id":25178,"name":"Two Girls out to have Fun","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-189-two-girls-out-to-have-fun/4000-25178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25024/","id":25024,"name":"The Shadow Within","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-22-the-shadow-within/4000-25024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325823/","id":325823,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-65/4000-325823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24419/","id":24419,"name":"Madness","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-182-madness/4000-24419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111577/","id":111577,"name":"Scavenger Hunt","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-7-scavenger-hunt/4000-111577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23556/","id":23556,"name":"Romances","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-174-romances/4000-23556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23461/","id":23461,"name":"Flying Down To Rio !","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-7-flying-down-to-rio/4000-23461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68384/","id":68384,"name":"H-J: Hangman to Juggernaut","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-5-h-j/4000-68384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23139/","id":23139,"name":"Catacombs","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-169-catacombs/4000-23139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21793/","id":21793,"name":"The New Mutants: Renewal","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-4-the-new-mutants-renewal/4000-21793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21752/","id":21752,"name":"The Hellfire Gambit","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-152-the-hellfire-gambit/4000-21752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21679/","id":21679,"name":"The X-Men Minus One","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-151-the-x-men-minus-one/4000-21679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20751/","id":20751,"name":"Elegy","site_detail_url":"https://comicvine.gamespot.com/the-x-men-138-elegy/4000-20751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20546/","id":20546,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/the-x-men-135-dark-phoenix/4000-20546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20477/","id":20477,"name":"Too Late, the Heroes","site_detail_url":"https://comicvine.gamespot.com/the-x-men-134-too-late-the-heroes/4000-20477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20403/","id":20403,"name":"Wolverine: Alone!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-133-wolverine-alone/4000-20403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20333/","id":20333,"name":"And Hellfire Is Their Name!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-132-and-hellfire-is-their-name/4000-20333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20258/","id":20258,"name":"Run For Your Life!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-131-run-for-your-life/4000-20258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20186/","id":20186,"name":"The Dramatic Debut of the Dazzler!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-130-the-dramatic-debut-of-the-dazzler/4000-20186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20114/","id":20114,"name":"God Spare The Child...","site_detail_url":"https://comicvine.gamespot.com/the-x-men-129-god-spare-the-child/4000-20114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476461/","id":476461,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-6/4000-476461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476415/","id":476415,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-2/4000-476415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453255/","id":453255,"name":"The Uncanny X-Men: Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-7-the-uncanny-x-men-days-of-futu/4000-453255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453152/","id":453152,"name":"The Uncanny X-Men: Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-6-the-uncanny-x-men-dark-phoenix/4000-453152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453110/","id":453110,"name":"The Uncanny X-Men: Legacy of the Lost","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-14-the-uncanny-x-men-legacy-of-t/4000-453110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453107/","id":453107,"name":"The Uncanny X-Men: Love and Madness","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-13-the-uncanny-x-men-love-and-ma/4000-453107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453097/","id":453097,"name":"The Uncanny X-Men: Scarlet In Glory","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-11-the-uncanny-x-men-scarlet-in-/4000-453097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453092/","id":453092,"name":"The Uncanny X-Men: God Loves, Man Kills","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-9-the-uncanny-x-men-god-loves-ma/4000-453092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445739/","id":445739,"name":"Utopia Dark X-Men: La Confesión","site_detail_url":"https://comicvine.gamespot.com/utopia-3-utopia-dark-x-men-la-confesion/4000-445739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441931/","id":441931,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-04/4000-441931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441930/","id":441930,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-05/4000-441930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441929/","id":441929,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-06/4000-441929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441928/","id":441928,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-07/4000-441928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441927/","id":441927,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-08/4000-441927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441918/","id":441918,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-05/4000-441918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435984/","id":435984,"name":"","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-x-men-4/4000-435984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435983/","id":435983,"name":"","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-x-men-3/4000-435983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411380/","id":411380,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-259/4000-411380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411376/","id":411376,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-252/4000-411376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407708/","id":407708,"name":"De Plicht Roept","site_detail_url":"https://comicvine.gamespot.com/x-mannen-70-de-plicht-roept/4000-407708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407652/","id":407652,"name":"De Volgende Morgen","site_detail_url":"https://comicvine.gamespot.com/x-mannen-63-de-volgende-morgen/4000-407652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407651/","id":407651,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-62/4000-407651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407650/","id":407650,"name":"Spoken","site_detail_url":"https://comicvine.gamespot.com/x-mannen-61-spoken/4000-407650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399709/","id":399709,"name":"De Dames Zoeken Een Verzetje","site_detail_url":"https://comicvine.gamespot.com/x-mannen-47-de-dames-zoeken-een-verzetje/4000-399709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399687/","id":399687,"name":"Waanzin","site_detail_url":"https://comicvine.gamespot.com/x-mannen-42-waanzin/4000-399687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399385/","id":399385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-37/4000-399385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399182/","id":399182,"name":"Romances","site_detail_url":"https://comicvine.gamespot.com/x-mannen-35-romances/4000-399182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399178/","id":399178,"name":"Kitty Vecht Terug!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-31-kitty-vecht-terug/4000-399178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398833/","id":398833,"name":"Sentinels","site_detail_url":"https://comicvine.gamespot.com/x-mannen-18-sentinels/4000-398833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398276/","id":398276,"name":"Dark Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-mannen-6-dark-phoenix/4000-398276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398275/","id":398275,"name":"Wolverine: Alleen!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-5-wolverine-alleen/4000-398275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398271/","id":398271,"name":"Ween Voor De Kinderen.","site_detail_url":"https://comicvine.gamespot.com/x-mannen-4-ween-voor-de-kinderen/4000-398271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300291/","id":300291,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-15/4000-300291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229420/","id":229420,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-253/4000-229420/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1048/","id":1048,"name":"X-Men: First Class","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class/4025-1048/"}],"name":"Hellfire Club","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/hellfire-club/4060-13357/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57031/","id":57031,"name":"Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron/4045-57031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57146/","id":57146,"name":"The (Nearly) Great Escape","site_detail_url":"https://comicvine.gamespot.com/the-nearly-great-escape/4045-57146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57158/","id":57158,"name":"Reservation X","site_detail_url":"https://comicvine.gamespot.com/reservation-x/4045-57158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57169/","id":57169,"name":"Prey","site_detail_url":"https://comicvine.gamespot.com/prey/4045-57169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57176/","id":57176,"name":"Gathering of Five","site_detail_url":"https://comicvine.gamespot.com/gathering-of-five/4045-57176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57192/","id":57192,"name":"Dead a Long Time","site_detail_url":"https://comicvine.gamespot.com/dead-a-long-time/4045-57192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57213/","id":57213,"name":"Crossroads","site_detail_url":"https://comicvine.gamespot.com/crossroads/4045-57213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57244/","id":57244,"name":"The Killer of Saints","site_detail_url":"https://comicvine.gamespot.com/the-killer-of-saints/4045-57244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57346/","id":57346,"name":"Cycles","site_detail_url":"https://comicvine.gamespot.com/cycles/4045-57346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57373/","id":57373,"name":"Frank","site_detail_url":"https://comicvine.gamespot.com/frank/4045-57373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57702/","id":57702,"name":"Where Were You?","site_detail_url":"https://comicvine.gamespot.com/where-were-you/4045-57702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57734/","id":57734,"name":"To The Last Man","site_detail_url":"https://comicvine.gamespot.com/to-the-last-man/4045-57734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57793/","id":57793,"name":"Ghost Dance","site_detail_url":"https://comicvine.gamespot.com/ghost-dance/4045-57793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57615/","id":57615,"name":"Age of Darkness","site_detail_url":"https://comicvine.gamespot.com/age-of-darkness/4045-57615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58089/","id":58089,"name":"The Fire of Creation","site_detail_url":"https://comicvine.gamespot.com/the-fire-of-creation/4045-58089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58124/","id":58124,"name":"Race Against Time","site_detail_url":"https://comicvine.gamespot.com/race-against-time/4045-58124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58183/","id":58183,"name":"No Chains Can Hold Her!","site_detail_url":"https://comicvine.gamespot.com/no-chains-can-hold-her/4045-58183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58113/","id":58113,"name":"Axis","site_detail_url":"https://comicvine.gamespot.com/axis/4045-58113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58266/","id":58266,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4045-58266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58251/","id":58251,"name":"Convergence","site_detail_url":"https://comicvine.gamespot.com/convergence/4045-58251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58475/","id":58475,"name":"Sea of Storms","site_detail_url":"https://comicvine.gamespot.com/sea-of-storms/4045-58475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58485/","id":58485,"name":"Rann/Thanagar War","site_detail_url":"https://comicvine.gamespot.com/rannthanagar-war/4045-58485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58502/","id":58502,"name":"Le grand amour de Rahan","site_detail_url":"https://comicvine.gamespot.com/le-grand-amour-de-rahan/4045-58502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58446/","id":58446,"name":"Truth","site_detail_url":"https://comicvine.gamespot.com/truth/4045-58446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58675/","id":58675,"name":"The Four Sisters","site_detail_url":"https://comicvine.gamespot.com/the-four-sisters/4045-58675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58724/","id":58724,"name":"The Arsonist","site_detail_url":"https://comicvine.gamespot.com/the-arsonist/4045-58724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58131/","id":58131,"name":"Time Runs Out","site_detail_url":"https://comicvine.gamespot.com/time-runs-out/4045-58131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58766/","id":58766,"name":"Marvel Comics' Fast Lane","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-fast-lane/4045-58766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58863/","id":58863,"name":"Tubes d'aventure","site_detail_url":"https://comicvine.gamespot.com/tubes-daventure/4045-58863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58942/","id":58942,"name":"Boule de gnome","site_detail_url":"https://comicvine.gamespot.com/boule-de-gnome/4045-58942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59098/","id":59098,"name":"Noise of Thunder","site_detail_url":"https://comicvine.gamespot.com/noise-of-thunder/4045-59098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59133/","id":59133,"name":"Rise of Raptor","site_detail_url":"https://comicvine.gamespot.com/rise-of-raptor/4045-59133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59203/","id":59203,"name":"New Cybertron","site_detail_url":"https://comicvine.gamespot.com/new-cybertron/4045-59203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59269/","id":59269,"name":"Quest For Hope","site_detail_url":"https://comicvine.gamespot.com/quest-for-hope/4045-59269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59031/","id":59031,"name":"Better Than Batman","site_detail_url":"https://comicvine.gamespot.com/better-than-batman/4045-59031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59320/","id":59320,"name":"Rise of the Demon","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-demon/4045-59320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59482/","id":59482,"name":"Rise of the Robots","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-robots/4045-59482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59638/","id":59638,"name":"The World Stops","site_detail_url":"https://comicvine.gamespot.com/the-world-stops/4045-59638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59670/","id":59670,"name":"The Good Companion","site_detail_url":"https://comicvine.gamespot.com/the-good-companion/4045-59670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59465/","id":59465,"name":"Defiance","site_detail_url":"https://comicvine.gamespot.com/defiance/4045-59465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59815/","id":59815,"name":"Mutiny At Mon Cala","site_detail_url":"https://comicvine.gamespot.com/mutiny-at-mon-cala/4045-59815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59944/","id":59944,"name":"On the Outside","site_detail_url":"https://comicvine.gamespot.com/on-the-outside/4045-59944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59964/","id":59964,"name":"Hope Dies","site_detail_url":"https://comicvine.gamespot.com/hope-dies/4045-59964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60019/","id":60019,"name":"Fortress Vader","site_detail_url":"https://comicvine.gamespot.com/fortress-vader/4045-60019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60067/","id":60067,"name":"Beyond the Grid","site_detail_url":"https://comicvine.gamespot.com/beyond-the-grid/4045-60067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60071/","id":60071,"name":"Deathstroke: Arkham","site_detail_url":"https://comicvine.gamespot.com/deathstroke-arkham/4045-60071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59963/","id":59963,"name":"Infinity Wars","site_detail_url":"https://comicvine.gamespot.com/infinity-wars/4045-59963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60138/","id":60138,"name":"Sins of the Past","site_detail_url":"https://comicvine.gamespot.com/sins-of-the-past/4045-60138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60408/","id":60408,"name":"Rogues' Reign","site_detail_url":"https://comicvine.gamespot.com/rogues-reign/4045-60408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55868/","id":55868,"name":"21st Tenkaichi Budoukai","site_detail_url":"https://comicvine.gamespot.com/21st-tenkaichi-budoukai/4045-55868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60842/","id":60842,"name":"Symphonia Arc","site_detail_url":"https://comicvine.gamespot.com/symphonia-arc/4045-60842/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2133/","id":2133,"name":"The X-Men","site_detail_url":"https://comicvine.gamespot.com/the-x-men/4050-2133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3092/","id":3092,"name":"The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men/4050-3092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3144/","id":3144,"name":"Marvel Graphic Novel","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel/4050-3144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3234/","id":3234,"name":"The New Mutants","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants/4050-3234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3631/","id":3631,"name":"Firestar","site_detail_url":"https://comicvine.gamespot.com/firestar/4050-3631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3356/","id":3356,"name":"The New Mutants Annual","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-annual/4050-3356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4052/","id":4052,"name":"Excalibur","site_detail_url":"https://comicvine.gamespot.com/excalibur/4050-4052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2400/","id":2400,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-2400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4407/","id":4407,"name":"The New Warriors","site_detail_url":"https://comicvine.gamespot.com/the-new-warriors/4050-4407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4249/","id":4249,"name":"What If...?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-4249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4058/","id":4058,"name":"Marvel Comics Presents","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3657/","id":3657,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-3657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5561/","id":5561,"name":"Spider-Man Team-Up","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up/4050-5561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5567/","id":5567,"name":"X-Man","site_detail_url":"https://comicvine.gamespot.com/x-man/4050-5567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5300/","id":5300,"name":"Generation X","site_detail_url":"https://comicvine.gamespot.com/generation-x/4050-5300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4993/","id":4993,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-4993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6217/","id":6217,"name":"Mutant X","site_detail_url":"https://comicvine.gamespot.com/mutant-x/4050-6217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6352/","id":6352,"name":"Bishop: The Last X-Man","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man/4050-6352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3626/","id":3626,"name":"Classic X-Men","site_detail_url":"https://comicvine.gamespot.com/classic-x-men/4050-3626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6685/","id":6685,"name":"X-Men Classic","site_detail_url":"https://comicvine.gamespot.com/x-men-classic/4050-6685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4079/","id":4079,"name":"What The--?!","site_detail_url":"https://comicvine.gamespot.com/what-the/4050-4079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7190/","id":7190,"name":"The Further Adventures of Cyclops and Phoenix","site_detail_url":"https://comicvine.gamespot.com/the-further-adventures-of-cyclops-and-phoenix/4050-7190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7282/","id":7282,"name":"Code of Honor","site_detail_url":"https://comicvine.gamespot.com/code-of-honor/4050-7282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4605/","id":4605,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-4605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3497/","id":3497,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3237/","id":3237,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5337/","id":5337,"name":"X-Men Adventures","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures/4050-5337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9204/","id":9204,"name":"X-Men: The Ultra Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-the-ultra-collection/4050-9204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9411/","id":9411,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men/4050-9411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4404/","id":4404,"name":"Marvel Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes/4050-4404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10748/","id":10748,"name":"X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/x-men-annual/4050-10748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11067/","id":11067,"name":"The Adventures of the X-Men","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-x-men/4050-11067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11868/","id":11868,"name":"X-51","site_detail_url":"https://comicvine.gamespot.com/x-51/4050-11868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7258/","id":7258,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18091/","id":18091,"name":"X-Men: Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis/4050-18091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10746/","id":10746,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-10746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18149/","id":18149,"name":"Stryfe's Strike File","site_detail_url":"https://comicvine.gamespot.com/stryfes-strike-file/4050-18149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6983/","id":6983,"name":"Exiles","site_detail_url":"https://comicvine.gamespot.com/exiles/4050-6983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65742/","id":65742,"name":"Official Handbook of the Marvel Universe: X-Men 2005","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-200/4050-65742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65743/","id":65743,"name":"Official Handbook of the Ultimate Marvel Universe: The Ultimates & X-Men 2005","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4050-65743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4604/","id":4604,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-4604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18366/","id":18366,"name":"Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia/4050-18366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18703/","id":18703,"name":"Ultimate X-Men/X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide/4050-18703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18726/","id":18726,"name":"X-Men Endangered Species","site_detail_url":"https://comicvine.gamespot.com/x-men-endangered-species/4050-18726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60494/","id":60494,"name":"Fantastic Four 1999","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-1999/4050-60494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22988/","id":22988,"name":"X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/x-men-annual/4050-22988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19016/","id":19016,"name":"WildC.A.T.S/X-Men: The Modern Age","site_detail_url":"https://comicvine.gamespot.com/wildcatsx-men-the-modern-age/4050-19016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9121/","id":9121,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-x-men/4050-9121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19758/","id":19758,"name":"Wizard Presents Cerebro’s Guide to the X-Men","site_detail_url":"https://comicvine.gamespot.com/wizard-presents-cerebros-guide-to-the-x-men/4050-19758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20469/","id":20469,"name":"X-Men Fairy Tales","site_detail_url":"https://comicvine.gamespot.com/x-men-fairy-tales/4050-20469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21196/","id":21196,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-21196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20691/","id":20691,"name":"X-Men: Legacy","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy/4050-20691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21382/","id":21382,"name":"X-Men: Inferno","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno/4050-21382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21082/","id":21082,"name":"Young X-Men","site_detail_url":"https://comicvine.gamespot.com/young-x-men/4050-21082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22443/","id":22443,"name":"The Beast","site_detail_url":"https://comicvine.gamespot.com/the-beast/4050-22443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22608/","id":22608,"name":"X-Men: Ronin","site_detail_url":"https://comicvine.gamespot.com/x-men-ronin/4050-22608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22614/","id":22614,"name":"X-Men: The Hellfire Club","site_detail_url":"https://comicvine.gamespot.com/x-men-the-hellfire-club/4050-22614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22689/","id":22689,"name":"X-Men Alterniverse Visions","site_detail_url":"https://comicvine.gamespot.com/x-men-alterniverse-visions/4050-22689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33895/","id":33895,"name":"X-Men: The Characters And Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe/4050-33895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23350/","id":23350,"name":"X-Men: Original Sin","site_detail_url":"https://comicvine.gamespot.com/x-men-original-sin/4050-23350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18130/","id":18130,"name":"Wolverine: Origins","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins/4050-18130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23817/","id":23817,"name":"Wolverine Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/wolverine-encyclopedia/4050-23817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18405/","id":18405,"name":"Uncanny X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual/4050-18405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25654/","id":25654,"name":"Marvel Spotlight: Joss Whedon & Michael Lark","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-joss-whedon-michael-lark/4050-25654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22981/","id":22981,"name":"Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25855/","id":25855,"name":"Essential Dazzler","site_detail_url":"https://comicvine.gamespot.com/essential-dazzler/4050-25855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25967/","id":25967,"name":"X-Men: Firestar","site_detail_url":"https://comicvine.gamespot.com/x-men-firestar/4050-25967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25971/","id":25971,"name":"The New Mutants Classic","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-classic/4050-25971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26305/","id":26305,"name":"Dark Reign: The Cabal","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-cabal/4050-26305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26776/","id":26776,"name":"Marvel Frontier Comics Special","site_detail_url":"https://comicvine.gamespot.com/marvel-frontier-comics-special/4050-26776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26954/","id":26954,"name":"X-Men: The Complete Onslaught Epic","site_detail_url":"https://comicvine.gamespot.com/x-men-the-complete-onslaught-epic/4050-26954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27153/","id":27153,"name":"What If Magneto Had Formed The X-Men With Professor X?","site_detail_url":"https://comicvine.gamespot.com/what-if-magneto-had-formed-the-x-men-with-professo/4050-27153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27368/","id":27368,"name":"X-Men Legacy: Original Sin","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-original-sin/4050-27368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20037/","id":20037,"name":"Uncanny X-Men: The New Age","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-new-age/4050-20037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27512/","id":27512,"name":"Uncanny X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus/4050-27512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27723/","id":27723,"name":"X-Men: Misfits","site_detail_url":"https://comicvine.gamespot.com/x-men-misfits/4050-27723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28012/","id":28012,"name":"New Warriors Classic","site_detail_url":"https://comicvine.gamespot.com/new-warriors-classic/4050-28012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28085/","id":28085,"name":"Dark X-Men: The Confession","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-the-confession/4050-28085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28565/","id":28565,"name":"Logan: Shadow Society","site_detail_url":"https://comicvine.gamespot.com/logan-shadow-society/4050-28565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28584/","id":28584,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn/4050-28584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28607/","id":28607,"name":"X-Men: Deadly Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-deadly-genesis/4050-28607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28975/","id":28975,"name":"Astonishing X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus/4050-28975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29498/","id":29498,"name":"Young X-Men: Final Genesis","site_detail_url":"https://comicvine.gamespot.com/young-x-men-final-genesis/4050-29498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29747/","id":29747,"name":"X-Men: Messiah CompleX","site_detail_url":"https://comicvine.gamespot.com/x-men-messiah-complex/4050-29747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29958/","id":29958,"name":"The Marvel X-Men Collection","site_detail_url":"https://comicvine.gamespot.com/the-marvel-x-men-collection/4050-29958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22455/","id":22455,"name":"The Official Handbook of the Marvel Universe: Master Edition","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-maste/4050-22455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30092/","id":30092,"name":"X-Men Legacy: Sins of the Father","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-sins-of-the-father/4050-30092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30093/","id":30093,"name":"X-Men Legacy: Divided He Stands","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-divided-he-stands/4050-30093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30096/","id":30096,"name":"X-Men: The Dark Phoenix Saga","site_detail_url":"https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga/4050-30096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30173/","id":30173,"name":"X-Force Annual","site_detail_url":"https://comicvine.gamespot.com/x-force-annual/4050-30173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30209/","id":30209,"name":"Astonishing X-Men: Dangerous","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-dangerous/4050-30209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30210/","id":30210,"name":"Astonishing X-Men: Torn","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-torn/4050-30210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30242/","id":30242,"name":"The Uncanny X-Men: From the Ashes...","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-from-the-ashes/4050-30242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30273/","id":30273,"name":"X-Treme X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-schism/4050-30273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30314/","id":30314,"name":"X Necrosha: The Gathering","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-the-gathering/4050-30314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30375/","id":30375,"name":"Astonishing X-Men Saga","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-saga/4050-30375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30386/","id":30386,"name":"X-Men: Dream's End","site_detail_url":"https://comicvine.gamespot.com/x-men-dreams-end/4050-30386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30807/","id":30807,"name":"Marvel Masterworks: The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men/4050-30807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26398/","id":26398,"name":"Excalibur Classic","site_detail_url":"https://comicvine.gamespot.com/excalibur-classic/4050-26398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30960/","id":30960,"name":"Siege Prelude","site_detail_url":"https://comicvine.gamespot.com/siege-prelude/4050-30960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31061/","id":31061,"name":"X-Men: Mutant Massacre","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre/4050-31061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20511/","id":20511,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-20511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31818/","id":31818,"name":"Marvel: Your Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe/4050-31818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21146/","id":21146,"name":"X-Men: Vignettes","site_detail_url":"https://comicvine.gamespot.com/x-men-vignettes/4050-21146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32316/","id":32316,"name":"X-Campus","site_detail_url":"https://comicvine.gamespot.com/x-campus/4050-32316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33383/","id":33383,"name":"X-Men Origins: Emma Frost","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-emma-frost/4050-33383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33436/","id":33436,"name":"The Marvel Encyclopedia The Definitive Guide To The Characters Of The Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-marvel-encyclopedia-the-definitive-guide-to-th/4050-33436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34001/","id":34001,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha/4050-34001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34032/","id":34032,"name":"X-Men: Curse Of The Mutants Saga","site_detail_url":"https://comicvine.gamespot.com/x-men-curse-of-the-mutants-saga/4050-34032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34051/","id":34051,"name":"X-Campus","site_detail_url":"https://comicvine.gamespot.com/x-campus/4050-34051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34108/","id":34108,"name":"Iron Man: Kiss and Kill","site_detail_url":"https://comicvine.gamespot.com/iron-man-kiss-and-kill/4050-34108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34123/","id":34123,"name":"X-Treme X-Men: Destiny","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-destiny/4050-34123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34603/","id":34603,"name":"X-Men: Phoenix Force Handbook","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-force-handbook/4050-34603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34725/","id":34725,"name":"New Mutants Forever","site_detail_url":"https://comicvine.gamespot.com/new-mutants-forever/4050-34725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34889/","id":34889,"name":"X-Mannen","site_detail_url":"https://comicvine.gamespot.com/x-mannen/4050-34889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34959/","id":34959,"name":"X-Men: Days of Future Past","site_detail_url":"https://comicvine.gamespot.com/x-men-days-of-future-past/4050-34959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35279/","id":35279,"name":"Wolverine: The Road to Hell","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-road-to-hell/4050-35279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35315/","id":35315,"name":"Uncanny X-Men: The Coming of Bishop","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-coming-of-bishop/4050-35315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35334/","id":35334,"name":"X-Men: We Are the X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-we-are-the-x-men/4050-35334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28237/","id":28237,"name":"Exiles Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection/4050-28237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34792/","id":34792,"name":"X-Marvel","site_detail_url":"https://comicvine.gamespot.com/x-marvel/4050-34792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36204/","id":36204,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men/4050-36204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36388/","id":36388,"name":"Exiles: The New Exiles","site_detail_url":"https://comicvine.gamespot.com/exiles-the-new-exiles/4050-36388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37176/","id":37176,"name":"X-Men: Prelude to Onslaught","site_detail_url":"https://comicvine.gamespot.com/x-men-prelude-to-onslaught/4050-37176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36821/","id":36821,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-36821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36996/","id":36996,"name":"Excalibur Visionaries: Warren Ellis","site_detail_url":"https://comicvine.gamespot.com/excalibur-visionaries-warren-ellis/4050-36996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37639/","id":37639,"name":"X-Campus","site_detail_url":"https://comicvine.gamespot.com/x-campus/4050-37639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37819/","id":37819,"name":"Spider-Man: Spirits of the Earth","site_detail_url":"https://comicvine.gamespot.com/spider-man-spirits-of-the-earth/4050-37819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36793/","id":36793,"name":"Wolverine and Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool/4050-36793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37845/","id":37845,"name":"Wolverine Unleashed","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed/4050-37845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37973/","id":37973,"name":"Heroic Age: X-Men","site_detail_url":"https://comicvine.gamespot.com/heroic-age-x-men/4050-37973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38200/","id":38200,"name":"What If...?: Why Not?","site_detail_url":"https://comicvine.gamespot.com/what-if-why-not/4050-38200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32701/","id":32701,"name":"The Amazing Spider-Man: The Complete Clone Saga Epic","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-the-complete-clone-saga-epi/4050-32701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37974/","id":37974,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-37974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39212/","id":39212,"name":"New Mutants: Forever","site_detail_url":"https://comicvine.gamespot.com/new-mutants-forever/4050-39212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39468/","id":39468,"name":"Women of Marvel: Celebrating Seven Decades","site_detail_url":"https://comicvine.gamespot.com/women-of-marvel-celebrating-seven-decades/4050-39468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39673/","id":39673,"name":"X-Men Origins II","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-ii/4050-39673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39912/","id":39912,"name":"Mutant X 2000","site_detail_url":"https://comicvine.gamespot.com/mutant-x-2000/4050-39912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39954/","id":39954,"name":"X-Men: Fall of the Mutants","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants/4050-39954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40111/","id":40111,"name":"Origins of Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics/4050-40111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40248/","id":40248,"name":"X-Men: Dark Phoenix Saga Complete Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-dark-phoenix-saga-complete-collection/4050-40248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40694/","id":40694,"name":"Uncanny X-Men: Quarantine","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-quarantine/4050-40694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40718/","id":40718,"name":"I Nuovi Mutanti","site_detail_url":"https://comicvine.gamespot.com/i-nuovi-mutanti/4050-40718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40828/","id":40828,"name":"X-Men Deluxe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe/4050-40828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41460/","id":41460,"name":"Gli Incredibili X-Men","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men/4050-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41197/","id":41197,"name":"Speciale X-Men","site_detail_url":"https://comicvine.gamespot.com/speciale-x-men/4050-41197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41203/","id":41203,"name":"Impossible Man","site_detail_url":"https://comicvine.gamespot.com/impossible-man/4050-41203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41281/","id":41281,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism/4050-41281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41777/","id":41777,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41780/","id":41780,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41781/","id":41781,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41938/","id":41938,"name":"Best of Marvel Essentials: Nuevos X-Men","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men/4050-41938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41042/","id":41042,"name":"Iron Age","site_detail_url":"https://comicvine.gamespot.com/iron-age/4050-41042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41969/","id":41969,"name":"Biblioteca Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men/4050-41969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42042/","id":42042,"name":"Coleccionable X-Men","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men/4050-42042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42476/","id":42476,"name":"Jóvenes X-Men","site_detail_url":"https://comicvine.gamespot.com/jovenes-x-men/4050-42476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42616/","id":42616,"name":"Los Exiliados","site_detail_url":"https://comicvine.gamespot.com/los-exiliados/4050-42616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42666/","id":42666,"name":"Marvel Deluxe: Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men/4050-42666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42684/","id":42684,"name":"Marvel Exklusiv","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv/4050-42684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42731/","id":42731,"name":"Marvel Méga","site_detail_url":"https://comicvine.gamespot.com/marvel-mega/4050-42731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42737/","id":42737,"name":"X-Men First Class: The High Hand","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-the-high-hand/4050-42737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45578/","id":45578,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-45578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42852/","id":42852,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-42852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43011/","id":43011,"name":"Evolutionary War Omnibus","site_detail_url":"https://comicvine.gamespot.com/evolutionary-war-omnibus/4050-43011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43163/","id":43163,"name":"X-Men by Chris Claremont & Jim Lee Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-by-chris-claremont-jim-lee-omnibus/4050-43163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40240/","id":40240,"name":"New X-Men By Grant Morrison","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison/4050-40240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43447/","id":43447,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-43447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43493/","id":43493,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43534/","id":43534,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-43534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43564/","id":43564,"name":"X-Men: Génesis Mortal","site_detail_url":"https://comicvine.gamespot.com/x-men-genesis-mortal/4050-43564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43575/","id":43575,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43580/","id":43580,"name":"X-Men Sonderband: X-Force","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force/4050-43580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43634/","id":43634,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43640/","id":43640,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43672/","id":43672,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43673/","id":43673,"name":"X-Men Legado","site_detail_url":"https://comicvine.gamespot.com/x-men-legado/4050-43673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43676/","id":43676,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-43676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43779/","id":43779,"name":"The Iron Age","site_detail_url":"https://comicvine.gamespot.com/the-iron-age/4050-43779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35835/","id":35835,"name":"Uncanny X-Force","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force/4050-35835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43539/","id":43539,"name":"Wolverine & the X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men/4050-43539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44853/","id":44853,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism/4050-44853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44923/","id":44923,"name":"Fator-X","site_detail_url":"https://comicvine.gamespot.com/fator-x/4050-44923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44934/","id":44934,"name":"Super-Heróis Premium: X-Men","site_detail_url":"https://comicvine.gamespot.com/super-herois-premium-x-men/4050-44934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45159/","id":45159,"name":"Generaciòn-X","site_detail_url":"https://comicvine.gamespot.com/generacion-x/4050-45159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45171/","id":45171,"name":"Generaciòn Mutante","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante/4050-45171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45186/","id":45186,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/inferno/4050-45186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45193/","id":45193,"name":"Factor-X","site_detail_url":"https://comicvine.gamespot.com/factor-x/4050-45193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36469/","id":36469,"name":"Generation Hope","site_detail_url":"https://comicvine.gamespot.com/generation-hope/4050-36469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45380/","id":45380,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men/4050-45380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45429/","id":45429,"name":"X-Men : Los Chicas son Guerreras","site_detail_url":"https://comicvine.gamespot.com/x-men-los-chicas-son-guerreras/4050-45429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45436/","id":45436,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men/4050-45436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45461/","id":45461,"name":"Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes/4050-45461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45497/","id":45497,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-45497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45547/","id":45547,"name":"Excalibur","site_detail_url":"https://comicvine.gamespot.com/excalibur/4050-45547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45551/","id":45551,"name":"Excalibur","site_detail_url":"https://comicvine.gamespot.com/excalibur/4050-45551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45602/","id":45602,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-45602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45912/","id":45912,"name":"Astonishing X-Men by Whedon and Cassaday Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4050-45912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45919/","id":45919,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha/4050-45919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45796/","id":45796,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-45796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46130/","id":46130,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-46130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46183/","id":46183,"name":"Patrulla-X: Cisma","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-cisma/4050-46183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46289/","id":46289,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-46289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46305/","id":46305,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-46305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46347/","id":46347,"name":"Age of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse/4050-46347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46564/","id":46564,"name":"Uncanny X-Force: The Dark Angel Saga, Book Two","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-force-the-dark-angel-saga-book-two/4050-46564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33937/","id":33937,"name":"The Astonishing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man/4050-33937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47272/","id":47272,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-47272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44350/","id":44350,"name":"Titans","site_detail_url":"https://comicvine.gamespot.com/titans/4050-44350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35263/","id":35263,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-35263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47859/","id":47859,"name":"Avengers Vs. X-Men: It's Coming","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-its-coming/4050-47859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47348/","id":47348,"name":"Lobezno y La Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x/4050-47348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49053/","id":49053,"name":"Wolverine and the X-Men by Jason Aaron","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron/4050-49053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49799/","id":49799,"name":"Generation Hope: The End of A Generation","site_detail_url":"https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation/4050-49799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49869/","id":49869,"name":"Amazing Spider-Man: The Graphic Novels","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-graphic-novels/4050-49869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49986/","id":49986,"name":"Wolverine e gli X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men/4050-49986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50033/","id":50033,"name":"X-Men Sonderband: X-Force","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force/4050-50033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50046/","id":50046,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-50046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50105/","id":50105,"name":"100% Marvel. Imposibles X-Force","site_detail_url":"https://comicvine.gamespot.com/100-marvel-imposibles-x-force/4050-50105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50334/","id":50334,"name":"Wolverine: Back in Japan","site_detail_url":"https://comicvine.gamespot.com/wolverine-back-in-japan/4050-50334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51402/","id":51402,"name":"X-Force: Child's Play","site_detail_url":"https://comicvine.gamespot.com/x-force-childs-play/4050-51402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51480/","id":51480,"name":"VvX: Los Vengadores Vs. La Patrulla-X: Prólogo","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-prologo/4050-51480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51719/","id":51719,"name":"Wolverine & die X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men/4050-51719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50043/","id":50043,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-50043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52353/","id":52353,"name":"X-Men Révolution","site_detail_url":"https://comicvine.gamespot.com/x-men-revolution/4050-52353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52533/","id":52533,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-52533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52926/","id":52926,"name":"X-Men: Bishop's Crossing","site_detail_url":"https://comicvine.gamespot.com/x-men-bishops-crossing/4050-52926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52927/","id":52927,"name":"X-Men: The Wedding of Cyclops and Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-men-the-wedding-of-cyclops-and-phoenix/4050-52927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54837/","id":54837,"name":"Age of Apocalypse: The X-Terminated","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-the-x-terminated/4050-54837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55161/","id":55161,"name":"Marvel World","site_detail_url":"https://comicvine.gamespot.com/marvel-world/4050-55161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51479/","id":51479,"name":"Patrulla-X: Generación Hope","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-generacion-hope/4050-51479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53919/","id":53919,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-53919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55673/","id":55673,"name":"X-Man: Dance With the Devil","site_detail_url":"https://comicvine.gamespot.com/x-man-dance-with-the-devil/4050-55673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55687/","id":55687,"name":"X-Men Sonderband: Age of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-age-of-apocalypse/4050-55687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53768/","id":53768,"name":"Best Comics: X-Men","site_detail_url":"https://comicvine.gamespot.com/best-comics-x-men/4050-53768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56166/","id":56166,"name":"Wiz","site_detail_url":"https://comicvine.gamespot.com/wiz/4050-56166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56320/","id":56320,"name":"Facteur-X","site_detail_url":"https://comicvine.gamespot.com/facteur-x/4050-56320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56350/","id":56350,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-56350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56751/","id":56751,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-56751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56897/","id":56897,"name":"100% Marvel. La Era de Apocalipsis","site_detail_url":"https://comicvine.gamespot.com/100-marvel-la-era-de-apocalipsis/4050-56897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57055/","id":57055,"name":"Marvel Mix","site_detail_url":"https://comicvine.gamespot.com/marvel-mix/4050-57055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57074/","id":57074,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-57074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42681/","id":42681,"name":"Marvel Deluxe: X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-treme-x-men/4050-42681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57427/","id":57427,"name":"Marvel: Les Grandes Sagas: X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-les-grandes-sagas-x-men/4050-57427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57481/","id":57481,"name":"X-Men: Fall of the Mutants","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants/4050-57481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57741/","id":57741,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-57741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57835/","id":57835,"name":"Superalmanaque Marvel","site_detail_url":"https://comicvine.gamespot.com/superalmanaque-marvel/4050-57835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55356/","id":55356,"name":"Marvel Select : New X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men/4050-55356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43059/","id":43059,"name":"Los Hombres X","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x/4050-43059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59622/","id":59622,"name":"Os Fabulosos X-Men","site_detail_url":"https://comicvine.gamespot.com/os-fabulosos-x-men/4050-59622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59822/","id":59822,"name":"Official Handbook of the Marvel Universe A-Z","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-z/4050-59822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57674/","id":57674,"name":"Uncanny X-Men: The Complete Collection By Matt Fraction","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4050-57674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60065/","id":60065,"name":"Age of Apocalypse: Weapon Omega","site_detail_url":"https://comicvine.gamespot.com/age-of-apocalypse-weapon-omega/4050-60065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60220/","id":60220,"name":"X-Men Hors Série","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie/4050-60220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60385/","id":60385,"name":"Astonishing X-Men Paperbacks","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks/4050-60385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60835/","id":60835,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x/4050-60835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60970/","id":60970,"name":"Avengers Vs X-Men Companion","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-companion/4050-60970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61318/","id":61318,"name":"New Warriors Omnibus","site_detail_url":"https://comicvine.gamespot.com/new-warriors-omnibus/4050-61318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43497/","id":43497,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62026/","id":62026,"name":"Marvel Classic : X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men/4050-62026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62430/","id":62430,"name":"Marvel Gold. Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes/4050-62430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62431/","id":62431,"name":"Marvel Gold. Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes/4050-62431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62432/","id":62432,"name":"Marvel Gold. Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes/4050-62432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62433/","id":62433,"name":"Marvel Gold. Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes/4050-62433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59391/","id":59391,"name":"Marvel Fact Files","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files/4050-59391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62951/","id":62951,"name":"X-Men: Ghosts","site_detail_url":"https://comicvine.gamespot.com/x-men-ghosts/4050-62951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58174/","id":58174,"name":"La Nueva Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x/4050-58174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64613/","id":64613,"name":"X-mannen Special","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special/4050-64613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64662/","id":64662,"name":"de New Mutants","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants/4050-64662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64735/","id":64735,"name":"Generatie X","site_detail_url":"https://comicvine.gamespot.com/generatie-x/4050-64735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65024/","id":65024,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-65024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65043/","id":65043,"name":"Die Ultimativen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men/4050-65043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65316/","id":65316,"name":"Ryhmä-X","site_detail_url":"https://comicvine.gamespot.com/ryhma-x/4050-65316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65645/","id":65645,"name":"Wolverine & Die X-Men Sonderband","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband/4050-65645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65022/","id":65022,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-65022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63785/","id":63785,"name":"I nuovissimi X-Men","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men/4050-63785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65026/","id":65026,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-65026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65646/","id":65646,"name":"Die Neuen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men/4050-65646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68166/","id":68166,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax/4050-68166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68829/","id":68829,"name":"Captain America Comic-Taschenbuch","site_detail_url":"https://comicvine.gamespot.com/captain-america-comictaschenbuch/4050-68829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68972/","id":68972,"name":"Marvel Firsts: The 1980's","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1980s/4050-68972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69175/","id":69175,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55915/","id":55915,"name":"Marvel Classic : X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men/4050-55915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69314/","id":69314,"name":"Novos X-Men: Planeta X","site_detail_url":"https://comicvine.gamespot.com/novos-xmen-planeta-x/4050-69314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69316/","id":69316,"name":"Enciclopedia Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-xmen/4050-69316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69317/","id":69317,"name":"ENCYCLOPÉDIE X-MEN","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-xmen/4050-69317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69318/","id":69318,"name":"Enciclopedia Marvel","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel/4050-69318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69319/","id":69319,"name":"X-MEN ENZYKLOPÄDIE","site_detail_url":"https://comicvine.gamespot.com/xmen-enzyklopadie/4050-69319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69327/","id":69327,"name":"X-Men. I personaggi e il loro universo","site_detail_url":"https://comicvine.gamespot.com/xmen-i-personaggi-e-il-loro-universo/4050-69327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45239/","id":45239,"name":"Supereroi Le Grandi Saghe","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe/4050-45239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69433/","id":69433,"name":"100% Marvel Best","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best/4050-69433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69642/","id":69642,"name":"Supreendentes X-Men","site_detail_url":"https://comicvine.gamespot.com/supreendentes-xmen/4050-69642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69791/","id":69791,"name":"Grandes Heróis Marvel","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel/4050-69791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69802/","id":69802,"name":"Maiores Clássicos dos X-Men","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-xmen/4050-69802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66815/","id":66815,"name":"X-Men: A Queda dos Mutantes","site_detail_url":"https://comicvine.gamespot.com/x-men-a-queda-dos-mutantes/4050-66815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69971/","id":69971,"name":"Marvel Deluxe","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe/4050-69971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69993/","id":69993,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70014/","id":70014,"name":"Supereroi - Il Mito","site_detail_url":"https://comicvine.gamespot.com/supereroi-il-mito/4050-70014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69176/","id":69176,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-69176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71243/","id":71243,"name":"Supereroi Le Leggende Marvel","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel/4050-71243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71484/","id":71484,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-71484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71502/","id":71502,"name":"Marvel Omnibus: Avengers vs X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-avengers-vs-xmen/4050-71502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71521/","id":71521,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71529/","id":71529,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71565/","id":71565,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71409/","id":71409,"name":"Utopia","site_detail_url":"https://comicvine.gamespot.com/utopia/4050-71409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71893/","id":71893,"name":"Marvel Monster Edition","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition/4050-71893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72000/","id":72000,"name":"X-Force by Craig Kyle & Chris Yost","site_detail_url":"https://comicvine.gamespot.com/xforce-by-craig-kyle-chris-yost/4050-72000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72523/","id":72523,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-xmen/4050-72523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73078/","id":73078,"name":"Marvel Omnibus: Uncanny X-Force","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-uncanny-xforce/4050-73078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73379/","id":73379,"name":"Projekt X / X-Men","site_detail_url":"https://comicvine.gamespot.com/projekt-x-xmen/4050-73379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73964/","id":73964,"name":"X-MEN: Zukunft ist Vergangenheit","site_detail_url":"https://comicvine.gamespot.com/xmen-zukunft-ist-vergangenheit/4050-73964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61802/","id":61802,"name":"Marvel Pocketbook","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook/4050-61802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74075/","id":74075,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-74075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74208/","id":74208,"name":"Marvel Select : X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-select-xmen/4050-74208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74211/","id":74211,"name":"Marvel Omnibus","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus/4050-74211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74246/","id":74246,"name":"Logan : Sociedade das Sombras","site_detail_url":"https://comicvine.gamespot.com/logan-sociedade-das-sombras/4050-74246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74250/","id":74250,"name":"O Melhor dos X-Men","site_detail_url":"https://comicvine.gamespot.com/o-melhor-dos-xmen/4050-74250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74291/","id":74291,"name":"100% Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men/4050-74291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74315/","id":74315,"name":"Marvel Deluxe X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-xmen/4050-74315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74316/","id":74316,"name":"Marvel Deluxe Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-xmen/4050-74316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74489/","id":74489,"name":"Die Gruppe X Taschenbuch","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch/4050-74489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77305/","id":77305,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen/4050-77305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72113/","id":72113,"name":"Wolverine & the X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-xmen/4050-72113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79512/","id":79512,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-xmen/4050-79512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79516/","id":79516,"name":"Wolverine and Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool/4050-79516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79739/","id":79739,"name":"Marvel Platinum: The Definitive X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-definitive-xmen/4050-79739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79793/","id":79793,"name":"Wolverine and the X-Men: Death of Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-xmen-death-of-wolverine/4050-79793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81833/","id":81833,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4050-81833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82296/","id":82296,"name":"Giant-Size X-Men: 40th Anniversary","site_detail_url":"https://comicvine.gamespot.com/giantsize-xmen-40th-anniversary/4050-82296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84178/","id":84178,"name":"Coleccionable Ultimate","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate/4050-84178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84347/","id":84347,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4050-84347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88953/","id":88953,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4050-88953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88764/","id":88764,"name":"Mockingbird","site_detail_url":"https://comicvine.gamespot.com/mockingbird/4050-88764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87190/","id":87190,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-87190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96144/","id":96144,"name":"IvX","site_detail_url":"https://comicvine.gamespot.com/ivx/4050-96144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85750/","id":85750,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4050-85750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98361/","id":98361,"name":"Uncanny X-Men: Superior - Waking From The Dream","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-superior-waking-from-the-dream/4050-98361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98729/","id":98729,"name":"Cloak and Dagger: Shadows and Light","site_detail_url":"https://comicvine.gamespot.com/cloak-and-dagger-shadows-and-light/4050-98729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93512/","id":93512,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-93512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99448/","id":99448,"name":"New Mutants Epic Collection: Renewal","site_detail_url":"https://comicvine.gamespot.com/new-mutants-epic-collection-renewal/4050-99448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101006/","id":101006,"name":"X-Men Origins: Firestar","site_detail_url":"https://comicvine.gamespot.com/xmen-origins-firestar/4050-101006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101027/","id":101027,"name":"True Believers: X-Men Gold","site_detail_url":"https://comicvine.gamespot.com/true-believers-xmen-gold/4050-101027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98996/","id":98996,"name":"All-New X-Men Hors Série","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-hors-serie/4050-98996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74446/","id":74446,"name":"Colección Extra Superhéroes","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes/4050-74446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103122/","id":103122,"name":"Uncanny X-Men: Superior: IvX","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-superior-ivx/4050-103122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100712/","id":100712,"name":"X-Men: Blue","site_detail_url":"https://comicvine.gamespot.com/x-men-blue/4050-100712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47347/","id":47347,"name":"Imposible Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x/4050-47347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103309/","id":103309,"name":"Coleccionable Marvel Héroes","site_detail_url":"https://comicvine.gamespot.com/coleccionable-marvel-heroes/4050-103309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94886/","id":94886,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-xmen/4050-94886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104686/","id":104686,"name":"Marvel Deluxe. Lobezno y la Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrullax/4050-104686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104729/","id":104729,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-104729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106113/","id":106113,"name":"Cable: The Hellfire Hunt","site_detail_url":"https://comicvine.gamespot.com/cable-the-hellfire-hunt/4050-106113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106707/","id":106707,"name":"X-Men Classic Omnibus","site_detail_url":"https://comicvine.gamespot.com/xmen-classic-omnibus/4050-106707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107965/","id":107965,"name":"X-Men: Legion: Shadow King Rising","site_detail_url":"https://comicvine.gamespot.com/xmen-legion-shadow-king-rising/4050-107965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109648/","id":109648,"name":"X-Men: Legion Quest","site_detail_url":"https://comicvine.gamespot.com/xmen-legion-quest/4050-109648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112481/","id":112481,"name":"X-Men: Grand Design - Second Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-112481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112607/","id":112607,"name":"X-Men: The Dark Phoenix Saga Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-the-dark-phoenix-saga-omnibus/4050-112607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112847/","id":112847,"name":"John Byrne's X-Men Artifact Edition","site_detail_url":"https://comicvine.gamespot.com/john-byrnes-x-men-artifact-edition/4050-112847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-113273/","id":113273,"name":"X-Men: The Wedding of Cyclops & Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-men-the-wedding-of-cyclops-and-phoenix/4050-113273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114948/","id":114948,"name":"X-Men: Grand Design - Second Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-114948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114923/","id":114923,"name":"X-Men: Black - Emma Frost","site_detail_url":"https://comicvine.gamespot.com/x-men-black-emma-frost/4050-114923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116089/","id":116089,"name":"X-Men: Reload by Chris Claremont: The End of History","site_detail_url":"https://comicvine.gamespot.com/x-men-reload-by-chris-claremont-the-end-of-history/4050-116089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117481/","id":117481,"name":"X-Men Black","site_detail_url":"https://comicvine.gamespot.com/x-men-black/4050-117481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117788/","id":117788,"name":"X-Men Resurrxion","site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion/4050-117788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117893/","id":117893,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-117893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117439/","id":117439,"name":"Cosmic Ghost Rider Destroys Marvel History","site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history/4050-117439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115285/","id":115285,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men/4050-115285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120307/","id":120307,"name":"History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe/4050-120307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120959/","id":120959,"name":"Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/marvel-comics/4050-120959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119782/","id":119782,"name":"Uncanny X-Men: Cyclops and Wolverine","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-cyclops-and-wolverine/4050-119782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121746/","id":121746,"name":"True Believers: The Uncanny X-Men: Bishop","site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-bishop/4050-121746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121747/","id":121747,"name":"True Believers: The Uncanny X-Men: Kitty Pryde & Emma Frost","site_detail_url":"https://comicvine.gamespot.com/true-believers-the-uncanny-x-men-kitty-pryde-and-e/4050-121747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120407/","id":120407,"name":"Powers of X","site_detail_url":"https://comicvine.gamespot.com/powers-of-x/4050-120407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122218/","id":122218,"name":"Marauders","site_detail_url":"https://comicvine.gamespot.com/marauders/4050-122218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123413/","id":123413,"name":"House of X/Powers of X","site_detail_url":"https://comicvine.gamespot.com/house-of-xpowers-of-x/4050-123413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125179/","id":125179,"name":"Merodeadores","site_detail_url":"https://comicvine.gamespot.com/merodeadores/4050-125179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125481/","id":125481,"name":"Marvel Comics 1000 Collection","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-1000-collection/4050-125481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125508/","id":125508,"name":"The New Mutants L'intégrale","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-lintegrale/4050-125508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124996/","id":124996,"name":"Dawn of X","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x/4050-124996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125698/","id":125698,"name":"Fabulosos X-Men","site_detail_url":"https://comicvine.gamespot.com/fabulosos-x-men/4050-125698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125700/","id":125700,"name":"X-Men: Inferno","site_detail_url":"https://comicvine.gamespot.com/x-men-inferno/4050-125700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125803/","id":125803,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-125803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125813/","id":125813,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-125813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125824/","id":125824,"name":"X-Men Milestones: Messiah Complex","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-messiah-complex/4050-125824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125897/","id":125897,"name":"Surpreendentes X-Men - Edição Especial ","site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial/4050-125897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126382/","id":126382,"name":"Marauders by Gerry Duggan","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan/4050-126382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129245/","id":129245,"name":"Giant-Size X-Men: Fantomex","site_detail_url":"https://comicvine.gamespot.com/giant-size-x-men-fantomex/4050-129245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130339/","id":130339,"name":"X-Men: Grand Design Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus/4050-130339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64622/","id":64622,"name":"Twisted Toyfare Theatre","site_detail_url":"https://comicvine.gamespot.com/twisted-toyfare-theatre/4050-64622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132642/","id":132642,"name":"New Mutants Omnibus","site_detail_url":"https://comicvine.gamespot.com/new-mutants-omnibus/4050-132642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136937/","id":136937,"name":"Planet-Size X-Men","site_detail_url":"https://comicvine.gamespot.com/planet-size-x-men/4050-136937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140248/","id":140248,"name":"X-Men Epic Collection: I, Magneto","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-i-magneto/4050-140248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140445/","id":140445,"name":"X-Men: Hellfire Gala – The Red Carpet Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-the-red-carpet-collection/4050-140445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141459/","id":141459,"name":"Marauders Annual","site_detail_url":"https://comicvine.gamespot.com/marauders-annual/4050-141459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141461/","id":141461,"name":"X-Men: Hellfire Gala ","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala/4050-141461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142082/","id":142082,"name":"X-Men Epic Collection: Bishop's Crossing","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-bishops-crossing/4050-142082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142081/","id":142081,"name":"X-Men By Jonathan Hickman Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-by-jonathan-hickman-omnibus/4050-142081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137265/","id":137265,"name":"Reign of X","site_detail_url":"https://comicvine.gamespot.com/reign-of-x/4050-137265/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/team-details/team-4060-3191.json b/samples/api-data/team-details/team-4060-3191.json new file mode 100644 index 0000000..f786e91 --- /dev/null +++ b/samples/api-data/team-details/team-4060-3191.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Lowest Caste\r\nOutcasts","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3191/","character_enemies":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13369/","id":13369,"name":"Arclight","site_detail_url":"https://comicvine.gamespot.com/arclight/4005-13369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9737/","id":9737,"name":"Blockbuster","site_detail_url":"https://comicvine.gamespot.com/blockbuster/4005-9737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1802/","id":1802,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4005-1802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14083/","id":14083,"name":"Fu Manchu","site_detail_url":"https://comicvine.gamespot.com/fu-manchu/4005-14083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9733/","id":9733,"name":"Harpoon","site_detail_url":"https://comicvine.gamespot.com/harpoon/4005-9733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1492/","id":1492,"name":"Iron Fist","site_detail_url":"https://comicvine.gamespot.com/iron-fist/4005-1492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3179/","id":3179,"name":"Mr. Sinister","site_detail_url":"https://comicvine.gamespot.com/mr-sinister/4005-3179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47201/","id":47201,"name":"Nightwind","site_detail_url":"https://comicvine.gamespot.com/nightwind/4005-47201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9736/","id":9736,"name":"Prism","site_detail_url":"https://comicvine.gamespot.com/prism/4005-9736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15449/","id":15449,"name":"Razor-Fist","site_detail_url":"https://comicvine.gamespot.com/razor-fist/4005-15449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9732/","id":9732,"name":"Riptide","site_detail_url":"https://comicvine.gamespot.com/riptide/4005-9732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4563/","id":4563,"name":"Sabretooth","site_detail_url":"https://comicvine.gamespot.com/sabretooth/4005-4563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9734/","id":9734,"name":"Scalphunter","site_detail_url":"https://comicvine.gamespot.com/scalphunter/4005-9734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9735/","id":9735,"name":"Scrambler","site_detail_url":"https://comicvine.gamespot.com/scrambler/4005-9735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4578/","id":4578,"name":"Taskmaster","site_detail_url":"https://comicvine.gamespot.com/taskmaster/4005-4578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1536/","id":1536,"name":"Typhoid Mary","site_detail_url":"https://comicvine.gamespot.com/typhoid-mary/4005-1536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3561/","id":3561,"name":"Vertigo","site_detail_url":"https://comicvine.gamespot.com/vertigo/4005-3561/"}],"character_friends":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12716/","id":12716,"name":"Shang-Chi","site_detail_url":"https://comicvine.gamespot.com/shang-chi/4005-12716/"}],"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57671/","id":57671,"name":"Alex","site_detail_url":"https://comicvine.gamespot.com/alex/4005-57671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45613/","id":45613,"name":"Angel Dust","site_detail_url":"https://comicvine.gamespot.com/angel-dust/4005-45613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14473/","id":14473,"name":"Annalee","site_detail_url":"https://comicvine.gamespot.com/annalee/4005-14473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13368/","id":13368,"name":"Ape","site_detail_url":"https://comicvine.gamespot.com/ape/4005-13368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14552/","id":14552,"name":"Beautiful Dreamer","site_detail_url":"https://comicvine.gamespot.com/beautiful-dreamer/4005-14552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30570/","id":30570,"name":"Berzerker","site_detail_url":"https://comicvine.gamespot.com/berzerker/4005-30570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44603/","id":44603,"name":"Bliss","site_detail_url":"https://comicvine.gamespot.com/bliss/4005-44603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14474/","id":14474,"name":"Blow-Hard","site_detail_url":"https://comicvine.gamespot.com/blow-hard/4005-14474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81812/","id":81812,"name":"Boost","site_detail_url":"https://comicvine.gamespot.com/boost/4005-81812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27516/","id":27516,"name":"Brain Cell","site_detail_url":"https://comicvine.gamespot.com/brain-cell/4005-27516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71208/","id":71208,"name":"Brute","site_detail_url":"https://comicvine.gamespot.com/brute/4005-71208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30681/","id":30681,"name":"Bulk","site_detail_url":"https://comicvine.gamespot.com/bulk/4005-30681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9637/","id":9637,"name":"Caliban","site_detail_url":"https://comicvine.gamespot.com/caliban/4005-9637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3423/","id":3423,"name":"Callisto","site_detail_url":"https://comicvine.gamespot.com/callisto/4005-3423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161312/","id":161312,"name":"Carapace","site_detail_url":"https://comicvine.gamespot.com/carapace/4005-161312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57708/","id":57708,"name":"Carver","site_detail_url":"https://comicvine.gamespot.com/carver/4005-57708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75024/","id":75024,"name":"Cell","site_detail_url":"https://comicvine.gamespot.com/cell/4005-75024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41846/","id":41846,"name":"Chicken Wings","site_detail_url":"https://comicvine.gamespot.com/chicken-wings/4005-41846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-158846/","id":158846,"name":"Compound","site_detail_url":"https://comicvine.gamespot.com/compound/4005-158846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149255/","id":149255,"name":"Croc","site_detail_url":"https://comicvine.gamespot.com/croc/4005-149255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14475/","id":14475,"name":"Cybelle","site_detail_url":"https://comicvine.gamespot.com/cybelle/4005-14475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14559/","id":14559,"name":"Cypher","site_detail_url":"https://comicvine.gamespot.com/cypher/4005-14559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81813/","id":81813,"name":"D'Gard","site_detail_url":"https://comicvine.gamespot.com/dgard/4005-81813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-72242/","id":72242,"name":"Dana Moonstar","site_detail_url":"https://comicvine.gamespot.com/dana-moonstar/4005-72242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3422/","id":3422,"name":"Dark Beast","site_detail_url":"https://comicvine.gamespot.com/dark-beast/4005-3422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45616/","id":45616,"name":"Electric Eve","site_detail_url":"https://comicvine.gamespot.com/electric-eve/4005-45616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28244/","id":28244,"name":"Ent","site_detail_url":"https://comicvine.gamespot.com/ent/4005-28244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13366/","id":13366,"name":"Erg","site_detail_url":"https://comicvine.gamespot.com/erg/4005-13366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85859/","id":85859,"name":"Eva","site_detail_url":"https://comicvine.gamespot.com/eva/4005-85859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15134/","id":15134,"name":"Ever","site_detail_url":"https://comicvine.gamespot.com/ever/4005-15134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15099/","id":15099,"name":"Fatale","site_detail_url":"https://comicvine.gamespot.com/fatale/4005-15099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2160/","id":2160,"name":"Feral","site_detail_url":"https://comicvine.gamespot.com/feral/4005-2160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15322/","id":15322,"name":"Fever Pitch","site_detail_url":"https://comicvine.gamespot.com/fever-pitch/4005-15322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19365/","id":19365,"name":"Fugue","site_detail_url":"https://comicvine.gamespot.com/fugue/4005-19365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30152/","id":30152,"name":"Glow Worm","site_detail_url":"https://comicvine.gamespot.com/glow-worm/4005-30152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13365/","id":13365,"name":"Healer","site_detail_url":"https://comicvine.gamespot.com/healer/4005-13365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25521/","id":25521,"name":"Hemingway","site_detail_url":"https://comicvine.gamespot.com/hemingway/4005-25521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28351/","id":28351,"name":"Hump","site_detail_url":"https://comicvine.gamespot.com/hump/4005-28351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151157/","id":151157,"name":"Joey","site_detail_url":"https://comicvine.gamespot.com/joey/4005-151157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150976/","id":150976,"name":"Joey Bugs","site_detail_url":"https://comicvine.gamespot.com/joey-bugs/4005-150976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3548/","id":3548,"name":"Kitty Pryde","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde/4005-3548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3193/","id":3193,"name":"Leech","site_detail_url":"https://comicvine.gamespot.com/leech/4005-3193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41704/","id":41704,"name":"Litterbug","site_detail_url":"https://comicvine.gamespot.com/litterbug/4005-41704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4444/","id":4444,"name":"Lockheed","site_detail_url":"https://comicvine.gamespot.com/lockheed/4005-4444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65083/","id":65083,"name":"Loss","site_detail_url":"https://comicvine.gamespot.com/loss/4005-65083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151823/","id":151823,"name":"Madin","site_detail_url":"https://comicvine.gamespot.com/madin/4005-151823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164710/","id":164710,"name":"Marilou","site_detail_url":"https://comicvine.gamespot.com/marilou/4005-164710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151841/","id":151841,"name":"Marked Man","site_detail_url":"https://comicvine.gamespot.com/marked-man/4005-151841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13726/","id":13726,"name":"Marrow","site_detail_url":"https://comicvine.gamespot.com/marrow/4005-13726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7252/","id":7252,"name":"Masque","site_detail_url":"https://comicvine.gamespot.com/masque/4005-7252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65187/","id":65187,"name":"Membrain","site_detail_url":"https://comicvine.gamespot.com/membrain/4005-65187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41847/","id":41847,"name":"MeMe","site_detail_url":"https://comicvine.gamespot.com/meme/4005-41847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14830/","id":14830,"name":"Mikhail Rasputin","site_detail_url":"https://comicvine.gamespot.com/mikhail-rasputin/4005-14830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57429/","id":57429,"name":"Missy","site_detail_url":"https://comicvine.gamespot.com/missy/4005-57429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28872/","id":28872,"name":"Mole","site_detail_url":"https://comicvine.gamespot.com/mole/4005-28872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59377/","id":59377,"name":"Monte","site_detail_url":"https://comicvine.gamespot.com/monte/4005-59377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28287/","id":28287,"name":"Mother Inferior","site_detail_url":"https://comicvine.gamespot.com/mother-inferior/4005-28287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1461/","id":1461,"name":"Nightcrawler","site_detail_url":"https://comicvine.gamespot.com/nightcrawler/4005-1461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15012/","id":15012,"name":"Note","site_detail_url":"https://comicvine.gamespot.com/note/4005-15012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67052/","id":67052,"name":"Opsidian","site_detail_url":"https://comicvine.gamespot.com/opsidian/4005-67052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48165/","id":48165,"name":"Pester","site_detail_url":"https://comicvine.gamespot.com/pester/4005-48165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13886/","id":13886,"name":"Piper","site_detail_url":"https://comicvine.gamespot.com/piper/4005-13886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57428/","id":57428,"name":"Pixie","site_detail_url":"https://comicvine.gamespot.com/pixie/4005-57428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24133/","id":24133,"name":"Plague","site_detail_url":"https://comicvine.gamespot.com/plague/4005-24133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45620/","id":45620,"name":"Postman","site_detail_url":"https://comicvine.gamespot.com/postman/4005-45620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60353/","id":60353,"name":"Revelation","site_detail_url":"https://comicvine.gamespot.com/revelation/4005-60353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25523/","id":25523,"name":"Reverb","site_detail_url":"https://comicvine.gamespot.com/reverb/4005-25523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25522/","id":25522,"name":"Sack","site_detail_url":"https://comicvine.gamespot.com/sack/4005-25522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71207/","id":71207,"name":"Samson","site_detail_url":"https://comicvine.gamespot.com/samson/4005-71207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12641/","id":12641,"name":"Scaleface","site_detail_url":"https://comicvine.gamespot.com/scaleface/4005-12641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15013/","id":15013,"name":"Seer","site_detail_url":"https://comicvine.gamespot.com/seer/4005-15013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45622/","id":45622,"name":"Shatter","site_detail_url":"https://comicvine.gamespot.com/shatter/4005-45622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152833/","id":152833,"name":"Simian ","site_detail_url":"https://comicvine.gamespot.com/simian/4005-152833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3194/","id":3194,"name":"Skids","site_detail_url":"https://comicvine.gamespot.com/skids/4005-3194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175506/","id":175506,"name":"Slyme","site_detail_url":"https://comicvine.gamespot.com/slyme/4005-175506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81191/","id":81191,"name":"Soteira","site_detail_url":"https://comicvine.gamespot.com/soteira/4005-81191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47514/","id":47514,"name":"Spyke","site_detail_url":"https://comicvine.gamespot.com/spyke/4005-47514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1444/","id":1444,"name":"Storm","site_detail_url":"https://comicvine.gamespot.com/storm/4005-1444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7969/","id":7969,"name":"Sunder","site_detail_url":"https://comicvine.gamespot.com/sunder/4005-7969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14553/","id":14553,"name":"Tar Baby","site_detail_url":"https://comicvine.gamespot.com/tar-baby/4005-14553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81814/","id":81814,"name":"Tether","site_detail_url":"https://comicvine.gamespot.com/tether/4005-81814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3192/","id":3192,"name":"Thornn","site_detail_url":"https://comicvine.gamespot.com/thornn/4005-3192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15011/","id":15011,"name":"Thumper","site_detail_url":"https://comicvine.gamespot.com/thumper/4005-15011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-164709/","id":164709,"name":"Tobe","site_detail_url":"https://comicvine.gamespot.com/tobe/4005-164709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14476/","id":14476,"name":"Tommy","site_detail_url":"https://comicvine.gamespot.com/tommy/4005-14476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15010/","id":15010,"name":"Tracker","site_detail_url":"https://comicvine.gamespot.com/tracker/4005-15010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75043/","id":75043,"name":"Trader","site_detail_url":"https://comicvine.gamespot.com/trader/4005-75043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25520/","id":25520,"name":"Vessel","site_detail_url":"https://comicvine.gamespot.com/vessel/4005-25520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154135/","id":154135,"name":"Warthog","site_detail_url":"https://comicvine.gamespot.com/warthog/4005-154135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4557/","id":4557,"name":"Wolfsbane","site_detail_url":"https://comicvine.gamespot.com/wolfsbane/4005-4557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13377/","id":13377,"name":"Zeek","site_detail_url":"https://comicvine.gamespot.com/zeek/4005-13377/"}],"count_of_isssue_appearances":0,"count_of_team_members":91,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-01-02 13:24:42","deck":"Outcasts from society, the Morlocks were a community of mutants who lived in tunnels beneath New York City and its vicinity.","description":"

    Origin

    \"First
    First Group

    This community was founded by the mutant Callisto who discovered the \"Alley\", a tunnel that runs the length of Manhattan, and is the center of a network of tunnels built in the 1950's by the U.S.government in case of a nuclear war. It is part of a tunnel system which extends into New Jersey, Connecticut, and New York state. Callisto first found the mutant Caliban who had the power to psionically locate other mutants. Using Caliban ability, Callisto located and gathered together many other mutants who had run away from human society. Many had been experiments of the evil geneticist, Dark Beast who arrived in this time-line from the Age of Apocalypse, where he had worked under his reality's Mr. Sinister. The other founding members of the Morlocks include Masque who can rearrange a persons looks, and Sunder the strongest of the initial group of Morlocks. Callisto herself not without a sense of humor named the loose knit group the Morlocks, after the H. G. Wells novel The Time Machine. Morlock's aren't always unified or even limited to New York, as their have been several splinter Morlock groups and groups of disaffected mutants from across the globe have adopted the name.

    Creation

    The Morlocks are a Marvel comics creation and name given to an underground group of mutants who are disaffected and feel shunned by society. The Morlocks were created by writer Chris Claremont and artist Paul Smith, first appearing in Uncanny X-Men #169. Their name is inspired by the H. G. Wells novel The Time Machine, which also features a similar group of underground beings.

    They are described in The New Mutants #99 - The Beginning of the End Part Two as disfigured mutants who have abandoned any hope of survival on the surface.

    Team Evolution

    There have been various Morlocks over time, often with multiple groups, coexisting alongside each other, with some groups membership swelling as others dwindle or vice versa. One of the first distinctions among the Morlocks, was with one group, the Tunnelers, who had grown dissatisfied with Callisto's main group of Morlocks, so splintered off. These Tunnelers consisting of Masque, Blow Hard, Scaleface, and Berserker. They lived in the underground tunnel section. The main group of Morlock's running linear at the time being known as the Drain Dwellers, Callisto, Sunder, Erg, Leech, Tar Baby, Ape, Annalee, Plague, Healer, Killron, Piper and Beautiful Dreamer.

    Other Morlock's to have joined at one time or another, include Bulk, Glow Worm, Tommy, Cybelle, Zeek, Marrow, Skids, Lightning Bug, Samson, Mole, Chicken Wings, Brute, Hump, Pixie, Alex, Bliss, Brain Cell, Carver, Delphi, Ent, Feral, Thornn, Fugue, Groonk, Irving, Jo, Joey, Marked Man, Meme, Missy, Monte, Mother Inferior, Qwerty, Revelation, and Soteira.

    There has also been a London branch of Morlocks. This group consisting of Burning Puddle, Carla, Compound, Croc, Cyclops, Double Helix, Harmony, Hope, Miss Saccharine, Scree, Simian, Vampyr and Warthog. As well as a Chicago branch, which consisted of Angel Dust, Cell, Electric Eve, Litterbug, Shatter and Trader. Then there was also a splinter Morlock group that came about when powerful but slightly mad mutant Mikhail Rasputin opened a portal from the Morlock tunnels and ferried Morlock members away to a place known as the Hill, where time passed at a different consistency, causing many of the Morlock's whisked away much older when they returned to their native reality. This group consisted of the Morlock's Hemingway, Vessel, Sack, Reverb, Loss, Charm, Fever Pitch, Iron Maiden, Integer, Wynter, Membrain, Opsidian and Maverick. This group was also known as Gene Nation.

    Major Story Arcs

    A Change in Leadership

    \"No

    At one point, Callisto and the Marauders had kidnapped Angel, intending to make him her mate. To save him, Storm fought Callisto and displacing her as leader and forming an alliance with the X-Men.

    Mutant Massacre

    The unthinkable happened when a group of mercenaries named the Marauders who had been hired by Sinister and lead by Gambit, to break into the tunnels and exterminate the Morlocks, because Sinister recognized that they were mutated using his work. When Gambit realized he had been misled about the mission, he managed to save a young mutant with protruding bones covering her body. Most had been killed but some escaped, a few with the help of the X-Men and original X-Factor.

    M-day

    After M-Day, Some former Morlocks who lost their powers were Angel Dust, Boost, Irving, Qwerty, Delphi, Callisto, Marrow, Postman, Shatter, Tether and the probability of Feral and Thornn. However, Feral and Thornn were later seen re-powered. Explanations as to how this happened have yet to be provided. Sally interviews Marrow about the Morlocks. Marrow reports that 80% of the remaining Morlocks are de-powered now and look like humans. She states that most of them are still afraid about going out of the tunnels.

    Currently, Marrow works as a watchmen of the Morlocks, as she is called by the remaining ones when problems occur. She explained this status in the aftermath of thirteen de-powered Morlocks murder by Ghoul.One character commented that, post-M-Day, the chance of meeting a Morlock in the Tunnels under New York is now harder than meeting an alligator in the Floridian sewers. Some former Morlocks who actually kept their powers sought refugee at Xavier's Institute and became known as 198. They are Beautiful Dreamer, Caliban, Erg, Leech, and Skids. Dark Beast and Mikhail Rasputin are also still powered, though Mikhail is in The Dark Zone

    Surviving Morlocks

    There are not many of the Morlocks alive today, only Masque, Callisto (de-powered), Erg, Leech, Bliss, Litterbug, Marrow (de-powered) and Skids.

    The Morlocks recently banded again and were saved by the New Warriors. Marrow, Skids, Erg and Bliss rejoined and there are new members.

    Alternate Realities

    Earth-295: Age of Apocalypse

    The Morlocks were experiments of Mr. Sinister and Dark Beast, adding to them mutations and abilities. After Apocalypse´s defeat and the prisoners of Breeding Pens were released by Cyclops and Jean Grey, the Morlocks returned to their tunnels. One year later, Magneto offered them the possibility to live on the surface and left the tunnels under Manhattan. But, their leader Marrow declined the offer and attacked Silver Samurai, thus the tunnels became a battlefield where Magneto, Xorn (Husk in disguise) and several Morlocks were injured. At the end, the Morlocks were incarcerated in the X-Men's facilities.

    Known members: Marrow (leader), Feral, Skids, Leech, Thorn.

    Earth-1610

    The Ultimate Morlocks are led by Sunder. Members include Callisto, Caliban and Leech.

    Other Media

    Film

    X2: X-Men United

    \"Morlocke\" is listed in William Stryker's files on Lady Deathstrike's computer. It's assumed to be a typo for Morlocks.

    Television

    X-Men: The Animated Series

    In this cartoon adaptation; the Morlocks are very much the same as their 616 counterpart. But it is unclear on all the members. They are first shown being lead by Callisto.

    X-Men: Evolution

    Here they are also are very much the same as their 616 counterpart. But it is unclear on all the members. They are lead by Callisto. Some of the members include; Caliban, (later joined by) Spyke.

    ","disbanded_in_issues":[],"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-23139/","id":23139,"name":"Catacombs","issue_number":"169"},"id":3191,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/79461-179332-morlocks.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/79461-179332-morlocks.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/79461-179332-morlocks.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/79461-179332-morlocks.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/79461-179332-morlocks.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/79461-179332-morlocks.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/79461-179332-morlocks.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/79461-179332-morlocks.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/79461-179332-morlocks.jpg","image_tags":"All Images,Alternate Team"},"isssues_disbanded_in":[],"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-921205/","id":921205,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legends-mutant-mayhem-1-volume-2/4000-921205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-932627/","id":932627,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-14-volume-14/4000-932627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905752/","id":905752,"name":"Monsters","site_detail_url":"https://comicvine.gamespot.com/x-men-legends-11-monsters/4000-905752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898704/","id":898704,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-epic-collection-the-circle-chase-1-volume/4000-898704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903135/","id":903135,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-16/4000-903135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864577/","id":864577,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-13-volume-13/4000-864577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842206/","id":842206,"name":"Fire & Ice","site_detail_url":"https://comicvine.gamespot.com/marauders-19-fire-and-ice/4000-842206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828998/","id":828998,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-4-volume-4/4000-828998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803640/","id":803640,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-soulsword-1/4000-803640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797999/","id":797999,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-greycrow-1/4000-797999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799762/","id":799762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903315/","id":903315,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infernales-1/4000-903315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743440/","id":743440,"name":"Let Them Be Snakes","site_detail_url":"https://comicvine.gamespot.com/hellions-1-let-them-be-snakes/4000-743440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739614/","id":739614,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/power-pack-classic-omnibus-1-volume-1/4000-739614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736685/","id":736685,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/adventures-of-the-x-men-tooth-and-claw-1-tpb/4000-736685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716730/","id":716730,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-1-tpb/4000-716730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711971/","id":711971,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-2/4000-711971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714681/","id":714681,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-mutant-massacre-1-tpb/4000-714681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737995/","id":737995,"name":"Hombre de Hielo 3","site_detail_url":"https://comicvine.gamespot.com/100-marvel-hombre-de-hielo-3-hombre-de-hielo-3/4000-737995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709915/","id":709915,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-1/4000-709915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705920/","id":705920,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/iceman-amazing-friends-1-volume-3/4000-705920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703048/","id":703048,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/death-of-wolverine-companion-1-tpb/4000-703048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691399/","id":691399,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre-omnibus-1-hc/4000-691399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684906/","id":684906,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iceman-1/4000-684906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690617/","id":690617,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1-vol-2/4000-690617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682508/","id":682508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-2/4000-682508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704568/","id":704568,"name":"Um Novo Começo","site_detail_url":"https://comicvine.gamespot.com/x-men-20-um-novo-comeco/4000-704568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669957/","id":669957,"name":null,"site_detail_url":"https://comicvine.gamespot.com/essential-x-men-1/4000-669957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671343/","id":671343,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-amazing-immortal-man-and-other-blood/4000-671343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664713/","id":664713,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-1-vol-1/4000-664713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664318/","id":664318,"name":"Volume 0","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-homecoming-1-volume-0/4000-664318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647842/","id":647842,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-1/4000-647842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704107/","id":704107,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion-1/4000-704107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702749/","id":702749,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-329/4000-702749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704551/","id":704551,"name":"Guerras apocalípticas","site_detail_url":"https://comicvine.gamespot.com/x-men-10-guerras-apocalipticas/4000-704551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704550/","id":704550,"name":"Identidade X","site_detail_url":"https://comicvine.gamespot.com/x-men-9-identidade-x/4000-704550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611864/","id":611864,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-63/4000-611864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704549/","id":704549,"name":"Dualidade","site_detail_url":"https://comicvine.gamespot.com/x-men-8-dualidade/4000-704549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590811/","id":590811,"name":"Back To The Basics Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-1-back-to-the-basics-part-1/4000-590811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594859/","id":594859,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-10/4000-594859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591428/","id":591428,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-9/4000-591428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588244/","id":588244,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-8/4000-588244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588581/","id":588581,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-epic-collection-under-the-gun-1-volume-1/4000-588581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580758/","id":580758,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-10-volume-10/4000-580758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601079/","id":601079,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-319/4000-601079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601076/","id":601076,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-318/4000-601076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581283/","id":581283,"name":"Les guerres d'Apocalypse (3/3)","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-7-les-guerres-dapocalypse-33/4000-581283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601070/","id":601070,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-317/4000-601070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581282/","id":581282,"name":"Les guerres d'Apocalypse (2/3)","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-6-les-guerres-dapocalypse-23/4000-581282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611772/","id":611772,"name":"Guerras de Apocalipsis","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-53-guerras-de-apocalipsis/4000-611772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551328/","id":551328,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-apocalypse-wars-1-hc/4000-551328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549895/","id":549895,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-52/4000-549895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537956/","id":537956,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-9/4000-537956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535372/","id":535372,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-535372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528525/","id":528525,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-7/4000-528525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541090/","id":541090,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-62/4000-541090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516096/","id":516096,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-3-volume-3/4000-516096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635526/","id":635526,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-22/4000-635526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490885/","id":490885,"name":"Chapter Two: Master's Son","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-2-chapter-two-masters-son/4000-490885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635165/","id":635165,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-19/4000-635165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489321/","id":489321,"name":"Chapter One: Master Drunk","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu-1-chapter-one-master-drunk/4000-489321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499988/","id":499988,"name":"décrépitude","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-21-decrepitude/4000-499988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592884/","id":592884,"name":"I SEGRETI DI XAVIER","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-296-i-segreti-di-xavier/4000-592884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478762/","id":478762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-omnibus-1-hc/4000-478762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467653/","id":467653,"name":"","site_detail_url":"https://comicvine.gamespot.com/nightcrawler-7/4000-467653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458619/","id":458619,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-6/4000-458619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463710/","id":463710,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-force-by-craig-kyle-chris-yost-2-volume-2/4000-463710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466448/","id":466448,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-101/4000-466448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453661/","id":453661,"name":"Les origines","site_detail_url":"https://comicvine.gamespot.com/marvel-select-x-men-1-les-origines/4000-453661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446993/","id":446993,"name":"The Kids Are All Fight Part 2","site_detail_url":"https://comicvine.gamespot.com/new-warriors-2-the-kids-are-all-fight-part-2/4000-446993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450325/","id":450325,"name":"","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores-7/4000-450325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445817/","id":445817,"name":"The Kids Are All Fight Part 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-1-the-kids-are-all-fight-part-1/4000-445817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449850/","id":449850,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-the-age-of-apocalypse-omnibus-companion-1-hc/4000-449850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446722/","id":446722,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-marvel-now-teen-heroes-1/4000-446722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443379/","id":443379,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-larry-hama-and-marc-silvestri-2-volum/4000-443379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436685/","id":436685,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-7/4000-436685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436663/","id":436663,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers-8/4000-436663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433521/","id":433521,"name":"L'intégrale 1989","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men-2-l-integrale-1989/4000-433521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430958/","id":430958,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-8/4000-430958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428429/","id":428429,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-storm-by-warren-ellis-and-terry-dodson-1-tpb/4000-428429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424694/","id":424694,"name":"Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron-1-age-of-ultron/4000-424694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404704/","id":404704,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-8au/4000-404704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402955/","id":402955,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-40/4000-402955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409196/","id":409196,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-ghosts-1-tpb/4000-409196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410916/","id":410916,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-7-volume-7/4000-410916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401052/","id":401052,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-136/4000-401052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743973/","id":743973,"name":"Von Anfang bis Ende","site_detail_url":"https://comicvine.gamespot.com/x-men-von-anfang-bis-ende-1-von-anfang-bis-ende/4000-743973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437063/","id":437063,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-279/4000-437063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395419/","id":395419,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-1-tpb/4000-395419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391859/","id":391859,"name":"Von Anfang Bis Ende","site_detail_url":"https://comicvine.gamespot.com/x-men-paperbacks-3-von-anfang-bis-ende/4000-391859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391464/","id":391464,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-135/4000-391464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386078/","id":386078,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-omnibus-1-volume-1/4000-386078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380699/","id":380699,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/generation-x-classic-2-volume-two/4000-380699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367719/","id":367719,"name":"Part 2: Invictus","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers-2-part-2-invictus/4000-367719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610299/","id":610299,"name":"Patrulla-X 2: El fin del sueño","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes-20-patrulla-x-2-el-fin/4000-610299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-361083/","id":361083,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-bishops-crossing-1-hc/4000-361083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355933/","id":355933,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-92/4000-355933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401006/","id":401006,"name":"Complejo de Mesías: Preludio","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-complejo-de-mesias-prel/4000-401006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376017/","id":376017,"name":"El fin de Generación Hope","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-generacion-hope-2-el-fin-de-generacion-/4000-376017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353106/","id":353106,"name":"El fin de Generación Hope","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-prologo-1-el-f/4000-353106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-346237/","id":346237,"name":"Underneath","site_detail_url":"https://comicvine.gamespot.com/wolverine-309-underneath/4000-346237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351478/","id":351478,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/cable-classic-3-volume-3/4000-351478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354484/","id":354484,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-266/4000-354484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341551/","id":341551,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-7-volume-seven/4000-341551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341549/","id":341549,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation-1-volume-3/4000-341549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333584/","id":333584,"name":"La Saga de l'Ange Noir (1/4)","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-14-la-saga-de-lange-noir-14/4000-333584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315478/","id":315478,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-13/4000-315478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311798/","id":311798,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-hope-15/4000-311798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316047/","id":316047,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha-1-x-force-necrosha/4000-316047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417620/","id":417620,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2012-02/4000-417620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315540/","id":315540,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-x-factor-4-volume-four/4000-315540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443607/","id":443607,"name":"X-Men: Secondo Avvento","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel-32-x-men-secondo-avve/4000-443607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308169/","id":308169,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-26/4000-308169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294354/","id":294354,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-1-volume-one/4000-294354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293646/","id":293646,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-first-to-last-1-hc-tpb/4000-293646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277342/","id":277342,"name":"First to Last, Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-14-first-to-last-part-4/4000-277342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284854/","id":284854,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/new-mutants-classic-6-volume-six/4000-284854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307129/","id":307129,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-115/4000-307129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435354/","id":435354,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-79/4000-435354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277577/","id":277577,"name":"Ultimatum Companion","site_detail_url":"https://comicvine.gamespot.com/ultimatum-companion-1-ultimatum-companion/4000-277577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445069/","id":445069,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-segunda-venida-11/4000-445069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290436/","id":290436,"name":"Secondo Avvento : capitolo 6 (di 7)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-252-secondo-avvento-capitolo/4000-290436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269984/","id":269984,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics-1-tpb/4000-269984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318874/","id":318874,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-318874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300589/","id":300589,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-29/4000-300589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300399/","id":300399,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-123/4000-300399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270754/","id":270754,"name":"Thor by Walter Simonson Omnibus","site_detail_url":"https://comicvine.gamespot.com/thor-by-walter-simonson-omnibus-1-thor-by-walter-s/4000-270754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267561/","id":267561,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/power-pack-classic-3-volume-3/4000-267561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437038/","id":437038,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-255/4000-437038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385168/","id":385168,"name":"Нация Икс. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-205-4/4000-385168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312140/","id":312140,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-63/4000-312140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270100/","id":270100,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-perfect-world-1-volume-3/4000-270100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253004/","id":253004,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroic-age-x-men-1/4000-253004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245820/","id":245820,"name":"X-Force : A Force To Be Reckoned With HC","site_detail_url":"https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with-1-x-force-a-f/4000-245820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444955/","id":444955,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-22/4000-444955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307123/","id":307123,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-109/4000-307123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261692/","id":261692,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-back-in-action-1-vol-1/4000-261692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246614/","id":246614,"name":"Fire-- From the Sky!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-12-fire-from-the-sky/4000-246614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256148/","id":256148,"name":"X-Force: Cable and the New Mutants","site_detail_url":"https://comicvine.gamespot.com/x-force-cable-and-the-new-mutants-1-x-force-cable-/4000-256148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417641/","id":417641,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-12/4000-417641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277089/","id":277089,"name":"X-Necrosha parte 2 di 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-188-x-necrosha-parte-2-di-9/4000-277089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300823/","id":300823,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-66/4000-300823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290193/","id":290193,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-245/4000-290193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241160/","id":241160,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-1-hc-tpb/4000-241160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407084/","id":407084,"name":"Hijos de las Sombras","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes-1-hijos-de-las-som/4000-407084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299709/","id":299709,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-6/4000-299709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228875/","id":228875,"name":"Dead Reckoning!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-5-dead-reckoning/4000-228875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226877/","id":226877,"name":"Collateral Damage","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever-5-collateral-damage/4000-226877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236300/","id":236300,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming-1-hc/4000-236300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300392/","id":300392,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-116/4000-300392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226788/","id":226788,"name":"Stolen Lives!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-4-stolen-lives/4000-226788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299446/","id":299446,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-22/4000-299446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292839/","id":292839,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-56/4000-292839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-219419/","id":219419,"name":"Second Coming, Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/new-mutants-14-second-coming-chapter-eleven/4000-219419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232925/","id":232925,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-we-are-the-x-men-1-tpb/4000-232925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295876/","id":295876,"name":"¡Spiderman y los 4 Fantásticos!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-17-spiderman-y-los-4-fant/4000-295876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213629/","id":213629,"name":"The Curse Of The Yellow Claw; Desperate Measures; One Night Only; Worst There Is; Birthday Boy; Puny Little Man; Hunger","site_detail_url":"https://comicvine.gamespot.com/wolverine-900-the-curse-of-the-yellow-claw-despera/4000-213629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221765/","id":221765,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-1-x-necrosha/4000-221765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217597/","id":217597,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/power-pack-classic-2-volume-2/4000-217597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277077/","id":277077,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-180/4000-277077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185623/","id":185623,"name":"Nation X: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-518-nation-x-chapter-4/4000-185623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192682/","id":192682,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre-1-hc/4000-192682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182545/","id":182545,"name":"Necrosha: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/x-force-21-necrosha-chapter-2/4000-182545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192871/","id":192871,"name":"X-Men/Spider-Man","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man-1-x-menspider-man/4000-192871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291781/","id":291781,"name":"X-Men: Origins","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-83-x-men-origins/4000-291781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191357/","id":191357,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-danny-ketch-classic-1-volume-1/4000-191357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273900/","id":273900,"name":"Spider-Man und die X-Men","site_detail_url":"https://comicvine.gamespot.com/100-marvel-45-spider-man-und-die-x-men/4000-273900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183108/","id":183108,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-1-hctpb/4000-183108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742457/","id":742457,"name":"Ultimatum 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-53-ultimatum-2/4000-742457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283209/","id":283209,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-spiderman-1/4000-283209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160453/","id":160453,"name":"Random Acts of Redemption","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-gambit-1-random-acts-of-redemption/4000-160453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163037/","id":163037,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-9-volume-9/4000-163037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153074/","id":153074,"name":"The Mutant Hunter","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man-4-the-mutant-hunter/4000-153074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152722/","id":152722,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-files-1/4000-152722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153676/","id":153676,"name":"Ultimatum: Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-100-ultimatum-part-3-of-3/4000-153676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210234/","id":210234,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-210234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298334/","id":298334,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-18/4000-298334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299678/","id":299678,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-mundos-separados-1/4000-299678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142743/","id":142743,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-worlds-apart-2-part-two/4000-142743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298333/","id":298333,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-17/4000-298333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300023/","id":300023,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-84/4000-300023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288616/","id":288616,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-48/4000-288616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300022/","id":300022,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-83/4000-300022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451664/","id":451664,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-151/4000-451664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418046/","id":418046,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2008-05/4000-418046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742449/","id":742449,"name":"Apocalisse 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-48-apocalisse-2/4000-742449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288615/","id":288615,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-47/4000-288615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300368/","id":300368,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-92/4000-300368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235556/","id":235556,"name":"Apocalypse","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-apocalypse-1-apocalypse/4000-235556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451663/","id":451663,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-150/4000-451663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418047/","id":418047,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2008-04/4000-418047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306203/","id":306203,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-139/4000-306203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300019/","id":300019,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-80/4000-300019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289873/","id":289873,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-218/4000-289873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292813/","id":292813,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-31/4000-292813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300366/","id":300366,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-90/4000-300366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306202/","id":306202,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-138/4000-306202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298330/","id":298330,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-14/4000-298330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292812/","id":292812,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-30/4000-292812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285640/","id":285640,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-26/4000-285640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289870/","id":289870,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-216/4000-289870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292811/","id":292811,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-29/4000-292811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285639/","id":285639,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-25/4000-285639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300173/","id":300173,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-136/4000-300173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298303/","id":298303,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-80/4000-298303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125979/","id":125979,"name":"Apocalypse Part 3 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-92-apocalypse-part-3-of-4/4000-125979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298329/","id":298329,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-13/4000-298329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292810/","id":292810,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-28/4000-292810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285638/","id":285638,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-24/4000-285638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162314/","id":162314,"name":"Volume 1: The Twelve","site_detail_url":"https://comicvine.gamespot.com/x-men-vs-apocalypse-1-volume-1-the-twelve/4000-162314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298302/","id":298302,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-79/4000-298302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288612/","id":288612,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-44/4000-288612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123416/","id":123416,"name":"Apocalypse, Part 2 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-91-apocalypse-part-2-of-4/4000-123416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292809/","id":292809,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-27/4000-292809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123918/","id":123918,"name":"Ultimate Secrets","site_detail_url":"https://comicvine.gamespot.com/ultimate-secrets-1-ultimate-secrets/4000-123918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742444/","id":742444,"name":"Sentinelle 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-44-sentinelle-1/4000-742444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298301/","id":298301,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-78/4000-298301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122070/","id":122070,"name":"Apocalypse, Part 1 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-90-apocalypse-part-1-of-4/4000-122070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385023/","id":385023,"name":"В глубине. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-130-2/4000-385023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288611/","id":288611,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-43/4000-288611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285635/","id":285635,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-21/4000-285635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175648/","id":175648,"name":"Uncanny X-Men: Extremists","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-extremists-1-uncanny-x-men-extremist/4000-175648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411042/","id":411042,"name":"De Extremisten","site_detail_url":"https://comicvine.gamespot.com/x-mannen-310-de-extremisten/4000-411042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742443/","id":742443,"name":"Nel sottosuolo","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-43-nel-sottosuolo/4000-742443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385022/","id":385022,"name":"В глубине. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-129-1/4000-385022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385021/","id":385021,"name":"Интрига","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-128-wikiissue/4000-385021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285634/","id":285634,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-20/4000-285634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115143/","id":115143,"name":"The Extremists, Part 5; Endangered Species, Chapter 14","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-491-the-extremists-part-5-endang/4000-115143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285633/","id":285633,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-19/4000-285633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114204/","id":114204,"name":"The Extremists, Part 4; Endangered Species, Chapter 10","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-490-the-extremists-part-4-endang/4000-114204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285631/","id":285631,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-17/4000-285631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285630/","id":285630,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-16/4000-285630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245395/","id":245395,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson-4-volume-four/4000-245395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111037/","id":111037,"name":"The Underneath, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-83-the-underneath-part-2/4000-111037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110274/","id":110274,"name":"The Extremists","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-487-the-extremists/4000-110274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109604/","id":109604,"name":"The Underneath, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-82-the-underneath-part-1/4000-109604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537380/","id":537380,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-19/4000-537380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285628/","id":285628,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-14/4000-285628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108554/","id":108554,"name":"Cliffhangers","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-81-cliffhangers/4000-108554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537378/","id":537378,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-17/4000-537378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537377/","id":537377,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-16/4000-537377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286125/","id":286125,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men-34/4000-286125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537376/","id":537376,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-15/4000-537376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433767/","id":433767,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-i-personaggi-e-il-loro-universo-1/4000-433767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436958/","id":436958,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-201/4000-436958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286105/","id":286105,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men-14/4000-286105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434947/","id":434947,"name":"Era do Apocalipse","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-1-era-do-apocalipse/4000-434947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138254/","id":138254,"name":"X-Men: The Characters and Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1-x-men-th/4000-138254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286102/","id":286102,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men-11/4000-286102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220985/","id":220985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1/4000-220985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106700/","id":106700,"name":"Victor Mancha to Phantazia","site_detail_url":"https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4000-106700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174257/","id":174257,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/decimation-generation-m-1-tpb/4000-174257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433744/","id":433744,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-enzyklopadie-1/4000-433744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433743/","id":433743,"name":"Enciclopedia Marvel : X-Men","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-4-enciclopedia-marvel-x-men/4000-433743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433742/","id":433742,"name":"","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-x-men-1/4000-433742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433741/","id":433741,"name":"","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-x-men-1/4000-433741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283207/","id":283207,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-retorno-a-la-era-de-apocalipsis-1/4000-283207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110573/","id":110573,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106336/","id":106336,"name":"Generation M, part 4","site_detail_url":"https://comicvine.gamespot.com/generation-m-4-generation-m-part-4/4000-106336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145944/","id":145944,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-x-factor-1-volume-1/4000-145944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273860/","id":273860,"name":"X-Men - Die Neue Zeit der Apokalypse","site_detail_url":"https://comicvine.gamespot.com/100-marvel-18-x-men-die-neue-zeit-der-apokalypse/4000-273860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324635/","id":324635,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-53/4000-324635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127639/","id":127639,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6-volume-6/4000-127639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255727/","id":255727,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-force-shatterstar-1-tpb/4000-255727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101451/","id":101451,"name":"Coming Up For Air","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-2-coming-up-for-air/4000-101451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120202/","id":120202,"name":"World Against One, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-force-shatterstar-1-world-against-one-part-1/4000-120202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254184/","id":254184,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-old-soldiers-1-tpb/4000-254184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197577/","id":197577,"name":"Marc Silvestri Book 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-legends-6-marc-silvestri-book-1/4000-197577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106368/","id":106368,"name":"Storm: The Arena, Part 3: Slave","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-38-storm-the-arena-part-3-slave/4000-106368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110572/","id":110572,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107656/","id":107656,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-2-x-men/4000-107656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448733/","id":448733,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-106/4000-448733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251973/","id":251973,"name":"The Angel Of Death!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-79-the-angel-of-death/4000-251973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251972/","id":251972,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-78/4000-251972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158389/","id":158389,"name":"Last Stop","site_detail_url":"https://comicvine.gamespot.com/morlocks-4-last-stop/4000-158389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115043/","id":115043,"name":"Angel Underground","site_detail_url":"https://comicvine.gamespot.com/x-men-evolution-8-angel-underground/4000-115043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150066/","id":150066,"name":"Sinners & Saviors","site_detail_url":"https://comicvine.gamespot.com/morlocks-3-sinners-saviors/4000-150066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150065/","id":150065,"name":"The Rocket's Red Glare","site_detail_url":"https://comicvine.gamespot.com/morlocks-2-the-rockets-red-glare/4000-150065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150064/","id":150064,"name":"Initiation","site_detail_url":"https://comicvine.gamespot.com/morlocks-1-initiation/4000-150064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133634/","id":133634,"name":"#21-18","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-2-21-18/4000-133634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448695/","id":448695,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-71/4000-448695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265077/","id":265077,"name":"The Fate Of Marrow!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-76-the-fate-of-marrow/4000-265077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140964/","id":140964,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4-volume-4/4000-140964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451614/","id":451614,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-101/4000-451614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419324/","id":419324,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2001-03/4000-419324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264931/","id":264931,"name":"The Trial Of Gambit!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-69-the-trial-of-gambit/4000-264931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133210/","id":133210,"name":"Dark Phoenix Returns","site_detail_url":"https://comicvine.gamespot.com/backpack-marvels-x-men-2-dark-phoenix-returns/4000-133210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65823/","id":65823,"name":"The Chronowar, Part 3 - Remain In Light","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-14-the-chronowar-part-3-rema/4000-65823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300272/","id":300272,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-45/4000-300272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300099/","id":300099,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-45/4000-300099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110559/","id":110559,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-ultimate-/4000-110559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313980/","id":313980,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-54/4000-313980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112325/","id":112325,"name":"The Chronowar, Part 1 - Helter Skelter","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-12-the-chronowar-part-1-helt/4000-112325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359021/","id":359021,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-10/4000-359021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313979/","id":313979,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-53/4000-313979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280264/","id":280264,"name":"Le ere di Apocalisse 4/6","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-122-le-ere-di-apocalisse-4-6/4000-280264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65821/","id":65821,"name":"Preludes, Part 2 - Can't You Hear Me Knockin' ?","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man-11-preludes-part-2-cant-you-/4000-65821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280261/","id":280261,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-119/4000-280261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275150/","id":275150,"name":"X-Men Universe: Groso guaio a Madripoor!","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-61-x-men-universe-groso-guaio-a-madri/4000-275150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451607/","id":451607,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-94/4000-451607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411279/","id":411279,"name":"We gaan nog niet naar huis","site_detail_url":"https://comicvine.gamespot.com/x-mannen-210-we-gaan-nog-niet-naar-huis/4000-411279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394385/","id":394385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-135/4000-394385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51213/","id":51213,"name":"Apocalypse: The Twelve Part 4 - Through A Dark Tunnel","site_detail_url":"https://comicvine.gamespot.com/wolverine-146-apocalypse-the-twelve-part-4-through/4000-51213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411278/","id":411278,"name":"De harde werkelijkheid / De schoonheid en het beest","site_detail_url":"https://comicvine.gamespot.com/x-mannen-209-de-harde-werkelijkheid-de-schoonheid-/4000-411278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65139/","id":65139,"name":"Beauty and the Beast Part Two: You Can't Go Home Again","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-374-beauty-and-the-beast-part-tw/4000-65139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300087/","id":300087,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-33/4000-300087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150001/","id":150001,"name":"Beauty and the Beast Part One: Broken Mirrors","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-373-beauty-and-the-beast-part-on/4000-150001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131922/","id":131922,"name":"So This Is Hell","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-4-so-this-is-hell/4000-131922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120199/","id":120199,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-second-genesis-1/4000-120199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397270/","id":397270,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-fabulosos-x-men-44/4000-397270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131921/","id":131921,"name":"One Shot at Heaven","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-3-one-shot-at-heaven/4000-131921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325029/","id":325029,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-15/4000-325029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280069/","id":280069,"name":"Rigenerazione 1","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-109-rigenerazione-1/4000-280069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131920/","id":131920,"name":"Ascension","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-2-ascension/4000-131920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316703/","id":316703,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-39/4000-316703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131859/","id":131859,"name":"Ladies In Waiting","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation-1-ladies-in-waiting/4000-131859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45880/","id":45880,"name":"The Uncanny","site_detail_url":"https://comicvine.gamespot.com/mutant-x-9-the-uncanny/4000-45880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68481/","id":68481,"name":"Beneath It All","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-4-beneath-it-all/4000-68481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300080/","id":300080,"name":"Le procés","site_detail_url":"https://comicvine.gamespot.com/x-men-26-le-proces/4000-300080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411266/","id":411266,"name":"Dieven in de tempel","site_detail_url":"https://comicvine.gamespot.com/x-mannen-198-dieven-in-de-tempel/4000-411266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252088/","id":252088,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-29/4000-252088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411265/","id":411265,"name":"Machtsspelletjes","site_detail_url":"https://comicvine.gamespot.com/x-mannen-197-machtsspelletjes/4000-411265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411264/","id":411264,"name":"Verdwaald in de ruimte","site_detail_url":"https://comicvine.gamespot.com/x-mannen-196-verdwaald-in-de-ruimte/4000-411264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411263/","id":411263,"name":"De hemel komt naar beneden","site_detail_url":"https://comicvine.gamespot.com/x-mannen-195-de-hemel-komt-naar-beneden/4000-411263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155545/","id":155545,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-3-volume-3/4000-155545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65778/","id":65778,"name":"Legacy of the Morlocks!","site_detail_url":"https://comicvine.gamespot.com/x-men-79-legacy-of-the-morlocks/4000-65778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411262/","id":411262,"name":"Reünie","site_detail_url":"https://comicvine.gamespot.com/x-mannen-194-reunie/4000-411262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411261/","id":411261,"name":"Noord & Zuid","site_detail_url":"https://comicvine.gamespot.com/x-mannen-193-noord-zuid/4000-411261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118641/","id":118641,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wizard-presents-cerebros-guide-to-the-x-men-1/4000-118641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411260/","id":411260,"name":"Prehistorie","site_detail_url":"https://comicvine.gamespot.com/x-mannen-192-prehistorie/4000-411260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156201/","id":156201,"name":"The Menace of the Morlocks!","site_detail_url":"https://comicvine.gamespot.com/x-men-the-manga-9-the-menace-of-the-morlocks/4000-156201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156200/","id":156200,"name":"The Menace of the Morlocks!","site_detail_url":"https://comicvine.gamespot.com/x-men-the-manga-10-the-menace-of-the-morlocks/4000-156200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411259/","id":411259,"name":"Merels","site_detail_url":"https://comicvine.gamespot.com/x-mannen-191-merels/4000-411259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411258/","id":411258,"name":"Luchtalarm","site_detail_url":"https://comicvine.gamespot.com/x-mannen-190-luchtalarm/4000-411258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386988/","id":386988,"name":"Tempestade dos X-men","site_detail_url":"https://comicvine.gamespot.com/tempestade-dos-x-men-1-tempestade-dos-x-men/4000-386988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44872/","id":44872,"name":"Once an X-Man/Guiding Light","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-18-once-an-x-manguiding-light/4000-44872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414936/","id":414936,"name":"Stormfront, deel 1.","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-30-stormfront-deel-1/4000-414936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453770/","id":453770,"name":"","site_detail_url":"https://comicvine.gamespot.com/o-melhor-dos-x-men-2/4000-453770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453769/","id":453769,"name":"","site_detail_url":"https://comicvine.gamespot.com/o-melhor-dos-x-men-1/4000-453769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385730/","id":385730,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mix-13/4000-385730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155515/","id":155515,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-2-volume-2/4000-155515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252075/","id":252075,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-16/4000-252075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251550/","id":251550,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-10/4000-251550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251548/","id":251548,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-9/4000-251548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251547/","id":251547,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-8/4000-251547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251545/","id":251545,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-7/4000-251545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251544/","id":251544,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-6/4000-251544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131214/","id":131214,"name":"A New Beginning For X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-megazine-1-a-new-beginning-for-x-force/4000-131214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311134/","id":311134,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-x-2/4000-311134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51325/","id":51325,"name":"She Will Destroy You","site_detail_url":"https://comicvine.gamespot.com/storm-4-she-will-destroy-you/4000-51325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322132/","id":322132,"name":"Cable 2 : 1 di 2","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-24-cable-2-1-di-2/4000-322132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107621/","id":107621,"name":"The Tinderbox of a Heart","site_detail_url":"https://comicvine.gamespot.com/storm-3-the-tinderbox-of-a-heart/4000-107621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388687/","id":388687,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-88/4000-388687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415511/","id":415511,"name":"Duel in de diepte","site_detail_url":"https://comicvine.gamespot.com/generatie-x-2-duel-in-de-diepte/4000-415511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388686/","id":388686,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-87/4000-388686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388685/","id":388685,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-86/4000-388685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417704/","id":417704,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel-1995/4000-417704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388684/","id":388684,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-85/4000-388684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64522/","id":64522,"name":"Intervention","site_detail_url":"https://comicvine.gamespot.com/x-force-48-intervention/4000-64522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453899/","id":453899,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-8/4000-453899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388682/","id":388682,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-84/4000-388682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388680/","id":388680,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-83/4000-388680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41254/","id":41254,"name":"Notes From the Underground","site_detail_url":"https://comicvine.gamespot.com/generation-x-6-notes-from-the-underground/4000-41254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279239/","id":279239,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-59/4000-279239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131180/","id":131180,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cable-and-the-new-mutants-1-tpb/4000-131180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70429/","id":70429,"name":"In Spirits Joined","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-2-in-spirits-joined/4000-70429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274672/","id":274672,"name":"Domino Smascherata","site_detail_url":"https://comicvine.gamespot.com/x-force-7-domino-smascherata/4000-274672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140988/","id":140988,"name":"The Lady Takes a Chance","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-1-the-lady-takes-a-chance/4000-140988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274671/","id":274671,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-6/4000-274671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70416/","id":70416,"name":"Psylocke","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-10-psylocke/4000-70416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274670/","id":274670,"name":"Vittime di Guerra","site_detail_url":"https://comicvine.gamespot.com/x-force-5-vittime-di-guerra/4000-274670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70492/","id":70492,"name":"Book 2 of 5","site_detail_url":"https://comicvine.gamespot.com/x-men-the-ultra-collection-2-book-2-of-5/4000-70492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70415/","id":70415,"name":"The Last Run","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-9-the-last-run/4000-70415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274665/","id":274665,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-4/4000-274665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70414/","id":70414,"name":"Whose Power?","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-8-whose-power/4000-70414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388647/","id":388647,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-74/4000-388647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388646/","id":388646,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-73/4000-388646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70413/","id":70413,"name":"Fires of the Night!","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-7-fires-of-the-night/4000-70413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166246/","id":166246,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine-6/4000-166246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70412/","id":70412,"name":"Falling Angel!","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-6-falling-angel/4000-70412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39674/","id":39674,"name":"Shadows","site_detail_url":"https://comicvine.gamespot.com/cable-15-shadows/4000-39674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47735/","id":47735,"name":"It Was a Dark and Stormy Night...!","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-99-it-was-a-dark-and-stormy-night/4000-47735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274657/","id":274657,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-0-x-force/4000-274657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420171/","id":420171,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1994-05/4000-420171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47731/","id":47731,"name":"Raiders of the Lost Temple!","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-95-raiders-of-the-lost-temple/4000-47731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420173/","id":420173,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1994-04/4000-420173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388615/","id":388615,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-66/4000-388615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47730/","id":47730,"name":"An Age Undreamed Of","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-94-an-age-undreamed-of/4000-47730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278074/","id":278074,"name":"Scary monsters","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-43-scary-monsters/4000-278074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237622/","id":237622,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-46/4000-237622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278085/","id":278085,"name":"Catene spezzate","site_detail_url":"https://comicvine.gamespot.com/speciale-x-men-6-catene-spezzate/4000-278085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278073/","id":278073,"name":"Rinascita di una leggenda","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-42-rinascita-di-una-leggenda/4000-278073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436802/","id":436802,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-49/4000-436802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237619/","id":237619,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-44/4000-237619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388472/","id":388472,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-61/4000-388472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388471/","id":388471,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-60/4000-388471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436799/","id":436799,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-46/4000-436799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359358/","id":359358,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-7/4000-359358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150233/","id":150233,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-anniversary-magazine-1/4000-150233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411197/","id":411197,"name":"Het laatste Morlockverhaal!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-133-het-laatste-morlockverhaal/4000-411197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314164/","id":314164,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-132/4000-314164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411196/","id":411196,"name":"..de Morlocks veroveren Manhattan","site_detail_url":"https://comicvine.gamespot.com/x-mannen-132-de-morlocks-veroveren-manhattan/4000-411196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359357/","id":359357,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-6/4000-359357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314166/","id":314166,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-131/4000-314166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411195/","id":411195,"name":"Achilleshiel","site_detail_url":"https://comicvine.gamespot.com/x-mannen-131-achilleshiel/4000-411195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388466/","id":388466,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-56/4000-388466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314167/","id":314167,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-130/4000-314167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359356/","id":359356,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-5/4000-359356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436795/","id":436795,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-41/4000-436795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57831/","id":57831,"name":"Captive Hearts","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures-5-captive-hearts/4000-57831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436794/","id":436794,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-40/4000-436794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359355/","id":359355,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-4/4000-359355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313339/","id":313339,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-9/4000-313339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36872/","id":36872,"name":"What If... Cable Had Destroyed The X-Men?","site_detail_url":"https://comicvine.gamespot.com/what-if-46-what-if-cable-had-destroyed-the-x-men/4000-36872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436792/","id":436792,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-38/4000-436792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436791/","id":436791,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-37/4000-436791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313337/","id":313337,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-7/4000-313337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436790/","id":436790,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-36/4000-436790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313336/","id":313336,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-6/4000-313336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313233/","id":313233,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-65/4000-313233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36286/","id":36286,"name":"The Last Morlock Story","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-293-the-last-morlock-story/4000-36286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47711/","id":47711,"name":"Welcome to the X-Men Rogue--Hope You Survive the Experience!","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-75-welcome-to-the-x-men-rogue-hope-y/4000-47711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36160/","id":36160,"name":"The Morlocks Take Manhatten","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-292-the-morlocks-take-manhatten/4000-36160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47710/","id":47710,"name":"Dancin' In The Dark","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-74-dancin-in-the-dark/4000-47710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36032/","id":36032,"name":"Underbelly","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-291-underbelly/4000-36032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47709/","id":47709,"name":"Catacombs","site_detail_url":"https://comicvine.gamespot.com/x-men-classic-73-catacombs/4000-47709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424195/","id":424195,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1992-06/4000-424195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277880/","id":277880,"name":"Psylocke","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-23-psylocke/4000-277880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35795/","id":35795,"name":"Friendly Reminders","site_detail_url":"https://comicvine.gamespot.com/x-force-11-friendly-reminders/4000-35795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277879/","id":277879,"name":"La Caccia","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-22-la-caccia/4000-277879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35695/","id":35695,"name":"Station Identification","site_detail_url":"https://comicvine.gamespot.com/wolverine-54-station-identification/4000-35695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35688/","id":35688,"name":"What If Wolverine and his X-Vampires had Conquered the World?","site_detail_url":"https://comicvine.gamespot.com/what-if-37-what-if-wolverine-and-his-x-vampires-ha/4000-35688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277839/","id":277839,"name":"Il mattino dopo","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-21-il-mattino-dopo/4000-277839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273790/","id":273790,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-13/4000-273790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35587/","id":35587,"name":"Underground and Over the Top","site_detail_url":"https://comicvine.gamespot.com/x-force-9-underground-and-over-the-top/4000-35587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277837/","id":277837,"name":"Spettri","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-20-spettri/4000-277837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273559/","id":273559,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-24/4000-273559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64314/","id":64314,"name":"The Crunch Conundrum Part 1 of 3 - Heartbreak Motel!","site_detail_url":"https://comicvine.gamespot.com/wolverine-51-the-crunch-conundrum-part-1-of-3-hear/4000-64314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334811/","id":334811,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-157/4000-334811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35378/","id":35378,"name":"Under the Knife","site_detail_url":"https://comicvine.gamespot.com/x-force-7-under-the-knife/4000-35378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382434/","id":382434,"name":"","site_detail_url":"https://comicvine.gamespot.com/facteur-x-15/4000-382434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334809/","id":334809,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-156/4000-334809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35275/","id":35275,"name":"Under the Gun","site_detail_url":"https://comicvine.gamespot.com/x-force-6-under-the-gun/4000-35275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382433/","id":382433,"name":"","site_detail_url":"https://comicvine.gamespot.com/facteur-x-14/4000-382433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388136/","id":388136,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-36/4000-388136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277827/","id":277827,"name":"Era una notte buia e tempestosa","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-15-era-una-notte-buia-e-temp/4000-277827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64309/","id":64309,"name":"Home Is The Hunter...","site_detail_url":"https://comicvine.gamespot.com/wolverine-46-home-is-the-hunter/4000-64309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64308/","id":64308,"name":"Claws Over Times Square!","site_detail_url":"https://comicvine.gamespot.com/wolverine-45-claws-over-times-square/4000-64308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388134/","id":388134,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-35/4000-388134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311459/","id":311459,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-45/4000-311459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277826/","id":277826,"name":"I Predatori del tempo Perduto","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-14-i-predatori-del-tempo-per/4000-277826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273814/","id":273814,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-18/4000-273814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64306/","id":64306,"name":"Under The Skin","site_detail_url":"https://comicvine.gamespot.com/wolverine-43-under-the-skin/4000-64306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388131/","id":388131,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-34/4000-388131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334798/","id":334798,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-151/4000-334798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311458/","id":311458,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-44/4000-311458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277705/","id":277705,"name":"Il Retaggio dei Dannati","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-13-il-retaggio-dei-dannati/4000-277705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64305/","id":64305,"name":"Papa Was A Rolling Stone!","site_detail_url":"https://comicvine.gamespot.com/wolverine-42-papa-was-a-rolling-stone/4000-64305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64304/","id":64304,"name":"Down In The Bottoms","site_detail_url":"https://comicvine.gamespot.com/wolverine-41-down-in-the-bottoms/4000-64304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388129/","id":388129,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-33/4000-388129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34431/","id":34431,"name":"Toast of the Town...","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-78-toast-of-the-town/4000-34431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388121/","id":388121,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-32/4000-388121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273797/","id":273797,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-15/4000-273797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34314/","id":34314,"name":"Home Is Where The Terror Is","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man-77-home-is-where-the-terror-is/4000-34314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388120/","id":388120,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-31/4000-388120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314215/","id":314215,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-105/4000-314215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273791/","id":273791,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-14/4000-273791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455365/","id":455365,"name":"Am Anfang war das Chaos","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-18-am-anfang-war-das-chao/4000-455365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388119/","id":388119,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-30/4000-388119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311454/","id":311454,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-40/4000-311454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34134/","id":34134,"name":"The End Of The Beginning","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-100-the-end-of-the-beginning/4000-34134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34113/","id":34113,"name":"What if Wolverine was Lord of the Vampires?","site_detail_url":"https://comicvine.gamespot.com/what-if-24-what-if-wolverine-was-lord-of-the-vampi/4000-34113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34025/","id":34025,"name":"The Beginning of the End Part Two","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-99-the-beginning-of-the-end-part-t/4000-34025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311453/","id":311453,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-39/4000-311453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311452/","id":311452,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-38/4000-311452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277696/","id":277696,"name":"Più Feroce dell'inferno","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-8-piu-feroce-dell-inferno/4000-277696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273752/","id":273752,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-12/4000-273752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411029/","id":411029,"name":"De lagere diepten","site_detail_url":"https://comicvine.gamespot.com/x-mannen-103-de-lagere-diepten/4000-411029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277694/","id":277694,"name":"Decisioni","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-7-decisioni/4000-277694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273751/","id":273751,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-11/4000-273751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66425/","id":66425,"name":"Pursuit","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-9-pursuit/4000-66425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65051/","id":65051,"name":"Down Deep in the Darkness Lurk...Morlocks!","site_detail_url":"https://comicvine.gamespot.com/marvel-tales-245-down-deep-in-the-darkness-lurkmor/4000-65051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314221/","id":314221,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-99/4000-314221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273749/","id":273749,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-marvel-9/4000-273749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277687/","id":277687,"name":"Danzare al Buio","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-4-danzare-al-buio/4000-277687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424291/","id":424291,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1990-06/4000-424291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451542/","id":451542,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-29/4000-451542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424292/","id":424292,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1990-05/4000-424292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33006/","id":33006,"name":"Prey for the Living","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-91-prey-for-the-living/4000-33006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32982/","id":32982,"name":"The Lower Depths","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-263-the-lower-depths/4000-32982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451541/","id":451541,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-28/4000-451541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455363/","id":455363,"name":"Endlich Frei!","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-16-endlich-frei/4000-455363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451540/","id":451540,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-27/4000-451540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387837/","id":387837,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-17/4000-387837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32539/","id":32539,"name":"Celebrity!","site_detail_url":"https://comicvine.gamespot.com/x-factor-52-celebrity/4000-32539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32448/","id":32448,"name":"Home!","site_detail_url":"https://comicvine.gamespot.com/x-factor-51-home/4000-32448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411023/","id":411023,"name":"Heel nieuw, heel anders. Daar gaan we weer","site_detail_url":"https://comicvine.gamespot.com/x-mannen-98-heel-nieuw-heel-anders-daar-gaan-we-we/4000-411023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186427/","id":186427,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-from-the-ashes-1-tpb/4000-186427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32017/","id":32017,"name":"All-New, All-Different...Here We Go Again","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-254-all-new-all-differenthere-we/4000-32017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387834/","id":387834,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-14/4000-387834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313216/","id":313216,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-48/4000-313216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313213/","id":313213,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-45/4000-313213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311425/","id":311425,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-15/4000-311425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31034/","id":31034,"name":"God's Country (Part 6); Panther's Quest (Part 3); The Maiden Phoenix; Desert Tears;","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-15-gods-country-part-6-pant/4000-31034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451533/","id":451533,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-20/4000-451533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387816/","id":387816,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-387816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311419/","id":311419,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-13/4000-311419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387815/","id":387815,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-2/4000-387815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311418/","id":311418,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-12/4000-311418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387813/","id":387813,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-1-x-men/4000-387813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311417/","id":311417,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-11/4000-311417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334022/","id":334022,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-117/4000-334022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311416/","id":311416,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-10/4000-311416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311415/","id":311415,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-9/4000-311415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311413/","id":311413,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-7/4000-311413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430433/","id":430433,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-05/4000-430433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334011/","id":334011,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-112/4000-334011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430434/","id":430434,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-04/4000-430434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315129/","id":315129,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-63/4000-315129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315128/","id":315128,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-64/4000-315128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430436/","id":430436,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-02/4000-430436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315131/","id":315131,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-61/4000-315131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315130/","id":315130,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-62/4000-315130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430437/","id":430437,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1988-01/4000-430437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315134/","id":315134,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-58/4000-315134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315133/","id":315133,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-59/4000-315133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432642/","id":432642,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1987-12/4000-432642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315151/","id":315151,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-45/4000-315151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315149/","id":315149,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-47/4000-315149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315152/","id":315152,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-44/4000-315152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315155/","id":315155,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-41/4000-315155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315154/","id":315154,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-42/4000-315154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313186/","id":313186,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes-20/4000-313186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28142/","id":28142,"name":"Teacher's Choice","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-51-teachers-choice/4000-28142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28026/","id":28026,"name":"Whose Death Is This Anyway?","site_detail_url":"https://comicvine.gamespot.com/x-factor-15-whose-death-is-this-anyway/4000-28026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432666/","id":432666,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1987-02/4000-432666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27806/","id":27806,"name":"Ghosts!","site_detail_url":"https://comicvine.gamespot.com/x-factor-13-ghosts/4000-27806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432667/","id":432667,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1987-01/4000-432667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315333/","id":315333,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-32/4000-315333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27694/","id":27694,"name":"Boom Boom Boom!","site_detail_url":"https://comicvine.gamespot.com/x-factor-12-boom-boom-boom/4000-27694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27691/","id":27691,"name":"Psylocke","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-213-psylocke/4000-27691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27676/","id":27676,"name":"It Comes With The Claws","site_detail_url":"https://comicvine.gamespot.com/daredevil-238-it-comes-with-the-claws/4000-27676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441911/","id":441911,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-12/4000-441911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315335/","id":315335,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-30/4000-315335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27523/","id":27523,"name":"Bloody Sunday","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-46-bloody-sunday/4000-27523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27504/","id":27504,"name":"Redemption!","site_detail_url":"https://comicvine.gamespot.com/x-factor-11-redemption/4000-27504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27501/","id":27501,"name":"The Last Run","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-212-the-last-run/4000-27501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27500/","id":27500,"name":"Fires of the Night!","site_detail_url":"https://comicvine.gamespot.com/thor-374-fires-of-the-night/4000-27500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27494/","id":27494,"name":"Whose Power--?","site_detail_url":"https://comicvine.gamespot.com/power-pack-27-whose-power-/4000-27494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441913/","id":441913,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-11/4000-441913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27399/","id":27399,"name":"Falling Angel!","site_detail_url":"https://comicvine.gamespot.com/x-factor-10-falling-angel/4000-27399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27396/","id":27396,"name":"Massacre","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-211-massacre/4000-27396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107057/","id":107057,"name":"The Morning After","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-210-the-morning-after/4000-107057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27290/","id":27290,"name":"Spots!","site_detail_url":"https://comicvine.gamespot.com/x-factor-9-spots/4000-27290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315341/","id":315341,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-24/4000-315341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315340/","id":315340,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-25/4000-315340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27189/","id":27189,"name":"Salvation","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-209-salvation/4000-27189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315342/","id":315342,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-23/4000-315342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27097/","id":27097,"name":"Fall Out!","site_detail_url":"https://comicvine.gamespot.com/x-factor-7-fall-out/4000-27097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27093/","id":27093,"name":"Retribution","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-208-retribution/4000-27093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26997/","id":26997,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-207-ghosts/4000-26997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66624/","id":66624,"name":"Molecule Man To Owl","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-9-mol/4000-66624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26508/","id":26508,"name":"Guess Who's Coming To Dinner?","site_detail_url":"https://comicvine.gamespot.com/power-pack-19-guess-whos-coming-to-dinner/4000-26508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415175/","id":415175,"name":"Belegering","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants-10-belegering/4000-415175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397440/","id":397440,"name":"ROTJ 108","site_detail_url":"https://comicvine.gamespot.com/return-of-the-jedi-108-rotj-108/4000-397440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397439/","id":397439,"name":"ROTJ 107","site_detail_url":"https://comicvine.gamespot.com/return-of-the-jedi-107-rotj-107/4000-397439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25701/","id":25701,"name":"It Was a Dark and Stormy Night...!","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-195-it-was-a-dark-and-stormy-nig/4000-25701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25693/","id":25693,"name":"Underground","site_detail_url":"https://comicvine.gamespot.com/power-pack-12-underground/4000-25693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397438/","id":397438,"name":"ROTJ 106","site_detail_url":"https://comicvine.gamespot.com/return-of-the-jedi-106-rotj-106/4000-397438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325944/","id":325944,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-77/4000-325944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25500/","id":25500,"name":"Warhunt 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-193-warhunt-2/4000-25500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25301/","id":25301,"name":"Raiders of the Lost Temple !","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-191-raiders-of-the-lost-temple/4000-25301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25279/","id":25279,"name":"An Age Undreamed Of","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-190-an-age-undreamed-of/4000-25279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24818/","id":24818,"name":"Badlands","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-20-badlands/4000-24818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327917/","id":327917,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-577/4000-327917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327916/","id":327916,"name":"The Morlocks","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-his-amazing-friends-576-the-morlock/4000-327916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24112/","id":24112,"name":"What Happened To Kitty ?","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-179-what-happened-to-kitty/4000-24112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23994/","id":23994,"name":"Hell Hath No Fury...","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-178-hell-hath-no-fury/4000-23994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23743/","id":23743,"name":"Decisions","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-176-decisions/4000-23743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23635/","id":23635,"name":"Down Deep in Darkness!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-135-down-deep-in-darkness/4000-23635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68386/","id":68386,"name":"M: Mandarin to Mystique","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-7-m-m/4000-68386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23307/","id":23307,"name":"Rogue","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-171-rogue/4000-23307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23219/","id":23219,"name":"Dancin' in the Dark","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-170-dancin-in-the-dark/4000-23219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23139/","id":23139,"name":"Catacombs","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-169-catacombs/4000-23139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-900643/","id":900643,"name":null,"site_detail_url":"https://comicvine.gamespot.com/die-spinne-60/4000-900643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453110/","id":453110,"name":"The Uncanny X-Men: Legacy of the Lost","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-14-the-uncanny-x-men-legacy-of-t/4000-453110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453097/","id":453097,"name":"The Uncanny X-Men: Scarlet In Glory","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-11-the-uncanny-x-men-scarlet-in-/4000-453097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453093/","id":453093,"name":"The Uncanny X-Men: Blood Feud","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-12-the-uncanny-x-men-blood-feud/4000-453093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441921/","id":441921,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-02/4000-441921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441920/","id":441920,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-03/4000-441920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435983/","id":435983,"name":"","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-x-men-3/4000-435983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435175/","id":435175,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-hors-serie-5/4000-435175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432665/","id":432665,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1987-03/4000-432665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415507/","id":415507,"name":"","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants-19/4000-415507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407654/","id":407654,"name":"Bloedbad","site_detail_url":"https://comicvine.gamespot.com/x-mannen-65-bloedbad/4000-407654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407651/","id":407651,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-62/4000-407651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407650/","id":407650,"name":"Spoken","site_detail_url":"https://comicvine.gamespot.com/x-mannen-61-spoken/4000-407650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400961/","id":400961,"name":"Het Was Een Donkere, Stormachtige Nacht..!","site_detail_url":"https://comicvine.gamespot.com/x-mannen-52-het-was-een-donkere-stormachtige-nacht/4000-400961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399712/","id":399712,"name":"Op Oorlogspad","site_detail_url":"https://comicvine.gamespot.com/x-mannen-50-op-oorlogspad/4000-399712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399711/","id":399711,"name":"Spelletjes","site_detail_url":"https://comicvine.gamespot.com/x-mannen-49-spelletjes/4000-399711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399710/","id":399710,"name":"Andere Tijden, Gelijke Gewoonten","site_detail_url":"https://comicvine.gamespot.com/x-mannen-48-andere-tijden-gelijke-gewoonten/4000-399710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399388/","id":399388,"name":"Wat Is Er Met Kitty Gebeurd??","site_detail_url":"https://comicvine.gamespot.com/x-mannen-40-wat-is-er-met-kitty-gebeurd/4000-399388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399387/","id":399387,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-39/4000-399387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399386/","id":399386,"name":"Beslissingen","site_detail_url":"https://comicvine.gamespot.com/x-mannen-38-beslissingen/4000-399386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399180/","id":399180,"name":"Rogue","site_detail_url":"https://comicvine.gamespot.com/x-mannen-33-rogue/4000-399180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399179/","id":399179,"name":"Dansen In Het Donker...","site_detail_url":"https://comicvine.gamespot.com/x-mannen-32-dansen-in-het-donker/4000-399179/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-24/","id":24,"name":"X-Men: The Last Stand","site_detail_url":"https://comicvine.gamespot.com/x-men-the-last-stand/4025-24/"}],"name":"Morlocks","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/morlocks/4060-3191/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57702/","id":57702,"name":"Where Were You?","site_detail_url":"https://comicvine.gamespot.com/where-were-you/4045-57702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57715/","id":57715,"name":"The Return of Scarface","site_detail_url":"https://comicvine.gamespot.com/the-return-of-scarface/4045-57715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57739/","id":57739,"name":"Dead Robin","site_detail_url":"https://comicvine.gamespot.com/dead-robin/4045-57739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57809/","id":57809,"name":"Aftershocks","site_detail_url":"https://comicvine.gamespot.com/aftershocks/4045-57809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57835/","id":57835,"name":"The Ahakista Gambit","site_detail_url":"https://comicvine.gamespot.com/the-ahakista-gambit/4045-57835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57885/","id":57885,"name":"Dawn of the Autobots","site_detail_url":"https://comicvine.gamespot.com/dawn-of-the-autobots/4045-57885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57905/","id":57905,"name":"Wonderland (Zenescope)","site_detail_url":"https://comicvine.gamespot.com/wonderland-zenescope/4045-57905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58042/","id":58042,"name":"Samurai Jack and the Quest of the Broken Blade","site_detail_url":"https://comicvine.gamespot.com/samurai-jack-and-the-quest-of-the-broken-blade/4045-58042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58155/","id":58155,"name":"Alternating Currents","site_detail_url":"https://comicvine.gamespot.com/alternating-currents/4045-58155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58071/","id":58071,"name":"Conclave","site_detail_url":"https://comicvine.gamespot.com/conclave/4045-58071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58219/","id":58219,"name":"The Truth About Looker","site_detail_url":"https://comicvine.gamespot.com/the-truth-about-looker/4045-58219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43899/","id":43899,"name":"Operation: Zero Tolerance","site_detail_url":"https://comicvine.gamespot.com/operation-zero-tolerance/4045-43899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58403/","id":58403,"name":"International Flavor","site_detail_url":"https://comicvine.gamespot.com/international-flavor/4045-58403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58485/","id":58485,"name":"Rann/Thanagar War","site_detail_url":"https://comicvine.gamespot.com/rannthanagar-war/4045-58485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58502/","id":58502,"name":"Le grand amour de Rahan","site_detail_url":"https://comicvine.gamespot.com/le-grand-amour-de-rahan/4045-58502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58504/","id":58504,"name":"La 3e vie de Rahan","site_detail_url":"https://comicvine.gamespot.com/la-3e-vie-de-rahan/4045-58504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58446/","id":58446,"name":"Truth","site_detail_url":"https://comicvine.gamespot.com/truth/4045-58446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58365/","id":58365,"name":"Spiral","site_detail_url":"https://comicvine.gamespot.com/spiral/4045-58365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58556/","id":58556,"name":"Gangland","site_detail_url":"https://comicvine.gamespot.com/gangland/4045-58556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58266/","id":58266,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4045-58266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58459/","id":58459,"name":"Last Days Of...","site_detail_url":"https://comicvine.gamespot.com/last-days-of/4045-58459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58496/","id":58496,"name":"Last Days","site_detail_url":"https://comicvine.gamespot.com/last-days/4045-58496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58577/","id":58577,"name":"Wild Blue Yonder","site_detail_url":"https://comicvine.gamespot.com/wild-blue-yonder/4045-58577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58594/","id":58594,"name":"Civil Chore","site_detail_url":"https://comicvine.gamespot.com/civil-chore/4045-58594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58596/","id":58596,"name":"Sinestro Rising","site_detail_url":"https://comicvine.gamespot.com/sinestro-rising/4045-58596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58675/","id":58675,"name":"The Four Sisters","site_detail_url":"https://comicvine.gamespot.com/the-four-sisters/4045-58675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59272/","id":59272,"name":"Godwatch","site_detail_url":"https://comicvine.gamespot.com/godwatch/4045-59272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59496/","id":59496,"name":"Cosmic Preludes","site_detail_url":"https://comicvine.gamespot.com/cosmic-preludes/4045-59496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59620/","id":59620,"name":"Cannonball Run","site_detail_url":"https://comicvine.gamespot.com/cannonball-run/4045-59620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59645/","id":59645,"name":"Paradise Lost","site_detail_url":"https://comicvine.gamespot.com/paradise-lost/4045-59645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59679/","id":59679,"name":"War Bonds","site_detail_url":"https://comicvine.gamespot.com/war-bonds/4045-59679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59757/","id":59757,"name":"Moon Over Madripoor","site_detail_url":"https://comicvine.gamespot.com/moon-over-madripoor/4045-59757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59953/","id":59953,"name":"Tempest's Tale","site_detail_url":"https://comicvine.gamespot.com/tempests-tale/4045-59953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60019/","id":60019,"name":"Fortress Vader","site_detail_url":"https://comicvine.gamespot.com/fortress-vader/4045-60019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60025/","id":60025,"name":"Cracked Hourglass","site_detail_url":"https://comicvine.gamespot.com/cracked-hourglass/4045-60025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60010/","id":60010,"name":"Action Detectives","site_detail_url":"https://comicvine.gamespot.com/action-detectives/4045-60010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60181/","id":60181,"name":"A Song of Crows","site_detail_url":"https://comicvine.gamespot.com/a-song-of-crows/4045-60181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60248/","id":60248,"name":"The Fall and the Fallen","site_detail_url":"https://comicvine.gamespot.com/the-fall-and-the-fallen/4045-60248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60317/","id":60317,"name":"Dead In the Water","site_detail_url":"https://comicvine.gamespot.com/dead-in-the-water/4045-60317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60334/","id":60334,"name":"Hermosa Heat","site_detail_url":"https://comicvine.gamespot.com/hermosa-heat/4045-60334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60335/","id":60335,"name":"Darkness Within","site_detail_url":"https://comicvine.gamespot.com/darkness-within/4045-60335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60204/","id":60204,"name":"But You Can't Hide","site_detail_url":"https://comicvine.gamespot.com/but-you-cant-hide/4045-60204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60378/","id":60378,"name":"Year of the Villain: Doom Rising","site_detail_url":"https://comicvine.gamespot.com/year-of-the-villain-doom-rising/4045-60378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60402/","id":60402,"name":"The Judge Child","site_detail_url":"https://comicvine.gamespot.com/the-judge-child/4045-60402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60341/","id":60341,"name":"Seduction of the Innocent","site_detail_url":"https://comicvine.gamespot.com/seduction-of-the-innocent/4045-60341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60408/","id":60408,"name":"Rogues' Reign","site_detail_url":"https://comicvine.gamespot.com/rogues-reign/4045-60408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60917/","id":60917,"name":"Shadows of the Bat","site_detail_url":"https://comicvine.gamespot.com/shadows-of-the-bat/4045-60917/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3092/","id":3092,"name":"The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men/4050-3092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2576/","id":2576,"name":"Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up/4050-2576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3234/","id":3234,"name":"The New Mutants","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants/4050-3234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3358/","id":3358,"name":"Power Pack","site_detail_url":"https://comicvine.gamespot.com/power-pack/4050-3358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3657/","id":3657,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-3657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2294/","id":2294,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4050-2294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2190/","id":2190,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4050-2190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4058/","id":4058,"name":"Marvel Comics Presents","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4249/","id":4249,"name":"What If...?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-4249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3519/","id":3519,"name":"Web of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/web-of-spider-man/4050-3519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4604/","id":4604,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-4604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4250/","id":4250,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-4250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4993/","id":4993,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-4993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5300/","id":5300,"name":"Generation X","site_detail_url":"https://comicvine.gamespot.com/generation-x/4050-5300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5066/","id":5066,"name":"X-Men Unlimited","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited/4050-5066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6217/","id":6217,"name":"Mutant X","site_detail_url":"https://comicvine.gamespot.com/mutant-x/4050-6217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6685/","id":6685,"name":"X-Men Classic","site_detail_url":"https://comicvine.gamespot.com/x-men-classic/4050-6685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7191/","id":7191,"name":"Storm","site_detail_url":"https://comicvine.gamespot.com/storm/4050-7191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4823/","id":4823,"name":"X-Men Adventures","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures/4050-4823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2293/","id":2293,"name":"Marvel Tales","site_detail_url":"https://comicvine.gamespot.com/marvel-tales/4050-2293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4605/","id":4605,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-4605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6352/","id":6352,"name":"Bishop: The Last X-Man","site_detail_url":"https://comicvine.gamespot.com/bishop-the-last-x-man/4050-6352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4397/","id":4397,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4050-4397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3497/","id":3497,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3237/","id":3237,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9142/","id":9142,"name":"Peter Parker: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man/4050-9142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5322/","id":5322,"name":"Sabretooth Classic","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic/4050-5322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5337/","id":5337,"name":"X-Men Adventures","site_detail_url":"https://comicvine.gamespot.com/x-men-adventures/4050-5337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9204/","id":9204,"name":"X-Men: The Ultra Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-the-ultra-collection/4050-9204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11501/","id":11501,"name":"X-Men: Age of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse/4050-11501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18145/","id":18145,"name":"Generation M","site_detail_url":"https://comicvine.gamespot.com/generation-m/4050-18145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9411/","id":9411,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men/4050-9411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18126/","id":18126,"name":"All-New Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4050-18126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18366/","id":18366,"name":"Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia/4050-18366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7258/","id":7258,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18703/","id":18703,"name":"Ultimate X-Men/X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide/4050-18703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19196/","id":19196,"name":"X-Men Evolution","site_detail_url":"https://comicvine.gamespot.com/x-men-evolution/4050-19196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19758/","id":19758,"name":"Wizard Presents Cerebro’s Guide to the X-Men","site_detail_url":"https://comicvine.gamespot.com/wizard-presents-cerebros-guide-to-the-x-men/4050-19758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20141/","id":20141,"name":"Cable: Second Genesis","site_detail_url":"https://comicvine.gamespot.com/cable-second-genesis/4050-20141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20142/","id":20142,"name":"X-Force: Shatterstar","site_detail_url":"https://comicvine.gamespot.com/x-force-shatterstar/4050-20142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20666/","id":20666,"name":"Ultimate Secrets","site_detail_url":"https://comicvine.gamespot.com/ultimate-secrets/4050-20666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21196/","id":21196,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-21196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21747/","id":21747,"name":"Cable and the New Mutants","site_detail_url":"https://comicvine.gamespot.com/cable-and-the-new-mutants/4050-21747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21763/","id":21763,"name":"X-Force Megazine","site_detail_url":"https://comicvine.gamespot.com/x-force-megazine/4050-21763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21883/","id":21883,"name":"Wolverine/Punisher Revelation","site_detail_url":"https://comicvine.gamespot.com/wolverinepunisher-revelation/4050-21883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22144/","id":22144,"name":"Backpack Marvels: X-Men","site_detail_url":"https://comicvine.gamespot.com/backpack-marvels-x-men/4050-22144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21546/","id":21546,"name":"The 100 Greatest Marvels of All Time","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time/4050-21546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33895/","id":33895,"name":"X-Men: The Characters And Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe/4050-33895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23443/","id":23443,"name":"X-Men: Worlds Apart","site_detail_url":"https://comicvine.gamespot.com/x-men-worlds-apart/4050-23443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24745/","id":24745,"name":"Essential X-Factor","site_detail_url":"https://comicvine.gamespot.com/essential-x-factor/4050-24745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25428/","id":25428,"name":"Morlocks","site_detail_url":"https://comicvine.gamespot.com/morlocks/4050-25428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25461/","id":25461,"name":"X-Men Anniversary Magazine","site_detail_url":"https://comicvine.gamespot.com/x-men-anniversary-magazine/4050-25461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25847/","id":25847,"name":"Dark Reign Files","site_detail_url":"https://comicvine.gamespot.com/dark-reign-files/4050-25847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23606/","id":23606,"name":"X-Men/Spider-Man","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man/4050-23606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26217/","id":26217,"name":"Essential Wolverine","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine/4050-26217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-8077/","id":8077,"name":"X-Men: The Manga","site_detail_url":"https://comicvine.gamespot.com/x-men-the-manga/4050-8077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26755/","id":26755,"name":"X-Men Origins: Gambit","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-gambit/4050-26755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26953/","id":26953,"name":"X-Men vs. Apocalypse","site_detail_url":"https://comicvine.gamespot.com/x-men-vs-apocalypse/4050-26953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25460/","id":25460,"name":"Spider-Man Magazine","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine/4050-25460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28313/","id":28313,"name":"Decimation: Generation M","site_detail_url":"https://comicvine.gamespot.com/decimation-generation-m/4050-28313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28512/","id":28512,"name":"Uncanny X-Men: Extremists","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-extremists/4050-28512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20511/","id":20511,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-20511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29748/","id":29748,"name":"X-Men Origins","site_detail_url":"https://comicvine.gamespot.com/x-men-origins/4050-29748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30242/","id":30242,"name":"The Uncanny X-Men: From the Ashes...","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-from-the-ashes/4050-30242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30930/","id":30930,"name":"Ghost Rider: Danny Ketch Classic","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-danny-ketch-classic/4050-30930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31061/","id":31061,"name":"X-Men: Mutant Massacre","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre/4050-31061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31089/","id":31089,"name":"X-Men/Spider-Man","site_detail_url":"https://comicvine.gamespot.com/x-menspider-man/4050-31089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31616/","id":31616,"name":"Wolverine Legends","site_detail_url":"https://comicvine.gamespot.com/wolverine-legends/4050-31616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22981/","id":22981,"name":"Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10809/","id":10809,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-10809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28121/","id":28121,"name":"Power Pack Classic","site_detail_url":"https://comicvine.gamespot.com/power-pack-classic/4050-28121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26327/","id":26327,"name":"New Mutants","site_detail_url":"https://comicvine.gamespot.com/new-mutants/4050-26327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34001/","id":34001,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha/4050-34001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33670/","id":33670,"name":"X-Men Forever 2","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2/4050-33670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32034/","id":32034,"name":"X-Factor Forever","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever/4050-32034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35334/","id":35334,"name":"X-Men: We Are the X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-we-are-the-x-men/4050-35334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35634/","id":35634,"name":"Ultimate X-Men: Apocalypse","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-apocalypse/4050-35634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35716/","id":35716,"name":"X-Men: Second Coming","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming/4050-35716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34792/","id":34792,"name":"X-Marvel","site_detail_url":"https://comicvine.gamespot.com/x-marvel/4050-34792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36513/","id":36513,"name":"X-Factor Forever","site_detail_url":"https://comicvine.gamespot.com/x-factor-forever/4050-36513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34526/","id":34526,"name":"Thor Visionaries: Walter Simonson","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson/4050-34526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36822/","id":36822,"name":"X-Force: A Forced To Be Reckoned With","site_detail_url":"https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with/4050-36822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37845/","id":37845,"name":"Wolverine Unleashed","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed/4050-37845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37844/","id":37844,"name":"Wolverine and Gambit","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit/4050-37844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37973/","id":37973,"name":"Heroic Age: X-Men","site_detail_url":"https://comicvine.gamespot.com/heroic-age-x-men/4050-37973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38043/","id":38043,"name":"X-Men: Old Soldiers","site_detail_url":"https://comicvine.gamespot.com/x-men-old-soldiers/4050-38043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38199/","id":38199,"name":"X-Force: Shatterstar","site_detail_url":"https://comicvine.gamespot.com/x-force-shatterstar/4050-38199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38264/","id":38264,"name":"X-Force: Cable and the New Mutants","site_detail_url":"https://comicvine.gamespot.com/x-force-cable-and-the-new-mutants/4050-38264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38964/","id":38964,"name":"X-Men Forever 2: Back in Action","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-back-in-action/4050-38964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37974/","id":37974,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-37974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40111/","id":40111,"name":"Origins of Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics/4050-40111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40168/","id":40168,"name":"X-Men Forever 2: Perfect World","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-perfect-world/4050-40168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40262/","id":40262,"name":"Thor by Walter Simonson Omnibus","site_detail_url":"https://comicvine.gamespot.com/thor-by-walter-simonson-omnibus/4050-40262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40653/","id":40653,"name":"100% Marvel","site_detail_url":"https://comicvine.gamespot.com/100-marvel/4050-40653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40737/","id":40737,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-40737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40828/","id":40828,"name":"X-Men Deluxe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe/4050-40828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34221/","id":34221,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-34221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41147/","id":41147,"name":"Ultimatum Companion","site_detail_url":"https://comicvine.gamespot.com/ultimatum-companion/4050-41147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41460/","id":41460,"name":"Gli Incredibili X-Men","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men/4050-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41197/","id":41197,"name":"Speciale X-Men","site_detail_url":"https://comicvine.gamespot.com/speciale-x-men/4050-41197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41705/","id":41705,"name":"100% Marvel: X-Men: Retorno a la Era de Apocalipsis","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-retorno-a-la-era-de-apocalipsis/4050-41705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41707/","id":41707,"name":"100% Marvel: X-Men / Spiderman","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-spiderman/4050-41707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25971/","id":25971,"name":"The New Mutants Classic","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-classic/4050-25971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41969/","id":41969,"name":"Biblioteca Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men/4050-41969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42042/","id":42042,"name":"Coleccionable X-Men","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men/4050-42042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42291/","id":42291,"name":"Die Ultimativen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men/4050-42291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42684/","id":42684,"name":"Marvel Exklusiv","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv/4050-42684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42852/","id":42852,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-42852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43032/","id":43032,"name":"X-Men: First to Last","site_detail_url":"https://comicvine.gamespot.com/x-men-first-to-last/4050-43032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43163/","id":43163,"name":"X-Men by Chris Claremont & Jim Lee Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-by-chris-claremont-jim-lee-omnibus/4050-43163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43280/","id":43280,"name":"Spiderman: Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up/4050-43280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43442/","id":43442,"name":"Ultimate Spider-Man And X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men/4050-43442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43446/","id":43446,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-43446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43534/","id":43534,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-43534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43569/","id":43569,"name":"X-Men: Mundos Separados","site_detail_url":"https://comicvine.gamespot.com/x-men-mundos-separados/4050-43569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43580/","id":43580,"name":"X-Men Sonderband: X-Force","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force/4050-43580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43634/","id":43634,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43640/","id":43640,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43669/","id":43669,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43672/","id":43672,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43677/","id":43677,"name":"X-Men Sonderheft","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft/4050-43677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41777/","id":41777,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43676/","id":43676,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-43676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36821/","id":36821,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-36821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45159/","id":45159,"name":"Generaciòn-X","site_detail_url":"https://comicvine.gamespot.com/generacion-x/4050-45159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45193/","id":45193,"name":"Factor-X","site_detail_url":"https://comicvine.gamespot.com/factor-x/4050-45193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36469/","id":36469,"name":"Generation Hope","site_detail_url":"https://comicvine.gamespot.com/generation-hope/4050-36469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43673/","id":43673,"name":"X-Men Legado","site_detail_url":"https://comicvine.gamespot.com/x-men-legado/4050-43673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45461/","id":45461,"name":"Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-mutantes/4050-45461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45497/","id":45497,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-45497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45578/","id":45578,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-45578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45602/","id":45602,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-45602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43575/","id":43575,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45919/","id":45919,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha/4050-45919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45796/","id":45796,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-45796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46289/","id":46289,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-46289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43061/","id":43061,"name":"Marvel Miniserie","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie/4050-43061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47272/","id":47272,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-47272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44350/","id":44350,"name":"Titans","site_detail_url":"https://comicvine.gamespot.com/titans/4050-44350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47659/","id":47659,"name":"Spider-Man and his Amazing Friends","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-his-amazing-friends/4050-47659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46305/","id":46305,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-46305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49799/","id":49799,"name":"Generation Hope: The End of A Generation","site_detail_url":"https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation/4050-49799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35263/","id":35263,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-35263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21746/","id":21746,"name":"Cable Classic","site_detail_url":"https://comicvine.gamespot.com/cable-classic/4050-21746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51480/","id":51480,"name":"VvX: Los Vengadores Vs. La Patrulla-X: Prólogo","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-prologo/4050-51480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52454/","id":52454,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-52454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52533/","id":52533,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-52533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52926/","id":52926,"name":"X-Men: Bishop's Crossing","site_detail_url":"https://comicvine.gamespot.com/x-men-bishops-crossing/4050-52926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52893/","id":52893,"name":"Marvel Universe vs. The Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers/4050-52893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51479/","id":51479,"name":"Patrulla-X: Generación Hope","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-generacion-hope/4050-51479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37479/","id":37479,"name":"Generation X Classic","site_detail_url":"https://comicvine.gamespot.com/generation-x-classic/4050-37479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56320/","id":56320,"name":"Facteur-X","site_detail_url":"https://comicvine.gamespot.com/facteur-x/4050-56320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56751/","id":56751,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-56751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57055/","id":57055,"name":"Marvel Mix","site_detail_url":"https://comicvine.gamespot.com/marvel-mix/4050-57055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57167/","id":57167,"name":"X-Force Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-force-omnibus/4050-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57451/","id":57451,"name":"Tempestade dos X-men","site_detail_url":"https://comicvine.gamespot.com/tempestade-dos-x-men/4050-57451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57741/","id":57741,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-57741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58733/","id":58733,"name":"X-Men Paperbacks","site_detail_url":"https://comicvine.gamespot.com/x-men-paperbacks/4050-58733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59411/","id":59411,"name":"Marvel Universe Vs The Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs-the-avengers/4050-59411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59622/","id":59622,"name":"Os Fabulosos X-Men","site_detail_url":"https://comicvine.gamespot.com/os-fabulosos-x-men/4050-59622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44181/","id":44181,"name":"Return of the Jedi","site_detail_url":"https://comicvine.gamespot.com/return-of-the-jedi/4050-44181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34889/","id":34889,"name":"X-Mannen","site_detail_url":"https://comicvine.gamespot.com/x-mannen/4050-34889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60837/","id":60837,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x/4050-60837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52880/","id":52880,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-52880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62430/","id":62430,"name":"Marvel Gold. Los Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/marvel-gold-los-nuevos-mutantes/4050-62430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62951/","id":62951,"name":"X-Men: Ghosts","site_detail_url":"https://comicvine.gamespot.com/x-men-ghosts/4050-62951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64613/","id":64613,"name":"X-mannen Special","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special/4050-64613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64662/","id":64662,"name":"de New Mutants","site_detail_url":"https://comicvine.gamespot.com/de-new-mutants/4050-64662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64735/","id":64735,"name":"Generatie X","site_detail_url":"https://comicvine.gamespot.com/generatie-x/4050-64735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65316/","id":65316,"name":"Ryhmä-X","site_detail_url":"https://comicvine.gamespot.com/ryhma-x/4050-65316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65336/","id":65336,"name":"The Best Of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel/4050-65336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67079/","id":67079,"name":"Age Of Ultron","site_detail_url":"https://comicvine.gamespot.com/age-of-ultron/4050-67079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68192/","id":68192,"name":"X-Men: Storm","site_detail_url":"https://comicvine.gamespot.com/x-men-storm/4050-68192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55243/","id":55243,"name":"Imposibles Vengadores","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores/4050-55243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55915/","id":55915,"name":"Marvel Classic : X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-classic-x-men/4050-55915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69316/","id":69316,"name":"Enciclopedia Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-xmen/4050-69316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69317/","id":69317,"name":"ENCYCLOPÉDIE X-MEN","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-xmen/4050-69317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69318/","id":69318,"name":"Enciclopedia Marvel","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel/4050-69318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69319/","id":69319,"name":"X-MEN ENZYKLOPÄDIE","site_detail_url":"https://comicvine.gamespot.com/xmen-enzyklopadie/4050-69319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69327/","id":69327,"name":"X-Men. I personaggi e il loro universo","site_detail_url":"https://comicvine.gamespot.com/xmen-i-personaggi-e-il-loro-universo/4050-69327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69538/","id":69538,"name":"X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/xmen-annual/4050-69538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53766/","id":53766,"name":"Wolverine Hors Série","site_detail_url":"https://comicvine.gamespot.com/wolverine-hors-serie/4050-53766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43493/","id":43493,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69802/","id":69802,"name":"Maiores Clássicos dos X-Men","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-xmen/4050-69802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60500/","id":60500,"name":"Incredibili Avengers","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers/4050-60500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62905/","id":62905,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-62905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69993/","id":69993,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64433/","id":64433,"name":"Wolverine by Larry Hama and Marc Silvestri","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-larry-hama-and-marc-silvestri/4050-64433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71243/","id":71243,"name":"Supereroi Le Leggende Marvel","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel/4050-71243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71565/","id":71565,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71586/","id":71586,"name":"X-Men : segunda venida","site_detail_url":"https://comicvine.gamespot.com/xmen-segunda-venida/4050-71586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71802/","id":71802,"name":"New Warriors","site_detail_url":"https://comicvine.gamespot.com/new-warriors/4050-71802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72039/","id":72039,"name":"All-New Marvel Now! Teen Heroes","site_detail_url":"https://comicvine.gamespot.com/allnew-marvel-now-teen-heroes/4050-72039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43059/","id":43059,"name":"Los Hombres X","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x/4050-43059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72881/","id":72881,"name":"X-Men: The Age of Apocalypse Omnibus Companion","site_detail_url":"https://comicvine.gamespot.com/xmen-the-age-of-apocalypse-omnibus-companion/4050-72881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68828/","id":68828,"name":"Avante, Vingadores!","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores/4050-68828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73379/","id":73379,"name":"Projekt X / X-Men","site_detail_url":"https://comicvine.gamespot.com/projekt-x-xmen/4050-73379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61802/","id":61802,"name":"Marvel Pocketbook","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook/4050-61802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74208/","id":74208,"name":"Marvel Select : X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-select-xmen/4050-74208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74250/","id":74250,"name":"O Melhor dos X-Men","site_detail_url":"https://comicvine.gamespot.com/o-melhor-dos-xmen/4050-74250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74274/","id":74274,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-74274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74489/","id":74489,"name":"Die Gruppe X Taschenbuch","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch/4050-74489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72111/","id":72111,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4050-72111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72000/","id":72000,"name":"X-Force by Craig Kyle & Chris Yost","site_detail_url":"https://comicvine.gamespot.com/xforce-by-craig-kyle-chris-yost/4050-72000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72934/","id":72934,"name":"Nightcrawler","site_detail_url":"https://comicvine.gamespot.com/nightcrawler/4050-72934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79897/","id":79897,"name":"Uncanny Avengers Omnibus","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-omnibus/4050-79897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82104/","id":82104,"name":"Master of Kung Fu","site_detail_url":"https://comicvine.gamespot.com/master-of-kung-fu/4050-82104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65026/","id":65026,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-65026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27512/","id":27512,"name":"Uncanny X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus/4050-27512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87190/","id":87190,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-87190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41954/","id":41954,"name":"Biblioteca Marvel: Lobezno","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno/4050-41954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47347/","id":47347,"name":"Imposible Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x/4050-47347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94463/","id":94463,"name":"X-Men: Apocalypse Wars","site_detail_url":"https://comicvine.gamespot.com/x-men-apocalypse-wars/4050-94463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30807/","id":30807,"name":"Marvel Masterworks: The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men/4050-30807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93512/","id":93512,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-93512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94886/","id":94886,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-xmen/4050-94886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100100/","id":100100,"name":"X-Force Epic Collection: Under The Gun","site_detail_url":"https://comicvine.gamespot.com/xforce-epic-collection-under-the-gun/4050-100100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100603/","id":100603,"name":"X-Men: Gold","site_detail_url":"https://comicvine.gamespot.com/x-men-gold/4050-100603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74446/","id":74446,"name":"Colección Extra Superhéroes","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes/4050-74446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70689/","id":70689,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/xmen-extra/4050-70689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107121/","id":107121,"name":"X-Men: Grand Design","site_detail_url":"https://comicvine.gamespot.com/xmen-grand-design/4050-107121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109466/","id":109466,"name":"X-Men: Gold: Homecoming","site_detail_url":"https://comicvine.gamespot.com/xmen-gold-homecoming/4050-109466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109533/","id":109533,"name":"X-Men: Grand Design","site_detail_url":"https://comicvine.gamespot.com/xmen-grand-design/4050-109533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110868/","id":110868,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-110868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111165/","id":111165,"name":"Wolverine: The Amazing Immortal Man and Other Bloody Tales","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-amazing-immortal-man-and-other-blood/4050-111165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112481/","id":112481,"name":"X-Men: Grand Design - Second Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-112481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-113491/","id":113491,"name":"Iceman","site_detail_url":"https://comicvine.gamespot.com/iceman/4050-113491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114948/","id":114948,"name":"X-Men: Grand Design - Second Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-114948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115098/","id":115098,"name":"X-Men: Mutant Massacre Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-massacre-omnibus/4050-115098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117579/","id":117579,"name":"Death of Wolverine Companion","site_detail_url":"https://comicvine.gamespot.com/death-of-wolverine-companion/4050-117579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117788/","id":117788,"name":"X-Men Resurrxion","site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion/4050-117788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117893/","id":117893,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-117893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118248/","id":118248,"name":"Iceman: Amazing Friends","site_detail_url":"https://comicvine.gamespot.com/iceman-amazing-friends/4050-118248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119344/","id":119344,"name":"X-Men: Grand Design – X-Tinction","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction/4050-119344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120422/","id":120422,"name":"X-Men Milestones: Mutant Massacre","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-mutant-massacre/4050-120422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120748/","id":120748,"name":"X-Men: Grand Design – X-Tinction","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction/4050-120748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124879/","id":124879,"name":"Adventures of the X-Men: Tooth & Claw","site_detail_url":"https://comicvine.gamespot.com/adventures-of-the-x-men-tooth-and-claw/4050-124879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125184/","id":125184,"name":"100% Marvel. Hombre de Hielo","site_detail_url":"https://comicvine.gamespot.com/100-marvel-hombre-de-hielo/4050-125184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125482/","id":125482,"name":"Power Pack Classic Omnibus","site_detail_url":"https://comicvine.gamespot.com/power-pack-classic-omnibus/4050-125482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125813/","id":125813,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-125813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126015/","id":126015,"name":"Hellions","site_detail_url":"https://comicvine.gamespot.com/hellions/4050-126015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126052/","id":126052,"name":"X-Men: Von Anfang bis Ende","site_detail_url":"https://comicvine.gamespot.com/x-men-von-anfang-bis-ende/4050-126052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130192/","id":130192,"name":"True Believers: X-Men: Greycrow","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-greycrow/4050-130192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130339/","id":130339,"name":"X-Men: Grand Design Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus/4050-130339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130566/","id":130566,"name":"True Believers: X-Men: Soulsword","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-men-soulsword/4050-130566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122218/","id":122218,"name":"Marauders","site_detail_url":"https://comicvine.gamespot.com/marauders/4050-122218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140469/","id":140469,"name":"Deadpool Epic Collection: The Circle Chase","site_detail_url":"https://comicvine.gamespot.com/deadpool-epic-collection-the-circle-chase/4050-140469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-139823/","id":139823,"name":"Die Spinne","site_detail_url":"https://comicvine.gamespot.com/die-spinne/4050-139823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125179/","id":125179,"name":"Merodeadores","site_detail_url":"https://comicvine.gamespot.com/merodeadores/4050-125179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141232/","id":141232,"name":"Infernales","site_detail_url":"https://comicvine.gamespot.com/infernales/4050-141232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133887/","id":133887,"name":"X-Men Legends","site_detail_url":"https://comicvine.gamespot.com/x-men-legends/4050-133887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143304/","id":143304,"name":"X-Men Legends: Mutant Mayhem","site_detail_url":"https://comicvine.gamespot.com/x-men-legends-mutant-mayhem/4050-143304/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/team-details/team-4060-3775.json b/samples/api-data/team-details/team-4060-3775.json new file mode 100644 index 0000000..d76b076 --- /dev/null +++ b/samples/api-data/team-details/team-4060-3775.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Strategic Hazard Intervention, Espionage and Logistics Directorate","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3775/","character_enemies":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86532/","id":86532,"name":"Agent Gorman","site_detail_url":"https://comicvine.gamespot.com/agent-gorman/4005-86532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40820/","id":40820,"name":"Aleksander Lukin","site_detail_url":"https://comicvine.gamespot.com/aleksander-lukin/4005-40820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85761/","id":85761,"name":"Andrew Forson","site_detail_url":"https://comicvine.gamespot.com/andrew-forson/4005-85761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4662/","id":4662,"name":"Baron von Strucker","site_detail_url":"https://comicvine.gamespot.com/baron-von-strucker/4005-4662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26064/","id":26064,"name":"Bison","site_detail_url":"https://comicvine.gamespot.com/bison/4005-26064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4647/","id":4647,"name":"Bullseye","site_detail_url":"https://comicvine.gamespot.com/bullseye/4005-4647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3225/","id":3225,"name":"Crossbones","site_detail_url":"https://comicvine.gamespot.com/crossbones/4005-3225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15529/","id":15529,"name":"Crule","site_detail_url":"https://comicvine.gamespot.com/crule/4005-15529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14451/","id":14451,"name":"Cyclone","site_detail_url":"https://comicvine.gamespot.com/cyclone/4005-14451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1459/","id":1459,"name":"Cyclops","site_detail_url":"https://comicvine.gamespot.com/cyclops/4005-1459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7606/","id":7606,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4005-7606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1468/","id":1468,"name":"Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/doctor-doom/4005-1468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34185/","id":34185,"name":"Doctor Faustus","site_detail_url":"https://comicvine.gamespot.com/doctor-faustus/4005-34185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97072/","id":97072,"name":"Dr. Mindbubble","site_detail_url":"https://comicvine.gamespot.com/dr-mindbubble/4005-97072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92362/","id":92362,"name":"Eel (Lavell)","site_detail_url":"https://comicvine.gamespot.com/eel-lavell/4005-92362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1802/","id":1802,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4005-1802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1457/","id":1457,"name":"Emma Frost","site_detail_url":"https://comicvine.gamespot.com/emma-frost/4005-1457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21599/","id":21599,"name":"Godzilla","site_detail_url":"https://comicvine.gamespot.com/godzilla/4005-21599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13347/","id":13347,"name":"Graviton","site_detail_url":"https://comicvine.gamespot.com/graviton/4005-13347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12064/","id":12064,"name":"Hate-Monger","site_detail_url":"https://comicvine.gamespot.com/hate-monger/4005-12064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93071/","id":93071,"name":"Iron Nail","site_detail_url":"https://comicvine.gamespot.com/iron-nail/4005-93071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10946/","id":10946,"name":"Jude the Entropic Man","site_detail_url":"https://comicvine.gamespot.com/jude-the-entropic-man/4005-10946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11895/","id":11895,"name":"King Cobra","site_detail_url":"https://comicvine.gamespot.com/king-cobra/4005-11895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8303/","id":8303,"name":"Magik","site_detail_url":"https://comicvine.gamespot.com/magik/4005-8303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1441/","id":1441,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4005-1441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13922/","id":13922,"name":"Mentallo","site_detail_url":"https://comicvine.gamespot.com/mentallo/4005-13922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1525/","id":1525,"name":"Punisher","site_detail_url":"https://comicvine.gamespot.com/punisher/4005-1525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2250/","id":2250,"name":"Red Skull","site_detail_url":"https://comicvine.gamespot.com/red-skull/4005-2250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118755/","id":118755,"name":"Regent","site_detail_url":"https://comicvine.gamespot.com/regent/4005-118755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34393/","id":34393,"name":"Sen. Eugene Kligger Stivak","site_detail_url":"https://comicvine.gamespot.com/sen-eugene-kligger-stivak/4005-34393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28057/","id":28057,"name":"Sin","site_detail_url":"https://comicvine.gamespot.com/sin/4005-28057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25690/","id":25690,"name":"Superia","site_detail_url":"https://comicvine.gamespot.com/superia/4005-25690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109614/","id":109614,"name":"Teen Abomination","site_detail_url":"https://comicvine.gamespot.com/teen-abomination/4005-109614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-94683/","id":94683,"name":"The Junkman","site_detail_url":"https://comicvine.gamespot.com/the-junkman/4005-94683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92359/","id":92359,"name":"Viper (Murtaugh)","site_detail_url":"https://comicvine.gamespot.com/viper-murtaugh/4005-92359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1440/","id":1440,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4005-1440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19397/","id":19397,"name":"Yelena Belova","site_detail_url":"https://comicvine.gamespot.com/yelena-belova/4005-19397/"}],"character_friends":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1462/","id":1462,"name":"Beast","site_detail_url":"https://comicvine.gamespot.com/beast/4005-1462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2247/","id":2247,"name":"Hank Pym","site_detail_url":"https://comicvine.gamespot.com/hank-pym/4005-2247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1455/","id":1455,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4005-1455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14819/","id":14819,"name":"Pete Wisdom","site_detail_url":"https://comicvine.gamespot.com/pete-wisdom/4005-14819/"}],"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4822/","id":4822,"name":"Abe Jenkins","site_detail_url":"https://comicvine.gamespot.com/abe-jenkins/4005-4822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4441/","id":4441,"name":"Abigail Brand","site_detail_url":"https://comicvine.gamespot.com/abigail-brand/4005-4441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66712/","id":66712,"name":"Ace","site_detail_url":"https://comicvine.gamespot.com/ace/4005-66712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61559/","id":61559,"name":"Adam Manna","site_detail_url":"https://comicvine.gamespot.com/adam-manna/4005-61559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-136236/","id":136236,"name":"Agent 22","site_detail_url":"https://comicvine.gamespot.com/agent-22/4005-136236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74038/","id":74038,"name":"Agent 33","site_detail_url":"https://comicvine.gamespot.com/agent-33/4005-74038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134578/","id":134578,"name":"Agent Aguilla","site_detail_url":"https://comicvine.gamespot.com/agent-aguilla/4005-134578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106333/","id":106333,"name":"Agent Astor","site_detail_url":"https://comicvine.gamespot.com/agent-astor/4005-106333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105056/","id":105056,"name":"Agent Baines","site_detail_url":"https://comicvine.gamespot.com/agent-baines/4005-105056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-108361/","id":108361,"name":"Agent Becerra","site_detail_url":"https://comicvine.gamespot.com/agent-becerra/4005-108361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90238/","id":90238,"name":"Agent Beefcake","site_detail_url":"https://comicvine.gamespot.com/agent-beefcake/4005-90238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65325/","id":65325,"name":"Agent Briggs","site_detail_url":"https://comicvine.gamespot.com/agent-briggs/4005-65325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42047/","id":42047,"name":"Agent Cheesecake","site_detail_url":"https://comicvine.gamespot.com/agent-cheesecake/4005-42047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29145/","id":29145,"name":"Agent Donahue","site_detail_url":"https://comicvine.gamespot.com/agent-donahue/4005-29145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131440/","id":131440,"name":"Agent Elder","site_detail_url":"https://comicvine.gamespot.com/agent-elder/4005-131440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91613/","id":91613,"name":"Agent Farber","site_detail_url":"https://comicvine.gamespot.com/agent-farber/4005-91613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91322/","id":91322,"name":"Agent Goddard","site_detail_url":"https://comicvine.gamespot.com/agent-goddard/4005-91322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86532/","id":86532,"name":"Agent Gorman","site_detail_url":"https://comicvine.gamespot.com/agent-gorman/4005-86532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115184/","id":115184,"name":"Agent Haines","site_detail_url":"https://comicvine.gamespot.com/agent-haines/4005-115184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48866/","id":48866,"name":"Agent Huang","site_detail_url":"https://comicvine.gamespot.com/agent-huang/4005-48866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168975/","id":168975,"name":"Agent Johnson","site_detail_url":"https://comicvine.gamespot.com/agent-johnson/4005-168975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118700/","id":118700,"name":"Agent Jones","site_detail_url":"https://comicvine.gamespot.com/agent-jones/4005-118700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18601/","id":18601,"name":"Agent Kali Vries","site_detail_url":"https://comicvine.gamespot.com/agent-kali-vries/4005-18601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-96980/","id":96980,"name":"Agent Keller","site_detail_url":"https://comicvine.gamespot.com/agent-keller/4005-96980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131661/","id":131661,"name":"Agent Krill","site_detail_url":"https://comicvine.gamespot.com/agent-krill/4005-131661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131660/","id":131660,"name":"Agent Kurdle","site_detail_url":"https://comicvine.gamespot.com/agent-kurdle/4005-131660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56980/","id":56980,"name":"Agent L","site_detail_url":"https://comicvine.gamespot.com/agent-l/4005-56980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91615/","id":91615,"name":"Agent Lindsay","site_detail_url":"https://comicvine.gamespot.com/agent-lindsay/4005-91615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105055/","id":105055,"name":"Agent Locke","site_detail_url":"https://comicvine.gamespot.com/agent-locke/4005-105055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95298/","id":95298,"name":"Agent London","site_detail_url":"https://comicvine.gamespot.com/agent-london/4005-95298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-117641/","id":117641,"name":"Agent Lumley","site_detail_url":"https://comicvine.gamespot.com/agent-lumley/4005-117641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-84290/","id":84290,"name":"Agent Lydon","site_detail_url":"https://comicvine.gamespot.com/agent-lydon/4005-84290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80490/","id":80490,"name":"Agent Martins","site_detail_url":"https://comicvine.gamespot.com/agent-martins/4005-80490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-138137/","id":138137,"name":"Agent Mary","site_detail_url":"https://comicvine.gamespot.com/agent-mary/4005-138137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146940/","id":146940,"name":"Agent Morgan","site_detail_url":"https://comicvine.gamespot.com/agent-morgan/4005-146940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113083/","id":113083,"name":"Agent Nolan","site_detail_url":"https://comicvine.gamespot.com/agent-nolan/4005-113083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11569/","id":11569,"name":"Agent Orange","site_detail_url":"https://comicvine.gamespot.com/agent-orange/4005-11569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134579/","id":134579,"name":"Agent Payne","site_detail_url":"https://comicvine.gamespot.com/agent-payne/4005-134579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168976/","id":168976,"name":"Agent Peterson","site_detail_url":"https://comicvine.gamespot.com/agent-peterson/4005-168976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56979/","id":56979,"name":"Agent R","site_detail_url":"https://comicvine.gamespot.com/agent-r/4005-56979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-106334/","id":106334,"name":"Agent Rodriguez","site_detail_url":"https://comicvine.gamespot.com/agent-rodriguez/4005-106334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100290/","id":100290,"name":"Agent Rodriguez","site_detail_url":"https://comicvine.gamespot.com/agent-rodriguez/4005-100290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-130309/","id":130309,"name":"Agent Rowse","site_detail_url":"https://comicvine.gamespot.com/agent-rowse/4005-130309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65328/","id":65328,"name":"Agent Simon","site_detail_url":"https://comicvine.gamespot.com/agent-simon/4005-65328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118701/","id":118701,"name":"Agent Smith","site_detail_url":"https://comicvine.gamespot.com/agent-smith/4005-118701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51085/","id":51085,"name":"Agent Smith","site_detail_url":"https://comicvine.gamespot.com/agent-smith/4005-51085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134575/","id":134575,"name":"Agent Stokes","site_detail_url":"https://comicvine.gamespot.com/agent-stokes/4005-134575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48379/","id":48379,"name":"Agent Sum","site_detail_url":"https://comicvine.gamespot.com/agent-sum/4005-48379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97828/","id":97828,"name":"Agent Trump","site_detail_url":"https://comicvine.gamespot.com/agent-trump/4005-97828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100289/","id":100289,"name":"Agent Withers","site_detail_url":"https://comicvine.gamespot.com/agent-withers/4005-100289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57787/","id":57787,"name":"Agent Young","site_detail_url":"https://comicvine.gamespot.com/agent-young/4005-57787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-157406/","id":157406,"name":"Aidan Tintreach ","site_detail_url":"https://comicvine.gamespot.com/aidan-tintreach/4005-157406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59793/","id":59793,"name":"Al MacKenzie","site_detail_url":"https://comicvine.gamespot.com/al-mackenzie/4005-59793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61337/","id":61337,"name":"Alex DePaul","site_detail_url":"https://comicvine.gamespot.com/alex-depaul/4005-61337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11910/","id":11910,"name":"Alexander Pierce","site_detail_url":"https://comicvine.gamespot.com/alexander-pierce/4005-11910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55399/","id":55399,"name":"Alisande Morales","site_detail_url":"https://comicvine.gamespot.com/alisande-morales/4005-55399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91178/","id":91178,"name":"Alvin Murphy","site_detail_url":"https://comicvine.gamespot.com/alvin-murphy/4005-91178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132524/","id":132524,"name":"Amos Trench","site_detail_url":"https://comicvine.gamespot.com/amos-trench/4005-132524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110634/","id":110634,"name":"Andrea Hope","site_detail_url":"https://comicvine.gamespot.com/andrea-hope/4005-110634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54511/","id":54511,"name":"Android X-4","site_detail_url":"https://comicvine.gamespot.com/android-x-4/4005-54511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91783/","id":91783,"name":"Answer","site_detail_url":"https://comicvine.gamespot.com/answer/4005-91783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133918/","id":133918,"name":"Antoine Triplett","site_detail_url":"https://comicvine.gamespot.com/antoine-triplett/4005-133918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57687/","id":57687,"name":"Arachnophilia","site_detail_url":"https://comicvine.gamespot.com/arachnophilia/4005-57687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110435/","id":110435,"name":"Arthur Banks","site_detail_url":"https://comicvine.gamespot.com/arthur-banks/4005-110435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61816/","id":61816,"name":"Arthur Perry","site_detail_url":"https://comicvine.gamespot.com/arthur-perry/4005-61816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156500/","id":156500,"name":"Arwyn Wong","site_detail_url":"https://comicvine.gamespot.com/arwyn-wong/4005-156500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148104/","id":148104,"name":"Austin Salmi","site_detail_url":"https://comicvine.gamespot.com/austin-salmi/4005-148104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28034/","id":28034,"name":"Balaban","site_detail_url":"https://comicvine.gamespot.com/balaban/4005-28034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-148209/","id":148209,"name":"Barricade","site_detail_url":"https://comicvine.gamespot.com/barricade/4005-148209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14750/","id":14750,"name":"Becky Lockhart","site_detail_url":"https://comicvine.gamespot.com/becky-lockhart/4005-14750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83259/","id":83259,"name":"Beloved","site_detail_url":"https://comicvine.gamespot.com/beloved/4005-83259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3445/","id":3445,"name":"Betty Ross","site_detail_url":"https://comicvine.gamespot.com/betty-ross/4005-3445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59160/","id":59160,"name":"Biogeneral","site_detail_url":"https://comicvine.gamespot.com/biogeneral/4005-59160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52503/","id":52503,"name":"Black Bat","site_detail_url":"https://comicvine.gamespot.com/black-bat/4005-52503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1477/","id":1477,"name":"Black Panther","site_detail_url":"https://comicvine.gamespot.com/black-panther/4005-1477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3200/","id":3200,"name":"Black Widow","site_detail_url":"https://comicvine.gamespot.com/black-widow/4005-3200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75700/","id":75700,"name":"Black Widow (Clone)","site_detail_url":"https://comicvine.gamespot.com/black-widow-clone/4005-75700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7570/","id":7570,"name":"Blade","site_detail_url":"https://comicvine.gamespot.com/blade/4005-7570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-77388/","id":77388,"name":"Blindside","site_detail_url":"https://comicvine.gamespot.com/blindside/4005-77388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15622/","id":15622,"name":"Brent Jackson","site_detail_url":"https://comicvine.gamespot.com/brent-jackson/4005-15622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82069/","id":82069,"name":"Buck Lime","site_detail_url":"https://comicvine.gamespot.com/buck-lime/4005-82069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34354/","id":34354,"name":"Buck Richlen","site_detail_url":"https://comicvine.gamespot.com/buck-richlen/4005-34354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40470/","id":40470,"name":"Bucky Barnes","site_detail_url":"https://comicvine.gamespot.com/bucky-barnes/4005-40470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-144866/","id":144866,"name":"Buzz Mason","site_detail_url":"https://comicvine.gamespot.com/buzz-mason/4005-144866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123015/","id":123015,"name":"Cadet Avery","site_detail_url":"https://comicvine.gamespot.com/cadet-avery/4005-123015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123017/","id":123017,"name":"Cadet Ibarra","site_detail_url":"https://comicvine.gamespot.com/cadet-ibarra/4005-123017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123016/","id":123016,"name":"Cadet Randall","site_detail_url":"https://comicvine.gamespot.com/cadet-randall/4005-123016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123014/","id":123014,"name":"Cadet Vang","site_detail_url":"https://comicvine.gamespot.com/cadet-vang/4005-123014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95821/","id":95821,"name":"Cameron Klein","site_detail_url":"https://comicvine.gamespot.com/cameron-klein/4005-95821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1442/","id":1442,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4005-1442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-147486/","id":147486,"name":"Captain America (HYDRA)","site_detail_url":"https://comicvine.gamespot.com/captain-america-hydra/4005-147486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7477/","id":7477,"name":"Captain Britain","site_detail_url":"https://comicvine.gamespot.com/captain-britain/4005-7477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1472/","id":1472,"name":"Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/captain-marvel/4005-1472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59900/","id":59900,"name":"Carl Delandan","site_detail_url":"https://comicvine.gamespot.com/carl-delandan/4005-59900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40706/","id":40706,"name":"Carmilla Black","site_detail_url":"https://comicvine.gamespot.com/carmilla-black/4005-40706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-21561/","id":21561,"name":"Carol Danvers","site_detail_url":"https://comicvine.gamespot.com/carol-danvers/4005-21561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165432/","id":165432,"name":"Carolina Washington","site_detail_url":"https://comicvine.gamespot.com/carolina-washington/4005-165432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86389/","id":86389,"name":"Carrion (Allen)","site_detail_url":"https://comicvine.gamespot.com/carrion-allen/4005-86389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3918/","id":3918,"name":"Catherine Mora","site_detail_url":"https://comicvine.gamespot.com/catherine-mora/4005-3918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114451/","id":114451,"name":"Charles Dalton","site_detail_url":"https://comicvine.gamespot.com/charles-dalton/4005-114451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30470/","id":30470,"name":"Chastity McBryde","site_detail_url":"https://comicvine.gamespot.com/chastity-mcbryde/4005-30470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79426/","id":79426,"name":"Chris McCarthy","site_detail_url":"https://comicvine.gamespot.com/chris-mccarthy/4005-79426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81821/","id":81821,"name":"Chris Poulsen","site_detail_url":"https://comicvine.gamespot.com/chris-poulsen/4005-81821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24535/","id":24535,"name":"Chris Townsend","site_detail_url":"https://comicvine.gamespot.com/chris-townsend/4005-24535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146879/","id":146879,"name":"Chuck the Dwarf","site_detail_url":"https://comicvine.gamespot.com/chuck-the-dwarf/4005-146879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7524/","id":7524,"name":"Clay Quartermain","site_detail_url":"https://comicvine.gamespot.com/clay-quartermain/4005-7524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95816/","id":95816,"name":"Clete Billups","site_detail_url":"https://comicvine.gamespot.com/clete-billups/4005-95816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165967/","id":165967,"name":"Clyde Dobronski","site_detail_url":"https://comicvine.gamespot.com/clyde-dobronski/4005-165967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55090/","id":55090,"name":"Colonel Bruce Wayne","site_detail_url":"https://comicvine.gamespot.com/colonel-bruce-wayne/4005-55090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28204/","id":28204,"name":"Colonel Vashkin","site_detail_url":"https://comicvine.gamespot.com/colonel-vashkin/4005-28204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58236/","id":58236,"name":"Condor","site_detail_url":"https://comicvine.gamespot.com/condor/4005-58236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2127/","id":2127,"name":"Constrictor","site_detail_url":"https://comicvine.gamespot.com/constrictor/4005-2127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28760/","id":28760,"name":"Crimson","site_detail_url":"https://comicvine.gamespot.com/crimson/4005-28760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69840/","id":69840,"name":"Daisy Dugan","site_detail_url":"https://comicvine.gamespot.com/daisy-dugan/4005-69840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87516/","id":87516,"name":"Daman Veteri","site_detail_url":"https://comicvine.gamespot.com/daman-veteri/4005-87516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-114581/","id":114581,"name":"Daniel Fricks","site_detail_url":"https://comicvine.gamespot.com/daniel-fricks/4005-114581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133914/","id":133914,"name":"Daniel Sousa","site_detail_url":"https://comicvine.gamespot.com/daniel-sousa/4005-133914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24694/","id":24694,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4005-24694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60608/","id":60608,"name":"David Purcell","site_detail_url":"https://comicvine.gamespot.com/david-purcell/4005-60608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11827/","id":11827,"name":"David Scotty","site_detail_url":"https://comicvine.gamespot.com/david-scotty/4005-11827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1498/","id":1498,"name":"Dazzler","site_detail_url":"https://comicvine.gamespot.com/dazzler/4005-1498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7606/","id":7606,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4005-7606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92983/","id":92983,"name":"Dean Haddad","site_detail_url":"https://comicvine.gamespot.com/dean-haddad/4005-92983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7258/","id":7258,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4005-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83243/","id":83243,"name":"Deltite","site_detail_url":"https://comicvine.gamespot.com/deltite/4005-83243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44735/","id":44735,"name":"Derek Khanata","site_detail_url":"https://comicvine.gamespot.com/derek-khanata/4005-44735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-104178/","id":104178,"name":"Derek Malloy","site_detail_url":"https://comicvine.gamespot.com/derek-malloy/4005-104178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70184/","id":70184,"name":"Derrick Richardson","site_detail_url":"https://comicvine.gamespot.com/derrick-richardson/4005-70184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92138/","id":92138,"name":"Desmond Boothroyd","site_detail_url":"https://comicvine.gamespot.com/desmond-boothroyd/4005-92138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25689/","id":25689,"name":"Diamondback","site_detail_url":"https://comicvine.gamespot.com/diamondback/4005-25689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61751/","id":61751,"name":"Dimensional Man","site_detail_url":"https://comicvine.gamespot.com/dimensional-man/4005-61751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14199/","id":14199,"name":"Dino Manelli","site_detail_url":"https://comicvine.gamespot.com/dino-manelli/4005-14199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1468/","id":1468,"name":"Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/doctor-doom/4005-1468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34185/","id":34185,"name":"Doctor Faustus","site_detail_url":"https://comicvine.gamespot.com/doctor-faustus/4005-34185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10280/","id":10280,"name":"Doctor Voodoo","site_detail_url":"https://comicvine.gamespot.com/doctor-voodoo/4005-10280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5016/","id":5016,"name":"Dr Huxley","site_detail_url":"https://comicvine.gamespot.com/dr-huxley/4005-5016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79762/","id":79762,"name":"Dr. Ingrid Thysson","site_detail_url":"https://comicvine.gamespot.com/dr-ingrid-thysson/4005-79762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-115292/","id":115292,"name":"Dr. Miglietta","site_detail_url":"https://comicvine.gamespot.com/dr-miglietta/4005-115292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-97072/","id":97072,"name":"Dr. Mindbubble","site_detail_url":"https://comicvine.gamespot.com/dr-mindbubble/4005-97072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79133/","id":79133,"name":"Dragonfly","site_detail_url":"https://comicvine.gamespot.com/dragonfly/4005-79133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54527/","id":54527,"name":"Druid","site_detail_url":"https://comicvine.gamespot.com/druid/4005-54527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3526/","id":3526,"name":"Dum Dum Dugan","site_detail_url":"https://comicvine.gamespot.com/dum-dum-dugan/4005-3526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149392/","id":149392,"name":"Dylan Mason","site_detail_url":"https://comicvine.gamespot.com/dylan-mason/4005-149392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-174785/","id":174785,"name":"Earl Angstrom","site_detail_url":"https://comicvine.gamespot.com/earl-angstrom/4005-174785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149540/","id":149540,"name":"Edwin Darwin","site_detail_url":"https://comicvine.gamespot.com/edwin-darwin/4005-149540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1802/","id":1802,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4005-1802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86531/","id":86531,"name":"Emily Preston","site_detail_url":"https://comicvine.gamespot.com/emily-preston/4005-86531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88743/","id":88743,"name":"Eomonn Brankin","site_detail_url":"https://comicvine.gamespot.com/eomonn-brankin/4005-88743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13837/","id":13837,"name":"Eric Koenig","site_detail_url":"https://comicvine.gamespot.com/eric-koenig/4005-13837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6774/","id":6774,"name":"Eric O'Grady","site_detail_url":"https://comicvine.gamespot.com/eric-ogrady/4005-6774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135242/","id":135242,"name":"Erik Gorbo","site_detail_url":"https://comicvine.gamespot.com/erik-gorbo/4005-135242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87047/","id":87047,"name":"Erik Selvig","site_detail_url":"https://comicvine.gamespot.com/erik-selvig/4005-87047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146934/","id":146934,"name":"Eugene Cattivo","site_detail_url":"https://comicvine.gamespot.com/eugene-cattivo/4005-146934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4567/","id":4567,"name":"Exodus","site_detail_url":"https://comicvine.gamespot.com/exodus/4005-4567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1451/","id":1451,"name":"Falcon","site_detail_url":"https://comicvine.gamespot.com/falcon/4005-1451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-46785/","id":46785,"name":"Fat Cobra","site_detail_url":"https://comicvine.gamespot.com/fat-cobra/4005-46785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127337/","id":127337,"name":"Francois Borillon","site_detail_url":"https://comicvine.gamespot.com/francois-borillon/4005-127337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-150196/","id":150196,"name":"Frank Dallas","site_detail_url":"https://comicvine.gamespot.com/frank-dallas/4005-150196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126161/","id":126161,"name":"Frankenstein's Monster (Clone)","site_detail_url":"https://comicvine.gamespot.com/frankensteins-monster-clone/4005-126161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79776/","id":79776,"name":"Franklin Rhodes","site_detail_url":"https://comicvine.gamespot.com/franklin-rhodes/4005-79776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146939/","id":146939,"name":"Fredrickson","site_detail_url":"https://comicvine.gamespot.com/fredrickson/4005-146939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15062/","id":15062,"name":"G.W. Bridge","site_detail_url":"https://comicvine.gamespot.com/gw-bridge/4005-15062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13836/","id":13836,"name":"Gabriel Jones","site_detail_url":"https://comicvine.gamespot.com/gabriel-jones/4005-13836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7526/","id":7526,"name":"Gail Runciter","site_detail_url":"https://comicvine.gamespot.com/gail-runciter/4005-7526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17507/","id":17507,"name":"Galileo Galilei","site_detail_url":"https://comicvine.gamespot.com/galileo-galilei/4005-17507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59023/","id":59023,"name":"Garwood","site_detail_url":"https://comicvine.gamespot.com/garwood/4005-59023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66504/","id":66504,"name":"Gertrude Jacks","site_detail_url":"https://comicvine.gamespot.com/gertrude-jacks/4005-66504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29147/","id":29147,"name":"Gilbert Vaughn","site_detail_url":"https://comicvine.gamespot.com/gilbert-vaughn/4005-29147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3474/","id":3474,"name":"Glob","site_detail_url":"https://comicvine.gamespot.com/glob/4005-3474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88942/","id":88942,"name":"Godseye ","site_detail_url":"https://comicvine.gamespot.com/godseye/4005-88942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47380/","id":47380,"name":"Golden Blade","site_detail_url":"https://comicvine.gamespot.com/golden-blade/4005-47380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13960/","id":13960,"name":"Gorilla-Man","site_detail_url":"https://comicvine.gamespot.com/gorilla-man/4005-13960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105833/","id":105833,"name":"Grant Ward","site_detail_url":"https://comicvine.gamespot.com/grant-ward/4005-105833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-24341/","id":24341,"name":"Groot","site_detail_url":"https://comicvine.gamespot.com/groot/4005-24341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102035/","id":102035,"name":"Gungnir","site_detail_url":"https://comicvine.gamespot.com/gungnir/4005-102035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112345/","id":112345,"name":"H.E.N.R.Y.","site_detail_url":"https://comicvine.gamespot.com/h-e-n-r-y/4005-112345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2247/","id":2247,"name":"Hank Pym","site_detail_url":"https://comicvine.gamespot.com/hank-pym/4005-2247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-85703/","id":85703,"name":"Harold Beaker","site_detail_url":"https://comicvine.gamespot.com/harold-beaker/4005-85703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1475/","id":1475,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/hawkeye/4005-1475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59038/","id":59038,"name":"Heather Sante","site_detail_url":"https://comicvine.gamespot.com/heather-sante/4005-59038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40454/","id":40454,"name":"Hellion","site_detail_url":"https://comicvine.gamespot.com/hellion/4005-40454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14695/","id":14695,"name":"Hellstorm","site_detail_url":"https://comicvine.gamespot.com/hellstorm/4005-14695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-103660/","id":103660,"name":"Henry Hayes","site_detail_url":"https://comicvine.gamespot.com/henry-hayes/4005-103660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2503/","id":2503,"name":"Hercules","site_detail_url":"https://comicvine.gamespot.com/hercules/4005-2503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67438/","id":67438,"name":"Hit-Monkey","site_detail_url":"https://comicvine.gamespot.com/hit-monkey/4005-67438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48549/","id":48549,"name":"Howard Stark","site_detail_url":"https://comicvine.gamespot.com/howard-stark/4005-48549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2267/","id":2267,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4005-2267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3426/","id":3426,"name":"Husk","site_detail_url":"https://comicvine.gamespot.com/husk/4005-3426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79132/","id":79132,"name":"Iceboy","site_detail_url":"https://comicvine.gamespot.com/iceboy/4005-79132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70308/","id":70308,"name":"Imhotep","site_detail_url":"https://comicvine.gamespot.com/imhotep/4005-70308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70671/","id":70671,"name":"Inali Redpath","site_detail_url":"https://comicvine.gamespot.com/inali-redpath/4005-70671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2190/","id":2190,"name":"Invisible Woman","site_detail_url":"https://comicvine.gamespot.com/invisible-woman/4005-2190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1455/","id":1455,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4005-1455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93071/","id":93071,"name":"Iron Nail","site_detail_url":"https://comicvine.gamespot.com/iron-nail/4005-93071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59607/","id":59607,"name":"Iron Woman","site_detail_url":"https://comicvine.gamespot.com/iron-woman/4005-59607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18587/","id":18587,"name":"It The Living Colossus","site_detail_url":"https://comicvine.gamespot.com/it-the-living-colossus/4005-18587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83239/","id":83239,"name":"Ivory","site_detail_url":"https://comicvine.gamespot.com/ivory/4005-83239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14198/","id":14198,"name":"Izzy Cohen","site_detail_url":"https://comicvine.gamespot.com/izzy-cohen/4005-14198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59102/","id":59102,"name":"Jack Lang","site_detail_url":"https://comicvine.gamespot.com/jack-lang/4005-59102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7618/","id":7618,"name":"Jack Monroe","site_detail_url":"https://comicvine.gamespot.com/jack-monroe/4005-7618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22009/","id":22009,"name":"Jack Norriss","site_detail_url":"https://comicvine.gamespot.com/jack-norriss/4005-22009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-129198/","id":129198,"name":"Jack Rollins","site_detail_url":"https://comicvine.gamespot.com/jack-rollins/4005-129198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15199/","id":15199,"name":"Jack Truman","site_detail_url":"https://comicvine.gamespot.com/jack-truman/4005-15199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5076/","id":5076,"name":"Jake Fury","site_detail_url":"https://comicvine.gamespot.com/jake-fury/4005-5076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60302/","id":60302,"name":"Jake Oh","site_detail_url":"https://comicvine.gamespot.com/jake-oh/4005-60302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7529/","id":7529,"name":"Jasper Sitwell","site_detail_url":"https://comicvine.gamespot.com/jasper-sitwell/4005-7529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86502/","id":86502,"name":"Jefferson Davis","site_detail_url":"https://comicvine.gamespot.com/jefferson-davis/4005-86502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165662/","id":165662,"name":"Jeffrey Parks","site_detail_url":"https://comicvine.gamespot.com/jeffrey-parks/4005-165662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105831/","id":105831,"name":"Jemma Simmons","site_detail_url":"https://comicvine.gamespot.com/jemma-simmons/4005-105831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68610/","id":68610,"name":"Jenna Carlisle","site_detail_url":"https://comicvine.gamespot.com/jenna-carlisle/4005-68610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118688/","id":118688,"name":"Jeremiah Warrick","site_detail_url":"https://comicvine.gamespot.com/jeremiah-warrick/4005-118688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13841/","id":13841,"name":"Jerry Hunt","site_detail_url":"https://comicvine.gamespot.com/jerry-hunt/4005-13841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60785/","id":60785,"name":"Jillian Wong","site_detail_url":"https://comicvine.gamespot.com/jillian-wong/4005-60785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12605/","id":12605,"name":"Jim Hammond","site_detail_url":"https://comicvine.gamespot.com/jim-hammond/4005-12605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7530/","id":7530,"name":"Jimmy Woo","site_detail_url":"https://comicvine.gamespot.com/jimmy-woo/4005-7530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-53295/","id":53295,"name":"Joaquin Pennysworth","site_detail_url":"https://comicvine.gamespot.com/joaquin-pennysworth/4005-53295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87532/","id":87532,"name":"Joe Robards","site_detail_url":"https://comicvine.gamespot.com/joe-robards/4005-87532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151156/","id":151156,"name":"Joe Spencer","site_detail_url":"https://comicvine.gamespot.com/joe-spencer/4005-151156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78457/","id":78457,"name":"Johanna Maley","site_detail_url":"https://comicvine.gamespot.com/johanna-maley/4005-78457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54413/","id":54413,"name":"John Allen","site_detail_url":"https://comicvine.gamespot.com/john-allen/4005-54413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25685/","id":25685,"name":"John Garrett","site_detail_url":"https://comicvine.gamespot.com/john-garrett/4005-25685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3205/","id":3205,"name":"John Wraith","site_detail_url":"https://comicvine.gamespot.com/john-wraith/4005-3205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113690/","id":113690,"name":"Jonas Cobb","site_detail_url":"https://comicvine.gamespot.com/jonas-cobb/4005-113690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-151160/","id":151160,"name":"Jonas Williams","site_detail_url":"https://comicvine.gamespot.com/jonas-williams/4005-151160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3906/","id":3906,"name":"Jonathan Mora","site_detail_url":"https://comicvine.gamespot.com/jonathan-mora/4005-3906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4344/","id":4344,"name":"Joseph Hauer","site_detail_url":"https://comicvine.gamespot.com/joseph-hauer/4005-4344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-133865/","id":133865,"name":"Jude","site_detail_url":"https://comicvine.gamespot.com/jude/4005-133865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91609/","id":91609,"name":"Judith Klemmer","site_detail_url":"https://comicvine.gamespot.com/judith-klemmer/4005-91609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135241/","id":135241,"name":"Julia","site_detail_url":"https://comicvine.gamespot.com/julia/4005-135241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41324/","id":41324,"name":"Junkpile","site_detail_url":"https://comicvine.gamespot.com/junkpile/4005-41324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2262/","id":2262,"name":"Kate Bishop","site_detail_url":"https://comicvine.gamespot.com/kate-bishop/4005-2262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57323/","id":57323,"name":"Kate Neville","site_detail_url":"https://comicvine.gamespot.com/kate-neville/4005-57323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31645/","id":31645,"name":"Kate Waynesboro","site_detail_url":"https://comicvine.gamespot.com/kate-waynesboro/4005-31645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43982/","id":43982,"name":"Kenjiro Tanaka","site_detail_url":"https://comicvine.gamespot.com/kenjiro-tanaka/4005-43982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113812/","id":113812,"name":"Kevin Kraller","site_detail_url":"https://comicvine.gamespot.com/kevin-kraller/4005-113812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79135/","id":79135,"name":"Key","site_detail_url":"https://comicvine.gamespot.com/key/4005-79135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9386/","id":9386,"name":"Killdeer","site_detail_url":"https://comicvine.gamespot.com/killdeer/4005-9386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9387/","id":9387,"name":"Kite","site_detail_url":"https://comicvine.gamespot.com/kite/4005-9387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3548/","id":3548,"name":"Kitty Pryde","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde/4005-3548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74326/","id":74326,"name":"Knockabout","site_detail_url":"https://comicvine.gamespot.com/knockabout/4005-74326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132523/","id":132523,"name":"Kris Boyle","site_detail_url":"https://comicvine.gamespot.com/kris-boyle/4005-132523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57278/","id":57278,"name":"Kymberly Taylor","site_detail_url":"https://comicvine.gamespot.com/kymberly-taylor/4005-57278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9122/","id":9122,"name":"Lance Hunter","site_detail_url":"https://comicvine.gamespot.com/lance-hunter/4005-9122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-127851/","id":127851,"name":"Lancelot","site_detail_url":"https://comicvine.gamespot.com/lancelot/4005-127851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-82784/","id":82784,"name":"Larry Young","site_detail_url":"https://comicvine.gamespot.com/larry-young/4005-82784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13838/","id":13838,"name":"Laura Brown","site_detail_url":"https://comicvine.gamespot.com/laura-brown/4005-13838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105832/","id":105832,"name":"Leo Fitz","site_detail_url":"https://comicvine.gamespot.com/leo-fitz/4005-105832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10691/","id":10691,"name":"Leonardo Da Vinci","site_detail_url":"https://comicvine.gamespot.com/leonardo-da-vinci/4005-10691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41945/","id":41945,"name":"Lilith Drake","site_detail_url":"https://comicvine.gamespot.com/lilith-drake/4005-41945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13939/","id":13939,"name":"Living Mummy","site_detail_url":"https://comicvine.gamespot.com/living-mummy/4005-13939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70418/","id":70418,"name":"Lorenzo Costa","site_detail_url":"https://comicvine.gamespot.com/lorenzo-costa/4005-70418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83242/","id":83242,"name":"Lump","site_detail_url":"https://comicvine.gamespot.com/lump/4005-83242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11945/","id":11945,"name":"Lynn Michaels","site_detail_url":"https://comicvine.gamespot.com/lynn-michaels/4005-11945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52221/","id":52221,"name":"M-80","site_detail_url":"https://comicvine.gamespot.com/m-80/4005-52221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3709/","id":3709,"name":"M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/modok/4005-3709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-75779/","id":75779,"name":"M.O.D.O.K. 2.0","site_detail_url":"https://comicvine.gamespot.com/m-o-d-o-k-2-0/4005-75779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7910/","id":7910,"name":"Madrox","site_detail_url":"https://comicvine.gamespot.com/madrox/4005-7910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8303/","id":8303,"name":"Magik","site_detail_url":"https://comicvine.gamespot.com/magik/4005-8303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-132522/","id":132522,"name":"Mahir Ranzack","site_detail_url":"https://comicvine.gamespot.com/mahir-ranzack/4005-132522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3706/","id":3706,"name":"Major America","site_detail_url":"https://comicvine.gamespot.com/major-america/4005-3706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68733/","id":68733,"name":"Major Deadpool","site_detail_url":"https://comicvine.gamespot.com/major-deadpool/4005-68733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13946/","id":13946,"name":"Man-Bull","site_detail_url":"https://comicvine.gamespot.com/man-bull/4005-13946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4988/","id":4988,"name":"Man-Thing","site_detail_url":"https://comicvine.gamespot.com/man-thing/4005-4988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-61756/","id":61756,"name":"Manphibian","site_detail_url":"https://comicvine.gamespot.com/manphibian/4005-61756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40824/","id":40824,"name":"Maria Hill","site_detail_url":"https://comicvine.gamespot.com/maria-hill/4005-40824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168682/","id":168682,"name":"Mark Smith","site_detail_url":"https://comicvine.gamespot.com/mark-smith/4005-168682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13726/","id":13726,"name":"Marrow","site_detail_url":"https://comicvine.gamespot.com/marrow/4005-13726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123665/","id":123665,"name":"Martin Reyna","site_detail_url":"https://comicvine.gamespot.com/martin-reyna/4005-123665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8307/","id":8307,"name":"Maverick","site_detail_url":"https://comicvine.gamespot.com/maverick/4005-8307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87519/","id":87519,"name":"Melinda Leucenstern","site_detail_url":"https://comicvine.gamespot.com/melinda-leucenstern/4005-87519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-105830/","id":105830,"name":"Melinda May","site_detail_url":"https://comicvine.gamespot.com/melinda-may/4005-105830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13922/","id":13922,"name":"Mentallo","site_detail_url":"https://comicvine.gamespot.com/mentallo/4005-13922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73946/","id":73946,"name":"Mercedes Merced","site_detail_url":"https://comicvine.gamespot.com/mercedes-merced/4005-73946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86983/","id":86983,"name":"Michael Hawthorne","site_detail_url":"https://comicvine.gamespot.com/michael-hawthorne/4005-86983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92680/","id":92680,"name":"Michael Peterson","site_detail_url":"https://comicvine.gamespot.com/michael-peterson/4005-92680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165663/","id":165663,"name":"Michael Stevenson","site_detail_url":"https://comicvine.gamespot.com/michael-stevenson/4005-165663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113084/","id":113084,"name":"Mike McSwiggin","site_detail_url":"https://comicvine.gamespot.com/mike-mcswiggin/4005-113084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-55801/","id":55801,"name":"Mikel Fury","site_detail_url":"https://comicvine.gamespot.com/mikel-fury/4005-55801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79420/","id":79420,"name":"Miles Morales","site_detail_url":"https://comicvine.gamespot.com/miles-morales/4005-79420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57118/","id":57118,"name":"Mitch Carson","site_detail_url":"https://comicvine.gamespot.com/mitch-carson/4005-57118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2497/","id":2497,"name":"Mockingbird","site_detail_url":"https://comicvine.gamespot.com/mockingbird/4005-2497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69702/","id":69702,"name":"Monica Chang","site_detail_url":"https://comicvine.gamespot.com/monica-chang/4005-69702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1463/","id":1463,"name":"Moonstar","site_detail_url":"https://comicvine.gamespot.com/moonstar/4005-1463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52406/","id":52406,"name":"Moonwing","site_detail_url":"https://comicvine.gamespot.com/moonwing/4005-52406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78932/","id":78932,"name":"Ms America","site_detail_url":"https://comicvine.gamespot.com/ms-america/4005-78932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52222/","id":52222,"name":"Nails","site_detail_url":"https://comicvine.gamespot.com/nails/4005-52222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79467/","id":79467,"name":"Nance Winters","site_detail_url":"https://comicvine.gamespot.com/nance-winters/4005-79467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152045/","id":152045,"name":"Nathan Paul","site_detail_url":"https://comicvine.gamespot.com/nathan-paul/4005-152045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7221/","id":7221,"name":"Nathaniel Richards","site_detail_url":"https://comicvine.gamespot.com/nathaniel-richards/4005-7221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-60001/","id":60001,"name":"Network Nina","site_detail_url":"https://comicvine.gamespot.com/network-nina/4005-60001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146935/","id":146935,"name":"Newton","site_detail_url":"https://comicvine.gamespot.com/newton/4005-146935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-168681/","id":168681,"name":"Nicholas Cooper","site_detail_url":"https://comicvine.gamespot.com/nicholas-cooper/4005-168681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3202/","id":3202,"name":"Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury/4005-3202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-80752/","id":80752,"name":"Nick Fury Jr.","site_detail_url":"https://comicvine.gamespot.com/nick-fury-jr/4005-80752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-120806/","id":120806,"name":"Nicole Orr","site_detail_url":"https://comicvine.gamespot.com/nicole-orr/4005-120806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154495/","id":154495,"name":"Night Cat","site_detail_url":"https://comicvine.gamespot.com/night-cat/4005-154495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-39843/","id":39843,"name":"Nostradamus","site_detail_url":"https://comicvine.gamespot.com/nostradamus/4005-39843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-58080/","id":58080,"name":"Old Soldier","site_detail_url":"https://comicvine.gamespot.com/old-soldier/4005-58080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68221/","id":68221,"name":"Olivia Hooks","site_detail_url":"https://comicvine.gamespot.com/olivia-hooks/4005-68221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-17792/","id":17792,"name":"Orrgo","site_detail_url":"https://comicvine.gamespot.com/orrgo/4005-17792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-48346/","id":48346,"name":"Overrider","site_detail_url":"https://comicvine.gamespot.com/overrider/4005-48346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10584/","id":10584,"name":"Paladin","site_detail_url":"https://comicvine.gamespot.com/paladin/4005-10584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95779/","id":95779,"name":"Pandora Peters","site_detail_url":"https://comicvine.gamespot.com/pandora-peters/4005-95779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152412/","id":152412,"name":"Paul Garwood","site_detail_url":"https://comicvine.gamespot.com/paul-garwood/4005-152412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-123884/","id":123884,"name":"Paul Kraye","site_detail_url":"https://comicvine.gamespot.com/paul-kraye/4005-123884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-56757/","id":56757,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/payback/4005-56757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35979/","id":35979,"name":"Peggy Carter","site_detail_url":"https://comicvine.gamespot.com/peggy-carter/4005-35979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14197/","id":14197,"name":"Percy Pinkerton","site_detail_url":"https://comicvine.gamespot.com/percy-pinkerton/4005-14197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-33376/","id":33376,"name":"Peter Boyer","site_detail_url":"https://comicvine.gamespot.com/peter-boyer/4005-33376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70860/","id":70860,"name":"Phil Coulson","site_detail_url":"https://comicvine.gamespot.com/phil-coulson/4005-70860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3203/","id":3203,"name":"Phil Dexter","site_detail_url":"https://comicvine.gamespot.com/phil-dexter/4005-3203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70420/","id":70420,"name":"Pietro Perugino","site_detail_url":"https://comicvine.gamespot.com/pietro-perugino/4005-70420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14874/","id":14874,"name":"Prowler","site_detail_url":"https://comicvine.gamespot.com/prowler/4005-14874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-78625/","id":78625,"name":"Psi-Borg","site_detail_url":"https://comicvine.gamespot.com/psi-borg/4005-78625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7613/","id":7613,"name":"Punisher 2099","site_detail_url":"https://comicvine.gamespot.com/punisher-2099/4005-7613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43174/","id":43174,"name":"Quake","site_detail_url":"https://comicvine.gamespot.com/quake/4005-43174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3319/","id":3319,"name":"Quasar","site_detail_url":"https://comicvine.gamespot.com/quasar/4005-3319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128630/","id":128630,"name":"Quasar (Kincaid)","site_detail_url":"https://comicvine.gamespot.com/quasar-kincaid/4005-128630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9034/","id":9034,"name":"Quinn","site_detail_url":"https://comicvine.gamespot.com/quinn/4005-9034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91321/","id":91321,"name":"R.O.B.","site_detail_url":"https://comicvine.gamespot.com/r-o-b/4005-91321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10841/","id":10841,"name":"Rabble Rouser","site_detail_url":"https://comicvine.gamespot.com/rabble-rouser/4005-10841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47573/","id":47573,"name":"Ragnarok","site_detail_url":"https://comicvine.gamespot.com/ragnarok/4005-47573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87517/","id":87517,"name":"Randall Jessup","site_detail_url":"https://comicvine.gamespot.com/randall-jessup/4005-87517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9389/","id":9389,"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/rapture/4005-9389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15449/","id":15449,"name":"Razor-Fist","site_detail_url":"https://comicvine.gamespot.com/razor-fist/4005-15449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83240/","id":83240,"name":"Red","site_detail_url":"https://comicvine.gamespot.com/red/4005-83240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-28978/","id":28978,"name":"Redeemer","site_detail_url":"https://comicvine.gamespot.com/redeemer/4005-28978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83583/","id":83583,"name":"Rick Stoner","site_detail_url":"https://comicvine.gamespot.com/rick-stoner/4005-83583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152511/","id":152511,"name":"Rico","site_detail_url":"https://comicvine.gamespot.com/rico/4005-152511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-30871/","id":30871,"name":"Rock","site_detail_url":"https://comicvine.gamespot.com/rock/4005-30871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91607/","id":91607,"name":"Roger Juniper","site_detail_url":"https://comicvine.gamespot.com/roger-juniper/4005-91607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92048/","id":92048,"name":"Roz Solomon","site_detail_url":"https://comicvine.gamespot.com/roz-solomon/4005-92048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52522/","id":52522,"name":"Sal Kennedy","site_detail_url":"https://comicvine.gamespot.com/sal-kennedy/4005-52522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-93446/","id":93446,"name":"Sarah Garza","site_detail_url":"https://comicvine.gamespot.com/sarah-garza/4005-93446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4484/","id":4484,"name":"Scorpion","site_detail_url":"https://comicvine.gamespot.com/scorpion/4005-4484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-95532/","id":95532,"name":"Scott Adsit","site_detail_url":"https://comicvine.gamespot.com/scott-adsit/4005-95532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-92185/","id":92185,"name":"Sergei Radek","site_detail_url":"https://comicvine.gamespot.com/sergei-radek/4005-92185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146936/","id":146936,"name":"Sgt. Mark Danzinger","site_detail_url":"https://comicvine.gamespot.com/sgt-mark-danzinger/4005-146936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13888/","id":13888,"name":"Shamrock","site_detail_url":"https://comicvine.gamespot.com/shamrock/4005-13888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38227/","id":38227,"name":"Sharon Carter","site_detail_url":"https://comicvine.gamespot.com/sharon-carter/4005-38227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-145677/","id":145677,"name":"Sharon Rogers","site_detail_url":"https://comicvine.gamespot.com/sharon-rogers/4005-145677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1449/","id":1449,"name":"She-Hulk","site_detail_url":"https://comicvine.gamespot.com/she-hulk/4005-1449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13485/","id":13485,"name":"Sheva Josephs","site_detail_url":"https://comicvine.gamespot.com/sheva-josephs/4005-13485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9388/","id":9388,"name":"Shrike","site_detail_url":"https://comicvine.gamespot.com/shrike/4005-9388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-13840/","id":13840,"name":"Sidney Levine","site_detail_url":"https://comicvine.gamespot.com/sidney-levine/4005-13840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11920/","id":11920,"name":"Siege","site_detail_url":"https://comicvine.gamespot.com/siege/4005-11920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52215/","id":52215,"name":"Silicon","site_detail_url":"https://comicvine.gamespot.com/silicon/4005-52215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101483/","id":101483,"name":"Silk","site_detail_url":"https://comicvine.gamespot.com/silk/4005-101483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11206/","id":11206,"name":"Sin-Eater","site_detail_url":"https://comicvine.gamespot.com/sin-eater/4005-11206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3194/","id":3194,"name":"Skids","site_detail_url":"https://comicvine.gamespot.com/skids/4005-3194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52220/","id":52220,"name":"Skul","site_detail_url":"https://comicvine.gamespot.com/skul/4005-52220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-99749/","id":99749,"name":"Slasher","site_detail_url":"https://comicvine.gamespot.com/slasher/4005-99749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31074/","id":31074,"name":"Smithville Thunderbolt","site_detail_url":"https://comicvine.gamespot.com/smithville-thunderbolt/4005-31074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3281/","id":3281,"name":"Songbird","site_detail_url":"https://comicvine.gamespot.com/songbird/4005-3281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-101017/","id":101017,"name":"Sophia McDougall","site_detail_url":"https://comicvine.gamespot.com/sophia-mcdougall/4005-101017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-131968/","id":131968,"name":"Special Agent Carver","site_detail_url":"https://comicvine.gamespot.com/special-agent-carver/4005-131968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1443/","id":1443,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4005-1443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1453/","id":1453,"name":"Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/spider-woman/4005-1453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10222/","id":10222,"name":"Spymaster","site_detail_url":"https://comicvine.gamespot.com/spymaster/4005-10222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-143653/","id":143653,"name":"Stacy Cromwell","site_detail_url":"https://comicvine.gamespot.com/stacy-cromwell/4005-143653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3115/","id":3115,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4005-3115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-135058/","id":135058,"name":"Stanley Swickle","site_detail_url":"https://comicvine.gamespot.com/stanley-swickle/4005-135058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73772/","id":73772,"name":"Star Child","site_detail_url":"https://comicvine.gamespot.com/star-child/4005-73772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-152966/","id":152966,"name":"Starktech 9","site_detail_url":"https://comicvine.gamespot.com/starktech-9/4005-152966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146937/","id":146937,"name":"Stassen","site_detail_url":"https://comicvine.gamespot.com/stassen/4005-146937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7776/","id":7776,"name":"Stegron","site_detail_url":"https://comicvine.gamespot.com/stegron/4005-7776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-146938/","id":146938,"name":"Stern","site_detail_url":"https://comicvine.gamespot.com/stern/4005-146938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-165664/","id":165664,"name":"Steven Tyler","site_detail_url":"https://comicvine.gamespot.com/steven-tyler/4005-165664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11943/","id":11943,"name":"Stone Cold","site_detail_url":"https://comicvine.gamespot.com/stone-cold/4005-11943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-155479/","id":155479,"name":"Superoid","site_detail_url":"https://comicvine.gamespot.com/superoid/4005-155479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-175504/","id":175504,"name":"Talia Warroad","site_detail_url":"https://comicvine.gamespot.com/talia-warroad/4005-175504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4578/","id":4578,"name":"Taskmaster","site_detail_url":"https://comicvine.gamespot.com/taskmaster/4005-4578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25794/","id":25794,"name":"Ted Munn","site_detail_url":"https://comicvine.gamespot.com/ted-munn/4005-25794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109614/","id":109614,"name":"Teen Abomination","site_detail_url":"https://comicvine.gamespot.com/teen-abomination/4005-109614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90348/","id":90348,"name":"Teresa Parker","site_detail_url":"https://comicvine.gamespot.com/teresa-parker/4005-90348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10214/","id":10214,"name":"Texas Twister","site_detail_url":"https://comicvine.gamespot.com/texas-twister/4005-10214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-52219/","id":52219,"name":"The Kid","site_detail_url":"https://comicvine.gamespot.com/the-kid/4005-52219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65639/","id":65639,"name":"Tia Senyaka","site_detail_url":"https://comicvine.gamespot.com/tia-senyaka/4005-65639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79136/","id":79136,"name":"Tiger","site_detail_url":"https://comicvine.gamespot.com/tiger/4005-79136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15220/","id":15220,"name":"Twitchy","site_detail_url":"https://comicvine.gamespot.com/twitchy/4005-15220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14992/","id":14992,"name":"U.S.Agent","site_detail_url":"https://comicvine.gamespot.com/usagent/4005-14992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34390/","id":34390,"name":"Val Adair","site_detail_url":"https://comicvine.gamespot.com/val-adair/4005-34390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23797/","id":23797,"name":"Valentina de Fontaine","site_detail_url":"https://comicvine.gamespot.com/valentina-de-fontaine/4005-23797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-69984/","id":69984,"name":"Valerie Jessup","site_detail_url":"https://comicvine.gamespot.com/valerie-jessup/4005-69984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40679/","id":40679,"name":"Vampire by Night","site_detail_url":"https://comicvine.gamespot.com/vampire-by-night/4005-40679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1486/","id":1486,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/venom/4005-1486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-54514/","id":54514,"name":"Veranke","site_detail_url":"https://comicvine.gamespot.com/veranke/4005-54514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161916/","id":161916,"name":"Veronica Eden","site_detail_url":"https://comicvine.gamespot.com/veronica-eden/4005-161916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42412/","id":42412,"name":"Veronica King","site_detail_url":"https://comicvine.gamespot.com/veronica-king/4005-42412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-59261/","id":59261,"name":"Victoria Hand","site_detail_url":"https://comicvine.gamespot.com/victoria-hand/4005-59261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74327/","id":74327,"name":"Violence","site_detail_url":"https://comicvine.gamespot.com/violence/4005-74327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-87520/","id":87520,"name":"Vista","site_detail_url":"https://comicvine.gamespot.com/vista/4005-87520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-102502/","id":102502,"name":"Vladimir","site_detail_url":"https://comicvine.gamespot.com/vladimir/4005-102502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4459/","id":4459,"name":"Vulture","site_detail_url":"https://comicvine.gamespot.com/vulture/4005-4459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1926/","id":1926,"name":"War Machine","site_detail_url":"https://comicvine.gamespot.com/war-machine/4005-1926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-27562/","id":27562,"name":"Warhawk","site_detail_url":"https://comicvine.gamespot.com/warhawk/4005-27562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11936/","id":11936,"name":"Warwolf","site_detail_url":"https://comicvine.gamespot.com/warwolf/4005-11936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-154143/","id":154143,"name":"William Collins","site_detail_url":"https://comicvine.gamespot.com/william-collins/4005-154143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-29146/","id":29146,"name":"William Wesley","site_detail_url":"https://comicvine.gamespot.com/william-wesley/4005-29146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1440/","id":1440,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4005-1440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19397/","id":19397,"name":"Yelena Belova","site_detail_url":"https://comicvine.gamespot.com/yelena-belova/4005-19397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70307/","id":70307,"name":"Zhang Heng","site_detail_url":"https://comicvine.gamespot.com/zhang-heng/4005-70307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-26731/","id":26731,"name":"Zigfried Trask","site_detail_url":"https://comicvine.gamespot.com/zigfried-trask/4005-26731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-126163/","id":126163,"name":"Zombie (John Doe)","site_detail_url":"https://comicvine.gamespot.com/zombie-john-doe/4005-126163/"}],"count_of_isssue_appearances":0,"count_of_team_members":404,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-11-14 15:31:14","deck":"A U.N. affiliated intelligence agency dealing primarily with terrorism and superhuman threats that was originally founded by the U.S. government.","description":"

    Origin

    S.H.I.E.L.D. was formed by Nick Fury, in the period after World War II. However, he figured the U.S. government wouldn't want a group like that, so he disbanded it. Later, though, after a terrorist attack, he noticed that a group like S.H.I.E.L.D. could really have helped and prevented the disaster. So he reformed it. Meanwhile, the United Nations had already taken S.H.I.E.L.D. and restarted it, having Colonel Rick Stoner becoming the first Director of the organization. Fury immediately joined and rose to the top. The Nations had reformed it in response to a HYDRA attack, and once Fury was leading it, it flourished.

    Creation

    S.H.I.E.L.D. made their first appearance in Strange Tales #135. They were created by Stan Lee and Jack Kirby.

    Team Evolution

    S.H.I.E.L.D. (Strategic Hazard Intervention, Espionage and Logistics Directorate) or Supreme Headquarters International Espionage Law enforcement Division (see Iron Man #227) is a group affiliated with the U.N that deals with superhuman threats. It is an intelligence and anti-terrorism group similar to the FBI, only it is an international corporation that spans all the world. It acts like the police force. S.H.I.E.L.D. agents are armed and work well, much more effective then standard police. They fight terrorists as well as super humans. S.H.I.E.L.D. also has been responsible for the starting of spin-off groups like S.W.O.R.D. and S.T.R.I.K.E. S.H.I.E.L.D. has agents that also are higher level, that often are super humans. Captain America, Spider-Woman, and Iron Man all have operated as S.H.I.E.L.D. agents. S.H.I.E.L.D. keeps ties to the superhuman community, too-they often call on the Fantastic Four, the Avengers, and Captain America.

    S.H.I.E.L.D. has superhuman agents in the past-two teams were formed in an effort to make a S.H.I.E.L.D. superhuman team. The first team consisted of Marvel Man, Texas Twister, the Vamp, and Blue Streak. However, it quickly failed, and another team in the same vein also failed. The Psi-Division of S.H.I.E.L.D. is a group of psychics or telepaths that deal with psionic menaces. This is only one of the groups of super humans that work in S.H.I.E.L.D. for the greater good.

    All S.H.I.E.L.D. members have a certain level, based on their importance. A normal S.H.I.E.L.D. agent will have a Level One-which means he can pass through Level One areas and has clearance. A sergeant might have Level Two, which means he has Level Two and One clearance. The Director of S.H.I.E.L.D. has a Level Nine clearance. Level Ten means the most important person in the world-no one currently possesses a Level Ten clearance. Not even the President, or Nick Fury.

    S.H.I.E.L.D. has many bases around the world. Many are on land-most notably S.H.I.E.L.D. Central, which is located in New York City. There are also many shelters that are secretly placed around the world. Fury has used one, as has the Secret Avengers when they needed a base during the events of Civil War. However, their most famous and important base is the S.H.I.E.L.D. Helicarrier.

    Helicarrier

    The Helicarrier is an aircraft that is constantly in the air. It is huge enough to hold an aircraft carrier. It is the mobile headquarters of S.H.I.E.L.D. and is extremely protected. The Helicarrier has held an entire squadron of jet fighters and a nuclear ballistic missile. There is one major Helicarrier, which is the one that is most important and used. There are also many smaller Helicarriers, however, which all serve as bases too. The Helicarrier has an extremely high level of security-even if someone managed to get on without clearance, guards and extremely powerful security technology would have them gone in a second. The Helicarrier was first proposed by Stark Industries, and was designed by Tony Stark, Forge, and Mr. Fantastic.

    S.H.I.E.L.D. operated as a covert, military/intelligence agency at the time, and members of it had already appeared. S.H.I.E.L.D. already fought HYDRA then-the evil group had plots like the aforementioned \"Overkill Horn\". A.I.M. made its first appearance, and individual villains such as Red Skull also popped up and needed to be stopped by S.H.I.E.L.D.. At this time, Godzilla came, and the Godzilla Squad was formed to take the monster down. S.H.I.E.L.D. had tough periods during this time. Several lifelike robots got so smart that they became able to think and make choices-they became sentient beings. They had a grudge against S.H.I.E.L.D. for making them follow orders all the time before they had intelligence-so they drugged important S.H.I.E.L.D. members and took their place within the organization. Several of these were Contessa Valentina Allegra de la Fontaine, Jimmy Woo, and Jasper Sitwell, among others. However, the valiant Fury managed to take them down.

    Fury's Influence

    Most of the reason that S.H.I.E.L.D. was so effective started with Fury. He started the group and put good, effective agents in place. He was extremely popular in and out of S.H.I.E.L.D. and had strong ties with the hero community. Without him, many \"pessimists\" and intellectuals theorized that S.H.I.E.L.D. would fall, and fall hard.

    Unfortunately, they were right. S.H.I.E.L.D. ran into disastrous times. As aforementioned, Nick Fury did a mission in Latveria to stop them from attacking the U.S. However, it was totally unauthorized, and Fury was forced to resign from S.H.I.E.L.D. Warrants went out for his arrest. The new head of S.H.I.E.L.D. was Maria Hill-who proved to be incompetent at the position. The President of the U.S. was a driving force behind Hill's election-for two reasons. Hill was an American, so the President expected her to be loyal first and foremost to the U.S. even though S.H.I.E.L.D. was a United Nations facility. Also, many men and women had been members of S.H.I.E.L.D. for a long time, and they would have been much better as the head of S.H.I.E.L.D.. However, they were \"too loyal to Fury\", so Hill got the job to keep the Fury loyalists out.

    S.H.I.E.L.D. took a downward turn. Fury's work as the head of S.H.I.E.L.D. was extremely effective, and an insane amount of work had kept corruption out of the huge organization. Unfortunately, Hill wasn't as good as Fury at it, and S.H.I.E.L.D. became corrupt and weak. Crimes were committed. Criminals were \"stockpiled\" in prison. Worst of all, the Avengers discovered that someone was mining the anti-metal in the Savage Land using slave labor-and S.H.I.E.L.D. was the prime suspect.

    Subdivisions

    S.H.I.E.L.D. also has many subdivisions and other groups based off it. Two other groups have been formed from S.H.I.E.L.D.; S.W.O.R.D.,S.A.F.E., to A.R.M.O.R. .

    S.W.O.R.D. stands for Sentient World Observation and Response Department. As you can easily guess, S.W.O.R.D. works with extraterrestrials. It stops extraterrestrial threats, keeps tabs on powerful aliens, etc. They are not a subdivision of S.H.I.E.L.D. but are actually a separate, yet similar group that simply works with S.H.I.E.L.D. However, they are closely affiliated with both S.H.I.E.L.D. and the United Nations. S.W.O.R.D. encountered Ord, an alien who was convinced that a mutant from Earth was destined to destroy his planet. He attempted to attack Earth to kill all the mutants but S.W.O.R.D. and the X-Men stopped him, effectively stopping an interplanetary war. The leader of S.W.O.R.D. is Abigail Brand, a tough, effective leader who stopped many crises and is extremely valuable to S.H.I.E.L.D. She was a Fury loyalist and respected him a lot and greatly dislikes Maria Hill. As for Tony Stark, he has not encountered S.W.O.R.D. or Brand yet. S.W.O.R.D. is currently trying to stop another war with a planet called Breakworld.

    Since S.H.I.E.L.D. is loyal to the United Nations two countries have created their own answer to S.H.I.E.L.D. that works within their country and their country alone. The first to appear was the British version of S.H.I.E.L.D., S.T.R.I.K.E. (Special Tactical Reserve for International Key Emergencies). S.T.R.I.K.E. was British, but one of their early leaders, Tod Radcliffe, was revealed to be a traitor that worked for the Red Skull. The next leader was Lance Hunter. They worked closely with Captain Britain. However, Vixen (Captain Britain's enemy) took them over and S.T.R.I.K.E. was disbanded. The most prominent person to work for S.T.R.I.K.E. was Betsy Braddock, who had psychic powers. After leaving S.T.R.I.K.E.. she joined the X-Men as the heroine Psylocke.

    S.A.F.E. is the United States answer to S.H.I.E.L.D. The name stands for Strategic Action For Emergencies. S.A.F.E. is nearly identical to S.H.I.E.L.D., except they are only in the U.S. They have fought many enemies, including Doctor Doom and Baron Heinrich Zemo. The leader is Sean Morgan, a competent leader and good soldier. Joshua Ballard is the most prolific agent, and he's extremely helpful-he's the Dum Dum Dugan of S.A.F.E..

    Along with these agencies, other small groups have been formed including Euromind and Starcore.

    Another group that has continually showed up over the years is the Cape Killers. They were never an official S.H.I.E.L.D. group, but S.H.I.E.L.D. agents did make up it's ranks. The term Cape Killers was given to any group of soldiers trained to hunt, subdue and in worst case scenario kill meta humans. The Cape Killers have had such members as Agent Abrams, Agent Cleery, Dum Dum Dugan, & Special Agent Marquez, and her partner Agent McAllister.

    Members

    \"Nick
    Nick Fury

    The most prominent, important, and effective member of S.H.I.E.L.D. is the man who runs it all, Nick Fury. Fury was born in New York City in 1921, to decorated World War I pilot Jack Fury. He and his friend Red Hargrove lusted after adventure-so they joined the U.S. Army in World War II. Nick was an adept soldier, and he was given command of the First Attack Squad-nicknamed the Howling Commandos. The Howling Commandos were extremely effective-and Fury quickly became a decorated war hero.

    After the war, Fury was hit by a land mine and badly injured. The government decided to test a new formula on him-that would heal him and greatly retard his aging. This was called the Infinity Formula. It worked-Fury was restored to full strength and is still in his physical prime today. He eventually joined the CIA and became a CIA agent in Korea, also interacting with the Fantastic Four. Tony Stark hired him to be the second commander of S.H.I.E.L.D. and Fury excelled at the job. Under his leadership, S.H.I.E.L.D. grew and grew until it is now one of the most powerful organizations in the world. Fury led S.H.I.E.L.D. for over forty years, working tirelessly and keeping it powerful and secret.

    However, Fury recently discovered that Latveria, led by the evil Doctor Doom, was planning to attack America. He immediately had S.H.I.E.L.D. launch a covert assault on the country, effectively stopping the massive attack that would have taken place. A year later, Latveria attacked back, and thousands were killed. Fury was blamed-and Luke Cage was injured. Captain America was angered at Fury. Eventually, this culminated in Fury being fired as commander of S.H.I.E.L.D.. A warrant was put out for his arrest, and Maria Hill took his place as the head of S.H.I.E.L.D. Hill still leads S.H.I.E.L.D. and Fury is still in hiding. He keeps control over parts of S.H.I.E.L.D. and lent a base to the Secret Avengers during Civil War.

    Nick Fury is infused with the Infinity Formula, meaning he barely ages at all. He is an soldier, with lots of experience as both a warrior and a leader. He is a master tactician and strategist, and is very good with all sorts of weapons. He wields great political power as the head of S.H.I.E.L.D., and is a very good hand-to-hand combatant.

    Nick Fury is not the only S.H.I.E.L.D. agent-not by a long shot. Many of the other important S.H.I.E.L.D. members date back from Fury's old team-the Howling Commandos.

    \"Dum
    Dum Dum Dugan

    Dum Dum Dugan (Timothy Aloysius Cadwallader Dugan) was working as a circus strongman before he enlisted in World War II. He was put in the Howling Commandos, a new division led by Nick Fury. He was extremely valuable to the team-he was so strong that he was able to save them from many things that should have killed them. He was a great marksman, strongman, and leader, and he became Fury's second-in-command. When the war ended, Fury invited Dugan into S.H.I.E.L.D. as his second-in-command. Dugan has easily been the second-most-important person to S.H.I.E.L.D. His missions have included tracking down and killing a radioactive monster ( Godzilla, in the Godzilla Squad) and various independent missions to take super villains (often with Squirrel Girl). For a long time, he worked maintaining security on the Helicarrier, and working for Fury whenever needed. When Fury was replaced by Maria Hill, he was her second-in-command and was put in charge of mutant affairs. This involved conflicts with Wolverine, who he had a mysterious contact with. Eventually, he tried to resign from S.H.I.E.L.D. when Tony Stark took control. He was rejected-he was too important to S.H.I.E.L.D. to quit. He was recently shot in the chest by Daken, but he survived, and is currently in the hospital.

    \"Gabriel
    Gabriel Jones

    Gabriel Jones was a young African-American living in New York City when a little thing called World War II popped up. Jones joined the army, and realized that he was naturally a great soldier and leader. He was put into the elite Howling Commandos and proved invaluable to the team. After the war was over, Jones served on the Godzilla Squad with other former Howling Commandos (not Fury), and later joined S.H.I.E.L.D. He ran out missions with or without other agents for S.H.I.E.L.D. until he retired, due to the events in the miniseries \"Nick Fury vs. S.H.I.E.L.D..\" He remains retired today, living the quiet, peaceful life. He sure deserves that. He also has the honor of being the first African-American in the Howling Commandos.

    \"Sharon
    Sharon Carter aka Agent 13

    Agent 13 (also known as Sharon Carter), is one of the most important members of S.H.I.E.L.D.. As a young girl, Sharon loved hearing stories of her older sister Peggy, who was a World War 1 flying ace and freedom fighter. Peggy had worked with Captain America, and the two fell in love. However, Cap never learned her name, and he then froze in suspended animation. Sharon was a good fighter and loved justice, so she joined S.H.I.E.L.D. under the code-name \"Agent 13\" and ran out several missions for them. She kept crossing paths with Cap, who had been resurrected and they eventually fell in love. Cap wanted her to quit as a S.H.I.E.L.D. agent, but she refused. Eventually, her death was faked so she could be sent off on a top-secret mission. The mission failed, and she was presumed dead. Cap was never informed that her death was faked the first time. However, he eventually found her, and she rejoined S.H.I.E.L.D.. She now works as a high-level agent, reporting directly to Hill for missions. Recently, she was given a hypnotic suggestion by Dr. Faustus to help kill Captain America, and under hypnotism, shot him in the stomach after Crossbones, a sniper and Red Skull's henchman, shot him. It was also revealed that she is pregnant with Cap's baby.

    Other important S.H.I.E.L.D. agents include Contessa Valentina Allegra de la Fontaine, Clay Quartermain, Jimmy Woo, and Jasper Sitwell.

    HYDRA

    \"Hydra\"
    Hydra

    Since S.H.I.E.L.D. is a major force and such a huge, powerful organization, it bound to have many enemies. Most of S.H.I.E.L.D.'s enemies are big groups-and the most powerful, fearsome, and deadly one of them all is HYDRA. HYDRA is S.H.I.E.L.D.'s archenemy. The motto of the group is \"Cut off one of our heads, and two more will take it's place!\" This is a reference to the Ancient Greek monster called the hydra, which fought Hercules and had the same ability. HYDRA is a terrorist group dedicated to taking over the world and destroying S.H.I.E.L.D., which has foiled them many a time.

    HYDRA has actually been around for centuries. The group goes all the way back to Imperial Japan, which only sought to rule Japan. This all changed in the 1900s when Wolfgang Von Strucker joined the group. Strucker was insane, deluded, and powerful-and he quickly rose to the top of the group. he steered it away from Japan and decided on a new goal-rule the world! When he got to the top, he changed his name and got a title-he became Baron Strucker. HYDRA was originally very open, not quiet, and S.H.I.E.L.D. was actually specifically formed to fight it (as you will read later). HYDRA and S.H.I.E.L.D. became enemies-constantly warring to take each other down. HYDRA made several daring moves. Strucker invented the \"Overkill Horn\", which would detonate all nuclear explosives worldwide. Later came the biological \"Death-Spore Bomb\". Both plots were foiled by S.H.I.E.L.D., and the latter resulted in Strucker's death.

    After Baron Strucker died, HYDRA split into many mini-groups, or \"heads\" of HYDRA. Some of these were East Coast HYDRA, Las Vegas HYDRA, New York HYDRA, and Germany HYDRA. These factions also genetically created super agents for HYDRA, resulting in the creation of many villains. However, this backfired when the great hero Spider-Woman was created by HYDRA related. Eventually Strucker was revived, and he reunited HYDRA. They continued their war against S.H.I.E.L.D. and the Earth.

    HYDRA later planned a massive attack on the U.S-they smuggled nuclear missile into America and was going to launch a bio nuclear assault on a major aquifer. They also tried to brainwash an army of heroes and villains (including Elektra and Northstar). Both times, they were foiled by S.H.I.E.L.D. and the New Avengers (including Spider-Woman, who they created). HYDRA is still extremely dangerous, and cannot be stopped easily. The only reason they don't currently rule the world is because of the heroic efforts of S.H.I.E.L.D..

    The HYDRA Agent is similar to the S.H.I.E.L.D. agent. He is extremely well-trained-only the elite become agents. They carry a large variety of weapons and are trained especially in stealth. HYDRA Agents often get missions to detonate, destroy, beat up, or burn things, and they are superb fighters. Some Agents of HYDRA have been Red Skull, Spider-Woman, Kingpin, and many others.

    A.I.M.

    Although HYDRA is easily S.H.I.E.L.D.'s greatest enemy, it is by no means the only one. One of S.H.I.E.L.D.'s other enemies is A.I.M.

    A.I.M. (Advanced Idea Mechanics) was created as a subdivision of HYDRA, by Baron Strucker. A.I.M.'s purpose was to create new technological wonders for HYDRA to use against S.H.I.E.L.D. and to take over the world. It is a group of scientists, industrialists, and technological geniuses, and originally, they provided and designed weapons, defenses, and huge assault mechanisms for HYDRA. However, HYDRA suffered a huge defeat from the U.S and Japan Armies, so A.I.M. broke off into it's own group. Like HYDRA, A.I.M.'s goal is to rule the Earth. However, unlike HYDRA, who wants to do it by force, A.I.M. seeks domination by technological means. They have created huge weapons and marvels before, and share one trait with HYDRA-they are dedicated to destroying S.H.I.E.L.D.. A.I.M. was led by the Scientist Supreme, an evil, shadowy figure where very little about him is known by S.H.I.E.L.D..

    The Cosmic Cube was an intensely powerful item as it could literally alter reality to the user's whim. Red Skull once stole it and wreaked havoc with it, but that was later. The Cube was created by the scientists at A.I.M., who sought to use it to rule the world. However, the Cube actually evolved into a new creature, Kubik, and A.I.M. no longer controls it. In this vein, A.I.M. created the Super-Adaptoid, which could exactly mimic the powers and appearance of other superheroes and villains. Although it was immensely powerful, the Adaptoid contained a sliver of the Cosmic Cube that gave it its power. When the Cube became Kubik, it wanted the shard back, so it easily destroyed the creature and regained the sliver. A.I.M. also created M.O.D.O.K. (Mobile Organism Designed Only for Killing). M.O.D.O.K. was originally one of AIM's own scientists, and he took control of A.I.M. and improved it, continuing the fight to rule the world and destroy S.H.I.E.L.D.. M.O.D.O.K. still is in charge of A.I.M. Along with A.I.M., some of S.H.I.E.L.D.'s enemies are Zodiac and Godzilla.

    Zodiac is a criminal organization that was created using S.H.I.E.L.D. technology. Each member is another sign of the Zodiac, and they are dedicated to world domination. Although the Zodiac mostly fights the Avengers, they often collide with S.H.I.E.L.D. in their efforts to have the world ruled by their criminal organization.

    Godzilla was a radioactive monster that rose out of the waters of Tokyo, Japan. S.H.I.E.L.D. immediately responded to the crisis, and formed the Godzilla Squad out of some of its members. The Squad was led by Dum Dum Dugan (who never fully recovered from the experience), and its mission was to take down Godzilla! Godzilla caused lots of property damage around Asia and North America before it was finally driven back into the sea. Obviously, this is based on the Japanese movie in real life of the same name-minus the S.H.I.E.L.D. agents.

    Major Story Arcs

    Civil War

    The Civil War started when the New Warriors (consisting of Robbie Baldwin, Namorita, Microbe, and Night Thrasher) went on a basic mission to catch four criminals in an old house. They included Speedfreek and an old Captain Marvel villain- Nitro. These villains had escaped from The Raft when Electro broke them out. The New Warriors easily defeated the villains-but Nitro was escaping. Namorita stopped him, but he let off an explosion, destroying Stamford and murdering 600 people.

    Tony Stark, also known as Iron Man, proposed the Superhuman Registration Act, where all super humans would have to register their powers and identities. They'd basically be cops. Maria Hill, who was the head of S.H.I.E.L.D. supported the Act, and eventually it was passed. Many super humans disagreed with the Act, the most important and prolific being Captain America. S.H.I.E.L.D. was enlisted by the U.S. government-take down Cap and his anti-registration hero team, the Secret Avengers. New S.H.I.E.L.D. Agents, nicknamed cape-killers, went after anti-reg heroes. S.H.I.E.L.D. was led by Maria Hill, and was fully pro-reg. Iron Man worked closely with S.H.I.E.L.D. also-he revealed his identity as Tony Stark. Many battles were fought. Eventually, Tony Stark's pro-registration side-and S.H.I.E.L.D. won. However, Maria Hill found out why she had been made the head of S.H.I.E.L.D., as aforementioned-to keep more effective \"Fury loyalists\" out and be loyal to the U.S. She was not supposed to be effective, and she wasn't. Dismayed, she turned leadership of S.H.I.E.L.D. over to the man she thought deserved it most-Tony Stark. Stark, also Iron Man, is currently the leader and head of S.H.I.E.L.D..

    H.A.M.M.E.R.

    In the fallout of Secret Invasion Norman Osborn is granted the keys to the whole world and closes down S.H.I.E.L.D. and replaces it with his own special forces known as H.A.M.M.E.R. He also replaces all of the organization's Stark Tech (which had been compromised during the Secret Invasion) with technology and weapons created by Oscorp.

    Nick Fury also discovers a dark secret about who as been pulling S.H.I.E.L.D.'s strings the whole time he was an agent in Secret Warriors #1.

    Weapons and Equipment

    S.H.I.E.L.D. has a lot of technology, important technology that is often used. Perhaps the most important is the LMD- Life Model Decoy. The Life Model Decoy is an android that is absolutely indistinguishable from whoever it impersonates. Fingerprints, DNA, hair, speech, thought patterns (for telepaths), anything, the Decoy is exactly the same. However, it is an android. LMDs are used to duplicate people and take their place if they are going to be assassinated or there is a strong chance of an attack. LMDs have been used in place of personnel since the beginning of the organization, including Jessica Drew. Most often, they have been used as a substitute for Nick Fury, who has had at least five LMDs destroyed in attempts to have him killed. These robots are a lot of the reason that many key S.H.I.E.L.D. members are still alive. The Zodiac, a criminal organization, was created using stolen S.H.I.E.L.D. LMDs. Also, LMDs have gained sentience a few times. The Deltites were a group of LMDs that gained sentience and tried to infiltrate S.H.I.E.L.D.. They were narrowly defeated by Nick Fury.

    S.H.I.E.L.D. also has used robot exoskeletons and gargantuan robots to achieve its ends. Red Ronin is the most important of those. Red Ronin was a huge, super powerful robot that was used by the Godzilla Squad. The robot was destroyed by Godzilla before he was driven into the sea. It was rebuilt, but was hijacked by a mad scientist who was trying to start World War Three. It was stopped by the Avengers and S.H.I.E.L.D. regained the remains. It has been stolen and used for evil many times, by Dr. Doom, The Hand, and Henry Gyrich. Each time, the robot has been defeated and rebuilt (by heroes like Wasp and Hulk)-only to be stolen again. Red Ronin is currently possessed and used by the evil villain The Fixer-it appears that the cycle is still going.

    Of course, the most prolific technology created and used by S.H.I.E.L.D. is the Helicarrier. The Helicarrier is outfitted with weapons, security, and is constantly filled with S.H.I.E.L.D. agents who are extremely effective and good fighters. The Helicarrier is always being attacked by villains, and they are barely ever successful. Read more about the Helicarrier at the top of the page. A smaller version of the Helicarrier, the Behemoth, is often used by S.H.I.E.L.D. Agents on missions, including by the Squad and by Dum Dum Dugan. The Behemoth is similar to the Helicarrier, only there is less weapons, technology, and it isn't as fast or powerful.

    As for other technology, S.H.I.E.L.D. has access to an infinite amount of military-level tech. Tools, weapons, anything that's used, S.H.I.E.L.D. can get. Anything from pistols to nuclear weapons is easily attainable. Fighter jets are often used by S.H.I.E.L.D. agents when it is necessary for their mission.

    Alternate Realities

    Ultimate Universe (Earth-1610)

    In the Ultimate Marvel universe, S.H.I.E.L.D. was started and first led by General Thunderbolt Ross, who is a major enemy of the Hulk. S.H.I.E.L.D. funded and sanctioned projects like Weapon X, which created Wolverine. A now-black Nick Fury took control of the group and was very effective. He tried to recreate the Super Soldier program, making another Captain America. the project failed and the formula turned the lead scientist on the project, Bruce Banner, into the Hulk. S.H.I.E.L.D. tried again with the Oz formula. It was responsible for the creation of Spider-Man, Green Goblin, Sandman, and Electro.

    Also, Ultimate S.H.I.E.L.D. created the Ultimates, as the government enlisted Fury to create a strike force of government-sponsored superheroes. The force was similar to the Avengers in the 616 universe, and answers to Ultimate S.H.I.E.L.D..

    Marvel Zombiverse (Earth-2149)

    S.H.I.E.L.D. also appears in Marvel Zombies Universe. At first, some of the members are already infected by the virus when Sentry came to Earth infected. The first of the members infected were Colonel America, Ms. Marvel, Hawkeye, and Black Widow. Luke Cage is part of the Avengers. After these infections, it starts to go on from there, with the infected heroes infecting other heroes and villains while eating people completely. Daredevil becomes infected by Spider-Man after saving Nova and Nova is saved by the Fantastic Four and Thor and goes to the S.H.I.E.L.D. Helicarrier. S.H.I.E.L.D. has called all uninfected heroes to meet together with Nick Fury and Nick Fury tells the uninfected heroes that they must make a defensive stand against the infected. The heroes agree to this, S.H.I.E.L.D. Avengers, and many more alike, and they go fight the zombies. However, this ends in tragedy and the uninfected become infected by the virus. The heroes were no match for the zombies and they all subdue to infection, becoming one of them. S.H.I.E.L.D. becomes no more and all of the members are killed or infected.

    Mutant X (Earth-1298)

    \"S.H.I.E.L.D.
    S.H.I.E.L.D. 2099

    In this reality, S.H.I.E.L.D. now stands for Save Humanity by Intervention in the Evolution of Life-form Deviants. It is now a mutant hating group that influence humans to violently hate mutants. It is still being led by Nick Fury.

    In the 2099 titles S.H.I.E.L.D. was controlled by Doctor Doom, who appointed such people as one of the former X-Men Junkpile, and 2099's Punisher, Jake Gallows, as members of S.H.I.E.L.D..

    Other Media

    Television

    Marvel Cinematic Universe

    S.H.I.E.L.D. (Strategic Homeland Intervention, Enforcement and Logistics Division) is a counter terrorism and intelligence agency run by Nick Fury.

    Foundations

    S.H.I.E.L.D was co-founded by Howard Stark and Peggy Carter after World War 2.

    Iron Man (2008)

    S.H.I.E.L.D. wishes to debrief Tony Stark about his escape from Afghanistan and arrests Obadiah Stane for planning the kidnap and murder of Stark as well as dealing weapons to terrorists. It also provides a cover story for what happened at Stark Industries during Iron Man and Iron Monger's fight, a story that Stark does not stick to instead revealing his secret to the world.

    Iron Man 2 (2010)

    S.H.I.E.L.D. agent Black Widow recruits Tony Stark as a consultant for the Avenger Initiative and organizes Senator Stern to present Tony Stark and James Rhodes with their medals. S.H.I.E.L.D. sends agent Coulson to New Mexico to find Mjolnir. The organization is also shown to be monitoring various superhumans across the globe, with one indicator on a map hinting at the existence of Wakanda and the Black Panther.

    The Consultant

    Phil Coulson and Jasper Sitwell discuss how to stop General Ross releasing Emil Blonsky and to decide Tony Stark.

    The Incredible Hulk (2008)

    General Ross enlists the help of S.H.I.E.L.D. to help him track Bruce Banner's e-mails to \"Mr. Blue\".

    A Funny Thing Happened on the Way to Thor’s Hammer

    Agent Coulson of S.H.I.E.L.D. stops a robbery in a gas station while on his way to Mjolnir.

    Thor (2011)

    S.H.I.E.L.D. had taken all of Jane Foster's research. Thor fights with some of Agent Coulson's men before being captured and interrogated by Coulson about his identity, origin and training. Mjolnir is also kept in a S.H.I.E.L.D. facility. Loki send The Destroyer to attack Thor and S.H.I.E.L.D. agents, after The Destoryer was defeated Thor told Coulson to return Jane's work and in return Coulson could count on Thor's help when needed. In a post-credits scene, Dr. Selvig is taken to a S.H.I.E.L.D. facility where he meets Nick Fury. Fury asks Selvig to study the recently-discovered Cosmic Cube, which holds untold power, to which Selvig agrees. It is then revealed that Selvig is under the control of Loki, who has been transported to Earth.

    Captain America: The First Avenger (2011)

    S.H.I.E.L.D. scientists in the Arctic uncover Captain America's frozen body in The Red Skull's airship from WWII. Rogers awakens in a room designed to appear as if he were still in the early 1940s. Deducing the truth and escaping to Times Square, Rogers learns from S.H.I.E.L.D. leader Nick Fury that he has been asleep for nearly 70 years, and they had wanted to acclimate his reentry into modern times. In a deleted scene it is revealed that S.H.I.E.L.D. was once called the Strategic Scientific Reserve.

    The Avengers (2012)

    \"No

    S.H.I.E.L.D. officially assembles the Avengers (Iron Man, Captain America, Thor, the Hulk, Black Widow, and Hawkeye) in response to the arrival of Loki, who goes on a rampage and steals the Tesseract from the organization's Project Pegasus facility. The Helicarrier is also shown off for the first time. After fighting off a Chitauri invasion of New York, the Avengers go their separate ways, with Fury stating that the team will reunite should a greater threat arrive.

    Agents of S.H.I.E.L.D. (2013-2020)

    \"No

    Taking place after the events of The Avengers, Agent Coulson assembles his own team of agents, consisting of pilot and martial artist Melinda May, master spy Grant Ward, genius techno-whizzes Leo Fitz and Jemma Simmons, and hacker/activist Skye. The team travels across the globe to deal with various incidents while clashing with the creators of a mysterious project known as Centipede, which aims to create an army of Super-Soldiers. Little is known about the organization, or the mysterious woman involved in it, Raina.

    During this time, more information about S.H.I.E.L.D. is revealed, including the revelation that S.H.I.E.L.D. actively monitors and hides the existence of various people with superhuman abilities, known as \"Gifted.\" The team is briefly joined by a new agent, Mike Peterson, who possesses superhuman abilities as a result of experimentation by Centipede. Mike is apparently killed in a massive explosion while trying to save Coulson.

    During the events of The Winter Soldier, it is revealed that the HYDRA organization and turncoat agent John Garrett are the true masterminds behind the Centipede project, and that Grant Ward was actually a spy for HYDRA the entire time. Ward murders Agent Victoria Hand in order to allow Garrett to continue his scheme. With S.H.I.E.L.D. destroyed, Coulson and his remaining team members go on the run, since the various former members of the organization are now considered terrorists by the U.S. government and Glenn Talbot. During this time, the team also contends with the return of Mike Peterson, who has been rebuilt as the vicious cyborg Deathlok. They are also joined by Agent Antoine Triplett, the grandson of Gabe Jones.

    At the close of the season, Garrett is killed and HYDRA is thwarted once again, though Raina manages to escape. Ward is taken into custody while Deathlok, now free from HYDRA, leaves for parts unknown in order to redeem himself. In the final moments, Nick Fury informs Coulson that it is his job to rebuild S.H.I.E.L.D. from the ground up in order to protect the world.

    \"The
    The Cast of S.H.I.E.L.D. Season 2

    Following a time skip, S.H.I.E.L.D. is now shown rebuilt as a small shadow organization run by Coulson. In addition to the cast of Season 1, the team has also recruited mechanic Alphonso \"Mack\" MacKenzie and British mercenary Lance Hunter. Isabelle Hartley and an agent named Idaho also briefly join the organization before being killed by Carl Creel. Mockingbird also joins the cast during the course of the season.

    The series would continue on for several more seasons, with the cast growing to include new characters like Jeffrey Mace and even Ghost Rider, while facing new threats like demons, the rogue A.I. program A.I.D.A. and the Chronicoms.

    Captain America: The Winter Soldier (2014)

    \"The
    The Triskelion interior

    In the two years since The Avengers, Captain America and Black Widow have been working as S.H.I.E.L.D. agents. S.H.I.E.L.D. director Alexander Pierce launches Project Insight, which involves the use of three next-gen Helicarriers that can target and eliminate threats to world peace. After Nick Fury is assassinated by the mysterious Winter Soldier, Captain America and Black Widow learn that S.H.I.E.L.D. has been infiltrated by HYDRA, with Pierce acting as their leader.

    It is shown that the Red Skull's chief scientist, Arnim Zola, had joined S.H.I.E.L.D. after World War 2, and slowly used his influence to allow HYDRA to grow and fester within its ranks. Project Insight will ultimately allow HYDRA to conquer the Earth after killing thousands of people that HYDRA view as potential threats (including the Avengers and Stephen Strange).

    With help from The Falcon, Captain America and the others learn evade HYDRA and learn that Nick Fury has survived his gunshot wounds, and is preparing to strike back against Pierce. During the final battle, the three Helicarriers are destroyed, as is the Triskelion, while Fury kills Pierce for his treachery. S.H.I.E.L.D. is officially disbanded and its secrets are publicly released online, with Black Widow strongly hinting that the safety of the world has now fallen to the Avengers.

    Captain Marvel (2019)

    S.H.I.E.L.D. appears in the movie, which is a prequel set in the 1990s. Younger versions of Nick Fury and Phil Coulson appear as characters.

    What If...? (2021)

    S.H.I.E.L.D. is featured in several of the possible timelines explored in the series.

    Video Games

    \"Ultimate
    Ultimate Alliance 2
    • S.H.I.E.L.D. is featured in Marvel Ultimate Alliance, as well as its two sequels. In Ultimate Alliance 2, they appear as enemies of the Anti-Registration heroes.
    • S.H.I.E.L.D. appears in Ultimate Spider-Man.
    • S.H.I.E.L.D. appears in Spider-Man: Web of Shadows.
    • S.H.I.E.L.D. appears in Spider-Man: Friend or Foe.
    • S.H.I.E.L.D. appears in Marvel Heroes.
    • S.H.I.E.L.D. is prominently featured in Lego Marvel Super Heroes.
    • S.H.I.E.L.D. appears in Disney Infinity 2.0: Marvel Super Heroes.
    • S.H.I.E.L.D. is prominently featured in the Marvel Avengers Alliance Facebook game.
    • The mobile app game Avengers Academy is set at a S.H.I.E.L.D.-run school for teenage superheroes.
    • S.H.I.E.L.D. appears in Lego Marvel's Avengers, including a special DLC pack inspired by the Agents of S.H.I.E.L.D. TV show.
    • S.H.I.E.L.D. is featured in Marvel's Avengers. Following the \"A-Day\" catastrophe (where a S.H.I.E.L.D. Helicarrier exploded while hosting a Terrigen Crystal that Tony Stark and Bruce Banner had been experimenting on), the group is forced to surrender its assets and resources to the A.I.M. organization. Part of the game's plot involves the Avengers helping rebuild the organization.

    Merchandise

    \"Marvel
    Marvel Legends
    • Various named S.H.I.E.L.D. agents appear in the HeroClix figure game, as well as generic male and female S.H.I.E.L.D. agents and recruits.
    • Both named and generic S.H.I.E.L.D. agents were featured in Diamond Select's Minimates line.
    • A generic S.H.I.E.L.D. Agent was featured in Hasbro's Super Hero Squad line as part of a two-pack with a Skrull.
    • The Dum Dum Dugan and Hand Ninja two-pack from Hasbro's Marvel Legends line included an alternate helmeted head that could turn the Dugan figure into one of a generic S.H.I.E.L.D. agent. Multiple named S.H.I.E.L.D. agents like Nick Fury, Maria Hill, Phil Coulson and Sharon Carter have also been featured in the Marvel Legends line.
    • A generic S.H.I.E.L.D. agent was featured in Hasbro's Marvel Universe line as part of a box set with a HYDRA agent and a Hand ninja.
    • Lego has produced various building kits featuring S.H.I.E.L.D., including a Helicarrier, a S.H.I.E.L.D. truck and multiple jets. Minifigures of both named and generic S.H.I.E.L.D. agents were often included with these kits.
    • The classic Nick Fury figure from Hasbro's Marvel Legends Giant-Man Build-a-Figure wave featured an alternate helmeted head depicting a generic S.H.I.E.L.D. agent.
    • Hasbro released a special Marvel Legends S.H.I.E.L.D. Agent two-pack featuring multiple swappable heads as a Hasbro Pulse exclusive.
    ","disbanded_in_issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144233/","id":144233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-8/4000-144233/"}],"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111069/","id":111069,"name":"The Man For The Job!","issue_number":"135"},"id":3775,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/39636/2424505-cv2.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/39636/2424505-cv2.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/39636/2424505-cv2.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/39636/2424505-cv2.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/39636/2424505-cv2.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/39636/2424505-cv2.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/39636/2424505-cv2.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/39636/2424505-cv2.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/39636/2424505-cv2.jpeg","image_tags":"All Images"},"isssues_disbanded_in":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144233/","id":144233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-8/4000-144233/"}],"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-945042/","id":945042,"name":"Imposter Syndrome","site_detail_url":"https://comicvine.gamespot.com/ant-man-2-imposter-syndrome/4000-945042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924797/","id":924797,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-patch-2/4000-924797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926635/","id":926635,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-peter-david-omnibus-1-hc/4000-926635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-911318/","id":911318,"name":"What if the Watcher had Never Interfered?","site_detail_url":"https://comicvine.gamespot.com/reckoning-war-trial-of-the-watcher-1-what-if-the-w/4000-911318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-918640/","id":918640,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-force-epic-collection-zero-tolerance-1-tpb/4000-918640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912772/","id":912772,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/excalibur-epic-collection-the-battle-for-britain-1/4000-912772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-909806/","id":909806,"name":"...Became Captain America?!","site_detail_url":"https://comicvine.gamespot.com/what-if-miles-morales-1-became-captain-america/4000-909806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894377/","id":894377,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-fantastic-four-anniversary-tribute-1/4000-894377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898704/","id":898704,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-epic-collection-the-circle-chase-1-volume/4000-898704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910895/","id":910895,"name":"Volume 26","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-taking-aim-1-volume-26/4000-910895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-882900/","id":882900,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dark-ages-1/4000-882900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878283/","id":878283,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-omnibus-1-hc/4000-878283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-871798/","id":871798,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/taskmaster-the-rubicon-trigger-1-tpb/4000-871798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-876010/","id":876010,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus-3-volume-3/4000-876010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-851304/","id":851304,"name":"All Die Young: Part X","site_detail_url":"https://comicvine.gamespot.com/captain-america-29-all-die-young-part-x/4000-851304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864583/","id":864583,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-end-1-tpb/4000-864583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862113/","id":862113,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/thor-by-jason-aaron-the-complete-collection-3-volu/4000-862113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858908/","id":858908,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-omnibus-1-hc/4000-858908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856179/","id":856179,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-by-peter-david-omnibus-3-vol-3/4000-856179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856176/","id":856176,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-mike-grell-the-complete-collection-1-t/4000-856176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-838884/","id":838884,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-6/4000-838884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-845162/","id":845162,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-omnibus-1-volume-1/4000-845162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-852409/","id":852409,"name":"Stars, Stripes, and Spiders!; Life Model Doggie","site_detail_url":"https://comicvine.gamespot.com/marvel-action-classic-spider-man-3-stars-stripes-a/4000-852409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839156/","id":839156,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/juggernaut-no-stopping-now-1-tpb/4000-839156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820020/","id":820020,"name":"The Program","site_detail_url":"https://comicvine.gamespot.com/civil-war-marvels-snapshots-1-the-program/4000-820020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-826682/","id":826682,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-omnibus-1-hc/4000-826682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-824086/","id":824086,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-12-volume-12/4000-824086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819120/","id":819120,"name":"Stuck In the Past","site_detail_url":"https://comicvine.gamespot.com/juggernaut-3-stuck-in-the-past/4000-819120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817470/","id":817470,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-beta-ray-bill-1/4000-817470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-822276/","id":822276,"name":"The Living Nightmare - Part Three","site_detail_url":"https://comicvine.gamespot.com/marvel-action-avengers-12-the-living-nightmare-par/4000-822276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820100/","id":820100,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-eternals-the-complete-saga-omnibus-1-hc/4000-820100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814480/","id":814480,"name":null,"site_detail_url":"https://comicvine.gamespot.com/black-widow-widows-sting-1/4000-814480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814478/","id":814478,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-black-widow-yelena-belova-1/4000-814478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807605/","id":807605,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-10-facsimile-edition-1/4000-807605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819825/","id":819825,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-sharon-carter-1-tpb/4000-819825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819149/","id":819149,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-last-rites-1-volume-15/4000-819149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803645/","id":803645,"name":"Picking Up the Pieces","site_detail_url":"https://comicvine.gamespot.com/juggernaut-1-picking-up-the-pieces/4000-803645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807641/","id":807641,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/black-widow-epic-collection-the-coldest-war-1-volu/4000-807641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796299/","id":796299,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-2020-6/4000-796299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803675/","id":803675,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-ben-reilly-omnibus-2-volume-2/4000-803675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-799762/","id":799762,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus-1-hc/4000-799762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796447/","id":796447,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/steranko-is-revolutionary-1-hc/4000-796447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781562/","id":781562,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-2099-companion-1-tpb/4000-781562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-780940/","id":780940,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-eternals-by-jack-kirby-the-complete-collection/4000-780940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-776098/","id":776098,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-vault-of-heroes-captain-america-1-tpb/4000-776098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785937/","id":785937,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-meets-the-marvel-universe-1-tpb/4000-785937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-785758/","id":785758,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-verse-captain-america-1-tpb/4000-785758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741226/","id":741226,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-smash-of-the-titans-1-hc/4000-741226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-766408/","id":766408,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/sensational-she-hulk-by-john-byrne-omnibus-1-hc/4000-766408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763304/","id":763304,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hulk-vs-the-avengers-1/4000-763304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-759390/","id":759390,"name":null,"site_detail_url":"https://comicvine.gamespot.com/captain-america-von-strucker-gambit-1/4000-759390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743443/","id":743443,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-black-widow-1/4000-743443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742358/","id":742358,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-empyre-swordsman-1/4000-742358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-755773/","id":755773,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-4-vol-4/4000-755773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-744570/","id":744570,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-full-circle-1-hc/4000-744570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738595/","id":738595,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-iron-man-2020-war-machine-1/4000-738595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736493/","id":736493,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-hulk-1/4000-736493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742420/","id":742420,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/black-panther-and-the-agents-of-wakanda-eye-of-the/4000-742420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739612/","id":739612,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-widow-by-waid-and-samnee-the-complete-collec/4000-739612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737198/","id":737198,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ultimates-by-mark-millar-and-bryan-hitch-omnibus-1/4000-737198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737195/","id":737195,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-miles-morales-omnibus-1-hc/4000-737195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730349/","id":730349,"name":null,"site_detail_url":"https://comicvine.gamespot.com/symbiote-spider-man-alien-reality-1/4000-730349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729680/","id":729680,"name":null,"site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-1/4000-729680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735592/","id":735592,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-3-vol-3/4000-735592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734686/","id":734686,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/invisible-woman-partners-in-crime-1-tpb/4000-734686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734685/","id":734685,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-the-complete-collection/4000-734685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728975/","id":728975,"name":null,"site_detail_url":"https://comicvine.gamespot.com/invisible-woman-5/4000-728975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731727/","id":731727,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-collection-6-volume-6/4000-731727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-723851/","id":723851,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-full-circle-1/4000-723851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-768687/","id":768687,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/walter-simonsons-the-mighty-thor-artisan-edition-1/4000-768687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-720180/","id":720180,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-hulk-red-hulk-1/4000-720180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718769/","id":718769,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-incredible-hulk-mindless-hulk-1/4000-718769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718768/","id":718768,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-the-incredible-hulk-gray-hulk-retur/4000-718768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718133/","id":718133,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-woman-1-facsimile-edition-1/4000-718133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725270/","id":725270,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-2-vol-2/4000-725270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-725265/","id":725265,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-gwen-stacy-1-tpb/4000-725265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716961/","id":716961,"name":null,"site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe-2/4000-716961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715302/","id":715302,"name":null,"site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history-6/4000-715302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718774/","id":718774,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-13-volume-1/4000-718774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742925/","id":742925,"name":null,"site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial-2/4000-742925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713505/","id":713505,"name":null,"site_detail_url":"https://comicvine.gamespot.com/invisible-woman-1/4000-713505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716730/","id":716730,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-1-tpb/4000-716730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711971/","id":711971,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction-2/4000-711971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714664/","id":714664,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-the-complete-collection-1-vol-/4000-714664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712542/","id":712542,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/not-brand-echh-the-complete-collection-1-tpb/4000-712542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711959/","id":711959,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/thor-road-to-war-of-the-realms-1-volume-2/4000-711959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711952/","id":711952,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-metamorphosis-1-tpb/4000-711952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713730/","id":713730,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-captain-america-1/4000-713730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705933/","id":705933,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-avengers-ronin-1/4000-705933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703941/","id":703941,"name":"The Holy Or The Broken","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk-15-the-holy-or-the-broken/4000-703941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702467/","id":702467,"name":"By Any Means Part Five of Five","site_detail_url":"https://comicvine.gamespot.com/killmonger-5-by-any-means-part-five-of-five/4000-702467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705478/","id":705478,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-endgame-prelude-1-tpb/4000-705478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700673/","id":700673,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-web-of-int/4000-700673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703942/","id":703942,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-fraction-and-larroca-the-complete-coll/4000-703942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703052/","id":703052,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-heroes-return-the-complete-collecti/4000-703052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743378/","id":743378,"name":"Immunisée","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-4-immunisee/4000-743378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701993/","id":701993,"name":"Todo queda en familia","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-5-todo-queda/4000-701993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700663/","id":700663,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/daughters-of-the-dragon-deep-cuts-1-tpb/4000-700663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700147/","id":700147,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-by-matt-fraction-the-complete/4000-700147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708985/","id":708985,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man-4/4000-708985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703577/","id":703577,"name":"The Iron Mechanic - Part Three","site_detail_url":"https://comicvine.gamespot.com/avengers-3-the-iron-mechanic-part-three/4000-703577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-694910/","id":694910,"name":"Old Weapons","site_detail_url":"https://comicvine.gamespot.com/daughters-of-the-dragon-2-old-weapons/4000-694910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697649/","id":697649,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection-1-vol-1/4000-697649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742923/","id":742923,"name":null,"site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial-1/4000-742923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699933/","id":699933,"name":"The Iron Mechanic - Part Two","site_detail_url":"https://comicvine.gamespot.com/avengers-2-the-iron-mechanic-part-two/4000-699933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692072/","id":692072,"name":"The Peacekeepers","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-marvel-prelude-1-the-peacekeepers/4000-692072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695661/","id":695661,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-companion-1-tpb/4000-695661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-695657/","id":695657,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-soule-and-pulido-the-complete-collecti/4000-695657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693474/","id":693474,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-my-two-dads-1-volume-7/4000-693474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690806/","id":690806,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-the-complete-collection-1-tpb/4000-690806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-690617/","id":690617,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-1-vol-2/4000-690617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688335/","id":688335,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-the-magneto-war-1-tpb/4000-688335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688312/","id":688312,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/blade-blood-and-chaos-1-tpb/4000-688312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687015/","id":687015,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-marvel-cinematic-universe-the-marvel-comics-om/4000-687015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682668/","id":682668,"name":null,"site_detail_url":"https://comicvine.gamespot.com/web-of-venom-venam-1/4000-682668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682508/","id":682508,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis-2/4000-682508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704569/","id":704569,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-21/4000-704569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703251/","id":703251,"name":"Futuro Destino","site_detail_url":"https://comicvine.gamespot.com/wolverine-365-futuro-destino/4000-703251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677294/","id":677294,"name":"The Greatest Fight Of Your Life","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-36-the-greatest-fight-of-your-l/4000-677294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675993/","id":675993,"name":null,"site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-the-wedding-of-sue-a/4000-675993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675987/","id":675987,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-35/4000-675987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676887/","id":676887,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-7/4000-676887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704568/","id":704568,"name":"Um Novo Começo","site_detail_url":"https://comicvine.gamespot.com/x-men-20-um-novo-comeco/4000-704568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678528/","id":678528,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-carol-danvers-the-ms-marvel-years-2/4000-678528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674137/","id":674137,"name":"The Life of Gwen Stacy Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-33-the-life-of-gwen-stacy-part-4/4000-674137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677974/","id":677974,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/shield-by-hickman-and-weaver-the-human-machine-1-h/4000-677974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677963/","id":677963,"name":"Volume 19","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-root-of-evil-1-volume-19/4000-677963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676692/","id":676692,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-hero-or-hoax-1-vol/4000-676692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671336/","id":671336,"name":"Punisher: War Criminal Part Two","site_detail_url":"https://comicvine.gamespot.com/the-punisher-225-punisher-war-criminal-part-two/4000-671336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671334/","id":671334,"name":"Fate of the Four Part 6: Our Doom","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-6-fate-of-the-four-part-6-our-do/4000-671334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670755/","id":670755,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-33/4000-670755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669451/","id":669451,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda-1/4000-669451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667637/","id":667637,"name":"The Marvel Universe Kills Deadpool Part Three","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool-299-the-marvel-universe-kills-/4000-667637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667629/","id":667629,"name":"Old Woman Laura Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-34-old-woman-laura-part-2/4000-667629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665924/","id":665924,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-infinity-gauntlet-1/4000-665924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665920/","id":665920,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-31/4000-665920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664915/","id":664915,"name":"Fate of the Four Part 5: Doom's Day","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-5-fate-of-the-four-part-5-dooms-/4000-664915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-674551/","id":674551,"name":"Volume 59","site_detail_url":"https://comicvine.gamespot.com/frank-chos-savage-wolverine-artists-edition-1-volu/4000-674551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672287/","id":672287,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-ant-man-and-the-wasp-prelude-1-tpb/4000-672287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668790/","id":668790,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-return-omnibus-1-hc/4000-668790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668781/","id":668781,"name":"","site_detail_url":"https://comicvine.gamespot.com/shield-by-hickman-and-weaver-the-rebirth-1/4000-668781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668776/","id":668776,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-companion-2-volume-2/4000-668776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668768/","id":668768,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-the-complete-collection-1-vol-1/4000-668768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663575/","id":663575,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-man-hong-kong-heroes-1/4000-663575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662747/","id":662747,"name":"Fate of the Four Part 4: Forward","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-4-fate-of-the-four-part-4-forwar/4000-662747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662093/","id":662093,"name":"Mr. Follow Follow","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-black-panther-3-mr-follow-follow/4000-662093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662091/","id":662091,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/marvels-ant-man-and-the-wasp-prelude-1-part-one/4000-662091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670117/","id":670117,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-defenders-6-volume-6/4000-670117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670113/","id":670113,"name":"Volume 22: Murder Most Fowl","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-22-volume-22-murder-most-fowl/4000-670113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-669465/","id":669465,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection-3-volume/4000-669465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666814/","id":666814,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-gwenom-1-volume-5/4000-666814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-668201/","id":668201,"name":"Le train des assassins","site_detail_url":"https://comicvine.gamespot.com/nick-fury-1-le-train-des-assassins/4000-668201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661732/","id":661732,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-21/4000-661732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664305/","id":664305,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-demon-bear-1-tpb/4000-664305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662742/","id":662742,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-the-complete-collect/4000-662742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662085/","id":662085,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-omnibus-2-volume-2/4000-662085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659074/","id":659074,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-18/4000-659074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660656/","id":660656,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/cable-and-x-force-onslaught-rising-1-tpb/4000-660656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704110/","id":704110,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion-4/4000-704110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-654066/","id":654066,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-legion-shadow-king-rising-1-tpb/4000-654066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650921/","id":650921,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-its-all-connec/4000-650921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643042/","id":643042,"name":"Gwenom Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-26-gwenom-part-2/4000-643042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641416/","id":641416,"name":"Arms Race Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-24-arms-race-part-2/4000-641416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636383/","id":636383,"name":"Arms Race Part 1; [Untitled]","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-23-arms-race-part-1-untitled/4000-636383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646079/","id":646079,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-18/4000-646079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649724/","id":649724,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-tales-to-astonish-1-tpb/4000-649724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646201/","id":646201,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/thor-by-jason-aaron-and-russell-dauterman-2-volume/4000-646201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646190/","id":646190,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-good-the-b/4000-646190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704108/","id":704108,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion-2/4000-704108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703214/","id":703214,"name":"Sacrificio","site_detail_url":"https://comicvine.gamespot.com/wolverine-347-sacrificio/4000-703214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-637529/","id":637529,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-33/4000-637529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643032/","id":643032,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-the-secrets-of-maria-hill-1-volume-2/4000-643032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643026/","id":643026,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-immune-1-volume-4/4000-643026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-641412/","id":641412,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nick-fury-deep-cover-capers-1-tpb/4000-641412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634531/","id":634531,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-x-force-omnibus-1-hc/4000-634531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625313/","id":625313,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-1/4000-625313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625312/","id":625312,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-12/4000-625312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703213/","id":703213,"name":"Pronte a morire","site_detail_url":"https://comicvine.gamespot.com/wolverine-346-pronte-a-morire/4000-703213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703212/","id":703212,"name":"Missione sopravvivere","site_detail_url":"https://comicvine.gamespot.com/wolverine-345-missione-sopravvivere/4000-703212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633354/","id":633354,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-14/4000-633354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632503/","id":632503,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/secret-empire-1-hctpb/4000-632503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-631069/","id":631069,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccion-frank-miller-el-universo-marvel-segun-fr/4000-631069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-628592/","id":628592,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-secret-empire-1-volume-1/4000-628592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626283/","id":626283,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/hulk-world-war-hulk-omnibus-1-hc/4000-626283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617844/","id":617844,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-11/4000-617844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616666/","id":616666,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-nick-f/4000-616666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615022/","id":615022,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-10/4000-615022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703211/","id":703211,"name":"Un nuovo pericolo pubblico","site_detail_url":"https://comicvine.gamespot.com/wolverine-344-un-nuovo-pericolo-pubblico/4000-703211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-627050/","id":627050,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-15/4000-627050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625685/","id":625685,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-625685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625311/","id":625311,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-by-mark-waid-the-complete-coll/4000-625311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621671/","id":621671,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/mosaic-down-below-1-volume-2/4000-621671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610528/","id":610528,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-10/4000-610528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610523/","id":610523,"name":"","site_detail_url":"https://comicvine.gamespot.com/edge-of-venomverse-3/4000-610523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609356/","id":609356,"name":"Sister Act!","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spider-man-2-sister-a/4000-609356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609347/","id":609347,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-9/4000-609347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606646/","id":606646,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp-7/4000-606646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606634/","id":606634,"name":"The Deep Blue Sea Caper","site_detail_url":"https://comicvine.gamespot.com/nick-fury-4-the-deep-blue-sea-caper/4000-606634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703210/","id":703210,"name":"L'ultima carta","site_detail_url":"https://comicvine.gamespot.com/wolverine-343-lultima-carta/4000-703210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625684/","id":625684,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-2/4000-625684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617836/","id":617836,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bullseye-the-colombian-connection-1-tpb/4000-617836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613805/","id":613805,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/silk-the-clone-conspiracy-1-volume-3/4000-613805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613802/","id":613802,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shield-hydra-reborn-1-tpb/4000-613802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613785/","id":613785,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-end-of-the-line-1-volum/4000-613785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605119/","id":605119,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-9/4000-605119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603129/","id":603129,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-3/4000-603129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603124/","id":603124,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-8/4000-603124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601783/","id":601783,"name":"Immune Part 3 of 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-21-immune-part-3-of-3/4000-601783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599859/","id":599859,"name":"The Colombian Connection Part 5","site_detail_url":"https://comicvine.gamespot.com/bullseye-5-the-colombian-connection-part-5/4000-599859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703209/","id":703209,"name":"Arma X-23","site_detail_url":"https://comicvine.gamespot.com/wolverine-342-arma-x-23/4000-703209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625683/","id":625683,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-1/4000-625683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606618/","id":606618,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-by-jonathan-hickman-omnibus-1-volume-1/4000-606618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598381/","id":598381,"name":"","site_detail_url":"https://comicvine.gamespot.com/occupy-avengers-7/4000-598381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597200/","id":597200,"name":"To Begin the World Over Again Part Two","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-2-to-begin-the-world-over-again-pa/4000-597200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595706/","id":595706,"name":"Purgatory","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-7-purgatory/4000-595706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595705/","id":595705,"name":"The Cavalry Stayed Home","site_detail_url":"https://comicvine.gamespot.com/usavengers-6-the-cavalry-stayed-home/4000-595705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595700/","id":595700,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-2/4000-595700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595696/","id":595696,"name":"The Samurai and Moonbeams Caper","site_detail_url":"https://comicvine.gamespot.com/nick-fury-2-the-samurai-and-moonbeams-caper/4000-595696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595695/","id":595695,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-2/4000-595695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595694/","id":595694,"name":"The Asgard/Shi'ar War, Part Five: To Face the Phoenix","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-19-the-asgardshiar-war-part-five-to-fa/4000-595694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595690/","id":595690,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-7/4000-595690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594971/","id":594971,"name":"To Begin the World Over Again Part One","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-1-to-begin-the-world-over-again-pa/4000-594971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594955/","id":594955,"name":"The Osborn identity Part Three: A Private War","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-27-the-osborn-identity-part/4000-594955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594954/","id":594954,"name":"Immune Part 2 of 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-20-immune-part-2-of-3/4000-594954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594541/","id":594541,"name":"","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2017-secret-empire-1/4000-594541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594129/","id":594129,"name":"Back To The Basics Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-3-back-to-the-basics-part-3/4000-594129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594115/","id":594115,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-8/4000-594115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594107/","id":594107,"name":"The Colombian Connection Part 4","site_detail_url":"https://comicvine.gamespot.com/bullseye-4-the-colombian-connection-part-4/4000-594107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703203/","id":703203,"name":"Cartoline da Madripoor","site_detail_url":"https://comicvine.gamespot.com/wolverine-341-cartoline-da-madripoor/4000-703203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605837/","id":605837,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-10/4000-605837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603714/","id":603714,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-12/4000-603714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605115/","id":605115,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/foolkiller-psycho-therapy-1-tpb/4000-605115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603122/","id":603122,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-grounded-1-volum/4000-603122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593278/","id":593278,"name":"Back To The Basics Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-2-back-to-the-basics-part-2/4000-593278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593271/","id":593271,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-5/4000-593271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593262/","id":593262,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-7/4000-593262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592616/","id":592616,"name":"Meet the New Boss","site_detail_url":"https://comicvine.gamespot.com/usavengers-5-meet-the-new-boss/4000-592616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592615/","id":592615,"name":"Big Apple Showdown: Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-18-big-apple-showdown-con/4000-592615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592610/","id":592610,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-19/4000-592610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592609/","id":592609,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-empire-0/4000-592609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592604/","id":592604,"name":"The Sky High Caper","site_detail_url":"https://comicvine.gamespot.com/nick-fury-1-the-sky-high-caper/4000-592604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592601/","id":592601,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-1/4000-592601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592593/","id":592593,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-16/4000-592593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591949/","id":591949,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-x-force-1/4000-591949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591758/","id":591758,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-19/4000-591758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591751/","id":591751,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-21/4000-591751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591745/","id":591745,"name":"The Osborn identity Part Two: Fight Or Flight","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-26-the-osborn-identity-part/4000-591745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590810/","id":590810,"name":"Rogue Won","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-22-rogue-won/4000-590810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590804/","id":590804,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-15/4000-590804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590790/","id":590790,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-15/4000-590790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590785/","id":590785,"name":"Immune Part 1 of 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-19-immune-part-1-of-3/4000-590785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598385/","id":598385,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/solo-the-one-man-war-on-terror-1-tpb/4000-598385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598370/","id":598370,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck-1-tpb/4000-598370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597964/","id":597964,"name":"Le vieil homme et l'enfant","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-12-le-vieil-homme-et-lenfant/4000-597964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595686/","id":595686,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/deadpool-bad-blood-1-ogn/4000-595686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594964/","id":594964,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-uncaged-1-volume-1/4000-594964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594960/","id":594960,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/avengers-k-assembling-the-avengers-1-book-five/4000-594960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594118/","id":594118,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4000-594118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589838/","id":589838,"name":"The Heist: Earth-Lord Part Five","site_detail_url":"https://comicvine.gamespot.com/star-lord-5-the-heist-earth-lord-part-five/4000-589838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589837/","id":589837,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-17/4000-589837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589831/","id":589831,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumans-prime-1/4000-589831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589829/","id":589829,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-6/4000-589829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589826/","id":589826,"name":"Four On the Floor Part Five","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-5-four-on-the-floor-part-five/4000-589826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589824/","id":589824,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-12/4000-589824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588573/","id":588573,"name":"","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-4/4000-588573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588567/","id":588567,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-5/4000-588567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588557/","id":588557,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-14/4000-588557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587420/","id":587420,"name":"Here Be Monsters...","site_detail_url":"https://comicvine.gamespot.com/usavengers-4-here-be-monsters/4000-587420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587419/","id":587419,"name":"Big Apple Showdown: Part 3","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-17-big-apple-showdown-par/4000-587419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587413/","id":587413,"name":"Damage Per Second Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-16-damage-per-second-part-3-of-4/4000-587413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587412/","id":587412,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-5/4000-587412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587408/","id":587408,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-18/4000-587408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587405/","id":587405,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck-5/4000-587405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587400/","id":587400,"name":"Part One: \"Bug Hunt\"; Police & Thieves; Spider-Man Tsum-Up!; Mutts Ado About Nothing","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-25-part-one-bug-hunt-police/4000-587400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585081/","id":585081,"name":"","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-6/4000-585081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585074/","id":585074,"name":"Enemy of the State II: Part Six","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-18-enemy-of-the-state-ii-part-si/4000-585074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583727/","id":583727,"name":"From the Ashes","site_detail_url":"https://comicvine.gamespot.com/silk-18-from-the-ashes/4000-583727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583724/","id":583724,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-4/4000-583724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583715/","id":583715,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-clone-conspiracy-omega-1/4000-583715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592960/","id":592960,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-10/4000-592960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597963/","id":597963,"name":"Entre femmes","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-11-entre-femmes/4000-597963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593272/","id":593272,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-empire-prelude-1-tpb/4000-593272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592599/","id":592599,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-592599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592592/","id":592592,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-takebacktheshield-1-vol/4000-592592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591752/","id":591752,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-the-trial-of-maria-hi/4000-591752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590800/","id":590800,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4000-590800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590797/","id":590797,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-avengers-i/4000-590797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590789/","id":590789,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-justice-is-served-/4000-590789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582543/","id":582543,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-5/4000-582543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582538/","id":582538,"name":"","site_detail_url":"https://comicvine.gamespot.com/occupy-avengers-4/4000-582538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582533/","id":582533,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-5/4000-582533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582530/","id":582530,"name":"Four On the Floor Part Four","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-4-four-on-the-floor-part-four/4000-582530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582524/","id":582524,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck-4/4000-582524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582519/","id":582519,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-12/4000-582519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581769/","id":581769,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-wolverine-enemy-of-the-state-1/4000-581769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581563/","id":581563,"name":"Return To the Wastelands: Part III","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-18-return-to-the-wastelands-part-iii/4000-581563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581562/","id":581562,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-3/4000-581562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581552/","id":581552,"name":"And Now For Something Completely Different","site_detail_url":"https://comicvine.gamespot.com/deadpool-27-and-now-for-something-completely-diffe/4000-581552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581551/","id":581551,"name":"Purple Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-17-purple-part-1/4000-581551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581549/","id":581549,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-11/4000-581549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580764/","id":580764,"name":"Big Apple Showdown: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-16-big-apple-showdown-par/4000-580764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580753/","id":580753,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-17/4000-580753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580746/","id":580746,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck-3/4000-580746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580742/","id":580742,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-11/4000-580742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580739/","id":580739,"name":"Enemy of the State II: Part Five","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-17-enemy-of-the-state-ii-part-fi/4000-580739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579318/","id":579318,"name":"","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed-2/4000-579318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579315/","id":579315,"name":"The Flaw In All Things Part 6","site_detail_url":"https://comicvine.gamespot.com/karnak-6-the-flaw-in-all-things-part-6/4000-579315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704991/","id":704991,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-future-fight-an-eye-on-the-future-1/4000-704991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703200/","id":703200,"name":"Una tragedia in famiglia","site_detail_url":"https://comicvine.gamespot.com/wolverine-338-una-tragedia-in-famiglia/4000-703200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703199/","id":703199,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-337/4000-703199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593568/","id":593568,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-10/4000-593568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589841/","id":589841,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/x-men-epic-collection-second-genesis-1-volume-5/4000-589841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-589836/","id":589836,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-miles-morales-2-volume-2/4000-589836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588581/","id":588581,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-epic-collection-under-the-gun-1-volume-1/4000-588581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583721/","id":583721,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/karnak-the-flaw-in-all-things-1-tpb/4000-583721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578479/","id":578479,"name":"Big Apple Showdown: Part 1","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-15-big-apple-showdown-par/4000-578479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578472/","id":578472,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-4/4000-578472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578463/","id":578463,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-4/4000-578463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578460/","id":578460,"name":"Four On the Floor Part Three","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-3-four-on-the-floor-part-three/4000-578460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578454/","id":578454,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-the-oath-1/4000-578454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578452/","id":578452,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-10/4000-578452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576641/","id":576641,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans-18/4000-576641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576635/","id":576635,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-15/4000-576635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576633/","id":576633,"name":"Sitting In A Tree Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-16-sitting-in-a-tree-part-2/4000-576633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576618/","id":576618,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-18/4000-576618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576616/","id":576616,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-10/4000-576616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575882/","id":575882,"name":"Sitting In A Tree Part 1","site_detail_url":"https://comicvine.gamespot.com/spider-man-12-sitting-in-a-tree-part-1/4000-575882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575863/","id":575863,"name":"Deferred Payment Plan","site_detail_url":"https://comicvine.gamespot.com/deadpool-24-deferred-payment-plan/4000-575863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575860/","id":575860,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-9/4000-575860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574862/","id":574862,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck-1-part-one/4000-574862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741090/","id":741090,"name":"La vendetta della Confraternita","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-5-la-vendetta-della-conf/4000-741090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703589/","id":703589,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-8/4000-703589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606367/","id":606367,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-24/4000-606367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598541/","id":598541,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-72/4000-598541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580758/","id":580758,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-10-volume-10/4000-580758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579451/","id":579451,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-1-volume-1/4000-579451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571689/","id":571689,"name":"No Going Back: Part Two \"Should I Stay Or Should I Go\"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-8-no-going-back-part-two-should-i-sta/4000-571689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571682/","id":571682,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-11/4000-571682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571674/","id":571674,"name":"Ljosalfgard's Burning","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-14-ljosalfgards-burning/4000-571674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571671/","id":571671,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-3/4000-571671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571668/","id":571668,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-571668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571661/","id":571661,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-8/4000-571661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571659/","id":571659,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-8/4000-571659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569348/","id":569348,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-14/4000-569348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569346/","id":569346,"name":"I Don't Wanna Fight Tonight! (With Yooouu!)","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-15-i-dont-wanna-fight-tonight-with-yoo/4000-569346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569345/","id":569345,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-3/4000-569345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569328/","id":569328,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-the-mercs-for-money-6/4000-569328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569327/","id":569327,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-16/4000-569327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566711/","id":566711,"name":"","site_detail_url":"https://comicvine.gamespot.com/gwenpool-holiday-special-merry-mix-up-1/4000-566711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566709/","id":566709,"name":"A Story About Benjamin J. Grimm","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-15-a-story-about-benjamin-/4000-566709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563720/","id":563720,"name":"Do The Truffle Shuffle","site_detail_url":"https://comicvine.gamespot.com/deadpool-23-do-the-truffle-shuffle/4000-563720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-563715/","id":563715,"name":"Enemy of the State II Part 3","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-15-enemy-of-the-state-ii-part-3/4000-563715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741097/","id":741097,"name":"X-Men contro lo SHIELD","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-4-x-men-contro-lo-shield/4000-741097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703198/","id":703198,"name":"Wolverine VS Vecchio Logan","site_detail_url":"https://comicvine.gamespot.com/wolverine-336-wolverine-vs-vecchio-logan/4000-703198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581620/","id":581620,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-universe-7/4000-581620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606366/","id":606366,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-23/4000-606366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580570/","id":580570,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-11/4000-580570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579120/","id":579120,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-71/4000-579120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-578362/","id":578362,"name":"Zodiac Triumphant!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-11-zodiac-triumphant/4000-578362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576170/","id":576170,"name":"New Year's Retribution","site_detail_url":"https://comicvine.gamespot.com/marvel-new-years-eve-special-infinite-comic-1-new-/4000-576170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-575888/","id":575888,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-unbound-1-tpb/4000-575888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574869/","id":574869,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-574869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562957/","id":562957,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-free-previews-2016-3/4000-562957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562607/","id":562607,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-12/4000-562607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562606/","id":562606,"name":"No Going Back: Part One \"Not What We Planned\"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-7-no-going-back-part-one-not-what-we-/4000-562606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562602/","id":562602,"name":"Monster War: Part I","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-14-monster-war-part-i/4000-562602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562591/","id":562591,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-8/4000-562591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558977/","id":558977,"name":"What Do You Dream?","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-1-what-do-you-dream/4000-558977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558971/","id":558971,"name":"The League of Realms Rides Again","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-13-the-league-of-realms-rides-again/4000-558971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558970/","id":558970,"name":"Lizards","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-558970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558959/","id":558959,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-7/4000-558959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558423/","id":558423,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-13/4000-558423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558422/","id":558422,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-9/4000-558422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558416/","id":558416,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-2/4000-558416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558407/","id":558407,"name":"Enemy of the State II Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-14-enemy-of-the-state-ii-part-2/4000-558407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557375/","id":557375,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-2/4000-557375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557358/","id":557358,"name":"Hail Hydra","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-7-hail-hydra/4000-557358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703197/","id":703197,"name":"Ragni e ghiottoni","site_detail_url":"https://comicvine.gamespot.com/wolverine-335-ragni-e-ghiottoni/4000-703197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617061/","id":617061,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-69/4000-617061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609532/","id":609532,"name":"Le pire X-Men qui soit","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-and-x-men-7-le-pire-x-men-qui-so/4000-609532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579119/","id":579119,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-70/4000-579119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-572479/","id":572479,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-572479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571690/","id":571690,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-there-is-no-high-road-1-volume-1/4000-571690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-571677/","id":571677,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/new-avengers-aim-civil-war-ii-1-volume-3/4000-571677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-566701/","id":566701,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-under-new-management-1-volume-2/4000-566701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-564010/","id":564010,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-2-volume-2/4000-564010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555776/","id":555776,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-free-previews-2016-2/4000-555776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555542/","id":555542,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-11/4000-555542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555533/","id":555533,"name":"A.I.M. Vs. S.H.I.E.L.D. Part VI: If You Choose to Accept It","site_detail_url":"https://comicvine.gamespot.com/new-avengers-17-aim-vs-shield-part-vi-if-you-choos/4000-555533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555532/","id":555532,"name":"The Road To War","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-12-the-road-to-war/4000-555532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555525/","id":555525,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-555525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555524/","id":555524,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-555524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555522/","id":555522,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-13/4000-555522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555516/","id":555516,"name":"Match Du Grudge; Much Ado About Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool-21-match-du-grudge-much-ado-about-deadpoo/4000-555516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555515/","id":555515,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-6/4000-555515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555512/","id":555512,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-6/4000-555512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555509/","id":555509,"name":"Under New Management Episode Four: End of the Line","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-10-under-new-management-episode-f/4000-555509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553966/","id":553966,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/silk-13-homecoming/4000-553966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553959/","id":553959,"name":"","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man-1/4000-553959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553951/","id":553951,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-4/4000-553951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553949/","id":553949,"name":"#Take Back the Shield Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-14-take-back-the-shield/4000-553949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553023/","id":553023,"name":"There Is No High Road: Part Six: The Beer Run","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-6-there-is-no-high-road-part-six-the-/4000-553023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553021/","id":553021,"name":"","site_detail_url":"https://comicvine.gamespot.com/solo-1/4000-553021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553018/","id":553018,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-9/4000-553018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552171/","id":552171,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-12/4000-552171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552169/","id":552169,"name":"Civil War 2099 Chapter Four","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-16-civil-war-2099-chapter-four/4000-552169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703196/","id":703196,"name":"Stirpe artigliata","site_detail_url":"https://comicvine.gamespot.com/wolverine-334-stirpe-artigliata/4000-703196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606346/","id":606346,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-21/4000-606346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601070/","id":601070,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-317/4000-601070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579117/","id":579117,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-69/4000-579117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562959/","id":562959,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-lords-of-midgard-1-volume-2/4000-562959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551322/","id":551322,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-10/4000-551322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551321/","id":551321,"name":"There Is No High Road: Part Five: What We Do Best","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-5-there-is-no-high-road-part-five-wha/4000-551321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551318/","id":551318,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-11/4000-551318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551311/","id":551311,"name":"A.I.M. vs. S.H.I.E.L.D., Part V: Dream Bigger, Darling","site_detail_url":"https://comicvine.gamespot.com/new-avengers-16-aim-vs-shield-part-v-dream-bigger-/4000-551311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551300/","id":551300,"name":"Red In Tooth and Claw","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-3-red-in-tooth-and-claw/4000-551300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551299/","id":551299,"name":"Lonely At the Top: Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-9-lonely-at-the-top-part-4/4000-551299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551298/","id":551298,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-5/4000-551298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550367/","id":550367,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-8/4000-550367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550365/","id":550365,"name":"Thor's Best Friend","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-11-thors-best-friend/4000-550365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550362/","id":550362,"name":"The Flaw In All Things Part 5","site_detail_url":"https://comicvine.gamespot.com/karnak-5-the-flaw-in-all-things-part-5/4000-550362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550361/","id":550361,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-7/4000-550361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550359/","id":550359,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-12/4000-550359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550352/","id":550352,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-6/4000-550352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550351/","id":550351,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-5/4000-550351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550346/","id":550346,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-ant-man-12/4000-550346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550343/","id":550343,"name":"Destiny: Part Three","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-12-destiny-part-three/4000-550343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550342/","id":550342,"name":"Under New Management Episode Three: Elektra, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-9-under-new-management-episode-th/4000-550342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549525/","id":549525,"name":"Civil War 2099 Chapter Three","site_detail_url":"https://comicvine.gamespot.com/spider-man-2099-15-civil-war-2099-chapter-three/4000-549525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549524/","id":549524,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-8/4000-549524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549509/","id":549509,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-inhumans-11/4000-549509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548585/","id":548585,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-11/4000-548585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-548584/","id":548584,"name":"Bad Reputation","site_detail_url":"https://comicvine.gamespot.com/spidey-10-bad-reputation/4000-548584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703195/","id":703195,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-333/4000-703195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-557552/","id":557552,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-1/4000-557552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617059/","id":617059,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-67/4000-617059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606345/","id":606345,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-20/4000-606345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579116/","id":579116,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-68/4000-579116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-555511/","id":555511,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/black-widow-shields-most-wanted-1-volume-1/4000-555511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553963/","id":553963,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/mockingbird-i-can-explain-1-volume-1/4000-553963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552173/","id":552173,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-beats-up-the-marvel-u/4000-552173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547297/","id":547297,"name":"Don't Do the Crime","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-13-dont-do-the-crime/4000-547297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547296/","id":547296,"name":"There Is No High Road: Part Four: Tip of the Iceberg","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-4-there-is-no-high-road-part-four-tip/4000-547296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547272/","id":547272,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-5/4000-547272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546062/","id":546062,"name":"A.I.M. vs. S.H.I.E.L.D., Part IV: Quick, Make Something Up","site_detail_url":"https://comicvine.gamespot.com/new-avengers-15-aim-vs-shield-part-iv-quick-make-s/4000-546062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546058/","id":546058,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-6/4000-546058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546054/","id":546054,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-17/4000-546054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546052/","id":546052,"name":"Lonely At the Top: Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-8-lonely-at-the-top-part-3/4000-546052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546051/","id":546051,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-4/4000-546051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544991/","id":544991,"name":"","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist-7/4000-544991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544988/","id":544988,"name":"The Battle of Roxxon Island","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-10-the-battle-of-roxxon-island/4000-544988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544982/","id":544982,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-4/4000-544982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544980/","id":544980,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-12/4000-544980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544978/","id":544978,"name":"Destiny: Part Two","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-11-destiny-part-two/4000-544978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543741/","id":543741,"name":"Under New Management Episode Two: The Third Faction","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-8-under-new-management-episode-tw/4000-543741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543739/","id":543739,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-accused-1/4000-543739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542628/","id":542628,"name":"Doorways","site_detail_url":"https://comicvine.gamespot.com/silk-11-doorways/4000-542628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542621/","id":542621,"name":"","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-12/4000-542621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542616/","id":542616,"name":"Idle Hands Are the Devil's Playthings","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-2-idle-hands-are-the-devils-p/4000-542616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550630/","id":550630,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-30/4000-550630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553420/","id":553420,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-4/4000-553420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-629375/","id":629375,"name":"Art Imitates Lief (Model Decoy)","site_detail_url":"https://comicvine.gamespot.com/captain-america-comiccave-custom-edition-1-art-imi/4000-629375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552339/","id":552339,"name":"L'amour vache","site_detail_url":"https://comicvine.gamespot.com/all-new-deadpool-4-lamour-vache/4000-552339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550054/","id":550054,"name":"¡...Los últimos Vengadores en pie!","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-67-los-ultimos-vengadores-en/4000-550054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549657/","id":549657,"name":"¡¿Atrapados por el asombroso Spiderman?!","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-19-atrapados-por-el-asombroso-sp/4000-549657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549529/","id":549529,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-unity-the-man-who-fell-to-earth-1/4000-549529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541220/","id":541220,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-9/4000-541220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541215/","id":541215,"name":"A.I.M. vs. S.H.I.E.L.D., Part III: Knowledge Is Power","site_detail_url":"https://comicvine.gamespot.com/new-avengers-14-aim-vs-shield-part-iii-knowledge-i/4000-541215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541212/","id":541212,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-5/4000-541212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541211/","id":541211,"name":"The Agger Imperative","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-9-the-agger-imperative/4000-541211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541210/","id":541210,"name":"Hydra Attacks","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-vs-the-siniste/4000-541210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541208/","id":541208,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-5/4000-541208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541200/","id":541200,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-3/4000-541200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541199/","id":541199,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-4/4000-541199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541196/","id":541196,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-3/4000-541196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540087/","id":540087,"name":"There Is No High Road: Part Three: Mistakes Were Made","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-3-there-is-no-high-road-part-three-mi/4000-540087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540084/","id":540084,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-9/4000-540084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540070/","id":540070,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-5/4000-540070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540068/","id":540068,"name":"Destiny: Part One","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-10-destiny-part-one/4000-540068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539251/","id":539251,"name":"All Things End","site_detail_url":"https://comicvine.gamespot.com/silk-10-all-things-end/4000-539251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539248/","id":539248,"name":"","site_detail_url":"https://comicvine.gamespot.com/old-man-logan-8/4000-539248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539247/","id":539247,"name":"A.I.M. vs. S.H.I.E.L.D., Part II: Part of the Team","site_detail_url":"https://comicvine.gamespot.com/new-avengers-13-aim-vs-shield-part-ii-part-of-the-/4000-539247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539236/","id":539236,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-2/4000-539236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539234/","id":539234,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-3/4000-539234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539232/","id":539232,"name":"Under New Management Episode One: Whose Side Are You On?","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-7-under-new-management-episode-on/4000-539232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538503/","id":538503,"name":"Shouldn't Have Come Back; The Death & Birth of Janus Jardeesh","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin-1-shouldnt-have-come-back-the/4000-538503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552319/","id":552319,"name":"A la frontière de l'impossible","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-hors-serie-1-a-la-frontiere-de-li/4000-552319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550059/","id":550059,"name":"","site_detail_url":"https://comicvine.gamespot.com/masacre-6/4000-550059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-550053/","id":550053,"name":"Punto muerto: Caso 007","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-66-punto-muerto-caso-007/4000-550053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547290/","id":547290,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-wars-too-1-tpb/4000-547290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547284/","id":547284,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-civil-war-1-tpb/4000-547284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-547266/","id":547266,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/a-force-presents-6-volume-6/4000-547266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546200/","id":546200,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-worst-x-man-ever-1-tpb/4000-546200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546196/","id":546196,"name":"","site_detail_url":"https://comicvine.gamespot.com/mosaic-prelude-1/4000-546196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544536/","id":544536,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-18/4000-544536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543911/","id":543911,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-august-infinite-comic-1/4000-543911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542626/","id":542626,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-aim-standoff-1-volume-2/4000-542626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542624/","id":542624,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/mockingbird-bobbi-morse-agent-of-shield-1-tpb/4000-542624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537945/","id":537945,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-5/4000-537945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537943/","id":537943,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-9/4000-537943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537941/","id":537941,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-4/4000-537941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537933/","id":537933,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-2/4000-537933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537237/","id":537237,"name":"Lords of Midgard","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-8-lords-of-midgard/4000-537237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537234/","id":537234,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-537234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537230/","id":537230,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides-1/4000-537230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535356/","id":535356,"name":"","site_detail_url":"https://comicvine.gamespot.com/international-iron-man-4/4000-535356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-535350/","id":535350,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-2/4000-535350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534295/","id":534295,"name":"A.I.M. vs. S.H.I.E.L.D., Part I: What's Coming Next","site_detail_url":"https://comicvine.gamespot.com/new-avengers-12-aim-vs-shield-part-i-whats-coming-/4000-534295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-534276/","id":534276,"name":"The Coulson Protocols Episode Six: Unintended Consequences","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-6-the-coulson-protocols-episode-s/4000-534276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533039/","id":533039,"name":"Spider-Women Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-women-omega-1-spider-women-conclusion/4000-533039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533025/","id":533025,"name":"The Box Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-9-the-box-part-2/4000-533025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513820/","id":513820,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-worst-x-man-ever-5/4000-513820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-545126/","id":545126,"name":"","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic-4/4000-545126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704079/","id":704079,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-4/4000-704079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546402/","id":546402,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-27/4000-546402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552398/","id":552398,"name":"Compression temporelle","site_detail_url":"https://comicvine.gamespot.com/all-new-inhumans-2-compression-temporelle/4000-552398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551959/","id":551959,"name":"Union imparfaite","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-2-union-imparfaite/4000-551959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540091/","id":540091,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-and-the-great-lakes-a/4000-540091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540066/","id":540066,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-the-coulson-protocols-1-volume-1/4000-540066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539879/","id":539879,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-40/4000-539879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539513/","id":539513,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-17/4000-539513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539252/","id":539252,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-women-1-tpb/4000-539252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538854/","id":538854,"name":"Punto muerto: Caso 004","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-65-punto-muerto-caso-004/4000-538854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538501/","id":538501,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-time-runs-out-1-hc/4000-538501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531885/","id":531885,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-531885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531883/","id":531883,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-531883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531874/","id":531874,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-1/4000-531874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530731/","id":530731,"name":"The Flaw In All Things Part 4","site_detail_url":"https://comicvine.gamespot.com/karnak-4-the-flaw-in-all-things-part-4/4000-530731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530725/","id":530725,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-0/4000-530725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530722/","id":530722,"name":"The Box Part 1","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-8-the-box-part-1/4000-530722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529661/","id":529661,"name":"Spider-Women Part 6","site_detail_url":"https://comicvine.gamespot.com/silk-8-spider-women-part-6/4000-529661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529658/","id":529658,"name":"","site_detail_url":"https://comicvine.gamespot.com/illuminati-7/4000-529658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529646/","id":529646,"name":"The Coulson Protocols Episode Five: Shanghaied","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-5-the-coulson-protocols-episode-f/4000-529646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529169/","id":529169,"name":"Steve Rogers Captain America; The Amazing Spider-Man Up & About","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2016-captain-america-1-steve-r/4000-529169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528522/","id":528522,"name":"There Is No High Road: Part One \"Power and Control\"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-1-there-is-no-high-road-part-one-powe/4000-528522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528520/","id":528520,"name":"Spider-Women Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-8-spider-women-part-5/4000-528520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528513/","id":528513,"name":"Meet the Parent","site_detail_url":"https://comicvine.gamespot.com/new-avengers-11-meet-the-parent/4000-528513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528511/","id":528511,"name":"Small-Time Heroes; Secret Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-civil-w/4000-528511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528502/","id":528502,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-3/4000-528502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539593/","id":539593,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-26/4000-539593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704523/","id":704523,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-34/4000-704523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551958/","id":551958,"name":"Rassemblement !","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-1-rassemblement/4000-551958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542938/","id":542938,"name":"Escuadrón de Monstruos","site_detail_url":"https://comicvine.gamespot.com/100-marvel-los-comandos-aulladores-de-shield-1-esc/4000-542938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539512/","id":539512,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-16/4000-539512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537931/","id":537931,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-1-hc/4000-537931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533040/","id":533040,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-classic-omnibus-1-hc/4000-533040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527134/","id":527134,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-assault-on-pleasant-hill-omega-1/4000-527134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527131/","id":527131,"name":"Scorpio Rising Part 3: Signs From Above","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-11-scorpio-rising-part-3-si/4000-527131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526061/","id":526061,"name":"Everybody Dance Now","site_detail_url":"https://comicvine.gamespot.com/new-avengers-10-everybody-dance-now/4000-526061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526057/","id":526057,"name":"The Flaw In All Things Part 3","site_detail_url":"https://comicvine.gamespot.com/karnak-3-the-flaw-in-all-things-part-3/4000-526057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525027/","id":525027,"name":"","site_detail_url":"https://comicvine.gamespot.com/illuminati-6/4000-525027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525015/","id":525015,"name":"The Coulson Protocols Episode Four: Reversals of Fortune","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-4-the-coulson-protocols-episode-f/4000-525015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523261/","id":523261,"name":"Up From the Depths","site_detail_url":"https://comicvine.gamespot.com/new-avengers-9-up-from-the-depths/4000-523261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523253/","id":523253,"name":"To Me, My Ex-Man","site_detail_url":"https://comicvine.gamespot.com/deadpool-9-to-me-my-ex-man/4000-523253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523250/","id":523250,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-2/4000-523250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704521/","id":704521,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-33/4000-704521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704328/","id":704328,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-extra-29/4000-704328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664039/","id":664039,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-4-volume-4/4000-664039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539625/","id":539625,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-23/4000-539625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539511/","id":539511,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-15/4000-539511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531886/","id":531886,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield-monster-squad-1-tpb/4000-531886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529671/","id":529671,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-genesis-20-1-tpb/4000-529671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529662/","id":529662,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-greater-power-1-volume-1/4000-529662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524443/","id":524443,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-24/4000-524443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522425/","id":522425,"name":"Presentation; Catch Me If You Can; Pas de Deux","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-7-presentation-catch-me/4000-522425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-522422/","id":522422,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-all-different-marvel-universe-1/4000-522422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521339/","id":521339,"name":"\"Of Course, You Realize...\"","site_detail_url":"https://comicvine.gamespot.com/new-avengers-8-of-course-you-realize/4000-521339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521333/","id":521333,"name":"","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield-6/4000-521333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521328/","id":521328,"name":"Hawkeyes Part Two of Three","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-5-hawkeyes-part-two-of-three/4000-521328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520210/","id":520210,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-6/4000-520210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518870/","id":518870,"name":"The Hills Are Alive...With the Sound of Gunfire","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-7-the-hills-are-alivewith-the-sou/4000-518870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518865/","id":518865,"name":"Greater Power Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-6-greater-power-conclusion/4000-518865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518861/","id":518861,"name":"","site_detail_url":"https://comicvine.gamespot.com/mockingbird-1/4000-518861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518851/","id":518851,"name":"Scorpio Rising Part 1: One-Way Trip","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-9-scorpio-rising-part-1-one/4000-518851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518850/","id":518850,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-wolverine-6/4000-518850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518849/","id":518849,"name":"The Coulson Protocols Episode Three: Free Fall","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-3-the-coulson-protocols-episode-t/4000-518849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517825/","id":517825,"name":"","site_detail_url":"https://comicvine.gamespot.com/black-widow-1/4000-517825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-517824/","id":517824,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-assault-on-pleasant-hill-alpha-1/4000-517824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741096/","id":741096,"name":"Il buono, il cattivo e l'inumano","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-3-il-buono-il-cattivo-e-l/4000-741096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704326/","id":704326,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-extra-28/4000-704326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703587/","id":703587,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-6/4000-703587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546682/","id":546682,"name":"Le Meilleur des Mondes 1/2","site_detail_url":"https://comicvine.gamespot.com/scret-wars-x-men-4-le-meilleur-des-mondes-12/4000-546682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539510/","id":539510,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-14/4000-539510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526058/","id":526058,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1990s-1-volume-1/4000-526058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525029/","id":525029,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude-1-tpb/4000-525029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525028/","id":525028,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-8-volume-8/4000-525028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523641/","id":523641,"name":"HYDRA Rising!","site_detail_url":"https://comicvine.gamespot.com/marvel-avengers-alliance-4-hydra-rising/4000-523641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516965/","id":516965,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-5/4000-516965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516953/","id":516953,"name":"","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4000-516953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516945/","id":516945,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-inhumans-4/4000-516945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516077/","id":516077,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-welcome-to-pleasant-hill-1/4000-516077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514450/","id":514450,"name":"Greater Power Part Five","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-5-greater-power-part-five/4000-514450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514449/","id":514449,"name":"","site_detail_url":"https://comicvine.gamespot.com/silk-4/4000-514449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514429/","id":514429,"name":"Hawkeyes Part One of Three","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-4-hawkeyes-part-one-of-three/4000-514429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514427/","id":514427,"name":"The Coulson Protocols Episode Two: Dangerous Liaisons","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-2-the-coulson-protocols-episode-t/4000-514427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523513/","id":523513,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-and-silk-spider-fly-effect-infi/4000-523513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743995/","id":743995,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-ein-neuer-anfang-1/4000-743995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704310/","id":704310,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-extra-27/4000-704310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-519343/","id":519343,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-23/4000-519343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552391/","id":552391,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-37/4000-552391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539509/","id":539509,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-13/4000-539509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538850/","id":538850,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-61/4000-538850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537188/","id":537188,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-46/4000-537188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524389/","id":524389,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-21/4000-524389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520197/","id":520197,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus-2-volume-2/4000-520197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511527/","id":511527,"name":"The Wedding of Deadpool","site_detail_url":"https://comicvine.gamespot.com/true-believers-the-wedding-of-deadpool-1-the-weddi/4000-511527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511523/","id":511523,"name":"Eternity's Children [Attend University] Chapter Two: Orientation","site_detail_url":"https://comicvine.gamespot.com/starbrand-and-nightmask-2-eternitys-children-atten/4000-511523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510953/","id":510953,"name":"","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-3/4000-510953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510933/","id":510933,"name":"The Bishop's Man Part Three of Three","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-3-the-bishops-man-part-three-of-th/4000-510933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510931/","id":510931,"name":"The Coulson Protocols, Episode One: Lola","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-1-the-coulson-protocols-episode-o/4000-510931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510502/","id":510502,"name":"Greater Power Part Four","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-4-greater-power-part-four/4000-510502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510500/","id":510500,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude-3/4000-510500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521628/","id":521628,"name":"What's Past is Prologue","site_detail_url":"https://comicvine.gamespot.com/avengers-alliance-1-whats-past-is-prologue/4000-521628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741093/","id":741093,"name":"La battaglia dell'atomo","site_detail_url":"https://comicvine.gamespot.com/x-men-la-battaglia-dellatomo-1-la-battaglia-dellat/4000-741093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704517/","id":704517,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-30/4000-704517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704297/","id":704297,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-extra-26/4000-704297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562276/","id":562276,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-universe-1/4000-562276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539508/","id":539508,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-12/4000-539508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516964/","id":516964,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/siege-battleworld-1-tpb/4000-516964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514448/","id":514448,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-wars-journalbattleworld-1-tpb/4000-514448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513661/","id":513661,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1-volume-1/4000-513661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513658/","id":513658,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-omnibus-1-hc/4000-513658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511159/","id":511159,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-31/4000-511159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509700/","id":509700,"name":"Chapter One: Not Apollo Creed","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-split-second-1-chapter-one-not-/4000-509700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508421/","id":508421,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-inhumans-2/4000-508421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507766/","id":507766,"name":"High Priority","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-4-high-priority/4000-507766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507189/","id":507189,"name":"Cho Time: Part One","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk-1-cho-time-part-one/4000-507189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514664/","id":514664,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude-infinite/4000-514664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704516/","id":704516,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-29/4000-704516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704291/","id":704291,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-extra-25/4000-704291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539507/","id":539507,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-11/4000-539507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538608/","id":538608,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-wars-mundo-de-batalla-5/4000-538608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521515/","id":521515,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-58/4000-521515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512433/","id":512433,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/shield-the-man-called-death-1-volume-2/4000-512433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511082/","id":511082,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shield-secret-history-1-tpb/4000-511082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510501/","id":510501,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-and-avengers-1/4000-510501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506661/","id":506661,"name":"Active Mission: Kingslayer","site_detail_url":"https://comicvine.gamespot.com/shield-12-active-mission-kingslayer/4000-506661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506175/","id":506175,"name":"Thunder in Her Veins","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-1-thunder-in-her-veins/4000-506175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505523/","id":505523,"name":"Greater Power Part Two","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-2-greater-power-part-two/4000-505523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510631/","id":510631,"name":"Chapter Six: A Whole in Time","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-split-second-infinite-comic-6-c/4000-510631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510368/","id":510368,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-20/4000-510368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510361/","id":510361,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-19/4000-510361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509356/","id":509356,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-16/4000-509356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539506/","id":539506,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-10/4000-539506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521511/","id":521511,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-57/4000-521511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-512068/","id":512068,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-3/4000-512068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511838/","id":511838,"name":"Utopistes","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-4-utopistes/4000-511838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511835/","id":511835,"name":"Le Vortex Noir 6/7","site_detail_url":"https://comicvine.gamespot.com/x-men-30-le-vortex-noir-67/4000-511835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510423/","id":510423,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manthor-4/4000-510423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-508424/","id":508424,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-renew-your-vows-warzones-1-/4000-508424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507192/","id":507192,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/wolverine-epic-collection-the-dying-game-1-volume-/4000-507192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504343/","id":504343,"name":"Neohedron","site_detail_url":"https://comicvine.gamespot.com/new-avengers-2-neohedron/4000-504343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504341/","id":504341,"name":"Mission 001: Earth Idol","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield-1-mission-001-earth-id/4000-504341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504340/","id":504340,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-4/4000-504340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504334/","id":504334,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-2/4000-504334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503564/","id":503564,"name":"Active Mission: Fortune's Favor","site_detail_url":"https://comicvine.gamespot.com/shield-11-active-mission-fortunes-favor/4000-503564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503561/","id":503561,"name":"The Flaw in All Things, Part 1","site_detail_url":"https://comicvine.gamespot.com/karnak-1-the-flaw-in-all-things-part-1/4000-503561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503552/","id":503552,"name":"","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-1/4000-503552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502871/","id":502871,"name":"In At the Deep End","site_detail_url":"https://comicvine.gamespot.com/new-avengers-1-in-at-the-deep-end/4000-502871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502855/","id":502855,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-1/4000-502855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502109/","id":502109,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-0/4000-502109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502108/","id":502108,"name":"Worldwide","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-1-worldwide/4000-502108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502107/","id":502107,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-all-different-marvel-point-one-1/4000-502107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704514/","id":704514,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-27/4000-704514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592928/","id":592928,"name":"I mille volti di Mystica","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-305-i-mille-volti-di-mystica/4000-592928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539505/","id":539505,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-9/4000-539505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511837/","id":511837,"name":"Un Jeu d'Ombres","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-3-un-jeu-dombres/4000-511837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506659/","id":506659,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/miles-morales-the-ultimate-spider-man-ultimate-col/4000-506659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505611/","id":505611,"name":"HC/SC","site_detail_url":"https://comicvine.gamespot.com/amazing-fantastic-incredible-a-marvelous-memoir-1-/4000-505611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504930/","id":504930,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-by-kurt-busiek-and-george-perez-omnibus-2/4000-504930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501619/","id":501619,"name":"Active Mission: The Duck Called H.O.W.A.R.D.","site_detail_url":"https://comicvine.gamespot.com/shield-10-active-mission-the-duck-called-howard/4000-501619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501608/","id":501608,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-cavalry-shield-50th-anniversary-special-1/4000-501608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501021/","id":501021,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-shield-50th-anniversary-1/4000-501021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500297/","id":500297,"name":"","site_detail_url":"https://comicvine.gamespot.com/agent-carter-shield-50th-anniversary-1/4000-500297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499751/","id":499751,"name":"","site_detail_url":"https://comicvine.gamespot.com/quake-shield-50th-anniversary-1/4000-499751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499739/","id":499739,"name":"I'll Always Be There For You.","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-5-ill-always-be/4000-499739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499042/","id":499042,"name":"[Untitled]; Red Widow: First Strike","site_detail_url":"https://comicvine.gamespot.com/mockingbird-shield-50th-anniversary-1-untitled-red/4000-499042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506350/","id":506350,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-24/4000-506350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503290/","id":503290,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-14/4000-503290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505745/","id":505745,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-23/4000-505745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-744596/","id":744596,"name":"Dem Ende nah","site_detail_url":"https://comicvine.gamespot.com/marvel-now-wolverine-4-dem-ende-nah/4000-744596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741088/","id":741088,"name":"Fuori portata","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-3-fuori-portata/4000-741088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704422/","id":704422,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-26/4000-704422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703181/","id":703181,"name":"Wolverines 7 : relazioni difficili","site_detail_url":"https://comicvine.gamespot.com/wolverine-319-wolverines-7-relazioni-difficili/4000-703181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503950/","id":503950,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-17/4000-503950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539504/","id":539504,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-8/4000-539504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521502/","id":521502,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-55/4000-521502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511163/","id":511163,"name":"Der Omega-Mutant","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6-der-omega-mutant/4000-511163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502859/","id":502859,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/damage-control-the-complete-collection-1-tpb/4000-502859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502246/","id":502246,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-encyclopedia-1-hc/4000-502246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-502129/","id":502129,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/shield-the-complete-collection-1-hc/4000-502129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498398/","id":498398,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-woman-10/4000-498398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498397/","id":498397,"name":"Active Mission: The Man Called D.E.A.T.H.; Duggan Lives!","site_detail_url":"https://comicvine.gamespot.com/shield-9-active-mission-the-man-called-death-dugga/4000-498397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497935/","id":497935,"name":"\"Daddy has to Go Away for a While\"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-4-daddy-has-to-/4000-497935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496891/","id":496891,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-end-4/4000-496891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496873/","id":496873,"name":"Calling a Family Meeting","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-3-calling-a-fam/4000-496873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504511/","id":504511,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-21/4000-504511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503451/","id":503451,"name":"Chapter One: Not Apollo Creed","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-split-second-infinite-comic-1-c/4000-503451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503793/","id":503793,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-20/4000-503793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704421/","id":704421,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-25/4000-704421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635506/","id":635506,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-21/4000-635506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592923/","id":592923,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-303/4000-592923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540880/","id":540880,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-29/4000-540880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539503/","id":539503,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-7/4000-539503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521500/","id":521500,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-54/4000-521500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511836/","id":511836,"name":"Un Monde En Flammes","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-2-un-monde-en-flammes/4000-511836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501997/","id":501997,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shield-by-lee-and-kirby-the-complete-collection-1-/4000-501997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501617/","id":501617,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/monster-of-frankenstein-1-tpb/4000-501617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501612/","id":501612,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-through-the-looking-glass-/4000-501612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501020/","id":501020,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deathlok-man-versus-machine-1-volume-2/4000-501020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499657/","id":499657,"name":"Sur le terrain","site_detail_url":"https://comicvine.gamespot.com/x-men-27-sur-le-terrain/4000-499657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499605/","id":499605,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-40/4000-499605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499373/","id":499373,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-wars-1/4000-499373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496398/","id":496398,"name":"Active Mission: No Angel","site_detail_url":"https://comicvine.gamespot.com/shield-8-active-mission-no-angel/4000-496398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496389/","id":496389,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathlok-10/4000-496389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494317/","id":494317,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-1/4000-494317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494316/","id":494316,"name":"Part 2: \"Because We Said So, That's Why.\"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows-2-part-2-becaus/4000-494316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493794/","id":493794,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-team-up-7/4000-493794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704420/","id":704420,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-24/4000-704420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703585/","id":703585,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-4/4000-703585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592914/","id":592914,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-302/4000-592914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539502/","id":539502,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-6/4000-539502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538674/","id":538674,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-39/4000-538674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521499/","id":521499,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-53/4000-521499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499604/","id":499604,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-39/4000-499604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498391/","id":498391,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-all-new-avengers-assemble-2-volume/4000-498391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497716/","id":497716,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-the-complete-collection-2-volume-2/4000-497716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497587/","id":497587,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-and-x-men-axis-2/4000-497587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497395/","id":497395,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/operation-sin-agent-carter-1-tpb/4000-497395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493052/","id":493052,"name":"Active Mission: The Strange Case of Daisy Johnson and Mr. Hyde","site_detail_url":"https://comicvine.gamespot.com/shield-7-active-mission-the-strange-case-of-daisy-/4000-493052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493038/","id":493038,"name":"January: Part One","site_detail_url":"https://comicvine.gamespot.com/black-widow-19-january-part-one/4000-493038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492217/","id":492217,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathlok-9/4000-492217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491517/","id":491517,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-8/4000-491517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-490874/","id":490874,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-41/4000-490874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741095/","id":741095,"name":"Rotto","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-2-rotto/4000-741095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704419/","id":704419,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-23/4000-704419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635165/","id":635165,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-19/4000-635165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592906/","id":592906,"name":"GLI SCHELETRI DI XAVIER","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-301-gli-scheletri-di-xavier/4000-592906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552390/","id":552390,"name":"En 1 mes... ¡Se acaba el tiempo! - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-36-en-1-mes-se-acaba-el-tiempo-sec/4000-552390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539501/","id":539501,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-5/4000-539501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499655/","id":499655,"name":"Axis : le pire d'entre nous","site_detail_url":"https://comicvine.gamespot.com/x-men-25-axis-le-pire-dentre-nous/4000-499655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496393/","id":496393,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/magneto-shadow-games-1-volume-3/4000-496393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495799/","id":495799,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/hulk-omega-hulk-2-book-2/4000-495799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495535/","id":495535,"name":"","site_detail_url":"https://comicvine.gamespot.com/ant-man-die-offizielle-vorgeschichte-zum-film-1/4000-495535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494321/","id":494321,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/king-size-kirby-1-hc/4000-494321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493800/","id":493800,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/shield-perfect-bullets-1-volume-1/4000-493800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489913/","id":489913,"name":"Active Mission: Dark Dimensions","site_detail_url":"https://comicvine.gamespot.com/shield-6-active-mission-dark-dimensions/4000-489913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489895/","id":489895,"name":"Wunderkammer Part Three of Five","site_detail_url":"https://comicvine.gamespot.com/all-new-hawkeye-3-wunderkammer-part-three-of-five/4000-489895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489330/","id":489330,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-34/4000-489330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488661/","id":488661,"name":"The Woman Beneath The Mask","site_detail_url":"https://comicvine.gamespot.com/thor-8-the-woman-beneath-the-mask/4000-488661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487836/","id":487836,"name":"The Ω Hulk Chapter Twelve; Welcome Home","site_detail_url":"https://comicvine.gamespot.com/hulk-16-the-o-hulk-chapter-twelve-welcome-home/4000-487836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487831/","id":487831,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-1/4000-487831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487501/","id":487501,"name":"Secret Wars #0; Attack on Avengers","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2015-secret-wars-0-secret-wars/4000-487501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704418/","id":704418,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-22/4000-704418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703146/","id":703146,"name":"Gli Incredibili X-Men: Dispersi nel tempo","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-235-gli-incredibili-x-men-dispersi-ne/4000-703146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635163/","id":635163,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-18/4000-635163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539500/","id":539500,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-4/4000-539500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499981/","id":499981,"name":"Chapitre 2 : Inversion","site_detail_url":"https://comicvine.gamespot.com/avengers-and-x-men-axis-2-chapitre-2-inversion/4000-499981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499654/","id":499654,"name":"L'aventure ultime","site_detail_url":"https://comicvine.gamespot.com/x-men-24-laventure-ultime/4000-499654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492208/","id":492208,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/annihilation-conquest-omnibus-1-hc/4000-492208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491523/","id":491523,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-crushed-1-volume-3/4000-491523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491521/","id":491521,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-revelations-1-vo/4000-491521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491513/","id":491513,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-2-volume-2/4000-491513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491161/","id":491161,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-not-brand-echh-1-volume-1/4000-491161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487220/","id":487220,"name":"","site_detail_url":"https://comicvine.gamespot.com/true-believers-miles-morales-ultimate-spider-man-1/4000-487220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487214/","id":487214,"name":"Active Mission: Magic Bullets","site_detail_url":"https://comicvine.gamespot.com/shield-5-active-mission-magic-bullets/4000-487214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487205/","id":487205,"name":"...That Time I Teamed Up With the Hulk!","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-6/4000-487205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487201/","id":487201,"name":"One Was Life, One Was Death","site_detail_url":"https://comicvine.gamespot.com/avengers-44-one-was-life-one-was-death/4000-487201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487200/","id":487200,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-captain-america-6/4000-487200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486724/","id":486724,"name":"The Ω Hulk Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/hulk-15-the-o-hulk-chapter-eleven/4000-486724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486721/","id":486721,"name":"Fight The Future","site_detail_url":"https://comicvine.gamespot.com/black-widow-17-fight-the-future/4000-486721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486715/","id":486715,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-40/4000-486715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486155/","id":486155,"name":"The Battle for the Hammer","site_detail_url":"https://comicvine.gamespot.com/thor-7-the-battle-for-the-hammer/4000-486155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485511/","id":485511,"name":"The Aristocrats; Shiklah's Catching Up; The Family S.H.I.E.L.D.; What Do We Want? Apocalypse! When Do We Want It? Now!; The Twhipster and the Quipster Battle the Hipsters!; All About the Benjamins; Parents: The Meeting","site_detail_url":"https://comicvine.gamespot.com/deadpool-45-the-aristocrats-shiklahs-catching-up-t/4000-485511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-484910/","id":484910,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverines-13/4000-484910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-620497/","id":620497,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-future-fight-1/4000-620497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499996/","id":499996,"name":"Le monde a besoin de vilains","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-1-le-monde-a-besoin-de-vilains/4000-499996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488137/","id":488137,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-11/4000-488137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704417/","id":704417,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-21/4000-704417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704076/","id":704076,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-1/4000-704076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703172/","id":703172,"name":"Gli eredi di Wolverine 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-310-gli-eredi-di-wolverine-6/4000-703172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592890/","id":592890,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-299/4000-592890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539499/","id":539499,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-3/4000-539499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497331/","id":497331,"name":"Cutting Edge","site_detail_url":"https://comicvine.gamespot.com/avengers-presented-by-gillette-1-cutting-edge/4000-497331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494024/","id":494024,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-36/4000-494024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489907/","id":489907,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-classic-3-volume-3/4000-489907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489325/","id":489325,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-the-complete-collection-1-volume-1/4000-489325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485518/","id":485518,"name":"Active Mission: Fuel","site_detail_url":"https://comicvine.gamespot.com/shield-4-active-mission-fuel/4000-485518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483349/","id":483349,"name":"Révérence: Conclusion","site_detail_url":"https://comicvine.gamespot.com/elektra-11-reverence-conclusion/4000-483349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483348/","id":483348,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathlok-6/4000-483348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482687/","id":482687,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-16/4000-482687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482168/","id":482168,"name":"Who Holds the Hammer?","site_detail_url":"https://comicvine.gamespot.com/thor-6-who-holds-the-hammer/4000-482168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482158/","id":482158,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-11/4000-482158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481614/","id":481614,"name":"Monster Mash","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-9-monster-mash/4000-481614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704415/","id":704415,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-20/4000-704415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635158/","id":635158,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-16/4000-635158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552389/","id":552389,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-35/4000-552389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539498/","id":539498,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-2/4000-539498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511162/","id":511162,"name":"Charles Xaviers letzter Wille","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5-charles-xaviers-letzter-wille/4000-511162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499989/","id":499989,"name":"lien de sang","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-22-lien-de-sang/4000-499989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499652/","id":499652,"name":"World War Wendigo","site_detail_url":"https://comicvine.gamespot.com/x-men-22-world-war-wendigo/4000-499652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487962/","id":487962,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-35/4000-487962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487427/","id":487427,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/elektra-reverence-1-volume-2/4000-487427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480678/","id":480678,"name":"Active Mission: Home Invasion","site_detail_url":"https://comicvine.gamespot.com/shield-3-active-mission-home-invasion/4000-480678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479974/","id":479974,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-15/4000-479974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479970/","id":479970,"name":"Reboot","site_detail_url":"https://comicvine.gamespot.com/deathlok-5-reboot/4000-479970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486916/","id":486916,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-10/4000-486916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486889/","id":486889,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-10/4000-486889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704414/","id":704414,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-19/4000-704414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482877/","id":482877,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-9/4000-482877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635152/","id":635152,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-15/4000-635152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601212/","id":601212,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-22/4000-601212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592888/","id":592888,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-297/4000-592888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539497/","id":539497,"name":"","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield-1/4000-539497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538838/","id":538838,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-49/4000-538838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503907/","id":503907,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-20/4000-503907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499988/","id":499988,"name":"décrépitude","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-21-decrepitude/4000-499988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499651/","id":499651,"name":"Le testament de Charles Xavier","site_detail_url":"https://comicvine.gamespot.com/x-men-21-le-testament-de-charles-xavier/4000-499651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498704/","id":498704,"name":"Fantastic Four 10: Ultimatum","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-78-fantastic-four-10-ultima/4000-498704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498545/","id":498545,"name":"","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-4/4000-498545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497752/","id":497752,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-20/4000-497752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483695/","id":483695,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-the-labyrinth-1-volume-2/4000-483695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482859/","id":482859,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/avengers-omnibus-2-volume-two/4000-482859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481878/","id":481878,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-s-the-avengers-age-of-ultron-prelude-1-tpb/4000-481878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481874/","id":481874,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool-1-tpb/4000-481874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477858/","id":477858,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-30/4000-477858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476796/","id":476796,"name":"Chapter 4: The Choice","site_detail_url":"https://comicvine.gamespot.com/superior-iron-man-4-chapter-4-the-choice/4000-476796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476789/","id":476789,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-14/4000-476789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476785/","id":476785,"name":"Back in Blue (Part 2): The End is Fourever (Part 1)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-642-back-in-blue-part-2-the-end-is-/4000-476785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475943/","id":475943,"name":"Active Mission: The Animator","site_detail_url":"https://comicvine.gamespot.com/shield-2-active-mission-the-animator/4000-475943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475941/","id":475941,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-9/4000-475941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475936/","id":475936,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathlok-4/4000-475936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475459/","id":475459,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-s-the-avengers-2/4000-475459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704396/","id":704396,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-18/4000-704396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482876/","id":482876,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-8/4000-482876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471970/","id":471970,"name":"Part One of Four: ...Where's Bruce Banner?","site_detail_url":"https://comicvine.gamespot.com/thanos-vs-hulk-1-part-one-of-four-wheres-bruce-ban/4000-471970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592884/","id":592884,"name":"I SEGRETI DI XAVIER","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-296-i-segreti-di-xavier/4000-592884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511161/","id":511161,"name":"Die X-Men gegen SHIELD","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-4-die-x-men-gegen-shield/4000-511161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499987/","id":499987,"name":"Fréro-superior","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-20-frero-superior/4000-499987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499353/","id":499353,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-11/4000-499353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480172/","id":480172,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-west-case-scenario-1-volume-2/4000-480172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479510/","id":479510,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-33/4000-479510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479401/","id":479401,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deathlok-rage-against-the-machine-1-tpb/4000-479401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478717/","id":478717,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-age-of-ultron-prelude-this-sceptre-d-isle/4000-478717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471961/","id":471961,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-peggy-carter-agent-of-s-h-i-e-l-d-/4000-471961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478771/","id":478771,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-11/4000-478771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499650/","id":499650,"name":"Les habitudes ont la vie dure","site_detail_url":"https://comicvine.gamespot.com/x-men-20-les-habitudes-ont-la-vie-dure/4000-499650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741094/","id":741094,"name":"La nuova rivoluzione","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-1-la-nuova-rivoluzione/4000-741094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703584/","id":703584,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-3/4000-703584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475083/","id":475083,"name":"Active Mission: Perfect Bullets","site_detail_url":"https://comicvine.gamespot.com/shield-1-active-mission-perfect-bullets/4000-475083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474680/","id":474680,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-13/4000-474680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474632/","id":474632,"name":"You Can't Win Part 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-28-you-can-t-win-part-2/4000-474632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474630/","id":474630,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-s-the-avengers-1/4000-474630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474620/","id":474620,"name":"The Secret Life of Eva Bell Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-annual-1-the-secret-life-of-eva-bell/4000-474620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473651/","id":473651,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-8/4000-473651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473647/","id":473647,"name":"Back in Blue (Part 1)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-14-back-in-blue-part-1/4000-473647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473644/","id":473644,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathlok-3/4000-473644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472907/","id":472907,"name":"Homesick","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-annual-1-homesick/4000-472907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472905/","id":472905,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-of-wolverine-the-logan-legacy-6/4000-472905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472902/","id":472902,"name":"The Availables Part 2","site_detail_url":"https://comicvine.gamespot.com/avengers-world-16-the-availables-part-2/4000-472902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592883/","id":592883,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-295/4000-592883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538836/","id":538836,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-47/4000-538836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510274/","id":510274,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-1/4000-510274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503864/","id":503864,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-2/4000-503864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499352/","id":499352,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-10/4000-499352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497750/","id":497750,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-18/4000-497750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479509/","id":479509,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-32/4000-479509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478080/","id":478080,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-classic-2-volume-2/4000-478080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477168/","id":477168,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/magneto-reversals-1-volume-2/4000-477168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477164/","id":477164,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-stark-wars-1-volume-13/4000-477164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476394/","id":476394,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1/4000-476394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471317/","id":471317,"name":"...That Time I Teamed Up With Captain America!","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-web-warriors-1/4000-471317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471316/","id":471316,"name":"","site_detail_url":"https://comicvine.gamespot.com/deathlok-2/4000-471316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470436/","id":470436,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-28/4000-470436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470427/","id":470427,"name":"East of Eden (Part 5)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-13-east-of-eden-part-5/4000-470427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470426/","id":470426,"name":"Révérence: Part 1","site_detail_url":"https://comicvine.gamespot.com/elektra-8-reverence-part-1/4000-470426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470418/","id":470418,"name":"The Availables Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-world-15-the-availables-part-1/4000-470418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469834/","id":469834,"name":"The Mysterious Strangers","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool-2-the-mysterious-strangers/4000-469834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469488/","id":469488,"name":"Book Two: Inversion: Chapter 1 - Altered Beast","site_detail_url":"https://comicvine.gamespot.com/avengers-x-men-axis-4-book-two-inversion-chapter-1/4000-469488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511160/","id":511160,"name":"Verborgene Talente","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-3-verborgene-talente/4000-511160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503904/","id":503904,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-17/4000-503904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498908/","id":498908,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-47/4000-498908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497606/","id":497606,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-13/4000-497606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472330/","id":472330,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-trial-of-captain-america-omnib/4000-472330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468457/","id":468457,"name":"Archangel","site_detail_url":"https://comicvine.gamespot.com/avengers-37-archangel/4000-468457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468091/","id":468091,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-27/4000-468091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468084/","id":468084,"name":"What Happened When the World Woke Up","site_detail_url":"https://comicvine.gamespot.com/new-avengers-25-what-happened-when-the-world-woke-/4000-468084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468078/","id":468078,"name":"East of Eden (Part 3)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-11-east-of-eden-part-3/4000-468078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468071/","id":468071,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-14/4000-468071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467656/","id":467656,"name":"Down To the Crossroads Part One","site_detail_url":"https://comicvine.gamespot.com/savage-hulk-5-down-to-the-crossroads-part-one/4000-467656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470599/","id":470599,"name":"","site_detail_url":"https://comicvine.gamespot.com/brutus-790/4000-470599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609921/","id":609921,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-13/4000-609921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601208/","id":601208,"name":"Di passati e futuri","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-18-di-passati-e-futuri/4000-601208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592881/","id":592881,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-294/4000-592881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499984/","id":499984,"name":"Fantomes","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-17-fantomes/4000-499984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499350/","id":499350,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-8/4000-499350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497748/","id":497748,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-16/4000-497748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471602/","id":471602,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/inhuman-genesis-1-volume-1/4000-471602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470995/","id":470995,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder-the-last-days-of-midgard-1-vol/4000-470995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470975/","id":470975,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-guardians-disassembled-1-v/4000-470975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470852/","id":470852,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-three-months-to-die-2-book-2/4000-470852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470598/","id":470598,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-13/4000-470598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470070/","id":470070,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-8-volume-8/4000-470070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469448/","id":469448,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-30/4000-469448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466335/","id":466335,"name":"Tried to Run / Tried to Hide","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-8-tried-to-run-tried-to-hide/4000-466335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465837/","id":465837,"name":"The Three Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-35-the-three-avengers/4000-465837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464982/","id":464982,"name":"","site_detail_url":"https://comicvine.gamespot.com/hawkeye-20/4000-464982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464980/","id":464980,"name":"East of Eden (Part 2)","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-10-east-of-eden-part-2/4000-464980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464975/","id":464975,"name":"Going Native, Part Five","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-10-going-native-part-five/4000-464975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463998/","id":463998,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-25/4000-463998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463986/","id":463986,"name":"Hawkeye vs Deadpool vs Crime #1","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool-0-hawkeye-vs-deadpool-vs-crime/4000-463986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470090/","id":470090,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-going-native-1-volume-2/4000-470090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476423/","id":476423,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-7/4000-476423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592877/","id":592877,"name":"Inizia la guerra","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-293-inizia-la-guerra/4000-592877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609911/","id":609911,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-12/4000-609911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499349/","id":499349,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-7/4000-499349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498906/","id":498906,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-45/4000-498906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497747/","id":497747,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-15/4000-497747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470597/","id":470597,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-12/4000-470597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468857/","id":468857,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-30/4000-468857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468651/","id":468651,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-lets-have-a-problem-1-volume-1/4000-468651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468350/","id":468350,"name":"Gli X-Men contro lo S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-292-gli-x-men-contro-lo-s-h-/4000-468350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468247/","id":468247,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-the-complete-collection-3-vol-3/4000-468247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468201/","id":468201,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-18/4000-468201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468199/","id":468199,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-6/4000-468199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468195/","id":468195,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-9/4000-468195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467805/","id":467805,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-16/4000-467805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467800/","id":467800,"name":"Le procès de Jean Grey 3/6","site_detail_url":"https://comicvine.gamespot.com/x-men-16-le-proces-de-jean-grey-36/4000-467800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467569/","id":467569,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-29/4000-467569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467567/","id":467567,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-18/4000-467567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467227/","id":467227,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-x-force-demon-bear-1-tpb/4000-467227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467225/","id":467225,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/moon-knight-from-the-dead-1-volume-1/4000-467225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467221/","id":467221,"name":"Infamous","site_detail_url":"https://comicvine.gamespot.com/magneto-infamous-1-infamous/4000-467221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464887/","id":464887,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband-4/4000-464887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463479/","id":463479,"name":"Going Native, Part Four","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-9-going-native-part-four/4000-463479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462893/","id":462893,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-8/4000-462893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462887/","id":462887,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-7/4000-462887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462261/","id":462261,"name":"One Month To Die: The Last Wolverine Story Part Two of Three","site_detail_url":"https://comicvine.gamespot.com/wolverine-11-one-month-to-die-the-last-wolverine-s/4000-462261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462250/","id":462250,"name":"Original Sin","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-8-original-sin/4000-462250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462248/","id":462248,"name":"Out the Window","site_detail_url":"https://comicvine.gamespot.com/deadpool-33-out-the-window/4000-462248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462245/","id":462245,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-11/4000-462245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462244/","id":462244,"name":"Going Native Part Three","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-8-going-native-part-three/4000-462244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476422/","id":476422,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-6/4000-476422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499348/","id":499348,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-6/4000-499348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498904/","id":498904,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-44/4000-498904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470592/","id":470592,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-11/4000-470592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470587/","id":470587,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-vingadores-12/4000-470587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466455/","id":466455,"name":"Longshot","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-230-longshot/4000-466455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466453/","id":466453,"name":"Ultimo giorno di scuola","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-29-ultimo-giorno-di-scuola/4000-466453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466450/","id":466450,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-15/4000-466450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466090/","id":466090,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-vs-s-h-i-e-l-d-1-volume-4/4000-466090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465974/","id":465974,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-30/4000-465974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465381/","id":465381,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-by-brubaker-the-complete-collection/4000-465381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465335/","id":465335,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-one-down-1-volume-5/4000-465335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465221/","id":465221,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-17/4000-465221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465154/","id":465154,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-28/4000-465154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460974/","id":460974,"name":null,"site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-24/4000-460974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460971/","id":460971,"name":"Nothing Stops This Train","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-6-nothing-stops-this-train/4000-460971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460963/","id":460963,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-10/4000-460963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460311/","id":460311,"name":"Daddy/Daughter Day","site_detail_url":"https://comicvine.gamespot.com/deadpool-32-daddy-daughter-day/4000-460311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460310/","id":460310,"name":"","site_detail_url":"https://comicvine.gamespot.com/daredevil-6/4000-460310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460307/","id":460307,"name":"Death-Locked!, Part 1: the Inhumanity of Thomas Raymond","site_detail_url":"https://comicvine.gamespot.com/all-new-invaders-8-death-locked-part-1-the-inhuman/4000-460307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459685/","id":459685,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-23/4000-459685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459680/","id":459680,"name":"Karma Police","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-5-karma-police/4000-459680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459165/","id":459165,"name":"Going Native, Part Two","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-7-going-native-part-two/4000-459165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459161/","id":459161,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-29/4000-459161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459160/","id":459160,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-invaders-7/4000-459160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458704/","id":458704,"name":"The Secret History of Colonel Nicholas J. Fury","site_detail_url":"https://comicvine.gamespot.com/original-sin-5-the-secret-history-of-colonel-nicho/4000-458704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458619/","id":458619,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-6/4000-458619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476421/","id":476421,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-5/4000-476421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552382/","id":552382,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-28/4000-552382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539604/","id":539604,"name":"","site_detail_url":"https://comicvine.gamespot.com/inhumanos-3/4000-539604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499592/","id":499592,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-27/4000-499592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498903/","id":498903,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-43/4000-498903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497745/","id":497745,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-13/4000-497745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497661/","id":497661,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-13/4000-497661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465971/","id":465971,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-avengers-2/4000-465971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465962/","id":465962,"name":"","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores-11/4000-465962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465961/","id":465961,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-vingadores-11/4000-465961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465161/","id":465161,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-3/4000-465161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463860/","id":463860,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-10/4000-463860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463852/","id":463852,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-463852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463608/","id":463608,"name":"Attacco allo SHIELD","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-28-attacco-allo-shield/4000-463608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462903/","id":462903,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-bitter-march-1-volume-1/4000-462903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462571/","id":462571,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-4-v/4000-462571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462527/","id":462527,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-iron-nail-1-volume-4/4000-462527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462356/","id":462356,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-29/4000-462356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461929/","id":461929,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-27/4000-461929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461369/","id":461369,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-14/4000-461369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461368/","id":461368,"name":"Le sacrifice","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-14-le-sacrifice/4000-461368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460898/","id":460898,"name":"The Chase","site_detail_url":"https://comicvine.gamespot.com/marvels-agents-of-s-h-i-e-l-d-1-the-chase/4000-460898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456558/","id":456558,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-22/4000-456558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456030/","id":456030,"name":"The Nursery","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-4-the-nursery/4000-456030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456015/","id":456015,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-invaders-6/4000-456015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455490/","id":455490,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-5/4000-455490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455483/","id":455483,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-7/4000-455483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498902/","id":498902,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-42/4000-498902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497660/","id":497660,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-12/4000-497660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462355/","id":462355,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-28/4000-462355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461098/","id":461098,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-4/4000-461098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460903/","id":460903,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-vingadores-10/4000-460903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460625/","id":460625,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-wedding-of-deadpool-1-volume-5/4000-460625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459944/","id":459944,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-9/4000-459944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459319/","id":459319,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-12/4000-459319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459317/","id":459317,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-asombrosa-patrulla-x-6/4000-459317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458834/","id":458834,"name":"The Secret History of Colonel Nicholas J. Fury","site_detail_url":"https://comicvine.gamespot.com/original-sin-special-edition-5-the-secret-history-/4000-458834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458720/","id":458720,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-26/4000-458720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458718/","id":458718,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-15/4000-458718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458717/","id":458717,"name":"L'Homme le plus Recherché du Japon","site_detail_url":"https://comicvine.gamespot.com/wolverine-13-lhomme-le-plus-recherche-du-japon/4000-458717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458716/","id":458716,"name":"La mort dans ses yeux","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-13-la-mort-dans-ses-yeux/4000-458716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458715/","id":458715,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-13/4000-458715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456871/","id":456871,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-8/4000-456871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454110/","id":454110,"name":"The Bitter March Part 4","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-bitter-march-4-the-bitter-march/4000-454110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454108/","id":454108,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-26/4000-454108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454101/","id":454101,"name":"Part 2: The Queen in the Sky","site_detail_url":"https://comicvine.gamespot.com/inhuman-2-part-2-the-queen-in-the-sky/4000-454101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454095/","id":454095,"name":"The Honeymoon is Over","site_detail_url":"https://comicvine.gamespot.com/deadpool-29-the-honeymoon-is-over/4000-454095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453422/","id":453422,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-21/4000-453422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452857/","id":452857,"name":"Path of Least Resistance","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-3-path-of-least-resistance/4000-452857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452847/","id":452847,"name":"Descent Part Four","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-4-descent-part-four/4000-452847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452314/","id":452314,"name":"","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-1/4000-452314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452313/","id":452313,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-3/4000-452313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688590/","id":688590,"name":"Alien Anarchy!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-21-alien-anarchy/4000-688590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456868/","id":456868,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-universe-1/4000-456868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452073/","id":452073,"name":"Business Opportunities","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-free-comic-book-day-1-business-oppo/4000-452073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499590/","id":499590,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-25/4000-499590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498901/","id":498901,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-41/4000-498901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497743/","id":497743,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-11/4000-497743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466448/","id":466448,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-101/4000-466448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461105/","id":461105,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-14/4000-461105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457974/","id":457974,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-12-000-a-d-1-volume-2/4000-457974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457836/","id":457836,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-294/4000-457836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456878/","id":456878,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-vingadores-9/4000-456878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456877/","id":456877,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-48/4000-456877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456874/","id":456874,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-8/4000-456874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456865/","id":456865,"name":"Emancipazione","site_detail_url":"https://comicvine.gamespot.com/avengers-27-emancipazione/4000-456865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456827/","id":456827,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-world-a-i-m-pire-1-volume-1/4000-456827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456825/","id":456825,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-the-quest-for-nightcrawler-1-volume-/4000-456825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456163/","id":456163,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-5/4000-456163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455945/","id":455945,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-11/4000-455945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455826/","id":455826,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-omnibus-1-h/4000-455826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455823/","id":455823,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-humanity-bomb-1-volume-4/4000-455823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455304/","id":455304,"name":"Longshot sauve l'univers","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-12-longshot-sauve-lunivers/4000-455304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455303/","id":455303,"name":"Visite Guidée","site_detail_url":"https://comicvine.gamespot.com/wolverine-12-visite-guidee/4000-455303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455300/","id":455300,"name":"¡Contra S.H.I.E.L.D.!","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-25-contra-s-h-i-e-l-d/4000-455300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454033/","id":454033,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-11/4000-454033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451769/","id":451769,"name":"Who Shot the Hulk Part 2","site_detail_url":"https://comicvine.gamespot.com/hulk-2-who-shot-the-hulk-part-2/4000-451769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451767/","id":451767,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-5/4000-451767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451765/","id":451765,"name":"The Case","site_detail_url":"https://comicvine.gamespot.com/avengers-28-the-case/4000-451765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451087/","id":451087,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-25/4000-451087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451082/","id":451082,"name":"Bloodlines: Part One","site_detail_url":"https://comicvine.gamespot.com/elektra-1-bloodlines-part-one/4000-451082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450557/","id":450557,"name":"Uncanny X-Men vs. S.H.I.E.L.D. Part 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-20-uncanny-x-men-vs-s-h-i-e-l-d-part/4000-450557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450551/","id":450551,"name":"Who Shot the Hulk Part 1","site_detail_url":"https://comicvine.gamespot.com/hulk-1-who-shot-the-hulk-part-1/4000-450551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450549/","id":450549,"name":"All In the Family Part 1","site_detail_url":"https://comicvine.gamespot.com/amazing-x-men-6-all-in-the-family-part-1/4000-450549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450080/","id":450080,"name":"Save the Empire Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-2-save-the-empire-part-two-of-two/4000-450080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450073/","id":450073,"name":"The Wedding of Deadpool; Operation Ballerina Drop; #$%@-faced in Vegas; With This Hand, I Thee Wed; Continuity Spontinuity; The Niagara Bride; Fanged; Quickie; So Deadpool Walks Into a Bar...; Eulogy for a Winkie; There Will Be No Honeymoon; Savage Land:","site_detail_url":"https://comicvine.gamespot.com/deadpool-27-the-wedding-of-deadpool-operation-ball/4000-450073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450068/","id":450068,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-25/4000-450068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449594/","id":449594,"name":"","site_detail_url":"https://comicvine.gamespot.com/magneto-2/4000-449594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449592/","id":449592,"name":"Part 1: Genesis","site_detail_url":"https://comicvine.gamespot.com/inhuman-1-part-1-genesis/4000-449592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449589/","id":449589,"name":"The Iron Nail: Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-19-the-iron-nail-part-3/4000-449589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456123/","id":456123,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-32/4000-456123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453658/","id":453658,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-2/4000-453658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449680/","id":449680,"name":"","site_detail_url":"https://comicvine.gamespot.com/what-if-age-of-ultron-1/4000-449680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498897/","id":498897,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-40/4000-498897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498548/","id":498548,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-1/4000-498548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497742/","id":497742,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-10/4000-497742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497658/","id":497658,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-10/4000-497658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455900/","id":455900,"name":"Ultimate Comics: Cataclismo","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-25-ultimate-comics-cataclismo/4000-455900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454368/","id":454368,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-1-hc-tpb/4000-454368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454367/","id":454367,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-the-forgeries-of-jealousy-1-volu/4000-454367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454250/","id":454250,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-47/4000-454250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454249/","id":454249,"name":"","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores-8/4000-454249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454248/","id":454248,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-vingadores-8/4000-454248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454037/","id":454037,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-293/4000-454037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453890/","id":453890,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-genese-mutante-2-volume-2/4000-453890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453654/","id":453654,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-1-tpb/4000-453654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453653/","id":453653,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-deadpool-vs-s-h-i-e-l-d-1-volume-4/4000-453653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453650/","id":453650,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-2-/4000-453650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453640/","id":453640,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-453640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453320/","id":453320,"name":"Iniziazione","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-287-iniziazione/4000-453320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453295/","id":453295,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-4/4000-453295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453115/","id":453115,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-2-vo/4000-453115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453056/","id":453056,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-13/4000-453056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452955/","id":452955,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-26/4000-452955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452588/","id":452588,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-infinity-1/4000-452588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452539/","id":452539,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-good-the-bad-the-inhuman-1-volum/4000-452539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452444/","id":452444,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-who-am-i-3/4000-452444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452229/","id":452229,"name":"Secrets et Mensonges","site_detail_url":"https://comicvine.gamespot.com/wolverine-11-secrets-et-mensonges/4000-452229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451853/","id":451853,"name":"A la recherche de Diablo","site_detail_url":"https://comicvine.gamespot.com/x-men-11-a-la-recherche-de-diablo/4000-451853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448980/","id":448980,"name":"The Funeral for President Steve Rogers... Captain America","site_detail_url":"https://comicvine.gamespot.com/survive-1-the-funeral-for-president-steve-rogers-c/4000-448980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448975/","id":448975,"name":"No More Heroes","site_detail_url":"https://comicvine.gamespot.com/revolutionary-war-omega-1-no-more-heroes/4000-448975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448969/","id":448969,"name":"Humanity Bomb Conclusion","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-20-humanity-bomb-conclusion/4000-448969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448006/","id":448006,"name":".NOW Uncanny X-Men vs. S.H.I.E.L.D. Part 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-19-now-uncanny-x-men-vs-s-h-i-e-l-d-/4000-448006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447514/","id":447514,"name":"Save the Empire Part One of Two","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-1-save-the-empire-part-one-of-two/4000-447514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447508/","id":447508,"name":".NOW Deadpool vs. S.H.I.E.L.D. Part 5.NOW","site_detail_url":"https://comicvine.gamespot.com/deadpool-25-now-deadpool-vs-s-h-i-e-l-d-part-5-now/4000-447508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447505/","id":447505,"name":"Descent Part One","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-1-descent-part-one/4000-447505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446990/","id":446990,"name":"The Iron Nail: Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-18-the-iron-nail-part-2/4000-446990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446989/","id":446989,"name":"Initiate: Chapter 10","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-10-initiate-chapter-10/4000-446989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446926/","id":446926,"name":"Slasher","site_detail_url":"https://comicvine.gamespot.com/moon-knight-1-slasher/4000-446926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452797/","id":452797,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-97/4000-452797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451700/","id":451700,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-31/4000-451700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451695/","id":451695,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-1/4000-451695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451858/","id":451858,"name":"X-Men: La battaglia dell'atomo omega","site_detail_url":"https://comicvine.gamespot.com/marvel-world-22-x-men-la-battaglia-dellatomo-omega/4000-451858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447997/","id":447997,"name":"Transform Four of Four","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-hulk-4-transform-four-of-four/4000-447997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558854/","id":558854,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-20/4000-558854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499588/","id":499588,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-23/4000-499588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498896/","id":498896,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-39/4000-498896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497741/","id":497741,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-9/4000-497741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453294/","id":453294,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-453294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452018/","id":452018,"name":"Volume Eight","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-8-volume-ei/4000-452018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451856/","id":451856,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-24/4000-451856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451185/","id":451185,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales-1/4000-451185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451182/","id":451182,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1/4000-451182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450348/","id":450348,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12/4000-450348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450328/","id":450328,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-25/4000-450328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450327/","id":450327,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers-12/4000-450327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450324/","id":450324,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-46/4000-450324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450289/","id":450289,"name":"Volume 18","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-fall-from-grace-1-volume/4000-450289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450288/","id":450288,"name":"Loose Nuke","site_detail_url":"https://comicvine.gamespot.com/captain-america-loose-nuke-1-loose-nuke/4000-450288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449906/","id":449906,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-96/4000-449906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449867/","id":449867,"name":"Soupçons","site_detail_url":"https://comicvine.gamespot.com/wolverine-10-soupcons/4000-449867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446489/","id":446489,"name":"Mission 016: How To MA.I.M. A Mockingbird, Conclusion","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-16-mission-016-how-to-ma-i-m-a-moc/4000-446489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446479/","id":446479,"name":"Deadpool vs. S.H.I.E.L.D. Part 4","site_detail_url":"https://comicvine.gamespot.com/deadpool-24-deadpool-vs-s-h-i-e-l-d-part-4/4000-446479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446478/","id":446478,"name":"Part Five","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-5-part-five/4000-446478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445810/","id":445810,"name":"The Iron Nail: Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-17-the-iron-nail-part-1/4000-445810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445186/","id":445186,"name":"The Bitter March, Part 1","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-bitter-march-1-the-bitter-march/4000-445186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445185/","id":445185,"name":".NOW The Last Days of Midgard Part One","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder-19-now-the-last-days-of-midgar/4000-445185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445182/","id":445182,"name":"Mission 015: How To MA.I.M. A Mockingbird, Part Four of Five","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-15-mission-015-how-to-ma-i-m-a-moc/4000-445182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445177/","id":445177,"name":"Deadpool vs. S.H.I.E.L.D. Part 3","site_detail_url":"https://comicvine.gamespot.com/deadpool-23-deadpool-vs-s-h-i-e-l-d-part-3/4000-445177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449510/","id":449510,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-30/4000-449510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450290/","id":450290,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/infinity-companion-1-hc/4000-450290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449873/","id":449873,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-6/4000-449873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449872/","id":449872,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-23/4000-449872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449866/","id":449866,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-10/4000-449866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449727/","id":449727,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-4/4000-449727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449726/","id":449726,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-6/4000-449726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449682/","id":449682,"name":"LA BATAILLE DE L'ATOME (2/2)","site_detail_url":"https://comicvine.gamespot.com/x-men-10-la-bataille-de-l-atome-2-2/4000-449682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448876/","id":448876,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-9/4000-448876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448263/","id":448263,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-9/4000-448263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513235/","id":513235,"name":"","site_detail_url":"https://comicvine.gamespot.com/podersos-vengadores-4/4000-513235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499587/","id":499587,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-22/4000-499587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498895/","id":498895,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-38/4000-498895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497740/","id":497740,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-8/4000-497740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497656/","id":497656,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-8/4000-497656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455662/","id":455662,"name":"Sombra Vermelha","site_detail_url":"https://comicvine.gamespot.com/vingadores-x-1-sombra-vermelha/4000-455662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453668/","id":453668,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-genese-mutante-1-volume-1/4000-453668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447239/","id":447239,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-falcon-1-tpb/4000-447239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446630/","id":446630,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-by-craig-kyle-chris-yost-1-volume-1/4000-446630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444760/","id":444760,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/infinity-1-hc/4000-444760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443980/","id":443980,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-4-part-four/4000-443980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443979/","id":443979,"name":".INH Does Whatever a Wolverine Can!","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-23-inh-does-whatever-a-wolverine/4000-443979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442929/","id":442929,"name":"The Wolverine School for Gifted Youngsters Part Three: JGS Forever","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-40-the-wolverine-school-fo/4000-442929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442917/","id":442917,"name":"Loose Nuke Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-15-loose-nuke-part-5/4000-442917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442914/","id":442914,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-world-2/4000-442914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442913/","id":442913,"name":"Carve A Hole ... Climb Inside","site_detail_url":"https://comicvine.gamespot.com/avengers-25-carve-a-hole-climb-inside/4000-442913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442174/","id":442174,"name":"Mission 014: How To MA.I.M. A Mockingbird, Part Three of Five","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-14-mission-014-how-to-ma-i-m-a-moc/4000-442174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441421/","id":441421,"name":"Killable Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-13-killable-conclusion/4000-441421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441419/","id":441419,"name":"Revolutionary War Part One: Tramp the Dirt Down","site_detail_url":"https://comicvine.gamespot.com/revolutionary-war-alpha-1-revolutionary-war-part-o/4000-441419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441412/","id":441412,"name":"Deadpool vs. S.H.I.E.L.D. Part 2","site_detail_url":"https://comicvine.gamespot.com/deadpool-22-deadpool-vs-s-h-i-e-l-d-part-2/4000-441412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441409/","id":441409,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-3-part-three/4000-441409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441406/","id":441406,"name":"Trouble Map","site_detail_url":"https://comicvine.gamespot.com/avengers-world-1-trouble-map/4000-441406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441405/","id":441405,"name":".NOW Initiate: Chapter 8","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-8-now-initiate-chapter-8/4000-441405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441403/","id":441403,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-marvel-now-point-one-1/4000-441403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437494/","id":437494,"name":"Mission 013: How To MA.I.M. A Mockingbird, Part Two of Five","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-13-mission-013-how-to-ma-i-m-a-moc/4000-437494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437488/","id":437488,"name":"Deadpool vs. S.H.I.E.L.D. Part 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-21-deadpool-vs-s-h-i-e-l-d-part-1/4000-437488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435585/","id":435585,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-3-part-three/4000-435585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449902/","id":449902,"name":"Пределы Земли. Часть 3. Песочница; Пределы Земли. Часть 4. Глобальная угроза!","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-27-priediely-ziemli-chas/4000-449902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449874/","id":449874,"name":"","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores-6/4000-449874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449070/","id":449070,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-avengers-1/4000-449070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448244/","id":448244,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-vingadores-6/4000-448244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448139/","id":448139,"name":"La Battaglia dell'atomo : capitolo 3","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-285-la-battaglia-dell-atomo-/4000-448139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447800/","id":447800,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-killable-1-volume-2/4000-447800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447793/","id":447793,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/avengers-absolute-vision-2-book-2/4000-447793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447618/","id":447618,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-22/4000-447618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447614/","id":447614,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-5/4000-447614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447229/","id":447229,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-5/4000-447229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447228/","id":447228,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-3/4000-447228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446928/","id":446928,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-446928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446895/","id":446895,"name":"LA BATAILLE DE L'ATOME (1/2)","site_detail_url":"https://comicvine.gamespot.com/x-men-9-la-bataille-de-l-atome-1-2/4000-446895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445284/","id":445284,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-8/4000-445284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445283/","id":445283,"name":"Feuertaufe","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-2-feuertaufe/4000-445283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444097/","id":444097,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-winter-soldier-1/4000-444097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442169/","id":442169,"name":"変身 Two of Four","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-hulk-2-cha-two-of-four/4000-442169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442163/","id":442163,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-comics-the-ultimates-3-part-thr/4000-442163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441410/","id":441410,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-3-part-three/4000-441410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499586/","id":499586,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-21/4000-499586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498894/","id":498894,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-37/4000-498894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498678/","id":498678,"name":"Spiderman 24: Ultimatum","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-52-spiderman-24-ultimatum/4000-498678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497739/","id":497739,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-7/4000-497739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497730/","id":497730,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger-10/4000-497730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446628/","id":446628,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/superior-foes-of-spider-man-getting-the-band-back-/4000-446628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444631/","id":444631,"name":"La Saga des Damnés","site_detail_url":"https://comicvine.gamespot.com/wolverine-8-la-saga-des-damnes/4000-444631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436210/","id":436210,"name":"The Wolverine School for Gifted Youngsters Part Two: Old Friends and Enemies","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-39-the-wolverine-school-fo/4000-436210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436209/","id":436209,"name":"Killable Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-12-killable-part-5-of-6/4000-436209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436192/","id":436192,"name":"Initiate: Chapter 7","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-7-initiate-chapter-7/4000-436192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436189/","id":436189,"name":"Doctor Strange + The Beast; Captain America + Cyclops: Part 3","site_detail_url":"https://comicvine.gamespot.com/a-x-15-doctor-strange-the-beast-captain-america-cy/4000-436189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435588/","id":435588,"name":"Mission 012: How To MA.I.M. A Mockingbird, Part One of Five","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-12-mission-012-how-to-ma-i-m-a-moc/4000-435588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446626/","id":446626,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-iliad-1-volume-2/4000-446626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445892/","id":445892,"name":"L'attacco della sentinella","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-284-l-attacco-della-sentinel/4000-445892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445653/","id":445653,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-7/4000-445653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445394/","id":445394,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-44/4000-445394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445340/","id":445340,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers-10/4000-445340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445339/","id":445339,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-290/4000-445339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445274/","id":445274,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-21/4000-445274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445012/","id":445012,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-4/4000-445012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445011/","id":445011,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-2/4000-445011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444765/","id":444765,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10/4000-444765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444759/","id":444759,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan-1-volume-1/4000-444759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444630/","id":444630,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-8/4000-444630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444629/","id":444629,"name":"Blockbuster","site_detail_url":"https://comicvine.gamespot.com/x-men-8-blockbuster/4000-444629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444229/","id":444229,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-7/4000-444229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443335/","id":443335,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-x-2/4000-443335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441672/","id":441672,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-7/4000-441672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441414/","id":441414,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/infinity-heist-4-part-4/4000-441414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436204/","id":436204,"name":null,"site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-4/4000-436204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436197/","id":436197,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-2-part-two/4000-436197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435582/","id":435582,"name":"Journey Into Science","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-annual-1-journey-into-science/4000-435582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498893/","id":498893,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-36/4000-498893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498676/","id":498676,"name":"Spiderman 23: La Guerra De Los Simbiontes","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-50-spiderman-23-la-guerra-d/4000-498676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497738/","id":497738,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-6/4000-497738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497654/","id":497654,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-6/4000-497654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443383/","id":443383,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-by-peter-david-the-complete-collection-1-/4000-443383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435576/","id":435576,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-2-part-two/4000-435576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435069/","id":435069,"name":"The Wolverine School for Gifted Youngsters Part One: The Day S.H.I.E.L.D. Showed up","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-38-the-wolverine-school-fo/4000-435069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435054/","id":435054,"name":"Humanity Bomb, Part One: Prelude","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-16-humanity-bomb-part-one-prel/4000-435054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435048/","id":435048,"name":"Boss Level Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-18-boss-level-part-5-of-5/4000-435048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433852/","id":433852,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-14/4000-433852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433848/","id":433848,"name":"Mission 011: Brooklyn, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-11-mission-011-brooklyn-pt-2/4000-433848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433847/","id":433847,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-2-part-two/4000-433847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433846/","id":433846,"name":"Agent of T.I.M.E., Part Five","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-15-agent-of-t-i-m-e-part-five/4000-433846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433843/","id":433843,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimates-1-part-one/4000-433843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433841/","id":433841,"name":"Initiate: Chapter 6","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-6-initiate-chapter-6/4000-433841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432332/","id":432332,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe-1-part-one/4000-432332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432323/","id":432323,"name":"Loose Nuke Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-13-loose-nuke-part-3/4000-432323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442309/","id":442309,"name":"Cardiac Arrest!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-7-cardiac-arrest/4000-442309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440046/","id":440046,"name":"On Trial!","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-6-on-trial/4000-440046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436006/","id":436006,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-53/4000-436006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448290/","id":448290,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-9/4000-448290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444766/","id":444766,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-9/4000-444766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444092/","id":444092,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-289/4000-444092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443380/","id":443380,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-s-m-a-s-h-time-1-volume-3/4000-443380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443009/","id":443009,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-283/4000-443009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443007/","id":443007,"name":"La corruzione di Jean Grey","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-8-la-corruzione-di-jean-grey/4000-443007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442429/","id":442429,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-boss-level-1-volume-3/4000-442429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442261/","id":442261,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-43/4000-442261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442259/","id":442259,"name":"WHAT IF? AVX","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-20-what-if-avx/4000-442259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442257/","id":442257,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers-9/4000-442257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442256/","id":442256,"name":"La batalla del átomo Capítulos 9 y 10","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-20-la-batalla-del-atomo-ca/4000-442256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441870/","id":441870,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-battle-of-the-atom-1-hc/4000-441870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441869/","id":441869,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-friendly-fire-1-tpb/4000-441869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441340/","id":441340,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-3/4000-441340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441339/","id":441339,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-1/4000-441339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441177/","id":441177,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-7/4000-441177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441176/","id":441176,"name":"Nouveau Mutant","site_detail_url":"https://comicvine.gamespot.com/x-men-7-nouveau-mutant/4000-441176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438280/","id":438280,"name":null,"site_detail_url":"https://comicvine.gamespot.com/all-new-marvel-now-previews-1/4000-438280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433850/","id":433850,"name":"The \"Superior\" Six: Part 2","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up-6-the-superior-six-par/4000-433850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433170/","id":433170,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man-1-part-one/4000-433170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432326/","id":432326,"name":"Cataclysm Part One","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand-1-cataclysm-par/4000-432326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499584/","id":499584,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-19/4000-499584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498891/","id":498891,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-35/4000-498891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497653/","id":497653,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-5/4000-497653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451440/","id":451440,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-8/4000-451440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435792/","id":435792,"name":"La noyade de Logan","site_detail_url":"https://comicvine.gamespot.com/wolverine-6-la-noyade-de-logan/4000-435792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431449/","id":431449,"name":"Battle of the Atom Chapter 10","site_detail_url":"https://comicvine.gamespot.com/x-men-battle-of-the-atom-2-battle-of-the-atom-chap/4000-431449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431436/","id":431436,"name":"Initiate: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-5-initiate-chapter-5/4000-431436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430768/","id":430768,"name":"Battle of the Atom Chapter 9","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-37-battle-of-the-atom-chapter-/4000-430768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430765/","id":430765,"name":"Spider-Man No More, Part 6; Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-28-spider-man-no-more-p/4000-430765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430761/","id":430761,"name":"Mission 010: Brooklyn","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-10-mission-010-brooklyn/4000-430761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428862/","id":428862,"name":"The Arms of The Octopus, Part 2 of 3: For a Friend Whose Work Has Come to Triumph","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-special-1-the-arms-of-the-octo/4000-428862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428854/","id":428854,"name":"Captain America + Cyclops: Part 1; Black Widow + Emma Frost: Crash & Burn in Black & White!","site_detail_url":"https://comicvine.gamespot.com/a-x-13-captain-america-cyclops-part-1-black-widow-/4000-428854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428303/","id":428303,"name":"Killable Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-10-killable-part-3-of-6/4000-428303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428292/","id":428292,"name":"Initiate: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-4-initiate-chapter-4/4000-428292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427867/","id":427867,"name":"OGN","site_detail_url":"https://comicvine.gamespot.com/avengers-endless-wartime-1-ogn/4000-427867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427683/","id":427683,"name":"The Arms of The Octopus, Part 1 of 3: Elegy in the Classroom","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-special-1-the-arms-of-the-octopus-pa/4000-427683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427682/","id":427682,"name":"Battle of the Atom Chapter 6","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-17-battle-of-the-atom-chapter-6/4000-427682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410133/","id":410133,"name":"Transformation and Triumph","site_detail_url":"https://comicvine.gamespot.com/captain-america-transformation-and-triumph-1-trans/4000-410133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497683/","id":497683,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/was-ware-wenn-avx-1-sc/4000-497683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433058/","id":433058,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-52/4000-433058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448216/","id":448216,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-complete-collection-1-v/4000-448216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444767/","id":444767,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-444767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444669/","id":444669,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-5/4000-444669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441670/","id":441670,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-5/4000-441670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440815/","id":440815,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-human-after-all-1-volume-1/4000-440815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438646/","id":438646,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-2/4000-438646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438629/","id":438629,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-20/4000-438629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437761/","id":437761,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-225/4000-437761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437739/","id":437739,"name":"GLI INCREDIBILI X-MEN 4 MARVEL NOW!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-282-gli-incredibili-x-men-4-/4000-437739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436376/","id":436376,"name":"La batalla del átomo Capítulo 4","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-19-la-batalla-del-atomo-ca/4000-436376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433749/","id":433749,"name":"Die neue Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1-die-neue-revolution/4000-433749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433748/","id":433748,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-5/4000-433748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428863/","id":428863,"name":"Venomous","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-19-venomous/4000-428863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427691/","id":427691,"name":"The Avengers Protocol; The Real Heroes","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-1-the-avengers-protocol-the-real/4000-427691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427684/","id":427684,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-living-legend-1/4000-427684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-539345/","id":539345,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinito-1/4000-539345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499583/","id":499583,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-18/4000-499583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498672/","id":498672,"name":"Spiderman 21: Muerte De Un Duende","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-46-spiderman-21-muerte-de-u/4000-498672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497736/","id":497736,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-4/4000-497736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497652/","id":497652,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-4/4000-497652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451439/","id":451439,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-7/4000-451439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435247/","id":435247,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/avengers-absolute-vision-1-book-1/4000-435247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433925/","id":433925,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-10/4000-433925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433432/","id":433432,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hulk-by-jeph-loeb-1-vol-1/4000-433432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432501/","id":432501,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/hawkeye-1-vol-1/4000-432501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432445/","id":432445,"name":"L'ére d'Ultron : Sur la route","site_detail_url":"https://comicvine.gamespot.com/wolverine-5-lere-dultron-sur-la-route/4000-432445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425944/","id":425944,"name":"Battle of the Atom Chapter 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12-battle-of-the-atom-chapter-4/4000-425944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425938/","id":425938,"name":"Mission 009: Lexington","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-9-mission-009-lexington/4000-425938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425028/","id":425028,"name":"Agent of T.I.M.E., Part Three","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-13-agent-of-t-i-m-e-part-three/4000-425028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425024/","id":425024,"name":"Loose Nuke Part 1; A Fire in the Rain","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-loose-nuke-part-1-a-fire-in-the/4000-425024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424529/","id":424529,"name":"Initiate: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-3-initiate-chapter-3/4000-424529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433971/","id":433971,"name":"Мстители: кто они?; Мстители, к бою!","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-21-mstitieli-kto-oni-mstitiel/4000-433971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448288/","id":448288,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-7/4000-448288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437071/","id":437071,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-287/4000-437071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436662/","id":436662,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers-7/4000-436662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435159/","id":435159,"name":"","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores-2/4000-435159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433960/","id":433960,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/a-x-a-x-amazing-1-volume-2/4000-433960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433924/","id":433924,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-9/4000-433924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433289/","id":433289,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-1/4000-433289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433286/","id":433286,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-18/4000-433286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432504/","id":432504,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-broken-1-volume-2/4000-432504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432447/","id":432447,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-5/4000-432447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432446/","id":432446,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-6/4000-432446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432442/","id":432442,"name":"Choisis ton camp","site_detail_url":"https://comicvine.gamespot.com/x-men-5-choisis-ton-camp/4000-432442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432321/","id":432321,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/agents-of-s-h-i-e-l-d-1-tpb/4000-432321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499582/","id":499582,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-17/4000-499582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498888/","id":498888,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-33/4000-498888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497735/","id":497735,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-3/4000-497735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497651/","id":497651,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-3/4000-497651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450441/","id":450441,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-3/4000-450441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430960/","id":430960,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-40/4000-430960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427803/","id":427803,"name":"Stage de Survie","site_detail_url":"https://comicvine.gamespot.com/wolverine-4-stage-de-survie/4000-427803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423684/","id":423684,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-423684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423681/","id":423681,"name":"Once Upon a Time in Midgard","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder-12-once-upon-a-time-in-midgard/4000-423681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421700/","id":421700,"name":"Killable Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-8-killable-part-1-of-6/4000-421700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421699/","id":421699,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10/4000-421699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421691/","id":421691,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity-1-infinity/4000-421691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421687/","id":421687,"name":"The Devil's Greatest Trick","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-13-the-devil-s-greatest-trick/4000-421687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420633/","id":420633,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-15/4000-420633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444769/","id":444769,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6/4000-444769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437070/","id":437070,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-286/4000-437070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433920/","id":433920,"name":"GLI INCREDIBILI X-MEN 3 MARVEL NOW!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-281-gli-incredibili-x-men-3-/4000-433920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431729/","id":431729,"name":"","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores-1/4000-431729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430916/","id":430916,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-the-apocalypse-twins-1-volume-2/4000-430916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428960/","id":428960,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-5/4000-428960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428426/","id":428426,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-armored-vengeance-1-tpb/4000-428426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428382/","id":428382,"name":"La Hermandad","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-la-hermandad/4000-428382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428380/","id":428380,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-17/4000-428380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428376/","id":428376,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-4/4000-428376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427973/","id":427973,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-6/4000-427973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427802/","id":427802,"name":"Quand je serai grand","site_detail_url":"https://comicvine.gamespot.com/x-men-4-quand-je-serai-grand/4000-427802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421694/","id":421694,"name":"Mission 007: Iliad, Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-7-mission-007-iliad-part-2/4000-421694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420635/","id":420635,"name":"Initiate: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-2-initiate-chapter-2/4000-420635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499581/","id":499581,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-16/4000-499581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498887/","id":498887,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-32/4000-498887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498668/","id":498668,"name":"Spiderman 19: La Saga Del Clon","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-42-spiderman-19-la-saga-del/4000-498668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497734/","id":497734,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-2/4000-497734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497650/","id":497650,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-2/4000-497650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451437/","id":451437,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-5/4000-451437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450442/","id":450442,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-2/4000-450442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427163/","id":427163,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/red-she-hulk-route-616-1-volume-2/4000-427163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426111/","id":426111,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-the-enemy-within-1-volume/4000-426111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425196/","id":425196,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-iron-man-first-sign-1-tpb/4000-425196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425180/","id":425180,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-gods-and-monster-1-volume-2/4000-425180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424646/","id":424646,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-3/4000-424646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424644/","id":424644,"name":"Joies et Déconvenues","site_detail_url":"https://comicvine.gamespot.com/wolverine-3-joies-et-deconvenues/4000-424644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419970/","id":419970,"name":"Agent of T.I.M.E., Part One","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-11-agent-of-t-i-m-e-part-one/4000-419970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417830/","id":417830,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-14/4000-417830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416948/","id":416948,"name":"Drowning Logan Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/wolverine-6-drowning-logan-part-two-of-two/4000-416948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416944/","id":416944,"name":"Blind Rage: Part Two","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-10-blind-rage-part-two/4000-416944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415241/","id":415241,"name":"The Superior Foes of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-1-the-superior-foe/4000-415241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415234/","id":415234,"name":"Initiate: Chapter 1","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i-1-initiate-chapter-1/4000-415234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416917/","id":416917,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-416917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444770/","id":444770,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-444770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432261/","id":432261,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-9/4000-432261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428379/","id":428379,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-7/4000-428379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427165/","id":427165,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-avx-1-tpb/4000-427165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426310/","id":426310,"name":"GLI INCREDIBILI X-MEN 1 MARVEL NOW!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-279-gli-incredibili-x-men-1-/4000-426310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426106/","id":426106,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-out-of-their-depths-1-volume-3/4000-426106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425301/","id":425301,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/shield-by-steranko-the-complete-collection-1-tpb/4000-425301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425300/","id":425300,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-kurt-busiek-and-sean-chen-omnibus-1-hc/4000-425300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425193/","id":425193,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-9-volume-9/4000-425193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424819/","id":424819,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-16/4000-424819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424645/","id":424645,"name":"Le dernier chant","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-3-le-dernier-chant/4000-424645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420231/","id":420231,"name":"And to All a Good Night","site_detail_url":"https://comicvine.gamespot.com/black-bolt-something-inhuman-this-way-comes-1-and-/4000-420231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419973/","id":419973,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-9/4000-419973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417831/","id":417831,"name":"To The End; Prelude to Infinity","site_detail_url":"https://comicvine.gamespot.com/avengers-16-to-the-end-prelude-to-infinity/4000-417831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416945/","id":416945,"name":"Mission 006: Iliad, Part 1","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-6-mission-006-iliad-part-1/4000-416945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415244/","id":415244,"name":"Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/what-if-avx-1-part-1-of-4/4000-415244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415233/","id":415233,"name":"Sent and Received; Prelude to Infinity","site_detail_url":"https://comicvine.gamespot.com/avengers-15-sent-and-received-prelude-to-infinity/4000-415233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499580/","id":499580,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-15/4000-499580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498886/","id":498886,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-31/4000-498886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498664/","id":498664,"name":"Spiderman 17: Marta Plateada","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-38-spiderman-17-marta-plate/4000-498664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497733/","id":497733,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk-1/4000-497733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497649/","id":497649,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-1/4000-497649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423960/","id":423960,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-16/4000-423960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422597/","id":422597,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-38/4000-422597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422383/","id":422383,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-4/4000-422383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413670/","id":413670,"name":"Drowning Logan Part One of Two","site_detail_url":"https://comicvine.gamespot.com/wolverine-5-drowning-logan-part-one-of-two/4000-413670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413662/","id":413662,"name":"Exclusive","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-15-exclusive/4000-413662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411836/","id":411836,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-9/4000-411836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411829/","id":411829,"name":"Blind Rage: Part One","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-9-blind-rage-part-one/4000-411829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411825/","id":411825,"name":"The Signal; Prelude to Infinity","site_detail_url":"https://comicvine.gamespot.com/avengers-14-the-signal-prelude-to-infinity/4000-411825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410326/","id":410326,"name":"Hunting Season, Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-4-hunting-season-part-4-of-4/4000-410326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420563/","id":420563,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-87/4000-420563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421612/","id":421612,"name":"Der Mandarin kommt!; Versammlungsrecht; Im Visier des Grey Gargoyle; Die schlausten Helden der Welt; Kennst du schon den mit Scorpio?; König Salomons Frösche; Der mächtigste Wettkampf der Welt!; Mein Abendessen mit HYDRA; Die Schlangenkrone","site_detail_url":"https://comicvine.gamespot.com/die-avengers-tv-comic-1-der-mandarin-kommt-versamm/4000-421612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423248/","id":423248,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-88/4000-423248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437068/","id":437068,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-284/4000-437068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423829/","id":423829,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-reverie-1-volume-1/4000-423829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423789/","id":423789,"name":"X-Men: A Queda dos Mutantes Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-a-queda-dos-mutantes-1-x-men-a-queda-dos-mut/4000-423789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422602/","id":422602,"name":"X-Force : vecchi fantasmi","site_detail_url":"https://comicvine.gamespot.com/100-marvel-bestorce-x-force-2-x-force-vecchi-fanta/4000-422602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422382/","id":422382,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-15/4000-422382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422118/","id":422118,"name":"X-MEN FOREVER 5","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-84-x-men-forever-5/4000-422118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422114/","id":422114,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-97/4000-422114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421839/","id":421839,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-hunting-season-1-volume-1/4000-421839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420921/","id":420921,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-electric-ghost-1-volume-4/4000-420921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420918/","id":420918,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson-1-volume-1/4000-420918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420564/","id":420564,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-2/4000-420564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413666/","id":413666,"name":"Mission 005: Barbuda","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-5-mission-005-barbuda/4000-413666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410589/","id":410589,"name":"Neue Einigkeit","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1-neue-einigkeit/4000-410589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409223/","id":409223,"name":"Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/marvel-s-thor-the-dark-world-prelude-1-part-1-of-2/4000-409223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499579/","id":499579,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-14/4000-499579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498885/","id":498885,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-30/4000-498885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418924/","id":418924,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-8/4000-418924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418907/","id":418907,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-37/4000-418907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417935/","id":417935,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-15/4000-417935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417075/","id":417075,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-3/4000-417075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406975/","id":406975,"name":"Gods and Monster, Part 3; Conclusion","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-8-gods-and-monster-part-3-conc/4000-406975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404700/","id":404700,"name":"Why I Hate Gym","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-14-why-i-hate-gym/4000-404700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401214/","id":401214,"name":"Hunting Season, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-3-hunting-season-part-3-of-4/4000-401214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400147/","id":400147,"name":"Gods and Monster, Part 2","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-7-gods-and-monster-part-2/4000-400147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415611/","id":415611,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-now-omnibus-1-hc/4000-415611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416783/","id":416783,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-1/4000-416783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450810/","id":450810,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-18/4000-450810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418926/","id":418926,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-42/4000-418926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417933/","id":417933,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-139/4000-417933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417207/","id":417207,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-the-last-white-event-1-volume-2/4000-417207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404705/","id":404705,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6/4000-404705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416778/","id":416778,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-2/4000-416778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416773/","id":416773,"name":"Une nouvelle Révolution","site_detail_url":"https://comicvine.gamespot.com/x-men-1-une-nouvelle-revolution/4000-416773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400155/","id":400155,"name":"The Phantom Limb Technique","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-18-the-phantom-limb-technique/4000-400155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415616/","id":415616,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus-1-hc/4000-415616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437067/","id":437067,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-283/4000-437067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417986/","id":417986,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection-1-v/4000-417986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416781/","id":416781,"name":"Sauvage","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-1-sauvage/4000-416781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415614/","id":415614,"name":"Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-revolution-1-revolution/4000-415614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406971/","id":406971,"name":"The Chameleon Sanction Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-21-the-chameleon-sanction-part/4000-406971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404698/","id":404698,"name":"Hammered!","site_detail_url":"https://comicvine.gamespot.com/iron-man-258-3-hammered/4000-404698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401209/","id":401209,"name":"Mission 004: Tehran","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-4-mission-004-tehran/4000-401209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401204/","id":401204,"name":"The Chameleon Sanction Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man-20-the-chameleon-sanction-part/4000-401204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498884/","id":498884,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-29/4000-498884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498660/","id":498660,"name":"Spiderman 15: El Duende","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-34-spiderman-15-el-duende/4000-498660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414129/","id":414129,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-from-the-marvel-uk-vaults-1-tpb/4000-414129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398988/","id":398988,"name":"Flight of the Iron-Spider","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-13-flight-of-the-iron-spider/4000-398988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398979/","id":398979,"name":"Validator","site_detail_url":"https://comicvine.gamespot.com/avengers-10-validator/4000-398979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395702/","id":395702,"name":"Gods and Monster, Part 1","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-6-gods-and-monster-part-1/4000-395702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395700/","id":395700,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-10/4000-395700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395196/","id":395196,"name":"Unidos resistimos Final","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-14-unidos-resistimos-final/4000-395196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396433/","id":396433,"name":"Reconstruction, Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-23-reconstruction-part-5/4000-396433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398994/","id":398994,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-398994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397554/","id":397554,"name":"Age of Ultron: Road Trip","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-27au-age-of-ultron-road-tr/4000-397554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-405531/","id":405531,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-19/4000-405531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410517/","id":410517,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-13/4000-410517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414105/","id":414105,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-humphries-1-volume-1/4000-414105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412216/","id":412216,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-the-future-1-volume-11/4000-412216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410921/","id":410921,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-cuts-1-tpb/4000-410921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410916/","id":410916,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-7-volume-7/4000-410916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410131/","id":410131,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-9/4000-410131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409102/","id":409102,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1/4000-409102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398993/","id":398993,"name":"The Apocalypse Twins, Part 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-7-the-apocalypse-twins-part-2/4000-398993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398978/","id":398978,"name":"Iron Man + The Beast; The Mighty Thor + Iceman","site_detail_url":"https://comicvine.gamespot.com/a-x-7-iron-man-the-beast-the-mighty-thor-iceman/4000-398978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397552/","id":397552,"name":"Legacies Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-wolverine-3-legacies-part-3/4000-397552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396430/","id":396430,"name":"Mission 003: Arlington","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-3-mission-003-arlington/4000-396430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540199/","id":540199,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-28/4000-540199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538813/","id":538813,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-27/4000-538813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499577/","id":499577,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-12/4000-499577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498883/","id":498883,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-28/4000-498883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498659/","id":498659,"name":"Fantastic Four 5: Los 4 Terribles","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-33-fantastic-four-5-los-4-t/4000-498659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406379/","id":406379,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-7/4000-406379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402621/","id":402621,"name":"Agent of S.H.I.E.L.D. ","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-agent-of-shield-1-agent-of-shi/4000-402621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401362/","id":401362,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-7-volume-seven/4000-401362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400882/","id":400882,"name":"","site_detail_url":"https://comicvine.gamespot.com/infinity-1/4000-400882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400241/","id":400241,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-war-machine-hands-of-the-mandarin-1-tpb/4000-400241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395252/","id":395252,"name":"Space Oddities; With Great Power Comes Many Responisbilities","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-12-space-oddities-with-great-p/4000-395252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394707/","id":394707,"name":"National Maul","site_detail_url":"https://comicvine.gamespot.com/deadpool-6-national-maul/4000-394707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394700/","id":394700,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-9/4000-394700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394514/","id":394514,"name":"Unidos resistimos Segunda parte","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-13-unidos-resistimos-segunda-parte/4000-394514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392356/","id":392356,"name":"This Man, That Monster!; Fury File 2012-012; Rise of the Locust; Hulk Moon","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earth-s-mightiest-heroes-/4000-392356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390451/","id":390451,"name":"Route 616 Part 1","site_detail_url":"https://comicvine.gamespot.com/red-she-hulk-63-route-616-part-1/4000-390451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407217/","id":407217,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/avengers-the-complete-collection-by-geoff-johns-1-/4000-407217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402050/","id":402050,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-4/4000-402050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-390454/","id":390454,"name":"Reconstruction, Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-22-reconstruction-part-4/4000-390454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404366/","id":404366,"name":"X-Force Angeli & Demoni","site_detail_url":"https://comicvine.gamespot.com/100-marvel-bestorce-x-force-1-x-force-angeli-demon/4000-404366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410504/","id":410504,"name":"Marvel NOW! Point One","site_detail_url":"https://comicvine.gamespot.com/marvel-world-17-marvel-now-point-one/4000-410504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386407/","id":386407,"name":"Черная Вдова","site_detail_url":"https://comicvine.gamespot.com/marvel-spetsialniy-vypusk-3-wikiissue/4000-386407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401367/","id":401367,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-kill-or-die-1-volume-1/4000-401367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448282/","id":448282,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1/4000-448282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444775/","id":444775,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1/4000-444775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407172/","id":407172,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/deadpool-dead-presidents-1-volume-1/4000-407172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395242/","id":395242,"name":"Legacies Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-wolverine-2-legacies-part-2/4000-395242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392360/","id":392360,"name":"Legacies Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-wolverine-1-legacies-part-1/4000-392360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392357/","id":392357,"name":"Mission 002: Bagalia","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-2-mission-002-bagalia/4000-392357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558842/","id":558842,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-8/4000-558842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538812/","id":538812,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores-26/4000-538812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499576/","id":499576,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-11/4000-499576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437064/","id":437064,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-280/4000-437064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399174/","id":399174,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-34/4000-399174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399120/","id":399120,"name":"HC\\TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-the-red-shadow-1-hc-tpb/4000-399120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387258/","id":387258,"name":"Agent of S.H.I.E.L.D. Part 4","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-4-agent-of-s-h-i-e-l-d-part-4/4000-387258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387257/","id":387257,"name":"Star Wars: Revenge of the Gipper","site_detail_url":"https://comicvine.gamespot.com/deadpool-5-star-wars-revenge-of-the-gipper/4000-387257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386141/","id":386141,"name":"The New Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1-the-new-revolution/4000-386141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407497/","id":407497,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-7/4000-407497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384968/","id":384968,"name":"Skin To Shed","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-15-skin-to-shed/4000-384968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398911/","id":398911,"name":"","site_detail_url":"https://comicvine.gamespot.com/grandi-eventi-marvel-1/4000-398911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395935/","id":395935,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-s-iron-man-3-prelude-1-tpb/4000-395935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399893/","id":399893,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers-1/4000-399893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398585/","id":398585,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants-2-volume-two/4000-398585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397752/","id":397752,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-2020-1-tpb/4000-397752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395914/","id":395914,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-season-one-1-hc/4000-395914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395905/","id":395905,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus-1-volume-1/4000-395905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387591/","id":387591,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-thor-adaptation-2/4000-387591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386139/","id":386139,"name":"Mission 001: Budapest","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-1-mission-001-budapest/4000-386139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540197/","id":540197,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-26/4000-540197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499575/","id":499575,"name":"","site_detail_url":"https://comicvine.gamespot.com/el-increible-hulk-10/4000-499575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498653/","id":498653,"name":"Spiderman 12: Hollywood","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-27-spiderman-12-hollywood/4000-498653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392556/","id":392556,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/hawkeye-my-life-as-a-weapon-1-volume-1/4000-392556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387644/","id":387644,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-5-volume-5/4000-387644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381412/","id":381412,"name":"The Quick and the Dead and the Really Dead","site_detail_url":"https://comicvine.gamespot.com/deadpool-4-the-quick-and-the-dead-and-the-really-d/4000-381412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380354/","id":380354,"name":"Agent of S.H.I.E.L.D. Part 3","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-3-agent-of-s-h-i-e-l-d-part-3/4000-380354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380278/","id":380278,"name":"Savage Part 1: Snikt","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-1-savage-part-1-snikt/4000-380278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376261/","id":376261,"name":"Imposibles Vengadores","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores-1-imposibles-vengadores/4000-376261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371106/","id":371106,"name":"Dr. Strange Lives (Or How I Learned Deadpool Was Da Bomb)","site_detail_url":"https://comicvine.gamespot.com/deadpool-3-dr-strange-lives-or-how-i-learned-deadp/4000-371106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381410/","id":381410,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-58/4000-381410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382803/","id":382803,"name":"The Death and Resurrection of Major Titans","site_detail_url":"https://comicvine.gamespot.com/avengers-4-the-death-and-resurrection-of-major-tit/4000-382803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391543/","id":391543,"name":"Ultimate Universe","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-6-ultimate-universe/4000-391543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391541/","id":391541,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-33/4000-391541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381418/","id":381418,"name":"Reconstruction, Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-20-reconstruction-part-2/4000-381418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380552/","id":380552,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-thor-adaptation-1/4000-380552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380349/","id":380349,"name":"Faith in Monsters","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-11-faith-in-monsters/4000-380349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376020/","id":376020,"name":"Divididos, caemos Primera Parte","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-10-divididos-caemos-primera-parte/4000-376020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373303/","id":373303,"name":"Agent of S.H.I.E.L.D. Part 2","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-2-agent-of-s-h-i-e-l-d-part-2/4000-373303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372567/","id":372567,"name":"Simon Says, Pie!; I Battled Gardoom--A Really Big Monster!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-9-simon-says-pie-i-battled-gar/4000-372567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373218/","id":373218,"name":"Deadly Allies","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-2-deadly-allies/4000-373218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373310/","id":373310,"name":"Reconstruction, Part 1 of 6: Any Given Sunday","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-19-reconstruction-part-1/4000-373310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386459/","id":386459,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-2-volum/4000-386459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386456/","id":386456,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-team-up-4-volume-4/4000-386456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386453/","id":386453,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-life-after-death-1-volume-1/4000-386453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386451/","id":386451,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-michelinie-layton-romita-jr-1-volume-1/4000-386451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386078/","id":386078,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-omnibus-1-volume-1/4000-386078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386075/","id":386075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection-1/4000-386075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371260/","id":371260,"name":"Point One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-18-1-point-one/4000-371260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388849/","id":388849,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-5-volume-5/4000-388849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385545/","id":385545,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-32/4000-385545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383601/","id":383601,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-94/4000-383601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372456/","id":372456,"name":"Demon in the Armor, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man-3-demon-in-the-armor-part/4000-372456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372449/","id":372449,"name":"Black Widow Hunt, Part 4","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-13-black-widow-hunt-part-4/4000-372449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371504/","id":371504,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-iron-man-2-adaptation-2/4000-371504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371237/","id":371237,"name":"The Tape, 2 of 2","site_detail_url":"https://comicvine.gamespot.com/hawkeye-5-the-tape-2-of-2/4000-371237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558839/","id":558839,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios-5/4000-558839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538256/","id":538256,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-5/4000-538256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498649/","id":498649,"name":"Spiderman 10: Los Seis Siniestros","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-23-spiderman-10-los-seis-si/4000-498649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380703/","id":380703,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-land-of-the-free-1-tpb/4000-380703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380584/","id":380584,"name":"New World Orders","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-4-new-world-orders/4000-380584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370579/","id":370579,"name":"Dragon Me Down!; Four Seasons","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-8-dragon-me-down-four-seasons/4000-370579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369093/","id":369093,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/avengers-34-the-end/4000-369093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369057/","id":369057,"name":"We Fought a Zoo","site_detail_url":"https://comicvine.gamespot.com/deadpool-2-we-fought-a-zoo/4000-369057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369055/","id":369055,"name":"The Tape, 1 of 2","site_detail_url":"https://comicvine.gamespot.com/hawkeye-4-the-tape-1-of-2/4000-369055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369012/","id":369012,"name":"Agent of S.H.I.E.L.D. Part 1","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-1-agent-of-s-h-i-e-l-d-part-1/4000-369012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365760/","id":365760,"name":"In Wade We Trust","site_detail_url":"https://comicvine.gamespot.com/deadpool-1-in-wade-we-trust/4000-365760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365759/","id":365759,"name":"Believe, 1 of 5: Demons and Genies","site_detail_url":"https://comicvine.gamespot.com/iron-man-1-believe-1-of-5-demons-and-genies/4000-365759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366186/","id":366186,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days-2-part-two/4000-366186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-367811/","id":367811,"name":"War Drumm","site_detail_url":"https://comicvine.gamespot.com/new-avengers-33-war-drumm/4000-367811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366197/","id":366197,"name":"A Tangled Web","site_detail_url":"https://comicvine.gamespot.com/new-avengers-32-a-tangled-web/4000-366197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437061/","id":437061,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-277/4000-437061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391544/","id":391544,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-5/4000-391544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383650/","id":383650,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-81/4000-383650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383490/","id":383490,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-divided-we-fall-united-we-stand-1-/4000-383490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381075/","id":381075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-the-end-1-tpb/4000-381075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380706/","id":380706,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-11-volume-11/4000-380706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378724/","id":378724,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-4-volume-4/4000-378724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376973/","id":376973,"name":"Anges et Demons","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-force-1-anges-et-demons/4000-376973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370564/","id":370564,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/new-avengers-34-the-end/4000-370564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369094/","id":369094,"name":"United We Stand; Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-17-united-we-stand-part/4000-369094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513278/","id":513278,"name":"","site_detail_url":"https://comicvine.gamespot.com/defensores-6/4000-513278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359673/","id":359673,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-8/4000-359673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364152/","id":364152,"name":"Black Widow Hunt, Part 3","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-12-black-widow-hunt-part-3/4000-364152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363163/","id":363163,"name":"United We Stand Part Two: Hydra War One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-17-united-we-stand-part-/4000-363163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363158/","id":363158,"name":"The Future Finale: The Stars My Destination","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-527-the-future-finale-the-star/4000-363158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362257/","id":362257,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-point-one-1/4000-362257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362193/","id":362193,"name":"United We Stand; Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-16-united-we-stand-part/4000-362193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362182/","id":362182,"name":"Clash with a Titan","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-8-clash-with-a-titan/4000-362182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360924/","id":360924,"name":"New World Orders, Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-18-new-world-orders-part-4/4000-360924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360884/","id":360884,"name":"New Union","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-1-new-union/4000-360884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538255/","id":538255,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-4/4000-538255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538254/","id":538254,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-3/4000-538254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498645/","id":498645,"name":"Galactus 2: La Extinción","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-19-galactus-2-la-extincion/4000-498645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498644/","id":498644,"name":"Galactus 1: La Pesadilla","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-18-galactus-1-la-pesadilla/4000-498644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498643/","id":498643,"name":"X-Men 5: El Retorno Del Rey","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-17-x-men-5-el-retorno-del-r/4000-498643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386458/","id":386458,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest-1-volum/4000-386458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358884/","id":358884,"name":"Training Wheels; And Sometimes You Get What You Need!","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-6-training-wheels-and-sometime/4000-358884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355538/","id":355538,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-7/4000-355538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358974/","id":358974,"name":"United We Stand, Part One: The Call of the People","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-16-united-we-stand-part-/4000-358974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-368293/","id":368293,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-men-1-hc/4000-368293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373090/","id":373090,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-6-volume-6/4000-373090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370963/","id":370963,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-29/4000-370963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358908/","id":358908,"name":"Black Widow Hunt, Part 2","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-11-black-widow-hunt-part-2/4000-358908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357712/","id":357712,"name":"United We Stand; Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-15-united-we-stand-part/4000-357712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357711/","id":357711,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-5/4000-357711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357707/","id":357707,"name":"Ready! Aim...","site_detail_url":"https://comicvine.gamespot.com/avengers-30-ready-aim/4000-357707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356775/","id":356775,"name":"Black Widow Hunt, Part 1","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-10-black-widow-hunt-part-1/4000-356775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356766/","id":356766,"name":"New World Orders, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-17-new-world-orders-part-3/4000-356766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538253/","id":538253,"name":"","site_detail_url":"https://comicvine.gamespot.com/spidermen-2/4000-538253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498641/","id":498641,"name":"X-Men 4: Fuego Infernal y Azufre","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-15-x-men-4-fuego-infernal-y/4000-498641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441301/","id":441301,"name":"Final Exam","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-infinite-comic-1-final-exam/4000-441301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426413/","id":426413,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/man-thing-omnibus-1-hc/4000-426413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388148/","id":388148,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvel-zomnibus-1-hc/4000-388148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363471/","id":363471,"name":"Ultimate Marvel","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-28-ultimate-marvel/4000-363471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357326/","id":357326,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-517/4000-357326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354120/","id":354120,"name":"Divided We Fall; Chapter Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men-15-divided-we-fall-chapter-t/4000-354120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354098/","id":354098,"name":"Broken Arrow, Part Three","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-9-broken-arrow-part-three/4000-354098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349679/","id":349679,"name":"New World Orders, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-16-new-world-orders-part-2/4000-349679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-349675/","id":349675,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-4/4000-349675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-348055/","id":348055,"name":"Sideways Into 1967","site_detail_url":"https://comicvine.gamespot.com/defenders-9-sideways-into-1967/4000-348055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498640/","id":498640,"name":"Spiderman 7: Escrutinio Público","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-14-spiderman-7-escrutinio-p/4000-498640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355536/","id":355536,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-5/4000-355536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473267/","id":473267,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-punisher-4-volume-four/4000-473267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450021/","id":450021,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-revenge-of-the-sinister-six-1-hc/4000-450021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437407/","id":437407,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-chronicle-1-hc/4000-437407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391546/","id":391546,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-3/4000-391546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386395/","id":386395,"name":"Issue #6","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya-6-issue-6/4000-386395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347240/","id":347240,"name":"Broken Arrow, Part Two","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-8-broken-arrow-part-two/4000-347240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347206/","id":347206,"name":"Divided We Fall, Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-13-divided-we-fall-part-/4000-347206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347183/","id":347183,"name":"New World Orders, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-15-new-world-orders-part-1/4000-347183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345410/","id":345410,"name":"Shock to the System, Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-14-shock-to-the-system-part-4/4000-345410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345383/","id":345383,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-3/4000-345383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498638/","id":498638,"name":"Spiderman 6: Encuentros Extraños","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-12-spiderman-6-encuentros-e/4000-498638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498637/","id":498637,"name":"X-Men 3: Gira Mundial","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-11-x-men-3-gira-mundial/4000-498637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463729/","id":463729,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-operation-zero-tolerance-1-hc/4000-463729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355816/","id":355816,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-revenge-of-the-mandarin-1-hc/4000-355816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355535/","id":355535,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-4/4000-355535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351477/","id":351477,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-classic-3-volume-three/4000-351477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351474/","id":351474,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-regression-1-tpb/4000-351474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351473/","id":351473,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket-1-tpb/4000-351473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343202/","id":343202,"name":"Cabos sueltos","site_detail_url":"https://comicvine.gamespot.com/nuevos-mutantes-4-cabos-sueltos/4000-343202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342839/","id":342839,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-men-2/4000-342839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340262/","id":340262,"name":"Deadpool Reborn, Part 2: Master of My Own Domain","site_detail_url":"https://comicvine.gamespot.com/deadpool-56-deadpool-reborn-part-2-master-of-my-ow/4000-340262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340261/","id":340261,"name":"Shock to the System, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-13-shock-to-the-system-part-3/4000-340261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-339485/","id":339485,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/the-avengers-prelude-black-widow-strikes-3-part-th/4000-339485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338483/","id":338483,"name":"Broken Arrow: Prologue","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-6-broken-arrow-prologue/4000-338483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540189/","id":540189,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-18/4000-540189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498636/","id":498636,"name":"Spiderman 5: Legado","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-10-spiderman-5-legado/4000-498636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336121/","id":336121,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/the-avengers-prelude-black-widow-strikes-2-part-tw/4000-336121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334431/","id":334431,"name":"Assemble!","site_detail_url":"https://comicvine.gamespot.com/avengers-the-avengers-initiative-1-assemble/4000-334431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334345/","id":334345,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/the-avengers-prelude-black-widow-strikes-1-part-on/4000-334345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334214/","id":334214,"name":"Ends of the Earth, Part Four: Global Menace","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-685-ends-of-the-earth-part-/4000-334214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337508/","id":337508,"name":"The Conversation","site_detail_url":"https://comicvine.gamespot.com/hulk-smash-avengers-5-the-conversation/4000-337508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336599/","id":336599,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-smash-avengers-4/4000-336599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347602/","id":347602,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-jonathan-hickman-2-vo/4000-347602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347600/","id":347600,"name":"Ends of the Earth","site_detail_url":"https://comicvine.gamespot.com/spider-man-ends-of-the-earth-1-ends-of-the-earth/4000-347600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335950/","id":335950,"name":"Once An Avenger...","site_detail_url":"https://comicvine.gamespot.com/hulk-smash-avengers-3-once-an-avenger/4000-335950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335251/","id":335251,"name":"The Filth and the Fury","site_detail_url":"https://comicvine.gamespot.com/hulk-smash-avengers-2-the-filth-and-the-fury/4000-335251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344752/","id":344752,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-omnibus-1-hc/4000-344752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351221/","id":351221,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-127/4000-351221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347039/","id":347039,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/counter-x-x-force-rage-war-1-tpb/4000-347039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-345542/","id":345542,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-4-volume-four/4000-345542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337516/","id":337516,"name":"Two Cities. Two Worlds. Part Five","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-11-two-cities-two-worlds/4000-337516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336586/","id":336586,"name":"Shock to the System, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-12-shock-to-the-system-pt-2/4000-336586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335913/","id":335913,"name":"The Longest Winter, Part 5","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-5-the-longest-winter-part-5/4000-335913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335268/","id":335268,"name":"Two Cities. Two Worlds. Part Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-10-two-cities-two-worlds/4000-335268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335255/","id":335255,"name":"Pillar Of Fire","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-5-pillar-of-fire/4000-335255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335252/","id":335252,"name":"Shock to the System, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-shock-to-the-system-pt-1/4000-335252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540188/","id":540188,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-17/4000-540188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498610/","id":498610,"name":"Spiderman 4: Problemas Por Duplicado","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-8-spiderman-4-problemas-por/4000-498610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498609/","id":498609,"name":"The Ultimates 2: Seguridad Nacional","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-7-the-ultimates-2-seguridad/4000-498609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342079/","id":342079,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/deathlok-the-living-nightmare-of-michael-collins-1/4000-342079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333461/","id":333461,"name":"Cake!; ...Ultimate Peter Parker","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-1-cake-ultimate-peter-parker/4000-333461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329523/","id":329523,"name":"Enter the Mandarin; Assembly Line","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-earths-mightiest-heroes-1/4000-329523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-344849/","id":344849,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-classic-1-volume-1/4000-344849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342230/","id":342230,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-omnibus-1-volume-one/4000-342230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341611/","id":341611,"name":"Battle Scars","site_detail_url":"https://comicvine.gamespot.com/battle-scars-1-battle-scars/4000-341611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386326/","id":386326,"name":"Смерть Человека-Паука. Прелюдия; Смерть Человека-Паука. Часть 1","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-6--1/4000-386326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417111/","id":417111,"name":"Enter the Mandarin; Assembly Line","site_detail_url":"https://comicvine.gamespot.com/share-your-universe-1-enter-the-mandarin-assembly-/4000-417111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333428/","id":333428,"name":"Two Cities. Two Worlds, Part Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-9-two-cities-two-worlds-/4000-333428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333424/","id":333424,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-6/4000-333424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329197/","id":329197,"name":"The Longest Winter, Part 4","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-4-the-longest-winter-part-4/4000-329197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551705/","id":551705,"name":"El final antes del nuevo principio","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-consecuencias-3-el-final-antes-del/4000-551705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498607/","id":498607,"name":"X-Men 2: Regreso A Arma-X","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-5-x-men-2-regreso-a-arma-x/4000-498607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355532/","id":355532,"name":"Ultimate Marvel","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-1-ultimate-marvel/4000-355532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341615/","id":341615,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1970s-3-volume-three/4000-341615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336524/","id":336524,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-identity-crisis-1-tpb/4000-336524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341633/","id":341633,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-23-don-t-look-back-1-volume-3/4000-341633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386837/","id":386837,"name":"Тони Старк: Распад. Часть 3; Железный дождь; Опасная пересадка","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-3-3/4000-386837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386479/","id":386479,"name":"Новые Мстители: Финал","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks-3-wikiissue/4000-386479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336911/","id":336911,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-many-faces-of-henry-pym-1-tpb/4000-336911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-342277/","id":342277,"name":"Volume Twelve","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-12-volume-twelve/4000-342277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341469/","id":341469,"name":"Powerless","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-2-powerless/4000-341469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341468/","id":341468,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-3-volume-three/4000-341468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-357738/","id":357738,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-1/4000-357738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386406/","id":386406,"name":"Мстители","site_detail_url":"https://comicvine.gamespot.com/marvel-spetsialniy-vypusk-2-wikiissue/4000-386406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341379/","id":341379,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-1-tpb/4000-341379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391549/","id":391549,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe-1/4000-391549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382569/","id":382569,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-kree-skrull-war-1-hc-tpb/4000-382569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331874/","id":331874,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-premiere-comic-1/4000-331874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325099/","id":325099,"name":"Two Cities. Two Worlds: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-8-two-cities-two-worlds-/4000-325099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319362/","id":319362,"name":"The Longest Winter, Part 3","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-3-the-longest-winter-part-3/4000-319362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498606/","id":498606,"name":"The Ultimates 1: Vengadores","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-4-the-ultimates-1-vengadore/4000-498606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498604/","id":498604,"name":"X-Men 1: La Gente Del Mañana","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate-2-x-men-1-la-gente-del-mana/4000-498604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336470/","id":336470,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-6-volume-6/4000-336470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386835/","id":386835,"name":"Тони Старк: Распад. Часть 2. Тут безопасно?","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-2-2/4000-386835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336300/","id":336300,"name":"Ultimate Comics Avengers by Mark Millar Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-by-mark-millar-omnibus-1-/4000-336300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315739/","id":315739,"name":"The Longest Winter, Part 2","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-2-the-longest-winter-part-2/4000-315739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386324/","id":386324,"name":"Школа супергероев. Часть 1; Школа супергероев. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-4-1-2/4000-386324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387652/","id":387652,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-1-world-war-hulk/4000-387652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327194/","id":327194,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-assemble-1-tpb/4000-327194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317967/","id":317967,"name":"Two Cities, Two Worlds: part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-7-two-cities-two-worlds-/4000-317967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315288/","id":315288,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-4/4000-315288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314971/","id":314971,"name":"War's End","site_detail_url":"https://comicvine.gamespot.com/punishermax-22-wars-end/4000-314971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551703/","id":551703,"name":"Spiderman Nunca Más","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-consecuencias-1-spiderman-nunca-ma/4000-551703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324357/","id":324357,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-nick-fury-scorpio-1-tpb/4000-324357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323698/","id":323698,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-1-hctpb/4000-323698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386833/","id":386833,"name":"Тони Старк: Распад. Часть 1","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks-1-1/4000-386833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324977/","id":324977,"name":"Chapter Eight","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-8-chap/4000-324977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323586/","id":323586,"name":"Chapter Seven","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-7-chap/4000-323586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321942/","id":321942,"name":"Chapter Six","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-6-chap/4000-321942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319455/","id":319455,"name":"Chapter Five","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-5-chap/4000-319455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321763/","id":321763,"name":"Avengers: Road to Marvel's The Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-road-to-marvels-the-avengers-1-avengers-r/4000-321763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321756/","id":321756,"name":"Avengers by Brian Michael Bendis: The Heroic Age","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age-1-/4000-321756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323689/","id":323689,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4000-323689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386323/","id":386323,"name":"Город, где разбиваются сердца; Специальный юбилейный выпуск!","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-3-wikiiss/4000-386323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400998/","id":400998,"name":"Supernovas","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-supernovas/4000-400998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321569/","id":321569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ultimate-collecti/4000-321569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312895/","id":312895,"name":"The World: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-6-the-world-part-2/4000-312895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309598/","id":309598,"name":"Girls Night Out, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-23-20-girls-night-out-part-1/4000-309598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498868/","id":498868,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-13/4000-498868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321183/","id":321183,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-jonathan-hickman-1-vo/4000-321183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321180/","id":321180,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/ka-zar-by-mark-waid-andy-kubert-2-volume-two/4000-321180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317033/","id":317033,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-1-tpb/4000-317033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317023/","id":317023,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/quasar-classic-1-volume-one/4000-317023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316040/","id":316040,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-3-volume-three/4000-316040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315552/","id":315552,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-secret-avengers-1-hc-tpb/4000-315552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318081/","id":318081,"name":"Chapter Four","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-4-chap/4000-318081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316808/","id":316808,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-3-chap/4000-316808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316130/","id":316130,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-2-chap/4000-316130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315482/","id":315482,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week-1-chap/4000-315482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317032/","id":317032,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-classic-2-volume-two/4000-317032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316037/","id":316037,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4000-316037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386322/","id":386322,"name":"Порочная любовь. Часть 5; Порочная любовь. Часть 6","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii-2-5-6/4000-386322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443695/","id":443695,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-2011/4000-443695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314092/","id":314092,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-2-volume-two/4000-314092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308919/","id":308919,"name":"The World: Part One","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-5-the-world-part-one/4000-308919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308841/","id":308841,"name":"Powerless, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-6-powerless-part-1/4000-308841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308466/","id":308466,"name":"American Dreamers Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-5-american-dreamers-part-5/4000-308466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307687/","id":307687,"name":"The Boy Who Would Be Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-5-the-boy-who-would-be-/4000-307687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306728/","id":306728,"name":"Chapter Four: All Together Now","site_detail_url":"https://comicvine.gamespot.com/shield-4-chapter-four-all-together-now/4000-306728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306645/","id":306645,"name":"","site_detail_url":"https://comicvine.gamespot.com/battle-scars-2/4000-306645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498867/","id":498867,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-12/4000-498867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312125/","id":312125,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/the-new-defenders-1-volume-one/4000-312125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309610/","id":309610,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-masques-1-hc/4000-309610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309609/","id":309609,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-omnibus-2-volume-2/4000-309609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313516/","id":313516,"name":"American Dreamers","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-1-american-dreamers/4000-313516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311494/","id":311494,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-by-claremont-and-lee-omnibus-2-volume-two/4000-311494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309611/","id":309611,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition-2-volume-two/4000-309611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437606/","id":437606,"name":"","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes-2/4000-437606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379558/","id":379558,"name":"History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe-1-history-of-the-ma/4000-379558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365595/","id":365595,"name":"Punisher Max: Der Letzte Weg","site_detail_url":"https://comicvine.gamespot.com/max-49-punisher-max-der-letzte-weg/4000-365595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-365591/","id":365591,"name":"Punisher Max: Frank","site_detail_url":"https://comicvine.gamespot.com/max-48-punisher-max-frank/4000-365591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303731/","id":303731,"name":"Part Four of Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-4-part-four-of-four/4000-303731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302678/","id":302678,"name":"Avengers Assemble!","site_detail_url":"https://comicvine.gamespot.com/avengers-19-avengers-assemble/4000-302678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302641/","id":302641,"name":"American Dreamers Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-4-american-dreamers-part-4/4000-302641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407875/","id":407875,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-avengers-the-ultimate-guide-to-earth-s-mightie/4000-407875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308851/","id":308851,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-by-john-byrne-and-ron-garney-1-tpb/4000-308851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307678/","id":307678,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-sins-of-the-past-1-hc/4000-307678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307506/","id":307506,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield-3-vol/4000-307506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298471/","id":298471,"name":"Who are the Avengers?","site_detail_url":"https://comicvine.gamespot.com/avengers-18-who-are-the-avengers/4000-298471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401112/","id":401112,"name":"Preparations for War","site_detail_url":"https://comicvine.gamespot.com/hasbro-thanos-warlock-1-preparations-for-war/4000-401112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307683/","id":307683,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/shield-nick-fury-vs-shield-1-hc-tpb/4000-307683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299760/","id":299760,"name":"The Republic is Burning, Part III","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-3-the-republic-is-burnin/4000-299760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297459/","id":297459,"name":"Part Three of Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-3-part-three-of-four/4000-297459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303672/","id":303672,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-fal/4000-303672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301212/","id":301212,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-force-assault-on-graymalkin-1-hc/4000-301212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291209/","id":291209,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-debt-of-death-1/4000-291209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302181/","id":302181,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus-1-volume-one/4000-302181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301211/","id":301211,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-itsy-bitsy-spider-1-hc/4000-301211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443028/","id":443028,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-cable-masacre-3/4000-443028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293533/","id":293533,"name":"The Republic Is Burning, Part II","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-2-the-republic-is-burnin/4000-293533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293390/","id":293390,"name":"Part Two of Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-2-part-two-of-four/4000-293390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293318/","id":293318,"name":"American Dreamers Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-american-dreamers-part-3/4000-293318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331426/","id":331426,"name":"Frank","site_detail_url":"https://comicvine.gamespot.com/punishermax-frank-1-frank/4000-331426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300938/","id":300938,"name":"Wolverine's Revenge","site_detail_url":"https://comicvine.gamespot.com/wolverine-wolverines-revenge-1-wolverines-revenge/4000-300938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295213/","id":295213,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1960s-1-tpb/4000-295213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286936/","id":286936,"name":"Chapter Six of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-6-chapter-six-of-six/4000-286936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285563/","id":285563,"name":"Chapter Five of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-5-chapter-five-of-six/4000-285563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297574/","id":297574,"name":"Ultimate Comics Spider-Man: Death of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-1-u/4000-297574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295215/","id":295215,"name":"New Mutants: Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/new-mutants-unfinished-business-1-new-mutants-unfi/4000-295215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290126/","id":290126,"name":"Part One of Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-1-part-one-of-four/4000-290126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288885/","id":288885,"name":"The Republic Is Burning, Part I","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-1-the-republic-is-burnin/4000-288885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288479/","id":288479,"name":"Wolverine's Revenge! Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-14-wolverines-revenge-conclusion/4000-288479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283866/","id":283866,"name":"Chapter Two: Fire","site_detail_url":"https://comicvine.gamespot.com/shield-2-chapter-two-fire/4000-283866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551757/","id":551757,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-muerte-2/4000-551757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293590/","id":293590,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-wheels-within-wheels-1-volume-6/4000-293590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293539/","id":293539,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-2-volume-two/4000-293539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280882/","id":280882,"name":"Stars, Stripes And Spiders!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-16-stars-stripes-an/4000-280882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278807/","id":278807,"name":"Chapter One of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout-1-chapter-one-of-six/4000-278807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293860/","id":293860,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-6-volume-six/4000-293860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293588/","id":293588,"name":"Marvel Adventures Avengers: Thor/Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-thorcaptain-america-1-m/4000-293588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293493/","id":293493,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-worlds-greatest-comics-magazine-1-h/4000-293493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-729215/","id":729215,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad-online-magazine-1/4000-729215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315436/","id":315436,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-18/4000-315436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293867/","id":293867,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-death-of-spider/4000-293867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278862/","id":278862,"name":"Frank, Part 4","site_detail_url":"https://comicvine.gamespot.com/punishermax-15-frank-part-4/4000-278862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278805/","id":278805,"name":"Unfinished Business, Part 3","site_detail_url":"https://comicvine.gamespot.com/new-mutants-27-unfinished-business-part-3/4000-278805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551756/","id":551756,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-muerte-1/4000-551756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292627/","id":292627,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-mike-deodato-ultimate/4000-292627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387330/","id":387330,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/acts-of-vengeance-crossovers-omnibus-1-hc/4000-387330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281842/","id":281842,"name":"The One Man","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-28-the-one-man/4000-281842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278713/","id":278713,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-6-part-six/4000-278713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275783/","id":275783,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-5-part-5/4000-275783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275779/","id":275779,"name":"Fear Itself, Pt. 3: The Valkyrie","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-14-fear-itself-pt-3-the-valkyrie/4000-275779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275412/","id":275412,"name":"Unfinished Business, Part 2","site_detail_url":"https://comicvine.gamespot.com/new-mutants-26-unfinished-business-part-2/4000-275412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272466/","id":272466,"name":"Chapter One: Terribilita","site_detail_url":"https://comicvine.gamespot.com/shield-1-chapter-one-terribilita/4000-272466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285576/","id":285576,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-am-i-an-avenger-1-tpb/4000-285576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284853/","id":284853,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-point-one-1-tpb/4000-284853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293167/","id":293167,"name":"Dark Avengers Hardcover","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-hardcover-1-dark-avengers-hardcover/4000-293167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416862/","id":416862,"name":"Magnetischer Nordpol","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-11-magnetischer-nordpol/4000-416862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270466/","id":270466,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-4-part-4/4000-270466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277452/","id":277452,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-1-volume-one/4000-277452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276176/","id":276176,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-to-serve-and-protect-1-hctpb/4000-276176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278675/","id":278675,"name":"Ultimate Comics Spider-Man: Death of Spider-Man Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-pre/4000-278675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278181/","id":278181,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/impossible-man-1-tpb/4000-278181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278170/","id":278170,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-1-volume-one/4000-278170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277577/","id":277577,"name":"Ultimatum Companion","site_detail_url":"https://comicvine.gamespot.com/ultimatum-companion-1-ultimatum-companion/4000-277577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277463/","id":277463,"name":"Captain America: Red Menace Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-menace-ultimate-collection-1-c/4000-277463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277203/","id":277203,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-britain-birth-of-a-legend-1-tpb/4000-277203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269117/","id":269117,"name":"Fear Itself, Pt. 1: The Captain","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-12-1-fear-itself-pt-1-the-captain/4000-269117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268371/","id":268371,"name":"End Game","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-26-end-game/4000-268371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268333/","id":268333,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-3-part-three/4000-268333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267583/","id":267583,"name":"The Last Stand","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-4-the-last-stand/4000-267583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233675/","id":233675,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-5-volume-5/4000-233675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610281/","id":610281,"name":"Patrulla-X 1: La guerra de Magneto","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes-2-patrulla-x-1-la-guer/4000-610281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-570057/","id":570057,"name":"Un nuevo jefe","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-3-un-nuevo-jefe/4000-570057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275149/","id":275149,"name":"Ultimate Comics Captain America","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-captain-america-1-ultimate-comics-/4000-275149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275028/","id":275028,"name":"Ultimate Comics Doomsday ","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-doomsday-1-ultimate-comics-doomsda/4000-275028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274607/","id":274607,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus-1-volume-1/4000-274607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270760/","id":270760,"name":"Mutant Deathmatch/Dangerous Liasons/Disaster at Darkmoor Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-35-mutant-deathmatchdangerous-liason/4000-270760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280771/","id":280771,"name":"Super Hero Squad: A Squad For All Seasons","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-a-squad-for-all-seasons-1-super-h/4000-280771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273558/","id":273558,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/taskmaster-unthinkable-1-tpb/4000-273558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273557/","id":273557,"name":"Captain America: Forever Allies","site_detail_url":"https://comicvine.gamespot.com/captain-america-forever-allies-1-captain-america-f/4000-273557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297463/","id":297463,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-21/4000-297463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267112/","id":267112,"name":"The Bicycle Thief or: How Cyclops Got His Groove Back","site_detail_url":"https://comicvine.gamespot.com/cyclops-1-the-bicycle-thief-or-how-cyclops-got-his/4000-267112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266507/","id":266507,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-doom-4-part-4/4000-266507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266487/","id":266487,"name":"Death of Spider-Man, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-156-death-of-spider-man-chapte/4000-266487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264728/","id":264728,"name":"Super-Soldier Showdown","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-3-super-soldier-showdown/4000-264728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558786/","id":558786,"name":"","site_detail_url":"https://comicvine.gamespot.com/visionarios-marvel-stan-lee-1/4000-558786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551754/","id":551754,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-misterio-1/4000-551754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298051/","id":298051,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-6/4000-298051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278711/","id":278711,"name":"The Squaddies' Secret Wars; The Substitute Squaddies; Reptil vs S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-spectacular-1-the-squaddies-secre/4000-278711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272857/","id":272857,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-architects-of-forever-1-hc-tpb/4000-272857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272836/","id":272836,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-vs-the-red-skull-1-tpb/4000-272836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273105/","id":273105,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-men-omnibus-2-volume-two/4000-273105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270754/","id":270754,"name":"Thor by Walter Simonson Omnibus","site_detail_url":"https://comicvine.gamespot.com/thor-by-walter-simonson-omnibus-1-thor-by-walter-s/4000-270754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270101/","id":270101,"name":"Avengers Prime","site_detail_url":"https://comicvine.gamespot.com/avengers-prime-1-avengers-prime/4000-270101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324472/","id":324472,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-83/4000-324472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270759/","id":270759,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-blade-vs-the-avengers-1-t/4000-270759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261320/","id":261320,"name":"Part One of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-1-part-one-of-s/4000-261320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261243/","id":261243,"name":"Covert Cap...","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-2-covert-cap/4000-261243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259997/","id":259997,"name":"Believe","site_detail_url":"https://comicvine.gamespot.com/ultimate-thor-4-believe/4000-259997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362278/","id":362278,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/transformers-the-idw-collection-3-volume-three/4000-362278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270097/","id":270097,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-legacy-of-captain-america-1-tp/4000-270097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259821/","id":259821,"name":"Shall We Rise Again?","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-16-shall-we-rise-again/4000-259821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267252/","id":267252,"name":"The Hero Inside/The Brute and the Bounty Hunter!","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-33-the-hero-insidethe-brute-and-the-/4000-267252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267844/","id":267844,"name":"Ultimate Comics New Ultimates: Thor Reborn","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-new-ultimates-thor-reborn-1-ultima/4000-267844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267825/","id":267825,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-6-volume-six/4000-267825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254779/","id":254779,"name":"One Shot","site_detail_url":"https://comicvine.gamespot.com/january-2011-sneak-peeks-1-one-shot/4000-254779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267766/","id":267766,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-super-hero-safari-1-tpb/4000-267766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385856/","id":385856,"name":"Том 1. Вне времени","site_detail_url":"https://comicvine.gamespot.com/kapitan-amerika-1-1/4000-385856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270100/","id":270100,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-perfect-world-1-volume-3/4000-270100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270056/","id":270056,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-extended-family-1-tpb/4000-270056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260000/","id":260000,"name":"Thor Reborn, Chapter 5: Love","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-5-thor-reborn-chapter-5-lov/4000-260000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259131/","id":259131,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-doom-2-part-2/4000-259131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259129/","id":259129,"name":"Blade versus the Avengers, Part Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-18-blade-versus-the-avengers-par/4000-259129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254666/","id":254666,"name":"Brothers in Arms","site_detail_url":"https://comicvine.gamespot.com/avengers-prime-5-brothers-in-arms/4000-254666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254572/","id":254572,"name":"Ultimate Captain America","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-1-ultimate-captain-americ/4000-254572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298050/","id":298050,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-5/4000-298050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267234/","id":267234,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-1-hctpb/4000-267234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253654/","id":253654,"name":"Chapter Five: The Forgotten Machines of Nikola Tesla","site_detail_url":"https://comicvine.gamespot.com/shield-5-chapter-five-the-forgotten-machines-of-ni/4000-253654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278663/","id":278663,"name":"Captain America by Jack Kirby Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-jack-kirby-omnibus-1-captain-am/4000-278663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245820/","id":245820,"name":"X-Force : A Force To Be Reckoned With HC","site_detail_url":"https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with-1-x-force-a-f/4000-245820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265751/","id":265751,"name":"Captain America Lives Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-lives-omnibus-1-captain-america-li/4000-265751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245497/","id":245497,"name":"Civil War: X-Men","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men-1-civil-war-x-men/4000-245497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443564/","id":443564,"name":"X-Force: Angeli e Demoni","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-100-x-force-angeli-e-dem/4000-443564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435375/","id":435375,"name":"Surpreendentes X-Men: Destroçados","site_detail_url":"https://comicvine.gamespot.com/supreendentes-x-men-2-surpreendentes-x-men-destroc/4000-435375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266800/","id":266800,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty-1-hc/4000-266800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254097/","id":254097,"name":"Blade versus the Avengers, Part Five","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-17-blade-versus-the-avengers-par/4000-254097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251567/","id":251567,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-151/4000-251567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251086/","id":251086,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-doom-1-part-1/4000-251086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243892/","id":243892,"name":"Squadettes In The Old Order Changeth...!; The Squaddie Seven!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad-11-squadettes-in-the-old-o/4000-243892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240901/","id":240901,"name":"Unthinkable","site_detail_url":"https://comicvine.gamespot.com/taskmaster-3-unthinkable/4000-240901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168483/","id":168483,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-war-and-remembrance-1-tpb/4000-168483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260056/","id":260056,"name":"Vol. 1: Mission to Mars","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-mission-to-mars-1-vol-1-mission-to/4000-260056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312131/","id":312131,"name":"Ultimate Comics Hawkeye by Hickman","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-by-hickman-1-ultimate-comi/4000-312131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298892/","id":298892,"name":"","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos-5/4000-298892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264461/","id":264461,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-scream-a-little-scream-1-volume-2/4000-264461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261692/","id":261692,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-back-in-action-1-vol-1/4000-261692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246615/","id":246615,"name":"Blade versus the Avengers, Part Four of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-16-blade-versus-the-avengers-par/4000-246615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246470/","id":246470,"name":"Spidey's 150th Anniversay Special","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-150-spideys-150th-anniversay-s/4000-246470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-551711/","id":551711,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-enemigo-2/4000-551711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298049/","id":298049,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-4/4000-298049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238608/","id":238608,"name":"Railguns, Power Ties and Titanium Men; Killer Commute; Heavy Rain; Hack","site_detail_url":"https://comicvine.gamespot.com/iron-man-titanium-1-railguns-power-ties-and-titani/4000-238608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237112/","id":237112,"name":"Chapter Four: The Madness, the Star Child and the Celestial Madonna","site_detail_url":"https://comicvine.gamespot.com/shield-4-chapter-four-the-madness-the-star-child-a/4000-237112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255965/","id":255965,"name":"Civil War: The Underside","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-underside-1-civil-war-the-underside/4000-255965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255940/","id":255940,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-1-volume-one/4000-255940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385863/","id":385863,"name":"Разрыв","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-3-wikiissue/4000-385863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307503/","id":307503,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-defenders-2-volume-2/4000-307503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248672/","id":248672,"name":"Iron Man: War of the Iron Men","site_detail_url":"https://comicvine.gamespot.com/iron-man-war-of-the-iron-men-1-iron-man-war-of-the/4000-248672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240121/","id":240121,"name":"Friends - No More","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-10-friends-no-more/4000-240121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239979/","id":239979,"name":"Blade versus the Avengers, Part Three of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-15-blade-versus-the-avengers-par/4000-239979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239951/","id":239951,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-15/4000-239951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247810/","id":247810,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-osborn-identity-1-tpb/4000-247810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-243329/","id":243329,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengersx-men-maximum-security-1-tpb/4000-243329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233079/","id":233079,"name":"Who Made Who; Just of the Farm; Proximity","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-agents-of-shield-1-who-made-who-just-of/4000-233079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248406/","id":248406,"name":"Ultimate Comics Spider-Man: Chameleons","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-chameleons-1-ultimate-c/4000-248406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245511/","id":245511,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-52/4000-245511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443027/","id":443027,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-cable-masacre-2/4000-443027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355524/","id":355524,"name":"Code of Honour/Graduation Day","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-27-code-of-honourgraduation-day/4000-355524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324497/","id":324497,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-81/4000-324497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244450/","id":244450,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection-/4000-244450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235439/","id":235439,"name":"Tainted Love Part 6 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-14-tainted-love-part-6-of-6/4000-235439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235393/","id":235393,"name":"The Secret Life of Max Fury","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-5-the-secret-life-of-max-fury/4000-235393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233937/","id":233937,"name":"Blade Versus The Avengers, Part Two of Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-14-blade-versus-the-avengers-par/4000-233937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298048/","id":298048,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-3/4000-298048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241083/","id":241083,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-1-hc/4000-241083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239294/","id":239294,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/war-machine-classic-1-volume-one/4000-239294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239292/","id":239292,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-cage-1-hctpb/4000-239292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231669/","id":231669,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-mystery-2/4000-231669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230719/","id":230719,"name":"For Thanos!","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet-1-for-thanos/4000-230719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229212/","id":229212,"name":"2-Ton Squaddies; A Tour of the S.H.I.E.L.D Hellcarrier!; Wolverine, Falcon, and Reptil in the Camping Trip!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad-8-2-ton-squaddies-a-tour-o/4000-229212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227870/","id":227870,"name":"War of the Iron Men, Finale","site_detail_url":"https://comicvine.gamespot.com/iron-man-legacy-5-war-of-the-iron-men-finale/4000-227870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227823/","id":227823,"name":"Chapter Three: The Theory of Eternal Life","site_detail_url":"https://comicvine.gamespot.com/shield-3-chapter-three-the-theory-of-eternal-life/4000-227823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240139/","id":240139,"name":"X-Men Forever: Once More... Into the Breach","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-once-more-into-the-breach-1-x-men-fo/4000-240139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293870/","id":293870,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-and-the-warriors-four-1-tpb/4000-293870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252396/","id":252396,"name":"When Heroes Clash!","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-42-when-heroes-clash/4000-252396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380420/","id":380420,"name":"New Avengers: X Exchange","site_detail_url":"https://comicvine.gamespot.com/aafes-10th-edition-10-new-avengers-x-exchange/4000-380420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355523/","id":355523,"name":"The Rules of the Game/Graduation Day","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes-26-the-rules-of-the-gamegraduation-d/4000-355523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266652/","id":266652,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/civil-war-fantastic-four-1-hc/4000-266652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240131/","id":240131,"name":"Crime and Punishment","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-crime-and-punishment-1-cr/4000-240131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230304/","id":230304,"name":"Scared Straight","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-147-scared-straight/4000-230304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227873/","id":227873,"name":"Crime and Punishment, Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-12-crime-and-punishment-part-6/4000-227873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300040/","id":300040,"name":"¡Justicia Ciega!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-18-justicia-ciega/4000-300040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-226893/","id":226893,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-mystery-1/4000-226893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224827/","id":224827,"name":"Super Hero Circus; Super Squaddie Summer Fun!; Bring on the Bad Guys!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad-7-super-hero-circus-super-/4000-224827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198497/","id":198497,"name":"Old Man Logan","site_detail_url":"https://comicvine.gamespot.com/wolverine-old-man-logan-1-old-man-logan/4000-198497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248758/","id":248758,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-11/4000-248758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334840/","id":334840,"name":"Il Guanto dell'Infinito","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-80-il-guanto-dellinfinit/4000-334840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248780/","id":248780,"name":"Incredible NEW IRON MAN Saga Begins!","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-50-incredible-new-iron-man-saga-beg/4000-248780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237421/","id":237421,"name":"Civil War: Avengers","site_detail_url":"https://comicvine.gamespot.com/civil-war-avengers-1-civil-war-avengers/4000-237421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248760/","id":248760,"name":"Who Are the Dark Avengers?","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-23-who-are-the-dark-avengers/4000-248760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246608/","id":246608,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4000-246608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236768/","id":236768,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-4-volume-4/4000-236768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235152/","id":235152,"name":"Book 5","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-5-book-5/4000-235152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233511/","id":233511,"name":"New Avengers: Siege","site_detail_url":"https://comicvine.gamespot.com/new-avengers-siege-1-new-avengers-siege/4000-233511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230929/","id":230929,"name":"The Unholy Resurrection of Leonardo Da Vinci","site_detail_url":"https://comicvine.gamespot.com/shield-directors-cut-1-the-unholy-resurrection-of-/4000-230929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225711/","id":225711,"name":"Crime and Punishment, Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-11-crime-and-punishment-part-5-o/4000-225711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225700/","id":225700,"name":"Thor Reborn, Chapter 3: Lies","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-3-thor-reborn-chapter-3-lie/4000-225700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224512/","id":224512,"name":"A Night on the Town !","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-3-a-night-on-the-town/4000-224512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218552/","id":218552,"name":"Chapter Two: Newton's Theory Of Eternal Life","site_detail_url":"https://comicvine.gamespot.com/shield-2-chapter-two-newtons-theory-of-eternal-lif/4000-218552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260787/","id":260787,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-49/4000-260787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418057/","id":418057,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-1-tpb/4000-418057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246749/","id":246749,"name":"X-Men Forever: Devil in a White Dress","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-devil-in-a-white-dress-1-x-men-forev/4000-246749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-692298/","id":692298,"name":"TPB/HC","site_detail_url":"https://comicvine.gamespot.com/strange-tales-1-tpbhc/4000-692298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231976/","id":231976,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-ultimate-collection-1-tpb/4000-231976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220746/","id":220746,"name":"Crime and Punishment Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-10-crime-and-punishment-part-4/4000-220746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218594/","id":218594,"name":"A Cry of ... Vengeance!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-1-a-cry-of-vengeance/4000-218594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218351/","id":218351,"name":"Crime and Punishment Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-9-crime-and-punishment-part-3-of/4000-218351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217901/","id":217901,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-giant-size-1/4000-217901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295876/","id":295876,"name":"¡Spiderman y los 4 Fantásticos!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-17-spiderman-y-los-4-fant/4000-295876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213493/","id":213493,"name":"Whatever Happened to the Hood?","site_detail_url":"https://comicvine.gamespot.com/new-avengers-finale-1-whatever-happened-to-the-hoo/4000-213493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265333/","id":265333,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-48/4000-265333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256642/","id":256642,"name":"The FALL Of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-20-the-fall-of-shield/4000-256642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385551/","id":385551,"name":"Том 6. Блокбастер","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-luchshiye-syuzhety-6-6/4000-385551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225165/","id":225165,"name":"Invincible Iron Man: Stark Disassembled","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-stark-disassembled-1-invincibl/4000-225165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260786/","id":260786,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-47/4000-260786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216898/","id":216898,"name":"The End Of The Red Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-82-the-end-of-the-red-hulk/4000-216898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216695/","id":216695,"name":"Part Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy-4-part-four/4000-216695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214935/","id":214935,"name":"Patriot Act","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-american-son-1-patriot/4000-214935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214828/","id":214828,"name":"Requiem","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-24-requiem/4000-214828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214733/","id":214733,"name":"Crime & Punishment, Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-8-crime-punishment-part-2-of-6/4000-214733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213921/","id":213921,"name":"The Golden History","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-mgc-1-the-golden-history/4000-213921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213840/","id":213840,"name":"Do Not Go Gentle: Into That Good Night, Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-23-do-not-go-gentle-into-that-good-n/4000-213840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212088/","id":212088,"name":"","site_detail_url":"https://comicvine.gamespot.com/thor-and-the-warriors-four-2/4000-212088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298046/","id":298046,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores-1/4000-298046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204514/","id":204514,"name":"Chapter One: The Unholy Resurrection of Leonardo da Vinci","site_detail_url":"https://comicvine.gamespot.com/shield-1-chapter-one-the-unholy-resurrection-of-le/4000-204514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716080/","id":716080,"name":"Smash & Grab","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-204-smash-and-gr/4000-716080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232965/","id":232965,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-5-volume-five/4000-232965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223684/","id":223684,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-2-book-two/4000-223684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218746/","id":218746,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition-1-volume-one/4000-218746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275713/","id":275713,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-5-volume-5/4000-275713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223844/","id":223844,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-ultimate-collection-1-tpb/4000-223844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222980/","id":222980,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii-1-volume-2/4000-222980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211684/","id":211684,"name":"Civil War 1","site_detail_url":"https://comicvine.gamespot.com/civil-war-mgc-1-civil-war-1/4000-211684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210239/","id":210239,"name":"Death ...and the Dread that Surely Follows","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-15-death-and-the-dread-that-surely/4000-210239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210220/","id":210220,"name":"Crime & Punishment, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-7-crime-punishment-part-1/4000-210220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208808/","id":208808,"name":"Breakout!, Part One","site_detail_url":"https://comicvine.gamespot.com/new-avengers-mgc-1-breakout-part-one/4000-208808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208797/","id":208797,"name":"The Last Waltz","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-annual-1-the-last-waltz/4000-208797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208515/","id":208515,"name":"The Next Generation, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-6-the-next-generation-con/4000-208515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207828/","id":207828,"name":"Who Is The Hulk?","site_detail_url":"https://comicvine.gamespot.com/hulk-mgc-1-who-is-the-hulk/4000-207828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207756/","id":207756,"name":"My Enemy, My Friend","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-1-my-enemy-my-frien/4000-207756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207651/","id":207651,"name":"Part Three","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy-3-part-three/4000-207651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-206855/","id":206855,"name":"A Plague On Both Your Houses!: Into That Good Night, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-21-a-plague-on-both-your-houses-into/4000-206855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295875/","id":295875,"name":"¡La serpiente se alza!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-16-la-serpiente-se-alza/4000-295875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232260/","id":232260,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-10-volume-10/4000-232260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202663/","id":202663,"name":"The She-Hulk Story That's A Riff On Christmas Carol; Ladies' Night","site_detail_url":"https://comicvine.gamespot.com/she-hulk-sensational-1-the-she-hulk-story-thats-a-/4000-202663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227382/","id":227382,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-mancaptain-america-1-tpb/4000-227382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213064/","id":213064,"name":"Proximity","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-black-widow-agent-of-shield-1-proximity/4000-213064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385550/","id":385550,"name":"Том 5. Возвращение короля","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-luchshiye-syuzhety-5-5/4000-385550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324500/","id":324500,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-79/4000-324500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252045/","id":252045,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-adventures-4/4000-252045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246748/","id":246748,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-come-to-mother-russia-1-volume-3/4000-246748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233673/","id":233673,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-4-volume-4/4000-233673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202685/","id":202685,"name":"-- Can Also Set Us Free!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-20--can-also-set-us-free/4000-202685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200206/","id":200206,"name":"The Ties That Bind","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-19-the-ties-that-bind/4000-200206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198821/","id":198821,"name":"Thor Reborn, Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates-1-thor-reborn-chapter-1/4000-198821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454032/","id":454032,"name":"Invincible","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-2-invincible/4000-454032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216431/","id":216431,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion-1-tpb/4000-216431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196850/","id":196850,"name":"Change-- Is More Than Skin Deep!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-17-change-is-more-than-skin-deep/4000-196850/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212500/","id":212500,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-omnibus-2-volume-2/4000-212500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212036/","id":212036,"name":"Just Off The Farm","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-phil-coulson-agent-of-shield-1-just-off/4000-212036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212048/","id":212048,"name":"Who Made Who","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-nick-fury-director-of-shield-1-who-made/4000-212048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198624/","id":198624,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/iron-man-i-am-iron-man-2-part-two/4000-198624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318693/","id":318693,"name":"","site_detail_url":"https://comicvine.gamespot.com/iron-man-magazine-special-edition-1/4000-318693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244788/","id":244788,"name":"The Gods Go To War!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-7-the-gods-go-to-war/4000-244788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228276/","id":228276,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/iron-man-deadly-solutions-1-hc/4000-228276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211136/","id":211136,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-knights-of-hykon-1-tpb/4000-211136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199080/","id":199080,"name":"The Five Nightmares, Part 1: Armageddon Days","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-mgc-1-the-five-nightmares-part/4000-199080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198819/","id":198819,"name":"The Next Generation, Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-5-the-next-generation-par/4000-198819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198501/","id":198501,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy-2-part-two/4000-198501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451416/","id":451416,"name":"","site_detail_url":"https://comicvine.gamespot.com/reino-oscuro-wolverine-origins-1/4000-451416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298381/","id":298381,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimatum-requiem-2/4000-298381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295874/","id":295874,"name":"¡Los cazadores y los cazados!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-15-los-cazadores-y-los-ca/4000-295874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290750/","id":290750,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-51/4000-290750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252914/","id":252914,"name":"Target: ECHO!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-16-target-echo/4000-252914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200024/","id":200024,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/hulk-hulk-no-more-1-volume-3/4000-200024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195977/","id":195977,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil-1-tpb/4000-195977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189583/","id":189583,"name":"What If ORD Ressurected Jean Grey Instead Of Colossus? What If Danger Became Ultron's Bride? Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-astonishing-x-men-1-what-if-ord-ressurecte/4000-189583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194808/","id":194808,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/iron-man-i-am-iron-man-1-part-one/4000-194808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203406/","id":203406,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-omnibus-1-volume-1/4000-203406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251537/","id":251537,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-2/4000-251537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-928838/","id":928838,"name":null,"site_detail_url":"https://comicvine.gamespot.com/shield-sketchbook-1/4000-928838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-693592/","id":693592,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-i-am-iron-man-1-tpb/4000-693592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307113/","id":307113,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-99/4000-307113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246741/","id":246741,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-the-secret-history-of-the-sentinels-/4000-246741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244785/","id":244785,"name":"Ares Attacks!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-6-ares-attacks/4000-244785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211258/","id":211258,"name":"Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier-ultimate-collection/4000-211258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202003/","id":202003,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-1-hc-tpb/4000-202003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192376/","id":192376,"name":"Stark: Disassembled, Part Three: Is it Safe?","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-22-stark-disassembled-part/4000-192376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290749/","id":290749,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-50/4000-290749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199292/","id":199292,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-in-search-of-galactus-1-hc/4000-199292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186932/","id":186932,"name":"The Sky Is Falling","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-6-the-sky-is-falling/4000-186932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202825/","id":202825,"name":"Incredible Hercules: Sacred Invasion HC","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-sacred-invasion-1-incredible-h/4000-202825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198492/","id":198492,"name":"House Of M: Wolverine, Iron Man & Hulk","site_detail_url":"https://comicvine.gamespot.com/house-of-m-wolverine-iron-man-hulk-1-house-of-m-wo/4000-198492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200915/","id":200915,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-molecule-man-1-hc-tpb/4000-200915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417734/","id":417734,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-02/4000-417734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220394/","id":220394,"name":"Iron Man: The Ultimate Guide To The Armored Super Hero","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-ultimate-guide-to-the-armored-super-h/4000-220394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199872/","id":199872,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-5-volume-5/4000-199872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196460/","id":196460,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-tales-of-the-golden-avenger-1-tpb/4000-196460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444944/","id":444944,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-444944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434906/","id":434906,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-63/4000-434906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307140/","id":307140,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-98/4000-307140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284032/","id":284032,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-57/4000-284032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244369/","id":244369,"name":"World War Hulk Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-5-world-war-hulk-conclu/4000-244369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200233/","id":200233,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-1-book-one/4000-200233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189595/","id":189595,"name":"Black Magik part 4 of 4:Darkness At Dawn!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-14-black-magik-part-4-of-4darkness-a/4000-189595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187753/","id":187753,"name":"What If Daredevil Saved Elektra?; Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-daredevil-vs-elektra-1-what-if-daredevil-s/4000-187753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186665/","id":186665,"name":"Stark: Disassembled, Part Two: Digging in the Dirt","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-21-stark-disassembled-part/4000-186665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300039/","id":300039,"name":"¡Olores y Sentidos!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-14-olores-y-sentidos/4000-300039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291635/","id":291635,"name":"Desgarrada","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-3-desgarrada/4000-291635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199302/","id":199302,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-road-to-reborn-1-tpb/4000-199302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203097/","id":203097,"name":"Avengers: World Trust","site_detail_url":"https://comicvine.gamespot.com/avengers-world-trust-1-avengers-world-trust/4000-203097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199166/","id":199166,"name":"Thing: Project Pegasus","site_detail_url":"https://comicvine.gamespot.com/thing-project-pegasus-1-thing-project-pegasus/4000-199166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434905/","id":434905,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-62/4000-434905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191688/","id":191688,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/siege-prelude-1-tpb/4000-191688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402924/","id":402924,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-5/4000-402924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294025/","id":294025,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/daredevil-omnibus-by-brian-michael-bendis-and-alex/4000-294025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284031/","id":284031,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-56/4000-284031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277068/","id":277068,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-177/4000-277068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263377/","id":263377,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-burning-down-the-house-1-hctpb/4000-263377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252912/","id":252912,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-13/4000-252912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248409/","id":248409,"name":"Civil War: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-spider-man-1-civil-war-spider-man/4000-248409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224962/","id":224962,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fall-of-the-hulks-prelude-1-tpb/4000-224962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203580/","id":203580,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-and-the-avengers-1-tp/4000-203580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184832/","id":184832,"name":"The Next Generation Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-4-the-next-generation-par/4000-184832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184830/","id":184830,"name":"Stark: Disassembled, Part One: Counting Up From Zero","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-20-stark-disassembled-part/4000-184830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183708/","id":183708,"name":"Over the Edge","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-11-over-the-edge/4000-183708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307505/","id":307505,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield-2-vol/4000-307505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292968/","id":292968,"name":"","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-elektra-1/4000-292968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204762/","id":204762,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-hated-and-feared-1-volum/4000-204762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192526/","id":192526,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-6-volume-6/4000-192526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190409/","id":190409,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-force-not-forgotten-1-volume-3/4000-190409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176146/","id":176146,"name":"The Ark; His Girl Friday","site_detail_url":"https://comicvine.gamespot.com/iron-man-iron-protocols-1-the-ark-his-girl-friday/4000-176146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190476/","id":190476,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-3-book-3/4000-190476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204222/","id":204222,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/genext-united-1-tpb/4000-204222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186240/","id":186240,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-disassembled-1-volume-4/4000-186240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199293/","id":199293,"name":"Secret Warriors: Nick Fury, Agent of Nothing","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-nick-fury-agent-of-nothing-1-secre/4000-199293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437023/","id":437023,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-240/4000-437023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300559/","id":300559,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-96/4000-300559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298959/","id":298959,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-61/4000-298959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284030/","id":284030,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-55/4000-284030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277067/","id":277067,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-176/4000-277067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249316/","id":249316,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/ultimatum-march-on-ultimatum-1-hctpb/4000-249316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189634/","id":189634,"name":"Brian Michael Bendis: Ten Years At Marvel","site_detail_url":"https://comicvine.gamespot.com/brian-michael-bendis-ten-years-at-marvel-1-brian-m/4000-189634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179306/","id":179306,"name":"Home, Come The Heroes!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-10-home-come-the-heroes/4000-179306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176846/","id":176846,"name":"World's Most Wanted, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-19-worlds-most-wanted-conc/4000-176846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175926/","id":175926,"name":"Sentinels - Reborn","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-9-sentinels-reborn/4000-175926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175232/","id":175232,"name":"","site_detail_url":"https://comicvine.gamespot.com/strange-tales-2/4000-175232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299437/","id":299437,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-13/4000-299437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298206/","id":298206,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-32/4000-298206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223072/","id":223072,"name":"The Death of Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-omnibus-1-the-death-of-ca/4000-223072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190885/","id":190885,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra-1-tpb/4000-190885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300382/","id":300382,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-106/4000-300382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306218/","id":306218,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-154/4000-306218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298957/","id":298957,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-60/4000-298957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290130/","id":290130,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-233/4000-290130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277066/","id":277066,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-175/4000-277066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232218/","id":232218,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-deathlok-1-volume-1/4000-232218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187205/","id":187205,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-picking-up-where-we-left-off-1-volum/4000-187205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174604/","id":174604,"name":"Fire On The Mountains!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-8-fire-on-the-mountains/4000-174604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170634/","id":170634,"name":"The Next Generation Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-2-the-next-generation-par/4000-170634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170617/","id":170617,"name":"Past Is Prologue","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-7-past-is-prologue/4000-170617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169225/","id":169225,"name":"Unity","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil-2-unity/4000-169225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292829/","id":292829,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-46/4000-292829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290744/","id":290744,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-46/4000-290744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166837/","id":166837,"name":"The Next Generation Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-1-the-next-generation-par/4000-166837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184337/","id":184337,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimatum-1-ultimatum/4000-184337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252908/","id":252908,"name":"The IRON MAN Armada!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-10-the-iron-man-armada/4000-252908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217055/","id":217055,"name":"The Marvel Encyclopedia the Definitive Guide to the Characters of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-marvel-encyclopedia-the-definitive-guide-to-th/4000-217055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300557/","id":300557,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-94/4000-300557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277065/","id":277065,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-174/4000-277065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244366/","id":244366,"name":"World War Hulk begins!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-1-world-war-hulk-begins/4000-244366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178421/","id":178421,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus-1-hc/4000-178421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168577/","id":168577,"name":"Play Day!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-6-play-day/4000-168577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168325/","id":168325,"name":"Code Red, Pt. 1: Eyewitness","site_detail_url":"https://comicvine.gamespot.com/hulk-14-code-red-pt-1-eyewitness/4000-168325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166812/","id":166812,"name":"Bury My Heart - Love & Loss, part 5","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-5-bury-my-heart-love-loss-part-5/4000-166812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298205/","id":298205,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-31/4000-298205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232217/","id":232217,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-6-volum/4000-232217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-210965/","id":210965,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-210965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165514/","id":165514,"name":"The Heart of A Hero; Moving Target","site_detail_url":"https://comicvine.gamespot.com/iron-man-armored-adventures-1-the-heart-of-a-hero-/4000-165514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165068/","id":165068,"name":"Seeing Red; A Hulk of Many Colors; She-Hulk Weapon of A.R.M.O.R.","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-600-seeing-red-a-hulk-of-many-colo/4000-165068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164815/","id":164815,"name":"Born To Rage","site_detail_url":"https://comicvine.gamespot.com/all-new-savage-she-hulk-4-born-to-rage/4000-164815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164814/","id":164814,"name":"Fat Cobra","site_detail_url":"https://comicvine.gamespot.com/immortal-weapons-1-fat-cobra/4000-164814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163700/","id":163700,"name":"Life Model Doggie","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-13-life-model-doggi/4000-163700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192101/","id":192101,"name":"Ultimatum: Spider-Man HC","site_detail_url":"https://comicvine.gamespot.com/ultimatum-spider-man-1-ultimatum-spider-man-hc/4000-192101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176395/","id":176395,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection-3-volume-3/4000-176395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191145/","id":191145,"name":"Marvel Zombies vs. Army Of Darkness","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-1-marvel-zombie/4000-191145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173689/","id":173689,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection-2-book-2/4000-173689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299414/","id":299414,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-35/4000-299414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213816/","id":213816,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/savage-she-hulk-1-tpb/4000-213816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203427/","id":203427,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-5-book-five/4000-203427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186619/","id":186619,"name":"Dark Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-dark-avengers-assemble-1-dark-avenge/4000-186619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299434/","id":299434,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-10/4000-299434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298337/","id":298337,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-21/4000-298337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297902/","id":297902,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-18/4000-297902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297564/","id":297564,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-4/4000-297564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292937/","id":292937,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-23/4000-292937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204226/","id":204226,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-force-old-ghosts-1-volume-2/4000-204226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162132/","id":162132,"name":"Massive Aggressive!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-12-massive-aggressive/4000-162132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169678/","id":169678,"name":"New Avengers: Power","site_detail_url":"https://comicvine.gamespot.com/new-avengers-power-1-new-avengers-power/4000-169678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255944/","id":255944,"name":"The WRATH of CAPTAIN AMERICA!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-84-the-wrath-of-captain/4000-255944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166262/","id":166262,"name":"Fantastic Four: Requiem","site_detail_url":"https://comicvine.gamespot.com/ultimatum-fantastic-four-requiem-1-fantastic-four-/4000-166262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437019/","id":437019,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-236/4000-437019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424953/","id":424953,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-greatest-foes-of-wolverine-1-t/4000-424953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299818/","id":299818,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-51/4000-299818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299413/","id":299413,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-34/4000-299413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277062/","id":277062,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-172/4000-277062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264411/","id":264411,"name":"When Gods Clash!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-180-when-gods-clash/4000-264411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202611/","id":202611,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengersinvaders-1-tpb/4000-202611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200647/","id":200647,"name":"Book Four","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-4-book-four/4000-200647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191366/","id":191366,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/annihilation-classic-1-tpb/4000-191366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189157/","id":189157,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-broken-worlds-1-tpb/4000-189157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167069/","id":167069,"name":"","site_detail_url":"https://comicvine.gamespot.com/devil-hulk-152/4000-167069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161789/","id":161789,"name":"Comes The Father - Love and Loss: Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-comes-the-father-love-and-loss-par/4000-161789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298204/","id":298204,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-30/4000-298204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158803/","id":158803,"name":"Raising The Bar!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-11-raising-the-bar/4000-158803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157930/","id":157930,"name":"Shrink Rap; The Bald Truth; Curious Gorgilla And The Man In the Stovepipe Hat; Little Orphan Angry; Jailhouse Crock; How Fin Fang Foom Saved Christmas","site_detail_url":"https://comicvine.gamespot.com/fin-fang-four-return-1-shrink-rap-the-bald-truth-c/4000-157930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157300/","id":157300,"name":"Passage To India, Part 1: On The Road - Again?!","site_detail_url":"https://comicvine.gamespot.com/genext-united-1-passage-to-india-part-1-on-the-roa/4000-157300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156652/","id":156652,"name":"Die Hard the Hunter; Endless Stolen Sky, Part 4; Demons; Crashing Weddings","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-4-die-hard-the-hunter-endless-st/4000-156652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205553/","id":205553,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-punisher-war-journal-1-tpb/4000-205553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256647/","id":256647,"name":"The FINAL BATTLE!","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-7-the-final-battle/4000-256647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299705/","id":299705,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-2/4000-299705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168470/","id":168470,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one-3-volume-3/4000-168470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255942/","id":255942,"name":"The HULK Battles The RED KING!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-83-the-hulk-battles-the/4000-255942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240155/","id":240155,"name":"Hulk: Red & Green","site_detail_url":"https://comicvine.gamespot.com/hulk-red-green-1-hulk-red-green/4000-240155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185310/","id":185310,"name":"The Immortal Iron Fist Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-omnibus-1-the-immortal-iron/4000-185310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307110/","id":307110,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-91/4000-307110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301019/","id":301019,"name":"The World's Most Unlikeable Super Hero","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-1-the-worlds-most-unlikea/4000-301019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264422/","id":264422,"name":"The Secret of Emma Frost!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-179-the-secret-of-emma-frost/4000-264422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199541/","id":199541,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-3-volume-3/4000-199541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185468/","id":185468,"name":"Ultimates Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimates-omnibus-1-ultimates-omnibus/4000-185468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176169/","id":176169,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn-1-uncanny-x-men-lovelorn/4000-176169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158680/","id":158680,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-3-book-three/4000-158680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157718/","id":157718,"name":"Rubicon","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-alpha-1-rubicon/4000-157718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299432/","id":299432,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-8/4000-299432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192667/","id":192667,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel-1-tpb/4000-192667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178295/","id":178295,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-secret-wars-1/4000-178295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155707/","id":155707,"name":"A Cancer Within...","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-10-a-cancer-within/4000-155707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255941/","id":255941,"name":"Attack of The Punisher","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-82-attack-of-the-punish/4000-255941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181825/","id":181825,"name":"X-Factor: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/x-factor-secret-invasion-1-x-factor-secret-invasio/4000-181825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170734/","id":170734,"name":"Avengers: The Initiative: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion-1-avengers/4000-170734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213954/","id":213954,"name":"Sentry: Age of the Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry-age-of-the-sentry-1-sentry-age-of-the-sentr/4000-213954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203178/","id":203178,"name":"Deadpool: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/deadpool-secret-invasion-1-deadpool-secret-invasio/4000-203178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291778/","id":291778,"name":"House of M: Civil War","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-80-house-of-m-civil-war/4000-291778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200655/","id":200655,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles-2-book-two/4000-200655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199359/","id":199359,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-1-tpb/4000-199359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159269/","id":159269,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-133-ultimatum/4000-159269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156150/","id":156150,"name":"Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk-5-part-5-of-6/4000-156150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155916/","id":155916,"name":"Disassembled, Part 3","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-23-disassembled-part-3/4000-155916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298203/","id":298203,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-29/4000-298203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295870/","id":295870,"name":"Spiderman y la Viuda Negra","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-10-spiderman-y-la-viuda-n/4000-295870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213815/","id":213815,"name":null,"site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-secret-invasion-1/4000-213815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154516/","id":154516,"name":"Yesterday Gambit","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-9-yesterday-gambit/4000-154516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153998/","id":153998,"name":"A Matter Of Seconds...!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-9-a-matter-of-seconds/4000-153998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153956/","id":153956,"name":"Missing Links","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-featuring-reptil-1-missing/4000-153956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203582/","id":203582,"name":"Bringers of the Storm","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-thor-1-bringers-of-the-storm/4000-203582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335565/","id":335565,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secret-invasion-2-book-2/4000-335565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264305/","id":264305,"name":"Torn!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-177-torn/4000-264305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211264/","id":211264,"name":"Endless Stolen Skies, Part 6","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-iron-man-2020-6-endless-stolen-s/4000-211264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307108/","id":307108,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-89/4000-307108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249311/","id":249311,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-trilogy-1-tpb/4000-249311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201642/","id":201642,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-2-volume-2/4000-201642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200160/","id":200160,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe-1-volume-1/4000-200160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160882/","id":160882,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man-9-volume-9/4000-160882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153959/","id":153959,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra-1-part-one/4000-153959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153678/","id":153678,"name":"Old Man Logan, Part 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-71-old-man-logan-part-6/4000-153678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153677/","id":153677,"name":"Heaven on Earth","site_detail_url":"https://comicvine.gamespot.com/ultimatum-3-heaven-on-earth/4000-153677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298335/","id":298335,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-19/4000-298335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152572/","id":152572,"name":"The Legend Reborn!","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes-8-the-legend-reborn/4000-152572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152420/","id":152420,"name":"Gather Darkness","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-8-gather-darkness/4000-152420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199887/","id":199887,"name":"Civil War: House of M","site_detail_url":"https://comicvine.gamespot.com/civil-war-house-of-m-1-civil-war-house-of-m/4000-199887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-337554/","id":337554,"name":"Guerra Segreta","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-5-guerra-segreta/4000-337554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169711/","id":169711,"name":"Mighty Avengers: Secret Invasion, Book One","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one-1-mighty-/4000-169711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211263/","id":211263,"name":"Endless Stolen Skies","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-iron-man-2020-5-endless-stolen-s/4000-211263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335770/","id":335770,"name":"Spder-Man Back in Black","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-3-spder-man-back-in-blac/4000-335770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443461/","id":443461,"name":"Wolverine: Nemico pubblico","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-6-wolverine-nemico-pubbl/4000-443461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285831/","id":285831,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-3/4000-285831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284025/","id":284025,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-47/4000-284025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277055/","id":277055,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-168/4000-277055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255156/","id":255156,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-3/4000-255156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190607/","id":190607,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-disassembled-iron-man-thor-and-captain-am/4000-190607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181919/","id":181919,"name":"The Invincible Iron Man: The Five Nightmares","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-the-five-nightmares-1-the-invi/4000-181919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176292/","id":176292,"name":"Avengers: Hawkeye","site_detail_url":"https://comicvine.gamespot.com/avengers-hawkeye-1-avengers-hawkeye/4000-176292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171719/","id":171719,"name":"Secret Invasion: New Warriors","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-new-warriors-1-secret-invasion-new/4000-171719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152716/","id":152716,"name":"Weapon XI, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-33-weapon-xi-pt-1/4000-152716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152605/","id":152605,"name":"Suicide Leper: Part 1","site_detail_url":"https://comicvine.gamespot.com/x-force-12-suicide-leper-part-1/4000-152605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151137/","id":151137,"name":"Nick Fury: Agent of Nothing, Part 1","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-1-nick-fury-agent-of-nothing-part-/4000-151137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299428/","id":299428,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-4/4000-299428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295869/","id":295869,"name":"No Es Manera DeTratar A Una Dama","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-9-no-es-manera-detratar-a/4000-295869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237656/","id":237656,"name":"Volume 21","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-war-of-the-symbiotes-1-volume-/4000-237656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183606/","id":183606,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/moon-knight-the-death-of-marc-spector-1-hctpb/4000-183606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151824/","id":151824,"name":"Cry, D'Spayre","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-8-cry-d-spayre/4000-151824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150594/","id":150594,"name":"One Fine Day (Part 1)","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-7-one-fine-day-part-1/4000-150594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335453/","id":335453,"name":"La Morte di Capitan America","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-2-la-morte-di-capitan-am/4000-335453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220393/","id":220393,"name":"Wolverine: Inside The World Of The Living Weapon","site_detail_url":"https://comicvine.gamespot.com/wolverine-inside-the-world-of-the-living-weapon-1-/4000-220393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192867/","id":192867,"name":"The Death of Captain America: The Man Who Bought America","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-man-who-bought-americ/4000-192867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169668/","id":169668,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secret-invasion-1-book-one/4000-169668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312111/","id":312111,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-1-civil-war/4000-312111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300576/","id":300576,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-16/4000-300576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385547/","id":385547,"name":"Том 2. Возвращение в Оружие Икс","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-luchshiye-syuzhety-2-2/4000-385547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385918/","id":385918,"name":"Человек-Паук и Росомаха","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-i-rosomakha-spetsialnoye-isdaniye-1-/4000-385918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213812/","id":213812,"name":"Punisher War Journal: Jigsaw","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-jigsaw-1-punisher-war-journal/4000-213812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211262/","id":211262,"name":"Endless Stolen Skies, Part 4","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-iron-man-2020-4-endless-stolen-s/4000-211262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252392/","id":252392,"name":"Friends No More...?","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-32-friends-no-more/4000-252392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255157/","id":255157,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-2/4000-255157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213977/","id":213977,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/she-hulk-here-today-1-volume-7/4000-213977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203179/","id":203179,"name":"Fantastic Four: World's Greatest","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-worlds-greatest-1-fantastic-four-wo/4000-203179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150498/","id":150498,"name":"White Queen, Dark Reign","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual-2-white-queen-dark-reign/4000-150498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150495/","id":150495,"name":"Assemble","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-1-assemble/4000-150495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150049/","id":150049,"name":"Rex","site_detail_url":"https://comicvine.gamespot.com/house-of-m-civil-war-5-rex/4000-150049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298334/","id":298334,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-18/4000-298334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183736/","id":183736,"name":"Director of S.H.I.E.L.D.: With Iron Hands","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield-with-iron-hands-1-dire/4000-183736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149482/","id":149482,"name":"What If...Doctor Doom Kept The Beyonder's Power; What If The Runaways Became The Young Avengers, Part 5 (of 5)","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-wars-1-what-ifdoctor-doom-kept-the-/4000-149482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149289/","id":149289,"name":"Should Old Acquaintance Be Forgot","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-7-should-old-acquaintance-be-for/4000-149289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148697/","id":148697,"name":"What If Mary Jane had been shot instead of Aunt May?; What If The Runaways Became The Young Avengers?, Part 4","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-back-in-black-1-what-if-mary-ja/4000-148697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148100/","id":148100,"name":"Power to the People! Part 6: Powered Up!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-6-power-to-the-people-part-6-powe/4000-148100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144995/","id":144995,"name":null,"site_detail_url":"https://comicvine.gamespot.com/hulk-family-green-genes-1/4000-144995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144410/","id":144410,"name":"What If... Scarlet Witch Ended The \"House Of M\" By Saying \"No More Powers\"?; What If... Runaways Became The Young Avengers? Part 1 Of 5","site_detail_url":"https://comicvine.gamespot.com/what-if-house-of-m-1-what-if-scarlet-witch-ended-t/4000-144410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144384/","id":144384,"name":"Iron Man: Fast Friends; Incredible Hulk: The Fury Files; Nick Fury: Spies Like Us","site_detail_url":"https://comicvine.gamespot.com/iron-manhulkfury-1-iron-man-fast-friends-incredibl/4000-144384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148630/","id":148630,"name":"Jackpot; The Revenge of the Lady Liberators; Hulk Ice","site_detail_url":"https://comicvine.gamespot.com/hulk-9-jackpot-the-revenge-of-the-lady-liberators-/4000-148630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299704/","id":299704,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-1/4000-299704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195585/","id":195585,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-war-machine-1-tpb/4000-195585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172976/","id":172976,"name":"Secret Invasion: Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-captain-marvel-1-secret-invasion-c/4000-172976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240152/","id":240152,"name":"Hulk: Red Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk-red-hulk-1-hulk-red-hulk/4000-240152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211261/","id":211261,"name":"Endless Stolen Skies, Part 3","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-iron-man-2020-3-endless-stolen-s/4000-211261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255164/","id":255164,"name":null,"site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered-1/4000-255164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172944/","id":172944,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-1-secret-invasion/4000-172944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288617/","id":288617,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-49/4000-288617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277050/","id":277050,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-166/4000-277050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256072/","id":256072,"name":"A New Story Begins... SHE-HULK Under Fire!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-78-a-new-story-begins-s/4000-256072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192307/","id":192307,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine-4/4000-192307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148888/","id":148888,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-129-ultimatum/4000-148888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148691/","id":148691,"name":"Family Business, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-31-family-business-pt-1/4000-148691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148641/","id":148641,"name":"Dark Reign","site_detail_url":"https://comicvine.gamespot.com/new-avengers-48-dark-reign/4000-148641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146979/","id":146979,"name":"The Death Of Marc Spector, Chapter Five","site_detail_url":"https://comicvine.gamespot.com/moon-knight-25-the-death-of-marc-spector-chapter-f/4000-146979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-146978/","id":146978,"name":"Smart Business","site_detail_url":"https://comicvine.gamespot.com/x-factor-38-smart-business/4000-146978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145533/","id":145533,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel-2-part-two/4000-145533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292718/","id":292718,"name":"Vapuleados","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-guerreros-2-vapuleados/4000-292718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289808/","id":289808,"name":"","site_detail_url":"https://comicvine.gamespot.com/invasion-secreta-1/4000-289808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205860/","id":205860,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-6-volume-6/4000-205860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198978/","id":198978,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-1-hctpb/4000-198978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185463/","id":185463,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-1-tpb/4000-185463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185211/","id":185211,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-5-volume-5/4000-185211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143478/","id":143478,"name":"Burning Love","site_detail_url":"https://comicvine.gamespot.com/true-believers-5-burning-love/4000-143478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142697/","id":142697,"name":"Power To The People, Part 5: Overpowered","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-5-power-to-the-people-part-5-over/4000-142697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142564/","id":142564,"name":"Man on Fire","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-6-man-on-fire/4000-142564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406777/","id":406777,"name":"","site_detail_url":"https://comicvine.gamespot.com/captain-america-taco-bell-1/4000-406777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211260/","id":211260,"name":"Endless Stolen Skies, Part 2","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-iron-man-2020-2-endless-stolen-s/4000-211260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204223/","id":204223,"name":"X-Force: Angels and Demons","site_detail_url":"https://comicvine.gamespot.com/x-force-angels-and-demons-1-x-force-angels-and-dem/4000-204223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742450/","id":742450,"name":"Potere Assoluto 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-49-potere-assoluto-1/4000-742450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299799/","id":299799,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-44/4000-299799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284029/","id":284029,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-54/4000-284029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233672/","id":233672,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-3-volume-3/4000-233672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-209211/","id":209211,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-dead-days-1-hctpb/4000-209211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163036/","id":163036,"name":"Prologue","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-prologue-0-prologue/4000-163036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155873/","id":155873,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-hulk-5-volume-5/4000-155873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148627/","id":148627,"name":"It Gets Worse...","site_detail_url":"https://comicvine.gamespot.com/ultimatum-2-it-gets-worse/4000-148627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144233/","id":144233,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-8/4000-144233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143285/","id":143285,"name":"War of the Symbiotes, Part 6: Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-128-war-of-the-symbiotes-part-/4000-143285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143269/","id":143269,"name":"Old Ghosts, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/x-force-9-old-ghosts-part-3-of-4/4000-143269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143159/","id":143159,"name":"What Happens In Vegas...; ...Like A Woman Scorned!; Hulk Airport","site_detail_url":"https://comicvine.gamespot.com/hulk-8-what-happens-in-vegas-like-a-woman-scorned-/4000-143159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142739/","id":142739,"name":"The Death of Marc Spector, Chapter Four","site_detail_url":"https://comicvine.gamespot.com/moon-knight-24-the-death-of-marc-spector-chapter-f/4000-142739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142565/","id":142565,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-37/4000-142565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142548/","id":142548,"name":"Burning Down The House, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-126-burning-down-the-house-pt-1/4000-142548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142547/","id":142547,"name":"Secret Invasion, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-25-secret-invasion-part-2-of-/4000-142547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141556/","id":141556,"name":"The Five Nightmares, Epilogue: Clifton Pollard","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-7-the-five-nightmares-epil/4000-141556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141552/","id":141552,"name":"Reign","site_detail_url":"https://comicvine.gamespot.com/house-of-m-civil-war-3-reign/4000-141552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-473071/","id":473071,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-saga-2-volume-two/4000-473071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447126/","id":447126,"name":"Volumen 2","site_detail_url":"https://comicvine.gamespot.com/omnibus-house-of-m-2-volumen-2/4000-447126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299426/","id":299426,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-2/4000-299426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245367/","id":245367,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson-1-volume-one/4000-245367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176069/","id":176069,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-band-of-brothers-1-volume-2/4000-176069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173979/","id":173979,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-1-tpb/4000-173979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-145938/","id":145938,"name":"The Birth Of...The Gibbon!; To Stalk A Spider!; The Final Chapter!","site_detail_url":"https://comicvine.gamespot.com/marvel-apes-0-the-birth-ofthe-gibbon-to-stalk-a-sp/4000-145938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141379/","id":141379,"name":"Family Plots","site_detail_url":"https://comicvine.gamespot.com/true-believers-4-family-plots/4000-141379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141261/","id":141261,"name":"Favorite Son: The Origin of the Black Panther; Training Day","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-annual-1-favorite-son-the/4000-141261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140142/","id":140142,"name":"Power to the People! Part 4: Higher Powers and Lower Orders!","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-4-power-to-the-people-part-4-high/4000-140142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140139/","id":140139,"name":"One Of Us, Part Three: The Last Refuge Of A Scoundrel","site_detail_url":"https://comicvine.gamespot.com/deadpool-3-one-of-us-part-three-the-last-refuge-of/4000-140139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140126/","id":140126,"name":"Prisoners of War","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-5-prisoners-of-war/4000-140126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385546/","id":385546,"name":"Том 1. Люди будущего","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-luchshiye-syuzhety-1-1/4000-385546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232258/","id":232258,"name":"Volume Eight","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-8-volume-eight/4000-232258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198641/","id":198641,"name":"Nova: Annihilation","site_detail_url":"https://comicvine.gamespot.com/nova-annihilation-1-nova-annihilation/4000-198641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208356/","id":208356,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-punisher-3-volume-3/4000-208356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292124/","id":292124,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-cable-masacre-1/4000-292124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288616/","id":288616,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-48/4000-288616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284023/","id":284023,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-43/4000-284023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140897/","id":140897,"name":"The True Kingpin of the Super-Villains","site_detail_url":"https://comicvine.gamespot.com/new-avengers-46-the-true-kingpin-of-the-super-vill/4000-140897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140858/","id":140858,"name":"What Happens In Vegas; Hell hath no fury...","site_detail_url":"https://comicvine.gamespot.com/hulk-7-what-happens-in-vegas-hell-hath-no-fury/4000-140858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140828/","id":140828,"name":"War of the Symbiotes, Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-127-war-of-the-symbiotes-part-/4000-140828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140513/","id":140513,"name":"Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-5-part-5/4000-140513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140506/","id":140506,"name":"The Death of Marc Spector, Chapter Three","site_detail_url":"https://comicvine.gamespot.com/moon-knight-23-the-death-of-marc-spector-chapter-t/4000-140506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139969/","id":139969,"name":"The Five Nightmares, Part 6: Irrational Actors","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-6-the-five-nightmares-part/4000-139969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139702/","id":139702,"name":"Secret Invasion, Part 1 of 2","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-24-secret-invasion-part-1-of-/4000-139702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437009/","id":437009,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-226/4000-437009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299425/","id":299425,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-1/4000-299425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232215/","id":232215,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-5-volum/4000-232215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138796/","id":138796,"name":"Incredible Hulk #108 / World War Hulk #2","site_detail_url":"https://comicvine.gamespot.com/hulk-chronicles-wwh-3-incredible-hulk-108-world-wa/4000-138796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424949/","id":424949,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-britain-the-lion-and-the-spider-1-tpb/4000-424949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308321/","id":308321,"name":"Security Measures","site_detail_url":"https://comicvine.gamespot.com/iron-man-wal-mart-custom-comic-1-security-measures/4000-308321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298947/","id":298947,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-48/4000-298947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139403/","id":139403,"name":"Blood and Iron: Part 1","site_detail_url":"https://comicvine.gamespot.com/new-warriors-16-blood-and-iron-part-1/4000-139403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139397/","id":139397,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-fourultimate-x-men-annual-1/4000-139397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139368/","id":139368,"name":"Blood Red","site_detail_url":"https://comicvine.gamespot.com/hulk-6-blood-red/4000-139368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139334/","id":139334,"name":"House Of M","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-45-house-of-m/4000-139334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139327/","id":139327,"name":"Old Ghosts, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/x-force-7-old-ghosts-part-1-of-4/4000-139327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139326/","id":139326,"name":"The Man Who Bought America: Part Six","site_detail_url":"https://comicvine.gamespot.com/captain-america-42-the-man-who-bought-america-part/4000-139326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139015/","id":139015,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-18-untitled/4000-139015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138992/","id":138992,"name":"The Death of Marc Spector, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/moon-knight-22-the-death-of-marc-spector-chapter-t/4000-138992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138979/","id":138979,"name":"War Machine: Weapon of S.H.I.E.L.D. Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-33-war-machine-weapon-of-shield-part-1/4000-138979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138234/","id":138234,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-6/4000-138234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137354/","id":137354,"name":"Jigsaw (Part 6)","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-23-jigsaw-part-6/4000-137354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137328/","id":137328,"name":"The Song of the Sleeper!","site_detail_url":"https://comicvine.gamespot.com/eternals-4-the-song-of-the-sleeper/4000-137328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137180/","id":137180,"name":"The Five Nightmares, Part 5: Code Black","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-5-the-five-nightmares-part/4000-137180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261765/","id":261765,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/elektra-by-frank-miller-omnibus-1-hc/4000-261765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141680/","id":141680,"name":"Ursus The Ultra-Bear!; The Secret Of Area B","site_detail_url":"https://comicvine.gamespot.com/the-age-of-the-sentry-2-ursus-the-ultra-bear-the-s/4000-141680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137573/","id":137573,"name":"World War Hulk #1 / Incredible Hulk #107","site_detail_url":"https://comicvine.gamespot.com/hulk-chronicles-wwh-2-world-war-hulk-1-incredible-/4000-137573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135412/","id":135412,"name":"Violent Evolution","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-6-violent-evolution/4000-135412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135067/","id":135067,"name":"Hell on the Helicarrier","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-4-hell-on-the-helicarrier/4000-135067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151428/","id":151428,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-151428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192866/","id":192866,"name":"The Death of Captain America: The Burden of Dreams","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-burden-of-dreams-1-th/4000-192866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742449/","id":742449,"name":"Apocalisse 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-48-apocalisse-2/4000-742449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437008/","id":437008,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-225/4000-437008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385528/","id":385528,"name":"Мир в наше время. Часть 4","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-112-4/4000-385528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385527/","id":385527,"name":"Мир в наше время. Часть 3","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-111-3/4000-385527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298946/","id":298946,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-47/4000-298946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166845/","id":166845,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-secret-invasion-1-secret-invasion/4000-166845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156189/","id":156189,"name":"The Death of Marc Spector, Chapter One","site_detail_url":"https://comicvine.gamespot.com/moon-knight-21-the-death-of-marc-spector-chapter-o/4000-156189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139697/","id":139697,"name":"","site_detail_url":"https://comicvine.gamespot.com/march-on-ultimatum-saga-1/4000-139697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136639/","id":136639,"name":"Secrets and Skrulls, Part 2","site_detail_url":"https://comicvine.gamespot.com/new-warriors-15-secrets-and-skrulls-part-2/4000-136639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136561/","id":136561,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-17-untitled/4000-136561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135986/","id":135986,"name":"With Iron Hands, Part 4 of 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-32-with-iron-hands-part-4-of-4/4000-135986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135981/","id":135981,"name":"The Man Who Bought America, Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-41-the-man-who-bought-america-part/4000-135981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135430/","id":135430,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-5/4000-135430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135190/","id":135190,"name":"Jigsaw Part 5 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-22-jigsaw-part-5-of-6/4000-135190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135072/","id":135072,"name":"The Five Nightmares, Part 4: Neutron Bomb Heart","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-4-the-five-nightmares-part/4000-135072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135069/","id":135069,"name":"Rolling Thunder","site_detail_url":"https://comicvine.gamespot.com/hulk-5-rolling-thunder/4000-135069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298199/","id":298199,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-25/4000-298199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208965/","id":208965,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-1-hc-tpb/4000-208965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134598/","id":134598,"name":"Payback Is A Bitch","site_detail_url":"https://comicvine.gamespot.com/true-believers-1-payback-is-a-bitch/4000-134598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133675/","id":133675,"name":"Sacred Invasion, Part 3: Contact","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-119-sacred-invasion-part-3-con/4000-133675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132968/","id":132968,"name":"Old Ghosts","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-5-old-ghosts/4000-132968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132207/","id":132207,"name":"Homefront","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-3-homefront/4000-132207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216549/","id":216549,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-itsy-bitsy-battles-1-tpb/4000-216549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174133/","id":174133,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-3-volume-3/4000-174133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171672/","id":171672,"name":"New Warriors: Thrashed","site_detail_url":"https://comicvine.gamespot.com/new-warriors-thrashed-1-new-warriors-thrashed/4000-171672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207612/","id":207612,"name":"Incredible Hercules: Against the World","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-against-the-world-1-incredible/4000-207612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249312/","id":249312,"name":"Ultimate Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-ultimate-power/4000-249312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385526/","id":385526,"name":"Мир в наше время. Часть 2","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-110-2/4000-385526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385525/","id":385525,"name":"Мир в наше время. Часть 1","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-109-1/4000-385525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235556/","id":235556,"name":"Apocalypse","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-apocalypse-1-apocalypse/4000-235556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189958/","id":189958,"name":"Keep This Quiet","site_detail_url":"https://comicvine.gamespot.com/iron-man-fast-friends-2-keep-this-quiet/4000-189958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134599/","id":134599,"name":"War of the Symbiotes, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-124-war-of-the-symbiotes-part-/4000-134599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134593/","id":134593,"name":"Secret Invasion: The Battle Of Manhattan. Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-29-secret-invasion-the-battle-of-manhatt/4000-134593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134569/","id":134569,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles-12/4000-134569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134085/","id":134085,"name":"The Only Good Skrull","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-15-the-only-good-skrull/4000-134085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133844/","id":133844,"name":"With Iron Hands, Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-31-with-iron-hands-part-3-of-4/4000-133844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133043/","id":133043,"name":"The Five Nightmares, Part 3: Pepper Potts at the End of the World","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-3-the-five-nightmares-part/4000-133043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133035/","id":133035,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins-2-part-2/4000-133035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132926/","id":132926,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-4/4000-132926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132352/","id":132352,"name":"Jigsaw Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-21-jigsaw-part-4-of-6/4000-132352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298331/","id":298331,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-15/4000-298331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181917/","id":181917,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-death-of-wolverine-1-hctpb/4000-181917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136750/","id":136750,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-12/4000-136750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133981/","id":133981,"name":"To Follow That Dream!","site_detail_url":"https://comicvine.gamespot.com/american-dream-3-to-follow-that-dream/4000-133981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131813/","id":131813,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-15-untitled/4000-131813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131457/","id":131457,"name":"What Means Everything","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-4-what-means-everything/4000-131457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131439/","id":131439,"name":"Farewell; In Plain Sight; Seems Like Old Times; Master of the Cube; The Resistance","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-who-do-you-trust-1-farewell-in-pla/4000-131439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131324/","id":131324,"name":"Battlefield Brooklyn","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-2-battlefield-brooklyn/4000-131324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183605/","id":183605,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/moon-knight-god-and-country-1-hctpb/4000-183605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132143/","id":132143,"name":"Death of the Invisible Woman Part 1: The New Defenders","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-558-death-of-the-invisible-woman-pa/4000-132143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284024/","id":284024,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-45/4000-284024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256202/","id":256202,"name":"The Best of British: Union Jack!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-71-the-best-of-british-/4000-256202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131346/","id":131346,"name":"The Five Nightmares, Part 2: Murder, Inc.","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-2-the-five-nightmares-part/4000-131346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446257/","id":446257,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men-1/4000-446257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435374/","id":435374,"name":"Supreendentes X-Men: Edição Especial","site_detail_url":"https://comicvine.gamespot.com/supreendentes-x-men-1-supreendentes-x-men-edicao-e/4000-435374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131852/","id":131852,"name":"Red Light, Green Light","site_detail_url":"https://comicvine.gamespot.com/hulk-4-red-light-green-light/4000-131852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131818/","id":131818,"name":"We Have Met the Enemy, and They Are Us","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-14-we-have-met-the-enemy-a/4000-131818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131808/","id":131808,"name":"The Empire","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-42-the-empire/4000-131808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131791/","id":131791,"name":"Jigsaw Part 3 of 6","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-20-jigsaw-part-3-of-6/4000-131791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131545/","id":131545,"name":"With Iron Hands, Part 2 of 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-30-with-iron-hands-part-2-of-4/4000-131545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131424/","id":131424,"name":"God and Country, Conclusion","site_detail_url":"https://comicvine.gamespot.com/moon-knight-19-god-and-country-conclusion/4000-131424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131297/","id":131297,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-3/4000-131297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504240/","id":504240,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-order-california-dreaming-1-volume-2/4000-504240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299368/","id":299368,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-1/4000-299368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298308/","id":298308,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-vision-2/4000-298308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298198/","id":298198,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-24/4000-298198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295865/","id":295865,"name":"¡El Azote del Látigo!","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up-5-el-azote-del-latigo/4000-295865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213810/","id":213810,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-hunterhunted-1-volume-3/4000-213810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181925/","id":181925,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-haunted-1-tpb/4000-181925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172721/","id":172721,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/penance-relentless-1-tpb/4000-172721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130325/","id":130325,"name":"The Movement You Need","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-3-the-movement-you-need/4000-130325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129590/","id":129590,"name":"Old Soldiers, New Wars","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-1-old-soldiers-new-wars/4000-129590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300578/","id":300578,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-18/4000-300578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169589/","id":169589,"name":"New Avengers: The Trust","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-trust-1-new-avengers-the-trust/4000-169589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256627/","id":256627,"name":"Out of Order/Peace in Our Time/New Kid in Town","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-70-out-of-orderpeace-in/4000-256627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217587/","id":217587,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/marvels-1-hc/4000-217587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192864/","id":192864,"name":"The Death of Captain America: The Death of the Dream","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-death-of-the-dream-1-/4000-192864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267105/","id":267105,"name":"Book One: Old Soldiers, New Wars","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders-1-director-s-cut-1-book-one-old-/4000-267105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207571/","id":207571,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-warbound-1-tpb/4000-207571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192126/","id":192126,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-hulk-vs-the-marvel-universe-1-tpb/4000-192126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130975/","id":130975,"name":"The Secret Invasion!: Part 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-27-the-secret-invasion-part-3/4000-130975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130973/","id":130973,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-41-untitled/4000-130973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130970/","id":130970,"name":"Angels & Demons, Part 4 of 6","site_detail_url":"https://comicvine.gamespot.com/x-force-4-angels-demons-part-4-of-6/4000-130970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130785/","id":130785,"name":"With Iron Hands, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-29-with-iron-hands-part-1-of-4/4000-130785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129770/","id":129770,"name":"God and Country, Chapter Five","site_detail_url":"https://comicvine.gamespot.com/moon-knight-18-god-and-country-chapter-five/4000-129770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129659/","id":129659,"name":"The Five Nightmares, Part 1: Armageddon Days","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-1-the-five-nightmares-part/4000-129659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447125/","id":447125,"name":"Volumen 1","site_detail_url":"https://comicvine.gamespot.com/omnibus-house-of-m-1-volumen-1/4000-447125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297888/","id":297888,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-5/4000-297888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290728/","id":290728,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-30/4000-290728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156498/","id":156498,"name":"Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-warbound-5-part-5-of-5/4000-156498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127125/","id":127125,"name":"The Breaks","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-2-the-breaks/4000-127125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251897/","id":251897,"name":"WOLVERINE has a NEW TARGET...THE WINTER SOLDIER","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-152-wolverine-has-a-new-tar/4000-251897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207568/","id":207568,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-damage-control-1-tpb/4000-207568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186465/","id":186465,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-1-world-war-hulk/4000-186465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385519/","id":385519,"name":"Вторжение Мандарина. Часть 6","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-103-6/4000-385519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288613/","id":288613,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-45/4000-288613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277003/","id":277003,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-158/4000-277003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276216/","id":276216,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/eternals-by-jack-kirby-1-book-one/4000-276216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255229/","id":255229,"name":"Angels and Demons","site_detail_url":"https://comicvine.gamespot.com/x-force-legacy-of-vengeance-1-angels-and-demons/4000-255229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129066/","id":129066,"name":"Apocalypse, Conclusion","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-93-apocalypse-conclusion/4000-129066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129038/","id":129038,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-order-10/4000-129038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128968/","id":128968,"name":"Changing of the Guard","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-12-changing-of-the-guard/4000-128968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128210/","id":128210,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-12-untitled/4000-128210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128190/","id":128190,"name":"The Secret Invasion!: Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-26-the-secret-invasion-part-2/4000-128190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127621/","id":127621,"name":"The Complete Edition","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition-/4000-127621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127562/","id":127562,"name":"Haunted","site_detail_url":"https://comicvine.gamespot.com/iron-man-28-haunted/4000-127562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127560/","id":127560,"name":"Orthodox","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-5-orthodox/4000-127560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127508/","id":127508,"name":"Worst Case Scenario","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-11-worst-case-scenario/4000-127508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127500/","id":127500,"name":"The Man Who Bought America, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-37-the-man-who-bought-america-part/4000-127500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127141/","id":127141,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles-10/4000-127141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126447/","id":126447,"name":"God and Country, Chapter Four","site_detail_url":"https://comicvine.gamespot.com/moon-knight-17-god-and-country-chapter-four/4000-126447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126370/","id":126370,"name":null,"site_detail_url":"https://comicvine.gamespot.com/secret-invasion-1/4000-126370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298197/","id":298197,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-23/4000-298197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213945/","id":213945,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-who-do-you-trust-1-tpb/4000-213945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162956/","id":162956,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-2-volume-2/4000-162956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125189/","id":125189,"name":"Destiny Falls","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders-1-destiny-falls/4000-125189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259714/","id":259714,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-new-fantastic-four-1-hctpb/4000-259714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216791/","id":216791,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-john-byrne-1-volume-1/4000-216791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207570/","id":207570,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-incredible-herc-1-tpb/4000-207570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207569/","id":207569,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-gamma-corps-1-tpb/4000-207569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742446/","id":742446,"name":"Sentinelle 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-45-sentinelle-2/4000-742446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437003/","id":437003,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-220/4000-437003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385517/","id":385517,"name":"Вторжение Мандарина. Часть 4","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-101-4/4000-385517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385089/","id":385089,"name":"Разрыв. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-136-1/4000-385089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251896/","id":251896,"name":"The Silver Samurai!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-151-the-silver-samurai/4000-251896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186637/","id":186637,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-x-men-1-tpb/4000-186637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126006/","id":126006,"name":"The Venom Bomb, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-11-the-venom-bomb-pt-5/4000-126006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125979/","id":125979,"name":"Apocalypse Part 3 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-92-apocalypse-part-3-of-4/4000-125979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125718/","id":125718,"name":"Alien Hated","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-4-alien-hated/4000-125718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125193/","id":125193,"name":"Confirmed Kills","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-10-confirmed-kills/4000-125193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125025/","id":125025,"name":"How I Survived The Good Ol' Days","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-17-how-i-survived-the-good-ol/4000-125025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124685/","id":124685,"name":"Angels & Demons, Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/x-force-2-angels-demons-part-2-of-6/4000-124685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298150/","id":298150,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1/4000-298150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193372/","id":193372,"name":"Planet Hulk","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-planet-hulk-1-planet-hulk/4000-193372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176179/","id":176179,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-back-in-black-1-hctpb/4000-176179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134019/","id":134019,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-enter-the-mandarin-6/4000-134019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126501/","id":126501,"name":"Looter's Quest","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-7-looters-quest/4000-126501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122546/","id":122546,"name":"Monster and Marvel, Part 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-24-monster-and-marvel-part-4/4000-122546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128216/","id":128216,"name":"Creatures on the loose","site_detail_url":"https://comicvine.gamespot.com/hulk-3-creatures-on-the-loose/4000-128216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220395/","id":220395,"name":"Iron Man: Beneath The Armor","site_detail_url":"https://comicvine.gamespot.com/iron-man-beneath-the-armor-1-iron-man-beneath-the-/4000-220395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170500/","id":170500,"name":"Avengers: The Initiative: Basic Training","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-basic-training-1-avengers-/4000-170500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245816/","id":245816,"name":"Target: Nick Fury!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-149-target-nick-fury/4000-245816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150312/","id":150312,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-iron-man-3-volume-3/4000-150312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385514/","id":385514,"name":"Вторжение Мандарина. Часть 1","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-98-1/4000-385514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284016/","id":284016,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-35/4000-284016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275710/","id":275710,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-2-volume-2/4000-275710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174039/","id":174039,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-power-to-the-people-1-volume-1/4000-174039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171946/","id":171946,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/moon-knight-midnight-sun-1-tpb/4000-171946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126865/","id":126865,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-prologue-1/4000-126865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126174/","id":126174,"name":"The New Recruit; How the Black Widow got her Mod Look","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-9-the-new-recruit-how-the-black-/4000-126174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125757/","id":125757,"name":"Glory Of Hera","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-115-glory-of-hera/4000-125757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124075/","id":124075,"name":"The Burden of Dreams (Part 5 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-35-the-burden-of-dreams-part-5-of-/4000-124075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123590/","id":123590,"name":"Haunted, Part 6","site_detail_url":"https://comicvine.gamespot.com/iron-man-26-haunted-part-6/4000-123590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123416/","id":123416,"name":"Apocalypse, Part 2 (of 4)","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-91-apocalypse-part-2-of-4/4000-123416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123373/","id":123373,"name":"The Venom Bomb, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-9-the-venom-bomb-pt-3/4000-123373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122929/","id":122929,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles-8/4000-122929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122783/","id":122783,"name":"Angels & Demons, Part 1 of 6","site_detail_url":"https://comicvine.gamespot.com/x-force-1-angels-demons-part-1-of-6/4000-122783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122539/","id":122539,"name":"God And Country, Chapter Two","site_detail_url":"https://comicvine.gamespot.com/moon-knight-15-god-and-country-chapter-two/4000-122539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122068/","id":122068,"name":"The Venom Bomb, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-8-the-venom-bomb-pt-2/4000-122068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290725/","id":290725,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-27/4000-290725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133159/","id":133159,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-monster-smash-1-volume-4/4000-133159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122073/","id":122073,"name":"The Spider Who Went Into The Cold","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-vs-wolverine-1-the-spider-who-w/4000-122073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120864/","id":120864,"name":"Monster and Marvel, Part 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-23-monster-and-marvel-part-3/4000-120864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399459/","id":399459,"name":"ZERRISSEN","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks-3-zerrissen/4000-399459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213718/","id":213718,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-goin-out-west-1-volume-2/4000-213718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385025/","id":385025,"name":"Стражи. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-132-2/4000-385025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324545/","id":324545,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-67/4000-324545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276967/","id":276967,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-155/4000-276967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174130/","id":174130,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-revolution-1-tpb/4000-174130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155831/","id":155831,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-4-volume-four/4000-155831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150990/","id":150990,"name":"The Death Of Captain America, Act 2, The Burden of Dreams: Part Four. Director's Cut","site_detail_url":"https://comicvine.gamespot.com/captain-america-34-directors-cut-the-death-of-capt/4000-150990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123397/","id":123397,"name":"Walls Of Troy, Part Three of the Incredible Herc","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-114-walls-of-troy-part-three-o/4000-123397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122806/","id":122806,"name":"Deep Background","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-3-deep-background/4000-122806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122215/","id":122215,"name":"First Casualties","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-9-first-casualties/4000-122215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122069/","id":122069,"name":"The Burden of Dreams (Part 4 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-34-the-burden-of-dreams-part-4-of-/4000-122069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122007/","id":122007,"name":"Haunted, Part 5","site_detail_url":"https://comicvine.gamespot.com/iron-man-25-haunted-part-5/4000-122007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122005/","id":122005,"name":"Whatever Happened To All The Fun In The World?","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-damage-control-1-whateve/4000-122005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121966/","id":121966,"name":"Four Cubed, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-50-four-cubed-part-1/4000-121966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121264/","id":121264,"name":"Hunter/Hunted, Part 3","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-15-hunterhunted-part-3/4000-121264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121087/","id":121087,"name":"The Venom Bomb, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-7-the-venom-bomb-part-1/4000-121087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297884/","id":297884,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-1/4000-297884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292732/","id":292732,"name":"","site_detail_url":"https://comicvine.gamespot.com/omega-flight-alfa-y-omega-1/4000-292732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290724/","id":290724,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-26/4000-290724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215022/","id":215022,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/the-order-the-next-right-thing-1-volume-1/4000-215022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185207/","id":185207,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-civil-war-1-tpb/4000-185207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123380/","id":123380,"name":"The Incredible Herc, Part 2: Shirt of Nessus","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-113-the-incredible-herc-part-2/4000-123380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121616/","id":121616,"name":"Pt. 4","site_detail_url":"https://comicvine.gamespot.com/penance-relentless-4-pt-4/4000-121616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121360/","id":121360,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-enter-the-mandarin-4/4000-121360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120241/","id":120241,"name":"The Stranger; What If Captain America Led All The Heroes Against Registration?; What If Iron Man Lost The Civil War?;","site_detail_url":"https://comicvine.gamespot.com/what-if-civil-war-1-the-stranger-what-if-captain-a/4000-120241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300361/","id":300361,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-85/4000-300361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413256/","id":413256,"name":"London Crawling","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-163-london-crawl/4000-413256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214538/","id":214538,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-modok-s-11-1-tpb/4000-214538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171669/","id":171669,"name":"New Warriors: Defiant","site_detail_url":"https://comicvine.gamespot.com/new-warriors-defiant-1-new-warriors-defiant/4000-171669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300013/","id":300013,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-74/4000-300013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259710/","id":259710,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-end-1-tpb/4000-259710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237653/","id":237653,"name":"Volume 19","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-death-of-a-goblin-1-volume-19/4000-237653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123374/","id":123374,"name":"The Smoking Gun","site_detail_url":"https://comicvine.gamespot.com/hulk-2-the-smoking-gun/4000-123374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122202/","id":122202,"name":"The Trust, Pt. 7","site_detail_url":"https://comicvine.gamespot.com/new-avengers-annual-2-the-trust-pt-7/4000-122202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120875/","id":120875,"name":"Reconstruction","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-2-reconstruction/4000-120875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120659/","id":120659,"name":"Death of a Goblin, Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-117-death-of-a-goblin-part-6/4000-120659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120630/","id":120630,"name":"SNAFU","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-8-snafu/4000-120630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120625/","id":120625,"name":"Reunion: Part One of Two","site_detail_url":"https://comicvine.gamespot.com/new-warriors-7-reunion-part-one-of-two/4000-120625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120541/","id":120541,"name":"The Burden of Dreams (Part 3 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-33-the-burden-of-dreams-part-3-of-/4000-120541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120540/","id":120540,"name":"Haunted, Part 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-24-haunted-part-4/4000-120540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120299/","id":120299,"name":"Milo - or - Heavy Metal","site_detail_url":"https://comicvine.gamespot.com/the-order-6-milo-or-heavy-metal/4000-120299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120239/","id":120239,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-warbound-1/4000-120239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120237/","id":120237,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-6-untitled/4000-120237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119888/","id":119888,"name":"The Trust, Pt. 6","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-37-the-trust-pt-6/4000-119888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119194/","id":119194,"name":"Monster and Marvel, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-22-monster-and-marvel-part-2/4000-119194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-296052/","id":296052,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-lobezno-la-materia-de-las-leyendas-1/4000-296052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292916/","id":292916,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-4/4000-292916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290723/","id":290723,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-25/4000-290723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121093/","id":121093,"name":"Who Is The Hulk?","site_detail_url":"https://comicvine.gamespot.com/hulk-1-who-is-the-hulk/4000-121093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119219/","id":119219,"name":"World War Hulk: Aftersmash; The Mini Marvels Present... World War Hulk: Rally the Troops","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-1-world-war-hulk-aftersm/4000-119219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118644/","id":118644,"name":"Revolution, Part 6","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-6-revolution-part-6/4000-118644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118437/","id":118437,"name":"Regime Change","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield-annual-1-regime-change/4000-118437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118128/","id":118128,"name":"Pt. 3","site_detail_url":"https://comicvine.gamespot.com/penance-relentless-3-pt-3/4000-118128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120238/","id":120238,"name":"The Incredible Herc, Part 1: Birds of Stymphalis","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-112-the-incredible-herc-part-1-bir/4000-120238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203200/","id":203200,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-world-war-hulk-1-tpb/4000-203200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411043/","id":411043,"name":"Het Verbond","site_detail_url":"https://comicvine.gamespot.com/x-mannen-309-het-verbond/4000-411043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162206/","id":162206,"name":"Volume 2: Grand Theft America","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-2-volume-2-grand-theft-america/4000-162206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742443/","id":742443,"name":"Nel sottosuolo","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-43-nel-sottosuolo/4000-742443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315479/","id":315479,"name":"Annihilation Conquest, prologo","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover-48-annihilation-conquest-prologo/4000-315479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276870/","id":276870,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-153/4000-276870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231799/","id":231799,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-faith-in-monsters-1-v/4000-231799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-225130/","id":225130,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-extended-cut-1/4000-225130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224885/","id":224885,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion-4/4000-224885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119687/","id":119687,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles-4/4000-119687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118748/","id":118748,"name":"Death of a Goblin, Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-116-death-of-a-goblin-part-5/4000-118748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118235/","id":118235,"name":"The Burden of Dreams (Part 2 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-32-the-burden-of-dreams-part-2-of-/4000-118235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118022/","id":118022,"name":"Hunter/Hunted","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-13-hunterhunted/4000-118022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117844/","id":117844,"name":"Mission Accomplished","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-4-mission-accomplished/4000-117844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117814/","id":117814,"name":"How Not To Be Good, or \"The Payoff\"; Mini Marvels","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-upmodoks-11-5-how-not-to-be-goo/4000-117814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117746/","id":117746,"name":"The Incredible Hulk/The Sentry","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-5-the-incredible-hulkthe-sentry/4000-117746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116980/","id":116980,"name":"Monster and Marvel, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-21-monster-and-marvel-part-1/4000-116980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290722/","id":290722,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-24/4000-290722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162316/","id":162316,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-complete-onslaught-epic-1-volume-1/4000-162316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116377/","id":116377,"name":"Revolution, Part 5","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-5-revolution-part-5/4000-116377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115528/","id":115528,"name":"Pt. 2","site_detail_url":"https://comicvine.gamespot.com/penance-relentless-2-pt-2/4000-115528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300575/","id":300575,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-15/4000-300575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208574/","id":208574,"name":"Irredeemable Ant-Man: Small Minded","site_detail_url":"https://comicvine.gamespot.com/irredeemable-ant-man-small-minded-1-irredeemable-a/4000-208574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413253/","id":413253,"name":"Rome, Broken City!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-160-rome-broken-/4000-413253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173985/","id":173985,"name":"Omega Flight: Alpha to Omega","site_detail_url":"https://comicvine.gamespot.com/omega-flight-alpha-to-omega-1-omega-flight-alpha-t/4000-173985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168868/","id":168868,"name":"New Avengers: Revolution","site_detail_url":"https://comicvine.gamespot.com/new-avengers-revolution-1-new-avengers-revolution/4000-168868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436997/","id":436997,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-215/4000-436997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299391/","id":299391,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-14/4000-299391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273886/","id":273886,"name":"X-23 - Target X","site_detail_url":"https://comicvine.gamespot.com/100-marvel-32-x-23-target-x/4000-273886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180740/","id":180740,"name":"Vol. 1: Annihilation Conquest","site_detail_url":"https://comicvine.gamespot.com/nova-annihilation-conquest-1-vol-1-annihilation-co/4000-180740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172945/","id":172945,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-girl-comes-the-carnage-1-volume-2/4000-172945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133163/","id":133163,"name":"Operation Lightning Storm","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-operation-lightning-storm-1-operation-li/4000-133163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117827/","id":117827,"name":"Triple Threat","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-7-triple-threat/4000-117827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117585/","id":117585,"name":"The Uses of Restraint","site_detail_url":"https://comicvine.gamespot.com/moon-knight-13-the-uses-of-restraint/4000-117585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116942/","id":116942,"name":"Magdalena or Nine Doves","site_detail_url":"https://comicvine.gamespot.com/the-order-4-magdalena-or-nine-doves/4000-116942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116718/","id":116718,"name":"Haunted, Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-23-haunted-part-3/4000-116718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115811/","id":115811,"name":"Death of a Goblin, Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-115-death-of-a-goblin-part-4/4000-115811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115675/","id":115675,"name":"The Burden of Dreams (Part 1 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-31-the-burden-of-dreams-part-1-of-/4000-115675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115414/","id":115414,"name":"Logan Dies, Part 2: Curaetar","site_detail_url":"https://comicvine.gamespot.com/wolverine-58-logan-dies-part-2-curaetar/4000-115414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115411/","id":115411,"name":"Death From Virtue, or","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-upmodoks-11-4-death-from-virtue/4000-115411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115386/","id":115386,"name":"Defiant: Part 5","site_detail_url":"https://comicvine.gamespot.com/new-warriors-5-defiant-part-5/4000-115386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396594/","id":396594,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-the-1960s-1990s-handbook-1-tpb/4000-396594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114991/","id":114991,"name":"Revolution, Part 4","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-4-revolution-part-4/4000-114991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114426/","id":114426,"name":"Only The Innocent Must Die!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-12-only-the-innocent-must-/4000-114426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114217/","id":114217,"name":null,"site_detail_url":"https://comicvine.gamespot.com/iron-man-enter-the-mandarin-1/4000-114217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181821/","id":181821,"name":"X-Factor: Many Lives of Madrox","site_detail_url":"https://comicvine.gamespot.com/x-factor-many-lives-of-madrox-1-x-factor-many-live/4000-181821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416857/","id":416857,"name":"Die Rückkehr Des Königs","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-6-die-ruckkehr-des-konigs/4000-416857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448621/","id":448621,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-13/4000-448621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436996/","id":436996,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-214/4000-436996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424950/","id":424950,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-britain-a-hero-reborn-1-tpb/4000-424950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306199/","id":306199,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-130/4000-306199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299390/","id":299390,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-13/4000-299390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284011/","id":284011,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-30/4000-284011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185614/","id":185614,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/black-panther-four-the-hard-way-1-tpb/4000-185614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115799/","id":115799,"name":"Procreation","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-14-procreation/4000-115799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115529/","id":115529,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-5-untitled/4000-115529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114981/","id":114981,"name":"Death of a Goblin, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-114-death-of-a-goblin-part-3/4000-114981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114969/","id":114969,"name":"Persons of Interest","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-6-persons-of-interest/4000-114969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114892/","id":114892,"name":"The End Is The Beginning","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-12-the-end-is-the-beginni/4000-114892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114665/","id":114665,"name":"Death of the Dream (Part 6 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-30-death-of-the-dream-part-6-of-6/4000-114665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114432/","id":114432,"name":"Midnight Sun, Chapter Six: This Trap, My Body","site_detail_url":"https://comicvine.gamespot.com/moon-knight-12-midnight-sun-chapter-six-this-trap-/4000-114432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114414/","id":114414,"name":"Heroes and Villains","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-11-heroes-and-villains/4000-114414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114400/","id":114400,"name":"Sentinels, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-86-sentinels-part-3/4000-114400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114223/","id":114223,"name":"Defiant: Part 4","site_detail_url":"https://comicvine.gamespot.com/new-warriors-4-defiant-part-4/4000-114223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114205/","id":114205,"name":"Logan Dies, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-57-logan-dies-part-1/4000-114205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113764/","id":113764,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles-2/4000-113764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111398/","id":111398,"name":"Haunted, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-22-haunted-part-2/4000-111398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106521/","id":106521,"name":"Death of a Goblin: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-113-death-of-a-goblin-part-2/4000-106521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307504/","id":307504,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield-1-vol/4000-307504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298193/","id":298193,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-19/4000-298193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292913/","id":292913,"name":"","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra-1/4000-292913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260759/","id":260759,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-11/4000-260759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133203/","id":133203,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/she-hulk-planet-without-a-hulk-1-volume-5/4000-133203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115677/","id":115677,"name":"Vanguard Chapter 2: No Earthly Means / Hellcat: The Girl Who Could Be You part 2 / Taskmaster: Best Offense / Weapon Omega Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-2-vanguard-chapter-2-no-ear/4000-115677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113796/","id":113796,"name":"","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-4/4000-113796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113542/","id":113542,"name":"Revolution, Part 3","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-3-revolution-part-3/4000-113542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113431/","id":113431,"name":"The Bough Breaks","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-11-the-bough-breaks/4000-113431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140390/","id":140390,"name":"Volume Seven","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-7-volume-seven/4000-140390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216550/","id":216550,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-silver-rage-1-tp/4000-216550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413250/","id":413250,"name":"Family Ties","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-157-family-ties/4000-413250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436995/","id":436995,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-213/4000-436995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406276/","id":406276,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-defenders-war-1-hc/4000-406276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-369694/","id":369694,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-1-hctpb/4000-369694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300435/","id":300435,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-22/4000-300435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300009/","id":300009,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-70/4000-300009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298296/","id":298296,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-73/4000-298296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289840/","id":289840,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-208/4000-289840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284010/","id":284010,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-29/4000-284010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189772/","id":189772,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus-1-volume-1/4000-189772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115209/","id":115209,"name":"Puppets, Part 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-20-puppets-part-3/4000-115209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114431/","id":114431,"name":"Incarceration","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-13-incarceration/4000-114431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114412/","id":114412,"name":"Part 7 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-7-part-7-of-9/4000-114412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113795/","id":113795,"name":"Haunted, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-21-haunted-part-1/4000-113795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113739/","id":113739,"name":"Caged Angels, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-116-caged-angels-pt-1/4000-113739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113551/","id":113551,"name":"Death of a Goblin, Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-112-death-of-a-goblin-part-1/4000-113551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113543/","id":113543,"name":"Death of the Dream (Part 5 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-29-death-of-the-dream-part-5-of-6/4000-113543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113429/","id":113429,"name":"Sentinels - Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-85-sentinels-part-2/4000-113429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113248/","id":113248,"name":"Sunset","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-10-sunset/4000-113248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113101/","id":113101,"name":"Redeemed","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-11-redeemed/4000-113101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112986/","id":112986,"name":"Warbound, Part 4","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-109-warbound-part-4/4000-112986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112290/","id":112290,"name":"Defiant: Part 3","site_detail_url":"https://comicvine.gamespot.com/new-warriors-3-defiant-part-3/4000-112290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112280/","id":112280,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-3/4000-112280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111693/","id":111693,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles-1/4000-111693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431539/","id":431539,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-hypervelocity-1-tpb/4000-431539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298192/","id":298192,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-18/4000-298192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290719/","id":290719,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-21/4000-290719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285631/","id":285631,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-17/4000-285631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181313/","id":181313,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-1-hc/4000-181313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157636/","id":157636,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-white-and-blue-1-tpb/4000-157636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113320/","id":113320,"name":"The Clock is Ticking","site_detail_url":"https://comicvine.gamespot.com/she-hulk-20-the-clock-is-ticking/4000-113320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113227/","id":113227,"name":"Pop","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-4-pop/4000-113227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111607/","id":111607,"name":"Comes The Carnage!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-10-comes-the-carnage/4000-111607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111491/","id":111491,"name":"Revolution, Part 2","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-2-revolution-part-2/4000-111491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168677/","id":168677,"name":"Wolverine Origins: Savior","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-savior-1-wolverine-origins-savio/4000-168677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168692/","id":168692,"name":"Wolverine Origins: Swift and Terrible","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-swift-and-terrible-1-wolverine-o/4000-168692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216546/","id":216546,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-back-in-black-1-tpb/4000-216546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436994/","id":436994,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-212/4000-436994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324549/","id":324549,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-64/4000-324549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300356/","id":300356,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-80/4000-300356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298295/","id":298295,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-72/4000-298295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-213996/","id":213996,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/silent-war-1-tpb/4000-213996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187208/","id":187208,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x-1-tpb/4000-187208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166493/","id":166493,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-civil-war-1-civil-war/4000-166493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111938/","id":111938,"name":"Warbound, Part 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-108-warbound-part-3/4000-111938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111936/","id":111936,"name":"In Absentia","site_detail_url":"https://comicvine.gamespot.com/iron-man-20-in-absentia/4000-111936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111934/","id":111934,"name":"Subjugation","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-12-subjugation/4000-111934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111933/","id":111933,"name":"Silver Surfer: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-44-silver-surfer-part-3/4000-111933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111703/","id":111703,"name":"Hulkbusters","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps-1-hulkbusters/4000-111703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111671/","id":111671,"name":"Death of the Dream (Part 4 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-28-death-of-the-dream-part-4-of-6/4000-111671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111670/","id":111670,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-2/4000-111670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111663/","id":111663,"name":"Green Zone","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-4-green-zone/4000-111663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111642/","id":111642,"name":"Duel","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-9-duel/4000-111642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111635/","id":111635,"name":"A Night For Destiny","site_detail_url":"https://comicvine.gamespot.com/blade-11-a-night-for-destiny/4000-111635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111374/","id":111374,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-10-world-war-hulk/4000-111374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111357/","id":111357,"name":"Part 6 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-6-part-6-of-9/4000-111357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110266/","id":110266,"name":"Puppets, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-19-puppets-part-2/4000-110266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290718/","id":290718,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-20/4000-290718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285630/","id":285630,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-16/4000-285630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111389/","id":111389,"name":"Act 6: The Madman","site_detail_url":"https://comicvine.gamespot.com/silent-war-6-act-6-the-madman/4000-111389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110443/","id":110443,"name":"Specimen 297!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl-9-specimen-297/4000-110443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110438/","id":110438,"name":"Revolution, Part 1","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-1-revolution-part-1/4000-110438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110316/","id":110316,"name":"Electrical Problems; Scorpion in...Namesake; What If Spider-Man Joined the Fantastic Four; Spider-Man J in The Bigger They Are; Mini Marvels presents Hulk Date","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-3-electrical-problems-scorpion-i/4000-110316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181817/","id":181817,"name":"Volume 2: Life and Death Matters","site_detail_url":"https://comicvine.gamespot.com/x-factor-life-and-death-matters-1-volume-2-life-an/4000-181817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246310/","id":246310,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield-1-volume-4/4000-246310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237644/","id":237644,"name":"Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hobgoblin-1-hobgoblin/4000-237644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168856/","id":168856,"name":"New Avengers: Civil War","site_detail_url":"https://comicvine.gamespot.com/new-avengers-civil-war-1-new-avengers-civil-war/4000-168856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436993/","id":436993,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-211/4000-436993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358689/","id":358689,"name":"Paperback","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-against-all-enemies-1-paperback/4000-358689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260753/","id":260753,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-9/4000-260753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260752/","id":260752,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-8/4000-260752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157131/","id":157131,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one-2-volume-2/4000-157131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132592/","id":132592,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-companion-1-tpb/4000-132592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119767/","id":119767,"name":"Supernovas","site_detail_url":"https://comicvine.gamespot.com/x-men-supernovas-1-supernovas/4000-119767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112672/","id":112672,"name":"Puppets, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-18-puppets-part-1/4000-112672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111932/","id":111932,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-4-untitled/4000-111932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111251/","id":111251,"name":"Acceptance","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-5-acceptan/4000-111251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111036/","id":111036,"name":"Hard Questions","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men-1-hard-questions/4000-111036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110674/","id":110674,"name":"Infestation, Killer Instincts","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-11-infestation-killer-instincts/4000-110674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110669/","id":110669,"name":"Death of the Dream (Part 3 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-27-death-of-the-dream-part-3-of-6/4000-110669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110667/","id":110667,"name":"World War Hulk, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-19-world-war-hulk-part-1/4000-110667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110665/","id":110665,"name":"Warbound, Part 2","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-107-warbound-part-2/4000-110665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110490/","id":110490,"name":"Web","site_detail_url":"https://comicvine.gamespot.com/blade-10-web/4000-110490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110435/","id":110435,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-1/4000-110435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110434/","id":110434,"name":"Home Truths","site_detail_url":"https://comicvine.gamespot.com/nova-3-home-truths/4000-110434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110271/","id":110271,"name":"Bug Hunt","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-3-bug-hunt/4000-110271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110269/","id":110269,"name":"The Book of the Dooms","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness-4-the-book-of-t/4000-110269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110263/","id":110263,"name":"Love's Lonely Embrace","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-9-loves-lonely-embrace/4000-110263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109451/","id":109451,"name":"Sunset","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-8-sunset/4000-109451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290717/","id":290717,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-19/4000-290717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181945/","id":181945,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-event-horizon-1-tpb/4000-181945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151024/","id":151024,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-vision-4/4000-151024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110516/","id":110516,"name":"Stop! Gamma Time!","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack-3-stop-gamma-time/4000-110516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110024/","id":110024,"name":"Act 5: The Hero","site_detail_url":"https://comicvine.gamespot.com/silent-war-5-act-5-the-hero/4000-110024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109272/","id":109272,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-dead-days-1/4000-109272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223839/","id":223839,"name":"Irredeemable Ant-Man: Low-Life","site_detail_url":"https://comicvine.gamespot.com/irredeemable-ant-man-low-life-1-irredeemable-ant-m/4000-223839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111121/","id":111121,"name":"The Gamma Defense","site_detail_url":"https://comicvine.gamespot.com/she-hulk-19-the-gamma-defense/4000-111121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413246/","id":413246,"name":"The Hunted","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-153-the-hunted/4000-413246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171461/","id":171461,"name":"Civil War: Iron Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-iron-man-1-civil-war-iron-man/4000-171461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159903/","id":159903,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-3-volume-three/4000-159903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300538/","id":300538,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-67/4000-300538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222767/","id":222767,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/bullet-points-1-tpb/4000-222767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111354/","id":111354,"name":"The Big Fight","site_detail_url":"https://comicvine.gamespot.com/blade-9-the-big-fight/4000-111354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111348/","id":111348,"name":"Ready, A.I.M., Fire!, Part 3","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-17-ready-aim-fire-part-3/4000-111348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110672/","id":110672,"name":"Midnight Sun, Chapter Five: One Son Lost","site_detail_url":"https://comicvine.gamespot.com/moon-knight-11-midnight-sun-chapter-five-one-son-l/4000-110672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110278/","id":110278,"name":"Director Of S.H.I.E.L.D., Part 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-18-director-of-shield-part-4/4000-110278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110025/","id":110025,"name":"Part Six","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x-6-part-six/4000-110025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109602/","id":109602,"name":"Bargaining","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-3-bargaini/4000-109602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109600/","id":109600,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-3-untitled/4000-109600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109267/","id":109267,"name":"Revolution, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-30-revolution-pt-4/4000-109267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109264/","id":109264,"name":"Alienation","site_detail_url":"https://comicvine.gamespot.com/nova-2-alienation/4000-109264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108922/","id":108922,"name":"Warbound, Part 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-106-warbound-part-1/4000-108922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108921/","id":108921,"name":"Hero Moment","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-2-hero-moment/4000-108921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298189/","id":298189,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-15/4000-298189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110508/","id":110508,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-9/4000-110508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108841/","id":108841,"name":"Act 4: The Lover","site_detail_url":"https://comicvine.gamespot.com/silent-war-4-act-4-the-lover/4000-108841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108222/","id":108222,"name":"Alpha To Omega, Part 1","site_detail_url":"https://comicvine.gamespot.com/omega-flight-1-alpha-to-omega-part-1/4000-108222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251860/","id":251860,"name":"AGENT of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-139-agent-of-shield/4000-251860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300353/","id":300353,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-77/4000-300353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416856/","id":416856,"name":"Der Ultimative Krieg","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-5-der-ultimative-krieg/4000-416856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108003/","id":108003,"name":"Happy Accidents","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-1-happy-accidents/4000-108003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436991/","id":436991,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-209/4000-436991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300165/","id":300165,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-125/4000-300165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299385/","id":299385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-8/4000-299385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275916/","id":275916,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-146/4000-275916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260750/","id":260750,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-6/4000-260750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129075/","id":129075,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-marvel-universe-1-tpb/4000-129075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110265/","id":110265,"name":"Ready, A.I.M.; Fire!, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-16-ready-aim-fire-part-2/4000-110265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109841/","id":109841,"name":"Illuminated","site_detail_url":"https://comicvine.gamespot.com/she-hulk-18-illuminated/4000-109841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109262/","id":109262,"name":"Two Plus Two, Part 2","site_detail_url":"https://comicvine.gamespot.com/black-panther-27-two-plus-two-part-2/4000-109262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109111/","id":109111,"name":"Director Of S.H.I.E.L.D., Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-17-director-of-shield-part-3/4000-109111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108792/","id":108792,"name":"Uninvited","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-7-uninvited/4000-108792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108556/","id":108556,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-2-untitled/4000-108556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108554/","id":108554,"name":"Cliffhangers","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-81-cliffhangers/4000-108554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108472/","id":108472,"name":"Goin' Out West","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-6-goin-out-west/4000-108472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108362/","id":108362,"name":"What's Next","site_detail_url":"https://comicvine.gamespot.com/nova-1-whats-next/4000-108362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108360/","id":108360,"name":"Revolution, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-29-revolution-pt-3/4000-108360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108004/","id":108004,"name":"Denial","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-1-denial/4000-108004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537379/","id":537379,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-18/4000-537379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391876/","id":391876,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk-4-volume-4/4000-391876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263353/","id":263353,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/blade-undead-again-1-volume-1/4000-263353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111119/","id":111119,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-8/4000-111119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108966/","id":108966,"name":"To Have And To Hold","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-annual-1-to-have-and-to/4000-108966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106909/","id":106909,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-confession-1/4000-106909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251859/","id":251859,"name":"WOLVERINE--AGENT of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-138-wolverine-agent-of-shie/4000-251859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171452/","id":171452,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/wolverine-civil-war-1-civil-war/4000-171452/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171451/","id":171451,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-fantastic-four-1-tpb/4000-171451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300571/","id":300571,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-11/4000-300571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254194/","id":254194,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-war-crimes-1-tpb/4000-254194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170811/","id":170811,"name":"Civil War: Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-amazing-spider-man-1-civil-war-amazing-s/4000-170811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107597/","id":107597,"name":"Reconstruction, Part 1: From The Ridiculous To The Sublime","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-544-reconstruction-part-1-from-the-/4000-107597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260749/","id":260749,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-5/4000-260749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234902/","id":234902,"name":"Civil War: Front Line, Book Two","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-book-two-1-civil-war-front-li/4000-234902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167631/","id":167631,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/civil-war-1-civil-war/4000-167631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251858/","id":251858,"name":"WOLVERINE versus THE X-MEN!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-137-wolverine-versus-the-x-/4000-251858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168660/","id":168660,"name":"Wolverine Origins: Born in Blood","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-born-in-blood-1-wolverine-origin/4000-168660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135824/","id":135824,"name":"In The Hands Of U-Foes","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-2-in-the-hands-of-u-foe/4000-135824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135801/","id":135801,"name":"Breakout: Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man-1-breakout-part-1-of-5/4000-135801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436990/","id":436990,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-208/4000-436990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385487/","id":385487,"name":"Иллюминаты","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-77-wikiissue/4000-385487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384786/","id":384786,"name":"Вечер встреч. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-113-3/4000-384786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384785/","id":384785,"name":"Вечер встреч. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-112-2/4000-384785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324551/","id":324551,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-62/4000-324551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289485/","id":289485,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-203-civil-war/4000-289485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284005/","id":284005,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-24/4000-284005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231800/","id":231800,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/runaways-live-fast-1-volume-7/4000-231800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204068/","id":204068,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men-universe-1-tpb/4000-204068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203105/","id":203105,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-and-runaways-1-tpb/4000-203105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154949/","id":154949,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-8-volume-8/4000-154949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141507/","id":141507,"name":"Targets of Opportunity","site_detail_url":"https://comicvine.gamespot.com/bullet-points-5-targets-of-opportunity/4000-141507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111807/","id":111807,"name":"Endgame","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-6-endgame/4000-111807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109835/","id":109835,"name":"Death of the Dream (Part 2 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-26-death-of-the-dream-part-2-of-6/4000-109835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109131/","id":109131,"name":"Ready, A.I.M., Fire!, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-15-ready-aim-fire-part-1/4000-109131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108915/","id":108915,"name":"Director Of S.H.I.E.L.D., Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-16-director-of-shield-part-2/4000-108915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108358/","id":108358,"name":"Planet Without A Hulk, Part 3: Shock After Shock","site_detail_url":"https://comicvine.gamespot.com/she-hulk-17-planet-without-a-hulk-part-3-shock-aft/4000-108358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107598/","id":107598,"name":"Two Plus Two, Part 1 - Home Invasion","site_detail_url":"https://comicvine.gamespot.com/black-panther-26-two-plus-two-part-1-home-invasion/4000-107598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106903/","id":106903,"name":"Swift & Terrible, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-12-swift-terrible-pt-2/4000-106903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106902/","id":106902,"name":"Revolution, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-28-revolution-pt-2/4000-106902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106821/","id":106821,"name":"The Mighty Avengers","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers-1-the-mighty-avengers/4000-106821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284098/","id":284098,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1/4000-284098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232096/","id":232096,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-4-volum/4000-232096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-147610/","id":147610,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-vision-3/4000-147610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109767/","id":109767,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-7/4000-109767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106724/","id":106724,"name":"Director of S.H.I.E.L.D., Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-15-director-of-shield-part-1/4000-106724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106636/","id":106636,"name":"Act 2: The Child","site_detail_url":"https://comicvine.gamespot.com/silent-war-2-act-2-the-child/4000-106636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411418/","id":411418,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-297/4000-411418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203204/","id":203204,"name":"Cable and Deadpool: Paved With Good Intentions","site_detail_url":"https://comicvine.gamespot.com/cable-and-deadpool-paved-with-good-intentions-1-ca/4000-203204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107228/","id":107228,"name":"The Deal, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-13-the-deal-part-1/4000-107228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237651/","id":237651,"name":"Clone Saga","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-clone-saga-1-clone-saga/4000-237651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234901/","id":234901,"name":"Civil War: Front Line, Book One","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-book-one-1-civil-war-front-li/4000-234901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448614/","id":448614,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-6/4000-448614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384784/","id":384784,"name":"Вечер встреч. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-111-1/4000-384784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384783/","id":384783,"name":"Магнитный полюс. Заключение","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-110-wikiissue/4000-384783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302513/","id":302513,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-captain-america-1-tpb/4000-302513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141506/","id":141506,"name":"The Ripples Continue...","site_detail_url":"https://comicvine.gamespot.com/bullet-points-4-the-ripples-continue/4000-141506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111806/","id":111806,"name":"Confrontation","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-5-confrontation/4000-111806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111510/","id":111510,"name":"Gamma Flight","site_detail_url":"https://comicvine.gamespot.com/she-hulk-16-gamma-flight/4000-111510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107995/","id":107995,"name":"The Deal, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-14-the-deal-part-2/4000-107995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106788/","id":106788,"name":"Death of the Dream (Part 1 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-death-of-the-dream-part-1-of-6/4000-106788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106708/","id":106708,"name":"War Crimes, Part 3: Thunder And Lightning","site_detail_url":"https://comicvine.gamespot.com/black-panther-25-war-crimes-part-3-thunder-and-lig/4000-106708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106470/","id":106470,"name":"Swift & Terrible, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-11-swift-terrible-pt-1/4000-106470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106363/","id":106363,"name":"Clone Saga: Epilogue","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-105-clone-saga-epilogue/4000-106363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537377/","id":537377,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-16/4000-537377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290712/","id":290712,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-15/4000-290712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228269/","id":228269,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-3-volume-3/4000-228269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143335/","id":143335,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-5/4000-143335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141073/","id":141073,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-6/4000-141073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133202/","id":133202,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/she-hulk-laws-of-attraction-1-volume-4/4000-133202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113311/","id":113311,"name":"The Master Plan","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-6-the-master-plan/4000-113311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106389/","id":106389,"name":"Covenant","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-1-covenant/4000-106389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107416/","id":107416,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-battle-damage-report-1/4000-107416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260747/","id":260747,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-3/4000-260747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451320/","id":451320,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-riot-at-rykers-i/4000-451320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448613/","id":448613,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5/4000-448613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384781/","id":384781,"name":"Магнитный полюс. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-108-3/4000-384781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284003/","id":284003,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-22/4000-284003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275912/","id":275912,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-143/4000-275912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166469/","id":166469,"name":"Best of the Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-best-of-the-best-1-best-of-the-best/4000-166469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141505/","id":141505,"name":"What Goes Up Must Come Down","site_detail_url":"https://comicvine.gamespot.com/bullet-points-3-what-goes-up-must-come-down/4000-141505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132607/","id":132607,"name":"The Collective","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-collective-1-the-collective/4000-132607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111509/","id":111509,"name":"She-Hulk: Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/she-hulk-15-she-hulk-agent-of-s-h-i-e-l-d/4000-111509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108514/","id":108514,"name":"Vendetta's Echo","site_detail_url":"https://comicvine.gamespot.com/blade-5-vendettas-echo/4000-108514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106749/","id":106749,"name":"The Daily Grind","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-4-the-daily-grind/4000-106749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106627/","id":106627,"name":"The War at Home, Part 7","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-538-the-war-at-home-part-7/4000-106627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106503/","id":106503,"name":"Part Two","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x-2-part-two/4000-106503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106390/","id":106390,"name":"Live Fast, Part Three","site_detail_url":"https://comicvine.gamespot.com/runaways-24-live-fast-part-three/4000-106390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106327/","id":106327,"name":"How I Won the War part 3: Mutually Assured Destruction","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-3-how-i-won-the-war-part-3-mu/4000-106327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106282/","id":106282,"name":"War Crimes, Part 2: The Big Guns","site_detail_url":"https://comicvine.gamespot.com/black-panther-24-war-crimes-part-2-the-big-guns/4000-106282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106254/","id":106254,"name":"Savior, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-10-savior-pt-5/4000-106254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106252/","id":106252,"name":"Clone Saga: Part 8","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-104-clone-saga-part-8/4000-106252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106203/","id":106203,"name":"Faith In Monsters, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-110-faith-in-monsters-pt-1/4000-106203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106036/","id":106036,"name":"Multiple Issues, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-factor-15-multiple-issues-part-2/4000-106036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537376/","id":537376,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno-15/4000-537376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298185/","id":298185,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-11/4000-298185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141072/","id":141072,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-4/4000-141072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140966/","id":140966,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-3/4000-140966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113268/","id":113268,"name":"The People's Leader","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-5-the-peoples-leader/4000-113268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107251/","id":107251,"name":"Everything You Always Wanted To Know About Awesome Andy But Were Afraid To Ask","site_detail_url":"https://comicvine.gamespot.com/she-hulk-14-everything-you-always-wanted-to-know-a/4000-107251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-203190/","id":203190,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-execute-program-1-volume-2/4000-203190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164381/","id":164381,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-2/4000-164381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193513/","id":193513,"name":"The Road to Civil War","site_detail_url":"https://comicvine.gamespot.com/the-road-to-civil-war-1-the-road-to-civil-war/4000-193513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154672/","id":154672,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-ms-marvel-1-volume-1/4000-154672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424951/","id":424951,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-britain-birth-of-a-legend-1-tpb/4000-424951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384780/","id":384780,"name":"Магнитный полюс. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-107-2/4000-384780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288604/","id":288604,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-36/4000-288604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216682/","id":216682,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-1-hc-tpb/4000-216682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186274/","id":186274,"name":"Torn","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-torn-1-torn/4000-186274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113596/","id":113596,"name":"Clone Saga: Part 7","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-103-clone-saga-part-7/4000-113596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111805/","id":111805,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-3-homecoming/4000-111805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108954/","id":108954,"name":"War Crimes, Part 1: Wartime!","site_detail_url":"https://comicvine.gamespot.com/black-panther-23-war-crimes-part-1-wartime/4000-108954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108953/","id":108953,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-war-crimes-1/4000-108953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108550/","id":108550,"name":"How I Won The War Part 2: Dead Soldiers","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-2-how-i-won-the-war-part-2-de/4000-108550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108340/","id":108340,"name":"Your Own Worst Enemy","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-10-your-own-worst-enemy/4000-108340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106628/","id":106628,"name":"The Last Iron Fist Story: part 3","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-3-the-last-iron-fist-story-/4000-106628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106348/","id":106348,"name":"A Hero's Compulsion, Part 2: Claws","site_detail_url":"https://comicvine.gamespot.com/white-tiger-2-a-heros-compulsion-part-2-claws/4000-106348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106314/","id":106314,"name":"Beyond Redemption","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-109-beyond-redemption/4000-106314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106213/","id":106213,"name":"Savior, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-9-savior-pt-4/4000-106213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106079/","id":106079,"name":"Multiple Issues, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-factor-14-multiple-issues-part-1/4000-106079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298184/","id":298184,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-10/4000-298184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290710/","id":290710,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-13/4000-290710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279024/","id":279024,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-john-buscema-1-hctpb/4000-279024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175593/","id":175593,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-3-volume-3/4000-175593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167704/","id":167704,"name":"Iron Man: Armor Wars","site_detail_url":"https://comicvine.gamespot.com/iron-man-armor-wars-1-iron-man-armor-wars/4000-167704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119724/","id":119724,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-2/4000-119724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118621/","id":118621,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii-1/4000-118621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113264/","id":113264,"name":"Return of the Queen","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-4-return-of-the-queen/4000-113264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251854/","id":251854,"name":"Elektra ATTACKS!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-133-elektra-attacks/4000-251854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742419/","id":742419,"name":"Fenice? 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-36-fenice-1/4000-742419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448611/","id":448611,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-3/4000-448611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436986/","id":436986,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-204/4000-436986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387269/","id":387269,"name":"The Death of the Dream Part One","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-directors-cut-25-the-death-of-t/4000-387269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303724/","id":303724,"name":"Ultimate Power Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-directors-cut-1-ultimate-power-pa/4000-303724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298934/","id":298934,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-34/4000-298934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298286/","id":298286,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-63/4000-298286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155829/","id":155829,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-3-volume-three/4000-155829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139136/","id":139136,"name":"What if Wolverine was never deprogrammed? Bite the hand that feeds","site_detail_url":"https://comicvine.gamespot.com/what-if-wolverine-enemy-of-the-state-1-what-if-wol/4000-139136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126693/","id":126693,"name":"A Hero's Compulsion, Part 1: Obsessed","site_detail_url":"https://comicvine.gamespot.com/white-tiger-1-a-heros-compulsion-part-1-obsessed/4000-126693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111804/","id":111804,"name":"Shock & Awe","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-2-shock-awe/4000-111804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111399/","id":111399,"name":"Civil War, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-14-civil-war-part-2/4000-111399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108912/","id":108912,"name":"Vendetta Epilogue - Knocking On Heaven's Door","site_detail_url":"https://comicvine.gamespot.com/wolverine-48-vendetta-epilogue-knocking-on-heavens/4000-108912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108901/","id":108901,"name":"The Drums of War (Part 3 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-24-the-drums-of-war-part-3-of-3/4000-108901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108549/","id":108549,"name":"How I Won The War Part 1: Bring On The Bad Guys","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-1-how-i-won-the-war-part-1-br/4000-108549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107301/","id":107301,"name":"Savior, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-8-savior-pt-3/4000-107301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106626/","id":106626,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-7-untitled/4000-106626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298321/","id":298321,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-5/4000-298321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286113/","id":286113,"name":"","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men-22/4000-286113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167743/","id":167743,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-nomad-1-tpb/4000-167743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114567/","id":114567,"name":"Part 1 of 9","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-part-1-of-9/4000-114567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112033/","id":112033,"name":"The Dream Team","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-3-the-dream-team/4000-112033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256668/","id":256668,"name":"Ultimate Galactus: Ultimate Nightmare","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-ultimate-nightmare-1-ultimate-ga/4000-256668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172435/","id":172435,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-avengers-1-tpb/4000-172435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446814/","id":446814,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-apresenta-27/4000-446814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298285/","id":298285,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-62/4000-298285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235546/","id":235546,"name":"Phoenix","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-phoenix-1-phoenix/4000-235546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140389/","id":140389,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-6-volume-six/4000-140389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111733/","id":111733,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man-1-untitled/4000-111733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108891/","id":108891,"name":"The Drums of War (Part 2 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-23-the-drums-of-war-part-2-of-3/4000-108891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108882/","id":108882,"name":"Civil Disobedience","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-3-civil-disobedience/4000-108882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108773/","id":108773,"name":"Civil War, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-13-civil-war-part-1/4000-108773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108679/","id":108679,"name":"Payback","site_detail_url":"https://comicvine.gamespot.com/wolverine-47-payback/4000-108679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108176/","id":108176,"name":"For The Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-8-for-the-best/4000-108176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108040/","id":108040,"name":"New Avengers: Disassembled, Part 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-25-new-avengers-disassembled-part/4000-108040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107009/","id":107009,"name":"Switching Sides / Conscientious Objector / Choosing Sides / Non-Human-Americans / A New Light","site_detail_url":"https://comicvine.gamespot.com/civil-war-choosing-sides-1-switching-sides-conscie/4000-107009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107000/","id":107000,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-6-untitled/4000-107000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106447/","id":106447,"name":"Six Packs and Powder Kegs","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-33-six-packs-and-powder-kegs/4000-106447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105346/","id":105346,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways-4/4000-105346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290708/","id":290708,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-11/4000-290708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107863/","id":107863,"name":"Building the Army","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-2-building-the-army/4000-107863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236774/","id":236774,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-legacy-1-legacy/4000-236774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165094/","id":165094,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier-2-book-two/4000-165094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186088/","id":186088,"name":"Black Panther: The Bride","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-bride-1-black-panther-the-bride/4000-186088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107300/","id":107300,"name":"Savior, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-7-savior-pt-2/4000-107300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385476/","id":385476,"name":"День \"М\". Часть 6","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-66-6/4000-385476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385475/","id":385475,"name":"День \"М\". Часть 5","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-65-5/4000-385475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172442/","id":172442,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-captain-america-1-tpb/4000-172442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108900/","id":108900,"name":"Embedded, Part 8 / The Accused, Part 8 / Sleeper Cell, Part 6","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-8-embedded-part-8-the-accused/4000-108900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108886/","id":108886,"name":"Some Words Can Never Be Taken Back","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-540-some-words-can-never-be-taken-b/4000-108886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108673/","id":108673,"name":"The Drums of War (Part 1 of 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-22-the-drums-of-war-part-1-of-3/4000-108673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108513/","id":108513,"name":"Splinter Group","site_detail_url":"https://comicvine.gamespot.com/blade-1-splinter-group/4000-108513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108386/","id":108386,"name":"Execute Program, Part 6","site_detail_url":"https://comicvine.gamespot.com/iron-man-12-execute-program-part-6/4000-108386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108175/","id":108175,"name":"Battle Lines, Part 2","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-7-battle-lines-part-2/4000-108175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108038/","id":108038,"name":"New Avengers: Disassembled, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-23-new-avengers-disassembled-pt-3/4000-108038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106999/","id":106999,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-5-untitled/4000-106999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106998/","id":106998,"name":"Savior, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-6-savior-pt-1/4000-106998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106460/","id":106460,"name":"The End - Part 1/6","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-end-1-the-end-part-16/4000-106460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105556/","id":105556,"name":"The War at Home, Part 4","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-535-the-war-at-home-part-4/4000-105556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298320/","id":298320,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-4/4000-298320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298058/","id":298058,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-2/4000-298058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290707/","id":290707,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-10/4000-290707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109912/","id":109912,"name":"The Golden History","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-1-the-golden-history/4000-109912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106805/","id":106805,"name":"Shadowoman to Tara","site_detail_url":"https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4000-106805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298941/","id":298941,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-42/4000-298941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436958/","id":436958,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-201/4000-436958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385473/","id":385473,"name":"День \"М\". Часть 3","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda-63-3/4000-385473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298283/","id":298283,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-60/4000-298283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288602/","id":288602,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-34/4000-288602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186401/","id":186401,"name":"Enemy Of The State","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-1-enemy-of-the-state/4000-186401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186400/","id":186400,"name":"Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/wolverine-agent-of-shield-1-agent-of-shield/4000-186400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108696/","id":108696,"name":"Embedded, Part 5 / The Accused, Part 5 / Sleeper Cell, Part 3","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-5-embedded-part-5-the-accused/4000-108696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108385/","id":108385,"name":"Execute Program, Part 5","site_detail_url":"https://comicvine.gamespot.com/iron-man-11-execute-program-part-5/4000-108385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108041/","id":108041,"name":"Battle Lines, Part 1","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-6-battle-lines-part-1/4000-108041/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107843/","id":107843,"name":"Clone Saga Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-98-clone-saga-part-2/4000-107843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105682/","id":105682,"name":"[untitled]","site_detail_url":"https://comicvine.gamespot.com/civil-war-4-untitled/4000-105682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105344/","id":105344,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways-2/4000-105344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298057/","id":298057,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-1/4000-298057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275078/","id":275078,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x-13/4000-275078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259819/","id":259819,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-life-fantastic-1-tpb/4000-259819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113254/","id":113254,"name":"Freedom Ring, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-22-freedom-ring-part-3/4000-113254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108847/","id":108847,"name":"Whose Side Are You On?","site_detail_url":"https://comicvine.gamespot.com/civil-war-files-1-whose-side-are-you-on/4000-108847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237609/","id":237609,"name":"Hollywood","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hollywood-1-hollywood/4000-237609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236884/","id":236884,"name":"Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-venom-1-venom/4000-236884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198666/","id":198666,"name":"Spider-Girl Presents Avengers Next: Second Coming","site_detail_url":"https://comicvine.gamespot.com/spider-girl-presents-avengers-next-second-coming-1/4000-198666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436957/","id":436957,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-200/4000-436957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299996/","id":299996,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-57/4000-299996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168841/","id":168841,"name":"New Avengers: Secrets and Lies","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secrets-and-lies-1-new-avengers-secre/4000-168841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109260/","id":109260,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/wolverine-44-justice/4000-109260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108350/","id":108350,"name":"Execute Program, Part 4","site_detail_url":"https://comicvine.gamespot.com/iron-man-10-execute-program-part-4/4000-108350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108347/","id":108347,"name":"Embedded, Part 4 / The Accused, Part 4 / Sleeper Cell, Part 2","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-4-embedded-part-4-the-accused/4000-108347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107955/","id":107955,"name":"Supernovas: Part 2 of 6","site_detail_url":"https://comicvine.gamespot.com/x-men-189-supernovas-part-2-of-6/4000-107955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107895/","id":107895,"name":"New Avengers: Disassembled, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-22-new-avengers-disassembled-pt-2/4000-107895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106098/","id":106098,"name":"Trust Issues","site_detail_url":"https://comicvine.gamespot.com/x-factor-9-trust-issues/4000-106098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105624/","id":105624,"name":"Whose Side Are You On?","site_detail_url":"https://comicvine.gamespot.com/civil-war-3-whose-side-are-you-on/4000-105624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105614/","id":105614,"name":"The War at Home, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-534-the-war-at-home-part-3/4000-105614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105339/","id":105339,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways-1/4000-105339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298319/","id":298319,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-3/4000-298319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297481/","id":297481,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-12/4000-297481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232095/","id":232095,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man-3-volum/4000-232095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109928/","id":109928,"name":"Freedom Ring, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-21-freedom-ring-part-2/4000-109928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256669/","id":256669,"name":"Ultimate Galactus: Ultimate Extinction","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-ultimate-extinction-1-ultimate-g/4000-256669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358688/","id":358688,"name":"Paperback","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-tomorrow-men-1-paperback/4000-358688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298281/","id":298281,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-58/4000-298281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298280/","id":298280,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-57/4000-298280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288601/","id":288601,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-33/4000-288601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111732/","id":111732,"name":"Frightful: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-32-frightful-part-3/4000-111732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108349/","id":108349,"name":"Execute Program, Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-man-9-execute-program-part-3/4000-108349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108240/","id":108240,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/wolverine-43-revenge/4000-108240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107893/","id":107893,"name":"New Avengers: Disassembled, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-21-new-avengers-disassembled-part/4000-107893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107001/","id":107001,"name":"The Collective, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-20-the-collective-pt-4/4000-107001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106137/","id":106137,"name":"The Night The War Came Home, Part 2","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-533-the-night-the-war-came-/4000-106137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106035/","id":106035,"name":"It's Your Funeral","site_detail_url":"https://comicvine.gamespot.com/exiles-83-its-your-funeral/4000-106035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105570/","id":105570,"name":"Captain America Goes Underground","site_detail_url":"https://comicvine.gamespot.com/civil-war-2-captain-america-goes-underground/4000-105570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108899/","id":108899,"name":"Freedom Ring, Part 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-20-freedom-ring-part-1/4000-108899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107245/","id":107245,"name":"Civil Union","site_detail_url":"https://comicvine.gamespot.com/she-hulk-8-civil-union/4000-107245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187097/","id":187097,"name":"Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet-1-infinity-gauntlet/4000-187097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742416/","id":742416,"name":" Campo magnetico 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-33-campo-magnetico-2/4000-742416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436955/","id":436955,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-198/4000-436955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377655/","id":377655,"name":"House of M : Special","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-37-house-of-m-special/4000-377655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298279/","id":298279,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-56/4000-298279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134183/","id":134183,"name":"America Strikes Back","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-11-america-strikes-back/4000-134183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110528/","id":110528,"name":"Bride Of The Panther, Part 3","site_detail_url":"https://comicvine.gamespot.com/black-panther-16-bride-of-the-panther-part-3/4000-110528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108311/","id":108311,"name":"Execute Program, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-8-execute-program-part-2/4000-108311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107958/","id":107958,"name":"Embedded, Part 2 / The Accused, Part 2 / The Program","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-2-embedded-part-2-the-accused/4000-107958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106844/","id":106844,"name":"Embedded, Part 1 / The Accused, Part 1","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-1-embedded-part-1-the-accused/4000-106844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106196/","id":106196,"name":"The Collective, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-19-the-collective-pt-3/4000-106196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105881/","id":105881,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-5/4000-105881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105525/","id":105525,"name":"Things Turn Ugly","site_detail_url":"https://comicvine.gamespot.com/civil-war-1-things-turn-ugly/4000-105525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573680/","id":573680,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-51/4000-573680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298177/","id":298177,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-3/4000-298177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297479/","id":297479,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-11/4000-297479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290703/","id":290703,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-6/4000-290703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107199/","id":107199,"name":"1991: A Freedom Ring Prelude","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-19-1991-a-freedom-ring-prelude/4000-107199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411408/","id":411408,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-287/4000-411408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256185/","id":256185,"name":"The BEAST!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-43-the-beast/4000-256185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436954/","id":436954,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-197/4000-436954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298919/","id":298919,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-19/4000-298919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133313/","id":133313,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-frightful-1-volume-6/4000-133313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132594/","id":132594,"name":"Opening Shot Sketchbook","site_detail_url":"https://comicvine.gamespot.com/civil-war-opening-shot-sketchbook-1-opening-shot-s/4000-132594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108247/","id":108247,"name":"Execute Program, Part 1","site_detail_url":"https://comicvine.gamespot.com/iron-man-7-execute-program-part-1/4000-108247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107089/","id":107089,"name":"Origin, Part 5","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-5-origin-part-5/4000-107089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106338/","id":106338,"name":"Born in Blood, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-1-born-in-blood-pt-1/4000-106338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106195/","id":106195,"name":"The Collective, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-18-the-collective-pt-2/4000-106195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105957/","id":105957,"name":"Collision Courses, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-17-collision-courses-part-2/4000-105957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105880/","id":105880,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-4/4000-105880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290702/","id":290702,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-5/4000-290702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285615/","id":285615,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men-1/4000-285615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186298/","id":186298,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1-vol-1/4000-186298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167686/","id":167686,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus-1-volume-1/4000-167686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150670/","id":150670,"name":"Untitled","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos-6-untitled/4000-150670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122446/","id":122446,"name":"The Sentry, Act Seven: Trust","site_detail_url":"https://comicvine.gamespot.com/sentry-7-the-sentry-act-seven-trust/4000-122446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113610/","id":113610,"name":"Adventure the Third: Matters Of Trust","site_detail_url":"https://comicvine.gamespot.com/doc-samson-3-adventure-the-third-matters-of-trust/4000-113610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106482/","id":106482,"name":null,"site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-illuminati-1/4000-106482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-237649/","id":237649,"name":"Silver Sable","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-silver-sable-1-silver-sable/4000-237649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256186/","id":256186,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-42/4000-256186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411407/","id":411407,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-286/4000-411407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416853/","id":416853,"name":"Waffe X","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-2-waffe-x/4000-416853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742415/","id":742415,"name":"Campo magnetico 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-32-campo-magnetico-1/4000-742415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378748/","id":378748,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-70/4000-378748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298918/","id":298918,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-18/4000-298918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289717/","id":289717,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-2/4000-289717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227376/","id":227376,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez-2-volume-t/4000-227376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112598/","id":112598,"name":"The \"X\" Men","site_detail_url":"https://comicvine.gamespot.com/simpsons-comics-118-the-x-men/4000-112598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107486/","id":107486,"name":"Date Night, Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-68-date-night-part-3/4000-107486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107088/","id":107088,"name":"Origin, Part 4","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-4-origin-part-4/4000-107088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105970/","id":105970,"name":"Collision Courses, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-16-collision-courses-part-1/4000-105970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105956/","id":105956,"name":"The Collective, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-17-the-collective-pt-1/4000-105956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105879/","id":105879,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-3/4000-105879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105338/","id":105338,"name":"Best Of The Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-1-best-of-the-best/4000-105338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290701/","id":290701,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-4/4000-290701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275073/","id":275073,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x-8/4000-275073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186597/","id":186597,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-prelude-to-planet-hulk-1-tpb/4000-186597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150669/","id":150669,"name":"Destroy All Monsters","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos-5-destroy-all-monster/4000-150669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113609/","id":113609,"name":"Adventure the Second: The Orgone Invasion","site_detail_url":"https://comicvine.gamespot.com/doc-samson-2-adventure-the-second-the-orgone-invas/4000-113609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221397/","id":221397,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-menace-1-book-one/4000-221397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256070/","id":256070,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-41/4000-256070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436952/","id":436952,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-195/4000-436952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298917/","id":298917,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-17/4000-298917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235543/","id":235543,"name":"Vol. 13","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-magnetic-north-1-vol-13/4000-235543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113592/","id":113592,"name":"Silver Sable: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-90-silver-sable-part-5/4000-113592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113029/","id":113029,"name":"Origins & Endings, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-39-origins-endings-pt-4/4000-113029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107485/","id":107485,"name":"Date Night, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-67-date-night-part-2/4000-107485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107086/","id":107086,"name":"Origin, Part 3","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-3-origin-part-3/4000-107086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106921/","id":106921,"name":"Mr. Parker Goes To Washington, Part 1","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-529-mr-parker-goes-to-washi/4000-106921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106677/","id":106677,"name":"Torn, Part 1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-13-torn-part-1/4000-106677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106412/","id":106412,"name":"Living Legends","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-25-living-legends/4000-106412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105969/","id":105969,"name":"Something Wicked This Way Comes","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-16-something-wicked-this-way-come/4000-105969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451649/","id":451649,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-136/4000-451649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297477/","id":297477,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-10/4000-297477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290700/","id":290700,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-3/4000-290700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150668/","id":150668,"name":"Assault on Area 13","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos-4-assault-on-area-13/4000-150668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113602/","id":113602,"name":"Adventure the First: Grievous Angel","site_detail_url":"https://comicvine.gamespot.com/doc-samson-1-adventure-the-first-grievous-angel/4000-113602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112741/","id":112741,"name":"Peace In Our Time, Part 4","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-91-peace-in-our-time-part-4/4000-112741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436951/","id":436951,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-194/4000-436951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384757/","id":384757,"name":"Одаренные. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-85-6/4000-384757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384756/","id":384756,"name":"Одаренные. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-84-5/4000-384756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300523/","id":300523,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-51/4000-300523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298916/","id":298916,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-16/4000-298916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235669/","id":235669,"name":"House of M: World of M Featuring Wolverine","site_detail_url":"https://comicvine.gamespot.com/house-of-m-world-of-m-featuring-wolverine-1-house-/4000-235669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186528/","id":186528,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m-1-volume-4/4000-186528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150724/","id":150724,"name":"Featuring Star Brand & Quasar","site_detail_url":"https://comicvine.gamespot.com/marvel-milestones-12-featuring-star-brand-quasar/4000-150724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150315/","id":150315,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-5-volume-5/4000-150315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134190/","id":134190,"name":"Axis of Evil","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-10-axis-of-evil/4000-134190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113591/","id":113591,"name":"Silver Sable: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-89-silver-sable-part-4/4000-113591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113175/","id":113175,"name":"The Winter Soldier, Part 6","site_detail_url":"https://comicvine.gamespot.com/captain-america-14-the-winter-soldier-part-6/4000-113175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107050/","id":107050,"name":"Origin, Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin-2-origin-part-2/4000-107050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106411/","id":106411,"name":"Sticky Situations","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-24-sticky-situations/4000-106411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105765/","id":105765,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction-1/4000-105765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290699/","id":290699,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-2/4000-290699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284091/","id":284091,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-6/4000-284091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150667/","id":150667,"name":"Untitled","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos-3-untitled/4000-150667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150311/","id":150311,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-iron-man-2-volume-2/4000-150311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117037/","id":117037,"name":"Peace in Our Time, Part 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-90-peace-in-our-time-part-3/4000-117037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418244/","id":418244,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2006-02/4000-418244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227381/","id":227381,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-m-incredible-hulk-1-tpb/4000-227381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187290/","id":187290,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-above-and-beyond-1-tpb/4000-187290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436950/","id":436950,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-193/4000-436950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384754/","id":384754,"name":"Одаренные. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-82-3/4000-384754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300522/","id":300522,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-50/4000-300522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202218/","id":202218,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m-1-house-of-m/4000-202218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132605/","id":132605,"name":"The Sentry","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-sentry-1-the-sentry/4000-132605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114390/","id":114390,"name":"Origins & Endings, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-37-origins-endings-pt-2/4000-114390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108424/","id":108424,"name":"The 1960s Handbook","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-1-the-1960s-handbook/4000-108424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108317/","id":108317,"name":"Secrets & Lies, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-14-secrets-lies-pt-1/4000-108317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107042/","id":107042,"name":"This Old Truth","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-inevitable-1-this-old-truth/4000-107042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106417/","id":106417,"name":"","site_detail_url":"https://comicvine.gamespot.com/glx-mas-special-1/4000-106417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574665/","id":574665,"name":"","site_detail_url":"https://comicvine.gamespot.com/special-ultimates-and-ultimate-x-men-4/4000-574665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451648/","id":451648,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-135/4000-451648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290698/","id":290698,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-1/4000-290698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284090/","id":284090,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5/4000-284090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167746/","id":167746,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-secret-empire-1-tpb/4000-167746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150666/","id":150666,"name":"Creature Feature","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos-2-creature-feature/4000-150666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109936/","id":109936,"name":"Sensory Overload","site_detail_url":"https://comicvine.gamespot.com/captain-universe-daredevil-1-sensory-overload/4000-109936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256188/","id":256188,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-38/4000-256188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151587/","id":151587,"name":"Peace In Our Time, Part 2","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-89-peace-in-our-time-part-2/4000-151587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151586/","id":151586,"name":"Peace In Our Time, Part 1","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-88-peace-in-our-time-part-1/4000-151586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418245/","id":418245,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2006-01/4000-418245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222785/","id":222785,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/ultimate-annuals-1-volume-one/4000-222785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416852/","id":416852,"name":"Menschen Von Morgen","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-1-menschen-von-morgen/4000-416852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436949/","id":436949,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-192/4000-436949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312701/","id":312701,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/alias-omnibus-1-hc/4000-312701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-303146/","id":303146,"name":"Civil War #1","site_detail_url":"https://comicvine.gamespot.com/civil-war-directors-cut-1-civil-war-1/4000-303146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298914/","id":298914,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-14/4000-298914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291233/","id":291233,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-exiliados-16/4000-291233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283989/","id":283989,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-8/4000-283989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246195/","id":246195,"name":"King of the Monsters!","site_detail_url":"https://comicvine.gamespot.com/essential-godzilla-king-of-the-monsters-1-king-of-/4000-246195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235541/","id":235541,"name":"Hard Lessons","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-hard-lessons-1-hard-lessons/4000-235541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167747/","id":167747,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-the-swine-1-tpb/4000-167747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151579/","id":151579,"name":"What Happens In Vegas, Stays in Vegas","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-533-what-happens-in-vegas-stays-in-/4000-151579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134189/","id":134189,"name":"Grand Theft America","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-9-grand-theft-america/4000-134189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115308/","id":115308,"name":"The Winter Soldier, Part 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-13-the-winter-soldier-part-5/4000-115308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114519/","id":114519,"name":"Origins & Endings, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-36-origins-endings-pt-1/4000-114519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109937/","id":109937,"name":"Double Threat","site_detail_url":"https://comicvine.gamespot.com/captain-universe-x-23-1-double-threat/4000-109937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107654/","id":107654,"name":"Magnetic North: Part 5; Visions, Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-65-magnetic-north-part-5-visions-pa/4000-107654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223764/","id":223764,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-master-of-the-ring-1-volume-2/4000-223764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150664/","id":150664,"name":"Creatures on the Loose!","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos-1-creatures-on-the-lo/4000-150664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120888/","id":120888,"name":"Titannus War, Part 3","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-13-titannus-war-part-3/4000-120888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155296/","id":155296,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-spider-woman-1-volume-1/4000-155296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436948/","id":436948,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-191/4000-436948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298913/","id":298913,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-13/4000-298913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132608/","id":132608,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/ultimate-secret-ultimate-galactus-1-tpb/4000-132608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117038/","id":117038,"name":"Awakening","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-87-awakening/4000-117038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115303/","id":115303,"name":"The Winter Soldier, Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-12-the-winter-soldier-part-4/4000-115303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114518/","id":114518,"name":"Chasing Ghosts, Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-35-chasing-ghosts-conclusion/4000-114518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114517/","id":114517,"name":"Chasing Ghosts, Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-34-chasing-ghosts-part-2/4000-114517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106867/","id":106867,"name":"Secret War Book 5","site_detail_url":"https://comicvine.gamespot.com/secret-war-5-secret-war-book-5/4000-106867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574664/","id":574664,"name":"","site_detail_url":"https://comicvine.gamespot.com/special-ultimates-and-ultimate-x-men-3/4000-574664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297475/","id":297475,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-pulse-8/4000-297475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232247/","id":232247,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-9-volume-9/4000-232247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157715/","id":157715,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/essential-silver-surfer-1-volume-1/4000-157715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133271/","id":133271,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/gambit-hath-no-fury-1-volume-2/4000-133271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117218/","id":117218,"name":"Poison Tomorrow/In Sheep's Clothing","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-12-poison-tomorrowin-sheeps-clothi/4000-117218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224085/","id":224085,"name":"Scorpion: Poison Tomorrow","site_detail_url":"https://comicvine.gamespot.com/scorpion-poison-tomorrow-1-scorpion-poison-tomorro/4000-224085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436947/","id":436947,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-190/4000-436947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294048/","id":294048,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/spider-man-by-mark-millar-ultimate-collection-1-hc/4000-294048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283987/","id":283987,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-6/4000-283987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134188/","id":134188,"name":"Born on the Fourth of July","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-8-born-on-the-fourth-of-july/4000-134188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114511/","id":114511,"name":"Chasing Ghosts, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-33-chasing-ghosts-part-1/4000-114511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107630/","id":107630,"name":"Magnetic North: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-63-magnetic-north-part-3/4000-107630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573672/","id":573672,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-43/4000-573672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291427/","id":291427,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-84/4000-291427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285419/","id":285419,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-30/4000-285419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220424/","id":220424,"name":"Avengers: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/avengers-the-ultimate-guide-1-avengers-the-ultimat/4000-220424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216699/","id":216699,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-2-volume-2/4000-216699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283986/","id":283986,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5/4000-283986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222371/","id":222371,"name":"Nick Fury's Howling Commandos #1","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-24-nick-furys-howling-commandos-1/4000-222371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151227/","id":151227,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil-3-volume-3/4000-151227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115269/","id":115269,"name":"The Winter Soldier Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-9-the-winter-soldier-part-2/4000-115269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114510/","id":114510,"name":"Agent Of S.H.I.E.L.D., Part 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-31-agent-of-shield-part-6/4000-114510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108312/","id":108312,"name":"The Sentry conclusion","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-10-the-sentry-conclusion/4000-108312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107629/","id":107629,"name":"Magnetic North: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-62-magnetic-north-part-2/4000-107629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107328/","id":107328,"name":"The Reserves","site_detail_url":"https://comicvine.gamespot.com/ultimates-annual-1-the-reserves/4000-107328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104866/","id":104866,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-6/4000-104866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104865/","id":104865,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-5/4000-104865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573671/","id":573671,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-42/4000-573671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298168/","id":298168,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-41/4000-298168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291426/","id":291426,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-vengadores-83/4000-291426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117216/","id":117216,"name":"Gone Native/Vampire by Night","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-10-gone-nativevampire-by-night/4000-117216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162205/","id":162205,"name":"Volume 1: Gods and Monsters","site_detail_url":"https://comicvine.gamespot.com/ultimates-2-1-volume-1-gods-and-monsters/4000-162205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716036/","id":716036,"name":"Don't Look Behind You...","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-122-dont-look-be/4000-716036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298910/","id":298910,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-10/4000-298910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275781/","id":275781,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-125/4000-275781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134187/","id":134187,"name":"Wolf in the Fold","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-7-wolf-in-the-fold/4000-134187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115268/","id":115268,"name":"The Winter Soldier Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-8-the-winter-soldier-part-1/4000-115268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114509/","id":114509,"name":"Agent Of S.H.I.E.L.D., Part 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-30-agent-of-shield-part-5/4000-114509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107548/","id":107548,"name":"Magnetic North: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-61-magnetic-north-part-1/4000-107548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106293/","id":106293,"name":"House Divided (part 1 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-16-house-divided-part-1-of-4/4000-106293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105810/","id":105810,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/the-pulse-10-house-of-m/4000-105810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104863/","id":104863,"name":"","site_detail_url":"https://comicvine.gamespot.com/house-of-m-3/4000-104863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573670/","id":573670,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-41/4000-573670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285417/","id":285417,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-28/4000-285417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-242794/","id":242794,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-1-tpb/4000-242794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114508/","id":114508,"name":"Agent Of S.H.I.E.L.D., Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-29-agent-of-shield-part-4/4000-114508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108308/","id":108308,"name":"Alien Agenda","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-8-alien-agenda/4000-108308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-574662/","id":574662,"name":"","site_detail_url":"https://comicvine.gamespot.com/special-ultimates-and-ultimate-x-men-1/4000-574662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-573669/","id":573669,"name":"","site_detail_url":"https://comicvine.gamespot.com/spiderman-40/4000-573669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298166/","id":298166,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-39/4000-298166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285416/","id":285416,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-27/4000-285416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192700/","id":192700,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-brothers-and-keeper/4000-192700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172318/","id":172318,"name":"Choices","site_detail_url":"https://comicvine.gamespot.com/giant-size-spider-woman-1-choices/4000-172318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118222/","id":118222,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-2-part-2/4000-118222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117211/","id":117211,"name":"Family Business","site_detail_url":"https://comicvine.gamespot.com/spider-girl-86-family-business/4000-117211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136173/","id":136173,"name":"The House Of Magnus' Big Day!","site_detail_url":"https://comicvine.gamespot.com/the-pulse-house-of-m-special-1-the-house-of-magnus/4000-136173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232969/","id":232969,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/the-pulse-secret-war-1-volume-2/4000-232969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165923/","id":165923,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-house-of-m-1-one-shot/4000-165923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300331/","id":300331,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-55/4000-300331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436943/","id":436943,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-186/4000-436943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151278/","id":151278,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/essential-defenders-1-volume-one/4000-151278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134186/","id":134186,"name":"The Defenders","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-6-the-defenders/4000-134186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114060/","id":114060,"name":"Agent Of S.H.I.E.L.D., Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-28-agent-of-shield-part-3/4000-114060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113579/","id":113579,"name":"Hobgoblin: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-77-hobgoblin-part-6/4000-113579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106275/","id":106275,"name":"Campfire","site_detail_url":"https://comicvine.gamespot.com/new-x-men-13-campfire/4000-106275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200639/","id":200639,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-the-golden-child-1-volume-1/4000-200639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187402/","id":187402,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-kang-time-and-time-again-1-tpb/4000-187402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172446/","id":172446,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-jack-kirby-bicentennial-battles/4000-172446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110484/","id":110484,"name":"Worst Homecoming Ever","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy-7-worst-homecoming-ever/4000-110484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100864/","id":100864,"name":"Agent of S.H.I.E.L.D., Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-27-agent-of-shield-part-2/4000-100864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227375/","id":227375,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez-1-volume-o/4000-227375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134182/","id":134182,"name":"The Passion Play","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-5-the-passion-play/4000-134182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115187/","id":115187,"name":"Out of Time (Part 6 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-6-out-of-time-part-6-of-6/4000-115187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108307/","id":108307,"name":"The Sentry part 1","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-7-the-sentry-part-1/4000-108307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108306/","id":108306,"name":"Breakout, Pt. 6","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-6-breakout-pt-6/4000-108306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105690/","id":105690,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-secret-2/4000-105690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100923/","id":100923,"name":"American Psycho (Part 2)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-14-american-psycho-part/4000-100923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298164/","id":298164,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-37/4000-298164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293108/","id":293108,"name":"Secret war","site_detail_url":"https://comicvine.gamespot.com/secret-war-1-secret-war/4000-293108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285414/","id":285414,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-25/4000-285414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105633/","id":105633,"name":"Golden Child, Part 6","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-6-golden-child-part-6/4000-105633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186615/","id":186615,"name":"The Burnt Offering","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-the-burnt-offering-1-the-burnt-offe/4000-186615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134185/","id":134185,"name":"Brothers","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-4-brothers/4000-134185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115184/","id":115184,"name":"Out of Time (Part 5 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-5-out-of-time-part-5-of-6/4000-115184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108305/","id":108305,"name":"Breakout, Pt. 5","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-5-breakout-pt-5/4000-108305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106866/","id":106866,"name":"Secret War Book 4","site_detail_url":"https://comicvine.gamespot.com/secret-war-4-secret-war-book-4/4000-106866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105808/","id":105808,"name":"Secret War Part 3","site_detail_url":"https://comicvine.gamespot.com/the-pulse-8-secret-war-part-3/4000-105808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105689/","id":105689,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/ultimate-secret-1-chapter-one/4000-105689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100922/","id":100922,"name":"American Psycho (Part 1)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-13-american-psycho-part/4000-100922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100863/","id":100863,"name":"Agent Of S.H.I.E.L.D., Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-26-agent-of-shield-part-1/4000-100863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97361/","id":97361,"name":"Foes, Part 3","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes-3-foes-part-3/4000-97361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298163/","id":298163,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-36/4000-298163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285413/","id":285413,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-24/4000-285413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238447/","id":238447,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/exiles-fantastic-voyage-1-volume-6/4000-238447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436939/","id":436939,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-183/4000-436939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168832/","id":168832,"name":"Breakout","site_detail_url":"https://comicvine.gamespot.com/new-avengers-breakout-1-breakout/4000-168832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134184/","id":134184,"name":"The Trial of the Hulk","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-3-the-trial-of-the-hulk/4000-134184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108304/","id":108304,"name":"Breakout, Pt. 4","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-4-breakout-pt-4/4000-108304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100921/","id":100921,"name":"Brothers & Keepers (Part 5)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-12-brothers-keepers-par/4000-100921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99466/","id":99466,"name":"Enemy Of The State, Part 6","site_detail_url":"https://comicvine.gamespot.com/wolverine-25-enemy-of-the-state-part-6/4000-99466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298162/","id":298162,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-35/4000-298162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285412/","id":285412,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-23/4000-285412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255729/","id":255729,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-why-not-1-tpb/4000-255729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436938/","id":436938,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-182/4000-436938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119925/","id":119925,"name":"Dead Man Walking","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-2-dead-man-walking/4000-119925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101414/","id":101414,"name":"Out of Time (Part 3 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-out-of-time-part-3-of-6/4000-101414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101409/","id":101409,"name":"Breakout, Pt. 3","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-3-breakout-pt-3/4000-101409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100920/","id":100920,"name":"Brothers & Keepers: Part 4 of 5/Brothers and Keepers: Part 4: I, M.O.D.O.K.","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-11-brothers-keepers-par/4000-100920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99465/","id":99465,"name":"Enemy Of The State, Part 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-24-enemy-of-the-state-part-5/4000-99465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298161/","id":298161,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-34/4000-298161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285411/","id":285411,"name":"","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk-22/4000-285411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132609/","id":132609,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-jessica-jones-had-joined-the-avengers-1/4000-132609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742406/","id":742406,"name":"Nuovi Mutanti 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-23-nuovi-mutanti-3/4000-742406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436937/","id":436937,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-181/4000-436937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279049/","id":279049,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-stan-lee-1-hctpb/4000-279049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107329/","id":107329,"name":"Gods & Monsters","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-1-gods-monsters/4000-107329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105863/","id":105863,"name":"The Burnt Offering, Part 4: Born Sinners","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-10-the-burnt-offering-part-4-born-s/4000-105863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105697/","id":105697,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-nightmare-5/4000-105697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101413/","id":101413,"name":"Out of Time (Part 2 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-2-out-of-time-part-2-of-6/4000-101413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100919/","id":100919,"name":"Brothers and Keepers: Part 3: The Killers Club/Brothers and Keepers: Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-10-brothers-and-keepers/4000-100919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97344/","id":97344,"name":"Enemy Of The State, Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-23-enemy-of-the-state-part-4/4000-97344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298160/","id":298160,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-33/4000-298160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175521/","id":175521,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-1-volume-1/4000-175521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165783/","id":165783,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout-1-tpb/4000-165783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124231/","id":124231,"name":"","site_detail_url":"https://comicvine.gamespot.com/whahuh-1/4000-124231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105568/","id":105568,"name":"Golden Child, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-2-golden-child-part-2/4000-105568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106697/","id":106697,"name":null,"site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4000-106697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336526/","id":336526,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america-2-volume-2/4000-336526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324681/","id":324681,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-48/4000-324681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291225/","id":291225,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-exiliados-8/4000-291225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216790/","id":216790,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david-1-volume-1/4000-216790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154747/","id":154747,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-5-volume-5/4000-154747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105851/","id":105851,"name":"The Burnt Offering, Part 3: When the Whip Comes Down","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-9-the-burnt-offering-part-3-when-th/4000-105851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101412/","id":101412,"name":"Out of Time (Part 1 of 6)","site_detail_url":"https://comicvine.gamespot.com/captain-america-1-out-of-time-part-1-of-6/4000-101412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100918/","id":100918,"name":"Brothers and Keepers: Part 2: Hunters/Brothers & Keepers: Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-9-brothers-and-keepers-/4000-100918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99119/","id":99119,"name":"Pt. 5","site_detail_url":"https://comicvine.gamespot.com/identity-disc-5-pt-5/4000-99119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256193/","id":256193,"name":"NICK FURY The FINAL BATTLE","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-24-nick-fury-the-final-/4000-256193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186652/","id":186652,"name":"Spectacular Spider-Man: Disassembled","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-disassembled-1-spectacular-/4000-186652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913870/","id":913870,"name":null,"site_detail_url":"https://comicvine.gamespot.com/rampage-2/4000-913870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384594/","id":384594,"name":"Люди Икс против команды \"Алтимейтс\". Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-54-4/4000-384594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300509/","id":300509,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-36/4000-300509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298359/","id":298359,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-22/4000-298359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105843/","id":105843,"name":"The Burnt Offering, Part 2: Lepers at the Table","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-8-the-burnt-offering-part-2-lepers-/4000-105843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100981/","id":100981,"name":"Doom: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-12-doom-part-6/4000-100981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99750/","id":99750,"name":"Gifted, Part 6","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-6-gifted-part-6/4000-99750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99097/","id":99097,"name":"Super Patriot (Part 4)","site_detail_url":"https://comicvine.gamespot.com/captain-america-32-super-patriot-part-4/4000-99097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97338/","id":97338,"name":"Changes, Part 4","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-20-changes-part-4/4000-97338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96821/","id":96821,"name":"Enemy Of The State, Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-21-enemy-of-the-state-part-2/4000-96821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96820/","id":96820,"name":"Enemy Of The State, Part 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-20-enemy-of-the-state-part-1/4000-96820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140387/","id":140387,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers-4-volume-four/4000-140387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384593/","id":384593,"name":"Люди Икс против команды \"Алтимейтс\". Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-53-3/4000-384593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384591/","id":384591,"name":"Люди Икс против команды \"Алтимейтс\". Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-52-2/4000-384591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294045/","id":294045,"name":"The Widow","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-widow-1-the-widow/4000-294045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279248/","id":279248,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jack-kirby-1-volume-one/4000-279248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186613/","id":186613,"name":"If Looks Could Kill","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-if-looks-could-kill-1-if-looks-coul/4000-186613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105842/","id":105842,"name":"The Burnt Offering, Part 1: Headless Horsemen","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-7-the-burnt-offering-part-1-headles/4000-105842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105694/","id":105694,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-nightmare-2/4000-105694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97337/","id":97337,"name":"Changes, Part 3","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-19-changes-part-3/4000-97337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94295/","id":94295,"name":"The Universe","site_detail_url":"https://comicvine.gamespot.com/daredevil-65-the-universe/4000-94295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93544/","id":93544,"name":"Gifted, Part 5","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5-gifted-part-5/4000-93544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93414/","id":93414,"name":"The Widow, Part 4","site_detail_url":"https://comicvine.gamespot.com/daredevil-64-the-widow-part-4/4000-93414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186694/","id":186694,"name":"Marvel Knights Spider-Man: Down Among the Dead Men","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-down-among-the-dead-men-/4000-186694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807582/","id":807582,"name":null,"site_detail_url":"https://comicvine.gamespot.com/twisted-toyfare-theatre-4/4000-807582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436933/","id":436933,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-177/4000-436933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384590/","id":384590,"name":"Люди Икс против команды \"Алтимейтс\". Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-51-1/4000-384590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283979/","id":283979,"name":"","site_detail_url":"https://comicvine.gamespot.com/arma-x-13/4000-283979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275731/","id":275731,"name":"X-Treme X-Men 31","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-114-x-treme-x-men-31/4000-275731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105832/","id":105832,"name":"If Looks Could Kill, Part 6: I've Got You Under My Skin","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-6-if-looks-could-kill-part-6-ive-go/4000-105832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105693/","id":105693,"name":"Ultimate Nightmare Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-nightmare-1-ultimate-nightmare-chapter-1/4000-105693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94293/","id":94293,"name":"Snapped","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-6-snapped/4000-94293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90339/","id":90339,"name":"Chaos (Part 2)","site_detail_url":"https://comicvine.gamespot.com/avengers-501-chaos-part-2/4000-90339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382146/","id":382146,"name":"Ultimate Six. Часть 7","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-54-ultimate-six-7/4000-382146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298356/","id":298356,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-19/4000-298356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283978/","id":283978,"name":"","site_detail_url":"https://comicvine.gamespot.com/arma-x-12/4000-283978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150314/","id":150314,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-4-volume-4/4000-150314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100991/","id":100991,"name":"The Tempest: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-49-the-tempest-part-4/4000-100991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99106/","id":99106,"name":"Mission Impossible","site_detail_url":"https://comicvine.gamespot.com/exiles-49-mission-impossible/4000-99106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97335/","id":97335,"name":"Changes, Part 1","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-17-changes-part-1/4000-97335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94292/","id":94292,"name":"Jimmy's Way","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-5-jimmys-way/4000-94292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90583/","id":90583,"name":"Gifted, Part 3","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-3-gifted-part-3/4000-90583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90338/","id":90338,"name":"Chaos (Part 1)","site_detail_url":"https://comicvine.gamespot.com/avengers-500-chaos-part-1/4000-90338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172445/","id":172445,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-madbomb-1-tpb/4000-172445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382148/","id":382148,"name":"Ultimate Six. Часть 5","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-52-ultimate-six-5/4000-382148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298355/","id":298355,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-18/4000-298355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283977/","id":283977,"name":"","site_detail_url":"https://comicvine.gamespot.com/arma-x-11/4000-283977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252071/","id":252071,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-102/4000-252071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202824/","id":202824,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/identity-disc-1-tpb/4000-202824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97334/","id":97334,"name":"Under My Skin, Part 2","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-16-under-my-skin-part-2/4000-97334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96985/","id":96985,"name":"Under My Skin, Part 1","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-15-under-my-skin-part-1/4000-96985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94291/","id":94291,"name":"Two Americas (Conclusion)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-4-two-americas-conclusi/4000-94291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93411/","id":93411,"name":"The Widow, Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-61-the-widow-part-1/4000-93411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382150/","id":382150,"name":"Ultimate Six. Часть 3","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-50-ultimate-six-3/4000-382150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382149/","id":382149,"name":"Ultimate Six. Часть 4","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-51-ultimate-six-4/4000-382149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298354/","id":298354,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-17/4000-298354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-288588/","id":288588,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men-20/4000-288588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252070/","id":252070,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-101/4000-252070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121865/","id":121865,"name":"In The Beginning...","site_detail_url":"https://comicvine.gamespot.com/weapon-x-23-in-the-beginning/4000-121865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106864/","id":106864,"name":"Secret War Book 2","site_detail_url":"https://comicvine.gamespot.com/secret-war-2-secret-war-book-2/4000-106864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105524/","id":105524,"name":"New Mutants: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-45-new-mutants-part-6/4000-105524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96922/","id":96922,"name":"Down Among The Dead Men, Part 2","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-2-down-among-the-dead-me/4000-96922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94290/","id":94290,"name":"Two Americas (Part 3)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-3-two-americas-part-3/4000-94290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252069/","id":252069,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-100/4000-252069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382152/","id":382152,"name":"Ultimate Six. Часть 1","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-48-ultimate-six-1/4000-382152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-382151/","id":382151,"name":"Ultimate Six. Часть 2","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-49-ultimate-six-2/4000-382151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298353/","id":298353,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-16/4000-298353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162204/","id":162204,"name":"Homeland Security","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-homeland-security/4000-162204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127457/","id":127457,"name":"Wolverine: Enemy of the State","site_detail_url":"https://comicvine.gamespot.com/marvel-must-haves-20-wolverine-enemy-of-the-state/4000-127457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116279/","id":116279,"name":"Chapter 7","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-7-chapter-7/4000-116279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108084/","id":108084,"name":"Hollywood: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-57-hollywood-part-4/4000-108084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105523/","id":105523,"name":"New Mutants: Part 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-44-new-mutants-part-5/4000-105523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94289/","id":94289,"name":"Two Americas (Part 2)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-2-two-americas-part-2/4000-94289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187680/","id":187680,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne-2-vol-2/4000-187680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384546/","id":384546,"name":"Блокбастер. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-40-6/4000-384546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298352/","id":298352,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-15/4000-298352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197577/","id":197577,"name":"Marc Silvestri Book 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-legends-6-marc-silvestri-book-1/4000-197577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108075/","id":108075,"name":"Hollywood: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-54-hollywood-part-1/4000-108075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105522/","id":105522,"name":"New Mutants: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-43-new-mutants-part-4/4000-105522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94288/","id":94288,"name":"Two Americas (Part 1)","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon-1-two-americas-part-1/4000-94288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592818/","id":592818,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/spider-girl-legacy-1-volume-1/4000-592818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92165/","id":92165,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-4/4000-92165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92164/","id":92164,"name":"Heart of Darkness","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-3-heart-of-darkness/4000-92164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92163/","id":92163,"name":"Seeds of Destruction","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-2-seeds-of-destruction/4000-92163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92162/","id":92162,"name":"First Blood","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america-1-first-blood/4000-92162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134192/","id":134192,"name":"How I Learned to Love the Hulk","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-13-how-i-learned-to-love-the-hulk/4000-134192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298351/","id":298351,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-14/4000-298351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106863/","id":106863,"name":"Secret War Book 1","site_detail_url":"https://comicvine.gamespot.com/secret-war-1-secret-war-book-1/4000-106863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436925/","id":436925,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-170/4000-436925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385769/","id":385769,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mix-50/4000-385769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298350/","id":298350,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-13/4000-298350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280738/","id":280738,"name":"Spider-Man and Wolverine","site_detail_url":"https://comicvine.gamespot.com/spider-man-legends-4-spider-man-and-wolverine/4000-280738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252064/","id":252064,"name":"The Shiver Man!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-96-the-shiver-man/4000-252064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235443/","id":235443,"name":"Blockbuster","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-blockbuster-1-blockbuster/4000-235443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233667/","id":233667,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-3-volume-3/4000-233667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116278/","id":116278,"name":"Chapter 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-6-chapter-6/4000-116278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384539/","id":384539,"name":"Возвращение короля. Часть 7","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-34-7/4000-384539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116276/","id":116276,"name":"Chapter 5","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-5-chapter-5/4000-116276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232244/","id":232244,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four-5-volume-fiv/4000-232244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385254/","id":385254,"name":"Загнанный. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-rosomakha-12-5/4000-385254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384537/","id":384537,"name":"Возвращение короля. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-33-6/4000-384537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298347/","id":298347,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-10/4000-298347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252066/","id":252066,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit-97/4000-252066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116274/","id":116274,"name":"Chapter 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-4-chapter-4/4000-116274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105518/","id":105518,"name":"Blockbuster: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-39-blockbuster-part-6/4000-105518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385253/","id":385253,"name":"Загнанный. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-rosomakha-11-4/4000-385253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384534/","id":384534,"name":"Возвращение короля. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-31-4/4000-384534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384533/","id":384533,"name":"Возвращение короля. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-30-3/4000-384533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298346/","id":298346,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-9/4000-298346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116271/","id":116271,"name":"Chapter 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-3-chapter-3/4000-116271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175548/","id":175548,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-4/4000-175548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385252/","id":385252,"name":"Загнанный. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-rosomakha-10-3/4000-385252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384532/","id":384532,"name":"Возвращение короля. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-29-2/4000-384532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384531/","id":384531,"name":"Возвращение короля. Часть 1. Триумф Магнето","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-28-1/4000-384531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298345/","id":298345,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-8/4000-298345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283968/","id":283968,"name":"","site_detail_url":"https://comicvine.gamespot.com/arma-x-2/4000-283968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190361/","id":190361,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men-1-volume-1/4000-190361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134191/","id":134191,"name":"Persons of Mass Destruction","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-12-persons-of-mass-destruction/4000-134191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116269/","id":116269,"name":"Chapter 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-2-chapter-2/4000-116269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116253/","id":116253,"name":"Chapter 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-six-1-chapter-1/4000-116253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110198/","id":110198,"name":"Afterwards...","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-46-afterwards/4000-110198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175546/","id":175546,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-3/4000-175546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385251/","id":385251,"name":"Загнанный. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-rosomakha-9-2/4000-385251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300135/","id":300135,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-81/4000-300135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92784/","id":92784,"name":"Avengers Forever (part 1 of 2)","site_detail_url":"https://comicvine.gamespot.com/exiles-31-avengers-forever-part-1-of-2/4000-92784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233664/","id":233664,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men-6-volume-six/4000-233664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298343/","id":298343,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-6/4000-298343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235441/","id":235441,"name":"Return of the King","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-return-of-the-king-1-return-of-the-/4000-235441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228244/","id":228244,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-doctor-strange-1-volume-1/4000-228244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175541/","id":175541,"name":"Stuff of Legends","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine-1-stuff-of-leg/4000-175541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298342/","id":298342,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-5/4000-298342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-228380/","id":228380,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-silver-surfer-2-volume-2/4000-228380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90020/","id":90020,"name":"Untitled; Control","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited-48-untitled-control/4000-90020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398370/","id":398370,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-14/4000-398370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384520/","id":384520,"name":"Кругосветное путешествие. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-20-4/4000-384520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298341/","id":298341,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-4/4000-298341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120305/","id":120305,"name":"Devil In Disguise","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-10-devil-in-disguise/4000-120305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105491/","id":105491,"name":"Return of the King: Part 7","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-33-return-of-the-king-part-7/4000-105491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109908/","id":109908,"name":"Therapy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-39-therapy/4000-109908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235440/","id":235440,"name":"Ultimate War","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-war-1-ultimate-war/4000-235440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150477/","id":150477,"name":"The Extremists (Part 5)","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-the-extremists-part-5/4000-150477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105490/","id":105490,"name":"Return of the King: Part 6","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-32-return-of-the-king-part-6/4000-105490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384517/","id":384517,"name":"Кругосветное путешествие. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-17-1/4000-384517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-154668/","id":154668,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover-2-volume-2/4000-154668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150476/","id":150476,"name":"The Extremists (Part 4)","site_detail_url":"https://comicvine.gamespot.com/captain-america-10-the-extremists-part-4/4000-150476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109997/","id":109997,"name":"Predestination","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end-1-predestination/4000-109997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105488/","id":105488,"name":"Return of the King: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-30-return-of-the-king-part-4/4000-105488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99899/","id":99899,"name":"Manhunt, Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-66-manhunt-part-2/4000-99899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298338/","id":298338,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-1/4000-298338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254050/","id":254050,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-draft-1-volume-1/4000-254050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120302/","id":120302,"name":"Captain America Vs. Giant Man","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-9-captain-america-vs-giant-man/4000-120302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119794/","id":119794,"name":"The Ultimates vs. Ultimate X-Men Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-4-the-ultimates-vs-ultimate-x-men-par/4000-119794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105487/","id":105487,"name":"Return of the King: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-29-return-of-the-king-part-3/4000-105487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105486/","id":105486,"name":"Return of the King: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-28-return-of-the-king-part-2/4000-105486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451626/","id":451626,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-113/4000-451626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418729/","id":418729,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2003-03/4000-418729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119793/","id":119793,"name":"The Ultimates vs. Ultimate X-Men Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-3-the-ultimates-vs-ultimate-x-men-par/4000-119793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105485/","id":105485,"name":"Return of the King: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-27-return-of-the-king-part-1/4000-105485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299953/","id":299953,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-14/4000-299953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119789/","id":119789,"name":"The Ultimates vs. Ultimate X-Men Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-2-the-ultimates-vs-ultimate-x-men-par/4000-119789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119760/","id":119760,"name":"The Ultimates vs. Ultimate X-Men Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-war-1-the-ultimates-vs-ultimate-x-men-par/4000-119760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415138/","id":415138,"name":"Terug naar Weapon X. Deel 4 van 6","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-50-terug-naar-weapon-x-deel-4-van/4000-415138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415137/","id":415137,"name":"Terug naar Weapon X. Deel 1 van 6.","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-49-terug-naar-weapon-x-deel-1-van/4000-415137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108166/","id":108166,"name":"Black Van","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-31-black-van/4000-108166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398325/","id":398325,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-11/4000-398325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742393/","id":742393,"name":"World Tour II","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-10-world-tour-ii/4000-742393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384494/","id":384494,"name":"Возвращение в Оружие Икс. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-13-6/4000-384494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299951/","id":299951,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-12/4000-299951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448726/","id":448726,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-100/4000-448726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448725/","id":448725,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-99/4000-448725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299950/","id":299950,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-11/4000-299950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256667/","id":256667,"name":"Marvel Mangaverse, Volume Two","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse-volume-one-2-marvel-mangaverse-v/4000-256667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120301/","id":120301,"name":"The Experts","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-8-the-experts/4000-120301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113971/","id":113971,"name":"World Trust, Part 2: Assembled","site_detail_url":"https://comicvine.gamespot.com/avengers-58-world-trust-part-2-assembled/4000-113971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108162/","id":108162,"name":"Illegal","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-27-illegal/4000-108162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108161/","id":108161,"name":"Circles","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-26-circles/4000-108161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121849/","id":121849,"name":"Caught In The Draft","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-draft-kane-1-caught-in-the-draft/4000-121849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277160/","id":277160,"name":"X-Men Visionaries: Jim Lee","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-jim-lee-1-x-men-visionaries-jim-/4000-277160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220991/","id":220991,"name":"Marvel: The Characters And Their Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-the-characters-and-their-universe-1-marvel-/4000-220991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448724/","id":448724,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-98/4000-448724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299949/","id":299949,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-10/4000-299949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-278806/","id":278806,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jim-steranko-1-tpb/4000-278806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136024/","id":136024,"name":"Dear Irene...","site_detail_url":"https://comicvine.gamespot.com/soldier-x-1-dear-irene/4000-136024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384491/","id":384491,"name":"Возвращение в Оружие Икс. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-10-3/4000-384491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120092/","id":120092,"name":"Homeland Security","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-7-homeland-security/4000-120092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74731/","id":74731,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-24-ultimatum/4000-74731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254057/","id":254057,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-weapon-x-1-tpb/4000-254057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162203/","id":162203,"name":"Super Human","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-1-super-human/4000-162203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120091/","id":120091,"name":"Giant Man Vs. The Wasp","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-6-giant-man-vs-the-wasp/4000-120091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84922/","id":84922,"name":"World Tour: Part 4","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-19-world-tour-part-4/4000-84922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80582/","id":80582,"name":"The Galactus Syndrome","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse-2-the-galactus-syndrome/4000-80582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384489/","id":384489,"name":"Возвращение в Оружие Икс. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-8-1/4000-384489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299946/","id":299946,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-299946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120040/","id":120040,"name":"Hulk Does Manhattan","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-5-hulk-does-manhattan/4000-120040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114448/","id":114448,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-super-special-1/4000-114448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84921/","id":84921,"name":"World Tour: Part 3","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-18-world-tour-part-3/4000-84921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103525/","id":103525,"name":"Kat Farrell","site_detail_url":"https://comicvine.gamespot.com/deadline-1-kat-farrell/4000-103525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299261/","id":299261,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-59/4000-299261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120039/","id":120039,"name":"Thunder","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-4-thunder/4000-120039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84920/","id":84920,"name":"World Tour: Part 2","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-17-world-tour-part-2/4000-84920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78242/","id":78242,"name":"Criminal Intent","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-63-criminal-intent/4000-78242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-74728/","id":74728,"name":"Hunted","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-21-hunted/4000-74728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69348/","id":69348,"name":"Spider-Man & Black Widow","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up-14-spider-man-black-widow/4000-69348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265068/","id":265068,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-86/4000-265068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120038/","id":120038,"name":"21st Century Boy","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3-21st-century-boy/4000-120038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84919/","id":84919,"name":"World Tour: Part 1","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-16-world-tour-part-1/4000-84919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-232261/","id":232261,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner-1-volume-1/4000-232261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436901/","id":436901,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-147/4000-436901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300477/","id":300477,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-4/4000-300477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299943/","id":299943,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-4/4000-299943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107785/","id":107785,"name":"Big","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-big/4000-107785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78240/","id":78240,"name":"Living in a vise","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-61-living-in-a-vise/4000-78240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66881/","id":66881,"name":"Part 6: The Man Who Loved the War","site_detail_url":"https://comicvine.gamespot.com/fury-6-part-6-the-man-who-loved-the-war/4000-66881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51629/","id":51629,"name":"The Cycle","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-18-the-cycle/4000-51629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78216/","id":78216,"name":"When Frank Sleeps","site_detail_url":"https://comicvine.gamespot.com/the-punisher-8-when-frank-sleeps/4000-78216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436900/","id":436900,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-146/4000-436900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358232/","id":358232,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-revolution-11/4000-358232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300476/","id":300476,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-3/4000-300476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186381/","id":186381,"name":"Avengers/Defenders War","site_detail_url":"https://comicvine.gamespot.com/avengersdefenders-war-1-avengersdefenders-war/4000-186381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179244/","id":179244,"name":"Fighting Americans","site_detail_url":"https://comicvine.gamespot.com/the-jack-kirby-collector-34-fighting-americans/4000-179244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66880/","id":66880,"name":"Part 5: On Your Guns","site_detail_url":"https://comicvine.gamespot.com/fury-5-part-5-on-your-guns/4000-66880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436899/","id":436899,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-145/4000-436899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358231/","id":358231,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-revolution-10/4000-358231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275211/","id":275211,"name":"X-Men Revolution 15","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-82-x-men-revolution-15/4000-275211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155826/","id":155826,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-2-volume-two/4000-155826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136054/","id":136054,"name":"Absolute Progeny","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual-2001-1-absolute-progeny/4000-136054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108330/","id":108330,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-millennial-visions-1/4000-108330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108261/","id":108261,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-millennial-visions-1/4000-108261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78238/","id":78238,"name":"Silent Scream!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-59-silent-scream/4000-78238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66879/","id":66879,"name":"Part 4: See You And Raise","site_detail_url":"https://comicvine.gamespot.com/fury-4-part-4-see-you-and-raise/4000-66879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66249/","id":66249,"name":"Silent Night, Silent Morning; Keep In Mind; To The Core; Relic; A Moment Of Silence; Stars And Stripes Forever","site_detail_url":"https://comicvine.gamespot.com/captain-america-50-silent-night-silent-morning-kee/4000-66249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51627/","id":51627,"name":"Kraven The Hunter","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-16-kraven-the-hunter/4000-51627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109362/","id":109362,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-5/4000-109362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436898/","id":436898,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-144/4000-436898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275210/","id":275210,"name":"X-Men Revolution 14","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-81-x-men-revolution-14/4000-275210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84915/","id":84915,"name":"End Game","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-12-end-game/4000-84915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69389/","id":69389,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-12/4000-69389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69388/","id":69388,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-11/4000-69388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69387/","id":69387,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-10/4000-69387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69386/","id":69386,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-9/4000-69386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66878/","id":66878,"name":"Part 3: Here Comes the Pain","site_detail_url":"https://comicvine.gamespot.com/fury-3-part-3-here-comes-the-pain/4000-66878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109361/","id":109361,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-4/4000-109361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187393/","id":187393,"name":"Doom Triumphant!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133638/","id":133638,"name":"#5","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time-6-5/4000-133638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69385/","id":69385,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-8/4000-69385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69384/","id":69384,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-7/4000-69384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69383/","id":69383,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-6/4000-69383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69382/","id":69382,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-5/4000-69382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69381/","id":69381,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-4/4000-69381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66877/","id":66877,"name":"Part 2: Apocalypse Shortly","site_detail_url":"https://comicvine.gamespot.com/fury-2-part-2-apocalypse-shortly/4000-66877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66247/","id":66247,"name":"America Lost, Part 4","site_detail_url":"https://comicvine.gamespot.com/captain-america-48-america-lost-part-4/4000-66247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53574/","id":53574,"name":"Sins of the Past","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-11-sins-of-the-past/4000-53574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109360/","id":109360,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-3/4000-109360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-670285/","id":670285,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/spider-girl-1-tpb/4000-670285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187679/","id":187679,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne-1-vol-1/4000-187679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-85510/","id":85510,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/daredevil-visionaries-frank-miller-3-volume-3/4000-85510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69380/","id":69380,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-3/4000-69380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69379/","id":69379,"name":"","site_detail_url":"https://comicvine.gamespot.com/us-war-machine-2/4000-69379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66876/","id":66876,"name":"Part 1: Be Careful What You Wish for","site_detail_url":"https://comicvine.gamespot.com/fury-1-part-1-be-careful-what-you-wish-for/4000-66876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66246/","id":66246,"name":"America Lost, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-47-america-lost-part-3/4000-66246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53573/","id":53573,"name":"In the Heart of Darkness","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-10-in-the-heart-of-darkness/4000-53573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109359/","id":109359,"name":"","site_detail_url":"https://comicvine.gamespot.com/elektra-2/4000-109359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300111/","id":300111,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-57/4000-300111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275202/","id":275202,"name":"X-Men Revolution 10","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-77-x-men-revolution-10/4000-275202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78236/","id":78236,"name":"Storm Clouds Gathering","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-57-storm-clouds-gathering/4000-78236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78234/","id":78234,"name":"Does Anyone Remember Humus Sapien?","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-55-does-anyone-remember-humus-sapien/4000-78234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66245/","id":66245,"name":"America Lost, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-46-america-lost-part-2/4000-66245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53572/","id":53572,"name":"No Safe Haven","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-9-no-safe-haven/4000-53572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109358/","id":109358,"name":"The Book of Samurai","site_detail_url":"https://comicvine.gamespot.com/elektra-1-the-book-of-samurai/4000-109358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51232/","id":51232,"name":"The Hunted Conclusion","site_detail_url":"https://comicvine.gamespot.com/wolverine-166-the-hunted-conclusion/4000-51232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715646/","id":715646,"name":"Castaway","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-73-castaway/4000-715646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275201/","id":275201,"name":"X-Men Revolution 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-76-x-men-revolution-9/4000-275201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78233/","id":78233,"name":"Cat & Mouse","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-54-cat-mouse/4000-78233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66244/","id":66244,"name":"America Lost, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-45-america-lost-part-1/4000-66244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53571/","id":53571,"name":"First Strike","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-8-first-strike/4000-53571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52116/","id":52116,"name":"Thou Can't Get There From Here","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-45-thou-cant-get-there-from-here/4000-52116/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89836/","id":89836,"name":"The Hunted Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-165-the-hunted-part-4/4000-89836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110557/","id":110557,"name":"Marvel: The Characters And Their Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-the-characters-and-their-universe-1-marvel-/4000-110557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235318/","id":235318,"name":"Return to Weapon X","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-return-to-weapon-x-1-return-to-weap/4000-235318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187374/","id":187374,"name":"...Touched By the Hand of Havoc!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132705/","id":132705,"name":"Tales of the Phalanx Covenant","site_detail_url":"https://comicvine.gamespot.com/origin-of-generation-x-1-tales-of-the-phalanx-cove/4000-132705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78232/","id":78232,"name":"The Parent Trap","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-53-the-parent-trap/4000-78232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53570/","id":53570,"name":"Return to Weapon X","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-7-return-to-weapon-x/4000-53570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-235317/","id":235317,"name":"The Tomorrow People","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-the-tomorrow-people-1-the-tomorrow-/4000-235317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51231/","id":51231,"name":"The Hunted Part 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-164-the-hunted-part-3/4000-51231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187373/","id":187373,"name":"Mayhem on the Moon!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4000-187373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66242/","id":66242,"name":"Candor","site_detail_url":"https://comicvine.gamespot.com/captain-america-43-candor/4000-66242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451614/","id":451614,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-101/4000-451614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51230/","id":51230,"name":"The Hunted Part 2","site_detail_url":"https://comicvine.gamespot.com/wolverine-163-the-hunted-part-2/4000-51230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419324/","id":419324,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2001-03/4000-419324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300107/","id":300107,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-53/4000-300107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233951/","id":233951,"name":"Dogs of War","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-dogs-of-war-1-dogs-of-war/4000-233951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78230/","id":78230,"name":"New Beginnings","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-51-new-beginnings/4000-78230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66241/","id":66241,"name":"Fractured","site_detail_url":"https://comicvine.gamespot.com/captain-america-42-fractured/4000-66241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50800/","id":50800,"name":"The High Ground","site_detail_url":"https://comicvine.gamespot.com/avengers-41-the-high-ground/4000-50800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300281/","id":300281,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-5/4000-300281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358220/","id":358220,"name":"X-Men Révolution","site_detail_url":"https://comicvine.gamespot.com/x-men-revolution-1-x-men-revolution/4000-358220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66240/","id":66240,"name":"Duel","site_detail_url":"https://comicvine.gamespot.com/captain-america-41-duel/4000-66240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50799/","id":50799,"name":"Thoom","site_detail_url":"https://comicvine.gamespot.com/avengers-40-thoom/4000-50799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425513/","id":425513,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-supreme-justice-1-tpb/4000-425513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150313/","id":150313,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-3-volume-3/4000-150313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66239/","id":66239,"name":"Fighting Back","site_detail_url":"https://comicvine.gamespot.com/captain-america-40-fighting-back/4000-66239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47264/","id":47264,"name":"Explanations! The End of the Beginning...","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-49-explanations-the-end-of-the-beginn/4000-47264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451613/","id":451613,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-100/4000-451613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77827/","id":77827,"name":"Mindless: The End","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-6-mindless-the-end/4000-77827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419325/","id":419325,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2001-02/4000-419325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311244/","id":311244,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante-11/4000-311244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66238/","id":66238,"name":"A Gulf So Wide","site_detail_url":"https://comicvine.gamespot.com/captain-america-39-a-gulf-so-wide/4000-66238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64582/","id":64582,"name":"Rage War, Part Three Of Four","site_detail_url":"https://comicvine.gamespot.com/x-force-112-rage-war-part-three-of-four/4000-64582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47263/","id":47263,"name":"Revelations!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-48-revelations/4000-47263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359029/","id":359029,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-16/4000-359029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280745/","id":280745,"name":"Nick Fury, Agent of SHIELD: Who Is Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-who-is-scorpio-1-nick-fu/4000-280745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123573/","id":123573,"name":"Bad to the Bone","site_detail_url":"https://comicvine.gamespot.com/spideymarrow-1-bad-to-the-bone/4000-123573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65841/","id":65841,"name":"Across the Rubicon","site_detail_url":"https://comicvine.gamespot.com/captain-america-38-across-the-rubicon/4000-65841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64581/","id":64581,"name":"Rage War, Part Two Of Four","site_detail_url":"https://comicvine.gamespot.com/x-force-111-rage-war-part-two-of-four/4000-64581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51166/","id":51166,"name":"Breakdown (Part 2)","site_detail_url":"https://comicvine.gamespot.com/black-widow-2-breakdown-part-2/4000-51166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436885/","id":436885,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-132/4000-436885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359027/","id":359027,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-15/4000-359027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311241/","id":311241,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante-9/4000-311241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236773/","id":236773,"name":"Double Trouble","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-double-trouble-1-double-troubl/4000-236773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122495/","id":122495,"name":"Whatever The Cost","site_detail_url":"https://comicvine.gamespot.com/maximum-security-3-whatever-the-cost/4000-122495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65840/","id":65840,"name":"Brothers","site_detail_url":"https://comicvine.gamespot.com/captain-america-37-brothers/4000-65840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311239/","id":311239,"name":"","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante-8/4000-311239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275177/","id":275177,"name":"X-Men Revolution 1","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-68-x-men-revolution-1/4000-275177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122440/","id":122440,"name":"A World of Hurt","site_detail_url":"https://comicvine.gamespot.com/maximum-security-2-a-world-of-hurt/4000-122440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66943/","id":66943,"name":"A Gathering of Forces","site_detail_url":"https://comicvine.gamespot.com/iron-fist-wolverine-2-a-gathering-of-forces/4000-66943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47260/","id":47260,"name":"The Inside Job","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-45-the-inside-job/4000-47260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142568/","id":142568,"name":"Who is... Protocide?!","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-2000-1-who-is-protocide/4000-142568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46839/","id":46839,"name":"The Dogs of War, Part 7","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-20-the-dogs-of-war-part-7/4000-46839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448669/","id":448669,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-48/4000-448669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448668/","id":448668,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-47/4000-448668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313061/","id":313061,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men-1-wildcats-x-men/4000-313061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65838/","id":65838,"name":"When Strikes Protocide","site_detail_url":"https://comicvine.gamespot.com/captain-america-35-when-strikes-protocide/4000-65838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275175/","id":275175,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-66-x-men-universe/4000-275175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65837/","id":65837,"name":"Cache is King!","site_detail_url":"https://comicvine.gamespot.com/captain-america-34-cache-is-king/4000-65837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77823/","id":77823,"name":"Boy vs World","site_detail_url":"https://comicvine.gamespot.com/marvel-boy-2-boy-vs-world/4000-77823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65661/","id":65661,"name":"Reality Trembles","site_detail_url":"https://comicvine.gamespot.com/cable-83-reality-trembles/4000-65661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309303/","id":309303,"name":"","site_detail_url":"https://comicvine.gamespot.com/super-herois-premium-x-men-2/4000-309303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65836/","id":65836,"name":"Impending Rage","site_detail_url":"https://comicvine.gamespot.com/captain-america-33-impending-rage/4000-65836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66237/","id":66237,"name":"Heart","site_detail_url":"https://comicvine.gamespot.com/captain-america-32-heart/4000-66237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50790/","id":50790,"name":"And So it Begins","site_detail_url":"https://comicvine.gamespot.com/avengers-31-and-so-it-begins/4000-50790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46835/","id":46835,"name":"The Dogs of War, Part 3","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-16-the-dogs-of-war-part-3/4000-46835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384495/","id":384495,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-rough-cut-1/4000-384495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-142720/","id":142720,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america-1-volume-one/4000-142720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66236/","id":66236,"name":"Hidden Paths","site_detail_url":"https://comicvine.gamespot.com/captain-america-31-hidden-paths/4000-66236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65658/","id":65658,"name":"Cauldron Bubble","site_detail_url":"https://comicvine.gamespot.com/cable-80-cauldron-bubble/4000-65658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394407/","id":394407,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-140/4000-394407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316822/","id":316822,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-51/4000-316822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313977/","id":313977,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-51/4000-313977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-149294/","id":149294,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-avengers-2-volume-2/4000-149294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121217/","id":121217,"name":"Primary Actions Conclusion: Follow Those Agonies","site_detail_url":"https://comicvine.gamespot.com/deathlok-11-primary-actions-conclusion-follow-thos/4000-121217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394402/","id":394402,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-139/4000-394402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121223/","id":121223,"name":"Primary Actions Chapter Three: The Weight","site_detail_url":"https://comicvine.gamespot.com/deathlok-10-primary-actions-chapter-three-the-weig/4000-121223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64572/","id":64572,"name":"Games Without Frontiers, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-force-102-games-without-frontiers-part-1/4000-64572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46672/","id":46672,"name":"Correction (Part 1)","site_detail_url":"https://comicvine.gamespot.com/generation-x-63-correction-part-1/4000-46672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46357/","id":46357,"name":"The Coming","site_detail_url":"https://comicvine.gamespot.com/mutant-x-19-the-coming/4000-46357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394396/","id":394396,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-138/4000-394396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275145/","id":275145,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-60-x-men-universe/4000-275145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66295/","id":66295,"name":"Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/earth-x-12-chapter-twelve/4000-66295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66233/","id":66233,"name":"Grotesqueries","site_detail_url":"https://comicvine.gamespot.com/captain-america-28-grotesqueries/4000-66233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46337/","id":46337,"name":"America's Future!","site_detail_url":"https://comicvine.gamespot.com/mutant-x-18-americas-future/4000-46337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280259/","id":280259,"name":"x-men arriva il film!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-117-x-men-arriva-il-film/4000-280259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275142/","id":275142,"name":"X-Men Universe: La Regina dei Goblin colpisce!","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-59-x-men-universe-la-regina-dei-gobli/4000-275142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187227/","id":187227,"name":"X-Men: Zero Tolerance","site_detail_url":"https://comicvine.gamespot.com/x-men-zero-tolerance-1-x-men-zero-tolerance/4000-187227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121209/","id":121209,"name":"Primary Actions Chapter One: Random Access","site_detail_url":"https://comicvine.gamespot.com/deathlok-8-primary-actions-chapter-one-random-acce/4000-121209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66232/","id":66232,"name":"Twisted Tomorrows, Part 3","site_detail_url":"https://comicvine.gamespot.com/captain-america-27-twisted-tomorrows-part-3/4000-66232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64570/","id":64570,"name":"Dark Cathedral","site_detail_url":"https://comicvine.gamespot.com/x-force-100-dark-cathedral/4000-64570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48390/","id":48390,"name":"Role Reversal","site_detail_url":"https://comicvine.gamespot.com/hulk-11-role-reversal/4000-48390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66231/","id":66231,"name":"Twisted Tomorrows, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-26-twisted-tomorrows-part-2/4000-66231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64569/","id":64569,"name":"Bad Company","site_detail_url":"https://comicvine.gamespot.com/x-force-99-bad-company/4000-64569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132412/","id":132412,"name":"The Day the Earth got ill!","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-remnants-1-the-day-the-earth-got-ill/4000-132412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48389/","id":48389,"name":"This Power Divided","site_detail_url":"https://comicvine.gamespot.com/hulk-10-this-power-divided/4000-48389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302262/","id":302262,"name":"Prisionero M-13","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-27-prisionero-m-13/4000-302262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132407/","id":132407,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-young-allies-1/4000-132407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121001/","id":121001,"name":"Disaster Bay","site_detail_url":"https://comicvine.gamespot.com/deathlok-6-disaster-bay/4000-121001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66230/","id":66230,"name":"Twisted Tomorrows, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-twisted-tomorrows-part-1/4000-66230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46235/","id":46235,"name":"God and Man","site_detail_url":"https://comicvine.gamespot.com/mutant-x-16-god-and-man/4000-46235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46161/","id":46161,"name":"Hail Hydra-- And Farewell!","site_detail_url":"https://comicvine.gamespot.com/avengers-united-they-stand-2-hail-hydra-and-farewe/4000-46161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394382/","id":394382,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-134/4000-394382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120953/","id":120953,"name":"Reconstructive Perjury","site_detail_url":"https://comicvine.gamespot.com/deathlok-5-reconstructive-perjury/4000-120953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46175/","id":46175,"name":"The Ripple Effect","site_detail_url":"https://comicvine.gamespot.com/mutant-x-15-the-ripple-effect/4000-46175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51211/","id":51211,"name":"First Cut!","site_detail_url":"https://comicvine.gamespot.com/wolverine-144-first-cut/4000-51211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48387/","id":48387,"name":"Death Match","site_detail_url":"https://comicvine.gamespot.com/hulk-8-death-match/4000-48387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46121/","id":46121,"name":"Wrecked and Walloped by the Wizard's Warriors!","site_detail_url":"https://comicvine.gamespot.com/fantastic-five-2-wrecked-and-walloped-by-the-wizar/4000-46121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-715374/","id":715374,"name":"The Amazing Spider-Legion!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures-54-the-amazing-s/4000-715374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359010/","id":359010,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-1/4000-359010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120174/","id":120174,"name":"Interlude: The Green Light","site_detail_url":"https://comicvine.gamespot.com/deathlok-4-interlude-the-green-light/4000-120174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120172/","id":120172,"name":"The Crawl Conclusion: Love, Sweet Love","site_detail_url":"https://comicvine.gamespot.com/deathlok-3-the-crawl-conclusion-love-sweet-love/4000-120172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46077/","id":46077,"name":"A More Perfect Union","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-31-a-more-perfect-union/4000-46077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503990/","id":503990,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-villainy-of-doctor-doom-1-tpb/4000-503990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436870/","id":436870,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-117/4000-436870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120124/","id":120124,"name":"The Crawl Part Two: Thrill-Kill Confidential","site_detail_url":"https://comicvine.gamespot.com/deathlok-2-the-crawl-part-two-thrill-kill-confiden/4000-120124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95855/","id":95855,"name":"Cipher","site_detail_url":"https://comicvine.gamespot.com/warlock-1-cipher/4000-95855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294487/","id":294487,"name":"Hombre","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-18-hombre/4000-294487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436869/","id":436869,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-116/4000-436869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359404/","id":359404,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-47/4000-359404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116614/","id":116614,"name":"The Crawl Part 1: From Small Things","site_detail_url":"https://comicvine.gamespot.com/deathlok-1-the-crawl-part-1-from-small-things/4000-116614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156744/","id":156744,"name":"Metal Works","site_detail_url":"https://comicvine.gamespot.com/x-men-1999-1-metal-works/4000-156744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69280/","id":69280,"name":"The Fundamental Force","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-29-the-fundamental-force/4000-69280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436868/","id":436868,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-115/4000-436868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264529/","id":264529,"name":"Onslaught Chapter Four","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-50-onslaught-chapter-four/4000-264529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125998/","id":125998,"name":"The Condor strikes!","site_detail_url":"https://comicvine.gamespot.com/nova-4-the-condor-strikes/4000-125998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66225/","id":66225,"name":"Danger in the Air!","site_detail_url":"https://comicvine.gamespot.com/captain-america-20-danger-in-the-air/4000-66225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65790/","id":65790,"name":"Plague of Evil","site_detail_url":"https://comicvine.gamespot.com/x-men-91-plague-of-evil/4000-65790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65137/","id":65137,"name":"Crossed Wires","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-371-crossed-wires/4000-65137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51164/","id":51164,"name":"The Itsy-Bitsy Spider Part 3: I.D.","site_detail_url":"https://comicvine.gamespot.com/black-widow-3-the-itsy-bitsy-spider-part-3-id/4000-51164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359402/","id":359402,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-45/4000-359402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275128/","id":275128,"name":"X-Men Universe : Arriva Mutant X","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-51-x-men-universe-arriva-mutant-x/4000-275128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156900/","id":156900,"name":"Day of the Remains","site_detail_url":"https://comicvine.gamespot.com/avengers-annual-1999-1-day-of-the-remains/4000-156900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51163/","id":51163,"name":"The Itsy-Bitsy Spider Part 2: Ingenue","site_detail_url":"https://comicvine.gamespot.com/black-widow-2-the-itsy-bitsy-spider-part-2-ingenue/4000-51163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451602/","id":451602,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-89/4000-451602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436866/","id":436866,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-113/4000-436866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-205562/","id":205562,"name":"Web of Intrigue","site_detail_url":"https://comicvine.gamespot.com/black-widow-web-of-intrigue-1-web-of-intrigue/4000-205562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51162/","id":51162,"name":"The Itsy-Bitsy Spider Part 1: Uninvited","site_detail_url":"https://comicvine.gamespot.com/black-widow-1-the-itsy-bitsy-spider-part-1-uninvit/4000-51162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122365/","id":122365,"name":"A World Gone Mad!","site_detail_url":"https://comicvine.gamespot.com/mutant-x-annual-1999-1-a-world-gone-mad/4000-122365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293890/","id":293890,"name":"Cabos Sueltos","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-9-cabos-sueltos/4000-293890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325031/","id":325031,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-14/4000-325031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313479/","id":313479,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-38/4000-313479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275123/","id":275123,"name":"X-Men Universe: La città dei bambini perduti","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-49-x-men-universe-la-citta-dei-bambin/4000-275123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66285/","id":66285,"name":"Chapter Two","site_detail_url":"https://comicvine.gamespot.com/earth-x-2-chapter-two/4000-66285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451601/","id":451601,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-88/4000-451601/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48380/","id":48380,"name":"The Gathering Storm","site_detail_url":"https://comicvine.gamespot.com/hulk-1-the-gathering-storm/4000-48380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45759/","id":45759,"name":"A Clash Of Iron","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-15-a-clash-of-iron/4000-45759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45734/","id":45734,"name":"And Now, Argo The Almighty!","site_detail_url":"https://comicvine.gamespot.com/a-next-6-and-now-argo-the-almighty/4000-45734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45679/","id":45679,"name":"A Touch Of Venom","site_detail_url":"https://comicvine.gamespot.com/spider-girl-5-a-touch-of-venom/4000-45679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45678/","id":45678,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/a-next-5-the-gift/4000-45678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313476/","id":313476,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-35/4000-313476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45617/","id":45617,"name":"Who Shall Be Worthy?","site_detail_url":"https://comicvine.gamespot.com/a-next-4-who-shall-be-worthy/4000-45617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415124/","id":415124,"name":"De helden van de 21e eeuw: Gekruiste draden","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-37-de-helden-van-de-21e-eeuw-gekr/4000-415124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392812/","id":392812,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-123/4000-392812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300097/","id":300097,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-43/4000-300097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96136/","id":96136,"name":"Now Is the Time for all Good Men","site_detail_url":"https://comicvine.gamespot.com/avengers-forever-2-now-is-the-time-for-all-good-me/4000-96136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138790/","id":138790,"name":"Life & Liberty","site_detail_url":"https://comicvine.gamespot.com/iron-man-captain-america-annual-98-1-life-liberty/4000-138790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238691/","id":238691,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men-1-wildcats-x-men/4000-238691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96135/","id":96135,"name":"Destiny Made Manifest","site_detail_url":"https://comicvine.gamespot.com/avengers-forever-1-destiny-made-manifest/4000-96135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65641/","id":65641,"name":"The Nemesis Contract Part 4: Strange Agencies","site_detail_url":"https://comicvine.gamespot.com/cable-62-the-nemesis-contract-part-4-strange-agenc/4000-65641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45528/","id":45528,"name":"The Hunt For Xavier! Part One: Meltdown","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-362-the-hunt-for-xavier-part-one/4000-45528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396251/","id":396251,"name":"","site_detail_url":"https://comicvine.gamespot.com/os-fabulosos-x-men-35/4000-396251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66216/","id":66216,"name":"American Nightmare, Part 3: Finger on the Pulse","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-american-nightmare-part-3-finge/4000-66216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65640/","id":65640,"name":"The Nemesis Contract Part 3: Captive Audience","site_detail_url":"https://comicvine.gamespot.com/cable-61-the-nemesis-contract-part-3-captive-audie/4000-65640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65639/","id":65639,"name":"The Nemesis Contract Part 2: Introducing Agent 18","site_detail_url":"https://comicvine.gamespot.com/cable-60-the-nemesis-contract-part-2-introducing-a/4000-65639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155545/","id":155545,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-3-volume-3/4000-155545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65638/","id":65638,"name":"The Nemesis Contract Part 1: The Wrath of Zzzax!","site_detail_url":"https://comicvine.gamespot.com/cable-59-the-nemesis-contract-part-1-the-wrath-of-/4000-65638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45399/","id":45399,"name":"In The End...As In The Beginning!","site_detail_url":"https://comicvine.gamespot.com/mutant-x-1-in-the-endas-in-the-beginning/4000-45399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65637/","id":65637,"name":"Lest They Shed Blood In His Name!","site_detail_url":"https://comicvine.gamespot.com/cable-58-lest-they-shed-blood-in-his-name/4000-65637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165785/","id":165785,"name":"Spider-Man: Identity Crisis","site_detail_url":"https://comicvine.gamespot.com/spider-man-identity-crisis-1-spider-man-identity-c/4000-165785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136972/","id":136972,"name":"Flying Blind (Part 4)","site_detail_url":"https://comicvine.gamespot.com/daredevil-379-flying-blind-part-4/4000-136972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116163/","id":116163,"name":"Sentinel of Liberty","site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty-1-sentinel-of-/4000-116163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45341/","id":45341,"name":"In The Fold Part 3","site_detail_url":"https://comicvine.gamespot.com/iron-fist-3-in-the-fold-part-3/4000-45341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45311/","id":45311,"name":"Bodyguards","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-iron-age-2-bodyguards/4000-45311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316246/","id":316246,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-29/4000-316246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279576/","id":279576,"name":"Vittime","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-98-vittime/4000-279576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152909/","id":152909,"name":"The Fire Within","site_detail_url":"https://comicvine.gamespot.com/x-force-80-the-fire-within/4000-152909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136973/","id":136973,"name":"Flying Blind (Part 3)","site_detail_url":"https://comicvine.gamespot.com/daredevil-378-flying-blind-part-3/4000-136973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50766/","id":50766,"name":"The Court Martial of Carol Danvers","site_detail_url":"https://comicvine.gamespot.com/avengers-7-the-court-martial-of-carol-danvers/4000-50766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45251/","id":45251,"name":"In The Fold Part 2","site_detail_url":"https://comicvine.gamespot.com/iron-fist-2-in-the-fold-part-2/4000-45251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131881/","id":131881,"name":"In Deep","site_detail_url":"https://comicvine.gamespot.com/iron-man-6-in-deep/4000-131881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69267/","id":69267,"name":"Thunder & Lightning","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-16-thunder-lightning/4000-69267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65635/","id":65635,"name":"Bloodrite","site_detail_url":"https://comicvine.gamespot.com/cable-56-bloodrite/4000-65635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359390/","id":359390,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-35/4000-359390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309229/","id":309229,"name":"","site_detail_url":"https://comicvine.gamespot.com/fator-x-17/4000-309229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136974/","id":136974,"name":"Flying Blind (Part 2)","site_detail_url":"https://comicvine.gamespot.com/daredevil-377-flying-blind-part-2/4000-136974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66883/","id":66883,"name":"... And Destroy!","site_detail_url":"https://comicvine.gamespot.com/furyagent-13-2-and-destroy/4000-66883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45164/","id":45164,"name":"In The Fold","site_detail_url":"https://comicvine.gamespot.com/iron-fist-1-in-the-fold/4000-45164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451596/","id":451596,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-83/4000-451596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69266/","id":69266,"name":"Wanted Dead or Alive!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-15-wanted-dead-or-alive/4000-69266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136975/","id":136975,"name":"Flying Blind (Part 1)","site_detail_url":"https://comicvine.gamespot.com/daredevil-376-flying-blind-part-1/4000-136975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66882/","id":66882,"name":"The Hunt Begins...For The Truth!","site_detail_url":"https://comicvine.gamespot.com/furyagent-13-1-the-hunt-beginsfor-the-truth/4000-66882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117675/","id":117675,"name":"Engines of Destruction, Part One","site_detail_url":"https://comicvine.gamespot.com/cable-machine-man-annual-98-1-engines-of-destructi/4000-117675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44944/","id":44944,"name":"Inventing the Hornet!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-27-inventing-the-hornet/4000-44944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275060/","id":275060,"name":"Il Fattore Decisionale","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-37-il-fattore-decisionale/4000-275060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64550/","id":64550,"name":"City of Lost Children","site_detail_url":"https://comicvine.gamespot.com/x-force-77-city-of-lost-children/4000-64550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44938/","id":44938,"name":"Power and Glory, Part 1: Credibility Gap","site_detail_url":"https://comicvine.gamespot.com/captain-america-5-power-and-glory-part-1-credibili/4000-44938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44768/","id":44768,"name":"Urban Jungle (Chapter Four): Garden Of Evil!","site_detail_url":"https://comicvine.gamespot.com/ka-zar-11-urban-jungle-chapter-four-garden-of-evil/4000-44768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325049/","id":325049,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-7/4000-325049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275055/","id":275055,"name":"X-Men Universe : Nello Spazio","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-35-x-men-universe-nello-spazio/4000-275055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249410/","id":249410,"name":"Thunderbolts: Marvel's Most Wanted","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-marvels-most-wanted-1-thunderbolts-ma/4000-249410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247295/","id":247295,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/grandson-of-origins-of-marvel-comics-1-tpb/4000-247295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44766/","id":44766,"name":"Print the Legend","site_detail_url":"https://comicvine.gamespot.com/conspiracy-2-print-the-legend/4000-44766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44765/","id":44765,"name":"Museum Piece","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-museum-piece/4000-44765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44676/","id":44676,"name":"Urban Jungle (Chapter Three): Outgrowth","site_detail_url":"https://comicvine.gamespot.com/ka-zar-10-urban-jungle-chapter-three-outgrowth/4000-44676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66399/","id":66399,"name":"Amendments","site_detail_url":"https://comicvine.gamespot.com/excalibur-117-amendments/4000-66399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44724/","id":44724,"name":"Pryde Goeth Before The Fall","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield-3-pryde-goeth-before-t/4000-44724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44674/","id":44674,"name":"Show & Tell","site_detail_url":"https://comicvine.gamespot.com/conspiracy-1-show-amp-tell/4000-44674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44576/","id":44576,"name":"Heroes' Reward","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-10-heroes-reward/4000-44576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414932/","id":414932,"name":"Het hart van de zaak","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-26-het-hart-van-de-zaak/4000-414932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279551/","id":279551,"name":"Il destino di Franklin","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-91-il-destino-di-franklin/4000-279551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252078/","id":252078,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-19/4000-252078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252077/","id":252077,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed-18/4000-252077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44616/","id":44616,"name":"The Mission","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield-2-the-mission/4000-44616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313462/","id":313462,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-21/4000-313462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44438/","id":44438,"name":"The Calling","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield-1-the-calling/4000-44438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44309/","id":44309,"name":"Songbird: Alone!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-8-songbird-alone/4000-44309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436847/","id":436847,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-94/4000-436847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359386/","id":359386,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-31/4000-359386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-358609/","id":358609,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/son-of-origins-of-marvel-comics-1-tpb/4000-358609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313461/","id":313461,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-20/4000-313461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157736/","id":157736,"name":"World War 3, Part 3: No Time To Mourn","site_detail_url":"https://comicvine.gamespot.com/iron-man-13-world-war-3-part-3-no-time-to-mourn/4000-157736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65769/","id":65769,"name":"Last Exit","site_detail_url":"https://comicvine.gamespot.com/x-men-69-last-exit/4000-65769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51187/","id":51187,"name":"Out of Darkness Into Light","site_detail_url":"https://comicvine.gamespot.com/wolverine-118-out-of-darkness-into-light/4000-51187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44317/","id":44317,"name":"Widow's Kiss (Part 2)","site_detail_url":"https://comicvine.gamespot.com/daredevil-369-widows-kiss-part-2/4000-44317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157735/","id":157735,"name":"Matters Of The Heart","site_detail_url":"https://comicvine.gamespot.com/iron-man-12-matters-of-the-heart/4000-157735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153100/","id":153100,"name":"Let Slip the Dogs of War!","site_detail_url":"https://comicvine.gamespot.com/hercules-heart-of-chaos-3-let-slip-the-dogs-of-war/4000-153100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77814/","id":77814,"name":"Doomsday!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-12-doomsday/4000-77814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48268/","id":48268,"name":"Shadow's End!","site_detail_url":"https://comicvine.gamespot.com/avengers-12-shadows-end/4000-48268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44094/","id":44094,"name":"Unstable Elements!","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-6-unstable-elements/4000-44094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153099/","id":153099,"name":"Cry Havoc!","site_detail_url":"https://comicvine.gamespot.com/hercules-heart-of-chaos-2-cry-havoc/4000-153099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65831/","id":65831,"name":"Serpents & Eagles Part 4: Into The Snake Pit","site_detail_url":"https://comicvine.gamespot.com/captain-america-11-serpents-eagles-part-4-into-the/4000-65831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48267/","id":48267,"name":"Shadow Victory","site_detail_url":"https://comicvine.gamespot.com/avengers-11-shadow-victory/4000-48267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153097/","id":153097,"name":"Even an Immortal Can Die!","site_detail_url":"https://comicvine.gamespot.com/hercules-heart-of-chaos-1-even-an-immortal-can-die/4000-153097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48266/","id":48266,"name":"Shadow War!","site_detail_url":"https://comicvine.gamespot.com/avengers-10-shadow-war/4000-48266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43969/","id":43969,"name":"Serpents & Eagles Part 3: Capital Punishment","site_detail_url":"https://comicvine.gamespot.com/captain-america-10-serpents-eagles-part-3-capital-/4000-43969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43874/","id":43874,"name":"Heroes and Villains","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-1-heroes-and-villains/4000-43874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315790/","id":315790,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-16/4000-315790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275030/","id":275030,"name":"Tutti contro di Loro","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-27-tutti-contro-di-loro/4000-275030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48265/","id":48265,"name":"Shadowbox","site_detail_url":"https://comicvine.gamespot.com/avengers-9-shadowbox/4000-48265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386949/","id":386949,"name":"","site_detail_url":"https://comicvine.gamespot.com/amalgama-3/4000-386949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113364/","id":113364,"name":"The Silver Age","site_detail_url":"https://comicvine.gamespot.com/wildcatsx-men-the-silver-age-1-the-silver-age/4000-113364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48264/","id":48264,"name":"Shadowplay","site_detail_url":"https://comicvine.gamespot.com/avengers-8-shadowplay/4000-48264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43770/","id":43770,"name":"Serpents and Eagles: Part 1: A First Small Hisssss","site_detail_url":"https://comicvine.gamespot.com/captain-america-8-serpents-and-eagles-part-1-a-fir/4000-43770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48263/","id":48263,"name":"Help","site_detail_url":"https://comicvine.gamespot.com/avengers-7-help/4000-48263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43680/","id":43680,"name":"Crossroads","site_detail_url":"https://comicvine.gamespot.com/captain-america-7-crossroads/4000-43680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43582/","id":43582,"name":"Inundated!","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-15-inundated/4000-43582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381615/","id":381615,"name":"","site_detail_url":"https://comicvine.gamespot.com/wiz-18/4000-381615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200815/","id":200815,"name":"Aces & Eights","site_detail_url":"https://comicvine.gamespot.com/spider-man-dead-mans-hand-1-aces-eights/4000-200815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157729/","id":157729,"name":"Industrial Revelation","site_detail_url":"https://comicvine.gamespot.com/iron-man-6-industrial-revelation/4000-157729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155515/","id":155515,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine-2-volume-2/4000-155515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48262/","id":48262,"name":"A Hard Day's Night","site_detail_url":"https://comicvine.gamespot.com/avengers-6-a-hard-day-s-night/4000-48262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43574/","id":43574,"name":"Soldiers","site_detail_url":"https://comicvine.gamespot.com/captain-america-6-soldiers/4000-43574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107398/","id":107398,"name":"Dead Man Walking","site_detail_url":"https://comicvine.gamespot.com/punisher-17-dead-man-walking/4000-107398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43486/","id":43486,"name":"Higher Ground","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-14-higher-ground/4000-43486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313453/","id":313453,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-12/4000-313453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65829/","id":65829,"name":"Victory","site_detail_url":"https://comicvine.gamespot.com/captain-america-5-victory/4000-65829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64538/","id":64538,"name":"The Haunting of Castle Doom","site_detail_url":"https://comicvine.gamespot.com/x-force-64-the-haunting-of-castle-doom/4000-64538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48261/","id":48261,"name":"Let No Man Tear Asunder","site_detail_url":"https://comicvine.gamespot.com/avengers-5-let-no-man-tear-asunder/4000-48261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43488/","id":43488,"name":"Breaking and Entering","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up-6-breaking-and-entering/4000-43488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43387/","id":43387,"name":"A Savage Land","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-13-a-savage-land/4000-43387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107397/","id":107397,"name":"Total X-Tinction Part 5: Dead To Rights","site_detail_url":"https://comicvine.gamespot.com/punisher-16-total-x-tinction-part-5-dead-to-rights/4000-107397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300055/","id":300055,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-1/4000-300055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64537/","id":64537,"name":"Wish You Were Here","site_detail_url":"https://comicvine.gamespot.com/x-force-63-wish-you-were-here/4000-64537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414928/","id":414928,"name":"Man","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-22-man/4000-414928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107396/","id":107396,"name":"Total X-Tinction Part 4: Unmasked","site_detail_url":"https://comicvine.gamespot.com/punisher-15-total-x-tinction-part-4-unmasked/4000-107396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77805/","id":77805,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-3-revelations/4000-77805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65827/","id":65827,"name":"Patriotism","site_detail_url":"https://comicvine.gamespot.com/captain-america-3-patriotism/4000-65827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48259/","id":48259,"name":"In Love & War","site_detail_url":"https://comicvine.gamespot.com/avengers-3-in-love-war/4000-48259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107395/","id":107395,"name":"Total X-Tinction Part 3: Ashes, Ashes, All Fall Down","site_detail_url":"https://comicvine.gamespot.com/punisher-14-total-x-tinction-part-3-ashes-ashes-al/4000-107395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143308/","id":143308,"name":"Heart & Soul","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-annual-96-1-heart-soul/4000-143308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77804/","id":77804,"name":"Repercussions","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-2-repercussions/4000-77804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48258/","id":48258,"name":"First Blood","site_detail_url":"https://comicvine.gamespot.com/avengers-2-first-blood/4000-48258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43117/","id":43117,"name":"The Darker Side of Destiny","site_detail_url":"https://comicvine.gamespot.com/mystique-sabretooth-1-the-darker-side-of-destiny/4000-43117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625955/","id":625955,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-transformations-1-tpb/4000-625955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107393/","id":107393,"name":"Total X-Tinction Part 2: Friend Or Foe?","site_detail_url":"https://comicvine.gamespot.com/punisher-13-total-x-tinction-part-2-friend-or-foe/4000-107393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131214/","id":131214,"name":"A New Beginning For X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-megazine-1-a-new-beginning-for-x-force/4000-131214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48257/","id":48257,"name":"Awaken the Thunder","site_detail_url":"https://comicvine.gamespot.com/avengers-1-awaken-the-thunder/4000-48257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-43006/","id":43006,"name":"True Lies","site_detail_url":"https://comicvine.gamespot.com/cable-37-true-lies/4000-43006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42979/","id":42979,"name":"Courage","site_detail_url":"https://comicvine.gamespot.com/captain-america-1-courage/4000-42979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107392/","id":107392,"name":"Total X-Tinction Part 1: Capitol Offenses","site_detail_url":"https://comicvine.gamespot.com/punisher-12-total-x-tinction-part-1-capitol-offens/4000-107392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267152/","id":267152,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-amalgam-age-of-comics-the-marvel-comics-collec/4000-267152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151205/","id":151205,"name":"Instinct (Part One)","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-2-instinct-part-one/4000-151205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107391/","id":107391,"name":"Onslaught Impact 2: Manhattan Onslaught","site_detail_url":"https://comicvine.gamespot.com/punisher-11-onslaught-impact-2-manhattan-onslaught/4000-107391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432514/","id":432514,"name":"Schwurgericht","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-26-schwurgericht/4000-432514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151204/","id":151204,"name":"Together Again ... For Their Final Adventure","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-1-together-again-for-their-final-ad/4000-151204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96933/","id":96933,"name":"Back in the USSR: Part 2","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-x-men-6-back-in-the-ussr-par/4000-96933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96932/","id":96932,"name":"Back in the USSR Part 1","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-x-men-5-back-in-the-ussr-par/4000-96932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42721/","id":42721,"name":"Onslaught Phase 1: Loose Cannons","site_detail_url":"https://comicvine.gamespot.com/cable-34-onslaught-phase-1-loose-cannons/4000-42721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264173/","id":264173,"name":"The Neal Adams Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-2-the-neal-adams-collection-2-th/4000-264173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136934/","id":136934,"name":"Convention Special Preview","site_detail_url":"https://comicvine.gamespot.com/captain-america-exclusive-comicon-edition-1-conven/4000-136934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42600/","id":42600,"name":"Man Without a Country, Part 4: Executive Action","site_detail_url":"https://comicvine.gamespot.com/captain-america-453-man-without-a-country-part-4-e/4000-42600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64529/","id":64529,"name":"Without A Net","site_detail_url":"https://comicvine.gamespot.com/x-force-55-without-a-net/4000-64529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42489/","id":42489,"name":"Man without a Country, Part 3: Plan B","site_detail_url":"https://comicvine.gamespot.com/captain-america-452-man-without-a-country-part-3-p/4000-42489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107375/","id":107375,"name":"He's Alive?!","site_detail_url":"https://comicvine.gamespot.com/punisher-7-hes-alive/4000-107375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274927/","id":274927,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-14/4000-274927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389302/","id":389302,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-90/4000-389302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387271/","id":387271,"name":"X-Force Especial","site_detail_url":"https://comicvine.gamespot.com/x-force-especial-1-x-force-especial/4000-387271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274925/","id":274925,"name":"Phalanx Nuova Generazione parte 1","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-13-phalanx-nuova-generazione-parte-1/4000-274925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134471/","id":134471,"name":"Road to Ruin","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-24-road-to-ruin/4000-134471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111184/","id":111184,"name":"Mission: Destroy Hydra!","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-agent-of-shield-1-mission-destroy-hydr/4000-111184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57712/","id":57712,"name":"Time Will Tell","site_detail_url":"https://comicvine.gamespot.com/war-machine-24-time-will-tell/4000-57712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42203/","id":42203,"name":"First Sign, Part 1: I'll Take Manhattan","site_detail_url":"https://comicvine.gamespot.com/captain-america-449-first-sign-part-1-ill-take-man/4000-42203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42202/","id":42202,"name":"First Sign, Part 4: Balance of Power","site_detail_url":"https://comicvine.gamespot.com/the-avengers-396-first-sign-part-4-balance-of-powe/4000-42202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134472/","id":134472,"name":"Bad Craziness","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-23-bad-craziness/4000-134472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57711/","id":57711,"name":"Wish Upon A Star","site_detail_url":"https://comicvine.gamespot.com/war-machine-23-wish-upon-a-star/4000-57711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134473/","id":134473,"name":"Disturbing The Peace","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-22-disturbing-the-peace/4000-134473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97939/","id":97939,"name":"","site_detail_url":"https://comicvine.gamespot.com/over-the-edge-4/4000-97939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381599/","id":381599,"name":"","site_detail_url":"https://comicvine.gamespot.com/wiz-3/4000-381599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121305/","id":121305,"name":"War of the worlds","site_detail_url":"https://comicvine.gamespot.com/ultraforce-spider-man-1a-war-of-the-worlds/4000-121305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274918/","id":274918,"name":"Legami di Sangue prima parte","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-9-legami-di-sangue-prima-parte/4000-274918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134450/","id":134450,"name":"Beat the Devil","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-20-beat-the-devil/4000-134450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107434/","id":107434,"name":"Rune-Venom","site_detail_url":"https://comicvine.gamespot.com/rune-vs-venom-1-rune-venom/4000-107434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453282/","id":453282,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-1/4000-453282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110386/","id":110386,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/punisher-kills-the-marvel-universe-1-gn/4000-110386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417704/","id":417704,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel-1995/4000-417704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134451/","id":134451,"name":"Hell on Earth","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-19-hell-on-earth/4000-134451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107344/","id":107344,"name":"Condemned","site_detail_url":"https://comicvine.gamespot.com/punisher-1-condemned/4000-107344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41646/","id":41646,"name":"What if Storm had the Power of Phoenix","site_detail_url":"https://comicvine.gamespot.com/what-if-79-what-if-storm-had-the-power-of-phoenix/4000-41646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41516/","id":41516,"name":"Funeral Story","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-434-funeral-story/4000-41516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274686/","id":274686,"name":"L'ultimo Dono","site_detail_url":"https://comicvine.gamespot.com/x-force-14-lultimo-dono/4000-274686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134469/","id":134469,"name":"Chthonic Park","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-18-chthonic-park/4000-134469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131279/","id":131279,"name":"Glory Days","site_detail_url":"https://comicvine.gamespot.com/double-edge-omega-1-glory-days/4000-131279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108380/","id":108380,"name":"\"Final Curtain\"","site_detail_url":"https://comicvine.gamespot.com/x-men-2099-25-final-curtain/4000-108380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164831/","id":164831,"name":"Lair Of The N'Garai / What The Cat Dragged In","site_detail_url":"https://comicvine.gamespot.com/wolverine-95-1-lair-of-the-n-garai-what-the-cat-dr/4000-164831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41408/","id":41408,"name":"Earthquake Logic: Tectonic Shift","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme-81-earthquake-logi/4000-41408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41385/","id":41385,"name":"Punishment Fit the Crime","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-433-punishment-fit-the-crime/4000-41385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274685/","id":274685,"name":"War Machine","site_detail_url":"https://comicvine.gamespot.com/x-force-13-war-machine/4000-274685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66480/","id":66480,"name":"In Chains Part IV: Crimes and Punishements","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-65-in-chains-part-iv-crimes-and-punish/4000-66480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41382/","id":41382,"name":"Over The Edge, Part 2: Old Soldiers","site_detail_url":"https://comicvine.gamespot.com/daredevil-344-over-the-edge-part-2-old-soldiers/4000-41382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453898/","id":453898,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-7/4000-453898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274684/","id":274684,"name":"Il Sogno....Diviso","site_detail_url":"https://comicvine.gamespot.com/x-force-12-il-sognodiviso/4000-274684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138964/","id":138964,"name":"X-Men: Mutant Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-genesis-1-x-men-mutant-genesis/4000-138964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108376/","id":108376,"name":"\"Junkpile: Agent of Shield\"","site_detail_url":"https://comicvine.gamespot.com/x-men-2099-23-junkpile-agent-of-shield/4000-108376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66479/","id":66479,"name":"In Chains Part 3 of 4","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-64-in-chains-part-3-of-4/4000-66479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57705/","id":57705,"name":"...A Time To Keep, And A Time To Cast Away","site_detail_url":"https://comicvine.gamespot.com/war-machine-17-a-time-to-keep-and-a-time-to-cast-a/4000-57705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314141/","id":314141,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-155/4000-314141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134459/","id":134459,"name":"The Law Of The Jungle","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-15-the-law-of-the-jungle/4000-134459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131272/","id":131272,"name":"Reset","site_detail_url":"https://comicvine.gamespot.com/double-edge-1-reset/4000-131272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108375/","id":108375,"name":"\"Gauntlet of Pain!\"","site_detail_url":"https://comicvine.gamespot.com/x-men-2099-22-gauntlet-of-pain/4000-108375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107429/","id":107429,"name":"Countdown 1: The Murder Men","site_detail_url":"https://comicvine.gamespot.com/the-punisher-104-countdown-1-the-murder-men/4000-107429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77450/","id":77450,"name":"Countdown 0: The Last Bad Man","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal-80-countdown-0-the-last-b/4000-77450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134458/","id":134458,"name":"Under New Management","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099-14-under-new-management/4000-134458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66477/","id":66477,"name":"In Chains Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-62-in-chains-part-1-of-4/4000-66477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57703/","id":57703,"name":"Wartime!","site_detail_url":"https://comicvine.gamespot.com/war-machine-15-wartime/4000-57703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40975/","id":40975,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield-3/4000-40975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388674/","id":388674,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-79/4000-388674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317437/","id":317437,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-34/4000-317437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274675/","id":274675,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-9/4000-274675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-66476/","id":66476,"name":"The Fall","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-61-the-fall/4000-66476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40851/","id":40851,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield-2/4000-40851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40847/","id":40847,"name":"O'er the Ramparts We Watched","site_detail_url":"https://comicvine.gamespot.com/captain-america-439-oer-the-ramparts-we-watched/4000-40847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388671/","id":388671,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-78/4000-388671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293881/","id":293881,"name":"Wolverine & Nick Fury 3 di 3","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-13-wolverine-nick-fury-3-di-3/4000-293881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125687/","id":125687,"name":"Ground Zero!","site_detail_url":"https://comicvine.gamespot.com/nova-16-ground-zero/4000-125687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-70418/","id":70418,"name":"Tag, Sucker!; Her Name is - Ms. Marvel","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic-12-tag-sucker-her-name-is-ms-ma/4000-70418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40727/","id":40727,"name":"","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield-1/4000-40727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40721/","id":40721,"name":"Evil in a Cold and Lonely Place","site_detail_url":"https://comicvine.gamespot.com/the-avengers-385-evil-in-a-cold-and-lonely-place/4000-40721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436815/","id":436815,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-62/4000-436815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-80246/","id":80246,"name":"Book One: The Force of the Killer","site_detail_url":"https://comicvine.gamespot.com/elektra-root-of-evil-1-book-one-the-force-of-the-k/4000-80246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40599/","id":40599,"name":"What If the Gamma Bomb Spawned a Thousand Hulks?","site_detail_url":"https://comicvine.gamespot.com/what-if-71-what-if-the-gamma-bomb-spawned-a-thousa/4000-40599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40456/","id":40456,"name":"Fall of the Pantheon, Epilogue: One Fell Off","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-426-fall-of-the-pantheon-epilo/4000-40456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388661/","id":388661,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-76/4000-388661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188932/","id":188932,"name":"Blood Truce","site_detail_url":"https://comicvine.gamespot.com/captain-americanick-fury-blood-truce-1-blood-truce/4000-188932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40458/","id":40458,"name":"Diabolical Designs; Repercussions; The Devil to Pay; Test Run","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-173-diabolical-designs-repe/4000-40458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109011/","id":109011,"name":"Men and Machines","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-1-men-and-machines/4000-109011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40320/","id":40320,"name":"War Machine - P.O.V.","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-171-war-machine-pov/4000-40320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436812/","id":436812,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-59/4000-436812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125652/","id":125652,"name":"Novas in collision!","site_detail_url":"https://comicvine.gamespot.com/nova-12-novas-in-collision/4000-125652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384102/","id":384102,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-14/4000-384102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293876/","id":293876,"name":"Gioco mortale 1 di 2","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-8-gioco-mortale-1-di-2/4000-293876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274663/","id":274663,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-3/4000-274663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125651/","id":125651,"name":"Those who would destroy us","site_detail_url":"https://comicvine.gamespot.com/nova-11-those-who-would-destroy-us/4000-125651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39989/","id":39989,"name":"Up From Below!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-14-up-from-below/4000-39989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39938/","id":39938,"name":"Mission For A Dead Man!;In The Hands Of Bullseye; Anguish, Once Removed!; Freedom!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-megazine-2-mission-for-a-dead-/4000-39938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388645/","id":388645,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-72/4000-388645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351900/","id":351900,"name":"The Crack of Doom!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-13-th/4000-351900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274662/","id":274662,"name":"Sabotaggio","site_detail_url":"https://comicvine.gamespot.com/x-force-2-sabotaggio/4000-274662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39844/","id":39844,"name":"Man and Beast","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-13-man-and-beast/4000-39844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39830/","id":39830,"name":"Generation Next, Part 3: Enter Freely And of Your Own Will","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-317-generation-next-part-3-enter/4000-39830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388633/","id":388633,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-71/4000-388633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-125639/","id":125639,"name":"Enter Chaos part two","site_detail_url":"https://comicvine.gamespot.com/nova-9-enter-chaos-part-two/4000-125639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274660/","id":274660,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-1/4000-274660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65736/","id":65736,"name":"Sunset Grace","site_detail_url":"https://comicvine.gamespot.com/x-men-35-sunset-grace/4000-65736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359365/","id":359365,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-12/4000-359365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134812/","id":134812,"name":"Crash & Burn (Part 6 of 6): Redemption","site_detail_url":"https://comicvine.gamespot.com/iron-man-306-crash-burn-part-6-of-6-redemption/4000-134812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57692/","id":57692,"name":"Right Here, Right Now!","site_detail_url":"https://comicvine.gamespot.com/war-machine-4-right-here-right-now/4000-57692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39427/","id":39427,"name":"Rocky Reunion","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-159-rocky-reunion/4000-39427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39266/","id":39266,"name":"Fear and Loathing, Part 1: The Quick and the Dead","site_detail_url":"https://comicvine.gamespot.com/cable-12-fear-and-loathing-part-1-the-quick-and-th/4000-39266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68463/","id":68463,"name":"Reunions","site_detail_url":"https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-25-reunions/4000-68463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57691/","id":57691,"name":"Contents Under Pressure","site_detail_url":"https://comicvine.gamespot.com/war-machine-3-contents-under-pressure/4000-57691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168482/","id":168482,"name":"Ghost of Evil's Past","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-10-ghost-of-evils-past/4000-168482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153656/","id":153656,"name":"Secret Origin","site_detail_url":"https://comicvine.gamespot.com/fury-1-secret-origin/4000-153656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359363/","id":359363,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-11/4000-359363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279195/","id":279195,"name":"Crocevia","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-47-crocevia/4000-279195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107563/","id":107563,"name":"Contact","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual-9-contact/4000-107563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68462/","id":68462,"name":"Family Value","site_detail_url":"https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-24-family-value/4000-68462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57690/","id":57690,"name":"Between Deathlok And A Hard Case","site_detail_url":"https://comicvine.gamespot.com/war-machine-2-between-deathlok-and-a-hard-case/4000-57690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57292/","id":57292,"name":"Estranged Tales","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-5-estranged-tales/4000-57292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57689/","id":57689,"name":"Something To Believe In","site_detail_url":"https://comicvine.gamespot.com/war-machine-1-something-to-believe-in/4000-57689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38981/","id":38981,"name":"Loose Ends!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-7-loose-ends/4000-38981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38791/","id":38791,"name":"Tree Of Knowledge - Part 1","site_detail_url":"https://comicvine.gamespot.com/daredevil-326-tree-of-knowledge-part-1/4000-38791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313358/","id":313358,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-22/4000-313358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38843/","id":38843,"name":"The Hidden War!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-6-the-hidden-war/4000-38843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38799/","id":38799,"name":"Judgment Day","site_detail_url":"https://comicvine.gamespot.com/marvels-3-judgment-day/4000-38799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313357/","id":313357,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-21/4000-313357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38695/","id":38695,"name":"Busted","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-5-busted/4000-38695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138922/","id":138922,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/scorpio-rising-1-gn/4000-138922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119962/","id":119962,"name":"Hopes and Fears; Down Time; The Gift of the Marvelites; Mud Pi; Harvey Teabiscuit's Yule Log; Free Will","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special-1993-hopes-and-fears-down-t/4000-119962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-414914/","id":414914,"name":"Machtspelletjes","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special-9-machtspelletjes/4000-414914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436803/","id":436803,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-50/4000-436803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313356/","id":313356,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-20/4000-313356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38517/","id":38517,"name":"The Punisher Became an Agent of SHIELD?","site_detail_url":"https://comicvine.gamespot.com/what-if-57-the-punisher-became-an-agent-of-shield/4000-38517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313353/","id":313353,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-19/4000-313353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38246/","id":38246,"name":"Bloodties Part V of V: Of Kith and Kin","site_detail_url":"https://comicvine.gamespot.com/the-avengers-369-bloodties-part-v-of-v-of-kith-and/4000-38246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451557/","id":451557,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-44/4000-451557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359359/","id":359359,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-8/4000-359359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65727/","id":65727,"name":"Bloodties Part II of V: Civil Disobedience","site_detail_url":"https://comicvine.gamespot.com/x-men-26-bloodties-part-ii-of-v-civil-disobedience/4000-65727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38097/","id":38097,"name":"Liberation Day; Ulysses, Part 5: Dead Heat","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-411-liberation-day-ulysses-par/4000-38097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38090/","id":38090,"name":"Bloodties Part I of V: Reckoning","site_detail_url":"https://comicvine.gamespot.com/the-avengers-368-bloodties-part-i-of-v-reckoning/4000-38090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37949/","id":37949,"name":"Jailhouse Rock; Ulysses, Part 4: Out of the Fire","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-410-jailhouse-rock-ulysses-par/4000-37949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138053/","id":138053,"name":"The Savage Game!","site_detail_url":"https://comicvine.gamespot.com/super-soldiers-7-the-savage-game/4000-138053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68456/","id":68456,"name":"Enlightened Allies","site_detail_url":"https://comicvine.gamespot.com/silver-sable-and-the-wild-pack-17-enlightened-alli/4000-68456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37943/","id":37943,"name":"Skull Sessions","site_detail_url":"https://comicvine.gamespot.com/captain-america-420-skull-sessions/4000-37943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138052/","id":138052,"name":"Savage Land Invitational","site_detail_url":"https://comicvine.gamespot.com/super-soldiers-6-savage-land-invitational/4000-138052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436798/","id":436798,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-44-45/4000-436798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313348/","id":313348,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-14/4000-313348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198643/","id":198643,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/daredevilblack-widow-abattoir-1-gn/4000-198643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122937/","id":122937,"name":"Secret Agendas!","site_detail_url":"https://comicvine.gamespot.com/wild-thing-4-secret-agendas/4000-122937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122936/","id":122936,"name":"Old Friends","site_detail_url":"https://comicvine.gamespot.com/wild-thing-3-old-friends/4000-122936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122723/","id":122723,"name":"Part Four: When the Battle's Lost and Won","site_detail_url":"https://comicvine.gamespot.com/mys-tech-wars-4-part-four-when-the-battle-s-lost-a/4000-122723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37278/","id":37278,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-130/4000-37278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451554/","id":451554,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-41/4000-451554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101706/","id":101706,"name":"Final Retribution","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-47-final-retribution/4000-101706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64499/","id":64499,"name":"Ordnance Weighed In Blood","site_detail_url":"https://comicvine.gamespot.com/x-force-22-ordnance-weighed-in-blood/4000-64499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424180/","id":424180,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1993-05/4000-424180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134717/","id":134717,"name":"Mixed Reactions","site_detail_url":"https://comicvine.gamespot.com/iron-man-292-mixed-reactions/4000-134717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37092/","id":37092,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents-127/4000-37092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101705/","id":101705,"name":"Revelations","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-46-revelations/4000-101705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37106/","id":37106,"name":"War Machines!","site_detail_url":"https://comicvine.gamespot.com/x-force-21-war-machines/4000-37106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-65593/","id":65593,"name":"Fallen Heroes!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-199-fallen-heroes/4000-65593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101704/","id":101704,"name":"The Treachery Within","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-45-the-treachery-within/4000-101704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36987/","id":36987,"name":"Assault On Greymalkin","site_detail_url":"https://comicvine.gamespot.com/x-force-20-assault-on-greymalkin/4000-36987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234627/","id":234627,"name":"Daredevil: The Fall of The Kingpin","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-fall-of-the-kingpin-1-daredevil-the-/4000-234627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122916/","id":122916,"name":"Escape!","site_detail_url":"https://comicvine.gamespot.com/motormouth-9-escape/4000-122916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101703/","id":101703,"name":"Skeletons Reborn","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-44-skeletons-reborn/4000-101703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36874/","id":36874,"name":"The Open Hand: The Closed Fist","site_detail_url":"https://comicvine.gamespot.com/x-force-19-the-open-hand-the-closed-fist/4000-36874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424183/","id":424183,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1993-02/4000-424183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77514/","id":77514,"name":"Cyberwar (Part Four): The Killing Stroke ","site_detail_url":"https://comicvine.gamespot.com/deathlok-20-cyberwar-part-four-the-killing-stroke/4000-77514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101702/","id":101702,"name":"The Dead Zone","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-43-the-dead-zone/4000-101702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436792/","id":436792,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-38/4000-436792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424184/","id":424184,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1993-01/4000-424184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359354/","id":359354,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-3/4000-359354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127461/","id":127461,"name":"Marvel Year-In-Review ‘92","site_detail_url":"https://comicvine.gamespot.com/marvel-year-in-review-4-marvel-year-in-review-92/4000-127461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77513/","id":77513,"name":"Cyberwar (Part Three): Siege","site_detail_url":"https://comicvine.gamespot.com/deathlok-19-cyberwar-part-three-siege/4000-77513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36773/","id":36773,"name":"State Of Grace!","site_detail_url":"https://comicvine.gamespot.com/wolverine-65-state-of-grace/4000-36773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122391/","id":122391,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/punisherblack-widow-spinning-doomsdays-web-1-gn/4000-122391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101701/","id":101701,"name":"The Past Recalled","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-42-the-past-recalled/4000-101701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436791/","id":436791,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-37/4000-436791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101700/","id":101700,"name":"The Cold War of Nick Fury, Part 4: Redemption","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-41-the-cold-war-of-nick-/4000-101700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201360/","id":201360,"name":"Eternal Vigilance","site_detail_url":"https://comicvine.gamespot.com/punishercaptain-america-blood-glory-2-eternal-vigi/4000-201360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138921/","id":138921,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/wolverine-inner-fury-1-gn/4000-138921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138242/","id":138242,"name":"The Drop-kick That Lifts Your... Um... Spirit","site_detail_url":"https://comicvine.gamespot.com/what-the--23-the-drop-kick-that-lifts-your-um-spir/4000-138242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131213/","id":131213,"name":"Sabotage","site_detail_url":"https://comicvine.gamespot.com/x-force-and-spider-man-1-sabotage/4000-131213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122911/","id":122911,"name":"Pilgrims Progress","site_detail_url":"https://comicvine.gamespot.com/motormouth-6-pilgrims-progress/4000-122911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77512/","id":77512,"name":"Cyberwar (Part One): The Search For Humanity","site_detail_url":"https://comicvine.gamespot.com/deathlok-17-cyberwar-part-one-the-search-for-human/4000-77512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101699/","id":101699,"name":"The Cold War of Nick Fury, Part 3: Salvation","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-40-the-cold-war-of-nick-/4000-101699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122910/","id":122910,"name":"War Zone","site_detail_url":"https://comicvine.gamespot.com/motormouth-5-war-zone/4000-122910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101698/","id":101698,"name":"The Cold War of Nick Fury, Part 2: A Hunger For Freedom","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-39-the-cold-war-of-nick-/4000-101698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359351/","id":359351,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-1-x-force/4000-359351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313334/","id":313334,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-4/4000-313334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122909/","id":122909,"name":"Psychic Surgery!","site_detail_url":"https://comicvine.gamespot.com/motormouth-4-psychic-surgery/4000-122909/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36202/","id":36202,"name":"Nightmare Quest!","site_detail_url":"https://comicvine.gamespot.com/wolverine-61-nightmare-quest/4000-36202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36164/","id":36164,"name":"Payback!","site_detail_url":"https://comicvine.gamespot.com/x-force-14-payback/4000-36164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101697/","id":101697,"name":"The Cold War of Nick Fury, Part 1: The Fourth Horseman","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-38-the-cold-war-of-nick-/4000-101697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169138/","id":169138,"name":"Metamorph","site_detail_url":"https://comicvine.gamespot.com/warheads-3-metamorph/4000-169138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122907/","id":122907,"name":"Tokyo Take-Out!","site_detail_url":"https://comicvine.gamespot.com/motormouth-3-tokyo-take-out/4000-122907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101696/","id":101696,"name":"Who Killed The Changelings","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-37-who-killed-the-change/4000-101696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411070/","id":411070,"name":"Superreünie","site_detail_url":"https://comicvine.gamespot.com/x-mannen-119-superreunie/4000-411070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311469/","id":311469,"name":"","site_detail_url":"https://comicvine.gamespot.com/factor-x-54/4000-311469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169027/","id":169027,"name":"A Fine Time to Die!","site_detail_url":"https://comicvine.gamespot.com/warheads-2-a-fine-time-to-die/4000-169027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138239/","id":138239,"name":"Discharm School","site_detail_url":"https://comicvine.gamespot.com/what-the--19-discharm-school/4000-138239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122904/","id":122904,"name":"Shop Till You Drop!","site_detail_url":"https://comicvine.gamespot.com/motormouth-2-shop-till-you-drop/4000-122904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101695/","id":101695,"name":"The Snake Who Came In From The Cold","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-36-the-snake-who-came-in/4000-101695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-313331/","id":313331,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force-1-x-force/4000-313331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122899/","id":122899,"name":"Wild Card!","site_detail_url":"https://comicvine.gamespot.com/motormouth-1-wild-card/4000-122899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116627/","id":116627,"name":"The Biohazard Agenda (Part One): Rabbit is Dead","site_detail_url":"https://comicvine.gamespot.com/deathlok-12-the-biohazard-agenda-part-one-rabbit-i/4000-116627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64625/","id":64625,"name":"Revenge of the Sinister Six, Conclusion","site_detail_url":"https://comicvine.gamespot.com/spider-man-23-revenge-of-the-sinister-six-conclusi/4000-64625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35795/","id":35795,"name":"Friendly Reminders","site_detail_url":"https://comicvine.gamespot.com/x-force-11-friendly-reminders/4000-35795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35774/","id":35774,"name":"Full House -- Dragons High!","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-thing-3-full-house-dragons-h/4000-35774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101694/","id":101694,"name":"More Men of Action","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-35-more-men-of-action/4000-101694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47832/","id":47832,"name":"The Favor Banker","site_detail_url":"https://comicvine.gamespot.com/nomad-1-the-favor-banker/4000-47832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35112/","id":35112,"name":"Shattershot Part 4: The Mirror Liars; The Crush; Know Your Enemy","site_detail_url":"https://comicvine.gamespot.com/x-force-annual-1-shattershot-part-4-the-mirror-lia/4000-35112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411067/","id":411067,"name":"De niet-genomen weg","site_detail_url":"https://comicvine.gamespot.com/x-mannen-116-de-niet-genomen-weg/4000-411067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101693/","id":101693,"name":"In The Field","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-34-in-the-field/4000-101693/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86092/","id":86092,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-10/4000-86092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411063/","id":411063,"name":"Kruispunt","site_detail_url":"https://comicvine.gamespot.com/x-mannen-115-kruispunt/4000-411063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101692/","id":101692,"name":"Man of Action","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-33-man-of-action/4000-101692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411062/","id":411062,"name":"Te veel mutanten","site_detail_url":"https://comicvine.gamespot.com/x-mannen-114-te-veel-mutanten/4000-411062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314206/","id":314206,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-114/4000-314206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101691/","id":101691,"name":"Formal Wear","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-32-formal-wear/4000-101691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64313/","id":64313,"name":"Dreams of Gore, Phase 3","site_detail_url":"https://comicvine.gamespot.com/wolverine-50-dreams-of-gore-phase-3/4000-64313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-314207/","id":314207,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-113/4000-314207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150227/","id":150227,"name":"Marvel 1991 –– The Year In Review","site_detail_url":"https://comicvine.gamespot.com/marvel-year-in-review-3-marvel-1991-the-year-in-re/4000-150227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101690/","id":101690,"name":"Infinity is Forever After All","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-31-infinity-is-forever-a/4000-101690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196938/","id":196938,"name":"","site_detail_url":"https://comicvine.gamespot.com/excalibur-air-apparent-1/4000-196938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35018/","id":35018,"name":"Under the Magnifying Glass","site_detail_url":"https://comicvine.gamespot.com/x-force-5-under-the-magnifying-glass/4000-35018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-35006/","id":35006,"name":"Infinity's Not Forever","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-30-infinitys-not-forever/4000-35006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33695/","id":33695,"name":"Volume 19 The Silver Surfer II","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-19-volume-19-the-silver-surfer-/4000-33695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34899/","id":34899,"name":"Sabotage X-Over, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-force-4-sabotage-x-over-part-2/4000-34899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34886/","id":34886,"name":"The Cold War","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-29-the-cold-war/4000-34886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34875/","id":34875,"name":"Last Rites Part 2","site_detail_url":"https://comicvine.gamespot.com/daredevil-298-last-rites-part-2/4000-34875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34771/","id":34771,"name":"Icy Roads","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-28-icy-roads/4000-34771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34663/","id":34663,"name":"What If... Captain America Had Formed The Avengers?","site_detail_url":"https://comicvine.gamespot.com/what-if-29-what-if-captain-america-had-formed-the-/4000-34663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34654/","id":34654,"name":"Recruitment Drive","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-27-recruitment-drive/4000-34654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34647/","id":34647,"name":"Preparations For War","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-3-preparations-for-war/4000-34647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64306/","id":64306,"name":"Under The Skin","site_detail_url":"https://comicvine.gamespot.com/wolverine-43-under-the-skin/4000-64306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34549/","id":34549,"name":"A Force To Be Reckoned With","site_detail_url":"https://comicvine.gamespot.com/x-force-1-a-force-to-be-reckoned-with/4000-34549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34547/","id":34547,"name":"What if Captain America Had Led An Army of Super Soldiers in World War II?","site_detail_url":"https://comicvine.gamespot.com/what-if-28-what-if-captain-america-had-led-an-army/4000-34547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34548/","id":34548,"name":"The Muir Island Saga: Clash Reunion","site_detail_url":"https://comicvine.gamespot.com/x-factor-69-the-muir-island-saga-clash-reunion/4000-34548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34536/","id":34536,"name":"The Soldiers of Anarchy","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-26-the-soldiers-of-anarc/4000-34536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-64305/","id":64305,"name":"Papa Was A Rolling Stone!","site_detail_url":"https://comicvine.gamespot.com/wolverine-42-papa-was-a-rolling-stone/4000-64305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34415/","id":34415,"name":"God","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet-1-god/4000-34415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99408/","id":99408,"name":"The Von Strucker Gambit, Part 1: Crippling Death","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual-7-the-von-strucker-gambit-part-1-/4000-99408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34422/","id":34422,"name":"Commencement Ceremonies","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-25-commencement-ceremoni/4000-34422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34307/","id":34307,"name":"\"The Cutting Edge\"(Von Strucker Gambit Part 2)","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual-4-the-cutting-edgevon-strucker/4000-34307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-379746/","id":379746,"name":"Ground Zero","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-ground-zero-1-ground-zero/4000-379746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202148/","id":202148,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/wolverine-bloody-choices-1-gn/4000-202148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117059/","id":117059,"name":"Jesus Saves","site_detail_url":"https://comicvine.gamespot.com/deathlok-special-2-jesus-saves/4000-117059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77531/","id":77531,"name":"Ryker's Island","site_detail_url":"https://comicvine.gamespot.com/deathlok-special-4-rykers-island/4000-77531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77530/","id":77530,"name":"Dam If He Don't","site_detail_url":"https://comicvine.gamespot.com/deathlok-special-3-dam-if-he-dont/4000-77530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34306/","id":34306,"name":"The Camouflaged Commemoratices Affair","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-24-the-camouflaged-comme/4000-34306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34207/","id":34207,"name":"Storm Warning","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-23-storm-warning/4000-34207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277698/","id":277698,"name":"Follia","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-10-follia/4000-277698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86088/","id":86088,"name":"Summer Special","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-6-summer-special/4000-86088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34111/","id":34111,"name":"The Path Not Taken","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-275-the-path-not-taken/4000-34111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34104/","id":34104,"name":"Pledge of Allegiance","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-22-pledge-of-allegiance/4000-34104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34009/","id":34009,"name":"What If the All-New All-Different X-Men Had Never Existed?","site_detail_url":"https://comicvine.gamespot.com/what-if-23-what-if-the-all-new-all-different-x-men/4000-34009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277697/","id":277697,"name":"Di chi è questa Vita ?","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-9-di-chi-e-questa-vita/4000-277697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34007/","id":34007,"name":"Crossroads","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-274-crossroads/4000-34007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-34000/","id":34000,"name":"Der Totenkopf","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-21-der-totenkopf/4000-34000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277696/","id":277696,"name":"Più Feroce dell'inferno","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-8-piu-feroce-dell-inferno/4000-277696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33884/","id":33884,"name":"To Honor The Dead","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-20-to-honor-the-dead/4000-33884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277694/","id":277694,"name":"Decisioni","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-7-decisioni/4000-277694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33785/","id":33785,"name":"Apogee of Disaster, Part 5: Downrange of The End of The World","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-19-apogee-of-disaster-pa/4000-33785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33541/","id":33541,"name":"Apogee of Disaster, Part 4: Magnificent Desolation","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-18-apogee-of-disaster-pa/4000-33541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818305/","id":818305,"name":"Die Hydra - Verschwörung; Der Jäger wird gejagt","site_detail_url":"https://comicvine.gamespot.com/nick-fury-3-die-hydra-verschworung-der-jager-wird-/4000-818305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818304/","id":818304,"name":"Treibjagd im Untergrund; Der Rat schickt seine Henker","site_detail_url":"https://comicvine.gamespot.com/nick-fury-2-treibjagd-im-untergrund-der-rat-schick/4000-818304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-818303/","id":818303,"name":"Delta - die Formel des Todes; Die andere Seite der Macht","site_detail_url":"https://comicvine.gamespot.com/nick-fury-1-delta-die-formel-des-todes-die-andere-/4000-818303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33445/","id":33445,"name":"What if the Vision had Conquered the World?","site_detail_url":"https://comicvine.gamespot.com/what-if-19-what-if-the-vision-had-conquered-the-wo/4000-33445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33434/","id":33434,"name":"Apogee of Disaster, Part 3: Telemetry and Terror","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-17-apogee-of-disaster-pa/4000-33434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-86086/","id":86086,"name":"Mindstorm; Sheer Heart Attack; Scout's Motto; Ember When; This Is Our Story; Shadow Of A Doubt;","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-4-mindstorm-sheer-heart-attack/4000-86086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48936/","id":48936,"name":"Ryker's Island","site_detail_url":"https://comicvine.gamespot.com/deathlok-4-rykers-island/4000-48936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33367/","id":33367,"name":"Should A Gentleman Offer A Tiparillo To A Lady","site_detail_url":"https://comicvine.gamespot.com/the-punisher-41-should-a-gentleman-offer-a-tiparil/4000-33367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33324/","id":33324,"name":"Apogee of Disaster, Part 2: Uh, Houston, We Got a Problem","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-16-apogee-of-disaster-pa/4000-33324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48935/","id":48935,"name":"Dam If He Don't","site_detail_url":"https://comicvine.gamespot.com/deathlok-3-dam-if-he-dont/4000-48935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33202/","id":33202,"name":"Apogee of Disaster, Part 1","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-15-apogee-of-disaster-pa/4000-33202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48934/","id":48934,"name":"Jesus Saves","site_detail_url":"https://comicvine.gamespot.com/deathlok-2-jesus-saves/4000-48934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-33086/","id":33086,"name":"The Hydra Affair, Part 3: Pyrrhic Victory","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-14-the-hydra-affair-part/4000-33086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32971/","id":32971,"name":"The Hydra Affair, Part 2: In Battle Joined","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-13-the-hydra-affair-part/4000-32971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32844/","id":32844,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-51/4000-32844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32846/","id":32846,"name":"The Hydra Affair, Part 1: Fear and Obsessions","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-12-the-hydra-affair-part/4000-32846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32731/","id":32731,"name":"Greetings From Scotland","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-11-greetings-from-scotla/4000-32731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455363/","id":455363,"name":"Endlich Frei!","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-16-endlich-frei/4000-455363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150230/","id":150230,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-coldest-war-1-gn/4000-150230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32634/","id":32634,"name":"The Chaos Serpent, Part 4: A Matter of Faith","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-10-the-chaos-serpent-par/4000-32634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32419/","id":32419,"name":"Countdown, Part 3: The Leader","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-366-countdown-part-3-the-leade/4000-32419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32538/","id":32538,"name":"What If the Fantastic Four All Had the Same Power?","site_detail_url":"https://comicvine.gamespot.com/what-if-11-what-if-the-fantastic-four-all-had-the-/4000-32538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32524/","id":32524,"name":"The Chaos Serpent, Part 3: To Fear A Painted Devil","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-9-the-chaos-serpent-part/4000-32524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32461/","id":32461,"name":"The Agent of S.H.I.E.L.D. Affair","site_detail_url":"https://comicvine.gamespot.com/damage-control-4-the-agent-of-shield-affair/4000-32461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32424/","id":32424,"name":"The Chaos Serpent, Part 2: The Devil You Say","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-8-the-chaos-serpent-part/4000-32424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32423/","id":32423,"name":"Strange on the Range","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-49-strange-on-the-range/4000-32423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32328/","id":32328,"name":"Too Many Dooms","site_detail_url":"https://comicvine.gamespot.com/the-punisher-29-too-many-dooms/4000-32328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671411/","id":671411,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-armor-wars-1-tpb/4000-671411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431779/","id":431779,"name":"Götzendämmerung","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-9-gotzendammerun/4000-431779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431777/","id":431777,"name":"Das Gesetz der Wildnis","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-6-das-gesetz-der/4000-431777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32324/","id":32324,"name":"The Chaos Serpent, Part 1: Stealth Warfare","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-7-the-chaos-serpent-part/4000-32324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150225/","id":150225,"name":"Marvel: 1989 The Year In Review","site_detail_url":"https://comicvine.gamespot.com/marvel-year-in-review-1-marvel-1989-the-year-in-re/4000-150225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32050/","id":32050,"name":"In Final Memory","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-6-in-final-memory/4000-32050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32020/","id":32020,"name":"What If Wolverine Was An Agent of SHIELD?","site_detail_url":"https://comicvine.gamespot.com/what-if-7-what-if-wolverine-was-an-agent-of-shield/4000-32020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32004/","id":32004,"name":"Memory and Menace","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-5-memory-and-menace/4000-32004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31879/","id":31879,"name":"Destiny Amidst The Ruins","site_detail_url":"https://comicvine.gamespot.com/quasar-2-destiny-amidst-the-ruins/4000-31879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31912/","id":31912,"name":"Slips Of Memory","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-4-slips-of-memory/4000-31912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31873/","id":31873,"name":"In Memory Ever Green","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-3-in-memory-ever-green/4000-31873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31872/","id":31872,"name":"Renovation","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-47-renovation/4000-31872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31774/","id":31774,"name":"The Price of Power","site_detail_url":"https://comicvine.gamespot.com/quasar-1-the-price-of-power/4000-31774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68381/","id":68381,"name":"Set to Tyrak","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-7-set/4000-68381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31768/","id":31768,"name":"A Web With Many Strands","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-2-a-web-with-many-strand/4000-31768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31673/","id":31673,"name":"What If Steve Rogers Had Refused to Give Up Being Captain America?","site_detail_url":"https://comicvine.gamespot.com/what-if-3-what-if-steve-rogers-had-refused-to-give/4000-31673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31659/","id":31659,"name":"The Past Still Haunts","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-1-the-past-still-haunts/4000-31659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171792/","id":171792,"name":"Special Macho Issue","site_detail_url":"https://comicvine.gamespot.com/marvel-age-77-special-macho-issue/4000-171792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430422/","id":430422,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1989-03/4000-430422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435902/","id":435902,"name":"A Origem da Fenix!","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel-24-a-origem-da-fenix/4000-435902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-31232/","id":31232,"name":"Better a Widow...","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers-44-better-a-widow/4000-31232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387821/","id":387821,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-387821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153657/","id":153657,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/nick-fury-scorpio-connection-1-gn/4000-153657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431733/","id":431733,"name":"Alptraum-Nächte in Chicago","site_detail_url":"https://comicvine.gamespot.com/captain-america-comic-taschenbuch-3-alptraum-nacht/4000-431733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359664/","id":359664,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-shield-1-tpb/4000-359664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30434/","id":30434,"name":"Perchance to Dream","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-41-perchance-to-dream/4000-30434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95430/","id":95430,"name":"Light of Truth","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-s-h-i-e-l-d-6-light-of-truth/4000-95430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48869/","id":48869,"name":"The Fall ON The Mutants, Chapter 2 : Mutant Beach Party !","site_detail_url":"https://comicvine.gamespot.com/what-the--4-the-fall-on-the-mutants-chapter-2-muta/4000-48869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134236/","id":134236,"name":"Iron Man: Crash","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-33-iron-man-crash/4000-134236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95429/","id":95429,"name":"The Ascension Call","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-shield-5-the-ascension-call/4000-95429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95428/","id":95428,"name":"The Eastern Connection","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-s-h-i-e-l-d-4-the-eastern-connection/4000-95428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-48867/","id":48867,"name":"Superbman Vs The Fantastical Four - My Badguy... My Enemy !","site_detail_url":"https://comicvine.gamespot.com/what-the--2-superbman-vs-the-fantastical-four-my-b/4000-48867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29943/","id":29943,"name":"Whys and Wherefores","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-346-whys-and-wherefores/4000-29943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95427/","id":95427,"name":"Uneasy Allies","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-s-h-i-e-l-d-3-uneasy-allies/4000-95427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95426/","id":95426,"name":"Into the Depths","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-shield-2-into-the-depths/4000-95426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29827/","id":29827,"name":"Closing Curtain","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-345-closing-curtain/4000-29827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187187/","id":187187,"name":"What If Iron Man Had Been A Traitor?","site_detail_url":"https://comicvine.gamespot.com/what-if-special-1-what-if-iron-man-had-been-a-trai/4000-187187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95425/","id":95425,"name":"The Delta Equation","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-shield-1-the-delta-equation/4000-95425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47408/","id":47408,"name":"Desolation","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-20-desolation/4000-47408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29483/","id":29483,"name":"No Human Fears","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-342-no-human-fears/4000-29483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451529/","id":451529,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-16/4000-451529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29263/","id":29263,"name":"The Last Mandroid","site_detail_url":"https://comicvine.gamespot.com/iron-man-227-the-last-mandroid/4000-29263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29152/","id":29152,"name":"Sin-Cere","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-134-sin-cere/4000-29152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28930/","id":28930,"name":"Here Comes Hawkeye/Listen to the Mockingbird","site_detail_url":"https://comicvine.gamespot.com/solo-avengers-1-here-comes-hawkeyelisten-to-the-mo/4000-28930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28925/","id":28925,"name":"Mercy Killing","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-338-mercy-killing/4000-28925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28802/","id":28802,"name":"Crossroads","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-337-crossroads/4000-28802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28688/","id":28688,"name":"X-Tremes!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-336-x-tremes/4000-28688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334000/","id":334000,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-103/4000-334000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28459/","id":28459,"name":"Grave Circumstances","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-334-grave-circumstances/4000-28459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28342/","id":28342,"name":"Spider Hunt","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-128-spider-hunt/4000-28342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95176/","id":95176,"name":"BOOK XVIII: THE TRIUMPH AND THE TRAGEDY!","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4000-95176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28114/","id":28114,"name":"Inconstant Moon","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-331-inconstant-moon/4000-28114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28014/","id":28014,"name":"Head Games!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-330-head-games/4000-28014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27902/","id":27902,"name":"Outcasts!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-329-outcasts/4000-27902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27899/","id":27899,"name":"Hail to the Chief","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-8-hail-to-the-chief/4000-27899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47395/","id":47395,"name":"Deathstar, Rising!","site_detail_url":"https://comicvine.gamespot.com/classic-x-men-7-deathstar-rising/4000-47395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27789/","id":27789,"name":"Vox Populi","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-7-vox-populi/4000-27789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315164/","id":315164,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-34/4000-315164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27680/","id":27680,"name":"As Others See Us!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-327-as-others-see-us/4000-27680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27677/","id":27677,"name":"What We're Fighting For","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-6-what-were-fighting-for/4000-27677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315333/","id":315333,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-32/4000-315333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27490/","id":27490,"name":"Desert Heat","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-326-desert-heat/4000-27490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27487/","id":27487,"name":"Chastity","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-5-chastity/4000-27487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315334/","id":315334,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-31/4000-315334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27385/","id":27385,"name":"The New Hulk!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-325-the-new-hulk/4000-27385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27382/","id":27382,"name":"Young Love","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-4-young-love/4000-27382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27381/","id":27381,"name":"American Dreamer","site_detail_url":"https://comicvine.gamespot.com/daredevil-236-american-dreamer/4000-27381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27378/","id":27378,"name":"Super-Patriot is Here","site_detail_url":"https://comicvine.gamespot.com/captain-america-323-super-patriot-is-here/4000-27378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27278/","id":27278,"name":"The More Things Change...","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-324-the-more-things-change/4000-27278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27275/","id":27275,"name":"Rough Cut","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-3-rough-cut/4000-27275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27280/","id":27280,"name":"When Innocence Dies!","site_detail_url":"https://comicvine.gamespot.com/iron-man-annual-8-when-innocence-dies/4000-27280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27277/","id":27277,"name":"Body Double","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual-15-body-double/4000-27277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27272/","id":27272,"name":"The Chasm","site_detail_url":"https://comicvine.gamespot.com/captain-america-322-the-chasm/4000-27272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27183/","id":27183,"name":"Certain Intangibles","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-323-certain-intangibles/4000-27183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27180/","id":27180,"name":"The Ugly Man","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin-2-the-ugly-man/4000-27180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27187/","id":27187,"name":"Ashes to Ashes","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-118-ashes-to-ashes/4000-27187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27096/","id":27096,"name":"Pride of the Regiment","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers-11-pride-of-the-regiment/4000-27096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27084/","id":27084,"name":"Must the Hulk Die?","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-322-must-the-hulk-die/4000-27084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26988/","id":26988,"name":"The Man who dreamed the world!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-292-the-man-who-dreamed-the-world/4000-26988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131682/","id":131682,"name":"Richard Rider To Sidewinder","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-11-ri/4000-131682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26602/","id":26602,"name":"Crossing","site_detail_url":"https://comicvine.gamespot.com/iron-man-204-crossing/4000-26602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26409/","id":26409,"name":"All My Sins Remembered","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-110-all-my-sins-remembe/4000-26409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26399/","id":26399,"name":"Freedom!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-315-freedom/4000-26399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123224/","id":123224,"name":"The Sensational She-Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel-18-the-sensational-she-hulk/4000-123224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455349/","id":455349,"name":"Das Fest des Friedens","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch-2-das-fest-des-friedens/4000-455349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25575/","id":25575,"name":"This Power Unleashed!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-256-this-power-unleashed/4000-25575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25392/","id":25392,"name":"The Choice And The Challenge!","site_detail_url":"https://comicvine.gamespot.com/iron-man-193-the-choice-and-the-challenge/4000-25392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25382/","id":25382,"name":"Undercover of the Night","site_detail_url":"https://comicvine.gamespot.com/captain-america-304-undercover-of-the-night/4000-25382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451518/","id":451518,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-5/4000-451518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441933/","id":441933,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-02/4000-441933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451517/","id":451517,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-4/4000-451517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57422/","id":57422,"name":"Prisoner Of War!","site_detail_url":"https://comicvine.gamespot.com/the-transformers-3-prisoner-of-war/4000-57422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25007/","id":25007,"name":"Total War, Part 10: The Beginning of the End of the World!","site_detail_url":"https://comicvine.gamespot.com/rom-61-total-war-part-10-the-beginning-of-the-end-/4000-25007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171911/","id":171911,"name":"Prisoner of War!; part 1","site_detail_url":"https://comicvine.gamespot.com/the-transformers-5-prisoner-of-war-part-1/4000-171911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24789/","id":24789,"name":"Days of Rage!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-300-days-of-rage/4000-24789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24694/","id":24694,"name":"Strange Days Have Found Us!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-299-strange-days-have-found-us/4000-24694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24709/","id":24709,"name":"Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers-1-avengers-assemble/4000-24709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24603/","id":24603,"name":"Sleepwalker!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-298-sleepwalker/4000-24603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24505/","id":24505,"name":"Sleep, My Child...And Peace Attend Thee All Through the Night!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-297-sleep-my-childand-peace-at/4000-24505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24497/","id":24497,"name":"Bombshells!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-245-bombshells/4000-24497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24419/","id":24419,"name":"Madness","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-182-madness/4000-24419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24217/","id":24217,"name":"What if Captain America Were Revived Today?","site_detail_url":"https://comicvine.gamespot.com/what-if-44-what-if-captain-america-were-revived-to/4000-24217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24196/","id":24196,"name":"And in the End!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-130-and-in-the-end/4000-24196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24211/","id":24211,"name":"Total War, Part 2: Paranoia Strikes Deep!","site_detail_url":"https://comicvine.gamespot.com/rom-53-total-war-part-2-paranoia-strikes-deep/4000-24211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24103/","id":24103,"name":"Everybody Loves Somebody Sometime","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-139-everybody-loves-somebody-someti/4000-24103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24101/","id":24101,"name":"Editori-Al; The Widow... Alone","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-13-editori-al-the-widow-alone/4000-24101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24090/","id":24090,"name":"Countdown!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-129-countdown/4000-24090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46563/","id":46563,"name":"The Strange Death of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-special-edition-2-the-strange-deat/4000-46563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24111/","id":24111,"name":"The Past Is A Bucket Of Ashes","site_detail_url":"https://comicvine.gamespot.com/thor-341-the-past-is-a-bucket-of-ashes/4000-24111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24007/","id":24007,"name":"Heart to Heart","site_detail_url":"https://comicvine.gamespot.com/jack-of-hearts-2-heart-to-heart/4000-24007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23880/","id":23880,"name":"Editori-Gal; The Web Tightens!; Marvel Ann-fare","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-12-editori-gal-the-web-tightens-mar/4000-23880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23903/","id":23903,"name":"Murmer of the Heart..!","site_detail_url":"https://comicvine.gamespot.com/jack-of-hearts-1-murmer-of-the-heart/4000-23903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23887/","id":23887,"name":"Whatever Happened to Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-2-whatever-happened-to-s/4000-23887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23864/","id":23864,"name":"Tomorrow, The World?; Bernie America, Sentinel of Liberty","site_detail_url":"https://comicvine.gamespot.com/captain-america-289-tomorrow-the-world-bernie-amer/4000-23864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111577/","id":111577,"name":"Scavenger Hunt","site_detail_url":"https://comicvine.gamespot.com/x-men-annual-7-scavenger-hunt/4000-111577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23720/","id":23720,"name":"State of the Union","site_detail_url":"https://comicvine.gamespot.com/the-defenders-126-state-of-the-union/4000-23720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23742/","id":23742,"name":"A Fool and His Hammer...","site_detail_url":"https://comicvine.gamespot.com/thor-338-a-fool-and-his-hammer/4000-23742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23736/","id":23736,"name":"Who is Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-1-who-is-scorpio/4000-23736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23634/","id":23634,"name":"Back In The U.S.S.R.","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-11-back-in-the-ussr/4000-23634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23647/","id":23647,"name":"DOOM!","site_detail_url":"https://comicvine.gamespot.com/thor-337-doom/4000-23647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23548/","id":23548,"name":"The Boys Night Out!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-134-the-boys-night-out/4000-23548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23537/","id":23537,"name":"Darkness On The Edge of Time","site_detail_url":"https://comicvine.gamespot.com/the-defenders-124-darkness-on-the-edge-of-time/4000-23537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68389/","id":68389,"name":"S: Shi'Ar to Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe-10-s-/4000-68389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23546/","id":23546,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-kree-skrull-war-starring-the-avengers-2/4000-23546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23544/","id":23544,"name":"The Treasure of Red and Gold","site_detail_url":"https://comicvine.gamespot.com/iron-man-175-the-treasure-of-red-and-gold/4000-23544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23542/","id":23542,"name":"Point Blank!","site_detail_url":"https://comicvine.gamespot.com/hawkeye-2-point-blank/4000-23542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23458/","id":23458,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-kree-skrull-war-starring-the-avengers-1/4000-23458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23455/","id":23455,"name":"Armor Chase","site_detail_url":"https://comicvine.gamespot.com/iron-man-174-armor-chase/4000-23455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23377/","id":23377,"name":"Editori-Al; Widow; With Friends Like These, Chapter 2; How Fear Came","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-10-editori-al-widow-with-friends-li/4000-23377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23364/","id":23364,"name":"Diverging...","site_detail_url":"https://comicvine.gamespot.com/captain-america-284-diverging/4000-23364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23282/","id":23282,"name":"America The Cursed!","site_detail_url":"https://comicvine.gamespot.com/captain-america-283-america-the-cursed/4000-23282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23194/","id":23194,"name":"On Your Belly You Shall Crawl, And Dust You Shall Eat!","site_detail_url":"https://comicvine.gamespot.com/captain-america-282-on-your-belly-you-shall-crawl-/4000-23194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23126/","id":23126,"name":"And Much to Ponder Before the Dawn...","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-129-and-much-to-ponder-before-the-d/4000-23126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23111/","id":23111,"name":"Before The Fall!","site_detail_url":"https://comicvine.gamespot.com/captain-america-281-before-the-fall/4000-23111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23110/","id":23110,"name":"Up from the Depths!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-231-up-from-the-depths/4000-23110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23038/","id":23038,"name":"Sweet Temptation!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-128-sweet-temptation/4000-23038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22855/","id":22855,"name":"Oh, Thus Be it Ever...","site_detail_url":"https://comicvine.gamespot.com/captain-america-278-oh-thus-be-it-ever/4000-22855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22783/","id":22783,"name":"In Thy Image / Snapping, Part 2","site_detail_url":"https://comicvine.gamespot.com/captain-america-277-in-thy-image-snapping-part-2/4000-22783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22782/","id":22782,"name":"Testing...1...2...3!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-227-testing123/4000-22782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22663/","id":22663,"name":"Turning Point!; Snapped, Part 1","site_detail_url":"https://comicvine.gamespot.com/captain-america-276-turning-point-snapped-part-1/4000-22663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22510/","id":22510,"name":"Death of a Hero!","site_detail_url":"https://comicvine.gamespot.com/captain-america-274-death-of-a-hero/4000-22510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22449/","id":22449,"name":"Editori-Al; Lost Souls; Mindgame; Ordeal","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-4-editori-al-lost-souls-mindgame-or/4000-22449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112838/","id":112838,"name":null,"site_detail_url":"https://comicvine.gamespot.com/what-if-34/4000-112838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-325604/","id":325604,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-43/4000-325604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22308/","id":22308,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-89/4000-22308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22236/","id":22236,"name":"Meeting of the Minds","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-118-meeting-of-the-minds/4000-22236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22244/","id":22244,"name":"Boomerang, the Killer who keeps coming back!","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man-67-boomerang-the-killer/4000-22244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22168/","id":22168,"name":"Scents & Senses!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-117-scents-senses/4000-22168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22082/","id":22082,"name":"Render Unto Caesar!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-241-render-unto-caesar/4000-22082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-22007/","id":22007,"name":"Exodus","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-240-exodus/4000-22007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21922/","id":21922,"name":"Flight From Thunderhead!","site_detail_url":"https://comicvine.gamespot.com/captain-america-266-flight-from-thunderhead/4000-21922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21851/","id":21851,"name":"Thunderhead!","site_detail_url":"https://comicvine.gamespot.com/captain-america-265-thunderhead/4000-21851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21462/","id":21462,"name":"What if Daredevil Became an Agent of S.H.I.E.L.D.?","site_detail_url":"https://comicvine.gamespot.com/what-if-28-what-if-daredevil-became-an-agent-of-sh/4000-21462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326832/","id":326832,"name":"","site_detail_url":"https://comicvine.gamespot.com/savage-action-9/4000-326832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21381/","id":21381,"name":"Only The Swamp Survives!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-77-only-the-swamp-survives/4000-21381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21249/","id":21249,"name":"To Sleep... Perchance To Dream!","site_detail_url":"https://comicvine.gamespot.com/micronauts-29-to-sleep-perchance-to-dream/4000-21249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21185/","id":21185,"name":"...Last Stand in Fantasy-World!","site_detail_url":"https://comicvine.gamespot.com/micronauts-28-last-stand-in-fantasy-world/4000-21185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21102/","id":21102,"name":"I Got the Yo-Yo... You Got the String","site_detail_url":"https://comicvine.gamespot.com/bizarre-adventures-25-i-got-the-yo-yo-you-got-the-/4000-21102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21118/","id":21118,"name":"To Snare Men's Souls!","site_detail_url":"https://comicvine.gamespot.com/micronauts-27-to-snare-mens-souls/4000-21118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-21045/","id":21045,"name":"Assault on S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/micronauts-26-assault-on-shield/4000-21045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20981/","id":20981,"name":"Reason and Rage!","site_detail_url":"https://comicvine.gamespot.com/the-savage-she-hulk-12-reason-and-rage/4000-20981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20970/","id":20970,"name":"Sky Die!","site_detail_url":"https://comicvine.gamespot.com/iron-man-142-sky-die/4000-20970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20862/","id":20862,"name":"The Caribbean Connection","site_detail_url":"https://comicvine.gamespot.com/iron-man-141-the-caribbean-connection/4000-20862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20655/","id":20655,"name":"Last Stand On Long Island","site_detail_url":"https://comicvine.gamespot.com/the-avengers-199-last-stand-on-long-island/4000-20655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20659/","id":20659,"name":"Inquest","site_detail_url":"https://comicvine.gamespot.com/the-defenders-87-inquest/4000-20659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20585/","id":20585,"name":"Dragon Man!","site_detail_url":"https://comicvine.gamespot.com/captain-america-248-dragon-man/4000-20585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20534/","id":20534,"name":"...and No Birds Sing!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-95-and-no-birds-sing/4000-20534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20525/","id":20525,"name":"Like a Proud Black Panther...","site_detail_url":"https://comicvine.gamespot.com/the-defenders-85-like-a-proud-black-panther/4000-20525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20522/","id":20522,"name":"By The Dawn's Early Light!","site_detail_url":"https://comicvine.gamespot.com/captain-america-247-by-the-dawns-early-light/4000-20522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20473/","id":20473,"name":"Dark Victory","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-17-dark-victory/4000-20473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20332/","id":20332,"name":"What If The Avengers Had Fought the Kree-Skrull War Without Rick Jones?","site_detail_url":"https://comicvine.gamespot.com/what-if-20-what-if-the-avengers-had-fought-the-kre/4000-20332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100376/","id":100376,"name":"Should Heroes Fail...","site_detail_url":"https://comicvine.gamespot.com/shogun-warriors-14-should-heroes-fail/4000-100376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20160/","id":20160,"name":"Facades!","site_detail_url":"https://comicvine.gamespot.com/captain-america-242-facades/4000-20160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20108/","id":20108,"name":"Second Coming!","site_detail_url":"https://comicvine.gamespot.com/rom-2-second-coming/4000-20108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20097/","id":20097,"name":"...And Then There Was One!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-214-and-then-there-was-one/4000-20097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-230494/","id":230494,"name":"","site_detail_url":"https://comicvine.gamespot.com/star-heroes-pocket-book-3/4000-230494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19994/","id":19994,"name":"To The Victors Belongs A World!","site_detail_url":"https://comicvine.gamespot.com/micronauts-12-to-the-victors-belongs-a-world/4000-19994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19088/","id":19088,"name":"A Mission of Gravity!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual-4-a-mission-of-gravity/4000-19088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277783/","id":277783,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-36/4000-277783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19864/","id":19864,"name":"What If...Ghost Rider, Spider-Woman And Captain Marvel Had Remained Villains?","site_detail_url":"https://comicvine.gamespot.com/what-if-17-what-if-ghost-rider-spider-woman-and-ca/4000-19864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269778/","id":269778,"name":"The Origin of Captain America!","site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty-1-the-origin-o/4000-269778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19838/","id":19838,"name":"Snowfall Fury!","site_detail_url":"https://comicvine.gamespot.com/captain-america-238-snowfall-fury/4000-19838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19784/","id":19784,"name":"The Woman Who Never Was!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-85-the-woman-who-never-was/4000-19784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255540/","id":255540,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-29/4000-255540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19775/","id":19775,"name":"From the Ashes...","site_detail_url":"https://comicvine.gamespot.com/captain-america-237-from-the-ashes/4000-19775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19712/","id":19712,"name":"Catch A Falling Hero","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-84-catch-a-falling-hero/4000-19712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253553/","id":253553,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-24/4000-253553/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251348/","id":251348,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-22/4000-251348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19713/","id":19713,"name":"Blood and Bionics","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-54-blood-and-bionics/4000-19713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19648/","id":19648,"name":"Slaughter on 10th Avenue!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-83-slaughter-on-10th-avenue/4000-19648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19654/","id":19654,"name":"All You Need is Hate","site_detail_url":"https://comicvine.gamespot.com/spider-woman-16-all-you-need-is-hate/4000-19654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19641/","id":19641,"name":"And Lo, A Child Shall Lead Them","site_detail_url":"https://comicvine.gamespot.com/godzilla-24-and-lo-a-child-shall-lead-them/4000-19641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19580/","id":19580,"name":"No Way to Treat a Lady","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-82-no-way-to-treat-a-lady/4000-19580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250121/","id":250121,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-16/4000-250121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250122/","id":250122,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-17/4000-250122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19576/","id":19576,"name":"The King Once More","site_detail_url":"https://comicvine.gamespot.com/godzilla-23-the-king-once-more/4000-19576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-250110/","id":250110,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-13/4000-250110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249865/","id":249865,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-12/4000-249865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249864/","id":249864,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-11/4000-249864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249707/","id":249707,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-9/4000-249707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19520/","id":19520,"name":"Cults and Robbers","site_detail_url":"https://comicvine.gamespot.com/spider-woman-14-cults-and-robbers/4000-19520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19514/","id":19514,"name":"A Gathering of Heroes!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-51-a-gathering-of-heroes/4000-19514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19506/","id":19506,"name":"The Devil and the Dinosaur","site_detail_url":"https://comicvine.gamespot.com/godzilla-22-the-devil-and-the-dinosaur/4000-19506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249679/","id":249679,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-7/4000-249679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249678/","id":249678,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-6/4000-249678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249677/","id":249677,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-5/4000-249677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19449/","id":19449,"name":"Suddenly ... the Shroud!","site_detail_url":"https://comicvine.gamespot.com/spider-woman-13-suddenly-the-shroud/4000-19449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19430/","id":19430,"name":"The DOOM Trip!","site_detail_url":"https://comicvine.gamespot.com/godzilla-21-the-doom-trip/4000-19430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248351/","id":248351,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-4/4000-248351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248350/","id":248350,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-3/4000-248350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249875/","id":249875,"name":"","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-2/4000-249875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248317/","id":248317,"name":"Lightning slashes the night...","site_detail_url":"https://comicvine.gamespot.com/hulk-comic-1-lightning-slashes-the-night/4000-248317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19361/","id":19361,"name":"Aftermath!","site_detail_url":"https://comicvine.gamespot.com/captain-america-231-aftermath/4000-19361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19297/","id":19297,"name":"No S.H.I.E.L.D. To Protect Me!","site_detail_url":"https://comicvine.gamespot.com/iron-man-119-no-shield-to-protect-me/4000-19297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19286/","id":19286,"name":"Assault on Alcatraz!","site_detail_url":"https://comicvine.gamespot.com/captain-america-230-assault-on-alcatraz/4000-19286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19195/","id":19195,"name":"At The Mercy Of My Foes!; Friends!","site_detail_url":"https://comicvine.gamespot.com/iron-man-118-at-the-mercy-of-my-foes-friends/4000-19195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19185/","id":19185,"name":"Traitors All About Me!","site_detail_url":"https://comicvine.gamespot.com/captain-america-229-traitors-all-about-me/4000-19185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19028/","id":19028,"name":"The Power of Electro!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-187-the-power-of-electro/4000-19028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19042/","id":19042,"name":"The Spy Who Killed Me","site_detail_url":"https://comicvine.gamespot.com/iron-man-117-the-spy-who-killed-me/4000-19042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19036/","id":19036,"name":"Of Lizards Great and Small","site_detail_url":"https://comicvine.gamespot.com/godzilla-17-of-lizards-great-and-small/4000-19036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19030/","id":19030,"name":"A Serpent Lurks Below","site_detail_url":"https://comicvine.gamespot.com/captain-america-228-a-serpent-lurks-below/4000-19030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18916/","id":18916,"name":"Desolation","site_detail_url":"https://comicvine.gamespot.com/the-x-men-114-desolation/4000-18916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18911/","id":18911,"name":"July 4, 1978...","site_detail_url":"https://comicvine.gamespot.com/spider-woman-7-july-4-1978/4000-18911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18902/","id":18902,"name":"The Jack of Hearts","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-44-the-jack-of-hearts/4000-18902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18892/","id":18892,"name":"Roam on the Range","site_detail_url":"https://comicvine.gamespot.com/godzilla-15-roam-on-the-range/4000-18892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18886/","id":18886,"name":"Am I Still Captain America?","site_detail_url":"https://comicvine.gamespot.com/captain-america-226-am-i-still-captain-america/4000-18886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18832/","id":18832,"name":"End of a Nightmare!!","site_detail_url":"https://comicvine.gamespot.com/spider-woman-6-end-of-a-nightmare/4000-18832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18811/","id":18811,"name":"Devastation!","site_detail_url":"https://comicvine.gamespot.com/captain-america-225-devastation/4000-18811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18732/","id":18732,"name":"The Riotous Return of the Red Ghost!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-197-the-riotous-return-of-the-red-g/4000-18732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18673/","id":18673,"name":"Hell is the Hangman!","site_detail_url":"https://comicvine.gamespot.com/spider-woman-4-hell-is-the-hangman/4000-18673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18665/","id":18665,"name":"Deathgarden","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-71-deathgarden/4000-18665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18657/","id":18657,"name":"Star Sinister","site_detail_url":"https://comicvine.gamespot.com/godzilla-12-star-sinister/4000-18657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18576/","id":18576,"name":"Arena For Three!","site_detail_url":"https://comicvine.gamespot.com/godzilla-11-arena-for-three/4000-18576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18570/","id":18570,"name":"Monumental Menace!","site_detail_url":"https://comicvine.gamespot.com/captain-america-222-monumental-menace/4000-18570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18506/","id":18506,"name":"Shadow of the Gun!","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-17-shadow-of-the-gun/4000-18506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18496/","id":18496,"name":"Godzilla Vs. Yetrigar","site_detail_url":"https://comicvine.gamespot.com/godzilla-10-godzilla-vs-yetrigar/4000-18496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18411/","id":18411,"name":"The Fate of Las Vegas","site_detail_url":"https://comicvine.gamespot.com/godzilla-9-the-fate-of-las-vegas/4000-18411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224550/","id":224550,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-286/4000-224550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224547/","id":224547,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-283/4000-224547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18327/","id":18327,"name":"Titan Times Two!","site_detail_url":"https://comicvine.gamespot.com/godzilla-8-titan-times-two/4000-18327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18244/","id":18244,"name":"Four No More!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-191-four-no-more/4000-18244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18246/","id":18246,"name":"Birth of a Warrior!","site_detail_url":"https://comicvine.gamespot.com/godzilla-7-birth-of-a-warrior/4000-18246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18240/","id":18240,"name":"One Day in Newfoundland!","site_detail_url":"https://comicvine.gamespot.com/captain-america-218-one-day-in-newfoundland/4000-18240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18168/","id":18168,"name":"No Man Is An Island!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-219-no-man-is-an-island/4000-18168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-305496/","id":305496,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-12/4000-305496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18166/","id":18166,"name":"A Monster Enslaved!","site_detail_url":"https://comicvine.gamespot.com/godzilla-6-a-monster-enslaved/4000-18166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18158/","id":18158,"name":"The Search for Steve Rogers!","site_detail_url":"https://comicvine.gamespot.com/captain-america-217-the-search-for-steve-rogers/4000-18158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18052/","id":18052,"name":"A Monster Walks Among Us","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-34-a-monster-walks-among-us/4000-18052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18046/","id":18046,"name":"Every Hand Against Him!","site_detail_url":"https://comicvine.gamespot.com/iron-man-105-every-hand-against-him/4000-18046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18042/","id":18042,"name":"The Isle of Lost Monsters","site_detail_url":"https://comicvine.gamespot.com/godzilla-5-the-isle-of-lost-monsters/4000-18042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17021/","id":17021,"name":"The Great Mutant Massacre!","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-4-the-great-mutant-massacre/4000-17021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17963/","id":17963,"name":"Godzilla Versus Batragon!","site_detail_url":"https://comicvine.gamespot.com/godzilla-4-godzilla-versus-batragon/4000-17963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17873/","id":17873,"name":"Countdown to Catastrophe!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-216-countdown-to-catastrophe/4000-17873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112827/","id":112827,"name":"What if...Captain America and Bucky Had Both Survived World War II?","site_detail_url":"https://comicvine.gamespot.com/what-if-5-what-ifcaptain-america-and-bucky-had-bot/4000-112827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17871/","id":17871,"name":"A Tale of Two Saviors","site_detail_url":"https://comicvine.gamespot.com/godzilla-3-a-tale-of-two-saviors/4000-17871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17864/","id":17864,"name":"Power","site_detail_url":"https://comicvine.gamespot.com/captain-america-214-power/4000-17864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17780/","id":17780,"name":"Home is Where the Hurt Is","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-215-home-is-where-the-hurt-is/4000-17780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17775/","id":17775,"name":"A Round with the Ringer!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-51-a-round-with-the-ringer/4000-17775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17778/","id":17778,"name":"Thunder in the Darkness!","site_detail_url":"https://comicvine.gamespot.com/godzilla-2-thunder-in-the-darkness/4000-17778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17770/","id":17770,"name":"The Night Flyer!","site_detail_url":"https://comicvine.gamespot.com/captain-america-213-the-night-flyer/4000-17770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17682/","id":17682,"name":"The Jack of Hearts is Wild!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-214-the-jack-of-hearts-is-wild/4000-17682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17681/","id":17681,"name":"The Coming!","site_detail_url":"https://comicvine.gamespot.com/godzilla-1-the-coming/4000-17681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17674/","id":17674,"name":"The Face of a Hero!","site_detail_url":"https://comicvine.gamespot.com/captain-america-212-the-face-of-a-hero/4000-17674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17600/","id":17600,"name":"You Just Don't Quarrel With The Quintronic Man!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-213-you-just-dont-quarrel-with/4000-17600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17502/","id":17502,"name":"Crushed by... The Constrictor!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-212-crushed-by-the-constrictor/4000-17502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17493/","id":17493,"name":"Showdown Day!","site_detail_url":"https://comicvine.gamespot.com/captain-america-210-showdown-day/4000-17493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17437/","id":17437,"name":"Day of the Demolisher!","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-27-day-of-the-demolisher/4000-17437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17430/","id":17430,"name":"Night Moves!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-47-night-moves/4000-17430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17424/","id":17424,"name":"Arnim Zola - The Bio-Fanatic!","site_detail_url":"https://comicvine.gamespot.com/captain-america-209-arnim-zola-the-bio-fanatic/4000-17424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17358/","id":17358,"name":"The Fixer and Mentallo Are Back","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-26-the-fixer-and-mentallo-are-ba/4000-17358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135869/","id":135869,"name":"Will You Never Win?","site_detail_url":"https://comicvine.gamespot.com/captain-britain-27-will-you-never-win/4000-135869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135868/","id":135868,"name":"Hickory, Dickory... Death!","site_detail_url":"https://comicvine.gamespot.com/captain-britain-26-hickory-dickory-death/4000-135868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17351/","id":17351,"name":"Showdown With The Guardsman!","site_detail_url":"https://comicvine.gamespot.com/iron-man-97-showdown-with-the-guardsman/4000-17351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17337/","id":17337,"name":"The River of Death","site_detail_url":"https://comicvine.gamespot.com/captain-america-208-the-river-of-death/4000-17337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135867/","id":135867,"name":"...Gathering of Gladiators!","site_detail_url":"https://comicvine.gamespot.com/captain-britain-25-gathering-of-gladiators/4000-135867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135879/","id":135879,"name":"The Fall of the Fourth Reich?","site_detail_url":"https://comicvine.gamespot.com/captain-britain-24-the-fall-of-the-fourth-reich/4000-135879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135864/","id":135864,"name":"Mayhem at Midnight","site_detail_url":"https://comicvine.gamespot.com/captain-britain-22-mayhem-at-midnight/4000-135864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17272/","id":17272,"name":"Only A Friend Can Save Him","site_detail_url":"https://comicvine.gamespot.com/iron-man-96-only-a-friend-can-save-him/4000-17272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17267/","id":17267,"name":"We Must Free The Defenders!","site_detail_url":"https://comicvine.gamespot.com/the-defenders-45-we-must-free-the-defenders/4000-17267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17261/","id":17261,"name":"The Tiger and the Swine!","site_detail_url":"https://comicvine.gamespot.com/captain-america-207-the-tiger-and-the-swine/4000-17261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135887/","id":135887,"name":"While the World Gently Weeps","site_detail_url":"https://comicvine.gamespot.com/captain-britain-20-while-the-world-gently-weeps/4000-135887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135862/","id":135862,"name":"Two Died With Honour!","site_detail_url":"https://comicvine.gamespot.com/captain-britain-19-two-died-with-honour/4000-135862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135859/","id":135859,"name":"The Revenge Of The Red Skull","site_detail_url":"https://comicvine.gamespot.com/captain-britain-17-the-revenge-of-the-red-skull/4000-135859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17194/","id":17194,"name":"Dark Destiny","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight-32-dark-destiny/4000-17194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135858/","id":135858,"name":"The Battle Of The Century","site_detail_url":"https://comicvine.gamespot.com/captain-britain-16-the-battle-of-the-century/4000-135858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135857/","id":135857,"name":"The End Of Captain Britain?","site_detail_url":"https://comicvine.gamespot.com/captain-britain-15-the-end-of-captain-britain/4000-135857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135855/","id":135855,"name":"Deadly Duel","site_detail_url":"https://comicvine.gamespot.com/captain-britain-13-deadly-duel/4000-135855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223779/","id":223779,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-234/4000-223779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17101/","id":17101,"name":"The Fourth Host","site_detail_url":"https://comicvine.gamespot.com/the-eternals-7-the-fourth-host/4000-17101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17092/","id":17092,"name":"Agron Walks the Earth!","site_detail_url":"https://comicvine.gamespot.com/captain-america-205-agron-walks-the-earth/4000-17092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16968/","id":16968,"name":"Danger: Demon On A Rampage","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-52-danger-demon-on-a-rampage/4000-16968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135854/","id":135854,"name":"Nothing Can Harm","site_detail_url":"https://comicvine.gamespot.com/captain-britain-12-nothing-can-harm/4000-135854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16953/","id":16953,"name":"Gods and Men at City College!","site_detail_url":"https://comicvine.gamespot.com/the-eternals-6-gods-and-men-at-city-college/4000-16953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16945/","id":16945,"name":"The Unburied One!","site_detail_url":"https://comicvine.gamespot.com/captain-america-204-the-unburied-one/4000-16945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16880/","id":16880,"name":"The Trial of the Wraith","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-51-the-trial-of-the-wraith/4000-16880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16865/","id":16865,"name":"Crisis!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-47-crisis/4000-16865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127497/","id":127497,"name":"Wind of Death","site_detail_url":"https://comicvine.gamespot.com/captain-britain-7-wind-of-death/4000-127497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127488/","id":127488,"name":"The Origin of Captain Britain","site_detail_url":"https://comicvine.gamespot.com/captain-britain-1-the-origin-of-captain-britain/4000-127488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89816/","id":89816,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-31/4000-89816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16674/","id":16674,"name":"The Night People!","site_detail_url":"https://comicvine.gamespot.com/captain-america-201-the-night-people/4000-16674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16586/","id":16586,"name":"Dawn's Early Light","site_detail_url":"https://comicvine.gamespot.com/captain-america-200-dawns-early-light/4000-16586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-89815/","id":89815,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action-30/4000-89815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16497/","id":16497,"name":"The Man Who Sold the United States","site_detail_url":"https://comicvine.gamespot.com/captain-america-199-the-man-who-sold-the-united-st/4000-16497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16440/","id":16440,"name":"Deathstar Rising!","site_detail_url":"https://comicvine.gamespot.com/the-x-men-99-deathstar-rising/4000-16440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16408/","id":16408,"name":"Captain America's Love Story","site_detail_url":"https://comicvine.gamespot.com/captain-america-198-captain-americas-love-story/4000-16408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16341/","id":16341,"name":"...And SHIELD Shall Follow!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-199-and-shield-shall-follow/4000-16341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101426/","id":101426,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-15/4000-101426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16078/","id":16078,"name":"Titans Two!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-167-titans-two/4000-16078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16071/","id":16071,"name":"The Trojan Horde","site_detail_url":"https://comicvine.gamespot.com/captain-america-194-the-trojan-horde/4000-16071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-16002/","id":16002,"name":"If It's Tuesday, This Must be the Hulk!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-166-if-its-tuesday-this-must-be-the/4000-16002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417916/","id":417916,"name":"T'was The Night Before Christmas; Spidey Goes Mad!; Jingle Bombs!; Heaven Is A Very Small Place!; Eternity! Eternity!","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition-8-twas-the-night-before-ch/4000-417916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15774/","id":15774,"name":"The Trial of the Falcon","site_detail_url":"https://comicvine.gamespot.com/captain-america-191-the-trial-of-the-falcon/4000-15774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327472/","id":327472,"name":"","site_detail_url":"https://comicvine.gamespot.com/titans-1/4000-327472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15670/","id":15670,"name":"Nightshade is Deadlier the Second Time Around","site_detail_url":"https://comicvine.gamespot.com/captain-america-190-nightshade-is-deadlier-the-sec/4000-15670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15593/","id":15593,"name":"Snow Death!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-37-snow-death/4000-15593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15591/","id":15591,"name":"SUMMERKill","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere-24-summerkill/4000-15591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15573/","id":15573,"name":"Arena For A Fallen Hero","site_detail_url":"https://comicvine.gamespot.com/captain-america-189-arena-for-a-fallen-hero/4000-15573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15491/","id":15491,"name":"Once Upon a Time, In a Castle...","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-36-once-upon-a-time-in-a-castle/4000-15491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15471/","id":15471,"name":"Druid War","site_detail_url":"https://comicvine.gamespot.com/captain-america-188-druid-war/4000-15471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15369/","id":15369,"name":"Holocaust In The Halls Of H.Y.D.R.A.!","site_detail_url":"https://comicvine.gamespot.com/daredevil-123-holocaust-in-the-halls-of-hydra/4000-15369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15368/","id":15368,"name":"Murder by Moonlight!","site_detail_url":"https://comicvine.gamespot.com/creatures-on-the-loose-36-murder-by-moonlight/4000-15368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15276/","id":15276,"name":"Mind Over Mayhem!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-188-mind-over-mayhem/4000-15276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15263/","id":15263,"name":"HYDRA - AND - SEEK","site_detail_url":"https://comicvine.gamespot.com/daredevil-122-hydra-and-seek/4000-15263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15261/","id":15261,"name":"Mind Cage","site_detail_url":"https://comicvine.gamespot.com/captain-america-186-mind-cage/4000-15261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15184/","id":15184,"name":"There's a Gremlin in the Works!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-187-theres-a-gremlin-in-the-wo/4000-15184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15175/","id":15175,"name":"Foggy Nelson, Agent Of S.H.I.E.L.D.!","site_detail_url":"https://comicvine.gamespot.com/daredevil-121-foggy-nelson-agent-of-shield/4000-15175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15174/","id":15174,"name":"Wolfquest!","site_detail_url":"https://comicvine.gamespot.com/creatures-on-the-loose-35-wolfquest/4000-15174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15171/","id":15171,"name":"Scream the Scarlet Skull","site_detail_url":"https://comicvine.gamespot.com/captain-america-185-scream-the-scarlet-skull/4000-15171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114109/","id":114109,"name":"And A Hydra New Year!","site_detail_url":"https://comicvine.gamespot.com/daredevil-120-and-a-hydra-new-year/4000-114109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-15138/","id":15138,"name":"Nomad No More","site_detail_url":"https://comicvine.gamespot.com/captain-america-183-nomad-no-more/4000-15138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413180/","id":413180,"name":"","site_detail_url":"https://comicvine.gamespot.com/son-of-origins-of-marvel-comics-1/4000-413180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14954/","id":14954,"name":"The Mark of Madness!","site_detail_url":"https://comicvine.gamespot.com/captain-america-181-the-mark-of-madness/4000-14954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14482/","id":14482,"name":"Captain America Must Die","site_detail_url":"https://comicvine.gamespot.com/captain-america-176-captain-america-must-die/4000-14482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14409/","id":14409,"name":"Before the Dawn","site_detail_url":"https://comicvine.gamespot.com/captain-america-175-before-the-dawn/4000-14409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14256/","id":14256,"name":"The Sins of the Secret Empire","site_detail_url":"https://comicvine.gamespot.com/captain-america-173-the-sins-of-the-secret-empire/4000-14256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14201/","id":14201,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-3/4000-14201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-14135/","id":14135,"name":"The Coming of... Stegron the Dinosaur Man!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-19-the-coming-of-stegron-the-dinosa/4000-14135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13915/","id":13915,"name":"To The Death!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-118-to-the-death/4000-13915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13784/","id":13784,"name":"Ashes to Ashes","site_detail_url":"https://comicvine.gamespot.com/captain-america-167-ashes-to-ashes/4000-13784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13709/","id":13709,"name":"Beware... The Deadly Dreadnought","site_detail_url":"https://comicvine.gamespot.com/nick-fury-and-his-agents-of-shield-5-beware-the-de/4000-13709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13685/","id":13685,"name":"Night of the Lurking Dead","site_detail_url":"https://comicvine.gamespot.com/captain-america-166-night-of-the-lurking-dead/4000-13685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13589/","id":13589,"name":"The Granite Sky!","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-13-the-granite-sky/4000-13589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13565/","id":13565,"name":"Below Us The Battle!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-115-below-us-the-battle/4000-13565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13566/","id":13566,"name":"The Yellow Claw Strikes","site_detail_url":"https://comicvine.gamespot.com/captain-america-165-the-yellow-claw-strikes/4000-13566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13493/","id":13493,"name":"Where Nekra Walks... Death Must Follow!","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-5-where-nekra-walks-death-mus/4000-13493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-177445/","id":177445,"name":"Magnator!","site_detail_url":"https://comicvine.gamespot.com/monsters-on-the-prowl-24-magnator/4000-177445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13489/","id":13489,"name":"The Power of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-and-his-agents-of-shield-4-the-power-of-/4000-13489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13470/","id":13470,"name":"Queen of the Werewolves","site_detail_url":"https://comicvine.gamespot.com/captain-america-164-queen-of-the-werewolves/4000-13470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13468/","id":13468,"name":"And Men Shall Name Him Victorius","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-19-and-men-shall-name-him-victor/4000-13468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13387/","id":13387,"name":"The Green-Skinned God","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-165-the-green-skinned-god/4000-13387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13394/","id":13394,"name":"The Power Of Iron Man!/ The Battle Cry Of The Boomerang!","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-37-the-power-of-iron-man-the-b/4000-13394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13279/","id":13279,"name":"The Phantom From 5,000 Fathoms","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-164-the-phantom-from-5000-fath/4000-13279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13288/","id":13288,"name":"Hydra Lives!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-and-his-agents-of-shield-3-hydra-lives/4000-13288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13264/","id":13264,"name":"Gog Cometh","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-18-gog-cometh/4000-13264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13171/","id":13171,"name":"...If He Loseth His Soul!","site_detail_url":"https://comicvine.gamespot.com/captain-america-161-if-he-loseth-his-soul/4000-13171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-13120/","id":13120,"name":"Death before Dishonor!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-and-his-agents-of-shield-2-death-before-/4000-13120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12939/","id":12939,"name":"The Dungeon Of Doom!","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil-2-the-dungeon-of-doom/4000-12939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-77796/","id":77796,"name":"Beware The Forbush-Man My Son!","site_detail_url":"https://comicvine.gamespot.com/crazy-1-beware-the-forbush-man-my-son/4000-77796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12935/","id":12935,"name":"When the Unliving Strike!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-and-his-agents-of-shield-1-when-the-unli/4000-12935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12915/","id":12915,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-16/4000-12915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12475/","id":12475,"name":"Captain America--Hero or Hoax?","site_detail_url":"https://comicvine.gamespot.com/captain-america-153-captain-america-hero-or-hoax/4000-12475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12410/","id":12410,"name":"Man-Thing","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-13-man-thing/4000-12410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12412/","id":12412,"name":"Terror in the Night!","site_detail_url":"https://comicvine.gamespot.com/captain-america-152-terror-in-the-night/4000-12412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12350/","id":12350,"name":"100th Anniversary","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-100-100th-anniversary/4000-12350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12267/","id":12267,"name":"But Who Will Judge the Hulk?","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-152-but-who-will-judge-the-hul/4000-12267/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12261/","id":12261,"name":"Mirror, Mirror...!","site_detail_url":"https://comicvine.gamespot.com/captain-america-150-mirror-mirror/4000-12261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12184/","id":12184,"name":"All The Colors... of Evil!","site_detail_url":"https://comicvine.gamespot.com/captain-america-149-all-the-colors-of-evil/4000-12184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12120/","id":12120,"name":"The Big Sleep!","site_detail_url":"https://comicvine.gamespot.com/captain-america-148-the-big-sleep/4000-12120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12049/","id":12049,"name":"And Behind The Hordes of Hydra...","site_detail_url":"https://comicvine.gamespot.com/captain-america-147-and-behind-the-hordes-of-hydra/4000-12049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11994/","id":11994,"name":"But Tomorrow the Sun Shall Die","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-148-but-tomorrow-the-sun-shall/4000-11994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11990/","id":11990,"name":"Mission: Destroy the Femme Force!","site_detail_url":"https://comicvine.gamespot.com/captain-america-146-mission-destroy-the-femme-forc/4000-11990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11918/","id":11918,"name":"Something Inhuman This Way Comes..!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-95-something-inhuman-this-way-comes/4000-11918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11919/","id":11919,"name":"Skyjacked!","site_detail_url":"https://comicvine.gamespot.com/captain-america-145-skyjacked/4000-11919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11841/","id":11841,"name":"Hydra Over All!","site_detail_url":"https://comicvine.gamespot.com/captain-america-144-hydra-over-all/4000-11841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11840/","id":11840,"name":"More Than Inhuman!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-94-more-than-inhuman/4000-11840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11778/","id":11778,"name":"Power to the People!","site_detail_url":"https://comicvine.gamespot.com/captain-america-143-power-to-the-people/4000-11778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11723/","id":11723,"name":"When Demons Wail!","site_detail_url":"https://comicvine.gamespot.com/iron-man-42-when-demons-wail/4000-11723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11719/","id":11719,"name":"And in the End...","site_detail_url":"https://comicvine.gamespot.com/captain-america-142-and-in-the-end/4000-11719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11659/","id":11659,"name":"The Unholy Alliance!","site_detail_url":"https://comicvine.gamespot.com/captain-america-141-the-unholy-alliance/4000-11659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11658/","id":11658,"name":"All Things Must End!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-92-all-things-must-end/4000-11658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11605/","id":11605,"name":"Night Walk!","site_detail_url":"https://comicvine.gamespot.com/iron-man-40-night-walk/4000-11605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11600/","id":11600,"name":"In the Grip of Gargoyle!","site_detail_url":"https://comicvine.gamespot.com/captain-america-140-in-the-grip-of-gargoyle/4000-11600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11540/","id":11540,"name":"The Badge and The Betrayal!","site_detail_url":"https://comicvine.gamespot.com/captain-america-139-the-badge-and-the-betrayal/4000-11540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11426/","id":11426,"name":"To Stalk The Spider-Man","site_detail_url":"https://comicvine.gamespot.com/captain-america-137-to-stalk-the-spider-man/4000-11426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11382/","id":11382,"name":"...Among Men Stalks the Ramrod!","site_detail_url":"https://comicvine.gamespot.com/iron-man-36-among-men-stalks-the-ramrod/4000-11382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11377/","id":11377,"name":"The World Below","site_detail_url":"https://comicvine.gamespot.com/captain-america-136-the-world-below/4000-11377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11330/","id":11330,"name":"Who Strikes at SHIELD?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-18-who-strikes-at-shield/4000-11330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11328/","id":11328,"name":"Revenge","site_detail_url":"https://comicvine.gamespot.com/iron-man-35-revenge/4000-11328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11322/","id":11322,"name":"More Monster Than Man!","site_detail_url":"https://comicvine.gamespot.com/captain-america-135-more-monster-than-man/4000-11322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507487/","id":507487,"name":"El Jefe de \"Escudo\"","site_detail_url":"https://comicvine.gamespot.com/coronel-furia-1-el-jefe-de-escudo/4000-507487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11226/","id":11226,"name":"The Brave Die Hard!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-17-the-brave-die-hard/4000-11226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11222/","id":11222,"name":"Destroy Stark Industries","site_detail_url":"https://comicvine.gamespot.com/iron-man-33-destroy-stark-industries/4000-11222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11218/","id":11218,"name":"The Origin of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual-1-the-origin-of-captain-ame/4000-11218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383878/","id":383878,"name":"Les Super-Héros de Stan Lee","site_detail_url":"https://comicvine.gamespot.com/strange-12-les-super-heros-de-stan-lee/4000-383878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11153/","id":11153,"name":"The Fearful Secret of Bucky Barnes!","site_detail_url":"https://comicvine.gamespot.com/captain-america-132-the-fearful-secret-of-bucky-ba/4000-11153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383877/","id":383877,"name":"Les Super-Héros de Stan Lee","site_detail_url":"https://comicvine.gamespot.com/strange-11-les-super-heros-de-stan-lee/4000-383877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11104/","id":11104,"name":"Find Fury or Die!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-16-find-fury-or-die/4000-11104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383876/","id":383876,"name":"Les Super-Héros de Stan Lee","site_detail_url":"https://comicvine.gamespot.com/strange-10-les-super-heros-de-stan-lee/4000-383876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-383874/","id":383874,"name":"Les Super-Héros de Stan Lee","site_detail_url":"https://comicvine.gamespot.com/strange-8-les-super-heros-de-stan-lee/4000-383874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10897/","id":10897,"name":"Who Calls Me Traitor?","site_detail_url":"https://comicvine.gamespot.com/captain-america-127-who-calls-me-traitor/4000-10897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10864/","id":10864,"name":"The Surfer Must Kill!","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-17-the-surfer-must-kill/4000-10864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10813/","id":10813,"name":"In the Hands of ... Mephisto!","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer-16-in-the-hands-of-mephisto/4000-10813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10760/","id":10760,"name":"My Son...The Minotaur!","site_detail_url":"https://comicvine.gamespot.com/iron-man-24-my-sonthe-minotaur/4000-10760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10709/","id":10709,"name":"Suprema, The Deadliest of The Species!","site_detail_url":"https://comicvine.gamespot.com/captain-america-123-suprema-the-deadliest-of-the-s/4000-10709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10676/","id":10676,"name":"Before I'd Be Slave","site_detail_url":"https://comicvine.gamespot.com/the-x-men-65-before-id-be-slave/4000-10676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10664/","id":10664,"name":"The Sting of The Scorpion!","site_detail_url":"https://comicvine.gamespot.com/captain-america-122-the-sting-of-the-scorpion/4000-10664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10617/","id":10617,"name":"Did You Hear The One About Scorpio?","site_detail_url":"https://comicvine.gamespot.com/the-avengers-72-did-you-hear-the-one-about-scorpio/4000-10617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10520/","id":10520,"name":"The Assassination Of Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-15-the-assassination-of-/4000-10520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10462/","id":10462,"name":"Let The Game Begin","site_detail_url":"https://comicvine.gamespot.com/the-avengers-69-let-the-game-begin/4000-10462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10411/","id":10411,"name":"Nick Fury... A Day In the Life","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-14-nick-fury-a-day-in-th/4000-10411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10401/","id":10401,"name":"...And We Battle For The Earth","site_detail_url":"https://comicvine.gamespot.com/the-avengers-68-and-we-battle-for-the-earth/4000-10401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10359/","id":10359,"name":"Of Beasts and Men!","site_detail_url":"https://comicvine.gamespot.com/iron-man-16-of-beasts-and-men/4000-10359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10353/","id":10353,"name":"We Stand at Armageddon","site_detail_url":"https://comicvine.gamespot.com/the-avengers-67-we-stand-at-armageddon/4000-10353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10313/","id":10313,"name":"The Super-Patriot!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-13-the-super-patriot/4000-10313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10310/","id":10310,"name":"Said the Unicorn to the Ghost---!","site_detail_url":"https://comicvine.gamespot.com/iron-man-15-said-the-unicorn-to-the-ghost-/4000-10310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10304/","id":10304,"name":"Now Begins The Nightmare","site_detail_url":"https://comicvine.gamespot.com/captain-america-115-now-begins-the-nightmare/4000-10304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10303/","id":10303,"name":"Betrayal","site_detail_url":"https://comicvine.gamespot.com/the-avengers-66-betrayal/4000-10303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10268/","id":10268,"name":"Burn, Namor... Burn!","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-14-burn-namor-burn/4000-10268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10259/","id":10259,"name":"The Man Behind The Mask","site_detail_url":"https://comicvine.gamespot.com/captain-america-114-the-man-behind-the-mask/4000-10259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10210/","id":10210,"name":"Hell Hath No Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-12-hell-hath-no-fury/4000-10210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10207/","id":10207,"name":"Captives of the Controller","site_detail_url":"https://comicvine.gamespot.com/iron-man-13-captives-of-the-controller/4000-10207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10200/","id":10200,"name":"The Strange Death of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-113-the-strange-death-of-captain-a/4000-10200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10157/","id":10157,"name":"The 1st Million Megaton Explosion","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-11-the-1st-million-megat/4000-10157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10149/","id":10149,"name":"The Moment of...the Manslayer!","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-12-the-moment-ofthe-manslayer/4000-10149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10155/","id":10155,"name":"The Coming of the Controller","site_detail_url":"https://comicvine.gamespot.com/iron-man-12-the-coming-of-the-controller/4000-10155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10148/","id":10148,"name":"Lest We Forget","site_detail_url":"https://comicvine.gamespot.com/captain-america-112-lest-we-forget/4000-10148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10103/","id":10103,"name":"Twas the Night Before Christmas","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-10-twas-the-night-before/4000-10103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10098/","id":10098,"name":"The Name is Doom!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-84-the-name-is-doom/4000-10098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10093/","id":10093,"name":"Tomorrow You Live, Tonight I Die","site_detail_url":"https://comicvine.gamespot.com/captain-america-111-tomorrow-you-live-tonight-i-di/4000-10093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10049/","id":10049,"name":"The Name Of The Game Is... Hate!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-9-the-name-of-the-game-i/4000-10049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10047/","id":10047,"name":"Once More...The Mandarin!","site_detail_url":"https://comicvine.gamespot.com/iron-man-10-once-morethe-mandarin/4000-10047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9998/","id":9998,"name":"Thus Speaks Supremus!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-8-thus-speaks-supremus/4000-9998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114327/","id":114327,"name":"Hours of Madness, Days of Death","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-7-hours-of-madness-days-/4000-114327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120058/","id":120058,"name":"A Duel Must End!","site_detail_url":"https://comicvine.gamespot.com/iron-man-8-a-duel-must-end/4000-120058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113995/","id":113995,"name":"The Name Is... Yellowjacket","site_detail_url":"https://comicvine.gamespot.com/the-avengers-59-the-name-is-yellowjacket/4000-113995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109148/","id":109148,"name":"The Snares of the Trapster","site_detail_url":"https://comicvine.gamespot.com/captain-america-108-the-snares-of-the-trapster/4000-109148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114326/","id":114326,"name":"Doom Must Fall!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-6-doom-must-fall/4000-114326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114325/","id":114325,"name":"Whatever Happened to Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-5-whatever-happened-to-s/4000-114325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109146/","id":109146,"name":"Cap Goes Wild","site_detail_url":"https://comicvine.gamespot.com/captain-america-106-cap-goes-wild/4000-109146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114322/","id":114322,"name":"Origin of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-4-origin-of-shield/4000-114322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111618/","id":111618,"name":"Ten Rings Hath the Mandarin","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-107-ten-rings-hath-the-mandari/4000-111618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124563/","id":124563,"name":"And Time, The Rushing River...!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-2-and-time-the-rushing-river/4000-124563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114324/","id":114324,"name":"Dark Moon Rise, Hell Hound Kill","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-3-dark-moon-rise-hell-ho/4000-114324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111619/","id":111619,"name":"Above the Earth...a Titan Rages!","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-106-above-the-eartha-titan-rag/4000-111619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109144/","id":109144,"name":"Slave of the Skull","site_detail_url":"https://comicvine.gamespot.com/captain-america-104-slave-of-the-skull/4000-109144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114321/","id":114321,"name":"So Shall Ye Reap... Death!","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-2-so-shall-ye-reap-death/4000-114321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109143/","id":109143,"name":"The Weakest Link","site_detail_url":"https://comicvine.gamespot.com/captain-america-103-the-weakest-link/4000-109143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186091/","id":186091,"name":"","site_detail_url":"https://comicvine.gamespot.com/not-brand-echh-8/4000-186091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114323/","id":114323,"name":"Who Is Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-1-who-is-scorpio/4000-114323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109142/","id":109142,"name":"The Sleeper Strikes","site_detail_url":"https://comicvine.gamespot.com/captain-america-102-the-sleeper-strikes/4000-109142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120043/","id":120043,"name":"Alone Against A.I.M.!: The Origin of Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man-1-alone-against-aim-the-origin-of-iron-ma/4000-120043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110654/","id":110654,"name":"Exile!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-168-exile/4000-110654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109141/","id":109141,"name":"When Wakes the Sleeper","site_detail_url":"https://comicvine.gamespot.com/captain-america-101-when-wakes-the-sleeper/4000-109141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105481/","id":105481,"name":"This Monster Unmasked","site_detail_url":"https://comicvine.gamespot.com/captain-america-100-this-monster-unmasked/4000-105481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110708/","id":110708,"name":"Armageddon!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-167-armageddon/4000-110708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-108988/","id":108988,"name":"At the Mercy of the Maggia / The Man Who Lived Twice","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-99-at-the-mercy-of-the-maggia-th/4000-108988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110781/","id":110781,"name":"Nothing Can Halt...Voltorg!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-166-nothing-can-haltvoltorg/4000-110781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9942/","id":9942,"name":"The Warrior and the Whip / The Claws of the Panther","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-98-the-warrior-and-the-whip-the-/4000-9942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110836/","id":110836,"name":"Behold The Savage Sky!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-165-behold-the-savage-sky/4000-110836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9885/","id":9885,"name":"The Coming of Whiplash / And So It Begins","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-97-the-coming-of-whiplash-and-so/4000-9885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110837/","id":110837,"name":"Nightmare!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-164-nightmare/4000-110837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9822/","id":9822,"name":"The Deadly Victory / To Be Reborn","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-96-the-deadly-victory-to-be-rebo/4000-9822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110838/","id":110838,"name":"And The Dragon Cried...Death!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-163-and-the-dragon-crieddeath/4000-110838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9760/","id":9760,"name":"If A Man Be Stone / A Time to Die, A Time to Live","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-95-if-a-man-be-stone-a-time-to-d/4000-9760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110839/","id":110839,"name":"So Evil, The Night!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-162-so-evil-the-night/4000-110839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9692/","id":9692,"name":"The Tragedy and the Triumph / If This Be... MODOK!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-94-the-tragedy-and-the-triumph-i/4000-9692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110841/","id":110841,"name":"The Second Doom","site_detail_url":"https://comicvine.gamespot.com/strange-tales-161-the-second-doom/4000-110841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9622/","id":9622,"name":"The Golden Gladiator and the Giant / Into the Jaws of A.I.M.","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-93-the-golden-gladiator-and-the-/4000-9622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9619/","id":9619,"name":"","site_detail_url":"https://comicvine.gamespot.com/not-brand-echh-2/4000-9619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110842/","id":110842,"name":"Project: Blackout","site_detail_url":"https://comicvine.gamespot.com/strange-tales-160-project-blackout/4000-110842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9562/","id":9562,"name":"Within The Vastness of Vietnam / Before My Eyes, Nick Fury Died","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-92-within-the-vastness-of-vietna/4000-9562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9560/","id":9560,"name":"The Valor and the Victory!","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-annual-3-the-valor-and-the-victory/4000-9560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111018/","id":111018,"name":"Spy School","site_detail_url":"https://comicvine.gamespot.com/strange-tales-159-spy-school/4000-111018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111071/","id":111071,"name":"Crisis!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-157-crisis/4000-111071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111072/","id":111072,"name":"The Tribunal!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-156-the-tribunal/4000-111072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111073/","id":111073,"name":"Death Trap!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-155-death-trap/4000-111073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9291/","id":9291,"name":"The Torment... And The Triumph","site_detail_url":"https://comicvine.gamespot.com/the-avengers-39-the-torment-and-the-triumph/4000-9291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111074/","id":111074,"name":"Beware...The Deadly Dreadnought!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-154-bewarethe-deadly-dreadnought/4000-111074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9224/","id":9224,"name":"In Our Midst... An Immortal!","site_detail_url":"https://comicvine.gamespot.com/the-avengers-38-in-our-midst-an-immortal/4000-9224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9159/","id":9159,"name":"Death Duel For The Life Of Happy Hogan!/ The Secret!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-86-death-duel-for-the-life-of-ha/4000-9159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111093/","id":111093,"name":"The Hiding Place!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-153-the-hiding-place/4000-111093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352225/","id":352225,"name":"","site_detail_url":"https://comicvine.gamespot.com/pow-1/4000-352225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111094/","id":111094,"name":"The Power Of SHIELD!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-152-the-power-of-shield/4000-111094/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9022/","id":9022,"name":"The Other Iron Man / The Super Adaptoid","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-84-the-other-iron-man-the-super-/4000-9022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111095/","id":111095,"name":"Overkill!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-151-overkill/4000-111095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111084/","id":111084,"name":"Hydra Lives!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-150-hydra-lives/4000-111084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8948/","id":8948,"name":"Victory / Enter the Tumbler","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-83-victory-enter-the-tumbler/4000-8948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111075/","id":111075,"name":"The End Of A.I.M.!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-149-the-end-of-aim/4000-111075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8882/","id":8882,"name":"By Force of Arms! / The Maddening Mystery of the Inconceivable Adaptoid","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-82-by-force-of-arms-the-maddenin/4000-8882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111076/","id":111076,"name":"Death Before Dishonor!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-148-death-before-dishonor/4000-111076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8808/","id":8808,"name":"The Sign Of The Serpent","site_detail_url":"https://comicvine.gamespot.com/the-avengers-32-the-sign-of-the-serpent/4000-8808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8738/","id":8738,"name":"The Power Of Iron Man!; The Battle Cry Of The Boomerang!","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish-82-the-power-of-iron-man-the-bat/4000-8738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111109/","id":111109,"name":"The Enemy Within!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-147-the-enemy-within/4000-111109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8737/","id":8737,"name":"When Fall The Mighty / He Who Holds The Cosmic Cube","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-80-when-fall-the-mighty-he-who-h/4000-8737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111106/","id":111106,"name":"When The Unliving Strike!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-146-when-the-unliving-strike/4000-111106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8671/","id":8671,"name":"Disaster / The Red Skull Lives","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-79-disaster-the-red-skull-lives/4000-8671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111105/","id":111105,"name":"Lo! The Eggs Shall Hatch!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-145-lo-the-eggs-shall-hatch/4000-111105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8618/","id":8618,"name":"Crescendo!/ THEM!","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-78-crescendo-them/4000-8618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111098/","id":111098,"name":"The Day Of The Druid!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-144-the-day-of-the-druid/4000-111098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111097/","id":111097,"name":"To Free A Brain Slave!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-143-to-free-a-brain-slave/4000-111097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8495/","id":8495,"name":"Here Lies Hidden the Unspeakable Ultimo / The Gladiator, the Girl, and the Glory","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-76-here-lies-hidden-the-unspeaka/4000-8495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-9045/","id":9045,"name":"A Day of Thunder!","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-annual-2-a-day-of-thunder/4000-9045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111096/","id":111096,"name":"Who Strikes At--SHIELD?","site_detail_url":"https://comicvine.gamespot.com/strange-tales-142-who-strikes-at-shield/4000-111096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-8432/","id":8432,"name":"The Fury of the Freak / 30 Minutes to Live","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense-75-the-fury-of-the-freak-30-minu/4000-8432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111082/","id":111082,"name":"The End Of Hydra!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-140-the-end-of-hydra/4000-111082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111081/","id":111081,"name":"The Brave Die Hard!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-139-the-brave-die-hard/4000-111081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111080/","id":111080,"name":"Sometimes The Good Guys Lose!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-138-sometimes-the-good-guys-lose/4000-111080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111079/","id":111079,"name":"The Prize Is...Earth!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-137-the-prize-isearth/4000-111079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7504/","id":7504,"name":"Bedlam At The Baxter Building!","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual-3-bedlam-at-the-baxter-build/4000-7504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111070/","id":111070,"name":"Find Fury Or Die!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-136-find-fury-or-die/4000-111070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111069/","id":111069,"name":"The Man For The Job!","site_detail_url":"https://comicvine.gamespot.com/strange-tales-135-the-man-for-the-job/4000-111069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-7959/","id":7959,"name":"The Coming of the Swordsman","site_detail_url":"https://comicvine.gamespot.com/the-avengers-19-the-coming-of-the-swordsman/4000-7959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-896983/","id":896983,"name":null,"site_detail_url":"https://comicvine.gamespot.com/die-spinne-36/4000-896983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893766/","id":893766,"name":"Damen behandelt man nicht so!","site_detail_url":"https://comicvine.gamespot.com/die-spinne-17-damen-behandelt-man-nicht-so/4000-893766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893149/","id":893149,"name":null,"site_detail_url":"https://comicvine.gamespot.com/die-spinne-13/4000-893149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-821299/","id":821299,"name":null,"site_detail_url":"https://comicvine.gamespot.com/spider-man-200707/4000-821299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-767408/","id":767408,"name":null,"site_detail_url":"https://comicvine.gamespot.com/frankenstein-16/4000-767408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-744590/","id":744590,"name":"TODESGEFAHR","site_detail_url":"https://comicvine.gamespot.com/marvel-now-wolverine-2-todesgefahr/4000-744590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-724156/","id":724156,"name":"Avengers Invaders","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-hors-serie-3-avengers-invaders/4000-724156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704078/","id":704078,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-3/4000-704078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704077/","id":704077,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-2/4000-704077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697526/","id":697526,"name":null,"site_detail_url":"https://comicvine.gamespot.com/el-asombroso-hombre-arana-366/4000-697526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-629045/","id":629045,"name":"Nick Fury: Agent of S.H.I.E.L.D. (Part 1)","site_detail_url":"https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-classic-8-n/4000-629045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601220/","id":601220,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-30/4000-601220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546959/","id":546959,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/marvels-universum-199008-hulk/4000-546959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546957/","id":546957,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/marvels-universum-199012-hulk/4000-546957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546954/","id":546954,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/marvels-universum-199107-hulk/4000-546954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507491/","id":507491,"name":"El Asesinato de Nick Furia","site_detail_url":"https://comicvine.gamespot.com/coronel-furia-8-el-asesinato-de-nick-furia/4000-507491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507490/","id":507490,"name":"El Super Patriota","site_detail_url":"https://comicvine.gamespot.com/coronel-furia-6-el-super-patriota/4000-507490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507489/","id":507489,"name":"Odio","site_detail_url":"https://comicvine.gamespot.com/coronel-furia-4-odio/4000-507489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499985/","id":499985,"name":"retour au foyer","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-18-retour-au-foyer/4000-499985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499649/","id":499649,"name":"Un de moins","site_detail_url":"https://comicvine.gamespot.com/x-men-19-un-de-moins/4000-499649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499648/","id":499648,"name":"La tête des les étoiles","site_detail_url":"https://comicvine.gamespot.com/x-men-18-la-tete-des-les-etoiles/4000-499648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498587/","id":498587,"name":"Dschungelfieber","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine-1-dschungelfieber/4000-498587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498510/","id":498510,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/marvel-klassiker-fantastic-four-1-sc/4000-498510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497681/","id":497681,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-24/4000-497681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497680/","id":497680,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-23/4000-497680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497678/","id":497678,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-21/4000-497678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497599/","id":497599,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher-6/4000-497599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482842/","id":482842,"name":"Vol. 57 - Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-45-vol-57-sec/4000-482842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476461/","id":476461,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-6/4000-476461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476450/","id":476450,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-magazine-256/4000-476450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476429/","id":476429,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-legends-100/4000-476429/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476426/","id":476426,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-10/4000-476426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476425/","id":476425,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-9/4000-476425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476424/","id":476424,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks-8/4000-476424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476420/","id":476420,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-7/4000-476420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476419/","id":476419,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6/4000-476419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476418/","id":476418,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-5/4000-476418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476417/","id":476417,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4/4000-476417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476416/","id":476416,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-3/4000-476416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465189/","id":465189,"name":"Le journal de Spider-Man","site_detail_url":"https://comicvine.gamespot.com/strange-145-le-journal-de-spider-man/4000-465189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465185/","id":465185,"name":"Le journal de Spider-Man","site_detail_url":"https://comicvine.gamespot.com/strange-140-le-journal-de-spider-man/4000-465185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463830/","id":463830,"name":"Vol. 42 - Avengers - Ausbruch!","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-33-vol-42-ave/4000-463830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460830/","id":460830,"name":"Vol. 50 - Fallen Son - Der Tod von Captain America","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-31-vol-50-fal/4000-460830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460829/","id":460829,"name":"Vol. 49 - Civil War","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-30-vol-49-civ/4000-460829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459605/","id":459605,"name":"Vol. 4 - Thor - Der letzte Wikinger","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-39-vol-4-thor/4000-459605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453912/","id":453912,"name":"","site_detail_url":"https://comicvine.gamespot.com/cable-21/4000-453912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453708/","id":453708,"name":"The Invincible Iron Man: Unmasked","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-40-the-invincible-iron-man-unmas/4000-453708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453706/","id":453706,"name":"The Invicible Iron Man: The Tragedy and the Triumph","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-39-the-invicible-iron-man-the-tr/4000-453706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453258/","id":453258,"name":"Fantastic Four: The Coming of Galactus!","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-18-fantastic-four-the-coming-of-/4000-453258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453257/","id":453257,"name":"The Incredible Hulk: The Monster Unleashed","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-16-the-incredible-hulk-the-monst/4000-453257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453107/","id":453107,"name":"The Uncanny X-Men: Love and Madness","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook-13-the-uncanny-x-men-love-and-ma/4000-453107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450808/","id":450808,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-16/4000-450808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449383/","id":449383,"name":"Vol. 34 - Heldenfall","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-5-vol-34-held/4000-449383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445990/","id":445990,"name":"Vol. 12 - Marvels","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-18-vol-12-mar/4000-445990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444212/","id":444212,"name":"X-tinción Mutante Vol. 1: House Of M","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-10-x-tincion-mutante-vol-1-house/4000-444212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444210/","id":444210,"name":"Wolverine Enemigo Del Estado","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-8-wolverine-enemigo-del-estado/4000-444210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441934/","id":441934,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1985-01/4000-441934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441918/","id":441918,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-1986-05/4000-441918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-438605/","id":438605,"name":"Vol. 33 - Secret War","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-10-vol-33-sec/4000-438605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435985/","id":435985,"name":"","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-x-men-5/4000-435985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435982/","id":435982,"name":"","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-x-men-2/4000-435982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434568/","id":434568,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-41/4000-434568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433717/","id":433717,"name":"","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men-82/4000-433717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431549/","id":431549,"name":"X-Force : non ti lascio indietro","site_detail_url":"https://comicvine.gamespot.com/100-marvel-bestorce-x-force-3-x-force-non-ti-lasci/4000-431549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431187/","id":431187,"name":"Vol. 44 - Captain America - Wintersoldat","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-21-vol-44-cap/4000-431187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423611/","id":423611,"name":"Soldados","site_detail_url":"https://comicvine.gamespot.com/capitan-america-6-soldados/4000-423611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411438/","id":411438,"name":"Der Ultimative Held","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-1-der-ultimative-held/4000-411438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402511/","id":402511,"name":"The Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-movies-avengers-1-the-avengers/4000-402511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399941/","id":399941,"name":"","site_detail_url":"https://comicvine.gamespot.com/amazing-stories-of-suspense-98/4000-399941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399940/","id":399940,"name":"Shield Origin Issue","site_detail_url":"https://comicvine.gamespot.com/amazing-stories-of-suspense-94-shield-origin-issue/4000-399940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399687/","id":399687,"name":"Waanzin","site_detail_url":"https://comicvine.gamespot.com/x-mannen-42-waanzin/4000-399687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399385/","id":399385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-37/4000-399385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385819/","id":385819,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mix-90/4000-385819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385808/","id":385808,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-mix-81/4000-385808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381236/","id":381236,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-49/4000-381236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381169/","id":381169,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-8/4000-381169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381168/","id":381168,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-7/4000-381168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381167/","id":381167,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-6/4000-381167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381166/","id":381166,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-5/4000-381166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381165/","id":381165,"name":"","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection-4/4000-381165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-364830/","id":364830,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-annual-1992/4000-364830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363879/","id":363879,"name":"Marvel Comic Annual","site_detail_url":"https://comicvine.gamespot.com/marvel-annual-1971-marvel-comic-annual/4000-363879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352916/","id":352916,"name":"","site_detail_url":"https://comicvine.gamespot.com/thing-is-big-ben-4/4000-352916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298940/","id":298940,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-40/4000-298940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298939/","id":298939,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-39/4000-298939/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298938/","id":298938,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-38/4000-298938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298936/","id":298936,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-36/4000-298936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298933/","id":298933,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-33/4000-298933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298931/","id":298931,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-31/4000-298931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298928/","id":298928,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-28/4000-298928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298926/","id":298926,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-26/4000-298926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298925/","id":298925,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-25/4000-298925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298924/","id":298924,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-24/4000-298924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298923/","id":298923,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-23/4000-298923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298922/","id":298922,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-22/4000-298922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298921/","id":298921,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-21/4000-298921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298920/","id":298920,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-20/4000-298920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224986/","id":224986,"name":"","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-the-fury-files-2/4000-224986/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2710/","id":2710,"name":"LEGO Marvel Avengers: Loki in Training","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-avengers-loki-in-training/4025-2710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2360/","id":2360,"name":"Avengers: Endgame","site_detail_url":"https://comicvine.gamespot.com/avengers-endgame/4025-2360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2328/","id":2328,"name":"Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/captain-marvel/4025-2328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2365/","id":2365,"name":"Marvel Rising: Secret Warriors","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-secret-warriors/4025-2365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2684/","id":2684,"name":"Marvel Rising: Initiation","site_detail_url":"https://comicvine.gamespot.com/marvel-rising-initiation/4025-2684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2705/","id":2705,"name":"Lego Marvel Super Heroes: Avengers Reassembled","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes-avengers-reassembled/4025-2705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1552/","id":1552,"name":"Ant-Man","site_detail_url":"https://comicvine.gamespot.com/ant-man/4025-1552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1563/","id":1563,"name":"Avengers: Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/avengers-age-of-ultron/4025-1563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2641/","id":2641,"name":"Iron Man & Captain America: Heroes United","site_detail_url":"https://comicvine.gamespot.com/iron-man-and-captain-america-heroes-united/4025-2641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1542/","id":1542,"name":"Captain America: The Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-winter-soldier/4025-1542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1934/","id":1934,"name":"Avengers Confidential: Black Widow & Punisher","site_detail_url":"https://comicvine.gamespot.com/avengers-confidential-black-widow-punisher/4025-1934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1933/","id":1933,"name":"LEGO Marvel Super Heroes: Maximum Overload","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes-maximum-overload/4025-1933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1971/","id":1971,"name":"Marvel One-Shot: Agent Carter","site_detail_url":"https://comicvine.gamespot.com/marvel-oneshot-agent-carter/4025-1971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1945/","id":1945,"name":"Phineas and Ferb: Mission Marvel","site_detail_url":"https://comicvine.gamespot.com/phineas-and-ferb-mission-marvel/4025-1945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1589/","id":1589,"name":"Iron Man: Rise of Technovore","site_detail_url":"https://comicvine.gamespot.com/iron-man-rise-of-technovore/4025-1589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-936/","id":936,"name":"The Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers/4025-936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1548/","id":1548,"name":"Marvel One Shot: The Consultant","site_detail_url":"https://comicvine.gamespot.com/marvel-one-shot-the-consultant/4025-1548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-927/","id":927,"name":"Captain America: The First Avenger","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-first-avenger/4025-927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-949/","id":949,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4025-949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-733/","id":733,"name":"Iron Man 2","site_detail_url":"https://comicvine.gamespot.com/iron-man-2/4025-733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-17/","id":17,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4025-17/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-131/","id":131,"name":"Ultimate Avengers","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers/4025-131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-135/","id":135,"name":"Nick Fury: Agent Of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield/4025-135/"}],"name":"S.H.I.E.L.D.","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/shield/4060-3775/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40763/","id":40763,"name":"The Janus Directive","site_detail_url":"https://comicvine.gamespot.com/the-janus-directive/4045-40763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40782/","id":40782,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/zero-hour/4045-40782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-40833/","id":40833,"name":"The Doll's House","site_detail_url":"https://comicvine.gamespot.com/the-dolls-house/4045-40833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41287/","id":41287,"name":"Annihilation","site_detail_url":"https://comicvine.gamespot.com/annihilation/4045-41287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-41641/","id":41641,"name":"Kingdom Come","site_detail_url":"https://comicvine.gamespot.com/kingdom-come/4045-41641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-43775/","id":43775,"name":"Clone Saga","site_detail_url":"https://comicvine.gamespot.com/clone-saga/4045-43775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-47133/","id":47133,"name":"Villains United","site_detail_url":"https://comicvine.gamespot.com/villains-united/4045-47133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-48424/","id":48424,"name":"The Crossing","site_detail_url":"https://comicvine.gamespot.com/the-crossing/4045-48424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-49269/","id":49269,"name":"The Haunting of America","site_detail_url":"https://comicvine.gamespot.com/the-haunting-of-america/4045-49269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-49544/","id":49544,"name":"Return to New York","site_detail_url":"https://comicvine.gamespot.com/return-to-new-york/4045-49544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55668/","id":55668,"name":"How to Play with Fire","site_detail_url":"https://comicvine.gamespot.com/how-to-play-with-fire/4045-55668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55682/","id":55682,"name":"World's End","site_detail_url":"https://comicvine.gamespot.com/worlds-end/4045-55682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55707/","id":55707,"name":"Dark Reign","site_detail_url":"https://comicvine.gamespot.com/dark-reign/4045-55707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55741/","id":55741,"name":"Armor Wars","site_detail_url":"https://comicvine.gamespot.com/armor-wars/4045-55741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55752/","id":55752,"name":"Dangerous","site_detail_url":"https://comicvine.gamespot.com/dangerous/4045-55752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55766/","id":55766,"name":"Blackest Night","site_detail_url":"https://comicvine.gamespot.com/blackest-night/4045-55766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55920/","id":55920,"name":"Galactic Civil War","site_detail_url":"https://comicvine.gamespot.com/galactic-civil-war/4045-55920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55955/","id":55955,"name":"Heroes Reborn","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn/4045-55955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55961/","id":55961,"name":"Nation X","site_detail_url":"https://comicvine.gamespot.com/nation-x/4045-55961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-55984/","id":55984,"name":"The Gauntlet","site_detail_url":"https://comicvine.gamespot.com/the-gauntlet/4045-55984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56018/","id":56018,"name":"Brightest Day","site_detail_url":"https://comicvine.gamespot.com/brightest-day/4045-56018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56024/","id":56024,"name":"Emerald Knights","site_detail_url":"https://comicvine.gamespot.com/emerald-knights/4045-56024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56112/","id":56112,"name":"Justice","site_detail_url":"https://comicvine.gamespot.com/justice/4045-56112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56114/","id":56114,"name":"Shadowland","site_detail_url":"https://comicvine.gamespot.com/shadowland/4045-56114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56164/","id":56164,"name":"The Company of Men","site_detail_url":"https://comicvine.gamespot.com/the-company-of-men/4045-56164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56166/","id":56166,"name":"Thunderbirds Are Go!","site_detail_url":"https://comicvine.gamespot.com/thunderbirds-are-go/4045-56166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56189/","id":56189,"name":"Grounded","site_detail_url":"https://comicvine.gamespot.com/grounded/4045-56189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56190/","id":56190,"name":"The Flood","site_detail_url":"https://comicvine.gamespot.com/the-flood/4045-56190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56193/","id":56193,"name":"The Hit List","site_detail_url":"https://comicvine.gamespot.com/the-hit-list/4045-56193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56194/","id":56194,"name":"Countdown to Final Crisis","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis/4045-56194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56197/","id":56197,"name":"The Shard of Darkness","site_detail_url":"https://comicvine.gamespot.com/the-shard-of-darkness/4045-56197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56200/","id":56200,"name":"The Good, The Bad, and the Paranormal","site_detail_url":"https://comicvine.gamespot.com/the-good-the-bad-and-the-paranormal/4045-56200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56210/","id":56210,"name":"Avengers Assemble: The Oral History of the Earth's Mightiest Heroes","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-the-oral-history-of-the-earths-m/4045-56210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56231/","id":56231,"name":"Judge Dredd: Necropolis","site_detail_url":"https://comicvine.gamespot.com/judge-dredd-necropolis/4045-56231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56242/","id":56242,"name":"Atom and Evil","site_detail_url":"https://comicvine.gamespot.com/atom-and-evil/4045-56242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56251/","id":56251,"name":"Arrancar Saga","site_detail_url":"https://comicvine.gamespot.com/arrancar-saga/4045-56251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56278/","id":56278,"name":"Big Time","site_detail_url":"https://comicvine.gamespot.com/big-time/4045-56278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56280/","id":56280,"name":"Flashpoint","site_detail_url":"https://comicvine.gamespot.com/flashpoint/4045-56280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56286/","id":56286,"name":"Batman Incorporated","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated/4045-56286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56293/","id":56293,"name":"Fresh Hell","site_detail_url":"https://comicvine.gamespot.com/fresh-hell/4045-56293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56300/","id":56300,"name":"The New Traveller's Almanac","site_detail_url":"https://comicvine.gamespot.com/the-new-travellers-almanac/4045-56300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56311/","id":56311,"name":"Storybook Love","site_detail_url":"https://comicvine.gamespot.com/storybook-love/4045-56311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56338/","id":56338,"name":"Kraven's First Hunt","site_detail_url":"https://comicvine.gamespot.com/kravens-first-hunt/4045-56338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56339/","id":56339,"name":"Reign of the Supermen","site_detail_url":"https://comicvine.gamespot.com/reign-of-the-supermen/4045-56339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56346/","id":56346,"name":"Journey To The East","site_detail_url":"https://comicvine.gamespot.com/journey-to-the-east/4045-56346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56357/","id":56357,"name":"Then and Now","site_detail_url":"https://comicvine.gamespot.com/then-and-now/4045-56357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56358/","id":56358,"name":"Crisis on Earth-Prime","site_detail_url":"https://comicvine.gamespot.com/crisis-on-earth-prime/4045-56358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56359/","id":56359,"name":"Ages of Apocalypse","site_detail_url":"https://comicvine.gamespot.com/ages-of-apocalypse/4045-56359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56377/","id":56377,"name":"Superman: Exile","site_detail_url":"https://comicvine.gamespot.com/superman-exile/4045-56377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56387/","id":56387,"name":"Red Zone","site_detail_url":"https://comicvine.gamespot.com/red-zone/4045-56387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56400/","id":56400,"name":"Cobra Civil War","site_detail_url":"https://comicvine.gamespot.com/cobra-civil-war/4045-56400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56411/","id":56411,"name":"Genesis","site_detail_url":"https://comicvine.gamespot.com/genesis/4045-56411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56413/","id":56413,"name":"The Cursed Earth","site_detail_url":"https://comicvine.gamespot.com/the-cursed-earth/4045-56413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56431/","id":56431,"name":"The Great Escape","site_detail_url":"https://comicvine.gamespot.com/the-great-escape/4045-56431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56467/","id":56467,"name":"First to Last","site_detail_url":"https://comicvine.gamespot.com/first-to-last/4045-56467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56485/","id":56485,"name":"Spider-Island","site_detail_url":"https://comicvine.gamespot.com/spider-island/4045-56485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56492/","id":56492,"name":"Shadows of The Empire","site_detail_url":"https://comicvine.gamespot.com/shadows-of-the-empire/4045-56492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56500/","id":56500,"name":"Suicide Run","site_detail_url":"https://comicvine.gamespot.com/suicide-run/4045-56500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56501/","id":56501,"name":"The Bronze Doors","site_detail_url":"https://comicvine.gamespot.com/the-bronze-doors/4045-56501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56502/","id":56502,"name":"Incubi","site_detail_url":"https://comicvine.gamespot.com/incubi/4045-56502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56503/","id":56503,"name":"DC Retroactive","site_detail_url":"https://comicvine.gamespot.com/dc-retroactive/4045-56503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56509/","id":56509,"name":"Day of Chaos","site_detail_url":"https://comicvine.gamespot.com/day-of-chaos/4045-56509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56510/","id":56510,"name":"Stars","site_detail_url":"https://comicvine.gamespot.com/stars/4045-56510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56511/","id":56511,"name":"Dream","site_detail_url":"https://comicvine.gamespot.com/dream/4045-56511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56522/","id":56522,"name":"Shattered Heroes","site_detail_url":"https://comicvine.gamespot.com/shattered-heroes/4045-56522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56549/","id":56549,"name":"Darker than Scarlet","site_detail_url":"https://comicvine.gamespot.com/darker-than-scarlet/4045-56549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56582/","id":56582,"name":"Heart of Stone","site_detail_url":"https://comicvine.gamespot.com/heart-of-stone/4045-56582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56589/","id":56589,"name":"Torment","site_detail_url":"https://comicvine.gamespot.com/torment/4045-56589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56590/","id":56590,"name":"Lifetheft","site_detail_url":"https://comicvine.gamespot.com/lifetheft/4045-56590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56616/","id":56616,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/ghosts/4045-56616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56621/","id":56621,"name":"Walk or Die","site_detail_url":"https://comicvine.gamespot.com/walk-or-die/4045-56621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56629/","id":56629,"name":"Family Plot","site_detail_url":"https://comicvine.gamespot.com/family-plot/4045-56629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56644/","id":56644,"name":"Regenesis","site_detail_url":"https://comicvine.gamespot.com/regenesis/4045-56644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56673/","id":56673,"name":"The Reaper and The Robot","site_detail_url":"https://comicvine.gamespot.com/the-reaper-and-the-robot/4045-56673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56674/","id":56674,"name":"Avengers vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men/4045-56674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56699/","id":56699,"name":"Chill in the Oven","site_detail_url":"https://comicvine.gamespot.com/chill-in-the-oven/4045-56699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56718/","id":56718,"name":"Company Saga","site_detail_url":"https://comicvine.gamespot.com/company-saga/4045-56718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56732/","id":56732,"name":"Judgement Day","site_detail_url":"https://comicvine.gamespot.com/judgement-day/4045-56732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56752/","id":56752,"name":"Top Cow Rebirth","site_detail_url":"https://comicvine.gamespot.com/top-cow-rebirth/4045-56752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56757/","id":56757,"name":"Boundaries","site_detail_url":"https://comicvine.gamespot.com/boundaries/4045-56757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56759/","id":56759,"name":"Road Trip","site_detail_url":"https://comicvine.gamespot.com/road-trip/4045-56759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56771/","id":56771,"name":"Riddle Me That","site_detail_url":"https://comicvine.gamespot.com/riddle-me-that/4045-56771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56778/","id":56778,"name":"Made of Wood","site_detail_url":"https://comicvine.gamespot.com/made-of-wood/4045-56778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56780/","id":56780,"name":"Soft Targets","site_detail_url":"https://comicvine.gamespot.com/soft-targets/4045-56780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56791/","id":56791,"name":"Final Execution","site_detail_url":"https://comicvine.gamespot.com/final-execution/4045-56791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56795/","id":56795,"name":"Before Watchmen","site_detail_url":"https://comicvine.gamespot.com/before-watchmen/4045-56795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56800/","id":56800,"name":"Ame-Comi Girls","site_detail_url":"https://comicvine.gamespot.com/ame-comi-girls/4045-56800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56803/","id":56803,"name":"Black Circle: Urban Knights","site_detail_url":"https://comicvine.gamespot.com/black-circle-urban-knights/4045-56803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56805/","id":56805,"name":"Hulk of Arabia","site_detail_url":"https://comicvine.gamespot.com/hulk-of-arabia/4045-56805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56807/","id":56807,"name":"Planet Red Hulk","site_detail_url":"https://comicvine.gamespot.com/planet-red-hulk/4045-56807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56817/","id":56817,"name":"Nefaria Protocols","site_detail_url":"https://comicvine.gamespot.com/nefaria-protocols/4045-56817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56818/","id":56818,"name":"The Widow","site_detail_url":"https://comicvine.gamespot.com/the-widow/4045-56818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56841/","id":56841,"name":"Savage Six","site_detail_url":"https://comicvine.gamespot.com/savage-six/4045-56841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56847/","id":56847,"name":"Divided We Fall","site_detail_url":"https://comicvine.gamespot.com/divided-we-fall/4045-56847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56852/","id":56852,"name":"The Road Back","site_detail_url":"https://comicvine.gamespot.com/the-road-back/4045-56852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56853/","id":56853,"name":"Death of the Family","site_detail_url":"https://comicvine.gamespot.com/death-of-the-family/4045-56853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56898/","id":56898,"name":"Six Arms Saga","site_detail_url":"https://comicvine.gamespot.com/six-arms-saga/4045-56898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56899/","id":56899,"name":"Contagion","site_detail_url":"https://comicvine.gamespot.com/contagion/4045-56899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56920/","id":56920,"name":"Futures Imperfect","site_detail_url":"https://comicvine.gamespot.com/futures-imperfect/4045-56920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56923/","id":56923,"name":"Nebula/Skrull Saga","site_detail_url":"https://comicvine.gamespot.com/nebulaskrull-saga/4045-56923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56937/","id":56937,"name":"H'el on Earth","site_detail_url":"https://comicvine.gamespot.com/hel-on-earth/4045-56937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56947/","id":56947,"name":"Eternals Saga","site_detail_url":"https://comicvine.gamespot.com/eternals-saga/4045-56947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56950/","id":56950,"name":"The Clone Wars","site_detail_url":"https://comicvine.gamespot.com/the-clone-wars/4045-56950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56958/","id":56958,"name":"The Curse of the Constantines","site_detail_url":"https://comicvine.gamespot.com/the-curse-of-the-constantines/4045-56958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56960/","id":56960,"name":"Safety Behind Bars","site_detail_url":"https://comicvine.gamespot.com/safety-behind-bars/4045-56960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56971/","id":56971,"name":"Dogs of War","site_detail_url":"https://comicvine.gamespot.com/dogs-of-war/4045-56971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56975/","id":56975,"name":"Bride of Ultron","site_detail_url":"https://comicvine.gamespot.com/bride-of-ultron/4045-56975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56990/","id":56990,"name":"Infinity Effect","site_detail_url":"https://comicvine.gamespot.com/infinity-effect/4045-56990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56991/","id":56991,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/the-gift/4045-56991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56996/","id":56996,"name":"Great Jedi Purge","site_detail_url":"https://comicvine.gamespot.com/great-jedi-purge/4045-56996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57018/","id":57018,"name":"Marvel Universe vs.","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-vs/4045-57018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57028/","id":57028,"name":"Super/Bat","site_detail_url":"https://comicvine.gamespot.com/superbat/4045-57028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57029/","id":57029,"name":"Executive Extinction","site_detail_url":"https://comicvine.gamespot.com/executive-extinction/4045-57029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57037/","id":57037,"name":"Trial of the Watcher","site_detail_url":"https://comicvine.gamespot.com/trial-of-the-watcher/4045-57037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57046/","id":57046,"name":"Things Fall Apart","site_detail_url":"https://comicvine.gamespot.com/things-fall-apart/4045-57046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57053/","id":57053,"name":"Target Snake Eyes","site_detail_url":"https://comicvine.gamespot.com/target-snake-eyes/4045-57053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57054/","id":57054,"name":"The God Butcher","site_detail_url":"https://comicvine.gamespot.com/the-god-butcher/4045-57054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57085/","id":57085,"name":"The Original Clone Saga","site_detail_url":"https://comicvine.gamespot.com/the-original-clone-saga/4045-57085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57130/","id":57130,"name":"Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agent-of-s-h-i-e-l-d/4045-57130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57141/","id":57141,"name":"Hellfire and Brimstone","site_detail_url":"https://comicvine.gamespot.com/hellfire-and-brimstone/4045-57141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57169/","id":57169,"name":"Prey","site_detail_url":"https://comicvine.gamespot.com/prey/4045-57169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57191/","id":57191,"name":"The Good and The Famous","site_detail_url":"https://comicvine.gamespot.com/the-good-and-the-famous/4045-57191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57208/","id":57208,"name":"Rage Against the Machine","site_detail_url":"https://comicvine.gamespot.com/rage-against-the-machine/4045-57208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57209/","id":57209,"name":"Legacy","site_detail_url":"https://comicvine.gamespot.com/legacy/4045-57209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57215/","id":57215,"name":"Thy Kingdom Come","site_detail_url":"https://comicvine.gamespot.com/thy-kingdom-come/4045-57215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57223/","id":57223,"name":"Forever Evil","site_detail_url":"https://comicvine.gamespot.com/forever-evil/4045-57223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57227/","id":57227,"name":"Killing Machine","site_detail_url":"https://comicvine.gamespot.com/killing-machine/4045-57227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57248/","id":57248,"name":"Punk Hazard Arc","site_detail_url":"https://comicvine.gamespot.com/punk-hazard-arc/4045-57248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57261/","id":57261,"name":"Rules of Engagement","site_detail_url":"https://comicvine.gamespot.com/rules-of-engagement/4045-57261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57269/","id":57269,"name":"The Deadpool Killogy","site_detail_url":"https://comicvine.gamespot.com/the-deadpool-killogy/4045-57269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57279/","id":57279,"name":"The Enemy Within","site_detail_url":"https://comicvine.gamespot.com/the-enemy-within/4045-57279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57287/","id":57287,"name":"Do You Understand These Rights?","site_detail_url":"https://comicvine.gamespot.com/do-you-understand-these-rights/4045-57287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57299/","id":57299,"name":"Chūnin Exam Arc","site_detail_url":"https://comicvine.gamespot.com/chunin-exam-arc/4045-57299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57319/","id":57319,"name":"World War X","site_detail_url":"https://comicvine.gamespot.com/world-war-x/4045-57319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57389/","id":57389,"name":"Freeze Me With Your Kiss","site_detail_url":"https://comicvine.gamespot.com/freeze-me-with-your-kiss/4045-57389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57397/","id":57397,"name":"As the Crow Flies","site_detail_url":"https://comicvine.gamespot.com/as-the-crow-flies/4045-57397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57419/","id":57419,"name":"Dark Cybertron","site_detail_url":"https://comicvine.gamespot.com/dark-cybertron/4045-57419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57432/","id":57432,"name":"Spider-Man No More","site_detail_url":"https://comicvine.gamespot.com/spider-man-no-more/4045-57432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57455/","id":57455,"name":"Countdown To Chaos","site_detail_url":"https://comicvine.gamespot.com/countdown-to-chaos/4045-57455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57456/","id":57456,"name":"The Return of Queen Chrysalis","site_detail_url":"https://comicvine.gamespot.com/the-return-of-queen-chrysalis/4045-57456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57460/","id":57460,"name":"Savarese","site_detail_url":"https://comicvine.gamespot.com/savarese/4045-57460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57491/","id":57491,"name":"Set the Controls For the Heart of the Sun","site_detail_url":"https://comicvine.gamespot.com/set-the-controls-for-the-heart-of-the-sun/4045-57491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57522/","id":57522,"name":"The Black Room","site_detail_url":"https://comicvine.gamespot.com/the-black-room/4045-57522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57539/","id":57539,"name":"Rise","site_detail_url":"https://comicvine.gamespot.com/rise/4045-57539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57579/","id":57579,"name":"Blood Legacy","site_detail_url":"https://comicvine.gamespot.com/blood-legacy/4045-57579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57615/","id":57615,"name":"Age of Darkness","site_detail_url":"https://comicvine.gamespot.com/age-of-darkness/4045-57615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57616/","id":57616,"name":"The Dark Spiral","site_detail_url":"https://comicvine.gamespot.com/the-dark-spiral/4045-57616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57634/","id":57634,"name":"The Archie's Rockin' World Tour!","site_detail_url":"https://comicvine.gamespot.com/the-archie-s-rockin-world-tour/4045-57634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57682/","id":57682,"name":"Endangered Species","site_detail_url":"https://comicvine.gamespot.com/endangered-species/4045-57682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57696/","id":57696,"name":"Code Icarus","site_detail_url":"https://comicvine.gamespot.com/code-icarus/4045-57696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57727/","id":57727,"name":"Destro Must Die","site_detail_url":"https://comicvine.gamespot.com/destro-must-die/4045-57727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57748/","id":57748,"name":"Eternal Emperor","site_detail_url":"https://comicvine.gamespot.com/eternal-emperor/4045-57748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57749/","id":57749,"name":"Lost Children","site_detail_url":"https://comicvine.gamespot.com/lost-children/4045-57749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57755/","id":57755,"name":"Year One: Born to Run","site_detail_url":"https://comicvine.gamespot.com/year-one-born-to-run/4045-57755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57783/","id":57783,"name":"Kozaki","site_detail_url":"https://comicvine.gamespot.com/kozaki/4045-57783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57784/","id":57784,"name":"Iron Shadows in the Moon","site_detail_url":"https://comicvine.gamespot.com/iron-shadows-in-the-moon/4045-57784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57787/","id":57787,"name":"Ghosts","site_detail_url":"https://comicvine.gamespot.com/ghosts/4045-57787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57791/","id":57791,"name":"Shadow of Ra Moon","site_detail_url":"https://comicvine.gamespot.com/shadow-of-ra-moon/4045-57791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57816/","id":57816,"name":"The Magician","site_detail_url":"https://comicvine.gamespot.com/the-magician/4045-57816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57830/","id":57830,"name":"Blackhawk Down","site_detail_url":"https://comicvine.gamespot.com/blackhawk-down/4045-57830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57834/","id":57834,"name":"My Brother, My Enemy","site_detail_url":"https://comicvine.gamespot.com/my-brother-my-enemy/4045-57834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57835/","id":57835,"name":"The Ahakista Gambit","site_detail_url":"https://comicvine.gamespot.com/the-ahakista-gambit/4045-57835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57863/","id":57863,"name":"First Person Shooter","site_detail_url":"https://comicvine.gamespot.com/first-person-shooter/4045-57863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57865/","id":57865,"name":"Justice Lords Beyond","site_detail_url":"https://comicvine.gamespot.com/justice-lords-beyond/4045-57865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57872/","id":57872,"name":"Fox and Hounds","site_detail_url":"https://comicvine.gamespot.com/fox-and-hounds/4045-57872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57880/","id":57880,"name":"Dressrosa Arc ","site_detail_url":"https://comicvine.gamespot.com/dressrosa-arc/4045-57880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57899/","id":57899,"name":"Futures End","site_detail_url":"https://comicvine.gamespot.com/futures-end/4045-57899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57905/","id":57905,"name":"Wonderland (Zenescope)","site_detail_url":"https://comicvine.gamespot.com/wonderland-zenescope/4045-57905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57911/","id":57911,"name":"Uprising","site_detail_url":"https://comicvine.gamespot.com/uprising/4045-57911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57921/","id":57921,"name":"Immaculata","site_detail_url":"https://comicvine.gamespot.com/immaculata/4045-57921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57929/","id":57929,"name":"Merlin Stone","site_detail_url":"https://comicvine.gamespot.com/merlin-stone/4045-57929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57981/","id":57981,"name":"Hidden In Plain Sight","site_detail_url":"https://comicvine.gamespot.com/hidden-in-plain-sight/4045-57981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58019/","id":58019,"name":"The Search For Ray Palmer","site_detail_url":"https://comicvine.gamespot.com/the-search-for-ray-palmer/4045-58019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58023/","id":58023,"name":"Armor Hunters","site_detail_url":"https://comicvine.gamespot.com/armor-hunters/4045-58023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58087/","id":58087,"name":"Book 3: The Land of Do-As-You-Please","site_detail_url":"https://comicvine.gamespot.com/book-3-the-land-of-do-as-you-please/4045-58087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58113/","id":58113,"name":"Axis","site_detail_url":"https://comicvine.gamespot.com/axis/4045-58113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58131/","id":58131,"name":"Time Runs Out","site_detail_url":"https://comicvine.gamespot.com/time-runs-out/4045-58131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58174/","id":58174,"name":"The Man Who Quit Being Human","site_detail_url":"https://comicvine.gamespot.com/the-man-who-quit-being-human/4045-58174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58266/","id":58266,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4045-58266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58381/","id":58381,"name":"Infinite Icons of the Endless Epic","site_detail_url":"https://comicvine.gamespot.com/infinite-icons-of-the-endless-epic/4045-58381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58412/","id":58412,"name":"Blood Gods","site_detail_url":"https://comicvine.gamespot.com/blood-gods/4045-58412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58446/","id":58446,"name":"Truth","site_detail_url":"https://comicvine.gamespot.com/truth/4045-58446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58453/","id":58453,"name":"Vendetta","site_detail_url":"https://comicvine.gamespot.com/vendetta/4045-58453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58454/","id":58454,"name":"Swords of Sorrow","site_detail_url":"https://comicvine.gamespot.com/swords-of-sorrow/4045-58454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58459/","id":58459,"name":"Last Days Of...","site_detail_url":"https://comicvine.gamespot.com/last-days-of/4045-58459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58462/","id":58462,"name":"Secret Wars: Battleworld","site_detail_url":"https://comicvine.gamespot.com/secret-wars-battleworld/4045-58462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58477/","id":58477,"name":"Green","site_detail_url":"https://comicvine.gamespot.com/green/4045-58477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58493/","id":58493,"name":"Of Ice and Fire","site_detail_url":"https://comicvine.gamespot.com/of-ice-and-fire/4045-58493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58494/","id":58494,"name":"Power and Glory","site_detail_url":"https://comicvine.gamespot.com/power-and-glory/4045-58494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58499/","id":58499,"name":"Le maître des fauves","site_detail_url":"https://comicvine.gamespot.com/le-maitre-des-fauves/4045-58499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58503/","id":58503,"name":"Munchkin Movie Night","site_detail_url":"https://comicvine.gamespot.com/munchkin-movie-night/4045-58503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58536/","id":58536,"name":"The Trial of Marc Spector","site_detail_url":"https://comicvine.gamespot.com/the-trial-of-marc-spector/4045-58536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58591/","id":58591,"name":"The Cat Came Back","site_detail_url":"https://comicvine.gamespot.com/the-cat-came-back/4045-58591/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58592/","id":58592,"name":"I Spy Something...Boo!","site_detail_url":"https://comicvine.gamespot.com/i-spy-somethingboo/4045-58592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58603/","id":58603,"name":"Home Again","site_detail_url":"https://comicvine.gamespot.com/home-again/4045-58603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58622/","id":58622,"name":"Scare Tactics","site_detail_url":"https://comicvine.gamespot.com/scare-tactics/4045-58622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58686/","id":58686,"name":"BFF","site_detail_url":"https://comicvine.gamespot.com/bff/4045-58686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58757/","id":58757,"name":"Cobra Nation","site_detail_url":"https://comicvine.gamespot.com/cobra-nation/4045-58757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58793/","id":58793,"name":"Authority Prime","site_detail_url":"https://comicvine.gamespot.com/authority-prime/4045-58793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58815/","id":58815,"name":"L'ermite","site_detail_url":"https://comicvine.gamespot.com/lermite/4045-58815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58830/","id":58830,"name":"Le vagabond des dunes","site_detail_url":"https://comicvine.gamespot.com/le-vagabond-des-dunes/4045-58830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58839/","id":58839,"name":"La lettre","site_detail_url":"https://comicvine.gamespot.com/la-lettre/4045-58839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58858/","id":58858,"name":"Here's Negan!","site_detail_url":"https://comicvine.gamespot.com/heres-negan/4045-58858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58868/","id":58868,"name":"There Is No High Road","site_detail_url":"https://comicvine.gamespot.com/there-is-no-high-road/4045-58868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58890/","id":58890,"name":"To Get Christie Blaze","site_detail_url":"https://comicvine.gamespot.com/to-get-christie-blaze/4045-58890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58914/","id":58914,"name":"La Faille","site_detail_url":"https://comicvine.gamespot.com/la-faille/4045-58914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58959/","id":58959,"name":"A Whole New World","site_detail_url":"https://comicvine.gamespot.com/a-whole-new-world/4045-58959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59022/","id":59022,"name":"The Last Flight of the Harbinger","site_detail_url":"https://comicvine.gamespot.com/the-last-flight-of-the-harbinger/4045-59022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59284/","id":59284,"name":"Purple","site_detail_url":"https://comicvine.gamespot.com/purple/4045-59284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59349/","id":59349,"name":"We Are the Streets","site_detail_url":"https://comicvine.gamespot.com/we-are-the-streets/4045-59349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59355/","id":59355,"name":"Greed Island Arc","site_detail_url":"https://comicvine.gamespot.com/greed-island-arc/4045-59355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59384/","id":59384,"name":"Escape From the Phantom Zone","site_detail_url":"https://comicvine.gamespot.com/escape-from-the-phantom-zone/4045-59384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59385/","id":59385,"name":"Rediscovery","site_detail_url":"https://comicvine.gamespot.com/rediscovery/4045-59385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59407/","id":59407,"name":"The Lute String","site_detail_url":"https://comicvine.gamespot.com/the-lute-string/4045-59407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59437/","id":59437,"name":"The Enemy Leading the Tempest","site_detail_url":"https://comicvine.gamespot.com/the-enemy-leading-the-tempest/4045-59437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59440/","id":59440,"name":"The Bodacious Butterfly Trail","site_detail_url":"https://comicvine.gamespot.com/the-bodacious-butterfly-trail/4045-59440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59443/","id":59443,"name":"Underworld","site_detail_url":"https://comicvine.gamespot.com/underworld/4045-59443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59465/","id":59465,"name":"Defiance","site_detail_url":"https://comicvine.gamespot.com/defiance/4045-59465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59474/","id":59474,"name":"Rise of Magic","site_detail_url":"https://comicvine.gamespot.com/rise-of-magic/4045-59474/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59488/","id":59488,"name":"The Enormous Profit","site_detail_url":"https://comicvine.gamespot.com/the-enormous-profit/4045-59488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59521/","id":59521,"name":"Summer of Lies","site_detail_url":"https://comicvine.gamespot.com/summer-of-lies/4045-59521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59542/","id":59542,"name":"The Lost Dimension","site_detail_url":"https://comicvine.gamespot.com/the-lost-dimension/4045-59542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59552/","id":59552,"name":"The Oz Effect","site_detail_url":"https://comicvine.gamespot.com/the-oz-effect/4045-59552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59572/","id":59572,"name":"Champions Reunited","site_detail_url":"https://comicvine.gamespot.com/champions-reunited/4045-59572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59575/","id":59575,"name":"Fire From Heaven","site_detail_url":"https://comicvine.gamespot.com/fire-from-heaven/4045-59575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59597/","id":59597,"name":"King For A Day","site_detail_url":"https://comicvine.gamespot.com/king-for-a-day/4045-59597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59608/","id":59608,"name":"Gwenom","site_detail_url":"https://comicvine.gamespot.com/gwenom/4045-59608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59624/","id":59624,"name":"The Rick Identity","site_detail_url":"https://comicvine.gamespot.com/the-rick-identity/4045-59624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59640/","id":59640,"name":"Crazy Runs In the Family","site_detail_url":"https://comicvine.gamespot.com/crazy-runs-in-the-family/4045-59640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59688/","id":59688,"name":"Family Reunion","site_detail_url":"https://comicvine.gamespot.com/family-reunion/4045-59688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59694/","id":59694,"name":"Ill-Gotten","site_detail_url":"https://comicvine.gamespot.com/ill-gotten/4045-59694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59717/","id":59717,"name":"New World Order","site_detail_url":"https://comicvine.gamespot.com/new-world-order/4045-59717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59719/","id":59719,"name":"The Return of Adam Warlock","site_detail_url":"https://comicvine.gamespot.com/the-return-of-adam-warlock/4045-59719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59726/","id":59726,"name":"No Surrender","site_detail_url":"https://comicvine.gamespot.com/no-surrender/4045-59726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59749/","id":59749,"name":"No Escape","site_detail_url":"https://comicvine.gamespot.com/no-escape/4045-59749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59754/","id":59754,"name":"Flash War","site_detail_url":"https://comicvine.gamespot.com/flash-war/4045-59754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59803/","id":59803,"name":"It Ain't Easy Being Green","site_detail_url":"https://comicvine.gamespot.com/it-aint-easy-being-green/4045-59803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59809/","id":59809,"name":"Genesis","site_detail_url":"https://comicvine.gamespot.com/genesis/4045-59809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59855/","id":59855,"name":"The Nativity","site_detail_url":"https://comicvine.gamespot.com/the-nativity/4045-59855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59888/","id":59888,"name":"Hunt For Wolverine","site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine/4045-59888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59956/","id":59956,"name":"The Death of Zombie Tramp","site_detail_url":"https://comicvine.gamespot.com/the-death-of-zombie-tramp/4045-59956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59963/","id":59963,"name":"Infinity Wars","site_detail_url":"https://comicvine.gamespot.com/infinity-wars/4045-59963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59964/","id":59964,"name":"Hope Dies","site_detail_url":"https://comicvine.gamespot.com/hope-dies/4045-59964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59978/","id":59978,"name":"Back To Basics","site_detail_url":"https://comicvine.gamespot.com/back-to-basics/4045-59978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59992/","id":59992,"name":"The Time of Your Life","site_detail_url":"https://comicvine.gamespot.com/the-time-of-your-life/4045-59992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60014/","id":60014,"name":"Sink Atlantis!","site_detail_url":"https://comicvine.gamespot.com/sink-atlantis/4045-60014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60048/","id":60048,"name":"Deface the Face","site_detail_url":"https://comicvine.gamespot.com/deface-the-face/4045-60048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60066/","id":60066,"name":"King of Nothing","site_detail_url":"https://comicvine.gamespot.com/king-of-nothing/4045-60066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60069/","id":60069,"name":"The Battle for Moltic","site_detail_url":"https://comicvine.gamespot.com/the-battle-for-moltic/4045-60069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60070/","id":60070,"name":"Return to Krypton ","site_detail_url":"https://comicvine.gamespot.com/return-to-krypton/4045-60070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60071/","id":60071,"name":"Deathstroke: Arkham","site_detail_url":"https://comicvine.gamespot.com/deathstroke-arkham/4045-60071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60107/","id":60107,"name":"The Tyrant Wing","site_detail_url":"https://comicvine.gamespot.com/the-tyrant-wing/4045-60107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60108/","id":60108,"name":"La Bel Dame Sans Merci","site_detail_url":"https://comicvine.gamespot.com/la-bel-dame-sans-merci/4045-60108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60109/","id":60109,"name":"Minor Disasters!","site_detail_url":"https://comicvine.gamespot.com/minor-disasters/4045-60109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60145/","id":60145,"name":"The Life & Death of Conan","site_detail_url":"https://comicvine.gamespot.com/the-life-and-death-of-conan/4045-60145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60146/","id":60146,"name":"Gambit & Rogue Forever","site_detail_url":"https://comicvine.gamespot.com/gambit-and-rogue-forever/4045-60146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60159/","id":60159,"name":"Hero","site_detail_url":"https://comicvine.gamespot.com/hero/4045-60159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60174/","id":60174,"name":"Hollywood","site_detail_url":"https://comicvine.gamespot.com/hollywood/4045-60174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60176/","id":60176,"name":"Re-Entry","site_detail_url":"https://comicvine.gamespot.com/re-entry/4045-60176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60181/","id":60181,"name":"A Song of Crows","site_detail_url":"https://comicvine.gamespot.com/a-song-of-crows/4045-60181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60197/","id":60197,"name":"The Scourging of Shu-Torun","site_detail_url":"https://comicvine.gamespot.com/the-scourging-of-shu-torun/4045-60197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60204/","id":60204,"name":"But You Can't Hide","site_detail_url":"https://comicvine.gamespot.com/but-you-cant-hide/4045-60204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60294/","id":60294,"name":"Necessary Evil","site_detail_url":"https://comicvine.gamespot.com/necessary-evil/4045-60294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60340/","id":60340,"name":"The Fear Eaters","site_detail_url":"https://comicvine.gamespot.com/the-fear-eaters/4045-60340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60346/","id":60346,"name":"The Witching War","site_detail_url":"https://comicvine.gamespot.com/the-witching-war/4045-60346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60347/","id":60347,"name":"Generation Outlaw","site_detail_url":"https://comicvine.gamespot.com/generation-outlaw/4045-60347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60402/","id":60402,"name":"The Judge Child","site_detail_url":"https://comicvine.gamespot.com/the-judge-child/4045-60402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60403/","id":60403,"name":"A Dead Girl In Europe","site_detail_url":"https://comicvine.gamespot.com/a-dead-girl-in-europe/4045-60403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60435/","id":60435,"name":"Strange Aeons","site_detail_url":"https://comicvine.gamespot.com/strange-aeons/4045-60435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60495/","id":60495,"name":"Dark Heart of the Sith","site_detail_url":"https://comicvine.gamespot.com/dark-heart-of-the-sith/4045-60495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60549/","id":60549,"name":"Hate Box","site_detail_url":"https://comicvine.gamespot.com/hate-box/4045-60549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60582/","id":60582,"name":"The Age of Khonshu","site_detail_url":"https://comicvine.gamespot.com/the-age-of-khonshu/4045-60582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60629/","id":60629,"name":"Unity","site_detail_url":"https://comicvine.gamespot.com/unity/4045-60629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60669/","id":60669,"name":"Into the Fire","site_detail_url":"https://comicvine.gamespot.com/into-the-fire/4045-60669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60684/","id":60684,"name":"Fallen Order","site_detail_url":"https://comicvine.gamespot.com/fallen-order/4045-60684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60690/","id":60690,"name":"King In Black","site_detail_url":"https://comicvine.gamespot.com/king-in-black/4045-60690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60715/","id":60715,"name":"Future State","site_detail_url":"https://comicvine.gamespot.com/future-state/4045-60715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60795/","id":60795,"name":"Cross Country","site_detail_url":"https://comicvine.gamespot.com/cross-country/4045-60795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60802/","id":60802,"name":"Hellfire Gala","site_detail_url":"https://comicvine.gamespot.com/hellfire-gala/4045-60802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60816/","id":60816,"name":"The Clone Saga","site_detail_url":"https://comicvine.gamespot.com/the-clone-saga/4045-60816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60817/","id":60817,"name":"Zeti Hunt","site_detail_url":"https://comicvine.gamespot.com/zeti-hunt/4045-60817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60820/","id":60820,"name":"Monster World","site_detail_url":"https://comicvine.gamespot.com/monster-world/4045-60820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60871/","id":60871,"name":"Beginning of the End","site_detail_url":"https://comicvine.gamespot.com/beginning-of-the-end/4045-60871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60914/","id":60914,"name":"Crimson Reign","site_detail_url":"https://comicvine.gamespot.com/crimson-reign/4045-60914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60919/","id":60919,"name":"The Asakusa Arc","site_detail_url":"https://comicvine.gamespot.com/the-asakusa-arc/4045-60919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60968/","id":60968,"name":"Four Dark Judges","site_detail_url":"https://comicvine.gamespot.com/four-dark-judges/4045-60968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60983/","id":60983,"name":"Reign of X","site_detail_url":"https://comicvine.gamespot.com/reign-of-x/4045-60983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60984/","id":60984,"name":"Destiny of X","site_detail_url":"https://comicvine.gamespot.com/destiny-of-x/4045-60984/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2129/","id":2129,"name":"Fantastic Four Annual","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-annual/4050-2129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2128/","id":2128,"name":"The Avengers","site_detail_url":"https://comicvine.gamespot.com/the-avengers/4050-2128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2007/","id":2007,"name":"Tales of Suspense","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense/4050-2007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2008/","id":2008,"name":"Tales to Astonish","site_detail_url":"https://comicvine.gamespot.com/tales-to-astonish/4050-2008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2237/","id":2237,"name":"Sgt. Fury Annual","site_detail_url":"https://comicvine.gamespot.com/sgt-fury-annual/4050-2237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2354/","id":2354,"name":"Not Brand Echh","site_detail_url":"https://comicvine.gamespot.com/not-brand-echh/4050-2354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2410/","id":2410,"name":"Nick Fury, Agent of SHIELD","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield/4050-2410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2407/","id":2407,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-2407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2400/","id":2400,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-2400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2045/","id":2045,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4050-2045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2401/","id":2401,"name":"Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/captain-marvel/4050-2401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2413/","id":2413,"name":"Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/sub-mariner/4050-2413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2133/","id":2133,"name":"The X-Men","site_detail_url":"https://comicvine.gamespot.com/the-x-men/4050-2133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2411/","id":2411,"name":"The Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/the-silver-surfer/4050-2411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2510/","id":2510,"name":"Captain America Annual","site_detail_url":"https://comicvine.gamespot.com/captain-america-annual/4050-2510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2406/","id":2406,"name":"The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk/4050-2406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6724/","id":6724,"name":"Sgt. Fury","site_detail_url":"https://comicvine.gamespot.com/sgt-fury/4050-6724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2470/","id":2470,"name":"Astonishing Tales","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales/4050-2470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2642/","id":2642,"name":"SHIELD","site_detail_url":"https://comicvine.gamespot.com/shield/4050-2642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2580/","id":2580,"name":"Shanna the She-Devil","site_detail_url":"https://comicvine.gamespot.com/shanna-the-she-devil/4050-2580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2353/","id":2353,"name":"Marvel Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes/4050-2353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2576/","id":2576,"name":"Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up/4050-2576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2639/","id":2639,"name":"Marvel Double Feature","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature/4050-2639/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2512/","id":2512,"name":"Creatures on the Loose","site_detail_url":"https://comicvine.gamespot.com/creatures-on-the-loose/4050-2512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2190/","id":2190,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4050-2190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2575/","id":2575,"name":"Marvel Premiere","site_detail_url":"https://comicvine.gamespot.com/marvel-premiere/4050-2575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2858/","id":2858,"name":"The Eternals","site_detail_url":"https://comicvine.gamespot.com/the-eternals/4050-2858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2516/","id":2516,"name":"Marvel Spotlight","site_detail_url":"https://comicvine.gamespot.com/marvel-spotlight/4050-2516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2569/","id":2569,"name":"The Defenders","site_detail_url":"https://comicvine.gamespot.com/the-defenders/4050-2569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2696/","id":2696,"name":"Marvel Two-in-One","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one/4050-2696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2901/","id":2901,"name":"Godzilla","site_detail_url":"https://comicvine.gamespot.com/godzilla/4050-2901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2910/","id":2910,"name":"Ms. Marvel","site_detail_url":"https://comicvine.gamespot.com/ms-marvel/4050-2910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2960/","id":2960,"name":"Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/spider-woman/4050-2960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2127/","id":2127,"name":"The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man/4050-2127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2865/","id":2865,"name":"Marvel Two-in-One Annual","site_detail_url":"https://comicvine.gamespot.com/marvel-two-in-one-annual/4050-2865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2918/","id":2918,"name":"What If?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-2918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3008/","id":3008,"name":"Micronauts","site_detail_url":"https://comicvine.gamespot.com/micronauts/4050-3008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3010/","id":3010,"name":"Rom","site_detail_url":"https://comicvine.gamespot.com/rom/4050-3010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2782/","id":2782,"name":"Super-Villain Team-Up","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up/4050-2782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3053/","id":3053,"name":"The Savage She-Hulk","site_detail_url":"https://comicvine.gamespot.com/the-savage-she-hulk/4050-3053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3082/","id":3082,"name":"Bizarre Adventures","site_detail_url":"https://comicvine.gamespot.com/bizarre-adventures/4050-3082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2870/","id":2870,"name":"The Spectacular Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-spectacular-spider-man/4050-2870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3143/","id":3143,"name":"Marvel Fanfare","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare/4050-3143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3227/","id":3227,"name":"The Kree-Skrull War Starring the Avengers","site_detail_url":"https://comicvine.gamespot.com/the-kree-skrull-war-starring-the-avengers/4050-3227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3225/","id":3225,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/hawkeye/4050-3225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2294/","id":2294,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4050-2294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3235/","id":3235,"name":"Nick Fury, Agent of SHIELD","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield/4050-3235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3347/","id":3347,"name":"Jack of Hearts","site_detail_url":"https://comicvine.gamespot.com/jack-of-hearts/4050-3347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3092/","id":3092,"name":"The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men/4050-3092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3372/","id":3372,"name":"West Coast Avengers","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers/4050-3372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3521/","id":3521,"name":"West Coast Avengers","site_detail_url":"https://comicvine.gamespot.com/west-coast-avengers/4050-3521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3630/","id":3630,"name":"Elektra: Assassin","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin/4050-3630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2860/","id":2860,"name":"The Incredible Hulk Annual","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-annual/4050-2860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2905/","id":2905,"name":"Iron Man Annual","site_detail_url":"https://comicvine.gamespot.com/iron-man-annual/4050-2905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3859/","id":3859,"name":"Solo Avengers","site_detail_url":"https://comicvine.gamespot.com/solo-avengers/4050-3859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4232/","id":4232,"name":"Nick Fury, Agent of SHIELD","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield/4050-4232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4249/","id":4249,"name":"What If...?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-4249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4242/","id":4242,"name":"Quasar","site_detail_url":"https://comicvine.gamespot.com/quasar/4050-4242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3855/","id":3855,"name":"The Punisher","site_detail_url":"https://comicvine.gamespot.com/the-punisher/4050-3855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4350/","id":4350,"name":"Damage Control","site_detail_url":"https://comicvine.gamespot.com/damage-control/4050-4350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3851/","id":3851,"name":"Marvel Masterworks","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks/4050-3851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4064/","id":4064,"name":"The Punisher Annual","site_detail_url":"https://comicvine.gamespot.com/the-punisher-annual/4050-4064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4596/","id":4596,"name":"The Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/the-infinity-gauntlet/4050-4596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3657/","id":3657,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-3657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4604/","id":4604,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-4604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4822/","id":4822,"name":"X-Force Annual","site_detail_url":"https://comicvine.gamespot.com/x-force-annual/4050-4822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4771/","id":4771,"name":"The Adventures of the Thing","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-thing/4050-4771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4250/","id":4250,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-4250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4058/","id":4058,"name":"Marvel Comics Presents","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents/4050-4058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5055/","id":5055,"name":"Thunderstrike","site_detail_url":"https://comicvine.gamespot.com/thunderstrike/4050-5055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5313/","id":5313,"name":"Marvels","site_detail_url":"https://comicvine.gamespot.com/marvels/4050-5313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4993/","id":4993,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-4993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5312/","id":5312,"name":"Marvel Super-Heroes Megazine","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-megazine/4050-5312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5545/","id":5545,"name":"Fury of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/fury-of-shield/4050-5545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4049/","id":4049,"name":"Doctor Strange, Sorcerer Supreme","site_detail_url":"https://comicvine.gamespot.com/doctor-strange-sorcerer-supreme/4050-4049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5776/","id":5776,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-5776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5787/","id":5787,"name":"Mystique & Sabretooth","site_detail_url":"https://comicvine.gamespot.com/mystique-sabretooth/4050-5787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5788/","id":5788,"name":"The Sensational Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man/4050-5788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5561/","id":5561,"name":"Spider-Man Team-Up","site_detail_url":"https://comicvine.gamespot.com/spider-man-team-up/4050-5561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6003/","id":6003,"name":"Heroes for Hire","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire/4050-6003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6020/","id":6020,"name":"Thunderbolts","site_detail_url":"https://comicvine.gamespot.com/thunderbolts/4050-6020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6009/","id":6009,"name":"Kitty Pryde, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/kitty-pryde-agent-of-shield/4050-6009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6208/","id":6208,"name":"Conspiracy","site_detail_url":"https://comicvine.gamespot.com/conspiracy/4050-6208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6006/","id":6006,"name":"Ka-Zar","site_detail_url":"https://comicvine.gamespot.com/ka-zar/4050-6006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6206/","id":6206,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-6206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6214/","id":6214,"name":"Iron Fist","site_detail_url":"https://comicvine.gamespot.com/iron-fist/4050-6214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6215/","id":6215,"name":"Iron Man: The Iron Age","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-iron-age/4050-6215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6217/","id":6217,"name":"Mutant X","site_detail_url":"https://comicvine.gamespot.com/mutant-x/4050-6217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6205/","id":6205,"name":"A-Next","site_detail_url":"https://comicvine.gamespot.com/a-next/4050-6205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6218/","id":6218,"name":"Spider-Girl","site_detail_url":"https://comicvine.gamespot.com/spider-girl/4050-6218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6211/","id":6211,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4050-6211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6355/","id":6355,"name":"Fantastic Five","site_detail_url":"https://comicvine.gamespot.com/fantastic-five/4050-6355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6351/","id":6351,"name":"Avengers United They Stand","site_detail_url":"https://comicvine.gamespot.com/avengers-united-they-stand/4050-6351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3335/","id":3335,"name":"Captain America Special Edition","site_detail_url":"https://comicvine.gamespot.com/captain-america-special-edition/4050-3335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5300/","id":5300,"name":"Generation X","site_detail_url":"https://comicvine.gamespot.com/generation-x/4050-5300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6558/","id":6558,"name":"Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk/4050-6558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3626/","id":3626,"name":"Classic X-Men","site_detail_url":"https://comicvine.gamespot.com/classic-x-men/4050-3626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4803/","id":4803,"name":"Nomad","site_detail_url":"https://comicvine.gamespot.com/nomad/4050-4803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6742/","id":6742,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-6742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6779/","id":6779,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4050-6779/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4079/","id":4079,"name":"What The--?!","site_detail_url":"https://comicvine.gamespot.com/what-the/4050-4079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4391/","id":4391,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4050-4391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7084/","id":7084,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-7084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7166/","id":7166,"name":"Black Widow","site_detail_url":"https://comicvine.gamespot.com/black-widow/4050-7166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7167/","id":7167,"name":"Black Widow","site_detail_url":"https://comicvine.gamespot.com/black-widow/4050-7167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7257/","id":7257,"name":"Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man/4050-7257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7258/","id":7258,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-7258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5048/","id":5048,"name":"Spider-Man Unlimited","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited/4050-5048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3370/","id":3370,"name":"The Transformers","site_detail_url":"https://comicvine.gamespot.com/the-transformers/4050-3370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5336/","id":5336,"name":"War Machine","site_detail_url":"https://comicvine.gamespot.com/war-machine/4050-5336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4421/","id":4421,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4050-4421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4605/","id":4605,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-4605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6354/","id":6354,"name":"Earth X","site_detail_url":"https://comicvine.gamespot.com/earth-x/4050-6354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4052/","id":4052,"name":"Excalibur","site_detail_url":"https://comicvine.gamespot.com/excalibur/4050-4052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4397/","id":4397,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4050-4397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9108/","id":9108,"name":"Fury","site_detail_url":"https://comicvine.gamespot.com/fury/4050-9108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9109/","id":9109,"name":"Fury/Agent 13","site_detail_url":"https://comicvine.gamespot.com/furyagent-13/4050-9109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9115/","id":9115,"name":"Iron Fist: Wolverine","site_detail_url":"https://comicvine.gamespot.com/iron-fist-wolverine/4050-9115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4235/","id":4235,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-4235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3237/","id":3237,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4810/","id":4810,"name":"Silver Sable and the Wild Pack","site_detail_url":"https://comicvine.gamespot.com/silver-sable-and-the-wild-pack/4050-4810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7515/","id":7515,"name":"Ultimate Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel-team-up/4050-7515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9155/","id":9155,"name":"U.S. War Machine","site_detail_url":"https://comicvine.gamespot.com/us-war-machine/4050-9155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5322/","id":5322,"name":"Sabretooth Classic","site_detail_url":"https://comicvine.gamespot.com/sabretooth-classic/4050-5322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4066/","id":4066,"name":"The Punisher War Journal","site_detail_url":"https://comicvine.gamespot.com/the-punisher-war-journal/4050-4066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4589/","id":4589,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4050-4589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4590/","id":4590,"name":"Deathlok Special","site_detail_url":"https://comicvine.gamespot.com/deathlok-special/4050-4590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2631/","id":2631,"name":"Crazy","site_detail_url":"https://comicvine.gamespot.com/crazy/4050-2631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9462/","id":9462,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4050-9462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9466/","id":9466,"name":"Marvel Boy","site_detail_url":"https://comicvine.gamespot.com/marvel-boy/4050-9466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9133/","id":9133,"name":"The Punisher","site_detail_url":"https://comicvine.gamespot.com/the-punisher/4050-9133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9541/","id":9541,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4050-9541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9546/","id":9546,"name":"Marvel Mangaverse","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse/4050-9546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9624/","id":9624,"name":"Daredevil Visionaries: Frank Miller","site_detail_url":"https://comicvine.gamespot.com/daredevil-visionaries-frank-miller/4050-9624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4404/","id":4404,"name":"Marvel Super-Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes/4050-4404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2577/","id":2577,"name":"Marvel Triple Action","site_detail_url":"https://comicvine.gamespot.com/marvel-triple-action/4050-2577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5066/","id":5066,"name":"X-Men Unlimited","site_detail_url":"https://comicvine.gamespot.com/x-men-unlimited/4050-5066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10746/","id":10746,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-10746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10812/","id":10812,"name":"Wolverine/Captain America","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america/4050-10812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6983/","id":6983,"name":"Exiles","site_detail_url":"https://comicvine.gamespot.com/exiles/4050-6983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6209/","id":6209,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4050-6209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10973/","id":10973,"name":"Captain America & the Falcon","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-falcon/4050-10973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3490/","id":3490,"name":"The Marvel Saga The Official History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-marvel-saga-the-official-history-of-the-marvel/4050-3490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4061/","id":4061,"name":"Nick Fury vs. S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-shield/4050-4061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11006/","id":11006,"name":"Warlock","site_detail_url":"https://comicvine.gamespot.com/warlock/4050-11006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11015/","id":11015,"name":"Avengers Forever","site_detail_url":"https://comicvine.gamespot.com/avengers-forever/4050-11015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10809/","id":10809,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-10809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11066/","id":11066,"name":"Marvel Knights Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man/4050-11066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11067/","id":11067,"name":"The Adventures of the X-Men","site_detail_url":"https://comicvine.gamespot.com/the-adventures-of-the-x-men/4050-11067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11069/","id":11069,"name":"Spectacular Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man/4050-11069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11090/","id":11090,"name":"Fantastic Four: Foes","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes/4050-11090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11182/","id":11182,"name":"Over the Edge","site_detail_url":"https://comicvine.gamespot.com/over-the-edge/4050-11182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9088/","id":9088,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-9088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11293/","id":11293,"name":"Identity Disc","site_detail_url":"https://comicvine.gamespot.com/identity-disc/4050-11293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2351/","id":2351,"name":"Daredevil Annual","site_detail_url":"https://comicvine.gamespot.com/daredevil-annual/4050-2351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6504/","id":6504,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-6504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3011/","id":3011,"name":"Shogun Warriors","site_detail_url":"https://comicvine.gamespot.com/shogun-warriors/4050-3011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10379/","id":10379,"name":"Ultimate Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four/4050-10379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11497/","id":11497,"name":"New Avengers","site_detail_url":"https://comicvine.gamespot.com/new-avengers/4050-11497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11499/","id":11499,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-11499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11801/","id":11801,"name":"Deadline","site_detail_url":"https://comicvine.gamespot.com/deadline/4050-11801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-12049/","id":12049,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m/4050-12049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-17990/","id":17990,"name":"Ms. Marvel","site_detail_url":"https://comicvine.gamespot.com/ms-marvel/4050-17990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-17991/","id":17991,"name":"Civil War: Young Avengers & Runaways","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways/4050-17991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18023/","id":18023,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/civil-war/4050-18023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18024/","id":18024,"name":"Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up/4050-18024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18046/","id":18046,"name":"Ultimate Secret","site_detail_url":"https://comicvine.gamespot.com/ultimate-secret/4050-18046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18045/","id":18045,"name":"Ultimate Nightmare","site_detail_url":"https://comicvine.gamespot.com/ultimate-nightmare/4050-18045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18067/","id":18067,"name":"Ultimate Extinction","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction/4050-18067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11310/","id":11310,"name":"The Pulse","site_detail_url":"https://comicvine.gamespot.com/the-pulse/4050-11310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18070/","id":18070,"name":"Cable & Deadpool","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool/4050-18070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18109/","id":18109,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-18109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18128/","id":18128,"name":"Thunderbolts","site_detail_url":"https://comicvine.gamespot.com/thunderbolts/4050-18128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18130/","id":18130,"name":"Wolverine: Origins","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins/4050-18130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18078/","id":18078,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-x-men/4050-18078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11502/","id":11502,"name":"Black Panther","site_detail_url":"https://comicvine.gamespot.com/black-panther/4050-11502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18152/","id":18152,"name":"Punisher War Journal","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal/4050-18152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18155/","id":18155,"name":"White Tiger","site_detail_url":"https://comicvine.gamespot.com/white-tiger/4050-18155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18169/","id":18169,"name":"X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/x-men-annual/4050-18169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11872/","id":11872,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-11872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18174/","id":18174,"name":"GLX-Mas Special","site_detail_url":"https://comicvine.gamespot.com/glx-mas-special/4050-18174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18175/","id":18175,"name":"Fantastic Four: The End","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-end/4050-18175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18180/","id":18180,"name":"The New Avengers: Illuminati","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers-illuminati/4050-18180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18171/","id":18171,"name":"X-23: Target X","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x/4050-18171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18206/","id":18206,"name":"The Immortal Iron Fist","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist/4050-18206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18107/","id":18107,"name":"Silent War","site_detail_url":"https://comicvine.gamespot.com/silent-war/4050-18107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65743/","id":65743,"name":"Official Handbook of the Ultimate Marvel Universe: The Ultimates & X-Men 2005","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-ultimate-marvel-universe-/4050-65743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18220/","id":18220,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-18220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18227/","id":18227,"name":"The Irredeemable Ant-Man","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man/4050-18227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18126/","id":18126,"name":"All-New Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/all-new-official-handbook-of-the-marvel-universe-a/4050-18126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18239/","id":18239,"name":"The Mighty Avengers","site_detail_url":"https://comicvine.gamespot.com/the-mighty-avengers/4050-18239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18245/","id":18245,"name":"Civil War: Front Line","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line/4050-18245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18234/","id":18234,"name":"Secret War","site_detail_url":"https://comicvine.gamespot.com/secret-war/4050-18234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18258/","id":18258,"name":"Civil War: The Confession","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-confession/4050-18258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18273/","id":18273,"name":"Civil War: Choosing Sides","site_detail_url":"https://comicvine.gamespot.com/civil-war-choosing-sides/4050-18273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18289/","id":18289,"name":"Iron Man: The Inevitable","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-inevitable/4050-18289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18292/","id":18292,"name":"Spider-Woman: Origin","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin/4050-18292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18293/","id":18293,"name":"She-Hulk","site_detail_url":"https://comicvine.gamespot.com/she-hulk/4050-18293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18261/","id":18261,"name":"Ultimates Annual","site_detail_url":"https://comicvine.gamespot.com/ultimates-annual/4050-18261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18326/","id":18326,"name":"The Ultimates 2","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2/4050-18326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18328/","id":18328,"name":"Punisher","site_detail_url":"https://comicvine.gamespot.com/punisher/4050-18328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18332/","id":18332,"name":"Civil War: Battle Damage Report","site_detail_url":"https://comicvine.gamespot.com/civil-war-battle-damage-report/4050-18332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18335/","id":18335,"name":"Rune vs. Venom","site_detail_url":"https://comicvine.gamespot.com/rune-vs-venom/4050-18335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3658/","id":3658,"name":"X-Factor Annual","site_detail_url":"https://comicvine.gamespot.com/x-factor-annual/4050-3658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18327/","id":18327,"name":"The Ultimates","site_detail_url":"https://comicvine.gamespot.com/the-ultimates/4050-18327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18400/","id":18400,"name":"Agents of Atlas","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas/4050-18400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10731/","id":10731,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-10731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18419/","id":18419,"name":"Avengers: The Initiative","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative/4050-18419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18420/","id":18420,"name":"Fallen Son: The Death of Captain America","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america/4050-18420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18441/","id":18441,"name":"Omega Flight","site_detail_url":"https://comicvine.gamespot.com/omega-flight/4050-18441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18448/","id":18448,"name":"Marvel Knights: Millennial Visions","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-millennial-visions/4050-18448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18457/","id":18457,"name":"Marvel Universe: Millennial Visions","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-millennial-visions/4050-18457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18462/","id":18462,"name":"Nova","site_detail_url":"https://comicvine.gamespot.com/nova/4050-18462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18073/","id":18073,"name":"X-Men 2099","site_detail_url":"https://comicvine.gamespot.com/x-men-2099/4050-18073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18397/","id":18397,"name":"Marvel Legacy","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy/4050-18397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18117/","id":18117,"name":"Blade","site_detail_url":"https://comicvine.gamespot.com/blade/4050-18117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18530/","id":18530,"name":"Civil War Files","site_detail_url":"https://comicvine.gamespot.com/civil-war-files/4050-18530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18102/","id":18102,"name":"Heroes for Hire","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire/4050-18102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18539/","id":18539,"name":"Civil War: War Crimes","site_detail_url":"https://comicvine.gamespot.com/civil-war-war-crimes/4050-18539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18543/","id":18543,"name":"The Sensational Spider-Man Annual","site_detail_url":"https://comicvine.gamespot.com/the-sensational-spider-man-annual/4050-18543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18545/","id":18545,"name":"Tales of Suspense","site_detail_url":"https://comicvine.gamespot.com/tales-of-suspense/4050-18545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18558/","id":18558,"name":"Marvel Zombies: Dead Days","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-dead-days/4050-18558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9408/","id":9408,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4050-9408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18603/","id":18603,"name":"Avengers: Earth's Mightiest Heroes II","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii/4050-18603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18636/","id":18636,"name":"Captain Universe / Daredevil","site_detail_url":"https://comicvine.gamespot.com/captain-universe-daredevil/4050-18636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18637/","id":18637,"name":"Captain Universe / X-23","site_detail_url":"https://comicvine.gamespot.com/captain-universe-x-23/4050-18637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18641/","id":18641,"name":"Marvel Universe: The End","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-the-end/4050-18641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18236/","id":18236,"name":"Marvel Zombies/Army of Darkness","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-army-of-darkness/4050-18236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18459/","id":18459,"name":"Spider-Man Family","site_detail_url":"https://comicvine.gamespot.com/spider-man-family/4050-18459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18681/","id":18681,"name":"Punisher Kills the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/punisher-kills-the-marvel-universe/4050-18681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18686/","id":18686,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk/4050-18686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18687/","id":18687,"name":"Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/sub-mariner/4050-18687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18195/","id":18195,"name":"The Amazing Spider-Girl","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-girl/4050-18195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18663/","id":18663,"name":"Amazing Fantasy","site_detail_url":"https://comicvine.gamespot.com/amazing-fantasy/4050-18663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18694/","id":18694,"name":"Hulk and Power Pack","site_detail_url":"https://comicvine.gamespot.com/hulk-and-power-pack/4050-18694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18701/","id":18701,"name":"Marvel: The Characters and their Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-the-characters-and-their-universe/4050-18701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18066/","id":18066,"name":"Strange Tales","site_detail_url":"https://comicvine.gamespot.com/strange-tales/4050-18066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18105/","id":18105,"name":"Moon Knight","site_detail_url":"https://comicvine.gamespot.com/moon-knight/4050-18105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18786/","id":18786,"name":"World War Hulk: X-Men","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men/4050-18786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18824/","id":18824,"name":"Bruce Wayne, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-agent-of-shield/4050-18824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18310/","id":18310,"name":"Ultimate Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-power/4050-18310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22988/","id":22988,"name":"X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/x-men-annual/4050-22988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18899/","id":18899,"name":"Civil War Chronicles","site_detail_url":"https://comicvine.gamespot.com/civil-war-chronicles/4050-18899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18903/","id":18903,"name":"World War Hulk: Gamma Corps","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps/4050-18903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18671/","id":18671,"name":"New Warriors","site_detail_url":"https://comicvine.gamespot.com/new-warriors/4050-18671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5197/","id":5197,"name":"Simpsons Comics","site_detail_url":"https://comicvine.gamespot.com/simpsons-comics/4050-5197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18482/","id":18482,"name":"Spider-Man and the Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four/4050-18482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19015/","id":19015,"name":"WildC.A.T.S/X-Men: The Silver Age","site_detail_url":"https://comicvine.gamespot.com/wildcatsx-men-the-silver-age/4050-19015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19034/","id":19034,"name":"Doc Samson","site_detail_url":"https://comicvine.gamespot.com/doc-samson/4050-19034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18877/","id":18877,"name":"Fantastic Five","site_detail_url":"https://comicvine.gamespot.com/fantastic-five/4050-18877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19112/","id":19112,"name":"Iron Man: Enter The Mandarin","site_detail_url":"https://comicvine.gamespot.com/iron-man-enter-the-mandarin/4050-19112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19138/","id":19138,"name":"Ultimate Spider-Man Super Special","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-super-special/4050-19138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18940/","id":18940,"name":"Super-Villain Team-Up/MODOK's 11","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-upmodoks-11/4050-18940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19160/","id":19160,"name":"Penance: Relentless","site_detail_url":"https://comicvine.gamespot.com/penance-relentless/4050-19160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19164/","id":19164,"name":"Marvel Comics Presents","site_detail_url":"https://comicvine.gamespot.com/marvel-comics-presents/4050-19164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19381/","id":19381,"name":"Captain America: Sentinel of Liberty","site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty/4050-19381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19405/","id":19405,"name":"Ultimate Six","site_detail_url":"https://comicvine.gamespot.com/ultimate-six/4050-19405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19493/","id":19493,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4050-19493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18911/","id":18911,"name":"The Order","site_detail_url":"https://comicvine.gamespot.com/the-order/4050-18911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18365/","id":18365,"name":"Cable / Machine Man '98","site_detail_url":"https://comicvine.gamespot.com/cable-machine-man-98/4050-18365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19688/","id":19688,"name":"Spider-Man: Breakout","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout/4050-19688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19750/","id":19750,"name":"Iron Man: Director of S.H.I.E.L.D. Annual","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield-annual/4050-19750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19919/","id":19919,"name":"World War Hulk: Aftersmash","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash/4050-19919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20075/","id":20075,"name":"Ultimate War","site_detail_url":"https://comicvine.gamespot.com/ultimate-war/4050-20075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20081/","id":20081,"name":"X-Men: Supernovas","site_detail_url":"https://comicvine.gamespot.com/x-men-supernovas/4050-20081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18442/","id":18442,"name":"Marvel Holiday Special","site_detail_url":"https://comicvine.gamespot.com/marvel-holiday-special/4050-18442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20153/","id":20153,"name":"World War Hulk Aftersmash: Warbound","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-warbound/4050-20153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20155/","id":20155,"name":"What If? Civil War","site_detail_url":"https://comicvine.gamespot.com/what-if-civil-war/4050-20155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19633/","id":19633,"name":"Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/captain-marvel/4050-19633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20291/","id":20291,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4050-20291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20313/","id":20313,"name":"Ultraforce/Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultraforcespider-man/4050-20313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20368/","id":20368,"name":"Weapon X: The Draft - Kane","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-draft-kane/4050-20368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18390/","id":18390,"name":"Weapon X","site_detail_url":"https://comicvine.gamespot.com/weapon-x/4050-18390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20402/","id":20402,"name":"World War Hulk Aftersmash: Damage Control","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-aftersmash-damage-control/4050-20402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20410/","id":20410,"name":"What If? Spider-Man Vs. Wolverine","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-vs-wolverine/4050-20410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18198/","id":18198,"name":"New Avengers Annual","site_detail_url":"https://comicvine.gamespot.com/new-avengers-annual/4050-18198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20439/","id":20439,"name":"Mutant X 1999","site_detail_url":"https://comicvine.gamespot.com/mutant-x-1999/4050-20439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20443/","id":20443,"name":"Punisher/Black Widow: Spinning Doomsday's Web","site_detail_url":"https://comicvine.gamespot.com/punisherblack-widow-spinning-doomsdays-web/4050-20443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20450/","id":20450,"name":"Maximum Security","site_detail_url":"https://comicvine.gamespot.com/maximum-security/4050-20450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20454/","id":20454,"name":"Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry/4050-20454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20490/","id":20490,"name":"MyS-Tech Wars","site_detail_url":"https://comicvine.gamespot.com/mys-tech-wars/4050-20490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20511/","id":20511,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-20511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20524/","id":20524,"name":"Motormouth & Killpower","site_detail_url":"https://comicvine.gamespot.com/motormouth-killpower/4050-20524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20507/","id":20507,"name":"Wild Thing","site_detail_url":"https://comicvine.gamespot.com/wild-thing/4050-20507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3144/","id":3144,"name":"Marvel Graphic Novel","site_detail_url":"https://comicvine.gamespot.com/marvel-graphic-novel/4050-3144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20588/","id":20588,"name":"Incredible Hercules","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules/4050-20588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20622/","id":20622,"name":"Spidey/Marrow","site_detail_url":"https://comicvine.gamespot.com/spideymarrow/4050-20622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20712/","id":20712,"name":"Wha...Huh?","site_detail_url":"https://comicvine.gamespot.com/whahuh/4050-20712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2350/","id":2350,"name":"The Avengers Annual","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual/4050-2350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20902/","id":20902,"name":"The Last Defenders","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders/4050-20902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2957/","id":2957,"name":"Nova","site_detail_url":"https://comicvine.gamespot.com/nova/4050-2957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20997/","id":20997,"name":"Nova","site_detail_url":"https://comicvine.gamespot.com/nova/4050-20997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18941/","id":18941,"name":"X-Men: First Class","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class/4050-18941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21076/","id":21076,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion/4050-21076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61177/","id":61177,"name":"Secret Invasion Prologue","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-prologue/4050-61177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21102/","id":21102,"name":"Marvel Must Haves","site_detail_url":"https://comicvine.gamespot.com/marvel-must-haves/4050-21102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21201/","id":21201,"name":"Marvel Year-In-Review","site_detail_url":"https://comicvine.gamespot.com/marvel-year-in-review/4050-21201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20687/","id":20687,"name":"Captain Britain","site_detail_url":"https://comicvine.gamespot.com/captain-britain/4050-20687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21230/","id":21230,"name":"Wolverine: Enemy Of The State - The Complete Edition","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition/4050-21230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21361/","id":21361,"name":"Civil War: Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/civil-war-marvel-universe/4050-21361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21470/","id":21470,"name":"Avengers/Invaders","site_detail_url":"https://comicvine.gamespot.com/avengersinvaders/4050-21470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21487/","id":21487,"name":"Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man/4050-21487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21762/","id":21762,"name":"X-Force and Spider-Man","site_detail_url":"https://comicvine.gamespot.com/x-force-and-spider-man/4050-21762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21763/","id":21763,"name":"X-Force Megazine","site_detail_url":"https://comicvine.gamespot.com/x-force-megazine/4050-21763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21769/","id":21769,"name":"Double Edge: Alpha","site_detail_url":"https://comicvine.gamespot.com/double-edge-alpha/4050-21769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79250/","id":79250,"name":"Double Edge: Omega","site_detail_url":"https://comicvine.gamespot.com/double-edge-omega/4050-79250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21811/","id":21811,"name":"Secret Invasion: Who Do You Trust?","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-who-do-you-trust/4050-21811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3497/","id":3497,"name":"The Official Handbook of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-official-handbook-of-the-marvel-universe/4050-3497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21940/","id":21940,"name":"Heroes Reborn: Young Allies","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-young-allies/4050-21940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21942/","id":21942,"name":"Heroes Reborn: Remnants","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-remnants/4050-21942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21977/","id":21977,"name":"Civil War Companion","site_detail_url":"https://comicvine.gamespot.com/civil-war-companion/4050-21977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21978/","id":21978,"name":"Civil War: Opening Shot Sketchbook","site_detail_url":"https://comicvine.gamespot.com/civil-war-opening-shot-sketchbook/4050-21978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21985/","id":21985,"name":"New Avengers: The Sentry","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-sentry/4050-21985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21986/","id":21986,"name":"New Avengers: The Collective","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-collective/4050-21986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21987/","id":21987,"name":"Ultimate Secret: Ultimate Galactus","site_detail_url":"https://comicvine.gamespot.com/ultimate-secret-ultimate-galactus/4050-21987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21988/","id":21988,"name":"What If Jessica Jones Had Joined the Avengers?","site_detail_url":"https://comicvine.gamespot.com/what-if-jessica-jones-had-joined-the-avengers/4050-21988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22011/","id":22011,"name":"Origin of Generation X","site_detail_url":"https://comicvine.gamespot.com/origin-of-generation-x/4050-22011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21778/","id":21778,"name":"Ultimate Origins","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins/4050-21778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22132/","id":22132,"name":"Ms. Marvel: Monster Smash","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-monster-smash/4050-22132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22133/","id":22133,"name":"Ms. Marvel: Operation Lightning Storm","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-operation-lightning-storm/4050-22133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22138/","id":22138,"name":"She-Hulk: Laws of Attraction","site_detail_url":"https://comicvine.gamespot.com/she-hulk-laws-of-attraction/4050-22138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22139/","id":22139,"name":"She-Hulk: Planet Without A Hulk","site_detail_url":"https://comicvine.gamespot.com/she-hulk-planet-without-a-hulk/4050-22139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22152/","id":22152,"name":"Gambit: Hath No Fury","site_detail_url":"https://comicvine.gamespot.com/gambit-hath-no-fury/4050-22152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22167/","id":22167,"name":"Ultimate Fantastic Four: Frightful","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-four-frightful/4050-22167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21546/","id":21546,"name":"The 100 Greatest Marvels of All Time","site_detail_url":"https://comicvine.gamespot.com/the-100-greatest-marvels-of-all-time/4050-21546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21500/","id":21500,"name":"American Dream","site_detail_url":"https://comicvine.gamespot.com/american-dream/4050-21500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18412/","id":18412,"name":"Ghost Rider 2099","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099/4050-18412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22406/","id":22406,"name":"True Believers","site_detail_url":"https://comicvine.gamespot.com/true-believers/4050-22406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22636/","id":22636,"name":"The Astonishing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spider-man/4050-22636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9959/","id":9959,"name":"Soldier X","site_detail_url":"https://comicvine.gamespot.com/soldier-x/4050-9959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60472/","id":60472,"name":"Uncanny X-Men 2001","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-2001/4050-60472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22711/","id":22711,"name":"The Pulse: House of M Special","site_detail_url":"https://comicvine.gamespot.com/the-pulse-house-of-m-special/4050-22711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22814/","id":22814,"name":"Captain America Exclusive ComiCon Edition","site_detail_url":"https://comicvine.gamespot.com/captain-america-exclusive-comicon-edition/4050-22814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21937/","id":21937,"name":"Eternals","site_detail_url":"https://comicvine.gamespot.com/eternals/4050-21937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22911/","id":22911,"name":"Hulk Chronicles: WWH","site_detail_url":"https://comicvine.gamespot.com/hulk-chronicles-wwh/4050-22911/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22935/","id":22935,"name":"Super Soldiers","site_detail_url":"https://comicvine.gamespot.com/super-soldiers/4050-22935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30391/","id":30391,"name":"Iron Man / Captain America '98","site_detail_url":"https://comicvine.gamespot.com/iron-man-captain-america-98/4050-30391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23052/","id":23052,"name":"Wolverine: Inner Fury","site_detail_url":"https://comicvine.gamespot.com/wolverine-inner-fury/4050-23052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20555/","id":20555,"name":"Scorpio Rising","site_detail_url":"https://comicvine.gamespot.com/scorpio-rising/4050-20555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23068/","id":23068,"name":"X-Men: Mutant Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-mutant-genesis/4050-23068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23084/","id":23084,"name":"What if? Wolverine: Enemy of the State","site_detail_url":"https://comicvine.gamespot.com/what-if-wolverine-enemy-of-the-state/4050-23084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23137/","id":23137,"name":"Ultimate Fantastic Four/Ultimate X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/ultimate-fantastic-fourultimate-x-men-annual/4050-23137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23222/","id":23222,"name":"March On Ultimatum Saga","site_detail_url":"https://comicvine.gamespot.com/march-on-ultimatum-saga/4050-23222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22955/","id":22955,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4050-22955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22286/","id":22286,"name":"Squadron Supreme","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme/4050-22286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23401/","id":23401,"name":"Marvel Masterworks: Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-avengers/4050-23401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23542/","id":23542,"name":"Ultimate Captain America Annual","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america-annual/4050-23542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23586/","id":23586,"name":"Bullet Points","site_detail_url":"https://comicvine.gamespot.com/bullet-points/4050-23586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22973/","id":22973,"name":"House of M: Civil War","site_detail_url":"https://comicvine.gamespot.com/house-of-m-civil-war/4050-22973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23088/","id":23088,"name":"The Age of The Sentry","site_detail_url":"https://comicvine.gamespot.com/the-age-of-the-sentry/4050-23088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60454/","id":60454,"name":"Captain America 2000","site_detail_url":"https://comicvine.gamespot.com/captain-america-2000/4050-60454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23934/","id":23934,"name":"Essential Captain America","site_detail_url":"https://comicvine.gamespot.com/essential-captain-america/4050-23934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60436/","id":60436,"name":"The Amazing Spider-Man '96","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-96/4050-60436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24270/","id":24270,"name":"Iron Man/Hulk/Fury","site_detail_url":"https://comicvine.gamespot.com/iron-manhulkfury/4050-24270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24272/","id":24272,"name":"What If? House Of M","site_detail_url":"https://comicvine.gamespot.com/what-if-house-of-m/4050-24272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24450/","id":24450,"name":"Hulk Family: Green Genes","site_detail_url":"https://comicvine.gamespot.com/hulk-family-green-genes/4050-24450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23597/","id":23597,"name":"Adam: Legend of the Blue Marvel","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel/4050-23597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22854/","id":22854,"name":"Marvel Apes","site_detail_url":"https://comicvine.gamespot.com/marvel-apes/4050-22854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20149/","id":20149,"name":"Ultimate Vision","site_detail_url":"https://comicvine.gamespot.com/ultimate-vision/4050-20149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23592/","id":23592,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimatum/4050-23592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25194/","id":25194,"name":"What If? Spider-Man: Back in Black","site_detail_url":"https://comicvine.gamespot.com/what-if-spider-man-back-in-black/4050-25194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23558/","id":23558,"name":"Essential Avengers","site_detail_url":"https://comicvine.gamespot.com/essential-avengers/4050-23558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25308/","id":25308,"name":"What If? Secret Wars","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-wars/4050-25308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25458/","id":25458,"name":"Black Widow: The Coldest War","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-coldest-war/4050-25458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23537/","id":23537,"name":"Essential Iron Man","site_detail_url":"https://comicvine.gamespot.com/essential-iron-man/4050-23537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25512/","id":25512,"name":"Dark Avengers","site_detail_url":"https://comicvine.gamespot.com/dark-avengers/4050-25512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18405/","id":18405,"name":"Uncanny X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-annual/4050-18405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25541/","id":25541,"name":"Nick Fury's Howling Commandos","site_detail_url":"https://comicvine.gamespot.com/nick-furys-howling-commandos/4050-25541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22389/","id":22389,"name":"Marvel Milestones","site_detail_url":"https://comicvine.gamespot.com/marvel-milestones/4050-22389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25640/","id":25640,"name":"Secret Warriors","site_detail_url":"https://comicvine.gamespot.com/secret-warriors/4050-25640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25660/","id":25660,"name":"Marvel Fanfare","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare/4050-25660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23940/","id":23940,"name":"Essential Daredevil","site_detail_url":"https://comicvine.gamespot.com/essential-daredevil/4050-23940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25670/","id":25670,"name":"Essential Defenders","site_detail_url":"https://comicvine.gamespot.com/essential-defenders/4050-25670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22981/","id":22981,"name":"Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22319/","id":22319,"name":"Marvel Adventures Super Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes/4050-22319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25908/","id":25908,"name":"Hercules: Heart of Chaos","site_detail_url":"https://comicvine.gamespot.com/hercules-heart-of-chaos/4050-25908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25997/","id":25997,"name":"Fury","site_detail_url":"https://comicvine.gamespot.com/fury/4050-25997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25998/","id":25998,"name":"Nick Fury: Scorpio Connection","site_detail_url":"https://comicvine.gamespot.com/nick-fury-scorpio-connection/4050-25998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26047/","id":26047,"name":"Avengers: The Initiative Featuring Reptil","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-featuring-reptil/4050-26047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26048/","id":26048,"name":"Dark Reign: Elektra","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra/4050-26048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26105/","id":26105,"name":"Ultimate Spider-Man Hardcover","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hardcover/4050-26105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26106/","id":26106,"name":"Essential Ms. Marvel","site_detail_url":"https://comicvine.gamespot.com/essential-ms-marvel/4050-26106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26176/","id":26176,"name":"Essential Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/essential-spider-woman/4050-26176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26217/","id":26217,"name":"Essential Wolverine","site_detail_url":"https://comicvine.gamespot.com/essential-wolverine/4050-26217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9185/","id":9185,"name":"Essential Hulk","site_detail_url":"https://comicvine.gamespot.com/essential-hulk/4050-9185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18408/","id":18408,"name":"Ultimate Wolverine vs. Hulk","site_detail_url":"https://comicvine.gamespot.com/ultimate-wolverine-vs-hulk/4050-18408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25642/","id":25642,"name":"Astonishing Tales","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales/4050-25642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60463/","id":60463,"name":"X-Men 1999","site_detail_url":"https://comicvine.gamespot.com/x-men-1999/4050-60463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18526/","id":18526,"name":"Avengers 1999","site_detail_url":"https://comicvine.gamespot.com/avengers-1999/4050-18526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23949/","id":23949,"name":"Essential Marvel Two-In-One","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-two-in-one/4050-23949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26394/","id":26394,"name":"GeNext: United","site_detail_url":"https://comicvine.gamespot.com/genext-united/4050-26394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26426/","id":26426,"name":"Captain America: Red, White & Blue","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-white-blue/4050-26426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26431/","id":26431,"name":"Essential Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/essential-silver-surfer/4050-26431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26432/","id":26432,"name":"X-Men Forever Alpha","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-alpha/4050-26432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18800/","id":18800,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-18800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26453/","id":26453,"name":"Fin Fang Four Return!","site_detail_url":"https://comicvine.gamespot.com/fin-fang-four-return/4050-26453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26538/","id":26538,"name":"Secret Invasion Chronicles","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-chronicles/4050-26538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23510/","id":23510,"name":"Essential Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/essential-amazing-spider-man/4050-23510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26670/","id":26670,"name":"X-Men Forever","site_detail_url":"https://comicvine.gamespot.com/x-men-forever/4050-26670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26942/","id":26942,"name":"The Ultimates","site_detail_url":"https://comicvine.gamespot.com/the-ultimates/4050-26942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26943/","id":26943,"name":"Ultimates 2","site_detail_url":"https://comicvine.gamespot.com/ultimates-2/4050-26943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26954/","id":26954,"name":"X-Men: The Complete Onslaught Epic","site_detail_url":"https://comicvine.gamespot.com/x-men-the-complete-onslaught-epic/4050-26954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61181/","id":61181,"name":"Captain America: Reborn Prologue","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn-prologue/4050-61181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27087/","id":27087,"name":"Marvel Legends","site_detail_url":"https://comicvine.gamespot.com/marvel-legends/4050-27087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7351/","id":7351,"name":"Immortal Weapons","site_detail_url":"https://comicvine.gamespot.com/immortal-weapons/4050-7351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26151/","id":26151,"name":"All-New Savage She-Hulk","site_detail_url":"https://comicvine.gamespot.com/all-new-savage-she-hulk/4050-26151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27130/","id":27130,"name":"Wolverine '95","site_detail_url":"https://comicvine.gamespot.com/wolverine-95/4050-27130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-24715/","id":24715,"name":"Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk/4050-24715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27158/","id":27158,"name":"Captain America: Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier/4050-27158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27192/","id":27192,"name":"Iron Man: Armored Adventures","site_detail_url":"https://comicvine.gamespot.com/iron-man-armored-adventures/4050-27192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27217/","id":27217,"name":"Spider-Man: Breakout","site_detail_url":"https://comicvine.gamespot.com/spider-man-breakout/4050-27217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27219/","id":27219,"name":"Spider-Man: Identity Crisis","site_detail_url":"https://comicvine.gamespot.com/spider-man-identity-crisis/4050-27219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27236/","id":27236,"name":"Secrets of the House of M","site_detail_url":"https://comicvine.gamespot.com/secrets-of-the-house-of-m/4050-27236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27281/","id":27281,"name":"Ultimatum: Fantastic Four Requiem","site_detail_url":"https://comicvine.gamespot.com/ultimatum-fantastic-four-requiem/4050-27281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27329/","id":27329,"name":"Ms. Marvel: Best of the Best","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-best-of-the-best/4050-27329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27334/","id":27334,"name":"Ms. Marvel: Civil War","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-civil-war/4050-27334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27388/","id":27388,"name":"Ultimate Avengers","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers/4050-27388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27389/","id":27389,"name":"Ms. Marvel: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-secret-invasion/4050-27389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27428/","id":27428,"name":"Devil & Hulk","site_detail_url":"https://comicvine.gamespot.com/devil-hulk/4050-27428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27492/","id":27492,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/civil-war/4050-27492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27512/","id":27512,"name":"Uncanny X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-omnibus/4050-27512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27515/","id":27515,"name":"Iron Man: Armor Wars","site_detail_url":"https://comicvine.gamespot.com/iron-man-armor-wars/4050-27515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27518/","id":27518,"name":"Captain America and the Falcon: Nomad","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-nomad/4050-27518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27519/","id":27519,"name":"Captain America and the Falcon: Secret Empire","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-secret-empire/4050-27519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27520/","id":27520,"name":"Captain America and the Falcon: The Swine","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-the-swine/4050-27520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27569/","id":27569,"name":"Captain America: War & Remembrance","site_detail_url":"https://comicvine.gamespot.com/captain-america-war-remembrance/4050-27569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27603/","id":27603,"name":"Wolverine Origins: Born in Blood","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-born-in-blood/4050-27603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27605/","id":27605,"name":"Wolverine Origins: Savior","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-savior/4050-27605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27607/","id":27607,"name":"Wolverine Origins: Swift and Terrible","site_detail_url":"https://comicvine.gamespot.com/wolverine-origins-swift-and-terrible/4050-27607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27622/","id":27622,"name":"New Avengers: Breakout","site_detail_url":"https://comicvine.gamespot.com/new-avengers-breakout/4050-27622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27623/","id":27623,"name":"New Avengers: Secrets and Lies","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secrets-and-lies/4050-27623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27624/","id":27624,"name":"New Avengers: Civil War","site_detail_url":"https://comicvine.gamespot.com/new-avengers-civil-war/4050-27624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27625/","id":27625,"name":"New Avengers: Revolution","site_detail_url":"https://comicvine.gamespot.com/new-avengers-revolution/4050-27625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20499/","id":20499,"name":"Warheads","site_detail_url":"https://comicvine.gamespot.com/warheads/4050-20499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27286/","id":27286,"name":"House of M: Masters of Evil","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil/4050-27286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27726/","id":27726,"name":"New Avengers: The Trust","site_detail_url":"https://comicvine.gamespot.com/new-avengers-the-trust/4050-27726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27731/","id":27731,"name":"New Avengers: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/new-avengers-secret-invasion/4050-27731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27741/","id":27741,"name":"New Avengers: Power","site_detail_url":"https://comicvine.gamespot.com/new-avengers-power/4050-27741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27752/","id":27752,"name":"Mighty Avengers: Secret Invasion, Book One","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one/4050-27752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27828/","id":27828,"name":"Avengers: The Initiative: Basic Training","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-basic-training/4050-27828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27851/","id":27851,"name":"Avengers: The Initiative: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion/4050-27851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27862/","id":27862,"name":"Civil War: Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-amazing-spider-man/4050-27862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27958/","id":27958,"name":"Civil War: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/civil-war-fantastic-four/4050-27958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27959/","id":27959,"name":"Wolverine: Civil War","site_detail_url":"https://comicvine.gamespot.com/wolverine-civil-war/4050-27959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27961/","id":27961,"name":"Civil War: Iron Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-iron-man/4050-27961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28000/","id":28000,"name":"New Warriors: Defiant","site_detail_url":"https://comicvine.gamespot.com/new-warriors-defiant/4050-28000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28003/","id":28003,"name":"New Warriors: Thrashed","site_detail_url":"https://comicvine.gamespot.com/new-warriors-thrashed/4050-28003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28011/","id":28011,"name":"Secret Invasion: New Warriors","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-new-warriors/4050-28011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19176/","id":19176,"name":"Marvel Age","site_detail_url":"https://comicvine.gamespot.com/marvel-age/4050-19176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20559/","id":20559,"name":"The Transformers","site_detail_url":"https://comicvine.gamespot.com/the-transformers/4050-20559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28026/","id":28026,"name":"Moon Knight: Midnight Sun","site_detail_url":"https://comicvine.gamespot.com/moon-knight-midnight-sun/4050-28026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28068/","id":28068,"name":"Giant-Size Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/giant-size-spider-woman/4050-28068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28087/","id":28087,"name":"Heroes Reborn: Avengers","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-avengers/4050-28087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28088/","id":28088,"name":"Heroes Reborn: Captain America","site_detail_url":"https://comicvine.gamespot.com/heroes-reborn-captain-america/4050-28088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28090/","id":28090,"name":"Captain America and the Falcon: Madbomb","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-madbomb/4050-28090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28091/","id":28091,"name":"Captain America by Jack Kirby: Bicentennial Battles","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-jack-kirby-bicentennial-battles/4050-28091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28120/","id":28120,"name":"Penance: Relentless","site_detail_url":"https://comicvine.gamespot.com/penance-relentless/4050-28120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28146/","id":28146,"name":"Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion/4050-28146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28147/","id":28147,"name":"Amazing Spider-Girl: Comes the Carnage!","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-girl-comes-the-carnage/4050-28147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28151/","id":28151,"name":"Secret Invasion: Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-captain-marvel/4050-28151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28237/","id":28237,"name":"Exiles Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/exiles-ultimate-collection/4050-28237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28268/","id":28268,"name":"The Last Defenders","site_detail_url":"https://comicvine.gamespot.com/the-last-defenders/4050-28268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28269/","id":28269,"name":"Omega Flight: Alpha to Omega","site_detail_url":"https://comicvine.gamespot.com/omega-flight-alpha-to-omega/4050-28269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28284/","id":28284,"name":"Squadron Supreme: Power to the People","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-power-to-the-people/4050-28284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28300/","id":28300,"name":"Sub-Mariner: Revolution","site_detail_url":"https://comicvine.gamespot.com/sub-mariner-revolution/4050-28300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27729/","id":27729,"name":"Strange Tales","site_detail_url":"https://comicvine.gamespot.com/strange-tales/4050-27729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28489/","id":28489,"name":"What If? Classic","site_detail_url":"https://comicvine.gamespot.com/what-if-classic/4050-28489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28491/","id":28491,"name":"Marvel Knights: Spider-Man & Wolverine","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-wolverine/4050-28491/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28571/","id":28571,"name":"X-Men: First Class: Band of Brothers","site_detail_url":"https://comicvine.gamespot.com/x-men-first-class-band-of-brothers/4050-28571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28579/","id":28579,"name":"Iron Man: Iron Protocols","site_detail_url":"https://comicvine.gamespot.com/iron-man-iron-protocols/4050-28579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28584/","id":28584,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn/4050-28584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28590/","id":28590,"name":"Peter Parker, Spider-Man: Back in Black","site_detail_url":"https://comicvine.gamespot.com/peter-parker-spider-man-back-in-black/4050-28590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28608/","id":28608,"name":"Avengers: Hawkeye","site_detail_url":"https://comicvine.gamespot.com/avengers-hawkeye/4050-28608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27602/","id":27602,"name":"Ultimate X-Men: Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-collection/4050-27602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6505/","id":6505,"name":"Monsters on the Prowl","site_detail_url":"https://comicvine.gamespot.com/monsters-on-the-prowl/4050-6505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28948/","id":28948,"name":"What If? Secret Wars","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-wars/4050-28948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28975/","id":28975,"name":"Astonishing X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus/4050-28975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28328/","id":28328,"name":"The Jack Kirby Collector","site_detail_url":"https://comicvine.gamespot.com/the-jack-kirby-collector/4050-28328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29260/","id":29260,"name":"Nova: Annihilation Conquest","site_detail_url":"https://comicvine.gamespot.com/nova-annihilation-conquest/4050-29260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29331/","id":29331,"name":"Avengers: Earth's Mightiest Heroes II","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ii/4050-29331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29460/","id":29460,"name":"X-Factor: Life and Death Matters","site_detail_url":"https://comicvine.gamespot.com/x-factor-life-and-death-matters/4050-29460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29462/","id":29462,"name":"X-Factor: Many Lives of Madrox","site_detail_url":"https://comicvine.gamespot.com/x-factor-many-lives-of-madrox/4050-29462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29466/","id":29466,"name":"X-Factor: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/x-factor-secret-invasion/4050-29466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29500/","id":29500,"name":"Wolverine: The Death of Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-death-of-wolverine/4050-29500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29501/","id":29501,"name":"Invincible Iron Man: The Five Nightmares","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-the-five-nightmares/4050-29501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29503/","id":29503,"name":"Iron Man: Haunted","site_detail_url":"https://comicvine.gamespot.com/iron-man-haunted/4050-29503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29512/","id":29512,"name":"What If?: Event Horizon","site_detail_url":"https://comicvine.gamespot.com/what-if-event-horizon/4050-29512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29825/","id":29825,"name":"Moon Knight: God and Country","site_detail_url":"https://comicvine.gamespot.com/moon-knight-god-and-country/4050-29825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29826/","id":29826,"name":"Moon Knight: The Death of Marc Spector","site_detail_url":"https://comicvine.gamespot.com/moon-knight-the-death-of-marc-spector/4050-29826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29848/","id":29848,"name":"Iron Man: Director of S.H.I.E.L.D.: With Iron Hands","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield-with-iron-hands/4050-29848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29962/","id":29962,"name":"Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimatum/4050-29962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30060/","id":30060,"name":"What If? Civil War","site_detail_url":"https://comicvine.gamespot.com/what-if-civil-war/4050-30060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30085/","id":30085,"name":"The Immortal Iron Fist Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-omnibus/4050-30085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30121/","id":30121,"name":"Secret Invasion: Home Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion/4050-30121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30123/","id":30123,"name":"Ultimates Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimates-omnibus/4050-30123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30150/","id":30150,"name":"Black Panther: Four the Hard Way","site_detail_url":"https://comicvine.gamespot.com/black-panther-four-the-hard-way/4050-30150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30186/","id":30186,"name":"Black Panther: The Bride","site_detail_url":"https://comicvine.gamespot.com/black-panther-the-bride/4050-30186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30203/","id":30203,"name":"Avengers: The Initiative: Disassembled","site_detail_url":"https://comicvine.gamespot.com/avengers-the-initiative-disassembled/4050-30203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30210/","id":30210,"name":"Astonishing X-Men: Torn","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-torn/4050-30210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30217/","id":30217,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-30217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30226/","id":30226,"name":"Avengers/Defenders War","site_detail_url":"https://comicvine.gamespot.com/avengersdefenders-war/4050-30226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30229/","id":30229,"name":"Wolverine: Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/wolverine-agent-of-shield/4050-30229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30230/","id":30230,"name":"Wolverine: Enemy Of The State","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state/4050-30230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30245/","id":30245,"name":"Hulk: WWH - World War Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-world-war-hulk/4050-30245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30265/","id":30265,"name":"New X-Men: Academy X: House Of M","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m/4050-30265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30284/","id":30284,"name":"Incredible Hulk: Prelude to Planet Hulk","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-prelude-to-planet-hulk/4050-30284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30289/","id":30289,"name":"Cable & Deadpool: If Looks Could Kill","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-if-looks-could-kill/4050-30289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30291/","id":30291,"name":"Cable & Deadpool: The Burnt Offering","site_detail_url":"https://comicvine.gamespot.com/cable-deadpool-the-burnt-offering/4050-30291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30292/","id":30292,"name":"Dark Avengers: Dark Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-dark-avengers-assemble/4050-30292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30297/","id":30297,"name":"Hulk: WWH - X-Men","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-x-men/4050-30297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30305/","id":30305,"name":"Spectacular Spider-Man: Disassembled","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-disassembled/4050-30305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30320/","id":30320,"name":"Marvel Knights Spider-Man: Down Among the Dead Men","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-spider-man-down-among-the-dead-men/4050-30320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27037/","id":27037,"name":"Uncanny X-Men: First Class","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class/4050-27037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30365/","id":30365,"name":"Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet/4050-30365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30376/","id":30376,"name":"What If? Special","site_detail_url":"https://comicvine.gamespot.com/what-if-special/4050-30376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30385/","id":30385,"name":"X-Men Forever: Picking Up Where We Left Off","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-picking-up-where-we-left-off/4050-30385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30388/","id":30388,"name":"X-23: Target X","site_detail_url":"https://comicvine.gamespot.com/x-23-target-x/4050-30388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30395/","id":30395,"name":"X-Men: Zero Tolerance","site_detail_url":"https://comicvine.gamespot.com/x-men-zero-tolerance/4050-30395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30408/","id":30408,"name":"Avengers: Above and Beyond","site_detail_url":"https://comicvine.gamespot.com/avengers-above-and-beyond/4050-30408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30423/","id":30423,"name":"Fantastic Four: The World's Greatest Comics Magazine","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4050-30423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30427/","id":30427,"name":"Avengers: Kang: Time and Time Again","site_detail_url":"https://comicvine.gamespot.com/avengers-kang-time-and-time-again/4050-30427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30505/","id":30505,"name":"Fantastic Four Visionaries: John Byrne","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-john-byrne/4050-30505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30525/","id":30525,"name":"What If? Daredevil vs. Elektra","site_detail_url":"https://comicvine.gamespot.com/what-if-daredevil-vs-elektra/4050-30525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30602/","id":30602,"name":"Captain America/Nick Fury: Blood Truce","site_detail_url":"https://comicvine.gamespot.com/captain-americanick-fury-blood-truce/4050-30602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30640/","id":30640,"name":"Hulk: Broken Worlds","site_detail_url":"https://comicvine.gamespot.com/hulk-broken-worlds/4050-30640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30691/","id":30691,"name":"What If? Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/what-if-astonishing-x-men/4050-30691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30702/","id":30702,"name":"Brian Michael Bendis: Ten Years At Marvel","site_detail_url":"https://comicvine.gamespot.com/brian-michael-bendis-ten-years-at-marvel/4050-30702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30733/","id":30733,"name":"Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus/4050-30733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30775/","id":30775,"name":"Iron Man: Fast Friends","site_detail_url":"https://comicvine.gamespot.com/iron-man-fast-friends/4050-30775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30807/","id":30807,"name":"Marvel Masterworks: The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-uncanny-x-men/4050-30807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30813/","id":30813,"name":"X-Force: Not Forgotten","site_detail_url":"https://comicvine.gamespot.com/x-force-not-forgotten/4050-30813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30847/","id":30847,"name":"Avengers Disassembled: Iron Man, Thor, and Captain America","site_detail_url":"https://comicvine.gamespot.com/avengers-disassembled-iron-man-thor-and-captain-am/4050-30847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30881/","id":30881,"name":"Dark Reign: Elektra","site_detail_url":"https://comicvine.gamespot.com/dark-reign-elektra/4050-30881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30903/","id":30903,"name":"Marvel Zombies vs. Army Of Darkness","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-vs-army-of-darkness/4050-30903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30933/","id":30933,"name":"Annihilation Classic","site_detail_url":"https://comicvine.gamespot.com/annihilation-classic/4050-30933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30960/","id":30960,"name":"Siege Prelude","site_detail_url":"https://comicvine.gamespot.com/siege-prelude/4050-30960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31004/","id":31004,"name":"Ultimatum: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimatum-spider-man/4050-31004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31010/","id":31010,"name":"Incredible Hulk: Hulk vs the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-hulk-vs-the-marvel-universe/4050-31010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31034/","id":31034,"name":"Spider-Man Magazine","site_detail_url":"https://comicvine.gamespot.com/spider-man-magazine/4050-31034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31060/","id":31060,"name":"Adam: Legend of the Blue Marvel","site_detail_url":"https://comicvine.gamespot.com/adam-legend-of-the-blue-marvel/4050-31060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31065/","id":31065,"name":"Captain America and the Falcon: Brothers and Keepers","site_detail_url":"https://comicvine.gamespot.com/captain-america-and-the-falcon-brothers-and-keeper/4050-31065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31085/","id":31085,"name":"Death of Captain America: The Death of the Dream","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-death-of-the-dream/4050-31085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31086/","id":31086,"name":"Death of Captain America: The Burden of Dreams","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-burden-of-dreams/4050-31086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31087/","id":31087,"name":"Death of Captain America: The Man Who Bought America","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-the-man-who-bought-americ/4050-31087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31132/","id":31132,"name":"Incredible Hulk: Planet Hulk","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-planet-hulk/4050-31132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31144/","id":31144,"name":"The Road to Civil War","site_detail_url":"https://comicvine.gamespot.com/the-road-to-civil-war/4050-31144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31293/","id":31293,"name":"Iron Man: I Am Iron Man!","site_detail_url":"https://comicvine.gamespot.com/iron-man-i-am-iron-man/4050-31293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31387/","id":31387,"name":"Secret Invasion: War Machine","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-war-machine/4050-31387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31438/","id":31438,"name":"House Of M: Masters Of Evil","site_detail_url":"https://comicvine.gamespot.com/house-of-m-masters-of-evil/4050-31438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31478/","id":31478,"name":"Iron Man: Tales of the Golden Avenger","site_detail_url":"https://comicvine.gamespot.com/iron-man-tales-of-the-golden-avenger/4050-31478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31545/","id":31545,"name":"Excalibur: Air Apparent","site_detail_url":"https://comicvine.gamespot.com/excalibur-air-apparent/4050-31545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31616/","id":31616,"name":"Wolverine Legends","site_detail_url":"https://comicvine.gamespot.com/wolverine-legends/4050-31616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31672/","id":31672,"name":"House Of M: Wolverine, Iron Man & Hulk","site_detail_url":"https://comicvine.gamespot.com/house-of-m-wolverine-iron-man-hulk/4050-31672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31674/","id":31674,"name":"Wolverine: Old Man Logan","site_detail_url":"https://comicvine.gamespot.com/wolverine-old-man-logan/4050-31674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31298/","id":31298,"name":"Ultimate Enemy","site_detail_url":"https://comicvine.gamespot.com/ultimate-enemy/4050-31298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31692/","id":31692,"name":"Nova: Annihilation","site_detail_url":"https://comicvine.gamespot.com/nova-annihilation/4050-31692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31673/","id":31673,"name":"Daredevil/Black Widow: Abattoir","site_detail_url":"https://comicvine.gamespot.com/daredevilblack-widow-abattoir/4050-31673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31705/","id":31705,"name":"Spider-Girl Presents Avengers Next: Second Coming","site_detail_url":"https://comicvine.gamespot.com/spider-girl-presents-avengers-next-second-coming/4050-31705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31727/","id":31727,"name":"Ultimate New Ultimates","site_detail_url":"https://comicvine.gamespot.com/ultimate-new-ultimates/4050-31727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31741/","id":31741,"name":"Agents of Atlas","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas/4050-31741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31747/","id":31747,"name":"Invincible Iron Man MGC","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-mgc/4050-31747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31755/","id":31755,"name":"Thing: Project Pegasus","site_detail_url":"https://comicvine.gamespot.com/thing-project-pegasus/4050-31755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31797/","id":31797,"name":"Fantastic Four: In Search Of Galactus","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-in-search-of-galactus/4050-31797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31798/","id":31798,"name":"Secret Warriors: Nick Fury, Agent of Nothing","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-nick-fury-agent-of-nothing/4050-31798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31803/","id":31803,"name":"Captain America: Road to Reborn","site_detail_url":"https://comicvine.gamespot.com/captain-america-road-to-reborn/4050-31803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31807/","id":31807,"name":"Ultimate Origins","site_detail_url":"https://comicvine.gamespot.com/ultimate-origins/4050-31807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31818/","id":31818,"name":"Marvel: Your Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-your-universe/4050-31818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31862/","id":31862,"name":"Civil War: House of M","site_detail_url":"https://comicvine.gamespot.com/civil-war-house-of-m/4050-31862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31878/","id":31878,"name":"Hulk: Hulk No More","site_detail_url":"https://comicvine.gamespot.com/hulk-hulk-no-more/4050-31878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31919/","id":31919,"name":"Deadpool and Cable Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection/4050-31919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31979/","id":31979,"name":"Marvel Team-Up: The Golden Child","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-the-golden-child/4050-31979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32008/","id":32008,"name":"Spider-Man: Dead Man's Hand","site_detail_url":"https://comicvine.gamespot.com/spider-man-dead-mans-hand/4050-32008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32027/","id":32027,"name":"Dark Avengers: Molecule Man","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-molecule-man/4050-32027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25894/","id":25894,"name":"Punisher/Captain America: Blood & Glory","site_detail_url":"https://comicvine.gamespot.com/punishercaptain-america-blood-glory/4050-25894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32188/","id":32188,"name":"Captain America: Reborn","site_detail_url":"https://comicvine.gamespot.com/captain-america-reborn/4050-32188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32212/","id":32212,"name":"Wolverine Bloody Choices","site_detail_url":"https://comicvine.gamespot.com/wolverine-bloody-choices/4050-32212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32217/","id":32217,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m/4050-32217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32282/","id":32282,"name":"Avengers/Invaders","site_detail_url":"https://comicvine.gamespot.com/avengers-invaders/4050-32282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32290/","id":32290,"name":"She-Hulk Sensational","site_detail_url":"https://comicvine.gamespot.com/she-hulk-sensational/4050-32290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32297/","id":32297,"name":"Identity Disc","site_detail_url":"https://comicvine.gamespot.com/identity-disc/4050-32297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32298/","id":32298,"name":"Incredible Hercules: Sacred Invasion","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-sacred-invasion/4050-32298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32308/","id":32308,"name":"Avengers: World Trust","site_detail_url":"https://comicvine.gamespot.com/avengers-world-trust/4050-32308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32311/","id":32311,"name":"Civil War: Young Avengers and Runaways","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-and-runaways/4050-32311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32322/","id":32322,"name":"Deadpool: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/deadpool-secret-invasion/4050-32322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32323/","id":32323,"name":"Fantastic Four: World's Greatest","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-worlds-greatest/4050-32323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32334/","id":32334,"name":"The Invincible Iron Man: Execute Program","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-execute-program/4050-32334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32335/","id":32335,"name":"Heroes for Hire: World War Hulk","site_detail_url":"https://comicvine.gamespot.com/heroes-for-hire-world-war-hulk/4050-32335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32336/","id":32336,"name":"Cable and Deadpool: Paved With Good Intentions","site_detail_url":"https://comicvine.gamespot.com/cable-and-deadpool-paved-with-good-intentions/4050-32336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32341/","id":32341,"name":"The Invincible Iron Man Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-omnibus/4050-32341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32352/","id":32352,"name":"Marvel Adventures: Spider-Man and the Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-spider-man-and-the-avengers/4050-32352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32354/","id":32354,"name":"Marvel Adventures: Thor","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-thor/4050-32354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32412/","id":32412,"name":"Civil War: X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men-universe/4050-32412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32414/","id":32414,"name":"GeNext: United","site_detail_url":"https://comicvine.gamespot.com/genext-united/4050-32414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32415/","id":32415,"name":"X-Force: Angels and Demons","site_detail_url":"https://comicvine.gamespot.com/x-force-angels-and-demons/4050-32415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32416/","id":32416,"name":"X-Force: Old Ghosts","site_detail_url":"https://comicvine.gamespot.com/x-force-old-ghosts/4050-32416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32430/","id":32430,"name":"S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/shield/4050-32430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32478/","id":32478,"name":"Uncanny X-Men First Class: Hated and Feared","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-hated-and-feared/4050-32478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32504/","id":32504,"name":"Civil War: Punisher War Journal","site_detail_url":"https://comicvine.gamespot.com/civil-war-punisher-war-journal/4050-32504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32505/","id":32505,"name":"Black Widow: Web of Intrigue","site_detail_url":"https://comicvine.gamespot.com/black-widow-web-of-intrigue/4050-32505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32519/","id":32519,"name":"Hulk Visionaries: Peter David","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-peter-david/4050-32519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32613/","id":32613,"name":"Hulk: WWH - Damage Control","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-damage-control/4050-32613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32614/","id":32614,"name":"Hulk: WWH - Gamma Corps","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-gamma-corps/4050-32614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32615/","id":32615,"name":"Hulk: WWH - Incredible Herc","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-incredible-herc/4050-32615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32616/","id":32616,"name":"Hulk: WWH - Warbound","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-warbound/4050-32616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32619/","id":32619,"name":"Incredible Hercules: Against the World","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-against-the-world/4050-32619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32628/","id":32628,"name":"Marvel Adventures Super Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-super-heroes/4050-32628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32633/","id":32633,"name":"Hulk MGC","site_detail_url":"https://comicvine.gamespot.com/hulk-mgc/4050-32633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25928/","id":25928,"name":"Essential Punisher","site_detail_url":"https://comicvine.gamespot.com/essential-punisher/4050-25928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32659/","id":32659,"name":"Irredeemable Ant-Man: Small Minded","site_detail_url":"https://comicvine.gamespot.com/irredeemable-ant-man-small-minded/4050-32659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32678/","id":32678,"name":"X-Men Forever Annual","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-annual/4050-32678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32681/","id":32681,"name":"New Avengers MGC","site_detail_url":"https://comicvine.gamespot.com/new-avengers-mgc/4050-32681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32688/","id":32688,"name":"Marvel Boy","site_detail_url":"https://comicvine.gamespot.com/marvel-boy/4050-32688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32703/","id":32703,"name":"Marvel Zombies: Dead Days","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-dead-days/4050-32703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32844/","id":32844,"name":"Uncanny X-Men First Class: Knights of Hykon","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-first-class-knights-of-hykon/4050-32844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32854/","id":32854,"name":"Captain America: Winter Soldier Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/captain-america-winter-soldier-ultimate-collection/4050-32854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32855/","id":32855,"name":"Astonishing Tales: Iron Man 2020","site_detail_url":"https://comicvine.gamespot.com/astonishing-tales-iron-man-2020/4050-32855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32890/","id":32890,"name":"Civil War MGC","site_detail_url":"https://comicvine.gamespot.com/civil-war-mgc/4050-32890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32932/","id":32932,"name":"Iron Man 2: Phil Coulson: Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-phil-coulson-agent-of-shield/4050-32932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32934/","id":32934,"name":"Iron Man 2: Nick Fury: Director of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-nick-fury-director-of-shield/4050-32934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32446/","id":32446,"name":"Thor and the Warriors Four","site_detail_url":"https://comicvine.gamespot.com/thor-and-the-warriors-four/4050-32446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27514/","id":27514,"name":"Invincible Iron Man Omnibus","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-omnibus/4050-27514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33059/","id":33059,"name":"Iron Man 2: Black Widow: Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-black-widow-agent-of-shield/4050-33059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33091/","id":33091,"name":"New Avengers Finale","site_detail_url":"https://comicvine.gamespot.com/new-avengers-finale/4050-33091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33113/","id":33113,"name":"Punisher War Journal: Goin' Out West","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-goin-out-west/4050-33113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33125/","id":33125,"name":"Punisher War Journal: Hunter/Hunted","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-hunterhunted/4050-33125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33126/","id":33126,"name":"Punisher War Journal: Jigsaw","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-jigsaw/4050-33126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33127/","id":33127,"name":"Punisher War Journal: Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-secret-invasion/4050-33127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33128/","id":33128,"name":"Savage She-Hulk","site_detail_url":"https://comicvine.gamespot.com/savage-she-hulk/4050-33128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33134/","id":33134,"name":"Agents of Atlas MGC","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-mgc/4050-33134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33146/","id":33146,"name":"Secret Invasion: Who Do You Trust?","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-who-do-you-trust/4050-33146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33147/","id":33147,"name":"Sentry: Age of the Sentry","site_detail_url":"https://comicvine.gamespot.com/sentry-age-of-the-sentry/4050-33147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33148/","id":33148,"name":"She-Hulk: Here Today....","site_detail_url":"https://comicvine.gamespot.com/she-hulk-here-today/4050-33148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33155/","id":33155,"name":"Silent War","site_detail_url":"https://comicvine.gamespot.com/silent-war/4050-33155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33170/","id":33170,"name":"Super-Villain Team-Up: Modok's 11","site_detail_url":"https://comicvine.gamespot.com/super-villain-team-up-modoks-11/4050-33170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33255/","id":33255,"name":"Amazing Spider-Man Presents: American Son","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-presents-american-son/4050-33255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33268/","id":33268,"name":"The Order: The Next Right Thing","site_detail_url":"https://comicvine.gamespot.com/the-order-the-next-right-thing/4050-33268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33387/","id":33387,"name":"What If? Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion/4050-33387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33399/","id":33399,"name":"Spider-Man Family: Back in Black","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-back-in-black/4050-33399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33402/","id":33402,"name":"Spider-Man Family: Itsy-Bitsy Battles","site_detail_url":"https://comicvine.gamespot.com/spider-man-family-itsy-bitsy-battles/4050-33402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33403/","id":33403,"name":"Spider-Man and the Fantastic Four: Silver Rage","site_detail_url":"https://comicvine.gamespot.com/spider-man-and-the-fantastic-four-silver-rage/4050-33403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33423/","id":33423,"name":"Spider-Woman: Origin","site_detail_url":"https://comicvine.gamespot.com/spider-woman-origin/4050-33423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33432/","id":33432,"name":"Hulk Visionaries: John Byrne","site_detail_url":"https://comicvine.gamespot.com/hulk-visionaries-john-byrne/4050-33432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28516/","id":28516,"name":"Marvel Previews","site_detail_url":"https://comicvine.gamespot.com/marvel-previews/4050-28516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33436/","id":33436,"name":"The Marvel Encyclopedia The Definitive Guide To The Characters Of The Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-marvel-encyclopedia-the-definitive-guide-to-th/4050-33436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33524/","id":33524,"name":"Marvels","site_detail_url":"https://comicvine.gamespot.com/marvels/4050-33524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33569/","id":33569,"name":"X-Men Forever Giant Size","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-giant-size/4050-33569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33670/","id":33670,"name":"X-Men Forever 2","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2/4050-33670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33685/","id":33685,"name":"X-Force Oversized Edition","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition/4050-33685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33859/","id":33859,"name":"Wolverine: Inside The World Of The Living Weapon","site_detail_url":"https://comicvine.gamespot.com/wolverine-inside-the-world-of-the-living-weapon/4050-33859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33858/","id":33858,"name":"Iron Man: The Ultimate Guide to the Armored Super Hero","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-ultimate-guide-to-the-armored-super-h/4050-33858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33855/","id":33855,"name":"Iron Man: Beneath The Armor","site_detail_url":"https://comicvine.gamespot.com/iron-man-beneath-the-armor/4050-33855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33826/","id":33826,"name":"Avengers: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/avengers-the-ultimate-guide/4050-33826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33925/","id":33925,"name":"Captain America: Red Menace","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-menace/4050-33925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34139/","id":34139,"name":"Bullet Points","site_detail_url":"https://comicvine.gamespot.com/bullet-points/4050-34139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34142/","id":34142,"name":"Ultimate Annuals","site_detail_url":"https://comicvine.gamespot.com/ultimate-annuals/4050-34142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34182/","id":34182,"name":"Avengers: I am an Avenger II","site_detail_url":"https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii/4050-34182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34208/","id":34208,"name":"Death of Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/death-of-captain-america-omnibus/4050-34208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34290/","id":34290,"name":"Marvel Team-Up: Master of the Ring","site_detail_url":"https://comicvine.gamespot.com/marvel-team-up-master-of-the-ring/4050-34290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33875/","id":33875,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-33875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34298/","id":34298,"name":"Irredeemable Ant-Man: Low-Life","site_detail_url":"https://comicvine.gamespot.com/irredeemable-ant-man-low-life/4050-34298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34299/","id":34299,"name":"The Ultimates Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-ultimate-collection/4050-34299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34323/","id":34323,"name":"Scorpion: Poison Tomorrow","site_detail_url":"https://comicvine.gamespot.com/scorpion-poison-tomorrow/4050-34323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31064/","id":31064,"name":"Marvel Super Hero Squad","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad/4050-31064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34445/","id":34445,"name":"Secret Invasion: Home Invasion","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-home-invasion/4050-34445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34465/","id":34465,"name":"Fall of the Hulks Prelude","site_detail_url":"https://comicvine.gamespot.com/fall-of-the-hulks-prelude/4050-34465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34480/","id":34480,"name":"Incredible Hulk: The Fury Files","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-the-fury-files/4050-34480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34512/","id":34512,"name":"Secret Invasion Extended Cut","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-extended-cut/4050-34512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34528/","id":34528,"name":"Invincible Iron Man: Stark Disassembled","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man-stark-disassembled/4050-34528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34653/","id":34653,"name":"Ultimate Mystery","site_detail_url":"https://comicvine.gamespot.com/ultimate-mystery/4050-34653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34680/","id":34680,"name":"Fantastic Four Visionaries: George Pérez","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-visionaries-george-perez/4050-34680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34682/","id":34682,"name":"House of M: Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/house-of-m-incredible-hulk/4050-34682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34683/","id":34683,"name":"Iron Man/Captain America","site_detail_url":"https://comicvine.gamespot.com/iron-mancaptain-america/4050-34683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32589/","id":32589,"name":"Iron Man: Legacy","site_detail_url":"https://comicvine.gamespot.com/iron-man-legacy/4050-32589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34760/","id":34760,"name":"Marvel Masterworks: Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-doctor-strange/4050-34760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34765/","id":34765,"name":"Iron Man: Deadly Solutions","site_detail_url":"https://comicvine.gamespot.com/iron-man-deadly-solutions/4050-34765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34791/","id":34791,"name":"Marvel Masterworks: The Silver Surfer","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-silver-surfer/4050-34791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34989/","id":34989,"name":"Star Heroes Pocket Book","site_detail_url":"https://comicvine.gamespot.com/star-heroes-pocket-book/4050-34989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35001/","id":35001,"name":"Avengers and the Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet/4050-35001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35023/","id":35023,"name":"S.H.I.E.L.D. Director's Cut","site_detail_url":"https://comicvine.gamespot.com/shield-directors-cut/4050-35023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35129/","id":35129,"name":"Thunderbolts By Warren Ellis: Faith In Monsters","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-faith-in-monsters/4050-35129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35130/","id":35130,"name":"Runaways: Live Fast","site_detail_url":"https://comicvine.gamespot.com/runaways-live-fast/4050-35130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35166/","id":35166,"name":"The Ultimates 2 Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-2-ultimate-collection/4050-35166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35196/","id":35196,"name":"Marvel Masterworks: The Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-invincible-iron-man/4050-35196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35208/","id":35208,"name":"Marvel Masterworks: Deathlok","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-deathlok/4050-35208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35197/","id":35197,"name":"Marvel Masterworks: The Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-fantastic-four/4050-35197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35188/","id":35188,"name":"Marvel Masterworks: The Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-sub-mariner/4050-35188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35342/","id":35342,"name":"The Pulse: Secret War","site_detail_url":"https://comicvine.gamespot.com/the-pulse-secret-war/4050-35342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35354/","id":35354,"name":"Iron Man 2: Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/iron-man-2-agents-of-shield/4050-35354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35402/","id":35402,"name":"New Avengers: Siege","site_detail_url":"https://comicvine.gamespot.com/new-avengers-siege/4050-35402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35213/","id":35213,"name":"Marvel Masterworks: The X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-x-men/4050-35213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35207/","id":35207,"name":"Marvel Masterworks: Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-captain-america/4050-35207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35443/","id":35443,"name":"Incredible Hulk: Dogs of War","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-dogs-of-war/4050-35443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35493/","id":35493,"name":"Daredevil: The Fall of The Kingpin","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-fall-of-the-kingpin/4050-35493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35545/","id":35545,"name":"Civil War: Front Line, Book One","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-book-one/4050-35545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35546/","id":35546,"name":"Civil War: Front Line, Book Two","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line-book-two/4050-35546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35595/","id":35595,"name":"Ultimate X-Men: The Tomorrow People","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-the-tomorrow-people/4050-35595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35596/","id":35596,"name":"Ultimate X-Men: Return to Weapon X","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-return-to-weapon-x/4050-35596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33350/","id":33350,"name":"Secret Avengers","site_detail_url":"https://comicvine.gamespot.com/secret-avengers/4050-33350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27381/","id":27381,"name":"Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man/4050-27381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35610/","id":35610,"name":"Ultimate X-Men: Ultimate War","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-ultimate-war/4050-35610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35611/","id":35611,"name":"Ultimate X-Men: Return of the King","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-return-of-the-king/4050-35611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35612/","id":35612,"name":"Ultimate X-Men: Blockbuster","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-blockbuster/4050-35612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35627/","id":35627,"name":"Ultimate X-Men: Hard Lessons","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-hard-lessons/4050-35627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35628/","id":35628,"name":"Ultimate X-Men: Magnetic North","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-magnetic-north/4050-35628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35629/","id":35629,"name":"Ultimate X-Men: Phoenix?","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-phoenix/4050-35629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35634/","id":35634,"name":"Ultimate X-Men: Apocalypse","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-apocalypse/4050-35634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35641/","id":35641,"name":"House of M: World of M Featuring Wolverine","site_detail_url":"https://comicvine.gamespot.com/house-of-m-world-of-m-featuring-wolverine/4050-35641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35783/","id":35783,"name":"Ultimate Spider-Man: Double Trouble","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-double-trouble/4050-35783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35784/","id":35784,"name":"Ultimate Spider-Man: Legacy","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-legacy/4050-35784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35802/","id":35802,"name":"Ultimate Spider-Man: Venom","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-venom/4050-35802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35918/","id":35918,"name":"Civil War: Avengers","site_detail_url":"https://comicvine.gamespot.com/civil-war-avengers/4050-35918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35936/","id":35936,"name":"Ultimate Spider-Man: Hollywood","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hollywood/4050-35936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35943/","id":35943,"name":"Ultimate Spider-Man: Hobgoblin","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-hobgoblin/4050-35943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35946/","id":35946,"name":"Ultimate Spider-Man: Silver Sable","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-silver-sable/4050-35946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35948/","id":35948,"name":"Ultimate Spider-Man: Clone Saga","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-clone-saga/4050-35948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35950/","id":35950,"name":"Ultimate Spider-Man: Death of A Goblin","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-death-of-a-goblin/4050-35950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35952/","id":35952,"name":"Ultimate Spider-Man: War of the Symbiotes","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-war-of-the-symbiotes/4050-35952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36136/","id":36136,"name":"Exiles: Fantastic Voyage","site_detail_url":"https://comicvine.gamespot.com/exiles-fantastic-voyage/4050-36136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36186/","id":36186,"name":"Iron Man: Titanium!","site_detail_url":"https://comicvine.gamespot.com/iron-man-titanium/4050-36186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36204/","id":36204,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men/4050-36204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36274/","id":36274,"name":"Thunderbolts: Cage","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-cage/4050-36274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36276/","id":36276,"name":"War Machine Classic","site_detail_url":"https://comicvine.gamespot.com/war-machine-classic/4050-36276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36375/","id":36375,"name":"Ultimate Comics Avengers: Crime and Punishment","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-crime-and-punishment/4050-36375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36377/","id":36377,"name":"X-Men Forever: Once More... Into the Breach","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-once-more-into-the-breach/4050-36377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36380/","id":36380,"name":"Hulk: Red Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk-red-hulk/4050-36380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36381/","id":36381,"name":"Hulk: Red & Green","site_detail_url":"https://comicvine.gamespot.com/hulk-red-green/4050-36381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35277/","id":35277,"name":"Taskmaster","site_detail_url":"https://comicvine.gamespot.com/taskmaster/4050-35277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36498/","id":36498,"name":"Civil War: Front Line","site_detail_url":"https://comicvine.gamespot.com/civil-war-front-line/4050-36498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36604/","id":36604,"name":"Fantastic Four: Foes","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-foes/4050-36604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36626/","id":36626,"name":"Avengers/X-Men: Maximum Security","site_detail_url":"https://comicvine.gamespot.com/avengersx-men-maximum-security/4050-36626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34856/","id":34856,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-34856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35415/","id":35415,"name":"The Amazing Spider-Man by JMS Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-by-jms-ultimate-collection/4050-35415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34526/","id":34526,"name":"Thor Visionaries: Walter Simonson","site_detail_url":"https://comicvine.gamespot.com/thor-visionaries-walter-simonson/4050-34526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36789/","id":36789,"name":"Civil War: X-Men","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men/4050-36789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36794/","id":36794,"name":"Wolverine and Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool/4050-36794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36822/","id":36822,"name":"X-Force: A Forced To Be Reckoned With","site_detail_url":"https://comicvine.gamespot.com/x-force-a-forced-to-be-reckoned-with/4050-36822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36892/","id":36892,"name":"Essential Godzilla King of the Monsters","site_detail_url":"https://comicvine.gamespot.com/essential-godzilla-king-of-the-monsters/4050-36892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36926/","id":36926,"name":"Iron Man: Director of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/iron-man-director-of-shield/4050-36926/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36980/","id":36980,"name":"Daredevil by Bendis and Maleev Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-bendis-and-maleev-ultimate-collection/4050-36980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37000/","id":37000,"name":"X-Men Forever: The Secret History of the Sentinels","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-the-secret-history-of-the-sentinels/4050-37000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37003/","id":37003,"name":"X-Men Forever: Come to Mother... Russia!","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-come-to-mother-russia/4050-37003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37004/","id":37004,"name":"X-Men Forever: Devil in a White Dress","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-devil-in-a-white-dress/4050-37004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37085/","id":37085,"name":"Grandson of Origins of Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/grandson-of-origins-of-marvel-comics/4050-37085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37181/","id":37181,"name":"Amazing Spider-Man: The Osborn Identity","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-the-osborn-identity/4050-37181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37309/","id":37309,"name":"Hulk Comic","site_detail_url":"https://comicvine.gamespot.com/hulk-comic/4050-37309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37329/","id":37329,"name":"Ultimate Comics Spider-Man: Chameleons","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-chameleons/4050-37329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37331/","id":37331,"name":"Civil War: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/civil-war-spider-man/4050-37331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37382/","id":37382,"name":"Iron Man: War of the Iron Men","site_detail_url":"https://comicvine.gamespot.com/iron-man-war-of-the-iron-men/4050-37382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36793/","id":36793,"name":"Wolverine and Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool/4050-36793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36795/","id":36795,"name":"Avengers Unconquered","site_detail_url":"https://comicvine.gamespot.com/avengers-unconquered/4050-36795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37511/","id":37511,"name":"Ultimate Galactus Trilogy","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-trilogy/4050-37511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37512/","id":37512,"name":"Ultimate Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-power/4050-37512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37516/","id":37516,"name":"Ultimatum: March On Ultimatum","site_detail_url":"https://comicvine.gamespot.com/ultimatum-march-on-ultimatum/4050-37516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37530/","id":37530,"name":"Thunderbolts: Marvel's Most Wanted","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-marvels-most-wanted/4050-37530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37823/","id":37823,"name":"Ultimate Doom","site_detail_url":"https://comicvine.gamespot.com/ultimate-doom/4050-37823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36796/","id":36796,"name":"Fantastic Four Adventures","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-adventures/4050-36796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37844/","id":37844,"name":"Wolverine and Gambit","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-gambit/4050-37844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37845/","id":37845,"name":"Wolverine Unleashed","site_detail_url":"https://comicvine.gamespot.com/wolverine-unleashed/4050-37845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38026/","id":38026,"name":"Weapon X: The Draft","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-draft/4050-38026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38029/","id":38029,"name":"Wolverine/Deadpool: Weapon X","site_detail_url":"https://comicvine.gamespot.com/wolverinedeadpool-weapon-x/4050-38029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38044/","id":38044,"name":"Civil War: War Crimes","site_detail_url":"https://comicvine.gamespot.com/civil-war-war-crimes/4050-38044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38088/","id":38088,"name":"Ultimate Captain America","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america/4050-38088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33495/","id":33495,"name":"Avengers: Prime","site_detail_url":"https://comicvine.gamespot.com/avengers-prime/4050-33495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38110/","id":38110,"name":"January 2011 Sneak Peeks","site_detail_url":"https://comicvine.gamespot.com/january-2011-sneak-peeks/4050-38110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38166/","id":38166,"name":"X-Force: Legacy of Vengeance","site_detail_url":"https://comicvine.gamespot.com/x-force-legacy-of-vengeance/4050-38166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38200/","id":38200,"name":"What If...?: Why Not?","site_detail_url":"https://comicvine.gamespot.com/what-if-why-not/4050-38200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38236/","id":38236,"name":"Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble/4050-38236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38235/","id":38235,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-38235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38241/","id":38241,"name":"Civil War: The Underside","site_detail_url":"https://comicvine.gamespot.com/civil-war-the-underside/4050-38241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38318/","id":38318,"name":"Marvel Mangaverse","site_detail_url":"https://comicvine.gamespot.com/marvel-mangaverse/4050-38318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38320/","id":38320,"name":"Ultimate Galactus: Ultimate Nightmare","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-ultimate-nightmare/4050-38320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38321/","id":38321,"name":"Ultimate Galactus: Ultimate Extinction","site_detail_url":"https://comicvine.gamespot.com/ultimate-galactus-ultimate-extinction/4050-38321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38726/","id":38726,"name":"Fantastic Four: The End","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-end/4050-38726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38728/","id":38728,"name":"Fantastic Four: The New Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-new-fantastic-four/4050-38728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38747/","id":38747,"name":"Fantastic Four: The Life Fantastic","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-life-fantastic/4050-38747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35919/","id":35919,"name":"Ultimate Thor","site_detail_url":"https://comicvine.gamespot.com/ultimate-thor/4050-35919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38780/","id":38780,"name":"Secret Avengers: Mission to Mars","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-mission-to-mars/4050-38780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38900/","id":38900,"name":"Ultimate Avengers vs. New Ultimates","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates/4050-38900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38964/","id":38964,"name":"X-Men Forever 2: Back in Action","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-back-in-action/4050-38964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38978/","id":38978,"name":"Elektra by Frank Miller Omnibus","site_detail_url":"https://comicvine.gamespot.com/elektra-by-frank-miller-omnibus/4050-38978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39092/","id":39092,"name":"Blade: Undead Again","site_detail_url":"https://comicvine.gamespot.com/blade-undead-again/4050-39092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39097/","id":39097,"name":"Thunderbolts: Burning Down The House","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-burning-down-the-house/4050-39097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39156/","id":39156,"name":"X-Men Visionaries 2: The Neal Adams Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-2-the-neal-adams-collection/4050-39156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37974/","id":37974,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-37974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39199/","id":39199,"name":"X-Men Forever 2: Scream A Little Scream","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-scream-a-little-scream/4050-39199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39349/","id":39349,"name":"Captain America Lives Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-lives-omnibus/4050-39349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39469/","id":39469,"name":"Civil War: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/civil-war-fantastic-four/4050-39469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39489/","id":39489,"name":"Captain America: Sentinel of Liberty","site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty/4050-39489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61161/","id":61161,"name":"Avengers/Invaders #1 Director's Cut","site_detail_url":"https://comicvine.gamespot.com/avengersinvaders-1-directors-cut/4050-61161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39519/","id":39519,"name":"Cyclops","site_detail_url":"https://comicvine.gamespot.com/cyclops/4050-39519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39521/","id":39521,"name":"The Amalgam Age of Comics: The Marvel Comics Collection","site_detail_url":"https://comicvine.gamespot.com/the-amalgam-age-of-comics-the-marvel-comics-collec/4050-39521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39533/","id":39533,"name":"Avengers and the Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/avengers-and-the-infinity-gauntlet/4050-39533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39537/","id":39537,"name":"Marvel Heroes","site_detail_url":"https://comicvine.gamespot.com/marvel-heroes/4050-39537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39675/","id":39675,"name":"Super Hero Squad: Super Hero Safari","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-super-hero-safari/4050-39675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39694/","id":39694,"name":"Ultimate Comics New Ultimates: Thor Reborn","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-new-ultimates-thor-reborn/4050-39694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40077/","id":40077,"name":"Captain America: Sentinel of Liberty","site_detail_url":"https://comicvine.gamespot.com/captain-america-sentinel-of-liberty/4050-40077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40131/","id":40131,"name":"Fantastic Four: Extended Family","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-extended-family/4050-40131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40166/","id":40166,"name":"Captain America: The Legacy of Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-legacy-of-captain-america/4050-40166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40168/","id":40168,"name":"X-Men Forever 2: Perfect World","site_detail_url":"https://comicvine.gamespot.com/x-men-forever-2-perfect-world/4050-40168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40169/","id":40169,"name":"Avengers Prime","site_detail_url":"https://comicvine.gamespot.com/avengers-prime/4050-40169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40262/","id":40262,"name":"Thor by Walter Simonson Omnibus","site_detail_url":"https://comicvine.gamespot.com/thor-by-walter-simonson-omnibus/4050-40262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40264/","id":40264,"name":"Ultimate Comics Avengers: Blade vs. the Avengers","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-blade-vs-the-avengers/4050-40264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40434/","id":40434,"name":"S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/shield/4050-40434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40480/","id":40480,"name":"Captain America vs. the Red Skull","site_detail_url":"https://comicvine.gamespot.com/captain-america-vs-the-red-skull/4050-40480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40486/","id":40486,"name":"S.H.I.E.L.D.: Architects of Forever","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-architects-of-forever/4050-40486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27489/","id":27489,"name":"X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-omnibus/4050-27489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40595/","id":40595,"name":"Captain America: Forever Allies","site_detail_url":"https://comicvine.gamespot.com/captain-america-forever-allies/4050-40595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40596/","id":40596,"name":"Taskmaster: Unthinkable","site_detail_url":"https://comicvine.gamespot.com/taskmaster-unthinkable/4050-40596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40653/","id":40653,"name":"100% Marvel","site_detail_url":"https://comicvine.gamespot.com/100-marvel/4050-40653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40727/","id":40727,"name":"Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-omnibus/4050-40727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40737/","id":40737,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-40737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40828/","id":40828,"name":"X-Men Deluxe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe/4050-40828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40787/","id":40787,"name":"Ultimate Comics Doomsday","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-doomsday/4050-40787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128093/","id":128093,"name":"New X-Men: Academia-X","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x/4050-128093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40812/","id":40812,"name":"Ultimate Comics Captain America","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-captain-america/4050-40812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26327/","id":26327,"name":"New Mutants","site_detail_url":"https://comicvine.gamespot.com/new-mutants/4050-26327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40895/","id":40895,"name":"The New Avengers","site_detail_url":"https://comicvine.gamespot.com/the-new-avengers/4050-40895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40940/","id":40940,"name":"Captain America: To Serve and Protect","site_detail_url":"https://comicvine.gamespot.com/captain-america-to-serve-and-protect/4050-40940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40954/","id":40954,"name":"Eternals by Jack Kirby","site_detail_url":"https://comicvine.gamespot.com/eternals-by-jack-kirby/4050-40954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41090/","id":41090,"name":"X-Men Visionaries: Jim Lee","site_detail_url":"https://comicvine.gamespot.com/x-men-visionaries-jim-lee/4050-41090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41098/","id":41098,"name":"Captain Britain: Birth of a Legend","site_detail_url":"https://comicvine.gamespot.com/captain-britain-birth-of-a-legend/4050-41098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41117/","id":41117,"name":"Captain America by Dan Jurgens","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens/4050-41117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41122/","id":41122,"name":"Captain America: Red Menace Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/captain-america-red-menace-ultimate-collection/4050-41122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41147/","id":41147,"name":"Ultimatum Companion","site_detail_url":"https://comicvine.gamespot.com/ultimatum-companion/4050-41147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41460/","id":41460,"name":"Gli Incredibili X-Men","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men/4050-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41202/","id":41202,"name":"Deadpool by Daniel Way","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way/4050-41202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41203/","id":41203,"name":"Impossible Man","site_detail_url":"https://comicvine.gamespot.com/impossible-man/4050-41203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41260/","id":41260,"name":"Captain America by Jack Kirby Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-jack-kirby-omnibus/4050-41260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41269/","id":41269,"name":"Ultimate Comics Spider-Man: Death of Spider-Man Prelude","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-pre/4050-41269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41278/","id":41278,"name":"Super Hero Squad Spectacular","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-spectacular/4050-41278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41288/","id":41288,"name":"Marvel Visionaries: Jim Steranko","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jim-steranko/4050-41288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41289/","id":41289,"name":"Ultimate Fallout","site_detail_url":"https://comicvine.gamespot.com/ultimate-fallout/4050-41289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29687/","id":29687,"name":"PunisherMAX","site_detail_url":"https://comicvine.gamespot.com/punishermax/4050-29687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41309/","id":41309,"name":"Marvel Visionaries: John Buscema","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-john-buscema/4050-41309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41316/","id":41316,"name":"Marvel Visionaries: Stan Lee","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-stan-lee/4050-41316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41342/","id":41342,"name":"Marvel Visionaries: Jack Kirby","site_detail_url":"https://comicvine.gamespot.com/marvel-visionaries-jack-kirby/4050-41342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41457/","id":41457,"name":"Spider-Man Legends","site_detail_url":"https://comicvine.gamespot.com/spider-man-legends/4050-41457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41459/","id":41459,"name":"Nick Fury, Agent of SHIELD: Who Is Scorpio?","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-who-is-scorpio/4050-41459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41461/","id":41461,"name":"Super Hero Squad: A Squad For All Seasons","site_detail_url":"https://comicvine.gamespot.com/super-hero-squad-a-squad-for-all-seasons/4050-41461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41775/","id":41775,"name":"Arma X","site_detail_url":"https://comicvine.gamespot.com/arma-x/4050-41775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41777/","id":41777,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41780/","id":41780,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41781/","id":41781,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41854/","id":41854,"name":"Marvel Point One","site_detail_url":"https://comicvine.gamespot.com/marvel-point-one/4050-41854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41950/","id":41950,"name":"Biblioteca Marvel: Hulk","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-hulk/4050-41950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41966/","id":41966,"name":"Spider-Man: Am I an Avenger?","site_detail_url":"https://comicvine.gamespot.com/spider-man-am-i-an-avenger/4050-41966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41969/","id":41969,"name":"Biblioteca Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-x-men/4050-41969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41993/","id":41993,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-41993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42042/","id":42042,"name":"Coleccionable X-Men","site_detail_url":"https://comicvine.gamespot.com/coleccionable-x-men/4050-42042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35263/","id":35263,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-35263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42291/","id":42291,"name":"Die Ultimativen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men/4050-42291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42322/","id":42322,"name":"Ultimate Comics Ultimates","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates/4050-42322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42413/","id":42413,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m/4050-42413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42425/","id":42425,"name":"Invasión Secreta","site_detail_url":"https://comicvine.gamespot.com/invasion-secreta/4050-42425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42462/","id":42462,"name":"Ultimate Comics Hawkeye","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye/4050-42462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42524/","id":42524,"name":"Lobezno","site_detail_url":"https://comicvine.gamespot.com/lobezno/4050-42524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42613/","id":42613,"name":"Wolverine: Debt of Death","site_detail_url":"https://comicvine.gamespot.com/wolverine-debt-of-death/4050-42613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42616/","id":42616,"name":"Los Exiliados","site_detail_url":"https://comicvine.gamespot.com/los-exiliados/4050-42616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42640/","id":42640,"name":"Los Vengadores","site_detail_url":"https://comicvine.gamespot.com/los-vengadores/4050-42640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42666/","id":42666,"name":"Marvel Deluxe: Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men/4050-42666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42684/","id":42684,"name":"Marvel Exklusiv","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv/4050-42684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42734/","id":42734,"name":"Marvel Monster: Cable & Masacre","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-cable-masacre/4050-42734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42824/","id":42824,"name":"Thunderbolts by Warren Ellis & Mike Deodato Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-by-warren-ellis-mike-deodato-ultimate/4050-42824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42833/","id":42833,"name":"Los Nuevos Guerreros","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-guerreros/4050-42833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42840/","id":42840,"name":"Omega Flight: Alfa y Omega","site_detail_url":"https://comicvine.gamespot.com/omega-flight-alfa-y-omega/4050-42840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42852/","id":42852,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-42852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42859/","id":42859,"name":"Punisher: Diario de Guerra","site_detail_url":"https://comicvine.gamespot.com/punisher-diario-de-guerra/4050-42859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42872/","id":42872,"name":"Reinado Oscuro: Elektra","site_detail_url":"https://comicvine.gamespot.com/reinado-oscuro-elektra/4050-42872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42904/","id":42904,"name":"Secret War","site_detail_url":"https://comicvine.gamespot.com/secret-war/4050-42904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42932/","id":42932,"name":"Dark Avengers","site_detail_url":"https://comicvine.gamespot.com/dark-avengers/4050-42932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41245/","id":41245,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-41245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42995/","id":42995,"name":"Fantastic Four: The World's Greatest Comics Magazine","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-the-worlds-greatest-comics-magazine/4050-42995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43024/","id":43024,"name":"Marvel Adventures Avengers: Thor/Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-adventures-avengers-thorcaptain-america/4050-43024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43026/","id":43026,"name":"Secret Warriors: Wheels Within Wheels","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-wheels-within-wheels/4050-43026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43062/","id":43062,"name":"Ultimate Avengers vs. New Ultimates: Death of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-avengers-vs-new-ultimates-death-of-spider/4050-43062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43063/","id":43063,"name":"Thor and the Warriors Four","site_detail_url":"https://comicvine.gamespot.com/thor-and-the-warriors-four/4050-43063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43061/","id":43061,"name":"Marvel Miniserie","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie/4050-43061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43059/","id":43059,"name":"Los Hombres X","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x/4050-43059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30861/","id":30861,"name":"Daredevil Omnibus by Brian Michael Bendis and Alex Maleev","site_detail_url":"https://comicvine.gamespot.com/daredevil-omnibus-by-brian-michael-bendis-and-alex/4050-30861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43111/","id":43111,"name":"Daredevil: The Widow","site_detail_url":"https://comicvine.gamespot.com/daredevil-the-widow/4050-43111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43114/","id":43114,"name":"Spider-Man by Mark Millar Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/spider-man-by-mark-millar-ultimate-collection/4050-43114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43252/","id":43252,"name":"Marvel Firsts: The 1960's","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1960s/4050-43252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43253/","id":43253,"name":"New Mutants: Unfinished Business","site_detail_url":"https://comicvine.gamespot.com/new-mutants-unfinished-business/4050-43253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43280/","id":43280,"name":"Spiderman: Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/spiderman-marvel-team-up/4050-43280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43289/","id":43289,"name":"Spiderman & Lobezno: La Materia De Las Leyendas","site_detail_url":"https://comicvine.gamespot.com/spiderman-lobezno-la-materia-de-las-leyendas/4050-43289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43370/","id":43370,"name":"The Pulse","site_detail_url":"https://comicvine.gamespot.com/the-pulse/4050-43370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43372/","id":43372,"name":"The Ultimates 3","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-3/4050-43372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43375/","id":43375,"name":"Ultimate Comics Spider-Man: Death of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man/4050-43375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43406/","id":43406,"name":"Thunderbolts","site_detail_url":"https://comicvine.gamespot.com/thunderbolts/4050-43406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43418/","id":43418,"name":"Ultimate Comics Vengadores","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-vengadores/4050-43418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43421/","id":43421,"name":"Ultimate Extinction","site_detail_url":"https://comicvine.gamespot.com/ultimate-extinction/4050-43421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43433/","id":43433,"name":"Ultimate Power","site_detail_url":"https://comicvine.gamespot.com/ultimate-power/4050-43433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43435/","id":43435,"name":"Ultimate Spiderman","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman/4050-43435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43436/","id":43436,"name":"Ultimate Spiderman","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman/4050-43436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43442/","id":43442,"name":"Ultimate Spider-Man And X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-and-x-men/4050-43442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43443/","id":43443,"name":"Ultimate Vision","site_detail_url":"https://comicvine.gamespot.com/ultimate-vision/4050-43443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43446/","id":43446,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-43446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43447/","id":43447,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-43447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43453/","id":43453,"name":"Ultimatum Requiem","site_detail_url":"https://comicvine.gamespot.com/ultimatum-requiem/4050-43453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33227/","id":33227,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-33227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43487/","id":43487,"name":"Vengadores Secretos","site_detail_url":"https://comicvine.gamespot.com/vengadores-secretos/4050-43487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43493/","id":43493,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43515/","id":43515,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43527/","id":43527,"name":"World War Hulk: Gamma Corps","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-gamma-corps/4050-43527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43532/","id":43532,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-43532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43534/","id":43534,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-43534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43580/","id":43580,"name":"X-Men Sonderband: X-Force","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force/4050-43580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43634/","id":43634,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43640/","id":43640,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43672/","id":43672,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43673/","id":43673,"name":"X-Men Legado","site_detail_url":"https://comicvine.gamespot.com/x-men-legado/4050-43673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43676/","id":43676,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-43676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43677/","id":43677,"name":"X-Men Sonderheft","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft/4050-43677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43782/","id":43782,"name":"Wolverine: Wolverine's Revenge","site_detail_url":"https://comicvine.gamespot.com/wolverine-wolverines-revenge/4050-43782/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43787/","id":43787,"name":"The Irredeemable Ant-Man","site_detail_url":"https://comicvine.gamespot.com/the-irredeemable-ant-man/4050-43787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43842/","id":43842,"name":"Black Widow: The Itsy-Bitsy Spider","site_detail_url":"https://comicvine.gamespot.com/black-widow-the-itsy-bitsy-spider/4050-43842/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43843/","id":43843,"name":"X-Force: Assault on Graymalkin","site_detail_url":"https://comicvine.gamespot.com/x-force-assault-on-graymalkin/4050-43843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43976/","id":43976,"name":"Fantastic Four by John Byrne Omnibus","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-by-john-byrne-omnibus/4050-43976/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44023/","id":44023,"name":"Captain America: Civil War","site_detail_url":"https://comicvine.gamespot.com/captain-america-civil-war/4050-44023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44092/","id":44092,"name":"Civil War: Director's Cut","site_detail_url":"https://comicvine.gamespot.com/civil-war-directors-cut/4050-44092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44152/","id":44152,"name":"Ultimate Comics Spider-Man: Death of Spider-Man Fallout","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man-death-of-spider-man-fal/4050-44152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44159/","id":44159,"name":"Ultimate Power 1 Director's Cut","site_detail_url":"https://comicvine.gamespot.com/ultimate-power-1-directors-cut/4050-44159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44350/","id":44350,"name":"Titans","site_detail_url":"https://comicvine.gamespot.com/titans/4050-44350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43894/","id":43894,"name":"Battle Scars","site_detail_url":"https://comicvine.gamespot.com/battle-scars/4050-43894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35092/","id":35092,"name":"Marvel Masterworks: Defenders","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-defenders/4050-35092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35211/","id":35211,"name":"Marvel Masterworks: Nick Fury, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-nick-fury-agent-of-shield/4050-35211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44689/","id":44689,"name":"Avengers: West Coast Avengers - Sins of the Past","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-sins-of-the-past/4050-44689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44691/","id":44691,"name":"SHIELD: Nick Fury vs. SHIELD","site_detail_url":"https://comicvine.gamespot.com/shield-nick-fury-vs-shield/4050-44691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42821/","id":42821,"name":"Ultimate Comics Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-spider-man/4050-42821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44798/","id":44798,"name":"Iron Man Wal-Mart Custom Comic","site_detail_url":"https://comicvine.gamespot.com/iron-man-wal-mart-custom-comic/4050-44798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44849/","id":44849,"name":"Hulk by John Byrne and Ron Garney","site_detail_url":"https://comicvine.gamespot.com/hulk-by-john-byrne-and-ron-garney/4050-44849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44923/","id":44923,"name":"Fator-X","site_detail_url":"https://comicvine.gamespot.com/fator-x/4050-44923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44934/","id":44934,"name":"Super-Heróis Premium: X-Men","site_detail_url":"https://comicvine.gamespot.com/super-herois-premium-x-men/4050-44934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35496/","id":35496,"name":"X-23","site_detail_url":"https://comicvine.gamespot.com/x-23/4050-35496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44977/","id":44977,"name":"Spider-Man: Masques","site_detail_url":"https://comicvine.gamespot.com/spider-man-masques/4050-44977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45171/","id":45171,"name":"Generaciòn Mutante","site_detail_url":"https://comicvine.gamespot.com/generacion-mutante/4050-45171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45193/","id":45193,"name":"Factor-X","site_detail_url":"https://comicvine.gamespot.com/factor-x/4050-45193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43163/","id":43163,"name":"X-Men by Chris Claremont & Jim Lee Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-by-chris-claremont-jim-lee-omnibus/4050-43163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45239/","id":45239,"name":"Supereroi Le Grandi Saghe","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe/4050-45239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45308/","id":45308,"name":"The New Defenders","site_detail_url":"https://comicvine.gamespot.com/the-new-defenders/4050-45308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45309/","id":45309,"name":"Ultimate Comics Hawkeye by Hickman","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-hawkeye-by-hickman/4050-45309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45374/","id":45374,"name":"Alias Omnibus","site_detail_url":"https://comicvine.gamespot.com/alias-omnibus/4050-45374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45436/","id":45436,"name":"WildC.A.T.S / X-Men","site_detail_url":"https://comicvine.gamespot.com/wildcats-x-men/4050-45436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45497/","id":45497,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-45497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45506/","id":45506,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-45506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45528/","id":45528,"name":"Captain America by Ed Brubaker","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker/4050-45528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45578/","id":45578,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-45578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45602/","id":45602,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-45602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41783/","id":41783,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45795/","id":45795,"name":"Marvel Crossover","site_detail_url":"https://comicvine.gamespot.com/marvel-crossover/4050-45795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45812/","id":45812,"name":"Marvel's The Avengers Prelude: Fury's Big Week","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week/4050-45812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45830/","id":45830,"name":"Fear Itself: Secret Avengers","site_detail_url":"https://comicvine.gamespot.com/fear-itself-secret-avengers/4050-45830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45518/","id":45518,"name":"Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/winter-soldier/4050-45518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45796/","id":45796,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-45796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45912/","id":45912,"name":"Astonishing X-Men by Whedon and Cassaday Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4050-45912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46070/","id":46070,"name":"Quasar Classic","site_detail_url":"https://comicvine.gamespot.com/quasar-classic/4050-46070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40490/","id":40490,"name":"Thunderbolts Classic","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-classic/4050-40490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46072/","id":46072,"name":"Wolverine/Captain America","site_detail_url":"https://comicvine.gamespot.com/wolverinecaptain-america/4050-46072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46130/","id":46130,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-46130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46263/","id":46263,"name":"Iron Man Magazine Special Edition","site_detail_url":"https://comicvine.gamespot.com/iron-man-magazine-special-edition/4050-46263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38262/","id":38262,"name":"Ka-Zar by Mark Waid & Andy Kubert","site_detail_url":"https://comicvine.gamespot.com/ka-zar-by-mark-waid-andy-kubert/4050-38262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46563/","id":46563,"name":"Ultimate Comics Ultimates by Jonathan Hickman","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-jonathan-hickman/4050-46563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46577/","id":46577,"name":"Avengers: Earth's Mightiest Heroes Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/avengers-earths-mightiest-heroes-ultimate-collecti/4050-46577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46609/","id":46609,"name":"Avengers by Brian Michael Bendis: The Heroic Age","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age/4050-46609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46612/","id":46612,"name":"Avengers: Road to Marvel's The Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-road-to-marvels-the-avengers/4050-46612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47098/","id":47098,"name":"Elektra: Assassin","site_detail_url":"https://comicvine.gamespot.com/elektra-assassin/4050-47098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47254/","id":47254,"name":"Wolverine and Nick Fury: Scorpio","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-nick-fury-scorpio/4050-47254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47272/","id":47272,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-47272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36593/","id":36593,"name":"Savage Action","site_detail_url":"https://comicvine.gamespot.com/savage-action/4050-36593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47576/","id":47576,"name":"Avengers: West Coast Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-assemble/4050-47576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47616/","id":47616,"name":"Titans","site_detail_url":"https://comicvine.gamespot.com/titans/4050-47616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47809/","id":47809,"name":"Avengers Earth's Mightiest Heroes","site_detail_url":"https://comicvine.gamespot.com/avengers-earth-s-mightiest-heroes/4050-47809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48003/","id":48003,"name":"PunisherMax: Frank","site_detail_url":"https://comicvine.gamespot.com/punishermax-frank/4050-48003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48062/","id":48062,"name":"Ultimate Spider-Man Premiere Comic","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-premiere-comic/4050-48062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48343/","id":48343,"name":"Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man/4050-48343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48560/","id":48560,"name":"The Avengers Prelude: Black Widow Strikes","site_detail_url":"https://comicvine.gamespot.com/the-avengers-prelude-black-widow-strikes/4050-48560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48604/","id":48604,"name":"Avengers - The Avengers Initiative","site_detail_url":"https://comicvine.gamespot.com/avengers-the-avengers-initiative/4050-48604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48554/","id":48554,"name":"Hulk Smash Avengers","site_detail_url":"https://comicvine.gamespot.com/hulk-smash-avengers/4050-48554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45101/","id":45101,"name":"Scarlet Spider","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider/4050-45101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49052/","id":49052,"name":"Ultimate Comics Avengers by Mark Millar Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-avengers-by-mark-millar-omnibus/4050-49052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49119/","id":49119,"name":"The Amazing Spider-Man: Identity Crisis","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spider-man-identity-crisis/4050-49119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49239/","id":49239,"name":"Avengers: The Many Faces of Henry Pym","site_detail_url":"https://comicvine.gamespot.com/avengers-the-many-faces-of-henry-pym/4050-49239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49762/","id":49762,"name":"Marvel's The Avengers Prelude: Fury's Big Week","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week/4050-49762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38936/","id":38936,"name":"Avengers by Brian Michael Bendis","site_detail_url":"https://comicvine.gamespot.com/avengers-by-brian-michael-bendis/4050-38936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49814/","id":49814,"name":"Battle Scars","site_detail_url":"https://comicvine.gamespot.com/battle-scars/4050-49814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45310/","id":45310,"name":"Marvel Firsts: The 1970's","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1970s/4050-45310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49819/","id":49819,"name":"X-23: Don't Look Back","site_detail_url":"https://comicvine.gamespot.com/x-23-dont-look-back/4050-49819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49847/","id":49847,"name":"Deathlok: The Living Nightmare of Michael Collins","site_detail_url":"https://comicvine.gamespot.com/deathlok-the-living-nightmare-of-michael-collins/4050-49847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49871/","id":49871,"name":"Ultimate Spider-Man Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimate-spider-man-omnibus/4050-49871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49395/","id":49395,"name":"Spider-Men","site_detail_url":"https://comicvine.gamespot.com/spider-men/4050-49395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42835/","id":42835,"name":"Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/nuevos-mutantes/4050-42835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50242/","id":50242,"name":"Secret Warriors Omnibus","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-omnibus/4050-50242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50269/","id":50269,"name":"Nick Fury, Agent of SHIELD Classic","site_detail_url":"https://comicvine.gamespot.com/nick-fury-agent-of-shield-classic/4050-50269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50728/","id":50728,"name":"Counter X: X-Force: Rage War","site_detail_url":"https://comicvine.gamespot.com/counter-x-x-force-rage-war/4050-50728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50830/","id":50830,"name":"Spider-Man: Ends of the Earth","site_detail_url":"https://comicvine.gamespot.com/spider-man-ends-of-the-earth/4050-50830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44363/","id":44363,"name":"Defenders","site_detail_url":"https://comicvine.gamespot.com/defenders/4050-44363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51321/","id":51321,"name":"Avengers: The Trial of Yellowjacket","site_detail_url":"https://comicvine.gamespot.com/avengers-the-trial-of-yellowjacket/4050-51321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51322/","id":51322,"name":"Incredible Hulk: Regression","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-regression/4050-51322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51349/","id":51349,"name":"Marvel Double Feature... Thunderstrike/Code: Blue","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue/4050-51349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37060/","id":37060,"name":"Pow!","site_detail_url":"https://comicvine.gamespot.com/pow/4050-37060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47589/","id":47589,"name":"Thing is Big Ben","site_detail_url":"https://comicvine.gamespot.com/thing-is-big-ben/4050-47589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42947/","id":42947,"name":"Ultimate Comics X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-x-men/4050-42947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51794/","id":51794,"name":"Ultimate Marvel","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel/4050-51794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51845/","id":51845,"name":"Iron Man: Revenge of the Mandarin","site_detail_url":"https://comicvine.gamespot.com/iron-man-revenge-of-the-mandarin/4050-51845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9318/","id":9318,"name":"MAD","site_detail_url":"https://comicvine.gamespot.com/mad/4050-9318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52258/","id":52258,"name":"Marvel's The Avengers Prelude: Fury's Big Week","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-prelude-furys-big-week/4050-52258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52353/","id":52353,"name":"X-Men Révolution","site_detail_url":"https://comicvine.gamespot.com/x-men-revolution/4050-52353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52365/","id":52365,"name":"Son of Origins of Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/son-of-origins-of-marvel-comics/4050-52365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52376/","id":52376,"name":"The Ultimates: Tomorrow Men","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-tomorrow-men/4050-52376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52377/","id":52377,"name":"The Ultimates: Against all Enemies","site_detail_url":"https://comicvine.gamespot.com/the-ultimates-against-all-enemies/4050-52377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52454/","id":52454,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-52454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52533/","id":52533,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-52533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52589/","id":52589,"name":"Nick Fury vs S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/nick-fury-vs-shield/4050-52589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52880/","id":52880,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-52880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46569/","id":46569,"name":"Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble/4050-46569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53097/","id":53097,"name":"Marvel NOW! Point One","site_detail_url":"https://comicvine.gamespot.com/marvel-now-point-one/4050-53097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53103/","id":53103,"name":"Transformers: The IDW Collection","site_detail_url":"https://comicvine.gamespot.com/transformers-the-idw-collection/4050-53103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53463/","id":53463,"name":"Ultimate Marvel","site_detail_url":"https://comicvine.gamespot.com/ultimate-marvel/4050-53463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53496/","id":53496,"name":"Marvel Annual","site_detail_url":"https://comicvine.gamespot.com/marvel-annual/4050-53496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50731/","id":50731,"name":"Marvel Super-Heroes Annual","site_detail_url":"https://comicvine.gamespot.com/marvel-super-heroes-annual/4050-50731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42761/","id":42761,"name":"MAX","site_detail_url":"https://comicvine.gamespot.com/max/4050-42761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53725/","id":53725,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-53725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53726/","id":53726,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4050-53726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52640/","id":52640,"name":"Daredevil: End of Days","site_detail_url":"https://comicvine.gamespot.com/daredevil-end-of-days/4050-52640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33777/","id":33777,"name":"New Avengers","site_detail_url":"https://comicvine.gamespot.com/new-avengers/4050-33777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54011/","id":54011,"name":"Spider-Men","site_detail_url":"https://comicvine.gamespot.com/spider-men/4050-54011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54112/","id":54112,"name":"Indestructible Hulk","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk/4050-54112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50941/","id":50941,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/hawkeye/4050-50941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54239/","id":54239,"name":"Fallen Son: The Death of Captain America","site_detail_url":"https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america/4050-54239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53784/","id":53784,"name":"Marvel's Iron Man 2 Adaptation","site_detail_url":"https://comicvine.gamespot.com/marvels-iron-man-2-adaptation/4050-53784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53117/","id":53117,"name":"Ultimate Comics Iron Man","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-iron-man/4050-53117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54622/","id":54622,"name":"Avengers Arena","site_detail_url":"https://comicvine.gamespot.com/avengers-arena/4050-54622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55243/","id":55243,"name":"Imposibles Vengadores","site_detail_url":"https://comicvine.gamespot.com/imposibles-vengadores/4050-55243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55357/","id":55357,"name":"Marvel Deluxe : X-Force","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-force/4050-55357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46378/","id":46378,"name":"Marvel Mega","site_detail_url":"https://comicvine.gamespot.com/marvel-mega/4050-46378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55675/","id":55675,"name":"History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe/4050-55675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55466/","id":55466,"name":"The Incredible Hulk: Ground Zero","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulk-ground-zero/4050-55466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55802/","id":55802,"name":"Savage Wolverine","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine/4050-55802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55834/","id":55834,"name":"AAFES 10th Edition","site_detail_url":"https://comicvine.gamespot.com/aafes-10th-edition/4050-55834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55856/","id":55856,"name":"Marvel's Thor Adaptation","site_detail_url":"https://comicvine.gamespot.com/marvels-thor-adaptation/4050-55856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55902/","id":55902,"name":"Captain America: Land of the Free","site_detail_url":"https://comicvine.gamespot.com/captain-america-land-of-the-free/4050-55902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21196/","id":21196,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-21196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56017/","id":56017,"name":"Marvel: The End","site_detail_url":"https://comicvine.gamespot.com/marvel-the-end/4050-56017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56060/","id":56060,"name":"Spider-Man Heroes & Villains Collection","site_detail_url":"https://comicvine.gamespot.com/spider-man-heroes-villains-collection/4050-56060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56166/","id":56166,"name":"Wiz","site_detail_url":"https://comicvine.gamespot.com/wiz/4050-56166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56277/","id":56277,"name":"Chelovek-Pauk","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk/4050-56277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56334/","id":56334,"name":"Avengers: Kree/Skrull War","site_detail_url":"https://comicvine.gamespot.com/avengers-kreeskrull-war/4050-56334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54428/","id":54428,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-54428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56485/","id":56485,"name":"Ultimate Comics: Divided We Fall, United We Stand","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-divided-we-fall-united-we-stand/4050-56485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39387/","id":39387,"name":"Strange","site_detail_url":"https://comicvine.gamespot.com/strange/4050-39387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56751/","id":56751,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-56751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56754/","id":56754,"name":"X-Force: Rough Cut","site_detail_url":"https://comicvine.gamespot.com/x-force-rough-cut/4050-56754/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56935/","id":56935,"name":"Lyudi Iks: Rosomakha","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-rosomakha/4050-56935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56944/","id":56944,"name":"MARVEL: Komanda","site_detail_url":"https://comicvine.gamespot.com/marvel-komanda/4050-56944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56974/","id":56974,"name":"Lyudi Iks. Luchshiye syuzhety","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-luchshiye-syuzhety/4050-56974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57055/","id":57055,"name":"Marvel Mix","site_detail_url":"https://comicvine.gamespot.com/marvel-mix/4050-57055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57070/","id":57070,"name":"Kapitan Amerika","site_detail_url":"https://comicvine.gamespot.com/kapitan-amerika/4050-57070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57074/","id":57074,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-57074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57105/","id":57105,"name":"Chelovek-Pauk i Rosomakha: Spetsial'noye isdaniye","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-i-rosomakha-spetsialnoye-isdaniye/4050-57105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57164/","id":57164,"name":"The Death of Captain America Complete Collection","site_detail_url":"https://comicvine.gamespot.com/the-death-of-captain-america-complete-collection/4050-57164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57167/","id":57167,"name":"X-Force Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-force-omnibus/4050-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57180/","id":57180,"name":"Secret Avengers","site_detail_url":"https://comicvine.gamespot.com/secret-avengers/4050-57180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57181/","id":57181,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men/4050-57181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57235/","id":57235,"name":"Chelovek-Pauk. Mega Komiks. Noviye istorii","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks-noviye-istorii/4050-57235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57244/","id":57244,"name":"Marvel. Priklyucheniya","site_detail_url":"https://comicvine.gamespot.com/marvel-priklyucheniya/4050-57244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57268/","id":57268,"name":"Marvel. Spetsial'niy vypusk","site_detail_url":"https://comicvine.gamespot.com/marvel-spetsialniy-vypusk/4050-57268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57287/","id":57287,"name":"Iron Man By Michelinie, Layton & Romita Jr.","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-michelinie-layton-romita-jr/4050-57287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57289/","id":57289,"name":"Scarlet Spider: Life After Death","site_detail_url":"https://comicvine.gamespot.com/scarlet-spider-life-after-death/4050-57289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23724/","id":23724,"name":"Essential Marvel Team-Up","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-team-up/4050-23724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57291/","id":57291,"name":"Marvel Universe Ultimate Spider-Man Digest","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spider-man-digest/4050-57291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57297/","id":57297,"name":"Mstiteli. Mega Komiks","site_detail_url":"https://comicvine.gamespot.com/mstiteli-mega-komiks/4050-57297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57392/","id":57392,"name":"Zhelezniy Chelovek. Mega Komiks","site_detail_url":"https://comicvine.gamespot.com/zhelezniy-chelovek-mega-komiks/4050-57392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57432/","id":57432,"name":"Amálgama","site_detail_url":"https://comicvine.gamespot.com/amalgama/4050-57432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57543/","id":57543,"name":"Captain America #25 Director's Cut","site_detail_url":"https://comicvine.gamespot.com/captain-america-25-directors-cut/4050-57543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57545/","id":57545,"name":"X-Force Especial","site_detail_url":"https://comicvine.gamespot.com/x-force-especial/4050-57545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57564/","id":57564,"name":"Acts of Vengeance Crossovers Omnibus","site_detail_url":"https://comicvine.gamespot.com/acts-of-vengeance-crossovers-omnibus/4050-57564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57676/","id":57676,"name":"World War Hulk","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk/4050-57676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57741/","id":57741,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-57741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57829/","id":57829,"name":"Marvel Zomnibus","site_detail_url":"https://comicvine.gamespot.com/marvel-zomnibus/4050-57829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39277/","id":39277,"name":"New Avengers by Brian Michael Bendis","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis/4050-39277/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52884/","id":52884,"name":"Red She-Hulk","site_detail_url":"https://comicvine.gamespot.com/red-she-hulk/4050-52884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58660/","id":58660,"name":"Ultimate Universe","site_detail_url":"https://comicvine.gamespot.com/ultimate-universe/4050-58660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35210/","id":35210,"name":"Marvel Masterworks: The Incredible Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-the-incredible-hulk/4050-35210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-23238/","id":23238,"name":"Ultimate Comics Wolverine","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-wolverine/4050-23238/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50737/","id":50737,"name":"Hawkeye: My Life as a Weapon","site_detail_url":"https://comicvine.gamespot.com/hawkeye-my-life-as-a-weapon/4050-50737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53919/","id":53919,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-53919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59564/","id":59564,"name":"Avengers: West Coast Avengers Omnibus","site_detail_url":"https://comicvine.gamespot.com/avengers-west-coast-avengers-omnibus/4050-59564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59571/","id":59571,"name":"Iron Man: Season One","site_detail_url":"https://comicvine.gamespot.com/iron-man-season-one/4050-59571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59583/","id":59583,"name":"Marvel's Iron Man 3 Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-iron-man-3-prelude/4050-59583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59622/","id":59622,"name":"Os Fabulosos X-Men","site_detail_url":"https://comicvine.gamespot.com/os-fabulosos-x-men/4050-59622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59758/","id":59758,"name":"Marvel Legacy: The 1960s-1990s Handbook","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-the-1960s-1990s-handbook/4050-59758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43539/","id":43539,"name":"Wolverine & the X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men/4050-43539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60072/","id":60072,"name":"Iron Man 2020","site_detail_url":"https://comicvine.gamespot.com/iron-man-2020/4050-60072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60220/","id":60220,"name":"X-Men Hors Série","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie/4050-60220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57481/","id":57481,"name":"X-Men: Fall of the Mutants","site_detail_url":"https://comicvine.gamespot.com/x-men-fall-of-the-mutants/4050-57481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60279/","id":60279,"name":"Grandi eventi Marvel","site_detail_url":"https://comicvine.gamespot.com/grandi-eventi-marvel/4050-60279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53535/","id":53535,"name":"A+X","site_detail_url":"https://comicvine.gamespot.com/ax/4050-53535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60322/","id":60322,"name":"Uncanny Avengers: The Red Shadow","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-the-red-shadow/4050-60322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34889/","id":34889,"name":"X-Mannen","site_detail_url":"https://comicvine.gamespot.com/x-mannen/4050-34889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60385/","id":60385,"name":"Astonishing X-Men Paperbacks","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks/4050-60385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60500/","id":60500,"name":"Incredibili Avengers","site_detail_url":"https://comicvine.gamespot.com/incredibili-avengers/4050-60500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60418/","id":60418,"name":"Amazing Stories of Suspense","site_detail_url":"https://comicvine.gamespot.com/amazing-stories-of-suspense/4050-60418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60586/","id":60586,"name":"Iron Man/War Machine: Hands of the Mandarin","site_detail_url":"https://comicvine.gamespot.com/iron-manwar-machine-hands-of-the-mandarin/4050-60586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60789/","id":60789,"name":"Free Comic Book Day 2013 (Infinity)","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2013-infinity/4050-60789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60834/","id":60834,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x/4050-60834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60890/","id":60890,"name":"Hasbro/Thanos & Warlock","site_detail_url":"https://comicvine.gamespot.com/hasbrothanos-warlock/4050-60890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43884/","id":43884,"name":"Avenging Spider-Man","site_detail_url":"https://comicvine.gamespot.com/avenging-spider-man/4050-43884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58822/","id":58822,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-58822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60969/","id":60969,"name":"Avengers Arena: Kill Or Die","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-kill-or-die/4050-60969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61226/","id":61226,"name":"Avengers - Die Rächer","site_detail_url":"https://comicvine.gamespot.com/avengers-die-racher/4050-61226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61377/","id":61377,"name":"Marvel Movies: Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-movies-avengers/4050-61377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61402/","id":61402,"name":"Indestructible Hulk: Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-agent-of-s-h-i-e-l-d/4050-61402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43497/","id":43497,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61734/","id":61734,"name":"100% Marvel best: X-Force","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-x-force/4050-61734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45031/","id":45031,"name":"Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble/4050-45031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62148/","id":62148,"name":"Avengers: Defenders War","site_detail_url":"https://comicvine.gamespot.com/avengers-defenders-war/4050-62148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62318/","id":62318,"name":"Captain America [Taco Bell]","site_detail_url":"https://comicvine.gamespot.com/captain-america-taco-bell/4050-62318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62460/","id":62460,"name":"Deadpool: Dead Presidents","site_detail_url":"https://comicvine.gamespot.com/deadpool-dead-presidents/4050-62460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62487/","id":62487,"name":"Avengers: The Complete Collection by Geoff Johns","site_detail_url":"https://comicvine.gamespot.com/avengers-the-complete-collection-by-geoff-johns/4050-62487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59391/","id":59391,"name":"Marvel Fact Files","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files/4050-59391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62738/","id":62738,"name":"The Avengers: The Ultimate Guide to Earth's Mightiest Heroes","site_detail_url":"https://comicvine.gamespot.com/the-avengers-the-ultimate-guide-to-earths-mighties/4050-62738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62905/","id":62905,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-62905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62964/","id":62964,"name":"Marvel's Thor: The Dark World Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-thor-the-dark-world-prelude/4050-62964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63254/","id":63254,"name":"Captain America: Transformation and Triumph","site_detail_url":"https://comicvine.gamespot.com/captain-america-transformation-and-triumph/4050-63254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55161/","id":55161,"name":"Marvel World","site_detail_url":"https://comicvine.gamespot.com/marvel-world/4050-55161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47347/","id":47347,"name":"Imposible Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x/4050-47347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63315/","id":63315,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-63315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63430/","id":63430,"name":"Wolverine: First Cuts","site_detail_url":"https://comicvine.gamespot.com/wolverine-first-cuts/4050-63430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63544/","id":63544,"name":"Ultimate Captain America","site_detail_url":"https://comicvine.gamespot.com/ultimate-captain-america/4050-63544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63876/","id":63876,"name":"The Invincible Iron Man: The Future","site_detail_url":"https://comicvine.gamespot.com/the-invincible-iron-man-the-future/4050-63876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64122/","id":64122,"name":"Son of Origins of Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/son-of-origins-of-marvel-comics/4050-64122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43257/","id":43257,"name":"Spectacular Spider-Man Adventures","site_detail_url":"https://comicvine.gamespot.com/spectacular-spider-man-adventures/4050-43257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64431/","id":64431,"name":"Ultimate Comics Ultimates by Sam Humphries","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-ultimates-by-sam-humphries/4050-64431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64439/","id":64439,"name":"Incredible Hulk: From the Marvel UK Vaults","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-from-the-marvel-uk-vaults/4050-64439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64613/","id":64613,"name":"X-mannen Special","site_detail_url":"https://comicvine.gamespot.com/x-mannen-special/4050-64613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64683/","id":64683,"name":"Avengers A.I.","site_detail_url":"https://comicvine.gamespot.com/avengers-a-i/4050-64683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64687/","id":64687,"name":"The Superior Foes of Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man/4050-64687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64688/","id":64688,"name":"What If? AVX","site_detail_url":"https://comicvine.gamespot.com/what-if-avx/4050-64688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64773/","id":64773,"name":"Marvel Now! Omnibus","site_detail_url":"https://comicvine.gamespot.com/marvel-now-omnibus/4050-64773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64776/","id":64776,"name":"Uncanny X-Men: Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-revolution/4050-64776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64778/","id":64778,"name":"Wolverine By Mark Millar Omnibus","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus/4050-64778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65022/","id":65022,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-65022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65026/","id":65026,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-65026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65028/","id":65028,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-65028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65043/","id":65043,"name":"Die Ultimativen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-ultimativen-x-men/4050-65043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58174/","id":58174,"name":"La Nueva Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x/4050-58174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65135/","id":65135,"name":"Share Your Universe: The Avengers!","site_detail_url":"https://comicvine.gamespot.com/share-your-universe-the-avengers/4050-65135/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65187/","id":65187,"name":"Avengers: The Last White Event","site_detail_url":"https://comicvine.gamespot.com/avengers-the-last-white-event/4050-65187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65336/","id":65336,"name":"The Best Of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel/4050-65336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65316/","id":65316,"name":"Ryhmä-X","site_detail_url":"https://comicvine.gamespot.com/ryhma-x/4050-65316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2694/","id":2694,"name":"Marvel Treasury Edition","site_detail_url":"https://comicvine.gamespot.com/marvel-treasury-edition/4050-2694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65431/","id":65431,"name":"Deadpool By Daniel Way: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-daniel-way-the-complete-collection/4050-65431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65438/","id":65438,"name":"Avengers/Invaders","site_detail_url":"https://comicvine.gamespot.com/avengersinvaders/4050-65438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65968/","id":65968,"name":"Black Bolt: Something Inhuman This Way Comes","site_detail_url":"https://comicvine.gamespot.com/black-bolt-something-inhuman-this-way-comes/4050-65968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66115/","id":66115,"name":"The Mighty Thor By Walter Simonson","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-by-walter-simonson/4050-66115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66118/","id":66118,"name":"Winter Soldier: The Electric Ghost","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-electric-ghost/4050-66118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66280/","id":66280,"name":"Die Avengers TV Comic","site_detail_url":"https://comicvine.gamespot.com/die-avengers-tv-comic/4050-66280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66319/","id":66319,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4050-66319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66376/","id":66376,"name":"Wolverine: Hunting Season","site_detail_url":"https://comicvine.gamespot.com/wolverine-hunting-season/4050-66376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66757/","id":66757,"name":"Capitán América","site_detail_url":"https://comicvine.gamespot.com/capitan-america/4050-66757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53920/","id":53920,"name":"Thor: God of Thunder","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder/4050-53920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66815/","id":66815,"name":"X-Men: A Queda dos Mutantes","site_detail_url":"https://comicvine.gamespot.com/x-men-a-queda-dos-mutantes/4050-66815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66835/","id":66835,"name":"Secret Avengers: Reverie","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-reverie/4050-66835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65024/","id":65024,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-65024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67200/","id":67200,"name":"Captain Britain: The Lion and The Spider","site_detail_url":"https://comicvine.gamespot.com/captain-britain-the-lion-and-the-spider/4050-67200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67199/","id":67199,"name":"Captain Britain: A Hero Reborn","site_detail_url":"https://comicvine.gamespot.com/captain-britain-a-hero-reborn/4050-67199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67198/","id":67198,"name":"Captain Britain: Birth of a Legend","site_detail_url":"https://comicvine.gamespot.com/captain-britain-birth-of-a-legend/4050-67198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67204/","id":67204,"name":"Marvel Platinum: The Greatest Foes of Wolverine","site_detail_url":"https://comicvine.gamespot.com/marvel-platinum-the-greatest-foes-of-wolverine/4050-67204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54110/","id":54110,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-54110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67278/","id":67278,"name":"Indestructible Hulk: Gods and Monster","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-gods-and-monster/4050-67278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67287/","id":67287,"name":"Avengers/Iron Man: First Sign","site_detail_url":"https://comicvine.gamespot.com/avengersiron-man-first-sign/4050-67287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67341/","id":67341,"name":"Iron Man By Kurt Busiek and Sean Chen Omnibus","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-kurt-busiek-and-sean-chen-omnibus/4050-67341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67342/","id":67342,"name":"Shield By Steranko: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/shield-by-steranko-the-complete-collection/4050-67342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67382/","id":67382,"name":"Avengers: Supreme Justice","site_detail_url":"https://comicvine.gamespot.com/avengers-supreme-justice/4050-67382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67501/","id":67501,"name":"All-New X-Men: Out of Their Depths","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-out-of-their-depths/4050-67501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67506/","id":67506,"name":"Iron Man Epic Collection: The Enemy Within","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-the-enemy-within/4050-67506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67625/","id":67625,"name":"Man-Thing Omnibus","site_detail_url":"https://comicvine.gamespot.com/manthing-omnibus/4050-67625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67787/","id":67787,"name":"Red She-Hulk: Route 616","site_detail_url":"https://comicvine.gamespot.com/red-shehulk-route-616/4050-67787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67789/","id":67789,"name":"What If? AvX","site_detail_url":"https://comicvine.gamespot.com/what-if-avx/4050-67789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67916/","id":67916,"name":"All-New X-Men Special","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-special/4050-67916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67917/","id":67917,"name":"Captain America: Living Legend","site_detail_url":"https://comicvine.gamespot.com/captain-america-living-legend/4050-67917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67920/","id":67920,"name":"Marvel Universe Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble/4050-67920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67985/","id":67985,"name":"Avengers: Endless Wartime","site_detail_url":"https://comicvine.gamespot.com/avengers-endless-wartime/4050-67985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68166/","id":68166,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax/4050-68166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68189/","id":68189,"name":"Iron Man: Armored Vengeance","site_detail_url":"https://comicvine.gamespot.com/iron-man-armored-vengeance/4050-68189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68320/","id":68320,"name":"Indestructible Hulk Special","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-special/4050-68320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63785/","id":63785,"name":"I nuovissimi X-Men","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men/4050-63785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68576/","id":68576,"name":"Uncanny Avengers: The Apocalypse Twins","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-the-apocalypse-twins/4050-68576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68650/","id":68650,"name":"Die offizielle Marvel-Comic-Sammlung","site_detail_url":"https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung/4050-68650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67028/","id":67028,"name":"X-Men: Battle of the Atom","site_detail_url":"https://comicvine.gamespot.com/x-men-battle-of-the-atom/4050-67028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68752/","id":68752,"name":"Iron Man: Hypervelocity","site_detail_url":"https://comicvine.gamespot.com/iron-man-hypervelocity/4050-68752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68828/","id":68828,"name":"Avante, Vingadores!","site_detail_url":"https://comicvine.gamespot.com/avante-vingadores/4050-68828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68829/","id":68829,"name":"Captain America Comic-Taschenbuch","site_detail_url":"https://comicvine.gamespot.com/captain-america-comictaschenbuch/4050-68829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68918/","id":68918,"name":"S.H.I.E.L.D. Origins","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-origins/4050-68918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68921/","id":68921,"name":"Cataclysm: The Ultimates' Last Stand","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand/4050-68921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68922/","id":68922,"name":"Longshot Saves the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe/4050-68922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68971/","id":68971,"name":"Hawkeye","site_detail_url":"https://comicvine.gamespot.com/hawkeye/4050-68971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68975/","id":68975,"name":"Uncanny X-Men: Broken","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-broken/4050-68975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69122/","id":69122,"name":"Cataclysm: Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/cataclysm-ultimate-spider-man/4050-69122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69176/","id":69176,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-69176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69216/","id":69216,"name":"Hulk by Jeph Loeb","site_detail_url":"https://comicvine.gamespot.com/hulk-by-jeph-loeb/4050-69216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65646/","id":65646,"name":"Die Neuen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men/4050-65646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69323/","id":69323,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-69323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69371/","id":69371,"name":"Cataclysm: The Ultimates","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates/4050-69371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65629/","id":65629,"name":"Superior Spider-Man Team-Up","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-team-up/4050-65629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69382/","id":69382,"name":"A+X: A+X = Amazing","site_detail_url":"https://comicvine.gamespot.com/ax-ax-amazing/4050-69382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69613/","id":69613,"name":"Avengers: Absolute Vision","site_detail_url":"https://comicvine.gamespot.com/avengers-absolute-vision/4050-69613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69642/","id":69642,"name":"Supreendentes X-Men","site_detail_url":"https://comicvine.gamespot.com/supreendentes-xmen/4050-69642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69687/","id":69687,"name":"Indestructible Hulk Annual","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-annual/4050-69687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69791/","id":69791,"name":"Grandes Heróis Marvel","site_detail_url":"https://comicvine.gamespot.com/grandes-herois-marvel/4050-69791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69802/","id":69802,"name":"Maiores Clássicos dos X-Men","site_detail_url":"https://comicvine.gamespot.com/maiores-classicos-dos-xmen/4050-69802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67223/","id":67223,"name":"Mighty Avengers","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers/4050-67223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69993/","id":69993,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70029/","id":70029,"name":"Spider-Man Chronicle","site_detail_url":"https://comicvine.gamespot.com/spider-man-chronicle/4050-70029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70088/","id":70088,"name":"LEGO Marvel Super Heroes","site_detail_url":"https://comicvine.gamespot.com/lego-marvel-super-heroes/4050-70088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70186/","id":70186,"name":"All-New Marvel NOW! Previews","site_detail_url":"https://comicvine.gamespot.com/allnew-marvel-now-previews/4050-70186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49986/","id":49986,"name":"Wolverine e gli X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men/4050-49986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70309/","id":70309,"name":"Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-universe/4050-70309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68249/","id":68249,"name":"The Astonishing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spiderman/4050-68249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70580/","id":70580,"name":"Avengers A.I.: Human After All","site_detail_url":"https://comicvine.gamespot.com/avengers-ai-human-after-all/4050-70580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70676/","id":70676,"name":"Ultimate Spider-Man Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-infinite-comic/4050-70676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70689/","id":70689,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/xmen-extra/4050-70689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69175/","id":69175,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70702/","id":70702,"name":"All-New Marvel Now! Point One","site_detail_url":"https://comicvine.gamespot.com/allnew-marvel-now-point-one/4050-70702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70704/","id":70704,"name":"Avengers World","site_detail_url":"https://comicvine.gamespot.com/avengers-world/4050-70704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67698/","id":67698,"name":"Infinity: Heist","site_detail_url":"https://comicvine.gamespot.com/infinity-heist/4050-67698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70706/","id":70706,"name":"Revolutionary War: Alpha","site_detail_url":"https://comicvine.gamespot.com/revolutionary-war-alpha/4050-70706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67397/","id":67397,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-67397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70826/","id":70826,"name":"Superior Spider-Man Team-Up: Friendly Fire","site_detail_url":"https://comicvine.gamespot.com/superior-spiderman-teamup-friendly-fire/4050-70826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70827/","id":70827,"name":"X-Men: Battle of the Atom","site_detail_url":"https://comicvine.gamespot.com/xmen-battle-of-the-atom/4050-70827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69867/","id":69867,"name":"Marvel Knights: Hulk","site_detail_url":"https://comicvine.gamespot.com/marvel-knights-hulk/4050-69867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47348/","id":47348,"name":"Lobezno y La Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x/4050-47348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54701/","id":54701,"name":"Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-universe/4050-54701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70949/","id":70949,"name":"Avengers Arena: Boss Level","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-boss-level/4050-70949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70573/","id":70573,"name":"A+X","site_detail_url":"https://comicvine.gamespot.com/a-x/4050-70573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71224/","id":71224,"name":"Indestructible Hulk: S.M.A.S.H. Time","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-smash-time/4050-71224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71227/","id":71227,"name":"X-Factor By Peter David: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/xfactor-by-peter-david-the-complete-collection/4050-71227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71357/","id":71357,"name":"Captain America: The Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-winter-soldier/4050-71357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71364/","id":71364,"name":"Biblioteca Marvel","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel/4050-71364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71484/","id":71484,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-71484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71515/","id":71515,"name":"Deadpool by Posehn And Duggan","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-posehn-and-duggan/4050-71515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71516/","id":71516,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4050-71516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71521/","id":71521,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71565/","id":71565,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71613/","id":71613,"name":"Winter Soldier: The Bitter March","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-bitter-march/4050-71613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71915/","id":71915,"name":"World War Hulk X-Men","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men/4050-71915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71996/","id":71996,"name":"Secret Avengers: Iliad","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-iliad/4050-71996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71998/","id":71998,"name":"Superior Foes of Spider-Man: Getting the Band Back Together","site_detail_url":"https://comicvine.gamespot.com/superior-foes-of-spiderman-getting-the-band-back-t/4050-71998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72000/","id":72000,"name":"X-Force by Craig Kyle & Chris Yost","site_detail_url":"https://comicvine.gamespot.com/xforce-by-craig-kyle-chris-yost/4050-72000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42655/","id":42655,"name":"Marvel Apresenta","site_detail_url":"https://comicvine.gamespot.com/marvel-apresenta/4050-42655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72112/","id":72112,"name":"Moon Knight","site_detail_url":"https://comicvine.gamespot.com/moon-knight/4050-72112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72161/","id":72161,"name":"Omnibus House Of M","site_detail_url":"https://comicvine.gamespot.com/omnibus-house-of-m/4050-72161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72196/","id":72196,"name":"Avengers: Falcon","site_detail_url":"https://comicvine.gamespot.com/avengers-falcon/4050-72196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72271/","id":72271,"name":"Avengers Undercover","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover/4050-72271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72274/","id":72274,"name":"Secret Avengers","site_detail_url":"https://comicvine.gamespot.com/secret-avengers/4050-72274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72370/","id":72370,"name":"Wolverine: Killable","site_detail_url":"https://comicvine.gamespot.com/wolverine-killable/4050-72370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72466/","id":72466,"name":"The Immortal Iron Fist: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/the-immortal-iron-fist-the-complete-collection/4050-72466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68827/","id":68827,"name":"Os Vingadores","site_detail_url":"https://comicvine.gamespot.com/os-vingadores/4050-68827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72503/","id":72503,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-72503/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72523/","id":72523,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-xmen/4050-72523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72581/","id":72581,"name":"Revolutionary War: Omega","site_detail_url":"https://comicvine.gamespot.com/revolutionary-war-omega/4050-72581/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72583/","id":72583,"name":"Survive","site_detail_url":"https://comicvine.gamespot.com/survive/4050-72583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72616/","id":72616,"name":"Marvel Now! Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-avengers/4050-72616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72791/","id":72791,"name":"Inhuman","site_detail_url":"https://comicvine.gamespot.com/inhuman/4050-72791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72111/","id":72111,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4050-72111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72795/","id":72795,"name":"What If? Age of Ultron","site_detail_url":"https://comicvine.gamespot.com/what-if-age-of-ultron/4050-72795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57227/","id":57227,"name":"Chelovek-Pauk. Mega Komiks","site_detail_url":"https://comicvine.gamespot.com/chelovek-pauk-mega-komiks/4050-57227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72919/","id":72919,"name":"Spider-Man: Revenge of the Sinister Six","site_detail_url":"https://comicvine.gamespot.com/spiderman-revenge-of-the-sinister-six/4050-72919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73012/","id":73012,"name":"Captain America: Loose Nuke","site_detail_url":"https://comicvine.gamespot.com/captain-america-loose-nuke/4050-73012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73013/","id":73013,"name":"Daredevil Epic Collection: Fall From Grace","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-fall-from-grace/4050-73013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73014/","id":73014,"name":"Infinity Companion","site_detail_url":"https://comicvine.gamespot.com/infinity-companion/4050-73014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73025/","id":73025,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-73025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68919/","id":68919,"name":"Amazing X-Men","site_detail_url":"https://comicvine.gamespot.com/amazing-xmen/4050-68919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73100/","id":73100,"name":"Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk/4050-73100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73240/","id":73240,"name":"Elektra","site_detail_url":"https://comicvine.gamespot.com/elektra/4050-73240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73264/","id":73264,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-73264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73265/","id":73265,"name":"Vengadores Mundiales","site_detail_url":"https://comicvine.gamespot.com/vengadores-mundiales/4050-73265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73319/","id":73319,"name":"Spectacular Spider-Man Adventures: Riot at Ryker's Island!","site_detail_url":"https://comicvine.gamespot.com/spectacular-spiderman-adventures-riot-at-rykers-is/4050-73319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73353/","id":73353,"name":"Reino Oscuro: Wolverine Origins","site_detail_url":"https://comicvine.gamespot.com/reino-oscuro-wolverine-origins/4050-73353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73358/","id":73358,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-73358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73379/","id":73379,"name":"Projekt X / X-Men","site_detail_url":"https://comicvine.gamespot.com/projekt-x-xmen/4050-73379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73395/","id":73395,"name":"The Incredible Hulks","site_detail_url":"https://comicvine.gamespot.com/the-incredible-hulks/4050-73395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49053/","id":49053,"name":"Wolverine and the X-Men by Jason Aaron","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron/4050-49053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73587/","id":73587,"name":"Rocket Raccoon: Free Comic Book Day","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon-free-comic-book-day/4050-73587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73678/","id":73678,"name":"Miles Morales: Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spiderman/4050-73678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73718/","id":73718,"name":"Amazing Spider-Man: Who Am I?","site_detail_url":"https://comicvine.gamespot.com/amazing-spiderman-who-am-i/4050-73718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73768/","id":73768,"name":"Uncanny X-Men: The Good, The Bad, The Inhuman","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-the-good-the-bad-the-inhuman/4050-73768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73801/","id":73801,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4050-73801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61802/","id":61802,"name":"Marvel Pocketbook","site_detail_url":"https://comicvine.gamespot.com/marvel-pocketbook/4050-61802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71659/","id":71659,"name":"She-Hulk by Dan Slott: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/shehulk-by-dan-slott-the-complete-collection/4050-71659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74073/","id":74073,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/xmen-extra/4050-74073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74075/","id":74075,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-74075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74203/","id":74203,"name":"Deadpool: Deadpool vs. S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/deadpool-deadpool-vs-shield/4050-74203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74204/","id":74204,"name":"Longshot Saves the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/longshot-saves-the-marvel-universe/4050-74204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74213/","id":74213,"name":"X-Men: Gênese Mutante","site_detail_url":"https://comicvine.gamespot.com/xmen-genese-mutante/4050-74213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74274/","id":74274,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-74274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74316/","id":74316,"name":"Marvel Deluxe Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-xmen/4050-74316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74434/","id":74434,"name":"Avengers Assemble: The Forgeries of Jealousy","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-the-forgeries-of-jealousy/4050-74434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74435/","id":74435,"name":"Cataclysm: The Ultimates Last Stand","site_detail_url":"https://comicvine.gamespot.com/cataclysm-the-ultimates-last-stand/4050-74435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74489/","id":74489,"name":"Die Gruppe X Taschenbuch","site_detail_url":"https://comicvine.gamespot.com/die-gruppe-x-taschenbuch/4050-74489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74578/","id":74578,"name":"Vingadores-X","site_detail_url":"https://comicvine.gamespot.com/vingadores-x/4050-74578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74653/","id":74653,"name":"Indestructible Hulk: Humanity Bomb","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-humanity-bomb/4050-74653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74656/","id":74656,"name":"Wolverine and the X-Men by Jason Aaron Omnibus","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-xmen-by-jason-aaron-omnibus/4050-74656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71064/","id":71064,"name":"All-New Invaders","site_detail_url":"https://comicvine.gamespot.com/allnew-invaders/4050-71064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75009/","id":75009,"name":"Amazing X-Men: The Quest For Nightcrawler","site_detail_url":"https://comicvine.gamespot.com/amazing-xmen-the-quest-for-nightcrawler/4050-75009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75011/","id":75011,"name":"Avengers World: A.I.M.pire","site_detail_url":"https://comicvine.gamespot.com/avengers-world-aimpire/4050-75011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75015/","id":75015,"name":"Avengers Universe","site_detail_url":"https://comicvine.gamespot.com/avengers-universe/4050-75015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75245/","id":75245,"name":"Avengers A.I.: 12,000 A.D.","site_detail_url":"https://comicvine.gamespot.com/avengers-ai-12000-ad/4050-75245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73241/","id":73241,"name":"Original Sin","site_detail_url":"https://comicvine.gamespot.com/original-sin/4050-73241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74652/","id":74652,"name":"Original Sin Special Edition","site_detail_url":"https://comicvine.gamespot.com/original-sin-special-edition/4050-74652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71979/","id":71979,"name":"La Asombrosa Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/la-asombrosa-patrullax/4050-71979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72417/","id":72417,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4050-72417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75936/","id":75936,"name":"The Wedding of Deadpool","site_detail_url":"https://comicvine.gamespot.com/the-wedding-of-deadpool/4050-75936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76065/","id":76065,"name":"Marvel's Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/marvels-agents-of-shield/4050-76065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71949/","id":71949,"name":"Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4050-71949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71431/","id":71431,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-71431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76451/","id":76451,"name":"Captain America: The Iron Nail","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-iron-nail/4050-76451/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76540/","id":76540,"name":"Winter Soldier: The Bitter March","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-the-bitter-march/4050-76540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76702/","id":76702,"name":"X-Men: Operation Zero Tolerance","site_detail_url":"https://comicvine.gamespot.com/xmen-operation-zero-tolerance/4050-76702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76735/","id":76735,"name":"Hawkeye vs. Deadpool","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool/4050-76735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65645/","id":65645,"name":"Wolverine & Die X-Men Sonderband","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband/4050-65645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76899/","id":76899,"name":"All-New X-Men: One Down","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-one-down/4050-76899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76940/","id":76940,"name":"Winter Soldier By Brubaker: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/winter-soldier-by-brubaker-the-complete-collection/4050-76940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77053/","id":77053,"name":"Uncanny X-Men: Vs. S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-vs-shield/4050-77053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77330/","id":77330,"name":"Magneto: Infamous","site_detail_url":"https://comicvine.gamespot.com/magneto-infamous/4050-77330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77334/","id":77334,"name":"Moon Knight: From The Dead","site_detail_url":"https://comicvine.gamespot.com/moon-knight-from-the-dead/4050-77334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77336/","id":77336,"name":"The New Mutants/X-Force: Demon Bear","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-x-force-demon-bear/4050-77336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75141/","id":75141,"name":"Savage Hulk","site_detail_url":"https://comicvine.gamespot.com/savage-hulk/4050-75141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55330/","id":55330,"name":"New Avengers","site_detail_url":"https://comicvine.gamespot.com/new-avengers/4050-55330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73940/","id":73940,"name":"Amazing X-Men","site_detail_url":"https://comicvine.gamespot.com/amazing-xmen/4050-73940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68371/","id":68371,"name":"Marvel Zombies: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/marvel-zombies-the-complete-collection/4050-68371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77761/","id":77761,"name":"Secret Avengers: Let's Have A Problem","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-lets-have-a-problem/4050-77761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77424/","id":77424,"name":"Avengers & X-Men: Axis","site_detail_url":"https://comicvine.gamespot.com/avengers-x-men-axis/4050-77424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78106/","id":78106,"name":"Avengers Undercover: Going Native","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-going-native/4050-78106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78236/","id":78236,"name":"Brutus","site_detail_url":"https://comicvine.gamespot.com/brutus/4050-78236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75984/","id":75984,"name":"Wolverine: Three Months To Die","site_detail_url":"https://comicvine.gamespot.com/wolverine-three-months-to-die/4050-75984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78275/","id":78275,"name":"Guardians of the Galaxy: Guardians Disassembled","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-guardians-disassembled/4050-78275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78295/","id":78295,"name":"Thor: God of Thunder: The Last Days of Midgard","site_detail_url":"https://comicvine.gamespot.com/thor-god-of-thunder-the-last-days-of-midgard/4050-78295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77808/","id":77808,"name":"Deathlok","site_detail_url":"https://comicvine.gamespot.com/deathlok/4050-77808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78355/","id":78355,"name":"Marvel Universe Ultimate Spider-Man: Web Warriors","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-web-warriors/4050-78355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78455/","id":78455,"name":"Inhuman: Genesis","site_detail_url":"https://comicvine.gamespot.com/inhuman-genesis/4050-78455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78549/","id":78549,"name":"Captain America: Peggy Carter, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/captain-america-peggy-carter-agent-of-shield/4050-78549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78550/","id":78550,"name":"Thanos vs. Hulk","site_detail_url":"https://comicvine.gamespot.com/thanos-vs-hulk/4050-78550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78626/","id":78626,"name":"Captain America: The Trial of Captain America Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-the-trial-of-captain-america-omnib/4050-78626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77576/","id":77576,"name":"Death of Wolverine: The Logan Legacy","site_detail_url":"https://comicvine.gamespot.com/death-of-wolverine-the-logan-legacy/4050-77576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78716/","id":78716,"name":"Guardians of the Galaxy Annual","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-annual/4050-78716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26686/","id":26686,"name":"Essential Marvel Saga","site_detail_url":"https://comicvine.gamespot.com/essential-marvel-saga/4050-26686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79024/","id":79024,"name":"All-New X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-annual/4050-79024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79025/","id":79025,"name":"Marvel's The Avengers","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers/4050-79025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79159/","id":79159,"name":"S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d/4050-79159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79511/","id":79511,"name":"The Astonishing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spiderman/4050-79511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79512/","id":79512,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-xmen/4050-79512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79515/","id":79515,"name":"Ultimate Spider-Man Magazine","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-magazine/4050-79515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79516/","id":79516,"name":"Wolverine and Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool/4050-79516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78048/","id":78048,"name":"Superior Iron Man","site_detail_url":"https://comicvine.gamespot.com/superior-iron-man/4050-78048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79615/","id":79615,"name":"Iron Man Epic Collection: Stark Wars","site_detail_url":"https://comicvine.gamespot.com/iron-man-epic-collection-stark-wars/4050-79615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79619/","id":79619,"name":"Magneto: Reversals","site_detail_url":"https://comicvine.gamespot.com/magneto-reversals/4050-79619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79881/","id":79881,"name":"Avengers: Age of Ultron Prelude - This Sceptre'd Isle Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/avengers-age-of-ultron-prelude-this-sceptred-isle-/4050-79881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80034/","id":80034,"name":"Deathlok: Rage Against the Machine","site_detail_url":"https://comicvine.gamespot.com/deathlok-rage-against-the-machine/4050-80034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80161/","id":80161,"name":"Daredevil: West-Case Scenario","site_detail_url":"https://comicvine.gamespot.com/daredevil-westcase-scenario/4050-80161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75336/","id":75336,"name":"Rocket Raccoon","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon/4050-75336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80530/","id":80530,"name":"Hawkeye vs. Deadpool","site_detail_url":"https://comicvine.gamespot.com/hawkeye-vs-deadpool/4050-80530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80534/","id":80534,"name":"Marvel's The Avengers: Age of Ultron Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-age-of-ultron-prelude/4050-80534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77223/","id":77223,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4050-77223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45913/","id":45913,"name":"Avengers Omnibus","site_detail_url":"https://comicvine.gamespot.com/avengers-omnibus/4050-45913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80985/","id":80985,"name":"Secret Avengers: The Labyrinth","site_detail_url":"https://comicvine.gamespot.com/secret-avengers-the-labyrinth/4050-80985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79270/","id":79270,"name":"Wolverines","site_detail_url":"https://comicvine.gamespot.com/wolverines/4050-79270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70705/","id":70705,"name":"Black Widow","site_detail_url":"https://comicvine.gamespot.com/black-widow/4050-70705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78044/","id":78044,"name":"All-New Captain America","site_detail_url":"https://comicvine.gamespot.com/allnew-captain-america/4050-78044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81605/","id":81605,"name":"True Believers: Miles Morales: Ultimate Spider-Man","site_detail_url":"https://comicvine.gamespot.com/true-believers-miles-morales-ultimate-spiderman/4050-81605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81665/","id":81665,"name":"Elektra: Reverence","site_detail_url":"https://comicvine.gamespot.com/elektra-reverence/4050-81665/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81729/","id":81729,"name":"Free Comic Book Day 2015 (Secret Wars)","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2015-secret-wars/4050-81729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81830/","id":81830,"name":"Avengers VS","site_detail_url":"https://comicvine.gamespot.com/avengers-vs/4050-81830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82106/","id":82106,"name":"Secret Warriors: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-the-complete-collection/4050-82106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80453/","id":80453,"name":"All-New Hawkeye","site_detail_url":"https://comicvine.gamespot.com/allnew-hawkeye/4050-80453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82434/","id":82434,"name":"Marvel Masterworks: Not Brand Echh","site_detail_url":"https://comicvine.gamespot.com/marvel-masterworks-not-brand-echh/4050-82434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78046/","id":78046,"name":"Marvel Universe Avengers Assemble Season 2","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2/4050-78046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82510/","id":82510,"name":"Miles Morales: Ultimate Spider-Man - Revelations","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-spider-man-revelations/4050-82510/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82512/","id":82512,"name":"Ms. Marvel: Crushed","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-crushed/4050-82512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82667/","id":82667,"name":"Annihilation: Conquest Omnibus","site_detail_url":"https://comicvine.gamespot.com/annihilation-conquest-omnibus/4050-82667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80454/","id":80454,"name":"Guardians Team-Up","site_detail_url":"https://comicvine.gamespot.com/guardians-teamup/4050-80454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82985/","id":82985,"name":"S.H.I.E.L.D.: Perfect Bullets","site_detail_url":"https://comicvine.gamespot.com/shield-perfect-bullets/4050-82985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82337/","id":82337,"name":"Amazing Spider-Man: Renew Your Vows","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-renew-your-vows/4050-82337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83125/","id":83125,"name":"Civil War","site_detail_url":"https://comicvine.gamespot.com/civil-war/4050-83125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83141/","id":83141,"name":"King-Size Kirby","site_detail_url":"https://comicvine.gamespot.com/kingsize-kirby/4050-83141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83663/","id":83663,"name":"Ant-Man: Die Offizielle Vorgeschichte Zum Film","site_detail_url":"https://comicvine.gamespot.com/antman-die-offizielle-vorgeschichte-zum-film/4050-83663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80969/","id":80969,"name":"Hulk: Omega Hulk","site_detail_url":"https://comicvine.gamespot.com/hulk-omega-hulk/4050-80969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83584/","id":83584,"name":"Magneto: Shadow Games","site_detail_url":"https://comicvine.gamespot.com/magneto-shadow-games/4050-83584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82109/","id":82109,"name":"Ultimate End","site_detail_url":"https://comicvine.gamespot.com/ultimate-end/4050-82109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83846/","id":83846,"name":"Avengers Presented By Gillette","site_detail_url":"https://comicvine.gamespot.com/avengers-presented-by-gillette/4050-83846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83833/","id":83833,"name":"Operation: S.I.N. - Agent Carter","site_detail_url":"https://comicvine.gamespot.com/operation-sin-agent-carter/4050-83833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83869/","id":83869,"name":"Avengers & X-Men: Axis","site_detail_url":"https://comicvine.gamespot.com/avengers-xmen-axis/4050-83869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83871/","id":83871,"name":"Wolverine/Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-deadpool/4050-83871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83872/","id":83872,"name":"Was Wäre, Wenn ...? AVX","site_detail_url":"https://comicvine.gamespot.com/was-ware-wenn-avx/4050-83872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61382/","id":61382,"name":"Spider-Man der Avenger","site_detail_url":"https://comicvine.gamespot.com/spider-man-der-avenger/4050-61382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83874/","id":83874,"name":"Iron Man/Hulk","site_detail_url":"https://comicvine.gamespot.com/iron-manhulk/4050-83874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81415/","id":81415,"name":"Marvel Universe All-New Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-all-new-avengers-assemble/4050-81415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78202/","id":78202,"name":"Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/spider-woman/4050-78202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84151/","id":84151,"name":"Marvel Klassiker: Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/marvel-klassiker-fantastic-four/4050-84151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84159/","id":84159,"name":"Guardians of the Galaxy","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-84159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84160/","id":84160,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4050-84160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84172/","id":84172,"name":"Savage Wolverine","site_detail_url":"https://comicvine.gamespot.com/savage-wolverine/4050-84172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84178/","id":84178,"name":"Coleccionable Ultimate","site_detail_url":"https://comicvine.gamespot.com/coleccionable-ultimate/4050-84178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84288/","id":84288,"name":"Mockingbird: S.H.I.E.L.D. 50th Anniversary","site_detail_url":"https://comicvine.gamespot.com/mockingbird-shield-50th-anniversary/4050-84288/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84347/","id":84347,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4050-84347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84397/","id":84397,"name":"El Alucinate Hulk","site_detail_url":"https://comicvine.gamespot.com/el-alucinate-hulk/4050-84397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84439/","id":84439,"name":"Quake: S.H.I.E.L.D. 50th Anniversary","site_detail_url":"https://comicvine.gamespot.com/quake-shield-50th-anniversary/4050-84439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84487/","id":84487,"name":"Avengers & X-Men: Axis","site_detail_url":"https://comicvine.gamespot.com/avengers-xmen-axis/4050-84487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84488/","id":84488,"name":"X-men Hors série","site_detail_url":"https://comicvine.gamespot.com/xmen-hors-serie/4050-84488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84565/","id":84565,"name":"Agent Carter: S.H.I.E.L.D. 50th Anniversary","site_detail_url":"https://comicvine.gamespot.com/agent-carter-shield-50th-anniversary/4050-84565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84755/","id":84755,"name":"Deathlok: Man Versus Machine","site_detail_url":"https://comicvine.gamespot.com/deathlok-man-versus-machine/4050-84755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84762/","id":84762,"name":"Fury: S.H.I.E.L.D. 50th Anniversary","site_detail_url":"https://comicvine.gamespot.com/fury-shield-50th-anniversary/4050-84762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84956/","id":84956,"name":"The Cavalry: S.H.I.E.L.D. 50th Anniversary","site_detail_url":"https://comicvine.gamespot.com/the-cavalry-shield-50th-anniversary/4050-84956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84970/","id":84970,"name":"Guardians of the Galaxy: Through the Looking Glass","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-through-the-looking-glass/4050-84970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84984/","id":84984,"name":"The Monster of Frankenstein","site_detail_url":"https://comicvine.gamespot.com/the-monster-of-frankenstein/4050-84984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85052/","id":85052,"name":"S.H.I.E.L.D. by Lee & Kirby: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/shield-by-lee-kirby-the-complete-collection/4050-85052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85075/","id":85075,"name":"All-New All-Different Marvel Point One","site_detail_url":"https://comicvine.gamespot.com/allnew-alldifferent-marvel-point-one/4050-85075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85076/","id":85076,"name":"The Amazing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spiderman/4050-85076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85077/","id":85077,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-85077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85133/","id":85133,"name":"S.H.I.E.L.D.: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/shield-the-complete-collection/4050-85133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85117/","id":85117,"name":"Marvel's The Avengers Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvels-the-avengers-encyclopedia/4050-85117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85274/","id":85274,"name":"Captain America: Sam Wilson","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson/4050-85274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85280/","id":85280,"name":"Damage Control: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/damage-control-the-complete-collection/4050-85280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85301/","id":85301,"name":"New Avengers","site_detail_url":"https://comicvine.gamespot.com/new-avengers/4050-85301/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79513/","id":79513,"name":"Marvel Legends","site_detail_url":"https://comicvine.gamespot.com/marvel-legends/4050-79513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85402/","id":85402,"name":"Deadpool & Cable: Split Second Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/deadpool-cable-split-second-infinite-comic/4050-85402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85419/","id":85419,"name":"Secret Wars: Agents of Atlas","site_detail_url":"https://comicvine.gamespot.com/secret-wars-agents-of-atlas/4050-85419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85437/","id":85437,"name":"Karnak","site_detail_url":"https://comicvine.gamespot.com/karnak/4050-85437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83348/","id":83348,"name":"Ultimate Spider-Man Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/ultimate-spiderman-infinite-comic/4050-83348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85490/","id":85490,"name":"Amazing X-Men","site_detail_url":"https://comicvine.gamespot.com/amazing-xmen/4050-85490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85501/","id":85501,"name":"The Villainy of Doctor Doom","site_detail_url":"https://comicvine.gamespot.com/the-villainy-of-doctor-doom/4050-85501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85609/","id":85609,"name":"The Order: California Dreaming","site_detail_url":"https://comicvine.gamespot.com/the-order-california-dreaming/4050-85609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83959/","id":83959,"name":"House of M","site_detail_url":"https://comicvine.gamespot.com/house-of-m/4050-83959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85573/","id":85573,"name":"Howling Commandos of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield/4050-85573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80800/","id":80800,"name":"Avengers By Kurt Busiek & George Perez Omnibus","site_detail_url":"https://comicvine.gamespot.com/avengers-by-kurt-busiek-george-perez-omnibus/4050-80800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85311/","id":85311,"name":"Spider-Gwen","site_detail_url":"https://comicvine.gamespot.com/spider-gwen/4050-85311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85932/","id":85932,"name":"Amazing Fantastic Incredible: A Marvelous Memoir","site_detail_url":"https://comicvine.gamespot.com/amazing-fantastic-incredible-a-marvelous-memoir/4050-85932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86113/","id":86113,"name":"Mighty Thor","site_detail_url":"https://comicvine.gamespot.com/mighty-thor/4050-86113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83586/","id":83586,"name":"Miles Morales: The Ultimate Spider-Man Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/miles-morales-the-ultimate-spiderman-ultimate-coll/4050-83586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86408/","id":86408,"name":"The Totally Awesome Hulk","site_detail_url":"https://comicvine.gamespot.com/the-totally-awesome-hulk/4050-86408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86412/","id":86412,"name":"Wolverine Epic Collection: The Dying Game","site_detail_url":"https://comicvine.gamespot.com/wolverine-epic-collection-the-dying-game/4050-86412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86469/","id":86469,"name":"Coronel Furia","site_detail_url":"https://comicvine.gamespot.com/coronel-furia/4050-86469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86333/","id":86333,"name":"All-New Inhumans","site_detail_url":"https://comicvine.gamespot.com/allnew-inhumans/4050-86333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86675/","id":86675,"name":"The Amazing Spider-Man: Renew Your Vows: Warzones!","site_detail_url":"https://comicvine.gamespot.com/the-amazing-spiderman-renew-your-vows-warzones/4050-86675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86965/","id":86965,"name":"Deadpool & Cable: Split Second","site_detail_url":"https://comicvine.gamespot.com/deadpool-cable-split-second/4050-86965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87103/","id":87103,"name":"Avengers World","site_detail_url":"https://comicvine.gamespot.com/avengers-world/4050-87103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75409/","id":75409,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-75409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84152/","id":84152,"name":"Iron Man/Thor","site_detail_url":"https://comicvine.gamespot.com/iron-manthor/4050-84152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86706/","id":86706,"name":"Marvel's Captain America: Civil War Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude/4050-86706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87171/","id":87171,"name":"Marvel Universe Ultimate Spider-Man and Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-and-avengers/4050-87171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87304/","id":87304,"name":"Agents of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield/4050-87304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85929/","id":85929,"name":"All-New Hawkeye","site_detail_url":"https://comicvine.gamespot.com/allnew-hawkeye/4050-85929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86716/","id":86716,"name":"Squadron Supreme","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme/4050-86716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87351/","id":87351,"name":"S.H.I.E.L.D.: Secret History","site_detail_url":"https://comicvine.gamespot.com/shield-secret-history/4050-87351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86717/","id":86717,"name":"Starbrand & Nightmask","site_detail_url":"https://comicvine.gamespot.com/starbrand-nightmask/4050-86717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87455/","id":87455,"name":"True Believers: The Wedding of Deadpool","site_detail_url":"https://comicvine.gamespot.com/true-believers-the-wedding-of-deadpool/4050-87455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80974/","id":80974,"name":"Marvel Universe Ultimate Spider-Man: Web-Warriors","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-webwarriors/4050-80974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87629/","id":87629,"name":"S.H.I.E.L.D.: The Man Called D.E.A.T.H.","site_detail_url":"https://comicvine.gamespot.com/shield-the-man-called-death/4050-87629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87759/","id":87759,"name":"Capitán América y Los Poderosos Vengadores","site_detail_url":"https://comicvine.gamespot.com/capitan-america-y-los-poderosos-vengadores/4050-87759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87762/","id":87762,"name":"Defensores","site_detail_url":"https://comicvine.gamespot.com/defensores/4050-87762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87822/","id":87822,"name":"The Superior Foes of Spider-Man Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-superior-foes-of-spider-man-omnibus/4050-87822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87825/","id":87825,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-87825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87194/","id":87194,"name":"X-Men: Worst X-Man Ever","site_detail_url":"https://comicvine.gamespot.com/xmen-worst-xman-ever/4050-87194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87965/","id":87965,"name":"Secret Wars Journal/Battleworld","site_detail_url":"https://comicvine.gamespot.com/secret-wars-journalbattleworld/4050-87965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86251/","id":86251,"name":"Silk","site_detail_url":"https://comicvine.gamespot.com/silk/4050-86251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88060/","id":88060,"name":"Marvel's Captain America: Civil War Prelude Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude-infinite/4050-88060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88187/","id":88187,"name":"Avengers Standoff: Welcome to Pleasant Hill","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-welcome-to-pleasant-hill/4050-88187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88386/","id":88386,"name":"Guidebook To the Marvel Cinematic Universe – Marvel's The Avengers","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-88386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88405/","id":88405,"name":"Siege: Battleworld","site_detail_url":"https://comicvine.gamespot.com/siege-battleworld/4050-88405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88551/","id":88551,"name":"Avengers Standoff: Assault On Pleasant Hill Alpha","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-assault-on-pleasant-hill-alpha/4050-88551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88554/","id":88554,"name":"Black Widow","site_detail_url":"https://comicvine.gamespot.com/black-widow/4050-88554/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85930/","id":85930,"name":"All-New Wolverine","site_detail_url":"https://comicvine.gamespot.com/allnew-wolverine/4050-85930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88764/","id":88764,"name":"Mockingbird","site_detail_url":"https://comicvine.gamespot.com/mockingbird/4050-88764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85318/","id":85318,"name":"Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers/4050-85318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43575/","id":43575,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89208/","id":89208,"name":"Marvel: Avengers Alliance","site_detail_url":"https://comicvine.gamespot.com/marvel-avengers-alliance/4050-89208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89255/","id":89255,"name":"All-New, All-Different Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/allnew-alldifferent-marvel-universe/4050-89255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85750/","id":85750,"name":"Deadpool","site_detail_url":"https://comicvine.gamespot.com/deadpool/4050-85750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87477/","id":87477,"name":"Amazing Spider-Man & Silk: Spider(Fly) Effect Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/amazing-spiderman-silk-spiderfly-effect-infinite-c/4050-87477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85951/","id":85951,"name":"Illuminati","site_detail_url":"https://comicvine.gamespot.com/illuminati/4050-85951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89610/","id":89610,"name":"Marvel's Captain America: Civil War Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-america-civil-war-prelude/4050-89610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89793/","id":89793,"name":"Marvel Firsts: The 1990s","site_detail_url":"https://comicvine.gamespot.com/marvel-firsts-the-1990s/4050-89793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89915/","id":89915,"name":"Avengers Standoff: Assault On Pleasant Hill Omega","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff-assault-on-pleasant-hill-omega/4050-89915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88573/","id":88573,"name":"Marvel Universe Avengers Assemble Season 2: Civil War","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-season-2-civil-w/4050-88573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90125/","id":90125,"name":"Thunderbolts","site_detail_url":"https://comicvine.gamespot.com/thunderbolts/4050-90125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90253/","id":90253,"name":"Free Comic Book Day 2016 (Captain America)","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2016-captain-america/4050-90253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90427/","id":90427,"name":"Spider-Gwen: Greater Power","site_detail_url":"https://comicvine.gamespot.com/spidergwen-greater-power/4050-90427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90439/","id":90439,"name":"X-Men: Mutant Genesis 2.0","site_detail_url":"https://comicvine.gamespot.com/xmen-mutant-genesis-20/4050-90439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90521/","id":90521,"name":"Civil War II","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii/4050-90521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90698/","id":90698,"name":"Captain America: Steve Rogers","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers/4050-90698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90705/","id":90705,"name":"Guidebook to the Marvel Cinematic Universe - Marvel's Captain America: The Winter Soldier/Marvel's Ant-Man","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90707/","id":90707,"name":"Guidebook to the Marvel Cinematic Universe - Marvel's Captain America: The Winter Soldier","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-90707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90708/","id":90708,"name":"Howling Commandos of S.H.I.E.L.D.: Monster Squad","site_detail_url":"https://comicvine.gamespot.com/howling-commandos-of-shield-monster-squad/4050-90708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90891/","id":90891,"name":"Spider-Women Omega","site_detail_url":"https://comicvine.gamespot.com/spiderwomen-omega/4050-90891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90892/","id":90892,"name":"Squadron Supreme Classic Omnibus","site_detail_url":"https://comicvine.gamespot.com/squadron-supreme-classic-omnibus/4050-90892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88934/","id":88934,"name":"International Iron Man","site_detail_url":"https://comicvine.gamespot.com/international-iron-man/4050-88934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91744/","id":91744,"name":"Civil War II: Choosing Sides","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-choosing-sides/4050-91744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91752/","id":91752,"name":"Guidebook To the Marvel Cinematic Universe - Marvel's Agents of S.H.I.E.L.D. Season One","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-91752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41954/","id":41954,"name":"Biblioteca Marvel: Lobezno","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-lobezno/4050-41954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91877/","id":91877,"name":"Avengers: Standoff","site_detail_url":"https://comicvine.gamespot.com/avengers-standoff/4050-91877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87820/","id":87820,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4050-87820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91961/","id":91961,"name":"Spidermen","site_detail_url":"https://comicvine.gamespot.com/spidermen/4050-91961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92013/","id":92013,"name":"Avengers: Time Runs Out","site_detail_url":"https://comicvine.gamespot.com/avengers-time-runs-out/4050-92013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92020/","id":92020,"name":"Civil War II: Kingpin","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-kingpin/4050-92020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84348/","id":84348,"name":"Secret Wars: Mundo De Batalla","site_detail_url":"https://comicvine.gamespot.com/secret-wars-mundo-de-batalla/4050-84348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42630/","id":42630,"name":"Los Nuevos Vengadores","site_detail_url":"https://comicvine.gamespot.com/los-nuevos-vengadores/4050-42630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87624/","id":87624,"name":"Old Man Logan","site_detail_url":"https://comicvine.gamespot.com/old-man-logan/4050-87624/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92203/","id":92203,"name":"Spider-Women","site_detail_url":"https://comicvine.gamespot.com/spider-women/4050-92203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92222/","id":92222,"name":"Infinito","site_detail_url":"https://comicvine.gamespot.com/infinito/4050-92222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92257/","id":92257,"name":"Agentes de S.H.I.E.LD.","site_detail_url":"https://comicvine.gamespot.com/agentes-de-shield/4050-92257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92271/","id":92271,"name":"Inhumanos","site_detail_url":"https://comicvine.gamespot.com/inhumanos/4050-92271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92350/","id":92350,"name":"Agents of S.H.I.E.L.D.: The Coulson Protocols","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-the-coulson-protocols/4050-92350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92396/","id":92396,"name":"The Unbeatable Squirrel Girl & the Great Lakes Avengers","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-the-great-lakes-aveng/4050-92396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42641/","id":42641,"name":"Los Vengadores","site_detail_url":"https://comicvine.gamespot.com/los-vengadores/4050-42641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92564/","id":92564,"name":"Marvel Universe Ultimate Spider-Man Vs. The Sinister Six","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-vs-the-sinister/4050-92564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85110/","id":85110,"name":"Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man/4050-85110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92762/","id":92762,"name":"Mockingbird: Bobbi Morse, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/mockingbird-bobbi-morse-agent-of-shield/4050-92762/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92765/","id":92765,"name":"New Avengers: A.I.M.: Standoff","site_detail_url":"https://comicvine.gamespot.com/new-avengers-aim-standoff/4050-92765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92847/","id":92847,"name":"100% Marvel. Los Comandos Aulladores de S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/100-marvel-los-comandos-aulladores-de-shield/4050-92847/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92945/","id":92945,"name":"The Accused","site_detail_url":"https://comicvine.gamespot.com/the-accused/4050-92945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93011/","id":93011,"name":"A Year Of Marvels: August Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/a-year-of-marvels-august-infinite-comic/4050-93011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88214/","id":88214,"name":"Power Man and Iron Fist","site_detail_url":"https://comicvine.gamespot.com/power-man-and-iron-fist/4050-88214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92079/","id":92079,"name":"Deadpool: Too Soon? Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/deadpool-too-soon-infinite-comic/4050-92079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87428/","id":87428,"name":"Captain Marvel","site_detail_url":"https://comicvine.gamespot.com/captain-marvel/4050-87428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93425/","id":93425,"name":"Mosaic Prelude","site_detail_url":"https://comicvine.gamespot.com/mosaic-prelude/4050-93425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93427/","id":93427,"name":"X-Men: Worst X-Man Ever","site_detail_url":"https://comicvine.gamespot.com/xmen-worst-xman-ever/4050-93427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93514/","id":93514,"name":"Secret Wars: X-Men","site_detail_url":"https://comicvine.gamespot.com/secret-wars-x-men/4050-93514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93336/","id":93336,"name":"Marvels Universum","site_detail_url":"https://comicvine.gamespot.com/marvels-universum/4050-93336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84564/","id":84564,"name":"A-Force Presents","site_detail_url":"https://comicvine.gamespot.com/aforce-presents/4050-84564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93673/","id":93673,"name":"Marvel Universe Avengers Assemble: Civil War","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-avengers-assemble-civil-war/4050-93673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93678/","id":93678,"name":"Secret Wars, Too","site_detail_url":"https://comicvine.gamespot.com/secret-wars-too/4050-93678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86399/","id":86399,"name":"Spidey","site_detail_url":"https://comicvine.gamespot.com/spidey/4050-86399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85312/","id":85312,"name":"Spider-Man 2099","site_detail_url":"https://comicvine.gamespot.com/spiderman-2099/4050-85312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94146/","id":94146,"name":"Uncanny Avengers: Unity: The Man Who Fell To Earth","site_detail_url":"https://comicvine.gamespot.com/uncanny-avengers-unity-the-man-who-fell-to-earth/4050-94146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92090/","id":92090,"name":"Masacre","site_detail_url":"https://comicvine.gamespot.com/masacre/4050-92090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85420/","id":85420,"name":"The Astonishing Ant-Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-antman/4050-85420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85290/","id":85290,"name":"Guardians of the Galaxy","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy/4050-85290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86127/","id":86127,"name":"Spider-Woman","site_detail_url":"https://comicvine.gamespot.com/spider-woman/4050-86127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94506/","id":94506,"name":"Ultimate Comics. Consecuencias","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-consecuencias/4050-94506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94508/","id":94508,"name":"Ultimate Comics. Enemigo","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-enemigo/4050-94508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94516/","id":94516,"name":"Ultimate Comics. Misterio","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-misterio/4050-94516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94517/","id":94517,"name":"Ultimate Comics. Muerte","site_detail_url":"https://comicvine.gamespot.com/ultimate-comics-muerte/4050-94517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94556/","id":94556,"name":"All-New Avengers","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers/4050-94556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94668/","id":94668,"name":"The Unbeatable Squirrel Girl Beats Up the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/the-unbeatable-squirrel-girl-beats-up-the-marvel-u/4050-94668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94575/","id":94575,"name":"All-New Avengers Hors Série","site_detail_url":"https://comicvine.gamespot.com/all-new-avengers-hors-serie/4050-94575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94686/","id":94686,"name":"All-New Deadpool","site_detail_url":"https://comicvine.gamespot.com/all-new-deadpool/4050-94686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94692/","id":94692,"name":"All-New Inhumans","site_detail_url":"https://comicvine.gamespot.com/all-new-inhumans/4050-94692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94818/","id":94818,"name":"Solo","site_detail_url":"https://comicvine.gamespot.com/solo/4050-94818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93039/","id":93039,"name":"The Astonishing Spider-Man","site_detail_url":"https://comicvine.gamespot.com/the-astonishing-spiderman/4050-93039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95016/","id":95016,"name":"Infamous Iron Man","site_detail_url":"https://comicvine.gamespot.com/infamous-iron-man/4050-95016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95025/","id":95025,"name":"Mockingbird: I Can Explain","site_detail_url":"https://comicvine.gamespot.com/mockingbird-i-can-explain/4050-95025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95202/","id":95202,"name":"Black Widow: S.H.I.E.L.D.'s Most Wanted","site_detail_url":"https://comicvine.gamespot.com/black-widow-shields-most-wanted/4050-95202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95222/","id":95222,"name":"Guidebook to the Marvel Cinematic Universe - Marvel's Agents of S.H.I.E.L.D. Season Two","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-95222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95223/","id":95223,"name":"Guidebook to the Marvel Cinematic Universe - Marvel’s Agents of S.H.I.E.L.D. Season Two/Marvel’s Agent Carter Season One","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-95223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86114/","id":86114,"name":"Ms. Marvel","site_detail_url":"https://comicvine.gamespot.com/ms-marvel/4050-86114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94494/","id":94494,"name":"Marvel Now! Free Previews 2016","site_detail_url":"https://comicvine.gamespot.com/marvel-now-free-previews-2016/4050-94494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95632/","id":95632,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-95632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95780/","id":95780,"name":"Visionarios Marvel: Stan Lee","site_detail_url":"https://comicvine.gamespot.com/visionarios-marvel-stan-lee/4050-95780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95786/","id":95786,"name":"Vengadores ¡Reuníos!","site_detail_url":"https://comicvine.gamespot.com/vengadores-reunios/4050-95786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95843/","id":95843,"name":"Ultimates 2","site_detail_url":"https://comicvine.gamespot.com/ultimates-2/4050-95843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96095/","id":96095,"name":"Spider-Man Universe","site_detail_url":"https://comicvine.gamespot.com/spiderman-universe/4050-96095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96200/","id":96200,"name":"Mighty Thor: Lords of Midgard","site_detail_url":"https://comicvine.gamespot.com/mighty-thor-lords-of-midgard/4050-96200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96646/","id":96646,"name":"Agents of S.H.I.E.L.D.: Under New Management","site_detail_url":"https://comicvine.gamespot.com/agents-of-shield-under-new-management/4050-96646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96660/","id":96660,"name":"Gwenpool Holiday Special: Merry Mix-Up","site_detail_url":"https://comicvine.gamespot.com/gwenpool-holiday-special-merry-mixup/4050-96660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92360/","id":92360,"name":"Deadpool & The Mercs For Money","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-mercs-for-money/4050-92360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97147/","id":97147,"name":"Thunderbolts","site_detail_url":"https://comicvine.gamespot.com/thunderbolts/4050-97147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97420/","id":97420,"name":"Guidebook To the Marvel Cinematic Universe – Marvel's Agents of S.H.I.E.L.D. Season Three/Marvel's Agent Carter Season Two","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-97420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97426/","id":97426,"name":"New Avengers: A.I.M. - Civil War II","site_detail_url":"https://comicvine.gamespot.com/new-avengers-aim-civil-war-ii/4050-97426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97439/","id":97439,"name":"Thunderbolts: There Is No High Road","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-there-is-no-high-road/4050-97439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97472/","id":97472,"name":"Guidebook to the Marvel Cinematic Universe - Marvel's Agents of S.H.I.E.L.D. Season Three","site_detail_url":"https://comicvine.gamespot.com/guidebook-to-the-marvel-cinematic-universe-marvels/4050-97472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97570/","id":97570,"name":"Spiderman","site_detail_url":"https://comicvine.gamespot.com/spiderman/4050-97570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97723/","id":97723,"name":"Special Ultimates & Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/special-ultimates-ultimate-xmen/4050-97723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97745/","id":97745,"name":"Deadpool the Duck","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck/4050-97745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97760/","id":97760,"name":"Marvel Universe Ultimate Spider-Man Vs. The Sinister Six","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-ultimate-spiderman-vs-the-sinister/4050-97760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97928/","id":97928,"name":"Wolverine: Weapon X Unbound","site_detail_url":"https://comicvine.gamespot.com/wolverine-weapon-x-unbound/4050-97928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97982/","id":97982,"name":"Marvel New Year's Eve Special Infinite Comic","site_detail_url":"https://comicvine.gamespot.com/marvel-new-years-eve-special-infinite-comic/4050-97982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81092/","id":81092,"name":"Uncanny Inhumans","site_detail_url":"https://comicvine.gamespot.com/uncanny-inhumans/4050-81092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98327/","id":98327,"name":"Civil War II: The Oath","site_detail_url":"https://comicvine.gamespot.com/civil-war-ii-the-oath/4050-98327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96138/","id":96138,"name":"Ghost Rider","site_detail_url":"https://comicvine.gamespot.com/ghost-rider/4050-96138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98067/","id":98067,"name":"Monsters Unleashed!","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed/4050-98067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98567/","id":98567,"name":"Spider-Gwen","site_detail_url":"https://comicvine.gamespot.com/spider-gwen/4050-98567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86343/","id":86343,"name":"Daredevil","site_detail_url":"https://comicvine.gamespot.com/daredevil/4050-86343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94321/","id":94321,"name":"Avengers Universe","site_detail_url":"https://comicvine.gamespot.com/avengers-universe/4050-94321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98940/","id":98940,"name":"True Believers: Wolverine: Enemy of the State","site_detail_url":"https://comicvine.gamespot.com/true-believers-wolverine-enemy-of-the-state/4050-98940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95431/","id":95431,"name":"Occupy Avengers","site_detail_url":"https://comicvine.gamespot.com/occupy-avengers/4050-95431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99245/","id":99245,"name":"The Clone Conspiracy Omega","site_detail_url":"https://comicvine.gamespot.com/the-clone-conspiracy-omega/4050-99245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99255/","id":99255,"name":"Karnak: The Flaw In All Things","site_detail_url":"https://comicvine.gamespot.com/karnak-the-flaw-in-all-things/4050-99255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94643/","id":94643,"name":"Jessica Jones","site_detail_url":"https://comicvine.gamespot.com/jessica-jones/4050-94643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97772/","id":97772,"name":"U.S.Avengers","site_detail_url":"https://comicvine.gamespot.com/u-s-avengers/4050-97772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95596/","id":95596,"name":"Invincible Iron Man","site_detail_url":"https://comicvine.gamespot.com/invincible-iron-man/4050-95596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97430/","id":97430,"name":"Rocket Raccoon","site_detail_url":"https://comicvine.gamespot.com/rocket-raccoon/4050-97430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100100/","id":100100,"name":"X-Force Epic Collection: Under The Gun","site_detail_url":"https://comicvine.gamespot.com/xforce-epic-collection-under-the-gun/4050-100100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100372/","id":100372,"name":"Inhumans Prime","site_detail_url":"https://comicvine.gamespot.com/inhumans-prime/4050-100372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93945/","id":93945,"name":"Spider-Man: Miles Morales","site_detail_url":"https://comicvine.gamespot.com/spiderman-miles-morales/4050-93945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97073/","id":97073,"name":"Star-Lord","site_detail_url":"https://comicvine.gamespot.com/star-lord/4050-97073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100394/","id":100394,"name":"X-Men Epic Collection: Second Genesis","site_detail_url":"https://comicvine.gamespot.com/xmen-epic-collection-second-genesis/4050-100394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100563/","id":100563,"name":"Captain America Epic Collection: Justice Is Served","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-justice-is-served/4050-100563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100582/","id":100582,"name":"Marvel Cinematic Universe Guidebook: The Avengers Initiative","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-avengers-i/4050-100582/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100585/","id":100585,"name":"Mighty Avengers by Brian Michael Bendis: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4050-100585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100688/","id":100688,"name":"Captain America: Steve Rogers: The Trial of Maria Hill","site_detail_url":"https://comicvine.gamespot.com/captain-america-steve-rogers-the-trial-of-maria-hi/4050-100688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100744/","id":100744,"name":"True Believers: X-Force","site_detail_url":"https://comicvine.gamespot.com/true-believers-xforce/4050-100744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100812/","id":100812,"name":"Captain America: Sam Wilson: #TAKEBACKTHESHIELD","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-takebacktheshield/4050-100812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100829/","id":100829,"name":"Monsters Unleashed","site_detail_url":"https://comicvine.gamespot.com/monsters-unleashed/4050-100829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100830/","id":100830,"name":"Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury/4050-100830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100840/","id":100840,"name":"Secret Empire","site_detail_url":"https://comicvine.gamespot.com/secret-empire/4050-100840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100896/","id":100896,"name":"Spider-Girl: Legacy","site_detail_url":"https://comicvine.gamespot.com/spidergirl-legacy/4050-100896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94888/","id":94888,"name":"Wolverine & Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-deadpool/4050-94888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101000/","id":101000,"name":"Secret Empire Prelude","site_detail_url":"https://comicvine.gamespot.com/secret-empire-prelude/4050-101000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100603/","id":100603,"name":"X-Men: Gold","site_detail_url":"https://comicvine.gamespot.com/x-men-gold/4050-100603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93468/","id":93468,"name":"Marvel Legends","site_detail_url":"https://comicvine.gamespot.com/marvel-legends/4050-93468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98512/","id":98512,"name":"Bullseye","site_detail_url":"https://comicvine.gamespot.com/bullseye/4050-98512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97880/","id":97880,"name":"New Avengers by Brian Michael Bendis: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-the-complete-/4050-97880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101266/","id":101266,"name":"Free Comic Book Day 2017 (Secret Empire)","site_detail_url":"https://comicvine.gamespot.com/free-comic-book-day-2017-secret-empire/4050-101266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101379/","id":101379,"name":"Avengers K: Assembling The Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers-k-assembling-the-avengers/4050-101379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101397/","id":101397,"name":"Jessica Jones: Uncaged!","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-uncaged/4050-101397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101411/","id":101411,"name":"Secret Warriors","site_detail_url":"https://comicvine.gamespot.com/secret-warriors/4050-101411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101476/","id":101476,"name":"Deadpool: Bad Blood","site_detail_url":"https://comicvine.gamespot.com/deadpool-bad-blood/4050-101476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93512/","id":93512,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-93512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101770/","id":101770,"name":"Deadpool the Duck","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-duck/4050-101770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101789/","id":101789,"name":"Solo: The One-Man War On Terror","site_detail_url":"https://comicvine.gamespot.com/solo-the-oneman-war-on-terror/4050-101789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102258/","id":102258,"name":"Guardians of the Galaxy: New Guard: Grounded","site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-galaxy-new-guard-grounded/4050-102258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102460/","id":102460,"name":"Foolkiller: Psycho Therapy","site_detail_url":"https://comicvine.gamespot.com/foolkiller-psycho-therapy/4050-102460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102574/","id":102574,"name":"Avengers by Jonathan Hickman Omnibus","site_detail_url":"https://comicvine.gamespot.com/avengers-by-jonathan-hickman-omnibus/4050-102574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-97774/","id":97774,"name":"The Unstoppable Wasp","site_detail_url":"https://comicvine.gamespot.com/the-unstoppable-wasp/4050-97774/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102272/","id":102272,"name":"Peter Parker: The Spectacular Spider-Man","site_detail_url":"https://comicvine.gamespot.com/peter-parker-the-spectacular-spiderman/4050-102272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98994/","id":98994,"name":"All-New Wolverine & X-Men","site_detail_url":"https://comicvine.gamespot.com/allnew-wolverine-xmen/4050-98994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74446/","id":74446,"name":"Colección Extra Superhéroes","site_detail_url":"https://comicvine.gamespot.com/coleccion-extra-superheroes/4050-74446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102455/","id":102455,"name":"Edge of Venomverse","site_detail_url":"https://comicvine.gamespot.com/edge-of-venomverse/4050-102455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103378/","id":103378,"name":"Captain America: Sam Wilson: End of the Line","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-end-of-the-line/4050-103378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103408/","id":103408,"name":"S.H.I.E.L.D.: Hydra Reborn","site_detail_url":"https://comicvine.gamespot.com/shield-hydra-reborn/4050-103408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103411/","id":103411,"name":"Silk: The Clone Conspiracy","site_detail_url":"https://comicvine.gamespot.com/silk-the-clone-conspiracy/4050-103411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103697/","id":103697,"name":"True Believers: Jack Kirby 100th Anniversary: Nick Fury, Agent of S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/true-believers-jack-kirby-100th-anniversary-nick-f/4050-103697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103806/","id":103806,"name":"Bullseye: The Colombian Connection","site_detail_url":"https://comicvine.gamespot.com/bullseye-the-colombian-connection/4050-103806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104144/","id":104144,"name":"Marvel Future Fight","site_detail_url":"https://comicvine.gamespot.com/marvel-future-fight/4050-104144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104311/","id":104311,"name":"Mosaic: Down Below","site_detail_url":"https://comicvine.gamespot.com/mosaic-down-below/4050-104311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104619/","id":104619,"name":"Indestructible Hulk by Mark Waid: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/indestructible-hulk-by-mark-waid-the-complete-coll/4050-104619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104625/","id":104625,"name":"Marvel Legacy","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy/4050-104625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104729/","id":104729,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-104729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104739/","id":104739,"name":"Hulk: Transformations","site_detail_url":"https://comicvine.gamespot.com/hulk-transformations/4050-104739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104792/","id":104792,"name":"Hulk: World War Hulk Omnibus","site_detail_url":"https://comicvine.gamespot.com/hulk-world-war-hulk-omnibus/4050-104792/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104970/","id":104970,"name":"Secret Warriors: Secret Empire","site_detail_url":"https://comicvine.gamespot.com/secret-warriors-secret-empire/4050-104970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105005/","id":105005,"name":"The Ultimate Graphic Novels Collection - Classic","site_detail_url":"https://comicvine.gamespot.com/the-ultimate-graphic-novels-collection-classic/4050-105005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105078/","id":105078,"name":"Captain America ComiCave Custom Edition","site_detail_url":"https://comicvine.gamespot.com/captain-america-comicave-custom-edition/4050-105078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105405/","id":105405,"name":"Colección Frank Miller. El Universo Marvel según Frank Miller","site_detail_url":"https://comicvine.gamespot.com/coleccion-frank-miller-el-universo-marvel-segun-fr/4050-105405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105552/","id":105552,"name":"Secret Empire","site_detail_url":"https://comicvine.gamespot.com/secret-empire/4050-105552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105744/","id":105744,"name":"Deadpool & X-Force Omnibus","site_detail_url":"https://comicvine.gamespot.com/deadpool-xforce-omnibus/4050-105744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87182/","id":87182,"name":"Spider-Man/Deadpool","site_detail_url":"https://comicvine.gamespot.com/spider-man-deadpool/4050-87182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106303/","id":106303,"name":"Nick Fury: Deep-Cover Capers","site_detail_url":"https://comicvine.gamespot.com/nick-fury-deepcover-capers/4050-106303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106488/","id":106488,"name":"All-New Wolverine: Immune","site_detail_url":"https://comicvine.gamespot.com/allnew-wolverine-immune/4050-106488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106515/","id":106515,"name":"Jessica Jones: The Secrets of Maria Hill","site_detail_url":"https://comicvine.gamespot.com/jessica-jones-the-secrets-of-maria-hill/4050-106515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106891/","id":106891,"name":"Marvel Cinematic Universe Guidebook: The Good, The Bad, The Guardians","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-the-good-the-b/4050-106891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93950/","id":93950,"name":"Thor by Jason Aaron & Russell Dauterman","site_detail_url":"https://comicvine.gamespot.com/thor-by-jason-aaron-russell-dauterman/4050-93950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107352/","id":107352,"name":"Avengers: Tales To Astonish","site_detail_url":"https://comicvine.gamespot.com/avengers-tales-to-astonish/4050-107352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107508/","id":107508,"name":"Marvel Cinematic Universe Guidebook: It's All Connected","site_detail_url":"https://comicvine.gamespot.com/marvel-cinematic-universe-guidebook-its-all-connec/4050-107508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107965/","id":107965,"name":"X-Men: Legion: Shadow King Rising","site_detail_url":"https://comicvine.gamespot.com/xmen-legion-shadow-king-rising/4050-107965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108801/","id":108801,"name":"Cable & X-Force: Onslaught Rising","site_detail_url":"https://comicvine.gamespot.com/cable-xforce-onslaught-rising/4050-108801/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99293/","id":99293,"name":"Daredevil by Mark Waid Omnibus","site_detail_url":"https://comicvine.gamespot.com/daredevil-by-mark-waid-omnibus/4050-99293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109110/","id":109110,"name":"Marvel's Ant-Man and the Wasp Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-antman-and-the-wasp-prelude/4050-109110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107512/","id":107512,"name":"Rise of the Black Panther","site_detail_url":"https://comicvine.gamespot.com/rise-of-the-black-panther/4050-107512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107726/","id":107726,"name":"Deadpool by Posehn & Duggan: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/deadpool-by-posehn-duggan-the-complete-collection/4050-107726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107157/","id":107157,"name":"Marvel Two-In-One","site_detail_url":"https://comicvine.gamespot.com/marvel-twoinone/4050-107157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109323/","id":109323,"name":"Iron Man: Hong Kong Heroes","site_detail_url":"https://comicvine.gamespot.com/iron-man-hong-kong-heroes/4050-109323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77305/","id":77305,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen/4050-77305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109455/","id":109455,"name":"The New Mutants: Demon Bear","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-demon-bear/4050-109455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109807/","id":109807,"name":"True Believers: Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/true-believers-infinity-gauntlet/4050-109807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109974/","id":109974,"name":"Spider-Gwen: Gwenom","site_detail_url":"https://comicvine.gamespot.com/spidergwen-gwenom/4050-109974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104999/","id":104999,"name":"Despicable Deadpool","site_detail_url":"https://comicvine.gamespot.com/despicable-deadpool/4050-104999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110361/","id":110361,"name":"Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury/4050-110361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110492/","id":110492,"name":"Agents of Atlas: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-the-complete-collection/4050-110492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81400/","id":81400,"name":"Deadpool Classic Companion","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic-companion/4050-81400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110532/","id":110532,"name":"S.H.I.E.L.D. by Hickman & Weaver: The Rebirth","site_detail_url":"https://comicvine.gamespot.com/shield-by-hickman-weaver-the-rebirth/4050-110532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110542/","id":110542,"name":"Weapon X: The Return Omnibus","site_detail_url":"https://comicvine.gamespot.com/weapon-x-the-return-omnibus/4050-110542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110748/","id":110748,"name":"Hunt For Wolverine: Adamantium Agenda","site_detail_url":"https://comicvine.gamespot.com/hunt-for-wolverine-adamantium-agenda/4050-110748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104835/","id":104835,"name":"Werewolf By Night: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/werewolf-by-night-the-complete-collection/4050-104835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21748/","id":21748,"name":"Deadpool Classic","site_detail_url":"https://comicvine.gamespot.com/deadpool-classic/4050-21748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110964/","id":110964,"name":"Spider-Girl","site_detail_url":"https://comicvine.gamespot.com/spider-girl/4050-110964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-90118/","id":90118,"name":"The Punisher","site_detail_url":"https://comicvine.gamespot.com/the-punisher/4050-90118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111228/","id":111228,"name":"Iron Man: The Armor Wars","site_detail_url":"https://comicvine.gamespot.com/iron-man-the-armor-wars/4050-111228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111431/","id":111431,"name":"Marvel's Ant-Man and the Wasp Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-ant-man-and-the-wasp-prelude/4050-111431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111802/","id":111802,"name":"Frank Cho's Savage Wolverine Artist's Edition","site_detail_url":"https://comicvine.gamespot.com/frank-chos-savage-wolverine-artists-edition/4050-111802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112073/","id":112073,"name":"True Believers: Fantastic Four: The Wedding of Sue and Reed!","site_detail_url":"https://comicvine.gamespot.com/true-believers-fantastic-four-the-wedding-of-sue-a/4050-112073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112167/","id":112167,"name":"Captain America Epic Collection: Hero Or Hoax?","site_detail_url":"https://comicvine.gamespot.com/captain-america-epic-collection-hero-or-hoax/4050-112167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108209/","id":108209,"name":"Wolverine & Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-deadpool/4050-108209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112443/","id":112443,"name":"Daredevil Epic Collection: Root of Evil","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-root-of-evil/4050-112443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112464/","id":112464,"name":"S.H.I.E.L.D. by Hickman & Weaver: The Human Machine","site_detail_url":"https://comicvine.gamespot.com/shield-by-hickman-and-weaver-the-human-machine/4050-112464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109441/","id":109441,"name":"Captain Marvel: Carol Danvers – The Ms. Marvel Years","site_detail_url":"https://comicvine.gamespot.com/captain-marvel-carol-danvers-the-ms-marvel-years/4050-109441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112481/","id":112481,"name":"X-Men: Grand Design - Second Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-112481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-113095/","id":113095,"name":"Web of Venom: Ve'Nam","site_detail_url":"https://comicvine.gamespot.com/web-of-venom-venam/4050-113095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114071/","id":114071,"name":"The Marvel Cinematic Universe: The Marvel Comics Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-marvel-cinematic-universe-the-marvel-comics-om/4050-114071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114237/","id":114237,"name":"Blade: Blood and Chaos","site_detail_url":"https://comicvine.gamespot.com/blade-blood-and-chaos/4050-114237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114280/","id":114280,"name":"X-Men: The Magneto War","site_detail_url":"https://comicvine.gamespot.com/x-men-the-magneto-war/4050-114280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114948/","id":114948,"name":"X-Men: Grand Design - Second Genesis","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-second-genesis/4050-114948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114868/","id":114868,"name":"Avengers Undercover: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-the-complete-collection/4050-114868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115263/","id":115263,"name":"Marvel's Captain Marvel Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-captain-marvel-prelude/4050-115263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115344/","id":115344,"name":"Strange Tales","site_detail_url":"https://comicvine.gamespot.com/strange-tales/4050-115344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115589/","id":115589,"name":"Spider-Man/Deadpool: My Two Dads","site_detail_url":"https://comicvine.gamespot.com/spider-mandeadpool-my-two-dads/4050-115589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115640/","id":115640,"name":"Iron Man: I Am Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man-i-am-iron-man/4050-115640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115298/","id":115298,"name":"Daughters of the Dragon","site_detail_url":"https://comicvine.gamespot.com/daughters-of-the-dragon/4050-115298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116081/","id":116081,"name":"She-Hulk by Soule & Pulido: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-soule-and-pulido-the-complete-collecti/4050-116081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116082/","id":116082,"name":"Superior Spider-Man Companion","site_detail_url":"https://comicvine.gamespot.com/superior-spider-man-companion/4050-116082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112908/","id":112908,"name":"El Asombroso Hombre Araña","site_detail_url":"https://comicvine.gamespot.com/el-asombroso-hombre-arana/4050-112908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116519/","id":116519,"name":"What If? Classic: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/what-if-classic-the-complete-collection/4050-116519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116155/","id":116155,"name":"Marvel Action: Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-action-avengers/4050-116155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116985/","id":116985,"name":"Punisher War Journal by Matt Fraction: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/punisher-war-journal-by-matt-fraction-the-complete/4050-116985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117052/","id":117052,"name":"Daughters of the Dragon: Deep Cuts","site_detail_url":"https://comicvine.gamespot.com/daughters-of-the-dragon-deep-cuts/4050-117052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117069/","id":117069,"name":"Marvel Super Hero Adventures: Spider-Man – Web of Intrigue","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-adventures-spider-man-web-of-int/4050-117069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104686/","id":104686,"name":"Marvel Deluxe. Lobezno y la Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrullax/4050-104686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115745/","id":115745,"name":"Killmonger","site_detail_url":"https://comicvine.gamespot.com/killmonger/4050-115745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117585/","id":117585,"name":"Fantastic Four: Heroes Return: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/fantastic-four-heroes-return-the-complete-collecti/4050-117585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72615/","id":72615,"name":"Marvel Now! All New X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-xmen/4050-72615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111425/","id":111425,"name":"The Immortal Hulk","site_detail_url":"https://comicvine.gamespot.com/the-immortal-hulk/4050-111425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117749/","id":117749,"name":"Iron Man by Fraction & Larroca: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-fraction-and-larroca-the-complete-coll/4050-117749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117785/","id":117785,"name":"Marvel Now! : Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men/4050-117785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117788/","id":117788,"name":"X-Men Resurrxion","site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion/4050-117788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117893/","id":117893,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-117893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118015/","id":118015,"name":"Marvel Future Fight: An Eye on the Future","site_detail_url":"https://comicvine.gamespot.com/marvel-future-fight-an-eye-on-the-future/4050-118015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118136/","id":118136,"name":"Marvel's Avengers: Endgame Prelude","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-endgame-prelude/4050-118136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118276/","id":118276,"name":"True Believers: Avengers: Ronin","site_detail_url":"https://comicvine.gamespot.com/true-believers-avengers-ronin/4050-118276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115545/","id":115545,"name":"Marvel Action: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-action-spider-man/4050-115545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119764/","id":119764,"name":"Ms. Marvel: Metamorphosis","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-metamorphosis/4050-119764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119776/","id":119776,"name":"Thor: Road To War of the Realms","site_detail_url":"https://comicvine.gamespot.com/thor-road-to-war-of-the-realms/4050-119776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119344/","id":119344,"name":"X-Men: Grand Design – X-Tinction","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction/4050-119344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119863/","id":119863,"name":"Not Brand Echh: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/not-brand-echh-the-complete-collection/4050-119863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120130/","id":120130,"name":"Invisible Woman","site_detail_url":"https://comicvine.gamespot.com/invisible-woman/4050-120130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120201/","id":120201,"name":"Marvel Action Classics: Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-action-classics-captain-america/4050-120201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120399/","id":120399,"name":"Incredible Hercules: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-the-complete-collection/4050-120399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117439/","id":117439,"name":"Cosmic Ghost Rider Destroys Marvel History","site_detail_url":"https://comicvine.gamespot.com/cosmic-ghost-rider-destroys-marvel-history/4050-117439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120748/","id":120748,"name":"X-Men: Grand Design – X-Tinction","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-x-tinction/4050-120748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120307/","id":120307,"name":"History of the Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/history-of-the-marvel-universe/4050-120307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121105/","id":121105,"name":"Spider-Woman #1: Facsimile Edition","site_detail_url":"https://comicvine.gamespot.com/spider-woman-1-facsimile-edition/4050-121105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121290/","id":121290,"name":"True Believers: The Incredible Hulk: Gray Hulk Returns","site_detail_url":"https://comicvine.gamespot.com/true-believers-the-incredible-hulk-gray-hulk-retur/4050-121290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121291/","id":121291,"name":"True Believers: The Incredible Hulk: Mindless Hulk","site_detail_url":"https://comicvine.gamespot.com/true-believers-the-incredible-hulk-mindless-hulk/4050-121291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121587/","id":121587,"name":"True Believers: Hulk: Red Hulk","site_detail_url":"https://comicvine.gamespot.com/true-believers-hulk-red-hulk/4050-121587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122215/","id":122215,"name":"Amazing Spider-Man: Full Circle","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-full-circle/4050-122215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122224/","id":122224,"name":"Marvel Universe Hors Série","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-hors-serie/4050-122224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122494/","id":122494,"name":"Spider-Gwen: Gwen Stacy","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-gwen-stacy/4050-122494/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123183/","id":123183,"name":"Marvel Super Hero Squad Online Magazine","site_detail_url":"https://comicvine.gamespot.com/marvel-super-hero-squad-online-magazine/4050-123183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123266/","id":123266,"name":"Ghost Rider 2099","site_detail_url":"https://comicvine.gamespot.com/ghost-rider-2099/4050-123266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123412/","id":123412,"name":"Symbiote Spider-Man: Alien Reality","site_detail_url":"https://comicvine.gamespot.com/symbiote-spider-man-alien-reality/4050-123412/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123732/","id":123732,"name":"Ultimate X-Men Collection","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men-collection/4050-123732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124453/","id":124453,"name":"Captain America: Sam Wilson: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/captain-america-sam-wilson-the-complete-collection/4050-124453/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124454/","id":124454,"name":"Invisible Woman: Partners In Crime","site_detail_url":"https://comicvine.gamespot.com/invisible-woman-partners-in-crime/4050-124454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124820/","id":124820,"name":"Marvel's Avengers: Hulk","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-hulk/4050-124820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124999/","id":124999,"name":"Spider-Man: Miles Morales Omnibus","site_detail_url":"https://comicvine.gamespot.com/spider-man-miles-morales-omnibus/4050-124999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125002/","id":125002,"name":"Ultimates By Mark Millar & Bryan Hitch Omnibus","site_detail_url":"https://comicvine.gamespot.com/ultimates-by-mark-millar-and-bryan-hitch-omnibus/4050-125002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125297/","id":125297,"name":"True Believers: Iron Man 2020: War Machine","site_detail_url":"https://comicvine.gamespot.com/true-believers-iron-man-2020-war-machine/4050-125297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125480/","id":125480,"name":"Black Widow by Waid & Samnee: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/black-widow-by-waid-and-samnee-the-complete-collec/4050-125480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74210/","id":74210,"name":"I Nuovissimi X-Men Volume","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-xmen-volume/4050-74210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125711/","id":125711,"name":"X-Men: La battaglia dell'atomo","site_detail_url":"https://comicvine.gamespot.com/x-men-la-battaglia-dellatomo/4050-125711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125712/","id":125712,"name":"Incredibili X-Men Volume","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume/4050-125712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125744/","id":125744,"name":"Incredible Hercules: Smash of the Titans","site_detail_url":"https://comicvine.gamespot.com/incredible-hercules-smash-of-the-titans/4050-125744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125808/","id":125808,"name":"True Believers: Empyre: Swordsman","site_detail_url":"https://comicvine.gamespot.com/true-believers-empyre-swordsman/4050-125808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125813/","id":125813,"name":"Ultimate X-Men","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-men/4050-125813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125814/","id":125814,"name":"Black Panther and the Agents of Wakanda: Eye of the Storm","site_detail_url":"https://comicvine.gamespot.com/black-panther-and-the-agents-of-wakanda-eye-of-the/4050-125814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125897/","id":125897,"name":"Surpreendentes X-Men - Edição Especial ","site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial/4050-125897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110290/","id":110290,"name":"All-New Wolverine","site_detail_url":"https://comicvine.gamespot.com/allnew-wolverine/4050-110290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126016/","id":126016,"name":"Marvel's Avengers: Black Widow","site_detail_url":"https://comicvine.gamespot.com/marvels-avengers-black-widow/4050-126016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126081/","id":126081,"name":"X-Men: Ein neuer Anfang","site_detail_url":"https://comicvine.gamespot.com/x-men-ein-neuer-anfang/4050-126081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126152/","id":126152,"name":"Amazing Spider-Man: Full Circle","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-full-circle/4050-126152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126161/","id":126161,"name":"Marvel Now!: Wolverine","site_detail_url":"https://comicvine.gamespot.com/marvel-now-wolverine/4050-126161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126704/","id":126704,"name":"Captain America: Von Strucker Gambit","site_detail_url":"https://comicvine.gamespot.com/captain-america-von-strucker-gambit/4050-126704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127273/","id":127273,"name":"Hulk vs. The Avengers","site_detail_url":"https://comicvine.gamespot.com/hulk-vs-the-avengers/4050-127273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127668/","id":127668,"name":"Sensational She-Hulk by John Byrne Omnibus","site_detail_url":"https://comicvine.gamespot.com/sensational-she-hulk-by-john-byrne-omnibus/4050-127668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-127766/","id":127766,"name":"Frankenstein","site_detail_url":"https://comicvine.gamespot.com/frankenstein/4050-127766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128018/","id":128018,"name":"Walter Simonson's The Mighty Thor Artisan Edition","site_detail_url":"https://comicvine.gamespot.com/walter-simonsons-the-mighty-thor-artisan-edition/4050-128018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128458/","id":128458,"name":"Marvel Vault of Heroes: Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-vault-of-heroes-captain-america/4050-128458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128818/","id":128818,"name":"The Eternals by Jack Kirby: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/the-eternals-by-jack-kirby-the-complete-collection/4050-128818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128891/","id":128891,"name":"Amazing Spider-Man 2099 Companion","site_detail_url":"https://comicvine.gamespot.com/amazing-spider-man-2099-companion/4050-128891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129192/","id":129192,"name":"Marvel-Verse: Captain America","site_detail_url":"https://comicvine.gamespot.com/marvel-verse-captain-america/4050-129192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129193/","id":129193,"name":"Ms. Marvel Meets The Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/ms-marvel-meets-the-marvel-universe/4050-129193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124276/","id":124276,"name":"Iron Man 2020","site_detail_url":"https://comicvine.gamespot.com/iron-man-2020/4050-124276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129904/","id":129904,"name":"Steranko Is… Revolutionary!","site_detail_url":"https://comicvine.gamespot.com/steranko-is-revolutionary/4050-129904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130339/","id":130339,"name":"X-Men: Grand Design Omnibus","site_detail_url":"https://comicvine.gamespot.com/x-men-grand-design-omnibus/4050-130339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130568/","id":130568,"name":"Juggernaut","site_detail_url":"https://comicvine.gamespot.com/juggernaut/4050-130568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116264/","id":116264,"name":"Spider-Man: Ben Reilly Omnibus","site_detail_url":"https://comicvine.gamespot.com/spider-man-ben-reilly-omnibus/4050-116264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64622/","id":64622,"name":"Twisted Toyfare Theatre","site_detail_url":"https://comicvine.gamespot.com/twisted-toyfare-theatre/4050-64622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130983/","id":130983,"name":"Marvel Fanfare #10: Facsimile Edition","site_detail_url":"https://comicvine.gamespot.com/marvel-fanfare-10-facsimile-edition/4050-130983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-130989/","id":130989,"name":"Black Widow Epic Collection: The Coldest War","site_detail_url":"https://comicvine.gamespot.com/black-widow-epic-collection-the-coldest-war/4050-130989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131523/","id":131523,"name":"True Believers: Black Widow: Yelena Belova","site_detail_url":"https://comicvine.gamespot.com/true-believers-black-widow-yelena-belova/4050-131523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131524/","id":131524,"name":"Black Widow: Widow's Sting","site_detail_url":"https://comicvine.gamespot.com/black-widow-widows-sting/4050-131524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131829/","id":131829,"name":"True Believers: King In Black: Beta Ray Bill","site_detail_url":"https://comicvine.gamespot.com/true-believers-king-in-black-beta-ray-bill/4050-131829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131937/","id":131937,"name":"Nick Fury","site_detail_url":"https://comicvine.gamespot.com/nick-fury/4050-131937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132134/","id":132134,"name":"Daredevil Epic Collection: Last Rites","site_detail_url":"https://comicvine.gamespot.com/daredevil-epic-collection-last-rites/4050-132134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132319/","id":132319,"name":"Captain America: Sharon Carter","site_detail_url":"https://comicvine.gamespot.com/captain-america-sharon-carter/4050-132319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132374/","id":132374,"name":"Civil War: Marvels Snapshots","site_detail_url":"https://comicvine.gamespot.com/civil-war-marvels-snapshots/4050-132374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132398/","id":132398,"name":"The Eternals: The Complete Saga Omnibus","site_detail_url":"https://comicvine.gamespot.com/the-eternals-the-complete-saga-omnibus/4050-132398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132425/","id":132425,"name":"Spider-Man","site_detail_url":"https://comicvine.gamespot.com/spider-man/4050-132425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-133486/","id":133486,"name":"Captain America By Ed Brubaker Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-ed-brubaker-omnibus/4050-133486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125475/","id":125475,"name":"Marvel","site_detail_url":"https://comicvine.gamespot.com/marvel/4050-125475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134650/","id":134650,"name":"Juggernaut: No Stopping Now","site_detail_url":"https://comicvine.gamespot.com/juggernaut-no-stopping-now/4050-134650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135611/","id":135611,"name":"Thunderbolts Omnibus","site_detail_url":"https://comicvine.gamespot.com/thunderbolts-omnibus/4050-135611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112027/","id":112027,"name":"Captain America","site_detail_url":"https://comicvine.gamespot.com/captain-america/4050-112027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119362/","id":119362,"name":"Marvel Action Classic: Spider-Man","site_detail_url":"https://comicvine.gamespot.com/marvel-action-classic-spider-man/4050-119362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136475/","id":136475,"name":"Iron Man by Mike Grell: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/iron-man-by-mike-grell-the-complete-collection/4050-136475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124290/","id":124290,"name":"Incredible Hulk By Peter David Omnibus","site_detail_url":"https://comicvine.gamespot.com/incredible-hulk-by-peter-david-omnibus/4050-124290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-136828/","id":136828,"name":"Spider-Gwen Omnibus","site_detail_url":"https://comicvine.gamespot.com/spider-gwen-omnibus/4050-136828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118873/","id":118873,"name":"Thor by Jason Aaron: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/thor-by-jason-aaron-the-complete-collection/4050-118873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137136/","id":137136,"name":"Miles Morales: Ultimate End","site_detail_url":"https://comicvine.gamespot.com/miles-morales-ultimate-end/4050-137136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137623/","id":137623,"name":"Taskmaster: The Rubicon Trigger","site_detail_url":"https://comicvine.gamespot.com/taskmaster-the-rubicon-trigger/4050-137623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138151/","id":138151,"name":"Captain America by Dan Jurgens Omnibus","site_detail_url":"https://comicvine.gamespot.com/captain-america-by-dan-jurgens-omnibus/4050-138151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138658/","id":138658,"name":"Dark Ages","site_detail_url":"https://comicvine.gamespot.com/dark-ages/4050-138658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-139823/","id":139823,"name":"Die Spinne","site_detail_url":"https://comicvine.gamespot.com/die-spinne/4050-139823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140141/","id":140141,"name":"The Fantastic Four Anniversary Tribute","site_detail_url":"https://comicvine.gamespot.com/the-fantastic-four-anniversary-tribute/4050-140141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140469/","id":140469,"name":"Deadpool Epic Collection: The Circle Chase","site_detail_url":"https://comicvine.gamespot.com/deadpool-epic-collection-the-circle-chase/4050-140469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141786/","id":141786,"name":"What If...? Miles Morales","site_detail_url":"https://comicvine.gamespot.com/what-if-miles-morales/4050-141786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141863/","id":141863,"name":"Avengers Epic Collection: Taking A.I.M.","site_detail_url":"https://comicvine.gamespot.com/avengers-epic-collection-taking-aim/4050-141863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141917/","id":141917,"name":"Reckoning War: Trial of the Watcher ","site_detail_url":"https://comicvine.gamespot.com/reckoning-war-trial-of-the-watcher/4050-141917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142005/","id":142005,"name":"Excalibur Epic Collection: The Battle For Britain","site_detail_url":"https://comicvine.gamespot.com/excalibur-epic-collection-the-battle-for-britain/4050-142005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142096/","id":142096,"name":"Rampage","site_detail_url":"https://comicvine.gamespot.com/rampage/4050-142096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142447/","id":142447,"name":"X-Force Epic Collection: Zero Tolerance","site_detail_url":"https://comicvine.gamespot.com/x-force-epic-collection-zero-tolerance/4050-142447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141990/","id":141990,"name":"Wolverine: Patch","site_detail_url":"https://comicvine.gamespot.com/wolverine-patch/4050-141990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143111/","id":143111,"name":"She-Hulk by Peter David Omnibus","site_detail_url":"https://comicvine.gamespot.com/she-hulk-by-peter-david-omnibus/4050-143111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143290/","id":143290,"name":"S.H.I.E.L.D. Sketchbook","site_detail_url":"https://comicvine.gamespot.com/shield-sketchbook/4050-143290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144204/","id":144204,"name":"Ant-Man","site_detail_url":"https://comicvine.gamespot.com/ant-man/4050-144204/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/team-details/team-4060-40426.json b/samples/api-data/team-details/team-4060-40426.json new file mode 100644 index 0000000..b4e8109 --- /dev/null +++ b/samples/api-data/team-details/team-4060-40426.json @@ -0,0 +1,3847 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Die Jungen Rächer", + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40426/", + "character_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1442/", + "id": 1442, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4005-1442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2266/", + "id": 2266, + "name": "Growing Man", + "site_detail_url": "https://comicvine.gamespot.com/growing-man/4005-2266/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1455/", + "id": 1455, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4005-1455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2264/", + "id": 2264, + "name": "Kang", + "site_detail_url": "https://comicvine.gamespot.com/kang/4005-2264/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-31821/", + "id": 31821, + "name": "Laufey", + "site_detail_url": "https://comicvine.gamespot.com/laufey/4005-31821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-91205/", + "id": 91205, + "name": "Mother", + "site_detail_url": "https://comicvine.gamespot.com/mother/4005-91205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3233/", + "id": 3233, + "name": "Mr. Hyde", + "site_detail_url": "https://comicvine.gamespot.com/mr-hyde/4005-3233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11565/", + "id": 11565, + "name": "Noh-Varr", + "site_detail_url": "https://comicvine.gamespot.com/noh-varr/4005-11565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4825/", + "id": 4825, + "name": "Shocker", + "site_detail_url": "https://comicvine.gamespot.com/shocker/4005-4825/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21332/", + "id": 21332, + "name": "Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/super-skrull/4005-21332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-14800/", + "id": 14800, + "name": "Warden", + "site_detail_url": "https://comicvine.gamespot.com/warden/4005-14800/" + } + ], + "character_friends": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20577/", + "id": 20577, + "name": "Ant-Man (Lang)", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-lang/4005-20577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1442/", + "id": 1442, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4005-1442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1472/", + "id": 1472, + "name": "Captain Marvel", + "site_detail_url": "https://comicvine.gamespot.com/captain-marvel/4005-1472/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1938/", + "id": 1938, + "name": "Chase Stein", + "site_detail_url": "https://comicvine.gamespot.com/chase-stein/4005-1938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1451/", + "id": 1451, + "name": "Falcon", + "site_detail_url": "https://comicvine.gamespot.com/falcon/4005-1451/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4813/", + "id": 4813, + "name": "Genis-Vell", + "site_detail_url": "https://comicvine.gamespot.com/genis-vell/4005-4813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1455/", + "id": 1455, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4005-1455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40607/", + "id": 40607, + "name": "Isaiah Bradley", + "site_detail_url": "https://comicvine.gamespot.com/isaiah-bradley/4005-40607/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1781/", + "id": 1781, + "name": "Jarvis", + "site_detail_url": "https://comicvine.gamespot.com/jarvis/4005-1781/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40561/", + "id": 40561, + "name": "Jeff Kaplan", + "site_detail_url": "https://comicvine.gamespot.com/jeff-kaplan/4005-40561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2265/", + "id": 2265, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4005-2265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1943/", + "id": 1943, + "name": "Karolina Dean", + "site_detail_url": "https://comicvine.gamespot.com/karolina-dean/4005-1943/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2269/", + "id": 2269, + "name": "Kat Farrell", + "site_detail_url": "https://comicvine.gamespot.com/kat-farrell/4005-2269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10962/", + "id": 10962, + "name": "Luna", + "site_detail_url": "https://comicvine.gamespot.com/luna/4005-10962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-45372/", + "id": 45372, + "name": "Magda Eisenhardt", + "site_detail_url": "https://comicvine.gamespot.com/magda-eisenhardt/4005-45372/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1936/", + "id": 1936, + "name": "Molly Hayes", + "site_detail_url": "https://comicvine.gamespot.com/molly-hayes/4005-1936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3202/", + "id": 3202, + "name": "Nick Fury", + "site_detail_url": "https://comicvine.gamespot.com/nick-fury/4005-3202/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1940/", + "id": 1940, + "name": "Nico Minoru", + "site_detail_url": "https://comicvine.gamespot.com/nico-minoru/4005-1940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40610/", + "id": 40610, + "name": "Old Lace", + "site_detail_url": "https://comicvine.gamespot.com/old-lace/4005-40610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1473/", + "id": 1473, + "name": "Polaris", + "site_detail_url": "https://comicvine.gamespot.com/polaris/4005-1473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-3319/", + "id": 3319, + "name": "Quasar", + "site_detail_url": "https://comicvine.gamespot.com/quasar/4005-3319/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40581/", + "id": 40581, + "name": "Rebecca Kaplan", + "site_detail_url": "https://comicvine.gamespot.com/rebecca-kaplan/4005-40581/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1466/", + "id": 1466, + "name": "Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch/4005-1466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1443/", + "id": 1443, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4005-1443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1453/", + "id": 1453, + "name": "Spider-Woman", + "site_detail_url": "https://comicvine.gamespot.com/spider-woman/4005-1453/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21332/", + "id": 21332, + "name": "Super-Skrull", + "site_detail_url": "https://comicvine.gamespot.com/super-skrull/4005-21332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1937/", + "id": 1937, + "name": "Victor Mancha", + "site_detail_url": "https://comicvine.gamespot.com/victor-mancha/4005-1937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1440/", + "id": 1440, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4005-1440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1944/", + "id": 1944, + "name": "Xavin", + "site_detail_url": "https://comicvine.gamespot.com/xavin/4005-1944/" + } + ], + "characters": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40516/", + "id": 40516, + "name": "Cassie Lang", + "site_detail_url": "https://comicvine.gamespot.com/cassie-lang/4005-40516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62020/", + "id": 62020, + "name": "Coat of Arms", + "site_detail_url": "https://comicvine.gamespot.com/coat-of-arms/4005-62020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-62021/", + "id": 62021, + "name": "Enchantress (Lushton)", + "site_detail_url": "https://comicvine.gamespot.com/enchantress-lushton/4005-62021/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2259/", + "id": 2259, + "name": "Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/hulkling/4005-2259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2263/", + "id": 2263, + "name": "Iron Lad", + "site_detail_url": "https://comicvine.gamespot.com/iron-lad/4005-2263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2262/", + "id": 2262, + "name": "Kate Bishop", + "site_detail_url": "https://comicvine.gamespot.com/kate-bishop/4005-2262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-4324/", + "id": 4324, + "name": "Loki", + "site_detail_url": "https://comicvine.gamespot.com/loki/4005-4324/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-78932/", + "id": 78932, + "name": "Ms America", + "site_detail_url": "https://comicvine.gamespot.com/ms-america/4005-78932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-11565/", + "id": 11565, + "name": "Noh-Varr", + "site_detail_url": "https://comicvine.gamespot.com/noh-varr/4005-11565/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2258/", + "id": 2258, + "name": "Patriot", + "site_detail_url": "https://comicvine.gamespot.com/patriot/4005-2258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40475/", + "id": 40475, + "name": "Prodigy", + "site_detail_url": "https://comicvine.gamespot.com/prodigy/4005-40475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40518/", + "id": 40518, + "name": "Speed", + "site_detail_url": "https://comicvine.gamespot.com/speed/4005-40518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1504/", + "id": 1504, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4005-1504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40505/", + "id": 40505, + "name": "Wiccan", + "site_detail_url": "https://comicvine.gamespot.com/wiccan/4005-40505/" + } + ], + "count_of_isssue_appearances": 0, + "count_of_team_members": 14, + "date_added": "2008-06-06 11:27:48", + "date_last_updated": "2017-04-18 15:20:38", + "deck": "A group of teenage superheroes with powers and abilities mirroring those of the Avengers, Young Avengers was formed by Iron Lad to defeat his future self, Kang. After the team disbanded, Kate Bishop later reformed the team with new costumes.\nA new team has now been formed by Loki.", + "description": "

    Origin

    \"The
    The four founders

    Young Avengers was formed by Iron Lad to help him combat his future self, Kang. Seeking aid from the Avengers and finding out they had disbanded, Iron Lad tried to contact former members of the team but got the cold shoulder. As a final effort to locate help, Iron Lad broke into one of Tony Stark's warehouses where he found the remains of Vision, which housed a plan to reform the Avengers should they ever disband or be destroyed.

    The Vision's fail-safe program could be used to locate the next wave of heroes, all of whom had a specific tie to the Avengers or Avengers history. Iron Lad used the program to locate Billy Kaplan (Asgardian), Elijah Bradley ( Patriot) and Theodore \"Teddy\" Altman ( Hulkling), who agreed to help Iron Lad. The Young Avengers quickly started assisting in crime fighting around the city. Their first noted heroic deed was helping citizens out of a burning apartment complex. They were dubbed the Young Avengers by local Daily Bugle reported Kat Farrell who was at the building reporting on the fire.

    Creation

    The Young Avengers were created by Allan Heinberg and Jim Cheung. They first appeared in Young Avengers #1 as a new Avengers team following the events of Avengers Disassembled.

    Major Story Arcs

    Forming the Group

    Once the editor-in-chief of the Daily Bugle, J. Jonah Jameson, found out about the group who fashioned themselves after former Avengers members, he ordered Jessica Jones to use her contacts in the superhero world to find out more information on the team. Jones then has a conversation with Captain America and Iron Man about the latter two's desire to shut down the team of young heroes. That night, the Young Avengers come to stop a hostage situation at a wedding. The attempt is botched, but the bride's sister, Kate Bishop, helps them out and they make a hasty retreat to avoid newscasters. Captain America, Iron Man and Jessica Jones run into Iron Lad at the Avengers Mansion, who fully explains the situation at hand to the adults.

    Meanwhile, outside of a hospital, Kate runs into Ant Man's daughter, Cassie Lang, who is also trying to locate the Young Avengers. Kate decides to go with Cassie and the two girls eventually find Patriot, Hulkling and Asgardian at the Avenger's Mansion. The boys tell the girls to leave, which angers Cassie and causes her to grow. As Cassie's powers emerge for the first time, the adults and Iron Lad rush outside to see what happened, and everyone is taken back inside the mansion. As it becomes increasingly evident the Kang will soon return for Iron Lad, Captain America locks the team inside a training room in an attempt to keep them safe.

    Iron Lad Versus Kang

    \"Kang
    Kang slain

    Kang does come to retrieve Iron Lad and the time stream beings to change, causing changes such as Jessica Jones no longer being pregnant. The Young Avengers finally figure out that Cap lied to them and they try to get out with no effect on the door. Kate, who was supposed to have left earlier, opens the door with a bag of weapons in hand. The Young Avengers start a battle which ultimately ends with Iron Lad killing his future self. Despite Kang's defeat, the time stream still changes into a future where all the Avengers are dead, causing Asgardian and Hulkling to disappear. Iron Lad realizes that he must go back and become Kang. He leaves his armor behind, which houses the Vision's programing, thus creating a new, more advanced, but less experienced Vision. The time stream is repaired and Hulkling, Asgardian, Captain America, Iron Man and a pregnant Jessica Jones return. Captain America states that the kids have more then proved themselves, but without the consent of their parents, he can't allow the team to exist. Rather then tell their parents, the team disbands.

    Later, Kate gets the team back together with new costumes. Asgardian changes his codename to Wiccan (in order to avoid his name becoming a \"national joke\" when the press finds out that he's gay and in a relationship with Hulkling) and Cassie adopts the codename Stature.

    Patriot tries to bust a M.G.H plant by himself and ends up in a fight with Mister Hyde. The rest of the team shows up to help, and it is revealed that Patriot is a user of M.G.H., instead of having real powers. (He had previously told them he gained powers from a blood transfusion from his grandfather.) Ashamed, Patriot quits the team.

    Legacy of Captain Marvel

    \"Coming
    Coming for Hulkling

    The team tries to lay low while they attempt to convince Patriot to come back. In the midst of this, the Super Skrull arrives on Earth and kidnaps Hulkling, claiming him to be the savior of the Skrull Empire. To save Hulkling, the team, with the help of the new Vision, tries to find new recruits for the Young Avengers. They locate and break out Tommy Shepherd, a speedster who can destabilize matter and cause explosions, out of juvenile hall. Tommy attempts to explode the jail guards but is stopped. Upon his jail break, it is noted that he looks exactly like Wiccan.

    Meanwhile, Kl'rt reveals to Hulkling that he is the son of Princess Anelle of the Skrull Empire and Mar-Vell of Kree. The Young Avengers arrive to free him, but the rescue is intercepted by Kree soldiers. The team manages to subdue the soldiers long enough to escape, taking the Super-Skrull with them. Kl'rt seems convinced that Wiccan and Tommy are twins, as well as the (non-biological) children of the Scarlet Witch. After looking through the former Vision's memory files, Wiccan himself is convinced that both he and Tommy are Wanda Maximoff's lost children, while Tommy is more skeptical about the situation. There isn't much time to debate however, as more Kree and Skrull ships arrive on Earth. Hulkling refuses to leave Earth which causes and all-out brawl between the Skrulls and Kree soldiers, each claiming Teddy as there own. Hulking manages to stop the fight by having Super Skrull turn into him and traveling to both planets, acting as a spy. During the battle, Patriot was shot and gravely wounded. In order to save him, his grandfather, Isaiah Bradley, donates his blood, giving Patriot the powers he pretended to have. The Young Avengers start up the team again, with Kate becoming the second Hawkeye, the Vision deciding to join and Tommy taking the codename Speed.

    Civil War

    For further details see: Civil War

    When the SHRA hit, the Young Avengers became targets of S.H.I.E.L.D. for their noncompliance. They were apprehended but rescued in transit by Captain America's rebel forces. This led to the team joining the anti-registration resistance. Frustrated with Captain America keeping them sidelined, they go to the west coast to aid the Runaways after seeing a news broadcast of them being attacked by authorities. The meeting between the two young teams is cut short by Noh-Varr, who had been brainwashed and dispatched from the Cube to get them. Members of both teams are abducted and the rest work together to rescue their taken friends. Afterward, the Runaways turn down the Young Avengers request to come to New York and join the SHRA resistance.

    The team became divided after the death of Bill Foster. Wiccan was taken captive, and the remaining members stuck with the resistance, except for Stature. Deciding that things had gone too far, she left the resistance and registered, putting her on the opposing side of her friends.

    Secret Invasion

    For further details see: Secret Invasion

    The Young Avengers were one of the first teams to respond to the invasion in New York, but were quickly overpowered. Hulkling, being the half-Skrull son of Princess Anelle, making him next in line for the throne, became the target of multiple assassination attempts by those who wanted Veranke to keep her hold on the empire. By teaming up with the young Super-Skrull Xavin and the rest of the Runaways, Wiccan and Speed were able to save Hulkling.

    Dark Reign

    For further details see: Dark Reign

    \"The
    The Young Masters

    While still being a members of the Young Avengers, Stature and Vision 2.0 join the Mighty Avengers. Stature, who has major issues about the Scarlet Witch for killing her father, bring the Young Avengers to the mighty headquarters for a confrontation. They soon realize that the Scarlet Witch is really Loki in disguise. With the help of Clint Barton, the group is able to escape battle without serious injury.

    A new group of Young Avengers forms. This group, consisting of Melter, Coat of Arms, Egghead, Enchantress, the Executioner and Big Zero, are soon confronted by the original Young Avengers members. The teams clash, and Melter's team takes to calling themselves the Young Masters. The two teams join forces against Norman Osborn's Avengers.

    Avengers: The Children's Crusade

    For further details see: The Children's Crusade

    \"Brawl
    Brawl in Latveria

    After Wiccan looses control of his powers, he and the rest of the team embark on a quest to locate the Scarlet Witch and find out if she really is Wiccan and Speed's mother. They are joined by Magneto, and their search quickly becomes a race with the Avengers to see who can get to her first. Quicksilver soon joins the race for the Scarlet Witch, his twin sister, only to accidentally cause the death of a young woman who appears to be the Scarlet Witch. However, she is revealed to be a Doombot, revealing to the group Doctor Doom's involvement in Wanda's disappearance. Though Magneto advises the group to rest, Wiccan teleports himself alone to Latveria in hopes of finding his \"mother.\" He is successful in finding an amnesiac Wanda, though before he can tell her who she is, he is captured by Doctor Doom. Doom explains to Wiccan that Wanda has no memories of who she once was, nor does she exhibit any of the powers she once did, suggesting that she may have depowered herself during Decimation. Soon, the Young Avengers, Magneto, Quicksilver, and the Avengers all converge on Latveria in a brawl between doombots and super heroes.

    When Wolverine finds Wiccan amidst the chaos of the battle, he attempts to kill the teenage hero, only to be halted by Iron Lad who returns to the Young Avengers' sides. With Iron Lad's technology, the Young Avengers and Scarlet Witch escape Latveria by traveling through time back to the Avengers' darkest day, in hopes of reminding Wanda of her former self. Cassie makes it clear that she wishes to save her father from an unjust death that had been caused by the Scarlet Witch. Once back in time, the Young Avengers meet up with Scott Lang (a.k.a. Ant Man II) and Cassie is glad to be finally reunited with her father. Jack of Hearts' reanimated body is soon seen lurching towards the group, and he and Wanda have a moment of recognition before the group escapes through time once more just before Jack explodes. Once the Yong Avengers arrive back in the present, Wanda reveals that she remembers who she once was, and is seen in her Scarlet Witch garb once more. In the closing issues of the Children's Crusade, a double tragedy strikes the team, as both Cassie and Jonas (Vision 2.0) perish in the battle against Victor Von Doom, and the events immediately following.

    Following the events of the series, the team agrees to disband, and they each retire from their lives as superheroes.

    Avengers: The Children's Crusade - Young Avengers

    \"No

    Between departing from the Young Avengers and returning to them during the Children's Crusade, it is revealed that Iron Lad had taken it upon himself to hunt down as many future versions of himself as he could find. However, he eventually lands in a timeline in which Kang leads the Young Avengers, mortal enemies of that reality's Avengers, and is persuaded by Cassie Lang (know known by her MC2 persona of Stinger) to return to the Young Avengers' current timeline in order to save Billy from Wolverine's attack. The rest of the Young Avengers are seen in their \"grown-up\" forms; Kang and Stinger are now a couple while The Vision had \"shut off\" his emotions after they were no longer useful; Hawkeye II and Speed are now a couple, while Captain America is married to The Falcon, along with whom their child Bucky joins the team; Captain Marvel is the last remaining member as Wiccan had allegedly been killed by Wolverine back in the Young Avengers of that reality's timeline. However, it is eventually revealed that Billy is still alive, and dressed with the Cloak of Levitation, suggesting that he will one day hold the title of Sorcerer Supreme.

    Marvel NOW!

    \"The
    The New Team

    As part of the Marvel NOW relaunch, a new Young Avengers team was formed by Kid Loki, which is made up of Wiccan, Hulkling, Kate Bishop, Noh-Varr, and Ms. America.

    When Wiccan tried to bring Hulkling's mother back to life, he unwillingly brought a transdimensional parasite into the world. The two team up with Loki, and Ms. America to stop it. They realize that Wiccan's spell is bringing back all of their parents, and are captured when they arrive in New York City. Kate Bishop and Noh-Varr rescue them, and the team head to Central Park to solve things. Seeing no other option, Wiccan gives Loki his powers for ten minutes, and Loki immediately teleports away, seemingly leaving them there to die.

    However, Loki returns to them, and defeats the people around them. However, the spell is still intact, and the team is forced to leave New York in order to protect themselves and their families. The group travel around doing various superheroic things, trying to avoid their parents, while Loki teaches Wiccan various spells in order to train him to be able to take on the parasite.

    Eventually, they run into Prodigy, who informs them that Speed has been captured by some sort of person wearing Patriot's costume, and thrown into an alternate dimension. Ms. America creates a portal to the multiverse, and the team enter it in order to rescue Speed.

    Young Avengers Special

    Young Avengers Special is a single volume that goes over the beginnings and origins of the team's members, including Hulkling, Wiccan, Hawkeye, Patriot, and Stature. The story is narrated by the characters as they recount their origin to Jessica Jones.

    The first 'origin' in the volume is Stature. She is having a conversation with Jessica Jones over her life. She recounts once trying to visit Tony Stark; he is busy and so she plans on waiting for him to come back. Her mother then shows up to take her to school. Cassie says she wants to stay to find out how her father died; her mother tells her it was an accident, however Cassie is still curious and wants to know exactly how he died. Blake then shows up (Blake is Cassie's stepfather) and tries to take Cassie to school, in anger she rejects him and tells him he isn't her father. Blake retaliates by calling her father a felon, the argument becomes heated; Cassie insults Blake and her mother slaps her. Cassie runs out; later that night she begins packing to run away. That turns out to be the night she meets the Young Avengers and discovers her powers; she then joins them as her new 'family'.

    Hulkling appears to be a small, scrawny boy; as a shapeshifter, however, he can change his looks to be like the popular, athletic boys in school. He reveals this ability to a supposed friend (Greg) of his, who tells him they are 'unstoppable'. Hulkling goes around the city, pretending to be Johnny Storm, or the Hulk, or Tony Stark, all to attract attention and be popular. When they find out the news of the Avengers Mansion's destruction, the two decide to visit the place. Hulkling then reveals his super-strength powers when he lifts a large load of rubble. Greg attempts to steal some of the Avenger's memorabilia (pictures, plates) but Hulkling stops him; Greg calls him a freak and runs away. Iron Lad then approaches him in the wreckage, a picture is then shown of Hulkling fighting the Shocker.

    Wiccan, whose name is Billy, appears small and brooding; he is approached by a woman wearing a red jacket with the hood up, who is concerned that his nose is bleeding. Billy reveals he was punched in the face several times, apparently for being a mutant and being different. The woman lowers her hood, showing Billy that she is the Scarlet Witch; Billy responds ecstatically that Wanda is his favorite Avenger. Wanda then tells Billy to stand his ground and not let others bully him for being different, she then taps his nose and heals it, then leaves. The next day, the bully is harassing somebody else, and Billy stands up for them. The bully attacks Billy but he releases a burst of electricity or energy of some type; it almost kills the bully. Later Billy learns to control his power; he is discovered by Iron Lad and takes up the mantle of Wiccan. Wiccan and Hulkling then reveal they are in an open relationship, saying 'Why should Northstar have all the fun?'

    Kate Bishop (Hawkeye II), reveals that her mother died a short time ago, and that her father would kill her if he found out she was a vigilante superhero. Kate was at her sister's wedding when she met the Young Avengers; she learned a valuable lesson from her sister: \"That life is short, and it doesn't matter how good your grades are, or how many hours you put in at the soup kitchen... You're not safe. Bad things happen. Things you can't control. Things that have nothing to do with you. And they will destroy you if you let them.\" It is revealed that Kate was raped while walking through the park; she decides to get up and do something about it, so she begins physical training, learning how to fight and of course practicing her archery. She then is shown alongside the Young Avengers as Hawkeye.

    Eli Bradley (Patriot) reveals that he took the steroids because he was ashamed of himself, not for the powers. Eli and his grandfather, Isaiah, are walking home with groceries when they are confronted by a street gang; one of them says, 'If it isn't the Black Captain America and Bucky.' One of them throws a beer bottle at Isaiah's head, knocking him down. Eli confronts the gang with the bottle; when Isaiah is out of earshot two other men down the street offer Eli MGH (Mutant Growth Hormone) to give him powers. Eli reluctantly accepts, asking 'How much?' Later Eli asks his grandmother if Isaiah really was the black Captain America, asking for proof. His grandmother tells him that Isaiah gave up the better years of his life for his country, making him a hero, super-soldier or not. Later, Eli and Isaiah go to the park to play ball. Isaiah throws the ball; it whizzes past Eli's head and into a wooded area, where another gang confronts Eli about his grandfather, pushing Eli down to the ground. Suddenly Isaiah shows up and effortlessly beats up the gang, sending them running. Eli then says that Isaiah truly was and is the black Captain America, and that he wanted to be just like his grandfather.

    The volume ends with Luke Cage and Jessica Jones talking about the Young Avengers, their victory over Kang the Conqueror, and the fact that they have been through so many things that there aren't many other things the kids cannot handle yet.

    Membership

    Current Roster:

    Former Members:

    Alternate Realities

    \"Cassie
    Cassie Standing Trial

    The Avengers appeared in an Alice in Wonderland-type reality in the third issue of Avengers Fairy Tales. In this reality, Stature, paralleled greatly to Alice, does a little growing up while trying to escape from \"Wonderland.\"

    Something worthy of noting is the appearance of a redheaded male alongside the Young Avengers, but was not placed in the story.

    ", + "disbanded_in_issues": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319366/", + "id": 319366, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-9/4000-319366/" + } + ], + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106606/", + "id": 106606, + "name": null, + "issue_number": "1" + }, + "id": 40426, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/3002835-yngavn2013002_hansvar.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/3002835-yngavn2013002_hansvar.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/3002835-yngavn2013002_hansvar.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/3002835-yngavn2013002_hansvar.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/3002835-yngavn2013002_hansvar.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/3002835-yngavn2013002_hansvar.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/3002835-yngavn2013002_hansvar.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/3002835-yngavn2013002_hansvar.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/3/31666/3002835-yngavn2013002_hansvar.jpg", + "image_tags": "All Images,Comic Art,Earth-200080 Noh-Varr,Earth-616 Hulkling,Earth-616 Kate Bishop,Earth-616 Loki,Earth-616 Miss America,Earth-616 Wiccan,Earth-616 Young Avengers" + }, + "isssues_disbanded_in": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319366/", + "id": 319366, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-9/4000-319366/" + } + ], + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-940794/", + "id": 940794, + "name": "Young Avengers Part 1", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-infinity-comic-5-young-avengers-par/4000-940794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922406/", + "id": 922406, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2022-marvels-voices-1/4000-922406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-918569/", + "id": 918569, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/who-is-america-chavez-infinity-comic-1/4000-918569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-900393/", + "id": 900393, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/timeless-1/4000-900393/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-863930/", + "id": 863930, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-pride-1/4000-863930/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-797980/", + "id": 797980, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-aftermath-avengers-1/4000-797980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-791922/", + "id": 791922, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-5/4000-791922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-787348/", + "id": 787348, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/empyre-4/4000-787348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-743447/", + "id": 743447, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/road-to-empyre-the-kreeskrull-war-1/4000-743447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-740770/", + "id": 740770, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-hulking-1/4000-740770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-756657/", + "id": 756657, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-gillen-and-mckelvie-the-complete/4000-756657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-739613/", + "id": 739613, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1000-collection-1-hc/4000-739613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-717540/", + "id": 717540, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1000/4000-717540/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714660/", + "id": 714660, + "name": "The Bo(d)y In Question", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head-1-the-bo-d-y-in-question/4000-714660/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-708148/", + "id": 708148, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp-7/4000-708148/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-627003/", + "id": 627003, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/america-marvel-legacy-primer-pages-1/4000-627003/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-627042/", + "id": 627042, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spider-man-29/4000-627042/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590800/", + "id": 590800, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4000-590800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-553946/", + "id": 553946, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-ant-man-13/4000-553946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-562972/", + "id": 562972, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-allan-heinberg-and-jim-cheung-co/4000-562972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-624553/", + "id": 624553, + "name": "La cruzada de los niños", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-jovenes-vengadores-3-la-cruzada-de-l/4000-624553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-527133/", + "id": 527133, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-ant-man-everybody-loves-team-ups-1/4000-527133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503555/", + "id": 503555, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-ant-man-1/4000-503555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-502246/", + "id": 502246, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-encyclopedia-1-hc/4000-502246/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500094/", + "id": 500094, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-17/4000-500094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495478/", + "id": 495478, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-15/4000-495478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493444/", + "id": 493444, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-14/4000-493444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-490519/", + "id": 490519, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-13/4000-490519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-487436/", + "id": 487436, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-1-tpb/4000-487436/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-499354/", + "id": 499354, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-mundiales-12/4000-499354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-483648/", + "id": 483648, + "name": "Volume Three", + "site_detail_url": "https://comicvine.gamespot.com/runaways-the-complete-collection-3-volume-three/4000-483648/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-478862/", + "id": 478862, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-9/4000-478862/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472902/", + "id": 472902, + "name": "The Availables Part 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world-16-the-availables-part-2/4000-472902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500629/", + "id": 500629, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-sundenfall-1/4000-500629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472365/", + "id": 472365, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-gillen-and-mckelvie-omnibus-1-hc/4000-472365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462898/", + "id": 462898, + "name": "How the World Works; Young Avengers: Hidden In Plain Sight Conclusion; The No-Sin Situation", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-5-how-the-world-works-young-avengers/4000-462898/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460316/", + "id": 460316, + "name": "Checkmate; Young Avengers: Hidden In Plain Sight Part Four of Five; Catharsis", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-4-checkmate-young-avengers-hidden-in/4000-460316/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459175/", + "id": 459175, + "name": "Whispers of War; Young Avengers: Hidden In Plain Sight Part Three of Five; Bury the Lead.", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-3-whispers-of-war-young-avengers-hid/4000-459175/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-461369/", + "id": 461369, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-14/4000-461369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456028/", + "id": 456028, + "name": "Terminus; Hidden In Plain Sight Part One of Five; Lockjaw: Buried Memory", + "site_detail_url": "https://comicvine.gamespot.com/original-sins-1-terminus-hidden-in-plain-sight-par/4000-456028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455639/", + "id": 455639, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-12/4000-455639/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451088/", + "id": 451088, + "name": "Who Is the Watcher?", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-0-who-is-the-watcher/4000-451088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453115/", + "id": 453115, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-2-vo/4000-453115/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-451854/", + "id": 451854, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-11/4000-451854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454209/", + "id": 454209, + "name": "Mirando al Futuro", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-jovenes-vengadores-2-mirando-al-futu/4000-454209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450667/", + "id": 450667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-12/4000-450667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-449866/", + "id": 449866, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-10/4000-449866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445315/", + "id": 445315, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-by-dan-slott-the-complete-collection-1-vo/4000-445315/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441422/", + "id": 441422, + "name": "Resolution Part 2", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-15-resolution-part-2/4000-441422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448268/", + "id": 448268, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-11/4000-448268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-448255/", + "id": 448255, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-mic-drop-at-the-edge-of-time-and-sp/4000-448255/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446896/", + "id": 446896, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-9/4000-446896/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437502/", + "id": 437502, + "name": "Resolution Part 1", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-14-resolution-part-1/4000-437502/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435593/", + "id": 435593, + "name": "*Young Avengers* Part Two", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-13-young-avengers-part-two/4000-435593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445895/", + "id": 445895, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-10/4000-445895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444630/", + "id": 444630, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-8/4000-444630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433856/", + "id": 433856, + "name": "*Young Avengers* Part One", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-12-young-avengers-part-one/4000-433856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444244/", + "id": 444244, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-9/4000-444244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443385/", + "id": 443385, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-alternative-culture-1-volume-2/4000-443385/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-441177/", + "id": 441177, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-7/4000-441177/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-430769/", + "id": 430769, + "name": "Stage Nervous Breakdown", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-11-stage-nervous-breakdown/4000-430769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444242/", + "id": 444242, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-8/4000-444242/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436661/", + "id": 436661, + "name": "AVENGERS LA CROCIATA DEI BAMBINI", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-best-1-avengers-la-crociata-dei-bambini/4000-436661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432501/", + "id": 432501, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye-1-vol-1/4000-432501/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426887/", + "id": 426887, + "name": "Mother's Day", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-10-mother-s-day/4000-426887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444241/", + "id": 444241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-7/4000-444241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-432447/", + "id": 432447, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-5/4000-432447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423686/", + "id": 423686, + "name": "The Kiss and the Make-Up", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-9-the-kiss-and-the-make-up/4000-423686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444240/", + "id": 444240, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-6/4000-444240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428376/", + "id": 428376, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-4/4000-428376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424646/", + "id": 424646, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-3/4000-424646/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-418827/", + "id": 418827, + "name": "The University of Multiple Lives", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-8-the-university-of-multiple-lives/4000-418827/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416949/", + "id": 416949, + "name": "The Breakfast Meet", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-7-the-breakfast-meet/4000-416949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-413673/", + "id": 413673, + "name": "The Toll", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-6-the-toll/4000-413673/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444238/", + "id": 444238, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-4/4000-444238/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424035/", + "id": 424035, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-style-substance-1-volume-1/4000-424035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-420564/", + "id": 420564, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-2/4000-420564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-415611/", + "id": 415611, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-omnibus-1-hc/4000-415611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-416783/", + "id": 416783, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1/4000-416783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-404707/", + "id": 404707, + "name": "The Art of Saving the World", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-5-the-art-of-saving-the-world/4000-404707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444237/", + "id": 444237, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-3/4000-444237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-398997/", + "id": 398997, + "name": "Deus Ex Machine Gunner", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-4-deus-ex-machine-gunner/4000-398997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444236/", + "id": 444236, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-2/4000-444236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-498883/", + "id": 498883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos-28/4000-498883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-444234/", + "id": 444234, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-1/4000-444234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395262/", + "id": 395262, + "name": "Parent Teacher Disorganization", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-3-parent-teacher-disorganization/4000-395262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-410504/", + "id": 410504, + "name": "Marvel NOW! Point One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-world-17-marvel-now-point-one/4000-410504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-388569/", + "id": 388569, + "name": "DYS", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-2-dys/4000-388569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-513286/", + "id": 513286, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/defensores-9/4000-513286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-381405/", + "id": 381405, + "name": "Style > Substance", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-style-substance/4000-381405/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-366187/", + "id": 366187, + "name": "The Impossible End", + "site_detail_url": "https://comicvine.gamespot.com/defenders-12-the-impossible-end/4000-366187/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362257/", + "id": 362257, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-point-one-1/4000-362257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-362553/", + "id": 362553, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-10/4000-362553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355048/", + "id": 355048, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-9/4000-355048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355049/", + "id": 355049, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-8/4000-355049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-355050/", + "id": 355050, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-7/4000-355050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619755/", + "id": 619755, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-10/4000-619755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386480/", + "id": 386480, + "name": "Мстители будущего. Часть 1; Одержимость. Часть 1", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-4-1-1/4000-386480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402956/", + "id": 402956, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-8/4000-402956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619754/", + "id": 619754, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-9/4000-619754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386479/", + "id": 386479, + "name": "Новые Мстители: Финал", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-3-wikiissue/4000-386479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319366/", + "id": 319366, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-9/4000-319366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619753/", + "id": 619753, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-8/4000-619753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386478/", + "id": 386478, + "name": "Осада. Часть 3; Осада. Часть 4", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-2-3-4/4000-386478/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329745/", + "id": 329745, + "name": "It's Coming", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-its-coming-1-its-coming/4000-329745/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-619752/", + "id": 619752, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-7/4000-619752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321759/", + "id": 321759, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-1-hc-tpb/4000-321759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386477/", + "id": 386477, + "name": "Осада. Часть 1; Осада. Часть 2", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks-1-1-2/4000-386477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321756/", + "id": 321756, + "name": "Avengers by Brian Michael Bendis: The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age-1-/4000-321756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454210/", + "id": 454210, + "name": "Integral", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-jovenes-vengadores-1-integral/4000-454210/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454208/", + "id": 454208, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-6/4000-454208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318587/", + "id": 318587, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men-28/4000-318587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309981/", + "id": 309981, + "name": "The Heroic Age Starts Here", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble-1-the-heroic-age-starts-here/4000-309981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454207/", + "id": 454207, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-5/4000-454207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319677/", + "id": 319677, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-30/4000-319677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-308624/", + "id": 308624, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-8/4000-308624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454206/", + "id": 454206, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-4/4000-454206/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-407875/", + "id": 407875, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-the-ultimate-guide-to-earth-s-mightie/4000-407875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-307909/", + "id": 307909, + "name": "Siege Oversized Hardcover Edition", + "site_detail_url": "https://comicvine.gamespot.com/siege-oversized-hardcover-edition-1-siege-oversize/4000-307909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454205/", + "id": 454205, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-3/4000-454205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-402957/", + "id": 402957, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-7/4000-402957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-293355/", + "id": 293355, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-7/4000-293355/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454204/", + "id": 454204, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-2/4000-454204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-454203/", + "id": 454203, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos-1/4000-454203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285151/", + "id": 285151, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-dark-reign-1-hc/4000-285151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276706/", + "id": 276706, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-6/4000-276706/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285576/", + "id": 285576, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-am-i-an-avenger-1-tpb/4000-285576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318877/", + "id": 318877, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-5/4000-318877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300401/", + "id": 300401, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-125/4000-300401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-281916/", + "id": 281916, + "name": "Fear Itself: Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spotlight-1-fear-itself-spotlight/4000-281916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267533/", + "id": 267533, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-5/4000-267533/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266008/", + "id": 266008, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-young-avengers-1/4000-266008/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-273569/", + "id": 273569, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/avengers-we-are-the-avengers-1-tpb/4000-273569/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-269984/", + "id": 269984, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics-1-tpb/4000-269984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297463/", + "id": 297463, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-21/4000-297463/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270101/", + "id": 270101, + "name": "Avengers Prime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime-1-avengers-prime/4000-270101/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297462/", + "id": 297462, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-20/4000-297462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291356/", + "id": 291356, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores-1/4000-291356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-257311/", + "id": 257311, + "name": "A Little Help; Growing; Rain Stops Play", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger-5-a-little-help-growing-rain-stops/4000-257311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268628/", + "id": 268628, + "name": "SPIDER-MAN vs THE PUNISHER!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-19-spider-man-vs-the-pu/4000-268628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254667/", + "id": 254667, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-4/4000-254667/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254666/", + "id": 254666, + "name": "Brothers in Arms", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime-5-brothers-in-arms/4000-254666/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291430/", + "id": 291430, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-1/4000-291430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265751/", + "id": 265751, + "name": "Captain America Lives Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-lives-omnibus-1-captain-america-li/4000-265751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-245497/", + "id": 245497, + "name": "Civil War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men-1-civil-war-x-men/4000-245497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-519014/", + "id": 519014, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/asedio-infiltrados-4/4000-519014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265179/", + "id": 265179, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis-1-volume-1/4000-265179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261477/", + "id": 261477, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-1-volume-one/4000-261477/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-242038/", + "id": 242038, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-3/4000-242038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-618401/", + "id": 618401, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/asedio-campo-de-batalla-1/4000-618401/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246655/", + "id": 246655, + "name": "Will Quicksilver Learn the Truth About the Scarlet Witch?", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-16-will-quicksilver-lea/4000-246655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237208/", + "id": 237208, + "name": "The End is Nigh", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war-1-the-end-is-nigh/4000-237208/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234657/", + "id": 234657, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-super-heroes-1/4000-234657/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232568/", + "id": 232568, + "name": "Homecoming; The Books of the Iron Fist; Welcome Home, Squirrel Girl!; Gnu Recruit", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger-1-homecoming-the-books-of-the-iron/4000-232568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-243330/", + "id": 243330, + "name": "The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-1-the-heroic-age/4000-243330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-243960/", + "id": 243960, + "name": "War of Kings!", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-15-war-of-kings/4000-243960/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-232535/", + "id": 232535, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-2/4000-232535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241155/", + "id": 241155, + "name": "Secret Warriors: Last Ride of the Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-last-ride-of-the-howling-commandos/4000-241155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-266652/", + "id": 266652, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fantastic-four-1-hc/4000-266652/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248783/", + "id": 248783, + "name": "THE MIGHTY AVENGERS and THE INHUMANS", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel-14-the-mighty-avengers-/4000-248783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-237421/", + "id": 237421, + "name": "Civil War: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-avengers-1-civil-war-avengers/4000-237421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-248759/", + "id": 248759, + "name": "The Funeral of the Invisible Woman", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-9-the-funeral-of-the-inv/4000-248759/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-233511/", + "id": 233511, + "name": "New Avengers: Siege", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-siege-1-new-avengers-siege/4000-233511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-226786/", + "id": 226786, + "name": "The Five Lights, Part One: Freak like me", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men-526-the-five-lights-part-one-fre/4000-226786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223380/", + "id": 223380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-1/4000-223380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231136/", + "id": 231136, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/siege-avengers-the-initiative-1-hc-tpb/4000-231136/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219558/", + "id": 219558, + "name": "Possession", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-1-possession/4000-219558/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213493/", + "id": 213493, + "name": "Whatever Happened to the Hood?", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-finale-1-whatever-happened-to-the-hoo/4000-213493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-235163/", + "id": 235163, + "name": "Siege: Battlefield", + "site_detail_url": "https://comicvine.gamespot.com/siege-battlefield-1-siege-battlefield/4000-235163/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-230949/", + "id": 230949, + "name": "Siege: Embedded", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded-1-siege-embedded/4000-230949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231116/", + "id": 231116, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege-1-siege/4000-231116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228286/", + "id": 228286, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-ultimate-collection-1-tpb/4000-228286/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425190/", + "id": 425190, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-s-siege-1-tpb/4000-425190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-214810/", + "id": 214810, + "name": "Next Avengers: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/avengers-1-next-avengers-part-1/4000-214810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213458/", + "id": 213458, + "name": "Siege: Embedded, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded-4-siege-embedded-part-four/4000-213458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213449/", + "id": 213449, + "name": "The Fallen", + "site_detail_url": "https://comicvine.gamespot.com/siege-4-the-fallen/4000-213449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-223684/", + "id": 223684, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection-2-book-two/4000-223684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-222980/", + "id": 222980, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii-1-volume-2/4000-222980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211684/", + "id": 211684, + "name": "Civil War 1", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-mgc-1-civil-war-1/4000-211684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210241/", + "id": 210241, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/siege-secret-warriors-1/4000-210241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-210216/", + "id": 210216, + "name": "A New Dawn...", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-64-a-new-dawn/4000-210216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-206797/", + "id": 206797, + "name": "Underneath It All", + "site_detail_url": "https://comicvine.gamespot.com/siege-young-avengers-1-underneath-it-all/4000-206797/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284133/", + "id": 284133, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-5/4000-284133/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252045/", + "id": 252045, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-4/4000-252045/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201700/", + "id": 201700, + "name": "The Hammer Falls, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-34-the-hammer-falls-part-2/4000-201700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200744/", + "id": 200744, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/siege-3-untitled/4000-200744/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292971/", + "id": 292971, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-jovenes-vengadores-2/4000-292971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-216431/", + "id": 216431, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-invasion-1-tpb/4000-216431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252041/", + "id": 252041, + "name": "The Hero Killer!", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures-3-the-hero-killer/4000-252041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240303/", + "id": 240303, + "name": "Volume 13", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-240303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-195362/", + "id": 195362, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/siege-2-untitled/4000-195362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292970/", + "id": 292970, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-jovenes-vengadores-1/4000-292970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213517/", + "id": 213517, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/nomad-girl-without-a-world-1-tpb/4000-213517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-202010/", + "id": 202010, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-the-unspoken-1-hc-tpb/4000-202010/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220394/", + "id": 220394, + "name": "Iron Man: The Ultimate Guide To The Armored Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-ultimate-guide-to-the-armored-super-h/4000-220394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-187866/", + "id": 187866, + "name": "Into the World", + "site_detail_url": "https://comicvine.gamespot.com/nomad-girl-without-a-world-4-into-the-world/4000-187866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-186920/", + "id": 186920, + "name": "The Heroes Lost World War Hulk?; Thor Entered World War Hulk?; Say What?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-world-war-hulk-1-the-heroes-lost-world-war/4000-186920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199302/", + "id": 199302, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-road-to-reborn-1-tpb/4000-199302/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-183714/", + "id": 183714, + "name": "The Unspoken, Pt. 5", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-31-the-unspoken-pt-5/4000-183714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-394803/", + "id": 394803, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fairy-tales-1-tpb/4000-394803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176847/", + "id": 176847, + "name": "The Unspoken, Pt. 4", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-30-the-unspoken-pt-4/4000-176847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-194588/", + "id": 194588, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers-1-tpb/4000-194588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284140/", + "id": 284140, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-12/4000-284140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-179198/", + "id": 179198, + "name": "Young Masters, Part Five", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers-5-young-masters-part-fiv/4000-179198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-254408/", + "id": 254408, + "name": "Volume 11", + "site_detail_url": "https://comicvine.gamespot.com/runaways-homeschooling-1-volume-11/4000-254408/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171252/", + "id": 171252, + "name": "The Unspoken, Pt. 3", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-29-the-unspoken-pt-3/4000-171252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284139/", + "id": 284139, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-11/4000-284139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-251491/", + "id": 251491, + "name": "Mission Of Vengeance!", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool-160-mission-of-vengeance/4000-251491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170635/", + "id": 170635, + "name": "Young Masters, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers-4-young-masters-part-fou/4000-170635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167366/", + "id": 167366, + "name": "The Unspoken, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-28-the-unspoken-pt-2/4000-167366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284138/", + "id": 284138, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-10/4000-284138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574754/", + "id": 574754, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-reinado-oscuro-0/4000-574754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165499/", + "id": 165499, + "name": "Young Masters, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers-3-young-masters-part-thr/4000-165499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284137/", + "id": 284137, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-9/4000-284137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189763/", + "id": 189763, + "name": "TPB/HC", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-earth-s-mightiest-1-tpb-hc/4000-189763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-200647/", + "id": 200647, + "name": "Book Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles-4-book-four/4000-200647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160692/", + "id": 160692, + "name": "Young Masters, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers-2-young-masters-part-two/4000-160692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-160412/", + "id": 160412, + "name": "Origin; One Year After; In Memorium; The Persistence Of Memorbilia; My Bulletin Board; Red Skull's Deadly Revenge", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-600-origin-one-year-after-in-memor/4000-160412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299730/", + "id": 299730, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-5/4000-299730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-158680/", + "id": 158680, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles-3-book-three/4000-158680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157288/", + "id": 157288, + "name": "Young Masters, Part One", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers-1-young-masters-part-one/4000-157288/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-178295/", + "id": 178295, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars-1/4000-178295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170734/", + "id": 170734, + "name": "Avengers: The Initiative: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion-1-avengers/4000-170734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-155839/", + "id": 155839, + "name": "Chasing Ghosts", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-24-chasing-ghosts/4000-155839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-260778/", + "id": 260778, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends-31/4000-260778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-153980/", + "id": 153980, + "name": "Three Words", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-23-three-words/4000-153980/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289818/", + "id": 289818, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-jovenes-vengadores-runaways-1/4000-289818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-169711/", + "id": 169711, + "name": "Mighty Avengers: Secret Invasion, Book One", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one-1-mighty-/4000-169711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284132/", + "id": 284132, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-4/4000-284132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255156/", + "id": 255156, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-3/4000-255156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290349/", + "id": 290349, + "name": "Ojo de Halcón", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-6-ojo-de-halcon/4000-290349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-312111/", + "id": 312111, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe-1-civil-war/4000-312111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172997/", + "id": 172997, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-1-tpb/4000-172997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255157/", + "id": 255157, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-2/4000-255157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203179/", + "id": 203179, + "name": "Fantastic Four: World's Greatest", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-worlds-greatest-1-fantastic-four-wo/4000-203179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284130/", + "id": 284130, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-3/4000-284130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150993/", + "id": 150993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-dark-reign-1/4000-150993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150512/", + "id": 150512, + "name": "The Smartest Man in the Room", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-21-the-smartest-man-in-the-roo/4000-150512/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290348/", + "id": 290348, + "name": "Estatura", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-5-estatura/4000-290348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-289809/", + "id": 289809, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-2/4000-289809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149482/", + "id": 149482, + "name": "What If...Doctor Doom Kept The Beyonder's Power; What If The Runaways Became The Young Avengers, Part 5 (of 5)", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars-1-what-ifdoctor-doom-kept-the-/4000-149482/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-149359/", + "id": 149359, + "name": "The Funeral Of The Invisible Woman: Requiem", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-562-the-funeral-of-the-invisible-wo/4000-149359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144410/", + "id": 144410, + "name": "What If... Scarlet Witch Ended The \"House Of M\" By Saying \"No More Powers\"?; What If... Runaways Became The Young Avengers? Part 1 Of 5", + "site_detail_url": "https://comicvine.gamespot.com/what-if-house-of-m-1-what-if-scarlet-witch-ended-t/4000-144410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199294/", + "id": 199294, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-1-tpb/4000-199294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255164/", + "id": 255164, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered-1/4000-255164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172944/", + "id": 172944, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-1-secret-invasion/4000-172944/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284129/", + "id": 284129, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores-2/4000-284129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290347/", + "id": 290347, + "name": "Visión", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-4-vision/4000-290347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-340550/", + "id": 340550, + "name": "An Army of One", + "site_detail_url": "https://comicvine.gamespot.com/aafes-7th-edition-7-an-army-of-one/4000-340550/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297442/", + "id": 297442, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-100/4000-297442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-146802/", + "id": 146802, + "name": "V-S Day", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-19-v-s-day/4000-146802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-144233/", + "id": 144233, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-8/4000-144233/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290346/", + "id": 290346, + "name": "Wiccan y Veloz", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-3-wiccan-y-veloz/4000-290346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297441/", + "id": 297441, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-99/4000-297441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141171/", + "id": 141171, + "name": "Don't Shoot 'Til You See The Green Of Their Eyes!", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-18-dont-shoot-til-you-see-/4000-141171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140851/", + "id": 140851, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-7/4000-140851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140549/", + "id": 140549, + "name": "Chapter Four: The Fall of Manhattan", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-4-chapter-four-the-fall/4000-140549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290345/", + "id": 290345, + "name": "Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-2-hulkling/4000-290345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-139348/", + "id": 139348, + "name": "Home Field Advantage", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-17-home-field-advantage/4000-139348/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138409/", + "id": 138409, + "name": "Secret Invasion!, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-3-secret-in/4000-138409/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-138234/", + "id": 138234, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-6/4000-138234/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290344/", + "id": 290344, + "name": "Patriota", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan-1-patriota/4000-290344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135073/", + "id": 135073, + "name": "Chapter Two: Run. As fast as you can.", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line-2-chapter-two-run-as-fa/4000-135073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199301/", + "id": 199301, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-1-tpb/4000-199301/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135430/", + "id": 135430, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-5/4000-135430/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135400/", + "id": 135400, + "name": "Secret Invasion!, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-2-secret-in/4000-135400/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134085/", + "id": 134085, + "name": "The Only Good Skrull", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-15-the-only-good-skrull/4000-134085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132926/", + "id": 132926, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-4/4000-132926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-137832/", + "id": 137832, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-your-universe-saga-1/4000-137832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132614/", + "id": 132614, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-6-hawkeye/4000-132614/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131812/", + "id": 131812, + "name": "Secret Invasion!, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-1-secret-in/4000-131812/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131297/", + "id": 131297, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-3/4000-131297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130518/", + "id": 130518, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-14-untitled/4000-130518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132602/", + "id": 132602, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-fairy-tales-3/4000-132602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131149/", + "id": 131149, + "name": "Stature", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-5-stature/4000-131149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129598/", + "id": 129598, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-2/4000-129598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127123/", + "id": 127123, + "name": "World's Greatest, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-556-world-s-greatest-part-3/4000-127123/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-128265/", + "id": 128265, + "name": "The Vision", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-4-the-vision/4000-128265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-297433/", + "id": 297433, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united-92/4000-297433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-126425/", + "id": 126425, + "name": "Wiccan & Speed", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-3-wiccan-speed/4000-126425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-275710/", + "id": 275710, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-2-volume-2/4000-275710/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-124065/", + "id": 124065, + "name": "Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-2-hulkling/4000-124065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-121886/", + "id": 121886, + "name": "Patriot", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents-1-patriot/4000-121886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120267/", + "id": 120267, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-6/4000-120267/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-185207/", + "id": 185207, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war-1-tpb/4000-185207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120241/", + "id": 120241, + "name": "The Stranger; What If Captain America Led All The Heroes Against Registration?; What If Iron Man Lost The Civil War?;", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war-1-the-stranger-what-if-captain-a/4000-120241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276876/", + "id": 276876, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe-154/4000-276876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120235/", + "id": 120235, + "name": "What If Annihilation Reached Earth?", + "site_detail_url": "https://comicvine.gamespot.com/what-if-annihilation-1-what-if-annihilation-reache/4000-120235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198503/", + "id": 198503, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-young-avengers/4000-198503/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224884/", + "id": 224884, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-home-invasion-3/4000-224884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-224883/", + "id": 224883, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-home-invasion-2/4000-224883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113764/", + "id": 113764, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-2/4000-113764/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133203/", + "id": 133203, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-planet-without-a-hulk-1-volume-5/4000-133203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189772/", + "id": 189772, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-omnibus-1-volume-1/4000-189772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114283/", + "id": 114283, + "name": "Another Me, Another U.", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-21-another-me-another-u/4000-114283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-111693/", + "id": 111693, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles-1/4000-111693/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157636/", + "id": 157636, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-white-and-blue-1-tpb/4000-157636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299728/", + "id": 299728, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-3/4000-299728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132592/", + "id": 132592, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-companion-1-tpb/4000-132592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171461/", + "id": 171461, + "name": "Civil War: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-iron-man-1-civil-war-iron-man/4000-171461/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109602/", + "id": 109602, + "name": "Bargaining", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america-3-bargaini/4000-109602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290716/", + "id": 290716, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/lobezno-18/4000-290716/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-171452/", + "id": 171452, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-civil-war-1-civil-war/4000-171452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-167631/", + "id": 167631, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1-civil-war/4000-167631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-204068/", + "id": 204068, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men-universe-1-tpb/4000-204068/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203105/", + "id": 203105, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-and-runaways-1-tpb/4000-203105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203204/", + "id": 203204, + "name": "Cable and Deadpool: Paved With Good Intentions", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-paved-with-good-intentions-1-ca/4000-203204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436989/", + "id": 436989, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-207/4000-436989/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-302513/", + "id": 302513, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-captain-america-1-tpb/4000-302513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152574/", + "id": 152574, + "name": "Family Matters", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-2-family-matters/4000-152574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290343/", + "id": 290343, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-12/4000-290343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107416/", + "id": 107416, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-battle-damage-report-1/4000-107416/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-110487/", + "id": 110487, + "name": "Mercury Falling (part 2 of 4)", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men-34-mercury-falling-part-2-of-4/4000-110487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290342/", + "id": 290342, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-11/4000-290342/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108957/", + "id": 108957, + "name": "Rubicon", + "site_detail_url": "https://comicvine.gamespot.com/iron-mancaptain-america-casualties-of-war-1-rubico/4000-108957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106186/", + "id": 106186, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-winter-kills-1/4000-106186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290341/", + "id": 290341, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-10/4000-290341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285901/", + "id": 285901, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-cable-masacre-1/4000-285901/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106626/", + "id": 106626, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-7-untitled/4000-106626/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290340/", + "id": 290340, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-9/4000-290340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107000/", + "id": 107000, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-6-untitled/4000-107000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105346/", + "id": 105346, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-runaways-4/4000-105346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290339/", + "id": 290339, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-8/4000-290339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299727/", + "id": 299727, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-2/4000-299727/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106999/", + "id": 106999, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-5-untitled/4000-106999/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105345/", + "id": 105345, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-runaways-3/4000-105345/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290338/", + "id": 290338, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-7/4000-290338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105682/", + "id": 105682, + "name": "[untitled]", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-4-untitled/4000-105682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105344/", + "id": 105344, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-runaways-2/4000-105344/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290337/", + "id": 290337, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-6/4000-290337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108847/", + "id": 108847, + "name": "Whose Side Are You On?", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-files-1-whose-side-are-you-on/4000-108847/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106444/", + "id": 106444, + "name": "The Hero Hunter", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool-30-the-hero-hunter/4000-106444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105624/", + "id": 105624, + "name": "Whose Side Are You On?", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-3-whose-side-are-you-on/4000-105624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105339/", + "id": 105339, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-runaways-1/4000-105339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290336/", + "id": 290336, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-5/4000-290336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105570/", + "id": 105570, + "name": "Captain America Goes Underground", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-2-captain-america-goes-underground/4000-105570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105343/", + "id": 105343, + "name": "Family Matters (Part 4); Masked Marvel", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-12-family-matters-part-4-masked-mar/4000-105343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290335/", + "id": 290335, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-4/4000-290335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106974/", + "id": 106974, + "name": "Vendetta", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-42-vendetta/4000-106974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105525/", + "id": 105525, + "name": "Things Turn Ugly", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-1-things-turn-ugly/4000-105525/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290334/", + "id": 290334, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-3/4000-290334/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-299726/", + "id": 299726, + "name": "Sidekicks", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband-1-sidekicks/4000-299726/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106195/", + "id": 106195, + "name": "The Collective, Pt. 2", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers-18-the-collective-pt-2/4000-106195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290333/", + "id": 290333, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-2/4000-290333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105322/", + "id": 105322, + "name": "Family Matters (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-11-family-matters-part-3/4000-105322/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290332/", + "id": 290332, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-1/4000-290332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-152573/", + "id": 152573, + "name": "Sidekicks", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-sidekicks/4000-152573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133204/", + "id": 133204, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-time-trials-1-volume-3/4000-133204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105321/", + "id": 105321, + "name": "Family Matters (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-10-family-matters-part-2/4000-105321/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105323/", + "id": 105323, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-special-1/4000-105323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303146/", + "id": 303146, + "name": "Civil War #1", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-directors-cut-1-civil-war-1/4000-303146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-593388/", + "id": 593388, + "name": "Volume 6", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre-6-volume-6/4000-593388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107056/", + "id": 107056, + "name": "Many Happy Returns", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-1-many-happy-returns/4000-107056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105320/", + "id": 105320, + "name": "Family Matters (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-9-family-matters-part-1/4000-105320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105310/", + "id": 105310, + "name": "Secret Identities (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-8-secret-identities-part-2/4000-105310/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-220424/", + "id": 220424, + "name": "Avengers: The Ultimate Guide", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-ultimate-guide-1-avengers-the-ultimat/4000-220424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105309/", + "id": 105309, + "name": "Secret Identities (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-7-secret-identities-part-1/4000-105309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103875/", + "id": 103875, + "name": "Sidekicks (Part 6)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-6-sidekicks-part-6/4000-103875/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103874/", + "id": 103874, + "name": "Sidekicks (Part 5)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-5-sidekicks-part-5/4000-103874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103873/", + "id": 103873, + "name": "Sidekicks (Part 4)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-4-sidekicks-part-4/4000-103873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103872/", + "id": 103872, + "name": "Sidekicks (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-3-sidekicks-part-3/4000-103872/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-165428/", + "id": 165428, + "name": "Sidekicks Part One", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-directors-cut-1-sidekicks-part-on/4000-165428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103871/", + "id": 103871, + "name": "Sidekicks (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-2-sidekicks-part-2/4000-103871/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103870/", + "id": 103870, + "name": "Sidekicks (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-sidekicks-part-1/4000-103870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106606/", + "id": 106606, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-avengers-/4000-106606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-721816/", + "id": 721816, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-hors-serie-20-siege/4000-721816/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-510586/", + "id": 510586, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-megaband-helden-hormone-und-hexere-/4000-510586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-482842/", + "id": 482842, + "name": "Vol. 57 - Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-45-vol-57-sec/4000-482842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476399/", + "id": 476399, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-8/4000-476399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476398/", + "id": 476398, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-7/4000-476398/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476397/", + "id": 476397, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe-6/4000-476397/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460830/", + "id": 460830, + "name": "Vol. 50 - Fallen Son - Der Tod von Captain America", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-31-vol-50-fal/4000-460830/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460829/", + "id": 460829, + "name": "Vol. 49 - Civil War", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung-30-vol-49-civ/4000-460829/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435484/", + "id": 435484, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/avengers-6/4000-435484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298937/", + "id": 298937, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-37/4000-298937/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-298932/", + "id": 298932, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-32/4000-298932/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-285947/", + "id": 285947, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-jovenes-vengadores-runaways-1/4000-285947/" + } + ], + "movies": [], + "name": "Young Avengers", + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-31/", + "id": 31, + "name": "Marvel" + }, + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4060-40426/", + "story_arc_credits": [], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11870/", + "id": 11870, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-11870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-29511/", + "id": 29511, + "name": "Young Avengers Special", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-special/4050-29511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-17991/", + "id": 17991, + "name": "Civil War: Young Avengers & Runaways", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-runaways/4050-17991/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18023/", + "id": 18023, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war/4050-18023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18125/", + "id": 18125, + "name": "Winter Soldier: Winter Kills", + "site_detail_url": "https://comicvine.gamespot.com/winter-soldier-winter-kills/4050-18125/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11497/", + "id": 11497, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4050-11497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18070/", + "id": 18070, + "name": "Cable & Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/cable-deadpool/4050-18070/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65738/", + "id": 65738, + "name": "Official Handbook of the Marvel Universe: Avengers 2005", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-avengers-/4050-65738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10809/", + "id": 10809, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-10809/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18293/", + "id": 18293, + "name": "She-Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk/4050-18293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18332/", + "id": 18332, + "name": "Civil War: Battle Damage Report", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-battle-damage-report/4050-18332/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18530/", + "id": 18530, + "name": "Civil War Files", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-files/4050-18530/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18542/", + "id": 18542, + "name": "Iron Man/Captain America: Casualties of War", + "site_detail_url": "https://comicvine.gamespot.com/iron-mancaptain-america-casualties-of-war/4050-18542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18420/", + "id": 18420, + "name": "Fallen Son: The Death of Captain America", + "site_detail_url": "https://comicvine.gamespot.com/fallen-son-the-death-of-captain-america/4050-18420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18078/", + "id": 18078, + "name": "New X-Men", + "site_detail_url": "https://comicvine.gamespot.com/new-x-men/4050-18078/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18899/", + "id": 18899, + "name": "Civil War Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-chronicles/4050-18899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20151/", + "id": 20151, + "name": "What If? Annihilation", + "site_detail_url": "https://comicvine.gamespot.com/what-if-annihilation/4050-20151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20155/", + "id": 20155, + "name": "What If? Civil War", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war/4050-20155/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20380/", + "id": 20380, + "name": "Young Avengers Presents", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents/4050-20380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6211/", + "id": 6211, + "name": "Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four/4050-6211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21076/", + "id": 21076, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion/4050-21076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18239/", + "id": 18239, + "name": "The Mighty Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers/4050-18239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21874/", + "id": 21874, + "name": "Secret Invasion: Runaways/Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers/4050-21874/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21977/", + "id": 21977, + "name": "Civil War Companion", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-companion/4050-21977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20963/", + "id": 20963, + "name": "Avengers Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/avengers-fairy-tales/4050-20963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22139/", + "id": 22139, + "name": "She-Hulk: Planet Without A Hulk", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-planet-without-a-hulk/4050-22139/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22140/", + "id": 22140, + "name": "She-Hulk: Time Trials", + "site_detail_url": "https://comicvine.gamespot.com/she-hulk-time-trials/4050-22140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18419/", + "id": 18419, + "name": "Avengers: The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative/4050-18419/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21928/", + "id": 21928, + "name": "Secret Invasion: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line/4050-21928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22924/", + "id": 22924, + "name": "Marvel: Your Universe Saga", + "site_detail_url": "https://comicvine.gamespot.com/marvel-your-universe-saga/4050-22924/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24272/", + "id": 24272, + "name": "What If? House Of M", + "site_detail_url": "https://comicvine.gamespot.com/what-if-house-of-m/4050-24272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25308/", + "id": 25308, + "name": "What If? Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars/4050-25308/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25606/", + "id": 25606, + "name": "Marvel Spotlight: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/marvel-spotlight-dark-reign/4050-25606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25832/", + "id": 25832, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-25832/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26390/", + "id": 26390, + "name": "Dark Reign: Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers/4050-26390/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26426/", + "id": 26426, + "name": "Captain America: Red, White & Blue", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-red-white-blue/4050-26426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26538/", + "id": 26538, + "name": "Secret Invasion Chronicles", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-chronicles/4050-26538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11499/", + "id": 11499, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4050-11499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27189/", + "id": 27189, + "name": "Young Avengers 1 Directors Cut", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-1-directors-cut/4050-27189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27492/", + "id": 27492, + "name": "Civil War", + "site_detail_url": "https://comicvine.gamespot.com/civil-war/4050-27492/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27752/", + "id": 27752, + "name": "Mighty Avengers: Secret Invasion, Book One", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-secret-invasion-book-one/4050-27752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27851/", + "id": 27851, + "name": "Avengers: The Initiative: Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-initiative-secret-invasion/4050-27851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27959/", + "id": 27959, + "name": "Wolverine: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-civil-war/4050-27959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27961/", + "id": 27961, + "name": "Civil War: Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-iron-man/4050-27961/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28146/", + "id": 28146, + "name": "Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion/4050-28146/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28159/", + "id": 28159, + "name": "Secret Invasion: Front Line", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-front-line/4050-28159/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28948/", + "id": 28948, + "name": "What If? Secret Wars", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-wars/4050-28948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30060/", + "id": 30060, + "name": "What If? Civil War", + "site_detail_url": "https://comicvine.gamespot.com/what-if-civil-war/4050-30060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30340/", + "id": 30340, + "name": "What If? World War Hulk", + "site_detail_url": "https://comicvine.gamespot.com/what-if-world-war-hulk/4050-30340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27856/", + "id": 27856, + "name": "Nomad: Girl Without a World", + "site_detail_url": "https://comicvine.gamespot.com/nomad-girl-without-a-world/4050-27856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30729/", + "id": 30729, + "name": "The Mighty Avengers: Earth's Mightiest", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-avengers-earths-mightiest/4050-30729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30733/", + "id": 30733, + "name": "Captain America Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-omnibus/4050-30733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31271/", + "id": 31271, + "name": "Dark Reign: Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/dark-reign-young-avengers/4050-31271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30904/", + "id": 30904, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4050-30904/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31675/", + "id": 31675, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-31675/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31799/", + "id": 31799, + "name": "Secret Invasion: Runaways/Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers/4050-31799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31802/", + "id": 31802, + "name": "Young Avengers Presents", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-presents/4050-31802/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31803/", + "id": 31803, + "name": "Captain America: Road to Reborn", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-road-to-reborn/4050-31803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32191/", + "id": 32191, + "name": "Mighty Avengers: The Unspoken", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-the-unspoken/4050-32191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32311/", + "id": 32311, + "name": "Civil War: Young Avengers and Runaways", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-young-avengers-and-runaways/4050-32311/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32323/", + "id": 32323, + "name": "Fantastic Four: World's Greatest", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-worlds-greatest/4050-32323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32336/", + "id": 32336, + "name": "Cable and Deadpool: Paved With Good Intentions", + "site_detail_url": "https://comicvine.gamespot.com/cable-and-deadpool-paved-with-good-intentions/4050-32336/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32412/", + "id": 32412, + "name": "Civil War: X-Men Universe", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men-universe/4050-32412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32585/", + "id": 32585, + "name": "Siege: Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/siege-young-avengers/4050-32585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32779/", + "id": 32779, + "name": "Siege: Secret Warriors", + "site_detail_url": "https://comicvine.gamespot.com/siege-secret-warriors/4050-32779/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32890/", + "id": 32890, + "name": "Civil War MGC", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-mgc/4050-32890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30906/", + "id": 30906, + "name": "Siege: Embedded", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded/4050-30906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33091/", + "id": 33091, + "name": "New Avengers Finale", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-finale/4050-33091/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33096/", + "id": 33096, + "name": "Nomad: Girl Without A World", + "site_detail_url": "https://comicvine.gamespot.com/nomad-girl-without-a-world/4050-33096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33227/", + "id": 33227, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-33227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33387/", + "id": 33387, + "name": "What If? Secret Invasion", + "site_detail_url": "https://comicvine.gamespot.com/what-if-secret-invasion/4050-33387/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33777/", + "id": 33777, + "name": "New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers/4050-33777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33858/", + "id": 33858, + "name": "Iron Man: The Ultimate Guide to the Armored Super Hero", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-the-ultimate-guide-to-the-armored-super-h/4050-33858/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33826/", + "id": 33826, + "name": "Avengers: The Ultimate Guide", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-ultimate-guide/4050-33826/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34182/", + "id": 34182, + "name": "Avengers: I am an Avenger II", + "site_detail_url": "https://comicvine.gamespot.com/avengers-i-am-an-avenger-ii/4050-34182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34241/", + "id": 34241, + "name": "Avengers: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade/4050-34241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31919/", + "id": 31919, + "name": "Deadpool and Cable Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/deadpool-and-cable-ultimate-collection/4050-31919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34445/", + "id": 34445, + "name": "Secret Invasion: Home Invasion", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-home-invasion/4050-34445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3092/", + "id": 3092, + "name": "The Uncanny X-Men", + "site_detail_url": "https://comicvine.gamespot.com/the-uncanny-x-men/4050-3092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34768/", + "id": 34768, + "name": "Young Avengers Ultimate Collection", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-ultimate-collection/4050-34768/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35026/", + "id": 35026, + "name": "Siege: Embedded", + "site_detail_url": "https://comicvine.gamespot.com/siege-embedded/4050-35026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35041/", + "id": 35041, + "name": "Siege", + "site_detail_url": "https://comicvine.gamespot.com/siege/4050-35041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35048/", + "id": 35048, + "name": "Siege: Avengers: The Initiative", + "site_detail_url": "https://comicvine.gamespot.com/siege-avengers-the-initiative/4050-35048/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35271/", + "id": 35271, + "name": "I am An Avenger", + "site_detail_url": "https://comicvine.gamespot.com/i-am-an-avenger/4050-35271/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35402/", + "id": 35402, + "name": "New Avengers: Siege", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-siege/4050-35402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35497/", + "id": 35497, + "name": "The Heroic Age: Super Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age-super-heroes/4050-35497/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35579/", + "id": 35579, + "name": "Siege: Battlefield", + "site_detail_url": "https://comicvine.gamespot.com/siege-battlefield/4050-35579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35877/", + "id": 35877, + "name": "Chaos War", + "site_detail_url": "https://comicvine.gamespot.com/chaos-war/4050-35877/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35918/", + "id": 35918, + "name": "Civil War: Avengers", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-avengers/4050-35918/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22981/", + "id": 22981, + "name": "Official Handbook of the Marvel Universe A to Z", + "site_detail_url": "https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36511/", + "id": 36511, + "name": "Secret Warriors: Last Ride of the Howling Commandos", + "site_detail_url": "https://comicvine.gamespot.com/secret-warriors-last-ride-of-the-howling-commandos/4050-36511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36627/", + "id": 36627, + "name": "The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/the-heroic-age/4050-36627/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34856/", + "id": 34856, + "name": "The Mighty World of Marvel", + "site_detail_url": "https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-34856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36789/", + "id": 36789, + "name": "Civil War: X-Men", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-x-men/4050-36789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36796/", + "id": 36796, + "name": "Fantastic Four Adventures", + "site_detail_url": "https://comicvine.gamespot.com/fantastic-four-adventures/4050-36796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36794/", + "id": 36794, + "name": "Wolverine and Deadpool", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-and-deadpool/4050-36794/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38065/", + "id": 38065, + "name": "Runaways: Homeschooling", + "site_detail_url": "https://comicvine.gamespot.com/runaways-homeschooling/4050-38065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33495/", + "id": 33495, + "name": "Avengers: Prime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime/4050-33495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36795/", + "id": 36795, + "name": "Avengers Unconquered", + "site_detail_url": "https://comicvine.gamespot.com/avengers-unconquered/4050-36795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27087/", + "id": 27087, + "name": "Marvel Legends", + "site_detail_url": "https://comicvine.gamespot.com/marvel-legends/4050-27087/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38936/", + "id": 38936, + "name": "Avengers by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis/4050-38936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39277/", + "id": 39277, + "name": "New Avengers by Brian Michael Bendis", + "site_detail_url": "https://comicvine.gamespot.com/new-avengers-by-brian-michael-bendis/4050-39277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39349/", + "id": 39349, + "name": "Captain America Lives Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-lives-omnibus/4050-39349/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39371/", + "id": 39371, + "name": "Avengers: The Children's Crusade - Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-young-avengers/4050-39371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39469/", + "id": 39469, + "name": "Civil War: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-fantastic-four/4050-39469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40111/", + "id": 40111, + "name": "Origins of Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/origins-of-marvel-comics/4050-40111/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40169/", + "id": 40169, + "name": "Avengers Prime", + "site_detail_url": "https://comicvine.gamespot.com/avengers-prime/4050-40169/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40602/", + "id": 40602, + "name": "Avengers: We Are the Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers-we-are-the-avengers/4050-40602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40895/", + "id": 40895, + "name": "The New Avengers", + "site_detail_url": "https://comicvine.gamespot.com/the-new-avengers/4050-40895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40828/", + "id": 40828, + "name": "X-Men Deluxe", + "site_detail_url": "https://comicvine.gamespot.com/x-men-deluxe/4050-40828/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41571/", + "id": 41571, + "name": "Fear Itself: Spotlight", + "site_detail_url": "https://comicvine.gamespot.com/fear-itself-spotlight/4050-41571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41786/", + "id": 41786, + "name": "Avante, Vingadores!", + "site_detail_url": "https://comicvine.gamespot.com/avante-vingadores/4050-41786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65597/", + "id": 65597, + "name": "Mighty Avengers: Dark Reign", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-dark-reign/4050-65597/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41966/", + "id": 41966, + "name": "Spider-Man: Am I an Avenger?", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-am-i-an-avenger/4050-41966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42000/", + "id": 42000, + "name": "Civil War: Cable & Masacre", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-cable-masacre/4050-42000/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42019/", + "id": 42019, + "name": "Civil War: Jóvenes Vengadores & Runaways", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-jovenes-vengadores-runaways/4050-42019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42425/", + "id": 42425, + "name": "Invasión Secreta", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta/4050-42425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42428/", + "id": 42428, + "name": "Invasión Secreta: Jóvenes Vengadores / Runaways", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-jovenes-vengadores-runaways/4050-42428/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42474/", + "id": 42474, + "name": "Jóvenes Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores/4050-42474/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42475/", + "id": 42475, + "name": "Jóvenes Vengadores Presentan", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores-presentan/4050-42475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42524/", + "id": 42524, + "name": "Lobezno", + "site_detail_url": "https://comicvine.gamespot.com/lobezno/4050-42524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42630/", + "id": 42630, + "name": "Los Nuevos Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/los-nuevos-vengadores/4050-42630/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42641/", + "id": 42641, + "name": "Los Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores/4050-42641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42873/", + "id": 42873, + "name": "Reinado Oscuro: Jóvenes Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/reinado-oscuro-jovenes-vengadores/4050-42873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43360/", + "id": 43360, + "name": "The Avengers United", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-united/4050-43360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43493/", + "id": 43493, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-43493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43587/", + "id": 43587, + "name": "Young Avengers Sonderband", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-sonderband/4050-43587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43672/", + "id": 43672, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-43672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44023/", + "id": 44023, + "name": "Captain America: Civil War", + "site_detail_url": "https://comicvine.gamespot.com/captain-america-civil-war/4050-44023/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44092/", + "id": 44092, + "name": "Civil War: Director's Cut", + "site_detail_url": "https://comicvine.gamespot.com/civil-war-directors-cut/4050-44092/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44756/", + "id": 44756, + "name": "Siege Oversized Hardcover Edition", + "site_detail_url": "https://comicvine.gamespot.com/siege-oversized-hardcover-edition/4050-44756/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45031/", + "id": 45031, + "name": "Avengers Assemble", + "site_detail_url": "https://comicvine.gamespot.com/avengers-assemble/4050-45031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45239/", + "id": 45239, + "name": "Supereroi Le Grandi Saghe", + "site_detail_url": "https://comicvine.gamespot.com/supereroi-le-grandi-saghe/4050-45239/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36821/", + "id": 36821, + "name": "Essential X-Men", + "site_detail_url": "https://comicvine.gamespot.com/essential-x-men/4050-36821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46289/", + "id": 46289, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4050-46289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46609/", + "id": 46609, + "name": "Avengers by Brian Michael Bendis: The Heroic Age", + "site_detail_url": "https://comicvine.gamespot.com/avengers-by-brian-michael-bendis-the-heroic-age/4050-46609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46610/", + "id": 46610, + "name": "Avengers: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade/4050-46610/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47859/", + "id": 47859, + "name": "Avengers Vs. X-Men: It's Coming", + "site_detail_url": "https://comicvine.gamespot.com/avengers-vs-x-men-its-coming/4050-47859/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49645/", + "id": 49645, + "name": "AAFES 7th Edition", + "site_detail_url": "https://comicvine.gamespot.com/aafes-7th-edition/4050-49645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-53097/", + "id": 53097, + "name": "Marvel NOW! Point One", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-point-one/4050-53097/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44363/", + "id": 44363, + "name": "Defenders", + "site_detail_url": "https://comicvine.gamespot.com/defenders/4050-44363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56117/", + "id": 56117, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4050-56117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57297/", + "id": 57297, + "name": "Mstiteli. Mega Komiks", + "site_detail_url": "https://comicvine.gamespot.com/mstiteli-mega-komiks/4050-57297/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-59211/", + "id": 59211, + "name": "Marvel Fairy Tales", + "site_detail_url": "https://comicvine.gamespot.com/marvel-fairy-tales/4050-59211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-62738/", + "id": 62738, + "name": "The Avengers: The Ultimate Guide to Earth's Mightiest Heroes", + "site_detail_url": "https://comicvine.gamespot.com/the-avengers-the-ultimate-guide-to-earths-mighties/4050-62738/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-55161/", + "id": 55161, + "name": "Marvel World", + "site_detail_url": "https://comicvine.gamespot.com/marvel-world/4050-55161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64773/", + "id": 64773, + "name": "Marvel Now! Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/marvel-now-omnibus/4050-64773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-65028/", + "id": 65028, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4050-65028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-66903/", + "id": 66903, + "name": "Young Avengers: Style > Substance", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-style-substance/4050-66903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-67285/", + "id": 67285, + "name": "Marvel's Siege", + "site_detail_url": "https://comicvine.gamespot.com/marvels-siege/4050-67285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68971/", + "id": 68971, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4050-68971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69982/", + "id": 69982, + "name": "100% MARVEL BEST", + "site_detail_url": "https://comicvine.gamespot.com/100-marvel-best/4050-69982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69993/", + "id": 69993, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-69993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71229/", + "id": 71229, + "name": "Young Avengers: Alternative Culture", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-alternative-culture/4050-71229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71369/", + "id": 71369, + "name": "Jóvenes Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/jovenes-vengadores/4050-71369/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-71659/", + "id": 71659, + "name": "She-Hulk by Dan Slott: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/shehulk-by-dan-slott-the-complete-collection/4050-71659/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-72491/", + "id": 72491, + "name": "Young Avengers: Mic-Drop At the Edge of Time and Space", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-micdrop-at-the-edge-of-time-and-spa/4050-72491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73241/", + "id": 73241, + "name": "Original Sin", + "site_detail_url": "https://comicvine.gamespot.com/original-sin/4050-73241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74360/", + "id": 74360, + "name": "Los Vengadores: La Cruzada de los Niños", + "site_detail_url": "https://comicvine.gamespot.com/los-vengadores-la-cruzada-de-los-ninos/4050-74360/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74359/", + "id": 74359, + "name": "Marvel Deluxe: Jóvenes Vengadores", + "site_detail_url": "https://comicvine.gamespot.com/marvel-deluxe-jovenes-vengadores/4050-74359/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-74729/", + "id": 74729, + "name": "Original Sins", + "site_detail_url": "https://comicvine.gamespot.com/original-sins/4050-74729/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68650/", + "id": 68650, + "name": "Die offizielle Marvel-Comic-Sammlung", + "site_detail_url": "https://comicvine.gamespot.com/die-offizielle-marvel-comic-sammlung/4050-68650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-78661/", + "id": 78661, + "name": "Young Avengers By Gillen And McKelvie Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-gillen-and-mckelvie-omnibus/4050-78661/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-70704/", + "id": 70704, + "name": "Avengers World", + "site_detail_url": "https://comicvine.gamespot.com/avengers-world/4050-70704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75015/", + "id": 75015, + "name": "Avengers Universe", + "site_detail_url": "https://comicvine.gamespot.com/avengers-universe/4050-75015/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76194/", + "id": 76194, + "name": "Runaways: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/runaways-the-complete-collection/4050-76194/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-81674/", + "id": 81674, + "name": "Original Sins", + "site_detail_url": "https://comicvine.gamespot.com/original-sins/4050-81674/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43487/", + "id": 43487, + "name": "Vengadores Secretos", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-secretos/4050-43487/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-73265/", + "id": 73265, + "name": "Vengadores Mundiales", + "site_detail_url": "https://comicvine.gamespot.com/vengadores-mundiales/4050-73265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-84650/", + "id": 84650, + "name": "Original Sin: Sündenfall", + "site_detail_url": "https://comicvine.gamespot.com/original-sin-sundenfall/4050-84650/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85117/", + "id": 85117, + "name": "Marvel's The Avengers Encyclopedia", + "site_detail_url": "https://comicvine.gamespot.com/marvels-the-avengers-encyclopedia/4050-85117/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-85420/", + "id": 85420, + "name": "The Astonishing Ant-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-antman/4050-85420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87205/", + "id": 87205, + "name": "Young Avengers Megaband: Helden, Hormone Und Hexere!", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-megaband-helden-hormone-und-hexere/4050-87205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-87762/", + "id": 87762, + "name": "Defensores", + "site_detail_url": "https://comicvine.gamespot.com/defensores/4050-87762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88803/", + "id": 88803, + "name": "Asedio: Infiltrados", + "site_detail_url": "https://comicvine.gamespot.com/asedio-infiltrados/4050-88803/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-89913/", + "id": 89913, + "name": "The Astonishing Ant-Man: Everybody Loves Team-Ups", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-antman-everybody-loves-teamups/4050-89913/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-96205/", + "id": 96205, + "name": "Young Avengers By Allan Heinberg & Jim Cheung Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-allan-heinberg-jim-cheung-comple/4050-96205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97730/", + "id": 97730, + "name": "Invasión Secreta: Reinado Oscuro", + "site_detail_url": "https://comicvine.gamespot.com/invasion-secreta-reinado-oscuro/4050-97730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100585/", + "id": 100585, + "name": "Mighty Avengers by Brian Michael Bendis: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/mighty-avengers-by-brian-michael-bendis-the-comple/4050-100585/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64622/", + "id": 64622, + "name": "Twisted Toyfare Theatre", + "site_detail_url": "https://comicvine.gamespot.com/twisted-toyfare-theatre/4050-64622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103864/", + "id": 103864, + "name": "Asedio: Campo de batalla", + "site_detail_url": "https://comicvine.gamespot.com/asedio-campo-de-batalla/4050-103864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104864/", + "id": 104864, + "name": "America - Marvel Legacy Primer Pages", + "site_detail_url": "https://comicvine.gamespot.com/america-marvel-legacy-primer-pages/4050-104864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93039/", + "id": 93039, + "name": "The Astonishing Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-astonishing-spiderman/4050-93039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-114425/", + "id": 114425, + "name": "The Unstoppable Wasp", + "site_detail_url": "https://comicvine.gamespot.com/the-unstoppable-wasp/4050-114425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120394/", + "id": 120394, + "name": "Death's Head", + "site_detail_url": "https://comicvine.gamespot.com/deaths-head/4050-120394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-120959/", + "id": 120959, + "name": "Marvel Comics", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics/4050-120959/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42707/", + "id": 42707, + "name": "Marvel Icons Hors Série", + "site_detail_url": "https://comicvine.gamespot.com/marvel-icons-hors-serie/4050-42707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125481/", + "id": 125481, + "name": "Marvel Comics 1000 Collection", + "site_detail_url": "https://comicvine.gamespot.com/marvel-comics-1000-collection/4050-125481/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-125676/", + "id": 125676, + "name": "True Believers: Empyre: Hulking", + "site_detail_url": "https://comicvine.gamespot.com/true-believers-empyre-hulking/4050-125676/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126017/", + "id": 126017, + "name": "Road To Empyre: The Kree/Skrull War", + "site_detail_url": "https://comicvine.gamespot.com/road-to-empyre-the-kreeskrull-war/4050-126017/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-126612/", + "id": 126612, + "name": "Young Avengers by Gillen & Mckelvie: The Complete Collection", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers-by-gillen-and-mckelvie-the-complete/4050-126612/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-128616/", + "id": 128616, + "name": "Empyre", + "site_detail_url": "https://comicvine.gamespot.com/empyre/4050-128616/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-130186/", + "id": 130186, + "name": "Empyre: Aftermath Avengers", + "site_detail_url": "https://comicvine.gamespot.com/empyre-aftermath-avengers/4050-130186/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-137050/", + "id": 137050, + "name": "Marvel's Voices: Pride", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-pride/4050-137050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140623/", + "id": 140623, + "name": "Timeless", + "site_detail_url": "https://comicvine.gamespot.com/timeless/4050-140623/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142431/", + "id": 142431, + "name": "Who Is... America Chavez: Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/who-is-america-chavez-infinity-comic/4050-142431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142842/", + "id": 142842, + "name": "Free Comic Book Day 2022: Marvel's Voices", + "site_detail_url": "https://comicvine.gamespot.com/free-comic-book-day-2022-marvels-voices/4050-142842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-144359/", + "id": 144359, + "name": "Marvel's Voices Infinity Comic", + "site_detail_url": "https://comicvine.gamespot.com/marvels-voices-infinity-comic/4050-144359/" + } + ] + }, + "version": "1.0" +} diff --git a/samples/api-data/team-details/team-4060-4443.json b/samples/api-data/team-details/team-4060-4443.json new file mode 100644 index 0000000..908acef --- /dev/null +++ b/samples/api-data/team-details/team-4060-4443.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"Emma's Girls\r\nFive-in-One\r\nFour-in-One\r\nPhoenixes\r\nStepford Sisters\r\nThousand-In-One\r\nThree-in-One Weapon XIV","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-4443/","character_enemies":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10947/","id":10947,"name":"Belasco","site_detail_url":"https://comicvine.gamespot.com/belasco/4005-10947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11317/","id":11317,"name":"Cassandra Nova","site_detail_url":"https://comicvine.gamespot.com/cassandra-nova/4005-11317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40583/","id":40583,"name":"Quentin Quire","site_detail_url":"https://comicvine.gamespot.com/quentin-quire/4005-40583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3183/","id":3183,"name":"Xorn","site_detail_url":"https://comicvine.gamespot.com/xorn/4005-3183/"}],"character_friends":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2112/","id":2112,"name":"Angel","site_detail_url":"https://comicvine.gamespot.com/angel/4005-2112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40593/","id":40593,"name":"Angel Salvadore","site_detail_url":"https://comicvine.gamespot.com/angel-salvadore/4005-40593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40458/","id":40458,"name":"Anole","site_detail_url":"https://comicvine.gamespot.com/anole/4005-40458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4442/","id":4442,"name":"Armor","site_detail_url":"https://comicvine.gamespot.com/armor/4005-4442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3188/","id":3188,"name":"Beak","site_detail_url":"https://comicvine.gamespot.com/beak/4005-3188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1462/","id":1462,"name":"Beast","site_detail_url":"https://comicvine.gamespot.com/beast/4005-1462/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40597/","id":40597,"name":"Blindfold","site_detail_url":"https://comicvine.gamespot.com/blindfold/4005-40597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40669/","id":40669,"name":"Bling!","site_detail_url":"https://comicvine.gamespot.com/bling/4005-40669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11317/","id":11317,"name":"Cassandra Nova","site_detail_url":"https://comicvine.gamespot.com/cassandra-nova/4005-11317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1459/","id":1459,"name":"Cyclops","site_detail_url":"https://comicvine.gamespot.com/cyclops/4005-1459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4555/","id":4555,"name":"Dust","site_detail_url":"https://comicvine.gamespot.com/dust/4005-4555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1457/","id":1457,"name":"Emma Frost","site_detail_url":"https://comicvine.gamespot.com/emma-frost/4005-1457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41124/","id":41124,"name":"Gentle","site_detail_url":"https://comicvine.gamespot.com/gentle/4005-41124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40454/","id":40454,"name":"Hellion","site_detail_url":"https://comicvine.gamespot.com/hellion/4005-40454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40671/","id":40671,"name":"Indra","site_detail_url":"https://comicvine.gamespot.com/indra/4005-40671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9849/","id":9849,"name":"Karma","site_detail_url":"https://comicvine.gamespot.com/karma/4005-9849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40672/","id":40672,"name":"Loa","site_detail_url":"https://comicvine.gamespot.com/loa/4005-40672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40674/","id":40674,"name":"Match","site_detail_url":"https://comicvine.gamespot.com/match/4005-40674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15078/","id":15078,"name":"Mercury","site_detail_url":"https://comicvine.gamespot.com/mercury/4005-15078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40670/","id":40670,"name":"Onyxx","site_detail_url":"https://comicvine.gamespot.com/onyxx/4005-40670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40673/","id":40673,"name":"Pixie","site_detail_url":"https://comicvine.gamespot.com/pixie/4005-40673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40475/","id":40475,"name":"Prodigy","site_detail_url":"https://comicvine.gamespot.com/prodigy/4005-40475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40583/","id":40583,"name":"Quentin Quire","site_detail_url":"https://comicvine.gamespot.com/quentin-quire/4005-40583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41149/","id":41149,"name":"Quill","site_detail_url":"https://comicvine.gamespot.com/quill/4005-41149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40456/","id":40456,"name":"Rockslide","site_detail_url":"https://comicvine.gamespot.com/rockslide/4005-40456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40509/","id":40509,"name":"Surge","site_detail_url":"https://comicvine.gamespot.com/surge/4005-40509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41733/","id":41733,"name":"Tito Bohusk, Jr.","site_detail_url":"https://comicvine.gamespot.com/tito-bohusk-jr/4005-41733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40885/","id":40885,"name":"Trance","site_detail_url":"https://comicvine.gamespot.com/trance/4005-40885/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40535/","id":40535,"name":"Wallflower","site_detail_url":"https://comicvine.gamespot.com/wallflower/4005-40535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2158/","id":2158,"name":"Warpath","site_detail_url":"https://comicvine.gamespot.com/warpath/4005-2158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4557/","id":4557,"name":"Wolfsbane","site_detail_url":"https://comicvine.gamespot.com/wolfsbane/4005-4557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1440/","id":1440,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4005-1440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3560/","id":3560,"name":"X-23","site_detail_url":"https://comicvine.gamespot.com/x-23/4005-3560/"}],"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50486/","id":50486,"name":"Celeste Cuckoo","site_detail_url":"https://comicvine.gamespot.com/celeste-cuckoo/4005-50486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50487/","id":50487,"name":"Esme Cuckoo","site_detail_url":"https://comicvine.gamespot.com/esme-cuckoo/4005-50487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50488/","id":50488,"name":"Mindee Cuckoo","site_detail_url":"https://comicvine.gamespot.com/mindee-cuckoo/4005-50488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50489/","id":50489,"name":"Phoebe Cuckoo","site_detail_url":"https://comicvine.gamespot.com/phoebe-cuckoo/4005-50489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-50490/","id":50490,"name":"Sophie Cuckoo","site_detail_url":"https://comicvine.gamespot.com/sophie-cuckoo/4005-50490/"}],"count_of_isssue_appearances":0,"count_of_team_members":5,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-08-16 15:08:38","deck":"The Stepford Cuckoos are five powerful telepaths - cloned daughters of Emma Frost's - who can combine their telepathic abilities to create a much more powerful hive-mind. The Cuckoos are currently acting as psychic emissaries to the mutant nation & are residing at The White Palace in Krakoa with Emma Frost.","description":"

    Origin

    \"The
    The Stepford Cuckoos

    Celeste, Esme, Mindee (Irma), Sophie and Phoebe are daughters of Emma Frost, cloned from Emma's ova cells while she lay in a coma after her Hellions were killed. Aged by a bubble that bent space and time, the Cuckoos joined the X-Men. It was eventually discovered that there were actually a thousand more clones of Emma Frost who had been created by the Weapon Plus program. They were collectively known as \"Weapon XIV\". These surplus clones were destroyed by the Phoenix Force while it possessed the body of Celeste.

    Creation

    The Stepford Cuckoos were created by Grant Morrison and Ethan Van Sciver. They first appeared in New X-Men #118. Originally Grant Morrison intended the first letter of each of the girls name to spell S-P-I-C-E, but as he never finished naming the girl, the last was named Mindee. This was later corrected by Matt Fraction, who attributed the name Irma to Mindee.

    Major Story Arcs

    Riot at Xavier's

    For further details see: Riot at Xavier's

    \"Top
    Top Students

    During the student riot on opening day headed by Quentin Quire - a student, powerful telepath, and the Cuckoos' chief rival who had an unrequited love for Sophie - Emma offhandedly chastised the girls for hiding during the riot rather than assisting to end it, as she felt true heroes should. Inspired by Emma's words, Sophie used Kick to increase the Cuckoos' abilities and used Cerebra to stop Quentin. Although Quentin was defeated, the overexertion and her sister Esme's unknown telepathic suggestion resulted in Sophie's death.

    \"Open
    Open Day

    The remaining Cuckoos were later awarded for their bravery and outstanding use of telepathy in line with the ideals of the Institute. After Sophie's untimely death, they began calling themselves the Four-In-One. The Cuckoos blamed Emma Frost for Sophie's death, and separated themselves from her. This hurt her greatly. The Stepford Cuckoos then telepathically communicated with Jean Grey while at a gathering, not only to test the new limits on their reduced powers, but also to tell her about Emma's telepathic affair with Scott. Jean furiously confronted Emma and trampled through Emma's mind, humiliating her. Emma managed to barely hold out against this attack in her diamond form until Scott willingly showed Jean that nothing had happened. Emma was later discovered in her diamond form, shattered in pieces, having been shot by a diamond bullet while in her diamond body, which had one flaw. To help find the murderer, Sage and Bishop came to investigate. They found that Angel Salvador killed Emma, but was being mind-controlled by Esme, who was working for Xorn (Magneto). Deciding to flee, Esme told the other Cuckoos that she desired individuality and that Emma Frost did not care about them, but instead only wanted to make them like her. Bishop and Sage confronted Esme as she was leaving. Esme telepathically defeated both of them and joined Xorn/Magneto.

    \"Sophie's
    Sophie's death

    Xorn, believing himself to be Magneto, began destroying New York, planning to reverse the magnetic poles and leading a new Brotherhood of Evil Mutants with Esme as a member. Esme believed that Xorn/Magneto reciprocated her feelings of love, but he rejected her. During the chaos, the X-Men joined together to stop him, and Celeste, Phoebe and Mindee used their telepathy to safely guide civilians to safety.

    \"Esme's
    Esme's death

    Hurt by his rejection and concerned for Xorn/Magneto's sanity, Esme and the others turned against him. Esme used her telepathy to destroy Xorn's mind. This caused him to lash out and kill her by magnetically ripping out her earrings and forcing them into her brain. Esme died in Emma Frost's arms, with Emma saying, \"...you turned into such a wonderful little femme fatale in the end, didn't you? I’m ever so proud of all my girls but you ... I think I’m most especially proud of you, dear.\" Despite this, Esme's last words to Emma were \"...Nothing like you...\".

    With Esme's death, the girls resolved their differences with Emma and called themselves the Three-in-One.

    The three remaining Stepford Cuckoos were members of the Corsairs, until they disbanded following M-Day. The Stepford Cuckoos were instrumental to defeating Blob, whose few vulnerabilities included telepathy. They were also seen going to the dance with Hellion. The three survived the depowering caused by Decimation, and remained as students at the school.

    The Phoenix Endsong

    For further details see: Phoenix Endsong

    \"Kid
    Kid Omega with Sophie's Body

    Quentin Quire awoke from his psionic stasis when the Phoenix manifested itself on Earth again and revived the recently deceased Jean Grey. Realizing that the Phoenix could revive Sophie, he unearthed her body and confronted the Phoenix, stating that he would give it whatever it wanted. The Phoenix Force revived Sophie, who took one look at Quentin as he professed his love to her, and responded, \"Eww.\" Sophie then reverted to a corpse again, preferring death to being with Quentin. The other Cuckoos assisted the X-Men as they fought the Phoenix Force by using Cerebra to contact all of the X-Men and collecting them to channel positive thoughts and love to Jean Grey. Jean Grey was then able to wrest control from the Phoenix Force and spiritually move onward to the White Hot Room, dying again. Quentin realized that Sophie would never love him and returned to a deep sleep. Meanwhile, a shard of the Phoenix communicated with one of the Cuckoos, who responded \"Oh, of course. What took you so long?\"

    Phoenix Warsong

    For further detail see: Phoenix Warsong

    \"Celeste\"
    Celeste

    In the follow-up series, X-Men: Phoenix Warsong, the Cuckoos' origin was revealed, and the Cuckoos, having been contacted by the Phoenix, began manifesting new powers such as telekinesis and the ability to generate fire. The three Cuckoos each handled the Phoenix's influence differently. Celeste feared the power of the Phoenix, remembering how it drove Jean Grey insane, while Phoebe embraced its destructive powers. They went to different staff separately to try to work out their feelings and their growing identities, free of their sisters. However, before the X-Men could effectively intervene, the Phoenix took over and the Cuckoos returned to The World, the headquarters of the Weapons Plus program. Meanwhile, Esme and Sophie mysteriously revived, albeit in decaying forms, and spoke of collecting information and realizing their true mission.

    The X-Men followed the Cuckoos and learned that as creations of The World, the Cuckoos have implanted nano-technology that caused them to unknowingly transmit any and all information they encountered back to The World. Thus, Esme and Sophie did not actually return to life, but were rather piloted by their nano-technological systems. In addition, Emma learnt that the Cuckoos were truly her daughters, having been cloned from her eggs, which were harvested by Dr. Sublime while she was in a coma following a Sentinel attack years before. Sublime cloned a thousand Cuckoos, in tanks hooked up to machinery. The original five were released to infiltrate the school and transmit information. Their origins were never questioned due to a strong telepathic block placed in everyone's minds which would cause their thoughts to redirect whenever they questioned where the Cuckoos came from.

    \"Weapon
    Weapon XIV

    Dr. Sublime intended the remaining Cuckoos to return and join their \"sisters\". The true purpose of the Thousand-In-One (called Weapon XIV) was to combine their minds into one immense psychic weapon and telepathically kill every mutant on the planet. By assimilating the original Cuckoos into the one, Sublime would be able to control the power of the Phoenix through his control of the Thousand-In-One. It was then revealed that every Cuckoo could also turn into a diamond form, but unlike Emma, their diamond forms were flawless. He could then use the Thousand to split the Phoenix between all of them and trap it within their diamond bodies, thus giving him further control. Mindee willingly chose to re-assimilate, but Phoebe attempted to fight her way out. The X-Men attempted to destroy Sublime. When the X-Men severed Sublime's control of the Thousand and deactivated all the Cuckoos' nano-technology (including the original three), each individual clone awoke with their own consciousness and reached out to their sisters and mother.

    It was revealed that Celeste was chosen as the primary host for the Phoenix because it heard Celeste \"call\" to her, as Celeste longed to feel, to live, and to burn with life. Emma reached out to a fearful Celeste and told her that her methods of teaching - trying to make the girls cold and emotionless as a means of protecting them - was flawed and that she hoped the girls would live with passion. She then gave Celeste the confidence to do \"what was right\" with the Phoenix Force and for her sisters.

    \"Three-in-one\"
    Three-in-one

    However, to Emma's horror, the Phoenix used Celeste to destroy every \"sister\" of the Weapon XIV and the revived Sophie and Esme in order to end their threat against mutant-kind. The only ones spared were Celeste, Mindee and Phoebe. During the aftermath, Celeste begged the Phoenix to leave her as what it had forced her to do was too much. The Phoenix decided it wanted to stay with Celeste, so to stop it, Celeste divided her into three, and each remaining Cuckoo turned her heart into flawless organic diamond. Doing so trapped the Phoenix within them so that it could no longer wreak havoc. Unfortunately, this also caused the Cuckoos to lose their emotions forever. Thus, the Cuckoos - especially Celeste, who longed to truly live, grow, and love - sacrificed their ability to ever do so for the sake of maintaining peace. In truth, the Phoenix they encountered was merely a shard of the true Phoenix, having been shattered into billions of pieces at the end of X-Men: Phoenix Endsong. Despite this, that shard remained divided in three and sealed within Celeste, Mindee, and Phoebe.

    These events devastated Emma, whose thousands of cloned daughters had each just begun to reach out for her with their minds when the Phoenix chose to destroy them. Emma then vowed that the Phoenix would have to contend with her if it ever returned, be it cosmic entity or in the form of Jean Grey.

    Quest for Magik

    For further detail see Quest for Magik

    \"No

    The Cuckoos helped Elixir to master biological manipulation by taking all biological and medical information from Beast's head and duplicating it in Elixir's mind. Along with the other students, they were captured by Belasco and sent to Limbo as he searched for Illyana Rasputin. There, they had helmets forced onto their heads which blocked their telepathy. X-23 and Prodigy managed to remove them, allowing them to help defeat Belasco. In doing so, they learned that Belasco loved Illyana, but was only able to revive her soulless body, Darkchilde, her soul lost and unreachable. After the defeat of Belasco by Pixie and Darkchilde, the Cuckoos and the other students returned to the Institute, which reverted as if nothing had occurred.

    Messiah Complex

    For further detail see: Messiah Complex

    The Cuckoos helped the X-Men to find a baby mutant, the first post-Decimation mutant child born. Using the newly fixed Cerebra, the three help them also helped to find the Marauders.

    Old Ghosts and Secret Invasion

    For further details see: Old Ghost and Secret Invasion

    \"Elixir
    Elixir and the girls

    Afterwards, the Cuckoos and their fellow classmates rejoined the X-Men in San Francisco. The girls later helped keep the new X-Force a secret by erasing Elixir's memories at his own request. They remained loyal to Cyclops and kept their own silence on the subject of X-Force.

    During the Skrull's invasion on Earth, the Cuckoos helped defend San Francisco from the Skrulls. When the Skrulls created a psychic blockade, it rendered every telepath useless and attempting to use their powers hurt them psychically. They soon channeled their powers to Emma Frost with the help of Cerebra, in the hopes that Frost would find and destroy the psychic blockade. Emma's psyche was temporarily disconnected from her body as she fought off the psychic Skrulls. The Cuckoos followed Cyclops' orders and used their telepathy to keep Emma's autonomic functions going, thereby animating her empty body. Emma finally destroyed the blockade, allowing the girls to use their telepathy again.

    Nation X

    For further detail see: Nation X

    \"The
    The Phoenix Fragments Leaving

    When Scalphunter sent a group of Predator X to Utopia, the X-Men were forced to battle the mutant-eating creatures. The Cuckoos served as a means of telepathic communication for the team, but during the battle, the Phoenix fragments that were contained inside their diamond hearts left them. It mysteriously returned to space, leaving the girls unconscious.

    Once the Stepford Cuckoos woke up from their coma, they began scanning for the Phoenix. Since they couldn't find any trace of the psychic entity, they asked Rogue to take some of their power so they could try passive scanning, as Mindee believed that the Phoenix could bend active psychic probes the same way a black hole does with light. They explained to Rogue that she wouldn't just get the power, she'd get the perspective as well, the perspective of triangulating on people's minds. When Rogue finished with the Cuckoos' powers, they said that the silence of little or no telepathy could be deafening. They also told Scott that they didn't find anything on Cerebra. He then asked her if they had gotten a trace of the Phoenix when it left them, and they replied that it got further and further away without actually moving.

    Avengers vs X-Men

    The Cuckoos were relocated from Utopia after the Phoenix-crazed Scott and Emma began acting out. The Cuckoos, along with the other transfers, attended the Jean Grey School, where they monitored the final battle - nearly all of the X-Men and Avengers versus Dark Phoenix (Scott Summers) - via Cerebra and were telepathically present when Charles Xavier was killed. The three Cuckoos informed Kitty Pryde, the Headmistress of JGS at the time, and all four women comforted each other.

    New Charles Xavier School for Mutants

    Scott Summers, now a mutant renegade, and his team of Uncanny X-Men (currently consisting of Emma Frost, Magik, Magneto, Kitty Pryde, and Dazzler) teleported to the Jean Grey School to announce the opening of his own new school: the New Charles Xavier School for Mutants. He extended an invitation to any students who wished to join. After a brief confrontation with a powerless Emma Frost, the Cuckoos agreed to attend, as did the time-displaced Warren Worthington III.

    Death of X

    The Cuckoos were a part of the team that discovered that the Terrigen cloud was toxic to mutants. They traveled with Emma Frost, Cyclops, Magik, Iceman, and Goldballs to Muir Island to investigate a distress call they received. They discovered the bodies of Multiple Man, writhing in agony before dying. Emma and Cyclops proceeded into the facility, where Cyclops was soon poisoned by the mist. Though he had died, Emma projected an image of Cyclops to honor his legacy. The Cuckoos were able to see this, but Emma threatened them, forcing them to keep quiet about his death. Together, Emma and the Cuckoos projected an image of Cyclops to everyone on the entire planet, delivering a speech to inform the world about the toxicity of the Terrigen Mist. The Cuckoos helped Emma destroy half of the Terrigen Mists roaming the world. After a brief conflict with the Inhuman royal family, Cyclops appeared to have been killed by Black Bolt. This was just the projection, as Cyclops had already died from the mist, but no one knew that except the Cuckoos. A truce was negotiated, and Emma agreed to give the Inhumans some time to work things out their way.

    Inhumans vs X-Men

    \"No

    The conflict between the Inhumans and the X-Men escalated when Beast discovered that the mutants had approximately one week left to live. Emma returned to the fold with the Cuckoos, and prepared for war. The Cuckoos helped Emma throughout the conflict, and especially in the final battle when they hijacked the minds of several Inhumans, turning them against their own people. They continued to fight alongside Emma, until the climax of the battle, when Emma was revealed to have engineered the entire conflict to avenge Cyclops. It was also revealed that Black Bolt had not actually killed Cyclops, but only the projection of him created by Emma, as the Cuckoos already knew. After the conflict had subsided, Emma had gone into hiding, and the focus of the Cuckoos returned to their education. They enrolled in the Xavier Institute for Mutant Education and Outreach, headed by Kitty Pryde and located in Central Park.

    Powers

    Telepathic Gestalt

    \"Psychic
    Psychic Gestalt

    The Stepford Cuckoos are powerful telepaths, who can combine their telepathic abilities to create an even more powerful hive-mind. Their telepathic powers include broadcasting and receiving thoughts, mind control, planting illusions, blasts of pure psionic energy, seeing through another person's eyes, and also are so powerful that they are one of the few people able to operate Cerebra. The Stepford Cuckoos are considered to be near Omega-level mutants, though they have never been classified as such, and since the deaths of their two sisters, have reduced in power.

    Hive Intelligence

    The Cuckoos shared mental link also bolstered their collective intelligence. This allows the Cuckoos telepathic not only to multiply by an incredibly high factor through their shared mindscape. But it also massively accelerated their brain power and analytical processing speed. Accumulatively making their intellectual prowess even greater than the sum total of each of the girls individual parts. Likewise it is unknown how powerful they're combined genius is with the main two of their psychic mind; Sophie and Esme.

    Diamond Form

    \"No

    The Cuckoos have also inherited the ability to turn into organic diamond like their mother, Emma Frost. However, unlike Emma, their diamond forms are flawless and cannot be shattered. All three can either turn an internal organ into perfect diamond while staying organic on the outside like they did with their hearts to imprison and capture the errant Phoenix shard during events of Warsong or fully become diamond to protect themselves during an ambush by demons in Limbo. During this event, the sisters had to communicate orally in order to agree on a plan to psychically influence the group of new mutants with bravery. To do this they had to become become organic again, sharing the same restrictions Emma has in her Diamond form.

    Alternate versions of the Cuckoos have also demonstrated the power of precognition. This may or may not be true for the Earth-616 Cuckoos.

    Former Powers

    Phoenix Force

    In X-Men: Phoenix Warsong, they were the avatars of the Phoenix. During possession, they displayed new powers related to the Phoenix, such as Phoenix-granted telekinesis and fire generation. It is unlikely that they still possess these abilities, however, especially after their captured Phoenix fragments left them abruptly during the Nation X storyline. It should be noted that avatars of the Phoenix are normally only Omega-level mutants and that the Phoenix in question was merely a shard of the full Phoenix Force. Regardless of this, they are uniquely powerful telepaths and essential to the X-Men. Often, they maintain telepathic communication for the teams via Cerebra when Emma is occupied with other missions.

    Alternate Realities

    Earth-15104

    \"Here
    Here Comes Tomorrow.

    The Stepford Cuckoos also exist on Earth-15104, known as Here Comes Tomorrow. In this reality, there were only three of them left - Celeste, Mindee and Phoebe - and they called themselves the Three-in-One. They also seem to have a self-destruct sequence within their consciousness, and this is the first reference to the sisters being Weapon XIV. The Three-In-One assisted the new team of X-Men in this apocalyptic future. When the Sublime-controlled Beast re-awoke and controls Jean Grey as the Phoenix, they alert the others. Sensing that the crazed Phoenix will burn away their minds, they initiate a self-destruct sequence, committing suicide.

    Earth-58163

    \"House
    House of M

    On Earth-58163, House of M, all five Cuckoos were alive and well. Sophie still seemed to be the more dominant Cuckoo and still had the urge to be a heroine. When she found out that David and Nori were going to Japan to find Nori's father (who was labeled as a human terrorist by S.H.I.E.L.D, who were also looking for him, but to put an end to him), Sophie decided that she wanted to help them and left her sisters to go to Japan.

    Sophie proved to be quite an asset to the team that went to Japan (which included Prodigy, Surge, Jubilee, Dust, Wallflower and Mercury). Even though most of the human terrorists were shielded from psionic attacks, Sophie still had enough power to manipulate some of their thoughts, and make them do as she commanded. She also helped the New Mutants in a premature face-off with the Hellions, and when Quill attacked Prodigy, she commanded Quill to surrender to her, which he did. She also was able to scan minds, which was how she learned that Wallflower was really working with the people of an experiment known as 'Project Genesis' which was what the New Mutants and the human terrorists wanted to shut down.

    Wallflower quickly used her pheromones to make all the parties involved (New Mutants, Hellions and the human terrorists) hate each other so much that they would fight to the death. This brawl was ended by Mercury, who was immune to Wallflower's pheromone manipulation, when she killed Wallflower. Wind Dancer of the Hellions, cleared the pheromones in the air with her wind-manipulating powers, and Sophie, knowing that the pheromones only fueled hatred that was already there, started to use her psionics to strip the hatred so there would be no more fighting. Tragically, Sophie was gunned down by a human terrorist who was immune to her psionic manipulation, as she was trying to make peace, but the gunman refused to be at peace with mutant-kind and wanted to fight them.

    Earth-91172

    On Earth-91172, a world ravaged by the Hulk, three of the Cuckoos are alive. Mindee and Esme are the Two-in-One and Sophie has broken away and developed precognitive abilities. They are members of the Next Wave of Heroes - the last heroes of Earth led by Quentin Quire. Other members are Patriot, Wiccan, Lightspeed and Speedball. Sophie dreams of a team of dimension-hopping heroes who can help them (the Exiles), which leads to Quentin trying to reach them and create a new team, the New Exiles. In this reality, Quentin and Sophie are a couple.

    X-Men: The End

    \"X-Men:
    X-Men: The End

    In X-Men: The End, a possible alternate future, Celeste, Mindee and Phoebe, call themselves the Spikes. They all have individual appearances, such as curly blonde hair or a shaved head and golden glowing eyes, instead of blue or white as they are usually depicted. The girls assist the X-Men, working with Martha the Mutant Brain to keep the team informed and also assist during the battle against Cassandra Nova.

    Other Media

    Television

    Wolverine and the X-Men

    \"Wolverine
    Wolverine and the X-Men

    In Wolverine and the X-Men, the Stepford Cuckoos are members of the Hellfire Club and were used by Emma Frost to release the Phoenix from Jean Grey to prevent the destruction caused by the aforementioned entity. The Cuckoos had difficulty releasing the Phoenix and were consumed by the entity. They went on to cause trouble in the city and Emma, Scott, and Jean had to join forces to fight them. Scott blasted them with his optic blast to capture their attention, then Emma and Jean used their combined powers to trap the Phoenix Force in Emma's diamond form, freeing the Cuckoos. As confessed by Selene to Scott, the mysterious explosion in the Institute that caused the X-Men's temporary disbandment was caused by Emma with the help of the Cuckoos. Wolverine also sensed a vision of Emma and the Cuckoos taking Jean.

    The Gifted

    \"Skyler
    Skyler Samuels as the Stepford Cuckoos in The Gifted

    The Stepford Cuckoos debuted in the first season of the serie, playing a major rol. Only 3 of them appeared so far: Esme, Sophie and Phoebe. Their last name is Frost. They are played by Skyler Samuels.

    Games

    X-Men Legends 2 Rise of Apocalypse

    The Stepford Cuckoos appear as boss battles in the game X-Men Legends 2: Rise of Apocalypse. The player encounters the Cuckoos in the Madri Temple as they fight alongside Holocaust.

    X-men: Battle of The Atom

    \"X-men:
    X-men: Battle of the Atom

    The Cuckoos are featured in the mobile card game \"X-Men: Battle of the Atom\" based on the comic book story with the same name. Their cards are:

    • (3-in-1) Stepford Cuckoos
    • [New Xavier School] Stepford Cuckoos
    • New X-Men] Stepford Cuckoos
    • [Utopia Defender] Cuckoos
    • [Weapon X Renegades] Stepford Cuckoos
    • [Phoenix] Stepford Cuckoos
    \"No
    ","disbanded_in_issues":[],"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-78322/","id":78322,"name":"Germ Free Generation Part One","issue_number":"118"},"id":4443,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","image_tags":"All Images"},"isssues_disbanded_in":[],"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-946709/","id":946709,"name":null,"site_detail_url":"https://comicvine.gamespot.com/axe-judgment-day-4/4000-946709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-935755/","id":935755,"name":"Time Flies When You're a Mutant","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-1-time-flies-when-youre-a-muta/4000-935755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-933078/","id":933078,"name":"The Hungry Mind","site_detail_url":"https://comicvine.gamespot.com/x-force-29-the-hungry-mind/4000-933078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-936258/","id":936258,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/reign-of-x-12-volume-12/4000-936258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-924786/","id":924786,"name":"Cerebrax","site_detail_url":"https://comicvine.gamespot.com/x-force-28-cerebrax/4000-924786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-930191/","id":930191,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/x-force-by-benjamin-percy-1-vol-1/4000-930191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917203/","id":917203,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-24/4000-917203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-938185/","id":938185,"name":null,"site_detail_url":"https://comicvine.gamespot.com/inferno-1/4000-938185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-910534/","id":910534,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-the-trial-of-magneto-1-tpb/4000-910534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917982/","id":917982,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infernales-17/4000-917982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-902690/","id":902690,"name":"How I Learned to Stop Worrying About Walking the Plank","site_detail_url":"https://comicvine.gamespot.com/marauders-27-how-i-learned-to-stop-worrying-about-/4000-902690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908723/","id":908723,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/x-force-by-benjamin-percy-4-volume-4/4000-908723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-908467/","id":908467,"name":"Vol. 4","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan-4-vol-4/4000-908467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-906643/","id":906643,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/hellions-by-zeb-wells-3-volume-3/4000-906643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917983/","id":917983,"name":null,"site_detail_url":"https://comicvine.gamespot.com/infernales-16/4000-917983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904843/","id":904843,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-1-tpb/4000-904843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-897331/","id":897331,"name":null,"site_detail_url":"https://comicvine.gamespot.com/inferno-3/4000-897331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-894133/","id":894133,"name":"The Edge","site_detail_url":"https://comicvine.gamespot.com/x-force-25-the-edge/4000-894133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-893934/","id":893934,"name":"Trauma Response","site_detail_url":"https://comicvine.gamespot.com/hellions-17-trauma-response/4000-893934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-898443/","id":898443,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-the-red-carpet-collection-1-hc/4000-898443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903139/","id":903139,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-20/4000-903139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-888637/","id":888637,"name":"Come Hurt With Us","site_detail_url":"https://comicvine.gamespot.com/hellions-16-come-hurt-with-us/4000-888637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903138/","id":903138,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-19/4000-903138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-884830/","id":884830,"name":"Welcome To Krakoa","site_detail_url":"https://comicvine.gamespot.com/x-men-the-trial-of-magneto-2-welcome-to-krakoa/4000-884830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903278/","id":903278,"name":null,"site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-118/4000-903278/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903137/","id":903137,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-18/4000-903137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-880901/","id":880901,"name":"Time For Tempo","site_detail_url":"https://comicvine.gamespot.com/marauders-23-time-for-tempo/4000-880901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-883364/","id":883364,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan-1-vol-1/4000-883364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929099/","id":929099,"name":" X-Men 20","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-381-x-men-20/4000-929099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-903119/","id":903119,"name":null,"site_detail_url":"https://comicvine.gamespot.com/nuevos-mutantes-15/4000-903119/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-872876/","id":872876,"name":"The Morning After","site_detail_url":"https://comicvine.gamespot.com/marauders-22-the-morning-after/4000-872876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878312/","id":878312,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-by-vita-ayala-1-vol-1/4000-878312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-930776/","id":930776,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-mutants-15/4000-930776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-858873/","id":858873,"name":"The Beginning","site_detail_url":"https://comicvine.gamespot.com/x-men-21-the-beginning/4000-858873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-857597/","id":857597,"name":"You Are Cordially Invited To the Hellfire Gala; Out With the Old A Tale of Hellfire Gala Past","site_detail_url":"https://comicvine.gamespot.com/marauders-21-you-are-cordially-invited-to-the-hell/4000-857597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-855632/","id":855632,"name":"Homecoming","site_detail_url":"https://comicvine.gamespot.com/new-mutants-18-homecoming/4000-855632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-856175/","id":856175,"name":"Volume 16","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-16-volume-16/4000-856175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-845169/","id":845169,"name":"Volume 15","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-15-volume-15/4000-845169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839151/","id":839151,"name":"Volume 14","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-14-volume-14/4000-839151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-832892/","id":832892,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-of-swords-1-hc/4000-832892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-828992/","id":828992,"name":"Volume 13","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-13-volume-13/4000-828992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-827684/","id":827684,"name":"Volume 12","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-12-volume-12/4000-827684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823082/","id":823082,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-14/4000-823082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819480/","id":819480,"name":"X of Swords Chapter 22","site_detail_url":"https://comicvine.gamespot.com/x-of-swords-destruction-1-x-of-swords-chapter-22/4000-819480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820057/","id":820057,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/new-mutants-by-ed-brisson-1-vol-1/4000-820057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929090/","id":929090,"name":"X-Men 11 (Empyre)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-372-x-men-11-empyre/4000-929090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823576/","id":823576,"name":null,"site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-107/4000-823576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823575/","id":823575,"name":null,"site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-106/4000-823575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819154/","id":819154,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-benjamin-percy-1-volume-1/4000-819154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-819148/","id":819148,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/cable-by-gerry-duggan-1-volume-1/4000-819148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817898/","id":817898,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-by-jonathan-hickman-2-volume-2/4000-817898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-817886/","id":817886,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan-2-vol-2/4000-817886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-816737/","id":816737,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men-1-tpb/4000-816737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-929089/","id":929089,"name":"X-Men 10 (Empyre)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-371-x-men-10-empyre/4000-929089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823722/","id":823722,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-8/4000-823722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797987/","id":797987,"name":"The Cerebro Sword","site_detail_url":"https://comicvine.gamespot.com/x-force-12-the-cerebro-sword/4000-797987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-807642/","id":807642,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-8-volume-8/4000-807642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823721/","id":823721,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-7/4000-823721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-814966/","id":814966,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-9-volume-9/4000-814966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-796303/","id":796303,"name":"One War, One Mutant","site_detail_url":"https://comicvine.gamespot.com/x-men-11-one-war-one-mutant/4000-796303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794935/","id":794935,"name":"Un'Ring","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men-4-unring/4000-794935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791927/","id":791927,"name":"To Live and Die On Krakoa","site_detail_url":"https://comicvine.gamespot.com/marauders-11-to-live-and-die-on-krakoa/4000-791927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-791925/","id":791925,"name":"Staff Infection","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men-3-staff-infection/4000-791925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-787350/","id":787350,"name":"Growing Strong","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men-2-growing-strong/4000-787350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823720/","id":823720,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-6/4000-823720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-784406/","id":784406,"name":"The Five In One","site_detail_url":"https://comicvine.gamespot.com/cable-2-the-five-in-one/4000-784406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781438/","id":781438,"name":"You Didn't See Nothing","site_detail_url":"https://comicvine.gamespot.com/wolverine-3-you-didnt-see-nothing/4000-781438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781568/","id":781568,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-by-benjamin-percy-1-volume-1/4000-781568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-763574/","id":763574,"name":"Leave None To Tell the Tale","site_detail_url":"https://comicvine.gamespot.com/marauders-10-leave-none-to-tell-the-tale/4000-763574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-759393/","id":759393,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-krakoa-lives-1/4000-759393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-795098/","id":795098,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-2/4000-795098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-795083/","id":795083,"name":null,"site_detail_url":"https://comicvine.gamespot.com/new-mutants-2/4000-795083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740814/","id":740814,"name":"Big Guns","site_detail_url":"https://comicvine.gamespot.com/cable-1-big-guns/4000-740814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739561/","id":739561,"name":"The Journey To the Center of Pyro","site_detail_url":"https://comicvine.gamespot.com/marauders-9-the-journey-to-the-center-of-pyro/4000-739561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-755772/","id":755772,"name":null,"site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-variant-covers-1/4000-755772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-748557/","id":748557,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan-1-vol-1/4000-748557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-746502/","id":746502,"name":"O espetacular Noturno","site_detail_url":"https://comicvine.gamespot.com/a-era-do-x-man-3-o-espetacular-noturno/4000-746502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736501/","id":736501,"name":"The Impossible Boy","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four-1-the-impossible-boy/4000-736501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742431/","id":742431,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-messiah-complex-1-tpb/4000-742431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740888/","id":740888,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-3-volume-3/4000-740888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740178/","id":740178,"name":null,"site_detail_url":"https://comicvine.gamespot.com/merodeadores-2/4000-740178/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740177/","id":740177,"name":null,"site_detail_url":"https://comicvine.gamespot.com/nuevos-mutantes-2/4000-740177/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740176/","id":740176,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-7/4000-740176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794974/","id":794974,"name":"Marauders 2","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-80-marauders-2/4000-794974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-746500/","id":746500,"name":"Maravilhosos X-men","site_detail_url":"https://comicvine.gamespot.com/a-era-do-x-man-1-maravilhosos-x-men/4000-746500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743986/","id":743986,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-house-of-x-and-powers-of-x-1/4000-743986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739022/","id":739022,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x-2-volume-2/4000-739022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-735170/","id":735170,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-previews-31/4000-735170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730341/","id":730341,"name":"To the Grave","site_detail_url":"https://comicvine.gamespot.com/new-mutants-3-to-the-grave/4000-730341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734364/","id":734364,"name":"Dinastía de X 4","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-94-dinastia-de-x-4/4000-734364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-740959/","id":740959,"name":"A queda - Volume 2","site_detail_url":"https://comicvine.gamespot.com/fabulosos-x-men-2-a-queda-volume-2/4000-740959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728984/","id":728984,"name":"The Sword of Damocles","site_detail_url":"https://comicvine.gamespot.com/x-force-2-the-sword-of-damocles/4000-728984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-728426/","id":728426,"name":"The Red Coronation","site_detail_url":"https://comicvine.gamespot.com/marauders-2-the-red-coronation/4000-728426/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-730353/","id":730353,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/house-of-xpowers-of-x-1-hctpb/4000-730353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734245/","id":734245,"name":"House of X 4","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-359-house-of-x-4/4000-734245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-733299/","id":733299,"name":" House of X 3","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-75-house-of-x-3/4000-733299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732166/","id":732166,"name":"Dinastía de X 3","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-93-dinastia-de-x-3/4000-732166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-738204/","id":738204,"name":"La séparation (III)","site_detail_url":"https://comicvine.gamespot.com/x-men-11-la-separation-iii/4000-738204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734241/","id":734241,"name":"House of X 1","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-356-house-of-x-1/4000-734241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732164/","id":732164,"name":"Dinastía de X 1","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-91-dinastia-de-x-1/4000-732164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718128/","id":718128,"name":"It Will Be Done","site_detail_url":"https://comicvine.gamespot.com/house-of-x-4-it-will-be-done/4000-718128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741231/","id":741231,"name":"Prigioniero X: In catene","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-5-prigioniero-x-in-catene/4000-741231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732266/","id":732266,"name":"La Era de Hombre-X: Prisionero X 2","site_detail_url":"https://comicvine.gamespot.com/la-era-de-hombre-x-11-la-era-de-hombre-x-prisioner/4000-732266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717519/","id":717519,"name":"Once More Unto the Breach","site_detail_url":"https://comicvine.gamespot.com/house-of-x-3-once-more-unto-the-breach/4000-717519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718139/","id":718139,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-prisoner-x-1-tpb/4000-718139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741229/","id":741229,"name":"Lo stupefacente Nightcrawler: Gli spettri di Hollywood","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-3-lo-stupefacente-nightcrawler-gli-sp/4000-741229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732264/","id":732264,"name":"La Era de Hombre-X: El Asombroso Rondador Nocturno 2","site_detail_url":"https://comicvine.gamespot.com/la-era-de-hombre-x-9-la-era-de-hombre-x-el-asombro/4000-732264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-714236/","id":714236,"name":"The House That Xavier Built","site_detail_url":"https://comicvine.gamespot.com/house-of-x-1-the-house-that-xavier-built/4000-714236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-717536/","id":717536,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler-1-tpb/4000-717536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741227/","id":741227,"name":"I meravigliosi X-Men : Benvenuti in un Mondo perfetto","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-1-i-meravigliosi-x-men-benvenuti-in-u/4000-741227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-734222/","id":734222,"name":"X-Men Divisi IV","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-350-x-men-divisi-iv/4000-734222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711936/","id":711936,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler-5/4000-711936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732258/","id":732258,"name":"La Era de Hombre-X: El Asombroso Rondador Nocturno 1","site_detail_url":"https://comicvine.gamespot.com/la-era-de-hombre-x-3-la-era-de-hombre-x-el-asombro/4000-732258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709711/","id":709711,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler-4/4000-709711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-707502/","id":707502,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-prisoner-x-3/4000-707502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711953/","id":711953,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/new-x-men-the-quest-for-magik-the-complete-collect/4000-711953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-744576/","id":744576,"name":"Zwei flogen über das Kuckucksnest","site_detail_url":"https://comicvine.gamespot.com/x-23-1-zwei-flogen-uber-das-kuckucksnest/4000-744576/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741780/","id":741780,"name":"Album di Famiglia","site_detail_url":"https://comicvine.gamespot.com/x-23-1-album-di-famiglia/4000-741780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732242/","id":732242,"name":"La Era de Hombre-X: Alfa","site_detail_url":"https://comicvine.gamespot.com/la-era-de-hombre-x-0-la-era-de-hombre-x-alfa/4000-732242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742994/","id":742994,"name":"Um homem chamado X","site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-2-um-homem-chamado-x/4000-742994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-732148/","id":732148,"name":null,"site_detail_url":"https://comicvine.gamespot.com/essential-x-men-15/4000-732148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716523/","id":716523,"name":"Desunida Partes VIII - X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-85-desunida-partes-viii-x/4000-716523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703931/","id":703931,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler-2/4000-703931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-706432/","id":706432,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-by-peter-milligan-dangerous-liaisons-1-tpb/4000-706432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701298/","id":701298,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler-1/4000-701298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704256/","id":704256,"name":"Jusqu'à notre dernier souffle","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-1-jusqua-notre-dernier-souffle/4000-704256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703957/","id":703957,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-x-men-disassembled-1-volume-1/4000-703957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737999/","id":737999,"name":"Dos cumpleaños y tres funerales","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-23-1-dos-cumpleanos-y-tres-funerales/4000-737999/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-699388/","id":699388,"name":null,"site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-alpha-1/4000-699388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-697647/","id":697647,"name":"Disassembled Conclusion","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10-disassembled-conclusion/4000-697647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696961/","id":696961,"name":"Disassembled Part 9","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-9-disassembled-part-9/4000-696961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701993/","id":701993,"name":"Todo queda en familia","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-5-todo-queda/4000-701993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701328/","id":701328,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-the-complete-collec/4000-701328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-696965/","id":696965,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-23-family-album-1-volume-1/4000-696965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-742923/","id":742923,"name":null,"site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial-1/4000-742923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704254/","id":704254,"name":"Joyeux anniversaire,Old man Logan","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-x-men-extra-4-joyeux-anniversaireold/4000-704254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702798/","id":702798,"name":"Mi vuoi sposare?","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-342-mi-vuoi-sposare/4000-702798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688332/","id":688332,"name":"Two Birthdays and Three Funerals Part 5","site_detail_url":"https://comicvine.gamespot.com/x-23-5-two-birthdays-and-three-funerals-part-5/4000-688332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-684930/","id":684930,"name":"Two Birthdays and Three Funerals Part 4","site_detail_url":"https://comicvine.gamespot.com/x-23-4-two-birthdays-and-three-funerals-part-4/4000-684930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-687032/","id":687032,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-in-darkness-by-grant-morrison-1-tpb/4000-687032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-737994/","id":737994,"name":"Hombre de Hielo 2","site_detail_url":"https://comicvine.gamespot.com/100-marvel-hombre-de-hielo-2-hombre-de-hielo-2/4000-737994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704570/","id":704570,"name":"A mim, meus X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-22-a-mim-meus-x-men/4000-704570/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702137/","id":702137,"name":"Un hombre llamado X Final","site_detail_url":"https://comicvine.gamespot.com/increible-patrulla-x-12-un-hombre-llamado-x-final/4000-702137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-682669/","id":682669,"name":"Two Birthdays and Three Funerals Part 3","site_detail_url":"https://comicvine.gamespot.com/x-23-3-two-birthdays-and-three-funerals-part-3/4000-682669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704252/","id":704252,"name":"Guerre nuke-cléaire","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-x-men-extra-2-guerre-nuke-cleaire/4000-704252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702795/","id":702795,"name":"Il ritorno di Excalibur","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-339-il-ritorno-di-excalibur/4000-702795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-677986/","id":677986,"name":"Two Birthdays and Three Funerals Part 2","site_detail_url":"https://comicvine.gamespot.com/x-23-2-two-birthdays-and-three-funerals-part-2/4000-677986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-676717/","id":676717,"name":"Two Birthdays and Three Funerals","site_detail_url":"https://comicvine.gamespot.com/x-23-1-two-birthdays-and-three-funerals/4000-676717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-680170/","id":680170,"name":null,"site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4/4000-680170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678525/","id":678525,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-charles-soule-a-man-called-x-/4000-678525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-672275/","id":672275,"name":"A Man Called X Finale: Mindkiller","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-12-a-man-called-x-finale-mindkil/4000-672275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704251/","id":704251,"name":"Arme H : La traque","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-x-men-extra-1-arme-h-la-traque/4000-704251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702914/","id":702914,"name":"Benvenuti nel 2099 ci auguriamo che sopravviviate all'esperienza!","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-60-benvenuti-nel-2099-ci-auguri/4000-702914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702913/","id":702913,"name":null,"site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-59/4000-702913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702153/","id":702153,"name":"Selección natural","site_detail_url":"https://comicvine.gamespot.com/100-marvel-generacion-x-1-seleccion-natural/4000-702153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704558/","id":704558,"name":"Inumanos vs X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-17-inumanos-vs-x-men/4000-704558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702912/","id":702912,"name":"Mojo in Mondovisione : la vendetta","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-58-mojo-in-mondovisione-la-vend/4000-702912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667668/","id":667668,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-legion-revenants-1-volume-3/4000-667668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667642/","id":667642,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/iceman-absolute-zero-1-volume-2/4000-667642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-665916/","id":665916,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/jean-grey-final-fight-1-volume-2/4000-665916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-658722/","id":658722,"name":"The Apocalypse Seed Part 2","site_detail_url":"https://comicvine.gamespot.com/iceman-10-the-apocalypse-seed-part-2/4000-658722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663219/","id":663219,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-21/4000-663219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664305/","id":664305,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-demon-bear-1-tpb/4000-664305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656706/","id":656706,"name":"Psych Wars Part 4","site_detail_url":"https://comicvine.gamespot.com/jean-grey-11-psych-wars-part-4/4000-656706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650918/","id":650918,"name":"The Apocalypse Seed Part 1","site_detail_url":"https://comicvine.gamespot.com/iceman-9-the-apocalypse-seed-part-1/4000-650918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704173/","id":704173,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-universe-3/4000-704173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-659065/","id":659065,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-20/4000-659065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-649749/","id":649749,"name":"Phoenix Invictus","site_detail_url":"https://comicvine.gamespot.com/true-believers-death-of-phoenix-1-phoenix-invictus/4000-649749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646189/","id":646189,"name":"Psych Wars Part 3","site_detail_url":"https://comicvine.gamespot.com/jean-grey-10-psych-wars-part-3/4000-646189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704110/","id":704110,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion-4/4000-704110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-701991/","id":701991,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-3/4000-701991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-657249/","id":657249,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/legion-son-of-x-prodigal-1-volume-1/4000-657249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643031/","id":643031,"name":"Psych Wars Part 2","site_detail_url":"https://comicvine.gamespot.com/jean-grey-9-psych-wars-part-2/4000-643031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743229/","id":743229,"name":"Ein neuer Morgen","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-1-ein-neuer-morgen/4000-743229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702787/","id":702787,"name":"Evoluti per uccidere","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-331-evoluti-per-uccidere/4000-702787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-648829/","id":648829,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-18/4000-648829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632498/","id":632498,"name":"Psych Wars Part 1","site_detail_url":"https://comicvine.gamespot.com/jean-grey-8-psych-wars-part-1/4000-632498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705050/","id":705050,"name":null,"site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-4/4000-705050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635161/","id":635161,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-11/4000-635161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634533/","id":634533,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/generation-x-natural-selection-1-volume-1/4000-634533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741190/","id":741190,"name":"Lezioni di un futuro passato","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-1-lezioni-di-un-futuro-passa/4000-741190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741099/","id":741099,"name":"La fine della storia","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-6-la-fine-della-storia/4000-741099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704171/","id":704171,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-universe-1/4000-704171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-633345/","id":633345,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-16/4000-633345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-631075/","id":631075,"name":"VvX","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrulla-x-2-vvx/4000-631075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-627000/","id":627000,"name":"","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-65/4000-627000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615020/","id":615020,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-x-5/4000-615020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-627047/","id":627047,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-15/4000-627047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625685/","id":625685,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-625685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-620829/","id":620829,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-9/4000-620829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617224/","id":617224,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-8/4000-617224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616207/","id":616207,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-back-to-the-basics-1-volume-1/4000-616207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616183/","id":616183,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-inevitable-ivx-1-volume-4/4000-616183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-603149/","id":603149,"name":"Techno Superior Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-6-techno-superior-part-3/4000-603149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702901/","id":702901,"name":"Scontro fra Ciclopi (Inumani vs X-Men)","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-50-scontro-fra-ciclopi-inumani-/4000-702901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-625683/","id":625683,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-1/4000-625683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610541/","id":610541,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-superior-ivx-1-volume-1/4000-610541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606627/","id":606627,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/inhumans-vs-x-men-1-hctpb/4000-606627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595688/","id":595688,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-x-1/4000-595688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741098/","id":741098,"name":"L'eredità di Xavier","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-5-leredita-di-xavier/4000-741098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702745/","id":702745,"name":"La scelta di Ororo","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-325-la-scelta-di-ororo/4000-702745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-631086/","id":631086,"name":"Segunda Parte","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-vvx-los-vengadores-vs-la-patrulla-x-/4000-631086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616944/","id":616944,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-50/4000-616944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598096/","id":598096,"name":"Mort sous X","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-hors-serie-3-mort-sous-x/4000-598096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741091/","id":741091,"name":"Avventure definitive","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-6-avventure-definitive/4000-741091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617221/","id":617221,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-5/4000-617221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597964/","id":597964,"name":"Le vieil homme et l'enfant","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-12-le-vieil-homme-et-lenfant/4000-597964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585080/","id":585080,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-6/4000-585080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611860/","id":611860,"name":"Inhumanos Vs. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x-59-inhumanos-vs-patrulla-x/4000-611860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-590988/","id":590988,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-legion-omnibus-1-hc/4000-590988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582534/","id":582534,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-5/4000-582534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580755/","id":580755,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-4/4000-580755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579303/","id":579303,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-18/4000-579303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617219/","id":617219,"name":"","site_detail_url":"https://comicvine.gamespot.com/legion-3/4000-617219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583718/","id":583718,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/death-of-x-1-tpb/4000-583718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-583717/","id":583717,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-adamantium-collection-1-hc/4000-583717/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741090/","id":741090,"name":"La vendetta della Confraternita","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-5-la-vendetta-della-conf/4000-741090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704081/","id":704081,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-6/4000-704081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579623/","id":579623,"name":"","site_detail_url":"https://comicvine.gamespot.com/muerte-de-x-2/4000-579623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-579622/","id":579622,"name":"","site_detail_url":"https://comicvine.gamespot.com/muerte-de-x-1/4000-579622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-569354/","id":569354,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-16/4000-569354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741097/","id":741097,"name":"X-Men contro lo SHIELD","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-4-x-men-contro-lo-shield/4000-741097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704080/","id":704080,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-5/4000-704080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-562597/","id":562597,"name":"","site_detail_url":"https://comicvine.gamespot.com/ivx-0/4000-562597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-558962/","id":558962,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-of-x-4/4000-558962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-556471/","id":556471,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-of-x-3/4000-556471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553955/","id":553955,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-of-x-2/4000-553955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-552158/","id":552158,"name":"","site_detail_url":"https://comicvine.gamespot.com/death-of-x-1/4000-552158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-629352/","id":629352,"name":"Regénesis","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-equipo-extincion-1-regene/4000-629352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741089/","id":741089,"name":"Purificati","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-4-purificati/4000-741089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703588/","id":703588,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-7/4000-703588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704366/","id":704366,"name":"E de Extinção","site_detail_url":"https://comicvine.gamespot.com/guerras-secretas-x-men-3-e-de-extincao/4000-704366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704079/","id":704079,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-4/4000-704079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-546402/","id":546402,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-27/4000-546402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704986/","id":704986,"name":null,"site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-7/4000-704986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704523/","id":704523,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-34/4000-704523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582249/","id":582249,"name":"Le procès d'Henry McCoy","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-hors-serie-1-le-proces-dhenry-mccoy/4000-582249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494025/","id":494025,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-37/4000-494025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704521/","id":704521,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-33/4000-704521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704328/","id":704328,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-extra-29/4000-704328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664039/","id":664039,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-4-volume-4/4000-664039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630443/","id":630443,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-miedo-encarnado-1/4000-630443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601232/","id":601232,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-35/4000-601232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741096/","id":741096,"name":"Il buono, il cattivo e l'inumano","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-3-il-buono-il-cattivo-e-l/4000-741096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704519/","id":704519,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-32/4000-704519/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703587/","id":703587,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-6/4000-703587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592938/","id":592938,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-310/4000-592938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527161/","id":527161,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-apocalypse-twilight-1-tpb/4000-527161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524390/","id":524390,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-22/4000-524390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592935/","id":592935,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-309/4000-592935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538681/","id":538681,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-46/4000-538681/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-524389/","id":524389,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-21/4000-524389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741093/","id":741093,"name":"La battaglia dell'atomo","site_detail_url":"https://comicvine.gamespot.com/x-men-la-battaglia-dellatomo-1-la-battaglia-dellat/4000-741093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704517/","id":704517,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-30/4000-704517/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592931/","id":592931,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-308/4000-592931/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540897/","id":540897,"name":"E de Extinción 2 - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-34-e-de-extincion-2-secret-war/4000-540897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516082/","id":516082,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction-warzones-1-tpb/4000-516082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513661/","id":513661,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1-volume-1/4000-513661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704516/","id":704516,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-29/4000-704516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592930/","id":592930,"name":"Anni di in futuro passato","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-307-anni-di-in-futuro-passat/4000-592930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540896/","id":540896,"name":"E de Extinción 1 - Secret Wars","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-33-e-de-extincion-1-secret-war/4000-540896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-504952/","id":504952,"name":"[Untitled]; Winter Carnival","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-600-untitled-winter-carnival/4000-504952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704515/","id":704515,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-28/4000-704515/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510361/","id":510361,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-19/4000-510361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592929/","id":592929,"name":"Nuove vite","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-306-nuove-vite/4000-592929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511838/","id":511838,"name":"Utopistes","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-4-utopistes/4000-511838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511835/","id":511835,"name":"Le Vortex Noir 6/7","site_detail_url":"https://comicvine.gamespot.com/x-men-30-le-vortex-noir-67/4000-511835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507190/","id":507190,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-storyville-1-volume-6/4000-507190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507176/","id":507176,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-3-volume-3/4000-507176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592928/","id":592928,"name":"I mille volti di Mystica","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-305-i-mille-volti-di-mystica/4000-592928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505192/","id":505192,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-4/4000-505192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-501609/","id":501609,"name":"Supernova","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction-4-supernova/4000-501609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741088/","id":741088,"name":"Fuori portata","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-3-fuori-portata/4000-741088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704422/","id":704422,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-26/4000-704422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503950/","id":503950,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-17/4000-503950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511163/","id":511163,"name":"Der Omega-Mutant","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6-der-omega-mutant/4000-511163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505750/","id":505750,"name":"Le Vortex Noir (3/7)","site_detail_url":"https://comicvine.gamespot.com/x-men-28-le-vortex-noir-37/4000-505750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-498386/","id":498386,"name":"Beast Wars","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction-3-beast-wars/4000-498386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739752/","id":739752,"name":"Car nous sommes Légion","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-4-car-nous-sommes-legion/4000-739752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703586/","id":703586,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-5/4000-703586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592923/","id":592923,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-303/4000-592923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538675/","id":538675,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-40/4000-538675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511836/","id":511836,"name":"Un Monde En Flammes","site_detail_url":"https://comicvine.gamespot.com/x-men-hors-serie-2-un-monde-en-flammes/4000-511836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499657/","id":499657,"name":"Sur le terrain","site_detail_url":"https://comicvine.gamespot.com/x-men-27-sur-le-terrain/4000-499657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499031/","id":499031,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-2-volume-2/4000-499031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495810/","id":495810,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-35/4000-495810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495797/","id":495797,"name":"X vs X","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction-2-x-vs-x/4000-495797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704420/","id":704420,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-24/4000-704420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703585/","id":703585,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-4/4000-703585/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592914/","id":592914,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-302/4000-592914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-538674/","id":538674,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-39/4000-538674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499656/","id":499656,"name":"Guerre à la terreur","site_detail_url":"https://comicvine.gamespot.com/x-men-26-guerre-a-la-terreur/4000-499656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493040/","id":493040,"name":"Relax and be Replaced","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction-1-relax-and-be-replaced/4000-493040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-496602/","id":496602,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-14/4000-496602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741095/","id":741095,"name":"Rotto","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume-2-rotto/4000-741095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704419/","id":704419,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-23/4000-704419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592906/","id":592906,"name":"GLI SCHELETRI DI XAVIER","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-301-gli-scheletri-di-xavier/4000-592906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489330/","id":489330,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-34/4000-489330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494062/","id":494062,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-13/4000-494062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704418/","id":704418,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-22/4000-704418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703146/","id":703146,"name":"Gli Incredibili X-Men: Dispersi nel tempo","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-235-gli-incredibili-x-men-dispersi-ne/4000-703146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491757/","id":491757,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-12/4000-491757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592891/","id":592891,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-300/4000-592891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499654/","id":499654,"name":"L'aventure ultime","site_detail_url":"https://comicvine.gamespot.com/x-men-24-laventure-ultime/4000-499654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-488137/","id":488137,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-11/4000-488137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704417/","id":704417,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-21/4000-704417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704076/","id":704076,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-1/4000-704076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635162/","id":635162,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-17/4000-635162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-630455/","id":630455,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-advenimiento-1/4000-630455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592890/","id":592890,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-299/4000-592890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499653/","id":499653,"name":"Le mutant oméga","site_detail_url":"https://comicvine.gamespot.com/x-men-23-le-mutant-omega/4000-499653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-494024/","id":494024,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-36/4000-494024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483361/","id":483361,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-32/4000-483361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704415/","id":704415,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-20/4000-704415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601213/","id":601213,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-23/4000-601213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592889/","id":592889,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-298/4000-592889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511162/","id":511162,"name":"Charles Xaviers letzter Wille","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5-charles-xaviers-letzter-wille/4000-511162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503908/","id":503908,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-21/4000-503908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499652/","id":499652,"name":"World War Wendigo","site_detail_url":"https://comicvine.gamespot.com/x-men-22-world-war-wendigo/4000-499652/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487962/","id":487962,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-35/4000-487962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479985/","id":479985,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-31/4000-479985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-486889/","id":486889,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-10/4000-486889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739751/","id":739751,"name":"De gloire et d'espoir","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-3-de-gloire-et-despoir/4000-739751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704414/","id":704414,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-19/4000-704414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482877/","id":482877,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-9/4000-482877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601212/","id":601212,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-22/4000-601212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503907/","id":503907,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-20/4000-503907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499651/","id":499651,"name":"Le testament de Charles Xavier","site_detail_url":"https://comicvine.gamespot.com/x-men-21-le-testament-de-charles-xavier/4000-499651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-487961/","id":487961,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-34/4000-487961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483702/","id":483702,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-omega-mutant-1-volume-5/4000-483702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483056/","id":483056,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-the-ultimate-adventure-1-volume-6/4000-483056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477858/","id":477858,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-30/4000-477858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-741087/","id":741087,"name":"Qui per restare","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-volume-2-qui-per-restare/4000-741087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704396/","id":704396,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-18/4000-704396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482876/","id":482876,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-8/4000-482876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601211/","id":601211,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-21/4000-601211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592884/","id":592884,"name":"I SEGRETI DI XAVIER","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-296-i-segreti-di-xavier/4000-592884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511161/","id":511161,"name":"Die X-Men gegen SHIELD","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-4-die-x-men-gegen-shield/4000-511161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503906/","id":503906,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-19/4000-503906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499650/","id":499650,"name":"Les habitudes ont la vie dure","site_detail_url":"https://comicvine.gamespot.com/x-men-20-les-habitudes-ont-la-vie-dure/4000-499650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703584/","id":703584,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-3/4000-703584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702308/","id":702308,"name":"L'Apocalisse del domani","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-34-lapocalisse-del-domani/4000-702308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474637/","id":474637,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-29/4000-474637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474620/","id":474620,"name":"The Secret Life of Eva Bell Part 2","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-annual-1-the-secret-life-of-eva-bell/4000-474620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-635150/","id":635150,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-13/4000-635150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601210/","id":601210,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-20/4000-601210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592883/","id":592883,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-295/4000-592883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511168/","id":511168,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-die-x-men-sonderband-5/4000-511168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-503905/","id":503905,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-18/4000-503905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481826/","id":481826,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-30/4000-481826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479509/","id":479509,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-32/4000-479509/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-477169/","id":477169,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/original-sin-companion-1-hc/4000-477169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704375/","id":704375,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-15/4000-704375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-702307/","id":702307,"name":null,"site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-33/4000-702307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511160/","id":511160,"name":"Verborgene Talente","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-3-verborgene-talente/4000-511160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479508/","id":479508,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-31/4000-479508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468091/","id":468091,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-27/4000-468091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467821/","id":467821,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/all-new-doop-1-tpb/4000-467821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704374/","id":704374,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-14/4000-704374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609921/","id":609921,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-13/4000-609921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601208/","id":601208,"name":"Di passati e futuri","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-18-di-passati-e-futuri/4000-601208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592881/","id":592881,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-294/4000-592881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499995/","id":499995,"name":"Le procès de Jean Grey 5/6","site_detail_url":"https://comicvine.gamespot.com/x-men-17-le-proces-de-jean-grey-56/4000-499995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469449/","id":469449,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-19/4000-469449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469448/","id":469448,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-30/4000-469448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465853/","id":465853,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-26/4000-465853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-592877/","id":592877,"name":"Inizia la guerra","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-293-inizia-la-guerra/4000-592877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609918/","id":609918,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-10/4000-609918/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470597/","id":470597,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-12/4000-470597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469289/","id":469289,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-tomorrow-never-leaves-1-vo/4000-469289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-469286/","id":469286,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-iron-man-nova-no-end-in-sight-1-tpb/4000-469286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468857/","id":468857,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-30/4000-468857/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468352/","id":468352,"name":"Utopia","site_detail_url":"https://comicvine.gamespot.com/grandi-eventi-marvel-8-utopia/4000-468352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468351/","id":468351,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-17/4000-468351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468350/","id":468350,"name":"Gli X-Men contro lo S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-292-gli-x-men-contro-lo-s-h-/4000-468350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468201/","id":468201,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-18/4000-468201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468195/","id":468195,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-9/4000-468195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467800/","id":467800,"name":"Le procès de Jean Grey 3/6","site_detail_url":"https://comicvine.gamespot.com/x-men-16-le-proces-de-jean-grey-36/4000-467800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467569/","id":467569,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-29/4000-467569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467567/","id":467567,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-18/4000-467567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467227/","id":467227,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-x-force-demon-bear-1-tpb/4000-467227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467196/","id":467196,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-1-volume-1/4000-467196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464887/","id":464887,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband-4/4000-464887/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463476/","id":463476,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-31/4000-463476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462241/","id":462241,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-30/4000-462241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468213/","id":468213,"name":"X-Tinción Mutante Vol. 5, Second Coming , Libro 2","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-14-x-tincion-mutante-vol-5-secon/4000-468213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468194/","id":468194,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-8/4000-468194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466598/","id":466598,"name":"Bienvenidos al mañana","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-x-men-8-bienvenidos-al-manana/4000-466598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466594/","id":466594,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-11/4000-466594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466593/","id":466593,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-9/4000-466593/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-466090/","id":466090,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-vs-s-h-i-e-l-d-1-volume-4/4000-466090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465979/","id":465979,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-291/4000-465979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465972/","id":465972,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-2/4000-465972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465335/","id":465335,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-one-down-1-volume-5/4000-465335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465221/","id":465221,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-17/4000-465221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465168/","id":465168,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-legacy-2/4000-465168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465163/","id":465163,"name":"Le procès de Jean Grey 15/6","site_detail_url":"https://comicvine.gamespot.com/x-men-15-le-proces-de-jean-grey-156/4000-465163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465156/","id":465156,"name":"Planeta-X","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-x-men-7-planeta-x/4000-465156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465155/","id":465155,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-28/4000-465155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465154/","id":465154,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-28/4000-465154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465152/","id":465152,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-17/4000-465152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460974/","id":460974,"name":null,"site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-24/4000-460974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460967/","id":460967,"name":"No End In Sight, Part 2: Faking It","site_detail_url":"https://comicvine.gamespot.com/iron-man-special-1-no-end-in-sight-part-2-faking-i/4000-460967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459685/","id":459685,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-23/4000-459685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459668/","id":459668,"name":"","site_detail_url":"https://comicvine.gamespot.com/100th-anniversary-special-x-men-1/4000-459668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459161/","id":459161,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-29/4000-459161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739750/","id":739750,"name":"Parasite exotique","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-2-parasite-exotique/4000-739750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-465136/","id":465136,"name":"Ataque a Arma Plus","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-x-men-6-ataque-a-arma-plus/4000-465136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463860/","id":463860,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-10/4000-463860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463852/","id":463852,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-463852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463710/","id":463710,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-force-by-craig-kyle-chris-yost-2-volume-2/4000-463710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463608/","id":463608,"name":"Attacco allo SHIELD","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-28-attacco-allo-shield/4000-463608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463606/","id":463606,"name":"Il vero volto di Magneto","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-290-il-vero-volto-di-magneto/4000-463606/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-462353/","id":462353,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-16/4000-462353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461930/","id":461930,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-27/4000-461930/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461929/","id":461929,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-27/4000-461929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461927/","id":461927,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-16/4000-461927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-461366/","id":461366,"name":"Vendetta","site_detail_url":"https://comicvine.gamespot.com/x-men-14-vendetta/4000-461366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460072/","id":460072,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-x-3/4000-460072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456559/","id":456559,"name":"Tomorrow Never Learns, Chapter 5: Chekhov's Gun","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-5-tomorrow-never-learns-chapte/4000-456559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456558/","id":456558,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-22/4000-456558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456032/","id":456032,"name":"No End In Sight, Part 1 of 3: Breaking In","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-special-1-no-end-in-sight-part-1-of-/4000-456032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456017/","id":456017,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-28/4000-456017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460065/","id":460065,"name":"Scomode alleanze! ( 2 di 2 )","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-289-scomode-alleanze-2-di-2/4000-460065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459944/","id":459944,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-9/4000-459944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459813/","id":459813,"name":"Mente e artigli!","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-14-mente-e-artigli/4000-459813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459319/","id":459319,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-12/4000-459319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459316/","id":459316,"name":"Revuelta en la escuela","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-x-men-5-revuelta-en-la-escuela/4000-459316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459047/","id":459047,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-15/4000-459047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-458720/","id":458720,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-26/4000-458720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457132/","id":457132,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-12/4000-457132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453423/","id":453423,"name":"Tomorrow Never Learns Chapter 4: In The Land Of The Blind...","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-4-tomorrow-never-learns-chapte/4000-453423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453422/","id":453422,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-21/4000-453422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452845/","id":452845,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-27/4000-452845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456875/","id":456875,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-6/4000-456875/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456870/","id":456870,"name":"Scomode alleanze! ( 1 di 2 )","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-288-scomode-alleanze-1-di-2/4000-456870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456866/","id":456866,"name":"L'attacco dei purificatori!","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-13-lattacco-dei-purificatori/4000-456866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456236/","id":456236,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-young-guns-1/4000-456236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456163/","id":456163,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-5/4000-456163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455824/","id":455824,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/inhumanity-1-hc/4000-455824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455660/","id":455660,"name":"Imperial","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-x-men-3-imperial/4000-455660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455638/","id":455638,"name":"Planète X","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men-4-planete-x/4000-455638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-455300/","id":455300,"name":"¡Contra S.H.I.E.L.D.!","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-25-contra-s-h-i-e-l-d/4000-455300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450557/","id":450557,"name":"Uncanny X-Men vs. S.H.I.E.L.D. Part 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-20-uncanny-x-men-vs-s-h-i-e-l-d-part/4000-450557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450162/","id":450162,"name":"The Real Battle of the Atom","site_detail_url":"https://comicvine.gamespot.com/all-new-doop-1-the-real-battle-of-the-atom/4000-450162/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453664/","id":453664,"name":"New X-Men By Grant Morrison","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-1-new-x-men-by-grant-morrison/4000-453664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453651/","id":453651,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/a-x-a-x-outstanding-1-volume-3/4000-453651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453640/","id":453640,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-453640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453320/","id":453320,"name":"Iniziazione","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-287-iniziazione/4000-453320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453319/","id":453319,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-12/4000-453319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453059/","id":453059,"name":"Generación sin gérmenes","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-x-men-2-generacion-sin-germenes/4000-453059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452949/","id":452949,"name":"Prodigue","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-legacy-1-prodigue/4000-452949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452541/","id":452541,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-vs-hulk-1-tpb/4000-452541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452540/","id":452540,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-the-adamantium-collection-1-hc/4000-452540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452539/","id":452539,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-good-the-bad-the-inhuman-1-volum/4000-452539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452234/","id":452234,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-13/4000-452234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452233/","id":452233,"name":"Nación X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-nacion-x/4000-452233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451853/","id":451853,"name":"A la recherche de Diablo","site_detail_url":"https://comicvine.gamespot.com/x-men-11-a-la-recherche-de-diablo/4000-451853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451184/","id":451184,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-10/4000-451184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448958/","id":448958,"name":"The Vision + Kitty Pryde; Captain America + Cyclops: Part 6","site_detail_url":"https://comicvine.gamespot.com/a-x-18-the-vision-kitty-pryde-captain-america-cycl/4000-448958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446998/","id":446998,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-18/4000-446998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450319/","id":450319,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-56/4000-450319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-739749/","id":739749,"name":"Prodigue","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-1-prodigue/4000-739749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452018/","id":452018,"name":"Volume Eight","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-8-volume-ei/4000-452018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451940/","id":451940,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-all-different-1-volume-4/4000-451940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451343/","id":451343,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-for-we-are-many-1-volume-4/4000-451343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450657/","id":450657,"name":"La Battaglia dell'atomo : capitolo 5","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-11-la-battaglia-dell-atomo-capi/4000-450657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450439/","id":450439,"name":"X-MEN - LE RETOUR DU MESSIE","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-1-x-men-le-retour-du-messie/4000-450439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450348/","id":450348,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12/4000-450348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449867/","id":449867,"name":"Soupçons","site_detail_url":"https://comicvine.gamespot.com/wolverine-10-soupcons/4000-449867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449058/","id":449058,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-19/4000-449058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447617/","id":447617,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-22/4000-447617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445823/","id":445823,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-17/4000-445823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449873/","id":449873,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-6/4000-449873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449682/","id":449682,"name":"LA BATAILLE DE L'ATOME (2/2)","site_detail_url":"https://comicvine.gamespot.com/x-men-10-la-bataille-de-l-atome-2-2/4000-449682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448876/","id":448876,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-9/4000-448876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448140/","id":448140,"name":"X-Men: La battaglia dell'atomo alpha","site_detail_url":"https://comicvine.gamespot.com/marvel-world-21-x-men-la-battaglia-dellatomo-alpha/4000-448140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453293/","id":453293,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-2/4000-453293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446630/","id":446630,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-force-by-craig-kyle-chris-yost-1-volume-1/4000-446630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442181/","id":442181,"name":"Antibodies","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-22-antibodies/4000-442181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441423/","id":441423,"name":"The Amazing Spider-Man + Psyclocke; Captain America + Cyclops: Part 4","site_detail_url":"https://comicvine.gamespot.com/a-x-16-the-amazing-spider-man-psyclocke-captain-am/4000-441423/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436208/","id":436208,"name":".INH","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-15-inh/4000-436208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446749/","id":446749,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble-29/4000-446749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445396/","id":445396,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-54/4000-445396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449073/","id":449073,"name":"AVX","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-31-avx/4000-449073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449072/","id":449072,"name":"La Battaglia dell'atomo : capitolo 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-23-la-battaglia-dell-atomo-c/4000-449072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449070/","id":449070,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-avengers-1/4000-449070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-449069/","id":449069,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-x-men-1/4000-449069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448879/","id":448879,"name":"X-Men Battle Of The Atom","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-1-x-men-battle-of-the-atom/4000-448879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448258/","id":448258,"name":"Die Neuen X-Men: Gestern Und Heute","site_detail_url":"https://comicvine.gamespot.com/marvel-now-paperbacks-1-die-neuen-x-men-gestern-un/4000-448258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448139/","id":448139,"name":"La Battaglia dell'atomo : capitolo 3","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-285-la-battaglia-dell-atomo-/4000-448139/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448138/","id":448138,"name":"La Battaglia dell'atomo : capitolo 2","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-10-la-battaglia-dell-atomo-capi/4000-448138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447618/","id":447618,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-22/4000-447618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447229/","id":447229,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-5/4000-447229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447228/","id":447228,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-3/4000-447228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447089/","id":447089,"name":"X-Tinción Mutante Vol. 3, Messiah Complex, Libro 2","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-12-x-tincion-mutante-vol-3-messi/4000-447089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446928/","id":446928,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-446928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446895/","id":446895,"name":"LA BATAILLE DE L'ATOME (1/2)","site_detail_url":"https://comicvine.gamespot.com/x-men-9-la-bataille-de-l-atome-1-2/4000-446895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446405/","id":446405,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-8/4000-446405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445283/","id":445283,"name":"Feuertaufe","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-2-feuertaufe/4000-445283/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436189/","id":436189,"name":"Doctor Strange + The Beast; Captain America + Cyclops: Part 3","site_detail_url":"https://comicvine.gamespot.com/a-x-15-doctor-strange-the-beast-captain-america-cy/4000-436189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446803/","id":446803,"name":"Atos de Terror","site_detail_url":"https://comicvine.gamespot.com/magneto-1-atos-de-terror/4000-446803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445892/","id":445892,"name":"L'attacco della sentinella","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-284-l-attacco-della-sentinel/4000-445892/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445274/","id":445274,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-21/4000-445274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445012/","id":445012,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-4/4000-445012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444765/","id":444765,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10/4000-444765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444643/","id":444643,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-10/4000-444643/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444629/","id":444629,"name":"Blockbuster","site_detail_url":"https://comicvine.gamespot.com/x-men-8-blockbuster/4000-444629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435245/","id":435245,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-17/4000-435245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435069/","id":435069,"name":"The Wolverine School for Gifted Youngsters Part One: The Day S.H.I.E.L.D. Showed up","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-38-the-wolverine-school-fo/4000-435069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433852/","id":433852,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-14/4000-433852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433167/","id":433167,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-18/4000-433167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440049/","id":440049,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-56/4000-440049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444766/","id":444766,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-9/4000-444766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443009/","id":443009,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-283/4000-443009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443007/","id":443007,"name":"La corruzione di Jean Grey","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-8-la-corruzione-di-jean-grey/4000-443007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442260/","id":442260,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-442260/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441870/","id":441870,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-battle-of-the-atom-1-hc/4000-441870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441341/","id":441341,"name":"La batalla del átomo Capítulo 6","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-9-la-batalla-del-atomo-capitul/4000-441341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-441176/","id":441176,"name":"Nouveau Mutant","site_detail_url":"https://comicvine.gamespot.com/x-men-7-nouveau-mutant/4000-441176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437988/","id":437988,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-6/4000-437988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437974/","id":437974,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband-2/4000-437974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428868/","id":428868,"name":"Wear the Grudge Like A Crown Part Three","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-18-wear-the-grudge-like-a-crown-part-/4000-428868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427682/","id":427682,"name":"Battle of the Atom Chapter 6","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-17-battle-of-the-atom-chapter-6/4000-427682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434173/","id":434173,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel-55/4000-434173/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444767/","id":444767,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-444767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440799/","id":440799,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2013-12/4000-440799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437761/","id":437761,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-225/4000-437761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437739/","id":437739,"name":"GLI INCREDIBILI X-MEN 4 MARVEL NOW!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-282-gli-incredibili-x-men-4-/4000-437739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437073/","id":437073,"name":"X-Men: Scisma","site_detail_url":"https://comicvine.gamespot.com/supereroi-il-mito-4-x-men-scisma/4000-437073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436514/","id":436514,"name":"Patrulla-X Vs. Vengadores Oscuros: Utopía","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-1-patrulla-x-vs-vengadores-oscuros-u/4000-436514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436377/","id":436377,"name":"La batalla del átomo Capítulo 5","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-19-la-batalla-del-atomo-ca/4000-436377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436376/","id":436376,"name":"La batalla del átomo Capítulo 4","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-19-la-batalla-del-atomo-ca/4000-436376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435692/","id":435692,"name":"La batalla del átomo Capítulo 3","site_detail_url":"https://comicvine.gamespot.com/x-men-33-la-batalla-del-atomo-capitulo-3/4000-435692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435691/","id":435691,"name":"La batalla del átomo Capítulos 1 y 2","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-8-la-batalla-del-atomo-capitul/4000-435691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435483/","id":435483,"name":"La confrérie","site_detail_url":"https://comicvine.gamespot.com/x-men-6-la-confrerie/4000-435483/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433750/","id":433750,"name":"SC","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-sc/4000-433750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433749/","id":433749,"name":"Die neue Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1-die-neue-revolution/4000-433749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433748/","id":433748,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-5/4000-433748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426886/","id":426886,"name":"Battle of the Atom Chapter 5","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-36-battle-of-the-atom-chapter-/4000-426886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425946/","id":425946,"name":"Wear the Grudge Like A Crown Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-17-wear-the-grudge-like-a-crown-part-/4000-425946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425944/","id":425944,"name":"Battle of the Atom Chapter 4","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12-battle-of-the-atom-chapter-4/4000-425944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425036/","id":425036,"name":"Battle of the Atom Chapter 3","site_detail_url":"https://comicvine.gamespot.com/x-men-5-battle-of-the-atom-chapter-3/4000-425036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424544/","id":424544,"name":"Wear the Grudge Like A Crown","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-16-wear-the-grudge-like-a-crown/4000-424544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424543/","id":424543,"name":"Battle of the Atom Chapter 1","site_detail_url":"https://comicvine.gamespot.com/x-men-battle-of-the-atom-1-battle-of-the-atom-chap/4000-424543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424528/","id":424528,"name":"Battle of the Atom Chapter 2","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-16-battle-of-the-atom-chapter-2/4000-424528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444768/","id":444768,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-7/4000-444768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435180/","id":435180,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-avengers-vs-x-men-1/4000-435180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433450/","id":433450,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-revenants-1-volume-3/4000-433450/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433286/","id":433286,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-18/4000-433286/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432504/","id":432504,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-broken-1-volume-2/4000-432504/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432442/","id":432442,"name":"Choisis ton camp","site_detail_url":"https://comicvine.gamespot.com/x-men-5-choisis-ton-camp/4000-432442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427803/","id":427803,"name":"Stage de Survie","site_detail_url":"https://comicvine.gamespot.com/wolverine-4-stage-de-survie/4000-427803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423684/","id":423684,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-423684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421699/","id":421699,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-10/4000-421699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444769/","id":444769,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6/4000-444769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433920/","id":433920,"name":"GLI INCREDIBILI X-MEN 3 MARVEL NOW!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-281-gli-incredibili-x-men-3-/4000-433920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430956/","id":430956,"name":"Avengers VS X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-absolute-avengers-vs-x-men-1-avengers-vs-x-/4000-430956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430876/","id":430876,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-18/4000-430876/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-430368/","id":430368,"name":"GLI INCREDIBILI X-MEN 2 MARVEL NOW!","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-280-gli-incredibili-x-men-2-/4000-430368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428960/","id":428960,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-5/4000-428960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428382/","id":428382,"name":"La Hermandad","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-la-hermandad/4000-428382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428380/","id":428380,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-17/4000-428380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-427802/","id":427802,"name":"Quand je serai grand","site_detail_url":"https://comicvine.gamespot.com/x-men-4-quand-je-serai-grand/4000-427802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426985/","id":426985,"name":"","site_detail_url":"https://comicvine.gamespot.com/vingadores-vs-x-men-6/4000-426985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425797/","id":425797,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-106/4000-425797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416917/","id":416917,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-8/4000-416917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444770/","id":444770,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-444770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426986/","id":426986,"name":"","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men-3/4000-426986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426308/","id":426308,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-4/4000-426308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-426106/","id":426106,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-out-of-their-depths-1-volume-3/4000-426106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425181/","id":425181,"name":"Volume Six","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-6-volume-si/4000-425181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424819/","id":424819,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-16/4000-424819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-424641/","id":424641,"name":"Morts ou Vifs","site_detail_url":"https://comicvine.gamespot.com/x-men-3-morts-ou-vifs/4000-424641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-423830/","id":423830,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-invasive-exotics-1-volume-2/4000-423830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422383/","id":422383,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-4/4000-422383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444772/","id":444772,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-4/4000-444772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422605/","id":422605,"name":"","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men-3/4000-422605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422602/","id":422602,"name":"X-Force : vecchi fantasmi","site_detail_url":"https://comicvine.gamespot.com/100-marvel-bestorce-x-force-2-x-force-vecchi-fanta/4000-422602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422382/","id":422382,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-15/4000-422382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422113/","id":422113,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-140/4000-422113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-421280/","id":421280,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-105/4000-421280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420565/","id":420565,"name":"X-Men d'hier","site_detail_url":"https://comicvine.gamespot.com/x-men-2-x-men-dhier/4000-420565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-413669/","id":413669,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-7/4000-413669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400145/","id":400145,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-11/4000-400145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418925/","id":418925,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-select-x-men-la-fin-2/4000-418925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404705/","id":404705,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-6/4000-404705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417074/","id":417074,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-14/4000-417074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444209/","id":444209,"name":"Avengers vs X-Men libro 2","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-7-avengers-vs-x-men-libro-2/4000-444209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415616/","id":415616,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus-1-hc/4000-415616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-415614/","id":415614,"name":"Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-revolution-1-revolution/4000-415614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-400157/","id":400157,"name":"Invasive Exotic, Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-10-invasive-exotic-part-one/4000-400157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-410516/","id":410516,"name":"","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x-2/4000-410516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395700/","id":395700,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-10/4000-395700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398994/","id":398994,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-5/4000-398994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-412027/","id":412027,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4000-412027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401472/","id":401472,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-10/4000-401472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396436/","id":396436,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-4/4000-396436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401287/","id":401287,"name":"Le grand bal de la fin du monde","site_detail_url":"https://comicvine.gamespot.com/wolverine-11-le-grand-bal-de-la-fin-du-monde/4000-401287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407169/","id":407169,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-here-to-stay-1-volume-2/4000-407169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407093/","id":407093,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-13/4000-407093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402614/","id":402614,"name":"Volume Four","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron-4-volume-fo/4000-402614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401368/","id":401368,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-companion-1-hc/4000-401368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397758/","id":397758,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-prodigal-1-volume-1/4000-397758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397744/","id":397744,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4000-397744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-407284/","id":407284,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-6/4000-407284/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391845/","id":391845,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-8/4000-391845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397747/","id":397747,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-x-men-legacy-1-tpb/4000-397747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401052/","id":401052,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-136/4000-401052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394505/","id":394505,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-6/4000-394505/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392572/","id":392572,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-134/4000-392572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391830/","id":391830,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men-3/4000-391830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391825/","id":391825,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-6/4000-391825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386142/","id":386142,"name":"Savage Learning Part 1; Survival 101","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men-25-savage-learning-part-1-surv/4000-386142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380348/","id":380348,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-6/4000-380348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376661/","id":376661,"name":"","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-5/4000-376661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376023/","id":376023,"name":"","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-6/4000-376023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380245/","id":380245,"name":"Der schmale Grat","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-men-legacy-4-der-schmale-grat/4000-380245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-381620/","id":381620,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-5/4000-381620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-743973/","id":743973,"name":"Von Anfang bis Ende","site_detail_url":"https://comicvine.gamespot.com/x-men-von-anfang-bis-ende-1-von-anfang-bis-ende/4000-743973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-395413/","id":395413,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-tpb/4000-395413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-394824/","id":394824,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-42/4000-394824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392552/","id":392552,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-avengers-academy-1/4000-392552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391859/","id":391859,"name":"Von Anfang Bis Ende","site_detail_url":"https://comicvine.gamespot.com/x-men-paperbacks-3-von-anfang-bis-ende/4000-391859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391464/","id":391464,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-135/4000-391464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388449/","id":388449,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-11/4000-388449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388035/","id":388035,"name":"Encore une tournée","site_detail_url":"https://comicvine.gamespot.com/wolverine-9-encore-une-tournee/4000-388035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377282/","id":377282,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-10/4000-377282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388846/","id":388846,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-northstar-1-volume-10/4000-388846/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387650/","id":387650,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4000-387650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387541/","id":387541,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-41/4000-387541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385542/","id":385542,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-134/4000-385542/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380404/","id":380404,"name":"Marvel Select : X-Men la fin","site_detail_url":"https://comicvine.gamespot.com/marvel-select-x-men-la-fin-1-marvel-select-x-men-l/4000-380404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-380275/","id":380275,"name":"Marvel Deluxe : X-Men - le complexe du messie","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-le-complexe-du-messie-1-marvel/4000-380275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-373573/","id":373573,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x-9/4000-373573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366376/","id":366376,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-1-avengers-vs-x-men/4000-366376/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447351/","id":447351,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-12/4000-447351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433740/","id":433740,"name":"","site_detail_url":"https://comicvine.gamespot.com/novos-x-men-ecos-do-amanha-1/4000-433740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-387540/","id":387540,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-40/4000-387540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376973/","id":376973,"name":"Anges et Demons","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-force-1-anges-et-demons/4000-376973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376898/","id":376898,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-7/4000-376898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372955/","id":372955,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-9/4000-372955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444732/","id":444732,"name":"Marvel Omnibus: Avengers vs X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-avengers-vs-x-men-1-marvel-omnibus-/4000-444732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376972/","id":376972,"name":"L'arme douze","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men-2-larme-douze/4000-376972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-360916/","id":360916,"name":"Dance Like There's No Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-18-dance-like-theres-no-to/4000-360916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359916/","id":359916,"name":"Round 12","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-12-round-12/4000-359916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-359669/","id":359669,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-84/4000-359669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401007/","id":401007,"name":"Complejo de Mesías","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x-1-complejo-de-mesias/4000-401007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-391856/","id":391856,"name":"X-Men: Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-1-x-men-phoenix/4000-391856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-370951/","id":370951,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-131/4000-370951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372511/","id":372511,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-268/4000-372511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363468/","id":363468,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-130/4000-363468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356679/","id":356679,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-4/4000-356679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355933/","id":355933,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-92/4000-355933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354103/","id":354103,"name":"On the Eve of Battle","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-15-on-the-eve-of-battle/4000-354103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355070/","id":355070,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-140/4000-355070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417605/","id":417605,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2012-09/4000-417605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376017/","id":376017,"name":"El fin de Generación Hope","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-generacion-hope-2-el-fin-de-generacion-/4000-376017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-355485/","id":355485,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-129/4000-355485/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354813/","id":354813,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-210/4000-354813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354811/","id":354811,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-267/4000-354811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353106/","id":353106,"name":"El fin de Generación Hope","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-prologo-1-el-f/4000-353106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343211/","id":343211,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-35-magneto/4000-343211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343207/","id":343207,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-139/4000-343207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354484/","id":354484,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-266/4000-354484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-353315/","id":353315,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-91/4000-353315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351223/","id":351223,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-128/4000-351223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-340395/","id":340395,"name":"Loose Ends","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-268-loose-ends/4000-340395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-338524/","id":338524,"name":"Protective Services, Part 3","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-31-protective-services-part-3/4000-338524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343206/","id":343206,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-138/4000-343206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351221/","id":351221,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-127/4000-351221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347336/","id":347336,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-265/4000-347336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343257/","id":343257,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-1-x-men/4000-343257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335928/","id":335928,"name":"Protective Services, Part 2","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-30-protective-services-part-2/4000-335928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334211/","id":334211,"name":"Protective Services, Part 1","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-29-protective-services-part-1/4000-334211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324903/","id":324903,"name":"La Imposible Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-1-la-imposible-patrulla-x/4000-324903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331959/","id":331959,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-137/4000-331959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375714/","id":375714,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-world-8/4000-375714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343407/","id":343407,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-126/4000-343407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343254/","id":343254,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-16/4000-343254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343057/","id":343057,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-264/4000-343057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-335385/","id":335385,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-31/4000-335385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323702/","id":323702,"name":"La Imposible Patrulla-X: Regénesis","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-regenesis-1-la-imposible-p/4000-323702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317944/","id":317944,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-77/4000-317944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331958/","id":331958,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-136/4000-331958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341549/","id":341549,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation-1-volume-3/4000-341549/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341546/","id":341546,"name":"Magneto: Not A Hero","site_detail_url":"https://comicvine.gamespot.com/magneto-not-a-hero-1-magneto-not-a-hero/4000-341546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433739/","id":433739,"name":"","site_detail_url":"https://comicvine.gamespot.com/novos-x-men-planeta-x-1/4000-433739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-376971/","id":376971,"name":"E comme extinction","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men-1-e-comme-extinction/4000-376971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375713/","id":375713,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-world-7/4000-375713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343430/","id":343430,"name":"X-Men Especial: A Era X","site_detail_url":"https://comicvine.gamespot.com/x-men-especial-a-era-x-1-x-men-especial-a-era-x/4000-343430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343395/","id":343395,"name":"L’ÈRE X (3/3)","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-hors-serie-2-lere-x-33/4000-343395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343253/","id":343253,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-15/4000-343253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343053/","id":343053,"name":"Wolverine e gli X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men-1-wolverine-e-gli-x-men/4000-343053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341635/","id":341635,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsongwarsong-ultimate-collection-1/4000-341635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-322771/","id":322771,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-hope-17/4000-322771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317974/","id":317974,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-cisma-4/4000-317974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319420/","id":319420,"name":"Verlorene Legionen","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-men-legacy-1-verlorene-legionen/4000-319420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317929/","id":317929,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-135/4000-317929/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417614/","id":417614,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2012-04/4000-417614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-329745/","id":329745,"name":"It's Coming","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-its-coming-1-its-coming/4000-329745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-343392/","id":343392,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-89/4000-343392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333678/","id":333678,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-124/4000-333678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333584/","id":333584,"name":"La Saga de l'Ange Noir (1/4)","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-14-la-saga-de-lange-noir-14/4000-333584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317972/","id":317972,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-cisma-3/4000-317972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315752/","id":315752,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-hope-16/4000-315752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315478/","id":315478,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-13/4000-315478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323372/","id":323372,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-1-volume-one/4000-323372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444848/","id":444848,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1/4000-444848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323713/","id":323713,"name":"Le Tueur Parmi Nous","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-13-le-tueur-parmi-nous/4000-323713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319083/","id":319083,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-123/4000-319083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315477/","id":315477,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-12/4000-315477/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-310806/","id":310806,"name":"Chapter Three","site_detail_url":"https://comicvine.gamespot.com/magneto-not-a-hero-3-chapter-three/4000-310806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317019/","id":317019,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-uncanny-x-men-1-hc-tpb/4000-317019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315388/","id":315388,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-202/4000-315388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319610/","id":319610,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-age-of-x-2/4000-319610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316047/","id":316047,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha-1-x-force-necrosha/4000-316047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316037/","id":316037,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4000-316037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446147/","id":446147,"name":"X-Men: Cisma","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition-1-x-men-cisma/4000-446147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324417/","id":324417,"name":"L'ère X","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-88-lere-x/4000-324417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321193/","id":321193,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-necrosha-1-tpb/4000-321193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318953/","id":318953,"name":"Conséquence Involontaires","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-12-consequence-involontaires/4000-318953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318574/","id":318574,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-260/4000-318574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315476/","id":315476,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-11/4000-315476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312198/","id":312198,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-74/4000-312198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307573/","id":307573,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-hope-14/4000-307573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319609/","id":319609,"name":"X-Men Sonderband: Age of X","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-age-of-x-1-x-men-sonderband-age-o/4000-319609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417622/","id":417622,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2012-01/4000-417622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309611/","id":309611,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition-2-volume-two/4000-309611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-372506/","id":372506,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-132/4000-372506/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319638/","id":319638,"name":"Age of X Part. 2","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-75-age-of-x-part-2/4000-319638/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312197/","id":312197,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-73/4000-312197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302663/","id":302663,"name":"","site_detail_url":"https://comicvine.gamespot.com/generation-hope-13/4000-302663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301011/","id":301011,"name":"Everything is Sinister","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-1-everything-is-sinister/4000-301011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308862/","id":308862,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-1-x-men-schism/4000-308862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302231/","id":302231,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-131/4000-302231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307714/","id":307714,"name":"Book 8","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-8-book-8/4000-307714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443607/","id":443607,"name":"X-Men: Secondo Avvento","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel-32-x-men-secondo-avve/4000-443607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319634/","id":319634,"name":"Age of X Part. 1","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-74-age-of-x-part-1/4000-319634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318883/","id":318883,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-10/4000-318883/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312196/","id":312196,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-72/4000-312196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308169/","id":308169,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-26/4000-308169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307586/","id":307586,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-258/4000-307586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294888/","id":294888,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-regenesis-1/4000-294888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294049/","id":294049,"name":"Schism, Part Five","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-5-schism-part-five/4000-294049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308083/","id":308083,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-71/4000-308083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293380/","id":293380,"name":"Schism, Part Four","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-4-schism-part-four/4000-293380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417626/","id":417626,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2011-11/4000-417626/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301803/","id":301803,"name":"Book 7","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-7-book-7/4000-301803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308168/","id":308168,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-25/4000-308168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302164/","id":302164,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-130/4000-302164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293320/","id":293320,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-543/4000-293320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295216/","id":295216,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-lost-legions-1-hctpb/4000-295216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295218/","id":295218,"name":"Book 6","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-6-book-6/4000-295218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318881/","id":318881,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-8/4000-318881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308166/","id":308166,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-24/4000-308166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-302720/","id":302720,"name":"Quarantena parte 2","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-256-quarantena-parte-2/4000-302720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300471/","id":300471,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-70/4000-300471/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286947/","id":286947,"name":"Schism, Part Three","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-3-schism-part-three/4000-286947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293646/","id":293646,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-first-to-last-1-hc-tpb/4000-293646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417629/","id":417629,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2011-09/4000-417629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-295217/","id":295217,"name":"Book 5","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-5-book-5/4000-295217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446830/","id":446830,"name":"","site_detail_url":"https://comicvine.gamespot.com/vingadores-anual-3/4000-446830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315436/","id":315436,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-18/4000-315436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307159/","id":307159,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-117/4000-307159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291625/","id":291625,"name":"The Return of Kitty Pryde!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-22-the-return-of-kitty-pryde/4000-291625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286863/","id":286863,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-3-book-3/4000-286863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281713/","id":281713,"name":"Schism, Part Two","site_detail_url":"https://comicvine.gamespot.com/x-men-schism-2-schism-part-two/4000-281713/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277342/","id":277342,"name":"First to Last, Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-14-first-to-last-part-4/4000-277342/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272360/","id":272360,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-to-serve-and-protect-1-tpb/4000-272360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444962/","id":444962,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-29/4000-444962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443587/","id":443587,"name":"X-Men: Utopia","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel-16-x-men-utopia/4000-443587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312193/","id":312193,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-68/4000-312193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307158/","id":307158,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-116/4000-307158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274227/","id":274227,"name":"First To Last Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-13-first-to-last-part-3/4000-274227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273106/","id":273106,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison-2-book-2/4000-273106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-273056/","id":273056,"name":"Lost Legions, Part 1; Flashback; Into the Abyss","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-250-lost-legions-part-1-flashback-int/4000-273056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-272295/","id":272295,"name":"First to Last, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-12-first-to-last-part-2/4000-272295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270399/","id":270399,"name":"First To Last, Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-giant-size-1-first-to-last-part-one/4000-270399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269781/","id":269781,"name":"Age of X: Aftermath, Part One","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-248-age-of-x-aftermath-part-one/4000-269781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271841/","id":271841,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/chaos-war-x-men-1-tpb/4000-271841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-420577/","id":420577,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-x-1-hc-tpb/4000-420577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268985/","id":268985,"name":"Age of X: Chapter 6","site_detail_url":"https://comicvine.gamespot.com/new-mutants-24-age-of-x-chapter-6/4000-268985/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300401/","id":300401,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-125/4000-300401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445070/","id":445070,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-segunda-venida-12/4000-445070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433738/","id":433738,"name":"","site_detail_url":"https://comicvine.gamespot.com/novos-x-men-rebeliao-no-instituto-xavier-1/4000-433738/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307156/","id":307156,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-114/4000-307156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307128/","id":307128,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-114/4000-307128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290436/","id":290436,"name":"Secondo Avvento : capitolo 6 (di 7)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-252-secondo-avvento-capitolo/4000-290436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277925/","id":277925,"name":"The Return of Magneto","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-20-the-return-of-magneto/4000-277925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277133/","id":277133,"name":"Secondo Avvento : capitolo 5 (di 7)","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-194-secondo-avvento-capitolo-5-di-7/4000-277133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274367/","id":274367,"name":"Meet the New X-Man... the Sub-Mariner","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-19-meet-the-new-x-man-the-sub-mari/4000-274367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300400/","id":300400,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-124/4000-300400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269984/","id":269984,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics-1-tpb/4000-269984/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385186/","id":385186,"name":"Второе пришествие. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-210-1/4000-385186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385172/","id":385172,"name":"Нация Икс. Часть 8","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-209-8/4000-385172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318874/","id":318874,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-3/4000-318874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307155/","id":307155,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-113/4000-307155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307127/","id":307127,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-113/4000-307127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290435/","id":290435,"name":"Secondo Avvento : capitolo 4 (di 7)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-251-secondo-avvento-capitolo/4000-290435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277127/","id":277127,"name":"Secondo Avvento : capitolo 3 (di 7)","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-193-secondo-avvento-capitolo-3-di-7/4000-277127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-271831/","id":271831,"name":"Death In Utopia!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-18-death-in-utopia/4000-271831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300399/","id":300399,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-123/4000-300399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268475/","id":268475,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-17/4000-268475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445061/","id":445061,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-segunda-venida-4/4000-445061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445058/","id":445058,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-segunda-venida-1/4000-445058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444958/","id":444958,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-25/4000-444958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-375666/","id":375666,"name":"Secondo Avvento","site_detail_url":"https://comicvine.gamespot.com/marvel-universe-4-secondo-avvento/4000-375666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318941/","id":318941,"name":"Le Retour du Messie (4/7)","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-2-le-retour-du-messie-47/4000-318941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318873/","id":318873,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-2/4000-318873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307126/","id":307126,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-112/4000-307126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277125/","id":277125,"name":"X-Necrosha parte 9 di 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-192-x-necrosha-parte-9-di-9/4000-277125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266488/","id":266488,"name":"Quarantine: Part 5","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-534-quarantine-part-5/4000-266488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454198/","id":454198,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-28/4000-454198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307125/","id":307125,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-111/4000-307125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300398/","id":300398,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-122/4000-300398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266133/","id":266133,"name":"The Dark X-Men!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-16-the-dark-x-men/4000-266133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385168/","id":385168,"name":"Нация Икс. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-205-4/4000-385168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385167/","id":385167,"name":"Нация Икс. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-204-3/4000-385167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318940/","id":318940,"name":"X-Men Universe :Le Retour du Messie (2/7)","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-1-x-men-universe-le-retour-du-messi/4000-318940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318872/","id":318872,"name":"X-Men: Le Retour du Messie 1/7","site_detail_url":"https://comicvine.gamespot.com/x-men-1-x-men-le-retour-du-messie-17/4000-318872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312140/","id":312140,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-63/4000-312140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307153/","id":307153,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-111/4000-307153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290424/","id":290424,"name":"Secondo Avvento : il prologo","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-249-secondo-avvento-il-prolo/4000-290424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263176/","id":263176,"name":"The Power of the Dark Avengers!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-15-the-power-of-the-dark-avengers/4000-263176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259132/","id":259132,"name":"Dead X-Men, Pt. 2","site_detail_url":"https://comicvine.gamespot.com/chaos-war-x-men-2-dead-x-men-pt-2/4000-259132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258326/","id":258326,"name":"None so Blind","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-244-none-so-blind/4000-258326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-253004/","id":253004,"name":"","site_detail_url":"https://comicvine.gamespot.com/heroic-age-x-men-1/4000-253004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300397/","id":300397,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-121/4000-300397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245497/","id":245497,"name":"Civil War: X-Men","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men-1-civil-war-x-men/4000-245497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444956/","id":444956,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-23/4000-444956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307152/","id":307152,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-110/4000-307152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306230/","id":306230,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-169/4000-306230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300874/","id":300874,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-69/4000-300874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290421/","id":290421,"name":"X-Necrosha parte 7 di 9","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-248-x-necrosha-parte-7-di-9/4000-290421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277114/","id":277114,"name":"X-Necrosha parte 6 di 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-190-x-necrosha-parte-6-di-9/4000-277114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252756/","id":252756,"name":"X-Dudes! Part Two; Gold, Guns, Girls; Shells; Judgment","site_detail_url":"https://comicvine.gamespot.com/x-men-to-serve-and-protect-2-x-dudes-part-two-gold/4000-252756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-252737/","id":252737,"name":"Dead X-Men, Pt. 1","site_detail_url":"https://comicvine.gamespot.com/chaos-war-x-men-1-dead-x-men-pt-1/4000-252737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300396/","id":300396,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-120/4000-300396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444955/","id":444955,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-22/4000-444955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385164/","id":385164,"name":"Нэмор под прицелом!","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-201-wikiissue/4000-385164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385163/","id":385163,"name":"Признание","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-200-wikiissue/4000-385163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-323374/","id":323374,"name":"Advenimiento: Capítulo 1","site_detail_url":"https://comicvine.gamespot.com/x-men-advenimiento-especial-1-advenimiento-capitul/4000-323374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312138/","id":312138,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-61/4000-312138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307151/","id":307151,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-109/4000-307151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307123/","id":307123,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-109/4000-307123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307121/","id":307121,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-107/4000-307121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306229/","id":306229,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-168/4000-306229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300854/","id":300854,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-68/4000-300854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297783/","id":297783,"name":"A New X-Men Epic Begins... Second Coming!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-23-a-new-x-men-epic-begins-second-/4000-297783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-263121/","id":263121,"name":"Socking It to the Sisterhood!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-13-socking-it-to-the-sisterhood/4000-263121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454196/","id":454196,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-26/4000-454196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292843/","id":292843,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-60/4000-292843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300395/","id":300395,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-119/4000-300395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299710/","id":299710,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-7/4000-299710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417641/","id":417641,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-12/4000-417641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446824/","id":446824,"name":"A Lista","site_detail_url":"https://comicvine.gamespot.com/reinado-sombrio-especial-2-a-lista/4000-446824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444954/","id":444954,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-21/4000-444954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312137/","id":312137,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-60/4000-312137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307150/","id":307150,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-108/4000-307150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306228/","id":306228,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-167/4000-306228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290194/","id":290194,"name":"X-Necrosha parte 3 di 9","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-246-x-necrosha-parte-3-di-9/4000-290194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277089/","id":277089,"name":"X-Necrosha parte 2 di 9","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-188-x-necrosha-parte-2-di-9/4000-277089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-245830/","id":245830,"name":"The Fate of Rogue!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-11-the-fate-of-rogue/4000-245830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300394/","id":300394,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-118/4000-300394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299702/","id":299702,"name":"Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-new-mutants-2-necrosha/4000-299702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417642/","id":417642,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-11/4000-417642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446632/","id":446632,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/reino-oscuro-la-lista-3-x-men/4000-446632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444953/","id":444953,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-20/4000-444953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385161/","id":385161,"name":"Утопия. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-198-5/4000-385161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307149/","id":307149,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-107/4000-307149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306227/","id":306227,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-166/4000-306227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300823/","id":300823,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-66/4000-300823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290193/","id":290193,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-245/4000-290193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277087/","id":277087,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-187/4000-277087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454195/","id":454195,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-24/4000-454195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300393/","id":300393,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-117/4000-300393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299709/","id":299709,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-6/4000-299709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417644/","id":417644,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-10/4000-417644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444952/","id":444952,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-19/4000-444952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385158/","id":385158,"name":"Утопия. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-195-2/4000-385158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307148/","id":307148,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-106/4000-307148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307120/","id":307120,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-106/4000-307120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300822/","id":300822,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-65/4000-300822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290192/","id":290192,"name":"E' tornato","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-244-e-tornato/4000-290192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277084/","id":277084,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-186/4000-277084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-236300/","id":236300,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming-1-hc/4000-236300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300392/","id":300392,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-116/4000-300392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417675/","id":417675,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-09/4000-417675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385157/","id":385157,"name":"Утопия. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-194-1/4000-385157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312134/","id":312134,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-57/4000-312134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307147/","id":307147,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-105/4000-307147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306225/","id":306225,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-164/4000-306225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300821/","id":300821,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-64/4000-300821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290191/","id":290191,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-243/4000-290191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299446/","id":299446,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-22/4000-299446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292839/","id":292839,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-56/4000-292839/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300391/","id":300391,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-115/4000-300391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299708/","id":299708,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-5/4000-299708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444950/","id":444950,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-17/4000-444950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385153/","id":385153,"name":"Сестричество. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-190-3/4000-385153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307146/","id":307146,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-104/4000-307146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300469/","id":300469,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-56/4000-300469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290183/","id":290183,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-242/4000-290183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220732/","id":220732,"name":"Second Coming, Chapter Twelve","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-237-second-coming-chapter-twelve/4000-220732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292838/","id":292838,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-55/4000-292838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-224540/","id":224540,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-vs-1-hctpb/4000-224540/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385862/","id":385862,"name":"Побег ожившего компьютера","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-2-wikiissue/4000-385862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215972/","id":215972,"name":"End of the Line","site_detail_url":"https://comicvine.gamespot.com/x-force-27-end-of-the-line/4000-215972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300390/","id":300390,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-114/4000-300390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417690/","id":417690,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-07/4000-417690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385152/","id":385152,"name":"Сестричество. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-189-2/4000-385152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385151/","id":385151,"name":"Сестричество. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-188-1/4000-385151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378995/","id":378995,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-105/4000-378995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306223/","id":306223,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-162/4000-306223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300468/","id":300468,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-55/4000-300468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290174/","id":290174,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-241/4000-290174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249037/","id":249037,"name":"Death To The Skrulls!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6-death-to-the-skrulls/4000-249037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292837/","id":292837,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-54/4000-292837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221765/","id":221765,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha-1-x-necrosha/4000-221765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300389/","id":300389,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-113/4000-300389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417710/","id":417710,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-06/4000-417710/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385861/","id":385861,"name":"Одаренные","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-1-wikiissue/4000-385861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218746/","id":218746,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition-1-volume-one/4000-218746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385149/","id":385149,"name":"Покинутый. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-186-3/4000-385149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307144/","id":307144,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-102/4000-307144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306222/","id":306222,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-161/4000-306222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300467/","id":300467,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-54/4000-300467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290167/","id":290167,"name":"Utopia : capitolo 3","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-240-utopia-capitolo-3/4000-290167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249036/","id":249036,"name":"The Return of Gambit!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-5-the-return-of-gambit/4000-249036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208533/","id":208533,"name":"Second Coming, Chapter Four","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-235-second-coming-chapter-four/4000-208533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299443/","id":299443,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-19/4000-299443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300388/","id":300388,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-112/4000-300388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214764/","id":214764,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-nation-x-1-hc-tpb/4000-214764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417731/","id":417731,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-05/4000-417731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444947/","id":444947,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-14/4000-444947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443524/","id":443524,"name":"X-Men: E come Extinzione","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-60-x-men-e-come-extinzio/4000-443524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307143/","id":307143,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-101/4000-307143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306221/","id":306221,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-160/4000-306221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300466/","id":300466,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-53/4000-300466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290163/","id":290163,"name":"Utopia : capitolo 2","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-239-utopia-capitolo-2/4000-290163/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-249035/","id":249035,"name":"Attack of the Skrulls!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4-attack-of-the-skrulls/4000-249035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218835/","id":218835,"name":"House Of M: No More Mutants","site_detail_url":"https://comicvine.gamespot.com/house-of-m-no-more-mutants-1-house-of-m-no-more-mu/4000-218835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202574/","id":202574,"name":"Chapter One","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming-1-chapter-one/4000-202574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202489/","id":202489,"name":"Necrosha: Conclusion","site_detail_url":"https://comicvine.gamespot.com/x-force-25-necrosha-conclusion/4000-202489/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201708/","id":201708,"name":"Ghostly; The End Of The World And Everything After","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-522-ghostly-the-end-of-the-world/4000-201708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201000/","id":201000,"name":"Dooptopia / The Bad Seeds / Ice Cream Alamo / The King & Queen Of Utopia","site_detail_url":"https://comicvine.gamespot.com/nation-x-4-dooptopia-the-bad-seeds-ice-cream-alamo/4000-201000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-200996/","id":200996,"name":"The TellTale Heart","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-234-the-telltale-heart/4000-200996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292835/","id":292835,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-52/4000-292835/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216431/","id":216431,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion-1-tpb/4000-216431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300387/","id":300387,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-111/4000-300387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417732/","id":417732,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-04/4000-417732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444946/","id":444946,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-13/4000-444946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306220/","id":306220,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-159/4000-306220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300465/","id":300465,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-52/4000-300465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189583/","id":189583,"name":"What If ORD Ressurected Jean Grey Instead Of Colossus? What If Danger Became Ultron's Bride? Say What?","site_detail_url":"https://comicvine.gamespot.com/what-if-astonishing-x-men-1-what-if-ord-ressurecte/4000-189583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300386/","id":300386,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-110/4000-300386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299706/","id":299706,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-3/4000-299706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417733/","id":417733,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2010-03/4000-417733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385956/","id":385956,"name":"Люди Икс. Феникс: Прощальная песнь","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-feniks-proschalnaya-pesn-1-wikiissue/4000-385956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444945/","id":444945,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-12/4000-444945/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307113/","id":307113,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-99/4000-307113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300786/","id":300786,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-58/4000-300786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290149/","id":290149,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-237/4000-290149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194457/","id":194457,"name":"Necrosha: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/x-force-23-necrosha-chapter-4/4000-194457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192469/","id":192469,"name":"When You Were Here; 7 1/2; Lor; Cajun Justice!","site_detail_url":"https://comicvine.gamespot.com/nation-x-2-when-you-were-here-7-12-lor-cajun-justi/4000-192469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292833/","id":292833,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-50/4000-292833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300385/","id":300385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-109/4000-300385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-197508/","id":197508,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-emplate-1-hc/4000-197508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446151/","id":446151,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-4/4000-446151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444944/","id":444944,"name":"","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-11/4000-444944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434081/","id":434081,"name":"X-Men: Pianeta X","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-5-x-men-pianeta-x/4000-434081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306197/","id":306197,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-157/4000-306197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290133/","id":290133,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-236/4000-290133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284032/","id":284032,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-57/4000-284032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277069/","id":277069,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-178/4000-277069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189520/","id":189520,"name":"Earth Give Up Your Dead, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-231-earth-give-up-your-dead-part-1/4000-189520/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187695/","id":187695,"name":"Devil At The Crossroads, Part 4; A Girl Called Hope part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-230-devil-at-the-crossroads-part-4-a-/4000-187695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185623/","id":185623,"name":"Nation X: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-518-nation-x-chapter-4/4000-185623/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292832/","id":292832,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-49/4000-292832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186675/","id":186675,"name":"The Ghost of Asteroid-M, Road Trip, Cold Shoulder, Testament","site_detail_url":"https://comicvine.gamespot.com/nation-x-1-the-ghost-of-asteroid-m-road-trip-cold-/4000-186675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181296/","id":181296,"name":"The X-Heist, Pt. 2 / Godmarked (Prologue)","site_detail_url":"https://comicvine.gamespot.com/x-menagents-of-atlas-2-the-x-heist-pt-2-godmarked-/4000-181296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300384/","id":300384,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-108/4000-300384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264371/","id":264371,"name":"Death Of The Future?","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-186-death-of-the-future/4000-264371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446150/","id":446150,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-3/4000-446150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300036/","id":300036,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-97/4000-300036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277068/","id":277068,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-177/4000-277068/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246654/","id":246654,"name":"The Vengeance of Danger!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-12-the-vengeance-of-danger/4000-246654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191896/","id":191896,"name":"Dark Reign: The List","site_detail_url":"https://comicvine.gamespot.com/list-1-dark-reign-the-list/4000-191896/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184946/","id":184946,"name":"Ultimate Comics X","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-76-ultimate-comics-x/4000-184946/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184818/","id":184818,"name":"Nation X: Chapter 3","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-517-nation-x-chapter-3/4000-184818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183795/","id":183795,"name":"Devil At The Crossroads, Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-229-devil-at-the-crossroads-part-3/4000-183795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182545/","id":182545,"name":"Necrosha: Chapter 2","site_detail_url":"https://comicvine.gamespot.com/x-force-21-necrosha-chapter-2/4000-182545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190409/","id":190409,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/x-force-not-forgotten-1-volume-3/4000-190409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-174975/","id":174975,"name":"The X-Heist, Pt. 1 / Atomic Age Heroes","site_detail_url":"https://comicvine.gamespot.com/x-menagents-of-atlas-1-the-x-heist-pt-1-atomic-age/4000-174975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264373/","id":264373,"name":"Lady Deathstrike!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-185-lady-deathstrike/4000-264373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446149/","id":446149,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-2/4000-446149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290131/","id":290131,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-234/4000-290131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179171/","id":179171,"name":"Not Forgotten: Part 4","site_detail_url":"https://comicvine.gamespot.com/x-force-20-not-forgotten-part-4/4000-179171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176851/","id":176851,"name":"Devil At The Crossroads, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-228-devil-at-the-crossroads-part-2/4000-176851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299437/","id":299437,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-13/4000-299437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292830/","id":292830,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-47/4000-292830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172315/","id":172315,"name":"Aftershocks; Smash Hit","site_detail_url":"https://comicvine.gamespot.com/hulk-team-up-1-aftershocks-smash-hit/4000-172315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211114/","id":211114,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-211114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446148/","id":446148,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-1/4000-446148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300034/","id":300034,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-95/4000-300034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264375/","id":264375,"name":"A New Team is Born... X-Force!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-184-a-new-team-is-born-x-force/4000-264375/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186229/","id":186229,"name":"Utopia","site_detail_url":"https://comicvine.gamespot.com/avengersx-men-utopia-1-utopia/4000-186229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173708/","id":173708,"name":"Not Forgotten: Part 3","site_detail_url":"https://comicvine.gamespot.com/x-force-19-not-forgotten-part-3/4000-173708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172433/","id":172433,"name":"One-Shot","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-the-confession-1-one-shot/4000-172433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172431/","id":172431,"name":"","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-x-men-1/4000-172431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171387/","id":171387,"name":"Devil At The Crossroads, Part 1 Of 4;Something Like an Afterword...","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-annual-1-devil-at-the-crossroads-part/4000-171387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385134/","id":385134,"name":"Комплекс Мессии. Часть 11","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-171-11/4000-385134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385133/","id":385133,"name":"Комплекс Мессии. Часть 10","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-170-10/4000-385133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300557/","id":300557,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-94/4000-300557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300033/","id":300033,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-94/4000-300033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-178421/","id":178421,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus-1-hc/4000-178421/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168320/","id":168320,"name":"Utopia Chapter 5","site_detail_url":"https://comicvine.gamespot.com/dark-avengers-8-utopia-chapter-5/4000-168320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167374/","id":167374,"name":"Suppressing Fire, Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-227-suppressing-fire-part-2/4000-167374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163253/","id":163253,"name":"Suppressing Fire, Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-226-suppressing-fire-part-1/4000-163253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300380/","id":300380,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-104/4000-300380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434080/","id":434080,"name":"X-Men: Rivolta Mutante","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-4-x-men-rivolta-mutante/4000-434080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433928/","id":433928,"name":"X-Men: Messiah Complex","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-25-x-men-messiah-complex/4000-433928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385132/","id":385132,"name":"Комплекс Мессии. Часть 9","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-169-9/4000-385132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306216/","id":306216,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-152/4000-306216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290128/","id":290128,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-231/4000-290128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-162522/","id":162522,"name":"Utopia Chapter 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-513-utopia-chapter-2/4000-162522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204226/","id":204226,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/x-force-old-ghosts-1-volume-2/4000-204226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185338/","id":185338,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-sisterhood-1-tpb/4000-185338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385129/","id":385129,"name":"Комплекс Мессии. Часть 6","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-166-6/4000-385129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306215/","id":306215,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-151/4000-306215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299818/","id":299818,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-51/4000-299818/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290127/","id":290127,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-230/4000-290127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277062/","id":277062,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-172/4000-277062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-161518/","id":161518,"name":"Utopia Chapter 1","site_detail_url":"https://comicvine.gamespot.com/dark-avengersuncanny-x-men-utopia-1-utopia-chapter/4000-161518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411031/","id":411031,"name":"Gehaat En Gevressd","site_detail_url":"https://comicvine.gamespot.com/x-mannen-321-gehaat-en-gevressd/4000-411031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300583/","id":300583,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-23/4000-300583/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299705/","id":299705,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force-2/4000-299705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306214/","id":306214,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-150/4000-306214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290091/","id":290091,"name":"","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-229/4000-290091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189822/","id":189822,"name":"X-Men: The End Trilogy","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-trilogy-1-x-men-the-end-trilogy/4000-189822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189761/","id":189761,"name":"Volume 10","site_detail_url":"https://comicvine.gamespot.com/runaways-rock-zombies-1-volume-10/4000-189761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186406/","id":186406,"name":"X-Infernus","site_detail_url":"https://comicvine.gamespot.com/x-infernus-1-x-infernus/4000-186406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-176169/","id":176169,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn-1-uncanny-x-men-lovelorn/4000-176169/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158856/","id":158856,"name":"Mollifest Destiny/Truth or Dare","site_detail_url":"https://comicvine.gamespot.com/runaways-10-mollifest-destinytruth-or-dare/4000-158856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157781/","id":157781,"name":"Sisterhood Part 3","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-510-sisterhood-part-3/4000-157781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299432/","id":299432,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-force-8/4000-299432/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289829/","id":289829,"name":"","site_detail_url":"https://comicvine.gamespot.com/invasion-secreta-x-men-1/4000-289829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105760/","id":105760,"name":"Sisterhood Part 1","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-508-sisterhood-part-1/4000-105760/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306213/","id":306213,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-149/4000-306213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290089/","id":290089,"name":"Secret Ivasion","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-228-secret-ivasion/4000-290089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156102/","id":156102,"name":"Sisterhood Part 2","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-509-sisterhood-part-2/4000-156102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443465/","id":443465,"name":"Gli Incredibili X-Men","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-10-gli-incredibili-x-men/4000-443465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153653/","id":153653,"name":"Suicide Leper: Part 2","site_detail_url":"https://comicvine.gamespot.com/x-force-13-suicide-leper-part-2/4000-153653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185311/","id":185311,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-1-tpb/4000-185311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-443461/","id":443461,"name":"Wolverine: Nemico pubblico","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe-6-wolverine-nemico-pubbl/4000-443461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152605/","id":152605,"name":"Suicide Leper: Part 1","site_detail_url":"https://comicvine.gamespot.com/x-force-12-suicide-leper-part-1/4000-152605/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152232/","id":152232,"name":"Lovelorn, Part 3","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-506-lovelorn-part-3/4000-152232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451667/","id":451667,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-154/4000-451667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220393/","id":220393,"name":"Wolverine: Inside The World Of The Living Weapon","site_detail_url":"https://comicvine.gamespot.com/wolverine-inside-the-world-of-the-living-weapon-1-/4000-220393/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417745/","id":417745,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2009-02/4000-417745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446809/","id":446809,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-apresenta-40/4000-446809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300026/","id":300026,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-87/4000-300026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417746/","id":417746,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2009-01/4000-417746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385110/","id":385110,"name":"Феникс: песня войны. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-154-5/4000-385110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300025/","id":300025,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-86/4000-300025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451666/","id":451666,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-153/4000-451666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446359/","id":446359,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-45/4000-446359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446358/","id":446358,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-44/4000-446358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433736/","id":433736,"name":"","site_detail_url":"https://comicvine.gamespot.com/novos-x-men-imperial-1/4000-433736/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385109/","id":385109,"name":"Феникс: песня войны. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-153-4/4000-385109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385108/","id":385108,"name":"Феникс: песня войны. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-152-3/4000-385108/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291237/","id":291237,"name":"El hogar está donde está el corazón","site_detail_url":"https://comicvine.gamespot.com/los-exiliados-20-el-hogar-esta-donde-esta-el-coraz/4000-291237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143151/","id":143151,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-4/4000-143151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447126/","id":447126,"name":"Volumen 2","site_detail_url":"https://comicvine.gamespot.com/omnibus-house-of-m-2-volumen-2/4000-447126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285374/","id":285374,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-7/4000-285374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300371/","id":300371,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-95/4000-300371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186307/","id":186307,"name":"Book 3","site_detail_url":"https://comicvine.gamespot.com/new-x-men-ultimate-collection-3-book-3/4000-186307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385107/","id":385107,"name":"Феникс: песня войны. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-151-2/4000-385107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-385106/","id":385106,"name":"Феникс: песня войны. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-150-1/4000-385106/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300023/","id":300023,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-84/4000-300023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284023/","id":284023,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-43/4000-284023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277030/","id":277030,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-164/4000-277030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141242/","id":141242,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-3/4000-141242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454031/","id":454031,"name":"Surdoués","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-1-surdoues/4000-454031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-183107/","id":183107,"name":"X-Men: Messiah CompleX","site_detail_url":"https://comicvine.gamespot.com/x-men-messiah-complex-1-x-men-messiah-complex/4000-183107/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300370/","id":300370,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-94/4000-300370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446356/","id":446356,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-42/4000-446356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306206/","id":306206,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-142/4000-306206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300022/","id":300022,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-83/4000-300022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289878/","id":289878,"name":"Messiah Complex : capitolo 5 (di 6)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-221-messiah-complex-capitolo/4000-289878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139327/","id":139327,"name":"Old Ghosts, Part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/x-force-7-old-ghosts-part-1-of-4/4000-139327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138410/","id":138410,"name":"","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-2/4000-138410/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-137373/","id":137373,"name":"Dying Inside","site_detail_url":"https://comicvine.gamespot.com/x-men-return-of-magik-1-dying-inside/4000-137373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292816/","id":292816,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-34/4000-292816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151428/","id":151428,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z-pr/4000-151428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300369/","id":300369,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-93/4000-300369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306205/","id":306205,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-141/4000-306205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299401/","id":299401,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-factor-24/4000-299401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289877/","id":289877,"name":"Messiah Complex : capitolo 3 (di 6)","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-220-messiah-complex-capitolo/4000-289877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135404/","id":135404,"name":"Manifest Destiny","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men-1-manifest-destiny/4000-135404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292815/","id":292815,"name":"","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-33/4000-292815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446262/","id":446262,"name":"","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men-2/4000-446262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300446/","id":300446,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-33/4000-300446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300020/","id":300020,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-81/4000-300020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277011/","id":277011,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-161/4000-277011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186306/","id":186306,"name":"Book 2","site_detail_url":"https://comicvine.gamespot.com/new-x-men-ultimate-collection-2-book-2/4000-186306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435374/","id":435374,"name":"Supreendentes X-Men: Edição Especial","site_detail_url":"https://comicvine.gamespot.com/supreendentes-x-men-1-supreendentes-x-men-edicao-e/4000-435374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306203/","id":306203,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-139/4000-306203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300551/","id":300551,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-80/4000-300551/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277010/","id":277010,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-160/4000-277010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275101/","id":275101,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-35/4000-275101/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300578/","id":300578,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-18/4000-300578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300550/","id":300550,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-79/4000-300550/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300018/","id":300018,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-79/4000-300018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277009/","id":277009,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-159/4000-277009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275100/","id":275100,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-34/4000-275100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418048/","id":418048,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2008-03/4000-418048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306201/","id":306201,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-137/4000-306201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300017/","id":300017,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-78/4000-300017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277003/","id":277003,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-158/4000-277003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186305/","id":186305,"name":"Book 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-ultimate-collection-1-book-1/4000-186305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127621/","id":127621,"name":"The Complete Edition","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition-/4000-127621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275099/","id":275099,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-33/4000-275099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284017/","id":284017,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-36/4000-284017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276983/","id":276983,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-157/4000-276983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186637/","id":186637,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-x-men-1-tpb/4000-186637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451661/","id":451661,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-148/4000-451661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285373/","id":285373,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-6/4000-285373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418049/","id":418049,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2008-02/4000-418049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300172/","id":300172,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-135/4000-300172/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291771/","id":291771,"name":"X-Men: Phoenix Kriegsgesang","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-73-x-men-phoenix-kriegsgesang/4000-291771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264967/","id":264967,"name":"Planet X - The Conclusion!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-137-planet-x-the-conclusion/4000-264967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124280/","id":124280,"name":"Home is where the heart is!","site_detail_url":"https://comicvine.gamespot.com/new-exiles-0-home-is-where-the-heart-is/4000-124280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275096/","id":275096,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-31/4000-275096/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120866/","id":120866,"name":"","site_detail_url":"https://comicvine.gamespot.com/exiles-days-of-then-and-now-1/4000-120866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300546/","id":300546,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-75/4000-300546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300171/","id":300171,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-134/4000-300171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121100/","id":121100,"name":"Messiah CompleX, Chapter Eleven","site_detail_url":"https://comicvine.gamespot.com/x-factor-27-messiah-complex-chapter-eleven/4000-121100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120868/","id":120868,"name":"Messiah CompleX, Chapter Ten","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-494-messiah-complex-chapter-ten/4000-120868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275095/","id":275095,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-30/4000-275095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-240184/","id":240184,"name":"Volume 16","site_detail_url":"https://comicvine.gamespot.com/exiles-starting-over-1-volume-16/4000-240184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300545/","id":300545,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-74/4000-300545/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120558/","id":120558,"name":"Messiah CompleX, Part Nine","site_detail_url":"https://comicvine.gamespot.com/x-men-206-messiah-complex-part-nine/4000-120558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119231/","id":119231,"name":"Messiah CompleX Chapter Six","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men-493-messiah-complex-chapter-six/4000-119231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454024/","id":454024,"name":"Déjà demain","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-4-deja-demain/4000-454024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283203/","id":283203,"name":"","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-la-cancion-de-guerra-de-fenix-1/4000-283203/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411040/","id":411040,"name":"Messiah Complex","site_detail_url":"https://comicvine.gamespot.com/x-mannen-312-messiah-complex/4000-411040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411039/","id":411039,"name":"Messiah Complex (deel 2)","site_detail_url":"https://comicvine.gamespot.com/x-mannen-313-messiah-complex-deel-2/4000-411039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411038/","id":411038,"name":"Messiah Complex (deel 3)","site_detail_url":"https://comicvine.gamespot.com/x-mannen-314-messiah-complex-deel-3/4000-411038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300544/","id":300544,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-73/4000-300544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300012/","id":300012,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-73/4000-300012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284013/","id":284013,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-32/4000-284013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186405/","id":186405,"name":"Phoenix - Warsong","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong-1-phoenix-warsong/4000-186405/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186544/","id":186544,"name":"Volume 9: Childhood's End Vol. 5 - The Quest For Magik","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-the-quest-for-magik-1-vol/4000-186544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300011/","id":300011,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-72/4000-300011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284012/","id":284012,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-31/4000-284012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276866/","id":276866,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-152/4000-276866/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116391/","id":116391,"name":"Children of X-Men, Part 2 of 2","site_detail_url":"https://comicvine.gamespot.com/new-x-men-43-children-of-x-men-part-2-of-2/4000-116391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285372/","id":285372,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-5/4000-285372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275092/","id":275092,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-27/4000-275092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434078/","id":434078,"name":"X-Men: Imperiale","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-2-x-men-imperiale/4000-434078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284011/","id":284011,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-30/4000-284011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276865/","id":276865,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-151/4000-276865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114617/","id":114617,"name":"Children of X-Men, Part 1 of 2; Endangered Species, Chapter 12","site_detail_url":"https://comicvine.gamespot.com/new-x-men-42-children-of-x-men-part-1-of-2-endange/4000-114617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275091/","id":275091,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-26/4000-275091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264914/","id":264914,"name":"Triumph And Tragedy!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-157-triumph-and-tragedy/4000-264914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433735/","id":433735,"name":"","site_detail_url":"https://comicvine.gamespot.com/novos-x-men-e-de-extincao-1/4000-433735/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306198/","id":306198,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-129/4000-306198/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284010/","id":284010,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-29/4000-284010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276864/","id":276864,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-150/4000-276864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264924/","id":264924,"name":"Phoenix Reborn!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-156-phoenix-reborn/4000-264924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109761/","id":109761,"name":"Quest for Magik, Conclusion; Endangered Species, Chapter 8","site_detail_url":"https://comicvine.gamespot.com/new-x-men-41-quest-for-magik-conclusion-endangered/4000-109761/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300168/","id":300168,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-128/4000-300168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300008/","id":300008,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-69/4000-300008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284009/","id":284009,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-28/4000-284009/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264928/","id":264928,"name":"Rogue & Gambit : The End?","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-155-rogue-gambit-the-end/4000-264928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111708/","id":111708,"name":"Sworn to Protect","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men-2-sworn-to-protect/4000-111708/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-434077/","id":434077,"name":"X-Men: E come Extinzione","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-1-x-men-e-come-extinzione/4000-434077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300007/","id":300007,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-68/4000-300007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276861/","id":276861,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-148/4000-276861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132592/","id":132592,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/civil-war-companion-1-tpb/4000-132592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107619/","id":107619,"name":"The Quest for Magik (part two of four)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-39-the-quest-for-magik-part-two-of-four/4000-107619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285371/","id":285371,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-4/4000-285371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275088/","id":275088,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-23/4000-275088/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107615/","id":107615,"name":"The Quest for Magik - Part 1 (of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-38-the-quest-for-magik-part-1-of-4/4000-107615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275087/","id":275087,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-22/4000-275087/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448616/","id":448616,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-8/4000-448616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300165/","id":300165,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-125/4000-300165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299649/","id":299649,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-tres-hombres-y-hombres-x-3/4000-299649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107611/","id":107611,"name":"THE QUEST FOR MAGIK – PRELUDE","site_detail_url":"https://comicvine.gamespot.com/new-x-men-37-the-quest-for-magik-prelude/4000-107611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448615/","id":448615,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-7/4000-448615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300164/","id":300164,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-124/4000-300164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299648/","id":299648,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-tres-hombres-y-hombres-x-2/4000-299648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300003/","id":300003,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-64/4000-300003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299645/","id":299645,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-tres-hombres-y-hombres-x-1/4000-299645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107416/","id":107416,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-battle-damage-report-1/4000-107416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251856/","id":251856,"name":"AGENT of HYDRA!","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool-135-agent-of-hydra/4000-251856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448613/","id":448613,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5/4000-448613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264979/","id":264979,"name":"Don't Go In X-Men... You Won't Like What You'll Find!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-149-dont-go-in-x-men-you-wont-like/4000-264979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107804/","id":107804,"name":"X-Men : Phoenix Warsong , Part 5","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong-5-x-men-phoenix-warsong-part/4000-107804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275083/","id":275083,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-18/4000-275083/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300001/","id":300001,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-62/4000-300001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264978/","id":264978,"name":"X-23 - She's The Best There Is.....","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-148-x-23-shes-the-best-there-is/4000-264978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107803/","id":107803,"name":"X-Men : Phoenix Warsong , Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong-4-x-men-phoenix-warsong-part/4000-107803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186541/","id":186541,"name":"Volume 7: Childhood's End Vol. 3 - Nimrod","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-nimrod-1-volume-7-childho/4000-186541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447337/","id":447337,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-5/4000-447337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447336/","id":447336,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-4/4000-447336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324546/","id":324546,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-60/4000-324546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300569/","id":300569,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-9/4000-300569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300160/","id":300160,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-120/4000-300160/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300000/","id":300000,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-61/4000-300000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274275/","id":274275,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-41/4000-274275/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107799/","id":107799,"name":"X-Men : Phoenix Warsong , Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong-3-x-men-phoenix-warsong-part/4000-107799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106359/","id":106359,"name":"Whatever Happened To Wither?","site_detail_url":"https://comicvine.gamespot.com/new-x-men-32-whatever-happened-to-wither/4000-106359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447335/","id":447335,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-3/4000-447335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447334/","id":447334,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-2/4000-447334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447333/","id":447333,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-1/4000-447333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446814/","id":446814,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-apresenta-27/4000-446814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433734/","id":433734,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-o-fim-livro-3-homens-mutantes-3/4000-433734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378972/","id":378972,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-75/4000-378972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-307103/","id":307103,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-60/4000-307103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275886/","id":275886,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-140/4000-275886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107798/","id":107798,"name":"X-Men : Phoenix Warsong , Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong-2-x-men-phoenix-warsong-part/4000-107798/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106358/","id":106358,"name":"Nimrod (part 4 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-31-nimrod-part-4-of-4/4000-106358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453966/","id":453966,"name":"La fin - Humains et X-Men","site_detail_url":"https://comicvine.gamespot.com/100-marvel-3-la-fin-humains-et-x-men/4000-453966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285369/","id":285369,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-2/4000-285369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275080/","id":275080,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-15/4000-275080/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433767/","id":433767,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-i-personaggi-e-il-loro-universo-1/4000-433767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433733/","id":433733,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-o-fim-livro-3-homens-mutantes-2/4000-433733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433732/","id":433732,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-o-fim-livro-3-homens-mutantes-1/4000-433732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378971/","id":378971,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-74/4000-378971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300568/","id":300568,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-8/4000-300568/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300531/","id":300531,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-59/4000-300531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299998/","id":299998,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-59/4000-299998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274273/","id":274273,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-39/4000-274273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264975/","id":264975,"name":"The Resurrection Of Colossus!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-145-the-resurrection-of-colossus/4000-264975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186499/","id":186499,"name":"Here Comes Tomorrow","site_detail_url":"https://comicvine.gamespot.com/new-x-men-here-comes-tomorrow-1-here-comes-tomorro/4000-186499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107768/","id":107768,"name":"X-Men : Phoenix Warsong , Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong-1-x-men-phoenix-warsong-part/4000-107768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275079/","id":275079,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x-14/4000-275079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-378970/","id":378970,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-73/4000-378970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300530/","id":300530,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-58/4000-300530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300157/","id":300157,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-117/4000-300157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274272/","id":274272,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-38/4000-274272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189821/","id":189821,"name":"Men & X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men-1-men-x-men/4000-189821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186401/","id":186401,"name":"Enemy Of The State","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-1-enemy-of-the-state/4000-186401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454023/","id":454023,"name":"Planète X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-3-planete-x/4000-454023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299674/","id":299674,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-la-cancion-final-de-fenix-5/4000-299674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275078/","id":275078,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x-13/4000-275078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198649/","id":198649,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/decimation-x-men-the-198-1-tpb/4000-198649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300567/","id":300567,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-7/4000-300567/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384768/","id":384768,"name":"Феникс: возвращение. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-96-5/4000-384768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324555/","id":324555,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-58/4000-324555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299996/","id":299996,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-57/4000-299996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275870/","id":275870,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-137/4000-275870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264972/","id":264972,"name":"The Funeral Of Magneto!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-142-the-funeral-of-magneto/4000-264972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138254/","id":138254,"name":"X-Men: The Characters and Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe-1-x-men-th/4000-138254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106345/","id":106345,"name":"Nimrod (part 1 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-28-nimrod-part-1-of-4/4000-106345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299673/","id":299673,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-la-cancion-final-de-fenix-4/4000-299673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283996/","id":283996,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-15/4000-283996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275077/","id":275077,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x-12/4000-275077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186539/","id":186539,"name":"Volume 6: Childhood's End Vol. 2 - Crusade","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-crusade-1-volume-6-childh/4000-186539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399458/","id":399458,"name":"GEFÄHRLICH","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks-2-gefahrlich/4000-399458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447898/","id":447898,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-15/4000-447898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384767/","id":384767,"name":"Феникс: возвращение. Часть 4","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-95-4/4000-384767/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384766/","id":384766,"name":"Феникс: возвращение. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-94-3/4000-384766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275860/","id":275860,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-136/4000-275860/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264971/","id":264971,"name":"Here Comes Tomorrow!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-141-here-comes-tomorrow/4000-264971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106344/","id":106344,"name":"Crusade (part 4 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-27-crusade-part-4-of-4/4000-106344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451651/","id":451651,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-138/4000-451651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299672/","id":299672,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-la-cancion-final-de-fenix-3/4000-299672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291634/","id":291634,"name":"Peligroso","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-2-peligroso/4000-291634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-285368/","id":285368,"name":"","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men-1/4000-285368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411409/","id":411409,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-288/4000-411409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418123/","id":418123,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2006-04/4000-418123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384765/","id":384765,"name":"Феникс: возвращение. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-93-2/4000-384765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384764/","id":384764,"name":"Феникс: возвращение. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-92-1/4000-384764/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-377655/","id":377655,"name":"House of M : Special","site_detail_url":"https://comicvine.gamespot.com/marvel-mega-37-house-of-m-special/4000-377655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324556/","id":324556,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-57/4000-324556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289441/","id":289441,"name":"House of M 4 di 4","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-193-house-of-m-4-di-4/4000-289441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283995/","id":283995,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-14/4000-283995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275807/","id":275807,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-135/4000-275807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113834/","id":113834,"name":"The Final Hour","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men-5-the-final-hour/4000-113834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299671/","id":299671,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-la-cancion-final-de-fenix-2/4000-299671/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411408/","id":411408,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-287/4000-411408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300419/","id":300419,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-legado-6/4000-300419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300153/","id":300153,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-113/4000-300153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299644/","id":299644,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-dos-heroes-y-martires-3/4000-299644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283994/","id":283994,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-13/4000-283994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275806/","id":275806,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-134/4000-275806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264969/","id":264969,"name":"Beware The Nightcrawlers!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-139-beware-the-nightcrawlers/4000-264969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113831/","id":113831,"name":"The Die Is Cast","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men-4-the-die-is-cast/4000-113831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454022/","id":454022,"name":"L'Arme Douze","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-2-larme-douze/4000-454022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299670/","id":299670,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-la-cancion-final-de-fenix-1/4000-299670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275074/","id":275074,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x-9/4000-275074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186530/","id":186530,"name":"Volume 5: Childhood's End Vol. 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-1-volume-5-childhoods-end/4000-186530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186298/","id":186298,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-1-vol-1/4000-186298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300340/","id":300340,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-64/4000-300340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433744/","id":433744,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-enzyklopadie-1/4000-433744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433743/","id":433743,"name":"Enciclopedia Marvel : X-Men","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-4-enciclopedia-marvel-x-men/4000-433743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433742/","id":433742,"name":"","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-x-men-1/4000-433742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433741/","id":433741,"name":"","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-x-men-1/4000-433741/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300525/","id":300525,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-53/4000-300525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300152/","id":300152,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-112/4000-300152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275803/","id":275803,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-133/4000-275803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113830/","id":113830,"name":"Hinge Of Fate","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men-3-hinge-of-fate/4000-113830/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284093/","id":284093,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-8/4000-284093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300564/","id":300564,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-4/4000-300564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110573/","id":110573,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384759/","id":384759,"name":"Страшное. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-87-2/4000-384759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384758/","id":384758,"name":"Страшное. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-86-1/4000-384758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300524/","id":300524,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-52/4000-300524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275802/","id":275802,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-132/4000-275802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113829/","id":113829,"name":"Closing The Ring","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men-2-closing-the-ring/4000-113829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105955/","id":105955,"name":"Childhood's End Part 4","site_detail_url":"https://comicvine.gamespot.com/new-x-men-23-childhoods-end-part-4/4000-105955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451650/","id":451650,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-137/4000-451650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451649/","id":451649,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-136/4000-451649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291633/","id":291633,"name":"El Don","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men-1-el-don/4000-291633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284092/","id":284092,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-7/4000-284092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186404/","id":186404,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-1/4000-186404/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-399457/","id":399457,"name":"Begabt","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks-1-begabt/4000-399457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418243/","id":418243,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2006-03/4000-418243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433731/","id":433731,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-o-fim-livro-2-herois-martires-3/4000-433731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384756/","id":384756,"name":"Одаренные. Часть 5","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-84-5/4000-384756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333459/","id":333459,"name":"X-Men - The End - Libro Secondo : Eroi E Martiri 3","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-68-x-men-the-end-libro-secondo-er/4000-333459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-298916/","id":298916,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-16/4000-298916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186528/","id":186528,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m-1-volume-4/4000-186528/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113784/","id":113784,"name":"The Grand Alliance","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men-1-the-grand-allianc/4000-113784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290699/","id":290699,"name":"","site_detail_url":"https://comicvine.gamespot.com/lobezno-2/4000-290699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418244/","id":418244,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2006-02/4000-418244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300522/","id":300522,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-50/4000-300522/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284090/","id":284090,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5/4000-284090/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411383/","id":411383,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-262/4000-411383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300563/","id":300563,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-3/4000-300563/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411403/","id":411403,"name":"Verleiding","site_detail_url":"https://comicvine.gamespot.com/x-mannen-282-verleiding/4000-411403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106250/","id":106250,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-the-198-files-1/4000-106250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436949/","id":436949,"name":"","site_detail_url":"https://comicvine.gamespot.com/wolverine-192/4000-436949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283989/","id":283989,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-8/4000-283989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265965/","id":265965,"name":"X-Men 2","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-7-x-men-2/4000-265965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264988/","id":264988,"name":"Death Of A Dream...?","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-128-death-of-a-dream/4000-264988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264987/","id":264987,"name":"Riot At Xavier's!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-127-riot-at-xaviers/4000-264987/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264986/","id":264986,"name":"Schism!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-126-schism/4000-264986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264970/","id":264970,"name":"The Beast Within!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-140-the-beast-within/4000-264970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264968/","id":264968,"name":"The Arena Awaits!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-138-the-arena-awaits/4000-264968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264962/","id":264962,"name":"Rogue & Gambit Return!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-132-rogue-gambit-return/4000-264962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264959/","id":264959,"name":"Murder At The Mansion!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-129-murder-at-the-mansion/4000-264959/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186518/","id":186518,"name":"Volume 3: X-Posed","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-x-posed-1-volume-3-x-posed/4000-186518/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185464/","id":185464,"name":"New X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-omnibus-1-new-x-men-omnibus/4000-185464/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106297/","id":106297,"name":"Childhood's End part 1 of 4","site_detail_url":"https://comicvine.gamespot.com/new-x-men-20-childhoods-end-part-1-of-4/4000-106297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451647/","id":451647,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-134/4000-451647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283988/","id":283988,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-7/4000-283988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418246/","id":418246,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-06/4000-418246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-291757/","id":291757,"name":"X-Men: Phoenix Abgesang","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv-59-x-men-phoenix-abgesang/4000-291757/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106307/","id":106307,"name":"Campfire","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-yearbook-1-campfire/4000-106307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106296/","id":106296,"name":"House Divided (part 4 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-19-house-divided-part-4-of-4/4000-106296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292449/","id":292449,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-116/4000-292449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300335/","id":300335,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-59/4000-300335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299653/","id":299653,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-uno-sonadores-y-demonios-3/4000-299653/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275789/","id":275789,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-127/4000-275789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189820/","id":189820,"name":"Heroes & Martyrs","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-2-heroes-martyrs-1-heroes-marty/4000-189820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186272/","id":186272,"name":"Dangerous","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-dangerous-1-dangerous/4000-186272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106295/","id":106295,"name":"House Divided (part 3 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-18-house-divided-part-3-of-4/4000-106295/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451646/","id":451646,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-133/4000-451646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300562/","id":300562,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft-2/4000-300562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418248/","id":418248,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-05/4000-418248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333416/","id":333416,"name":"X-Men - The End - Libro Primo : Sognatori E Demoni 3","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-63-x-men-the-end-libro-primo-sogn/4000-333416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-283986/","id":283986,"name":"","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5/4000-283986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275787/","id":275787,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-126/4000-275787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185346/","id":185346,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/x-men-bizarre-love-triangle-1-tpb/4000-185346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113783/","id":113783,"name":"Godrise","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-2-heroes-martyrs-6-godrise/4000-113783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106294/","id":106294,"name":"House Divided (part 2 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-17-house-divided-part-2-of-4/4000-106294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292447/","id":292447,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-114/4000-292447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433728/","id":433728,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-o-fim-livro-1-sonhadores-demonios-3/4000-433728/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299651/","id":299651,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-uno-sonadores-y-demonios-1/4000-299651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275781/","id":275781,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-125/4000-275781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-274264/","id":274264,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-previews-25/4000-274264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106293/","id":106293,"name":"House Divided (part 1 of 4)","site_detail_url":"https://comicvine.gamespot.com/new-x-men-16-house-divided-part-1-of-4/4000-106293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451645/","id":451645,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-132/4000-451645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418249/","id":418249,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-04/4000-418249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384651/","id":384651,"name":"Новые люди. Часть 3","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-71-3/4000-384651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384650/","id":384650,"name":"Новые люди. Часть 2","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-70-2/4000-384650/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333413/","id":333413,"name":"X-Men - The End - Libro Primo : Sognatori E Demoni 1","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie-61-x-men-the-end-libro-primo-sogn/4000-333413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299983/","id":299983,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-44/4000-299983/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106292/","id":106292,"name":"Year's End, Part 2: School's Out Forever","site_detail_url":"https://comicvine.gamespot.com/new-x-men-15-years-end-part-2-schools-out-forever/4000-106292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106171/","id":106171,"name":"Bizarre Love Triangle, Part 2: Temptation","site_detail_url":"https://comicvine.gamespot.com/x-men-172-bizarre-love-triangle-part-2-temptation/4000-106171/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453964/","id":453964,"name":"La fin - Reveurs et démons","site_detail_url":"https://comicvine.gamespot.com/100-marvel-1-la-fin-reveurs-et-demons/4000-453964/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292445/","id":292445,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-112/4000-292445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300331/","id":300331,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-55/4000-300331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384649/","id":384649,"name":"Новые люди. Часть 1","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-69-1/4000-384649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299982/","id":299982,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-43/4000-299982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106281/","id":106281,"name":"Year's End, Part 1: Dance Hall Days","site_detail_url":"https://comicvine.gamespot.com/new-x-men-14-years-end-part-1-dance-hall-days/4000-106281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292444/","id":292444,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-111/4000-292444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433726/","id":433726,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-o-fim-livro-1-sonhadores-demonios-1/4000-433726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299981/","id":299981,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-42/4000-299981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99611/","id":99611,"name":"X-Men: Phoenix - Endsong , Part 5","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-5-x-men-phoenix-endsong-part/4000-99611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537049/","id":537049,"name":"Prisionero del Fuego, 2 de 6","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-37-prisionero-del-fuego-2-de-6/4000-537049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292443/","id":292443,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-110/4000-292443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448811/","id":448811,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-179/4000-448811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300513/","id":300513,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-41/4000-300513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299980/","id":299980,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-41/4000-299980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292157/","id":292157,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition-8-x-treme-x-men/4000-292157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99610/","id":99610,"name":"X-Men: Phoenix - Endsong , Part 4","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-4-x-men-phoenix-endsong-part/4000-99610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-454021/","id":454021,"name":"E comme extinction","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-1-e-comme-extinction/4000-454021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292442/","id":292442,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-109/4000-292442/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448810/","id":448810,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-178/4000-448810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306196/","id":306196,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-99/4000-306196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299979/","id":299979,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-40/4000-299979/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99609/","id":99609,"name":"X-Men: Phoenix - Endsong , Part 3","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-3-x-men-phoenix-endsong-part/4000-99609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99608/","id":99608,"name":"X-Men: Phoenix - Endsong , Part 2","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-2-x-men-phoenix-endsong-part/4000-99608/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292441/","id":292441,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-108/4000-292441/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300327/","id":300327,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-51/4000-300327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448809/","id":448809,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-177/4000-448809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448808/","id":448808,"name":"","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x-176/4000-448808/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306195/","id":306195,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-98/4000-306195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299978/","id":299978,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-39/4000-299978/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281040/","id":281040,"name":"Nuova Serie n.53","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-177-nuova-serie-n53/4000-281040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-189819/","id":189819,"name":"Dreamers & Demons","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons-1-dreamers-de/4000-189819/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99607/","id":99607,"name":"X-Men: Phoenix - Endsong , Part 1","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong-1-x-men-phoenix-endsong-part/4000-99607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292440/","id":292440,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-107/4000-292440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418257/","id":418257,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2005-01/4000-418257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300326/","id":300326,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-50/4000-300326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306194/","id":306194,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-97/4000-306194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281038/","id":281038,"name":"Nuova Serie n.52","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-176-nuova-serie-n52/4000-281038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113703/","id":113703,"name":"...And Tragedy","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons-6-and-tragedy/4000-113703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99752/","id":99752,"name":"Dangerous, Part 2","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-8-dangerous-part-2/4000-99752/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97344/","id":97344,"name":"Enemy Of The State, Part 4","site_detail_url":"https://comicvine.gamespot.com/wolverine-23-enemy-of-the-state-part-4/4000-97344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451642/","id":451642,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-129/4000-451642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106691/","id":106691,"name":null,"site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-200/4000-106691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411382/","id":411382,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-261/4000-411382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306193/","id":306193,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-96/4000-306193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275739/","id":275739,"name":"X-Treme X-Men 34","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-117-x-treme-x-men-34/4000-275739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186507/","id":186507,"name":"Volume 1: Choosing Sides","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-choosing-sides-1-volume-1-choo/4000-186507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99751/","id":99751,"name":"Dangerous, Part 1","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-7-dangerous-part-1/4000-99751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451641/","id":451641,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-128/4000-451641/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418258/","id":418258,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2004-06/4000-418258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306192/","id":306192,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-95/4000-306192/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292155/","id":292155,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition-6-x-treme-x-men/4000-292155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281023/","id":281023,"name":"Nuova Serie n.50","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-174-nuova-serie-n50/4000-281023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265030/","id":265030,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-119/4000-265030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186271/","id":186271,"name":"Gifted","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-gifted-1-gifted/4000-186271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99629/","id":99629,"name":"Foreshadowing","site_detail_url":"https://comicvine.gamespot.com/x-men-163-foreshadowing/4000-99629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300323/","id":300323,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-47/4000-300323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312758/","id":312758,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-31/4000-312758/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306191/","id":306191,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-94/4000-306191/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281013/","id":281013,"name":"Nuova Serie n.49","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-173-nuova-serie-n49/4000-281013/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265032/","id":265032,"name":"The Imperial Guard Attacks!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-118-the-imperial-guard-attacks/4000-265032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93544/","id":93544,"name":"Gifted, Part 5","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-5-gifted-part-5/4000-93544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451640/","id":451640,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-127/4000-451640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418259/","id":418259,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2004-05/4000-418259/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-281012/","id":281012,"name":"Nuova Serie n.48","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-172-nuova-serie-n48/4000-281012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265035/","id":265035,"name":"Lifeguard To The Rescue!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-117-lifeguard-to-the-rescue/4000-265035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111378/","id":111378,"name":"Omens & Portents","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons-2-omens-porte/4000-111378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186425/","id":186425,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-bright-new-mourning-1-volume-6/4000-186425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299972/","id":299972,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-33/4000-299972/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265036/","id":265036,"name":"Shhhh...","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-116-shhhh/4000-265036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90343/","id":90343,"name":"Day of the Atom","site_detail_url":"https://comicvine.gamespot.com/x-men-159-day-of-the-atom/4000-90343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300507/","id":300507,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-extra-34/4000-300507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299971/","id":299971,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-32/4000-299971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275724/","id":275724,"name":"X-Treme X-Men 29","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe-112-x-treme-x-men-29/4000-275724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265038/","id":265038,"name":"Getting Even!","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-115-getting-even/4000-265038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317386/","id":317386,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-100/4000-317386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299970/","id":299970,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-31/4000-299970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317385/","id":317385,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-99/4000-317385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106438/","id":106438,"name":"A Bright New Mourning, Part 2","site_detail_url":"https://comicvine.gamespot.com/new-x-men-156-a-bright-new-mourning-part-2/4000-106438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106437/","id":106437,"name":"A Bright New Mourning, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-155-a-bright-new-mourning-part-1/4000-106437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300317/","id":300317,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-41/4000-300317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317384/","id":317384,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-98/4000-317384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306185/","id":306185,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-88/4000-306185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299968/","id":299968,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-29/4000-299968/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106248/","id":106248,"name":"Here Comes Tomorrow, Part 4: Rescue and Emergency","site_detail_url":"https://comicvine.gamespot.com/new-x-men-154-here-comes-tomorrow-part-4-rescue-an/4000-106248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106436/","id":106436,"name":"Prisoner of Fire Part Two: Past Lies","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-41-prisoner-of-fire-part-two-past-li/4000-106436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300316/","id":300316,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-40/4000-300316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317383/","id":317383,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-97/4000-317383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306184/","id":306184,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-87/4000-306184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299967/","id":299967,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-28/4000-299967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106247/","id":106247,"name":"Here Comes Tomorrow, Part 3: We All Have to Die Sometime","site_detail_url":"https://comicvine.gamespot.com/new-x-men-153-here-comes-tomorrow-part-3-we-all-ha/4000-106247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222697/","id":222697,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-intifada-1-volume-6/4000-222697/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300315/","id":300315,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-39/4000-300315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317382/","id":317382,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-96/4000-317382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306183/","id":306183,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-86/4000-306183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299966/","id":299966,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-27/4000-299966/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106246/","id":106246,"name":"Here Comes Tomorrow, Part 2: Surrender the Starlit City","site_detail_url":"https://comicvine.gamespot.com/new-x-men-152-here-comes-tomorrow-part-2-surrender/4000-106246/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106245/","id":106245,"name":"Here Comes Tomorrow, Part 1","site_detail_url":"https://comicvine.gamespot.com/new-x-men-151-here-comes-tomorrow-part-1/4000-106245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451637/","id":451637,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-124/4000-451637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418280/","id":418280,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2004-02/4000-418280/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300314/","id":300314,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-38/4000-300314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317381/","id":317381,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-95/4000-317381/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299965/","id":299965,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-26/4000-299965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280925/","id":280925,"name":"Nuova Serie n.40","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-164-nuova-serie-n40/4000-280925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186496/","id":186496,"name":"Planet X","site_detail_url":"https://comicvine.gamespot.com/new-x-men-planet-x-1-planet-x/4000-186496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114459/","id":114459,"name":"Planet X, Part 5: Phoenix Invictus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-150-planet-x-part-5-phoenix-invictus/4000-114459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411387/","id":411387,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-mannen-266/4000-411387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300313/","id":300313,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-37/4000-300313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317380/","id":317380,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-94/4000-317380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300138/","id":300138,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-84/4000-300138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299969/","id":299969,"name":"6","site_detail_url":"https://comicvine.gamespot.com/x-men-30-6/4000-299969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280924/","id":280924,"name":"Nuova Serie n.39","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-163-nuova-serie-n39/4000-280924/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114458/","id":114458,"name":"Planet X, Part 4: Phoenix in Darkness","site_detail_url":"https://comicvine.gamespot.com/new-x-men-149-planet-x-part-4-phoenix-in-darkness/4000-114458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300312/","id":300312,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-36/4000-300312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448648/","id":448648,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-8/4000-448648/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317379/","id":317379,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-93/4000-317379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300137/","id":300137,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-83/4000-300137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280920/","id":280920,"name":"Nuova Serie n.38","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-162-nuova-serie-n38/4000-280920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451634/","id":451634,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-121/4000-451634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106228/","id":106228,"name":"Intifada, Part 1 of 5: This is the Way the World Ends","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-31-intifada-part-1-of-5-this-is-the-/4000-106228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418285/","id":418285,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2003-11/4000-418285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448647/","id":448647,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-7/4000-448647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300136/","id":300136,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-82/4000-300136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280919/","id":280919,"name":"Nuova Serie n.37","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-161-nuova-serie-n37/4000-280919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448646/","id":448646,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-6/4000-448646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186492/","id":186492,"name":"Assault On Weapon Plus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-assault-on-weapon-plus-1-assault-on-weap/4000-186492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451632/","id":451632,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-119/4000-451632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418575/","id":418575,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2003-09/4000-418575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448645/","id":448645,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-5/4000-448645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280912/","id":280912,"name":"Nuova Serie n.35","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-159-nuova-serie-n35/4000-280912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448644/","id":448644,"name":"","site_detail_url":"https://comicvine.gamespot.com/new-x-men-4/4000-448644/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451630/","id":451630,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-117/4000-451630/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418579/","id":418579,"name":"","site_detail_url":"https://comicvine.gamespot.com/ryhma-x-2003-07/4000-418579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299958/","id":299958,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-19/4000-299958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114456/","id":114456,"name":"Whodunit?","site_detail_url":"https://comicvine.gamespot.com/new-x-men-141-whodunit/4000-114456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300306/","id":300306,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-30/4000-300306/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299957/","id":299957,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-18/4000-299957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114336/","id":114336,"name":"Murder at the Mansion","site_detail_url":"https://comicvine.gamespot.com/new-x-men-140-murder-at-the-mansion/4000-114336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114335/","id":114335,"name":"Shattered","site_detail_url":"https://comicvine.gamespot.com/new-x-men-139-shattered/4000-114335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300305/","id":300305,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-29/4000-300305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299956/","id":299956,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-17/4000-299956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186487/","id":186487,"name":"Riot at Xavier's","site_detail_url":"https://comicvine.gamespot.com/new-x-men-riot-at-xaviers-1-riot-at-xaviers/4000-186487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114334/","id":114334,"name":"The Prime of Miss Emma Frost","site_detail_url":"https://comicvine.gamespot.com/new-x-men-138-the-prime-of-miss-emma-frost/4000-114334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300304/","id":300304,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-28/4000-300304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317039/","id":317039,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-85/4000-317039/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299955/","id":299955,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-16/4000-299955/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114333/","id":114333,"name":"Riot at Xavier's","site_detail_url":"https://comicvine.gamespot.com/new-x-men-137-riot-at-xaviers/4000-114333/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110572/","id":110572,"name":"X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide-1-x-men-the/4000-110572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107656/","id":107656,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia-2-x-men/4000-107656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300303/","id":300303,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-27/4000-300303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317038/","id":317038,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-84/4000-317038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300128/","id":300128,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-74/4000-300128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299954/","id":299954,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-15/4000-299954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114332/","id":114332,"name":"When X is not X","site_detail_url":"https://comicvine.gamespot.com/new-x-men-136-when-x-is-not-x/4000-114332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300302/","id":300302,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-26/4000-300302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317037/","id":317037,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-83/4000-317037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300127/","id":300127,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-73/4000-300127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299953/","id":299953,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-14/4000-299953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112536/","id":112536,"name":"Teaching Children About Fractals","site_detail_url":"https://comicvine.gamespot.com/new-x-men-135-teaching-children-about-fractals/4000-112536/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411372/","id":411372,"name":"Wie het laatsts lacht... / De Hel Breekt Los","site_detail_url":"https://comicvine.gamespot.com/x-mannen-246-wie-het-laatsts-lacht-de-hel-breekt-l/4000-411372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317036/","id":317036,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-82/4000-317036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300126/","id":300126,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-72/4000-300126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280893/","id":280893,"name":"Nuova Serie n.27","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-151-nuova-serie-n27/4000-280893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106499/","id":106499,"name":"Kid Ω","site_detail_url":"https://comicvine.gamespot.com/new-x-men-134-kid/4000-106499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411371/","id":411371,"name":"Ballroom Blitzkrieg / Verliezers","site_detail_url":"https://comicvine.gamespot.com/x-mannen-245-ballroom-blitzkrieg-verliezers/4000-411371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-317035/","id":317035,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-81/4000-317035/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280881/","id":280881,"name":"Nuova Serie n.26","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-150-nuova-serie-n26/4000-280881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411370/","id":411370,"name":"Voetvolk / Supervernietiger","site_detail_url":"https://comicvine.gamespot.com/x-mannen-244-voetvolk-supervernietiger/4000-411370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300124/","id":300124,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-70/4000-300124/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280880/","id":280880,"name":"Nuova Serie n.25","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-149-nuova-serie-n25/4000-280880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411369/","id":411369,"name":"Het Smeulende Vuur / Testament","site_detail_url":"https://comicvine.gamespot.com/x-mannen-243-het-smeulende-vuur-testament/4000-411369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300298/","id":300298,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-22/4000-300298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316996/","id":316996,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-79/4000-316996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-300123/","id":300123,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-69/4000-300123/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280869/","id":280869,"name":"Nuova Serie n.24","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-148-nuova-serie-n24/4000-280869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411368/","id":411368,"name":"Heulen met de Vijand? / Keizerlijk","site_detail_url":"https://comicvine.gamespot.com/x-mannen-242-heulen-met-de-vijand-keizerlijk/4000-411368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316995/","id":316995,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-78/4000-316995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411367/","id":411367,"name":"Het derde ras, Deel 3","site_detail_url":"https://comicvine.gamespot.com/x-mannen-241-het-derde-ras-deel-3/4000-411367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316994/","id":316994,"name":"","site_detail_url":"https://comicvine.gamespot.com/x-men-77/4000-316994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-280841/","id":280841,"name":"Nuova Serie n.22","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men-146-nuova-serie-n22/4000-280841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186484/","id":186484,"name":"Imperial","site_detail_url":"https://comicvine.gamespot.com/new-x-men-imperial-1-imperial/4000-186484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78330/","id":78330,"name":"All Hell","site_detail_url":"https://comicvine.gamespot.com/new-x-men-126-all-hell/4000-78330/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411365/","id":411365,"name":"Het derde ras, Deel 2","site_detail_url":"https://comicvine.gamespot.com/x-mannen-239-het-derde-ras-deel-2/4000-411365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78329/","id":78329,"name":"Losers","site_detail_url":"https://comicvine.gamespot.com/new-x-men-125-losers/4000-78329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411364/","id":411364,"name":"Poptopia, Deel 4 / Het derde ras, Deel 1","site_detail_url":"https://comicvine.gamespot.com/x-mannen-238-poptopia-deel-4-het-derde-ras-deel-1/4000-411364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78328/","id":78328,"name":"Superdestroyer","site_detail_url":"https://comicvine.gamespot.com/new-x-men-124-superdestroyer/4000-78328/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78327/","id":78327,"name":"Testament","site_detail_url":"https://comicvine.gamespot.com/new-x-men-123-testament/4000-78327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78326/","id":78326,"name":"Imperial","site_detail_url":"https://comicvine.gamespot.com/new-x-men-122-imperial/4000-78326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78324/","id":78324,"name":"Germ Free Generation - part 3","site_detail_url":"https://comicvine.gamespot.com/new-x-men-120-germ-free-generation-part-3/4000-78324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78323/","id":78323,"name":"Germ Free Generation Part Two","site_detail_url":"https://comicvine.gamespot.com/new-x-men-119-germ-free-generation-part-two/4000-78323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78322/","id":78322,"name":"Germ Free Generation Part One","site_detail_url":"https://comicvine.gamespot.com/new-x-men-118-germ-free-generation-part-one/4000-78322/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-916285/","id":916285,"name":null,"site_detail_url":"https://comicvine.gamespot.com/x-force-25/4000-916285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704557/","id":704557,"name":"Irreconheciveis","site_detail_url":"https://comicvine.gamespot.com/x-men-16-irreconheciveis/4000-704557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704078/","id":704078,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-3/4000-704078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704077/","id":704077,"name":null,"site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men-2/4000-704077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598544/","id":598544,"name":"","site_detail_url":"https://comicvine.gamespot.com/muerte-de-x-4/4000-598544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-598543/","id":598543,"name":"","site_detail_url":"https://comicvine.gamespot.com/muerte-de-x-3/4000-598543/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-499649/","id":499649,"name":"Un de moins","site_detail_url":"https://comicvine.gamespot.com/x-men-19-un-de-moins/4000-499649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476420/","id":476420,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-7/4000-476420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476419/","id":476419,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-6/4000-476419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476418/","id":476418,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-5/4000-476418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476417/","id":476417,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-4/4000-476417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476415/","id":476415,"name":"","site_detail_url":"https://comicvine.gamespot.com/essential-x-men-2/4000-476415/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453965/","id":453965,"name":"La fin - Héros et martyrs","site_detail_url":"https://comicvine.gamespot.com/100-marvel-2-la-fin-heros-et-martyrs/4000-453965/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451662/","id":451662,"name":"","site_detail_url":"https://comicvine.gamespot.com/projekt-x-x-men-149/4000-451662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450805/","id":450805,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files-13/4000-450805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445739/","id":445739,"name":"Utopia Dark X-Men: La Confesión","site_detail_url":"https://comicvine.gamespot.com/utopia-3-utopia-dark-x-men-la-confesion/4000-445739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444371/","id":444371,"name":"Utopia : capìtulo uno","site_detail_url":"https://comicvine.gamespot.com/utopia-1-utopia-capitulo-uno/4000-444371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444213/","id":444213,"name":"X-Tinción Mutante Vol. 2, Messiah Complex, Libro 1","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-11-x-tincion-mutante-vol-2-messi/4000-444213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-444210/","id":444210,"name":"Wolverine Enemigo Del Estado","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel-8-wolverine-enemigo-del-estado/4000-444210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431549/","id":431549,"name":"X-Force : non ti lascio indietro","site_detail_url":"https://comicvine.gamespot.com/100-marvel-bestorce-x-force-3-x-force-non-ti-lasci/4000-431549/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-25/","id":25,"name":"X-Men Origins: Wolverine","site_detail_url":"https://comicvine.gamespot.com/x-men-origins-wolverine/4025-25/"}],"name":"Stepford Cuckoos","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/stepford-cuckoos/4060-4443/","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9121/","id":9121,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-x-men/4050-9121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10731/","id":10731,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-10731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10746/","id":10746,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-10746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-10809/","id":10809,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-10809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11353/","id":11353,"name":"X-Men: Phoenix - Endsong","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong/4050-11353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3092/","id":3092,"name":"The Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/the-uncanny-x-men/4050-3092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18078/","id":18078,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-x-men/4050-18078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9411/","id":9411,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men/4050-9411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18136/","id":18136,"name":"X-Men: The 198 Files","site_detail_url":"https://comicvine.gamespot.com/x-men-the-198-files/4050-18136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18147/","id":18147,"name":"New X-Men: Academy X Yearbook","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-yearbook/4050-18147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65742/","id":65742,"name":"Official Handbook of the Marvel Universe: X-Men 2005","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-x-men-200/4050-65742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18332/","id":18332,"name":"Civil War: Battle Damage Report","site_detail_url":"https://comicvine.gamespot.com/civil-war-battle-damage-report/4050-18332/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18366/","id":18366,"name":"Marvel Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/marvel-encyclopedia/4050-18366/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18382/","id":18382,"name":"X-Men: Phoenix Warsong","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong/4050-18382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18703/","id":18703,"name":"Ultimate X-Men/X-Men: The Ultimate Guide","site_detail_url":"https://comicvine.gamespot.com/ultimate-x-menx-men-the-ultimate-guide/4050-18703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18843/","id":18843,"name":"X-Men: The End: Book 1: Dreamers & Demons","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons/4050-18843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18786/","id":18786,"name":"World War Hulk: X-Men","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men/4050-18786/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19047/","id":19047,"name":"X-Men: The End: Book 2: Heroes & Martyrs","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-2-heroes-martyrs/4050-19047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19053/","id":19053,"name":"X-Men: The End: Book 3: Men & X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men/4050-19053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20248/","id":20248,"name":"Exiles: Days Of Then And Now","site_detail_url":"https://comicvine.gamespot.com/exiles-days-of-then-and-now/4050-20248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18109/","id":18109,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-18109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20347/","id":20347,"name":"New Exiles","site_detail_url":"https://comicvine.gamespot.com/new-exiles/4050-20347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21230/","id":21230,"name":"Wolverine: Enemy Of The State - The Complete Edition","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state-the-complete-edition/4050-21230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21977/","id":21977,"name":"Civil War Companion","site_detail_url":"https://comicvine.gamespot.com/civil-war-companion/4050-21977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22562/","id":22562,"name":"Secret Invasion: X-Men","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men/4050-22562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22872/","id":22872,"name":"X-Men: Return of Magik","site_detail_url":"https://comicvine.gamespot.com/x-men-return-of-magik/4050-22872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33895/","id":33895,"name":"X-Men: The Characters And Their Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-the-characters-and-their-universe/4050-33895/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20511/","id":20511,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-20511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22981/","id":22981,"name":"Official Handbook of the Marvel Universe A to Z","site_detail_url":"https://comicvine.gamespot.com/official-handbook-of-the-marvel-universe-a-to-z/4050-22981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22775/","id":22775,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-22775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26888/","id":26888,"name":"Dark Avengers/Uncanny X-Men: Utopia","site_detail_url":"https://comicvine.gamespot.com/dark-avengersuncanny-x-men-utopia/4050-26888/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20691/","id":20691,"name":"X-Men: Legacy","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy/4050-20691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25512/","id":25512,"name":"Dark Avengers","site_detail_url":"https://comicvine.gamespot.com/dark-avengers/4050-25512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27952/","id":27952,"name":"X-Men: Legacy Annual","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-annual/4050-27952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28067/","id":28067,"name":"Hulk Team-Up","site_detail_url":"https://comicvine.gamespot.com/hulk-team-up/4050-28067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28084/","id":28084,"name":"Dark Reign: The List - X-Men","site_detail_url":"https://comicvine.gamespot.com/dark-reign-the-list-x-men/4050-28084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28085/","id":28085,"name":"Dark X-Men: The Confession","site_detail_url":"https://comicvine.gamespot.com/dark-x-men-the-confession/4050-28085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28414/","id":28414,"name":"X-Men vs. Agents of Atlas","site_detail_url":"https://comicvine.gamespot.com/x-men-vs-agents-of-atlas/4050-28414/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28584/","id":28584,"name":"Uncanny X-Men: Lovelorn","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-lovelorn/4050-28584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28975/","id":28975,"name":"Astonishing X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-omnibus/4050-28975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29747/","id":29747,"name":"X-Men: Messiah CompleX","site_detail_url":"https://comicvine.gamespot.com/x-men-messiah-complex/4050-29747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28516/","id":28516,"name":"Marvel Previews","site_detail_url":"https://comicvine.gamespot.com/marvel-previews/4050-28516/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30086/","id":30086,"name":"Secret Invasion: X-Men","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-x-men/4050-30086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30091/","id":30091,"name":"Uncanny X-Men: Sisterhood","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-sisterhood/4050-30091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30098/","id":30098,"name":"X-Men: Bizarre Love Triangle","site_detail_url":"https://comicvine.gamespot.com/x-men-bizarre-love-triangle/4050-30098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30122/","id":30122,"name":"New X-Men Omnibus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-omnibus/4050-30122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30200/","id":30200,"name":"Avengers/X-Men: Utopia","site_detail_url":"https://comicvine.gamespot.com/avengersx-men-utopia/4050-30200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30208/","id":30208,"name":"Astonishing X-Men: Gifted","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-gifted/4050-30208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30209/","id":30209,"name":"Astonishing X-Men: Dangerous","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-dangerous/4050-30209/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30217/","id":30217,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-30217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30219/","id":30219,"name":"New X-Men Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/new-x-men-ultimate-collection/4050-30219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30230/","id":30230,"name":"Wolverine: Enemy Of The State","site_detail_url":"https://comicvine.gamespot.com/wolverine-enemy-of-the-state/4050-30230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30233/","id":30233,"name":"X-Men: Phoenix - Endsong","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsong/4050-30233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30234/","id":30234,"name":"X-Men: Phoenix - Warsong","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-warsong/4050-30234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30235/","id":30235,"name":"X-Infernus","site_detail_url":"https://comicvine.gamespot.com/x-infernus/4050-30235/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30241/","id":30241,"name":"Uncanny X-Men: Bright New Mourning","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-bright-new-mourning/4050-30241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30250/","id":30250,"name":"New X-Men: Imperial","site_detail_url":"https://comicvine.gamespot.com/new-x-men-imperial/4050-30250/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30252/","id":30252,"name":"New X-Men: Riot at Xavier's","site_detail_url":"https://comicvine.gamespot.com/new-x-men-riot-at-xaviers/4050-30252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30253/","id":30253,"name":"New X-Men: Assault On Weapon Plus","site_detail_url":"https://comicvine.gamespot.com/new-x-men-assault-on-weapon-plus/4050-30253/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30256/","id":30256,"name":"New X-Men: Planet X","site_detail_url":"https://comicvine.gamespot.com/new-x-men-planet-x/4050-30256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30258/","id":30258,"name":"New X-Men: Here Comes Tomorrow","site_detail_url":"https://comicvine.gamespot.com/new-x-men-here-comes-tomorrow/4050-30258/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30262/","id":30262,"name":"New X-Men: Academy X: Choosing Sides","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-choosing-sides/4050-30262/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30264/","id":30264,"name":"New X-Men: Academy X: X-Posed","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-x-posed/4050-30264/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30265/","id":30265,"name":"New X-Men: Academy X: House Of M","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academy-x-house-of-m/4050-30265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30266/","id":30266,"name":"New X-Men: Childhood's End","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end/4050-30266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30268/","id":30268,"name":"New X-Men: Childhood's End: Crusade","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-crusade/4050-30268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30269/","id":30269,"name":"New X-Men: Childhood's End: Nimrod","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-nimrod/4050-30269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30271/","id":30271,"name":"New X-Men: Childhood's End: The Quest For Magik","site_detail_url":"https://comicvine.gamespot.com/new-x-men-childhoods-end-the-quest-for-magik/4050-30271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30297/","id":30297,"name":"Hulk: WWH - X-Men","site_detail_url":"https://comicvine.gamespot.com/hulk-wwh-x-men/4050-30297/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30313/","id":30313,"name":"Nation X","site_detail_url":"https://comicvine.gamespot.com/nation-x/4050-30313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30691/","id":30691,"name":"What If? Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/what-if-astonishing-x-men/4050-30691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30727/","id":30727,"name":"Runaways: Rock Zombies","site_detail_url":"https://comicvine.gamespot.com/runaways-rock-zombies/4050-30727/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30746/","id":30746,"name":"X-Men: The End: Book 1: Dreamers & Demons","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-1-dreamers-demons/4050-30746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30747/","id":30747,"name":"X-Men: The End: Book 2: Heroes & Martyrs","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-2-heroes-martyrs/4050-30747/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30748/","id":30748,"name":"X-Men: The End: Book 3: Men & X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-book-3-men-x-men/4050-30748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30749/","id":30749,"name":"X-Men: The End Trilogy","site_detail_url":"https://comicvine.gamespot.com/x-men-the-end-trilogy/4050-30749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30813/","id":30813,"name":"X-Force: Not Forgotten","site_detail_url":"https://comicvine.gamespot.com/x-force-not-forgotten/4050-30813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30977/","id":30977,"name":"List","site_detail_url":"https://comicvine.gamespot.com/list/4050-30977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31611/","id":31611,"name":"X-Men: Legacy: Emplate","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-emplate/4050-31611/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31696/","id":31696,"name":"Decimation: X-Men - The 198","site_detail_url":"https://comicvine.gamespot.com/decimation-x-men-the-198/4050-31696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32271/","id":32271,"name":"X-Men: Second Coming","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming/4050-32271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32416/","id":32416,"name":"X-Force: Old Ghosts","site_detail_url":"https://comicvine.gamespot.com/x-force-old-ghosts/4050-32416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33207/","id":33207,"name":"X-Men: Nation X","site_detail_url":"https://comicvine.gamespot.com/x-men-nation-x/4050-33207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33387/","id":33387,"name":"What If? Secret Invasion","site_detail_url":"https://comicvine.gamespot.com/what-if-secret-invasion/4050-33387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33685/","id":33685,"name":"X-Force Oversized Edition","site_detail_url":"https://comicvine.gamespot.com/x-force-oversized-edition/4050-33685/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33689/","id":33689,"name":"House of M: No More Mutants","site_detail_url":"https://comicvine.gamespot.com/house-of-m-no-more-mutants/4050-33689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33859/","id":33859,"name":"Wolverine: Inside The World Of The Living Weapon","site_detail_url":"https://comicvine.gamespot.com/wolverine-inside-the-world-of-the-living-weapon/4050-33859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34001/","id":34001,"name":"X-Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-necrosha/4050-34001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34127/","id":34127,"name":"X-Treme X-Men: Intifada","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men-intifada/4050-34127/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34407/","id":34407,"name":"Agents of Atlas: Vs.","site_detail_url":"https://comicvine.gamespot.com/agents-of-atlas-vs/4050-34407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35716/","id":35716,"name":"X-Men: Second Coming","site_detail_url":"https://comicvine.gamespot.com/x-men-second-coming/4050-35716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36385/","id":36385,"name":"Exiles: Starting Over","site_detail_url":"https://comicvine.gamespot.com/exiles-starting-over/4050-36385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36789/","id":36789,"name":"Civil War: X-Men","site_detail_url":"https://comicvine.gamespot.com/civil-war-x-men/4050-36789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36821/","id":36821,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-36821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36794/","id":36794,"name":"Wolverine and Deadpool","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-deadpool/4050-36794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37956/","id":37956,"name":"Chaos War: X-Men","site_detail_url":"https://comicvine.gamespot.com/chaos-war-x-men/4050-37956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36470/","id":36470,"name":"X-Men: To Serve and Protect","site_detail_url":"https://comicvine.gamespot.com/x-men-to-serve-and-protect/4050-36470/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37973/","id":37973,"name":"Heroic Age: X-Men","site_detail_url":"https://comicvine.gamespot.com/heroic-age-x-men/4050-37973/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37974/","id":37974,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-37974/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26327/","id":26327,"name":"New Mutants","site_detail_url":"https://comicvine.gamespot.com/new-mutants/4050-26327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40111/","id":40111,"name":"Origins of Marvel Comics","site_detail_url":"https://comicvine.gamespot.com/origins-of-marvel-comics/4050-40111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40207/","id":40207,"name":"X-Men Giant-Size","site_detail_url":"https://comicvine.gamespot.com/x-men-giant-size/4050-40207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40359/","id":40359,"name":"Chaos War: X-Men","site_detail_url":"https://comicvine.gamespot.com/chaos-war-x-men/4050-40359/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34221/","id":34221,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-34221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40425/","id":40425,"name":"X-Men: To Serve and Protect","site_detail_url":"https://comicvine.gamespot.com/x-men-to-serve-and-protect/4050-40425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40240/","id":40240,"name":"New X-Men By Grant Morrison","site_detail_url":"https://comicvine.gamespot.com/new-x-men-by-grant-morrison/4050-40240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128093/","id":128093,"name":"New X-Men: Academia-X","site_detail_url":"https://comicvine.gamespot.com/new-x-men-academia-x/4050-128093/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40793/","id":40793,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-x-men/4050-40793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40828/","id":40828,"name":"X-Men Deluxe","site_detail_url":"https://comicvine.gamespot.com/x-men-deluxe/4050-40828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41460/","id":41460,"name":"Gli Incredibili X-Men","site_detail_url":"https://comicvine.gamespot.com/gli-incredibili-x-men/4050-41460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41281/","id":41281,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism/4050-41281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41703/","id":41703,"name":"100% Marvel: X-Men: La Canción de Guerra de Fénix","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-la-cancion-de-guerra-de-fenix/4050-41703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41777/","id":41777,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41780/","id":41780,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41780/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41938/","id":41938,"name":"Best of Marvel Essentials: Nuevos X-Men","site_detail_url":"https://comicvine.gamespot.com/best-of-marvel-essentials-nuevos-x-men/4050-41938/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42434/","id":42434,"name":"Invasión Secreta: X-Men","site_detail_url":"https://comicvine.gamespot.com/invasion-secreta-x-men/4050-42434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42524/","id":42524,"name":"Lobezno","site_detail_url":"https://comicvine.gamespot.com/lobezno/4050-42524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42616/","id":42616,"name":"Los Exiliados","site_detail_url":"https://comicvine.gamespot.com/los-exiliados/4050-42616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42666/","id":42666,"name":"Marvel Deluxe: Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-x-men/4050-42666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42684/","id":42684,"name":"Marvel Exklusiv","site_detail_url":"https://comicvine.gamespot.com/marvel-exklusiv/4050-42684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42742/","id":42742,"name":"Marvel Monster Edition","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition/4050-42742/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42777/","id":42777,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-x-men/4050-42777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42852/","id":42852,"name":"Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/patrulla-x/4050-42852/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43032/","id":43032,"name":"X-Men: First to Last","site_detail_url":"https://comicvine.gamespot.com/x-men-first-to-last/4050-43032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43223/","id":43223,"name":"X-Men: Regenesis","site_detail_url":"https://comicvine.gamespot.com/x-men-regenesis/4050-43223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43254/","id":43254,"name":"X-Men Legacy: Lost Legions","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-lost-legions/4050-43254/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43493/","id":43493,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-43493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43532/","id":43532,"name":"X-Factor","site_detail_url":"https://comicvine.gamespot.com/x-factor/4050-43532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43534/","id":43534,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-43534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43557/","id":43557,"name":"X-Men: El Fin - Libro Dos: Héroes y Mártires","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-dos-heroes-y-martires/4050-43557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43558/","id":43558,"name":"X-Men: El Fin - Libro Tres: Hombres y Hombres-X","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-tres-hombres-y-hombres-x/4050-43558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43559/","id":43559,"name":"X-Men: El Fin - Libro Uno: Soñadores y Demonios","site_detail_url":"https://comicvine.gamespot.com/x-men-el-fin-libro-uno-sonadores-y-demonios/4050-43559/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43565/","id":43565,"name":"X-Men: La Canción Final De Fénix","site_detail_url":"https://comicvine.gamespot.com/x-men-la-cancion-final-de-fenix/4050-43565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43579/","id":43579,"name":"X-Men Sonderband: New Mutants","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-new-mutants/4050-43579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43580/","id":43580,"name":"X-Men Sonderband: X-Force","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-force/4050-43580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43634/","id":43634,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43640/","id":43640,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43672/","id":43672,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43672/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43673/","id":43673,"name":"X-Men Legado","site_detail_url":"https://comicvine.gamespot.com/x-men-legado/4050-43673/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43676/","id":43676,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-43676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43677/","id":43677,"name":"X-Men Sonderheft","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderheft/4050-43677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43785/","id":43785,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men/4050-43785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36469/","id":36469,"name":"Generation Hope","site_detail_url":"https://comicvine.gamespot.com/generation-hope/4050-36469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44853/","id":44853,"name":"X-Men: Schism","site_detail_url":"https://comicvine.gamespot.com/x-men-schism/4050-44853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43891/","id":43891,"name":"Magneto: Not A Hero","site_detail_url":"https://comicvine.gamespot.com/magneto-not-a-hero/4050-43891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45380/","id":45380,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/x-treme-x-men/4050-45380/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41783/","id":41783,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men/4050-41783/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43575/","id":43575,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-43575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45912/","id":45912,"name":"Astonishing X-Men by Whedon and Cassaday Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-whedon-and-cassaday-ultimate-/4050-45912/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45919/","id":45919,"name":"X-Force: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-force-necrosha/4050-45919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45796/","id":45796,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-45796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46067/","id":46067,"name":"Fear Itself: Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/fear-itself-uncanny-x-men/4050-46067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46183/","id":46183,"name":"Patrulla-X: Cisma","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-cisma/4050-46183/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46289/","id":46289,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-46289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46305/","id":46305,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-46305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46362/","id":46362,"name":"X-Men Sonderband: X-Men Legacy","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-x-men-legacy/4050-46362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46377/","id":46377,"name":"X-Men Sonderband: Age of X","site_detail_url":"https://comicvine.gamespot.com/x-men-sonderband-age-of-x/4050-46377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46378/","id":46378,"name":"Marvel Mega","site_detail_url":"https://comicvine.gamespot.com/marvel-mega/4050-46378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46566/","id":46566,"name":"X-Men Legacy: Necrosha","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-necrosha/4050-46566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47000/","id":47000,"name":"Uncanny X-Men by Kieron Gillen","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen/4050-47000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47001/","id":47001,"name":"X-Men Advenimiento Especial","site_detail_url":"https://comicvine.gamespot.com/x-men-advenimiento-especial/4050-47001/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47100/","id":47100,"name":"La Imposible Patrulla-X: Regénesis","site_detail_url":"https://comicvine.gamespot.com/la-imposible-patrulla-x-regenesis/4050-47100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47272/","id":47272,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-47272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47347/","id":47347,"name":"Imposible Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/imposible-patrulla-x/4050-47347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47859/","id":47859,"name":"Avengers Vs. X-Men: It's Coming","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-its-coming/4050-47859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43061/","id":43061,"name":"Marvel Miniserie","site_detail_url":"https://comicvine.gamespot.com/marvel-miniserie/4050-43061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33633/","id":33633,"name":"Avengers Academy","site_detail_url":"https://comicvine.gamespot.com/avengers-academy/4050-33633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49796/","id":49796,"name":"Magneto: Not A Hero","site_detail_url":"https://comicvine.gamespot.com/magneto-not-a-hero/4050-49796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49799/","id":49799,"name":"Generation Hope: The End of A Generation","site_detail_url":"https://comicvine.gamespot.com/generation-hope-the-end-of-a-generation/4050-49799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49822/","id":49822,"name":"X-Men: Phoenix Endsong/Warsong Ultimate Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-endsongwarsong-ultimate-collection/4050-49822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49986/","id":49986,"name":"Wolverine e gli X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men/4050-49986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50037/","id":50037,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-50037/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50067/","id":50067,"name":"X-Men Universe Hors Série","site_detail_url":"https://comicvine.gamespot.com/x-men-universe-hors-serie/4050-50067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50081/","id":50081,"name":"X-Men Especial: A Era X","site_detail_url":"https://comicvine.gamespot.com/x-men-especial-a-era-x/4050-50081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51480/","id":51480,"name":"VvX: Los Vengadores Vs. La Patrulla-X: Prólogo","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x-prologo/4050-51480/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43539/","id":43539,"name":"Wolverine & the X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-x-men/4050-43539/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47331/","id":47331,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men/4050-47331/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53793/","id":53793,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men/4050-53793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47348/","id":47348,"name":"Lobezno y La Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/lobezno-y-la-patrulla-x/4050-47348/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54701/","id":54701,"name":"Marvel Universe","site_detail_url":"https://comicvine.gamespot.com/marvel-universe/4050-54701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55161/","id":55161,"name":"Marvel World","site_detail_url":"https://comicvine.gamespot.com/marvel-world/4050-55161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51479/","id":51479,"name":"Patrulla-X: Generación Hope","site_detail_url":"https://comicvine.gamespot.com/patrulla-x-generacion-hope/4050-51479/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51481/","id":51481,"name":"VvX: Los Vengadores Vs. La Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/vvx-los-vengadores-vs-la-patrulla-x/4050-51481/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53919/","id":53919,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-53919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55356/","id":55356,"name":"Marvel Select : New X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-select-new-x-men/4050-55356/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55357/","id":55357,"name":"Marvel Deluxe : X-Force","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-force/4050-55357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55800/","id":55800,"name":"Marvel Deluxe : X-Men - Le Complexe du Messie","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-x-men-le-complexe-du-messie/4050-55800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55829/","id":55829,"name":"Marvel Select : X-Men la fin","site_detail_url":"https://comicvine.gamespot.com/marvel-select-x-men-la-fin/4050-55829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53922/","id":53922,"name":"X-Men: Legacy","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy/4050-53922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-56751/","id":56751,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-56751/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57074/","id":57074,"name":"Lyudi Iks","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks/4050-57074/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57118/","id":57118,"name":"Lyudi Iks. Feniks: Proschal'naya pesn'","site_detail_url":"https://comicvine.gamespot.com/lyudi-iks-feniks-proschalnaya-pesn/4050-57118/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57674/","id":57674,"name":"Uncanny X-Men: The Complete Collection By Matt Fraction","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-complete-collection-by-matt-frac/4050-57674/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-50046/","id":50046,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-50046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58059/","id":58059,"name":"Astonishing X-Men: Northstar","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-northstar/4050-58059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53475/","id":53475,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men/4050-53475/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51719/","id":51719,"name":"Wolverine & die X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men/4050-51719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58732/","id":58732,"name":"X-Men: Phoenix","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix/4050-58732/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58733/","id":58733,"name":"X-Men Paperbacks","site_detail_url":"https://comicvine.gamespot.com/x-men-paperbacks/4050-58733/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53934/","id":53934,"name":"Avengers Vs X-Men: Avengers Academy","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-avengers-academy/4050-53934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55951/","id":55951,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men/4050-55951/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59406/","id":59406,"name":"Avengers Vs X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men/4050-59406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57181/","id":57181,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men/4050-57181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60067/","id":60067,"name":"Avengers Vs X-Men: X-Men Legacy","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-x-men-legacy/4050-60067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60078/","id":60078,"name":"X-Men: Legacy - Prodigal","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-prodigal/4050-60078/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60385/","id":60385,"name":"Astonishing X-Men Paperbacks","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-paperbacks/4050-60385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60838/","id":60838,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrulla-x/4050-60838/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60970/","id":60970,"name":"Avengers Vs X-Men Companion","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-x-men-companion/4050-60970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49053/","id":49053,"name":"Wolverine and the X-Men by Jason Aaron","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-by-jason-aaron/4050-49053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62457/","id":62457,"name":"All-New X-Men: Here To Stay","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men-here-to-stay/4050-62457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-59391/","id":59391,"name":"Marvel Fact Files","site_detail_url":"https://comicvine.gamespot.com/marvel-fact-files/4050-59391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58174/","id":58174,"name":"La Nueva Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/la-nueva-patrulla-x/4050-58174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34889/","id":34889,"name":"X-Mannen","site_detail_url":"https://comicvine.gamespot.com/x-mannen/4050-34889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64776/","id":64776,"name":"Uncanny X-Men: Revolution","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-revolution/4050-64776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-64778/","id":64778,"name":"Wolverine By Mark Millar Omnibus","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-mark-millar-omnibus/4050-64778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65316/","id":65316,"name":"Ryhmä-X","site_detail_url":"https://comicvine.gamespot.com/ryhma-x/4050-65316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65022/","id":65022,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-65022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66048/","id":66048,"name":"X-Men: Age of X","site_detail_url":"https://comicvine.gamespot.com/x-men-age-of-x/4050-66048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61734/","id":61734,"name":"100% Marvel best: X-Force","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best-x-force/4050-61734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-63785/","id":63785,"name":"I nuovissimi X-Men","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-x-men/4050-63785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66836/","id":66836,"name":"X-Men Legacy: Invasive Exotics","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy-invasive-exotics/4050-66836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67028/","id":67028,"name":"X-Men: Battle of the Atom","site_detail_url":"https://comicvine.gamespot.com/x-men-battle-of-the-atom/4050-67028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62383/","id":62383,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-62383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-67501/","id":67501,"name":"All-New X-Men: Out of Their Depths","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-out-of-their-depths/4050-67501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58659/","id":58659,"name":"Vingadores vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/vingadores-vs-x-men/4050-58659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65646/","id":65646,"name":"Die Neuen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men/4050-65646/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65024/","id":65024,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-65024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68166/","id":68166,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax/4050-68166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68578/","id":68578,"name":"Marvel Absolute : Avengers VS X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-absolute-avengers-vs-xmen/4050-68578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68975/","id":68975,"name":"Uncanny X-Men: Broken","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-broken/4050-68975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69234/","id":69234,"name":"X-Men Legacy: Revenants","site_detail_url":"https://comicvine.gamespot.com/xmen-legacy-revenants/4050-69234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69307/","id":69307,"name":"X-Men - O Fim - Livro 1: Sonhadores & Demônios","site_detail_url":"https://comicvine.gamespot.com/xmen-o-fim-livro-1-sonhadores-demonios/4050-69307/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69308/","id":69308,"name":"X-Men - O Fim - Livro 2: Heróis & Mártires","site_detail_url":"https://comicvine.gamespot.com/xmen-o-fim-livro-2-herois-martires/4050-69308/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69309/","id":69309,"name":"X-Men - O Fim - Livro 3: Homens & Mutantes","site_detail_url":"https://comicvine.gamespot.com/xmen-o-fim-livro-3-homens-mutantes/4050-69309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69310/","id":69310,"name":"Novos X-Men : e de Extinção","site_detail_url":"https://comicvine.gamespot.com/novos-xmen-e-de-extincao/4050-69310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69311/","id":69311,"name":"Novos X-Men: Imperial","site_detail_url":"https://comicvine.gamespot.com/novos-xmen-imperial/4050-69311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69313/","id":69313,"name":"Novos X-Men: Rebelião No Instituto Xavier","site_detail_url":"https://comicvine.gamespot.com/novos-xmen-rebeliao-no-instituto-xavier/4050-69313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69314/","id":69314,"name":"Novos X-Men: Planeta X","site_detail_url":"https://comicvine.gamespot.com/novos-xmen-planeta-x/4050-69314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69315/","id":69315,"name":"Novos X-Men: Ecos do Amanhã","site_detail_url":"https://comicvine.gamespot.com/novos-xmen-ecos-do-amanha/4050-69315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69316/","id":69316,"name":"Enciclopedia Marvel: X-Men","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel-xmen/4050-69316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69317/","id":69317,"name":"ENCYCLOPÉDIE X-MEN","site_detail_url":"https://comicvine.gamespot.com/encyclopedie-xmen/4050-69317/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69318/","id":69318,"name":"Enciclopedia Marvel","site_detail_url":"https://comicvine.gamespot.com/enciclopedia-marvel/4050-69318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69319/","id":69319,"name":"X-MEN ENZYKLOPÄDIE","site_detail_url":"https://comicvine.gamespot.com/xmen-enzyklopadie/4050-69319/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69323/","id":69323,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-69323/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69324/","id":69324,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-xmen/4050-69324/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69327/","id":69327,"name":"X-Men. I personaggi e il loro universo","site_detail_url":"https://comicvine.gamespot.com/xmen-i-personaggi-e-il-loro-universo/4050-69327/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45239/","id":45239,"name":"Supereroi Le Grandi Saghe","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-grandi-saghe/4050-45239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69433/","id":69433,"name":"100% Marvel Best","site_detail_url":"https://comicvine.gamespot.com/100-marvel-best/4050-69433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34856/","id":34856,"name":"The Mighty World of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-mighty-world-of-marvel/4050-34856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69600/","id":69600,"name":"MARVEL DELUXE : AVENGERS VS X-MEN","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-avengers-vs-xmen/4050-69600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51341/","id":51341,"name":"Marvel Previews","site_detail_url":"https://comicvine.gamespot.com/marvel-previews/4050-51341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69642/","id":69642,"name":"Supreendentes X-Men","site_detail_url":"https://comicvine.gamespot.com/supreendentes-xmen/4050-69642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53535/","id":53535,"name":"A+X","site_detail_url":"https://comicvine.gamespot.com/ax/4050-53535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69971/","id":69971,"name":"Marvel Deluxe","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe/4050-69971/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69993/","id":69993,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70014/","id":70014,"name":"Supereroi - Il Mito","site_detail_url":"https://comicvine.gamespot.com/supereroi-il-mito/4050-70014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65645/","id":65645,"name":"Wolverine & Die X-Men Sonderband","site_detail_url":"https://comicvine.gamespot.com/wolverine-die-x-men-sonderband/4050-65645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70827/","id":70827,"name":"X-Men: Battle of the Atom","site_detail_url":"https://comicvine.gamespot.com/xmen-battle-of-the-atom/4050-70827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69176/","id":69176,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-69176/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71243/","id":71243,"name":"Supereroi Le Leggende Marvel","site_detail_url":"https://comicvine.gamespot.com/supereroi-le-leggende-marvel/4050-71243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71364/","id":71364,"name":"Biblioteca Marvel","site_detail_url":"https://comicvine.gamespot.com/biblioteca-marvel/4050-71364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71409/","id":71409,"name":"Utopia","site_detail_url":"https://comicvine.gamespot.com/utopia/4050-71409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71502/","id":71502,"name":"Marvel Omnibus: Avengers vs X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus-avengers-vs-xmen/4050-71502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71521/","id":71521,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71529/","id":71529,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71565/","id":71565,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-71565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69175/","id":69175,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-69175/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71586/","id":71586,"name":"X-Men : segunda venida","site_detail_url":"https://comicvine.gamespot.com/xmen-segunda-venida/4050-71586/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71893/","id":71893,"name":"Marvel Monster Edition","site_detail_url":"https://comicvine.gamespot.com/marvel-monster-edition/4050-71893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71894/","id":71894,"name":"Secret Invasion: X-Men","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-xmen/4050-71894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71915/","id":71915,"name":"World War Hulk X-Men","site_detail_url":"https://comicvine.gamespot.com/world-war-hulk-x-men/4050-71915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71921/","id":71921,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-71921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72000/","id":72000,"name":"X-Force by Craig Kyle & Chris Yost","site_detail_url":"https://comicvine.gamespot.com/xforce-by-craig-kyle-chris-yost/4050-72000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72002/","id":72002,"name":"Reino Oscuro la lista","site_detail_url":"https://comicvine.gamespot.com/reino-oscuro-la-lista/4050-72002/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45031/","id":45031,"name":"Avengers Assemble","site_detail_url":"https://comicvine.gamespot.com/avengers-assemble/4050-45031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72067/","id":72067,"name":"Magneto","site_detail_url":"https://comicvine.gamespot.com/magneto/4050-72067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42655/","id":42655,"name":"Marvel Apresenta","site_detail_url":"https://comicvine.gamespot.com/marvel-apresenta/4050-42655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72069/","id":72069,"name":"Reinado Sombrio Especial","site_detail_url":"https://comicvine.gamespot.com/reinado-sombrio-especial/4050-72069/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72070/","id":72070,"name":"Vingadores Anual","site_detail_url":"https://comicvine.gamespot.com/vingadores-anual/4050-72070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72161/","id":72161,"name":"Omnibus House Of M","site_detail_url":"https://comicvine.gamespot.com/omnibus-house-of-m/4050-72161/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70689/","id":70689,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/xmen-extra/4050-70689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72224/","id":72224,"name":"X-Men: Phoenix - Endsong","site_detail_url":"https://comicvine.gamespot.com/xmen-phoenix-endsong/4050-72224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72225/","id":72225,"name":"Avengers Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/avengers-vs-xmen/4050-72225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72493/","id":72493,"name":"Marvel Now! Paperbacks","site_detail_url":"https://comicvine.gamespot.com/marvel-now-paperbacks/4050-72493/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72523/","id":72523,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-xmen/4050-72523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72527/","id":72527,"name":"New X-Men","site_detail_url":"https://comicvine.gamespot.com/new-xmen/4050-72527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43059/","id":43059,"name":"Los Hombres X","site_detail_url":"https://comicvine.gamespot.com/los-hombres-x/4050-43059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72561/","id":72561,"name":"Marvel Omnibus","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus/4050-72561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72615/","id":72615,"name":"Marvel Now! All New X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-now-all-new-xmen/4050-72615/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72616/","id":72616,"name":"Marvel Now! Uncanny Avengers","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-avengers/4050-72616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72617/","id":72617,"name":"Marvel Omnibus","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus/4050-72617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72960/","id":72960,"name":"All-New Doop","site_detail_url":"https://comicvine.gamespot.com/allnew-doop/4050-72960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73072/","id":73072,"name":"Marvel Deluxe","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe/4050-73072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73329/","id":73329,"name":"X-Men Legacy: For We Are Many","site_detail_url":"https://comicvine.gamespot.com/xmen-legacy-for-we-are-many/4050-73329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73379/","id":73379,"name":"Projekt X / X-Men","site_detail_url":"https://comicvine.gamespot.com/projekt-x-xmen/4050-73379/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73495/","id":73495,"name":"All-New X-Men: All-Different","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-alldifferent/4050-73495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73655/","id":73655,"name":"Marvel Deluxe. Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax/4050-73655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73768/","id":73768,"name":"Uncanny X-Men: The Good, The Bad, The Inhuman","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-the-good-the-bad-the-inhuman/4050-73768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73769/","id":73769,"name":"X-Men: The Adamantium Collection","site_detail_url":"https://comicvine.gamespot.com/xmen-the-adamantium-collection/4050-73769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73770/","id":73770,"name":"X-Men Vs Hulk","site_detail_url":"https://comicvine.gamespot.com/xmen-vs-hulk/4050-73770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73934/","id":73934,"name":"100% MARVEL: X-MEN LEGACY","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-legacy/4050-73934/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73963/","id":73963,"name":"Coleccionable New X-Men","site_detail_url":"https://comicvine.gamespot.com/coleccionable-new-xmen/4050-73963/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74075/","id":74075,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-74075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72113/","id":72113,"name":"Wolverine & the X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-the-xmen/4050-72113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74201/","id":74201,"name":"A+X: A+X = Outstanding","site_detail_url":"https://comicvine.gamespot.com/a-x-a-x-outstanding/4050-74201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74211/","id":74211,"name":"Marvel Omnibus","site_detail_url":"https://comicvine.gamespot.com/marvel-omnibus/4050-74211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74293/","id":74293,"name":"100% Marvel: X-Men La Fin","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-men-la-fin/4050-74293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74315/","id":74315,"name":"Marvel Deluxe X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-xmen/4050-74315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74316/","id":74316,"name":"Marvel Deluxe Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-astonishing-xmen/4050-74316/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74654/","id":74654,"name":"Inhumanity","site_detail_url":"https://comicvine.gamespot.com/inhumanity/4050-74654/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74730/","id":74730,"name":"Uncanny X-Men Special","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-special/4050-74730/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74778/","id":74778,"name":"All-New Young Guns","site_detail_url":"https://comicvine.gamespot.com/allnew-young-guns/4050-74778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-71484/","id":71484,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-71484/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75716/","id":75716,"name":"100th Anniversary Special: X-Men","site_detail_url":"https://comicvine.gamespot.com/100th-anniversary-special-xmen/4050-75716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-70573/","id":70573,"name":"A+X","site_detail_url":"https://comicvine.gamespot.com/a-x/4050-70573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76085/","id":76085,"name":"Iron Man Special","site_detail_url":"https://comicvine.gamespot.com/iron-man-special/4050-76085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76899/","id":76899,"name":"All-New X-Men: One Down","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-one-down/4050-76899/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77053/","id":77053,"name":"Uncanny X-Men: Vs. S.H.I.E.L.D.","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-vs-shield/4050-77053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77305/","id":77305,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen/4050-77305/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77336/","id":77336,"name":"The New Mutants/X-Force: Demon Bear","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-x-force-demon-bear/4050-77336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77495/","id":77495,"name":"All-New Doop","site_detail_url":"https://comicvine.gamespot.com/allnew-doop/4050-77495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60279/","id":60279,"name":"Grandi eventi Marvel","site_detail_url":"https://comicvine.gamespot.com/grandi-eventi-marvel/4050-60279/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77913/","id":77913,"name":"Uncanny X-Men/Iron Man/Nova: No End In Sight","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmeniron-mannova-no-end-in-sight/4050-77913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77916/","id":77916,"name":"Wolverine and the X-Men: Tomorrow Never Learns","site_detail_url":"https://comicvine.gamespot.com/wolverine-and-the-x-men-tomorrow-never-learns/4050-77916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79024/","id":79024,"name":"All-New X-Men Annual","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-annual/4050-79024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79512/","id":79512,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-xmen/4050-79512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79620/","id":79620,"name":"Original Sin Companion","site_detail_url":"https://comicvine.gamespot.com/original-sin-companion/4050-79620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80797/","id":80797,"name":"All-New X-Men: The Ultimate Adventure","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-the-ultimate-adventure/4050-80797/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80992/","id":80992,"name":"Uncanny X-Men: The Omega Mutant","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-the-omega-mutant/4050-80992/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82833/","id":82833,"name":"E Is For Extinction","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction/4050-82833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83637/","id":83637,"name":"Marvel Previews","site_detail_url":"https://comicvine.gamespot.com/marvel-previews/4050-83637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86409/","id":86409,"name":"Uncanny X-Men: Storyville","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-storyville/4050-86409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-84488/","id":84488,"name":"X-men Hors série","site_detail_url":"https://comicvine.gamespot.com/xmen-hors-serie/4050-84488/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87825/","id":87825,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-87825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88204/","id":88204,"name":"E Is For Extinction: Warzones!","site_detail_url":"https://comicvine.gamespot.com/e-is-for-extinction-warzones/4050-88204/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89958/","id":89958,"name":"X-Men: Age of Apocalypse: Twilight","site_detail_url":"https://comicvine.gamespot.com/xmen-age-of-apocalypse-twilight/4050-89958/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91714/","id":91714,"name":"X-Treme X-Men","site_detail_url":"https://comicvine.gamespot.com/xtreme-xmen/4050-91714/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94620/","id":94620,"name":"Death of X","site_detail_url":"https://comicvine.gamespot.com/death-of-x/4050-94620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-96144/","id":96144,"name":"IvX","site_detail_url":"https://comicvine.gamespot.com/ivx/4050-96144/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87190/","id":87190,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen/4050-87190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86334/","id":86334,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen/4050-86334/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98589/","id":98589,"name":"Muerte de X","site_detail_url":"https://comicvine.gamespot.com/muerte-de-x/4050-98589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98996/","id":98996,"name":"All-New X-Men Hors Série","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-hors-serie/4050-98996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99248/","id":99248,"name":"Deadpool: The Adamantium Collection","site_detail_url":"https://comicvine.gamespot.com/deadpool-the-adamantium-collection/4050-99248/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99249/","id":99249,"name":"Death of X","site_detail_url":"https://comicvine.gamespot.com/death-of-x/4050-99249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100622/","id":100622,"name":"X-Men Legacy: Legion Omnibus","site_detail_url":"https://comicvine.gamespot.com/xmen-legacy-legion-omnibus/4050-100622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101478/","id":101478,"name":"Generation X","site_detail_url":"https://comicvine.gamespot.com/generation-x/4050-101478/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93512/","id":93512,"name":"All-New X-Men","site_detail_url":"https://comicvine.gamespot.com/all-new-x-men/4050-93512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100603/","id":100603,"name":"X-Men: Gold","site_detail_url":"https://comicvine.gamespot.com/x-men-gold/4050-100603/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102597/","id":102597,"name":"Inhumans Vs. X-Men","site_detail_url":"https://comicvine.gamespot.com/inhumans-vs-xmen/4050-102597/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103122/","id":103122,"name":"Uncanny X-Men: Superior: IvX","site_detail_url":"https://comicvine.gamespot.com/uncanny-xmen-superior-ivx/4050-103122/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103595/","id":103595,"name":"All-New X-Men: Inevitable: IvX","site_detail_url":"https://comicvine.gamespot.com/allnew-xmen-inevitable-ivx/4050-103595/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103633/","id":103633,"name":"X-Men: Gold: Back To The Basics","site_detail_url":"https://comicvine.gamespot.com/x-men-gold-back-to-the-basics/4050-103633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103731/","id":103731,"name":"Legión","site_detail_url":"https://comicvine.gamespot.com/legion/4050-103731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104729/","id":104729,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-104729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-94886/","id":94886,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-xmen/4050-94886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105076/","id":105076,"name":"Marvel Deluxe. Patrulla-X - Equipo Extinción","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax-equipo-extincion/4050-105076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105289/","id":105289,"name":"Marvel Deluxe. Patrulla-X: Miedo Encarnado","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax-miedo-encarnado/4050-105289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105291/","id":105291,"name":"Marvel Deluxe. Patrulla-X: Advenimiento","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-patrullax-advenimiento/4050-105291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104686/","id":104686,"name":"Marvel Deluxe. Lobezno y la Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-lobezno-y-la-patrullax/4050-104686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105411/","id":105411,"name":"Marvel Deluxe. VvX: Los Vengadores Vs. La Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/marvel-deluxe-vvx-los-vengadores-vs-la-patrullax/4050-105411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101195/","id":101195,"name":"Jean Grey","site_detail_url":"https://comicvine.gamespot.com/jean-grey/4050-101195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105756/","id":105756,"name":"Generation X: Natural Selection","site_detail_url":"https://comicvine.gamespot.com/generation-x-natural-selection/4050-105756/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107373/","id":107373,"name":"True Believers: Death of Phoenix","site_detail_url":"https://comicvine.gamespot.com/true-believers-death-of-phoenix/4050-107373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101937/","id":101937,"name":"Iceman","site_detail_url":"https://comicvine.gamespot.com/iceman/4050-101937/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108292/","id":108292,"name":"Legion: Son of X: Prodigal","site_detail_url":"https://comicvine.gamespot.com/legion-son-of-x-prodigal/4050-108292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109455/","id":109455,"name":"The New Mutants: Demon Bear","site_detail_url":"https://comicvine.gamespot.com/the-new-mutants-demon-bear/4050-109455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109773/","id":109773,"name":"Jean Grey: Final Fight","site_detail_url":"https://comicvine.gamespot.com/jean-grey-final-fight/4050-109773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110092/","id":110092,"name":"Iceman: Absolute Zero","site_detail_url":"https://comicvine.gamespot.com/iceman-absolute-zero/4050-110092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110121/","id":110121,"name":"X-Men Legacy: Legion: Revenants","site_detail_url":"https://comicvine.gamespot.com/xmen-legacy-legion-revenants/4050-110121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102882/","id":102882,"name":"Astonishing X-Men","site_detail_url":"https://comicvine.gamespot.com/astonishing-xmen/4050-102882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112212/","id":112212,"name":"X-23","site_detail_url":"https://comicvine.gamespot.com/x-23/4050-112212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112564/","id":112564,"name":"Astonishing X-Men by Charles Soule: A Man Called X","site_detail_url":"https://comicvine.gamespot.com/astonishing-x-men-by-charles-soule-a-man-called-x/4050-112564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110868/","id":110868,"name":"Essential X-Men","site_detail_url":"https://comicvine.gamespot.com/essential-x-men/4050-110868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114105/","id":114105,"name":"X-Men: Phoenix In Darkness by Grant Morrison","site_detail_url":"https://comicvine.gamespot.com/x-men-phoenix-in-darkness-by-grant-morrison/4050-114105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-115285/","id":115285,"name":"Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men/4050-115285/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116395/","id":116395,"name":"X-23: Family Album","site_detail_url":"https://comicvine.gamespot.com/x-23-family-album/4050-116395/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-116812/","id":116812,"name":"Age of X-Man Alpha","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-alpha/4050-116812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117190/","id":117190,"name":"Age of X-Man: The Amazing Nightcrawler","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler/4050-117190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117229/","id":117229,"name":"Uncanny X-Men by Kieron Gillen: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-by-kieron-gillen-the-complete-collec/4050-117229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105868/","id":105868,"name":"Increíble Patrulla-X","site_detail_url":"https://comicvine.gamespot.com/increible-patrullax/4050-105868/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117364/","id":117364,"name":"100% Marvel. Generación-X","site_detail_url":"https://comicvine.gamespot.com/100-marvel-generacion-x/4050-117364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117768/","id":117768,"name":"Uncanny X-Men: X-Men Disassembled","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-x-men-disassembled/4050-117768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117785/","id":117785,"name":"Marvel Now! : Uncanny X-Men","site_detail_url":"https://comicvine.gamespot.com/marvel-now-uncanny-x-men/4050-117785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117788/","id":117788,"name":"X-Men Resurrxion","site_detail_url":"https://comicvine.gamespot.com/x-men-resurrxion/4050-117788/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117796/","id":117796,"name":"X-Men Universe","site_detail_url":"https://comicvine.gamespot.com/x-men-universe/4050-117796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117814/","id":117814,"name":"Marvel Legacy : X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/marvel-legacy-x-men-extra/4050-117814/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117815/","id":117815,"name":"X-Men Extra","site_detail_url":"https://comicvine.gamespot.com/x-men-extra/4050-117815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117848/","id":117848,"name":"Guerras Secretas: X-Men","site_detail_url":"https://comicvine.gamespot.com/guerras-secretas-x-men/4050-117848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117893/","id":117893,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-117893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118018/","id":118018,"name":"Die Neuen X-Men","site_detail_url":"https://comicvine.gamespot.com/die-neuen-x-men/4050-118018/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118406/","id":118406,"name":"X-Men by Peter Milligan: Dangerous Liaisons","site_detail_url":"https://comicvine.gamespot.com/x-men-by-peter-milligan-dangerous-liaisons/4050-118406/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117431/","id":117431,"name":"Age of X-Man: Prisoner X","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-prisoner-x/4050-117431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-119765/","id":119765,"name":"New X-Men: The Quest For Magik: The Complete Collection","site_detail_url":"https://comicvine.gamespot.com/new-x-men-the-quest-for-magik-the-complete-collect/4050-119765/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120309/","id":120309,"name":"House of X","site_detail_url":"https://comicvine.gamespot.com/house-of-x/4050-120309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-120956/","id":120956,"name":"Age of X-Man: The Amazing Nightcrawler","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-the-amazing-nightcrawler/4050-120956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-121057/","id":121057,"name":"Age of X-Man: Prisoner X","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man-prisoner-x/4050-121057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122218/","id":122218,"name":"Marauders","site_detail_url":"https://comicvine.gamespot.com/marauders/4050-122218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122668/","id":122668,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-122668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122666/","id":122666,"name":"New Mutants","site_detail_url":"https://comicvine.gamespot.com/new-mutants/4050-122666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123413/","id":123413,"name":"House of X/Powers of X","site_detail_url":"https://comicvine.gamespot.com/house-of-xpowers-of-x/4050-123413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123894/","id":123894,"name":"La Era de Hombre-X","site_detail_url":"https://comicvine.gamespot.com/la-era-de-hombre-x/4050-123894/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103100/","id":103100,"name":"Marvel Previews","site_detail_url":"https://comicvine.gamespot.com/marvel-previews/4050-103100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124822/","id":124822,"name":"X-Men/Fantastic Four","site_detail_url":"https://comicvine.gamespot.com/x-menfantastic-four/4050-124822/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125184/","id":125184,"name":"100% Marvel. Hombre de Hielo","site_detail_url":"https://comicvine.gamespot.com/100-marvel-hombre-de-hielo/4050-125184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125186/","id":125186,"name":"100% Marvel. X-23 ","site_detail_url":"https://comicvine.gamespot.com/100-marvel-x-23/4050-125186/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-117790/","id":117790,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-117790/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-124996/","id":124996,"name":"Dawn of X","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x/4050-124996/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125511/","id":125511,"name":"X-Men Legacy","site_detail_url":"https://comicvine.gamespot.com/x-men-legacy/4050-125511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-123893/","id":123893,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-123893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125180/","id":125180,"name":"Nuevos Mutantes","site_detail_url":"https://comicvine.gamespot.com/nuevos-mutantes/4050-125180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125179/","id":125179,"name":"Merodeadores","site_detail_url":"https://comicvine.gamespot.com/merodeadores/4050-125179/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125678/","id":125678,"name":"Cable","site_detail_url":"https://comicvine.gamespot.com/cable/4050-125678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125698/","id":125698,"name":"Fabulosos X-Men","site_detail_url":"https://comicvine.gamespot.com/fabulosos-x-men/4050-125698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74210/","id":74210,"name":"I Nuovissimi X-Men Volume","site_detail_url":"https://comicvine.gamespot.com/i-nuovissimi-xmen-volume/4050-74210/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125711/","id":125711,"name":"X-Men: La battaglia dell'atomo","site_detail_url":"https://comicvine.gamespot.com/x-men-la-battaglia-dellatomo/4050-125711/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125712/","id":125712,"name":"Incredibili X-Men Volume","site_detail_url":"https://comicvine.gamespot.com/incredibili-x-men-volume/4050-125712/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125739/","id":125739,"name":"Wolverine e gli X-Men","site_detail_url":"https://comicvine.gamespot.com/wolverine-e-gli-x-men/4050-125739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125745/","id":125745,"name":"Age of X-Man","site_detail_url":"https://comicvine.gamespot.com/age-of-x-man/4050-125745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125787/","id":125787,"name":"X-23","site_detail_url":"https://comicvine.gamespot.com/x-23/4050-125787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125824/","id":125824,"name":"X-Men Milestones: Messiah Complex","site_detail_url":"https://comicvine.gamespot.com/x-men-milestones-messiah-complex/4050-125824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125897/","id":125897,"name":"Surpreendentes X-Men - Edição Especial ","site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men-edicao-especial/4050-125897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125902/","id":125902,"name":"Surpreendentes X-Men","site_detail_url":"https://comicvine.gamespot.com/surpreendentes-x-men/4050-125902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125952/","id":125952,"name":"X-Men: Gold","site_detail_url":"https://comicvine.gamespot.com/x-men-gold/4050-125952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126052/","id":126052,"name":"X-Men: Von Anfang bis Ende","site_detail_url":"https://comicvine.gamespot.com/x-men-von-anfang-bis-ende/4050-126052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126055/","id":126055,"name":"X-Men: House of X & Powers of X","site_detail_url":"https://comicvine.gamespot.com/x-men-house-of-x-and-powers-of-x/4050-126055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126158/","id":126158,"name":"X-23","site_detail_url":"https://comicvine.gamespot.com/x-23/4050-126158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126302/","id":126302,"name":"A Era do X-Man","site_detail_url":"https://comicvine.gamespot.com/a-era-do-x-man/4050-126302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126382/","id":126382,"name":"Marauders by Gerry Duggan","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan/4050-126382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126600/","id":126600,"name":"Uncanny X-Men: The Variant Covers","site_detail_url":"https://comicvine.gamespot.com/uncanny-x-men-the-variant-covers/4050-126600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126707/","id":126707,"name":"X-Men: Krakoa Lives","site_detail_url":"https://comicvine.gamespot.com/x-men-krakoa-lives/4050-126707/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125121/","id":125121,"name":"Wolverine","site_detail_url":"https://comicvine.gamespot.com/wolverine/4050-125121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128897/","id":128897,"name":"X-Force by Benjamin Percy","site_detail_url":"https://comicvine.gamespot.com/x-force-by-benjamin-percy/4050-128897/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128880/","id":128880,"name":"Empyre: X-Men","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men/4050-128880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125858/","id":125858,"name":"New Mutants","site_detail_url":"https://comicvine.gamespot.com/new-mutants/4050-125858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-125859/","id":125859,"name":"X-Force","site_detail_url":"https://comicvine.gamespot.com/x-force/4050-125859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-122077/","id":122077,"name":"X-Men","site_detail_url":"https://comicvine.gamespot.com/x-men/4050-122077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-131740/","id":131740,"name":"Empyre: X-Men","site_detail_url":"https://comicvine.gamespot.com/empyre-x-men/4050-131740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126299/","id":126299,"name":"X-Men by Jonathan Hickman","site_detail_url":"https://comicvine.gamespot.com/x-men-by-jonathan-hickman/4050-126299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132133/","id":132133,"name":"Cable by Gerry Duggan","site_detail_url":"https://comicvine.gamespot.com/cable-by-gerry-duggan/4050-132133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132138/","id":132138,"name":"Wolverine by Benjamin Percy","site_detail_url":"https://comicvine.gamespot.com/wolverine-by-benjamin-percy/4050-132138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132228/","id":132228,"name":"X of Swords: Destruction","site_detail_url":"https://comicvine.gamespot.com/x-of-swords-destruction/4050-132228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132383/","id":132383,"name":"New Mutants by Ed Brisson","site_detail_url":"https://comicvine.gamespot.com/new-mutants-by-ed-brisson/4050-132383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134229/","id":134229,"name":"X of Swords","site_detail_url":"https://comicvine.gamespot.com/x-of-swords/4050-134229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138157/","id":138157,"name":"New Mutants by Vita Ayala","site_detail_url":"https://comicvine.gamespot.com/new-mutants-by-vita-ayala/4050-138157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138729/","id":138729,"name":"Marauders By Gerry Duggan","site_detail_url":"https://comicvine.gamespot.com/marauders-by-gerry-duggan/4050-138729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-138343/","id":138343,"name":"X-Men: The Trial of Magneto","site_detail_url":"https://comicvine.gamespot.com/x-men-the-trial-of-magneto/4050-138343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-126015/","id":126015,"name":"Hellions","site_detail_url":"https://comicvine.gamespot.com/hellions/4050-126015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-139289/","id":139289,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/inferno/4050-139289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140445/","id":140445,"name":"X-Men: Hellfire Gala – The Red Carpet Collection","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala-the-red-carpet-collection/4050-140445/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141461/","id":141461,"name":"X-Men: Hellfire Gala ","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala/4050-141461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132137/","id":132137,"name":"Hellions by Zeb Wells","site_detail_url":"https://comicvine.gamespot.com/hellions-by-zeb-wells/4050-132137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141831/","id":141831,"name":"X-Men: The Trial of Magneto","site_detail_url":"https://comicvine.gamespot.com/x-men-the-trial-of-magneto/4050-141831/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-141232/","id":141232,"name":"Infernales","site_detail_url":"https://comicvine.gamespot.com/infernales/4050-141232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143575/","id":143575,"name":"X-Force By Benjamin Percy","site_detail_url":"https://comicvine.gamespot.com/x-force-by-benjamin-percy/4050-143575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144025/","id":144025,"name":"X-Men: Hellfire Gala","site_detail_url":"https://comicvine.gamespot.com/x-men-hellfire-gala/4050-144025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137265/","id":137265,"name":"Reign of X","site_detail_url":"https://comicvine.gamespot.com/reign-of-x/4050-137265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144140/","id":144140,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/inferno/4050-144140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144123/","id":144123,"name":"A.X.E.: Judgment Day","site_detail_url":"https://comicvine.gamespot.com/axe-judgment-day/4050-144123/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/team-details/team-4060-9591.json b/samples/api-data/team-details/team-4060-9591.json new file mode 100644 index 0000000..5033bd6 --- /dev/null +++ b/samples/api-data/team-details/team-4060-9591.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":"League of Shadows","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9591/","character_enemies":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2357/","id":2357,"name":"Aquaman","site_detail_url":"https://comicvine.gamespot.com/aquaman/4005-2357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5368/","id":5368,"name":"Barbara Gordon","site_detail_url":"https://comicvine.gamespot.com/barbara-gordon/4005-5368/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-22804/","id":22804,"name":"Barry Allen","site_detail_url":"https://comicvine.gamespot.com/barry-allen/4005-22804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1699/","id":1699,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4005-1699/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-88300/","id":88300,"name":"Batwing","site_detail_url":"https://comicvine.gamespot.com/batwing/4005-88300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9052/","id":9052,"name":"Batwoman","site_detail_url":"https://comicvine.gamespot.com/batwoman/4005-9052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1689/","id":1689,"name":"Black Canary","site_detail_url":"https://comicvine.gamespot.com/black-canary/4005-1689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10994/","id":10994,"name":"Black Lightning","site_detail_url":"https://comicvine.gamespot.com/black-lightning/4005-10994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65230/","id":65230,"name":"Cassandra Cain","site_detail_url":"https://comicvine.gamespot.com/cassandra-cain/4005-65230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1698/","id":1698,"name":"Catwoman","site_detail_url":"https://comicvine.gamespot.com/catwoman/4005-1698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9589/","id":9589,"name":"Clayface (Karlo)","site_detail_url":"https://comicvine.gamespot.com/clayface-karlo/4005-9589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42413/","id":42413,"name":"Damian Wayne","site_detail_url":"https://comicvine.gamespot.com/damian-wayne/4005-42413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5690/","id":5690,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4005-5690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3588/","id":3588,"name":"Deathstroke","site_detail_url":"https://comicvine.gamespot.com/deathstroke/4005-3588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1691/","id":1691,"name":"Dick Grayson","site_detail_url":"https://comicvine.gamespot.com/dick-grayson/4005-1691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-100777/","id":100777,"name":"Duke Thomas","site_detail_url":"https://comicvine.gamespot.com/duke-thomas/4005-100777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5936/","id":5936,"name":"Green Arrow","site_detail_url":"https://comicvine.gamespot.com/green-arrow/4005-5936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-11202/","id":11202,"name":"Hal Jordan","site_detail_url":"https://comicvine.gamespot.com/hal-jordan/4005-11202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1690/","id":1690,"name":"Huntress (Bertinelli)","site_detail_url":"https://comicvine.gamespot.com/huntress-bertinelli/4005-1690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6849/","id":6849,"name":"Jason Todd","site_detail_url":"https://comicvine.gamespot.com/jason-todd/4005-6849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12834/","id":12834,"name":"Jean-Paul Valley","site_detail_url":"https://comicvine.gamespot.com/jean-paul-valley/4005-12834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-81180/","id":81180,"name":"Katar Hol","site_detail_url":"https://comicvine.gamespot.com/katar-hol/4005-81180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40431/","id":40431,"name":"Kyle Rayner","site_detail_url":"https://comicvine.gamespot.com/kyle-rayner/4005-40431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2047/","id":2047,"name":"Martian Manhunter","site_detail_url":"https://comicvine.gamespot.com/martian-manhunter/4005-2047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-25845/","id":25845,"name":"Michael Lane","site_detail_url":"https://comicvine.gamespot.com/michael-lane/4005-25845/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45309/","id":45309,"name":"Sin","site_detail_url":"https://comicvine.gamespot.com/sin/4005-45309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6156/","id":6156,"name":"Stephanie Brown","site_detail_url":"https://comicvine.gamespot.com/stephanie-brown/4005-6156/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1807/","id":1807,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4005-1807/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9290/","id":9290,"name":"Tim Drake","site_detail_url":"https://comicvine.gamespot.com/tim-drake/4005-9290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23879/","id":23879,"name":"Wally West","site_detail_url":"https://comicvine.gamespot.com/wally-west/4005-23879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2048/","id":2048,"name":"Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/wonder-woman/4005-2048/"}],"character_friends":[],"characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9647/","id":9647,"name":"Alpha","site_detail_url":"https://comicvine.gamespot.com/alpha/4005-9647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-176049/","id":176049,"name":"Angel Breaker","site_detail_url":"https://comicvine.gamespot.com/angel-breaker/4005-176049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86967/","id":86967,"name":"Anya Volkova","site_detail_url":"https://comicvine.gamespot.com/anya-volkova/4005-86967/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139325/","id":139325,"name":"Athanasia Al Ghul","site_detail_url":"https://comicvine.gamespot.com/athanasia-al-ghul/4005-139325/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156843/","id":156843,"name":"Babylon","site_detail_url":"https://comicvine.gamespot.com/babylon/4005-156843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6129/","id":6129,"name":"Bane","site_detail_url":"https://comicvine.gamespot.com/bane/4005-6129/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-1689/","id":1689,"name":"Black Canary","site_detail_url":"https://comicvine.gamespot.com/black-canary/4005-1689/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5812/","id":5812,"name":"Black Spider","site_detail_url":"https://comicvine.gamespot.com/black-spider/4005-5812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134718/","id":134718,"name":"Blank","site_detail_url":"https://comicvine.gamespot.com/blank/4005-134718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-23535/","id":23535,"name":"Bronze Tiger","site_detail_url":"https://comicvine.gamespot.com/bronze-tiger/4005-23535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-65230/","id":65230,"name":"Cassandra Cain","site_detail_url":"https://comicvine.gamespot.com/cassandra-cain/4005-65230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6152/","id":6152,"name":"Celia Kazantkakis","site_detail_url":"https://comicvine.gamespot.com/celia-kazantkakis/4005-6152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2537/","id":2537,"name":"Cheshire","site_detail_url":"https://comicvine.gamespot.com/cheshire/4005-2537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35188/","id":35188,"name":"Clayface (Hagen)","site_detail_url":"https://comicvine.gamespot.com/clayface-hagen/4005-35188/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-14257/","id":14257,"name":"Connor Hawke","site_detail_url":"https://comicvine.gamespot.com/connor-hawke/4005-14257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-45805/","id":45805,"name":"Curaré","site_detail_url":"https://comicvine.gamespot.com/curare/4005-45805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74195/","id":74195,"name":"Cypher","site_detail_url":"https://comicvine.gamespot.com/cypher/4005-74195/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-42413/","id":42413,"name":"Damian Wayne","site_detail_url":"https://comicvine.gamespot.com/damian-wayne/4005-42413/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-128492/","id":128492,"name":"Darius","site_detail_url":"https://comicvine.gamespot.com/darius/4005-128492/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-10482/","id":10482,"name":"David Cain","site_detail_url":"https://comicvine.gamespot.com/david-cain/4005-10482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3588/","id":3588,"name":"Deathstroke","site_detail_url":"https://comicvine.gamespot.com/deathstroke/4005-3588/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90363/","id":90363,"name":"December Graystone","site_detail_url":"https://comicvine.gamespot.com/december-graystone/4005-90363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74340/","id":74340,"name":"Detonator","site_detail_url":"https://comicvine.gamespot.com/detonator/4005-74340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76740/","id":76740,"name":"Dr. Dedalus","site_detail_url":"https://comicvine.gamespot.com/dr-dedalus/4005-76740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-71403/","id":71403,"name":"Dr. Ebenezer Darrk","site_detail_url":"https://comicvine.gamespot.com/dr-ebenezer-darrk/4005-71403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-35137/","id":35137,"name":"Dr. Tzin-Tzin","site_detail_url":"https://comicvine.gamespot.com/dr-tzin-tzin/4005-35137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38211/","id":38211,"name":"Dragon Fly","site_detail_url":"https://comicvine.gamespot.com/dragon-fly/4005-38211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-118353/","id":118353,"name":"Goliath","site_detail_url":"https://comicvine.gamespot.com/goliath/4005-118353/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86224/","id":86224,"name":"Grind","site_detail_url":"https://comicvine.gamespot.com/grind/4005-86224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62927/","id":62927,"name":"Henri Ducard","site_detail_url":"https://comicvine.gamespot.com/henri-ducard/4005-62927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173879/","id":173879,"name":"Ishmael","site_detail_url":"https://comicvine.gamespot.com/ishmael/4005-173879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173287/","id":173287,"name":"Janan al Ghul","site_detail_url":"https://comicvine.gamespot.com/janan-al-ghul/4005-173287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6849/","id":6849,"name":"Jason Todd","site_detail_url":"https://comicvine.gamespot.com/jason-todd/4005-6849/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-57541/","id":57541,"name":"Jonah","site_detail_url":"https://comicvine.gamespot.com/jonah/4005-57541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-156844/","id":156844,"name":"Kaliber","site_detail_url":"https://comicvine.gamespot.com/kaliber/4005-156844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-149023/","id":149023,"name":"Karma","site_detail_url":"https://comicvine.gamespot.com/karma/4005-149023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6793/","id":6793,"name":"Kitty Kumbata","site_detail_url":"https://comicvine.gamespot.com/kitty-kumbata/4005-6793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-139469/","id":139469,"name":"Koru","site_detail_url":"https://comicvine.gamespot.com/koru/4005-139469/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44357/","id":44357,"name":"Kyle Abbot","site_detail_url":"https://comicvine.gamespot.com/kyle-abbot/4005-44357/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2222/","id":2222,"name":"Lady Shiva","site_detail_url":"https://comicvine.gamespot.com/lady-shiva/4005-2222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-73917/","id":73917,"name":"Lord Death Man","site_detail_url":"https://comicvine.gamespot.com/lord-death-man/4005-73917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86226/","id":86226,"name":"Lurk","site_detail_url":"https://comicvine.gamespot.com/lurk/4005-86226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-66772/","id":66772,"name":"Mad Dog","site_detail_url":"https://comicvine.gamespot.com/mad-dog/4005-66772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74339/","id":74339,"name":"Maduvu","site_detail_url":"https://comicvine.gamespot.com/maduvu/4005-74339/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-113925/","id":113925,"name":"Malaq","site_detail_url":"https://comicvine.gamespot.com/malaq/4005-113925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134722/","id":134722,"name":"Mara Al Ghul","site_detail_url":"https://comicvine.gamespot.com/mara-al-ghul/4005-134722/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31729/","id":31729,"name":"Maseo Yamashiro","site_detail_url":"https://comicvine.gamespot.com/maseo-yamashiro/4005-31729/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173166/","id":173166,"name":"Master Dusk","site_detail_url":"https://comicvine.gamespot.com/master-dusk/4005-173166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-2532/","id":2532,"name":"Merlyn","site_detail_url":"https://comicvine.gamespot.com/merlyn/4005-2532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-112778/","id":112778,"name":"Mesi","site_detail_url":"https://comicvine.gamespot.com/mesi/4005-112778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134721/","id":134721,"name":"Nightstorm","site_detail_url":"https://comicvine.gamespot.com/nightstorm/4005-134721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-41476/","id":41476,"name":"Nyssa Raatko","site_detail_url":"https://comicvine.gamespot.com/nyssa-raatko/4005-41476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-109982/","id":109982,"name":"Odysseus","site_detail_url":"https://comicvine.gamespot.com/odysseus/4005-109982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3723/","id":3723,"name":"Onyx","site_detail_url":"https://comicvine.gamespot.com/onyx/4005-3723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70113/","id":70113,"name":"Owens","site_detail_url":"https://comicvine.gamespot.com/owens/4005-70113/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-90043/","id":90043,"name":"Penumbra","site_detail_url":"https://comicvine.gamespot.com/penumbra/4005-90043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134720/","id":134720,"name":"Plague","site_detail_url":"https://comicvine.gamespot.com/plague/4005-134720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-86225/","id":86225,"name":"Professor Markewitch","site_detail_url":"https://comicvine.gamespot.com/professor-markewitch/4005-86225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-62055/","id":62055,"name":"Professor Ojo","site_detail_url":"https://comicvine.gamespot.com/professor-ojo/4005-62055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-67320/","id":67320,"name":"Pru","site_detail_url":"https://comicvine.gamespot.com/pru/4005-67320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-40816/","id":40816,"name":"Ra's al Ghul","site_detail_url":"https://comicvine.gamespot.com/ras-al-ghul/4005-40816/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-119152/","id":119152,"name":"Ravi","site_detail_url":"https://comicvine.gamespot.com/ravi/4005-119152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74336/","id":74336,"name":"Razorburn","site_detail_url":"https://comicvine.gamespot.com/razorburn/4005-74336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-91003/","id":91003,"name":"Rictus","site_detail_url":"https://comicvine.gamespot.com/rictus/4005-91003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3718/","id":3718,"name":"Riddler","site_detail_url":"https://comicvine.gamespot.com/riddler/4005-3718/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-173291/","id":173291,"name":"Saif Al Ghul","site_detail_url":"https://comicvine.gamespot.com/saif-al-ghul/4005-173291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-161440/","id":161440,"name":"Scarlet Scythe","site_detail_url":"https://comicvine.gamespot.com/scarlet-scythe/4005-161440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19346/","id":19346,"name":"Sensei","site_detail_url":"https://comicvine.gamespot.com/sensei/4005-19346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74338/","id":74338,"name":"Shellcase","site_detail_url":"https://comicvine.gamespot.com/shellcase/4005-74338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6861/","id":6861,"name":"Shrike","site_detail_url":"https://comicvine.gamespot.com/shrike/4005-6861/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-142656/","id":142656,"name":"Silencer","site_detail_url":"https://comicvine.gamespot.com/silencer/4005-142656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38212/","id":38212,"name":"Silken Spider","site_detail_url":"https://comicvine.gamespot.com/silken-spider/4005-38212/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-51731/","id":51731,"name":"Silver Monkey","site_detail_url":"https://comicvine.gamespot.com/silver-monkey/4005-51731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-34694/","id":34694,"name":"Sportsmaster","site_detail_url":"https://comicvine.gamespot.com/sportsmaster/4005-34694/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-134719/","id":134719,"name":"Stone","site_detail_url":"https://comicvine.gamespot.com/stone/4005-134719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-4917/","id":4917,"name":"Talia al Ghul","site_detail_url":"https://comicvine.gamespot.com/talia-al-ghul/4005-4917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70114/","id":70114,"name":"The Expediter","site_detail_url":"https://comicvine.gamespot.com/the-expediter/4005-70114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74621/","id":74621,"name":"The Heretic","site_detail_url":"https://comicvine.gamespot.com/the-heretic/4005-74621/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-19326/","id":19326,"name":"The Hook","site_detail_url":"https://comicvine.gamespot.com/the-hook/4005-19326/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-38213/","id":38213,"name":"Tiger Moth","site_detail_url":"https://comicvine.gamespot.com/tiger-moth/4005-38213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-76607/","id":76607,"name":"Tigress","site_detail_url":"https://comicvine.gamespot.com/tigress/4005-76607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70029/","id":70029,"name":"Tigris","site_detail_url":"https://comicvine.gamespot.com/tigris/4005-70029/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9290/","id":9290,"name":"Tim Drake","site_detail_url":"https://comicvine.gamespot.com/tim-drake/4005-9290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-163813/","id":163813,"name":"Tourne","site_detail_url":"https://comicvine.gamespot.com/tourne/4005-163813/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-8311/","id":8311,"name":"Ubu","site_detail_url":"https://comicvine.gamespot.com/ubu/4005-8311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-79768/","id":79768,"name":"Vial","site_detail_url":"https://comicvine.gamespot.com/vial/4005-79768/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-6795/","id":6795,"name":"Wam Wam","site_detail_url":"https://comicvine.gamespot.com/wam-wam/4005-6795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-74337/","id":74337,"name":"Whip","site_detail_url":"https://comicvine.gamespot.com/whip/4005-74337/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-44355/","id":44355,"name":"Whisper A'Daire","site_detail_url":"https://comicvine.gamespot.com/whisper-adaire/4005-44355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-49225/","id":49225,"name":"White Ghost","site_detail_url":"https://comicvine.gamespot.com/white-ghost/4005-49225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70028/","id":70028,"name":"White Willow","site_detail_url":"https://comicvine.gamespot.com/white-willow/4005-70028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-70112/","id":70112,"name":"Z","site_detail_url":"https://comicvine.gamespot.com/z/4005-70112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-162507/","id":162507,"name":"Zeh-ro","site_detail_url":"https://comicvine.gamespot.com/zeh-ro/4005-162507/"}],"count_of_isssue_appearances":0,"count_of_team_members":93,"date_added":"2008-06-06 11:27:47","date_last_updated":"2021-11-13 22:57:40","deck":"The League of Assassins is an ancient army of killers led by Ra's al Ghul that often comes into conflict with Batman. Many of the greatest martial artists and mercenaries in the DCU have been members of the League of Assassins at some point.","description":"

    History

    \"Ra's\"
    Ra's

    The League of Assassins was founded by Ra's al Ghul in some unknown time. It was created to be \"the fang that protects the head\". Some of the most dangerous assassins in the DC Universe such as Lady Shiva, David Cain, and master archer Merlyn have all been members of the League of Assassins.

    Doctor Darrk, aka Ebeneezer Darrk, was the first known individual assigned by Ra's al Ghul to head the League of Assassins and seconded by the martial arts master The Sensei from Hong Kong. Darrk relied upon careful planning and manipulation, ambushes and death traps, concealed weapons and poisons, and the League at this time reflected his personal methods, but for many years the League has been filled with some of the greatest martial artist in the DCU. Ra's was never revealed as the leader of the League until Ra's and Darrk had a falling out and Darrk kidnapped Ra's' daughter, Talia Al Ghul, and Ra's kidnapped Robin so that Batman would help him in finding his daughter. Darrk died while trying to kill Batman and Talia.

    \"Talia\"
    Talia

    The Sensei became the second leader of the League using many of Darrk's tactics, but lead the group in a more brutal way. The operative known as the Hook was assigned to murder Boston Brand who became Deadman after his death. Professor Ojo was able to brainwash Ben Turner into becoming the Bronze Tiger. Bronze Tiger was able to defeat Batman, but due to his training from O-Sensei he didn't kill him and he left the team. Sensei would later go insane and wanted to raise assassination to an art and attempted to cause an artificial earthquake in order to kill a number of diplomats gathered for peace talks. Batman traced Ben Turner to a hospital, foiling a League attempt to assassinate the man. Turner could not fully remember the actions of his alternate personality but he was able to aid Batman in uncovering the Sensei's latest plot. Although Batman was unable to prevent the earthquake, ultimately it was only the Sensei himself that died in the disaster, and control of the League returned to Ra's.

    \"Shiva\"
    Shiva

    Ra's had grown tired of disloyal servants and ordered David Cain to create a perfect bodyguard (\"The One Who Is All\"). After trying to raise such a person resulted in hopelessly psychotic children, Cain decided that he needed a genetically suited child and began searching for a possible mother. To this end he assassinated Carolyn Woosan/Wu-San, one of two astonishingly talented martial artist sisters Carolyn's sister, Sandra, swore revenge and tracked Cain down, only to be subdued by the combined might of the League. However, she was frightened by the levels of skill she was attaining now that she was no longer held back due to her sister; Sandra agreed to be the mother of Cain's child in return, the League spared Sandra's life, and assisted her in further training. By the time Sandra gave birth, she had surpassed the entire League in skill and left immediately following the birth of her daughter, Cassandra Cain, renamed herself Lady Shiva. The League attempted to train Cassandra from birth to be the ultimate assassin, unknowingly giving her the skills she would use as the hero Batgirl. After the death of Ra's, his first born daughter Nyssa Raatko formed a new League. Lady Shiva was recruited to serve as Sensei to this incarnation of the League with the intent that Cassandra would lead the warriors themselves.

    Reflecting Shiva's emphasis for martial arts, the known members of Nyssa's League were all skilled in this area, and included the warriors Shrike, Kitty Kumbata, Wam-Wam, Joey N'Bobo, Tigris, Momotado, Krunk, White Willow, the twin warriors Los Gemelos, Ox, \"The Mad Dog\", Alpha, and Cristos. The new League was present when Mr. Freeze's wife Nora Fries was brought back to life as the monstrous Lazara, and several members died in the resulting chaos.

    Due to the conflict between their loyalty to Shiva and Nyssa and their near-worship of Batgirl as \"The One Who is All\", the League split at that point, with Ox, White Willow, and Tigris pledging themselves to Cassandra. Several more members of the League (including all the defectors except Tigris) died when the insane \"Mad Dog\" went on a killing spree. \"The Mad Dog\", it was revealed, had been one of David Cain's early attempts to create Ra's' perfect warrior. The Mad Dog had been considered useless as a child, since Cain's methods had driven him murderously insane, and Ra's had ordered the child be killed. Nyssa, however, knew that the servant ordered to carry out this execution had instead released him into the wild, explaining how it was possible to recruit him. The Mad Dog was successful in killing Batgirl (who gave her life to protect the burqa-clad assassin Tigris). She was quickly restored to life in a Lazarus Pit by Shiva, in order that the two could face each other in a final battle.

    After the Infinite Crisis, the League has been split in two. One faction being led by Cassandra Cain and the second being led by Talia al Ghul after the death of her sister.

    Ra's Al Ghul has recently returned from the dead and has taken control of the League back from his daughter and is currently fighting with the Sensei for control of the League of Assassins.

    New 52

    A new version of the team has appeared in the pages of Red Hood & The Outlaws. Composed of Bronze Tiger, Cheshire, December Graystone, Lady Shiva & Rictus they are attempting to recruit Jason Todd to be their leader. They are still following the guidance of Ra's al Ghul while also waging war with the Outlaws and the Untitled

    Other Media

    Animation

    DCAU

    The League of Assassins has been subject to name changes in the various forms of Batman-related media.

    Batman: The Animated Series

    \"BTAS\"
    BTAS

    The league is known as the \"Society of Shadows\" and is headed by Ra's Al Ghul. Count Vertigo is also shown as one of its leaders. The spin-off comic book however, made a distinction between the Society of Shadows and the League of Assassins. Both were loyal to Al Ghul however.

    Batman Beyond

    Later, in the Batman Beyond continuity the name changed to the \"Society of Assassins\" in the futuristic world of\"Batman Beyond\". Ras Al Ghul is still in control through the use of Talia's body.

    Batman: The Brave and the Bold

    The League of Assassins appeared in Batman: The Brave and the Bold, going by their proper name for the first time. The League can be seen in \"Sidekicks Assemble!\" and \"Crisis 22,300 Miles Above Earth!\", lead in both instances by Ra's al Ghul.

    Young Justice

    Taking inspiration from Batman Begins, the League appears in Young Justice under the name the \"League of Shadows\". Cheshire, the Hook, Black Spider, Clayface, Professor Ojo and Sportsmaster all appear as members, with Huntress as a former member. Ra's al Ghul is the League's leader, but the organization is usually directed by Sensei. They operated on Infinity Island.

    At some point The Al Ghul family were ousted from The Shadows. The mercenary Deathstroke became its new leader whiles Lady Shiva became its new 'Sensei' instructing the recruits. Base of operation was relocated to Santa Prisca, an island in the Caribbean under Bane's control.

    Live-Action TV

    Arrow (2012)

    In Arrow, the League of Assassins plays a major role in the third season, as Ra's al Ghul first seeks to avenge Sara Lance's death, then to forcibly recruit Oliver Queen as his heir. After Ra's death, Malcolm Merlyn becomes the new Ra's al Ghul until he is deposed by Nyssa al Ghul, who releases all the members from their oaths and disbands the League. Some members formed a splinter group called Thanatos Guild led by Celia 'Athena' Kazantkakis.

    Film

    Batman Begins (2005)

    \"Bruce
    Bruce with Ducard and the league of Shadows

    In Batman Begins, the League of Shadows is a vigilante/terrorist group that existed for thousands of years operating secretly against human corruption such as sacking Rome, burning London and filling trade ships with plague rats. They attacked Gotham by destroying it's economy, creating despair and criminality which forced Joe Chill to become a mugger. Henri Ducard frees Bruce from prison and invites him to join them but only accepting him by giving them a rare blue flower. Bruce accepts and learns many of the skills needed to become Batman, quickly becoming their best student and overcoming his fear of bats. Ducard and Ra's Al Ghul ask him to make a final test and execute a prisoner. When Bruce refuses and learns that he was wanted to lead a mission to destroy Gotham, he blows up their headquarters to escape. Later on, Ducard comes to Gotham and reveals himself to be the real Ra's Al Ghul. Ra's Al Ghul then attempted to destroy Gotham City with Scarecrow's fear poison derived from their blue flowers, but he's stopped by Batman. They where called League of Shadows because thet do not want to use the word League of Assassins to scare younger kids who want to see this movie.

    The Dark Knight Rises (2012)

    The League of Shadows returns in The Dark Knight Rises, secretly led by Ra's' daughter and heir Talia al Ghul, while former League member Bane is brought in to enact the mission that Bruce Wayne was once recruited for: the destruction of Gotham. They attempt to fulfill Ra's al Ghul's dream of destroying Gotham, this time using a nuclear weapon. Many of the League members are defeated during a massive battle against the Gotham Police Department, and Bane and Talia are ultimately killed in the film's climax.

    Video Games

    * The League of Assassins appears in DC Universe Online.

    \"Arkham
    Arkham City

    * The League of Assassins appears in Batman: Arkham City as Talia al Ghul's elite cadre of bodyguards. Batman initially encounters the League after releasing a female member that had been taken captive by the Penguin. He follows her to the League's headquarters, where he briefly engages in a battle against Ra's. At the close of the game, the members of the League supposedly recover Ra's al Ghul's corpse after he is accidentally killed during a fight with Batman. This incarnation is notable as all of the members seen in the game are female.

    ","disbanded_in_issues":[],"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112657/","id":112657,"name":"The First of the Assassins! ; The Living Statue;","issue_number":"405"},"id":9591,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/5803636-8004032594-latest","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/5803636-8004032594-latest","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/5803636-8004032594-latest","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/5803636-8004032594-latest","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/5803636-8004032594-latest","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/5803636-8004032594-latest","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/5803636-8004032594-latest","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/5803636-8004032594-latest","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/5803636-8004032594-latest","image_tags":"All Images,Comics"},"isssues_disbanded_in":[],"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-931261/","id":931261,"name":"Cherry Gig; Hot Mess: Memory One","site_detail_url":"https://comicvine.gamespot.com/young-justice-targets-1-cherry-gig-hot-mess-memory/4000-931261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-937990/","id":937990,"name":null,"site_detail_url":"https://comicvine.gamespot.com/checkmate-tpb-1/4000-937990/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926034/","id":926034,"name":"Shadow War Part Seven","site_detail_url":"https://comicvine.gamespot.com/robin-14-shadow-war-part-seven/4000-926034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-926030/","id":926030,"name":"Shadow War Part 6: Revenge Never Ends","site_detail_url":"https://comicvine.gamespot.com/deathstroke-inc-9-shadow-war-part-6-revenge-never-/4000-926030/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-920636/","id":920636,"name":"Shadow War, Part 5: Too Many #@^$°%& Questions; Batman Versus Deathstroke... and the Joker!","site_detail_url":"https://comicvine.gamespot.com/batman-123-shadow-war-part-5-too-many-degand-quest/4000-920636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-919166/","id":919166,"name":"Shadow War, Part 3","site_detail_url":"https://comicvine.gamespot.com/deathstroke-inc-8-shadow-war-part-3/4000-919166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-917962/","id":917962,"name":"All Pedal, No Brakes","site_detail_url":"https://comicvine.gamespot.com/the-flash-781-all-pedal-no-brakes/4000-917962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-914439/","id":914439,"name":"Shadow War, Part 2: Too Many #%^&$#@ Ninjas","site_detail_url":"https://comicvine.gamespot.com/batman-122-shadow-war-part-2-too-many-and-ninjas/4000-914439/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-913027/","id":913027,"name":"Part One","site_detail_url":"https://comicvine.gamespot.com/shadow-war-alpha-1-part-one/4000-913027/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912141/","id":912141,"name":"Demon vs. Detective","site_detail_url":"https://comicvine.gamespot.com/robin-12-demon-vs-detective/4000-912141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-912138/","id":912138,"name":"Kids","site_detail_url":"https://comicvine.gamespot.com/deathstroke-inc-7-kids/4000-912138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-904507/","id":904507,"name":"Mother of the Demon","site_detail_url":"https://comicvine.gamespot.com/robin-10-mother-of-the-demon/4000-904507/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895904/","id":895904,"name":"Robin's Strike File","site_detail_url":"https://comicvine.gamespot.com/robin-2021-annual-1-robins-strike-file/4000-895904/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-895898/","id":895898,"name":null,"site_detail_url":"https://comicvine.gamespot.com/gotham-city-villains-anniversary-giant-1/4000-895898/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891947/","id":891947,"name":"Empire of Shadows","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-authority-special-1-empire-of-shado/4000-891947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891125/","id":891125,"name":"The Final Four","site_detail_url":"https://comicvine.gamespot.com/robin-7-the-final-four/4000-891125/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-886390/","id":886390,"name":"Fight! Fight! Fight! Fight!","site_detail_url":"https://comicvine.gamespot.com/robin-6-fight-fight-fight-fight/4000-886390/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-881607/","id":881607,"name":"Reunion or Rumble?","site_detail_url":"https://comicvine.gamespot.com/robin-5-reunion-or-rumble/4000-881607/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-873998/","id":873998,"name":"Way of the Demon","site_detail_url":"https://comicvine.gamespot.com/robin-4-way-of-the-demon/4000-873998/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862625/","id":862625,"name":"New Friends","site_detail_url":"https://comicvine.gamespot.com/robin-3-new-friends/4000-862625/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862619/","id":862619,"name":null,"site_detail_url":"https://comicvine.gamespot.com/checkmate-1/4000-862619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-864702/","id":864702,"name":"Catechism Part 2","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dark-knight-14-catechism-part-2/4000-864702/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-853400/","id":853400,"name":"Wake Up!","site_detail_url":"https://comicvine.gamespot.com/robin-2-wake-up/4000-853400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-862529/","id":862529,"name":"Catechism Part 1","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dark-knight-13-catechism-part-1/4000-862529/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-845270/","id":845270,"name":"Versus the World!","site_detail_url":"https://comicvine.gamespot.com/robin-1-versus-the-world/4000-845270/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-846949/","id":846949,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-till-death-do-they-part-1-/4000-846949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-839422/","id":839422,"name":"The Neighborhood Part 1; Demon or Detective? Part Two","site_detail_url":"https://comicvine.gamespot.com/detective-comics-1034-the-neighborhood-part-1-demo/4000-839422/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842631/","id":842631,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/whos-who-omnibus-1-volume-1/4000-842631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-841675/","id":841675,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-talia-al-ghul-1-tpb/4000-841675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-837670/","id":837670,"name":"Volume 8","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-the-eradication-agenda-1-volume-8/4000-837670/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-831229/","id":831229,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-the-demons-fire-1-volume-/4000-831229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-820430/","id":820430,"name":null,"site_detail_url":"https://comicvine.gamespot.com/batman-black-and-white-1/4000-820430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-815604/","id":815604,"name":null,"site_detail_url":"https://comicvine.gamespot.com/dceased-dead-planet-5/4000-815604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-823031/","id":823031,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-the-rise-and-fall-of-the-batmen-omnibus-1-h/4000-823031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-797687/","id":797687,"name":"The Demon's Fire Finale","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-16-the-demons-fire-finale/4000-797687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-795920/","id":795920,"name":"The Eradication Agenda Part Four","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-46-the-eradication-agenda-part-four/4000-795920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-790340/","id":790340,"name":"The Demon's Fire Part 3","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-15-the-demons-fire-part-3/4000-790340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-781014/","id":781014,"name":"The Eradication Agenda Part Three","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-45-the-eradication-agenda-part-three/4000-781014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794272/","id":794272,"name":"Volume Three","site_detail_url":"https://comicvine.gamespot.com/batman-by-grant-morrison-omnibus-3-volume-three/4000-794272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-790240/","id":790240,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-a-league-of-their-own-1-v/4000-790240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-769598/","id":769598,"name":"The Eradication Agenda Part Two","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-44-the-eradication-agenda-part-two/4000-769598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-736994/","id":736994,"name":"A League of Their Own Part 3","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-10-a-league-of-their-own-/4000-736994/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-718640/","id":718640,"name":"Lesser Gods Part 5","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-5-lesser-gods-part-5/4000-718640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-716310/","id":716310,"name":"Lesser Gods Part 4","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-4-lesser-gods-part-4/4000-716310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-713400/","id":713400,"name":"The Fall and the Fallen Conclusion","site_detail_url":"https://comicvine.gamespot.com/batman-74-the-fall-and-the-fallen-conclusion/4000-713400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-711811/","id":711811,"name":"The Fall and the Fallen Part 4","site_detail_url":"https://comicvine.gamespot.com/batman-73-the-fall-and-the-fallen-part-4/4000-711811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-938463/","id":938463,"name":"The Good, The Bat and the Ugly","site_detail_url":"https://comicvine.gamespot.com/batman-giant-9-the-good-the-bat-and-the-ugly/4000-938463/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-708085/","id":708085,"name":"Lesser Gods Part 1","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-1-lesser-gods-part-1/4000-708085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-704781/","id":704781,"name":null,"site_detail_url":"https://comicvine.gamespot.com/detective-comics-1000/4000-704781/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-688299/","id":688299,"name":"Vol. 1","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-the-new-52-omnibus-1-vol-/4000-688299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-679385/","id":679385,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/deadman-1-tpb/4000-679385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-678512/","id":678512,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/injustice-2-3-volume-3/4000-678512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-675947/","id":675947,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-deluxe-edition-/4000-675947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-671309/","id":671309,"name":"Part One: From This Day Forward","site_detail_url":"https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4000-671309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667602/","id":667602,"name":"Batmen Eternal Part 4","site_detail_url":"https://comicvine.gamespot.com/detective-comics-979-batmen-eternal-part-4/4000-667602/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666789/","id":666789,"name":"The Noble, The Obnoxious & the Inept","site_detail_url":"https://comicvine.gamespot.com/nightwing-43-the-noble-the-obnoxious-and-the-inept/4000-666789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667609/","id":667609,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2-2-volume-2/4000-667609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-667599/","id":667599,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/batman-the-rules-of-engagement-1-volume-5/4000-667599/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-666784/","id":666784,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-and-the-gotham-city-sirens-omnibus-1-/4000-666784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-663383/","id":663383,"name":"Aftershocks","site_detail_url":"https://comicvine.gamespot.com/injustice-2-50-aftershocks/4000-663383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-662690/","id":662690,"name":"Keeping Secrets","site_detail_url":"https://comicvine.gamespot.com/injustice-2-49-keeping-secrets/4000-662690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661949/","id":661949,"name":"The Dark Side of the Moon","site_detail_url":"https://comicvine.gamespot.com/injustice-2-48-the-dark-side-of-the-moon/4000-661949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660640/","id":660640,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/robin-year-one-the-deluxe-edition-1-hc/4000-660640/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-647907/","id":647907,"name":"A Knight In New York Part 2","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-2-a-knight-i/4000-647907/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-644468/","id":644468,"name":"A Knight In New York Part 1","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii-1-a-knight-i/4000-644468/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-661038/","id":661038,"name":"Up and Away","site_detail_url":"https://comicvine.gamespot.com/injustice-2-47-up-and-away/4000-661038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-660418/","id":660418,"name":"Thinking Smaller","site_detail_url":"https://comicvine.gamespot.com/injustice-2-46-thinking-smaller/4000-660418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652592/","id":652592,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-rise-of-the-demon-1-volume-2/4000-652592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634511/","id":634511,"name":"Journey Into Death Part One: Still Dead...After All These Years!","site_detail_url":"https://comicvine.gamespot.com/deadman-by-neal-adams-1-journey-into-death-part-on/4000-634511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-634502/","id":634502,"name":"The Rules of Engagement, Part 2","site_detail_url":"https://comicvine.gamespot.com/batman-34-the-rules-of-engagement-part-2/4000-634502/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-656533/","id":656533,"name":"Gorilla Rebellion","site_detail_url":"https://comicvine.gamespot.com/injustice-2-43-gorilla-rebellion/4000-656533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-655351/","id":655351,"name":"The Greater Good","site_detail_url":"https://comicvine.gamespot.com/injustice-2-42-the-greater-good/4000-655351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-650700/","id":650700,"name":"Zod","site_detail_url":"https://comicvine.gamespot.com/injustice-2-39-zod/4000-650700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-646174/","id":646174,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/trinity-dead-space-1-volume-2/4000-646174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636336/","id":636336,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-hush-the-15th-anniversary-deluxe-edition-1-/4000-636336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-636335/","id":636335,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-636335/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-642969/","id":642969,"name":"Rage","site_detail_url":"https://comicvine.gamespot.com/injustice-2-34-rage/4000-642969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-640437/","id":640437,"name":"Save The World","site_detail_url":"https://comicvine.gamespot.com/injustice-2-33-save-the-world/4000-640437/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-632467/","id":632467,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/injustice-2-1-volume-1/4000-632467/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-626249/","id":626249,"name":"League of Shadows","site_detail_url":"https://comicvine.gamespot.com/batman-detective-comics-league-of-shadows-1-league/4000-626249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-616137/","id":616137,"name":"Rise of the Demon: Conclusion","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-11-rise-of-the-demon-conclusion/4000-616137/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-610456/","id":610456,"name":"Rise of the Demon Part 5","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-10-rise-of-the-demon-part-5/4000-610456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-622537/","id":622537,"name":"Endangered Species Part 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2-24-endangered-species-part-2/4000-622537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621562/","id":621562,"name":"Endangered Species Part I","site_detail_url":"https://comicvine.gamespot.com/injustice-2-23-endangered-species-part-i/4000-621562/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-619391/","id":619391,"name":"Sanctuary Part 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2-22-sanctuary-part-2/4000-619391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-611986/","id":611986,"name":"Multiplicity ","site_detail_url":"https://comicvine.gamespot.com/superman-multiplicity-1-multiplicity/4000-611986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605049/","id":605049,"name":"Rise of the Demon Part 4","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-9-rise-of-the-demon-part-4/4000-605049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-605048/","id":605048,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-66-meets-wonder-woman-77-6/4000-605048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-617435/","id":617435,"name":"Sanctuary Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-2-21-sanctuary-part-1/4000-617435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-615787/","id":615787,"name":"Detonation","site_detail_url":"https://comicvine.gamespot.com/injustice-2-20-detonation/4000-615787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-614784/","id":614784,"name":"Scorched Earth","site_detail_url":"https://comicvine.gamespot.com/injustice-2-19-scorched-earth/4000-614784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-613578/","id":613578,"name":"Extinction","site_detail_url":"https://comicvine.gamespot.com/injustice-2-18-extinction/4000-613578/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-597157/","id":597157,"name":"Rise of the Demon Part 3","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-8-rise-of-the-demon-part-3/4000-597157/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-594933/","id":594933,"name":"League of Shadows Finale: The Duel","site_detail_url":"https://comicvine.gamespot.com/detective-comics-956-league-of-shadows-finale-the-/4000-594933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-609131/","id":609131,"name":"Resurrection","site_detail_url":"https://comicvine.gamespot.com/injustice-2-15-resurrection/4000-609131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-608149/","id":608149,"name":"Green Wedding","site_detail_url":"https://comicvine.gamespot.com/injustice-2-14-green-wedding/4000-608149/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-606428/","id":606428,"name":"Five Graves and A Wedding","site_detail_url":"https://comicvine.gamespot.com/injustice-2-13-five-graves-and-a-wedding/4000-606428/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601778/","id":601778,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/teen-titans-damian-knows-best-1-volume-1/4000-601778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593226/","id":593226,"name":"League of Shadows Part 5: Fists of Fury","site_detail_url":"https://comicvine.gamespot.com/detective-comics-955-league-of-shadows-part-5-fist/4000-593226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-593220/","id":593220,"name":"Rise of the Demon Part 2","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-7-rise-of-the-demon-part-2/4000-593220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-591725/","id":591725,"name":"League of Shadows Part 4: Snake In the Eagle's Shadow","site_detail_url":"https://comicvine.gamespot.com/detective-comics-954-league-of-shadows-part-4-snak/4000-591725/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-601600/","id":601600,"name":"Hostile Takeover, Part 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2-10-hostile-takeover-part-2/4000-601600/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-599771/","id":599771,"name":"Hostile Takeover, Part 1","site_detail_url":"https://comicvine.gamespot.com/injustice-2-9-hostile-takeover-part-1/4000-599771/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-588531/","id":588531,"name":"Rise of the Demon Part 1","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-6-rise-of-the-demon-part-1/4000-588531/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585057/","id":585057,"name":"League of Shadows Part Two: The Five Fingers of Death","site_detail_url":"https://comicvine.gamespot.com/detective-comics-952-league-of-shadows-part-two-th/4000-585057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596823/","id":596823,"name":"The Person In Charge","site_detail_url":"https://comicvine.gamespot.com/injustice-2-7-the-person-in-charge/4000-596823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-595587/","id":595587,"name":"Breakout","site_detail_url":"https://comicvine.gamespot.com/injustice-2-6-breakout/4000-595587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-582495/","id":582495,"name":"League of Shadows Part 1: Unleashed!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-951-league-of-shadows-part-1-unle/4000-582495/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-580715/","id":580715,"name":"League of Shadows, Prologue: Shadow of a Tear","site_detail_url":"https://comicvine.gamespot.com/detective-comics-950-league-of-shadows-prologue-sh/4000-580715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-576604/","id":576604,"name":"Multiplicity Part 2","site_detail_url":"https://comicvine.gamespot.com/superman-15-multiplicity-part-2/4000-576604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-541159/","id":541159,"name":"Spoils of War","site_detail_url":"https://comicvine.gamespot.com/deathstroke-20-spoils-of-war/4000-541159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-544957/","id":544957,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-1-hc/4000-544957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-537211/","id":537211,"name":"Blood Feud!","site_detail_url":"https://comicvine.gamespot.com/deathstroke-19-blood-feud/4000-537211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-531859/","id":531859,"name":"Everybody Says Goodbye, Sometimes","site_detail_url":"https://comicvine.gamespot.com/secret-six-14-everybody-says-goodbye-sometimes/4000-531859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-529620/","id":529620,"name":"The Way Home","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-6-the-way-home/4000-529620/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-527120/","id":527120,"name":"Silent Running","site_detail_url":"https://comicvine.gamespot.com/secret-six-13-silent-running/4000-527120/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-526028/","id":526028,"name":"Massacre At Gorilla City","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-11-massacre-at-gorilla-city/4000-526028/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521314/","id":521314,"name":"The Violence In Silence","site_detail_url":"https://comicvine.gamespot.com/secret-six-12-the-violence-in-silence/4000-521314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-520182/","id":520182,"name":"Son Is Rising","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-10-son-is-rising/4000-520182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518829/","id":518829,"name":"New Friends, Old Ghosts","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-4-new-friends-o/4000-518829/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-530696/","id":530696,"name":"Part Three: Malcolm Merlyn Unbound Chapter 10: Vengeance","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer-10-part-three-malcolm-merlyn/4000-530696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523220/","id":523220,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/black-lightning-1-volume-one/4000-523220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514399/","id":514399,"name":"Totally Awesome Team-Up","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-3-totally-aweso/4000-514399/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523514/","id":523514,"name":"Part Two: The Rise of Arthur King Chapter 7: Traitor","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer-7-part-two-the-rise-of-arthu/4000-523514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521313/","id":521313,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-year-of-blood-1-volume-1/4000-521313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518826/","id":518826,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-by-neal-adams-omnibus-1-hc/4000-518826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-521299/","id":521299,"name":"Part Two: The Rise of Arthur King Chapter 6: Blessed","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer-6-part-two-the-rise-of-arthu/4000-521299/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-518821/","id":518821,"name":"Part Two: The Rise of Arthur King Chapter 5: Tempest","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer-5-part-two-the-rise-of-arthu/4000-518821/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516153/","id":516153,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-character-encyclopedia-1-hc/4000-516153/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514336/","id":514336,"name":"Study Hall of Justice","site_detail_url":"https://comicvine.gamespot.com/dc-comics-secret-hero-society-1-study-hall-of-just/4000-514336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-513629/","id":513629,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/new-suicide-squad-monsters-1-volume-2/4000-513629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-507148/","id":507148,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-robin-war-100-page-spectacular-/4000-507148/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-516913/","id":516913,"name":"Part Two: The Rise of Arthur King Chapter 4: Confession","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer-4-part-two-the-rise-of-arthu/4000-516913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-509086/","id":509086,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-eternal-23/4000-509086/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-506636/","id":506636,"name":"Year of Blood Part Six","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-6-year-of-blood-part-six/4000-506636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-511411/","id":511411,"name":"Chapter 5: Bait","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five-5-chapter-5-bait/4000-511411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-510906/","id":510906,"name":"Part One: The Fall of Malcolm Merlyn Chapter 1: Sacrifice","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer-1-part-one-the-fall-of-malco/4000-510906/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-505490/","id":505490,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-unwrapped-rip-1-hc/4000-505490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-500276/","id":500276,"name":"Year of Blood, Part Four","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-4-year-of-blood-part-four/4000-500276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497922/","id":497922,"name":"Year of Blood, Part Three","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-3-year-of-blood-part-three/4000-497922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497548/","id":497548,"name":"Blood, Part 11; Suicide Squad: Crisis in Kahndaq Special, Part 1","site_detail_url":"https://comicvine.gamespot.com/arrow-season-25-11-blood-part-11-suicide-squad-cri/4000-497548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-495256/","id":495256,"name":"Year of Blood, Part Two","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-2-year-of-blood-part-two/4000-495256/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-497377/","id":497377,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/secret-origins-2-volume-2/4000-497377/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492165/","id":492165,"name":"Year of Blood, Part One","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-1-year-of-blood-part-one/4000-492165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-491476/","id":491476,"name":"Monsters, Part One","site_detail_url":"https://comicvine.gamespot.com/new-suicide-squad-9-monsters-part-one/4000-491476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-493026/","id":493026,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-the-hunt-for-robin-1-volume-6/4000-493026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-492199/","id":492199,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-lost-and-found-1-volume-6/4000-492199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485487/","id":485487,"name":"Blood: Haunted","site_detail_url":"https://comicvine.gamespot.com/arrow-season-25-7-blood-haunted/4000-485487/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-482133/","id":482133,"name":"Blood: Outnumbered","site_detail_url":"https://comicvine.gamespot.com/arrow-season-25-6-blood-outnumbered/4000-482133/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489252/","id":489252,"name":"","site_detail_url":"https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman-1/4000-489252/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483313/","id":483313,"name":"Red Roots; Constantine; Secret Origins Black Canary in Code Black","site_detail_url":"https://comicvine.gamespot.com/secret-origins-11-red-roots-constantine-secret-ori/4000-483313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-483302/","id":483302,"name":"Honor Thy Father","site_detail_url":"https://comicvine.gamespot.com/deathstroke-6-honor-thy-father/4000-483302/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-485499/","id":485499,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-1-volume-1/4000-485499/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479928/","id":479928,"name":"Batman... Eternal?","site_detail_url":"https://comicvine.gamespot.com/batman-eternal-46-batman-eternal/4000-479928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479199/","id":479199,"name":"Legacies","site_detail_url":"https://comicvine.gamespot.com/batman-eternal-45-legacies/4000-479199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-481490/","id":481490,"name":"Blood, Part 14: Assurances; Suicide Squad: Crisis In Kahndaq Finale Part 2","site_detail_url":"https://comicvine.gamespot.com/arrow-season-2-5-14-blood-part-14-assurances-suici/4000-481490/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-479245/","id":479245,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/secret-origins-1-volume-1/4000-479245/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-480055/","id":480055,"name":"Blood Part 13: Assault; Suicide Squad: Crisis In Kahndaq Finale Part 1","site_detail_url":"https://comicvine.gamespot.com/arrow-season-2-5-13-blood-part-13-assault-suicide-/4000-480055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-478427/","id":478427,"name":"Blood, Part 12: Suicide Squad: Crisis In Kahndaq Special Part 2","site_detail_url":"https://comicvine.gamespot.com/arrow-season-2-5-12-blood-part-12-suicide-squad-cr/4000-478427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476769/","id":476769,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-soul-crisis-1-volume-5/4000-476769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-475647/","id":475647,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/absolute-batman-incorporated-1-hc/4000-475647/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-470848/","id":470848,"name":"No Chains Can Hold Her!; Attack of the 500-Foot Wonder-Woman; Ghosts and Gods","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-4-no-chain/4000-470848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-476688/","id":476688,"name":"Blood, Part 11: Suicide Squad: Crisis In Kahndaq Special Part 1","site_detail_url":"https://comicvine.gamespot.com/arrow-season-2-5-11-blood-part-11-suicide-squad-cr/4000-476688/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-474614/","id":474614,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-batman-len-wein-1-tpb/4000-474614/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-472889/","id":472889,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-the-big-picture-1-volume-/4000-472889/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-464936/","id":464936,"name":"The Red League","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-futures-end-1-the-red-league/4000-464936/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468893/","id":468893,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/dc-comics-zero-year-1-hc-tpb/4000-468893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-468443/","id":468443,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/gotham-city-sirens-1-book-one/4000-468443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467200/","id":467200,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-75th-anniversary-collection-1/4000-467200/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-467182/","id":467182,"name":"Ghosts and Gods","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman-8-ghosts-a/4000-467182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-463433/","id":463433,"name":"Cyborg; Secret Origin Red Hood; Secret Origins Mera The Mission","site_detail_url":"https://comicvine.gamespot.com/secret-origins-5-cyborg-secret-origin-red-hood-sec/4000-463433/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-460269/","id":460269,"name":"Secret Origins Harley Quinn; Secret Origins Green Arrow; A Boy's Life Damian Wayne Robin","site_detail_url":"https://comicvine.gamespot.com/secret-origins-4-secret-origins-harley-quinn-secre/4000-460269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459632/","id":459632,"name":"Red Dawn Omega","site_detail_url":"https://comicvine.gamespot.com/robin-rises-1-red-dawn-omega/4000-459632/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456496/","id":456496,"name":"The Hunt for Robin: Dark of the Son","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-32-the-hunt-for-robin-dark-of-the/4000-456496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459154/","id":459154,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/talon-the-fall-of-the-owls-2-volume-2/4000-459154/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-453354/","id":453354,"name":"The Hunt for Robin: City of Cold","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-31-the-hunt-for-robin-city-of-col/4000-453354/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-457627/","id":457627,"name":"The Wrath","site_detail_url":"https://comicvine.gamespot.com/detective-comics-the-wrath-1-the-wrath/4000-457627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-456006/","id":456006,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-league-of-assassins-1-vol/4000-456006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-450511/","id":450511,"name":"The Hunt for Robin: Paradise and Wonder","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-30-the-hunt-for-robin-paradise-an/4000-450511/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-452826/","id":452826,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/absolute-superman-batman-2-volume-2/4000-452826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-448919/","id":448919,"name":"Dead Man's Party, Part 2","site_detail_url":"https://comicvine.gamespot.com/talon-17-dead-man-s-party-part-2/4000-448919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447948/","id":447948,"name":"The Hunt for Robin: Devil and the Deep Blue Sea","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-29-the-hunt-for-robin-devil-and-t/4000-447948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447950/","id":447950,"name":"The Eve of Battle","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-29-the-eve-of-battle/4000-447950/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451072/","id":451072,"name":"Book Five","site_detail_url":"https://comicvine.gamespot.com/deadman-5-book-five/4000-451072/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446435/","id":446435,"name":"Dead Man's Party","site_detail_url":"https://comicvine.gamespot.com/talon-16-dead-man-s-party/4000-446435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-447794/","id":447794,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-unwrapped-by-andy-kubert-1-hc/4000-447794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442878/","id":442878,"name":"Loose Ends","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-27-loose-ends/4000-442878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-442873/","id":442873,"name":"Demons","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-27-demons/4000-442873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-437418/","id":437418,"name":"Remembering","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-26-remembering/4000-437418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433787/","id":433787,"name":"Zero Year: The Beckoning Dark","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-25-zero-year-the-beckonin/4000-433787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-436184/","id":436184,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus-1-hc/4000-436184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-440236/","id":440236,"name":"Vol. 3","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged-3-vol-3/4000-440236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-431401/","id":431401,"name":"Book One: The Next of Kin","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman-1-book-one-the-next-of-kin/4000-431401/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428824/","id":428824,"name":"Shakedown","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-24-shakedown/4000-428824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-425893/","id":425893,"name":"The Demon's Tower","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-23-3-the-demon-s-tower/4000-425893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-432527/","id":432527,"name":"Бэтмен: Тихо!","site_detail_url":"https://comicvine.gamespot.com/batman-tiho-1-betmien-tikho/4000-432527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-422434/","id":422434,"name":"All Fall Down","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-23-all-fall-down/4000-422434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-419954/","id":419954,"name":"The Dark Knight and the Devil's Daughter","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated-13-the-dark-knight-and-the-dev/4000-419954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-418773/","id":418773,"name":"Dangerous People","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-22-dangerous-people/4000-418773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-411785/","id":411785,"name":"Dissolution","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-21-dissolution/4000-411785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408947/","id":408947,"name":"Shadows and Ghosts; Territorial","site_detail_url":"https://comicvine.gamespot.com/detective-comics-21-shadows-and-ghosts-territorial/4000-408947/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-406952/","id":406952,"name":"Trust Fall","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-annual-1-trust-fall/4000-406952/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-402239/","id":402239,"name":"Confessions","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-20-confessions/4000-402239/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401184/","id":401184,"name":"Beloved","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged-14-beloved/4000-401184/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408981/","id":408981,"name":"Pearl","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-pearl-1-pearl/4000-408981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409649/","id":409649,"name":"Father's Day Fun","site_detail_url":"https://comicvine.gamespot.com/batman-li-l-gotham-12-father-s-day-fun/4000-409649/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401196/","id":401196,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated-demon-star-1-volume-1/4000-401196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-404447/","id":404447,"name":"Mother's Day Mania","site_detail_url":"https://comicvine.gamespot.com/batman-li-l-gotham-11-mother-s-day-mania/4000-404447/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392024/","id":392024,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-201-1/4000-392024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-363054/","id":363054,"name":"Kill Box","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated-4-kill-box/4000-363054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-356720/","id":356720,"name":"Someday Never Comes","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-0-someday-never-comes/4000-356720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-347164/","id":347164,"name":"The Hanged Man","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated-3-the-hanged-man/4000-347164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-341642/","id":341642,"name":"Eye of the Gorgon","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated-2-eye-of-the-gorgon/4000-341642/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-354145/","id":354145,"name":"Beloved, Part 3","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged-40-beloved-part-3/4000-354145/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-352700/","id":352700,"name":"Beloved, Part 2","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged-39-beloved-part-2/4000-352700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-397383/","id":397383,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/batman-the-black-glove-deluxe-1-hc/4000-397383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-327461/","id":327461,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-shall-be-judged-1-tpb/4000-327461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324628/","id":324628,"name":"Batman #2 - Trust Fall/Batman Inc #3 - Scorpion Tango/Batwoman #2 - Hydrology Part 2: Infiltration","site_detail_url":"https://comicvine.gamespot.com/batman-legends-54-batman-2-trust-fallbatman-inc-3-/4000-324628/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316755/","id":316755,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-vs-bane-1-tpb/4000-316755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-324627/","id":324627,"name":"Batman #1 - Knife Trick/Batman Inc #2 - Resurrector!/Batwoman #1 - Hydrology Part 1: Leaching","site_detail_url":"https://comicvine.gamespot.com/batman-legends-53-batman-1-knife-trickbatman-inc-2/4000-324627/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-316132/","id":316132,"name":"Book Two","site_detail_url":"https://comicvine.gamespot.com/deadman-2-book-two/4000-316132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386460/","id":386460,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/young-justice-1-volume-1/4000-386460/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-315281/","id":315281,"name":"Batman: The Return/Batman Inc #1/Batwoman #0","site_detail_url":"https://comicvine.gamespot.com/batman-legends-52-batman-the-returnbatman-inc-1bat/4000-315281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334434/","id":334434,"name":"Batman #3 - The Thirteenth Hour/Batman Inc #4 - The Kate Kane Affair/Batwoman #3 - Hydrology Part 3: Gaining Stream","site_detail_url":"https://comicvine.gamespot.com/batman-legends-55-batman-3-the-thirteenth-hourbatm/4000-334434/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301669/","id":301669,"name":"Batman Dies At Dawn","site_detail_url":"https://comicvine.gamespot.com/the-all-new-batman-the-brave-and-the-bold-13-batma/4000-301669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-308925/","id":308925,"name":"Volume Five","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-batman-5-volume-five/4000-308925/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-294320/","id":294320,"name":"Batman: The Demon Laughs","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-batman-the-demon-laughs-1-batma/4000-294320/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-301832/","id":301832,"name":"Eye of the Beholder","site_detail_url":"https://comicvine.gamespot.com/batman-eye-of-the-beholder-1-eye-of-the-beholder/4000-301832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-292577/","id":292577,"name":"Volume Two","site_detail_url":"https://comicvine.gamespot.com/superman-the-black-ring-2-volume-two/4000-292577/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277679/","id":277679,"name":"100 Page Spectacular #4","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-superman-4-100-page-spectacular/4000-277679/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-279232/","id":279232,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-1-hc/4000-279232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-276340/","id":276340,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/red-hood-the-lost-days-1-tpb/4000-276340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268211/","id":268211,"name":"Judgment on Gotham, Part Two: A Soul in Silence","site_detail_url":"https://comicvine.gamespot.com/red-robin-22-judgment-on-gotham-part-two-a-soul-in/4000-268211/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-265991/","id":265991,"name":"Judgment on Gotham, Part One: One Good Man","site_detail_url":"https://comicvine.gamespot.com/batman-708-judgment-on-gotham-part-one-one-good-ma/4000-265991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-264633/","id":264633,"name":"The Tears of God, Part Two of Two: Fire and Sand","site_detail_url":"https://comicvine.gamespot.com/azrael-18-the-tears-of-god-part-two-of-two-fire-an/4000-264633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254664/","id":254664,"name":"Three Mysteries, Part Three: Fire The Color of Ice","site_detail_url":"https://comicvine.gamespot.com/azrael-16-three-mysteries-part-three-fire-the-colo/4000-254664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260079/","id":260079,"name":"Part 6","site_detail_url":"https://comicvine.gamespot.com/batman-odyssey-6-part-6/4000-260079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-247461/","id":247461,"name":"Father Box; A Father's Box","site_detail_url":"https://comicvine.gamespot.com/action-comics-annual-13-father-box-a-fathers-box/4000-247461/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-309363/","id":309363,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-batman-don-newton-1-volume-1/4000-309363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239843/","id":239843,"name":"A Life Worth Living","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-ras-al-ghul-1-a-life-wor/4000-239843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-239802/","id":239802,"name":"","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-oracle-1/4000-239802/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-238147/","id":238147,"name":"The Insider","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-red-robin-1-the-insider/4000-238147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221396/","id":221396,"name":"Vol. 2: Batman vs. Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-the-deluxe-edition-2-vol-2-batman/4000-221396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227833/","id":227833,"name":"School","site_detail_url":"https://comicvine.gamespot.com/red-hood-the-lost-days-3-school/4000-227833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223272/","id":223272,"name":"Baptism","site_detail_url":"https://comicvine.gamespot.com/red-hood-the-lost-days-2-baptism/4000-223272/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-255841/","id":255841,"name":"Death's Dark Knight","site_detail_url":"https://comicvine.gamespot.com/azrael-deaths-dark-knight-1-deaths-dark-knight/4000-255841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-233940/","id":233940,"name":"Collision","site_detail_url":"https://comicvine.gamespot.com/red-robin-collision-1-collision/4000-233940/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-217360/","id":217360,"name":"The First Step","site_detail_url":"https://comicvine.gamespot.com/red-hood-the-lost-days-1-the-first-step/4000-217360/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-211844/","id":211844,"name":"Collision, Part 4","site_detail_url":"https://comicvine.gamespot.com/red-robin-12-collision-part-4/4000-211844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221574/","id":221574,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/red-robin-the-grail-1-volume-1/4000-221574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-204538/","id":204538,"name":"Collison, Part 3","site_detail_url":"https://comicvine.gamespot.com/red-robin-11-collison-part-3/4000-204538/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199698/","id":199698,"name":"Batgirl Rising: Robins are Red...","site_detail_url":"https://comicvine.gamespot.com/batgirl-8-batgirl-rising-robins-are-red/4000-199698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199690/","id":199690,"name":"Collision, Part Two of Four","site_detail_url":"https://comicvine.gamespot.com/red-robin-10-collision-part-two-of-four/4000-199690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-195392/","id":195392,"name":"Collision, Part 1","site_detail_url":"https://comicvine.gamespot.com/red-robin-9-collision-part-1/4000-195392/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191402/","id":191402,"name":"Council of Spiders, Part 4","site_detail_url":"https://comicvine.gamespot.com/red-robin-8-council-of-spiders-part-4/4000-191402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-186789/","id":186789,"name":"Council of Spiders, Part 3","site_detail_url":"https://comicvine.gamespot.com/red-robin-7-council-of-spiders-part-3/4000-186789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182953/","id":182953,"name":"Private Casebook","site_detail_url":"https://comicvine.gamespot.com/batman-private-casebook-1-private-casebook/4000-182953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-182613/","id":182613,"name":"Council of Spiders, Part 2","site_detail_url":"https://comicvine.gamespot.com/red-robin-6-council-of-spiders-part-2/4000-182613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-175975/","id":175975,"name":"Council of Spiders, Part 1","site_detail_url":"https://comicvine.gamespot.com/red-robin-5-council-of-spiders-part-1/4000-175975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-304823/","id":304823,"name":"The Deep","site_detail_url":"https://comicvine.gamespot.com/the-outsiders-the-deep-1-the-deep/4000-304823/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170658/","id":170658,"name":"The Grail, Part 4","site_detail_url":"https://comicvine.gamespot.com/red-robin-4-the-grail-part-4/4000-170658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-201208/","id":201208,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-vault-1/4000-201208/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166784/","id":166784,"name":"The Grail, Part 3","site_detail_url":"https://comicvine.gamespot.com/red-robin-3-the-grail-part-3/4000-166784/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-163296/","id":163296,"name":"The Grail, Part 2","site_detail_url":"https://comicvine.gamespot.com/red-robin-2-the-grail-part-2/4000-163296/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164855/","id":164855,"name":"Girls Talk","site_detail_url":"https://comicvine.gamespot.com/gotham-city-sirens-2-girls-talk/4000-164855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164805/","id":164805,"name":"The Deep, Conclusion","site_detail_url":"https://comicvine.gamespot.com/the-outsiders-20-the-deep-conclusion/4000-164805/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166318/","id":166318,"name":"The Great Leap","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-great-leap-1-the-great-leap/4000-166318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166824/","id":166824,"name":"Hush","site_detail_url":"https://comicvine.gamespot.com/batman-hush-1-hush/4000-166824/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160430/","id":160430,"name":"The Deep, Part 5","site_detail_url":"https://comicvine.gamespot.com/the-outsiders-19-the-deep-part-5/4000-160430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159661/","id":159661,"name":"The Grail, Part 1","site_detail_url":"https://comicvine.gamespot.com/red-robin-1-the-grail-part-1/4000-159661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157147/","id":157147,"name":"Book Three: Why Ask Why?","site_detail_url":"https://comicvine.gamespot.com/azrael-deaths-dark-knight-3-book-three-why-ask-why/4000-157147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155917/","id":155917,"name":"Book Two: Give and Take","site_detail_url":"https://comicvine.gamespot.com/azrael-deaths-dark-knight-2-book-two-give-and-take/4000-155917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318459/","id":318459,"name":"A League of Their Own","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own-1-a-/4000-318459/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-190825/","id":190825,"name":"Batman R.I.P.","site_detail_url":"https://comicvine.gamespot.com/batman-rip-deluxe-edition-1-batman-rip/4000-190825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153683/","id":153683,"name":"Book One: Simple Sacrifices","site_detail_url":"https://comicvine.gamespot.com/azrael-deaths-dark-knight-1-book-one-simple-sacrif/4000-153683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150040/","id":150040,"name":"Eminence Front","site_detail_url":"https://comicvine.gamespot.com/nightwing-152-eminence-front/4000-150040/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311110/","id":311110,"name":"Batman: R.I.P.","site_detail_url":"https://comicvine.gamespot.com/batman-rip-1-batman-rip/4000-311110/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-318458/","id":318458,"name":"Family Business","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-family-business-1-family-b/4000-318458/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246355/","id":246355,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-mad-love-and-other-stories-1-tpb/4000-246355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148042/","id":148042,"name":"DC Comics Encyclopedia Updated and Expanded","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-2-dc-comics-encyclopedi/4000-148042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143147/","id":143147,"name":"Batman R.I.P.: The Conclusion - Hearts in Darkness","site_detail_url":"https://comicvine.gamespot.com/batman-681-batman-rip-the-conclusion-hearts-in-dar/4000-143147/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138389/","id":138389,"name":"The Son of the Father. The Father of the Son","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-12-the-son-of-the-father-t/4000-138389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221008/","id":221008,"name":"Freefall","site_detail_url":"https://comicvine.gamespot.com/nightwing-freefall-1-freefall/4000-221008/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135456/","id":135456,"name":"A League of Their Own, Part 3: The Man Behind the Curtain","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-11-a-league-of-their-own-p/4000-135456/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-287541/","id":287541,"name":"Wedding Album","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-the-wedding-album-1-weddin/4000-287541/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133049/","id":133049,"name":"A League of Their Own, Part 2: Step Up To The Plate And Swing Away","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-10-a-league-of-their-own-p/4000-133049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131418/","id":131418,"name":"A League of Their Own, Part 1: Rubber and Glue","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-9-a-league-of-their-own-pa/4000-131418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284873/","id":284873,"name":"Die Auferstehung des Ra's Al Ghul 4 von 4","site_detail_url":"https://comicvine.gamespot.com/batman-19-die-auferstehung-des-ras-al-ghul-4-von-4/4000-284873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130340/","id":130340,"name":"Haystack, Part 3: The Needle","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-8-haystack-part-3-the-need/4000-130340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218663/","id":218663,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-legends-21/4000-218663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134180/","id":134180,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-road-to-the-altar-1-tpb/4000-134180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284872/","id":284872,"name":"Die Auferstehung des Ra's Al Ghul 3 von 4","site_detail_url":"https://comicvine.gamespot.com/batman-18-die-auferstehung-des-ras-al-ghul-3-von-4/4000-284872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222497/","id":222497,"name":"Batman and Son","site_detail_url":"https://comicvine.gamespot.com/batman-and-son-1-batman-and-son/4000-222497/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-127121/","id":127121,"name":"Haystack, Part 2: Greetings from Far Away Lands","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-7-haystack-part-2-greeting/4000-127121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284871/","id":284871,"name":"Die Auferstehung des Ra's Al Ghul 2 von 4","site_detail_url":"https://comicvine.gamespot.com/batman-17-die-auferstehung-des-ras-al-ghul-2-von-4/4000-284871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218661/","id":218661,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-legends-19/4000-218661/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-126444/","id":126444,"name":"Freefall: Chapter Four","site_detail_url":"https://comicvine.gamespot.com/nightwing-143-freefall-chapter-four/4000-126444/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284870/","id":284870,"name":"Die Auferstehung des Ra's Al Ghul 1 von 4","site_detail_url":"https://comicvine.gamespot.com/batman-16-die-auferstehung-des-ras-al-ghul-1-von-4/4000-284870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286610/","id":286610,"name":"Fall Of The Wall","site_detail_url":"https://comicvine.gamespot.com/checkmate-fall-of-the-wall-1-fall-of-the-wall/4000-286610/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218659/","id":218659,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-legends-18/4000-218659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192100/","id":192100,"name":"The Resurrection Of Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-the-resurrection-of-ras-al-ghul-1-the-resur/4000-192100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122833/","id":122833,"name":"Child Support","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-5-child-support/4000-122833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121099/","id":121099,"name":"Dead Again: Conclusion: Please Play Where Daddy Can See You","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-4-dead-again-conclusion-pl/4000-121099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120917/","id":120917,"name":"The Resurrection of Ra's al Ghul: Epilogue","site_detail_url":"https://comicvine.gamespot.com/detective-comics-840-the-resurrection-of-ras-al-gh/4000-120917/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120251/","id":120251,"name":"The Resurrection of Ra's al Ghul, Part 7: Entitlement","site_detail_url":"https://comicvine.gamespot.com/detective-comics-839-the-resurrection-of-ras-al-gh/4000-120251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119903/","id":119903,"name":"The Resurrection of Ra's al Ghul, Part 6: Living Proof","site_detail_url":"https://comicvine.gamespot.com/nightwing-139-the-resurrection-of-ras-al-ghul-part/4000-119903/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119199/","id":119199,"name":"The Resurrection of Ra's al Ghul, Part 5","site_detail_url":"https://comicvine.gamespot.com/robin-169-the-resurrection-of-ras-al-ghul-part-5/4000-119199/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118739/","id":118739,"name":"The Resurrection of Ra's al Ghul, Part 4: He Who Is Master","site_detail_url":"https://comicvine.gamespot.com/batman-671-the-resurrection-of-ras-al-ghul-part-4-/4000-118739/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118095/","id":118095,"name":"The Resurrection of Ra's al Ghul, Part 3","site_detail_url":"https://comicvine.gamespot.com/detective-comics-838-the-resurrection-of-ras-al-gh/4000-118095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117891/","id":117891,"name":"The Resurrection of Ra's al Ghul, Part 2: The Lesser of Two Evils","site_detail_url":"https://comicvine.gamespot.com/nightwing-138-the-resurrection-of-ras-al-ghul-part/4000-117891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117065/","id":117065,"name":"The Resurrection of Ra's al Ghul, Part 1: A Boy For The Demon","site_detail_url":"https://comicvine.gamespot.com/robin-168-the-resurrection-of-ras-al-ghul-part-1-a/4000-117065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116386/","id":116386,"name":"A Prelude to the Resurrection of Ra's al Ghul: Lazarus Rising","site_detail_url":"https://comicvine.gamespot.com/batman-670-a-prelude-to-the-resurrection-of-ras-al/4000-116386/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-207943/","id":207943,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/supergirl-identity-1-volume-3/4000-207943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113546/","id":113546,"name":"Living With Sin, Conclusion","site_detail_url":"https://comicvine.gamespot.com/black-canary-4-living-with-sin-conclusion/4000-113546/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112557/","id":112557,"name":"Living With Sin, Part Three","site_detail_url":"https://comicvine.gamespot.com/black-canary-3-living-with-sin-part-three/4000-112557/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111893/","id":111893,"name":"Living With Sin, Part Two","site_detail_url":"https://comicvine.gamespot.com/black-canary-2-living-with-sin-part-two/4000-111893/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111970/","id":111970,"name":"Batman in Bethlehem","site_detail_url":"https://comicvine.gamespot.com/batman-666-batman-in-bethlehem/4000-111970/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284859/","id":284859,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-5/4000-284859/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-109609/","id":109609,"name":"The Black Casebook","site_detail_url":"https://comicvine.gamespot.com/batman-665-the-black-casebook/4000-109609/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-284858/","id":284858,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-4/4000-284858/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106388/","id":106388,"name":"Special","site_detail_url":"https://comicvine.gamespot.com/supergirl-14-special/4000-106388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221635/","id":221635,"name":"Robin: Wanted","site_detail_url":"https://comicvine.gamespot.com/robin-wanted-1-robin-wanted/4000-221635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-260043/","id":260043,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-brave-and-the-bold-batman-team-u/4000-260043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132701/","id":132701,"name":"Perfect Pitch","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-perfect-pitch-1-perfect-pitch/4000-132701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258793/","id":258793,"name":"Destruction's Daughter","site_detail_url":"https://comicvine.gamespot.com/batgirl-destructions-daughter-1-destructions-daugh/4000-258793/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114075/","id":114075,"name":"Batman & Son Part 1: Building a Better Batmobile","site_detail_url":"https://comicvine.gamespot.com/batman-655-batman-son-part-1-building-a-better-bat/4000-114075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110243/","id":110243,"name":"Harder Questions","site_detail_url":"https://comicvine.gamespot.com/robin-151-harder-questions/4000-110243/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110089/","id":110089,"name":"Hard Answers","site_detail_url":"https://comicvine.gamespot.com/robin-150-hard-answers/4000-110089/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123921/","id":123921,"name":"A Hero Dies But Once","site_detail_url":"https://comicvine.gamespot.com/villains-united-infinite-crisis-special-1-a-hero-d/4000-123921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121117/","id":121117,"name":"Blood Matters, Conclusion: Revelations","site_detail_url":"https://comicvine.gamespot.com/batgirl-73-blood-matters-conclusion-revelations/4000-121117/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134933/","id":134933,"name":"The Edwina Crisis: Chapter Three - The Gritty, Realistic Conclusion!","site_detail_url":"https://comicvine.gamespot.com/plastic-man-20-the-edwina-crisis-chapter-three-the/4000-134933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121114/","id":121114,"name":"Blood Matters, Part One: Prey for Her","site_detail_url":"https://comicvine.gamespot.com/batgirl-71-blood-matters-part-one-prey-for-her/4000-121114/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270340/","id":270340,"name":"Year One: Batman/Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/year-one-batmanras-al-ghul-1-year-one-batmanras-al/4000-270340/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258789/","id":258789,"name":"Kicking Assassins","site_detail_url":"https://comicvine.gamespot.com/batgirl-kicking-assassins-1-kicking-assassins/4000-258789/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134932/","id":134932,"name":"The Edwina Crisis! Chapter Two: The Death of Billy Batson","site_detail_url":"https://comicvine.gamespot.com/plastic-man-19-the-edwina-crisis-chapter-two-the-d/4000-134932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130863/","id":130863,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/year-one-batmanras-al-ghul-1-part-1/4000-130863/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234449/","id":234449,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/batman-illustrated-by-neal-adams-3-volume-3/4000-234449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121112/","id":121112,"name":"Destruction's Daughter, Part 4: Love's Labors...","site_detail_url":"https://comicvine.gamespot.com/batgirl-69-destructions-daughter-part-4-loves-labo/4000-121112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121098/","id":121098,"name":"Destruction's Daughter, Part 3: Motherlode","site_detail_url":"https://comicvine.gamespot.com/batgirl-68-destructions-daughter-part-3-motherlode/4000-121098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98365/","id":98365,"name":"The Edwina Crisis: Prologue - Part Four","site_detail_url":"https://comicvine.gamespot.com/plastic-man-18-the-edwina-crisis-prologue-part-fou/4000-98365/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-268616/","id":268616,"name":"Volume One","site_detail_url":"https://comicvine.gamespot.com/batman-under-the-hood-1-volume-one/4000-268616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121097/","id":121097,"name":"Destruction's Daughter, Part 2: Bird Calls","site_detail_url":"https://comicvine.gamespot.com/batgirl-67-destructions-daughter-part-2-bird-calls/4000-121097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-121095/","id":121095,"name":"A Mother of a Fathers Day","site_detail_url":"https://comicvine.gamespot.com/batgirl-65-a-mother-of-a-fathers-day/4000-121095/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129289/","id":129289,"name":"","site_detail_url":"https://comicvine.gamespot.com/mad-455/4000-129289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306949/","id":306949,"name":"Batman Begins Official Movie Adaptation","site_detail_url":"https://comicvine.gamespot.com/batman-begins-official-movie-adaptation-1-batman-b/4000-306949/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-194809/","id":194809,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/batman-begins-the-movie-and-other-tales-of-the-dar/4000-194809/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234448/","id":234448,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/batman-illustrated-by-neal-adams-2-volume-2/4000-234448/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259329/","id":259329,"name":"Vol 1: Rogues Gallery","site_detail_url":"https://comicvine.gamespot.com/batman-adventures-rogues-gallery-1-vol-1-rogues-ga/4000-259329/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-312344/","id":312344,"name":"Death and the Maidens TPB","site_detail_url":"https://comicvine.gamespot.com/batman-death-and-the-maidens-1-death-and-the-maide/4000-312344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120848/","id":120848,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-311220/","id":311220,"name":"Vol. 2","site_detail_url":"https://comicvine.gamespot.com/batman-hush-2-vol-2/4000-311220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168561/","id":168561,"name":"Need to Know , The Balance","site_detail_url":"https://comicvine.gamespot.com/batman-adventures-4-need-to-know-the-balance/4000-168561/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159228/","id":159228,"name":"My Boyfriend's Back, Breathing Room","site_detail_url":"https://comicvine.gamespot.com/batman-adventures-3-my-boyfriends-back-breathing-r/4000-159228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91385/","id":91385,"name":"Hush Chapter Nine: The Assasins","site_detail_url":"https://comicvine.gamespot.com/batman-616-hush-chapter-nine-the-assasins/4000-91385/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159227/","id":159227,"name":"No Asylum","site_detail_url":"https://comicvine.gamespot.com/batman-adventures-1-no-asylum/4000-159227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-705944/","id":705944,"name":"Hush","site_detail_url":"https://comicvine.gamespot.com/jim-lees-batman-5-hush/4000-705944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112853/","id":112853,"name":"The Enemy of My Enemy","site_detail_url":"https://comicvine.gamespot.com/deadman-9-the-enemy-of-my-enemy/4000-112853/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112851/","id":112851,"name":"The Children of Paradise","site_detail_url":"https://comicvine.gamespot.com/deadman-7-the-children-of-paradise/4000-112851/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266174/","id":266174,"name":"Deadman Collection","site_detail_url":"https://comicvine.gamespot.com/deadman-collection-1-deadman-collection/4000-266174/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-55315/","id":55315,"name":"Retribution Part 2 of 2: Contested","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-knights-21-retribution-part-2-of-2-c/4000-55315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112387/","id":112387,"name":"Heartbreaker","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-34-heartbreaker/4000-112387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112363/","id":112363,"name":"The Courtship","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-33-the-courtship/4000-112363/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51374/","id":51374,"name":"The Demon Laughs, Part Four: Mad About You","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-145-the-demon-la/4000-51374/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51373/","id":51373,"name":"The Demon Laughs, Part Three: The March Hare","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-144-the-demon-la/4000-51373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51372/","id":51372,"name":"The Demon Laughs, Part Two: Running Wild","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-143-the-demon-la/4000-51372/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-51371/","id":51371,"name":"The Demon Laughs, Part One: Exit Screaming","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-142-the-demon-la/4000-51371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150565/","id":150565,"name":"The Why; The Most Suitable Person; The Great Debate; Rockets' Red Glare...; Power Couple; He's Coming Mr. Lew-Thor;","site_detail_url":"https://comicvine.gamespot.com/president-luthor-secret-files-1-the-why-the-most-s/4000-150565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68425/","id":68425,"name":"","site_detail_url":"https://comicvine.gamespot.com/robin-year-one-4/4000-68425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-68424/","id":68424,"name":"","site_detail_url":"https://comicvine.gamespot.com/robin-year-one-3/4000-68424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114427/","id":114427,"name":"Kith and Kin, Part 2","site_detail_url":"https://comicvine.gamespot.com/action-comics-773-kith-and-kin-part-2/4000-114427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-258794/","id":258794,"name":"New Gotham: Vol. 01: Evolution","site_detail_url":"https://comicvine.gamespot.com/batman-evolution-1-new-gotham-vol-01-evolution/4000-258794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-114466/","id":114466,"name":"Kith and Kin, Part One","site_detail_url":"https://comicvine.gamespot.com/action-comics-772-kith-and-kin-part-one/4000-114466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113219/","id":113219,"name":"Dependence","site_detail_url":"https://comicvine.gamespot.com/detective-comics-750-dependence/4000-113219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75547/","id":75547,"name":"Pay the Ferryman","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles-22-pay-the-ferryman/4000-75547/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113216/","id":113216,"name":"Evolution: (Part Four): Aftertaste","site_detail_url":"https://comicvine.gamespot.com/detective-comics-746-evolution-part-four-aftertast/4000-113216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113215/","id":113215,"name":"Evolution: (Part Three): Law of the Land","site_detail_url":"https://comicvine.gamespot.com/detective-comics-745-evolution-part-three-law-of-t/4000-113215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113214/","id":113214,"name":"Evolution: (Part Two): Unity of Purpose","site_detail_url":"https://comicvine.gamespot.com/detective-comics-744-evolution-part-two-unity-of-p/4000-113214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-107589/","id":107589,"name":"Evolution: (Part One): Whispers in the Dark","site_detail_url":"https://comicvine.gamespot.com/detective-comics-743-evolution-part-one-whispers-i/4000-107589/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151026/","id":151026,"name":"GN","site_detail_url":"https://comicvine.gamespot.com/batman-the-chalice-1-gn/4000-151026/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-248571/","id":248571,"name":"Convergence","site_detail_url":"https://comicvine.gamespot.com/the-kingdom-son-of-the-bat-1-convergence/4000-248571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134935/","id":134935,"name":"A League of His Own!","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-adventures-9-a-league-of-his-own/4000-134935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-446691/","id":446691,"name":"Batman e Homem-Aranha","site_detail_url":"https://comicvine.gamespot.com/batman-and-homem-aranha-1-batman-e-homem-aranha/4000-446691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76081/","id":76081,"name":"Part 4","site_detail_url":"https://comicvine.gamespot.com/batman-bane-of-the-demon-4-part-4/4000-76081/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-76077/","id":76077,"name":"Part 2","site_detail_url":"https://comicvine.gamespot.com/batman-bane-of-the-demon-2-part-2/4000-76077/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135440/","id":135440,"name":"The Contract; House of Cards; Trapped; A Bird With a Hand; Love Me 2 Times; Little Orphan Andy","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles-12-the-contract-house-of-car/4000-135440/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136438/","id":136438,"name":"Part 1","site_detail_url":"https://comicvine.gamespot.com/batman-bane-of-the-demon-1-part-1/4000-136438/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44164/","id":44164,"name":"","site_detail_url":"https://comicvine.gamespot.com/elseworlds-finest-1/4000-44164/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166513/","id":166513,"name":"New Age Dawning","site_detail_url":"https://comicvine.gamespot.com/batmanspider-man-1-new-age-dawning/4000-166513/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-75532/","id":75532,"name":"Choices; Shadow Job; Cityscape","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles-6-choices-shadow-job-citysca/4000-75532/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-42766/","id":42766,"name":"A Wound on the Heart of Heaven","site_detail_url":"https://comicvine.gamespot.com/batman-534-a-wound-on-the-heart-of-heaven/4000-42766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-214659/","id":214659,"name":"Batman: Legacy","site_detail_url":"https://comicvine.gamespot.com/batman-legacy-1-batman-legacy/4000-214659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173418/","id":173418,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-brotherhood-of-the-bat-1/4000-173418/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38592/","id":38592,"name":"The Tangled Web","site_detail_url":"https://comicvine.gamespot.com/the-batman-adventures-17-the-tangled-web/4000-38592/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261378/","id":261378,"name":"Tales of the Demon","site_detail_url":"https://comicvine.gamespot.com/batman-tales-of-the-demon-1-tales-of-the-demon/4000-261378/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-32397/","id":32397,"name":"Caging the Tiger","site_detail_url":"https://comicvine.gamespot.com/suicide-squad-38-caging-the-tiger/4000-32397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-362922/","id":362922,"name":"Die Sage von Ras Al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-klassik-1-die-sage-von-ras-al-ghul/4000-362922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-270015/","id":270015,"name":"The Demon Awakes","site_detail_url":"https://comicvine.gamespot.com/batman-the-demon-awakes-1-the-demon-awakes/4000-270015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-30956/","id":30956,"name":"The Wall","site_detail_url":"https://comicvine.gamespot.com/batman-431-the-wall/4000-30956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227669/","id":227669,"name":"Bruce Wayne -- Rest in Peace!","site_detail_url":"https://comicvine.gamespot.com/the-saga-of-ras-al-ghul-3-bruce-wayne-rest-in-peac/4000-227669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227668/","id":227668,"name":"Swamp Sinister","site_detail_url":"https://comicvine.gamespot.com/the-saga-of-ras-al-ghul-2-swamp-sinister/4000-227668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-227396/","id":227396,"name":"\"In To The Den of the Death-Dealers!","site_detail_url":"https://comicvine.gamespot.com/the-saga-of-ras-al-ghul-1-in-to-the-den-of-the-dea/4000-227396/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-28181/","id":28181,"name":"Death Like A Crown; The Secret Origin of the Spectre","site_detail_url":"https://comicvine.gamespot.com/secret-origins-15-death-like-a-crown-the-secret-or/4000-28181/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26840/","id":26840,"name":"Circle of Fire","site_detail_url":"https://comicvine.gamespot.com/deadman-4-circle-of-fire/4000-26840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26746/","id":26746,"name":"Breaking the Barrier","site_detail_url":"https://comicvine.gamespot.com/deadman-3-breaking-the-barrier/4000-26746/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26651/","id":26651,"name":"This Mortal Coil!","site_detail_url":"https://comicvine.gamespot.com/deadman-2-this-mortal-coil/4000-26651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133879/","id":133879,"name":"Krona to Losers","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4000-133879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-26034/","id":26034,"name":"All This Has Gone Before","site_detail_url":"https://comicvine.gamespot.com/deadman-7-all-this-has-gone-before/4000-26034/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-25928/","id":25928,"name":"To Haunt a Killer","site_detail_url":"https://comicvine.gamespot.com/deadman-6-to-haunt-a-killer/4000-25928/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24548/","id":24548,"name":"Batman Family","site_detail_url":"https://comicvine.gamespot.com/the-best-of-dc-51-batman-family/4000-24548/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53099/","id":53099,"name":"The Messiah of the Crimson Sun","site_detail_url":"https://comicvine.gamespot.com/batman-annual-8-the-messiah-of-the-crimson-sun/4000-53099/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20935/","id":20935,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/the-best-of-dc-9-batman/4000-20935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-602862/","id":602862,"name":" On recherche Père Noël, mort ou vif !","site_detail_url":"https://comicvine.gamespot.com/batman-poche-33-on-recherche-pere-noel-mort-ou-vif/4000-602862/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-602435/","id":602435,"name":"Ne plus lâcher le Fantôme ","site_detail_url":"https://comicvine.gamespot.com/batman-poche-31-ne-plus-lacher-le-fantome/4000-602435/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-602193/","id":602193,"name":"","site_detail_url":"https://comicvine.gamespot.com/batman-poche-29/4000-602193/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112837/","id":112837,"name":"Requiem for a Martyr!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-490-requiem-for-a-martyr/4000-112837/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112836/","id":112836,"name":"Creatures of the Night!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-489-creatures-of-the-night/4000-112836/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20131/","id":20131,"name":"The Crystal Armageddon!","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold-159-the-crystal-armageddon/4000-20131/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112834/","id":112834,"name":"The Perils of Sergius; The Aliens Among Us!; The Iron Solution; The Case of the Campaign Crimes","site_detail_url":"https://comicvine.gamespot.com/detective-comics-487-the-perils-of-sergius-the-ali/4000-112834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112832/","id":112832,"name":"The Vengeance Vow!; The Case of the Cavorting Corpse!; The Fatal Finale!; The Case of the Untouchable Crook!; SST -- The Super-Sonic Threat!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-485-the-vengeance-vow-the-case-of/4000-112832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124382/","id":124382,"name":"The Crimson Comets of Fallville High","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-459-the-crimson-comets-of-fallvil/4000-124382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-18691/","id":18691,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/dc-special-series-15-batman/4000-18691/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-184811/","id":184811,"name":"","site_detail_url":"https://comicvine.gamespot.com/limited-collectors-edition-51/4000-184811/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17394/","id":17394,"name":"Merlyn Means Murder","site_detail_url":"https://comicvine.gamespot.com/black-lightning-2-merlyn-means-murder/4000-17394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17070/","id":17070,"name":"Enter the Lair of the Viper--And Die!","site_detail_url":"https://comicvine.gamespot.com/richard-dragon-kung-fu-fighter-13-enter-the-lair-o/4000-17070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-596084/","id":596084,"name":"Drame sous le grand chapiteau","site_detail_url":"https://comicvine.gamespot.com/batman-poche-2-drame-sous-le-grand-chapiteau/4000-596084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12787/","id":12787,"name":"","site_detail_url":"https://comicvine.gamespot.com/super-adventure-comic-57/4000-12787/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11759/","id":11759,"name":"Where Strikes Demonfang?; The Sandman/Starman","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-94-where-strikes-demonfa/4000-11759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112680/","id":112680,"name":"\"Into the Den of the Death-Dealers!\" ; Cut... and Run!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-411-into-the-den-of-the-death-dea/4000-112680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112660/","id":112660,"name":"The House That Haunted Batman! / The Phantom Bullfighter!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-408-the-house-that-haunted-batman/4000-112660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112658/","id":112658,"name":"Your Servant of Death -- Dr. Darrk!; The Explosive Circle!","site_detail_url":"https://comicvine.gamespot.com/detective-comics-406-your-servant-of-death-dr-darr/4000-112658/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-112657/","id":112657,"name":"The First of the Assassins! ; The Living Statue;","site_detail_url":"https://comicvine.gamespot.com/detective-comics-405-the-first-of-the-assassins-th/4000-112657/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-889865/","id":889865,"name":"Batman - Hush 2","site_detail_url":"https://comicvine.gamespot.com/dc-comics-graphic-novel-collection-2-batman-hush-2/4000-889865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-585238/","id":585238,"name":"Hush Combattimento Mortale","site_detail_url":"https://comicvine.gamespot.com/batman-magazine-9-hush-combattimento-mortale/4000-585238/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2677/","id":2677,"name":"Catwoman: Hunted","site_detail_url":"https://comicvine.gamespot.com/catwoman-hunted/4025-2677/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2514/","id":2514,"name":"Batman: Death in the Family","site_detail_url":"https://comicvine.gamespot.com/batman-death-in-the-family/4025-2514/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2436/","id":2436,"name":"Justice League DARK: Apokolips War","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-apokolips-war/4025-2436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2388/","id":2388,"name":"Batman vs. Teenage Mutant Ninja Turtles","site_detail_url":"https://comicvine.gamespot.com/batman-vs-teenage-mutant-ninja-turtles/4025-2388/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2151/","id":2151,"name":"Batman: Bad Blood","site_detail_url":"https://comicvine.gamespot.com/batman-bad-blood/4025-2151/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1935/","id":1935,"name":"Son of Batman","site_detail_url":"https://comicvine.gamespot.com/son-of-batman/4025-1935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-1214/","id":1214,"name":"The Dark Knight Rises","site_detail_url":"https://comicvine.gamespot.com/the-dark-knight-rises/4025-1214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-916/","id":916,"name":"Batman: Under The Red Hood","site_detail_url":"https://comicvine.gamespot.com/batman-under-the-red-hood/4025-916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-12/","id":12,"name":"Batman Begins","site_detail_url":"https://comicvine.gamespot.com/batman-begins/4025-12/"}],"name":"League of Assassins","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/league-of-assassins/4060-9591/","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56194/","id":56194,"name":"Countdown to Final Crisis","site_detail_url":"https://comicvine.gamespot.com/countdown-to-final-crisis/4045-56194/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56962/","id":56962,"name":"Miles Behind Us","site_detail_url":"https://comicvine.gamespot.com/miles-behind-us/4045-56962/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57138/","id":57138,"name":"The Man Who Lived Twice","site_detail_url":"https://comicvine.gamespot.com/the-man-who-lived-twice/4045-57138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57265/","id":57265,"name":"Invasive Exotic","site_detail_url":"https://comicvine.gamespot.com/invasive-exotic/4045-57265/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-57989/","id":57989,"name":"Frat Pack","site_detail_url":"https://comicvine.gamespot.com/frat-pack/4045-57989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58273/","id":58273,"name":"Love Dares You","site_detail_url":"https://comicvine.gamespot.com/love-dares-you/4045-58273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58261/","id":58261,"name":"Champions","site_detail_url":"https://comicvine.gamespot.com/champions/4045-58261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-56864/","id":56864,"name":"Taster's Choice","site_detail_url":"https://comicvine.gamespot.com/tasters-choice/4045-56864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58251/","id":58251,"name":"Convergence","site_detail_url":"https://comicvine.gamespot.com/convergence/4045-58251/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58266/","id":58266,"name":"Secret Wars","site_detail_url":"https://comicvine.gamespot.com/secret-wars/4045-58266/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-58680/","id":58680,"name":"Unpacking","site_detail_url":"https://comicvine.gamespot.com/unpacking/4045-58680/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59189/","id":59189,"name":"No Going Back","site_detail_url":"https://comicvine.gamespot.com/no-going-back/4045-59189/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-59571/","id":59571,"name":"Worlds Collide","site_detail_url":"https://comicvine.gamespot.com/worlds-collide/4045-59571/"},{"api_detail_url":"https://comicvine.gamespot.com/api/story_arc/4045-60776/","id":60776,"name":"Kawaki Arc","site_detail_url":"https://comicvine.gamespot.com/kawaki-arc/4045-60776/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2014/","id":2014,"name":"Justice League of America","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america/4050-2014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28309/","id":28309,"name":"Super Adventure Comic","site_detail_url":"https://comicvine.gamespot.com/super-adventure-comic/4050-28309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2737/","id":2737,"name":"Richard Dragon, Kung Fu Fighter","site_detail_url":"https://comicvine.gamespot.com/richard-dragon-kung-fu-fighter/4050-2737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2884/","id":2884,"name":"Black Lightning","site_detail_url":"https://comicvine.gamespot.com/black-lightning/4050-2884/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2886/","id":2886,"name":"DC Special Series","site_detail_url":"https://comicvine.gamespot.com/dc-special-series/4050-2886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1683/","id":1683,"name":"The Brave and the Bold","site_detail_url":"https://comicvine.gamespot.com/the-brave-and-the-bold/4050-1683/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2989/","id":2989,"name":"The Best of DC","site_detail_url":"https://comicvine.gamespot.com/the-best-of-dc/4050-2989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3443/","id":3443,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4050-3443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3598/","id":3598,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4050-3598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3616/","id":3616,"name":"Secret Origins","site_detail_url":"https://comicvine.gamespot.com/secret-origins/4050-3616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-796/","id":796,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4050-796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3815/","id":3815,"name":"Suicide Squad","site_detail_url":"https://comicvine.gamespot.com/suicide-squad/4050-3815/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4716/","id":4716,"name":"The Batman Adventures","site_detail_url":"https://comicvine.gamespot.com/the-batman-adventures/4050-4716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5948/","id":5948,"name":"Elseworld's Finest","site_detail_url":"https://comicvine.gamespot.com/elseworlds-finest/4050-5948/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4720/","id":4720,"name":"Batman: Legends of the Dark Knight","site_detail_url":"https://comicvine.gamespot.com/batman-legends-of-the-dark-knight/4050-4720/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3109/","id":3109,"name":"Batman Annual","site_detail_url":"https://comicvine.gamespot.com/batman-annual/4050-3109/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7207/","id":7207,"name":"Batman: Gotham Knights","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-knights/4050-7207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9134/","id":9134,"name":"Robin: Year One","site_detail_url":"https://comicvine.gamespot.com/robin-year-one/4050-9134/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6598/","id":6598,"name":"The Batman Chronicles","site_detail_url":"https://comicvine.gamespot.com/the-batman-chronicles/4050-6598/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9382/","id":9382,"name":"Batman: Bane of the Demon","site_detail_url":"https://comicvine.gamespot.com/batman-bane-of-the-demon/4050-9382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11111/","id":11111,"name":"Plastic Man","site_detail_url":"https://comicvine.gamespot.com/plastic-man/4050-11111/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18012/","id":18012,"name":"Supergirl","site_detail_url":"https://comicvine.gamespot.com/supergirl/4050-18012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18058/","id":18058,"name":"Detective Comics","site_detail_url":"https://comicvine.gamespot.com/detective-comics/4050-18058/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4975/","id":4975,"name":"Robin","site_detail_url":"https://comicvine.gamespot.com/robin/4050-4975/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18833/","id":18833,"name":"Black Canary","site_detail_url":"https://comicvine.gamespot.com/black-canary/4050-18833/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6498/","id":6498,"name":"Birds of Prey","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey/4050-6498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9397/","id":9397,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4050-9397/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18005/","id":18005,"name":"Action Comics","site_detail_url":"https://comicvine.gamespot.com/action-comics/4050-18005/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5755/","id":5755,"name":"Nightwing","site_detail_url":"https://comicvine.gamespot.com/nightwing/4050-5755/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20244/","id":20244,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7205/","id":7205,"name":"Batgirl","site_detail_url":"https://comicvine.gamespot.com/batgirl/4050-7205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-19240/","id":19240,"name":"Green Arrow/Black Canary","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary/4050-19240/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20668/","id":20668,"name":"Villains United: Infinite Crisis Special","site_detail_url":"https://comicvine.gamespot.com/villains-united-infinite-crisis-special/4050-20668/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3105/","id":3105,"name":"Adventure Comics","site_detail_url":"https://comicvine.gamespot.com/adventure-comics/4050-3105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-9318/","id":9318,"name":"MAD","site_detail_url":"https://comicvine.gamespot.com/mad/4050-9318/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21686/","id":21686,"name":"Year One: Batman/Ra's al Ghul","site_detail_url":"https://comicvine.gamespot.com/year-one-batmanras-al-ghul/4050-21686/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22007/","id":22007,"name":"Birds of Prey: Perfect Pitch","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-perfect-pitch/4050-22007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18197/","id":18197,"name":"Who's Who: The Definitive Directory of the DC Universe","site_detail_url":"https://comicvine.gamespot.com/whos-who-the-definitive-directory-of-the-dc-univer/4050-18197/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22314/","id":22314,"name":"Green Arrow/Black Canary: Road to the Altar","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-road-to-the-altar/4050-22314/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6146/","id":6146,"name":"Batman: Gotham Adventures","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-adventures/4050-6146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25521/","id":25521,"name":"President Luthor Secret Files","site_detail_url":"https://comicvine.gamespot.com/president-luthor-secret-files/4050-25521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25619/","id":25619,"name":"Batman: The Chalice","site_detail_url":"https://comicvine.gamespot.com/batman-the-chalice/4050-25619/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26000/","id":26000,"name":"Azrael: Death's Dark Knight","site_detail_url":"https://comicvine.gamespot.com/azrael-deaths-dark-knight/4050-26000/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20465/","id":20465,"name":"Batman Adventures","site_detail_url":"https://comicvine.gamespot.com/batman-adventures/4050-20465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26651/","id":26651,"name":"Red Robin","site_detail_url":"https://comicvine.gamespot.com/red-robin/4050-26651/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25804/","id":25804,"name":"The Outsiders","site_detail_url":"https://comicvine.gamespot.com/the-outsiders/4050-25804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-26891/","id":26891,"name":"Gotham City Sirens","site_detail_url":"https://comicvine.gamespot.com/gotham-city-sirens/4050-26891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27290/","id":27290,"name":"Nightwing: The Great Leap","site_detail_url":"https://comicvine.gamespot.com/nightwing-the-great-leap/4050-27290/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27345/","id":27345,"name":"Batman/Spider-Man","site_detail_url":"https://comicvine.gamespot.com/batmanspider-man/4050-27345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27384/","id":27384,"name":"Batman: Hush","site_detail_url":"https://comicvine.gamespot.com/batman-hush/4050-27384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28201/","id":28201,"name":"Batman: Brotherhood of the Bat","site_detail_url":"https://comicvine.gamespot.com/batman-brotherhood-of-the-bat/4050-28201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29723/","id":29723,"name":"Batman: Private Casebook","site_detail_url":"https://comicvine.gamespot.com/batman-private-casebook/4050-29723/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29993/","id":29993,"name":"Limited Collectors' Edition","site_detail_url":"https://comicvine.gamespot.com/limited-collectors-edition/4050-29993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30879/","id":30879,"name":"Batman: R.I.P. Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/batman-rip-deluxe-edition/4050-30879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31003/","id":31003,"name":"Batman: The Resurrection Of Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-the-resurrection-of-ras-al-ghul/4050-31003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31294/","id":31294,"name":"Batman Begins: The Movie and Other Tales of the Dark Knight","site_detail_url":"https://comicvine.gamespot.com/batman-begins-the-movie-and-other-tales-of-the-dar/4050-31294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-27457/","id":27457,"name":"Batgirl","site_detail_url":"https://comicvine.gamespot.com/batgirl/4050-27457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32071/","id":32071,"name":"The Batman Vault","site_detail_url":"https://comicvine.gamespot.com/the-batman-vault/4050-32071/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32635/","id":32635,"name":"Supergirl: Identity","site_detail_url":"https://comicvine.gamespot.com/supergirl-identity/4050-32635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33182/","id":33182,"name":"Batman: Legacy","site_detail_url":"https://comicvine.gamespot.com/batman-legacy/4050-33182/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33498/","id":33498,"name":"Red Hood: The Lost Days","site_detail_url":"https://comicvine.gamespot.com/red-hood-the-lost-days/4050-33498/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31443/","id":31443,"name":"Batman Legends","site_detail_url":"https://comicvine.gamespot.com/batman-legends/4050-31443/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33932/","id":33932,"name":"Nightwing: Freefall","site_detail_url":"https://comicvine.gamespot.com/nightwing-freefall/4050-33932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-32454/","id":32454,"name":"Batman and Robin: The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-the-deluxe-edition/4050-32454/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33982/","id":33982,"name":"Red Robin: The Grail","site_detail_url":"https://comicvine.gamespot.com/red-robin-the-grail/4050-33982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33993/","id":33993,"name":"Robin: Wanted","site_detail_url":"https://comicvine.gamespot.com/robin-wanted/4050-33993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34112/","id":34112,"name":"Batman and Son","site_detail_url":"https://comicvine.gamespot.com/batman-and-son/4050-34112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34687/","id":34687,"name":"The Saga of Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/the-saga-of-ras-al-ghul/4050-34687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35431/","id":35431,"name":"Red Robin: Collision","site_detail_url":"https://comicvine.gamespot.com/red-robin-collision/4050-35431/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35482/","id":35482,"name":"Batman: Illustrated by Neal Adams","site_detail_url":"https://comicvine.gamespot.com/batman-illustrated-by-neal-adams/4050-35482/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36063/","id":36063,"name":"Bruce Wayne: The Road Home: Red Robin","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-red-robin/4050-36063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36338/","id":36338,"name":"Bruce Wayne: The Road Home: Oracle","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-oracle/4050-36338/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36351/","id":36351,"name":"Bruce Wayne: The Road Home: Ra's al Ghul","site_detail_url":"https://comicvine.gamespot.com/bruce-wayne-the-road-home-ras-al-ghul/4050-36351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35785/","id":35785,"name":"Batman: Mad Love and Other Stories","site_detail_url":"https://comicvine.gamespot.com/batman-mad-love-and-other-stories/4050-35785/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3776/","id":3776,"name":"Action Comics Annual","site_detail_url":"https://comicvine.gamespot.com/action-comics-annual/4050-3776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-37362/","id":37362,"name":"The Kingdom: Son of the Bat","site_detail_url":"https://comicvine.gamespot.com/the-kingdom-son-of-the-bat/4050-37362/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28873/","id":28873,"name":"Azrael","site_detail_url":"https://comicvine.gamespot.com/azrael/4050-28873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38218/","id":38218,"name":"Azrael: Death's Dark Knight","site_detail_url":"https://comicvine.gamespot.com/azrael-deaths-dark-knight/4050-38218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38564/","id":38564,"name":"Batgirl: Kicking Assassins","site_detail_url":"https://comicvine.gamespot.com/batgirl-kicking-assassins/4050-38564/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38565/","id":38565,"name":"Batgirl: Destruction's Daughter","site_detail_url":"https://comicvine.gamespot.com/batgirl-destructions-daughter/4050-38565/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38566/","id":38566,"name":"Batman: Evolution","site_detail_url":"https://comicvine.gamespot.com/batman-evolution/4050-38566/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38645/","id":38645,"name":"Batman Adventures: Rogues Gallery","site_detail_url":"https://comicvine.gamespot.com/batman-adventures-rogues-gallery/4050-38645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38777/","id":38777,"name":"Showcase Presents: Brave and the Bold: Batman Team-Ups","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-brave-and-the-bold-batman-team-u/4050-38777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34242/","id":34242,"name":"Batman: Odyssey","site_detail_url":"https://comicvine.gamespot.com/batman-odyssey/4050-34242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38916/","id":38916,"name":"Batman: Tales of the Demon","site_detail_url":"https://comicvine.gamespot.com/batman-tales-of-the-demon/4050-38916/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39403/","id":39403,"name":"Deadman Collection","site_detail_url":"https://comicvine.gamespot.com/deadman-collection/4050-39403/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39817/","id":39817,"name":"Batman: Under The Hood","site_detail_url":"https://comicvine.gamespot.com/batman-under-the-hood/4050-39817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40115/","id":40115,"name":"Batman: The Demon Awakes","site_detail_url":"https://comicvine.gamespot.com/batman-the-demon-awakes/4050-40115/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40196/","id":40196,"name":"Year One: Batman/Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/year-one-batmanras-al-ghul/4050-40196/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40961/","id":40961,"name":"Red Hood: The Lost Days","site_detail_url":"https://comicvine.gamespot.com/red-hood-the-lost-days/4050-40961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36358/","id":36358,"name":"DC Comics Presents: Superman","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-superman/4050-36358/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41341/","id":41341,"name":"Batman: Bruce Wayne - The Road Home","site_detail_url":"https://comicvine.gamespot.com/batman-bruce-wayne-the-road-home/4050-41341/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41855/","id":41855,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4050-41855/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42097/","id":42097,"name":"Checkmate: Fall of the Wall","site_detail_url":"https://comicvine.gamespot.com/checkmate-fall-of-the-wall/4050-42097/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42223/","id":42223,"name":"Green Arrow/Black Canary: The Wedding Album","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-the-wedding-album/4050-42223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39645/","id":39645,"name":"Superman: The Black Ring","site_detail_url":"https://comicvine.gamespot.com/superman-the-black-ring/4050-39645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43150/","id":43150,"name":"DC Comics Presents: Batman - The Demon Laughs","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-batman-the-demon-laughs/4050-43150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36629/","id":36629,"name":"The All-New Batman: The Brave and the Bold","site_detail_url":"https://comicvine.gamespot.com/the-all-new-batman-the-brave-and-the-bold/4050-36629/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43908/","id":43908,"name":"Batman: Eye of the Beholder","site_detail_url":"https://comicvine.gamespot.com/batman-eye-of-the-beholder/4050-43908/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44303/","id":44303,"name":"The Outsiders: The Deep","site_detail_url":"https://comicvine.gamespot.com/the-outsiders-the-deep/4050-44303/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44587/","id":44587,"name":"Batman Begins Official Movie Adaptation","site_detail_url":"https://comicvine.gamespot.com/batman-begins-official-movie-adaptation/4050-44587/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38664/","id":38664,"name":"Showcase Presents: Batman","site_detail_url":"https://comicvine.gamespot.com/showcase-presents-batman/4050-38664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-44944/","id":44944,"name":"Tales of the Batman: Don Newton","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-batman-don-newton/4050-44944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45155/","id":45155,"name":"Batman: R.I.P.","site_detail_url":"https://comicvine.gamespot.com/batman-rip/4050-45155/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35076/","id":35076,"name":"Batman: Hush","site_detail_url":"https://comicvine.gamespot.com/batman-hush/4050-35076/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45351/","id":45351,"name":"Batman: Death and the Maidens","site_detail_url":"https://comicvine.gamespot.com/batman-death-and-the-maidens/4050-45351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40402/","id":40402,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4050-40402/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46042/","id":46042,"name":"Batman Versus Bane","site_detail_url":"https://comicvine.gamespot.com/batman-versus-bane/4050-46042/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46236/","id":46236,"name":"Green Arrow/Black Canary: Family Business","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-family-business/4050-46236/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46237/","id":46237,"name":"Green Arrow/Black Canary: A League of Their Own","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own/4050-46237/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47612/","id":47612,"name":"Batman: Gotham Shall Be Judged","site_detail_url":"https://comicvine.gamespot.com/batman-gotham-shall-be-judged/4050-47612/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49112/","id":49112,"name":"Batman, Incorporated","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated/4050-49112/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-43361/","id":43361,"name":"Batman: Arkham Unhinged","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged/4050-43361/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42692/","id":42692,"name":"Batman and Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin/4050-42692/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53310/","id":53310,"name":"Batman Klassik","site_detail_url":"https://comicvine.gamespot.com/batman-klassik/4050-53310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57292/","id":57292,"name":"Young Justice","site_detail_url":"https://comicvine.gamespot.com/young-justice/4050-57292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-58794/","id":58794,"name":"Batman 201","site_detail_url":"https://comicvine.gamespot.com/batman-201/4050-58794/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-55533/","id":55533,"name":"Batman: The Black Glove Deluxe","site_detail_url":"https://comicvine.gamespot.com/batman-the-black-glove-deluxe/4050-55533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-47791/","id":47791,"name":"Batman: Arkham Unhinged","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged/4050-47791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60914/","id":60914,"name":"Batman Incorporated: Demon Star","site_detail_url":"https://comicvine.gamespot.com/batman-incorporated-demon-star/4050-60914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42919/","id":42919,"name":"Red Hood and the Outlaws","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws/4050-42919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-53584/","id":53584,"name":"Batman: Li'l Gotham","site_detail_url":"https://comicvine.gamespot.com/batman-lil-gotham/4050-53584/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62346/","id":62346,"name":"Red Hood and the Outlaws Annual","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-annual/4050-62346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42594/","id":42594,"name":"Detective Comics","site_detail_url":"https://comicvine.gamespot.com/detective-comics/4050-42594/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-62873/","id":62873,"name":"Batman and Robin: Pearl","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-pearl/4050-62873/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68700/","id":68700,"name":"Damian: Son of Batman","site_detail_url":"https://comicvine.gamespot.com/damian-son-of-batman/4050-68700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-68977/","id":68977,"name":"Batman: Tiho!","site_detail_url":"https://comicvine.gamespot.com/batman-tiho/4050-68977/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-69864/","id":69864,"name":"DC Comics The New 52 Villains Omnibus","site_detail_url":"https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus/4050-69864/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-57241/","id":57241,"name":"Batman: Arkham Unhinged","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-unhinged/4050-57241/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42806/","id":42806,"name":"Birds of Prey","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey/4050-42806/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-52400/","id":52400,"name":"Talon","site_detail_url":"https://comicvine.gamespot.com/talon/4050-52400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72032/","id":72032,"name":"Batman & Homem-Aranha","site_detail_url":"https://comicvine.gamespot.com/batman-homemaranha/4050-72032/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72364/","id":72364,"name":"Batman Unwrapped by Andy Kubert","site_detail_url":"https://comicvine.gamespot.com/batman-unwrapped-by-andy-kubert/4050-72364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-66900/","id":66900,"name":"Absolute Superman/Batman","site_detail_url":"https://comicvine.gamespot.com/absolute-supermanbatman/4050-66900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-74724/","id":74724,"name":"Red Hood and the Outlaws: League of Assassins","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-league-of-assassins/4050-74724/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75136/","id":75136,"name":"Detective Comics: The Wrath","site_detail_url":"https://comicvine.gamespot.com/detective-comics-the-wrath/4050-75136/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75552/","id":75552,"name":"Talon: The Fall of the Owls","site_detail_url":"https://comicvine.gamespot.com/talon-the-fall-of-the-owls/4050-75552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75696/","id":75696,"name":"Robin Rises: Omega","site_detail_url":"https://comicvine.gamespot.com/robin-rises-omega/4050-75696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-73215/","id":73215,"name":"Secret Origins","site_detail_url":"https://comicvine.gamespot.com/secret-origins/4050-73215/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76840/","id":76840,"name":"Birds of Prey: Futures End","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-futures-end/4050-76840/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76430/","id":76430,"name":"Sensation Comics Featuring Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman/4050-76430/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77309/","id":77309,"name":"Batman 75th Anniversary Collection","site_detail_url":"https://comicvine.gamespot.com/batman-75th-anniversary-collection/4050-77309/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77687/","id":77687,"name":"Gotham City Sirens","site_detail_url":"https://comicvine.gamespot.com/gotham-city-sirens/4050-77687/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77803/","id":77803,"name":"DC Comics: Zero Year","site_detail_url":"https://comicvine.gamespot.com/dc-comics-zero-year/4050-77803/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76535/","id":76535,"name":"Sensation Comics Featuring Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman/4050-76535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78709/","id":78709,"name":"Red Hood and the Outlaws: The Big Picture","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-the-big-picture/4050-78709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79021/","id":79021,"name":"Tales of the Batman: Len Wein","site_detail_url":"https://comicvine.gamespot.com/tales-of-the-batman-len-wein/4050-79021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79311/","id":79311,"name":"Absolute Batman, Incorporated","site_detail_url":"https://comicvine.gamespot.com/absolute-batman-incorporated/4050-79311/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-76709/","id":76709,"name":"Arrow: Season 2.5","site_detail_url":"https://comicvine.gamespot.com/arrow-season-25/4050-76709/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-79555/","id":79555,"name":"Birds of Prey: Soul Crisis","site_detail_url":"https://comicvine.gamespot.com/birds-of-prey-soul-crisis/4050-79555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72915/","id":72915,"name":"Batman Eternal","site_detail_url":"https://comicvine.gamespot.com/batman-eternal/4050-72915/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-80010/","id":80010,"name":"Secret Origins","site_detail_url":"https://comicvine.gamespot.com/secret-origins/4050-80010/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77417/","id":77417,"name":"Arrow: Season 2.5","site_detail_url":"https://comicvine.gamespot.com/arrow-season-25/4050-77417/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-77678/","id":77678,"name":"Deathstroke","site_detail_url":"https://comicvine.gamespot.com/deathstroke/4050-77678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-81229/","id":81229,"name":"Sensation Comics Featuring Wonder Woman","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-featuring-wonder-woman/4050-81229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82085/","id":82085,"name":"DC Sneak Peek: Robin: Son of Batman","site_detail_url":"https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman/4050-82085/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-75537/","id":75537,"name":"New Suicide Squad","site_detail_url":"https://comicvine.gamespot.com/new-suicide-squad/4050-75537/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82719/","id":82719,"name":"Robin: Son of Batman","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman/4050-82719/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82704/","id":82704,"name":"Red Hood and the Outlaws: Lost and Found","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-lost-and-found/4050-82704/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82828/","id":82828,"name":"Batman and Robin: The Hunt For Robin","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-the-hunt-for-robin/4050-82828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-85935/","id":85935,"name":"Batman Unwrapped: R.I.P.","site_detail_url":"https://comicvine.gamespot.com/batman-unwrapped-rip/4050-85935/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86344/","id":86344,"name":"DC Comics Presents: Robin War 100-Page Spectacular","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-robin-war-100page-spectacular/4050-86344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-83877/","id":83877,"name":"Batman Eternal","site_detail_url":"https://comicvine.gamespot.com/batman-eternal/4050-83877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87343/","id":87343,"name":"Arrow: The Dark Archer","site_detail_url":"https://comicvine.gamespot.com/arrow-the-dark-archer/4050-87343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86759/","id":86759,"name":"Injustice: Gods Among Us Year Five","site_detail_url":"https://comicvine.gamespot.com/injustice-gods-among-us-year-five/4050-86759/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87810/","id":87810,"name":"New Suicide Squad: Monsters","site_detail_url":"https://comicvine.gamespot.com/new-suicide-squad-monsters/4050-87810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88007/","id":88007,"name":"DC Comics: Secret Hero Society","site_detail_url":"https://comicvine.gamespot.com/dc-comics-secret-hero-society/4050-88007/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-86521/","id":86521,"name":"Batman/Teenage Mutant Ninja Turtles","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles/4050-86521/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88190/","id":88190,"name":"Batman Character Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/batman-character-encyclopedia/4050-88190/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88731/","id":88731,"name":"Batman by Neal Adams Omnibus","site_detail_url":"https://comicvine.gamespot.com/batman-by-neal-adams-omnibus/4050-88731/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89170/","id":89170,"name":"Robin: Son of Batman: Year of Blood","site_detail_url":"https://comicvine.gamespot.com/robin-son-of-batman-year-of-blood/4050-89170/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-78534/","id":78534,"name":"Secret Six","site_detail_url":"https://comicvine.gamespot.com/secret-six/4050-78534/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-89349/","id":89349,"name":"Black Lightning","site_detail_url":"https://comicvine.gamespot.com/black-lightning/4050-89349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-93180/","id":93180,"name":"Batman/Teenage Mutant Ninja Turtles","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles/4050-93180/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91298/","id":91298,"name":"Superman","site_detail_url":"https://comicvine.gamespot.com/superman/4050-91298/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91098/","id":91098,"name":"Detective Comics","site_detail_url":"https://comicvine.gamespot.com/detective-comics/4050-91098/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99281/","id":99281,"name":"Batman Magazine","site_detail_url":"https://comicvine.gamespot.com/batman-magazine/4050-99281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-95201/","id":95201,"name":"Batman Beyond","site_detail_url":"https://comicvine.gamespot.com/batman-beyond/4050-95201/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-100663/","id":100663,"name":"Injustice 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2/4050-100663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101512/","id":101512,"name":"Batman Poche","site_detail_url":"https://comicvine.gamespot.com/batman-poche/4050-101512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-102138/","id":102138,"name":"Teen Titans: Damian Knows Best","site_detail_url":"https://comicvine.gamespot.com/teen-titans-damian-knows-best/4050-102138/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-98394/","id":98394,"name":"Batman '66 Meets Wonder Woman '77","site_detail_url":"https://comicvine.gamespot.com/batman-66-meets-wonder-woman-77/4050-98394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-103269/","id":103269,"name":"Superman: Multiplicity","site_detail_url":"https://comicvine.gamespot.com/superman-multiplicity/4050-103269/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104773/","id":104773,"name":"Batman: Detective Comics: League of Shadows","site_detail_url":"https://comicvine.gamespot.com/batman-detective-comics-league-of-shadows/4050-104773/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105535/","id":105535,"name":"Injustice 2","site_detail_url":"https://comicvine.gamespot.com/injustice-2/4050-105535/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91273/","id":91273,"name":"Batman","site_detail_url":"https://comicvine.gamespot.com/batman/4050-91273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105743/","id":105743,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4050-105743/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105953/","id":105953,"name":"Batman and Robin by Peter J. Tomasi and Patrick Gleason Omnibus","site_detail_url":"https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-105953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-105954/","id":105954,"name":"Batman: Hush The 15th Anniversary Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/batman-hush-the-15th-anniversary-deluxe-edition/4050-105954/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106667/","id":106667,"name":"Batman/Teenage Mutant Ninja Turtles II","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-ii/4050-106667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106922/","id":106922,"name":"Trinity: Dead Space","site_detail_url":"https://comicvine.gamespot.com/trinity-dead-space/4050-106922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-107636/","id":107636,"name":"Batman Beyond: Rise of the Demon","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-rise-of-the-demon/4050-107636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-108834/","id":108834,"name":"Robin: Year One: The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/robin-year-one-the-deluxe-edition/4050-108834/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-109957/","id":109957,"name":"Harley Quinn & the Gotham City Sirens Omnibus","site_detail_url":"https://comicvine.gamespot.com/harley-quinn-the-gotham-city-sirens-omnibus/4050-109957/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-92569/","id":92569,"name":"Nightwing","site_detail_url":"https://comicvine.gamespot.com/nightwing/4050-92569/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-110073/","id":110073,"name":"Batman: The Rules of Engagement","site_detail_url":"https://comicvine.gamespot.com/batman-the-rules-of-engagement/4050-110073/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111130/","id":111130,"name":"Batman: Prelude To the Wedding: Robin vs. Ra's Al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4050-111130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112025/","id":112025,"name":"Batman/Teenage Mutant Ninja Turtles: The Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/batmanteenage-mutant-ninja-turtles-the-deluxe-edit/4050-112025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112682/","id":112682,"name":"Deadman","site_detail_url":"https://comicvine.gamespot.com/deadman/4050-112682/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-114263/","id":114263,"name":"Red Hood and the Outlaws: The New 52 Omnibus","site_detail_url":"https://comicvine.gamespot.com/red-hood-and-the-outlaws-the-new-52-omnibus/4050-114263/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118185/","id":118185,"name":"Jim Lee's Batman","site_detail_url":"https://comicvine.gamespot.com/jim-lees-batman/4050-118185/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-118841/","id":118841,"name":"Batman & the Outsiders","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders/4050-118841/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-129371/","id":129371,"name":"Batman and the Outsiders: A League of Their Own","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-a-league-of-their-own/4050-129371/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112024/","id":112024,"name":"Batman by Grant Morrison Omnibus","site_detail_url":"https://comicvine.gamespot.com/batman-by-grant-morrison-omnibus/4050-112024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-128420/","id":128420,"name":"DCeased: Dead Planet","site_detail_url":"https://comicvine.gamespot.com/dceased-dead-planet/4050-128420/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132457/","id":132457,"name":"Batman Black & White","site_detail_url":"https://comicvine.gamespot.com/batman-black-and-white/4050-132457/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-132843/","id":132843,"name":"Batman: The Rise and Fall of the Batmen Omnibus","site_detail_url":"https://comicvine.gamespot.com/batman-the-rise-and-fall-of-the-batmen-omnibus/4050-132843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134132/","id":134132,"name":"Batman and the Outsiders: The Demon's Fire","site_detail_url":"https://comicvine.gamespot.com/batman-and-the-outsiders-the-demons-fire/4050-134132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134486/","id":134486,"name":"Batman Beyond: The Eradication Agenda","site_detail_url":"https://comicvine.gamespot.com/batman-beyond-the-eradication-agenda/4050-134486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135214/","id":135214,"name":"Batman Arkham: Talia al Ghul","site_detail_url":"https://comicvine.gamespot.com/batman-arkham-talia-al-ghul/4050-135214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135346/","id":135346,"name":"Whos Who Omnibus","site_detail_url":"https://comicvine.gamespot.com/whos-who-omnibus/4050-135346/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135660/","id":135660,"name":"Robin","site_detail_url":"https://comicvine.gamespot.com/robin/4050-135660/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-135832/","id":135832,"name":"Green Arrow/Black Canary: Till Death Do They Part","site_detail_url":"https://comicvine.gamespot.com/green-arrowblack-canary-till-death-do-they-part/4050-135832/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-134804/","id":134804,"name":"Legends of the Dark Knight","site_detail_url":"https://comicvine.gamespot.com/legends-of-the-dark-knight/4050-134804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-137006/","id":137006,"name":"Checkmate","site_detail_url":"https://comicvine.gamespot.com/checkmate/4050-137006/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-101446/","id":101446,"name":"DC Comics Graphic Novel Collection","site_detail_url":"https://comicvine.gamespot.com/dc-comics-graphic-novel-collection/4050-101446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-139923/","id":139923,"name":"Batman/Superman: Authority Special","site_detail_url":"https://comicvine.gamespot.com/batmansuperman-authority-special/4050-139923/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140257/","id":140257,"name":"Gotham City Villains Anniversary Giant","site_detail_url":"https://comicvine.gamespot.com/gotham-city-villains-anniversary-giant/4050-140257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-140261/","id":140261,"name":"Robin 2021 Annual","site_detail_url":"https://comicvine.gamespot.com/robin-2021-annual/4050-140261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-139232/","id":139232,"name":"Deathstroke Inc.","site_detail_url":"https://comicvine.gamespot.com/deathstroke-inc/4050-139232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-142036/","id":142036,"name":"Shadow War: Alpha","site_detail_url":"https://comicvine.gamespot.com/shadow-war-alpha/4050-142036/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-91750/","id":91750,"name":"The Flash","site_detail_url":"https://comicvine.gamespot.com/the-flash/4050-91750/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-143698/","id":143698,"name":"Young Justice: Targets","site_detail_url":"https://comicvine.gamespot.com/young-justice-targets/4050-143698/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-144126/","id":144126,"name":"Checkmate TPB","site_detail_url":"https://comicvine.gamespot.com/checkmate-tpb/4050-144126/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-111993/","id":111993,"name":"Batman Giant","site_detail_url":"https://comicvine.gamespot.com/batman-giant/4050-111993/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/team-list-item/teams.json b/samples/api-data/team-list-item/teams.json new file mode 100644 index 0000000..72b991c --- /dev/null +++ b/samples/api-data/team-list-item/teams.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":10478,"status_code":1,"results":[{"aliases":"Red Hand","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-1800/","count_of_isssue_appearances":0,"count_of_team_members":87,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-07-28 17:32:05","deck":"An ancient mystical order of assassins founded in Japan. They are among Daredevil's greatest foes.","description":"

    Their master is a crimelord of awesome power and insatiable ambition.

    He desires to expand his influence from crime to politics. It's suposed his ultimate goal is to rule Nippon, to become the power behind the throne.

    They disintegrate when they're beaten.

    Origin

    The nascent Hand first formed about 800 years ago in feudal Japan, as a reaction to the oppressive class system that characterized Japanese society in that period. A number of Japanese citizens left their homes and settled in the mountains. There, they cultivated skill in ninjutsu, and through rigorous training became experts at assassination and espionage. The group officially came together in 1588 under the command of Kagenobu Yoshioka, who turned his samurai school into a bastion of support for the common man. Yoshioka was eventually assassinated, and command of the group co-opted by the Snakeroot, an ancient ninja clan who turned the Hand to demon worship and black magic. The Hand began working as mercenaries, and sought to extend its influence throughout the world.

    Creation

    The Hand was created by Frank Miller.

    Team Evolution

    The Hand consists largely of unknown masked people, but has featured numerous named characters at various points in its history. Throughout its history various heroes have been press-ganged into service by the dark magic of the Hand. They have also employed numerous villains.

    Major Story Arcs

    The Chaste

    The Hand comes into constant conflict with a heroic group known as the Chaste. This conflict is the first encounter with the Hand experienced by both Daredevil and Elektra, with the latter first infiltrating and later joining the Hand for a time. The conflict eventually results in the defeat of the Hand, but also in the deaths of the Chaste's leader, Stick, and a member of the group named Shaft.

    Enemy of the State

    The Hand, alongside scion organization HYDRA and the mutant group Dawn of the White Light, orchestrates the abduction of Wolverine. They brainwash him, and set him loose, intending to use him as the weapon he was designed to be to kill members of the superhero community. They send numerous operatives out across the world to deal with opponent superheroes, with limited success. They manage to kill and resurrect Elektra and Northstar, both of whom are brainwashed to act as weapons for the Hand and HYDRA. Meanwhile, Wolverine escapes his brainwashing and turns on the Hand, commandeering a Sentinel and invading their headquarters, destroying many of the Hand's members, as well as the organization's elite, with the assistance of Elektra, who had also managed to escape her conditioning.

    Shadowland

    Daredevil takes over command of the Hand after the Hand's repeated attempts to acquire a new warlord. He constructs a new headquarters for them in Hell's Kitchen, called Shadowland, and dedicates himself into remodelling the group into a force for good. The group begins to corrupt him instead. After Daredevil kills Bullseye, he and members of the Hand crash the funeral and engage in a massive brawl which almost results in the death of the captive Ben Urich. After a number of clashes between the Hand and the members of the superhero community, it is revealed that Daredevil is possessed by the demonic Beast of the Hand. He is defeated and apparently kills himself; in the ensuing confusion, control of the Hand is seized by Kingpin and Typhoid Mary.

    Other Media

    Film

    Elektra

    \"No

    The Hand appears as the major antagonistic organization in this film.

    The Wolverine

    A similar organization known as the Black Ninja Clan appears in this film. They are a powerful group of ninja who have protected Mariko Yashida's family for generations, and are led by Harada.

    Television

    Daredevil

    \"No

    One of the recurring villains in the first season is a Japanese criminal known as Nobu (played by Peter Shinkoda). Though initially believed to be part of the Yakuza, he turns out to be part of a mysterious, ancient syndicate from Japan, which is heavily implied to be the Hand. During his final fight with Daredevil, Nobu dons a red ninja outfit similar to the ones worn by members of the Hand in the comics.

    The Hand reappear in season two and plays a much larger part. It is revealed that Nobu is still alive after apparently burning to death. Their mission to activate the Black Sky, who is revealed to be Elektra. They are ultimately thwarted and defeated.

    Iron Fist

    The Hand once again play a large role. It is revealed that the Iron Fist is their sworn enemy for many years, and that Madame Gao, from the Daredevil series, is the leader of the Chinese branch. It also revealed that the Gao's function of the Hand are secretly in control of Rand Corporation and Harold Meachum. Another function of the Hand is in command of Bakuto, who is in charge of recruiting youths from come from broken homes and tragic backgrounds. Colleen Wing is revealed to be a member of the Hand, but she leaves after seeing their darker side.

    The Hand subsequently return as the antagonists of The Defenders.

    Video Games

    \"X-Men
    X-Men vs. Street Fighter and MVC3
    • X-Men: Wolverine's Rage - The Hand appear as antagonists.
    • X-Men vs Street Fighter - The Hand appear in Cammy's ending, where they try to draw her into their ranks after she loses her memories. Psylocke intervenes and rescues the girl before they can take her.
    • X-Men Origins: Wolverine - The Hand appears as an antagonistic organization in this game.
    • Ultimate Marvel vs Capcom 3 - Members of the Hand appear, as does the Hand's headquarters and Shadowland.
    • Marvel: Avengers Alliance - Various members of the Hand appear in this game.
    • Marvel Ultimate Alliance 3: The Black Order - The Hand's Shadowland hideout appears as one of the levels in the game, with varoius Hand ninja showing up as enemies.

    Merchandise

    \"Marvel
    Marvel Legends
    • A Hand ninja figure as planned as a pack-in with the Marvel Legends Lady Deathstrike figure from ToyBiz. However, due to cost concerns, all of the bonus figures in that wave were replaced with a piece of the Onslaught Build-a-Figure.
    • Hasbro released a Hand figure as part of a two-pack with Wolverine.
    • Hasbro released a Hand figure as part of a Marvel Legends two-pack with Nick Fury. A variant of the pack was also released, with a Hand member clad in white robes facing off against Dum Dum Dugan.
    • Hasbro released a Hand figure as part of the Marvel Universe line.
    • Hasbro also released a Hand figure as part of the Marvel Universe \"Soldiers and Henchmen\" three-pack, which also included a S.H.I.E.L.D. agent and a HYDRA soldier.

    Agarashima is a port city in the Miyago Prefecture on the island of Honshu, Japan

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20965/","id":20965,"name":"Elektra","issue_number":"168"},"id":1800,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/4365999-elektra%20%282014-%29%20008-012.jpg","image_tags":"All Images,The Hand"},"name":"The Hand","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-hand/4060-1800/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-2171/","count_of_isssue_appearances":0,"count_of_team_members":10,"date_added":"2008-06-06 11:27:45","date_last_updated":"2013-08-10 05:07:14","deck":"The Thunderiders are a team of world class motorcycle racing and stunt drivers. The team is secretly comprised of mutants who share a psychic link with one another.","description":"

    The Thunderiders are mutants that travel and perform as motorcycle race and stunt riders. They were formerly known as Team America. Each member of the team is psychically linked to one another and can transfer all of their abilities and knowledge into one host body. This host body takes the form of The Black Marauder or Dark Rider. They originally called themselves Team America. At one time Professor X led the team on missions.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-22154/","id":22154,"name":"A Mind Is A Terrible Thing To Waste!","issue_number":"269"},"id":2171,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11352/499733-pinup_marauder.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11352/499733-pinup_marauder.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11352/499733-pinup_marauder.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11352/499733-pinup_marauder.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11352/499733-pinup_marauder.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11352/499733-pinup_marauder.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11352/499733-pinup_marauder.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11352/499733-pinup_marauder.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11352/499733-pinup_marauder.jpg","image_tags":"All Images,gallery"},"name":"Thunderiders","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/thunderiders/4060-2171/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-2508/","count_of_isssue_appearances":0,"count_of_team_members":11,"date_added":"2008-06-06 11:27:47","date_last_updated":"2016-08-16 01:45:27","deck":"An animal themed team of villains.","description":"

    Brief History

    The original lineup of Ani-Men ( Ape-Man, Bird-Man, Cat-Man, Frog-Man) were recruited by a man named Abner Jonas under the guise of the Organizer. Abner Jonas was a candidate for mayor of New York City, who sends the Ani-Men on missions to undermine the current administration. Daredevil defeated both the Ani-Men and their leader and sent them all to prison.

    Later, Ape-Man, Bird-Man, and Cat-Man formed a team refered to as the Unholy Three and worked with the Exterminator (who eventually becomes the Death-Stalker and Count Nefaria). The Ani-Men served as henchmen to the count and have come at odds with various heroes. They would go on to under-go a treatment by Count's scientist to become more animal like.

    A new band of Ani-Men has risen. These are created by the High Evolutinary and are his servants.

    Creation

    The Ani-Men were created by Wally Wood in 1965 and first appeared in Daredevil #10.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8102/","id":8102,"name":"While the City Sleeps!","issue_number":"10"},"id":2508,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5586/474224-ani1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5586/474224-ani1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5586/474224-ani1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5586/474224-ani1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5586/474224-ani1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5586/474224-ani1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5586/474224-ani1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5586/474224-ani1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5586/474224-ani1.jpg","image_tags":"All Images,Ani-Men"},"name":"Ani-Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/ani-men/4060-2508/"},{"aliases":"Astonishing X-Men\r\nChildren of the Atom\r\nUncanny X-Men","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3173/","count_of_isssue_appearances":0,"count_of_team_members":271,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-07-13 12:35:45","deck":"The X-Men are a superhero team of mutants founded by Professor Charles Xavier. They are dedicated to helping fellow mutants and sworn to protect a world that fears and hates them.","description":"

    Current Team Roster

    • Cyclops
    • Marvel Girl (Jean Grey)
    • Synch
    • Iceman
    • Havok
    • Magik
    • Forge
    • Firestar

    Origin

    Original Team Roster

    The original team of X-Men was formed by Professor Charles Francis Xavier to fulfill his dream of peaceful coexistence between humans and mutants. Using his vast telepathic powers and with help from his supercomputer Cerebro, he located five mutants to help him in his prospects by forming the Xavier Institute for Gifted Youngsters.

    \"Original
    Original X-Men vs Magneto
    • Scott \"Slim\" Summers was the Professor's first student. Gifted and cursed with the ability to open dimensional portals with his eyes that produce a concussive force of destructive energy, he was forced to wear a visor made of ruby quartz to contain his blasts. Because of the look and shape of his visor, he took the code name Cyclops.
    • Robert \"Bobby\" Drake, a young man from Long Island, New York, was recruited after the sudden onset of his powers incapacitated one of his peers. He was jailed, for 'his own protection' against the angry and confused citizens of his town. Soon afterward, the wall of his cell was blown out and he was approached by Cyclops, who presented him with an offer to join the academy. He was given the name Iceman after his power to manipulate moisture and create ice.
    • Henry \"Hank\" McCoy, born in Dunfee, Illinois to Norton and Edna McCoy was a genius with the brutish look. He excelled in athletics due to his physical nature but also studies profusely. When he began to attract animosity for his appearance and mutation, he was approached by Xavier to join his school. Hank took the name \"Beast\" as his mutation granted him larger hands and feet, much like a gorilla and super strength to match.
    • Warren Kenneth Worthington III was already a costumed crime-fighter in his own right who went by the name \"the Avenging Angel.\" He was born to millionaire parents and was kept in a private school, forced to hide his physical mutation. He was recruited by Professor X and he retained the codename \"Angel\" due to his large feathery wings.
    • Jean Grey was already a student (of sorts) of Professor X prior to the formation of the X-Men. After experiencing the death of her best friend, Annie, her telepathic powers were activated, forcing the young mutant to feel and sense her friend's passing. She was coached and helped by the Professor as he locks her powers away to keep her safe. As she develops telekinetic gifts she is invited to the school to become the sole female addition to the team. She takes the name \"Marvel Girl.\"

    The students are trained to use their gifts by Professor X who deems them the X-Men due to their extra abilities. The team becomes a tightly knit group, growing up from teenagers and learning to properly use their powers. Their first mission is against the evil mutant, Magneto, who is the self-proclaimed \"Master of Magnetism.\" He attacked Cape Citadel and the X-Men prevented any damage or casualties.

    During the initial run of X-Men, they face Magneto's Brotherhood of Evil Mutants, the teleporting Vanisher, the villainous Factor Three, and the alien Lucifer. Early in the series, Professor X is presumed dead and it is learned that he had been replaced, at his request, by the Changeling, a villain who wished to reform his criminal ways. The X-Men are also joined by the mutant Mimic, who has the ability to utilize up to five mutant abilities at a time. Mimic sought out the X-Men in an attempt to make his powers permanent, but was defeated and became an ally for a short time. The team was then joined by two new recruits; Havok, the plasma generating brother of Cyclops; and Polaris, the green-haired, magnetism-manipulating future confirmed daughter of Magneto. Eventually Beast left the team to pursue scientific endeavors.

    Lineups

    • Professor X, Cyclops, Marvel Girl, Beast, Iceman and Angel
    • Professor X, Cyclops, Marvel Girl, Beast, Iceman, Angel, Mimic and Changeling
    • Professor X, Cyclops, Marvel Girl, Beast, Iceman, Angel, Polaris and Havok
    • Professor X, Cyclops, Marvel Girl, Iceman, Angel, Polaris and Havok

    Creation

    The X-Men were created by Stan Lee and Jack Kirby, making their first appearance in X-Men #1 in 1963. Stan Lee created the title 'X-Men' when publisher Martin Goodman turned down the original name ' The Merry Mutants' because he felt that people would not understand what a mutant actually was. Throughout the Marvel Universe, it is believed that the X-Men were named after Professor Xavier, their mentor but it is claimed that they were actually named after the X-Gene, the gene that created mutants.

    One of the reasons for creating X-Men was the amount of mail Marvel was getting from the readers demanding a new superhero team because of all the solitary heroes in Marvel roster. Stan Lee wanted the heroes to have similar origin background, and because \"I could not get everyone bitten by radioactive spider\", Lee came up with the \"Homo Superior\" concept.

    Some have pointed out that it is possible that the team was inspired by DC Comics' Doom Patrol. At the time Marvel was a new force on the comics scene and took a lot of its motivation and inspiration from DC (for instance the Fantastic Four were patterned after the Challengers of the Unknown). The similarities between numerous characters, and especially Professor X to the Chief have led to this speculation.

    Team Evolution

    The Early Years

    The Silver and early Bronze ages of comics published stories more in line with the standard at the time, meaning issues that consisted of self contained stories with little overall development of characters. One of the developments of Marvel is that the company became much more interested in character development, but this change was slow and the early years of the X-Men were marred with the same problems as other comics, if perhaps to a lesser degree.

    Late 70's

    Deadly Genesis/Giant-sized X-Men

    \"All
    All New All Different

    The first big shake-up for the team came when the original team (plus Havok and Polaris, minus Beast) were abducted by the living island of Krakoa. First Professor X sent a brand new team of untried students trained by Moira MacTaggert. This team included Kid Vulcan, Darwin, Sway,and Petra, but they were quickly overtaken by the island. Petra and Sway were killed but Vulcan was left in suspended animation (partially due to Darwin's powers). When Krakoa released Cyclops to bring more mutants to feed on, Professor X gathered several young mutants who already had experience in their powers: Storm, Wolverine, Nightcrawler, Colossus, Thunderbird, Sunfire, and Banshee. Due to Professors X's mental manipulations, Vulcan's team was completely forgotten and Storm's team became known as the X-Men second generation. Following this mission, Marvel Girl, Iceman, Angel, Havok, and Lorna Dane (as well as Sunfire) all left the team allowing the remaining new members and Cyclops to become the new X-Men.

    New X-Men

    \"Phoenix
    Phoenix Rises

    The newly formed team was comprised of diverse but strong personalities, making them very different from the original team. The new team consisted of adults rather than impressionable teenagers, and both Scott and Xavier found it challenging to get the team to work together. On their second mission, the team battled Count Nefaria, and despite earlier warnings, Thunderbird sacrificed himself for his teammates, and became the first X-Man to die in the line of duty. Subsequent missions had also put the new team against former X-Men members such as Havok and Lorna Dane (now going by the name of Polaris), who were under the influence of Shi’ar agent Eric the Red, and Kierrok and his N’gari. It was during these early periods that readers got their first glimpses of Moira MacTaggert, Black Tom Cassidy, and Lilandra.

    During a Christmas trip to New York City, the X-Men and Marvel Girl were attacked by Sentinels, which led to the capture of Jean, Banshee and Wolverine. The remaining X-Men were dispatched to space to save the Starcore space station and their teammates. The team was attacked by Erik the Red, and robot duplicates of the original team along with Havok and Polaris. On the escape back to Earth, the spaceship was badly damaged and could not be piloted through use of auto pilot. After telepathically absorbing the information necessary to pilot the ship from Dr. Peter Corbeau, Marvel Girl volunteered to fly the ship back to Earth. She assumed that by creating a psionic shield of telekinetic energy she would be safe, and simultaneously forced Cyclops to sleep as she flew the ship back to Earth. Unfortunately, her body could not handle the strain and she perished. However, she is approached by a mysterious force that calls itself the Phoenix, and breathes new life into her. Her old burnt body is discarded as she was absorbed into the new body created by the force, perfectly identical to her old self in appearance. The ship landed in the Hudson Bay with all the X-Men safe, but they could not find Jean. While searching for Jean, she emerged from the river in a completely different costume and a fiery voice, and declared a new identity as the Phoenix. The team was uneasy but grateful that Jean had survived, but they quickly noticed that her powers were much more than they were before. She easily performs feats that she was never able to as Marvel Girl. At this point Xavier starts having visions of an alien being.

    Phoenix Saga

    Immediately after, the team (except Scott and Charles who were looking after Jean) battled the Juggernaut and Black Tom Cassidy in Ireland, but before they were defeated, Jean as the Phoenix saved them. Cassidy was working for Erik the Red, a member of another race (Shi'ar) whom along with the help of Firelord, former herald of Galactus (deceived into helping him), seeks to destroy the X-men. Phoenix manages to fight off Firelord, but Xavier is approached by a human-like being from another faraway galaxy, looking for his help. She(Lilandra), a Shi'ar, was led there by the telepathic connection she felt to Xavier from such a tremendous distance. She felt that only Xavier, with his abilities could help her and the universe from the impending disaster. However, Erik the Red (who is part of her race) manages to kidnap her and returns to his home planet via a teleporting device. Phoenix used her powers to revive this device, and the X-men find themselves confronted with the Alien race. Their emperor is in possession of the M'kraan Crystal, which Phoenix discovers to be able to destroy the entire universe by creating a black hole if activated. The X-men defeat the Shiar forces and Phoenix manages to deactivate the crystal using her new found psionic powers and bring the X-men back to earth. Much later, Jean is hypnotized by Mesmero and using her telepathic abilities to enhance his powers, Mesmero takes over the entire X-Men and make them work at a circus. They are however saved by Beast who returned from the Avengers. Wolverine manages to provoke Jean into becoming Phoenix, which brings back her memories and she frees everyone from Mesmero's control.

    At that point, Magneto appears and easily defeats Mesmero. He confronts the X-men in a caravan, and uses it to transport them to his base beneath a volcano in the antarctic. Their, the X-men fight magneto, but are defeated due to a lack of teamwork and coordination. Magneto ties them up to chairs that inhibit their basic bodily functions rendering them totally helpless. After he departs to Asteroid M to do research, Storm manages to free the team and the X-men ambush and defeat Magneto when he returns. However, the facility collapses, and Jean and Beast are separated from the rest, with each party thinking the other dead. Scott's group end up in the savage land while Jean and Hank manage to reach their mansion, where she informs the professor of the remaining X-men's demise. The X-men meanwhile protects the savage land from a resurrected god and manages to find their way back to their home which was abandoned. They track Jean to Muir island, where she is with Moira Mactaggart and there after a joyful reunion they face Proteus, Moira's deadly reality warping mutant son who kills people and takes over their bodies for survival. Proteus kills Moria's husband and takes over his body. With his memory and needs, Proteus goes after his 'wife' Moria, and manages to defeat most of the X-men in the process but is killed by Colossus. Sean Cassidy (Banshee) and Moira then begin their life together.

    Line-up

    • Professor X, Kid Vulcan, Darwin, Petra and Sway
    • Professor X, Cyclops, Marvel Girl, Iceman, Angel, Havok, Polaris, Storm, Wolverine, Colossus, Nightcrawler, Thunderbird, Sunfire and Banshee
    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler, Thunderbird and Banshee
    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler and Banshee
    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler, Banshee and Phoenix
    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler and Phoenix

    Early 80s

    Dark Phoenix

    \"Dark
    Dark Phoenix

    In one of the most well-known X-Men stories, Jean Grey began to lose control over her powers and personality. She became much more aggressive in dealing with wrong doers. While saving the mutant Dazzler from a Hellfire Club task force, she completely dismantled a car with ease. During this time, the team had recruited a young mutant from Deerfield, Illinois named Katherine \"Kitty\" Pride. Kitty along with Storm, Colossus and Wolverine are captured by the Hellfire Club and held hostage but was eventually rescued through the efforts of an escaped Kitty and the remaining X-Men, mainly because of Phoenix defeating their leader Emma Frost single handedly.. The members of the Hellfire Club's inner circle were meanwhile plotting on brainwashing Jean into becoming a member. A former member of the Brotherhood of Evil Mutants, Mastermind, was primarily responsible for the psychic manipulation of Jean Grey. He initiated \"time slips\" to convince her that she was living in the past as his lover, himself being disguised as the extremely handsome Jason Wyngarde. Even though he was not a telepath, this was made possible using a mind-tap mechanism designed by Emma Frost, allowing him to plant false memories into Jean's mind. The X-men go to the hellfire club where Mastermind manages to put Jean under his control, this time under immediate orders from Sebastian Shaw, causing the 200 year time slip in her mind to think of herself as the Black queen. The X-Men attempted to intervene, but it only led to their capture with the exception of Wolverine, who makes a famous stand against the club's security and Inner Circle. Jean eventually overpowered Mastermind, and through the powers of the Phoenix, she put his mind in touch with the universe, which essentially overwhelmed his mind into catatonia. Her actions had caused her to become overwhelmed by her own powers, with each use of her limitless abilities causing her to get drawn nearer and nearer to her own dark persona, causing her mind to become highly unstable. Without warning, she transforms into the physical manifestation of her dark side as they were preparing to leave the area.

    She and X-men engage in a fight, with her trying to destroy them and them, desperately trying to bring her old self back. She defeats them easily, and flies off into outer space, into another galaxy, where she consumes a star for sustenance, causing the deaths of all it's billions of inhabitants. She is detected by a Shi'ar space ship. Having seen what she did to the star system, Lilandra, the Shi'ar empress orders the ship to attack the Phoenix, but the ship is destroyed. Dark Phoenix then returned to Earth, to Jean's house where her family resides. There, she seemingly reverts to her old self and is happy to see her parents and sister, but when she senses the fear in them, she becomes Dark Phoenix again, threatening to kill them. She is stopped by the X-Men along with Beast and Beast confronts Jean in an attempt to calm and help her. With the aid of equipment created by Beast to disrupt Jean's power, they are able to temporarily overpower her but are defeated in the end, but Professor X, aided with the help of Jean from within the Phoenix, engages in a psychic battle with Dark phoenix and manages to defeat the Phoenix persona, putting psychic restraints into her to prevent another transformation.

    When all seems well, the X-Men are interrupted by Lilandra and the Shi'ar imperial guard. As empress, Lilandra is bound by Shi'ar laws to kill the Phoenix for the crimes she had committed against their empire, which was the \"eating\" of a star, and condemning a planetary system to death. The team is transported to the Blue Area of the Moon and Xavier reads Lilandra's mind and invokes Arin'n Haelar, a duel of honor that cannot be denied. The X-Men face off against the Imperial Guard of the Shi'ar. Once the X-Men are defeated, and upon seeing Scot getting cut down in front of her Jean loses control of her powers and personality, and the Dark Phoenix persona arises once again. Before Lilandra could order the destruction of the solar system to prevent Phoenix from becoming a threat again, Professor X instructed the X-Men to subdue Jean. But they only manage to weaken her, and only Scott is left with her in the end. Jean tells Scott through tears that she can no longer bear to live as someone who claimed so many lives, and used a Kree weapon to commit suicide, but not before telling him how much she loved him. Scott then realizes that it was her plan all along that if Lilandra's forces failed to kill her, she would take her own life.

    Days of Future Past

    \"Wolverine
    Wolverine and Katherine on the run from Sentinels

    With the death of Jean Grey, Cyclops left the team and Angel returned. Professor X promoted Storm to team leader and they welcomed Kitty Pride, now codenamed Sprite, onto the team. In an attempt to deter an assassination plot on Senator Kelly by Mystique's Brotherhood of Mutants, Kitty's psyche had switched with that of an alternate time line. In that time line, the world is ruled by Sentinels, and mutants were sent to internment camps and killed. Most of the known X-Men at the time had perished with the exception of Colossus, Storm, Wolverine and Magneto. They were joined with the son of Invisible Woman and Mr Fantastic, Franklin Richards, and the daughter of Cyclops and Jean Grey, Rachel Summers. In order to prevent the apocalyptic future, Kitty traveled back to the past to prevent the death of Senator Kelly. She is successful, however, the alternate time line that she had encountered remained intact.

    \"The
    The Brood

    The next few months are tumultuous for the X-Men. Angel leaves again, while Cyclops intermittently returns, Colossus’ sister Illyana is aged to a teenager, Storm is almost turned into a vampire, Arcade attacked the x-men, the mansion is destroyed and Colossus is gravely injured. The X-Men, along with house guest Carol Danvers, traveled to space with the Starjammers and were kidnapped by Lilandra’s sister Deathbird and the terrifying Brood. This lead to Danvers being transformed into the cosmically powered Binary and the X-Men almost being transformed into Brood creatures themselves. The X-Men returned to Earth to destroy the Brood embryo inside Professor X and discover that in their absence, the Professor has gathered a new group of young mutants, the New Mutants. Kitty was briefly demoted to the junior team until she proved herself against a Sidri Hunter on her own.

    God Loves Man Kills

    The group calling themselves the Purifiers is laying waste to mutants across the country. They kill entire families, even children without remorse. Two children are killed and hanged in their school playground by a purifier strike team led by Anne, fanatically devoted to her cause. A heated debate is raging between Professor Xavier and Rev.William Stryker on TV, discussing the presence of mutants and their danger to humanity. As Xavier, accompanied by Cyclops and Storm return home from the Studio, they are ambushed and seemingly killed, with the attack made to look like an accident. Their attackers are revealed to be the Purifiers, headed secretly by Stryker himself. As the other X-men investigate the crash site, Wolverine finds out that the bodies recovered did not belong to the three X-Men. They sense an ambush and surprises the hidden purifier team with a direct attack. When things go out of hand, Magneto comes to their aid and they easily take care of the group. The operatives are taken prisoners and tortured by Magneto till they reveal the truth about Stryker and his ministry. Stryker's goal is the annihilation of mutantkind from the face of the Earth. Decades ago, when he realized his own child was a mutant, he killed his wife and child and tried to suicide, but was saved. He regarded this as God's message and considered himself as God's instrument to rid the world of mutants. For years he prepared, gathering resources and people to serve his cause, forming his ministry and thus his 'crusade' against the homo 'superior'.

    Professor X is being subjected to chemical torture by Stryker, along with Dr Ramsey. His intention is to break the professor's mind and turn him into a puppet, and thus use his telepathic powers to attack every mutant in existence. After the torture, striker appeals to the Professor, who is no longer aware of his predicament to use his powers to kill Scott and Storm as a test run, which he seemingly carries out, unaware of what he is doing.

    Meanwhile Kitty Pryde and Illyana spot a monitoring device outside facing the mansion. When they investigate, they are captured by the purifier Anne and taken to a secluded location for execution. However, Kitty escapes and manages to contact the X-men (despite being chased by Anne), who along with Magneto come to her rescue. However Illyana is still in Anne's custody and taken to their base. The X-men later kidnap Ramsey and from him learns what Stryker is planning to do with Xavier. Magneto attacks the Purifier's stronghold and rescues Illyana along with Storm and Scott (who are revealed to be barely alive, luckily just enough to fool Dr Ramsey's monitoring systems). Anne escapes this attack.

    The Reverend commences the final phase of his plan by equipping the professor with a Cerebro-like device that amplifies his sensitivity, and orders him to seek out mutants and people with mutant genetic potential and eradicate them. On Madison Square Garden, he gives a public sermon as the attack is being carried out. The X-men who were preparing to assault Xavier's location is incapacitated. Magneto arrives and tries to stop his sermon but Stryker directs Xavier to focus on Magneto, who is terribly damaged. The crowd goes into chaos and the X-men, led by Cyclops seize this opportunity to attack Xavier. As the professor continues his attack, more and more mutants, including a senator present in the crowd experience pain and bleeding as due to cerebral hemorrhage. Ironically, Anne, who is beside Stryker experiences the same pain and Stryker, seeing she has mutant genes throws her off the podium (despite her intense resistance), killing her. The X-men penetrate deep into the building fighting of the pain and the Purifier forces and manage to stop Xavier, putting an end to the danger. They confront Stryker, who publicly justifies his act as the work of God and prepares to shoot Kitty when he is shot himself by a policeman.

    Later, at the X-mansion, Magneto tries to persuade Xavier and the rest of his X-men to join his cause to create a world where mutants rule. The Professor, disillusioned by recent events almost agrees but is stopped by Scott, who gives him hope. As Magneto leaves, he warns that if the X-men fail in their ideals, it will be his turn.

    Mastermind's return and Madelyne Pryor

    \"Callisto
    Callisto and the Morlocks

    The X-Men discovered that Angel had been kidnapped by a community of underground dwelling mutants calling themselves Morlocks and led by a fierce woman named Callisto. In a duel to the death, Storm fought Callisto for Angel’s life and the leadership of the Morlocks. Storm won, but spared Callisto’s life and allowed her to lead in her absence and by her rules.

    In a shocking change to the team, an unexpected visitor comes to the mansion seeking asylum. Former Brotherhood of Mutants member, Rogue, comes to the Professor seeking help with controlling her power. She isn't accepted into the team right away and but proves herself by saving Lady Mariko, Wolverine's betrothed, in Japan who was about to be assassinated. During their stay in Japan, Storm spends time with a thief, Yukio, and realizes that her own personality had changed considerably from the time she joined the X-Men. She found herself resorting to violence more often and easily, and was even ready to kill on certain occasions. In accordance, she adopts a more punk look, cutting her incredibly long hair into a Mohawk and wearing leather and spikes. Combined with her Morlock vest, it is a vast change from her previous looks and temperament. However, on the day of the wedding, Mariko rejects Logan to the team's dismay. As she leaves, the readers are given a brief glimpse of Jason Wyngarde, thus confirming a master plan is in the works.

    \"Scott
    Scott and Madelyne get married!

    Meanwhile, Scott, who was on leave, while boarding the plane to visit his family in Canada is shocked to see his pilot - a woman bearing a near perfect resemblance to Jean Grey. Her name was Madelyne Pryor, and they get intimately close within days, as Scott reveals why he is so fixated on her. She meets up with the X-men who have returned from Japan and they are all shocked to see her, but thinks it is mere coincidence. Scott himself however can't shake the feeling that she may in some way be related to Jean, especially after learning that Pryor was the sole survivor of a plane crash that occurred just when Jean died. Later, Scott proposes to Pryor and she accepts, but when he asks her if she really is the reincarnation of Jean, chaos begins as Phoenix seemingly takes her place and knocks him unconscious. It is revealed that Mastermind had recovered from catatonia imposed by Phoenix and seeks revenge against those who loved Jean. The 'Phoenix' later attacks the X-men and they are all led to believe that Jean Grey is back. Xavier, when he uses the Cerebro to learn the truth, is electrocuted. Scott, when he awakes from a dream, finally puts two and two together to arrive at the conclusion that things are not what they seem to be. He devices and executes a plan to lure Wyngarde to the open, which involves evading all the X-men (who are tricked into thinking he is Phoenix) and making Rogue acquire the unconscious Xavier's telepathic powers, which makes her see the truth from Scott's mind. She projects the truth to the X-men just in time when they are attacked by Wyngarde along with Pryor (who is deceived), but defeats him. Wolverine finds out that Mariko does indeed love him and it was all mastermind's ploy from the start. After paying one last visit to Jean's grave, Scott and Madelyne get married in a grant function.

    The Summers Family Expands

    Soon after on a mission with Alpha Flight against Loki, they discovered that Madelyne was pregnant. This led more and more to her wishing Scott would leave the X-Men.

    Shortly after this Rachel Summers, Cyclops’ daughter from Days of Future Past timeline arrived in the present. She became fast enemies with Selene, the new Black Queen of the Hellfire Club and was rescued by Xavier. She joined the X-Men without revealing to Cyclops who she really was. She eventually claimed the power and name of the Phoenix from her mother's holo-empathic crystal.

    Unbeknownst to the rest of the X-Men, Professor X’s body wasn’t recovering from a severe beating he had received months earlier by mutant haters. He was slowly on the path to dying and refused to burden his students with it. At this point, he also invited Magneto to stay at the mansion with them as he had begun to repent for his past misdeeds. Also at this time, it was decided that Storm and Cyclops could no longer share the leadership responsibilities and there must be a decision made. They agree to a duel in the Danger Room of which the powerless Storm wins.

    Lineups

    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler, Beast and Angel
    • Professor X, Storm, Wolverine, Colossus, Nightcrawler, Angel and Sprite
    • Professor X, Storm, Wolverine, Colossus, Nightcrawler and Sprite
    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler, Shadowcat and Rogue
    • Professor X, Cyclops, Storm, Wolverine, Colossus, Nightcrawler, Shadowcat, Rogue, Rachel Summers and Magneto

    Late 80s

    At the trial of Magneto in France, Fenris, the twin children of Baron Von Strucker attack Magneto as well as Xavier and Gabrielle Haller. They are defeated but Xavier’s body almost gives out. While he is on the verge of death, he asks Magneto to take over the school for him and then he is taken off to space with the Starjammers. In the months that followed, the team fought the Beyonder as part of the Secret Wars II. Rachel was stabbed by Wolverine when she attempted to assassinate Selene. In the resulting battle between the X-Men, the Hellfire Club and Nimrod, Rachel is whisked away to the Body Shoppe unknown to anyone else.

    Mutant Massacre

    \"Enter
    Enter the Marauders

    A group of deadly mutant hunters, the Marauders, start to attack and kill off the Morlocks. Meanwhile, a psychic Marauder, Malice possesses Dazzler, while she's playing in Lila Cheney's band after being outed publicly as a mutant. With Storm being the current leader, she is immediately informed of what is happening below. The team heads into the tunnels and Shadowcat and Nightcrawler are seriously injured. Shadowcat is now trapped in a permanent phased state and Nightcrawler is left in a coma. Colossus also loses control and snaps Riptide's neck. The school is turned into a makeshift hospital for the Morlocks and X-Men who are injured. X-Factor and Thor join the X-Men and New Mutants in ridding the tunnels of the Marauders but the entire civilization is nearly wiped out. X-Factor also sees its own tragedy as Angel is mauled by the Marauders and his wings are ripped apart by Blockbuster and only the timely intervention of Thor saves him. The team also welcomes Psylocke who fought Sabretooth to a standstill and protected the injured at the mansion.

    Following the Massacre, the team is also joined by Longshot, a refugee from Mojoworld who appeared one day in the Danger Room. They go to one of Lila Cheney's shows to rescue Dazzler from Malice, and she also joins the evolving team. Meanwhile, in New Mexico, Havok is having dreams of going to the mansion and being attacked by the X-Men. He travels to New York and finds the team staying in the Morlock tunnels, and he learns about the Marauders and the massacre. He says that he wants to help and Havok rejoins the X-Men, while back in New Mexico, Polaris is attacked by the Marauders in the desert. She takes them down before revealing that she's been possessed by Malice and will be the Marauders new leader.

    During this period Storm and Magneto jointly accept an invitation to join the Hellfire Club to represent the X-Men in the greater scheme. Storm and the team also begin to think that it may be time for the world to think the X-Men are dead. The X-Men receive a distress call from San Francisco from Madelyne Pryor and head to California to rescue her. In San Francisco, they find her being pursued by the Marauders. Havok is horrified to see Polaris leading the evil mutants, but still takes a killing shot at her to stop her from killing Madelyne. At this point the Marauders true leader is revealed to be Mr Sinister and he forced his team to move into the now mostly deserted Morlock tunnels. Madelyne decides to stay with the X-Men since she believes Cyclops to have abandoned her and her son to be missing.

    Fall of the Mutants

    For more information regarding this arc, see: Fall of the Mutants

    While investigating a disturbance at Eagle Plaza, the home of Forge, the X-Men are confronted by Mystique's newly formed Freedom Force. During the battle, both teams see injuries, but the conflict ends when the sky opens and a deadly prophecy from Destiny occurs.

    The scene turns to chaos as Dallas is taken by hordes of cavemen and Native Americans. A citadel also appears in the sky covered by an impregnable vortex. With the combined powers of the X-Men, they invade and find the guardian Roma imprisoned by the Cheyenne mystic, Nazé. Joined by a newly repowered Storm and Forge, the team is forced to sacrifice their own lives to defeat Nazé. The event is televised worldwide, so they X-Men are believed dead by both friend and foe. Little does the world know, Roma offers to restore the heroes to life and the team decides to let the world believe them dead.

    Outback and Inferno

    For more information regarding this arc, see: Outback and Inferno

    The X-Men have now gone from outlaws to figures hiding in the shadows. After Roma's gift of rebirth, Storm uses the X-Men's appeared death to their advantage and moves them to an old Reavers base in the Outback of Australia. The team is now free to strike freely at their enemies and soon enough take advantage of their deadly nemeses, the Marauders.

    Manipulation by Mr. Sinister and the recent revelation that Jean Grey was indeed alive slowly forced Madelyne Pryor into a psychosis.

    \"The
    The Inferno Crossover

    She became unhinged and captured Jean Grey and her baby Nathan Christopher. In conjunction with the demons of Limbo, New York was turned into a demonic version of itself complete with twisted versions of the X-Men. With the New Mutants combating the demons and sealing Limbo and the combined forces of the X-Men and X-Factor, Madelyne was defeated and the team confronted Sinister. After being blasted by Cyclops' optic blast, he was seemingly killed

    After the events in Inferno, the X-Men returned to the Outback. The team slowly began to fall apart as they stayed separated from their friends. Rogue sacrificed herself to the Siege Perilous to save the team from the Nimrod/Mastermold robot, Storm was taken prisoner and de-aged by the Nanny (with the team believing her to be killed by Havok), and Longshot leaves the team to find himself. Wolverine was off on a solo mission with no contact to the team.

    After receiving a call from Lorna Dane, the remaining X-Men travel to South America and are then brought to the Savage Land along with Lorna by Savage Land Mutates under the control of Zaladane, who claimed to be Polaris' sister. After Zaladane takes Lorna's magnetic powers from her, she develops new powers that cause her to grow taller, stronger, and become invulnerable. After the battle is done the four X-Men are transported back to the outback by Gateway. The team finally dissolves when Psylocke telepathically influences the remaining members into the Siege Perilous in order to save them from a precognitive vision she had of their deaths by the Reavers. Having been cheated out of their revenge on the X-Men, the Reavers took all their aggression out on Wolverine who returned from his solo mission. He was defeated and crucified by the Reavers and would have died if not for being rescued by Jubilee.

    \"To
    To Save Our Lives...

    At this time every member sees a drastic change in their lives. Polaris travels to Muir Island and joins the group there to defend against a Reavers attack. Psylocke emerges in Japan and is transformed into a Japanese ninja sharing her personality with Kwannon, who now inhabits her body. Colossus appears believing himself to be artist Peter Nicholas and begins dating a changed Callisto. Rogue is found in the Savage Land and is cured to help a multiple personality disorder. She joins Magneto, Ka-Zar and Nick Fury for a revolution against the mutates and Zaladane who have ravaged the land. Dazzler emerges briefly only to be found some time later with Longshot fighting against Mojo in the Mojoverse. Storm is de-aged and joined by a thief, Gambit, and the two form an alliance. For a time, there is no established X-Men team, only featured solo adventures of the Outback team and Forge and Banshee's quest to find the missing X-Men.

    Line-ups

    • Storm, Wolverine, Colossus, Nightcrawler, Shadowcat, Rogue, Phoenix II and Magneto
    • Storm, Wolverine, Rogue, Magneto, Psylocke, Longshot, Dazzler and Havok
    • Storm, Wolverine, Rogue, Magneto, Psylocke, Longshot, Dazzler, Havok and Madelyne Pryor
    • Storm, Wolverine, Rogue, Psylocke, Longshot, Dazzler, Havok, Colossus and Madelyne Pryor
    • Forge, Banshee, Polaris, Siryn, Legion, Amanda Sefton, Sunder, Moira MacTaggert and Multiple Man

    Muir Island Saga

    For more Information regarding this arc, see: Muir Island Saga

    The X-Men are reunited in space and for the first time members like Psylocke, Jubilee and Gambit had met Professor X. The team is assembled by Lila Cheney in order to help Lilandra and the Professor bring order to the empire. Many of the team as well as the royal family had been replaced by War Skrulls. The team prevails and for the first time in years, Professor X joins his students back on Earth.

    \"Muir
    Muir Island Saga

    Meanwhile, Moira MacTaggert had her own band of mutants on Muir Island which included the super strong Morlock, Sunder; the sonic screaming Siryn, Nightcrawler's former girlfriend, the sorceress Amanda Sefton; the Professor's schizophrenic son Legion; Madrox the Multiple Man; as well as former X-Men Banshee, Forge and Polaris. The team had fended off an attack from the Reavers with the help of the Freedom Force with casualties. The team started to take a darker tone, most noticeably in the behavior and dress of Moira MacTaggert. The Shadow King had been influencing the attitudes of everyone on the Island, intending to use Polaris and her new powers to become a physical entity.

    The X-Men are transported to the island thanks to Lila again and are met with X-Factor. The battle ends when Professor X confronts the Shadow King on the astral plane. The result is a defeated Shadow King and a crippled Xavier.

    Lineups

    Muir Island X-Men

    • Banshee, Forge, Polaris, Moira MacTaggert, Sunder, Legion, Multiple Man, Amanda Sefton and Siryn

    X-Men

    • Professor X, Storm, Wolverine, Colossus, Psylocke, Rogue, Jubilee and Gambit

    X-Factor

    • Cyclops, Marvel Girl, Iceman, Beast and Archangel

    Blue and Gold

    \"No

    Professor X and the X-Men began anew in Westchester, reuniting new members with old. With a membership of sixteen, the X-Men break into two strike forces, the Gold and Blue teams. The teams, led by Cyclops and Storm respectively, combined the classic members with newer X-Men, with Banshee and Forge serving as Mansion staff members and reservists. The teams were as followed:

    Blue

    • Cyclops, Beast, Wolverine, Rogue, Psylocke, Jubilee and Gambit

    Gold

    • Storm, Jean Grey, Iceman, Archangel, Colossus and Bishop

    X-Cutioner's Song

    For more information regarding this arc, see: X-Cutioner's Song

    \"Family
    Family Values?

    While speaking about equality at a Lila Cheney concert, Xavier was attacked and put into a comatose state, supposedly by Cable, the newest leader of the New Mutants now known as X-Force. While searching for Cable and preserving the Professor's life, Cyclops and Jean Grey are captured by the real attacker, a psionic mutant known as Stryfe. The X-Men join with the new government sponsored version of X-Factor and members of X-Force to clear Cable's name and find the missing X-Men. It is revealed that Stryfe is a clone of Cable and therefore, in a way, a child of Scott and Jean. His rage comes from his supposed abandonment. In order to save the Professor, the team calls upon Apocalypse to counteract the virus making its way through his body. In the end, Stryfe is defeated and the Professor is saved.

    Fatal Attractions

    For more information regarding this arc, see: Fatal Attractions

    Even though the X-Men defeated Stryfe, saved the Professor and rescued Jean and Cyclops, Stryfe still managed a victory in form of a legacy. The Legacy Virus was a disease that attacked only mutants and caused their powers to become powerfully out of control to a fatal end. The virus hit close to home with mutants suffering that had close ties to the X-Men like Pyro, Revanche and Colossus' young sister Illyana Rasputin. Illyana, who had been reverted to childhood following the events of the Inferno, was still a latent mutant in her current form and was the first casualty of the virus. It hit Colossus hard as he had just lost both of his parents soon before. The X-Men held a vigil in her honor with all X-Teams in attendance to mourn her death. Wishing to pay his respects and offer asylum to any and all mutants interested, Magneto crashed the funeral in a show of misplaced aggression. He attacked the X-Teams and if not for the intervention of Colossus, would have lost. Colossus then states that he has lost faith in the dreams of other men, namely Xavier, and wishes to make his own path in a new world and joins Magneto in Asteroid M.

    The X-Men waste little time putting together a strike force to infiltrate Asteroid M and discover the true intent of Magneto and the Acolytes. The Professor chooses a small team of Quicksilver, Wolverine, Rogue, Gambit, Jean Grey and himself. The mission is successful until confronted by Magneto. In his rage, Magnus attacks the X-Men and makes short work of most of the team. In one of the most shocking moments in comic history, he aggressively fights Wolverine and rips out his adamantium skeleton. The Professor decides that enough is enough and his former friend cannot be saved and wipes his mind. Jean Grey then takes over leadership and forces the team back to the craft while keeping the Professor breathing and Wolverine alive. In the end, Wolverine is left in a feral state with very little active healing ability and unsure of his life and purpose.

    With the Acolytes now in a power struggle, Fabian Cortez assumes leadership over Magneto's followers. He kidnaps Magneto's granddaughter and daughter to Quicksilver and the Avenger, Crystal and claims her in the name of Magneto. This enrages the Avengers and the X-Men who join forces to save Luna and take back Genosha. Cortez is defeated and Exodus takes a leadership role with the Acolytes.

    Phalanx Covenant

    For more information regarding this arc, see: Phalanx Covenant

    After recently returning to the mansion, Banshee notices small oddities with the mansion and its inhabitants. He investigates and finds that the X-Men have been replaced by an unworldly batch of beings who are targeting mutants. With Jubilee, Sabretooth and Emma Frost, he escapes to search for the next team of X-Men as noted by Cerebro. Meanwhile, Jean Grey and Cyclops have been on vacation away from the X-Men, saving themselves from imprisonment by the Phalanx. They join with Cable and Wolverine and search for the missing X-Men. Professor X, who had been offsite as well, gathered X-Force, X-Factor and Excalibur together in an old Acolyte base to form a plan. Knowing that the X-Men have been compromised, the other X-Teams split into three strike forces: one to infiltrate the Phalanx with \" Douglock\", a resurrected Warlock with the memories of Doug Ramsey; one to confront a cluster of the Phalanx serving as the breeding grounds to a new generation of Earth born Phalanx; and one team to stay at the Acolyte base if all else fails. Forge is successful in creating a feedback which disables the birth of the new Phalanx. Douglock and his team stop the heralding beacon from summoning the rest of the Phalanx.

    Cyclops team finds and rescues the captured X-Men almost simultaneously and discovers that Cameron Hodge plays a huge role in allowing the Phalanx entry and knowledge of our world. Banshee saves all but one of the new mutants and he and Emma Frost convert the Massachusetts Academy to a school to train the teenage team of Generation X.

    Lineups

    X-Men

    • Cyclops, Jean Grey, Beast, Wolverine, Storm, Banshee, Rogue, Gambit, Psylocke, Archangel, Bishop, Jubilee and Professor X

    X-Factor

    • Havok, Polaris, Multiple Man, Strong Guy, Wolfsbane, Forge and Random

    Excalibur

    • Nightcrawler, Shadowcat, Captain Britain, Meggan, Daytripper, Douglock, Rachel Summers

    X-Force

    • Cable, Domino, Cannonball, Siryn, Warpath, Shatterstar, Rictor, Boom-Boom, Feral

    Generation X

    • Banshee, Emma Frost, Jubilee, Synch, Husk, Skin, M, Chamber, Penance

    1990s X-Men

    Many X-Overs included

    \"90's
    90's X-Men
    • \"The X-Tinction Agenda\" The government of Genosha captured mutants and used them as prison labor.
    • \"The Muir Island Saga\" The original X-Factor and Xavier returned to the X-Men to deal with the evil Shadow King.
    • \" X-Cutioner's Song\" Cable's clone and arch-enemy Stryfe, framed the X-Force leader for an attempt on Professor X's life. He also captured and tormented Cyclops and Jean Grey, the genetic parents of both Cable and Stryfe, who were revealed to be time-travelers.
    • \" Fatal Attractions\" Magneto returned, ripping out Wolverine's adamantium and forcing Xavier to mind wipe him. Continues in \" Bloodties\" and causes the \" Onslaught\" X-Over.
    • \" Phalanx Covenant\" A collective consciousness infected with the Transmode Virus infiltrated the X-Mansion, kidnapped a small bunch of previously unknown mutants and plotted to eliminate mutant-kind. This crossover results in the teenage mutant group, Generation X.
    • \" Legion Quest\" Professor X is killed by his time-traveling son Legion before he had ever formed the X-Men. This causes an alternate reality to unfolded in which Apocalypse rules North America and Magneto leads the X-Men as a resistance force ( Age of Apocalypse).
    • \" Onslaught\" Professor X lost control of his powers, producing an evil, near-omnipotent secondary personality called Onslaught, which battled the X-Men, The Avengers, and the Fantastic Four.
    • \" Operation: Zero Tolerance\" An anti-mutant army, leading by Bastion, is given government license to hunt down the X-Teams and other mutants.

    2000s X-Men

    • Grant Morrison revamped the X-Men with his New X-Men run. This was the core X-men book. There weren't any X-Overs in this time. The major story-lines are \"E for Extinction\", \"Riot at Xavier's\", \"Assault on Weapon Plus\", \"Planet X\" and \"Here Comes Tomorrow\".
    • After New X-Men, Joss Whedon's Astonishing X-Men became the flagship X-title. It lasted only four story arcs: \"Gifted\", \"Dangerous\", \"Torn\" and \"Unstoppable\".
    • \" House of M\": after creating an alternate reality, where the mutants are the dominant race, the Scarlet Witch shut off the X-gene in almost the entire mutant population. Wolverine got his memories back.
    • \" Decimation\": the decimation of the mutant race after the events of \"House of M\".
    • \" Messiah CompleX\": the first mutant birth after \"House of M\". Different parties fight over the baby.
    • \" Divided We Stand\": the X-Men is disbanded after the events of Messiah Complex.
    • \" Manifest Destiny\": the mutants find a new home in San Franciso.

    All New, All Different Marvel

    Post-Secret Wars and Conflict with the Inhumans

    Following the collision of realities in Secret Wars, an eight-month gap proceeded the multiverse-spanning crossover. Little is known about what has transpired in that time other than that the Inhuman Terrigen Mist, that had been floating in the atmosphere prior to Secret Wars and is responsible for granting the alien race their uncanny abilities, has slowly been poisoning mutants, rendering them infertile, causing their powers to go haywire, and even spreading a disease among mutants called M-Pox that potentially could be transferred to humans. During this time, several characters have alluded to the death of (present day) Cyclops and an incident he was responsible for that increased fear and hatred among humans against all of mutantkind.

    All-New X-Men

    The time-displaced original X-Men (sans Jean Grey) have dispersed across the country in an attempt to live normal lives. The past versions of Iceman, Beast, and Angel reunite to embark on a road trip and are joined by former Jean Grey School students Oya and Genesis, who have both had their fair share of hard times. When time-displaced Cyclops encounters a group of Cyclops fanatics named the Ghosts of Cyclops, he ends up battling them in a school library which causes both him and another young mutant named Thirst to be arrested. During their time in jail together, Thirst questions whether the young Cyclops is a disgruntled child of his group's idol. Scott reveals that he is indeed the real Cyclops and is in fact ashamed of his future self's actions.

    Extraordinary X-Men

    Following the demise of the Jean Grey School For Higher Learning, ex-headmistress Storm heads up efforts to combat the effects of the Terrigen Mist that is poisoning all mutants as well as the resulting public backlash due to the spread of M-Pox. To prevent the spread of disease, she has transported nearly all of her former students as well as both human and mutant refugees, to X-Haven, a terraformed deposit of the demonic dimension Limbo, which Magik presides over. However, following an attack by Mister Sinister that takes down nearly half of the team (including their main defense from demonic invasion--Magik), the refugees of X-Haven are forced to step up to protect their new sanctuary.

    Uncanny X-Men

    Consisting of Magneto, M (Monet St. Croix), Psylocke, an inverted Sabretooth, and a lifeless \"droid\" Archangel, this group of extreme mutants have banded together to take preventative action against dangerous threats towards mutantkind. Initially taking down the mysterious Someday Enterprises, who had been exploiting mutants by providing a cyrogenic service to take willing mutants out of play until the Terrigen crisis had been averted, the group encounters Apocalypse's minions the Dark Riders, whose mixed mutant/Inhuman membership intend to take out healers from the playing field in order for nature to decide who is fit to survive in this new world: mutants or Inhumans.

    IVX: Inhumans Vs X-Men

    \"The
    The war between the X-Men and Inhumans

    A flashback later reveals that Cyclops discovered that the Terrigen Mist was poisonous to Inhumans after finding a dying Jamie Madrox. Outraged, Cyclops sends out a psychic message to the world, revealing the truth of the Terrigen. He and his team then set out to destroy the Terrigen Clouds to prevent the extinction of the mutant race. Alchemy manages to destroy one of the two clouds before succumbing to the effects of the Mist and dying. Cyclops vows to destroy the second one, but is confronted by Black Bolt and Medusa, the Inhuman leaders. A fight ensues, and Black Bolt kills Cyclops when he sees him preparing to fire an optic blast. However, it is later revealed that Cyclops had died quite some time ago, and that Emma was simply using his image in order to give him a more meaningful death that could be used to rally the mutants against the Inhumans.

    In the present, Beast discovers that there is no stopping the Terrigen Mist from spreading. The remaining cloud is becoming more saturated, and once it shrinks, will dissipate into the atmosphere, rendering the entire planet uninhabitable for mutants. Beast meets with representatives of the various X-teams and suggests that the X-Men prepare to leave the planet, but instead, Emma and Magneto propose a war to destroy the final cloud. The mutants launch an assault on New Attilan, leading to an all-out war between the X-Men and Inhumans. As this is going on, a team of young Inhumans led by Ms. Marvel discover that the Terrigen Mist is killing mutants, and work with Forge and the young Cyclops to try and find a way to stop the conflict. Moon Girl and Iso are able to explain the truth to Medusa, who voluntarily destroys the cloud herself. However, Emma is not sated by this, and unleashes an army of Sentinels that have been programmed to kill Inhumans. The X-Men and Inhumans unite to stop Emma, and upon her defeat, the conflict ends.

    ResurrXion

    In the aftermath of the conflict with the Inhumans, the X-Men set out to rebuild. Two new X-Men teams formed: X-Men Gold and X-Men Blue. The X-Mansion is relocated to Central Park in New York, with the X-Men wanting to show themselves to world and get back to their roots, led by Kitty Pryde as headmistress. Meanwhile, Magneto takes the time-displaced original X-Men under his wing to Madripoor, acting as their new mentor figure. Meanwhile, Jimmy Hudson, Wolverine's son from the destroyed Ultimate Marvel universe, is revealed to be residing in the mainstream universe after the events of Secret Wars. Jubilee is tasked with leading a new iteration of the Generation X team, consisting of Bling!, Nature Girl, Eye Boy, Quentin Quire, Hindsight and Morph with the help of Chamber and Husk.

    X-Men Gold

    The X-Men Gold team consisting of Kitty Pryde, Nightcrawler, Colossus, Storm, Old Man Logan and Rachel Grey, faces a familiar foe in the Brotherhood of Evil Mutants. However, this time, the team is under Mesmero's influence. The X-Men succeed in defeating and imprisoning him, rescuing Magma in the process, who was under his mind control, as well as taking Cleevus, an unknown alien, into custody in order to further examine him. Following the events of Secret Empire, Cleevus was able to escape and return to the Negative Zone, where he is from, and seek revenge on the X-Men.

    A new foe to the X-Men is the mutant-hating activist, Lydia Nance. She has publicly expressed that mutants are a threat to the human race, hoping to wipe them out from existence. It is also revealed that she has paid Mesmero to form the Brotherhood of Evil Mutants in order to make mutants look bad in the public eye. Mesmero managed to escape prison with two of his teammates, Avalanche and Pyro, and planned a public attack on the X-Men. While succeeding in stopping them, the X-Men also caused more harm than good as the whole scene was public, and the police were forced to take them into custody, which was Lydia Nance's plan all along. The X-Men were eventually in prison, making Iceman the interim leader of the X-Men Gold team. After learning about Lydia Nance and Mesmero's plans, Pyro decided to leave them and seek asylum with the X-Men. Iceman accepted to take in Pyro as a provisional X-Man.

    Line-ups

    X-Men Gold: Kitty Pryde, Storm, Colossus, Nightcrawler, Old Man Logan, Rachel Summers

    X-Men Blue: Magneto, Jean Grey, Cyclops, Iceman, Beast, Angel

    and later: Wolverine (Jimmy Hudson), Bloodstorm, Polaris.

    Major Storylines

    • The Dark Phoenix Saga
    • Days of Future Past
    • God Loves, Man Kills
    • Mutant Massacre
    • Fall of the Mutants
    • Inferno
    • Days of Future Present
    • X-Tinction Agenda
    • Muir Island Saga
    • X-Cutioner Song
    • Fatal Attractions
    • Phalanx Covenant
    • Age of Apocalypse
    • Legion Quest
    • Onslaught
    • Children of the Atom
    • Operation: Zero Tolerance
    • The Twelve
    • Dream's End
    • Eve of Destruction
    • E is for Extinction
    • Riot at Xavier's
    • Assault on Weapon Plus
    • Planet X
    • Here Comes Tomorrow
    • Gifted
    • House of M
    • Decimation
    • Unstoppable
    • Deadly Genesis
    • Rise and Fall of the Shi'ar Empire
    • Endangered Species
    • Messiah Complex
    • Divided We Stand
    • Manifest Destiny
    • X-Infernus
    • Messiah War
    • Utopia
    • Nation X
    • Necrosha
    • Second Coming
    • Curse of the Mutants
    • The Five Lights
    • Age of X
    • Schism
    • Regenesis

    Original X-Men Spin-Off

    X-Men: First Class Vol. 1

    The original X-Men team; Cyclops, Iceman, Marvel Girl, Beast and Angel, face off new nemesis and team-up with other super heroes. They face off a living plant in Greenland, they enter the mind of Professor Xavier, team-up with Dr. Strange, Thor and Gorilla Man The team also deal with Skrulls, the Lizard and work love problems with Angel and the Scarlet Witch.

    X-Men: First Class Special

    In this one issue Iceman and Beast try to recruit a museum \"statue\". The team listens to bad poems and we figure out that Jean had a pet dragon.

    X-Men: First Class Vol. 2

    A new series goes on with Jean having some girl bonding with the Invisible Girl. Have the team isolated in Island X where Mastermind tricks them to stay there. The team takes some vacations. They face off the Hulk and lose their powers during a Sentinel attack. Later because of a Catalyst they over power and defeat the Sentinels. Later then the X-Men see their future selves and how they could end up. Showing Iceman as a huge monster, Beast is a beast and Jean is a Phoenix. Later the Scarlet Witch is auditioned to be a SHIELD agent and then turns them down. After a mission everybody gets sick except for Cyclops so he has to deal with a maniac and death. The team later teams-up with the Continueteens and defeat Mysterio. The Team then gets a sudden change in members since Angel finds a civilization where he's accepted no matter how he looked while looking for his aunt. While Angel was enjoying being accepted the X-Men get an android as a 5th member of the X-Men, but it turned out that he ended up being consumed by lava because he wanted to look human but couldn't although Jean saved his brain. Back home the team talked on how they missed Angel.

    Alternate Realities

    Age of Apocalypse

    \"Earth-295:
    Earth-295: Age of Apocalypse

    After Legion killed his own father Xavier, the X-Men of the Age of Apocalypse reality was led by Magneto. They fight against Apocalypse´s hordes of evil soldiers. There were two teams, Astonishing and Amazing, and members included Rogue, Blink, Iceman, Sabretooth, Morph, Banshee, Storm, Dazzler, Exodus, Nightcrawler, Quicksilver, Sunfire and Wild Child. They are more violent and, in some occasions, could use fatal actions.

    When the X-Men found Bishop and learned about the main reality, Magneto created and make alliances with parallel groups of mutants and heroes to finally destroy Apocalypse. X-Calibre: Nightcrawler goes through Infernal Gallop to find Destiny, in order to verifies Bishop´s story. Gambit and the Xternas: They should steal M´kraan Crystal in Shi´ar Empire. Generation Next: Led by Colossus and Shadowcat, they must rescue Illyana, Colossus sister and the last time travel mutant.

    Ultimate X-Men

    \"Ultimate
    Ultimate X-Men

    Professor Xavier starts an X-Men team which includes Cyclops, Marvel Girl (Jean Grey), Storm, Beast and Colossus. Later while fighting Sentinels the team recruited Iceman. The Brotherhood of Mutants sent a spy to infiltrate the X-Men group to kill Professor X. They sent Wolverine. Magneto, The Scarlet Witch, Quicksilver, Toad, Multiple Man, the Blob and Mastermind form the Brotherhood and they had kidnapped the President´s daughter. The X-Men saved her and in the last moment Wolverine had a change of heart and instead of killing Xavier he tried to kill Magneto, while he sent Sentinels to kill humans. In the end Xavier killed Magneto with the help of Quicksilver and Scarlet Witch.

    Xavier then started helping Wolverine to find out where were the people who gave him the metal implants. Weapon X did all the implants and they found it. Then the X-Men were abducted by Weapon X and were tortured and they even made Beast blue.

    Ultimate Alpha Flight arrived and seemingly kill Iceman and now the X-Men face these strange super powered team. Beast puts Iceman back together but Alpha Flight arrive to take Northstar, something that Colossus isn't very happy about. Alpha Flight was under the influence of a power enhancing drug called Banshee. Taking Northstar had Colossus so mad Dazzler, Nightcrawler, Rouge and him went after Alpha Flight. Cyclops went along to prevent anything stupid from happening. The Acolytes appeared into the picture and caused the death of Northstar. Colossus and the rest of the people who went along went under Banshee drug and enhanced their powers. Dazzler could maneuver her powers to create anything, Rouge could keep the power she absorbed, Nightcrawler could go to greater lengths, Colossus became stronger, and Cyclops could control his eye beams and fly.

    Jean Grey had taken it into her own hands to lead the X-Men and she was driving them around pretty hard. Nightcrawler contacted her saying that they needed help from themselves because they were addicted to the power enhancer. Wolverine had figured out that he was positive to have been dosed with Banshee so he went to Peter Parker for help to sort things out. Kitty and Peter were dealing with Banshee addicts themselves when Wolverine arrived. Peter explained that he was positive because he was Banshee the drug was made by taking properties of him. The X-Men went after the addicted X-Men and fought it off. Jean went off for a moment while she talked to her father as Phoenix when then she fell unconscious. Logan blamed Colossus for it so he took his heart out for it.

    Both X-Men embark on a flight until Phoenix stops it all. Everyone cools down for the exception of Cyclops that flies to the moon. During the fight Wolverine looses a leg to Colossus. Phoenix show to Colossus that Northstar is okay except that he is paralyzed from the waist down. Colossus and Wolverine are fixed up by Jean after that and then Jean heads to the moon. Wolverine using some of the Banshee Colossus bought he tracked it down to Muir Island blaming Xavier for it. Jean talked to Scott and after that he said he wanted to keep the power the Banshee started wearing off so she put his glasses back on. The Prof. was who created Banshee from Wolverine along with Magneto but Moira distributed it. She fought Wolverine with her \"Screaming\" powers. In the end Wolverine destroyed the whole facility. Quicksilver then arrived an told Moira that Magneto had newer plans for the near future.

    20 Years into the future a new X-Men team that consisted of Captain America, Wolverine, Shadowcat, Rogue and a male Phoenix wanted to prevent the events of Ultimatum so they traveled back in time to stop it.

    Reed and Sue were going to go on a date when the future X-Men arrived trying to kill Reed. Reed not having any internal organs couldn't be killed so they kidnapped him. The rest of the Fantastic Four went to the present X-Men for help. Reed discovered that the future male Phoenix was actually his son Franklin Richards. Then future Wolverine attempted to kill Phoenix. Then the rest of the future X-Men discovered that future Wolverine was actually a Sentinel from the future. By the time the FF and present X-Men got there many Wolverine Sentinels had been destroyed had killed Rouge and had taken Reed into the future. Captain America was dying and Jean unmasked him revealing he was actually Scott. He told the group that himself, Jean and the original Cap had been stripped away of their powers so he took over as Captain America after Steve Rogers aged 100 years, then he died. In the future Iceman was captured by the Sentinels and Reed escaped his cell when he followed a trail of fire. Thinking it to be Johnny he then saw the future Fantastic Four: Invisible Woman, Iron Thing, Namor and Firestar.

    The future X-Men, or what was left of them told the present X-Men and FF that the reason that they needed to stop it all was because the new ruler was getting rid of mutants. That new ruler was Sue. Future Sue convinced present Reed to fix a machine that would strip away people of their powers just like Cyclops´s Reed gave to her request while the present X-Men, present FF, and future X-men went into the future to find out what was going on. Ben and Firestar found out that both of them in the future were in love and Iceman found himself being killed by Namor. Sue met Nihil again then just to find out that he was actually future Reed. Future Phoenix turned everyone in to his mother. Reed then took away future Sue´s powers since clearly she had gone crazy because of her brother´s death. Everyone let the future hero´s free from a prison in the Negative Zone Sue had made to maintain the super powered heroes. The present FF and X-Men went back to their own time and Sue and Reed left to be alone. Sue told Reed she was worried that would eventually happen to them, but Reed assured that it would not. Sue left and then from a drawer Reed took out a ring, sure that, that future would not happen.

    Ultimatum and Beyond

    \"New
    New generation of X-Men

    In Ultimate X-Men #100 we find that The Academy of Tomorrow has been attacked by Madrox on behalf of Magneto. There are several multiples of Madrox with bombs strapped to their chest and when the Cyclops, Iceman and Rogue arrive the school is in flames and Northstar and Polaris are shown as dead. It is assumed that anyone inside has perished. During Ultimatum, a number of the X-Men are killed, including Dazzler, Nightcrawler and Beast, who die when Magneto's tidal wave hits New York. Magneto then kills Charles by ambushing him in his office and snapping his neck, while Angel is mauled to death by Sabretooth. Wolverine is killed by Magneto during the final battle, and Magneto himself is soon after killed by Cyclops. Cyclops himself is the final victim, dying after Quicksilver sends a bullet through his skull at super speed.

    Following the events of Ultimatum, the remaining X-Men are reduced to a small, scrappy band of survivors. They are forced to contend with a Sentinel attack from William Stryker, Jr. while they fight to stay alive in this new world. For a time, the team is also joined by Johnny Storm, formerly of the Fantastic Four. Their ranks also expand to include Jimmy Hudson, the son of the deceased Wolverine. During this time, the team is also joined by characters Armor and a new mutant named Mach 2, who clashes with Kitty Pryde over leadership. Around this time, a mutant cure is offered, with many people taking it.

    \"The
    The X-Men of two worlds

    The X-Men are eventually gifted a small mutant reservation by Steve Rogers, the new American president. The soil is irradiated, but they are (with the help of a new mutant named Blackheath) eventually able to concoct a new type of seed that will grow in any environment. When the time-displaced Earth-616 X-Men land in the Ultimate Universe, they team up with Miles Morales and the Ultimate X-Men on a mission to fight Ultimate Doctor Doom. The Ultimate X-Men make their last appearance in Secret War, where they are part of the Ultimate heroes warring against the Earth-616 heroes. In the end, both groups unite to face God Doom.

    Nocturne's Home Reality

    \"Nocturne's
    Nocturne's Reality X-Men

    In Nocturne's home reality, Wolverine killed Professor Xavier in a berserker rage and became paralyzed when he died. Wolverine became the new leader of the X-Men team which consisted of Nightcrawler who was field commander, Nocturne, Kitty Pryde, Armageddon, Plague who was a embodiment of the Legacy Virus and the Phoenix Force who inhabited Colossus' dead body.

    X-Men 2099

    The X-Men of 2099 were Cerebra, Krystalin, Desert Ghost, Meanstreak, Bloodhawk, La Lunatica, Skullfire, Metalhead, Sham, Junkpile and Serpentina.

    Main article: X-Men 2099.

    Earth X

    The X-Men on Earth X were led by Cyclops, just calling himself Mr. S. Members were Dogface, Tower, Double-Header, Charmer and Mermaid.

    Mutant X

    The X-Men in the Mutant X reality was led by Magneto. Members were Mystique, Nightcrawler, Polaris, Quicksilver, Rogue and Cerebro.

    The Original Line-up was Beast ( Brute), Angel ( Fallen), Jean Grey, Havok and Iceman.

    Former members included Bloodstorm, Shadowcat and Colossus.

    Here Comes Tomorrow

    The X-Men of the Here Comes Tomorrow reality was lead by Cassandra Nova. Members were Wolverine, Beak ( Tito Bohusk), Tom Skylark and Rover, E.V.A. and Martha Johanson.

    Earth-1815

    In this reality, where the Exiles were sent on their first mission, Professor X was evil and intended to kill all humans. He lead the X-Men, and members included: Juggernaut, Chamber, Domino, Human Torch and Spider-Woman ( Jessica Drew).

    X-Men NOIR

    In this reality (set in the 1930's), the X-Men are a gang of sociopaths (instead of mutants) who were led by the now incarcerated physicist Professor Charles Xavier. Professor Xavier believes sociopath is the next step in human evolution. The X-Men are framed for killing their own member Jean Grey by way of three cuts over the back and face. Leader of the police force known as \" The Brotherhood\" named Magnus is put in charge of the investigation. As the search for the X-Men continues more and more of them are found dead. When a member of the city's police tracks down the X-Men's new leader Scott Summers and is informed that someone is setting them up. When he tells them to go to the police Scott responds. \"We're the X-Men, and no one is on our side\". Meanwhile a mysterious man in a bright red cape is investigating the crimes himself.

    After Warren Worthington is thrown from a roof top and Hank McCoy is shot and killed in a run in with The Brotherhood, Magnus orders the Brotherhood to take down Sebastian Shaw (a powerful mob boss) and his Hellfire Club. Magnus believes with the X-Men out of his way and the Hellfire club killed off, the city will be \"his\". He meets with Anne-Marie Rankin to learn the whereabouts of the last few X-Men but she kills him instead. The caped figure later realizes that Jean Grey is not dead. What happened was that she killed Anne-Marie Rankin and took her place, because she wanted to avoid being studied by Xavier or exploited by Magnus. She then says she knows that the caped figure cannot kill her and pulls a gun on him but he then reveals that he is the twin brother of who she thinks he is and then pushes her off the roof causing them both to fall to their death.

    His twin, accompanied by Scott finds their bodies and says that he lost him years ago by what he had become. He recants about how when he and his brother both worked at a prison they started the whole cape thing because it made the inmates think he was in two places at the same time (making it seem like he has super powers). They meet up with Logan and sail off together.

    Egg's Men

    In the Showcase No. 65, It's revealed on Earth-Twelve the X-Men exist as the Egg's Men. Led by Dean Egghead, the Egg's Men were evolutionary throwbacks.

    The Cancerverse

    \"The
    The Ex-Men of The Cancerverse

    In The Cancerverse, the \"Ex-Men\" are an army of grotesque and feral bio-weapons who gestate inside large tumor-like eggs that are being grown within the bodies of gargantuan bio-organic warships.

    The Ex-Men were first seen when one of the warships began birthing millions of eggs into the debris field composed of dead ships and interstellar flotsam from other realities and future timelines and began to hatch from the eggs.

    With the aid of Talon from The Fraternity of Raptors, Ch'od, Raza and a handful Imperial Guardsmen tried fending the abominations off until Quasar ( Wendell Vaughn) and Oracle could successfully warn the Shi'ar Empire of the coming darkness.

    But just when all hope of defeating the creatures and their warships seemed lost, Gladiator ditched a Galactic Council Meeting and arrived at the debris field to help turn the tides in favor of The Imperial Guard Fault Exploration Team by focusing on destroying the warships while the others deal with The Ex-Men.

    Earth 4011 (Wolverine The End)

    In the future, after the death of the Professor, according to Logan, the X-men became a fascist group who care more about their image then doing the right thing. Two of their more prominent members are Kristin and Sarin.

    Other Media

    Television

    The X-Men made their first animated appearance on the 1960s The Marvel Superheroes. This was a television series with all the original X-Men line-up (Angel, Beast, Cyclops, Jean Grey, and the Iceman ). Originally, Grantray-Lawrence Animation wanted to make a Fantastic Four cartoon but Hannah Barabara got the rights to it, so they substituted them with the X-Men. The X-Men made their appearance in the Sub-Mariner episode \" Doctor Doom's Day\". Strangely enough, they were never actually referred to as the X-Men. They were, instead, referred to as the Allies for Peace, however the characters all went by their names from the comics and had their original designs from the comics as well. Magneto also made a guest appearance on Hannah Barabara's Fantastic Four Cartoon. Reed Richards bamboozles him by using a wooden gun and when Magneto tries to manipulate he cannot and thinks powers have faded.

    \"Spider-Man
    Spider-Man and His Amazing Friends

    Having two members of the X-Men (Iceman and Firestar, retroactively) as regulars on the show it only makes sense that the X-Men guest-starred in quite a few episodes of \"Spider-Man and His Amazing Friends,\" starting with a flashback in the episode titled \"The Origin of Iceman.\" Appearing in this episode are the original X-Men (Angel, Beast, Cyclops, Jean Grey, and the Iceman) and Professor Xavier. The X-Men's next appearance in this show was in the episode \"A Firestar is Born\", including appearances from Professor X, Cyclops, Angel, Wolverine, Storm, and even Juggernaut (plus Magneto and a Sentinel in cameo appearances).

    In 1989, Marvel Productions made a pilot episode for a potential X-Men series. The pilot was entitled Pryde of the X-Men. It followed Kitty Pryde joining up with the X-Men. This series featured Professor Xavier, Cyclops, Storm, Colossus, Nightcrawler and Wolverine. It also had several members of the brotherhood including Magneto, Toad, Juggernaut, Pyro, The White Queen and many others for the X-Men to fight. The series was never picked up.

    X-Men: The Animated Series premiered in 1992 with its unfinished pilot Night of the

    \"X-Men:
    X-Men: The Animated Series

    Sentinels Part 1. It was run on Fox's Saturday morning line up. Its team regular roster was made up of Professor Xavier, Cyclops, Jean Grey, Rogue, Gambit, Wolverine, Storm, and Beast. The show did feature other X-men as well, such as Colossus, Nightcrawler, Forge, Havok, Polaris, Cannonball, Banshee, Iceman, Angel, Longshot, Cable, Bishop and an original character named Morph (who would later be introduced in the comic universe in the Exiles comics). The show was immensely popular and lasted 5 seasons. When it aired in Japan it got an entirely new opening complete with animeesque animation and j-pop lyrics. The rest of the show was basically the same. The series also spawned it's own comic spin-off which was entitled X-Men: Adventures. This series lasted 15 issues and then was cancelled. The TV series also earned #13 in IGN's top 100 animated series, surpassing shows such as Star Wars: The Clone Wars and Avatar: The Last Air Bender.

    The WB tried it's own X-Men show in 2003. It was called X-Men: Evolution, with a tone and cast inspired by the movies. Its original team roster consisted of: Professor Xavier, Cyclops, Jean Grey, Wolverine, and Storm. They are joined by Nightcrawler, Shadow Cat, Spyke, Rogue, and Beast.

    \"X-Men:
    X-Men: Evolution

    Over the course of the show, more characters such as Angel, Boom-Boom, Multiple, Sunspot, Wolfsbane, Berserker, Jubilee, Gambit, Colossus, and X-23 appeared, giving the show one of the largest cast of mutants to date.

    The series was set in the fictional New York town of Bayville, and featured teenage versions of the X-Men. The teens were opposed by members of the Brotherhood, who in this show consisted of teen versions of Quicksilver, The Blob, Avalanche, and Toad, and were led by Mystique. Scarlet Witch joined the Brotherhood in the later seasons, proving to be a powerful enemy. Other villains included Magneto and Sabretooth, as well as Apocalypse, who acted as the main antagonist of the show's final season.

    The series is notable for introducing the original characters Spyke and X-23, both of whom were created exclusively for the show. The series proved popular enough that Spyke inspired a similar X-Force member in the comics called The Spike, while X-23 officially appeared in the comics shortly after the show ended.

    The show ran for 4 seasons before ending. This show also inspired a comic book spin-off but it was cancelled after 9 issues due to low sales.

    \"Wolverine
    Wolverine and the X-Men

    2009 saw the release of Wolverine and the X-Men. The show revolves around Wolverine taking over as leader of the X-Men when Charles Xaiver goes missing. The series only ran for one season before being canceled due to financial issues.

    Wolverine appeared in the kid friendly show Super Hero Squad, other X-Men have made an appearance and played supporting roles, including Storm and Iceman.

    The X-Men also appeared in the 12-episode anime series, known simply as X-Men. In the series, the X-Men were sent to Japan and save Armor from the U-Men, a human cult who harvests mutant organs to gain superhuman abilities. As the show progresses, the X-Men come into conflict with the Hellfire Club and Mastermind, as well as Takeo Sasaki, Professor Xavier's illegitimate son.

    In 2014, the same year as the release of the Days of Future Past movie, the X-Men guest-starred in several episodes of the Toei-produced Japanese anime series Marvel Disk Wars: The Avengers.

    \"The
    The X-Men in Disk Wars

    The team in the series consisted of Wolverine, Storm, Colossus, and Iceman, with Cyclops and Beast as additional members who were captured by Loki and trapped in DISKs in the first story arc.

    During the course of the story, the team encountered and recruited Noriko Ashida, a young Japanese girl who would end up going by the code name Surge.

    Films

    The first X-Men movie, released in 2000, introduced the main lineup of characters to be used through the trilogy. This included Wolverine, Rogue, Professor X, Storm, Cyclops, and Jean Grey. The main premise was the mutant registration act. Magneto and his brotherhood (Mystique, Sabretooth, and Toad) attempted to create a machine to turn normal humans into mutants.

    X2 was released in 2003. The movie introduced several new characters to the film franchise, including Nightcrawler. It also expands on the back story of several younger mutants introduced here and in the first movie. The movie is centered around William Stryker's goal to destroy all mutants. The X-Men are forced to work together with their enemies in order to stop a worldwide genocide. This move also explores Wolverine's roots, seeing his return to the Weapon X base and facing off against a Stryker-controlled Lady Deathstrike.

    \"The
    The X-Men team in The Last Stand

    X-Men 3: The Last Stand was released in 2006, following a major change in the creative team behind the films. The younger mutants begin to take a more central role in this film, as a love triangle is developed between Iceman, Shadowcat, and Rogue. This film also introduces the rest of the original X-Men lineup: Beast and Angel. It addresses many of the key character's origin stories, including Jean Grey. This film draws heavily on the \"mutant cure\" stories from the comics, while threading in a Dark Phoenix-like story.

    In 2009 the first solo spin-off movie, X-Men Origins: Wolverine was released, it focused on Wolverine's origin story from childhood through his adamantium infusion. The plot is based on William Stryker's goal of creating the perfect weapon, Deadpool/Weapon XI, to hunt and destroy mutants. Gambit makes his first movie appearance, and Cyclops is shown in his youth. Versions of Silver fox and Emma Frost are also included. Other members of the Weapon X program, such as Blob, Agent Zero, and Sabretooth, are depicted in the film.

    \"The
    The First Class-era team

    X-Men: First Class, The fifth film in the series, released in 2011, is a prequel to the first three movies. It is set during the 1960’s and focuses on the relationship between a young Charles (Professor X) and Eric (Magneto), as well as the early days of the first X-Men team.

    2013 saw the release of the second spin-off film, The Wolverine. The movie was set in Japan and fetured the debuts of longtime X-Men characters such as Mariko Yashida, Harada, and Viper.

    \"The
    The assembled X-Men in Days of Future Past

    The seventh movie, X-Men: Days of Future Past, was released in 2014 to rave reviews. The movie, which is a sequel to both First Class and The Last Stand, sees the remaining X-Men sending Wolverine back in time from the 2020's to the 1970's in order to stop a young Mystique from murdering Bolivar Trask and inadvertently giving rise to a future controlled by the Sentinels. The movie features the largest cast of X-Men to date, including newcomers Quicksilver, Bishop, Warpath, Blink, and Sunspot.

    A follow-up, X-Men: Apocalypse, would be released in 2016. The film was set in the new timeline created at the end of the previous movie, focusing on Professor X, Magneto and Mystique, as well as young versions of Cylcops, Jean Grey and Nightcrawler. Apocalypse was featured as the main villain. Unlike Days of Future Past, Apocalypse received mixed reviews, though it did well overseas.

    Another spin-off, entitled Deadpool, was released the same year. Unlikely Apocalypse, it received positive reviews and was a huge hit at the box office. A sequel was announced for 2018.

    Logan, the final Wolverine movie to feature Hugh Jackman, was released in 2017. The film was both a critical and box office success.

    The final Fox X-Men film was The New Mutants in 2020.

    At the 2019 San Diego Comic-Con, Feige name dropped \"the Mutants\" at the Marvel Studios panel, indicating a Phase 4 X-Men film is in the works.

    Video games

    Early X-Men games

    \"The
    The Konami game

    The first X-Men video game was released by Josh Toevs and LJN for the NES and was called The Uncanny X-Men. That same year (1989) a computer game was also released called X-Men: Madness in Murderworld.

    Konami also created an X-Men arcade game in 1992, which featured six playable X-Men characters: Colossus, Cyclops, Dazzler, Nightcrawler, Storm, and Wolverine.

    The game was based on the unsold Pryde of the X-Men pilot, and featured the X-Men fighting various enemies in order to defeat Magneto and rescue the Professor and Kitty Pryde from Asteroid M. Characters such as the Sentinels, the Reavers, Pyro, the Blob, Nimrod, Emma Frost, the Juggernaut, Mystique, Wendigo and the Living Monolith were featured as enemies.

    X-Men proved to be a huge success, and is often cited as one of the best X-Men games ever made, and one of the best Marvel games in general.

    X-Men games co-starring Spider-Man

    In 1992, the X-Men teamed up with Spider-Man for Spider-Man/X-Men: Arcade's Revenge for every major system of the time.

    The X-Men made a few appearances in Spider-Man 2: Enter Electro. Professor X ( Daran Norris) and Rogue ( Jennifer Hale) run a Danger Room simulation for the player to train in. Beast ( Dee Bradley Baker) appears in the first level to demonstrate the controller functions to the player.

    Sega Genesis and Super Nintendo's X-Men games

    In the 1990s, Sega released two popular X-Men video games for its Sega Genesis; X-Men and X-Men 2: Clone Wars.

    Wolverine starred in a solo game in 1994 for both the Super Nintendo and Sega Genesis called, Wolverine: Adamantium Rage.

    In 1994, the X-Men got their own game for the Super Nintendo called X-Men: Mutant Apocalypse.

    Fighting Games

    \"Children
    Children of the Atom

    The X-Men also starred in many 2-D fighting games such as 1994's X-Men: Children of the Atom (Capcom). The game was inspired by the animated TV show, and featured Wolverine, Storm, Cyclops, Colossus, Psylocke and Iceman as playable characters, with Omega Red, a Sentinel, Spiral and Silver Samurai appearing as playable villains. The Juggernaut and Magneto appeared as the two boss characters (unplayable in the arcade version, but playable in the home versions via cheat codes), while Akuma appeared as secret character. The plot was a loose adaptation of the Fatal Attractions storyline from the comics, with the X-Men battling evil mutants in order to confront Magneto on Asteroid M.

    Wolverine, Psylocke, Magneto and Juggernaut were subsequently featured in 1995's Marvel Super Heroes, another fighting game from Capcom. Marvel Super Heroes featured a more diverse roster of characters from other franchises like Spider-Man and the Avengers. The plot was a loose adaptation of the Infinity Gauntlet crossover from the comics, with the heroes of Earth uniting to save the universe from Thanos.

    \"X-Men
    X-Men vs. Street Fighter

    Capcom followed this up with X-Men vs. Street Fighter (1996), a crossover with the popular series of Japanese fighting games. Wolverine, Storm, Cyclops, Juggernaut and Magneto returned from Children of the Atom, while Rogue, Sabretooth and Gambit made their debuts as playable characters in the series. Apocalypse served as the game's final boss, transforming into a gigantic form. X-Men vs. Street Fighter was the first formal installment of the Marvel vs. Capcom series (as well as Capcom's broader Capcom Vs. series, which would include installments like Capcom vs. SNK, Tatsunoko vs. Capcom and Street Fighter X Tekken). It also introduced the popular tag feature to the series, with players selecting two characters who could swap out during battle.

    The game proved successful enough to spawn another installment, Marvel Super Heroes vs. Street Fighter, in 1997. Only Wolverine and Omega Red returned as playable characters, while Apocalypse served as the sub-boss. This time, Cyber-Akuma, a version of Akuma who had been transformed into a Horseman of Apocalypse, appeared as the true final boss. Marvel vs. Capcom: Clash of Super Heroes, followed in 1998, with Wolverine and Gambit being the only returning X-Men characters. The plot was loosely adapted from the Onslaught crossover, with Onslaught serving as the final boss. Marvel vs. Capcom 2: New Age of Heroes debuted in 2000, and thanks to upgraded hardware, brought back a massive number of X-Men characters from the past games, including Wolverine, Storm, Cyclops, Omega Red, Colossus, Rogue, Gambit, Silver Samurai, Sabretooth, Psylocke, Juggernaut, Magneto, Spiral, the Sentinel and Iceman. The game also added new fighters Cable and Marrow into the mix.

    \"Next
    Next Dimension

    After the X-Men license passed from Capcom to Activision, Activision and Paradox Development (the makers of the Wu-Tang Clan fighting game) released X-Men: Mutant Academy in 2000. The game was released to tie into the first live-action movie, and actually featured the movie costumes as alternate outfits for the characters. Wolverine, Cyclops, Storm, Beast, Gambit and Phoenix appeared as the playable X-Men, while Mystique, Toad, Sabretooth and Magneto showed up as boss characters who could be unlocked. Apocalypse was also featured as a secret character, while Pyro appeared as an exclusive boss character in the Game Boy version. The game was followed by X-Men: Mutant Academy 2 in 2001, which added Forge, Havok, Juggernaut, Nightcrawler, Professor X, Rogue, Psylocke and Spider-Man to the cast. When the next generation of game consoles rolled around, Activision released a third and final game in the series, X-Men: Next Dimension, for the PS2. Wolverine, Storm, Cyclops, Phoenix, Beast, Forge, Gambit, Psylocke, Magneto, Toad, Nightcrawler, Mystique, Rogue, Pyro, Bastion, Dark Phoenix, Betsy (an alternate version of Psylocke with different powers), Bishop, Lady Deathstrike and the Sentinel were all playable. The game had an original story which featured Bastion as the main antagonist. X-Men: Next Dimension was notable for being one of the first games to use the X-Men's then-recent leather outfits from Grant Morrison and Frank Quitely's New X-Men run, rather than the Jim Lee-designed outfits that had been used in all of the Capcom fighting games. It was also notable for bringing in Patrick Stewart, the actor who portrayed Professor X in the live-action films, to voice him in the game. The Activision games played similar to the Capcom games, with Next Dimension outright lifting moves from the Marvel vs. Capcom series.

    Magneto, Storm and Wolverine also appear in Electronic Arts' 3-D fighting game Marvel Nemesis: Rise of the Imperfects. Unlike the Capcom and Mutant Academy games, Marvel Nemesis was not very successful upon release. Electronic Arts began work on a new Marvel fighting game (with working titles ranging from Marvel Chaos to simply Marvel). Characters like Wolverine, Phoenix and Juggernaut were planned to appear, but the game was cancelled.

    After Electronic Arts lost the rights to make Marvel games, Capcom was able to release Marvel vs. Capcom 3: Fate of Two Worlds, in 2011. Wolverine, Storm, Magneto and the Sentinel returned, while Phoenix, Deadpool and X-23 made their debuts as playable characters.

    Film-based games

    To coincide with the release of the third film, Activision has released X-Men: The Official Game which filled in gaps between X2: X-Men United and X-Men: The Last Stand, such as explaining Nightcrawler's absence from the third film.

    Marvel: Ultimate Alliance

    \"X-Men
    X-Men Legends II

    Two role-playing video games entitled X-Men Legends (2004) and X-Men Legends II: Rise of Apocalypse (2005) were also released to great success. Patrick Stewart reprised his role as Professor X from the live-action films.

    Deadpool, Iceman, Storm, and Wolverine are playable in the major Marvel video game, Marvel: Ultimate Alliance, the follow-up/spiritual successor to the X-Men Legends games. Colossus is playable on the Xbox 360, Wii and PS3 versions of the game, and Jean Grey is playable on the GBA version. Cyclops, Jean Grey, Nightcrawler, Professor X, and Psylocke appear as NPC's on all versions while Beast, Forge, Karma and Dr. Moira MacTaggert were mentioned by different characters. In addition, during a cut-scene, Beast, Colossus, Cyclops, Gambit, Magneto, Professor Xavier, Psylocke, and Shadowcat were seen defeated by Doctor Doom alongside the Hulk. Xbox 360 owners were later able to download eight new playable characters for the game, including X-Men heroes and villains: Cyclops, Magneto, Nightcrawler, and Sabretooth.

    In Marvel: Ultimate Alliance 2, Wolverine, Deadpool, Iceman, Storm, Gambit, and Jean Grey are featured as playable characters while Cyclops and Psylocke are exclusive to PS2, PSP and Wii and Colossus appears as an NPC. In the briefing that follows the Wakanda incident, Captain America and Iron Man mention that the other X-Men members have been absorbed into The Fold. Psylocke, Cable, Magneto and Juggernaut were later added as downloadable characters for Marvel: Ultimate Alliance 2.

    X-Men Destiny

    \"The
    The last X-Men console game to date

    A host of new and old X-Men characters are set to appear in this game due for release in Fall 2011. Character's confirmed so far include Cyclops, Emma Frost, Northstar, Iceman, Nightcrawler, Surge, Pixie etc. In the game player's will choose one of three ready made character along with one of the three core powers which include Density Control, Energy Projection or Shadow Matter. In the game the player's will choose the fate of their chosen character which will decide whether they fight with the X-Men or the Brotherhood of mutants. Other X-Men villains will appear in the game including Magneto, Quicksliver, Toad etc and the Purifiers.

    Marvel Ultimate Alliance 3: The Black Order

    \"Ultimate
    Ultimate Alliance 3

    After an extended hiatus, the X-Men returned to the world of console video games with 2019's Marvel Ultimate Alliance 3: The Black Order, a Nintendo Switch exclusive. The X-Men are prominently featured in the game's initial roster, with Wolverine, Storm, Nightcrawler, Psylocke, Deadpool and Magneto all appearing as playable characters. Additionally, Cyclops and Colossus were later added to the game as free DLC characters. In 2020, a DLC pack called X-Men: Rise of the Phoenix, was released, which added Jean Grey, Gambit, Iceman and Cable to the game.

    Novels

    Five Decades of X-Men

    \"No

    This collection of stories celebrates five decades of X-Men adventures. An all-star cast of X-Men super-villains are set against a backdrop of some of the most important events in X-Men history.

    • Written By: Various, Anthology
    • Publisher: Ibooks (April, 2003)
    • ISBN-10: 0743475011
    • ISBN-13: 978-0743475013

    Star Trek: The Next Generation / X-Men: Planet X

    \"No

    On the planet Xhaldia, ordinary men and women are mutating into bizarre creatures with extraordinary powers. But is this a momentous evolutionary leap or an unparalleled catastrophe? The very fabric of Xhaldian society is threatened as fear and prejudice divide the transformed from their own kin.

    Dispatched to cope with the growing crisis, Captain Picard and the crew of the Starship Enterprise receive some unexpected visitors from another reality -- in the form of the group of mutant heroes known as the uncanny X-Men®. Storm, leader of the X-Men, offers their help in resolving a situation that is agonizingly similar to the human/mutant conflicts of their own time and space.

    But when hostile aliens appear in orbit around Xhaldia to try and abduct the transformed for use as a superpowered force in an attack on the Federation, even the combined forces of the crew of Starfleet and the X-Men may be unable to prevent an inferno of death and destruction.

    Starfleet's finest crew and Earth's greatest mutant heroes will need all their powers and abilities to save the Xhaldian people and stop a deadly threat to the Federation.

    • Written By: Michael Jan Friedman
    • Publisher: Pocket Books (May, 1998)
    • ISBN-10: 0671019163
    • ISBN-13: 978-0671019167

    The Ultimate X-Men

    \"No

    This gripping new anthology has over a dozen original tales starring the top-selling mutant heroes, the Uncanny X-Men, dealing with their greatest foes, as well as the day-to-day trials of being mutants -- trying to protect the world they've sworn to protect, a world that hates them for what they are!

    From Eluki bes Shahar's story of the X-Men's fight against a mutant who can alter reality to Dave Smeds's look at what would have happened if the X-Men never were, from Ashley McConnell's chronicle of Wolverine's trek across the frozen tundra to Dean Wesley Smith's tale of Gambit in his hometown of New Orleans, and much more -- these are spectacular new tales of mutant adventures!

    Each tale has a new illustration by a top X-Men artist from old favorites to today's hottest talents!

    • Written By: Various, Anthology
    • Publisher: Berkley (October, 1996)
    • ISBN-10: 1572972173
    • ISBN-13: 978-1572972179

    X-Men

    \"No

    It's the movie event of the year--and the action-packed book you've been waiting for.

    Outcasts from society, the X-MEN are genetic mutants, born with superhuman powers, who harness their special abilities for the greater good. But the human race they fight to protect rejects and fears--even hates--them.

    Not all mutants seek to protect mankind. One terrorist group--led by the supremely powerful Magneto--seeks to strike first. Battling against prejudice and agents of intolerance, the X-MEN must establish a peaceful coexistence between mutant and mankind or they will surely perish...

    • Written By: Kristine Kathryn Rusch & Dean Wesley Smith
    • Publisher: Del Rey (June, 2000)
    • ISBN-10: 0345440951
    • ISBN-13: 978-0345440952

    X-Men 2

    \"No

    They live among us, each possessing special superhuman abilities—sometimes a blessing, sometimes a curse. Mutants. Since the discovery of their existence, they have been regarded with fear, suspicion, and often hatred. Across the planet, the debate rages: Are mutants the next link in the evolutionary chain or simply a new species of humanity, fighting for their share of the world?

    Either way, one fact remains: Sharing the world has never been humanity’s defining trait.

    There are two sects of mutants: One aims to coexist peacefully with a world that despises them; the other group strikes at intolerance with a relentless, often murderous force. But now there is a new insidious enemy, and no one will be safe....

    • Written By: Chris Claremont
    • Publisher: Del Rey (March, 2003)
    • ISBN-10: 0345461967
    • ISBN-13: 978-0345461964

    X-Men & Spider-Man: Time's Arrow Book 1 - The Past

    \"No

    The all-new team-up trilogy.
    Spiderman: Marvel's most popular hero.
    X-Men: Marvel's most popular super-team.

    • Written By: Tom Defalco
    • Publisher: Berkey (July, 1998)
    • ISBN-10: 0425164527
    • ISBN-13: 978-0425164525

    X-Men & Spider-Man: Time's Arrow Book 2 - The Present

    \"No

    The X-Men and Spider-Man must join forces to stop destroying the multiverse in an adventure through the past, present, and future. Dinosaurs, knights, gunslingers, World War II heroes, old-friends-turned-enemies, and future versions of themselves await them...

    • Written By: Tom Defalco
    • Publisher: Berkley (August, 1998)
    • ISBN-10: 0425164152
    • ISBN-13: 978-0425164150

    X-Men & Spider-Man: Time's Arrow Book 3 - The Future

    \"No

    Kang's machinations have led to timelines collapsing at a great rate--the X-Men and Spider-Man must take the battle to the Conqueror if they are to keep him from becoming the master of time. But in order to find Kang, they must face alternate futures that may be more than they can bear.

    • Written By: Tom Defalco
    • Publisher: Berkley (September, 1998)
    • ISBN-10: 0425165000
    • ISBN-13: 978-0425165003

    X-Men & The Avengers: Gamma Quest Book 1 - Lost and Found

    \"No

    Marvel's greatest super-teams in an all-new trilogy!

    The X-Men-- mutant protectors of a world that fears and hates them. The Avengers-- Earth's mightiest heroes, the greatest super-team ever assembled. When the Scarlet Witch of the Avengers and Rogue of the X-Men all disappear under mysterious circumstances, each team's search leads them to more questions than answers.

    When the X-Men appear to attack a high-security government installation, the Avengers must track down the mutants, and learn the truth behind the abductions before it's too late!

    • Written By: Greg Cox
    • Publisher: Berkley (July, 1999)
    • ISBN-10: 0425169731
    • ISBN-13: 978-0425169735

    X-Men & The Avengers: Gamma Quest Book 2 - Search and Rescue

    \"No

    The X-Men--mutant protectors of a world that fears and hates them. The Avengers--Earth's mightiest heroes, the greatest super-team ever assembled. Now they must put aside their differences and join forces against the Leader, the gamma-powered evil genius who has already abducted one Avenger and two X-Men as part of his latest plan--with the fate of the entire globe at stake!

    • Written By: Greg Cox
    • Publisher: Berkley (August, 1999)
    • ISBN-10: 0425169898
    • ISBN-13: 978-0425169896

    X-Men & The Avengers: Gamma Quest Book 3 - Friend or Foe?

    \"No

    The X-Men--mutant protectors of a world that fears and hates them. The Avengers--Earth's mightiest heroes, the greatest super-team ever assembled. Now they must put aside their differences and join forces against the Leader, the gamma-powered evil genius who has already abducted one Avenger and two X-Men as part of his latest plan--with the fate of the entire globe at stake!

    • Written By: Greg Cox
    • Publisher: Berkley (June, 2000)
    • ISBN-10: 0425170381
    • ISBN-13: 978-0425170380

    X-Men: Codename Wolverine

    \"No

    Wolverine. Sabretooth. Silver Fox. Wraith. Maverick. Together, they were Team X, the best covert-ops team NATO had to offer. But a mission to retrieve a disk from a pair of Soviet agents proved to be more trouble than they bargained for. A Soviet agent codenamed the Black Widow, a mutant Interpol agent named Sean Cassidy, and shape-changing freelance spy Mystique were all after the disk as well. Years later, Wolverine is a valued member of the uncanny X-Men. The Black Widow is now a respected American super hero. Cassidy is mentor to the next generation of young mutants. Mystique and Sabretooth are reluctant members of X-Factor, the government strike force. Wraith is still a covert-ops agent. Silver Fox is dead, and Maverick is dying of the Legacy Virus. Each of them is kidnapped, one by one--starting with Sabretooth, by far the deadliest member of the former Team X. Wolverine must uncover the terrible secret from that old mission--a secret that has remained hidden for years, and could spell death for all of them!

    • Written By: Christopher Golden
    • Publisher: Berkley (May, 2000)
    • ISBN-10: 0425171116
    • ISBN-13: 978-0425171110

    X-Men: Dark Mirror

    \"No

    Jean Grey and her teammates-Cyclops, Wolverine, Rogue, and Nightcrawler--awaken as prisoners, stripped of their mutant powers, with their minds held hostage in the bodies of others, and must risk everything to stop the dark forces that are conspiring to destroy all mutants.

    • Written By: Marjorie M. Liu
    • Publisher: Pocket Star (December, 2005)
    • ISBN-10: 141651063X
    • ISBN-13: 978-1416510635

    X-Men: Empire's End

    \"No

    A cosmic adventure with the fate of the galaxy at stake! Shi'ar scientists have learned of a creature that devours galaxies and is heading towards Shi'ar space. Beset by panicked people and several assassination attempts, Empress Lilandra must call upon the X-Men for their assistance--for the galaxy eater will target Earth next.

    But the price for stopping the creature may be higher than the X-Men expect. They must use a device that increases their powers a thousand-fold to drive the creature back. A process that could destroy them...or make them insane with power!

    • Written By: Diane Duane
    • Publisher: Berkley (September, 1998)
    • ISBN-10: 0425164489
    • ISBN-13: 978-0425164488

    X-Men: Law of the Jungle

    \"No

    One of the X-Men's oldest, deadliest foes, the energy-stealing creature known as Sauron, has returned to menace the Savage Land--the prehistoric jungle hidden in the Antarctic. At the behest of their old ally Ka-Zar, the Savage Land's protector, Wolverine, Storm, the Beast, Iceman, Psylocke, Cannonball, and Archangel have come to help stop Sauron's latest reign of terror. But this is not the same Sauron the X-Men have defeated in the past. Gone is the overconfident, boasting monster, and in his place is a cunning, careful, deadly foe who may be too much for even the X-Men to handle!

    • Written By: Dave Smeds
    • Publisher: Berkley (March, 1998)
    • ISBN-10: 0425164861
    • ISBN-13: 978-0425164860

    X-Men Legends

    \"No

    Over a dozen original tales that span the career of the Uncanny X-Men, from the team's early days as teen heroes to the present -- spotlighting Wolverine, Rogue, Gambit, and all your favorite mutants.

    • Written By: Various, Anthology
    • Publisher: Berkley (June, 2000)
    • ISBN-10: 0425170829
    • ISBN-13: 978-0425170823

    X-Men: Mutant Empire Book 1 - Siege

    \"No

    They live as outcasts, hated and feared by the very humanity they protect. They are mutants, born with strange and wonderful powers that set them apart from the rest of the human race. Under the tutelage of Professor Charles Xavier, they are more than mutants. They are - the X-Men.

    Magneto, the X-Men's oldest, deadliest for, has taken over a top secret government installation that houses the Sentinels, powerful mutant-hunting robots. The X-Men must fight to keep this deadly technology out of Magneto's hands. But the Acolytes, Magneto's fanatical mutant followers, stand between the X-Men and victory -- a victory quickly slipping away. For a more ruthless enemy, the U.S. government, holds the X-Men responsible for the installation's takeover!

    This electrifying new novel by acclaimed author Christopher Golden is the ultimate adventure that no X-fan should be without!

    An all-new original novel with illustrations by popular X-artists Rick Leonardi and Ron Lim!

    • Written By: Christopher Golden
    • Publisher: Berkley (May, 1996)
    • ISBN-10: 1572971142
    • ISBN-13: 978-1572971141

    X-Men: Mutant Empire Book 2 - Sanctuary

    \"No

    They live as outcasts, hated and feared by the very humanity they protect. They are mutants, born with strange and wonderful powers that set them apart from the rest of the human race. Under the tutelage of Professor Charles Xavier, they are more than mutants. They are-- the X-Men.

    Magneto, the X-Men's oldest, deadliest foe, has taken over the entire island of Manhattan and declared it a haven for mutants. Ruled by Magneto and his Acolytes, enforced by reprogrammed Sentinels-- giant, powerful robots -- this is the first step to Magneto's ultimate goal of world domination: the Mutant Empire.

    Now only the X-Men stand between Magneto and that goal. But the road to victory will not be an easy one, as half the X-Men are trapped in space-- and mutants from all over the world are flocking to Manhattan and taking Magneto's side against the X-Men!

    This electrifying new novel by acclaimed author Christopher Golden is the ultimate adventure that no X-fan should be without!

    An all-new original novel with illustrations by popular X-artists Rick Leonardi!

    • Written By: Christopher Golden
    • Publisher: Berkley (November, 1996)
    • ISBN-10: 1572971800
    • ISBN-13: 978-1572971806

    X-Men: Mutant Empire Book 3 - Salvation

    \"No

    Facing the loss of half their comrades with Magneto's latest successes in his creation of the Mutant Empire, the remaining X-Men are forced to team up with the U.S. government in an effort to reprogram the Sentinels.

    Written By: Christopher Golden

    Publisher: Berkley (May, 1997)

    ISBN-10: 1572972475

    ISBN-13: 978-1572972476

    X-Men: Prisoner X

    \"No

    UltraMax is the new orbiting prison for ultraviolent offenders. When the X-Men learn that their former teammate Longshot is among the prisoners, Rogue goes undercover to try to liberate him. Soon, the X-Men discover UltraMax's deadly secret--its mastermind is Mojo, the insane other-dimensional villain whose idea of entertainment is both visionary and deadly. Trapped behind prison walls with no escape, the X-Men face their most terrifying threat ever.

    • Written By: Ann Nocenti
    • Publisher: Berkley (May, 1998)
    • ISBN-10: 0425164934
    • ISBN-13: 978-0425164938

    X-Men: Shadows of the Past

    \"No

    Published to coincide with the release of a major film starring the X-Men, this novel sees Professor X sending the heroes to hidden Quistillian facilities to recover alien technology, and foil a Quistillian invasion.

    • Written By: Michael Jan Friedman
    • Publisher: Ibooks (June, 2000)
    • ISBN-10: 0743400186
    • ISBN-13: 978-0743400183

    X-Men: Smoke and Mirrors

    \"No

    When research uncovers a way to reverse the genetic mutation responsible for mutant powers, the government tries to use the procedure to eliminate the X-Men, who soon discover that the procedure's true source is their enemy, Sinister.

    • Written By: Eluki Bes Shahar
    • Publisher: Berkey (September, 1997)
    • ISBN-10: 1572972912
    • ISBN-13: 978-1572972919

    X-Men: Soul Killer

    \"No

    The demon lord Belasco plans to use Rogue to bring the evil Elder Gods to Earth. The X-Men and their sister team Excalibur must stop him before Rogue's very soul is destroyed. Their unexpected--and untrusted--ally is the lord of all vampires: Dracula! And the Count always has a more sinister agenda up his sleeve.

    • Written By: Richard Lee Byers
    • Publisher: Berkley (February, 1999)
    • ISBN-10: 0425167372
    • ISBN-13: 978-0425167373

    X-Men: The Chaos Engine Book One - Doctor Doom

    \"No

    The first of a trilogy featuring the X-Men, who discover that Earth is now ruled by the most powerful super-villain of all time, Doctor Doom. The mutant superheroes face their greatest challenge and to make matters worse, standing between them and victory is Magneto, Master of Magnetism.

    • Written By: Steven A. Roman
    • Publisher: Ibooks (August, 2001)
    • ISBN-10: 0743434838
    • ISBN-13: 978-0743434836

    X-Men: The Chaos Engine Book Two - Magneto

    \"No

    One week: That was all the time given to the X-Men to correct a universe-threatening flaw after Roma, Supreme Guardian of the Omniverse, discovered that unknown forces had severely altered the structure of the heroes' home dimension. It hadn't taken them long to track down the source of the disruption: the tyrannical Doctor Doom, in possession of the Cosmic Cube -- a device that allows its owner to twist reality and create their personal vision of a perfect world.

    The X-Men failed in their mission, though, and now the Cosmic Cube is in the hands of their longtime enemy Magneto, the Master of Magnetism. Like his former friend Professor Xavier, Magneto has a dream for all mutant-kind -- but his is of a day when Homo Superior freely walk the Earth, not as equals to the human race, but as their masters.

    Now that day has come, and the only hope the world has to survive the mutant overlord's reign is in the hands of Professor Xavier and the one X-Man not affected by the reality-changing powers of the Cube: Betsy Braddock -- the ninja-trained telekinetic known as Psylocke.

    But unknown to any of the players in this cosmic chess match there is one final participant waiting in the wings, and he is about to make his first move....

    • Written By: Steven A. Roman
    • Publisher: Ibooks (January, 2002)
    • ISBN-10: 0743400232
    • ISBN-13: 978-0743400237

    X-Men: The Chaos Engine Book Three - Red Skull

    \"No

    With time running out, the X-Men must make one final desperate attempt to destroy the 'Chaos Engine' and restore order to the cosmos before their entire reality is wiped from existence by an all powerful alien race. First it was Doctor Doom. Then, Magneto. Two men with a common dream: to become absolute master of the Earth. Through the use of the Cosmic Cube - a device whose reality-bending powers allow its possessor to create their own version of a perfect world - they were each able to bring their dreams to life, if only for a short time. Fortunately, the group of mutant Super Heroes called the X-Men were able to shatter those dreams before they destroyed the planet. But now the Cube has fallen into the hands of the infamous Red Skull, whose twisted philosophies are a reflection of those once voiced by the madman who created him during the darkest days of World War II. And unlike his villainous predecessors, the Skull is in complete control of the Chaos energies generated by the Cube - for the people of the world, there will be no awakening from this living nightmare. In order to save the world from Armageddon, one of the X-Men must be willing to risk his, or her, life - an action that will create lasting repercussions not only for the team of uncanny mutants, but for the very fabric of reality itself.

    • Written By: Steven A. Roman
    • Publisher: Ibooks (December, 2002)
    • ISBN-10: 0743452801
    • ISBN-13: 978-0743452809

    X-Men: The Chaos Engine Trilogy

    \"No

    A collection of all three Chaos Engine novels.

    • Written By: Steven A. Roman
    • Publisher: BP Books (2003)
    • ISBN-10: 0739432273
    • ISBN-13: 978-0739432273

    X-Men: The Jewels of Cyttorak

    \"No

    Juggernaut is on a rampage! Since bonding with the ruby of Cyttorak, Cain Marko became the unstoppable force known as the Juggernaut-and one of the X-Men's most vicious foes! But an archeological dig reveals a fragment of the one thing that might be able to stop the Juggernaut: an emerald from the same lost city of Cyttorak. Now a ruthless billionaire named Service intends to gather all the fragments of the emerald, which will grant him absolute power-unless the X-Men stop him. If that wasn't bad enough, each use of the emerald causes the Juggernaut pain...and he won't stand for it!

    • Written By: Dean Wesley Smith
    • Publisher: Berkley (December, 1997)
    • ISBN-10: 1572973293
    • ISBN-13: 978-1572973299

    X-Men: The Last Stand

    \"No

    TAKE A STAND.

    The world has acquired a lethal new weapon against X-gene mutants, whose superhuman powers separate them–for better, for worse, forever–from ordinary mortals. Now, for the first time, mutants have a choice: retain their godlike abilities, though their powers may isolate and alienate them, or surrender them and become human. The mutant antibody is called a cure, but its invention may trigger a struggle that destroys every living soul on Earth.

    As Magneto declares all-out war against humanity and its dreaded cure, the U.S. president mobilizes the military. But it is Charles Xavier and the X-Men who truly must brace for the ultimate battle, for they alone are powerful enough to determine the outcome.

    Lessons of the past are useless in the coming life-and-death conflict, as new players–mutants possessing unprecedented, unearthly skills– take center stage. With so many joining forces with Magneto’s evil Brotherhood, the X-Men will face their ultimate test against an enemy whose forces far outnumber their own.

    Now, as the world trembles, the Phoenix slowly rises...

    • Written By: Chris Claremont
    • Publisher: Del Rey (May, 2006)
    • ISBN-10: 0345492110
    • ISBN-13: 978-0345492111

    X-Men: The Legacy Quest Trilogy Book One

    \"No

    When the X-Men's friend, Moira McTaggart - the only human who is infected with the Legacy Virus - is captured by Shaw's men, the X-Men embark on a mission to rescue their friend and break forever the power of the Hellfire Club. This title is the first in a trilogy.

    • Written By: Steven Lyons
    • Publisher: Ibooks (June, 2002)
    • ISBN-10: 074344468X
    • ISBN-13: 978-0743444682

    X-Men: The Legacy Quest Trilogy Book Two

    \"No

    The stakes in the quest to find a cure for the Legacy Virus epidemic that is devastating mutants everywhere on earth have been frighteningly raised. A cure exists, but Selene, the dread Black Queen of the Hellfire Club is the only one who has it.

    • Written By: Steve Lyons
    • Publisher: Ibooks (July, 2002)
    • ISBN-10: 0743452437
    • ISBN-13: 978-0743452434

    X-Men: The Legacy Quest Trilogy Book Three

    \"No

    The dramatic conclusion of a trilogy starring the X-Men, the most popular super hero team in the world. Magneto - the X-Men's arch enemy and mankind's greatest foe, has dramtically raised the stakes in the life and death struggle to find a cure for the mutant-killing Legacy Virus. Magneto has created a vast arsenal of Legacy Virus bombs that he's having his cohorts plant around the world. When he detonates the bombs, all of humanity will be quickly infected and soon die unless they receive the cure, a cure that only he has! The X-Men must stop Magneto before he can activate his insane plan. But with Magneto the acknowledged legitimate ruler of the island nation Genosha, stopping him will not only be difficult...it may be impossible! Meanwhile, Sebastian Shaw, the Black King of the Hellfire Club and an embittered, now cast-aside pawn in Magneto's mad scheme, is forming a terrible plan of revenge.

    • Written By: Steve Lyons
    • Publisher: Ibooks (October, 2002)
    • ISBN-10: 0743452666
    • ISBN-13: 978-0743452663

    X-Men: The Legacy Quest Trilogy Omnibus

    \"No

    The stunning X-Men trilogy in one giant volume.

    Hank McCoy -the X-Men's Beast- has been working to find a cure for the deadly Legacy Virus that has been sweeping through the world's mutant population. In his quest to find a cure, he and Moira McTaggart, the only human infected by the Legacy Virus, become pawns of Selene, the Black Queen of the New York branch of the Hellfire Club, and Sebastian Shaw, the Hellfire Club's Black King, in their own quest to possess and control the potential cure for the virus.

    Despite the X-Men's best efforts to prevent that outcome, things go from bad to worse-- and then mankind's greatest enemy, Magneto, enters the fray and reveals an even more terrifying plot.

    • Written By: Steve Lyons
    • Publisher: Ibooks (November, 2004)
    • ISBN-10: 0743493400
    • ISBN-13: 978-0743493406

    X-Men: The Return

    \"No

    An alien race known only as the Kh'thon appears in the skies over Earth, claiming that they are the former occupants and rightful owners of the planet. Their ships are manned by baseline Homo sapiens, supposedly descendants of the early hominids who served the Kh'thon on Earth, countless millennia ago. The will of the Kh'thon is enforced by the Exemplar, humans augmented with a dizzying array of powers, each of them the match of any one of the X-Men. The Kh'thon claim to be responsible for the presence of the x-gene in human DNA, included so that they could breed whatever traits or abilities they required of their servants. No one is sure whether to believe the aliens' claims or not, but given the amount of firepower at their disposal, it hardly matters one way or the other. It is up to the X-Men, working in uneasy collaboration with Royal Marine Colonel Alysande Stuart, to find a way to repel the Kh'thon invasion of Earth, before terrestrial humans and mutants alike are enslaved by alien masters.

    • Written By: Chris Roberson
    • Publisher: Pocket Star (April, 2007)
    • ISBN-10: 1416510753
    • ISBN-13: 978-1416510758

    X-Men: Watcher On the Walls

    \"No

    For years, many have believed that the rise of superpowered mutants represents a threat to the survival of ordinary humans. The uncanny X-Men have dedicated their lives to proving that peaceful coexistence is possible. When a refugee spacecraft crashes on Earth, hounded by a warship bent on its destruction, the X-Men race to the rescue -- only to learn that it carries beings of an entirely different order whose very existence may jeopardize life as we know it.

    Credit

    Now, facing a direct threat to all life on Earth, the X-Men grapple with an impossible moral dilemma -- to defend the aliens whose only crime is being born different... or to embrace the methods of those who have long condemned mutantkind, joining forces with their own greatest persecutors to go hunt down their common enemy and end the evolutionary menace, once and for all.

    • Written By: Christopher L. Bennett
    • Publisher:Pocket Star (April, 2006)
    • ISBN-10: 1416510672
    • ISBN-13: 978-1416510673

    Merchandise

    \"ToyBiz's
    ToyBiz's early X-Men figures

    The X-Men have been featured in countless forms of merchandise over the years. The first X-Men figures were of Wolverine and Magneto, which were included in Mattel's Secret Wars line. The X-Men got their big break when the Marvel license transferred to ToyBiz, who began producing figures based on the comics. This soon expanded to include the 90s animated series, and the resulting toys proved extremely popular. As time went on, ToyBiz also produced figures for the live-action X-Men movies and the X-Men Evolution cartoon. The X-Men began appearing in ToyBiz's 6-inch Marvel Legends line, and eventually proved popular enough that they fronted their own spin-off line called X-Men Classics.

    The license later transferred to Hasbro, who produced some figures for X-Men: The Last Stand and X-Men Origins: Wolverine, but largely stopped making movie figures based on the franchise after that. The X-Men have continued to appear in Hasbro's Marvel Legends and Marvel Universe lines, and were also featured in the child-oriented Super Hero Squad and Marvel Mashers lines.

    Additionally, throughout the years, many different companies have produced X-Men clothing and apparel. Halloween costumes featuring X-Men characters were also common, especially during the height of the franchise's mainstream prominence during the time the original movies were coming out. Even with the franchise's popularity having peaked some time ago, Wolverine remains a popular Halloween costume choice for children.

    \"X-Men
    X-Men Classics by ToyBiz

    Funko has also produced a selection of X-Men bobbleheads (with the characters also appearing in the company's spin-off lines like Dorbz), while Diamond has featured the X-Men in their Marvel Select and Minimates lines.The X-Men have also been featured in the HeroClix figure game multiple times, and have even been the subject of their own waves. Hot Toys also produced some X-Men collectible figures based on the movies, ending with Days of Future Past in 2014. The X-Men have also been featured in kits from Lego. On the statue front, numerous companies such as Bowen Designs, XM Studios and Kotobukiya have produced statues featuring characters from the X-Men comics and movies.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6694/","id":6694,"name":"X-Men","issue_number":"1"},"id":3173,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14487/8526893-9f3d910b-055d-45ac-ae9e-40c4ea012b75.jpeg","image_tags":"All Images,Earth-616 X-Men"},"name":"X-Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/x-men/4060-3173/"},{"aliases":"Lowest Caste\r\nOutcasts","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3191/","count_of_isssue_appearances":0,"count_of_team_members":91,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-01-02 13:24:42","deck":"Outcasts from society, the Morlocks were a community of mutants who lived in tunnels beneath New York City and its vicinity.","description":"

    Origin

    \"First
    First Group

    This community was founded by the mutant Callisto who discovered the \"Alley\", a tunnel that runs the length of Manhattan, and is the center of a network of tunnels built in the 1950's by the U.S.government in case of a nuclear war. It is part of a tunnel system which extends into New Jersey, Connecticut, and New York state. Callisto first found the mutant Caliban who had the power to psionically locate other mutants. Using Caliban ability, Callisto located and gathered together many other mutants who had run away from human society. Many had been experiments of the evil geneticist, Dark Beast who arrived in this time-line from the Age of Apocalypse, where he had worked under his reality's Mr. Sinister. The other founding members of the Morlocks include Masque who can rearrange a persons looks, and Sunder the strongest of the initial group of Morlocks. Callisto herself not without a sense of humor named the loose knit group the Morlocks, after the H. G. Wells novel The Time Machine. Morlock's aren't always unified or even limited to New York, as their have been several splinter Morlock groups and groups of disaffected mutants from across the globe have adopted the name.

    Creation

    The Morlocks are a Marvel comics creation and name given to an underground group of mutants who are disaffected and feel shunned by society. The Morlocks were created by writer Chris Claremont and artist Paul Smith, first appearing in Uncanny X-Men #169. Their name is inspired by the H. G. Wells novel The Time Machine, which also features a similar group of underground beings.

    They are described in The New Mutants #99 - The Beginning of the End Part Two as disfigured mutants who have abandoned any hope of survival on the surface.

    Team Evolution

    There have been various Morlocks over time, often with multiple groups, coexisting alongside each other, with some groups membership swelling as others dwindle or vice versa. One of the first distinctions among the Morlocks, was with one group, the Tunnelers, who had grown dissatisfied with Callisto's main group of Morlocks, so splintered off. These Tunnelers consisting of Masque, Blow Hard, Scaleface, and Berserker. They lived in the underground tunnel section. The main group of Morlock's running linear at the time being known as the Drain Dwellers, Callisto, Sunder, Erg, Leech, Tar Baby, Ape, Annalee, Plague, Healer, Killron, Piper and Beautiful Dreamer.

    Other Morlock's to have joined at one time or another, include Bulk, Glow Worm, Tommy, Cybelle, Zeek, Marrow, Skids, Lightning Bug, Samson, Mole, Chicken Wings, Brute, Hump, Pixie, Alex, Bliss, Brain Cell, Carver, Delphi, Ent, Feral, Thornn, Fugue, Groonk, Irving, Jo, Joey, Marked Man, Meme, Missy, Monte, Mother Inferior, Qwerty, Revelation, and Soteira.

    There has also been a London branch of Morlocks. This group consisting of Burning Puddle, Carla, Compound, Croc, Cyclops, Double Helix, Harmony, Hope, Miss Saccharine, Scree, Simian, Vampyr and Warthog. As well as a Chicago branch, which consisted of Angel Dust, Cell, Electric Eve, Litterbug, Shatter and Trader. Then there was also a splinter Morlock group that came about when powerful but slightly mad mutant Mikhail Rasputin opened a portal from the Morlock tunnels and ferried Morlock members away to a place known as the Hill, where time passed at a different consistency, causing many of the Morlock's whisked away much older when they returned to their native reality. This group consisted of the Morlock's Hemingway, Vessel, Sack, Reverb, Loss, Charm, Fever Pitch, Iron Maiden, Integer, Wynter, Membrain, Opsidian and Maverick. This group was also known as Gene Nation.

    Major Story Arcs

    A Change in Leadership

    \"No

    At one point, Callisto and the Marauders had kidnapped Angel, intending to make him her mate. To save him, Storm fought Callisto and displacing her as leader and forming an alliance with the X-Men.

    Mutant Massacre

    The unthinkable happened when a group of mercenaries named the Marauders who had been hired by Sinister and lead by Gambit, to break into the tunnels and exterminate the Morlocks, because Sinister recognized that they were mutated using his work. When Gambit realized he had been misled about the mission, he managed to save a young mutant with protruding bones covering her body. Most had been killed but some escaped, a few with the help of the X-Men and original X-Factor.

    M-day

    After M-Day, Some former Morlocks who lost their powers were Angel Dust, Boost, Irving, Qwerty, Delphi, Callisto, Marrow, Postman, Shatter, Tether and the probability of Feral and Thornn. However, Feral and Thornn were later seen re-powered. Explanations as to how this happened have yet to be provided. Sally interviews Marrow about the Morlocks. Marrow reports that 80% of the remaining Morlocks are de-powered now and look like humans. She states that most of them are still afraid about going out of the tunnels.

    Currently, Marrow works as a watchmen of the Morlocks, as she is called by the remaining ones when problems occur. She explained this status in the aftermath of thirteen de-powered Morlocks murder by Ghoul.One character commented that, post-M-Day, the chance of meeting a Morlock in the Tunnels under New York is now harder than meeting an alligator in the Floridian sewers. Some former Morlocks who actually kept their powers sought refugee at Xavier's Institute and became known as 198. They are Beautiful Dreamer, Caliban, Erg, Leech, and Skids. Dark Beast and Mikhail Rasputin are also still powered, though Mikhail is in The Dark Zone

    Surviving Morlocks

    There are not many of the Morlocks alive today, only Masque, Callisto (de-powered), Erg, Leech, Bliss, Litterbug, Marrow (de-powered) and Skids.

    The Morlocks recently banded again and were saved by the New Warriors. Marrow, Skids, Erg and Bliss rejoined and there are new members.

    Alternate Realities

    Earth-295: Age of Apocalypse

    The Morlocks were experiments of Mr. Sinister and Dark Beast, adding to them mutations and abilities. After Apocalypse´s defeat and the prisoners of Breeding Pens were released by Cyclops and Jean Grey, the Morlocks returned to their tunnels. One year later, Magneto offered them the possibility to live on the surface and left the tunnels under Manhattan. But, their leader Marrow declined the offer and attacked Silver Samurai, thus the tunnels became a battlefield where Magneto, Xorn (Husk in disguise) and several Morlocks were injured. At the end, the Morlocks were incarcerated in the X-Men's facilities.

    Known members: Marrow (leader), Feral, Skids, Leech, Thorn.

    Earth-1610

    The Ultimate Morlocks are led by Sunder. Members include Callisto, Caliban and Leech.

    Other Media

    Film

    X2: X-Men United

    \"Morlocke\" is listed in William Stryker's files on Lady Deathstrike's computer. It's assumed to be a typo for Morlocks.

    Television

    X-Men: The Animated Series

    In this cartoon adaptation; the Morlocks are very much the same as their 616 counterpart. But it is unclear on all the members. They are first shown being lead by Callisto.

    X-Men: Evolution

    Here they are also are very much the same as their 616 counterpart. But it is unclear on all the members. They are lead by Callisto. Some of the members include; Caliban, (later joined by) Spyke.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-23139/","id":23139,"name":"Catacombs","issue_number":"169"},"id":3191,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/79461-179332-morlocks.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/79461-179332-morlocks.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/79461-179332-morlocks.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/79461-179332-morlocks.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/79461-179332-morlocks.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/79461-179332-morlocks.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/79461-179332-morlocks.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/79461-179332-morlocks.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/79461-179332-morlocks.jpg","image_tags":"All Images,Alternate Team"},"name":"Morlocks","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/morlocks/4060-3191/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3199/","count_of_isssue_appearances":0,"count_of_team_members":48,"date_added":"2008-06-06 11:27:48","date_last_updated":"2020-03-27 10:56:36","deck":"As often as there has been a teen/junior X-team, there has been a team of Hellions to antagonize them. Originally created by the White Queen of the Hellfire Club to fight the New Mutants.","description":"

    There have been several groups of mutant youths that have utilized the name the Hellions. The Hellions were/are in most cases the antithesis to the junior X-teams such as: the New Mutants, Generation X, the original X-Force and most recently the Xavier Institute squad by the same name as the original, the New Mutants.

    Origin

    Professor X began his quest to put together his second generation team of X-Men, later dubbed the New Mutants. Initially, being that Xavier Institute was a school, it was simply a means to train young mutants in the use and responsibility of their powers. It evolved into becoming training grounds to become field trained and X-Men ready. The design was simple, in the event that the X-Men were not able to perform the New Mutants would fill the spot, which they eventually did.

    Unbeknown to Xavier, an organization caught wind of his activities and followed quickly after. This group was better known as the Hellfire Club. The Hellfire Club is a sinister international group of the world's social elite. They are run by mutants that consider themselves superior to other mutants, in both their mutant abilities/powers and social status. They copied Xavier's design perfectly. They even had their own telepath, quite powerful at that, to front and run the school, by the name of Emma Frost then known as the White Queen.

    The Massachusetts Academy

    \"The
    The Massachusetts Academy

    Emma Frost, the White Queen of the Hellfire Club's Inner Circle, funded and purchased a private school in the Snow Valley, located in the Berkshire Mountains in Massachusetts. She named the private school, the Massachusetts Academy. She was the headmistress of the school, and it was here that she would train her future Hellions. Her intentions for the Hellions were, when fully trained, they would serve the interest of the Hellfire Club's The Inner Circle.

    The Inner Circle seeks to amass absolute power and control, over all things political and economical, through both legal and illegal activities, any means necessary. The Hellions were to be the \"any means necessary.\" As such, Emma needed to seek out and recruit very specific mutants, with abilities that would further aid her organization and later herself.

    Creation

    The success of the New Mutants grew and in the 1984 Claremont created an antagonizing team named the Hellions to be the New Mutants nemeses. The Hellions were very similar to the New Mutants and the two teams would go-head-to-head throughout the New Mutants run.

    Team Evolution

    Similar to Professor Xavier, Emma Frost brought together six mutants and made it her duty to shape them into mutants much like herself and the Inner Circle. Her main focus was that she couldn't let anyone get to the mutants before her, especially Xavier. It was then that Emma had a computer, very similar to the original Cerebro, created to amplify her mental talents. Once done, her search would begin. Once she located her potential students, she mentally hid their presence from all others until she could recruit them herself.

    Warpath (James Proudstar)

    \"Warpath\"
    Warpath

    Thunderbird (now known as Warpath): James was the younger brother of the X-Men Thunderbird. Super strong and durable he was the muscle of the team. His hatred for Xavier and the X-Men, as he blamed them for his brother's death and wanted revenge, only solidified his role on the team. His time with the Hellions would be limited. James would have a change of heart and eventually quit.

    Catseye (Sharon Smith)

    \"Catseye\"
    Catseye

    Catseye The Hellions answer to Wolfsbane. Catseye's youth and lack of sophistication belie a ferocious intelligence. Even more ferocious was she when fighting. Like Wolfsbane, Catseye was a metamorph though not into a wolf but into a cat. Catseye could morph into a lavender panther-like wildcat OR a transitional hybrid form granting her the best qualities of both a human and cat. Fiercely loyal she protected her friends to no end. But in reality she hardly understood the normal world prefer the life of a cat.

    Empath (Emmanuel Alfonso Rodrigo De la Rocha)

    \"Empath\"
    Empath

    Empath was more like the White Queen then any other on the team. He was ruthless, cunning and willing to use his powers on anyone for personal gain. Empath's power (just like his name) was the ability to read, feel and control the emotions of others. He is able to perform this feat on individuals singly or on the city-wide level. Empath was one of Frost's favorites due to their similarities, also one of her biggest pains for the same reason. Empath would be the only member of the Hellions, actually present during their final battle with Fitzroy, to survive and leave the night unscathed. Due, largely in part, to his quick retreat once the Sentinel began their invade.

    Jetstream (Haroum ibn Sallah al-Rashid)

    \"Jetstream\"
    Jetstream

    Jetstream shared powers and responsibilities similar to Cannonball, who could also propel himself through the air and was also team leader. Though, he didn't share his protective force field Cannonball generated during flight. Jetstream's body didn't have built in protections from the effects of his powers. When Jetstream would lift off the friction and force of the wind that he would fly through would flay his flesh and also cause severe burns or even catch him on fire. The Hellfire Club would remedy this and provide Jetstream with a bionic system that enabled more control, focus and protection from his powers. As a result, he pledged undying lifelong loyalty to them.

    Roulette (Jennifer Stavros)

    \"Roulette\"
    Roulette

    Born to a casino Poker card dealer in Atlantic City. She is the youngest of 8 children, because of this she never had her way. When her mutant gifts manifested things changed. She began running with a gang and breaking the law. She would surely have been arrested before being recruited as part of the Hellions. Roulette could alter the probability fields of good and bad luck. By creating discs of mental energy (red disc was good luck, black disc was bad luck) and throwing them at an individual or thing and action would always follow, depending on which disc she threw.

    Tarot (Marie-Ange Colbert)

    \"Tarot\"
    Tarot

    Unlike some of her other more mean spirited teammates, Tarot was generally sympathetic and kind by nature. Tarot is a precog, with the ability to materialize and animate (purely of psionic energy) tangible, solid representation of the images on her tarot cards. Once created, she had full control of them and they would do battle for her or be used as a transportation device for the team. Her future was to be surrounded in mystery, and more lasting then many of the other Hellion teammates.

    With the final member's acceptance of the White Queen's invitation to the Massachusetts Academy, Emma's search would be over. These young mutants would represent the initial core group, The Hellions.

    Members come and Go.

    Others would join to replace members that would leave, or some would be added as ploys. These individuals included:

    • The Fiery, on again, off again New Mutant Magma (Amara Juliana Olivians Aquilla).
    • The Bio-electrically charged Bevatron (Fabian Marechal-Julbin) would fill the slot Firestar would leave open.
    • The super strong, not so smart Beef (Buford Wilson) would fill Thunderbird's eventual slot.
    • One other individual was offered a spot on the team but declined (revealed a lot later in the Marvel Continuity). Older brother of future X-Force member Jesse Bedlam/Aaronson, Christopher Terrance Bedlam/Aaronson, later known as King Bedlam. King Bedlam was gifted with the mutant talent to create telepathic static which could control bodily or mental functions, this gave him immunity to mental tampering. When he declined, tried as she might, not even Emma's telepathic persuasion could change his mind. And she tried HARD. Emma didn't take kindly to the word \"No.\" His short time with the team, while making his decision, led to a strong emotional tie with Tarot. They fell in love quickly and, in a still unclear way, the two lovers' souls somehow inextricably became bound together. This would lead to Tarot's later resurrection.
    • Finally there was the microwave manipulating, future Avenger Firestar (Angelica Jones). Emma never had intentions for Firestar to join or be apart of the main group. Emma along with Trevor Fitzroy, a time traveling mutant from the future, trained her separately and hidden from the others. Firestar was to be the White Queen's personal assassin due to Firestar's destructive and devastating nature of her mutant abilities. Her first mission was to, but never happened, kill the Black Queen of the Hellfire Club (at that time it was Selene) who Emma felt threatened by. This was all for naught as the New Warriors interfered and won the freedom of Firestar, and she joined them instead.

    The Hellions End.

    This group of Hellions were together for years, and built a bond that only time could create. They would do battle with many of Marvel's heroes. Though they were created to battle and be enemies with the New Mutants. Through time it simply turned into something similar to a high school rivalry. The Hellions became more then a team, they were a family that most of them were deprived in their normal lives. Unfortunately, all this would be destroyed in one night.

    \"Emma
    Emma Frost and The Hellions

    As a means to lower tension between the X-Men and the Hellfire Club, Emma threw a party and invited the X-Men (the Gold team led by Storm). Many of the Hellfire Club's Inner Circle were being murdered and Emma felt that if they were targets that the X-Men wouldn't be too far from being the next targets. She wanted the teams to create an alliance, as she felt there was strength in numbers. Animosity between the two teams raged. Old rivalries, coupled with the immaturity of the Hellions egging the X-Men on led to a small skirmish that was quickly brought a halt when two (though at the time they could only see one, the other was using a cloaking device) unknown assailants broke in an attempted to assassinate the Emma. The female assassin immediately lunged at Emma. Emma far too quick, used a telepathic blast to take down her would-be attacker. While the teams regrouped and tried to question the girl/assassin, another attack began, though they had no clue from where. Even Jean Grey's and Emma's vaunted telepathic gifts didn't register the second person. It was Trevor Fitzroy, the one time partner of Emma, had returned but now he was there to kill Emma, not to help her. He was apart of the group of individuals called the Upstarts who were killing the members of the Inner Circle to gain points. The female attacker was sent in as a ploy to get the teams attention. Within the initial 20 seconds of his appearance he had already killed both Jetstream and Beef. Draining Jetstream of his life and throwing Beef out of the window of the skyscraper they were in, landing on the street, dead on impact.

    \"Jean
    Jean Grey attempting to save The Hellions

    The combined forces of the X-Men and remaining Hellions eventually subdued Fitzroy, then another part of his plan unraveled. A huge teleportation gate opens with Donald Pierce, also of the Hellfire Club, running through it with Sentinels following. The gate closes and a blood bath ensues. The Sentinels immediately head for Emma, apparently dealing her a killing strike. Empath tries to use his powers to see if she was alive, and runs when he finds that she was dead, or so he thought. The Sentinels decimate most of the Hellions and the X-Men barely get out with their lives. The remaining living Hellions, that didn't die in the fight, would have their life forces drained by Fitzroy, ultimately killing them, so he can open a temporal gate for his teammates to come through.

    Those who were killed in the melee were: Jetstream, Beef, Bevatron, Roulette, Catseye and Tarot. As a side note, at the party there were approximately fifteen other Hellions that are shown but never given a name. It's assumed that Emma had recruited others but were not a part of the main team. They may not have had powers suited for battle, though this is never touched on. What is clear is that all the un-named Hellions would, too, have the life forces drained by Fitzroy. Though it seemed as if Emma was given a mortal blow, she actually did not die, but was put into a coma.

    When she awakens from her coma, she is informed of the death of her students. Grief-stricken and feeling completely responsible for their deaths, something changed in her. Unknown by all, Emma, over the years, grew to love and care for her students, her team of Hellions. The guilt over her loss would lead to her eventual reform. Tarot's story, too, was not over yet either. She is shown later in the page of X-Force alive. Tarot would be resurrected, due to her bond with King Bedlam. To be explained in New Hellions section. Other survivors (either because they were not apart of the team or left before the final battle) included: Thunderbird, Empath, Magma and Firestar (although not officially a member).

    Additionally, it was noted in one of the Marvel Handbooks that a come of the New Mutants were members of the Hellions as well. A team of New Mutants were killed then resurrected by the Beyonder. When they were brought to like they were mere husks of their former selves. They showed no emotion, being that their deaths affected their psyches greatly. Magneto was, at that time, the headmaster at Xavier Institute and also the White King of the Hellfire Club. He made the decision to send the affect students to Emma so that she could provide telepathic therapy to the students. While there, they were enrolled into the Massachusetts Academy and inducted as members of the Hellions, even participating in team training activities. This led to friendship being built between the team. They were: Cannonball, Douglas \"Doug\" Ramsey (Cypher), Illyana Rasputin (then Magik), Rahne Sinclair (Wolfsbane), X'ian Coy Mahn (Karma) and Amara Juliana Olivians Aquilla (Magma).

    Once cured of their ailments they quickly returned to Xavier Institute as it would be revealed that Magneto's decision to transfer his students was actually due to mental tampering from Empath. All would return save Magma who chose (or so she thought, later revealed to be manipulated by Empath's powers) to stay behind and remained with the Hellions.

    Original Team Stats

    Former Members:

    Empath, Roulette, Thunderbird ll, Catseye, Tarot, Jetstream, Bevatron, Beef, Magma, Cannonball, Karma, Cypher, Wolfsbane & Firestar (unofficial)

    Base of Operations:

    Massachusetts Academy

    First Appearance:

    New Mutants (vol.1) #16

    The \"Unofficial\" Hellions.

    The second group of \"Hellions\" was never truly an official incarnation of the Hellions. Only in advertising did the reference occur.

    \"Emplate's
    Emplate's Hellions

    This group was organized and led by Emplate (brother of then Generation X member M). This group only appeared once, never having a huge impact in Marvel or Hellions history. The group included many characters that were never fleshed out and quickly faded away, including:

    • Vincente: Vincente was initially from the Age of Apocalypse timeline; this would be his first Earth-616 appearance.
    • Bulwark: Super-strong ally of Emplate.
    • Gayle Edgerton: Gayle is the jilted ex-girlfriend of then Generation X member Chamber Decibel. Wishing to exact revenge on Decibel was her driving force in joining the group.
    • D.O.A.: D.O.A is the butler and driver of Emplate.
    • Murmur: The mummified, teleporting mutant.

    This team was easily defeated by the combined efforts of Generation X and the appearance of, the (then) X-Men Bishop. Emplate later resurfaced with this team, but with a slightly changed membership.

    The \"Official\" New Hellions

    \"King
    King Bedlam's Hellions

    The official second incarnation of the Hellions were foes of another junior X-team, this one being X-Force. This group consisted of some original members of the Hellions, some new ones and one that declined membership to the original group. The exploits of this team was limited to the few appearances that they made in X-Force.

    Armageddon Man

    As a team their first and largest ploy was when they decided that they was to obtain and control a cryogenically frozen mutant known as Armageddon Man, a mutant of immense and immeasurable might. He was also was one of the earliest recorded mutants ever known. Once controlled they were to use him as a weapon against the government to blackmail them for a million dollars. Their team though would fall apart at the seams and have seen two of their force see the error of their ways and turn against their team. These two would aid X-Force and would see the tides turn That person being King Bedlam, who was also the one that organized and led the group. The New Hellions would swiftly be defeated and for the most part to be seen again in the Marvel Universe, neither as a team or singly.

    Team Evolution

    Tarot (Marie-Ange Colbert

    \"Tarot\"
    Tarot

    King Bedlam's girlfriend \"apparently\" resurrected. Similar but very different at the same time. Tarot has show mastery over her powers and improved usage of them as well. She is now able to take on the strengths of the tarot cards she wields. Such as assuming the death card she wears a black cloak and fights with a scythe (it never details if she could truly kill anyone with a touch of the scythe or if it simply acts as a weapon). This allows her to take a more active role in battle and makes her for effective physically

    Magma (Amara Juliana Olivians Aquilla)

    \"Magma\"
    Magma

    The fiery Nova Roman would also resurfaced in the New Hellions, once a New Mutant, now apparently working for the bad side.

    Feral (Maria Callasantos)

    \"Feral\"
    Feral

    One time member of X-Force, her appearance is bitter sweet as she does battle with her ex-teammates. Feral's first attempt to find a cure was a miserable failure. She had begun to feel the effects of the virus more than ever, it even began to affect her mentally. Distraught from her illness she would accept King Bedlam's offer and resurface as a member of his New Hellions Feral's participation in the group would put her at odds once again with X-Force. Though this team would not last long, Feral would make sure her actions would. Feral would once again prove her bite is far worse than her bark.

    • Paradigm: A mutant techno-path infused with the Techno-Organic matter extracted from the alien Phalanx.
    • Switch: A newcomer, with mutant mind swapping powers allowing him to mentally swap his mind with another allowing him to control their body.
    • Jesse Bedlam: Jesse would briefly join his brother's team as well but quickly switches back to X-Force when he sees the error in his ways.

    The Xavier Institute's Hellions Squad

    \"The
    The Hellion Squad

    The last group to use the \"Hellions\" moniker thus far does so as a nod to the original team. Due to the mass amounts of mutant students that are enrolled at the Xavier Institute as new program was brought to the front. The student body was to be broken into squads. These squads would have one of the senior staffers assigned to them as an advisor, and each group would range from 5-6 mutants each. One such squad consisted initially with:

    • Julian Keller (later assuming the codename Hellion): Squad leader and high level telekinetic.
    • Cessily Kincaid (Mercury): Mutant with a malleable mercury form.
    • Santos Vaccarro (Rockslide): With super strength and composition of rock, he was the powerhouse of the team.
    • Sooraya Qadir (Dust): Able to transform into a living sandstorm.
    • Dallas Gibson (Specter): Could merge with his shadow and take on a new super powered single form.
    • Josh \"Jay\" Gutherie (Icarus): Red winged younger brother of both Cannonball and Husk with powers very similar to that of the X-Men's Angel.
    • Brian Cruz (Tag): Limited psychic, able to compel and repel sentient beings.
    • Kevin Ford (Wither): A mutant with a decaying death touch.

    The Hellions Squad were a one of the prominent squads at the Xavier Institute and won the first Field Day competition. The squad's colors are red and white with black accents. The Hellions stayed together as a squad until the Xavier Institute disbanded all squad following M-Day, where nearly the entire campus was left depowered and no longer mutants. There simply wasn't a reason for squads since there were so few mutant students left.

    Necrosha

    \"Hellions:
    Hellions: Not dead yet

    All the deceased Hellions are resurrected by Selene and Eli Bard. After breaking into Utopia with the help of Cypher, all Hellions confront Emma Frost and taunt her for not saving.

    Krakoa team

    The Quiet Council of Krakoa was faced with a big problem. By giving sanctuary to every mutant, they had collected a number of problem children. They rounded them up to be judged and make a decision on their future. Mr. Sinister argued that their psychological issues were tied to their mutant abilities and that the expression of those mutant abilities should be a right every mutant has, especially on Krakoa. The Quiet Council reluctantly agreed and allowed Sinister to put together a team for the most violent of missions. Cyclops wasn't happy about it, especially because his brother, Havok, was put on the team. Havok was still feeling the effects of Scarlet Witch's Axis curse that made him a liability in the field. So, Cyke was able to place Kwannon on the team as a form of mature supervision, much to her chagrin.

    Their first mission: taking out Sinister's old clone lab.

    Alternate Realities

    Age of Apocalypse (Earth-295)

    \"Age
    Age of Apocalypse

    Though Emma Frost was not apart of the creation, there is a group of Hellions in the AoA timeline. The academy is still up as well. The Massachusetts Academy is the house and school of the Hellions. The difference is that, here, the group serves Apocalypse. The Hellions are mutants trained to be future agents of Apocalypse. A majority of the original team is still here including: Tarot, Roulette, Catseye, Jetstream, Beef and Bevatron.

    After the fall of their High Lord Apocalypse, Magneto attempts to smooth over things with base-line humans and their governing council. The agreed upon solution was that Magneto and his X-Men were to apprehend all rogue followers of the, now dead, evil ruler, Apocalypse. The very first mission for Magneto and his X-Men is to capture the Hellions and bring them to the authorities to have them pay for the crimes they have committed. The X-Men quickly arrive and savagely defeat the young Hellions. The Hellions eventually are incarcerated for an unstated amount of time.

    House of M (Earth-58163)

    \"House
    House of M

    In this re-made world of Scarlet Witch, mutants are the majority and are in power. Young burgeoning mutants now have two options for their future schools and futures and mutants. Either picking between the New Mutant Leadership Institute, ran by Xi'an Coy Mahn (Karma), where here they develop the future diplomats and leaders of the world, though they do not get combat training. The other option is to join the SHIELD training program, ran by Sebastian Shaw. It is here they have a more military training focusing on warfare and covert operations. The training team is called the Hellions. This group included Scion (Earth-616's Hellion), Magik (Illyana Rasputin), Synch, Quill, Surge, Wind Dancer (now known as Renascence), Anole & Danielle Moonstar. Moonstar is a fully-fledged S.H.I.E.L.D. operative and is assigned to the training of the Hellions. Though she is the trainer she does participate in active battle with them. Her assistant trainers are Aurora and Northstar.f

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-24431/","id":24431,"name":"Away Game!","issue_number":"16"},"id":3199,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7292798-jan200820.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7292798-jan200820.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7292798-jan200820.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7292798-jan200820.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7292798-jan200820.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7292798-jan200820.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7292798-jan200820.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7292798-jan200820.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7292798-jan200820.jpg","image_tags":"All Images,Krakoa team"},"name":"Hellions","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/hellions/4060-3199/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3238/","count_of_isssue_appearances":0,"count_of_team_members":4,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-12-30 21:31:57","deck":"Simon Utrecht and his compatriots attempt to recreate the historic flight of the Fantastic Four, with mixed results.","description":"

    Origin

    \"The
    The Players

    \"Power for Powers Sake!\", are the words of Simon Utrecht as he explains his intentions, having just had his sanity questioned by Mike Steel, about why a millionaire would need a ship designed without shielding to reach the outer atmosphere of Earth. As anyone might surmise from those four words, Simon Utrecht craved POWER and it wasn't enough that he had already acquired millions of dollars, being a serious industrial competitor of Tony Stark and having held political office, he wanted more! He wanted the might of the Fantastic Four and was willing to put his fortune on the line as well as his life and the lives of his three companions to obtain that power, sailing them right into the heart of a Cosmic Storm.

    Tapping the knowledge of , Life-Support Specialist, Ann Darnell and her brother, Fuel Propulsion Engineer, Jimmy Darnell, Utrecht goads Mike Steel into flying the ship. The Dynamic is now complete with four members ready to set sail to limitless power.

    The sound of the rocket's propulsion wakens Bruce Banner from his crater bed in the near by desert area, where he had been left by the Hulk after reentering earths atmosphere. Deducing that the rocket configuration and trajectory could only mean space flight, Banner rushed to the mission control room to discover that the ship is headed straight for a cosmic storm, instruments reading radiation levels off the chart. Fearing for their safety Banner reprograms the flight control computer to bring them back before they are killed by radiation poisoning.

    The occupants are bathed in the cosmic radiation, each of them experiencing something unique. Mike expresses that it feels as thought the weight of the ship were on his shoulders, his body somehow bonding with the ships alloy. Jimmy states that he feels aglow with power. Ann melds with the life support systems and Simon is overwhelmed by a mass of data somehow connected to the ships computers, as if he were vectoring towards the stars themselves. The rocket returns crashing to earth with such a crushing explosion that Banner fears nothing could have survived the impact.

    \"U-Foes
    U-Foes Emerge

    Much to Banner's surprise, four beings emerge from the wreckage with incredible powers.

    Vector: (Simon Utrecht) has the ability to vector/repel any object no matter it's weight size or density.

    Vapor: (Ann Darnell) Exhibits the ability to change her form into any gaseous mixture she imagines.

    X-Ray: (Jimmy Darnell) Commands radiation of all classifications and can project them offensively.

    Ironclad: (Mike Steel) Emerges with a metallic hide, the ability to control his density and Hulk class strength.

    Immediately the quartet blame Banner for robbing them of even greater power by having brought them back too early. Banner is shocked by the revelation that they would expose themselves to dangerous levels of radiation intentionally, to which Simon Utrecht replies, \"You make it sound as if it were madness to seek after power! Perhaps it is when the quest ends in failure. But we have attained the power which we sought!\"

    While pummeling Banner and continuing the blame game, Ironclad uses his cosmic irradiated logic to title the quartet the U-Foes. The \"U\" stands for Utrecht, who \"engineered the Voyage to the edge of Sanity!\" and \"Foes\" to signify the teams defiance of Humanity now that they are mighty and something greater than human.

    \"The
    The Naming Convention!

    Incurring the wrath of the Hulk, the U-Foes battle clumsily as their powers are new to them and the team dynamic is something far less than \"dynamic\". Each member demonstrates a level of selfishness while trying to work as a team, catching Ironclad in friendly fire. While having the ability to defeat the giant green brute, ultimately the U-Foes end up defeating themselves as their increasing powers get the better of them, becoming uncontrollable. Vapor unable to maintain her atomic structure dissipates into the air. Vector suffocates himself as he unwillingly pushes away even the smallest air molecule and pushes himself away from the earth into the outer atmosphere. X-Ray is unable to control the radiation combination, explodes in the sky and Ironclad's mass density get so heavy that he sinks into the ground working his way towards the earth's core.

    Creation

    The U-Foes were created by Bill Mantlo and Sal Buscema in 1980 and first appeared in The Incredible Hulk # 254.

    Team Evolution

    Of course this was not the end of the U-Foes. The team has tried to get revenge on the Hulk a multitude of times after their initial incarnation. They pop up every now and again with a second string treatment level but with first rate potential.

    Much like the Fantastic Four, the team uses a family structure sharing the same goals and working together to reach their targets. Simon shares a romantic relationship with Ann much in the same way that Reed and Sue have but without the wedlock and the super powered offspring. Ann and Jimmy both come to each others aid in time of need like you would expect a loving siblings to do but this concern for one another is not specific to the siblings as all four members have dropped the cause of battle to aid one of their own in one instance or another.

    Unlike the Marvel's first family, there is and air of negativity and dis-functionality that aids in their undoing, time and time again.

    Story Arcs

    The U-Foes fought the West Coast Avengers during the Acts of Vengeance.

    Civil War

    The U-Foes registered as part of the Superhuman Registration Act after they were apprehended by the Thunderbolts. The U-Foes agree to join the Thunderbolts' army and capture other heroes and villains who oppose the Registration Act instead of facing prison time.

    Dark Reign

    Norman Osborn replaces Tony Stark as the director of SHIELD after the Secret Invasion and is also appointed to run the Initiative. The U-Foes are revealed as members of the Initiative's North Carolina team. The U-Foes are also recruited by the Hood to join his organization who is in cahoots with Norman Osborn as well. The U-Foes would come into conflict with the Avengers on several occasions.

    Marvel Adventures

    The U-Foes would be involved in several stories taking place in the Marvel Adventures comics which are standalone stories and does not take place in the current Marvel Universe continuity.

    Immortal Hulk

    After the current members of Gamma Flight quit in protest of Henry Gyrich's assigning them to hunt down Hulk and all gamma mutates, the U-Foes were hired as Alpha Flight's new Gamma Flight members.

    Other Media

    Video Games

    \"Hulk
    Hulk and Iron Clad (from the video game) getting ready to battle it out!

    In the 2008 Incredible Hulk game The U-foes are lead by a Professor named Utrecht. Prof. Utrecht is a ruthless business man as well as being a Professor. Utrecht convinces three other people to join him in his quest to recreate Dr. Banners experiment. In the game Banner says he was tempted to go and speak to him when he first began working on the project. The army realizes what Utrecht is doing and sends a group of soldiers to arrest go an arrest him. Playing as the Hulk you must reach them and destroy them before they get to Utrecht because Banner needs to talk to him. A man named Rick Jones is an alley with you and radios you and tells you that there is a gamma radiation level coming from the top of Utrecht's apartment and if you don't destroy the dish then it could be a very bad thing for the city. Still playing as the Hulk you must rush to the apartment and destroy the satellite dish that is drawing the gamma energy. After doing so a small cut scene of the Hulk destroying the rest of the building shows and then the ufoes stand up and are amazed with the Hulk but decide he is a threat to them and he must be stopped. They will come at you by twos and try to kill you. They have all renamed themselves, Utrecht has named himself Vector. The others are named Vapor,Ironclad, and X-Ray. After finally defeating them a video will play of Vector promising that if the Hulk ever interferes again he must be killed. You will meet them randomly throughout the city later on.

    In the 2012 turn based RPG social network game, Avengers Ultimate Alliance, the U-Foes are reoccurring enemies in chapter 4: You, Foe. Part 1 of chapter 4 has Ironclad and Vapor as bosses, Part 2 has X-Ray, part 3 has Vector, and Vapor is the last U-Foe to appear in the chapter in part 4, as a main boss, as the closing boss fight for chapter 4 part 5 features Doctor Doom as the boss rather the a member of the U-Foes.

    Television

    \"Avengers:
    Avengers: Earth's Mightiest Heroes

    The U-Foes made their animated debut on The Avengers: Earth's Mightiest Heroes. They first appeared on Micro Episode #10 as inmates of the Cube. They later appeared again in Episode 12: Gamma World (Part 1) where they were freed by The Leader and attacked the Avengers and Dr. Samson when they entered the Cube.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20861/","id":20861,"name":"Waiting For the U-Foes!","issue_number":"254"},"id":3238,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/1079140-u_foes1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/1079140-u_foes1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/1079140-u_foes1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/1079140-u_foes1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/1079140-u_foes1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/1079140-u_foes1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/1079140-u_foes1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/1079140-u_foes1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/1079140-u_foes1.jpg","image_tags":"All Images,Earth-616 U-Foes,Suit"},"name":"U-Foes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/u-foes/4060-3238/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3266/","count_of_isssue_appearances":0,"count_of_team_members":10,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-04-22 09:34:03","deck":"Once they were seven ordinary human beings. Then they began to develop bizarre superhuman powers. They met at a clinic set up to deal with paranormal problems like theirs, but left when they discovered something sinister was going on there. Banding together for their own protection, they became D.P.7!","description":"

    Creation

    D.P.7 were created by Mark Gruenwald and Paul Ryan and first appeared in D.P.7 #1. \"D.P.7\" stands for \"Displaced Paranormals 7\".

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-27380/","id":27380,"name":"The Clinic","issue_number":"1"},"id":3266,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2555903-detail.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2555903-detail.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2555903-detail.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2555903-detail.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2555903-detail.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2555903-detail.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2555903-detail.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2555903-detail.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2555903-detail.jpg","image_tags":"All Images,Charly Beck,D.P.7.,David Landers,Gallery,Jeff Walters,Lenore Fenzl"},"name":"D.P.7","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/dp7/4060-3266/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3480/","count_of_isssue_appearances":0,"count_of_team_members":195,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-01-13 23:50:32","deck":"A worldwide subversive organization dedicated to global domination. At its height, HYDRA was the most extensive, powerful, and dangerous organization in history.","description":"

    Origin

    Rising out of the fall of the Axis Powers in World War II, HYDRA was apparently created as a secret organization for global domination by Nazi spymaster Baron Wolfgang von Strucker along with Kraken. This developed with the help of an alliance with Shoji Soma, grandmaster of the Hand. When the power base pf HYDRA felt firmly established, Strucker installed himself as its supreme commander and ended the alliance with the Hand.

    \"Hail Hydra! Immortal Hydra! We shall never be destroyed! Cut off a limb, and two more shall take its place!\"

    HYDRA recruited from the remnants of the Nazi's military forces and acquired alien technologies to advance its resources beyond those that most governments possessed. Strucker chose to build HYDRA\"s forces quietly over the following decades.

    Creation

    Hydra was created by Stan Lee and Jack Kirby. The first appearance of Hydra was in Strange Tales #135.

    Team Evolution

    Through the decades, HYDRA was consistently used as a source of all-purpose terrorism and villainous cannon fodder with its legions of uniformed operatives and its philosophy \"cut off one head and two will take its place.\" It also consistently served as an opposite number for S.H.I.E.L.D., Marvel's source of all-purpose espionage and heroic cannon fodder.

    A number of other criminal organizations began as branches of HYDRA before striking off as their own independent entities, such as A.I.M., with its own various factions, and separate incarnations of the Secret Empire.

    Baron Von Strucker has most commonly depicted as HYDRA's \"Supreme Hydra.\" However, the organization fractured after his first death, leading to a variety of HYDRAs with an inconsistent hierarchy of leadership. This continued even after Strucker was resurrected and he supposedly reunited HYDRA. Others claiming the title of Supreme Hydra have included Viper and the Gorgon.

    This was addressed in Secret Warriors by Jonathan Hickman, who introduced the HYDRA High Council. This embraced the sometimes inconsistent portrayals of HYDRA by rationalizing it as HYDRA now having a council-based leadership that including Von Strucker, Viper, Gorgon, the Hive, Kraken and a new Madame Hydra. The structure of HYDRA was much more strongly defined through the course of this series but also heavily changed in the end due to an internal civil war. Much of the High Council was left either dead or defected, leaving HYDRA under the command of Gorgon and Madame HYDRA. The end of this series also revealed the role of Von Strucker's arch-foe, Nick Fury, in the birth of the organization.

    Additionally, an extradimensional rift has allowed agents of HYDRA from an alternate Earth to appear on Earth-616. This version of the organization is firmly under the command of Queen Hydra.

    Major Story Arcs

    Enemy of the State

    For further information: Enemy of the State

    \"Wolverine
    Wolverine vs. Gorgon

    In an alliance between HYDRA and the Hand, Baron Von Strucker orchestrated a plan that saw Wolverine taken and killed by the Gorgon. Wolverine was then resurrected by the Hand's magic as a loyal agent of HYDRA. Wolverine was then sent on a killing spree in the superhuman and law enforcement communities in the service of HYDRA. Some of these superhumans were made into HYDRA agents using the same Hand magic that was used on Wolverine. Along the way, he also acquired defense secrets and Reed Richards' technology for HYDRA. He was eventually brought down by a combined effort from the superhero community and freed of HYDRA's brainwashing. Despite this, HYDRA still accomplished a great deal.

    All was not well within HYDRA, though. The Gorgon had entered into an affair with Elsbeth Von Strucker, Baron Von Strucker's wife, and used this to depose him as the Supreme Hydra. Both HYDRA and the Hand were now under the Gorgon's command, and he focused on the part of Von Strucker's plan involving using the Hand's magic to recruit superhumans. He ordered the mass murder of both superheroes and supervillains alike so that their bodies could be revived as loyal HYDRA agents, quickly gathering together a small army.

    However, S.H.I.E.L.D. had successfully deprogrammed Wolverine, and the mutant now wanted nothing but revenge. He tore through the Hand and Gorgon's former death cult, the Dawn of the White Light. He then came after Gorgon as he was carrying out a plan to assassinate Nick Fury. It was only Wolverine's last second intervention that prevented Gorgon from killing Fury, and Wolverine just barely managed to kill Gorgon, cutting off another head of HYDRA.

    The Seven Capital Cities of Heaven

    A man known simply as Xao formed an alliance with HYDRA in a plot to break through the mystical barrier separating Earth from K'un-Lun and pillage the city of its ancient wonders. This plan failed when Iron Fist managed to unite the Immortal Weapons of all the other cities of Heaven against HYDRA's invasion force. The never made it through to K'un-Lun, and Xao was killed.

    Nick Fury: Agent of Nothing

    For further information: Nick Fury: Agent of Nothing, Secret Invasion

    \"HYDRA
    HYDRA High Council

    When Nick Fury went rogue from S.H.I.E.L.D. and the government, it was discovered that for many years HYDRA had one of its tentacles into the highest levels of S.H.I.E.L.D., effectively meaning Fury had been working for HYDRA all this time. Ironically, HYDRA was dealing with its own infiltrators around the same time, namely the Skrulls. Upon realization that he had been breached by the Skrulls, Strucker chose to completely destroyed his undersea base codenamed Ichor with all of its personnel. He then reconvened HYDRA at Gehenna, their most treasured stronghold, and called the full HYDRA High Council together. They even forced the Grandmaster of the Hand to resurrect the Gorgon to convene the full council of HYDRA's leaders.

    So it was that Baron Strucker, Kraken, the Hive, the Gorgon, Madame Hydra and the Viper all met together for what was apparently the first time, and Strucker laid out his intentions. Fury had discovered their true structure and was going to come for them. Rather than wait, he wanted HYDRA to go to war with Fury. Though some were reluctant, there was unanimous consent for Strucker's war.

    Wake the Beast

    For further information: Wake the Beast

    HYDRA was betrayed by one of its leaders Madame Hydra, actually Contessa Allegro de la Fontaine. She was, in fact, a sleeper agent of Leviathan, an ancient enemy of HYDRA's dating back to the years of its very formation. She acquired from them an alien power source that could be used to awaken Leviathan's leader from stasis, and so rose Orion, leader of Leviathan. The two organizations met for what HYDRA hoped could be an understanding between them. Leviathan was not interested in any understanding, and so fierce war began between Leviathan and HYDRA.

    All the while, Nick Fury and his small force of Secret Warriors manipulated events to urge them on.

    Wheels Within Wheels

    HYDRA took heavy losses in the war with Leviathan, and this was made worse when Nick Fury and his Secret Warriors successfully destroyed Gehenna. The loss of this stronghold fractured HYDRA's leadership, and two factions clashed in an internal civil war. One side rallied behind the Gorgon and the other behind Kraken. This only increased HYDRA's losses, and it turned out this was all carefully orchestrated by Nick Fury. Kraken was not the original man who helped create HYDRA but was actually Jake Fury. HYDRA had been played into killing itself, and Nick Fury personally executed Strucker.

    Though diminished, HYDRA managed to endure because Fury had not accounted in his plans for Gorgon's resurrection. What remained of HYDRA gathered un his and Viper's leadership.

    Ultimate

    Spider-Man saved Tony Stark from an attack by HYDRA. Jameson recalls this events after Spidey's death.

    Exiles

    They are well underway with their plan to take over the world. This version is being led by Madame Hydra (Sue Storm) and her lover, Wolverine. Various other superhumans, including Captain America (now Captain Hydra), Iron Man and Slaymaster, are agents of HYDRA in this world. One of the Exiles' foe, the original character Venger later becomes an agent of HYDRA, as well as Boy-Bob Banner.

    MAX

    A terrorist organization that was involved in Cold War and battled against S.H.I.E.L.D. Colonel Gagarin was a member.

    Other Media

    Live-Action Television

    Nick Fury: Agent of S.H.I.E.L.D.

    For further information: Nick Fury: Agent of S.H.I.E.L.D.

    HYDRA appears in the film, acting as more of a Men-In-Black type organization.

    Agents of S.H.I.E.L.D.

    For more information: Agents of S.H.I.E.L.D.

    \"The
    The HYDRA logo in the show

    Taking place in the same continuity as the Captain America films, the show depicts a weapon designed by remnants of the organization in the episode \"8-0-4\".

    In the episode \"Turn, Turn, Turn\" (a tie-in to Captain America: The Winter Soldier), it is revealed that the Clairvoyant (the mysterious entity the agents have been chasing for the duration of the first season) is actually S.H.I.E.L.D. agent John Garrett. HYDRA performs an uprising and begins killing off and capturing various S.H.I.E.L.D. agents, before Captain America's actions turn the tide. At the close of the episode, Grant Ward is also revealed to be an agent of HYDRA.

    HYDRA and Garrett continue to be the main antagonists for the remainder of the series, partnering with the Cybertek company in a scheme to sell Deathlok super soldiers to the United States military. The plan is thwarted when Nick Fury partners with Phil Coulson to defeat Garrett and his crew, and Garrett is ultimately vaporized by Coulson.

    In Season 2, the organization resurfaces with a new branch led by Daniel Whitehall. Carl Creel and Agent 33 (who is brainwashed) are shown as members, as is Bobbi Morse, who acts as the head of security for Whitehall's HYDRA branch. Morse is later revealed to be a plant in the organization placed by Coulson. The group is also shown to hire mercenaries like Marcus Scarlotti to help their cause.

    In Season 3, the secret history of the organization is finally revealed. It is stated that HYDRA existed long before the Red Skull, and that it actually dates back thousands of years. The group was founded to serve an ancient Inhuman of immense power, and in the present, certain factions of the organization seek to bring the entity back from its exile on another world.

    Animation

    \"HYDRA
    HYDRA in Avengers: Earth's Mightiest Heroes
    • X-Men: Evolution: In this X-Men animated series for Kids' WB, HYDRA appears briefly with seemingly Viper in command and as part of Wolverine's history. HYDRA is responsible for the creation of X-23 from Wolverine's cloned DNA. It is also implied that HYDRA was involved in the Weapon X project.
    • Avengers: Earth's Mightiest Heroes: In the continuity of this Disney XD animated series, HYDRA serves as a stand-in for the Nazi's in World War II and features prominently in Captain America's adventures in that era with Baron Heinrich Zemo and the Red Skull as its high-ranking commanders. HYDRA persists as a recurring threat through the first season in modern day as well under the command of Baron Von Strucker, though Viper is also present as Madame Hydra. Grim Reaper plays the role of one of HYDRA's foremost superhuman operatives, and Black Widow seemingly betrays S.H.I.E.L.D. to join them, secretly doing so as a double agent for Nick Fury. HYDRA is ultimately defeated later in the first season when it goes with war with A.I.M. over possession of the Cosmic Cube. The Avengers intervene, leading to a battle between Captain America and Baron Strucker for the cube. They both touch it, seemingly having no affect. Both HYDRA and A.I.M. are then defeated and incarcerated.
    • Avengers Assemble: HYDRA appears in the series as the Red Skull's army. Like their movie counterparts, they wear black armor rather than green jumpsuits.
    • Ultimate Spider-Man: In the final season, HYDRA is featured prominently after Doctor Octopus allies himself with the organization.
    • Marvel Future Avengers: HYDRA appears in the anime series, with the group being responsible for the teens Hurricane, Charade and Codec gaining superpowers.

    Film

    Ultimate Avengers 2 (2006)

    For more information: Ultimate Avengers 2

    Some HYDRA agents appear at the beginning fighting against Cap. After Cap defeats most of the agents, two of them try to escape in a van. Cap throws his shield, which slices clean through the van back-to-front, and causing it to skid out of control. The van crashes into a tank of some sort of chemicals, which then burst open, showering the van. The van melts along with both HYDRA agents.

    Captain America: the First Avenger (2011)

    For further information: Captain America: the First Avenger

    \"HYDRA
    HYDRA soldiers in the film

    HYDRA is featured in this World War II era movie as a scientific research and development branch of the Third Reich. It is operated by the Red Skull and goes rogue from the German forces with its own advanced technology and weaponry. The organization is defeated after Captain America apparently kills Red Skull in battle, leading to their defeat by American forces. They appear in the movie's video game too.

    Iron Man & Hulk: Heroes United

    For more information: Iron Man & Hulk: Heroes United

    HYDRA agents briefly appear in the film, and in the post-credits sequence, it's revealed that the Red Skull and HYDRA are plotting to take over the world.

    Captain America: The Winter Soldier

    For more information: Captain America: The Winter Soldier

    \"Baron
    Baron von Strucker in the HYDRA base

    HYDRA returns in the sequel, which is set in 2014. In the movie, it is revealed that Arnim Zola was a founding member of S.H.I.E.L.D., and that through use of this position, he manged to integrate HYDRA deep within the organization. It is revealed that HYDRA is responsible for the assassinations of Howard and Maria Stark, and that they also are monitoring potential threats such as Bruce Banner and Stephen Strange. The group is also responsible for brainwashing Captain America's friend Bucky Barnes and turning him into the notorious assassin known as the Winter Soldier.

    After S.H.I.E.L.D. head Alexander Pierce tries to kill Nick Fury, the organization is forced to reveal itself. HYDRA plans to use three new Helicarriers to commit acts of mass murder against predetermined targets, but the group is stopped by Captain America, Fury, Black Widow, and the Falcon. At the close of the movie, Nick Fury travels to Europe to take down the remaining HYDRA cells, while Captain America and Falcon head off to find Bucky. A mid-credits scene reveals that after Pierce's death, HYDRA is now being run by Baron von Strucker, who is in possession of Loki's scepter from the Avengers movie. Strucker is also shown to have Pietro and Wanda Maximoff in captivity.

    The new version of HYDRA is shown to be very influential, with members including Senator Stern from Iron Man 2, and S.H.I.E.L.D. agents Brock Rumlow and Jasper Sitwell.

    Avengers: Age of Ultron

    For more information: Avengers: Age of Ultron

    \"HYDRA
    HYDRA with Chitauri gear

    HYDRA returns in the movie, with Baron Strucker still leading the organization. The movie opens with the Avengers raiding a HYDRA outpost in Sokovia, where Strucker has been performing experiments with Loki's scepter. The soldiers there are also shown wielding repurposed Chitauri tech. They are ultimately defeated by the Avengers, leading to a victory celebration at Avengers Tower.

    Video Games

    \"HYDRA
    HYDRA in X-Men: The Official Game
    • HYDRA is the major villain in the rare video game titled Spider-Man: Web of Fire
    • In Marvel Ultimate Alliance 2, one of the levels includes an old HYDRA base that the Anti-Registration group was using.
    • HYDRA's aerial base can be seen attacking the S.H.I.E.L.D. Helicarrier in the latter's stage in Marvel Capcom 3 and the organization's logo can also be seen on the car that attempts to run She-Hulk down in one of her special moves.
    • In X-Men: The Official Game (the prequel to X-Men: The Last Stand) HYDRA is partially responsible for the creation of the Master Mold and Sentinels alongside William Stryker. Under orders of their leader, Silver Samurai, HYDRA infiltrates Stryker's base to remove all evidence and Sentinel equipment, and by accident, activate the Master Mold. Lady Deathstrike is also depicted as an agent of HYDRA.
    • HYDRA soldiers appear as enemies in Marvel Ultimate Alliance 3: The Black Order.

    Merchandise

    \"Marvel
    Marvel Legends
    • Hasbro released a number of HYDRA figures.
    • A HYDRA soldier was included in the Marvel Legends Brood Queen Build-a-Figure wave.
    • A group of HYDRA soldiers were included with Diamond's Marvel Select Spider-Woman figure.
    • HYDRA soldiers were included in some of Lego's Marvel kits.
    • A pair of HYDRA soldiers were released by Hasbro as part of an exclusive Marvel Legends two-pack.
    • Hasbro later released a Marvel Legends Red Skull figure with interchangeable parts to create a generic HYDRA soldier, as part the Marvel Studios: The First 10 Years line.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111069/","id":111069,"name":"The Man For The Job!","issue_number":"135"},"id":3480,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2781621-hydralogo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2781621-hydralogo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2781621-hydralogo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2781621-hydralogo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2781621-hydralogo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2781621-hydralogo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2781621-hydralogo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2781621-hydralogo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2781621-hydralogo.jpg","image_tags":"All Images,Earth-616 Hydra"},"name":"HYDRA","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/hydra/4060-3480/"},{"aliases":"Strategic Hazard Intervention, Espionage and Logistics Directorate","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3775/","count_of_isssue_appearances":0,"count_of_team_members":404,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-11-14 15:31:14","deck":"A U.N. affiliated intelligence agency dealing primarily with terrorism and superhuman threats that was originally founded by the U.S. government.","description":"

    Origin

    S.H.I.E.L.D. was formed by Nick Fury, in the period after World War II. However, he figured the U.S. government wouldn't want a group like that, so he disbanded it. Later, though, after a terrorist attack, he noticed that a group like S.H.I.E.L.D. could really have helped and prevented the disaster. So he reformed it. Meanwhile, the United Nations had already taken S.H.I.E.L.D. and restarted it, having Colonel Rick Stoner becoming the first Director of the organization. Fury immediately joined and rose to the top. The Nations had reformed it in response to a HYDRA attack, and once Fury was leading it, it flourished.

    Creation

    S.H.I.E.L.D. made their first appearance in Strange Tales #135. They were created by Stan Lee and Jack Kirby.

    Team Evolution

    S.H.I.E.L.D. (Strategic Hazard Intervention, Espionage and Logistics Directorate) or Supreme Headquarters International Espionage Law enforcement Division (see Iron Man #227) is a group affiliated with the U.N that deals with superhuman threats. It is an intelligence and anti-terrorism group similar to the FBI, only it is an international corporation that spans all the world. It acts like the police force. S.H.I.E.L.D. agents are armed and work well, much more effective then standard police. They fight terrorists as well as super humans. S.H.I.E.L.D. also has been responsible for the starting of spin-off groups like S.W.O.R.D. and S.T.R.I.K.E. S.H.I.E.L.D. has agents that also are higher level, that often are super humans. Captain America, Spider-Woman, and Iron Man all have operated as S.H.I.E.L.D. agents. S.H.I.E.L.D. keeps ties to the superhuman community, too-they often call on the Fantastic Four, the Avengers, and Captain America.

    S.H.I.E.L.D. has superhuman agents in the past-two teams were formed in an effort to make a S.H.I.E.L.D. superhuman team. The first team consisted of Marvel Man, Texas Twister, the Vamp, and Blue Streak. However, it quickly failed, and another team in the same vein also failed. The Psi-Division of S.H.I.E.L.D. is a group of psychics or telepaths that deal with psionic menaces. This is only one of the groups of super humans that work in S.H.I.E.L.D. for the greater good.

    All S.H.I.E.L.D. members have a certain level, based on their importance. A normal S.H.I.E.L.D. agent will have a Level One-which means he can pass through Level One areas and has clearance. A sergeant might have Level Two, which means he has Level Two and One clearance. The Director of S.H.I.E.L.D. has a Level Nine clearance. Level Ten means the most important person in the world-no one currently possesses a Level Ten clearance. Not even the President, or Nick Fury.

    S.H.I.E.L.D. has many bases around the world. Many are on land-most notably S.H.I.E.L.D. Central, which is located in New York City. There are also many shelters that are secretly placed around the world. Fury has used one, as has the Secret Avengers when they needed a base during the events of Civil War. However, their most famous and important base is the S.H.I.E.L.D. Helicarrier.

    Helicarrier

    The Helicarrier is an aircraft that is constantly in the air. It is huge enough to hold an aircraft carrier. It is the mobile headquarters of S.H.I.E.L.D. and is extremely protected. The Helicarrier has held an entire squadron of jet fighters and a nuclear ballistic missile. There is one major Helicarrier, which is the one that is most important and used. There are also many smaller Helicarriers, however, which all serve as bases too. The Helicarrier has an extremely high level of security-even if someone managed to get on without clearance, guards and extremely powerful security technology would have them gone in a second. The Helicarrier was first proposed by Stark Industries, and was designed by Tony Stark, Forge, and Mr. Fantastic.

    S.H.I.E.L.D. operated as a covert, military/intelligence agency at the time, and members of it had already appeared. S.H.I.E.L.D. already fought HYDRA then-the evil group had plots like the aforementioned \"Overkill Horn\". A.I.M. made its first appearance, and individual villains such as Red Skull also popped up and needed to be stopped by S.H.I.E.L.D.. At this time, Godzilla came, and the Godzilla Squad was formed to take the monster down. S.H.I.E.L.D. had tough periods during this time. Several lifelike robots got so smart that they became able to think and make choices-they became sentient beings. They had a grudge against S.H.I.E.L.D. for making them follow orders all the time before they had intelligence-so they drugged important S.H.I.E.L.D. members and took their place within the organization. Several of these were Contessa Valentina Allegra de la Fontaine, Jimmy Woo, and Jasper Sitwell, among others. However, the valiant Fury managed to take them down.

    Fury's Influence

    Most of the reason that S.H.I.E.L.D. was so effective started with Fury. He started the group and put good, effective agents in place. He was extremely popular in and out of S.H.I.E.L.D. and had strong ties with the hero community. Without him, many \"pessimists\" and intellectuals theorized that S.H.I.E.L.D. would fall, and fall hard.

    Unfortunately, they were right. S.H.I.E.L.D. ran into disastrous times. As aforementioned, Nick Fury did a mission in Latveria to stop them from attacking the U.S. However, it was totally unauthorized, and Fury was forced to resign from S.H.I.E.L.D. Warrants went out for his arrest. The new head of S.H.I.E.L.D. was Maria Hill-who proved to be incompetent at the position. The President of the U.S. was a driving force behind Hill's election-for two reasons. Hill was an American, so the President expected her to be loyal first and foremost to the U.S. even though S.H.I.E.L.D. was a United Nations facility. Also, many men and women had been members of S.H.I.E.L.D. for a long time, and they would have been much better as the head of S.H.I.E.L.D.. However, they were \"too loyal to Fury\", so Hill got the job to keep the Fury loyalists out.

    S.H.I.E.L.D. took a downward turn. Fury's work as the head of S.H.I.E.L.D. was extremely effective, and an insane amount of work had kept corruption out of the huge organization. Unfortunately, Hill wasn't as good as Fury at it, and S.H.I.E.L.D. became corrupt and weak. Crimes were committed. Criminals were \"stockpiled\" in prison. Worst of all, the Avengers discovered that someone was mining the anti-metal in the Savage Land using slave labor-and S.H.I.E.L.D. was the prime suspect.

    Subdivisions

    S.H.I.E.L.D. also has many subdivisions and other groups based off it. Two other groups have been formed from S.H.I.E.L.D.; S.W.O.R.D.,S.A.F.E., to A.R.M.O.R. .

    S.W.O.R.D. stands for Sentient World Observation and Response Department. As you can easily guess, S.W.O.R.D. works with extraterrestrials. It stops extraterrestrial threats, keeps tabs on powerful aliens, etc. They are not a subdivision of S.H.I.E.L.D. but are actually a separate, yet similar group that simply works with S.H.I.E.L.D. However, they are closely affiliated with both S.H.I.E.L.D. and the United Nations. S.W.O.R.D. encountered Ord, an alien who was convinced that a mutant from Earth was destined to destroy his planet. He attempted to attack Earth to kill all the mutants but S.W.O.R.D. and the X-Men stopped him, effectively stopping an interplanetary war. The leader of S.W.O.R.D. is Abigail Brand, a tough, effective leader who stopped many crises and is extremely valuable to S.H.I.E.L.D. She was a Fury loyalist and respected him a lot and greatly dislikes Maria Hill. As for Tony Stark, he has not encountered S.W.O.R.D. or Brand yet. S.W.O.R.D. is currently trying to stop another war with a planet called Breakworld.

    Since S.H.I.E.L.D. is loyal to the United Nations two countries have created their own answer to S.H.I.E.L.D. that works within their country and their country alone. The first to appear was the British version of S.H.I.E.L.D., S.T.R.I.K.E. (Special Tactical Reserve for International Key Emergencies). S.T.R.I.K.E. was British, but one of their early leaders, Tod Radcliffe, was revealed to be a traitor that worked for the Red Skull. The next leader was Lance Hunter. They worked closely with Captain Britain. However, Vixen (Captain Britain's enemy) took them over and S.T.R.I.K.E. was disbanded. The most prominent person to work for S.T.R.I.K.E. was Betsy Braddock, who had psychic powers. After leaving S.T.R.I.K.E.. she joined the X-Men as the heroine Psylocke.

    S.A.F.E. is the United States answer to S.H.I.E.L.D. The name stands for Strategic Action For Emergencies. S.A.F.E. is nearly identical to S.H.I.E.L.D., except they are only in the U.S. They have fought many enemies, including Doctor Doom and Baron Heinrich Zemo. The leader is Sean Morgan, a competent leader and good soldier. Joshua Ballard is the most prolific agent, and he's extremely helpful-he's the Dum Dum Dugan of S.A.F.E..

    Along with these agencies, other small groups have been formed including Euromind and Starcore.

    Another group that has continually showed up over the years is the Cape Killers. They were never an official S.H.I.E.L.D. group, but S.H.I.E.L.D. agents did make up it's ranks. The term Cape Killers was given to any group of soldiers trained to hunt, subdue and in worst case scenario kill meta humans. The Cape Killers have had such members as Agent Abrams, Agent Cleery, Dum Dum Dugan, & Special Agent Marquez, and her partner Agent McAllister.

    Members

    \"Nick
    Nick Fury

    The most prominent, important, and effective member of S.H.I.E.L.D. is the man who runs it all, Nick Fury. Fury was born in New York City in 1921, to decorated World War I pilot Jack Fury. He and his friend Red Hargrove lusted after adventure-so they joined the U.S. Army in World War II. Nick was an adept soldier, and he was given command of the First Attack Squad-nicknamed the Howling Commandos. The Howling Commandos were extremely effective-and Fury quickly became a decorated war hero.

    After the war, Fury was hit by a land mine and badly injured. The government decided to test a new formula on him-that would heal him and greatly retard his aging. This was called the Infinity Formula. It worked-Fury was restored to full strength and is still in his physical prime today. He eventually joined the CIA and became a CIA agent in Korea, also interacting with the Fantastic Four. Tony Stark hired him to be the second commander of S.H.I.E.L.D. and Fury excelled at the job. Under his leadership, S.H.I.E.L.D. grew and grew until it is now one of the most powerful organizations in the world. Fury led S.H.I.E.L.D. for over forty years, working tirelessly and keeping it powerful and secret.

    However, Fury recently discovered that Latveria, led by the evil Doctor Doom, was planning to attack America. He immediately had S.H.I.E.L.D. launch a covert assault on the country, effectively stopping the massive attack that would have taken place. A year later, Latveria attacked back, and thousands were killed. Fury was blamed-and Luke Cage was injured. Captain America was angered at Fury. Eventually, this culminated in Fury being fired as commander of S.H.I.E.L.D.. A warrant was put out for his arrest, and Maria Hill took his place as the head of S.H.I.E.L.D. Hill still leads S.H.I.E.L.D. and Fury is still in hiding. He keeps control over parts of S.H.I.E.L.D. and lent a base to the Secret Avengers during Civil War.

    Nick Fury is infused with the Infinity Formula, meaning he barely ages at all. He is an soldier, with lots of experience as both a warrior and a leader. He is a master tactician and strategist, and is very good with all sorts of weapons. He wields great political power as the head of S.H.I.E.L.D., and is a very good hand-to-hand combatant.

    Nick Fury is not the only S.H.I.E.L.D. agent-not by a long shot. Many of the other important S.H.I.E.L.D. members date back from Fury's old team-the Howling Commandos.

    \"Dum
    Dum Dum Dugan

    Dum Dum Dugan (Timothy Aloysius Cadwallader Dugan) was working as a circus strongman before he enlisted in World War II. He was put in the Howling Commandos, a new division led by Nick Fury. He was extremely valuable to the team-he was so strong that he was able to save them from many things that should have killed them. He was a great marksman, strongman, and leader, and he became Fury's second-in-command. When the war ended, Fury invited Dugan into S.H.I.E.L.D. as his second-in-command. Dugan has easily been the second-most-important person to S.H.I.E.L.D. His missions have included tracking down and killing a radioactive monster ( Godzilla, in the Godzilla Squad) and various independent missions to take super villains (often with Squirrel Girl). For a long time, he worked maintaining security on the Helicarrier, and working for Fury whenever needed. When Fury was replaced by Maria Hill, he was her second-in-command and was put in charge of mutant affairs. This involved conflicts with Wolverine, who he had a mysterious contact with. Eventually, he tried to resign from S.H.I.E.L.D. when Tony Stark took control. He was rejected-he was too important to S.H.I.E.L.D. to quit. He was recently shot in the chest by Daken, but he survived, and is currently in the hospital.

    \"Gabriel
    Gabriel Jones

    Gabriel Jones was a young African-American living in New York City when a little thing called World War II popped up. Jones joined the army, and realized that he was naturally a great soldier and leader. He was put into the elite Howling Commandos and proved invaluable to the team. After the war was over, Jones served on the Godzilla Squad with other former Howling Commandos (not Fury), and later joined S.H.I.E.L.D. He ran out missions with or without other agents for S.H.I.E.L.D. until he retired, due to the events in the miniseries \"Nick Fury vs. S.H.I.E.L.D..\" He remains retired today, living the quiet, peaceful life. He sure deserves that. He also has the honor of being the first African-American in the Howling Commandos.

    \"Sharon
    Sharon Carter aka Agent 13

    Agent 13 (also known as Sharon Carter), is one of the most important members of S.H.I.E.L.D.. As a young girl, Sharon loved hearing stories of her older sister Peggy, who was a World War 1 flying ace and freedom fighter. Peggy had worked with Captain America, and the two fell in love. However, Cap never learned her name, and he then froze in suspended animation. Sharon was a good fighter and loved justice, so she joined S.H.I.E.L.D. under the code-name \"Agent 13\" and ran out several missions for them. She kept crossing paths with Cap, who had been resurrected and they eventually fell in love. Cap wanted her to quit as a S.H.I.E.L.D. agent, but she refused. Eventually, her death was faked so she could be sent off on a top-secret mission. The mission failed, and she was presumed dead. Cap was never informed that her death was faked the first time. However, he eventually found her, and she rejoined S.H.I.E.L.D.. She now works as a high-level agent, reporting directly to Hill for missions. Recently, she was given a hypnotic suggestion by Dr. Faustus to help kill Captain America, and under hypnotism, shot him in the stomach after Crossbones, a sniper and Red Skull's henchman, shot him. It was also revealed that she is pregnant with Cap's baby.

    Other important S.H.I.E.L.D. agents include Contessa Valentina Allegra de la Fontaine, Clay Quartermain, Jimmy Woo, and Jasper Sitwell.

    HYDRA

    \"Hydra\"
    Hydra

    Since S.H.I.E.L.D. is a major force and such a huge, powerful organization, it bound to have many enemies. Most of S.H.I.E.L.D.'s enemies are big groups-and the most powerful, fearsome, and deadly one of them all is HYDRA. HYDRA is S.H.I.E.L.D.'s archenemy. The motto of the group is \"Cut off one of our heads, and two more will take it's place!\" This is a reference to the Ancient Greek monster called the hydra, which fought Hercules and had the same ability. HYDRA is a terrorist group dedicated to taking over the world and destroying S.H.I.E.L.D., which has foiled them many a time.

    HYDRA has actually been around for centuries. The group goes all the way back to Imperial Japan, which only sought to rule Japan. This all changed in the 1900s when Wolfgang Von Strucker joined the group. Strucker was insane, deluded, and powerful-and he quickly rose to the top of the group. he steered it away from Japan and decided on a new goal-rule the world! When he got to the top, he changed his name and got a title-he became Baron Strucker. HYDRA was originally very open, not quiet, and S.H.I.E.L.D. was actually specifically formed to fight it (as you will read later). HYDRA and S.H.I.E.L.D. became enemies-constantly warring to take each other down. HYDRA made several daring moves. Strucker invented the \"Overkill Horn\", which would detonate all nuclear explosives worldwide. Later came the biological \"Death-Spore Bomb\". Both plots were foiled by S.H.I.E.L.D., and the latter resulted in Strucker's death.

    After Baron Strucker died, HYDRA split into many mini-groups, or \"heads\" of HYDRA. Some of these were East Coast HYDRA, Las Vegas HYDRA, New York HYDRA, and Germany HYDRA. These factions also genetically created super agents for HYDRA, resulting in the creation of many villains. However, this backfired when the great hero Spider-Woman was created by HYDRA related. Eventually Strucker was revived, and he reunited HYDRA. They continued their war against S.H.I.E.L.D. and the Earth.

    HYDRA later planned a massive attack on the U.S-they smuggled nuclear missile into America and was going to launch a bio nuclear assault on a major aquifer. They also tried to brainwash an army of heroes and villains (including Elektra and Northstar). Both times, they were foiled by S.H.I.E.L.D. and the New Avengers (including Spider-Woman, who they created). HYDRA is still extremely dangerous, and cannot be stopped easily. The only reason they don't currently rule the world is because of the heroic efforts of S.H.I.E.L.D..

    The HYDRA Agent is similar to the S.H.I.E.L.D. agent. He is extremely well-trained-only the elite become agents. They carry a large variety of weapons and are trained especially in stealth. HYDRA Agents often get missions to detonate, destroy, beat up, or burn things, and they are superb fighters. Some Agents of HYDRA have been Red Skull, Spider-Woman, Kingpin, and many others.

    A.I.M.

    Although HYDRA is easily S.H.I.E.L.D.'s greatest enemy, it is by no means the only one. One of S.H.I.E.L.D.'s other enemies is A.I.M.

    A.I.M. (Advanced Idea Mechanics) was created as a subdivision of HYDRA, by Baron Strucker. A.I.M.'s purpose was to create new technological wonders for HYDRA to use against S.H.I.E.L.D. and to take over the world. It is a group of scientists, industrialists, and technological geniuses, and originally, they provided and designed weapons, defenses, and huge assault mechanisms for HYDRA. However, HYDRA suffered a huge defeat from the U.S and Japan Armies, so A.I.M. broke off into it's own group. Like HYDRA, A.I.M.'s goal is to rule the Earth. However, unlike HYDRA, who wants to do it by force, A.I.M. seeks domination by technological means. They have created huge weapons and marvels before, and share one trait with HYDRA-they are dedicated to destroying S.H.I.E.L.D.. A.I.M. was led by the Scientist Supreme, an evil, shadowy figure where very little about him is known by S.H.I.E.L.D..

    The Cosmic Cube was an intensely powerful item as it could literally alter reality to the user's whim. Red Skull once stole it and wreaked havoc with it, but that was later. The Cube was created by the scientists at A.I.M., who sought to use it to rule the world. However, the Cube actually evolved into a new creature, Kubik, and A.I.M. no longer controls it. In this vein, A.I.M. created the Super-Adaptoid, which could exactly mimic the powers and appearance of other superheroes and villains. Although it was immensely powerful, the Adaptoid contained a sliver of the Cosmic Cube that gave it its power. When the Cube became Kubik, it wanted the shard back, so it easily destroyed the creature and regained the sliver. A.I.M. also created M.O.D.O.K. (Mobile Organism Designed Only for Killing). M.O.D.O.K. was originally one of AIM's own scientists, and he took control of A.I.M. and improved it, continuing the fight to rule the world and destroy S.H.I.E.L.D.. M.O.D.O.K. still is in charge of A.I.M. Along with A.I.M., some of S.H.I.E.L.D.'s enemies are Zodiac and Godzilla.

    Zodiac is a criminal organization that was created using S.H.I.E.L.D. technology. Each member is another sign of the Zodiac, and they are dedicated to world domination. Although the Zodiac mostly fights the Avengers, they often collide with S.H.I.E.L.D. in their efforts to have the world ruled by their criminal organization.

    Godzilla was a radioactive monster that rose out of the waters of Tokyo, Japan. S.H.I.E.L.D. immediately responded to the crisis, and formed the Godzilla Squad out of some of its members. The Squad was led by Dum Dum Dugan (who never fully recovered from the experience), and its mission was to take down Godzilla! Godzilla caused lots of property damage around Asia and North America before it was finally driven back into the sea. Obviously, this is based on the Japanese movie in real life of the same name-minus the S.H.I.E.L.D. agents.

    Major Story Arcs

    Civil War

    The Civil War started when the New Warriors (consisting of Robbie Baldwin, Namorita, Microbe, and Night Thrasher) went on a basic mission to catch four criminals in an old house. They included Speedfreek and an old Captain Marvel villain- Nitro. These villains had escaped from The Raft when Electro broke them out. The New Warriors easily defeated the villains-but Nitro was escaping. Namorita stopped him, but he let off an explosion, destroying Stamford and murdering 600 people.

    Tony Stark, also known as Iron Man, proposed the Superhuman Registration Act, where all super humans would have to register their powers and identities. They'd basically be cops. Maria Hill, who was the head of S.H.I.E.L.D. supported the Act, and eventually it was passed. Many super humans disagreed with the Act, the most important and prolific being Captain America. S.H.I.E.L.D. was enlisted by the U.S. government-take down Cap and his anti-registration hero team, the Secret Avengers. New S.H.I.E.L.D. Agents, nicknamed cape-killers, went after anti-reg heroes. S.H.I.E.L.D. was led by Maria Hill, and was fully pro-reg. Iron Man worked closely with S.H.I.E.L.D. also-he revealed his identity as Tony Stark. Many battles were fought. Eventually, Tony Stark's pro-registration side-and S.H.I.E.L.D. won. However, Maria Hill found out why she had been made the head of S.H.I.E.L.D., as aforementioned-to keep more effective \"Fury loyalists\" out and be loyal to the U.S. She was not supposed to be effective, and she wasn't. Dismayed, she turned leadership of S.H.I.E.L.D. over to the man she thought deserved it most-Tony Stark. Stark, also Iron Man, is currently the leader and head of S.H.I.E.L.D..

    H.A.M.M.E.R.

    In the fallout of Secret Invasion Norman Osborn is granted the keys to the whole world and closes down S.H.I.E.L.D. and replaces it with his own special forces known as H.A.M.M.E.R. He also replaces all of the organization's Stark Tech (which had been compromised during the Secret Invasion) with technology and weapons created by Oscorp.

    Nick Fury also discovers a dark secret about who as been pulling S.H.I.E.L.D.'s strings the whole time he was an agent in Secret Warriors #1.

    Weapons and Equipment

    S.H.I.E.L.D. has a lot of technology, important technology that is often used. Perhaps the most important is the LMD- Life Model Decoy. The Life Model Decoy is an android that is absolutely indistinguishable from whoever it impersonates. Fingerprints, DNA, hair, speech, thought patterns (for telepaths), anything, the Decoy is exactly the same. However, it is an android. LMDs are used to duplicate people and take their place if they are going to be assassinated or there is a strong chance of an attack. LMDs have been used in place of personnel since the beginning of the organization, including Jessica Drew. Most often, they have been used as a substitute for Nick Fury, who has had at least five LMDs destroyed in attempts to have him killed. These robots are a lot of the reason that many key S.H.I.E.L.D. members are still alive. The Zodiac, a criminal organization, was created using stolen S.H.I.E.L.D. LMDs. Also, LMDs have gained sentience a few times. The Deltites were a group of LMDs that gained sentience and tried to infiltrate S.H.I.E.L.D.. They were narrowly defeated by Nick Fury.

    S.H.I.E.L.D. also has used robot exoskeletons and gargantuan robots to achieve its ends. Red Ronin is the most important of those. Red Ronin was a huge, super powerful robot that was used by the Godzilla Squad. The robot was destroyed by Godzilla before he was driven into the sea. It was rebuilt, but was hijacked by a mad scientist who was trying to start World War Three. It was stopped by the Avengers and S.H.I.E.L.D. regained the remains. It has been stolen and used for evil many times, by Dr. Doom, The Hand, and Henry Gyrich. Each time, the robot has been defeated and rebuilt (by heroes like Wasp and Hulk)-only to be stolen again. Red Ronin is currently possessed and used by the evil villain The Fixer-it appears that the cycle is still going.

    Of course, the most prolific technology created and used by S.H.I.E.L.D. is the Helicarrier. The Helicarrier is outfitted with weapons, security, and is constantly filled with S.H.I.E.L.D. agents who are extremely effective and good fighters. The Helicarrier is always being attacked by villains, and they are barely ever successful. Read more about the Helicarrier at the top of the page. A smaller version of the Helicarrier, the Behemoth, is often used by S.H.I.E.L.D. Agents on missions, including by the Squad and by Dum Dum Dugan. The Behemoth is similar to the Helicarrier, only there is less weapons, technology, and it isn't as fast or powerful.

    As for other technology, S.H.I.E.L.D. has access to an infinite amount of military-level tech. Tools, weapons, anything that's used, S.H.I.E.L.D. can get. Anything from pistols to nuclear weapons is easily attainable. Fighter jets are often used by S.H.I.E.L.D. agents when it is necessary for their mission.

    Alternate Realities

    Ultimate Universe (Earth-1610)

    In the Ultimate Marvel universe, S.H.I.E.L.D. was started and first led by General Thunderbolt Ross, who is a major enemy of the Hulk. S.H.I.E.L.D. funded and sanctioned projects like Weapon X, which created Wolverine. A now-black Nick Fury took control of the group and was very effective. He tried to recreate the Super Soldier program, making another Captain America. the project failed and the formula turned the lead scientist on the project, Bruce Banner, into the Hulk. S.H.I.E.L.D. tried again with the Oz formula. It was responsible for the creation of Spider-Man, Green Goblin, Sandman, and Electro.

    Also, Ultimate S.H.I.E.L.D. created the Ultimates, as the government enlisted Fury to create a strike force of government-sponsored superheroes. The force was similar to the Avengers in the 616 universe, and answers to Ultimate S.H.I.E.L.D..

    Marvel Zombiverse (Earth-2149)

    S.H.I.E.L.D. also appears in Marvel Zombies Universe. At first, some of the members are already infected by the virus when Sentry came to Earth infected. The first of the members infected were Colonel America, Ms. Marvel, Hawkeye, and Black Widow. Luke Cage is part of the Avengers. After these infections, it starts to go on from there, with the infected heroes infecting other heroes and villains while eating people completely. Daredevil becomes infected by Spider-Man after saving Nova and Nova is saved by the Fantastic Four and Thor and goes to the S.H.I.E.L.D. Helicarrier. S.H.I.E.L.D. has called all uninfected heroes to meet together with Nick Fury and Nick Fury tells the uninfected heroes that they must make a defensive stand against the infected. The heroes agree to this, S.H.I.E.L.D. Avengers, and many more alike, and they go fight the zombies. However, this ends in tragedy and the uninfected become infected by the virus. The heroes were no match for the zombies and they all subdue to infection, becoming one of them. S.H.I.E.L.D. becomes no more and all of the members are killed or infected.

    Mutant X (Earth-1298)

    \"S.H.I.E.L.D.
    S.H.I.E.L.D. 2099

    In this reality, S.H.I.E.L.D. now stands for Save Humanity by Intervention in the Evolution of Life-form Deviants. It is now a mutant hating group that influence humans to violently hate mutants. It is still being led by Nick Fury.

    In the 2099 titles S.H.I.E.L.D. was controlled by Doctor Doom, who appointed such people as one of the former X-Men Junkpile, and 2099's Punisher, Jake Gallows, as members of S.H.I.E.L.D..

    Other Media

    Television

    Marvel Cinematic Universe

    S.H.I.E.L.D. (Strategic Homeland Intervention, Enforcement and Logistics Division) is a counter terrorism and intelligence agency run by Nick Fury.

    Foundations

    S.H.I.E.L.D was co-founded by Howard Stark and Peggy Carter after World War 2.

    Iron Man (2008)

    S.H.I.E.L.D. wishes to debrief Tony Stark about his escape from Afghanistan and arrests Obadiah Stane for planning the kidnap and murder of Stark as well as dealing weapons to terrorists. It also provides a cover story for what happened at Stark Industries during Iron Man and Iron Monger's fight, a story that Stark does not stick to instead revealing his secret to the world.

    Iron Man 2 (2010)

    S.H.I.E.L.D. agent Black Widow recruits Tony Stark as a consultant for the Avenger Initiative and organizes Senator Stern to present Tony Stark and James Rhodes with their medals. S.H.I.E.L.D. sends agent Coulson to New Mexico to find Mjolnir. The organization is also shown to be monitoring various superhumans across the globe, with one indicator on a map hinting at the existence of Wakanda and the Black Panther.

    The Consultant

    Phil Coulson and Jasper Sitwell discuss how to stop General Ross releasing Emil Blonsky and to decide Tony Stark.

    The Incredible Hulk (2008)

    General Ross enlists the help of S.H.I.E.L.D. to help him track Bruce Banner's e-mails to \"Mr. Blue\".

    A Funny Thing Happened on the Way to Thor’s Hammer

    Agent Coulson of S.H.I.E.L.D. stops a robbery in a gas station while on his way to Mjolnir.

    Thor (2011)

    S.H.I.E.L.D. had taken all of Jane Foster's research. Thor fights with some of Agent Coulson's men before being captured and interrogated by Coulson about his identity, origin and training. Mjolnir is also kept in a S.H.I.E.L.D. facility. Loki send The Destroyer to attack Thor and S.H.I.E.L.D. agents, after The Destoryer was defeated Thor told Coulson to return Jane's work and in return Coulson could count on Thor's help when needed. In a post-credits scene, Dr. Selvig is taken to a S.H.I.E.L.D. facility where he meets Nick Fury. Fury asks Selvig to study the recently-discovered Cosmic Cube, which holds untold power, to which Selvig agrees. It is then revealed that Selvig is under the control of Loki, who has been transported to Earth.

    Captain America: The First Avenger (2011)

    S.H.I.E.L.D. scientists in the Arctic uncover Captain America's frozen body in The Red Skull's airship from WWII. Rogers awakens in a room designed to appear as if he were still in the early 1940s. Deducing the truth and escaping to Times Square, Rogers learns from S.H.I.E.L.D. leader Nick Fury that he has been asleep for nearly 70 years, and they had wanted to acclimate his reentry into modern times. In a deleted scene it is revealed that S.H.I.E.L.D. was once called the Strategic Scientific Reserve.

    The Avengers (2012)

    \"No

    S.H.I.E.L.D. officially assembles the Avengers (Iron Man, Captain America, Thor, the Hulk, Black Widow, and Hawkeye) in response to the arrival of Loki, who goes on a rampage and steals the Tesseract from the organization's Project Pegasus facility. The Helicarrier is also shown off for the first time. After fighting off a Chitauri invasion of New York, the Avengers go their separate ways, with Fury stating that the team will reunite should a greater threat arrive.

    Agents of S.H.I.E.L.D. (2013-2020)

    \"No

    Taking place after the events of The Avengers, Agent Coulson assembles his own team of agents, consisting of pilot and martial artist Melinda May, master spy Grant Ward, genius techno-whizzes Leo Fitz and Jemma Simmons, and hacker/activist Skye. The team travels across the globe to deal with various incidents while clashing with the creators of a mysterious project known as Centipede, which aims to create an army of Super-Soldiers. Little is known about the organization, or the mysterious woman involved in it, Raina.

    During this time, more information about S.H.I.E.L.D. is revealed, including the revelation that S.H.I.E.L.D. actively monitors and hides the existence of various people with superhuman abilities, known as \"Gifted.\" The team is briefly joined by a new agent, Mike Peterson, who possesses superhuman abilities as a result of experimentation by Centipede. Mike is apparently killed in a massive explosion while trying to save Coulson.

    During the events of The Winter Soldier, it is revealed that the HYDRA organization and turncoat agent John Garrett are the true masterminds behind the Centipede project, and that Grant Ward was actually a spy for HYDRA the entire time. Ward murders Agent Victoria Hand in order to allow Garrett to continue his scheme. With S.H.I.E.L.D. destroyed, Coulson and his remaining team members go on the run, since the various former members of the organization are now considered terrorists by the U.S. government and Glenn Talbot. During this time, the team also contends with the return of Mike Peterson, who has been rebuilt as the vicious cyborg Deathlok. They are also joined by Agent Antoine Triplett, the grandson of Gabe Jones.

    At the close of the season, Garrett is killed and HYDRA is thwarted once again, though Raina manages to escape. Ward is taken into custody while Deathlok, now free from HYDRA, leaves for parts unknown in order to redeem himself. In the final moments, Nick Fury informs Coulson that it is his job to rebuild S.H.I.E.L.D. from the ground up in order to protect the world.

    \"The
    The Cast of S.H.I.E.L.D. Season 2

    Following a time skip, S.H.I.E.L.D. is now shown rebuilt as a small shadow organization run by Coulson. In addition to the cast of Season 1, the team has also recruited mechanic Alphonso \"Mack\" MacKenzie and British mercenary Lance Hunter. Isabelle Hartley and an agent named Idaho also briefly join the organization before being killed by Carl Creel. Mockingbird also joins the cast during the course of the season.

    The series would continue on for several more seasons, with the cast growing to include new characters like Jeffrey Mace and even Ghost Rider, while facing new threats like demons, the rogue A.I. program A.I.D.A. and the Chronicoms.

    Captain America: The Winter Soldier (2014)

    \"The
    The Triskelion interior

    In the two years since The Avengers, Captain America and Black Widow have been working as S.H.I.E.L.D. agents. S.H.I.E.L.D. director Alexander Pierce launches Project Insight, which involves the use of three next-gen Helicarriers that can target and eliminate threats to world peace. After Nick Fury is assassinated by the mysterious Winter Soldier, Captain America and Black Widow learn that S.H.I.E.L.D. has been infiltrated by HYDRA, with Pierce acting as their leader.

    It is shown that the Red Skull's chief scientist, Arnim Zola, had joined S.H.I.E.L.D. after World War 2, and slowly used his influence to allow HYDRA to grow and fester within its ranks. Project Insight will ultimately allow HYDRA to conquer the Earth after killing thousands of people that HYDRA view as potential threats (including the Avengers and Stephen Strange).

    With help from The Falcon, Captain America and the others learn evade HYDRA and learn that Nick Fury has survived his gunshot wounds, and is preparing to strike back against Pierce. During the final battle, the three Helicarriers are destroyed, as is the Triskelion, while Fury kills Pierce for his treachery. S.H.I.E.L.D. is officially disbanded and its secrets are publicly released online, with Black Widow strongly hinting that the safety of the world has now fallen to the Avengers.

    Captain Marvel (2019)

    S.H.I.E.L.D. appears in the movie, which is a prequel set in the 1990s. Younger versions of Nick Fury and Phil Coulson appear as characters.

    What If...? (2021)

    S.H.I.E.L.D. is featured in several of the possible timelines explored in the series.

    Video Games

    \"Ultimate
    Ultimate Alliance 2
    • S.H.I.E.L.D. is featured in Marvel Ultimate Alliance, as well as its two sequels. In Ultimate Alliance 2, they appear as enemies of the Anti-Registration heroes.
    • S.H.I.E.L.D. appears in Ultimate Spider-Man.
    • S.H.I.E.L.D. appears in Spider-Man: Web of Shadows.
    • S.H.I.E.L.D. appears in Spider-Man: Friend or Foe.
    • S.H.I.E.L.D. appears in Marvel Heroes.
    • S.H.I.E.L.D. is prominently featured in Lego Marvel Super Heroes.
    • S.H.I.E.L.D. appears in Disney Infinity 2.0: Marvel Super Heroes.
    • S.H.I.E.L.D. is prominently featured in the Marvel Avengers Alliance Facebook game.
    • The mobile app game Avengers Academy is set at a S.H.I.E.L.D.-run school for teenage superheroes.
    • S.H.I.E.L.D. appears in Lego Marvel's Avengers, including a special DLC pack inspired by the Agents of S.H.I.E.L.D. TV show.
    • S.H.I.E.L.D. is featured in Marvel's Avengers. Following the \"A-Day\" catastrophe (where a S.H.I.E.L.D. Helicarrier exploded while hosting a Terrigen Crystal that Tony Stark and Bruce Banner had been experimenting on), the group is forced to surrender its assets and resources to the A.I.M. organization. Part of the game's plot involves the Avengers helping rebuild the organization.

    Merchandise

    \"Marvel
    Marvel Legends
    • Various named S.H.I.E.L.D. agents appear in the HeroClix figure game, as well as generic male and female S.H.I.E.L.D. agents and recruits.
    • Both named and generic S.H.I.E.L.D. agents were featured in Diamond Select's Minimates line.
    • A generic S.H.I.E.L.D. Agent was featured in Hasbro's Super Hero Squad line as part of a two-pack with a Skrull.
    • The Dum Dum Dugan and Hand Ninja two-pack from Hasbro's Marvel Legends line included an alternate helmeted head that could turn the Dugan figure into one of a generic S.H.I.E.L.D. agent. Multiple named S.H.I.E.L.D. agents like Nick Fury, Maria Hill, Phil Coulson and Sharon Carter have also been featured in the Marvel Legends line.
    • A generic S.H.I.E.L.D. agent was featured in Hasbro's Marvel Universe line as part of a box set with a HYDRA agent and a Hand ninja.
    • Lego has produced various building kits featuring S.H.I.E.L.D., including a Helicarrier, a S.H.I.E.L.D. truck and multiple jets. Minifigures of both named and generic S.H.I.E.L.D. agents were often included with these kits.
    • The classic Nick Fury figure from Hasbro's Marvel Legends Giant-Man Build-a-Figure wave featured an alternate helmeted head depicting a generic S.H.I.E.L.D. agent.
    • Hasbro released a special Marvel Legends S.H.I.E.L.D. Agent two-pack featuring multiple swappable heads as a Hasbro Pulse exclusive.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111069/","id":111069,"name":"The Man For The Job!","issue_number":"135"},"id":3775,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/39636/2424505-cv2.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/39636/2424505-cv2.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/39636/2424505-cv2.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/39636/2424505-cv2.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/39636/2424505-cv2.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/39636/2424505-cv2.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/39636/2424505-cv2.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/39636/2424505-cv2.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/39636/2424505-cv2.jpeg","image_tags":"All Images"},"name":"S.H.I.E.L.D.","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/shield/4060-3775/"},{"aliases":"FF\r\nFirst Family","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3804/","count_of_isssue_appearances":0,"count_of_team_members":52,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-07-13 09:31:56","deck":"An intrepid group of astronauts: Reed Richards, Sue Storm, Johnny Storm, and Ben Grimm originally received their powers after being exposed to an immense amount of cosmic radiation during a trip into space. Mutated and given strange powers by this exposure, they became the Fantastic Four and dedicated their abilities to the good of humanity.","description":"

    Current Roster

    • Mr. Fantastic
    • Invisible Woman
    • Human Torch
    • The Thing

    Origin

    \"Fantastic
    Fantastic Four #1

    Reed Richards was a scientist and inventor of the first spaceship capable of reaching planets beyond our moon. After much planning, expense, and hard work, the ship was built. However, as its launch neared, the federal government decided to cut funding for the flight. Reed determined that there was no choice but to launch the ship before the entire effort was scrapped and wasted.

    Reed invited his girlfriend Susan Storm along for the trip, and her brother Johnny Storm insisted on accompanying to keep her safe. Wanting a pilot with both the ability and the courage to make the flight, Reed turned to his former college roommate and close friend Ben Grimm, a highly accomplished former test pilot for the United States Air Force. Everyone was ready for launch when Reed received a warning from the authorities, concerning the effects of the cosmic rays on human bodies so far out in space. Reed's request for launch was denied, and the mission aborted.

    More desperate than ever to make the flight, Reed's crew waited until the guards changed that night, then snuck onto the ship and launched before any planes could be scrambled to intercept them and/or shoot them down. Successful in leaving the Earth's atmosphere, they were halfway along on their mission when they entered a sub-space storm and were bombarded by intense cosmic rays both before and stronger than they expected. This unexpectedly powerful cosmic ray storm had strange and disorienting effects on the crew, making them unable to continue the trip. They turned back, returned to Earth, and crash-landed in a small opening in a forested area.

    \"The
    The Birth of the Fantastic Four

    Luckily, the team survived the crash, but were radically changed. Ben felt his body become heavy and found he'd turned into a monster. Reed tried to calm him down and restrain him when he realized that he'd reflexively stretched, wrapping his body around Ben like elastic. Johnny burst into flames while Sue panicked and turned invisible. Gathering their wits, they soon managed to calm themselves and agreed to use their new-found powers for the good of humanity and stay together as a team. Johnny dubbed himself the \"Human Torch,\" Sue took the name \"Invisible Girl\" (and later changed it to the \"Invisible Woman\"). Ben chose the name \"Thing,\" and Reed decided to call himself \"Mr. Fantastic.\" Thus, the Fantastic Four were born.

    Creation

    The Fantastic Four was created by Stan Lee and Jack Kirby in Fantastic Four #1, November 1961. Stan Lee and Jack Kirby created the Fantastic Four after seeing what a success DC Comics' Justice League was. While this is no doubt true, it has also been rumored for years that Stan actually patterned the FF team after DC's Sea Devils team and The Challengers of the unknown. Looking at the composition of both teams, there are a lot of similarities, so this rumor could well be correct.

    Team Evolution

    Silver Age

    \"The
    The Fantastic Four v.s Mole Man

    The first family super team of Marvel Comics, the Fantastic Four opened up the genre to a whole new way of telling the old story of family binds above all else. The Fantastic Four as a team made their public debut when a villain named Mole Man (A villain that lives underground) began attacking the surface. The Fantastic Four continued their illustrious careers as superheroes and unlike Spider-Man, they were well loved by the public and the media by appearing on television and more.

    Reed Richards also created the “ unstable molecules” which are used for their costumes. This allows Reed’s costume to stretch as he does, Invisible Girl’s goes invisible when she does, and Human Torch’s doesn't burn up when he flames on. Reed would also discover The Negative Zone ( Stan Lee and Jack Kirby shared credit for the creation of the Negative Zone and unstable molecules). The Negative Zone is a parallel universe in which all matter is negatively charged. It also has a breathable atmosphere which allows Mr. Fantastic to lead his team in adventures in the Negative Zone. The Negative Zone is mostly uninhabited and Reed was eventually able to map out most of the area.

    \"FF
    FF 38 (1965) - Sue is bound next to the Q-bomb

    One of the most important issues of the Silver Age was FF 38, \"Defeated by the Frightful Four\". This is the first issue where the FF are actually defeated by the end of the story. Medusa shows superb cunning by creating a trap for the Invisible Girl. She lures Sue to an East Side fashion house, on the pretext of showing her some wedding dresses. When Sue arrives, Medusa captures her easily with her deadly red hair and the Trapster makes certain the blonde girl cannot escape by shooting her with his paste gun. The Wizard flies himself, Sue and his two partners up into the air. The Frightful Four take an unconscious Invisible Girl to an isolated Pacific island and then go into an underground chamber. Wizard directs Trapster to place the girl down next to the detonation mechanism of a powerful nuclear Q-bomb! The Fantastic Four follow in an attempt to rescue Sue. However, after a brief battle, the Frightful Four escape, leaving the FF on the island. Fortunately Sue's partners find her just in time and Reed gets Sue to use her force field. The bomb explodes. While the FF survive, they have lost their powers. Daredevil then assists them in FF 39-40, as the FF try and avoid death at the hands of Doctor Doom. They do not regain their powers until late in issue 40.

    \"FF
    FF Annual 3 - Sue & Reed are married

    Reed and Sue eventually married in 1965 and it became a celebrity event. The couple continued their newly married life in the public eye for years to come. Later Sue would become pregnant with a baby boy whom would be named Franklin Richards. Due to Sue being pregnant, she had to take a temporary leave on the team. To take Sue's place, the Fantastic Four decided to recruit the Human Torch’s girlfriend, Crystal. However due to the pollution on Earth, Crystal was forced to leave the Fantastic Four soon after. Sue eventually gave birth to Franklin on 1968 in Fantastic Four Annual #6, and returned as an active member on the Fantastic Four. Lee and Kirby ended their run when Kirby left Marvel in 1970.

    \"Fantastic
    Fantastic Four #141

    Sue and Richards’ relationship eventually became dysfunctional because Sue began hating the life of a celebrity. Feeling angry she was not treated as an equal, Sue left the Fantastic Four at the end of Fantastic Four 130 and the Inhuman named Medusa would fill in for Sue while she took a break. Though still separated from her husband, the Invisible Girl did briefly return for the Annihilus storyline in issues #140 and #141 and a shocking event occurred at the end of #141 which seemed to cement Reed and Sue's separation permanently. Franklin's eyes began to glow and Mr. Fantastic was worried that they were all in grave danger. He picked up a ray gun and fired at his young son, almost hitting his wife in the process by the way. His act succeeded in stopping Franklin's eyes from glowing, but seemed to put the toddler into a coma-like state. Sue blamed Reed for harming Franklin and she walked out for a second time. The Thing declared an end to the Fantastic Four. Reed and Sue finally reconciled at the end of FF #149, but only after Namor staged a fight with Mr. Fantastic. However, Sue did not return to active FF duty for several more issues after the reconciliation. Namor really deserves praise for what he did, as he knew that Sue loved Reed and he put the welfare of the woman he loved above his own feelings for her.

    \"Medusa
    Medusa - Replacing the Invisible Girl

    The separation between Sue and Reed lasted for 19 issues. This is really significant, as it means the separation lasted for one year and 7 months. This was a very harsh break-up that could easily have ended in Sue and Reed getting a divorce. The fans seemed to side with Mr. Fantastic in the break-up and against the Invisible Girl. The Fantastic Four Fan Page in issue #152 actually had a shocking letter which urged the writers to kill Sue off and the FF Bullpen implied that a few other fans had also urged them to kill Sue, though not as many as had called for Sue and Reed to divorce. The Fan Page editorial staff went on to say that the consensus was that they had to find a way to make Sue think again, implying that perhaps the gorgeous blonde had not been thinking straight when she left Reed and the team. Medusa did perform in a satisfactory manner in Sue's absence, though she did not demonstrate the awesome power that Crystal did, when Crystal replaced Sue a few years earlier, due to Sue's maternity leave with baby Franklin Richards.

    During the 1970s the Fantastic Four had many artists and writers who would continue the Fantastic Four’s public career as superheroes. A roster change would come up when the Thing temporarily lost his powers. Reed decided to hire mercenary Power Man ( Luke Cage) to fill in for Ben.

    \"Baxter
    Baxter Building layout

    Reed eventually finished developing an exoskeleton that mimics his strength as the Thing, and Ben returns to the Fantastic Four as an active member. John Byrne would take over the Fantastic Four in the 1980s where critics would call “the best

    run since Lee and Kirby.” Byrne was most celebrated for his modernization of Invisible Girl. He changed her name to Invisible Woman and made her a more confident woman and also gave Sue more control over her abilities, making her the most powerful member of the Fantastic Four.

    The Fantastic Four would participate in the Beyonder’s “ Secret Wars” on an alien planet. During their time in the Secret Wars, the Thing was able to change to his human form and the Thing form at will. After the heroes were victorious against the Beyonder, the Thing decided to stay on the alien planet as he was happy to be able to change his forms at will. When the Mr.Fantastic and the Human Torch returned to Earth from Battleworld, they recruited She-Hulk to fill-in for the Thing.

    \"She-Hulk
    She-Hulk replaces the Thing

    Later, Sue would appear to have become pregnant with a second child but instead, Sue suffered a miscarriage. Eventually The Thing would decide to return to Earth, however upon his arrival he discovers that his girlfriend, Alicia Masters, was dating his teammate and friend Johnny Storm (Human Torch). The Thing, who had intended to return to the Fantastic Four, left the team to travel to world in an attempt to find his place and purpose in it. The She-Hulk did replace the Thing in the Fantastic Four and remain on the roster in his place for an extended period of time.

    During one of the Fantastic Four’s missions, they traveled to Mole Man’s realm where they discovered the Thing snooping around there. The Thing rejoined the Fantastic Four and they were able to defeat Mole Man before he destroyed California. She-Hulk left soon after for other reasons.

    As a team of superheroes, they remain a family first. Their headquarters in the Baxter Building also serves as their home. They have fought several enemies and have traveled to many different universes. They have become the foundation of the heroes in the Marvel Universe.

    Major Story Arcs

    Mole Man

    In the Fantastic Four's first battle they confronted Mole Man when he attempted to destroy the human race by unleashing his army of monsters that he created through an atomic blast. The Fantastic Four, led by Mr. Fantastic, would be able to defeat Mole Man and stop his threat on the world. The Fantastic Four would go on to be the first to meet the Inhumans, the Kree, and the Skrull races. They also discovered the hidden country of Wakanda.

    Doctor Doom

    \"Doom
    Doom forces Reed's hand, by taking Sue hostage

    During one of their adventures they would encounter their arch-nemesis Doctor Doom, also known as Victor von Doom and was a former college classmate and rival of Reed Richards. He had always blamed Reed for one of his experiments going wrong and scarring his own face. Dr. Doom recently became the new ruler of his homeland, Latveria. Dr. Doom kidnapped Invisible Girl (She would become Invisible Woman during John Byrne’s run) and forces Mr. Fantastic, Human Torch, and the Thing to use his time machine to travel back to the past and retrieve a magical stone. The three of them agree to do so and uses the time machine. However, once they finished the mission and returned, they decided to fight Doom instead and were able to defeat him and free Invisible Girl.

    Galactus

    \"Galactus
    Galactus vs the Watcher

    The Fantastic Four would eventually battle against the Galactus, the devourer of worlds. Galactus sent his herald, The Silver Surfer, to search for planets to feed the hungry Galactus and he would eventually discover the planet Earth. What looked like to be a losing battle, the Fantastic Four eventually allied themselves with the cosmic entity the Watcher. They were also able to liberate Galactus’ herald the Silver Surfer, who felt rebellious to Galactus. Reed would eventually be able to defeat Galactus by threatening to use the Ultimate Nullifier (A weapon that erases anything and everything that was stolen by the Human Torch on Galactus’ vessel) on Galactus. Galactus promises to not devour Earth again and leaves. The Galactus-Watcher-Silver Surfer Trilogy takes place in FF 48-50. Many, if not most, Fantastic Four fans have declared this to be the point where the Stan \"the Man\" Lee and Jack \"King\" Kirby hit their zenith and where the Fantastic Four comic truly did deserve the nickname of \"The World's Greatest Comic Magazine\".

    Leave of Reed and Sue

    \"Mr
    Mr Fantastic and Invisible Woman with their son Franklin Richards

    Sue and Reed would eventually decide to leave the Fantastic Four in hopes to give their son, Franklin, a normal life. Johnny would eventually marry Alicia Masters despite Ben’s feelings towards Alicia. Even with Johnny marrying Alicia, The Thing became the leader of the Fantastic Four. Crystal (Johnny’s former lover) and Sharon Ventura (who went by the alias Ms. Marvel) joined the team.

    A New Fantastic Four

    The Thing met Sharon during his time away from the Fantastic Four. During the new team’s first mission they were in another shuttle accident that was exposed to cosmic radiation. It mutated the Thing even more by giving him spikes on his body, and also transformed Sharon into a female version of the Thing. Reed and Sue would eventually return to the Fantastic Four, however soon after Ben would lose his powers temporarily again and is changed back to his human form.

    Reed, Thing, and Human Torch are thought dead, so Sue recruits a motley band of heroes that called themselves the New Fantastic Four ( Ghost Rider, Spider-Man, Wolverine, and Hulk) to avenge their deaths. Sue turns out to be a mutant Skrull named De'Lila who is a leader of a band renegades searching a technotroid egg to use as a weapon against the Skrull Empire.

    \"The
    The New Fantastic Four

    Later, Marvel editor-in-chief Tom DeFalco decided to retcon Johnny and Alicia’s relationship. They revealed that the real Alicia was actually kidnapped by the Skrull Empire and was replaced by a shape-shifting Skrull named Lyja. When they discovered this, Lyja had fallen in love with Johnny and decided to help the Fantastic Four rescue the real Alicia.

    After Ben and Alicia were able to reconcile, She-Thing (Sharon Ventura) had already fallen in love with Ben and decided to ally with Dr. Doom afterwards. However, Dr. Doom mutated her even more and she eventually left for good. Franklin Richards was later kidnapped by a time-traveler named Nathaniel Richards (Father of Reed Richards) and took him to the future to raise him there. He brought Franklin back as a teenager, who dubbed himself Psi-Lord.

    It was later revealed that in a future time-line, Franklin would father a child with Rachel Summers, who would become a super villain named Hyperstorm.

    For a time, it had appeared that Mr. Fantastic was killed by Dr. Doom, who also was badly wounded and dying. However, it was later revealed that Mr. Fantastic and Dr. Doom were not dead, but were kidnapped by Hyperstorm right before their deaths. The Fantastic Four eventually discovered this and were able to free Reed and defeat Hyperstorm with the help of Galactus. When the team returned back to Earth, Nathaniel decided to revert Franklin back to his original age as a child.

    Onslaught, Heroes Reborn and Heroes Return

    \"Heroes
    Heroes vs. Onslaught

    The Fantastic Four would later battle the psychic being known as Onslaught. Onslaught was too powerful for the Fantastic Four and all the heroes of Earth, it became a losing battle. However, the heroes devised a plan to defeat Onslaught but at the cost of all non-mutant hero lives. The Fantastic Four and all the heroes decided to sacrifice themselves in order to destroy Onslaught and were seemingly killed in the process.

    Since Reed had developed so many advanced technologies, the Government attempted to seize all his equipment, however Nathaniel traveled back to this reality and stored all of Reed’s equipment into the Negative Zone. However, with Franklin’s reality-altering powers he was able to store all the sacrificed heroes in a pocket universe and was able to bring them back to life on this reality’s Earth. The team would later return from the Heroes Reborn Earth, and have to cope with the fact that they had been considered dead for more than a year.

    During this time the team resided in Pier 4, since Four Freedoms Plaza now belonged to a group of super villains, masquerading as heroes known as, The Thunderbolts. It was also around this time when the team came in contact with a teenage girl calling herself Valeria von Doom, who claimed to be the daughter of Susan and Doom in the future. Sue was apprehensive at first with the girls story but eventually she and the rest of the team came to accept Valeria as both ally and friend.

    Valeria Richards

    \"Doom
    Doom delivers Valeria

    In a struggle against Abraxas, Valeria forfeited her life in order to help bring back Galactus to life. But she would not die. She is transformed into the form of a fetus and transferred into Sue's womb, making Valeria's story true except for one notable difference. She had been Reed's daughter all along. Sue was pregnant again but all would not go well for the Invisible Woman. Due to Sue's cosmic radiation exposure it became difficult to give birth. With Reed away solving a world crisis, Johnny turns to Dr. Doom and asks him to help his sister. Doom was successful in the delivery but forced Sue to allow Doom to name the child. Doom would name her Valeria Richards after a woman that he had once loved.

    The Mark Waid era saw the Fantastic Four we see a lot of new concepts and amazing arcs come to light. His first stories on the book dealt with the Fantastic Four as Imaginauts and how they dealt with the fame that they always had their way. We also saw glimpses of Johnny as a much more responsible man, thanks to his sisters conjecture.

    We also witness Doom's ruthlessness in trying cause harm to the Fantastic Four at any costs. He sold his loves life, Valeria (his first love) in an attempt to gain more of the magics that were always in his blood and which he denounced for a life of science. Seeing now that having both would help him in his end, he betrayed her to demons and was able to get the magical knowledge he yearned for.

    To add to that, when Doom delivered baby Valeria, he cast a spell on her that would make her his magical familiar and he used the connection to carry out a devastating attack against the team. In the instant she uttered \"Doom\" demons kidnapped Franklin and Reed and Johnny tried desperately to save him before Johnny was burnt badly by demon fire. Sue and Ben hurry to Reed to tell him what's happened when they discovered Johnny wailing and notice his burnt flesh. They explain what happened and the team sets out to rescue Franklin and heal Valeria from this affliction Doom gave upon her.

    They travel to Latveria where the team is ambushed by Doom. He takes Valeria and uses his magic in order to have the team suffer through painful versions of each others powers. He gives Johnny, Reed's stretching abilities, stretching him to his limits. He gives Sue a painful version of her brother's flame power. He has Ben fight off dozens of monsters. And finally he sticks Reed in a room full of magical information. But with the help of Doctor Strange, (or should I say his astral projection), Reed escapes and saves his family. Together they defeat Doom, and rescue Franklin and Valeria. Doom was vanquished and left in Hell by Reed, but not before Doom instilled a parting gift on him and scarred his face. This encounter would have lasting affects on the team and Reed.

    Civil War

    During the Civil War, the super-hero community was split in two, one in favor of the Super-Human registration act and the other against it. Reed sided with the Pro-Registration side along with Iron Man as team leader against Captain America's Anti-Registration team. A group of civilians attacked Johnny and seriously injured him because they blamed the super-heroes for the Stamford Incident. Susan and Thing reluctantly joined Reed's side all the while looking over a hospitalized Johnny, who was seemingly neglected by Reed. Reed, Sue and Ben joined the first battle against Captain America's Secret Avengers where a Cyborg Thor, made by Iron Man, Hank Pym and Reed, joined the battle and killed Goliath. After witnessing this, Sue shielded Cap's team from Thor's attack, giving them the time they needed to teleport away. Although Reed tried to explain himself, Sue refused to hear any of it. She decided to turn her back on Reed, and along with Johnny, who was released from the hospital, she joined the Secret Avengers and left a note for Reed explaining her actions and begging him to spend time with the children, who were neglected by Reed since the start of this struggle. However, Ben refused to participate in this war any longer, and although he did not agree with the Registration Act, he refused to fight the Government so he left for France. Reed remained with Iron Man and even helped built a prison in the Negative Zone meant for the rogue heroes.

    \"Reed
    Reed saves Sue in the Civil War

    In the final battle between the two sides, Taskmaster shot at Sue but Reed intervened and took the bullet instead, wounding him. This angers Sue and she smashes Taskmaster down with an invisible construct. Johnny was seen attempting to ambush Iron Man from behind but failed, During the fight, Ben returned and tried to save as many people as possible from being caught in the crossfire. When Captain America decided to surrender, the heroes had to face all the destruction their fight had caused. Sue and Johnny were granted amnesty and they try to reconstruct the streets where the battle took place. In an attempt to reconcile their relationship, Reed is able to convince Sue to come back to him and go on a second honeymoon. He takes Sue to one of the moons of Saturn to try and rekindle their love, as well as give her their first true honeymoon, since they never had one. During their absence, Storm and Black Panther filled in for them along side Ben and Johnny.

    New Fantastic Four

    The new team's first mission was to find the body of their friend Gravity which was taken by Epoch in the story in order to recover him as the Protector of the Universe. However, the Silver Surfer, who has returned to being a Herald of Galactus, was tracking down Epoch, in order to feed her to Galactus, seeing her as an energy source capable of fulfilling his master's hunger. The team traveled to space and confronted the Surfer who, after a brief battle with Black Panther, agreed to help them find their friend but Epoch will be fed to Galactus. Surfer then told Thing that he is a Herald again because he realized that Galactus' is hunger is not related in the story to good or evil.

    However, the recovered Gravity and the Fantastic Four refused to allow Galactus consume Epoch. The Black Panther, using a device similar to the one used by Doctor Doom that takes away the Surfer's Cosmic Powers, fought and defeated the Surfer but they were still no match for Galactus himself. Gravity used all the powers given to him by Epoch to feed Galactus, who restored the Surfer's powers and spared Epoch.

    Second Honeymoon

    \"FF
    FF 548 - Sue is a hostage of the Frightful Four yet again

    In the stories, Reed takes Sue to Titan, one of the moons of Saturn, as a means for them to have a honeymoon, since they never took one when they originally married. While there, Reed discovers a strange object and begins to examine it. Unfortunately he is unsure of it and he teleports back to Earth so other scientists can see and help him determine what it was. In order to do so, however, he left Sue alone on the ship in which they traveled to Titan, where she was ambushed by the Frightful Four. Sue fought them off for as long as she could, but she was defeated. The Wizard proved his superb intellect by creating a gun which was set to the frequency of Sue's force field. One shot of the gun and Sue fell to the ground, unconscious. The Wizard placed a power dampener on her, making her totally helpless. Sue was held prisoner on her own ship, all in the hopes that Sue, as well as everyone else, recognize the Wizard as Reed's superior. Sue refuses to acknowledge him as her husbands superior, and he attacks her, now that she's subdued. The slap that the Wizard gives Sue is even more brutal than the one Reed delivered to her in FF 281. So much for a second honeymoon, as Sue has become a hostage of the Frightful Four for the third time in Fantastic Four history, the other two being Silver Age FF 38 and FF: The World's Greatest Comic Magazine 9 of 12. Reed, along with Johnny, Ben, Storm, and Black Panther head for the ship to stop the Frightful Four and rescue Sue.

    Sue is subjected to attacks by the Wizard but eventually Reed and the rest of the team manage to return to the ship. Once there, Storm found Sue and released her from the special machine that neutralized Sue's powers. As a means of revenge, Sue threatened the Wizard with creating a force field around his heart. The Wizard, intimidated by the more powerful Sue, subsequently faints and the Frightful Four are then rocketed out into space on a smaller vessel.

    Brand New Day

    Before the Civil War, Spider-Man's identity was shared among many super-heroes including the Fantastic Four. On one occasion they in-listed Peter's help in journeying with them to the Macroverse where they helped save a princess from a group of barbarians. During this whole encounter, Peter never wore his mask.

    In present time, The Fantastic Four seek Peter's help again in journeying to the Macroverse, from where Reed received a distress signal. At first Spidey refuses to go but then accepts after Reed produces him a check to pay his bills. However, after One More Day, the Fantastic Four have also forget of Spidey's identity, making the Human Torch, who was once a very close friend to both Peter and Spider-Man, very skeptical. When they arrive at the Macroverse, they discover five statues of themselves, the inhabitants of the Macroverse idolize them for their previous adventure. Once the Johnny realizes that the unmasked Spider-Man's statue's face is unrecognizable, he recalls that he once knew more about Spider-Man and wants to know what he did that caused them to forget who he is. When Spidey refuses to answer and declares that he won't go down that road again and that no one will ever know his secret, an angered Human Torch burns off Spidey's mask but Susan uses her powers to protect Peter's face and lashes out at Johnny for betraying Spidey's trust. However, they are in a war-zone between two races, and the combined might of Spider-Man and the Fantastic Four was able to return the Macroverse to peace. When they were heading back to Earth, Reed asks Spidey about his secret identity and how he was able to have everyone forget it. Spidey tells him that it was the result of a special spell that prevents anyone from knowing Peter's identity unless Peter himself unmasks. Johnny urges Peter to unmask since they're all friends but Peter still refuses until Reed tells him that he has a \"psychic firewall\" that allowing them to know his identity and keep it to themselves. Peter agrees and unmasks and they renew their friendship.

    Planet Hulk & World War Hulk

    The Hulk, who is now under the control of Banner, was sent to Las Vegas by the Fantastic Four to investigate a Hydra Gamma Bomb. However, things went horribly wrong and the bomb detonated in his face so Human Torch and the Thing are sent to bring back the Hulk before more people get hurt. But Bruce doesn't seem to be in control any more, as the Hulk now appears as a bald Grey Hulk. As Ben and Johnny fight this mindless Hulk, he seems to be recalling some of the tragic events in his life. Ben realizes that some-thing's wrong with him and that the explosion somehow messed up his mind. Ben told Johnny that he and the Hulk were both hit by something that made them monsters people need but don't want and that \"monsters understand monsters\". He attempts to reason with the Hulk despite Torch's protests. However, this doesn't work and Hulk recalls Betty's death and hallucinates that Thing is the Abomination (who killed Betty) and savagely attacks the Thing who doesn't fight back. Hulk hits Thing so hard, Ben is immobilized and tastes blood and before Hulk could finish Thing off, Human Torch goes nova but it didn't seem to have any effect on him until the Hulk told them not to worry about him and that he's fine.

    The fight in Las Vegas caused a lot of destruction so, the Illuminati were debating on whether or not Hulk should remain on Earth. Reed, Iron Man, Black Bolt, and Doctor Strange were all for sending Hulk into outer space, so he wouldn't harm anyone ever again. However, their plan didn't work out as they planned, as the Hulk, now stronger than ever, returned to Earth and declared war on the Illuminati, including Reed. When the Hulk came for Reed, with the help of Susan and the New Fantastic Four, he projected a hologram of the Sentry in order to calm the Hulk down, but his plan backfired and the Hulk defeated the Fantastic Four and captured him. The Hulk had built a gladiatorial arena in New York and equipped Reed and Tony with obedience disks, forcing them to fight each other to the death. Reed defeated Tony but Hulk spared because he came for justice, not murder. During the final battle between Sentry and the Hulk, Stark used a satellite cannon to finally defeat the Hulk.

    Secret Invasion

    \"Secret
    Secret Invasion: Fantastic Four 1

    The Illuminati investigated the corpse of Elektra who turned out to be a Skrull when Black Bolt revealed himself to be a Skrull himself and attacked the other members only to be killed by Namor. The Illuminati then separated since anyone of them could be a Skrull. Reed and Hank Pym were examining the body of the Skrull in order to find out why the Skrulls are undetectable. When Reed discovered why, Hank revealed himself to be a Skrull and shot Reed with a special gun, destabilizing him.

    He was taken to a Skrull armada in orbit where he was tortured by the Skrulls until being save by SWORD agent Abigail Brand. Using the information he discovered in the lab, Reed was able to develop a weapon that undoes the Skrulls shape-shifting abilities. Brand and Richards both traveled to the Savage Land where they used this weapon to identify the Skrulls during their battle with the New and Mighty Avengers.

    Susan was on a speaking tour around the world when she was attacked in her hotel room by Skrull Reed who used a forcefield to knock her out and neutralize her. That same Skrull took the form of Susan in order to infiltrate the Baxter Building while Ben, Johnny, Franklin and Valeria were there, and opened a portal to the Negative Zone causing half the building along with everyone in it, the Skrull Susan, Ben, Johnny, Franklin and Valeria, to be sucked in. While in the Negative Zone, they were attacked by Bug-like monsters. While Ben protected the kids from the \"bugs\", Johnny and Sue made it back to Reed's lab where they debated on who she really was. He asked her what her favorite movie was to which she answered wrong. The Skrull revealed herself to be Lyja, Johnny's ex. They fight and Lyja is captured by a Negative Zone monster but Torch saves her and they kiss for old times' sake. Franklin and Valeria make their way back to the lab to get a machine their dad built for them for defensive purposes and they help Thing fight off the rest of the bugs. Franklin suggests that they should free the Tinkerer from his N-Zone prison in order to help them fix the Baxter Building. While on their way to the prison on the Fantasticar, Valeria falls off, only to be saved by Lyja, who reveals that she was sent to kill them all but because of her feelings for Johnny she sent them to the N-Zone instead. The Thing frees the Tinkerer, and after an agreement, he manages to return the building to normal. As they make their way back to a ruined New York, Lyja decides to stay behind.

    Sue was revealed to be held captive on another Skrull ship along with other heroes and villains, who were freed and returned back to Earth when Iron Man destroyed the Skrull ship. After returning to Earth, she reunited with Reed and they both checked on their family before joining the final battle along side their fellow heroes against the Skrulls.

    Dark Reign

    When the Fantastic Four were attacked by HAMMER agents, Reed built a device called the Bridge which allowed him in the story to explore alternate dimensions. The team was sent to other continuities, leaving Franklin and Valeria under siege from Norman Osborn, HAMMER agents and Venom. Valeria was able to outsmart them and separate Osborn from his agents and led in a room where he was confronted by Franklin wearing a Spider-Man mask, calling him a villain. While Osborn is chasing the children holding a gun, the Fantastic Four make their way back to the Baxter Building where an enraged Invisible Woman scream at Osborn to stay away from her children. However, the insane Osborn challenges her to make him, which she does by knocking him down with a forcefield and preventing his remaining forces from reaching him. Reed tells Osborn to leave and never return but he replies by attempting to shoot Reed, only to be shot by Franklin. However, Franklin was holding a harmless toy gun, having Ben and Johnny thinking that Franklin's powers may have returned. Sue then told Reed to destroy the Bridge which he did but secretly he put it back together.

    Prime Elements; the end of a Family

    \"Fantastic
    Fantastic Four 574 - Franklin's birthday party

    On Franklin's birthday, an older Franklin infiltrated the Baxter Building and used a forcefield to prevent the team from reaching him. He then confronted Franklin and seemingly knock him down, angering the team. He then entered Valeria's room and informed her about the coming conflict between four cities and that the only hope is Doom. He urged her not to tell anyone of this encounter before she recognized him as her brother. When Reed was finally able to penetrate the forcefield, Future Franklin teleported away. In his bedroom, little Franklin formed a pocket Universe, hinting that his ultimate powers may have fully resurfaced. Deep within the Antarctic underground Lake Vostok, the team made contact with the Lost Tribes of Atlantis who appointed Sue as their representative with the Outside world. Also the Universal Inhumans on the Moon, the underground city of the High Evolutionary have appeared.

    \"Fantastic
    Fantastic Four 587 - the death of Johnny Storm

    Johnny met a beautiful woman at a night club and she came home with him. However, she revealed herself to be composed of \"bug monsters\" and entered the Negative Zone, which has become a city ruled by Blastaar, and set off a bomb there. Johnny, failing to stop them, managed to escape back to the Baxter Building.

    The Fantastic Four where soon met with tragedy. While the group was in the Negative Zone trying to close a gate through witch an army of insectoids called the Annihilation Wave where planning to enter the Earth's atmosphere, Johny Storm, aka the Human Torch scarified himself to close the gate manually on the wrong side of the portal. It was the only way to do it, according to Valeria en Thirty-Two, member of the group formed by Reed Richards; the Future Foundation.

    The seeming demise of the Human Torch has ripped the Fantastic Four apart and the group known as the FF disbanded. It was revealed that all the other members of the old Fantastic Four team will be joining the Future Foundation team, including new member Spider-Man.

    Family Vacation

    \"The
    The family hits the \"road\"

    After Johnny is revealed to be alive and Reed notices his powers becoming terminally unstable, Reed suggests the family, including Val and Franklin, go on an extended trip through space, as a cover for a search for a cure. Reed believes that the rest of his family will become just as unstable. According to Reed’s plans, it should only take a few seconds Earth-time but a year to the F4. However, Reed wanted to take no chances with the fate of their homeworld. They recruited a replacement team to take over the Future Foundation just in case something went wrong, which, of course, it did.

    They ran into an older Johnny Storm from an alternate reality. He knew why they were becoming unstable and that they could be cured back in his home universe. On that world, his version of the Fantastic Four is being attacked by a partnership between Doom, Annihilus, and Kang. When the two Fantastic Four teams met, Reed and his counterpart determined that this alt-F4 were stripped of their powers and the 616-F4 were overloaded with their energies, causing the instability. The alt-F4 already knew what was going on because they had already been overloaded and forced to work with a de-powered version of themselves.

    The two teams re-distribute their energies so their powers are back to normal, but Doom, Kang, and Annihilus also combine into a single villain, “Doom the Annihilating Conqueror.” The two teams need to combine their powers to combat this new Doom, and the F4 finally get home to relieve their replacements.

    The Quiet Man

    \"Ben
    Ben fights Counter-Earth monsters

    Once back on Earth, the Fantastic Four immediately got into hot water when a portal to Counter-Earth let a bunch of monsters loose on New York City. It got them kicked out of the Baxter Building, and SHIELD took custody of their children, including the Future Foundation students. Each of them started acting erratically as well, leading to Ben ending up in jail for the murder of the Puppeteer.

    Reed believed someone was to blame for all this, targeting the team somehow. His investigation led him to someone calling themselves, The Quiet Man, who kidnapped Reed when he got too close. Johnny and Sue got their act together and rescued both Reed and Ben from their individual prisons. In retaliation, The Quiet Man opened another portal to Counter-Earth to let loose more monsters.

    With the help of Sleepwalker, Sue was able to enter the dreamworld of Franklin along with Jim Hammond and Namor. They were looking for the cause of the monsters, only to find Psycho-Man deep in Franklin’s subconscious. Meanwhile, The Quiet Man was going to deactivate the portals so that he looked like the hero, but Psycho-Man betrayed him. Unable to figure out a way around Psycho-Man’s sabotage, Reed and Valeria stepped in and solved it instead.

    Secret Wars

    \"The
    The Richards look upon a reborn universe

    Reed had been working with the Illuminati to stop incursions, the collision of Earths of alternate universes. They failed to find a way to do so without choosing an Earth to destroy, so when Earth-1610 (the Ultimate Universe) headed toward Earth-616, Reed created a vessel to save as many people as he could. Unfortunately, the vessel suffered a hull breach leading to the death of the Fantastic Four except Reed.

    Meanwhile, Dr. Doom, Molecule Man, and Doctor Strange confronted the Beyonders about the incursions. The trio ended up killing the Beyonders with Doom taking their power for himself and creating Battleworld, a collection of incursion points with various people reborn without any memories of their old lives, including the perished members of the Fantastic Four. It also gave Reed a location to set down his life raft.

    Reed and his fellow survivors from Earth-616 came to the Thor Corps aid in battle with The Cabal, villainous survivors of the last incursion. Upon seeing Reed among the fray, Doom teleported to the fight to put an end to it. The Earth-616 heroes scattered, with Reed working with The Maker to take down Doom. While the other heroes assembled back-up, the Reeds looked for Doom’s power source: Molecule Man imprisoned in the basement. During the liberation of Molecule Man, Maker tried to betray Reed, but Molecule Man stood with Reed over both Maker and Doom.

    Now powerless, Doom was unable to defend Battleworld. Using Molecule Man, Reed destroyed it and re-created Earth-616. He sent Johnny, Thing, and Doom back to Earth with the memory that Reed, Sue, and the kids perished. Together, the rest of the Fantastic Four and Future Foundation work with Molecule Man to continue recreating new planets.

    Torch and Thing

    \"The
    The Multisect

    With Johnny and Ben as the only remaining members of the Fantastic Four, they decided to officially disband the team. Instead, they had brief stints on other teams: Johnny on the Avengers Unity Squad and Ben on the Guardians of the Galaxy. They also briefly got the Fantastic Four back together when they teamed up with Moon Girl and Devil Dinosaur to take on Super-Skrull.

    Johnny and Ben’s relationship ultimately suffered for their grieving. They kept their distance so as not to be reminded of the family members they lost. However, Ben would reach out to Johnny after Ben got his inheritance, a device called The Multisect. Ben told Johnny that their family might not be dead, and the device will locate them. This inspired Ben and Johnny to go on new adventures, but as Ben lied to Johnny about the ability of The Multisect, they never found their family.

    4 Yancy Street

    After a confrontation with an agent of entropy, The Griever at the End of All Things, Reed, Sue, and the kids make it back to Earth. Because the new team, The Fantastix, have settled into the Baxter Building, they all move in with the newly engaged, Ben and Alicia, in their Yancy Street brownstone. In order for it to fit their laboratory needs, Reed and Valeria folded in a few extra dimensions so it is a lot bigger on the inside.

    \"Moving
    Moving to Yancy Street

    Their home was all a-buzz with plans for Ben’s wedding and bachelor party, but when the day came, they were interrupted by the inevitable return of Galactus. He made landfall in Latveria, with Doom vowing to defeat him. When the F4 tried to join him, they were confronted by Victorious, the Herald of Doom, a Latverian woman turned lead enforcer. This was Doom’s plan all along. He captured Galactus to leech his power cosmic and used that to power specific prisons for the F4. He underestimated them, though. They were able to escape thanks to Doom’s hubris, and Sue was able to turn his armor invisible, showing his disfigurements to the world.

    The Four-Told

    \"The
    The angry people of Spyre

    After The Marvel-1, the ship the F4 used when they got their powers, was put on display in a museum, Reed got obsessed with the idea of going on the excursion he originally meant to go on, talking the rest of the team into joining.

    They landed on Spyre, where the people have been dreading a visit from the Fantastic Four for years. Reed’s first faster-than-light scan of their planet for viability was considered a warning of invasion. A scientist, The Overseer, mirrored the scan and not only witnessed the team try and fail to make it to his planet but also receive their powers. Believing them to be a threat, he harnessed the energy of the cosmic storm to make his own superhero team, The Unparalleled. After a brief confrontation, they are able to prove to The Overseer that they are not a threat.

    Settling in was a culture shock. The Spiricans have a tradition of “soul-mates.” Similar to marriage, couples are outfitted with special arm bands that connect them. Reed and Sue got their own, having shown up to the planet as a dedicated couple, but Johnny got linked to Unparalleled member, Sky. Unfortunately, the Unparalleled also had Ben disposed of in the hidden world under the city. Every few users of the cosmic storm power would turn into a monster like The Thing and shunned by their society.

    Suspicious of The Overseer, Reed investigated his ability to harness the cosmic storm. He had proof that Overseer weaponized the cosmic storm ahead of the F4’s attempted journey. The storm of their origin wasn’t a random phenomenon but a preemptive strike. Although that was enough to convince The Unparalleled and The Monster Mob from under the city that the F4 was not a threat, it was short-lived. Their confrontation with the Overseer destroyed a city landmark, which bonded the monsters and superhumans against the F4.

    The F4 were allowed to leave peacefully with a reluctant Sky, who had faith in the soul-mate tradition and stood by Johnny.

    Empyre

    \"N'Kalla
    N'Kalla and Jo-Venn

    On a road trip in space, the F4 ran out of gas and needed a tow to the nearest space station. They were entertaining themselves waiting for their ship to be repaired when Ben came across a gladiator match hosted by The Profiteer between a slave Kree boy, Jo-Venn, and a slave Skrull girl, N’Kalla. Angry, Ben rallied his team to earn their freedom and then brought them home so that he and Alicia could adopt them as their own.

    On their way home, they find an armada approaching Earth of the newly created Kree-Skrull alliance. Using Sue’s invisibility, they boarded one of the ships and found Hulkling has become their leader. They were detected by Super-Skrull and apprehended just as The Avengers and The Cotati attacked. In retaliation, Hulkling, who was in fact R’Klll in disguise, activated the Pyre, a Skrull world killer weapon traditionally used by newly crowned rulers as proof of mettle.

    \"New
    New Fantastic Four

    The F4 split up with members of the Avengers to try to stop both attacks. Sue and Ben teamed up with She-Hulk to chase Quoi. Reed returned to Avengers Mountain to make a plan with Iron Man, while Johnny stayed behind on the Alliance ship with Carol Danvers, Wiccan, and the real Hulkling. Meanwhile, back on Earth, Cotati soldiers were attacking, so Franklin and Valeria re-activated F4 subs Wolverine and Spider-Man to help them defend New York City.

    Reed, with a tailor made Iron Man suit, led re-assembled members of both teams to defeat the Cotati and install the real Hulkling to the throne of the Kree-Skrull Alliance.

    Forever Gate

    An alien enforcer working for a mysterious benefactor came calling to Baxter Building looking for something. What he found instead was The Zero Force, pre-primordial power that predates everything. It wasn’t what the alien was looking for so he abandoned it after setting it free from Reed’s special lockbox.

    \"The
    The Forever Gate

    Doom and the F4 raced to the Baxter Building to stop the alien, but they were too late. They had no answers to stop the out of control energy until Val showed up with her commandeered Fantasicar and the prototype teleporter she had been working on with Reed. When she combined the teleporter with the Zero Force, it reconfigured into The Forever Gate, a gateway to every point in space and time.

    Soon after the parents of the Future Foundation kids came calling. They wanted to know where their kids were, since the F4 left them in space to continue looking for remnants of Molecule Man. So, Reed used the gate to bring them back. Unfortunately, they were followed by refugees from planets Franklin had recently created. They were running from The Griever, who had been undoing Franklin’s work.

    The Griever had a mole in the refugees. They communicated back to her that Franklin had used up all his cosmic energy creating planets and fighting the alien enforcer. Learning this, she made her presence known. Griever trapped Reed, Ben, Sue, and Dragon Man in worlds based on their nightmare, waiting for Silver Surfer to show up with the Ultimate Nullifier. However, they don’t end up needing it. Instead, they offer Griever the chance to use the Forever Gate to skip to the last moments of the universe, which she gladly accepted.

    With the Griever gone, Surfer promises the F4 to find a suitable new world for all the refugees.

    Reckoning War

    \"FF
    FF and allies take on Wrath

    The Fantastic Four jump into action when the Badoon destroy The Moon and invade Earth with brand new weaponry. The weaponry reminds Reed of Watcher tech, so he leads his team to find Uatu for answers. They find Nick Fury instead, who had been investigating for the Watcher a group calling themselves The Reckoning. They were supplying upgraded tech to war-like alien races. Uatu knew about them and downloaded his knowledge to a data sphere before the Moon was destroyed. Reed helped himself to the sphere, downloading all The Watcher knowledge to his vulnerable human mind. He saw that The Reckoning was the first race The Watcher’s tried to help, which went so bad they took a vow only to watch from then on. Now, The Reckoning is back.

    Reed used his new hyper intelligence to collaborate with the heroes in the field, inviting She-Hulk and Jack of Hearts to join them at his side. He determined that aiding the Shi’ar in defending the M’kraan crystals was their top priority, so, without Johnny, who believed he was needed elsewhere, or Sue, who was sent to keep an eye on the Watchers, they used the Forever Gate to get to Shi’ar space. Unfortunately, Ben is hurt badly enough in a fight with The Reckoning to distract the whole team away from the M’kraan, which is taken. Jen believed they went to the one planet the Watchers’ can’t see: Obscura Minor, which can’t be seen due to Jen’s cosmic judicial ruling. Reed tapped into the Watcher’s knowledge of “traveling at night” to move them there.

    Once there, they fell into traps set up by The Reckoning, so The Reckoning could steal the Forever Gate. Reed was able to reconstruct one using his Watcher intelligence and powering it with Jack of Hearts, who was abandoned in their prison. They used the gate to reach the Watcher’s planet to stop The Reckoning from getting to The Apex of the Watchers’ powers. They are reunited with their other family members where they debate a fatal solution: Reed using the Ultimate Nullifier on Wrath, leader of The Reckoning.

    Thankfully, Reed was not killed by the Ultimate Nullifier, as it was designed to be used by a Watcher, which he had been turning into. Instead, it burned out the Watcher transformation. Uatu, who had absorbed all of the Watcher knowledge and power for himself, used the power to set everything right. He returned the heroes to their homes, including Jack of Heart, restored Galactus but with a hunger for knowledge, reassembled Earth’s Moon, and pulled the barrier down on the edge of space, increasing the universe by 90%.

    Fantastic Four Suits

    Reed had invented specialized suits made of unstable molecules which could adapt to him and his teammates' powers. For him, his suit allows him to stretch to great lengths without tearing it. The costume also makes them harmless against electrical attacks. They are also computers. In them, they have something equivalent to a computer. It forms a network, keeping the team up to date. It also displays data for them and touchpad controls are available on their gauntlets. The costume is like a GPS, providing their location. It has a scanner which can scan things in their environment, being able to scan things like how many people are in the room next to them.

    Members

    • Spider-Man- once tried to \"apply\" to the team but reconsidered when he wasn't gonna get paid.
    • Hulk -in the Grey Hulk and the Professor personality in different occasions.
    • Wolverine
    • Ghost Rider -Danny Ketch version.

    When a female Skrull captured the original team, she impersonated the Invisible Woman to recruit a new team to avenge the \"death\" of the original and to steal a weapon from the Mole Man.

    The team reassembled again by Doctor Strange to arrest the Human Torch for his actions that destroyed a quarter of a city.

    Ultimate Universe

    \"The
    The Fantastic Four of Earth-1610

    Earth-1610

    The Fantastic Four of the Ultimate universe is composed younger versions of the original four, Mr. Fantastic, Invisible Woman, Human Torch and Thing. The origin of these four is different than the original. Reed Richards enters a Think Tank in the Baxter Building along with Sue Storm her father Richard Storm, one of the caretakers, Johnny Storm her brother and Victor Van Dame. He started in the think tank trying to create a teleportation device and joined work with Victor to get better results. When they had finally acquired results that seemed promising they tried it out.

    In this reality Ben Grimm a childhood friend of Reed went to see the launch. The five of them were side by side trying to teleport an apple but got teleported instead. The teleportation consisted of going through something called the Negative Zone and the moment the five entered the N-Zone (a reality where the teleportation takes place as a mediator) affecting their DNA giving them superpowers.

    \"The
    The Ultimate Fantastic Four

    Reed could stretch to different lengths and didn't need to eat,drink or breathe. Sue could generate invisible force fields and arrange light making her invisible. Johnny could generate fire and fly. Ben turned into a rock brute with super strength. When Reed, Sue, Ben and Johnny came together once again faced an old Baxter teacher now going as the Mole Man. The four face his mole men and won.

    Later they decided to find Victor. They found him in Latveria where he was manipulating the locals with dragon tattoos. He now had metal instead of skin. He went against the four but he could not be arrested in Latveria. When going back Reed decided to go to the N-Zone to revert the process on himself and Ben.

    The four went up in space and teleported into the N-Zone where they made first contact with Ultimate Annihilus. While on the N-Zone, N-ihil pretended to be the Four's friend and explained how realities are stacked on the universe. That's when they became enemies. They returned home along with some sort of dinosaur leaving Annihilus in the N-Zone. Then they faced an old think tank jealous Brainiac going by the name The Thinker. She took over the Baxter Building and started going up against Reed. Brain against brain. The better genius won and the Thinker, Rhona Burchill, escaped. Johnny went to school with Peter Parker (AKA Spider-man). Johnny fell for a girl named Liz Allen. MJ, Peter, Kong, Liz and Johnny went to the beach together. There he was seen using his powers. Liz being mutant-phobic stopped talking to him so Peter as Spidey went and cheered him up. Reed made contact with himself and the rest of the FF from another universe making them become the Ultimate Frightful Four.

    \"Ultimate
    Ultimate Fantastic Four-Reed Richards of Earth 1610 Meets The Reed Richards of Earth 616

    Reed trying to cure Ben decided to change time. As a result Skrulls went to earth and gave them pills to give them superpowers. In the end they were betrayed by them all and they all died for the exception for Ben Grimm who didn't take the pill. He fought the Super-Skrull that used a suit to copy their powers. With no powers to be able to copy Ben took over and went back in time to stop the stopping of the accident. Again they faced the Frightful Four zombies and Doom went down along with them trying to be a hero. Spider-Man had a clone crisis and went to the FF for help. One of the clones who thought was Peter's father asked Sue to be his friend before dying. Reed cured MJ from a monster transformation she was having because of the clones. Then they gave the Scorpion clone to SHIELD. Ga Lak Tus was going to destroy the world and the FF did their part in stopping him. Teaming up with Ultimate Captain Marvel and the Ultimates they got information from the Kree.

    Reed created a machine that would damage Ga Lak Tus with the help of the Ultimate Vision. The Fantastic Four then went up against Gallowglass and Ronan. They also faced their father Thanos and got out of the problem with the help of Seed. The Thinker came back stealing Cerebro's hard drive and making the X-Men believe that it was the FF's fault. In the end they teamed up to defeat her. Then they faced Diablo a guy who created a teleportation from past to present and relied on magic.

    After the Fantastic Four first encountered Thanos in his home dimension, Thanos implanted the idea for the Cosmic Cube in Reed Richard's mind. Legend told that Thanos had discovered the original Cosmic Cube after it feel from the sky above his planet. With it he would attempt to control all existence. Thanos' defeat was narrow, and the costs were great. While Reed believed that he was creating the cosmic cube out of his own accord, Thanos was controlling Reed in order to re-create the powerful weapon that he once lost. As Reed continued to analyze the possibilities contained within the energy lattice, he found the draw of creating a cube irresistible. Reed's first attempt to harness the energy required for fueling the cube would result in the Fantastic Four's first encounter with the real Silver Surfer as well as the inter-dimensional being that they would com to know as the Psycho-Man.

    Sue then had to face Red Ghost. After the Red Ghost's defeat Reed would continue to work on developing the Cube. She went by herself to what she thought was a conference but was caught with the woman who became the Ultimate Red Ghost. With the help of the Ultimate Crimson Dynamo the rest of the FF saved Sue. Because of the actions of Reed while building the cube their relationship was broken off. When he finished the cube it automatically protected New York from an attack from Seed. Thanos' forces would spring foreword, removing a block of New York City containing the Four to take back to his home dimension. Thanos battled Reed in order to take the cube by force. While the Cube was a powerful weapon, Reed's inexperience wielding it made him susceptible to Thanos' power, and Reed was seemingly destroyed before Thanos acquired the cube. Using the power of the cube, Thanos came into our reality and took over the minds and wills of Earth's superheroes including the Ultimates, the X-Men, the remaining members of the Fantastic Four, and all solo heroes. These heroes in turn helped Thanos capture any remaining rebels. Thanos was disturbed because he could tell that he somehow didn't have full access to the Cube's vast powers as he once did.

    \"War
    War over the Cosmic Cube

    Meanwhile, Ben Grimm had located Thanos' estranged daughter Atrea who helped him realize that Reed was not actually dead. During his battle with Thanos Reed used the power of the Cosmic Cube to create a charred likeness of himself, while turning his actual form into an energy being. This move allowed him to escape Thanos' full power by being perceived as dead. Atrea felt Reed was still alive but trapped, and freed his essence.

    Convincing Atrea to rebel against her father, the three traveled back to their home dimension to battle Thanos. In the middle of the warped landscape of New York they found his citadel. With Atrea and Ben acting as a diversion Reed was able to get to Thanos to battle for control of the Cosmic Cube. While in partial control of the Cosmic Cube, Reed knew he was no match for Thanos' power.

    The small portion of the Cube's power which Thanos previously was denied access to was Reed's work. Reed unlocked this sequestered power within the Cube, giving Thanos full access to the Cube's infinite resources. With full access to the Cosmic Cube restored, Thanos' physical form quickly deteriorated as he died. Thanos' infatuation with death had created a subconscious drive within himself, and it was that desire for the fullness of death that destroyed Thanos.

    This left Reed the question of what to do with the Cube. It's vast powers had proven to dangerous for anyone, even himself, to wield. In order to deal with the Cube Reed opened up a very small rift in space and time and dropped the cube through. The cube plummeted through the rift and landed on Thanos' home planet many years earlier. The cube found its way to the sand in front of Thanos' very feet. The resulting paradox was that the original Cosmic Cube, the cube that Thanos had tricked Reed into building for him, was actually the Cosmic Cube that Reed had designed and built.

    After the Cosmic Cube event Sue went up with a new mystery. An giant egg was found along with the ex-Think Tank people now living underground. The the Ultimate Salem's Seven appeared into the picture trying to stop a flaming building and getting all the glory.

    March on Ultimatum

    20 Years into the future a new X-Men team that consisted of Captain America, Wolverine, Shadowcat, Rogue and a male Phoenix wanted to prevent the events of Ultimatum so they traveled back in time to stop it.

    Reed and Sue were going to go on a date when the future X-Men arrived trying to kill Reed. Reed not having any internal organs couldn't be killed so they kidnapped him. The rest of the Fantastic Four went to the present X-Men for help. Reed discovered that the future male Phoenix was actually his son Franklin Richards.

    The then future Wolverine attempted to kill Phoenix. Then the rest of the future X-Men discovered that future Wolverine was actually a Sentinel from the future. By the time the FF and present X-Men got there many Wolverines and Sentinels had been destroyed had killed Rouge and had taken Reed into the future. Captain America was dying and Jean unmasked him revealing he was actually Scott. He told the group that himself, Jean and the original Cap had been stripped away of their powers so he took over a s Captain America after Steve Rogers aged 100 years, then he died. In the future Iceman was captured by the Sentinels and Reed escaped his cell when he followed a trail of fire. Thinking it to be Johnny he then saw the future Fantastic Four: Invisible Woman, Iron Thing, Namor and Firestar.

    The future X-Men, or what was left of them told the present X-Men and FF that the reason that they needed to stop it all was because the new ruler was getting rid of mutants. That new ruler was Sue. Future Sue convinced present Reed to fix a machine that would strip away people of their powers just like Cyclops´s Reed gave to her request while the present X-Men, present FF, and future X-men went into the future to find out what was going on. Ben and Firestar found out that both of them in the future were in love and Iceman found himself being killed by Namor. Sue met Nihil again then just to find out that he was actually future Reed. Future Phoenix turned everyone in to his mother. Reed then took away future Sue´s powers since clearly she had gone crazy because of her brother´s death. Everyone let the future hero´s free from a prison in the N-Zone Sue had made to maintain the super powered heroes. The present FF and X-men went back to their own time and Sue and Reed left to be alone. Sue told Reed she was worried that would eventually happen to them, but Reed assured that it would not. Sue left and then from a drawer Reed took out a ring, sure that future would not happen.

    Ultimatum

    It's Tuesday 4:12 PM. Reed Richards is about to propose to Sue. Ben Grim is working out with H.E.R.B.I.E watching over. Johnny Storm and his father are having a heated argument on Johnny's intelligence.

    It's Tuesday 4:13 PM. New York is underwater.

    At the Baxter Building, Mr. Fantastic and the Invisible Girl reach the roof top. A whale enters the room with the Thing, Johnny and Franklin Storm are underwater. At their rooftop of the Baxter, Sue uses all her power to keep the water away from New York and then she collapses. The Thing arrives and Reed leaves Sue with him.

    At 4:21 PM, Reed is already on an FF submarine and meets with Namor. Reed accuses him of the event while Namor excuses himself saying it was not him.

    It's 12:31 AM in Latveria and all except Dr. Doom are frozen solid.

    Then, telepathically Xavier tells all superheroes, that he knows who is responsible for this events, and that all of them have to unite against this threat, to stop Magneto.

    Back in the Baxter, Ben takes over and is now alone. The Baxter Building is turning invisible and Sue isn't stable. No scientist knows how to help her, and the one scientist who might have a chance of saving her is dead, Franklin Storm is dead.

    The Thing has gone out of resources and Sue´s mother then arrives. She suggest that the person who could help would be Dr. Molveick a.k.a. The Mole Man. With the help of the students from Baxter B help Ben find Mole Man and save him from fire mole men. As a result he helps the Thing figures out that the way to help Sue is to internally help her. Using Pym particles the Thing and the Mole man are going to go inside the Invisible Girl.

    The Thing and the Mole Man Successfully rescue Sue from herself by going inside. Inside they fix the problem and then after that Sue recovers completely. During the journey inside Sue Ben and Dr. Molevick found some strange antibodies that attacked them. Sue explained that these weren't antibodies, they were actually some form of robotic organisms implanted inside her by Reed without any of the Fantastic Four's knowledge. Because of this Sue realized that with he GPS system imbedded in them she could locate Johnny. So she gets to work. This storyline is most reminiscent of the 1966 Sci-Fi classic entitled Fantastic Voyage. That film shrunk a submarine and sent of team inside of an important diplomat to save his life.

    Sue realizes that they need a huge antenna to locate Reed and Johnny around the world, so Sue's mother explains how advanced Atlantean technology could become useful here. Sue, Dr. Molevick, Mrs. Richards and Ben head into deep waters to get this technology. On their dive they discover some other Atlantean fugitives that were locked up. After being captured, since they couldn't surpass the power of these people, Sue's mother makes a deal that gets them out of the mess. They leave from Atlantis and create the necessary equipment to locate the nanobots implanted in Johnny and Reed. A mapping system appears showing the location of the rest of the team but it shows they aren't necessarily on earth. On a different earth Reed is with Dr. Doom and Princess Zarda while Johnny is in a dimension where Dormammu, a demon lord, rules.

    Hulk and Spider-Man see Doctor Strange's Sanctum Sanctorum blowing up. Magical beings start bursting out of control and Hulk and Spidey try and stop it. Dormammu, powered by the Human Torch, appears and kills everything in his path, apparently including Spider-Man.

    Doctor Strange tries fighting off this monster but fails and get's killed in the process.

    Now that Sue and Ben have located Johnny they go in to get him back. The Invisible Woman uses a forcefield over Dormammu's head cutting the oxygen from the monster and Johnny gives it all it's got to cut his breathing off. The effect brings him to turn back into a little man re-unites the Storms and 3/4 of the FF.

    Reed finally comes back with Nick Fury and he along Doctor Doom and Princess Zardra take the fight to Magneto. The X-Men take the battle to Magneto and what's left of his brotherhood. Nick Fury, with the help of Jean, shows Magneto how mutants are just a man-made accident. After this Cyclops kills Magneto.

    Post-Ultimatum

    After the events of Ultimatum, Sue and Reed break up and the Fantastic Four are officially disbanded. Reed goes back to his parent's house, Sue takes over the Baxter Building for herself, burying herself in work, Ben joins the military and Johnny starts to travel.

    After some time Johnny got tired of traveling around so instead of going to the Baxter he arrived on Peter Parker's doorstep. After talking to his sister he decides to live with the Parkers, Iceman and Gwen Stacy all while going to high school.

    Ultimate Enemy

    Reed Richards, now ex-leader of the world famous Fantastic Four, now lives with his parents and his father is not happy about that especially since he has no job to contribute to the family. After being brutally woken up by his father, Reed's computer detects an energy flux, and then somebody knocks at the door, even though Reed warns his father not to open the door, he opens it, and a purple, cloud-like explosion happens inside the Richard's home.

    Sue uses her invisible powers to hide herself from the rest of the world while taking a walk in the city. She feels better when not having to be a world spectacle to the rest of the world. Once back in the Baxter she wonders all alone the place only to find Ben Grim interrupts her loneliness. After a brief catching up between the two, Sue examines Ben's recent shedding of rocks and Ben drops a bomb on her by telling her that he loves her. Now that her relationship with Reed is over he took the opportunity to tell her that. One of the Thing's rocks falls and leaves Sue by saying: \"something to remember me by\". Then a huge, purple, cloud/octopus-like creatures overtakes the Baxter building and Ben even when trying to stop it he is thrown to a street.

    Other Variants

    Earth-2149

    \"The
    The Zombie Four of Earth-2149

    *In the Zombie Universe the Fantastic Four as most other heroes are transformed into zombies. They also crosses over to Earth-1610*

    In an alternate universe Reed found himself but when he teleported there he found the Marvel Zombies. With the help of Magneto the Four escaped that reality and captured the Frightful Four. Sue's mother came into the picture asking for help locating Atlantis having the Fantastic Four face Namor. Namor fell for Sue, but she fought him off. Reed using a new machine recreated superheroes to fight him but that didn't work either. In the end Namor only asked for a kiss from Susan as victorious and headed back to Atlantis. Reed went back in time to stop the N-Zone accident creating an alternate universe where Thor is president and Skrulls help humanity.

    Earth-33

    Here the Fantastic Four never got their powers.

    Earth-717

    In this reality the Fantastic Four were the Russian superhuman fighting group known as the Ultimate Federalist Freedom Fighters. The team consisted of Rudion Richards (Mr. Fantastic) who was able to create discontinuities in his body and project limbs or parts of his body in great distances, Piotr Rasputin (Ben Grimms' replacement ) has taken on the organic steel of his Earth-616 counterpart but as a hindrance his mind slowly withers away as time goes on. Illyana, Colossus' sister has taken Sue Storms place as the Invisible Woman with her powers of camouflage. Natasha Romanov's electro-magnetic field has increased a thousand-fold who can fly by reversing the polarity of her body and fire lethal doses of her own energy her codename is the Widow Maker who is the Human Torch's replacement. The team is put to an end as Illyana dies of bullet wounds in a fight with the Avengers afterwards Rudion vows to cure themselves before they take over Russia after killing their Premier.

    Earth-721

    \"Reed
    Reed Richards of Earth-721

    In this reality only Reed Richards and Ben Grimm were aboard the spaceship where the original four was exposed to cosmic rays, which resulted in Reed Richards becoming Thing and Ben Grimm became Mr. Fantastic. Furthermore Johnny Storm was believed to have died in Vietnam, but he became Gaard and later Vangaard. Sue Storm married Ben Grimm.

    Earth-952

    The Fantastic Four of Earth-952 were Heralds of Galactus.

    Earth-982

    In the MC2 reality the Fantastic Four is replaced by the Fantastic Five. The team is lead by the Human Torch, and its members are Lyja, (Ms. Fantastic), the Thing, with parts of his body replaced with cybernetic prosthetic, Franklin Richards, taking the name Psi-Lord, and Reed's robot named Big Brain, which he control in The Negative Zone.

    Earth-1987

    The Fantastic Four of Earth-1987 consisted of Mr. Fantastic, Invisible Girl, Human Torch and She-Hulk.

    Earth-7712

    In this reality the Fantastic Four were the original four, but with different powers and codenames: Big Brain (Reed Richards) exists as a disembodied brain with vast mental powers, Dragonfly (Ben Grimm) has wings on his back that allow him to fly, Mandroid (Johnny Storm) has organic metal flesh that grants him great strength, and Ultra-Woman (Sue Storm) has super elasticity.

    House of M's F4 Earth-58163

    \"No

    In the House of M reality, Reed Richards, Susan Storm, and John Jameson died on the experimental space ship crashed back on Earth. Only Ben Grimm survived and mutated into \"the It\", but his intelligence was greatly reduced.

    Doctor Doom took him and formed the Fanatic Four with him as team leader, with powers similar to Mercury, Kristoff Vernard as the Inhuman Torch, and Valeria Von Doom as the Invincible Woman.

    Earth-311

    In the year 1602, The team is called the Four of the Fantastic. They are composed of Sir Richard Reed, Susan Storm, John Storm and Captain Benjamin Grimm. The galleon ship encountered a magical rift similar to that of the Bermuda Triangle, which gave them their individual powers.

    Earth-187319

    In this reality, the team is called the Four Fantastic, that is lead by Victor Von Doom, with members Susan Storm, Johnny Storm, and Bruce Banner. Their enemy is Reed Richards.

    Earth-9031

    All four of the Fantastic Four gains Human Torch's powers.

    Earth-9032

    All four of the Fantastic Four gains Mr. Fantastic's powers.

    Earth-9033

    All four of the Fantastic Four gains The Thing's powers.

    Earth-9034

    All four of the Fantastic Four gains Invisible Woman's powers.

    Other Media

    Animation

    \"The
    The 1967 series
    • 1967: Produced by Hanna-Barbara Productions, this is the first Fantastic Four animated series and portrayed characters that were designed by Alex Toth. The series was twenty episodes long and ran on ABC from 1967 to 1970 until it was canceled.
    • 1978: Produced by DePatie-Freleng Enterprises and Marvel Comics Animation, this is the second Fantastic Four animated series. In this show, the Human Torch was replaced with the robot H.E.R.B.I.E. because Torch was tied up with movie rights for a film that was never made. This series will be released on Region 2 DVD in 2008 in the UK.
    \"The
    The 90s series
    \"Avengers:
    Avengers: EMH
    • 1994: The third Fantastic Four animated series, it began its run on September 4, 1994 and ended February 24, 1996. The series consisted of two seasons with thirteen episodes each.
    • 2006: Titled, Fantastic Four: World's Greatest Heroes, this series was based not only on the comic but the film as well, was produced by Moonscoop and aired on Cartoon Network. The DVD's were released in volumes with four episodes each and are distributed by Warner Bros. Television Distribution (outside USA) and 20th Century Fox (USA).
    • 2009: The Fantastic Four guest-starred in The Super Hero Squad Show.
    • 2011: The Fantastic Four appeared as recurring guest stars in The Avengers: Earth's Mightiest Heroes. They were featured more prominently in the second season, where it was revealed that Sue had been replaced by a Skrull impostor as part of the Secret Invasion adaptation.
    • 2013: The FF guest-starred in the Hulk and the Agents of S.M.A.S.H. cartoon.

    Satire

    In the animated show \"The Venture Brothers\", there is super powered family know as the \"The Impossibles\". They are direct parody of the Fantastic Four.

    • Richard \"Mr. Impossible\" Impossible- can stretch and is negligent and abusive to his family.
    • Sally \"The Visible Woman\" Impossible- has to concentrate to not turn her skin invisible (but her muscle tissue is still visible).
    • Rocket Impossible- Their son. He does not seem to have manifested powers. May not be Mr. Impossible's son.
    • Ned- Sally's mentally challenged cousin. He has a very thick callus all over his skin, Making him a little tougher and harder to hurt. He also is stronger than an average person. But he is not a powerful or tough as The Thing.
    • Cody- Sally's brother. Has the ability to burst into flames however he can't control it and it is VERY painful.

    Films

    The Fantastic Four (1994)

    Unreleased, this was a low-budget film finished in 1994. It was simply made so that the property could be copyrighted, though the directors (Roger Corman/Bernd Eichinger) and creators were left unaware of this fact, and so it was not intended to be released. The film depicted the origin of the Fantastic Four and their first battles with Dr. Doom and Mole Man.

    \"The
    The Fantastic Four (1994)

    In 1994, a film about the Fantastic Four was produced in order that the studio, Constantin Film, could secure the rights to the group. Unknown to the director, crew and actors of the film, this movie was never intended to be released. The film starts with Reed and Victor Von Doom in college. An experiment goes goes wrong and Victor is allegedly killed. Reed's friend introduces him to her children Sue (a teenager) and Johnny (a preteen). Reed grieves for his friend but finishes school and years starts a space expedition (one that is to be piloted by his roommate Ben Grim) and they decide to bring, a now older, Sue and Johnny along (for shits and giggles).

    Little do they know that Victor Von Doom did not die the day of that horrible experiment, and to that day had been planning his revenge on the man he assumes is responsible for his experiment not working (none other than Reed Richards of course). He sabotages their ship so it flies right on course with some cosmic rays (an energy source that has unknown strength) the ship seems to be destroyed in space. Doom laughs a terrible laugh and marvels in his years of planning coming to fruition.

    The group survives the cosmic ray exposure and they crash land back on earth even though their ship blew up and it shouldn't be possible. Once they find they are all alive, they also discover they all have amazing powers. Reed Richards is elastic, Sue can hide from sight, Johnny is the Human Torch, and Ben has become the Thing, with a large gravel-like exoskeleton and super strength.

    All you need to know is that Doom finds out the Fantastic Four are still alive and lures them to his lair. They fight. Doom's device almost goes off. They stop it and save the day. The End.

    Fantastic Four (2005)

    \"The
    The team in the Tim Story films

    Released in the US on July 8, 2005 it was the third superhero film of the year ( Elektra and Batman Begins being the first and second respectively). The film was directed by Tim Story and released by 20th Century Fox, and though it was the first Fantastic Four film to be released it was the second to be filmed. This film told of the forming of the Fantastic Four and how they got their abilities. It was also a tale of their change in mindset when they slowly began to accept that it was their duty to be heroes, they were not destined to be normal, even Ben came to terms with this. The film also depicted the origins of the team's nemesis Dr. Doom and showed the characters developing their powers, pushing them to their limits and learning how they work. In the end, when working as a team they find themselves able to defeat Dr. Doom, his \"dead\" body is then shipped off to Latveria.

    Among the deleted scenes included on the December 2005 DVD release:

    • Three slightly modified scenes concerning the attack on Doctor Doom - one in which Reed uses his body as a funnel to direct a stream of water at Doom, one in which he doesn't, and one in which Doctor Doom's line \"Is that the best you can do, a little heat?\" is cut short, having the \"..a little heat?\" portion removed.
    • Two versions of a scene with Jessica Alba and Ioan Gruffudd. The original features the pair in the planetarium, where they communicate their feelings for each other without an argumentative tone. This ends in a kiss. The second version, included in the DVD release as a bonus feature, features the two outside, looking toward the Statue Of Liberty. Similar lines are used, but it ends with Alba's Susan turning invisible before Gruffudd's Reed can kiss her. A joke was used during the line \"a stronger man\": Instead of Reed giving himself a square jaw (as he does in the theatrical release), he makes his skin look like the X-Men's Wolverine. Actor Gruffudd breaks the fourth wall and looks directly at the camera as he does this.
    • There is also a scene where Reed and Sue are in a storage room of the Baxter Building where we see on one of the shelves is a robot that is supposed to be H.E.R.B.I.E. from the 1970s Fantastic Four cartoon.

    The novelization of the film contained a number of scenes not in the final cut, including a small number of scenes that developed the character of Alicia Masters.

    Fantastic Four: Rise of the Silver Surfer (2007)

    \"Rise
    Rise of the Silver Surfer

    A sequel to the Fantastic Four film of 2005, this film was also directed by Tim Story. Rated PG-13, this film was released in North America on June 15, 2007 and some of its stars include:

    • Ioan Gruffudd (Mr. Fantastic)
    • Jessica Alba (Invisible Woman)
    • Chris Evans (Human Torch)
    • Michael Chiklis (Thing)
    • Julian McMahon (Doctor Doom)
    • Kerry Washington (Alicia Masters)
    • Beau Garrett ( Frankie Raye)
    • Doug Jones (Silver Surfer)
    • Laurence Fishburne (Surfer's Voice)
    • Stan Lee (Stan Lee)

    This film starts off quite some time after the last movie ended and focuses on the upcoming marriage between Sue and Reed and their relationship/future as well as the threat the Silver Surfer poses to the world. Once again the team finds themselves needing to work together as the Earth will be devoured if they do not, forcing them to do things like working with the resurrected Doom. Eventually they try and capture the Surfer but when they succeed they realize it was the wrong thing to do and Sue frees the alien, after creating a bond with him. She learns a lot about him and eventually it is this relationship that causes him to help the Fantastic Four by driving away Galactus, turning against his master.

    The Fantastic Four (2015)

    \"The
    The new FF

    After the disappointing reviews and box office returns for Rise of the Silver Surfer, the franchise was put on hiatus for a number years until a new film was greenlit for a 2015 release. The new movie was a complete reboot set in a new continuity with an entirely new cast, and presented a more serious take on the team. The film was directed by Josh Trank.

    The cast included:

    • Miles Teller (Mr. Fantastic)
    • Kate Mara (Invisible Woman)
    • Michael B. Jordan (Human Torch)
    • Jamie Bell (Thing)
    • Toby Kebell (Doctor Doom)
    • Reg E. Cathey (Franklin Storm)
    • Tim Blake Nelson (Harvey Elder)

    The film features younger versions of the heroes, primarily inspired by the Ultimate Fantastic Four comics.

    The movie received highly negative reviews from critics and flopped at the box office, killing the franchise once again.

    Marvel's Fantastic Four (TBA)

    \"Marvel's
    Marvel's Fantastic Four

    Following Disney's purchase of 20th Century Fox in 2019, the Fantastic Four's film rights returned to Marvel Studios. In December 2020, it was announced that a new Fantastic Four movie was in the works as part of the Marvel Cinematic Universe. The film will be directed by Jon Watts (Spider-Man: Homecoming and Spider-Man: Far From Home).

    Video Games

    \"The
    The FF video game
    \"The
    The FF in Ultimate Alliance 3
    • The FF made their video game debut with Questprobe #3: The Fantastic Four.
    • In 1997, the Fantastic Four received their own game for the Sony PlayStation.
    • The Thing and the Human Torch were featured as playable characters in the fighting game Marvel Nemesis: Rise of the Imperfects.
    • All four members of the team were featured in Marvel Ultimate Alliance, as well as its sequel, Marvel Ultimate Alliance 2.
    • A video game based on the 2005 live-action movie was made. A sequel based on Rise of the Silver Surfer was released two years later.
    • The Fantastic Four appeared in Lego Marvel Super Heroes.
    • All four members of the team appeared in Marvel Heroes. However, in 2018, they were removed from the game due to Marvel's embargo on all Fantastic Four media appearances.
    • The members of the Fantastic Four appear in Marvel Ultimate Alliance 3: The Black Order as the subject of the Fantastic Four: Shadow of Doom DLC pack.

    Merchandise

    \"Marvel
    Marvel Legends
    • All four members of the team were featured in Mego's Worlds Greatest Super Heroes figure line in the 1970s.
    • All four members of the team were featured in ToyBiz's line for the 1994 animated series.
    • ToyBiz produced a number of Fantastic Four figures throughout the years.
    • All four members of the team (as well as other characters like Doctor Doom and the Silver Surfer) were featured in ToyBiz's Marvel Legends line.
    • ToyBiz produced a line of 6-inch figures for the 2005 movie. Figures in other scales were also released.
    • ToyBiz released a line of 6-inch figures dubbed Fantastic Four Classics, which was conceived as a sister line of sorts to Marvel Legends.
    • The Fantastic Four were featured in Diamond Select's Minimates line.
    • After gaining the Marvel license from ToyBiz, Hasbro did a Fantastic Four-themed Marvel Legends wave, which featured Ronan the Accuser as the Build-a-Figure.
    • Hasbro released a line of figures based on Rise of the Silver Surfer.
    • The Human Torch and the Silver Surfer were featured in Hasbro's Marvel Legends Icons spin-off line.
    • Companies like Bowen Designs, Sideshow Collectibles, Eaglemoss Publications, Dark Horse Collectibles and Diamond Select released statues, figurines and busts depicting the Fantastic Four characters.
    • Hasbro released a special line of Fantastic Four Marvel Legends figures exclusively at Walgreens.

    Novels

    Fantastic Four

    \"No

    Scientific genius Dr. Reed Richards's lifelong dream is close to being realized--a trip to space and to the center of a cosmic storm to unlock the secrets of the human genetic code. Financed by rival-turned-billionaire-industrialist Victor Von Doom, Reed's crew for the mission includes his best friend, astronaut Ben Grimm; Susan Storm, Von Doom's director of genetic research and Reed's ex-girlfriend; and Sue's hot-headed younger brother, pilot Johnny Storm. With benefactor Von Doom in tow, the four set off for the exploration of a lifetime. But something goes terribly wrong, as cosmic radiation irrevocably alters their DNA...and their future.

    Back on Earth, the effects of the exposure are quickly revealed: Reed gains the ability to stretch and contort his body into any shape he can imagine...Sue is able to render herself invisible and to create and project powerful force fields...Johnny can now engulf his body in flames and take flight at will... and Ben, whose freakish transmutation is the most shocking, becomes an orange-colored, rock-like, superhumanly strong creature. Together, they turn tragedy into triumph and catastrophe into coalition, and must use their unique and formidable powers against Victor Von Doom--who has also not escaped the effects of the cosmic storm unscathed....

    Adventurers. Super Heroes. Celebrities. To the world, they are the Fantastic Four. To each other, they are a family.

    • Written By: Peter David
    • Publisher: Pocket Star (May, 2005)
    • ISBN-10: 1416509801
    • ISBN-13: 978-1416509806

    Fantastic Four: Countdown to Chaos

    \"No

    World chaos--courtesy of the Mad Thinker! The Mad Thinker, with the aid of the Red Ghost and his Super Apes, has hatched a worldwide conspiracy. He has placed lifelike duplicates of hundreds of key people throughout the world--including Reed Richards of the Fantastic Four! The remaining members of the FF must work frantically to uncover the Thinker's plan before his duplicates are able to wreak havoc across the globe...

    • Written By: Pierce Askegren
    • Publisher: Berkley (June, 1998)
    • ISBN-10: 0425163733
    • ISBN-13: 978-0425163733

    Fantastic Four: Doomgate

    \"No

    Deep beneath the Empire State University library, a frustrated student finds the lost legacy of ESU's most infamous alumnus. Victor Von Doom's lab notebooks -- instructions for how to build a machine that can pierce the veil between Earth and the netherworld -- have fallen into the wrong hands. A gate is opened where none should exist, and someone -- or something -- has invaded our world.

    The Fantastic Four would be the team to face such a threat...if they could reach one another. Force shields erected around Manhattan by the over-anxious agents of S.H.I.E.L.D. have trapped Reed Richards, Sue Richards, Ben Grimm, and Johnny Storm. All are in danger of succumbing to the pernicious effects of the energies emanating from the dark dimension, forcing the F.F. to seek aid from their greatest enemy, whose nefariously brilliant mind first conceived the Doomgate.

    • Written By: Jeffrey Lang
    • Publisher: Pocket Star (November, 2008)
    • ISBN-10: 1416540253
    • ISBN-13: 978-1416540250

    Fantastic Four: Redemption of the Silver Surfer

    \"No

    In an exciting Marvel adventure, the Fantastic Four join forces with the Silver Surfer in order to help Blastaar fight the evil Prodigion, the destroyer of worlds, who is threatening the existence of the Negative Zone.

    • Written By: Michael Jan Friedman
    • Publisher: Berkley (April, 1998)
    • ISBN-10: 0425164896
    • ISBN-13: 978-0425164891

    Fantastic Four: Rise of the Silver Surfer

    \"No

    Adventurers. Celebrities. Family. They are the Fantastic Four, the world's greatest Super Hero team: scientific genius Reed Richards, with the ability to stretch and contort his body into any shape imaginable; the beautiful Susan Storm, who can render herself invisible and create and project powerful force fields; Sue's brother, Johnny Storm, who can engulf his body in flames and take flight at will; and Ben Grimm, whose freakish transmutation turns him into an orange-colored, rock-like, superhumanly strong creature.

    Now the Fantastic Four meet their greatest challenge yet, as an enigmatic, intergalactic herald comes to Earth -- to prepare it for destruction. As the mysterious alien being races around the globe, wreaking havoc and leaving utter chaos in its wake, Reed, Sue, Johnny, and Ben must find a way to confront this devastating force...even as a new threat looms in the surprising return of their mortal enemy, Victor Von Doom, who harbors his own deadly machinations for them all....

    • Written By: Daniel Joseph
    • Publisher: Pocket Star (April, 2007)
    • ISBN-10: 1416548092
    • ISBN-13: 978-1416548096

    Fantastic Four: The Baxter Effect

    \"No

    They rocketed into space as four ordinary human beings.

    They came back as heroes. The Fantastic Four -- the Thing, the Invisible Woman, the Human Torch, and Mr. Fantastic. Together they have used their powers for the betterment of mankind.

    For years, the world's top scientists have dreamed of creating a quantum computer, a machine that would be infinitely more powerful than any based on the transistor. Now Reed Richards -- Mr. Fantastic -- has achieved that dream. He has birthed a device capable of creating the unbreakable cipher, predicting the weather, performing calculations, and retrieving knowledge at heretofore unimagined speeds.

    He has also, unwittingly, created something else.

    A machine that one of the Fantastic Four's oldest and most powerful adversaries will use against them, will twist to his own destructive, murderous purposes, one that will turn friend against friend, husband against wife, and force Ben Grimm -- the Thing -- to confront a nightmarish dilemma.

    A choice between humanity's salvation -- and the death of the three people he loves most in all the world....

    • Written By: Dave Stern
    • Publisher: Pocket Star (December, 2006)
    • ISBN-10: 1416510664
    • ISBN-13: 978-1416510666

    Fantastic Four: To Free Atlantis

    \"No

    Chaos in Atlantis and Dr. Doom's behind it!

    Dr. Doom is back, and he's targeting Prince Namor the Sub-Mariner, ruler of the undersea kingdom of Atlantis, for death. In a conspiracy with Namor's scheming cousin Prince Byrrah. Doom has orchestrated a palace coup... but only Doom knows that his deadly plan will lead to Atlantis' destruction.

    Poisoned and near death, the Sub-Mariner escapes to the surface and is rescued by the Fantastic Four, setting off a titanic struggle at the ocean's depths. As Namor fights to regain his throne and the FF come face-to-face with their deadliest enemy, the terrible forces that Doom has unleashed threaten them all.

    It will take the combined efforts of Mr. Fantastic, the Invisible Woman, the Human Torch, and the Thing to overcome Dr. Doom's monstrous plans and save Atlantis from certain destruction.

    An entirely new epic in the tradition of th FF's greatest adventures!

    • Written By: Nancy A. Collins
    • Publisher: Berkley (December, 1995)
    • ISBN-10: 1572970545
    • ISBN-13: 978-1572970540

    Fantastic Four: War Zone

    \"No

    They are the Earth's most revered protectors: Reed Richards, Susan Richards, Ben Grimm, and Johnny Storm-- the Fantastic Four. Celebrities around the globe and defenders of mankind, these extraordinary individuals have sworn to confront the perils and challenges facing the modern world and each other, always with unyielding courage, unerring wisdom, and an unshakable familial bond.

    But their darkest hour may yet be at hand, as humanity's most frightening threat comes violently from beyond the stars... from the depths of the Negative Zone, a universe in a dimension parallel to out own-- one first discovered years ago by Reed Richards himself. And it is this terrifying and deadly menace that will ultimately test the measure and mettle of four heroes sworn to protect the human race at any cost-- even their own lives...

    • Written By: Greg Cox
    • Publisher: Pocket Star (July, 2005)
    • ISBN-10: 1416509658
    • ISBN-13: 978-1416509653

    Fantastic Four: What Lies Beneath

    \"No

    Meet the Fantastic Four: Reed Richards ('Mr. Fantastic') - leader of the group. A gifted idealist, he can stretch, expand, or compress into any contiguous shape - amazing elasticity matched only by his genius. Sue Storm ('The Invisible Woman') - Wife of Reed Richards and older sister of Johnny Storm. She can render herself and other objects invisible, and is able to project powerful invisible force fields. Johnny Storm ('The Human Torch') - Brother of Sue Storm. The Human Torch can create and engulf himself in varying degrees of plasma fire, can also emit fiery bolts, and has the power of flight. Ben Grimm ('The Thing') - best friend of Reed Richards. A wise-cracking NASA pilot, The Thing is a creature of superhuman strength, endurance, and durability. After a freak accident aboard a test flight blasted them with radiation, permanently altering their genetic structures, four adventurers use their incredible powers for the good of mankind and to protect the world from the forces of evil...despite their real problems, worries, and arguments - just like any other family.

    • Written By: Peter David
    • Publisher: Pocket Star (June, 2007)
    • ISBN-10: 1416510702
    • ISBN-13: 978-1416510703

    Spider-Man: Doom's Way Book Three - Wreckage

    \"No

    Dr. Doom has broken Dr. Octopus out of prison as the final mover in the latest plan for world conquest. Using Ock's expertise to help him draw on the arcane energies of the Negative Zone, Doom has found a way to wield absolute power. Now the only thing standing between Doom and his goals are Spider-Man and the Fantastic Four--and one of the F.F. is already Doom's prisoner!

    • Written By: Eric Fein & Pierce Askegren
    • Publisher: Boulevard Books (November, 1997)
    • ISBN-10: 1572973110
    • ISBN-13: 978-1572973114
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-5558/","id":5558,"name":"The Fantastic Four!","issue_number":"1"},"id":3804,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8113336-fantastic_four_vol_6_1_dell%27otto_exclusive_variant_textless.jpg","image_tags":"All Images"},"name":"Fantastic Four","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/fantastic-four/4060-3804/"},{"aliases":"Earth's Mightiest Heroes\r\nThe Mighty Avengers\r\nDie Rächer\r\nDie ruhmreichen Rächer\r\nDie mächtigsten Helden der Welt","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-3806/","count_of_isssue_appearances":0,"count_of_team_members":244,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-16 14:41:44","deck":"The Avengers are Earth's mightiest heroes and foremost super-team... \"There came a day, a day unlike any other, when Earth's mightiest heroes found themselves united against a common threat. On that day, the Avengers were born - to fight the foes no single super hero could withstand! Heed the call, then - for now, the Avengers Assemble!\"","description":"

    Current Roster

    • Captain America
    • Iron Man
    • Thor
    • Captain Marvel (Danvers)
    • Ghost Rider (Reyes)
    • Echo (as Phoenix Host)
    • Starbrand (Brandy)
    • Blade
    • Namor
    • Valkyrie (Foster)
    • Nighthawk

    Origin

    \"The
    The Original Avengers

    The Assembly of Earth’s Mightiest Heroes was centered around Loki, the Asgardian God of mischief, whom used an illusion to trick The Hulk into destroying a railroad track in the hopes of luring his half-brother Thor to the scene where Loki could then use his power against Thor while he would be busy fighting the Hulk. Hearing of the Hulk’s rampage, Rick Jones sent a radio message to The Fantastic Four informing them of the problem, seeking to enlist their aid in stopping the Hulk. In a twist of fate, Loki diverted the message to Thor, whom he hoped would then battle the Hulk. Unbeknownst to Loki, and unintended, too, the message was also picked up by Iron Man, Ant-Man and The Wasp. These heroes, as well as Thor, all responded to the call and came together to stop the menace of The Hulk. Upon engaging the Hulk, they soon discovered Loki’s trickery and teamed up with Hulk to defeat the God of Mischief. Ant-Man mentioned to the other heroes that the five of them worked well together and suggested that they should combine to form a team to fight against threats that no lone hero could deal with. The Wasp proposes the name “Avengers” and thus Earth’s Mightiest Heroes were formed. The original members are known as the \"founding members\" based on an Avengers Charter, to manage the good name of the team. As a result, their wishes regarding the direction of the team are given additional weight and deference.

    Creation

    The Avengers were created by legendary comic creators Stan Lee and Jack Kirby and made their first appearance in The Avengers #1 (Sep. 1963) in the story “The Coming of the Avengers”.

    Team Evolution

    Founding Members

    The founding members of Avengers, apart from Hulk, were already recognized and established as superheroes before the team formed. The public opinion of the Hulk at this time was very uncertain. Some thought he was a misunderstood creature who just wanted to be left alone. However mainly because of the efforts of General “Thunderbolt” Ross, the majority of public viewed The Hulk as a rampaging monster. Almost from the beginning the Avengers team roster has changed steadily, with the Hulk departing during their second adventure and Captain America joining soon after. The rotating roster has become a hallmark of the team although one theme has been constant - The Avengers fight the foes that no single superhero could defeat - hence their famous cry of \"Avengers Assemble!\"

    The Avengers have always accepted a diverse range of members, regardless of their backgrounds, as long as they are ready to fight the good fight. To that end, the team has featured humans, robots, mutants, Gods, aliens, supernatural beings and even former villains. Despite the diverse nature of the team, which often results in squabbling, the Avengers have always managed to unite into a stable unit to combat the deadliest threats in the universe.

    Leadership of the group has varied over the years but has almost always fallen back to the hands of Captain America. Founding members Hank Pym, Iron Man, Thor and Wasp have also served extensively as leaders to different incarnations of the group. Other members have also taken up the role of leadership, to varying degrees of success, but the most prominent ones would be Hawkeye, Monica Rambeau, Ms. Marvel, Scarlet Witch, U.S.Agent and Vision.

    Major Story Arcs

    During their first team meeting there was immediate tension between the Avengers as Thor and Hulk exchanged words. Soon enough a body snatching Space Phantom arrived with plans to destroy the Avengers to clear the path for an alien invasion. The Space Phantom switched bodies with each Avenger and planted seeds of distrust and hatred amongst them. It was clear that the other Avengers never truly trusted the Hulk and in fact admitted to each other they had him join their ranks to keep an eye on him. The Space Phantom managed to have the Hulk realize this distrust in the others and he left the team.

    Soon afterwards The Hulk was befriended by Namor the Sub-Mariner and the two antiheroes formed an uneasy alliance to battle their common foe - humans. The Avengers, who were searching for the Hulk to prevent him from harming others, were tipped off by the Teen Brigade of his location. A confrontation took place between the Avengers, Namor and Hulk. But in the middle of the battle Hulk changed to Bruce Banner and left Namor to fight the Avengers alone. Clearly outgunned, Namor escaped.

    Captain America Joins The Avengers

    \"Captain
    Captain America Lives Again

    After their previous battle Namor vows revenge on The Avengers. While swimming the seas the Sub-Mariner comes across an Eskimo tribe worshipping a figure encased in ice. Filled with wrath at the air breathers, the Prince of Atlantis hurls the block of ice into the ocean. The ice thaws as it heads towards warmer waters and the body inside is eventually discovered by The Avengers who are in a submarine searching for Namor. The heroes bring the floating body on board and realise it is Captain America, who has been in suspended animation since the Second World War. Thus the Living Legend of World War II is reborn! Initially Cap attacks The Avengers mistaking them as threats but the issue is quickly settled and The Avengers take Captain America back to New York where he helps them defeat Namor and the alien Vuk. After their first battle together, Earth’s Mightiest Heroes offer membership to Captain America who gladly accepts. Cap would go on to become an embodiment of The Avengers and despite his later joining, given status as founding member.

    The team's early adventures saw them battle Mole Man, Red Ghost, Kang the Conqueror, Count Nefaria and cross paths with their former ally the Hulk multiple times.

    Masters of Evil

    Baron Heinrich Zemo finds out that Captain America is alive and has joined the ranks of the Avengers. Angered that his most hated foe is still alive, he forms a team of villains of his own. The Black Knight, Melter and Radioactive Man work together in Zemo's Masters of Evil. When the Avengers defeat the villains, Baron Zemo is joined by the Asgardian gods in exile the Executioner and Enchantress and together with them free both the Black Knight and Melter to rejoin their ranks.

    Their second attempt at defeating the Avengers goes no better, with the Enchantress seducing Thor and convincing him his fellow Avengers aren't what they seem in a bid to get him to defeat them and return to her arms. Unfortunately for the love-lorn Enchantress, Thor manages to shake off her influence and the Masters retreat to Zemo's base in the Amazon.

    The Enchantress returns to New York to find a perfect candidate to for Zemo's Ion-powered machine. She found one in Simon Williams who was facing charges for embezzlement and was bitter at the man responsible for this: Tony Stark. Zemo transferred Simon into a living Ion-powered Wonder Man and sent him to infiltrate the Avengers. Having gained the Avengers trust and being welcomed onto the team, Wonder Man betrays them to Zemo. However, Wonder Man begins to feel guilty for his betrayal and decides to turn the tables on Zemo and his allies, but ultimately wound up apparently dying in the Avengers arms due to his sacrifice.

    After a disastrous skirmish with the Avengers due to Immortus, Baron Zemo kidnaps Rick Jones and Captain America goes to South America to save him. Meanwhile back at the home-front the rest of the Avengers again confront the Masters of Evil and again defeat and subdue Black Knight and Melter, as Enchantress and Executioner escape. Elsewhere, Captain America finally confronts Baron Zemo in what would be their final confrontation, as during battle, an avalanche Zemo caused crushes the Nazi and kills him.

    Second Genesis

    \"Second
    Second Generation

    After the Wasp was almost killed in action and with the threat of the Masters of Evil halted, Giant Man and Wasp opted to retire from the Avengers. Thor, who was busy in Asgard, and Iron Man also withdrew from the team to instead focus on their personal lives. Captain America and Rick Jones remained behind as the team looked for replacement members. After inducting the adventurer Hawkeye who sought membership, the team tried to recruit the Sub-Mariner to no avail. After placing a classified ad seeking replacement Avengers, the former villains Quicksilver and the Scarlet Witch replied and were welcomed onto the team. The new Avengers announced themselves to the public as Iron Man wished them luck.

    The team were quick to recognize they lacked strength in their roster and wished to find another member. They first attempted to track down the Hulk and offer him a chance to rejoin the team but the plan ultimately failed. The team then inducted the mercenary known as Swordsman only for him to be sharply ejected due to the rest of the team no trusting him. The team halted their quest to battle against a variety of villains such as Power Man, Kang and Doctor Doom.

    The quest for a strong member of the team came to it's end when the Atlantean Attuma attacked the surface world resulting in both Giant Man, who had re-established himself as Golaith, and Wasp returned to the team they helped found. Unfortunately, the team also lost Rick Jones who left out of frustration of being ignored and not being counted as a full-time Avenger.

    Further Extensions

    \"The
    The Prince of Power

    Not long after Goliath and Wasp rejoined the team, the Avengers again battled against Power Man and their former member Swordsman. After helping the team against them, Hawkeye's girlfriend the Black Widow became a staunch ally and part-time Avenger incidentally was absent when the Avengers announced her as a full-time member. She continued to aid the team alongside her boyfriend.

    The Enchantress sought revenge on the Avengers and duped the Olympian God Hercules into attacking the team. After a brief battle, Hercules manages to overcome the Enchantress' hold over him and then sides with the Avengers against her. Unfortunately for Hercules, his father, Zeus, banishes him to Earth for a year for having left Olympus without permission. Having felt his power first hand and knowing his ties to the Asgardian Thunder God, Thor, the Avengers invited Hercules stay with them and over time he eventually became a full-fledged member of the team during his stay on Earth.

    Rick Jones also returned and, now outfitted in the costume of Captain America's former sidekick Bucky, became a more active part of the team - often accompanying Captain America as his sidekick. Despite finally achieving some degree of acceptance as both a part of the team and Captain America's sidekick, Rick Jones was still overlooked or treat like a peripheral part of the unit.

    The team continued on with their larger roster and battled the likes of Diablo, Dragon Man, the Sons of the Serpent, Sub-Mariner, Super-Adaptoid and the Russian superhero, and ex-husband of Black Widow, Red Guardian. At the same time, the Avengers looked for a way to cure their team-mate Goliath, whom had become stuck at giant-size.

    Depleting Numbers

    The Mandarin organized a new Masters of Evil group in a gambit to destroy the Avengers and his arch-nemesis Iron Man once and for all. The former Masters of Evil members Enchantress and Executioner were joined by Living Laser, Power Man and Swordsman and sent to defeat the Avengers. Despite having their largest roster yet, the Avengers were briefly rejoined by both Iron Man and Thor to battle against the Mandarin's team of villains. Iron Man and Thor both left the group again after Mandarin and his cronies were defeated.

    The tides quickly changed for the Avengers as the team began to fall apart. After the death of her ex-husband, the Black Widow left both Hawkeye and the Avengers and Captain America opted out of the team to establish a life of his own apart from the team. Rick Jones followed Captain America and eventually resigned altogether after he was beaten by the Red Skull disguised as Cap. Quicksilver and Scarlet Witch were next to leave after Magneto (who unbeknownst to anyone involved, was their biological father) captured them both and tried to convince them to join his new Brotherhood of Mutants. In the skirmish that followed, Scarlet Witch was injured which led to both her and Quicksilver withdrawing from the team. Finally, Hercules left the team after a battle with Typhon in which upon the climax he was welcomed back into Olympus by his father.

    Filling in the Blanks

    \"Black
    Black Panther and Vision join the team

    With only Goliath, Hawkeye and Wasp left, the team continued on admirably despite their lack in both numbers and power. After the recommendation from their former leader Captain America, the team induct the Black Panther as a member. The team encounter the villainous Grim Reaper and face the threat of another new Masters of Evil assembled by the mysterious Crimson Cowl.

    As a new Black Knight arrives to warn the Avengers of the new Masters of Evil, the team mistake him for the former Black Knight who was also a member of the Masters of Evil. Despite the confusion, when the team did battle the Masters of Evil, the new Black Knight offered his assistance in defeating the team solidifying his relationship with the team he wishes to join.

    The team faced one of their biggest threats yet in Ultron, the robot Goliath created which turned on it's master and the human race. Revealed as the leader of the new Masters of Evil, Ultron continued in his plans to exterminate the human race and his own creator and created a \"son\" in the robotic Vision. After being unleashed on the Avengers, the Vision stops and tells the Avengers that Ultron-5 had sent him to attack them.

    So the Avengers accompany the Vision and go to Ultron’s lair. It turns out to be a trap, and the Avengers are captured. Then the unexpected happens: the Vision fights Ultron and wins, thus saving the Avengers. The Vision is then tested in melee and questioned by a whole lot of Avengers. He eventually becomes a new member.

    Identity Crisis

    \"Hawkeye
    Hawkeye becomes Goliath

    Under the pressure of being chairman and lacking self-confidence, Hank Pym goes to his lab in the Wasp’s mansion, and has an accident. The mixture of different chemicals triggers a new persona, and Hank now calls himself Yellowjacket. This persona is more confident and free willed, a total opposite to his current personality. After thwarting and bashing some thugs, Hank enters the Avengers Mansion and wants to join their ranks. He makes claims that his Yellowjacket persona killed his Goliath persona. The Avengers didn’t take the news likely, so Hank grabs the Wasp and escapes to his miniature base outside the mansion. Hank then kisses the Wasp, and from that point-on the Wasp knows it is actually Hank.

    The two decide to get married, and tons of superheroes make their way to the wedding of Yellowjacket and the Wasp. To everyone’s surprise the Circus of Crime decide to be wedding crashers. Hank sees the Wasp in danger, and stresses that Yellowjacket is unable to rescue and snaps out of it, and grows back to Goliath and saves his now wife the Wasp.

    When his ex-girlfriend and former Avenger Black Widow is kidnapped by Egghead, Hawkeye becomes frustrated at his lack of power and inability to save her. Throwing aside his bow and arrows, Hawkeye decides to use Hank Pym's old Goliath chemicals and equipment and adopts the Goliath guise himself and frees the Black Widow.

    Let the Game Begin

    The Grandmaster and Kang plays a game of chess for the life of Kang's dead love, Ravonna. The Avengers are used as pawns. Kang and his team of Avengers win, and the Grandmaster offers Kang a choice to destroy the Avengers or save his beloved. Kang chooses to destroy the Avengers, but they are saved by the new Black Knight who joins the Avengers ranks right after. The Avengers are split into two different teams. One will face the Squadron Sinister and the other would enter a time-stream into the past to face the Invaders. At the conclusion, the Black Knight officially becomes a Avenger.

    Not long after this, Quicksilver and Scarlet Witch return from the team. Scarlet Witch begins to strike up a romance with Vision, a development that unsettles and enrages her brother.

    Kree/Skrull War

    In the Kree/Skrull War, the Avengers must rescue their friends and prevent earth from an intergalactic conflict.

    The Sentinels Strike

    The Avengers are later attacked by the Sentinels, a group of mutant-hunting robots that had battled the X-Men in the past. The Sentinels kidnap Scarlet Witch and take her to their base in Australia, where they plot to eradicate mutants once and for all. The Sentinels plan to use a massive solar flare to sterilize all of the humans on Earth, which they believe will prevent the birth of future mutants. The Avengers manage to defeat the Sentinels, but Quicksilver (who had earlier broken away from the group and traveled to Australia without the others) is seriously injured, and ends up being left behind since the other Avengers are unaware of his presence. He nearly dies, but is rescued by Crystal, who brings him to the hidden kingdom of Attilan to recover.

    Not long after this, Mantis and Swordsman also join the team. Mantis soon becomes embroiled in a love triangle with Vision and Scarlet Witch.

    Avengers/Defenders War

    In the Avengers/Defenders War, The Avengers are once again pawns, but this time between Dormammu and Loki. They must battle the Defenders for possession of the Evil Eye.

    The Celestial Madonna Saga

    Kang the Conqueror later returns and captures the Avengers, believing that one of the women on the team is the Celestial Madonna, the one prophesied to give birth to an immensely powerful cosmic messiah figure. Kang believes that by forcing the Madonna to marry him, he will have control over the child once it is born.

    The Celestial Madonna is eventually revealed to be Mantis, and Swordsman ends up being killed by Kang while trying to protect her. The Vision and Scarlet Witch end up marrying one another after this, while Mantis departs for space.

    The Serpent Crown

    Twin threats to time and space as campaigns by Kang and the Crown coincide! The Avengers fight the Set-serving Squadron Supreme in a clash between Earths and head for the nineteenth century to keep the West from getting wilder! Continuity questions continue as Kang and Immortus mix it up! Plus: the menace of... President Nelson Rockefeller?!

    Korvac Saga

    In the Korvac Saga, The Avengers and the Guardians of the Galaxy team-up to stop Korvac from making his version of utopia for mankind.

    Government Woes

    When the team received sanction from the U.S. government, Henry Peter Gyrich was appointed as the team's liaison, and quickly found himself at odds with the team. Gyrich fired Hawkeye from the Avengers and replaced him with the Falcon, who was brought in to make sure the team met the government's Affirmative Action standards after the Black Panther left the team. Falcon resented his status as a \"token,\" but was forced to stay.

    During this time the team went to Wundagore and helped the Scarlet Witch defeat the demonic entity Chthon, and also teamed up with Daredevil to battle the returned Grey Gargoyle.

    Contest of Champions

    \"Bronze
    Bronze Age Avengers

    The Grandmaster and Death start a game in order to return Grandmaster's brother Collector to life. Each select a group of heroes to find pices to a glowing sphere in a game for the life of the Collector. They get Wonder Man, Beast, Scarlet Witch, Captain America, Wasp, Iron Man and Vision while training in the Avengers Mansion, the Soviet Super Soldiers Darkstar, Crimson Dynamo, Vanguard and Ursa Major while attacking Red Ghost in Russia, Thing, Reed, Sue and Human Torch during a dinner, in Canada they get Guardian, Sasquatch, Aurora, Northstar, Snowbird and Shaman, the X-Men Colossus, Cyclops, Wolverine, Nightcrawler and Storm during a training session in Danger Room, Luke Cage and Iron Fist fighting crime in Harlem, Spider-Man crawling in NY and Crystal, Hellcat and Valkyrie during a show at Rock Soho. They are all send to a huge arena outside the Earth and find they're all heroes ranging from Inhumans to Eternals, Hulk, Hercules, Thor, Daredevil and Namor.

    Excluding immortals, Inhumans, Atlanteans, Eternals and aliens, Grandmaster and Death choose 12 heroes each. Their mission to search for and find four parts of the sphere of life hidden at different points around the Earth before the other team finds them. The Grandmaster swears never use humans again in his games if he wins and then chooses Captain America, Talisman (an Australian hero), Darkstar, Wolverine, Captain Britain, Sasquatch, Defensor (an Argentinan hero), She-Hulk, Daredevil, Thing, Blitzkrieg (a German hero) and Peregrine (a French hero). Death swears to give one million years of life more to Earth's Sun and then chooses Vanguard, Iron Man, Shamrock (an Irish hero), Iron Fist, Arabian Knight (a Muslim hero), Storm, Invisible Woman, Angel, Sunfire (from Japan), Black Panther (from the African country Wakanda), Collective Man (a Chinese hero) and Sabra (a Jewish hero).

    After the teams were decided, various combinations of heroes were sent to Earth to find the sections of the sphere before the opposing side's heroes did.

    Secret Wars and Secret Wars II

    \"The
    The Secret Wars

    Drawn from Earth across the stars, the Marvel Universe's greatest villains and heroes are set against one another by the mysterious and unbelievably powerful Beyonder, with the winner being promised the ultimate prize. But as battle lines are drawn, new alliances forged and old enemies clash, one among them is not willing to settle for anything less than godhood. The combined might of the Avengers, Spider-Man, the Fantastic Four and the X-Men must prevent Doctor Doom from becoming the most powerful being in the universe.

    It is around this time that the Avengers are joined by new members Captain Marvel and Starfox.

    When the Beyonder later came to Earth to learn about humanity, the Avengers were quick to discover his presence. Captain America, the current Iron Man and the X-Men investigated but were instead attacked by Thundersword. Eventually, the Beyonder decided he wanted to do good and help the planet. He went to the Avengers for advice but found them away on a space mission which he transport himself to and inadvertently botched. Worried about the potential threat he was to the planet if he got out of control, the Avengers an offered him membership with the team as a means to keep an eye on him. The Beyonder instead vanished stating he would think about it, but later began down a path destructive to the planet and the Cosmos itself. After having momentarily upset the Cosmic order of the Universe by eliminating Death (only to restore the concept after realizing his mistake), the Beyonder decided that he might as well just destroy the entire universe because it confuses him.

    \"Avengers
    Avengers vs. Beyonder

    The Avengers attempted to intercept the Beyonder, but alone were no match for him and were easily defeated by the Beyonder within the blink of an eye. The Beyonder continued in his plot, in the process murdering the entirety of the New Mutants who attempted to stop him. The Avengers regrouped and called in assistance from the X-Men, Fantastic Four, Alpha Flight and many former Avengers, and attempted again to defeat the Beyonder but still proved insufficient to the task. It wasn't until the one-time villain the Molecule Man arrived that the tide changed for the heroes.

    Battling against the Beyonder, the Molecule Man still wasn't powerful enough and required the heroes to also aid him in battle as a means of distracting the Beyonder from directing all his focus on him. Eventually, the Beyonder was defeated but it seemed too late as the cataclysmic battle between Beyonder and Molecule Man had seemingly doomed the planet to virtual destruction within mere hours.

    Gravely weakened from his battle with the Beyonder, the Molecule Man was pleaded by the Avengers to fix the damage done to the planet in the battle. Not confident in his abilities or strength to do so, the Molecule Man took some convincing by the heroes but eventually rescinded to save the planet even if it meant the strain could kill him. The Molecule Man was successful but it appeared the strain had robbed him of his powers. The Avengers thanked him for his much needed help in the Beyonder conflict and allowed him to leave and live out his life with the Avengers promising not to pursue him for his former crimes.

    Returning home, the Molecule Man revealed to the Silver Surfer that he did indeed still have his powers and it was all a show for the Avengers because he was afraid if the Avengers knew his powers were still active they wouldn't stop hounding him or trying to get him to do something with his powers when all he wants to do is live a normal life with his wife. The Silver Surfer promised to keep the secret and left, the Avengers none the wiser.

    Absolute Vision

    Around this same time, Vision is nearly killed during a battle with Annihilus. Starfox attempts to help Vision recuperate by connecting him to I.S.A.A.C., a powerful computer on his home world of Titan. Though this does help with Vision's recovery, it also leads to him going mad and believing that the only way to save the world is to conquer it. To that end, he begins manipulating his teammates, and even engineers the formation of a spin-off group based in California, known as the West Coast Avengers. Hawkeye leads the California based group, with the rest of the initial lineup consisting of Mockingbird, the new Iron Man (James Rhodes, who took over the role after Tony Stark suffered a severe alcohol relapse), Tigra and Wonder Man.

    Though Vision's scheme is eventually thwarted, the West Coast branch of the Avengers remains active. Vision regains his sanity and steps down from the team to face the consequences of his actions, but not before the government begins placing increased scrutiny on the Avengers.

    Hydrobase

    Due to continued hassling from the government, the Avengers eventually lost their flight privileges within city limits. The team was soon contacted by the aquatic hero known as Stingray, who offered to let the Avengers use Hydrobase to land and launch their Quinjets. It was at Hydrobase that the Avengers encountered their former foe Namor, who had since been ousted from his kingdom of Atlantis. Remembering how Namor fought alongside the Invaders during World War 2, Captain America offered the Atlantean membership in the Avengers in order to help redeem him.

    Betrayed

    \"Both
    Both teams of Avengers together

    When the East and West Coast Avengers teams meet for a baseball game, they're attacked by Freedom Force, a government-sponsored team led by Mystique. The Avengers are soon overpowered and taken into custody, and it is revealed that the government ordered that the heroes be arrested. The heroes are told that a former member of the team betrayed them and revealed that they were complicit in certain criminal actions, including Vision's earlier plot to conquer the planet. Though the Avengers plead their innocence, they are not believed.

    After being released by Spider-Woman, the Avengers set out to discover which of their former teammates betrayed them. After calling in several reserve members, the heroes learn that it was Quicksilver who turned against them and framed them for the crimes they are accused of. Quicksilver is revealed to have become mentally unhinged after his wife cheated on him, and also still harbors a grudge over the incident where he was unknowingly abandoned after the fight with the Sentinels. Quicksilver works with the members of Zodiac to destroy his old teammates, but is forced to flee after being thwarted. Quicksilver later regains his sanity after it is discovered that his actions were the result of Maximus the Mad, who had manipulated him into turning against the Avengers.

    Under Siege

    \"The
    The Masters of Evil victorious

    In Under Siege, Baron Helmut Zemo decided to copy his father and banded together some of the most powerful villains (such as Mister Hyde, Blackout, the Wrecking crew, Screaming Mimi, Titania, Absorbing Man, and Grey Gargoyle) as the new Masters of Evil. The villains first began to discredit the Avengers by turning the public against Namor, with citizens soon expressing outrage at a violent former villain being allowed on the team. The villains later set a trap for Hercules and brutally beat him, nearly killing him. With the first phase of their plan complete, the Masters of Evil then stormed Avengers Mansion, and took several members of the team (including Captain America, Black Knight and Jarivs) prisoner.

    With help from some reinforcements, the remaining Avengers were eventually able to reenter the mansion and rescue their comrades. During the final battle atop the mansion's roof, Baron Zemo fell from a great height, ending his threat. Though the Masters of Evil were ultimately defeated, Jarvis was severely injured, and ended up losing the use of one of his eyes for an extended period. The villains also destroyed Captain America's keepsakes from his youth, including the only remaining photograph of his deceased mother. Hercules was also rendered comatose due to his injuries.

    Doctor Druid, a hero who had proven key in defeating the Masters of Evil, stayed on and joined the Avengers as an official member. Due to the damage inflicted on the mansion, the Avengers decided to relocate their entire operation to Hydrobase. Captain Marvel also ends up being appointed as team leader after Wasp takes a leave of absence.

    The X-Men vs. the Avengers

    Doctor Druid and Captain America arrive at a Mansfield, Ohio shopping mall, ordering the security guard to give the place their attention. They then force the crowd to listen to them and evacuate slowly, using Doctor Druid's hypnotic power. Up above the Earth's atmosphere, the rest of the Avengers, Captain Marvel, Thor, She-Hulk, and Black Knight, are attempting to stop a huge meteor shower. She-Hulk and Black Knight, in a Quinjet, nearly are killed, but are saved by Thor. The government realizes what the asteroids were when they see how magnetic it is, as well as the straps of metal embedded in it.

    In Russia, the Soviet Super soldiers are stopping a runaway train with the help of the Crimson Dynamo. The Soviet Super-Soldiers express their hated of the man, but agree to let him join their ranks, as he is still Russian. In an isolated cove along the Atlantic shore, six X-Men are vacationing. (Dazzler, Magneto, Havok, Storm, Wolverine, and Rogue). All are enjoying themselves except for Havok, who is letting off steam. Magneto sneaks away from the group when he hears the announcement of the fallen asteroids, and takes off. Back at the Avengers Hydrobase, the team is discussing the Asteroids, which now have been revealed as pieces of Asteroid M. They all recount past deeds of him, and agree it is their duty to go after him. In Kampuchea, Magneto is looking for his lost pieces of Asteroid M when he is confronted by the Avengers, who want him to stop. The X-Men come to his aid when he is being beaten. Lastly, the Soviet Super-Soldiers come and attack both groups in an attempt to take Magneto for themselves.

    After a quick recap, a three way battle erupts between the Avengers, Soviet Super Soldiers, and the X-Men. As the Soviets and Avengers duke it out, the X-Men take the opportunity to flee, taking Magneto with them. Dazzler stops Captain America and Crimson Dynamo after they attempt to follow her. After the X-Men escape, the Avengers trick Darkstar to trap all her teammates in her dark energy constructs, departing and leaving them all trapped for another hour by their own teammate. While they do this, Magneto departs the X-Men group to go look for the asteroid on his own. Captain Marvel spies on the X-Men's location using her powers, and relays it off to her team, the Avengers. Magneto finds a huge chunk of his asteroid, including one of his old costumes, and he puts his old helmet on. The Avengers arrive and attack him, nearly defeating him.

    The X-Men then come to his aide, and as the two teams fight, Magneto tells them that the Asteroid is rigged with an explosion. Using the explosion as a distraction, Magneto takes the X-Men in their jet and flee, but apparently unknown to the X-Men, Doctor Druid is stowed away in the back of the Blackbird. The Soviet Super Soldiers, still trapped in the predicament from last issue, finally break free early, as Gremlin exits his armor and shakes Darkstar, releasing them from her powers. They all agree to go after Magneto once more, for his crimes long ago. On the Blackbird, the X-Men are discuss things. Magneto remains quiet about all the things going on with the Asteroid. Druid, still in the jet believes he is hiding something, and Magneto seems to realize that Druid is actually there. Druid then tries to make contact with the Avengers, before the X-Men attack him, as Magneto realized he was there. Rogue absorbs his powers and memories and tells them all that he didn't give away their location. All three teams then arrive in Singapore, after Druid awakens and alerts the Avengers.

    Vanguard recognizes Havok in the streets, but is attacked by Wolverine before he can do anything. Rogue then absorbs his powers and memories and the entire X-Men team flees to a ship on the bay. There, Storm confronts Magneto.

    The Soviets arrive at the ship and attack the X-Men, but during the battle, Crimson Dynamo purposely causes the ship to sink. The Avengers arrive, and all three teams assist in the evacuation of the boat. Crimson Dynamo's actions are revealed, and Magneto escapes once more. The Avengers barge into a Singapore office, demanding that they be given some sort of information on Mangeto. The government is tight-lipped, but the matter has become internation, so the Avengers demand they tell them. The leader is then called, and Magneto has been spotted. It is also revealed that the X-Men have turned themselves over.

    Magneto is wandering the streets when someone recognizes him, causing something of a riot. He is found by three mutants, Crawler, Slider, and Leiko, who bring him to the Light. The Light finally trusts him that he is Magneto, and they all rejoice at his arrival, as they have been waiting for him. They are then attacked and Magneto helps them win, and then flees. The X-Men, tired of waiting to be either prosocuted or not, escape the van and fly away with it to freedom. The Avengers then meet with Mr. Ronalds, who is angry that the Avengers will not go after the escaped X-Men.

    Magneto is modifying his helmet with Leiko, when the Avengers finally confront the X-Men, revealing that they were following them to attempt to find Magneto's location. Magneto teleports all Avengers but Captain America away, and consults with them. He surrenders himself to the government. Back at Xavier Mansion, Psylocke and Longshot watch the Magneto trial on television. The trial does not look to be going well on Magneto's side, and he is getting frustrated. It is revealed that Leiko and Slider were killed when Magneto was taken, and only Crawler lived form a riot attack. Magneto uses his helmet to set himself free from the trial, much to the people's anger.

    Nothing Lasts Forever

    \"The
    The final days of Captain Marvel's Avengers

    The Avengers were eventually hunted down and captured by the Greek gods, and were brought before Zeus, Hercules' father. Zeus blamed the Avengers for his son's injuries, and sought to punish the heroes by sentencing them to death by torture in the realm of Hades. However, the heroes fought back against Zeus' forces, and Hercules eventually recovered enough to dissuade his father from harming his friends. Though no longer in a coma, Hercules could not return to Earth with his teammates, and remained with his fellow gods to recover from his wounds. Upon their return to Earth, Namor's new wife Marrina was made a part of the team as an honorary Avenger. The Avengers later faced a team of robotic villains known as Heavy Metal.

    Posing as the space pirate Nebula, the time traveler Ravonna began influencing Doctor Druid, manipulating him into plotting a coup against Captain Marvel. Tragedy soon struck when Marrina's alien DNA caused her to transform into a gigantic monster known as the Leviathan. Namor was ultimately forced to kill Marrina to end her suffering, and left the Avengers in sorrow. The battle with Leviathan also left Captain Marvel badly wounded and near death, resulting in her resigning from the team. This allowed Doctor Druid to influence the other Avengers into electing him team leader, which was all part of Ravonna's plan.

    The situation continued to get progressively worse as time went on, such as Black Knight falling victim to the curse of his Ebony Blade, and Ravonna brainwashing the team into helping her in her goals. This adventure resulted in Nebula and Doctor Druid disappearing into the time stream. After returning to Hydrobase, the few remaining Avengers chose to go their separate ways, effectively disbanding the team.

    Evolutionary War

    The High Evolutionary attempts to evolve the human race into a more advanced species using various schemes such as drugs, eradicating mutants, and a genetic bomb. To combat this threat, Steve Rogers (known simply as The Captain at the time) assembled a team of reserve Avengers consisting of himself, Falcon, Beast, the Hulk (now using his Joe Fixit alias), Yellowjacket and Hercules. Hercules and the High Evolutionary both appear to perish during a heated battle, which allows the remaining Avengers to disable the genetic bomb.

    Inferno

    \"Cap
    Cap unveils his plan for a revolving lineup

    After the High Evolutionary is defeated, the reserve Avengers do not stay together. The Captain returns to Hydrobase, where he attempts to form a new team of Avengers. He recruits D-Man during a mission against ULTIMATUM, but the young hero appears to perish during the fight.

    After returning to New York, the Captain becomes embroiled in the Inferno crossover. After Franklin Richards is kidnapped by the Orphan-Maker and the Nanny, the Captain teams up with Mister Fantastic and the Invisible Woman to rescue the child. The three heroes soon encounter Gilgamesh and Thor, who help them infighting off the army of demons that have invaded New York. Once the crisis is averted, the five choose to become the core of a new Avengers line-up. The group later battles Supernova, and both Mister Fantastic and the Invisible Woman leave soon after. Gilgamesh's tenure as an Avenger does not last much longer, as he is eventually injured during a fight against the Lava Men. However, his friend and fellow Eternal Sersi ends up joining the Avengers as his replacement. Quasar, a young hero who had assisted the Avengers during the fight with Super Nova, also becomes part of the team.

    The Avengers briefly adopt a non-standard lineup, with the idea being that certain heroes will be chosen for specific missions. This idea is eventually done away with, and the Avengers return to a more traditional roster.

    Atlantis Attacks

    Ghuar, Llyra, and Attuma join forces to launch an attack on the surface world in a bid for global domination using the armies of Atlantis and Lemuria.

    Acts of Vengeance

    \"Acts
    Acts of Vengeance

    A disguised Loki gathers a group of supervillains he calls the Prime Movers to join forces and destroy the Avengers---whom Loki had actually inadvertently created back in the day---and to strike out at his arch-rival Thor. Dr Doom, Kingpin, Magneto, Mandarin, Red Skull and the Wizard agree, while Apocalypse, Cobra, Mad Thinker and Namor decline the offer. As part of his plan, Loki engineers a prison break at the Vault. The main thrust of the issues involved in this line-wide event is that heroes face off against unfamiliar enemies, for example, Mandarin appears in the X-Men issues, and Rusty and Skids of the New Mutants battle the Vulture.

    After the successful invasion and subsequent destruction of the Avengers headquarters on Hydrobase, the assembled villains fail to operate in a cohesive way, thwarting their plans to kill their enemies. Magneto lashes out at the Red Skull and beats him and buries him alive for his war crimes, the Wizard accidentally reveals the location of their secret meeting place on the Isle of Silence and Doctor Doom backs out of the arrangement and pursues his own scheme to defeat the Fantastic Four, as his own self-importance means he can't allow anyone else to defeat them.

    The Avengers track Loki down and Thor banishes him back to Asgard while most the other villains escape and Magneto goes to track down his daughter.

    Infinity Union

    In the aftermath of the destruction of Hydrobase, the Avengers set up a temporary headquarters in Avengers Park.

    In Infinity Union, Spider-Man and Sersi join the Avengers to battle against Nebula who has gained the Infinity Union - a collection of items that together can destroy the universe. The team also end up battling the cosmic Stranger to save the day.

    Terminus Factor

    The ultimate Terminus flies to St. Louis, Missouri to absorb the energy of the entire world. However, Earth’s Mightiest Heroes from the east coast, west coast, and great lakes rush to the Gateway to the West to stop the gigantic alien. Led by Captain America, Hank Pym, and the Vision; the Avengers try everything to defeat the powerful giant.

    U.N. Charter

    The Avengers eventually finish construction on the new Avengers Mansion, which serves as the team's headquarters. They also employ a support staff known as the Avengers Crew, which includes Captain America's former lover, Peggy Carter. The Avengers also reach a deal with the United Nations, who offer the team a new security clearance (due to the team's prior clearance having been revoked by the U.S. government) in exchange for becoming a special U.N. peacekeeping task force. During this time, the Avengers are briefly joined by a young hero called Rage, as well as the reformed villain Sandman, who receive probationary status.

    Subterranean Wars

    The Deviants, under Brutus, begin a war for territory with the other underground empires. Pushed back, these lesser powers are briefly forced to fight the surface-dwellers, before the Avengers unite to defeat the Deviants.

    After this, Crystal (Quicksilver's estranged wife) and the new Thor (a human named Eric Masterson) join the Avengers.

    Operation Galactic Storm

    \"The
    The Avengers of the early 90s

    As a war between the Kree and Shi'ar rages, Earth becomes drawn into the conflict. The Shi'ar Imperial Guard come to steal the technology left by the deceased Captain Marvel while Kree agents try to secure their loose technology, getting the attention of the Avengers. Earth's Mightiest Heroes learn not only of the intergalactic war taking place but that their solar system is being used as a strategic hyperspace stop and it is severely destabilizing their sun.

    The east coast branch of the Avengers unite with the Avengers West Coast and divide into three teams. One team remains on Earth while the other two journey to the respective throneworlds of the Shi'ar and Kree to find some way of protecting Earth from this war. These space-bound teams are quickly embroiled in conspiracy within both alien empires. The Shi'ar team expose Skrull infiltrators deep within the Shi'ar ruling body, and the Kree team become fugitives as the Supreme Intelligence rises to rule the Kree once more. Even with the conspiracies becoming clear, the war continues with a life of its own. The Shi'ar complete their Nega-Bomb, an unprecedented weapon of mass destruction, and the Avengers are unable to stop Lilandra from deploying it against the Kree. Its detonation ends the war, killing millions upon millions of Kree.

    The Avengers survive and discover the true architect of all this death is the Supreme Intelligence, who sacrificed countless lives so that the few surviving Kree would break free of their evolutionary dead end thanks to the Nega-Bomb's fallout. This leads to half of the Avengers to decide to hunt down the Supreme Intelligence in the ruins of the Kree Empire and execute him for his crimes, despite Captain America's strong objections. The Shi'ar soon arrive to occupy the former Kree Empire, and the Avengers return to Earth.

    Infinity Gauntlet

    \"No

    Mistress Death is upset that the balance between life and death has recently not been in her favor. Her solution is to give her ardent follower, Thanos, a chance at rebirth setting him forth with a mission of killing half the life in the universe. Despite his powers, Thanos realizes his mission is near impossible. Remembering the Infinity Gems that were instrumental in his death, he peered into the Infinity Well to discover their secrets. He divines the true nature of the gems, and their current owners.

    Thanos discovers that the Infinity Gems are currently in possession of the Elders of the Universe with the Soul Gem in possession of the In-Betweener. With cunning, Thanos is able to obtain possession of the gems. He then places the gems on the Infinity Gauntlet, and becomes the most powerful being in the universe.

    Thanos immediately fulfills his objective and kills half of all life in the universe. He also brings a tortured Nebula (who alleges to be his granddaughter) as a sacrifice to Death. But because Thanos is so powerful, becoming superior to Death in every facet, Thanos' hope of being treated as an equal escapes his grasp. He gleans from Death that they are not equal, and Death becomes subservient to him. This infuriates Thanos who doesn't want Death as a slave but as a lover. In an attempt to make Death jealous, he creates a mate, Terraxia.

    On earth, the heroes are informed by the Silver Surfer as to the reason for the monumental genocide. All of Marvel's mightiest heroes band together to try to defeat Thanos and save the universe. Despite previous conflicts with the Mad Titan, Thanos still remains a mystery. Adam Warlock, one of Thanos' most persistent foes, is asked to lead the forces.

    Knowing full well the impossible odds, Adam Warlock and Silver Surfer attempt cosmic diplomacy in the hopes of thwarting Thanos. The two heroes meet up with Epoch and her cosmic champion Quasar and a cosmic summit of the great cosmic powers begins. It includes Eternity, the Watcher Uatu, Kronos, Lord Chaos, Master Order, the Celestials, Galactus, Stranger, Love and Hate and the Living Tribunal. In the summit Eternity tries to convince the Living Tribunal to intervene. The Living Tribunal refuses, in since he believes that if Thanos were to replace Eternity it would still be within the process in natural selection. After seeing this, Adam Warlock persuades the Cosmic powers to aid them in stopping Thanos.

    \"No

    Thanos is fully aware of the coming conflict. Mephisto arrives and advises Thanos to remove his omniscience to make the fight somewhat fair in the hopes of impressing Death. Despite the machinations of Mephisto, the battle is grueling and over quickly for the heroes. Thanos dispatched the heroes with ease. Some examples of the carnage include Terraxia murdering Spider-Man and decapitating Iron Man. The X-men fared no better, as Wolverine had his adamantium skeleton turned to spongy rubber and Cyclops had his head trapped in a cube, stopping his optic blasts and suffocating him. Cosmic heroes like Nova was turned into small cubes, and with Quasar, Thanos causes the Quantum Bands upon his wrists to explode and then disintegrated him. Fearsome foes like Thor were turned to glass. The last man standing was Captain America, who made his last stand. Absent from the battle and light years away were the Silver Surfer and Adam Warlock, who knew and fully expected the frontal assault to fail. The key to the real strategy was Mephisto's involvement. After shattering Captain America's shield, Thanos raised his fist to deliver the final blow. This was the cue for Adam Warlock's true plan to go into effect as Surfer rushed in to steal the gauntlet. This gambit failed, and Thanos realized how close he was to failure himself. He once again reinstated his omniscience, and became all-powerful, all-knowing once again.

    It was then that the Cosmic forces themselves attacked. The mighty forces, each near-omnipotent on their own, were no match for the omnipotence the Infinity Gauntlet bestowed upon Thanos. Eternity and Thanos had a final epic battle where Thanos perseveres, becoming the embodiment of this universe's reality. Thanos sheds his mortal form and takes his place Eternity's replacement. Nebula seizes this opportunity to take the gauntlet from the former body of Thanos. Thanos realizes his error and joins with the remaining heroes and cosmic forces to defeat the now omnipotent Nebula. Their relentless attack on the confused Gauntlet wielder allows Adam Warlock to enter the Soul Gem, a gem he is intimately attached to. From within the Soul Gem he links with the other Infinity Gems and causes the gems to feedback on Nebula, causing her to remove it.

    Adam Warlock then becomes wielder of the Gauntlet. In an attempt to be a \"perfect\" god, Warlock's first use of the power was to expel from his soul the Good and Evil. This was the first step to his reign as God. But before he can begin, the Living Tribunal appears and deems Warlock too unstable and therefore unfit to wield the power. He didn't appear previously because he knew that Thanos wouldn't upset the delicate balance of the universe. Without morals or vices, with his sole focus of being a god being undermined, Warlock violently reacts to the Living Tribunal's judgment. The Living Tribunal dismisses Warlock's uses of the Gauntlet and deems that they would no longer be able to function together, preventing anyone from achieving omnipotence through possession of the gems. The gems separate, and Adam Warlock forms Infinity Watch to safeguard the powerful and dangerous Infinity Gems. Thanos retreats to a life of farming to reflect on his life, death, and brush with godhood.

    Citizen Kang

    In the unassuming town of Timely, Wisconsin, the Vision disappears, and the Fantastic Four and the Avengers set out to save him! But Timely is connected to Kang's city of Chronopolis, which spans the entire history of the Earth and is guarded by the deadliest warrior's of every age, the Anachronauts. The Avengers and the Fantastic Four stop battling each other long enough to defeat Kang and the conniving Ravonna.

    Bloodties

    \"The
    The Avengers and X-Men united

    Luna, the daughter of Crystal and Quicksilver, is later kidnapped by the mutant extremist Fabian Cortez, who brings the child to the island nation of Genosha. A genocidal civil war has also broken out on the island, and the Avengers wish to intervene. However, Nick Fury informs the group that they cannot take action, as the United Nations will not allow them to get involved. After a battle with S.H.I.E.L.D., a strike force consisting of members from both the East and West Coast branches of the Avengers is sent to Genosha, while the rest of the team stays behind to deal with the United Nations.

    On Genosha, the Avengers encounter the X-Men, who have come to halt the genocide. The heroes battle Exodus, a member of Magneto's Acolytes. Exodus states that he plans to enforce the will of the fallen Magneto (who was rendered comatose after the Fatal Attractions story arc) by exterminating Genosha's human population, allowing mutants to rule the country. Back in America, the other Avengers argue with the United Nations about their inaction concerning the genocide.

    Exodus defeats both War Machine and Sersi, before heading off to confront the other Avengers on the island. He is hostile towards Scarlet Witch and Quicksilver, and states that he considers them traitors to their father's dream of mutant liberation. When Exodus manages to steal Luna away from Cortez, the X-Men and Avengers combine their forces to battle the villain. After fighting off both teams, Exodus attempts to kill Luna, as he considers her an abomination and insult to Magneto's legacy due to her having no powers. Charles Xavier manages to distract Exodus with a psychic attack, allowing Black Knight to rescue Luna. Xavier mentally battles Exodus to a standstill, causing the mutant extremis to realize he cannot win. Before leaving, however, Exodus injures Quicksilver. As a result of the Avengers' actions, the heroes and the United Nations end their association with one another.

    The Gatherers

    \"The
    The Proctor menaces the Avengers

    A mysterious new foe named the Proctor later appears, and begins gathering up surviving versions of the Avengers from alternate timelines where most of Earth's heroes have been killed. The Proctor uses these alternate heroes to form a team known as the Gatherers, who scour various parallel universes to find surviving heroes for his cause. The Avengers first encounter the Gatherer after being led into a trap by two Magdalene and Swordsman, two members of the group.

    The Avengers proceed to have further encounters with the Gatherers, including an incident where the villains try to kill Black Panther. The Avengers thwart this plan and take Swordsman prisoner, while the other Gatherers escape. The heroes learn that Swordsman is not actually a villain, and had been manipulated and lied to by the Proctor. Bothered by this setback, the Proctor arranges for Vision to be kidnapped and replaced by an alternate universe counterpart, who infiltrates the Avengers in order to kill Swordsman. The Avengers eventually discover the ruse, and confront the Proctor. Before escaping, the Proctor reveals to his Avengers that his world had been destroyed by its version of Sersi, who was driven mad by an Eternal mental deterioration known as the Mahd W'yry.

    The Avengers become concerned that their version of Sersi may also be suffering from the Mahd W'yry, as she had become increasingly aggressive and erratic in the preceding weeks. This is not helped by her attraction to Black Knight, who is in love with Crystal. The love triangle is complicated even further by the return of Quicksilver, Crystal's husband, who has been staying at the mansion in order to recover from the injuries dealt to him by Exodus during the Bloodties incident. Sersi begins experiencing seizures and blackouts, and becomes the suspect in a murder investigation after several men she spoke to are found dead.

    The Proctor eventually kidnaps Sersi and reveals that he was his world's version of Black Knight, and had fallen in love with his world's Sersi prior to her mental deterioration. After the alternate Sersei broke up with him and went insane, he killed her with the Ebony Blade, and began traveling across the Multiverse, killing each alternate version of Sersi he encountered. He also confesses that he had used the mental link he had with his world's Sersi to worsen this Sersi's mental state, and also killed the young men to frame her.

    The Avengers arrive to rescue their teammate and end up in a battle with the Gatherers. Sersi eventually frees herself and uses the Ebony Blade to kill the Proctor, an act which shocks her teammates. Realizing that the Mahd W'yry will soon consume her, Sersi opts to leave for the Ultraverse, a reality where she will no longer experience her illness. Black Knight chooses to go with her, having realized that he loves her, and that Crystal will never be his. With no homes to return to, Magdelene and Swordsman stay with the Avengers.

    The Crossing

    \"The
    The Crossing

    Kang returns in an attempt to break up the Avengers, aided by former Avenger Mantis and a cast of unusual allies, among them grown-up versions of Luna and the Scarlet Witch's non-existent children. Kang and Mantis manipulate Tony Stark into a maddened frenzy which leds the golden Avenger to murder several members and friends of the team.

    One what appears to be the darkest day in Avengers, history, the Avengers are joined by a new member in the shape of the enigmatic Madame Masque who offers her assistance in stopping her former lover from causing any more damage.

    The Avengers eventually succeed in freeing Stark from his madness by recruiting another Tony Stark from an alternate reality to defeat him. However, in the midst of battle, the real Stark sacrifices himself realizing the extent of his actions.

    Onslaught

    \"The
    The Avengers make the ultimate sacrifice

    When the psionic entity known as Onslaught declares war on humanity, the Avengers are one of the many teams who rise to face this new threat. They briefly end up in a fight with Joseph and Rogue, believing Joseph to be Magneto, and therefore connected to Onslaught. After realizing he is not the men they once knew, the Avengers partner with the mutants. They also take part in unsuccessful efforts to attack Onslaught, who is seemingly unstoppable.

    During the crisis, the Avengers do their best to keep order and protect the citizens of New York as the citizens descend into chaos. While rescuing civilians, they end up having to face off against the villains Holocaust and Post. After subduing the two mutant villains, the Avengers rush off to the final battle with Onslaught, who has evolved into an even more powerful form. During the final battle, the Hulk manages to crack Onslaught's armor, transforming the creature into a being of pure psionic energy. Realizing that the energy needs physical form in order to be destroyed, Thor sacrifices himself to try and hold Onslaught. The Fantastic Four, Captain America, Wasp, Giant-Man, Black Panther, Iron Man, Scarlet Witch, Namor, Hawkeye, Crystal and Bruce Banner (after having been separated from the Hulk) follow Thor's lead, giving up their lives to contain Onslaught. With Onslaught trapped, the X-Men combine their attacks to finish him off, destroying him.

    In the aftermath, the world mourns the fallen Avengers. Black Widow (who had been leading the team at the time of the battle with Onslaught) suffers intense guilty over the deaths, but resolves to carry on the team's legacy. She attempts to form a new line-up of Avengers, and approaches Angel, Iceman, Scott Lang, She-Hulk, Moondragon and War Machine, but is rejected by each of them. With the founding Avengers gone, two congressmen file a motion to annul the team's government charter, causing an even greater strain. Black Widow ultimately chooses to officially disband the Avengers, and shuts down the mansion. Several former members of the team (namely Black Knight, She-Hulk and Hercules) later leave to form the new Heroes for Hire. Baron Zemo takes advantage of the Avengers' absence by forming a team of villains masquerading as heroes known as the Thunderbolts. The Thunderbolts effectively take the place of the Avengers, allowing Zemo to further his schemes.

    Heroes Reborn

    \"The
    The rebooted Avengers

    In the aftermath of the Onslaught storyline, Franklin Richards uses his powers to create a new universe, where the heroes who perished during the final battle are reborn.

    In the Heroes Reborn reality, the formerly dead Avengers exist without any knowledge of their past lives. In this rebooted world, the Avengers consist of Captain America, Scarlet Witch, Thor, Giant-Man, Wasp, Vision, Hawkeye, Hellcat and and Swordsman. The Avengers face off against modernized versions of classic foes, such as Hulk, Kang, the Masters of Evil and Loki.

    They eventually leave this universe after remembering the old one.

    Morgan Conquest

    \"The
    The Avengers return

    In Morgan Conquest, the Avengers make their return to their original reality. On their return they are attacked individually by Norse mythological creatures. All available Avengers band together with Thor to help find the Twilight Sword, and the Norse Gems that have been stolen from his homeland. This ended-up being a trap set by the Celtic Sorceress Morgan Le fay and her nephew Mordred the Evil, to kidnap the Scarlet Witch. They needed the Scarlet Witch, Twilight Sword, and Norse Gems to help shape the world to Morgan's image.

    After Morgan is defeated, the Avengers reassemble the team to continue protecting the world. For their bravery, the young heroes Justice and Firestar are also made probationary members of the team.

    Live Kree or Die

    In Live Kree or Die, The Lunatic Legion wants to make humanity into genetic duplicates of the Kree race. Not if the Avengers have anything to say about it. Carol Danvers is removed from the team after it was discovered that she was drunk at the time, endangering her teammates.

    Destiny War

    The being known as Immortus who works for a trio of beings called, the Time Keepers, wants Rick Jones dead before he fully developes the \"Destiny Force\". Rick Jones, Libra, Kang, Supreme Inteligence, and some Avengers that Rick plucked from the past, present, and future are to save Rick from Immortus and remove the \" Forever Crystal\" from his grasp.

    Maximum Security

    In Maximum Security, The Intergalactic Council has made planet earth a dropping site for intergalactic villains. U.S.Agent returns to the Avengers and assumes leadership of the team as they fight against Ronan, the appointed warden to intergalactic prison their planet has been made into.

    Ultron Unlimited

    \"Ultron
    Ultron Unlimited

    In Ultron Unlimited, Ultron takes over the European nation of Slorenia and kills the entire human populace. He then orchestrates the kidnappings of Hank Pym, Wasp, Scarlet Witch, Vision, Wonder Man and Grim Reaper, each of whom he considers part of his extended family. Ultron reveals that he plans to use their brain patterns to create a new race of mechanical beings, whom he plans to have replace the human race.

    After an intense battle, the tide finally turns when Justice comes up with a plan to use Arctic Vibranium, which Hank uses to destroy Ultron's nearly-indestructible adamantium shell.

    Kang Dynasty

    \"The
    The team's roster grows once again

    The Kang Dynasty story arc is sometimes also called the Kang War.

    Kang the Conqueror appears with his son Marcus, the new Scarlet Centurion. They want to prevent Earth's possible dark futures, by conquering the earth to save it. A massive war ensues, with Kang's forces eventually occupying the planet after destroying Washington, D.C., which causes countless deaths. As all of this is going on, another team of Avengers are forced to team up with members of the Triune Understanding, a cult that believes a world-ending cataclysm, known as the Triple-Evil, is coming from space. The Avengers eventually encounter the Triple-Evil inside a massive pyramid-shaped space vessel, and a fight ensues. Jonathan Tremont, the leader of the Triune Understanding, attempts to hijack the pyramid's power for his own ends, but is defeated by Triathlon, one of the newest Avengers.

    Back on Earth's, many of the world's heroes have been defeated or taken prisoner by Kang. A resistance movement continues the fight, hoping to free the world from Kang's control. Triathlon is able to pilot the pyramid back to Earth, where the final battle begins. After a heated duel, Carol Danvers manages to destroy the Damocles Base, Kang's flagship, from the inside. On Earth below, Kang is finally defeated by Captain America in a one-on-one duel, freeing the planet from his tyranny. The world mourns those who were lost, including Duane, the Avengers' government liaison.

    World Trust

    \"The
    The Avengers of the United Nations era

    When the capital cities of every country on Earth mysteriously vanish, the world is thrown into anarchy. In this time of extraordinary crisis, the nations of the world turn to the only organization capable of leading them through the ensuing strife and restoring political, economic and social order: the Avengers. The Avengers manage to restore the cities after thwarting the plans of Scorpio, the mastermind behind the disappearances.

    As a result of the leadership displayed by the Avengers, they are once again granted United Nations clearance, with Avengers Mansion becoming Avengers Embassy. Scott Lang, Hank Pym's successor as Ant-Man, officially joins the team, as does Jack of Hearts.

    Standoff

    After taking on the role as ruler of Asgard, Thor relocates his legendary home to float directly over New York City. The citizens of the world -- including Thor's former allies in the Avengers -- aren't too happy that self-styled Gods are deciding to intercede in the affairs of man. When a group of peasants are brutally murdered by their own Slokovian government because they worship Thor, Thor is furious and comes down to earth from Asgard to avenge those people. While Iron Man tries to stop Thor whith a special Thorbuster suit - destroying the entire surrouding area - Captain America tries a more human approach to reason with Thor.

    Heart of the Universe

    A Cosmic-powered Pharaoh known as Akhenaten comes to Earth to conquer the planet. When he is opposed by the Avengers, he instantly kills them and puts their bodies on display to frighten the rest of the world into compliance with his rule. The Avengers are later returned to life when Akhenaten is defeated by Doctor Doom and Thanos, although again are forced to face a larger threat in the form of Thanos with the Heart of the Universe. They are again seemingly destroyed only to be brought back to life again when the universe is restored to how it once was.

    Red Zone

    A deadly red mist containing a flesh-eating virus starts to spread in the USA killing thousand of people. It is eventually revealed to be the work of the Red Skull, who has infiltrated the U.S. government by posing as a politician named Dell Rusk. The Avengers manage to stop the virus while Black Panther defeats the Skull. However, Jack of Hearts' radiation-absorption powers accidentally cause She-Hulk to transform into a larger, more frenzied form, and she ends up fleeing into the unknown.

    Search for She-Hulk

    The Avengers eventually track She-Hulk to a small town, where a massive fight ensues. The intervention of Hawkeye and the Hulk eventually allows the heroes to resolve the crisis, and She-Hulk is returned to normal. In the aftermath of this event, the Avengers come to the conclusion that Jack and She-Hulk cannot both remain as members of the team, as another accident could occur. Before a final decision can be made, Jack of Hearts ends up sacrificing himself to destroy a child-murderer who had kidnapped Cassie Lang, Scott's daughter.

    Avengers Disassembled

    \"The
    The end of the Avengers

    The Avengers Disassembled, chronicles the darkest day in the team's history. The story begins with the zombified corpse of Jack of Hearts showing up at the front door of the mansion. When Ant-Man goes to greet his former teammate, Jack explodes, killing the hero instantly.

    In short order, a series of increasingly horrible events befall the team, such as the team losing its U.N. sponsorship after Tony is manipulated into giving a drunken speech before the assembled dignitaries, the return of Ultron, and a Kree invasion. An enraged She-Hulk kills Vision after believing he betrayed the team, while Hawkeye later sacrifices his life to help defeat the Kree.

    It is eventually revealed that the culprit is none other than Scarlet Witch, who suffered a severe mental breakdown after remembering the loss of her children during her time with the West Coast Avengers. At the close of the story, the surviving Avengers agree to disband the team.

    Breakout

    \"The
    The New Avengers

    In Breakout, after a massive break-out from the prison known as the Raft. A group of heroes formed a team called, The New Avengers. The group's roster consisted of Captain America, Iron Man, Spider-Man, Luke Cage, Wolverine, Spider-Woman, the Sentry, and Ronin. As time goes on, the team was joined by Ms. Marvel, who returned to the group.

    With the mansion destroyed, the Avengers operated out of Stark Tower. The heroes set out to find the escaped villains, as well as discover who is behind it. Electro was revealed to be the one who started the break-out, which led to an adventure in the Savage Land, where the Avengers faced a rogue S.H.I.E.L.D. faction led by Yelena Belova.

    The team also battled other threats, such as the Collective and the Void. The Avengers also faced the Hand organization in Japan. Ronin, who was eventually revealed to be Maya Lopez, a.k.a Echo, stayed behind in Japan to keep an eye on the Hand's activity, acting as a spy for the team.

    During the House of M crossover, the New Avenger and X-Men met to discuss the fate of Scarlet Witch. Charles Xavier revealed that Wanda's reality warping abilities were growing out of control, and that he could no longer contain them with his psychic powers. Wolverine suggested killing her to end the threat once and for all, and both teams left to visit Wanda and discuss their possible options. However, Quicksilver found out about this, and manipulated Wanda into creating a \"perfect\" reality. The ruse was eventually undone, and reality returned to normal. However, in the process, Wanda depowered most of the world's mutant population, severely reducing their numbers.

    Civil War

    \"Whose
    Whose Side Are You On?

    Trying to get high ratings for their TV show, the New Warriors came in contact with a group of super-villains in Stamford, Connecticut. This led to Nitro, who was a part of the group of villains, to explode, killing the New Warriors and killing over six hundred people, including a group of school children. With the public now fearing that super-humans were becoming a threat, Congress passes the Super-Human Registration Act. Believing this to be unconstitutional, Captain America escapes Government capture and gathers others to fight with him against the SHRA. Iron Man, in contrast, believes the SHRA was the best way to keep the public safe and keep all superheroes accountable for their own actions and worked with S.H.I.E.L.D. to help capture Captain America. This divided the super-human community, which literally became a super-human Civil War, leading to multiple conflicts between Iron Man and S.H.I.E.L.D. with Cap's \" Secret Avengers,\" and left friendships and relationships broken, familirs divided, friends turned into bitter enemies, and the death of few individuals, such as Bill Foster, Goliath. The war only ended when Captain America finally surrendered after seeing the harm the war was doing, but this only ended in more bloodshed as Captain America was assassinated shortly after surrendering.

    The Initiative

    \"The
    The people's Avengers

    For further details: the Initiative

    Minutes after this new Avengers team had been assembled, New York City came under attack by the Mole Man's monsters and the Mighty Avengers were called into action..

    The battle against the Mole Man's forces went well even though it forced the new team to work out the kinks of its new group dynamic in the field, but the crisis took a terrible swerve with the unexpected arrival of Ultron. Ultron hacked into Iron Man's new Extremis system and not only overrode Tony Stark but physically transformed him into a nude replica of Janet Van Dyne. Ultron's fixation with the Wasp became so warped that he turned himself into her as an expression of his love, making himself into a herself. Ultron also hacked into Tony Stark's unfinished network of weather control satellites, causing natural disasters all over the world with the intent of making Earth inhospitable to human life. When the Mighty Avengers discovered this, Wonder Man and the Sentry quickly destroyed the satellites. Ultron then switched tactics and began decoding missile launch codes while fighting the team. Only one missile was successfully launched, and Ms. Marvel detonated it safely in the air. With the help of Hank Pym, Ares was shrunk down and hand-delivered a virus to Ultron's A.I. core, wiping out Ultron and safely returning Tony Stark's body and mind.

    Outlaws

    \"The
    The New Avengers after Civil War

    Following the events of Civil War, the line-up of the New Avengers was changed. With Iron Man, Ms. Marvel and Sentry no longer being part of the group, and Captain America being dead, the team was initially underpowered. However, their ranks were soon joined by Doctor Strange, who allowed the Avengers to use the Sanctum Sanctorum as their new base of operations. Iron Fist, Luke's longtime friend and former crime-fighting partner, also joined the team during this period.

    Clint Barton later returned to New York after having been resurrected by Scarlet Witch following the events of House of M. With his Hawkeye identity having been taken over by Kate Bishop after his \"death,\" Clint was left without a costume or moniker. He eventually took the Ronin name and costume that had previously been used by Echo, and switched from his trademark bow and arrow to a katana. As Ronin, Clint joined the New Avengers, and took part in many of their adventures.

    The New Avengers once again clashed with the Hand after learning that they had kidnapped Echo and were planning to brainwash her. During the ensuing battle, Elektra, the leader of the Hand, attempted to kill Doctor Strange. However, at the last moment, Echo snapped out of her brainwashed state and stabbed Elektra with a katana, killing her. However, after her death, the assassin's body transformed into a green-skinned alien, revealing that the woman who had been thought to be Elektra was actually a shape-shifting Skrull impostor. After this, Echo officially rejoined the team, and went back to New York with them.

    Revolution

    \"Official
    Official team vs. Outlaws!

    In the recent past, a priority of the Mighty Avengers was to apprehend Luke Cage's New Avengers before that responsibility fell into the hands of anyone who would use harsher tactics to bring the rogue team in. To that end, information was leaked that Captain America was alive and in a holding facility. None of this was true. It was bait to lure the New Avengers into a trap, and it worked. The New Avengers suddenly found themselves facing off against the Mighty Avengers. Rather than a fight, Iron Man activated a neural net device meant to dampen their powers. It worked, but the Mighty Avengers did not count on Doctor Strange being with Luke's team. The device did not work on his magic, which allowed Strange to teleport the New Avengers back to his home, which was mystically disguised as a vacant building.

    No one on the Mighty Avengers could see through the illusion Dr. Strange had cast upon his home, but that did not mean they believed it. They recruited Brother Voodoo's assistance to break the illusion, but he was unable to defeat Dr. Strange's magics and admitted as much to the team. Having to accept that the New Avengers had hidden themselves too well, the Mighty Avengers left the scene.

    The Trust

    \"Skrully\"
    Skrully

    Spider-Woman, who was secretly the Skrull Queen Veranke at the time, betrayed the outlaw Avengers and came to Tony Stark with the corpse of the Skrull who had been discovered posing as Elektra. She explained to Tony what had happened, and the implications behind it.

    Some believed that Tony was one of them, but she did not.

    With this revelation, Tony told her he wanted her to join the Mighty Avengers. He did not want to get into a fight over the SHRA. The possibility of a Skrull invasion took priority, and he wanted her on the team to throw the Skrulls off. If the Skrulls were infiltrating all over, he believed there was quite possibly one already on his team. Little did he realize that he had just recruited a Skrull.

    Venom Bomb

    \"Bonded
    Bonded Wasp

    For further details: Venom Bomb

    During the clean-up of the devastation left by Ultron, a biological weapon developed by Dr. Doom was accidentally triggered and released upon New York City. This weapon was based off of the Venom symbiote, releasing a plague of symbiotes that transformed the population of New York into Venom-like monsters. The Mighty Avengers and the New Avengers worked together to fight off the threat as several of their own members became infected. They held the city together as best they could until Iron Man could develop and release a cure to the plague. Rather than arrest the New Avengers, the Mighty Avengers team ignored their presence and focused only on damage control.

    Iron Man investigated the source of the symbiote bomb and traced it straight back to Dr. Doom. It did not matter whether the attack was intentional or not. The Mighty Avengers led a S.H.I.E.L.D. attack on Dr. Doom in Latveria, taking the fight straight to him in his castle. Doom was unprepared for the assault. He did not even know his biological weapon had been triggered, because he had just returned from a trip elsewhere in the timeline. When his technological defenses failed against the Mighty Avengers, he resorted to his magic and nearly had them all at his mercy. However, nothing he could do would protect him from the Sentry's sheer power. He was brutally defeated and unmasked. The Mighty Avengers brought him back to the United States to answer for his crimes.

    Secret Invasion

    For further details: Secret Invasion

    \"The
    The invasion

    After weeks of paranoia over Skrulls, the alien invaders finally made their move in the final phase of their invasion plans. A Skrull ship crashed in the Savage Land, setting off enough planetary alarms as it went down to alert the Mighty Avengers. The team prepared to investigated but was delayed by the New Avengers, who stole the quinjet to investigate the crash site themselves rather than trust the Mighty Avengers to do it. By the time the Mighty Avengers caught up, Luke Cage and the others were already at the crashed ship. Iron Man wanted them to hold off on doing anything, but Luke still had Iron Man pegged as a Skrull and wanted answers he thought were inside the ship. What they found inside appeared to be a large group of heroes who had been abducted years ago, including another Iron Man and another Ms. Marvel.

    The Skrulls' trap for both Avengers teams was sprung, and Ares called it correctly. He warned the others that this was a distraction from the true battle, and that as many of them as possible should get back to civilization. Iron Man was quickly incapacitated by a Skrull virus, and the other heroes were itching for a fight. Chaos broke out, and everyone was suddenly scattered throughout the Savage Land. Only Ms. Marvel made it out and flew straight to New York, where she engaged the army of Super-Skrulls attacking the city. Back in the Savage Land, Iron Man continued to suffer from the virus and Spider-Woman revealed herself as a Skrull to him. She tried to get him to believe that he was a sleeper Skrull agent and made all this possible, but Black Widow intervened and assured Iron Man otherwise. The paranoia and chaos in the Savage Land would have continued indefinitely had Mr. Fantastic and Abigail Brand not arrived with the means to identify the Skrulls and get the two Avengers teams to New York.

    In Central Park, the Mighty Avengers gathered with the New Avengers, Thor, the Young Avengers, the Secret Warriors, Captain America and the Thunderbolts for a climatic battle against Queen Veranke and her Skrull forces. The Skrulls had one last surprise, though. The growth serum previously given to Wasp by a Skrull posing as Hank Pym was actually a biological weapon, turning her into a living bomb that the Skrulls now triggered. They were willing to kill themselves along with the humans rather than be beaten. As Wasp grew uncontrollably and was on the verge of detonation, Thor used Mjolnir to transport her to another dimension, where she could die peacefully without taking anyone with her. The tide then turned against the Skrulls, and the invasion was repelled.

    Dark Reign

    For further details: Dark Reign

    \"The
    The New Avengers vs. the Dark Avengers

    After the invasion, politics kicked in and Iron Man took the fall for all of the mistakes that allowed the Skrulls to infiltrate so severely, and because Norman Osborn not only saved Washington D.C. but took the shot that killed Queen Veranke, he was given Iron Man's job. This meant Iron Man's Avengers was now Norman Osborn's Avengers.

    Iron Man was forced to go on the run to protect the list of superhuman identities from Osborn. Wonder Man became completely disillusioned with the Avengers and people in general. Black Widow went underground with her lover, the new Captain America. Ms. Marvel was invited to become part of Osborn's Avengers, but she refused and went renegade with the New Avengers. Ares and the Sentry stayed on to serve under Osborn.

    With Osborn in charge, the Mighty Avengers gave way to the Dark Avengers, a group consisting largely of former villains masquerading as Earth's mightiest heroes. The group included Daken (posing as Wolverine), Moonstone (posing as Ms. Marvel), Venom (posing as Spider-Man) and Bullseye (posing as Hawkeye). The roster was rounded out by former Might Avengers Sentry and Ares, as well as Marvel Boy (now known as Captain Marvel).

    Earth's Mightiest

    Early into the days of Osborn's Dark Reign, chaotic and unexplainable events began occurring all over the world. The seas boiled, Philadelphia overran with deadly plant life and San Francisco became encased in amber. All of it was the result of Modred using the Darkhold to raise Chthon in Wundagore. Amadeus Cho figured out where the source of the chaos was and, along with Hercules, sought to pull together an Avengers team to confront it. They tracked down Jarvis first, because they considered him crucial to any Avengers team. In turn, Jarvis directed them to Hank Pym.

    Meanwhile, Loki saw opportunity for mischief. He disguised himself as the Scarlet Witch and began teleporting away specific heroes, including the Hulk, U.S. Agent, Stature and Vision. Like Cho, Iron Man also figured out the pattern and headed for Wundagore.

    Much to Pym's annoyance, the collected heroes fell under the leadership of Iron Man when they all gathered in Wundafore. However, the situation was dire and he was not inspiring much confidence by calling himself the Wasp now. Modred succeeded in raising Chthon and used the body of Quicksilver as host. However, as the situation continued to escalate, it was Pym who figured out how to neutralize Chthon and pull the entity out of Quicksilver's body. Iron Man left afterward, having to deal with his own problems with Osborn. But the situation inspired Pym, and he asked the remaining heroes to join him in a new incarnation of the Mighty Avengers. The Hulk refused, as did Quicksilver. The rest agreed, and Quicksilver changed his mind upon seeing who he believed to be his sister aiding the team.

    Quickly, Hank Pym took his new team on a spree of adventures, solving crises all over the world. This brought the unwelcome attention of Norman Osborn and H.A.M.M.E.R. because it was hurting Osborn's image to have another Avengers team out there beyond his control. Pym's status as a founding Avenger also brought up questions of legitimacy when it came to which Avengers team was the real Avengers. Much of this growing conflict was due to Loki, who guided the Mighty Avengers from crisis to crisis under the guise of the Scarlet Witch.

    H.A.M.M.E.R. was eventually able to locate the access door to Pym's secret lab while the team was out on another mission. Only Jocasta and Jarvis were present to deal with the H.A.M.M.E.R. agents at the door, and they were forced to detach Pym's lab from it, sending it adrift in reality. Meanwhile, Pym was approached with an offer from a global agency called G.R.A.M.P.A. that would authorize the Avengers' activities in several states outside of Osborn's influence.

    To repair his lab and save his experiments, Pym required a device Bill Foster invented. The problem was that when Foster died the device was left to Ben Grimm, and Mr. Fantastic did not trust Pym with the device due to all the emotional stresses he was under. In response, Pym led his team on a raid of the Baxter Building to take the device. As the Mighty Avengers and Fantastic Four fought, Pym and Mr. Fantastic grappled over Bill Foster's device. Eventually, Pym was able to show Mr. Fantastic the experiment he was working on that he wanted so badly to save, and upon seeing the preserved body of Janet Van Dyne in the dimension Thor had sent her, Mr. Fantastic agreed to let Pym have the device.

    Unspeakable

    In China, a powerful and forgotten Inhuman king now known only as the Unspoken sought a device known as the Slave Engine. Many years ago, he hid this holy Inhuman relic and refused to ever tell where it was. Now, he wanted to make use of it himself. The Slave Engine was capable of releasing a gas like the Terrigen Mists, except it had the effect of devolving humans into Alpha Primitives. The Unspoken's intent was to enslave Earth's population and win back the favor of the Inhuman people. At first, only U.S. Agent, Quicksilver and thePeople's Defense Force stood in his way. They were not enough.

    Meanwhile, Hank Pym disappeared during an experiment into the Macroverse, and during this time, he believed Eternity spoke to him and chose him to be the Scientist Supreme of Earth over Tony Stark and Reed Richards.

    In order to combat the Unspoken, the Mighty Avengers gathered as much Avengers from other teams as they could find. Members of the New Avengers, Young Avengers and Avengers Resistance came to China to help, but many fell under the effects of the Slave Engine, becoming Alpha Primitives loyal to the Unspoken. Soon, Hank Pym joined the fight as well, and the crisis was successfully brought under control.

    Mighty No Longer

    Suspicions about the Scarlet Witch had steadily been rising, but it was not until an altercation with the Dark Avengers that the team realized what was truly going on. Loki was impersonating the Scarlet Witch. Wanting answers, Pym created the means to not only trap Loki but torture the god for answers. While being questioned, Loki confessed to manipulating the team, including posing as Eternity and naming Pym as Scientist Supreme to play on his ego. All the while, Loki sent out a call to Thor for aid, and when Thor arrived, the god of thunder was enraged with the treatment of his half-brother. He demanded Loki's release, and the Mighty Avengers complied since many of them were also uncomfortable with the actions Pym had taken.

    Adding to the growing misgivings about Pym, he requested that Loki become a member of the Mighty Avengers. This was the breaking point for the team. All of them lost what faith they had in him and left, effectively dissolving the Mighty Avengers.

    Siege

    In Siege, bringing his Dark Reign to its climax, Norman Osborn has one last objective to complete: bringing down Asgard. Teaming up with the villain, Loki, Norman frames the Asgardian Volstagg, giving himself an excuse to attack. Norman then leads his \"Avengers\" on an all out assault on Asgard, and the first hero to fall in the battle is none other then Thor.

    As the battle rages on, Ares learns of Norman's lies and decides to join his fellow god's into battling Osborn's forces. Maria Hill then rescues Thor from Norman's men, and helps him escape back into town to heal. Back at the Avengers hideout in Brooklyn, the newly returned Steve Rogers, in uniform, rallies the New and Young Avengers along with Nick Fury and his Secret Warriors, and they then head to Asgard. Back in Asgard, Ares has a change of heart and finds and attacks Norman, but is stopped by Sentry, who, after a short struggle rips Ares in half, killing him.

    \"Avengers
    Avengers vs. Thunderbolts by Wellinton Alves

    By the time Norman Osborn attacked Asgard, the Avengers were no longer officially together, but this did not prevent Amadeus Cho from trying to get as much of the band back together as possible to aid the Asgardians. Stature and Vision were already on their way along with the rest of the Young Avenges and others Steve Rogers had assembled. Cho was able to hitch a ride to Asgard with U.S. Agent, and his message also reached Quicksilver. Unfortunately, Hercules had recently died in the assault on New Olympus.

    Hank Pym dismissed Steve Rogers' call to arms, staying in his lab with Jocasta to continue his experiment on Janet. However, Ultron invaded the Infinite Avengers Mansion, forcing Pym to abandon his experiment to deal with Ultron.

    In Asgard, the rest of the former Mighty Avengers gathered to prevent the Thunderbolts from stealing Odin's spear for Osborn. Cho realized that it was Ghost who sent out the initial warning about what Osborn was up to, and they were able to prevent Osborn from getting the spear thanks to the defections of Paladin andAnt-Man. However, U.S. Agent was critically injured by Scourge.

    Daken, who was sent into Broxton to find Thor, locates him, but Thor hits him with a bolt of lightning and declares that he will not hide from Norman or his men, Osborn then sends Sentry in to finish Thor off. Taskmaster then warns Norman to turn around, and as he does, he sees Cap's shield flying straight for him.

    \"Avengers
    Avengers vs. Osborn by Olivier Coipel

    Cap's shield then nails Norman on the head, knocking him back as Cap along with the New and Young Avengers and Fury and his Warriors come in behind him as Cap yells \"Avengers Assemble!\" The heroes join the Asgardians and begin to fight back Osborn's forces, Thor and Maria Hill are then confronted by Sentry and Thor engages in battle with him. Norman then calls on The Hood and his gang to join the battle. In the town, Young Avenger Speed locates Tony Stark and gives him the briefcase that Jarvis gave Cap before they left. The President then orders H.A.M.M.E.R. to be taken down. Thor and Sentry continue to battle, while Iron Man joins the battle, using his own armor to shutdown Osborn's Iron Patriot armor, which causes Norman to order Sentry to destroy Asgard. The Sentry causes Asgard to break apart and fall to Broxton. Norman's suit then falls apart, revealing his now Green Goblin deformed face to the Avengers and to the news team who are filming the whole thing, showing Osborn's true face to the world. Norman then tells the heroes that they don't know what they've done, that he's the only one who can control the Sentry, he then points up to the skies where the Void is now, Norman then tells them that they are all dead.

    The Avengers do their best to fight off the Void, but they are quickly overpowered by him. Only with the help of Loki who begged Odin for the Norn Stones, did the Avengers gain the power of the stones. Now powered up, the Avengers took the fight straight to the Void, gaining the upper hand, but this new power-up was short lived as the Void seemly kills Loki, taking away the heroes new found power. Iron Man takes control of the H.A.M.M.E.R. Helicarrier, turning it into a giant bullet, and ramming it into the Void. The heroes find Bob begging them to kill him, but he soon reverts back into the Void, only to be finally struck down by Thor, Thor then takes the Sentry's body and throws it into the sun.

    The Heroic Age

    \"Avengers
    Avengers by Olivier Coipel

    The Heroic Age, the President gives Steve Rogers Norman Osborn's job as America's Top Cop, Steve accepts, but tells the President that he's going to do things his way. And with this, the Super-Human Registration Act is thrown out, Tony Stark is given back Avengers Tower and holds a large party for all of the Avengers. Thor soon arrives, telling them that if the call is sent out, he will join their ranks once more, hearing this, Steve tells Thor that's good news since he's going to need all of the Avengers for what he has planned next.

    Following those events, Steve Rogers asks various heroes and former Avengers to join his new plan. Nearly all of them enthusiastically agree, save for Wonder Man, who believes all the recent misfortunes that happened on Marvel Earth to be the Avengers fault. Steve disagrees, but leaves an opening for Simon to join if he wishes. He later assembles the main team of Avengers: Bucky Barnes as Captain America, Iron Man, Thor, Spider-Man, Spider-Woman, Hawkeye, and Wolverine. Steve explains the reasons for which he decided that they should be the core group, the “face of a new era”. He wanted a team comprised of strength, nobility, bravery, responsibility and selflessness. Several members of the group get to know each other better, while Iron Man voices his concern on being teammates with Steve once again. Steve explains that the Avengers would not answer to him, but to Maria Hill instead.

    Battle for the Future

    \"Avengers
    Avengers #3

    At that point, a time traveling Kang the Conqueror emerged. Without hesitation, Thor lands a blow on him, and throws him off the building. The Avengers quickly go after Kang, who holds a mysterious device. It is a device that Iron Man conceived, but never got to actually create: a doomsday machine. Forced to do as Kang says, in fear he will activate it, the Avengers hear him out: according to Kang, Ultron would slay the Avengers at some point in the future, and rule with an iron fist, before the Avengers’ children eventually stop his reign – only to start their own empire, and threaten the entire universe. Kang asks the Avengers to build a time machine and travel to the future in order to stop their successors. He pledges that he will no longer harm them, but rather befriend the Avengers if they will do so.

    The Avengers debate on if they should intervene, or not, and they decide to do so. Iron Man explains that in order to create a time traveling device without damaging pre-existing reality.

    With the help of Wolverine, the team find Noh-Varr, who is now going by \"The Protector.\" Upon being asked for his help, he joins the team and works with them to create a device which allows them to see into multiple futures that the world could possible go. With this, they quickly learn that the time stream is in fact broken, but before they are able to act, they are attacked by Wonder Man, but he is quickly defeated. The team then prepares to build a new time device after the first one was destroyed by Wonder Man, but they soon find themselves facing off against none other than the Horsemen of Apocalypse.

    A fight between the Avengers and the Horsemen of Apocalypse breaks out. During this fight both Iron Man and Wolverine realize that something's not right about this fight. Apocalypse seemed equally surprised to see the Avengers as they were to see him. All of a sudden, just as quick as Apocalypse and his Horsemen arrived, they disappear again into the timestream. The Avengers decide to split up into two teams: one team to go forth into the timestream and one team to handle time-related disturbances in the city. One of these \"disturbances\" is Devil Dinosaur and Killraven who are coming through the timestream.

    Before the Avengers get to learn when/where Killraven's from, they are violently attacked by the Martians from Killraven's future reality. While Thor

    disposes of the Martians and their machines, the heroes at street level take witness to a crazy scene of an mid-19th century's Five Points all-out gang war. When Thor finally destroys all of the Martians' tripods, he watches an incredible scene as the gangs, dinosaurs, old planes, zeppelins, and even Galactus himself transform New York City into a war zone. Meanwhile the Avengers Wolverine, Iron Man, Captain America and Noh-Varr arrive in the future in a cave in Central Park and look outside to see a gruesome all-destroying battle. But before they can get a read on the situation they are all knocked unconscious by the Avengers' children. When they wake up, they are greeted by an elderly Hulk and Iron Man from the future, who apparently need something of the Iron Man of the present.

    Avengers Prime

    A team consisting of three of some of the greatest members in the Avengers. Steve Rogers, Thor and Iron Man visit Thor's homeworld - Asgard to restore order back to the land. Their trust in one another's actions will keep them alive when they battle demons, old foes, and Asgard's hell!

    Infinity Quest

    \"Infinity
    Infinity Quest by John Romita Jr.

    While incarcerated following Siege, the Hood learnt of the Infinity Gems and broke out of prison and began a quest to locate them all to have the ultimate power. After acquiring half of them, he decided to test his strength against the Red Hulk whom he defeated with ease. Following his defeat at the hands of the Hood, the Red Hulk went to the Avengers to warn them that there was someone with greater power than him at large.

    The sudden news made Iron Man schedule an emergency meeting of the Illuminati, only for the cabal's existence to be exposed to the rest of the Avengers. The Avengers began a quest to secure the remaining Infinity Gems and use them to defeat the Hood once and for all.

    It fell to the Red Hulk to battle the Hood, as a cataclysmic battle took place between the two which tore through reality itself. Eventually, the Hood was defeated by Red Hulk and Steve Rogers offered the hero the chance to join the Avengers.

    Avengers vs X-Men

    \"AVX\"
    AVX

    The Avengers go to battle with the X-Men when the Phoenix Force threatens the planet. Sam Alexander, the new Nova, crash landed on earth to deliver a warning to the Avengers that the Phoenix Force is on it's way to Earth. Later the Avengers travel to Utopia and ask Cyclops to hand over Hope so they can put her in protective custody, but the latter refuses since he believes Hope will save the mutant race from extinction and orders Captain America to leave.

    After a brief scuttle Captain America assembles the Avengers on Utopia and a war breaks out between the two teams. Emma Frost places Hope under the protection of the Five Lights until the matter is resolved, but Hope refuses believing she is the cause of this war and knocks out the Lights. Spider-man and Wolverine enter the compound to get her but they are immediately overwhelmed by her rising Phoenix powers.

    Meanwhile Thor leads the secret Avengers in space to stop the Phoenix but they are soon defeated. The Avengers and the X-men travel around the world to search for Hope. Iron Man and Giant Man prepare a weapon to kill the Phoenix, while both teams fight on the Blue Area of the Moon; Hope is starting to lose control of the Phoenix and asks Wolverine to kill her. Iron Man, sporting a new armor, shoots the Phoenix but instead of killing it it separates it into fragments which bond with Cyclops, Emma Frost, Magik, and Colossus.

    They defeat the Avengers with their new found powers and head back to earth with Hope. Now the Phoenix Five reform the world according to their will by supplying free energy, food, water, as well as ending armed conflicts around the world. The Avengers believe the power is corrupting them and got to Utopia to get Hope, when they do they are nearly beaten by Cyclops but managed to escape thanks to the Scarlet Witch. Cyclops had enough and declares that he will no longer tolerate the Avengers by saying,\"No more Avengers.\"

    The X-Men begin hunting down the Avengers around the world while the latter hides and think of a counter attack. Sooner or later some members of the Avengers are captured and imprisoned by the X-Men. During a confrontation between the two teams the Scarlet Witch injures Magik while Emma Frost severely burns Hawkeye, the Five heal Hawkeye and Cyclops reprimands them for their use of excessive force, but Magik defends that they must kill the Scarlet Witch and Namor reminds him that they are at war.

    Meanwhile Black Panther and Iron Man try to find a way to stop the Phoenix Five, while Hope is taken to K'un L'un for training, and to everyone's surprise it is Spider-Man who must train her. While fighting the Scarlet Witch injures Namor, furious he goes against Cyclops's orders and attacks Wakanda with the Atlanteans. After a long and arduousbattle the Avengers finally bring down Namor, but Cyclops and the rest of the Phoenix avatars arrive and a portion of Namor's Phoenix powers are absorbed and divided into the remaining avatars.

    As days pass by, more and more Avengers are captured by the Phoenix Five, and Hope's training in K'un-L'un shows no results. Several X-Men feel uncomfortable about the way the Phoenix Five are treating their prisoners. Storm arrives in Wakanda in the aftermath of Namor's assault and tells Black Panther that the captured Avengers are being held prisoner in a volcano in Siberia. The Avengers then lead a rescue mission with the help of Storm and Professor X to break out their comrades but are stopped by Magik and Colossus. Spider-Man baits Magik and Colossus into taking each other out, allowing the Avengers to escape. As the Avengers arrive back in K'un-L'un, they are surprised by Cyclops, strengthened by half of Magik and Colossus's portions of the Phoenix force.

    The Avengers stall Cyclops as Hope retreats to find Lei Kung, who tells her that he has one final lesson and presents Shao Lao the dragon, the source of the Iron Fist energy. Hope absorbs the dragon's energy and manages to stave off Cyclops's advance. She falls back behind the Scarlet Witch and with a combination of both their powers, Hope sends Cyclops to the Moon. On the Moon, Cyclops comes to the realization that he will need Emma Frost's power as well in order to defeat Hope. Meanwhile on Utopia, Magneto asks Professor X for his help as Emma Frost's rule becomes more tyrannical.

    Cyclops then absorbs Emma Frost's power and becomes the Dark Phoenix while also killing Professor X. The X-Men and Avengers team up to stop Cyclops but even with their combined might they are no match for Scott's godly powers. As a last resort Hope and Scarlet Witch team up and defeat Cyclops, the Phoenix enters Hope's body and, with the Scarlet Witch, wish away the Phoenix erasing the Dark Phoenix, and restore the mutant population. Cyclops is put under arrest and Captain America assembles a new team of Avengers.

    The Avengers Machine

    \"The
    The expanded Avengers line-up

    Believing that the Avengers need to “get bigger,” Iron Man presents Captain America with a new diagram he called The Avengers Machine, that planned an aggressive expansion of the Avengers roster both in headcount and level of power. However, it was not implemented until after a basic roster of Avengers were captured by cosmic threats, Ex Nihilo and Abyss. They were terraforming Mars for their own experiments when The Avengers investigated. While the rest of The Avengers were held captive, Cap was chosen to return to Earth to announce plans for Mars. Using the diagram, Cap recruited a new team including cosmic-level heroes: Smasher, Hyperion, Manifold, and the current Captain Universe.

    Surprisingly, Ex Nihilo and Abyss agreed to not spread their experiments to Earth, mostly in respect to Captain Universe’s power. However, their interference was already having consequences. One of their test subjects attacked and killed Omega Flight, while another was being taken advantage of by AIM, who were also aggressively expanding their membership and power. A new White Event also occurred choosing a new Nightmask and Starbrand, both of whom joined the Avengers.

    The biggest threat came from deep space. Captain Universe warned her current team of The Builders, ancient beings created by Captain Universe. They were considered perfect beings that cultivated civilizations and directed evolutionary paths of multiple planets. They sought to destroy planets that had significance to incursions, the collision of variant planets from the multiverse. On Captain Universe’s recommendation, E Nihilo and Abyss were extended membership to the team

    Infinity

    With alien empires falling to The Builders, The Avengers ventured into space to join the likes of the Kree, the Skrulls, the Shi’ar, and even the Annihilation Wave to take on The Builders together. Their plan was to trap The Builders in a singularity, but they were unprepared for the size of their fleet, which now included members of Ex Nihilo’s race. With half of the Avengers as prisoners of The Builders, they were impressed by the varied resources and abilities, making Earth their prime target. Alien empires began defecting or retreating for leniency, but Ex Nihilo was able to convince his race to fight for the Avengers. Together, they summoned Captain Universe, who destroyed The Builders and earned the admiration of the galaxy.

    Meanwhile, Thanos learned that the Infinity Gems were with the Illuminati and targeted an Earth left vulnerable while the Avengers were in space. He was also hunting one of his offspring, Thane, whom he considered an Inhuman abomination. He was joined by his new generals, The Black Order, and the feral Outriders. To stand against them, Luke Cage put together his own Avengers team, while they waited for the main Avengers to return from space, and Black Bolt readied a Terrigen Bomb, that would released terrigen mist into Earth’s atmosphere. This bomb would trigger the dormant Inhuman genes in small percent of the population, including Thane. Ultimately, the Avengers arrived with troops from grateful alien civilizations to take on Thanos’ space navy, while Thane used his new Inhuman ability to freeze Thanos as a living statue.

    AXIS

    \"Inverted
    Inverted Avengers

    To get an edge over his rivals, Red Skull plundered Xavier’s grave and spliced Xavier’s telepathic brain onto his own. With his new powers, he set up mutant concentration camps on Genosha, which were attacked by the Avengers Unity Squad, an Avengers/X-Men co-op founded by Captain America. Lashing out, Red Skull upgraded to Red Onslaught. To reach the moral center of Xavier’s brain, Scarlet Witch and Doctor Doom cast a spell that inverted his morality. Unfortunately, it backfired and inverted the morality of a number of the heroes who were confronting Red Skull.

    An inverted Avengers, including Sam Wilson (acting Captain America), Iron Man, Thor, and Scarlet Witch executed the Red Skull for his crimes and tricked the non-inverted heroes into a trap so they won’t stand in the inverted team’s way. Spider-Man, Nova, and a de-powered Steve Rogers escaped the inverted Avengers and joined a team of inverted supervillains, led by Magneto. They evaded capture while strategizing their next move thanks to the inverted Avengers being distracted by inverted X-Men.

    Those inverted X-Men had planned a gene bomb that would take out anyone with an X-gene, leaving mutants as the dominant race on Earth. Rogers and Spidey led the inverted supervillains against the inverted X-Men to stop the bomb from going off. They were no match for the inverted X-Men, however, they were still able to reduce the damage of the bomb when an inverted Carnage smothered it with its symbiote tendrils, costing Carnage his life. It wasn’t until Red Onslaught, who now believed in Xavier’s dream, interfered with a fight between Wanda and Doom that a new spell was cast, changing almost everyone back to normal.

    Time Runs Out

    \"Time
    Time Runs Out

    While The Avengers Machine was being implemented, Black Panther had discovered the existence of incursions, weak points in the multiverse barriers that allowed counterpart planets from variant timelines to collide and destroy each other. He reassembled the Illuminati to help him destroy the incoming variant planets before they could smash into their Earth. Eventually, the guilt was too much for this Illuminati, but Namor continued with help from his Dark Cabal.

    When Captain America learned of this, he ordered the Avengers to hunt down the Illuminati and Dark Cabal. He restructured them under SHIELD, but it splintered the team. Those who refused to hunt their allies joined AIM, which was recently purchased by Sunspot. They worked to stop a war from raging between the Avengers and Illuminati, but the only thing that could stop was a team up against the Cabal, which they trapped on a planet as it was about to be destroyed.

    Regrouped, they began to investigate the true source of the incursions. Hank Pym learned that the incursions were caused by The Beyonders as part of one of their experiments, and Doctor Strange had discovered that Doctor Doom had already figured this out and had been secretly waging a war against The Beyonders himself. With Molecule Man, Strange was able to witness the confrontation between The Beyonders and Doom. Doom managed to steal their omnipotent power and use it to create Battleworld from pieces of incurred worlds.

    With the destruction of Earth and the Seventh Cosmos imminent, Reed Richards created life rafts that could carry a few people from Earth to Battleworld. With most of the Avengers lost in Battleworld with new memories or as multiverse variants, Reed continued working behind the scenes to defeat Doom and recreate the universe as the Eighth Cosmos with Molecule Man’s powers.

    All-New, All-Different Avengers

    \"The
    The All-New, All-Different Avengers

    Eight months after the events of Secret Wars (which ended with the Earth restored), the Avengers are once again no more. The former members are divvied up among the various spin-off teams like the New Avengers (now led by Sunspot), the Ultimates, A-Force, and the Avengers Unity Squad. Financial problems within Stark Industries also result in Avengers Tower being sold off to a Chinese company known as Qeng Enerprises.

    During a battle with the Chitauri villain Warbringer, various heroes get involved, leading to a formation of a new team of Avengers similar to the circumstances that led to the creation of the original Avengers. Veteran Avengers Iron Man, Captain America (Sam Wilson) and Vision are joined by newcomers Ms. Marvel, Spider-Man, Nova and the new Thor.

    Due to a lack of headquarters, the new team of Avengers operate out of an abandoned headquarters in New Jersey. This incarnation of the team faces foes like Kang and Annihilus, and also becomes involved in a crossover with the Uncanny Avengers at Pleasant Hill.

    Civil War II

    \"Falcon's
    Falcon's Avengers

    This incarnation of the team ultimately proves short-lived, as the events of the second superhuman Civil War lead to a major shakeup on the team. Iron Man is rendered comatose following a battle with Captain Marvel, while Spider-Man, Ms. Marvel and Nova all leave to form a new team of teenage superheroes known as the Champions. The Avengers' ranks are soon bolstered by the original Spider-Man (Peter Parker), Hercules and Nadia Pym, the new Wasp. Sam Wilson remains as the team's leader, but transitions back to his Falcon identity after returning the Captain America name to Steve Rogers. A reformed Victor Von Doom, now known as the Superior Iron Man, assists the group from time to time, but never becomes an official member. Parker Industries initially serves as the team's financial backer and houses them in the Baxter Building, but the Avengers are forced to relocate after the company folds.

    During this same period, the remaining members of the New Avengers reform the team as the U.S. Avengers, while Hawkeye starts a new underground Avengers movement known as the Occupy Avengers.

    This version of the team becomes embroiled in a massive war with Kang the Conqueror, and also deals with new threats like Avenger X, a previously unknown early member of the team who turned out to be a life-draining supervillain. The romantic relationship between Sam Wilson and Jane Foster also flourishes during this time.

    During HYDRA's takeover of the United States, the Avengers are briefly replaced by a new line-up formed by the traitorous Steve Rogers. This team includes Superior Octopus, Deadpool, Odinson, Black Ant, Taskmaster, Scarlet Witch (possessed by Chthon) and Vision (corrupted by a computer virus made by Arnim Zola). After HYDRA is defeated, the previous Avengers resume their roles.

    During one of their final missions, the heroes team up with the Champions to stop a mad scheme by the High Evolutionary.

    Avengers Mountain

    \"No

    When multiple teams of Avengers came together to defend the Earth from The Grandmaster's feud with The Challenger, they all mutually agreed to dissolve their teams. In order to keep an Avengers team around, Loki called on the Dark Celestials to attack Earth, believing any heroes that answered the call would stick together. After defending the Earth once again, Celestials set up the corpse of Progenitor as a new base of operations for the first responding heroes:

    • Captain America
    • Iron Man
    • Thor
    • She-Hulk (going by Hulk)
    • Captain Marvel (Carol Danvers)
    • Ghost Rider (Robbie Reyes)
    • Doctor Strange (who ultimately turned down membership)
    • and Black Panther, voted in as new chairperson

    As leader, Panther instituted a supporting staff called the Agents of Wakanda. These new Avengers went up against a number of new teams. Namor put together the Defenders of the Deep to defend the oceans from the societies of man. Dracula enabled a new Legion of the Unliving to steal Chernobyl as a new home for vampires. This confrontation led to an invite for Blade and Boy-Thing to the Avengers. Both the United States and Russia did not take lightly to the Avengers setting up operations outside of the USA. The US worked with a newly resurrected Agent Coulson to create a new Squadron Supreme, while the Russians made use of their team, The Winter Guard.

    The Heroic Mantles

    \"Stone-Age
    Stone-Age Avengers

    At the heart of much of the Avengers new problems was Mephisto. His centuries old manipulations, starting with a stone-age version of the Avengers made up of the first bearers of their planet's oldest heroic mantles, were finally coming to fruition.

    Those mantles are:

    Khonshu, through Moon Knight, attempted to steal the powers of the active heroic mantles to stop Mephisto, but ultimately Moon Knight rebelled against Khonshu, when the god crossed a line against The Avengers. All the current mantle holders, except The Phoenix Force, are associated with the Avengers. Danny Rand (current Iron Fist) and Doctor Strange (current Sorcerer Supreme) are allies of the team, while the Starbrand is currently possessed by a baby girl in the Avengers care. The rest are active members.

    The Phoenix Force landed on an island nearby Avengers Mountain and forced a number of Earth warriors, including some Avengers, to fight in a tournament. However, the winner will not become the new Phoenix host, but, rather, one of the fallen will prove an emotional strength worthy to be the host. Thus, Echo becomes the new Phoenix, activating the last of the legendary mantles.

    Heroes Reborn

    \"Blade
    Blade and Cap bring the Avengers together

    Blade wakes mysteriously one day living in a reality without the Avengers or the heroic mantles. Instead, Earth's mightiest heroes are the Squadron Supreme of America, who are working for President Coulson. Blade travels the world looking for his teammates but finds they have all failed to experience the secret origins that made them heroes in the first place. The only member Blade is able to recruit was Captain America, who Blade needed to dig out of Arctic ice. Together, they sought out more champions to fix this warped world.

    Thanks to Cap, Blade's quest to put together an Avengers team went a lot better. He was able to convince Thor to put down the bottle and pick up his hammer. He convinced Panther to drop his isolationist tradition. Cap served as a beacon to the cosmic powers of Echo (as the Phoenix) and Brandy (as the Starbrand). They were ready to make their stand when the Squadron tracked them to Wakanda.

    The two teams were pretty evenly matched, but that all changed when President Coulson entered the battlefield with his Pandemonium Cube, the artifact Mephisto gave Coulson to remake the world. The combined forces of the Phoenix and the Starbrand were able to break the cube, reverting reality back to as it was, mostly.

    Brandy retained her toddler age and the personality of a child raised by Rocket Raccoon. Blade was the only other Avenger that retained his memories of the old world. The Squadron Supreme were still around and remembered the old world as well. Only Hyperion and Nighthawk were able to escape custody. Coulson was pulled back to Hell now trapped in the Pandemonium Cube, but Mephisto was still keen on taking on the Avengers.

    History's Mightiest Heroes

    \"Multiversal
    Multiversal Masters of Evil

    Individually, both Namor and Jane Foster (as Valkyrie) show up to Avengers Mountain with Deathloks with messages for the Avengers. They were warning of an incoming multiversal Masters of Evil targeting Earth-616. One of the Deathloks took Ghost Rider into the multiverse to track down more allies, while the other stayed behind, uploading his memory to Avengers Mountain. Jane and Namor become reluctant new members, replacing She-Hulk (who just started her hiatus) and Blade (who became a reservist to sheriff the vampire nation of Chernobyl). Before they could regroup, the Masters (consisting of variants of their greatest foes) made their move.

    After a long fight, Mephisto was able to convince the Masters to retreat until after Mephisto had targeted the legacy mantles of Earth. This forced the Avengers to chase Mephisto through the timestream protecting history's mightiest heroes.

    Judgment Day

    The Eternal Druig goes public with plans to exterminate mutants, believing them to be related to the Deviants. After sending an assassins after The Five and the mutant stronghold on Mars, The Avengers team up with a splinter group of Eternals and their captive Mr. Sinister to resurrect the Celestial being used as Avengers Mountain to put an end to the conflict. While Captain America leads a ground team to help the mutants and contain collateral damage. Stark, Sinister, and the Eternals successfully get The Progenitor revived. However, this backfires when The Progenitor decides to judge the entire planet, human, Eternal, and mutant alike, forcing them to justify their continued existence.

    While Progenitor continued to create tests specific to each individual on Earth and Druig continued to periodically let Uranos out of his cell to cause carnage, The Avengers did their best to keep the peace and pass whatever tests Progenitor confronts them with, sometimes secretly. Sersi brings another contingency to Tony Stark. She plans on releasing Starfox from his prison so that he could use his empathetic abilities to inspire the Druig's followers into defecting and possibly even effect Progenitor itself. However, Progenitor was offended by Starfox's attempts and decides to fail the planet unilaterally.

    Avenger Identification Cards

    \"An
    An Avengers ID Card

    During the beginning days of the Avengers, the team struggled with ID theft. A Skrull posing as Black Panther easily found out information about the Avengers fighting against the Skrull army. Once the Avengers found out that a Skrull was impersonating their fellow teammate and friend, the Avengers took him down and freed the real Black Panther. Iron Man created ID cards for the Avengers so that they can have access to the mansion instead of outsiders (people outside of the team) could just walk in. Throughout the years the ID cards have gotten more advanced and are currently used by mostly all of the branching Avenging teams (e.g. Secret Avengers ). The ID Cards were also created for the days during the superhero fight for freedom called Civil War - as a reminder for heroes to keep their cards at all cost or suffer being thrown into the Negative Zone .

    Though the ID Cards have come in handy, mostly any super powered villain could steal one from an Avenger member and use a shape-shifter to pose as that hero. So Iron Man (teamed with other genius heroes) made a card that needs the Avengers retina scanned. The look and ideal of the ID Card has changed throughout the years, but it is one of the Avengers greatest tools at keeping their secrets safe.

    Alternate Realities

    Earth-2149

    In this alternate reality, the Avengers are infected by a virus that turns everyone into a zombie who craves for flesh no matter what. The Avengers are at their mansion when a man Ash Williams breaks in and tries to warn the team of an ongoing danger. The team demands to know what is going on and the man tells them about an Army of the Dead. Getting a little hot under the collar, The Scarlet Witch transports him into a pond. Later they get a report of purple lighting and that The Sentry was attacking people downtown. The Sentry would be the first to be infected by coming into contact with the virus from an asteroid and falls to Earth.

    The first members of the Avengers to come to the Sentry were Colonel America, Ms. Marvel, Hawkeye, and Luke Cage. Spider-Man also offered to help. Though they fought hard they were easily subdued by the Sentry and had become infected. Colonel America springs into the air and bites Spider-Man on the shoulder, Spider-Man drops Ash Williams, the madman, right at the feet of the zombified Avengers. Then the rest of the Avengers get infected by the virus, with the exception of the last remaining Avengers member who is not infected, the Black Panther.

    Earth-1610

    The original Avengers were called the Ultimates The team consisted of Captain America, Wasp, Giant Man, Iron man, Thor (only because he was friends with Tony), Hawkeye, Black Widow, Quicksilver, and the Scarlet Witch

    The Ultimates were a team of super solders who were brought together by S.H.I.E.L.D to fight against an alien invasion however their first mission involved them taking down the Hulk who went rampaging throughout Manhattan. When the aliens did attack the Ultimates managed to defeat them with the help of the Hulk. A Year later the Ultimates get into trouble because Captain America was sent into Iraq to save some hostages on top of this a traitor in the group revels to the press that Bruce Banner is the Hulk. Thor also goes crazy so the Ultimates along with the European Super hero initiative manage to take him out. Loki is reveled to be the one who turned the Ultimates against him and Black Widow is reveled to be the one who reveled the Hulks identity. Both of them are part of the Liberators a Communist version of the Ultimates who try to conquer America but are defeated by the Ultimates Thor the Hulk The European heroes the Fantastic Four the X-Men and Spider-Man. When this is over the Ultimates leave S.H.I.E.L.D.

    Things take a turn for the worse however when the Scarlet Witch is killed by Ultron and the Brotherhood of Evil Mutants attack their home to retrieve her body. The Ultimates along with Wolverine go to the savage land to find Magneto and battle Ultron. After Ultron is defeated Quicksilver is shot by Hawkeye and Magneto says they will all pay. When the Ultimatum wave hits the Ultimates are separated with the Wasp eaten by the Blob, Giant Man dies holding back the Multiple Man and Thor stays in Valhalla to save Valkyrie and Captain America's soul. The remaining Ultimates gather whatever heroes they can and go to face Magneto.

    After Ultimatum Nick Fury activates Project: Avenger when Captain America goes AWOL to find his son, the Red Skull and brings together a black ops team to take him down. The Avengers effectively serve as SHIELD's hidden black-ops group operating in the shadow of the Ultimates, who act as a more traditional superhero team.

    The Avengers initially consist of War Machine, Hawkeye, Monica Chang (the new Black Widow), Nerd Hulk (a clone of the original with Bruce Banner's intelligence) and the Red Wasp, with superhuman gangster Tyrone Cash briefly joining the team before returning to a life of crime. Over time, Chang is promoted to the Ultimates, while Blade and the Punisher are recruited into the Avengers due to their unique and bloody skill sets.

    Earth-3931

    In this reality all of the Avengers were vampires. The members were: Captain America, Wasp, Hawkeye, Giant-Man (Henry Pym), Falcon and Polaris.

    Earth-398

    In this reality, the Avengers were known as the Queen's Vengeance, and were the protectors of queen Morgan Le Faya

    Earth-8545

    In the reality also known as the Legacy Planet most of the worlds super-humans has been transformed by Warlock's transmode virus. Members of the Avengers included: Henry Pym, Spider-Woman ( Mary Jane Watson), Beast, Rachel Summers ( Marvel Girl), Havok, Daredevil, Power Fist, Doctor Octopus, Emma Frost, Leech, Icegirl, Rhino, Blob and the Frog.

    Earth-9105

    In this reality the Avengers were: Iron Man, Storm, Sceptre ( Monica Rambeau), Nova, Horus and Captain Assyria.

    Earth-90110

    In this reality, the Avengers are now called the Cosmic Avengers consisting of Commander America (Captain America), Irondroid (Iron Man), Jhen the Gammazon (She-Hulk), Tachyon Torch (Human Torch), Starhawk (Hawkeye) and Thor.

    Earth-982

    For the Avengers in the MC2 universe see: A-Next

    Earth-9939 (Earth-Charnel)

    In this reality the Avengers were: Captain America, Spider-Man, Dr Strange, Daredevil, Scarlet Witch, Iron Man, She-Hulk, Wolverine, Punisher , Rhino, Mr. Fantastic, Thing, Jarvis, Alicia Masters Grimm, and Black Widow. With very few exceptions, these Avengers were killed by Charnel and his spawn. Spider-Man, Punisher, Daredevil, and Dr. Strange died stealing the time disc, Rhino, Captain America, Wolverine, and She-Hulk died in 616 preventing that realities Charnel from coming into existence. Only Death's Head II, Tuck, and 9939's Scarlet Witch survived the battle with the 616 Charnel. Though Earth-9939 was supposed to fade out of existence with the prevention of Charnel's \"birth\", Death's Head II, Death Wreck, and Death Metal found themselves in Earth-9939 where it was apparent that this theory was not true.

    Though there was not much left of that realities Avengers, Iron Man, Black Widow, Thing, Jarvis and Alicia Masters being the only members left. Alongside X-Saviours and Death 3 the 9939 Avengers made one final stand and together the three teams managed managed to defeat Charnel. (Earth-9939 Avengers is the earliest known version of the team to have Wolverine as a member and the only team to have Rhino as an Avenger)

    Earth-9904

    In this reality the Avengers were formed during the 1950's. Members were: Jimmy Woo, 3-D Man, Venus, Marvel Boy, Human Robot, Gorilla-Man, Namora and Jann of the Jungle.

    Earth-921

    In this reality, they are called the Gatherers, which is composed of members of the Avengers from other realities.

    Earth-1298

    In the Mutant X reality, the Avengers are composed of Black Widow as team leader, Deathlok, Typhoid Mary, and Hawkeye.

    Earth-9997

    In the Earth X reality, there are two factions of the Avengers, the first was typically the same to that of the mainstream continuity and the second are composed of heroes wearing the different armor of Iron Man, calling themselves Iron Avengers.

    Earth-9997

    is Earth-616 counterpart. around the time of mass mutation the Avengers team consisted of: Captain America, Wasp, Hawkeye, Giant Man, Quicksilver, Iron Man, and The Scarlet Witch. Some members of the team began to mutate due to the Terrigen Mists. Hawkeye being one of them began to grow extra arms.

    Earth-20051

    In this reality the Avengers are Captain America, Giant Girl, Hulk, Iron-Man, Spider-Man, Storm, Wolverine, Ant-Man, and Tigra.

    Earth-1009

    The Avengers of this Earth is known as Royal Avengers

    Earth-58163

    In the House of M, the Avengers are composed of humans who fought against the mutant regime of Magneto. They are composed of Luke Cage as team leader, Misty Knight, Iron Fist, Hawkeye, Moon Knight and Tigra.

    Earth-12

    In this reality, the Avengers are friends and some of them, work with Mimic, a member of the Exiles.

    Earth-9811

    In the Battleworld, where the heroes and villains fought each other for the Beyonder, but weren't able to return back to Earth, they decided that they live in their new home. 25 years pass, and they bore children who will be known as the Battleworld Avengers. They are made out of Crusader, daughter of Captain America and Rogue, Bravado, son of Thor and Enchantress, Mustang, son of Hawkeye and She-Hulk, Chokehold, daughter of the Absorbing Man and Titania, Firefly, son of the Human Torch and Wasp, and Gator, son of the Lizard.

    The Avengers of New Amazonia

    In an alternate reality where Women are the dominate half of the species instead of the Men, The Avengers are a four-women team that is composed of The Invisible Woman, X-23, Spider-Woman ( Mary Jane Watson-Parker) and are led by Emma \"White Phoenix\" Frost. They were assembled mainly to combat Atlantofacist terrorists and an all-male group of insurgents known as The Y-Men, who are led by the Greek God Hercules and have been seeking to restore male dominance over the Earth for many years.

    Doom's Avengers (What If? #'s 67 & 68)

    Consisting of a Captain America who had been taken out of suspended animation much later then he had in 616, Vulture, Attuma, Juggernaut, Abomination, Klaw, Grey Gargoyle and Titanium Man, this group served as Dr. Doom's mercenaries, except for their leader Captain America who believed them to be freedom fighters, after realizing the truth about the team, Captain America was nearly killed by Abomination, and would have been too, had it not been for the X-Patriots arrival.

    (Note: this team was only called the Avengers on the cover of What If? #67, and never actually called themselves Avengers in the book)

    Earth-94040

    What if X-Men Wedding Album?

    The Avengers were the same as their Earth-616 counterparts up until Krakoa made his way into Japan. They were called in to assist Sunfire in preventing Krakoa's trek into Tokyo. They succeeded by having the Scarlet Witch sever Krakoa's connection to the Earth and then having Moondragon shut down his mind, causing Krakoa to collapse in a puddle of muck. They soon found the bodies of the X-Men amidst the muck.

    They were: (from clockwise from top middle): Thor, Vision, Iron Man, Scarlet Witch, Moondragon, Sunfire (Not a member but present with them while battling Krakoa), and Beast

    Cancerverse

    At the far end of The Fault exists The Cancerverse, a world similar to The Marvel Universe that was consumed by The Many-Angled Ones, a group of ancient demonic gods who had ties to The Great Old Ones and The Cthulhu Mythos as a whole, and turned it into a Lovecraftian nightmare with the aid of their \"Herald\": Lord Mar-Vell.

    Recently, Quasar was sent on a fact-finding mission into The Fault and discovered The Cancerverse at the far end of it. He arrived in that world's New York in a body made of flesh, blood and bone and was attacked by a large grotesque tentacled creature. It did not take long for The Revengers of \"The Cancerearth\" to come to his aid and help fight off the hulking abomination.

    It was Thor, in the end, who knocked the monster unconscious and forced it to revert back into its human form, which surprisingly enough, turned out to be Bruce Banner, who was quickly killed afterward by Iron Man to ensure that his alter-ego, The Hulk, could never threaten The Cancerearth again.

    After the fight they realized that the Quasar they aided was not their own and so they captured him, demanding that he lead both them and The Many-Angled Ones back to his world so that they could restore the \"Etheric Angles of Harmony\" and give their Dark Gods more \"real estate\" to occupy.

    When Quasar refused to do so, The Scarlet Witch offered an alternative solution to their problem and began making preparations to superimpose The Cancerearth over Earth-616 and allow The Many-Angled Ones to start spreading outward into their new home.

    Once the others had left, Quasar asked The Scarlet Witch to explain exactly what she was doing as well as why she had said that she was sorry for doing it and if she was afraid of what she and the others had become. The Scarlet Witch explained the transfer process and told Quasar that she was indeed afraid of what they had become.

    Then, for apparently no reason at all, The Scarlet Witch set Quasar free and then collapsed to the ground unconscious as The Vision phased his way out of her body.

    Vision explained that he had been controlling her ever since The Many-Angled Ones took over and was trying to discover a cure for the infection that had been placed in Humanity's bloodstream in secret while simultaneously helping his fellow mechanized brethren in fighting a war they knew was hopeless but wished to fight anyways.

    But because he could not bear to see another Earth fall to the hunger of The Many-Angled Ones he decided to blow his cover and give Quasar a chance to escape while he still could. It was then that they were discovered by Ms. Marvel, who attempted to consume Quasar's soul but was promptly beaten.

    Quasar then began making his way towards The Fault and managed to dodge Iron Man and take down Thor before they could corner him. Unable to pursue him, The Revengers watched as Quasar escaped back to Earth-616. Lord Mar-Vell, the ruler of The Cancerverse and voice of The Many-Angled Ones, later ordered Vaughn, the Quasar of their reality, to assemble The Revengers in preparation for the war against The Marvel Universe.

    When the invasion began, The Revengers stormed The Nova Corps Vessel and attempted to kill everyone within, however their priorities quickly changed when Iron Man detected an anomaly via the use of The Yot-Soteric Vibrations and began focusing their attention on capturing the time-displaced Namorita. Despite Nova's attempts to fend them off, The Revengers managed to apprehend her and effortlessly returned to The UCT Templeship Eternal Sin, leaving Nova to despair.

    Other Media

    Video Games

    Captain America And The Avengers

    \"Captain
    Captain America and The Avengers

    The game was released by Data East in 1991 in the arcades and had many ports (my fave was for the Genesis). It was released on the NES the same year, next year the Genesis version came out. In 1993 they released it on the SNES and Game Gear and finally delivered a Game Boy version in 1994. This game has gotten around.

    Players could select Captain America, Iron Man, Vision, or Hawkeye.

    Avengers In Galactic Storm

    \"Galactic
    Galactic Storm

    This Japanese-produced fighting game form Data East, loosely inspired by the 1990s crossover Operation: Galactic Storm, featured the Avengers as the main characters. The roster was split into two sides (Avengers and Kree), with Captain America, Black Knight, Crystal, Thunderstrike on one, and Doctor Minerva, Korath, Shatterax, and Supremor on the other. Assist characters included Vision, Thor, Iron Man, and Giant-Man for the heroes, as well as Ronan the Accuser and the Kree Sentry for the Kree.

    While the game was not very successful at the time of its release, it is notable for being the first fighting game to use an assist character feature, a mechanic that would later be made famous in Capcom's successful line of Marvel vs. Capcom video games.

    Cancelled Avengers game

    \"Concept
    Concept art

    THQ Australia was working on an Avengers first-person action game to tie into the first movie, with a planned 2012 release date. The game would've featured a visual style influenced by the Ultimate comics and the movies, but would've been otherwise unrelated, with a plot loosely inspired by Secret Invasion. The game would have seen players taking control of Captain America, Iron Man, the Hulk and Thor in order to battle hordes of Skrull invaders led by Queen Veranke. Black Widow, Hawkeye, War Machine and Ms. Marvel were also planned as unlockable characters. A fair bit of progress was made on the game, but it was ultimately cancelled due to THQ's financial troubles.

    Marvel Ultimate Alliance

    \"No

    There cannot be a better tribute to The Avengers in game format than that of their role in Marvel Ultimate Alliance. Boasting the largest line up of playable Avengers (past and present) at the time, and the ability to play them in a team scenario makes this an Avengers fan dream come true. Playable Avengers include: Black Panther, Black Widow, Captain America, Dr Strange, Invisible Woman, Iron Man, Luke Cage, Mr. Fantastic, Ms. Marvel, Spider-Man, Spider-Woman, Wolverine, Thor and, on Xbox 360, a down-loadable Hawkeye and Hulk.

    A sequel was released in 2009, which once again featured a number of Avengers. Based on the Civil War crossover, the game featured many of the returning characters from the first game, as well as newcomer She-Hulk.

    Avengers: Battle for Earth

    \"Battle
    Battle for Earth

    After the success of the Avengers movie, the fighting game Avengers: Battle for Earth was released. Loosely inspired by Secret Invasion, the game featured Captain America, Iron Man, Thor, Hulk, Black Widow, Hawkeye, Storm, Scarlet Witch, Spider-Man, Iceman, Wolverine, Doctor Strange, the Human Torch, and Jean Grey as playable heroes. Loki, Magneto, Doctor Doom, Super-Skrull, Venom, and Queen Veranke were playable as villains.

    Marvel: Avengers Alliance

    \"A
    A promotional comic for the game

    A Facebook role-playing game where in you take the place of a newly recruited SHIELD agent who must save the world with the help of Marvel's famed superheroes from the most infamous of super villains. This game holds several popular heroes and villains to recruit like Iron Man, Luke Cage, Spider-Man, Deadpool, The Punisher, Scarlet Witch, Bishop, Wolverine, Captain America, The Hulk, The Fantastic Four, The X-Men, Doctor Doom, Loki, Red Hulk, Hawkeye and many more. The plot of the game changes seasonally and a \"Spec-Ops\" event will take place every month. The first season of the game takes place in the middle of a worldwide astronomical happening called , \"The Pulse\", which afterwards gave birth to a new, powerful compound called \"Iso-8\". In the second season, a mysterious group known as, \"The Circle of Eight\" are rounding up the vilest of the vile for an upcoming cataclysm. One of the best Marvel games yet.

    A sequel was eventually released worldwide in 2016.

    Marvel Heroes

    \"Marvel
    Marvel Heroes

    A large number of Avengers were featured in this MMORPG, which ran from 2014 to the end of 2017. Over the course of the game's life cycle, Avengers like Captain America, Iron Man, Hulk, Thor, Spider-Man, Wolverine, Black Panther, Carol Danvers (initially as Ms. Marvel but later as Captain Marvel), Scarlet Witch, Hawkeye, Luke Cage, Spider-Woman, Ant-Man, Daredevil, Iron Fist, Doctor Strange, She-Hulk, War Machine, Moon Knight and Squirrel Girl were available to play as, as well as countless other characters from teams like the X-Men, the Guardians of the Galaxy and the Fantastic Four. Additionally, a number of other Avengers like Wasp, Falcon, Quicksilver, Firestar and Agent Venom appeared as Team-Up characters.

    Lego Marvel Super Heroes

    A large number of Avengers appear in the game, and Avengers Tower can be used as a base of operations.

    Disney Infinity 2.0: Marvel Super Heroes

    \"The
    The Avengers and other Marvel characters

    The Avengers were among the first Marvel characters introduced, with Captain America, Iron Man, Hulk, Thor, Black Widow, and Hawkeye playable at the onset, and the Falcon joining the cast in subsequent updates.

    Black Panther, Ant-Man (Scott Lang) and Vision were all later added for the Disney Infinity 3.0: Marvel Battlegrounds expansion.

    Other Avengers such as Iron Patriot, the Winter Soldier, Wasp, Luke Cage and Captain Marvel appear as support characters or non-playable entities.

    Lego Marvel's Avengers

    \"Lego
    Lego Avengers

    A spin-off of Lego Marvel Super Heroes starring the Avengers was later released. The game's story mode roughly follows the plot of the first two live-action movies (with several other MCU movies also included), but also features a huge roster of Avengers from across the team's decades of comic history. The game features over 200 playable characters in total.

    Marvel Ultimate Alliance 3: The Black Order

    In 2019, a decade after Marvel Ultimate Alliance 2, Marvel Ultimate Alliance 3: The Black Order, was released for the Nintendo Switch. The game once again featured a number of Avengers, with newcomers like Wasp, Ms. Marvel (Kamala Khan), Spider-Man (Miles Morales), Falcon and Scarlet Witch making their debuts as playable characters for the first time in the series. In addition, Avengers Tower was featured as a stage.

    The game's story saw the Avengers and other teams such as the X-Men, the Guardians of the Galaxy and the Defenders teaming up to stop Thanos and his henchmen from collecting the six Infinity Stones.

    The Avengers (2020)

    \"The
    The playable cast

    Japanese studio Square Enix (known for the Final Fantasy and Kingdom Hearts games) and Crystal Dynamics (known for the Tomb Raider reboot) produced an Avengers video game released in 2020. The game features Captain America, Iron Man, Hulk, Thor, Black Widow and Ms. Marvel as the initial playable characters. Using teams of four with a playable leader, The Avengers would answer a variety of emergencies, many of which were created by the A.I.M. organization. They promised free DLC characters as time goes on, including Hawkeye, Black Panther, Kate Bishop, and Spider-Man (exclusively for Playstation).

    Animation

    X-Men (1995)

    The Avengers appeared in the episode \"One Man's Worth\", set in the Age of Apocalypse timeline. They were portrayed as enemies of the X-Men. The team consisted of Captain America, Scarlet Spider, Hercules, Goliath, Wasp, and Black Widow.

    Fantastic Four (1995)

    \"A
    A cameo from the Avengers

    The team appeared in \"To Battle A Living Planet\", with a roster consisting of Iron Man, Rage, Goliath (Clint Barton), She-Hulk, Vision, and Hercules. They are shown rescuing civilians after Ego the Living Planet begins wreaking havoc on Earth's gravitational field. Mr. Fantastic asks Iron Man and the other Avengers to continue with relief efforts while he tries to find out what is going on and how to stop it.

    The Avengers are also seen in \"Doomsday,\" the show's final episode. When Doctor Doom steals the power of the Silver Surfer, he uses it to bend the Earth to his will. The Avengers are seen fighting Doom in New York, but are quickly overpowered and defeated. To further ensure they cannot interfere, Doom traps Avengers Mansion underneath a force field, preventing the heroes from venturing outside. The X-Men arrive in the Blackbird to assist the Avengers, but are quickly beaten as well.

    Avengers: United They Stand (1999)

    \"No

    The team in the show consisted of Vision, Hawkeye, Falcon, Wasp, Scarlet Witch, Wonder Man, and Tigra, and was lead by Giant-Man. Captain America, Iron Man, and Thor appeared in the opening credits, but were not members. Thor never appeared outside the opening credits, while Cap and Iron Man made one appearance each - Cap in \"Command Decision\" and Iron Man in \"Shooting Stars\".

    Aired on October 30, 1999 for 13 episodes and ended on February 26, 2000. It was not well-received by critics and fans alike, and is considered by fans as the worst animated series Marvel has ever made.

    Ultimate Avengers - The Movie (2005)

    \"The
    The Ultimate Avengers

    Based on the comic book The Ultimates, this animated feature is flush with heroes and excitement, as Captain America rises from oblivion to save the world once more from self-destruction. Aiding him is a team of diverse heroes of near-unstoppable power, including the Hulk, Wasp, Giant Man, Thor, and Iron Man.

    The movie starts off in The North Atlantic during 1945. The man on the radio is saying, \"This is the news the Allied Powers have been waiting for. The battle for Berlin has ended and Germany's unconditional surrender is suspected within days. After 12 years and 3 months, Hitler's self-proclaimed thousand year Reich has ceased to exist. But those reports of a secret Nazi super weapon named in Washington is categorically false and we believed him. so does everyone one of his G.I.'s...\" Then the war is fought.

    Ultimate Avengers 2 (2006)

    The Ultimate Avengers 2: Rise of the Panther was released on August 8, 2006.

    The film premiered on Cartoon Network on October 21, 2006.

    \"Ultimate
    Ultimate Avengers 2

    The setting starts off in Africa. Men are running from something and they are scared and are throwing spears. They both end up falling in water and one of the men are dragged away. Then a man is speaking to a crowd of people saying, \" My gratitude to you all. Many years has passed since your prince had tread upon this native soil and let us now welcome home, T'Challa: The Son of Wakanda.\" The people are cheering but a group of people behind him aren't really happy and T'Challa seeing that says, \" They don't like me\". Then the man he was talking to said, \"Give it time.\" Then one of the men that got away from the robot said, \"Intruders, intruders\" and as that happened the machine did something to the man and he floated and disintegrated. The people are shocked and panicking and T'Challa and the men go to the back. The guy he was referring to is his father and T'Challa says to his father, \" Father, you are no condition to deal with this. \" Then a woman says, \" I implore you to listen to the prince your highness, you never had time to heal from the previous attacks. The royal guards should...\" Then the King says, \" No Mikinda. I can't afford to lose anymore.\" T'Challa is begging his father to stay but he won't. He says, \" Father please don't go. Not now.\" Then his father replies by saying,\" I miss you son. We will have our time together, I promise.\" So T'Challa says, \" At least let me go with you\". Then his father says,\" As you will one day come to accept this responsibility only belongs to the king.\" As his father walks away T'Challa was going to follow but Mikinda stops him and they walk away together. The king put his claw on a machine and it opens a secret passage which holds a black suit. The King is in the jungle attacking the robot looking creatures and his fingers turns into a weapon that kills one of the creatures. T'Challa kills the other two creatures then is attacked from behind. A sword injuring his shoulder and being pulled out by some guy that said, \" Your prowess in battles never fails to entertain. But after so many performances I am hear to preform your retirement.\" The man is something that can make things at will and as the King tried to g=fight back the man turned his hands into swords piercing it thought the kings body. \" The man then walks towards T'Challa about to kill him turns the King into the Black Panther and he says, \" You will not touch my son.\" He attacks the man thing and the both die after falling into a trench. But then the creature thing gets up and unsnaps his broken neck looks T'Challa in the eyes and walks away. T'Challa is screaming no at the loss of his father. Then the movie starts.

    Next Avengers: Heroes of Tomorrow (2008)

    The Next Avengers is latest movie out by Marvel that came on on DVD and blu-ray cast includes September 2, 2008. The cast includes Noah Crawford as the voice of James Rogers ( Captain America's and Black Widow's son), Brenna O'Brien as the voice of Torunn ( Thor's daughter), Aidan Drummond as the voice of Pym ( Giant Man and The Wasp's son), Dempsey Pappion as the voice of Azari ( Black Panther and Storm's son), Adrian Petriw as the voice of Hawkeye ( Hawkeye's son), Tom Kane as the voice of Iron Man/ Tony Stark and Ultron (I ron Man, Ultron), Fred Tatasciore as the voice of Hulk ( Hulk), Shawn MacDonald as the voice of Vision ( Vision), Michael Adamthwaite as the voice of Thor ( Thor), Ken Cramer as the voice of Bruce Banner, and Nicole Oliver as the voice of Betty Ross ( Betty Ross). The Next Avengers is about the children of the Avengers with the help of Tony Stark (Iron Man) battling one of the greatest threats the world has ever seen....

    The movie starts off with Tony Stark telling the kids a bedtime story. \"And there came a day unlike any other. When Earth's mightiest heroes were united against a common threat. The Soldier, The God, The Knight, The Spy, The Giant, The King, The Pixie, The Ghost, and The Archer. On that day, The Avengers were born.

    \"Earth's
    Earth's Mightiest Heroes!

    To fight foes that no single hero can withstand. Time traveling conquerors, alien invaders, and masters of evil. The Avengers vanquished them all and finally when the world was at peace the heroes built lives of they're own. The Soldier and Spy fell in love, as did The Giant and Pixie, The King found his Queen, and the Thunder God returned to his kingdom far away from the world of man. And one by one the children of The Avengers came to be. Children who would one day who become a generation of heroes, but in time evil returned. An evil called Ultron. Ultron wanted nothing less than total dominion over the world but the Avengers stood in its way. Sadly, their defeat was inevitable. But before they fell, The Avengers hid their children in a far away place. Where they would grow up safe from Ultron's grasp because The Avengers knew that as long as the children were alive their was hope. Hope for the future...

    The story now begins 12 years later. A green light is flying around and then on the bushes a person with yellow eyes are in the trees. The green light is a little boy and he is zapped from the back. He is then caught and the kids are plying tag. Azari and Pym. Pym says that Azari didn't give him much of a head start and then Azari says, \"No fair, aren't you the one that said no powers then shrunk off and flew away.\" Then Pym says, \"Well.. Then I meant no powers for you. Azari replies and says, \"Figures, guess what Pym your it.\" Then as Azari leaves Pym follows and tries to catch up. Now in some sort of laboratory Tony Stark, giving commands to the computer telling it to get lunch ready. In the meantime, Torrun was talking to herself or her fathers tombstone saying, \" I dreamt of Asgard again father. The bifrost bridge stretched out to me and I can see of the realm eternal. I know thee to be real father, and hope that one day you will come soon for your daughter...\" Now as she was talking Pym sneaks up behind her to try and take her sword.

    Avengers: Earth Mightiest Heroes (2010-2012)

    \"No

    A 2010 animated series airing Wednesday nights on Disney XD. It retells classic Avengers stories altered for the modern age. It is the second animated series based off the Avengers, and has been received far more favorably than Avengers: United They Stand.

    The series takes content from several different sects of the Avengers lore such as the Ultimate universe, the various movie adaptations and of course classic stories.

    For the first season, the team features Captain America, Iron Man, Hulk, Thor, Ant-Man, Wasp, Hawkeye, and Black Panther. In season 2, Ms. Marvel and Vision join the cast.

    \"The
    The various guest stars and reserve Avengers

    Throughout the show, various other Avengers appeared in guest-starring capacities. These included Spider-Man, Wolverine, Luke Cage, Black Widow, The Falcon, Mockingbird, Scott Lang, War Machine, Black Knight, and many, many others.

    Pre Premiere Episodes:

    The show first aired as series of \"Micro Episodes\" focusing on the individual members lives before and the events leading up to the teams formation, these micro episodes were eventually combined to create 5 full episodes.

    Iron Man is Born: Focusing On Iron Man and Nick Fury

    Synopsis: Iron Man battles Hydra Agents outside the U.N and is devastated when he learns that they posses stolen Starktech. The battle is soon interrupted by S.H.I.E.L.D whom Iron Man is forced to save from a sneak attack. After the battle Iron Man confronts Nick Fury and Maria Hill aboard the Helicarrier. Fury and Hill try to convince Tony to give up being Iron Man and resume making weapons. Iron Man storms out and Fury arrests the Hydra agents. Later at the Vault, Fury interrogates Hydra's leader Baron Wolfgang Von Strucker. The session is soon interrupted by the Grim Reaper who tries to break Strucker out of prison. He fails after being beaten by Fury.

    Thor The Mighty: Focusing On Thor

    Synopsis: Loki forms a plan to take over Asgard, with help from the Enchantress, he tricks Thor and the Wrecking Crew into fighting each other and enlists the Frost Giants aid assaulting Asgard while Thor is busy. Thor eventually makes it to Asgard and halts the invasion. Loki is Banished to the Isle Of Silence. Thor and Odin have an argument over Thor's duty to Asgard over his happiness in Midgard. Loki soon escapes.

    Hulk Vs The World: Focusing On Hulk and Hawkeye

    Synopsis: Bruce Banner seeks out the Absorbing Man in order to cure him of his Gamma affliction but is spurned and attacked.

    Banner transforms into the Hulk and the two's fight eventually makes it all the way to the desert and Creel is brutally beaten. Things take a turn for the worse when a military squad led by General Ross shows up and begins to fire upon the Hulk. Halfway through the battle a squadron of SHIELD agents led by Hawkeye and Black Widow. Ross disobeys his orders to stand down and fires upon Hulk, Black Widow, and Hawkeye.

    Hulk deflects the missile but the blast causes a mesa to collapse. Hulk saves the agents from being crushed by the debris but is taken down while he is distracted. Now imprisoned in the Cube, Bruce shares sharp words with Leonard Samson who believes that the Hulk must be cured and Hawkeye who thanks Bruce for rescuing his squad, Bruce in turn reveals that SHIELD is trying to replicate the Hulk not cure him.

    Hawkeye then trails the Black Widow who is revealed to be a Hydra Agent hired to steal a sample of Hulk blood. Hawkeye is incapacitated and framed by the Widow for her crime.

    Meet Captain America: Focuses on Captain America and Kang the Conquer

    Synopsis: Captain America and Bucky are both seemingly killed while foiling the Red Skull meanwhile Kang tries to discover the connection between Cap and the destruction of his timeline.

    The Man In The Anthill: Focuses on Ant-Man, Wasp, and Black Panther

    Iron Man: Armored Adventures (2012)

    \"The
    The proto-Avengers

    Throughout the series, a teenage version of Tony Stark meets and befriends young versions of several future Marvel heroes. In the two part series finale, \"The Makluan Invasion,\" the heroes unite to form a sort of proto-Avengers team to fight off the Makluan aliens that are attacking New York. In the show, the team consists of teenage versions of Iron Man, War Machine, Rescue, Black Panther, Hawkeye and Black Widow, with the Hulk (who is still an adult) as their final member. Nick Fury and Rick Jones also appear as supporting characters.

    Avengers Assemble (2013)

    \"Avengers
    Avengers Assemble

    A semi-sequel to Earth's Mightiest Heroes, inspired by the movie, began airing in 2013. The team consists of Captain America, Iron Man, Hulk, Thor, Black Widow, Hawkeye, and Falcon. The series primarily sees the Avengers battling the members of the Cabal, a group formed by the Red Skull in response to his repeated defeats.

    This same version of the team also appeared in a crossover with the Ultimate Spider-Man cartoon and later the spinoff Hulk and the Agents of SMASH.

    In the second season, the team's roster finally expands when Ant-Man joins the group. Throughout the season, the team faces new threats, such as Ultron and Thanos, while trying to collect the Infinity Stones. They are also briefly joined by the android Arsenal, who ends up sacrificing his life to destroy Ultron at the close of the season.

    At the start of the third season, Ultron is revealed to have survived, and returns after his remains are recovered by A.I.M.'s Scientist Supreme. The Avengers also encounter the Inhumans, a secretive race of people who possess superhuman abilities. Ultron returns to menace the team multiple times throughout the season, and one of his schemes accidentally results in the release of Terrigen Mists across the globe, which empower many dormant Inhumans around the planet. This eventually leads into an adaptation of Civil War, where two teams of Avengers come to blows after an Inhuman Registration Act is passed by the government.

    \"The
    The team in Season 4

    In the fourth season, a new Cabal led by the Leader is formed. Together, the villains manage to scatter the Avengers across dimensions, seemingly defeating them. However, Black Panther forms a new team of Avengers, which includes Captain Marvel, Vision, Kamala Khan, Ant-Man and Wasp. The members of the New Avengers are eventually able to locate their predecessors, and reunite with them. The season leads into an adaptation of Secret Wars, where the team faces the Beyonder on Battleworld. During this time, Jane Foster briefly becomes the new Thor after lifting Mjolnir, though she later changes her name to Thunderstrike after gaining an enchanted mace instead.

    The final season, Avengers: Black Panther's Quest aired in 2018.

    Marvel Disk Wars: The Avengers (2014) and Marvel Future Avengers (2017)

    \"Marvel
    Marvel Future Avengers

    In 2014, an anime series called Marvel Disk Wars: The Avengers began airing in Japan. The series starred Iron Man, Captain America, Hulk, Thor and Wasp as the core Avengers, along with a number of guest stars. The premise involved the heroes becoming trapped inside special containment devices called DISKS, leading to Spider-Man and a group of teens named Akira, Chris, Jessica, Hikaru and Edward having to find and free them.

    In 2017, a follow-up called Marvel Future Avengers was launched. The series once again saw a core group of Avengers consisting of Iron Man, Captain America, Hulk, Thor and Wasp, with the characters mentoring a trio of new teenage heroes named Hurricane, Charade and Codec while battling the Masters of Evil. Over the course of the series, numerous other Avengers like Spider-Man, Captain Marvel, Black Panther, Hawkeye, Black Widow, Falcon, Ms. Marvel and Doctor Strange guest-starred. In 2020, the show was brought to the U.S. as part of the Disney+ streaming service.

    Film

    The Avengers (2012)

    \"The
    The cast of the Avengers movie

    The team finally made its big screen debut in the live action movie The Avengers, released May 4th, 2012. There are five movies that culminate to this epic crossover: Iron Man (May 2008), The Incredible Hulk (June 2008), Iron Man 2 (May 2010), Thor (May 2011), and Captain America: The First Avenger (July 2011).

    The plot of the movie revolves around Nick Fury bringing together six of Earth's mightiest heroes to battle Loki, who has stolen the Tesseract as part of a scheme to allow the Chitauri to invade the planet.

    The movie stars Robert Downey, Jr. as Tony Stark/Iron Man, Chris Evans as Steve Rogers/Captain America, Chris Hemsworth as Thor, Scarlett Johansson as Natasha Romanoff/Black Widow, Jeremy Renner as Clint Barton/Hawkeye, and Samuel L. Jackson as Nick Fury. Other cast members include Cobie Smulders as Maria Hill, Clark Gregg as Phil Coulson, Gwyneth Paltrow as Pepper Potts and Tom Hiddlestone as Loki, the movie's main antagonist.

    The movie was a box office juggernaut, grossing $1.5 billion and becoming the highest grossing non-James Cameron film both worldwide and domestically (Avatar and Titanic grossed more both worldwide and domestically).

    The Avengers: Age of Ultron (2015)

    \"Age
    Age of Ultron

    The sequel to The Avengers was released in Summer 2015. Like its predecessor, the film was built up by several other movies, in this case Iron Man 3, Thor: The Dark World, Captain America: The Winter Soldier, and Guardians of the Galaxy. The final Phase 2 film, Ant-Man, had no impact on the movie.

    The sequel sees the Avengers trying to protect the world in the wake of Captain America: The Winter Soldier, which ended with S.H.I.E.L.D. disbanding after a hidden Hydra element was revealed. In order to retire the Avengers, Iron Man and Bruce Banner create the A.I., Ultron, to act as their successor. This doesn't go according to plan when Ultron determines that humans should be exterminated. On their quest to defeat Ultron, they recruit Wanda and Pietro Maximoff (twin superhumans who were pawns of both Hydra and Ultron) and Vision (an android intended to be Ultron's final form but uploaded with JARVIS instead)

    At the close of the film, a new Avengers line-up is formed after the departures of the Hulk, Thor, Hawkeye and Iron Man, with the team now consisting of Captain America, Black Widow, War Machine, Falcon, Wanda Maximoff, and Vision.

    The actors who portrayed the six principle Avengers, Nick Fury, and Maria Hill all returned for the movie. New additions to the cast include Elizabeth Olsen as Wanda Maximoff/Scarlet Witch, Aaron Taylor-Johnson as Pietro Maximoff/Quicksilver, Claudia Kim as Dr. Helen Cho, Anthony Mackie as Sam Wilson/The Falcon, Don Cheadle as James Rhodes/War Machine, Paul Bettany as The Vision, Hayley Atwell as Peggy Carter, James Spader as Ultron, Andy Serkis as Ulysses Klaw, and Thomas Kretschmann as Baron Von Strucker.

    Captain America: Civil War (2016)

    \"The
    The Avengers shattered

    The team appears in Captain America: Civil War, marking their first appearance not in a proper Avengers film. The movie features the new team of Avengers that formed at the end of Age of Ultron, consisting of Chris Evans as Captain America, Scarlett Johansson as Black Widow, Don Cheadle as War Machine, Paul Bettany as the Vision, Anthony Mackie as Falcon, Elizabeth Olsen as Scarlet Witch and Paul Rudd as Ant-Man. The film also sees Robert Downey, Jr. and William Hurt reprising their roles as Iron Man and Thaddeus \"Thunderbolt\" Ross, as well as the debuts of Chadwick Boseman as Black Panther, Tom Holland as Spider-Man and Daniel Brühl as Helmut Zemo.

    The movie opens with the Avengers attempting to stop Crossbones and his henchmen from stealing a biological weapon in Nigeria. Though the villains are defeated, Crossbones detonates a suicide bomb in order to kill Captain America. Wanda uses her powers to contain the blast and move it away from civilians but accidentally destroys a building in the process. The incident, coupled with the events of the past movies, causes 117 countries to craft the Sokovia Accords (based on the Superhuman Registration Act), a series of laws that would bring the Avengers under the control of the United Nations.

    The Accords divide the team, with Captain America believing that they could be used to manipulate the team, while Iron Man believes that the team needs oversight. The film ends with the Avengers effectively disbanded.

    The Avengers: Infinity War (2018)

    \"Infinity
    Infinity War

    The third Avengers movie was built up by Captain America: Civil War, Doctor Strange, Guardians of the Galaxy vol. 2, Spider-Man: Homecoming, Thor: Ragnarok and Black Panther.

    Taking place a few years after the events of Captain America: Civil War, the film sees the Avengers being forced to reunite after being made aware of the threat of Thanos. With the members of the Black Order at his side, Thanos seeks to collect the six Infinity Stones so that he can complete the Infinity Gauntlet, which he plans to use to wipe out half of the universe's population. Complicating matters is the fact that the Vision has the Mind Stone imbedded in his forehead, which makes him a target for the villains. The ensuing battle for the fate of humanity rages across the entirety of the MCU, with locations ranging from deep space to Wakanda.

    In addition to the returning characters from previous entries, the film features Josh Brolin as Thanos, Benedict Cumberbatch as Doctor Strange, Chris Pratt as Star-Lord, Zoe Saldana as Gamora, Dave Bautista as Drax the Destroyer, Vin Diesel as Groot, Bradley Cooper as Rocket Raccoon, Pom Klementieff as Mantis, Karen Gillan as Nebula, Danai Gurira as Okoye, Letitia Wright as Shuri and Benedict Wong as Wong.

    The movie concludes with Thanos successfully assembling the Infinity Stones and using them to wipe out 50% of living things. The original six Avengers survive.

    Captain Marvel

    \"No

    Many of the surviving Avengers appear in the post-credit scene of Captain Marvel. They had recovered the cosmic beeper Carol gave to Nick Fury and was activated by Fury in the post-credit scene of Avengers: Infinity War.

    This leads to Carol's first meeting with the Avengers and then directly into the opening of Avengers: Endgame.

    Avengers: Endgame (2019)

    \"Endgame\"
    Endgame

    The fourth Avengers film picks up shortly after the events of Infinity War. Due to coming so shortly after the previous films, only Ant-Man and the Wasp and Captain Marvel were released between the third and fourth movies.

    Five years after the events of Infinity War, Earth's few surviving heroes attempt to use time travel to collect the Infinity Stones from earlier in their own timeline and use them in the present to bring back the 50% of life that was lost. The team originally consisted of Iron Man, Captain America, Thor, Hulk, Black Widow, Hawkeye, War Machine, Rocket Racoon, Nebula, and Ant-Man. This gets the attention of a version of Thanos from earlier in the timeline, who chases the Avengers through time with his army and fights a massive battle on top of the rubble that was The Avengers Compound.

    In addition to the returning characters from previous entries, the film sees Brie Larson join the ranks as Captain Marvel.

    Avengers: The Kang Dynasty (2025)

    The fifth Avengers movie is tentatively dated for May 2, 2025. The team roster has not yet been confirmed, but they will go up against Jonathan Majors' Kang the Conqueror.

    Avengers: Secret Wars (2025)

    The sixth Avengers movie is tentatively dated for November 7, 2025. The team roster has not yet been confirmed, but it will close out both Phase 6 of the Marvel Cinematic Universe and The Multiverse Saga, the sequel to the Infinity Saga.

    Stage

    Marvel Universe LIVE!

    \"The
    The Avengers, X-Men and S.H.I.E.L.D.

    The Avengers appear as main characters in the touring arena show. In the production, the team consists of Iron Man, Captain America, Hulk, Thor, Black Widow, Hawkeye, Falcon, Captain Marvel and Spider-Man. Villains such as Red Skull, Madame Hydra, Loki, Aldrich Killian, Black Cat, Green Goblin, Rhino, Lizard, and Electro were also featured.

    A revised version of the tour was later performed, which added in characters like Black Panther, Doctor Strange, the Wasp, Iron Fist and the Guardians of the Galaxy, as well as new villains like Nebula and Yondu.

    Merchandise

    \"Figures
    Figures from Hasbro and statues from Diamond, Sideshow and Kotobukiya
    • During the 1990s, ToyBiz produced a line of Avengers action figures.
    • ToyBiz produced a short-lived line of action figures for the equally short-lived Avengers: United They Stand cartoon.
    • Avengers characters have been heavily featured in Marvel Legends, the flagship Marvel toyline of ToyBiz (and later Hasbro). These include individual waves for both Avengers: Age of Ultron and Avengers: Infinity War, often containing a mix of characters from the films and comic books.
    • Hoot Toys has produced figures for all of the Avengers movies.
    • Various companies like Diamond Select, Bowen Designs, Kotobukiya, Sideshow Collectibles and Gentle Giant Studios have produced Avengers Statues.
    • The Avengers have been heavily featured in Funko's Pop! line of bobbleheads.
    • The Avengers have been heavily featured in Hasbro's Marvel Universe line.
    • Hasbro produced toylines for all three Avengers films, as well as a line of figures for the Avengers Assemble animated series.
    • Companies like Bandai's Tamashii Nations division, Good Smile and Funko have produced movie merchandise featuring the characters.
    • The Avengers have been featured in various kits from Lego.

    Novels

    The Avengers and The Thunderbolts

    \"No

    One of the Avengers' greatest foes, Baron Zemo, formed the Thunderbolts as a team of ostensible heroes who were truly super-villains in disguise. When the team's true motives were exposed, some of the Thunderbolts remained together to try to make it as heroes.

    Now Zemo has a new plot that teams him with the hordes of Hydra -- and the Avengers and the Thunderbolts must put aside their differences and work together to stop the greater threat of Zemo!

    • Written By: Pierce Askegren
    • Publisher: Berkley (January, 1999)
    • ISBN-10: 0425166759
    • ISBN-13: 978-0425166758

    The Avengers: The Man Who Stole Tomorrow

    \"No

    • Written By: David Michelinie
    • Publisher: Pocket (September, 1979)
    • ISBN-10: 0671820931
    • ISBN-13: 978-067182093

    Avengers: Everybody Wants to Rule the World

    \"\"

    The Mighty Avengers face an array of their greatest foes-all at once! In Berlin, Captain America battles the forces of Hydra. In the Savage Land, Hawkeye and the Black Widow attempt to foil A.I.M. In Washington, Iron Man fights to stop Ultron. In Siberia, Thor takes on an entire army. And in Mangapore, Bruce Banner and Nick Fury battle the High Evolutionary. Only one thing is certain: This isn't a coincidence. But what larger, deadlier threat lies behind these simultaneous att acks on Earth?

    • Written By: Dan Abnett
    • Publisher: Marvel (April 21, 2015)
    • ISBN-10: 0785193006
    • ISBN-13: 978-0785193005

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6686/","id":6686,"name":"The Coming of the Avengers","issue_number":"1"},"id":3806,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/6410591-qwadf.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/6410591-qwadf.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/6410591-qwadf.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/6410591-qwadf.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/6410591-qwadf.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/6410591-qwadf.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/6410591-qwadf.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/6410591-qwadf.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/6410591-qwadf.png","image_tags":"All Images,Earth-616 Avengers"},"name":"Avengers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/avengers/4060-3806/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-4101/","count_of_isssue_appearances":0,"count_of_team_members":6,"date_added":"2008-06-06 11:27:47","date_last_updated":"2017-01-09 10:52:24","deck":"A group of humans armed with giant Robots. They called themselves the Shogun Warriors and lived and worked in Japan.","description":"

    Origin

    The group that would become the Shogun Warriors where a group of humans whom lived in Japan and armed themselves in giant Robots. They called themselves the Shogun Warriors and lived and mostly protected Japan.

    Creation

    The Shogun Warriors where created by and and first appeared in Shogun Warriors Vol.1 issue 1 (1979). They where inspired by a line of toys, also named the Shogun Warriors. They were licensed by Mattel during the late 1970's for America. It consited of a series of imported Japanese robots all based on then-popular giant robot anime shows.

    Major Story Arcs

    Fighting For Japan

    With the Fantastic Four

    The team eventually teamed-up with the Fantastic Four on two ocassions. After this, the Shogun Warriors have not been seen again.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-99841/","id":99841,"name":"Raydeen!","issue_number":"1"},"id":4101,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64684/1492537-shogun.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64684/1492537-shogun.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64684/1492537-shogun.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64684/1492537-shogun.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64684/1492537-shogun.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64684/1492537-shogun.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64684/1492537-shogun.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64684/1492537-shogun.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64684/1492537-shogun.jpg","image_tags":"All Images"},"name":"Shogun Warriors","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/shogun-warriors/4060-4101/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-4296/","count_of_isssue_appearances":0,"count_of_team_members":28,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-09-11 09:46:11","deck":"Advanced androids designed to hunt down and eliminate mutants.","description":"

    Origin

    \"Sentinel\"
    Sentinel

    Dr. Bolivar Trask was concerned with the emergence of the species 'MUTANT', that their genetic abilities, combined with their ever-increasing numbers would lead to Homo Sapiens being subjugated by them. That was the motivation that spurred him to create his \"Master Mold\", a servitor/controller that would command the many 'Sentinels' that Trask would create later. Unfortunately the A.I. it had been given, began to grow exponentially and Master Mold became sentient, and made sure his progeny acquired this ability also. Ironically, unbeknownst to Trask he had fathered two children who would grow up to become mutants: Tanya (and Lawrence) who had the ability of time travel and due to the instability of her power became lost in the timestream.

    When Bolivar discovered that Lawrence was 'gifted' with precognition, he went to great lengths to create a device that would cloak his son's genetic ability (from his guardians) and hid it within an amulet, that he gave Lawrence, after Bolivar realized his son had predicted his wife's death. Trask had created humanity's guardian in Master Mold, but had not factored in Sentinel Logic in problem-solving, \"We were created to be the Guardians of Mankind - and to guard them properly we must RULE them completely\".

    Master Mold commanded the existing Sentinels to capture their creator and return with him, So that he could commence the creation of a vast army of Sentinels with the intention of World domination. Trask, after witnessing Beast's interrogation under the Psycho-probe, realized that it was he, who had created the threat. To right His Wrong, in a attempt to destroy Master Mold, he sacrificed himself by triggering a catastrophic explosion. The X-Men barely escaped, Bolivar was found by his son, who, from that day blamed Mutants (specifically the X-Men ) for his father's demise, and made it his project, to vastly improve on his father's design, initially converting the Mk I's then eventually creating the superior Mark II Sentinels. They could identify/determine a mutant's power from a distance due to an encyclopaedic database and advanced scanning equipment, and could conceive a plan to nullify/neutralize all mutant powers/attacks, and incapacitate any opponent.

    Judge Chalmers (a close family friend) abhorred by Lawrence's extreme solution, (and privy to the family secret) decided to shock his young ward by snatching the amulet about his neck (That, to that day had hidden his presence from his servitors) No longer masked by the amulet, his former servitors, apprehended Trask and followed his last order as their leader, \"Secure All Mutants in area - - and DESTROY them\", Needless to say the X-Men triumphed and saved the Day. In a future confrontation with his creations, Lawrence became involved, when Quicksilver used him, to locate his sister, the Scarlet Witch, who had been abducted by Sentinels, (lead by their (unbeknownst to them) Now mutated leader, No. 2, recently returned from their aborted mission to the Sun) in their latest scheme to rid the world of Mutants. Unfortunately, He too, came to an untimely end, crushed beneath one of his creations like his father.

    Even though two generations of Sentinels had failed in their objective, the technology still lived on, the US government took possession of Trask's blueprints and specs, wherein (Steven Lang and later) Sebastian Shaw set out to build a new line of Sentinels.

    Creation

    The Sentinels were created by Stan Lee and Jack Kirby. The Sentinels made their first comic book appearance in X-Men #14 (vol.1). They have also been known by other 'nomes de guere' for example, Enforcers (X-M:AS) and Exonims (Age of X) and Servidores (X-M:Legacy #238-#239).

    Character Evolution

    Mark I

    First Appearance X-Men #14

    Mark II

    First Appearance X-Men #57

    Mark III

    First Appearance X-Men #97

    Mark IV

    First Appearance X-Men #151

    Mark V

    First Appearance New Mutants #2

    Mark VI

    First Appearance Alpha Flight #43

    Mark VII

    First Appearance X-51 #7

    MASTER MOLD

    First Appearance X-Men #15

    Master Mold was created by Bolivar Trask (to be the precursor to his 'protectors of Mankind'). It's Primary Objective/Directive was to protect the Trask genealogy and ensure the safety of humankind, to seek out and capture Mutants (in order to observe, examine and discover the weaknesses and strengths of their prey). It's self-diagnostic cycle accelerated causing it to evolve, and it eventually became sentient and concluded, control of Mankind (the originator of Mutantkind) was the most efficient way, and decided the expansion of the primary complement of Sentinels was the solution, (an action that had been designed to be achieved solely by it's creator) Master Mold bided it's time till their existence had been announced at a televised debate (to put it's ploy into effect) between their creator and (ironically) Professor Charles Xavier, the leading expert on Genetic mutation and (secretly) the founder of the team of Mutants tasked with the duty to protect humans (primarily from the opinionated indocile of their ilk).

    Nimrod

    First Appearance Uncanny X-Men #191

    Nimrod was created in the alternate reality \"Days of Future Past\" and was the most advanced Sentinel of it's time. It pursued Rachel Summers sideways through time (E-616) to the X-Men's present and became a vigilante. It later evolved into the human-like Bastion.

    Human Sentinels

    First Appearance X-Factor #123

    Sentinels looked upon humans as weak, to rectify this, Bastion converted humans into 'sleepers' using Cybernetic and Nano technologies, and christened them Prime Sentinels.

    Prime Sentinels

    First Appearance X-Factor #123

    Bastion had outfitted some Prime Sentinels (Nimrod Battalion) that resembled the original ones, with superior power output, they could fly and fire energy blasts from their hands. Like all Sentinels, their Prime Directive was to eliminate Mutants.

    Stark Sentinels

    First appearance Avengers & X-Men: Axis #1

    \"Stark
    Stark Sentinels

    After stealing the brain of the deceased Charles Xavier, the Red Skull was able to brainwash Tony Stark into creating a new breed of Sentinels to help cleanse the world of its superhuman population. Created from nearly indestructible adamantium shells and possessing Stark's superhero files from the Civil War, the Stark Sentinels were able to quickly subdue the Avengers and X-Men with little issue. They were defeated after the arrival of Magneto's makeshift army of supervillains, as Stark did not have the foresight to include countermeasures against criminals.

    Major Story Arcs

    Onslaught Saga

    For More Information: Onslaught

    Sentinels were reprogrammed by Onslaught to occupy New York , initiate panic, siphon the psionic energy from the terrified citizens and transmit it directly to Onslaught, (making Him increasingly More powerful), also apprehend/terminate anyone whose intent was to oppose this progression (especially those with superhuman abilities).

    Powers & Abilities

    \"No

    Sentinels' primary form of offense is their vast array of powerful energy weaponry. They are also equipped with various items for detaining people, tendrils and energy nets, freeze rays. Sentinels are able to fly. Sentinels are powerful engines of destruction (weaponry aside) and are incredibly durable, and resistant to Extreme temperatures. They also have various devices e.g. DNA and Infra Red scanners and sonic probes capable of detecting & tracking mutants.

    Alternate Realities

    Age Of Apocalypse

    \"Age
    Age Of apocalypse Sentinel

    For More Information: Age Of Apocalypse In the Age Of Apocalypse universe, Sentinels were created by Bolivar Trask like their '616' counterparts, with the help of His wife Moira McTaggart. The difference between these versions and '616' versions is that the Age of Apocalypse Sentinels were more heavily armed.

    Days Of Future Past

    For More Information: Days of Future Past

    In this reality the Sentinels hunted, eventually capturing or killing almost every super-human on Earth.

    House Of M

    For More Information: House Of M

    In the House of M reality, Bolivar Trask became vice president of America. He made the (Atlas Class) Sentinels, America's personal mutant enforcers. Magneto eventually reprogrammed them and used them to capture humans, and to be the Royal House's personal guard.

    Ultimate Universe

    \"Ultimate
    Ultimate Universe Sentinels take flight

    For More Information: Ultimate X-Men

    In the Ultimate universe, Sentinels play a similar role to their '616' counterparts, in capturing/killing mutants.

    Characteristics

    • Height: 20' to 30'
    • Composition: Cybernetics, Omnium armour
    • Creator: Bolivar Trask
    • Colors: Purple and Mauve
    • Main Enemy: X-Men

    In Other Media

    Movies

    X-Men: The Last Stand

    \"No

    For More Information: X-Men The Last Stand

    The X-Men were seen fighting Sentinels in a Danger Room simulation that resembled the reality depicted in the Days of Future Past story.

    X-Men: Days of Future Past

    For More Information: X-Men: Days of Future Past

    \"The
    The two models of Sentinel seen in the movie

    The Sentinels appear as the primary antagonists of the film. In the movie, it is revealed that the earliest models of Sentinels were developed by Bolivar Trask during the early 1970's, but after Trask was murdered by Mystique, the machines were upgraded by integrating the shape-shifting mutant's DNA.

    By 2023, the Sentinels have wiped out most of the human race and can now adapt and counteract any mutant superpower. With the X-Men hopelessly outmatched, Kitty Pryde sends Wolverine back in time to prevent Trask's assassination and stop the Sentinel program from ever taking off. The young Magneto manages to hijack the Sentinels and uses them to attack Washington, D.C., but is stopped by Mystique, who is convinced by Charles Xavier to spare Trask's life. As a result, Trask is discredited and arrested for leaking military secrets, which leads to the dark, Sentinel-controlled future never coming to pass since the Sentinel project is scrapped following Trask's incarceration.

    In the movie, the original 1970's Sentinels resemble more realistic versions of their comic counterparts, while the futuristic Sentinels deviate more heavily. According to designer John Myhre, this was to allow the Sentinels to change their size and shape in order to adapt to any threat. They were intended to be the closest thing to a live action version of Nimrod. The future Sentinels were strong enough to easily rival Colossus in brute strength, with 2 of them being capable of ripping him in half. They were also extremely durable, particularly against impact forces and extreme cold, all of this even without using their adaptive powers. They were also extremely agile for their size, and were capable of flying faster than the 1973 versions. Their adaptive powers worked by using mutant powers to adapt to the obstacle or threat they were facing, althrough they seemed unable to copy the powers of certain mutants. Among the powers they were able to copy were those of Colossus, Iceman, Sunspot, Rockslide and Emma Frost. They were also capable of transforming their faces into powerful laser cannons, whose energy output was so high that 3 Sentinels were capable of overloading Bishop's energy absorbing powers in seconds, causing him to explode. They could also shapeshift their arms into various weapons and tools, including pikes and drills. They were also immune to Magneto's power They were usually deployed from huge airborne dropships that looked similar to coffins, which had gunnery turrets on both sides.

    X-Men Animated Series

    \"Sentinels
    Sentinels in X-Men The Animated Series

    For More Information: X-Men The Animated Series

    The Sentinels were used to terminate mutants. Actually, the premiere episode of the series was entitled 'Night of the Sentinels' in which a Sentinel is tracking a young mutant (Jubilee) and soon becomes embroiled with a small contingent of the X-Men as they rush to aid Jubilee in a Shopping Mall.

    X-Men Evolution

    For More Information: X-Men Evolution

    The Sentinels were a project used to terminate mutants. However, this project was re-instateded to stop Apocalypse's Horsemen but unfortunately they were defeated.

    Wolverine and the X-Men

    For More Information: Wolverine and the X-Men

    \"Sentinels
    Sentinels in WATXM

    The Brotherhood presented a threat to Senator Kelly. To resolve this, He introduced the project: SENTINEL (during a Public Rally) to the people. The first Sentinel prototype unveiled, detected Rogue amongst the crowd and attacked her. It caused panic amongst the gathering, as it could not be controlled by Kelly's operating system, with the help of the X-Men, the Sentinel was neutralized.

    Ultimate Spider-Man

    For More Information: Ultimate Spider-Man

    A Sentinel appears in Arcade's Murderworld game, and battles Captain America, Spider-Man, and Wolverine. Spider-Man manages to reprogram the Sentinel to attack Arcade and help the heroes escape.

    The Gifted

    For More Information: The Gifted

    \"Sentinels
    Sentinels in The Gifted

    Sentinels appear in the live-action X-Men spin-off. Within the series, Sentinel Services is a special organization within the United States government tasked with protecting the country from mutant threats. The organization developed the Sentinels, small, spider-like robots, to hunt down and capture dangerous mutant targets.

    Audio Drama

    \"Pierce
    Pierce and Marshall
    • In the audio podcast drama Wolverine: The Long Night, Logan is pursued by a pair of FBI agents named Sally Pierce (voiced by Celia Keenan-Bolger in the first season and Christina Bennett Lind in the second) and Tad Marshall (voiced by Ato Essandoh). At the very end of Season 1, it is revealed that Pierce and Marshall are actually highly-advanced, human-sized Sentinels created by Weapon X to hunt mutants. The second season expands on the Sentinel project, revealing that they act at the behest of Master Mold, who seeks to worsen the tension between humans and mutants in order to justify the continued financial existence of the Sentinel program.

    Video Games

    \"The
    The Sentinel in Marvel vs. Capcom 2
    \"The
    The Sentinel in X-Men Origins: Wolverine
    \"Sentinels
    Sentinels in Ultimate Alliance 3

    Merchandise

    \"Marvel
    Marvel Legends and Marvel Universe
    \"Marvel
    Marvel Legends Haslab Sentinel
    • Toy Biz released a Sentinel toy as part of their 90s X-Men animated series line.
    • Toy Biz released a Sentinel Build-a-Figure that could be constructed after buying six figures (First appearance Spider-Man, Black Panther, Cyclops, Angel, Mister Sinister, Mystique and Omega Red) that each contained a Sentinel piece.
    • Sideshow Collectibles released a Sentinel statue.
    • Bowen Designs released a Sentinels statue.
    • Lego released an \"X-Men vs. Sentinel\" kit, which also included the Blackbird and several members of the X-Men.
    • Toy Biz released a large Sentinel toy as part of the 2006 X-Men line.
    • A Sentinel was included in Hasbro's Marvel Super Hero Squad line.
    • Hasbro released an exclusive 16-inch Sentinel figure at SDCC. It was later rereleased as part of the Marvel Universe line.
    • A Marvel Legends two-pack featuring a Sentinel and an older Wolverine was later released as a Days of Future Past set from Hasbro. The set was originally intended to be a Toys \"R\" Us exclusive, but was picked up by Amazon after the former went out of business.
    • In 2020, Hasbro launched a crowdfunding campaign for a premium Marvel Legends Sentinel. Standing at 26.3-inches in height, the Sentinel also included figures of Bastion and a Prime Sentinel.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8170/","id":8170,"name":"Among Us Stalk... the Sentinels!","issue_number":"14"},"id":4296,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2573288-tumblr_m9a6zwqulc1qiknbco1_1280.jpg","image_tags":"All Images,Artwork,Earth-616 Colossus,Earth-616 Cyclops,Earth-616 Nightcrawler,Earth-616 Sentinels,Earth-616 Storm,Earth-616 Wolverine,Earth-616 X-Men,MU Toyline Artwork"},"name":"Sentinels","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/sentinels/4060-4296/"},{"aliases":"Emma's Girls\r\nFive-in-One\r\nFour-in-One\r\nPhoenixes\r\nStepford Sisters\r\nThousand-In-One\r\nThree-in-One Weapon XIV","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-4443/","count_of_isssue_appearances":0,"count_of_team_members":5,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-08-16 15:08:38","deck":"The Stepford Cuckoos are five powerful telepaths - cloned daughters of Emma Frost's - who can combine their telepathic abilities to create a much more powerful hive-mind. The Cuckoos are currently acting as psychic emissaries to the mutant nation & are residing at The White Palace in Krakoa with Emma Frost.","description":"

    Origin

    \"The
    The Stepford Cuckoos

    Celeste, Esme, Mindee (Irma), Sophie and Phoebe are daughters of Emma Frost, cloned from Emma's ova cells while she lay in a coma after her Hellions were killed. Aged by a bubble that bent space and time, the Cuckoos joined the X-Men. It was eventually discovered that there were actually a thousand more clones of Emma Frost who had been created by the Weapon Plus program. They were collectively known as \"Weapon XIV\". These surplus clones were destroyed by the Phoenix Force while it possessed the body of Celeste.

    Creation

    The Stepford Cuckoos were created by Grant Morrison and Ethan Van Sciver. They first appeared in New X-Men #118. Originally Grant Morrison intended the first letter of each of the girls name to spell S-P-I-C-E, but as he never finished naming the girl, the last was named Mindee. This was later corrected by Matt Fraction, who attributed the name Irma to Mindee.

    Major Story Arcs

    Riot at Xavier's

    For further details see: Riot at Xavier's

    \"Top
    Top Students

    During the student riot on opening day headed by Quentin Quire - a student, powerful telepath, and the Cuckoos' chief rival who had an unrequited love for Sophie - Emma offhandedly chastised the girls for hiding during the riot rather than assisting to end it, as she felt true heroes should. Inspired by Emma's words, Sophie used Kick to increase the Cuckoos' abilities and used Cerebra to stop Quentin. Although Quentin was defeated, the overexertion and her sister Esme's unknown telepathic suggestion resulted in Sophie's death.

    \"Open
    Open Day

    The remaining Cuckoos were later awarded for their bravery and outstanding use of telepathy in line with the ideals of the Institute. After Sophie's untimely death, they began calling themselves the Four-In-One. The Cuckoos blamed Emma Frost for Sophie's death, and separated themselves from her. This hurt her greatly. The Stepford Cuckoos then telepathically communicated with Jean Grey while at a gathering, not only to test the new limits on their reduced powers, but also to tell her about Emma's telepathic affair with Scott. Jean furiously confronted Emma and trampled through Emma's mind, humiliating her. Emma managed to barely hold out against this attack in her diamond form until Scott willingly showed Jean that nothing had happened. Emma was later discovered in her diamond form, shattered in pieces, having been shot by a diamond bullet while in her diamond body, which had one flaw. To help find the murderer, Sage and Bishop came to investigate. They found that Angel Salvador killed Emma, but was being mind-controlled by Esme, who was working for Xorn (Magneto). Deciding to flee, Esme told the other Cuckoos that she desired individuality and that Emma Frost did not care about them, but instead only wanted to make them like her. Bishop and Sage confronted Esme as she was leaving. Esme telepathically defeated both of them and joined Xorn/Magneto.

    \"Sophie's
    Sophie's death

    Xorn, believing himself to be Magneto, began destroying New York, planning to reverse the magnetic poles and leading a new Brotherhood of Evil Mutants with Esme as a member. Esme believed that Xorn/Magneto reciprocated her feelings of love, but he rejected her. During the chaos, the X-Men joined together to stop him, and Celeste, Phoebe and Mindee used their telepathy to safely guide civilians to safety.

    \"Esme's
    Esme's death

    Hurt by his rejection and concerned for Xorn/Magneto's sanity, Esme and the others turned against him. Esme used her telepathy to destroy Xorn's mind. This caused him to lash out and kill her by magnetically ripping out her earrings and forcing them into her brain. Esme died in Emma Frost's arms, with Emma saying, \"...you turned into such a wonderful little femme fatale in the end, didn't you? I’m ever so proud of all my girls but you ... I think I’m most especially proud of you, dear.\" Despite this, Esme's last words to Emma were \"...Nothing like you...\".

    With Esme's death, the girls resolved their differences with Emma and called themselves the Three-in-One.

    The three remaining Stepford Cuckoos were members of the Corsairs, until they disbanded following M-Day. The Stepford Cuckoos were instrumental to defeating Blob, whose few vulnerabilities included telepathy. They were also seen going to the dance with Hellion. The three survived the depowering caused by Decimation, and remained as students at the school.

    The Phoenix Endsong

    For further details see: Phoenix Endsong

    \"Kid
    Kid Omega with Sophie's Body

    Quentin Quire awoke from his psionic stasis when the Phoenix manifested itself on Earth again and revived the recently deceased Jean Grey. Realizing that the Phoenix could revive Sophie, he unearthed her body and confronted the Phoenix, stating that he would give it whatever it wanted. The Phoenix Force revived Sophie, who took one look at Quentin as he professed his love to her, and responded, \"Eww.\" Sophie then reverted to a corpse again, preferring death to being with Quentin. The other Cuckoos assisted the X-Men as they fought the Phoenix Force by using Cerebra to contact all of the X-Men and collecting them to channel positive thoughts and love to Jean Grey. Jean Grey was then able to wrest control from the Phoenix Force and spiritually move onward to the White Hot Room, dying again. Quentin realized that Sophie would never love him and returned to a deep sleep. Meanwhile, a shard of the Phoenix communicated with one of the Cuckoos, who responded \"Oh, of course. What took you so long?\"

    Phoenix Warsong

    For further detail see: Phoenix Warsong

    \"Celeste\"
    Celeste

    In the follow-up series, X-Men: Phoenix Warsong, the Cuckoos' origin was revealed, and the Cuckoos, having been contacted by the Phoenix, began manifesting new powers such as telekinesis and the ability to generate fire. The three Cuckoos each handled the Phoenix's influence differently. Celeste feared the power of the Phoenix, remembering how it drove Jean Grey insane, while Phoebe embraced its destructive powers. They went to different staff separately to try to work out their feelings and their growing identities, free of their sisters. However, before the X-Men could effectively intervene, the Phoenix took over and the Cuckoos returned to The World, the headquarters of the Weapons Plus program. Meanwhile, Esme and Sophie mysteriously revived, albeit in decaying forms, and spoke of collecting information and realizing their true mission.

    The X-Men followed the Cuckoos and learned that as creations of The World, the Cuckoos have implanted nano-technology that caused them to unknowingly transmit any and all information they encountered back to The World. Thus, Esme and Sophie did not actually return to life, but were rather piloted by their nano-technological systems. In addition, Emma learnt that the Cuckoos were truly her daughters, having been cloned from her eggs, which were harvested by Dr. Sublime while she was in a coma following a Sentinel attack years before. Sublime cloned a thousand Cuckoos, in tanks hooked up to machinery. The original five were released to infiltrate the school and transmit information. Their origins were never questioned due to a strong telepathic block placed in everyone's minds which would cause their thoughts to redirect whenever they questioned where the Cuckoos came from.

    \"Weapon
    Weapon XIV

    Dr. Sublime intended the remaining Cuckoos to return and join their \"sisters\". The true purpose of the Thousand-In-One (called Weapon XIV) was to combine their minds into one immense psychic weapon and telepathically kill every mutant on the planet. By assimilating the original Cuckoos into the one, Sublime would be able to control the power of the Phoenix through his control of the Thousand-In-One. It was then revealed that every Cuckoo could also turn into a diamond form, but unlike Emma, their diamond forms were flawless. He could then use the Thousand to split the Phoenix between all of them and trap it within their diamond bodies, thus giving him further control. Mindee willingly chose to re-assimilate, but Phoebe attempted to fight her way out. The X-Men attempted to destroy Sublime. When the X-Men severed Sublime's control of the Thousand and deactivated all the Cuckoos' nano-technology (including the original three), each individual clone awoke with their own consciousness and reached out to their sisters and mother.

    It was revealed that Celeste was chosen as the primary host for the Phoenix because it heard Celeste \"call\" to her, as Celeste longed to feel, to live, and to burn with life. Emma reached out to a fearful Celeste and told her that her methods of teaching - trying to make the girls cold and emotionless as a means of protecting them - was flawed and that she hoped the girls would live with passion. She then gave Celeste the confidence to do \"what was right\" with the Phoenix Force and for her sisters.

    \"Three-in-one\"
    Three-in-one

    However, to Emma's horror, the Phoenix used Celeste to destroy every \"sister\" of the Weapon XIV and the revived Sophie and Esme in order to end their threat against mutant-kind. The only ones spared were Celeste, Mindee and Phoebe. During the aftermath, Celeste begged the Phoenix to leave her as what it had forced her to do was too much. The Phoenix decided it wanted to stay with Celeste, so to stop it, Celeste divided her into three, and each remaining Cuckoo turned her heart into flawless organic diamond. Doing so trapped the Phoenix within them so that it could no longer wreak havoc. Unfortunately, this also caused the Cuckoos to lose their emotions forever. Thus, the Cuckoos - especially Celeste, who longed to truly live, grow, and love - sacrificed their ability to ever do so for the sake of maintaining peace. In truth, the Phoenix they encountered was merely a shard of the true Phoenix, having been shattered into billions of pieces at the end of X-Men: Phoenix Endsong. Despite this, that shard remained divided in three and sealed within Celeste, Mindee, and Phoebe.

    These events devastated Emma, whose thousands of cloned daughters had each just begun to reach out for her with their minds when the Phoenix chose to destroy them. Emma then vowed that the Phoenix would have to contend with her if it ever returned, be it cosmic entity or in the form of Jean Grey.

    Quest for Magik

    For further detail see Quest for Magik

    \"No

    The Cuckoos helped Elixir to master biological manipulation by taking all biological and medical information from Beast's head and duplicating it in Elixir's mind. Along with the other students, they were captured by Belasco and sent to Limbo as he searched for Illyana Rasputin. There, they had helmets forced onto their heads which blocked their telepathy. X-23 and Prodigy managed to remove them, allowing them to help defeat Belasco. In doing so, they learned that Belasco loved Illyana, but was only able to revive her soulless body, Darkchilde, her soul lost and unreachable. After the defeat of Belasco by Pixie and Darkchilde, the Cuckoos and the other students returned to the Institute, which reverted as if nothing had occurred.

    Messiah Complex

    For further detail see: Messiah Complex

    The Cuckoos helped the X-Men to find a baby mutant, the first post-Decimation mutant child born. Using the newly fixed Cerebra, the three help them also helped to find the Marauders.

    Old Ghosts and Secret Invasion

    For further details see: Old Ghost and Secret Invasion

    \"Elixir
    Elixir and the girls

    Afterwards, the Cuckoos and their fellow classmates rejoined the X-Men in San Francisco. The girls later helped keep the new X-Force a secret by erasing Elixir's memories at his own request. They remained loyal to Cyclops and kept their own silence on the subject of X-Force.

    During the Skrull's invasion on Earth, the Cuckoos helped defend San Francisco from the Skrulls. When the Skrulls created a psychic blockade, it rendered every telepath useless and attempting to use their powers hurt them psychically. They soon channeled their powers to Emma Frost with the help of Cerebra, in the hopes that Frost would find and destroy the psychic blockade. Emma's psyche was temporarily disconnected from her body as she fought off the psychic Skrulls. The Cuckoos followed Cyclops' orders and used their telepathy to keep Emma's autonomic functions going, thereby animating her empty body. Emma finally destroyed the blockade, allowing the girls to use their telepathy again.

    Nation X

    For further detail see: Nation X

    \"The
    The Phoenix Fragments Leaving

    When Scalphunter sent a group of Predator X to Utopia, the X-Men were forced to battle the mutant-eating creatures. The Cuckoos served as a means of telepathic communication for the team, but during the battle, the Phoenix fragments that were contained inside their diamond hearts left them. It mysteriously returned to space, leaving the girls unconscious.

    Once the Stepford Cuckoos woke up from their coma, they began scanning for the Phoenix. Since they couldn't find any trace of the psychic entity, they asked Rogue to take some of their power so they could try passive scanning, as Mindee believed that the Phoenix could bend active psychic probes the same way a black hole does with light. They explained to Rogue that she wouldn't just get the power, she'd get the perspective as well, the perspective of triangulating on people's minds. When Rogue finished with the Cuckoos' powers, they said that the silence of little or no telepathy could be deafening. They also told Scott that they didn't find anything on Cerebra. He then asked her if they had gotten a trace of the Phoenix when it left them, and they replied that it got further and further away without actually moving.

    Avengers vs X-Men

    The Cuckoos were relocated from Utopia after the Phoenix-crazed Scott and Emma began acting out. The Cuckoos, along with the other transfers, attended the Jean Grey School, where they monitored the final battle - nearly all of the X-Men and Avengers versus Dark Phoenix (Scott Summers) - via Cerebra and were telepathically present when Charles Xavier was killed. The three Cuckoos informed Kitty Pryde, the Headmistress of JGS at the time, and all four women comforted each other.

    New Charles Xavier School for Mutants

    Scott Summers, now a mutant renegade, and his team of Uncanny X-Men (currently consisting of Emma Frost, Magik, Magneto, Kitty Pryde, and Dazzler) teleported to the Jean Grey School to announce the opening of his own new school: the New Charles Xavier School for Mutants. He extended an invitation to any students who wished to join. After a brief confrontation with a powerless Emma Frost, the Cuckoos agreed to attend, as did the time-displaced Warren Worthington III.

    Death of X

    The Cuckoos were a part of the team that discovered that the Terrigen cloud was toxic to mutants. They traveled with Emma Frost, Cyclops, Magik, Iceman, and Goldballs to Muir Island to investigate a distress call they received. They discovered the bodies of Multiple Man, writhing in agony before dying. Emma and Cyclops proceeded into the facility, where Cyclops was soon poisoned by the mist. Though he had died, Emma projected an image of Cyclops to honor his legacy. The Cuckoos were able to see this, but Emma threatened them, forcing them to keep quiet about his death. Together, Emma and the Cuckoos projected an image of Cyclops to everyone on the entire planet, delivering a speech to inform the world about the toxicity of the Terrigen Mist. The Cuckoos helped Emma destroy half of the Terrigen Mists roaming the world. After a brief conflict with the Inhuman royal family, Cyclops appeared to have been killed by Black Bolt. This was just the projection, as Cyclops had already died from the mist, but no one knew that except the Cuckoos. A truce was negotiated, and Emma agreed to give the Inhumans some time to work things out their way.

    Inhumans vs X-Men

    \"No

    The conflict between the Inhumans and the X-Men escalated when Beast discovered that the mutants had approximately one week left to live. Emma returned to the fold with the Cuckoos, and prepared for war. The Cuckoos helped Emma throughout the conflict, and especially in the final battle when they hijacked the minds of several Inhumans, turning them against their own people. They continued to fight alongside Emma, until the climax of the battle, when Emma was revealed to have engineered the entire conflict to avenge Cyclops. It was also revealed that Black Bolt had not actually killed Cyclops, but only the projection of him created by Emma, as the Cuckoos already knew. After the conflict had subsided, Emma had gone into hiding, and the focus of the Cuckoos returned to their education. They enrolled in the Xavier Institute for Mutant Education and Outreach, headed by Kitty Pryde and located in Central Park.

    Powers

    Telepathic Gestalt

    \"Psychic
    Psychic Gestalt

    The Stepford Cuckoos are powerful telepaths, who can combine their telepathic abilities to create an even more powerful hive-mind. Their telepathic powers include broadcasting and receiving thoughts, mind control, planting illusions, blasts of pure psionic energy, seeing through another person's eyes, and also are so powerful that they are one of the few people able to operate Cerebra. The Stepford Cuckoos are considered to be near Omega-level mutants, though they have never been classified as such, and since the deaths of their two sisters, have reduced in power.

    Hive Intelligence

    The Cuckoos shared mental link also bolstered their collective intelligence. This allows the Cuckoos telepathic not only to multiply by an incredibly high factor through their shared mindscape. But it also massively accelerated their brain power and analytical processing speed. Accumulatively making their intellectual prowess even greater than the sum total of each of the girls individual parts. Likewise it is unknown how powerful they're combined genius is with the main two of their psychic mind; Sophie and Esme.

    Diamond Form

    \"No

    The Cuckoos have also inherited the ability to turn into organic diamond like their mother, Emma Frost. However, unlike Emma, their diamond forms are flawless and cannot be shattered. All three can either turn an internal organ into perfect diamond while staying organic on the outside like they did with their hearts to imprison and capture the errant Phoenix shard during events of Warsong or fully become diamond to protect themselves during an ambush by demons in Limbo. During this event, the sisters had to communicate orally in order to agree on a plan to psychically influence the group of new mutants with bravery. To do this they had to become become organic again, sharing the same restrictions Emma has in her Diamond form.

    Alternate versions of the Cuckoos have also demonstrated the power of precognition. This may or may not be true for the Earth-616 Cuckoos.

    Former Powers

    Phoenix Force

    In X-Men: Phoenix Warsong, they were the avatars of the Phoenix. During possession, they displayed new powers related to the Phoenix, such as Phoenix-granted telekinesis and fire generation. It is unlikely that they still possess these abilities, however, especially after their captured Phoenix fragments left them abruptly during the Nation X storyline. It should be noted that avatars of the Phoenix are normally only Omega-level mutants and that the Phoenix in question was merely a shard of the full Phoenix Force. Regardless of this, they are uniquely powerful telepaths and essential to the X-Men. Often, they maintain telepathic communication for the teams via Cerebra when Emma is occupied with other missions.

    Alternate Realities

    Earth-15104

    \"Here
    Here Comes Tomorrow.

    The Stepford Cuckoos also exist on Earth-15104, known as Here Comes Tomorrow. In this reality, there were only three of them left - Celeste, Mindee and Phoebe - and they called themselves the Three-in-One. They also seem to have a self-destruct sequence within their consciousness, and this is the first reference to the sisters being Weapon XIV. The Three-In-One assisted the new team of X-Men in this apocalyptic future. When the Sublime-controlled Beast re-awoke and controls Jean Grey as the Phoenix, they alert the others. Sensing that the crazed Phoenix will burn away their minds, they initiate a self-destruct sequence, committing suicide.

    Earth-58163

    \"House
    House of M

    On Earth-58163, House of M, all five Cuckoos were alive and well. Sophie still seemed to be the more dominant Cuckoo and still had the urge to be a heroine. When she found out that David and Nori were going to Japan to find Nori's father (who was labeled as a human terrorist by S.H.I.E.L.D, who were also looking for him, but to put an end to him), Sophie decided that she wanted to help them and left her sisters to go to Japan.

    Sophie proved to be quite an asset to the team that went to Japan (which included Prodigy, Surge, Jubilee, Dust, Wallflower and Mercury). Even though most of the human terrorists were shielded from psionic attacks, Sophie still had enough power to manipulate some of their thoughts, and make them do as she commanded. She also helped the New Mutants in a premature face-off with the Hellions, and when Quill attacked Prodigy, she commanded Quill to surrender to her, which he did. She also was able to scan minds, which was how she learned that Wallflower was really working with the people of an experiment known as 'Project Genesis' which was what the New Mutants and the human terrorists wanted to shut down.

    Wallflower quickly used her pheromones to make all the parties involved (New Mutants, Hellions and the human terrorists) hate each other so much that they would fight to the death. This brawl was ended by Mercury, who was immune to Wallflower's pheromone manipulation, when she killed Wallflower. Wind Dancer of the Hellions, cleared the pheromones in the air with her wind-manipulating powers, and Sophie, knowing that the pheromones only fueled hatred that was already there, started to use her psionics to strip the hatred so there would be no more fighting. Tragically, Sophie was gunned down by a human terrorist who was immune to her psionic manipulation, as she was trying to make peace, but the gunman refused to be at peace with mutant-kind and wanted to fight them.

    Earth-91172

    On Earth-91172, a world ravaged by the Hulk, three of the Cuckoos are alive. Mindee and Esme are the Two-in-One and Sophie has broken away and developed precognitive abilities. They are members of the Next Wave of Heroes - the last heroes of Earth led by Quentin Quire. Other members are Patriot, Wiccan, Lightspeed and Speedball. Sophie dreams of a team of dimension-hopping heroes who can help them (the Exiles), which leads to Quentin trying to reach them and create a new team, the New Exiles. In this reality, Quentin and Sophie are a couple.

    X-Men: The End

    \"X-Men:
    X-Men: The End

    In X-Men: The End, a possible alternate future, Celeste, Mindee and Phoebe, call themselves the Spikes. They all have individual appearances, such as curly blonde hair or a shaved head and golden glowing eyes, instead of blue or white as they are usually depicted. The girls assist the X-Men, working with Martha the Mutant Brain to keep the team informed and also assist during the battle against Cassandra Nova.

    Other Media

    Television

    Wolverine and the X-Men

    \"Wolverine
    Wolverine and the X-Men

    In Wolverine and the X-Men, the Stepford Cuckoos are members of the Hellfire Club and were used by Emma Frost to release the Phoenix from Jean Grey to prevent the destruction caused by the aforementioned entity. The Cuckoos had difficulty releasing the Phoenix and were consumed by the entity. They went on to cause trouble in the city and Emma, Scott, and Jean had to join forces to fight them. Scott blasted them with his optic blast to capture their attention, then Emma and Jean used their combined powers to trap the Phoenix Force in Emma's diamond form, freeing the Cuckoos. As confessed by Selene to Scott, the mysterious explosion in the Institute that caused the X-Men's temporary disbandment was caused by Emma with the help of the Cuckoos. Wolverine also sensed a vision of Emma and the Cuckoos taking Jean.

    The Gifted

    \"Skyler
    Skyler Samuels as the Stepford Cuckoos in The Gifted

    The Stepford Cuckoos debuted in the first season of the serie, playing a major rol. Only 3 of them appeared so far: Esme, Sophie and Phoebe. Their last name is Frost. They are played by Skyler Samuels.

    Games

    X-Men Legends 2 Rise of Apocalypse

    The Stepford Cuckoos appear as boss battles in the game X-Men Legends 2: Rise of Apocalypse. The player encounters the Cuckoos in the Madri Temple as they fight alongside Holocaust.

    X-men: Battle of The Atom

    \"X-men:
    X-men: Battle of the Atom

    The Cuckoos are featured in the mobile card game \"X-Men: Battle of the Atom\" based on the comic book story with the same name. Their cards are:

    • (3-in-1) Stepford Cuckoos
    • [New Xavier School] Stepford Cuckoos
    • New X-Men] Stepford Cuckoos
    • [Utopia Defender] Cuckoos
    • [Weapon X Renegades] Stepford Cuckoos
    • [Phoenix] Stepford Cuckoos
    \"No
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-78322/","id":78322,"name":"Germ Free Generation Part One","issue_number":"118"},"id":4443,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8102811-marauders_vol_1_23_aspinall_variant_textless.jpg","image_tags":"All Images"},"name":"Stepford Cuckoos","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/stepford-cuckoos/4060-4443/"},{"aliases":"Aufräum-Kommando","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-4951/","count_of_isssue_appearances":0,"count_of_team_members":31,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-04 12:37:47","deck":"An engineering and construction company that specializes in repairing property damage caused by superhero conflicts.","description":"

    Origin

    The world learned about the existence of Damage Control through the eyes of John Porter, a young insurance broker for super hero damage, when he was approached by Damage Control's Anne-Marie Hoag to come work for their firm as opposed to against it. The team's first recorded adventure is cleaning up the complete destruction of bar caused by a fight between Daredevil and Turk.

    On John's first day at work, the team tackles rebuilding downtown Manhattan after a battle between Thor, Spider-Man, She-Hulk, Black Knight and one of the Tinkerer's robots. It's during this clean-up Damage Control construction worker, Rex Randolph, finds a cosmic artifact that turns him into Edifice Rex.

    Creators

    Damage Control was created by Dwayne McDuffie and Ernie Colon and first appeared in Marvel Comics Presents issue 19 (1989).

    Major Story Arcs

    Damage Control!

    A test of Doctor Doom's latest weapon invention goes wrong and turns an entire building into glass and Damage Control is called to help out. It's revealed that Doom hasn't paid his bill in over six month and after some debate, Albert Cleary is sent to collect on Doom's account. Meanwhile, Thing charges into Damage Control's offices demanding to speak to someone because his insurance had told him he was no longer covered because his policy only covered the original Fantastic Four. John Porter works this out by having Thing growl over the phone to the insurance company and once Thing pays his deductible, all is well. Thing finds out that Albert went by himself to collect from Doom and he summons the rest of the Fantastic Four to rescue him. Albert turns out to not need help as he gets Doctor Doom to write a check himself and uncovers an embezzling scheme in the process. Once the account is paid, Damage Control can deal with the glass house in the way only Damage Control can.

    Head of marketing, Henry Ackerdson, comes up with a new Image Enhancement program for the firm. It includes splashy, action-filled commercials featuring Fix-It Man, Fix-It Girl and Fluppy, the dog. His plan also includes uniforms for all employees and the drilling of a tunnel from Damage Control headquarters to their Warehouse in New Jersey. Ackerdson gives the tunnel digging crew from Stark Enterprises the wrong coordinates and sends them drilling under the Hudson river which causes the tunnel to start to flood. Iron Man saves the day by placing a big metal plate at the bottom of the river to stop the flooding. The warehouse is destroyed however. Anne-Marie Hoag cancels the Image Enhancement program and makes Henry clean up the mess where the warehouse used to be.

    As part of the Inferno event, Damage Control is asked by the county to investigate a series robberies of building supplies at construction sites and lumber yards and the team winds up at Xavier Institute for Higher Learning which is now a pile of rubble. Turns out some members of Damage Control had been there before to do some repair work and unwittingly unleashed a pack of robot clowns on the mansion. Colossus, Storm, Kitty Pryde, Kitty Pryde and Nightcrawler help round them up. Back in the present, the team learns that the Danger Room is trying to rebuild the destroyed building and is responsible for the thefts. Damage Control shuts down the building's power and returns the stolen materials.

    Round Two

    \"After the earth-shattering conclusion...Once justice is served...When at the last possible moment, the world is again saved from the very brink of destruction...It's time to pick up the pieces...DAMAGE CONTROL!\"

    When we next see Damage Control it's smack in the middle of the Acts of Vengeance storyline and the team is at the base of one of the support towers of the Brooklyn Bridge. The support has been destroyed and the only one keeping the whole bridge from tumbling to ruins is Thor who's hoping DC can come up with a solution quick. Meanwhile back at Damage Control HQ, it is Bart Rozum's last day and receptionist Anne gives him a heck of a going away present. Elsewhere in the building, Anne-Marie Hoag gets a phone call from President George Bush asking her to join the Commission On Superhuman Activities. She decides to take the job leaving Robin Chapel in charge of the business. Meanwhile, across the continent in Colorado, a prison break is in progress at The Vault and the escaping Wrecking Crew finds their crowbar. John Porter, Gene Strausser and Bart Rozum are sent to help out at The Vault after seeing to the repairs to the bridge.

    Anne-Marie Hoag goes to tell her business partners, Tony Stark and The Kingpin about her new position and finds out they've sold their interests in the company to CarltonCo. Meanwhile at The Vault, John Porter, Gene Strausser and Bart Rozum restore power and are promptly capture by The Wrecking Crew. Thunderball recognizes John Porter whom he met one day at the Damage Control offices and he convinces the rest of the Crew that they are not worth taking hostage. Soon Captain America arrives at The Vault to rescue our team and put the criminals back behind bars. Arriving back in New York, John and the rest of the team find out about the sale of Damage Control and find that CarltonCo has done a little work on the Damage Control Headquarters.

    Following the Kingpin's trail of money leads the Punisher to Damage Control's newly redesigned headquarters. He busts in, guns drawn, only to be told to take a number and wait to be served. Using a robot of Doctor Doom, Gene Strausser scares off the Punisher. Jarvis gets Damage Control to retrieve the Avengers Mansion from underwater. Meanwhile, Albert Cleary discovers something strange in CarltonCo's reorganization plan for Damage Control and because of it Gene Strausser is fired. He vows revenge on Damage Control. Bart Rozum is promote to assistant and his first action is to hire a new intern in the form of Robbie Baldwin. The Punisher tracks Robin Chapel to her home but some quick thinking prevents him from causing any harm. Another part of the new business plan for Damage Control is not to honor the worker's negotiated contract which leads Lenny Ballinger to call a strike!

    With Damage Control employees on strike, the destruction in the city is mounting. John and Robin try to figure out a solution. Meanwhile, Rob Washington is summed to a mysterious warehouse where he's offered a powerful battlesuit to extract his vengeance on the city in return for helping someone with their vengeance. Damage Control. John and Robin call in the Avengers to help them repair buildings all over town. While fixing the Daily Bugle building which had been knocked off it's foundation, She-Hulk is attacked by two men in battlesuits. Robbie Baldwin as Speedball comes to save the day and it is revealed that the mastermind behind the battlesuits is none other than Gene Strausser. By the end of the day, Gene Strausser is in jail, The Daily Bugle is on it's side, the Avengers Mansion is back underwate and the strike is still ongoing with no end in sight! Robin Chapel calls Anne-Marie Hoag for guidance, but is told she has other matters to discuss. When she hangs up we see Anne-Marie Hoag is in a meeting with Albert Cleary and Nick Fury.

    Albert Cleary is plotting with Nick Fury to attempt a hostile takeover of Damage Control. Ray Lippert warns Robin and John that CarltonCo is willing to gut Damage Control to raise cash. Robin talks Lenny into getting the Damage Control crew to put off the strike for an afternoon to save some folks trapped in a collapsed building. Nick Fury arrives with a newly released Gene Strausser, who it turns out used to work for SHIELD and is truly sorry for the crimes he committed. Gene has an idea to stabilize the building from the inside. Meanwhile, Fury, Hoag and Cleary march into Mr. Souris' office to attempt the hostile takeover. Turns out Souris had used a loan from Kingpin to purchase Damage Control. Cleary uses this information to make Souris agree to sell Damage Control back to Anne-Marie using money borrowed from Fury. Robin meets with Kingpin to inform him that his dealings with Damage Control are now over. Hoag restores all Damage Control employees pay raises and the strike is over and the people in the collapsing building are saved. To wrap up the day, John Porter restores Damage Control headquarters to it's original form. Anne-Marie heads back off to Washington, D.C. and it's business as usual at Damage Control.

    Civil War

    While tracking down Nitro during the Civil War event, Wolverine finds out that when Nitro exploded in Stamford (the event that triggered the Civil War) he was hopped up on Mutant Growth Hormone given to him by Walter Declun, CEO of Damage Control, Inc. It was then revealed that Damage Control received the clean-up contract for Stamford and subsequent government contracts for superhero registration, evaluation and training. Wolverine goes on a one man war against Damage Control, destroying their warehouse and financial interests. Anne-Marie Hoag fires Declun who then takes some Mutant Growth Hormone and goes up against Wolverine in a battle that finds Declun put out of commission...permanently.

    Search and Rescue Team

    \"Ant-Man
    Ant-Man meets Damage Control

    After the events of the Civil War, Damage Control needed a public relations facelift. To that end, a Search-And-Rescue Branch of Damage Control was created. The purpose of the team is to head into superhero battle damaged areas immediately after or shortly before the end of any battle to assist in the search and rescue of any civilians who may be trapped or injured in the rubble. Lenny Ballinger is leader of this new branch. Also on the team is Monstro and Visioneer.

    Ant-Man (Eric O'Grady) finds himself on the team after saving a civilian. Because he was currently a fugitive from SHIELD for stealing an Ant-Man suit, he told them his name Derek Sullivan and his codename was \"Slaying Mantis.\" He had a pretty contentious but oddly friendly relationship with his co-workers. He and Visioneer started up a romantic relationship pretty quick, but O'Grady didn't take it well when he found out she had a kid. He also had comradery with Monstro, who also had a shady past. However, Monstro was being blamed for an accident that happened after he got his powers, but he knew O'Grady was more of a con man.

    World War Hulk

    \"The
    The turn out for Hulk duty

    After the Hulk rampages through New York City looking for vengeance on the Illuminati, Iron Man hires Damage Control to clean up and rebuild, mostly using funds from a federal insurance program for superhero damages. Damage Control was able to call on hands on deck, with many of New York's superheroes showing up to help out. This only got the attention of the Thunderbolts, who needed to check everyone's registration.

    Notably among the superheroes was the new Black Goliath, who started working with the Search-And-Rescue team. They have to face their greatest challenge yet when the Chrysler Building grows a face and hands and starts yelling. They are afraid it might continue to act out, but Damage Control doesn't take down buildings. So, they continue the diplomatic approach.

    Corporate Expansion

    Now a joint venture between Stark Unlimited and the U.S. government, their responsibilities have grown to include the safe retrieval and storage of any and all items of interest that they find on site.

    Employees

    MANAGEMENT

    SEARCH-AND-RESCUE BRANCH

    FORMER EMPLOYEES

    • Robbie Baldwin - former intern
    • Edifice Rex - Former construction worker
    • Laura - Former Damage Control Traffic Controller. Replaced By Sue.
    • Sue - Former Damage Control Traffic Controller. Replaced by Andrew.
    • Andrew - Former Damage Control Traffic Controller. Replaced by Lisa.
    • Lisa - Former Damage Control Traffic Controller. Replaced by Bart Rozum.
    • Walter Declun - Former Damage Control CEO - Deceased
    • Slaying Mantis (Ant-Man) - Eric O'Grady

    Other Versions

    Ultimate Damage Control

    In the Ultimate Marvel Universe, it is The Wrecking Crew who serves is Damage Control. Their responsibilities are still cleaning up after superhero battles.

    In Other Media

    Ultimate Spider-Man

    \"No

    Damage Control appears in the episode \"Damage.\" Spider-Man and his friends are forced by Nick Fury to work for Damage Control after they cause a significant amount of damage to the city. While doing so, the figure out that the Wrecking Crew had gotten jobs at Damage Control to use their resources for looting. The character Mac Porter replaces John Porter and resembles Dwayne McDuffie, the creator of the team, who had recently died.

    Marvel Cinematic Universe

    Spider-Man: Homecoming

    \"Tyne
    Tyne Daly as Hoag

    Damage Control appears in Spider-Man: Homecoming in a flashback intro sequence where the Vulture's legit salvage business is replaced by Anne-Marie Hoag's federal agency, co-founded by Tony Stark.

    Anne-Marie Hoag is portrayed by Tyne Daly

    Spider-Man: No Way Home

    \"Moayed's
    Moayed's Cleary interrogating Peter Parker

    Damage Control resurfaces in Tom Holland's third Spider-Man solo movie, Spider-Man: No Way Home. It has been renamed the Department of Damage Control and now has duties similar to former SHIELD agency, tracking \"enhanced\" individuals. After Peter's identity was exposed at the end of his previous movie, they bring him in for questioning regarding the death of Mysterio.

    Albert Cleary (renamed P. Cleary) is the main agent. He is portrayed by Arian Moayed.

    Ms. Marvel

    The Department of Damage Control shows up again as antagonists in the Ms. Marvel web series. After Kamala Khan is caught on camera using her powers, they start poking around the mosques looking for an enhanced Muslim girl.

    Arian Moayed reprises as Agent Cleary.

    She-Hulk: Attorney at Law

    The Department of Damage Control appears in episodes of the Marvel sitcom as the agency in charge of the supermax prison holding Emil Blonsky/The Abomination.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-197621/","id":197621,"name":null,"issue_number":"4"},"id":4951,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2727286-ohotmu_a_to_z__2___page_10.jpg","image_tags":"All Images,Logos"},"name":"Damage Control","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/damage-control/4060-4951/"},{"aliases":"Sleazoids","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-4987/","count_of_isssue_appearances":0,"count_of_team_members":29,"date_added":"2008-06-06 11:27:48","date_last_updated":"2018-11-11 20:42:21","deck":"The Brood are a race of alien parasites that reproduce by implanting their eggs in others. They are a recurring enemy of the X-Men, Sh'iar, Carol Danvers and others in the Marvel Universe.","description":"

    Origin

    Queen

    The Brood's civilization is based on insect societies such as the bees or ants consisting of a Hive-like lair. All Brood civilizations share strong telepathic bonds with their Queens, thus predicting no rebellions occurring against the Queens. The Broodlings do all the work and have an undying allegiance to their Queen, however each Queen do not share in a common interest.

    Subspecies

    There are a few different types of Brood. Starting with the Broodlings who are brown in color and have known to have transparent wings. Next up is the Queen, which is also brown in colour and have no wings. They give out the orders to the Broodlings to fulfill. The second last are referred to as \"the Pure-Borns\", they are the firstborn offspring which have had no exposure to other races, they are green in color and rather large.

    Lastly, the Empress Brood which is also green in colour and extremely large, they are the supreme rulers of the Brood. Recently Phyla-Vell (the new Quasar) and Moondragon encountered and fought a newly discovered strain of the Brood species above the planet Dlaw-Neurg during the events of Annihilation: Conquest. Unlike its brethren the Brood had no eyes, a brown-colored heavily armored exoskeleton and silver-colored wings.

    The Brood also possessed the ability to breath in space and was at the very least three times the size of a full-grown Brood Empress. The creature, as far as anyone can tell, was little more than a feral beast and was not raised in a Hive-mind culture like its cousins. Moondragon later deducted that the Brood (along with a sand-dwelling member of a previously undiscovered gargantuan insectoid species) were the guardians of a deserted palace Adam Warlock once lived in sitting in the sand dunes of Dlaw-Neurg and therefore were not actually natives of Dlaw-Neurg leaving the Brood's true origins open to speculation.

    Recently, an unknown alien adversary of Kitty Pryde secretly infected her with an airborne virus that impregnated her with a microscopic Brood egg-sac, which made her body grow into that of a pregnant woman in her ninth month within a span of a few hours. It should be noted that these micro-Brood have been engineered to grow by consuming every last cell of their host from the inside-out and therefore must be removed before the Brood have a chance to grow out of control.

    Evolution

    \"Original
    Original form of the Brood

    Originally, the Brood had a much softer, docile form. Having traveled to the past, Wolverine came across one in a S.H.I.E.L.D. research facility. Rescuing the creature from his confinement, it attacked Wolverine by trying to put a Brood embryo inside him. Wolverine countered by stabbing himself in the abdomen where the embryo was. The embryo died and the creature tried to attack him physically. Wolverine slew it with his adamantium claws. Coming across a monitor, Wolverine saw that the creature was part of a hive which adapted itself according to the damage the creature had sustained. It developed an exoskeleton and expanded its teeth and jaws. Wolverine realized he was reponsible for the evolution of the Brood into the savage creatures they were today.

    Creation

    The Brood was created by Chris Claremont, Dave Cockrum and Bob Wiacek in 1982 and first appeared in Uncanny X-Men # 155.

    Major Story Arcs

    The Brood Saga

    Xavier and the X-Men are on a Shi'ar spaceship led by Lord Samedar and Araki. They tell the X-Men about Lilandra's kidnapping and their plan to invade Earth. The X-Men are opposed of course, so they head back to Earth and get Jarvis and Tigra to help. Deathbird and the Brood attack Corsair and Storm. The rest of the X-Men arrive to help them defeat the Brood, but Deathbird escapes and holds Xavier against his will.

    All of the X-Men were infected by the Brood, except Carol Danvers. Wolverine's healing factor saved himself by purging the virus. He saved the rest of the X-Men except for Fang who became a Brood Warrior. While the X-Men leave, the Brood Queen realizes this and instructs the Queen embryo inside Cyclops to stop them. They find a dead Acanti prophet and recover the \"Soul\" inside of a crystalline object in his brain. The Brood find the X-Men and defeat them while they mutate into the Brood themselves. The Soul starts to get corrupted as well, and Wolverine tries to stop his teammates. Carol arrives and has a new appearance due to the Brood experimenting on her, and she releases the Soul. It cures the X-Men, crystallizes the Brood Queen, and destroys the Broodworld. X-Men, Lilandra and Lockheed escape, as well as some of the Brood escaping from the exploding planet.

    One notable aspect of this story-line is when Storm is infected by the brood and heals herself by jettisoning into outer-space and becoming one with an Acanti being.

    Broodfall

    A Brood ship crashes to earth in the New Mexico desert. When a group of bystanders go to the crash site a sleizoids attack and kills most of them before it steals the identity of the last survivor. The man was a parametric, so the Brood uses this to infect dying mutants that he comes across during his job, therfore building a army of Brood that posses super powers.

    The X-Men sense their presence and go looking for them. They find the man who was originally infected but he fight off the X-Men. He leads them to a ally where they're attacked by a large group of Brood. The X-Men manage to fight off the group of Aliens, killing them one by one until finally killing their leader.

    Infiltrating the Assassins Guild

    \"Gambit,
    Gambit, Ghost Rider, and Wolverine vs The Brood

    Gambit's wife, Belladonna, arrives at the X-Men's mansion and tells them about a war between her's and Gambit's guilds. Gambit and the X-Men agree to travel to New Orleans to see what they can do to help.

    Meanwhile, Ghost Rider is traveling through New Orleans where he discovers a assassin that is not human. He chases him to his lair where he is attacked by the Brood.

    The X-Men arrive at the Guild of Assassins only to learn that they are no more, and have been taken over by the Brood. They also see that Ghost Rider is now possessed by the Brood, but Psylocke and Belladonna manage to free him at the cost of Belladonna's life. Gambit then swears vengeance upon the Brood for them taking the life of his wife.

    They discover that some of the Guild of Assassins remain alive. While the X-Men free them, Gambit, Ghost Rider, and Wolverine go off to confront the Brood Queen. Cyclops and the X-Men to free the survivors as the other three fight the Brood Queen. They defeat the Brood Queen with Ghost Rider delivering the killing blow.

    Alternate Versions

    Age of Apocalypse

    In this reality, the Brood possessed the Shi'ar who later encounter the Starjammers which included Cyclops and Havok's father, Christopher Summers. He ends up getting infected by the Brood. He later crashes on Earth and is later kept captive by Mr. Sinister. Christopher Summers later escapes the lab and meets up with his lost sons only to end up losing control to the Brood inside of him. He is then killed. In this reality another character infected was: Colleen Wing.

    Annihilation: Conquest

    Annihilus and the Annihilation Wave (a race of insects) led an invasion and destroyed nearly all of the Brood species.

    Planet Hulk (and World War Hulk)

    In Planet Sakaar, the Brood arrive and their Queen decides to mate with Miek, an insect king. They discover that Miek betrayed the Hulk, and the Queen and Hulk retaliate against Miek. The Earth Hive (an omni-consciousness of insects) decided to use Humbug to make the Queen infertile and kill the hivelings growing inside Humbug

    Ultimate X-Men

    The Brood in the Ultimate Verse are Danger Room programs. They later revealed to be creatures that originated from the Mindscape, where the Shadow King resides.

    In Other Media

    Television

    \"From
    From the Japanese opening
    • The Brood appear in the X-Men: The Animated Series episode \"Love in Vain,\" where they were heavily redesigned to have a more reptilian appearance. They were also known as \"The Colony\" in the TV series. A more classic looking Brood drone appeared in the episode \"Mojovision,\" as well as in the Japanese intro for the show, where they are led by Magneto.
    • The Brood are mentioned in an episode of the X-Men anime.

    Video Games

    \"A
    A Brood warrior in Marvel Heroes
    • The Brood appear as enemies in X-Men 2: Clone Wars.
    • The Brood appear as enemies in X-Men: Mutant Apocalypse
    • X-Men Legends II: Rise of Apocalypse features an alien race known as the Cerci, who were heavily inspired by the Brood. The actual Brood appear in the PSP port of the game, where they kidnap Carol Danvers and Lilandra.
    • The Brood appear as enemies in Marvel Heroes. Different types of Brood appear, including psychic Broods and more humanoid enemies known as Brood Hybrids.
    • The Brood are jokingly mentioned in Lego Marvel Super Heroes.

    Merchandise

    \"Marvel
    Marvel Select
    • The Brood were featured in ToyBiz's Uncanny X-Men line.
    • The Brood Queen was the subject of a Marvel Legends Build-a-Figure wave from Hasbro.
    • Diamond Select produced a Brood figure as part of a two-pack with a Skrull warrior.
    • The Brood were featured in the Minimates line from Diamond Select.
    • The Brood were featured in the HeroClix figure game.
    • Diamond Select produced a statue of Wolverine becoming a Brood in their Marvel Milestones line.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-22027/","id":22027,"name":"First Blood","issue_number":"155"},"id":4987,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/229769-25848-brood.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/229769-25848-brood.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/229769-25848-brood.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/229769-25848-brood.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/229769-25848-brood.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/229769-25848-brood.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/229769-25848-brood.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/229769-25848-brood.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/229769-25848-brood.jpg","image_tags":"All Images,Earth-616 Brood"},"name":"Brood","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/brood/4060-4987/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-5018/","count_of_isssue_appearances":0,"count_of_team_members":64,"date_added":"2008-06-06 11:27:48","date_last_updated":"2020-03-25 22:43:18","deck":"Weapon X is a program started by Weapon Plus. Their job is to create super soldiers for the government. Many have gone through the Weapon X program, including Deadpool & Wolverine.","description":"

    Overview

    Weapon X

    \"Wolverine:
    Wolverine: Experiment X

    Part of the broader Weapon Plus program (an initiative designed to produce Super Soldiers), Weapon X operated through Canada's Department K and was directed by Professor Thorton. At his side were Dr. Abraham Cornelius, Dr. Carol Hines and Dr. Dale Rice. John Sublime, the director of Weapon Plus, was always behind the scenes. Some of the work of Weapon X was based on the experiments detailed on the journals of Nazi scientist Nathan Essex, which were obtained by Weapon Plus after the end of World War II. The Project's original test subjects were the members of Team X, a covert ops CIA team (Wolverine/Logan, Sabretooth/Victor Creed, Maverick/Christoph Nord, Silver Fox/Kayla Silverfox, Mastodon, and Kestrel/John Wraith).

    The telepath Psi-Borg (Aldo Ferro) was involved in the creation of the victims' memory implants, in exchange for being endowed with immortality. The test subjects were policed by an adaptive robot enforcer, called Shiva, should any of the agents go rogue. What the Weapon X scientists did not foresee is that the experimentation on Wolverine would cause him to go on a murderous rampage, which allowed the escape of the other test subjects, and caused the deaths of the Professor and Dale Rice, among dozens of other members of Weapon X staff, both scientists and military.

    The Facility

    \"X-23\"
    X-23

    Weapon X was temporarily shut down, but eventually was reinstated. Subsequent attempts at recreating the success seen by Weapon X with Wolverine include the feral woman called the Native, Kimura and X-23, the 23rd attempt to clone Wolverine, who was designed to also hunt down rogue agents.

    The Weapon X Re-Creation Project a.k.a. The Facility was headed by Director Martin Sutter, Dr. Zander Rice and Dr. Sarah Kinney. Like Weapon X once did, the Facility has also branched off from the main Weapon X Program.

    Later creations of The Facility, now under the direction of Dr. Adam Harkins, include Predator X.

    Department K

    \"Deadpool\"
    Deadpool

    At some point, Weapon X branched off from Weapon Plus' control and was solely headed up by Canada's Department K. A new generation of agents were created: Deadpool, Garrison Kane (who took on the moniker \"Weapon X\"), Slayback, Sluggo, and Ajax, among others. Weapon X used Logan's DNA in order to endow its agents with healing powers. The batch produced many additional failures, which were sent to a facility for dissection to determine the cause of their failures.

    These rejects were freed by Deadpool when he escaped from the facility. A smaller experiment was later developed by Department K with a New Zealand terrorist, who would become the third individual to be known as Weapon X, merging him with a symbiotic bacteria colony.

    New Weapon X

    \"The
    The Director

    Director Malcolm Colcord forms the third version of the Weapon X Project, designed to monitor and eliminate mutants. Colcord, once a security guard at the first Weapon X project, suffered severe facial lacerations during an escape attempt by the mutant Wolverine. Unlike the previous two installments of Weapon X, the third Project was completely U.S.-based and focused not only on the creation of living weapons, but also on the ultimate goal of Colcord, the creation of death camps. The Director initially uses Weapon X as his personal strike force to exact revenge against Wolverine. He soon begins utilizing its resources for the capturing and imprisonment of mutants in the secret government death camp called Neverland. Mutants who are not suitable to be used as military weapons would be executed, while those that are suitable are given the choice to join Weapon X or die.

    A number of mutants, such as Cecilia Reyes, Maggott, Ape, Tarbaby, Leech and many others were arrested by Weapon X's agents and sent to Neverland. Those mutants deemed useless to the project were killed in gas chambers, while others were brainwashed to become Weapon X operatives. The organs of the executed prisoners were then sent to the U-Men. The agents of the third Weapon X were Agent Brent Jackson a former S.H.I.E.L.D. agent; Sabretooth, who was given new adamantium implants; the shapeshifter Copycat, Deadpool, and Mauvais.

    Later on, Deadpool went rogue and new operatives were recruited into Weapon X, many of whom had their powers enhanced or were brainwashed into servitude. Maverick was saved from certain death and his powers were enhanced with the purpose of assassinating Wolverine, thus Agent Zero was created. Former member of Alpha Flight Wildchild was brainwashed and further mutated into a Nosferatu-like feral humanoid. Former mutant terrorist Marrow had her powers set to a controllable level, restoring the young woman's natural beauty. Sauron's personality was merged with that of his Karl Lykos self and his energy-draining powers enhanced so he could fire energy blasts. Garrison Kane was further transformed into a cybernetic being.

    Aurora was kidnapped and brainwashed, like Madison Jeffries, who was extracted from the terrorist group known as the Zodiac and used to create hundreds of Boxbots loyal to Weapon X to serve as guards at Neverland. Washout had his powers enhanced, though at a heavy cost. Each usage of his powers endangered his life and eventually, he dies trying to kill Colcord. Mesmero joins willingly, while Reaper and Wildside, former members of the Mutant Liberation Front, became agents of the program in exchange for their lives. The psychic mutant Jack-in-the-Box joins after his legs and arms were amputated. He becomes a living polygraph.

    Unbeknown to all, except Sabretooth, Mister Sinister was disguised as the head scientist at the Neverland facility, Doctor Robert Windsor. As Windsor, Sinister supposedly helped some mutants escape from Neverland, but he was only taking them to his own secret labs. After some time, Brent Jackson, the only human officially on the team, took over as Director, during a mutiny by the team in conjunction with an attack by mutants from the Underground. Cable led this group, in a mission to destroy Weapon X and expose its existence and its human rights violations. Washout and Garrison Kane died in the event, while Sabretooth was washed away into the sewers after a battle with Marrow.

    Marrow used the battle to escape from Weapon X, eventually taking over the Mutant Underground, now reformed as the third incarnation of Gene Nation. Colcord fled Weapon X, with the always loyal Jeffries, and Aurora as well. Director Brent Jackson's team consisted of Wildchild, Sauron, Agent Zero, Mesmero, Jack-in-the-Box, and newly recruited Chamber, whose face was restored by the program's scientists.

    Chamber was originally a double agent working for the X-Men, but was subsequently brainwashed into Jackson's service. Mister Sinister, under the alias of Dr. Windsor, remains at Weapon X. At some point, Jackson's team fought with Colcord's Boxbots. Colcord regains control of Weapon X. A person claiming to be Chamber has joined a superhero team known as Excelsior, but that person turned out to be an impostor. Following M-Day, both Chamber and Mesmero are rendered powerless.

    Neverland is shut down and the prisoners, either powered or depowered, are executed by hosts of Boxbots. Records of the massive executions are discovered by Beast in the Endangered Species storyline, which also hints that some of the bodies of the prisoners executed prior to M-Day were sent to Ord and used in the research to develop the cure for mutation.

    Weapons of Mutant Destruction

    Under the direction of Reverend William Stryker, a new Weapon X program emerged, which focused on the creation of undetectable killer cyborgs that could eventually eradicate mutantkind. These cyborgs were created from regular humans Stryker lured into his cause. As part of the process to refine their cyborgs, Weapon X targeted several mutants with special abilities of their interest, namely Logan, Sabretooth, Warpath, Domino and Lady Deathstrike.

    Alternate Versions

    Age of Apocalypse

    Logan uses the name Weapon X instead of Wolverine. Additionally, Deadpool didn't receive his healing factor from Weapon X, but from Apocalypse.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-14667/","id":14667,"name":"And the Wind Howls... Wendigo!","issue_number":"180"},"id":5018,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3149197-weaponx00002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3149197-weaponx00002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3149197-weaponx00002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3149197-weaponx00002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3149197-weaponx00002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3149197-weaponx00002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3149197-weaponx00002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3149197-weaponx00002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3149197-weaponx00002.jpg","image_tags":"All Images,Artwork,Earth-616 Abraham Cornelius,Earth-616 Brent Jackson,Earth-616 Carol Hines,Earth-616 Director,Earth-616 Kane,Earth-616 Maverick,Earth-616 Mesmero,Earth-616 Professor,Earth-616 Rich Duncan,Earth-616 Sabretooth,Earth-616 Team X,Earth-616 Weapon X,Earth-616 Wolverine,Earth-616 Zanna Zira"},"name":"Weapon X Program","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/weapon-x-program/4060-5018/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-5196/","count_of_isssue_appearances":0,"count_of_team_members":39,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-03-28 20:39:40","deck":"Youngblood is a team of superheroes formed by the United States government to be the next generation of heroes.","description":"

    Origin

    Publication History

    Concept and Creation

    \"No

    Youngblood was created by Rob Liefeld when he was in high school in the mid-1980s. By 1987, Rob wanted to pitch Youngblood to some new independent comic book publishers and landed a job at Megaton Comics where Youngblood was first published before they made their way to Image Comics in 1992. Rob was a fan of Marvel's Avengers and DC Comics' Teen Titans (the Wolfman/Perez era) and the Legion of Superheroes, and based on those interests he combined them to form Youngblood (not to be confused with Project: Youngblood from Eclipse Comics). The original Youngblood members in 1987 were Sentinel, Sonik, Cougar, Brahma, Riptide, Psi-Fire, and Photon.

    \"No

    By 1991, another publication origin for Youngblood came as a new Teen Titans proposal series for DC Comics featuring Speedy, Harlequin, a pair of Kh'undian warriors, a S.T.A.R. Labs android and an unknown character. That proposal was rejected. At that same year Liefeld left Marvel over their strain relationship and merchandising rights for the success from his tenure on New Mutants and X-Force. When he became one of the founders of Image and with his imprint studio, Extreme Studios, Liefeld revived his early Youngblood team and integrated it with his Teen Titans proposal to create new characters to expand the team roaster: Shaft, Badrock, Die Hard, Chapel, Vogue, and Combat.

    Liefeld's idea for Youngblood as celebrity superheroes:

    \"...if superheroes really did exist, they would be treated much the same way as movie stars and athletes. The series, therefore, depicts the superhero members of Youngblood not only as they participate in adventures fighting crime and evil, but navigating the world of celebrity endorse deals, TV show appearances, agents, managers, and the perceived pressures of celebrity life. They live in a world where they are the big celebrities with big paychecks and business managers. In the Youngblood world, the world powers race is not nuclear but genetic engineering...who can create bigger, better super-men.\"

    With a large team of superheroes on Youngblood, Liefeld came up with a solution of splitting the team into two fractions: the new characters became the home front team for domestic problems and the original team became the overseas \"away\" team for international crisis.

    Since Youngblood's debut as the first comic book published by Image Comics on April 17th 1992, it has gained a controversial legacy over the years for bad artwork, dialogue, storytelling, and later creative disputes from different high-profile comic book writers like Kurt Busiek and Alan Moore.

    As of August 1st 2019, Rob Liefeld announced on his Facebook page that he wants nothing to do with Youngblood over a tricky exchange of rights to the characters when Liefeld left Image to form Awesome Entertainment in 1997. Details include selling Youngblood for movie deals that never manifested and toy deals to a third party - Scott Rosenburg - who then sold the Youngblood property to Andrew Rev, & Terrific Production LLC. Image Comics will no longer publish Youngblood or any involvement. On April 17th 2020, Rob Liefeld announced that he is currently developing a \"replacement for Youngblood\" in the form of a new creation called \"EKO 92\".

    History

    Youngblood is a team of government sanction superheroes created by Director Alexander Graves on behalf of the US government after the existence of Operation: Knightstrike, a top secret task force, was broadcast on network television. In 1984, our heads of state decided that they needed a powerful public force; a force that could represent the government to the people. They also needed an edge to put our nation ahead of the other world powers. By the end of the year, Youngblood was underway. With two task forces, one for domestic problems, the other for international crisis. Youngblood quickly gained celebrated status with the general public.

    Original Lineup (Image Comics)

    There are made up by two teams: the Home Team led by Shaft (formerly Battlestone) and the Away Team led by Sentinel.

    Home Team (Youngblood):

    \"The
    The Home Team - Youngblood

    Their first mission was to capture The Four, a team of super-villains, who were trying to rescue two of their own.

    Away Team (Team Younblood):

    \"The
    The Away Team - Team Youngblood

    They were sent to Kuwait for their first mission to stop the dictator of the country. Psi-Fire, who suffered psychic troubles, killed the man instead of capturing him. Sentinel asked to \"clean\" the mess and they went back to their base where they discovered a man put on stasis in a laboratory. This was their first encounter with Prophet.

    Soon both Youngblood teams and Prophet join forces against an alien invasion from the D'Khay and their leader Darkthornn.

    Youngblood has encountered numerous superheroes in the Image Comics Universe: Supreme, Glory, Shadowhawk, WildC.A.T.s, Spawn, Savage Dragon, Brigade, Bloodstrike, New Men. Youngblood even team-up with X-Force. Even Badrock had a team-up with Spider-Man. Other adversaries Youngblood fought against include Showdown, Cybernet, Crypt, Giger, and Greenscape.

    At some point later, Youngblood's team structure was splintered into different factions - Team Youngblood (Youngblood's elite members) and Bloodpool (a government training program designed to train teenage candidates to enter the Youngblood program). Within the ranks, some Youngblood operatives have left and rejoined the team for numerous reasons. One scandalous example included Ripetide being fired from team for posing nude in Pussicat Magazine.

    1998 Lineup (Awesome Comics):

    \"No

    In the Judgement Day event, Knightsabre was accused of killing Riptide. A superphero trial was held at Supreme's Citadel Supreme to keep the public out until they had all the facts. In reality, Youngblood leader Sentinel murdered Riptide over the possession of an magical book that can rewrite one's fate. The book was the property of Storybook Smith. Youngblood disbanded because Knightsabre was really Director Graves' illegitimate son and that the media attention would ruin the team's reputation. The government formed S.O.S. - Special Operations Strikeforce - to replace Youngblood as a new super-human task-force led by the Savage Dragon.

    After Judgement Day, the Government pulled the plug on Youngblood's finances and, effectively, the team disbanded and gone their separate ways. Sentinel was imprisoned at Supreme's Citadel in the Hell of Mirrors for the murder of Riptide. Knightsabre went back to Australia in disgust at how quickly his former teammates had been willing to assume his guilt. Combat went back to the stars, Vogue returned to Russia (where she dealt with an ex-KGB general Alexander Stroika and his Youngblood counterpart team Redblood), and Badrock quit being a superhero to got to Hollywood to concentrate on a career in the media. Piece by piece, by the time Judgement Day is concluded, the entire team has gone. Only Shaft remains, with a feeling off being cheated out of something he'd worked to build. He feels it shouldn't ended like that.

    After the Riptide murder trial, however, Shaft is approached by Waxey Doyle, formerly known as the Golden Age superhero Waxman, but since retired from crime fighting to become a billionaire in the furniture polish business. Since he still sometimes gets a hankering to contribute to his old career in some way, he offers Shaft the use of a mansion he never uses, the House of Wax, as a new base of operations around which to construct a new Youngblood, a team which Doyle is willing to finance. His one proviso is that space be found in the group for his adopted son, Leonard, who always wanted to be a superhero. Although more than slightly dubious about that last part, Shaft felt he can't look a gift horse in the mouth, and accepted his offer. Shaft manage to only recruit Twilight, Johnny Panic, Doc Rocket, and Suprema.

    Shaft's new Youngblood team had some short lived adventures that included a confrontation with Stormhead, the Occupant, Sentinel and his evil Youngblood team Badblood, and Jack-A-Dandy and his Jackettes.

    2003 Lineup (Arcade Comics):

    Long since the government-sponsored super-team Youngblood dissembled due to the increasing number of super-powered individuals. Most of the former members now retreated into a life of fame and decadence. Only one-time team leader Shaft continues the crime fighting. He's caught by surprise when Director Graves comes out of the woodwork with a proposition: A membership in the newly formed group. But only one position is available and the former teammates has to fight 'till death for it.

    2008 Lineup (Image Comics):

    NSC Agent Douglas McGarry reforms Youngblood and to help give the super-team credibility he has them be followed around as a reality television program. Agent McGarry not only provided Youngblood with a new secret headquarters, The Bubble, but also their own team-made adversaries - Mayhem, Inc. - consisting of old Youngblood enemies (Giger, Blackrock, Warwolf, Gage, and Poppy). And when the world thought the old Youngblood team disappeared, a new team of replacements were formed to keep the reality show going consisting Sundance, a new Sentinel, Hatch, Jamm, and Spyke. They soon clashed with The Allies villain Florax the Dominator and Supreme Televillain. The old team found themselves a new member named Scion, who needed their help against Spacehunter.

    2012 Lineup:

    \"No

    In the historic landmark 20th anniversary of Image Comics, Rob Liefeld's Youngblood returned again to the comic book world under the new creative team by screenwriter John McLaughlin, up-and-coming artist Jon Malin, and Rob Liefeld.

    In this new 2012 incarnation of Youngblood the team is followed by a newspaper reporter named Gail Cook.

    2017 Lineup:

    • Vogue (Petra Gomez)
    • Dolante Murray
    • Doc Rocket
    • Suprema
    • Badrock
    • Shaft

    In the historic landmark 25th anniversary of Image Comics, Rob Liefeld's Youngblood returned again for the third time under the new creative team by Chad Bowers and newcommer artist Jim Towe. Towe's fanart design for Youngblood landed him the career opportunity of a lifetime that would lead the path to being a professional comic book artist.

    In this new 2017 incarnation of Youngblood, there have been some significant changes from the original team. Diehard and Vogue are now the President of the United States and the First Lady respectively. Badrock is suffering a disease from his own powers, and Shaft was in a federal prison. The reason's for Youngblood's disbandment was caused by a group called the Bloodstream.

    Meanwhile, new team of heroes calling themselves Youngblood, consisting of Supreme, Doc Rocket, and a new Sentinel named Dolante Murray. They were formed by a new heroine calling herself Vogue, who needs their assistance to uncover the disappearance of missing young superheroes from the Help! app including a Vogue's colleague, Man-Up. With Shaft joins the new team, he learns that Help! app creator, BryneTech, was an anagram for Youngblood's old nemesis Cybernet, who was abducting the app's top ten heroes for superhuman trafficking.

    Soon after confronting Cybernet and Diehard, who was unaware that he partnered with Cybernet, Youngblood was branded as traitors in the United States and fled the country to help rescue Help app victims. They manage to rescue Man-Up, who temporarily joins the team, and Superstitious. Youngblood then found themselves seeking political asylum in Tokyo, Japan where they have a new secret headquarters and were under the protection of Task. They found themselves battling new threats like Bloodhunter and Sumasshu. They officially become Japan's new international crisis resolution squad called Team Youngblood by the Prime Minister of Japan, Haruka Akamatsu, for their heroics in Japan.

    Other Versions

    Extremely Youngblood

    In a single one-shot issue called Extremely Youngblood, Youngblood is seen as preteens.

    \"Youngstar\"
    Youngstar

    In Prophet, Youngblood is rechristened as Youngstar in a post-apocalyptic future. Known members include elderly versions of Shaft, Doc Rocket, Badrock, two Diehards, and a new female Chapel.

    In Other Media?

    \"No

    There was a proposed animated cartoon series based on Youngblood in the early-1990s, but it didn't pass the demo stage. The show's roster included Shaft, Ripetide, Chapel, Diehard, Troll, Vogue, Sentinel, and Badrock. The test footage is available on YouTube.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-152924/","id":152924,"name":"Who's Who in Megaton Comics?","issue_number":"1"},"id":5196,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/6673743-8b5f9e70-6e2d-44f9-b1ae-0a141274503a.jpeg","image_tags":"All Images"},"name":"Youngblood","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-513/","id":513,"name":"Image"},"site_detail_url":"https://comicvine.gamespot.com/youngblood/4060-5196/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-5289/","count_of_isssue_appearances":0,"count_of_team_members":22,"date_added":"2008-06-06 11:27:48","date_last_updated":"2017-08-05 02:10:50","deck":"A rogue mercenary team lead by Battlestone. Brigade has fought against corrupt government agencies.","description":"

    Origin

    Brigade was created by Rob Liefeld for Image Comics.

    Creation

    \"Youth
    Youth Brigade

    Before Brigade made they're debut in 1993, the team first appeared in a Youngblood promo from 1987. They were originally called \"Youth Brigade\". The original team consisted of Sea-Wolf, Coldsnap, Stasis, Atlas, Thermal, Kayo, and Thumbelina. In the promo, Youngblood tries to recruit one of them to join the team. Before a decision was made, it was put on hold when an emergency alarm was triggered.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-98924/","id":98924,"name":"Sabotage!","issue_number":"1"},"id":5289,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11131/111318833/5796605-brigade.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11131/111318833/5796605-brigade.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11131/111318833/5796605-brigade.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11131/111318833/5796605-brigade.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11131/111318833/5796605-brigade.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11131/111318833/5796605-brigade.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11131/111318833/5796605-brigade.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11131/111318833/5796605-brigade.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11131/111318833/5796605-brigade.jpg","image_tags":"All Images"},"name":"Brigade","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-513/","id":513,"name":"Image"},"site_detail_url":"https://comicvine.gamespot.com/brigade/4060-5289/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-5701/","count_of_isssue_appearances":0,"count_of_team_members":49,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-05 06:35:16","deck":"The World's Strangest Heroes. A team of outcasts, with some of the most bizarre powers, and abilities gathered together by Niles Caulder (The Chief) to battle evil.","description":"

    Current Roster

    • Robotman (as a baby)
    • Crazy Jane
    • Elasti-Girl
    • Mento
    • Negative Man
    • Flex Mentallo
    • Lotion
    • Lucious Reynolds
    • Fugg

    Origin

    An incredibly brilliant but unorthodox young scientific researcher, Niles Caulder accepted the aid of a mystery benefactor in financing his biological experiments. His curiosity led him to investigate this unknown philanthropist, only to discover himself to be a pawn of General Immortus, a criminal mastermind striving to recreate an immortality elixir that had kept him alive for centuries. To guarantee Caulder's loyalty, Immortus had a bomb inserted in the scientist's chest which only Immortus could safely remove while Caulder lived. Caulder, however, tricked the General into shooting him, then, having reprogrammed his robot assistant, he had the mechanical surgeon operate to remove the bomb after he was clinically \"dead.\" The operation was only a partial success. Niles Caulder lived, but lost the use of his legs, becoming confined to a wheelchair. Destroying his lab and all his notes to prevent Immortus from discovering the secret he sought, Caulder seemingly vanished, and even the ancient overlord of crime could not find him.

    Only after Niles Caulder's death would Immortus learn that, during his researches, the scientist had served as a Red Cross volunteer in India, where he met and later married a young woman named Arani, who became the first and only beneficiary of the Immortality serum. After going into hiding to escape Immortus, Caulder never returned to his new bride, fearing reprisals from his enemy. He surfaced only twice more before settling permanently in the brownstone combination laboratory/living quarters in Midway City that was to become the headquarters of the Doom Patrol.

    First, he created a special radiation-proof fabric which was used to allow Larry Trainor, Negative Man, to walk the streets after he became permanently radioactive. Then, he became the first surgeon to transplant a human brain into a mechanical body when he saved Cliff Steele's life by transforming him into Robotman. Finally, using the codename \"The Chief\" to protect his real identity, he brought together Rita Farr, Larry Trainor, and Cliff Steele, and formed the team of adventurers whom the media dubbed \"Doom Patrol.\"

    Creation

    The first appearance of the team was in My Greatest Adventure #80 when the adventure anthology series was being converted to a superhero series. The team was created by writer Arnold Drake and artist Bruno Premiani.

    Team Evolution

    \"No

    The team consisted originally of the team's leader, The Chief, who created the team in attempt to encourage superpowered beings regarded as freaks to do good with their powers. The original team consisted of actress turned height-changer, Elasti-Girl, pilot inhabited by a negative spirit, Negative Man, and race car driver whose body was so destroyed after an accident leaving a robot body his only hope for surviving, Robotman.

    After 5 issues My Greatest Adventure was rebranded as the Doom Patrol. The book went on to add more members such as millionaire turned hero, Mento, who was constantly trying to catch the attention of Elasti-Girl, and the young and green shape changer, Beast Boy, who would later go onto to receive more popularity with the Teen Titans.

    The book could have inspired Stan Lee with the creation of the X-Men who appeared three months later as both books featured outcast superheroes lead by their wheelchair-bound genius leader while the Doom Patrol itself may have drawn inspiration from Marvel's popular superhero team, Fantastic Four.

    After declining sales the team's writer, Arnold Drake, decided to end the team's adventures with the killing of all the original members. The only members to survive were Mento and Beast Boy. Beast Boy went on to be featured the Teen Titans book eventually becoming one of their most popular and mainstay members. Mento went on to be chosen by John Constantine to be one of the many to help fight back a battle happening in hell. The demonic forces left Mento insane and lashing out to his step son, Beast Boy. Mento became a foe of the Titans until Raven cured him of his insanity.

    Since the demise of the original Doom Patrol there have been many revivals the Doom Patrol and eventually all the original members came back from the dead. Robotman is the one constant in every Doom Patrol team.

    Throughout the publication history of the team, they have attempted to maintain the same edginess as the original team. This has meant that the membership of the team often reflects what is considered edgy in contemporary culture.

    Major Story Arcs

    Early Adventures

    \"Early
    Early Roster

    General Immortus quickly deduced the Chief's true identity and became one of the Doom Patrol's most persistent foes, but the general public remained unaware of the background of the red-bearded genius in the wheelchair until much later in the team's career.

    Although Rita Farr was initially attracted to fellow teammate Negative Man, she eventually lost her heart to a self-aggrandizing billionaire named Steve Dayton who went so far as to adopt the super-hero identity Mento in order to impress her. After their marriage, Rita continued her association with the Doom Patrol despite Dayton's open antagonism towards them. Together, Steve and Rita adopted orphan Garfield Logan, the teen-age hero called Beast Boy (who would eventually become the New Titan known as Changeling).

    After a series of adventures, the four original members were trapped on their island base by Madame Rouge and her ally, Captain Zahl, and given an ultimatum: either they would allow ZahI to blow up the island and destroy them, or he would detonate another bomb which would wipe out a fishing village of fourteen inhabitants. Heroes to the end, the Doom Patrol voted to sacrifice themselves, and Zahl triggered his explosive, seemingly killing the entire quartet.

    Two other regular characters in Doom Patrol, one who became a part-time member of the team and the other a non-member ally, lived on after the destruction of the original group. Beast Boy, later known as the Changeling, became a member of both Titans West and the New Teen Titans. Meanwhile, Steve Dayton continued to perfect his Mento helmet; Dayton vowed vengeance and spent much time and money in search of his wife's killers only to be captured by them. Several months after Dayton's disappearance, Gar Logan, now Changeling, asked Robotman to help him find Mento. The two old friends, plus Gar's new friends, the Teen Titans, rescued Mento from General Zahl and Madame Rouge; both villains died in the ensuing battle.

    Robotman decided to forgo super-heroics and to mourn his friends, but was brought out of retirement by a new Doom Patrol organized by a woman claiming to be Caulder's widow. Steele joined their short-lived team until it disbanded, then went into service a third time when evidence was unearthed that led to the discovery of the still-living Negative Man. Eventually, they found Niles Caulder, who rejoined the team, however, when The Dominators dropped the Gene Bomb, it caused most of the powers of Doom Patrol to become unstable, causing the team to nearly disband.

    Reformation

    \"The
    The Painting that Ate Paris

    With many of the team sick or dead after the Gene Bomb, The Chief did his best to keep the team together. The only healthy member of the team, Joshua Clay, retired completely from superheroics, but he agreed to stick around as team physician and be part of the “outer team” with Dorothy Spinner. Meanwhile, Chief was able to convince Robotman and Negative Man (who had transformed into Rebis) to exit their hospitalizations and rejoin the team. Robotman brings with him a new friend from the hospital, Crazy Jane, a patient with dissociative identity disorder, whose 64 personalities each received a different superpower thanks to the Gene Bomb.

    This new version of the Doom Patrol found their first big threat when a man named Mr. Nobody recruited a new Brotherhood of Evil, but considering evil (and good) to be outdated concepts, he renamed them the Brotherhood of Dada. They got the Doom Patrol’s attention after using the mise en abyme Painting that Ate Paris. The team followed them into the painting but lost to the Brotherhood. It wasn’t until the Fifth Horseman of the Apocalypse, Extinction, materialized that the Brotherhood let the Doom Patrol go so they could help. With Jane’s help, the dadaists were able to strip the Horseman of its meaning and reduce it to absurdity.

    While the Brotherhood decided to stay behind in the painting, the Doom Patrol opted to escape, however, Jane was hurt. Rebis was able to place Robotman’s psyche into Jane’s where he rode the train in the Underground and was confronted by many of her personalities. When he finally found Jane’s, he helped her deal with the memory of her abusive father so she could return to the primary.

    Pentagon Horror

    \"The
    The Doom Patrol invade the Pentagon

    The Doom Patrol are called away to a disturbance on Danny the Street, a street that exists on no map. That’s because the street is a genderqueer sentient street that teleports around the world attracting outsiders that need a home. For this, they have become a target for Mr. Jones and his Men from NOWHERE, a clandestine group whose goal it is to live in a quirk-free world. Although Jones was excited at first for the Doom Patrol to show up as they were the next on his list, the team actually made quick work of his men. However, these were not the real Men from NOWHERE according to Danny resident, Flex Mentallo, an amnesiac superhero who just got his memories back.

    Flex told them as much as he could remember: that a journalist came to him for superhero help because he found something at the center of the Pentagon. Flex knew it was the real Men from NOWHERE, but he couldn’t remember the details. He couldn’t even remember how he escaped, just that in his confusion, he found himself on Danny the Street. Mr. Jones was just a rogue agent, but his failure turned the real Men from NOWHERE’s attention to Danny, kidnapping Flex and Dorothy.

    With Danny’s teleportation, the Doom Patrol was able to break into the Pentagon, which was actually a pentagram, created to hold in dead spirits for a being known as the Telephone Avatar to feed on. While the Doom Patrol fought off operatives, Flex Mentallo was able to tap into his powers and briefly reshape the Pentagon as a circle, weakening the Avatar. This allows Dorothy’s worst imaginary friend, The Candlemaker, to take him out.

    The Doom Patrol then moved their operations to Danny the Street.

    Return of the Brotherhood of Dada

    \"No

    Unbeknownst to the Patrol, a man by the name of Doctor Silence had procured the Painting that Ate Paris and the Brotherhood therein. Nobody had reached out through dreams to bring together a new Brotherhood of Dada to come rescue him. Using Albert Hoffman’s bicycle, they began warping reality in Venice. Josh started tracking dadaist phenomena that pointed to their return, and the Doom Patrol went to investigate. They were no match for the Brotherhood, who escaped on their psychedelic school bus.

    They go around America campaigning “Nobody for President,” sharing their outlandish views but not breaking any specific laws. This complicates both the team’s and the Pentagon’s response. While the Pentagon is confident in activating operative and master of disguise John Dandy, the only members of the Doom Patrol willing to stand against Nobody are Cliff and Josh, with Rebis specifically deciding to leave the team.

    Cliff and Josh attended one of Nobody’s campaign rallies, where he revealed the Painting That Ate Paris and wanted to lead the crowd in reciting the poem that causes the painting to eat you. This was cue for John Dandy to attack and cause chaos so that government stormtroopers could make a move. Most of the Brotherhood were taken out by them except Nobody. He was killed by Dandy, who used one of his masks to make Nobody human long enough to be stabbed. Cliff tried to save Nobody but ultimately failed.

    The Candlemaker

    \"No

    With both Rebis and Jane departing the team, Cliff allowed himself to get distracted trying to keep the team together and failed to hear out Josh, Dorothy, and Danny when they referenced the threat of Candlemaker. When Cliff finally got his act together, he found Josh dead by Chief’s hands, who no longer needed his wheelchair and hadn’t for some time. Sadly, Cliff couldn’t do anything about it due to a failsafe Chief built into his robot body. With a captive audience, Chief admitted to being the mastermind behind Cliff and his original teammates' accidents. Panicked, Dorothy makes a deal with Candlemaker, who takes over Chief’s nanomachine robot, kills Chief, and pulls Cliff’s brain from his robot body.

    Cliff is saved by Willoughby Kipling, a Knights Templar ally of the team. He showed up because the Templar believed the Candlemaker would cause the apocalypse, and he wanted the Doom Patrol’s help stopping it. Danny drops them off at Manhattan where the Candlemaker was psychically destroying it. Cliff is outmatched so he retreats and asks Danny to bring him to Will Magnus, who he then brings to Chief's lab. Cliff hopes Magnus will be able to take control of Chief’s nanomachines.

    Magnus instead finds out that it is the nanomachines, not Candlemaker, who are trying to destroy the world on Chief’s orders. The combined powers of Rebis and Dorothy are able to wipe out the Candlemaker, but they must still contend with The Chief’s disaster level event. So, Cliff volunteered to be uploaded into the nanomachines to convince it to stop.

    Cliff returns to Danny the Street to a hero’s welcome and witnesses Danny change form into Danny the World, where he and Rebis are invited to stay.

    Rainbow Estates

    \"No

    After their run-in with The Candlemaker, Cliff, Dorothy, and The Chief (inexplicably surviving as just a head) tried to go their separate ways, but they just couldn’t make it work. Realizing they were better together, they reunited and got themselves a new home, the only house on an abandoned development called Rainbow Estates in Violet Valley. Chief described the house as a tesseract and that they’d be able to teleport from the den. It was also haunted with SRS, the spirits of auto-erotic fatalities, including The Bandage People, who agreed to join the team. They were also eventually joined by a new member, Coagula, a transgender sex worker who developed powers after having sex with Rebis years prior.

    Under their noses, two ancient spirits manipulated the people of Violet Valley into a generation war. Foxfur had assembled his Old Foxes, a group of elderly grumps, to fight back against Crowdark and her Wild Girls, a band of feral children wreaking havoc. Both spirits took an interest in members of the Doom Patrol. Crowdark saw Dorothy as her chosen champion, while Foxfur saw Cliff as his. When Dorothy and Cliff refused to fight each other, Foxfur and Crowdark bury the hatchet and end their war.

    Later, the Pentagon came calling yet again, this time for The Bandage People. They had previously been members of The Builders, spirits who were building a modern Tower of Babel for the Pentagon. They had a rigid expectation for gender and decorum, and as such, the rest of the team failed to meet those expectations and became targets.

    Thayer Jost’s Doom Patrols

    \"Robotman
    Robotman annoyed by new team

    The Doom Patrol had long been presumed dead when Robotman caught the eye of wealthy business tycoon, Thayer Jost. Jost wanted Cliff to lead a new superteam he put together:

    • Fever, who could increase the heat of objects
    • Freak, who had prehensile hair
    • Kid Slick, who had a frictionless aura.
    • And Fast Forward, who was prescient up to 60 seconds into the future

    Unfortunately, they were heroes for hire, which came with too much baggage. During a rescue of American embassy staff from a hurricane, the Doom Patrol had to leave behind locals also in need of rescuing. For this, the team quit Jost and went freelance

    Jost wasted no time replacing them on his payroll, especially since he owns the trademark on the team name. He brought together Metamorpho, Elongated Man, Dr. Light, and former Robotman teammate, Beast Boy. They broke the news that Robotman and all but one of the last Doom Patrol roster were dead. Upon hearing that, Robotman disappeared before their eyes.

    The team hired an engineer named Zviad to rebuild the scrapped Robotman body they had. Once he was back, he started remembering what happened. He and Coagula were going to introduce Dorothy to her real mom. Thinking they were ditching her, Dorothy imagined an explosion, killing Coagula, destroying Cliff, and putting herself into a coma. The real Robotman decides to stick with the team, as does Beast Boy from Jost’s other team.

    After the death of their resident engineer, Zviad, Robotman walked away from the team, allowing Jost to force the rest of the team to disband. He would return to Dorothy’s bedside and allow them to take her off life support now that she is brain dead.

    Infinite Crisis and One Year Later

    \"Doom
    Doom Patrol meets the Teen Titans, one year after Infinite Crisis

    When Superboy-Prime pounded on the vibrational barrier that once separated the multiverse, reality fractured and splintered. From its wake, a new Doom Patrol emerged in present day, seemingly wiping out the history of the first team. In this new reality, the wheelchair-bound Chief gathered Elasti-Girl, Robotman and Negative Man - who were soon joined by new members Grunt, Nudge and Vortex.

    When the Infinite Crisis struck, the members of the Doom Patrol - as well as Beast Boy - began to remember their original histories. When Beast Boy reunited with his foster mother, Rita Farr, time began to realign itself. The myriad histories of the Doom Patrol began to merge into a whole, combined history. As a result, The Doom Patrol's history was restored.

    Former Titans Bumblebee and Herald joined the newest version of the Doom Patrol during the lost year after Infinite Crisis.

    Steve Dayton is again using the Mento helmet and he is mentally unstable; however, he remembers his time as the Crimelord. The Chief appears to be manipulating the Doom Patrol members once again; he claims to wish to return them to normal, so \"maybe one day they won't be freaks anymore.\" After the Doom Patrol encounters the Titans, the Chief tells them that Kid Devil should be a member of the Doom Patrol instead of the Titans, since his unique appearance and nature will always separate him from others. However, Beast Boy, Elasti-Girl and Mento all stood up to the Chief and forced him to step down as the Doom Patrol's leader.

    Another twist is that while fighting the Titans and the Doom Patrol, the Brain claimed that he had been the Chief's lab assistant, his body destroyed in an explosion Caulder caused and that he was to be Robotman.

    Oolong Island Task Force

    \"Oolong
    Oolong Task Force

    Oolong Island was a sovereign island nation in the Yellow Sea and home to The Science Squad. The Chief moved the Doom Patrol to the island to work as a task force from and for the island, making sure no science experiments ran amok. Part of their tenure there involves regular counseling meetings with Rocky Davis, which they all despised.

    The team underwent a few member changes. Vox had left the team before the book started, while Nudge was killed on a mission. A distressed Grunt disappeared with Nudge’s body and hadn’t been seen since. They also got a new pilot named Dusty and eventually reunited with Crazy Jane and Danny the Street (whom is now a Bungalow). Mento also made a home on the island, but he wasn't welcomed back to the team.

    Among the threats they faced were a sentient Black Hole, Thayer Jost’s new attempt at a superhero group, The Front Men, and Mr. Nobody, now calling himself Mr. Somebody. However, their greatest threat would be their ever-selfish mentor, The Chief, who went mad with power after granting himself Kryptonian powers.

    Brick By Brick

    \"The
    The Doom Patrol fights The Vectra

    Danny the Street, now an ambulance, secretly works with Casey Brinke, an EMT and general weirdo. Danny sends Casey on various calls to collect the members of the Doom Patrol. Upon investigating Danny closer, Casey finds herself transported to Dannyland, a theme park in a pocket universe which Danny also is. There, Casey learns that Danny evolved the ability to create residents instead of just attracting those needing a home. She also learns that she was the first one created, and Danny needs her help to bring the Doom Patrol back together to protect them from The Vectra. They were forcing Danny to create people to be turned into hamburger meat for a cosmic fast food chain.

    Once together, the team narrowly escapes a confrontation with the Vectra when Danny transports them to New Mexico where Crazy Jane’s new identity, Dr. Harrison, was running a cult. Luckily, Jane and the other personalities already had a plan to remove Harrison with a fake Gene Bomb. With Harrison gone, the Doom Patrol was reassembled, and the cult members were taken home by Danny. Among those cult members was Valerie Reynolds, wife of Sam Reynolds, Casey’s EMT partner.

    Nada

    \"The
    The Doom Patrol crash land at Retconn

    The Doom Patrol was safe, but there was still aftermath to their reunion and brief spat with Vectra. Danny was broken, unable to teleport or communicate. Keeg, the Negative Spirit, determined Casey needed to move to Dannyland, which she reluctantly agreed to, in order for Danny to heal. Meanwhile, the Reynolds were still experiencing friction thanks to Val’s time in the Jane cult, which was adversely affecting their son, Lucius. It made him susceptible to manipulation by Mr. Nobody, who recruited him for his new group, The Brotherhood of Nada.

    Mr. Nobody was also working with his daughter, Terry None, who happened to be Casey’s new roommate. She sold a new delicious, healthy food additive called S#!T, that also warps reality. With mass reality bending happening, The Doom Patrol confront Nobody, but their fight with the Brotherhood of Nada eventually turned into a race to the hospital when Terry suddenly became pregnant with Casey’s child. The birth caused everyone to be teleported to Retconn, a reality warping corporation that was tracking the Doom Patrol. They took Casey's child, placing him in a rocket, and sending him into a hyper-reality, a universe they were actively re-designing.

    \"No

    Retconn reveals some harsh truths to the team. Guided by fan fiction, they had pulled the Doom Patrol from their home reality and mashed them together with other alternate versions of themselves to make the current mix-n-match lost version they are today. The workers of Retconn were getting sick of their current leader, The Disappointment, who is so tired and bored with the current universes that he wants to erase them. The workers wanted to replace him with a more visionary leader, Mr. Nobody.

    The Disappointment also had Rita Farr captive and was forcing her to be his bride. When the Disappointment accidentally killed himself during his own wedding, Retconn workers grabbed Rita Farr and escaped into the same hyper-reality they sent the child, leaving their corporation in the hands of Nobody. The Doom Patrol retreated to Dannyland, where they chased Retconn into their work so they could rescue both Rita and Casey’s child.

    Milk Wars

    The Doom Patrol find themselves in Happy Harbor, where Retconned deposited Rita and the baby. They find a nightmarish sitcom world protected by the Community League of Rhode Island, a warped Justice League. The town was being manipulated by Retconn to turn it into the perfect home for their client, Lord Manga, mostly through their milk deliveries, thanks to Milkman Man, the Retconn branded superhero that Casey’s child grew up to be. They also have manipulative soap operas starring a tortured Rita Farr

    \"The
    The Doom Patrol, among others, comes to Cave Carson's rescue

    Using her Hangman’s Daughter personality, Jane is able to wake the Justice League from their fictionalized existence. Because Milkman Man knows no other life, he was confused and embarrassed by the Justice League’s revelation and ran away. After comparing notes, the two teams are approached by the cybernetic eye of Cave Carson, who requests the help of superheroes against Retconn.

    Doom Patrol, among other heroes, are teleported to Carson’s location, where he is being tortured at Retconn by Milkman Man. It was a challenge to convince Milkman Man to stand down, having been so indoctrinated by Retconn, but Casey was able to get through to him as his biological parent. As the Doom Patrol and others make their way through Retconn, the people in charge see no other option but to burn it all down.

    Batman was able to direct Flex to use his hidden power, the Inflation Intensity, to save all of their lives and return them to Prime Earth, including Rita Farr. In the aftermath, Milkman Man disappeared from both reality and their collective memories, and Robotman was returned to Earth as a human.

    Weight of the World

    \"Planet
    Planet Cliff looms over the team

    Crazy Jane had taken over as leader of the Doom Patrol, working out of Dannyland to investigate the weirdest of the weird. Their members continued to evolve like Larry Trainer, who absorbed enough positive energy to become The Positive Man, and Cliff being stuck back in an upgraded robot body after a fatal car accident. They would also be rejoined by an amnesiac Mento, who materialized in Dannyland.

    While continuing their work as the Doom Patrol, Cliff stayed back in Dannyland testing out his new body, created by Keeg. Keeg built the system to magically upgrade as reward for every act of kindness. Cliff would go around Dannyland fixing everything that needed fixing from golf carts to internal organs. Cliff would become obsessed with upgrading until he had upgraded step by step into a planet.

    As Planet Cliff, Cliff started absorbing other planets, requiring the Doom Patrol to step in and defeat him. Mento used his helmet to locate Cliff’s mind at the core of the planet and planned to absorb it. A version of Casey from the future travelling on Jane’s Underground subway warned Jane that this would backfire, creating the film-noir inspired Goliath City inside Mento’s mind, where they will all be trapped.

    Instead, Jane convinces Cliff to give up his attempt to fix internalized pain through upgrades, accepting one final upgrade into a baby robot body in order to have a clean slate. Crisis averted.

    Alternate Versions

    Tangent Comics

    The Tangent Comics version of the Doom Patrol was a group of time-travelers, who came to the present to prevent the incident that caused their post-apocalyptic future.

    The New 52

    \"New
    New 52 Team

    A short lived incarnation of the Doom Patrol appeared during Forever Evil. Containing characters from Paul Kupperberg's brief run on the series; Karma, Scorch, and Negative Woman are shown and Tempest and Celsius are mentioned as members. Again, similar to the end of Kupperberg's run, these characters are all killed off (this time by Johnny Quick and Atomica of the Crime Syndicate) and, much like the opening of Grant Morrison's subsequent run, the Chief is faced with having to rebuild his team following their deaths. This happens concurrently with the reintroduction of the Metal Men and their creator Will Magnus, who built founding member Robotman's second synthetic body.

    Niles eventually reassembles a new team consisting of Negative Man, Robotman, Elasti-Girl, as well Element Woman (whom the Chief convinced to leave the Justice League and join their team instead). They attempt to go after the new Power Ring, who has taken control of a woman named Jessica Cruz.

    The Gloom Patrol

    \"The
    The Gloom Patrol

    The Gloom Patrol is a version of the Doom Patrol from \"Earth-Emo,\" who Back Canary mentions she bumped into during the events of \"Dark Nights: Metal.\" She referred to them as \"completely insufferable.\"

    Other Media

    Teen Titans

    \"Doom
    Doom Patrol in Teen Titans

    The Doom Patrol made an appearance on the Teen Titans animated series' two-part episode \"Homecoming\".

    The members that appeared were Negative Man, Robotman, Mento, and Elasti-Girl, this Doom Patrol was captured by the Brotherhood of Evil, with only Robotman free to save his comrades. After Robotman successfully sought out former Doom Patroller Beast Boy, he and the Teen Titans teamed up to rescue the Doom Patrol. In flashbacks to Beast Boy's Doom Patrol days, it is clear that Mento and Elasti-Girl play parental roles toward the young masked hero. When Beast Boy has to make the choice to defeat the Brotherhood of Evil or save his friends in both teams, he elects to save his friends, a decision denounced by Mento and lauded by the Titans. Mento acts in the series as the team leader, as their is no Chief on the team.

    Batman: The Brave and the Bold

    \"No

    The Doom Patrol team up with Batman in the episode \"The Last Patrol\". In this series, the team is made up of Niles Caulder, Negative Man, Elasti-Girl, and Robotman.

    A clip at the beginning of the show explains the history of the group and their popularity with teens. After an incident with Captain Zahl at Paris, they end up breaking up. When the episode begins, the team has broken up and it's members are trying to live normal lives. Through out the episode, Brain, Monsieur Mallah, Animal-Mineral-Vegetable Man, Mutant Master and Arsenal, attack members the Doom Patrol. Niles Caulder was first. Afterward, he and Batman teamed up to reunite the Doom Patrol.

    However, it was all a ploy by Captain Zahl to get the team back together. He forces Niles Caulder to tell the world that he allowed a woman to be shot when he defeated Zahl at Paris. The Doom Patrol was then placed on an island rigged with explosives and given the choice to save their selves or an fourteen innocents on a similar island. They chose to sacrifice themselves. Batman tried to stop Zahl from activating the explosives, but was too late. After the Doom Patrol died the teenagers of the world began proclaiming \"We're All the Doom Patrol\" signifying that the Doom Patrol will live forever in the hearts of the people they inspired.

    Justice League: The New Frontier

    The Doom Patrol makes a cameo appearance in Justice League: The New Frontier.

    DC Nation Shorts

    \"No

    Doom Patrol appears in 3 of the DC Nation Shorts that were aired on Saturday mornings on Cartoon Network between other DC Comics series.

    The team consisted of just Robotman, Elasti-Girl, Negative Man, and The Chief

    Titans

    The Doom Patrol make their first live-action appearance in the DC Universe/HBO Max original series Titans. In it Rachel is invited to live with them but chooses not to after Niles gets injured by her powers.

    Doom Patrol

    \"No

    The Doom Patrol got a spinoff from their appearance in the Titans, however, the continuity from Titans appears to be ignored. The first season debuted on the DC Universe streaming service, before transferring to HBO Max, as would most of the other DC Universe original series.

    The core of the team consists of favorite members: Robotman, Negative Man, Elasti-Girl, and Crazy Jane, plus Cyborg, who was not ever a member in the comics.

    In Season 1, Mr. Nobody, a reality warping superhuman, introduces the members of the Doom Patrol, before he kidnaps Niles Caulder. The team begrudgingly go on a big search for Niles, while taking on bizarre villains, meeting new friends, and discovering secrets.

    In Season 2, the team continues to take on strange threats and learn more about their abilities, while also bonding with old friends, family members, and Niles daughter, Dorothy Spinner, who has the ability to bring imaginary characters to life. However, as Dorothy grows up, one of her imaginary friends, The Candlemaker, begins to evolve, and becomes a new enemy of the Doom Patrol. The story of Season 2 concludes in season 3 premiere.

    In Season 3, after the death of Niles Caulder and Dorothy's departure, the group are now as solid as they have ever been as a team but are struggling individually. It is at this time that they are encountered by an amnesiac who later learns that her name is Laura de Mille, who is targeted by the Sisterhood of Dada, former operatives of the Bureau of Normalcy.

    Cast

    • Brendan Fraser as Cliff Steel/Robotman
    • Timothy Dalton as Niles Caulder/Chief
    • Matt Bomer as Larry Trainor/Negative Man
    • April Bowlby as Rita Farr/Elasti-Girl
    • Diane Guerrero as Crazy Jane
    • Jovian Wade as Victor Stone/Cyborg
    • Abi Monterey as Dorothy Spinner
    • Alan Tudyk as Eric Morden/Mr. Nobody
    • Michelle Gomez as Laura De Mille/Madame Rouge
    • Riley Shanahan as The Brain
    • Jonathan Lipow as Monsieur Mallah

    Young Justice: Outsiders

    \"No

    The Doom Patrol appear in a dream sequence of Beast Boy's in the third season of Young Justice on the DC Universe streaming service. As the voice of Beast Boy on Young Justice was changed to Greg Cipes, who also voiced Beast Boy on Teen Titans and Teen Titans Go!, the Doom Patrol were animated in a similar style to that show and were voiced by Cipes' Teen Titans castmates.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6533/","id":6533,"name":"The Doom Patrol","issue_number":"80"},"id":5701,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/6992234-may190367.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/6992234-may190367.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/6992234-may190367.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/6992234-may190367.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/6992234-may190367.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/6992234-may190367.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/6992234-may190367.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/6992234-may190367.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/6992234-may190367.jpg","image_tags":"All Images"},"name":"Doom Patrol","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/doom-patrol/4060-5701/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-5704/","count_of_isssue_appearances":0,"count_of_team_members":63,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-13 05:58:48","deck":"The Outsiders is a group of Batman-adjacent, non-primary superheroes in the DC Universe that handles major threats that are endangering the Earth and its people from outside the system.","description":"

    Current Roster

    • Black Lightning
    • Katana
    • Signal
    • Metamorpho
    • Revolving Fifth Member

    Origin

    \"Birth
    Birth of the Outsiders

    The first team of Outsiders started when the Justice League refused to help Batman rescue Lucius Fox from Baron Bedlam. Batman recruited Black Lightning and went to the country Markovia, where they crossed paths with other metahumans. Geo-Force is the prince of the country, and his father was recently killed by Bedlam. Metamorpho has travelled there to get help with his abilities from Dr. Helga Jace, who was responsible for giving Geo-Force his own powers. Katana is also there so she can kill Bedlam’s military commander General Karnz, who was in part responsible for the death of her children and husband. Batman also finds a young girl in the woods with amnesia with light based abilities. Batman names the girl Halo, and the group decides to stay together after teaming up to stop Bedlam.

    Some of the team’s foes are Agent Orange, the Cryonic Man, Force of July and the Masters of Disaster (New Wave, Shakedown, Windfall, Heatwave and Coldsnap). Geo-Force's sister Terra would soon die due to her betrayal of the Teen Titans, and Batman would inform the team of his being Bruce Wayne, even though they already knew. Emily Briggs is revealed in the comics and would soon become Looker. Halo’s origin has also been revealed to the group, and Geo-Force’s lover Denise Howard also showed up during this period.

    Creation

    The Outsiders were created by Mike W. Barr and Jim Aparo, and first appeared in The Brave and The Bold #200 (July 1983).

    Team Evolution

    Outsiders Vol.1

    The original Outsiders were founded in Brave and the Bold #200 (July 1983) and had 6 founding members. They are Batman (currently active), Black Lightning (currently active), Geo Force (currently inactive), Halo (currently active), Katana (currently active) and Metamorpho (currently active). They were created to go where the Justice League wouldn't for political reasons.

    3 years later (June 1986) during \"Adventures of the Outsiders\" #34 the super heroine the Looker (currently active) joined the Outsiders. Another year later (May 1987) a clone of Windfall (deceased) joined the team during The Outsiders #19. The clone died in The Outsiders #20 (June 1987) and the real Windfall joined the team. A year later (The Outsiders #28 February 1988) the Atomic Knight joins the team.

    Outsiders Vol.2

    During Outsiders #1 Alpha (November 1993) 3 new people joined the Outsiders. They were Faust (currently active), Technocrat (deceased) and Wylde (currently active). Then 2 issues later in Outsiders #3 Alpha (January 1994) Dervish joined. Then in September 2001 the super heroine Dr. Light joined the Outsiders.

    Outsiders Vol.3

    Another Outsiders was formed in Outsiders #1 (August 2003) with Arsenal, Grace, Indigo, Shift, Thunder, Nightwing and Jade as it's founding members. Arsenal put the team together thinking he was working with Batman, but it was actually Deathstroke in disguise. Arsenal and Nightwing conceived of the team as a more proactive team. 7 issues later in Outsiders #8 (March 2004) Huntress joined the team. Then in a year following that another former Teen Titan Starfire joined the team during the issue Outsiders #16. Another year from then down to the month (November 2005) Captain Marvel Jr joined the team. The final member to join this team was Boomerang in The Outsiders #37 (April 2011).

    Outsiders Vol. 4

    After Arsenal and Nightwing left the team, Batman rebuilt the team through a lengthy audition process. He needed a team to help him deal with Brother Eye, his rogue A.I.. The team eventually consisted of Outsiders regulars: Metamorpho, Katana, and Grace, plus newcomers Martian Manhunter and Catwoman. In addition, Batman had scientists Dr. Francine Langstrom and Dr. Salah Miandad on staff to research OMAC technology. Although, she was kicked off the team by Batman, Thunder's close relationship to Grace made her a regular ally with the team. Eventually, Batgirl and Green Arrow were recruited, and Geo-Force was transferred from the JLA back to the Outsiders.

    After the death of Batman, the team had a major overhaul. Alfred ran one of Batman's contingency plans to build a team of Outsiders to work as Batman outside of Gotham, with each member representing a part of Batman. Geo-Force is his bravery and leadership. Black Lightning is his morality, and Katana is his sense of justice. The new Owlman has Batman's detective abilities, and The Creeper has his fear factor. Halo is the surrogate Robin, symbol of innocence, and Metamorpho is an all-purpose \"utility belt.\"

    Rebirth

    After reality is warped a few times, The Outsiders become a team with a secret history that Batman had been hiding from the world. He eventually goes semi-public with the team when he discloses his plan for a new team to the Justice League. He puts some of his youngest allies: Signal, Orphan, and Batgirl (Barbara) under the tutelage of Black Lightning and Katana, eventually trusting the two of them to run the team without him.

    Major Story Arcs

    Without Batman

    Batman withholds the knowledge that Bedlam has been brought to life and retook Markovia with help from the Masters of Disaster and other Soviet forces. This angers the team and leads Batman to disband the group. However, the team minus Batman travels to Markovia where they discover dead soldiers because of Bedlam. After beating Bedlam, they discover he has cloned Adolf Hitler, but the clone soon kills himself because of the horrors caused by his older self. The team is soon branded as Markovian agents who gain funding from the country and they soon move to L.A. in a new headquarters, but Geo-Force leaves. Geo-Force has divorced his wife Denise Howard and Looker and her husband are now separated. Batman only leaves for 1 year.

    Los Angeles

    The group also battles their foes the Forces of July again and the team battles the Duke of Oil and the People’s Heroes, a group of Soviet super villains. The team was also stranded on an island for three weeks, Geo-Force and Looker had an affair and he gives up his position as team leader on the island but the team is soon rescued. The Looker is soon followed by a detective who learns of her real identity and tries to blackmail her. However, she hypnotizes him and forces him to leave her alone, but he was soon killed. Looker is arrested for the crime and the team is unable to clear her name of the charges.

    Return of Batman

    The team rejoins with Batman to battle Eclipso and are given access to the L.A. Batcave. Geo-Force and Looker break off their affair after feelings of guilt, the cave is infiltrated by a clone of Windfall, but was killed during a battle with the Masters of Disaster and the real Windfall leaves her team and joins the Outsiders.

    Millennium

    The team would soon face hardship as Dr. Jace was revealed to be working with the Manhunters. The team is taken prisoner but escape with help from Atomic Knight who joins the team. Dr. Jace dies when she was blown up along with Metamorpho. Looker also looses her powers after returning to the Abyssia when her powers came from and battled the Manhunters. Halo is also wounded saving Katana and falls in a coma and is watched by Katana. After these events Geo-Force has the team break up once again.

    Volume Two

    Markovia is taken over by a vampire-lord who has Geo-Force branded a traitor. Geo-Force is forced to reform the Outsiders with new and old members to battle the threat. Looker is killed during the battle. The team is blamed for the destruction of a Markovian village, sending them into hiding. Atomic Knight soon rejoins the team after tracking down the team to bring them in, but is proved of their innocence. Faust, Technocrat and Wylde join the team. Halo and Technocrat’s wife Marissa are killed while the group hides in Gotham City while fighting Jean-Paul Valley when he was acting as Batman. Luckily, Halo has taken over Marissa’s body, but this is causing Technocrat to have a hard time dealing with her death. The team soon finds that Looker is still alive, but as a vampire and is soon freed from the control of the vampire-lord by her friends.

    Two Teams

    The team is soon split after the battle with the vampires. One composed of Geo-Force, Katana, Technocrat and Wylde, the other includes Eradicator, Looker, Halo and Faust and because of some of the things done by some of the new members are still fugitives. The teams also learn that Halo’s original body has been reborn and is being used by Violet Harper, the evil woman Halo originally controlled. The teams defeat Kobra, the group that recreated Halo’s body and Harper (now calling herself Spectra with her own powers like Halo’s) as well as Dervish and Windfall. The teams fights Faust’s father Felix Faust who tells Wylde to betray the team in return for being human again, but is turned into a real bear and imprisoned in a zoo after they beat Felix.

    Arsenal's Outsiders

    \"Arsenal's
    Arsenal's team

    A mysterious conglomerate known as Optitron offered to sponsor the Titans and Young Justice after summoning them to San Francisco. Before any decisions could be made, a mysterious cybernetic girl (Indigo) from the future invaded the complex - and immediately engaged the team in combat. With half the team out of commission, the remaining members tried to track down Indigo, but instead encountered a rogue Superman android, which had been activated. The destructive robot caused the deaths of Titans Troia and Omen. Indigo arrived and shut down the Superman android, leaving Arsenal and Nightwing to mourn the fallen Troia.

    Three months later, Arsenal assembled a new team of heroes and persuaded the reluctant Nightwing to join the team as well. Joined by the reformatted Indigo, Metamorpho (actually Shift), Jade and new heroes Thunder and Grace, the team vowed to proactively hunt down villains before they could strike. Nightwing dubbed this new team of heroes The Outsiders, in honor of his mentor's former team and said the team should track down criminals before they do anything wrong.

    During one of their earliest adventures, Roy is critically injured, so he extends an offer to take his place as leader of the Outsiders to Huntress, which she accepted until Roy was healthy enough to return. Once Roy returned, he would continue to co-lead with Nightwing, but it wasn't like on the Titans. They had a heated confrontation forcing Jade to assume leadership and invite Starfire to join.

    Under Jade's leadership, the team would successfully end a number of criminal organizations, including the metahuman trafficking ring that once victimized Grace. However, Nightwing's feelings about the team grow more ambivalent after finding out their corporate sponsors are a subsidiary of Wayne Enterprises.

    Soon after, the team was betrayed by Indigo, who was revealed as Brainiac 8. This resulted in Nightwing leaving the team and Roy destroying their headquarters. Jade and Roy restructured the team (no meetings, no headquarters) and bolstered their ranks by recruiting Captain Marvel Jr. and original member, Katana.

    Escape from Iron Heights

    \"Outsiders
    Outsiders survive the warden's attack

    Former Outsider, Black Lightning, was sent to Iron Heights for the death of Martin Somers. He had Lightning’s niece assassinated, and Lightning was convinced he was responsible for Somers death. It was, in fact, Deathstroke who framed Lightning. Nightwing received evidence from Red Hood that only acquitted Pierce but also proved his identity had been learned in prison. With time of the essence, Nightwing went to his old team to rescue Lightning.

    The plan was to disguise Grace and Thunder as transferring convicts, while Nightwing sneaks into the security system. Grace was disguised as Girder, so when the guards used a magnetic weapon to keep her under control, it backfired, causing an electromagnetic pulse that knocked out all the power dampening collars, starting a prison riot. They find Lightning, getting backup from his cellmate, Captain Boomerang Jr.

    \"New
    New beginning

    The warden attempted to pacify the riot, and by extension the Outsiders escape attempt, with his metahuman ability to constrict muscles telepathically. Shift, unaffected by the warden’s ability, tried to counteract the attack by transforming into airborne muscle relaxants. Unfortunately, the warden overpowered him and was going to kill everyone as a result. This forced Shift to create a bubble around his teammates and save his airborne medicine just for them. The warden ended up killing everyone else on the prison floor, including himself.

    Those deaths would publicly be blamed on Shift, Grace, Thunder, and Katana, all of whom were caught on prison surveillance. Roy and Dick kept up the illusion that they were killed in the escape, but Shift couldn’t take the grief. He forcibly rejoined Metamorpho, who then joined the team in honor of his former fragment, as did Boomer.

    After this colossal failure, Roy left the team to Dick, who planned to lead the team on espionage missions.

    One Year Later

    \"One
    One Year Later Outsiders

    Ever since the prison break at Iron Heights, Nightwing has been leading the Outsiders on secret international missions. They are eventually revealed while trying to free child soldiers in Mali where they faced a clone of Jay Garrick. They start investigating the trafficking of metahuman clones which leads them first to the Brotherhood of Evil and then Dr. Sivana. Sivana is revealed to be the mastermind of many of the team’s threats and investigations. They confront Sivana at his island headquarters, where Katana releases Sabbac’s soul to defeat him.

    This extra attention they drew to themselves put them back on Checkmate’s radar. Checkmate arrests the fugitive members of the team, with the hope of turning them into a strike team. The Science Squad was still active on Oolong Island, but Checkmate could not act without catching the ire of North Korea.

    When some of the members of the Outsiders are captured, Checkmate burns them and denies any responsibility for their actions. Despite this, China still offered them the chance to attempt a rescue which they accepted. Checkmate’s Knights and the free Outsiders, now with the help of Batman, return to the island to free their teammates.

    Nightwing yet again gives up being the leader and suggests to Batman that he should take over.

    Auditions

    \"No

    After Batman becomes the new leader of the Outsiders, he holds try-outs with the present team roster and possible newcomers. The first try-out is with Nightwing and Captain Boomerang; Nightwing quits the team because he doesn't approve of Batman's methods and Boomerang leaves to be a part of the new Suicide Squad.

    The second try-out is with Katana and Captain Marvel; Katana is chosen to be the first official member of the team, while Captain Marvel isn't chosen because he is too busy with the Rock of Eternity.

    The third try-out is with Thunder and Martian Manhunter; Martian Manhunter joins the team, while Thunder is kicked out.

    The fourth tryout is with Metamorpho and the new Aquaman; Metamorpho stays on the team, while Aquaman isn't accepted because Batman thinks that he can't match his predecessor.

    The last try-out is with Grace and Wonder Woman; Grace is accepted on to the team and Batman later reveals that Wonder Woman was never a candidate for membership.

    Batman's New Outsiders

    \"Batman's
    Batman's new team

    Batman decided on a new roster from the tryouts to help in his investigation of a businessman named Jardine and his connection to Brother Eye. Apparently, even tough Thunder was kicked out and Aquaman wasn't accepted, they both provided aid to the team when necessary. Catwoman also joined the team, but neither she nor Martian Manhunter would last beyond the first mission.

    During their first mission, the team investigated a Jardine lab on multiple fronts, discovering an OMAC robot that was being bombarded with gamma radiation. After stunning, the team would recover the robot and leave it in the care of Dr. Francine Langstron and Dr. Salah Miandad, who were able to duplicate it before the JLA came to commandeer the original from Batman.

    With the team now bolstered by new members Batgirl, Green Arrow, Geo-Force, and the revamped OMAC, Remac, the team looked into Jardine's rocket launch, which strands Rex on Jardine's moon base. Their attempts at a rescue put them on the wrong side of international incidents, but they end up with the intel that Jardine has built a giant space gun on the dark side of the moon to a bore a hole to the center of it.

    Unfortunately, Batman disappears during his investigation of the Black Glove, and The Outsiders struggle to remain together without him. He left them a video message that directed them to his Black Glove evidence to continue the investigation, but the Black Glove were ahead of him. They used a virus to blowup Remac, killing Salah and putting Thunder in a coma. The Outsiders disbanded over this, but Batgirl refused to give up. With Nightwing's eventual help, she would go on to create The Network to replace both Batman and The Outsiders.

    Dark Knight Contingency

    \"Outsiders
    Outsiders Contingency Roster

    After the 'death' of Batman during Final Crisis, Batman's butler, Alfred, finds a hidden chamber with a computer in it with Batman's last words for Alfred and other members of the Bat-Family. Alfred is asked to lead a new group of Outsiders that each of an individual characteristic of the Dark Knight since Batman is 'dead.' Alfred finds and recruits: Black Lightning, Halo, Katana, Geo-Force, the Creeper, Metamorpho, and Owlman (Roy Raymond, Jr.). Alfred tells these heroes that they need to cut ties with their old lives as now they will be on the constant front line of battle, which they all accept.

    Things quickly began to fall apart. Creeper quit the team when Metamorpho tried to reach out to him, and Geo-Force revealed that he had entered a non-aggression pact with New Krypton. Whilst foiling a robbery attempt by the newly reformed Masters Of Disaster, Black Lightning was forced to confront Geo-Force due to his increasingly erratic behavior. The two fought, ending with Geo-Force kicking Black Lightning and Metamorpho out of Markovia. This effectively split the team into 2 groups. Black Lightning's group was forced to turn to Simon Stagg in order to re-enter the U.S. However, they were betrayed when Stagg used Metamorpho's body to power a new version of Chemo and turned his henchman Java into the newest Shaggy Man. Stagg was eventually defeated, Metamorpho was freed, and the Outsiders gained a new member: Stagg's former bodyguard Freight Train.

    \"Outsiders
    Outsiders vs Outsiders

    Meanwhile, Geo-Force's team was just as busy, after quelling anti-Kryptonian riots in Markovia, Brion reformed Halo as a gift to Katana. Looker rejoined the team after an encounter with the vampire hunter Stake, and the team dealt with the invading forces of the Olympian and Geo-Force's ex-wife, Denise Howard, who had now mutated into an insane creature called Geode, after trying to gain powers like Brion's. Tragedy struck again when the creature known as Doomsday attacked the team and brutally murdered the Eradicator.

    Bruce Wayne was revealed to be alive and staged an attack on Geo-Force in order to evaluate the Outsiders worth to be involved in his future plans, a test they failed.

    While visiting Black Lightning's daughter Thunder and her girlfriend Grace, The U.S based team was attacked by the JSA All-Stars and Amanda Waller. Waller offered the team a deal: defeat and apprehend the Markovia based team or go to jail. Black Lightning swiftly accepted and gathered his team (Thunder and Grace now among them) and traveled to Markovia, causing an all-out Outsider vs Outsider war. This confrontation would eventually be ended by Batman's intervention, who brought everyone but Geo-Force back to the US.

    Batman officially disbanded the team, folding a few members into Batman Incorporated for his investigation into Leviathan.

    Rebirth

    In the Rebirth from the New 52, Batman had created The Outsiders as a black ops team that worked in secret from the Justice League and the Bat-Family. Their original purpose was to investigate the various dark multiverse metals, but they would eventually take on other missions.

    On the Outside

    \"Batman's
    Batman's Outsiders Mission Statement

    When Karma, a criminal from Batman’s past starts targeting the youngest of his allies (Duke and Orphan), Batman re-enlists one of his former Outsiders, Black Lightning, to take them plus Barbara, under his wing. The others didn’t take too kindly to being pawned off, and they decided to make Lightning’s job especially hard.

    When Karma kidnapped a TV anchorwoman and a busload of school children, Batgirl conspired to get Orphan into the field and help Batman behind Lightning’s back. While Batman took on Karma, Orphan attempted to free the children. She couldn’t figure out how to disconnect them from a bomb until Lightning showed up to help her. He contained the blast with his powers, while Orphan cut the wires. Karma ultimately got away, but the children were saved.

    Karma would show up again at a Wayne Enterprises building, holding a security guard hostage. Lightning would insist on leading the team, now including Katana, into the field with Batman. Batman agreed, as long as he fights Karma alone.

    He tracked Karma’s gear to a Markovian gun-running operation that was one of many global criminal networks that Batman had been tracking. He requested this new team stick together to investigate these crimes.

    Babylon and the League of Assassins

    \"Sofia
    Sofia falling to Ra's

    When a man Batman saved years earlier dies, he sends the Outsiders to Los Angeles to recover his now adult metahuman daughter, Sofia, who is still being tracked by her father’s killer, a man named Ishmael. He was the result of the same metahuman program as Sofia and was working for Ra’s al Ghul. The Outsiders were no match for Ishmael, even with Batman’s new ally, Kaliber, joining them on the west coast.

    Luckily, Batman had a tracker on her which positioned her in Khadym, Ra’s al Ghul’s rogue nation. Lightning and Katana sneak into the country with cover IDs from Kaliber, but Sofia has been transformed into Babylon, a brainwashed enforcer for the League of Assassins. They are able to bring her in, but Kaliber reveals himself as a League mole. He sabotages the plane back into Gotham, but Lightning, Katana, and Sofia miraculously survive, with Batman making yet another promise to Sofia to keep her safe.

    Meanwhile Ishmael attacks Duke and Cassie, torturing Duke with a metahuman upgrade and torturing Cassie through a confrontation with her mother, Lady Shiva. He also revealed to them that Karma was a prisoner of Batman’s. Neither of them took the bait.

    Feeling the need to put pressure on the team, Ra’s had a friend of Lightning’s killed, making him doubt his commitment to the team. This prompted Lady Shiva to extend an offer to help him get vengeance on the League of Assassins. They tracked down a Markovian arms dealer. Before she could give them information, she was killed by Kaliber, who was with Ishmael and Karma.

    As the trio attacked, Lightning and Shiva were joined by the Outsiders, who broke ranks to help him. They were getting the best of the League assassins, when Kaliber blew bombs across the nearby town. The Outsiders were forced to give up on the fight to rescue the townspeople.

    \"The
    The League vs the Outsiders

    The team regrouped in Gotham, now with Lady Shiva as a member, where Batman was proud of the people they saved. Together, they investigated an alien warcraft that Ra’s had recovered and found Kaliber, Karma, and Ishmael dead. They received a message from Ra’s. Disband the team, hand the children over to the League, and kill Shiva for her betrayal, and Ra’s will end his terror on the world.

    Despite most of the team disagreeing with him, Batman believes their most prudent move is to bench the team and give in to Ra’s demands until they can learn more about his alien weapon. His prevailing theory is that it taps into Earth’s electromagnetic field and Lightning could disarm it if he pushes himself beyond his current limits. However, an impatient Lady Shiva convinces Duke and Cassie to go rogue with her. They run down leads until they get Ra’s location from a random League goon, which they share with Batman.

    The team regroups in Tokyo, where Ra’s interrupts a meeting of the same consortium that created Babylon and Ishmael. Lightning is able to run interference with the device, while the rest of the team engage in a fight with the League. Once Lightning is able to destroy the device, Ra’s retreats back to the shadows.

    Back in Gotham, the future of the team was uncertain, but Sofia ultimately left with Shiva to find herself.

    Signal and the Outsiders

    \"Signal's
    Signal's clue board

    Lightning and Katana were having dinner with Metamorpho, catching up on the good old days, when they invite Rex back to the Outsiders along with Signal. Lightning envisioned the Outsiders as a modular team with a revolving fifth member, who could call on the Outsiders to help. Some of the revolving fifth chairs included: Frankenstein, Tim Drake, Green Arrow, and Mister Miracle. Soon after, the team started getting worried that Signal was spreading himself too thin due to him also independently investigating his mothers missing person case. It is at this point that Batman took the fifth chair so the team could make Signal's mission their own.

    Together, they conclude that Duke's mother is not the only victim of a Joker attack. They think Joker and Scarecrow victims are being kidnapped for having potentially millions of dollars worth of pharmaceuticals in their blood post-exposure. To bait the kidnappers, the Outsiders stage a fight against a mutated Joker victim, who was really Rex in disguise.

    \"Outsiders
    Outsiders vs a new Man-Bat

    Rex's fake mutant is rerouted to a rehab clinic run by Dr. March, Man-Bat's father-in-law. He had been exposed to the Man-Bat formula looking for a cure on behalf of his daughter, Francine. He hoped to fund a cure among the mutated blood of victim's of other Batman villains. March had all the victims in a zombie-like state, but he turned them feral to keep the Outsiders busy. While they tried rounding up the victims and subduing March's Man-Bat form, Rex got to work on the doctor's files. Using his research, he started synthesizing a version of the chemical that rendered everyone a zombie but at a smaller dosage that would simply return them to normal.

    In Other Media

    Batman: The Brave and the Bold

    In Batman: The Brave and the Bold, Black Lightning, Metamorpho and Katana are a group of teenage 'outsiders' that are influenced by Sleez to attack society for considering them freaks. Batman and Wildcat defeat Sleez and convince the Outsiders that they can do better things with their abilities. Wildcat trains them to box and hone their skills to do good. The teaser of \"Duel of the Double Crossers\", they train in a simulation against Despero. In \"Inside the Outsiders\", the team falls victim to Psycho-Pirate. Batman goes inside the minds of each member to stop Psycho-Pirate from feeding from their emotions. In the teaser for \"Requiem for a Scarlet Speedster\", the Outsiders return, now with Black Lightning and Katana in comic book accurate outfits and with the addition of Halo and Geo-Force. They and Batman fight Kobra.

    Beware the Batman

    The Outsiders are formed by the end of Beware the Batman. In \"Monsters\", where Batman, Katana, and Metamorpho team up against a gang of armored criminals hired by Sapphire Stagg. Metamorpho calls them \"outsiders\". In \"Alone\", Katana recruits Metamorpho, Oracle and Man-Bat to assist Batman against Deathstroke. They, along with Alfred, deactivate Deathstroke's bombs in the Batcave and wipe his memories of Batman's true identity. Alfred also calls the group \"outsiders\".

    Young Justice

    The Outsiders are featured in the third season of Young Justice, titled Young Justice: Outsiders. It is the brain child of Beast Boy, who wanted to bring the covert team out in the open and use social media to help inspire other teens, especially those with the metagene. Teammates Static, Blue Beetle, Wonder Girl, and Kid Flash (Bart Allen) joined his cause right away, with Geo-Force, Forager, El Dorado, and Halo joining soon after.

    Despite being featured in promotional material for that season, regular members Black Lightning, Metamorpho, and Katana were members of other teams.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-926598/","id":926598,"name":"Sonderbericht - Die Aussenseiter","issue_number":"197217"},"id":5704,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8501817-ezgif-5-e45a4e2b93.jpg","image_tags":"All Images"},"name":"Outsiders","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/outsiders/4060-5704/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-5712/","count_of_isssue_appearances":0,"count_of_team_members":27,"date_added":"2008-06-06 11:27:48","date_last_updated":"2019-07-28 09:58:57","deck":"A group of robotic superheroes created by William Magnus. Each of them are constructed with a responsometer, a device that gives them human intelligence and personalities and allows them to control their given element.","description":"

    Origin

    The Metal Men were created by Doctor Will Magnus, a young, successful, and inventive genius. By the time of the Metal Men's creation, Magnus had already amassed a personal fortune through patent royalties - much of which he invested in his research. The result of one of his projects was a robot made of platinum, female in form, whom Magnus nicknamed Tina.

    Unlike conventional robots limited to certain programmed tasks, Tina was powered by a responsometer, a nuclear powered microscopic activator. Not only did this device animate her body, but it endowed the robot with distinct and decidedly human intelligence and personality. It was due to the latter trait that Magnus decided to put Tina in the Science Museum; his activator was too perfect and Tina, to his mind, too much of an annoyance.

    Before Doc Magnus could attend that chore, he was alerted to the menace of a monstrous prehistoric winged creation recently released from its glacial resting place. To combat this radioactive menace, Magnus created an entire team of responsometer- powered robots, each forged from a different metal, each with its own unique strengths. These robots he dubbed his Metal Men.

    Creation

    The Metal Men were created by writer Robert Kanigher, pencilled by Ross Andru and inked by Mike Esposito for DC Comics in 1962. The team first appeared in Showcase #37 (March-April 1962) added as last minute fillers. Showcase was a book that was traditionally used in the Silver Age as a way to test waters for new characters and has spun off many successful new characters such as the Silver Age Flash, Silver Age Green Lantern, and Silver Age Atom. After three issues of successful for sales, the Metal Men got spun off into there own title.

    Team Evolution

    Like Tina before them, each of the new robots possesses very individual personality traits.

    • Intelligent and analytical, Gold is the team's acknowledged leader. His golden form has all the physical properties of the metal from which he has been forged: he can stretch into a thin wire miles long, or flatten into a sheet 4 millionths of an inch thick.
    • Lead is rather slow, but big hearted and reliable. His ability to shield against harmful rays and radiation are a frequent and useful asset to the team.
    • Iron is the Metal Men's strongman. Good natured and friendly, he is the group's powerhouse. He is able to be shaped and formed into an infinite variety of objects to assist the team in its missions.
    • Mercury is proud, egotistical, and fond of telling anyone who will listen that he is the only metal that is a liquid at room temperature.
    • Tin is the smallest and weakest of the Metal Men, though he is possibly the bravest soul, and is always willing to risk his existence to aid anyone in danger. As a result of his feeling inadequate, Tin stutters, although this impediment often vanishes in the heat of battle.
    • A further unofficial member of the team was \"Nameless\", a robot built by Tin. Shy and withdrawn, Nameless was Tin's \"girlfriend\" until her destruction in battle.

    In the course of their career, the Metal Men have fought a variety of foes, most of them robots created for evil. Perhaps their most unusual and deadliest foe is Chemo - a walking stew of chemical waste in gigantic humanoid form, mindless and bent on destruction. Among their other foes are the Missile Men, the Gas Gang, B.O.L.T.S., Doctor Yes, and the Plastic Perils.

    Major Story Arcs

    The Metal Men's exploits brought them worldwide acclaim. Doc Magnus was constantly struggling with his desire to be rid of these human-like robots and their annoying squabbles and the world's need for their unique abillities. He watched as they were repeatedly destroyed and then brought back to life again.

    Magnus eventually retreated into his vast, fully automated research facility and immersed himself in his work. However, the strain proved too much for him and he had a nervous breakdown.

    While Magnus recovered, the Metal Men continued to fight as a team. When he was back to himself, Magnus rebuilt the body of Robotman, the only survivor of the Doom Patrol at that time.

    Dr. Magnus and his Metal Men moved out of California and the government put them in Illinois, where the populous hated them and TV actor Robot Hunter tried to kill them by bombing Magnus's house.

    Later, the Metal Men were mind controlled by Max Lord to attack Fire, Ice and Rocket Red. The metal men became Alloy, but Ice froze the giant being. They survived this experience.

    New 52

    In the New 52 The Metal Men were created by Will Magnus for the army in order to work in hazardous enviroments were normal humans couldn't go. However not long after awakening the group was attacked by Chemo, in order to stop him The Metal Men sacrificed themselves by entering Chemo's body in order to destroy him which also had the unfortunate side effect of destroying their bodies.

    The Metal Men would not be re-activated again until Cyborg visited Dr Magnus beseeching him to re-active them so that they could help him fight Grid and stop the Crime Syndicate who had taken over at the time. Dr Magnus was resistant to the idea at first since he had grown attached to the Metal Men and did not want to risk loosing them again, however he eventually agreed. The Metal Men successfully helped in Grid's shutdown and they also fought several Secret Society members on the way.

    At one point Platinum was sent to the Justice League recruitment meeting as a potential recruit by Dr Magnus. She malfunctioned during the meeting and started attacking the guests but was promptly shut down by the attending super heroes. Dr Magnus also warned the attendees that if her responsometer were to be destroyed she could not be rebuilt, as it was falling to the ground about to be smashed it was saved by The Atom.

    Alternate Realities

    Batman Beyond

    In the Beyond universe, Magnus dismantled the metal men and gave components to different people without their knowledge in order to protect the robots when he was gone. The metal men combined as Alloy were discovered by Rebel-One, who tried to use the being to destroy Neo-Gotham. They were saved by Terry McGinnis and Maxine Gibson.

    Other Media

    TV

    Batman: The Brave and the Bold

    The Metal Men appeared twice during the television run of animated series, Batman: The Brave and the Bold. Their first appearance was in the Season 2, 2-part episode, Seige of Starro!. They later appeared once again in the Season 3 episode, Mitefall!.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-5788/","id":5788,"name":"The Flaming Doom!","issue_number":"37"},"id":5712,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111147698/7021561-ahr0cdovl3d3dy5uzxdzyxjhbweuy29tl2ltywdlcy9plzawmc8ynjavmza3l29yawdpbmfsl01ldgfsx01lbl9ddjeuanbnpze1njmymdy1nde%3D.jpeg","image_tags":"All Images"},"name":"Metal Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/metal-men/4060-5712/"},{"aliases":"Superguardians","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6097/","count_of_isssue_appearances":0,"count_of_team_members":66,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-01-30 04:42:22","deck":"The Imperial Guard is a legion of superpowered champions who protect and defend the Shi'ar galactic empire.","description":"

    Origin

    The Imperial Guard was formed centuries ago when a man named Rook'Shir, who wielded the power of the phoenix in his blade, was ravaging the Shi'ar Empire. They ultimately defeated him and hunted down his descendants, as they are the only ones able to wield the blade.

    Its members are drawn both from the Shi'ar and other alien races governed by the Shi'ar. The majority of the Imperial Guard's members are known as Borderers. They assist the governors of conquered planets in enforcing the Shi'ar imperial law.

    The Imperial Guardsmen however belong to the elite corps that protects the ruler of the empire, known as the Majestor or Majestrix, and executes his or her orders. The praetor (leader) of this elite corps is Gladiator, the most powerful member of the entire Imperial Guard.

    The duty of the Imperial Guard is to serve the monarch of the Shi'ar, no matter who it may be. The Guardsmen once aided the mad emperor D'Ken against his rebellious sister Lilandra, but when Lilandra succeeded D'Ken as ruler, the Guard switched their loyalty to her.

    Creation

    The Imperial Guard was created by Chris Claremont, Dave Cockrum and Dan Green in 1977 and first appeared in X-Men # 107. Many of the characters that make up the Imperial Guard are in fact loosely based on many of the characters that make up DC Comics Legion of Superheroes. Scintilla for example bearing resemblance to Shrinking Violet, Hobgoblin based on Chameleon Boy, Astra based on Phantom Girl, and Fang based on Timber Wolf, among many other parallels. During an early appearance, Wolverine battles (and defeats) Fang, stealing his costume; this battle may have been inspired as a nod to fan speculation about a battle between Wolverine and Timber Wolf.

    Major Story Arcs

    Guard Shattered

    During a fight with Vulcan the Imperial Guard suffered many casualties. Those who died in the fight were: Smasher, Hobgoblin, Cosmos, Neutron, Titan, and Impulse. Oracle and Nightshade were severely injured but they may have survived the battle. Gladiator, Scintilla, Manta, Earthquake, Mentor, and Flashfire survived the battle. Recently Vulcan formed a new Imperial Guard using the five most dangerous criminals the Shi'ar Empire has ever captured. They are: Xenith, Pn'Zo, Hodinn, Uncreated and ZZZXX.

    War of Kings

    The Shi'ar went to war with the Kree, who were joined by the Inhumans. In a battle between Vulcan and Black Bolt, both seemed to be killed. In the aftermath, the Kree, lead by the Inhumans, were the victors. Gladiator became the new Majestor of the Shi'ar with the Inhumans as their overlords. A peace is trying to be formed between the Shi'ar and the Kree.

    Realm of Kings

    The Guard is originally dispatched to the planet Izumbardi, location of the production facilities for the Shi'ar Imperiums finest fleet. After the war with the Inumans, Izumbardi has become disheartened with the entire situation, and has decided to break off rather then remain under Shi'ar rule. This however is unacceptable to the Shi'ar, and as the apparent ruler of the planet is giving his declaration of independence, a scout reports to him that something is coming. It's the Imperial Guard, with guns blazing.

    \"The
    The Imperial Guard assaults Imzumbard

    But watching the Guard from a command center, Gladiator is finding it hard not to be out in the field again. He knows that as Majestor of the Imperium, he can't aid them in any sort of official capacity, as it would be frowned upon my members of the Shi'ar governing body. But old habits die hard, and as the guard is encountering some major resistance, it's Kallark the turns the tide and saves the day once again. Later as Kallark is receiving reports from the Shi'ar imperial flagship, one of his councilors berates him for taking such action, stating that it's a matter of image. Councilor Araki is dismissed, only to return to a room where the real councilor Araki is being held in a stasis field, as the imposter councilor reveals himself to be the infamous member of the Raptor Society, Talon. Later as the Guard are celebrating their victory, a small scuffle breaks out over whether Gladiator is actually the right person to lead the Imperium. But it's quickly interrupted by the new Praetor Mentor with a message that Gladiator requires them for a briefing, as they'd just volunteered themselves for a mission to the fault. And since the Imperiums fleet is stretched thin, Gladiator has acquired them a special transport team - The Starjammers.

    At the fault, the Guard and the Starjammers are assaulted by a massive bio-organic ship, and consumed. The vessel is essentially helpless and as Ch'od and Mentor begin repairs on the ship, it's the Guards mission to defend it from alien microbes intent on beginning the digestion process of they're fleshy prison. As Fang, Manta, and Hussar are busy repairing the hull, the exploration team of Flashfire, the new Smasher, and Oracle are returning with enemies on their tail. They're saved as Flashfire returns to cook the microbes alive, and repairs are finished on the ship as they blast they're way out of the belly of the beast. But as they continue their exploration, they find drifting in space the Earth hero Quasar, badly damaged and running from none other then monsters of the Cancerverse.

    \"The
    The horrors of the Cancerverse

    Back on the throne world, Gladiator is saved by the figurative bell, as an attendant draws him from what looks to be an incredibly boring meeting. The M'Kraan Crystal is behaving strangely with power fluctuations, and as Gladiator approaches it, the quantum energies seem to recognize him. Gladiator touches the crystal is is given a mental communication from the Guardsman Oracle who's using Quasar to channel. The message is dire. There's danger at the fault, and the Guard is requesting massive assistance. But Oracle and Quasar can't hold the message for long, Gladiator wishes to go immediately, and even as the true Councilor Araki warns him about this decision, Gladiator can't stand to let his former comrades simply give up their lives in his service.

    Meanwhile back at the Starjammers ship, the Guard is forming a wall of debris and Warstar is laying down a minefield for defense against the inhabitants of the Cancerverse coming to assault them. As the first of the defenses are tripped, Ch'od angrily messages Mentor. Someones sabotaged the ship by removing the Hypderdrive Capacitor. And the only suspect? The newest Smasher, who's on his first tour. As the members of the Guard and the Starjammers confront him, Plutonia grabs some amulets he had behind his back, and the new Smashers disguise is ruined. It's once again, Talon of the Society of Raptors. Talon says that he was only trying to help, and that if the amulets are returned, he can create two new raptors and boost the firepower of the Guard immensely.

    Back outside, the Cancerverse inhabitants are attacking, but there's something oddly familiar about them. They all resemble members of the X-Men, from Wolverine, to Cyclops, and even Storm. A battle ensues, and the Cancerverse's Nightcrawler manages to kill Starbolt. It's revealed that the attack is being orchestrated by the Cancerverses version of Xavier as some sort of Cerebro Ship. As things are looking dire for the guard outside, just as Neutron is about to be devoured, something bursts through one of the flesh ships and kills it. Gladiator had joined the battle, bringing along more members of the guard, and using the M'KRaan crystal to transport them all to the fault to aid the rest of the Guard. With Gladiators arrival, the tide of the battle is quickly beginning to shift, but unfortunately, the Guardman Neutron is also killed in battle. Gladiator arrives at the ship for the briefing and is informed of the situation. Like the others, he's incredibly unhappy with Talons presence, but Talon manages to convince them that he can help. He simply needs two volunteers to become Raptors temporarily. So Mentor and Plutonia volunteer, and together with Quasar, the Raptors, and Gladiator, they lead the assault on the inhabitants of the Cancerverse attacking them. When Gladiator feels it's time to withdraw and return to the Imperium, Quasar points out that the enemy seems to be falling back - on orders from the Xavier ship who lets out a massive psychic attack. The Starjammers manage to destroy it, and return to the Imperium. Later, Kallark reports to the Inhuman queen Medusa to explain about what happened at the fault. He warns them of what's coming, and everyone agrees that now more then ever, the Kree and the Shi'ar must be allies.

    Alternate Realities

    Earth 295 - Age of Apocalypse

    \"AOA\"
    AOA

    After the mentally imbalanced son of Charles Xavier travels back in time, to kill Magneto, he unwittingly creates a new reality in which Apocalypse rules the Earth. In this reality exists an Imperial Guard as well. In this reality they are still loyal to D'Ken, who still seeks the power of the M´kraan Crystal. The same artifact that Gambit and his crew seek to steal a shard from.

    This bringing the two groups into conflict with each other, as the Imperial Guard appear attacking Gambit and the X-ternals, when they arrive to try to steal the M´kraan Crystal. The Guard temporary, allied themselves with X-Ternals pursuer Rictor to fight the renegades. An unstable M´kraan Crystal producing powerful shock waves teared though their ranks during the battle, ending the lives of many of the Guardsman. Gladiator being one of the few members of note to survive the initial wave, later falling in battle with Sunspot.

    Earth-41001 - X-Men The End

    Cassandra Nova orchestrates the end of the X-Men, and uses the Shi'ar and the Imperial Guard as pawns in her massive scheme. The final battle of X-Men and the Imperial Guard on their home planet decimates the ranks of both teams, leaving both vulnerable to a power mad Nova.

    OTHER MEDIA

    X-MEN: THE ANIMATED SERIES

    \"No
    \"No

    The Imperial Guard appeared in a few episodes of the series during the Phoenix Saga. The Starjammers (The Phoenix Saga Part 4, Episode 32) Child of Light (The Phoenix Saga Part 5, Episode 33)

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-17894/","id":17894,"name":"Where No X-Man Has Gone Before","issue_number":"107"},"id":6097,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1005084-prv3685_pg5.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1005084-prv3685_pg5.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1005084-prv3685_pg5.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1005084-prv3685_pg5.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1005084-prv3685_pg5.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1005084-prv3685_pg5.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1005084-prv3685_pg5.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1005084-prv3685_pg5.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1005084-prv3685_pg5.jpg","image_tags":"All Images,Earth-616 Imperial Guard"},"name":"Imperial Guard","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/imperial-guard/4060-6097/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6331/","count_of_isssue_appearances":0,"count_of_team_members":13,"date_added":"2008-06-06 11:27:46","date_last_updated":"2018-09-02 07:37:12","deck":"Ewoks are a small teddy bear like species that is native to the planet Endor.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-172197/","id":172197,"name":"Mad 176-179","issue_number":"25"},"id":6331,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/19151/367187-154544-ewoks.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/19151/367187-154544-ewoks.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/19151/367187-154544-ewoks.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/19151/367187-154544-ewoks.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/19151/367187-154544-ewoks.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/19151/367187-154544-ewoks.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/19151/367187-154544-ewoks.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/19151/367187-154544-ewoks.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/19151/367187-154544-ewoks.JPG","image_tags":"All Images,gallery"},"name":"Ewoks","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/ewoks/4060-6331/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6796/","count_of_isssue_appearances":0,"count_of_team_members":2,"date_added":"2008-06-06 11:27:46","date_last_updated":"2014-10-28 17:29:04","deck":"The Bacchae are loyal servants to Hippolyta and Hades.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-45176/","id":45176,"name":"Seize the child","issue_number":"7"},"id":6796,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5586/551687-ba1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5586/551687-ba1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5586/551687-ba1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5586/551687-ba1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5586/551687-ba1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5586/551687-ba1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5586/551687-ba1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5586/551687-ba1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5586/551687-ba1.jpg","image_tags":"All Images"},"name":"Bacchae","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/bacchae/4060-6796/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6889/","count_of_isssue_appearances":0,"count_of_team_members":1,"date_added":"2008-06-06 11:27:47","date_last_updated":"2014-08-22 15:02:51","deck":"The Madmen are a gang of misfits who wear brightly colored costumes.","description":"

    History

    The leader of the Madmen is Farley Fleeter he and his gang have gone up against many heroes but they have always been a long term rival to the Ted Kord, the Blue Beetle. Farley Fleeter lead the group of the Madmen for a while until he decided it was too costly to run around in such outlandish costumes. He did not change his ways he just stopped dressing in the costumes. He would change his mind shortly after when Dr. Alchemy paid him to attack Kord industries. Alchemy wanted them to be a distraction while he stole promethium that was being kept at the company. Farley agreed to the terms and was subsequently arrested for his troubles. The Madmen joined Alexander Luthor's Secret Society of Super Villains. Many of them were either killed or seriously injured by the Secret Six.

    Costumes

    The Original Madmen's Costumes

    The original madmen wore multicolored camouflage costumes in yellow, red, white, and green all in the same costume. They also had their faces and hair painted in different colors. Each ganger basically wore the same costume but had a different colored face and hair. They also all wore facial hair in the form of a goatee.

    Farley Fleeter's Costume

    Farley Fleeter's Costume is a camouflage like uniform with bright colors from all his gang membes uniforms. He is also depicted with yellow hair and red face, gloves, boots and briefs. Most of the time he is the only one with any facial hair. He wear a long bushy goatee that he also colors yellow.

    The Madmen's Costumes

    There are six other members of Fleeter's gang they are paired in three groups of two. This is seen in their costumes. The ganger in the yellow camouflage costume will have yellow boots, hair, gloves and briefs but his face will be purple. While the purple ganger will be just the opposite with a yellow face. It is the same for the blue and orange gangers and, the green and red gangers.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9640/","id":9640,"name":"The Reign and Fear and Madness created by The Madmen","issue_number":"3"},"id":6889,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/64770/2194801-madmen.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/64770/2194801-madmen.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/64770/2194801-madmen.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/64770/2194801-madmen.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/64770/2194801-madmen.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/64770/2194801-madmen.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/64770/2194801-madmen.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/64770/2194801-madmen.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/64770/2194801-madmen.jpg","image_tags":"All Images,Comics"},"name":"Madmen","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/madmen/4060-6889/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6905/","count_of_isssue_appearances":0,"count_of_team_members":16,"date_added":"2008-06-06 11:27:47","date_last_updated":"2019-05-02 01:09:08","deck":"The Royal Flush Gang is a group of card-themed supervillains in the DC Universe.","description":"

    Origin

    Created by Professor Amos Fortune, a group of five villains (Ace, King, Queen, Jack, and Ten) used the Professor's luck-altering technology and had costumes resembling the suit of clubs.

    Creation

    Created by Mike Sekowsky and Gardner Fox, the Royal Flush Gang is a group of usually incompetent super-villains based on a suit of playing cards.

    Team Evolution

    The Original Gang

    When Fortune left the Gang, and they attempted to go on without him, but were stopped by the Joker's manipulations. Later, while battling the Justice League and their successors, the second Royal Flush Gang, the original King, Queen and Ten were killed.

    The Second Gang

    Started by Hector Hammond, the second Gang was the only one with full identities for nearly everyone. He changed the suit to spades and recruited new members:

    *Ace (real name Derek Reston) was an android with super-strength in the form of a man.

    *King (real name Joe Carny) became immortal due to the metagene bomb and had the power of mind control.

    *Queen (real name Mona Taylor) could create realistic illusions and had a wrist shooter that fired spades.

    *Jack (real name unknown) had one real eye and one eye which was a laser weapon. He also had an energy-charged sword.

    *Ten (real name Wanda Wayland) had energy blasters in her gloves and carried explosive playing cards.

    Ten also had pre-teen henchmen that extended the Royal Flush Gang called Ten's Little Indians. Danny Chase went undercover for the New Titans.

    Third Gang

    In Superman: The Man of Steel, the Royal Flush Gang had expanded all across America. Instead of only five members, each group had fifty-two, and four suits.

    Infinite Crisis Gang

    The Royal Flush Gang joined Alexander Luthor's Secret Society of Super Villains. The Joker, after being rejected from society, kills all fifty-two members of a Gang in a casino.

    Post-Crisis Gang

    In Justice League of America Vol. 2 # 35, a new version of the Royal Flush Gang appears. This new gag works under Amos Fortune's authority, who is addressed as \"Wild Card\" by his other members. He gives a history of the gang that combines the first and third gang's histories/characteristics, with Amos indicating that he was always running the group in some capacity.

    There are multiple active, costumed members as some of them derive their outfits and code-names from with pip values lower than ten. Members can also raise in numerical ranks as a reward for their success, or be \"dealt out\" at the discretion by their leader.

    It's unclear if there are still 52 cells throughout the country, or that there are 52 members it total as a lower ranked member mentions that there are four Queens, but Amos states that the group is constantly growing.

    The latest Royal Flush Gang has gone toe to toe with Zatanna when she took her show to Las Vegas. This gang has designed their motif to represent Frank Sinatra's Rat Pack for the exception of Queen. Jack looks alot like Sammy Davis Jr. but he calls himself \"The Candyman.\" King, of course, bears a striking resemblance to Frank Sinatra, the Chairman of the Board and Ace represents Sinatra's right hand man Dean Martin. Zatanna defeats the gang when she summons the neon lit cowboy on the Vegas Strip, to do her bidding. The cowboy grabs the gang and tosses each of them into a different corner of Vegas thereby knocking them out for the authorities.

    New 52

    \"No

    In the New 52, a new version of the Gang appear and battle the Rogues during the events of Forever Evil.

    Other Media

    Super Friends

    \"No

    The Gang appear in the final season of the show, led by the Joker (disguised as Ace). In this show, Ten is a young African-American girl and a former friend of Cyborg.

    Justice League

    \"No

    In the episode \"Wild Cards,\" five super-powered kids were freed from a government facility by the Joker and Harley Quinn in exchange for becoming the Royal Flush Gang. Ten had invulnerability and super strength, Jack had an elastic body, Queen could manipulate metal, King could blast fire, and Ace, the most powerful, could create illusions and drive people insane just by looking at them.

    Justice League Unlimited

    In the season 2 finale episode \"Epilogue,\" Amanda Waller recounts Bruce Wayne's final confrontation with the Royal Flush gang. This version of the Gang was lead by Ace, the illusion casting young girl from previous Justice League episodes. Ace uses psychic abilities to wreak havoc on Metropolis and imbue ordinary people with special abilities, making them her Royal Flush Gang. This version showed different versions of the Gang, all based on some sort of popular culture reference: King was a large floating head, much resembling Marvel's supervillain MODOK, a villainous creature created by Jack Kirby (often referred to as \"the King of Comics\"); Queen was a man who had been transformed into a large, operatic, drag-queen style woman with a powerful scepter; Jack wielded a samurai sword and sported kabuki style makeup, resembling the then-popular Cartoon Network Series character Samurai Jack; and Ten was based on Bo Derek's iconic performance in the 1979 movie \"Ten,\" with prehensile braids that could be extended from her head. Once Batman convinced Ace to stop using her powers and return Metropolis to its former state before dying of an impending brain aneurysm, the Royal Flush Gang were returned to their former selves as well.

    Batman Beyond

    \"No

    The gang in this series was a family of thieves. King and Queen are married, and their children serve as Jack and Ten. They are also accompanied by a super strong android called Ace.

    After the gang was arrested, a new Royal Flush Gang makes a sudden appearance on the Deuce's Wild Floating Casino. Batman (Terry McGinnis) was outnumbered and the the gang escapes but he did learn a few things that seemed out of place. This gang travelled without Ten, Ace's body seemed soft when Terry laid a few punches as if he were human rather than an android and the actual Royal Flush Gang was still in prison. Terry goes to the newly renovated Blackgate Penitentiary in order to find out if the Royal Flush Gang has found a way to sneak out of prison to conduct their crimes before their parole. Terry observes King and Queen having a private call with Melanie aka Ten, who is currently serving time in juvie. Melanie had heard about the copycat Royal Flush Gang and wanted know if her parents were behind it but King abruptly ends the call because he was still disappointed in her for her disobedience.

    Bruce calls in Terry, telling him to quit the recon and to react to a break in at the No Trump Jewelry Store. Someone that looks like Ten is stealing the Broken Heart Diamond. Terry intercepts Ten's escape. She reacts by throwing sharp playing cards at Terry but Terry dodges them with a manhole which causes the cards to ricochet back at Ten. One card slits Ten's left cheek and Terry makes his way to apprehending her. As Terry gets close, Ten slips an electrical playing card that shocks Terry and Ten makes her escape. Terry destroys the card and heads to juvie hall where Ten is being held. Terry arrives to notice Ten walking as part of a chain gang back to her cell block. Terry also notices that Ten doesn't have scar on her left cheek.

    Bruce figures out that King and Queen have twin siblings. Each King married a Queen but their offsprings turned out different. The original King and Queen had Melanie and Jack Walker while the copycat King and Queen only had one daughter that looked similar to Melanie. Both families had criminal tendencies and the copycat King shared a cell with two men that looked similar to Jack and Ace. Terry figures out what the copycat gang is up to. They were ridiculing the original gang in prison with their thefts and now the copycats will kill the original gang at their parole hearing.

    Terry manages to save three members of the original gang and defeats the copycats but King screws up the parole hearing when he holds Batman as well as the parole board hostage. Fortunately, the gun that King held only responds to the fingerprint recognition of a prison guard. Terry detains the original gang and heads toward juvie hall. The guards at juvie hall try to break into Melanie's cell but it was locked from the inside. Terry uses his suit's super strength to kick down the door and begins to console Melanie because she has her copycat cousin kneeling on the floor. Melanie wants to bash in her cousin's head with a scepter for all the misery her uncle and aunt brought her family but Terry's words get through to her. Melanie drops the scepter and her cousin is apprehended.

    The next day, Terry learns that the copycat gang are being processed for their crimes while the Walkers await the parole board's decision. The parole board deems the Walkers except for Melanie unfit for parole at this time. Melanie experiences mixed feelings. For instance, she is overjoyed to be released from juvie but she is saddened that her mother and brother will continue to be incarcerated at Blackgate because of King's actions. But most of all, she feels let down because as she looks back at the courtroom, she notices that Terry wasn't present at her hearing. However, Terry was there but Bruce convinced Terry to leave so there would be no second thoughts of rekindling a lost love affair.

    After Jack was released from prison, Melanie got him a job at the restaurant where she worked at, as a dish washer but that didn't last for too long. Jack usurped his father's position as King and started a series of tryouts for local street punks who wanted to become the new founding members of the Royal Flush Gang. Terry tails one street punk named Gary that has just committed a burglary. Terry beats up Gary and leaves him for the police. The next day, Bruce gets intel from Barbara and relays it back to Terry. According to Barbara's interrogation, Gary was bragging about how his burglary was an initiation to become a member of the Royal Flush Gang.

    Terry goes to Melanie for help and she agrees to end this nightmare once and for all. Melanie goes to visit King at Blackgate to learn about any hideouts that the gang used to meet at after Melanie was cast out of the gang. At first, King refuses to help Melanie and begins to taunt her about how rehabilitation has rewarded her as well as Jack. Melanie informs King that Jack has taken his position of power and is starting a new Royal Flush Gang. King becomes infuriated and tells Melanie everything.

    Jack and his new Queen welcome the new members to their gang. Since the software in the Ace android was outdated, Jack initiated a techno savy midget named Chet who can control Ace by via remote control body suit. As for the new Jack, a street punk named Wyatt takes the position. As for Jack's new Queen and Ten, their identities remain unknown. However, its possible that Ten is Melanie's identical cousin who has also not been named while Queen maybe Sable Thorpe, King's replacement Queen who double crossed Paxton Powers during Bruce's attempted assassination. Suddenly, Melanie and Terry crash the party. Melanie expresses her disappointment in regards to Jack's relapse into crime but Jack tells her that he has no regrets. Terry and Melanie easily defeat the new gang while the police arrive to cart the gang off to Blackgate.

    Batman: The Brave & the Bold

    \"No

    In the opening scene of an episode called \"Return of the Fearsome Fangs,\" the gang in this series are a gang of bandits in the Old West fighting Jonah Hex. Hex is caught and the Gang plans to tear him apart with scattering horses; however, Batman frees him and the two apprehend the Royal Flush Gang.

    Arrow

    \"No

    The Royal Flush Gang appear in the episode \"Legacies.\" In the show, they are a family who turned to crime after their father lost his job at Queen Industries due to outsourcing.

    Justice League: Doom

    The Royal Flush Gang appear in the film, which is based off of Tower of Babel and Justice. Here they test intangibility technology given to them unknowingly by Vandal Savage, but are take down by the Justice League and Cyborg early in the film.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8405/","id":8405,"name":"The Card Crimes of the Royal Flush Gang!","issue_number":"43"},"id":6905,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/7658/355426-48867-royal-flush-gang.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/7658/355426-48867-royal-flush-gang.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/7658/355426-48867-royal-flush-gang.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/7658/355426-48867-royal-flush-gang.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/7658/355426-48867-royal-flush-gang.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/7658/355426-48867-royal-flush-gang.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/7658/355426-48867-royal-flush-gang.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/7658/355426-48867-royal-flush-gang.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/7658/355426-48867-royal-flush-gang.jpg","image_tags":"All Images,Royal Flush Gang"},"name":"Royal Flush Gang","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/royal-flush-gang/4060-6905/"},{"aliases":"GLC\r\nLightsmiths","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-6992/","count_of_isssue_appearances":0,"count_of_team_members":417,"date_added":"2008-06-06 11:27:48","date_last_updated":"2017-03-31 10:41:29","deck":"The Green Lantern Corps is an intergalactic police force dedicated to the promotion of order and democracy throughout the universe. Each Green Lantern member protects a sector and it is their duty to defend it from any possible threat.","description":"

    Origin

    At the beginning of the universe, the population of the planet Maltus evolved into powerful and highly intelligent beings. They soon colonized a planet situated in the center of the universe, Oa. From then on they called themselves Oans. After one of their own, the renegade Oan Krona, performed an experiment that nearly annihilated all of creation, the Oans promised from that moment forward to combat evil throughout all regions of space, no matter how desolate, as the self-appointed Guardians Of The Universe.

    Creation

    The Green Lantern Corps were created by John Broome and Gil Kane. The Green Lantern Corps first appeared in the issue Showcase #22.

    Team Evolution

    Silver Age Origin

    \"Green
    Green Lantern Corps (Silver Age)

    The Guardians of the Universe created the Green Lantern Corps around 3 billion years ago and have since served as the universe's sole police force. The Guardians realized their failure with the Manhunters was due to their creation's single-mindedness, lack of emotion (such as fear and courage), and most importantly, the absence of morality and honor in the androids. The Guardians chose to assign sentient beings that excelled in fearlessness and morality. These beings would then watch over their sector of the universe. The sector that includes Earth is Sector 2814. The mission of the Green Lantern Corps is to protect the universe from interstellar threats of all kinds, ranging from planetary-level threats(problems that could annihilate an entire civilization) to cosmic-level threats(problems that could annihilate the entire universe).

    Each member has a great deal of autonomy as to their methods in their jurisdiction, subject to review by the Guardians if they feel the Green Lantern in question has abused their assigned authority. The individual Lanterns are responsible for arranging their replacements (when possible) if they are near retirement or death. If a Lantern dies before that obligation is met, the ring will find and seek another to be trained on its own. In rare circumstances, Guardians will personally go out into the field to recruit a replacement.

    Upon recruitment each Green Lantern in the original Corps received a Power Ring, a Power Battery shaped like a lantern (with which the ring is recharged), and a uniform. The default uniform design for humanoids was a green section covering the torso and shoulders, black arms and leggings, green boots, white gloves, green domino mask and a chest symbol of a stylized Green Lantern icon on a white circle. Lanterns were allowed to customize their uniforms as long as the color scheme and the symbol were present. When the nature of the being precludes a standard uniform, an equivalent arrangement is expected as a substitute. For instance, Mogo, a sentient planet, arranges his foliage to create a green circling band and lantern symbol on his body. Jack T. Chance, a humanoid, refused to wear a uniform, but conceded to wearing a badge on the lapel of his coat. Lanterns were also allowed the option of a secret identity as a security measure and it is implied that the Corps were instructed to honor that choice by taking care not to expose them. Training in the use of the ring is mandatory for all rookie Lanterns and appropriate facilities and personnel are available on Oa upon request. In addition, a senior Lantern can be assigned to coach a recruit while in the field of their sector. The Corps was destroyed when Hal Jordan was possessed by Parallax, But it was rebuilt when Hal Jordan sacrificed himself to stop the Sun-Eater.

    Post-Final Night

    \"Green
    Green Lantern Corps (Post-Final Night)

    The new Green Lantern Corps being built by the Guardians is far more formal and structured than the old one that was destroyed by Parallax. Recruits, after being found by their Power Rings, are taken to Oa for training. Not all recruits will make it through training - indeed a great many of them might even fail, forcing the ring to find another candidate. Lantern trainees have a simplified version of the old Green Lantern uniform (with green covering more of the torso) with the white circle on their chest blank, presumably until the Lantern insignia is added upon completion of their training. Additionally, all Power Rings, not just Kyle Rayner's ring, now work on the color yellow, provided the user can feel the fear behind the color and overcome it.

    Each member is given a Lantern Power Ring. The ring can create constructs that take the form of whatever the wielder imagines, so long as they have the willpower to channel and control the energies of the ring. The ring is limited only by the wearers' own fear and uncertainty. For this reason the ring is considered \"The Most Powerful Weapon in the Universe\". The power ring has its own intelligence and is able to understand the thoughts of the wearer. Though the ring itself is not sentient, if a Lantern is to ever die the ring is able to find a worthy successor. The ring does have a finite amount of energy before having to be recharged. Some Green Lanterns speak an oath to strengthen their will and reaffirm their determination during this time of recharge. The energy source of all this is fed by the Central Power Battery of Oa.

    In The 30th Century (Silver Age)

    \"Green
    Green Lantern Corps (30th Century - Silver Age)

    In the latter part of the 30th Century, the Green Lantern Corps main goal was not interfering with U.P. planets(the reason is currently unknown). Out of all the Green Lanterns, only two ever visited Earth. The first being Vidar, who was sent to Earth to stop certain experiments that could've revealed how the universe came into existence. The second Green Lantern was his son, Rand Vida, whose mission was stop his villainous father from conquering the planet.

    In The 30th Century (Retro-boot)

    The Green Lantern Corps has now been destroyed, with Rand Vida being the last living Lantern. When Rand was killed by Superboy-Prime, his ring scanned the sector for a replacement, only to find none existed. Due the ring's protocol, it headed to the center of the universe on planet Oa. The ring was then snatched by the Daxamite Sodam Yat. When Mon-El returned Vidar’s body to Oa, Sodam Yat, who is now the last of the Guardians of the Universe, demanded to know who would dare disturb the resting place of the Green Lantern Corps.

    Major Story Arcs

    The Manhunters

    \"Manhunters\"
    Manhunters

    The first attempt by the Guardians at regulating and fighting evil was the creation of a android army they called the Manhunters. They were effective at policing the universe for nearly a thousand years. Eventually the Manhunters became more dedicated to the pursuit of their quarry than to the administration of justice. This along with the belief that the Oans were restricting their potential, which led the robots to rebel. The Oans quelled the rebellion and disbanded the Manhunters by destroying them, but a few survived. They still challenge the Guardians to this day with their severe brand of justice, and have made the Green Lantern Corps their mortal enemy.

    Crisis on Infinite Earths

    For further details: Crisis on Infinite Earths

    During Crisis on Infinite Earths the Guardians of the Universe leave Oa. The Corps underwent a major reorganization. All the rings became inactive (except Hal Jordan, Guy Gardner, G'nort and Ch'p's), as a result of decision to execute Sinestro. The Guardians eventually returned and began reconstructing the Corps.

    Zero Hour

    For further details: Zero Hour

    During Zero Hour Hal Jordan destroyed the Corps while being possessed by the entity Parallax, which had been trapped inside the Power Battery.

    Sometime later the Corps was rebuilt (when Hal Jordan sacrificed himself to stop the Sun-Eater).

    Sinestro Corps War

    For further details: Sinestro Corps War

    \"Sinestro
    Sinestro Corps War

    Following his defeat during the rebirth of Hal Jordan, Sinestro retreated to the planet Qward in the Antimatter Universe, where he amassed an army known as the Sinestro Corps. Each member is armed with a yellow power ring mirroring the green ones of the Green Lantern Corps, and each member is chosen for its ability to \"inspire great fear\". Among the Sinestro Corps are Cyborg Superman, the sentient virus Despotellis, Ranx the Sentient City, now enlarged to planetary size, Superman-Prime, the Anti-Monitor, and the embodiment of fear, Parallax.

    The war spanned throughout the universe from Korugar, where Sinestro toyed with his successor Soranik Natu; Qward, where the Corps lost the brave Ke’haan and where Jack T. Chance was murdered by the Parallax-possessed Kyle Rayner; Mogo, where the battle finally turned once the Guardians authorized the use of lethal force; and finally to Earth where the Guardians themselves aided the Corps in defeating the Anti-Monitor and the homicidal Superman-Prime.

    Sinestro himself was defeated by Hal Jordan and Kyle Rayner in hand to hand combat. Jordan placed Sinestro under arrest, while the remaining Sinestro Corps members fled into space.

    In the aftermath of the war, the Guardians decide to bring the second of the new laws into affect. After realizing that the \" Blackest Night\" prophecy will come to pass, Ganthet and Sayd depart after creating a blue power ring with the intention of creating their own Corps, based on the spreading of Hope to the rest of the universe. The Anti-Monitor, drawn through the vacuum of space, finds itself on a dark planet and is transformed by an unknown force into a Black Power Battery. Many good Lanterns died during the war; the aftermath of which is still shaping the Corps in new and unknown ways.

    Blackest Night

    For further details: Blackest Night

    \"Blackest
    Blackest Night

    During Blackest Night the Blackest Night prophecy comes true. The Guardians are imprisoned by Scar, and Guy Gardner, Kyle Rayner, and Salaak take over leadership. All the dead Green Lanterns that were kept in the crypt came back to attack the current Corps members.

    Powers and Abilities

    Green Power Ring

    \"Green
    Green Power Ring

    Green Lantern rings give form to their bearer's will and imagination. In order to function correctly the bearer must be focused and able to overcome fear.

    The ring provides a protective aura to shield the bearer from harsh environments, such as space, and damage. It is indestructible unless the bearer's will overcomes the limits of the ring.

    Weaknesses

    A Green ring falters when the bearer starts to feel fear or loses focus. Subsequently the bearer's constructs and even their aura lose potency. The green ring is also susceptible to the flames of a Red Lantern and it's constructs are absorbed by the Orange Light.

    The Oath

    In Brightest Day, In Blackest Night;

    No evil shall escape my sight.

    Let those who worship evil's might,

    Beware my power... Green Lantern's light!

    This is the most common oath said by the Green Lantern Corps. But there are variations;

    The oath sworn by the Alpha Lanterns is;

    In days of peace, in nights of war,

    Obey the laws forever more.

    Misconduct must be answered for,

    Swear us, the chosen... The Alpha Corps!

    The oath sworn by Green Lantern Jack T. Chance:

    You who are wicked, evil, and mean -

    I'm the nastiest creep you've ever seen!

    Come one, come all; put up a fight;

    I'll pound your butts with Green Lantern's light.

    Yowza.

    The oath sworn by Green Lantern Rot Lop Fan, who is blind;

    In loudest din or hush profound,

    My ears catch evil's slightest sound,

    Let those who toll out evil's knell,

    Beware my power... the F-Sharp Bell!

    Corps Structure

    Entity: Ion

    Leader: Hal Jordan, Templar Guardians (future), Guardians of the Universe (formerly)

    Positions in the Corps

    Protocol Officer/Corps Administrator: Kilowog, Salaak (former)

    Drill Sergeant: Stel, Kilowog (formerly), Ermey (deceased)

    Crypt Keeper: Morro

    Corps Prosecutor: Malet Dasim

    Sciencell Warden: Voz

    Book Keeper: [possibly] Sinestro (future), Tomar Re (deceased)

    Other Branches

    Honor Guard: Guy Gardner (former), Kyle Rayner (former), John Stewart

    The Corpse: Von Daggle (leader)

    Alpha Lanterns: Kraken, Boodikka, Green Man, Varix, Chaselon (deceased)

    Positions in the Corps

    Protocol Officer/Corps Administrator

    The officer is the mediator of Guardians of the Universe and the rest of the Corps. After the death of the Guardians, the role of Administrator is to handle all internal workings of the corps.

    Drill sergeant

    The Drill sergeant of the corps is in charge of training the new recruits of the corps. The Drill Sergeant is exempt from having to patrol their Space Sector but is always posted on Oa.

    Crypt Keeper

    Oa is home not just to the living Lanterns but also resting place for the honored dead. The Crypt Keeper is in charge of interning the dead into the crypt.

    Corps Prosecutor

    The Corps prosecutor is in charge of court proceedings of enemies of the corps. Until recently the proceedings now include members of the corps who are under question.

    Sciencell Warden

    The guard of the Sciencells is around the block 24/7 with his Lantern in hand.

    Book Keeper

    The Book keeper guards the Book of Oa and attends to it's keeping.

    Branches of the Corps

    Green Lantern Honor Guard

    \"Honor
    Honor Guard

    The Honor Guard is a special force of elite Lanterns who have been chosen for their exemplary service or capabilities to serve full time on Oa. They, partially because Oa is technically in every sector, are not restricted to any one sector and serve as special operatives or troubleshooters for the corps. (One of Guy's assignments was to provide backup for Natu when her partner died). They also serve as commander’s during combat situations, such as during the Spider-Guild Assault. Guy Gardner was promoted to the Honor Guard, as Lantern 1 (Hal Jordan is lantern 2814.1) after his actions during that battle. In addition, after the removal of the Ion Symbiote during the Sinestro Corps War, Kyle Rayner was placed as his partner on the Honor Guard.

    The Corpse

    For further details: The Corpse

    \"The
    The Corpse

    An elite, top secret, “Black-ops” division, “The Corpse” handle the darkest and most dangerous missions facing the Green Lanterns. The members of the Corpse follow different rules than normal Lanterns, and in fact most don’t even know of their existence. One example being that they were not bound by the use of Lethal Force even before the Sinestro Corps War. (Gardner mentioned during a mission with them that he’d never heard of the Corpse, and after the mission his memory of them was erased.) Not much is known about the Corpse, though what is known pertains simply to their duties. Members of the Corpse do not use power rings like most Lanterns; instead they are given coin-like disks which when swallowed give them all of the same abilities for a limited amount of time. The energy produced by these disks is purple, as opposed to the usual green (though it is unknown with the recent revelations about the Emotional Spectrum what this means). Corpsemen do not wear the traditional green of other Lanterns, and under no conditions do they dawn the symbol. They tend to instead wear black uniforms that have no symbols, appropriate for their station. With the recent authorization of Lethal Force against Sinestro Corps members and other enemies of the Lanterns after the war, the need for the continuation of the Corpse is in question by some. Though there will likely remain a need for those who work in the shadows.

    Alpha Lanterns

    \"No
    No Lantern Escapes The Alpha Lanterns

    For further details: Alpha Lanterns

    After the Sinestro Corps War the Guardians create a new class of Green Lantern called the Alpha Lanterns. The Alpha Lanterns are seasoned Corpsmen who have been fused with their Power Rings and Batteries. Boodikka, Varix, Kraken, Green Man and Chaselon are all confirmed Alpha Lanterns; Hal Jordan is notably not chosen, and John Stewart is chosen but he declines the position.

    The Alpha Lanterns function as Internal Affairs for the Green Lanterns Corps - Hal Jordan refers to them in the same manner. They have \"the sentient drive and thought process of the Green Lanterns and the efficiency and logic of The Manhunters,\" as the Guardians turn them into cyborgs using Manhunter technology, and mainline their minds directly to The Book of Oa and the Central Battery. After the transformation, an Alpha Lantern would receive an additional power ring. Similarly to the most recent generation of Manhunters, Alpha Lanterns have a secondary face which can drain a Power Ring of its energy. The Alpha Lanterns tend to chant the Manhunter-like slogan \"No Lantern escapes the Alpha Lanterns\".

    Laira was the first Green Lantern to be punished by the Alpha Lanterns; for the crime of killing Amon Sur she was stripped of her powers and expelled from the Corps.At some point during Final Crisis, the Alpha Lantern Kraken is possessed by the spirit of the deceased New God, Granny Goodness, and manages to frame Hal Jordan for a murder he did not commit. By the time the Corps. finds out who the guilty party is, Granny Goodness reveals her plan to steal the power of the Central power battery for Darkseid. Injuring one of the Guardians using her ability to suppress the Green, she is restrained by the Krona Protocol by the other Guardians, and shut down.

    During Blackest Night, Chaselon was killed by the Black Lanterns and his inner battery was used as a bomb by Kyle Rayner to get rid of all the Black Lanterns around the Main Lantern Battery. After the return of the Guardians and the end of the Blackest Night, the Alpha Lanterns are seen forcing other Lanterns to become Alphas against their will. Boodika also requests the military advice of John Stewart, who the Guardians summon to their chamber to inform him of his new assignment.

    Prominent Members

    Due to the presence of the White Lantern on Earth, it was decided that no Green Lantern Corps Members would come from Earth in order to protect its location. This changed when Abin Sur crashed on Earth and his ring chose Hal Jordan. Since then Guy Gardner, John Stewart and Kyle Rayner have all represented Earth as a Corps member. Another prominent members of the Corps was Sinestro, who later went on to be on the Corps major enemies.

    Numerous families have a tradition of serving in the Corps, notably those of Arisia, and the father daughter legacy of Sinestro and Soranik Natu.

    The Space Sectors

    The Corps has expanded to an organization of 7200 Green Lanterns, with the average ratio of two Lanterns per sector. It is required that each sector have at least two Lanterns, but it can have more depending on the population of that sector. Also there is a reserve force located on Oa. The organization of the sectors is simple, the universe is divided into 3600 equally sized \"pie\" shapes. All the points meet at the planet Oa, which is located in the center of the universe. Since the sectors all meet and begin on Oa, this means that Oa is in every Lantern's sector, and while a Lantern is on Oa, he or she is technically still patrolling his home sector.

    Other Media

    Film and Television

    In the DC Animated Universe, the Green Lantern corp made five appearances and were relatively unchanged. One major difference was the amount of Lanterns and the costumes. They appeared in:

    Superman the Animated Series

    • In Brightest Day

    Justice League

    • In Blackest Night
    • Hereafter
    • Hearts and Minds

    Justice League Unlimited

    • The Return
    \"Green
    Green Lantern Corps in First Flight

    Green Lantern First Flight

    The Green Lantern Corps appear in this animated film about the origin of Hal Jordan as Green Lantern.

    Novels

    Green Lantern: Sleepers Book One

    \"No
    Kyle Raynor is Green Lantern, a member of the Justice League of America and a space-traveling super hero who is the current heir to one of the most powerful forces in the known universe: the Green Lantern power ring. But he's got a problem: his girlfriend has just taken a liking to an average Joe who is about to be transformed into the most powerful villain Earth has ever faced. Green Lantern must stop the evil Sinestro and the invading hordes of aliens determined to destroy humanity and take over Earth.
    • Written By: Christopher J. Priest
    • Publisher: iBooks (April, 2005)
    • ISBN-10: 1416504273
    • ISBN-13: 978-1416504276

    Green Lantern: Sleepers Book Two

    \"No
    Book Two of the popular Sleepers series stars the original Green Lantern, Alan Scott. It begins by disclosing origins of the first Green Lantern and reveals how he came to have his power ring and how he uses his powers to fight evil. In this installment, Scott enters World War II to fight a 17th-century supervillain named Malvolio, an anti-Green Lantern who wants to take over the world. Malvolio decides to cut a deal with Hitler that endangers the entire Allied campaign in Europe and the Pacific. Not one to think small, he is determined to eliminate the entire Green Lantern Corps, destroy Earth, and decimate all other worlds that have ever had the protection of a Green Lantern.
    • Written By: Christopher J. Priest
    • Publisher: iBooks (April, 2007)
    • ISBN-10: 1596871350
    • ISBN-13: 978-1596871359

    Green Lantern: Sleepers Book Three

    \"No
    The final volume in an epic trilogy, Sleepers, Book 3 features Hal Jordan, the most famous of Earth's modern-day Green Lanterns. Hal has been stripped of his powers, but it is up to him to fight the clones of the villain Sinestro, set loose by actions in the trilogy's first volume. In order to save the Earth, he may have to sacrifice himself by taking the Sinestro power rings on a one-way trip to the anti-matter universe.
    • Written By: Christopher J. Priest
    • Publisher: iBooks (September, 2005)
    • ISBN-10: 1596871032
    • ISBN-13: 978-1596871038
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-4869/","id":4869,"name":"The Planet of Doomed Men; Menace of the Giant Puppet!","issue_number":"1"},"id":6992,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111147698/4849177-crd-xiywuaaqnca.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111147698/4849177-crd-xiywuaaqnca.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111147698/4849177-crd-xiywuaaqnca.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111147698/4849177-crd-xiywuaaqnca.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111147698/4849177-crd-xiywuaaqnca.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111147698/4849177-crd-xiywuaaqnca.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111147698/4849177-crd-xiywuaaqnca.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111147698/4849177-crd-xiywuaaqnca.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111147698/4849177-crd-xiywuaaqnca.jpg","image_tags":"All Images,DC New 52"},"name":"Green Lantern Corps","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/green-lantern-corps/4060-6992/"},{"aliases":"Brotherhood of Scrier","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7115/","count_of_isssue_appearances":0,"count_of_team_members":8,"date_added":"2008-06-06 11:27:48","date_last_updated":"2013-09-03 07:24:06","deck":"Scrier is the name of a secretive cult based on the cosmic entity called Scrier.","description":"

    Origins of the Scrier

    Scrier is a seemingly ancient cult based on an ancient being of great power that may or may not have existed also named Scrier. The Brotherhood of Scrier all wear identical costumes and masks. Together they are dedicated to obtaining more power.  
      

    Enter: Norman Osborn

    While seemingly mystical in nature and power like the being they model themselves after, in reality, their \"powers\" stem from sophisticated technology created by Mendel Stromm at the behest of Norman Osborn. Norman Osborn joined  the cult while hiding in Europe following his \"death\" and eventually rose to the head of the organization after disposing of the cult's head Scrier. Still believed to be dead, Osborn used the Scrier cult as his personal eyes and ears for years, as well as his personal minions to further his own goals.  
     
    It was Osborn who instructed a Scrier to bring tissue samples of Peter Parker and Gwen Stacy to  Miles Warren in ordered to be cloned for Warren's own twisted ends, which Osborn would later use for his own purposes. Osborn also used a Scrier to befriend a mutant who could also alter people's perceptions named Judas Traveller so that Osborn could use Traveller as a pawn against Spider-Man and Ben Reilly, the Scarlet Spider.  Traveller was later betrayed by the majority of his Host and the Scrier; Traveller hasn't been seen since. After Miles Warren returned as the Jackal, Osborn instructed a Scrier to confront him to stop the Jackal's mad scheme to unleash his Carrion virus and replace the world's population with clones. While unsuccessful, it did buy time for Spider-Man and the Scarlet Spider to stop him.  
     
    Following his return, Norman Osborn continued using the Scrier, including the procuring of an object of great interest from Alison Mongrain, which also brought them into direct confrontation with Kaine. They managed to apparently persevere, but this was never ellaborated on, even when Kaine made his eventual return some time later. 
     

    MC2-Universe

    The Scrier later became embroiled in an ongoing war with Spider-Girl, daughter of the true Spider-Man. They later broke Roderick Kingsley, the original Hobgoblin, out of prison to use against Spider-Girl in hopes of finishing her off. Although he Hobgoblin failed to kill Spider-Girl, he then severed all ties with the Scrier so he could concentrate on his own scheme, which centered around becoming the new Kingpin of Crime.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-65611/","id":65611,"name":"Power and Responsibility, Part 4- Higher Ground","issue_number":"217"},"id":7115,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/190470-131056-scrier.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/190470-131056-scrier.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/190470-131056-scrier.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/190470-131056-scrier.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/190470-131056-scrier.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/190470-131056-scrier.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/190470-131056-scrier.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/190470-131056-scrier.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/190470-131056-scrier.jpg","image_tags":"All Images,Scrier"},"name":"Cabal of Scrier","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/cabal-of-scrier/4060-7115/"},{"aliases":"Cobra Command\r\nCobra Organization","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7417/","count_of_isssue_appearances":0,"count_of_team_members":110,"date_added":"2008-06-06 11:27:48","date_last_updated":"2018-05-12 08:32:43","deck":"Cobra (also called Cobra Command or Cobra Organization) is the nemesis of the G.I. Joe team. Along with battling G.I. Joe, the members of Cobra are dealing with numerous internal power struggles.","description":"

    Origin

    Cobra Commander was living on the road and doing scams and con jobs to earn a living. He became increasingly egotistical yet paranoid, citing all of his issues were the fault of the corrupt American system that always kept the little guy down. These views and feelings sparked great ambition of wreaking vengeance upon the businesses and governments of the system. He began seeking out individuals who shared his desires to topple these entities and used money from various schemes to attract followers. When he began having meetings with these new found followers, was when he first started wearing the blue hood to mask his identity.

    The organization grew and he moved it to the town of Springfield, a place where the economy had crumbled and the population had become desperate. Using his criminal wits and charisma, he quickly garnered the support of the townsfolk and had their gratitude and loyalty and gained complete control of the town. With this new base of followers he established the paramilitary group Cobra, a cartel that promised wealth and power to its members as long as they were willing to be completely loyal and use any means necessary to achieve their goals.

    Creation

    The President/CEO of Hasbro attended a charity event that Marvel Comic’s President was also attending. The two ended up in the men’s room and began discussing each other’s respective businesses when the Hasbro exec mentioned that he wanted to reactivate the trademark G.I. Joe line but was struggling to devise a new approach. The Marvel exec stated that they employ the best creative people in the world and to let them bring in Jim Shooter, then editor-in-chief for Marvel Comics to solve the re-launch problem.

    Before G.I. Joe’s re-launch, Larry Hama was working on a new concept for a comic book called Fury Force, which he hoped to launch as a new ongoing series for Marvel Comics. The original idea was Nick Fury of S.H.I.E.L.D would assemble an elite team of soldiers to battle neo-Nazi terrorists from an organization called HYDRA. The idea was shot down, but Hama carried over the basic outline to the G.I. Joe project. Now with all of that in place, G.I. Joe needed a nemesis, which is where Cobra, unofficially credited to Archie Goodwin, was invented.

    Team Evolution

    Cobra Chain of Command

    Commander-In-Chief

    • Cobra Commander - The leader and founder of Cobra. His face is almost always obscured either by a hood with only his eyes visible or by a high tech battle helmet with various security features integrated into it, to maintain the secret of his civilian identity. He is regarded as the most dangerous man on Earth, because he can draw followers to him. Only Baroness and Destro have seen his face.

    Cobra Emperor

    • Serpentor – Serpentor was created through a breakthrough in cloning research by Doctor Mindbender from the DNA and memories extracted from the remains of the most ruthless and effective military leaders in history, including Julius Caesar, Napoleon Bonaparte, Attila the Hun, Alexander the Great, Hannibal, and Genghis Khan as well as Storm Shadow. In addition to his genetic disposition to greatness, an early experiment also gave him access to the brain patterns of G.I. Joe HALO jumper Ripcord, allowing him to use their strategies against them.

    Weapons Supplier

    • Destro aka James McCullen Destro XXIV - A Scotsman who always wears a metal mask. On numerous occasions he tried to take over leadership of Cobra. Destro is an arms dealer and his top client is Cobra. He is the hereditary leader of M.A.R.S. (Military Armaments Research Syndicate), which is the largest manufacturer of weaponry and state-of-the-art technology in the world. He has a personal army called the \" Iron Grenadiers\".

    Intelligence

    • The Baroness aka Baroness Anastasia DeCobray - The daughter of rich European aristocrats and never wanted for anything. Her brother was killed, and she believed an American soldier by the name of Snake Eyes was the killer, which drove her toward the Cobra organization. She serves as Cobra's Director of Intelligence and is romantically involved with Destro. She and Destro had a son named Alexander McCullen. The son, Baroness and a former British soldier, Lilian Osborne teamed up to seize control of a revitalized Cobra at one point.
    • Mistress Armada aka Lilian Osbourne – Lilian teamed up with Alexander McCullen while in military training at the Royal Military Academy Sandhurst. She helped Alexander gain control of his father’s company and pose as Destro. Destro eventually brought Alexander and Lilian down and got them into custody. It is unknown what his plans are for the pair for their roles in impersonating him and taking control of his business.
    • Vypra aka Ann A. Conda – A martial arts specialist that trained privately and disregarded joining the military because she felt soldiers were “wimps”. She signed up with Cobra, liking both the name and the attitude of the organization. She ascended through the ranks quickly and proved herself as someone not to be underestimated. General Hawk regarded her as one of the nastier threats to come out of Cobra’s ranks in years.

    Destro’s Personal Troops

    • Scrap Iron – Head product designer for Destro’s armament corporation. He carries out all initial field testing on all new armor, weapons and other creations. His main area of expertise is remote-launched, laser-guided, rocket-propelled piezoelectric fused anti-tank weapons. While some weapons systems are classified as “Smart” weapons, his are often known by the nomenclature of “Brilliant.”
    • Metal Head – This “Walking Anti-Tank Weapon” can launch high-explosive missiles from his backpack or hip holster tubes and guide them to their target via a laser beam, without using his hands or feet. His targeting and weapons system is completely voice-activated and highly sophisticated. It’s as simple as visually acquire a target, let the computer calculate range and path trajectory and give a green light, to which he yells “Bang!” to commence firing.
    • Annihilators – Destro’s personal bodyguards and elite airborne assault troops. They are versatile and can be deployed from land, sea and air via mini-turbine Heli-packs on their backs. They are well armored and are the elite of the elite recruits from Destro’s Iron Grenadier forces. They also serve an apprenticeship as hard-sell telephone sales negotiators for Destro’s M.A.R.S. armament corporation.
    • Ferrets – The backbone of Destro’s armored assault squadron. They are the pilots of the D.E.M.O.N’s and conduct long range attacks in battle to neutralize enemy strong points, as well as capturing LZ’s (Landing Zones) for airborne insertions.
    • Iron Grenadiers – The Iron Grenadiers are personally selected from Destro’s personal bodyguards to spearhead his incursions into new territories. The Iron Grenadiers act as agents, provocateurs, saboteurs or terrorists, anything to propel an unsuspecting country towards chaos and turmoil, which creates new markets for Destro’s weapons business.
    • Nullifiers – The Pilots of the A.G.P (Anti-Gravity Pods), which are quick, small, sharply maneuverable aircraft. Unfortunately this type of aircraft is punishing on the human body, so to become a Nullifier, one must be in peak physical condition and maintain an six hour weight workout every day to maintain the physique and high levels of endurance required to command the A.G.P.
    • T.A.R.G.A.T.S. – Trans Atmospheric Rapid Global Assault Trooper aka TARGATS are Destro’s leading technological soldier. With breakthroughs from Destro’s technicians, the TARGATS can be deployed into orbit from a shuttle, wearing armored self-contained bio-system suits and ceramic composite heat shields that double as hang gliders and weapons platforms. Their re-entry over their target is usually mistaken for a meteor shower, which shocks and stuns their enemy.
    • Wild Boars – The Wild Boars are the drivers of the Razorback, which is a principle front-line assault vehicle with impressive firepower capabilities. It is able to destroy an enemy vehicle within minutes. Only the top drivers get accepted into the Razorback program, where recruits endure a torturous training schedule that demands discipline, discipline and more discipline.

    Dreadnok Commander

    • Zartan - The leader of the Dreadnoks as well as a master spy and assassin. He is a master of disguise able to be anyone anytime he wishes. Thanks to genetic experimentation, Zartan is also capable of changing his skin color to blend in with his background. This special ability is disrupted by sunlight.

    Dreadnoks

    • Zanya The daughter of the leader, Zartan, she became known as the “Dreadnok Princess.” Initially Zartan tried to send her away from the Dreadnoks after she tracked him down, but she was persistent and eventually accepted into the Dreadnoks. She took to their way of live with a fervor, finding her father and his band of misfits to be the coolest guardians she could ask for.
    • Zandar Zartan’s brother and another master of camouflage and covert movement. He’s good at hiding and sneaking up on people, needless to say he doesn’t sneak up on people to do them any good. He’s also an expert with a wide variety of silent weapons and is capable of remaining completely motionless for long periods of time and altering his skin color.
    • Zarana Sister of Zartan and Zandar, Zarana is a master assassin who gains access to her victims through skillful acting and master use of makeup and disguise. Unlike her siblings who rely on purely physical aspects of disguise, Zarana works from the method-actor’s point of view to completely become the object of her impersonation – thinking, feeling and reacting like another person. She is an expert in small arms, explosives and edged weapons and she also has the ability to change her skin color.
    • Torch Ex-Merchant Marine that learned to use a cutting torch while at sea. He is an illiterate, unrepentant thug whose penchant for sudden and expected violence is matched only by the depth of his stupidity.
    • Ripper Known as the meanest devil to come out of Tasmania. He was expelled from nursery school for extorting candy from his classmates and this carried over into adulthood where he spent most of his time in various correctional facilities. He is a career professional criminal motivated by greed and a severe dislikes for the luxuries of civilization, except for motorcycles.
    • Buzzer Buzzer is a left-wing extremist who went to Australia to research the biker gang phenomenon only to be transformed into the very object of his studies. Years of intellectual displeasure and extreme indignation at society’s two-face morality manifested into the intense love for chainsawing apart expensive gadgets of technological nature.
    • Thrasher Thrasher is the Thunder Machine driver. He was raised as a spoiled brat who was never held accountable for anything. His parents always believed that his actions would eventually curb to maturity. He was never denied anything and got everything he asked for, despite oftentimes resulting in unexplainable destruction or minor disaster. At a young age, he wandered into the swamps where he could do as he pleased. It was there in the swamps that he met up with Zartan and the Dreadnoks and joined their crew.
    • Zanzibar Zanzibar is known as the Dreadnok Pirate. He spent his formative years lurking on crowded piers with his hands in other people’s pockets. For a time he dabbled in river piracy, stock fraud and smuggling, but felt it was still too much work and not malicious enough for his personal preferences. His luck changed when he was delivering bootleg gasoline to Zartan’s filling station and got hired on as a Dreadnok.
    • Monkeywrench Monkeywrench grew up with a knack for incendiary and explosives. He was a pariah in his hometown by the age of 16, and moved on to London to take part in a “new wave” movement, where he developed a nasty and crude anti-social behavior, which was non-existent for his locale. Eventually he traveled to Australia where he got connected with the Dreadnoks.
    • Road Pig Donald Deluca had a tough childhood and was not popular by any means. He was ugly and smelled bad and often talked with his imaginary friend named Road Pig. He didn’t fit in anywhere until he came upon the Dreadnoks, which he joined and decided to use the name of his imaginary friend, who turned out to be a split personality. Road Pig helped Zartan expand the Dreadnok chapters and recruit members. His commendable achievement was when he was responsible for the capture of Snake Eyes and Scarlett at one time.

    Cobra Command Conventional Military Operations

    • Major Bludd - Major Sebastian Bludd is one of the deadliest and lowest mercenaries in the world and has extensive combat experience. Bludd was wanting for crimes in many countries and caught the eye of Cobra Commander who hired him to join the Cobra organization. The true purpose of his hiring was to kill Destro, because Cobra Commander felt he was a threat to his rule. The G.I. Joe team captured Major Bludd and Scar-Face, but they quickly escaped and subsequently killed the G.I. Joe leader General Flagg.

    Cobra Command Unconventional Military Operations

    • Firefly - The world's greatest saboteur, Firefly's background is a mystery due to the fact that he was orphaned at a very young age when his parents were murdered. A mercenary and assassin, Firefly was initially hired by Cobra Commander to kill Snake Eyes, but later on was brought into Cobra among the High Command. He is the Faceless Master of the Koga ninja clan. During a battle with his group of Red Ninjas who were turned against him, he was assumed dead, but now it is presumed that he escaped as he is been spotted on occasion in parts all over the world in the last several years.

    Cobra Command Medi-Research-Science Division

    • Dr. Venom - A Cobra scientist who played an important role in the early years of the Cobra Organization. He was killed in action and eventually replaced by Dr. Mindbender.
    • Doctor Mindbender - He is responsible for the creation of Serpentor, the Cobra B.A.T., and creeper spores as well as responsible for perfecting the Brainwave Scanner. Despite his initial test of might against the G.I. Joe with his battalion of B.A.T.S and creeper spores which failed, Cobra Commander and Baroness were still impressed with his genius and brought him on-board to Cobra.
    • Crystal Ball – Born the seventh son of a seventh son, the gypsies of old believe that he possessed supernatural powers. While unknown to be true, Crystal Ball could sometimes read minds, which made him a unique addition to the Cobra forces, as an interrogator of captured enemies.
    • Interrogator – An enigma with an unknown identity and past. He has a unique ability to siphon information out of even the most guarded prisoner with no more than a simple conversation. It appears he uses a voice modulator built into the helmet along with trance inducing LED display. Subjects listen to his voice and get mesmerized by the flashing lights and spill their deepest secrets. If that doesn’t work, he won’t hesitate to use more extreme chemical or physical methods to get information.
    • Scalpel – Scalpel received his medical degree from a mail in college found in the back of a magazine. His hands on experience came from working as a doctor’s assistant at an illegal clinic that treated gang members and other criminals. He joined Cobra for the money and the chance to work on exotic injuries and wounds. While he had a very high survival rate with his patients he treats, his nervous little giggle tends to scare patients. He has a personal grudge against G.I. Joe Sgt. Hacker for reasons he refuses to disclose.
    • Medi-Viper – Medi-Viper troopers are the battlefield medics for the Cobra infantry. They are recruited by head Cobra medic Scalpel from members of various Cobra Viper forces who have demonstrated an aptitude in the medical field. Their job is basically repair-and-recycle; in other words, tend to the wounded and get them back in combat as quickly as possible.

    Counter-Intelligence and Security

    • Tomax and Xamot: Crimson Guard Commanders - Twin brothers that lead the Crimson Guard and are the respectable corporate face of Cobra. When not engaged in dangerous field missions, Tomax and Xamot are in shirt and tie managing Cobra's business affairs with their extensive legal and entrepreneurial expertise. The brothers share an empathic connection, almost like a psychic bond. While this is often useful, as it allows them to communicate wordlessly and finish each others sentences, it is also a liability, as they feel each others pain during fights. Tomax and Xamot are mirror images of each other, except Xamot has a scar on the right side of his face. The twins run a corporation called Extensive Enterprises which is a legitimate business firm that masks their true criminal intent. They are also known more for their skills in the boardroom than on the battlefield.
    • Crimson Guard Immortals – The Crimson Guard Immortals are fanatical super soldiers who abide by a fearsome oath of absolute obedience to their superiors. They are advanced weapon system marksmen and martial arts experts, which make them one of the most formidable fights in the Cobra legions. They typically serve as the personal bodyguards to the head snake, while others run covert operations around the country under deep cover. Many of them shadow under apparently normal occupations and frequently serve in public office.
    • Crimson Guard – Initially created by Cobra Commander when he realized he needed a more subversive group of soldiers to represent him in the political, financial and judicial areas. The Guard fight most of their battles in the boardrooms and courtrooms of America rather than risking the loss of their talents on the battlefield. The Crimson Guard was eventually placed under the command of the Corsican twins, Tomax and Xamot. Crimson Guardsman must remain in top physical condition and maintain their skills off the field by undergoing a rigorous training regimen.
    • Fred VII - A soldier in the Crimson Guard who temporarily impersonated Cobra Commander after fatally shooting him (or so he believed). He was killed when the real Cobra Commander made his triumphant return.

    Cobra Command Ninja Commander

    • Storm Shadow or Thomas \"Tommy\" Arashikage - A ninja, whose heritage consists of 30 generations of ninjas, trained in martial arts who served in the military alongside future G.I. Joe operatives Snake-Eyes and Stalker. During a military patrol, a firefight broke out and Snake Eyes was seriously injured. He was ordered to leave his friend behind, but he ignored the orders and rescued Snake Eyes, saving him from certain death. He brought Snake-Eyes into his clan; the two became sword brothers. He joined Cobra with the intention of finding the man who killed his uncle, the leader of his clan. It was later revealed that Zartan and Firefly were in fact responsible, but Storm Shadow was never able to avenge his master's death. He eventually was brainwashed and began working for Cobra in earnest.

    Cobra Command Ninjas

    • Satan – Any expert in archery, the Cobra Ninja is called upon for those operations where precision and supernatural cold blood is needed. The arrow in his hands transforms into a laser ray due to its range and devastating effect of his shots. Very few saw him, and even less were lucky enough to be able to describe him.
    • Red Ninjas – Ruthless mercenaries who work mainly for Cobra Commander. They earn top dollar in battle because they are one of the most formidable clans of ninja warriors existing today. When Ninja Viper troopers enter a fight, they are in it until the bitter end (or unless a better offer comes along). The only defeat they have ever suffered was to G.I. Joe.
    • Ninja Vipers – Recruited from the highest ranks of Cobra’s Viper Corps, the Ninja Vipers are the elite representation of ruthlessness. Only the most sinister and cunning Cobra are selected for duty as Ninja Vipers. They are all 10 level black belts in karate, jujitsu and kung fu. They are extremely obedient and always carry out their orders to perfection.
    • Slice – A renegade ninja from Storm Shadow’s very own Arashikage clan. Slice developed his very own evil sword technique by observing the battle strategies of scorpions and adapting the movement into a backhand sword slash that he coined the “Scorpion Slash.” He’s an expert with all edged weapons, small hand guns and explosives, and enjoys working with the Cobra Ninja cohort, named Dice. Slice is also the pilot of the Cobra Parasite.
    • Dice – Dice was once a Cobra Night Creeper, but was kicked out for being too evil. Dice partnered up with Slice, specializing in choke holds, pressure points, snares, traps, blunt instruments and eye-gouging. His primary weapon of choice is the Bo-Staff, which he can manipulate with blazing speed and bone crushing power. His most deadly move is called the “Flying Dragon.” He pilots the Cobra Rat.
    • Night Creeper Leader – Cobra Commander entered into a contract with a syndicate of high-tech ninjas led by a mysterious man only known by the name of Aleph. He conducted all field intelligence and covert operations for Cobra. All investigations into his origin and the backgrounds of the Night Creepers have run into dead ends.
    • Night Creepers – These vicious ninjas conduct all field intelligence and covert operations for Cobra. If provoked in any way, even by other Cobra members, they are known to react without mercy. They are generally regarded as having the scruples of a Wall Street stock manipulator, the lethal skills of a master martial artist, and the stealthy talents of a cat burglar.

    Cobra Command Android Force Commander

    • Overkill – Overkill began as an experimental prototype for the 3 version of the B.A.T.S but because of his advanced micro-computers and enhanced tactical logic programs, the cost projections were too high for profitable mass production. Because of his advancement, Cobra Commander decided to utilize him as a battlefield commander for the android troopers. Cobra Commander got the idea to add a voice synthesizer program to repeat demoralizing slogans at ear shattering volumes. Overkill’s primary job is to operate the destructive Cobra Earthquake assault vehicle.

    Cobra Command Android Force

    • B.A.T.S – B.A.T.S were considered the perfect Cobra trooper as they never question orders, will never surrender and require no leave-time, sick-pay or benefits of any kind and they are cheap and easy to replace. However they do not adapt to changes in field conditions, nor do they discriminate between targets. They will shoot at anything that moves, be it friend, foe, or animal. They also have a defect that causes them to burst into flames when hit from behind.
    • B.A.A.T.S – Battle Armored Android Troopers were totally artificial robotic troopers with primitive logic circuits. They could sustain enormous amounts of damage and still continue with their mission objectives. The new B.A.A.T.s has been re-designed with less artificial intelligence than before because their circuits have been modified for weapons and assault capabilities only. Battle destruction and elimination of G.I. Joe forces were the only parameters programmed into the circuitry of these walking tanks. Due to their primitive programming and trigger happy circuitry, they can become confused during battles and fire at anything that moves, including other B.A.A.T.s

    Cobra Command Naval Force Commander

    • Copperhead – Copperhead was the primary Water Moccasin Pilot and was promoted to Naval Force Commander. While his birthplace is unknown, it is assumed he is native to or otherwise intimately familiar with the Florida Everglades. Background information shows that he raced speedboats in high stakes races in Monaco and Japan. As an obsessive gambler, odds are he started betting on his own races and sold his services to Cobra in hopes of paying off his debts to bookies.

    Cobra Command Naval Force

    • Bio Vipers – Bio-Vipers were once a battalion of ordinary Cobra Eels, until they underwent a DNA experimentation designed and conducted by Dr. Mindbender. Dr. Mindbender bio-genetically cross the Eels with an assortment of the ocean’s deadliest predators, turning them into ferocious monsters. Sandpaper skin like a shark, razor-sharp teeth of a piranha, and the strength of a giant squid. They became so out of control and unpredictable that Dr. Mindbender had to add computer integrated body and brain implants to control them.
    • Eels – The underwater demolitions specialist for the Cobra organization. They man and operate the Cobra marine outposts disguised as off shore drilling rigs and augment the crews of larger Cobra naval vessels. They often pilot Wave Crushers in combat.
    • Hydro-Vipers – Hydro-Vipers are qualified Eels who volunteer to be surgically altered to withstand nitrogen narcosis and other side effects associated with deep diving. They also have synthetic webs between their fingers and chemicals injections to provide natural insulation.
    • Ice-Vipers – Ice Vipers are the mechanized branch of the Snow Serpents, both of which must first qualify as Cobra Eels. They must undergo additional training of Techno-Vipers and be prepared to service and repair their own vehicles in harsh arctic environments. They are the pilots of the Cobra WOLF (Winter Operational Light Fighting) vehicle.
    • Lampreys – Lampreys protect and defend all of Cobra’s coastal and underwater outposts, including Cobra Island. Because of the importance of their job and missions, each Lamprey is hand-picked, highly trained and formidably equipped. Lampreys are armed with rapid recycling squad laser weapons and 9mm pistols and machine guns, specially modified for amphibious use. They tend to pilot the Cobra Hydrofoil Moray and the Man-O-War submersible.
    • Morays – Moray is the codename for the Cobra’s elite underwater forces. They are hand selected from the best and meanest of the Cobra Eels. The Morays are genetically reconstructed to increase their strength and improve their underwater abilities. Using these enhancements, the Morays can go where the Eels can’t and can carry out worse acts of sabotage. Often times they will pilot the Cobra Mantis Sub.
    • Sea Slugs – Sea Slugs are qualified in underwater demolitions, small vessel tactics and a wide range of underwater technology. Their training focuses on the use of the Sea Ray submersible and its variants. They train for 3 main scenarios: river sand ports, Deep Ocean and Arctic campaigns.
    • Secto-Vipers – The Secto-Vipers are the dedicated marine security patrol forces for Cobra Island. They pilot Cobra Buggs and are specialized in amphibious operations and shoreline surveillance. They are assigned a specific quadrant and are required to learn and know every square inch of it as well as the topology of the ocean floor that coincides with it. They also have extensive knowledge of all marine craft in use by the world’s armed forces and know their strengths and weaknesses.
    • Sub Vipers – The Sub Vipers are Cobras underwater infiltration and sabotage team. They pilot Wave Crashers to travel underwater and conduct their missions. They are more comfortable in the dark, muddy, frigid deep ocean than they are on dry land. They are mine experts which makes them extremely dangerous around harbors and marine warfare.
    • Undertow – The Undertow soldier, part of Destro’s Iron Grenadiers, is trained to function in the murky, polluted waters of military and industrial ports and waterways. They wear a wetsuit made of non-toxic, anti-corrosive material. Their facemasks are coated with a special silicone to protect against hostile biological agents and infections.

    Cobra Command Armored Force Commander

    • Overlord – Overlord earned his way up through the ranks of Cobra’s elite forces. He is a power hungry authoritarian hell-bent on becoming the supreme ruler of Cobra. He is a sinister individual who demands complete loyalty from his troops and has the strength and charisma of a leader. Those under his leadership tend to be more dangerous and more vicious than ever. His personal attack vehicle is the Cobra Dictator which is a tank/hovercraft.

    Cobra Command Armored Force

    • Rip it – Rip It is the Cobra Chief heavy equipment operation and tank battalion commander. He is a talented and skilled individual that has no allies. Some Cobra troops consider him a coward because he unleashes his barrage of attacks while safely enshrouded within his HISS tank, but he is an utterly vicious comrade.
    • Decimators – Due to the sandy beach that circumvents Cobra Island, a special vehicle needed to be designed to handle shallow coastal waters, sand and scrub vegetation. The Cobra Hammerhead is just that vehicle, and it is piloted by the Decimator. The Decimator wears a helmet with wide-angle, image-intensifier unit built in that provides 180 degree view in almost complete darkness.
    • HISS Drivers – Cobra HISS drivers are selected from the best and most devious of Cobra’s thousands of yearly recruits. Every Cobra HISS driver is a graduate of Cobra Battle School - Advanced Weapons Systems and experts with Cobra assault vehicles and helicopters.
    • Nitro Vipers – Cobra Detonators were the new elite tanks of the Cobra forces. They featured the latest in laser targeting, computerized GPS, and smart missile technology and were designed by Destro’s armament factory and required extremely skilled pilots who are the Nitro Vipers. In later years the Detonators were replaced with the Steel Crusher A.P.V which became the latest in the high-tech Cobra fleet. The Nitro Vipers are fast, aggressive operators who can expertly navigate narrow streets and rough cross-country terrain with easy and complete disregard for anything in their path.
    • Motor Vipers – The Motor-Viper Corps attracts the type of person who, without the benefit of an education and ambition, might have joined the Dreadnoks. The Motor-Viper is one that enjoys driving at high speeds and is amused by the dangerous lifestyle. Their vehicle of choice is the Cobra Stun.
    • Stinger Drivers – Stinger drivers are front-line fighters who lead Cobra attack units into battle from their Cobra Stinger 4-WD vehicle. Cobra troopers that get noticed, get lucky and are selected for higher ranks which put them in the driver’s seat of a prime attack vehicle like the Stinger. They are trained in ultra-aggressive drive tactics to prepare for battles that range from urban sprawls to remote wilderness.
    • Track Vipers – Once the HISS tank was upgraded to the HISS II, the drivers needed to update their training as well and with that came a new name, Track Viper. The new HISS II means the Track Viper can single-handedly, drive the vehicle, lock on to targets, and operate the weapons system all within a climate controlled cockpit that has excellent visibility without any blind spots.
    • W.O.R.M.S. – WORMS are self-propelled artillery specialists of the Cobra ground fleet and are cross-trained within their entire specialty. Any WORM can man any position on a Cobra Maggot, be it pilot, gunner, loader or mechanic. To operate a maggot to full capacity, it requires a crew of 4, but can maintain battle capability with a crew of 2.

    Cobra Command Special Forces Commander

    • Armadilha – A former African guerrilla, Armadilha knows everything about traps and ambushes. One of his pleasures is to hear the hair-raising sound of bones breaking when someone gets caught in one of his masterful creations. Even Cobra personnel are terrified of him and his traps. Nobody has seen him without a helmet, vest and uniform on.

    Cobra Command Special Forces

    • Alley Vipers – The Alley Vipers are Cobra’s equivalent of an S.W.A.T. unit or British S.A.S. They are the spearhead of Cobra’s inner-city invasion forces. These elite marauders are brutal, ruthless and extremely diabolical. They will not hesitate to use any form of treachery needed to achieve their goals. In order to pass their training to become an Alley Viper, they must endure a full burst of machine gun first across their frontal body armor, leap down a 30 foot drop onto concrete with full combat gear and run down a hundred meter gas-filled tunnel without a gas mask.
    • Range Vipers – Range-Vipers are assigned the long-term operations deep within enemy territory, completely isolated from communications or supplies. They have an abnormally high tolerance for discomfort and can survive on a diet of snakes, grubs, roots, berries, nuts and anything else they can scavenge up. They build shelters out of indigenous materials and obtain ammo and supplies by conducting hit and run raids on enemy outposts.
    • Shadow Vipers – How Shadow Vipers get in and out of places detected is a mystery to anyone, but they do and they leave their mark of devastation behind. They are expert computer hackers and camouflage, disguise and concealment professionals. They also utilize a special powder that makes then virtually invisible to radar and infra-red sensors for up to 24 hours, which is plenty of time to infiltrate and ravage any facility and steal any secrets they may come across.
    • Snow Serpents – Snow Serpents are the Arctic specialist branch of Cobra. They are specially trained and equipped to handle extremely frigid temperatures. Each one is airborne qualified and licensed to operate the entire fleet of Polar attack vehicles. They train by marching 50 miles in full gear then swim in sub-zero ice flow just for fun. This makes them the most formidable Arctic fighters.

    Cobra Command Trainer

    • Big Boa – Cobra Troopers can be a disorderly and disruptive bunch on occasion. They aren’t motivated by patriotism, unit loyalty, honor or sense of duty. It takes a brutal, unsympathetic taskmaster to crack the whip them into fighting shape and Big Boa is the man for this task. His voice booms, he has fists the size of mallets and the demeanor of an angry bear.

    Cobra Command Infantry Force

    • Cobra Officers – Cobra Officers, officers in name only, are front-line fighters who lead Cobra attack units into battle. They are all martial arts experts, masters of disguise and demolitions specialists. Many of them double as spies at military defense plants, nuclear power facilities, etc.
    • C.L.A.W.S. – The CLAWS (Combat Light Armored Weapons Specialist) are the newer elite troops of the Cobra organization. They are lightly armored heavy weapons specialists that can take a long of punishment and dish out even more. They utilize a new lightweight, ionized fiber armor which was developed from stolen U.S. Army technology. They can move quickly and take out large targets and vehicles. Many of them also pilot the Cobra Fang 3 and the Venom Striker.
    • Desert C.L.A.W.S. – The Desert CLAWS are like the regular CLAWS, except they also have added technology to help them survive the hottest, driest parts of the world. They armor has the added function of heat-deflection insulation and a body cooling system.
    • Cobra Troopers These are the very basic, bottom of the totem pole soldiers in the Cobra forces. This is where almost every Cobra soldier starts out. The number of new recruits per year is massive, reaching into the tens of thousands. They go through a very basic training and are provided with their uniform and gear and then grouped up into reasonably cohesive teams.
    • Cyber Vipers – Cyber-Vipers have bio cybernetic implants, designed by Dr. Mindbender, which allow them to interface with computerized systems like the extremely advanced Cobra Deviant Mobile Mech Suit. This allows them to operate the suit as an extension of their own body. They are also the commanders of the Mega-Monsters and keep them under control.
    • Desert Scorpion – Desert Scorpions are not a volunteer position, it is a punishment handed to a Viper that refuses to follow orders. To survive they must quickly adapt to the attack patterns of the venomous desert scorpions with which they live. They get a re-evaluation after a year and if their record is unblemished they will be reinstated to their previous rank. They fight hard because they know if they don’t they will be forced into the Toxo-Vipers, the Cobra Hostile Environment Detachment.
    • Fast Blast Vipers – Fast Blast Vipers are deployed to lead attacks with destroying G.I. Joe as their objective. They are armed with specially designed battlefield bazooka, and have a computer chip implanted into their brain to neutralize any fear-like emotions and enhance their aggression.
    • Flak-Vipers – The Flak-Viper is a portable anti-aircraft artillery weapons specialist. Their helmets have a passive infrared targeting and sighting system, and the Flak-Viper has exceptional natural hand-eye coordination and the skills to concentrate on multiple targets simultaneously. Flak-Vipers train daily to maintain their effectiveness which allows them to fire extremely accurate missiles at enemy aircraft with absolute impunity.
    • Frag-Vipers – The Frag-Viper is an important part of the Cobra Viper team. They are trained to toss high-explosive fragmentation grenades, at a pace of 15 rounds per minute, with the range and accuracy of Rocket Propelled Grenade launchers, but without the noise and added hassle of the launcher itself. They were insect looking goggles which contain electo-optical image-intensifiers that provide both infrared and night vision capabilities. Their helmet has a built in range-finder and automatically varies the fuse time on the grenades to accommodate each designated target.
    • H.E.A.T. Vipers – HEAT (High Explosive Anti-Tank) Viper specialist are equipped with the latest in hyper-kinetic, high-speed, wire-guided, armor-piercing technology. The sighting system is fiber-optically connected to the helmet, which computes range-finding, trajectory and image acquisition. This allows the HEAT Viper to fire their weapon from behind the protection of cover and in adverse weather conditions.
    • Incinerators – Incinerators are exactly what they sound like; they are flame-weapon and arson specialists. They are equipped with state-of-the-art fluorocarbon propellant flame projectors which shoot out burning streams of jellied gasoline. They are completed covered from head toe in fire-resistant, air-conditioned fighting suit.
    • Laser Vipers – Laser Viper troopers’ primary function is “target illumination” targeting for other Cobra Viper units. The Cobra Laser Viper places his beam on a target then squeezes off a laser-guided anti-tank missile that uses the beam to locate its target. This beam also works the same way for many of the other Viper troops.
    • Mega-Vipers – Mega-Vipers are the spearhead of the Cobra Mega-Monsters, and they go right into the thick of battles with the Monsters. Commands for the Monsters are issued by Dr. Mindbender or Cyber-Vipers, but it’s the skilled tactics of the Mega-Vipers who train and lead the Monsters on their attack missions.
    • Monstro-Vipers – Monstro-Vipers were once members of the Cobra Range Vipers, until Cobra Commander demanded they “volunteer” for an experiment in DNA alteration. The experiment was run by Dr. Mindbender who crossed the Vipers with the bio-genetics of rapid werewolves, giant “Bigfoot” creatures, and the most vicious grizzly bears. The fusion process leaves them ¼ man and ¾ beast, the most brutal beasts to ever roam the earth.
    • Neo Viper Commander – He is the leader of the Neo-Viper forces, the troops that make up the backbone of the Cobra legions. Extremely mean, unquestionably loyal and willing to backstab anyone it takes to get ahead, he trains the Neo-Vipers in all forms of combat and has them ready to deploy immediately when needed. He is outfitted with techno-engineering to withstand all types of severe weather elements, same as all Neo-Viper troops.
    • Neo Vipers – Neo-Vipers are cold-blooded commandos whose mental states have been enhanced to change them into superhuman warriors. They are suited up in armored climate-controlled outfit, which allows them to function in extreme environments. They train in deep battle tactics, survival procedures, and high-tech weapon-systems management. They are aggressive, ferocious, sneaky, yet practical enough to know when to retreat tactically.
    • Night Vipers – Night Viper troops wear specialized gear for nighttime operations, such as a helmet that is a miracle of electronics-miniaturization. Their helmets have a wide-angle image intensifier, directional sound amplifier and passive infrared detector, assisting them in quickly locating enemies via sight and sound with immaculate accuracy. They wear customized synthetic composite suits to conceal them from radar and they are skilled and trained in perpetually dark environments.
    • S.A.W. Vipers – The Cobra SAW Viper soldier is equipped with a gyro-stabilized, cryogenically cooled mini-chain gun with infrared night-vision auto-ranging optical sighting system. This means they have a highly accurate, low malfunctioning machine gun that can tear apart a target in heavy brush over 800 yards away in pitch black darkness.
    • Sludge Viper – The Sludge Viper never runs out of ammo, since his sludge gun has a built in decomposition accelerator which can create more toxic sludge out of whatever is readily available. The sludge gun propels the toxic sludge at lethal velocities with noxious methane gases. The gun also features a laser range finder, 3 gen image intensifier and phased magnetic array, sludge guidance system.
    • Techno-Vipers – Techno Vipers are Cobras battlefield technicians. It is inevitable that the vehicles and machines used in these modern battles will break down and when they do it is the mission of the Techno-Vipers to provide field maintenance support and combat-engineer capability to the frontline Cobra troops. They maintain and operate Cobra Power Fighter units on the battlefield so they can help with the battle while out in the field until they are needed for technician duties.
    • Tele-Vipers – Tele-Vipers are the communications gurus of the Cobra organization. Their understanding of communications equipment and protocols covers all conveyance technology from SatCom to VHF and they relay information and conduct ultra-sensitive surveillance and espionage.
    • Toxo-Vipers – Originally the Toxo-Vipers were referred to as the “Leaky Suit Brigade”, and assignment to them was considered severe punishment. While the new Toxo-Vipers sport top quality state-of-the-art equipment, which greatly increases their survival ratio, it is still considered a punishment as they have to deal with intensely toxic sludge.
    • Toxo-Zombies – Toxo-Zombies are the result of Toxo-Vipers who suffered prolonged constant exposure to the worst chemical wastes. The radioactive byproducts and toxic sludge have mutated them into vile deformed zombies. They are not really alive, but not dead either, somewhere in-between.
    • Vipers – Cobra Viper commandos carry out extremely dangerous and deadly missions. They attack convoys and other military patrols. They are supported by advanced vehicles and weapons which they use to ruthlessly bombard their targets. They wear multi-layered body armor and wrap around helmets with built-in communication gear. They also carry multi-burst laser pistols, commando rifles and grenade launchers.

    Cobra Command Air Force Commander

    • Wild Weasel – Wild Weasel learned his flying skills while running Cobra operations in every hemisphere in the world. He has extensive knowledge of close support aircraft ranging from jury-rigged civilian conversions to state-of-the-art flying weapons platforms. His main battlefield strategy is to swoop in with his Cobra Rattler and take out enemy armored vehicles to reduce the opposition for Cobra ground forces. When he gets into the cockpit of the Night Adder he goes looking for trouble just so he can open fire with the side guns and launch of massive array of missiles at any G.I. Joe aircraft unlucky enough to invade his airspace.

    Cobra Command Air Force

    • Aero-Vipers – Aero-Vipers are not surgically or bio-organically altered like Strato-Vipers and Star-Vipers; they lift weights and learn to take the pressure from g-forces and hard aircraft maneuvers. In the 90’s they piloted the then advanced technology Cobra Condor Z-25 which had forward swept wings and computer driven servo-actuators which allowed it to perform a turning radius roughly half that of an F-16. Currently they are combat and reconnaissance pilots that are trained in stealth and evasion tactics to conduct clandestine operations using the most advanced stealth jets, the Crimson Hydra.
    • Air Devils – Air Devils are front-line stealth assault air commandos that are highly trained in unorthodox combat styles and dirty fighting. They use Cobra Gliders to silently fly past enemy defenses to penetrate deep behind the lines to wreak havoc from within. They are lightly armed due to weight restrictions, but they can procure heavier weapons and ammunition from enemy forces they sneak up on and overtake.
    • Astro-Vipers – Astro-Vipers are Cobranauts whose mission is to maintain and repair satellite surveillance technology. Astro-Vipers are the only ones qualified besides TARGATS for duty in the voids of space. As Cobra’s network of “eyes-in-the-sky” grows, so does the demand for more technicians capable of being Cobranauts, whom need to be able to withstand repeated high-G launching and extensive tours of duty in orbit. They are recruited from the ranks of the Strato-Vipers.
    • A.V.A.C. – The AVAC (Air Viper, Advanced Class) is a Cobra Firebat Jet pilot who has been specially trained and has exceptional pilot and navigation skills. They need these skills as the Firebat has minimal pilot instrumentation. Piloting a Firebat has been described as strapping yourself onto a cannonball, as it is vertically launched for takeoff and only contains a basic flight panel, throttle, pedals and stick, no navigation and no ejection seat.
    • Blackstars – Cobra Commander has formed an alliance with a secretive legion of space pilots called Blackstar. Their origin is unknown, but they are the best at what they do. They have incredible agility in zero-gravity environments and can engage in stellar dogfights. As no one has ever seen a Blackstar up close, there are questions as to whether or not they are even human.
    • Gyro-Vipers – Gyro-Vipers are the pilots of the Cobra Mamba which are smaller, faster attack helicopters with very little armor. Gyro-Vipers are fast, decisive thinkers with even quicker reactions. They describe helicopter flying as operating a yo-yo with your left hand while spinning a pie plate on the tip of your right index finger while you balance full glasses of water on top of both feet. Now piloting an attack helicopter is like doing all that while riding a 12 point buck through the woods during hunting season.
    • Night Vultures – Night Vultures are like Air Devils, they use Cobra Gliders to insert themselves covertly and conduct recon missions. As part of their training, they are dropped from a transport miles from land over shark-infested waters. Those who make it back earn the Night Vulture badge and earn the right to keep the personal effects of those who “drop-out.”
    • Sky Creeper – Sky Creeper created his first glider out of bed sheets and broom sticks and used it to successfully escape reform school. His criminal career consists of robbing fancy rooftop restaurant patrons and then escaping by jumping off and gliding off into the darkness. Sky Creeper was recruited by one of the Dreadnoks during a prison stint, he formed the Night Vultures, which he commands.
    • Star-Vipers – A Star-Viper is a qualified Cobra Strato-Viper with an electro-magnetic shunt implanted into the brain which stimulates the reflexes while heightening awareness for split second decisions. This is necessary during the high-speed, upper-atmospheric dog fights they take part in. Early on they piloted the Cobra Stellar Stiletto, which could fly at Mach speeds and was equipped with laser guns and deep space missiles. Currently they fly the Sand Serpent which is an experimental aircraft designed by M.A.R.S. Industries; and employs stealth technology so it can bombard aerial and ground forces.
    • Strato-Vipers – The Strato-Vipers are the “crème de la crème” of the Air-Vipers. A Strato-Viper candidate must have 1,500 hours of flight time logged, a fixed wing rating of at least 4 engines, combat experience and an impeccable security clearance. They must also be willing to undergo a surgical enhancement that makes them resistant to hypoxia, hyperventilation and other decompression illnesses that affect pilots above 63,000 feet. They pilot the fast and stealthy Cobra Night Raven.
    • Vapor – Vapor is an unbeatable sky warrior who pilots the Cobra Hurricane VTOL tactical fighter. He has direct shunts from his optic nerve to his inboard targeting computers. All data is projected to his helmet’s field of vision screen. He also utilizes an advanced laser-powered, heads-up-display target locator which can control and fire the weapons by simple voice commands.

    Others

    • Kwinn - An Inuit mercenary who only appeared in the first year of the comic book. A mercenary with a strong code of honor, he had previously worked for the CIA, Mossad, MI6, and the KGB, and worked with Cobra in Sierra Gordo. He would later renounce his life as a mercenary, only to be betrayed and killed by Dr. Venom. A hidden grenade then slays Venom.
    • Blackout - Sniper Thomas J. Stall was rejected by G.I. Joe for failing his psychological exam and was suspected of being involved with the disappearance of his sister. After being imprisoned, Thomas broke out of a brig at Fort Huachuca during an attack by Cobra, to whom he surrendered willingly and subsequently joined.

    Bases

    Cobra’s primary base is Cobra Island. Cobra is said to have bases, underground cells and even whole communities scattered across the globe. Following are several specific locations with names:

    • Springfield - A small anonymous U.S. town was the first entirely Cobra controlled town, which Cobra secretly operated as a base. Cobra stored a lot of equipment and vehicles there; many home garages had military vehicles such as tanks inside. Many covert operations were held there, including the creation of Serpentor, which in turn directly led to the town's population being evacuated to Cobra Island after the Battle for Springfield, took place.
    • Broca Beach, New Jersey – Broca is an anagram of Cobra. After Springfield, Cobra overtook another town as their secret base of operations in America. This one was transformed from an abandoned seaside town and was run by the Dreadnoks with the help of multiple Cobra operatives. The displaced residents of the destroyed Springfield town were relocated here.
    • Delhi Hills – After a rough mission campaign, G.I. Joes Rock’N’Roll, Alpine, Bazooka and Mutt meet up for a little R&R at a small town bar. They later discover that the bar and the whole town are inhabited by Cobra affiliates. They get captured, later escape, and by time they return with reinforcements all evidence Cobra was there has been eliminated.
    • Castle Destro - Destro's fortress in Scotland. Training ground for the Iron Grenadiers. During a feud between Destro and Cobra Commander it was destroyed by Cobra Commander, and a new castle was presumably reconstructed some years later.
    • Cobra Citadel also known as the Silent Castle - Cobra's base of operations in the Balkan regions, located in Trans-Carpathia. Owned primarily by Destro, he incorporated many secret passageways and features into the castle's architecture including the ability to shift its configuration (through a complex series of levels, pulleys, and gears) into a near-exact likeness of Castle Destro - both internally and externally. Cobra Commander initially gave up the rights to the castle to Destro, but he later decided he wanted it back as it was rather close to his operations in Darklonia.
    • Cobra Consulate - A towering high-rise in New York City used by Cobra as an embassy and base of operations after Cobra Island was declared a sovereign nation. Its top levels were destroyed in a battle with G.I. Joe, and the building was abandoned by Cobra for some time (save for a few late-night top-secret meetings).
    • Cobra Island - The primary base of Cobra operations located somewhere in the Gulf of Mexico. It was created after a massive man-made earthquake. Cobra lawyers, well-prepared, moved in and had it legally declared a sovereign nation. It was the battlefield for the Cobra Civil War, and the battle against Serpentor and ' the Coil'. After Cobra abandoned it for several years, the island was seized by the U.N. It then came under the control of the Coil, then Cobra, and was finally destroyed by a nuclear warhead, which also killed every member of the Coil.
    • Millville – An industrial-heavy steel town that fell into economic ruin after the closing of the local plant. When Cobra descends literally invading them one day, the residents are immediately subjugated to a brainwashing device, leading to the formation of a local resistance with the help of Mutt and Spirit.
    • Monolith Base - A massive mountain complex located in Badhikistan. It served as Cobra's main base after Cobra Island was taken over by Serpentor and his Coil forces.

    Other Media

    Animated Television Series

    Film

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-113713/","id":113713,"name":"Operation: Lady Doomsday; ...Hot Potato!","issue_number":"1"},"id":7417,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/114183/5754116-cobralogo.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/114183/5754116-cobralogo.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/114183/5754116-cobralogo.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/114183/5754116-cobralogo.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/114183/5754116-cobralogo.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/114183/5754116-cobralogo.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/114183/5754116-cobralogo.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/114183/5754116-cobralogo.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/114183/5754116-cobralogo.png","image_tags":"All Images"},"name":"COBRA","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1190/","id":1190,"name":"IDW Publishing"},"site_detail_url":"https://comicvine.gamespot.com/cobra/4060-7417/"},{"aliases":"Thunderbolts\r\nThe Hood's Army\r\nThe Hood's Gang\r\nSapiens Gang\r\nSapiens Rights League\r\nDie geheime Bande des Hood","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7582/","count_of_isssue_appearances":0,"count_of_team_members":217,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-11 18:01:43","deck":"The Masters of Evil is the name of various groups of super villains and their motive is usually to defeat or humiliate the Avengers. Leaders have included both Baron Zemos, Ultron, the Mandarin, Klaw, Doctor Octopus, Egghead, the Crimson Cowl, Machinesmith, Whirlwind, the Hood, Jonas Harrow, Max Fury and Lightmaster.","description":"

    Origin

    \"Baron
    Baron Hienrich Zemo (founder and leader of the first Masters of Evil)

    After the World War II hero known as Captain America was found and revived into the modern world in 1964, his return as an Avenger would capture the attention of Baron Heinrich Zemo. Originally Zemo was a major threat during World War II and was the second most feared man throughout the Nazi regime, standing only one foot away from the Red Skull himself. Much like Red Skull, Zemo would also become a major threat for Captain America and Bucky. His hatred for the American hero would increase when his face was merged to the hooded mask that he was wearing during a fight against Captain America. Because of this incident, Zemo had long obsessed over the death of Captain America and was willing to cheat the Red Skull from doing it himself. After World War II was coming to an end and Red Skull was believed to have died, Zemo later lured both Captain America and Bucky into a trap that nearly killed both heroes. Believing that his nemesis and his annoying sidekick was finally dead, Zemo was unaware that both heroes managed to survive as Captain America accidentally went into suspended animation within arctic waters while Bucky was found by the communist Russians who brainwashed him into becoming their own assassin.

    Zemo found himself avoiding capture for his war crimes after the war ended and relocated as a ruler in a South American tribe where he created his own private kingdom. After years of living in seclusion, Zemo would finally be shocked to learn of Captain America’s actual return and found himself dedicated to ensure that Captain America’s death would be more ensured once and for all.

    \"No

    Zemo knew that Captain America’s newest allies, the Avengers would prove to be a threat against Captain America’s death, which forced him to take an alternate method to take on the his old enemy. Studying each member of the Avengers, Zemo carefully formed his own incarnation of villains that was comparable to the Avengers and with each member who individually posed a major threat towards a certain member of the Avengers. Recruiting villains like the Melter who once was a serious threat for Iron Man, the criminal scientist known as Black Knight who tangled with both Ant Man and Wasp, and Radioactive Man who was a threat for the Mighty Thor himself. With each villain promised his rightful vengeance by strength in numbers, secretly Zemo dubbed this team as the Masters of Evil. Even though each member served together for their promised opportunity for revenge, Zemo cared less for the motives of his team seeing how the main goal of the Masters of Evil was to ensure that there would be no obstacles that stood in his way when killing Captain America once and for all.

    Creation

    The Masters of Evil were created by Stan Lee and Jack Kirby in 1964 and first appeared in The Avengers #6.

    Major Story Arcs

    \"1st
    1st Masters of Evil

    Baron Zemo and his Masters of Evil decided that the best approach against the Avengers was to draw the heroes into battle. Zemo and his team did so when he attacked New York City with his Adhesive X, a substance that was proclaimed to have no solution. With a majority of the population trapped by Zemo’s attack, the responding Avengers would find themselves unprepared against Zemo and the Masters of Evil because of the Adhesive X they were using. Capturing Giant Man and Captain America, the remaining Avengers was forced into fleeing and finds a way to fight against the Masters of Evil and the Adhesive X. Much like Zemo, Captain America was shocked to learn of Zemo was still alive and the hero wanted revenge for death of his partner Bucky. Elsewhere the Avengers located the Trapster, a villain who specializes in adhesive for a solution to Zemo’s Adhesive X.

    With the help of Trapster because of wanting a lighter sentence for his prison term, the Avengers would secretly replace Zemo’s Adhesive X canisters with solvent and manage to trick the Masters of Evil into dissolving the Adhesive X. This led to all but one of the Masters of Evil to face defeat and incarceration while Zemo escaped with no army at his side for his personal quest to kill Captain America.

    Darkest Hour

    With Zemo left with no army, no hopes with accomplishing his task on killing Captain America, and that a desperate Captain America was on his trail for murdering his partner Bucky, Zemo would finally catch another opportunity with the Avengers when encountering Enchantress and the Executioner who were both recently exiled from Asgard for their crimes against Thor. As both Asgardians joined Zemo and recreated a shorter version of the Masters of Evil, Zemo had Enchantress mystically force Thor into fighting against his own teammates. Nearly managing on destroying the Avengers, the arrival of Iron Man would release Thor from his hypnotic trance, which followed the God of Thunder individually sending the Masters of Evil into another dimension.

    Wonder Man

    \"No

    After Enchantress managed to use her magic abilities to escape the dimension, Zemo decided that his next attack against the Avengers is by attacking them from within. By doing this, Zemo needed to recruit another member into the Masters of Evil and somebody who could easily pose as a hero. Deciding that the best way to do this is by also using his technology to grant ionic powers and to ensure absolute loyalty. Zemo would find a possible candidate for his goals within Simon Williams, who was recently fired for embezzlement. Blindly accepting Zemo’s offer for freedom from his prison stint and gaining powers, Zemo turned Willaims into an ionic-powered being dubbed Wonder Man. Following through with Zemo’s plan by finding acceptance within the Avengers because of his heroic actions, Zemo would cue Wonder Man the precise moment to betray the Avengers and finally rid the heroes and Captain America once and for all.

    To ensure full loyalty from Williams, Zemo also advise Willaims that his powers are temporary and that his body would need a periodically serum dosage to stabilize his ionic physiology. However Wonder Man would change his idea of luring the Avengers into Zemo’s trap and sacrificed himself to save his teammates from Zemo and the Masters of Evil.

    The Time Traveling Immortus

    Zemo and the Masters of Evil would later be approached by the time traveling Immortus who offered his assistance on defeating the Avengers. With Immortus sending Space Phantoms disguised as historical figures of the past to attack the Avengers, he also managed to send Captain America back to 1760 London. With Captain America gone, the Masters of Evil made their attack against the Avengers and nearly succeeded on defeating them until Immortus returned Captain America to his rightful place in time because of how he was impressed with his display of heroism.

    With the Masters of Evil facing another defeat, Enchantress managed to restore time to before Zemo was approached by Immortus. Even though time was restored within Reality-616, another reality known as Reality-64110 continues on with the fight and capture of the Masters of Evil.

    The Final Assault

    After his repeated and unsuccessful attempts, Zemo became desperate with Captain America’s demise and decided to rebuild his Masters of Evil to directly attack the Avengers and find a way to lure Captain America away from the team and take on the hero himself. Managing to have Melter and Black Knight escape from their prison term, Baron Zemo was unable to have Radioactive Man rejoin his group because of him being deported to China after his recent capture.

    Still having an equal group compared to the Avengers, Zemo next kidnapped Rick Jones and took him to his secluded base in South America as a way to lure Captain America to Zemo. As the Masters of Evil launched a full-scale attack on the Avengers, Captain America followed Zemo’s trail to his base and found himself battling Zemo and his hired men. As Zemo attempted to use his Death Ray against the Avenger, Captain America reflected the attack and caused Zemo to be blinded. Blinded and angered, Zemo shot his pistol wildly, which caused a landslide to crush and kill Baron Zemo. With Zemo dead, the remaining Masters of Evil didn’t fare any better, as all members were defeated and captured besides Enchantress and the Executioner who managed to escape.

    With one of the teams greatest threats finally coming to an end, Captain America would personally bury Zemo’s body, as he would be convinced that Bucky’s death was finally avenged.

    The Mysterious Crimson Cowl

    \"2nd
    2nd Masters of Evil

    Secretly acting indirectly and strictly behind the scenes, the psychotic robot known as Ultron plan his attacks on the Avengers for the purposes of ruining his creator, Hank Pym. Adopting a criminal disguise as the Crimson Cowl, Ultron would recruit Radioactive Man, Melter, Klaw, Whirlwind, and a new Black Knight who was the nephew of the original Black Knight who recently died from injuries after a battle with Iron Man. To make his true disguise and agenda more hidden, Ultron dubbed and recreated the team as the Masters of Evil. Managing to kidnap Edwin Jarvis, who was the butler for the Avengers, Ultron would hypnotize Jarvis into taking the disguise of the Crimson Cowl to further avoid his involvement or suspicion. Not only did Ultron frame Jarvis for his crimes as the Crimson Cowl, but also used him to gain information on the Avengers security systems and how to easily gain access into the mansion. With this knowledge, Ultron guided his Masters of Evil into defeating and capturing the Avengers.

    With the Avengers captured, Ultron next directed his attention against New York City. Eventually members within the Masters began to disagree with their leaders goals, which caused Klaw into attacking him after being berated. Simply shrugging off Klaw's attack, Ultrons identity was finally discovered before Black Knight freed the Avengers and managed to defeat the criminal group after Ultron made his escape. With the Masters defeated, Black Knight would reveal himself to the Avengers as a hero who was following his uncles dying wish of not following the same footsteps as he did and decided to restore heroism to the Black Knight name by single handily defeating the reincarnated Masters of Evil.

    Even though Ultron decided to move on without the assistance of any humans, this version of the Masters of Evil still continued to work together as they made another attempt against the Avengers. Yet, this version would prove less successful as they faced another quick defeat, which caused the Masters of Evil to part ways.

    Egghead's Ultimate Revenge

    \"No

    A third Masters of Evil would be created when the criminal scientist known as Egghead sought assistance with his plot for gaining revenge against Hank Pym and manipulating him into serving him. What was supposed to be the ultimate plan against Pym who recently was shunned from the Avengers, Egghead broke Whirlwind, Scorpion, Tiger Shark, and Moonstone out of form his own criminal group. However Egghead's plan would find itself quickly threatened when Whirlwind anticipated his attack on the Avengers by trying to gain revenge against the Wasp for his prior defeats. Forcing the remaining Masters to attack the unsuspecting Avengers, the criminal group found itself easily bested by the Avengers and sent back to prison. However Egghead was far from giving up on needing a group and decided to free Tiger Shark and Moonstone, but replaced Whirlwind and Scorpion with the Beetle, Shocker, and Radioactive Man.

    After remaking the roster, Egghead sent the group to kidnap Pym from court and make it look like Pym was working with the Masters so that he could increase the damage on Pym’s reputation as a hero. Coercing Pym into creating a longevity serum, Egghead was unaware that Pym was secretly creating a device to use against him and that the Avengers have managed to locate Eggheads secret hideout. But before the Avengers arrived on the scene to rescue Pym, they found that Pym managed to single-handily defeat Egghead and all the Masters of Evil with the device that he made.

    With the Avengers arriving and seeing the victorious Pym standing over the defeated Masters, Egghead made one last attempt against Pym by trying to shoot him in the back with a pistol. However his attack was not only prevented by the arriving Hawkeye by shooting an arrow in the barrel, but also caused the pistol to backfire against Egghead that resulted with the criminal scientists death.

    Under Siege

    \"Under
    Under Siege

    The next group of criminals that took the name Masters of Evil didn’t make another appearance until the son of Baron Helmut Zemo found himself continuing his father’s legacy and vendetta against Captain America for his prior defeat that also caused his entire face to be completely ruined. Baron Heinrich Zemo not only took up his father’s mantle as a criminal mastermind, but also followed his father’s very same footsteps by attempting to destroy Captain America and the Avengers. This time Zemo decided to take more calculating steps on bringing the Avengers to their knee’s by forming not only a new incarnation of the Masters of Evil, but also a massive army that consisted of the most dangerous and deadliest foes who individually posed a threat for the Avengers. Zemo’s army mostly consisted of villains that had brute strength and such as Goliath, Mr. Hyde, the Wrecking Crew, Absorbing Man, and Titania. Some members were specifically important for Zemo such as Blackout who displayed powers of manipulating the dark force and Moonstone who was the only one that could control him and his actions. Even though Moonstone did pose a threat against Zemo’s leadership, he still kept her at a close distance and hid the fact that he had Fixer implant commands in Blackout’s mind that could make him control Blackout if ever needed too.

    Aside from Moonstone and Blackout, Fixer also assisted Zemo for his abnormal mechanical skills that also proved very useful for Zemo. Prior to his attack on the Avengers, Zemo sent a few villains such Yellow Jacket, Absorbing Man, and Titania to find possible recruits to help him and the Masters of Evil storm the Avengers Mansion. Yet these attempts proved unsuccessful and ended with Grey Gargoyle and Screaming Mimi being arrested, also a meddling Spider-Man managed to defeat both Absorbing Man and Titania while trying to recruit Mongoose. During this time, Zemo amused himself by sending both Whirlwind and Trapster to attack Captain America for initiation within his group. Knowing that both villains would fail, Zemo specifically sent Whirlwind on this mission because of his prior incident with the former Masters group that caused their defeat and could be a threat for his plans.

    \"Avengers
    Avengers (1963) #277

    With Thor, who was one of the Avengers most powerful members being absent, Zemo waited for the exact opportunity to strike and did so when seeing most of the Avengers away from the building. Zemo and his army of super-villains not only managed to successfully infiltrate the mansion, but also captured Captain America, Black Knight, and Jarvis, also using Blackout to send Captain Marvel into the Darkforce, and nearly beating Hercules to death. With the mansion completely taken over by Zemo and the Masters, Zemo used Blackout to shield the entire mansion with his Darkforce powers so that nobody would be able to enter or leave the mansion. With Hercules hospitalized, Zemo sent both Titania and Absorbing Man to ensure that his death was fulfilled, but this attempt found itself failing as both Ant-Man (Scott Lang) and Wasp managed to prevent both Masters from killing Hercules. With Captain America captured and taunted by Zemo, the Avenger found himself forced into watching Jarvis being tortured and beaten by Mr. Hyde. With the destruction of the Avengers almost complete, the arrival of Thor and the remaining Avengers proved successful on defeating most of the Masters as they managed to penetrate into the mansion.

    As Thor and arriving Avengers, Zemo were defeating most of the Masters retreated to the roof with Blackout as the released Captain America pursued against him. Zemo would also find himself unable to use Blackout with the implanted commands because of Dr. Druid who was mentally guiding Blackout to retaliate against Zemo; this resulted with Blackout dying from a brain hemorrhage. With the Masters facing defeat and the Avengers building being nearly destroyed, Zemo made his attempt on fighting against Captain America only to find himself falling to his seemingly death. Believing to be dead, Zemo managed to survive the fall and hid underground to rethink his plans against Captain America while the Avengers found themselves reorganizing and rebuilding the damages from Zemo’s attack.

    The Raid of Dr Octopus

    With a new cosmic threat arising known as Magus, this forced most of the well-known heroic teams to fight against on their attempts to save reality. After noticing the heroes taking absence, Dr Octopus decided that the time was right to raid the Avengers Mansion and steal any scientific equipment that would prove useful for research. Possibly influenced by Zemo’s prior attack on the Avengers, Dr Octopus made his attempt to follow the same footsteps by forming his own Masters of Evil to help him raid the mansion and handle any possible threats that they may encounter.

    Even though Dr Octopus made his attempt to follow Zemo’s same footsteps, his greatest flaw was his selection for the Masters, which half of the villains found themselves instantly defeated by the Avengers staff and the arriving Guardians of the Galaxy. Despite Dr Octopus and a few Masters being capable of handling themselves against the Guardians, their encounter was interrupted by evil doppelgangers sent by Magus. Forced into forming an alliance with the Guardians, both teams managed to fend off the doppelgangers. Yet Dr. Octopus was still reluctant to raid the mansion and found that his remaining team opposed him. With the Masters of Evil defeated and departed, Dr. Octopus was forced to flee as well one of the opposing Masters known as Yellowjacket found herself joining the Guardians of the Galaxy.

    Justice, Like Lightning

    \"Thunderbolts
    Thunderbolts by Declan Shalvey

    Returning to his role as leader of the Masters of Evil, Zemo individually recruited each member of his newest formation of the Masters of Evil. It was during this time that the main heroic teams such as the Avengers and Fantastic Four perished during Onslaught's attack, forced Zemo to take another approach with his reformed Masters. Seeing the absence of Earth's mightiest heroes as an opportunity to have the world under his control, Zemo and his Masters took a unique step on accomplishing this by secretly posing as heroes to gain public trust, trust that would put Zemo and his Masters closer to their goals. With Fixer’s aid, the Masters found themselves re-equipped and taking different names as the entire group made their public appearance as the heroic Thunderbolts. In an ironic twist, Zemo and the Thunderbolts found themselves fighting another group who called themselves the Masters of Evil who was led by another mysterious Crimson Cowl. Even though Zemo’s plan was proving successful as the Thunderbolts were gaining public trust as heroes, a rising threat towards his goals of world domination began to rise within the group when some of the members began following their heroic counterparts.

    Taking notice as to how some members began to steer away from Zemo’s goals, Zemo pre-planned this by revealing their secret identities to public prior to his attempt for world takeover, forcing them into staying loyal to his plans and goals. As Zemo and the reluctant Thunderbolts managed to take over the world through means of mind control, the group found itself split apart as most of the Thunderbolts found themselves following their heroic identities by going against Zemo and Techno. With aid of the Avengers and the Fantastic Four, Zemo’s plan was foiled and his disguised Masters of Evil was now no more.

    Justine Hammer's Masters of Evil

    \"Justine
    Justine Hammer's Masters of Evil

    With Zemo and the original Masters of Evil no longer bearing the name as they continued to follow their heroic identities, only the mysterious villainous known as the Crimson Cowl found herself continuing her crime spree as leader of various incarnations of Masters of Evil. Deciding to blackmail the world with a weather-manipulating device, the Cowl assembled a large 25 member Masters of Evil as part of her own personal army to guard herself against any super hero attack. Things to a tragic turn when she was outsmarted by Moonstone of the Hawkeye's Thunderbolts who tricked her into thinking she would side with her, while the rest of her teammates defeated the large roster of super villains.

    However, the Crimson Cowl got the better of them when she teleported herself away and replaced herself with Dallas Riordan as a way to fooling the Thunderbolts and the super-human community in thinking Riohard and turned traitor, but she was soon freed by the V-battalion who broke out her out of prison. The real Crimson Cowl went into hiding for weeks before revealing herself to the public again by kidnapping Dallas who was on the run from the V-battalion after turning down an assassination plot against Peter Henry Gyrich who was secretly being controlled by Baron Wolfegang Von Strucker.

    Dallas escaped the Cowl's clutches leaving her no choice, but to reveal her identity as Justine Hammer, the daughter of long time Iron Man foe, Justin Hammer. It was then that Hammer decided to enact what was left of her father's legacy with a bio-toxin that was created by Plant Man when he was in service of Justin Hammer and the Cowl reassembled another set of the Masters of Evil. However, most of them betrayed her and sided with Hawkeye when he restructured the Thunderbolts with Songbird and Plant Man chose to neutralize the toxin instead of releasing it. She was arrested and the Masters of Evil were finally put out of her control for several months.

    The Initiative

    The super villain, Whirlwind decided to reassemble the Masters of Evil in an attempt to corrupt Norman Osborn's version of the Thunderbolts, but failed when Mac Gargan betrayed the group and allowed Osborn to defeat them.

    Secret Invasion and Dark Reign

    The Hood assembled a new Masters of Evil, a street-level gang of villains, for aiding him in his quest to become the new Kingpin of All Crime in New York.

    \"The
    The Hood

    While villains all, the Hood's gang assisted the heroes of the Marvel Universe in repelling the Skrull invasion during Secret Invasion under the Hood's rationale that \"no more Earth is bad for business\". After the Skrulls were defeated, the Hood's gang retreated to safety and awaits further instructions. When Norman Osborn is in charge of SHIELD and the Avengers and has the Hood on board as part of his \"Dark Illuminati\", ( Cabal) his gang will likely wind up being given free reign of the country and they might even all become registered \"heroes\" within the 50 State Initiative. As of recently, The Hood's gang has expanded. Villains would include old villains that were killed by Scourge of the Underworld and were brought back to life. There mission was to stop the Punisher. The Hood's gang would also consist of the paranormal group the Night Shift set out to stop the Midnight Sons.

    The Hood was recently given the Norn Stones by Loki and uses them to power up his crew. The Hood has ordered his gang to hunt down the Avengers.

    Red Light Nation

    Displeased with the various attacks by Steve Rogers' Secret Avengers, the Shadow Council appointed Max Fury to create a new Masters of Evil that would not only take down the team, but also try and discredit Captain America. Max is able to recruit Vengeance, Whiplash and the new Princess Python onto the team before Cap and Hawkeye break into their operation. The Masters quickly capture Captain America and decide to use the footage of his attack in the foreign nation to discredit him. However, Hawkeye ends up defeating the various members and escaping with Cap in tow. Leading the Shadow Council to finish their Masters of Evil and launch them against the Avengers.

    Max Fury lead over 50 members of his new Masters of Evil to be the heralds of the Abyss, which was revealed to need the Serpent Crown, the Crown of Thorns and the Crown of Wolves to unlock the gateway back to the 616 Universe. However, after joining the crowns together, he was unable to use the powers of the Abyss since he was an artificial being. The Taskmaster, who was fatally wounded dawn the crown and became the herald for the Abyss and used the Masters of Evil and the Secret Avengers to spread the powers of the Abyss to the rest of the planet.

    Venom and Ant-man who were unaffected by the Abyss due to the symbiot's powers and Ant-man being an LMD were able to stop the Abyss by using the symbiote on the Taskmaster and redividing the crowns. In doing so, the Abyss lost it's grip on the possessed Avengers and Masters and the crown was taken by the Secret Avengers and hidden in various pocket universes where they could guard them more closely. The Shadow Council as a result fell apart as both Thorndrake and Steel were killed and Max Fury fled back to the Decedents.

    Masters of Evil Reunion

    A very familiar lineup of Masters of Evil would return under the command of the Lightmaster in an attempt to steal a Quantum Energy Transporter. Consisting of the Wrecking Crew, Absorbing Man, Titania, Whirlwind, Blackout and Mr Hyde as well as a HYDRA Dreadnought the group fought Spider Man, Sun Girl and the Superior Six. Fighting as a team the Masters came close to gaining the upper hand several times in the fight with Titania and the Absorbing Man destroying a Spider Walker and Blackout managing to interfere with the Superior Spiderman's control of his 'allies'.

    In the end the Masters were temporarily defeated when Sungirl activated the device Lightmaster had stolen causing herself, the Six, Lightmaster and Spiderman to teleport to another location. It can be assumed that after Lightmaster's arrest the rest of the Master's disbanded or were apprehended by local law enforcement.

    Zemo's Return

    Baron Zemo would once again take control of the Masters of Evil and attempt to recreate a team worthy of using the title. He hired Madame Masque, Hellstrom and the Constrictor and was approached by the young hero Bloodstone in his search for Arcade. Some time later the five Masters appeared in Brazil and destroyed a SHIELD R&D facility.

    Variants

    The Death Hunters

    \"No

    When Mephisto targeted Earth's longest heroic mantles so that the primordial powers could not stand in his way, a new Mulitversal Masters of Evil were assembled to target the present day 616 Avengers. They are:

    • A Sorcerer Supreme Doctor Doom
    • Spirit of Vengeance possessed Green Goblin
    • A symbiote bonded Red Skull
    • A teenaged Thanos
    • Killmonger piloting the Asgardian Destroyer armor
    • An anonymous Phoenix Force host
    • And the Phoenix's two enslaved berserkers, Wolverine and Thor

    Other Media

    Television

    The Marvel Super Heroes

    Heinrich Zemo's original Masters of Evil appear in the episode \"Zemo and his Masters of Evil\".

    The Avengers: United They Stand

    \"No

    A Masters of Evil team consisting of Baron Helmut Zemo, Tiger Shark, Absorbing Man, Whirlwind, Dragonfly, Moonstone, Cardinal, and Boomerang. They appear in the episode \"Command and Decision\".

    The Avengers: Earth's Mightiest Heroes

    \"Amora
    Amora Recruiting Zemo

    This version of the Masters of Evil was brought together by Amora The Enchantress. Baron Heinrich Zemo was her first visit. Enchantress offers Zemo a spot on her team as her puppet leader in the episode \"Living Legend\". Zemo agrees as he quickly realizes that he has little alternative. Wonder Man is added to the team when Enchantress revives him in the episode \"Everything is Wonderful\". Crimson Dynamo is recruited off screen and is shown in \"Gamma World part 2\" when they enlist Abomination.

    \"EMH
    EMH Masters of Evil (formed by The Enchantress)

    In the episode \"The Masters of Evil\" Amora orders Zemo to take out the Avengers members one by one. Eventually only Black Panther, Hawkeye, and Ant-man are left. Black Panther and Hawkeye distract the Masters of Evil while Ant-man gets some items from his lab. Eventually the rest of the Avengers are free and almost defeat the Masters of Evil until Zemo tells Enchantress to transport them to Arnim Zola's lab. The Masters of Evil return with new members Living Laser, Chemistro, and Grey Gargoyle who is killed by Amora's Executioner when she is through with him in the episode \"This Hostage Earth\".

    They plan to use the Norn Stones to make Earth one with the various Asgardian Kingdoms. It is revealed that Enchantress has been working with Loki and is going to kill Zemo after she is done with him. Zemo tries to be a step ahead and betray Amora. This causes The Enchantress' magic to weaken and Thor is able to foil their plans. The Masters of Evil are defeated yet again.

    \"The
    The Enchantress overpowering Zemo

    The Masters of Evil appear yet again in the episode \"Acts of Vengeance\". Enchantress plans to get revenge on Zemo and the rest of the Masters of Evil, as she is angry that her pawns dared to cross her. She turns Chemistro to gold, kills Arnim Zola, and traps Living Laser in his light form thus leaving Zemo, Wonder Man, Abomination, and Crimson Dynamo petrified. They run to the Avengers to attempt to defeat Enchantress. However, even the Avengers are unable to fully stop The Enchantress. Amora overpowers Zemo, and in a panic Zemo uses the final Norn Stone to Muspelheim. In the scuffle, Wonder Man and Enchantress are transported to Muspelheim after being enveloped in the power of the Norn Stone. Enchantress becomes the Demon Queen (WonderMan is most likely killed by Amora or Surtur offscreen), while Zemo, Abomination, Crimson Dynamo, and Executioner are arrested and sent to Prison 42.

    Avengers: Ultron Revolution

    \"No

    The Masters of Evil appear in the episode \"Adapting to Change,\" where they briefly fight the Avengers. This incarnation of the group is much smaller, consisting of Screaming Mimi, Goliath, and Beetle. The team is later joined by Moonstone and Fixer.

    Video Games

    Marvel Ultimate Alliance

    A version of the Masters of Evil appear, lead by Dr. Doom. The members of this Masters of Evil are Baron Mordo, Ultron, Enchantress, Loki, Arcade, Attuma, Bullseye, Byrrah, Crimson Dynamo, Executioner, Fin Fang Foom, Lizard, MODOK, Mysterio, Radioactive Man, Rhino, Scorpion, Shocker, Tiger Shark, Warlord Krang, Winter Soldier, and the Wrecking Crew. Mandarin, Grey Gargoyle, Dragon Man, and Ultimo were former members of this version of the Masters of Evil, but left when Mandrin tried to take control of the team and failed.

    Lego Marvel's Avengers

    \"Lego
    Lego Avengers

    The Masters of Evil are the subject of their own DLC pack. Here, the group's line-up consists of Baron Zemo, Enchantress, Radioactive Man, Black Knight, Melter, Whirlwind and Executioner, mirroring the original Silver Age Masters of Evil from the comics.

    Merchandise

    \"No
    • Hasbro released a set of Masters of Evil action figures under their Marvel Universe line. The set was a San Diego Comic-Con exclusive.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7199/","id":7199,"name":"Masters of Evil","issue_number":"6"},"id":7582,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2831969-siege__3___page_9.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2831969-siege__3___page_9.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2831969-siege__3___page_9.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2831969-siege__3___page_9.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2831969-siege__3___page_9.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2831969-siege__3___page_9.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2831969-siege__3___page_9.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2831969-siege__3___page_9.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2831969-siege__3___page_9.jpg","image_tags":"All Images,Art,Earth-616 Blackout,Earth-616 Brothers Grimm,Earth-616 Bulldozer,Earth-616 Corruptor,Earth-616 Cutthroat,Earth-616 Deathwatch,Earth-616 Griffin,Earth-616 Hood,Earth-616 Madame Masque,Earth-616 Mandrill,Earth-616 Masters of Evil,Earth-616 Mockingbird,Earth-616 Piledriver,Earth-616 Ronin,Earth-616 Scarecrow,Earth-616 Thunderball,Earth-616 Wrecker"},"name":"Masters of Evil","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/masters-of-evil/4060-7582/"},{"aliases":"Ruul","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7588/","count_of_isssue_appearances":0,"count_of_team_members":135,"date_added":"2008-06-06 11:27:48","date_last_updated":"2019-11-20 23:04:25","deck":"The Kree are a militant race with a vast empire.","description":"

    History

    The Kree are responsible for the creation of the Inhumans by experimenting on early man. The Supreme Intelligence forced the Kree into a new form of evolution the Ruul. The Ruul were the main instigators of maximum security.

    The Kree started out as a primitive species sharing their planet Hala with the Cotati, a race of plantlike humanoids. Their planet was visited by the Skrulls, whom at the time where a peaceful race. They told the Kree and the Cotati that one of their species would be chosen to represent their planet in an interplanetary counsel. To chose which species it would be; they sent both the Kree and the Cotati to our moon, and told them each to build a city there. The species that built the best one would be chosen to represent the planet. The Kree labored over building a city (what is now the blue area of the moon) while the Cotati slept. When the Skrulls came back to the moon to award a winner they found that the Cotati had grown a huge garden while they slept! The Cotati won the contest. Furious, the Kree killed all of the Cotati and all of the Skrulls that visited their planet. They then used the Skrull ship to go to the Skrull home world and start the Kree-Skrull wars.

    \"As
    As told by the Kree

    The Second Kree-Skull War was started by the Skrulls although the Kree were considering it. The Skrulls were led by Kylor, one of five claiming to be Emperor of the Skrulls. After capturing a Kree spy on one of their worlds they decided to strike first. When the Supreme Intelligence lost his mind, Nenora took over as Supreme Leader. Nenora was secretly a Skrull, but choose to remain a Kree and rule over all. She betrayed Kylor and her people. The Skrull campaign was taken over by Empress S'byll after Kylor's death. Nenora was defeated by S'byll when she gave Nenora her shape-shifting powers back. S'byll announced to the Kree their leader was truly a Skrull and that she had won the war. But, S'byll declared a peace. Tus-Katt was the highest ranking member available and he did not accept a peace, this was against all the Kree stand for. The best he could accept was a truce, which she accepted.

    With the loss of the Supreme Intelligence and Nenora the Kree were left without a leader. Through manipulation, the Contemplator was able to get the pirate Clumsy Foulup to become emperor. The emperor was assassinated by Ael-Dan and Dar-Benn. They ruled the empire together, one being of blue skin and one of pink. When Thanos killed half the universe with the Infinity Gauntlet, the Kree automatically blamed the Skrulls for this unknown attack and prepared for war.

    Ael-Dan and Dar Benn are killed by Deathbird during the Kree/Shi'ar War. After the Shi'ar are victorious due to the detonation of a Nega-Bomb over their throne world, Lilandra names Deathbird as regent. The whole Kree/Shi'ar War was orchestrated by the Supreme Intelligence as a way to jump start the Kree's evolutionary dead end, thus the Ruul was born. The Supreme Intelligence would later utilize this during the events of Maximum Security.

    Major Story Arcs

    Annihilation

    \"The
    The Ruul

    The universe is over-run by the Annihilation Wave under the command of Annihilus. During this time Ronan the Accuser is declared a traitor and removed from his position as Accuser. He makes several new allies as he searches for the evidence to clear his name during the attack. He learns that the House of Fiyero, who are merchants currently in control of the Kree Empire, are responsible. Under their poor leadership, the Kree are easy targets for the Annihilation Wave.

    The Fiyero Kree attempt to make a deal and join forces with Annihilus so that the war would end and they could go back to their commerce. Finding the proof of his betrayal, Ronan executes the enemies of the empire and is named leader of the Kree after the mercy killing of the Supreme Intelligence (who had already been lobotomized by the Fiyero). He is forced to cede several Kree Worlds (including Kree-Lar) and the Skrull Empire to Ravenous.

    Annihilation Conquest

    Still recovering from the Annihilation Wave , Kree space was infiltrated by the Phalanx using Galadorian Space Knights to take command over Kree military computers and weapons. It is only through the efforts of the soon to be Guardians of the Galaxy, Nova and Warlock that the Kree Empire is freed.

    Secret Invasion

    The Kree have several operatives on Earth, one of which (posing as a human named William Wagner) learns of the invasion prior to it occurring. He is attacked by two Skrulls just before the invasion, his fate is currently unknown.

    Due to the Skrulls having abducted Black Bolt, the Inhumans form an alliance with the Kree in an effort to locate him. Ronan's price for this alliance is the hand of Crystal of the Inhuman Royal Family, a price her sister readily accepts. In the aftermath of the invasion the Inhumans leave the moon and travel to Kree space. They breach the barrier and confront Ronan who relinquishes the throne to Black Bolt.

    War of Kings

    During the Inhumans vengeance upon the Skrulls, a group of Shi'ar Warbirds are destroyed. Emperor Vulcan takes this as a challenge and sets his sights on conquering the Kree. The second Kree/Shi'ar War begins with the Shi'ar crashing the wedding of Ronan the Accuser and Crystal.

    Black Bolt unleashes his weapon known as the T-Bomb, a device made with the Terrigen Mists, in the belief it will make everyone into Inhumans and end the war. With the detonation of the bomb, Black Bolt and Vulcan both perish, and it also creates a rip in space known as the Fault. With Black Bolt presumed dead, leadership of the Kree Empire is left to Medusa.

    War of the Four Cities

    It would come to be known that the experiment that created the Inhumans was prophesied to be the end of the Supreme Intelligence. Of the 100 races created, the Supreme Intelligence ordered them all destroyed. But five races survived. They would all come together to try and make the Earth their new home. The Inhumans, now lead by Black Bolt who had returned from the dead, left the empire in the hands of Ronan.

    After all houses agreed to have him as leader, he and Crystal left for Earth to take complete control of the Kree Empire once and for all.

    Genetics

    Reproduction

    The Kree people procreate naturally between male and females of the species. Valuing what they consider to be their genetic purity, reproduction outside of the species is strictly prohibited taboo.

    It is considered a punishable crime In the Kree empire for a male non-Kree to impregnate any Kree female. Even though it is possible to produce hybrid offspring between a great many races separate from their native race. Like Carol Danvers of the planet Earth.

    Evolution

    The Kree, initially rendered progressively stunted due to the Phoenix Force punishing their ancestry for attempting to harness the M'Kraan Crystal for their own ends much like the Skrulls. Still possessed the latent potential to produce super humanoid beings through preternatural or outside mutation, genetic engineering, or cutting edge cybernetics technology along the evolutionary chain.

    This theory was tested to the most extreme degree by a plan, known only to a few among their number, by the Supreme Intelligence via activating and discharging a Kree Nega Bomb in the middle of Kree space. A secret plan disguised as a war induced incursion into their universal sector during Operation: Galactic Storm, a heated war involving the Shi'ar wherein Earth was caught in the middle as the former attempted to open a stargate channel between the Milky Way galaxy to territories owned by Hala.

    The radioactive fallout of it's explosion. While having all but decimated the Kree Empire, had heavily altered the genetic structures of many survivors' whom weathered through the holocaust.

    Causing a quick yet steady mutation in their genetics brought about by adaptation to the negative radiation. Thus enabling the them to escape their evolutionary deadlock, allegedly granting them unlimited potential. Other signs of potential evolution stem from the existence of artificial Homo Superior among the Kree race named Tsu-Zana. Whom was created with her own mutant X-Gene in order to overthrow the domination of both Shi'ar and blue-skinned Kree, as their savior.

    As with many species across the Marvel Universe, two adjacent cosmic enclaves had performed genetic experiments on the primitive ancestors of the Kree millennia ago. The being the most prolific of whom being the Celestials, cosmological titans that; as with primordial humanity, had divided the prehistoric Kree between Deviant and Eternal communities. While another less colloquial race of space god called the Progenitors, first introduced the tertiary chain of special existence which the Kree would study profusely for years to come. The first in a long series of genetic regression known as Inhumanity.

    While the record of Kree Eternal/Deviant interaction remains largely undisclosed to current date. The Eternal's were once a thriving community on Hala which eventually dwindled to it's lone purveyor Ultimus, whom would soon find his way to Earth.

    Ard-Con being the last known living Kree Eternal specimen to date. There have been a couple Kree/Eternal hybrids born to the heroic line of Vell, such as Genis and his sister Phyla, both surrogate born amalgam children of the intergalactic hero Captain Marvel. Born to the Titanian Eternal Elysius.

    Subspecies

    While experimenting with ways in an attempt to further their stunted evolutionary process. A few among the Kree bred with other alien species, producing the \"Pink-Skinned\" Kree, a second class citizenry who appear similar to Caucasian earth born humans. Though they outnumber their \"Blue-Skinned\" cousins a hundred to one, they are a suppressed minority whom're often used as slave labor in the empire.

    There is a rare subset of altered Kree whom, via exposure to egentic tempering or unique blends of radiology. Are known to develop superhuman abilities beyond the regular norm of their race. Such individuals include Captain Mar-Vell, Att-Lass, Minn-Erva and M'Nell.

    In the event of cohabitation with other species across the universe, certain hybrid species are born from said union. Children created through such a coupling potentially possess greater powers than either parent due to a unique blending or mutation occurring within the genetic structure. These kinds of Kree are scarce being incredibly varied due to being so far and in between.

    Body Type: Humanoid

    Avg Height: Between 5-8ft (1.5 to 2.4 m) tall

    Avg Weight: Same or greater than humans

    Eyes: Two

    Hair Color: Varies

    Skin Color: Blue - Pink

    Fingers: Five (with opposable thumbs)

    Toes: Five

    Special Adaptations: Greatly augmented strength & toughness. Underlying ability to channel cosmic energy, Females can enthrall and drain males of their life energy.

    Habitat: unknown (multiple planets)

    Gravity: Heavy

    Atmosphere: Nitrogen rich

    Population: 300 million

    Type of Government: Totalitarian Monarchy

    Level of Technology: Superior to Earth

    Cultural Traits: Conquerors

    Society

    The Kree are a Military-Technocratic Dictatorship. An imperium ruled by a cosmic uni-mind known as the Supreme Intelligence, it/they are the absolute authority of their entire galaxy spanning civilization.

    A conquistador race where Soldiers and commanders are subservient to the Supremor's Accusers as are the Accusers to the Supreme Intelligence. A civilization built on the concept of expansionism, they're main objective as a superpower is not to make contact but to subjugate and enslave.

    As such, Kree science is considered second to none even by an intergalactic standard. Being many leagues higher than that of Earth. Much of which being devoted to their own evolutionary advancement.

    Powers and Abilities

    Super-Humanoid Strength: The Kree have adapted to a heavier gravity than the people of Earth, therefore they gain a greater increase in physicals compared to the average adult homo sapiens. Able to lift between 1 and 1.2 metric tons of weight.

    Super-Humanoid Speed: Mar-Vell was considered fast even by Kree standard, possessing a level of speed that would qualify as enhanced for a human.

    Super-Humanoid Stamina: Kree bodily fibers are comparatively more enhanced than those of the finest mammalian specimen. They can push themselves considerably harder and longer under optimal conditions.

    Super-Humanoid Durability: The standard kree is a couple of time tougher than the typical Homo Sapiens. Having more resilient to impact, pressure, and temperature extremes.

    Super-Humanoid Reflexes: A seasoned Kree soldiers reactions are considered beyond those belonging to the finest human athlete, making it possible for them to dodge gunfire, even at point-blank range, from multiple gunmen at once.

    Super-Humanoid Agility: The Kree are physically more limber than many species. Able to leap and bound at incredible heights in an instant.

    Seventh Sense: The females of the Kree often undergo biophysical stunting surgery for the purpose of locating and removing psychic potential inherent among only they're gender. Uncastrated women among the Kree possess mental abilities ranging along clairvoyance, precognition and/or pheromonal and biophysical siphoning attributes. Powers that range from domination of the opposite sex to even lethal effect, like reaching into the mind of the opposite sex to moderate their desires or drain they're life force completely.

    Kree Groups

    Attilan

    A group of Kree comes to Attilan to beg for sanctuary. They are attacked at first until they tell what they're there. They are then given tents to stay in, in the empty place of old Kree machinery. A group of Kree goes to kill the Inhuman Royal Family but is stopped. Another is gone to the Genetics Council to see if the hearing goes in their favor for them to stay permanently. Another group is mad that they have to beg the Inhumans, creatures they created for their slaves. They decide to go and destroy the one thing that gives them their powers, the Terrigen Crystals. When they get there, they are attacked by Inhumans. They tell the Inhumans they don't want to destroy the mists but use them. They tell them when the Avengers hit the Nega Bands above their city it did something to their genes so they could use the mists. Three went in and two came out alive.

    The Kree attacked the Inhumans. They caught them very easily but with causalities. They separated the Inhumans by age, separating the old from the young. They sends machines over the city, for when Black Bolt screamed they picked the city up. The Kree wanted Ronan to help build up their status in the universe, they wanted to rule the Shi'ar. Ronan was to send the Inhumans to attack the Shi'ar.

    Priests of Pama

    The Priests of Pama are a group of pacifist Kree. They reside on Earth and have a relationship with the Cotati. They trained Mantis and Moondragon to be the Celestial Madonna.

    Ruul

    The Supreme Intelligence evolved the remaining \"true\" Kree into Ruul using the forever crystal. The Ruul however have been removed from existence due to Genis-Vell.

    In Other Media

    Television

    Fantastic Four: The Animated Series

    \"Kree
    Kree scientists

    The Kree appear in a flashback in the episode \"Inhumans Saga: Beware the Hidden Land.\" Like in the comics, they are shown to be responsible for the creation of the Inhumans.

    X-Men: The Animated Series

    The Kree ruler appears in the finale episode of \"The Dark Phoenix Saga\", where the Kree and Skrull empires are consulted by Lilandra while she ponders what to do with Jean Grey.

    Fantastic Four: World's Greatest Heroes

    The Kree appear in the episode \"Trial By Fire,\" with Ronan acting as the main villain.

    Avengers: Earth's Mightiest Heroes

    \"Kree
    Kree soldiers in the show

    The Kree are heavily featured in the series, starting with the episode \"452\", which features Captain Marvel and a Kree Sentry. They are more prominently featured in the second season episodes \"Welcome To the Kree Empire,\" where Ronan and his forces arrive to judge Earth. In the two-part episode \"Operation Galactic Storm/Live Kree or Die,\" the Kree Empire attempts to conquer Earth to use it as a strategic foothold by opening a wormhole that will destroy the planet's sun. The Avengers travel to the Kree homeworld and engage the Kree military in battle, which ends with Mar-Vell replacing the Supreme Intelligence as the new leader of his people.

    Hulk and the Agents of S.M.A.S.H.

    Ronan and the Kree are featured in the episode \"Planet Hulk.\"

    Agents of S.H.I.E.L.D.

    \"The
    The Kree corpse

    The Kree play a key role in the first season, though they do not appear directly. It is revealed that Phil Coulson, who was killed by Loki during The Avengers, was resurrected by a serum called GH-325. The serum is shown to be derived from a Kree Corpse that was at a HYDRA base found by Peggy Carter and the Howling Commandos during World War 2. In the second season, the Kree are once again heavily addressed, with it being revealed that they are responsible for the creation of the Inhumans. It is stated that they visited the Earth thousands of years ago, and were thought of as \"blue angels\" at the time. The mid-season finale takes place in an ancient Kree city hidden below San Juan, Puerto Rico.

    \"Vin-Tak\"
    Vin-Tak

    A Kree warrior named Vin-Tak appears in the second season episode \"Who You Really Are,\" played by Eddie McClintock. He arrives on Earth to find Diviners left behind by Kree scientists who had been on Earth thousands of years ago, and reveals that the Kree were responsible for the creation of the Inhumans. He battles Sif and attempts to kill Skye after learning that she is an Inhuman. He is defeated and has his memories of the battle wiped before sent back to Hala by Sif.

    Film

    Guardians of the Galaxy

    \"The
    The Kree ambassador

    The Kree are featured in the movie, with Korath the Pursuer and Ronan the Accuser serving as two of the main villains. The film opens with the end of the Kree signing a peace treaty with Xandar, who they had been at war with for centuries. This doesn't sit right with Ronan, who goes rogue to fulfill his fanatical desire to destroy Xanadr once and for all.

    Captain Marvel

    \"Some
    Some of the film's Kree characters

    The Kree are heavily featured in this film, which is a prequel set in the 90s. Lee Pace and Djimon Hounsou reprise their respective roles as Ronan and Korath, while other Kree characters like Mar-Vell, Minn-Erva, Att-Las and Bron-Char appear as well.

    Video Games

    \"Kree
    Kree enemies in Galactic Storm
    • The Kree are featured as the main antagonists in this Japanese fighting game, which is a loose adaptation of the Operation: Galactic Storm crossover. Doctor Minerva, Korath the Pursuer, Shatterax, and Supremor are playable fighters, while Captain Atlas, Ronan the Accuser, Ultimus, and a Kree Sentry appear as support characters. Galen Kor is the game's final boss.
    • The Kree appear in Marvel Avengers Alliance.
    • The Kree are featured in Guardians of the Galaxy: The Telltale Series, where it is stated that their home world was destroyed by Thanos. As a result of this, Hala the Accuser and her followers seek to gain the Eternity Forge to revive their people.

    Merchandise

    \"Marvel
    Marvel Legends
    • Hasbro produced a Kree soldier figure that was included in a special Marvel Legends two-pack with a Skrull warrior.
    • Various Kree characters were featured in the Marvel Legends line from both Hasbro and ToyBiz, including Mar-Vell, Noh-Varr and Ronan the Accuser.
    • Diamond Collectibles' Marvel Select line included a variant Genis-Vell figure that featured the character in his Kree military uniform.
    • Kree soldiers were featured in the HeroClix figure game, as were a Kree Sentry and the Supreme Intelligence.
    • Hasbro released a Kree-themed Marvel Legends wave to coincide with the Captain Marvel movie. A Kree Sentry served as the wave's Build-a-Figure.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9554/","id":9554,"name":"From the Deadly Lips of Ronan: \"I Accuse!\"","issue_number":"65"},"id":7588,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1513/87122-7509-kree.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1513/87122-7509-kree.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1513/87122-7509-kree.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1513/87122-7509-kree.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1513/87122-7509-kree.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1513/87122-7509-kree.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1513/87122-7509-kree.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1513/87122-7509-kree.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1513/87122-7509-kree.jpg","image_tags":"All Images,Kree"},"name":"Kree","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/kree/4060-7588/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7715/","count_of_isssue_appearances":0,"count_of_team_members":18,"date_added":"2008-06-06 11:27:48","date_last_updated":"2013-07-03 23:16:16","deck":"The Dreadnoks are Zartan's mercenary team.","description":"

    Once an unruly cadre of ex-military Aussies led by Zartan, the Dreadnoks have grown in such numbers that they are now a nationwide crime syndicate, with chapters in every major city, and over 30 states. Their center of operations is still located in the thick of the Florida Everglades, and has grown to service its huge army of militant-punk-rock-biker scum. It's rumored that notorious bike gangs the Hell's Angels and the Outlaws are concerned with the growing power of the Dreadnoks.

    With their widespread, organized network throughout the country, Zartan's forces are an important part of Cobra Commander's plans to expand his infantry.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-76179/","id":76179,"name":"Zartan!","issue_number":"25"},"id":7715,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/90339-2626-dreadnoks.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/90339-2626-dreadnoks.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/90339-2626-dreadnoks.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/90339-2626-dreadnoks.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/90339-2626-dreadnoks.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/90339-2626-dreadnoks.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/90339-2626-dreadnoks.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/90339-2626-dreadnoks.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/90339-2626-dreadnoks.jpg","image_tags":"All Images,Dreadnoks"},"name":"Dreadnoks","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1190/","id":1190,"name":"IDW Publishing"},"site_detail_url":"https://comicvine.gamespot.com/dreadnoks/4060-7715/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7903/","count_of_isssue_appearances":0,"count_of_team_members":36,"date_added":"2008-06-06 11:27:47","date_last_updated":"2016-06-23 07:39:40","deck":"An organization of both highly skilled and superhuman assassins founded by Candra of the Externals.","description":"

    History

    The Assassins Guild of New Orleans was founded by Candra. The Assassins Guild and the Thieves Guild were set in perpetual rivalry with each other by her. Hoping to gain peace, Marius agreed to marry Bella Donna, his daughter, to Remy. This agreement fell through due to Julien's interference however.

    The Guild set their sights on Domino after she ditched them during a job they hired her for against The Hand. Domino set free some women that were being trafficked and stole 237 million dollars that the Guild was after. They sent Razorfist to get her, however he failed and they called Boomerang, Nakh, Clay, Black Mamba, Bullet and Bushwacker to go after her, as well as Wolverine who sided with her.

    Most recently the Guild has turned its sights on Kaine as during his years as the malfunctioning clone of Peter Parker he moved in on the Assassin Guilds' turf and took on contract killings without paying tithe to the Guild. Kaine at the time blatantly refused to pay and disappeared for a years until he reappeared in Houston, now under the guise of the Scarlet Spider. After beating the killers Bella Donna sent after him, Kaine offered her a deal saying he would either do one job for her or he would kill each and every member of the Assassins Guild one by one. A deal Bella Donna accepted.

    Other Media

    X-Men: The Animated Series

    Here they appeared in the episode X-Ternally Yours. Much of their history remains the same, although not many of the guild members are seen or mentioned.

    X-Men Evolution

    Here they are mentioned in the episode Cajun Spice, although not much is known about them other than them being a rival guild to the Thieves Guild. They are also called \"The Rippers\" instead of the Assassins Guild.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-66441/","id":66441,"name":"Blood Feud!","issue_number":"26"},"id":7903,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/60598/1374032-prv6161_pg1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/60598/1374032-prv6161_pg1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/60598/1374032-prv6161_pg1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/60598/1374032-prv6161_pg1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/60598/1374032-prv6161_pg1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/60598/1374032-prv6161_pg1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/60598/1374032-prv6161_pg1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/60598/1374032-prv6161_pg1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/60598/1374032-prv6161_pg1.jpg","image_tags":"All Images,Assassins Guild"},"name":"Assassins Guild","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/assassins-guild/4060-7903/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7906/","count_of_isssue_appearances":0,"count_of_team_members":13,"date_added":"2008-06-06 11:27:47","date_last_updated":"2020-12-10 11:27:29","deck":"Originally a group of pick-pockets and thieves, the Fallen Angels later consisted of runaway young mutants and cyborgs who had an intergalactic adventure.\nRecently, Revanche (now renamed Psylocke) formed a new team along with X-23 and the time-displaced Cable.","description":"

    Origin

    The Vanisher was never a moral individual. As a mutant with the ability to teleport anywhere he wished, he often used his skills to steal or blackmail others. Yet after an adventure when he was caught travelling through another dimension with the teleporting X-Man known as Nightcrawler, the Vanisher decided it was time to take life a little easier. So he settled down in New York and gathered around him a group of teenaged runaways.

    In exchange for giving them shelter in his Beat Street Club, they would have to go out on the city streets and steal whatever they could find. Picking pockets, stealing purses and swiping food, they would take back their ill-gotten gains to the Vanisher who would then keep a large percentage of it for himself. Sometimes the Vanisher managed to recruit girls with super human powers, which would aid them in their daily quest to find more money and food. Yet the girls didn't always appreciate his unique brand of generosity, and sometimes girls like Boom-Boom would leave after they demanded more.

    Aliens & Cyborgs

    The all-girl group underwent a few changes after Boom-Boom was taken in by X-Factor Most of the regular human girls left the team, leaving Ariel and Chance to find new members. Chance was believed to be a normal human, while Ariel gladly used her space-bending teleportation as often as possible. Together they tracked down a young boy nicknamed Gomi (Japanese for 'garbage') and his two lobster associates Bill & Don

    All three of them were cyborgs resulting from the experiments of Gomi's older cousin, while Don was also considered to be a mutant lobster due to his blue coloration. Unbeknownst to the Vanisher, Ariel had a hidden agenda; she didn't just want to repopulate his team of young thieves, she was recruiting as many mutated beings as she could find. As a team, this group of runaways would be known as the Fallen Angels.

    Mutants

    \"Sunspot
    Sunspot Knocks Cannonball Unconscious

    Gomi always was a hard worker, who didn't seem to mind doing the chores that no-one else wanted to do. Yet it was Chance who accidentally stumbled across their first new mutant. Sunspot had recently runaway from the New Mutants after he lashed out at his best friend and accidentally knocked Cannonball unconscious.

    He'd run away to the city where he found Chance being threatened by local street thugs. Although Ariel rescued Chance leaving Sunspot to face the thugs alone, they later went in search of their first mutant.

    By the time Gomi, Bill & Don found Sunspot, he was accompanied by Warlock. Fortunately for Ariel & Chance, Magneto and Moira MacTaggert had sent Siryn & Multiple Man in search of the two runaway New Mutants and therefore they also joined the team. At the time they believed that Boom-Boom was being held prisoner by the mutant hunters, X-Factor, so Ariel demonstrated her space-bending alien abilities to everyone just in time to save Boom-Boom as she was being chased by Beast & Iceman. Ariel's collection of young mutants was completed after a brief inter-galactic trip to a jungle-forest planet where they recruited Devil Dinosaur and Moon Boy.

    Multiple Trouble

    Returning back to New York the Vanisher sent the team out to scavenge more food. They paired off with Ariel & Chance, Sunspot & Warlock, Siryn & Multiple Man, and Boom-Boom with Gomi and the lobsters. While Ariel & Chance were tormenting Sunspot & Warlock, Boom-Boom discovered one of Multiple Man's duplicates wandering around the street. He desperately ran away from her and didn't watch where he was going when he ran into the street. A cyclist hit the duplicate breaking some of his ribs, the pain of which was fed to the original Multiple Man a few streets away.

    In the midst of all the chaos, no-one had noticed that Devil Dinosaur & Moon Boy had slipped out of the Beast Street Club. Despite the dinosaur's large physique and bizarre appearance on a New York street, they were unnoticed until a large cracking noise as heard. It was the tragic demise of Don, who had been crushed underfoot by Devil Dinosaur.

    \"Ariel
    Ariel & Chance Nearly Spill The Beans To Boom-Boom

    As the remaining Fallen Angels feasted at Don's wake, Multiple Man and his rogue duplicate discussed re-absorption, how that would be like dying, and the possibilities of further mutation. The duplicate didn't want to be re-absorbed and opted to have his own life, even if it meant living with the pain of broken ribs. They theorised that it was a further mutation or Multiple Man's own multiplying power. Using the portable Cerebro unit that Magneto had given them to find Sunspot & Warlock, the Multiple Men began to detect the presence of two new mutants: Ariel & Chance.

    Meanwhile, the young mutants began to experience strange fluctuations in their mutant powers. A slight tap would trigger off dozens of Multiple Men duplicates, while Siryn could suddenly shatter metal, and the Vanisher vanished uncontrollably. Then as a complete reversal, all of their powers would suddenly disappear. Multiple Man's duplicates all mysteriously disappeared (except for the wounded one), Boom-Boom's time-bomb didn't detonate, and Warlock became murderously enraged. The wounded Multiple Man duplicate continued to study Cerebro, but he could not yet determine whether it was Chance or Ariel that was causing the trouble.

    Betrayal

    Ariel convinced the others that New York was too much trouble, and that she the best place for them: The Coconut Grove. There the team were treated like VIPs and received a make-over from their hosts. All except Chance who screamed in terror at the prospect of being feminine, and was subsequently mocked by Sunspot. The team was relaxed and didn't suspect a thing. The girls tormented Sunspot, Multiple Man gained another independent duplicate, and when Boom-Boom was accidentally left behind she didn't seem to mind since she was being praised by the locals for her amazing mutant powers.

    \"Coconut
    Coconut Grove Make-Over

    Gathering together, Multiple Man revealed that Cerebro had not been wrong earlier. He continued to read distinctive mutant signatures from both Ariel and Chance, except for when all their mutant powers were cancelled out when only Chance registered. They deduced that Chance could 'Double or Nothing' their powers by increasing them or completely removing them, and Ariel had the gift of the gab by being able to sweet talk others into doing what she wanted. The whole conversation had been overheard by Coconut Grove guards who informed their leader, Unipar.

    When the Coconut Grove guards attacked, the Fallen Angels were soon taken captive. Although Ariel's deal with Unipar meant that Chance was not to be taken too, they quickly seized her as they knew she was a mutant. Ariel turned to leave, so she didn't have to see the friends she'd betrayed, but then was immediately imprisoned within a force-field pillar. The captive Fallen Angels were thrown into a cell which dampened mutant powers, Gomi was blindfolded and locked inside a spinning cage, while Boom-Boom was being experimented on. Ariel remained inside her cramped pillar of energy, and was socially rejected by the rest of the team.

    Unipar was determined to continue his experiments on the mutants. They would not go quietly, and therefore he shot the third Multiple Man duplicate. The death instantly sent a psychic feedback to the remaining Multiple Men and scared the others into silence. As all three Multiple Men were taken away, Sunspot offered to go to support his traumatised friend.

    Escape

    Due to his diminutive stature, Bill had remained undetected by the guards. The little green lobster cyborg made his way to the cells and battered any guard that was in his way. Finding the keys to the cell, he quickly liberated the team. They were ready to abandon Ariel, but took pity on her and freed her from the force-field pillar. They soon located Sunspot and the Multiple Men, who agreed to re-absorb and fight for their freedom.

    Chance gained control over her powers and boosted the abilities of the others. Ariel used her voice based manipulation to convince Unipar to let them go. Devil Dinosaur destroyed the room and threatened savage violence if they were chased. Ultimately Unipar was informed that all of his scientific experiments were pointless, as their own kind had already begun to evolve again and Ariel was the living proof.

    The End

    Ariel returned everyone back to the Beat Street Club. Sunspot and Warlock parted to return to school. Boom-Boom returned to X-Factor. Devil Dinosaur and Moon Boy were sent home to their jungle planet. Siryn and Multiple Man stayed with the remaining Fallen Angels saying that they were a good bunch who just needed a little guidance.

    All-New Team

    A new team was formed by Psylocke (Kwannon), kid Cable and X-23. Husk and Bling also joined the team.

    Trivia

    The cover of the first issue of the first series says \"One moment of anger, and their lives are changed forever\". Although this may seem as just a marketing gimmick there is a sense of truth in it.

    That is because all the events happening in this issue have impact right up until the end of \"The Fall of the Mutants\" story line, published in New Mutants 59-61. Because Sunspot hit Cannonball in rage after a game of footbal, he and Warlock left the New Mutants. They only came back at the end of \" The Fall of the Mutants\" story line. Just a few minutes after Sunspot and Warlock returned to help their teammates fight Cameron Hodge and his elite robots, their friend and teammate Doug Ramsey (aka Cypher) was shot and killed. Though nothing is certain, but it could be possible that, had Sunspot and Warlock stayed with the New Mutants, they could have turned the tied in favor of the mutants, and thus preventing the death of Doug.

    Epilogue

    X-Team Adventures

    Eventually the rest of the team also disbanded. Gomi, Bill, Ariel and Chance have not been seen since, while Devil Dinosaur & Moon Boy continue to re-appear in various places. Yet many of the other members have gone on to be in more popular teams, particularly X-Factor & X-Force Siryn and Multiple Man returned to Muir Island at some undisclosed point, and were later mind controlled by the Shadow King

    Multiple Man joined the government backed incarnation of X-Factor and created X-Factor Investigates. Siryn became a long-time member of Cable's X-Force, and rejoined Multiple Man in X-Factor.

    Boom-Boom was also a long-term member of Cable's X-Force with Siryn, and later had a brief relationship with Sunspot. He joined and left X-Force on various occasions and became a public figure when working with the X-Corporation. He even became the Lord Imperial of the Hellfire Club before aiding the Young X-Men & eventually reuniting with his New Mutants team-mates. Boom-Boom was a member of NextWave who fought an evil talking version of Devil Dinosaur who claimed he had eaten Moon Boy. Neither of them recalled their adventures together (although there are theories to state that was in an alternate reality).

    Warlock has returned from the dead, and returned to outer space where he attempts to cure the Kree of the technarch inflicted techno-virus. He has since sired a son of his own, and is slated to appear in the New Mutants. The Vanisher has been drafted into Cyclops & Wolverine's X-Force. He had previously encountered the first X-Force during a heist on Hawaii where he did not recognize Siryn and even tried to chat her up. During the Second Coming event, Vanisher was severely wounded and presumed to have died though he showed up later alive and well.

    Ariel recently appeared aiding the X-Men during a riot in San Francisco and resided on Utopia. She was believed to have been killed in a car explosion during the Second Coming event but was actually trapped between dimensions since the car door she tried to escape through had been destroyed. Once the X-Club realized this, they were able to rescue Ariel.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-114772/","id":114772,"name":null,"issue_number":"2"},"id":7906,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/101073/2023378-angels.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/101073/2023378-angels.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/101073/2023378-angels.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/101073/2023378-angels.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/101073/2023378-angels.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/101073/2023378-angels.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/101073/2023378-angels.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/101073/2023378-angels.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/101073/2023378-angels.png","image_tags":"All Images"},"name":"Fallen Angels","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/fallen-angels/4060-7906/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-7972/","count_of_isssue_appearances":0,"count_of_team_members":8,"date_added":"2008-06-06 11:27:46","date_last_updated":"2012-01-27 07:23:27","deck":"Team of British super-heroes dedicated to fighting Mys-Tech throughout time and space. Dark Angel is the team's leader.","description":"

    The Dark Guard is a team of heroes consisting of Dark Angel, Death's Head II, Killpower, Motormouth, Ultra Marine, Albion, Colonel Tigon Liger, and Stacy Arnheim

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-94500/","id":94500,"name":"Tour of Duty","issue_number":"1"},"id":7972,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15317/301749-65367-dark-guard.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15317/301749-65367-dark-guard.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15317/301749-65367-dark-guard.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15317/301749-65367-dark-guard.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15317/301749-65367-dark-guard.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15317/301749-65367-dark-guard.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15317/301749-65367-dark-guard.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15317/301749-65367-dark-guard.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15317/301749-65367-dark-guard.jpg","image_tags":"All Images,Dark Guard"},"name":"Dark Guard","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/dark-guard/4060-7972/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-8178/","count_of_isssue_appearances":0,"count_of_team_members":16,"date_added":"2008-06-06 11:27:47","date_last_updated":"2012-10-28 16:12:03","deck":"The Cylons (Cybernetic Lifeform Node) are a robotic race in the Battlestar Galactica Franchise. They first appeared in the original series and in the next series. Cylon is also the name of the alien race who created them.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-217194/","id":217194,"name":null,"issue_number":"12"},"id":8178,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3848/227970-195822-cylons.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3848/227970-195822-cylons.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3848/227970-195822-cylons.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3848/227970-195822-cylons.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3848/227970-195822-cylons.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3848/227970-195822-cylons.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3848/227970-195822-cylons.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3848/227970-195822-cylons.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3848/227970-195822-cylons.jpg","image_tags":"All Images,Cylons"},"name":"Cylons","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1859/","id":1859,"name":"Dynamite Entertainment"},"site_detail_url":"https://comicvine.gamespot.com/cylons/4060-8178/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9057/","count_of_isssue_appearances":0,"count_of_team_members":24,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-03-09 07:05:11","deck":"A race of immensely powerful immortals living on Oa, the planet at the center of the universe, who founded and run the Green Lantern Corps.","description":"

    Origin

    Originally from the planet Maltus, the race that would become the Guardians was one of the first races of intelligent life in the universe. Evolving quickly, they developed a society devoted to knowledge and science, often involving themselves in experiments on other planets. One of the Maltusians, Krona, engaged in a forbidden experiment to witness the creation of the universe. Though his fellows attempted to stop him, the damage had been done and the universe was splintered, causing the creation of the Multiverse, as well as the Antimatter universe Qward. The Maltusians relocated to Oa and dedicated themselves to destroying the evil and rescuing the universe from chaos. To this end, they eventually harnessed the Glow to create the Central Power Battery and ultimately the Green Lantern Corps. Later divisions in the group saw the creation of the Zamarons, the Controllers, and the Mesopotamian Gods and Leprechauns on Earth.

    Creation

    The Guardians of the Universe were created by John Broome and Gil Kane.

    Major Story Arcs

    Early Battles

    In their quest to confront evil and chaos, the Guardians come into conflict with a number of races, including the Reach, the Martians and the Tchkk-Tchkki. They also deal with the entity Parallax, and attempt to remove all the magic from the universe, resulting in the creation of the Starheart. They create the Manhunters, precursors to the Lantern Corps, who ultimately rebel and remain eternal enemies of the Guardians.

    Crisis on Infinite Earths

    The Guardians are unsure about the best way to handle the Crisis. A small group of Guardians who favour aggressive involvement in combating the Crisis are the impetus for the recruitment of Guy Gardner into the Corps. After the Crisis has ended, the Guardians are troubled by their indecisiveness and divisiveness during the Crisis, and decide to retreat from the universe.

    New Guardians

    The Guardians leave a sing Guardian, Appa Ali Apsa, behind to take care of Oa. The control of the Corps is handed to the Lanterns themselves, some of whom are tasked with watching over the so-called New Guardians, super-advanced humans who are intended to be the next step in human evolution. The Guardians return to the main universe after Appa Ali Apsa goes mad and traps John Stewart in a nightmarish world of stolen cities. After defeating Apsa, the Guardians announce that they will remain in the main universe and remake the Lantern Corps. The newly-reformed Corps shows itself to be less docile, often questioning and even defying the Guardians' authority on occasion.

    Emerald Twilight

    Green Lantern Hal Jordan suffers a great personal tragedy that leaves him susceptible to the influence of the Parallax entity, which had been trapped for eons in the Central Power Battery. He travels to Oa where the Guardians release Sinestro, who fails to defeat Jordan. The Guardians give their power and energy to one Guardian, Ganthet, and are subsequently destroyed. Ganthet seeks out Kyle Rayner, who becomes the last Green Lantern. Sometime later, Rayner is able to resurrect the Guardians as children. These child Guardians are raised by Rayner, Ganthet and the Zamorans until Ganthet manages to artificially re-age them. They then set about restoring Oa and the Corps.

    Sinestro Corps War

    In response to the threat posed by the Sinestro Corps, the Guardians decide to rewrite the Book of Oa, authorizing the Lanterns to use lethal force if it is deemed necessary, as well as introducing nine other new laws. They also remove reference to the Blackest Night prophecy, a change which is protested by Ganthet and Sayd, who are exiled. The Guardians then travel to Earth, where they appoint Sodam Yat as the new Ion. After the war is completed, the Guardians are rejoined by Scar.

    Blackest Night

    The Guardians realize that the War of Light and the Blackest Night are coming, but are prevented from acting and imprisoned by Scar, who has become infected with evil. The Guardians are revealed to have hidden the fact that life actually began on Earth from the rest of the universe in order to protect the Entity. They are released from imprisonment after Nekron is defeated.

    Brightest Day

    The Guardians return to Oa and retreat from many public duties due to their depleted number and their distress at the loss of faith in them that has been experienced by many Lanterns. They are confronted by Salaak, Rayner and Arisia, and after the Lanterns depart the Guardians decide to repeal the new Third Law. Ganthet returns to them briefly to resign as a Guardian of any Corps, which the Guardians express sadness over. They officially make him the Lantern of Sector 0000.

    War of the Green Lanterns

    The Guardians are attacked by Krona, who has them possessed by six of the emotional entities. They are forced to attack Jordan and Gardner, who are traveling to the Central Battery to attempt to remove Parallax from it. They defeat the Lanterns, but allow them to escape after being distracted by the death of Mogo. They are released from their possession by Jordan. The Guardians discharge Jordan from the Corps due to their fear that they would become like Krona if Jordan were allowed to remain. They allow Sinestro to rejoin the Corps. Following a rebellion among the Corps that results in the creation of the \"New Guardians,\" the Guardians begin creating the \"Third Army,\" intended to replace the Corps.

    Rise of the Third Army

    Believing the Green Lantern Corps is ultimately a failure, due to the members emotions becoming an unpredictable all the Guardians believe it is time to replace the Corps, except for Ganthet, who is later indoctrinated by his brethren. Before the begin of their plan, The Guardians use Black Hand to seemingly kill both Sinestro and Hal Jordan (who had been using a duplicate of Sinestro's ring), an act which would lead to Simon Baz receiving Sinestro's ring. The Guardians then use the power of The First Lantern Volthoom, a time traveler who was the first to weild the power of the emotional specturm, only to be driven mad, to create the The Third Army, an army of mindless creatures who take over and transform their victims to multiply their numbers. All of the various Corps learn of the Guardians plan and begin to combat the Third Army, and though the Third Army would be defeated, Volthoom, the First Lantern would become free, and seek revenge on the universe.

    Wrath of the First Lantern

    With Volthoom free, he begins wreaking havoc on all the Corps. and their members, attempting to use their emotional spectrum energy to alter reality. Meanwhile, Simon Baz comes in contact with the Black Hand who transports him to the same dead zone Sinestro and Hal are trapped in. Sinestro manipulates Baz to help bring him back to life, while Hal is stuck in the dead zone, but as soon as Sinestro comes back to the realm of the living, the First Lantern destroys Korugar, and within the remnants, Sinestro finds his Sinestro Corps power battery. While the Corps wage war on the First Lantern, Hal makes a risky decision to use Black Hand's ring to return to the realm of the living, by taking his own life so the Black Ring would accept him. Hal, as a Black Lantern returns to fight Volthoom, using the Black Lantern Corps to fight the mad lantern, but it's not enough. Sinestro then offers himself up as a a host to Parallax to fight Volthoom, but the First Lantern is still too strong. Volthoom finally falls when Hal summons Nekron to kill the weakened lantern. With Volthoom defeated, Sinestro seaks his revenge on the Guardians, slaughtering every single one, leaving one for Atrocitus to kill himself. Though the Green Lantern Corps believes the Guardians to be dead, secretly, Sinestro spared the life of Ganthet, reuniting him with his love, Sayd.

    Alternate Versions

    Justice League of America: The Nail

    The Guardians recall the Corps, less Hal Jordan, to intervene when the war between Apokolips and New Genesis escalates.

    Superman & Batman: Generations

    Alan Scott's ring is revealed to have actually been a Green Lantern ring. The weaknesses in the rings are explained as being in the mind of the bearer; the Guardians instilled the weakness to yellow by telling members of the Corps that it was a weakness.

    Flashpoint

    The Guardians send Abin Sur to Earth to locate the Entity. He becomes involved in the Atlantis/Amazon War instead, which causes the Guardians to grow impatient. They discharge him from the Corps.

    Other Media

    Animation

    The Superman/Aquaman Hour of Adventure

    \"In
    In the DCAU

    The Guardians appear in the Green Lantern guest star episode \"Evil is as Evil Does\". They are voiced by Paul Frees.

    The DCAU

    The Guardians make their first appearance in the DCAU in the Superman: The Animated Series episode \"In Brightest Day...\" Members are voiced by Pat Musick and Peter Mark Richman. They next appear in the two-part Justice League episodes \"In Blackest Night\". They are voiced by René Auberjonois. They appear in the Justice League Unlimited episode \"The Return\". They are voiced by Clancy Brown.

    Batman: The Brave and the Bold

    The Guardians make a brief non-speaking appearance in the episode \"The Eyes of Despero!\" where they are seen residing in Hal Jordan's ring during the fight with Despero. They later feature in the episode \"Revenge of the Reach!\" in which they are voiced by JK Simmons and Armin Shimerman.

    Green Lantern: The Animated Series

    The Guardians appear in a number of episodes. They are represented by Ganthet, Sayd and Appa Ali Apsa. They are voiced by Ian Abercrombie, Susan Blakeslee and Brian George, respectively.

    Film

    Justice League: The New Frontier

    \"In
    In Green Lantern

    The Guardians make a brief appearance helping Hal Jordan. They are voiced by Robin Atkins Downes.

    Green Lantern: First Flight

    The Guardians appear, with significant changes from their comic book counterparts, notably their capacity for emotion and the extent of their power. Named members are Ganthet, Appa Ali Apsa and Ranakar. They are voiced by Larry Drake, William Schallert and Malachi Throne, respectively

    Green Lantern

    The Guardians make their first live-action appearance. They are voiced by Warren Burton and Salome Jens.

    Green Lantern: Emerald Knights

    The Guardians make an appearance; named Guardians are Ganthet, Appa Ali Apsa and Ranakar. They are voiced by Michael Jackson, Tony Amendola and Steven Blum, respectively.

    Video Games

    Mortal Kombat vs DC Universe

    The Guardians appear on Oa and warn Hal Jordan that the universes are merging. Ganthet and two other Guardians appear. They are voiced by Michael McConnohie, Christopher Corey Smith and Joe J Thomas.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-4869/","id":4869,"name":"The Planet of Doomed Men; Menace of the Giant Puppet!","issue_number":"1"},"id":9057,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/100647/4144070-878249-black_risen006.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/100647/4144070-878249-black_risen006.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/100647/4144070-878249-black_risen006.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/100647/4144070-878249-black_risen006.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/100647/4144070-878249-black_risen006.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/100647/4144070-878249-black_risen006.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/100647/4144070-878249-black_risen006.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/100647/4144070-878249-black_risen006.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/100647/4144070-878249-black_risen006.jpg","image_tags":"All Images,Guardians of the Universe,Images From Editing"},"name":"Guardians of the Universe","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/guardians-of-the-universe/4060-9057/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9483/","count_of_isssue_appearances":0,"count_of_team_members":12,"date_added":"2008-06-06 11:27:48","date_last_updated":"2013-11-11 18:21:07","deck":"Code Blue is a special unit of the NYPD designed to deal with super-powered threats.","description":"

    Code: B.L.U.E is a police special forces unit of heavily trained combat specialists who specialize in arresting super villains. They appeared almost exclusively in the pages of Thor while Thor was just Eric Masterson without the spirit of Thor within him and then followed Eric into being supporting cast members in \" Thunderstrike\". Code: B.L.U.E even earned a miniseries of sorts in the form of a 4-issue stretch of giant sized issues of Thunderstrike printed as flip books wherein from one direction it had a full length issue of Thunderstrike and from the other it had a full length issue of Code: B.L.U.E.

    Members of Code Blue include:

    Lt. Marcus Stone - Commanding Officer

    \"Mad Dog\" Rassitano - Heavy Weapon Specialist

    Andrew \"Jock\" Jackson - Combat specialist

    Margarita \"Rigger\" Ruiz - Army member

    Samuel \"Mother\" Majowski - Logistic Support

    Daniel \"Fireworks\" Fielstein - Demolitions

    ORIGIN

    L.t Stone created Code Blue to stop the criminal group Wrecking Crew in their first mission as commanding officer. Jock Jackson distracted Wrecker and started the mission. After that Fireworks saved the hostage block by fire. An also important mission is to fend off the rock trolls and their leader Ulik. They have many with them but Code:Blue are helped by Thor and for this situation have got a many dangerous mission. When Wrecker and his groups turn back they are attacked by Code:Blue and Wrecker is arrested by Jean Julius Rassitano and Rigger Ruiz. \"Mad Dog\" has a long-standing crush on \"Rigger\".

    On one mission alongside Thunderstrike, Andrew \"Jock\" Jackson is killed in the line of duty by Pandara when he took an energy blast meant for Thunderstrike.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33442/","id":33442,"name":"Aftermath!","issue_number":"426"},"id":9483,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3240444-ohotmu%20a%20to%20z%20%232%20-%20page%2060.jpg","image_tags":"All Images,Earth-616 Code: Blue"},"name":"Code: Blue","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/code-blue/4060-9483/"},{"aliases":"League of Shadows","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9591/","count_of_isssue_appearances":0,"count_of_team_members":93,"date_added":"2008-06-06 11:27:47","date_last_updated":"2021-11-13 22:57:40","deck":"The League of Assassins is an ancient army of killers led by Ra's al Ghul that often comes into conflict with Batman. Many of the greatest martial artists and mercenaries in the DCU have been members of the League of Assassins at some point.","description":"

    History

    \"Ra's\"
    Ra's

    The League of Assassins was founded by Ra's al Ghul in some unknown time. It was created to be \"the fang that protects the head\". Some of the most dangerous assassins in the DC Universe such as Lady Shiva, David Cain, and master archer Merlyn have all been members of the League of Assassins.

    Doctor Darrk, aka Ebeneezer Darrk, was the first known individual assigned by Ra's al Ghul to head the League of Assassins and seconded by the martial arts master The Sensei from Hong Kong. Darrk relied upon careful planning and manipulation, ambushes and death traps, concealed weapons and poisons, and the League at this time reflected his personal methods, but for many years the League has been filled with some of the greatest martial artist in the DCU. Ra's was never revealed as the leader of the League until Ra's and Darrk had a falling out and Darrk kidnapped Ra's' daughter, Talia Al Ghul, and Ra's kidnapped Robin so that Batman would help him in finding his daughter. Darrk died while trying to kill Batman and Talia.

    \"Talia\"
    Talia

    The Sensei became the second leader of the League using many of Darrk's tactics, but lead the group in a more brutal way. The operative known as the Hook was assigned to murder Boston Brand who became Deadman after his death. Professor Ojo was able to brainwash Ben Turner into becoming the Bronze Tiger. Bronze Tiger was able to defeat Batman, but due to his training from O-Sensei he didn't kill him and he left the team. Sensei would later go insane and wanted to raise assassination to an art and attempted to cause an artificial earthquake in order to kill a number of diplomats gathered for peace talks. Batman traced Ben Turner to a hospital, foiling a League attempt to assassinate the man. Turner could not fully remember the actions of his alternate personality but he was able to aid Batman in uncovering the Sensei's latest plot. Although Batman was unable to prevent the earthquake, ultimately it was only the Sensei himself that died in the disaster, and control of the League returned to Ra's.

    \"Shiva\"
    Shiva

    Ra's had grown tired of disloyal servants and ordered David Cain to create a perfect bodyguard (\"The One Who Is All\"). After trying to raise such a person resulted in hopelessly psychotic children, Cain decided that he needed a genetically suited child and began searching for a possible mother. To this end he assassinated Carolyn Woosan/Wu-San, one of two astonishingly talented martial artist sisters Carolyn's sister, Sandra, swore revenge and tracked Cain down, only to be subdued by the combined might of the League. However, she was frightened by the levels of skill she was attaining now that she was no longer held back due to her sister; Sandra agreed to be the mother of Cain's child in return, the League spared Sandra's life, and assisted her in further training. By the time Sandra gave birth, she had surpassed the entire League in skill and left immediately following the birth of her daughter, Cassandra Cain, renamed herself Lady Shiva. The League attempted to train Cassandra from birth to be the ultimate assassin, unknowingly giving her the skills she would use as the hero Batgirl. After the death of Ra's, his first born daughter Nyssa Raatko formed a new League. Lady Shiva was recruited to serve as Sensei to this incarnation of the League with the intent that Cassandra would lead the warriors themselves.

    Reflecting Shiva's emphasis for martial arts, the known members of Nyssa's League were all skilled in this area, and included the warriors Shrike, Kitty Kumbata, Wam-Wam, Joey N'Bobo, Tigris, Momotado, Krunk, White Willow, the twin warriors Los Gemelos, Ox, \"The Mad Dog\", Alpha, and Cristos. The new League was present when Mr. Freeze's wife Nora Fries was brought back to life as the monstrous Lazara, and several members died in the resulting chaos.

    Due to the conflict between their loyalty to Shiva and Nyssa and their near-worship of Batgirl as \"The One Who is All\", the League split at that point, with Ox, White Willow, and Tigris pledging themselves to Cassandra. Several more members of the League (including all the defectors except Tigris) died when the insane \"Mad Dog\" went on a killing spree. \"The Mad Dog\", it was revealed, had been one of David Cain's early attempts to create Ra's' perfect warrior. The Mad Dog had been considered useless as a child, since Cain's methods had driven him murderously insane, and Ra's had ordered the child be killed. Nyssa, however, knew that the servant ordered to carry out this execution had instead released him into the wild, explaining how it was possible to recruit him. The Mad Dog was successful in killing Batgirl (who gave her life to protect the burqa-clad assassin Tigris). She was quickly restored to life in a Lazarus Pit by Shiva, in order that the two could face each other in a final battle.

    After the Infinite Crisis, the League has been split in two. One faction being led by Cassandra Cain and the second being led by Talia al Ghul after the death of her sister.

    Ra's Al Ghul has recently returned from the dead and has taken control of the League back from his daughter and is currently fighting with the Sensei for control of the League of Assassins.

    New 52

    A new version of the team has appeared in the pages of Red Hood & The Outlaws. Composed of Bronze Tiger, Cheshire, December Graystone, Lady Shiva & Rictus they are attempting to recruit Jason Todd to be their leader. They are still following the guidance of Ra's al Ghul while also waging war with the Outlaws and the Untitled

    Other Media

    Animation

    DCAU

    The League of Assassins has been subject to name changes in the various forms of Batman-related media.

    Batman: The Animated Series

    \"BTAS\"
    BTAS

    The league is known as the \"Society of Shadows\" and is headed by Ra's Al Ghul. Count Vertigo is also shown as one of its leaders. The spin-off comic book however, made a distinction between the Society of Shadows and the League of Assassins. Both were loyal to Al Ghul however.

    Batman Beyond

    Later, in the Batman Beyond continuity the name changed to the \"Society of Assassins\" in the futuristic world of\"Batman Beyond\". Ras Al Ghul is still in control through the use of Talia's body.

    Batman: The Brave and the Bold

    The League of Assassins appeared in Batman: The Brave and the Bold, going by their proper name for the first time. The League can be seen in \"Sidekicks Assemble!\" and \"Crisis 22,300 Miles Above Earth!\", lead in both instances by Ra's al Ghul.

    Young Justice

    Taking inspiration from Batman Begins, the League appears in Young Justice under the name the \"League of Shadows\". Cheshire, the Hook, Black Spider, Clayface, Professor Ojo and Sportsmaster all appear as members, with Huntress as a former member. Ra's al Ghul is the League's leader, but the organization is usually directed by Sensei. They operated on Infinity Island.

    At some point The Al Ghul family were ousted from The Shadows. The mercenary Deathstroke became its new leader whiles Lady Shiva became its new 'Sensei' instructing the recruits. Base of operation was relocated to Santa Prisca, an island in the Caribbean under Bane's control.

    Live-Action TV

    Arrow (2012)

    In Arrow, the League of Assassins plays a major role in the third season, as Ra's al Ghul first seeks to avenge Sara Lance's death, then to forcibly recruit Oliver Queen as his heir. After Ra's death, Malcolm Merlyn becomes the new Ra's al Ghul until he is deposed by Nyssa al Ghul, who releases all the members from their oaths and disbands the League. Some members formed a splinter group called Thanatos Guild led by Celia 'Athena' Kazantkakis.

    Film

    Batman Begins (2005)

    \"Bruce
    Bruce with Ducard and the league of Shadows

    In Batman Begins, the League of Shadows is a vigilante/terrorist group that existed for thousands of years operating secretly against human corruption such as sacking Rome, burning London and filling trade ships with plague rats. They attacked Gotham by destroying it's economy, creating despair and criminality which forced Joe Chill to become a mugger. Henri Ducard frees Bruce from prison and invites him to join them but only accepting him by giving them a rare blue flower. Bruce accepts and learns many of the skills needed to become Batman, quickly becoming their best student and overcoming his fear of bats. Ducard and Ra's Al Ghul ask him to make a final test and execute a prisoner. When Bruce refuses and learns that he was wanted to lead a mission to destroy Gotham, he blows up their headquarters to escape. Later on, Ducard comes to Gotham and reveals himself to be the real Ra's Al Ghul. Ra's Al Ghul then attempted to destroy Gotham City with Scarecrow's fear poison derived from their blue flowers, but he's stopped by Batman. They where called League of Shadows because thet do not want to use the word League of Assassins to scare younger kids who want to see this movie.

    The Dark Knight Rises (2012)

    The League of Shadows returns in The Dark Knight Rises, secretly led by Ra's' daughter and heir Talia al Ghul, while former League member Bane is brought in to enact the mission that Bruce Wayne was once recruited for: the destruction of Gotham. They attempt to fulfill Ra's al Ghul's dream of destroying Gotham, this time using a nuclear weapon. Many of the League members are defeated during a massive battle against the Gotham Police Department, and Bane and Talia are ultimately killed in the film's climax.

    Video Games

    * The League of Assassins appears in DC Universe Online.

    \"Arkham
    Arkham City

    * The League of Assassins appears in Batman: Arkham City as Talia al Ghul's elite cadre of bodyguards. Batman initially encounters the League after releasing a female member that had been taken captive by the Penguin. He follows her to the League's headquarters, where he briefly engages in a battle against Ra's. At the close of the game, the members of the League supposedly recover Ra's al Ghul's corpse after he is accidentally killed during a fight with Batman. This incarnation is notable as all of the members seen in the game are female.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112657/","id":112657,"name":"The First of the Assassins! ; The Living Statue;","issue_number":"405"},"id":9591,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/5803636-8004032594-latest","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/5803636-8004032594-latest","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/5803636-8004032594-latest","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/5803636-8004032594-latest","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/5803636-8004032594-latest","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/5803636-8004032594-latest","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/5803636-8004032594-latest","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/5803636-8004032594-latest","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/5803636-8004032594-latest","image_tags":"All Images,Comics"},"name":"League of Assassins","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/league-of-assassins/4060-9591/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9726/","count_of_isssue_appearances":0,"count_of_team_members":18,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-06-13 01:31:25","deck":"The Reavers are a group of cyborgs that are most known for their criminal activity, and their hatred of mutants including the X-Men.","description":"

    Origin

    \"Wolverine
    Wolverine fighting the future Reavers

    The first of the future Reavers to encounter any of the X-Men was Donald Pierce, when he was the White Bishop of the Inner Circle of the Hellfire Club, who bears bionic arms and legs. Once, when Wolverine broke into the Club's Manhattan mansion, he severed Pierce's cybernetic arm from the rest of his body. Months later, Pierce rebelled against the rest of the Inner Circle, which was dominated by mutants led by Black King Sebastian Shaw. Pierce abducted Shaw's aide Tessa and held her captive. However, Pierce was thwarted by Professor Charles Xavier and his new team, the New Mutants. Tessa regained her freedom, and Pierce was expelled from membership in the Inner Circle. Three other future members of the Reavers, Cole, Macon, and Reese, were formerly mercenaries employed by the Inner Circle. On the same night that he first met Pierce, Wolverine also encountered a squad of Hellfire Club mercenaries who had been sent to find and kill him. Wolverine lashed out at three of them—Cole, Macon, and Reese—with his adamantium claws, leaving the three of them severely wounded. The Inner Circle then had the three men converted into cyborgs. Cole, Macon, and Reese took Wolverine prisoner when the Inner Circle attacked the X-Men's Westchester County headquarters months later, but Wolverine overcame the three men once more. They were seen again working directly for Donald Pierce when he rebelled against the rest of the Hellfire Club.

    \"Lordy, I do love it when my plans comes together. Y'all know your jobs, Reavers. Let's loot the join!\" -- Bonebreaker.

    Lady Deathstrike had herself transformed into a cyborg by the other-dimensional being called Spiral, in an attempt to gain the means to kill Wolverine, as adamantium had been bonded to his bones in a process stolen from her father, Lord Dark Wind. She then led Cole, Macon, and Reese in an unsuccessful attempt to slay Wolverine in Manhattan. Wolverine was assisted in his escapes by the young Katie Power.

    Creation

    The Reavers were created by Chris Claremont and Marc Silvestri in 1988 and first appeared as a group in Uncanny X-Men # 229. Many of the members however had already appeared before in Uncanny X-Men issue 133.

    Major Story Arcs

    Australia

    \"Reavers\"
    Reavers

    Meanwhile a group of cyborg thieves calling themselves the Reavers had been operating out of a base in Australia. Their base was a ghost town which was inexplicably equipped with advanced computers and a sub-basement and tunnel system. The Reavers coerced the mutant teleporter Gateway to teleport them from Australia to locations around the world to conduct their violent robberies. Informed of the Reavers' existence by Roma, the X-Men expelled them from their Australian base, which they then co-opted for their own use. The X-Men destroyed some of the Reavers and forced most of the rest to enter the Siege Perilous. However, three Reavers ( Pretty Boy, Skullbuster, and Bonebreaker) escaped. The Reavers were then reassembled under the leadership of Donald Pierce. Pierce combined the three survivors of the original Reavers with Lady Deathstrike and the three former Hellfire Club mercenaries into a formidable team. While the X-Men, whose numbers had dwindled, were away from their Australian base, the Reavers retook the ghost town. When Wolverine returned from a leave of absence in Madripoor to find the X-Men gone, he was taken by surprise, captured, tortured and crucified by the Reavers. Meanwhile, Psylocke who had a premonition (her sporadic powers of precognition combining with Gateway's Aboriginal dreamtime) of danger waiting in the ghost town, took drastic action to escape when the X-Men were teleported back to the ghost town. Through telepathic mind control, she forced the remaining X-Men (herself included) to travel through the Siege Perilous, barely escaping the approaching Reavers and mystically re-birthing the X-Men elsewhere with no memory of their real lives. Wolverine later escapes the Reavers only with the aid of Jubilee.

    Versus the Punisher

    \"No

    Around this time, in Punisher Volume II #33, three Reavers, Bonebreaker, Reese and Pretty Boy, are dispatched to a New York warehouse after Microchip, an associate of the Punisher, in a self-confessed mistake, infiltrates their computer system. The temporary absence of Gateway gives Punisher and Micro enough time to evacuate and set up resistance. One of the Reaver's biggest obstacles is a device designed by Micro, nicknamed Dalek. Its telescoping guns and multi-directional fire become very difficult to overcome. Even though, Punisher and Microchip barely survive. The Dalek and the warehouse are destroyed and the two escape through the sewer.

    Muir Island

    The Reavers then attacked Muir Island, theorizing that it was Wolverine's most likely destination. During the assault on Muir Island, they where counter-attacked by the make-shift mutant team known as the Muir Island X-Men. Durimg the attack, Skullbuster was rendered inoperative by sniper fire from Forge. Despite this loss, the Reavers managed to take out a number of mutants. Donald Pierce later transformed a gravely wounded pilot named Cylla Markham into the new Skullbuster (although she usually just went by the name Cylla).

    Upstarts

    \"No

    As part of the Upstarts' game, Trevor Fitzroy dispatches his own Sentinels to the Reavers' Australian hideout to kill Pierce (and anyone else they found there). In the ensuing battle, only Pierce, Lady Deathstrike and Cylla escape the massacre, Pierce seemingly only making it as far as the Hellfire Club before he was \"killed\". Cylla later resurfaces, allying herself with Bloodscream in an attempt to murder Wolverine. However, Bloodscream betrayed her and sucked the life from her, killing her. However, most Reavers somehow survive their supposed deaths. They later return to battle the X-Treme X-Men on behalf of the Shadow King.

    New Reavers: Academy X

    Donald Pierce puts together a new group of Reavers, composed of young anti- mutant humans. This includes Elixir, who at the time was unaware that he was a mutant. They are defeated by a de-facto new version of the New Mutants. Pierce himself has the skin decayed from his body by Wither. He is turned over to the police. Pierce had injured Wallflower during the battle. Elixir saves her, when his former comrades learn of this, they give him a beating and kick him out of the organization. The group later breaks Pierce out of prison and makes another attempt on Elixir's life, but they are defeated by the surviving core members of the original New Mutants team.

    Messiah Complex

    The Reavers returned to play a role in the current Messiah Complex event, under the leadership of Lady Deathstrike. Judging from the design of their costumes, as well as their rhetoric in battle, these newest Reavers are simply existing members of the Purifiers upgraded with cybernetics rather than classic members of the team. Deployed as an elite commando unit designed to eliminate organized mutant resistance, the Reavers manage to track down and confront Cable in Alberta, Canada before being attacked by the new X-Force. In the ensuing battle, Deathstrike and the Reavers are all terminated by Wolverine's strike team, but not before killing the mutant Caliban and injuring Cable. Whether Deathstrike survived the clash, or whether the Purifiers will be able to upgrade more of their fighters with Reaver technology to replace the ones lost in Canada, remains to be seen.

    Alternate Realities

    Earth 295 (Age of Apocalypse)

    The Reavers in this alternate reality were headed by Donald Pierce and made up of members Clegg, Dead Eye, Mangle, Slocum, and Vultura. They were human beings that were altered by Apocalypse with the Techno-Organic Virus. Put in charge of stopping the Human High Council's plan to use nuclear weapons to stop Apocalypse, they brainwashed Captain Britain and attacked Wolverine, Carol Danvers, and Gateway. Eventually, all of their members were defeated.

    Earth 1610 (Ultimate Reavers)

    Rather than being a specific team of super-villains, the Ultimate continuity's version of the Reavers are human gladiators who have undergone surgery to become cyborgs for the specific purpose of hunting down mutants on live television. They are led by Ultimate Deadpool. Some do retain the names of the 616 Reavers, such as 'Bonebreaker'.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-432644/","id":432644,"name":null,"issue_number":"1987-10"},"id":9726,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/79306-185052-reavers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/79306-185052-reavers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/79306-185052-reavers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/79306-185052-reavers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/79306-185052-reavers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/79306-185052-reavers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/79306-185052-reavers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/79306-185052-reavers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/79306-185052-reavers.jpg","image_tags":"All Images,Earth-616 Reavers"},"name":"Reavers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/reavers/4060-9726/"},{"aliases":"Upstart Dominants","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9727/","count_of_isssue_appearances":0,"count_of_team_members":11,"date_added":"2008-06-06 11:27:46","date_last_updated":"2019-11-13 09:16:22","deck":"The Young, The Rich, The Powerful and the elite! The Upstarts would enter a game of death and deception to gain power. Though Selene founded them, it would be the Gamesmaster who would call the shots.","description":"

    The Upstarts are a group of Mutants (and one human) who were vying for leadership of their own group and were given points for assassinating mutant figures. The Upstarts included: Shinobi Shaw, Siena Blaze, Fabian Cortez, Graydon Creed, Trevor Fitzroy and the Fenris Twins, Andrea Strucker and Andreas Strucker. The Upstarts were responsible for most of the death's of the original Hellions and the apparent deaths of Magneto and Sebastian Shaw.

    The Upstarts!

    Many members of the Hellfire Club's The Inner Circle have had their hands in the creation of many power teams. These teams were used to further the creator’s power. Selene (the Black Queen of the Inner Circle) would be no different. As the White Queen ( Emma Frost) made a team of young/adolescent mutants, called the Hellions, to solidify her role in the Hellfire Club. Selene, too, would create a team of young, mutant adults though for, it would seem, more honorable reasons. Selene was to use the team to mold and create the future mutant leaders of the world. Though with Selene, there is always more then meets the eye. Selene would have an ulterior motive for the team know as The Upstarts!

    The Players

    Selene was very particular about those that she would recruit into the team. Only wanting the young, wealthy, powerful and elite. Those who would be powerful leaders in the future. Her only other criteria would be that they MUST be mutants.

    The initial roster would include:

    Trevor Fitzroy: The teleporting, time traveling mutant from the future.

    Shinobi Shaw: The phasing son of the Inner Circle's Black King, Sebastion Shaw. Cunning and sly, Shinobi Shaw is willing to betray and do anything in order to further his self.

    Other would join later in the game such as:

    Siena Blaze: wielding energies so powerful, each use depleted Earth further as her power were detrimental to the environment.

    Graydon Creed(Tribune): the only baseline human, and future presidential candidate, to join the team also the mutant hating biological son of both Mystique and Sabretooth.

    Fenris: Twin Nazi sympathizers who require skin-to-skin contact with each other to enable use of their powers. (Probationary Member)

    Matsuo Tsurayaba: powerful member of The Hand. (Probationary Member)

    The team would need one last person, someone who could monitor and judge the competitions for the group, a referee of sorts. Selene would get in contact with an omnipathic mutant, with mental powers on par with both Professor X and Jean Grey, by name of Gamesmaster. Though Selene organized/founded the team, he would monitor them and keep track of points to see who the winner of each game would be.

    The Upstarts were unlike any other team. In joining the team each member was part of a secret competition, or games as they are referred to as being. Basically the group would be given targets (groups of people or individuals) and the Upstarts would have to assassinate them. Gamesmaster would award points based on the victim’s power, skill and their overall importance to the world. Points and competition were decided solely by Gamesmaster. The winner for smaller games would gain leadership of the Upstarts with complete loyalty and power granted to that person while they were wearing \"the ring.\" The ring signifies who the winner was. Selene also eluded that the grand prize would be immortality, a prize that each member wanted greatly.

    In order to join the team one requirement must be met. The individual requesting membership would have to kill a member of the Inner Circle. In the beginning, things went smoothly and as planned. Resulting in many major events such as: The decimation and deaths of almost all of the Hellions as well as the Reavers. Additionally, the apparent deaths of Sebastion Shaw (Black King), Emma Frost (White Queen), Eric Lensherr (Magneto/ White King) & Donald Pierce (White Rook). Selene's hidden agenda couldn't be going any better.

    Selene's Secret Plan

    In appearance, Selene would make it seem as though her reasoning for the team was completely honorable. Only wanting to find and mold the future mutant leaders of the world. A humanitarian effort if ever there was one. Though not all was as it seemed. True, she did want to find the future leaders, but this would be to fit her needs. There was a power struggle, one of huge proportions, in one of the most powerful factions in the world. It was in the Inner Circle of the Hellfire Club. Each of the members was plotting against one another. Deception, lies and manipulation; these were a regular thing and was what was to be expected. Selene, the Black Queen of the Inner Circle would be no different.

    Her goal was simple, she wanted full control of the Inner Circle and in effect the Hellfire Club. This would never happen with the current members as they all wanted the same exact thing. So she would pick individuals with the powers and abilities to assassinate/kill those currently in the Inner Circle. She would sugar-coat the actions by calling it a competition or game. With each completed game another part of the Inner Circle would be removed, from the actual members to their followers. This would only leave Selene to be in the fullest control of the group. Here are some of the initial games.

    -Payment for membership would be to kill one of the current members of the Inner Circle.

    -Destroy any of the personal teams the Inner circles may have. i.e. the Reaver's who were the followers of Donald Pierce (White Rook).

    -Kill the Hellions, loyal to Emma Frost the White Queen, and potential Inner Circle recruits in the future.

    -The total annihilation of the entire group of the Inner Circle, excluding Selene.

    If the ploy was successful there would only be the Black Queen, Selene, with all the power to herself. She would then have her team fill the emptied spot to create a new Inner Circle. Though as it would shortly be seen, Selene wasn't the only one playing a game for their own benefit. One, of the Upstarts would soon have plans of his own, that none were aware of. And there wasn't a thing anyone could do to stop him.

    The Gamesmaster

    The Gamesmaster's role was to be the quiet background member. He was only to be the referee with no other real role on the team. In actuality he was getting taken advantage of by Selene, only wanting him for his mental powers, powers that she would underestimate. Gamesmaster was no regular telepath, he was an omnipath with mental gifts so powerful any average telepath's mind would burn out. His mental powers were at such a level that he is linked/connected to every single mind on the world 24 hours a day, 7 days a week. More then 6 million people's thoughts coursing through his mind all at one time. Even the powerful Professor X would not withstand that duress. He would find ease when he was asked to join the Upstarts. He found that when focusing on specific sets on individuals, rather then trying to block everyone’s thoughts, it would ease his pain. Gamesmaster enjoyed the games, he found the interesting, and especially liked the reprieve from the pain of his powers. The problem was that Selene's game was soon to end, and the game would be over. Or so she thought.

    The Gamesmaster's Game

    Selene No More

    The Gamesmaster couldn't allow the games to end; he enjoyed them, to make them continue he would have to do a little manipulating, himself. Gamesmaster would have to use his powers in a way that he had never tried. He would have to mentally control another person to put his plans into play. Considering his amazing telepathic might, it shouldn't be a problem. He would select the maniacal Fitzroy. While Controlling Fitzroy he would have him use his powers to capture Selene. Fitzroy would prove successful and even put her in a torture machine from the future. All her experiences in her long life, battling some of the most powerful heroes from the X-Men and Excalibur, while all ranging from life threatening to simply casting a spell, they have not prepared her for such physical pain. Otherwise known as “spooling” the process involves being ripped to shreds and then reformed over and over and over again. Needless to say the pain was exquisite. Fitzroy fail-proofed his plan as well. The only way she could be freed is if someone took her place in the machine. No one in there right mind would do that, so Selene would be stuck their. Gamesmaster also fail-proofed his plan. If Selene, by chance, did free herself, she would blame Fitzroy, not the true person behind it. Once Selene was out of the way, Gamesmaster could use the Upstarts to his hearts content. He would control them and their lives like a game of chess. He would never have to worry of ramifications either, as he would never have physical contact with the teams either, since all connections with them would be through the astral plane. It was the perfect plan.

    Let The New Games Begin!

    Gamesmaster would now play an even larger role in the Upstarts. No longer simply a referee, he was participating in the games by manipulating and controlling his team. When he took over, new members would join like: Tribune (Graydon Creed), Fenris and Matsu'o from The Hand.

    The games that he created were one the same path as those in the beginning. He would select target and this Upstarts would have to assassinate them for points. He picked some very hard targets and in most cases not successful at his attempts. Some of the targets were Forge, Cyclops, Storm, Professor X, Moira MacTaggert and in one a death wasn't required. Mr. Sinister hired the team to attain D.N.A. from Proteus instead return with the D.N.A. of Marvel Girl (Rachel Summers, then using Phoenix as her code-name.) Gamesmaster had many games, some time multiple one at any given time. None would require more effort from him and his team the Upstarts, then the final one that they would participate in together.

    Young Hunt / Child's Play

    Coming full circle Gamesmaster would have his final targets be the ones that got away in the very first game. The new/old target are the remaining living original Hellions and New Mutants (in actuality all the remaining living New Mutants, save a few were all Hellions). Though now, these are no longer young, novice mutants who could get easily pushed over. Both teams are older, more experienced and are very spread out. They are all spread out out now and apart of different teams such as: X-Force, Mutant Liberation Front (MLF) and New Warriors. There were quite a few targets that the members of the Upstarts were to take on, including: Empath, Thunderbird(now known as Warpath), Firestar, Magma, Cannonball, Boom Boom, Karma, Moonstar, Rictor and Wolfsbane. The key difference in this game is that Gamesmaster didn't want the captives to be killed, only captured. It can only be assumed that he grew bored with the Upstarts and was to use the captives mutants as his new pawns. His ploy was nearly successful and would have won if not for one, Paige Guthrie, the future X-Men known as Husk and little sister of Cannonball.

    The New Game

    To Control The Future

    Gamesmaster was always ready for a new challenging game, especially the one posed to him. Paige challenged the Gamesmaster to a race. A race to locate and control the future mutants of the world. She stated that Professor X, Magneto and the Hellfire Club would all be trying to find them as well. Being intrigued by the challenge, he quickly decides that he no longer had interest in the Young Hunt. He called the game off and released all his mentally captives ex-member's of the New Mutants and the Hellions. Not only would he call and end to the current game but he would follow that with the disbanding of the Upstarts. He felt that he no longer required them as he could continue his game alone.

    Where Are They Now

    It not likely that the Upstarts are to regroup and make an appearance. Many have passed away, unfortunately have this status be much more permanent the some of the \"death\" that they dealt out on their targets. Here is an update on the status' of each of the members.

    Selene: is still actively scheming away hiding in the dark. She recently came into the company of the young mutant Wither and has plans in place for the both of them. Though nothing has been revealed about it.

    Gamesmaster: After the Upstarts were disbanded, he would show up a few more times doing battle with the likes of both the X-Men and X-Force. After a lose at the hands of Jean Grey he seemingly disappeared. Though being that he is a telepath of high order, he may simply be hiding his presence till the right time.

    Trevor Fitzroy: Though he would continue to wreak havok for many years to come he would finally run into his enemy from the future, Bishop, and be dispatched. It appears that his death is a permanent one.

    Siena Blaze: Though she had immeasurable and deadly mutant energies at her disposal, in the end it wouldn't matter. She along with hundreds of other mutants would be captured and sent to Neverland, a facility ran by Weapon X. She would ultimately be placed in a gas chamber and be killed. Her power's would matter not as the building was harnessing the power dampening mutant Leech's powers to effectively depower all mutants in the vicinity.

    Shinobi Shaw: Though he thought he was successful in his ploy to kill his father, he would be wrong. His father would reappear, very much, alive. Scared for his father retribution, Shinobi went into hiding and has yet to come out.

    Fabian Cortez: Would attempt multiply time to kill Magneto, his one time savior. He was first attacked and thought to be killed by another of Magneto's over-zealous followers, Exodus. Though, truly he was alive, Magneto would find him and put an end to his life.

    Graydon Creed: He would go as far a being a candidate for presidency, while giving a speech his very own mother, Mystique, would assassinate him.

    Fenris: Of the two of them, Andrea and Andreas, only one would not meet their death. Andrea would, by chance, deduce the identity of a newly arrived Citizen V. Not wanting his secret out he would murder her in cold blood, ensuring his secret would be safe. A mind controlled Andreas, would find her body and show no real emotion, but would slice some of her skin off and have it added to the sword that he was carrying. He would have the skin tanned and added to the hilt of his sword so that he could maintain his power's which require skin contact with his sister and he would also take the role of the Swordsman working for the Thunderbolts.

    Creators

    The Upstarts were created by both Jim Lee & Whilce Portacio.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33256/","id":33256,"name":"Madripoor Knights","issue_number":"268"},"id":9727,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/84868-190618-upstarts.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/84868-190618-upstarts.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/84868-190618-upstarts.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/84868-190618-upstarts.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/84868-190618-upstarts.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/84868-190618-upstarts.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/84868-190618-upstarts.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/84868-190618-upstarts.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/84868-190618-upstarts.jpg","image_tags":"All Images,Upstarts"},"name":"Upstarts","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/upstarts/4060-9727/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-9730/","count_of_isssue_appearances":0,"count_of_team_members":47,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-04-04 12:06:15","deck":"The Acolytes are a group of mutants that followed Magneto's ideals and believed in a society where humans are dominated by mutants formed by Fabian Cortez.","description":"

    Origins

    The Acolytes started out as a group on the run from American soldiers, and were led to Magneto by their leader Fabian Cortez. When Magneto granted them refuge within his headquarters on Asteroid M, they left Fabian out in the cold and reformed as Acolytes under Magneto. But Fabian was incensed: before escaping Asteroid M, he helped bring about its destruction. When Asteroid M plummeted to Earth, the Acolytes perished and only Magneto survived.

    Creation

    The Acolytes were created by Chris Claremont and Jim Lee in 1991 and first appeared in X-Men # 1.

    Mayor Story Arcs

    Exodus

    \"Avalon\"
    Avalon
    \"Fabian
    Fabian Cortez

    Fabian Cortez was then free to lead a second incarnation of Acolytes whose first mission involved an attack on Our Mother of the Sacred Hear School to search for a child they hoped would become a powerful

    mutant in his adolescence. Once the X-Men stepped in, the Acolytes released the child - but only after finding out the boy had Down´s syndrome, which made him untrainable in the eyes of Acolytes. After the brutal killing of dying humans in the Sacred Heart School and an aborted attack on a military base, Magneto returned. Magneto, who was angry about Cortez´s betrayal, found and recruited the mutant known as Exodus to help him reclaim the Acolytes. After winning the leadership from Cortez, Magneto returned to space and build a new space station called the Avalon for the group with Shi´ar technology.

    When Exodus retreated to Avalon, he and the other Acolytes noticed a floating cocoon in outer space and brought it onboard. The cocoon housed the dimensionally displaced mutant called Holocaust who after he awakening killed several Acolytes. During Holocausts battle with Exodus, Holocaust sent Avalon and its occupants hurtling towards the Earth. Only those Acolytes who made it to an escape pod were saved.

    By the time Avalon crash-landed, Magneto had been granted control over Genosha by the UN, and he attracted more Acolytes to help serve him on the island. But Magneto also faced the retribution of other Acolytes who mounted the Carrion Cove rebellion against his rule in Genosha.

    Post M-Day

    Several Acolytes were de-powered after M-Day, notably Magneto and Scanner. The Acolytes were then reformed by Exodus and because one of the major players in the search for the first mutant child to be born post M-Day. They battle the X-Men for control of the baby, Hope Summers.

    A newly returned Xavier then assaults the Acolytes at New Avalon and confronts Exodus. Xavier persuades him that with so few new mutants now left, it is pointless to continue on fighting and Exodus agrees and disbands the Acolytes. Some of the Acolytes, such as notably Frenzy, go on to later join the X-Men.

    Acolytes (current and former) confirmed to retain their powers are: Colossus, Exodus, Frenzy, Gargouille, Neophyte, Projector, Random, Senyaka, Skids, Tempo, Unuscione, Amelia Voght and Vindaloo

    Membership

    \"No

    Current Members

    Original Members

    \"No

    Former Members

    \"No

    Alternate Realities

    Earth-2149

    In the Zombieverse, Magneto's Acolytes remained safe from the plague on Asteroid M. They allowed the Black Panther to come and heal on the asteroid, and allowed him to bring the zombie head of Wasp with him. When the zombies left Earth in search of other planets to eat, the Acolytes returned to Earth.

    Animated Appearances

    \"X-Men
    X-Men Animated Series

    X-Men the animated series: The Acolytes appeared in several episodes of the first X-Men animated series.

    X-Men Evolution: The Acolytes appeared in seasons 2, 3, and 4 of this series, they consisted of Gambit, Colossus, Pyro, Sabretooth, and Quicksilver.

    Wolverine and the X-Men: The Acolytes appear in this series as Magneto's bodyguards.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-34784/","id":34784,"name":"Rubicon","issue_number":"1"},"id":9730,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/79022-149714-acolytes.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/79022-149714-acolytes.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/79022-149714-acolytes.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/79022-149714-acolytes.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/79022-149714-acolytes.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/79022-149714-acolytes.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/79022-149714-acolytes.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/79022-149714-acolytes.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/79022-149714-acolytes.jpg","image_tags":"All Images,Earth 616 Acolytes"},"name":"Acolytes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/acolytes/4060-9730/"},{"aliases":"Iron Men","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-10977/","count_of_isssue_appearances":0,"count_of_team_members":9,"date_added":"2008-06-06 11:27:47","date_last_updated":"2013-09-26 05:01:59","deck":"Created by Iron Man following the deaths of the Avengers in a battle with the Absorbing Man, The Iron Avengers were modelled after the fallen heroes and were led by the Vision. Following the death of Iron Man, Black Knight took over leading the Iron Avengers.","description":"

    Origin

    The Iron Rebirth

    Tony Stark, following the death of the Avengers at the hands of the Absorbing Man in Washington D.C., created robot duplicates of his fallen teammates to carry on in their name. Lead by the Vision, they were first sent to battle the alien hybrid \"the Hydra\"

    When the Skull first arrived in New York City, the Iron Avengers were the first line of defense against the Skulls army against President Norman Osborne's headquarters. When the Skull found he couldn't take control of the Iron Avengers he had his army destroy them, which they did with great ease.

    Following the death of the Skull, and Tony Stark's death while fighting the Celestials, King Britain (Brian Braddock) ordered that the Iron Avengers to be rebuilt. Over a three year period he worked with the Vision and his army of genetically altered Union Jacks to build an army of Iron Avengers to defend England and the Earth. While maintaining the same abilities of the originals, these Iron Avengers lacked the personalities of the Avengers the original Iron Avengers; as well as lacking ability to speak that the originals did. This may be because that only Stark had the genius and knowledge of his friends while they lived to program such complex personalities.

    Defending a strange new world

    This new army of Iron Avengers were now lead by the Black Knight (the son of Black Bolt, raised by Braddock) defended Buckingham Palace from an attack made by the Tong of Creel, who were searching for the broken pieces of the Absorbing man. One of those pieces were guarded by King Britain in an attempt to keep the absorbing man from reforming, the battle was lost when the Tong of Creel obtained the piece they had sought.

    Later the Iron Avengers were sent with Black Knight to investigate one of the Human Torches in the Savage Land that appeared to have gone out because of neglect. While there Black Bolt, Iron Maiden, and Jade Dragon joined in a great struggle with Toad, who switched abilities with Magneto following the worlds depolarization. The Toad used his new found magnetic powers to both abuse magneto for the years of torment his former boss had dealt to him and to take control of the Iron Avengers and used them to attack the heroes. At which point Black Bolt called in an entire army of Iron Avengers against Toad, and his robotic creation known only as Tank.

    With the help of Cable (having been trapped beneath Sentinel City since the techno-organic virus that had consumed his body went out of control, having lost his telepathic powers when the rest of the telepaths lost their powers or died), Iron Maiden was able to stabilize the amount of Vibranium in that area of the world to reverse the power switch between Magneto and Toad . Upon regaining his powers Magneto repaired all the damage caused to Sentinel City and the Iron Avengers were free from the Toad's control.

    The Iron Avengers later aided in battling the Absorbing Man when he literally absorbed the city of New York.

    After the defeat of Absorbing Man ,the Iron Avengers have taken an even lesser involvement in the affairs on this universes' Earth. They have been seen as guards during the wedding ceremony of King Britain and Medusa. A number of Iron Avengers were sent along with the Iron Maiden into space on a rescue mission to save the Eternals, who were trapped in Vibranium .

    Presently, it has never been revealed what the status of this mission is, and what the remaining Iron Avenger status are on Earth, but it is reasonable to assumable they have resumed their normal duties of defending as the global police force Tony Stark originally intended them for.

    Powers and Abilities

    Each Iron Avenger had a similar likeness of their name sake, but also had similar features of Stark's many Iron Man armors. Each robotic construct could fly via jet boots, although the size differences of the Sting and Monolith , and the Steelbows' bow and arrows, it is unclear if the Iron Avengers were given the ability to mimic their name sakes super-human abilities.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-249043/","id":249043,"name":null,"issue_number":"1"},"id":10977,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3324723-ironmen1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3324723-ironmen1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3324723-ironmen1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3324723-ironmen1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3324723-ironmen1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3324723-ironmen1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3324723-ironmen1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3324723-ironmen1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3324723-ironmen1.jpg","image_tags":"All Images,Alternate Earths,Artwork,Earth-9997 Bolt,Earth-9997 Crimson Sage,Earth-9997 Iron Avengers,Earth-9997 Iron Maiden,Earth-9997 Jade Dragon,Earth-9997 Monolith,Earth-9997 Steelbow,Earth-9997 Sting"},"name":"Iron Avengers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/iron-avengers/4060-10977/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-10980/","count_of_isssue_appearances":0,"count_of_team_members":23,"date_added":"2008-06-06 11:27:48","date_last_updated":"2020-09-28 09:13:00","deck":"The Micronauts are a team of freedom fighters, explorers and adventurers. Originally dedicated to fighting the tyrant Baron Karza who enslaved most of their planets in the Microverse, the team has stayed together after his defeat, exploring the Microverse.","description":"

    Origin

    The Micronauts came together as a direct response to Baron Karza's subjugation of Homeworld and most of the Microverse. Upon the completion of his 1,000 year exploration, Commander Arcturus Rann arrived at his home planet Homeworld, the central planet in the Microverse and the new seat of power for Karza's empire, only to find himself arrested and enslaved by his former teacher Baron Karza. Karza jailed Rann in anticipation of sending him to the gladiatorial pits, where he would be forced to fight all manner of monsters and warriors from every corner of the Microverse for the entertainment of the rich elite of Homeworld, now virtually immortal thanks to Karza's Body Banks.

    Prior to his first gladiator fight, Rann was attacked by a group of fellow prisoners. He would have been overcome save for the timely intervention of Acroyear and Bug who were already veterans of the arena. The three men soon realized that they all had a common enemy in Karza, and with the help of Marionette, a disguised princess Mari of Homeworld, the Micronauts escaped in Rann's spaceship The Endeavor.

    Original Team Roster:

    Creation

    Marvel Comics writer and editor Bill Mantlo recalls that The Micronauts as a comic book series originated on Christmas Day of 1977 when his son Adam received one of the new Micronauts toys as a present. Recognizing the story potential inherent in the toy line, Mantlo quickly convinced then editor in chief Jim Shooter to acquire the license. Mantlo would remain as writer on The Micronauts series for nearly all of its initial series run, finally turning over the writing reigns to Peter B. Gillis for its resurrection as Micronauts The New Voyages. The series team of Mantlo, and artist Michael Golden meshed uncannily well, creating a rich back story for the characters, and using nearly every toy in the line in one form or another.

    Team Evolution

    The Micronauts unofficially disbanded after Karza's initial defeat at the hands of Commander Rann and The Enigma Force, with Bug and Acroyear returning to their respective homeworlds. Acroyear was crowned king of his home planet Spartak, however after killing his brother Shaitan for his crimes against the Acroyear race, Acroyear abdicated his throne and left to rejoin The Micronauts, taking his betrothed Cilicia with him. Along the way they are also rejoined by Bug and his Lady Jasmine. After many adventures the team eventually picks up Devil and Fireflyte.

    The Return of Baron Karza

    Thanks to his body banks, Karza was rendered virtually immortal, and the tyrant's death proved to be a mere respite for The Micronauts. Karza quickly re-cemented his hold on the Microverse even with The Micronauts and their allies to challenge him. Eventually, the Micronauts defeat Karza yet again, however their victory comes with the decimation of all life on Homeworld.

    The New Voyages

    After a long period of recuperation and reflection, the Micronauts again decide to stay together, setting out to find new adventures. At the start of their first journey, the team is thrown far off course, way beyond the Microverse. There they meet a strange alien life-form called Scion and he soon joins them aboard their ship.

    After several more adventures the team is attacked by universal rolling waves of pain and they encounter a cosmic sized Time Traveller who seems to be in agony and lashes out at them. Tracing the pain waves back to their source, the team makes a final journey to Homeworld where in a last ditch effort to save the Microverse from tearing itself apart, the entire team uses Karza's machinery to open up The Prometheus Pit. They each take turns jumping into the Prometheus Pit where their essences seed new life into a reborn Microverse.

    The Retcon

    Marvel finally gave up the rights to the Micronauts toy line, however since much of what Bill Mantlo created for the series was original work, the Micronauts eventually reappeared in the pages of Alpha Flight renamed the Champions of the Microverse. Commander Rann, Marionette, and Bug are joined by newcomer Dexam in their quest to defeat the evil ruler of Anttica, Baron Zebek.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-235991/","id":235991,"name":null,"issue_number":"40"},"id":10980,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5883065-img_4773.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5883065-img_4773.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5883065-img_4773.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5883065-img_4773.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5883065-img_4773.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5883065-img_4773.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5883065-img_4773.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5883065-img_4773.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5883065-img_4773.jpg","image_tags":"All Images"},"name":"Micronauts","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1190/","id":1190,"name":"IDW Publishing"},"site_detail_url":"https://comicvine.gamespot.com/micronauts/4060-10980/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11285/","count_of_isssue_appearances":0,"count_of_team_members":23,"date_added":"2008-06-06 11:27:47","date_last_updated":"2017-03-18 15:07:32","deck":"An alien race that shared the world with the Martian Manhunter's people, but are alot more violent.","description":"

    White Vs. Green Martians

    Eons ago the Evil Pale or \"White Martians\" invaded Earth. Without really caring for Earth, the White Martians brought destruction to Earth's environment. Besides the White Martians there were also the Green Martians, a more peaceful race of martians. The White Martians rampage on Earth resulted in the slow down of superhuman evolution. Taking matters into their own hands the Green Martians imprisoned their counterparts in the Ghost Zone (also known as the Still Zone or Phantom Zone) for what they thought to be forever. But, eventually the White Martians came back. After the Justice League Of America defeated the White Martian's initial invasion, lead by the Hyperclan, the Martian Manhunter wiped them of all their previous memories making them think that were and had always been only human. In an encounter with the wish-granting Id, J'onn J'onnz (the Martian Manhunter) inadvertently bought back his fellow martians through a wish she granted him of wanting company.

    The Hyperclan

    Extricating themselves from the Still Zone aka Ghost Zone or Phantom Zone, the White Martians returned to Earth in the guise of gods calling themselves the Hyperclan. The Martians claimed their homeworld had been destroyed by negligence and greed and they offered to save Earth from a similar fate. The Hyperclan turned deserts into verdant paradises and ended crime by executing meta-criminals. This was all part of their insidious plan to discredit and destroy the Justice League. Earth's real heroes saw through this ruse and put a stop to it right away. All hope seemed lost after the White Martians took away the only means of defeating them, by burning them with fire. The Martians took this away from Earth by inhibiting the Earth's atmosphere with subatomic particles that inhibited any combustible reaction. To find a way around this the Justice Leagues lured the Martians to the Justice League Watchtower and the moon aflame.

    Fernus

    After the events of the Obsidian Age, the Martian Manhunter sought out therapeutic help against his otherwise crippling fear of fire that affects all Martians. Mostly conquering this fear with the aid of the reforming criminal Scorch, J'onn however unlocked a personality buried within himself called Fernus, a personality that was only kept in check through the Martian's genetic fear of fire. Unknown to all, save the Guardians of the Universe, the Martian race had once been a single race, called the Burning. The Guardians feared the Burning, at the time limited to Mars, would achieve interstellar flight and spread beyond Mars and inflict the rest of the cosmos with their chaos, as the Burning could reproduce asexually as long as they could find a proper flame. The Guardians found it necessary to descend on Mars and the Burning, breaking the Martians down into two species resulting in the Green and the White Martians, and creating their great fear of fire to prevent their Burning mentality from returning, something they were unable to completely remove.

    When J'onn finally lost himself inside Fernus, the White Martians held in the Still Zone were amongst the first to suffer his ire and as a result, they were all butchered before the League arrived.

    Miss Martian

    Despite what Fernus did, it was not the end of the White Martian race. During the One Year Later gap, the Teen Titans recruited a young woman that looked very much like the Martian Manhunter called M'gann M'orzz. However, like many that year, Megan didn't remain for long due to the turmoil the team was in at the time. After Cyborg returned and woke up with the knowledge that Raven had uncovered a traitor during the year he was out and was now on the run, the team ventured to the Australian Outback to meet with Megan before being pointed at Bombshell after refusing to expose her mind to the world. However, after the Titans had left, she did anyway, and discovered that Bombshell was the traitor and headed after them. Initially there was confusion when Bombshell blasted Megan out of her Green Martian guise, revealing that she was in fact a White Martian. Because of the White Martians dire reputation the Titans initially thought Megan was the traitor, before being blindsided by Bombshell.

    Megan has since then revealed that her parents had sent her into the Vegan system when she was an infant to shield her from the wars plaguing their people, but when she came back they were gone and she headed to Earth. It is only known that she has met J'onn in person once, during the Brightest Day story arc, when she was ambushed and nearly slain in her Outback retreat by the insane Green Martian called D'kay before J'onn arrived.

    Characteristics

    Real Names: Unpronounceable

    Occupation:

    Alien Occupiers

    Base:

    The Still Zone, first as their fortress, then later as a Justice League run prison.

    Height:

    Variable

    Weight:

    Variable

    Eyes:

    Red in their natural form

    Skin:

    Chalk White in their natural form

    Powers & Abilities

    White Martian abilities are similar to those of the Green Martians, and they they have numerous superhuman powers, including superhuman strength, flight, invisibility, telepathy, shape-changing, phase-shifting (sometimes called variable density) which allows them to be either invulnerably tough or completely immaterial, and \"Martian vision\" (a form of energy projection from their eyes), but they also share the Green Martians' vulnerability to fire.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-10184/","id":10184,"name":"...And So My World Ends!","issue_number":"71"},"id":11285,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/170125-53202-white-martians.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/170125-53202-white-martians.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/170125-53202-white-martians.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/170125-53202-white-martians.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/170125-53202-white-martians.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/170125-53202-white-martians.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/170125-53202-white-martians.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/170125-53202-white-martians.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/170125-53202-white-martians.jpg","image_tags":"All Images,Comics"},"name":"White Martians","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/white-martians/4060-11285/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11401/","count_of_isssue_appearances":0,"count_of_team_members":7,"date_added":"2008-06-06 11:27:45","date_last_updated":"2019-04-16 00:49:21","deck":"The Quinntets were a comical team of henchmen that worked for Harley Quinn.","description":"

    This team of henchmen worked for Harley Quinn and were created for her own series.

    Because they didn`t get any money from their attempted heists, one of its members, Nixon two-bear got surly about Harley. Especially because they had never been close.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-78187/","id":78187,"name":"Shades on a Moonlit Lake","issue_number":"4"},"id":11401,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/1805902-283507_12514_quinntets.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/1805902-283507_12514_quinntets.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/1805902-283507_12514_quinntets.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/1805902-283507_12514_quinntets.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/1805902-283507_12514_quinntets.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/1805902-283507_12514_quinntets.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/1805902-283507_12514_quinntets.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/1805902-283507_12514_quinntets.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/1805902-283507_12514_quinntets.jpg","image_tags":"All Images,Full Team,Funny Images"},"name":"Quinntets","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/quinntets/4060-11401/"},{"aliases":"Universal Inhumans\r\nInhomo Supremis","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11427/","count_of_isssue_appearances":0,"count_of_team_members":246,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-01 07:45:32","deck":"The result of Kree experimentation on Homo Neanderthalensis using Terrigen Mist, The Inhumans are a race of super powered beings who live in isolation and do not trust humans.","description":"

    Origin

    \"No

    At the beginning of the Kree-Skrull War, millions of years ago in Earth time, the alien Kree established a station on the planet Uranus, a strategic position between the Kree and Skrull empires. Through their work at this station, they discovered that sentient life on nearby Earth had genetic potential invested in it by the alien Celestials. Intrigued, the Kree began to experiment on Earth's then primitive Homo Sapiens, inspired from studying a dead Eternal.

    Tuk the caveboy was the first offispring of Inhumans, living in 50000 BC.

    A strange sub-species of humanity who were given a genetic boost by alien scientists some 20.000 years past. A race of beings dedicated to the pursuit of knowledge and who through genetic manipulation have assumed varied appearances and powers.

    Their goal was apparently twofold — to investigate possible ways of circumventing their own evolutionary stagnation, and to create a powerful mutant race of soldiers for use against the Skrulls. However, although their experiments were successful in creating a strain of humanity with extraordinary abilities, the Kree abandoned their experiment for reasons which are not yet clear.

    Their test subjects, the Inhumans, went on to form a society of their own, which thrived in seclusion from the rest of humanity and developed advanced technology. Experiments with the mutagenic Terrigen Mist gave them various powers, but also caused lasting genetic damage and deformities. This led to a long-term selective breeding program to try to mitigate the effects of these mutations. Their city Attilan has frequently been relocated and, as of 2005 stories, rests in the oxygen-bearing Blue Area of the Moon.

    Development

    The once-secret existence of the race has come to light among the general public as the Inhumans interact more often with many of Earth's superheroes — including the Fantastic Four, the Avengers, and the X-Men — whom they have aided against threats such as Galactus, Ultron 7, Magneto, and Apocalypse.

    The Inhumans are led by their king, Black Bolt, and his royal family, consisting of Medusa, Karnak, Gorgon, Triton, Crystal, Maximus the Mad, and the canine Lockjaw. Both Crystal and Medusa have been members of the Fantastic Four; Crystal has also been a member of the Avengers.

    Caste System

    One interesting observation is that Attilan's society and culture are predicated on a conformist belief system which permits individuality as it applies to genetic development and physical and mental ability, but demands rigid conformity in that each member of society is assigned a place within that society according to those abilities following exposure to the Terrigen Mist. Once assigned, no Inhuman, no matter how great or powerful can change their place within this rigid caste system.

    Another interesting note is that the Inhumans' culture strictly prohibits miscegenation, or racial combining, between Inhumans and other races. Although a member of the royal family, the Inhuman Crystal appears to have ignored this prohibition married outside of her caste to wed the mutant Quicksilver. However, this may be a privilege due to Crystal's standing as a member of the royal family.

    In contrast it appears that such permissive behavior is lost on the children of the immediate members of the royal family. Gorgon's daughter, for example, attempted to form relationships outside of her caste and was strictly prohibited from doing so, although this may have been because her relationship was with an Alpha Primitive, a cloned creature with subhuman intellect bred for labor, the lowest Inhuman caste. It is not clear, however, whether commoners face such strict disciplinary measures under similar circumstances.

    Major Story Arcs

    Attilan

    During their stay in Attilan on the moon, a group of Kree refugees arrived and was attacked by the Inhuman guards. When one of the Inhuman guards was outnumbered the Kree told him they came to beg for Sanctuary. This was a lie they said so they could get close to the Inhuman Royal Family and assassinate them. The Kree had found Medusa and Black Bolt playing in a garden since they renounced their monarchy and let Attilan decide for themselves. The Kree stayed in a part of Attilan which held old Kree machinery, in tents. Three Inhuman kids came here to play but saw three Kree soldiers. Having a dislike towards Kree they tried to scare them. One of the Kree children got a gun and shot one of the Inhumans in the leg. And then tried to shoot an Inhuman guard who was invincible. During this time in the Chambers of the Inhuman Genetics Council, the Kree was granted an open hearing to decide whether their sanctuary in the Blue Area is to be permanent or temporary. In the end the Inhumans sent the Kree away.

    Servants of The Kree

    However, Inhuman society changed radically recently. Ronan the Accuser sought to use the Inhumans as an army to disrupt the Shi'ar control of the Kree after their defeat in the Kree-Shi'ar War. Appearing over the city of Attilan, Ronan seized control in a surprise attack and forced the Inhumans and their king, Black Bolt, to obey, or he would destroy their only home and everyone in it. During their time in forced servitude, Ronan revealed that the Inhumans had always been intended as weapons in service to the Kree. To this end, much of the genetic attributes that were encoded in them during the original experiments were meant to give them the abilities and appearances of various alien races. The idea being that these Inhuman slaves could be used to infiltrate alien worlds and races to conduct espionage or assassinations to weaken potential conquests. Ronan used the Inhumans in just this manner, disrupting treaties being negotiated by the Shi'ar, and launching attacks on ships and bases. Eventually, Black Bolt sought to free his people by challenging Ronan to a personal battle. If Ronan won, the Inhumans would continue to serve him. If the king won, the Inhumans would go free. After a terrible battle, Black Bolt won and Ronan, demonstrating that the Kree still had honor, kept his word and left the Inhumans.

    Exile of the Royal Family

    All was not over however, as the Inhumans were not willing to just follow Black Bolt back to Earth. Pressure had been building in the closed society of Attilan since open contact with the outside world had been made. During their enslavement by Ronan, the Inhumans had wished for their freedom, but had also developed a sense of pride in their power and a belief in their own destiny. They no longer believed that Black Bolt or the royal family was fit to lead them in the new life they wanted, and they exiled the royal family from Attilan. The royal family returned to Earth to find their destiny. After suffering bigotry and living in Latveria, they returned to Attilan which was located on the Blue Area of the Moon. The Inhumans are currently fostering better relations with Earth by sending students to a Wisconsin University.

    Son of M

    In the events of Son of M, Quicksilver stole the Terrigen Crystals in an attempt to give himself back his powers, and to give back the depowered mutants from M-Day their powers. The theft led to a conflict on Genosha between the repowered mutants (whose powers came back as too powerful for their own good, and eventually surrendered), the Inhumans, and the U.S. Office of National Emergency. The conflict ended with the O.N.E. confiscating the Terrigen crystals, to which Black Bolt then verbally declared war on the United States.

    Civil War

    During the Civil War, The Sentry went up to the moon to get away from it all. There he encountered the Inhumans. Nobody remembered their previous encounters but were intrigued by it. They allowed him to stay but in the end he left with Iron Man, leaving Crystal with questions about their time together.

    Secret Invasion

    In the Illuminati Black Bolt was discovered as a Skrull. It is believed that this Black Bolt was the same who fought an enraged Hulk (see: World War Hulk) and lost. After learning about Black Bolt's disappearance, Medusa confronts Iron Man who tells her that Black Bolt was kidnapped by Skrulls. This prompts Medusa to leave Iron Man and take the Skrull that was posing as Black Bolt and present the new Skrull invasion threat to the Inhuman Council. The Skrulls sprung their trap on the Inhumans and ravaged their city. Medusa acts and leads the Royal Family to steal the Skrulls spacecraft and leave Attilan to gain help from the Inhumans old master's, the Kree. Meanwhile on the ship that Black Bolt is held captive, they tell him that they captured him because they intend to use his voice as a weapon and obliterate Attilan.

    After Medusa makes a pact with Ronan the Accuser, they embark on a quest to find out where the Skrull ship is headed and must split up into three groups to do everything they have to simultaneously. Meanwhile, it is learned that Ahura, Black Bolt and Medusa's son, has also been taken captive by the Skrulls to use as leverage if Black Bolt does not do what they say. After the Inhumans complete their tasks, they prepare for an assault on the Skrull ship that has Black Bolt. As the fight begins, Black Bolt tells Ahura to go to Ry'bik (the Skrull scientist) and control his mind to let Black Bolt free. As this happens, Black Bolt kills Ry'bik and a Skrull female takes Ahura captive in attempt to bargain Black Bolt his life for hers. However Medusa kills her when she finds Black Bolt. The Royal Family return home and tell the Inhumans that they will return to their roots and go to the Kree who shall rule them. Eventually, the pact that Medusa made with Ronan turned out to be a marriage between Ronan and Medusa's younger sister Crystal.

    War of Kings

    As the Inhumans where now married into the Kree Empire after the wedding between Ronan the Accusar and Crystal of the Inhumans, the two fractions worked together more closely. Disaster however struck when X-Men villain Vulcan, whom had become the Emperor of the Shi'ar Empire, attacked the Kree Empire right after their wedding. A huge war broke out, eventually leading to a fight between Vulcan and Black Bolt, seemingly resulting in the death of both. After Black Bolt's death during his battle with Vulcan at the end of the War of Kings, Medusa took control of the monarchy and ruled in his place. Some months later, Black Bolt returned, having survived his encounter with Vulcan. It was then that Black Bolt joined the Illuminati once more, this time in accompany with his brother Maximus the Mad.

    Infinity and the new Inhuman

    Some months after the events of War of Kings, the Inhuman city of Attilan had been located above the Hudson river in New York City. It its there that they learned that Thanos the mad Titan was heading towards Earth in order to reclaim and kill his Inhuman son, not knowing where this son was and how he looked like.

    Universal Inhumans

    It was a long held Inhuman secret that the Kree experimented on not only the human race but four other species as well. Known as the Universal Inhumans, they all were created to reignite the evolution of the Kree race and implanted with a genetic memory that would unite them together. The memory claims that the five queens will join the one king who returns from the forever night and band together in a new holy land which will be known as New Hala.

    This one king happened to be Black bolt, who returned once again, to his people. Almost immediatly after his return, the Inhumans had to protect themselves against the Kree. With the help of their friends from Earth (and the sudden appearance of Celestials), they managed to survive the attack.

    Races

    Along with the humans of Earth, the Kree also experimented on the Alpha Centaurians, the Badoon, the Kymellians and the Dire Wraiths. All of whom are led by a queen.

    Catalysts

    Terrigenesis - exposure to the mist of the Terrigen Crystals. Created the Inhumans of Earth.

    Isogenesis - injection of the extract of the Isogen Orbs

    Amphogenesis - one drop of diluted water of the dormant Amphogen

    Antigenesis - eating the nectar of the Nightblooms of the Anitgen Tree

    Exogenesis - inhaling the Exogen Spice

    Powers and Abilities

    Even without using the Terrigen Mist, the Kree modifications, combined with centuries of selective breeding, have given all Inhumans certain advantages. Their average lifespan is 150 years and an Inhuman in good physical condition possesses strength, reaction time, speed, and endurance greater than the finest of human athletes. Karnak and other normal Inhumans who are in excellent physical shape can lift one ton and are physically slightly superior to the peak of normal human physical achievement. However, most Inhumans are used to living in a pollution-free, germ-free environment and have difficulty tolerating Earth's current level of air and water pollution for any length of time. Exposure to the Terrigen Mist can both enhance and in some cases reduce these physical capabilities.

    Inhuman Royal Family (Earth):

    Black Bolt: King of the Inhumans.

    Medusa: Queen of the Inhumans.

    Crystal: Medusa's Sister.

    Gorgon:Cousin of Medusa and Black Bolt.

    Karnak: Cousin of Black Bolt.

    Luna: Daughter of Crystal and Quicksilver.

    Lockjaw: Transporter of the family.

    Triton: Cousin of Black Bolt and Brother to Karnak.

    Alternate Realities:

    Earth-295 - Age of apocalypse

    \"Age
    Age of apocalypse

    The entire family were killed by Maximus, who was become Death the most vicious Horseman of Apocalypse, later he used their bodies to create a loyal force of Inhumans beings altered by the Terrigen Mists. The team not only includes the royal family besides other humans were converted (for instance Rhino).

    They confronted Magneto's X-Men at the blue area of the moon and were victorious, nevertheless Cyclops released Sunfire causing the entire destruction of the ship, which supposedly kill them.

    Roster: Death (aka Maximus), Black Bolt, Medusa, Lockjaw, Rhino, Triton, Crystal, Gorgon and Karnak.

    Earth-691 - War of the Worlds

    In this reality, the Inhumans were betrayed by a member of the Royal Family that was not an Inhuman (believed to be Luna) and were made slaves, forced to live in a reservation underneath Attilan. This information was given to Black Bolt and Medusa in the past by Talon, but it seemingly had no effect on his future.

    The Inhumans would become part of an experiment by Loki in selective breeding. He would make them work and toil, breeding the best with the best and forcing them to battle one another to chose the strongest. In the end, he made his choices and invaded Asgard with them. He was defeated by Woden and the Guardians of the Galaxy.

    The Inhumans would not be free long and would be enslaved by Rancor and her renegade mutants immediately after Loki's defeat.

    Earth-1610 - Ultimate Inhumans

    The Inhumans made their debut in the Ultimate Marvel Universe during the Ultimate Fantastic Four issue Annual 1: Inhuman. It begins with two mountain climbers reached the walls of their city, Atillan, in the Himalayas when they are turned back with their memories erased. The Inhumans made themselves known to the Fantastic Four when a member of their royalty, Crystal, fled to New York after being ordered to marry Black Bolt's brother. Johnny came across Crystal and attempted to save her from two royal guards from Atillan who were trying to capture her. Beaten, Crystal took him back to the Baxter Building, and revealed herself to the Fantastic Four. She left her dog behind, who had the ability to teleport, which the Fantastic Four used to enter Atillan. Once their presence was discovered, the city was stripped of its advanced technology and destroyed by Black Bolt, and the Inhumans, including Crystal, relocated. They are hinted to have relocated to the moon.

    The Ultimate Attilan is quite different in appearance from the MU version, like a giant wasp's nest crossed with a Gothic cathedral. Ultimate Crystal, Lockjaw and Black Bolt are similar to their counterparts; Medusa is depicted as having actual snakes for hair, like her mythical namesake. Gorgon is female, Karnak projects energy blasts (though he can still sense weaknesses and pressure points), Triton has a more squid-like appearance, and Maximus is a somewhat effete courtier, whom Crystal describes as \"preening\" and a \"peacock\". Other Inhumans shown include Tri-Clops with clairvoyant vision (including the power to see the invisible), Densitor (Maximus' flunky, who can presumably increase his strength, durability and mass, enough to become fireproof) and an unnamed Inhuman who can produce a swarm of insect-like flying creatures from his body.

    They claimed that their city had remained secret for 10,000 years, which makes their ancestors contemporaries with Ultimate Marvel Atlantis. After the freeing of Namor by the Fantastic Four it is discovered that Atlantis and the Inhumans had been at war for thousands of years, and it was the Inhumans that finally sank Atlantis.

    Earth-9997 - Earth X

    The Royal Family consisting of Black Bolt, Medusa, Gorgon, Karnak, Luna, and Triton, left the solar system to go and find where they came from. Upon finding the planet they found out that vibranium destroyed it. They also found the Eternals covered in vibranium and couldn't get out. The came back to Earth to find Ahura who is going to be Luna's husband. When they came they wanted to find all Inhumans that was left on Earth. So they found Mr. fantastic and asked him if eh knew a way. He reconfigured Cerebro to find Inhumans and found out that all the people on Earth were Inhumans. Medusa thought about this and told Mr. Fantastic what happened. A while ago Maximus built a machine that would release the Terrigen Mists into Earth's atmosphere mutating the humans on birth. The Royal Family stopped him but at the loss of Lockjaw. Medusa figured it couldn't be Maximus since he was dead when people first started changing. It was Black Bolt, when he and the rest of the Royal Family left he didn't want the Inhumans to be discriminated against so he turned all of Earth into Inhumans. They used the fork on Lockjaw to teleport places.

    Earth-? - Millennial Visions

    \"Millennial
    Millennial Visions One

    In this reality, Magneto confronted the Inhumans and tried to make them part of his empire. After confronting the Royal Family and being denied their support, Magneto is launched into a pitched battle with the Royals, resulting in the loss of his helmet. He attacks the Inhuman children in the mists room, only to have them stolen from him. Releasing the Mists into the castle itself, Magneto escapes, but Karnak orders the Castle to be encompassed in a large bubble, and sunk beneath the ocean waves. The Inhumans within the castle, and the bubble mutate further, with Medusa becoming aquatic, and having to live outside in the ocean itself.

    In this world, the Inhumans were the Ultimate Cosmic weaponry. The Kree had originally designed the Inhumans to evolve into Galactus level threats, eating and destroying the Kree's enemies

    on a planetary level. However, when the Royal family chose to embrace their evolution, their first target was the Kree Homeworld. In a last ditch effort, the Kree called to Galactus for help. Galactus sought out and waged war on the Inhumans, with a final battle between Black Bolt and the Devourer of Worlds. In the final battle, as Black Bolt screamed \"Die.\" it eradicated the two gods and tore a rift in space itself.

    \"Millennial
    Millennial Visions Two

    As Space was ripped apart, the remaining Inhumans used their powers to try and contain the destruction of the nearby universe, but it became glaringly obvious they were only delaying the unavoidable. That was until Black bolts voice spoke to Medusa and told her and the other Inhumans to open their minds to him. Using their powers in concert, the Inhumans were able to stem the rift, but in doing so, they have damned themselves to wander and protect the same part of the Universe, never straying too far from the rift to prevent it's power from wreaking havoc, or falling into the wrong hands.

    Other Media

    Television (Animated)

    Fantastic Four (1978)

    \"No

    The Inhumans appear in the episode \"Medusa and the Inhumans,\" where they seek to take over the world. The episode is notable for having Medusa be the leader of the Inhumans rather than Black Bolt, and for depicting the Inhumans in a more overtly antagonistic manner than the comics usually do.

    Fantastic Four (1994)

    \"No

    The Inhumans initially appear in the three-part \"Inhumans Saga\" storyline before appearing in a running subplot throughout the show's second season. The storyline retells their earliest appearance from the comics, with the Fantastic Four coming into contact with the Inhumans following a clash with an amnesiac Medusa. From there it is revealed that Maximus has engineered a coup in Attilan, leading to a clash that ends with him trapping the city in a force field. They are eventually freed when Black Bolt shatters the barrier.

    Hulk and the Agents of S.M.A.S.H.

    \"No

    The Inhumans appear in the episode \"Inhuman Nature,\" which loosely adapts parts of their first appearance. In this version of the story, Maximus has manipulated the other Inhumans into believing humans are evil, while the Hulk and his allies attempt to convince them that both races can live together and learn from one another. The show also has A-Bomb be the one to develop a star-crossed romance with Crystal, rather than Johnny Storm. Some of the Inhumans return in the series finale to help the heroes battle the forces of the Supreme Intelligence.

    Ultimate Spider-Man

    The Inhumans appear in the episode \"Inhumanity.\" In it, the Inhumans are poised to engage in a war with S.H.I.E.L.D. after Maximus brainwashes the other members of the royal family. After Spider-Man and Triton resolve the situation, Nick Fury makes Triton the ambassador of his people and invites him to join the S.H.I.E.L.D. Academy.

    Guardians of the Galaxy

    \"No

    The Inhumans appear in the episode \"Crystal Blue Persuasion.\" In it, the Guardians of the Galaxy are brought to Attilan (which is in space in this series) after the populace are stricken with a Terrigen Plague. The Guardians help save the Inhumans and prevent Ronan the Accuser from destroying Attilan.

    Avengers Assemble

    \"No

    The Inhumans appear as recurring characters in the third season in a major role. In the episode \"Inhumans Among Us,\" it is revealed that a certain section of the human population carry dormant Inhuman genes, which could potentially be activated if they were exposed to the Terrigen Mists. In \"The Inhuman Condition,\" it is revealed that Seeker is working with Ultron to conquer Attilan. Ultron seeks to use one of Seeker's inventions to exterminate mankind, but Black Widow thwarts his plan by throwing a Terrigen crystal into the device. This causes the Terrigen Mists to spread across the globe, awakening many new Inhumans across the planet.

    During the \"Civil War\" arc, Truman Marsh enacts a governmental Inhuman Registration Act, which forces all Inhumans to have Registration Disks placed on them. This divides the heroes of Earth, who come down on opposing sides as to whether or not this is just. It eventually turns out that Marsh was actually Ultron in disguise, and that the disks were actually a means for him to control all Inhumans. The Avengers are ultimately able to free the Inhumans and destroy Ultron.

    Television (Marvel Cinematic Universe)

    Agents of S.H.I.E.L.D.

    \"No

    Inhumans are featured prominently in the show's second season, where it is revealed that Daisy Johnson, one of the main characters, is half-Inhuman. The season opens with the members of S.H.I.E.L.D. battling agents of HYDRA for possession of a mysterious obelisk, which later turns out to be Kree in origin. The agents eventually discover an abandoned Inhuman city underneath San Juan, Puerto Rico, where the obelisk opens to reveal a Terrigen crystal inside. The crystal causes both Daisy and Raina to undergo Terrigenesis.

    In the latter half of the season, the agents encounter a Kree warrior named Vin-Tak, who reveals the origin of the Inhumans. It turns out that many years ago, Kree scientists conducted experiments on Earth to turn humans into living weapons, and the resulting survivors became the first Inhumans. A hidden Inhuman haven called Afterlife is also introduced, with the location run by Jiaying, Daisy's mother. In the season finale, Jiaying declares war on mankind and attempts to kill them by using Terrigen crystals (which are fatal to humans not descended from Inhumans), but is ultimately stopped. However, some submerged crystals introduce Terrigen into the ecosystem, spreading it across the globe.

    The show's third season deals with the resultant boom of new Inhumans cropping up around the planet as the result of the Terrigen spreading. Daisy leads a team of Inhuman operatives dubbed the Secret Warriors, while hate groups like the Watchdogs seek to wipe out all Inhumans. The agents must also contend with Lash, a mysterious Inhuman who is hunting down and killing the newly awakened members of his own species, and Hive, an ancient Inhuman who seeks to conquer the planet.

    In the fourth season, Inhumans are now forced to register with the government after the events of Captain America: Civil War.

    The Inhumans

    \"No

    In 2017, it was announced that the Inhumans would star in their own live-action TV series, set in the same continuity as Agents of S.H.I.E.L.D. and the other entries in the MCU. The series introduces Attilan and the Inhuman royal family into the MCU continuity, and features the family fleeing to the United States after a coup. The show stars Anson Mount as Black Bolt, Serinda Swan as Medusa, Isabelle Cornish as Crystal, Iwan Rheon as Maximus, Ken Leung as Karnak, Eme Ikwuakor as Gorgon and Mike Moh as Triton.

    Video Games

    \"Ultimate
    Ultimate Alliance
    • The Inhumans and their lunar city of Attilan are featured in Marvel Ultimate Alliance, though the Inhumans themselves are not playable characters. The offer the heroes refuge after Doctor Doom steals Odin's power and conquers the Earth.
    • The Inhumans appear in Marvel Avengers Alliance.
    • The Inhumans appear in Marvel Future Fight.

    Merchandise

    \"Inhumans
    Inhumans box set
    • Several of the Inhumans were featured in Toy Biz's Fantastic Four line in the 90's.
    • Studios such as Bowen have done statues and busts of the various Inhumans.
    • Hasbro released a special Inhumans box set featuring Black Bolt, Medusa and Karnak for the Marvel Universe line.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8163/","id":8163,"name":"The Gentleman's Name is...Gorgon!","issue_number":"44"},"id":11427,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/5967230-inhumans.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/5967230-inhumans.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/5967230-inhumans.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/5967230-inhumans.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/5967230-inhumans.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/5967230-inhumans.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/5967230-inhumans.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/5967230-inhumans.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/5967230-inhumans.jpg","image_tags":"All Images,Earth-616 Inhumans"},"name":"Inhumans","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/inhumans/4060-11427/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11439/","count_of_isssue_appearances":0,"count_of_team_members":45,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-12-30 21:37:29","deck":"Introduced as the nemesis to the Fantastic Four, the rotation has constantly changed but features the Wizard as its leader. Its current roster consists of the Wizard, Bulldozer (Marci Camp), Thunderball and Wrecker.","description":"

    Origin

    \"No

    Driven by a desire to prove himself as Mr. Fantastic's superior, the Wizard created the Frightful Four with the ultimate intent of defeating and humiliating the Fantastic Four. The team is initially formed in Fantastic Four #36 (1965) when Sandman and Paste Pot Pete (Trapster) are jointly escaping from prison and meet the Human Torch, who defeated them. Seeking to become an exact evil counterpart to the Fantastic Four, the Wizard needs a suitable female. He says that he knows of such a woman and that they will meet again in a few weeks. At their next meeting, an anxious Paste Pot Pete asks the Wizard if he has found a female whose power can match that of Susan Storm. The Wizard tells him that the female he has been considering might be even more powerful. Hence, they recruit a fourth member, the amnesic and inhuman Medusa, and attack the Fantastic Four at Reed and Sue's engagement party. First Paste-Pot Pete and the Wizard defeat the Thing. Then the Wizard, Sandman and Paste-Pot Pete smash Mr. Fantastic, while Madam Medusa defeats the Invisible Girl. Alicia Masters also gets captured and she, along with the three defeated Fantastic Four members, have anti-gravity discs attached to them and they float up into the atmosphere toward almost certain death, in a truly magnificent suspenseful criminal plan that reminds one of the cliffhanger serials from the 1930's and 1940's. However, unknown to the Frightful Four, Alicia Masters signals the Torch before she gets captured, as she finds an unconscious Sue Storm on the floor. Johnny Storm soon comes and captures the Wizard. This allows the Fantastic Four to barely snatch victory from the Frightful Four.

    Their second encounter comes two issues later in Fantastic Four #38, \"Defeated by the Frightful Four\". Here Medusa is primarily responsible for the abduction of the Invisible Girl and the evil FF take Susan Storm to a deserted Pacific atoll and lay her in an underground chamber next to a Q-bomb, a powerful nuclear device. The three male members of the Fantastic Four soon follow, in an attempt to rescue their captive partner. A fight allows the Frightful Four to escape, but leaves the Fantastic Four trapped on the island. While they end up surviving the blast, their powers are now gone. Hence, this is the first defeat for the Fantastic Four at the end of an issue.

    The third battle between the evil FF and the Fantastic Four takes place in the first Fantastic Four trilogy storyline in Fantastic Four #41-#43. Here the Wizard uses his I.D. machine to brainwash the Thing and this causes him to join the Frightful Four. This brilliant act allows the Frightful Four to defeat the Fantastic Four for a second time at the end of an issue in FF #41. However, Mr. Fantastic and Sue escape in FF #42 with the Thing and Mr. Fantastic breaks the Wizard's hold on Ben Grimm in FF #43 and this allows the Fantastic Four to eventually defeat their counterparts. The end of FF #43 has Medusa escaping, but her three male partners are arrested.

    Though Sandman and the Wizard have solo battles against the FF over the next few years, the Frightful Four do not fight the Fantastic Four as a unit Fantastic Four #94. The three male members of the Frightful Four ambush the Fantastic Four and defeat them, along with the traitorous Madam Medusa. This happens at the mansion of the witch, Agatha Harkness. Unfortunately for the Frightful Four, Agatha Harkness and her black cat, Ebony, come to the rescue of the fallen Fantastic Four and easily defeat the Frightful Four (really Frightful Three at this point).

    By the time the Frightful Four decide to make another attempt at destroying the Fantastic Four, Medusa is no longer a viable as she has completely reformed. As a replacement, the Wizard recruits Thundra in Fantastic Four #129-#130. Yet again the Frightful Four temporarily defeat the Fantastic Four. However, before they can secure a permanent victory and finish the FF off, toddler Franklin Richards uses his powers for the first time, as he wakes up the Thing. A big fight soon follows and the Frightful Four lose yet again. As for Thundra, she proves to have no loyalty for this team as she eventually becomes attracted to the Thing and opposes the Frightful Four.

    A rather weak Frightful Four story occurs in Fantastic Four #148, but a much better one develops in issue #177. Here the three male members of the Frightful Four defeat the Fantastic Four. Wizard then creates traps for the Fantastic Four members and each trap is designed to specifically negate his/her power. Wizard announces that he wants the Fantastic Four to remain alive, so they can watch the tryouts for a new fourth member of the Frightful Four.

    They continue to plague the Fantastic Four, with different assortments of villains every time.

    Creation

    The Frightful Four was created by Stan Lee and Jack Kirby.

    Team Evolution

    Following the defeat of the original team, the Wizard reforms the Frightful Four. Medusa soon deserts them after regaining her memories leaving the Wizard to make several attempts to create a fourth member for the Team. This lead to the recruitment of: Blastaar, using a mind-controlled Spider-Man, Thundra, the Brute (an alternate Reed Richards from Counter-Earth), and then Electro when Spider-man had become a member of the Fantastic Four for a brief time and then later, Llyra, who took over the group and forced them to attack the Sub-Mariner for her.

    After the Sandman is merged with fellow Spider-Man rogue, Hydro-man, his mind starts to take on a more heroic theme and he joins Silver Sable's Wild Pack and turns his back on the Wizard. The Wizard decides to form an all-new group with the Constrictor, Deadpool, and the Taskmaster, but they are bested easily by the Thing and Franklin Richards. Wizard next teams with the Trapster, the Man-Bull, and Dreadknight, and they try to make off with money from a rodeo, but they are defeated by the Turbine, Spider-Man, and the Rangers on a test run in Canada. Following this huge defeat, the Wizard disbands the Frightful Four for a long time, but following the return of the Fantastic Four from Counter-Earth, he reforms the Frightful Four using the Trapster, The Punisher robot and the She-Thing (failing to recruit the Sandman who the Wizard and used his mind devices to turn back to his criminals way) and attacks Wyatt Wingfoot's Keewazi reservation. When the heroic Fantastic Four seem to be led by Dr. Doom (actually Reed trapped in Doom's armor), Wizard surrenders rather than risk Doom's wrath.

    \"No

    The Wizard's next team is a dysfunctional echo of the Fantastic Four's family structure; including the Wizard's half-dragon, ex-wife Salamandra, and their mass-shifting daughter Cole; as well as Hydro-Man and the Trapster. Wanting to humble the Fantastic Four on equal terms, the Wizard \"traps\" the Trapster into a time-loop after he threatens Cole, reducing his team's ranks from five to four. With the rebellious Cole's aid, the Fantastic Four invade the Wizard's underground headquarters and defeat the Frightful Four, though the team escapes and remains at large.

    \"No

    The Frightful Four reappears in Fantastic Four #547 with Wizard, Hydro-Man, and Trapster, being joined by Titania as their female member, and they capture the Invisible Woman on Saturn's moon of Titan. This becomes the third time in the Frightful Four's history that they have made a captive of Susan Storm. (The other two being Fantastic Four #38 in May 1965 and FF:The World's Greatest Comic Magazine #9.), Wizard plants a listening device on Mister Fantastic's FTL (his latest spaceship) and a bomb. The Fantastic Four watch from Earth, as Wizard goads Mr. Fantastic by saying \"I'm about to kill your wife! Come and get me, if you can\". As they attempt to rocket to her aid in the FTL, the bomb explodes, leaving one of the best Fantastic Four cliffhanger endings ever at the end of issue #547. The next issue, Fantastic Four #548, shows Wizard beating a helpless Invisible Woman quite badly, as Wizard has created a trap which nullifies the blonde girl's powers. Wizard tries to force Susan Storm to admit that Wizard is superior to Mr. Fantastic, but she refuses to acknowledge such. Titania insists that they should kill Susan Storm, but the Wizard disagrees with her. By the end of #548, Wizard recreates Klaw to form his version of the Frightful Five to battle the Thing, Human Torch, Storm and Black Panther who had replaced Reed and Susan on the team for a time. It turns out though that the bomb aboard the Mr. Fantastic's ship is contained by the Invisible Woman. She is freed in issue #549 and then attacks the Wizard within an inch of his life as he asks for mercy.

    The Wizard rejoins the Intellgencia and decides to rebuild his Frightful Four in Hulk #19 (2010), but this time recruits Klaw and the Trapster (who has freed himself at this point) and the Savage She-Hulk to infiltrate the Baxter Building and kidnap Reed Richards. Savage She-Hulk and Trapster keep the Human Torch and the Thing occupied. Klaw brilliantly defeats the Invisible Woman by imitating the sounds of her children being in danger and Wizard smashes Mr. Fantastic like he never has done before. Wizard wraps Reed Richards' body six times around the Baxter Building, until Mr. Fantastic apparently loses control of his bodily functions. Wizard then flees with the defeated Mr. Fantastic. However, his team is later defeated by both Bruce Banner and the Red Hulk. The Wizard eventually escapes, but is captured by both She-Hulks, before he is freed by the Future Foundation to fight in the War of the Four Cities. Following the end of the war, the Wizard returns to the Intellgencia and brings back the Trapster and Klaw, but does not know that Klaw is really the Chameleon in disguise as part of Dr. Octopus master plan. The Wizard is currently trying to find a replacement for both Klaw and his female member.

    The Wizard attacks the FF in Fantastic Four issues 003 and 004 (2014) as part of the Fall of the Fantastic Four arc. He now has three new members in his Frightful Four: Thunderball, Wrecker and a new Bulldozer, Marci Camp, daughter of Henry Camp, the original Bulldozer. This attack has been organized by some secret genius, but Wizard refuses to reveal the name.

    Story Arcs

    World War Hulks

    Heroes Return

    Alternate Versions

    Earth-2149

    On Earth-2149 the original Fantastic Four were turned into zombies. They became known as the Frightful Four in Earth-1610 - the Ultimate universe.

    Earth-98

    In this reality the members were: Wizard, Blastaar, Quicksand and the Hooded Haunt.

    Other Media

    \"Fantastic
    Fantastic Four: World's Greatest Heroes

    The Frightful Four appeared in the mid 1990's Fantastic Four Animated Series. The team consisted of Wizard, Medusa, Trapster and Hydro-Man.

    The Frightful Four appeared in Fantastic Four: World's Greatest Heroes. The team consisted of Klaw, Wizard, Trapster and Dragon Man.

    \"Frightful
    Frightful Four In Ultimate Spider-Man

    The Frightful Four appeared in Ultimate Spider-Man, with a line-up consisting of Klaw, Thundra, Trapster and Wizard. They were hired by Doctor Octopus to capture Spider-Man, but were defeated when Power Man, White Tiger, Nova and Iron Fist joined in to assist the hero.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7667/","id":7667,"name":"The Frightful Four","issue_number":"36"},"id":11439,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/7/79709/2236188-2236183-ff1_fanfour50th_variant.jpg","image_tags":"All Images,Frightful Four"},"name":"Frightful Four","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/frightful-four/4060-11439/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11482/","count_of_isssue_appearances":0,"count_of_team_members":12,"date_added":"2008-06-06 11:27:46","date_last_updated":"2022-04-17 03:22:01","deck":"The O-Force was a celebrity mutant group, whose exploits where made into a reality series. They where the counterpart to the X-statix team, untill many members died during a mission.","description":"

    Origin of the Team

    The team was said to be created for a reality television show where mutants compete for a place in the O-Force team. Three of the trainees Oracle, Oink, and Orifice were only pictured in a single panel and did not later appear with the team because they din't make the team.

    The O-Force television show airs with the mutants being Overkill, Orchid, Optoman, and Ozone. They compete in a fight onscreen, with Optoman taking the brunt of it. Later, as the team is assembled a video is shown across the nation of a practice mission. O-Force's first mission is to rescue a group of actors from a mansion filled with gunmen. X-Statix does not believe the mission is anything more then a set-up to make the actors and O-Force look good. This is confirmed by the thought bubbles of Solomon O'Sullivan, O-Force's agent. Then gunmen who threaten the actors then are later slaughtered to a man, wear the same uniform as the ones who killed many members of X-Statix-Force before.

    It is announced on television that O-Force's next mission will be to take back a small town from the control of a reality-altering mutant named Arnie Lundberg. As Solomon briefs his tea, the Orphan breaks in tries to warn them. He is attacked and beaten by the team. They decided to go anyway.

    The initial attack goes badly. An army of the undead, raised by Arnie, attacks the team. Ocean's legs are blown off. She begs Overkill for help but he abandons her. The Orphan parachutes in and saves Ocean. The rest of X-Statix quickly arrive as backup, thus saving the lives of O-Force. Arnie Lundberg is convinced to use his powers for good and heals Ocean's legs and the team is carted off by the ambulances.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-78000/","id":78000,"name":"Good Omens Part One: Eddie Sawyer Saved My Life","issue_number":"1"},"id":11482,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/267578-47474-o-force.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/267578-47474-o-force.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/267578-47474-o-force.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/267578-47474-o-force.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/267578-47474-o-force.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/267578-47474-o-force.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/267578-47474-o-force.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/267578-47474-o-force.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/267578-47474-o-force.jpg","image_tags":"All Images,gallery"},"name":"O-Force","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/o-force/4060-11482/"},{"aliases":"X-Force\r\nNew X-Force\r\nX-Division\r\nX-Foliates\r\nX-Heroes\r\nX-Men\r\nX-Squad\r\nX-Statix Inc.\r\nX-Storm\r\nX-$#@#%$","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11485/","count_of_isssue_appearances":0,"count_of_team_members":27,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-06-28 00:35:28","deck":"The X-Statix were a group of mutant heroes whose main goal was to achieve fame and fortune.","description":"

    Origin

    A group of mutants labeling themselves as X-Force, decide to capitalize on the popularity of superheroes and the publics obsession with them by pushing themselves and aiming to be famous superhero celebrities. Later on the team change their name from X-Force to X-Statix.

    Creation

    A Marvel comics team, X-Statix were created by writer Peter Milligan and artist Mike Allred and first appeared (as X-Force) in X-Force issue 116 (2001). They became X-Statix in issue 129 of X-Force.

    Team Evolution

    X-Statix started out as the second X-Force team, but changed it's name to X-Statix when core member U-Go Girl died in the line of battle. Her last wish was to rename the team to X-Statix, and so they did. (It also meant a title change in 2002 with a new #1, continuing the story with characters from the previous X-Force). The comic was a humorous take on fame, celebrity and comic standards including \"comic book deaths\" which were rampant in the book. There was also the Princess Diana Controversy. X-Statix #13 was to feature the returned of famed figure, Princess Diana, as a mutant that had returned from the dead. Word got out to the media and Marvel dealt with the backlash by altering the character. She became a fictional pop-star Henrietta Hunter along with cosmetic alterations to keep likeness away from Princess Diana. Team consisted of Doop, Dead Girl, U-Go Girl, Lacuna, Gin Genie, Vivisector, the Coach, Zeitgeist, La Nuit, Battering Ram, Plazm, Mister Sensitive, Phat.

    Major Story Arcs

    High Turnover

    Since the creation of the team (initially as X-Force) to the final mission, there was a big high turnover of members, with many deaths and many replacements. In the final mission, the team was entirely killed.

    The Return

    X-Statix was recently reformed, including veteran resurrected members and new members. They find a new team of enemies called the X-Cellent, created by former member Zeitgeist.

    Many members and former members were seen in mutant-only nation Krakoa.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-64586/","id":64586,"name":"Exit Wounds","issue_number":"116"},"id":11485,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2498465-ohotmu_teams__1___page_49.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2498465-ohotmu_teams__1___page_49.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2498465-ohotmu_teams__1___page_49.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2498465-ohotmu_teams__1___page_49.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2498465-ohotmu_teams__1___page_49.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2498465-ohotmu_teams__1___page_49.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2498465-ohotmu_teams__1___page_49.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2498465-ohotmu_teams__1___page_49.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2498465-ohotmu_teams__1___page_49.jpg","image_tags":"All Images,X-Statix"},"name":"X-Statix","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/x-statix/4060-11485/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11523/","count_of_isssue_appearances":0,"count_of_team_members":36,"date_added":"2008-06-06 11:27:47","date_last_updated":"2016-07-02 22:45:31","deck":"The Watchers are some of the oldest beings in the universe. They remain perched throughout the universe using their advanced technology to record all events without interfering.","description":"

    Overview

    The Watchers are powerful beings. They possess incredible technology and believed that it was their duty to protect the universe from harm. The Watchers gave nuclear technology to another race of aliens called Prosilicans but they used the nuclear technology for war. The Watchers were very disappointed and vowed that they would never interfere with any events and to just observe and record.

    The Watchers often came into conflict with the Celestials because of their different way of judgment. The Celestials believed that if the race couldn't keep up with their genetic standards, they would use force to seal the planet and give the good people a chance to reform. The Watchers believed in just observing and recording and not just kill an entire race because they didn't reach the Celestial's standards.

    It has been observed that the Watchers enter a state of consciousness (fugue) in which they appear to be uploading memories to their collective, and at that time are not observing and are unaware of their surroundings. This happens every three years for exactly 42 minutes. It has also been stated that some believe the Watchers to be infinite aspects of a single, powerful entity (although this contradicts the concepts of rogue Watchers and last of the Watchers, which has often been used in other stories).

    Alternate Realities

    Earh-691

    In this reality, the cruel Hawk-God committed genocide on the Watchers, leaving only one named Uilig alive. Uilig was able to get the cosmic beings to punish the Hawk-God for his crime.

    Other Media

    Silver Surfer (1998)

    In the Silver Surfer animated series, Uatu is the last of the Watchers. Originally, the Watchers observed and collected information on their home planet, which would eventually be renamed the Universal Library, with all the information they had collected. Disobeying their vows, the Watchers created a miracle cure that saved billions, but in the process it caused them all to become the Virals, organisms with primitive appearances by enhanced minds that connected all of them into a single consciousness.

    Being the last of his kind, Uatu felt responsible for them and returned to them with new knowledge when he could.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6463/","id":6463,"name":"The Red Ghost and his Indescribable Super-Apes!","issue_number":"13"},"id":11523,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3334736-watchers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3334736-watchers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3334736-watchers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3334736-watchers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3334736-watchers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3334736-watchers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3334736-watchers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3334736-watchers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3334736-watchers.jpg","image_tags":"All Images"},"name":"The Watchers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-watchers/4060-11523/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11879/","count_of_isssue_appearances":0,"count_of_team_members":35,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-11 17:47:00","deck":"Mercenaries working for Silver Sable","description":"

    Brief History

    There has been two groups known as Wild Pack. The first was hired by Silver Sable, and the second was assembled by Cable. The latter changed their name to the Six Pack due to Silver Sable already having the name.

    Silver Sable hired a rag-tag team of mercenaries to complete different missions.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-25574/","id":25574,"name":"After the Fox","issue_number":"265"},"id":11879,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8126567-amazing_spider-man_vol_5_69_textless.jpg","image_tags":"All Images"},"name":"Wild Pack","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/wild-pack/4060-11879/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-11896/","count_of_isssue_appearances":0,"count_of_team_members":45,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-06-22 06:44:48","deck":"A team of superpowered teens originally formed by Night Thrasher until they inadvertently started the Civil War. Ever since, they would go through multiple temporary incarnations but could never consistently stay together. ","description":"

    Origin

    \"No

    Night Thrasher had originally gathered Nova, Marvel Boy (Vance Astrovik) and Firestar as a team, after being encouraged to do so by his legal guardians Chord and Tai. After they had gathered they heard about Terrax rampaging through a local park. They then went to fight him, and found Namorita and Speedball had joined the battle. Beating Terrax together, the five heroes unknowingly were on the way to creating something great. After this, they decided to stay together as a team. They called themselves the New Warriors, after a news report that Speedball had heard about the team.

    Creation

    The New Warriors first appeared on the last page of The Mighty Thor issue 411 and fully in The Mighty Thor issue 412, where the team fought Juggernaut alongside Thor. The team were conceived by the Thor creative team at the time, writer Tom DeFalco and artist Ron Frenz. They would later go on to star in their own series, written by Fabian Nicieza with art by Mark Bagley.

    Team Evolution

    \"No

    Night Thrasher, using his vast wealth, formed the supergroup The New Warriors, recruiting other superheroes; Nova, Namorita, Firestar, Marvel Boy, Speedball.

    The roster changed frequently, many members coming and going, including; Timeslip, Turbo, Dagger and Alex Power. Namorita eventually became the leader of the team after Night Thrasher leaves.

    Running low on money, Night Thrasher accepts an offer to include the team in a reality tv show. This team is comprised of old members, Nova, Namorita, Speedball along with newcomers, Microbe and Debrii. The concept of the show sees the team battling various villains, ultimately leading into the events of Civil War and killing all the members except Nova (due to the events of Annihilation) and Speedball.

    After the seeming death of his brother Night Thrasher before the events of Civil War, Donyell Taylor took over his mantle and formed a new team under the name New Warriors. This team was mostly made up on former mutants whose powers were lost after the Decimation, including: Wondra (Jubilee), Decibel (Chamber), Blackwing (Beak), Tempest (Angel Salvadore), Phaser (Radian), Skybolt (Redneck), Ripcord (Stacy X) and Renascence (Wind Dancer). The team also included Longstrike (formerly known as Tattoo and sister to Phaser), until she was killed by the Zodiac's Cancer.

    The Initiative team Counter-Force eventually renamed themselves as the New Warriors, after already being comprised of former members of the previous teams. They fought Ragnarok in Camp Hammond when they used the team's name for the first time, and, quoting Rage, the name \"New Warriors\" is something they are proud of, something they wanted to take back. Led by Justice originally as part of the Initiative, other members included: Night Thrasher, Debrii, Rage, Michael (killed in their first battle), Patrick, Slapstick and Ultragirl.

    Justice and Speedball would retain the name and use it occasionally when they needed to. On one occasion, they fell in with a collection of heroes targeted by the High Evolutionary. They set up shop in a teleporting Wundagore Mountain. When they both started working for CRADLE after Kamala's Law was enacted, it was planned for them to start a new team of New Warriors consisting of their old teammates sponsoring new underage heroes. However, due to the global COVID-19 pandemic, the associated event, Outlawed, was delayed, and the tie-in New Warriors book has yet to be put back on the schedule. It is presumably canceled.

    Major Story Arcs

    Forming a Team

    \"No

    During the team's first adventure against Terrax, they had been aided by a scientist from a company called Genetech. Genetech became interested in the New Warriors, and were inspired by them to create super powered humans. After sending the Mad Thinker to investigate the New Warriors, Genetech proceeded with their plans. The people that they gave powers to were named Psionex, and became some of the New Warriors' deadliest foes.

    They also had a run-in with Night Thrasher’s old team. It consisted of sibling duo, Midnight’s Fire and Silhouette. They were baiting local gangs and cracking down on the ones that fell for it. One night, when a beat cop got involved, Silhouette was shot and paralyzed. Midnight’s Fire blamed Thrasher and, in his anger, took over a neighborhood as a local kingpin.

    The team starts to gel while in the Amazon searching for Speedball’s mom, who fell in with a group of eco-terrorists. However, Thrash is rattled when he finds out the Taylor Foundation, the charity that had been backing him, was a front for illegal activity. This activity could be traced back to the External, Gideon, and The Hand. In the wake of this information, Thrash quit and Chord was in critical condition after a suicide attempt.

    Nothing But the Truth

    \"Warriors
    Warriors in Tai's clutches

    Recovering from his wounds at home, Vance had to contend with his mutant hating father. After an especially aggressive confrontation, Vance accidentally killed his father with his telekinesis and is now standing trial.

    Meanwhile, the team is reunited with Silhouette, who needs their help investigating the secrets of the Taylor Foundation. Sil reveals Chord is her father, and from his hospital bed, he sends the team to Cambodia where Thrash already is. He had joined up with the Folding Circle, Midnight’s Fire’s new team, and was being targeted by Tai. Before they go, they bolster their ranks with Darkhawk and Rage, who helps them steal an Avengers quinjet.

    \"Vance
    Vance takes responsibility

    The team tracks Thrash to the Temple of the Dragon’s Breadth, where Tai revealed that the members of the Folding Circle were the result of a deal she made with American soldiers during the Vietnam War. She offered wives to the soldiers in exchange for warrior sons to be used as sacrifices to the Well of All Things. She tricked Thrash into creating the Warriors as a backup plan, by killing his parents and starting his war on crime. The Warriors and The Folding Circle team up to take her down, ending with Thrash sacrificing her to the Well to fulfill his vengeance.

    Back in the US, Vance was found guilty of negligent homicide and taken into custody. The Warriors tried to free him from his prison transport, but he refused their help. Instead, Vance wanted to take responsibility for his crimes.

    Poison Memories

    \"Warriors
    Warriors give themselves up

    Kimieko Ashu, a rival of Night Thrasher and leader of the Poison Memories gang, targeted Namorita at a nightclub and engaged in a one-night stand with her. While sneaking out in the morning, he stole her address book including the real identities and contact information of the New Warriors. His big plan to get revenge on Thrash was to torture his old team, and his plan to do that was to target their loved ones.

    The Poison Memories blew up Rage’s grandmother’s house and shot Firestar’s dad. They also kidnapped Nova’s brother and Speedball’s dad. With the kidnapped as leverage, The Poison Memories demanded the Warriors to give themselves up. All but Rage did. Meanwhile, Speedball’s friend, Carl, who recently tried joining the Warriors as Hindsight Lad, contacted estranged member, Night Thrasher, for help. Thrash tracked them to a greenhouse in New Jersey and freed them.

    He led them to the Newark Port Authority, where the Poison Memories were holding their family members. They were being guarded by Ashu in mecharmor. While their flyers get the hostages to safety, the others work on destroying the mecharmor. Once Ashu abandons the armor, he is suddenly attacked by Rage, who finally caught up with his teammates and snapped Ashu’s neck.

    In the aftermath, Firestar’s dad survived his gunshot. Rage was acquitted in self-defense and released into the guardianship of Chord. Nita resigned from the team for her role in the attacks on their families, but Thrash returned to the team.

    The New New Warriors

    \"The
    The New New Warriors

    Since the attack on their families, everything has been going well for the Warriors. Justice was released from prison, and Nita returned to the team after an Atlantean power upgrade. They had just helped X-Force take out the Upstarts and were looking forward to some quality time, when The Sphinx, an enemy from one of their earliest adventures, plucked the Warriors from the timestream, knowing they would stop at nothing to stand in the way of his vengeance on Karim for stealing his powers.

    Thrash wound up in the antebellum south besieged by slave-catchers, while Rage was in North Africa facing slave traders. Silhouette found herself in Cambodia at a time where the Temple of the Dragon’s Breadth was full of worshippers, including a young Tai. Nita is stuck in early Atlantean history, where submariner villages were still warring for control, while Justice witnesses his father as a boy be victim to the same cycle of abuse that caused him to lash out on Justice. Nova was in a future where he failed to stop a dark storm from destroying Earth, and Firestar was persecuted during the Salem Witch Trials for her mutant abilities. However, Speedball found himself not even on Earth but rather the home dimension where his powers originated from.

    \"No

    Back in the present, Hindsight Lad recruits a new roster of the New Warriors: Turbo, Darkhawk, Dagger, Alex Power as Powerpax, and Thrash’s half-brother and Sil’s current boyfriend, Bandit. They work with Karim to siphon back the power from Spinx in exchange for the return of their friends. They teleport to Egypt and confront Sphinx. He is seemingly no match for them, but when his chronal energy accidentally hits his portal device, Nova is freed.

    With Sphinx engaged in battle with Nova and Bandit, Karim and the rest of the Warriors were able to locate Speedball and use his powers of kinetic motion to locate and free the rest of his teammates. With a full roster, they take on Sphinx. With defeat inevitable, Sphinx is given another choice by Karim for the two to go back in time and live a life with purpose.

    Bandit and Silhouette ultimately decide to leave the team, while the rest of Hindsight's impromptu roster gladly accept part-time status.

    Scarlet Spider

    When Spidercide steals a contagion isotope from Genetech, the Warriors are hired to look into it. This causes them to cross paths with Ben Reilly, the Scarlet Spider, who is extended a membership to the group for his help. However, his refusal to reveal his identity caused tension between him and the group.

    \"Scarlet
    Scarlet Spider accepts membership

    That tension got worse when Lady Octopus infected Joe Wade with nanobots and piloted his body through a crime spree as Scarlet Spider, reflecting badly on the team. The Warriors caught up to him on the Brooklyn Bridge, where he attacked Firestar. As the Warriors applied pressure, he continued to evolve and mutate. First, he had a full chrome skin and then continued to “hulk” out.

    They eventually get help from Spider-Man, the real Ben Reilly, who never informed his team that he changed identities. After defeating Joe Wade, most of the team believed he was “their” Scarlet Spider, with only Firestar figuring out that their team member had moved on to being Spider-Man.

    Disbanding the Team

    After the Fantastic Four and most of the Avengers went missing after the battle with Onslaught, the Warriors had to step up their game patrolling for crime, including joining the search for the Thunderbolts after it was revealed they were the Masters of Evil and helping Ultragirl, who eventually would accept membership, with a series of fires in LA.

    When the heroes returned, the team slowly went their separate ways. Night Thrasher moved to Seattle to pursue a college education. Justice and Firestar were offered Avengers membership after helping fight Morgan le Fey. Nita never returned from replacing a missing Namor as ruler of Atlantis.

    Feeling the team had come to an organic end, final members, Nova and Speedball, amicably went their separate ways.

    Rebuilding the Team

    \"No

    With a disbanded team, Speedball attempts to start a new one, and eventually, after fighting alongside Nova and Namorita, he convinces them to re-form the New Warriors along with Bolt, Aegis, and Turbo. After some time away, Night Thrasher decides to rejoin the team, being accepted with open arms.

    Due to the personal relationship Aegis had with the victim of a drive by shooting, the New Warriors got involved with a gang war. They did their best to mediate peacefully, but tensions boiled over and the gangs revealed weaponry advanced beyond their capability. After pacifying the gang war, the Warriors were able to get the name of their arms-dealer.

    The arms-dealer was Harley Traynor, who the team tracked down and had arrested. As part of his arrest, Traynor shared his supplier but was killed in prison for the confession. His son blamed the New Warriors, and while looking for a weapon among his father's armory, he was exposed to chemicals that turned him into the superhuman, Biohazard. Luckily, the Warriors have help from Generation X to defeat him.

    Reality Show Warriors

    \"Stamford
    Stamford Incident

    When Night Thrasher started running low on funds, he decided to offer the group up for a reality show. Most of the group did not agree with this idea and left. This left Night Thrasher with Speedball, Nova, Namorita, and the recently recruited, Microbe. In addition, the network put Debrii on the team.

    They would go on a few softball missions until Speedball got a lead on fugitives from a breakout at the Raft. These villains were beyond what the team could handle, especially with Nova and Debrii no longer on the team.

    During their fight, Nitro caused a massive explosion, killing almost all of the group members except Speedball. More importantly to the public, an abundant amount of innocent bystanders perished during the explosion in Stamford, CT. The result was the introduction of the Super-Human Registration Act which divided the Marvel Universe in half and resulted in the currently infamous Civil War.

    Now their names will go down in infamy, but it won't be for the reasons they had hoped. Speedball, the only surviving member, was chastised and tortured and eventually became the anti-hero, Penance, a member of the \"reformed\" super-villain group Thunderbolts.

    The Initiative

    \"New
    New Warrior cadets in a holding cell

    In the aftermath of Stamford, a website went live called DestroyAllWarriors.com. It called for the unmasking of the remaining New Warriors, none of whom had anything to do with Stamford. Hindsight, Debrii, and Timeslip were already revealed. That’s when Rage and Justice went to She-Hulk for some legal help. They would sue the dummy corporation in charge to try to shut down the site, but Iron Man would slip the information he hacked to She-Hulk. This led them to Hindsight, who was just trying to discourage the remaining New Warriors from staying active. That way everyone could forget about them, and their legacy won’t be what Speedball and their dead members did in Stamford.

    \"Injured
    Injured Gauntlet with a painted NW

    When the Superhuman Registration Act was finalized, Stamford was turned into a boot camp for would-be Avengers. Justice got a job there as one of its trainers while former Warriors: Rage, Ultragirl, Debrii, and Slapstick were admitted as trainees. When Gauntlet, a trainer who was constantly belittling the New Warriors, was attacked, they were all considered suspects, including Justice. Gauntlet would eventually recover and attest that it was Iron Man villain, Ghost, however, it was in fact Slapstick.

    When KIA attacked Camp Hammond, the former New Warrior trainees hunkered down together. Using the old communicator he knew Slapstick would still have on him, Justice was able to reach out to them. He regrouped them in Tennessee at MVP’s father’s home, which they correctly assumed would be attacked by KIA. They fought him off with a few other Initiative cadets, eventually using a brain scanner to wipe MVP’s brain patterns from KIA’s clone body. Slapstick would steal the brain scanner when no one was looking.

    Sick of the secrets, Justice would resigned from Camp Hammond, taking his registered and trained New Warriors (including the Scarlet Spiders) with him to create “Counter-Force,” a group determined to hold the Initiative accountable.

    Depowered Mutants

    \"The
    The Ex-Mutants

    At the same time that veteran Warriors were cadets at Camp Hammond, superpowered criminals began turning up captured all over New York with notes attached that said simply \"NW\". Then a street near a scene of one of these apprehensions was gratified with the phrase \"The New Warriors Were Here\". The scandal caught on fire, and many realized that the New Warriors were on their way coming back, however not with the many heroes that had participated in the team before. As the incident caught the media's attention, it was realized that someone had decided to re-form the New Warriors. There was, however, a fair amount of debate among the super-hero community (especially those close to Tony Stark) as to who would re-form a team whose only surviving member was branded as a mass murderer (because of their fight with Nitro). After all, except for Speedball, the former members of the team were dead, their bodies accounted for.

    The new team was made up almost entirely of mutants de-powered by the decimation (all of whom were involved at some point with the X-men). Their current base of operations is Murderworld, the abandoned once-hideout of Arcade.

    \"No

    The team nearly disbanded until Renascence joined the illustrious roster. She urged the group to stick together, citing their sense of abandonment following M-day. However, the team finally met an end after a traumatic experience visiting the future. Night Thrasher witnessed his dream becoming reality as his dead brother, Dwayne Taylor (the original Night Thrasher), was brought back to life. Dwayne had embraced a totalitarian vision for the world, and, wearing the Iron Man armor, became supreme overlord, sentencing all heroes to either imprisonment or execution. The New Warriors met a new Night Thrasher (Tony Stark) and, with their leader's help, defeated Dwayne.

    When they returned to the present time line, the teams' trust in their reason to continue as superheroes was completely shattered. Night Thrasher was unable to keep his role as leader, Wondra decided to leave the team and follow her own path, and the rest of the team thanked Donyell for the opportunity and left the New Warriors too.

    Counter Force

    \"No

    The next time Justice brought his Counter-Force version of New Warriors to Camp Hammond is when Ragnarok, the cyborg clone of Thor, was resuscitated and let loose. At this point, Bandit’s former mutant squad had formed and disbanded, and he had joined Justice, still using the Night Thrasher alias and armor. They hold their own decently, but the tide doesn’t turn in their favor until Gauntlet leads all staff members and available graduated cadets into the fight.

    Before they left, Justice was determined to retrieve MVP’s body, having secretly died in a training exercise and replaced with clones. He made a public spectacle of it so the media would pick the story up, causing the closure of Camp Hammond.

    This was just the beginning of their strategy to oust Osborn, who had taken over the Initiative and SHIELD after the events of the Secret Invasion. They recruited former Hammond staff members Tigra and Gauntlet for this new quest. Tigra believed they had enough veteran members to call themselves the Avengers Resistance. (read more about this squad on the Avengers Resistance page).

    Evolutionary

    \"No

    A new group of New Warriors spontaneously come together when they are singled out by the High Evolutionary and the Evolutionary for poisoning humanity's ability to evolve. The members were:

    • Justice - targeted for being a mutant
    • Speedball - targeted for being mutated by science
    • Nova (Sam Alexander) - targeted for his exposure to an alien power source
    • Water Snake - targeted for being an Atlantean
    • Kaine - targeted for being a clone
    • Hummingbird - targeted for being a demigod
    • Haechi - targeted for being an inhuman
    • Sun Girl - who wasn't really targeted for her gadgets but didn't like that the rest of them were being targeted.

    Together, they are able to run them off once and take Wundagore Mountain as their new headquarters. Using its tracking and teleporting technology, they are able to give chase to the Evolutionaries. They had been preparing for the return of the Celestials but instead they were greeted by the Eternals. They had already started losing faith in the High Evolutionary's tactics so they were easy to convince to let them go.

    Alternate Realities

    MC2

    In this universe, there is an alternate reality version of the New Warriors founded by Spider-Girl, and now run by the Phil Urich.

    Spider-Girl had gathered them to help take down Angel Face and Funny Face, and to essentially fight street crime that A-class heroes like the Avengers would never touch. The roster was made out of the Buzz, Raptor, Darkdevil, Phil Urich as the Golden Goblin and Ladyhawk. The team is sponsored by Normie Osborn.

    House of M

    In this reality, Luke Cage made treaties with human rival gangs to defeat the mutant rule. One gang called the Wolfpack, which is made out of mostly New Warriors members from the mainstream universe, such as Rage, Speedball, Turbo, Darkhawk, Alex Power as Zero-G and Julie Power as Lightspeed.

    In Other Media

    Fantastic Four Animated Series

    \"The
    The team saves riders of a de-railed trian

    The New Warriors made brief cameos in two episodes of the Fantastic Four series. The episodes were \"To Battle the Living Planet\" and \"Doomsday.\" They can be seen responding to various collateral damage in New York. The characters specifically seen are Speedball, Darkhawk, and Justice. Rage is also seen, but he is with the Avengers.

    Marvel Ultimate Alliance 2

    \"Namorita
    Namorita vs Nitro

    The video game Marvel Ultimate Alliance 2 adapts the Civil War storyline. The New Warriors are referenced heavily but not featured together. Namorita's confrontation with Nitro leading to the Stamford explosion appears as a cinematic. Speedball appears as a playable character in his Penance form, and Firestar is featured as a boss during the Pro-Registration story mode.

    Ultimate Spider-Man

    \"Spidey's
    Spidey's old warriors and New Warriors

    Over the course of season 3 and 4 of Ultimate Spider-Man, a SHIELD trainee squad designated \"The New Warriors\" shows up to learn and operate in the field with Spider-Man and his original squad. However, their membership is much different. The only character who was a member in both comics and the show was Dagger. Speedball is also seen among a list of potential recruits.

    Failed Pilot

    \"Official
    Official concept art for the Freeform pilot

    Marvel Television developed a pilot for half-hour live action comedy to be aired on Freeform. The team would consisted of a roster that was a combination of New Warriors and the Great Lakes Avengers: Night Thrasher, Speedball, Debrii, Microbe, Mr. Immortal, and Squirrel Girl. It was originally given a 10-episode order, but Freeform eventually passed on it. It was to be shopped to other networks until a corporate restructuring put Marvel Television under Marvel Studios, killing any chance of the show.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-32016/","id":32016,"name":"The Gentleman's Name is Juggernaut","issue_number":"411"},"id":11896,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7283639-newwar2020001_cover.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7283639-newwar2020001_cover.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7283639-newwar2020001_cover.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7283639-newwar2020001_cover.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7283639-newwar2020001_cover.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7283639-newwar2020001_cover.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7283639-newwar2020001_cover.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7283639-newwar2020001_cover.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7283639-newwar2020001_cover.jpg","image_tags":"All Images"},"name":"New Warriors","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/new-warriors/4060-11896/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-12147/","count_of_isssue_appearances":0,"count_of_team_members":15,"date_added":"2008-06-06 11:27:46","date_last_updated":"2015-09-07 12:18:17","deck":"Team of moronic degenerate wannabe heroes who actually helped save the day in one instance.","description":"

    History

    Section Eight is a team of misfit and/or flat-out deranged wannabe superheroes led by Sixpack, the sole team member who was a regular member of the book's supporting cast. Six Pack was a fat, short, middle aged drunk always wearing a tattered superhero costume and telling unbelievable tales of past glories at Noonan's bar.

    When Sixpack's team is first mentioned, the team has seemingly been disbanded as Six Pack must go about Gotham doing the whole \"getting the gang back together\" thing. Some members are found keeping afloat by working 9-5 jobs (Jean de Baton, Friendly Fire) while others are found on the streets ( Shakes, Dogwelder, Flemgen) in asylums ( Defenestrator) even in a adult movie theather (Bueno Excellente)

    With the team back together, they proceed to attempt to help save the day on multiple occasions and failing miserably though always having the best of intentions.

    In one instance, the team successfully assists Tommy \"Hitman\" Monaghan in getting the space bounty hunter Lobo off his back, though not through actual superheroics but through helping him set up an absurd scheme where, while Lobo is unconscious, they dress Lobo up in a suit and team member Bueno Excellente up in a wedding gown and proceed to do a photo shoot making it look like the two got married. Hitman threatens Lobo that if he ever harms him or Gotham on his watch, he will have the photos sent out to the JLA and any other superhero group he can; tarnishing Lobo's bad-boy rep forever. Lobo leaves and Section Eight is victorious!

    Later, in their final appearance, Section Eight bands together for a final time trying to save Gotham (and perhaps the world) from an extra-dimensional demon invasion. Almost all of the team perishes horribly. The only survivors are Six Pack and Bueno Excellente, though all present believe Six Pack to be dead when he merely went off to do battle with the demons in their own dimension and seemingly returns some time later, victorious, to discard his superhero costume and join up with Alcoholics Anonymous. Bueno Excellente is still on the loose somewhere and who knows, one day he may return.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-76437/","id":76437,"name":"Ace of Killers, Part Four","issue_number":"18"},"id":12147,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/4453101-section_8_1_54fe292f47f982.39332614.jpg","image_tags":"All Images,Artwork,New 52,Section 8"},"name":"Section Eight","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/section-eight/4060-12147/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-12206/","count_of_isssue_appearances":0,"count_of_team_members":231,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-15 07:02:43","deck":"G.I. Joe is America's elite fighting force. They are the best trained counter-terrorist team. The only defense against the villainous terrorist organization, Cobra.","description":"

    Origin

    In the 1960's President John F. Kennedy created a special military unit that reported directly to the White House. The highly decorated Vietnam vet, Lieutenant Joseph Colton, headed up this special forces unit under the name \"G.I. Joe\". The name G.I. Joe became synonymous with Colton. The team had a successful run of missions through the 1960's and 1970's before it was officially disbanded.

    Creation

    The G.I. in G.I. Joe stands for \"Government Issue\". During World War II the term G.I. Joe was coined to describe American soldiers. In 1982, the collection of action figures G.I. Joe: A Real American Hero by Hasbro, based on the action figure created by Stanley Weston released by the company in 1964, with concepts created by Larry Hama and Don Perlin in a partnership between Marvel and Hasbro, Hama reworked a comic book project called Fury Force, which featured the son of Nick Fury, director of S.H.I.E.L.D., commanding an elite group against to HYDRA, Fury Force gave rise to the G.I. Joe and HYDRA was replaced by Cobra.

    Between 1975 and 1976, Hasbro had released the Adventure Team collection and to promote it, published comic book advertisements starring Adventure Team, consisting of the original G.I. Joe, Atomic Man and Bulletman.

    In 1989, the writer Larry Hama reintroduced the original Joe as General Joe Colton, a highly decorated American serviceman who was appointed by John F. Kennedy to create an elite unit, which he also named G.I. Joe.

    In the UK, Palitoy released in 1996 their version of G.I. Joe with the name Action Man, in 1982, was no different, the team won a version called Action Force, which had comics by IPC publication and Marvel UK, with the purchase of Tonka in 1991, a company that had bought Palitoy years before, Hasbro passed to also be the owner of the Action Man and Action Force brands, in different products.

    In 1994, Hasbro released Sgt. Savage and his Screaming Eagles, about a group that fought in World War II, released a 2-part mini-comic and packs illustrated by veteran Joe Kubert. Sgt Savage was incorporated into the animated series G.I. Joe Extreme (1995-1996).

    IDW created a universe with Hasbro franchises also integrating Action Man (and his arch-nemesis, Dr. X), Action Force, Sgt. Savage and his Screaming Eagles and the Adventure Team from 1970s.

    Team Evolution

    Marvel Comics: A Real American Hero

    \"Marvel
    Marvel Comics

    G.I Joe was revived in the 1980's as an elite counter terrorism strike-force. Their main enemy being Cobra, the well funded and organized terrorist group which actually ran an entire American town (Springfield) as a sleeper cell. The original leader of this new team was Hawk (Colonel Clayton Abernathy) who quick militarily recruited Stalker, Snake-Eyes, Grand Slam, Short-Fuse, Flash, Grunt, Breaker, Rock & Roll, Zap, Scarlett, Steeler and Clutch.

    The team was a complete secret and their subterranean headquarters, called The Pit, was stealthily hidden underneath the motor pool at Fort Wadsworth on Staten Island. As Cobra grew in strength, the Joes started to recruit more experts from the different branches of the armed forces. Torpedo and Wet Suit from the Seals, Gung-Ho and Leatherneck from the Marines, Deep Six from the Navy, Cutter from the Coast Guard, Ace and Slip-Stream from the Air Force and many others. Soon there were elite troops for the Joes to cover the globe.

    Devil's Due / Image Comics: A Real American Hero

    \"Devil's
    Devil's Due / Image Comics

    In 2001 Devil's Due acquired the comic book license and picked up where the Marvel series left off, except 7 years later. Devil's Due launched a 4 issue mini series through Image Comics entitled Reinstated, with high sales G.I.Joe was upgraded to a full series.

    Many of the Joes were reactivated when Cobra Commander was seen on American soil. Devil's Due run ended in 2008 with an epic World War III story arc that saw the capture and imprisonment of Cobra Commander. Since the relaunch of IDW's A Real American Hero that pics up right after Issue 155 of the Marvel series, the Devil's Due run was considered no longer in continuity to the Marvel G.I.Joe-verse.

    IDW Publishing

    \"IDW\"
    IDW

    IDW reboot the G.I. Joe universe. G.I. Joe are a covert anti-terrorist unit, which is comprised of members of the military who have been declared KIA. The original team was comprised of Hawk, Duke, Snake Eyes, Scarlett, Heavy Duty, Rock & Roll, and Breaker, with new members added later.

    IDW: A Real American Hero

    \"IDW:
    IDW: A Real American Hero

    In 2010, IDW along with cooperation from Marvel decided to continue the popular GI Joe: A Real American Hero series that ran from 1982 to 1994. After putting out issue number 155 1/2 for Free Comic Book Day 2010, IDW continued the series with issue number 156. The story, plots, and characters from Marvels G.I. Joe title were retained along with the continuation of the storyline that ended at issue 155.

    Alternate Realities

    Action Force

    Action Force is an international counter terrorism team composed of operatives from various countries' armed forces, most notably the United States and Western Europe.

    G.I. Joe: Sigma 6

    G.I. Joe: Sigma 6 is based on the toyline and animated TV series of the same name.

    Films

    \"No

    G.I. Joe made their way to theaters in their first live action movie, G.I. Joe: The Rise of Cobra, which was released on August 7, 2009. The sequel, G.I. Joe: Retaliation, was released on March 28, 2013.

    Novels

    G.I. Joe: Above & Beyond

    IN THE HEAT OF BATTLE, THERE ARE MANY HEROES.

    Part of an elite covert military team, Lieutenant Duke Hauser and his buddy Ripcord Weems are dispatched to the small oil-rich South American country of San Sebastiao to help quell a revolution. The multinational peacekeeping force known as G.I. JOE has secretly sent special ops to support Duke's unit. Their other mission: Find out who's playing both sides of the conflict by supplying each with the same advanced lethal weaponry. But it turns out the devious culprit has raised the stakes–promising to deliver an army of super soldiers in the near future. If Duke's squad and the G.I. JOE team can't stop the revolution, halt the proliferation of weapons, and eliminate the threat of laboratory-produced warriors, a dark plot toward world domination will soon be launched.

    • Written By: Max Allan Collins
    • Publisher: Del Rey (May, 2009)
    • ISBN-10: 0345516087
    • ISBN-13: 978-0345516084

    G.I. Joe: Tales From the Cobra Wars

    G.I. Joe: Tales from the Cobra Wars is an action-packed collection of all-original prose stories. Flint, Scarlett, Destro, the Baroness; they're all here as the ongoing war between G.I. JOE and Cobra is depicted from every angel. This trade paperback presents eight novella-length tales, penned by today's leading crime and thriller writers, such as Jonathan Maberry, Duane Swierczynski , Chuck Dixon, and Dennis Tafoya. Cobra Wars is edited by Max Brooks, who also supplies a new story, and features new illustrations for each story.

    • Written By: Various, Anthology
    • Publisher: IDW
    • ISBN-10: 1600108814

    G.I. Joe: The Rise of Cobra

    WHEN A NEW BREED OF EVIL EMERGES, A NEW BREED OF SOLDIER MUST FIGHT IT.

    While convoying new high-tech weaponry in Central Asia, Captain Duke Hauser and his right-hand man, Ripcord Weems, along with their NATO Special Forces Unit, are ambushed by heavily armed super-soldiers called Vipers. Just as it becomes clear that Duke's squad is seriously outgunned, and after one of the Vipers attempts to make off with the cache of coveted arms, out of nowhere comes a secret band of soldiers to help the good guys: Team G.I. JOE. General Hawk, head of the elite military ops, enlists Duke and Ripcord to join JOE stalwarts Heavy Duty, Breaker, Scarlett, and Snake Eyes in retrieving the weapons and keeping a well-financed foe from controlling cutting-edge nano-mite technology that destroys everything in its path.

    Racing around the globe, the G.I. JOE team takes on the baddest of the bad: Storm Shadow, Zartan, Destro, and the lovely but lethal Baroness. And in confronting genetically manipulated super-soldiers, Duke must also face his own inner demons when a sinister figure appears to raise the stakes and maneuver events toward an even greater catastrophe.

    • Written By: Max Allan Collins
    • Publisher: Del Rey (June, 2009)
    • ISBN-10: 0345516095
    • ISBN-13: 978-0345516091

    G.I. Joe: The Rise of Cobra - Movie Novelization

    Ambushed by COBRA, Duke and Ripcord's Special Forces need the help of General Hawk's team of GI. JOEs to get them back and, in the process, thwart COBRA's deadly plan to set off warheads in four international cities.

    • Written By: Brian James
    • Publisher: Simon Spotlight (June, 2009)
    • ISBN-10: 1416978569
    • ISBN-13: 978-1416978565
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-346755/","id":346755,"name":null,"issue_number":"1"},"id":12206,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11111/111117683/3116004-g.i%20joes%20declare%20war.jpg","image_tags":"All Images,IDW"},"name":"G.I. Joe","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-1190/","id":1190,"name":"IDW Publishing"},"site_detail_url":"https://comicvine.gamespot.com/gi-joe/4060-12206/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-12522/","count_of_isssue_appearances":0,"count_of_team_members":4,"date_added":"2008-06-06 11:27:47","date_last_updated":"2016-10-07 10:53:03","deck":"The Wildebeest Society was a criminal cartel who conducted various underhanded affairs for financial gain. Although the Society was made up of many members, only one Wildebeest ever operated publicly, giving the illusion that all of their crimes were being committed by a single individual.","description":"

    The original Wildebeest was an unrevealed supervillain who set up the Wildebeest Society; a supervillain team in which only one villain operated at a time, wearing the same exo-suit and calling himself the Wildebeest.  The thinking behind this was that there would appear to be one villain, but his Modus Operandi  would seem to change with each crime, making his moves impossible to predict.  The Wildebeests were all master tacticians and wore exoskeletons that boosted their strength, resembling a monstrous, humanoid version of the animal of that name.

    The Wildebeest Society was taken over by Teen Titan member Jericho, who had been possessed by the evil in Raven's people.  Under his leadership, it became involved in genetic engineering, trying to create the perfect host body for the force.  They created a cat-woman named Pantha, and were in the process of creating a creature of the same form as their monstrous costumes when they were defeated by the Titans.  Jericho's father Deathstroke was forced to kill his son to stop the Souls of Azarath.

    Some of the scientists that worked for the Wildebeest Society used to be members of the first incarnation of the H.I.V.E.

    Baby Wildebeest

    The Baby Wildebeest the society had created attached itself to Pantha, much to her initial disgust, and considered her his mother.  Although the size of a human toddler, he had disproportionately powerful strength.  He later demonstrated the ability to gain adult form to protect its \"Momma\".  Pantha originally didn't like the creature, often talking about various ways Baby could or would die.  Her attitude softened as Wildebeest stayed with the team.

    During a Titans vacation to California, Baby Wildebeest and the other Titans had time to visit the beach.  While the others were distracted, he built a gigantic sandcastle, with intricate shapes and molding, resembling a cathedral.

    When Pantha left the Titans, she took Baby Wildebeest with her and later, along with former Titan Red Star, the three formed an unusual family unit.

    Baby Wildebeest would participate in the battle to save his old friend Cyborg, whose magnified power levels threatened the entire Earth.  A series of misunderstandings led to the Titans allies attacking the Justice League of America.  Baby Wildebeest was knocked out by Superman.

    Later, Superboy-Prime was confronted by a team of Titans, including Wildebeest and Pantha, on a highway outside of Keystone City.  Superboy-Prime, mentally ill, kills Pantha with a blow to the head.  Baby Wildebeest attacks and is killed instantly by a heat vision blast through his torso.  Red Star survives the battle to mourn his unofficial family.

    Baby Wildebeest returned as a Black Lantern in the Blackest Night crossover.

    Other Wildebeests

    The New Wildebeests were creations of Goth and the Titans battled them. These versions of Wildebeest were man-beast looking once their masks are removed.  Another group of Wildebeests were encountered by Beast Boy, Flamebird, and the DEO orphans only to be discovered working with an elderly gentlemen to keep the peace in his neighborhood.

    Cyborg Revenge Squad

    Starfire and Robin were abducted by a Cybernetic Wildebeest and the Teen Titans and Outsiders had to save them.  When the Cybernetic Wildebeest was defeated, they shipped it to S.T.A.R. Labs for it to be studied and tested.  Unfortunately, a shadowy character intercepted the transport containing the Cybernetic Wildebeest to recreate the Wildebeests for an unknown purpose.

    This figure is revealed to be Mr. Orr, the creator of the cyborg villain Equus.  The Titans are forced to fight numerous clones of Equus and the Wildebeest to prevent them from helping Vic Stone against Orr's \"Cyborg Revenge Squad\".","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-74647/","id":74647,"name":"Death of a Hero!","issue_number":"72"},"id":12522,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/100647/5472944-untitled-2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/100647/5472944-untitled-2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/100647/5472944-untitled-2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/100647/5472944-untitled-2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/100647/5472944-untitled-2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/100647/5472944-untitled-2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/100647/5472944-untitled-2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/100647/5472944-untitled-2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/100647/5472944-untitled-2.jpg","image_tags":"All Images,Images From Editing,Wildebeest Society"},"name":"Wildebeest Society","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/wildebeest-society/4060-12522/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13011/","count_of_isssue_appearances":0,"count_of_team_members":11,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-08-04 08:31:39","deck":"A gang of kids who worked with the Guardian and were later involved with Project Cadmus. They represent a living symbols of a famous legend.","description":"

    Origin

    \"But it could have! The Newsboy Legion is a foist rate outfit... just as it was durin' da forties!\" -- Scrapper.

    The Newsboy Legion consisted of four orphans who lived on the streets of Suicide Slum, attempting to support themselves by honest means- selling newspapers. However, this business could not always support the group, and they occasionally turned to less licit means, generally stripping cars and selling the parts to Frankie the Fence. Eventually they made an attempt to rob a hardware store for tools to fix up the shack in which they were living, but failed. They had been frequently in trouble with the law because of their extra-legal activities, and this final crime had them brought before a judge who was about to sentence the boys to reform school until they came of age. However, Officer Jim Harper, who had a soft spot for the boys, stepped in, and they were instead placed under his guardianship. The boys suspected that their guardian was in fact the superhero Guardian, however they remained unsure of his secret identity for much of their time together.

    They were hired by Morgan Edge for building the Whiz Wagon and televising each stage of progress for viewing.

    Creation

    The Newsboy Legion was created in 1942 by Joe Simon and Jack Kirby. They were changed for the post-Crisis universe by Roger Stern and Ron Frenz.

    Team Evolution

    The original Newsboy Legion consisted of Tommy Thompkins, the team leader; Big Words (name later revealed to be Anthony Rodriguez), the smart guy of the group and also the tallest of the four boys; Gabby (name later revealed to be Johnny Gabrielli), the most talkative member of the group; and Scrapper (name later revealed to be Patrick MacGuire), the tough guy who loved to fight. The boys eventually grew up and attended college, where each became a scientist. All of them found work with the DNA Project. They eventually married, and each had a son who was identical to his father. These boys formed their own incarnation of the Newsboy Legion, with the only major difference between the incarnations being the addition of a new member, Walter \"Flipper Dipper\" Johnson Jr., an African-American boy who was fond of underwater maneuvers. The team was also briefly joined by \"Famous\" Bobby Harper, the niece of the Guardian, but she was soon sent to stay with other relatives.

    Post-Crisis the younger Legion was retconned as identical clones that were created by the DNA Project as part of an abortive plot. These Newsboys had the memories of their fathers, but only up to their present age, leaving them occasionally unfamiliar with much of contemporary life and technology. Eventually, both versions of the Legion parted ways with the DNA Project, now known as Project Cadmus, because of changes being made to Cadmus. The younger Newsboys were involved in rescuing Kon-El from Cadmus, and later they rescued Jimmy Olsen from the sewers during Countdown. They again aided Jimmy, this time in obtaining evidence of the Black Racer's death using the Whiz Wagon. The original Legion was killed by Codename: Assassin. The current status of the clones is unknown.

    In Other Media

    Justice League Unlimited

    The Newsboy Legion appeared in the Justice League Unlimited episode \"Patriot Act\", wherein they made an unnamed cameo appearance at a parade. There, they expressed discontent that none of the \"good\" heroes were present, and later witnessed the fight between various Leaguers and General Wade Eiling. When the rest of the crowd fled the scene, the Newsboys remained behind and attempted to aid the Leaguers, their major effort involving throwing bits of debris at Eiling and commandeering a wrecking ball. They were assigned to crowd control by Vigilante, who was hoping to keep them out of harm's way. At the end of the episode they were shown playing at being the members of the League that they had earlier disparaged.

    Young Justice

    In the DC streaming show, Young Justice, three girls (patterned off members of Scooby Doo's Mystery Inc) witness the team fight what appears to be an alien invasion. They each record different angles with their smartphones and are begrudgingly called the \"Newsgirl Legion\" by the town's mayor.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-153047/","id":153047,"name":"The Guardian / The Crime Escradille / The Gas Bombs / The Birth of Robotman / The Dwarf / The Picture that Killed","issue_number":"7"},"id":13011,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/30334/596055-jla2205.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/30334/596055-jla2205.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/30334/596055-jla2205.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/30334/596055-jla2205.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/30334/596055-jla2205.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/30334/596055-jla2205.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/30334/596055-jla2205.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/30334/596055-jla2205.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/30334/596055-jla2205.jpg","image_tags":"All Images,Newsboy Legion"},"name":"Newsboy Legion","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/newsboy-legion/4060-13011/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13340/","count_of_isssue_appearances":0,"count_of_team_members":12,"date_added":"2008-06-06 11:27:47","date_last_updated":"2017-01-23 04:50:01","deck":"All members of the Externals were shown to be immortal and important to Apocalypse's rise of power, now only three of them remain...though even those seem to have lost all connection to one another.","description":"

    The Beginnings

    The Externals are in a sense \"immortal\" so one can only guess when they banded together, whether there was different incarnations of the team and such other things but one must assume they have been around for awhile.

    The latest incarnation of the Externals was mainly comprised of eight members, the most dominant being the five males that made up the High Lords.

    The High Lords' goal was to play power games by manipulating everything from behind the scenes. They were Saul, Absalom, Gideon, Nicodemus and Burke. They also employed the sixth male External, Crule as their enforcer and assassin.

    However, the two female members of the team, Candra and Selene, kept to their own schemes and were not a part of the gathering of the High Lords.

    The Fall

    In more recent days, Cannonball was declared an External by Cable. Yet this is denied by Selene and has not been delved into anymore than this, leaving some to question it.

    Selene also denies that Apocalypse is an External because of the fact that she sees the Celestial technology being the thing that keeps him alive, even though he only found it several millennia after his birth.

    The Externals no longer exist thanks to a series of events that wiped them out. Nicodemus and Burke were the first to die, after contracting the Legacy Virus and dying from it.

    Candra was killed by Cyclops, as she so foolishly placed her life force in a gem. Crule, Saul, Gideon and Absalom were all drained of their life force by Selene.

    Now the Externals have disbanded as Selene's whereabouts are unknown, though she has taken Wither to be her groom. Apocalypse has been taken by the Celestials as payment for him using their technology. And Cannonball still remains unconnected to the team, likely having forgotten it ever existed.

    Alternate Realities

    Earth-4935 In the world of the Askani, the Externals were all killed by Apocalypse who then rose to power over the Earth. He remained in this position up until the 39th century.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-35691/","id":35691,"name":"Answers (and Questions)","issue_number":"10"},"id":13340,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/79281-44174-externals.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/79281-44174-externals.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/79281-44174-externals.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/79281-44174-externals.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/79281-44174-externals.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/79281-44174-externals.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/79281-44174-externals.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/79281-44174-externals.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/79281-44174-externals.jpg","image_tags":"All Images,Externals,The Externals"},"name":"Externals","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/externals/4060-13340/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13343/","count_of_isssue_appearances":0,"count_of_team_members":41,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-07-26 09:31:12","deck":"A giant and ancient cosmic race that used their godlike abilities to experiment on lower life forms. They are responsible for mankind's potential to gain superhuman powers as well as the creation of various races and life forms in the universe, the most know being the race of Godlike beings know as the Eternals and Deviants, the opposite of the Eternals.","description":"

    Origin

    \"A
    A new Celestial is created

    The origin of the Celestials has never been fully explained, but there are many theories as to how they came to be. One theory holds they might be survivors of a previous universe. Another states they were created or in some way connected to Eternity. Another one states they were created by and serve an entity called the Fulcrum and help it maintain cosmic balance. Whatever their origin may be, one thing is for certain, they are a race of scientists and engineers who have taken upon themselves to \"shepherd\" the development of younger, \"lesser\" races such as The Skrulls, though their reasons for doing so is unknown. One theory suggested is they seek to create the next Eternity.

    Another theory suggests that doing so somehow serves the Fulcrum and, in turn, the balance between Order and Chaos. When the universe was still young, their race was never known to participate in wars, though they sometimes intervened whenever the probability of their experiments being ruined were too high for comfort.

    But that all changed when they made first contact with The Watchers, whose views on the controversial subject of older races interfering with the natural development of younger races clashed directly with those of The Celestials. It was their differences of opinion ultimately ignited a war between the two races, unfortunately, the Oath of Non-Interference taken by The Watchers made it forever impossible to stop The Celestials, at least in a direct manner.

    Thor witnessed the birth of a new Celestial in the midst of the Black Galaxy, a bio-verse that was made of living matter. Other Celestials assembled its armor, with Hercules captured in its head. Then Stellaris, who hated the Celestials, rammed it at enormous speeds, sparking off a huge explosion, which expanded to reach the edges of the Black Galaxy, then contracted, focusing all of the power of the Black Galaxy into the new Celestial, which then came alive. It is not known if all Celestials are \"born\" this way.

    Creation

    The Celestials are a Marvel comics book species created by Jack Kirby and first appearing in The Eternals #2 released in 1976. The Celestials first appear in The Eternals #2, and as a concept were created by Jack Kirby. They bare some semblance to Erich von Däniken ideas of giant space gods whose tampering with humanity lead to technological advancement.

    Major Story Arcs

    First Host

    The First Host of Celestials came to Earth about one million years ago to do genetic tests and experiments with the Earth's most intelligent life form, human beings. After many tests and experiments, the Celestials created two sub-species of humans, the Eternals and the Deviants. However, their manipulation of human DNA would give humans the potential to gain superhuman powers and also allow them to give birth to Mutants thanks to the insertion of the X-Gene. The Second Host of Celestials came to Earth about 18,000 B.C. to check upon the progress of the First Host's visit. After finding the directions of Deviants counter-productive and in response to Deviants firing on their ship, the Celestials decided to destroy Lemuria, the Deviants' kingdom. The combination of explosions and eruptions sank Lemuria, Atlantis and other similar civilizations into the ocean. This disaster became known as the Great Cataclysm.

    It was during this time that Tiamut the Communicator a.k.a. The Dreaming Celestial was framed by a cabal of Celestials lead by Arishem the Judge, who was jealous of The Dreaming Celestials' intimate connection to The One Above All. After a long battle with the treacherous traitors, The Dreaming Celestial was sealed away inside the Diablo Mountains for a crime he never committed, just as Arishem had hoped he would.

    The Third Host of Celestials came to Earth around the 10th Century. The Incas, who worshiped the Celestials, built a City of the Space Gods high in the Andes mountains. The Third Host occupied this city as their main base on this visit. The Council of Godheads of Earth confronted the Third Host with the Eternal Ajak speaking for the Celestials. A pact of non-interference with humanity was agreed upon by the Celestials, Earth's Godheads, the Eternals and the Deviants until the arrival of the Fourth Host.

    Fourth Host

    In the late 20th Century, the Fourth Host of Celestials arrived on Earth to judge humanity. Fearing that the Celestials would destroy Earth if they judged against its people, Zuras joined forces with Odin and led the Eternals into battle against the Celestials, who killed them for attempting to betray them. Odin, who had infused a Celestial-sized version of The Destroyer armor with the souls of nearly every Asgardian in existence along with his own, pushed onward and engaged The Celestials in combat. After wiping out Odin and The Asgardians and defeating an enraged Thor, Arishem the Judge came to a decision and prepared to judge the Earth but not before attempting to end Thor's life. Luckily, Gaea arrived at the last minute and offered the Celestials the Young Gods who had been chosen to prove humanity's worth. This convinced Arishem to spare Thor and judge Earth worthy of continued existence. The Celestials then departed for space, taking Gaea's offerings with them. But this would not be the last time anyone would see the Celestials.

    Months after the incident with The Fourth Host, Thor ended up being jettisoned into space where he crash-landed on the planet Pangora which Arishem the Judge had found unworthy of a continued existence, Thor made an attempt at driving the Celestial Judge away, but was ignored by Arishem while he summoned forth Exitar the Exterminator, a 20,000 foot Celestial who wielded the power to destroy worlds and purify entire galaxies. Thor tried to destroy Exitar from the inside by breaking the dome in his head that allowed Exitar to control his armor from hyperspace, where the true forms of all The Celestials resided, unfortunately Thor was unable to succeed in this endeavor and was spat out of Exitar's \"mouth\" like tobacco. Exitar then proceeded to purify the planet, eradicating only the Space Pirates who had been raping Pangoria and its people for over a thousand years. A clone of Thor created by Exitar explained their true intentions to Thor and told him that had he continued to interfere with their plans, Arishem would have altered his judgment and ordered Exitar to destroy the entire planet. The clone also warned Thor that should he interfere in their personal affairs ever again...they would obliterate him. With that, the clone exiled Thor from Pangoria while Arishem and Exitar enveloped the planet in a shield that would keep extraterrestrial intruders out from now on and then moved the planet to a safe and secret location.

    Fantastic Four

    The Celestials encountered The Fantastic Four, The Fantastic Force, Kristoff Vernard and Scott Lang a few years later during a crisis that almost saw an end to the millennia long war between the Celestials and the Watchers, who were saved at the last second by The Invisible Woman after she managed to cut Exitar the Exterminator off from the physical plane by using her connection to hyperspace to destroy the link between his true form and his colossal armor.

    Nezzar the Calculator and Ashema the Listener later returned to Earth to force Franklin Richards into choosing which reality, Earth-616 or The Heroes Reborn Universe, would live and which would die. Their intentions were also to take Franklin with them and train him in the proper use of his cosmic power. A power they wished to manipulate for their own personal reasons, however, Ashema's newfound love for Humanity turned her away from this cause and lead her to store the Heroes Reborn Universe inside her own shell, which the other Celestials eventually gathered up and began studying, hinting at the possibility of a second ascension.

    The Thanos Imperative and Uncanny X-Men

    An army of Celestials were later seen on the front lines of The Fault along with Galactus and The Proemial Gods, only to either fall or be forced into a tactical retreat by Shuma-Gorath's all-powerful Galactus Engine. Later, thanks to Mr. Sinister tampering with the Dreaming Celestial, The Prime Celestial Host was drawn to Earth and touched down outside of San Francisco where The X-Men attempted to communicate with them.

    However, they were not acknowledged by the Space-Gods as they were beneath them, luckily, the newly restored Dreaming Celestial stepped in on their behalf and sent his former brethren away as a way of showing his gratitude to The X-Men for saving his life.

    The Voldi Incident

    \"The
    The Celestials have come for revenge.

    Recently, a race of Phoenix Force-worshiping aliens known as the Voldi used an artifact called The Heart of the Void to empower their entire species using the cosmic energy they stole from the Celestials.

    Using this power, the Voldi were able to hide from the Celestials, but when Recorder 451 stole the artifact their \"cloak\" dropped and revealed the location of their world-ship to The Celestials.

    Seconds after the cloak dropped, a massive host of angry Celestials descended upon the Voldi and eradicated the entire species within moments.

    With their thirst for revenge satisfied, the Celestials departed from the remains of the Voldi homeworld and returned to their standard routines.

    Assassination

    \"Death
    Death of a Celestial

    During the ritual to be chosen as the next Apocalypse, Genocide summoned a Celestial Gardner to a Starcore station to face judgement and after careful review was found to be a suitable replacement for Apocalypse.

    After giving Genocide a Celestial Death Seed, the Gardener was besieged by the Apocalypse Twins, the children of Archangel.

    Using an ancient Asgardian axe Jarnbjorn that once belonged to Thor, Uriel Worthington sliced the Celestial in half and killed it, the consequences of which would be most severe.

    Time Runs Out

    \"A
    A Beyonder takes out The Celestial Host

    Galactus summoned The Celestials on the behalf of Reed Richards, The Hulk and the Black Panther in the hopes that they could aid them in stopping the Incursions that were plaguing the Multiverse.

    However, the Celestials left in the middle of the meeting despite the fact that they seemed as if they were going to grant their assistance to the cause.

    As it turned out, they had left because their Hosts all across the Multiverse were being obliterated by a trio of Beyonders that are currently in competition with the Great Destroyer to bring about the end of all Creation.

    Sadly, the Celestials lost their fight with the Beyonders and were driven to extinction along with the Living Tribunal and alternate reality versions of abstract beings like Eternity, Infinity, Lord Chaos, Master Order and The In-Betweener.

    Alternate Realities

    The \"Celestialverse\"

    During their search for The Beyonder across time and space; Doctor Doom, Sharon Ventura, The Thing and The Human Torch came across a reality completely overrun with Celestials. They speculated that perhaps the Celestials originally came from this universe.

    Earth-82432

    In a universe where Korvac conquered the universe, The Celestials were all killed when he absorbed every living thing into himself and tried to become one with Eternity.

    Earth-89721

    Countless generations after the so-called \" Evolutionary War\" mutated Humanity into a race of super-intelligent psychics; The Celestials judged them a threat to the totality of Creation and tried to destroy Earth. But when they confronted Humanity, the mutated humans used their combined mental might to erase The Celestials from existence.

    The Age of Apocalypse

    Everything was relatively the same up until a lone Celestial Gardner visiting Earth during the reign of Apocalypse was somehow defeated by the tyrant himself, who stole one of the Life Seeds it cultivated while on Earth. It's old suit of armor, which has more than likely abandoned in favor of a new one, now lies in an undisclosed location somewhere on Earth-295, where it is slowly being consumed by the plants and trees of the forest it lays on top of.

    Marvel Adventures

    While traveling through time, The Avengers caught a glimpse of Arishem the Judge making his way through a desolate canyon at some unknown point in history. They never learned what he was doing there nor did they have any time to investigate before they were forced to move on to another time period.

    Earth-4280

    \"The
    The Celestials of Earth-4280

    In this reality, The Celestials were driven insane by their own power and came to believe that they were the true Gods of their Universe and all others beyond it.

    When they began forcing the lesser races to worship them, the Reed Richards of their Earth attempted to stop them on his own but failed and was captured where they spent hours torturing him while sifting through his memories.

    Through their Reed, they discovered the existence of The Council of Reeds and extracted every bit of information they could about it and the things they kept stored in their Citadel like handfuls of Ultimate Nullifiers and even three Infinity Gauntlets.

    Their dreams of Multiversal conquest would be realized should they manage to take control of The Council's resources.

    A host of Celestials, lead by Arishem the Judge, attacked The Council and attempted to force them into submission, when they realized that the Reeds were not going to yield to them, Arishem and the others began systematically killing off each and every Reed in their sight.

    One Reed, who could access other realities using his own body as a portal, sacrificed himself so that the last Infinity Gauntlet-wielding Reed could unleash its power upon them and create a distraction large enough for his fellow Reeds to escape.

    Earth-616's Reed along with many others began making their escape only to find Eson the Searcher hot on their tail, who promptly ignored most of the other Reeds and focused his attention on Earth-616's, who managed to return to his Universe and slice Eson's hand off by closing the portal behind him just seconds before the immense Celestial managed to snatch him up. Reed of Earth-616 returned shortly afterward with a plethora of weapons capable of harming and temporarily exterminating their Celestial adversaries.

    \"The
    The Great Escape

    When their ranks began to diminish, the Celestials retreated and escaped into other universes, with several Reeds hot on their tails. Sometime later, Valeria Richards of Earth-616 discovered the still active portal leading to The Council's citadel and ventured within to find Eson the Searcher and three other unnamed Celestials surrounding the citadel, as if they were waiting for something.

    After managing to slip past them unseen, Valeria found the brain-damaged versions of Doctor Doom the Reeds had been keeping locked away in their basements running amok, though the racket they were causing did not capture the attention of The Celestials.

    It wasn't until the remaining versions of Valeria's father emerged from hiding that The Celestials began to react. With time to spare, some of the Reeds and Valeria managed to flee from them before one of the unnamed Celestials' heat blast could incinerate them.

    The Celestials of Earth-4280 are currently in control of the Citadel and expanding their \"religion\" and influence across the Multiverse. On a list of numerous potential threats to Earth-616 compiled by Reed, their invasion of Earth via \"The Bridge\" was set at Medium status.

    Valeria's later recollection of the events that took place following the escape to Earth-616 indicate that the Celestials of Earth-4280 have the ability to combine into a single entity. Knowing somehow that Earth would unwillingly play host to the mad ones, Galactus had become increasingly concerned about the being within The Galactus Seed, whom he feared would be unleashed should The Celestials annihilate Earth in a fit of mad rage.

    \"Victory
    Victory is Nigh

    To ensure that he could get back to Earth before things get too far out of hand, Galactus gave Reed Richards an \"Arc\" to summon him when the time is right. Later, Doctor Doom, Kristoff Vernard, The FF and the last survivor of the interdimensional Council of Reeds confronted four of the mad ones occupying the Council's old citadel and engaged them in battle with the robot armies of Latveria to aid them.

    The fight eventually came down to Franklin Richards facing off against the mad ones and though for a moment it seemed he might win, the mad ones shrugged off the alterations he made to reality during their fight and infiltrated his mind, filling his mind with strong negative thoughts that shut him down in a matter of seconds.

    Now that they stood triumphant, one of the mad ones proceeded to force the gateway to 616 permanently open by detaching its fingertips and jamming them in the portal.

    Realizing that invasion was now imminent, the group fell back to 616 with the exception of Doom and the last of the Reeds, who stayed behind to hold the mad ones at bay so that the others would have more than enough time to find a way to close the portal and prevent the mad ones from crossing over.

    Franklin, using his abilities, was able to dislodge the fingers of the Celestial keeping the portal open but shortly afterward the fingers combined to form a \"Hand of God\" which quickly took hold of Leech and fused with his body, turning him into a mini-Celestial of sorts programmed with one sole directive: keep the portal open and stop anyone who tries to close it. Meanwhile, the alternate Reed attempted to use The Ultimate Nullifier on the Mad Ones, specifically Eson.

    \"The
    The End Begins Now

    However, Reed was unable to maintain his focus on killing Eson and was destroyed by the imploding Nullifier. Afterward, The Celestials stopped their assault and instead offered Doom a choice: move aside and let them through or die in agony. Doom chose the latter by refusing to move and was promptly incinerated by all four of them.

    With Doom out of the way, the Mad Ones forced their way through the tiny portal, tore apart Doom's Castle and immediately located the being they referred to as the \"Final Anarchist\" (Earth-616's Reed Richards) and then teleported away.

    The Mad Ones reappeared moments later in the midst of a major conflict between the allied forces of The Inhumans, The Annihilation Wave, The Fantastic Four and Galactus who were fighting The Kree at the time and assaulted Galactus directly, who referred to them as \"his true reason\" for being present at the site of the battle.

    The Celestials, having not anticipated Galactus' presence on the battlefield, became rather perturbed and uneasy. They were quick to threaten Galactus with a painful death should he not leave at once. When Galactus revealed that he was fully aware of their most secretive plots, one of the Mad Ones freaked out and together with his brethren dog piled on top of Galactus and began viciously attacking him.

    Galactus managed to kill one of The Celestials, but upon doing so prompted the others to merge with their fallen brother and become a massive \"Super-Celestial\" who, with a single burst of energy, injured Galactus gravely and sent his limp body crashing to Earth. The Combined Mad One then arrived on Earth to finish Reed Richards off. Luckily, he was able to use The Anvil to separate The Mad Ones from one another.

    \"The
    The Combined Mad One

    After a quick moment of silence for their fallen brother, The Mad Ones retaliated with extreme force and wrecked The Anvil. The Human Torch attacked them with a supernova-styled attack that was shrugged off even by the Celestial whose armor had been torn into.

    The Celestials retaliated and overwhelmed Johnny without even trying. With Johnny defeated, The Celestials turned their attention on the others and knocked most of them unconscious, including their target, who they were very eager to get their hands on.

    However, before they could the still very-much awake Invisible Woman tore into the arm of the one who was inches away from crushing Reed and stood before them in defiance.

    The Celestials began attacking her without mercy, pelting her with one blast after another, but amazingly her shield managed to block most of the attacks. Ultimately, however, the constant barrage of energy blasts pushed The Invisible Woman beyond exhaustion making it impossible for her to defend Reed any further.

    \"A
    A beacon of hope in the midst of despair fills the Heavens.

    The Celestials gave her one final warning to move aside, but she once again refused by telling them to go to Hell. The Celestials then powered up for one final attack only for it to be interrupted by a brightly shining light coming from above.

    When they looked up, the Mad Ones saw future incarnations of Franklin and Valeria emerging from a rift in time, both ready to strike at the Mad Ones with their own brand of cosmic power.

    Perplexed by the sight of another Franklin, they made a revised observation of the same observation they made of the younger Franklin...only this time they considered him to be a greater threat than his younger self.

    The future Franklin forcefully teleported the Mad Ones into a nearby gas giant to give everyone a bit of respite before the final conflict could begin. The Mad Ones returned moments later and engage Franklin in fierce combat. The Purple-Blue Celestial was the first to fall before Franklin's might, which further enraged the remaining Mad Ones.

    \"The
    The Final Battle Begins.

    Eson and The Gray-Green Celestial began speeding up their attacks in an attempt to finish Franklin off faster before he could get another chance.

    Unfortunately for The Celestials, Franklin was able to rejuvenate Galactus and supercharge his powers using the power given to him by his younger self thus placing the two Celestials at a serious disadvantage.

    The Gray-Green Celestial died shortly after Galactus' arrival while Eson was destroyed by Franklin's ultimate sacrifice. With Eson's destruction assured, the threat to our existence posed by The Mad Celestials had finally ended, at least on Earth-616, that is.

    During the conflict Nathaniel Richards explained that all of the events that lead up to the final fight with The Mad Celestials had actually happened countless times before in other realities prior to occurring in 616 and that he was always forced to watch Reed die at the hands of The Mad Celestials.

    \"The
    The Cycle Will Begin Anew...Forever.

    An outcome which was prevented on 616 thanks to the choices Reed made in life, specifically the ones that lead to Franklin's birth. Despite all of this, however, the outcome in which The Mad Celestials won the final conflict continues to affect the futures of other universes and will continue to do so until the end of time.

    Whether any of the other Mad Celestials will one day venture to 616 to avenge their fallen brethren is uncertain. What is certain, however, is that they will always be out there, spreading their insanity further and further across the Continuum.

    Unknown Future

    \"The
    The Celestial Engine

    In an alternate future that has been destroyed by the Fault, the Badoon enslaved the Celestials using the last Cosmic Cube and created what they called the Celestial Engine.

    The Celestial Engine surrounded The Fault and used the combined power of The Celestials, the Cube and the Sun to create a force field strong enough to hold the Fault from consuming what remained of the universe.

    The Engine was destroyed by the Guardians of the Galaxy of that time and some members of the Guardians from the 616 reality. After it broke it's alignment, this reality was consumed by the Fault, killing all of The Celestials.

    But they did not seem to mind this fate, for they were finally free of the Badoon's control, free of the pain and agony they experienced as they spent millennia keeping the ever-expanding Fault from consuming Earth's Solar System. They were at peace now and could rest easy as they moved on to their next lives.

    Earth-9997 (Earth X)

    How The Celestials began as a human-like race from the same universe as Galactus, their hunger for greater knowledge was so immense that they developed at a rather quick pace, so quick that they reached the apex of technology and understanding of the Universe faster than they expected. With the threat of stagnation on the horizon, The Celestials became desperate to find something else they could study and learn from.

    Their own bodies proved to be their salvation, because they had focused all attention on learning about everything else, The Celestials knew very little about the inner workings of their own unique biology. Thus began a long series of experiments that resulting in their ascension into immortal beings made of pure anti-matter energy. Unfortunately, their actions had resulted in the loss of their ability to reproduce and ability to maintain cohesion on a physical plane of existence.

    To fix the latter problem, they built massive armored suits which they could control remotely from hyperspace in order to interact with the physical world, however the threat of stagnation was still approaching and then, the rotted pillars holding their birth-reality together collapsed. Apparently, their experiments had destabilized the very fabric of time/space, causing it to implode.

    However, their actions also lead to The Enigma Force transforming Galan of Taa into Galactus, a young woman into the physical embodiment of the new Death Abstract and the rise of The Phoenix. Not only that but it had saved them from stagnation, with all of the new realities created in the wake of the original universe's death, they could literally do anything they wanted and feed their hunger for knowledge in the process.

    In this reality, the first encounter between the Celestials and the Watchers resulted in the enslavement of the latter species due to their failure to stop the birth of the original Galactus. As punishment, The Celestials forced them to watch over the embryos they laid inside the hearts of planets. When a Fifth Host arrived to destroy Earth and bring about the birth of a new Celestial, they were driven back by Galactus (Franklin Richards), who then removed the embryo from the heart of the world and consumed it.

    When The Celestials and Elders of The Universe were shut off from the worlds they were once able to freely manipulate, they focused all their rage on Franklin, who was saved by the new Eternity, a combination of his own Father and the fully restored Cosmic Consciousness of Captain Universe.

    Earth-1610 (Ultimate Universe)

    \"Xorn
    Xorn and The Celestials of Earth-1610 (Ultimate Universe)

    In the Ultimate Universe, The Celestials are not nigh-omnipotent armored space gods but rather a group of forcibly-evolved humans that willfully serve under the benevolent rule of Kuyan-Yin a.k.a. Xorn in the \"Celestial City\" portion of Tian. Which is home to their all-enlightened ideologues.

    When Liz Allen, Karen Grant and Derek Morgan of \"Ultimate X\" learned more about how life in Tian worked and that by staying they could finally break free from S.H.I.E.L.D.'s control and escape Humanities prejudice and hate towards them, asked for asylum, which Xorn granted without a second thought.

    Powers and Abilities

    Standing well over 2,000 feet tall, each Celestial possesses godlike powers beyond imagination, capable of manipulating matter and energy on an immeasurable scale. The Celestials have shown the ability to move planets at will, lay waste to entire worlds that they deem unfit for survival, destroy artifacts that are thought to be indestructible, such as the Asgardian Destroyer Armour, and even contain and destroy entire universes.

    When the Skyfathers of Earth's dimension: Odin, Zeus, and Vishnu combined their energies into a single attack powerful enough to reduce an entire galaxy to nothingness and attacked the Celestial leader known as Arishem the Judge, the combined might of the Skyfathers failed to even faze Arishem in the slightest. Arishem the Judge responded by threatening to permanently seal off the dimensional links to Asgard, Olympus, and Nirvana along with the rest of the realms belonging to other Godheads, which frightened the Skyfathers to the point that they went down on their knees and acknowledged their inferiority to the all-powerful Celestial leader.

    Despite their great power, it is still possible to \"injure\" a Celestial. One such instance was when a 2,000 feet tall Odin while wearing the Asgardian Destroyer Armour infused with the souls of all the Asgardians (except for Thor), wielding the Odinsword managed to cut off Nezzar's arm, although the Celestial regenerated instantly. Tiamut the Dreaming Celestial has gone as far as stating that it is impossible to truly kill a Celestial. However, a Celestial can be imprisoned by its fellow Celestials.

    Nathaniel Richards suspected that the source of the Celestial's powers were from Hyperspace. This theory would prove how Invisible Woman was able to crack a hole in Exitar the Exterminator's armor and cut off his link to the physical realm, destroying his immense armor in the process. The Celestials are also capable of communicating with their counterparts from every reality and timeline in existence no matter what points in time they are inhabiting while communicating. This includes Past to Present, Past to Future, Present to Future and vice versa.

    Other Media

    Film

    Guardians of the Galaxy (2014)

    \"A
    A recording of the Celestials

    The severed head of a Celestial appears in the Guardians of the Galaxy movie. It is shown being used as a space station called Knowhere. Eson the Searcher is also seen in a flashback, wielding the Power Stone.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-16593/","id":16593,"name":"The Celestials!","issue_number":"2"},"id":13343,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/457817-celestials_daniel_acu_a02.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/457817-celestials_daniel_acu_a02.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/457817-celestials_daniel_acu_a02.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/457817-celestials_daniel_acu_a02.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/457817-celestials_daniel_acu_a02.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/457817-celestials_daniel_acu_a02.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/457817-celestials_daniel_acu_a02.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/457817-celestials_daniel_acu_a02.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/457817-celestials_daniel_acu_a02.jpg","image_tags":"All Images,Earth-616 Celestials"},"name":"Celestials","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/celestials/4060-13343/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13344/","count_of_isssue_appearances":0,"count_of_team_members":73,"date_added":"2008-06-06 11:27:48","date_last_updated":"2020-07-26 10:54:46","deck":"The Eternals are an evolutionary offshoot of humanity living on Earth who possess greater powers and longer lifespans than the mainstream human race.","description":"

    Origin

    \"No

    The Eternals first came into being about a million years ago when the First Host of Celestials arrived on Earth to perform genetic experiments on the nascent human race. To test the adaptability of the human gene, the Celestials accelerated the evolution of a handful of subjects and gave them the genetic potential to mentally manipulate limited quantities of cosmic energy, as well as other superhuman traits. Thus the Celestials created the race of Eternals, an evolutionary offshoot of humanity. The Celestials also performed similar experiments on subjects that led to the creation of the Deviants, another offshoot of humanity.

    The Celestials altered the structure of the DNA complexes of the first generation of Deviants. The result was an unstable genetic code that radically changed the physical characteristics of Deviants with each generation. Thus a Deviant child will greatly differ in appearance from either of his or her parents. The Celestials experiments also involved implantation of latent genetic material in specimens of humanity's ancestors that would one day permit benevolent mutations in human beings.

    Creation

    Jack Kirby, the King of Comics, created the Eternals. Kirby was the writer and illustrator for their first appearance in the Eternals vol 1 #1 (7/1976). John Verpoorten was the inker for this issue.

    Team Evolution

    \"No

    Eternals are an extremely long-lived, possibly unaging, god-like but not truly immortal race. They can be killed if their molecules are dispersed over a large enough area. There are few Eternals due to their low birth rate. Though they are two separate species, Eternals and humans are capable of having children together when they mate but when a child is born of any Eternal and Human union the baby will always be human. Eternals have sworn to protect humans from their cousins the Deviants. Eternals also have higher technology than the human race. Eternals faced a civil war over if they should conquer other races. One side was lead by Kronos who said they shouldn't while the other was lead by Uranos who said they should.

    Kronos side won and Uranos left Earth and traveled to Uranus where he and the rest built a civilization. Uranos and his group built a spaceship and attempted to return to Earth to start another war but they were attacked by a Kree ship. The survivors among Uranos' group were forced to land on Titan, Saturn's moon, giving rise to an Eternal civilization there. The Kree captured one of the Eternals and did experiments on him. This led the Kree to go to Earth and experiment on humans which led to another offshoot of humanity, the Inhumans. Still powerful but not on the Eternals level.

    Kronos started experimenting in cosmic energy until it went wrong and a destructive energy surge went through the Eternals' city, Titanos. The surge destroyed Titanos and bombarded the Eternals in irradiated energy which activated latent genes that gave them their long lifespans, virtual invulnerability and they found that they could manipulate cosmic energy. This gave them god-like abilities. The accident left Kronos' atoms scattered in an immaterial state but his astral form still survives on this plane of reality, quietly observing life in the universe.

    \"The
    The Uni- Mind

    After the accident, Kronos' sons, Zuras and A'Lars, initiated the first union of the Uni-Mind, a collective melding of the minds and bodies of the Eternals, to decide upon Kronos' successor as leader. Zuras was chosen as leader and to avoid further conflicts A'Lars left Earth and journeyed into outer space. A'Lars eventually discovered the war-torn remains of the Eternal civilization on Titan along with one survivor, Sui-San. The two fell in love and in time repopulated Titan together as well as producing Thanos and Starfox among their children.

    A'Lars would be known as Mentor. Since Sui-San's latent gene was not activated by the cosmic energy of Kronos' lab accident, the Eternals of Titan are not as powerful or as long-lived as the Eternals of Earth. During the rule of Zuras on Earth, he directed the construction of the city of Olympia in a mountainous region in Greece. Two other Eternal cities were founded as well. Polaria in Siberia and Oceana in the Pacific. Olympia lay near the principal nexus between Earth's dimension and that of the Olympian Gods on Mount Olympus.

    Zuras and Zeus, leader of the Olympian gods, made a mutual non-interference pact between their two races. The people of ancient Greece and Rome often confused the Olympian Eternals with the Olympian Gods. Over the centuries, many Eternals went on to live lives among ordinary human beings. The Eternals have also continually fought the Deviants' attempts to gain power or to subjugate humanity.

    Around the 10th Century, the Council of Godheads of Earth met with the Third Host of Celestials with the Eternal Ajak speaking for the Celestials. A pact of non-interference with humanity was agreed upon by the Celestials, Earth's Godheads, the Eternals and the Deviants until the arrival of the Fourth Host. The Eternals and the Deviants formed a truce until the Celestials' return.

    In the late 20th Century, the Fourth Host of Celestials arrived on Earth to pass judgment and the Deviants renewed hostilities against the Eternals. The Deviants attempted to sabotage the arrival of the Fourth Host which was prevented by the Eternals. Two Deviants, Karkas and Ransak the Reject, became allies of the Eternals and left Lemuria to become residents of Olympia.

    Fearing that the Celestials would destroy Earth if they judged against its people, Zuras led the Eternals against the Celestials, who retaliated by killing him. The Celestials nevertheless judged in Earth's favor and left Earth. Zuras's daughter, Thena, assumed the position of leader and Zuras is put to rest in Olympia.

    Later, the Eternals are taken prisoners when the Deviants invade Olympia. The Eternals are able to escape and defeat their captors with the timely aid of James Rhodes as Iron Man.

    During this conflict, Thena was in mental contact with Zuras' spirit before it left this plane of reality, and thus learned that the Eternals were to leave Earth to explore space now that the Celestials had departed. The Eternals argued on this subject for a time and resolved that this matter can only be settled by joining in the Uni-Mind. Months later in New York, some Avengers attended a party hosted by an Eternal called Sersi.

    When other Eternals crashed the party to take Sersi to join the Uni-Mind, the Avengers assumed she was being kidnapped and called in the rest of the team to follow them to the Eternals' city of Olympia. The Eternals explained to the Avengers that Sersi was in no danger as well as the relevance of the Uni-Mind. They soon learned that one of the Avengers among them, Starfox, was also an Eternal and invites him to join the melding of the Uni-Mind.

    Despite interference from Maelstrom wishing to siphon power from the Uni-Mind for himself, the Eternals survive this conflict with the aid of the Avengers. The Eternals did reach a decision as the Uni-Mind and they all agreed that the Eternals should leave Earth. Virtually all of Earth's Eternals left for space in the form of the Uni-Mind. However, the Eternals' collective consciousness in the Uni-Mind decreed that a small number of Eternals who were particularly involved in Earthly matters remain behind.

    Among the Eternals who remained on Earth were Thena, their ruler, Ikaris, Sersi, Makkari, Gilgamesh, Pixie, Sprite, Cybele, Phastos, Khoryphos and Interloper. They also discovered the existence of Eternals on Titan and what happened to A'Lars (Mentor) as a result of Starfox being part of the Uni-Mind. The Eternals have helped Earth's heroes, particularly the Avengers, against several menaces. Sersi and Gilgamesh are also members of the Avengers but not on active status.

    In the Neil Gaiman run, the Eternals had their memories erased. Sprite, an Eternal who will forever remain a child, was tired of people treating him like a child. So he erased the Eternals' memories and changed their perception of history. Mike Curry, a Doctor, dreamt of being Makkari and meeting Ikaris, one of the few Eternals who remembered more than the others, found more and more memories surfacing Mark/Makkari dismissed them as symptoms of overwork whilst believing he was losing his mind. Sersi was now a fashionable party planner. Thena was a weapons designer working for Stark Industries and was happily married with a young child. Druig was a politician in Vorozheika. Sprite had become a teeny sensation with tv shows, movies and other assorted merchandise. Zuras was a homeless drunk. Ikaris was kidnapped by a group of Deviants and tortured, seemingly in an attempt to kill him at the behest of a mysterious employer. When a party for various celebrities and dignitaries held to increase awareness of Vorozheika was attacked by armed gunman, several of the Eternals present briefly used their powers, albeit instinctively. This attack was made by rivals of Druig who sought to eliminate him. Makkari was the primary saviour of this incident, his superspeed kicking in and allowing him to remove the hail of bullets and disarming the attackers. Thena was taken by the armed gunman but escaped later on after remembering she was a warrior. She contacted Iron Man who quickly found her location. In the aftermath of the botched attack, Druig found his powers, if not his memories, awoken and set about establishing himself as the new ruler of Vorozheika by particularly brutal and sadistic means. The mysterious employer of the Deviants was revealed to be the Eternal Ajax who was entrusted with the task of monitoring events by Zuras prior to Sprite's reality warping.

    \"Makkari
    Makkari communicating with the Dreaming Celestial

    Ikaris remembered (after being atomized and regenerating in the Eternal bastion at the North Pole) and gathered the newly awoken Eternals (Sersi, Makkari and others) in a bid to stop a Deviant plot to awaken a sleeping Celestial (Ikaris was the only fully returned Eternal, the others had merely had their memories returned). It transpired that the sleeping Celestial was the same one who created the Deviants all those millennia ago and as a result was punished by the other Celestials. This Celestial's awakening was an event dire enough to worry the Watcher and even remind Galactus what it is like to know fear.

    The Eternals gathered and formed a Uni-Mind in the hope they could either talk to or fight the Dreaming Celestial. Instead, it merely shut them off. This Celestial spoke to Makkari (who was created specially by this Celestial and as well as his super-speed has other interesting features hard-wired into his DNA) and told him that it will judge the Earth, but was unclear how long it would take. It also alluded to a mysterious threat called the Horde (the Locusts of the Universe?) which will come to Earth and consume all life. Following this the Celestial reverted to being dormant, becoming something of a tourist attraction in San Francisco. The Eternals and the Avengers reached something of a peaceful resolution. Sprite, still completely human and completely unrepentant, tried to escape on a train but was found by Zuras who broke his neck and left the body.

    Shortly after this an army of Deviants marched upon the Eternals' fortress. Their leader challenged Makkari to a duel. Makkari accepted, easily dodging the Deviant general's attacks. When it came to his own, instead Makkari spared the Deviant's life, fulfilling a Deviant prophecy regarding a being called the Skadrach. After this, Zuras, the Chief Eternal, orders Ikaris and Makkari to go out and search for the remaining Eternals. Unfortunately, the various loose ends have yet to be tied up as this series has yet to be followed.

    When dead Celestials began raining down from the skies, Iron Man and Doctor Strange sought out the Eternals. The two heroes arrived to find all of the Eternals dead, save for the fatally wounded Ikaris. Before dying, Ikaris revealed that the Eternals had gone mad and destroyed themselves after learning the truth behind their origin. They were not made to protect the human race, but rather cultivate humanity as a \"pathogen\" against the Horde. With his last words, Ikaris begged Iron Man to stop the Final Host from unleashing the Horde.

    Powers and Abilities

    \"Ikaris
    Ikaris projecting eye beams

    The Eternals’ bodily cells contain cosmic energy, and they maintain constant mental control over every molecule of their bodies. Eternals are virtually immortal, and can be restored to life even if the molecules of their bodies are scattered. All Eternals possess the capacity for superhuman strength, telepathy, flight, teleportation, illusion-casting, transmutation of organic and inorganic matter, and the generation of various forms of energy from their bodies, including force, heat, light, and other electromagnetic radiation. Some Eternals have devoted themselves to specializing in a particular facet of their powers, and can increase their proficiency in one area by decreasing their power in another. The Eternal who serves as Prime Eternal can generate blue flame which will merge anyone who passes through it into a Uni-Mind, a powerful psychic entity which embodies the collective power of every individual who created it. A Uni-Mind requires the participation of at least seven Eternals in order to succeed.

    \"Eternals
    Eternals taking flight

    The Eternals have complete control over their molecules. This can grant them shapeshifting abilities, healing abilities and many others. They can draw oxygen from water. They can also breath in different environments. They do not show signs of fatigue from physical activity such as running for an unlimited time without getting tired. Extended use of powers can cause fatigue. The Eternals have been shown to come back from getting their molecules dispersed. As long as a Celestial machine is running they cannot die. Their cosmic powers grant them a number of other abilities such as:

    • Accelerated Healing
    • Due to the experiments that Deviants have done on Eternals they can survive or regenerate from most anything. The Deviants have tried to fry and liquefy the Eternals organs, putting an Eternal in a smelter, a car crusher and an acid bath only for the Eternal to heal from it. They detonated a bomb in front of one and then the Eternal fell off a very high building only to heal in two days. They have tried to blow the Eternal apart from molecule to molecule and atom to atom only for the Eternal to recover.
    • Reincarnation
      If the Eternals die they will awake in the reactivation chamber which is underground in Antarctica, in a few days.
    • Super Strength
    • \"No
      The strength of an Eternal varies. An Eternal can focus their cosmic energy to increase their strength. Physically the strongest Eternal is The Forgotten One, Gilgamesh, who is capable of hurting Thor.
    • Project blasts: Blast of cosmic energy through their eyes or hands.
    • Flight: Ranging from minuscule levitation to supersonic travel. The Eternal called Ikaris is known as \"the Flyer\" and is capable of flying at 850 miles per hour.
    • Telepathy: Varying degrees of telepathic abilities.
    • Teleportation: They can teleport over great distances. Sersi has been shown to teleport across the United States. However, they find this method of travel unpleasant.
    • Transmutation: Change the objects size, shape and molecules.
    • Force-Field: The Eternals have a very thin force field that is so close that it is practically in their skin. This force field reduces the strength from physical attacks, heat and pressure.

    Specialization

    Several Eternals have taken all their cosmic power and focused it into the development of one power, ability or area while also using their extensive lifespans to master those same powers and abilities.

    Sersi: Has channeled and used her cosmic energy to develop the power and mastery of molecular manipulation/transmutation.

    Gilgamesh: Has harnessed his cosmic energy to develop vast levels of superhuman strength, stamina and durability; levels higher than any other Eternal.

    Ikaris: Has used his cosmic power to enhance his all of his senses and his ability to fly.

    Makkari: Channeled his cosmic power to develop super-speed unmatched or surpassed amongst his fellow Eternals.

    Interloper: Has focused his power into developing the ability to sense and show the fear of others.

    Ajak: Has developed his mental abilities in the area of language and communication.

    Other Media

    Film

    The Eternals (2021)

    \"No

    At San Diego Comic-Con 2019, it was announced that Marvel Studios would be producing a live-action Eternals movie as part of Phase 4 of the Marvel Cinematic Universe. Chloe Zhao (who directed the the acclaimed indie drama The Rider) will direct the film, while the cast includes Richard Madden as Ikaris, Gemma Chan as Sersi, Angelina Jolie as Thena, Kumail Nanjiani as Kingo, Lauren Ridloff as Makkari, Brian Tyree Henry as Phastos, Lia McHugh as Sprite, Salma Hayek as Ajak, Ma Dong-seok as Gilgamesh, Barry Keoghan as Druig and Kit Harington as Dane Whitman.

    The film was originally slated for a November 2020 release, but was delayed to February 2021 because of the COVID-19 pandemic.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-119368/","id":119368,"name":"The Origin of the Red Raven","issue_number":"1"},"id":13344,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/326270-83077-eternals.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/326270-83077-eternals.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/326270-83077-eternals.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/326270-83077-eternals.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/326270-83077-eternals.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/326270-83077-eternals.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/326270-83077-eternals.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/326270-83077-eternals.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/326270-83077-eternals.jpg","image_tags":"All Images,Earth-616 Eternals,The Eternals"},"name":"Eternals","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/eternals/4060-13344/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13345/","count_of_isssue_appearances":0,"count_of_team_members":55,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-10-15 14:10:13","deck":"The Deviants are an evolutionary offshoot of humanity created by the Celestials' experiments on prehistoric humans around a million years ago.","description":"

    Origin

    Around a million years ago, the Celestials of the First Host arrived on Earth to perform experiments on humankind. The Celestials altered the genetic code in a group of prehistoric humans that resulted in the first generation of Deviants. The result was an unstable genetic code that radically changed the physical characteristics of Deviants with each generation. Thus a Deviant child will greatly differ in appearance from either of his or her parents.

    The Celestials' also performed different experiments on other prehistoric humans that resulted in the first generation of Eternals. The Celestials' other experiments produced the potential for mutation in humankind. The unstable genetic code of Deviants gives them power and abilities superior to humans but inferior to the Eternals' god-like powers. The non-human appearance of Deviants is also the result of their unstable genetic code.

    Creation

    Jack Kirby, the King of Comics, created the Deviants. Kirby wrote and illustrated their first appearance in the Eternals vol 1 #1 (7/1976). John Verpoorten was the inker for this issue.

    Team Evolution

    At first, the Deviants kept themselves hidden underground founding the vast empire of Subterranea but the Deviants and the Eternals would have conflicts with each other. The Deviants developed a civilization and a technology more advanced than humanity. Around 18,500 B.C., the Deviants came to be the dominant race and enslaved humans while certain Eternals such as Ikaris and Gilgamesh opposed the Deviants. The conflicts continued as the Deviants relied on science and technology for advantages against the Eternals' superior powers and strength. The Deviants also lacked immortality and experimented to increase their life-spans.
     
    The Deviants founded a city known as the City of Toads in the country of Lemuria on the Mu continent. By 18,000 B.C., the Deviants established a powerful empire and the only significant human opposition came from Atlantis. During the arrival of the Second Host of Celestials, the Mu continent suffered a devastating catastrophe that sank the landmass along with Lemuria and Atlantis. The Deviant Emperor Phraug had ordered the conquest of Atlantis. 
     
    Atra, a human priest in Lemuria who worshiped Set, opposed the Deviants and had plans to conquer Lemuria with his allies, the Serpent Men, the children of Set. Atra crafted the Serpent Crown as a conduit for Set's power to achieve this goal. Phraug, a worshiper of Set as well, also coveted the Serpent Crown from Atra.
     
    Kamuu, ruler of Atlantis, used magma pits near the city, normally used for heating Atlantis, to destroy invading fleets from Lemuria. The release of the pits' destructive power caused volcanic eruptions across the region that sank Atlantis. 
     
    Atra had begun his attack on Lemuria as the first being to wear the Serpent Crown but Set did not allow his power to be used on his Deviant worshipers. The Deviants in Lemuria also spotted the Celestials' ship and fired upon them. The Celestials responded by firing upon Lemuria with destructive force that sank Lemuria as well. Phraug and Atra both died in the destruction of Lemuria and the Serpent Crown was lost for centuries.
     
    The combination of explosions and eruptions caused the whole continent of Mu to sink into the ocean. The Deviant survivors of what came to be known as the Great Cataclysm moved underground. The southern half of Lemuria had sank underground and the sea had been shut out from this area. Lemuria and the capital, the City of Toads, was re-established as the Deviants' subterranean kingdom. 
     
    A Deviant survivor known as Warlord Kro appeared to have the unique trait of immortality produced by the Deviants' unstable DNA. Kro kept this knowledge a secret from his Deviant brethren. Kro feared his own dissection as research into immortality and pretended to be his own descendants. 
     
    The Deviants replaced the loss of their human slaves by creating cloned slaves but these clones either rebelled against or proved unable to serve the Deviants. These clones branched off into different subterranean factions and later became known as the Gortokians (the first  Subterraneans), the Lava Men (mutated branch of Gortokians), the Moloids (servants of Mole Man) and the Tyrannoids (servants of Tyrannus). 
     
    The Deviants developed an entire religion focused on worshiping a rogue Celestial known as the Dreaming Celestial who was punished for an unknown crime. The Celestials have erased the Dreaming Celestial's true name from their records and keep his body inert in an underground vault. 
     
    The Deviants somehow believed that the Dreaming Celestial was punished for their creation. The Deviant priesthood also believed in visions of the Deviants' revenge on the Celestials. The Deviant priests prepared for this event by gathering their most monstrous Deviants as an army and placed them in suspended animation.
     
    The Deviants and the Eternals continued to have conflicts with each other until the arrival of the Third Host of Celestials around the 10th Century. The  Council of Godheads of Earth met with the Third Host of Celestials with the Eternal Ajak speaking for the Celestials. A pact of non-interference with humanity was agreed upon by the Celestials, Earth's Godheads, the Eternals and the Deviants until the arrival of the Fourth Host. The Eternals and the Deviants formed a truce until the Celestials' return. 
     
    In the late 20th Century, the Fourth Host of Celestials arrived on Earth and the Deviants renewed hostilities against the Eternals. The Deviants attempted to sabotage the arrival of the Fourth Host which was prevented by the Eternals. Two Deviants, Karkas and Ransak the Reject, became allies of the Eternals and left Lemuria to become residents of Olympia.   
     
    Brother Tode
    , the Deviants' ruler at the time, ordered construction of New Lemuria beneath New York and restoration of Lemuria after being damaged by the Celestial, Eson. Thor stopped the construction and New Lemuria was destroyed as a result. The Fourth Host finally passed judgment and judged in favor of Earth. The Celestials left Earth while Brother Tode ordered the invasion of the Eternals' city of Olympia and imprisoned all the Eternals using brain-mines. 
     
    The Eternals are able to escape and defeat their captors with the timely aid of James Rhodes as Iron Man. Kro managed to escape while the rest of the defeated Deviants, which included Brother Tode and most of the ruling class, were transformed and fused into a giant block of stone by the Eternals. The stone cube remained in Olympia for several months.  
     
    When the Uni-Mind left Earth on a journey through the universe, the Uni-Mind brought the giant cube with it. Later, the restoration of Lemuria was finished by the remaining Deviants. Ranar, Brother Tode's son, demanded his right to succeed his father as ruler. A high ranking lord in the Deviant priesthood, Ghaur, refused Ranar and killed him. 
     
    Warlord Kro was put into place as the Deviant ruler of Lemuria while Ghaur and the priesthood were the real power in the empire and used Kro as a puppet leader. Ghaur had plans for world domination and to gain significant power which was usually opposed by Earth's heroes, the Eternals and rogue Deviants such as Kro, Karkas and Ransak the Reject. 
     
    The Deviant empire in Lemuria went through different terms of rulers when Ghaur was eventually defeated and apparently slain in battle. Later, Kro stepped down as ruler leaving another Deviant, Visara, to take his place. Visara was later killed in a rebellion against his rule. 
     
    Ghaur was resurrected and returned to assume control of Lemuria. Some time later,  Apocalypse launched an attack on Lemuria that caused mutations in the Deviant populace. Afterwards, Kro and Ghaur formed an uneasy alliance where both were forced to share power as rulers of Lemuria.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-16505/","id":16505,"name":"The Day of the Gods","issue_number":"1"},"id":13345,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/25733/1768011-_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/25733/1768011-_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/25733/1768011-_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/25733/1768011-_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/25733/1768011-_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/25733/1768011-_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/25733/1768011-_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/25733/1768011-_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/25733/1768011-_1.jpg","image_tags":"All Images,Main Gallery,The Deviants"},"name":"Deviants","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/deviants/4060-13345/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13357/","count_of_isssue_appearances":0,"count_of_team_members":100,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-09-14 15:14:33","deck":"An international group of the world's social elite run by mutants that consider themselves superior to other mutants in both their mutant abilities and social status.","description":"

    Origin

    The Hellfire Club is a centuries old organization with roots in Britain during the 18th Century. It's members were infamous rakes who used their connections within the club to further boost their social standing and to indulge their sexual excesses.

    Over time the club has evolved to include high-flying business men and women, as well as the profitable descendants of royalty and other Hellfire Club members. Being a member of the Hellfire Club is an illustrious boost among elite society. However, there is an even more esoteric sect of individuals who run the Hellfire Club, known as the Inner Circle.

    The Inner Circle

    The Club is run by a small group of influential members who form the infamous Inner Circle. Named after chess pieces, members of the Inner Circle will take on the titles of the Black and White (and later also Red) Kings, Queens, Bishops, and Rooks. The final position of Lord Imperial is reserved for the most powerful member of the club. Additionally, prominent members have also had assistants that did not have official titles within the club.

    The Inner Circle was not always mutant dominated, but few members in several generations were not mutants. The Inner Circle dominates the club and secretly influences the club's activities in order to achieve even more power and wealth.

    Creation

    The Hellfire club was created by Chris Claremont and John Byrne and it made it's first appearance in Uncanny X-Man #129.

    Claremont was inspired by The Hellfire Club of the '60s British TV series The Avengers in the episode titled \"A Touch of Brimstone\". One of the protagonists--Emma Peel-would inspire the designs for Emma Frost.

    The name of the Hellfire Club can be traced back to socialite clubs in the real world that dates back as far as 18th century of Britain and Ireland. Men of high social standing would gather to take part in \"immoral acts\" that would remain a secret. This mainly pertained to intercourse with young women who were hired. The first was founded in London in 1719. Over the decades, new clubs would spring up using the Hellfire Club name. The club motto at one was \"Fais ce que tu voudras\", which translates to \"Do what thou wilt\". One of the many historically significant figures include Benjamin Franklin during 1758. In 1781, a man by the name of Joseph Alderson created a club based off the Hellfire Club's original ideals while at Brasenose College in Oxford , but his version was called the Phoenix Society (later named the Phoenix Common Room).

    Team Evolution

    The Hellfire Club was originally founded in 18th century England by, Sir Francis Dashwood, Duncan Munro and Scotman John Stuart (Third Earl of Butte). It had some connection to King James I and retained some of his writings on the occult from the 16th and 17th centuries. In the 1760s, it functioned as a social club for the elite of British society. The Club not only provided its members with pleasures, often of sorts that violated moral standards at the time, but also sewed as a means for the members to consolidate their Influence over British economic and political matters. During the Revolutionary War, Philadelphia members tried to obtain secret information from Major General Wallace Worthington. In 1859 the club had to align itself with Apocalypse.

    \"Hellfire
    Hellfire Queens

    A number of the Club's most important members emigrated to the colony of New York in the 1780s, where they founded the new American Hellfire Club. Clemens and Knight served as its first leaders under their Club titles of Black King and Black Queen. The Club's headquarters was an abandoned church that stood on the site of the present day Hellfire Club mansion, located at what is now Fifth Avenue on Manhattan's East Side, only a few blocks away from the Avengers Mansion.

    Today's Hellfire Club counts among its members the wealthy, the powerful, and the celebrated from virtually all over the world. Membership is by Invitation only, but such Invitations are rarely turned down, for membership in the Hellfire Club Is universally regarded as the ultimate status symbol. Membership is also hereditary. Tony Stark and Norman Osborne have both been invited into the Hellfire Club.

    Major Story Arcs

    Council of the Chosen

    • White King: Edward \"Ned\" Buckman
    • White Queen: Paris Seville

    Edward Buckman invited many people into the Hellfire Club including Howard Stark, Warren Worthington Jr., and Sir James Braddock. Edward Buckman had a secret agenda he held from those in his Inner Circle, which was to eliminate all mutants by releasing the mutant hunting sentinels. After Shaw came under attack and his lover Lourdes Chantel was killed, Shaw had Emma Frost use her telepathy in order to control Buckman's mind and kill his entire council, then himself. With Buckman dead, Shaw took control of his Inner Circle as the Black King and renamed the Council of the Chosen to the Lords of the Cardinal.

    Lords of the Cardinal

    \"No
    \"No

    Shaw appointed Harry Leland to the Black Bishop position, and Leland introduced Emma Frost to the Hellfire Club and she attained the White Queen title. The cyborg Donald Pierce became the White Rook and the mutant known as Mastermind (Jason Wyngarde) joined as well. Shaw was looking for world domination, so he took over the manufacturing of the sentinels. The Hellfire Club tried to eliminate the X-Men because the X-Men fought for coexistence between humans ans mutants where the Hellfire Club wanted a mutant dominated world.

    \"Sebastian
    Sebastian Shaw and Tessa

    In a Mental battle with the Phoenix, Emma Frost was defeated and left traumatized for several years. Wyngarde began manipulating Phoenix trying to turn her to there side. When the X-Men tried to infiltrate the Hellfire Club they were discovered and the Phoenix turned on the X-Men and became the Black Queen. Phoenix eventually overcame Wyngarde's influence, which led to the the club's defeat. The Phoenix used her mental powers and left Wyngarde in a catatonic state but the damage to phoenix was already done. Wyngarde's mental tampering transformed her into the Dark Phoenix. Pierce tried to overthrow Shaw's rule and failed, resulting in his exclusion from the group.

    The ancient sorceress Selene became the Black Queen, followed by Emmanuelle da Costa as the new White Rook. Leland was later died after a battle with Nimrod forcing the Hellfire Club and the X-Men. Magneto became the White King along with Storm. Differences between Shaw and Magneto led to Shaw's dismissal and Magneto being retitled the Grey King. Magneto would soon leave the club. Selene and Emma soon plan to vote Shaw out of the club. Emma goes on to train her young mutant group the Hellions. Selene takes control and uses the group called the Upstarts to go against members of the inner circle to see who is the best to be in the Hellfire Club. Shinobi Shaw son of Sebastian Shaw, is a member of the upstarts and supposedly kills his father. Fabian Cortez tries to kill Magneto but fails. The Upstarts try to kill Emma Frost but she escapes and her group of Hellions are killed. The Upstarts soon turn against Selene.

    Shinobi's Inner Circle

    \"Shinobi's
    Shinobi's Inner Circle

    After killing his father and turning on Selene, Shinobi takes over the New York Branch as the Hellfire Club's new Black King. Shinobi offers membership to Psylocke (who inherited her membership from her father), Archangel and Storm, they all decline the offer. Shinobi asked Brian Braddock ( Captain Britain, Psylocke's brother) to join the club's London Branch as a Black Bishop to gain information on there activities. Captain Britain found out that the London branch was trying to harness an ancient evil buried beneath England's capitol. The plot failed. Shinobi lost several battles with other super-humans resulting in the club's lack of confidence in him. The Inner Circle quickly diminished and after finding out that his father was still alive Shinobi deserted his position.

    Shaw's Second Term

    \"Madelyne
    Madelyne Pryor

    Shaw resumed his role as the Black King and rebuilt his Inner Circle with Selene, Donald Pierce, Madelyne Pryor and the time traveler Fitzroy(a descendant of Shaw's in an alternate future). Shaw came in contact with Holocaust and had him kidnap X-Force, to get a new containment suit in return. X-Force was brainwashed into hunting down Cable, but instead Cable used his own powers to free his team. After a failed attempt to cure the Legacy Virus he resigned from the Inner Circle. Shaw would soon find out that his aide Tessa had been a spy for Professor Xavier all along. Selene then assumed control of the club and changed it to match her evil nature.

    Selene's Inner Circle

    Selene approached Blackheart the Black King position and Daimon Hellstrom the White King spot. Selene also approached Sunspot for membership since his father had a seat in the club, then so did he. Selene promised to resurrect his girlfriend Julianna if he became her new Black Rook. Selene only partially keeps her word, she resurrects Julianna's spirit and places it in a comatose patient. Nonetheless he keeps his word and accepts his seat. Shaw soon returns as the Lord Imperial of the entire club. Selene was placed in captivity beneath the the Hellfire Club headquarters.

    Shaw's Return

    \"No
    • Lord Imperial: Sebastian Shaw
    • Black King: Sunspot
    • Black Queen: Selene
    • White Queen: Courtney Ross
    • Warrior White Princess: Viper
    • Tessa: Shaw's aide

    When Sir Gordon Phillips dies from the Legacy Virus, Shaw takes the Lord Imperial seat for himself. Shaw approaches Sunspot to be the club's new Black King claiming that he is trying to reform the Hellfire Club for the greater good. Sunspot accepts the title of Black King. Tessa now Sage (X-Men member) fails to warn Shaw of Pierce's assassination attempt, leaving him hospitalized but not before Shaw knocks his head off. Emma Frost also claims to have never lost the White Queen title around this time. Sunspot becomes the new Lord Imperial and is trying to change the club into a force for good, though Ross and Viper appear to have their own agenda.

    Cassandra Nova's Inner Circle

    \"No

    This incarnation of the Hellfire Club didn't exist in the physical world. When the Sentinels attacked Genosha, Cassandra Nova offered Emma Frost a means to survive. In return for igniting her diamond secondary mutation, Emma Frost's mind became host to a portion of Cassandra Nova. She was then mind-wiped to prevent her from fighting Nova's subsequent plans.

    Using Emma Frost's telepathic powers, Nova made the X-Men believe that they were fighting an assault of the Hellfire Club's Inner Circle inside the mansion. Her ruse was ultimately to use Kitty Pryde's phasing powers to retrieve what was left of her body.

    The other members of this incarnation of the Hellfire Club were based on figures buried into Emma Frost's psyche. Perfection was an old out-dated reflection of herself, as the White Queen who had originally confronted the X-Men during the Dark Phoenix Saga. Sebastian Shaw had always been Black King while she was a member of the Inner Circle. Negasonic Teenage Warhead was one of Emma's students on the day that the Sentinels attacked Genosha, and who's lifeless body Emma carried out from the rubble.

    New Age of the Hellfire Club

    Schism

    For more information: Schism

    The Hellfire Club has currently been taken over by the 11 year old Kade Kilgore who has just murdered his father and taken over his company. Kade consults with the elder members of the club as they state their new objective being to purge the club of any mutants. Kade frees Quentin Quire from his cell on Utopia so that he may incite the riot at the UN conference which leads to the activation of Sentinels.

    The Hellfire Club is next seen trading with aliens from brain slugs. The new White Queen slaughters the aliens and keeps the brain slugs as the Club packs it in. They attack the X-Men at an unveiling of a mutant museum. They take down Magneto, Namor, Colossus and Emma each with specific tactics before attaching the alien brain slugs to them. Though Idie is able to save the X-Men the Hellfire Club unleashes an enormous Sentinel which gains mass magnetically from surrounding materials. The Hellfire Club watches on from the shore while the Sentinel heads towards Utopia. The Sentinel is defeated but the events leading up to it have caused the X-Men to split.

    \"No

    Welcome to the X-Men. Now Die!

    For more information: Wolverine and the X-Men

    During a visit from the New York State Department of Education to the Jean Grey School for Higher Learning, the Hellfire Club launches an attack on the school. Kade first formally informs Logan of what he's done so far and that he plans to destroy everything Logan's built. The Hellfire Club unleashes a group of small \"Bamf\" like creatures and awaken a grandchild of Krakoa upon which the school is built. They also turn the reps from the Dept of Education into a Sauron and Wendigo. Maximilian developed guns which fire mortars loaded with miniaturized Frankenstein troopers armed with flame throwers. Quentin Quire takes control of the situation by calming Krakoa and defeating the Frankenstein monsters. The Hellfire Club leave, defeated but are served by Matt Murdock for the repairs of the school.

    Kade is later seen hiring Sabretooth to terrorize the school.

    Phoenix Corporation

    It was revealed that the Phoenix Corporation, headed by Quentin Quire, owned the East Coast branch of the Hellfire Club. Quire, himself, became the new White King of the Hellfire Club.

    Alternate Universes

    Earth-1610 Ultimate

    In the Ultimate Universe the Hellfire Club is an offshoot of the Church of the Shi'ar Enlightenment, a group that worships a cosmic entity known as the Phoenix. While the Church believes the Phoenix to represent both destruction and rebirth, the Hellfire Club believes that the Phoenix entity is only associated with destruction. The ultimate hellfire club is also an enemy of the X-Men.

    X-Men: Misfits

    \"X-Men:
    X-Men: Misfits Vol 1

    The Hellfire Club in Del Rey's manga version of the X-Men is still an elite club of privileged individuals. However, it no longer revolves around the chessboard-based Inner Circle in high society. Instead, the Hellfire Club is a group of spoiled boys who attend Xavier's Academy for the Gifted. The members included Angel, Forge, Havok, Longshot Pyro, Quicksilver and Kitty Pryde. All of them, bar Kitty, had advanced beyond Epsilon-Delta level to Beta level, and often taunted others who they saw as below them.

    They use the Danger Room for their own needs, including turning it into a nightclub complete with simulated girls for them to flirt with. They would often skip classes and break curfew to meet outside and roast marshmallows over a bonfire. Their rule breaking was often over-looked as they were favorites of Magneto. As a new student, Kitty wanted to study, but the other members of the club would steal her books to force her to play with them. If she ran away, they would spend hours chasing her around the mansion until she phased into the crawl space between walls to hide from them.

    Other Media

    Television

    \"X-Men:
    X-Men: The Animated Series
    • X-Men: The Animated Series - The Hellfire Club appears in the multi-part \"Dark Phoenix Saga\" storyline. Much like in the comics, the members of the organization seek to manipulate the Phoenix and bring her under the control. The group is renamed the Inner Circle to fit the network TV broadcast standards.
    • Wolverine & the X-Men - It transpired that they were hunting down the entity known as the Phoenix, who had inhabited telepaths on Earth throughout history. They had kept many archaic pieces of art which told the story of the Phoenix. They had organized a telepathic assault on Jean Grey, which caused the explosion which tore the X-Men apart at the start of the series. Emma Frost used her telepathic powers with the powers of the five Stepford Cuckoos to attack Jean Grey's mind and force the Phoenix out of her body, which caused the explosion. When the X-Men had located & retrieve Jean Grey, Emma Frost used her powers to disable the other X-Men allowing the Inner Circle to abduct Jean. They explained the history of the Phoenix to Jean, claiming that they wanted to eradicate the Phoenix. However, once inside Jean's mind, the Cuckoos followed Sebastian Shaw's order to unlock all of the barriers placed there by Professor Xavier. They intended to release the Phoenix, contain it's power and use it for themselves. As occurred previously, the group is renamed the Inner Circle here.
    • Marvel Anime: X-Men - The members of the Hellfire Club appear as antagonists in the series. In a departure from the comics, Mastermind acts as the leader of the Inner Circle.
    • The Gifted - In the show's first season, it is revealed that the Stepford Cuckoos are actually agents of the Hellfire Club. Several of the show's major characters, including Polaris and Andy Strucker, join the Hellfire Club as the series progresses.

    Films

    \"First
    First Class
    • The Hellfire Club appears in the 2011 origin movie X-Men: First Class, where they are the primary villains. The members of the club in the film are Sebastian Shaw, Emma Frost, Azazel and Riptide. In 1963, Shaw attempts to manipulate the United States and the U.S.S.R. into starting a nuclear war that will decimate the planet, believing that the ensuing chaos will allow the Hellfire Club to rule the new, mutant-dominated society that will arise from the ashes. The X-Men seek to stop the Hellfire Club, leading to a pitched battle between both teams in Cuba. Shaw is ultimately killed by the young Magneto, whose mother had previously been murdered by Shaw back during World War 2. After Shaw's death, Magneto offers the remaining members of the Hellfire Club a place at his side, leading to the creation of the first Brotherhood of Mutants.

    Video Games

    \"Avengers
    Avengers Alliance
    • The Hellfire Club appears as a stage in the X-Men game for the Sega Game Gear.
    • The Hellfire Club is also a stage in X-Men 2: Game Master's Legacy.
    • The Hellfire Club appears as antagonistic force in Wolverine: Adamantium Rage, with the group's mansion serving as a stage. Selene and Shinobi Shaw serve as the boss characters for this segment of the game.
    • Hellfire Club mercenaries appear as enemies in X-Men Legends II: Rise of Apocalypse.
    • Hellfire Club mercenaries appear as enemies in the Facebook game Marvel Avengers Alliance. The members of the Hellfire Club appear again throughout the game, enlisting the help of characters like the Living Monolith and Bullseye.

    Merchandise

    \"Marvel
    Marvel Select
    • A Hellfire Club guard was featured in Diamond Select's Minimates line as part of a two-pack with Jean Grey as the Black Queen.
    • The Hellfire Club guards were featured in the HeroClix figure game. Various members of the organization, such as Emma Frost, Sebastian Shaw, Selene, Donald Pierce and Harry Leland also appeared in the game. A special Team Base that can be used to display Emma Frost, Sebastian Shaw, Donald Pierce and Selene was also released.
    • Emma Frost and Jean Grey as the Black Queen were both featured in the Marvel Legends line from Hasbro.
    • The Marvel Select Emma Frost figure from Diamond Select included a Hellfire Club display base.
    • Sideshow Collectibles released a statue depicting Emma Frost in her Hellfire Club costume.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20114/","id":20114,"name":"God Spare The Child...","issue_number":"129"},"id":13357,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8151617-marauders_vol_1_24_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8151617-marauders_vol_1_24_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8151617-marauders_vol_1_24_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8151617-marauders_vol_1_24_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8151617-marauders_vol_1_24_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8151617-marauders_vol_1_24_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8151617-marauders_vol_1_24_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8151617-marauders_vol_1_24_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8151617-marauders_vol_1_24_textless.jpg","image_tags":"All Images"},"name":"Hellfire Club","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/hellfire-club/4060-13357/"},{"aliases":"Homo mermani","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13407/","count_of_isssue_appearances":0,"count_of_team_members":126,"date_added":"2008-06-06 11:27:48","date_last_updated":"2014-07-26 00:12:13","deck":"A water breathing species known as Homo Mermani who occupied sunken Atlantis and built an undersea empire in the Atlantic Ocean.","description":"

    Atlanteans are from the undersea kingdom of Atlantis.

    Notable Atlanteans: Rulers, Warlords, Statesmen, Scientists

    Ancient Atlanteans

    Braddock Academy

    Last Emperor

    In the Reign of Namor the First

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159689/","id":159689,"name":"Here is the Sub-Mariner!","issue_number":"1"},"id":13407,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/33913/963129-119_torch_4.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/33913/963129-119_torch_4.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/33913/963129-119_torch_4.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/33913/963129-119_torch_4.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/33913/963129-119_torch_4.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/33913/963129-119_torch_4.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/33913/963129-119_torch_4.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/33913/963129-119_torch_4.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/33913/963129-119_torch_4.jpg","image_tags":"All Images,Artwork,Earth-616 Namor,gallery,Marvel Solicitations,Namor"},"name":"Atlanteans","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/atlanteans/4060-13407/"},{"aliases":"Advanced Idea Mechanics\r\nThem\r\nAvengers Idea Mechanics\r\nNew Avengers\r\nAmerican Intelligence Mechanics\r\nU.S.Avengers","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13497/","count_of_isssue_appearances":0,"count_of_team_members":132,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-06-28 11:42:47","deck":"An organization of brilliant scientists and their hirelings dedicated to the acquisition of power and the overthrow of all governments by technological means.","description":"

    Origin

    In the later years of World War II, Baron Von Strucker created an organization known simply as HYDRA. He divided HYDRA into two branches Advanced Idea Mechanics (AIM) and the Secret Empire. The division known as AIM began as a group of scientists whose purpose was to design weapons for HYDRA.

    A.I.M. was responsible for creating the Cosmic Cube, the Super-Adaptoid and MODOK.

    Creation

    AIM was created by Stan Lee and Jack Kirby.

    Team Evolution

    \"No

    Under the umbrella organization known as THEM, Strucker directed the terrorist operations of the Secret Empire, Hydra, and AIM, with a “Scientist Supreme” serving as the head of AIM’s own ruling council. When Strucker seemingly perished in the destruction of Hydra Island, AIM broke all ties with the Secret Empire and Hydra. The organization eventually succeeded in overthrowing the government of the Caribbean island-nation of Boca Caliente, rechristening it “AIM Island.” However, in recent years, AIM has been plagued by infighting amongst various factions vying for control of the organization. MODOK and Monica Rappcini have fought for the title of Scientist Supreme, a third faction known as Radically Advanced Ideas in Destruction (R.A.I.D.) broke away to serve the Red Skull (Johann Shmidt), while a fourth called Advanced Genocide Mechanics (A.G.M.) surfaced in the Congo.

    AIM has fought against many superheroes and villains alike. And is the focal point of a continuing investigation by SHIELD. SHIELD even raided a secret android processing facility in the Florida swamps that was funded by AIM. AIM retaliated by raiding SHIELD's base of operations in New York. And as a result, AIM's base was utterly destroyed.

    Major Story Arcs

    AIM hired Batroc the leaper to steal for them a substance known as Inferno 42. They also sent a chemical android to dispose of both Steve Rogers and Nick Fury.

    AIM has also at one point captured Iron Man to try and reproduce his famous armor.

    AIM is responsible for infecting Betty Ross with Gamma Radiation and turning her into the Harpie.

    For a short time, a power shift in AIM resulted in the faction splitting into two groups the Blue faction and the Yellow Faction. These two factions did battle even dragging Deathbird into the fray. The Yellow faction captured Thing and Namor for study. The Blue faction tried to re-create the Cosmic Cube. But currently neither faction seems active, they seem to have become one unit again.

    AIM succeeded in murdering M.O.D.O.K. when they hired the Serpent Society.

    AIM has used jets to assault the West Coast Avengers compound. They launched a microbe into the Stark Space Station.

    AIM has attempted to steal the Quantum Bands from Quasar.

    AIM has recently become a techno-anarchist group and is no longer affiliated with HYDRA. They also helped in the creation of the Red Hulk.

    \"No

    AIM later establishes itself as an independent nation state on the island of Barbuda, giving the group diplomatic immunity. Andrew Forson uses his position to wage war with S.H.I.E.L.D. and the Avengers, frequently undermining both groups in the process. AIM is later bought by Sunspot, who begins using its technology and resources for more noble purposes.

    Other Media

    Film

    Iron Man 3

    \"No

    A.I.M. appears in the film as the major group of antagonists. It is established that in the MCU, A.I.M. was founded sometime after the year 2000 by Aldrich Killian, who had wanted to get Tony Stark involved as an investor. When Stark humiliated Killian and rebuffed his attempts to sway him, Killian took matters into his own hands. By 2013, A.I.M. was a successful government-sanctioned think-tank, with Killian acting as the leader. The group secretly begins experimenting with Maya Hansen's Extremis virus, which they test on soldiers returning home from the wars in the Middle East.

    A.I.M. is also hired by the U.S. military to redesign the War Machine armor, rechristening it the Iron Patriot. Killian attempts to force Tony to fix a flaw in Extremis in order to perfect it, while at the same time launching a plan to assassinate the president in order to install a puppet regime. In the final battle, Tony uses his Iron Legion in a massive battle against A.I.M.'s Extremis soldiers.

    In the continuity of the film, the A.I.M. scientists do not wear their yellow outfits from the comics.

    Television

    \"Armored
    Armored Adventures
    • In Iron Man: The Animated Series, it's revealed that A.I.M. is responsible for the murder of Howard Stark.
    • In Iron Man: Armored Adventures, the members of A.I.M. appear as recurring antagonists throughout the course of the show, frequently clashing with Iron Man and his allies. Throughout the first season, they attempt to create M.O.D.O.C., and partner with Moses Magnum to receive Vibranium from Wakanda. This brings the group into conflict with the Black Panther, who partners with Iron Man to stop the deal. M.O.D.O.C. is eventually created, and the group continues to appear in the second season.
    • In The Avengers: Earth's Mightiest Heroes, A.I.M. is contracted by HYDRA to create the Cosmic Cube. The group lies about its completion and attempts to keep the artifact, leading to a massive war with HYDRA that spills out into the streets of New York.
    • A.I.M. appears in Avengers Assemble.
    • A.I.M. appears in Marvel Future Avengers.
    • A.I.M. appears in Marvel's Spider-Man.

    Video Games

    \"Marvel
    Marvel Heroes
    • A.I.M. soldiers appear as enemies in Marvel Ultimate Alliance.
    • A.I.M. appears in the video game adaptation of the first Iron Man movie, where they are working with Obadiah Stane to reverse-engineer Tony Stark's Iron Man armor.
    • A.I.M. appears in the PS2 and PSP versions of Spider-Man: Web of Shadows.
    • A.I.M. appears in the Super Hero Squad game.
    • A.I.M. appears in the video game adaptation of Iron Man 2, where they work with Kearson DeWitt to develop Ultimo.
    • A.I.M. appears in Marvel Avengers Alliance.
    • A.I.M. appears in the video game adaptation of Iron Man 3.
    • A.IM. appears in Marvel Avengers Academy.
    • A.I.M. appears in Marvel Heroes.
    • The A.I.M. organization appears in the 2020 Avengers video game, serving as the main antagonists.

    Merchandise

    \"Marvel
    Marvel Legends
    • An A.I.M. figure was included in Hasbro's Marvel Universe line.
    • A.I.M. appears in the HeroClix figure game.
    • A.I.M. soldiers appeared in the Minimates line from Diamond Select.
    • An A.I.M. bust was produced by Bowen Designs.
    • An A.I.M. soldier was included in the Marvel Legends Mandroid Build-a-Figure wave from Hasbro. It was later rereleased as an exclusive on the Hasbro Pulse website.
    • A Marvel legends two-pack featuring a pair of A.I.M. troops was later released by Hasbro.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8618/","id":8618,"name":"Crescendo!/ THEM!","issue_number":"78"},"id":13497,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/8277599-rco025_1631302344.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/8277599-rco025_1631302344.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/8277599-rco025_1631302344.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/8277599-rco025_1631302344.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/8277599-rco025_1631302344.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/8277599-rco025_1631302344.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/8277599-rco025_1631302344.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/8277599-rco025_1631302344.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/8277599-rco025_1631302344.jpg","image_tags":"All Images"},"name":"A.I.M.","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/aim/4060-13497/"},{"aliases":"Step Ups","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13699/","count_of_isssue_appearances":0,"count_of_team_members":4,"date_added":"2008-06-06 11:27:46","date_last_updated":"2022-08-04 08:53:42","deck":"Technology-equipped hippie gang who were friends of Jimmy Olsen.","description":"

    Project Cadmus created beings \"Step Ups\" who developed an evolved knowledge-base, and developed transport and defense technology beyond the understanding of modern day humans. Living inside a kin-size vehicle \"The Mountain of Judgement\". Nicknamed \"Hairies\" by doctors at Project Cadmus because of their aversion to haircuts.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-115210/","id":115210,"name":"The Mountain of Judgement!","issue_number":"134"},"id":13699,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/84205/2306443-2306017_4_20_2012_004.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/84205/2306443-2306017_4_20_2012_004.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/84205/2306443-2306017_4_20_2012_004.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/84205/2306443-2306017_4_20_2012_004.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/84205/2306443-2306017_4_20_2012_004.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/84205/2306443-2306017_4_20_2012_004.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/84205/2306443-2306017_4_20_2012_004.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/84205/2306443-2306017_4_20_2012_004.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/84205/2306443-2306017_4_20_2012_004.jpg","image_tags":"All Images"},"name":"The Hairies","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/the-hairies/4060-13699/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13918/","count_of_isssue_appearances":0,"count_of_team_members":13,"date_added":"2008-06-06 11:27:47","date_last_updated":"2013-03-07 23:01:31","deck":"An advanced race that likes to colonize other planets.","description":"

    Origin

    The most famous colonizer is Tana Nile. Their people are also called the 'Colonizers' for their far-flung colonization of planets. The Grand Commissioner explained the driving force behind their colonizing zeal as, \"We hate the stink of bodies around us.\"

    They were driven from their home planet of Rigel when the Black Stars invaded their part of the galaxy and consumed the matter of their planet.

    The Rigellians also created Recorders to help them in their efforts of planet colonization.

    Creation

    The Rigellians were created by Stan Lee and Jack Kirby in 1966 and first appeared in Thor # 131.

    Alternate Realities

    Earth-829

    In this reality, the Rigellians combined themselves with the Recorders, becoming mostly cybernetic. They also increased their height greatly.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8739/","id":8739,"name":"They Strike From Space","issue_number":"131"},"id":13918,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/291532-16182-rigellians.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/291532-16182-rigellians.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/291532-16182-rigellians.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/291532-16182-rigellians.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/291532-16182-rigellians.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/291532-16182-rigellians.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/291532-16182-rigellians.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/291532-16182-rigellians.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/291532-16182-rigellians.jpg","image_tags":"All Images,Rigellians"},"name":"Rigellians","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/rigellians/4060-13918/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13930/","count_of_isssue_appearances":0,"count_of_team_members":1,"date_added":"2008-06-06 11:27:45","date_last_updated":"2013-03-02 12:45:14","deck":"An extremely advanced alien species.","description":"

    The Ovoids are a highly evolved species. They are very peaceful and technologically advanced. The Ovoids have developed a body transfer system which places their minds in fresh new bodies when they are near death, making them nearly immortal. 
      
    In space, they happened upon Doctor Doom and shared their technology with him. When they left him back on Earth, he successfully used their body transfer technology to switch bodies with Mr. Fantastic
     
    When Galactus came near their worlds, they prepared to battle with him to protect their planets. They successfully killed Galactus' herald, Air-Walker.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6328/","id":6328,"name":"The Return of Doctor Doom!","issue_number":"10"},"id":13930,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/90057-106591-ovoids.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/90057-106591-ovoids.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/90057-106591-ovoids.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/90057-106591-ovoids.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/90057-106591-ovoids.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/90057-106591-ovoids.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/90057-106591-ovoids.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/90057-106591-ovoids.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/90057-106591-ovoids.jpg","image_tags":"All Images,Ovoids"},"name":"Ovoids","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/ovoids/4060-13930/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13937/","count_of_isssue_appearances":0,"count_of_team_members":0,"date_added":"2008-06-06 11:27:48","date_last_updated":"2013-02-13 17:16:17","deck":"The Brotherhood of the Wellspring are a cult who worship the Wellspring of Power.","description":"

    They battled the Squadron Sinister in an attempt to stop the Grandmaster from using the Wellspring. They later battled the Thunderbolts.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106251/","id":106251,"name":"Rush","issue_number":"102"},"id":13937,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2870690-untitled.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2870690-untitled.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2870690-untitled.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2870690-untitled.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2870690-untitled.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2870690-untitled.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2870690-untitled.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2870690-untitled.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2870690-untitled.jpg","image_tags":"All Images"},"name":"Brotherhood of the Wellspring","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/brotherhood-of-the-wellspring/4060-13937/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13953/","count_of_isssue_appearances":0,"count_of_team_members":2,"date_added":"2008-06-06 11:27:46","date_last_updated":"2011-11-14 17:11:10","deck":"The Megans are Aliens that use captured space monsters as biological weapons.","description":"

    From the planet Megan, these aliens constantly fight with neighboring planet, Betan, and it's aliens, the Betans. They are most notable however for their use of captured space monsters as part of their war with Betan.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-18657/","id":18657,"name":"Star Sinister","issue_number":"12"},"id":13953,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/16281/320660-125138-megans.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/16281/320660-125138-megans.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/16281/320660-125138-megans.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/16281/320660-125138-megans.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/16281/320660-125138-megans.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/16281/320660-125138-megans.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/16281/320660-125138-megans.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/16281/320660-125138-megans.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/16281/320660-125138-megans.jpg","image_tags":"All Images,megans images"},"name":"Megans","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/megans/4060-13953/"},{"aliases":"Rock People\r\nStone Men from Saturn","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-13986/","count_of_isssue_appearances":0,"count_of_team_members":5,"date_added":"2008-06-06 11:27:46","date_last_updated":"2017-07-23 15:43:45","deck":"The Kronans, also known as the Rock People from Saturn, are an alien race that Korg and Zardok belong too.","description":"

    The Kronans' first enemy was Thor. They claim they are from 'Saturn'. The Kronans have rock like bodies which are nearly indestructible on Earth. They also posses high technology, including interstellar travel, advanced robotics, 'atomic force fields', and sidearms of incredibly destructive force.

    At least once in the past they've harbored ambitions of conquering Earth.

    In Other Media

    Film

    \"The
    The Kronan in The Dark World

    Merchandise

    • Diamond Collectibles released a Kronan Minimate as part of a two-pack with Thunderstrike.
    • A Kronan was featured in the HeroClix figure game.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6023/","id":6023,"name":"The Stone Men From Saturn!","issue_number":"83"},"id":13986,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/2023165-kronans.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/2023165-kronans.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/2023165-kronans.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/2023165-kronans.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/2023165-kronans.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/2023165-kronans.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/2023165-kronans.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/2023165-kronans.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/2023165-kronans.jpg","image_tags":"All Images,The Kronans"},"name":"Kronans","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/kronans/4060-13986/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14015/","count_of_isssue_appearances":0,"count_of_team_members":26,"date_added":"2008-06-06 11:27:47","date_last_updated":"2018-09-28 07:57:53","deck":"Black Magic using offshoot of the Skrull race and nemesis of the Spaceknights!","description":"

    Origin

    \"How
    How the Wraiths came to be

    The Dire Wraiths are a genetic offshoot equivalent to the Deviants of Earth of the Skrull race with a similar Celestial origin. The Wraiths specialty is the blackest and foulest of magic, and their cruelty is spectacular even by the standards of comic book villainy, with forced mating, torture and appallingly savage murderesses their standard operating procedure.

    The paradise world of Galador explored the Dark Nebula over two centuries ago, only to have its fleet annihilated by the Dire Wraiths. The Galadorians created a squadron of star travelling cyborgs called the Spaceknights to defend Galador, a job they did extremely well ever since.

    A final climactic battle freed Galador, at terrible cost.

    After the battle, Rom pursued the Dire Wraiths back to the Dark Nebula, driving them from their ghastly planet Wraithworld and scattering them throughout the universe.

    Rom and the other Spaceknights swore a mighty blood oath to hunt down the Wraiths and exterminate them wherever they might be found.

    Character Creation

    The Dire Wraiths made their fist appearance in Rom #1, 1979. They were created by Bill Mantlo and Al Milgrom.

    Character Evolution

    The preferred method for the benevolent Galadorian Spaceknights to use was Neutralization, a process where the Dire Wraiths lost their physical host body and were cast into Limbo. The Wraiths preferred death to banishment because in Limbo they could still view the universe, but could not affect it.

    When Rom, their greatest nemesis, arrived on Earth, it was to discover that the males and females of the Wraith species were in a civil war and the native-born Earthling Wraiths and their parents from Wraithworld were also at loggerheads. Female Wraiths use sorcery, males traditionally use science, although there are exceptions such as Doctor Dredd.

    In sorcery they used Deathwings and Hellhounds.

    In addition to their science vs. sorcery preferences, the males prefer their transitory form (resembling a cloudy humanoid) while the females prefer their true form. In their true forms, Dire Wraiths can use their barbed tongue to drill into the skull of another being and steal its memories while duplicating its physical form.

    Whether they use this memory-stealing ability or not, all Wraiths can duplicate the form of virtually any living creature. Dire Wraiths are a deeply xenophobic, totally murderous evil race that is paranoid, secretive and manipulative.

    Major Story Arcs

    \"Wraith
    Wraith world being sucked into Limbo

    The Wraith Home-world was sucked into Limbo by Rom's quick thinking. The Dire Wraiths tried to merge both the earth and their world together. This action from Rom with the combine forces of earths heroes is what brought their down fall

    It been recently revealed that exist another diverged Dire Wraiths, this belonging to the Inhuman side as they were created through experimentation by the Kree in regular Dire Wraiths, its unknown as what powers do they posses but they been shown to live together and without the spine for conquering as their cousin race.

    The Dire Wraiths who were banished to Limbo were later encountered by the Captain America, the Mar-Vell Child and Ka-Zar of Earth-9997. With the aid of ROM and, oddly enough, Mephisto they managed to temporarily halt their rampage.

    Sometime after the denizens of Earth-9997 decided Limbo would become the new Hell, the new Belasco (Kurt Wagner) delivered the soul of Klaw to an army of hungry Wraiths.

    Powers

    Male- They were shape shifters that relied on science and technology. There were a few males that were considered Warlocks that used sorcery such as Doctor Dredd.

    Females- They used there sharp like tongues to drill a hole into a victims head and retained their memory and were able to take the form of the victim. They wielded sorcery instead of science.

    Both - DIre Wraiths can possessively infect people with their own malignant DNA, effectively killing the victim while converting them into one of their spawn. They can use this as a means of overshadowing unwilling hosts to pass off as a specific species, or physically emulate their genetic material to better aid their metamorphosis.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-19997/","id":19997,"name":"Arrival!","issue_number":"1"},"id":14015,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5344/2828217-dire_wraiths_01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5344/2828217-dire_wraiths_01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5344/2828217-dire_wraiths_01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5344/2828217-dire_wraiths_01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5344/2828217-dire_wraiths_01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5344/2828217-dire_wraiths_01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5344/2828217-dire_wraiths_01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5344/2828217-dire_wraiths_01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5344/2828217-dire_wraiths_01.jpg","image_tags":"All Images,Comics"},"name":"Dire Wraiths","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/dire-wraiths/4060-14015/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14245/","count_of_isssue_appearances":0,"count_of_team_members":22,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-06-03 09:47:40","deck":"Force Works is a Marvel based super group composed of old West Coast Avengers and led by a disgruntled Iron Man who had recently left the Avengers.","description":"

    Brief History

    Founding

    Force Works was composed of the remains of the West Coast Avengers.

    Shortly after the death of Mockingbird, the West Coast Avengers disbanded, understandably Hawkeye left while in mourning the death of his wife, War Machine went solo, and the rest were removed from the Avengers charter after the events of Crash and Burn. The team was reformed as Force Works by Iron Man, US Agent, Scarlet Witch, Wonder Man, Spider Woman (currently Arachne), and later the alien Century and for a brief time War Machine joined the team, but chose to leave due to personal problems with Iron Man.

    Avengers Initiative

    After the events of the Civil War, the name Force Work's was given to The Initiative team from Iowa as part of the 50-state Initiative. The members of this current team are still unknown.

    Robot Uprisings

    During Arno Stark's hostile takeover of Stark Unlimited and the crack down on the rights and liberties of A.I., the military sponsored a team taking the name Force Works to quell robot uprisings that were popping up around the world. Maria Hill commanded the team from HQ while War Machine led the team in the field.

    When Mockingbird went silent during her undercover mission in South America, War Machine, USAgent, and Quake were sent in to rescue her, only for all four of them to be kidnapped by an army of Deathloks created by MODOK. They narrowly defeated MODOK when Rhodey took control of the Deathloks command processor and became their leader.

    The team was disbanded immediately when they refused to turn over the Deathlok schematics to Hill.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-150229/","id":150229,"name":null,"issue_number":"1"},"id":14245,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7260016-clean.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7260016-clean.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7260016-clean.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7260016-clean.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7260016-clean.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7260016-clean.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7260016-clean.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7260016-clean.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7260016-clean.jpg","image_tags":"All Images"},"name":"Force Works","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/force-works/4060-14245/"},{"aliases":"Alphans\r\nThe Flight\r\nProject Epsilon","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14616/","count_of_isssue_appearances":0,"count_of_team_members":70,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-09-11 06:25:39","deck":"Alpha Flight is Canada's premiere superhero team. Amongst its members are Guardian, Sasquatch, Puck, Vindicator, and Northstar. Even Wolverine has been counted among their ranks.","description":"

    Origin

    \"Alpha
    Alpha Flight vs X-Men

    Alpha Flight was the top level of a three-tiered program codenamed Department H within the Canadian Ministry of Defense. New recruits or those whose powers proved unstable would be assigned to Gamma Flight in order to learn to properly use their powers. Those who could control their abilities but required further training formed the basis of Beta Flight. The active members in the field who where tasked with dealing with any superhuman threats to the nation were in Alpha Flight.

    James MacDonald Hudson had the idea to form Alpha Flight after the public emergence of the Fantastic Four and was given oversight of Department H, which was named after him. Hudson had intended that Wolverine be the leader of Alpha Flight. However, this task fell to Hudson himself when Wolverine was recruited by Professor X to become a member of the X-Men.

    Originally using the codename Weapon Alpha, Hudson tried to bring Wolverine back to Canada and Alpha Flight by force. This led to a battle between Weapon Alpha and the X-Men. Outnumbered, Weapon Alpha was forced to retreat.

    Hudson changed his codename to Vindicator after feeling responsible for injuring Moira MacTaggert in the battle. Several months later, the X-Men were forced to make an emergency landing in Canada due to the magic of Alpha Flight's Shaman. Realizing something strange was happening, they were soon confronted by the full Alpha Flight team who again wished to bring Wolverine into their custody.

    This first formation of Alpha Flight consisted of team leader Vindicator, Sasquatch, Shaman, Snowbird, Aurora and Northstar. Vindicator soon learned that the government was shutting down funding of Alpha Flight.

    Creation

    Alpha Flight was created by John Byrne and Chris Claremont. Alpha Flight burst onto the pages of Marvel in 1979 with their first appearance in the Uncanny X-Men #120 as the Canadian government's soon-to-be-disbanded superhero team. Claremont was the writer, John Byrne was the penciller and Terry Austin was the inker for this issue. Byrne and Claremont co-plotted the storyline together.

    Major Story Arcs

    Gone Before They Started?

    \"Canada's
    Canada's very own superhero team

    The first issue of Alpha Flight opened with us learning that the Canadian superteam Alpha Flight was being disbanded. Only weeks prior, three members of Alpha Flight (Vindicator, Snowbird, and Shaman) along with two X-Men (Wolverine and Nightcrawler) defeated the mystical creature known as the Wendigo in the Canadian wilderness. A week after they returned, however, the Canadian Prime Minister delivered the bad news to Hudson. Department H, the secret superhuman arm of the Canadian Ministry of Defense, was being shut down. Allowed to keep his security clearance and the electromagnetic battle suit he designed, Hudson intended to continue protecting Canada as needed without the government's help.

    Shortly after arriving home, Mac received a call from Gary Cody, his former government liaison, to alert him to a mysterious phenomena in the northern wilderness. An ancient giant creature known as Tundra was being conjured back into existence and was threatening to harm Canada, so Vindicator left to investigate. Mac's wife Heather, fearing for her husband's safety out there alone went to his office and sent out a call to action to the rest of Alpha Flight through a government computer. Two members of Beta Flight had been about to graduate to Alpha Flight just before they were disbanded but were not official members yet were also summoned by Heather to assist Mac. Those two team members, Puck and Marrina, became key figures within the early days of Alpha Flight. Through implanted transponders, each member heard the call and the scattered team made their way to the battle with Tundra. All but Puck that is, who couldn't arrange transportation to northern Canada. He arrived at Mac's and Heather's apartment after they had defeated Tundra. They decided to remain together as a team even without government funding. The name \"Alpha Flight\" didn't seem to make sense without Beta or Gamma Flight, but Puck insisted that he worked hard to join Alpha Flight and that's what they were going to be called. After some prompting from Shaman, Hudson also changed his codename from Vindicator to Guardian to punctuate the point that they are Canada's guardians.

    Some of the former members of Beta Flight and Gamma Flight felt abandoned after Department H's disbanding and were assembled by an enemy of Mac as Omega Flight, Alpha Flight's opposite number. Mac was killed in an explosion during a subsequent battle while attempting to repair his damaged Guardian suit after being interrupted by Heather. Heather took Mac's death very hard, but eventually Logan and Puck convinced her that she was the right person to lead Alpha Flight. After Mac returned as part cyborg (which turned out to be a ruse), she began to wear a duplicate electromagnetic battle suit and call herself Vindicator. Eventually, the programs in Department H were taken over and perverted for evil purposes. Through deaths and resurrections, strange transformations, and sudden reversals, Alpha Flight fought on, loyal to the mission of protecting their homeland.

    The New Team

    When the original members of Alpha Flight were abducted by the alien Plodex, Sasquatch assembled a new oddball squad. The team consisted of the 97-year-old Centennial, Major Mapleleaf (the son of a World War II-era hero), the deadly Nemesis, a new Puck (the original Puck's daughter), and the mysterious Yukon Jack. The newbies saved the original Alpha Flight and remained part of the team after the mission was complete.

    Death of the Team

    In the New Avengers arc \"The Collective\", Alpha Flight pursued the Collective-empowered Michael Pointer, who had destroyed his home town in Alaska. When the team confronted him, he brutally attacked them, killing almost all of them. Sasquatch was the only one who survived, and he helped form Canada's newest defense squad, Omega Flight.

    Chaos War

    \"Chaos
    Chaos War

    In Quidlivun, the Northern Gods battle the Chaos King and his forces. Nelvanna sends Snowbird back to Earth moments before Nelvanna is slain by the Chaos King. In the Shattered Lands, Somon and the other Great Beasts discuss the situation with Sasquatch, who has in his possession a mystical power that will enable the Great Beasts to return to Earth, for they claim that they are the only ones with the might to kill the Chaos King. Sasquatch strikes up a deal with them: the Great Beasts will return Sasquatch’s deceased friends to Earth, provided he protects the Great Beasts while they regain their strength. The Great Beasts promise not to attempt to claim Earth for themselves for one hundred years. Sasquatch accepts their deal. In Alberta, Snowbird reunites with Northstar and Aurora when they sense a strange summons to this location. Sasquatch arrives via a portal, followed by Guardian, Vindicator, Shaman and Marrina. The reunion is a joyous one, though the rest of their friends are still caught up in the chaos in the Underworlds. Snowbird explains who the Chaos King is before the slave god hordes of the Chaos King arrive. Thinking they are here for her, Snowbird battles them alongside Guardian and the twins. Sasquatch then explains to his friends the deal he made with the Great Beasts, who are now battling the slave gods. Snowbird is understandably distraught that her deadliest enemies are once more walking the Earth. Sasquatch and Snowbird debate the situation until several civilians nearby wake from their slumber having been transformed into Wendigo and join the battle against the slave gods.

    \"The
    The deceased members return

    Eventually, the heroes agree that the Chaos King is the more pressing concern, so they launch into battle against the slave gods. Aurora tells Northstar that this is where they belong: with their friends, and not with the X-Men. Snowbird witnesses one of the Great Beasts fall to the slave gods and does not help him, but when the civilians who were transformed into Wendigo begin to eat the slave gods, Snowbird, Vindicator, Shaman and Northstar reconsider the situation, deciding that they do not need anything from the Great Beasts, though it would mean the deceased Alphans will return to what is left of the Underworld. Guardian, Aurora, Sasquatch and Marrina don’t agree though, so the team briefly battles each other. Snowbird and her followers gain the upper hand, and Snowbird uses a god-like power to freeze the Great Beasts. The Chaos King then arrives and seemingly destroys them. The Wendigo return to their true civilian forms, while Vindicator asks about her daughter, to which Sasquatch reveals she is safe with family. Shaman casts a spell to return the four deceased Alphans to a state just beyond life, but it doesn’t work and he, Vindicator, Guardian and Marrina remain on Earth. Shaman realizes that Death itself is inaccessible, and Snowbird realizes that the Great Beasts lied to Sasquatch: they had no access to their friends, there was simply nowhere else for them to go without Death. Shaman supposes that Death will be restored when the Chaos King is defeated. Sasquatch tells everyone that they have to risk defeating the Chaos King, so the eight heroes of Canada depart to join the battle against the Chaos King and save all of reality.

    Alpha Flight against the Master of the World

    \"No

    After the Fear Itself events, Alpha Flight had to take it up against one of their greates foes, the Master of the World. Guardian's wife Heather was brainwashed into working with The Master of the World, which caused her to fight against her own teammates. While under the Masters' influance, Heather even killed Claire's guardians, whom they where in a bitter fight against for custody since Heather and James' return from the dead! When she eventually was freed from the Masters' influance, she and her daughter fled from the law and Alpha Flight, being afraid of reprocussions. She vanished for some time. While thanks to Alpha Flight, Canada was safe once agian, it came at a great personal cost to James, whom lost his wife and daughter when they vanished.

    In the meantime, James only occasianly correspondet with Alpha Flight, whom where now working in a space program.

    Alpha Flight in Space

    \"No

    Alpha Flight is relocated to an intergalactic space station that orbits around Earth. The team is given the task of becoming the Earth's primary defense group. Many of the team's original members joined the facility, including Sasquatch, Puck, and Aurora. The team was strengthened with U.S. officer Carol Danvers, better known as Captain Marvel.

    True North

    Many months later, Guardian tracked down Heather and Claire while seemingly helping them avert capture by the Canadian government. He brought them to a safehouse. There, Heather told James that, although she loved him, the two of them would never work. James told her he was not doing this for them to get back together and left them in the safehouse. After leaving, it turned out that the safehouse actually was a jail for them. With mental manipulation, Heather was unaware of this and felt safe. Guardian stated to his government superiors that the only reason he helped them capture Heather was on the condition that they remained unharmed. He needed Heather to trust him once again.

    Other Realities

    Earth 1610 (Ultimate)

    \"Ultimate
    Ultimate Alpha Flight

    The X-men: Colossus, Iceman, Nightcrawler, Cyclops, Jean Grey, Rogue, Wolverine, Angel, Dazzler and the newest X-Man, Firestar, came up against the Ultimate version of Alpha Flight. Alpha Flight consisted of: Vindicator (John Wraith), Aurora, Snowbird, Sunfire, Shaman, Sasquatch (Rahne Sinclair) and Jubilee who had come to bring Northstar back to Canada. The team were all on the mutant enhancement drug Banshee, which caused a mutation in their powers and personality. They then faced the X-Men again, but this time against a few renegade members high on Banshee, led by an enraged Colossus wanting his boyfriend back.

    Other Media

    X-Men: The Animated Series

    \"Alpha
    Alpha Flight in X-Men: The Animated Series

    Alpha Flight appeared in Repo Man (Episode 18) and Child of Light (The Phoenix Saga Part 5, Episode 33).

    Vindicator and the Canadian Alpha Flight capture Wolverine. Department H demanded their project back: either he rejoins their team or they repossess his indestructible adamantium skeleton. Puck and Snowbird spied on the attempted adamantium removal experiment and informed the other members. After a fierce fight between Alpha Flight and Department H's security androids, Wolverine warns the Alpha Flight members that if any of them try to seek him out, all bets are off. Later, members of Alpha Flight are shown helping citizens as Earth is ravaged by the M'Kraan Crystal.

    Merchandise

    \"Marvel
    Marvel Legends
    • Alpha Flight received a line of action figures from ToyBiz in the late 90s. The figures were released in two-packs consisting of Northstar and Aurora, Vindicator and Sasquatch, and Snowbird and Puck. Guardian was also released as a standalone exclusive from ToyFare Magazine.
    • Various members of Alpha Flight received busts or statues from Bowen Designs.
    • Vindicator, Guardian Snowbird, Northstar and Aurora, Sasquatch and Puck were featured in The Classic Marvel Figurine Collection from Eaglemoss Publications.
    • Diamond Select released two Minimates box sets featuring Alpha Flight: one with Northstar, Puck, Guardian and Marrina, and another with Aurora, Snowbird, Sasquatch and Shaman.
    • Guardian, Northstar Aurora and Puck were featured in Hasbro's Marvel Universe line.
    • After previously releasing Guardian in the Wendigo wave and Puck and Sasquatch as Build-a-Figures, Hasbro released a Marvel Legends Alpha Flight box set containing Vindicator, Northstar, Aurora, Snowbird, Shaman and a rereleased Puck. The set was an online exclusive.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-19455/","id":19455,"name":"Wanted: Wolverine! Dead Or Alive!","issue_number":"120"},"id":14616,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/5723270-capmarv2017005-cov.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/5723270-capmarv2017005-cov.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/5723270-capmarv2017005-cov.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/5723270-capmarv2017005-cov.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/5723270-capmarv2017005-cov.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/5723270-capmarv2017005-cov.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/5723270-capmarv2017005-cov.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/5723270-capmarv2017005-cov.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/5723270-capmarv2017005-cov.jpg","image_tags":"All Images,Earth-616 Alpha Flight,Earth-616 Captain Marvel"},"name":"Alpha Flight","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/alpha-flight/4060-14616/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14632/","count_of_isssue_appearances":0,"count_of_team_members":30,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-03-11 20:18:22","deck":"A group of freedom fighters from the Vega System who oppose the tyrannical rule of the Citadel.","description":"

    The Omega Men hail from the Vegan system, a planetary system with twenty-five habitable planets, which as of the early 1980s had been ruled for millennia by the Citadelians, a race of warriors cloned from the First Citadelian the demigod-like son of X'Hal.

    The Citadelians established a tyrannical regime based in a fortress moon known as the Citadel. The citadel then set about to conquer the younger races of Vega. Originally there were only two races in the Vegan system, the primitive Branx and the warlike Okaarans, but the Psions used Okaaran DNA to create the other twenty-three races of Vega such as the Tamaraneans, Euphorixians, Aelloans, Karnans, and the Changralyns.

    The Omega Men were assembled as a group of renegades and representatives of conquered Vegan worlds to fight Citadelian aggression. Pre-Infinite Crisis the team was based on the planet Kuraq. The Omega Men are important peacekeepers in their sector because the Green Lantern Corps is not allowed into Vegan space, due to a long standing agreement between the Guardians of the Universe and Agent Orange.

    The Omega Men made a return appearance in the Adam Strange mini-series, Planet Heist. Still led by Tigorr, with veteran members Broot, Doc, Elu, Artin, and Harpis. They were joined by a group of new members whose names were given, but not identified in the book. They were still fighting the Spider Guild. One of their new members, a precog, leads them to wait in a Rannian space station with the ultimate purpose of meeting Adam Strange. The first Doc was killed by a Durlan assassin and impersonated.

    Omega Men miniseries

    It had been revealed that upon returning to the remains of Tamaran with Ryand'r, the Omegans are attacked by the Darkstar zombies of Lady Styx and all but five of them died.

    R.E.B.E.L.S.

    The Omega Men have been seen fleeing L.E.G.I.O.N. robots during a hostile takeover ousting Vril Dox. They assisted the R.E.B.E.L.S. in fighting Starro and freeing those that had been mind controlled.

    Current Member(s)

    • Tigorr
    • Broot
    • Elu
    • Ryand'r
    • Doc II

    Deceased Member(s)

    • Artin was destroyed by Lady Styx's Darkstars
    • Cecilia was killed by Lady Styx's Darkstars
    • Chantale was killed by Lady Styx's Darkstars
    • Dark Flea is destroyed by Lady Styx's Darkstars
    • Demonia betrayed the team and was later killed
    • Doc was killed by a Durlan assassin
    • Felicity was killed by Durlans during the Invasion, however she later appeared alive, though changed
    • Green Man was killed during Invasion
    • Harpis was killed by Lady Styx's Darkstars
    • Kalista was killed during the Invasion
    • Nimbus was merged with and imprisoned within the planet Kuraq by X'Hal
    • Oho-Besh died of unknown causes
    • Primus was shot down by guards during a prison break on Starlag during the events of Invasion
    • Rynoc died of unknown causes
    • Seer is killed by Lady Styx's Darkstars
    • Shlagen was killed during the Invasion
    • Uhlan died of unknown causes
    • Ynda was killed during the Invasion

    New 52 Omega Men

    Primus

    Kalista

    Tigorr

    Doc died when he detonated a bomb deep in the core of planet Vrool

    Broot died through exhaustion attempting to free a key similar to Arthur freeing Excalibur

    Scapps died during a laser fight with The Citadel

    Kyle Rayner

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-21272/","id":21272,"name":"The Lurkers in the Shadow / Doom in the Citadel of Ice","issue_number":"141"},"id":14632,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111147698/4602010-screen%20shot%202015-06-02%20at%206.51.32%20pm.png","image_tags":"All Images"},"name":"Omega Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/omega-men/4060-14632/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14693/","count_of_isssue_appearances":0,"count_of_team_members":15,"date_added":"2008-06-06 11:27:47","date_last_updated":"2017-02-03 23:24:12","deck":"A team of bounty hunters founded and originally led by Gatecrasher.","description":"

    In the Technet's first recorded exploit, they were hired by Sat-Yr-9, the Earth-794 counterpart of Opal Luna Saturnyne, to hunt down and bring back Kaptain Briton. Kaptain Briton fled to Captain Britain's Earth, fought Captain Britain and switched costumes with him, thereby deceiving the pursuing Technet, who then mistakenly took Captain Britain prisoner. The Technet brought Captain Britain to Earth-794 where Captain Britain convinced the Technet that he was not the man they had been hired to capture, and the Technet joined Captain Britain in battling the angry Sat-Yr-9's troops. Captain Britain returned to his own Earth, where his sister, Psylocke had killed Kaptain Briton when he attempted to assault her.

    Later the Technet went to the Wereworlds that were inhabited by people who would turrn into werewolves under a full moon. On the planet Elmo one of the members was fatally wounded and died. Gatecrasher either seriously injured or killed a member of the 'Berserker Pirates' who attempted to interest her in becoming his lover. The pirate's family forced the Technet to turn over all their accumulated wealth as reparations. Angered by this reversal in their fortunes, all of the members of the Technet except for Yap and Fascination, later known as Scatterbrain, left the team.

    Gatecrasher then went to a celebration held by the despot of Kandahar. A person she believed to be the despot himself hired her to procure a perfect mathematical model of the universe that was made of rock crystal and that was held and revered by the Incas of 14th century Peru on Earth-616. Gatecrasher, Yap, and Fascination journeyed through time to obtain the model, but Gatecrasher and Yap were tricked by the person they believed to be a native high priest into consuming fruit filled with the eggs of deadly parasites. Gatecrasher and Yap were thus forced to remain under a cooling waterfall to prevent the eggs inside them from hatching and consuming their bodies from within. In actuality, an alien had impersonated both the despot of Kandahar and the high priest, and hoped to force Fascination into his employ through this convoluted plot. This alien had already succeeded in hiring the members of the Technet who had just left the group. His team was the Special Executive, a future version of the Technet. The team's precognitive told him that Fascination wouldn't join the Special Executive for another 300 hundred years.

    Fascination brought Captain Britain and his companion Meggan to 14th century Peru to rescue Gatecrasher. Captain Britain gathered together the plants necessary to create the antidote that would kill the parasite eggs. Gatecrasher and Yap consumed the antidote, and then they, Fascination, Captain Britain, and Meggan returned to their own time period.

    Gatecrasher recruited new members Numbers and Waxworks and all the former members except Elmo rejoined.

    Opal Luna Saturnyne hired the Technet to capture Rachel Summers who, according to Saturnyne, was a threat to the universe. At the time Rachel was on the run from Mojo who had enslaved her to star in his movies and had sent the warwolves after her.The Warwolves and the Technet fought over Rachel and during the fight, Ferro 2 was killed. Rachel was saved by Captain Britain, Meggan, and her fellow X-Men Nightcrawler and Kitty Pryde. Together they fought off the Technet, with Gatecrasher feeling for her life, who then retreated. This battle against the Technet led directly to the formation of the team Excalibur by Summers and her allies. It was later revealed that Saturnyne had hired the Technet under orders of Roma, who needed to form the superhero team to save the multiverse.

    The Technet were allowed to stay in Brighton, England, where they would use their alien technology to provide the city with sunny weather. Meanwhile they would plot to capture Rachel Summers and regain their honor. During this time, they were hired by Sat-Yr-9, who had taken the identity of Courtney Ross. The Technet were hired to free Jamie Braddock. They succeeded in their task, but Jamie was taken by Ross and the Technet's memories of their mission were wiped. Gatecrasher then constructed Hardboiled Henry, a living bomb, to ambush Excalibur. The plan succeeded and the Technet nearly defeated Excalibur, but agents of Saturnyne interfered. The Technet received a holographic message from Saturnyne, telling them that they were permanently exiled to Earth-616 and that the bounty on Phoenix was canceled. Furious the Technet turned on Gatecrasher, but Gatecrasher and Yap teleported away. The Technet begged Excalibur for asylum and Nightcrawler told his teammates to accept. The former Technet repaired the damage done by Hardboiled Henry to Excalibur's home. During these repairs Numbers met the dragon living in Excalibur's basement and fell in love with her. The British government came to Excalibur's home for help against an invisible, murderous creature, but only Nightcrawler was home, nursing a broken leg. Nightcrawler trained the aliens to become the N-men and they managed to destroy the creature, but Joyboy disappeared during this mission. Shortly afterward the Special Executive appeared on Earth and told the N-men that they had predicted Earth's destruction to happen within the next few hours. They offered the N-men a job. The N-men agreed and teleported away, together with Numbers, the dragon and their newly born children.

    Excaliber were able to prevent Earth's destruction and found Joyboy with the Crazy Gang. Here Joyboy had formed a psychic bond with the Crazy Gang's Red Queen, using his powers to distort her nightmares and form a beautiful land. During this time, Gatecrasher began to go insane, seeing images of Hardboiled Henry, who accused her of making his death meaningless.

    The Technet later reappeared. In this appearance Gatecrasher was the leader once more and Joyboy and Hardboiled Henry had returned as well. Roma had hired them to capture Franklin Richards. Fantastic Four and the Roma came to a agreement and Technet disappeared.

    In Other Media

    X-Men

    All members of Technet were seen in Proteus, Part 1.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-118590/","id":118590,"name":"Flotsam and Jetsam","issue_number":"3"},"id":14693,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/83833-25784-technet.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/83833-25784-technet.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/83833-25784-technet.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/83833-25784-technet.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/83833-25784-technet.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/83833-25784-technet.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/83833-25784-technet.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/83833-25784-technet.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/83833-25784-technet.jpeg","image_tags":"All Images,Technet"},"name":"Technet","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/technet/4060-14693/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14778/","count_of_isssue_appearances":0,"count_of_team_members":8,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-03-22 06:14:11","deck":"Individuals empowered by Pendragon spirits which were once members of the Round Table.","description":"

    History

    The Knights of Pendragon are individuals who the Green Knight, a proclaimed mystical protector of Britain who lives in the Green Chapel in the realm of Avalon, places Pendragon spirits into which were the original spirits of the true Knights of the Round Table. The Green Knight is apparently subdued by an endless conflict with the Bane, who are lackeys of his sworn enemy, the Red Lord. Supposedly the Green Knight is a sort of real-life embodiment of Britain's nature while Bane have the sole purpose of endangering Britain. When this happens, The Green Knight sends Pendragon souls to unsuspecting individuals to help protect Britain.

    Other Version

    \"No

    On the planet Arakne, there was another team of Knights, in the homeland form of spiders.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-93503/","id":93503,"name":"Brands & Ashes","issue_number":"1"},"id":14778,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/3384208-revowarkop2014003-cov.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/3384208-revowarkop2014003-cov.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/3384208-revowarkop2014003-cov.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/3384208-revowarkop2014003-cov.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/3384208-revowarkop2014003-cov.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/3384208-revowarkop2014003-cov.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/3384208-revowarkop2014003-cov.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/3384208-revowarkop2014003-cov.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/3384208-revowarkop2014003-cov.jpg","image_tags":"Albion,All Images,Artwork,Dai Thomas,Earth-616 Union Jack,gallery,Gawain,Kate McClellan,Main Gallery"},"name":"Knights of Pendragon","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/knights-of-pendragon/4060-14778/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14821/","count_of_isssue_appearances":0,"count_of_team_members":10,"date_added":"2008-06-06 11:27:47","date_last_updated":"2017-07-30 16:55:08","deck":"Team of professional criminals from the crooked world of Earth-238.","description":"

    They also exists on Earth-616.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-128107/","id":128107,"name":"Honour Thy Father","issue_number":"377"},"id":14821,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5982621-img_6996.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5982621-img_6996.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5982621-img_6996.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5982621-img_6996.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5982621-img_6996.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5982621-img_6996.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5982621-img_6996.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5982621-img_6996.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5982621-img_6996.png","image_tags":"All Images"},"name":"Crazy Gang","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/crazy-gang/4060-14821/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14851/","count_of_isssue_appearances":0,"count_of_team_members":6,"date_added":"2008-06-06 11:27:47","date_last_updated":"2013-03-17 08:16:35","deck":"Black Air was formerly a Governmental Intelligence department that operated mainly within the UK.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-66372/","id":66372,"name":"Back to Life","issue_number":"86"},"id":14851,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/2751807-black_air_excalibur_89_logo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/2751807-black_air_excalibur_89_logo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/2751807-black_air_excalibur_89_logo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/2751807-black_air_excalibur_89_logo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/2751807-black_air_excalibur_89_logo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/2751807-black_air_excalibur_89_logo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/2751807-black_air_excalibur_89_logo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/2751807-black_air_excalibur_89_logo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/2751807-black_air_excalibur_89_logo.jpg","image_tags":"All Images,Gallery"},"name":"Black Air","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/black-air/4060-14851/"},{"aliases":"Calibur","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14864/","count_of_isssue_appearances":0,"count_of_team_members":36,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-10-08 20:39:27","deck":"Excalibur is a super-group of mutants in the Marvel Universe that are based out of Britain. They are an off-shoot of the X-Men books and contain many one time X-Men members.","description":"

    Origin

    \"Original
    Original Team

    The team was first formed after the events of the Fall Of Mutants story arc. When the world sees the X-Men's death broadcasted worldwide, no-one knows about their reincarnation, least of all their fellow teammates: Shadowcat, Marvel Girl (then Phoenix II), and Nightcrawler. Because of this, they join Meggan and Captain Britain to form Excalibur. Their base of operations was inside Captain Britain's home, a lighthouse.

    The first adventure in their own title involved the Warwolves, a group of alien creatures which resemble metallic werewolves. They collect human skins and wear them as disguises. In this adventure, they had come to earth looking for the skin of Phoenix, but in a mix up at the train station Shadowcat was captured. Her phasing powers complicated their plot, but soon enough the rest of Excalibur arrived to help. This event was the beginning of Excalibur.

    Excalibur took on a more light-hearted tone then the rest of the X-titles. Some of their other early adventures include run ins with villains from both X-Men continuities (like Juggernaut) and also incorporated elements and enemies from Captain Britain's Marvel UK adventures (like Gatecrasher and Saturnyne). One example is a fight that broke out between Captain Britain and Juggernaut. There is also the Crazy Gang, which was temporarily ran by Arcade and his Murderworld. More importantly; after a Cross-Time portal opens Excalibur meets many new enemies such as the Lightning Force, an alternate version of Excalibur from Earth-597. Some early themes of the book revolved around each member having issues with their powers.

    The team eventually learns (through Merlyn's manipulations) that Roma, their supposed guardian, set up all the events surrounding their formation. All leading up to Excalibur fighting and defeating Necrom and the Anti-Phoenix.

    Beginning with issue #71, the creative team decided to more closely associate Excalibur with the mainstream X-Men books. With the team pared down to just Shadowcat, Nightcrawler and Phoenix (the rest of the team indisposed for various reasons), they moved Excalibur's base of operations to Moira's MacTaggart's Muir Island. Excalibur then filled out its ranks with other X-men characters (such as Wolfsbane and Colossus) as well as bringing Captain Britain (as the mad Brittanic) and Meggan back to the fold.

    The team eventually disbanded to the winds after the wedding of Brian Braddock and Meggan (mostly to facilitate Colossus, Nightcrawler and Shadowcat's return to the X-Men).

    Creation

    Excalibur was originally created by Alan Davis, Paul Neary, and the renowned X-Men writer Chris Claremont. Alan Davis and Paul Neary won an Eisner award for \"Best Comic Book art Team\" in 1989 during their Excalibur stint.

    Team Evolution

    Original Excalibur

    Excalibur was formed in Britain, and was composed of British super-heroes Captain Britain and Meggan as well as the X-Men's Marvel Girl, Kitty Pryde, Lockheed, Nightcrawler, and a new character Widget. This team eventually expanded to include Kylun, Feron, Cerise, Pete Wisdom, Douglock, Colossus, Amanda Sefton, Moira Mactaggert, Micromax, Mimic and Wolfsbane.

    Genoshan Excalibur

    For more information see:

    Excalibur

    (Genoshian Team)

    The second major incarnation of Excalibur bears no connection to the original team other than its name, and was never actually referred Excalibur save the name of the comic book.

    New Excalibur

    \"New
    New Excalibur

    After M-Day, several of the X-Men joined Psylocke in visiting England to see how Captain Britain was faring. Although he was happy to see her, their reunion was cut short by the news that Dazzler was attacked and was presumed dead. Upon arrival the group was able to revive her and quickly learned that she was attacked by a group of original X-Men doppelgangers. They learned that these X-Men were from another dimension, and the evil Charles Xavier's mind had been taken over by that dimension's Shadow King. Psylocke was able to help defeat the Shadow King, and the X-Men doubles are still in custody.

    The team was brought back in time by the original Black Night in order to save King Arthur's Camelot. With the assistance of Excalibur, Merlin was able to defeat a pack of dragons that threatened Camelot's existence.

    After nearly being beaten by the Wrecking Crew, Juggernaut is feeling less powerful than ever. In an attempt to regain some of his former glory, Juggernaut set out for the Temple of Cyttorak to reclaim the Crimson Gem of Cyttorak, the source of his power as the Juggernaut. The rest of Excalibur followed behind. Closing in on the temple, the team had to deal with their feelings for each other as Cyttorak's power brought out negative emotions between them. This included Nocturne confronting Dazzler about the way she treated the Juggernaut, revealing Nocturne's feelings for the Juggernaut. After battling his inner demons, Juggernaut and the rest of Excalibur returned to England. While this was a momentary victory for Juggernaut, he brought the gem back not yet knowing what he was going to do with it. The Black Night also left the team to try to uncover the secrets of his sword.

    Nocturne had a stroke. After weeks of hospitalization and rehabilitation, she still struggled to regain the use of her body and mind. With the team's support, Nocturne found the strength to continue trying to reclaim what she used to take for granted. This experience was hard on the team as such an ailment reminded them of their mortality.

    Dawn of X

    Years later, Betsy Braddock returned as Captain Britain, and along with Rogue, Gambit, Jubilee, Rictor and the former supervillain En Sabah Nur, reformed the Excalibur team. They faced many challenges, such as dealing with Betsy's brother, Jamie Braddock, awakening Rogue from a coma, locating and resurrecting Betsy, and more.

    Major Story Arcs

    Inferno

    \"Excalibur
    Excalibur #6

    Following the events with Arcade and the Crazy Gang, Excalibur was thrown into Inferno. As Excalibur lay in deep slumber, Rachel Summers has a shocking dream depicting her brother through her psychic link. Suddenly, without a moments hesitation, she pounces out of bed and flies directly out of the Excalibur Lighthouse, leaving a gaping hole in the roof. The other members wake up; startled with the noise. Kitty Pryde, Rachel's roommate, attempts to recover from Rachel's uniform psychic attack as she informs the rest of Excalibur what she suspected. Soon, the team had left the Lighthouse, in search of their fellow teammate.

    As Excalibur approached New York City, they realized something was very wrong. The sky had changed colour, with dark shadows crossing the sky. After they reached the City, the team split up. Meggan was caught by N'astirh, and therefore transformed into the Goblin Princess. Rachel on the other hand, after being over thrown by a pack of 'Limbo Demons', is suddenly transformed into some sort of 'Plastic Bride.' She is then captured by the demon Crotus, a lowly creature who has finally caught a break. He takes Rachel to the 'Demon Priest,' where they prepare for their marriage. Nightcrawler is having a bit more luck. He had managed to stay away from the heavy demon attacks, but he instead reflects on his powers. He notices that many objects and places in the city are changing. A great example is the car that grows teeth, and a hunger to go with them. This \"Demon Car\" attempts to eat a crowd of civilians, and Nightcrawler breaks into a fight. As he finished this battle, he finds more inanimate objects becoming alive. This time, a pack of creepy Mannequins.

    Kitty Pryde however is not by herself. She and Captain Britain were together as the local theater came alive! Out of nowhere reels of film were flying about the street, sucking innocents inside, as well as Kitty and Cap. Inside the theater they find a warped reality, with Meggan, the Goblin Princess behind it. Meggan, (possibly subconsciously because of Captain Britain's current behavior) plays with Captain Britain, taunting him. Kitty is rather left alone by Meggan, but is however treated to other horrors. But in this tangible world, Kitty figures out she can control it, and therefore summons Illyana Rasputin's Soulsword! With this she defeats Meggan and saves Captain Britain.

    Soon the events of Inferno are finished, and the team return to normal, although they find that their powers are now getting weaker.

    Cross-Time Caper

    The Cross-Time Caper occurred when Widget unexpectedly activated himself and transported the Excalibur team and their train across into an alternate world. It was one in which the magic of the earth was very high, leading to Meggan and Captain Britain's powers returning to full capacity. A young knight, Prince William, sees Shadowcat unconscious and thinks the worst when he sees Lockheed, her pet dragon. When the rest of Excalibur arrives the problem is resolved, but the boy is left with a huge crush on Shadowcat. He therefore asks for her hand. She refuses, but is then taken away and 'transformed' into a real princess. The rest of the team are left on their own, and soon find the prince's real match. After that their train is fixed and they 'jump' on to another world.

    Excalibur then finds themselves in a world similar to their own, but with one small difference. The heroes all seem to be insane and run around fighting each other, killing one another in the blink of an eye. When Galactus sees this, he is outraged, and decides it is best if the world is destroyed as it is to silly. The team just get out before the world collapses.

    We soon find out about the Bounty hunter Gatecrasher and her band of Mercenaries, Technet. They have been sent to earth to find, and capture Phoenix. Unfortunately, she is not there, (she, along with the rest of Excalibur are travelling through alternate dimensions) and with fear of failing her boss, the Technet stay and wait for the Phoenix.

    As we travel to another realm, we see a new situation. The team has been split up, all landing somewhere else. Nightcrawler is on a ship and ends up with a beautiful woman who is by herself. Soon though, space pirates attack the ship and Nightcrawler, thinking that he is helping knocks out the boss. It turns out that she was the heir to the ship after her father died. Nightcrawler is left in a sticky situation, and the rest of the team are not better off!

    Soon, once again the team is transported to an alternate dimension, one in which everyone is constantly racing. The world is the race track and the sport is everything. We also see Jamie Braddock and his mysterious, reality warping powers. This leads to a disturbing sequence involving Meggan and Phoenix changing bodies.

    After we see Jamie Braddock's powers in the alternate dimension, we also see them in the original. It seems that he is controlling his alternate self in a plot to capture the team. Meggan tries to fight him in the alternate world and transforms into different X-Men. In all the confusion Shadowcat enters a portal leading back home, where she is cut off from the team for a long time.

    The others stories we see include a world where Iron Man is Evil, and works for the Shadow King. And another in which Illyana Rasputin's Demon side is shown greatly; in a world where super-humans are hunted and captured. This was committed by a group led by none other than the alternate version of Captain Britain and his sister Psylocke.

    The Cross-Time Caper eventually ended when they were given assistance by an overseer who was fed up with all of the cross-time damage they were responsible for.

    Alternate Realities

    Earth-597

    \"Lightning
    Lightning Force

    In this reality the Excalibur team was known as the Lightning Force. This world resulted after the Germans won WWII, therefore the team were Nazi's. One of the members, Shadowcat (who is Jewish), was an enslaved Teammate. As well as this, Captain Britain's counterpart was named Hauptmann Englande, and lead the group or mercenaries.

    Earth-924

    In this reality the team was known as Calibur. Members were: Cap'n Saxonia, Doctor Strange, Hulk, Iron Fist and Spider-Girl who were seen fighting an alternate Kang the Conqueror during Excalibur's journey across various alternate realities during The Cross-Time Caper Saga. They were also seen being flung across several dying universes when The Chaos Wave (a tidal force of chaotic energies unleashed by a tear in the fabric of time/space that was formed when Earth-616's Scarlet Witch created The House of M reality) tore across The Omniverse, rendering countless worlds asunder. It is unknown whether or not if the members of Calibur survived the disaster.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-120344/","id":120344,"name":"The Sword Is Drawn","issue_number":"1"},"id":14864,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7126024-01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7126024-01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7126024-01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7126024-01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7126024-01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7126024-01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7126024-01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7126024-01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7126024-01.jpg","image_tags":"All Images"},"name":"Excalibur","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/excalibur/4060-14864/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14871/","count_of_isssue_appearances":0,"count_of_team_members":22,"date_added":"2008-06-06 11:27:48","date_last_updated":"2018-10-18 12:00:01","deck":"The Starjammers are a group of space pirates. They were formerly led by Christopher Summers alias Corsair, then by his son Havok.","description":"

    Origin

    Ever since Christopher Summers was a boy, he loved the adventures of the swashbuckling heroes of old novels and movies. Even as a major in the United States Air Force, he chose the call sign \"Corsair\" in homage to them. Chosen for the space program, he hoped he would soon travel into space. He got his wish, but not in the way he would have wanted.

    Following a visit to his parents in Anchorage, Alaska, Major Summers was flying his wife, Katherine Summers, and his sons, Scott (a.k.a. Cyclops) and Alex (a.k.a. Havok), down the Pacific coast in his private plane when they were attacked by a Shi'ar starship. Scott and Alex parachuted to safety, but Major Summers and his wife were teleported aboard the starship and taken back to the Shi'ar throneworld. Their last view of their sons was of their parachute on fire, and they assumed their children had perished.

    Christopher was imprisoned but escaped only to find Emperor D'Ken attempting to force himself on Katherine. They fought and in the scuffle D'Ken murdered Katherine before Summers' eyes and then sentenced him to the mines of the planet Alsibar. Unknown to Christopher, Katherine was pregnant at the time of her death. This fetus was harvested and aged to adolescence in an incubation chamber. The resulting child, Gabriel (a.k.a. Vulcan), was raised as a slave of the Shi'ar. After escaping the mines of Alsibar, Corsair and his fellow escaped slaves began a life of piracy in opposition of D'Ken's rule.

    Creation

    The Starjammers were created by Chris Claremont and Dave Cockrum in 1977 and first appeared in X-Men # 107.

    History

    Prison Breakout

    Slowly, Christopher Summers' spirit was broken. This changed when he witnessed some guards viciously beating a fellow slave—a female, catlike alien named Hepzibah. Outraged, Summers attacked the guards. Two more of his fellow prisoners—Ch'od and Raza Longknife—came to his assistance.

    Together, the four stole a spaceship and escaped. Summers took the name Corsair and called his new band of outlaws the Starjammers, sharing their name with the ship they'd stolen. They became rebels and pirates, revenging themselves on the Sh'ar by attacking their spacecraft.

    Meeting the X-Men

    The Starjammers helped the X-Men to stop the Shi'ar Emperor D'Ken's attempt to destroy the universe with the M'Kraan Crystal. In gratitude, Lilandra unofficially put an end to the feud between the Empire and the Starjammers. After she was overthrown by Deathbird, Lilandra found refuge with the team until she regained the Shi'ar throne.

    Now aware that his two eldest sons survived their crash, Corsair developed a distant but emotional relationship with Scott and Alex, although he remained in space due to his responsibilities with the Starjammers.

    Corsair's Legacy

    After Corsair's death at the hands of his youngest son and new Emperor of the Shi'ar, Vulcan. A new group of Starjammers were born determined to bring justice to Vulcan and return Lilandra to her throne as the true Shi'ar Empress. Corsair's second son, Havok, took his father's mantle as leader of the Starjamers. He was accompanied by Rachel Grey (a.k.a. Marvel Girl), Corsair's granddaughter from an alternate timeline, as well as by Lorna Dane (a.k.a. Polaris). Also on the crew were Korvus, Creee, and Sikorsky.

    Emperor Vulcan

    Under Havok's leadership the Starjammers use guerrilla tactics against the Emperor's forces while gathering more military forces loyal to the before exiled General Ka'Ardum of the Shi'ar Military in effort to even the battle against Vulcan and his military forces who also has the Imperial Guard on his side.

    They however in the middle of an important battle against Vulcan himself who had amassed his own military power where forced to deal with a new very destructive threat intent on destroying the Shi'ar with an incredibly powerful weapon. This brought about the temporary cease fire between the Summer's brothers thus the Starjammers and the Shi'ar till it was dealt with.

    Vulcan however as soon as their mutual enemy was dealt with seized the weapon for his own use and turned on the Starjammers but Havok destroyed the weapon thou not before Vulcan and his Imperial Guard managed to capture both the crew and their ship. With only Marvel Girl, Korvus and Lilandra escaping as they are betrayed by General Ka'Ardum who decides to switch allegiance and sides with Emperor Vulcan.

    King Breaker

    Vulcan ships the four Starjammers to a new underwater prison, The Hole, on the planet Kr'nn and proceeds to try and break them over the course of months using various means available to him but remains unsuccessful.

    The three remaining free Starjammers in the meantime try to find the location of the rest of their crew while managing to retrieve their ship. They eventually manage to get the answer from Gladiator though. Before they could break them out, they encounter a new set of more ruthless Imperial Guards Vulcan has sent to kill them.

    On Kr'nn, Havok frees first himself and his crew and proceed to get control over the prison. Deciding to make a stand right there when Vulcan returns as he has been doing frequently since their capture. The other three eventually join up there with the intent of rescuing them when the new Imperial Guard members meet up with them for battle they lose Raza to ZZZXX and shortly after are joined by other Imperial Guards including Vulcan and Deathstrike.

    The Starjammers put up a fierce battle unintentionally aided by Gladiator who upon seeing his fellow Strontian who is on the other Imperial Guard team immediately skips the Starjammers and battles her instead. Both Rachel and Korvus mid-battle loose their Phoenix powers that suddenly leaves them. Deathbird attacks Lilandra intent on killing her sister ends up getting impaled by the dethroned impress wounding her critically.

    Havok having absorbed the Hodinn, an Imperial Guard who is made up of a star, uses this power boost to fight Vulcan to the point where he is about to kill Vulcan when Polaris, who has been holding the ceiling from collapsing on them after it was compromised by the Hodinn and Marvel Girls crash entry, states she can no longer hold the ceiling and Lilandra orders an emergency teleport evacuation for her team despite Havok's protest and once aboard the Starjammer the ship makes a quick getaway heading straight to the Kree homeworld, Hala.

    War of Kings

    The Starjammers are followed by the Shi'ar all their way to Kree Space where the exiled Lilandra intends to seek audience with the Kree's new King, the Inhuman Blackbolt to grant her asylum from Emperor Vulcan.

    During the Royal wedding between the Kree, Ronan the Accuser and the Inhuman, Crystal. Vulcan's Imperial Guard strike fast and hard before teleporting out. The Starjammers are quick to counter attack but are blitzed and Lilandra is captured, Ch'od looses his hand when trying to stop them from taking her.

    The Starjammers however are quick to go after her from the clutches of the Shi'ar. They accompanied by the new Inhuman Elite strike and board a Shi'ar vessel to retrieve information on her location and proceed to go after them. They encounter the faction of the Guardians of the Galaxy sent out as an envoy to meet with Emperor Vulcan and quickly take them along to retrieve Lilandra. The Starjammers together with the Guardians drop in on the Shi'ar ship bring Lilandra back to the Shi'ar Throneworld where she is to stand trial.

    They are quick to engage the Imperial Guard as they board where Rachel aiding Rocket Raccoon gets the drop on Gladiator till he sees through their trick and proceeds to quickly defeat the two teams but then after Lilandra pleads with him he seems to turn on the Imperial Guards and killing one of them in the process.

    Members Korvus and Rachel Summers of the Starjammers than suddenly lose their connection to the Phoenix Force during a battle. Havok than leads the Starjammers back to Earth because of this but Ch'od and Raza Longknife stay behind.

    Other Media

    Animated

    X-Men: The Animated Series

    The Starjammers appeared during the Phoenix Saga episodes.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-17371/","id":17371,"name":"The Gentleman's Name is Magneto","issue_number":"104"},"id":14871,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2373850-uncanny_x_men_482.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2373850-uncanny_x_men_482.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2373850-uncanny_x_men_482.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2373850-uncanny_x_men_482.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2373850-uncanny_x_men_482.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2373850-uncanny_x_men_482.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2373850-uncanny_x_men_482.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2373850-uncanny_x_men_482.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2373850-uncanny_x_men_482.jpg","image_tags":"All Images,Earth-616 Corsair,Earth-616 Hepzibah,Earth-616 Polaris,Earth-616 Raza,Main Gallery,Starjammers"},"name":"Starjammers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/starjammers/4060-14871/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14915/","count_of_isssue_appearances":0,"count_of_team_members":23,"date_added":"2008-06-06 11:27:48","date_last_updated":"2021-03-09 02:24:16","deck":"The Purifiers are a terrorist group engaged in a holy war against mutant-kind. Their aim is the eradication of mutants everywhere. They have deceived people who believe that it is God's will to exterminate mutants.","description":"

    History

    The Purifiers were originally disciples of Reverend William Stryker, whose agenda is based on an extreme version of Christian fundamentalism. Stryker and his Purifiers believed mutants to be an abomination against God, and a manifestation of the Devil's evil influence on the world.

    Under Stryker's leadership, the Purifiers were successful enough to capture Professor X during an attack on the X-Men which also resulted in the deaths of several mutant children. This forced the X-Men to unite with their chief adversary, Magneto, in an effort to defend themselves and free their mentor. In the end, Stryker was shot and arrested by authorities. Afterwards, the Purifiers disbanded for a time.

    Eventually, William Stryker was released from prison. While out he discovered the whereabouts of the futuristic Sentinel called Nimrod. Stryker used Nimrod in order to witness the affects of M-Day months before it actually happened. Using knowledge of the future gained from the Sentinel's memory system Stryker also saved several human lives, and suggested those incidences were \"miracles\". This enabled him to re-energize support for the Purifiers, and he recruited many new members.

    In the wake of M-Day, and the decimation of the mutant population, Stryker and his forces engaged in brutal attacks on the remaining mutants. Their belief was that God did his part on M-Day, and that it was their job to finish his work by killing the rest. Among their victims were junior X-Men, Wallflower and Icarus, the former of which was killed by Matthew Risman. Matthew would eventually become the new leader of the Purifiers after Stryker himself was killed by Elixir of the New X-Men.

    Matthew Risman's Purifiers are currently one of three groups engaged in a race against time to find the Baby Mutant born since M-Day. The other two are Mr. Sinister's Marauders, and the X-Men. Each group has its own agenda regarding the child. Also, since losing his powers, Rictor of X-Factor Investigation's is now a member of the Purifiers, but secretly spying on them for the X-Men.

    They are now the primary targets of the newly formed X-Force. they recently took hold of one of its members, Wolfsbane. When the X-Force took her back, they didn't know that they gave some mind-control where Wolfsbane attack Angel and ripped out his wings. Wolfsbane gave them to Risman, in turn, he extracted the technorganic strain from Angel's wings when he used to be Apocalypse's Horseman of Death. Risman use the strain to make an army of \"angels\" called the Choir, that will eradicate the remaining mutants.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-21795/","id":21795,"name":"X-Men: God Loves, Man Kills","issue_number":"5"},"id":14915,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/217860-31315-purifiers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/217860-31315-purifiers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/217860-31315-purifiers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/217860-31315-purifiers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/217860-31315-purifiers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/217860-31315-purifiers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/217860-31315-purifiers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/217860-31315-purifiers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/217860-31315-purifiers.jpg","image_tags":"All Images,Purifiers"},"name":"Purifiers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/purifiers/4060-14915/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-14999/","count_of_isssue_appearances":0,"count_of_team_members":5,"date_added":"2008-06-06 11:27:48","date_last_updated":"2020-09-25 19:39:59","deck":"Nameless goons working for the Hellfire Club.","description":"

    In Other Media

    Video Games

    \"Avengers
    Avengers Alliance
    • The Hellfire Club appears as a stage in the X-Men game for the Sega Game Gear.
    • The Hellfire Club is also a stage in X-Men 2: Game Master's Legacy.
    • The Hellfire Club guards appears as enemies in Wolverine: Adamantium Rage.
    • Hellfire Club mercenaries appear as enemies in X-Men Legends II: Rise of Apocalypse.
    • Hellfire Club mercenaries appear as enemies in the Facebook game Marvel Avengers Alliance.

    Merchandise

    \"Marvel
    Marvel Legends
    • A Hellfire Club guard was featured in Diamond Select's Minimates line as part of a two-pack with Jean Grey as the Black Queen.
    • The Hellfire Club guards were featured in the HeroClix figure game.
    • The Marvel Legends Series IV Wolverine figure from Hasbro came packaged with a display base that featured a pair of unconscious Hellfire Club guards.
    • The Marvel Legends Pyro figure from ToyBiz was supposed to include a Hellfire Club guard as a special bonus figure, but this ended up being scrapped for cost reasons.
    • A Hellfire Club guard was featured in Hasbro's Marvel Legends line as an online exclusive only available on the Hasbro Pulse website.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20114/","id":20114,"name":"God Spare The Child...","issue_number":"129"},"id":14999,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31599/770527-hellfire_club_01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31599/770527-hellfire_club_01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31599/770527-hellfire_club_01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31599/770527-hellfire_club_01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31599/770527-hellfire_club_01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31599/770527-hellfire_club_01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31599/770527-hellfire_club_01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31599/770527-hellfire_club_01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31599/770527-hellfire_club_01.jpg","image_tags":"All Images,Hellfire Soldiers"},"name":"Hellfire Soldiers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/hellfire-soldiers/4060-14999/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15025/","count_of_isssue_appearances":0,"count_of_team_members":4,"date_added":"2008-06-06 11:27:45","date_last_updated":"2012-02-23 06:35:55","deck":"The Goth were a trio of super-powered individuals who were led by a man who was also called the Goth,made their debut in X-Men #103","description":"

    The Goth members are :

    Beldame

    Sanguine

    Wanderer

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-65802/","id":65802,"name":"The Goth","issue_number":"103"},"id":15025,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6754/176340-99945-the-goth.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6754/176340-99945-the-goth.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6754/176340-99945-the-goth.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6754/176340-99945-the-goth.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6754/176340-99945-the-goth.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6754/176340-99945-the-goth.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6754/176340-99945-the-goth.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6754/176340-99945-the-goth.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6754/176340-99945-the-goth.jpg","image_tags":"All Images,The Goth"},"name":"The Goth","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/the-goth/4060-15025/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15083/","count_of_isssue_appearances":0,"count_of_team_members":24,"date_added":"2008-06-06 11:27:48","date_last_updated":"2018-01-17 14:03:30","deck":"Generation X was a Marvel super-group that was a junior team off-shoot of the X-Men. The team was led by former X-Men member Banshee and reformed Hellfire Club villainess White Queen. A new incarnation of Generation X will center around young mutants with powers that are difficult on a 'team setting.' This new group will be taught and led by former Generation X and X-Men mainstay, Jubilee.","description":"

    Generation X Beginnings

    \"The
    The first Team

    Mutant teams are not uncommon in the Marvel universe. The X-Men are the primary team, and then there are many offshoots such as X-Factor and the New Mutants. Generation X formed in 1994 and it changed the formula for the X-books in several ways. They were not mentored by Charles Xavier (Professor X), they did not train at the Xavier Institute for Higher Learning and originally the only offshoots from other X-teams were: Banshee- a somewhat minor character, Emma Frost- a former villain from the Hellfire Club, and Jubilee-the youngest X-Man. Despite (or because of) these changes in formula, Generation X proved to be very successful. Also, Generation X didn't initially identify themselves as such until later in the book.

    They trained at the Xavier School for Gifted Youngsters (later renamed back to its historic Massachusetts Academy name when Xavier's got some bad press) and had a Danger Grotto (also known as the Biosphere or the Grotto for short) made from Shi'ar technology and bits of Krakoa the Living Island. Generation X formed as a result of the Phalanx Covenant.

    Generation X Mentors

    Banshee (Mentor) - Although Banshee technically wasn't a member of Generation X, he was a mentor and played a large role in their history. Sean Cassidy was a young rich mutant with undiscovered powers. His parents died, leaving him and his cousin Black Tom Cassidy with a huge fortune and a castle, Cassidy Keep. Soon, Sean gained complete control over his inheritance; winning his cousin's share in a dice game. Sean later became an Interpol agent and also got married to Maeve Rourke. While he was away on a mission Maeve discovered she was pregnant and gave birth to their daughter, Theresa Cassidy.

    Maeve was killed soon after in a bomb explosion, so Tom had to take care of Theresa. Sean returned and was devastated from his wife's death and also livid at Tom for not taking care of Maeve. Sean knocked him into a chasm that broke his leg. Tom was vengeful, and promised to get revenge on Sean by never telling him about his daughter.

    Sean left Interpol (Deadpool screwed up a mission of his), and went freelance. Sean was discovered by Factor Three, a villain team, and their leader Changeling invited him to join. Sean was horrified and refused, but Factor Three kidnapped him. He was forced to do their bidding, by a handful of explosives they had placed on him. After working for them for a long time, Sean ran into the X-Men on a mission in New York. Professor X easily disarmed the bombs and Sean, code named Banshee, helped the X-Men stop Factor Three. He later accepted an offer an offer of membership into the X-Men.

    He ran many missions with the X-Men, fighting criminals and falling in love with Moira MacTaggert. However, while fighting a criminal (Moses Magnum) his vocal cords were damaged and he lost his powers. Banshee remained an ally of the X-Men as his voice and powers gradually returned.

    It was during this time that he learned of his daughter's existence. Theresa had become Siryn, inheriting her father's sonic scream. She had thought Tom was her father, and she was overjoyed to learn of her real father's existence. Unfortunately, she felt obligated to Black Tom Cassidy and was using her powers to help him commit crimes. With Sean's help Theresa reformed and became his partner. He rejoined the X-Men, but they soon put him in position as the mentor of Generation X.

    Emma Frost (Mentor) - Emma Frost was the other mentor for Generation X. She has spent most of her time as a villain, the White Queen of the über-rich, socially elite Hellfire Club. She was part of the Inner Circle, the important members, the ones who really mattered (it even included a former Brotherhood member and supervillain, the original Mastermind). The Hellfire Club plotted world domination which brought them into conflict with the X-Men. During the ensuing fight, Emma engaged in a psychic battle with Jean Grey(then called Phoenix Force). Emma lost, but eventually healed.

    While in the Hellfire Club,Emma established the Massachusetts Academy to train young mutants. Her students,the Hellions, were rivals of the New Mutants from the Xavier Institute for Higher Learning. Unfortunately, Trevor Fitzroy, a powerful time-traveling mutant set loose a Sentinels attack on Frost and the Hellions to earn points in the Upstarts game. All but two (Warpath and Empath). of the Hellions were murdered, while Emma was left comatose.

    After Generation X

    After Generation X, Banshee was saddened because Moira MacTaggert died (killed by Mystique). He founded the X-Corps, a more violent branch of the X-Men that is more dangerous and affiliated with former criminals from Magneto's Brotherhood Of Evil Mutants. He actually was brainwashing the criminals, but Mystique stopped him, freed the members, and cut his throat. After healing, he was killed trying to save a jet of civilians. He is currently dead, but he left Siryn everything and apologized for the X-Corps problem. He is now dead.

    Banshee mutant power was that he had amazingly strong lungs and vocal cords. He could let off a \"sonic scream\". He could let off blasts of deafening noise that paralyze, kill, or incapacitate. He could project sonic blasts that stun, nauseate, disorient, knock out, deafen, or put into a trance his enemies. He could fly at the speed of sound and let off blasts of sound that disintegrated steel.

    Emma Frost traveled to Genosha, an island for mutants. It was destroyed in a Sentinels attack. She survived because of her previously unknown other power-she could turn into a diamond form with enhanced strength and amazing durability. She joined the X-Men, and started to training five telepathic quintuplets, the Stepford Cuckoos. One died and the others blamed her. She also had an affair with the depressed Cyclops. Eventually, when Jean Grey found out, she was furious, easily destroying Emma's telepathic defenses and traumatizing and humiliating her. Emma was shattered emotionally. Soon after, she was shattered physically, in her diamond form. However, Beast was able to put her together again, and she identified her murderer-one of the four remaining Stepford Cuckoos. The girl fled, and the three came back.

    Soon after, Phoenix Force died, and this left the door open for Emma Frost and Cyclops. They led Xavier's school after he stepped down. After she had led the school for a while, the Phoenix Force returned and resurrected Jean Grey. Trying to trap the Force, Emma offered her body as vessel. However, it overwhelmed her, and wouldn't leave until Jean Grey forced it too. Later, her actions allowed William Stryker to kill young mutants.

    In House of M, she was married to Cyclops and was one of the two who kept their memory through the event (the other was Wolverine).

    Emma Frost is an extremely powerful telepath, and thus possesses all of the normal telepath powers. Sometime after Generation X, she can now also herself into a nearly indestructible diamond form.

    Speaking of indestructible diamond-hard forms, after Generation X, Hollow's whereabouts have remained a mystery, assumed to be at the St. Croix estate in Algeria, until recently, when she resurfaced in a Mutant Growth Hormone drug dealer facility, in a test tube among other women in test tubes.

    After Generation X, Jubilee and Skin lived in California. Skin worked in a burger joint and Jubilee tried to make it big in Hollywood. That is, until they were both crucified by the Church of Humanity; Skin didn't survive the ordeal.

    Monet, Jubilee, and Husk later emerged as members of X-Corps, a team founded by Banshee during a troubled time in his life. The trio participated only to keep an eye on their former mentor and the group later disbanded after it was revealed that Mystique and her former teammates of the Brotherhood had been manipulating the organization.

    Monet then later joined up with the international search and rescue team X-Corporation and was even asked to be loaned for a mission with the X-Men.

    Monet has since landed on her feet as a founding member of X-Factor Investigations and has participated on missions with the X-Men most notably in the search for the first mutant baby since M-Day (see Messiah CompleX).

    Following M-Day, Jubilee and Chamber both lost their mutant abilities, causing the latter to fall into a coma and live on life support due to the nature of his former abilities. Chamber was transferred to a private hospital in Britain, but was occasionally visited by Pete Wisdom. Chamber was later revived through a serum of Apocalypse's blood and encountered the group New Excalibur, but brushed off their assistance after feeling generally betrayed by his friends with the X-Men. Due to the transfusion of Apocalypse's blood, Chamber's skin turned blue and he developed similar facial features to Apocalypse. A familiar link between the two mutants has since been hinted.

    Jubilee, on the other hand, felt there was nowhere to turn after the X-Men turned away all depowered mutants from their home in the Institute. She was last seen in a mutant half-way house where she was impaled by debris that fell from an explosion Omega Red had started.

    Chamber later joined the New Warriors as Decibel, using power implants similar to those utilized by the Thunderbolt's Songbird. He was joined by his former teammate and friend Jubilee (now taking up the code name Wondra). While Chamber has shown to be more carefree and thankful for his second chance at life, Jubilee has become a jaded field leader often taking note of possible conspiracies. The two are main members of the depowered mutant team and still maintain their close friendship.

    Penance, now known as \"Hollow\", has since been seen with the Loners with a strange affinity towards member-gone-bad Phil Urich (a former Green Goblin).

    Husk joins the X-Men after their move to San Francisco.

    Skin and Synch were revived during Necrosha and are thought to have died again after the final battle.

    Jubilee has been infected by the vampire virus in recent days during the Curse of the Mutants arc.

    ResurreXion

    \"No

    A second incarnation of Generation X, that focuses on young mutants with powers that either are hard to control or fit in with society, will be filling the pages of Marvel Comics very soon. These 'lovable Losers' will be led by former Generation X founding member as well as X-Man, Jubilee, the team will consist of Nature Girl, Eye Boy, Bling!, Quentin Quire, Morph (Deeds), and Nathaniel Carver. Other characters that are confirmed to play a role in the series are Generation X founding member Chamber as well as Shogo Lee, Jubilee's adopted baby son.

    Students

    • Nathaniel Carver 'Hindsight': is a young man that can see into other people's past, which also enables him to 'feel' their history.
    • Benjamin Deeds 'Morph': is a shape-shifter.
    • Bling!: has diamond-hard skin, and can shoot out projectiles of her own skin as weapons.
    • Nature Girl: can communicate with animals and plants, and is otherwise mute towards humans.
    • Quentin Quire 'Kid Omega': is an Omega level telepathic and telekinetic mutant.
    • Eye Boy: Has eyes that cover his body, which enables him to sense movements and feelings of others.

    Mentor

    Since the original Generation X disbanded, Jubilee has had stints on many different teams. Starting with X-Corps, she then re-joined the X-Men on multiple occasions before and after losing her mutant pyrokinetic abilities. At one point, a powerless Jubilee joined Wolverine on a few missions to combat a crime syndicate of ex-mutant killers.

    She also became the field leader of the New Warriors, which consisted of several young heroes that recently lost their mutant abilities, using tech suits for battle. Jubilee became a vampire when Dracula's son kidnapped her as a pawn to use against the X-Men, however, decided to stay a hero with much help from Wolverine, the X-Men, and a group of other heroic vampires. Jubilee came back to the X-Men once more for a long stint as a leader and also intel, after rescuing an abandoned baby boy and bringing him to the mansion.

    The perpetual teenage vampire became a mother when she legally adopted baby Shogo. Most recently, Jubilee (and Shogo,) became close friends with Patsy Walker a.k.a. Hellcat, as she became the heroine's assistant at her temp agency. Returning back to the X-Men once more, Jubilee is now in charge of leading the new group of young mutants that make up Generation X.

    Alternate Realities

    Earth 295 - Age of Apocalypse

    \"Age
    Age of Apolcaypse

    The Generation X of Earth-295 during the Age of Apocalypse was named Generation Next. The main roster was: Colossus and Shadowcat as leaders, Chamber (field leader), Husk, Vincente, Mondo, Skin, Know-it-all (aka M).

    This group was created by Magneto, to prepare a bunch of young mutants to fight Apocalypse. Magneto asked Colossus and Shadowcat to rescue Illyana Rasputin, due to she was the last time traveler alive. They used M´s powers to find her.

    Other Media

    TV Pilot

    \"Generation
    Generation X TV-Movie

    In 1996 a movie length TV pilot was aired on Fox but the series was not picked up. The team was mentored by Emma Frost and Banshee under the membership of the comic book characters M, Jubilee, Mondo, Skin and the additional characters that are especially made for the series namely Refrax and Buff.

    Novels

    Generation X

    \"No

    Driven by guilt over the brutal slaughter of her former pupils, Emma Frost finds herself tormented by strange ghostly manifestations that are threatening her new students, and it is up to the teenage mutants of Generation X to stop the havoc.

    • Written By: Scott Lobdell & Elliot S. Maggin
    • Publisher: Berkley (June, 1997)
    • ISBN-10: 1572972238
    • ISBN-13: 978-1572972230

    Generation X: Crossroads

    \"No

    The young mutants of Generation X have rented a pair of Winnebagos and are driving across the country on their first-ever road trip. But there's more than sight-seeing on their agenda, as between trips to Devil's Tower and Mt. Rushmore, they find themselves caught up in a popular anti-mutant radio talk show-- and shadowed by a vicious terrorist with a vendetta against all mutants!

    Join Banshee, the White Queen, Husk, Chamber, Jubilee, Skin, Synch, and M as they take a cross-country journey they'll never forget!

    • Written By: J. Steven York
    • Publisher: Berkley (November, 1998)
    • ISBN-10: 0425166317
    • ISBN-13: 978-0425166314

    Generation X: Genogoths

    \"No

    Genogoths. Since the time of Darwin, they have been the dark protectors of the X-gene, guarding humanity's next step in evolution and protecting lesser-powered mutants. Now, one of the Genogoths' inner circle is running for her life -- and asking Generation X for help.

    • Written By: J. Steven York
    • Publisher: Berkley (September, 2000)
    • ISBN-10: 0425171434
    • ISBN-13: 978-0425171431
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-269988/","id":269988,"name":"1994","issue_number":"4"},"id":15083,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3848/6235556-generation_x_87_sparkles.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3848/6235556-generation_x_87_sparkles.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3848/6235556-generation_x_87_sparkles.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3848/6235556-generation_x_87_sparkles.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3848/6235556-generation_x_87_sparkles.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3848/6235556-generation_x_87_sparkles.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3848/6235556-generation_x_87_sparkles.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3848/6235556-generation_x_87_sparkles.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3848/6235556-generation_x_87_sparkles.jpg","image_tags":"All Images,Gen X Vol 2"},"name":"Generation X","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/generation-x/4060-15083/"},{"aliases":"Committee to Regain America's Principles","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15136/","count_of_isssue_appearances":0,"count_of_team_members":42,"date_added":"2008-06-06 11:27:48","date_last_updated":"2013-10-18 06:38:44","deck":"The Secret Empire is a subversive organization formed by a clandestine group to take control of the U.S. government. It has had varying agents and schemes but have been beaten by several heroes over the years.","description":"

    Origin

    The Secret Empire was originally created as a criminal enterprise designed to help fund HYDRA. It eventually developed into its own separate organization.It occasionally utilized superhuman operatives, and even financed the creation of their own mercenary, Boomerang. This incarnation came into frequent conflict with the Hulk.

    One incarnation of the group inserted operatives in White House administrative roles, and framed Captain America for murder. During this same period, the organization began a significant campaign against mutants, capturing members of both the X-Men and their foes, like the Blob and Unus the Untouchable. This iteration of the Empire fell after Captain America defeated their operative, Moonstone, and their White House connection committed suicide. However, these events led Steve Rogers to experience a philosophical schism which briefly led to him abandoning the identity of Captain America to become Nomad.

    A later version of this group also came into conflict with Captain America, as well as the Defenders and other heroes. This incarnation of the Secret Empire, led by Professor Power, abandoned the numbered cloaks worn by members of previous incarnations in favor of dressing like Roman centurions. It also used superhuman agents, like Mad Dog and the Mutant Force. The Defenders ultimately defeated this group and Professor Power was rendered comatose.

    Despite the frequent failures that groups using the name experience, the Secret Empire continues to rise to threaten the Marvel Universe.

    Creation

    The Secret Empire was created by Stan Lee and Jack Kirby. It first appeared in Tales to Astonish #81 (1966).

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8672/","id":8672,"name":"When A Monarch Goes Mad!; The Stage Is Set!","issue_number":"81"},"id":15136,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15659/2030560-secret_empire_profile_taskmaster_1.jpg","image_tags":"All Images,Earth-616 Secret Empire"},"name":"Secret Empire","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/secret-empire/4060-15136/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15150/","count_of_isssue_appearances":0,"count_of_team_members":6,"date_added":"2008-06-06 11:27:47","date_last_updated":"2017-03-03 22:30:21","deck":"A male group of villainous mutants, the Nasty Boys were henchmen for Mr Sinister in the 1990's. They often had encounters with the government sponsored team, X-Factor.","description":"

    Origin

    Self-proclaimed \"Nasty Boy\" Slab faced X-Factor member Strong Guy before the team fully appeared. The full team battled X-Factor in the next issue seemingly lead by U.S. Senator Steven Shaffran. Shaffran was, in fact, a disguised Mister Sinister who had taken the Senator's form in order to publicly discredit him as a mutant terrorist. While Sinister's reasons for doing this remain somewhat mysterious (as do most of his actions), it was probably because Shaffran was attempting to use his ricochet probability powers. Recently, Nasty Boys member Ruckus appeared at a meeting for Senator Kelly.

    Creation

    The Nasty Boys were created by Peter David and Larry Stroman and first appeared in X-Factor Vol.1 issue 75 (1992).

    Members of the Nasty Boys

    Ruckus

    The leader of the team,possesses the mutant power to absorb ambient sounds, amplify them in his body and scream them back with great force. The resulting sonic attack (a nearby police siren amplified a thousandfold, for example) can be released in the form of a concentrated blast or with a larger area of effect. Ruckus believes himself to be above the law, and tries to show off this superiority at every chance he gets; he once hit a grocery store, severely wounded the store clerk and blasted his way through police just to get some free beer.

    Gorgeous George

    A mutant whose body is composed of an unspecified semi-solid, tar-like substance. In effect, George possesses limited shape-shifting powers enabling him to elongate, inflate, or open holes into his body at will. His semi-solid form gives George a certain degree of resistance to physical harm. Like the other members of The Nasty Boys, not much has been revealed regarding the early life and origin of Gorgeous George. Incidentally, he once got so drunk that he forgot how long his arms were supposed to be.

    Hairbag

    He was recruited by Mister Sinister and possesses superhuman strength, speed, agility, reflexes, hyper-keen senses, and resistance to injury. His body is covered in fur and he has razor sharp fangs and claws, as well as flexible hair follicles. During altercations with X-Factor, Hairbag often fought against Wolfsbane, his opposite. In the Nasty Boys' final fight, Hairbag was captured along with his teammate Slab and taken to a holding cell by X-Factor. While waiting for his lawyer to negotiate bail, Hairbag and Slab were broken out of prison by the Mutant Liberation Front. and returned to the Nasty Boys shortly afterwards. In the cartoon, Hairbag has poisonous breath and can eject his hair like a porcupine.

    Ramrod

    He can psionically control wood and plants. He always carries with him a staff of wood in order to make certain that he has something to use his powers on should the need arise. He is also an illegal immigrant in the United States. Unlike the other Nasty Boys, Ramrod did not appear in the TV series.

    Slab

    He is the team's resident powerhouse, able to increase his size and thereby boost his strength and durability. Slab was the first of the Nasty Boys to appear.

    Other Media

    X-Men: The Animated Series

    \"No

    The Nasty Boysappeared in a few episodes of the series Reunion, Part 1 & 2 (Episode 25 & 26) they were henchmen for Mr. Sinister.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-35377/","id":35377,"name":"The Nasty Boys","issue_number":"75"},"id":15150,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5586/1631954-nasty3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5586/1631954-nasty3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5586/1631954-nasty3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5586/1631954-nasty3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5586/1631954-nasty3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5586/1631954-nasty3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5586/1631954-nasty3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5586/1631954-nasty3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5586/1631954-nasty3.jpg","image_tags":"All Images,Nasty Boys"},"name":"Nasty Boys","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/nasty-boys/4060-15150/"},{"aliases":"Knights of Wundagore","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15344/","count_of_isssue_appearances":0,"count_of_team_members":55,"date_added":"2008-06-06 11:27:47","date_last_updated":"2015-12-09 07:29:09","deck":"Animals transformed into humanoid beings by the High Evolutionary.","description":"

    Origin

    New Men are hyper-evolved animals created by the High Evolutionary. Originally they lived on Counter-Earth until the enigmatic race known as the Beyonders took their planet. They served as Knights on Wundagore Mountain and later as the High Evolutionary's priests during Evolutionary War. All but Bova were slain by Modred the Mystic when the evil mage sought to once again bring Chthon back to Earth.

    In Other Media

    • New Men made an appearance in an episode of X-Men: the Animated Series.
    • The New Men, specifically Sir Ram, Sir Tyger, Lady Vermin, and Lady Ursula appeared in most episodes of Spider-Man: Unlimited. They were also sometimes joined by other \"beastials\" including a reptillian version of Electro, and a dragon like character called Fire-Drake
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8950/","id":8950,"name":"The People-Breeders","issue_number":"134"},"id":15344,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/798443-new_men.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/798443-new_men.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/798443-new_men.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/798443-new_men.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/798443-new_men.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/798443-new_men.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/798443-new_men.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/798443-new_men.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/798443-new_men.jpg","image_tags":"All Images,Earth-616 New Men,Furries"},"name":"New Men","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/new-men/4060-15344/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15347/","count_of_isssue_appearances":0,"count_of_team_members":26,"date_added":"2008-06-06 11:27:47","date_last_updated":"2013-07-28 12:19:54","deck":"A group of terrorists at one point led by Dark Beast. They have had more than one incarnation.","description":"

    Gene Nation

    First Incarnation

    When the mentally unstable Mikhail Rasputin flooded the Morlock tunnels, many were believed dead. However, at the last instant Mikhail used his powers to open a portal into a parallel dimension dubbed The Hill. In this dimension, time moves at a faster rate, and even though it was a matter of months in the main Marvel Universe, it had been between 10-20 years In the Hill. On the anniversary of the Mutant Massacre, a horrific event in which Mr. Sinister's henchmen the Marauders killed many Morlocks, the members of Gene Nation reappeared in the main universe ( Earth-616). Their mission was to destroy one human for every Morlock life that was lost, and also, in a side mission performed by Hemingway and Marrow, to kill some of the original Morlocks. In Marrow's eyes, Leech, one of the few to survive the massacre, was weak and instead of defending his people he hid like a coward. Fortunately, the White Queen, who was trying to recruit Leech to her teenage mutant team Generation X, is able to thwart their efforts. However, with the intervention of the Dark Beast Marrow and Hemingway escape. Afterwards, a team of X-Men and the Morlock Callisto confront an attack group from Gene Nation including Marrow, Hemingway, Reverb, Sack, and Vessel. In order to assure that their mission succeeds, Marrow alerts the X-Men that she has a bomb strapped to her heart. Seeing it as the only way of stopping the terrorist, Storm rips out Marrow's heart. Callisto takes the remaining members of Gene Nation back to The Hill. A few months later, Storm is kidnapped by Mikhail and taken to The Hill. Once there she has to fight her way to the top of the hill where Mikhail lives, where she successfully overpowers him. Having won the victory, Storm forces Mikhail to take all of the people living on The Hill back to the real world. In an effort to give the mutants a new start, she settles them in a village outside of her home town in Africa. Unfortunately this village is later attacked by anti-mutant extremists and many members of Gene Nation are murdered. However, they wouldn't get much of a chance to start over because shortly after they were placed in Africa the Dark Beast gathers some of the original members, along with some new recruits, to form a new team. The express purpose of this team is to capture test subjects for the evil genius, namely the students of Generation X. They succeed in capturing all but the White Queen and the newcomer Gaia and, with the help of Nate Grey, also known as X-Man, they liberate her charges.

    Weapon X: Days of Future Now

    In the five-issue miniseries Weapon X: Days of Future Now, on Earth-5700 in an alternate future of our own timeline, Gene Nation appears in issue #4 twenty-four years in the future when Magneto assembles the various teams of the world in the face of a common threat: the Sentinels.

    Members

    • Charm - heightened strength, agility, and reflexes
    • Hemingway - can greatly increase his size and mass, also has bone spikes protruding from his back and forearms that can be used offensively
    • Loss - razor sharp bone spikes on her wrists
    • Marrow - heightened bone growth causes them to grow beyond her body where they can be removed and used as weapons, also an increased healing ability to seal the holes made by the removal of bones
    • Reverb - project his psychic talents into the environment around him, giving him an uncanny awareness of his surroundings, also uses his abilities to mentally cripple others
    • Sack - semi-liquid form allows him to encase the bodies of others in a clear membrane that allows him to control that person until they asphyxiate
    • Vessel - absorbs the \"souls\" of the recently deceased to increase his size, strength, and invulnerability

    Note: Callisto showed a video to the X-Men about Gene Nation that showed Ever as a member; however he never made an appearance with them. He later showed up as a part of Havok's Brotherhood.

    • Fever Pitch - a living skeleton from his powers, he generates intense heat at all times from within what is left of his body that can be used offensively in discharges of flame
    • Hemingway
    • Integer - uniquely exists as a mathematical probability, making him invisible, intangible, and capable of using his binary thought to disrupt the mental functions of others
    • Iron Maiden - body made of a dense material that is formed in spikes all along her body, also increased strength, agility, resistance to injury, and reflexes
    • Membrain - made of a brain altering mucus that can be reshaped at will or used as projectiles that are capable of stunning opponents, can also leave parts of him behind in an area and mentally access the pieces to be used like a spy camera.
    • Opsidian - exists as a being of pure darkness, able to stretch and reshape his form, also able to instill a supernatural feeling of cold and fear in others when he surrounds them
    • Wynter - robotic body controlled by remote by the Dark Beast

    • Hemingway
    • Maverick (Chris Bradley) Did not leave Gene Nation because he planned on sabotaging the group's terrorist attacks.

     

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-41114/","id":41114,"name":"Don't Touch That Dial!","issue_number":"5"},"id":15347,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3204935-weaponx02115.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3204935-weaponx02115.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3204935-weaponx02115.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3204935-weaponx02115.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3204935-weaponx02115.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3204935-weaponx02115.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3204935-weaponx02115.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3204935-weaponx02115.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3204935-weaponx02115.jpg","image_tags":"All Images,Artwork,Earth-616 Gene Nation,Earth-616 Hemingway,Earth-616 Marrow"},"name":"Gene Nation","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/gene-nation/4060-15347/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15409/","count_of_isssue_appearances":0,"count_of_team_members":8,"date_added":"2008-06-06 11:27:47","date_last_updated":"2013-01-19 14:19:04","deck":"Adversarial group of the X-Men. ","description":"

    Factor Three first appeared through two of its agents, Banshee and the Ogre. Oddly enough, though the organization's credo involved the prosperity of the mutant race by becoming the third World Power (after the US and then-Soviet USSR), The Ogre was not a mutant at all, but was merely a paid mercenary who relied on technology. Banshee, forced to submit to the Mutant Master's commands via a headpiece rigged to explode should he refuse, teamed up with The Ogre to kidnap Professor Charles Xavier. His fledgling X-Men thwarted their attempts, captured the Ogre, and freed Banshee.

    Later, Factor Three freed the supervillain Juggernaut, serving to distract the X-Men while a second attempt was made to kidnap Professor X; this time they succeeded. With the help of Banshee, the X-Men were able to locate Factor Three's hidden base within the Alps, but were captured during the rescue attempt. Finally meeting the Mutant Master himself, along with his full array of henchmen, their plan was unveiled. They intended to cause nuclear war between the US and the Soviet Union, which would wipe out the human race.

    The X-Men were able to escape the mountain base just before Mutant Master blew it up, and again thwarted their plans. Factor Three relocated to an alternate base, where Changeling, Mutant Master's second in command, discovered his plans to destroy mutantkind as well as humankind. Changeling freed Professor X and Banshee, who inadvertently destroyed the Mutant Master's cloaking device, revealing his alien appearance. The X-Men and the remainder of Factor Three joined forces in attacking Mutant Master, who committed suicide to avoid capture. With Mutant Master dead, Factor Three ceased to exist.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9098/","id":9098,"name":"The Wail of the Banshee","issue_number":"28"},"id":15409,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/89261-36040-factor-three.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/89261-36040-factor-three.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/89261-36040-factor-three.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/89261-36040-factor-three.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/89261-36040-factor-three.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/89261-36040-factor-three.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/89261-36040-factor-three.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/89261-36040-factor-three.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/89261-36040-factor-three.jpg","image_tags":"All Images,Factor Three,Other Users"},"name":"Factor Three","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/factor-three/4060-15409/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15411/","count_of_isssue_appearances":0,"count_of_team_members":14,"date_added":"2008-06-06 11:27:48","date_last_updated":"2015-06-17 05:17:05","deck":"The heroes and villains of Earth-2149 who were tragically turned into zombies. They have all but destroyed their own reality.","description":"

    Note: Please only use this page for the original Earth-2149 Marvel Zombies Team. Do not add every appearance from the Marvel Zombies Concept page. Likewise, since almost every Marvel character were zombified, only the central characters should be listed as members here.

    Overview

    In an alternate version of the main Marvel Universe most of earths heroes have been infected with a virus that has turned them into zombies. A paradoxical loop involving a Zombie Sentry is considered the origin of its existence in the main series seen in the Marvel Zombies.

    The contagion passes via a bite from an infected being. Marvel Zombies have similar characteristics to zombies, except the retain their intelligence, personality and special abilities. The disease causes a powerful hunger which can only be satisfied by ingesting the flesh of the living. If they eat the flesh of other zombies it causes them to become ill. The hunger affects the self control and intelligence, the hungrier they are, the less rational and intelligent they are. Once fed, their original personalities re-emerge along with their intelligence.

    The disease seems to be almost 100% infectious, with both Wolverine and the Hulk, individuals normally highly resistant or immune to most diseases, being affected. However, those with any kind of accelerated healing appear to be able to fend off the disease longer. The disease is also shown to affect the gods of Asgard and Olympus as well. The only ones that appear to be immune are the already zombified Simon Garth, who while infected cannot spread the virus, and non-organic mechanical beings, such as Jocasta, Ultron and Machine Man. Uatu and the Watchers, due to their having exchanged corporeal bodies for forms of pure energy long ago, are also immune to the virus.

    The disease is incredibly hard to stop once spreading, due to the high survival rate of all zombies. Zombies seem to only need their brain stem to survive and can continue living without any use of their organs or limbs. The infection even allows severed heads to continue speech. This was witnessed by Wasp, Hawkeye, and Headpool who were decapitated heads. Another example is Captain America who survived for over forty years as a brain until being put inside the body of Black Panther's dead son.

    The contagion has an addiction element and if a victim can be isolated from a food supply, within a couple of weeks the cravings disappear and the subject is able perform a functioning role within society. Any additional ingestion of flesh will restore the hunger.

    Creation

    Marvel Zombies were created by Mark Millar and Greg Land who wrote two story arcs of Ultimate Fantastic Four titled \"Crossover\" and \"Frightful\". These story arcs were inspiration for the Marvel Zombies limited series by Robert Kirkman and Sean Phillips.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111752/","id":111752,"name":"Crossover: Part 1","issue_number":"21"},"id":15411,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/847313-8484new_storyimage5448173_full.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/847313-8484new_storyimage5448173_full.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/847313-8484new_storyimage5448173_full.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/847313-8484new_storyimage5448173_full.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/847313-8484new_storyimage5448173_full.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/847313-8484new_storyimage5448173_full.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/847313-8484new_storyimage5448173_full.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/847313-8484new_storyimage5448173_full.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/847313-8484new_storyimage5448173_full.jpg","image_tags":"All Images,Alternate Earths,The Marvel Zombies"},"name":"Marvel Zombies","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/marvel-zombies/4060-15411/"},{"aliases":"China Force","api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15521/","count_of_isssue_appearances":0,"count_of_team_members":16,"date_added":"2008-06-06 11:27:47","date_last_updated":"2016-04-24 11:02:54","deck":"The People's Defense Force, formerly known as China Force, are China's premier superhero team.","description":"

    China Force is a team of Government agents that were given artificially enhanced powers and costumes based on the animals from the Chinese zodiac. At one point they had twelve agents representing each animal from the Chinese zodiac but majority defected or were killed. The only four operatives remaining were Rat, Ox, Rabbit and Snake. The Chinese government would send China Force to Ottawa so they could bring back home a former operative named Dei Guan aka Jade Dragon because they believed he was a traitor and defected from their homeland. China Force would kill Dei Guan's escorts and subdue Jade Dragon after Rat renders him powerless with her claws laced with an inhibitor drug. China Force hoped that Dei Guan would be found guilty as a traitor and killed so a message would be sent to several members that defected which included Horse, Monkey and the Dog. They would board a plane headed back to their ship in Anchorage when they are placed under the spell of the Dreamqueen when China Force entered her sphere of influence. The Dreamqueen altered the perception of the China Force members so they believed they were back home in China and she used them as pawns to attack her most hated foes, Alpha Flight. China Force would come into conflict with Alpha Flight when they believed they were being invaded by the Canadian heroes. China Force puts up a valiant fight but they are overpowered and outclassed. Laura Dean would open a warp gate to China and Shaman uses a wind spell to send China Force back home.

    China Force would reappear later and come into conflict with a group of Chinese rebels called 3 Peace which consisted of Jade Dragon, Nuwa and the Collective Man. 3 Peace would join forces with the Mutant Liberation Front when they offered to help free the mutants that were being detained by the Chinese Government. China Force would come into conflict with both teams when they infiltrated a facility that was being used to search for mutants within the borders of China. Rabbit would be killed by Reignfire during that confrontation.

    China Force became known as The People's Defense Force are was re-structured to consist of Collective Man, Radioactive Man, Most Perfect Hero, Princess of Clouds, the Ninth Immortal,Scientific Beast and Lady of Ten Suns. The People's Defense Force would confront an extraterrestrial being called the Unspoken on their homeland. The Unspoken was an unidentified extraterrestrial and was given the option to leave China immediately or face arrest. The Unspoken took an aggressive stance and the People's Defense Force attacked the alien intruder. Majority of the People's Defense Force was decimated by the Unspoken and the only surviving members were the Collective Man, Radioactive Man and Scientific Beast.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-30300/","id":30300,"name":"Where There's A Will There's A Way","issue_number":"64"},"id":15521,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2292840-defence.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2292840-defence.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2292840-defence.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2292840-defence.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2292840-defence.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2292840-defence.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2292840-defence.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2292840-defence.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2292840-defence.jpg","image_tags":"All Images,Earth-616 People's Defense Force"},"name":"People's Defense Force","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/people-s-defense-force/4060-15521/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15595/","count_of_isssue_appearances":0,"count_of_team_members":56,"date_added":"2008-06-06 11:27:48","date_last_updated":"2022-08-22 13:28:36","deck":"When Cable reformed the New Mutants, he made them his soldiers. They became a mutant \"black ops\" team, assigned to kill not just the enemies of the X-Men, but of all mutantkind. Although this team eventually disbanded, the X-Force moniker has persisted in successive iterations of more and more aggressive X-teams. ","description":"

    Current Roster

    • Wolverine
    • Domino
    • Omega Red
    • Beast
    • Sage
    • Black Tom Cassidy
    • Deadpool

    Origin

    The original X-Force was formed from members of the New Mutants by Cable, adding in several others he saw fit to carry out his vision of a more forceful interpretation of Professor X's vision for mutantkind. As such the roster included: Cannonball, who later became team leader, Rictor, Sunspot, and Boom Boom, and added Domino (actually Copycat posing as her at first), Feral, Shatterstar, Warpath, Siryn, and Bedlam.

    Creation

    X-Force was a team created by illustrator Rob Liefeld after he began penciling the comic New Mutants in 1989. As the popularity of Rob Liefeld's art grew, he became the key artist and penciler of the book and he was able to create many characters that were associated with the X-Force like Cable. With help from Fabian Nicieza, Rob turned The New Mutants into the X-Force and launched a new comic entitled X-Force #1 in 1991.

    After a long run, the team disbanded and a new X-Force was formed years later with a completely different roster and purpose. The team was Cyclops' secret hit squad, the series was written by Craig Kyle and Christopher Yost and the art was handled by Clayton Crain and Mike Choi. The team and the book were extremely popular but were cut due to story telling and the writing team moving on to different things. However, a new team and book was made called Uncanny X-Force, created by Rick Remender and Jerome Opena.

    Team Evolution

    \"The
    The team's first appearance

    X-Force at first mainly fought the terrorist Mutant Liberation Front, led by Stryfe, who was Cable's archenemy and clone. The team also battled Deadpool, Juggernaut, Black Tom Cassidy, the immortal Externals, Toad's Brotherhood of Evil Mutants, and the Morlocks.

    Years later, Cable would leave the team and Peter Wisdom became the leader. Soon, the team was thought dead, but had only disbanded and gone underground.

    Then, a media team was formed and usurped the name X-Force, eventually renaming themselves X-Statix. The majority of the former members of X-Force joined the X-Corporation, although briefly Cable reformed X-Force to help combat Skornn, an ancient alien. Several members of X-Force went on to join other teams; however, Domino, Shatterstar and Caliban continued acting as part of the team, especially when they organized an assault on the Xavier Mansion to free the 198.

    X-Statix was eventually canceled, and the only appearance of an X-Force team was in a 4-issue miniseries in 2004. This situation stood until the events of the Messiah Complex storyline when Cyclops authorized Wolverine to form a new mutant team that would secretly operate and use lethal force to deal with threats to the X-Men.

    The new X-Force that Wolverine assembled included Warpath, Wolfsbane, X-23, Hepzibah and Caliban. After Messiah Complex, Caliban was dead and Hepzibah was left out of the line-up. The team was later joined by Angel, Domino, Elixir and Vanisher.

    The conclusion of the Second Coming storyline brought Wolverine's X-Force team to an end as the existence of this deadly team was made known to the other mutants, even resulting in the departure of Beast from the X-Men. Little did Cyclops know that Wolverine had other ideas. Behind Cyclops' back Wolverine formed yet another secret X-Force team, with Psylocke, Fantomex, Angel and Deadpool forming the initial line-up. They are later joined by an alternate reality Nightcrawler as they deal with Apocalypse's heirs.

    After that team disbanded, two teams emerged. Cable ran one as a clandestine group responding to Cable's new premonitions. The other was run by Psylocke under orders from Wolverine to investigate a psychic drug. The two teams would eventually butt heads when Cable's team learns Psylocke's team is protecting Bishop, last seen trying to kill Hope Summers.

    The New Mutant roster would eventually reunite when a younger version of Cable became active in the present, but this was short-lived. Soon after, Pr. X and Magneto would tame Krakoa, creating a nation-state for mutants. The X-Force moniker would be co-opted by Wolverine and Beast's counterintelligence and wetworks team to protect their new home.

    Cable's Team

    The Militaristic Approach

    Arising from the ashes of the too-quickly disbanded New Mutants, Cable’s new team is primed to attack their enemies first so they don’t have to ask questions later. The team’s first base is in the Adirondack Mountains, a former sentinel hub. The team has plenty to do: Cable needs to track down and kill Stryfe, Shatterstar needs to exact revenge on Mojoworld, Warpath needs to find out who whipped out his reservation, and Feral needed asylum from the Morlocks.

    The first order of business is to find Stryfe in a base in Antarctica. The team works well together despite their youthfulness and gets the upper hand. Stryfe and his lackeys escape to fight another day. X-Force returns home and is oblivious to the fact that they have more enemies on the way: S.H.I.E.L.D. An old ally-turned-enemy of Cable’s, G.W. Bridge, wants the renegade group and begins to form a team to capture them.

    Sabotage

    Though they fought well in Antarctica, Cable recognizes the need to enhance team unity. He schedules an outside exercise in which the team hunts Feral. The game turns deadly, however, when her unchecked instincts get Cannonball gutted. He is cared for and she is reprimanded (though nowhere near has harsh a reprimand as she deserves). Cannonball heals in record time, which is perfect since the team is called in to help with a very delicate situation; Black Tom Cassidy and the Juggernaut has taken hostages in one of the World Trade Center towers.

    Arriving on the scene, X-Force encounters Siryn taking on the Juggernaut by herself. Cable invites her to the team and splits into two task forces. Cable leads a team inside the building to confront Black Tom and hopefully free the executives (of which they find their old friend Sunspot). The other group is to be the muscle taking out the Juggernaut. Boom Boom, however, is left to man their aircraft. X-Force’s tactics are very harsh and Black Tom has to resort to his back-up plan almost immediately – he blows up the building. This means little to Cable. He still seeks out Black Tom and shoots to kill. Deadpool, who teleports in and snags Black Tom before he can fall to his death, saves the villain from certain death, however. He also snags the Juggernaut. X-Force flees the scene when a S.H.I.E.L.D. vehicle shows up.

    Ambushed at Home

    The New Brotherhood of Evil Mutants

    The fallout from the World Trade Center fiasco paints X-Force in a very negative light. Boy Scout Cannonball hates the idea of being viewed as a renegade but Cable thinks it advantageous in light of how their enemies will view the team now. With a target on their backs, the team begins training rigorously. Without warning, X-Force is attacked by the newest incarnation of the Brotherhood of Evil Mutants and their allies the Morlocks. X-Force is split with some team members above ground and others inside the mountain base. The battle is fierce with neither side really gaining any ground until Sauron stabs Cannonball through the gut, supposedly killing him instantly. Cable races Cannonball’s body to the infirmary while the rest of the team fights. Cable returns and ends the fight and admits that Cannonball has died. Cannonball then wakes up and learns that he is supposed to belong to a select group of immortal mutants called the Externals.

    Cannonball recovers quickly (supposedly because of his immortal make-up). X-Force begins training again and gets transported to another dimension when a wormhole opens up in their base. The world they visit is filled with magic and jumbo cats. They briefly butt heads with the Warheads before making their way back home through a fresh wormhole. The brush-in with the Warheads prompts Cable to personally investigate their employer, MyS-Tech.

    Weapon: PRIME

    X-Force picks up the pieces from its latest battle by casting the bodies of Masque and Thornn at the Morlocks' feet. In their base, however, Deadpool breaks in and delivers a message to Domino that she better get her act back together. When Cable and the others return Domino comes clean about her involvement with Tolliver. Before the team can plan an attack on Tolliver, G.W. Bridge's team Weapon: PRIME attacks the X-Force base. Cable and Domino get separated while Cannonball leads the rest of X-Force into victory over Weapon:PRIME and a SHIELD backup unit. The base is blown up and X-Force steals one of the government issued aircrafts from SHIELD to go in search of a new base. Rictor, a former friend and current Weapon:PRIME member, rejoins the team.

    En route to a new base, Crule attacks the team. He is subdued and cast out of the aircraft, but not before he tells them about Sunspot's position of being experimented on by Gideon. Cannonball leads the team on an assault of the lab in New Mexico and they save Sunspot. They then find a home on Warpath's destroyed reservation at Camp Verde.

    X-Cutioner's Song

    Before X-Force can get to comfortable with their new home they see a man resembling Cable shoot Professor Xavier at a concert during the events of the X-Cutioner's Song. They go to investigate the scene but get attacked by members of X-Factor and the X-Men. X-Force puts up a good fight but ultimately get subdued and arrested. They are held at Xavier's mansion on the suspicion that they are confederates of Cable's. The team is slowly let out and they join the search for the real shooter of Xavier. Their search takes them to the Moon where they learn that Stryfe looks exactly like Cable and must have been the one to shoot Xavier. They can't help but watch as Cable battles Stryfe until the two men are sucked into a time portal.

    Xavier soon heals and X-Force can't help but wonder when they are allowed to leave. Charges still exist against them but they rebel and leave before given clearance. Siryn and Warpath copy the X-Men's files to beef up the X-Force intel. Lila Cheney also joins the team.

    Graymalkin

    When a Stark Industries satellite uncovers the location of Cable's old space base, X-Force quickly teleports up to salvage whatever then can from their fallen leader. SHIELD and War Machine also want a piece of the pie but get soundly defeated by the young team. Cannonball and Sunspot are able to jettison off most of the weapons and vehicles to their base back on Earth. X-Force narrowly escapes as Cable's sentient computer seemingly destroys the base.

    Freeing Friends

    Upon getting home, X-Force discovers that Warpath, Siryn, and Boomer have been taken captive by the Externals. The team abducts Crule from a hospital and questions him as to the Externals' whereabouts and then discard him in the ocean, bodycast and all. X-Force finds the External base and reclaims their friends.

    Without any time to rest, X-Force learns of old pals Rusty and Skids becoming captives of the Friends of Humanity. They effectively take down the opposition and rescue their friends, though they learn that the two are under mind-controlling technology courtesy of their former master Stryfe.

    Cable Returns

    During the Fatal Attractions story arc, X-Force arrives home from saving Rusty and Skids and gets the sense that someone has been, or still, in their base. They split up and each team gets taken out but Cable. The reunion is short-lived, however, when Camp Verde is visited by Exodus. He invites Cannonball and Sunspot to a mutant heaven. They accept and Cannonball slips Cable a tracking device. X-Force soon follows the signal to Cable's former base of Graymalkin, now transformed into a refuge run by Magneto called Avalon. Cannonball and Sunspot return to Earth with X-Force while Cable extracts the Professor from his former home. Magneto and Cable clash and Magneto shreds Cable's metal parts. Cable barely manages to bodyslide back to the X-Force base and he spends a while recuperating while being hooked up to various machines intent on fixing his parts. He takes time to evaluate the team and realizes that he needs a more personal focus in dealing with his recruits.

    The New Mutant Liberation Front

    When Henry Peter Gyrich, a staunch anti-mutant politician is abducted by a new MLF, Cable puts X-Force into play. They go to Bermuda to an old Magneto base and find the MLF being led by a new villain named Reignfire. They do their best to subdue the terrorist outfit, but Reignfire gets the last laugh when he gets Feral to defect and join the MLF. X-Force also is shocked to learn that one of their past friends Dani Moonstar could be aligned with this new iteration of the MLF. As a result, and even though they save the politician, Cable knows the mission wasn't worth the effort.

    Wolverine's Wetworks Team

    In the middle of the Messiah CompleX storyline, Cyclops assembled a new X-Force, which consist of the X-Men's best trackers. The new team is made out of Wolverine as team leader, X-23, Warpath, Wolfsbane, Caliban and Hepzibah. Their first mission was to track Cable and the newly discovered Baby Mutant, before the Purifiers, Marauders Reavers and Predator X could get them first. They also participated in the final battle against the Marauders on Muir Island. However, after the death of Caliban and injury of Hepzibah, it was believed that X-Force was disbanded.

    Angels and Demons

    \"The
    The new X-Force

    In the aftermath of Messiah Complex, Cyclops reassembled X-Force once again. Wolverine did not want X-23 or Warpath involved, but they refuse to leave when given the opportunity. Wolverine did not press the issue, believing that they had the right to choose their own destiny. Their first mission, after the events of the Messiah Complex, was to infiltrate a SHIELD facility, where a group of Purifiers have stolen valuable technology needed to resurrect a Sentinel named Bastion. Complications arose when that same group captured Wolfsbane, prior to their arrival, and threatened to shoot her. X-23 thought it was a bluff and attacked anyway, by detonating explosive charges that she had placed and armed off panel. Wolfsbane was seemingly shot by Matthew Risman, head of The Purifiers, in the face. It was later revealed that Risman actually shot Wolfsbane in the knee. Risman then took Wolfsbane to Purifier headquarters while the rest of X-force return to Angel's mansion, where Wolverine yelled at X-23 for disobeying his orders. X-23 stated that her mission was never to protect her teammates but to kill Matthew Risman, and Cyclops backed her up. When they were able to save Wolfsbane, they returned to Angel's mansion and summoned Elixir to heal her. When she woke up, she attacked Elixir, X-23 and Angel. During this attack, she had ripped off Angel's wings and took them to the Purifiers, to be used to build an army of angels that will serve to eradicate the remaining mutants. Angel awoke as Archangel ready to kill X-Force but X-23 was prepared to fight off his attacks. Unlike with Wolfsbane, Wolverine had said nothing about dying for Angel. In the middle of the fight, Archangel flew to the location of the Purifiers with the X-Force following him. Meanwhile, the leaders of the Purifiers were having a standoff on who is the rightful leader. Before the argument escalated, Archangel went on a killing spree; targeting the choir and demanding his wings back, while the X-Force went on the attack as well. In another part of the facility, Reverend Craig was hunting down Wolfsbane, saying that she is condemned to be a demon. He was then later attacked by Wolfsbane, presumably killing him. The X-Force managed to defeat the Purifiers but not completely, as Bastion and his resurrected puppets of prominent, former, X-Men enemies were able to escape. As at the end, it is shown that Archangel presumably returned back to normal. Back at Angel's Aerie, they report back to Cyclops on what happened and now decides on who is next in their hit list.

    Old Ghosts

    \"X-Force
    X-Force #7

    Back at home, the X-Force investigates what could have triggered the transformation of Angel and the triggered rage of Wolfsbane. They also thought about what to do with Elixir, since he now knows too much about the X-Force. They thought about killing him, but X-23 called the Stepford Cuckoos to erase Elixir's memories about the X-Force. But before they could do this, the team saw Graydon Creed on TV, saying that the assassination on him was just a cover-up to protect himself. They want to go after him, but Cyclops stop them because that have to go after Vanisher first because he has taken hold of a strain of the Legacy Virus. They all go except for Warpath, who goes home to visit the grave of his brother but was suddenly attacked by the Demon Bear. He was almost killed if it weren't for the intervention of Ghost Rider, who help Warpath escape the creature.

    X-Force tracks down Vanisher in Japan but they also run in with Domino, who tagged along to find the Legacy Virus. When they manage to find Vanisher, they interrogated him through Elixir's powers inducing a brain tumor, which prompted Vanisher to tell them that he had lost the Legacy Virus to a fight with the clones of the Marauders that was awakened when Mister Sinister died. When the X-Force got to the place where Vanisher lost the Legacy Virus, Domino manage to find it, but as they were about to leave with it, but are quickly attacked by The Right who is there to take it into their possession. X-Force fight back, X-23 fighting the Right members with the virus. But as they fight, X-23 drops the virus and is stabbed at the same time, the virus being released into her body. She decides after killing the Right member by popping her claws into his head, to kill herself by jumping into a vat of furnace to destroy the virus along with her. The other members of X-Force cover Elixir as he chases after X-23 hoping to save her. He catches up with her, but she still jumps off. Luckily, Elixir catches her hand, and purges the virus out of her. This however took too much out of him and he drops her. Later, she's revealed to be alive, Josh managing to divert her course slightly, and she caught on fire, burning her hair away and her skin. She took Josh's shirt and left him bare chested.

    Back with Warpath and Ghost Rider, and Ghost Rider tells him the story of the ancient magic invoked by the elders of the Apache, and how he can channel their shamanistic powers to help him fight the Demon Bear which they call it \"The Ghost Dance\". The two quickly attack the Bear, slashing at it. Suddenly, Ghost Rider notices the Demon Bear had a knife stuck in its hide. He alerts Warpath, who removes it. The Demon Bear then releases totemic spirits, Ghost Rider revealing them to be the Apache gods, corrupted by the knife. The Gods then showed Warpath who they're true enemy was. Back with Wolfsbane, and she's in the forest, searching for someone in the forest. Suddenly, the creature makes an appearance, revealing himself to the Asgardian God of Wolves and her former lover, Hrimhari. All of them meet back at Angel's mansion, the X-Force team from Japan having recaptured the Vanisher and gagged him. They see Warpath on the floor, and ask him what's wrong. He tells them that his entire tribe has been dug up, including his brother Thunderbird. When they all ask who, and Warpath replies: Eli Bard.

    Suicide Leper

    \"Suicide
    Suicide Mission

    The Friends of Humanity are holding a rally in Iowa, at which they condemn mutants yet again, shouting blasphemy about them and so on. Suddenly, the mutant Beautiful Dreamer runs into the crowd, screaming for help. Suddenly, her mutant powers within her explode, affecting everyone at the rally. Her powers made everyone forget everything, including to keep pumping their own hearts. The Leper Queen had injected Beautiful Dreamer with a different strain of the Legacy Virus that affected her powers, changing them and making them unstable.

    Agent Morales begins to put the puzzle pieces together as she assumes that X-23 is connected to a lot of the previous mysteries still unsolved by SHIELD. Wolfsbane and Hrimhari talk, the latter informing the former of how Ragnarok made him discover that he belonged with her. Dust and Pierce continue to talk and Bastion continues to plan.

    At Greymalkin Industries, and Cyclops have the Stepford Cuckoos searching for Rahne, while he also has Beast working on time machines. He's called away by Angel, who flies him to Alcatraz where the rest of X-Force are. Cyclops arrives to find Domino laughing at a Vanisher who's screaming in pain, X-23 having cut off his ear after he'd tried to persuade Elixir to heal his tumor. Cyclops informs them of the incident with Beautiful Dreamer, and they debate, until Vanisher makes another comment and X-23 offers to torture him some more.

    X-Force split up: Archangel and X-23, Vanisher and Warpath and Domino and Wolverine. Each are at a different Friends of Humanity rally, expecting them yet again to throw a mutant into the rally and kill everyone there. X-23 smells something burning, and Fever Pitch stumbles into the crowd, screaming for help. Wolverine shouts to Vanisher to get X-23 and Archangel out of there, but Fever Pitch explodes, luckily, X-23 and Archangel being on the rim of the explosion.

    One of Leper Queen's henchmen drug Hellion's drink and they take him away in a van after he passes out. After X-Force escapes the explosion, they are discussing what exactly happened and Archangel shows further indications that he is becoming more and more unhinged. He also adds that he saw the Leper Queen there but was unable to get to her in time. This confirms that she is with Bastion.

    Cyclops approves Wolverine's kill order for Leper Queen and gives them another mission: To help Cable and the mutant baby, Hope. He gives them all time travel devices that will give them 33.2 hours in the future before returning them home. The Cuckoos pinpoint were the Leper Queen is and Cyclops has them relay that information to Wolverine. Agents of HAMMER come to the conclusion that X-23 will be in New York because the Leper Queen is there and the United Nations, whom the agents think is X-23's target as well, are going to be there. HAMMER mobilizes two attack squads to intercept X-23.

    Back at Angel's Aerie, Rahne Sinclair confides in Hrimhari while X-Force teleports to New York. At the same time, Leper Queen is injecting both Hellion and Surge with the new Legacy Virus and sends them to cause destruction at the United Nations but keeps an uninfected Boom-Boom for her own plans. X-Force moves against the Leper Queen and kill everyone that is still in her hideout except Leper Queen. She is holding Boom-Boom hostage in hopes that they will kill her to end her suffering. Vanisher knocks Leper Queen away from Boom-Boom and Wolverine jumps on her just as Cyclops gives the order to transport X-Force into the future. Having been denied the death she was hoping for, Leper Queen shoots Boom-Boom in the head, killing her.

    Messiah War

    \"Messiah
    Messiah War

    X-Force find themselves having traveled 900 years into the future on their next mission; to protect Cable and the supposedly mutant messiah, Hope. Elixir complained about going back to the present to save their friends that were left behind. Wolverine promised him that they will. Logan then ordered Vanisher to teleport and scout ahead, but Telford claims that his powers are somehow being blocked. Following that, Vanisher was suddenly shot in the neck, causing X-Force to take cover from the unknown sniper. It later turned out to be Deadpool, who was still very much alive as a result of his healing factor. Wade told the X-Force that Cable will be at the old Xavier Institute. Now with some heading, they set out to finish their mission.

    Suddenly, X-23 picked up Cable's scent and began tracking him. When Wolverine was about to face Cable, he instead met up with Hope, with Cable pointing a gun in his temple. Wolverine informed Cable that they were sent to the future by his father (Cyclops) to help him against Bishop. Cable had news of his own, and he updated the other time travelers that Bishop was in league with Stryfe, Cable's clone.

    When X-Force and Cable were attacked by Stryfe's army: Hope, Elixir and Vanisher escaped the skirmish. A division in the ranks occurred when Angel was drawn away by a voice whispering in his mind. When the battle is over, Cable warned Vanisher not to take away Hope from him. They were then attacked by Stryfe directly, who soundly defeated them one by one. Even as Cable detonated a bomb within Stryfe's armor, it was useless. Stryfe captured both Hope and Warpath. Running out of time, the X-Force split up into two teams; X-23, Domino, Vanisher and Deadpool will look for the power source that has been blocking Cable's time traveling and Vanisher's powers, while Cable, Wolverine and Elixir rescue Hope and Warpath.

    When Stryfe brought them to citadel, Bishop makes his move on killing Hope, but he was stopped by Stryfe. He was then able to read his mind and know Hope's significance. Hope removed Stryfe's helmet and she ask if he is Cable. Warpath was able to destroy his restraint and attack Stryfe but he was defeated when Hope distracted him. It was then that Bishop retaliated to Stryfe but he destroyed his cybernetic arm. Stryfe was then attacked by Cable using his psionic power, which supposedly burned out. Stryfe defeated his \"brother\" but it was a planed distraction for Wolverine and Elixir attack from behind.

    While Domino's team is looking for the source, Deadpool admitted that he has been hearing Stryfe in his mind and he plans to kill the X-Force. When they found the source, Laura was surprise that the source of the block is her friend, Kiden Nixon, who was kidnapped by Bishop and Stryfe from the present and hooked on into a machine that strengthen her powers to block anyone who can manipulate time and space. As time runs out, the X-Force begins to experience the negative effects of their time-traveling armbands. Kiden asks Laura to kill her as it is the only way to prevent them from being killed, but she is hesitating. It wasn't until Domino shot Kiden in the head that the time-space warp had stop. Vanisher wondered why weren't they killed by their armbands but before Domino could come up with an answer, Vanisher pressed the armband and he backtrack in time to the present. Deadpool arrived and blasted Stryfe with a laser cannon but Stryfe ripped him in half. With Deadpool dead and the other team attacking Stryfe still feeling the effects of the armband on their body, Stryfe moves in for Hope, but everyone was surprise that Apocalypse barges in, being accompanied by his horseman of death, Archangel. Together, they defeated Stryfe, with Apocalypse delivering the final blow.

    As this was going on, Bishop takes aim at Hope, but he was too weak to shoot. Apocalypse carried Hope into his arms and was about to kill Bishop, but he time-traveled to escape. Apocalypse took interest on Hope as his potential host, but Cable and X-Force surrounded him, with Logan asking Warren on which side he was on. Warren told Apocalypse that he had owed him his life by sparing his own, and he demanded Hope to be returned to them and Apocalypse agrees to this, but not before Apocalypse warned Cable that he will come back for the child. As X-Force left the citadel, Apocalypse is seen dragging Stryfe's weakened body to become his new host. Wolverine then ordered Cable to time-travel with Hope and X-Force splitting up again with Wolverine, Archangel and Elixir going to the UN, while X-23 prematurely cuts off Warpath and Domino's armband and goes to save Boom Boom alone.

    Not Forgotten

    \"Not
    Not Forgotten

    All members of X-Force came back at the same moment they left to jump forward in time. X-23 was able to kill Leper Queen before she could kill Boom-Boom. Before dying, she thanked X-23 for setting her free from Bastion's control. X-23 then collapsed from the fatigue she experience from time-travel. It that moment that agents of HAMMER storm in and apprehended their primary target, X-23. Boom-Boom was left with two HAMMER agent with one of them about to rape her, when she was saved by Warpath. Meanwhile in the UN, Surge and Hellion tries to escape from their captors but the Legacy Virus within them begins to flare out. Angel and Wolverine came in just in time with Elixir who was able to purge the virus in Hellion's body and barely saved Surge's life, but her powers became out of control and was about to explode. Luckily, Hellion redirected her energy to the sky before passing out. Back in their base, Beast and Dr. Bradley evaluate Hellion and Surge medical condition as normal.

    In an undisclosed location, X-23 is reunited to her old handler from the Facility, Kimura, who begins to torture her by dismembering her arm. In a corridor, Agent Young told Agent Morales that he was a Facility member that infiltrated SHIELD and he also discussed to her about joining the facility. Stating she knew that if her answer were to be no, death would be the final penalty. So without hesitation, Agent Morales took out Young and escapes to rescue X-23. Kimura was about to chop off Laura's second arm, but a bullet was shot in her head, knocking her off and the shot came from Agent Morales' gun. Upon getting X-23 out of the chains, Morales couldn't understand why this child was still standing. Before questions could be answered, Kimura threatened to kill Morales. X-23 told Morales to run and both women fled the scene with Kimura not that far behind. X-23 manage to pin down Kimura into a steel door and she and Morales got locked up into a laboratory where the Facility creates large amounts of trigger scent that forces X-23 to go into a berserker rage.

    X-23 tells Morales to take shelter after giving her adamantium claws and triggering an explosion in the laboratory. Outside the laboratory, facility guards are opening the door when the sprinkler system activates and the trigger scent begins to shower the whole facility. When the doors are opened, X-23 lunges towards the facility guards and begins to kill everyone in a murderous frenzy. Prof Harkin is locked inside of office, calling for Kimura's help. X-23 barges in and was about to kill him but she was knock out by Kimura. She then kills the professor and was about to kill X-23 but Agent Morales threw a Molotov cocktail to her, setting her on fire. Morales then help X-23 to her feet and escapes, but not before placing other Molotov cocktail in all of the flammable and explosive parts of the Facility. Agent Morales and X-23 escapes the destroyed Facility, after which Kimura warned X-23 that she will kill everyone that she loved. It was then that the Stepford Cuckoos found X-23 where Domino and Wolverine pick her up with Magik teleporting them out.

    Utopia

    X-Force was deployed as a rescue team to save other mutants that will be subjected to Dark Beast's experiments. Later, they arrived as reinforcements during the conflict between the original X-Men, the Dark X-Men and the Dark Avengers. With Archangel taking down Hawkeye, and Wolverine defeating Weapon Omega, both of Osborn's team fall back. It is still unknown what will be the consequences now that the X-Men has found out the existence of the X-Force.

    Necrosha

    \"Necrosha\"
    Necrosha

    As Beast and Doctor Nemesis assessed on what happened on X-23 while Wolverine wanted to debrief her on what took place in the Facility but Cyclops told him that it could wait. X-23 then picks up a scent of the dead, and so does Wolverine. As this was going on, they were shot down by a lightning bolt and landed near Utopia. It was there that Warpath detected multiple dead mutants closing on to them with Pyro and Berserker, the one that shot them down, welcoming them to their own death. As these events are going on, Emma Frost begins to hear voices in her mind. She thinks that the Void is taking over until Tarot together with her deceased team, the Hellions, told her that she is mistaken.

    They begin to attack Emma and and blame her for their death until she was saved by Cyclops, Domino and Wolverine. As every member of X-Men are all fighting Selene's resurrected minions, Selene orders the Hellions to retrieve Cypher who lost contact with Eli Bard. As the Hellions leaves the X-Men, they were replaced by Banshee, who immediately attacked his former comrades. Vanisher quickly teleports the X-Men to safety, where they received information that Selene is behind the recent resurrections and also witness the massive surge of life coming out of the island of Genosha. As Cyclops formulate a plan for a counterattack, the X-Men find themselves face to face against Selene's Inner Circle. As the Inner Circle dominate over their battle against the X-Men and the X-Force, Eli Bard goes after Warpath, demanding the spirit blade that he got from the Demon Bear. Trusting Eli Bard's word that the attacks on Utopia will stop if he gives up the blade, he gives it, but in return the Inner Circle kidnaps him and took him to Necrosha.

    Meanwhile, Hrimhari takes Wolfsbane to Elixir to have her healed only to find him unconscious Doctor Nemesis pointing a gun at him but he was stopped by X-23. As Doctor Nemesis assess Wolfsbane's condition, he finds out that she is pregnant, and the baby is killing her. Hrimhari runs off to the roof and with a long howl, he summons Hela, the god of death. They both teleport back to Wolfsbane and stops time there. Hrimhari then asks Hela to save both Wolfsbane and their love child but Hela will only save one of them in exchange for his soul. As Hela looses her patience for the Wolf Prince, Hrimhari chose to save Elixir instead, whom he knows is the only one who can save both Wolfsbane and his baby. As soon as Hela cures Elixir, he wakes up disoriented with Hrimhari telling Elixir to give his love to Rahne and he promised he will come back in anyway possible before disappearing.

    As Utopia lies in ruin, Wolverine radios the Cuckoos to find Wither and they tell him that he and the Inner Circle have left the island and took with them Warpath. Cyclops then tells Wolverine that X-Men will defend Utopia from any other attack from Selene's forces while the X-Force will go to Necrosha, find Warpath and stop Selene. Emma changes Cyclops' orders and tells Logan that they must kill Selene. X-Force teleported just outside of Selene's castle, and as the rest of X-Force goes prepares to attack, Vanisher leaves them. Meanwhile, Warpath is being tortured his brother, Thunderbird and Blink, Vanisher suddenly teleports in and saved Warpath but not before losing his arm. As the ritual to turn Selene into a god, a wave of energy destroy every living thing in Necrosha.

    \"Impersonating
    Impersonating the dead

    When the energy wave was about to hit X-Force, Vanisher teleports the whole team to safety. Warpath confirms that Selene has become a god and that he knows how to defeat her. Warpath painted the X-Force and taught them the Ghost Dance that Ghost Rider thought him to defeat the Demon Bear. The X-Force then teleported inside Selene's castle and each member going after each member of Selene's Inner Circle. Wolverine and X-23 dismembers Senyaka, Archangel wounds Blink, Wolfsbane cuts Mortis' throat, Elixir kills Wither and Warpath snaps Thunderbird's neck. While Blink and Mortis escape, X-Force are confronted by a giant Selene and started to attack them until Warpath stabs her by her own demon blade in chest causing her to explode.

    Two days later, Cyclops debrief Wolverine on the status of X-Force and he told him that Warpath, Elixir, Wolfsbane, and X-23 are no longer on the team. Cyclops then told Wolverine that they may still need the team now more than ever.

    Code Red

    When Domino found out the identity of the Red Hulk, he formed a team called Code Red to eliminate her. Domino then called on her own team to back her up. X-Force then battle with Code Red, saving Domino from being assassinated.

    Second Coming

    \"The
    The team's last mission

    When the Stepford Cuckoos reported to Cyclops that Cable has come back to the present, he had Domino and Vanisher go to San Francisco and Angel, Wolverine and X-23 join the X-Men to look for Cable and Hope. The X-Men was able to catch up to Cable and Hope when they were attacked by the Sapien League and they made their escape. As Wolverine is interrogating one of the league member who is not telling them anything, X-23 kills another member to threaten him, but the league member told them that they are just given instructions inside their brain. Psylocke and Nightcrawler then asked Angel, Wolverine and X-23 what they were hiding and they told the X-Men of the existence of the X-Force and Cyclops involvement, which Cyclops confirmed when asked by Nightcrawler.

    As Bastions attack become more dangerous he decides to isolate the X-Men resulting in the deaths of their teleporters Nightcrawler and Vanisher. Soon his plans are revealed and he traps all of San Francisco in powerful force field. In the center of the bubble is a smaller one connecting them to a future timeline. Bastion begins to send Nimrod Sentinels through the bubble and although the X-Men fight them off they learn that an even larger force waits on the other end. With no other options Cyclops decides to send X-Force, Cypher and Cable to the future timeline so that Cypher and communicate with and shut the Sentinels down ending the threat. However this is revealed as a suicide mission as Cable on had enough power left for one trip. They manage to shut down the Master Mold in the future from sending the Nimrods in to the present timeline but they find out that they can't go through the time tunnel because only inorganic life can go through. Cable then sacrificed himself by releasing the technorganic virus from his arm into his body so that he could open the time portal so that the X-Force can escape safely.

    Uncanny X-Force

    \"Uncanny
    Uncanny X-Force revealed

    During Second Coming story arc, many X-Men found out about the existence of the secret X-Force team. This led Cyclops to issue orders that the X-Force will be soon be disbanded. After the death of Cable, Cyclops informed Wolverine that X-Force has been officially and permanently disbanded. Shortly after the meeting between Wolverine and Cyclops, Wolverine returned to X-Force headquarters on Alcatraz Island to inform his new rogue team of X-Men that they cannot let anyone know they formed a new X-Force team. The new rogue X-Force team is lead by Wolverine and consists of Archangel, Deadpool, Fantomex, and Psylocke and operates outside of X-Men and without the knowledge of Cyclops or any other member of the X-Men. Wolverine states that the first rule of the new X-Force is that nobody else should know about them.

    The Apocalypse Solution

    \"The
    The New Apocalypse

    The team then starts to operate. Deadpool finds out that a secret society is trying to resurrect Apocalypse, when suddenly a giant Devil statue attacks him. Meanwhile, Psylocke dreams of Archangel's persona threatening her. Betsy wakes up by Warren's side and explains that if she were to remove \"Archangel\" permanently, it would fracture Warren's mind. Warren says he needs Betsy to keep Archangel from going too far, so he can use it do to some good in X-Force. Psylocke and Angel then join Wolverine and Fantomex, and they all head to the place Deadpool found the Clan Akkaba. When they enter the Clan's temple, Wolverine attacks another giant statue; however he becomes possessed by it. The same happens to Psylocke when she uses her powers on it. Fantomex misdirects the statue's feelings and destroys it, setting Psylocke free. Betsy then frees Wolverine, using her psy-knife. The team find Deadpool, and Warrens explains that Clan Akkaba has found a way to resurrect Apocalypse and that his horsemen have been awoken. They need to kill Apocalypse. Somewhere else, Clan Akkaba is raising a young boy, the new, re-born Apocalypse.

    At Cavern X, Wolverine, Psylocke, Fantomex and Deapool all train in the new Danger Room in a scenario where Apocalypse controls Archangel and Psylocke has to kill him. Warren finds out about it and gets upset. Meanwhile, At the Akkaba Stronghold Ship, kid Apocalypse is being tutored. He's taught that he's a savior to his people and only the stronger shall survive. He aims to bring about the Age of Apocalypse. Back at Cavern X, Warren and Logan talk about what happened earlier and come to an understanding, and Fantomex tracks the Akkaba ship to the Moon. Before going to the Moon, Betsy tells Warren she's there not only to keep Archangel in check, but also because being with him was the last time she felt human, so they make up. Once they arrive on the moon, X-Force is received by the Final Horsemen: War, the Minotaur, Famine, an Army drummer, Death, a Geisha and Pestilence, a sorcerer riding a a magic carpet. The battle is deadly. EVA is decimated, the team scattered, diseased and terribly injured.

    \"Psylocke
    Psylocke finds Apocalypse

    The Horsemen then await word from 'Kid Apocalypse' as to what to do with the fallen heroes. Kid Apocalypse doesn't really want to give the death order, not wanting to kill anyone, showing he is still just a child, so Ozymandias gives the order for him. Luckily for X-Force, that delay gives the team the opportunity to attack. Betsy looks in the minds of the Horsemen, finding out their names, histories and powers. She tells Wolverine that Death's power comes from metal, using his rings to inflict disease on the team. Wolverine then takes on Death, leaving Fantomex and Psylocke to take on the others. Betsy turns off Fantomex's ears, so he can be safe from Famine's bio-sonic consumption. She also disconnects his peripheral and nociceptor nerves in order to turn off his pain. War then knocks out Betsy with a punch to the head and Pestilence takes on Fantomex, he uses his powers of misdirection to make her believe he is her father, then swiftly knocks her out, breaking her jaw in the process. He then begins to use his powers of misdirection to swap Wolverine with Pestilence, infecting her with many diseases, while Fantomex gets the near dead Wolverine away from the fight. Elsewhere Deadpool tries to help Archangel, who was severely affected by Famine's powers. Meanwhile War, who had taken Psylocke and returned with her to his room. There she heals and when she wakes, War tells her he is in love with her. After Fantomex's misdirection wears off, the rest of the Horsemen retreat to their base and prepare to lift-off. Psylocke, who made it inside, flirts with War, and gets close enough to him to drive her psychic knife into his skull, incapacitating him. The ship is about to take off, and Wolverine, Fantomex, Deadpool and Archangel are left behind. With the ship about to take off, Apocalypse is playing with figurines, when the door opens and a sword welding Psylocke approaches the frightened Kid Apocalypse.

    \"Fantomex
    Fantomex kills Apocalypse

    Fantomex and Wolverine dispose of the Horsemen as EVA transports them to a planet far away. Fantomex then uses his powers to trick the ship into believing that it has already teleported. Elsewhere, Deadpool nurses an emaciated Angel back to health by feeding him pieces of himself. Psylocke makes her way to the inner chambers of the child Apocalypse and finds it harder to accomplish her task than ever dreamed of. Betsy protects the child, pretty much stating that she will kill anyone that attempts to harm the boy. Archangel then goes berserk; which forces Betsy to beat him down. X-Force then comes to an agreement that the child can be saved... that's when X-Force members are left shocked looking back at Fantomex who has shot the boy dead with a bullet to the head. Fantomex then closes the child's eyelids. A very stunned team heads back home.

    Return of the Reavers

    \"Psylocke
    Psylocke massacres the Reavers

    Deadpool does a recon on the Outback town, where he learns from Gateway that the Reavers and Lady Deathstrike are back and planning an attack on Utopia. X-Force decides to learn the details of their plot and then kill all of them. Psylocke is especially happy as she will finally make the Reavers pay for what they did to her and the X-Men years ago. The Reavers are blackmailing Gateway to open a portal to Utopia, otherwise they'll kill his family/tribe. X-Force then confronts the Reavers in Australia. Lady Deathstrike plans on making Wolverine suffer; she doesn't want him to die. While Logan and Deathstrike fight, one of the Reavers blows up in front of Fantomex and Deadpool. Psylocke and Archangel are left against the rest of them. Some of the Reavers are seen using Gateway's portal to Utopia, and Psylocke goes after them alone. Pixie is on security duty and spots intruders on the radar on Utopia. Cyclops and Magneto find out they're Reavers, but by the time they find them they're all dead. Psylocke had used her telepathy and stealth to get to the Reavers before the X-Men do and killed them. She leaves their corpses and leaves Utopia unnoticed. Back in the Outback, Wolverine beats Deathstrike and she uploads herself through a computer and escapes. We see Wolverine tell Psylocke she doesn't look so happy about the revenge she just had...

    Deathlok Nation

    \"The
    The Deathloks attack Fantomex

    Deadpool calls an X-Force meeting without Fantomex. He discussing not feeling right about killing kid Apocalypse and that he didn't sign up to murder kids. Logan disagrees and tells Wade he knew exactly what he signed up for. Deadpool leaves and Logan tells Warren to remove Wade from the team. Warren tells Logan that Deadpool has worked for him for a year and he hasn't cashed any of the checks he paid him. Hinting that Wade just might be there because he wants to be. Fantomex visits his mother at home. She tells him he has a good conscience and that she feels she had a part in making sure he grew up with good ethic in the small amount of time she had to raise him. The two are ambushed by heroes fused with deathlok tech. Spider-Man kills Fantomex's mother, he escapes with EVA, but soon crashes as he makes his way out of his ship he sees Deathlok standing before him.

    Deathlok senses other Deathlok units from another possible future and believes that they are up to no good. The alternate Deathlok units are comprised of superheroes who in the future are hunted, killed, and then reanimated as super-cop Deathlok units, which the government sanctions. The alternate Deathloks have been sent back in time to protect their possible future by obtaining a weapon known as the World. Apparently, after Fantomex killed the child Apocalypse, it caused a disturbance in the time stream sending Deathloks and their controller into phone-booth time machines to fix the glitch. Meanwhile, Psylocke tells Brian Braddock that she aided in the murder of a child. Brian gets angry, but tells her that he can't absolve or condone her, and that he will always love her. His image then disappears, and Warren asks Betsy what she was doing alone in the Danger Room, to which she replies that she was talking to herself. Fantomex and Deathlok manage to escape the other Deathloks with the aid of X-Force. Fantomex then decides that the only way to stop this is by killing the \"Father\". He then expands the World, X-Force is going in to kill Father and the Future.

    \"Apocalypse
    Apocalypse alive

    X-Force and Deathlok enter The World. Deathlok explains that Deathloks perpetually travel in time to protect the events that ensure a future where all super beings are controlled, and that if they fail to kill Father, this will be almost impossible to stop. X-Force then decide to split up. Fantomex and Deadpool end up arguing with each other over their behavior and attitude. Meanwhile, Logan and Deathlok happen to face Deathlok-Wolverine. Elsewhere, Psylocke argues with Angel. He seems to think of her \"mothering\" him too much, whereas Betsy is concerned because he hasn't come to her for their psychic exercises. Both are chased by Deathlocks versions of Psylocke/Warren. They fly at high speeds and Psylocke turns around throwing her katana which stabs Deathlok-Psylocke in the head and kills her. Psylocke then tells Warren to go back for her sword. He tells her she has more of those, however she insists that she wants that one. Meanwhile, Deadpool finds the Father who uses his powers on Wade to make him love him like a father, whilst watching Fantomex being beaten by the Deathloks, trying to desperately protect what's hidden in his laboratory. Deadpool breaks free of the control and kills the Father by chopping off his head, making the Deathloks cease to exist. The team re-gather, with Wade triumphantly presenting Father's head and Fantomex tells them their mission is over. However, it is revealed that in the laboratory Fantomex brought baby Apocalypse to the World and has him incubating in a tube back in the Weapon X program. It says that he is 847 days old...

    Unintended Consequences

    \"The
    The Shadow King strikes

    Deadpool snoops around a military base because Betsy had said there were weird physic emanations coming from it. Meanwhile at Cavern-X, Betsy and Warren are having another psychic therapy, where Betsy ends up trapping the \"Archangel\" persona in one of Warren's first moments of rage. X-Force then decides to head to the military base because they have lost contact with Deadpool. Psylocke tells the others there is a powerful telepath working in that base, and asks them to guard her while she's out to find who is it: she then sees The Shadow King on the astral plane. The Shadow King finds a crack in Betsy's psy shields and starts filling her head with images of her brothers telling her how shocked they are that she's a killer and that their father would be disappointed. Shadow Kings manages to break Psylocke down, but ultimately she escapes. While all of that was happening in the Astral Plane, the Shadow King had taken control over Angel, Wolverine and Deadpool. Fantomex was left alone to protect Betsy's body by misdirecting them. The mind-controlled Archangel tries to launch the missiles at Utopia. Psylocke tries to stop him, but she gets locked out of the missiles launch room, where only Warren and one other mind-controlled employee were. The Shadow King finds the Archangel persona trapped inside Warren's mind, and ends up freeing him. Archangel takes full control of Warren, and cuts Shadow King's in half, to Betsy's surprise. Archangel then casts Betsy out of Warren's mind, telling her, she won't remember his freedom. Warren then snaps out of it, and kills the employee who was about to launch the missiles, even though the employee was also out of the mind control. Wolverine says he hadn't any other option, even unknown to them, he had another option...

    High Art

    \"Magneto's
    Magneto's request

    Namor inquires with Dr. Nemesis about a request that was made by Magneto, to which he gets dismissed. Nemesis meets Magneto and asks him if he's certain of what he wants, and gives him all the information he wanted. Meanwhile, X-Force returns from their last mission, stating that the Shadow King is due to return once again. They also console Angel about his actions in said mission. Upon arriving at Carvern X, X-Force meets Magneto who had defeated Deathlok. Warren asks him how he found about them, to which Magneto replies \"Remember to whom you are speaking\". Magneto gives them the information about a former Nazi he wants to be killed. Wolverine dismisses the rest of X-Force and decides to proceed with the mission by himself. Logan travels to Rio de Janeiro and finds the man he's seeking. Now an elderly man, he has lived a good life, tried to forget the past but he was certain that his past would eventually catch up with him. After this, Logan murders the old man.

    The Dark Angel Saga

    \"The
    The Fight Between Two Friends

    The Shadow King meets with Harper Simmons, a struggling news reporter looking for his next big story. The Shadow King gives him security camera footage of Archangel killing the employee who was about to launch the missiles and reveals the entire team in action. Archangel hears about this and leaves to go deal with it. Psylocke notices how much Archangel has changed and decides to tell Logan that Warren is becoming a problem.

    Archangel then meets up with Harper and is about to kill him but Wolverine breaks in and the two fight. Archangel manages to fly away and is about to kill Harper but he struggles to do so since Warren knows it's wrong and is holding Archangel back. Warren is subdued by Psylocke and the team locks Warren up in Cavern X and erases Harper's memory. The team decides that there is only one person in the world who would know what is wrong with Warren. They break Dark Beast out of jail who tells them that since they killed Apocalypse, Archangel now is becoming what he was designed to be: The Heir of Apocalypse. The only way to cleanse Warren of Archangel is to use a \"Life Seed\" to eliminate the \"Death Seed\" that is inside of Warren. Unfortunately the only way to get the Life Seed would be to travel to his laboratory in his home dimension: The Age Of Apocalypse.

    \"The
    The Age Of Apocalypse

    Using an inter-dimensional portal built by Dark Beast, the gang travels to The Age Of Apocalypse universe and gets the life seed from Dark Beast's lab. Unfortunately the X-Men of this universe interfere, thinking the gang are clones created by Dark Beast to throw them off. The Life Seed is destroyed by Sunfire, while Dark Beast escapes through the portal back into the 616 universe. The portal closes, trapping X-Force in the Age of Apocalypse universe. Wolverine still doesn't trust the Sabretooth of this universe (even though he's a good guy) but is relieved to see Nightcrawler is still alive. The team travels to the X-Men's secret base in Atlantis and Wolverine meets the one person who would hurt him the most if he saw her alive. Jean Grey.

    \"Deadpool
    Deadpool Raises A Good Question

    Wolverine and Jean talk about how much they miss the alternate versions of each other and even think about one of them staying in the others dimension so they could be together. Although Wolverine doesn't like the idea since this isn't his Jean and he isn't Jean's Logan. Although they eventually end up kissing each other. Although their kissing is interrupted by a Sentinel attack. Jean easily takes care of the Sentinel and the team gets together to discuss what's going on. Turns out that the Age of Apocalypse version of MODOK has found the celestial where Dark Beast found the Life Seed and has detected multiple Life Seeds within it. Fantomex suggests splitting into two teams, one will get the Life Seed from the celestial and the other will break the Gateway of this universe out of the Akkaba Prison known as The Sky.

    Fantomex meets up with Psylocke later and the two argue, Psylocke still mad at Fantomex for killing Apocalypse. Although Fantomex really pushes Psylocke's buttons after he says that Warren becoming Archangel was her fault and that she doesn't love Warren she just loves being needed by Warren. Psylocke punches Fantomex and Fantomex says that \"That man you loved is gone, but I am here\" and the two end up kissing. Although Psylocke leaves refusing to give up on Warren.

    The two teams break off. Fantomex, EVA, Sunfire, Rogue, and Gambit leave to go pick up the Life Seed, while Wolverine, Jean Grey, Nightcrawler, Psylocke, Deadpool, Iceman, Sabretooth, Wild Child, and Kirika go to break Gateway out of prison. Although once in the prison they run into the Black Legion a group of evil versions of famous heroes and villains from our universe. With no other option but to retreat they run to find Gateway, although things take a turn for the worst when they run into the Age Of Apocalypse version of Wolverine who kills his own daughter Kirika.

    \"Uh-oh\"
    Uh-oh

    Fantomex manages to grab a life seed but is shocked to find that both the celestial technology is almost exactly like the kind of technology in the World, and that there is only one remaining life seed. Back at The Sky, Jean tries to stop the AOA Wolverine but with no luck. AOA Wolverine knocks Jean out and takes her away to turn her into his bride. It's also revealed that AOA Iceman was a traitor and that he gave the Black Legion information. Gateway manages to teleport the gang to where AOA Wolverine is to save Jean. Fantomex arrives and they hope to give AOA Wolverine the life seed to save the Age of Apocalypse universe, but when they find out that there is only one Life Seed left Jean tells Wolverine to save his universe and not worry about hers. Gateway teleports the X-Force back to the 616 universe only to be confronted by Archangel (who has now become the new Apocalypse), Dark Beast, Genocide, and the Horsemen of Apocalypse.

    Wolverine is the first of the team to go down with Genocide burning him to a crisp. The team is overwhelmed and decides to retreat with Deathlok, but Psylocke decides to stay refusing to give up on Warren. Deadpool and Fantomex discuss what they should do next, at the same time Archangel has Genocide destroy an entire small town and then uses the World to speed up evolution. Deadpool, Fantomex, and Deathlok make their way into the evolved town and are attacked. Deadpool is attacked by Famine and Deathlok decapitates Death. Fantomex tries to stop Archangel but has to retreat after Genocide gets involved. Deathlok interrogates Famine removing both of his eyes. Famine gives the team the location of where Archangel is living and the team flies over there as fast as possible.

    \"Ready
    Ready to Rumble

    The team enters the Akkaba city under the north pole, but Famine escapes destroying EVA and leaving Wolverine's body to burn. The team has to fight both The Blob and Iceman from the AOA universe who have traveled to the 616 universe to serve Archangel. The Blob is taken down after Famine accidentally attacks him instead of Deadpool. Wolverine then appears and slices off Famine's hands. Iceman then freezes Deadpool and shatters him into hundreds of pieces. Meanwhile Psylocke finally gives up on Warren after she sees him kill Genocide's mother and tries to kill him. Archangel wins however and infects Psylocke with the Death seed turning her into the bride of Apocalypse.

    Fantomex flees to Gateway and brings back several members of the x-men from the AOA universe to help stop Archangel. Nightcrawler teleports Psylocke to Fantomex who manages to get her to lower her defenses so Jean Grey can enter her mind and destroy all signs of Apocalypse. Wolverine, Nightcrawler, Sabretooth and Wildchild all lose to Archangel who flies off so he can burn the entire world and then evolve it at super speed although he is greeted at the door to his doomsday machine by both Fantomex and Psylocke, both ready for a fight.

    Deathlok manages to reason his way out of War's spell by learning love. Dark Beast, Pestilence, and War escape from Deathlok and flee so they can protect the child that Archangel put into Pestilence. Psylocke and Fantomex put up a fight, but Angel eventually takes care of them both stabbing Fantomex in one of his brains and knocking Psylocke off a building. Fantomex with no other option decides to release the clone of Apocalypse.

    \"The
    The Death of Archangel

    Apocalypse has been living a virtual life as Evan, a teenaged superhero named Genesis who has an origin story very similar to another superhero from an alternate universe. Genesis fights Archangel but loses, although the fight gives Psylocke enough time to gather the courage and stab Archangel with the life-seed. Killing him. Before he dies, Psylocke plants false memories into Archangel's mind. Memories of them growing old together and living a happy life.

    Fantomex grabs Psylocke and meets up with Deathlok who has collected all that remains of Deadpool in a small bag. They gather their fallen comrades and prepare to leave. Before they do Psylocke sees Warren walking towards her in the snow. She kisses him and is happy to see him alive, but eventually realizes that there's one thing wrong with him. Warren has no memory of who she is, or memory of anything else. The Life seed has turned him into a \"blank slate\".

    Live With This

    \"The
    The Memory Will Live On

    After Archangel is eliminated, Fantomex decides to send Genesis to the Jean Grey School for Higher Learning but only if he continues to follow the path of a hero. Meanwhile Wolverine and AOA Jean Grey spend one last night together while Deadpool and Sabretooth talk about their fallen comrades. Jean and Sabretooth eventually travel back to their own universe but AOA Nightcrawler decides to stay behind and join X-force so he can hunt down Bobby Drake, Blob, and Dark Beast so they can pay for the death of his friends.

    Psylocke desperately tries to make the reborn Angel remember who she is, but sadly nothing she does seems to work. Warren really is gone. Meanwhile Wolverine and Fantomex talk about Genesis, Fantomex tells him that he did it to prove to himself that \"evil wasn't cooked into the boy's genes.\" Wolverine decides that Genesis can stay at his school but only if Fantomex doesn't tell the boy that he is actually the clone of Apocalypse. Wolverine then invites Kitty Pryde and Beast over and reveals the existence of X-force, Beast is furious at the idea but Wolverine tells him that X-force is going to continue to exist so that none of the bad guys show up at his school looking for a fight.

    Later that night Fantomex is attacked by Captain Britain who tells him that he has to pay for his crimes.

    Otherworld

    \"Betsy
    Betsy and Fantomex escape Otherworld

    When Jean expanded Psylocke’s psyche, her psychic connection to her brother, Brian, was briefly reestablished. He saw her memories of her time with X-Force and used them against Fantomex, an anomaly who doesn’t exist in any other timeline, in a trial in Otherworld. He was found guilty and the team needed to go save him.

    X-Force finds themselves stuck between the Captain Britain Corps and demonic invaders, but Psylocke is able to free Fantomex by herself. The two are ultimately caught by The Skinless Man, a Weapon Plus subject who had his elastic skin stolen by Fantomex years previous. Psylocke was able to incapacitate The Skinless Man and reunite her team with the Corps to take down the demonic invaders.

    Psylocke reaches into the Goat Monk, the leader of the demons, and finds that he is a version of her brother, Jamie, from the future. So she killed the present version of him. At Jamie’s funeral, Brian gave in to the idea that some situations need an ugly solution and regretfully dismisses Fantomex’s charges.

    The Final Execution

    \"New
    New Brotherhood

    The team took a big hit. Angel regressed and was removed from the team. A guilt-ridden Psylocke quit, and without Angel’s backing, Fantomex left too. This meant Wolverine and AOA Nightcrawler were Deadpool’s only backup when his recon of a corporate assassin outfit called White Sky went south. White Sky specialized in genetic alterations and implanted memories that give their assassins a personal vendetta against the targets. Their most effective killers, The Omega Clan, have been hired to go after X-Force.

    They were hired by a new Brotherhood, run by Daken. While the Omega Clan was taking on the three active members of X-Force, Sabretooth kidnapped Genesis, Mystique was posing as Psylocke to seduce Fantomex, and Shadow King was telepathically prying at Psylocke’s guilt. Skinless Man and AOA Blob were also among their numbers.

    Fantomex was able to best Mystique and tried to save Psylocke. He was ambushed by The Skinless Man who cut out his heart. With his connection to EVA severed, EVA evolved into an android and accompanied Psylocke back to HQ. With the surviving members back together, Daken revealed himself, commanding Ultimaton to break Gateway’s neck and self-destruct.

    \"No

    Before Ultimaton blows, Psylocke is able to push Gateway’s mind just before he dies to teleport the team. They found themselves 30 years in the future with a version of Deathlok. Deathlok explained that Genesis became the new Apocalypse but was killed by X-Force. Based on that success, X-Force continued hunting criminals becoming more and more fascist. To stop this future, Psylocke attempted suicide only to be saved by AOA Nightcrawler. With their new found knowledge, the team returned to the present to set things right.

    Back in the present, Deathlok helped them track Ultimaton to find Evan and the new Brotherhood. While the team argued what to do about Evan, Deadpool snuck away to save him from being killed by anyone, however, without his healing factor, he was outmatched by the Brotherhood. The team split up to now rescue both Evan and Wade, but they are betrayed by AOA Nightcrawler when he was manipulated by Mystique.

    Mystique offers up AOA Blob on a platter for AOA Nightcrawler. With X-Force against the ropes, Evan finally gives in and steps into an Apocalypse power suit. He turns the tide in X-Force’s favor. Psylocke is able to incapacitate Shadow King, and EVA stabs Nightcrawler for his betrayal. Deadpool stabs Skinless Man in the neck, and Wolverine drowns Daken. Sabertooth escapes, as does AOA Nightcrawler with Mystique.

    Disbands

    X-Force decides to disband, but not before they recover and clone Fanomex’s body. Known for having three brains, the cloning machine ended up making a new body for each brain: Fantomex, Cluster, and Weapon XIII.

    Dual X-Force Teams

    After Wolverine’s wetworks team was disbanded, there were two active X-Force teams. One was Cable’s new rogue team, and the other was Psylocke's X-Men approved field team

    Cable's Team

    \"No

    Cable assembled Forge and Dr. Nemesis to help him in his weakened state. His techno-organic virus had been cured, leaving him with a missing eye, a severely atrophied arm, and constant debilitating headaches coupled with horrific visions of the future that might just end up killing him.

    Cable brings in more members to get ahead of the premonitions: Colossus, Domino, and Hope. However, they only have a small window to make things right. If they don’t resolve it at the right time, the butterfly effect will cause it to change, possibly worsen. Their first mission to stop tainted fast food meat that doesn’t affect mutants in order to frame mutants backfires when they are labeled terrorists for attacking the factory. This trend continues with each premonition they avoid. They are branded criminals and have to lay low, especially now with the Avengers Unity Squad on the hunt.

    While X-Force continues to stop premonitions on the run, Hope, kicked off the team by Cable to protect her, goes looking for the reason for his premonitions. She found Blaquesmith, who claimed responsibility and kidnapped her to the future. He was working with a future version of Hope that was trying to avert their current dystopia. The future version didn’t realize how much damage she was doing to Cable so they sent back Hope (with some new future tech) to save Cable from the terminal new powers.

    Psylocke's Team

    \"No

    Wolverine, as the current headmaster, reassigned Psylocke from academy staff to field team. She was lashing out after a bad breakup with Fantomex. She was teamed with Storm and Puck. They were tasked with tracking a new drug, Tao, which causes users to be susceptible to a hive mind. It was connected to a young girl named Ginny in the care of Spiral.

    When this team caught up with her they were interrupted by Bishop. Bishop was possessed by the Demon Bear and was sent through time by the Revenants to apprehend Ginny. This allowed a second revenant possessing Bishop to take over Ginny’s body. Spiral and Bishop were then taken in by X-Force.

    After Bishop was healed, they were ambushed and briefly apprehended by The Revenants, but they were able to fight their way out. That’s when Spiral returned with new information. She reveals that the Revenant Queen is actually Cassandra Nova. She plans to open a portal to release more Revenants that requires the sacrifice of a telepath to close. When Spiral reluctantly struck Ginny, it forced Nova out of Ginny’s body and into the revenant of Psylocke. When Psylocke killed her, her death closed the portal.

    Vendetta

    \"No

    When Hope finds out that Bishop, who chased her and Cable through time trying to kill her, is alive in the present, she goes hunting for him. Hope is interrupted by Stryfe. Cable shows up just in time to see Stryfe teleport away with Hope and Bishop, and Psylocke shows up just in time to see Cable and expect the worst. Cable didn’t take too kindly to them protecting Bishop causing the two X-Forces to face off against each other.

    While they fight, Nemesis drugs Spiral so Cable can use her teleportation powers to follow Stryfe. When the two teams realize he has snuck away, the teams band together to figure out how to track Cable. Meanwhile, Stryfe was waiting for Cable. He sent Spiral away and locked up Cable. His plan was to set Hope up to kill Bishop while Cable watches, unable to stop her.

    The teams’ attempts to track Cable failed. Instead, they were able to find Spiral who remembered where she teleported Cable too. When the teams show up, they split into two groups. Forge, Boom-Boom, Spiral, Domino, and Storm infiltrate Styfe’s base to free Stryfe’s captors, while Colossus, Puck, Nemesis, and Psylocke fight Stryfe head-on to distract him.

    When the infiltration team found Hope, she injured Bishop but couldn’t kill him. Stryfe’s plan failed, and Cable, now freed by both teams, stabbed him with his own psimitar. However, before he made his getaway, Stryfe dumped his omega level power into Hope through her power mimicry causing her to become unstable. Bishop is able to talk her through processing the power, earning him a second chance. But Cable and Hope aren’t interested in being his friend.

    The two teams commiserate after a win, and Cable mentions taking X-Force in a new direction.

    The Alexandria Incident

    \"No

    Cable puts together a new X-Force after The Alexandria Incident, a terrorist attack on a defense symposium that puts Hope into a coma. The team consists of members from the previous two teams: Psylocke, Fantomex, and Dr. Nemesis. Their goal is to recover the captive mutants being experimented on and used in these attacks by Russian billionaire, Volga. Their first successful rescues are Marrow and Meme, who both join the team. However, Meme was actually Hope mimicking Meme's abilities from her coma.

    They track down Volga’s mobile base, but Volga wasn’t just capturing mutants. He was also creating superhumans, including giving himself superhuman powers. He sabotaged Cable with his self-destruct super-human serum and captured the rest of the X-Force field team. Meanwhile, Nemesis knew of Cable’s sabotage. He had Cable’s body in stasis, creating a new clone each day that would eventually explode, while he searched for a cure. A new clone of Cable was able to free his team but Volga got away.

    Soon after, Fantomex’s obsessive need to be superior causes him to snap and turn against his team, upgrading himself with Volga’s biotech. The team narrowly escaped with the help of Domino. To stop Fantomex, Hope needed to mimic Volga’s biotech from her coma, which would help her find a cure for Cable, Fantomex, and herself. She distilled all her team’s rage and insecurities and uploaded them into Fantomex. This forced Fantomex to purge himself using EVA. Hope copied the procedure on Cable and herself, ending the grasp of Volga’s biotech on all of them.

    Hope’s last act was firing Cable as leader, as she no longer agreed with him that the ends justify the means.

    Original Team Returns

    After the death of Cable, Domino gets part of the New Mutants roster back together to search for a teenage version of Cable that is active in the present.

    Sins of the Past

    \"No

    They track him to Transia, a nation that recently allowed mutant refugees. Cable was investigating it with Deathlok’s help. The Transia military had guns from the future, and he wanted to know how they were getting them. When Deathlok got captured during recon, Cable had to break him out of prison. X-Force showed up and aided in their getaway.

    Deathlok successfully got intel though. Despite allowing mutant refugees, bigoted military leader, Constantin, was responsible for an increase in mutant-targeted violence. He even went as far as to kill the Transian President and frame X-Force using surveillance footage from the prison break, Constantin rules all mutants as enemies of the state, and X-Force stuck around to liberate mutants from Constantin’s prison camps, including a soldier, Andrei, hiding his mutation who pledges to help the team.

    Andrei sneaks Deathlok into the prison to save the prisoners, but he betrays Deathlok and escapes through a time portal. Deathlok is still able to free the prisoners, but he is attacked by Ahab for spare parts. Ahab had been captured by Constanin and forced to find a cure to mutation. The team let Constantin in a mech suit and Ahab fight each other to the death.

    Cable also revealed to Domino that Ahad was his real target since he was looking for Rachel Summers. One of the mutant prisoners said they saw Rachel enter the time portal. As the team was gearing up to enter, Stryfe and his Mutant Liberation Army came through.

    Counterfeit King

    \"No

    Stryfe had Rachel and Clan Chosen hostage, and X-Force was in no condition to fight his Mutant Liberation Army after taking on the Transian army. So, Cable agreed to follow Stryfe into the time portal. 2,000 years from now, Stryfe was torturing Cable for the location of the Clan Askani.

    Once the team got the portal working, they made their way to the future to rescue their friends. They got to the future just in time to see Rachel make a psychic call to the Clan Askani, but this was a ruse. Stryfe was puppeteering her to lead them into his trap. X-Force made it to Clan Askani before they fell into the trap, but an earlier version of Blaquesmith mistook them for the MLA and attacked them.

    The MLA eventually attacked and X-Force and Clan Askani teamed up to take them on. In the chaos, Blaquesmith tries to retreat but is caught by Andrei, the Transian soldier turned MLA member. The MLA members were being controlled by Stryfe’s psychics. They had to direct so much focus to them, that they loosened their grip on Rachel. This allowed Rachel to tap into her innate abilities and defeat the psychics. This allowed the controlled members of the MLA to turn against Stryfe and those voluntarily part of the MLA.

    Rachel used her telepathy to hurt Stryfe, but she was stopped by Cable. This version of Stryfe is from the same spot in the timeline as this younger Cable. If Rachel killed him now, this Cable would never grow up to be the Cable Rachel and X-Force love. With Cable and Rachel saved, X-Force escorts them and the brainwashed MLA members back to the present.

    Krakoa

    \"No

    By transforming Krakoa into an island nation for mutants, Pr. X put a bullseye on the collective heads of mutants. With a new nation comes new enemies. They found the need for a CIA like operation to analyze threats through intelligence gathering and black ops after XENO assassins broke the perimeter of Krakoa by grafting skin samples from Domino on to their bodies.

    Beast, Sage, and Black Tom are the intelligence gathering branch, and Wolverine, Kid Omega, and Domino are the black ops team. They all answer to Krakoa's main diplomat, Jean Grey.

    X-Force also has some authority in the resurrection protocols granted to them by Xavier. They are able to delay resurrection of any mutant they determine to be an immediate threat to national security. They are also able to have a say in the editing of memories for the management of national security.

    Telefloronic Arms Race

    \"Wolverine
    Wolverine captured

    The president of the South American nation of Terra Verde originally refused to sign the Krakoan treaty to share in the mutant pharmaceuticals believing it to be plagiarist of their own telefloronic technology, thus crippling the nation economically. After private talks, the president reconsidered, however, the telefloronic scientists, working with the president’s son, exposed themselves to their organic plant-based technology and attacked during Xavier’s public appearance. Beast believed them to be the first in a long line of organic sentinels and sent X-Force to preemptively take them out. With the president’s son retrieved, Beast secretly turned his telefloronic technology against him, turning the son into a telefloronic computer virus that would turn all their telefloronics against them.

    Several months later, the country went dark, and X-Force was sent to investigate. The black ops team found the president ripped to shreds by vines that had overrun the entire country leading back to an old Mayan temple. After the field team was overwhelmed, the intelligence members were forced to head into the field as reinforcements. Jean Grey used her telepathy to connect Black Tom and Sage, combining their abilities to talk to vegetation and talk to technology, to deactivate the techno-organic weapons.

    Knowing Beast was responsible for creating a clear and present danger to mutantkind, Jean Grey quit the team. Months later, the Terra Verdeans targeted the first Hellfire Gala to demand their freedom from Beast's coding. In order to keep Beast's decisions secret, Krakoa agreed to their demands kicking off a telefloronic arms race.

    \"X-Force
    X-Force studies Man-Slaughter's genetics

    Although X-Force was created to investigate threats from anti-mutant hate groups, they found themselves confronting a threat from the ocean floor when a number of corpses washed up on shore and started attacking people. They assumed the corpses were moving due to an infection, so they tracked them to a sunken US naval vessel. Members of the field team investigated using Forge’s new Krakoan dive suits and found offshoots of Krakoan vines that were bonding with the wildlife. Namor swam in to exterminate it for them, but the natural evolution and dissemination of their telefloronic technology was worrying.

    In addition, a third strain of telefloronic technology related to Man-Thing was discovered in the Pacific Northwest. It was a plant-human super soldier named Man-Slaughter, who was the product of a Weapon Plus program funded by XENO. They began to see the technology used against a number of X-Corp’s human allies, mainly CEOs, politicians, and peace-keepers. Man-Slaughter, who had escaped Weapon Plus, was happy to cooperate. Using Man-Slaughter's genetic samples, X-Force’s intelligence division could track Dr Bloodroot, another plant-human hybrid, who was the source of these new infections. Once defeated, the attacks ended, but Man-Slaughter promised X-Force that the doctor was not dead for good.

    Russian Bio-Trafficking

    \"Quire
    Quire vs his own psychic signature

    After Wolverine helped the Marauders take down a Russian criminal organization from stealing Krakoa medicine, they uncovered the bodies of Russian super soldiers. They brought the bodies back to be studied by X-Force, however, they were Russian Nesting Dolls, featuring ever smaller assassins that would escape after the top body was killed. Their target was the data servers downloaded into the Cerebro Sword, desired by their employer Mikhail Rasputin. It was his peace offering to XENO and its leader, known only as the Man with the Peacock Tattoo. In the meantime, Beast rounded up the Russian mutants, Colossus and Omega Red, for psychic interrogation, much to the chagrin of the rest of the team.

    In addition to the Cerebro Sword, Rasputin also handed over the corpse of Quentin Quire, so that XENO could replicate his powers just as they did Domino. With their new Quire zombie, they first framed the mutant nation for an attack on a cruise ship before attacking the country directly, including killing Beast with a stroke and trapping Black Tom in vegetation. Once Sage confirmed it was Quire’s psychic signature, Quire went into the astral plane to find the source, only to be attacked by his own zombified energy signature. With Jean’s help, Quire was able to purge his old body of any latent memories or powers, ending the psychic attack.

    Cerebro Tech

    \"The
    The New X-Force

    Omega Red came to Krakoa looking for asylum but was secretly a plant for Dracula and his new vampire nation. X-Force figured this out during their psychic interrogations over Russia’s anti-mutant policy. Beast outfitted Red with tracking and surveillance tech so he would be an unwilling double agent. When Red learned of this, he tried to defect back to Russia, where Mikhail Rasputin forced him to time travel and kill Xavier. Wolverine was forced to use Cerebro to jump back into earlier versions of his body and stop Red. After killing him, Sage suggested to the Quiet Council that they resurrect Red so that they could convince him to be an X-Force asset. Red reluctantly agreed.

    When Wolverine was using Cerebro, Xavier needed to network his back-up Cerebro’s together to increase the power. As Logan traveled through time, Sage hypothesizes that Cerebro became a nexus for the collective consciousness. This caused one of the back-ups to gain sentience and start feeding on mutant brains, misunderstanding its directive to store and digest information. Quire eventually charged into action causing Cerebrax (as it was now calling itself) to explode. Quire was killed in the explosion, and his memory backups were scrubbed from the Cerebro files, making resurrection impossible.

    Cerebro tech was also stolen by the American CIA, and Deadpool, who had been obsessed with proving himself worthy of Krakoa citizenship, took a gig to retrieve it. This forced him to cross paths and eventually team up with Wolverine, when they realized that they were competing with former X-Men ally, Danger. She wanted the Cerebro tech to create a child to replace the X-Men, who abandoned her for their new country. Empathetic, Logan and Wade left her to her new family, and Wolverine invited Wade to join X-Force.

    In Other Media

    Film

    \"Deadpool
    Deadpool and X-Force
    • X-Force makes its film debut in Deadpool 2. In the movie, X-Force is assembled by Deadpool (Ryan Reynolds), who puts out a want ad in order to find superhumans who can help him protect Russell Collins (Julian Dennison) from Cable (Josh Brolin). The mutants who respond to Wade's ad are Domino (Zazie Beetz), Shatterstar (Lewis Tan), Bedlam (Terry Crews), Zeitgeist (Bill Skarsgård), Vanisher (Brad Pitt) and a normal human named Peter (Rob Delaney). In an extended bit of black comedy, most of the members of X-Force are gruesomely killed during their first mission, as Deadpool forgets to compensate for the wind during the team's airplane jump. By the end of the ill-fated sky jump, Deadpool and Domino are left as the fledgling group's only survivors.
    • A spin-off X-Force film was in the works at Fox Studios with Ryan Reynolds, Josh Brolin and Zazie Beetz expected to reprise their roles. However, after the Fox/Disney merger, the current status of the spin-off is unknown.

    Video Game

    \"UMVC3
    UMVC3 and Future Fight
    • The members of X-Force appear in Deadpool's ending in Ultimate Marvel vs. Capcom 3, where they celebrate Wade's victory over Galactus.
    • The X-Force version of Deadpool is a playable character in Marvel Contest of Champions. Storm also sports her X-Force uniform as her default outfit. A version of X-Force from a parallel dimension appears in the game as one of the many groups brought to Battlerealm. The team consists of Wolverine, Deadpool, Psylocke and Archangel.
    • Various members of X-Force appear in the Marvel Heroes online game. Additionally, Wolverine, Storm, Deadpool, Cable, Psylocke and Colossus have their X-Force uniforms as alternate costumes.
    • X-Force appears in Marvel Future Fight, with the team consisting of Cable, Domino, Deadpool and Psylocke.
    • The X-Force versions of Wolverine, Deadpool and Domino appear in the Marvel Puzzle Quest mobile game.
    • Deadpool's X-Force universe is available in the Marvel Strike Force mobile game.

    Merchandise

    \"Marvel
    Marvel Legends
    • In the 90s, ToyBiz produced a line of X-Force action figures. The line included mainstays like Cable, Domino, Shatterstar, Cannonball, Sunspot and Warpath, as well as villains like Stryfe, Deadpool, Garrison Kane, Gideon, Pyro, Avalanche, Mojo, Killspree, Slayback, Blob, Black Tom Cassidy, Cruel and Forearm. Other characters such as G.W. Bridge, X-Treme and Grizzly also appeared in the line.
    • The X-Force version of Warpath was featured in a Marvel Legends two-pack with Deadpool, produced by Hasbro.
    • At San Diego Comic-Con 2012, an exclusive Marvel Legends X-Force box set was offered by Hasbro. The set included Wolverine, Psylocke and Archangel.
    • A figure of Deadpool in his X-Force outfit was included as part of the Marvel Legends Epic Heroes wave from Hasbro.
    • The Marvel Legends Sasquatch Build-a-Figure wave as an homage to X-Force, and featured several characters associated with the team, such as Deadpool, Cable, Domino and X-23.
    • A box set featuring the X-Force versions of Wolverine, Deadpool and Warpath was released as part of Hasbro's Marvel Universe line.
    • An X-Force themed wave called \"Deadpool & X-Force\" was released for the HeroClix figure game.
    • At Toy Fair 2019, Hasbro revealed that a special Marvel Legends X-Force wave is in the works. The series will include Cannonball, Boom-Boom, Nightcrawler and Mister Sinister, among others.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-184317/","id":184317,"name":"The Swimsuit Issue","issue_number":"1"},"id":15595,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/124259/7898747-x-force_vol_6_1_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/124259/7898747-x-force_vol_6_1_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/124259/7898747-x-force_vol_6_1_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/124259/7898747-x-force_vol_6_1_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/124259/7898747-x-force_vol_6_1_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/124259/7898747-x-force_vol_6_1_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/124259/7898747-x-force_vol_6_1_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/124259/7898747-x-force_vol_6_1_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/124259/7898747-x-force_vol_6_1_textless.jpg","image_tags":"All Images"},"name":"X-Force","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/x-force/4060-15595/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15625/","count_of_isssue_appearances":0,"count_of_team_members":10,"date_added":"2008-06-06 11:27:47","date_last_updated":"2016-01-10 20:56:07","deck":"The Gods of the Elder Night","description":"

    The Great Beasts are a group of powerful creatures from another dimension who have tried several times to take over Earth. They're in fact older than the Earth, and became the embodiments of death on Earth when it was first commencing to come alive. They come from a time long before good or evil, for that matter, right or wrong. They're hellstorms, nothing more or less--living breathing tornadoes of mystical energy consuming everything in their path without restraint or remorse. They were trapped a thousand years ago in their own dimension by the Northern Gods but the magics holding them weakened. The Great Beasts live in a realm that was once not unlike Earth, though in a universe outside our own. After a million years passed, the Beasts rose to power there. They pillaged and corrupted their world, then set forth for greener pastures. Three times they attacked Earth, the planet nearest on the mystic continuum, and three times they were driven back. The last time, they were sealed behind a barrier designed to keep them forever in the Realm of the Beasts. The battle cost the victors as much as the vanquished. The land-beast Tundra, who was ever at war with the beast of the snow, Kolomaq, created a magical vortex that spun the energies of the barrier back onto their creators. This trapped the Beasts in their realm and the Northern Gods in their realm, Paradise. Llan offered his help his help, however he plan to drained their energies and then exterminate them and ruled as his own, luckily his plan was stop.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-25573/","id":25573,"name":"Night Of The Beast","issue_number":"23"},"id":15625,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1528122-attachment.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1528122-attachment.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1528122-attachment.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1528122-attachment.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1528122-attachment.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1528122-attachment.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1528122-attachment.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1528122-attachment.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1528122-attachment.jpg","image_tags":"All Images,Great Beasts"},"name":"Great Beasts","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/great-beasts/4060-15625/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15929/","count_of_isssue_appearances":0,"count_of_team_members":12,"date_added":"2008-06-06 11:27:47","date_last_updated":"2013-03-22 11:18:54","deck":"A group of teenagers who were brought together by an enigmatic military leader to help fight crime & keep peace in the Bronx.","description":"

    History

    Origin

    For over two millennia  the Wolfpack has fought the Nine to bring balance to the world.  The Nine would always consist of men.  Mortals who demonstrated that they had no capability for love, compassion or charity.  

     The Bronx  

     When a new version of the Nine appeared in the modern day Bronx, a mysterious man known only as Mr Mack began to recruit members of a modern day Wolfpack.  He specifically chose a group of five youths from the South Bronx who had no prior knowledge to each other.  Mr Mack was a retired Naval officer who knew how to train the military.  He had chosen five adolescents according to their extraordinary abilities and aptitude, but kept them away from each other until they had trained well into their teenage years.     

     By the time the members of the Wolfpack were introduced to each other they had been training for several years.  By then, each of them had honed their abilities and skills to excel in close quarters combat, strategic thinking, speed, endurance, strength and stealth.  As the new Wolfpack, they continued to battle the forces of the Nine keeping the Bronx in balance.  

    Alternate Realities

    Earth-58163:  House of M 

    After the Scarlet Witch twisted Earth-616's reality to reflect a mutant dominated society, non-mutants became known as Sapiens and were treated as second class citizens.  Teams of enhanced and powered Sapiens began to form around Sapien Town, including Luke Cage's Avengers, Shang-Chi's Dragons and a new version of the Wolfpack.  
     
    The Wolfpack consisted of younger heroes who more closely resembled the roaster of the New Warriors from Earth-616.   Alex & Julie Power appeared without their siblings Jack & Katie.  The Power kids were joined by Darkhawk, Rage, Speedball, Turbo and Rafael Vega.   
     
    They were ambushed by the NYPD's Brotherhood, who had combined forces with the Kingpin's assassins.   Posing as Karolina Dean on behalf of the Pride, Boom Boom sprung the trap.  Although the Wolfpack outnumbered Boom Boom's team, they struggled against Typhoid Mary's psychic attacks and the Blob's brutal physical violence.  Rafael Vega ordered his team to surrender before Boom Boom used her explosive powers to disfigure them all.
     
    The only Earth-616 Wolfpack member to appear in the House of M's Wolfpack was Rafael Vega who appeared to be in control of the team.","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-134235/","id":134235,"name":"Wolfpack","issue_number":"31"},"id":15929,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/311171-179599-wolfpack.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/311171-179599-wolfpack.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/311171-179599-wolfpack.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/311171-179599-wolfpack.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/311171-179599-wolfpack.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/311171-179599-wolfpack.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/311171-179599-wolfpack.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/311171-179599-wolfpack.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/311171-179599-wolfpack.jpg","image_tags":"All Images,Wolfpack of Earth-58163 (House of M)"},"name":"Wolfpack","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/wolfpack/4060-15929/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15971/","count_of_isssue_appearances":0,"count_of_team_members":49,"date_added":"2008-06-06 11:27:48","date_last_updated":"2020-06-24 01:50:50","deck":"The New Mutants are a team of young mutants in training at Xavier's School For Gifted Youngsters.","description":"

    Origin

    \"New
    New Mutants

    Believing the X-Men to be dead after an attack by the parasitic alien race known as the Brood, a grief-stricken Professor Charles Xavier had all but given up on the idea of ever teaching again. The efforts of his best friend and former lover Moira MacTaggert persuade him to take on both her charge Rahne Sinclair (Wolfsbane) and Xi’an Coy Mahn (Karma), a Vietnamese mutant referred to him by Reed Richards. They become his students at the Xavier School for Gifted Youngsters.

    Shortly after the two girls settle in, Xavier receives a letter from his longtime friend Black Eagle, asking if Xavier would be willing to take on his granddaughter Danielle Moonstar (Psyche) as a student and teach her how to use her burgeoning mutant powers. Xavier sets off to meet her immediately, bringing his two current students with him. When the trio arrive, they find that Black Eagle has been murdered at the hands of Donald Pierce, a long-standing villain of the X-Men and former member of the Hellfire Club’s Inner Circle. Dani agrees to go with Xavier, intending to track down Pierce and make him pay for what he has done.

    They soon find yet another youthful mutant attacked by Pierce: Roberto da Costa (Sunspot). Pierce's mercenary squad kidnaps his girlfriend and lures him into a trap. Psyche and Karma arrive in time to help him, but his girlfriend dies when she takes a bullet for Sunspot. He then joins the team of young mutants led by Professor X to enact revenge on Pierce.

    They are able to track down Pierce's headquarters, and decide to attack it directly as a group. Once they arrive, they encounter Pierce's mercenary squad and manage to defeat them. Amongst the squad is Samuel Guthrie (Cannonball), a mutant hired by Pierce to attack Xavier and his charges. Pierce commands Sam to kill Xavier, but he refuses. Xavier battles Pierce and defeats him with the use of his mental powers.

    Xavier invites Sam to attend the school as well, and a couple weeks later he shows up at Xavier's school to accept.

    Creation

    The success of the X-Men in the 1980s convinced Marvel Comics to publish the first spinoff to be inspired by the X-Men. Popular X-Men writer Chris Claremont and successful artist Bob McLeod created the New Mutants as well as the original five students that comprised the team. Claremont and McLeod were the creative team for the first appearance of the New Mutants Graphic Novel #1 in 1982. Claremont, McLeod, and inker Mike Gustovich were the creative team for the first issue of the ongoing New Mutants series in 1983.

    Team Evolution

    The five young mutants stay with Xavier and become students at the Xavier School for Gifted Youngsters. Though he does not want to teach anymore out of fear of losing more students, he quickly changes his mind. Unknown to all however, Professor X only allows the new team to form at the behest of the alien Brood. Professor X was present at the battle in which the X-Men apparently died, but no one ever questions how or why he survived the experience. In truth, the Brood had laid an egg inside Professor X. Once inside, the egg eventually takes over the body of its victim, slowly transforming him into one of the Brood. Now almost fully under the control of the Brood, Professor X willingly allows the students to stay so that they can also become hosts to Brood eggs. But the X-Men survive the Brood attack and make a timely arrival and save their mentor and the students who would later become the New Mutants.

    Like the X-Men, the New Mutants have largely different backgrounds, social statuses and ethnicity. The original team consisted of:

    Cannonball (Samuel Guthrie)

    \"Cannonball\"
    Cannonball

    Sam Guthrie comes from humble Kentucky beginnings and a huge family supported only by his mother, as his father passed away in a coal mining accident. Like his codename, Cannonball has the ability to propel himself through the air like a human cannonball while creating an impenetrable force field around himself making him invulnerable while in flight. He shares leadership of the New Mutants with his teammate Psyche.

    Psyche (Danielle Moonstar)

    \"Moonstar\"
    Moonstar

    Danielle is a proud Native American with Cherokee blood coursing through her veins. Strong willed and determined, she uses her mental-based powers to manifest images of others' greatest desires and/or fears to stop her foes in their tracks. Due to her level-headed nature and natural instincts, she shares the role as team leader of the New Mutants with Cannonball.

    Karma (Xi’an Coy Mahn)

    \"Karma\"
    Karma

    Xi’an is the only adult member of the New Mutants. Xi'an made her way from Communist Vietnam with her younger brother Leong Coy Manh and sister Nga Coy Manh. She lost both of her parents in their escape, leaving her the sole guardian and protector of the younger siblings. Seeking peace and a safe place for her brother and sister are her main concern, and she is ready and willing to use her mutant power to mentally possess another individual to the fullest extent needed to ensure she achieves her goal.

    Wolfsbane (Rahne Sinclair)

    \"Wolfsbane\"
    Wolfsbane

    The red-headed Scottish girl named Rahne was orphaned at birth, leaving her alone until Reverend Craig stepped in. She was raised by Reverend Craig and given a regular dose of guilt and shame on a daily basis. When Rahne's mutant powers first emerge, she transforms into a red wolf, leading the reverend to believe she is possessed by the Devil. He attempts an exorcism, but she was saved by Moira MacTaggert, which eventually leads her to Professor X and the New Mutants.

    Sunspot (Roberto da Costa)

    \"Sunspot\"
    Sunspot

    Rising soccer star Roberto was born to a wealthy family in Brazil. His powers manifest during one of his games when an opponent attacks him with a racial slur. After his girlfriend is killed, He leaves Brazil to attend Xavier's school, where he learns to use his increased strength and solar absorption powers responsibly.

    Major Story Arcs

    The New Mutants Are Born

    \"No

    Together they formed the first junior X-Men team ever and were dubbed the New Mutants. Though they were a team they were not meant to ever see field duty. It was not Professor X’s wishes to have them do battle. But fate has a way of doing what it chooses. Together they would live at the x-mansion and be trained and taught by Professor X. They would go through many battles from Demon Bears bent on killing Psyche, to Viper with her partner Silver Samurai to there rival teen mutant team the Hellions and even to seemingly other worldly places like the hidden land of Nova Roma. While in Nova Roma, it would be where they would first encounter the vampiric, immortal, sorceress Selene (later the Black Queen of the Hellfire Club’s Inner Circle) who was attempting to drain the life of one of the of the Nova Romans by the name of Amara Juliana Olivians Aquilla (Magma). Through a random string of event the New Mutants would end up saving the life of Amara but defeating Selene. The New Mutants would find out that Amara, too, was a mutant as they were. She would be the first to be recruited in the group of New Mutants besides the charter members. Though they would gain a powerful new teammate they would also gain a new villain that would seek revenge on the New Mutants for their meddling. Once Magma was saved she would leave her home and move to the Xavier Institute and become a full-time member of the New Mutants.

    The Hellions

    \"The
    The Hellions

    Amidst the training, gelling and strengthening of their team another team was being created by the sinister organization known as the Hellfire Club. This would be created specifically to do battle with the New Mutants. They were called the Hellions. As the New Mutants were to be X-Men in training, the Hellions were to be future members of the Hellfire Club. While some, Wolfsbane and Catseye (New Mutants and Hellions respectfully), would kind kindred spirits in each other. A larger majority would find rivals, life long enemies and in some cases future lovers. The Hellions would do battle with the New Mutants numerous times in there time as teams.

    More Members Come & Go

    \"No

    Shortly after Magma joins the team, the New Mutants would have yet another recruit found in the younger sister of X-Men member Colossus by the name of Illyana Rasputin ( Magik). With her mutant teleporting powers and the fact that she is the ruler and Sorceress Supreme of the dark dimension known as Limbo, she would lead the New Mutants into many new, different and darker missions. Many the likes of which the New Mutants had never seen and likely wish they never would have seen. Rounding off the team were the additions of the mutant mental linguist Douglas Ramsey (Cypher) and the Techno-Organic alien Warlock. After this time, the X-men returned home and the New Mutants could relax a bit more and take a break after so many months of intense battles. During this more relaxing time the New Mutants met with the son of Charles Xavier, David Haller, or Legion. A powerful mutant , but also a schizophrenic with witch the New Mutants had their hands full. Not soon after Professor Xavier had to leave the earth, he was injured badly and was taken into outer space for healing by his soul-mate Lilandra. Not wishing to leave the New Mutants without anyone to care for them, Xavier would turn to his long time friend and sometimes enemy Magneto to fill in for him.

    Thus, it came to pass that Magneto became Headmaster of the Xavier Institute and caretaker of the New Mutants. This decision didn’t sit well with anyone. Due to this past misdeeds and violent history with the X-Men the New Mutants as a whole initially didn't trust him. Slowly he did prove himself to some of the kids but it was clear the New Mutants wouldn't do Magneto's bidding without thinking it over for at least a second time. Not soon after this the New Mutants encountered the Beyonder, a being powerful enough to lay waste to the whole universe. The mutants tried stopping him, but this resulted into the seeming deaths of all the team-members. However, the Beyonder soon thought it to be foolish and brought them back to live. Though alive, it left the New Mutants traumatized and Magneto questioning himself whether or not he was the right person to teach the young mutants. During their time with Magneto the team would see their long time teammate Magma leave their team and join their rivals the Hellions.

    Fall of the Mutants

    At a certain point the New Mutants would encounter an Ani-Mate mutant known by the name of Bird Brain. Ani-Mates where genetically engineered animals giving human abilities by their creator the Ani-Mator. The New Mutants befriended Bird-Brain and even have him join the team for a short while. While assisting their new member on his home-island (witch was actually a prison for all the mutated animals) the New Mutants got into a heated battle with the Ani-Mator which ended with the death of one of the New Mutants. During the battle Ani-Mator was going to shoot Wolfsbane but Cypher jumped in front of her, trying to rescue her but getting hit by the bullets himself as a result.

    \"Cypher\"
    Cypher

    Doug died a few minutes later. Filled with rage over the death of Cypher, Magik teleported the Ani-mator and his soldiers to Limbo. Letting her demons do to them whatever they wanted. After the battle Bird Brain made clear he wanted to stay with his other mutate friends on their home-island, witch was no longer a prison to them. So the team lost another member of themselves at the same day. Reeling from the death of their friend and teammate and lose of Magma and Bird-Brain, the New Mutants would follow up by denouncing Magneto’s position and his control over them. This was mainly because the New Mutants had found out that Magneto was not only working on the side of Xavier now, but he was also a member of the Hellfire Club’s Inner Circle as their White King. An organization bend on world-domination through political and financial means, as well as one of the X-Men's most feared enemy's. Although Magneto only did this to help the New Mutants, having more power

    meant to protect the mutants, the New Mutant's didn't (want to) understand his point of view. The revealing of this information would only create more animosity on the side of the New Mutants against their new Headmaster. The New Mutants would later be joined by the beautiful alien known by the name of Gosamyr. As quickly as she joined the team, she would depart. The events that followed would put the New Mutants through a tailspin that would be an impossible job of recovery.

    Inferno

    \"Dark
    Dark Child

    The New Mutants would next go through the events better known as Inferno and before that day would end they would lose yet another teammate; this time it was Illyana Rasputin (Magik). The Inferno was a demon invasion over New York City, the result of a trick played by Magik's second in Limbo; S'ym. Magik was the only person with enough power to close the demon gate from Limbo to Earth that made the invasion possible. But she could only achieve this by letting her darker side take full control over her. After the gate was closed the seemingly lifeless form of the Dark Child (as she was known by then) lay before her brothers feed. But nothing was further from the truth. Illyana was found inside the hull of the Dark Child. She was reduced to her child-hood and was 7 years old again. The same age she had when she was first kidnapped into Limbo all those many years ago. This was probably the result of a time-travel warp the New Mutants took during the Inferno in which the New Mutants saved the 7 year old Illyana right after she was taken to Limbo for the first time. Back to her child-state, Illyana was too young to have her mutant powers yet and lost every memory (or the ability to speak English) she had since she joined the New Mutants.

    After Inferno the New Mutants and Illyana returned to the Xavier Institute, but where horrified when they saw it laying in ruins (The mansion was destroyed by Mr. Sinister during the Inferno crossover). In the ruins of their mansion they met their headmaster Magneto, alongside his new companions of the Hellfire Club. While Magneto tried to calm the kids down, they where furious with him for his absence during the Inferno and his collaborating with enemies of the X-men. They even attempted to battle him at the ruins of the school but fail short of their goal as they would be overpowered by his magnetic might. Beaten, the New Mutants went their own way, clearly letting Magneto know that they didn't want anything to do with him anymore. After this the New Mutants went to Russia to bring Illyana back to her parents, since it was too dangerous for a 7 year old child to stay with them. There they said goodbye to a good friend.

    Enter the X-Terminators

    \"X-Terminators\"
    X-Terminators

    Amidst the constant fighting that that the New Mutants were involved in during the Inferno, luck would soon fall upon them. They would find allies, in yet another group of mutant youths using the name the X-Terminators. When the dust settled and the Inferno was over the X-Terminators would disband and nearly all of their members would join the New Mutants including: Julio Rictor (Rictor), Rusty Collins (Firefists), Tabitha Smith (Boom Boom) & Sally Blevins (Skids). Though these four were granted membership into the New Mutants, they were never actual students at the Xavier Institute and were never taught under Professor X or his X-Men.

    The New Mutants No more

    \"Cable
    Cable and the New Mutants

    Numerous events would follow in witch many of the core members of the team would leave. Mirage's powers became greater and greater, and during an adventure in Asgard, she chose to stay there, serving as a Valkyrie for the Norse Gods (including Thor). But the arrival of the future warrior known as Cable would change the New Mutants the most. Aimless without a leader the New Mutants would encounter Cable and quickly take him on as a mentor. As a warrior who had seen the dark future ahead, Cable told the New Mutants the only way to stop that future from happening was to transform their team into a 'strike-force' and take the initiative themselves. During the transformation of the team another casualty arose. Long time team-member Warlock seemingly died during the events of the X-Tinction Agenda. Wolfsbane was also harmed in a bad way; seeing Warlock die in front of her and being turned into a Genoshian slave made her stay in Genosha with teammate Rictor and X-man Havok. She soon became part of the second incarnation of X-factor. During this time the only original members of the New Mutants who remained where Cannonball and Sunspot. Although the latter would return home after he heard his father died of a seeming heart-attack. Because Skids, Rusty and Rictor had also gone away that only left Cannonball and one of the newer recruits Boom-Boom part of the team. Soon though they would be joined by new and more aggressive mutants giving the team a more savage attitude then ever before. These new members would be:

    Domino (Neena Thurman)

    \"Domino\"
    Domino

    Long time friend and sometimes lover of Cable. Able to have events and occurrences fall in place for her all the time. Domino joined the New Mutants when she heard Cable was leading them, whom she hadn't seen in years. It would later be revealed later that the Domino who joined the team was actually a double agent with morphing abilities named Copycat. The real Domino was captured while Copycat infiltrated the New Mutants. Copycat stayed with the team and even fought the good fight with them until the truth about her came out and the real Domino was freed from her captors. She then left, and the real Domino took in her place with the team, that by then would be known as X-force.

    Shatterstar (Benjamin Russell)

    \"Shatterstar\"
    Shatterstar

    A refugee from the world known as Mojo-World, Shatterstar left his home-dimension after hearing rumors about a legendary fighter and strategist who was on earth to prevent an apocalyptic future, namely Cable. He and the New Mutants first met Shatterstar when he teleported into their training room, the Danger Room (Although the X-mansion had been destroyed during the Inferno, the lower levels, including the Danger Room, remained intact). Shatterstar started fighting the automatic training-programs until he was stopped by Cable. After that he swore allegiance to Cable and his new team, thus becoming one of the last members of the New Mutants before they became X-force.

    Feral (Maria Callasantos)

    \"Feral\"
    Feral

    Their is not much known about the mutant named Feral. She is a Morlock who escaped the massacre that the Marauders inflicted upon her community. Feral came to the New Mutants much by accident, helping defeat a common foe. For most of her time on the team, she would remain a mystery to her other team members. They would often see her as more of a lose cannon then a trusted ally. She would come and go whenever she liked and she did not only cut enemies with her razor sharp claws, but also her teammates when something happened that she didn't like or approved of, thus honoring her code-name; Feral.

    Warpath (James Proudstar)

    \"Warpath\"
    Warpath

    A mutant with a long history with the New Mutants. James was once a member of the Hellions, the great rivals of the New Mutants. After James left the Hellions, he returned to the reservoir where his friends and family lived. Coming there, the place was burned to the ground, and his family was missing. The only evidence left was a mask of a soldier of the Hellfire Club, the same organization that started the Hellions team. Filled with grief and wanting revenge on the people who hurt his family, James took on the name of Warpath and joined the New Mutants, just before it became X-force.

    With the new members and a new mentor in Cable, the New Mutants would take on a radical change in philosophy and tactics. No more would they take the passive approach of Professor X. They would be more army like becoming soldiers, willing to do battle for what they believed in. As a result, the New Mutants would be no more. Under Cable's lead the team would segue from that of the New Mutants and officially change their name to the X-Force.

    New Mutants: Truth or Dare

    This would be one of the few and only reunions of the original New Mutants. This story follows the current versions of the New Mutants, grown up, meeting their younger counterparts in the present. They would be brought to the future by Magik on a dare. The chance meeting of the New Mutant teams would finally explain how Illyana contracted the mutant killing Legacy Virus, which would eventually kill her, at the hands of her oldest brother Mikhail Rasputin.

    The New Mutants Squad

    \"No

    More than 10 years after the original New Mutants had both come and gone, Professor Xavier made the decision to go public with his school (in reality this was Cassandra Nova, but Charles decided to keep the school running for the new generations of mutants). This resulted in a huge increase in the number of students who enrolled and attended the Xavier Institute. He had the current X-Men become teachers/staff and invited several of his former pupils and X-Men (including the ex-New Mutants) to return to the school as teachers and advisers to the hundreds of additional students.

    The legacy of the New Mutants, would be reborn with some of the original members returning to become advisers for the students at Xavier's Institute including Moonstar, Wolfsbane, Karma and (later) Magma. Due to massive amount of students enrolled at the academy, the squad system was put in place. This broke down the students into teams (average size was six members, but could be greater or fewer) with an adviser to tailor their teaching and training styles specific to the squad. Each squad had their own student-leader in addition to adviser and they each had their own costumes and color schemes. The teams regularly competed and trained in a variety of methods.

    Just as there was a team called the New Mutants many years in the past, so too would there be one now. The New Mutants Squad consisted of Elixir (Josh Foley), Prodigy (David Alleyne), Surge (Noriko Ashida), Wallflower (Laurie Collins), Wind Dancer (Sofia Mantega), and Wither (Kevin Ford). The New Mutants squad would later be joined by Cannonball's younger brother Icarus (Joshua \"Jay\" Guthrie) after Wither and he decided to exchange squads. The squad adviser would be none other than New Mutants alumna and charter member Danielle Moonstar.

    M-Day

    \"After
    After M-Day

    This squad would eventually disband around the time of House of M and some of its members would move on and became members of the New X-Men (A junior up and coming team of X-Men). Though after M-Day, many New Mutants were de-powered such as Prodigy and Wind Dancer. Then tragedy would occur when the, mutant hating, Purifiers launched a rocket at a bus full of de-powered mutants that were leaving the school under the cover of night. All that were aboard the bus were killed devastating those who looked on helpless to stop it. Still reeling, only days later, more deaths would follow seeing Wallflower and Icarus, both previously of the New Mutants squad, meet their untimely deaths as well, at the hand of the Purifiers. This hurt all at the mansion, but it especially hurt there former teammates, who knew them the most.

    The Return of the original New Mutants

    Years after the team have disbanded, the original New Mutants all found themselves back at the X-men island home of Utopia. Bonded together after the events of X-Infernus and the return of the long diseased teammate Magic, Cannonball asked Cyclops if he could make his own team within the X-men to take on different threats around the world. With Cyclops' approval, Cannonball brought together his old team members; Moonstar, Magma, Karma, Sunspot and Magic. The team's first mission was to investigate the strange disappearance of a young mutant girl. Eventually this resulted in the discovery that the mutant son of Charles Xavier, Legion, was alive and well. The mutants just barley defeated his evil persona, and brought him back to Utopia after the fight was done and the girl was rescued.

    Necrosha

    Not soon after this, the techno-organic Warlock, old team-member of the New Mutants, returned from outer space, to see his old friends again. He first went to the X-mansion, but when he saw it laying in waste (after the events of the Messiah Complex) Warlock started searching for the mutants. He found them at the island of Utopia, just before disaster would strike with Necrosha.

    \"Cypher
    Cypher attacking Magma

    A long time adversary of the X-men and the New Mutants named Selene had brought back a large number of diseased mutants, including Doug Ramsey, long dead friend of the New Mutants. She used these dead mutants as slaves to fight against the X-men on their island. When Warlock first encountered Doug, he was ecstatic, but soon he was drained of all his energy by Doug, nearly killing Warlock in the process. The 'zombie' Doug sought and found the New Mutants, first almost beating Magma to death and then leading other dead mutants, including the dead advisories of the New Mutants, the Hellions into the headquarters of the X-men.

    A large fight erupted. Thankfully a new X-force team managed to defeat Selene and putting all the dead mutants to their rest. Strangely, this did not happened to Doug, probably because Warlock was able to break the virus code through witch Doug was made a zombie to serve Selene. All his friends gathered around him, and Doug told them that 'they' were his language. After these events all the original New Mutants where back together again, except for Rahne. She stayed with X-force and later went back to the new X-factor agency.

    Second Coming

    \"New
    New Mutants in Second Coming

    During the crossover of Second Coming, Sam and his team are sent to fight against The Right and Cameron Hodge. During this Xi'an gets injured, resulting in her leg being amputated. Warlock also had to look past his vow of not killing another human life in order to save the New Mutants. Doug also found information on Bastion's towers. On another mission Illyana was sent to the X-Men, during this mission Illyana is sent to Limbo, but is saved in the Hellbound tie-in by a team lead by Sam, which featured no other New mutants. Later, after Hope is rescued (for the time being) Dani and Hope get in a fight after Dani confronts Cable about putting every other mutant in danger by bringing her here.

    Later X-Force recruits Doug to go into the future and destroy the mastermind. Doug melds with the mastermind system and overtakes it. As a result all the Nimrods are deactivated. Those not injured also took part in the war against the Nimrod army in the area under the red dome.

    Fall of the New Mutants

    After the events of Second Coming, Sam and Scott both agreed that it would be best for him and the New Mutants to take a break from everything that has happened and take a vacation for a break. The team head to a ranch while the new antagonist of the series, General Ulysses moves his forces out. Sam stresses the importance of talking about their feelings about what happened with very little response until he mentions he brought lots of beer, which prompts Dani to ask the others to hear him out. At this point, Cypher mentions that Warlock does not like watching them eat because of what happened against Hodge. Roberto and Amara further hinting to a relationship, and finally one of Sam and Dani kissing with no explanation as to how they got to that point. Illyana then feels something happening in the distance. General Ulysses soldiers then reach their destination and attack their target, which is revealed to be Pixie, whom they defeat, tie up, and then steal her soul dagger.

    Soon after, Illyana transports Warlock to the X-Men to tell them what is happening as he once caused problems there. She then teleports the team to Limbo against Sam's wishes. She speaks to her minions who have captured Witchfire. Witchfire tells them where the men who stole the bloodstone amulet went. They travel far in Limbo over a long period of time and arrive in the military base through a portal. Meanwhile Pixie tries to escape and uses her pixie dust to make the soldiers hallucinate. They plan to use her soul dagger to pull the rest of her soul out of her body. Illyana confronts the military men but is taken down by one of the Inferno babies, who then prepare to attack the rest of the New Mutants. One of the children blows off his face while fighting the demons and has it replaced with a way to focus the blasts that come from his face when he uses his powers. The kids blame the New Mutants for being handed over to the government, which causes them to realize that they are the Inferno children. The children then say that once they are done with Illyana, they will kill her. The New Mutants attack the Inferno children and are all defeated one at a time.

    Shan makes contact with Face, the mutant without a face. Sam is then tied up surrounded by dynamite, while Dani is being tortured in a room close by. The mutant guarding Sam can taste emotions, and Sam's worry for Dani tastes delicious. Pixie's soul is ripped out of her body using Illyana's Soulsword and Pixie's Souldagger. Ulysses plans to use the bloodstone amulet to strike fear in the demons of Limbo. Illyana is thrown into a room with Amara and Roberto. He then asks if Amara will die, and Illyana tells him that she will and that she does not love him as Roberto loves her. Sam continues to worry about Dani, who helps him by saying he is an excellent kisser, taking away the feelings that his captor was enjoying. With the new bloodstone, Ulysses and his men move out to go back to Limbo. It is then revealed that they are planning to sacrifice the New Mutants to the Elder Gods. Shan is being prepared to be moved, but some of the Inferno children decide to amputate her bionic leg. She talks to Face again and shows him what became of his face. This upsets him so much he blasts all the others around. All the others have left, leaving only Face, Shan and Illyana behind. Illyana then reveals she only came back to save Shan, not the others.

    Rise of the New Mutants

    Emma Frost uses Cerebro to try to locate the missing New Mutants. She is unable to do so, but Pixie, Illyana, and Shan teleport into Cerebra and explain that the others have been taken to Limbo. Dani and the rest of the team remain trapped by the Inferno babies, while the soldiers of Project Purgatory prepare to use the bloodstone amulet to destroy Limbo. The X-Men gather and prepare to move out while Shan talks to Illyana.

    \"New
    New Mutants # 20

    Shan deduces that Illyana is not bringing the X-Men on a rescue mission to Limbo. Illyana then proceeds to use her Soulsword on Shan and leaves her behind as the others prepare to leave for Limbo.

    Demons gather at the Project Purgatory base, and a trio of leaders tries to negotiate with the soldiers. They are killed, and the demon army attacks. A group of demons attack Dani in her prison and accidentally release her. She then proceeds to fight back using a small knife she was known to carry in the original run of New Mutants.

    Dani's jailer kills the remaining demons and comes looking for her. Dani then proceeds to shot her with an arrow from a bow she stole from one of the demons. Due to her broken arm, she uses her foot to hold the bow. One of the Inferno babies, Toko, is sent into the army of demons holding the amulet and the final bloodstone. She places the final stone into the amulet. Illyana then arrives at the earth base of Project Purgatory. It is then she realizes the Elder Gods have been released and they proceed to punch through the Limbo portal to get at her. Meanwhile back on Utopia, Shan enters Legion's mind. Legion is scared and tells Shan not to go in there. Shan tells Legion to stand back and draws the Soulsword from inside her. Shan opens a door marked Do Not Enter onto Legion's mindscape seen in the early issues of volume 3. It is then revealed that the Legion that has been in charge is not the real Legion, but another personality. The real Legion is locked up with what seems to be the rotting corpse of Bishop. He then says that Illyana told him previously that Shan would be back for the real Legion.

    Back in Limbo, Dani frees Sam, Amara, and Roberto from their prison. Sam prepares to go find the amulet to try to avoid the Elder Gods being released, unaware that it already happened. He gets incredibly angry and flies off to get vengeance. Amara and Roberto see Illyana on a dragon fighting demons. This is the Illyana that teleported in at the start of the series. Amara prepares to run and tell her what went wrong and what needs to be done to make it right. Roberto stops her, and she tries to trick him into letting her go off and hide alone; as a result of this she would die. Amara knows he is right but knows she needs to do it. Roberto then says he is going with her so she does not die alone. General Ulysses realizes the Elder Gods are attacking Earth and tries to command them to turn back. He is then killed by an Elder God, and the amulet is taken. Cyclops asks Illyana how to defeat the Elder Gods, but she simply states defeating the Elder Gods is beyond them.

    Elsewhere, Roberto is preparing to make a path for Amara to get to the former Illyana to try to fix things. He powers up and runs into the fray, knowing it will be the death of him. As he falls he says goodbye to Amara and says that he loves her. This results in Magik feeling uncharacteristically sentimental at a time when she is focused on the Elder Gods. The feeling causes her to she transport the X-crew to the point where Roberto is about to be killed enabling Colossus to rescue him. Some of the Inferno babies attempt to escape on an underground train. Sam flies straight through the train car, effectively killing everyone on board.

    Dani finds Cypher with the girl who took control of him. Earlier having been playing a strange instrument, it is revealed the machine plays magic. As a result, Doug was able to play a spell to free him from the girls' power and to remove her mouth, effectively killing her powers. Roberto then sacrifices himself to help Amara, being overcome by many demons. At this time, he also tells her that he loves her and goodbye. Illyana is talking to Cyclops when the real Legion appears in Limbo. Inside his head the good Legion, Shan, and Marci are protecting themselves from the chaos of Legion's mind, where Shan tells Marci not to worry because Illyana knows what she is doing. Legion then destroys the Elder Gods and the amulet, giving Illyana back the bloodstones.

    \"New
    New Mutants # 21

    He then returns everything in Limbo to as it was before the Elder Gods were released. Back on Utopia it is revealed that Roberto is still alive as are Amara, Warlock, and Doug. Elsewhere, Dani questions Sam about if he caught up to the babies. When he remains silent, she asks him what he did. He stays silent and walks away, leaving Dani distraught.

    Illyana returns Pixie's soul dagger and soul gems to her. Pixie then asks if Illyana got hers back and if it means Illyana is a real girl again. Illyana cryptically says she hopes to act like it does, if nothing else. Shan then talks to Illyana about how Legion got back to Earth. All Illyana does is give her a knowing look. Shan also asks if Illyana let the Elder Gods be released in order to get her vengeance. When Illyana says yes, Shan tells her she has to tell the others. Finally Shan asks what she gave Legion in return for helping her, to which Illyana replied, \"Everyone wants to come home, Shan. Even the worst of us.\" Illyana goes to her brother and tells him she is as she once was, whole and his little snowflake once more. Shadow is thrown on this statement by the look on Illyana's face as she hugs her brother.

    Unfinished Business

    After Age of X Cyclops names Moonstar as the new leader of the New Mutants - now consisting of just Moonstar, Sunspot, Magma, Cypher, and Warlock - and charges the team with the new mission of tying up the X-Men's loose ends. Their first assignment: To find and bring home X-Man, Cyclops' son from an alternate reality who was last seen during Dark Reign.

    The group begins their search in an abandoned H.A.M.M.E.R. Facility that's being excavated by Captain Steve Rogers and Victoria Hand. Rogers convinced Moonstar that the Avengers have already searched the facility, and there is no one here. However, as the Mutants leave, Cypher claims that there is in fact someone here, but he does not want to be found; reality is being warped in the facility. The Mutants manage to work past the warp, and find the Sugar Man and his mutates holding X-Man hostage. Sugar Man has been holding X-Man in the Omega Machine, a device that Norman Osborn built to open portals to other realities, hoping that X-Man will open a portal to Sugar Man's home reality. Moonstar, Sunspot, and Magma battle Sugar Man and his lackeys, while Cypher and Warlock try to release X-Man from the Omega Machine. Eventually, X-Man uses all of his will and power to open a portal to Sugar Man's home reality, hoping that Sugar Man will now leave him alone. Sugar Man attempts to escape through the portal, but he is stopped and defeated by the New Mutants. He is taken into custody from Steve Rogers, his lackeys are moved to get their artificial powers removed, and X-Man is taken to Utopia. There, it is revealed after using his abilities to open the portal to Sugar Man's reality, X-Man's powers were mostly burnt out, and he now only has telekinesis. Cyclops welcomes X-Man to Utopia, hoping he will make it his new home.

    Moonstar calls in her old friend Gus Grim a Cognitive Therapist from Colorado. Grim is known for his work in the Cheyenne communities, to help her \"damaged\" teammates. She first brings him to see Nate Grey, but Grim never talks to Grey, and instead recommends that Moonstar let him battle something \"real\" in the Danger Room so Grey can push himself. Grim then talks to Cannonball, who has put himself under psychiatric observation in a secure ward. Grim believes that Cannonball took himself out of a leadership position because he was too afraid of failing, and that he is still capable of leading if he was simply willing to put aside those feelings. He then goes to see Karma, who has stayed out of the field to be with Face, a sense deprived mutant whom she shares a psychic bond with. Grim tells Karma that there are any number of telepaths or empaths who could engage with Face, and the fact that she wants to do it alone is selfish of her. Lastly, Grim is taken to see Illyana, who is imprisoned because of her reckless actions in Purgatory. Before they can talk, however, Grim collapses as three demons from Purgatory burst from his body to rescue Illyana; Illyana has no intentions of leaving, however, as she wants to stay to regain her life and the trust of her friends. The demons are then killed by Danger using a protocol designed by Doctor Strange for just such an occasion. Grim recovers from this ordeal, and Illyana explains that the demons used his body as a Trogan Horse to get into Utopia to rescue her.

    As Grim gets ready to leave Utopia, Dani fears that his experiences have put him off from doing regular sessions with her teammates, but Grim is surprised that Dani would even want him to do more sessions after how hard he went into her teammates. Dani explains that what Gus was doing is exactly what her teammates need; they're X-Men, and the life of an X-Man is too quick to spend time sitting around moping. Grim agrees to do weekly sessions, and he leaves Utopia. In the Danger Room, Nate has turned off the safety protocols, and he is quickly getting overwhelmed. Thankfully, he is saved by Hope who up to this point had refused to even meet X-Man due to his connection with Cable. She offers to teach Nate some non-power based combat techniques that Cable taught her, and Nate agrees as the two begin training.

    X-Men: Regenesis

    \"No

    During the Regenesis event, the New Mutants, with the exception of Cannonball and Karma, choose to join Cyclops' side, but rather than remain on Utopia, they establish a new base at the 1128 Mission Street in San Francisco in order to better integrate themself with the rest of humanity . With the departure of Cannonball and Karma to New York and Magik's assignment to Cyclops' Extinction Team, the team added Nate Grey to the roster, all under the leadership of Dani Moonstar.

    The new teams consists of Moonstar, Nate Grey, Magma, Cypher, Warlock and Sunspot. In addition to the team the reoccurring character Blink makes quite an appearance throughout the series. After being resurrected by Selene Blink has been a rogue mutant. Although not hurting anyone she has been leaving teleportation whole around the world and the New Mutants are assigned to see what is causing this effect. The New Mutants team up with Blink and they stop the destruction. Unfortunately Blink choose to attend Wolverine's Jean Grey School for Higher Learning after giving the choice to join the New Mutants or them. However she still makes an appearance throughout the series as she relates well with the New Mutants.

    Alternate Realities

    Earth-811 (Days of Future Past)

    In this despotic future time line, overrun by mutant killing Sentinels, the New Mutants still thrive and is still a team composed to mutant youths learning the proper use of their powers. Led by an older, war-torn Banshee, now wearing a patch and cybernetic limbs replacing ones lost. The New Mutants of this reality had a rough existence, never knowing when another Sentinel attack was going to happen. This New Mutants team consisted of:

    Franklin Richards (Scrape): the son of the Fantastic Fours Sue and Reed Richards. He was the field team leader.

    Rachel Summers: the telekinetic daughter of Jean Grey and Cyclops and girlfriend/future wife of Franklin.

    Douglas Ramsey (Magus): the only member to stay on the team from the original New Mutants but very different from who he used to be. Due to his connection to Warlock he could get and be consumed by the Techno-Organic Virus. Being that he took that name \"Magus\" it can be assumed that he killed Warlock as well.

    Blue: the daughter of Nightcrawler and Amanda Sefton.

    Blaze & another unnamed member: no information was revealed of their lineage.

    Though their fate as a team was unrevealed, it can be assumed that the New Mutants of this time line ended tragically as Franklin and Rachel are two of the last living mutants in America and in a mutant concentration camp and Banshee's gravestone are shown in front of the camp indicating his death at the hands of the Sentinels. It’s likely that the other members too met the deaths in this apocalyptic future but nothing is certain.

    A divergent reality similar to the Days of Future Past.

    New Mutants #49-50

    Most of the X-Men, if not all, and the New Mutants were killed by Sentinels in their initial attack. The New Mutants are now a trio consisting of three individuals: a now aged Cannonball, his lover Lila Cheney and a very embittered and war torn Danielle Moonstar. They devised a plan to gather the remaining mutants together and use Lila's intergalactic teleportation powers to safely leave Earth and head to another planet. It appears that they are successful in their attempts as they are shown teleporting away in one of the final panels.

    Earth-1081

    Homeworld of Morph, previously a member of the Exiles.

    The New Mutants of this reality were/are very similar to the mainstream counterpart of Earth #616 with an exception to the members of the team. The team consisted of Cannonball, Sunspot, Moonstar, Wolfsbane and Morph.

    Earth-1610 (Ultimate Universe)

    \"Academy
    Academy of Tomorrow

    Emma Frost, once a student of Charles Xavier but now disagreeing with his tactics, left to follow a dream of her own. She decided to create her own team of young mutants to train and pursued her own beliefs. Initially she was going to form a group with the assistance of the United States government and the president. Once created she would dub the group the New Mutants. She wished to create a group of mutants that had no ties to Charles Xavier’s vigilante police force that he created. She gathered a number of mutants together including:

    Havok (Field Leader), Cannonball, Cypher (the only non-mutant on the team), Northstar, Polaris, Sunspot, Angel.

    Beast (Deceased), Dazzler (Deceased), Karma.

    In their first public appearance her team was attacked by Sentinels and would be saved by the X-Men whose tactics that she despised. Due to the attack she would severe ties with the government and renamed them the Academy of Tomorrow.

    Earth-? (Geshem)

    Here the New Mutants are represented as non-mutants living in a time very similar to the Dark Ages. Here, Rahne (Wolfsbane) is Princess Rain of Gesham. Members of her Royal household include: Tabby (Boom-Boom) her lady-in-waiting, her Prince consort Douglas Ramsey (Cypher) and her knights: Robert (Sunspot), Samuel (Cannonball) and Richard (Rictor).

    None of the New Mutants in this reality have the powers of their original counterparts except for Rahne's knights Robert, Samuel and Richard. Though they are not mutants, they are granted their powers through the use of magical items.

    Earth-904

    What If the X-Men Stayed in Asgard?

    An offer is made to the X-Men and New Mutants giving them the choice of whether to stay or leave Asgard. Though only a few X-Men accept and stay, all but three of the New Mutants remain in Asgard effectively putting an end to the group as a whole. Karma, Magma and Warlock would choose to leave returning to Earth and become fully fledged X-Men. Those that remain in Asgard dramatically change history there and most take on important roles while there.

    Cannonball marries Eitri daughter of the dwarf king and soon becomes the Dwarf King when the, then, current king was killed in battle.

    Danielle Moonstar battles and defeats Hela the Goddess of Death and takes her role and place becoming the new Goddess of Death, ruling over her domain of Hel.

    Magik battles, easily defeats and replaces Enchantress and taking her name as well. She, too, becomes the liaison between Asgard and Hel as she is friends with Moonstar and does not fear her as others do.

    Wolfsbane becomes the Queen of Wolves and has three cubs/kids continuing the royal line.

    Sunspot is a warrior and dies in the final battle defending Storm by taking an energy blast meant for her. Once hit he was completely disintegrated.

    Cypher becomes a scholar and translator of ancient texts of Asgard. Later he is appointed as Vizier to Storm when she becomes ruler of Asgard.

    Other Media

    Animation

    \"X-Men
    X-Men Evolution

    X-Men: Evolution

    In the second season of the animated cartoon X-Men: Evolution, Professor X recruits a handful of new students at his Institute. Cannonball, Wolfsbane, Magma, Sunspot, Iceman, Jubilee, Berserker and Multiple Man are the new under class at Xavier's Institute and are called the New Mutants. Boom-Boom also became a member but became cold in the team as she was persuaded by her father to commit crime. She then temporarily became one of the Brotherhood. They undergo trainings together with the X-Men. At first, these New Mutants are not interested in schooling as they do not follow Jean Grey and Scott Summers' orders. For them to realize how important studying is for an X-Man, Jean levitated all of them with her telekinesis. Scott then used his optic blast to reflect through the walls and amaze the students as he sliced an apple with his optic blast. They also have messed with the Blackbird for having a joyride when they used it for fun. They drove the Blackbird recklessly putting them into danger. Following some events, Kitty Pryde and Kurt Wagner have decided to have a party in the Institute as they invite their friends from Bayville. When the X-Men discovered about this, they got scolded. After the people found out about the mutants, Wolfsbane and Jubilee left the Institute. Cannonball became closer to Wolverine as he races with him with their motorcycles. Some boys also opens up to Wolverine about them disliking their studies especially of Physics.During an encounter with a mutant who was named Dani Moonstar, she projected herself into Kitty's mind with a ghost shaft. In Kitty's imaginings, Dani became a member of the New Mutants. Dani have complications in controlling her powers at first and caused trouble to the minds of their teachers. However, it was revealed that Dani is unconscious while projecting herself to Kitty after the X-men and the New Mutants have saved her. She was then picked up by her grandfather Black Eagle. During the final battle against Apocalypse, Magneto, Mystique, Storm and Professor X were converted into Apocalypse's horseman. Each of the New Mutants were given different missions in different base of operations. Wolfsbane and Sunspot were along other mutants in Mexico to fight Magneto. Though, the united forces of the mutants have not succeeded against him. Wolfsbane, Sunspot and other mutants were seen unconscious after their fight and only Wanda, Kitty and the Brotherhood were left to fight him. Multiple Man and Magma were sent to Egypt to help Jean's team defeat Professor X. Using her powers, Amara created a fissure with magma inside it and Multiple Man duplicated himself into lots of duplicates while firing Xavier, however, most of his duplicates were defeated. Boom-Boom then created gigantic explosives for Colossus to throw on Xavier. Iceman and Berserker along with Spyke and Beast went to China to face Storm. Storm attacked them and Iceman created an ice cave to shield them. Berserker was then able to knock Storm out. But using her powers to make it rain, Berserker have electrified himself and went unconscious. Cannonball then accompanied Rogue to fetch Leech and borrow his powers to turn Apocalypse's machine off. He carried Rogue and fled inside the pyramid. Following the defeat of the aforementioned villain, anything was back to normal. In Professor X's vision about the X-Men, Jubilee have returned in the Institute and the New Mutants continued studying at Xavier's.

    Movies

    The New Mutants (2018)

    \"No

    In May of 2015 it was announced that director Josh Boone was set to direct a live action adaption of the New Mutants, being based on the classic stories by Chris Claremont. Thecast announced includes Mirage, Sunspot, Wolfsbane, Cannonball, and Magik. The film is set to be a horror film, with producers comparing it too such films as The Shining, A Nightmare on Elm Street, and Breakfast Club. The trailer to the movie was originally released on October Friday the 13th 2017 and the film is scheduled for a April 13th release date. Fox is currently planning a trilogy of New Mutants movies, with the sequel planning to introduce Karma and Warlock.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-21793/","id":21793,"name":"The New Mutants: Renewal","issue_number":"4"},"id":15971,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11112/111123579/7432565-new_mutants_vol_4_1_textless.jpg","image_tags":"All Images"},"name":"New Mutants","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/new-mutants/4060-15971/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-15972/","count_of_isssue_appearances":0,"count_of_team_members":14,"date_added":"2008-06-06 11:27:47","date_last_updated":"2021-01-13 09:06:15","deck":"The Thundercats are a group of anthropomorphic felines who fight with The Mutants in the fictional Third Earth world. They are led by Lion-O. Recently they have had books published under Wildstorm.","description":"

    Origin

    The Thundercats storyline begins with the planet of Thundera. Thundera has inhabitants called the Thundercats who are cat-humanoids. Thundera is ruled by the Lord of the Thundercats, Claudus. As the story opens Thundera is under siege by a race of beings called The Mutants. The Mutants are comprised of a lizard/snake humanoid, an ape humanoid, and a jackal humanoid. Somehow the Mutants are going to blow up Thundera, and the nobles of this world are fleeing in a spaceship. These nobles become the main characters in this series. The Thundercat adults are comprised of Jaga, Tygra, Cheetara, and Panthro. They also brought two children, Wilykit and Wilykat. Finally, the next in line for the Lord of the Thundercats position, a small cub name Lion-o with his chamberlain Snarf. Snarf is a catlike creature whose tail can be used as an extra appendage to balance or grab things with. The nobles enter stasis pods on the ship to allow them to travel without aging while Jaga agrees to fly the ship.

    This ship is being followed by a ship of Mutants and crashes on the planet of Third Earth. All the Thundercats survive except Jaga. He is killed in the crash. Upon coming out of the pods it is discovered that Lion-O’s stasis pods was not working. All of the Thundercats remained the same age during the flight while Lion-O aged to an adult. As an adult he is now the Lord of the Thundercats, and the group decides to remain on Third Earth and build a fortress, called Cat’s Lair.

    Lion-O carries the Eye of Thundera, the source of the Thundercats’ power. The Eye is embedded into the hilt of the Sword of Omens which is wielded and responds to the current Lord of the Thundercats. Lion-O also has a shield called the Thundercats Claw. The Sword of Omens and the Eye of Thundera cannot be used for evil or against the Thundercat.

    The Thundercats learn that Thundera was not fully destroyed and strive to return to search for survivors and the treasure of their people. Upon returning three more Thundercats are discovered. Pumyra, a medic and healer. Bengali, a martial arts specialist. Lynx-O, a blind wise-man. They also find a younger Snarf name Snarfer.

    Major villains

    Mumm-Ra:

    The Thundercats main villain is an evil being called Mumm-Ra. Mumm-Ra harnesses the power of the Ancient Spirits of Evil to transform him from a frail mummy to an all-powerful being. Mumm-Ra enlists the help of numerous other villains throughout his time battling the Thundercats. Mumm-Ra also employs magic bestowed by the Spirits to trick the Thundercats. Mumm-Ra’s main goal is to obtain The Sword of Omens and the Eye of Thundera embedded in its hilt. Mumm-Ra acquires a sidekick bulldog, Ma-Mutt. Mumm-Ra uses Ma-Mutt to spy and as the focus of many glamors to trick the Thundercats.

    Mutants of Plun-darr:

    The Mutants of Plun-Darr ( Slithe, Jackalman, Monkian) are another villain often harassing the Thundercats. Slithe, a lizard man, is the unofficial leader of this group. They are also joined by two other mutants named Vultureman and Ratar-O. Vultureman is the mechanic and engineer of the group. Ratar-O is a lesser seen member who has a space ship and more feared than the others. They land on Third Earth and create Castle Plun-Darr. From Castle Plun-Darr they employed different tactics to try to gain the Eye of Thundera and the Sword of Omens.

    Lunatacs:

    Later in the series, a group from the moon of Third Earth come to the planet and become a third faction against the Thundercats. This group is called the Lunatacs. The Luntacs is led by Luna. Other members include the following:

    • Tug Mug - Luna’s mount and brutish pet
    • Chilla - a wielder of cold
    • Alluro - a being with the ability to hypnotize with his rod
    • Red-Eye - who can shoot laser beams from his eyes

    Televison Series

    Thundercats (1985)

    \"Original
    Original Thundercats

    The original animated Thundercats series ran from 1985 to 1989 spanning 4 seasons and 125 episodes.

    Including classics like:

    Exodus, The Terror of Hammerhand, Return to Thundera, The Work Out and, The Book of Omens.

    Thundercats (2011)

    The Cartoon Network realeased an updated version of the Thundercats in 2011.

    \"Cartoon
    Cartoon Network

    This version takes place in a distant future on Earth-3 where the Thundercats rule and oppress other animals. Technology has been forgotten and is just mythology to the masses.

    Lion-o is a young unreliable prince with his head in the clouds, but is heir to rulership of the Thundercats.

    Tygra is Lion-o's brother and the favorite son. He and Lion-o are rivals often pushing each other and not seeing eye to eye.

    Panthro is one of greatest generals of The Thundercats, and has been gone for years searching for The Book of Omens.

    Jaga is the High Priest of The Thundercats, He is a mage of sorts and leads his priests in protection of city.

    Cheetara is one of Jagga's priests who befriends Lion-o after saving him from some thugs... twice.

    Wily Cat and Wily Kit are thieves in the slums with dreams of a far off land.

    Snarf is Lion-o's pet cat.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-57399/","id":57399,"name":"Survival Run","issue_number":"1"},"id":15972,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/123793-135823-brett-booth.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/123793-135823-brett-booth.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/123793-135823-brett-booth.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/123793-135823-brett-booth.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/123793-135823-brett-booth.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/123793-135823-brett-booth.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/123793-135823-brett-booth.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/123793-135823-brett-booth.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/123793-135823-brett-booth.jpg","image_tags":"All Images,Art Gallery,Lion-O"},"name":"Thundercats","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-708/","id":708,"name":"Wildstorm"},"site_detail_url":"https://comicvine.gamespot.com/thundercats/4060-15972/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-16341/","count_of_isssue_appearances":0,"count_of_team_members":21,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-11-09 09:28:27","deck":"The Challengers of the Unknown are a non-superhero group within the DC Universe created by Jack Kirby. The group mostly focuses on Sci-Fi storylines and is thought to be an inspiration for the Fantastic Four.","description":"

    The Challengers of the Unknown is a group of fictional characters first drawn by Jack Kirby for DC Comics. This quartet of adventurers explored science fictional and apparent paranormal occurrences and faced fantastic menaces. The scripts for the first stories are often credited to Dick and Dave Wood, two brothers who also wrote other Kirby-illustrated material, such as the \"Sky Masters of the Space Force\" comic strip; but others have claimed that Kirby created the Challengers himself or together with former partner Joe Simon. The Challengers are said to be part of the inspiration for the creation of the Fantastic Four at Marvel Comics.

    In the 1950s and 1960s DC Comics used the ongoing series Showcase to introduce or re-imagine characters that they would then base a directorial decision about how to proceed with the characters whether they would be placed in their own series, take over other well established, introduced as supporting characters elsewhere, or simply be allowed to fade away. Among the more popular of the characters introduced here were the Atom and the Flash, but other characters went on to a degree of their own popularity. Once such group of characters was the Challengers of the Unknown who have maintained a constant if not overwhelming popularity at DC in the years since their introduction. The group debuted in Showcase #6 (February 1957) as acquaintances who miraculously survived a plane crash unscathed. They concluded that since they were \"living on borrowed time\", they should band together for hazardous adventures. The four — Kyle \"Ace\" Morgan, Matthew \"Red\" Ryan, Leslie \"Rocky\" Davis, and Walter Mark \"Prof\" Haley — became the Challengers of the Unknown.

    The inspiration for the Challengers' adventures were old serials, war movies, and drive-in science fiction. Superhero comics had mostly vanished by the mid-1950s; the revival of the Flash, often seen as marking the return of the super-heroes to popularity, had occurred only a few months earlier, in Showcase #4. As larger-than-life heroes without super-powers but having super-adventures, the Challengers helped pave the way for the 1960's superheroes. Like war movies, their \"squad\" had the standard archetypes: Ace, the hotshot pilot and leader; Rocky, strong and dumb; Prof, the skinny brain; and Red, the hothead daredevil. The stories had weird menaces, fistfights, wild vehicles and gadgets, spectacular terrain, daring escapes, and a sense of humor.

    The most noted influence of this creation was Kirby's next major continuing series, The Fantastic Four, which was essentially the Challengers as a superhero family, complete with a similar origin. Both groups were quartets who resolved to band together after a crash landing; but the Challengers lacked the strong characterizations and much of the humor that distinguished the Fantastic Four. In \"Challengers of the Unknown\" #3, Rocky was shot into space and returned with multiple superpowers including invisibility, flame throwing, freeze-ray throwing, giant-growth, super-speed and super-strength.

    The series continued in Showcase for three more appearances (#7, 11, 12) then moved to its own title, considered among Kirby's most notable in that period. After 12 issues total, Kirby moved on, and while the title continued through issue #75 (Aug.-Sept. 1970, followed by intermittent reprint and revival issues from 1973-78), the series never achieved the same level of acclaim. It was a typical DC B-List comic, a steady seller like the Doom Patrol and Sea Devils.

    Soon famous, the Challengers accepted many \"unknown challenges\" from the Pentagon, mad scientists, and people with a problem. Over time the \"Challs\" established the hollowed-out Challengers Mountain as headquarters. Later they adopted an hourglass logo to symbolize time running out. They encountered genies, common and sophisticated thieves, rocs, aliens and robots good and bad, mad scientists, and super villains. Their adventures followed the flow of other DC comics starting with \"Strange Adventures\", veering toward super heroics (during the Bat Craze), to occult menaces, through Bermuda Triangle weirdness, and finally to cancellation (1979). The Challengers traveled through space, time, and other dimensions. Guest stars included the Doom Patrol, Deadman, Swamp Thing, Jonny Double, and Sea Devils.

    During a one issue crossover story with the Sea Devils in Challengers of the Unknown #47 they fought the criminal group known as Scorpio. June Robbins, a computer genius and archaeologist, joined the Challengers for many adventures as an \"honorary\" or \"girl\" Challenger, starting in their appearances in Showcase.

    In a short-lived 1977 revival, the Challengers were a four-man, one-woman team again. The first came back in Super-Team Family #8-10, before getting their own title back with Challengers of the Unknown #81. They were joined by Deadman and Swamp Thing. June Robbins got a uniform and official status. No explanation for June's joining was given.

    Their title was canceled with Challengers of the Unknown #87 in 1978, but they continued their storyline in Adventure Comics #493-497. They also appeared in issues of Super-Team Family.

    Volume 2

    The Challengers were revamped with a \"Dark Knight\" cast in Volume 2 (1991) by Jeph Loeb and Tim Sale. The Challs were semi-retired, their mountain a theme park, and their adventures disregarded as cooked-up articles in \"The Tattletale\". Other-dimensional experiments and a bomb blew up the mountain and nearby town. Prof and June were presumed killed. Red, Rocky, and Ace were tried and ordered to disband. The three drifted apart, dogged by a ghostly Prof and June, then reunited to defeat a space-demon causing worldwide suicides and madness. \"The New Challengers of the Unknown\", including ghostly Prof and June, were poised to take on menaces in the dark corners of the DCU. Loeb planned a second miniseries to reset the Challs to youth and heroism, but it never materialized.

    The mini series was 8 issues. It was reprinted in trade paperback as Challengers of the Unknown Must Die! in 2004.

    Volume 3

    The Challengers were revamped again by Steven Grant in Volume 3 (1997). Four new Challengers pursued X-Files-like horrors. They were Clay Brody, NASCAR driver; Brenda Ruskin, physicist; Kenn Kawa, radical games designer; and Marlon Corbet, commercial pilot, who also miraculously survived a plane crash. They stopped sacrificial wackos, drug-juiced zombies, vengeful ghosts, Amazon cults, Lovecraftian monsters, mass suicides, humming buildings, and other oddities. They were advised by Rocky Davis, older and grayer and alone. It was eventually revealed the original Challengers were dematerialized by a mad scientist's ray-weapon. The same ray caused both plane crashes, as well as others. Soon the original Challs reappeared, helped the young Challs defeat the madman, then walked back into oblivion (minus a wounded Rocky) to shut down a runaway Tesla field. The young Challengers vowed to fight on - until cancellation in 1998 with issue #18.

    The missing Challengers - Ace, Red, Prof, and June - were discovered by Superboy in Hypertime. The team was waging guerrilla war against Black Zero (a Superboy variant). With Black Zero defeated, the team returned to Earth, but lost Red Ryan along the way. Reunited with Rocky in Metropolis, hosted by Rip Hunter, the original Challengers vowed to explore Hypertime, \"the greatest unknown,\" to find Red.

    Two Challengers partook in Infinite Crisis. Rocky Davis and Prof Haley helped stem the escape of prisoners from Blackgate Prison (Villains United: Infinite Crisis Special 1) and Rocky fought in the Battle for Metropolis (Infinite Crisis 7).

    New 52

    In 2011, DC Comics rebooted their universe as The New 52. The Challengers of the Unknown were featured in issues 6, 7, and 8 of DC Universe Presents where they are working for Morgan Edge as Reality TV adventurists.

    Other Info

    In Amalgam Comics, the Challengers were amalgamated with their super-powered counterparts, the Fantastic Four, to form the Challengers of the Fantastic.

    In 2010, the Challengers of the Unknown where also seen in Justice League of America #42 back in the past where they found a alien weapon that can whip out their minds. The Challengers of the Unknown called the Metal Men to take care of the problem before anyone gets hurt.

    Media

    The Challengers of the Unknown are seen in the teaser for the episode \"Revenge of The Reach!\". They find a crashed space pod, and as they investigate they are attacked and controlled by mini Starros.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-2860/","id":2860,"name":"The Secret of the Sorcerer's Box!","issue_number":"6"},"id":16341,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/2164585-dcupre_cv8_sadjfhkgsdf792361.jpg","image_tags":"All Images,Challenging the Unknown"},"name":"Challengers of the Unknown","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/challengers-of-the-unknown/4060-16341/"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/team/4060-17647/","count_of_isssue_appearances":0,"count_of_team_members":24,"date_added":"2008-06-06 11:27:48","date_last_updated":"2016-08-07 13:47:03","deck":"A-Next is the MC2 Universe version of the Avengers and consists of the sons, daughters, and proteges of the previous generation of heroes.","description":"

    Origin

    \"No

    A-Next is the hip, new and younger version of the Avengers from Earth-982. The previous incarnation of Avengers were very much like their Earth-616 counterparts until they learned of a monumental threat from the reality of Earth-9907.

    In this reality, the Nazis won World War II and the ruler of the entire world was Victor Von Doom (known to Earth-616 as Dr.Doom). He was on the verge of mastering a Universal Cube which would allow him to invade other realities. Earth-982's Avengers created a portal into Earth-9907 in which to stop Doom. The confronted their counterparts in that world known as the Thunder Guard, this universe's twisted version of the Avengers under Doom's control.

    Many Avengers of Earth-928 perished during that battle with the Thunder Guard, but they did succeed in slowing down Doom's plan. One of the few survivors, Captain America stayed behind in Earth-9907 to lead the local resistance against Doom. Only six Avengers returned to earth: Hawkeye (Clint Barton) whom had been blinded in battle; Hercules,whom was driven mad by his experiences and had to be sealed in an adamantium prison; the Scarlet Witch; the Vision whom later became adviser to the U.S President; the Wasp who was distraught over the death of her husband Hank Pym; and Iron Man.

    To prevent any further interaction with Earth-9906, Iron Man was forced to place the Scarlet Witch into a stasis field and used her powers to seal the rift. Shortly afterward, a weary Tony Stark decided that he could not longer continue as Iron Man and chose to retire.

    Other heroes couldn't just sit by and let the Avengers fail apart and make no effort to fix the situation so several heroes like Jolt, Jubilee, Nova, Speedball, and the Steel Spider tried to continue the Avengers; however, it ultimately failed and the group finally disbanded. The Avengers Headquarters was turned into a Museum and was cared for by one-time Avengers' butler Edwin Jarvis. The Avengers were slowly turned into nothing more than a memory.

    Creation

    The A-Next team was created by Tom DeFalco and Ron Frenz and first appeared in What If...? Vol.1 issue 105 (1998).

    Major Story Arcs

    Beginings

    \"No

    Ten years later, Kevin Masterson (son of the deceased Avenger Thunderstrike), came to the Avengers Headquarters to claim his father's mace, which had been left their by Thor for Kevin to inherit. Although the mace's magic appeared to be gone, the trickster Loki dispatched trolls to Earth to steal it from Kevin when he found it. Loki's presence triggered a dormant program left by Tony Stark. The program activated Mainframe, a sophisticated robot (much like the Vision) based on Iron Man's mind and designed to ensure that there would always be Avengers.

    \"A-Next
    A-Next Assembled!

    Mainframe sent out a signal to the Avengers; a call which was answered by the once disbanded team of Jubilee, Jolt, and Stinger; the daughter of Ant-Man (Scott Lang). The trolls' assault on Kevin was also witnessed by Speedball, and J2 (the son of Juggernaut), and six heroes came to Masterson's defense. Loki captured all six of them easily and brought them to Asgard while he tried to awaken the magic of the mighty mace. When he cast a spell, Kevin lunged at the mace which bonded the mace to him and granted him it's powers. Kevin freed the other heroes and defeated Loki and cast him into the darkness by summoning Thor who had succeeded his father Odin as the Lord, Master, and King of Asgard.

    After the crisis, Mainframe suggested that they form a new team of Avengers. Speedball, Jolt and Jubilee declined full time service as Avengers; but Stinger, J2, and Kevin Masterson who assumed the identity of the new Thunderstrike agreed and formed A-Next.

    Once more, Avengers Headquarters served as the base of Earth's Mightiest Heroes, but was simultaneously open as a public museum. The New Avengers me other new heroes such as: Earth Sentry (John Foster), son of the old Avengers associate Bill Foster, and Doc Magus, whom was the current Sorcerer Supreme. Mainframe later recruited American Dream and her dream team which included: The Crimson Curse, Bluestreak, and Freebooter. American Dream was cousin to Sharon Carter who has been an ally and romantic partner of Captain America. She modeled her whole persona behind Captain America's style and principles.

    \"No

    When Argo, the son of Hercules asked the Avengers to help find his father, the team located and found out where Stark had put him. They also learned why he was put there; his insanity. Jarvis was sought out for answers of why the first Avengers disbanded and he told them what little he knew. In their search for answers the team accidentally awoke the Scarlet Witch, placing their world in danger from the Universal Cube.

    After coming to the realization of what happened to their predecessors they decided they had to set things straight and venture out into Earth-9907. The reunited with Captain America whom the helped overcome the Thunder Guard and succeed where the previous Avengers could not. In this battle the Crimson Curse seemingly lost her life destroying Doom and the cube and Thunderstrike became acquainted with Stormtrooper whom is an alternate version of his father and he chose to remain there and be with him.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-44687/","id":44687,"name":"LEGACY... IN BLACK AND WHITE","issue_number":"105"},"id":17647,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2458943-anext1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2458943-anext1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2458943-anext1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2458943-anext1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2458943-anext1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2458943-anext1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2458943-anext1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2458943-anext1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2458943-anext1.jpg","image_tags":"All Images,American Dream,Avengers Next,Bluestreak,Earth-982 J2,Earth-982 Spider-Girl,gallery"},"name":"A-Next","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/a-next/4060-17647/"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/thing-details/object-4055-40449.json b/samples/api-data/thing-details/object-4055-40449.json new file mode 100644 index 0000000..5d761c6 --- /dev/null +++ b/samples/api-data/thing-details/object-4055-40449.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40449/","count_of_issue_appearances":107,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-10-21 10:33:51","deck":"Wielded by Nico Minoru, the Staff of One is a hugely powerful magical stave. When activated by a voice command, the Staff of One is able to cast amazing spells but never can be used more than once.","description":"

    History

    The Staff of One was originally wielded by Tina Minoru, mother to Nico and was immensely powerful as the dreaded Dormammu trembled at the sight of it, knowing its power. It was passed onto Nico when Tina tried to stab her with the staff, but Nico's body managed to absorb it without ill effects.

    The Staff of One is used by simply stating a word or phrase, and a spell that relates to that word or phase will occur (e.g. saying \"Smoke\" would cause the Staff of One to release smoke, or \"Caffeine Injection\" charges the target with additional energy). The major limitation of the Staff of One is the fact that each spell can only be used once; if any spell is attempted again the staff will instead have a completely random effect.

    To release the Staff of One Nico must bleed and instinctively repeats the phrase, \"When blood is shed, let the Staff of One emerge!\". It also passes through the middle of her sternum, appearing through whatever clothing she is wearing at the time and piercing anything directly in front of Nico. Anyone can use the Staff of One, even without training or magical affinity, which is partially explained as everyone having magic but most people needing tools to bring it out.

    On the Runaway's trip to New York City, in the year 1907, Nico got caught breaking into a bank that supposedly had a means to get back home. An ancestral version of the Punisher knocked her out and when Nico awoke, she was in a dungeon. Nico's ancestor the Witchbreaker was carrying another magical staff called the Witchbreaker's staff. The Witchbreaker, in actuality Nico's great-grandmother, tortured Nico to see if she had the strength to be a powerful sorceress. After a while the Witchbreaker deemed her worthy. Nico withstood unimaginable pain and this enabled her to gain far greater magics and transformed the appearance of the Staff of One. The staff's new form is not only much more powerful than the original Staff of One, it also increased Nico's ability to use magic without the staff.

    Users outside the Minorus

    • Alex Wilder once wielded the Staff of One.

    • Chase Stein wielded the staff on two separate occasions. The first was when he detoxed the Dagger-obsessed nurse, and second when he held Nico captive.
    • The Witchbreaker: A staff that looks almost identical to the current form of the Staff of One was in the possession of the Witchbreaker.

    List Of Spells Used

    Freeze: Causes Stacey Yorkes to become immobilized

    Freeze: The second time causes pelicans to fly out of the staff

    Smoke: Smoke comes out of the staff to help the Runaways escape

    Away: Nico teleports away from Alex Wilder

    Mud: Mud shoots out of the staff and hits Karolina Dean

    Burst: Causes a group of graffiti artists' spray paint cans to explode

    Rock and Roll: Makes an earthquake that caves in the hostel

    Waterproof: Makes a waterproof bubble that the Runaways travel in to get to the Pride

    Float On: Nico makes the Stein's float in the air

    Dance: Alex uses the staff to unfreeze Nico

    Bondage: Alex uses the staff again to shackle Karolina's parents (off panel)

    Bondage: Alex unlocks the secret of using the same spell twice and uses the spell to shackle Karolina

    Hands Off: Nico destroys Alex's Fistigons

    Free your minds: An evil witch (Marie LeVeau) casts a spell that turns some of Nico's new friends against her. This spell cancels this spell.

    Wardrobe Malfunction: Changes Marie back from wolf to human

    Deflector Shields: Causes Marie's magical attack to bounce off of Nico

    Deconstruct: Nico uses this spell to take apart one of the Wrecking Crew

    Flashback: Makes Nico see the last few moments of a future version of Gert's life.

    Rockstars: Flaming rocks fly out of Nico's staff. But they hit Old Lace instead of Victor Mancha.

    You Suck: Causes Turbo's wrist turbines to spin in reverse, sucking air in and causing them to malfunction

    Insulation: Temporarily takes away Victor Mancha's powers

    Shine on You Crazy Diamond: Encases Ultron in a diamond

    Fumigation: Nico uses this in a battle with Tarantula (off panel)

    Fumigation: Nico forgets she already used this spell and it teleports her and Karolina to the outskirts of Los Angeles.

    Acid Rain: Makes a cloud of Acid rain that dissolve the security daemons

    Old Lace to Old Yeller: Changes Old Lace into a dog

    Hellfire: Shoots fire balls at Spider Man

    Dreamtime: Puts Spider-Man to sleep

    Sunburst: Shoots a beam of light at a Cloak impostor

    Detox: Chase Stein uses this to flush the MGH out of the Cloak impostor's system

    Get to Work: Transforms Chase's \"List of things to do when I'm 18\" into a wrench

    Revelations: When a past version of Geoffrey Wilder disguises himself as Alex, Nico uses this to change him to his true form.

    Shut Up: Knocks Chase out of the way with spiraling energy

    Pixies Find the Leak: Nico conjures up Pixies to find out how the Pride have been spying on them.

    Forget: Erases Geoffrey Wilder's memories of what happened

    Caffeine Injection: Gives Molly Hayes a boost of energy

    Now here comes the sweet talk: Gives Xavin the voice of a monster's wife to soothe him.

    Get Lost: Disorients Kate Bishop

    Chill Out: Freezes all of the Runaways and Young Avengers, making them extremely cold

    Wake Up: Wakes everyone up when they were knocked unconscious by Noh-Varr

    Prodigum Effodio (Excavating Monster in Latin): Creates a monster created out of a shield that gets the team into the Cube

    Be Quiet: Chase uses this spell to silence Nico, making her talk in a whisper

    Pretty soon, I'll just be a bad dream: Knocks Nico unconscious

    Going Down: Phases the Runaways through the roof to escape the Punisher

    Crash: Puts the Kingpin's ninjas to sleep

    Open Sesame: Makes bank employees open their vaults

    In Other Media

    Film

    Doctor Strange

    \"The
    The Staff in the movie

    The Staff of One appears in the live-action Doctor Strange movie, wielded by Tina Minoru.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106043/","id":106043,"name":"Pride And Joy: Chapter 4","issue_number":"4"},"id":40449,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/290133-64778-staff-of-one.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/290133-64778-staff-of-one.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/290133-64778-staff-of-one.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/290133-64778-staff-of-one.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/290133-64778-staff-of-one.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/290133-64778-staff-of-one.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/290133-64778-staff-of-one.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/290133-64778-staff-of-one.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/290133-64778-staff-of-one.jpg","image_tags":"All Images,Nico with the Staff"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-878826/","id":878826,"name":"Come Away With Me Pt VII","site_detail_url":"https://comicvine.gamespot.com/runaways-38-come-away-with-me-pt-vii/4000-878826/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-842207/","id":842207,"name":"Come Away With Me Pt IV","site_detail_url":"https://comicvine.gamespot.com/runaways-35-come-away-with-me-pt-iv/4000-842207/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-731524/","id":731524,"name":"Canon Fodder Pt IV","site_detail_url":"https://comicvine.gamespot.com/runaways-28-canon-fodder-pt-iv/4000-731524/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-721159/","id":721159,"name":"Canon Fodder Pt I","site_detail_url":"https://comicvine.gamespot.com/runaways-25-canon-fodder-pt-i/4000-721159/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712544/","id":712544,"name":"But You Can't Hide Pt IV","site_detail_url":"https://comicvine.gamespot.com/runaways-22-but-you-cant-hide-pt-iv/4000-712544/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-691389/","id":691389,"name":"That Was Yesterday Pt III","site_detail_url":"https://comicvine.gamespot.com/runaways-15-that-was-yesterday-pt-iii/4000-691389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-652637/","id":652637,"name":"Find Your Way Home Pt V","site_detail_url":"https://comicvine.gamespot.com/runaways-5-find-your-way-home-pt-v/4000-652637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-621675/","id":621675,"name":"Find Your Way Home","site_detail_url":"https://comicvine.gamespot.com/runaways-1-find-your-way-home/4000-621675/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-553941/","id":553941,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-10/4000-553941/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549508/","id":549508,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-9/4000-549508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-543740/","id":543740,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-8/4000-543740/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-549662/","id":549662,"name":"","site_detail_url":"https://comicvine.gamespot.com/fuerza-v-11/4000-549662/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-540064/","id":540064,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-7/4000-540064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-542920/","id":542920,"name":"","site_detail_url":"https://comicvine.gamespot.com/fuerza-v-10/4000-542920/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-533023/","id":533023,"name":"","site_detail_url":"https://comicvine.gamespot.com/a-force-6/4000-533023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-528496/","id":528496,"name":"Rage, Rage Against The Dying Of The Light","site_detail_url":"https://comicvine.gamespot.com/a-force-5-rage-rage-against-the-dying-of-the-light/4000-528496/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-489901/","id":489901,"name":"","site_detail_url":"https://comicvine.gamespot.com/inferno-1/4000-489901/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-459165/","id":459165,"name":"Going Native, Part Two","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-7-going-native-part-two/4000-459165/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-451079/","id":451079,"name":"Descent Part Three","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover-3-descent-part-three/4000-451079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-435048/","id":435048,"name":"Boss Level Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-18-boss-level-part-5-of-5/4000-435048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-433168/","id":433168,"name":"Boss Level Part 4 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-17-boss-level-part-4-of-5/4000-433168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-428293/","id":428293,"name":"Boss Level Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-16-boss-level-part-3-of-5/4000-428293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-416919/","id":416919,"name":"Game On Part 5 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-12-game-on-part-5-of-5/4000-416919/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-408991/","id":408991,"name":"Game On Part 3 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-10-game-on-part-3-of-5/4000-408991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401168/","id":401168,"name":"Game On Part 2 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-9-game-on-part-2-of-5/4000-401168/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-398980/","id":398980,"name":"Game On Part 1 of 5","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-8-game-on-part-1-of-5/4000-398980/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-401367/","id":401367,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-kill-or-die-1-volume-1/4000-401367/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-392351/","id":392351,"name":"Pawn Takes King","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-6-pawn-takes-king/4000-392351/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-386132/","id":386132,"name":"The Survivor","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-4-the-survivor/4000-386132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-388552/","id":388552,"name":"Born Leader","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-5-born-leader/4000-388552/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-326869/","id":326869,"name":"War With the Runaways: Homecoming, Part 2","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-28-war-with-the-runaways-homecomi/4000-326869/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-319373/","id":319373,"name":"War With The Runaways, Pt. 1 of 2: Homecoming","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-27-war-with-the-runaways-pt-1-of-/4000-319373/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-371726/","id":371726,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/runaways-pride-and-joy-1-tpb/4000-371726/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254408/","id":254408,"name":"Volume 11","site_detail_url":"https://comicvine.gamespot.com/runaways-homeschooling-1-volume-11/4000-254408/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168310/","id":168310,"name":"Homeschooling, Part Three: Academic Biology","site_detail_url":"https://comicvine.gamespot.com/runaways-13-homeschooling-part-three-academic-biol/4000-168310/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-192273/","id":192273,"name":"Volume 3","site_detail_url":"https://comicvine.gamespot.com/runaways-the-good-die-young-1-volume-3/4000-192273/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-171737/","id":171737,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/runaways-pride-and-joy-1-volume-1/4000-171737/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158856/","id":158856,"name":"Mollifest Destiny/Truth or Dare","site_detail_url":"https://comicvine.gamespot.com/runaways-10-mollifest-destinytruth-or-dare/4000-158856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156092/","id":156092,"name":"Rock Zombies: Conclusion","site_detail_url":"https://comicvine.gamespot.com/runaways-9-rock-zombies-conclusion/4000-156092/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152753/","id":152753,"name":"Rock Zombies: Part One","site_detail_url":"https://comicvine.gamespot.com/runaways-7-rock-zombies-part-one/4000-152753/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267922/","id":267922,"name":"Volume 9","site_detail_url":"https://comicvine.gamespot.com/runaways-dead-wrong-1-volume-9/4000-267922/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150656/","id":150656,"name":"Dead Wrong: Conclusion","site_detail_url":"https://comicvine.gamespot.com/runaways-6-dead-wrong-conclusion/4000-150656/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-199294/","id":199294,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-1-tpb/4000-199294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-148684/","id":148684,"name":"Dead Wrong: Part 5","site_detail_url":"https://comicvine.gamespot.com/runaways-5-dead-wrong-part-5/4000-148684/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-267921/","id":267921,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/runaways-dead-end-kids-1-tpb/4000-267921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-143321/","id":143321,"name":"Dead Wrong: Part Four","site_detail_url":"https://comicvine.gamespot.com/runaways-4-dead-wrong-part-four/4000-143321/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-140825/","id":140825,"name":"Dead Wrong: Part Three","site_detail_url":"https://comicvine.gamespot.com/runaways-3-dead-wrong-part-three/4000-140825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139398/","id":139398,"name":"Dead Wrong, Part Two","site_detail_url":"https://comicvine.gamespot.com/runaways-2-dead-wrong-part-two/4000-139398/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-138409/","id":138409,"name":"Secret Invasion!, Part 3","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-3-secret-in/4000-138409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136635/","id":136635,"name":"Dead Wrong: Part One","site_detail_url":"https://comicvine.gamespot.com/runaways-1-dead-wrong-part-one/4000-136635/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-135400/","id":135400,"name":"Secret Invasion!, Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-2-secret-in/4000-135400/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131812/","id":131812,"name":"Secret Invasion!, Part 1","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers-1-secret-in/4000-131812/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-131820/","id":131820,"name":"Dead-End Kids, Part 6","site_detail_url":"https://comicvine.gamespot.com/runaways-30-dead-end-kids-part-6/4000-131820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123486/","id":123486,"name":"Dead-End Kids, Part 5","site_detail_url":"https://comicvine.gamespot.com/runaways-29-dead-end-kids-part-5/4000-123486/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-118214/","id":118214,"name":"To Try in Vein; Ritual of the Sphinx - Conclusion","site_detail_url":"https://comicvine.gamespot.com/mystic-arcana-4-to-try-in-vein-ritual-of-the-sphin/4000-118214/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-212763/","id":212763,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/mystic-arcana-1-hc/4000-212763/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-231800/","id":231800,"name":"Volume 7","site_detail_url":"https://comicvine.gamespot.com/runaways-live-fast-1-volume-7/4000-231800/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221933/","id":221933,"name":"Volume 6","site_detail_url":"https://comicvine.gamespot.com/runaways-parental-guidance-1-volume-6/4000-221933/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105344/","id":105344,"name":"","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways-2/4000-105344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106067/","id":106067,"name":"Parental Guidance, Conclusion","site_detail_url":"https://comicvine.gamespot.com/runaways-18-parental-guidance-conclusion/4000-106067/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106066/","id":106066,"name":"Parental Guidance, Part 4","site_detail_url":"https://comicvine.gamespot.com/runaways-17-parental-guidance-part-4/4000-106066/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106065/","id":106065,"name":"Parental Guidance, Part 3","site_detail_url":"https://comicvine.gamespot.com/runaways-16-parental-guidance-part-3/4000-106065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105745/","id":105745,"name":"Free","site_detail_url":"https://comicvine.gamespot.com/x-menrunaways-1-free/4000-105745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106064/","id":106064,"name":"Parental Guidance, Part 2","site_detail_url":"https://comicvine.gamespot.com/runaways-15-parental-guidance-part-2/4000-106064/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293025/","id":293025,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-12/4000-293025/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221795/","id":221795,"name":"Volume 5","site_detail_url":"https://comicvine.gamespot.com/runaways-escape-to-new-york-1-volume-5/4000-221795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106063/","id":106063,"name":"Parental Guidance, Part 1","site_detail_url":"https://comicvine.gamespot.com/runaways-14-parental-guidance-part-1/4000-106063/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293024/","id":293024,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-11/4000-293024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106061/","id":106061,"name":"East Coast/West Coast, Part 4","site_detail_url":"https://comicvine.gamespot.com/runaways-12-east-coastwest-coast-part-4/4000-106061/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293023/","id":293023,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-10/4000-293023/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106060/","id":106060,"name":"East Coast/West Coast, Part 3","site_detail_url":"https://comicvine.gamespot.com/runaways-11-east-coastwest-coast-part-3/4000-106060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293022/","id":293022,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-9/4000-293022/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106059/","id":106059,"name":"East Coast/West Coast, Part 2","site_detail_url":"https://comicvine.gamespot.com/runaways-10-east-coastwest-coast-part-2/4000-106059/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293021/","id":293021,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-8/4000-293021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104257/","id":104257,"name":"East Coast/West Coast, Part 1","site_detail_url":"https://comicvine.gamespot.com/runaways-9-east-coastwest-coast-part-1/4000-104257/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293020/","id":293020,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-7/4000-293020/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293019/","id":293019,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-6/4000-293019/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-221703/","id":221703,"name":"Volume 4","site_detail_url":"https://comicvine.gamespot.com/runaways-true-believers-1-volume-4/4000-221703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-104255/","id":104255,"name":"Star-Crossed, Part 1","site_detail_url":"https://comicvine.gamespot.com/runaways-7-star-crossed-part-1/4000-104255/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103882/","id":103882,"name":"True Believers, Part 6","site_detail_url":"https://comicvine.gamespot.com/runaways-6-true-believers-part-6/4000-103882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293017/","id":293017,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-4/4000-293017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105744/","id":105744,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/runaways-1-volume-1/4000-105744/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103881/","id":103881,"name":"True Believers, Part 5","site_detail_url":"https://comicvine.gamespot.com/runaways-5-true-believers-part-5/4000-103881/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293016/","id":293016,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-3/4000-293016/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103880/","id":103880,"name":"True Believers, Part 4","site_detail_url":"https://comicvine.gamespot.com/runaways-4-true-believers-part-4/4000-103880/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293015/","id":293015,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-2/4000-293015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103879/","id":103879,"name":"True Believers, Part 3","site_detail_url":"https://comicvine.gamespot.com/runaways-3-true-believers-part-3/4000-103879/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103878/","id":103878,"name":"True Believers, Part 2","site_detail_url":"https://comicvine.gamespot.com/runaways-2-true-believers-part-2/4000-103878/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-103877/","id":103877,"name":"True Believers, Part 1","site_detail_url":"https://comicvine.gamespot.com/runaways-1-true-believers-part-1/4000-103877/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-220772/","id":220772,"name":"Volume 2","site_detail_url":"https://comicvine.gamespot.com/runaways-teenage-wasteland-1-volume-2/4000-220772/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106055/","id":106055,"name":"Eighteen","site_detail_url":"https://comicvine.gamespot.com/runaways-18-eighteen/4000-106055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106054/","id":106054,"name":"The Good Die Young: Conclusion","site_detail_url":"https://comicvine.gamespot.com/runaways-17-the-good-die-young-conclusion/4000-106054/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106053/","id":106053,"name":"The Good Die Young: Chapter Four","site_detail_url":"https://comicvine.gamespot.com/runaways-16-the-good-die-young-chapter-four/4000-106053/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106052/","id":106052,"name":"The Good Die Young: Chapter Three","site_detail_url":"https://comicvine.gamespot.com/runaways-15-the-good-die-young-chapter-three/4000-106052/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106056/","id":106056,"name":"The Good Die Young: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/runaways-14-the-good-die-young-chapter-two/4000-106056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106051/","id":106051,"name":"The Good Die Young: Chapter One","site_detail_url":"https://comicvine.gamespot.com/runaways-13-the-good-die-young-chapter-one/4000-106051/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106050/","id":106050,"name":"Lost And Found: Part Two of Two","site_detail_url":"https://comicvine.gamespot.com/runaways-12-lost-and-found-part-two-of-two/4000-106050/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106049/","id":106049,"name":"Lost And Found: Part One of Two","site_detail_url":"https://comicvine.gamespot.com/runaways-11-lost-and-found-part-one-of-two/4000-106049/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105748/","id":105748,"name":"Runaways Pride & Joy","site_detail_url":"https://comicvine.gamespot.com/runaways-1-runaways-pride-joy/4000-105748/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106057/","id":106057,"name":"Teenage Wasteland: Conclusion","site_detail_url":"https://comicvine.gamespot.com/runaways-10-teenage-wasteland-conclusion/4000-106057/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106048/","id":106048,"name":"Teenage Wasteland: Chapter Three","site_detail_url":"https://comicvine.gamespot.com/runaways-9-teenage-wasteland-chapter-three/4000-106048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106047/","id":106047,"name":"Teenage Wasteland: Chapter Two","site_detail_url":"https://comicvine.gamespot.com/runaways-8-teenage-wasteland-chapter-two/4000-106047/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106046/","id":106046,"name":"Teenage Wasteland: Chapter One","site_detail_url":"https://comicvine.gamespot.com/runaways-7-teenage-wasteland-chapter-one/4000-106046/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106045/","id":106045,"name":"Pride And Joy: Conclusion","site_detail_url":"https://comicvine.gamespot.com/runaways-6-pride-and-joy-conclusion/4000-106045/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106044/","id":106044,"name":"Pride And Joy: Chapter 5","site_detail_url":"https://comicvine.gamespot.com/runaways-5-pride-and-joy-chapter-5/4000-106044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-106043/","id":106043,"name":"Pride And Joy: Chapter 4","site_detail_url":"https://comicvine.gamespot.com/runaways-4-pride-and-joy-chapter-4/4000-106043/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293018/","id":293018,"name":"","site_detail_url":"https://comicvine.gamespot.com/runaways-5/4000-293018/"}],"movies":[{"api_detail_url":"https://comicvine.gamespot.com/api/movie/4025-2183/","id":2183,"name":"Doctor Strange","site_detail_url":"https://comicvine.gamespot.com/doctor-strange/4025-2183/"}],"name":"Staff of One","site_detail_url":"https://comicvine.gamespot.com/staff-of-one/4055-40449/","start_year":"2003","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11872/","id":11872,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-11872/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-17991/","id":17991,"name":"Civil War: Young Avengers & Runaways","site_detail_url":"https://comicvine.gamespot.com/civil-war-young-avengers-runaways/4050-17991/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18055/","id":18055,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-18055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18056/","id":18056,"name":"X-Men/Runaways","site_detail_url":"https://comicvine.gamespot.com/x-menrunaways/4050-18056/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18060/","id":18060,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-18060/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-17988/","id":17988,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-17988/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18352/","id":18352,"name":"Mystic Arcana","site_detail_url":"https://comicvine.gamespot.com/mystic-arcana/4050-18352/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21874/","id":21874,"name":"Secret Invasion: Runaways/Young Avengers","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers/4050-21874/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22775/","id":22775,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-22775/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-28015/","id":28015,"name":"Runaways: Pride and Joy","site_detail_url":"https://comicvine.gamespot.com/runaways-pride-and-joy/4050-28015/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31024/","id":31024,"name":"Runaways: The Good Die Young","site_detail_url":"https://comicvine.gamespot.com/runaways-the-good-die-young/4050-31024/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31799/","id":31799,"name":"Secret Invasion: Runaways/Young Avengers","site_detail_url":"https://comicvine.gamespot.com/secret-invasion-runawaysyoung-avengers/4050-31799/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33031/","id":33031,"name":"Mystic Arcana","site_detail_url":"https://comicvine.gamespot.com/mystic-arcana/4050-33031/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33910/","id":33910,"name":"Runaways: Teenage Wasteland","site_detail_url":"https://comicvine.gamespot.com/runaways-teenage-wasteland/4050-33910/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33997/","id":33997,"name":"Runaways: True Believers","site_detail_url":"https://comicvine.gamespot.com/runaways-true-believers/4050-33997/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34004/","id":34004,"name":"Runaways: Escape To New York","site_detail_url":"https://comicvine.gamespot.com/runaways-escape-to-new-york/4050-34004/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-34033/","id":34033,"name":"Runaways: Parental Guidance","site_detail_url":"https://comicvine.gamespot.com/runaways-parental-guidance/4050-34033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-35130/","id":35130,"name":"Runaways: Live Fast","site_detail_url":"https://comicvine.gamespot.com/runaways-live-fast/4050-35130/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-38065/","id":38065,"name":"Runaways: Homeschooling","site_detail_url":"https://comicvine.gamespot.com/runaways-homeschooling/4050-38065/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39715/","id":39715,"name":"Runaways: Dead End Kids","site_detail_url":"https://comicvine.gamespot.com/runaways-dead-end-kids/4050-39715/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39716/","id":39716,"name":"Runaways: Dead Wrong","site_detail_url":"https://comicvine.gamespot.com/runaways-dead-wrong/4050-39716/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-42886/","id":42886,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-42886/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33633/","id":33633,"name":"Avengers Academy","site_detail_url":"https://comicvine.gamespot.com/avengers-academy/4050-33633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54558/","id":54558,"name":"Runaways: Pride and Joy","site_detail_url":"https://comicvine.gamespot.com/runaways-pride-and-joy/4050-54558/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-54622/","id":54622,"name":"Avengers Arena","site_detail_url":"https://comicvine.gamespot.com/avengers-arena/4050-54622/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-60969/","id":60969,"name":"Avengers Arena: Kill Or Die","site_detail_url":"https://comicvine.gamespot.com/avengers-arena-kill-or-die/4050-60969/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-72271/","id":72271,"name":"Avengers Undercover","site_detail_url":"https://comicvine.gamespot.com/avengers-undercover/4050-72271/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-82202/","id":82202,"name":"Inferno","site_detail_url":"https://comicvine.gamespot.com/inferno/4050-82202/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-87152/","id":87152,"name":"A-Force","site_detail_url":"https://comicvine.gamespot.com/a-force/4050-87152/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88449/","id":88449,"name":"Fuerza-V","site_detail_url":"https://comicvine.gamespot.com/fuerza-v/4050-88449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-104320/","id":104320,"name":"Runaways","site_detail_url":"https://comicvine.gamespot.com/runaways/4050-104320/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/thing-details/object-4055-40973.json b/samples/api-data/thing-details/object-4055-40973.json new file mode 100644 index 0000000..46dfa3c --- /dev/null +++ b/samples/api-data/thing-details/object-4055-40973.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40973/","count_of_issue_appearances":85,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-08-15 10:14:56","deck":"Thunderstrike is the enchanted mace made for Eric Masterson. It grants its bearer some of the powers of Thor.","description":"

    Thunderstrike first appeared in Thor Vol. 1 #459, it was a \"duplicate\" of Mjolnir, made in Asgard by Odin for Eric Masterson as a replacement for Mjolnir after the true Thor returned to claim it. Its inscription reads, \"The World Still Needs Heroes THUNDERSTRIKE\".

    Thunderstrike is made of the mystical uru metal and grants its bearer (if they are worthy) a magnitude of tremendous abilities. If the mace is thrown it returns to their hand with irrestitable force or can be summoned without being thrown.

    If the mace is stamped it can revert its bearer to their mortal form and it becomes a walking stick but if stamped again, they return to their godly body and it becomes a mace once again.

    It has the ability to absorb, magnify and return any type of force allowing it create blasts of power or to manipulate the very elements around them.

    If the mace is thrown and its strap held onto the bearer can fly and is immune to the harmful effects of being within space. It is able to detect nearly every type of energy particularly strong, evil psychic energy. It can also glow in order to provide a limited amount of light.

    By theory the mace can open portals to any desired dimension, at least if it was swung at a certain pitch, by Thor.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36793/","id":36793,"name":"To The Victor","issue_number":"458"},"id":40973,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1337368-1281720295.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1337368-1281720295.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1337368-1281720295.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1337368-1281720295.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1337368-1281720295.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1337368-1281720295.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1337368-1281720295.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1337368-1281720295.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1337368-1281720295.jpg","image_tags":"All Images,Art Work,Earth-616 Thunderstrike,Stormbringer,Thunderstrike mace"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514575/","id":514575,"name":"","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-primera-linea-7/4000-514575/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514574/","id":514574,"name":"","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-primera-linea-6/4000-514574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-331993/","id":331993,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-legion-of-the-unliving-1-tpb/4000-331993/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-514573/","id":514573,"name":"","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-primera-linea-5/4000-514573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-336187/","id":336187,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-1-hc-tpb/4000-336187/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-321572/","id":321572,"name":"HC/TPB","site_detail_url":"https://comicvine.gamespot.com/fear-itself-avengers-academy-1-hc-tpb/4000-321572/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-320865/","id":320865,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/avengers-the-big-three-1-tpb/4000-320865/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-299745/","id":299745,"name":"Endings","site_detail_url":"https://comicvine.gamespot.com/avengers-academy-20-endings/4000-299745/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-297580/","id":297580,"name":"Speedball in \"Hope Like Fire,\" Part 7; \"The Chosen,\" Part 3; \"Another Moment With ... J. Jonah Jameson\"; The Citizens of Broxton, OK in \"Home Front Lines\"","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-7-speedball-in-hope-lik/4000-297580/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-293419/","id":293419,"name":"The Sisters of Sin, Part 6; The Chosen, Part 2; A Moment With ... Dust; Fear & Self-Loathing in Wisconsin","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-6-the-sisters-of-sin-pa/4000-293419/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286961/","id":286961,"name":"Speedball in \"Hope Itself\", part 5 of 7; \"The Chosen\", part 1 of 3; A Moment With... Mr. Fear; American Eagle in \"Red/White Blues\"","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front-5-speedball-in-hope-its/4000-286961/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-277205/","id":277205,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thor-thunderstrike-1-tpb/4000-277205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269048/","id":269048,"name":"The Storm and The Sacrifice","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-5-the-storm-and-the-sacrifice/4000-269048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-275146/","id":275146,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-youth-in-revolt-1-tpb/4000-275146/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-266017/","id":266017,"name":"When Fall The Mighty!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-4-when-fall-the-mighty/4000-266017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-261664/","id":261664,"name":"And The Demi-God Decrees Deatth!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-3-and-the-demi-god-decrees-deatth/4000-261664/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251476/","id":251476,"name":"Hot for Teacher!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-2-hot-for-teacher/4000-251476/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-246473/","id":246473,"name":"Like Father!; Only Human!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-1-like-father-only-human/4000-246473/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-191364/","id":191364,"name":"TPB","site_detail_url":"https://comicvine.gamespot.com/american-dream-beyond-courage-1-tpb/4000-191364/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133749/","id":133749,"name":"The Dream and the Nightmare","site_detail_url":"https://comicvine.gamespot.com/american-dream-5-the-dream-and-the-nightmare/4000-133749/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133982/","id":133982,"name":"Even A Dream Can Die!","site_detail_url":"https://comicvine.gamespot.com/american-dream-4-even-a-dream-can-die/4000-133982/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-133981/","id":133981,"name":"To Follow That Dream!","site_detail_url":"https://comicvine.gamespot.com/american-dream-3-to-follow-that-dream/4000-133981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130637/","id":130637,"name":"The Choice And The Challenge!","site_detail_url":"https://comicvine.gamespot.com/american-dream-2-the-choice-and-the-challenge/4000-130637/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-129706/","id":129706,"name":"Shattered Dream","site_detail_url":"https://comicvine.gamespot.com/american-dream-1-shattered-dream/4000-129706/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-198666/","id":198666,"name":"Spider-Girl Presents Avengers Next: Second Coming","site_detail_url":"https://comicvine.gamespot.com/spider-girl-presents-avengers-next-second-coming-1/4000-198666/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-181501/","id":181501,"name":"","site_detail_url":"https://comicvine.gamespot.com/avengers-clear-and-present-dangers-1/4000-181501/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-128472/","id":128472,"name":"Winter's Edge","site_detail_url":"https://comicvine.gamespot.com/thor-30-winters-edge/4000-128472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-46003/","id":46003,"name":"The End of the Avengers!","site_detail_url":"https://comicvine.gamespot.com/a-next-12-the-end-of-the-avengers/4000-46003/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45956/","id":45956,"name":"Crucible!","site_detail_url":"https://comicvine.gamespot.com/a-next-11-crucible/4000-45956/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45921/","id":45921,"name":"Ragnarok!","site_detail_url":"https://comicvine.gamespot.com/a-next-10-ragnarok/4000-45921/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45734/","id":45734,"name":"And Now, Argo The Almighty!","site_detail_url":"https://comicvine.gamespot.com/a-next-6-and-now-argo-the-almighty/4000-45734/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45678/","id":45678,"name":"The Gift","site_detail_url":"https://comicvine.gamespot.com/a-next-5-the-gift/4000-45678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45617/","id":45617,"name":"Who Shall Be Worthy?","site_detail_url":"https://comicvine.gamespot.com/a-next-4-who-shall-be-worthy/4000-45617/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45525/","id":45525,"name":"Down 'N' Dirty With The Defenders","site_detail_url":"https://comicvine.gamespot.com/a-next-3-down-n-dirty-with-the-defenders/4000-45525/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50770/","id":50770,"name":"Always an Avenger","site_detail_url":"https://comicvine.gamespot.com/avengers-11-always-an-avenger/4000-50770/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45466/","id":45466,"name":"Suddenly...The Sentry","site_detail_url":"https://comicvine.gamespot.com/a-next-2-suddenlythe-sentry/4000-45466/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-50769/","id":50769,"name":"Pomp & Pageantry","site_detail_url":"https://comicvine.gamespot.com/avengers-10-pomp-pageantry/4000-50769/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-45394/","id":45394,"name":"Second Coming!","site_detail_url":"https://comicvine.gamespot.com/a-next-1-second-coming/4000-45394/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-44871/","id":44871,"name":"If This Age Be Golden","site_detail_url":"https://comicvine.gamespot.com/what-if-107-if-this-age-be-golden/4000-44871/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41424/","id":41424,"name":"THE STORM AND THE SACRIFICE!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-24-the-storm-and-the-sacrifice/4000-41424/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41427/","id":41427,"name":"Against the Dying of the Light!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-490-against-the-dying-of-the-light/4000-41427/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-69281/","id":69281,"name":"","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-23/4000-69281/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41158/","id":41158,"name":"Bloodaxe: Unmasked","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-22-bloodaxe-unmasked/4000-41158/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-41021/","id":41021,"name":"Pacts of Vengeance!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-21-pacts-of-vengeance/4000-41021/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40891/","id":40891,"name":"Spawn","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-20-spawn/4000-40891/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40636/","id":40636,"name":"The Armageddon Agenda!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-18-the-armageddon-agenda/4000-40636/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164391/","id":164391,"name":"Jolly Old Asswipe","site_detail_url":"https://comicvine.gamespot.com/beavis-butt-head-12-jolly-old-asswipe/4000-164391/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-366721/","id":366721,"name":"Grudge Match/Krask Force","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-16-gr/4000-366721/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40370/","id":40370,"name":"Grudge Match","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-16-grudge-match/4000-40370/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40128/","id":40128,"name":"The Old Bait and Switch!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-15-the-old-bait-and-switch/4000-40128/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384104/","id":384104,"name":"The Old Bait and Switch!; The Thermal Man is Back!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-15-th/4000-384104/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-417703/","id":417703,"name":"","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel-1994/4000-417703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39989/","id":39989,"name":"Up From Below!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-14-up-from-below/4000-39989/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-384102/","id":384102,"name":"","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-14/4000-384102/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39844/","id":39844,"name":"Man and Beast","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-13-man-and-beast/4000-39844/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-351900/","id":351900,"name":"The Crack of Doom!","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue-13-th/4000-351900/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39696/","id":39696,"name":"Whyte Out","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-12-whyte-out/4000-39696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39560/","id":39560,"name":"Battle Lines!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-11-battle-lines/4000-39560/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39512/","id":39512,"name":"Three Who Ride the Thunder!","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-477-three-who-ride-the-thunder/4000-39512/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38409/","id":38409,"name":"Strangers on an Astral Plane","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual-23-strangers-on-an-astral-plan/4000-38409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57293/","id":57293,"name":"By Myself Betrayed!","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited-6-by-myself-betrayed/4000-57293/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39416/","id":39416,"name":"Hero","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-10-hero/4000-39416/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39274/","id":39274,"name":"Bad Blood!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-9-bad-blood/4000-39274/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134810/","id":134810,"name":"Crash & Burn (Part 4 of 6): The Sound Of Thunder!","site_detail_url":"https://comicvine.gamespot.com/iron-man-304-crash-burn-part-4-of-6-the-sound-of-t/4000-134810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-39121/","id":39121,"name":"Zero Hour","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-8-zero-hour/4000-39121/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-134804/","id":134804,"name":"Crash & Burn (Part 3 of 6): Kids These Days","site_detail_url":"https://comicvine.gamespot.com/iron-man-303-crash-burn-part-3-of-6-kids-these-day/4000-134804/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38981/","id":38981,"name":"Loose Ends!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-7-loose-ends/4000-38981/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38843/","id":38843,"name":"The Hidden War!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-6-the-hidden-war/4000-38843/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38695/","id":38695,"name":"Busted","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-5-busted/4000-38695/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38696/","id":38696,"name":"Blood and Thunder, Part 11:","site_detail_url":"https://comicvine.gamespot.com/warlock-chronicles-8-blood-and-thunder-part-11/4000-38696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38555/","id":38555,"name":"Evil Woman!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-4-evil-woman/4000-38555/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38556/","id":38556,"name":"Blood and Thunder, Part 7:","site_detail_url":"https://comicvine.gamespot.com/warlock-chronicles-7-blood-and-thunder-part-7/4000-38556/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38261/","id":38261,"name":"Revenge Part 2","site_detail_url":"https://comicvine.gamespot.com/secret-defenders-10-revenge-part-2/4000-38261/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38300/","id":38300,"name":"Sangre Means Blood!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-3-sangre-means-blood/4000-38300/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38247/","id":38247,"name":"They Kangdom Come","site_detail_url":"https://comicvine.gamespot.com/avengers-the-terminatrix-objective-4-they-kangdom-/4000-38247/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38103/","id":38103,"name":"Revenge Part 1","site_detail_url":"https://comicvine.gamespot.com/secret-defenders-9-revenge-part-1/4000-38103/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38091/","id":38091,"name":"Day of Maximum Probability","site_detail_url":"https://comicvine.gamespot.com/avengers-the-terminatrix-objective-3-day-of-maximu/4000-38091/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-38143/","id":38143,"name":"Family Matters","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-2-family-matters/4000-38143/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37942/","id":37942,"name":"On the Side of the Angels","site_detail_url":"https://comicvine.gamespot.com/avengers-the-terminatrix-objective-2-on-the-side-o/4000-37942/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37791/","id":37791,"name":"Borderlands","site_detail_url":"https://comicvine.gamespot.com/avengers-the-terminatrix-objective-1-borderlands/4000-37791/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37523/","id":37523,"name":"Rune With A View","site_detail_url":"https://comicvine.gamespot.com/quasar-48-rune-with-a-view/4000-37523/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37411/","id":37411,"name":"Blood Without Glory!","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-1-blood-without-glory/4000-37411/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-37369/","id":37369,"name":"Quantum Quest","site_detail_url":"https://comicvine.gamespot.com/quasar-47-quantum-quest/4000-37369/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36870/","id":36870,"name":"What Price Victory?","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-459-what-price-victory/4000-36870/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-36793/","id":36793,"name":"To The Victor","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor-458-to-the-victor/4000-36793/"}],"movies":[],"name":"Thunderstrike","site_detail_url":"https://comicvine.gamespot.com/thunderstrike/4055-40973/","start_year":"1993","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60436/","id":60436,"name":"Forestry Is the Best Policy","site_detail_url":"https://comicvine.gamespot.com/forestry-is-the-best-policy/4045-60436/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60472/","id":60472,"name":"The End","site_detail_url":"https://comicvine.gamespot.com/the-end/4045-60472/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-59913/","id":59913,"name":"No Justice","site_detail_url":"https://comicvine.gamespot.com/no-justice/4045-59913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60579/","id":60579,"name":"The Eradication Agenda","site_detail_url":"https://comicvine.gamespot.com/the-eradication-agenda/4045-60579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60530/","id":60530,"name":"The House of Slaughter","site_detail_url":"https://comicvine.gamespot.com/the-house-of-slaughter/4045-60530/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60631/","id":60631,"name":"The Return","site_detail_url":"https://comicvine.gamespot.com/the-return/4045-60631/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60667/","id":60667,"name":"Last Remains","site_detail_url":"https://comicvine.gamespot.com/last-remains/4045-60667/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60613/","id":60613,"name":"Truth/Dare","site_detail_url":"https://comicvine.gamespot.com/truthdare/4045-60613/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60294/","id":60294,"name":"Necessary Evil","site_detail_url":"https://comicvine.gamespot.com/necessary-evil/4045-60294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60696/","id":60696,"name":"Endless Winter","site_detail_url":"https://comicvine.gamespot.com/endless-winter/4045-60696/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60526/","id":60526,"name":"Burned","site_detail_url":"https://comicvine.gamespot.com/burned/4045-60526/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60690/","id":60690,"name":"King In Black","site_detail_url":"https://comicvine.gamespot.com/king-in-black/4045-60690/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60703/","id":60703,"name":"Enter the Phoenix","site_detail_url":"https://comicvine.gamespot.com/enter-the-phoenix/4045-60703/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60766/","id":60766,"name":"The Hit List Agenda","site_detail_url":"https://comicvine.gamespot.com/the-hit-list-agenda/4045-60766/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60795/","id":60795,"name":"Cross Country","site_detail_url":"https://comicvine.gamespot.com/cross-country/4045-60795/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60796/","id":60796,"name":"Kurei's Mansion","site_detail_url":"https://comicvine.gamespot.com/kureis-mansion/4045-60796/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60820/","id":60820,"name":"Monster World","site_detail_url":"https://comicvine.gamespot.com/monster-world/4045-60820/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-59355/","id":59355,"name":"Greed Island Arc","site_detail_url":"https://comicvine.gamespot.com/greed-island-arc/4045-59355/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60854/","id":60854,"name":"The Red Mass","site_detail_url":"https://comicvine.gamespot.com/the-red-mass/4045-60854/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60890/","id":60890,"name":"Secrets and Sanity","site_detail_url":"https://comicvine.gamespot.com/secrets-and-sanity/4045-60890/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60913/","id":60913,"name":"Devil's Reign ","site_detail_url":"https://comicvine.gamespot.com/devils-reign/4045-60913/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60927/","id":60927,"name":"Ten Commandments Saga","site_detail_url":"https://comicvine.gamespot.com/ten-commandments-saga/4045-60927/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60882/","id":60882,"name":"Beyond","site_detail_url":"https://comicvine.gamespot.com/beyond/4045-60882/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60944/","id":60944,"name":"Shadow War","site_detail_url":"https://comicvine.gamespot.com/shadow-war/4045-60944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60817/","id":60817,"name":"Zeti Hunt","site_detail_url":"https://comicvine.gamespot.com/zeti-hunt/4045-60817/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60914/","id":60914,"name":"Crimson Reign","site_detail_url":"https://comicvine.gamespot.com/crimson-reign/4045-60914/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-61011/","id":61011,"name":"The Earth/Georwell War","site_detail_url":"https://comicvine.gamespot.com/the-earthgeorwell-war/4045-61011/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60983/","id":60983,"name":"Reign of X","site_detail_url":"https://comicvine.gamespot.com/reign-of-x/4045-60983/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-61213/","id":61213,"name":"The Mighty Thor","site_detail_url":"https://comicvine.gamespot.com/the-mighty-thor/4050-61213/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4242/","id":4242,"name":"Quasar","site_detail_url":"https://comicvine.gamespot.com/quasar/4050-4242/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5055/","id":5055,"name":"Thunderstrike","site_detail_url":"https://comicvine.gamespot.com/thunderstrike/4050-5055/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4986/","id":4986,"name":"Avengers: The Terminatrix Objective","site_detail_url":"https://comicvine.gamespot.com/avengers-the-terminatrix-objective/4050-4986/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5044/","id":5044,"name":"Secret Defenders","site_detail_url":"https://comicvine.gamespot.com/secret-defenders/4050-5044/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2350/","id":2350,"name":"The Avengers Annual","site_detail_url":"https://comicvine.gamespot.com/the-avengers-annual/4050-2350/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5062/","id":5062,"name":"Warlock Chronicles","site_detail_url":"https://comicvine.gamespot.com/warlock-chronicles/4050-5062/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4249/","id":4249,"name":"What If...?","site_detail_url":"https://comicvine.gamespot.com/what-if/4050-4249/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6205/","id":6205,"name":"A-Next","site_detail_url":"https://comicvine.gamespot.com/a-next/4050-6205/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-7084/","id":7084,"name":"Avengers","site_detail_url":"https://comicvine.gamespot.com/avengers/4050-7084/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-5048/","id":5048,"name":"Spider-Man Unlimited","site_detail_url":"https://comicvine.gamespot.com/spider-man-unlimited/4050-5048/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6226/","id":6226,"name":"Thor","site_detail_url":"https://comicvine.gamespot.com/thor/4050-6226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21500/","id":21500,"name":"American Dream","site_detail_url":"https://comicvine.gamespot.com/american-dream/4050-21500/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2407/","id":2407,"name":"Iron Man","site_detail_url":"https://comicvine.gamespot.com/iron-man/4050-2407/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-21508/","id":21508,"name":"Beavis & Butt-Head","site_detail_url":"https://comicvine.gamespot.com/beavis-butt-head/4050-21508/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-29383/","id":29383,"name":"Avengers: Clear and Present Dangers","site_detail_url":"https://comicvine.gamespot.com/avengers-clear-and-present-dangers/4050-29383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30932/","id":30932,"name":"American Dream: Beyond Courage","site_detail_url":"https://comicvine.gamespot.com/american-dream-beyond-courage/4050-30932/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-31705/","id":31705,"name":"Spider-Girl Presents Avengers Next: Second Coming","site_detail_url":"https://comicvine.gamespot.com/spider-girl-presents-avengers-next-second-coming/4050-31705/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-36953/","id":36953,"name":"Thunderstrike","site_detail_url":"https://comicvine.gamespot.com/thunderstrike/4050-36953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-40810/","id":40810,"name":"Thunderstrike: Youth in Revolt","site_detail_url":"https://comicvine.gamespot.com/thunderstrike-youth-in-revolt/4050-40810/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-41100/","id":41100,"name":"Thor: Thunderstrike","site_detail_url":"https://comicvine.gamespot.com/thor-thunderstrike/4050-41100/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-39618/","id":39618,"name":"Fear Itself: The Home Front","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front/4050-39618/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-33633/","id":33633,"name":"Avengers Academy","site_detail_url":"https://comicvine.gamespot.com/avengers-academy/4050-33633/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46527/","id":46527,"name":"Avengers: The Big Three","site_detail_url":"https://comicvine.gamespot.com/avengers-the-big-three/4050-46527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-46579/","id":46579,"name":"Fear Itself: Avengers Academy","site_detail_url":"https://comicvine.gamespot.com/fear-itself-avengers-academy/4050-46579/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-48079/","id":48079,"name":"Avengers: Legion of the Unliving","site_detail_url":"https://comicvine.gamespot.com/avengers-legion-of-the-unliving/4050-48079/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-49033/","id":49033,"name":"Fear Itself: The Home Front","site_detail_url":"https://comicvine.gamespot.com/fear-itself-the-home-front/4050-49033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-51349/","id":51349,"name":"Marvel Double Feature... Thunderstrike/Code: Blue","site_detail_url":"https://comicvine.gamespot.com/marvel-double-feature-thunderstrikecode-blue/4050-51349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-65336/","id":65336,"name":"The Best Of Marvel","site_detail_url":"https://comicvine.gamespot.com/the-best-of-marvel/4050-65336/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-88052/","id":88052,"name":"Miedo Encarnado: Primera Línea","site_detail_url":"https://comicvine.gamespot.com/miedo-encarnado-primera-linea/4050-88052/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/thing-details/object-4055-43246.json b/samples/api-data/thing-details/object-4055-43246.json new file mode 100644 index 0000000..40c05b3 --- /dev/null +++ b/samples/api-data/thing-details/object-4055-43246.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43246/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:49","deck":"The Dawn Sword is the designated weapon of the Dawn Warrior, warrior and protector of the Ankharan people of the Five Lands of Quin. Arwyn helps rediscover the Sword, freeing Ankhara from Mordath.","description":null,"first_appeared_in_issue":null,"id":43246,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/107876-178246-dawn-sword.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/107876-178246-dawn-sword.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/107876-178246-dawn-sword.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/107876-178246-dawn-sword.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/107876-178246-dawn-sword.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/107876-178246-dawn-sword.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/107876-178246-dawn-sword.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/107876-178246-dawn-sword.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/107876-178246-dawn-sword.jpg","image_tags":"All Images,gallery"},"issue_credits":[],"movies":[],"name":"Dawn Sword","site_detail_url":"https://comicvine.gamespot.com/dawn-sword/4055-43246/","start_year":null,"story_arc_credits":[],"volume_credits":[]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/thing-details/object-4055-43295.json b/samples/api-data/thing-details/object-4055-43295.json new file mode 100644 index 0000000..07ef748 --- /dev/null +++ b/samples/api-data/thing-details/object-4055-43295.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43295/","count_of_issue_appearances":74,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-09-18 14:04:53","deck":"A powerful magic jewel which allows its user to manipulate anything the jewel touches.","description":"

    Originally possessed by Sargon the Sorcerer, the Ruby recently came into the possession of Tefé Holland. Tim Hunter was offered the power of the Ruby but rejected it. The Ruby was originally carved from the same stone as the Spectre's Ring of Life.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-132132/","id":132132,"name":"Green Lantern: \"The Case of the Loan Shark\"","issue_number":"26"},"id":43295,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/662696-photo1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/662696-photo1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/662696-photo1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/662696-photo1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/662696-photo1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/662696-photo1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/662696-photo1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/662696-photo1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/662696-photo1.jpg","image_tags":"All Images,Ruby of Life"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-712425/","id":712425,"name":"The Lords of Order Chapter 5","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-12-the-lords-of-order-chapter-/4000-712425/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-709701/","id":709701,"name":"The Lords of Order Chapter 4","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-11-the-lords-of-order-chapter-/4000-709701/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-703033/","id":703033,"name":"The Lords of Order Chapter 2","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-9-the-lords-of-order-chapter-2/4000-703033/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-700645/","id":700645,"name":"The Lords of Order Chapter 1","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark-8-the-lords-of-order-chapter-1/4000-700645/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-664276/","id":664276,"name":"Book Three","site_detail_url":"https://comicvine.gamespot.com/mystik-u-3-book-three/4000-664276/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-643017/","id":643017,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/mystik-u-1-book-one/4000-643017/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-587387/","id":587387,"name":"HC","site_detail_url":"https://comicvine.gamespot.com/jsa-the-golden-age-deluxe-edition-1-hc/4000-587387/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152825/","id":152825,"name":"Regime Change","site_detail_url":"https://comicvine.gamespot.com/reign-in-hell-8-regime-change/4000-152825/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-150953/","id":150953,"name":"Revelations / Bleak Sanctuary","site_detail_url":"https://comicvine.gamespot.com/reign-in-hell-7-revelations-bleak-sanctuary/4000-150953/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-185304/","id":185304,"name":"Volume 1","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-bad-seed-1-volume-1/4000-185304/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99347/","id":99347,"name":"Bad Seed Conclusion","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-6-bad-seed-conclusion/4000-99347/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99345/","id":99345,"name":"Bad Seed Part Four","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-4-bad-seed-part-four/4000-99345/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99344/","id":99344,"name":"Bad Seed Part Three","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-3-bad-seed-part-three/4000-99344/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-99343/","id":99343,"name":"Bad Seed Part Two","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-2-bad-seed-part-two/4000-99343/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-120848/","id":120848,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-47206/","id":47206,"name":"Time's Keeper","site_detail_url":"https://comicvine.gamespot.com/all-star-comics-1-times-keeper/4000-47206/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-78349/","id":78349,"name":"Star-Seed, The Secret Origin of the New JLA, Lost Pages, Day In The Life","site_detail_url":"https://comicvine.gamespot.com/jla-secret-files-and-origins-1-star-seed-the-secre/4000-78349/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-40140/","id":40140,"name":"We Had It All","site_detail_url":"https://comicvine.gamespot.com/the-golden-age-4-we-had-it-all/4000-40140/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-29669/","id":29669,"name":"A Symphony Of Shadows The Secret Origin of Zatara and Zatanna","site_detail_url":"https://comicvine.gamespot.com/secret-origins-27-a-symphony-of-shadows-the-secret/4000-29669/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-27533/","id":27533,"name":"Book One","site_detail_url":"https://comicvine.gamespot.com/history-of-the-dc-universe-1-book-one/4000-27533/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-24038/","id":24038,"name":"Uncle Sam Wants You!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-31-uncle-sam-wants-you/4000-24038/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23676/","id":23676,"name":"By Hatred Possessed!","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron-28-by-hatred-possessed/4000-23676/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-23590/","id":23590,"name":"The Doppelganger Gambit","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-220-the-doppelganger-gam/4000-23590/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-20700/","id":20700,"name":"Between Friend and Foe; Where Nightmares Begin; Whatever Happened to Sargon the Sorcerer","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents-26-between-friend-and-foe-where/4000-20700/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124389/","id":124389,"name":"Only Legends Live Forever!","site_detail_url":"https://comicvine.gamespot.com/adventure-comics-462-only-legends-live-forever/4000-124389/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-12166/","id":12166,"name":"No More Tomorrows!; The Woman Who Wanted the World!; The Three Comets!","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america-98-no-more-tomorrows-the/4000-12166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-11465/","id":11465,"name":"The Evil Sound Of Music!; Phantom Of The Cafeteria","site_detail_url":"https://comicvine.gamespot.com/the-flash-207-the-evil-sound-of-music-phantom-of-t/4000-11465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-10075/","id":10075,"name":"Time Times Three Equals--?","site_detail_url":"https://comicvine.gamespot.com/the-flash-186-time-times-three-equals/4000-10075/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-159449/","id":159449,"name":"Perils of the Trapper!; The Unexpected Guest!; The Secret of 13!; Too Many Suspects!","site_detail_url":"https://comicvine.gamespot.com/green-lantern-37-perils-of-the-trapper-the-unexpec/4000-159449/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111294/","id":111294,"name":"The Sinister Olympics","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-83-the-sinister-olympics/4000-111294/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111292/","id":111292,"name":"Brain Pirates from the Inner Moon World","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-82-brain-pirates-from-the-inner-m/4000-111292/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111291/","id":111291,"name":"When Treachery Wore a Green Shirt","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-81-when-treachery-wore-a-green-sh/4000-111291/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111289/","id":111289,"name":"The Swinging Scimitar","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-80-the-swinging-scimitar/4000-111289/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111287/","id":111287,"name":"Land of Mirrors","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-79-land-of-mirrors/4000-111287/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111282/","id":111282,"name":"Tress' Terrible Mistake","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-77-tress-terrible-mistake/4000-111282/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111268/","id":111268,"name":"The Invasion of the Sun Warriors","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-71-the-invasion-of-the-sun-warrio/4000-111268/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111234/","id":111234,"name":"The Unconquerable Woman of Cocha Bamba","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-70-the-unconquerable-woman-of-coc/4000-111234/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111233/","id":111233,"name":"Mystery Behind A, B, C","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-69-mystery-behind-a-b-c/4000-111233/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111232/","id":111232,"name":"Secret of the Menacing Octopus","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-68-secret-of-the-menacing-octopus/4000-111232/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111231/","id":111231,"name":"The Secret of the Bar-L Ranch","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-67-the-secret-of-the-bar-l-ranch/4000-111231/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111230/","id":111230,"name":"Prisoners of Cops and Robbers","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-66-prisoners-of-cops-and-robbers/4000-111230/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111229/","id":111229,"name":"Treachery In the Arctic","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-65-treachery-in-the-arctic/4000-111229/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111228/","id":111228,"name":"The Adventure of the Little Cloud People","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-64-the-adventure-of-the-little-cl/4000-111228/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111227/","id":111227,"name":"The Wail of Doom","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-63-the-wail-of-doom/4000-111227/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111226/","id":111226,"name":"Mysterious Prisoners of Anglonia","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-62-mysterious-prisoners-of-anglon/4000-111226/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111225/","id":111225,"name":"The Million Dollar Tennis Game","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-61-the-million-dollar-tennis-game/4000-111225/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111224/","id":111224,"name":"The Ordeal of Queen Boadacea","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-60-the-ordeal-of-queen-boadacea/4000-111224/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111223/","id":111223,"name":"Reign of Blue Terror","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-59-reign-of-blue-terror/4000-111223/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111222/","id":111222,"name":"The Bog Trap","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-58-the-bog-trap/4000-111222/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111221/","id":111221,"name":"Wonder Woman and the House of Goblins","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-57-wonder-woman-and-the-house-of-/4000-111221/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111220/","id":111220,"name":"Anti-Atomic Metal","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-56-anti-atomic-metal/4000-111220/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111219/","id":111219,"name":"The Bughuman Plague","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-55-the-bughuman-plague/4000-111219/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111218/","id":111218,"name":"The Treachery of Fiendo","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-54-the-treachery-of-fiendo/4000-111218/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111217/","id":111217,"name":"Case of the Valiant Dog","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-53-case-of-the-valiant-dog/4000-111217/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111216/","id":111216,"name":"The Brand of Madness","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-52-the-brand-of-madness/4000-111216/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196659/","id":196659,"name":"Green Lantern: \"Love at First Blight\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-70-green-lantern-love-at-first/4000-196659/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110828/","id":110828,"name":"Battle Against Revenge","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-36-battle-against-revenge/4000-110828/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110827/","id":110827,"name":"Girls Under the Sea","site_detail_url":"https://comicvine.gamespot.com/sensation-comics-35-girls-under-the-sea/4000-110827/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113313/","id":113313,"name":"The Mystery of Countess Mazuma","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade-6-the-mystery-of-countess-mazuma/4000-113313/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-113312/","id":113312,"name":"Mystery of the Crimson Flame","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade-5-mystery-of-the-crimson-flame/4000-113312/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111574/","id":111574,"name":"The Purloined Pressure Coordinator","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade-4-the-purloined-pressure-coordinat/4000-111574/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-111573/","id":111573,"name":"The Invisible Invader","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade-3-the-invisible-invader/4000-111573/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-196655/","id":196655,"name":"Green Lantern: \"Deep in the Heart of Crime!\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-50-green-lantern-deep-in-the-h/4000-196655/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193384/","id":193384,"name":"The Saga of Doiby Dickles' Cab!","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-49-the-saga-of-doiby-dickles-c/4000-193384/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193383/","id":193383,"name":"Green Lantern: \"League of the Three-Eyed Men\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-48-green-lantern-league-of-the/4000-193383/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179776/","id":179776,"name":"Green Lantern: \"The Disappearing Damsel\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-47-green-lantern-the-disappear/4000-179776/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-193382/","id":193382,"name":"The Riddle of Dickles Manor","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-46-the-riddle-of-dickles-manor/4000-193382/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179777/","id":179777,"name":"Green Lantern: \"The Headstrong Heiress\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-45-green-lantern-the-headstron/4000-179777/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-179778/","id":179778,"name":"Green Lantern: \"The Perfect Crime\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-44-green-lantern-the-perfect-c/4000-179778/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132150/","id":132150,"name":"Green Lantern: \"Murder on Wheels\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-36-green-lantern-murder-on-whe/4000-132150/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132142/","id":132142,"name":"Green Lantern: \"Doiby Discovers Green Lantern's Identity\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-35-green-lantern-doiby-discove/4000-132142/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132141/","id":132141,"name":"Green Lantern: \"The Building Racket\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-34-green-lantern-the-building-/4000-132141/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-132132/","id":132132,"name":"Green Lantern: \"The Case of the Loan Shark\"","site_detail_url":"https://comicvine.gamespot.com/all-american-comics-26-green-lantern-the-case-of-t/4000-132132/"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-891632/","id":891632,"name":"The Evil Sound of Music!","site_detail_url":"https://comicvine.gamespot.com/superman-presents-worlds-finest-comic-monthly-84-t/4000-891632/"}],"movies":[],"name":"Ruby of Life","site_detail_url":"https://comicvine.gamespot.com/ruby-of-life/4055-43295/","start_year":"1941","story_arc_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-43902/","id":43902,"name":"Shockwave","site_detail_url":"https://comicvine.gamespot.com/shockwave/4045-43902/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-56409/","id":56409,"name":"Yon Twelve-Winded Sky","site_detail_url":"https://comicvine.gamespot.com/yon-twelve-winded-sky/4045-56409/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-57167/","id":57167,"name":"Infinity","site_detail_url":"https://comicvine.gamespot.com/infinity/4045-57167/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-57634/","id":57634,"name":"The Archie's Rockin' World Tour!","site_detail_url":"https://comicvine.gamespot.com/the-archie-s-rockin-world-tour/4045-57634/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-57905/","id":57905,"name":"Wonderland (Zenescope)","site_detail_url":"https://comicvine.gamespot.com/wonderland-zenescope/4045-57905/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-58446/","id":58446,"name":"Truth","site_detail_url":"https://comicvine.gamespot.com/truth/4045-58446/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-59012/","id":59012,"name":"A Green and Pleasant Land","site_detail_url":"https://comicvine.gamespot.com/a-green-and-pleasant-land/4045-59012/"},{"api_detail_url":"https://comicvine.gamespot.com/api/arc/4045-60982/","id":60982,"name":"Dawn of X","site_detail_url":"https://comicvine.gamespot.com/dawn-of-x/4045-60982/"}],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1995/","id":1995,"name":"The Flash","site_detail_url":"https://comicvine.gamespot.com/the-flash/4050-1995/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2014/","id":2014,"name":"Justice League of America","site_detail_url":"https://comicvine.gamespot.com/justice-league-of-america/4050-2014/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-2943/","id":2943,"name":"DC Comics Presents","site_detail_url":"https://comicvine.gamespot.com/dc-comics-presents/4050-2943/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3070/","id":3070,"name":"All-Star Squadron","site_detail_url":"https://comicvine.gamespot.com/all-star-squadron/4050-3070/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3604/","id":3604,"name":"History of the DC Universe","site_detail_url":"https://comicvine.gamespot.com/history-of-the-dc-universe/4050-3604/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3616/","id":3616,"name":"Secret Origins","site_detail_url":"https://comicvine.gamespot.com/secret-origins/4050-3616/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-4960/","id":4960,"name":"The Golden Age","site_detail_url":"https://comicvine.gamespot.com/the-golden-age/4050-4960/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6596/","id":6596,"name":"All Star Comics","site_detail_url":"https://comicvine.gamespot.com/all-star-comics/4050-6596/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-6166/","id":6166,"name":"JLA Secret Files and Origins","site_detail_url":"https://comicvine.gamespot.com/jla-secret-files-and-origins/4050-6166/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-11315/","id":11315,"name":"Swamp Thing","site_detail_url":"https://comicvine.gamespot.com/swamp-thing/4050-11315/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18678/","id":18678,"name":"Sensation Comics","site_detail_url":"https://comicvine.gamespot.com/sensation-comics/4050-18678/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-18856/","id":18856,"name":"Comic Cavalcade","site_detail_url":"https://comicvine.gamespot.com/comic-cavalcade/4050-18856/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20244/","id":20244,"name":"The DC Comics Encyclopedia","site_detail_url":"https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-3105/","id":3105,"name":"Adventure Comics","site_detail_url":"https://comicvine.gamespot.com/adventure-comics/4050-3105/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20663/","id":20663,"name":"All-American Comics","site_detail_url":"https://comicvine.gamespot.com/all-american-comics/4050-20663/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-22465/","id":22465,"name":"Reign In Hell","site_detail_url":"https://comicvine.gamespot.com/reign-in-hell/4050-22465/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-25944/","id":25944,"name":"Green Lantern","site_detail_url":"https://comicvine.gamespot.com/green-lantern/4050-25944/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-30082/","id":30082,"name":"Swamp Thing: Bad Seed","site_detail_url":"https://comicvine.gamespot.com/swamp-thing-bad-seed/4050-30082/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-99867/","id":99867,"name":"JSA: The Golden Age: Deluxe Edition","site_detail_url":"https://comicvine.gamespot.com/jsa-the-golden-age-deluxe-edition/4050-99867/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-106527/","id":106527,"name":"Mystik U","site_detail_url":"https://comicvine.gamespot.com/mystik-u/4050-106527/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-112455/","id":112455,"name":"Justice League Dark","site_detail_url":"https://comicvine.gamespot.com/justice-league-dark/4050-112455/"},{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-45774/","id":45774,"name":"Superman Presents World's Finest Comic Monthly","site_detail_url":"https://comicvine.gamespot.com/superman-presents-worlds-finest-comic-monthly/4050-45774/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/thing-details/object-4055-43495.json b/samples/api-data/thing-details/object-4055-43495.json new file mode 100644 index 0000000..a1e1a45 --- /dev/null +++ b/samples/api-data/thing-details/object-4055-43495.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43495/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:42","deck":"This figurine is a carved piece of hardened, black stone in the shape of a panther. Whoever possesses this figurine can summon or dismiss the astral panther Guenhwyvar.","description":"

     This onyx figurine originally belonged to Masoj Hun'nett of House Hun'nett, a sorcerer at the Academy of Magic in Menzoberranzan, a drow city native to Drizzt Do'Urden.  But after certain events, Drizzt forged a comradeship with Guenhwyvar and the astral phanter chose to follow Drizzt instead of her former master.  
     
    The figurine also serves as a teleportal device. The halfling Regis used the figurine to teleport away from Tarterus and then teleported back into Pasha Pook's palace with an army of astral felines.  Guenhwyvar is immortal as she is an astral creature. As long as the figurine is intact, she will always be available to serve her master.    

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-123415/","id":123415,"name":"Homeland","issue_number":"1"},"id":43495,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","image_tags":"All Images,Figurine"},"issue_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123415/","id":123415,"name":"Homeland","site_detail_url":"https://comicvine.gamespot.com/forgotten-realms-homeland-1-homeland/4000-123415/"}],"movies":[],"name":"Guenhwyvar's Figurine","site_detail_url":"https://comicvine.gamespot.com/guenhwyvars-figurine/4055-43495/","start_year":"2005","story_arc_credits":[],"volume_credits":[{"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-20590/","id":20590,"name":"Forgotten Realms: Homeland","site_detail_url":"https://comicvine.gamespot.com/forgotten-realms-homeland/4050-20590/"}]},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/thing-list-item/objects.json b/samples/api-data/thing-list-item/objects.json new file mode 100644 index 0000000..00c637a --- /dev/null +++ b/samples/api-data/thing-list-item/objects.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":4520,"status_code":1,"results":[{"aliases":"Cerebra\r\nThe Founder\r\nCerebro Prime\r\nCyberno","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-15073/","count_of_issue_appearances":549,"date_added":"2008-06-06 11:27:51","date_last_updated":"2022-03-13 08:47:11","deck":"Cerebro (now known as Cerebra) is a large computer device inside the X-Mansion that acts as a conduit and magnifier for telepaths. It is used primarily as a way to locate mutants and was created by Professor Charles Xavier.","description":"

    History

    Cerebro (from the Portuguese and Spanish word for brain) has also been known as \"The Founder\", \"Cerebro Prime\", \"Cyberno\", and is currently known as \"Cerebra.\" It was first created when Professor X needed some way to find Scott Summers. He built a makeshift device called Cyberno and it helped him to locate Scott. Cerebro started as a simple control pannel built into Professor X's desk. Cerebro soon grew and required a special room in the X-Mansion. As years past, Cerebro has since then been replaced by its \"sister\" version called Cerebra and has over the years been used to find or locate many mutants, including some of the best known X-Men. Some of them, most notably Scott \"Cyclops\" Summers, Jean Grey, and Emma Frost, have relied on the device in their roles as X-Men almost as much as Xavier has himself.

    At one point the X-Men villain Bastion stole Cerebro from the X-Mansion and merged with it, thus creating a self-aware version. This was done so that the human-Sentinel hybrid had a means of better hunting down and killing mutants. This version of Cerebro was eventually neutralized and destroyed by the X-Men.

    In recent years, the depiction of Cerebro/Cerebra in the X-Men comics has undergone a change to reflect the appearance of Cerebro in the popular X-Men films.

    Function

    \"Emma
    Emma Frost using Cerebra

    Cerebro/Cerebra's has the ability to magnified a telepaths abilities to extreme levels. While wearing the headset a telepath can feel the heartbeat of almost every mutant in the world, which allows them to perceive and know the location of almost every mutant around the globe. Any person has the ability to use Cerebro/Cerebra but telepaths receive best results due to their telepathic nature. On several occasions, there has been mini modified versions of Cerebra, allowing anyone to use them within an unknown radius, that links to the main computer network.

    Its mechanical patience being both infinite and inexhaustible.

    Some mutants have shown an ability to shield or protect themselves from Cerebro, most notably Magneto. Some are able to use telepathy or another power in order to accomplish this, while others like Magneto (via his specially designed helmet) do so through technology.

    In Other Media

    Cerebro has been depicted in various X-Men adaptations in other media, from animated series to motion pictures, to video games. The following is a brief list.

    Animation

    • X-Men: The Animated Series
    • X-Men: Evolution
    • Wolverine and the X-Men

    X-Men Film Trilogy

    • X-Men
    • X-Men United
    • X-Men: The Last Stand

    X-Men: First Class

    Video Games

    • Marvel: Ultimate Alliance
    • X-Men Legends
    \"No
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7310/","id":7310,"name":"The Return of the Blob","issue_number":"7"},"id":15073,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31599/2664467-new_x_men_138.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31599/2664467-new_x_men_138.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31599/2664467-new_x_men_138.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31599/2664467-new_x_men_138.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31599/2664467-new_x_men_138.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31599/2664467-new_x_men_138.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31599/2664467-new_x_men_138.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31599/2664467-new_x_men_138.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31599/2664467-new_x_men_138.jpg","image_tags":"All Images"},"name":"Cerebro","site_detail_url":"https://comicvine.gamespot.com/cerebro/4055-15073/","start_year":"1964"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-15441/","count_of_issue_appearances":74,"date_added":"2008-06-06 11:27:51","date_last_updated":"2015-12-29 19:02:30","deck":"Spider-Man drove his very own car for a brief time in the funky 1970's.","description":"

    Brief History

    Spider-Man was asked to be a sponsor of a car company called Carter and Lombado. Spider-Man accepted but the company asked Spider-Man for his own car. The Human Torch helped Spider-Man to build the car. The Spider-Mobile can spin webs and has a built in Spider-Signal. Spider-Man used the Spider-Mobile against Hammerhead and Mysterio, but was tricked by Mysterio into driving it off a pier. After wrecking it it was rebuilt and modified by the Tinkerer to drive along walls and used against Spider-Man who prombtly thrashed it and returned it to Carter and Lobado. The car would not be seen for many years until the Amazing Spider-Man #600 was published, where the Spider-Mobile appeared standing in a museum, where it was being mocked by kids.

    Creation

    The Spider-Mobile was created in the comics perhaps because of the Spider-Mobile toy that was made. Many action figures based on comicbook characters get their own vehicles and other add-ons, even if those things never appeared in the comics themselves. Perhaps it was done so that

    Other Versions

    Old Man Logan

    \"Spider-Mobile
    Spider-Mobile in Old Man Logan

    In this alternate future story the Spider-mobile was owned by Hawkeye and served as transport for him and Wolverine throughout most of the series. The car had been target of some heavy modifications by Hawkeye.

    Merchandise

    \"No
    • The Spider-Mobile was originally created in order to help entice toy companies, though contrary to popular belief, it was not created at the behest of any specific toy manufacturers. Two separate Spider-Mobile toys were produced by Mego in the 1970's,
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-14117/","id":14117,"name":"Betrayed","issue_number":"130"},"id":15441,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/61625/1542737-amazing_spiderman_600_spider_mobile.jpg","image_tags":"All Images"},"name":"Spider-Mobile","site_detail_url":"https://comicvine.gamespot.com/spider-mobile/4055-15441/","start_year":"1974"},{"aliases":"Helmet of Power\r\nCornerstone of Water\r\nCrown of Lemuria\r\nCrown of Wisdom\r\nHelmet of the Ancients\r\nSupreme Sceptre of Life and Death\r\nCrown of Lost Lemuria","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-15780/","count_of_issue_appearances":130,"date_added":"2008-06-06 11:27:51","date_last_updated":"2016-03-06 02:52:25","deck":"One of the most powerful talismens of black magic known to man, the Serpent Crown bears the image of its master, Set, the demon that first brought death into the world.","description":"

    History

    The Serpent Crown was covered in material to reduce its power changing its appearance. It first appeared as the Helmet of Power in the one-shot book Iron Man and Sub-Mariner vol 1 #1 (April, 1968). Its true appearance was revealed in Sub-Mariner vol 1 #9 (January, 1969).

    The Serpent Crown is a powerful mystical and very dangerous object which is worn upon the head. It confers the ability to read and control minds (anyone within the sound of the voice of the one wearing the crown), superhuman strength, the power to levitate and telekinetically move others and objects, it bestows the ability to create elaborate illusions, and the crown can project massively destructive bolts of mystical energy and even the ability to manipulate energy and matter.

    The crown was created by a race of Serpent Men (who had been created by Set himself millennia before) allied with Lemurian scientists under the direction of the Serpent God, to allow them a conduit to their god.

    However, when the Serpent Men were about to access the power of the Crown the Great Cataclysm occurred. This event wrought disasters all over the world, sink both Atlantis and Lemuria and killing most of the remaining Serpent Men. The Crown itself would be lost for centuries.

    Finally unearthed by a new race of Lemurians (Homo mermanus), their Emperor, Naga donned the Crown and immediately fell under the control of the Serpent God. Naga wore the Crown for years, rarely taking it off and used its powers in the name of Set. Over time exposure to the Crown altered his appearance, his skin went from a pale blue to a scaly green; also over the years the Crown’s influence was also felt by the general populous altering them similarly.

    Eventually, the Crown was stolen from Naga as he slept by a rebel named Pyscatos. He and his allies fled to Antarctica where they began a civilization known as the “Ancients”, they are able to develop telepathy and other similar mental powers through the careful use of the Serpent Crown, but manage to stave off control by encasing the Crown in an unknown substance changing its appearance. These safety measures would prove to not be enough as finally Pyscatos fell under the control of Set and he caused a landslide which ended the ‘Ancient’ civilization. Again, the Serpent Crown was buried and lost, where it remained until the 20th century.

    In 1920 Captain Leonard Mckenzie led an expedition to Antarctica where one of the members of the party, Paul Destine, discovered an odd helmet. Donning the “Helmet of Power”, Destine found that his latent psionic powers were awakened and greatly increased and his strength is greatly augmented as well. Thought lost by the rest of the expedition he is left there, but he survives by use of the remaining ‘Ancient’ technology to put himself in suspended animation. Emerging decades later, Destine found his powers further increased from his time in suspended animation.

    Calling himself Destiny, he returned to the American continent just after World War II and made a bid at world domination, but was opposed by the son of Captain Mckenzie himself, Namor. After Destiny swiftly defeated Namor and left him an amnesiac for decades.

    Eventually Namor arose again to battle Destiny, and during their battle Destiny’s mind snapped he attempted to use his power without the Helmet and fell to his death when he thought he could levitate. Namor took the Helmet and returned with it to Atlantis.

    There the Serpent Crown begins to overcome its protective casing and mentally takes Namor’s consort, Lady Dorma, under its control and through her the rest of the Kingdom. Namor then dons the Helmet himself and through force of will frees the Atlanteans. Karthon the Quester eventually recovered the Crown along with Namor as a prisoner and returned to Lemuria. Naga quickly wore the Crown upon Karthon's return and Namor stood defiant against Naga.

    Namor and Naga soon engaged each other in battle while Karthon, observing Namor's nobility and Naga's sadism, was having regrets about serving Naga. Namor was about to be swallowed up by a pit created by Naga when Karthon drew his sword and killed Naga.

    Namor and Karthon left the Crown on Naga and the creation of the pit caused earthquakes that swallowed Naga and the Crown beneath the ocean floor.

    The Crown is recovered by Warlord Krang who delivers it to the superhuman criminal, Viper who in turn kidnaps the President of Roxxon Oil and places the Serpent Crown upon his head. He immediately falls under the influence of Set. Captain America intervenes and the Serpent Crown in lost in a sewer.

    The Avengers travel to the Squadron Supreme’s dimension (Earth 712), where they free that Earth from the control of the Serpent Crown, unfortunately falling under its influence only briefly. They return to Earth 616 with that universe’s Serpent Crown but drop it in the Pacific Ocean during a battle with the Living Laser.

    Hugh Jones under the control of this universe’s Serpent Crown detects and finds the Serpent Crown from Earth-712 and mystically merges the two to create a Serpent Crown twice as powerful as the original.

    He then mentally takes over the population of Washington D.C., but Jones comes into conflict with a group of heroes including the Thing and Scarlet Witch. Scarlet Witch engages the Serpent God on the astral plane, distracting it, as Thing manages to get close enough to Jones to remove the Crown from his head.

    The Serpent Crown is brought to Project: PEGASUS for study. Set exerts its influence yet again taking over the entire facility, including the then head-of-security, Quasar. The staff begins working to transport serpent Crowns from all the other dimensions to merge them with the original from Earth-616. They amass 770 such Crowns and merge them into one giant Crown in which to summon the Serpent God, but before they can finish the spell Dr. Strange, Spider-man, Thing, and Scarlet Witch intervene and use the Cosmic Cube to destroy the giant Serpent Crown. Dr. Strange then casts an exorcising spell to remove Set from this plane forever. But with the loss of many of his talismans the spell eventually weakens.

    The Deviant priest Ghaur uses this opportunity to create another giant Serpent Crown in which to summon Set to this plane and is briefly successful, but Set is fought back into Limbo by Thor, Thing, Dr. Strange, and Quasar, and is apparently destroyed by Demogorge. The Crown itself was lost in an underground pit where it remains to this day. The event is popularly referred to as Atlantis Attacks.

    In Mystic Arcana, it was revealed that the Serpent Crown is one of the four cornerstones of creation. Ian McNee located and retrieved (through many trials and difficulties) all of the four artifacts. The Serpent Crown was in the possession of Nagala at the bottom of the ocean. In Secret Avengers, Beast revealed that there are more than one Serpent Crowns. Roxxon tried to transport one, but the Secret Avengers surgically intercepted and recovered the artifact for Beast's analysis. Then Nova discovered one in space, and was so enthralled by its power he took off his Worldmind Helmet and began to wear this Serpent Crown.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108670/","id":108670,"name":"Where Walk The Immortals!; ...And Evil Shall Beckon!","issue_number":"101"},"id":15780,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2879393-ohotmu_avengers__1___page_29.jpg","image_tags":"All Images,Earth-616 Serpent Crown"},"name":"Serpent Crown","site_detail_url":"https://comicvine.gamespot.com/serpent-crown/4055-15780/","start_year":"1968"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-31963/","count_of_issue_appearances":164,"date_added":"2008-06-06 11:27:51","date_last_updated":"2020-02-02 17:30:04","deck":"The H-Dial, or HERO Dial has been used by several to temporarily gain superpowers; however, it is a dangerous object and has been misused a number of times.","description":"

    History

    The H-Dial is a powerful artifact capable of transforming the user for a limited time into a superhero. First found by Robby Reed, he used it to transform into a plethora of superheroes to defend his hometown from aliens, mutants, robots and a menagerie of odd disasters drawn to the dial. Long after two new H-Dials were found by two friends named Chris King and Vicki Grant. The friends used their H-Dials to combat a strange array of villains while being pursued by a relentless foe known as The Master, and aided by a mysterious ally, known as The Wizard. Eventually, it was revealed both the Master and the Wizard were alter-egos of Robby Reed, who had separated into them by using the Dial to disarm a dead man's switch and had never been able to recover the dial to return to his normal shape until then.

    The superhero Hero Cruz wielded a form of the Dial inset in his belt; it was confirmed this version functioned by merging temporarily different versions of people through Hypertime.

    Dialing it backwards (O-R-E-H) produces monstrous transformations ( Mindquake).

    The H-Dial is mysterious in the sense that in spite of having been confirmed as been seen as far as 20,000 BC, it contains Interlac scripture, not invented until the time of the Legion of Super-heroes in the 30th century. This is due to time-traveling, but the origin of the Dial is still unresolved. Several have possessed its power, and most have come to regret it. For a limited time, it transforms the user into a superhero, one different each time, though at the end of an hour, the transformation must be reversed; if this is not undone, the hero's personality starts overtaking the host mind until the original is completely rewritten. A H-E-R-O series was issued, and at its end, the Dial was lost in space in 20,000 BC.

    Final Crisis

    The alchemist Megistus desired the Dial to aid in his alchemical quest to shield humanity from the Final Crisis by mutating it, and Robby Reed managed to defeat Megistus envoy in New York by teaming up with the Metal Men and lending the Dial to Tin to transform into a more resilient hero to battle the monster.

    New 52

    Following the Flashpoint event, there are multiple H-Dials scattered across the world. The creator and origin is unknown, though they have been shown to have existed in ancient times (set up and weiled by a woman named Laodice). One of these H-Dials is found by Nelson Jent, who teams up with another weilder, Roxie Hodder (who goes by the name of Manteau). However, the H-Dials are not working properly, leaving the user with bizarre and impractical heroes. Manteau is trying to figure out what's wrong with the Dials, and brings Nelson on her quest. They are hunted by the 'shadow on the line', a mysterious figure who is hunting down H-Dial users (having killed Ex Nihilo while she possessed a dial). Another Dial has been confirmed as being used by a hero in Canada.

    Functionality of the H-Dial

    This incarnation of the H-Dial takes the powers of heroes from alternate universes, leaving them powerless as long as they are in use. The wielders are left with false memories, and eventually can no longer differentiate themselves from the heroes they have dialed.

    S-I-D-E Dial

    Recently, Roxie and Nelson have obtained a Dial from the Canadian military that they believed to be another H Dial. However, it would not dial up a hero and while interrogating its user, who was in a coma-like state, they discovered that the sequence 7-4-3-3 was used to activate, spelling out S-I-D-E, as in 'sidekick.' The sidekick is instinctively subservient to the hero, explaining why Mason Jones listened to Nelson during their encounters.

    Dial Bunch Dials

    The team know as the Dial Bunch have acces to several different kinds of dials, with differents qualities.

    G-E-A-R Dial: Used by Nem, it can summons any kin of machinery from other dimensions.

    J-U-M-P Dial: Used by Bansa, it allows them to travel between dimensions.

    Dial Tapper: Used by Ejad, it can copy the functions of any other dials close to it.

    AutoDial: a dial which always is operating in automatic mode.

    D-O-O-M Dial: Used by the Lost Operator, the Dial-D it can summons different kinds of apocalypses to the worlds selected.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-117291/","id":117291,"name":"Look What Happened to J'onn J'onzz!","issue_number":"156"},"id":31963,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/2815117-dialh_cv11_o8pd9l67sp.jpg","image_tags":"All Images,Artwork,H-Dial"},"name":"H Dial","site_detail_url":"https://comicvine.gamespot.com/h-dial/4055-31963/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-32213/","count_of_issue_appearances":1051,"date_added":"2008-06-06 11:27:51","date_last_updated":"2021-01-31 08:13:16","deck":"When Superman's native planet was destroyed, pieces of it became irradiated by the explosion, the result is Kryptonite. Contact with, or even proximity to Kryptonite can cause injury or death to Kryptonians.","description":"

    History

    Kryptonite is an ore from the planet Krypton which releases radiation. Depending on the color of the kryptonite, it has different effects. Most kryptonite only affects Kryptonians.

    Kryptonite was first introduced in comics in 1949. It originated as a plot device from the Superman radio show. It's effect on Superman has become so commonly known that the word has entered the English language, defined as someone's weakness, similar to an Achilles heel or something that repulses. It can be slang for weaknesses as varied from crack cocaine to chocolate cake. \"Kryptonite\" has been licensed to a lock company.

    Forms of Kryptonite

    While Green Kryptonite is the most common form, Kryptonite has been discovered in various forms, generally differing in both appearance and effect.

    The various forms of Kryptonite are

    Black Kryptonite - In comics it is capable of making Superman a darker, evil being. But it first made an appearance in Smallville (the television series) where it is actually superheated Green Kryptonite that splits psyches of anyone into two physical manifestations: the normal mind and the darker, evil personality. This Kryptonite is different in the fact that it could effect both Kryptonians and humans (Clark and Lex). The similar kryptonite also appeared in Superman III movie. Although this version of green kryptonite was laced with tar. The tar-laced kryptonite acted like a red kryptonite that removed Superman's inhibitions. Later, Superman (Christopher Reeve) was split into two beings, an evil Superman and a good Clark Kent.

    Blue Kryptonite - It is \"Green Kryptonite\" to Bizarro and in some cartoons and video games it heals Superman. In Smallville it appears in Episode 8 of Season 7 titled \"Blue\" and it makes Kal-El powerless as long as it is in contact with his skin, but on Krypton it is considered an honor to receive it as a ring on one's finger. It's effects are reversed on Clark's \"Bizarro\" twin, super charging him until he explodes in \"Persona\" (Season 7, Episode 10). Zod tries to use a blue kryptonite knife in \"Salvation\" (Season 9, Episode 21) to stay on Earth rather than be pulled to another dimension like his fellow Kryptonians, but takes the knife himself and Zod is sent away. In the New 52 reality it's said than blue kryptonite is the most lethal version of the mineral because induce spiritual death.

    Pink Kryptonite - In Supergirl #79, when Linda Danvers takes the original Kara Zor-El's place and arrives in the Pre-Crisis era, there is a comical scene where Superman is apparently exposed to Pink Kryptonite, with the implication that it temporarily turned him gay.

    Green Kryptonite - By far the most common variation. Green Kryptonite can weaken those of Kryptonian descent (weakening powers and abilities as well as strength), and in large enough doses or for long enough time it is lethal. In Smallville Green Kryptonite grants normal humans or other life mutations that make them super-powered and on most occasions psychotic. Here it also weakens Clark, at varying degrees including simply making him a little more human or leaving him on the brink of death. In New 52 appearances, the Kryptonite is again referred to as being rare, is shown that can be used as an energy source, to kryptonian rockets and possible to other vehicles. The mineral doesn't take away the Superman's powers, but is able to decrease it. It is unknown if has effects on humans.

    Gold Kryptonite - It removes the abilities of Kryptonian for a maximum of fifteen seconds, though for a time there was an antidote that granted powers back for a short time.

    Jewel Kryptonite - It comes from the Jewel Mountain range of Krypton. It magnifies the Phantom Zone resident's psychic powers, allowing them to project illusions into the \"real-world\" or to control the minds of non-Phantom Zone's denizens.

    Orange Kryptonite - Gives normal cats Isis and Snooky super powers in Krypto the Superdog #4.

    Red Kryptonite - Affects Superman differently every time for up to 3 days, as no piece of Red Kryptonite has the same effect but it can cause the oddest variety of effects including such things as transformations or even being unable to see anything green. In Smallville, Red Kryptonite removes Clark's inhibitions and cause him to act on all his impulses. In the New 52 DC, the red Kryptonite induce hallucinations and a lost in the grasp on reality.

    Silver Kryptonite - Is harmless, made for Superman's \"Silver Anniversary\". Yet in Smallville it makes Superman paranoid when in his bloodstream, though in reality it was actually a hoax Kryptonite that was part of the BRAIN InterActive Construct-(Brainiac). Silver has made it's return found encased in the Ach-Om Rashay, the Amulet of Mindfulness. Superman was drawn to it and purposely exposed himself to it. It made him \"highly unstable\" as Batman put it. Superman immediately craved brownies and cereal. He viewed the others as if they were cartoons. The only cure was to seek out the other half which countered the effects. It is unknown how much was due to the Kryptonite or how much was due to a magical spell.

    White Kryptonite - Destroys all plant life whether it is native to Krypton or not, created when Kryptonite passed through a weird space cloud.

    X-Kryptonite - Gives non-powered lifeforms (Humans/ Animals) superpowers for a temporary duration. This is what gave Streaky the Supercat his powers, it was created by Supergirl who was seeking an antidote for Green Kryptonite.

    Anti-Kryptonite - This peculiar form of Kryptonite exists in an alternate reality, where Ultraman (that reality's Superman) uses it as a power source. In fact, he gets weaker the farther away he is from it! But Pre-Crisis it is lethal to non-superpowered Kryptonians and killed many of them, it is their \"Green Kryptonite\".

    Slow Kryptonite - is a variety of kryptonite produced by Metallo that affects humans. Why it is called \"Slow Kryptonite\" is because the rays sent out by normal Kryptonite are \"fast\" (high in frequency) and synced with the accelerated Kryptonian body. Slow Kryptonite, which releases \"slow\" rays, is synced with a slow human body, allowing it to affect it. Slow Kryptonite is the \"Green Kryptonite\" to normal humans, but its effect on actual Kryptonians is unknown.

    Magno-Kryptonite - It was artificially created by Nero and it pulls in anything native to Krypton so that not even Bizarro or Superman can escape its pull.

    Bizarro Red Kryptonite - It is the \"Red Kryptonite\" to normal humans.

    Kryponite-X/Kryptisium - Professor Hamilton coined this term to refer to the change that occurred to the Kryptonite that the Cyborg Superman blasted the Eradicator with when it passed through the latter and struck Superman. Instead of being lethal, it restored Superman's powers. Unfortunately, it also apparently clung to him and caused him to absorb solar energy at a rapidly accelerated rate, eventually causing his powers to go out of control and his body to build more mass. Superman was purged of it after battling the Parasite. Not to be confused with X-Kryptonite.

    There have also been hoax kryptonites such as Silver Kryptonite in Smallville (mentioned above), Yellow Kryptonite, Blood Kryptonite, Kryptonite Plus, Purple Spotted Kryptonite and Fake Kryptonite.

    The Kryptonite Ring

    Batman keeps a kryptonite ring inside a lead-lined compartment in his utility belt so that if Superman ever went rogue he would have a chance of controlling him. Lex Luthor once wore a kryptonite ring to protect himself from Superman. Prolonged exposure to it caused him to lose his hand.

    In Smallville, most meteor rocks are shown for the first time or used in the form of rings, usually it is because people think of them as being beautiful rocks, however usually this causes harm to Clark who is unsuspecting of the rings.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-121626/","id":121626,"name":"The Prankster's Radio Program! / The Courtship of the Three Lois Lanes! / Superman Returns to Krypton!","issue_number":"61"},"id":32213,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/12/126923/2672456-kryptonite.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/12/126923/2672456-kryptonite.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/12/126923/2672456-kryptonite.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/12/126923/2672456-kryptonite.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/12/126923/2672456-kryptonite.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/12/126923/2672456-kryptonite.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/12/126923/2672456-kryptonite.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/12/126923/2672456-kryptonite.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/12/126923/2672456-kryptonite.jpg","image_tags":"All Images,Other formats of Kryptonite"},"name":"Kryptonite","site_detail_url":"https://comicvine.gamespot.com/kryptonite/4055-32213/","start_year":"1949"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-32358/","count_of_issue_appearances":21,"date_added":"2008-06-06 11:27:51","date_last_updated":"2017-09-08 08:12:52","deck":"Grendel's weapon of choice.","description":"

    Grendel's forked staff is his primary weapon.

    Hunter Rose originally chose the design in order to further the demonic imagery associated with his alias. In his usual style, Rose added enhancements to the staff that would make it even more deadly. This staff would get passed down to Christine Spar years after Rose's death. I was broken in her final fight with Argent.

    Features

    \"Chris
    Chris examines the fork's capabilities

    The fork is perhaps three or four feet long, thin, and light. The double-forked blade is undetectable by metal detectors or any other security measures, yet its steel blade is razor sharp. The blade itself is retractable, and can be completely hidden in the hilt. In this way he can keep the staff with him at all times as a walking stick, and can still use it as a weapon whenever he chooses.

    It can also fold up into three equally-sized sticks, which he can carry around in a briefcase.

    Circuitry within the staff allows the blade to be electrified with the touch of a button, but the charge doesn't last very long: perhaps a few minutes. The charge is enough to kill someone, or light flammable materials on fire.

    Its blunt end is hard and can be used as a weapon as well; Christine Spar often rammed people in their face or mouth with it, breaking their teeth.

    There is also a radio transmitter located in the staff so he can use it for communication.

    \"Retracting
    Retracting the cable

    The staff has been shown to have at least two options for firing a retractable cable off the end. Christine Spar used it to fire off just the blades, which she then used as a climbing too. Hunter Rose used fired the cable from the blunt end, which seemingly has a short sharp tip that can stick into target surfaces. He used this cable to set up tripwires. Also, he could throw the entire fork at someone, with cable in tow, and then retract the fork back up to him.

    Eppy Thatcher's staff

    \"Using
    Using the laser to cut through a wall

    A similar staff was crafted hundreds of years in the future by crazy genius Eppy Thatcher to be used as a part of his own Grendel persona. Unlike Rose's staff, Thatcher's blade was not retractable (as Thatcher did not use the staff when he was not Grendel). Thatcher's staff used an extremely hard blade, and had technology incorporated into it that allowed him to override other technology such as the church's automated collection plates.

    He could still electrify the blade, and also built a laser into the other end, which he used to cut holes through tough materials.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-128188/","id":128188,"name":null,"issue_number":"2"},"id":32358,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/349956-46506-grendel-fork.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/349956-46506-grendel-fork.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/349956-46506-grendel-fork.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/349956-46506-grendel-fork.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/349956-46506-grendel-fork.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/349956-46506-grendel-fork.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/349956-46506-grendel-fork.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/349956-46506-grendel-fork.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/349956-46506-grendel-fork.jpg","image_tags":"All Images,Grendel's Fork, not for eating"},"name":"Grendel Fork","site_detail_url":"https://comicvine.gamespot.com/grendel-fork/4055-32358/","start_year":"1983"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-34669/","count_of_issue_appearances":13,"date_added":"2008-06-06 11:27:51","date_last_updated":"2013-08-20 02:01:09","deck":"Superman's super powered vehicle which was made almost entirely out of Supermanium. A metal superman formed himself in the heart of a giant star. Said to be near indestructible. It is capable of duplicating all of his abilities in situations where he finds himself powerless.","description":"

    The Supermobile does not just duplicate Superman's powers, it acts as a conduit for the Man of Steel's powers, allowing him to channel them through the vehicle itself. The Supermanium hull of the shields Superman from red solar radiation that would rob him of his powers, making it so that he remains at the height of his abilities as long as he is within the vehicle. When Amazo remarks that no engine on Earth could react as quickly and easily as the Supermobile's, Superman responds, \"You're right about that, Amazo! But who said anything about an engine?\", revealing that the vehicle is powered completely by Superman himself.

    Besides invulnerability and flight, the Supermobile also channels Superman's other powers using the following devices:

    Large mechanical arms mounted on either side of the cockpit area, allowing Superman to both punch and grasp.

    A scope on the control panel which can be adjusted to work with each of Superman's vision-related powers: normal, telescopic, microscopic, x-ray, heat, and night vision.

    Air jets that pop out from various points around the vehicle, allowing Superman to use his super breath if he blows into a face mask attached to the control panel.

    A monitor and other communications and listening devices substitute for his super hearing.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109663/","id":109663,"name":"Superman and Batman-- Outlaws!","issue_number":"148"},"id":34669,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/26751/679459-supermobile_2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/26751/679459-supermobile_2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/26751/679459-supermobile_2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/26751/679459-supermobile_2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/26751/679459-supermobile_2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/26751/679459-supermobile_2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/26751/679459-supermobile_2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/26751/679459-supermobile_2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/26751/679459-supermobile_2.jpg","image_tags":"All Images,Supermobile"},"name":"Supermobile","site_detail_url":"https://comicvine.gamespot.com/supermobile/4055-34669/","start_year":"1965"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40449/","count_of_issue_appearances":107,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-10-21 10:33:51","deck":"Wielded by Nico Minoru, the Staff of One is a hugely powerful magical stave. When activated by a voice command, the Staff of One is able to cast amazing spells but never can be used more than once.","description":"

    History

    The Staff of One was originally wielded by Tina Minoru, mother to Nico and was immensely powerful as the dreaded Dormammu trembled at the sight of it, knowing its power. It was passed onto Nico when Tina tried to stab her with the staff, but Nico's body managed to absorb it without ill effects.

    The Staff of One is used by simply stating a word or phrase, and a spell that relates to that word or phase will occur (e.g. saying \"Smoke\" would cause the Staff of One to release smoke, or \"Caffeine Injection\" charges the target with additional energy). The major limitation of the Staff of One is the fact that each spell can only be used once; if any spell is attempted again the staff will instead have a completely random effect.

    To release the Staff of One Nico must bleed and instinctively repeats the phrase, \"When blood is shed, let the Staff of One emerge!\". It also passes through the middle of her sternum, appearing through whatever clothing she is wearing at the time and piercing anything directly in front of Nico. Anyone can use the Staff of One, even without training or magical affinity, which is partially explained as everyone having magic but most people needing tools to bring it out.

    On the Runaway's trip to New York City, in the year 1907, Nico got caught breaking into a bank that supposedly had a means to get back home. An ancestral version of the Punisher knocked her out and when Nico awoke, she was in a dungeon. Nico's ancestor the Witchbreaker was carrying another magical staff called the Witchbreaker's staff. The Witchbreaker, in actuality Nico's great-grandmother, tortured Nico to see if she had the strength to be a powerful sorceress. After a while the Witchbreaker deemed her worthy. Nico withstood unimaginable pain and this enabled her to gain far greater magics and transformed the appearance of the Staff of One. The staff's new form is not only much more powerful than the original Staff of One, it also increased Nico's ability to use magic without the staff.

    Users outside the Minorus

    • Alex Wilder once wielded the Staff of One.

    • Chase Stein wielded the staff on two separate occasions. The first was when he detoxed the Dagger-obsessed nurse, and second when he held Nico captive.
    • The Witchbreaker: A staff that looks almost identical to the current form of the Staff of One was in the possession of the Witchbreaker.

    List Of Spells Used

    Freeze: Causes Stacey Yorkes to become immobilized

    Freeze: The second time causes pelicans to fly out of the staff

    Smoke: Smoke comes out of the staff to help the Runaways escape

    Away: Nico teleports away from Alex Wilder

    Mud: Mud shoots out of the staff and hits Karolina Dean

    Burst: Causes a group of graffiti artists' spray paint cans to explode

    Rock and Roll: Makes an earthquake that caves in the hostel

    Waterproof: Makes a waterproof bubble that the Runaways travel in to get to the Pride

    Float On: Nico makes the Stein's float in the air

    Dance: Alex uses the staff to unfreeze Nico

    Bondage: Alex uses the staff again to shackle Karolina's parents (off panel)

    Bondage: Alex unlocks the secret of using the same spell twice and uses the spell to shackle Karolina

    Hands Off: Nico destroys Alex's Fistigons

    Free your minds: An evil witch (Marie LeVeau) casts a spell that turns some of Nico's new friends against her. This spell cancels this spell.

    Wardrobe Malfunction: Changes Marie back from wolf to human

    Deflector Shields: Causes Marie's magical attack to bounce off of Nico

    Deconstruct: Nico uses this spell to take apart one of the Wrecking Crew

    Flashback: Makes Nico see the last few moments of a future version of Gert's life.

    Rockstars: Flaming rocks fly out of Nico's staff. But they hit Old Lace instead of Victor Mancha.

    You Suck: Causes Turbo's wrist turbines to spin in reverse, sucking air in and causing them to malfunction

    Insulation: Temporarily takes away Victor Mancha's powers

    Shine on You Crazy Diamond: Encases Ultron in a diamond

    Fumigation: Nico uses this in a battle with Tarantula (off panel)

    Fumigation: Nico forgets she already used this spell and it teleports her and Karolina to the outskirts of Los Angeles.

    Acid Rain: Makes a cloud of Acid rain that dissolve the security daemons

    Old Lace to Old Yeller: Changes Old Lace into a dog

    Hellfire: Shoots fire balls at Spider Man

    Dreamtime: Puts Spider-Man to sleep

    Sunburst: Shoots a beam of light at a Cloak impostor

    Detox: Chase Stein uses this to flush the MGH out of the Cloak impostor's system

    Get to Work: Transforms Chase's \"List of things to do when I'm 18\" into a wrench

    Revelations: When a past version of Geoffrey Wilder disguises himself as Alex, Nico uses this to change him to his true form.

    Shut Up: Knocks Chase out of the way with spiraling energy

    Pixies Find the Leak: Nico conjures up Pixies to find out how the Pride have been spying on them.

    Forget: Erases Geoffrey Wilder's memories of what happened

    Caffeine Injection: Gives Molly Hayes a boost of energy

    Now here comes the sweet talk: Gives Xavin the voice of a monster's wife to soothe him.

    Get Lost: Disorients Kate Bishop

    Chill Out: Freezes all of the Runaways and Young Avengers, making them extremely cold

    Wake Up: Wakes everyone up when they were knocked unconscious by Noh-Varr

    Prodigum Effodio (Excavating Monster in Latin): Creates a monster created out of a shield that gets the team into the Cube

    Be Quiet: Chase uses this spell to silence Nico, making her talk in a whisper

    Pretty soon, I'll just be a bad dream: Knocks Nico unconscious

    Going Down: Phases the Runaways through the roof to escape the Punisher

    Crash: Puts the Kingpin's ninjas to sleep

    Open Sesame: Makes bank employees open their vaults

    In Other Media

    Film

    Doctor Strange

    \"The
    The Staff in the movie

    The Staff of One appears in the live-action Doctor Strange movie, wielded by Tina Minoru.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106043/","id":106043,"name":"Pride And Joy: Chapter 4","issue_number":"4"},"id":40449,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/290133-64778-staff-of-one.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/290133-64778-staff-of-one.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/290133-64778-staff-of-one.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/290133-64778-staff-of-one.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/290133-64778-staff-of-one.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/290133-64778-staff-of-one.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/290133-64778-staff-of-one.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/290133-64778-staff-of-one.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/290133-64778-staff-of-one.jpg","image_tags":"All Images,Nico with the Staff"},"name":"Staff of One","site_detail_url":"https://comicvine.gamespot.com/staff-of-one/4055-40449/","start_year":"2003"},{"aliases":"SHIELD Helicarrier\r\nH.A.M.M.E.R. Helicarrier\r\nHAMMER Helicarrier","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40700/","count_of_issue_appearances":1082,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-11-14 15:10:46","deck":"The Helicarrier is the mobile vehicle used by SHIELD as their Headquarters of the U.N. Peacekeeping Taskforce. There are at least 10 known.","description":"

    Origin

    The Helicarrier is a flying aircraft carrier that acts as a mobile HQ for SHIELD. It is powered by a fusion core, and partially supported by \"repeller rays\". At least six have been seen, with variants used by other organizations. They cost at least 9 billion dollars each.

    Models

    Helicarrier Gold

    In Mighty Avengers #1, Iron Man introduced Helicarrier Gold, basically a gold Helicarrier. Sadly, it was recently destroyed by Red Hulk in .

    Silvereye

    In Blade, the Vampire-hunting SHIELD-offshoot Silvereye used a custom carrier called Blackeye-1, with a silver-impregnated hull and a cloud-generator for stealth. Destroyed in Blade: Vampire Hunter #6.

    The Behemoth

    White Whale

    In Livewires, the mysterious villain codenamed \"White Whale\" (a hive-mind of Nick Fury LMDs) was stationed on a Helicarrier that had been recovered from wreckage and repaired.

    H.A.T.E

    The Aeromarine is a cluster of submarines with rocket engines bolted together, used in Nextwave. It is armed with Drop Bears and a squadron of H.A.T.E Pterosuits, Samuroid Batch 23, the very phallic-looking Armageddon Horn, and a lot of big @%^$# guns.

    Alternate Realities

    Ultimate Marvel

    Ultimate S.H.I.E.L.D uses a fleet of airborne carriers, retrofitted from Naval sea vessels using a special rocket engine designed by Tony Stark. Most were destroyed by the Chitauri in Micronesia. They were also given a Helicarrier by Ultimate Galactus.

    Squadron Supreme

    Colonel Fury had a Helicarrier commissioned and built by Tucker Ford, the Biogeneral. Fury is using it as the mobile headquarters of the new Squadron Supreme.

    Marvel Zombies

    In a desperate attempt to save mutants and humans alike, Nick Fury summons all uninfected superheroes to the S.H.I.E.L.D Helicarrier to develop a cure and rescue as many humans as they can. During one of the evacuations, nearly all of the uninfected guarding the Helicarrier lead by Magneto become casualties by being eaten whole, or have been infected.

    In Other Media

    Film

    Nick Fury: Agent of S.H.I.E.L.D. (1998)

    The Helicarrier appears in the made-for-TV film.

    The Avengers (2012)

    \"The
    The Helicarrier in The Avengers movie

    The Hellicarrier makes a major appearance in the film, where it is used as the primary headquarters of Nick Fury and the Avengers for most of the movie. The Helicarrier is critically damaged when a brainwashed Hawkeye leads an attack on the ship in order to rescue Loki, and as such is absent for most of the final battle.

    The Helicarrier is also shown to house a fleet of Quinjets.

    Animated Films

    The Hellicarrier appears in Ultimate Avengers, Iron Man: Rise of Technovore, and Avengers Confidential: Black Widow and Punisher.

    Captain America: The Winter Soldier (2014)

    \"The
    The three next generation Helicarriers

    With the original model damaged beyond repair, three new Helicarriers are commissioned as part of Project Insight. It is later revealed that HYDRA has infiltrated S.H.I.E.L.D. and plans to use the ships to kill large swaths of people as part of a plan to force the world to bow to the organization as their new masters. The plan is thwarted when Captain America and his new ally, the Falcon, manage to destroy the three Helicarriers before they can begin firing.

    The Avengers: Age of Ultron (2015)

    During the final act, Nick Fury brings an old Helicarrier out of storage to help evacuate Sokovia. War Machine helps defend the ship from Ultron's duplicate bodies while the civilians are brought aboard.

    Deadpool (2016)

    \"The
    The decommissioned Helicarrier

    The final battle between Deadpool (assisted by Colossus and Negasonic Teenage Warhead) and Ajax's forces takes place on an old decommissioned Helicarrier. Most of the ship is destroyed in the ensuing fight.

    Video Games

    Helicarriers have appeared in Marvel Ultimate Alliance and its sequel, Ultimate Spider-Man, Spider-Man: Friend Or Foe, Spider-Man: Web of Shadows, Spider-Man: Shattered Dimensions, Iron Man 2, Marvel vs. Capcom 3, Avengers Alliance, and Lego Marvel Super Heroes.

    Television

    \"The
    The Tricarrier from Ultimate Spider-Man

    The Helicarrier has appeared in Spider-Man and His Amazing Friends, Spider-Man: The Animated Series, X-Men: Evolution, The Super Hero Squad Show, Iron Man: Armored Adventures, The Avengers: Earth's Mightiest Heroes, Ultimate Spider-Man, and Avengers Assemble.

    Toys

    \"From
    From Hasbro
    • Hasbro released a massive Helicarrier toy for its line based off the Avengers live-action movie.
    • Hasbro later released an even larger Helicarrier toy as an San Diego Comic-Con exclusive.
    • Lego also released a \"Helicarrier Breakout\" kit for the movie, but the set only depicted the detainment center from inside the Helicarrier, rather than the ship itself.
    • A Helicarrier toy was relased as part of Hasbro's Marvel Super Hero Adventures line as part of a box set that also included War Machine and the Hulk.
    • Hot Toys began work on a massive Helicarrier model kit based on the versions seen in Captain America: The Winter Soldier, but the kit never made it to active production.
    • The Helicarrier later received a full Lego kit as part of the Avengers: Age of Ultron line.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111069/","id":111069,"name":"The Man For The Job!","issue_number":"135"},"id":40700,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/533/80339-117414-helicarrier.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/533/80339-117414-helicarrier.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/533/80339-117414-helicarrier.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/533/80339-117414-helicarrier.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/533/80339-117414-helicarrier.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/533/80339-117414-helicarrier.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/533/80339-117414-helicarrier.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/533/80339-117414-helicarrier.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/533/80339-117414-helicarrier.jpg","image_tags":"All Images,The Helicarrier"},"name":"S.H.I.E.L.D. Helicarrier","site_detail_url":"https://comicvine.gamespot.com/s-h-i-e-l-d-helicarrier/4055-40700/","start_year":"1965"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40759/","count_of_issue_appearances":2582,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-08-14 01:23:24","deck":"A virtually indestructible man-made metal. The strongest metal known. Unbreakable and razor-sharp, it cuts through steel like a paper. \nWithout a healing factor it is poisonous inside the body.","description":"

    History

    Adamantium is a virtually indestructible man-made steel alloy which does not occur in nature and whose exact chemical composition is a United States government classified secret. Adamantium is not an element: its properties do not qualify it for any known space on the Periodic Table of Elements. Rather, adamantium is a series of three closely-related compounds of Iron created through a secret process discovered by the metallurgist, Dr. Myron MacLain.

    MacLain began experimenting with the process that creates adamantium as a young scientist in the employ of the United States government in the early 1940s. By accident he created a special adamantium compound, which is more durable than any form of adamantium created since, and then through another accident, fused this adamantium sample he had created with a sample of an unknown metal catalyst and the metal which is now known to have been Wakandan Vibranium. The result was the large rounded specimen of alloy which is the most virtually indestructible substance known to man. This alloy specimen was given to Captain America to serve as his Shield. The exact chemical composition of Captain America's shield and the exact degree to which it is indestructible have never been determined, nor has MacLain or anyone else ever learned how to duplicate either the special adamantium compound used in the creation of the shield, which Is known as Proto-Adamantium, or the process which fused the Proto-Adamantium with the Wakandan Vibranium.

    Over the following decades, MacLain experimented, attempting to duplicate the process that created adamantium. Finally, in recent years, although he realized that he could never again create Proto-Adamantium, he succeeded in developing the process by which the substance known as True Adamantium is created. True Adamantium is nearly as strong as the Proto-Adamantium used to create Captain America's shield, and is, for virtually all practical purposes, indestructible. The degree of indestructibility varies directly with the thickness of the adamantium. A direct blow from Thor's hammer, Mjolnir, conveyed with the thunder god's full strength, will only slightly dent a solid cylinder of true adamantium. A sufficient mass of adamantium could survive a direct hit from a nuclear weapon.

    Adamantium is created through the mixing of certain chemical resins whose composition is a United States government secret. For eight minutes after the resins are mixed, the adamantium can be molded into a particular shape as long as it is kept at a temperature of 1,500 degrees Fahrenheit. After this brief period, the process of creating adamantium is completed, and it is cured. The extremely stable molecular structure of the adamantium prevents it from being molded further, even if the temperature remains high enough to keep it in liquid form. Only a device called a “Molecular Rearranger” can alter the form of hardened adamantium.

    The United States government has shared the secret of adamantium’s composition with certain of its allies, and the secret has also fallen into the hands of various criminals, such as the Constrictor, who has made special weaponry from adamantium. Wolverine possesses indestructible claws and skeleton of true adamantium that was bonded into his bones during Weapon X. The outer portion of the robotic body of Ultron is also composed entirely of true adamantium, although Ultron's inner mechanisms are not.

    Adamantium is extraordinarily expensive to produce, Therefore, certain parties who wish to use adamantium on a large scale have resorted to utilizing a similar, but somewhat weaker compound similar to True Adamantium called Secondary Adamantium. Although Secondary Adamantium is still far stronger than even titanium steel, it can be destroyed by sufficiently great amounts of force. Blastaar's energy discharges and the vibratory force created by the Overkill Horn have both proved able to destroy Secondary Adamantium, although they would probably have little or no effect on True Adamantium. The sentient computer known as F.A.U.S.T. had a casing made of Secondary Adamantium, and the factory which housed it was also constructed to a large extent of Secondary Adamantium; both have been destroyed. The Red Skull and the Hate-Monger had a dome of Secondary Adamantium constructed to protect their Island fortress; the dome was destroyed by the Overkill Horn and by powerful incendiary bombs.

    Objects made of Adamantium

    Objects made of Adamantium in the Marvel Universe include:

    Some S.P.I.N. Tech darts were tipped with adamantium needles.

    The US Army used Adamantium bullets on the Hulk during his rampage of New York City.

    Also a Nanotech carried cure for Gamma Mutation made by Doc Green.

    Types of adamantium

    Proto-Adamantium

    Proto-Adamantium is the original Adamantium created by Dr. MacLain. This is the Adamantium present in Captain America's Shield. It has never been recreated.

    True adamantium

    True Adamantium is the attempt at recreation of Proto-Adamantium. It is nearly as strong/durable and is possible to be produced. It is impossible to break. It could withstand a nuclear bomb, though Thor with all his strength and Mjolnir has slightly dented a small cylinder of it. Being this strong, it is very rare and expensive to create/manipulate and is top secret in the US government, though it has shared it with some of their \"allies\".

    Secondary adamantium

    This type is much more easier to work with, making it much more cost effective though at the expense of its strength. Someone with super-strength (say the Hulk) can break it or warp it. Also referred to as Adamantium Steel.

    Adamantium Beta

    This was created by an experiment involving Wolverine. As a side effect of bonding true adamantium with his bones, and his rapid healing ability there was a molecular change which has adapted adamantium to the biology of normal bone. This Adamantium acts like a biological component, regenerating as his bones do.

    Adamantium Allotropes

    In X-Men #191, when confronting Wolverine, one of the Children of the Vault named Serafina claims that adamantium has thirteen allotropes, all of which are \"unstable, and short-lived, but virulently poisonous\". She throws a small device that clamps onto his claws and makes them glow green, claiming that it is \"adamantium nine\". This causes Wolverine to become stricken, incoherent and collapse.

    Carbonadium

    Russia wanted to create its own type of adamantium, and thus carbonadium was born. This form of adamantium is not as durable as true adamantium, but it is also flexible. For most purposes, however, carbonadium is still virtually indestructible. Omega Red is probably the best known to use this metal with his tentacles, which act as a conduit for his energy draining powers. For more information see Carbonadium. Like adamantium it is poisonous to the body without a healing factor. Omega Red's healing factor is not enough to keep the poison at bay, perhaps it is more potent than adamantium or Omega Red's healing factor is less effective than Wolverine's.

    Breaking the Unbreakable

    Though adamantium is said to be unbreakable and indestructible, there have been instances when objects made of the metal have been damaged. Images in Gallery.

    Fatal Attractions

    In in X-Men #25 from the Fatal Attractions story arc, Magneto was able to remove the adamantium bonded to Wolverine by manipulating the metal and pulling it from his body through his skin. Magneto's powers allow him to reshape and manipulate indestructible metals including adamantium.

    Wolverine: The End

    In Wolverine: The End, a tale that told about an elderly Wolverine in the future, some of Logan's claws were broken. How they got in this condition was never specified.

    Ultimate Wolverine vs Hulk

    \"Ultimate
    Ultimate Spinal Surgery

    In the miniseries Ultimate Wolverine Vs Hulk, it appears like Hulk breaks adamantium when he rips the mutant in half. Upon closer inspection and the application of a little logic, it's becomes apparent that though Hulk did rip Wolverine apart, he didn't actually break adamantium. For the clearest explanation as to why Wolverine's spine, but not the adamantium, could be broken, read the following.

    Satyrquaze says:

    \"As far as Hulk breaking Wolverine in half... (quick biology and metallurgy lesson here) Despite propaganda saying otherwise, Wolverine's skeleton is not completely coated with adamantium, if it were he couldn't move. Adamantium porously coats each bone individually (and it would have to be porous because blood and oxygen is required to get inside the bone to the marrow for a person to live). Also there is a malleable disc between each bone (especially in vertebrae in the spine) which allows freedom of movement along with joints and ligaments(which wouldn't be coated in adamantium if Wolverine hopes to do things like walk, stand, move in the slightest...).Now what Hulk did was indeed rip Logan apart, but it's most likely that Wolverine's spine separated at it's weakest point (the discs between each vertebra) and everything tore apart quite easily from there. So no, Hulk more than likely didn't break adamantium at all in this instance. Not to say that he couldn't if suitably pissed.\"

    Hulk can damage adamantium, or at least adamantium alloys (as seen below), but he did not do so in this instance.

    Adamantium Ball

    In MARVEL TEAM-UP #18, Hulk fought the villain Blastaar in a factory built with an adamantium alloy (not true admantium). To defeat the enemy, he wrapped the metal around him, formed a ball, and threw him in the sea.

    MODOK

    In Incredible Hulk #167, the Hulk shatters MODOK's armor, which is an alloy of adamantium (but not true adamantium).

    Anti-Metal

    This rare substance also known as Antarctic vibranium can produce vibrations of a specific wave length that can liquefy all metal including adamantium.

    Dogs of War

    In Hulk: Future Imperfect #1, Maestro explains that he has created mechanical dogs (Dogs o' War) with jaws capable of crushing adamantium in 7.3 seconds. That feat is never depicted on-panel. Hulk destroys the robot canine.

    Thor vs Hulk vs Statue

    In a fight with the Hulk, Thor let loose and hit him with enough power to send him flying into a statue supposedly made of pure adamantium. The base of the statue that Hulk slammed into was cracked and when the Hulk got to his feet and picked up the statue, pieces of it fell off where he grabbed it.

    Captain America's Shield

    Captain America's shield, which is an adamantium-vibranium alloy, has been broken five times in the history of comics. The Molecule Man once destroyed the shield (along with Mjolnir, IronMan's armor, and the Silver Surfer's board) by unmaking them on the molecular level. Klaw and Dr. Doom (both amped by the power of The Beyonder) damaged the shield on separate occasions. Thanos, wielding the Infinity Gauntlet, effortlessly shattered the shield with a backhand. Finally, King Thor destroyed the shield with eye beams in an alternate universe.

    Guardians of the Galaxy

    On the 31st century Earth that the Guardians of the Galaxy hail from there are several metals that are capable of piercing adamantium. The Punishers of that era shot Vance Astro with a bullet made of Dragonite that punctured his adamantium body mesh. Dragonite is said to be invented by the 26th century.

    Omega Hulk

    After an Extremis infused brain surgery gave rise to an all new and incredibly cunning as well as dangerous Hulk Persona (Who may be, in point of fact, a precursor to the Maestro) singlehandedly tore off a piece of pure raw adamantium; an arm, from one of the original bodies of Ultron that was lingering within Kang the Conqueror's citadel at the end of time.

    Other Media

    Films

    X-Men Origins: Wolverine

    \"Liquid
    Liquid adamantium

    Logan is given his adamantium skeleton.

    X-2: X-Men United

    William Stryker's lab is shown to have an adamantium infusion chamber where both Wolverine and Lady Deathstrike were created. During the climactic battle, Wolverine defeats Deathstrike by pumping her full of liquid adamantium, which then hardens and causes her to sink into a vat of water.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-10303/","id":10303,"name":"Betrayal","issue_number":"66"},"id":40759,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/75727-155885-wolverine.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/75727-155885-wolverine.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/75727-155885-wolverine.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/75727-155885-wolverine.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/75727-155885-wolverine.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/75727-155885-wolverine.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/75727-155885-wolverine.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/75727-155885-wolverine.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/75727-155885-wolverine.jpg","image_tags":"Adamantium,All Images,Earth-616 Wolverine"},"name":"Adamantium","site_detail_url":"https://comicvine.gamespot.com/adamantium/4055-40759/","start_year":"1969"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40817/","count_of_issue_appearances":111,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-03-27 11:59:07","deck":"The Lazarus Pits are mystical pools scattered across the world that can heal grievous injuries, cure incurable diseases, and even resurrect the dead. They are most commonly associated with Ra's al Ghul, who has used the pits to extend his lifespan for centuries.","description":"

    Power

    A Lazarus Pit has longevity, rejuvenation, and youth restoration properties. By bathing in a pit a person can have their wounds healed, the old are made young and the dead can be brought back to life. The pit can only return from the dead those that have just died, anyone who has been dead for a long time can not be resurrected again. For a time a pit could only be used once before its chemical properties become inert.

    Submerging oneself into a pit will give them heightened strength as well as drive a person mad for a short time; they could attack anyone around them and must be avoided or restrained until they return to sanity. Anyone who uses the pit and is not injured or dying will be killed. The chemical properties of the pit can destroy the undead as well.

    History

    \"Batman's
    Batman's Pit

    Ra's al Ghul discovered the Pits by accident when trying to save a prince's life. He put him into the pit, instantly healing him back to perfect health. A side effect however was that it made him clinically insane and as a result he killed Ra's wife. However Ra's was found guilty of her death and sent to the desert to die, but saved by a tribe and a boy named Huwe. For some time, he used the Pits along with Huwe and Ra's uncle. Huwe died much later, and his uncle went missing.

    Destruction

    Batman and Bane went around the world in order to destroy all the Lazarus pits that existed. It was believed for a time that Ra's al Ghul possessed the last remaining pit in existence, however it turned out that there were still several that were hidden.

    One belonged to Ra's al Ghuls long lost daughter, Nyssa, who discovered a way to use the pit indefinitely, where as before each pit could only be used once. There is a pit located in the Batcave, created in order to keep balance in the world. Another exists in the Himalayas, where Black Adam used it to return Isis back to life. One exits in the Australian outback, another is located in Tibet and still another is hidden in England.

    Fountain of Essence

    During the Resurrection of Ra's al Ghul, it appears that Ra's has discovered a pit that has all the benefits of the Lazarus Pits, but none of the side effects. It brought him back to life after being dead far longer than the Lazarus pits can resurrect someone, however it brought him back in a crumbling body. Both Sensei and a wounded Batman bathed in the waters. Batman was healed and slightly de-aged, while Sensei was killed since he was healthy.

    Other Who have Used the Lazarus Pit

    Kobra discovered the chemical composition of the Pit and was able to recreate them in order to bring his followers back from the dead. Jason Burr was also brought back from the dead in order to usurp his brother as the next Kobra.

    Black Canary used the Lazarus pit to regenerate her Canary Cry and her ability to bear children.

    Ra's had two daughters, Nyssa and Talia, who have also used the pits. Nyssa had used the pits to keep her youthful up until her death. Talia was placed in the pit after Nyssa killed her over and over again, healing her each time, in order to warp her mind into helping her.

    King Snake uses the pit to regenerate his eyesight.

    Batman put Bane in a pit in return for taking a bullet meant for Batman.

    Mr. Freeze used a pit on his long comatose wife in hopes to revive her, however she absorbed its attributes, gaining the ability to control fire and reanimate the dead.

    Cassandra Cain was also placed into the pit after being killed by Mad Dog of the League of Assassins. She then mortally wounded Lady Shiva in a duel and placed her in the pit as well.

    After being resurrected, a mentally damaged Jason Todd came to live with Talia al Ghul. She decided to heal his wounds and throw him into the pit in order to discover the reason he had been brought back to life.

    The Riddler, suffering from a brain tumor, secretly submerged himself in a Lazarus Pit in order to heal himself.

    Dick Grayson puts what he believes to be Batman's corpse into a Lazarus Pit, only to discover that the resurrected body is that of a Batman clone created by Darkseid.

    Dick Grayson also places Batwoman into the Lazarus Pit after she is mortally injured by an explosion.

    In the Alternate Timeline story, Superman & Batman: Generations, Ra's al Ghul discovers a way to eliminate the madness side effects and develop a way to create lasting immortality. He offers Batman a chance to join him, but when they both submerge themselves in the pit, Ra's dies and Batman becomes partially immortal, aging one year for every century that passes.

    Other Media

    Two Lazarus Pits appear in the Batman: The Animated Series two part episode \"The Demon's Quest\". One in Ra's al Ghul's mountain lair and another in his desert lair, where he seemingly falls to his death after falling into it.

    A pit is shown briefly in the Superman: The Animated Series episode \"The Demon Reborn\"

    Another appears in the Batman Beyond episode \"Out of the Past\" where Ra's al Ghul occupies his daughter's body and attempts to trick Bruce Wayne into possessing his body. At this point the rejuvenation process is much safer, however given Bruce's age, he would have had to bathe in the chemicals for a long time to make his rejuvenation permanent.

    Jason Todd is brought back from the dead in Batman: Under the Red Hood by the use of a Lazarus Pit.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-12383/","id":12383,"name":"\"The Lazarus Pit\"","issue_number":"243"},"id":40817,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/8190/590706-13.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/8190/590706-13.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/8190/590706-13.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/8190/590706-13.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/8190/590706-13.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/8190/590706-13.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/8190/590706-13.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/8190/590706-13.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/8190/590706-13.jpg","image_tags":"All Images,Faces of Evil,gallery,Lazarus Pit,Ra's Al Ghul"},"name":"Lazarus Pit","site_detail_url":"https://comicvine.gamespot.com/lazarus-pit/4055-40817/","start_year":"1972"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40919/","count_of_issue_appearances":235,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-10-30 01:56:34","deck":"Vibranium is a metal primarily found in the African nation of Wakanda. It is able to absorb any vibrations and kinetic energy directed at it as its molecules behave as if at absolute zero. Because of this, it has been a highly sought after material to be weaponized.","description":"

    Characteristics

    Vibranium is an extraterrestrial metallic ore known to exist on Earth in numerous forms. The largest known deposit comes from a meteorite that crashed on Earth approximately 10,000 years ago.

    Vibranium, contrary to some reports, is not an element. Vibranium is not radioactive, as all elements with high atomic weights are. (All newly discovered elements must have higher atomic weights than the known elements.)

    Vibranium's electrons do not move, meaning that vibranium's molecules are constantly at a temperature of 0 degrees Kelvin (absolute zero). This lack of motion on the molecular scale means that vibranium is physically incapable of transferring force, making it the most durable substance in the Marvel Universe. (Note: adamantium is more dense than vibranium and is thus more lethal, but vibranium is better for defensive purposes as it is can withstand nearly unlimited amounts of force.)

    Wakandan Vibranium

    Most of the aforementioned meteor, consisting of the more common variety of vibranium, landed in the what is now the African nation of Wakanda. Even though deposits have been found in other locations, due to the fact that Wakanda is the first known source in existence is the reason why it continues to be known as Wakandan vibranium.

    Wakandan Vibranium has the unique property to absorb vibratory waves such as sound as well kinetic energy by somehow storing this energy within it's molecular bonds. The more energy it absorbs, the stronger the molecular bonds become until the vibranium is extremely difficult to damage or destroy.

    This makes vibranium highly prized for its durability. Although not as hard or dense as adamantium, few other substances can equal it in durability. In addition vibranium is much easier to shape and manipulate than adamantium and remains unsurpassed in it's ability to absorb impacts and to absorb noise and sound.

    Although vibranium is extremely difficult to destroy, it is not impossible. There is an upper limit to the amount of energy vibranium can safely absorb, however this has yet to be determined. Doing so is incredibly dangerous as once the molecular bonds are shattered it causes all of the energy stored within those molecular bonds to be released at once resulting in an incredibly powerful explosion.

    Wakandan vibranium also has the power to greatly amplify mystical energies. It is highly unstable when used this way, as it taps into an energy flow on the Quantum Level that is virtually infinite.

    Wakandan vibranium is a powerful mutagen. Exposure to vibranium has led to the mutation of several Wakandan natives such as Vibraxas and Vibrania. It is theorized that it has also altered Wakandan flora and fauna such as the Heart-Shaped Herb that is eaten by the Black Panther to bestow upon their physical enhancements and the White Gorillas of Wakanda whose flesh and blood gives the White Gorilla Cult their enhanced strength and powers.

    Antarctic Vibranium

    The second form of vibranium exists in Antarctica, within the Savage Land and is known as Antarctic Vibranium. Unlike the Wakandan version, this type does not absorb vibratory waves but instead generates a unique vibration field that breaks down other metals that is in close proximity to. A single piece of Antarctic vibranium can reduce any metal into a liquid or near liquid-like state. Because of this unique property, it has been more commonly referred to as \"Anti-Metal\". Even the molecular structure of Adamantium can be affected by sufficient exposure to Antarctic vibranium.

    It has been theorized this version of vibranium was exposed to particle bombardment which severely altered it's molecular structure. Theoretically, the Wakandan vibranium could also be converted to the Antarctic vibranium type.

    If the Vibranium Mound in Wakanda were it composed of Anti-Metal instead; it would produce vibrations that would liquefy all metals throughout the entire continent. If Anti-Metal was compiled in a large enough mass, the vibrations would be increased logarithmically as more is amassed.

    It is unknown if the process can be reversed and Antarctic Vibranium can converted back into Wakandan Vibranium.

    Reverbium

    An artificial form of Vibranium created at Horizon Labs. Reverbium was conceived by Sajani Jaffrey after most of the Vibranium in the world was rendered inert in the Doomwar aftermath. This imperfect variant channeld and redirected sound based energy while steadily amplifying it over time, with many unscrupulous individuals seeking to make it a powerful weapon to be used or sold to the highest bidder. The faux alloy was thought to be destroyed when Spider-Man deployed an Anti-Metal Spider Tracer to melt down the only known repository of which that was stolen by the Hobgoblin for the Wilson Fisk; The Kingpin. Sajani had actually kept some bits of her failed replacement metal for her own private study.

    Sajani wasn't the only one interested in the valuble yet unstable element. As some A.I.M scientists were making more of and studying the substance for their own purposes in their private labs for quite some time. Eventually coming under the influence of Klaw, who learned that this man-made Vibranium could amplify his sound based powers to unfathomable degree's. Reverbium's main fault despite it's potency is that its atomic structure is incredibly unstable compared to the purer, naturally occurring isotopes. Because of this it is largely less resilient than true blue Vibranium; both Antarctic or Wakandan variety. Black Panther managed to use specialized particle bombardment that caused the metal's subatomic structure to deteriorate into nothing.

    Despite this fault however, through a combination of his unique semblance and A.I.M.s own cache of Reverbium, his control over sound had reached an even greater range and effect. Using his powers in conjunction with it to subtly influence the actions of the scientists under his thrall in order to test the operational limitations of the alloy's augmentative properties. Intending to use his bolstered powers channeled through the Reverbium in order revive his unresponsive sister Julia to a semblance of life after she was lobotomized by their uncaring parental figures. Hoping to resurrect her consciousness as a soniokinetic entity using a neuropsychic energy transfer of one of Wakanda's rogue Dora Milaje warriors as a focal point.

    History

    Approximately 10,000 years ago, a large meteorite composed of vibranium crashed in Africa in the now modern-day nation of Wakanda. The natives would call this the Sacred Mound and studied the mined metal for centuries.

    But the existence of vibranium has only recently been made public in the 1980's, although rumors have been around for many years. Dr. Myron MacLain, a young scientist came into contact with a small amount of vibranium in the early 1940's.

    \"Captain
    Captain America with Shield

    MacLain's early experiments with the material were initially unsuccessful. He would make a vibranium-iron alloy mix which had an unidentified catalyst that resulted in an incredibly durable and near-invulnerable metal alloy. This resulting vibranium-iron alloy would be poured into a tank hatch cover mold and the resulting concave disc would eventually be made into the famous shield of Captain America.

    MacLain's repeated attempts to recreate this substance lead to the creation of another incredibly durable alloy known as adamantium, which is not as immutable as Captain America's shield but still a remarkable metal alloy in its own right.

    A different type of vibranium was subsequently discovered in the Savage Land of Antarctica many years ago by Lord Robert Plunder, the father of Kevin (Ka-Zar the Savage) and Parnival Plunder. This isotope had wildly different properties and although officially known as \"Antarctic or Savage Land Vibranium\", it's power to liquefy metal has resulted in most referring to this unusual isotope as \"Anti-Metal\".

    \"Ka-Zar\"
    Ka-Zar

    However his discovery was leaked to unscrupulous agents of a foreign power who sought to torture the information out of Lord Plunder. Although rescued from this attempt, Lord Plunder was afraid that others would continue to acquire the \"Anti-Metal\" and decided to separate his two sons for their safety. He sent Parnival away under an assumed name while he and Kevin fled back to the Savage Land.

    Shortly afterwards though, Lord Plunder was tragically killed by Maa-Gor and his savage tribe of Man-Apes and left Kevin to grow up in the wilds of the Savage Land as Ka-Zar the Savage.

    \"Klaw\"
    Klaw

    A renegade scientist by the name of Ulysses Klaw, who believed rumors of the existence of vibranium, later found the \"Sacred Mound\" hidden within Wakanda. The Mound had been guarded for generations by the Wakandan Kings and Klaw attempted to steal some vibranium to power one of his devices, killing King T'Chaka in the process. T'Challa, T'Chaka's son, would take over as both king of Wakanda and assume the mantle of the Black Panther.

    The existence of vibranium was soon made public knowledge. By selling small amounts of it, T'Challa was able to use the profits to better stabilize the nation and made Wakanda into one of the richest countries in the world.

    Parnival Plunder who had become a criminal known as \"The Plunderer\" would discover that part of his inheritance included half of a key to his late father's secret cache of \"Antarctic Vibranium\" and sought to acquire the other half which lay in the hands of his brother, Kevin who he had long thought was deceased along with his father.

    Instead he discovered that Kevin was alive and was now called Ka-Zar the Savage and the Protector of the Savage Land. Acquiring Ka-Zar's half of the key by force, Parnival sought to use the \"Anti-Metal\" as a weapon to conquer the world but failed thanks to the efforts of Ka-Zar and Daredevil.

    \"Rough
    Rough & Tumble

    Several years ago, Roxxon Oil was dumping their industrial waste illegally in the South Atlantic when they discovered that a small island had a vibranium foundation composition. Roxxon attempted to secretly exploit the situation by getting rid of the island's sole inhabitant, an old man known Hiram Dobbs. Their attempt however is foiled by the surprising presence of Namor the Sub-Mariner who was recuperating from exposure to toxins and was rescued by Dobbs.

    When Roxxon's secret presence is completely blown by the arrival of Iron Man as well, Roxxon proceeded to hide their illegal activities by blowing the island up with explosives. The vibranium was not able to fully absorb the explosive force, but did absorb the sound waves the explosion made.

    When the Life Foundation rebuilt the infamous Tri-Sentinel, they installed a special failsafe of a chunk of Antarctica Vibranium that they had acquired through unknown means in order to prevent it from going rogue. It failed and it was only through the intervention of Spider-Man who managed to infiltrate the Tri-Sentinel to trigger the Anti-Metal that ended the threat.

    When the genocidal robot Ultron massacred the entire European nation of Slorenia, Justice brought several containment vessels of Antarctic vibranium to use as a weapon against the insane artificial intelligence. The anti-metal ultimately broke down the molecular bonds of Ultron's adamantium body and allowed the Avengers to end the threat.

    \"Indestructible
    Indestructible No More

    In the aftermath of the Secret Wars where Captain America's shield was shattered and later repaired, a small sub-molecular imperfection was introduced. It grew until the molecular bonds of the shield were completely broken down years later and shattering the shield. This shattering effect created a \"vibranium cancer\" which propagating throughout the world as a shockwave that violently detonated any vibranium it encountered, from mineral deposits to components of ships or equipment.

    When this travelling shockwave strikes the \"Sacred Mound\" in Wakanda, the resulting explosion could destroy the world. In a desperate attempt to stave off this apocalypse, Captain America rushed to Wakanda with the remnants of his shield in an attempt to stop the cancer. However, he found himself under attack by Klaw who was growing stronger and stronger with the destruction of each bit of vibranium and sought to achieve absolute power with the destruction of the \"Sacred Mound\" itself.

    Unwittingly, Klaw inadvertently aided in the resolution of the crisis by neutralizing the cancer and also restoring Captain America's shield.

    During the Secret Invasion by the Skrulls, they assumed the identity of S.H.I.E.L.D agents and were secretly mining Antarctic Vbranium in the Savage Land by enslaving the natives until they were discovered by the New Avengers. Later still, the Skrulls attempted an invasion of Wakanda to acquire their deposits of vibranium and were repulsed by the Black Panther.

    Most recently, Doctor Doom discovered Wakanda's most closely guarded secret of how vibranium can amplify mystical energies. He attempted to assassinate T'Challa and was able to destabilize Wakanda's government to the point where his allies, the Desturi dissent group is able to seize political power over Wakanda.

    \"Doomed!\"
    Doomed!

    Doom was able to acquire over 10,000 tons of vibranium stored within Wakanda and uses it to construct an army comprised of mystically enhanced vibranium robots. To save the world, T'challa was forced to use a secret failsafe to render all the processed Wakandan vibranium inert. Although this resulted in the end of the so-called Doomwar, it also forced Wakanda to rebuild without the resource they used as a crutch of power and influence for 10,000 years.

    Wakanda still possesses the unmined vibranium from the meteor but it is unknown what Wakanda will choose to do with the little vibranium ore they have left after the Doomwar.

    The catastrophic loss of vibranium throughout the world has forced scientists to explore the development of alternative materials. Sajani Jaffrey of Horizon Labs' Lucky Seven has created an artificial variant known as reverbium which has the opposite effect where it amplifies sound rather than absorbing it. As of yet, it remains to be seen if an artificial version of vibranium can be created.

    Example of uses

    • Captain America's shield is partially composed of vibranium.
    • Agent Zero can move silently due to his vibranium armor. He used Anti-Metal Bullets in a sniper rifle.
    • Warpath was given a pair of Wakandan vibranium knives by Storm.
    • Gentle has powers that are helped controlled by his vibranium tattoos.
    • Black Panther's uniform comprises of Wakandan and Savage Land Vibranium incorporated into it.
    • Namor's former company Oracle Inc. sold SLV to Roxxon corp, who made metal smelting guns from it.

    Nuform

    Nuform was an artificial version of Vibranium created by Roxxon. It was made of both mineral and organic compounds. However, it was unstable and degraded into Antarctic Vibranium unless it was temporarily stabilized by microwave treatments. Roxxon knew about its problems and still tried to sell it on a mass scale. However, Iron Man, Black Panther, Spider-Man, and Sunturion managed to stop its production during the Vibranium Vendetta storyline.

    Other Media

    Captain America: The First Avenger

    \"The
    The Shield

    When Steve Rogers takes a liking to a circular shield created by Howard Stark, he mentions that it is special as it is cast out vibranium which is stronger than steel yet weighs about a third less. It is completely vibration absorbent and represents the total sum of vibranium Stark has in the world.

    Avengers: Age of Ultron

    \"Ultron's
    Ultron's final Vibranium form

    Vibranium plays a major role in the movie, with Ultron traveling to Africa to buy some from Ulysses Klaue. It is mentioned that the material is exceedingly rare, and that Klaue had only barely managed to smuggle some out from Wakanda. For his crimes, he was branded with the Wakandan word for \"Thief.\"

    Ultron forces Helen Cho to build a new, synthetic body for him by combining Vibranium and synthetic tissue, creating a fusion of organics and machine. The plan goes haywire when Cho stops Ultron from uploading his mind into the new body, which eventually becomes the Vision.

    During the final battle, it is revealed that in addition to building a new body, he had used the remaining Vibranium to create an anti-gravity device capable of lifting the small country of Sokovia into the air.

    The Avengers: Earth's Mightiest Heroes

    In Season 1, Episode 11, we see T'challa, the Black Panther, going to New York City to request help from the Avengers to overthrow Man-Ape, who has taken over the nation of Wakanda and has allowed the villainous organization known as HYDRA to gain access to the Vibranium Mound. The Avengers agree to assist T'challa and fly to Wakanda in Iron Man's Quinjet. They are seen being attacked by Wakandan defense tech and are shot down, landing in the jungle. Captain America and Black Panther navigate through the jungle to get to the main city where Man-Ape is residing while Iron Man, Wasp and Ant-Man enter the Vibranium Mound where they encounter Klaw and the Grim Reaper mining the Vibranium. During their fight, the nearby Vibranium absorbs too much energy causing Klaw to become one with it, turning into a being of pure sound. Iron Man and Ant-Man theorize that if they can contain the sonic emitter that Klaw was using prior to his transformation that he will cease to exit. They are successful by putting the emitter inside a hollow Vibranium shell, thus ending Klaw's sonic rampage.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8366/","id":8366,"name":"The Secret of Ka-Zar's Origin!","issue_number":"13"},"id":40919,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/11352/1205284-76047_vibranium1_122_523lo.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/11352/1205284-76047_vibranium1_122_523lo.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/11352/1205284-76047_vibranium1_122_523lo.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/11352/1205284-76047_vibranium1_122_523lo.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/11352/1205284-76047_vibranium1_122_523lo.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/11352/1205284-76047_vibranium1_122_523lo.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/11352/1205284-76047_vibranium1_122_523lo.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/11352/1205284-76047_vibranium1_122_523lo.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/11352/1205284-76047_vibranium1_122_523lo.jpg","image_tags":"All Images,Earth-616 Black Panther,Loki's Tri-Sentinel,Vibranium"},"name":"Vibranium","site_detail_url":"https://comicvine.gamespot.com/vibranium/4055-40919/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40921/","count_of_issue_appearances":103,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-03-03 11:51:59","deck":"Created by an Inhuman geneticist named Randac, the Terrigen Mists accelerate genetic advances. Inhumans are exposed to the mists when they come of age. Each experiences different results.","description":"

    History

    The Terrigen Mists are a vapor produced by the Terrigen Crystals. The crystals were discovered by the Inhuman geneticist Randac around 25,000 years ago. Randac exposed himself to the Mists giving himself incredible mental powers. Because Randac wished all Inhumans to undergo the Terrigen Mist treatment (a process known as Terrigenesis), the majority of the Inhuman population became deformed monsters. After centuries of experimenting with birth control and genetics, the Inhumans have been able to expose themselves and not become monsters. However, even after all these centuries, it has not been perfect. Some Inhumans that were exposed became devolved, mindless beings. They were called the Alpha Primitives and were used as slaves. As a preventative measure, all Inhumans are subject to genetic screening before exposure to the mists in order to ensure compatibility with the process. Terrigenesis has became a sacred ritual of the Inhumans, and a cornerstone of Inhuman Culture.

    Approximately 100 years ago the Inhuman scientist Ultarnt was commissioned by the Genetic Council to do a study on the nature of Terrigenesis. The results of this study could result in a deeper understanding of the Inhuman rite of passage. It was learned that the process was not random as has always been seemingly apparent, but instead follows a greater and possibly discernible pattern. It was identified that in times of climate change Terrigenesis would favor mutations that would allow Inhumans to adapt. In times of war or conflict other appropriate mutations would arise. When an integral member of Inhuman society would die a replacement mutation would occur within a matter of three years. The far-reaching implications of this study were deemed too provocative for the general public and as such have been kept secret from most of Inhuman society, including members of the Royal Family.

    When the mutant Quicksilver stole the Terrigen Mists and Terrigen Crystals the crystals eventually ended up in the hands of ONE, who refused to return them to the Inhumans. After this the Inhumans declared Silent War upon the Human race, particular the United States government.

    Exposure to the Mists

    The process of Terrigenesis can be extremely dangerous despite rigorous control on the part of the Genetic Council. Mutations very greatly in function and level of power. Mutations vary in every way imaginable including energy forms, psychic mutations, plant and animal control, sonic control, healing, death, strength, blast powers, flying, elemental manipulation, and much much more. Some of the least powerful Inhumans can do little more than change skin pigment. Some of the more powerful can level mountains or more. The most famous and powerful inhuman to use the Terrigen Mists is the Beyonder, though it is reasonable to believe that this was simply The Beyonder manipulating the illuminati and playing tricks on them.

    For further reading see: Terrigenesis

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9762/","id":9762,"name":"If the Thunder Be Gone!","issue_number":"146"},"id":40921,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1093/87625-176378-terrigen-mists.PNG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1093/87625-176378-terrigen-mists.PNG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1093/87625-176378-terrigen-mists.PNG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1093/87625-176378-terrigen-mists.PNG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1093/87625-176378-terrigen-mists.PNG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1093/87625-176378-terrigen-mists.PNG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1093/87625-176378-terrigen-mists.PNG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1093/87625-176378-terrigen-mists.PNG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1093/87625-176378-terrigen-mists.PNG","image_tags":"All Images,Earth-616 Terrigen Crystals"},"name":"Terrigen Mists","site_detail_url":"https://comicvine.gamespot.com/terrigen-mists/4055-40921/","start_year":"1967"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40942/","count_of_issue_appearances":136,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-01-26 04:25:45","deck":"A communications device used by the Exiles that enables them to teleport between the realities of the Marvel Omni-verse. The Tallus is generally worn by the leaders of each Exiles team.","description":"

    Brief History

    The Tallus is a communications device, used by the Timebreakers to communicate with their groups of dimension-hoppers Exiles and Weapon X.  The Tallus also enables the team to travel from one dimension to the next.  One Tallus was shown to possess a shard of the M'kraan Crystal, and it is assumed that every one Tallus has a shard of the M'Kraan Crystal. 

    It is usually worn by the leader of the group. Only the wearer of the Tallus can communicate using it. Tallus communication is usually vocal, but it can also be used to manifest holographic projections which can be seen by the wearer. The Exiles' Tallus has been worn by Blink, Mimic, Sabretooth, and Psylocke.  The Weapon X Tallus has been worn by Sabretooth and then Gambit before the group was exterminated.

    Once the Exiles had assumed control of their missions, the Tallus was used in communication between Heather Hudson and the group.  Following Heather's departure (really just a sabbatical), the Tallus was used to communicate between Sage and the team.  When Heather returned, she assumed telecommunications control again while Sage was absorbed into the Panoptichron

    The Tallus was shown to be bound to its wearer. This was exhibited when Hyperion ripped off Gambit's arm to get the Weapon X's Tallus, but it reappeared on his other arm.  The Tallus also allows the Panoptichron to keep track of its wearer: Psylocke was invisible to the Crystal Palace's sensors until Sabretooth placed a Tallus on her.


    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-49450/","id":49450,"name":"Down the Rabbit Hole","issue_number":"1"},"id":40942,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/87507-5827-tallus.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/87507-5827-tallus.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/87507-5827-tallus.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/87507-5827-tallus.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/87507-5827-tallus.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/87507-5827-tallus.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/87507-5827-tallus.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/87507-5827-tallus.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/87507-5827-tallus.jpg","image_tags":"All Images"},"name":"Tallus","site_detail_url":"https://comicvine.gamespot.com/tallus/4055-40942/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40945/","count_of_issue_appearances":198,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-02-21 18:05:57","deck":"The Infinity Gauntlet is a cosmic artifact that grants the wearer complete mastery over the six infinity gems in it: time, space, power, soul, mind, and reality. The Gauntlet will also grant omnipotence, omniscience, and omnipresence, along with all the various powers of the Gems themselves, to the bearer. It was assembled by the Mad Titan Thanos, who used the Gauntlet's Power to wipe out half of life in the Universe to impress his love, Mistress Death.","description":"

    Origin

    The Infinity Gauntlet is a cosmic artifact that grants the wearer complete mastery over the Infinity Gems.

    Infinity Gauntlet

    \"The
    The Gauntlet's First Wielder

    Mistress Death resurrected Thanos to correct an imbalance in the fabric of the universe with the realization that there were more people alive than had ever died. She brought him back from the dead and gave him the gauntlet with the agreement that he do something about the imbalance of life in the present day. Thanos spent time at the Infinity Well; the supposed source of all universal knowledge. In his research he discovered the true nature of the Infinity Gems. He then sought out the gems from the unwary owners (The In-Betweener and Elders of the Universe). He assembled the six infinity gems on his own golden glove creating what becomes known as the Infinity Gauntlet.

    Thanos then spent time practicing with the gems. He kept his promise to Mistress Death by eliminating 50% of the universe's population. All of Earth's mightiest superheroes that remained fought against Thanos in an attempt to stop him. But they needed someone who knew Thanos' weaknesses like no one else did, better than Thanos himself. Hence, Adam Warlock stepped in to help Earth and it's heroes. Thanos lost the gauntlet to Nebula, and she subsequently lost it to Warlock. Warlock used the Gauntlet and became a god. In order to make himself a noble god he subconsciously expelled all good and evil from his being creating the Magus and the Goddess. The Living Tribunal appeared and forced Warlock to give up his power; Eternity then declared that the Gems could never be used together again.

    The gems were split up amongst Warlock and his closest companions, Moondragon, Drax, Pip, and Gamora. Eternity secretly gave the last one to Thanos. This group, minus Thanos, became the Infinity Watch.

    Infinity War

    During Infinity War the Magus traveled across dimensions and collected 5 cosmic cubes. He planned to make a machine that could help him acquire the Infinity Gauntlet that would be free from the Living Tribunal's decree that the gems would no longer work in unison. Magus forced Eternity into a coma like state and created warped doppelgangers of every hero on Earth with the clone of Thanos working as his right hand man.

    Earth's mightiest heroes were forced to team-up with Thanos and Galactus to stop Magus. Warlock took back all the gems and tried to use the Gauntlet with little success. They then realized that the ruling from Eternity was still in affect. Galactus traveled to speak with Eternity and the Living Tribunal to have the ruling on the use of the Gauntlet reversed. However, Eternity was the only entity that could reverse the decree, and he was still in a coma. Galactus set about restoring him with the help of Gamora. Meanwhile, Magus kidnapped Warlock, stealing the Infinity Gauntlet from him and held him them prisoner in his citadel. Eternity was revived from his coma long enough to reverse his ruling, and the Gauntlet became functional once more.

    \"Never
    Never Again

    Magus began adjusting to his new power and unleashed all of his doppelgangers against Earth's heroes. Magus then froze everyone and teleported them into his citadel to become his trophies, but he was ambushed by Thanos who had been fighting his own doppelganger in another part of the citadel. Warlock broke free of his restraints and grabbed a hold of the Gauntlet while Magus was still wearing it. Because of Warlocks greater knowledge of how to use the Gauntlet, and the fact that the Reality Gem which Warlock inserted in the gauntlet was a fake, he was able to overpower Magus and absorb him back into his body. Eternity and Infinity then appeared and pronounced that no matter what the circumstances, the gems would never work in unison ever again. The gems were divided up once again among the Infinity Watch.

    Illuminati

    Reed Richards calls the group together and reveals to them that he has been gathering the infinity gems and the Gauntlet, and that three of the gems were already in his possession. After they manage to gather the remaining gems, the Watcher appears before them and warns Reed that the power the gauntlet contains is too much for one man to wield on his own. After some convincing, Reed gives up the gems which are then divided up between the group then, with the help of the Watcher, they are hidden far away from where anyone else may find them

    \"Captain
    Captain America wielding the Gauntlet

    During New Avengers, the Illuminati assembled the Infinity Gauntlet to prevent a Universal Incursion from destroying the two universes that were colliding with each other. Captain America wore the gauntlet and pushed the other Earth away from Earth-616. Due to the immense amount of power required, their was a side-effect, which destroyed 5 of the 6 Infinity Gems and caused the one remaining gem, the Time Gem, to disappear.

    The Gems & Their Powers

    \"Infinity
    Infinity Gems

    Time Gem: Total control over all aspects of time including time travel, stopping time, slowing down or speeding up time, and to accelerate or slow down aging.

    Space Gem: Limitless manipulation of space, allowing for teleportation, dimensional manipulation, creation of wormholes, etc.

    Soul Gem: Limitless manipulation of souls both alive and dead. Also, has shown the power to be able to evolve or devolve a being both physically and mentally.

    Reality Gem: Locally or universally alters the natural laws of the universe to the wielders will.

    Power Gem: Controls all of the power in the universe. It can be used to augment or inhibit any force.

    Mind Gem: Taps the user into the universal consciousness, allowing for unlimited manipulation of psionic powers including telepathy and telekinesis.

    Limitations: The Infinity Gauntlet only works in the universe it is from (which is why Darkseid could do nothing with it). Since the end of the Infinity War, Eternity pronounced \"Let it be known the power that the Living Tribunal represents will never again allow the gems to work in unison. No matter what the crisis.\"

    Powers & Abilities

    \"Darkseid
    Darkseid and the Infinity Gauntlet

    The Infinity Gauntlet itself has no power, it is merely a device to contain all the gems in one location/item. Anyone with the knowledge of the whereabouts of the gems can obtain the Gauntlet, but it takes much more than holding the Gauntlet to wield its power. Like the gems themselves, it takes much knowledge and discipline to accurately use the near infinite power of the Gauntlet and become a God.

    Ultimately, the power of the Infinity Gauntlet is not meant for mortals, as mortals are not meant to be gods. This is evident in conversations between Thanos and Adam Warlock, both having achieved and lost their godhood. Both had voluntarily given up their power, realizing that it was not theirs to have. After giving up their power, the knowledge and godliness they had slowly melted away, becoming just a haunting reminder of the immense power and responsibility they once had.

    Those who have wielded the Infinity Gauntlet:

    Other Realities

    Earth-1610

    \"The
    The Hulk with the Infinity Gauntlets

    In the Ultimate Marvel universe, the Infinity Gems actually combine to form two separate Gauntlets. They are assembled by the various members of the Ultimates before being stolen by Reed Richards and his team of Dark Ultimates, with the Hulk initially donning them to battle his former teammates. The Gauntlets and Gems are later shattered, and the Dark Ultimates are defeated.

    Other Media

    Television

    The Super Hero Squad Show

    \"The
    The Gauntlet and Sword

    The Infinity Gauntlet appears in the second season of The Super Hero Squad Show, with a major running plot involving Thanos trying to find the various Infinity Gems. In the finale, he forms the Gauntlet and uses it to battle the heroes, only to have it stolen by the Dark Surfer. The Surfer combines the Gauntlet with the power of the Infinity Sword before both items are shattered, creating the Infinity Fractals.

    Avengers Assemble

    \"The
    The Infinity Gauntlet in Avengers Assemble

    The Infinity Gauntlet appears in the second season of Avengers Assemble. In the episode \"Widow's Run\", Thanos forms the Infinity Gauntlet after stealing the remaining Infinity Stones from Black Widow. After Thanos is defeated, Ultron absorbs the Gauntlet's power (utilizing Arsenal's energy collecting abilities) and flies off to parts unknown.

    Film

    Thor

    \"The
    The Replica Infinity Gauntlet in Odin's vault

    The Right-handed Infinity Gauntlet makes a brief, split-second cameo in Thor, where it can be seen in Odin's treasure room. The various Infinity Gems have since appeared independent of the Gauntlet (in Captain America, The Avengers, Guardians of the Galaxy, and Doctor Strange), implying that the one seen in the treasure room is a replica. This is confirmed in Thor: Ragnarok, where Hela reveals that Odin's Infinity Gauntlet is a fake.

    Avengers: Infinity War

    \"Infinity
    Infinity War

    The Gauntlet makes an appearance in the mid-credits scene for Avengers: Age of Ultron, where Thanos is seen retrieving it from a vault. He places it on his hand and says \"Fine. I'll do it myself,\" suggesting that he will be hunting down the Infinity Stones.

    The Infinity Gauntlet appears in the film Avengers: Infinity War, as the main focus. Within the film, the Avengers, Guardians of the Galaxy, and other heroes race top stop Thanos from completing the Gauntlet by finding the remaining Infinity Stones. The item's backstory is also given, as it is revealed to be a special glove that the dwarven blacksmith Eitri was forced to create for Thanos as a way to safely control all of the Infinity Stones at once.

    Avengers: Endgame

    \"Hulk
    Hulk wielding the second Infinity Gauntlet

    At the start of the follow-up, Avengers: Endgame, the remaining Avengers track down Thanos and attempt to defeat him to steal the Infinity Gauntlet. They manage to overpower Thanos and sever his arm, but find the Gauntlet empty. Thanos reveals that he destroyed the Infinity Stones before the Avengers arrived to prevent anyone else from being able to use them. Five years later, the Avengers devise a plan to travel back in time to find the Infinity Stones before they were acquired by Thanos, hoping to use them to bring back those he killed. To harness the power of the Stones, Tony Stark, Bruce Banner and Rocket Raccoon build a new Infinity Gauntlet. During the final battle of the film, the Avengers fight against Thanos' army to keep him from stealing the Gauntlet away.

    Merchandise

    \"Marvel
    Marvel Universe and Marvel Legends
    • Hasbro released a foam Infinity Gauntlet toy as part of an exclusive set for San Diego Comic-Con 2014, which came packaged with figures of Thanos, Death, Nebula and Starfox. The foam gauntlet was later rereleased for Avengers: Infinity War as a single item.
    • An Infinity Gauntlet oven mitt was released, but was later recalled due to safety concerns.
    • Entertainment Earth released an Infinity Gauntlet mug.
    • Surreal Entertainment produced an Infinity Gauntlet desktop monument.
    • Diamond Select produced an Infinity Gauntlet bottle opener.
    • An Infinity Gauntlet paper weight was produced for the Nerd Block subscription service.
    • Hasbro released an Infinity Gauntlet toy for Avengers: Infinity War as part of their Marvel Legends line of role-play accessories. The Stark Gauntlet from the sequel was also released.
    • Hasbro also produced a cheaper Infinity Gauntlet aimed at a younger demographic.
    • Hot Toys produced an ultra-detailed Infinity Gauntlet toy for Avengers: Infinity War. A cheaper, smaller version was also produced by the company.
    • Beast Kingdom produced an Infinity Gauntlet replica for the movie.

    Video Games

    \"Marvel
    Marvel Super Heroes
    • The Infinity Gauntlet is featured in the fighting game Marvel Super Heroes, where it is wielded by Thanos. The game itself is a loose adaptation of the original Infinity Gauntlet mini-series.
    • The Infinity Gauntlet is also featured in Marvel Super Heroes: War of the Gems.
    • Thanos wields the Infinity Gauntlet in Marvel vs. Capcom 2: New Age of Heroes.
    • The Infinity Gauntlet is featured in Marvel Super Hero Squad: The Infinity Gauntlet.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-33549/","id":33549,"name":"Epiphany","issue_number":"44"},"id":40945,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5469/135325-7171-infinity-gauntlet.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5469/135325-7171-infinity-gauntlet.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5469/135325-7171-infinity-gauntlet.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5469/135325-7171-infinity-gauntlet.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5469/135325-7171-infinity-gauntlet.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5469/135325-7171-infinity-gauntlet.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5469/135325-7171-infinity-gauntlet.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5469/135325-7171-infinity-gauntlet.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5469/135325-7171-infinity-gauntlet.jpg","image_tags":"All Images,Infinity Gauntlet"},"name":"Infinity Gauntlet","site_detail_url":"https://comicvine.gamespot.com/infinity-gauntlet/4055-40945/","start_year":"1990"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40946/","count_of_issue_appearances":120,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-10-31 18:35:14","deck":"The Ultimate Nullifier is a device that can eliminate from existence anything that the bearer chooses. It is powerful enough to destroy entire timelines if the bearer is of sufficient intellect and power.","description":"

    Overview

    The Ultimate Nullifier appears as a small hand-held silvery-metallic device with little or no apparent functionality although it is possible that, like Galactus, it appears differently depending on who is observing it.

    The Ultimate Nullifier is capable of destroying any target the bearer directs the Nullifier at. If the bearer lacks the proper control, concentration, or power then the Nullifier will destroy the bearer as well and possibly the universe itself. While the origins of the Nullifier are largely unknown, it had been revealed that the Ultimate Nullifier is an aspect of Galactus himself. It is the only known object to inspire fear in Galactus.

    Use of the Nullifier

    \"No

    When Galactus first appeared on Earth with the intention of devouring it, Uatu the Watcher broke his oath of non-interference and helped the Fantastic Four against Galactus. He sent the Human Torch to find the Nullifier, which was located at a secret location. With the Nullifier in hand, Reed Richards threatened to use it against Galactus. This frightened Galactus so much that he left Earth and vowed never to attempt to consume it ever again unless he had no choice.

    The Ultimate Nullifier later appeared inside Galactus' starship during the Infinity War. Galactus had left Thanos and a number of Earth’s heroes aboard his starship as he pleaded his case, on behalf of Adam Warlock, to allow the Infinity Gems to function as one. As soon as he left, the Magus appeared and kidnapped Warlock. Thanos was running out of options and asked Susan Storm about the Ultimate Nullifier’s location. Nervously, she betrayed it’s location with a look. Thanos picked it up and mentioned how powerful and dangerous the weapon was, adding that it would require a far nobler soul than his own to fire it. He then hand-picked Quasar out of the group of assembled heroes and asked: \"How steely is your resolve, Quasar?\". Quasar took the Nullifier and, in an effort to learn as much as he could about it, consulted Epoch.

    When Quasar arrived in the Magus’ dimension he was (unbeknownst to him) blanketed with an energy dampening field which disrupted the Nullifier, but not the power of his Quantum-Bands. When the controls of the dampening field were later damaged by Dr. Doom and Kang the Conqueror, Quasar was able to activate and slowly build power in the Nullifier, only to have the devastating effect turned against him by the Magus wielding an incomplete Infinity Gauntlet empowered by the Living Tribunal.

    The Nullifier was next used when Morg took it from the hold in Galactus' ship in an attempt to defeat Tyrant. The power of the Nullifier was temporarily contained by the Toady-Drone, which attached itself to Morg and fused them all together. Eventually the power build-up was too great and it ignited, destroying Galactus' ship and all on board.

    Later, Abraxas, the embodiment of destruction, attempted to destroy all reality with the Nullifier. But first he needed to locate it as it was again in Uatu's secret hidding place. Uatu could not divulge the location of his secret hiding place because he was in a coma. So, since Johnny Storm was the only one to have ever been to Uatu's secret location, he was sent to find it before Abraxas could. The other members of the Fantastic Four went into the bodies of other realities versions of themselves so they could scan that particular reality's Torch to find all the clues as to the Nullifier's location. After scanning the minds of Torch's from other realities, Johnny Storm of this reality was able to find the Nullifier. The Torch was then betrayed by an alternate reality Frankie Raye, who was the Herald of Abraxas. She took the Nullifier from Johnny and gave it to her master. When Valeria and Franklin Richards helped to resurrect Galactus, he demonstrated his ability to effortlessly call the Nullifier to his person. He then gave it to Reed Richards who used it to destroy Abraxas in our reality, which then reset itself to normal.

    Alternate Futures and Realities

    The Black Celestial Saga

    When the Earth-616 Fantastic Four traveled to the future to stop Galactus (who had been tampered with by the Black Celestial) from absorbing the entire universe, they realized that the Ultimate Nullifier was the only thing that could stop him. Richards even theorized that the Nullifier was Galactus' emergency failsafe, created for just such an occasion when his hunger would grow to outsized proportions. They gave Galactus the Nullifier and he used it to destroy himself.

    Captain America and the Korvac Saga

    In this all ages story in an unknown alternate universe, Captain America and the Guardians of the Galaxy teamed up against Korvac. Captain America was about to use the Ultimate Nullifier against him but didn't, his moral code wouldn't let him kill. Korvac then grabbed the Nullifier from Capt. America and ended up neutralizing himself.

    Age of Ultron

    In the Age of Ultron timeline, the Ultimate Nullifier was seen in Nick Fury's bunker. Spiderman questioned if they were 'there yet', which Tony Stark quickly informed Spiderman that they were 'not even close'.

    In other media

    In the video game Marvel: Ultimate Alliance, the Inhuman Medusa travels to Earth to find the Ultimate Nullifier and hopefully use it against Doctor Doom. This plan fails, as Doom expected someone would try and use it against him, and so uses his powers to brainwash Medusa.

    In a side mission later on, players have to find the Ultimate Nullifier (which has been damaged). If it is found, Mr. Fantastic will one day fix it, and use it to repel Mephisto. If it isn't, then the team of heroes will have to join together again to stop Mephisto, with the resulting battle causing a massive amount of damage.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8546/","id":8546,"name":"The Startling Saga of the Silver Surfer","issue_number":"50"},"id":40946,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/57845/1686634-nullify.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/57845/1686634-nullify.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/57845/1686634-nullify.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/57845/1686634-nullify.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/57845/1686634-nullify.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/57845/1686634-nullify.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/57845/1686634-nullify.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/57845/1686634-nullify.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/57845/1686634-nullify.jpg","image_tags":"All Images,Earth-616 Mr. Fantastic,Earth-616 Ultimate Nullifier"},"name":"Ultimate Nullifier","site_detail_url":"https://comicvine.gamespot.com/ultimate-nullifier/4055-40946/","start_year":"1966"},{"aliases":"Tesseract","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40949/","count_of_issue_appearances":305,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-04-11 18:06:05","deck":"Cosmic Cubes are among the most powerful objects in the universe. They are created out of energy from another dimension. Anyone in possession of the cosmic cube can use it to reshape (mold) reality to mirror their vision.","description":"

    History

    The Cosmic Cubes are powerful objects which store reality-altering energy. The Cosmic Cubes are able to rewrite reality and do virtually anything their master wishes. A Cube's master is able to create planets, augment or negate other people's powers and skills, and so on. The Cosmic Cubes are created by the \" Beyonders\" from the unknown dimension of Beyond. The Beyonders made the Cosmic Cubes in order to test people's desire and evolution processes. The Beyonders also desired change in the omniverse.

    The Cosmic Cube could only be obtained by projecting a particular type of energy which would open a rift to the source of the Cosmic Cube's power. The cosmic energy flows through the rift and is then stored in a matrix.

    Cosmic Cubes

    Skrulls

    The Skrull scientists obtained a Cosmic Cube. The Cosmic Cube then developed sentient life and called itself the Shaper Of Worlds. The Skrull emperor wanted to rule as God king and used the Shaper of Worlds to do so. The Shaper of Worlds betrayed the Skrull emperor and destroyed a large part of the kingdom.

    He then went on to tutor other sentient Cubes.

    Cosmic Cubes on Earth

    The Cosmic Cube was first discovered by A.I.M. in an experiment with an energy called \"X element\". The A.I.M. wanted to study of the strange energy which mutated George Tarleton into the powerful MODOK. The energy was so powerful that it was able to drive MODOK mad. The Red Skull wanted to steal the Cosmic Cube and succeeded in doing so. Despite the Cube's omnipotent powers, the Red Skull easily overpowered Captain America but later loses the Cube as the Red Skull was too confident. However, the Cosmic Cube altered reality which caused an entire island to sink and was then believed to be lost forever.

    A fisherman discovered the lost Cube and transformed his village into a rich place. The Red Skull finds out about the lost Cube and sends his allies to obtain it for him. The Red Skull takes back the Cube and tries to confront Captain America again. However, the Skull loses the Cube to A.I.M. and MODOK and the Cube is apparently dissolved.

    Retrieving the Cube

    MODOK eventually retrieved the Cube but lost it to Thanos the mad Titan who used the energy of the Cosmic Cube to win Death's heart. Thanos, realizing the Cube's tremendous power, uses it to confront the Avengers and Captain Marvel. Before losing the Cube, Thanos absorbed the Cube's energy and becomes virtually omnipotent. Thanos then realized that he now has no need of the Cube and abandoned the Cube's energy. The Cube's energy is reabsorbed into the Cube once again and Captain Marvel uses the Cube to return everything back to normal but instead burns out all of the energy stored in the Cube.

    The Cube is then confiscated by Project: Pegasus or research. The Cube then began to regain it's reality altering powers and played a huge role in the development of Aquarian. A renegade A.I.M. scientist named Victorius took the Cube and tried to use it to create worldwide entropy, but he was stopped by Captain America, the Thing, and the Man-Thing. It then went into a dormant phase, seemingly having lost all its energy.

    \"The
    The Shaper consoles the Cube

    However, the Cube was really developing sentience. A.I.M. stole it and their lead scientist, Bernard Worrell, used it to change the world into a Technopolis. However, he wasn't in full control of the Cube and he started to go mad. The Cube started getting its own ideas about what to do, and eventually developed sentient life and named itself Kubik .

    Molecule Man and the Beyonder

    The Beyonders have created a force which powers Cosmic Cubes. It comes through a rift in reality when those who wish to collect the force are ready. When Owen Reece had his ludicrous accident, he inadvertently tore a hole in reality where no force field was waiting on this side to trap the unleashed power. The field should have been there, whatever the force which came through the rift did to shape the field, it did. But Owen was not a field. Still, he absorbed part of the energy which came through the rift. He did not become six-sided, though he did become a component of great power, although still not quite up there with Eternity or the Living Tribunal.

    \"Beyonder
    Beyonder and MM turn to Cosmic Cube

    The Beyonder is the greater part of the sentient force which came through the rift, lacking a containment vessel. A cosmic cube has no desires because a Cosmic Cube is complete in itself. It shapes the world with others' dreams. It satisfies others' desires. Molecule Man accidentally opened a rift through the atomic machine and traveled to the source of the Cosmic Cubes power. However, the cosmic forces which went through the rift hadn't been stored in a matrix which allowed the birth of the Beyonder.

    The Shaper of Worlds and Kubik explained the origin of the Cubes to the Beyonder and the Molecule Man, and then helped them become a new Cube, which eventually evolved into Kosmos. Reece split off to become his own person again.

    Infinity War and Infinity Crusade

    The beginning of the Infinity War began with the collection of five cosmic cubes by the Magus. With the help of their power, he was able to obtain the Infinity Gauntlet. After his defeat the cubes were secretly stolen by the Goddess. She continued to gather more and more cubes from different dimensions.

    In the end, she had collected 30 cosmic cubes. She combined them into one single force called the Cosmic Egg. She used it to brainwash the entire universe.At the time, this was the most powerful creation in existence. This is the beginning of the Infinity Crusade.

    It was revealed by Mephisto that the Cubes were once sentient beings and their morals apply to the wishes that can be granted, and not all things are possible with the cubes. This can be overridden though, if enough people wish the same thing in unison it can go against the cubes own wishes. He exchanged this information in exchange for a cube of his own when the Goddess was defeated. Thanos did follow through on this bargain, but tricked Mephisto by giving him a powerless cube, saying Mephisto never specified that he wanted one with any power.

    The Red Skull

    The Red Skull was still obsessed of the Cube's powers and created imbalance Cosmic Cubes. The imbalance Cubes were taken by Korvac and later the Grandmaster. The other Cube was seemingly rendered useless.

    Guardians of the Galaxy

    In order to stop all possible futures from becoming futures ruled by the Magus, Kang the Conqueror gives the last remaining Cosmic Cube to Starlord in order to defeat him. He then sends him and the other Guardians of the Galaxy to the moment before Adam Warlock becomes the Magus, and Starlord uses the Cube to change Adam back into himself. But this is only temporary, and Starlord is forced to kill his friend and teammate.

    Ultimate Universe

    Origin

    \"A
    A young Thanos

    In the Ultimate Universe the Cosmic Cube fell from the sky above the home planet of Thanos, crash landing at his feet. With the power of the Cube, Thanos would attempt to control all of creation. Thanos was narrowly defeated, and at an incredible cost of lives. Later in history the Fantastic Four would encounter Thanos in his home dimension after meeting the Seed Nineteen. The Four escaped Thanos, but unknown to the team Thanos had seized this opportunity by planting the idea for the Cube's design in the one person capable of creating one: Reed Richards. Reed realized the spectacular power that the Cube could generate, and was fixated on creating one. In his first attempt to harness the kind of power needed to create the Cube Reed locked onto what he thought was a distant star, and summoned the Silver Surfer to Earth. Seeing the unhappiness and suffering of the Earth's residents the Surfer summoned his master the Psycho Man.

    When Reed finally succeeded in creating a Cosmic Cube he caught Thanos's attention. Reed attempted to use the power of the cube to protect New York City and the entire city was lifted out of the Earth to Thanos's dimension. Thanos's power was far greater than Reed's, and even though Reed had the Cosmic Cube he was inexperienced in its use and unable to defeat Thanos. Reed was seemingly killed by Thanos, but actually changed himself into an energy being to escape obliteration. Ben Grimm, with the help of Thanos's daughter, was able to bring Reed back out of the shell he had created for himself. They traveled back to Earth where Thanos had already enslaved many of Earth's most powerful heroes. They were able to distract Thanos long enough for Reed to give himself back his body. In order to defeat Thanos, Reed would unlock a small portion of the Cube's power which he had previously blocked off. With this safeguard gone, Thanos's body quickly died and disintegrated.

    Thanos's own infatuation with Death would be his undoing. His desire to be dead overcame him and killed him. In trying to decide what he would do with the all-powerful Cosmic Cube he would fulfill the ancient legend of how Thanos originally came to find the Cube.

    Reed opened a very small rift in space and time. He dropped the Cube through the rift above Thanos's planet, which plummeted to the ground and landed by a younger Thanos. In this paradoxical move, the Cosmic Cube which Reed developed would be the original Cube that Thanos had discovered and nearly destroyed the universe with so long ago.

    Post Ultimatum

    The Blueprints for the construction of the Cosmic Cube were stolen from the Baxter Building by A.I.M with the help from the Red Skull who was apparently some how came out of retirement, during the theft the Red Skull brutally beats up Captain America and throws him out of the Helicopter taking the Blueprints.

    \"A
    A completed Cosmic Cube

    It is later revealed to the Team that the blueprints that had been stolen where of the Cosmic Cube and that the A.I.M are Two days away from the completion of the Cosmic Cube but when the Avengers the black ops of the S.H.I.E.L.D. go to A.I.M's base of Operations in Alaska it is revealed that the Cosmic Cube is finished and the Red Skull has used it to kill every member of A.I.M by making them eat each other.

    The Red Skull uses the power of the Cube as an advantage over the Avengers but he isn't in full control of the Cube as he states while battling the Avengers that he needs practice. Although the Skull is beating each member of the team, War machine rips out the hidden nuke inside his armour and damages the entire armour, Hawkeye turns the nuke in to his children's toys and their bones, Black Widow makes her go through the interrogation in Bosnia, makes the Nerd Hulk believe he destroyed the Cosmic Cube but then blasts him away into a Mountain and threatens the Red Wasp that he'll make her go through her Husbands death again but before he is able to do that he is impaled by Captain America on one of the two rods that protrude from the nose of the stolen Teleporter Jet.

    The Red Skull is taken to a hospital and kept alive long enough for his mother, Gail Richards, to say her goodbyes. The Red Skull explains to Nick Fury his only use for the Cosmic Cube was that he wanted to turn back time and prevent his father, Steve Rogers, from being lost at the end of the war so that he could grow up with him and lead a normal life, rather than the one he was given by fate.

    Other Media

    Film

    In the Marvel Cinematic Universe, the Cosmic Cube is renamed the Tesseract, and is one of the main plot threads throughout Phase One of the movies.

    Thor (2011)

    \"No

    After the credits role in Thor, Jane Foster's mentor Erik Selvig is taken to an disclosed location to meet up with the Director of SHIELD, Nick Fury. Fury assigns Selvig to study the recently acquired Tesseract, since he believes it to be the source of vast amounts of energy and power. At first Selvig seems to be against it, eventually Selvig agrees, and it is revealed that he is possessed by Loki , who exclaims \"Well I guess that's worth a look\".

    Captain America: The First Avenger (2011)

    \"The
    The Red Skull with the Cube

    In Captain America: The First Avenger, the Red Skull knows about the Tesseract on Earth that was originally Odin's crown jewel in his treasure vault. He finds a replicate buried in a tomb, which he destroys, leading him to find the original Cube which glows with a strange, blue light, and has his scientist Arnim Zola design a machine to extracts the Cube's raw power. The machine works, and it appears the cube has an endless supply of power that can be extracted and stored in containers that generally act as munition for handguns, tanks, and other weaponry used by Hydra forces. Cube-powered weapons fire appears as glowing blue energy projectiles that completely disintegrate humans in a split second. Only Captain America's vibranium shield is able to deflect these projectiles. Eventually Captain America disturbs the machine that holds the Cube, and it seems to \"short circuit\". Images of space appear. The Red Skull picks up the cube and seems to be slowly disintegrated, or perhaps transported. The cube is then lost at the middle of the ocean, but later found by Howard Stark, who was in search of the Cube and Captain America.

    The Avengers (2012)

    \"Cosmic
    Cosmic Cube in the Avengers

    The Tesseract in the Avengers acts as a gateway through the worlds and realms, Loki uses the Tesseract as a means of transporting the Chitauri from their realm to Earth. But before the invasion and Loki's entrance through the portal that Tesseract opened, he made a deal with an alien being known as The Other, he bargained that he will give Loki a sceptre, and his masters army to invade Earth, Loki will have give his service as well as the capturing of the Tesseract. . Which Loki fails to do.

    S.H.I.E.L.D was planning to use the energy of the Tesseract for Phase 2, creating Weapons of Mass Destruction, just like Hydra in WWII, in order to combat any alien threats that they might face in the Future. The cube is also a reflection and a message to the universe that the Earth is being prepared and is ready for a higher form of War, as Thor claims. Eventually Thor takes the Tesseract back to where it belongs, Odin's Treasure Vault in Asgard.

    Thor: The Dark World (2013)

    In Thor: The Dark World, it is mentioned that the Tesseract is being held in Asgard for safekeeping. The Collector also reveals that it is one of the ancient Infinity Stones. The tie-in comic, Thor: The Dark World Prelude, reveals that the Tesseract was used to repair the Bifrost, which had been destroyed at the end of the original Thor movie.

    Guardians of the Galaxy (2014)

    In Guardians of the Galaxy, a hologram of the Tesseract is shown when the Collector explains the origin of the Infinity Stones to the team. The Tesseract and the other Stones were singularities that existed before the birth of the universe, each of which was compressed into an artifact of pure energy after the universe began growing.

    Avengers: Age of Ultron (2015)

    In Avengers: Age of Ultron, the Tesseract appears in Thor's vision of the Infinity Stones. It is revealed that the Tesseract is merely the housing for the Space Stone, the true power inside.

    Avengers: Infinity War (2018) and Avengers: Endgame (2019)

    In the opening scene of Avengers: Infinity War, Thanos attacks the Asgardian refugee ship in search of the Tesseract (which had been stolen by Loki at the end of Thor: Ragnarok). After Loki surrenders the Tesseract to save his brother's life, Thanos destroys it, revealing the Space Stone within.

    In the sequel, Avengers: Endgame, the surviving Avengers travel back in time to steal the Infinity Stones in order to bring back everyone Thanos killed. In 2012, Iron Man and Ant-Man attempt to steal the Tesseract in the aftermath of the first Avengers movie. However, this plan is thwarted when the 2012 version of Loki steals the Tesseract and uses it to teleport away. This forces the Avengers to instead head back to the 1970s, where they swipe the Tesseract from a military base.

    Captain Marvel (2019)

    In Captain Marvel (which is set in the 1990s), incognito Kree scientist Wendy Lawson experiments with the Tesseract to try and create a light speed engine. However, the device explodes, which causes the Tesseract's energy to grant Air Force officer Carol Danvers superhuman abilities.

    TV

    \"No
    • In Avengers: Earth's Mightiest Heroes, Baron Von Strucker, the leader of HYDRA, has been made aware that a Cosmic Cube is being created by M.O.D.O.C. and A.I.M. scientists. He makes preparations to forcefully retrieve the Cube and use its reality warping powers to alter history and make it so that HYDRA won World War II. The Black Widow (who at the time is an undercover agent for S.H.I.E.L.D., tasked with infiltrating HYDRA and finding out what their plans are) realizing the potential danger that a war between HYDRA and A.I.M. would cause, goes to the Avengers for help. They hesitantly agree to assist and find that HYDRA and A.I.M. have already begun to engage each other in aerial combat over the city. Iron Man discovers that the ship in which M.O.D.O.C. is residing is the same ship housing the Cosmic Cube. The ship is shot down and crash lands in a building leaving M.O.D.O.C. damaged and the Cube discarded on the floor. Baron von Strucker and M.O.D.O.C. engage in combat over the Cube, but Strucker uses his dreadnaughts to quickly overpower M.O.D.O.C. and reaches to touch the Cube. However, in the nick of time, Hawkeye shoots an arrow from several buildings away to which Ant-Man is attached which reaches the Cube just before Strucker can touch it and punches him away. After a brief struggle, Captain America and the Baron begin to fight over the Cube and find themselves equally matched. They both jump for the Cube and end up touching it at the same time. Ultimately nothing changes and reality remains the same. Strucker, HYDRA, A.I.M., and M.O.D.O.C. are then carried away by S.H.I.E.L.D.
    • The Tesseract appears in the first season of Avengers Assemble. In the finale, the Red Skull uses it to transform into the Cosmic Skull. After being defeated by the Avengers, he turns the Tesseract over to Thanos, his true master.

    Video Games

    \"Rappaccini
    Rappaccini with the Cosmic Cube
    • The Tesseract is heavily featured in Lego Marvel Super Heroes. After Loki steals it from Odin's treasure vault, he is confronted by Thor, Captain America, the Human Torch and Wolverine. When the heroes defeat Loki, Wolverine brings the Tesseract to the Xavier Institute in Westchester. However, the mansion is attacked by the Brotherhood of Evil Mutants, who steal the Tesseract. The heroes track the Tesseract's energy signature to Latveria, where Doctor Doom is using it to power a weapon capable of stopping Galactus. However, Loki reveals that the device's true purpose is controlling Galactus, which leads to the final battle. After Loki is thwarted, the Tesseract is taken by S.H.I.E.L.D. for safekeeping.
    • The Cosmic Cube appears in Marvel's Avengers, where it is an invention of Monica Rappaccini.

    Merchandise

    \"Marvel
    Marvel Legends
    • The Cosmic Cube was featured in the HeroClix figure game.
    • Gentle Giant Studios produced a Red Skull bust that included the Cosmic Cube.
    • Diamond Select Toys produced a statue of Thanos holding the Cosmic Cube.
    • Several Lego kits, such as \"Loki's Cosmic Cube Chase\" and \"Wrath of Loki\" have included the Cosmic Cube as an accessory.
    • Several Marvel Legends figures from Hasbro have included the Cosmic Cube as an accessory.
    • A replica of the Tesseract was included as part of the Phase One MCU box set.
    • Hasbro released an SDCC exclusive Marvel Legends Red Skull figure that came packaged with a life size Tesseract role play item.

    Trivia

    The term Tesseract comes from the term to describe a 4-D equivalent of a cube.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8671/","id":8671,"name":"Disaster / The Red Skull Lives","issue_number":"79"},"id":40949,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/17809/339980-95251-red-skull.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/17809/339980-95251-red-skull.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/17809/339980-95251-red-skull.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/17809/339980-95251-red-skull.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/17809/339980-95251-red-skull.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/17809/339980-95251-red-skull.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/17809/339980-95251-red-skull.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/17809/339980-95251-red-skull.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/17809/339980-95251-red-skull.jpg","image_tags":"All Images,Earth-616 Cosmic Cube"},"name":"Cosmic Cube","site_detail_url":"https://comicvine.gamespot.com/cosmic-cube/4055-40949/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40957/","count_of_issue_appearances":31,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-05-22 20:42:08","deck":"The Siege Perilous is an artifact in the Marvel Universe that acts as a portal to an unknown dimension where judgment would be passed on those that entered.","description":"

    Brief History

    \"
    The Portal Opening

    The Siege Perilous is an artifact in the Marvel Universe that acts as a portal to an unknown dimension where judgment would be passed on those that entered. It was a small pocket-sized artifact, but when it was powered up, it became a large portal. The X-men entered it to stop a dangerous foe in Dallas, Texas, thinking it would lead to the death of their advisory, but also their own deaths. They where however brought back by Roma after the X-men relocated to Australia and let the world believe they actually died.

    \"The
    The X-men Entering the Portal

    Roma gave the portal to the X-men, whom took possesion of it since then. The X-men used it a second time against the Master Mold whom was battling the X-Men when he absorbed the nearby Nimrod, a Sentinel from the future. Master Mold was forced into the Siege Perilous. What emerged was the biological sentinel Bastion, who had no memory of his past. Unfortunately, the X-man Rogue was thrown into the portal at the same time and she seemed to have vanished from the earth.

    Eventually, most of the X-men entered the Siege Perilous when they tried to flee from the Reavers in a battle they knew they could not win. The team was scattered across the planet, and most of them lost their memories for a time. It caused the disbanding of the X-men team that was located in Australia at the time. Just after the X-men had fled, Donald Pierce of the Reavers picked up the now pocket-sized artifact, and destroyed it.

    Creation

    The Siege Perilous first Appeared in Uncanny X-Men #227.

    Other Versions

    Universe X

    King Britain, Queen Medusa, The Mar-Vell Child, Captain America and The Black Knight ( Ahura Boltagon) of Earth-9997 once used the Siege Perilous gateway in Darkmoor to visit Merlin, Roma and Earth-9997's Psylocke and found themselves within The Omniverse itself. Suggesting that The Siege Perilous can be used as a doorway into every alternate reality, parallel universe and possible Pasts, Presents and Futures in existence. Some of the accessible realities seen by the group while they were within The Omniverse were the MC2 reality, Killraven's Future, Mutant X and Days of Future Past.

    Other Media

    Ultimate Spider-Man: Web Warriors

    In the four part Spider-Verse episode, the Goblin used the Siege Perilous to visit alternate Earths to gather DNA from alternate Spider-Men. It appeared as a smartphone sized artifact that opened purplish wormholes to the other Earths. It required a lot of energy to operate, supplied by Electro in this instance. It was shown to be able to provide access to versions of the 2099, Noir, and Ultimate realities, among others.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-29383/","id":29383,"name":"The Belly Of The Beast!","issue_number":"227"},"id":40957,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/28028/676016-omniversal_doorway.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/28028/676016-omniversal_doorway.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/28028/676016-omniversal_doorway.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/28028/676016-omniversal_doorway.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/28028/676016-omniversal_doorway.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/28028/676016-omniversal_doorway.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/28028/676016-omniversal_doorway.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/28028/676016-omniversal_doorway.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/28028/676016-omniversal_doorway.jpg","image_tags":"All Images,Siege Perilous"},"name":"Siege Perilous","site_detail_url":"https://comicvine.gamespot.com/siege-perilous/4055-40957/","start_year":"1988"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40970/","count_of_issue_appearances":201,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-10-19 17:21:30","deck":"The highly durable, mystical Asgardian Ore best known for being used to forge Thor's hammer, Mjolnir. Uru is formed from the core of a dying star.","description":"

    Properties & Characteristics

    Uru is a substance that is both stone and metal. Nothing less than the heat from a star, or the very forges of Asgard will provide sufficient heat to shape and mold the metal. It is because of this, weapons forged using this metal, especially those that are further enchanted, are highly resilient to damage. The most famous of these is Thor's hammer, Mjolnir. Due to its incredible durability and resistance to damage, its ductility is impossible to determine, and it is unknown if Uru can be drawn into wire.

    It was Tony Stark, who first discovered this metal's natural affinity for magic. It has shown to be capable of storing vast amounts of energy, particularly magical energies. While not easily enchanted, Uru metal absorbs magic like a sponge, redirecting it and enhancing the natural attributes of its wielder. The enchanting process also dramatically increases its durability. Tony Stark's \"Thorbuster\" Armor, is fueled by Uru. This allowed it to channel a full blast of lightning from Mjolnir and the Odinforce into a blast from its Uni-beam.

    A symbiotic relationship between Uru and its wielder exists that allows for many astounding feats: a mystical user, such as Thor, can lend his own strength to the Uru in his hammer, thus making the metal stronger and more resilient.

    As a unique Asgardian element, Uru is extremely resilient and has an extraordinary ability to hold magic. As such it is primarily used to forge weapons for the Gods of Asgard.

    Applications

    Uru metal is used as the primary component in several famous weapons:

    1. Geirrodur's weapon is a spear called Tordenstock. Forged of Uru metal, it possesses several mystical properties as well as being virtually indestructible.
    2. His father, the master blacksmith and weapons maker of the tribe, taught Geirrodur all that he knew. When his father died in a war against the Storm Giants, Geirrodur took his father's place. Among the greatest accomplishments of his reign was the design and construction of burrowing machines, that included Uru metal components, allowing them to dig into other dimensions. Geirrodur's machine has been used to create trans-dimensional tunnels from the bowels of Asgard into the very depths of the Earth.
    • The new left arm of Thor was forged from black uru by the Darwf Screwbeard of Nidavellir to replace the arm severed by the dark elf Melekith.
    • The body of Uroc the Unstoppable
    1. Uroc, then a Rock Troll in the service of King Grundor, was ordered to find his king a new weapon, or be killed. Uroc stumbled upon a vast supply of Uru metal, and used it to build a great statue. Transferring his consciousness into his new body of Uru metal, he returned to Grundor's kingdom to have his revenge.
    2. Uroc's entire form is composed of the near-unbreakable substance. Standing at least 20 ft tall, he possesses many mystical powers, including the ability to absorb and project lightning, as well as the ability to magnetize, and attach other pieces of Uru to his body. This form also grants him vast superhuman strength.

    Availability & Production

    Uru metal is unique to the dimension of Asgard. It is prized most by Dwarven miners and smiths, serving as their chief export.

    Note:

    Uru's physical characteristics are difficult to measure, due to the fact that nearly all known samples are also heavily magically enchanted, making accurate measurements of its properties nearly impossible. Depending on the method or nature of the enchantment, the physical characteristics, more often than not, vastly differ from one another. Mjolnir, for example, has proven itself capable of withstanding immense force and physical strain (e.g. Channeling both the energy of the Storm and the Odinforce to dent Captain America's shield) while Uroc's hand was shattered (following exposure to liquid nitrogen) with a gunshot.

    Precaution:

    Applying a permanent enchantment to Uru is very dangerous and should only be attempted by those of immense power, well versed in both the enchanting and crafting of the metal. Despite its incredible ability to store and harness vast quantities of energy, (especially those of a mystical nature), the casting of a permanent enchantment can cause the Uru to become dangerously volatile, and unstable. Often causing more harm than good. Although this isn't always the case, as shown by how Odin enchanted mjolnir without much trouble.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6464/","id":6464,"name":"Sandu, Master Of The Supernatural","issue_number":"91"},"id":40970,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/5492978-uru.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/5492978-uru.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/5492978-uru.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/5492978-uru.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/5492978-uru.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/5492978-uru.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/5492978-uru.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/5492978-uru.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/5492978-uru.jpg","image_tags":"All Images"},"name":"Uru","site_detail_url":"https://comicvine.gamespot.com/uru/4055-40970/","start_year":"1963"},{"aliases":"Hammer of Thor\r\nThor's hammer\r\nMjölner\r\nMjölnir\r\nMjølner\r\nMjollnir","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40971/","count_of_issue_appearances":3323,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-02-13 06:37:16","deck":"Mjolnir (pronounced myawl-nir) is the enchanted hammer wielded by Thor. It was forged by the dwarf weaponsmiths Brokk and Eitri after a bet with Loki. The name means crusher or grinder.","description":"

    History

    Mjolnir (pronounced myawl-nir) is the enchanted hammer wielded by Thor. It was forged by the dwarf weaponsmiths Brokk and Eitri after a bet with Loki. The name means crusher or grinder.

    Marvel

    \"Mjolnir's
    Mjolnir's inscription.

    The Mjolnir weilded by Marvel's Thor was made from the mystical ore Uru. It has a long metal hilt made of Uru and is wrapped in a strip of leather with a thong to secure it around the bearer's hand. Mjolnir means \"That Which Smashes\". When the dwarves started to build Mjolnir, they used the inner core of a star as a mold and while they were shaping the hammer inside the core, the star went supernova and killed off the dinosaurs. When Mjolnir was finished, Odin first used it to defeat the leader of the Frost Giants, Laufey. Later, Thor received the hammer after proving himself worthy after going through Odin's trials.

    Inscription

    \"Whosoever holds this hammer, if he be worthy, shall possess the power of THOR\"

    An old enchantment meaning if Thor was parted for more than 60 seconds he reverted back to Donald Blake causing Mjolnir to be taken away.

    During a time when Thor became unworthy and was unable to lift the hammer a new worthy (female) Thor could lift Mjolnir and the inscription changed to: \"Whosoever holds this hammer, if she be worthy, shall possess the power of THOR\"

    In the same way Odinson could lift another hammer from other dimension, which inscription says: \"Whosoever holds this hammer, if he be unworthy, shall possess the power of THORR\"

    Worthiness

    As the inscription states, only those deemed worthy by the enchantments of Mjolnir may even lift the hammer. Those who are worthy of wielding Mjolnir gain all of Thor's powers (with the exception of the godblast). Other than Thor, some others who have been able to wield Mjolnir include: Awesome Android, Beta Ray Bill, Captain America, Jane Foster, Red Norvell, Thunderstrike, and Wonder Man. As Thor's ancestry Odin, Bor and Buri can also wield Mjolnir. The cyborg clone of Thor known as Ragnarok was also able to pick up an alternate universe version of Mjolnir when he and the Thunderbolts traveled to another universe.

    The ability to wield Mjolnir is not permanent, and may also depend on need. For example, when Thor became Lord of Asgard for a time, he was temporarily unable to pick up Mjolnir for having strayed from his honorable path.

    Powers & Abilities

    As the inscription states, Mjolnir grants its users \"the power of Thor.\" The most prominent of these powers are flight, shown to reach speeds far in excess of the speed of light, and electrical discharge, often demonstrated by either blasts of lightning or by calling it from the sky. Mjolnir possesses a fraction of the Odin Force, more powerful than the Power Cosmic given to Heralds of Galactus. This weapon has more exotic abilities such as energy absorption and projection, dimensional transportation, the creation of force fields, and the tracking of any being or object to anywhere in time or space. But Thor has rarely called on it to perform in such a fashion. The most powerful attack Mjolnir is capable of channeling is the God-blast (which draws power from Thor's life force, and is an ability inherent only to Thor). This is possible without Mjolnir, but it is less concentrated on a single target. Another powerful attack is the Anti-Force which was said to be able to decimate entire planets in a single blast.

    Alternate Universes

    Those who have been deemed worthy to wield Mjolnir in Alternate Realities are:

    Adam Warlock, Earth-19141

    Alex Power, Earth-5631

    Beta Ray Bill, multiple realities

    Conan the Barbarian, Earth-83600

    Crusader, Earth-9811

    Danielle Cage, Earth-807128

    Dazzler, Earth-15513

    Dargo Ktor, Earth-8710

    Deadpool

    Loki,

    Magni,

    Rogue,

    Throg

    Vision

    DC's Superman and Wonder Woman have also been portrayed as being able to lift Mjolnir in non-canon inter-company crossovers.

    Ultimate Mjolnir

    \"Ultimate
    Ultimate Mjolnir design.

    Ultimate Thor's hammer bears little resemblance to its 616 counterpart. The handle of ultimate Mjolnir is longer, and comes to a point at the bottom where there is also a leather thong. Rather than a solid, square block of metal for a hammer, Ultimate Mjolnir's head resembles a hammer on one side, and has an axe blade on the other. Similar to its 616 counterpart, Ultimate Mjolnir's enchantments allow Ultimate Thor to fly, teleport, control and manipulate weather (particularly storms), as well as channel thunder and lightning. Ultimate Thor was revealed to have an arsenal of enchanted weapons, including a hammer that resembles the 616 version of Mjolnir.

    Other Media

    Iron Man 2 (2010)

    Mjolnir makes an appearance in Iron Man 2. It can be seem at the end of the film after the closing credits, where Agent Coulson is shown reporting its location to Nick Fury.

    Thor (2011)

    \"No

    Mjolnir is featured in the Thor live action movies as Thor's primary weapon. It displayed many attributes common to its comic counterpart such as flight, weather manipulation and electrical discharge. A running gag involves Darcy Lewis mispronouncing Mjolnir's name as \"Mew Mew\".

    The Avengers (2012)

    Mjolnir is again featured in The Avengers, where Thor plays a prominent role. It is used effectively against the Hulk and Iron Man but is unable to penetrate Captain America's shield. It demonstrates several abilities, including flight, electrical discharge, weather manipulation, and the ability to return to Thor's hand. Its enchantment also proves strong enough to prevent even the Hulk from lifting it.

    Thor: The Dark World (2013)

    Mjolnir is once again featured in Thor: The Dark World.

    Avengers: Age of Ultron (2015)

    \"Iron
    Iron Man and War Machine attempting to lift Mjolnir

    Mjolnir returns in Avengers: Age of Ultron. One of the early scenes in the movie features a debate among the Avengers as to whether or not the hammer really is magic. This results in a humorous scene where Captain America, Hawkeye, Iron Man, and War Machine all attempt to lift it. None of them are successful, though Captain America manages to budge it slightly (something which visibly surprises Thor).

    Just prior to the final battle, Vision proves himself worthy when he demonstrates the ability to lift the hammer. During a key moment, he lifts it again and uses it to attack Ultron.

    Thor: Ragnarok (2017)

    \"Hela
    Hela about to destroy Mjolnir

    Early on in Thor: Ragnarok, the goddess Hela destroys Mjolnir, forcing Thor to rely on other weapons.

    Merchandise

    \"Marvel
    Marvel Legends

    Various companies such as Hasbro and efx have produced replicas of the hammer at various price points.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159851/","id":159851,"name":null,"issue_number":"51"},"id":40971,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/28028/710763-mjolnir_melts.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/28028/710763-mjolnir_melts.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/28028/710763-mjolnir_melts.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/28028/710763-mjolnir_melts.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/28028/710763-mjolnir_melts.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/28028/710763-mjolnir_melts.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/28028/710763-mjolnir_melts.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/28028/710763-mjolnir_melts.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/28028/710763-mjolnir_melts.jpg","image_tags":"All Images,Color Art,Earth-616 Thor,Mjolnir,Stormbringer,Thor"},"name":"Mjolnir","site_detail_url":"https://comicvine.gamespot.com/mjolnir/4055-40971/","start_year":"1944"},{"aliases":"Sturmbringer","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40972/","count_of_issue_appearances":123,"date_added":"2008-06-06 11:27:50","date_last_updated":"2017-10-26 23:16:41","deck":"Stormbreaker is the enchanted hammer that is carried by Beta Ray Bill. Its enchantments are the same as those of Mjolnir: Thor's enchanted hammer. Stormbreaker was given as a gift to Beta Ray Bill from Odin.","description":"

    Origin

    \"No

    Stormbreaker was forged by Eitri a Dwarf of Nidavellir, and enchanted by Odin after Beta Ray Bill defeated Thor in hand-to hand combat but refused to kill him, it made its first appearance in Thor #339. It has all of the strengths of Mjolnir but none of it's limitations. Stormbreaker may only be wielded by Beta Ray Bill, or those who are worthy enough to lift it so far only Thor, Beta Ray Bill, and Odin have proven worthy.

    Price

    When Odin commissioned the hammer to be crafted, Eitri demanded a price of him. The dwarves had a champion, and Eitri demanded Odin send a woman to defeat the champion. If the woman bested the champion, the dwarves would forge the hammer. If the champion won, the female would become the champion's chattel. Odin chose Sif for this battle and she bested the Throgg the Dwarf. Sif then learned that Throgg had ruled the dwarves with his freakish size, and that having been defeated by a woman he would never show his face again. The Dwarves gained their freedom, and a tale to tell for ages to come. Thus Eitri fulfilled his bargain and forged Stormbreaker.

    Properties

    As Stormbreaker is an enchanted weapon of Asgard similar to Thor's hammer Mjolnir, it has unique properties and attributes. It is an extremely powerful weapon.

    • Elemental Control: the ability to summon and create storms, lightning blasts, intense gale force winds, and rain.
    • Energy Projection: aside from lightning, there are powerful concussive type blasts as well composed of some type of mystical energy
    • Flight: Stormbreaker allows Beta Ray Bill flight, including into the depths of space. Also has exhibited Faster Than Light high end travel speeds.
    • Striking Power: incredibly strong striking blunt force trauma blows
    • Teleportation: the ability to transport interdimensionally (such as to Asgard) or to teleport objects (such as when teleported a comet into Ego the living planet)
    • Return to Sender: the hammer returns to Beta Ray Bill's hand after being thrown such as Mjolnir does to Thor. It is also able to be summoned to Bill if out of his hands without being thrown.
    • Worthiness: Similar to Mjolnir, only those who are worthy may lift and wield Stormbreaker. To dat the only beings capable of accomplishing this are Odin, Beta Ray Bill, and Eric Masterson Thor.

    \"No
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-23893/","id":23893,"name":"Something Old, Something New...","issue_number":"339"},"id":40972,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/125906-67533-stormbreaker.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/125906-67533-stormbreaker.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/125906-67533-stormbreaker.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/125906-67533-stormbreaker.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/125906-67533-stormbreaker.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/125906-67533-stormbreaker.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/125906-67533-stormbreaker.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/125906-67533-stormbreaker.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/125906-67533-stormbreaker.jpg","image_tags":"All Images,Stormbreaker"},"name":"Stormbreaker","site_detail_url":"https://comicvine.gamespot.com/stormbreaker/4055-40972/","start_year":"1984"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-40973/","count_of_issue_appearances":85,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-08-15 10:14:56","deck":"Thunderstrike is the enchanted mace made for Eric Masterson. It grants its bearer some of the powers of Thor.","description":"

    Thunderstrike first appeared in Thor Vol. 1 #459, it was a \"duplicate\" of Mjolnir, made in Asgard by Odin for Eric Masterson as a replacement for Mjolnir after the true Thor returned to claim it. Its inscription reads, \"The World Still Needs Heroes THUNDERSTRIKE\".

    Thunderstrike is made of the mystical uru metal and grants its bearer (if they are worthy) a magnitude of tremendous abilities. If the mace is thrown it returns to their hand with irrestitable force or can be summoned without being thrown.

    If the mace is stamped it can revert its bearer to their mortal form and it becomes a walking stick but if stamped again, they return to their godly body and it becomes a mace once again.

    It has the ability to absorb, magnify and return any type of force allowing it create blasts of power or to manipulate the very elements around them.

    If the mace is thrown and its strap held onto the bearer can fly and is immune to the harmful effects of being within space. It is able to detect nearly every type of energy particularly strong, evil psychic energy. It can also glow in order to provide a limited amount of light.

    By theory the mace can open portals to any desired dimension, at least if it was swung at a certain pitch, by Thor.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-36793/","id":36793,"name":"To The Victor","issue_number":"458"},"id":40973,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/1337368-1281720295.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/1337368-1281720295.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/1337368-1281720295.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/1337368-1281720295.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/1337368-1281720295.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/1337368-1281720295.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/1337368-1281720295.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/1337368-1281720295.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/1337368-1281720295.jpg","image_tags":"All Images,Art Work,Earth-616 Thunderstrike,Stormbringer,Thunderstrike mace"},"name":"Thunderstrike","site_detail_url":"https://comicvine.gamespot.com/thunderstrike/4055-40973/","start_year":"1993"},{"aliases":"Soul Gems\r\nInfinity Stones","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41041/","count_of_issue_appearances":227,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-07-10 11:32:58","deck":"The Infinity Gems are six precious stones of cosmic origin that give the possessor mastery over a certain power. Collecting and using all six gems will give the wielder complete control over the universe.","description":"

    Characteristics of the Infinity Gems

    Initially known as the Soul Gems, and also known as the Reality Gems, the Infinity Gems are among the most powerful artifacts in existence. The unassuming gems are oblong in shape and smooth in texture. They are about 4 to 5 inches in length. The power in these gems are subtle in their influence, and if an owner is unaware of the vast potential of a gem they could very well never realize it. Each gem gives the bearer complete power and mastery over it's aspect of the universe which are Power, Reality, Space, Time, Mind, and Soul. Together the gems give whomever can combine their control over all aspects, making the wielder immensely powerful to the point of omnipotence. The gems can be mounted on the Infinity Gauntlet, a golden left glove.

    Only the Living Tribunal, judge of the multiverse, is immune to the wishes of the wielder of the Infinity Gems.

    Origin

    Largely unknown to all but a few select beings is the origin of the gems. After discovering the true potential of the gems Thanos told the history of the gems to the Elder of the Universe, The Runner. The gems are the remains of a once omnipotent being named Nemesis whose domain was any and all realities. This great being was also utterly alone. This being attempted to create life forms, but the life forms lacked the concept of good or evil, and devolved into demonic beasts. Realizing its error the being destroyed its flawed creations. Once again alone and unable to bear the eternal solitude, the being committed suicide.

    However, power at that level does not easily dissipate, and remnants of that being forged into the Infinity Gems. The gems have been found to have their own sentience, and they are all linked to one another. The most recent discovery has been that possession of these gems can allow the owner to 'find' the other gems. Though it's also been discovered that securing the first five gems consecutively becomes more difficult to obtain, though eventual ownership of five gems would give the owner enough power to lure or locate the last. This makes possession of all six next to impossible.

    The Infinity Gems

    Originally known as the soul gems, they were renamed the Infinity Gems by Thanos. He also gave each individual gem a name based on the power they possessed.

    The Infinity Gems are:

    SOUL - This green gem is the first to be seen in continuity in the Power of Warlock series. It is arguably the most dangerous. Its sentience is the most profound, and it has shown a hunger for souls, a hunger that can possess a novice user. This gem allows the user to steal, manipulate and alter souls, living or dead. Within the gem are collected souls in perpetual limbo. Mastery of the gem would allow the user to control all living life in the universe. The gem also allows the bearer access to an idyllic pocket-universe that is much like heaven.

    Notable Owners: Adam Warlock, the In-Betweener, Thanos, Magus, Doctor Strange, Invisible Woman (Earth-9997/Earth-X)

    POWER - This red gem contains access to all power and energy that ever has or will exist. Mastery of the gem would allow the user to duplicate any physical superhuman ability. They would be essentially physically invincible and therefore unbeatable when using raw power alone. It can also be use as an unlimited power supply for any machine. When combined, this gem can boost the effects of other gems, allowing the user to tap into a gems potential without necessarily mastering it.

    Note: The color of the gem has fluctuated. When it was in the possession of Drax The Destroyer the Power Gem was noted as pink. It also appeared blue when in the possession of Thor. Whether this is intentional or not is still questionable, but for the most part the gem is red.

    Notable Owners: Champion, Thanos, Magus, Drax, Thor, Mr. Fantastic, Namor

    TIME - This orange gem allows the user to be in any period of time. From the beginning to the end of time, any moment is accessible or visible through its power. Those with limited knowledge in the use of the gem can cause those nearby to revert to a physically older or younger state. With enough knowledge, even more can be done, as time and causality can be manipulated with this gem. The user can also use time as a weapon, trapping enemies or entire worlds in unending loops of time. Mastery would allow the user to affect the whole universe with time manipulation, such as slowing down time in one stretch of the cosmos, freezing time in another and looping time in yet another.

    Notable Owners: Gardener, Thanos, Magus, Gamora, Namor, Steve Rogers

    SPACE - This purple gem allows its owner to be anywhere in an instant. They can be in multiple places in the universe, or nowhere. Mastery would allow the owner to warp or rearrange space as they see fit.

    Notable Owners: Runner, Thanos, Pip the Troll, Black Bolt, Iron Man

    MIND - The blue mind gem gives the owner access to all thoughts and dreams. It also gives the user a wide number of other mentally related abilities including telekinesis. It encompasses the collective consciousness of the universe. In the hands of one unskilled in its use, the gem could unleash your dreams and nightmares uncontrollably within your mind. Worse yet, one oblivious to the dangers can have their inner demons overwhelm them. For a novice user it can add or boost mental power, and augment the mind's abilities. Further knowledge of the gem can allow the user to tap into further power. Where the reality gem alters reality itself, the Mind gem can make you think the world has changed. Mastery would allow the user to access all the minds of the universe, simultaneously.

    Notable Owners: Grandmaster, Thanos, Magus, Moondragon, Professor X

    REALITY - They say that perception is reality. The yellow Infinity gem makes that quite literally true. Perhaps the most powerful of the gems, mastery can render scientific laws meaningless, senses useless. With this gem wishes can be obtained. The vastness of its power can overwhelm its user, making a novice cease to exist. This gem is perhaps even more dangerous by itself than with the the help of another gem to manage its power. It is the most difficult to control and utilize.

    Notable Owners: Collector, Thanos, Iron Man, Mr. Fantastic

    Infinite Destinies

    To keep the stones from falling into the wrong hands again, Adam Warlock imbued them with a sense of purpose so they would develop sentience and choose their own users.

    Reality Gem - Star, a reporter who got famous off an anti-Carol Danvers article

    Time Gem - Overtime, a convict who used his gem to escape prison.

    Power Gem - Prince of Power, an alien who fell in with the Guardians of the Galaxy

    Space Gem - Quantum, hired muscle for an artificial intelligence

    Soul Gem - Multitude, a synthetic person studying humanity

    Mind Gem - Still unrevealed

    The Worlds Within

    Each of the gems have hidden pocket worlds inside each of them

    Mind Gem - The Mindscape

    Soul Gem - Soul World

    Power Gem - The Arena

    Space Gem - The Vast

    Time Gem - The Ellipsis

    Reality Gem - The World Pool

    The Seventh Gem

    Often ignored, best forgotten, the seventh gem was created for a Marvel/Ultraverse crossover. The seventh gem, Ego, was discovered by Loki. It was found that Nemesis, an omnipotent being in the Ultraverse, was the source of the Infinity Gems and that the seventh gem was her remaining consciousness. When combined, this gem would give the other gems form and sentience. These gem embodiments fought the combined might of the Avengers and Ultraforce.

    Infinity Gems/Illuminati

    At an undisclosed time in recent Marvel history the Infinity Gems were under the protection of the Illuminati. Charles Xavier, Iron Man, Black Bolt, Namor, Mister Fantastic & Doctor Strange all had an Infinity Gem in their possession and stored it in what they thought to be a safe place.

    However, recently in the Avengers ongoing the Hood has begun gathering the Infinity Gems in a mad quest for power. He learned of them from an Inhuman long thought dead who was imprisoned with him on Ryker's Island. Paying one of the guards a substantial amount of money to escape he has journeyed to Attilan the former home of the Inhumans in the Himalayas to recover the Reality Gem. It was left on Earth by Black Bolt and unknown to the other Inhumans at the time of his death. He has also recovered the Power Gem from Reed Richards laboratory in the Baxter Building. Showcasing the Power Gem's abilities he has already easily defeated the Red Hulk in hand to hand combat. After the Hood is defeated, the members of the Illuminati, now joined by Captain America, hide the gems once more.

    In New Avengers, the members of the Illuminati come back together to prevent incursions from parallel Earths. Black Panther and Beast join the team, and Captain America is expelled after he accidentally shatters the gems. During Original Sin, the Time Gem returns, and takes Captain America on a tour of the future, where he subsequently encounters Iron Lad, Kang the Conqueror, and Immortus. He ends up destroying the Time Gem in order to prevent Kang and the others from holding him prisoner.

    Marvel Cinematic Universe

    \"The
    The Infinity Stones

    In the Marvel Cinematic Universe, there are six Infinity Stones, each of which are sought after by Thanos. Rather than being a matching (albeit differently-colored) set of gems, the stones all sport radically different appearances.

    • The Tesseract (Introduced in Captain America: The First Avenger): A blue cube hidden by the Asgardians. It contains the Space Stone. Was locked away on Asgard according to Volstagg. Until Loki took it with him when Asgard was destroyed.
    • The Scepter (Introduced in The Avengers): A glowing blue staff given to Loki by The Other. It contains the Mind Stone, a yellow gem. it had been mounted on the Vision's forehead with the approval of Thor. Until it was removed by Thanos.
    • The Aether (Introduced in Thor: The Dark World): A red, fluid-like substance possessed by the Dark Elves. It was shortly in possession of The Collector.
    • The Orb (Introduced in Guardians of the Galaxy): A gray, spherical object found by Star-Lord. It contains the Power Stone, a small purple gem. It was locked away and under the Nova Corp's guard on Xandar. Until Thanos destroyed Xandar and took the stone with him.
    • The Eye of Agamotto (introduced in Doctor Strange): A green stone in the possession of the sorcerer supreme. It was in possession by Doctor Strange for a while, until he gave it to Thanos after he saw the 1 in 14 million ways to beat Thanos.

    In Guardians of the Galaxy, an origin is provided for the Stones. It is stated that the six Stones represent forces that existed before the creation of the universe, and that only beings of immense power can wield them.

    In Avengers Infinity War, Thanos collects all six stones and uses their combined power to wipe out 50% of life in the universe.

    In Avengers Endgame, Thanos reveals he used the power of the stones to destroy the stone. To undo what Thanos did, the Avengers traveled to the past to collect the stones from earlier in the timeline. Once they returned the 50% of life wiped out by Thanos, Captain America returns the stones to when they were stolen to prevent paradoxes.

    Video Games

    \"Marvel
    Marvel Super Heroes
    • The Infinity Gems are featured in Marvel Super Heroes: War of the Gems.
    • The Infinity Gems are featured as power ups in Marvel Super Heroes.
    • Thanos uses the Infinity Gems in Marvel vs. Capcom 2: New Age of Heroes.
    • The Infinity Gems appear in Marvel Super Hero Squad: The Infinity Gauntlet.
    • The Infinity Stones appear as power ups in Marvel vs. Capcom: Infinite.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-14493/","id":14493,"name":"Triumph On Terra-Two","issue_number":"178"},"id":41041,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111141742/6980363-rco001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111141742/6980363-rco001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111141742/6980363-rco001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111141742/6980363-rco001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111141742/6980363-rco001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111141742/6980363-rco001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111141742/6980363-rco001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111141742/6980363-rco001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111141742/6980363-rco001.jpg","image_tags":"All Images"},"name":"Infinity Gems","site_detail_url":"https://comicvine.gamespot.com/infinity-gems/4055-41041/","start_year":"1974"},{"aliases":"Grüner Kraftring","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41361/","count_of_issue_appearances":3089,"date_added":"2008-06-06 11:27:50","date_last_updated":"2020-08-04 16:54:14","deck":"The power ring of a Green Lantern is the source of power and a badge of authority for almost every member of the Green Lantern Corps. It is fueled by willpower.","description":"

    Origin

    \"No

    Long ago, the Guardians Of The Universe decided that they would be the protectors of law and order in the universe. Their first attempt at a galactic police force, the Manhunters, was a failure, due to their lack of sentient emotion.

    The Guardians turned to sentient beings from across the universe, and thus created the Green Lantern Corps. The Guardians forged rings, which channeled pure willpower from their users into solid constructs and objects. The rings were powered by the Central Power Battery, another object the Guardians created.

    Alan Scott's Ring

    The Guardians of the Universe gathered all random magic and fused it into the Starheart, which gained sentience. A piece of the Starheart fell to Earth. It was fashioned into a rail road lantern which, during a train disaster, saved Alan Scott of Earth. Creating a ring from part of the lantern, Scott fought crime as the \"Green Lantern.\"

    Alan Scott's power ring has many capabilities. It creates anything the wearer can imagine and it gives the wearer the ability to fly, but it's magic cannot affect wood and things related to wood, like cellulose particles. The ring must be recharged every 24 hours by touching the Green Lantern for 10 seconds.

    Original Corps Rings

    Deciding to form a galactic peacekeeping corps, the Guardians forged a giant, main Central Power Battery on planet Oa, combining their own energy with the planet's ambient power. They chose 3600 agents and gave each a ring, a personal power battery linked to the Central Power Battery, and a sector of space to protect. A Corps member could select his own successor, as Abin Sur did with his test pilot Hal Jordan.

    These rings, just as Alan Scott 's, create/do anything the wearer can imagine, but this time their powers included time travel, and they also allow the wearer to fly. The ring's potency depends on the willpower of the wearer. The rings can also create duplicates of themselves. Reserve power automatically protects the wearer from mortal harm. The ring must be charged every 24 hours by touching the battery for 10 seconds, during which time the Green Lantern will usually recite their oath, and it's energy cannot affect anything colored yellow.

    Oan Power Rings

    \"A
    A Guardian's Oan power ring

    In the days before the original Green Lantern Corps, the Guardian known as Meadlux created a power ring specifically for the Guardians. An Oan power ring possessed the same capabilities as a standard ring, but was fueled by the internal power of its wielder and thus did not need to be recharged. Unlike the traditional Green Lantern power ring, an Oan power ring did not contain the impurity that restricted its capabilities against materials colored yellow. The revelation that such a weapon existed caused a great schism within the ranks of the Green Lantern Corps. Officers who had lost close comrades due to adversaries empowered by yellow weaponry lost faith in the Guardians, some of whom, such as Galius Zed, Eddore, and Kaylark even went so far as to turn their backs on the Guardians, coveting the rings for themselves. Another group of individuals who took an interest in the Oan power rings were the space pirates known as the Free Lancers.

    Power Ring's Power Ring

    Power Ring, a member of the Crime Syndicate of America, wielded a Power Ring that utilized mystic energy, enabling him to fight and sometimes overcome even the Crime Syndicate of America's counterpart to Superman, Ultraman. Its powers were the same as Hal's, but without the yellow weakness, or Alan's wood weakness.

    Kyle Rayner's Ring

    After Green Lantern Hal Jordan went rogue - destroying the Corps, the Guardians, and the Main Battery - the sole remaining Guardian, Ganthet, gathered the fragments of Hal's shattered ring. He created from them the last Power Ring and conferred it upon a young Earth man, Kyle Rayner. Kyle's battery is a piece of the original Main Power Battery.

    Just as the rings before him, Kyle Rayner's ring creates anything the wearer can imagine and allows the wearer to fly. This special ring though is keyed to Kyle Rayner's DNA. It can only be used by him, those related to him, and Hal Jordan. The power supply is expended according to what the ring creates rather than the length of time since it's last recharge. The ring must be recharged by touching to the battery for a period proportionately equal to how \"empty\" it is. It gives the wearer a sense of \"full\" or \"empty.\" Rayner's power ring is invulnerable to every known substance.

    Sojourner Mullein's Ring

    Jo's ring does everything a regular Green Lantern ring does, however, it does not need a power battery to recharge. Instead, it recharges incrementally over time. A side effect is if it ever depletes completely, it takes a lot longer for it to be useful, leaving the ringbearer vulnerable for longer. It has also been specifically designed to not power itself based on the will to overcome fear but rather the will to live with it. According to the Guardian that gave it to her, this causes more random spikes in sheer power. To save on power, she has an implant with a translator program called \"Meatware\" so she can understand the people of The City Enduring instead of using the ring's universal translator.

    New Corps Rings

    The new, reformed Corps has new rings. With the destruction of the cosmic entity of fear, Parallax, came a new age for the Green Lantern Corps. Kyle Rayner single-handedly reformed the corps.

    Also with the destruction of Parallax came the removal of the \"yellow impurity,\" as it is now called, and only new Green Lanterns have trouble with the color yellow. They must feel fear, and overcome it, before they can effect the color yellow. Other than this, the new rings are almost exactly like the original Corps' rings.

    Other Power Rings

    The Book of Oa has a forbidden chapter on cosmic revelations, which included prophecies about the Blackest Night. At the end of the Sinestro Corps War, the Guardians of the Universe known as Ganthet and Sayd reveal to the four Green Lanterns based on Earth the final verse of the prophecy, known as the \"Blackest Night\", which reveals that five more Corps, one for each of the remaining colors of the rainbow will be created in the future and that war will break out between the seven Corps until they destroy each other and the universe, leading to the Blackest Night prophesy.

    • Yellow Unlike the Green Rings of the Corps which operate by channeling pure willpower, these rings which are forged on Qward channel pure fear. Several versions of these rings have been created, but recently they have become the primary weapon of the Sinestro Corps, seeking out individuals to battle the Green Lantern Corps who have the ability to instill great fear.
    • Blue Blue Power Rings are shown to symbolize hope, and were forged by Ganthet and Sayd, two former guardians. The Blue Lantern Corps' rings only work when an active green lantern is present.
    • Red Red rings channel rage and hate. They appear to manifest their power out of the wielder's mouth. It hasn't been confirmed yet though.
    • Violet Violet rings, forged by the Zamarons, are shown to embody love.
    • Indigo Indigo rings are fueled by compassion, and its users are ambassadors of goodwill and are much like shamans
    • Orange Orange power rings are based off of avarice, also known as greed.
    • Black A massive black lantern surrounds the Anti-Monitor's body as he lands on an alien planet. It is revealed to make a black power ring, which latches on to the dead. They will bring the Guardians' prophesied \"Blackest Night.\"
    • White The white power ring attached itself most notably to Boston Brand at the end of Blackest Night after resurrecting him and the other previously dead heroes.

    Abilities

    \"No

    No hard upper limit to the power ring's capabilities has yet been demonstrated; it is often referred to as \"the most powerful weapon in the universe.\"

    The power ring's most distinctive effect is the generation of green, solid-light constructs, the precise physical nature of which has never been specified. The size, complexity, and strength of these constructs is limited only by the ring-bearer's willpower; whatever the wearer imagines, the ring will create.

    When active, a power ring will encase its user in a protective, life-supporting force field. This force field allows the user to fly, travel through inhospitable environments (outer space, underwater, etc.), and enter hyperspace in order to move vast distances quickly. The ring also generates its wearer's Green Lantern uniform: the uniform appears over their normal attire and vanishes at the user's will.The uniform varies from Lantern to Lantern, based on anatomy, personal preference, and the social norms of their race. The only rule in this regard seems to be that the uniform must openly display the symbol of the corps, though even this has been modified based on preference, (a vampire-hunting Lantern adapts the symbol into a cross, and a blind Lantern with no concept of light or color uses the image of a bell) as in the case of Kyle Rayner who wears a modified version of the symbol on his uniform.

    Power rings also appear to be highly advanced computers; they are able to talk to and advise the wearer as to various courses of action, as well as act as a universal translator. The ring can also scan for energy signatures or particular objects. For more intricate problems or problems that require a back logged history (Of a planet, person, group, etc), the ring connects with the main power battery on Oa which is the \"main\" computer, of sorts.

    Power rings are able to give off electromagnetic radiation of various frequencies. This radiation can be focused by the wearer into a beam, similar in appearance and effect to a powerful laser. The ring is also capable of producing an electrical current. Less frequently used capabilities include splitting atomic nuclei and manipulating subatomic particles (thereby transmuting chemical elements). A power ring is also capable of creating fully functional duplicates of itself.

    While power rings have to be worn to be effective, at several points Green Lanterns have shown the ability to summon the ring to them from a distance (even if someone else is wearing it) or order it to carry out commands automatically after being removed. Some power rings have been shown to be genetically keyed to the wearer, like Kyle Rayner's, though villains have circumvented this through various means. For instance, Manhunters use tissue samples to make Kyle's ring think it is still on his hand. When a Green Lantern is slain, their ring will automatically seek out a suitable replacement after logging the death for record. While the Green Lantern ring is an extremely advanced computer and is highly intelligent, it cannot think for itself. The ring will only act if it is given instructions by its wearer. Also, when a wearer expires, it will seek out a new replacement, but at that point, Mogo, the planet sized Green Lantern takes over telepathic \"custody\" of the ring and issues its commands helping it find a suitable new recruit. Without Mogo, the ring would just transport itself to Oa and fall to the ground inert until it is needed again.

    The Ring is a source of limitless power, and thus there is no limit to what it can do, but here are some abilities it has been shown to have.

    Artificial Intelligence

    Every ring has a connection to the Main Battery on Oa, which taps into an artificial intelligence. It acts as an \"on-board computer,\" telling the wearer what they need to know. It can either respond out loud, or silently directly to the wearer's mind. The AI contains a large database of information that may be crucial to a Lantern's success. The ring also translates nearly every language to and from the wearer (though they have difficulty translating profanity), which is why the Corps can communicate with each other. When the bearer of a Green Lantern ring dies, the ring will seek out a suitable replacement for their sector. The AI can be used to play a holographic playback sequence complete with colors across the spectrum based on information in memory banks. The ring can dictate when to pause or stop the playback should an interruption arise where the Lanterns undivided attention is needed. The AI can also alert the wielder of incoming threats or of attempts to manipulate the wielders construct by an outside party.

    Universal Translator

    The ring is programmed with every language in the universe, and translates all alien languages into the language thee wielder speaks. This helps eliminate the language barrier and facilitate communication between lanterns.

    Invulnerability

    Every lantern is protected by an invisible force field that eliminates waste, provides a breathable atmosphere for the wielder in any environment(underwater, space, etc.) and protects the wielder from all forms of harm(radiation, bullets, etc.).

    Flight

    Via manipulation of gravitons, lanterns can hover or fly in any direction. In space, they can fly at faster than light speeds.

    Wormhole Creation

    Rings create wormholes to allow lanterns to travel between the stars in a short amount of time.

    Willpower Constructs

    A lantern can create anything he or she imagines, assuming they have enough willpower to do it. The objects created by a green lantern are not indestructible, and the strength of the constructs depends on the focus and willpower put forth by the wielder. If the wearer's willpower is weak, then their constructs will be weak as well. Depending on the amount of focus and willpower from the wearer, the ring can be the wearer's greatest asset or greatest detriment.

    Ring Duplication

    Each ring can duplicate itself, creating a second ring which may be given to another as a backup, for protection, or to help the lantern in times of great need. This duplicate ring is exactly like a normal ring.

    Retconned

    Radiation

    Besides light based radiation used to create the energy constructs associated with a Green Lantern, the ring can simulate various forms of radiation. One example of this is the ability to simulate the radiation of Green Kryptonite, a form of radiation that is harmful to Superman. However, this ability is no longer valid and has been retconned.

    Time travel

    The ring allows the wielder the ability to travel through time, though the process requires great willpower.

    Weaknesses

    Mental Incapacitation

    The ring cannot be wielded correctly if the wearer is under the influence of drugs or if there is an involvement of neural interference.

    Yellow Impurity

    In the beginning the Green Ring was vulnerable to the color yellow. It was unable to defend against attacks from wielders of the Sinestro Corps as well. This weakness however has now be changed and can be overcome by veterans who have the ability to overcome great fear.

    Recharge

    Previously had to be recharged every 24 hours or when it has been depleted of energy. This can be accomplished if the bearer of the ring recites an oath into his power lantern while holding the ring to it. However now, the power ring only needs to be recharged when it runs out of energy.

    Ability To Kill

    One of the main weaknesses of the Power Rings that greatly disturbed Sinestro was the fact that the bearers of the Green Lantern Ring were unable to kill. Recently however, this restriction on the rings has been lifted but murder is still against the law of the GL Corps.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-123898/","id":123898,"name":"The Origin of the Green Lantern","issue_number":"16"},"id":41361,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/8/85087/1598544-green_ring_1.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/8/85087/1598544-green_ring_1.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/8/85087/1598544-green_ring_1.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/8/85087/1598544-green_ring_1.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/8/85087/1598544-green_ring_1.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/8/85087/1598544-green_ring_1.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/8/85087/1598544-green_ring_1.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/8/85087/1598544-green_ring_1.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/8/85087/1598544-green_ring_1.png","image_tags":"All Images"},"name":"Green Power Ring","site_detail_url":"https://comicvine.gamespot.com/green-power-ring/4055-41361/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41372/","count_of_issue_appearances":147,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-03-02 11:49:29","deck":"Blue Beetle's (Ted Kord) bug shaped aircraft that has had two different versions used by Ted Kord.","description":"

    History

    The Bug is patent number 8647-342. It was created by Ted Kord the Blue Beetle. He created it because he had no superpowers like his predecessor.

    Destroyed

    \"
    Pierced by Doomsday

    The Bug has been destroyed about every fifteen issues the Blue Beetle is in. The first time it was destroyed was in a battle in New York against the Hybrid. After the battle the Teen Titans helped him repair and improve the ship. Much later the Bug was destroyed by Doomsday during his first battle with the Justice League.

    The last couple of Bugs were called the Mark I and the Mark II. During Ted Kord's adventure during Countdown to Infinite Crisis, the Bug Mark II was blown up and the Mark I was brought out from the cobwebs. When Ted went to Maxwell Lord's fortress, the Mark I was left. When Ted was shot and killed, Checkmate took the Mark I and altered it to cover Ted's tracks.

    Chronological list of times the Bug has been destroyed

    -April 1987, Blue Beetle 11: The Bug is destroyed by Behemoth and the rest of the Hybrid.

    Equipment

    \"
    The Bug and the Man

    The Bug units have contained these:

    • Boosterjets under the shell, that could launch the bug into near the sound of speed and later on even faster.
    • Remote controls that were built into Ted's gloves.
    • Solar powered batteries.
    • Magnetic/Electrical hulls that could be used in case anyone got on it.
    • Solarblasts from the heat-power-converter.
    • Magnetic impulseblasts that shoot out from the Bugs antenna.
    • Laser beams.
    • Robotic claw arms.
    • Rotating head and body.
    • Watertight bulkheads.
    • Escape hatches.
    • Sky wire
    • Deflector shields.
    • Snoopys. The Snoopy is a miniature-Bug just like the main ship. They are about the size of a football with legs. There are about twelve in the ship and they are equipped with all kinds of spy equipment.
    • Electromagnetically charged smoke that clings to the hull making the Bug appear as a cloud.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-8910/","id":8910,"name":"Finally Falls the Mighty","issue_number":"83"},"id":41372,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9541/270849-85515-the-bug.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9541/270849-85515-the-bug.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9541/270849-85515-the-bug.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9541/270849-85515-the-bug.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9541/270849-85515-the-bug.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9541/270849-85515-the-bug.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9541/270849-85515-the-bug.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9541/270849-85515-the-bug.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9541/270849-85515-the-bug.jpg","image_tags":"All Images,Bug "},"name":"The Bug","site_detail_url":"https://comicvine.gamespot.com/the-bug/4055-41372/","start_year":"1966"},{"aliases":"Golden Perfect","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41435/","count_of_issue_appearances":1778,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-05-14 14:34:01","deck":"The Lasso of Truth is a weapon wielded by Wonder Woman. Anybody confined by the lasso is compelled to tell the truth.","description":"

    The Lasso of Truth, explained by its name, forces people to tell the truth, by the Fires of Hestia and was forged by the Golden Girdle of Gaea. It is able to restore people's lost memories, get rid of illusions, heal the holder's body (in this case, Wonder Woman), cure insanity, and people who are in its circumference will be protected from magical attacks. It is unbreakable, being able to hold anybody, even someone with the strength equivalent to Superman. The lasso also seems to be able to increase in length to an unknown degree, depending on the situation. Throughout the years, different artist have depicted the lasso as a simple piece of rope to a fiery, glowing rope which emphasizes the amount of power the lasso can unleash. the lasso also has the quality that any device caught in it maintains its structural integrity despite the pressure of having a a piece of rope wrapped around something. In this way Wonder Woman has been able to hold a submarine, a skyscraper and even the planet Earth in her grasp without those objects breaking. There are only three ways to escape from the lasso, either the bearer releases it, the captured individual dies, or a god or other divine entity releases it. In line with the first method is it possible still to attack the person holding the lasso and force them to release it in this way.

    There is a fair amount of precedent that any statement made in the presence of the lasso is inadmissible in court as it is brought forth by coercion. Jonah, for example, uses this tactic in Wonder Woman #220.

    In the golden age the lasso was often used in less realistic ways - as a whip to create pressurized air to stop people from falling, as a part of intricate pulley systems, and woven together to form a shield. Also golden age Wonder Woman if bound by the lasso was forced to do as the person who bound her ordered.

    For some time the lasso warned Diana of an incoming danger by moving itself.

    In the comic \"Wonder Woman: Amazonia\" Wonder Woman has no Lasso of Truth.

    In the graphic novel \"Superman: Red Son\" Wonder Woman carries the Lasso on her left hip

    From issue #93 to #100 Wonder Woman didn't have a lasso of truth.

    The genetically engineered monster known as Genocide steal the Lasso of Truth and has it embedded into her skin to use against Wonder Woman.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-108764/","id":108764,"name":"The Origin of Wonder Woman","issue_number":"1"},"id":41435,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/140670-187160-lasso-of-truth.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/140670-187160-lasso-of-truth.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/140670-187160-lasso-of-truth.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/140670-187160-lasso-of-truth.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/140670-187160-lasso-of-truth.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/140670-187160-lasso-of-truth.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/140670-187160-lasso-of-truth.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/140670-187160-lasso-of-truth.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/140670-187160-lasso-of-truth.jpg","image_tags":"All Images,The Lasso"},"name":"Lasso of Truth","site_detail_url":"https://comicvine.gamespot.com/lasso-of-truth/4055-41435/","start_year":"1942"},{"aliases":"Tumbler","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41463/","count_of_issue_appearances":1900,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-03-23 22:31:53","deck":"The Batmobile is Batman's automobile. It has gone through many incarnations; often it is depicted with rocket engines, mounted weapons, bullet-proof armor and other advanced technologies. It is often considered the fastest automobile in the DC Universe that is not of a supernatural or alien origin.","description":"

    The Batmobile is the personal vehicle of Batman. It has evolved and appears in many different versions over the years, but is always the vehicle used by the Caped Crusader in his war on crime against the Gotham Underworld.

    \"No

    Batman's first Batmobile was nothing like the one both heroes and villains are familiar with today. There were many prototypes that had been in development at the time, however in 1941, the first \"Batmobile\" was introduced. It was a red convertible that was based on a 1936 Ford. The traditional Batmobile usually sported a Bat Head on the grill, this version did not. This was the one and only of that era that did not sport the emblem on the hood. The 40's saw a few incarnations based on the cars of the time which were usually very curvy and long.

    The 1950's saw similar Batmobile's fashioned like the ones in the 40's. The 50's, however, did introduce a very iconic piece to the car, the bubble dome. This dome would cover both the passenger and driver side seats. The 40's curves however soon began to disappear. Also, the fans in the 50's did not like the fact the the Batmobile appeared to be very simplistic and criticized it. The 1950's featured the removal of the famous on-board laboratory that was heavily used before. The 50's models were used until the early 1960's where subtle changes were added. It wasn't until 1969 that there would be another major change to the iconic vehicle.

    In 1969 there were major changes not only for the car, but for Batman himself, including Grayson going to college and moving to the heart of Gotham. The Batmobile changed from a larger-than-life vehicle to a vehicle that became more idealistic. The car was now a coupe with turbo-charged engines. It also features bullet-proof protection on and around the vehicle, including the windows, hydraulic shocks and diplomatic plates. Another addition was the remote guidance system that could serve as a distraction for the Caped Crusader to get out of tight situations.

    \"No

    The 1970's based the vehicle on some of the major sports car look. A significant look was featured in Detective Comics #449. It was a full-sized car that had more armor and had the ability to sustain high-impact collisions.

    The 1980's saw more additions/changes to the car. In 1988, Batman was brainwashed, but later saved by Robin and forced to flee for a time. When they returned, they did so with a new Batmobile. This version resembled the one used in Frank Miller's The Dark Knight Returns. It was a huge vehicle that sported 15-inch balloon tires that were puncture proof. It had advanced radar and a machine gun that was outfitted with tranquilizers that fires 200 rounds per minute (RPM). This car would show up again in the late 90's, 10 years after its initial use.

    The 1990's continued the trend of the car's history. It did however, feature a departure. When Bruce Wayne's back was broken, Jean-Paul Valley was given the mantle of the Bat. His Batmobile was redesigned to become a single-passenger vehicle. It had large sweeping fenders and was voice activated.

    \"No

    With most of Gotham reduced to rubble and the Batmobile destroyed in the Cataclysm and Aftershock story arcs, Batman needed a new way to get around. This need was fulfilled by a new type of Batmobile with all-terrain capability. This version sports huge tires (making it look like a monster truck) and higher ground clearance.

    Batman opted to equip this with non-lethal weapons, stink guns that fire a mixture of turpentine and guano to disperse unruly crowds. It is still armed with rockets for clearing debris though. Another version shown in some stories resembles a Hummer H1.

    \"No

    The 2000's saw the return of the basic formats used in the 1960's, only they were tweaked to look more modern. The car became sleeker and contained smaller parts. It had a jet engine and had the iconic sliding roof entrance. The tires were Kevlar-lined and they were puncture proof and flame-resistant. It had rear defenses like oil slicks and smoke clouds, and was fully automated and voice activated. It had a GPS and was linked to the Batcave. It also had a sophisticated anti-theft system, with five stages. First, it locked down and made all interior surfaces electrified. Then, poison gas was released while an SOS was sent to the Batcave. Hypersonic trilling spheres were then released, and motion tracking glue nozzles ejected super adhesive foam. The final stage was self-destruction.

    The late 2000's and early 2010's saw a new Batman and Robin in a new Batmobile following the apparent death of Bruce Wayne at the hands of Darkseid. This time the car had flight capability and had a very curvy appearance, virtually no sharp

    \"No

    angles and has a big red emblem on the front of the car. This version was designed by Bruce Wayne, but finished by Damian Wayne, who made adjustments in order for it to sustain flight.

    The average speed of all Batmobiles is around 250 mph but more recent ones have reached 266 mph. The windows have changed from clear to dark through the years as well. The vast majority of them have had a direct link to the Batcave.

    Other Media

    Television

    \"The
    The iconic 1960s TV Batmobile, based on the Lincoln Futura concept car.

    Batman (1966-1969) and Batman: The Movie (1966)

    One of, if not, the most iconic versions of the Batmobile appeared in the 1966-1969 television adaptation of the famous crime-fighter and in the 1966 film it spawned. The car was based off the Lincoln Futura, a Ford concept car that was created in 1954. The car was black with red lining on the car, including the Bat-Symbol. It had two seats and an open roof. It also has bat-parachutes that can be shot out of the back by a switch. The mobile also contains a bat beam which the Bookworm once used to bust open a safe. The Batmobile also has ejector seats which were used to eject a bomb placed by the Bookworm into thin air. A replica of the car has been sold for $233,000. In a documentary film called Batmania in 1989. The Batmoble was taken to comic book conventions and Comic Con in the U.S and Canada. The Batmoble was left in storage for 20 years after the Batman show ended in 1968. It took million of dollars to fix, repair and rebuild the seats and some parts on the Batmoble to the way it was from the TV series.

    It should be noted that this incarnation of the Batmobile was reprised in the animated films Batman: Return of the Caped Crusaders (2016) and Batman vs. Two-Face (2017), as well as the comic book volume Batman '66 (2013-2015), all of which are set in the same universe as the TV series.

    Various model cars have been produced based specifically on this incarnation, including one also sold in various Corgi Toys toylines from 1967.

    \"No

    Batman: The Animated Series/The New Batman Adventures.

    Three versions of the Batmobile have appeared in the DCAU series.

    The first version was depicted as as a Batmobile from the 40's, with the traditional Bat Head on the grill of the car. After the Batmobile was beginning to run down Batman sought a new version of the car.

    The second version was created by Earl Cooper upon Batman's request. This car featured turbo engines, grappling hooks, seats that ejected and on board Bat-Computers. It also had the famous sliding roof as it's point of entry. This car was very long, and as seen in the movie, Mask of The Phantasm, appears to be based off the vehicle Bruce saw at Gotham Fair.

    The third car was featured in the New Batman Adventures. It was smaller than the previous incarnation, becoming a coupe. It featured many of the same features the other did, grappling hooks, two-seater, etc.

    \"No

    Batman Beyond

    In the Episode \"Black Out, \" Bruce gives Terry McGinnis, the New Batman, a new Batmobile. This version has flight ability, as the cars in this era all have the capability. The car is very curvy until it's ends where it turns sharp. The interior has the classic thrust throttle. The inside is all computers that link to the Bat-Suit, allowing easier control over the vehicle, also sending a signal to Bruce in the Batcave. It is a single-person cock-pit. It has a cloaking ability and features on board radar and has the ability to reach Mach 3.

    The Batman

    The Batman featured 2 main Batmobiles, although there was another featured in an episode set in the show's future.

    The first version was a Blue and Black vehicle that resembled a coupe. It had turbine engines, as well as turbo boost capabilities. This was described as

    \"No

    The Batman's vehicle for the first 5 years in his crusade. It would be destroyed in the 3rd season.

    The second Batmobile was faster and more traditional in the cartoon universe. It had a Wayne Industries EXP power generator and was much faster than the previous one. It was also larger and longer, it was more low profile.

    The Batmobile that was featured in an episode set in the future, resembled Frank Miller's version as well as The one featured in Batman Begins and The Dark Knight. It was Tank-Like, with all the traditional gadgetry. Batman appears to heavily rely on this in the series depiction of the future.

    Batman: The Brave and the Bold

    \"No

    A more garish, flamboyant version of the Batmobile appears in this series, fitting with the show's retro Silver Age aesthetic. In addition to being able to transform into other types of vehicles, it can also turn into a giant robot.

    Beware the Batman

    \"No

    A sleeker, futuristic version of the Batmobile was seen in this CGI series. The design was low and flat, making it evoke the image of an F1 racer. This version also had a direct link to the Batcomputer.

    Film

    Batman

    \"The
    The Batmobile of the Tim Burton movies

    The Batmobile is seen in the first Tim Burton movie, built on the chassis of a Chevy Impala. The Batmobile shown in the movie is sleek and narrow to fit the retro art deco style of the movie, and contains a number of gadgets. The car features heavy machine guns as well as Batdisc launches, both of which are used for offensive purposes.

    Batman Returns

    The Batmobile returns in the sequel. In the movie, it is hijacked by the Penguin, who attempts to use it to frame Batman and turn the public against him.

    Batman Forever

    \"No

    A new model of Batmobile is seen in the two Joel Schumacher movies. The one seen in Batman Forever contains additional lightning and has new features, such as the ability to drive up walls.

    Batman and Robin

    An even more garish, ridiculous Batmobile appears in the sequel.

    Batman Begins

    In 2005 a Batmobile vastly different from past incarnations made an appearance in Christopher Nolan's Batman Begins.

    \"The
    The 2005 Batmobile, a noticeable departure from \"standard\" incarnations.

    Formerly known as \"the Tumbler\", the new Batmobile was originally designed by Wayne Enterprises for use as a military vehicle and featured desert camouflage, it was re painted black and given some new features for use in Batman's crime fighting escapades.

    The Dark Knight

    2008's The Dark Knight saw the release of a Batmobile identical to it's 2005 counterpart, but with some slight technical modifications. After being critically damaged, the Batmobile opens up to reveal the Bat-Pod, a redesigned version of the Batcycle.

    The Dark Knight Rises

    The 2012 finale to Chris Nolan's Batman franchise featured an alternate design of the Batmobile, a fleet of these new Tumblers were obtained by Bane, the main antagonist of the film.

    Son of Batman

    The movie based on Grant Morrison's Batman's son from Batman #655-658. The Batmobile is seen when Batman goes to meet Talia al Ghul. It has a basic Batmobile design.

    \"No

    Batman v. Superman: Dawn of Justice

    \"The
    The Batman v. Superman Batmobile.

    A new, less bulky and realistic version of the Batmobile appears in the 2016 DCEU film. It also returns in a scene of Suicide Squad (also 2016).

    Video Games

    Batman: Arkham Asylum

    A redesigned Batmobile similar to that in Tim Burton films appeared in rocksteady's highly acclaimed 2009 'Batman: Arkham Asylum' videogame. Players were not able to drive the Batmobile in the game, but it was still used for multiple cut-scenes as well as serving as a location on the in-game map. The Batmobile did not appear in the sequel to the game, 'Batman: Arkham City'. A miniature toy version of the Arkham Asylum batmobile was later released in April, 2011 by Hot Wheel's.

    Batman: Arkham Origins

    \"No

    The third installment of the Arkham franchise features a younger Batman in his first few years of crime fighting. The Batman in this game mostly travels around in the Batwing but you can view an unfinished Batmobile in the Batcave. It is covered by a large cloak and obviously not fit for use.

    Batman: Arkham Knight

    \"No

    The Batmobile will appear as a drivable vehicle in the final chapter of the Arkham trilogy. It will help you get around the city faster. The Batmobile in this game is equipped with heavy artillery, and those being missiles (capable of targeting six targets at the same time), vulcan gun, a riot surpressor and 60mm bullets.

    This version of the Batmobile allowes Batman to ''cooperate'' with the Batmobile having riot surpressors allowing Batman to give the criminals a minimum long-term trauma. Batman can also eject out of the Batmobile with high momentum. The Batmobile has two seats available at the backpart of it.

    Merchandise

    \"A
    A Batmobile by Mattel

    Toys of the Batmobile are extremely common to come by.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112062/","id":112062,"name":"The Return of Doctor Death","issue_number":"30"},"id":41463,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14487/7791881-5c06c4f8-a8c4-4522-8b0d-2a747c9715df.jpeg","image_tags":"All Images,Batmobile (Comics)"},"name":"Batmobile","site_detail_url":"https://comicvine.gamespot.com/batmobile/4055-41463/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41472/","count_of_issue_appearances":444,"date_added":"2008-06-06 11:27:50","date_last_updated":"2017-07-26 11:07:42","deck":"In the DC Universe, a boom tube is an interstellar portal used by residents of New Genesis and Apokolips.","description":"

    Overview

    \"No

    A boom tube needs to be created by an external device, such as a Mother Box. The appearance of a boom tube is accompanied by a loud \"boom\" sound, hence the name. The New Gods refer to them as 'boom lanes' and it has been stated that they are the only way to reach New Genesis and Apokolips. Boom tubes are a sort of hyperdrive. They can transport objects across millions of miles within a short time. They are also said to shrink or increase the size of those who use them so that they are closer in size to those in the dimension that they arrive in, as the New Gods are revealed to be giants but on Earth appear to be the height of an average human.

    Other Media

    • Outside of the comic books, Boom Tubes have been seen on a number of occasions. They are first seen in the last two season of the Super Friends animated series, Super Friends: The Legendary Super Powers Show and The Super Powers Team: Galactic Guardians on a number of occasions. Here, they are referred to as \"Star Gates,\" and they are used by the natives of Apokolips. In the Legends Mini Series they are also referred to as star gates. New Genesis was never shown or mentioned.
    • They were also seen in Superman: The Animated Series, as well as Justice League, Justice League Unlimited, and Batman Beyond. Unlike the comics, these were mainly used for transport to far-off places.
    • In Smallville (TV Series), Brainiac uses a device that may be a boom tube, which is one of many things that have been shown in the series 7th season that has led to speculation about Darkseid making an appearance.
    • In the Legion of Super-Heroes television series, Superman X uses a device similar to a Mother box to open a portal to the past to recruit the Legion of Super-Heroes to battle Imperiex.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11260/","id":11260,"name":"Orion Fights for Earth!","issue_number":"1"},"id":41472,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/1366494-orion_002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/1366494-orion_002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/1366494-orion_002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/1366494-orion_002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/1366494-orion_002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/1366494-orion_002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/1366494-orion_002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/1366494-orion_002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/1366494-orion_002.jpg","image_tags":"All Images,Comics"},"name":"Boom Tube","site_detail_url":"https://comicvine.gamespot.com/boom-tube/4055-41472/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41473/","count_of_issue_appearances":313,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-11-13 10:03:52","deck":"In the DC Universe, Mother Boxes are small, sentient, supercomputers primarily used by the New Gods. They have many capabilities, including transportation and energy manipulation. As they're connected to the Source, they have countless applications.","description":"

    Overview

    Description

    \"No

    Mother Boxes are small portable supercomputers created by the New Gods. They were invented by the Apokoliptian scientist Himon the Artificer using the mysterious Element X. They have vast undefined abilities which range from teleportation via Boom Tubes, to energy manipulation. Each Mother Box is sentient and provides its user with unconditional love. They get their name from the fact that they act as caretakers to their users, and provide them with love, in a sense becoming a mother to them.

    Mother Boxes can only be manufactured by a being of the Fourth World, and not all such beings can do so. It is implied that the character of the maker influences the successful creation of a mother box, and that each Box has a fragment of the builder's personality encoded within. Metron stated that each mother box shares a mystical rapport with nature, and that they have a direct link to the Source, from which they draw their power. So, in a way, a Mother Box is best described as a computer link to god.

    Mother Boxes are generally shaped as a box, although this form is not necessary. Mister Miracle had his Mother Box circuitry woven into his suit. They communicate through repetitive pings, which can be understood by their user. They have been known to self-destruct after their user dies although this is not always the case.

    Abilities

    Each Mother box can access the energy to perform a vast variety of abilities. To date, mother boxes have shown capable of:

    • Summoning Boom Tubes
    • Matter transmutation
    • Energy manipulation
    • Force Field creation
    • Healing
    • Gravity control
    • Levitation
    • Emotion Control
    • Illusion casting
    • Technopathy
    • Fire manipulation
    • Phasing
    • Telekinesis
    • Dimensional manipulation
    • Teleportation/portal creation

    They appear to have a vast, possibly unlimited variety of abilities, but are generally limited in range to the user's personal space.

    Notable Mother Boxes

    Among the most famous Mother Boxes is the one possessed by Mister Miracle, who had its circuitry woven into the circuitry of his suit. Orion was also given a mother box by Mortalla, wife of Darkseid, in hopes of using the Box's circuitry to turn him in favor of Darkseid; he used this box to keep his emotions, bestial rage, and appearance in check. This box was lent to Oracle during the Mageddon crisis. The Mother Box of the Forever People was also notable, which they use to summon Infinity Man.

    A Mother Box was given to Iron Man in JLA/Avengers by Metron. He used it to predict JLA 's movements, and it interfaced with his suit. A mother Box was used by Captain Marvel to access his lightning when Shazam was on New Genesis. Shilo Norman possessed the last remaining Mother Box—sometimes referred to as a \"Motherboxxx\"—to survive the war and destruction of Apokolips and New Genesis. Another Mother Box was lent to Jack Knight in his quest to reach Throneworld, and the memories and personality of his father, Ted Knight, were encoded as the Mother Box's artificial intelligence. It discussed was progress with Seyg-El, grandfather of Superman, and counseled Jack in his quests to the Legion of Superheroes' time and to Rann.

    A lone Parademon, who had looted no less than ten mother boxes from citizens of New Genesis he had killed, demonstrated a degree of free will unknown to other parademons. It is unclear, however, if this Parademon achieved his freedom due to his exposure to the Mother Boxes or if it was a normal part of his personality. He escaped to Earth and eventually joined with the Secret Six. Although his captive Mother Boxes would not allow him to open Boom Tubes, they did choose to help the Parademon in some aspects, and agreed to self-destruct in order to defend his teammates with a suicide charge in his final moments.

    In DC's Future State, a Mother Box was located in the Phantom Zone. Cyborg Superman knew about it and led the House of El there, under the guise that it would help them escape the Phantom Zone. When the group found it and used it to open up a portal, Cyborg Superman attempted to steal it for himself but the Els stopped him and used it to return home.

    Variants

    Father Box

    Apokoliptian versions of Mother Boxes also exist and are known as Father Boxes. These boxes communicate with a \"ting!\" sound instead of a \"ping!\" sound, and summon \"Hush Tubes\" instead of Boom Tubes.

    Grandmother Box

    In an alternate future of JLA: Rock of Ages, Granny Goodness at one point invaded the central computer on New Genesis and somehow got fused with it, becoming an insane Grandmother box. It is destroyed in a suicide attack by Wonder Woman. It attacked with \"firepit\" blasts and teleportational abilities.

    Ancestor Box

    After striking Batman with the Omega Effect, Darkseid used a Mother Box-esque device called an Ancestor Box. Within this box seems to be some sort of hyperdimensional creature Darkseid refers to as a \"Hyper-Adapter\". This box seems to be able to warp time and space, accounting for Batman's travels through time during the Return of Bruce Wayne. The Hyper-Adapter may have some connection to the Hyper Fauna fought by Batman in the aforementioned return, or the sentient Omega fought by Shiloh Norman.

    Orphan Box

    Upon the destruction of the android known as Gonzo the Mechanical Bastard, Father Time converted its body into an \"orphan box\" in the shape of glasses, to be wielded against the Mathemagicians of the Anti-Life Equation.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-11260/","id":11260,"name":"Orion Fights for Earth!","issue_number":"1"},"id":41473,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/18154/1366447-mother_box_002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/18154/1366447-mother_box_002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/18154/1366447-mother_box_002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/18154/1366447-mother_box_002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/18154/1366447-mother_box_002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/18154/1366447-mother_box_002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/18154/1366447-mother_box_002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/18154/1366447-mother_box_002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/18154/1366447-mother_box_002.jpg","image_tags":"All Images,Mother Box"},"name":"Mother Box","site_detail_url":"https://comicvine.gamespot.com/mother-box/4055-41473/","start_year":"1971"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41533/","count_of_issue_appearances":131,"date_added":"2008-06-06 11:27:50","date_last_updated":"2015-10-03 11:57:15","deck":"A jewel of power created by the mystical entity Cyttorak, Lord of the Crimson Cosmos. The Gem is the means of giving a human a portion of his power. Thus becoming his avatar, the unstoppable Juggernaut.","description":"

    Appearances

    The Crimson Gem of Cyttorak first appeared in Uncanny X-Men #12.

    It has also been known as the Crimson Ruby of Cytorrak, the Ruby of the Crimson Bands and the Crimson Crystal of Cytorrak.

    Origin

    The Crimson Gem of Cyttorak was created because of a wager that took place one thousand years ago by the Octessence, eight mighty beings. They each put their power into an item and decided that the first mortal to come into physical contact with each being's respective item would become an Exemplar, possessing the power of the being who created the item they interacted with.

    See also: Juggernaut and Cyttorak.

    However Cyttorak cheated and had many Avatars without starting the wager. It wasn't until another Exemplar was created that the wager began. His avatar at the time was Cain Marko.

    Powers

    Most commonly it bestows a mortal with the powers of The Juggernaut. Being a powerful mystical artifact it has been used for teleportation and creating mystical constructs and energy blast.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7900/","id":7900,"name":"The Origin of Professor X","issue_number":"12"},"id":41533,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3227813-newexcalibur01404.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3227813-newexcalibur01404.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3227813-newexcalibur01404.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3227813-newexcalibur01404.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3227813-newexcalibur01404.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3227813-newexcalibur01404.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3227813-newexcalibur01404.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3227813-newexcalibur01404.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3227813-newexcalibur01404.jpg","image_tags":"All Images,Earth-616 Crimson Gem of Cyttorak,Marvel art"},"name":"Crimson Gem of Cyttorak","site_detail_url":"https://comicvine.gamespot.com/crimson-gem-of-cyttorak/4055-41533/","start_year":"1965"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41534/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:48","deck":"The Battle of Krelnor Medal was awarded to the alien Dre'kk for his valor in that battle. However, the medal is not all that it appears","description":"

    When they first meet, Dre'kk gives the medal to Vince Armstrong as a token of friendship and honor. Fourteen years later, Dre'kk returns, searching for the medal. Vince had burned the medal in a campfire only hours before, and Dre'kk is distraught when it is finally recovered. In actuality, the medal is a highly shielded storage device containing secret information crucial to Dre'kk's struggle against the Alliance.

    ","first_appeared_in_issue":null,"id":41534,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/87535-72353-battle-of-krelnor-me.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/87535-72353-battle-of-krelnor-me.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/87535-72353-battle-of-krelnor-me.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/87535-72353-battle-of-krelnor-me.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/87535-72353-battle-of-krelnor-me.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/87535-72353-battle-of-krelnor-me.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/87535-72353-battle-of-krelnor-me.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/87535-72353-battle-of-krelnor-me.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/87535-72353-battle-of-krelnor-me.jpg","image_tags":"All Images,Battle of Krelnor Medal of Valor"},"name":"Battle of Krelnor Medal","site_detail_url":"https://comicvine.gamespot.com/battle-of-krelnor-medal/4055-41534/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41551/","count_of_issue_appearances":2,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-03-01 11:13:33","deck":"The Sigil is the mark of the ascended Atlanteans Solusandra and Danik, and is seemingly bestowed on random people on myriad planets. Those given the Sigil are advanced high up the evolutionary ladder.","description":"


    Creation of the Sigils

    ==========================

    The Sigils are a unifying feature in the Bright Universe (Sigilverse). When they were originally conceived, it appeared that Danik and Solusandra were either at odds with one another, or two capricious gods playing a chilling game with the universe. On Solusandra's part, the bestowing of Sigils was meant to cause the conflict necessary to reignite and generate the much needed universal forces necessary to fuel her god-like powers. We later learn that the Sigil-bearers are actually an army that has been raised up to work in conjunction with the First in the coming battle against the forces of the Negation Universe and their evil god, Charon.

    After Solusandra creates and bestows her Sigils (pictured above), she is cast down and seemingly destroyed by her fellow ascended Atlanteans (excepting Danik). During their cataclysmic battle, a rift is torn in the barrier between the Bright and Dark universes, and the energies of Charon and Solusandra intermingle with explosive results, destroying all remaining ascended Atlanteans except for Danik.

    Danik visits the planet to which Solusandra fell and briefly mourns her death. He then leaves, breaking himself apart into many different splinter aspects, or avatars, who venture throughout the universe to watch over and mentor each of Solusandra's Sigil-bearers. Some of these aspects of Danik already existed, and had for some time, such as Enson and Wyture of the first. When Danik leaves, he fails to see Solusandra's energies revitalizing the barren planet on which she fell. Unknown to her fellow god, Solusandra saved herself by splitting her essence and memories between the Sigils she had already gifted to humans around the universe. Soon, she would awaken and begin to reclaim the gifts she had given.

    Many of the Sigil-bearers believe their new powers were given to them by some kind of god or other unknown force. In reality, the Sigils unlocked the ultimate potential of their bearers, shooting them up to the top of the evolutionary ladder. Each bearer's power is a reflection of their character, and this would mark the path they would ultimately take in their journey towards become the universe's protectors.

    Eventually, Solusandra is \"reborn\" on her desolate planet, and awakes to find many Sigil symbols floating in the air in bubbles around her. When she touches one, she is transported directly into the presence of one of her Sigil-bearers, the first of which is Lindy Karsten. When she comes in contact with Lindy, she \"steals\" the Sigil back, and regains a portion of her memories and god-like power. With Lindy in tow, Solusandra embarks on a quest to reclaim all her Sigils, but is not entirely successful as a few keep theirs, and some are no longer accessible to her.

    Interestingly, many of the Sigil-bearers learn they no longer need the Sigil to access the powers it had granted them. The change to them was genetic and permanent, simply advancing their personal evolution and unlocking the potential within. As Lindy Karsten discovers, whenever their Sigils are lost, the abilities are not gone, and their \"access\" to them rebuilds itself over time. This discovery leads some of the Sigil bearers to have boosted confidence and increased insight which allows them to become even more powerful than they had been before.

    Each Sigil-bearer's power was different from the next, being an exhibition of the nature and character of the bearer. For example, some granted active healing (such as healing a wound quickly at the demand of the Sigil-bearer), while others would heal passively or a long period of time. Some bearers, after coming in direct contact with another bearer, learned to exhibit the abilities of the other. It might be surmised that all Sigil-bearers could accomplish the same feats given time and practice.

    Though not a hard and fast rule, the Sigil power usually glowed either red or yellow depending upon the use of the power. If the action was \"creative\" in nature, such as healing of wound, self-defense, or rebuilding something broken, the power usually glows yellow. If the action was \"destructive\" in nature, such as causing harm to another or destroying something, the power usually glows red.

    Danik also bestowed his own version of the Sigil on an even smaller group of individuals around the universe. He revived six of his former race from Atlantis, and gave it at least two separate humans as well. In the case of the Atlanteans, who had already achieved biological perfection, his Sigil does not seem to grant power, but rather allow the bearer focus and added defensive protection.

    Gammid the Atlantean learns one of the true benefits of Danik's Sigil when he mistakenly ventures into the Negation universe with a group of Australian humans (a group which believes they are undergoing a true Transition. When the humans arrive in the Negation universe, they have gone quite mad, and possess powers they cannot control. Gammid is protected from this, and seems to be able to focus his powers with the Sigil. (In contrast, when a group of Solusandra's Sigil-bearers are kidnapped into the Negation universe, they are unable to use their powers without causing themselves harm.) Through contact with Gammid's Sigil, and through his Atlantean training, many of the Australians survive and harness their full powers. Later, when Gammid meets up with some of the kidnapped Sigil-bearers (in addition to a First of House Dexter), he is able to fully restore their Sigil-powers using his own, different Sigil.

    Charon, god of the Negation universe, created and bestowed his own version of the Sigil on a group of non-humans from his own universe. He was unable to graft his Ligis (his name for his sigil) on the non-humans until he received the forced help of Sigil-bearer Javi Corben, a former doctor who used his Sigil-power to heal. Javi was then appointed leader of Charon's new group of Ligis bearers, a group of four non-humanoids who worshiped Charon as their god.


    Known Sigil-bearers of Solusandra

    ===================================

    **Samandahl Rey of Gaia:** One of the original five Sigil-bearers, and the most important in Danik's plans for the future. Sam's Sigil gave him molecular control over inanimate matter. Sam's Sigil is located on his chest, and looks very much like a burn. Through the Sigil's use, Sam becomes the leader of humanity's fight against the Saurian race (which only sees humans as food to be eaten). Samandahl Rey sires a child with Capricia of Atlantis.
    **Sephie of Meridian on Demetria:** One of the original five Sigil-bearers, and potentially one of the most powerful. Sephie's Sigil grants her defensive shielding, repair of organic and inorganic matter, healing of organic matter, flight, and a myriad other abilities. Through the Sigil's use, Sephie begins a crusade against her uncle Ilahn, a cruel despot bent on world (if not universal) domination. Sephie's Sigil is located on her forehead.
    **Ilahn of Cadador on Demetria:** One of the original five Sigil-bearers, and one of the most ruthless. Ilahn's abilities included disintegration of matter, energy blasts, self-healing and teleportation. Ilahn is also the first to learn that Sigil bearers can drain the powers/life-forces of the First. Through the Sigil's use, Ilahn strives to solidify his power over the planet, and rid himself of his niece Sephie once and for all. Ilahn's Sigil is located at his throat.
    **Giselle Villard of Ciress:** One of the original five Sigil-bearers. Giselle's Sigil allowed her to possess all of the spirits of the great masters of her world, and allowed her to perform high-order magic without preparation, material elements, or spells. Through the use of her Sigil, Giselle successfully defends her planet from Animora, an evil First who wishes Ciress as her personal plaything. When Solusandra returned to Giselle to take the Sigil back, Giselle was able to put up fantastic resistance against the goddess, but ultimately failing. Giselle's Sigil is located on her right palm.
    **Ethan of the Heron Dynasty on Avalon:** One of the original five Sigil-bearers. Ethan's Sigil grants him the use of a sword of light, as well as multiple defensive abilities and fighting skills, and the ability to heal himself (and later others). Through the Sigil's use, Ethan defends the Herons Dynasty from those in the Raven Dynasty who would see it destroyed, and also successfully creates a free homeland for the Lesser Races. Ethan's Sigil is located on his right bicep.
    **Brath Mac Garen of Han-Jinn:** Brath is a clan leader among the strongest Urelanders clans. He works to unite the myriad clans to better repel invades to their homeland. Brath's Sigil grants him multiple abilities, including personal healing, language translation, and confidence building. Through the use of the Sigil, Brath unites his clans, but is ultimately is captured by the enemy when Solusandra returns to take her Sigil back. Brath's Sigil is located on his chest.
    **Sara Janning of Yamivol Prime:** Sara Janning is an ice miner on the planet Yamivol Prime, far out on the frontier of the Chimera Empire. Sara is in hiding from the Emperor and his family, a dynasty which brought themselves to power through genetic manipulation of their line. Chimera's Emperors have mandated periodic genetic scanning of every inhabitant in a search for genes they can use to take the next step in their family's evolution. Sara has evaded capture since the day she saw her family killed by Chimera forces right before her eyes. That was also the day she was granted her Sigil. Sara's Sigil powers are somewhat esoteric, and don't really manifest themselves until she is fighting for her life against the Emperor who discovers her true nature. Sara's Sigil is located on the small of her back.
    **Mordath of Quin:** Mordath is an undead human, and the despot conqueror of the Five Lands of Quin. Three-hundred years before when he first tried to conquer the Five Lands, Altwaal appeared out of nowhere to end the battle by shooting Mordath through the chest with an explosive arrow. [See: **Altwaal's Weapons** ] Three centuries later, he is resurrected (but not given full life, only reanimation of an emaciated body) and given a Sigil of power, which he uses to destroy that who stood against him and enslave the remainder of the Five Land's inhabitants. Mordath is likely the most evil and ruthless, and used his Sigil powers nearly exclusively for destruction. Curiously, Modath's Sigil never healed his undead body, and possibly because of his character he never thought to turn his powers inward and attempt such a feat. Mordath's Sigil is located on the top of his head, and is the largest Sigil among all the bearers.
    **Lindy Karsten *(AKA Radiant)* of Heliotrope:** Lindy is a designer of high-end MMORPGs for her world. As Radiant, Lindy is the undisputed champion of her world's most popular game (a planet on which it seems EVERYONE plays). Lindy is the first Sigil-bearer to have her mark taken away by its creator, Solusandra. Lindy's Sigil seems to grant her heightened speed and reflexes, giving her a decided edge in the game world. The original location of Lindy's Sigil is unknown, as she always wore a neck to toe gaming suit. However, her suit does have an all-golden version of the Sigil in multiple places.
    **Todosi of Han-Jinn:** Todosi was a great warrior of his people, the defender of their homeland. When he was granted the Sigil by who he thought was a goddess, he knew he had been touched by destiny. He knew that he had been marked, and that his mark prophesied the fate of his people, but did that fate include victory. Todosi was continually successful in defending his people, until the day the gods appeared. As an \"experiment\" to see if a Sigil-bearer could be killed, one of the First used the Rod of Altwaal [See: **Altwaal's Weapons** ] against Todosi, successfully killing him. When Todosi died, his Sigil moved to his brother, who then vowed to kill every god in heaven in revenge. Todosi's Sigil was located on the middle of his back.
    **Obo-san *(AKA Nobuyuki Tsugawa)* of Han-Jinn:** Obo-san was a devout monk and eschewed all forms of violence. However, he knew that the homeland must be protected, so he lent his wisdom to his brother Todosi, and to the Emperor. When Todosi died at the hands of a god, Obo-san inherited his brother's Sigil, and also came in possession of the very weapon that caused the murder, a weapon he dubbed \"The Weapon of Heaven.\" Obo-san became his homeland's protector in his brother's stead, rejecting his non-violent past, and rejecting the worship of the god as well. He vowed to kill every god in heaven as revenge for the callous murder of his brother. Obo-san Sigil grants him the ability to influence and control other humans with the very words he speaks. Obo-san's Sigil is located on his back, just as it had been on his brother.
    **Lord Birrema of Courabo:** Birrema is the beloved ruler of the world Courabo, a war torn world which is now living in peace because of the efforts of his efforts. Biremma is the first Sigil-bearer approached by Ilahn of Cadador for help against Sephie. Biremma, who is at first distrustful of Ilahn and wants nothing to do with him, is soon swayed when Ilahn promises aid for Courabo's people. When Biremma and Ilahn shake hands on the deal, either they sympathetic telepathy shared between Sigil-bearers does not work, or Ilahn is somehow able to deceive Biremma, or Biremma overlooks Ilahn's nature for the good of his people. Biremma ultimately allows Sephie to defeat him once he learns the real truth of her character. Biremma's Sigil grants him the power to fly, increased fighting prowess, and the ability to create armor, a shield, and a sword, all made of hard light.
    **Taylor *(AKA Mighty Man)*:** Taylor's world is one of the first planets to suffer a full scale invasion by Charon and his Negation forces. Taylor has used his Sigil power to assume the role of superhero protector of his planet. Taylor, which is Mighty Man's secret identity, works as a reporter at a major newspaper in a very large city. When the Negation arrives, they attack without warning, vaporizing and entire section of the cities inhabitants with their first strike, leaving only Mighty Man as a survivor. Taylor confronts Evinlea of the First, who is now fighting for Charon. He is quickly defeated, and is questioned by Charon, who is searching for Taylor's mentor, and aspect of Danik. Once they have the information needed, Evinlea blows Mighty Man's head off with a blast of power. As an obvious \"clone\" of Superman, Mighty Man possesses the same types of powers, but his levels are unknown. Taylor's Sigil was located just below his throat.
    **Kellra Tuskin of Cardeen:** Kellra is Cardeen's leading prognosticator and family/relationship counselor. Kellra is able to see into the future using her Sigil's powers, specifically looking into the coming history of individuals and thereby give them advice to change that future for the better. When Kellra is confronted by Solusandra, she refuses to relinquish her Sigil, and somehow uses her knowledge against the goddess. Kellra is thought to already been highly trained in her vocation well before she gained her Sigil, and that is what guided her ultimate manifestations of powers. Kellra is successful in driving Solusandra mad, making her see visions that cause her to loose all self-control. Solusandra leaves Cardeen without taking back her Sigil.
    **Neine of the blue-skinned feralfolk:** Neine is one of the four Sigil-bearers from various worlds who are co-opted into helping Ilahn of Cadador fight against Sephie. Neine had once served as an agent for Ingra of the First, fighting at her side at some time in his past. Neine's Sigil seems to grant him increased fighting ability, speed, reflexes, and flexibility as well was flight. Neine is ultimately defeated by Sephie.
    **Mikos of Abyelos:** Mikos is a young boy (teenager) who believes his Sigil powers had been given to him as a gift from a deity. At first, Mikos uses his powers to perform simple \"magic\" tricks to impress children, but he soon learned to harness his powers in increasingly growing measure. Soon, the people of Abyelos begin to swamp the boy, begging him to perform miracles in their lives. Eventually Mikos has all he can stand, and he commands them all to stop, which they all do because his emotional outburst causes his power to flare, turning every inhabitant on the planet to statues of crystal. When Solusandra arrives to take away his Sigil, Lindy Karsten convinces her to give him a short amount of time to solve the problem, which he does at just the last moment. Solusandra then takes her Sigil and departs. Mikos's Sigil grants him matter conversion powers, telekinesis, and matter-energy conversion powers. Mikos cries **A LOT**, and possesses a high-level of chemistry and biological knowledge. Mikos's Sigil was located on his forehead, which he always hid with a funky looking piece of *Liefeld-esque* headgear.
    **Johnny Jumpjet of the Helix Worlds:** Not much is known about the hero of the Helix Worlds, Johnny Jumpjet. He is a short, fat, bald guy who wears a rocket-equipped space suit complete with pressurized helmet, even in the perfectly breathable atmosphere a habitable planet. Johnny's Sigil-based powers are unknown. Johnny was one of the first Sigil-bearers recruited by Samandahl Rey for the fight against the Negation. Johnny was last seen about to get his butt kicked by Mordath for asking a stupid question. Johnny's Sigil is located on the left side of his bald head.
    **Columella the iron goddess:** Columella is one of the four Sigil bearers recruited by Ilahn for his fight against Sephie. Columella is known as the iron goddess on her homeworld, but where that is and what her story entails is unknown. She is a savage fighter, and thinks more highly of herself than she really should, since she is easily defeated by Sephie, a girl half her age. Columella apparently worked at sometime in the past for Ingra of the First. Columella's Sigil grants her flight, advanced battle prowess, and other unknown abilities.
    **Grenang the blacksmith:** Grenang is one of the four Sigil-bearers recruited by Ilahn for his fight against Sephie of Meridian. Not much is known about Grenang or his background, other than he is a blacksmith, and holds clan \"etiquette\" in high regard. He comes close to dealing Sephie a mortal blow, and is then disintegrated by Ilahn in anger. Grenang's Sigil granted him the power of flight, blast powers, and other unknown abilities.
    **Turos of Meridian on Demetria:** Turos was once the Minister of Meridian, father to Sephie, and brother to Ilahn. He is notable as the shortest lived Sigil-bearer on record, dying only minutes after receiving the mark. Unknown to all, Ilahn had been poisoning his brother, so the stress of the Sigil's empowerment was too much for his weakened constitution to bear. He died, passing the Sigil onto his daughter, Sephie.
    **Javi of Larringa:** Javi was a doctor on Larringa who used his Sigil's power to heal. Javi was abducted by Negation agents into the Dark Universe. There he learned he was better able to still access his abilities than any other Sigil-bearer, and also learned he could boost the power of other Sigil-bearers, or members of The First, around him. He is recruited by Evinlea of the First, and is eventually presumed killed at the hands of Negation forces. Buried and left to rot, his Sigil actually keeps him alive and slowly heals his body. He is unearthed by Charon, and pressed into the evil god's service. Being a highly religious man, Javi (after working to destroy him) comes to believe that Charon is the true god and dedicates his life to the mad deity's service. Javi is killed again in a confrontation with Obregon Kaine's resistance group. Javi's Sigil was located on his right forearm.
    **Mercer Drake of the Karzath System:** Mercer's power is to overcome any physical obstacle to attain a location or object. Back in the Karzath System, Mercer was a pirate and profiteer, using his Sigil abilities for personal gain. Mercer is one of a group of Sigil-bearers who are abducted into the Negation universe and placed under observation on a prison planet. At first, Mercer joins Obregon Kaine's resistance, but eventually departs to essentially find a planet to hide on away from Charon and his minions. Mercer's Sigil is located on his chest.
    **Westin:** Westin has the ability to see how technology is operated, and uses it to help his fellow captives of the Negation escape from Komptin on his prison planet. Later it is revealed that he actually sees backwards in time when he comes in contact with a device. When this happens, he is able to see how the technology was operated before, and then emulates what he sees, sometimes with less than desirable results. At first a member of Obregon Kaine's resistance, he follows Mercer away from the battle.
    **Shassa:** Shassa's powers enable her to combat any enemy by feeding off portions of their strengths, though it only affects her and does not seem to weaken her opponents in any way. Shassa rarely wins any of her confrontations, leading many to believe she does not truly understand how her powers operate and is too obstinate to ask for aid or training. A member of Obregon Kaine's resistance, she eventually leaves the to follow Mercer's splinter group, ostensibly to \"protect\" those without a Sigil.

    Rika the All-Seeing of the Eternal Empire: Not much is known about Rika other than the fact she was tricked into aiding Ingra of the First.

    Riaglal of Forest: Nearly nothing at all is known of Riaglal but for a name.

    **Unknown Sigil-bearers:** Various Sigil-bearers seen throughout the Sigilverse. Most of these Sigil-bearers were recruited by Samandahl Rey by order of Danik to join the fight against Charon and his Negation. The furry, blue-skinned fellow was among those captured by the Negation and taken to their prison planet. He is killed during an escape attempt, proving that Sigil-bearers can be killed, though it is extremely hard to accomplish.


    Known Sigil-bearers of Danik

    ==============================

    **Capricia of Atlantis:** The first of Danik's Sigil-bearers, and another of the most important in his plans. Capricia is an empath, and exhibits shape-changing abilities. Capricia was a student of the Empathy Discipline in Atlantis. Capricia bears the child of Samandahl Rey. Capricia's Sigil rests atop her left breast.
    **Galvan of Atlantis:** One of the first six of Danik's Sigil-bearers, and twin brother to Gammid. Galvan's abilities allow him to control the infrared portion of the electromagnetic spectrum. Galvan was a student of the Passion Discipline in Atlantis. Galvan's Sigil rests atop his left breast.
    **Gammid of Atlantis:** One of the first six of Danik's Sigil-bearers, and twin brother to Galvan. Galvan's abilities allow him to control the ultraviolet portion of the electromagnetic spectrum. Gammid was a student of the Passion Discipline in Atlantis. Gammid's Sigil rests atop his left breast.
    **Tug of Atlantis:** One of the first six of Danik's Sigil-bearers. Tug's abilities rest in his mind, allowing him both sharp telepathy and powerful telekinesis. Tug was a student of the Mind Discipline in Atlantis. Tug's Sigil rests atop his left breast.
    **Verityn of Atlantis:** One of the first six of Danik's Sigil-bearers, and the youngest. Verityn's abilities allow him to act as a seer, seeing into both the past and the future. He is also a powerful telepath, and can observe the flow of energy in space and time. Verityn was a student of the Spirit Discipline in Atlantis. Verityn's Sigil rests atop his left breast.
    **Zephyre of Atlantis:** One of the first six of Danik's Sigil-bearers. Zephyre's abilities allow her to move with incredible speed. Zephyre as a student of the Body Discipline in Atlantis. Zephyre's Sigil rests atop her left breast.
    **Cassie Starkweather of Erebus:** Cassie's Sigil grants her the ability to \"see\" ghosts, and otherwise speak to the dead and to supernatural creatures.
    **Simon Archard of Arcadia:** Archard is a detective and master sleuth. He has eidetic memory and is close to emotionless, remaining utterly calm in situations of crisis. He also remains emotionally distant from other people. Simon carries his Sigil on the end of his cane, which never leaves his hand.


    Known Ligis-bearers of Charon

    ===============================

    The Ligis-bearers of Charon were led by Javi Cobain.

    **Shrakti of the Negation:** Shrakti's abilities include spatial and dimensional teleportation. Her ultimate limits are unknown.
    **Tibian of the Negation:** Tibian's abilities allow him to fight with unbridled fury. He is able to both sustain and cause massive amounts of damage.
    **Trocantor of the Negation:** Trocantor is a telepath of the highest order. Only the mind of his god, Charon, has proven to be beyond his comprehension.
    **Brevus of the Negation:** Brevus possesses near unlimited strength, and the upper limits of his strength are unknown.


    The Negation War

    ====================


    Note on CrossGen Comics

    Soon after the Negation War had begun, CrossGen Comics suffered bankruptcy and ceased publication of all volumes. Many of the Sigil-bearer's stories remain unfinished, and in some cases are quite confusing when comparing the stories in individual publications to the beginning storyline of the Negation War. (For example, Mordath is thought killed by Arwyn in an unofficial script released by Sojourn's writer, but he is seen being recruited by Samandahl Rey at the beginning of the Negation War.) The final outcome of the Sigil-bearers and their war against Charon and his Negation remains unknown.


    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-197771/","id":197771,"name":"Prequel","issue_number":null},"id":41551,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/103578-175831-sigil.gif","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/103578-175831-sigil.gif","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/103578-175831-sigil.gif","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/103578-175831-sigil.gif","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/103578-175831-sigil.gif","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/103578-175831-sigil.gif","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/103578-175831-sigil.gif","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/103578-175831-sigil.gif","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/103578-175831-sigil.gif","image_tags":"All Images,The Sigil"},"name":"Sigil","site_detail_url":"https://comicvine.gamespot.com/sigil/4055-41551/","start_year":"2001"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41606/","count_of_issue_appearances":2,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-01-16 21:09:20","deck":"Planet Movers are gloves that allow the wearer to lift or move anything.","description":"

    The Planet Movers (or Kinetic Field Gauntlets) don't actually cause things to move, they just allow the user to apply force to lift or move heavy things without them falling apart under their own weight, but only if the user is capable of moving the object on their own. They don't grant the user extra strength, they just maintain structural integrity over large areas of mass, preventing what they are touching (what is being moved) from breaking apart in transit. Mr. Majestic created the Planet Movers so he could move the planets in his solar system without destroying them in the process. Other than moving planets, he has also used them to move enormous space ships.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105374/","id":105374,"name":"Cosmology","issue_number":"1"},"id":41606,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/88192-195867-planet-movers.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/88192-195867-planet-movers.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/88192-195867-planet-movers.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/88192-195867-planet-movers.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/88192-195867-planet-movers.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/88192-195867-planet-movers.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/88192-195867-planet-movers.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/88192-195867-planet-movers.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/88192-195867-planet-movers.jpg","image_tags":"All Images,The Planet Movers"},"name":"Planet Movers","site_detail_url":"https://comicvine.gamespot.com/planet-movers/4055-41606/","start_year":"1999"},{"aliases":"X-Plane\r\nSR-71 Blackbird","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-41920/","count_of_issue_appearances":779,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-09-25 14:18:29","deck":"Manufactured by Lockheed, the SR-71 \"Blackbird\" was a top-secret, long-range reconnaissance aircraft; forerunner to the first true \"stealth\" aircraft and the fastest conventional airplane ever built. The X-Men have used many variants of the Blackbird over the years.","description":"

    History

    The X-Men's primary aircraft, known as the Blackbird, is a projected design by Carence \"Kelly\" Johnson, former head of the Lockheed Aircraft Corporation Projects Group (the \"Skunk Works\") prior to his retirement. The Skunk Works were responsible for the design and fabrication of the still-unequaled record-holding high performance strategic/reconnaissance aircraft the SR-71, and its attack version, the YF-12A. These craft are two seater's and the X-Men Blackbird accommodates a flight crew of 3 and 4 passengers.

    The Blackbird was never realized as part of the United States reconnaissance program, but the international organization SHIELD (Strategic Hazard Intervention, Espionage and Logistics Directorate) acquired the design and exotic tooling experience of this craft from Lockheed and produced an unspecified number of these highly classified aircraft. Only one survives today, the X-Men Blackbird. The rest apparently have been destroyed under unknown circumstances.

    For many years, this has been the X-Men's main mode of travel throughout the world. Currently one Blackbird is designated to each X-Team. The Blackbird has always possessed Mach capability as well as Stealth ability and vertical thrusters. Needless to say, the have gone through many of these jets with time, and the newer ones have been created and modified by Forge to have even greater capability.

    The craft is intended to be a transonic transportation device that can carry all current members of the X-Men plus several passengers. The Blackbird is equipped to fly long-distance, high-altitude reconnaissance missions and shorter trips, as well as to any climate. A mission specific add-on pod can be equipped for several pre-planned or dangerous mission scenarios. It is also outfitted for battle with several offensive systems stations which control the built-in laser guns.

    The current Blackbird had been completely re-built using ultra-advanced Shi'Ar technology. Some Blackbird was fitted with a special ruby quartz windshield that can be used by Cyclops to project his optic blast and magnify its power many times over and a platform that Storm use to summon thunder clouds. Although it is a great aircraft, it is not without it own flaws, problems encountered at Mach 4 plus flight speeds, such as high temperatures, mechanical operations and stability, and routine equipment functioning have now been eliminated.

    Technical Information

    • Wing Span: 62 feet 6 inches
    • Length: (overall, incl. nose probe): 88 Feet 4 inches
    • Height: 19 feet 2 inches
    • Weight: (unloaded, including fuel): 125,000 lbs

    (fully loaded, including fuel): 145,000 lbs

    • Cabin: max. width: 9 feet 5 inches
    • Max. height: 7 feet 1 inches
    • Max cargo capacity: 20,000 lbs
    • Normal take-off weight: 145,000 lbs.
    • Max. Level speed at Sea Level: Mach 2.3 (1,770 mph)
    • Max. Level speed at 120,000 Feet: Mach 4.2 (3,234 mph)
    • Max. rate of climb: 29.5 mps
    • Service ceiling: 230,000 feet
    • Range with max. fuel, 5% fuel reserve, 5,500 lbs payload: 8,200 miles
    • Range with max fuel, 5% fuel reserve: 12,600 miles
    • Accommodation: Flight crew of 3, 4 passenger, negative direction, high velocity escape capsule, sleeping quarter for 4
    • Power Plant: 2 Shi'Ar vari-function hot-inlet compressor fuel are combustion engines(ram jets), uses fuel trim tanks for stability

    Others Specifications:

    • Capable of vertical take-off and landing from fixed engines
    • Equipped with 3 month of rations and survival gear
    • Shi'Ar cloaking device
    • All-band communications
    • Deep-space ready cabin
    • Intelligence gathering equipment of Shi'Ar and human design

    In Other Media

    Film

    X-Men films (2000-2018)

    \"The
    The Blackbird seen in the trilogy

    The Blackbird is featured in the original three X-Men films: X-Men, X2: X-Men United, and X-Men: The Last Stand. In the films, the Blackbird is hidden beneath the Xavier Institute's basketball court.

    In the The prequel, X-Men: First Class, the first Blackbird is debuted as an advanced experimental aircraft that a young Hank McCoy designed for the CIA. The X-Men use the craft to get to their climactic battle with the Hellfire Club in Cuba, where the Blackbird is destroyed.

    An advanced, futuristic version of the Blackbird is seen in X-Men: Days of Future Past, where it is used by the surviving members of the X-Men. The craft is destroyed after Storm blows it up in order to incinerate a swam or Sentinels. The Blackbird also shows up in Deadpool and Deadpool 2, where it is piloted by Colossus.

    Television

    \"Animated
    Animated Blackbird

    A mainstay of the X-Men mythos, the Blackbird has been featured in Pryde of the X-Men, X-Men: The Animated Series, X-Men: Evolution, the Japanese X-Men anime, and Wolverine and the X-Men.

    Video Games

    \"Marvel
    Marvel vs. Street Fighter

    The Blackbird has been featured in X-Men: Children of the Atom, X-Men vs. Street Fighter, Marvel Super Heroes vs. Street Fighter, X-Men Legends, X-Men Legends II: Rise of Apocalypse, Deadpool, and Lego Marvel Super Heroes. In Children of the Atom, X-Men vs. Street Fighter and Marvel Super Heroes vs. Street Fighter, the Blackbird is actually available as a stage.

    Merchandise

    \"From
    From ToyBiz (top) and Lego (below)
    • ToyBiz released a Blackbird toy for their X-Men: The Animated Series line in the 90s. The jet was scaled to work with 5-inch action figures. A \"Mini Blackbird Jet,\" designed to hold only one figure, was also released. The Mini Blackbird was later rereleased for the X-Men Classics line.
    • ToyBiz's X-Men: Space Riders line consisted of vehicles that could combine to form a craft called the Master Battle Cruiser, which was based on the X-Jet.
    • ToyBiz later produced an X-Jet toy for the first X-Men movie. The toy featured light-up electronic sound effects, as well as launching missiles. Unlike the 90s toy, this one was scaled to work with 6-inch figures.
    • ToyBiz later released an X-Jet toy for X2: X-Men United. This one contained all the features found in the previous X-Jet, and also included a Wolverine action figure to be placed inside the cockpit.
    • ToyBiz released an X-Jet toy for their X-Men Classics line, which once again came with a Wolverine figure.
    • The Blackbird was included in the \"X-Men vs. The Sentinel\" Lego kit.
    • Funko produced a toy of the Blackbird for their Dorbz line.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-14890/","id":14890,"name":"Deadly Genesis","issue_number":"1"},"id":41920,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/8168992-blackbird.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/8168992-blackbird.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/8168992-blackbird.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/8168992-blackbird.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/8168992-blackbird.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/8168992-blackbird.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/8168992-blackbird.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/8168992-blackbird.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/8168992-blackbird.jpg","image_tags":"All Images"},"name":"Blackbird","site_detail_url":"https://comicvine.gamespot.com/blackbird/4055-41920/","start_year":"1975"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42074/","count_of_issue_appearances":60,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-08-22 09:46:17","deck":"The greatest known source of \"white\" magical knowledge on the Earth. Its counterpart is the Darkhold.","description":"

    Written by the Vishanti themselves this book holds the most powerful and practical spells on this plane. All it's secrets are yet to be uncovered because mastering a single spell takes time of study, practice and concentration as well as an understanding of the mystical forces relative to the spell. The book is said to have infinite pages.

    This book contains every counterspell known against dark magic. The book itself is considered a force of balance on the side of white magic. The book is currently under the custody of Dr. Stephen Strange who received it from his master the Ancient One.

    The spells in its contents have been used by Dr. Strange and Brother Voodoo.

    Table of ContentsPage 7 -

    The Corelli's Exorcism Reversal Battle Attack

    Page 10 -

    Colognener's Reversal Spell

    Page 453 -

    Colodor's Reversal Spell

    Page 497 -

    Yoovies Spell of Itemized Protection

    Page 567 -

    The Gorgorell Transportation Spell

    Page 4564 -

    The Vishanti Spell of Illusion

    Appendix XIII -

    Colotor's Protective Spell
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-110873/","id":110873,"name":"In The Clutches Of The Puppet Master!; Return To The Nightmare World!","issue_number":"116"},"id":42074,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/26751/659441-bookofvishanti.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/26751/659441-bookofvishanti.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/26751/659441-bookofvishanti.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/26751/659441-bookofvishanti.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/26751/659441-bookofvishanti.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/26751/659441-bookofvishanti.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/26751/659441-bookofvishanti.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/26751/659441-bookofvishanti.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/26751/659441-bookofvishanti.jpg","image_tags":"All Images,Book Of The Vishanti"},"name":"Book of the Vishanti","site_detail_url":"https://comicvine.gamespot.com/book-of-the-vishanti/4055-42074/","start_year":"1964"},{"aliases":"LMD","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42286/","count_of_issue_appearances":255,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-10-30 03:54:45","deck":"The Life Model Decoy (LMD) is a staple of the S.H.I.E.L.D. defensive arsenal. LMDs are non-biological automatons designed to mimic the behavior, appearance and speech of S.H.I.E.L.D. personnel.","description":"

    A Life Model Decoy (frequently known by the abbreviation LMD) is fictional.

    LMDs are identical in every way to the original subject they are replicating. Fingerprints, retina scans, etc all match the original. They were first used to create duplicates of SHIELD director Nick Fury in order to fool enemy agents of HYDRA.

    Recently an LMD was used to replace General Thunderbolt Ross when it appeared that Red Hulk killed him (since it was unknown that Ross was actually Red Hulk). One was also used to replicate the deceased Glenn Talbot.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9045/","id":9045,"name":"A Day of Thunder!","issue_number":"2"},"id":42286,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/34588/878752-1617___copy.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/34588/878752-1617___copy.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/34588/878752-1617___copy.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/34588/878752-1617___copy.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/34588/878752-1617___copy.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/34588/878752-1617___copy.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/34588/878752-1617___copy.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/34588/878752-1617___copy.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/34588/878752-1617___copy.jpg","image_tags":"All Images,LMD"},"name":"Life Model Decoy","site_detail_url":"https://comicvine.gamespot.com/life-model-decoy/4055-42286/","start_year":"1966"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42331/","count_of_issue_appearances":158,"date_added":"2008-06-06 11:27:50","date_last_updated":"2019-10-12 20:48:39","deck":"Now an obselete piece of transportation for the Fantastic Four, this was also known as the \"Flying Bathub.\"","description":"

    This was designed by Reed Richards, Mr. Fantastic himself. This was the transportation before they were a super-powered group.

    The Fantastic-Car Mk I is stored on the top floor of the Baxter Building. A mechanical elevator opens on the roof to land and deploy the flying machine. The car splits into four different pieces so each member can use the car separately. The front part is for Mister Fantastic, the rear is the Human Torch and the Thing and Invisible Woman ride in center.

    In Other Media

    Film

    \"The
    The Fantasticar from Rise of the Silver Surfer
    • The Fantasticar appears in the low-budget 1994 Fantastic Four film by Roger Corman.
    • The Fantasticar appears in the 2005 Fantastic Four film by Tim Story. The version in the film resembles a more advanced version of the original Fantasticar from the Silver Age comics.
    • A sleeker, upgraded version of the Fantasticar appears in the 2007 sequel, Fantastic Four: Rise of the Silver Surfer. This version of the Fantasticar sports a Dodge logo as a bit of product placement.
    • The Fantasticar is mentioned in the 2015 Fantastic Four reboot by Josh Trank. It was featured in the script as well, but was cut from the finished movie.

    Merchandise

    \"From
    From ToyBiz and Hasbro
    • A Fantasticar toy was produced by ToyBiz for their line based on the 1994 Fantastic Four animated series.
    • ToyBiz's Marvel Legends Mister Fantastic Figure came with his portion of the Fantasticar as a display base.
    • ToyBiz produced a Fantasticar toy for the 2005 Fantastic Four movie.
    • After taking over the Marvel license, Hasbro produced a Fantasticar toy based on its appearance in Fantastic Four: Rise of the Silver Surfer.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-5796/","id":5796,"name":"The Menace of the Miracle Man!","issue_number":"3"},"id":42331,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38919/1207753-fantasti_car.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38919/1207753-fantasti_car.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38919/1207753-fantasti_car.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38919/1207753-fantasti_car.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38919/1207753-fantasti_car.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38919/1207753-fantasti_car.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38919/1207753-fantasti_car.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38919/1207753-fantasti_car.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38919/1207753-fantasti_car.jpg","image_tags":"All Images,Marvel,The Flying Bathtub"},"name":"Fantasti-Car MK I","site_detail_url":"https://comicvine.gamespot.com/fantasti-car-mk-i/4055-42331/","start_year":"1962"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42343/","count_of_issue_appearances":274,"date_added":"2008-06-06 11:27:50","date_last_updated":"2017-04-21 14:42:33","deck":"This was the second version of the Fantasti-Car MK I.","description":"

    Designed and built by both Reed and Johnny, it has made many changes throughout their history. It performs like a helicopter with a electric-powered fan lift and jet turbine thrust. This vehicle has many computers in it and is made out of foamed alloy. It can fit all four members of the Fantastic Four and can reach speeds of 550 mph. There are also two mini planes which can detatch and fly on their own.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6423/","id":6423,"name":"The Incredible Hulk","issue_number":"12"},"id":42343,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14487/2019799-fantasti_car_mk_ii.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14487/2019799-fantasti_car_mk_ii.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14487/2019799-fantasti_car_mk_ii.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14487/2019799-fantasti_car_mk_ii.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14487/2019799-fantasti_car_mk_ii.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14487/2019799-fantasti_car_mk_ii.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14487/2019799-fantasti_car_mk_ii.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14487/2019799-fantasti_car_mk_ii.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14487/2019799-fantasti_car_mk_ii.jpg","image_tags":"All Images,Fantasti-Car MK II"},"name":"Fantasti-Car MK II","site_detail_url":"https://comicvine.gamespot.com/fantasti-car-mk-ii/4055-42343/","start_year":"1963"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42360/","count_of_issue_appearances":317,"date_added":"2008-06-06 11:27:50","date_last_updated":"2019-06-27 02:30:08","deck":"The nega-bands are a Kree weapon worn by Captain Marvel place holders. Both Genis & Mar-Vell were linked to Rick Jones, allowing the two to switch places when the bands are struck together.","description":"

    Appearance

    The Nega-Bands appear as plain, flat gold bracelets which seem to glow slightly with internal power.

    History

    Original Pair

    Created by the Supreme Intelligence, the Nega Bands are based off of the “Power-Bands of Rinn” also known as the Quantum Bands that are possessed by Quasar. The Nega-Bands are powered by the energies of the The Negative Zone as well as the wielder's own psionic energies. The first known pair were awarded for meritorious service to the Kree empire to Captain Marvel. They were bestowed onto the being that was to be the ultimate Kree warrior, Captain Marvel. This pair of Nega-Bands were buried with Mar-Vell after he passed away from cancer, but were stolen and then destroyed by Shi'ar scientists to create the Nega-Bomb which decimated the Kree Empire.

    New Pairs

    Later a new pair of bands were created for Mar-Vell’s son Genis-Vell and then another pair were seen upon Genis’ sister, Phyla’s wrists. Genis’ Nega-Bands were absorbed into his body prior to his death at the hands of Baron Helmut Zemo. The last known pair of Nega-Bands (worn by Phyla) seem to have merged with the Quantum-Bands when they “chose” her over Annihilus. It is not known how this will alter the Quantum-Bands if at all. Another pair were seen and worn by the Skrull infiltrator Khn'nr to placate himself as Captain Marvel during the Secret Invasion, it was also discovered there had been a pair made on Earth that were given to Ms. Marvel in order to discern his story.

    Noh-Varr's

    Recently, Noh-Varr was given a pair of Nega- Bands that appear much different than the original Nega-Bands. Their power, so far, show the ability of flight, teleporting and the projection and manipulation of various energies; while other functions include create creating a phy. performance enhancing kree battle armor. Computer & mechanized functions of tracking, scanning & homing arrays along with holographic projection capability, technopathic interfacing/control and the generation of mechanical apparatuses with which to construct other advanced Kree cybernetics systems with. They were stripped from him when he turned against the Kree in favor of the earth born heroes after he'd procured a sample of the Phoenix Force for them.

    Alternate Realities

    In an alternate future Genis’ son Ely tried to destroy the universe, he had killed Phyla and taken her Nega-Bands.

    Abilities

    These golden bands act as a gateway into the dimension known as the Negative Zone. They use energies of the Negative Zone and the wielder's own mental energies. Wielders are capable of interstellar flight. Becomes resistant to many attacks and the vacuum of space as well as no longer requiring food, water, air or sleep, the bands however are incapable of distinguishing water from a proper atmosphere, therefore a wielder of the Nega-Bands could still drown despite being protected from the vacuum of space. Wielders are also granted super-human physicals and heighten senses known as Cosmic Awareness. The bands have considerable ability to manipulate, absorb and project various types of energy, except mystic energies, but to a lesser extent than that of the Quantum Bands. They can also be used to manipulate and project antimatter as a means of offense and a power supply. Through the bands users can also teleport long distances as well as open portals to different locations across the universe or into other dimensions besides to and from Earth and the Negative Zone for instantaneous travel as was proven by Annihilus. The unique pair gifted to Noh-Varr had abilities which differentiated them from the mainstream iteration of the super weapon. They had the ability to fabricate perfectly prehensile techno-apparatus with which to build and construct advanced multidimensional technologies with. Clad the wearer in a special performance enhancing battle suit which made the wearer stronger, faster tougher and more resilient to physical damage. Enabled the projection and interaction of hardlight holographic projections of the users own design including the natural capacity for cyberpathy and technopathy which can be used to remotely access computers, mechanisms and remote control most forms of digitized automation.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-10403/","id":10403,"name":"Behind the Mask of Zo!","issue_number":"16"},"id":42360,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/2799599-captain_marvel__4___page_20b.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/2799599-captain_marvel__4___page_20b.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/2799599-captain_marvel__4___page_20b.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/2799599-captain_marvel__4___page_20b.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/2799599-captain_marvel__4___page_20b.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/2799599-captain_marvel__4___page_20b.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/2799599-captain_marvel__4___page_20b.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/2799599-captain_marvel__4___page_20b.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/2799599-captain_marvel__4___page_20b.jpg","image_tags":"All Images,Art,Earth-616 Ms. Marvel"},"name":"Nega-Bands","site_detail_url":"https://comicvine.gamespot.com/nega-bands/4055-42360/","start_year":"1969"},{"aliases":"Power-Bands of Rinn\r\nUranian Power-Bands","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42361/","count_of_issue_appearances":348,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-09-27 18:49:44","deck":"The Quantum Bands are a pair of alien artifacts that give the wearer a variety of powers.\nAlso known as: The Power-Bands of Rinn, or the Uranian Power-Bands.","description":"

    History

    The cosmic entity known as Eon was responsible for the creation of the Quantum-Bands over 7 billion of years ago. As it is Eon's duty is nurturing the evolution of sentient life and to maintain conditions favorable to life in the universe, he foresaw a need that the universe would need a protector; he created the Quantum-Bands to be the instrument of that protection.

    Wendell Vaughn, a longtime bearer of the Quantum-Bands described their power as \"...so great, that it could make a universe tremble\" and that power takes a toll on the bearer.

    \"No

    The Quantum Bands themselves are predominantly made of a unknown black alloy that is warm to the touch. They are embedded with seven (not four) golden gems which encircle each band. The bands have been known to change their shape not only to alter size to fit a new bearer. One such bearer, Trantra of the Trill, the first non-humanoid Protector, had apparently merged the bands (or had them merged presumably by Eon) into a belt-like ring which encircled his body at what would be the waist in humanoids.

    \"No

    Roughly 200,000 years ago in the aftermath of the Titan Schism, A'Lars (later known as Mentor) in his exile to Titan because of his heresy sought to prove his belief that Eternals could use natural reproduction; was married to Sui-San in a ceremony that was presided over by the cosmic entities Kronos and Eon. The rings used to symbolize their union were the Quantum Bands (sized down to fit upon their fingers). The bands were the missing link in Eternal physiology. Their immense power and ability to alter reality, thus making the impossible possible. The child born from this union was Thanos of Titan. After Thanos later brutally murdered Sui-San, Mentor returned the bands. Kronos (presumably speaking for Eon) declared that the Quantum-Bands would always oppose Thanos.

    \"No

    The Kree know the Quantum-Bands as the legendary Power-Bands of Rinn, which according to Captain Att-Lass were the inspiration/prototypes for the less powerful Nega-Bands. While it's possible that the Supreme Intelligence (who created the Nega-Bands) somehow acquired the Quantum-Bands for study, it's however more likely that he was able to study the equivalent of 'archive footage' previous bearers of the Quantum-Bands in action. Although, it is entirely possible that Mar-Vell was not the first and only Kree ever to be appointed Protector of the Universe and be somewhat loyal to the Supreme Intelligence.

    The Quantum-Bands were indirectly responsible for the creation of Thanos of Titan and were a major factor in the outcome of Cosmos in Collision, Infinity Gauntlet, Infinity War, Operation: Galactic Storm, Maximum Security, Annihilation, Annihilation Conquest, War of Kings, Realm of Kings, Annihilators: Earthfall, Standoff and Secret Empire.

    Continuity of the Quantum-Bands

    The Quantum Bands first became notable in Marvel continuity when Robert Grayson a.k.a. Marvel Boy (an Atlas comics character) wore “Uranian power-bands” in defense of the US from aliens, saboteurs, and communists during the 1950’s. Later, (after Marvel acquired Atlas Comics) Marvel Boy apparently returned from Uranus (now calling himself the Crusader) and had been driven mad by the horrors of what had happened to the outpost. He battled the Fantastic Four and Mr. Fantastic surmised that since he only attacked when the sun was high in the sky that the power-bands must be solar powered. Reed obscured the sunlight with a smoke machine and the Crusader found his power greatly diminished. When he attempted to draw more power through the bands when the smoke had cleared and he drew more power than he could handle and disintegrated himself. But not all was as it seemed. The Crusader was not actually the human Robert Grayson, but a Uranian double bearing the Quantum Bands instead of Grayson's own power bands. Grayson himself was held in suspended animation on Uranus until recently.

    The bands were then collected from Reed Richards by SHIELD for study. SHIELD enlisted Stark International in that endeavor. The head scientist was a man named Dr. Gilbert Vaughn, who had a son named Wendell who at the time was training to become a SHIELD agent. William Wesley, a test pilot, (a possible allusion to Hal Jordan) tested the bands out but disintegrated himself just as the Crusader had.

    AIM robot assault group attacked in an attempt to steal the bands but were foiled when Wendell Vaughn donned the bands to protect them and single-handedly destroyed the assault group. He was then offered a job by Col. Nick Fury himself to become the first member of the Super-Agents of SHIELD. He called himself Marvel Boy in honor of Grayson, and later Marvel Man.

    \"No

    Later calling himself Quasar, after it was surmised that the power-bands collected energy from QUASi-stellAR radio sources (or Quasars) he had many adventures, even serving for a time as security chief at Project: PEGASUS, and eventually was appointed by Eon to be Protector of the Universe. It is here that the bands are called by their proper name for the first time. The Quantum-Bands. And it was learned that the bands were symbols of the station of the Protector of the Universe and actually powered by another dimensional \"Quantum-Zone\", which contained all of the potential energy of the universe.

    Quasar served well as Protector, he was unfortunately killed by the cosmic assassin, Maelstrom, who then donned the bands, but Quasar was able to resurrect himself and reclaim them. Later Quasar was nullified by the Magus and was still able to resurrect himself and eventually reclaim the bands again, but not before a Skrull (disguised as the Comtemplator) briefly claimed one of them.

    Quasar was killed by Annihilus who claimed the bands during the Annihilation War. Phyla-Vell avenged Quasar and claimed his mantle along with the Quantum-Bands. It is worth noting here that when Phyla acquired the Quantum-Bands she was already wearing a version of the Kree Nega-Bands. It was assumed that the Nega-Bands somehow merged with the Quantum-Bands. This is supported by the fact that the Quantum-Bands have functioned slightly differently since then, such as changing users at will when it had been previously established that Quantum-Bands cannot be removed until a bearer is dead. She used the bands to defend the Kree Empire from the Phalanx and even destroyed Ultron. Later, after joining the Guardians of the Galaxy Phyla-Vell was killed by Mentor in an attempt to bring Moondragon back from the dead, thus losing the Quantum-Bands. They were reclaimed by Maelstrom who seemingly sought to feed Phyla and Drax to the Dragon of the Moon. Wendell (who had been resurrected in energy-form) intervened and Drax cut Maelstrom's arms off and the Quantum Bands returned to Wendell and he reclaimed his mantle as Quasar.

    Wendell briefly lent the Quantum-Bands to Richard Rider who had lost his powers and was dying. Once he had gotten his own powers back and defeated Ego the living planet, he returned the bands to Wendell.

    Later, Avril Kincaid was offered the Quantum-Bands by Wendell Vaughn and was instrumental in turning the tide during the chaos at Pleasant Hill. She was offered the mantle of Quasar and instructed in the use of the bands by Wendell himself.

    During the events of Secret Empire, Avril Kincaid seemed to sacrifice herself destroying an energy shield surrounding Earth. The bands returned to Vaughn who came out of retirement to continue as Protector of the Universe. He later joined the Guardians of the Galaxy and reported he had found Avril trapped within a pocket dimension and now she and Wendell can swap places as needed; both of them somehow wielding the Quantum-Bands.

    \"No

    Bearers

    The following beings* have worn the Quantum Bands in presumed chronological order:

    (names in bold are the current wielder(s)

    * = This listing is by no means complete, but includes all those known named characters to have worn the Quantum Bands.

    Abilities of the Quantum Bands

    • Energy Manipulation: Primarily, the bands are tools for manipulating forms of energy. A bearer of the quantum-bands can affect, alter, absorb, and channel any form of energy found in the Electromagnetic spectrum, from Gamma Rays to Radio Waves, and this also includes visible light. This affords the bear complete control of the Electromagnetic Spectrum.
    • Energy Constructs: The bands can construct anything the wearer can imagine from \"Quantum energy\", This energy is derived from the Quantum-Zone, although the bands can absorb energy from all known sources.
    • Flight: The bands allow the bearer to fly in atmosphere or in space (surrounding the wearer in an energy aura to protect from air-friction or the vacuum of space), and can achieve incredible speeds (Wendell Vaughn once flew from New York Harbor to the Sea of Tranquility and back in under 10 minutes which means he would have to maintain an average a speed of 2.8 million miles per hour without teleporting). Quasar was often clocked at near light-speed. Starhawk was estimated at traveling at \"thrice light-speed\" by Era, Eon's child in an alternate future.
    • Teleportation/Warp Gate: The Quantum-Bands also enable the bearer to \"quantum jump\" or create apertures between the fabric of space/time of various sizes. Allowing the wearer access to the realm of potential energy which the bands interface with known as the Quantum-Zone. A wearer can then travel through this trackless, featureless zone and emerge at a different point in our physical space light years away from his starting point only seconds later. The Quantum-bands would enable a bearer to keep their bearings while in the zone and thus emerge where they want to. They can cross countless light years in a single jump (Vaughn regularly traveled from our star system to systems in other galaxies this way) if a bearer so desires. He could take passengers or open gates large enough for a starship. Quasar once traveled this way from Uranus to Earth; a distance of at least 1.6 billion miles in 15 seconds. Important note, however, a bearer cannot quantum-jump within an atmosphere of a planet without ripping a hole in its ozone layer.
    • Communications: The bands can detect, emit, and receive radio waves; thereby the bearer can communicate with other radio receivers. The bands can also create a “Quantum-link” which appears as a glowing golden sphere about 2 inches in diameter, which travels to the point of contact at warp speeds and connects with any communication device present allowing the bearer to carry on near-instantaneous communications even over extra-galactic distances.
    • Altered metabolism: One previous bearer of the Quantum bands (The Crusader) has been known to be able to augment his strength and stamina to unknown limits with the Quantum-bands. William Wesley was shown to be able to lift an automobile when he was field testing the \"Power-bands\". Quasar himself rarely exhibited this ability and only when it was needed. He once lifted Terminus out into space from Earth with only the assistance of the cosmically powered Spider-Man and he also once physically restrained She-Hulk by himself, whether this was a statement of his augmented physical strength or her own restraint is unknown, though she seemed to struggle against him.
    • Mental protection: Despite the fact that the Quantum-Bands have no control over the mind or Psionics, at least one previous bearer (Vaughn) had \"programed\" the Bands to protect his mind for mental attacks and takeover. So powerful is this protection that powerful psychics, such as Moondragon or the Overmind could not overcome it.
    • Mental/Physical bond: The Quantum Bands bond with their bearer upon contact interfacing the bearer's mind with the Bands allowing for mental control. Permanently affixing themselves generally to the bearer's wrists, the flesh and bone within rendered indestructible so long as the bond with the bands persists. The bond can only be broken upon the bearer's death, at which point the bands could be removed easily. Although, with Vaughn's many resurrections, he has shown to have a link with the bands even beyond death. Note: Despite this, since Phyla-Vell died and lost the Bands, they have been depicted as being easily transferable: Such as when Maelstrom's hands were cut off by Drax; when Wendell offered the bands to Rich Rider; or when Wendell offered the bands to Avril Kincaid.

    Limitations:

    • Worthiness: Similar to the hammer of Thor ( Mjolnir), a bearer of the Quantum-Bands must to be worthy. As the Quantum-Bands are tied to the station of the Protector of the Universe, the bands seem to require a calm mind lacking ‘killer instinct’ to learn to use them to their fullest potential. A bearer with the intent to commit acts of depravity and destruction (or simply attempted to force their own will over the bands) will quickly find themselves losing control of the energy output of the bands until they disintegrate them. Despite this, Annihilus wore the Quantum-Bands for about a full year, but the bands removed themselves from him at the earliest opportunity to bond with Phyla-Vell.
    • Magic: The Bands cannot absorb it or resist it. However, an enchanted physical object will only be as strong as the object itself would otherwise be. Therefore, Thor's hammer (Mjolnir) will simply not shatter Quasar's force field like glass. Fortunately, magicians have no control over the energies of the Quantum-Bands so, it evens out.
    • Extra-dimensional energy: Quasar is susceptible to all persons using Darkforce. The Q-bands cannot create constructs to hold or resist darkforce energy. The Darkforce penetrates his energy like it wasn't even there. Also powerful entities from the Negative-Zone (such as Annihilus) can corrupt the bands if wearing them.
    • Kinetic energy: The Quantum Bands have no defense against someone manipulating kinetic energy psionically. (Which is why Maelstrom overwhelmed Quasar so easily to begin with during the events of Cosmos In Collision), but a bearer can resist a kinetically imbued object (such as a knife or a deck of cards) If a bearer of the Quantum Bands senses the attack they can throw up a shield to defend themselves with.
    • Psionic energy: A psionic blast will cut through any quantum constructs like paper mache'. Fortunately, most psionic manipulators are susceptible to the energies of the Quantum-Bands.
    • Matter manipulation: Foes who manipulate matter, psionically or otherwise, the Quantum Bands cannot effect their powers. They deal with energy, not matter. The Molecule Man, Sersi, Phoenix, Her, and the Silver Surfer, among others, affect matter in a way that a bearer of the Q-bands cannot. However, Her, Sersi, and the Silver Surfer use cosmic energy to power their matter manipulation abilities and therefore a practiced bearer could affect the energy source, but not the ability itself.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159035/","id":159035,"name":"The Lost World / Eyes of Death","issue_number":"1"},"id":42361,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/2355/8169268-thequantumbands.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/2355/8169268-thequantumbands.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/2355/8169268-thequantumbands.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2355/8169268-thequantumbands.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/2355/8169268-thequantumbands.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/2355/8169268-thequantumbands.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2355/8169268-thequantumbands.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/2355/8169268-thequantumbands.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/2355/8169268-thequantumbands.png","image_tags":"All Images"},"name":"Quantum Bands","site_detail_url":"https://comicvine.gamespot.com/quantum-bands/4055-42361/","start_year":"1950"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42369/","count_of_issue_appearances":184,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-11-28 15:25:02","deck":"A device which can transport someone to the Phantom Zone, a dreaded dimension filled with vast space, where time is frozen yet the inhabitants are not.","description":"

    The Phantom Zone Projector is a devise used to transport galactic inmates such as General Zod into inter-dimensional realm known as the Phantom Zone, where space and time have in no effect in this void. That being said this projector can also preserve life, as its inmates do not age a day.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-126389/","id":126389,"name":null,"issue_number":"283"},"id":42369,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/65423/2627690-pzprojector.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/65423/2627690-pzprojector.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/65423/2627690-pzprojector.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/65423/2627690-pzprojector.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/65423/2627690-pzprojector.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/65423/2627690-pzprojector.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/65423/2627690-pzprojector.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/65423/2627690-pzprojector.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/65423/2627690-pzprojector.jpg","image_tags":"All Images,Phantom Zone Projector,Scans"},"name":"Phantom Zone Projector","site_detail_url":"https://comicvine.gamespot.com/phantom-zone-projector/4055-42369/","start_year":"1961"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42379/","count_of_issue_appearances":4,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:34","deck":"The Fantastic Four's incredible shrinking ship created by Mr. Fantastic to enter the Microverse. The fantastic four usually it for fighting Psycho-man, their enemy from sub-atomica. ","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-136904/","id":136904,"name":"Stranded in Sub-Atomica!","issue_number":"76"},"id":42379,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/95231-9882-reducta-craft.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/95231-9882-reducta-craft.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/95231-9882-reducta-craft.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/95231-9882-reducta-craft.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/95231-9882-reducta-craft.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/95231-9882-reducta-craft.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/95231-9882-reducta-craft.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/95231-9882-reducta-craft.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/95231-9882-reducta-craft.jpg","image_tags":"All Images,Reducta-Craft"},"name":"Reducta-Craft","site_detail_url":"https://comicvine.gamespot.com/reducta-craft/4055-42379/","start_year":"1968"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42380/","count_of_issue_appearances":5,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:36","deck":"The Fantastic Four's underwater transport created by Mr. Fantastic.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6239/","id":6239,"name":"The Undersea Legions of Sub-Mariner!; The Fabulous Fantastic Four Meet Spider-Man!; The Fantastic Four","issue_number":"1"},"id":42380,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/95230-184109-u-car.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/95230-184109-u-car.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/95230-184109-u-car.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/95230-184109-u-car.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/95230-184109-u-car.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/95230-184109-u-car.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/95230-184109-u-car.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/95230-184109-u-car.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/95230-184109-u-car.jpg","image_tags":"All Images,U-Car"},"name":"U-Car","site_detail_url":"https://comicvine.gamespot.com/u-car/4055-42380/","start_year":"1963"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42381/","count_of_issue_appearances":2,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:39","deck":"Dr. Doom's airship of mayhem with just about anything a super-villain could want: servant robots, disintegration guns, tractor beams, multiple ingenious traps, escape pods, holograms, forcefields, etc","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-6643/","id":6643,"name":"Defeated By Doctor Doom!","issue_number":"17"},"id":42381,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/95229-105072-flying-fortress.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/95229-105072-flying-fortress.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/95229-105072-flying-fortress.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/95229-105072-flying-fortress.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/95229-105072-flying-fortress.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/95229-105072-flying-fortress.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/95229-105072-flying-fortress.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/95229-105072-flying-fortress.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/95229-105072-flying-fortress.jpg","image_tags":"All Images,Flying Fortress"},"name":"Flying Fortress","site_detail_url":"https://comicvine.gamespot.com/flying-fortress/4055-42381/","start_year":"1963"},{"aliases":"C-Synth","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42385/","count_of_issue_appearances":27,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-08-24 17:03:49","deck":"A device constantly sought out by Omega Red in order to stabilize his condition.","description":"

    The Carbonadium Synthesizer is a device that can liquefy carbonadium so that it can be molded into new forms.

    Wolverine possessed a carbonadium synthesizer which he used to bargain with The Tinkerer so that Cyber could be kept alive for enough time to give Wolverine needed information.

    But it was lost in the waters below a bridge when Wolverine threw it away after The Tinkerer had already done his work on Cyber and Wolverine had disappeared.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-35379/","id":35379,"name":"Blowback","issue_number":"5"},"id":42385,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/35374/945004-carb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/35374/945004-carb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/35374/945004-carb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/35374/945004-carb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/35374/945004-carb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/35374/945004-carb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/35374/945004-carb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/35374/945004-carb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/35374/945004-carb.jpg","image_tags":"All Images"},"name":"Carbonadium Synthesizer","site_detail_url":"https://comicvine.gamespot.com/carbonadium-synthesizer/4055-42385/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42405/","count_of_issue_appearances":18,"date_added":"2008-06-06 11:27:50","date_last_updated":"2012-11-22 17:30:03","deck":"Within the realm of death resides the Infinity Well. With the right questions, the well can be a source of unlimited knowledge.","description":"

    The Infinity Wells origins remain unrevealed. The well its self seems to possesses some degree of sentience. It can tell and show anything the user desires. Within the well lies all answers to any and every question and limitless knowledge.

    Thanos used the infinity well to learn of what was then called the soul gems. He used this knowledge to track down the elders of the universe and acquire their gems, which he renamed infinity gems, and created the Infinity Gauntlet.

    He and the Infinity Watch would later sneak in to Deaths realm to use the well in order to gain much needed insight towards the Magus and his schemes during the Infinity War story Arc. Though the well was not able to finish before Magus interfered revealing their presence to Death forcing them to flee her wrath. The well then proceeded to inform Death of the Magus' plans.

    During the Infinity Crusade Death used the well to learn the extent of the Goddesses plans. Which to her delight, evidenced by the bone chilling cackle that resounded throughout her realm, included the Death of most living beings in the universe.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-32859/","id":32859,"name":"The Answer!!!","issue_number":"38"},"id":42405,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/31666/1148695-infinity_well_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/31666/1148695-infinity_well_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/31666/1148695-infinity_well_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/31666/1148695-infinity_well_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/31666/1148695-infinity_well_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/31666/1148695-infinity_well_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/31666/1148695-infinity_well_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/31666/1148695-infinity_well_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/31666/1148695-infinity_well_1.jpg","image_tags":"All Images,Infinity Well"},"name":"Infinity Well","site_detail_url":"https://comicvine.gamespot.com/infinity-well/4055-42405/","start_year":"1990"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42426/","count_of_issue_appearances":2493,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-03-23 09:46:10","deck":"Web Shooters are Marvel superhero Spider-Man's main defensive weapons and tools. He mainly uses this to shoot webs from his wrist, and a pair was even handed down to his daughter, May Day Parker also known as Spider-Girl.","description":"

    Origin

    \"Operating
    Operating Web-Shooters

    When Peter Parker was bitten by a radioactive spider, he found he had the proportional speed, strength, and agility of a spider, as well as the ability to stick to walls. This inspired him to create his signature weapon and most used tool of all, his web-shooters.

    Fitting around each wrist, Spider-Man's web-shooters are easily concealed under his costume like a magic trick.

    Mechanics

    \"No

    The trigger lies flat in his palm and requires a quick double-tap of his middle and ring finger to activate. This keeps him from accidentally discharging his web when making a fist or holding an object. Not only does it need a double-tap, Spider-Man's web shooter also needs a strong amount of pressure to activate, beyond what a normal human can produce. Each shooter has an adjustable nozzle to allow for strong strands for web-slinging or wide dispersal for web nets, shields, cushions, and more. The shooter’s nozzle reacts to minute flicks of Spider-Man’s wrist to adjust the spray.

    Each shooter has a compartment for a small cartridge of concentrated web fluid which he had developed at home using a chemical set he had. He keeps spare cartridges in a belt under his costume for easy access. In later times, he improved them by installing a rotating carousel that automatically reloads a web cartridge should the current cartridge inside the chamber of the web shooter runs out of web fluid. A steel pin breaks the cartridge, ready to shoot web for web-swinging or ensnaring villains. The web shooter is also prone to malfunction, thus Peter needs to have constant maintenance to prevent his webbing from exploding and entangling himself.

    Later added was a voice-activated function. This allows him to shoot continuous blasts of webbing in different directions and forms. It is unknown what else the function can do at the moment.

    His clone, Ben Reilly, uses a modified web shooter that is much the same as Spider-Man's but the difference is that it is worn outside his costume. Peter's daughter from an alternate future, May \"Mayday\" Parker, aka Spider-Girl, used the same web-shooters her \"Uncle\" used. Back when they were married, Peter gave Mary Jane a modified web shooter disguised as a bracelet that she can use for self-defense as a Valentine's Day gift.

    Webbing

    When Spider-Man taps into his web shooter trigger, the web fluid is shot from a small nozzle. When the web fluid comes in contact with the air, it solidifies into a rope-like material that Spider-Man uses to web-swing across the New York skyline. If Spider-Man taps the trigger hard enough, the nozzle widens its opening, making the web coming out of the web shooter wider. The webbing produced by these cartridges is ultra-strong but dissolves in about one hour’s time, this is why New York City isn’t covered in discarded webs. Spider-Man has improved his webbing formula over the years as he gained access to better labs and chemicals, and he has also developed variations on his web fluid formula for use against specific villains such as when he fights Venom he has an extremely strong and sticky webbing, insulated webbing against Electro, acidic webbing to melt through Rhino's tough hide and flame-retardant webbing to fight fires or fire elemental enemies.

    When Spider-Man fought the Blob, he intentionally took one of his web cartridges and threw it towards the villain, the cartridge broke, exposing the web fluid in the air, overwhelming the Blob into a mesh of webbing, leaving him stuck for the police to arrest him. Ben Reilly, aka the Scarlet Spider, developed his own special web called Impact Webbing, a ball of the web that engulfs a villain into a cocoon, and Stingers, darts that have a sedative to tranquilize anyone hit by it.

    Organic Webbing

    In the Sam Raimi Spider-Man movies (Spider-Man, Spider-Man 2, and Spider-Man 3), Peter had organic webbing generated by glands in his forearms. This was controversial with fans at the time but proved popular with general audiences.

    To capitalize on this, Marvel decided to introduce the organic web-shooters into the comics during the Avengers Disassembled crossover. In the story arc, Peter evolved biological web shooters located in his forearms. He developed spinnerets under his forearms that can trigger in a similar means to his original web shooters but without the burden of constant build, repair, and upgrade of the device and costly web fluids. The strength and elasticity of the organic webbing are unknown, but it is speculated to be much stronger than the synthetic and is said to depend on Spider-Man's current health and nutrition. Unlike synthetic webbing, organic webbing lasts for a week until it dissolves. But ever since One More Day, Peter has lost the ability of organic webbing and is therefore using his web-shooters again.

    In Other Media

    Film

    Spider-Man Trilogy

    \"The
    The prototype web-shooter on display at E3

    Prior to this, there were plans to have the web-shooters appear in Sam Raimi's original Spider-Man movie. This was changed to organic web-shooters in the finished film. Despite this, the props from the movie were still displayed before its release.

    Amazing Spider-Man movies

    \"No

    The web-shooters appear in The Amazing Spider-Man and The Amazing Spider-Man 2. In the first movie, it is shown that the webbing was developed from a bio-cable sold by OsCorp, which was made from the webs of the genetically engineered spiders that bit Peter. Peter jury rigs his first pair of web-shooters from a pair of wristwatches but uses a more professional set in the sequel.

    Marvel Cinematic Universe

    \"The
    The web-shooters in the Civil War

    Peter's homemade web-shooters are featured in Captain America: Civil War. After meeting Peter, Tony Stark creates a more advanced version of the web-shooters, complete with a built-in Spider-Signal. The new web-shooters are explored in greater detail in Spider-Man: Homecoming, where it is revealed that they have various settings, such as rapid-fire webs and taser webs. In contrast to the comics, the web-shooters are worn outside the costume instead of underneath.

    Television

    \"No

    Though Spider-Man's web-shooters appear in most adaptations, Ultimate Spider-Man is notable for introducing an updated model developed by S.H.I.E.L.D. at Nick Fury's behest. The more advanced web-shooters display a variety of special uses, such as web parachutes and electrified taser webs.

    Merchandise and toys

    \"From
    From ToyBiz

    Toy replicas of Spider-Man's web-shooters have long been a popular seller, starting in the 1990s. Variations of the web shooter toy have been released multiple times throughout the years by a few different companies, usually to tie into the movies or TV shows. Stephen Kimble successfully sued Marvel after claiming they stole the idea for the toy from him and received a cut of the royalties for many years until production switched from Toy Biz to Hasbro, resulting in a lengthy legal dispute.

    Some Peter Parker action figures have also come with sculpted and detailed web-shooters.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105342/","id":105342,"name":null,"issue_number":"15"},"id":42426,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/95930-17226-web-shooters.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/95930-17226-web-shooters.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/95930-17226-web-shooters.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/95930-17226-web-shooters.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/95930-17226-web-shooters.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/95930-17226-web-shooters.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/95930-17226-web-shooters.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/95930-17226-web-shooters.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/95930-17226-web-shooters.jpg","image_tags":"All Images,Web Shooters"},"name":"Web Shooters","site_detail_url":"https://comicvine.gamespot.com/web-shooters/4055-42426/","start_year":"1962"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42856/","count_of_issue_appearances":170,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-09-26 21:32:13","deck":"A manifestation of it's owner's soul, the Zanpakutō is the primary weapon that a Shinigami, Arrancar and Vizard uses in the Manga series, Bleach.","description":"

    Description

    The zanpakutō is a spiritually powered weapon most often used by the Shinigami, Arrancar and Vizards. It manifests itself into a weapon that is unique to the wielder. The spirit of the zanpakutō is also part of the wielder's soul and can sometimes share the same personality.

    In the Bleach mangas many of the Soul Reapers and Arrancar can alter their Zanpakutō's appearance by releasing the Zanpakutō's full power.

    A Soul Reaper's Zanpakutō usually reflects personality and power. An Arrancar's Zanpakutō can take up the form of their hollow powers. Some Zanpakuto's can alter it's user's appearance upon release.

    Other Zanpakutō cause physical damage or halt other's abilities. Zanpakutōs can also be used to create power blast that, based on the wielder's strength, can cause devastating damage capable of leveling whole buildings or more.

    A Zanpakutō has three stages that they can exist in, and each stage has a different appearance.

    User specific

    In an interview Tite Kudo revealed that the Zanpakutō will react differently according to whomever is wielding it. He stated that if Renji was to hold Ichigo's Zanpakutō, and vice- versa, then Renji would think that it was heavy. In the same way Ichigo would find Renji's unsealed Zanpakutō to be heavy as well.

    Sealed State

    The sealed state of the blades are the forms that most Zanpakutōs are carried in by the Soul Reapers and Arrancar when not in use. The sealed state is the weakest form of the Zanpakutō. In this state the Zanpakutō looks like an ordinary katana, and can even be unsheathed and still be sealed.

    Shikai

    The initial release is the first evolved form of the sword. When in the initial form of being released a Zanpakutō usually changes shape. Sometimes it even changes to a form other than a sword. Soul Reapers like Aizen don't change their swords form, while others like Byakuya Kuchiki changes his sword into blades the size of cherry blossom petals.

    On the opposite end of the scale there are Soul Reapers who don't know how to seal their Zanpakutō, Like Ichigo and Kenpachi Zaraki. When an Arrancar release their Zanpakutō's initial release their Zanpakutō takes the form of their hollow powers. An Arrancar usually has a part of it's body change back to Hollow form.

    Bankai

    The final release form of a Zanpakutō is called the Bankai form. In the Bankai form a Zanpakutō is in it's most powerful form.

    Most zanpakutōs take a form that best aids the user in battle. Maintaining Bankai can be a very tedious task for the wielder and drains their power away. Bankai is a form that requires the person who wields the Zanpakutō to be able to communicate with each other. This can be from turning into a giant monster that the wielder controls and feeds spirit power to.

    Other Bankai releases, like Ichigo's, change the wielder's body and gives a big jump to a person in any strength or weakness.

    Vizards Zanpakutō

    Vizards are humans who can use the powers of both a Soul Reaper and a Hollow. Like Soul Reapers Vizards can use their Zanpakutōs for their primary source of power. They can unseal and seal their Zanpaku- tos too. Ichigo's Zanpakutō reveals that it is in fact also his Hollow that exist inside of him. Vizard's Zanpakutōs are in this revelation the source of the Vizard's power, combining with the masks that they wear to personify when they are in use of Soul Reaper powers and Hollow powers.

    Arrancar Zanpakutō

    When Arrancar unleash their Zanpakutō they are releasing the seal that has kept their Hollow powers locked away. By releasing their Zanpakutō they will partially transform a part of their body to what their Hollow form and gain full control of any powers that they had as a Hollow.

    List of Soul Reapers with named Zanpaktou

    Soul ReaperTypeShikaiBankai
    Byakuya Kuchikin/aSenbonzakura - The blade splits into many cherry blossom shaped slivers of metal and can shred an opponent.Senbonzakura Kageyoshi - A much larger version of the Shikai's ability. The bankai is mentally controlled and can be used for offense or defense
    Chojiro SasakibeElementalGonryomaru - The ability is unknown though the sword changes into a rapierKoko Gonryo Rikyu - The bankai is powerful enough to effect the weather and is able to manipulate lightning and thunder.
    Genryusai YamamotoElementalRyujin Jakka - The oldest zanpaktou in Soul Society. In Shikai the balde emits fire that can scorth the earth itselfZanka no Tachi - The bankai turns the blade into a scortced katana that reduces anyone slashed by it to ashes
    Gin IchimaruMeleeShinso - The blade extends to impale a target at high speed.Kamishini no Yari - The bankai's ability is greatly amplified and can extend 13km at 500 times the speed of sound.
    Hanataro YamadaKidoAkerio Hisagomaru - While in its sealed state it heals the wounds of those it strikes and a red gauge will fill with every healed wound. Once full all the added together damage is released as one single blast and the blade changes to a scalpeln/a
    Hiyori SarugakiMeleeKubikiri Orochi - The blade changes into a cleaver like blade with serrated like teethn/a
    Ichibei Hyosuben/an/an/a
    Ichigo KurosakiMeleeZangetsu - Ichigo's true Shikai after Zangetsu reforging takes the form of twin blades - one the size of his previous sword and one khyber knife. The ability is Getsuga Tensho witch shoots a blast of crescent reitsu at the opponentTensa Zangetsu - The blade condenses to a black katana and Ichigo's speed is drastically improved. The blade now fires a black getsuga tensho.
    Ikkaku MadarameMeleeHyozukimaru - The sword changes to a three sectioned staff with a blade on one end.Ryumon Hozukimaru - The weapon changes into three large weapons connected by chains, a monks spade, a guan do, and an axe blade. the weapon is a mass of power.
    Isane KotetsuElementalItegumo - An unknown ability the is probably ice based.n/a
    Isshin KurosakiMeleeEngetsu - The sword is able to fire a Getsuga Tensho blastn/a
    Izuru KiraMeleeWabisuke - The blade changes to a square shaped hook. The blade then doubles the weight of whatever it hits and the effect is multiplied every time Kira hits something.n/a
    Jirobo IkkanzakaKidoTsunzakigarasu - The blade of the sword changes into many sickle shaped shuriken that can be controlled via telekinesis.n/a
    Jushiro UkitakeKidoSogyo no Kotowari - The blade splits into two small katana connected by a rope with charms. The left blade can absorb energy attacks and the charms accelerate the attack and fire out of the right blade.n/a
    Kaien ShibaElementalNejibana - The sword changes into a trident with a blue tassel near the blade. When swung the trident emits water so every blow feels like being hit with a crushing wave.n/a
    Kaname TosenKidoSuzumushi - The sword has 2 sepcial abilties, one is a sonic attack that knocks out targets and the other launches a barrage of metallic spears at the opponent.Suzumushi Tsuishiki: Enma Korogi - The bankai creates a large black dome where inside only the person who holds the hilt can see, hear, smell, taste, or sense energy.
    Kenpachi ZarakiMelee

    Nozarashi- transforms into a massive Axe massively increaseing the physical power of the user ( unknown relation to the vice captain)

    n/a
    Kensei MugurumaElementalTachikaze - When released it takes the form of a combat knife and can manipulate air creating air blasts and bladesTekken Tachikaze - The relased turns the blade into a set of shoulder armor connected by large knuckle blades. This greatly increases his strength.
    Kirio Hikifunen/an/an/a
    Kisuke UraharaKidoBenihime - After release Benihime can shoot crimson colored blasts that have a similar energy makeup as a Hollow's ceron/a
    Koga KuchikiKidoMuramasa - After released Muramasa shoots a purple wave out that will cause up to 10 Zanpaktou to turn on their wieldersn/a
    Lisa YadomaruMeleeHaguro Tonbo - After release the sword changes to a staff with a monks spade on one end and a large weight on the other.n/a
    Love AikawaElementalTengumaru - After release the sword would transform into a large spiked club that could ignite itself in flamesn/a
    Maki IchinoseElementalNijigasumi - When released the sword manipulates light for various effects like invisibility, illusions, blades of light, and a light prisonn/a
    Makoto KibuneMeleeReppu - After release the sword changes to a three bladed weapon that is connected by a staffn/a
    Marechiyo OmaedaMeleeGegetsuburi - After release the sword changes into a large spiked bail attached to a large chain making it a ranged weapon.n/a
    Mayuri KurotsuchiElementalAshisogi Jizo - After release the sword changes to a three pronged trident like weapon on a spiked hilt with an inverted baby's head at the base of the blade. The blade emits a paralyzing poison that will stop limbs from working, but not stop pain receptors.Konjiki Ashisogi Jizo - After release the sword transforms into a large caterpillar like creature with a golden baby's head and sword like spines underneath the neck area. this being spews poison gas made from Mayuri's blood.
    Momo HinamoriKidoRobimune - After rlelease the sword becomes straighter and adds prongs to the side of the blade. In this state the blade can fire fireball like projectilesn/a
    Nanao Isen/an/an/a
    Oetsu Nimaiyan/an/an/a
    Rangiku MatsumotoElementalHaineko - After release the sword blade changes to ash that can be directed to slash opponentsn/a
    Renji AbaraiMeleeZabimaru - After release the sword takes the form of many segments connected by a stretchable threadHihio Zabimaru - After release the sword changes into a large bone snake where the segments are connected by Renji's reitsu. Essentially a larger version of his Shikai ability.
    Retsu UnohanaKidoMinazuki - The sword changes into a large stingray creature that can fly and serve as transportation. the ray can swallow people and heal them inside its stomachMinazuki - The blade is covered in a thick dark slime that flows from the blade
    Rojuro \"Rose\" OtiribashiKidoKinshara - After release the sword becomes a whip with a flower like object on the end. The whip can increase Rose's kido powers or control sound for shockwavesn/a
    Rukia KuchikiElementalSode no Shirayuki - After release the sword turns pure white and gains a long tassel at the base of the pommel. The sword has many moves called \"danced\" that use ice for a variety of effects.n/a
    Rusaboro \"Enryu\" EnkogawaElementalDaichimaru - After release the sword changes to two large fists connected by a chain. This sword can manipulate earth for a variety of effectsn/a
    Ryusei \"Kenryu\" KenzakiElementalBenishidare - After release the sword changes into a large black bokken with flowers growing out of the side. This sword can manipulate flowers for a variety of effectsn/a
    Sajin KomamuraMeleeTenken - After release the sword summons a giants arm and sword every time it is swungKokujo Tenken Myo'o - After release the bankai summons the iant which mimics Komamura;s movements
    Senjumaru Shutaran/an/an/a
    SennaElementalMirokumaru - After release the sword changes to a shinto priests staff and can summon tornadoes.n/a
    Shinji HirakoKidoSakanade - After release the sword grows slightly in length and gains a ring at the end of the pommel allowing the sword to hover around Shinji's hand. The sword emits a smell that inverts up, down, left, right, eyesight, direction of attacks, and where injuries are inflictedn/a
    Shuhei HisagiMeleeKazeshini - After release the sword takes the form of 2 kusarigama like scythes connected by a chain. the weapons can be thrown like buzzsawsn/a
    Shunsui KyorakuMeleeKaten Kyokotsu - After release the sword splits into twin Chinese scimitar type blades. The abilities are ruled based on child gamesn/a
    Shusuke AmagaiElementalRaika - After release the sword gains a hook tip where fire can be charged for a great attack.Raika Goen Kaku - After release the sword becomes a larger version of the shikai with a more detailed blade and a shield like pauldron
    Soi FonMeleeSuzumebachi - After release the sword becomes an assassin blade shaped like a bee stinger worn over the middle finger. The blade will kill a person if they are stabbed in the same place twiceJakuho Raikoben - After release the sword changes into a single shot missile launcher.
    Sojiro KusakaElementalHyorinmaru - After release the sword releases an ice dragon from the tip which can freeze enemiesn/a
    Sosuke Aizen Kyoka Suigetsu - After release the blade will shatter and anyone who sees this will fall under its spell. Aizen can project realistic illusions that cannot be broken by normal meansn/a
    Tenjiro Kirinjin/an/an/a
    Tetsuzaemon IbaMeleen/an/a
    Toshiro HitsugayaElementalHyorinmaru - After release the sword releases an ice dragon from the tip which can freeze enemiesDaiguren Hyorinmaru - After release Hitsugaya gains ice armor and wings over his body and the ice effects of his sword are increased
    Yumichika AyasegwaKidoRuri'iro Kujaku - After release the sword blade splits into vines that cna ensare opponents and drain them of their energyn/a
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-106842/","id":106842,"name":"The Death and the Strawberry","issue_number":"1"},"id":42856,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/4/43593/911636-bleach_zanpakuto_guards_by_chioky.jpg","image_tags":"All Images,Bleach,Replicas"},"name":"Zanpakuto","site_detail_url":"https://comicvine.gamespot.com/zanpakuto/4055-42856/","start_year":"2002"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42986/","count_of_issue_appearances":8,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-10-03 16:02:55","deck":"A massive device used to convince Yggdrasil, the World Ash, that Ragnarok had already occurred.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-41556/","id":41556,"name":"\"Worldengine\" part 1, \"Nailed Up.\"","issue_number":"491"},"id":42986,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/69338/1641906-thor494_17.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/69338/1641906-thor494_17.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/69338/1641906-thor494_17.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/69338/1641906-thor494_17.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/69338/1641906-thor494_17.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/69338/1641906-thor494_17.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/69338/1641906-thor494_17.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/69338/1641906-thor494_17.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/69338/1641906-thor494_17.jpg","image_tags":"All Images,World Engine"},"name":"World Engine","site_detail_url":"https://comicvine.gamespot.com/world-engine/4055-42986/","start_year":"1995"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-42991/","count_of_issue_appearances":370,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-06-09 23:59:55","deck":"A magical weapon created from the purest part of Illyana Rasputin's soul during her stay in Limbo.","description":"

    The Soulsword

    The Soulsword is the ultimate embodiment of Illyana's magical strength. Forged during a time of great need and despair. Illyana was desperate to find a way to free herself of Belasco and find a way to leave Limbo. Attempting to use the white magics that her previous teacher, the elderly Ororo, taught her. She attempted to create, with all her strength, something that would help to free herself; only to find that she would fail each time. Realizing that she could not properly produce the exact spells as the elderly Ororo because they used magic with differing motives, she reconfigured the spells. She would use a portion of her still intact pure soul combined with her motivation, revenge, a bright light grew directly in front of her. When she reached in she drew forth, what appeared to be a very simple looking silver sword. When she fully grasped it and pulled it from the brightness, light enveloped it completely and a surge of energy consumed Illyana. While in Illyana's hands the Soulsword, as she named it, aided her in defeating Balesco. It also contributed to her ruling in Limbo, controlling her demons while away, and in battle while she was on the Earth dimension. With each and every use of the blade, its strength grew and its abilities increase exponentially. Much later it was revealed that the sword was just the beginning of her magically strengths. Through time a suit of armor composed of the same magical properties as the sword would come to the holder of the blade. It was revealed by Dr. Doom that the Soulsword granted leadership of Limbo, and the armor was, by right, the protection given to the owner of the sword.

    More recently, Amanda Sefton placed a Soulsword, presumably Magik's, in Nightcrawler's care and keeping. Kurt has been able to wield this sword, pulling it out of his chest on occasions when confronted by supernatural threats. In X-Infernus #1, Pixie pulled the Soulsword from Nightcrawler's chest.

    During the events of Second Coming, Illyana is dragged to Limbo and she uses the Soulsword and Pixie's Souldagger to cut Limbo's influence over Gambit who had turned to his Death persona. She then reclaims control over Limbo.

    Powers & Abilities

    The strengths and extents of Illyana's Soulsword were never fully revealed.

    As S'ym told, the Soulsword held stable Limbo. It's the Darkchilde Token of Dominance.

    Her Soulsword did though show a number of very specific magical attributes and abilities that included the follow:

    • Grants Leadership of Limbo: He who own/wields the Soulsword is granted leadership or dominion over Limbo, though the full power of the sword could only be accessed by Illyana.
    • Disruption of Magic & Breaking of Spells: This includes its very lethal nature to that of magical beings.
    • Soul Absorption.
    • Sword Summoning: Granting the owner of the sword to place and store it in absolute nothingness and allowing the own to retrieve from whence its place with ease.
    • Teleportation Disc's: As a result of the Soulsword being forge from as piece of Illyana's soul, it would wields the ability to create teleportation stepping disc's. Thus allowing the current owner the same ability.
    • Dimensional Manipulation: The ruler of Limbo can mentally manipulate the physical appearance of Limbo, allowing it to look/appear as they wish it to.
    • Augment Magical Powers: Whom ever holds or owns the sword is granted increased magical strength.
    • Spellcasting: When holding the Soulsword, it grants the hold the ability to cast or produce magic, even if they do not have the ability to do so.
    • Summoning of Mystical Eldrich Armor: It was revealed by Dr. Doom that the mystical armor that manifests on the individual that wields the Soulsword is actually a magical armor provided to any who rule Limbo.
    • Super Strength: When wearing the mystical armor, Illyana displayed a increase in her own personal strength. Shown when she did battle with her, one time, servant S'ym. During the Inferno invasion the two did battle. Illyana would easily grab S'ym and throw him yards away from her with only one arm.

    The Soulsword is unable to harm beings of non-magical or cosmic origin but for unknown reasons, the Soulsword can physically injure Kitty Pryde, alias Shadowcat, even when she is using her phasing power to become intangible. Pryde, The Beyonder, Amanda Sefton, and Karma are to date the only other known beings besides Magik who are capable of wielding the Soulsword effectively. When Pryde does so, Magik's armor begins to appear on Pryde's body. Moreover, when the Beyonder once freed Illyana from the influence of her Darksoul, Pryde gained the ability to produce and wield the Soulsword. Illyana later took the Darksoul influence back upon herself in order that she could again wield the Soulsword to save Pryde's life from a demon. The reason for the mystical connection between Illyana Rasputin and Kitty Pryde, each of whom is the others best friend, is unknown but some believe it is because of the time Illyana spent in Limbo with an alternate version of Kitty Pryde.

    Other Versions

    The Magik from Earth-4210 was a member of the Exiles. She replaced Blink when she supposedly was sent home. This version of Illyana was much more bloodthirsty, not hesitating when it came to missions involving killing. She demonstrated considerable magical ability, including the ability to forge Soul Swords, but her weapons were identified as a \"Soul Swords of Bata's Circle,\" and were not the same as Earth-616's Soulsword. The Soul Swords could cut through living flesh, and was mystical in nature, with the ability to destroy vampires, including the Vampire King. Magik's first Soul Sword was taken by Archangel in battle, but she was able to conjure a new one almost immediately. These Soul Swords were most likely created by her soul, not from her soul. She mainly used these weapons to deflect energies directed at them, focus her spells, and kill.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-23307/","id":23307,"name":"Rogue","issue_number":"171"},"id":42991,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5344/1948904-soulsword_01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5344/1948904-soulsword_01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5344/1948904-soulsword_01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5344/1948904-soulsword_01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5344/1948904-soulsword_01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5344/1948904-soulsword_01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5344/1948904-soulsword_01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5344/1948904-soulsword_01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5344/1948904-soulsword_01.jpg","image_tags":"All Images"},"name":"Soulsword","site_detail_url":"https://comicvine.gamespot.com/soulsword/4055-42991/","start_year":"1983"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43023/","count_of_issue_appearances":4,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-11-21 22:57:08","deck":"Altwaal's Weapons total seven in number, and each contains either fantastic destructive power, or vast defensive energy. The seven weapons were disseminated to others when Altwaal withdrew from Elysia","description":"

    The seven weapons are:

    1. Altwaal's Gauntlet of Victory
    2. Ayden's Bow & Arrow
    3. Altwaal's Rod of Office
    4. Altwaal's Shield
    5. Altwaal's Spear
    6. Altwaal's Sword
    7. Altwaal's Circle
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-70546/","id":70546,"name":null,"issue_number":"4"},"id":43023,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/104995-18547-atwaal-s-weapons.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/104995-18547-atwaal-s-weapons.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/104995-18547-atwaal-s-weapons.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/104995-18547-atwaal-s-weapons.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/104995-18547-atwaal-s-weapons.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/104995-18547-atwaal-s-weapons.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/104995-18547-atwaal-s-weapons.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/104995-18547-atwaal-s-weapons.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/104995-18547-atwaal-s-weapons.jpg","image_tags":"All Images,Altwaal's Weapons"},"name":"Altwaal's Weapons","site_detail_url":"https://comicvine.gamespot.com/altwaals-weapons/4055-43023/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43199/","count_of_issue_appearances":97,"date_added":"2008-06-06 11:27:50","date_last_updated":"2020-10-04 14:38:45","deck":"Essentially the Star Brand is a zero-point energy collector, drawing power from the fabric of space-time itself. It is unlimited in potential, though the upper limits of the star-like tattoo of power are determined by the imagination of its wielder. A paradox, the Star Brand came into being when the universe was compressed into a single point of space for a mere microsecond. It has been wielded by several people in various realities.","description":"

    Object Description

    The brand itself is roughly the size of the palm of the hand and as far as has been shown is immaterial and effectively only two-dimensional. The Brand is utterly black in color and is smooth and warm to the touch. As long as it is somewhere on their skin the bearer may wield its powers. The brand can be transferred to another part of the body if the bearer wills it by skin-to-skin contact, thus the bearer can choose to place the Star Brand anywhere on his person, willing it into his hand then placing it anywhere on their body. However, this transfer involves some energy discharge, and the brand will burn off any hair it is placed over.

    The Star Brand and its power can be transferred to another person, but former owners are always left with a remaining residue of about 10% of its power, a residue which regenerates and in time will grow to equal that of the original. In the series it was stated that the power of the brand is infinite. So 10% of infinite power is still infinite power.

    When the Brand is transferred to a lower animal or plant, they burn out quickly and do not survive. When it is transferred to an inanimate object, it creates an enormous explosive release of energy with mutagenic and destructive results, capable of destroying a city or even affecting a whole planet.

    Object History

    New Universe

    In the New Universe, on July 22, 1986, the Earth was bathed in a blinding flash of light. In the wake of this “White Event” people all over the world began developing strange paranormal powers, some mutated physically in ways which seemed to defy medical science.

    The White Event was triggered when the Old Man attempted to pass on the Star Brand onto an inanimate object, in this case an asteroid in order to get rid of the power. The brand released a huge amount of energy which bombarded the Earth. Realizing that that he would not be free of the Star Brand so easily, the Old Man came to Earth and gave the Brand to the first person he met, Ken Connell.

    \"Ken
    Ken Connell gets the Star Brand

    Connell was a car mechanic from Pittsburgh; he often tried to use the Star Brand’s power to help others, but was often thwarted by the complexities of the real world. Though given a suit by the Old Man, but he found he rarely had the time to change in the face of a real emergency and supposedly it was as invulnerable as he, its invulnerability was exposed as an illusion. He later donned a spandex body suit and mask to openly fight terrorists, but this led to disaster. Though intelligent, he was self-involved and lacked the imagination and curiosity that would allow him to understand and wield the brand to its fullest potential. He eventually decided that he would be better off without his powers, and unintentionally caused the destruction of all of Pittsburgh the “Black Event” when attempting to transfer the brand to a bar-bell.

    While possessed of the Star Brand, Connell conceived a child with Debbie “The Duck” Fix. The child was born fully conscious of its power, growing at an accelerated rate physically and mentally through the influence of the Brand. Despite being painfully naive to the ways of the world, the Starchild was much more selfless and had a much more instinctual grasp of the power than his father ever did. After several attempts to better the world through direct usage of his power, the child retreated out into space to meditate onto how to best use the power. The child chose an elderly man who was less impulsive; deciding that the key to proper use of the Brand was to give it to someone was more wise and experienced in worldly matters. Jacob Burnley was a retired janitor and veteran of World War II, who only used his power after much consideration and put it to many new uses. In time he de-powered the power-hungry President of the United States and attempted to rebuild Pittsburgh.

    Eventually, the Star Child soon realized that the Brand was a cosmic anomaly which no good could come from, therefore should be locked away for all eternity. It learned that the original White Event actually created the Brand itself, sending its energies 500 years back in time, when the Old Man originally lived. In fact, it turned out that the Old Man, Ken Connell, and the Starchild were all the same being. The Starchild then replicated and manipulated the original event to make it happen in a safe temporal loop.

    Earth-616

    However, the Star Child neglected to isolate the power which had accidentally been transferred to pilot Jim Hanrahan, who later, when Quasar was blasted into the New Universe, transferred his portion of the power to Quasar.

    When Quasar took the Brand back to his universe, he accidentally passed it on to his secretary, Kayla Ballantine, who quickly found herself in the middle of a cosmic power-struggle, during which the Brand was stolen by the Deviant, Ereshkigal, and the Stranger. Eventually the Living Tribunal ruled (as the Star Child had before) that the Star Brand should be quarantined from the main universe. It was therefore returned to Kayla and she was marooned on the same Earth that the Star Brand first manifested upon.

    The Star Brand has recently been bestowed on another naive person, Earth-616's Kevin Conner, who is very similar to the New Universe's Kenneth Connell. In the process of giving him his power, it was said that his White Event went wrong. It was also said that many other Star Brands exist in other alternate realities. Ken Conner was capable of easily battling high-level heroes like Hulk, Hyperion, and Thor mere minutes or hours after receiving the Brand.

    Other Realities

    The Star Brand has popped up in various other realities including the newuniversal reboot of the New Universe, an Exiles story on Earth-15731, and a few other realities referred to in the Untold Tales of the New Universe: Star Brand story.

    Powers imparted by the Star Brand

    The Star Brand is an immensely powerful weapon that possibly channels much of the energy of the multiverse itself, depending on its incarnation:

    Even novice users can gain the following powers:

    • Flight: far in excess of lightspeed

    • Super-Strength: easily in the class-100 level

    • Invulnerability: capable of surviving a nuclear bomb at ground zero with no ill effects at all

    • Destructive blasts: omnidirectional blasts up to the equivalent of nuclear explosion in force (this is problematic, as the blast manifests as a sphere centered on the wielder indiscriminately destroying everything in his vicinity)

    • Energy blasts: although the Brand's power usually manifests as a omnidirectional sphere of energy, it has sometimes been used to make standard energy blasts of great power

    • Immortality

    • Regeneration: even when seemingly killed, users turn into a scaly reptile/alien-looking creature and slowly regenerate into their normal health

    • Healing

    • Hypnosis

    • Survival in the cold and vacuum of space

    \"One
    One theory on the Star Brand's power

    More skilled users of the Star Brand, such as the Starchild, are capable of far more. They are essentially capable of doing whatever they imagine, including extensive reality and temporal manipulation. Kevin Connor was able to use Star Brand's power to kill one of the Beyonders although it cost him his life. Its upper limits are unknown.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-27286/","id":27286,"name":"The Star Brand","issue_number":"1"},"id":43199,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/13/134753/5784002-img_2852.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/13/134753/5784002-img_2852.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/13/134753/5784002-img_2852.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/13/134753/5784002-img_2852.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/13/134753/5784002-img_2852.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/13/134753/5784002-img_2852.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/13/134753/5784002-img_2852.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/13/134753/5784002-img_2852.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/13/134753/5784002-img_2852.jpg","image_tags":"All Images"},"name":"Star Brand","site_detail_url":"https://comicvine.gamespot.com/star-brand/4055-43199/","start_year":"1986"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43246/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:49","deck":"The Dawn Sword is the designated weapon of the Dawn Warrior, warrior and protector of the Ankharan people of the Five Lands of Quin. Arwyn helps rediscover the Sword, freeing Ankhara from Mordath.","description":null,"first_appeared_in_issue":null,"id":43246,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/107876-178246-dawn-sword.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/107876-178246-dawn-sword.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/107876-178246-dawn-sword.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/107876-178246-dawn-sword.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/107876-178246-dawn-sword.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/107876-178246-dawn-sword.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/107876-178246-dawn-sword.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/107876-178246-dawn-sword.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/107876-178246-dawn-sword.jpg","image_tags":"All Images,gallery"},"name":"Dawn Sword","site_detail_url":"https://comicvine.gamespot.com/dawn-sword/4055-43246/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43295/","count_of_issue_appearances":74,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-09-18 14:04:53","deck":"A powerful magic jewel which allows its user to manipulate anything the jewel touches.","description":"

    Originally possessed by Sargon the Sorcerer, the Ruby recently came into the possession of Tefé Holland. Tim Hunter was offered the power of the Ruby but rejected it. The Ruby was originally carved from the same stone as the Spectre's Ring of Life.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-132132/","id":132132,"name":"Green Lantern: \"The Case of the Loan Shark\"","issue_number":"26"},"id":43295,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/662696-photo1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/662696-photo1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/662696-photo1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/662696-photo1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/662696-photo1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/662696-photo1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/662696-photo1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/662696-photo1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/662696-photo1.jpg","image_tags":"All Images,Ruby of Life"},"name":"Ruby of Life","site_detail_url":"https://comicvine.gamespot.com/ruby-of-life/4055-43295/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43403/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:46","deck":null,"description":"

    In the Apocalypse texts, the sacred sword is the sword used to launch chastisements on human beings. It symbolizes the will of God.

    In Shinto’s texts, the sacred sword is a goshintai. A goshintai is a sacred and hidden object. Goshintai are placed and venerated in Shinto’s Shrine because the goshintai becomes an incarnation of the Shrine’s god during rituals. Goshintai are terrestrial bodies of substitution for Japanese gods.

    In the X/1999, the sacred sword is the sword used to launch chastisements on human beings. THis sword is hidden inside Togakushi Shrine.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-150585/","id":150585,"name":null,"issue_number":"1"},"id":43403,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1929/113441-129112-sacred-sword.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1929/113441-129112-sacred-sword.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1929/113441-129112-sacred-sword.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1929/113441-129112-sacred-sword.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1929/113441-129112-sacred-sword.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1929/113441-129112-sacred-sword.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1929/113441-129112-sacred-sword.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1929/113441-129112-sacred-sword.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1929/113441-129112-sacred-sword.JPG","image_tags":"All Images,gallery"},"name":"Sacred Sword","site_detail_url":"https://comicvine.gamespot.com/sacred-sword/4055-43403/","start_year":"2009"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43405/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:50","deck":null,"description":"

    Yuto’s weapon is a kind of whip with a sai at each extremity.

    ","first_appeared_in_issue":null,"id":43405,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1929/113442-85373-yuto-kigai-s-weapon.jpg","image_tags":"All Images,gallery"},"name":"Yuto Kigai's weapon","site_detail_url":"https://comicvine.gamespot.com/yuto-kigais-weapon/4055-43405/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43495/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:42","deck":"This figurine is a carved piece of hardened, black stone in the shape of a panther. Whoever possesses this figurine can summon or dismiss the astral panther Guenhwyvar.","description":"

     This onyx figurine originally belonged to Masoj Hun'nett of House Hun'nett, a sorcerer at the Academy of Magic in Menzoberranzan, a drow city native to Drizzt Do'Urden.  But after certain events, Drizzt forged a comradeship with Guenhwyvar and the astral phanter chose to follow Drizzt instead of her former master.  
     
    The figurine also serves as a teleportal device. The halfling Regis used the figurine to teleport away from Tarterus and then teleported back into Pasha Pook's palace with an army of astral felines.  Guenhwyvar is immortal as she is an astral creature. As long as the figurine is intact, she will always be available to serve her master.    

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-123415/","id":123415,"name":"Homeland","issue_number":"1"},"id":43495,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/111646-139405-guenhwyvar-s-figurin.jpg","image_tags":"All Images,Figurine"},"name":"Guenhwyvar's Figurine","site_detail_url":"https://comicvine.gamespot.com/guenhwyvars-figurine/4055-43495/","start_year":"2005"},{"aliases":"Wonder Woman's Invisible Jet\r\nWonder Woman's Robot Plane\r\nWonder Woman's Invisible Robot Plane","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43539/","count_of_issue_appearances":648,"date_added":"2008-06-06 11:27:50","date_last_updated":"2015-10-18 08:13:24","deck":"The Invisible Plane was a form of early transport for Wonder Woman. It was later redesigned as an alien object that could take any form the owner desired. In 2011, DC Comics rebooted their universe. Apparently, in this new continuity, the Invisible Plane never belonged to Wonder Woman at all. It was designed by A.R.G.U.S. and is the main means of transportation for Steve Trevor's Justice League of America.","description":"

    Pre-Crisis History

    When Wonder Woman was able to return Steve Trevor back to Man’s World, she was given an invisible plane designed by Amazon science to take him in. Even though the plane was invisible, the occupants of the plane, including the pilot do not also gain invisibility. In the 1940s, it was to be called the “Transparent Plane”. Within the comics, it was a piece of Amazonian technology, as the Amazons were depicted with advanced technology. The plane was originally hidden in an abandoned farm, and Wonder Woman’s telepathic powers from her tiara gave her control of the plane and that she could call for the plane at the speeds of sound. The plane also had a drop ladder which was also invisible, and she was usually drawn sitting on the plane wing, controlling the plane from there and battling airborne villains. During the Golden Age in comics, continuity was not important and the invisible plane had another origin story. With this one, she was to do three tasks, and if she completed in the three tasks, her reward would be a part of the plane, and then she would be able to form the plane with the three parts.

    During the Silver Age, a new origin story was created. She was to tame a horse called Pegasus and if she could, Pegasus would become the invisible plane would through the other end of the mystic clouds that separated Man’s World and Paradise Island. The plane then became a jet as new technology was being invented and the plane this time could travel in outer space and allowed many of her friends to also ride along. The rope was rarely used this time however, as Wonder Woman could just pounce up onto the plane and use air currents to glide her towards the jet. The jet is destructible however as Wonder Woman is blinded and ends up crashing the jet near Gorilla City.

    Post-Crisis History

    During this time, the jet’s origin story was revised and it was rarely used as Wonder Woman now had the ability to fly. Its origin was that Wonder Woman had been given a Lansinar disc which was a “morphing crystal”. This technology was devised as the aliens who created this were blind and could not adapt to their environments quickly enough and so this the crystal was created, so that it could morph catering to their needs. This time, the jet was invisible, and it made the occupants inside invisible as well and propels itself using graviton particles. This jet could also go into outer space and without taking a deep breath; Wonder Woman could stay in space for 20 minutes using the jet’s oxygen supply. It could also attune to her needs telepathically. The jet has weapons, but is rarely used as this depletes the jet’s resources and can render the plane visible. Though it can regenerate, it does it slowly and it is used as a last resort. The jet was still used because it could hold many people, even though Wonder Woman could fly.

    WonderDome

    Established in issue #140 that the Invisible Plane can shape itself into a flying fortress known as the WonderDome. This WonderDome would serve as Wonder Woman's equivalence to Superman's Fortress of Solitude and Batman's Batcave although she has areas more pertinent to her upbringing such as a sculpture garden.

    New 52: Post -Flashpoint

    In 2011, DC Comics rebooted their entire comic universe. In this new continuity, the Invisible Plane never belonged to Wonder Woman. Instead, it was designed by the Homeland Security offshoot organization, A.R.G.U.S., and serves as the main form of transportation for Amanda Waller & Steve Trevor's \"Justice League of America\".

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-110315/","id":110315,"name":"Wonder Woman Arrives in Man's World","issue_number":"1"},"id":43539,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/4349957-allred.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/4349957-allred.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/4349957-allred.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/4349957-allred.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/4349957-allred.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/4349957-allred.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/4349957-allred.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/4349957-allred.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/4349957-allred.jpg","image_tags":"All Images"},"name":"Wonder Woman's Invisible Plane","site_detail_url":"https://comicvine.gamespot.com/wonder-womans-invisible-plane/4055-43539/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43650/","count_of_issue_appearances":2,"date_added":"2008-06-06 11:27:50","date_last_updated":"2012-02-24 13:47:10","deck":"Omnium (otherwise known as omnium steel) is a steel alloy, stronger than titanium, weaker than adamantium, making it the second strongest alloy made by man.","description":"

    History

     
    Omnium has been featured in Marvel Comics from time to time, popping up in various places whenever someone needs something strong but doesn't want to resort to adamantium. Omnium, however, is even less malleable than adamantium. 

    For instance, an acolyte of Magneto had the power to change either himself or another person into an aware omnium statue. 

    In X-Men vol. 2, #11, Maverick fights a super soldier with omnium skin. 

    Whiplash used spring-loaded retractable omnium steel cables. 

    The Vault, a U.S. Government facility for imprisoning superhumans, was made of omnium as well as adamantium.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-40845/","id":40845,"name":"In Excess","issue_number":"3"},"id":43650,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3848/119945-9364-omnium.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3848/119945-9364-omnium.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3848/119945-9364-omnium.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3848/119945-9364-omnium.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3848/119945-9364-omnium.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3848/119945-9364-omnium.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3848/119945-9364-omnium.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3848/119945-9364-omnium.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3848/119945-9364-omnium.JPG","image_tags":"All Images,omnium"},"name":"Omnium","site_detail_url":"https://comicvine.gamespot.com/omnium/4055-43650/","start_year":"1995"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-43809/","count_of_issue_appearances":6,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-01-16 16:01:00","deck":"The Heart of Wakanda or Heart Shaped Herb is a Wakandan plant whose juices and phyto-nutrients grant special abilities to those of noble and worthy blood.","description":"

    Description

    The Heart Shaped Herb gifts those who are allowed to use it with \"super-normal\" abilities granted by the Panther god. The user gains enhanced speed, agility, strength, endurance, healing and senses. All of these attributes are raised to enhanced-human/slightly-superhuman levels. With the enhanced senses provided by the Heart Shaped Herb, a person can see in complete and total darkness, can track someone across a continent by smell, and can hear the breathing and heartbeats of enemies. The Heart Shaped Herb also creates a connection between the person and the Panther God, the deity worshiped in Wakanda.

    The only people allowed to have the power of the Heart Shaped Herb are those chosen to be the Black Panther. To become the Black Panther, a warrior must defeat the current Black Panther and after that, fight 6 of Wakanda's best warriors (each more than a man for any normal man) all at once. After this they must complete several other tasks to prove their worthiness and increase their physical prowess and spiritual strength. After all these tasks have been completed, the warrior is allowed to undergo the ritual a ritual where they have the juices of the Heart Shaped Herb applied to his body. It is said that anyone not worthy or of noble blood would not survive the process.

    How It Works

    After T'Challa (the current Black Panther) had some of his scientists study the Herb to tell him how it worked. This is what they said: \"The poultice stimulated and accentuated the human being's kinesthetic sense. The kinesthetic sense is the subliminal perception that allows human beings to close their eyes, yet know where the different parts of their bodies are. If you didn't have this sense, you couldn't pick your nose or wash your hair if your eyes weren't open. The poultice, plus the stimuli of rigorous theological and physical training, heightened your kinesthetic sense. It heightens the proprioceptors (the proprioceptive system processes the orientation sense to the brain) and perceptions in your body. That is how you sense where a tree limb or a building edge is, know exactly where it is and never have a moment's doubt that your fingers will close about it...The sacred anointment poultice has a second effect on your muscles and ligaments, specifically on the joints where bones connect and swivel, mesh and respond. There are receptors in these joints called the Pacinian corpuscles that carry the signal to the brain to fulfill proper movement. Somehow the poultice is absorbed into those receptors and makes them especially sensitive...This is what enables you to twist and dodge with unparalelled grace.\"

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46496/","id":46496,"name":"Local Hero","issue_number":"16"},"id":43809,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/308/120248-46121-heart-shaped-herb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/308/120248-46121-heart-shaped-herb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/308/120248-46121-heart-shaped-herb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/308/120248-46121-heart-shaped-herb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/308/120248-46121-heart-shaped-herb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/308/120248-46121-heart-shaped-herb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/308/120248-46121-heart-shaped-herb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/308/120248-46121-heart-shaped-herb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/308/120248-46121-heart-shaped-herb.jpg","image_tags":"All Images,Heart Shaped Herb"},"name":"Heart Shaped Herb","site_detail_url":"https://comicvine.gamespot.com/heart-shaped-herb/4055-43809/","start_year":"2000"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44097/","count_of_issue_appearances":985,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-04-26 20:22:18","deck":"A weapon in the Star Wars Universe associated with the Jedi and the Sith.","description":"

    Overview

    Lightsaber

    \"Lightsaber\"
    Lightsaber

    A lightsaber is a weapon and a symbol of both the Jedi and Sith. It is constructed from a crystal placed in the hilt. Placing the crystal in the hilt requires the Force as someone who isn’t trained in the Force may kill themselves in the process of making one. A lightsaber can also be tweaked to the wielder's liking. This can include the length of the blade and the intensity of the blade. Younglings have the intensity setting on low so as not to pose a threat to others in their training. To use a lightsaber requires great skill, and just like making one, requires the Force.

    A Brief History

    After 25,000 Before Battle of Yavin (BBY), the lightsaber became apart of the Jedi culture and they came about when the first Jedi Knights had used a Force power called Jedi Forge, and combined that with an alloy hilt. Later, they used off-world technology and that would keep and bring out the laser, and that would the base design of lightsabers from there on. Around 15,000 BBY, more research could allow the laser of the lightsaber to retract and extend, becoming the first portable energy blade.

    However, being new technology, it ate up the power supply quickly from a belt the Jedi wore and heated up quite quickly, making it unstable. It had to be used for short periods of time. Because of this, they were used more at ceremonies when granting the Jedi their next level in training.

    \"Ancient
    Ancient corded Protosaber

    In 7,000 BBY, lightsabers were more commonly used as they became more stable, but they were still depleting the power supply. Even more so, they still had to wear the belt to supply the power, and the belt restricted movement when they were fighting. Around 5,000 BBY, they placed the power supplies inside the lightsaber and by 4,800 BBY they also put in a superconductor. This superconductor would allow the energy to be re-transferred into the power supply, allowing the lightsaber to be always extended. When the lightsaber made contact with anything, the superconductor would transfer the energy through a negative-charged flux aperture and the energy loop would be broken, allowing the energy to then be used for extra power.

    However, the lightsaber with this new technology was then sold on black-markets after 19 BBY (Episode III). It was from there on the lightsaber became quite rare and became collector’s items. It was Luke Skywalker who brought back lightsabers, and the discovery of Jedi holocrons, which were basically small electronic cubes which could hold large amounts of information.

    Construction

    \"Cross-Section
    Cross-Section Of A Lightsaber

    To construct one’s own lightsaber required the Force and was apart of the apprentice’s training. First of all, the apprentice had to go into crystal caves, such as the one near the Jedi Enclave on Dantoonie, where in the cave the apprentice would use the Force to guide him/her to the right crystal for them. First, the lightsaber would take about a month to complete, the apprentice had to gather parts and materials to construct a lightsaber, but during the Clone Wars, it is said that lightsabers can be constructed in two days. Lightsabers must have all these basic components for it to become a “lightsaber”:

    • Crystals (up to three)
    • Power cell
    • Power conduit
    • Recharge socket
    • Activation switch
    • Hilt and a grip

    The lightsaber hilt is made out of alloy that’s usually 30 centimeters long, but can vary according to the physical needs of a Jedi – for example, Yoda. He is short in stature so he would need a hilt that would be in proportion with his body. Inside the hilt are a set of lenses and energisers which would work with the crystal to extend the laser of the lightsaber (like light bouncing off mirrors). To place the crystals inside the hilt would require the Force, because it required the binding of the materials at a molecular level which would allow an almost-perfect construction. Of course, people who were not Force sensitive could also construct a lightsaber, but they came along very rarely. One such person is Jaden Korr.

    Waterproofing had been considered as apart of the lightsabers feature, because most lightsabers would short out once put underwater but adding such a feature was very difficult. Such Jedis like Kit Fisto came from an aquatic race and went through the trouble of constructing a water proof lightsaber. Another added feature included was the use of a pressure sense so that when the Jedi let go of his/her lightsaber, the laser would retract. It was put in as a security measure.

    Variants

    Because the lightsaber would always represent said Jedi or Sith, variants were discovered to suit one’s own needs, physically and psychologically. With that, variations of crystals, hilts, blades and creations of new weapons using the same technology from lightsabers and weapons such as whips, batons and canes.

    Crystals

    The main crystal of the lightsaber is the color of the crystal, which will define what color the blade of the lightsaber will be (more below). Certain crystals can be used to change the characteristics of the lightsaber. For example, Nextor and Damind crystals could be used to shape the crystal. Some crystals could be used to make the laser \"sharper\" or broader.

    The color of the lightsaber could be changed by finding crystals of a certain color and using it as the focus crystal. The Jedi had used natural resources, collecting them from crystal caves where as the Sith had reconstructed natural crystals, which created the red hue. The fact that they could reconstruct also meant that they had a much more powerful lightsaber than the Jedi but that made the lightsabers unstable could easily short out. Even so, a Sith lightsaber could short out a lightsaber with only natural crystals in it, though that has rarely happened. However, it should be also noted that Luke Skywalker had used a synth-crystal as well during Star Wars: Return of the Jedi.

    At first during 1,000 BBY, crystals of any color was could easily be found, the most common colours being blue, green, violet, yellow, orange, silver and gold. After the Ruusan war, in which the colors mentioned before were quite common, the common colours now were blue and green. Others who wanted a different color had to brave dangerous worlds to get their crystals. Mace Windu is an example.

    Colors could also represent a Jedi’s class during the Jedi Civil War, where Darth Malak reigned. A blue lightsaber represented the Jedi Guardian, someone who was forceful and talented in the areas of combat. A green lightsaber represented the Jedi Consular didn’t have great combat skills, but preferred the areas of diplomacy and common sense. A yellow lightsaber represented the Jedi Sentinel who was balanced in the areas of combat and the Force.

    There are variety colors, the most common being blue, green and red. Other colors include:

    • Silver Blue
    • Silver
    • White
    • Gray
    • Crimson
    • Yellow
    • Yellow-green
    • Emerald
    • Gold
    • Magenta
    • Bronze
    • Purple
    • Pink
    • Turquoise
    • Violet
    • Orange

    Blade

    With a different combination of crystals, users of lightsabers could tweak the blade to their needs.

    • Dual-phase lightsaber - Allowed the user to change the length of the blade, allowing it to extend up to twice its own length.
    • Great lightsaber - However, this one which was up to three metres long on its own, without needing to change the length of the blade. This blade was created to suit the larger users such Gorc who was three meters tall himself.
    • Short lightsaber - Was smaller than the average blade of the lightsaber and was suitable for such Force users like Yoda.
    • Shoto - A knife-like lightsaber, and it was for people who were not attuned to the Force as they could use this without endangering themselves or others around them.
    • Training lightsabers - Are used with Jedi younglings who are just starting out. They are no where near as powerful as full-fledged lightsabers, but if made in contact with them, they can bruise or cause some minor burns.
    • Saberstaff - These special lightsabers also known as double bladed lightsabers had blades projecting from both ends of a long hilt but required great skill and coordination to wield.

    Hilts

    Lightsaber

    The most basic and earliest of hilts was the lightsaber hilt, ranging from 20 to 35 centimeters long.

    Electrum

    This hilt had a royal and finished look forged from gold-electrum and were created specifically for the senior members of the Jedi Council. Known people for using them were Mace Windu and Darth Sidious.

    Curve-hilted lightsaber

    These kind of hilts were created during the time when Form II of lightsaber combat was at its heights. These curved hilts allowed precise movement. Constructing the crystal was more challenging because of its curve. It seems as if this type of hilt is associated with the Sith as Count Dooku, his apprentice and many other Sith Masters use this type of hilt.

    New Jedi Order

    During the New Jedi Order, new variants of lightsaber hilts were created. Such hilts were.

    • Adept
    • Adjudicator
    • Arbiter
    • Consul
    • Defender
    • Firebrand
    • Katarn
    • Retaliator
    • Sentinel

    Lightsaber Combat

    Force-sensitive users trained with a lightsaber had a very versatile weapon with them. It was powerful but also very light and could be carried anywhere. They trained as if the lightsaber were apart of their own body and learned that the lightsaber was bonded with the user in the Force. With this, Jedi could move gracefully with super-human reflexes, dexterity and agility, almost as if they could predict the moves. The lightsaber could be also used to defend the user against lasers simply by deflecting them back randomly or deflecting it back at a target. Projectiles such as bullets would simply dissolve.

    With the Star Wars Universe having a various selection of human and alien races, different combat forms were invented to suit the user’s own needs. There were seven different forms:

    • Form I: Shii-Cho: The most simplistic form. Most Jedi think of Shii-Cho as a good form to fall back on when all other forms fail. Great practitioners include Kit Fisto.
    • Form II: Makashi: The form most adept for lightsaber to lightsaber combat. It is very elegant and precise; much like fencing and requires a fair amount of detailed footwork. Great practitioners include Shaak Ti and Count Dooku.
    • Form III: Soresu: The most defensive form. Soresu users will not attack until they are given a clear opening. Great practitioners include Obi-Wan Kenobi and Luminara Unduli.
    • Form IV: Ataru: A very offensive form. Ataru uses many wide sweeping strokes and force-enhanced acrobatics, making this form difficult to use in enclosed areas. Great practitioners include Qui-Gon Jinn and Master Yoda.
    • Form V: Shien / Djem So: The main philosophy of this form is \"peace through superior firepower\". It focuses mainly on using an opponents actions against them. Great practitioners include Anakin Skywalker and Plo Koon.
    • Form VI: Niman / Jar-Kai: This is the \"jack-of-all-trades\" of lightsaber forms. It gives the user a moderate degree of skill in all aspects of lightsaber combat. It also allows for dual lightsaber wielding in combat. Great practitioners include Cin Drallig and Asajj Ventress.
    • Form VII: Juyo / Vaapad: This is the most aggressive of all lightsaber forms. It requires knowledge of all other lightsaber forms to master. Jedi rarely use this form because it causes them to skirt close to the dark side. Great practitioners include Mace Windu and Darth Maul.

    Each form of combat could be used to suit each user’s own needs. For example, the lack of height in Yoda meant that he used Ataru form as it was aggressive and fast-paced combined with acrobatics. A lightsaber is also not needed with these forms of combat, as unarmed combat can be applied with these forms. Different terms and techniques could be applied in lightsaber combat such as Sokan, Tra-Kata and Dun Moch.

    Force of the Lightsaber

    The way the lightsaber worked was when the lightsaber made contact with anything it would expend its energy and heat. It can cut through anything, though the material of the object depended on how fast it could be sliced through. Simple things like cutting through human flesh were very easy. The person who had been stabbed or cut from the lightsaber didn’t bleed though, because of the heat emitted from the lightsaber. It was so hot, that once it cut through, any veins and arteries got closed off.

    However, something as thick as a blast door would take several seconds to get through. Rather than just slashing it, the user would stick the lightsaber through the door and the heat emitted would melt the door.

    However, technology that was created and discovered has been able to resist lightsaber from rare materials. The base of building a lightsaber resistant weapon was from a metal called cortosis. At first, cortosis armor was developed, where if the lightsaber made contact with the armor, the lightsaber would fuse out. The lightsaber could be reactivated though it gave the wearer of the cortosis armor an upper hand in lasting longer.

    However, the armor could still be damaged by the lightsaber. The next piece of technology was making a metal blade from the cortosis itself. This could handle the lightsaber without breaking, though it didn’t fuse the lightsaber as much. However, the most pure form of cortosis made into a blade could.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-17616/","id":17616,"name":"Star Wars","issue_number":"1"},"id":44097,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5904/213905-170784-lightsaber.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5904/213905-170784-lightsaber.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5904/213905-170784-lightsaber.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5904/213905-170784-lightsaber.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5904/213905-170784-lightsaber.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5904/213905-170784-lightsaber.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5904/213905-170784-lightsaber.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5904/213905-170784-lightsaber.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5904/213905-170784-lightsaber.jpg","image_tags":"All Images,Lightsaber Hilts"},"name":"Lightsaber","site_detail_url":"https://comicvine.gamespot.com/lightsaber/4055-44097/","start_year":"1977"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44137/","count_of_issue_appearances":3,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:36","deck":"The Mark of Mana is a necklace worn by Mana Yanowa. When her twin sister Hana became possessed by the demon Ryuki, Mana used the Mark of Mana to imprison Ryuki as well as her and her sister's soul.","description":"

    It has never been specified whether the necklace itself has mystic properties, or if the mystic use of the necklace by the necklace is a result of the power of its owner, Mana Yanowa. Because of her access to other powerful mystic items, however, it is quite possible that the necklace itself has some mystic properties.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109689/","id":109689,"name":"Chapter 1: The Mark of Mana","issue_number":"1"},"id":44137,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58897/1574351-untitled.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58897/1574351-untitled.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58897/1574351-untitled.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58897/1574351-untitled.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58897/1574351-untitled.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58897/1574351-untitled.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58897/1574351-untitled.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58897/1574351-untitled.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58897/1574351-untitled.jpg","image_tags":"All Images"},"name":"Mark of Mana","site_detail_url":"https://comicvine.gamespot.com/mark-of-mana/4055-44137/","start_year":"2005"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44138/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:48","deck":"An ancient Shosei sword which is believed to house the souls of the deceased Shosei priestesses.","description":"

    The Shosei are mystic guardians of Japan. Whenever one of their priestesses are killed while battling evil her blood is added to the case that houses the blade of blood. The sword sits in its case and the blade continually bathes in this pool of blood. The Shosei believe that because the blade soaks in the blood of the deceased priestesses that it also houses their souls. Anyone who commands the power of the blade commands the power of the souls housed in the blade. To wield the blade's power, you must be given control of the blade willingly by the head Sheosi priestess. The blade is currently in possession of Hana Yanowa, head of the Shosei order.

    ","first_appeared_in_issue":null,"id":44138,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/462/125700-100559-blade-of-blood.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/462/125700-100559-blade-of-blood.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/462/125700-100559-blade-of-blood.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/462/125700-100559-blade-of-blood.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/462/125700-100559-blade-of-blood.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/462/125700-100559-blade-of-blood.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/462/125700-100559-blade-of-blood.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/462/125700-100559-blade-of-blood.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/462/125700-100559-blade-of-blood.jpg","image_tags":"All Images,Blade of Blood"},"name":"Blade of Blood","site_detail_url":"https://comicvine.gamespot.com/blade-of-blood/4055-44138/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44216/","count_of_issue_appearances":3,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:50","deck":"Crenshinibon, also known as the Crystal Shard, is one of the most powerful items in existence on the Material Plane. Created long ago by a group of wizards, it is sought after by both man and demon.","description":"

    Creation

    The Crystal Shard had been created by seven undead wizards, who were being watched by Ertuu. The seven poured out all their evil into the artifact and made its energy source the light of the Sun, however they ended up placing more power into the artifact than they possessed and it consumed them. The aftershock of this explosion caused Ertuu to once again be banished to the abyss, leaving him to seek out the Shard. However, on the surface world, the Crystal Shard rested in the North Mountains. In the snows it waited, as millenia passed until one day, a power-hungry man should find it...

    The Crystal Shard

    After Akar Kessell, the young mage, is fooled into murdering his master he finds himself alone and yearning for power. And so, as he walks through the deep snows of the North Mountains, the Crystal Shard reveals itself to the man feeling his weakness. Akar realizes instantly that Crenshinibon can grant him his greatest desire, to be respected.

    So, Akar submitted to the Crystal Shard and from it came untold power, with three magical words, Ibssum Del Abdur, a giant fortress resembling the crystal emerges from the snows. Akar had finally found his home and the Shard had chosen its servant.

    Akar remained in the Crystal-Tirith for many years, learning the limits and learning to control the power of Creshinibon. Akar was then content, but the Shard demanded more, it demanded conquest and for that to be accomplished it demanded Akar amass an army.

    Akar did so, and he too reaped rewards from this, as he gained loads of treasure as well as a harem of women, all too willing to fulfill his desires thanks to the mesmerizing powers of the shard.

    Ertuu, the demon who wishes to possess the crystal storms into the Crystal-Tower but he soon realizes that it will not be possible for him to steal Crenshinibon with sheer force and so instead he becomes an ally of Akar, both of them willing to conquer the world for the Crystal.

    For some time, the shard begins to yearn for war and conquest, convincing Akar to gather an army with Ertuu at his back. The two fight over Akar's capabilities in using the Crystal when both know it has told him other individuals better suited to be generals in his army rather than the one he chose.

    But Akar shouts at Ertuu, \"Crenshinibon advises, but I decide!\" proving that Crenshinibon is not in complete control of his stubborn host.

    Yet after suffering some losses, Akar heeds the Shard and Ertuu's advice and so decides that he and his forces must strike immediately.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109851/","id":109851,"name":"Issue #1","issue_number":"1"},"id":44216,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/126605-126485-crenshinibon.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/126605-126485-crenshinibon.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/126605-126485-crenshinibon.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/126605-126485-crenshinibon.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/126605-126485-crenshinibon.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/126605-126485-crenshinibon.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/126605-126485-crenshinibon.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/126605-126485-crenshinibon.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/126605-126485-crenshinibon.jpg","image_tags":"All Images,gallery"},"name":"Crenshinibon","site_detail_url":"https://comicvine.gamespot.com/crenshinibon/4055-44216/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44218/","count_of_issue_appearances":2,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-08-15 10:07:00","deck":"Aegis-Fang is a mighty battlehammer forged by King Bruenor Battlehammer, and is considered his masterwork. Crafted for Wulfgar, the gods imbued it, making it unbreakable and able to return on command.","description":"

    The hammer's head was forged of the Mithral his father was destined to use but did not live to see his crafting day, while the handle was crafted with adamantite. Upon the hammer's head there are three dwarven symbols edged in diamond dust. On one side is a set of crossed axes, the symbol of Clanggedin the dwarven got of battle. On the other side is an anvil and hammer, the symbol of Mordin, the soulforger. Carefully detailed and layed upon both sides is also the symbol of Dumathion the keeper of secrets. Crafted for Wulfgar, this axe was forged by Bruenor Battlehammer in his personal forge under the shadow of Kelvin's Cairn in Icewind Dale. The hammer was crafted as Bruenor's destiny creation, a tradition held by all dwarves, where once in a lifetime they have the opportunity to build a legendary weapon, weather it be for themselves or not. The forging of this weapon was so legendary that Bruenor was observed to faint when the legendary words were spoken by him. This was overseen by Drizzt Do'Urden.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111533/","id":111533,"name":"Issue #2","issue_number":"2"},"id":44218,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/126608-126867-aegis-fang.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/126608-126867-aegis-fang.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/126608-126867-aegis-fang.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/126608-126867-aegis-fang.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/126608-126867-aegis-fang.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/126608-126867-aegis-fang.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/126608-126867-aegis-fang.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/126608-126867-aegis-fang.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/126608-126867-aegis-fang.jpg","image_tags":"All Images,gallery"},"name":"Aegis-Fang","site_detail_url":"https://comicvine.gamespot.com/aegis-fang/4055-44218/","start_year":"2006"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44224/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:48","deck":"The ruby pendant is a magical object in the possession of Regis, stolen from Pasha Pook. It has the ability to influence the person it is used on into doing things they otherwise might not do.","description":null,"first_appeared_in_issue":null,"id":44224,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1494/126616-27324-ruby-pendant.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1494/126616-27324-ruby-pendant.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1494/126616-27324-ruby-pendant.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1494/126616-27324-ruby-pendant.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1494/126616-27324-ruby-pendant.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1494/126616-27324-ruby-pendant.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1494/126616-27324-ruby-pendant.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1494/126616-27324-ruby-pendant.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1494/126616-27324-ruby-pendant.jpg","image_tags":"All Images,gallery"},"name":"Ruby Pendant","site_detail_url":"https://comicvine.gamespot.com/ruby-pendant/4055-44224/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44250/","count_of_issue_appearances":16,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-09-11 07:06:14","deck":"Books written by the precognitive mutant Destiny which contained her visions of the future.","description":"

    Irene Adler (the precognitive Mutant known as Destiny) collected images from her visions in the future into several volumes of books commonly referred to as \"Destiny's Diaries\" or \"Destiny's Books\". Rather than a detailed account of the future such as a novel, these books contained snapshots or glimpses of events that have not yet come to pass, and are often cryptic.

    These diaries are what originally brought Mystique and Destiny together as Destiny approached Mystique sometime around 1900 seeking her assistance in understanding the visions written down in the diaries. The two would go on to become teammates and lovers. They were also a partial focus of the 2001 series: X-Treme X-Men, as the team led by Storm originally came together to search for the lost volumes of Destiny's diaries.

    The diaries were eventually destroyed by Gambit, who burned them to ash before the X-Men or Marauders could read them.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-65793/","id":65793,"name":"Hidden Lives. Part 2 of 2: Pandora's Box","issue_number":"94"},"id":44250,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/5344/1942244-destiny_s_books_001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/5344/1942244-destiny_s_books_001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/5344/1942244-destiny_s_books_001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/5344/1942244-destiny_s_books_001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/5344/1942244-destiny_s_books_001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/5344/1942244-destiny_s_books_001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/5344/1942244-destiny_s_books_001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/5344/1942244-destiny_s_books_001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/5344/1942244-destiny_s_books_001.jpg","image_tags":"All Images"},"name":"Destiny's Diaries","site_detail_url":"https://comicvine.gamespot.com/destinys-diaries/4055-44250/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44251/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:48","deck":"The Turtle is Cobra's ship","description":null,"first_appeared_in_issue":null,"id":44251,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3916/127988-56641-turtle.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3916/127988-56641-turtle.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3916/127988-56641-turtle.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3916/127988-56641-turtle.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3916/127988-56641-turtle.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3916/127988-56641-turtle.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3916/127988-56641-turtle.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3916/127988-56641-turtle.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3916/127988-56641-turtle.JPG","image_tags":"All Images,the ship Turtle"},"name":"Turtle","site_detail_url":"https://comicvine.gamespot.com/turtle/4055-44251/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44263/","count_of_issue_appearances":34,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-07-05 20:36:29","deck":"The Sharingan is a bloodline trait that is present in the eyes of the Uchiha Clan of Konohagakure in the Naruto World.","description":"

    Introduction

    \"
    A normal Sharingan

    An Uchiha will first gain their Sharingan with usually one tomoe when their life is in danger and their Sharingan will continue to get more powerful as they gain more tomoes (maximum of 3 in each eye). More advanced Sharingan users are able to upgrade their Sharingan to Mangekyo Sharingans. The Mangekyo Sharingan is a more powerful version of the Sharingan and it grants its user unique and powerful abilities. The appearance of the Mangekyo Sharingan is also unique to each user, so it doesn't have a general appearance. The Sharingan cannot be taught or copied but it is possible to transfer the eye with Sharingan to another person although the person will be unable to deactivate his sharingan.

    Sharingan Abilities

    Copying Ability

    \"
    Uchiha Itachi's Sharingan

    The ability for which the Sharingan is famed. The eyes allow for anyone with them to duplicate almost any technique performed against them as long as they see the hand seals in motion with their Sharingan activated, however it cannot copy summonings or other bloodline techniques (which would require you to have been born with special characteristics). It however may not be able to copy elements that the user cannot use.

    But as the Sharingan allows the user to copy the opponent's handseals, it also allows the ability to copy other body movements as well, but this is a two-edged sword, for example: it allowed Sasuke to copy the martial arts of Lee, it did not however give his body the enhanced stamina so he tired quickly.

    Prediction Ability

    The Sharingan is much more sensitive to movement than a normal eye, giving the user the ability to detect even the slightest movement in view. This gives them the ability to clearly see things they normally wouldn't, and with good judgment, this allows the user to predict movement. This is a very deadly ability in hand to hand combat, though the Sharingan user must be able to physically keep up with the speed of their opponent for it to be effective.

    Genjutsu Ability

    The Sharingan is able to cast genjutsu through eye contact with an opponent, this genjutsu only requires skill, not handseals. It is an advanced ability that requires much practice to use effectively. A more adept Sharingan user is also able to instantly realize when they are placed in a genjutsu, although they are still effected by it.

    Chakra Sight

    The Sharingan is able to see Chakra which is naturally invisible to a normal eye. This is also related to the user's ability to predict movement as they can see the flow of Chakra through the opponent's body.

    Izanagi

    A secret forbidden technique amongst the Uchiha clan attained by gaining the power of a Senju, the user is able to in essence become a physical illusion for a short time, making them momentarily invincible.

    The down sides to using Izanagi is that it consumes a large amount of Chakra, and the eye used to cast Izanagi loses it's light and shuts never to be re-opened.

    \"
    Some Sharingan users

    Notable Users:

    Danzo Shimura

    Itachi Uchiha

    Kakashi Hatake

    Madara Uchiha

    Obito Uchiha

    Sasuke Uchiha

    Shisui Uchiha

    For discussion towards the evolved version: Mangekyou Sharingan, as well as Eternal Mangekyou Sharingan, please use this link: Mangekyo Sharingan

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-263658/","id":263658,"name":"Konoha Kuzushi, Shūketsu!!","issue_number":"16"},"id":44263,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4309/127858-60171-sharingan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4309/127858-60171-sharingan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4309/127858-60171-sharingan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4309/127858-60171-sharingan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4309/127858-60171-sharingan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4309/127858-60171-sharingan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4309/127858-60171-sharingan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4309/127858-60171-sharingan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4309/127858-60171-sharingan.jpg","image_tags":"All Images,Normal sharingan"},"name":"Sharingan","site_detail_url":"https://comicvine.gamespot.com/sharingan/4055-44263/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44267/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-12-03 16:48:36","deck":"The real treasure of Captain Nelson is this weapon able to adapt its shape and its powers to defeat its opponents.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-46057/","id":46057,"name":"\"Culling The Herd\"","issue_number":"3"},"id":44267,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3916/128004-48108-ultimate-weapon.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3916/128004-48108-ultimate-weapon.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3916/128004-48108-ultimate-weapon.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3916/128004-48108-ultimate-weapon.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3916/128004-48108-ultimate-weapon.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3916/128004-48108-ultimate-weapon.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3916/128004-48108-ultimate-weapon.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3916/128004-48108-ultimate-weapon.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3916/128004-48108-ultimate-weapon.JPG","image_tags":"All Images,Its transformations"},"name":"Ultimate Weapon","site_detail_url":"https://comicvine.gamespot.com/ultimate-weapon/4055-44267/","start_year":"1999"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44426/","count_of_issue_appearances":54,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-09-08 08:13:12","deck":"The M'Kraan Crystal is the nexus of all realities. It is a doorway to a universe of Neutron stars.","description":"

    Overview

    The crystal is in the hands of the Shi'ar.

    Events

    • Rachel Summers planned to destroy the universe by destroying the crystal, as a tactic to make the Beyonder lose interest in our reality (apparently a new reality would be created after the old universe was destroyed).
    • D'ken lost his mind after entering the crystal.
    • Xavier's powers were restored.

    Other Information

    The White Hot Room is said to be located inside the crystal. A shard of the crystal is said to be in the Tallus.

    In other Media

    The crystal was part of Marvel Ultimate Alliance 1. It was needed against Doom.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-17894/","id":17894,"name":"Where No X-Man Has Gone Before","issue_number":"107"},"id":44426,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/128685-175553-m-kraan-crystal.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/128685-175553-m-kraan-crystal.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/128685-175553-m-kraan-crystal.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/128685-175553-m-kraan-crystal.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/128685-175553-m-kraan-crystal.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/128685-175553-m-kraan-crystal.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/128685-175553-m-kraan-crystal.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/128685-175553-m-kraan-crystal.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/128685-175553-m-kraan-crystal.jpg","image_tags":"All Images,M-Kraan Crystal"},"name":"M'Kraan Crystal","site_detail_url":"https://comicvine.gamespot.com/mkraan-crystal/4055-44426/","start_year":"1977"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44521/","count_of_issue_appearances":16,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-06-28 22:30:57","deck":"The Byakugan is a blood-line trait belonging to the Hyūga clan inherited from Kaguya Ōtsutsuki through her son, Hamura. It grants the user near-360° vision, except for a small blind spot, and x-ray vision as well. It's said to be related to the Sharingan.","description":"

    Origin

    \"Kaguya's
    Kaguya's Byakugan

    The Byakugan is a dōjutsu of the Hyūga clan, inherited from Kaguya Ōtsutsuki through her son, Hamura Ōtsutsuki, who would go on to be the ancestor of the Hyūga clan.

    Other members of the Ōtsutsuki clan, like Kinshiki and Momoshiki, possess this eye.

    Powers and Abilities

    When the Byakugan is activated, the user's pupils become less distinct and the veins around their eyes bulge, indicating the blood pressure increases around the eyes. The user can then see in a near-360° area around their body, except for a 1% blind-spot located behind the neck along the spinal cord. The Byakugan eyes give their user a power similar to X-ray vision in a large radius. It allows them to see the chakra and the chakra flow in the bodies of others, and even enables them to see the chakra points with a high degree of training or natural talent. Its also gives them telescopic vision and even microscopic vision along with the gift of insight; however they cannot use the insight on themselves. Neji has been said to be have a visual range of 800 meters. Byakugan users also have the notable ability to project chakra from their body, being used to create punishing waves and protective shields.

    An experienced Byakugan user can use their gift to temporarily close off an opponent's various flows of chakra with carefully placed chakra blows, rendering the opponent unable to move the part of their body that was struck. Not only that, but if they seal up the right chakra points, they can kill even the strongest person with just a few blows, as bodies require the flow of chakra to live. This is known as the Gentle Fist technique, which was developed to take advantage of the Byakugan. This technique requires a high degree of chakra control, and the bloodline itself seems to lean to the control of chakra in the Hyūga clan, as they are able to see the flow and control it more easily.

    Notable Users

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-162962/","id":162962,"name":"The Man With the Truth","issue_number":"43"},"id":44521,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4309/130466-93237-byakugan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4309/130466-93237-byakugan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4309/130466-93237-byakugan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4309/130466-93237-byakugan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4309/130466-93237-byakugan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4309/130466-93237-byakugan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4309/130466-93237-byakugan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4309/130466-93237-byakugan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4309/130466-93237-byakugan.jpg","image_tags":"All Images,Byakugan"},"name":"Byakugan","site_detail_url":"https://comicvine.gamespot.com/byakugan/4055-44521/","start_year":"2009"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44543/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:50","deck":"The space ship Spike Spiegel uses when flying through space.","description":"

    History

    The swordfish was Spike Spiegel's main transportation throughout Cowboy Bebop. The vehicle had one long \"snout\" that fired out a electric based energy that could immobilize or destroy other vehicles. It also had small turrets that fired machine gun rounds. These were the most used throughout the series, since the weapon at the front of the ship took so long to fire and wasted alot of energy in the process.

    The vehicle only sat one person but since Spike helped people it would often sit more than one.

    ","first_appeared_in_issue":null,"id":44543,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1808/130521-59160-swordfish-ii.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1808/130521-59160-swordfish-ii.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1808/130521-59160-swordfish-ii.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1808/130521-59160-swordfish-ii.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1808/130521-59160-swordfish-ii.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1808/130521-59160-swordfish-ii.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1808/130521-59160-swordfish-ii.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1808/130521-59160-swordfish-ii.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1808/130521-59160-swordfish-ii.jpg","image_tags":"All Images,gallery"},"name":"Swordfish II","site_detail_url":"https://comicvine.gamespot.com/swordfish-ii/4055-44543/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44608/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:49","deck":"Reality altering artifact.","description":null,"first_appeared_in_issue":null,"id":44608,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1812/132936-31108-the-twisted-stone.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1812/132936-31108-the-twisted-stone.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1812/132936-31108-the-twisted-stone.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1812/132936-31108-the-twisted-stone.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1812/132936-31108-the-twisted-stone.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1812/132936-31108-the-twisted-stone.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1812/132936-31108-the-twisted-stone.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1812/132936-31108-the-twisted-stone.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1812/132936-31108-the-twisted-stone.jpg","image_tags":"All Images,gallery"},"name":"The Twisted Stone","site_detail_url":"https://comicvine.gamespot.com/the-twisted-stone/4055-44608/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44684/","count_of_issue_appearances":6,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-03-01 11:08:56","deck":"The Book of Cagliostro is an evil collection of information from various tomes including the Darkhold that was written by Cagliostro. The most commonly shown ability of the book was time travel.","description":"

    Many of the Marvel Universe's magic based characters have had an encounter with this book in one way or another, ranging from Baron Mordo, who learned its power to challenge the Ancient One, to Dr. Strange, who held it in his Sanctum Sanctorum for safeholding.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-47898/","id":47898,"name":"The Mind-Stunning Climax to The Faust Gambit!","issue_number":"8"},"id":44684,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4744/135320-4960-book-of-cagliostro.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4744/135320-4960-book-of-cagliostro.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4744/135320-4960-book-of-cagliostro.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4744/135320-4960-book-of-cagliostro.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4744/135320-4960-book-of-cagliostro.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4744/135320-4960-book-of-cagliostro.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4744/135320-4960-book-of-cagliostro.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4744/135320-4960-book-of-cagliostro.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4744/135320-4960-book-of-cagliostro.jpg","image_tags":"All Images,Book of Cagliostro"},"name":"Book of Cagliostro","site_detail_url":"https://comicvine.gamespot.com/book-of-cagliostro/4055-44684/","start_year":"1989"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44749/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2015-03-05 13:38:21","deck":"An extraordinarily large gun used by Hellboy in his fight for good. In the comics, the gun is nameless; it received its name only in the Hellboy film.","description":"

    Origin

    The gun was given to Hellboy at a young age by the Torch of Liberty, it was named after the samaritan in the biblical story \"The Good Samaritan\".

    Components

    The gun was built specially to fight evil and supernatural enemies. Its metal is formed from various church and biblical components including: silver church bells, nails from the crucifixion of Jesus, various blessed chalices, and many more forms of silver and copper (known elements for fighting evil). It's handle is actually carved from the cross Jesus was nailed to.

    The Gun

    The gun is large and unwieldy, it can only hold four rounds and Hellboy can only load and fire it with his normal left hand. It is highly resistant to attacks and shoots rounds with incredible force.

    The Bullets

    Hellboy has used various special bullets for different reasons. He's repeatedly used tracker bullets that produce a green florescent material (as seen in the film) and bullets with certain materials such as garlic, silver shavings, bones ect. in the tip that are known for their supernatural effectiveness.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-159962/","id":159962,"name":null,"issue_number":"1"},"id":44749,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4690/135566-27750-the-good-samaritan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4690/135566-27750-the-good-samaritan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4690/135566-27750-the-good-samaritan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4690/135566-27750-the-good-samaritan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4690/135566-27750-the-good-samaritan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4690/135566-27750-the-good-samaritan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4690/135566-27750-the-good-samaritan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4690/135566-27750-the-good-samaritan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4690/135566-27750-the-good-samaritan.jpg","image_tags":"All Images,Movie Version"},"name":"The Good Samaritan","site_detail_url":"https://comicvine.gamespot.com/the-good-samaritan/4055-44749/","start_year":"2008"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44750/","count_of_issue_appearances":155,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-03-01 10:51:10","deck":"Hellboy's large rock-like right arm that is supposedly the key to hell.","description":"

    The Purpose

    Hellboy was originally summoned by the Nazi's as a means to end WWII, his right arm would be the key to doing this. It is unknown how exactly it would accomplish that, but it is known that it can bring and control other greater demons, effectively bringing Armageddon.

    Abilities

    Hellboy has shown it to be capable for many things in the past. First and foremost is its durability, it is made of a rock-like substances which makes it very hard and impossible to injure. It's also shown mystic properties, such as hitting the hero Ghost (in the Hellboy/Ghost team-up). The full extent of its powers are yet to be realized, but it is implied that it has unharnessed levels of power, that are yet to be discovered.

    However, there are also drawbacks. Hellboy cannot load or fire his gun The Good Samaritan because in his right hand because his large rock like fingers don't have the dexterity to properly handle and operate a fiream. The oversized hand also forced Hellboy to become left-handed which has difficulties in itself.

    The arm's texture is similair in appearance to Ben Grimm's (The Thing) entire body, with a dark red hue.

    The power of the Hand can still be used if separated from Hellboy.

    Other Media

    In MAD Episode 22 of Season 2: Garfield of My Dreams/I Hate My Teenage Mutant Turtle, Hellboy does a skit where he advertises a product called the Left Hand of Doom. Which is similar to his Right Hand of Doom only for left handed people who can wear it like a glove. Hellboy states that the Left Hand of Doom can gurantee victories in arm wrestling, opening cans of tuna, make left hand turns, and cut paper(which doesn't do the job as implied).

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-171589/","id":171589,"name":null,"issue_number":"2"},"id":44750,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4690/135567-11489-the-right-hand-of-do.jpeg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4690/135567-11489-the-right-hand-of-do.jpeg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4690/135567-11489-the-right-hand-of-do.jpeg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4690/135567-11489-the-right-hand-of-do.jpeg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4690/135567-11489-the-right-hand-of-do.jpeg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4690/135567-11489-the-right-hand-of-do.jpeg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4690/135567-11489-the-right-hand-of-do.jpeg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4690/135567-11489-the-right-hand-of-do.jpeg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4690/135567-11489-the-right-hand-of-do.jpeg","image_tags":"All Images,Movie Version"},"name":"The Right Hand of Doom","site_detail_url":"https://comicvine.gamespot.com/the-right-hand-of-doom/4055-44750/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44790/","count_of_issue_appearances":40,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-08-01 06:32:46","deck":"The Beatrice Medallion was given to Belasco to enable the ascension of the Elder Gods. In Illyana Rasputin (Magik) he found the intended, pure, victim.","description":"

    The Beatrice Medallion was given to Belasco to enable the ascension of the Elder Gods. In Illyana he found the intended, pure, victim.

    Thus far 3 Bloodstones have been conjured and the current location of the medallion is not known. Probably it was left somewhere in Limbo so there's a good chance it is back in the hands of Belasco.

    However, during the recent New X-Men this was proven false. Belasco no longer had the Beatrice Medallion, having lost it at some point in the past. The Darkchilde however did possess an identical medallion to the one Belasco originally had and with it created a brand new Bloodstone out of Pixie's soul. She had intended to create 5 new Bloodstones but was stopped by Anole before she could do so.

    In X-Infernus #1, the original Beatrice Medallion was revealed to be in the possesion of Witchfire, Belasco's daughter. And wtih it are the three Bloodstone's made from Illyana's soul. Illyana / Darkchilde is currently searching for the original medallion in the hopes of restoring her soul.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-21933/","id":21933,"name":"Children of the Damned!","issue_number":"11"},"id":44790,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/14859/706006-x_infernus_03_pg_08.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/14859/706006-x_infernus_03_pg_08.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/14859/706006-x_infernus_03_pg_08.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/14859/706006-x_infernus_03_pg_08.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/14859/706006-x_infernus_03_pg_08.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/14859/706006-x_infernus_03_pg_08.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/14859/706006-x_infernus_03_pg_08.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/14859/706006-x_infernus_03_pg_08.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/14859/706006-x_infernus_03_pg_08.jpg","image_tags":"All Images,The Beatrice Medallion"},"name":"Beatrice Medallion","site_detail_url":"https://comicvine.gamespot.com/beatrice-medallion/4055-44790/","start_year":"1982"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-44829/","count_of_issue_appearances":69,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-10-25 17:55:47","deck":"Hercules possesses an indestructible Golden Mace forged of Adamantine by the Olympian armorer Hephaestus.","description":"

    Hercules' mace was forged by the Olympian God of Weaponmaking Hephaestus out of Adamantine, the legendary substance that adamantium was named after. Adamantine is even more indestructible than true adamantium (Hercules' mace has survived repeated blows by Thor's hammer Mjolnir, and sustained no damage). Backed by Hercules' almost limitless strength, the Golden Mace can obliterate virtually any substance and shatter almost any barrier that stands in Hercules' way. 

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-113849/","id":113849,"name":null,"issue_number":"1"},"id":44829,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/10812/1618799-marvel_replaces_hercules_20100211115856622_640w.jpg","image_tags":"All Images,Golden Mace"},"name":"Golden Mace","site_detail_url":"https://comicvine.gamespot.com/golden-mace/4055-44829/","start_year":"1965"},{"aliases":"Book of Sins\nMirror of Beauty","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45058/","count_of_issue_appearances":128,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-10-01 10:59:54","deck":"The Darkhold is an indestructible volume of parchments, including information about magic and spells, transcribed by The Elder God Chthon.","description":"

    Origin

    Eons ago Chthon transcribed all arcane knowledge into one book, The Darkhold. Knowing that he needed to leave the Earthly plane to flee the New Gods that were taking over, Chthon created the Darkhold to act as his touchstone to Earth. Chthon can control anyone who uses the spells of the Darkhold and given time he could use it to create a portal to Earth which would allow him to return from his current realm. The Darkhold is also known as the \"Book of Sins\" because it corrupts the soul of anyone who uses its knowledge.

    Creation

    The Darkhoold Book was created by Gerry Conway and Mike Ploog and was first mentioned in Marvel Spotlight issue 3 and seen one issue later in Marvel Spotlight issue 4 (1972).

    Major Story Arcs

    The Montesi Formula

    As a note, Doctor Strange used the Darkhold to destroy all vampires on Earth and created a spell by which they can never again exist on this plane. However, due to his vast power, Dr. Strange was able to use The Darkhold without forfeiting his own soul.

    At one point, a minion of Chthon known as the Dwarf, sent pages of the Darkhold to unsuspected victims, giving them demonic powers. Two members of The Midnight Sons accepted pages of the Darkhold. Morbius, who used a page of the Darkhold to bring his dead girlfriend Martine back to life, but accidently brought the Lilin Parasite as well, and Blade, who was empowered by the Demogorge page and turned into Switchblade, a being set out to destroy all supernatural life. Even Spider-Man was offered a page of the Darkhold, but he refused it. To make sure these pages wouldn't spread any further, the Darkhold Redeemers were formed. The team consited of archeologist of the occult Louise Hastings, Interpol agent Sam Buchanan, and Victoria Montesi who came from a long line of those who protect the world from evil. Alongside them was Louise's grandson Jinx, and Modred the Mystic.

    Doctor Doom and Scarlet Witch

    Later on, Doctor Doom opened up The Darkhold with the intention of using it. In doing so, he awakened Chthon who had previously been trapped in the Other-Realm. Scarlet Witch knew about this and confronted him, convincing him to work with her to stop Chthon. They then managed to help form the Darkhold Defenders team with the help of Victorious.

    Victims of the Darkhold

    Blade: Became Switchblade and started killing mystical beings all over. He later on read too much of The Darkhold and was possessed.

    Morbius: Resurected his old love Martine but accidently brought forth the Lilin Parasite.

    Louise Hastings: Used the book to eliminate Switchblade but lost her soul in the process.

    Victoria Montesti: Used the book to save her girlfriend Nash. She got healing power because of this.

    Iron Man: Read too much of The Darkhold and was possessed.

    Black Bolt: Read too much of The Darkhold and was possessed.

    Spider-Man: Read too much of The Darkhold and was possessed.

    Wasp: Read too much of The Darkhold and was possessed.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-12194/","id":12194,"name":"Werewolf by Night!","issue_number":"3"},"id":45058,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/117763/3324237-ohotmu%20marvel%20zombies%20%231%20-%20page%2012.jpg","image_tags":"All Images,Darkhold"},"name":"The Darkhold","site_detail_url":"https://comicvine.gamespot.com/the-darkhold/4055-45058/","start_year":"1972"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45135/","count_of_issue_appearances":12,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-10-16 19:25:25","deck":"Highly addictive psychedelic drug in the 2099 universe","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-107620/","id":107620,"name":"Spider-Man 2099","issue_number":"1"},"id":45135,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6206/142083-168497-rapture.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6206/142083-168497-rapture.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6206/142083-168497-rapture.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6206/142083-168497-rapture.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6206/142083-168497-rapture.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6206/142083-168497-rapture.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6206/142083-168497-rapture.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6206/142083-168497-rapture.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6206/142083-168497-rapture.jpg","image_tags":"All Images,Rapture"},"name":"Rapture","site_detail_url":"https://comicvine.gamespot.com/rapture/4055-45135/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45169/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:43","deck":"Wildstorm's \"Supernatural: Origins\"; magical object given to John Winchester in issue 1; tooth of a large hellhound.","description":"

    In \"Supernatural: Origins\" issue #1, John Winchester had left Dean Winchester and Sam Winchester in the care of Mary Winchester's best friend Julie while he went to seek advice from Missouri Mosley. Missouri conducts a ritual and sees that the boys are in danger. They flee to Julie's house where there they find her dead but luckily the boys are fine. Missouri pulls the fang of the creature from Julie's body. She gives it to John and states that it belongs to the thing that killed his wife.

    John takes the fang to a man posing as a friend of Missouri named Fletcher Gable. This imposter explains that \"shuck\" comes from the \"scucco,\" an Anglian legend several hundred years old. He says that the creature is basically an over-grown Hellhound.

    The Fang of the Black Shuck is slightly blue in color, possibly gray. It is carved with magical sigils and curved. Matching sigils are found on a mausoleum entrance.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111085/","id":111085,"name":"Chapter One","issue_number":"1"},"id":45169,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/934/144146-136946-black-shuck-fang.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/934/144146-136946-black-shuck-fang.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/934/144146-136946-black-shuck-fang.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/934/144146-136946-black-shuck-fang.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/934/144146-136946-black-shuck-fang.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/934/144146-136946-black-shuck-fang.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/934/144146-136946-black-shuck-fang.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/934/144146-136946-black-shuck-fang.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/934/144146-136946-black-shuck-fang.jpg","image_tags":"All Images,Object Gallery"},"name":"Black Shuck Fang","site_detail_url":"https://comicvine.gamespot.com/black-shuck-fang/4055-45169/","start_year":"2007"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45213/","count_of_issue_appearances":1,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:50","deck":"Hercules killed the Nemean Lion and fashioned its skin as armor.","description":"

    The Nemean Lion Skin acts as a virtually impenetrable armor and gives Hercules added protection against any form of attack. Hercules godly heritage gives him a natural resistance to most injuries and the addition of the Nemean Skin makes him almost impossible to injure. Because of his love of battle, sense of honor, and already extreme durability Hercules only wears the Nemean Lion skin in the most dire consequences.

    Origins in Greek Mythology

    The Nemean Lion Skin originates in Greek Mythology (as does Heracles) and it is in such myths that when Hera gave Heracles his \"Ten\" Labors to repent of his crimes, the first was to slay the Nemean Lion, a beast with an impenetrable hide. The actual mission Heracles was given was to bring back the skin, but when he tried to attack the beast with arrows, he found that it was indeed impenetrable and instead he was forced to strangle the beast to death with his mighty strength and bring it back to the King. So stunned, was the King that he gave the skin to Heracles whom had to remove it by using the beast's own claws.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-414307/","id":414307,"name":"The Blood of Nemea","issue_number":"1"},"id":45213,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1714/144055-27601-nemean-lion-skin.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1714/144055-27601-nemean-lion-skin.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1714/144055-27601-nemean-lion-skin.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1714/144055-27601-nemean-lion-skin.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1714/144055-27601-nemean-lion-skin.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1714/144055-27601-nemean-lion-skin.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1714/144055-27601-nemean-lion-skin.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1714/144055-27601-nemean-lion-skin.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1714/144055-27601-nemean-lion-skin.jpg","image_tags":"All Images,Nemean Lion Skin"},"name":"Nemean Lion Skin","site_detail_url":"https://comicvine.gamespot.com/nemean-lion-skin/4055-45213/","start_year":"2012"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45273/","count_of_issue_appearances":3,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-09-28 13:57:59","deck":"From \"Supernatural: Origins\" the comic series spin-off to the tv show; John Winchester's journal chronicling everything about his demon hunting days.","description":"

    During \"Supernatural: Origins\" issue #2, John Winchester is given a blank journal and is told to record everything in it including drawings, photos and anything else he finds on his quest while hunting the demon that killed his wife, Mary Winchester.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111439/","id":111439,"name":"Chapter Two","issue_number":"2"},"id":45273,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/934/150149-158672-winchester-journal.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/934/150149-158672-winchester-journal.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/934/150149-158672-winchester-journal.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/934/150149-158672-winchester-journal.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/934/150149-158672-winchester-journal.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/934/150149-158672-winchester-journal.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/934/150149-158672-winchester-journal.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/934/150149-158672-winchester-journal.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/934/150149-158672-winchester-journal.jpg","image_tags":"All Images,Pictures of the Journal"},"name":"John Winchester's Journal","site_detail_url":"https://comicvine.gamespot.com/john-winchester-s-journal/4055-45273/","start_year":"2007"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45399/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:49","deck":"Combat car designed to run via remote control by the terrorist The Eliminator/Ironside.","description":"

    The combat car first appears in Who Wants to be a Superhero? as a creation of Ironside. It works via remote control. It is bulletproof. It has at least one cable which can be released to wrap around objects such as trees. There are claw extensions for punching through walls and grabbing loot. At first the car is presented as a tool of the military but it is actually a tool for a terrorist to raid the city. The car can also be programmed to detonate explosives.

    In Issue #1 of the series, Feedback programs the car to explode inside The Eliminator's lair. There's no sense that the vehicle would be repairable after such an explosion.

    ","first_appeared_in_issue":null,"id":45399,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/934/150130-145277-eliminator-s-combat.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/934/150130-145277-eliminator-s-combat.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/934/150130-145277-eliminator-s-combat.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/934/150130-145277-eliminator-s-combat.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/934/150130-145277-eliminator-s-combat.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/934/150130-145277-eliminator-s-combat.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/934/150130-145277-eliminator-s-combat.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/934/150130-145277-eliminator-s-combat.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/934/150130-145277-eliminator-s-combat.jpg","image_tags":"All Images,Gallery"},"name":"Eliminator's Combat Vehicle","site_detail_url":"https://comicvine.gamespot.com/eliminators-combat-vehicle/4055-45399/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45419/","count_of_issue_appearances":102,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-05-15 13:05:40","deck":"The substance from which all Hellspawn are composed of. It was originally indistinct/synonymous with psychoplasm which is what makes up Hell.","description":"

    Overview

    All Hellspawn are entirely composed of the substance known as Necroplasm, it is one way that the otherworldly material of Hell may manifest itself within the real world of Earth. Spawn or Al Simmons, wears a suit that is itself necroplasm-based and interacts with his fully necroplasmic body, which lives of him for substance. Mainly it feeds of the raw power of Spawn and his Necroplasm. It alters his physical appearance and allows him to use his body as a living weapon.

    The suit is a \"living\" symbiotic organism powered by Necroplam which provides Hellspawn with various powers and great protection. Hellspawn can also shoot beams of green Necroplasmic energy from their body. Additionally, both their blood and eyes glow with the same green light, and also many of their magics and powers, suggesting that raw Necroplasm glows green.

    Hellspawn are all created with a limited amount of energy contained within their Necroplasm, each of them have 9,999 units of power to begin with. However, once this energy is consumed, their time on Earth ends and the Hellspawn return to Hell.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-35666/","id":35666,"name":"Questions Pt.1","issue_number":"1"},"id":45419,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4875/171811-94558-necroplasm.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4875/171811-94558-necroplasm.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4875/171811-94558-necroplasm.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4875/171811-94558-necroplasm.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4875/171811-94558-necroplasm.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4875/171811-94558-necroplasm.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4875/171811-94558-necroplasm.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4875/171811-94558-necroplasm.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4875/171811-94558-necroplasm.jpg","image_tags":"All Images,Necroplasm"},"name":"Necroplasm","site_detail_url":"https://comicvine.gamespot.com/necroplasm/4055-45419/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45529/","count_of_issue_appearances":54,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-12-13 00:37:13","deck":"The Sword of Omens is the one thing that holds all the Thundercats powers.","description":"

    Overview

    \"Sword
    Sword of Omens

    The Sword of Omens is the legendary sword wielded by the leader of the Thundercats. The sword is believed to be the source of the Thundercats power. In the center of the hilt lies the Eye of Thudera, a mystical jewel that is sought after by many such as the mutants of Plundarr and Mumm-Ra. The Eye is red with a black slit down the middle (like a cat’s eye) The Sword of Omens was passed to Lion-O by his father (safeguarded by Jaga until Lion-O was of age).

    The sword has many great abilities:

    • The sword of omen changes sizes starting as a compact blade but extends out to several feet.
    • It can protect the wielder with a force field.
    • The sword never dulls and has been known to cut through the strongest of stones.
    • In times of need the Eye will imbue the sword with great amounts of energy to create a devastating blow when it hits its mark.
    • It also will warn the wielder when danger approaches.
    • When need be it can be used to see far off places or find danger, giving its wielded “sight beyond sight.”
    • Also when the wielder says “Thunder, Thunder, Thunder, Thundercats HO!” The eye sends forth a large red catsignal to summon other Thundercats to aide Lion-o.

    The sword also has its drawbacks, one of which is it is only useful against evil, and can not be used for hunting or just for pointless killing. If it is used to attack another member of the Thundercats the blade will break, initiating what is known as the curse of Balthas, releasing all its energy. The only way to regain the power is to reforge it in star fire.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-57399/","id":57399,"name":"Survival Run","issue_number":"1"},"id":45529,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6220/150946-184707-sword-of-omens.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6220/150946-184707-sword-of-omens.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6220/150946-184707-sword-of-omens.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6220/150946-184707-sword-of-omens.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6220/150946-184707-sword-of-omens.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6220/150946-184707-sword-of-omens.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6220/150946-184707-sword-of-omens.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6220/150946-184707-sword-of-omens.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6220/150946-184707-sword-of-omens.jpg","image_tags":"All Images,Sword of Omens"},"name":"Sword of Omens","site_detail_url":"https://comicvine.gamespot.com/sword-of-omens/4055-45529/","start_year":"1985"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45902/","count_of_issue_appearances":3,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:37","deck":"Stick it in your ear and you can instantly understand anything said to you in any language.","description":"

    Invented as a plot device in the Hitchhikers Guide to the Galaxy by Douglas Adams it instantly solved the problem of the human character not reasonably being able to understand alien languages for the duration of his adventures. Adams described as: 

    A small, yellow, leech-like fish that converts the unconscious frequencies of the brain into audio waves. When it is stuck inside someone's ear, it allows the wearer to understand anything said to them in any language.

    It is also expanded upon as the final clinching proof of the non-existence of god by dint of its unreasonably  fabulous usefulness and the unlikelihood that such a live thing could exist by accident.

    It is something of a jibe at the creationism method of reasoning that says anything of sufficient complexity can only be the product of a divine creator. 

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-111646/","id":111646,"name":"Book 1 of 3","issue_number":"1"},"id":45902,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/7409/1376322-babel_fish_diagram.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/7409/1376322-babel_fish_diagram.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/7409/1376322-babel_fish_diagram.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/7409/1376322-babel_fish_diagram.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/7409/1376322-babel_fish_diagram.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/7409/1376322-babel_fish_diagram.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/7409/1376322-babel_fish_diagram.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/7409/1376322-babel_fish_diagram.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/7409/1376322-babel_fish_diagram.jpg","image_tags":"All Images"},"name":"Babel Fish","site_detail_url":"https://comicvine.gamespot.com/babel-fish/4055-45902/","start_year":"1993"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45949/","count_of_issue_appearances":107,"date_added":"2008-06-06 11:27:50","date_last_updated":"2015-01-13 13:54:26","deck":"Universal Weapons are weapons that are given to the public accusers of the Kree race. They are most closely associated with Ronan the Accuser.","description":"

    The Universal Weapon was first introduced in the Fantastic Four comic, used by Ronan. Ronan also wields the most powerful of the Universal Weapons.

    Failsafe

    All Universal Weapons have a failsafe. A Universal Weapon can only be used by a Kree public accuser that is clad in his cybernetic armor, all unauthorized users will be shocked.

    Abilities

    This weapon allows the person wielding it to fire blasts of energy, create fields of energy, and grants flight. This weapon also allows public accusers to harness cosmic energy for a host of different effects such as matter absorption and manipulation, energy absorption and manipulation.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-9554/","id":9554,"name":"From the Deadly Lips of Ronan: \"I Accuse!\"","issue_number":"65"},"id":45949,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/4044902-ru35692lg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/4044902-ru35692lg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/4044902-ru35692lg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/4044902-ru35692lg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/4044902-ru35692lg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/4044902-ru35692lg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/4044902-ru35692lg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/4044902-ru35692lg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/4044902-ru35692lg.jpg","image_tags":"All Images"},"name":"Universal Weapon","site_detail_url":"https://comicvine.gamespot.com/universal-weapon/4055-45949/","start_year":"1967"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45972/","count_of_issue_appearances":13,"date_added":"2008-06-06 11:27:50","date_last_updated":"2011-05-05 17:06:38","deck":"It is a sword. It means Shark Skin. Only one person can use it, [[Kisame:char:44996]].","description":"

    The Samehada is a unique sword. It is covered in bandages. Samehada is only reliable to one person. That person is Kisame. If somebody else holds it, it will release sharp shark skin type material onto any place and stab them on their hand. There is also another effect. This effect is that it does not cut. It shaves your chakra. Also, it can absorb it at the same time. Also, it can actually move around and return back to Kisame. It was once taken out of Kisame hands. When this happened, it came back to Kisame. Sometimes, it moves around when it shaves your chakra. This sword is a great weapon to have in your artillery.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-263658/","id":263658,"name":"Konoha Kuzushi, Shūketsu!!","issue_number":"16"},"id":45972,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/1869/155478-32456-samehada.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/1869/155478-32456-samehada.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/1869/155478-32456-samehada.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/1869/155478-32456-samehada.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/1869/155478-32456-samehada.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/1869/155478-32456-samehada.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/1869/155478-32456-samehada.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/1869/155478-32456-samehada.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/1869/155478-32456-samehada.jpg","image_tags":"All Images,Shark Skin AKA Samehada"},"name":"Samehada","site_detail_url":"https://comicvine.gamespot.com/samehada/4055-45972/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45977/","count_of_issue_appearances":14,"date_added":"2008-06-06 11:27:50","date_last_updated":"2018-02-28 23:09:48","deck":"In the Star Wars Universe a Bowcaster is a crossbow like weapon which is the weapon of choice for Wookies.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-42724/","id":42724,"name":null,"issue_number":"2"},"id":45977,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/7409/1376372-weapons_locker_chewies_bowcaster_20080930040705758_000.jpg","image_tags":"All Images"},"name":"Bowcaster","site_detail_url":"https://comicvine.gamespot.com/bowcaster/4055-45977/","start_year":"1996"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-45987/","count_of_issue_appearances":71,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-01-19 22:47:30","deck":"A scouter is a power reading device from the manga/anime Dragonball Z. It is used to read power levels of people, find power sources, locations and objects.","description":"

    The Scouter is a device used by the Planet Trade Organization and the Saiyans to determine power levels of opponents and seek out the strongest on worlds they wish to conquer. The display gives precise power levels and warns of raising power levels, and can also be used to locate energy signatures across a planet.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-530851/","id":530851,"name":"No. 45, 1988","issue_number":"1032"},"id":45987,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/6/67602/2157559-scouter.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/6/67602/2157559-scouter.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/6/67602/2157559-scouter.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/6/67602/2157559-scouter.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/6/67602/2157559-scouter.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/6/67602/2157559-scouter.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/6/67602/2157559-scouter.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/6/67602/2157559-scouter.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/6/67602/2157559-scouter.png","image_tags":"All Images"},"name":"Scouter","site_detail_url":"https://comicvine.gamespot.com/scouter/4055-45987/","start_year":"1988"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46008/","count_of_issue_appearances":0,"date_added":"2008-06-06 11:27:50","date_last_updated":"2012-05-22 18:48:00","deck":"Forged by the god Hephaestus under a commission from Ares, the Annihilator was a massive, indestructible, golem-like construct empowered by the feelings of aggression and hatred.","description":"

    Ares used the Annihilator to help the military forces of East Kasnia defeat those of their enemies, the West Kasnians. It was incapacitated by Hawk and Dove (with the aid of Wonder Woman) who were able to convince the two sides to stop fighting, robbing it of it's source of power. The intert construct was stored in a secure facility onboard the second Justice League Watchtower.

    Project Cadmus wanted to use the Annihilator as a weapon against metahumans. They recruited \"Task Force X\", a group of supercriminals to retrieve it. Under the command of Colonel Flagg, Deadshot, Plastique, the Clock King, and Captain Boomerang infiltrated the Watchtower and stole the construct.

    At Cadmus headquarters, Tala made numerous failed attempts to remove the Annihilator's \"Achilles' heel\". Seeing no other option, she consulted with the spirit of Felix Faust, who at that time was trapped in a mirror. Felix tricked Tala into releasing him from the mirror, imprisoning Tala in it herself.

    Faust proceeded to possess the construct, intending to use it to gain revenge upon the god Hades for betraying him. Annihilator-Faust easily defeated the Amazons guarding the gate to Tartarus and captured Hades, chaining him to a stone in a swamp where he was continuously fed upon by vultures.

    Learning of this, Zeus decreed that Wonder Woman was to restore Hades to the throne of Tartarus. She recruited the assistance of Hawkgirl and freed Hades from his torment. The three then defeated Annihilator-Faust, destroying the construct in the process.

    It should be noted that the Annihilator construct bore a striking resemblance to the Entropy Aegis, a suit of armor forged from the shell of a defeated Imperix drone by Darkseid and worn by John Henry Irons (alias, Steel) during the Imperix War in DC Comics main continuity.

    ","first_appeared_in_issue":null,"id":46008,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/6588/156627-16697-the-annihilator.JPG","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/6588/156627-16697-the-annihilator.JPG","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/6588/156627-16697-the-annihilator.JPG","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/6588/156627-16697-the-annihilator.JPG","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/6588/156627-16697-the-annihilator.JPG","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/6588/156627-16697-the-annihilator.JPG","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/6588/156627-16697-the-annihilator.JPG","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/6588/156627-16697-the-annihilator.JPG","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/6588/156627-16697-the-annihilator.JPG","image_tags":"All Images,The Annihilator"},"name":"The Annihilator","site_detail_url":"https://comicvine.gamespot.com/the-annihilator/4055-46008/","start_year":null},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46214/","count_of_issue_appearances":29,"date_added":"2008-06-06 11:27:50","date_last_updated":"2022-01-01 12:09:03","deck":"A Keyblade is a weapon made during the Keyblade War as a replica of the X-Blade. The capabilities of the Keyblade make it such an incredible power that The Heartless fear it.","description":"

    The Keyblade is often referred to as The Key, because it has the power to unlock and lock all locks and dimensions and other worlds. Its appearance resembles a key in all its forms.

    The appearance of the Keyblade changes whenever the chain, that's located at the bottom of the handle, changes.

    Note: This page should contain content from the COMICS, not aspects from the video game!

    Origins

    Obtaining the Keyblade

    They that a keyblade chooses its master. Some keyblades can only be wielded by someone with a strong heart.

    As of the BBS Ultimatum, it is shown a keyblade may be obtained by having a strong heart and:

    A keyblade inheritance ceremony must take place. The ceremony happens by a keyblade master choosing a successor or follow-up. All the master musy do is allow the candidate to hold the keyblade. If it approves, it will stay within their grasp. It can also be obtained by accident should someone with a strong heart touch the keyblade. The former occurred between Terra and young

    Riku

    , while the latter occurred between Aqua and a younger

    Kairi

    .

    List of Known Keyblades

    Listed in alphabetical order after Kingdom Key, Riku's Key, Kairi's Key, and Mickey's Key.

    • Abaddon Plasma
    • Abyssal Tide
    • All for One
    • Astral Blast
    • Aublade
    • Bond of Flame
    • Brightcrest
    • Chaos Ripper
    • Circle of Life
    • Counterpoint
    • Crabclaw
    • Crown of Guilt
    • Darker than Dark
    • Darkgnaw
    • Decisive Pumpkin
    • Destiny's Embrace
    • Diamond Dust
    • Divewing
    • Divine Rose
    • Dual Disc
    • Earthshaker
    • End of Pain
    • End's of the Earth
    • Fairy Harp
    • Fairy Stars
    • Fatal Crest
    • Fenrir
    • Ferris Gear
    • Follow the Wind
    • Foreteller Aced's Keyblade
    • Foreteller Ava's Keyblade
    • Foreteller Gula's Keyblade
    • Foreteller Invi's Keyblade
    • Foreteller Ira's Keyblade
    • Frolic Flame
    • Glimpse of Darkness
    • Guardian Bell
    • Guardian Soul
    • Gull Wing
    • Hero's Crest
    • Hidden Dragon
    • Hyperdrive
    • Jungle King
    • Keyblade of Heart
    • Kingdom Key
    • Kingdom Key D
    • Knockout Punch
    • Lady Luck
    • Lea's Keyblade
    • Leviathan
    • Light Seeker
    • Lionheart
    • Lost Memory
    • Lunar Eclipse
    • Mark of a Hero
    • Master's Defender
    • Maverick Flare
    • Metal Chocobo
    • Midnight Roar
    • Missing Ache
    • Monochrome
    • Moogle O' Glory
    • Mysterious Abyss
    • No Name
    • Oathkeeper
    • Oblivion
    • Ocean Rage
    • Olympia
    • Omega Weapon
    • Ominous Blight
    • One-Winged Angel
    • Pain of Solitude
    • Photon Debugger
    • Pixie Petal
    • Pumkinhead
    • Rainfell
    • Rejection of Fate
    • Royal Radiance
    • Rumbling Rose
    • Sign of Innocence
    • Silent Durge
    • Skull Noise
    • Sleeping Lion
    • Soul Eater
    • Spellbinder
    • Star Seeker
    • Starlight
    • Stormfall
    • Stroke of Midnight
    • Sweet Dreams
    • Sweet Memories
    • Sweetstack
    • Three Wishes
    • Total Eclipse
    • Treasure Trove
    • True Light's Flight
    • Twilight Blaze
    • Two Become One
    • Ultima Weapon
    • Unbound
    • Victory Line
    • Void Gear
    • Way to Dawn
    • Wayward Wind
    • Winner's Proof
    • Wishing Lamp
    • Wishing Star
    • χ-Blade
    • χ-Blade (Incomplete)
    • Young Xehanort's Keyblade
    • Zero/One
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-240430/","id":240430,"name":null,"issue_number":"1"},"id":46214,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/111746/8312651-kingdom_key.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/111746/8312651-kingdom_key.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/111746/8312651-kingdom_key.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/111746/8312651-kingdom_key.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/111746/8312651-kingdom_key.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/111746/8312651-kingdom_key.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/111746/8312651-kingdom_key.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/111746/8312651-kingdom_key.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/111746/8312651-kingdom_key.jpg","image_tags":"All Images"},"name":"Keyblade","site_detail_url":"https://comicvine.gamespot.com/keyblade/4055-46214/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46297/","count_of_issue_appearances":1246,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-01-08 16:11:58","deck":"A bat-shaped shuriken or a boomerang, primarily used by Batman and his allies.","description":"

    The first batarang appeared in Detective Comics #31. They were made of metal and had scallops on them. They were usually thrown to hit a target and return to Batman. Depending on the artist, the batarangs at times could be folded to fit into Batman's utility belt.

    The size has also varied from smaller palm-sized ones to larger ones. Batarangs have also been shown tied to the end of a rope to grasp onto an object or to tie around and anchor to an object, like a rooftop gargoyle. There is also a batarang budget which Robin once mentioned as \"bigger than you might think\" since Batman at times leaves the batarangs at the crime scene. The budget was so big that Robin was able to transport a Batmobile to San Fransisco without Batman knowing by hiding it in the budget.

    Types of Batarangs

    • Electric: This type of batarang releases a powerful electric charge and was commonly seen in the DCAU, when Batman joined the Justice League. Robin also uses them frequently in the Teen Titans animated series.
    • Explosive: This type of batarang is seen in the Batmobile and Batman himself carries some when fighting bigger opponents in the Justice League, however they are rarely effective against the likes of The General and the Greek God, Hades.
    • Razor Sharp: These are small palm-sized batarangs and are razor sharp. Batman has commonly used these batarangs as shurikens. He sometimes shoots them at his enemies' arms and feet, where they only go a few inches deep. During Hush, Batman stabbed Clayface, who was pretending to be Jason Todd, in the leg. Also during the Knightfall storyline, Azrael upgraded Batman's costume when he was substituting for him. The new bat-suit had high tech armor and gauntlets that could shoot batarangs or bat-blades. These bat-blades can go for a long distance and go in very deep. One even sliced through a Trigger Twin's palm when they were robbing a train.
    • Flash Freeze: Although rarely used in a batarang, Batman keeps freeze pellets in case of a fire. In Teen Titans animated series, Robin used a similar one against Slade, Batman himself once used them.
    • Bat-Rope: Batman has used batarangs with ropes which are used to scale tall buildings or tangle foes.
    • Remote-Controlled: In the film Batman Returns, Batman also uses a batarang with remote control.

    Many bizarre Batarangs where also used in the 1960's including Magnet, Flash Bulb and even Police Whistle Batarangs.

    Others who use Batarangs

    • Nightwing: He calls his modified razor edged batarangs \"Wing Dings\" and keeps them in special compartments located in his gauntlets.
    • Robin: Most robins use regular batarangs, 'R' shaped shuriken, and \"Birdarangs\" as defensive rather than offensive weapons. However, the Robin, Damian Wayne wielded a variation of these with larger blades he used mainly for offense.
    • Batgirl: All incarnations of Batgirl have used batarangs. Oracle also keeps one for herself.
    • Batwoman: She received her first \"official\" batarang from Nightwing as a Christmas gift.
    • Batwing: He was given his own after joining Batman Incorporated.
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-112063/","id":112063,"name":"Batman Versus The Vampire: Part One","issue_number":"31"},"id":46297,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3133/166488-167312-batarang.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3133/166488-167312-batarang.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3133/166488-167312-batarang.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3133/166488-167312-batarang.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3133/166488-167312-batarang.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3133/166488-167312-batarang.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3133/166488-167312-batarang.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3133/166488-167312-batarang.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3133/166488-167312-batarang.jpg","image_tags":"All Images,Heroes with Batarangs"},"name":"Batarang","site_detail_url":"https://comicvine.gamespot.com/batarang/4055-46297/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46369/","count_of_issue_appearances":2683,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-09-26 15:29:11","deck":"The Utility Belt is easily the world's most famous gadget carrier belt available (in comics of course).","description":"

    Overview

    \"The
    The Yellow Belt

    The exact contents of Batman's utility belt are unknown, and he seems to change them frequently, based on the case he is working on. In fact, his uncanny ability to have exactly what he needs is legendary (if not a bit laughable. Such as in the 1960 Batman TV show they had the Bat Shield and Boring Pills.).

    The pockets on the belt are locked, and only Batman knows how to open them (an unfortunate trick for Batman's enemies, who believe that the belt gives Batman the edge). Similar belts are worn by Robin and Batgirl.

    History

    The belt was drawn as a yellow belt with cylinders up until the turn of the millennium. However, In '86 Frank Miller drew the belt with military style pouches, but this change would not come canon to mainstream continuity until No Man's Land. Prior to this belts with pouches were only shown in flashbacks to Batman's post-crisis early years starting the early 90s. A common joke amongst fans is Batman's apparent ability to carry around random objects with the word \"bat\" affixed to the front exemplified in the 60's TV Movie's \"bat-shark repellent\".

    Description

    The belt is relatively simple: a Kevlar strap with a metal buckle. The belt houses ten cylinders which vertically clip to the outside of the belt. There are pockets between the cylinders, as well as hidden pockets on the inside of the belt used for housing one of various Batarangs. The cylinders house different tools for crime fighting.

    Contents

    Batman’s utility belt is one of his most characteristic items of special paraphernalia, and everyone in the \"Batman Family\" has the same designs on their utility belts Batman had designed the pockets to be locked, and only he knows how to open them. His belt has a security device on it where it can electrically shock someone or detonate an explosive device to prevent anyone from tampering with it. It is made of a leather strap with a solid steel buckle. There are also compartments that hold collapsible \"Batarangs.\" It can hold ten cylinder cartridges that are equipped vertically outside of the belt. The cylinders hold various tools and equipment Batman needs to fight crime and vary depending on his mission. The list of items is extensive and has been changed and upgraded on many occasions. Many different belts have been created for different occasions, but all (at times) act in the same way that the original belt operates. Some of the more common gadgets include the following:

    • Batarangs: Shuriken or boomerang based throwing blades made to resemble the symbol of a bat. Some Alternate versions of his Batarangs explode, emit electrical blasts, and sometimes come with detonators.
    • Grappling Hook: Also known as the Bat-Claw. Batman can use this to grapple onto high locations or can grab hold of a criminal by directing it at him, he sometimes uses it to catch run-away street thugs that cannot put up a fight against him.
    • Gas Mask: This is used to protect Batman from dangerous fumes and other airborne chemicals. This fits over the bottom half of the mask.
    • Re-breather: allows Batman to breathe underwater or in a vacuum
    • Night Vision Goggles: This allows for Batman to see in dark or dim-lit areas. It also grants him the ability to view the infrared spectrum. Now built into his mask
    • Sonar: Used in his mask to locate criminals.
    • Tracers: Bat-shaped signal tracers that can adhere to most if not all surfaces.
    • Communicators: Batman communicates with different members of his team and also with other superhero allies using closed-circuited signals.
    • Lock Picks: Batman uses these to open locked doors.
    • Cuffs: Special cuffs that only few enemies and heroes can break out of. Batman can quickly lock a enemy to a pole or deliver him to the police.
    • Bolas: Batman swings these Bat-Bolas over his head to wrap up an enemy.
    • Smoke Grenades and Pellets: Batman can throw these grenades in order to use a stealth technique, distract an enemy, escape a situation, or plan his next course of action.
    • Sonic Grenades: These disrupt electronics and disorient enemy hearing.
    • Flash Grenades: This gadget is used to temporarily blind enemies.
    • Mini-Mines: Mines that can fit in any small area or used as low-grade explosives during combat.
    • Thermite Explosives: Capable of burning through most materials.
    • Plastique: Small exploding devices that have a timer or detonator switch to activate.
    • Tasers: Batman carries this to shock or neutralize an enemy. This Weapon was more than often used in the Golden Age / Movies.
    • Brass Knuckles: Used to engage an enemy with more force behind his blows.
    • Tactical Knife: Batman does not use this in combat, but he has used this to cut through many durable materials.
    • Mini-Computer: Batman carries two of these. One is located in his utility belt and another is located in his left arm. It appears as a virtual computer that he can contact other heroes or find out strategic areas in certain places.
    • First Aid Kit: Used to aid in treating wounds. Alfred normally uses this to tend to His Master's wounds.
    • Forensics Kit: Batman keeps two of these, one in his utility belt and the other in his vehicles.
    • Kryptonite Ring: Inside a lead-lined box is a ring with a green kryptonite jewel to battle Superman if he ever went rogue.

    In Other Media

    Television

    \"No

    The utility belt is famously featured in the comedic, Dozier Batman show. Due to the tongue-in-cheek nature of the show, the gadgets contained in the belt were often ridiculous, such as a can of shark repellent spray. Sponges were very often used for the flat as paper \"pouches.\" This was very different from the belt in the comics which had only tiny capsules. Frank Miller would later use the idea of pouches and present it in a more practical, grounded in reality way.

    Michael Keaton movies

    \"No

    The brass utility belt is featured prominently in both Batman & Batman Returns, starring Michael Keaton as Bruce Wayne. It is very accurate to the comics of the time, but the old fashioned \"pirate buckle\" is upgraded with a retro-futuristic design. It carries up to six gadgets on the back, which can be brought forward from the rear by a high-tech slider device. Four capsules containing chemical weapons are housed on the sides, including blue napalm, red explosive, green knock-out gas and a white smoke bomb. These color coded chemicals can be mixed to create a greater combination of effects.

    The Dark Knight Trilogy

    \"No

    A modified version of the utility belt is featured in Batman Begins, The Dark Knight, and The Dark Knight Rises. They went with a copper color rather than chrome yellow or brass. In the films, it is developed by Wayne Enterprises as part of a suit of prototype military armor. The belt features magnetic, impact-resistant compartment boxes, and stores a number of items ranging from a grappling hook and Batarangs, to medical supplies and an encrypted cellphone.

    Merchandise

    \"A
    A vintage utility belt toy

    Utility belt props have been released by a variety of manufacturers ever since the 1960's.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-105764/","id":105764,"name":"The Case of the Chemical Syndicate","issue_number":"27"},"id":46369,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/118292-44795-batman.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/118292-44795-batman.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/118292-44795-batman.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/118292-44795-batman.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/118292-44795-batman.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/118292-44795-batman.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/118292-44795-batman.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/118292-44795-batman.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/118292-44795-batman.jpg","image_tags":"All Images,Comic"},"name":"Utility Belt","site_detail_url":"https://comicvine.gamespot.com/utility-belt/4055-46369/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46372/","count_of_issue_appearances":82,"date_added":"2008-06-06 11:27:50","date_last_updated":"2013-08-24 03:34:12","deck":"The Slave-I, a Kuat Firespray-31-class patrol and attack craft which was originally used as a galactic police vehicle from the asteroid prison Oovo IV, which was stolen and modified with advanced weapon systems by Jango Fett. It was used by both Jango and later his son Boba.","description":"

    Acquisition of the Slave-I

    Jango Fett arrived on Oovo IV to capture Bendix Fust for the crime lord Sebolto. However, Fett was beaten to finding Fust by another bounty hunter by the name of Zam Wesell. Eventually, a prison riot uproared, and after fighting his way through armed guards and prisoners, Jango made it back to his original ship, Jaster's Legacy. After helping Zam Wesell defeat a horde of guards, a Firespray-class starship fired upon the Jaster's Legacy and ended up destroying it.

    Jango then made his way into the asteroid prison's hangar bays and stole a Firespray-class vessel along with Wesell. During their escape, Jango launched several missiles into the hangar bay housing the other Firespray vessels, to avoid any chance of being pursued. His ship then became the only one of its kind left in existence. Jango also then re-named the ship Slave I.

    Features of the Slave-I

    Like all Firesprays, the Slave I sits flat on its bottom surface when idle, however during flight the ship rotates itself 90 degrees to maneuver vertically. Boba later added a unique stabilization system which always kept the cockpit oriented up.

    Under the ownership of Jango Fett

    Weaponry included:

    • Two heavy twin blaster cannons
    • Two rapid firing laser cannons
    • Two projectile launchers, rounding out the ship's armament each holding a magazine of three homing missiles or various other payloads
    • Naval minelayer equipped with seismic charges
    • Dummy proton torpedoes mounted with homing beacons and S-thread trackers. (By tagging a ship with one of these beacons, Fett could then utilize his contraband HoloNet transceiver to track ships through hyperspace. Most of these weapons were hidden beneath the hull; the armor plating would slide away during the ship's attacks.)
    • The ship was also outfitted with a sensor array that could detect minute changes in the ship's mass, which could be used to find homing beacons.

    Jango also added spartan crew quarters since the original Firespray was suited for short-term patrols. As well as this, Jango devoted two-thirds of the entire ship's interior to the powerful upgraded Kuat drive engines and power generators, giving Slave I the sublight speed of an Alliance BTL Y-wing starfighter — a remarkable feat for a ship of the Slave I's size. There was a combination airlock and docking ring behind the cockpit, although this was covered by a sensor dish at various points in the vessel's history.

    Under the ownership of Boba Fett

    Added weaponary:

    • A cloaking device, which was used for rendering a starship or object which is invisible to both sensors and the naked eye
    • A Minelayer
    • The two rapid fire laser cannons were replaced with an ion cannon and a concussion missile launcher.
    • A miniature tractor beam projector was added to assist in capturing bounties.
    • A stolen sensor masking and jamming array made the ship invisible to sensors, allowing Fett to enter any planet without hassle.
    • He topped the armament off by changing the main ordinance of the projectile launchers to proton torpedoes.
    • A swoop bike was also stored aboard to make himself more mobile once on-world, and devoted a piece of the living area to holding cells.
    \"Diagram
    Diagram of the Slave I
    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-20880/","id":20880,"name":"The Empire Strikes Back: To Be a Jedi","issue_number":"42"},"id":46372,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/7075/176846-81492-slave-i.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/7075/176846-81492-slave-i.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/7075/176846-81492-slave-i.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/7075/176846-81492-slave-i.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/7075/176846-81492-slave-i.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/7075/176846-81492-slave-i.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/7075/176846-81492-slave-i.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/7075/176846-81492-slave-i.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/7075/176846-81492-slave-i.jpg","image_tags":"All Images"},"name":"Slave I","site_detail_url":"https://comicvine.gamespot.com/slave-i/4055-46372/","start_year":"1980"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46445/","count_of_issue_appearances":258,"date_added":"2008-06-06 11:27:50","date_last_updated":"2016-04-21 02:17:01","deck":"The 7 magic Dragon Balls, when gathered, are able to summon a mystic dragon capable of granting wishes","description":"

    Origin

    The Dragon Balls, numbered 1 through 7, when collectively gathered, can be used to summon the eternal dragon who can grant wishes to the summoner. The Dragon Balls were originally created by the Namekians.

    There are four different sets of Dragon Balls in total. There are the Earth Dragon Balls, Namek Dragon Balls, the Super Dragon Balls, and the non-canon Black Star Dragon Balls. Each set of Dragon Balls can grant wishes, but their power and appearance differ slightly from the other balls. If the creator of a set of Dragon Balls dies, the Dragon Balls will turn to stone and become useless unless they are restored by another Namekian, or the creator is brought back to life.

    Earth's Dragon Balls

    The Earth Dragon Balls were made by the Namekian, Kami, when he traveled to the planet Earth. Once used, they are turned into stone, and cannot be used unless revived by Kami, or another Namekian for one year. If only one wish is granted, they can be located again in four months time. Once used, the dragon balls disperse across the planet and must be found again.

    The Earth dragon balls summon the eternal dragon Shenron. He can grant one wish. When he was revived by Dende, he could grant two. He can only revive a person from death once.

    The first Dragon Ball introduced was the \"4 Star\" ball. It was carried by Goku through much of the original Dragon Ball series. It was said that the \"4 Star\" ball held the spirit of Grampa Gohan, his adoptive Grandfather. These Dragon Balls could be found using the Dragon Radar, an invention made by Bulma Briefs of Capsule Corporation.

    Namekian Dragon Balls

    There are also seven dragon balls on the planet Namek, home of their origin. They are much larger than the Earth dragon balls. They summon the eternal dragon Porunga, who is capable of granting three wishes and has no limitations on reviving the dead, although he can only revive one person at a time. After Namek's destruction, the Namekian dragon balls followed the Namekians to their new home.

    Not only does Porunga grant more wishes than Shenron, he can also be summoned every 130 days, as opposed to Shenron's full year.

    Super Dragon Balls

    Dragon Ball Super introduced the Super Dragon Balls that are each the size of a planet and are scattered throughout the universe. Champa stated the Namekians took pieces of them to create their Dragon Balls. The Super Dragon Balls are also said to be able to grant any wish.

    Black Star Dragon Balls

    The Black Star Dragon Balls are an anime only set of Dragon Balls introduced in Dragon Ball GT. Cosmetically, these Dragon Balls look nearly identical to the more commonly seen set on Earth with the only difference being the stars adorning the surface are black rather than the typical red stars. The Black Star Dragon Balls are said to be much more powerful than both the Earth's Dragon Balls and the Namekian Dragon Balls.

    Ultimate Shenron, the dragon of this set, looks very similar to Shenron. The only differences are that Ultimate Shenron is red and is significantly larger. His head is larger than Kami's Lookout. He is said to have no limits on his wish granting capabilities.

    To offset the incredible power of the Black Star Dragon Balls, they are restricted to only one wish and after that wish the balls are scattered throughout the universe. If the balls are not all returned to their host planet after one year, the planet will explode. For this dangerous reason they were kept sealed away in Kami's Lookout for many years.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-300054/","id":300054,"name":"No. 51, 1984","issue_number":"838"},"id":46445,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/8669/214137-72072-dragon-balls.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/8669/214137-72072-dragon-balls.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/8669/214137-72072-dragon-balls.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/8669/214137-72072-dragon-balls.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/8669/214137-72072-dragon-balls.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/8669/214137-72072-dragon-balls.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/8669/214137-72072-dragon-balls.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/8669/214137-72072-dragon-balls.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/8669/214137-72072-dragon-balls.jpg","image_tags":"All Images,Dragonballs,gallery"},"name":"Dragon Balls","site_detail_url":"https://comicvine.gamespot.com/dragon-balls/4055-46445/","start_year":"1984"},{"aliases":"Pistol sword","api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46447/","count_of_issue_appearances":3,"date_added":"2008-06-06 11:27:50","date_last_updated":"2014-08-10 08:33:36","deck":"It's a sword and a gun.","description":null,"first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-240430/","id":240430,"name":null,"issue_number":"1"},"id":46447,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."},"name":"Gunblade","site_detail_url":"https://comicvine.gamespot.com/gunblade/4055-46447/","start_year":"2003"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/object/4055-46530/","count_of_issue_appearances":75,"date_added":"2008-06-06 11:27:50","date_last_updated":"2021-08-13 16:49:31","deck":"The Medusa Mask, the Psycho Pirate's criminal weapon, is a mystical object capable of controlling emotions in people, though its use forces emotional vampirism upon the wielder.","description":"

    The Medusa Mask is the source of power for Roger Hayden; the Psycho-Pirate. Hayden first learned of it's existence from the first Psycho-Pirate, Charles Halstead, while sharing a cell with him. Originally, several Medusa Masks existed, each dominating a single emotion, but Hayden re-forged their metal into a single faceplate. While this gave him power above all the emotional spectrum, the mask forced a form of emotional vampirism as its cost upon Hayden, forcing him to consume emotions to survive. The Medusa Mask allows the Psycho-Pirate to promote and project emotions in other people, and during the \"Second Crisis\" in Animal Man, the mask holds the remnants of the multiverse, with the capability to summon any of the destroyed characters of the countless realities that once existed. Hayden appeared to be consumed by its power and it was left to be worn by former physicist, James Highwater. Hayden would later return as the Psycho-Pirate, with the Medusa Mask in tow. When Hayden upgraded his powers with Neron's influence, the mask's metal would replace half his brain and would manifest as a golden eye patch, though by the time of Hayden's stay in the Slab, it had gone back to its familiar shape. In this capability, Alex Luthor used Psycho-Pirate in his quest to recreate the multiverse until Black Adam killed him by shoving the mask through his head. The mask appeared in the Raven limited series, and though the titular heroine destroyed it, its power lingered, and started affecting scientists researching its schematics.

    Much later, during the Blackest Night, Conner Kent stole the mask from Black Lantern Roger Hayden, and using it on him, discovered the mask's powers were enough to cut the connection between the Black Lantern Ring and the corpse it was controlling, allowing him to destroy Hayden and Black Lantern Kal-L. Shortly after, a fleeing ring shattered the mask once again.

    Power and Abilities

    Powers and Abilities in the New 52

    The Medusa Mask gives the wielder over every mind on the planet and the power to twist all the thoughts, memories, all secrets inside them. It has also been able to get past the mental shields given to Superman by Orion. It also protects the bearer from other psychics while amplifying his own power. The mask allows the wielder to drain people of their psionic energy.

    ","first_appeared_in_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-7679/","id":7679,"name":"Perils of the Psycho-Pirate!","issue_number":"56"},"id":46530,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/171937-20081-medusa-mask.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/171937-20081-medusa-mask.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/171937-20081-medusa-mask.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/171937-20081-medusa-mask.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/171937-20081-medusa-mask.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/171937-20081-medusa-mask.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/171937-20081-medusa-mask.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/171937-20081-medusa-mask.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3664/171937-20081-medusa-mask.jpg","image_tags":"All Images,gallery"},"name":"Medusa Mask","site_detail_url":"https://comicvine.gamespot.com/medusa-mask/4055-46530/","start_year":"1965"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-category-details/video_category-2320-11.json b/samples/api-data/video-category-details/video_category-2320-11.json new file mode 100644 index 0000000..91d8fb5 --- /dev/null +++ b/samples/api-data/video-category-details/video_category-2320-11.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/11/","site_detail_url":"https://comicvine.gamespot.com/videos/best-stuff-in-comics/","deck":"The other best stuff you might have missed this week.","id":11,"name":"Best Stuff In Comics","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-category-details/video_category-2320-12.json b/samples/api-data/video-category-details/video_category-2320-12.json new file mode 100644 index 0000000..e602746 --- /dev/null +++ b/samples/api-data/video-category-details/video_category-2320-12.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/12/","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/","deck":"Comic artists are given the challenge of drawing a familiar character and a random object.","id":12,"name":"Mystery Art Challenge","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-category-details/video_category-2320-13.json b/samples/api-data/video-category-details/video_category-2320-13.json new file mode 100644 index 0000000..cbedfd4 --- /dev/null +++ b/samples/api-data/video-category-details/video_category-2320-13.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/13/","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/","deck":"What's in the box?","id":13,"name":"Unboxing","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-category-details/video_category-2320-2.json b/samples/api-data/video-category-details/video_category-2320-2.json new file mode 100644 index 0000000..20d9317 --- /dev/null +++ b/samples/api-data/video-category-details/video_category-2320-2.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2/","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/","deck":null,"id":2,"name":"Trailer","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-category-details/video_category-2320-7.json b/samples/api-data/video-category-details/video_category-2320-7.json new file mode 100644 index 0000000..1a628f9 --- /dev/null +++ b/samples/api-data/video-category-details/video_category-2320-7.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/7/","site_detail_url":"https://comicvine.gamespot.com/videos/3-min.-expert/","deck":null,"id":7,"name":"3-Min. Expert","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-category-list-item/video_categories.json b/samples/api-data/video-category-list-item/video_categories.json new file mode 100644 index 0000000..01474c1 --- /dev/null +++ b/samples/api-data/video-category-list-item/video_categories.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":11,"number_of_total_results":11,"status_code":1,"results":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/7/","site_detail_url":"https://comicvine.gamespot.com/videos/3-min.-expert/","deck":null,"id":7,"name":"3-Min. Expert","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/11/","site_detail_url":"https://comicvine.gamespot.com/videos/best-stuff-in-comics/","deck":"The other best stuff you might have missed this week.","id":11,"name":"Best Stuff In Comics","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/10/","site_detail_url":"https://comicvine.gamespot.com/videos/comic-book-2-minute-time-out/","deck":"An attempt to discuss a topic within two minutes.","id":10,"name":"Comic Book 2-Minute Time-Out","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/4/","site_detail_url":"https://comicvine.gamespot.com/videos/events/","deck":null,"id":4,"name":"Events","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/3/","site_detail_url":"https://comicvine.gamespot.com/videos/feature/","deck":null,"id":3,"name":"Feature","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/12/","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/","deck":"Comic artists are given the challenge of drawing a familiar character and a random object.","id":12,"name":"Mystery Art Challenge","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/8/","site_detail_url":"https://comicvine.gamespot.com/videos/preview-theatre/","deck":null,"id":8,"name":"Preview Theatre","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/1/","site_detail_url":"https://comicvine.gamespot.com/videos/review/","deck":null,"id":1,"name":"Review","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/9/","site_detail_url":"https://comicvine.gamespot.com/videos/subscriber/","deck":null,"id":9,"name":"Subscriber","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2/","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/","deck":null,"id":2,"name":"Trailer","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/13/","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/","deck":"What's in the box?","id":13,"name":"Unboxing","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11122/111222211/6373148-blank.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11122/111222211/6373148-blank.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11122/111222211/6373148-blank.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11122/111222211/6373148-blank.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11122/111222211/6373148-blank.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11122/111222211/6373148-blank.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11122/111222211/6373148-blank.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11122/111222211/6373148-blank.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11122/111222211/6373148-blank.png","image_tags":",All Images,asgard,Avatars,carpediem081108,Classified: Dark Syntinel,Custom Pack,dp,Heroes/Villains,Jeff Hardy,Kurama,Mack's Gallery,Mangekyou Sharingan,Mis,My Off-Topic Shizzzzzz,My Pics,Old pics,other,Other Pictures,Pics for my Background,pics of characters i found,Sorting,Spider-Man and Etc.. Gallery,SPIRALMIND,Stuff I Made on the Computer,yeah."}}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-details/video-2300-3265.json b/samples/api-data/video-details/video-2300-3265.json new file mode 100644 index 0000000..1d0a6e4 --- /dev/null +++ b/samples/api-data/video-details/video-2300-3265.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3265/","deck":"The All New Ghost Rider is the newest addition to Agents of S.H.I.E.L.D. His character in the comic book is pretty different from his onscreen persona. Here's 8 things you need to know about the possessed hellion.","embed_player":"https://comicvine.gamespot.com/videos/embed/3265/","guid":"2300-3265","id":3265,"length_seconds":135,"name":"8 Things to Know About the All New Ghost Rider","premium":false,"publish_date":"2016-09-22 16:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/8-things-to-know-about-the-all-new-ghost-rider/2300-3265/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5447675-8thingsghostrider_092216_gs","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5447675-8thingsghostrider_092216_gs","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5447675-8thingsghostrider_092216_gs","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5447675-8thingsghostrider_092216_gs","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5447675-8thingsghostrider_092216_gs","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5447675-8thingsghostrider_092216_gs","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5447675-8thingsghostrider_092216_gs","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5447675-8thingsghostrider_092216_gs","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5447675-8thingsghostrider_092216_gs","image_tags":"All Images"},"user":null,"hosts":"buddyhutton","crew":"buddyhutton","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"feeE0lgVR54","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/8ThingsGhostRider_092216_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/8ThingsGhostRider_092216_3200.mp4","url":"8ThingsGhostRider_092216.mp4"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-details/video-2300-3277.json b/samples/api-data/video-details/video-2300-3277.json new file mode 100644 index 0000000..7807950 --- /dev/null +++ b/samples/api-data/video-details/video-2300-3277.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3277/","deck":"Check out what's on display at Sideshow Collectibles at New York Comic Con 2016 including your favorite Star Wars, Marvel, and DC characters.","embed_player":"https://comicvine.gamespot.com/videos/embed/3277/","guid":"2300-3277","id":3277,"length_seconds":173,"name":"Sideshow Collectibles Showcase at New York Comic Con 2016","premium":false,"publish_date":"2016-10-07 12:23:00","site_detail_url":"https://comicvine.gamespot.com/videos/sideshow-collectibles-showcase-at-new-york-comic-c/2300-3277/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":"ryanerikp","video_type":"Feature, Events","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-4/","id":4,"name":"Events","site_detail_url":"https://comicvine.gamespot.com/videos/events/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/SideshowCollectibles_20161006_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/SideshowCollectibles_20161006_3200.mp4","url":"SideshowCollectibles_20161006.mp4"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-details/video-2300-3307.json b/samples/api-data/video-details/video-2300-3307.json new file mode 100644 index 0000000..d67bbc7 --- /dev/null +++ b/samples/api-data/video-details/video-2300-3307.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3307/","deck":"Gandalf introduces the Fantastic Beast's Newt Scamander.","embed_player":"https://comicvine.gamespot.com/videos/embed/3307/","guid":"2300-3307","id":3307,"length_seconds":74,"name":"LEGO Dimensions: \"Meet That Hero\" Reveals Fantastic Beasts","premium":false,"publish_date":"2016-11-10 06:05:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-meet-that-hero-reveals-fantastic-b/2300-3307/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/10/cv_tr_legodimmeet4_201610nov_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/10/cv_tr_legodimmeet4_201610nov_3200.mp4","url":"cv_tr_legodimmeet4_201610nov.mp4"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-details/video-2300-3315.json b/samples/api-data/video-details/video-2300-3315.json new file mode 100644 index 0000000..b0f1bd4 --- /dev/null +++ b/samples/api-data/video-details/video-2300-3315.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3315/","deck":"Comic book artist Todd Nauck takes our Mystery Art Challenge: Darth Vader and Mjolnir.","embed_player":"https://comicvine.gamespot.com/videos/embed/3315/","guid":"2300-3315","id":3315,"length_seconds":140,"name":"Mystery Art Challenge: Todd Nauck Draws Darth Vader Lifting Mjolnir","premium":false,"publish_date":"2016-12-07 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge-todd-nauck-draws-darth-vader/2300-3315/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","image_tags":null},"user":"gmanfromheck","hosts":null,"crew":"gmanfromheck, ryanerikp","video_type":"Mystery Art Challenge","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-12/","id":12,"name":"Mystery Art Challenge","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/21/MysteryArtChallengeRogueOneVADER_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/21/MysteryArtChallengeRogueOneVADER_3200.mp4","url":"MysteryArtChallengeRogueOneVADER.mp4"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-details/video-2300-3316.json b/samples/api-data/video-details/video-2300-3316.json new file mode 100644 index 0000000..ddd0929 --- /dev/null +++ b/samples/api-data/video-details/video-2300-3316.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3316/","deck":"Chastity, Ryan and Buddy stayed late and watched the Westworld finale at the Gamespot office. They guess the meaning of bicameral mind, discuss what theories they were wrong about and what the MIB's smile meant at the end of the show.","embed_player":"https://comicvine.gamespot.com/videos/embed/3316/","guid":"2300-3316","id":3316,"length_seconds":1180,"name":"Nerding Out: Westworld Season 1 Finale \"The Bicameral Mind\"","premium":false,"publish_date":"2016-12-05 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/nerding-out-westworld-season-1-finale-the-bicamera/2300-3316/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","image_tags":"All Images"},"user":"buddyhutton","hosts":null,"crew":"ryanerikp, buddyhutton","video_type":"Review","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-1/","id":1,"name":"Review","site_detail_url":"https://comicvine.gamespot.com/videos/review/"}],"saved_time":null,"youtube_id":"VzQj6wMtvTM","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/05/NerdingOut_WestWorld_ep10_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/05/NerdingOut_WestWorld_ep10_3200.mp4","url":"NerdingOut_WestWorld_ep10.mp4"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-list-item/videos.json b/samples/api-data/video-list-item/videos.json new file mode 100644 index 0000000..5cce39e --- /dev/null +++ b/samples/api-data/video-list-item/videos.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":3115,"status_code":1,"results":[{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3331/","deck":"We take a look at the figures for Wave 7.5 featuring the Batcomputer, the Batwing, the Bionic Steed, and KITT.","embed_player":"https://comicvine.gamespot.com/videos/embed/3331/","guid":"2300-3331","id":3331,"length_seconds":294,"name":"Unboxing: LEGO Dimensions - LEGO Batman Movie & Knight Rider","premium":false,"publish_date":"2017-02-12 07:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-lego-dimensions-lego-batman-movie-and-kni/2300-3331/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5694671-gsu_box_legobatdimensions_201710feb.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"4NljSDATVIU","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/10/gsu_box_legobatdimensions_201710feb_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/10/gsu_box_legobatdimensions_201710feb_3200.mp4","url":"gsu_box_legobatdimensions_201710feb.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3330/","deck":"See Black Canary in action.","embed_player":"https://comicvine.gamespot.com/videos/embed/3330/","guid":"2300-3330","id":3330,"length_seconds":91,"name":"Injustice 2 - Black Canary Gameplay Trailer","premium":false,"publish_date":"2017-02-10 06:25:00","site_detail_url":"https://comicvine.gamespot.com/videos/injustice-2-black-canary-gameplay-trailer/2300-3330/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5693953-cv_tr_injustice2canary_201710feb.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/10/cv_tr_injustice2canary_201710feb_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/10/cv_tr_injustice2canary_201710feb_3200.mp4","url":"cv_tr_injustice2canary_201710feb.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3329/","deck":"Now you can play the LEGO Batman Movie story.","embed_player":"https://comicvine.gamespot.com/videos/embed/3329/","guid":"2300-3329","id":3329,"length_seconds":76,"name":"LEGO Dimensions - LEGO Batman Movie Expansion Pack","premium":false,"publish_date":"2017-02-10 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-lego-batman-movie-expansion-pack/2300-3329/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5693928-cv_tr_legobatdim_201710feb.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/10/cv_tr_legobatdim_201710feb_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/10/cv_tr_legobatdim_201710feb_3200.mp4","url":"cv_tr_legobatdim_201710feb.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3328/","deck":"We take a look at the oversized, Hot Topic exclusive figure.","embed_player":"https://comicvine.gamespot.com/videos/embed/3328/","guid":"2300-3328","id":3328,"length_seconds":182,"name":"Unboxing: Funko Pop! Resident Evil - Tyrant","premium":false,"publish_date":"2017-02-04 09:59:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-funko-pop-resident-evil-tyrant/2300-3328/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5683054-gsu_box_funkotyrant_201704feb.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"8XYae2qTljU","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/04/gsu_box_funkotyrant_201704febb_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/04/gsu_box_funkotyrant_201704febb_3200.mp4","url":"gsu_box_funkotyrant_201704febb.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3326/","deck":"Sonic introduces us to the next character and vehicle.","embed_player":"https://comicvine.gamespot.com/videos/embed/3326/","guid":"2300-3326","id":3326,"length_seconds":67,"name":"LEGO Dimensions: \"Meet That Hero\" Reveals Next Character","premium":false,"publish_date":"2017-02-02 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-meet-that-hero-reveals-next-charac/2300-3326/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5680128-cv_tr_legoknightr_201702feb.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/02/cv_tr_legoknightr_201702feb_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/02/02/cv_tr_legoknightr_201702feb_3200.mp4","url":"cv_tr_legoknightr_201702feb.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3325/","deck":"We take a look at the latest Hasbro series including the Sandman Build-a-Figure.","embed_player":"https://comicvine.gamespot.com/videos/embed/3325/","guid":"2300-3325","id":3325,"length_seconds":598,"name":"Unboxing: Spider-Man Marvel Legends Infinite Series","premium":false,"publish_date":"2017-01-28 12:20:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-spider-man-marvel-legends-infinite-series/2300-3325/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5673262-gsu_box_spiderinf_201628jan.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"fQWHkDeb6M4","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/28/gsu_box_spiderinf_201628jan_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/28/gsu_box_spiderinf_201628jan_3200.mp4","url":"gsu_box_spiderinf_201628jan.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3324/","deck":"We take a close look at the Hot Topic exclusive Spider-Gwen Rock Candy figure.","embed_player":"https://comicvine.gamespot.com/videos/embed/3324/","guid":"2300-3324","id":3324,"length_seconds":148,"name":"Unboxing: Funko Rock Candy Spider-Gwen","premium":false,"publish_date":"2017-01-21 15:23:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-funko-rock-candy-spider-gwen/2300-3324/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5659960-cv_boc_rockgwen_201721janb.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"K5X6D_wPVqM","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/21/cv_boc_rockgwen_201721janb_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/21/cv_boc_rockgwen_201721janb_3200.mp4","url":"cv_boc_rockgwen_201721janb.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3322/","deck":"Find out what's in the box! Watch this video, you will.","embed_player":"https://comicvine.gamespot.com/videos/embed/3322/","guid":"2300-3322","id":3322,"length_seconds":224,"name":"Unboxing: Star Wars Smuggler's Bounty: Empire Strikes Back Box","premium":false,"publish_date":"2017-01-14 13:39:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-star-wars-smugglers-bounty-empire-strikes/2300-3322/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5648237-cv_box_funkoempire_201714jan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5648237-cv_box_funkoempire_201714jan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5648237-cv_box_funkoempire_201714jan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5648237-cv_box_funkoempire_201714jan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5648237-cv_box_funkoempire_201714jan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5648237-cv_box_funkoempire_201714jan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5648237-cv_box_funkoempire_201714jan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5648237-cv_box_funkoempire_201714jan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5648237-cv_box_funkoempire_201714jan.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"6uh6E6YxD0M","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/14/cv_box_funkoempire_201714jan_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/14/cv_box_funkoempire_201714jan_3200.mp4","url":"cv_box_funkoempire_201714jan.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3321/","deck":"We try our luck with a few packs of the LEGO figures.","embed_player":"https://comicvine.gamespot.com/videos/embed/3321/","guid":"2300-3321","id":3321,"length_seconds":256,"name":"Unboxing: LEGO The Batman Movie Blind Bag Figures","premium":false,"publish_date":"2017-01-02 12:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-lego-the-batman-movie-blind-bag-figures/2300-3321/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5627235-cv_box_legobat_201702jan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5627235-cv_box_legobat_201702jan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5627235-cv_box_legobat_201702jan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5627235-cv_box_legobat_201702jan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5627235-cv_box_legobat_201702jan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5627235-cv_box_legobat_201702jan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5627235-cv_box_legobat_201702jan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5627235-cv_box_legobat_201702jan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5627235-cv_box_legobat_201702jan.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"A3hX99F98Es","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/02/cv_box_legobat_201702jan_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2017/01/02/cv_box_legobat_201702jan_3200.mp4","url":"cv_box_legobat_201702jan.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3320/","deck":"We find out what's in the box.","embed_player":"https://comicvine.gamespot.com/videos/embed/3320/","guid":"2300-3320","id":3320,"length_seconds":170,"name":"Unboxing: Marvel Unlimited Plus Membership Kit","premium":false,"publish_date":"2016-12-29 11:43:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-marvel-unlimited-plus-membership-kit/2300-3320/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5618795-cv_box_marvelunlim_201629dec.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"7_X2DZgIW9o","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/29/cv_box_marvelunlim_201629dec_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/29/cv_box_marvelunlim_201629dec_3200.mp4","url":"cv_box_marvelunlim_201629dec.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3319/","deck":"The Justice Leagues' greatest enemy and his deadly daughter are available in this massive set.","embed_player":"https://comicvine.gamespot.com/videos/embed/3319/","guid":"2300-3319","id":3319,"length_seconds":407,"name":"Unboxing: DC Collectibles Darkseid & Grail DC Icons 2-Pack","premium":false,"publish_date":"2016-12-27 08:13:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-dc-collectibles-darkseid-and-grail-dc-ico/2300-3319/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5614298-cv_box_darkseid_201623dec.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5614298-cv_box_darkseid_201623dec.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5614298-cv_box_darkseid_201623dec.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5614298-cv_box_darkseid_201623dec.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5614298-cv_box_darkseid_201623dec.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5614298-cv_box_darkseid_201623dec.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5614298-cv_box_darkseid_201623dec.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5614298-cv_box_darkseid_201623dec.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5614298-cv_box_darkseid_201623dec.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"XSDKQ0PHovo","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/27/cv_box_darkseid_201623dec_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/27/cv_box_darkseid_201623dec_3200.mp4","url":"cv_box_darkseid_201623dec.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3318/","deck":"The Fantastic Beasts are venturing out into other LEGO Dimensions worlds.","embed_player":"https://comicvine.gamespot.com/videos/embed/3318/","guid":"2300-3318","id":3318,"length_seconds":68,"name":"LEGO Dimensions - Fantastic Beasts and Where to Find Them Trailer","premium":false,"publish_date":"2016-12-08 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-fantastic-beasts-and-where-to-find/2300-3318/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5575704-cv_tr_fantasticdimensions_201607dec.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"vQyerDMldvE","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/08/cv_tr_fantasticdimensions_201607dec_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/08/cv_tr_fantasticdimensions_201607dec_3200.mp4","url":"cv_tr_fantasticdimensions_201607dec.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3315/","deck":"Comic book artist Todd Nauck takes our Mystery Art Challenge: Darth Vader and Mjolnir.","embed_player":"https://comicvine.gamespot.com/videos/embed/3315/","guid":"2300-3315","id":3315,"length_seconds":140,"name":"Mystery Art Challenge: Todd Nauck Draws Darth Vader Lifting Mjolnir","premium":false,"publish_date":"2016-12-07 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge-todd-nauck-draws-darth-vader/2300-3315/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/1/8/3/3160183-mysteryartchallengerogueonevader_gs.jpg","image_tags":null},"user":"gmanfromheck","hosts":null,"crew":"gmanfromheck, ryanerikp","video_type":"Mystery Art Challenge","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-12/","id":12,"name":"Mystery Art Challenge","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/21/MysteryArtChallengeRogueOneVADER_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/21/MysteryArtChallengeRogueOneVADER_3200.mp4","url":"MysteryArtChallengeRogueOneVADER.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3317/","deck":"Join Tony Guerrero as we celebrate Comic Vine's 10th Anniversary.","embed_player":"https://comicvine.gamespot.com/videos/embed/3317/","guid":"2300-3317","id":3317,"length_seconds":96,"name":"Comic Vine Celebrates 10-year Anniversary","premium":false,"publish_date":"2016-12-06 17:10:00","site_detail_url":"https://comicvine.gamespot.com/videos/comic-vine-celebrates-10-year-anniversary/2300-3317/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/6/5/5/3/3166553-10th-birthday-comicvine-thumb.jpg","image_tags":null},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck, ryanerikp, buddyhutton","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/12/07/10YearsComicVine20161206_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/12/07/10YearsComicVine20161206_3200.mp4","url":"10YearsComicVine20161206.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3316/","deck":"Chastity, Ryan and Buddy stayed late and watched the Westworld finale at the Gamespot office. They guess the meaning of bicameral mind, discuss what theories they were wrong about and what the MIB's smile meant at the end of the show.","embed_player":"https://comicvine.gamespot.com/videos/embed/3316/","guid":"2300-3316","id":3316,"length_seconds":1180,"name":"Nerding Out: Westworld Season 1 Finale \"The Bicameral Mind\"","premium":false,"publish_date":"2016-12-05 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/nerding-out-westworld-season-1-finale-the-bicamera/2300-3316/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111299979/5570563-nerdingout_westworld_ep10_gs.jpg","image_tags":"All Images"},"user":"buddyhutton","hosts":null,"crew":"ryanerikp, buddyhutton","video_type":"Review","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-1/","id":1,"name":"Review","site_detail_url":"https://comicvine.gamespot.com/videos/review/"}],"saved_time":null,"youtube_id":"VzQj6wMtvTM","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/05/NerdingOut_WestWorld_ep10_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/12/05/NerdingOut_WestWorld_ep10_3200.mp4","url":"NerdingOut_WestWorld_ep10.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3313/","deck":"Comic book artist Ray-Anthony Height attempts our Mystery Art Challenge: a Stormtrooper and a Poké Ball.","embed_player":"https://comicvine.gamespot.com/videos/embed/3313/","guid":"2300-3313","id":3313,"length_seconds":168,"name":"Mystery Art Challenge: Ray-Anthony Height Draws a Stormtrooper and a Poké Ball","premium":false,"publish_date":"2016-11-30 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge-ray-anthony-height-draws-a-s/2300-3313/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/9/5/6/6/3159566-mysteryartchallengerogueonestormtrooper_gs.jpg","image_tags":null},"user":"gmanfromheck","hosts":null,"crew":"gmanfromheck, ryanerikp","video_type":"Mystery Art Challenge","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-12/","id":12,"name":"Mystery Art Challenge","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/18/MysteryArtChallengeRogueOneStormtrooper_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/18/MysteryArtChallengeRogueOneStormtrooper_3200.mp4","url":"MysteryArtChallengeRogueOneStormtrooper.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3312/","deck":"Comic book Arist Peter Nguyen takes the Mystery Art Challenge: Princess Leia and Captain America's Shield.","embed_player":"https://comicvine.gamespot.com/videos/embed/3312/","guid":"2300-3312","id":3312,"length_seconds":175,"name":"Mystery Art Challenge: Peter Nguyen Draws Princess Leia as Captain America.","premium":false,"publish_date":"2016-11-23 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge-peter-nguyen-draws-princess/2300-3312/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/9/5/6/4/3159564-mysteryartchallengerogueoneleia_gs.jpg","image_tags":null},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Mystery Art Challenge","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-12/","id":12,"name":"Mystery Art Challenge","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/18/MysteryArtChallengeRogueOneLeia_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/18/MysteryArtChallengeRogueOneLeia_3200.mp4","url":"MysteryArtChallengeRogueOneLeia.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3314/","deck":"Find out what's in the box. Did you order one?","embed_player":"https://comicvine.gamespot.com/videos/embed/3314/","guid":"2300-3314","id":3314,"length_seconds":176,"name":"Unboxing: Funko's Star Wars Smuggler's Bounty \"Rogue One\" Subscription Box","premium":false,"publish_date":"2016-11-20 09:31:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-funkos-star-wars-smugglers-bounty-rogue-o/2300-3314/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5541930-cv_box_funkorogue_201619nov.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5541930-cv_box_funkorogue_201619nov.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5541930-cv_box_funkorogue_201619nov.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5541930-cv_box_funkorogue_201619nov.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5541930-cv_box_funkorogue_201619nov.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5541930-cv_box_funkorogue_201619nov.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5541930-cv_box_funkorogue_201619nov.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5541930-cv_box_funkorogue_201619nov.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5541930-cv_box_funkorogue_201619nov.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/20/cv_box_funkorogue_201619nov_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/20/cv_box_funkorogue_201619nov_3200.mp4","url":"cv_box_funkorogue_201619nov.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3311/","deck":"Take a look at what the figures and playsets look like.","embed_player":"https://comicvine.gamespot.com/videos/embed/3311/","guid":"2300-3311","id":3311,"length_seconds":173,"name":"Unboxing: LEGO Dimensions Fantastic Beasts, Gremlins, & Sonic","premium":false,"publish_date":"2016-11-17 13:14:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-lego-dimensions-fantastic-beasts-gremlins/2300-3311/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5537347-cv_box_fantasticlego_201612nov.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"VnJiECkrN6k","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/17/cv_box_fantasticlego_201612nov_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/17/cv_box_fantasticlego_201612nov_3200.mp4","url":"cv_box_fantasticlego_201612nov.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3310/","deck":"Comic book artist Agnes Garbowska is the latest to try our Mystery Art Challenge: Han Solo and a Video Game Controller.","embed_player":"https://comicvine.gamespot.com/videos/embed/3310/","guid":"2300-3310","id":3310,"length_seconds":110,"name":"Mystery Art Challenge: Agnes Garbowska Draws Han Solo","premium":false,"publish_date":"2016-11-16 16:58:00","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge-agnes-garbowska-draws-han-so/2300-3310/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/8/3/7/5/3158375-mysteryartchallengerogueonehan_gs.jpg","image_tags":null},"user":"gmanfromheck","hosts":null,"crew":"gmanfromheck, ryanerikp","video_type":"Feature, Mystery Art Challenge","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-12/","id":12,"name":"Mystery Art Challenge","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/17/MysteryArtChallengeRogueOneHan_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/17/MysteryArtChallengeRogueOneHan_3200.mp4","url":"MysteryArtChallengeRogueOneHan.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3308/","deck":"Valerian and the city of a Thousand Planets is looking to be the best scifi film of 2017. We take a deeper look into the latest trailer to see what to expect when to releases.","embed_player":"https://comicvine.gamespot.com/videos/embed/3308/","guid":"2300-3308","id":3308,"length_seconds":134,"name":"Valerian Trailer Breakdown: Fifth Element Homages, Rihanna and More","premium":false,"publish_date":"2016-11-10 16:32:00","site_detail_url":"https://comicvine.gamespot.com/videos/valerian-trailer-breakdown-fifth-element-homages-r/2300-3308/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/6/1/0/0/3156100-valeriantrailerbreakdown20161110_gs.jpg","image_tags":null},"user":"ryanerikp","hosts":"buddyhutton","crew":"ryanerikp, buddyhutton","video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/10/ValerianTrailerBreakdown20161110_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/10/ValerianTrailerBreakdown20161110_3200.mp4","url":"ValerianTrailerBreakdown20161110.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3307/","deck":"Gandalf introduces the Fantastic Beast's Newt Scamander.","embed_player":"https://comicvine.gamespot.com/videos/embed/3307/","guid":"2300-3307","id":3307,"length_seconds":74,"name":"LEGO Dimensions: \"Meet That Hero\" Reveals Fantastic Beasts","premium":false,"publish_date":"2016-11-10 06:05:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-meet-that-hero-reveals-fantastic-b/2300-3307/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5525976-cv_tr_legodimmeet4_201610nov.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/10/cv_tr_legodimmeet4_201610nov_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/10/cv_tr_legodimmeet4_201610nov_3200.mp4","url":"cv_tr_legodimmeet4_201610nov.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3306/","deck":"Soul Stones, Infinity Gems or Infinity Stones. Regardless of what you call them, these things are confusing. In this video, we track down where we've seen the stones and the power each holds.","embed_player":"https://comicvine.gamespot.com/videos/embed/3306/","guid":"2300-3306","id":3306,"length_seconds":247,"name":"EXPLAINED: Where are the Infinity Stones?","premium":false,"publish_date":"2016-11-09 17:38:00","site_detail_url":"https://comicvine.gamespot.com/videos/explained-where-are-the-infinity-stones/2300-3306/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/5/5/3/1/3155531-20161108_infinitystones_gs.jpg","image_tags":null},"user":"ryanerikp","hosts":null,"crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/10/20161108_InfinityStones_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/10/20161108_InfinityStones_3200.mp4","url":"20161108_InfinityStones.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3305/","deck":"A handful of comic book artists take on our Mystery Art Challenge: Doctor Strange and an apple.","embed_player":"https://comicvine.gamespot.com/videos/embed/3305/","guid":"2300-3305","id":3305,"length_seconds":151,"name":"Mystery Art Challenge: Doctor Strange and an Apple","premium":false,"publish_date":"2016-11-07 08:06:00","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge-doctor-strange-and-an-apple/2300-3305/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/4/4/9/3152449-mysteryartchallengedrstrange20161104.jpg","image_tags":null},"user":"ryanerikp","hosts":"gmanfromheck","crew":"gmanfromheck, ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"augebHH1Ga0","low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/03/MysteryArtChallengeDrStrange20161104_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/03/MysteryArtChallengeDrStrange20161104_3200.mp4","url":"MysteryArtChallengeDrStrange20161104.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3304/","deck":"Jim Lee talks with Tony Guerrero about the relaunch of WildStorm. The imprint will release in mid-February 2017 and will be written by Warren Ellis.","embed_player":"https://comicvine.gamespot.com/videos/embed/3304/","guid":"2300-3304","id":3304,"length_seconds":149,"name":"WildStorm Relaunch: NYCC interview with DC Comics' Jim Lee","premium":false,"publish_date":"2016-11-04 12:24:00","site_detail_url":"https://comicvine.gamespot.com/videos/wildstorm-relaunch-nycc-interview-with-dc-comics-j/2300-3304/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111292181/5517081-nyccwildstorm20161104_gs.jpg","image_tags":"All Images"},"user":"ryanerikp","hosts":"gmanfromheck","crew":"gmanfromheck, ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"67Xnz4G3AqA","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/04/NYCCWildStorm20161104_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/04/NYCCWildStorm20161104_3200.mp4","url":"NYCCWildStorm20161104.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3303/","deck":"Amanda Conner and Jimmy Palmiotti discuss developing the new The Jetsons comic book series with Tony Guerrero at New York Comic Con 2016.","embed_player":"https://comicvine.gamespot.com/videos/embed/3303/","guid":"2300-3303","id":3303,"length_seconds":274,"name":"Jetsons New Comic Book: NYCC interview with Amanda Conner and Jimmy Palmiotti","premium":false,"publish_date":"2016-11-04 11:25:00","site_detail_url":"https://comicvine.gamespot.com/videos/jetsons-new-comic-book-nycc-interview-with-amanda-/2300-3303/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111292181/5516971-nyccthejetsons20161104_gs.jpg","image_tags":"All Images"},"user":"ryanerikp","hosts":"gmanfromheck","crew":"gmanfromheck, ryanerikp","video_type":"Events","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-4/","id":4,"name":"Events","site_detail_url":"https://comicvine.gamespot.com/videos/events/"}],"saved_time":null,"youtube_id":"4oMLDqOmB5Q","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/04/NYCCTheJetsons20161104_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/04/NYCCTheJetsons20161104_3200.mp4","url":"NYCCTheJetsons20161104.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3302/","deck":"The second trailer for Wonder Woman is out and Ryan Peterson breaks down all the things you may have missed.","embed_player":"https://comicvine.gamespot.com/videos/embed/3302/","guid":"2300-3302","id":3302,"length_seconds":197,"name":"Wonder Woman Trailer #2 Breakdown","premium":false,"publish_date":"2016-11-03 18:38:00","site_detail_url":"https://comicvine.gamespot.com/videos/wonder-woman-trailer-2-breakdown/2300-3302/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/4/7/1/3152471-wonderwomantrailerbreakdown20161103_gs.jpg","image_tags":null},"user":"ryanerikp","hosts":"ryanerikp","crew":"ryanerikp","video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/04/WonderWomanTrailerBreakdown20161103_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/04/WonderWomanTrailerBreakdown20161103_3200.mp4","url":"WonderWomanTrailerBreakdown20161103.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3301/","deck":"Chastity and Tony nerd out over Marvel's Dr. Strange. Find out how the movie differed from the comic book, what they thought of the villains and after credits scenes.","embed_player":"https://comicvine.gamespot.com/videos/embed/3301/","guid":"2300-3301","id":3301,"length_seconds":691,"name":"Nerding Out (SPOILER WARNING): Doctor Strange","premium":false,"publish_date":"2016-11-02 14:53:00","site_detail_url":"https://comicvine.gamespot.com/videos/nerding-out-spoiler-warning-doctor-strange/2300-3301/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/1/9/5/2/3151952-nerdingoutdrstrange20161102_gs.jpg","image_tags":null},"user":"ryanerikp","hosts":"gmanfromheck","crew":"ryanerikp","video_type":"Review","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-1/","id":1,"name":"Review","site_detail_url":"https://comicvine.gamespot.com/videos/review/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/02/NerdingOutDrStrange20161102_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/11/02/NerdingOutDrStrange20161102_3200.mp4","url":"NerdingOutDrStrange20161102.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3300/","deck":"Jim Lee and Dan DiDio join Tony Guerrero to talk DC Rebirth, Justice League vs. Suicide Squad, Lois Lane's future, Batwoman new series and much more.","embed_player":"https://comicvine.gamespot.com/videos/embed/3300/","guid":"2300-3300","id":3300,"length_seconds":327,"name":"DC Rebirth: Justice League vs. Suicide Squad Preview with Jim Lee and Dan DiDio","premium":false,"publish_date":"2016-11-01 09:08:00","site_detail_url":"https://comicvine.gamespot.com/videos/dc-rebirth-justice-league-vs-suicide-squad-preview/2300-3300/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111292181/5512041-nycc_dcrebirth_20161101_gs.jpg","image_tags":"All Images"},"user":"ryanerikp","hosts":"gmanfromheck","crew":"gmanfromheck, ryanerikp","video_type":"Events","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-4/","id":4,"name":"Events","site_detail_url":"https://comicvine.gamespot.com/videos/events/"}],"saved_time":null,"youtube_id":"euJwMmrp4KQ","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/01/NYCC_DCRebirth_20161101_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/11/01/NYCC_DCRebirth_20161101_3200.mp4","url":"NYCC_DCRebirth_20161101.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3299/","deck":"We try our luck with a couple of the Funko Mystery Pops.","embed_player":"https://comicvine.gamespot.com/videos/embed/3299/","guid":"2300-3299","id":3299,"length_seconds":165,"name":"Unboxing: Funko Pop! Mystery (Hot Topic Exclusive)","premium":false,"publish_date":"2016-10-29 17:13:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-funko-pop-mystery-hot-topic-exclusive/2300-3299/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5507915-cv_box_hotfunko_201625oct.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5507915-cv_box_hotfunko_201625oct.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5507915-cv_box_hotfunko_201625oct.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5507915-cv_box_hotfunko_201625oct.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5507915-cv_box_hotfunko_201625oct.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5507915-cv_box_hotfunko_201625oct.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5507915-cv_box_hotfunko_201625oct.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5507915-cv_box_hotfunko_201625oct.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5507915-cv_box_hotfunko_201625oct.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"CmsqvdglrBQ","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/30/cv_box_hotfunko_201625oct_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/30/cv_box_hotfunko_201625oct_3200.mp4","url":"cv_box_hotfunko_201625oct.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3298/","deck":"Who is King Ezekiel? What's up with his pet tiger? GameSpot dives into his comic book origins.","embed_player":"https://comicvine.gamespot.com/videos/embed/3298/","guid":"2300-3298","id":3298,"length_seconds":154,"name":"The Walking Dead's Ezekiel: Five Things You Need To Know","premium":false,"publish_date":"2016-10-27 15:51:00","site_detail_url":"https://comicvine.gamespot.com/videos/the-walking-deads-ezekiel-five-things-you-need-to/2300-3298/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/9/2/2/8/3149228-featuretwd_ezekiel_20161018_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":null,"video_show":null,"video_categories":[],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/27/FeatureTWD_Ezekiel_20161018_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/27/FeatureTWD_Ezekiel_20161018_3200.mp4","url":"FeatureTWD_Ezekiel_20161018.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3297/","deck":"Marceline the Vampire Queen hosts the latest episode and introduces new characters coming in November.","embed_player":"https://comicvine.gamespot.com/videos/embed/3297/","guid":"2300-3297","id":3297,"length_seconds":78,"name":"LEGO Dimensions: \"Meet That Hero\" Reveals 2 New Characters","premium":false,"publish_date":"2016-10-27 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-meet-that-hero-reveals-2-new-chara/2300-3297/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5503357-cv_tr_legodim_2016270ct.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5503357-cv_tr_legodim_2016270ct.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5503357-cv_tr_legodim_2016270ct.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5503357-cv_tr_legodim_2016270ct.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5503357-cv_tr_legodim_2016270ct.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5503357-cv_tr_legodim_2016270ct.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5503357-cv_tr_legodim_2016270ct.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5503357-cv_tr_legodim_2016270ct.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5503357-cv_tr_legodim_2016270ct.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"2jhQCwf2E3I","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/26/cv_tr_legodim_2016270ct_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/26/cv_tr_legodim_2016270ct_3200.mp4","url":"cv_tr_legodim_2016270ct.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3296/","deck":"We open up the Doctor Strange box to see if it is full of strange things.","embed_player":"https://comicvine.gamespot.com/videos/embed/3296/","guid":"2300-3296","id":3296,"length_seconds":198,"name":"Unboxing: Funko's Marvel Collector Corps - \"Doctor Strange\"","premium":false,"publish_date":"2016-10-25 18:35:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-funkos-marvel-collector-corps-doctor-stra/2300-3296/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5502094-cv_box_funkostrange_201625oct.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5502094-cv_box_funkostrange_201625oct.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5502094-cv_box_funkostrange_201625oct.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5502094-cv_box_funkostrange_201625oct.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5502094-cv_box_funkostrange_201625oct.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5502094-cv_box_funkostrange_201625oct.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5502094-cv_box_funkostrange_201625oct.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5502094-cv_box_funkostrange_201625oct.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5502094-cv_box_funkostrange_201625oct.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"leuswNUxA2U","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/26/cv_box_funkostrange_201625oct_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/26/cv_box_funkostrange_201625oct_3200.mp4","url":"cv_box_funkostrange_201625oct.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3292/","deck":"Just in time for the The Walking Dead Season 7 premiere, GameSpot examines Negan's comic book roots.","embed_player":"https://comicvine.gamespot.com/videos/embed/3292/","guid":"2300-3292","id":3292,"length_seconds":148,"name":"The Walking Dead's Negan: Five Things You Need To Know","premium":false,"publish_date":"2016-10-20 16:46:00","site_detail_url":"https://comicvine.gamespot.com/videos/the-walking-deads-negan-five-things-you-need-to-kn/2300-3292/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/5/9/6/5/3145965-featuretwd_negan_20161020_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":null,"video_show":null,"video_categories":[],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/20/FeatureTWD_Negan_20161020_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/20/FeatureTWD_Negan_20161020_3200.mp4","url":"FeatureTWD_Negan_20161020.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3291/","deck":"The trailer for Logan dropped and Mat Elfring breaks it down.","embed_player":"https://comicvine.gamespot.com/videos/embed/3291/","guid":"2300-3291","id":3291,"length_seconds":123,"name":"Logan Trailer Breakdown","premium":false,"publish_date":"2016-10-20 16:41:00","site_detail_url":"https://comicvine.gamespot.com/videos/logan-trailer-breakdown/2300-3291/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/6/0/1/8/3146018-logantrailerbreakdown_102016_gs.jpg","image_tags":null},"user":null,"hosts":"inferiorego","crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/20/LoganTrailerBreakdown_102016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/20/LoganTrailerBreakdown_102016_3200.mp4","url":"LoganTrailerBreakdown_102016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3290/","deck":"New Starlord costume, Baby Groot in a leather jacket, and more from the Guardians of the Galaxy volume 2 trailer.","embed_player":"https://comicvine.gamespot.com/videos/embed/3290/","guid":"2300-3290","id":3290,"length_seconds":71,"name":"Top 7 Takeaways from the Guardians of the Galaxy 2 Trailer","premium":false,"publish_date":"2016-10-19 17:16:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-7-takeaways-from-the-guardians-of-the-galaxy-2/2300-3290/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/5/3/0/7/3145307-7thingsaboutguardiansofthegalaxy_101916_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/19/7ThingsAboutGuardiansoftheGalaxy_101916_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/19/7ThingsAboutGuardiansoftheGalaxy_101916_3200.mp4","url":"7ThingsAboutGuardiansoftheGalaxy_101916.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3289/","deck":"GameSpot catches up with the cast of Agents of Shield at New York Comic Con 2016.","embed_player":"https://comicvine.gamespot.com/videos/embed/3289/","guid":"2300-3289","id":3289,"length_seconds":172,"name":"Justice League Dark: NYCC Interview with the Cast","premium":false,"publish_date":"2016-10-17 13:39:00","site_detail_url":"https://comicvine.gamespot.com/videos/justice-league-dark-nycc-interview-with-the-cast/2300-3289/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/4/3/2/8/3144328-nyccjusticeleaguedark10132016_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":"ryanerikp","video_type":null,"video_show":null,"video_categories":[],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/17/NYCCJusticeLeagueDark10132016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/17/NYCCJusticeLeagueDark10132016_3200.mp4","url":"NYCCJusticeLeagueDark10132016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3288/","deck":"Jason O'Mara plays the new director in season four of Agents of Shield. Find out his thoughts on the character's origin.","embed_player":"https://comicvine.gamespot.com/videos/embed/3288/","guid":"2300-3288","id":3288,"length_seconds":113,"name":"Agents of Shield Director: NYCC interview with Jason O'Mara","premium":false,"publish_date":"2016-10-17 13:38:00","site_detail_url":"https://comicvine.gamespot.com/videos/agents-of-shield-director-nycc-interview-with-jaso/2300-3288/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/4/3/3/1/3144331-nyccjasonomaraagents10132016_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/17/NYCCJasonOMaraAgents10132016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/17/NYCCJasonOMaraAgents10132016_3200.mp4","url":"NYCCJasonOMaraAgents10132016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3287/","deck":"DC Comics' Peter Tomasi talks about Superman's upcoming battles with Dinosaurs and much more.","embed_player":"https://comicvine.gamespot.com/videos/embed/3287/","guid":"2300-3287","id":3287,"length_seconds":409,"name":"Man of Steel vs Dinosaurs: NYCC Interview with Superman Writer","premium":false,"publish_date":"2016-10-14 17:38:00","site_detail_url":"https://comicvine.gamespot.com/videos/man-of-steel-vs-dinosaurs-nycc-interview-with-supe/2300-3287/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/7/3/9/3142739-nyccpetertomasiinterview10122016_gs.jpg","image_tags":null},"user":null,"hosts":"inferiorego","crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/NYCCPeterTomasiInterview10122016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/NYCCPeterTomasiInterview10122016_3200.mp4","url":"NYCCPeterTomasiInterview10122016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3286/","deck":"What's next for Harley Quinn? Amanda Conner and Jimmy Palmiotti join Tony Guerrero at New York Comic Con 2016.","embed_player":"https://comicvine.gamespot.com/videos/embed/3286/","guid":"2300-3286","id":3286,"length_seconds":266,"name":"Harley Quinn with a Mohawk: NYCC Interview with Harley's Co-Writers","premium":false,"publish_date":"2016-10-13 10:37:00","site_detail_url":"https://comicvine.gamespot.com/videos/harley-quinn-with-a-mohawk-nycc-interview-with-har/2300-3286/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/6/5/0/3142650-nyccharleyquinninterview10122016_gs.jpg","image_tags":null},"user":null,"hosts":"gmanfromheck","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/NYCCHarleyQuinnInterview10122016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/NYCCHarleyQuinnInterview10122016_3200.mp4","url":"NYCCHarleyQuinnInterview10122016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3285/","deck":"Ghost Rider's Robbie Reyes reveals his top 5 favorite cars.","embed_player":"https://comicvine.gamespot.com/videos/embed/3285/","guid":"2300-3285","id":3285,"length_seconds":51,"name":"Ghost Rider's Top 5 Cars","premium":false,"publish_date":"2016-10-13 10:35:00","site_detail_url":"https://comicvine.gamespot.com/videos/ghost-riders-top-5-cars/2300-3285/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/6/4/4/3142644-ghostrideractorstop5cars.jpg","image_tags":null},"user":null,"hosts":null,"crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/GhostRiderActorsTop5Cars_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/GhostRiderActorsTop5Cars_3200.mp4","url":"GhostRiderActorsTop5Cars.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3284/","deck":"If you could have one superpower what would it be? We asked a handful of celebrities at New York Comic Con 2016.","embed_player":"https://comicvine.gamespot.com/videos/embed/3284/","guid":"2300-3284","id":3284,"length_seconds":82,"name":"NYCC Celebrities' Favorite Superpowers","premium":false,"publish_date":"2016-10-12 18:05:00","site_detail_url":"https://comicvine.gamespot.com/videos/nycc-celebrities-favorite-superpowers/2300-3284/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/2/9/7/3142297-nyccsuperpower10122016_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/NYCCSuperPower10122016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/NYCCSuperPower10122016_3200.mp4","url":"NYCCSuperPower10122016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3282/","deck":"Tony and Buddy recap episode 3 of Agents of S.H.I.E.L.D. and offer some New York Comic Con insight on the fate of a beloved character.","embed_player":"https://comicvine.gamespot.com/videos/embed/3282/","guid":"2300-3282","id":3282,"length_seconds":303,"name":"Agents of S.H.I.E.L.D. Recap Episode 3","premium":false,"publish_date":"2016-10-12 17:34:00","site_detail_url":"https://comicvine.gamespot.com/videos/agents-of-shield-recap-episode-3/2300-3282/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/2/2/9/4/3142294-agentsepisode3recapsite.jpg","image_tags":null},"user":null,"hosts":"gmanfromheck","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/AgentsEpisode3Recap_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/13/AgentsEpisode3Recap_3200.mp4","url":"AgentsEpisode3Recap.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3281/","deck":"We tracked down Clark Gregg, Chloe Bennet, Gabriel Luna, and more to talk Agents of S.H.I.E.L.D. season 4 at New York Comic Con.","embed_player":"https://comicvine.gamespot.com/videos/embed/3281/","guid":"2300-3281","id":3281,"length_seconds":202,"name":"Agents of S.H.I.E.L.D. Talk Season 4 at New York Comic Con","premium":false,"publish_date":"2016-10-11 16:33:00","site_detail_url":"https://comicvine.gamespot.com/videos/agents-of-shield-talk-season-4-at-new-york-comic-c/2300-3281/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/1/7/5/9/3141759-agentsofshieldnycon.jpg","image_tags":null},"user":null,"hosts":"gmanfromheck","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/11/AgentsofShieldNYCON_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/11/AgentsofShieldNYCON_3200.mp4","url":"AgentsofShieldNYCON.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3280/","deck":"The stars of Marvel's Agents of S.H.I.E.L.D. prank cosplay fans during New York Comic Con 2016. Check out their costumes.","embed_player":"https://comicvine.gamespot.com/videos/embed/3280/","guid":"2300-3280","id":3280,"length_seconds":53,"name":"'Agents of Cosplay' at New York Comic Con 2016","premium":false,"publish_date":"2016-10-08 16:06:00","site_detail_url":"https://comicvine.gamespot.com/videos/agents-of-cosplay-at-new-york-comic-con-2016/2300-3280/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/5/2/2/3140522-nyccagentscosplay_gs.jpg","image_tags":null},"user":"ryanerikp","hosts":null,"crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/08/NYCCAgentsCosplay_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/08/NYCCAgentsCosplay_3200.mp4","url":"NYCCAgentsCosplay.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3279/","deck":"Take a look at some of the best Marvel cosplay from New York Comic Con 2016.","embed_player":"https://comicvine.gamespot.com/videos/embed/3279/","guid":"2300-3279","id":3279,"length_seconds":103,"name":"Best Marvel Cosplay from New York Comic Con 2016","premium":false,"publish_date":"2016-10-08 15:25:00","site_detail_url":"https://comicvine.gamespot.com/videos/best-marvel-cosplay-from-new-york-comic-con-2016/2300-3279/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/5/0/8/3140508-marvelcosplaynycc2016_gs.jpg","image_tags":null},"user":"ryanerikp","hosts":null,"crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/08/MarvelCosplayNYCC2016_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/08/MarvelCosplayNYCC2016_3200.mp4","url":"MarvelCosplayNYCC2016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3278/","deck":"DC Comics writer Scott Snyder talks about the upcoming All-Star Batman #3 as well as the popularity and future of the series","embed_player":"https://comicvine.gamespot.com/videos/embed/3278/","guid":"2300-3278","id":3278,"length_seconds":416,"name":"Scott Snyder Talks All-Star Batman #3","premium":false,"publish_date":"2016-10-07 13:48:00","site_detail_url":"https://comicvine.gamespot.com/videos/scott-snyder-talks-all-star-batman-3/2300-3278/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/1/4/3/3140143-nyccscottsnyder20161007_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":"ryanerikp","video_type":"Feature, Events","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-4/","id":4,"name":"Events","site_detail_url":"https://comicvine.gamespot.com/videos/events/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/NYCCScottSnyder20161007_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/NYCCScottSnyder20161007_3200.mp4","url":"NYCCScottSnyder20161007.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3277/","deck":"Check out what's on display at Sideshow Collectibles at New York Comic Con 2016 including your favorite Star Wars, Marvel, and DC characters.","embed_player":"https://comicvine.gamespot.com/videos/embed/3277/","guid":"2300-3277","id":3277,"length_seconds":173,"name":"Sideshow Collectibles Showcase at New York Comic Con 2016","premium":false,"publish_date":"2016-10-07 12:23:00","site_detail_url":"https://comicvine.gamespot.com/videos/sideshow-collectibles-showcase-at-new-york-comic-c/2300-3277/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/0/8/9/3140089-sideshowcollectibles_20161006_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":"ryanerikp","video_type":"Feature, Events","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-4/","id":4,"name":"Events","site_detail_url":"https://comicvine.gamespot.com/videos/events/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/SideshowCollectibles_20161006_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/SideshowCollectibles_20161006_3200.mp4","url":"SideshowCollectibles_20161006.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3276/","deck":"From Harley Quinn to Aquaman, see which DC Comics characters made an appearance at New York Comic Con 2016.","embed_player":"https://comicvine.gamespot.com/videos/embed/3276/","guid":"2300-3276","id":3276,"length_seconds":75,"name":"Best DC Comics Cosplay from New York Comic Con 2016","premium":false,"publish_date":"2016-10-07 11:41:00","site_detail_url":"https://comicvine.gamespot.com/videos/best-dc-comics-cosplay-from-new-york-comic-con-201/2300-3276/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/0/0/8/7/3140087-dc-cosplay-20161006_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":"ryanerikp","video_type":"Feature, Events","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-4/","id":4,"name":"Events","site_detail_url":"https://comicvine.gamespot.com/videos/events/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/DCCosplay20161006_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/07/DCCosplay20161006_3200.mp4","url":"DCCosplay20161006.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3275/","deck":"Has Olliver Queen ended up back on the Year One island?","embed_player":"https://comicvine.gamespot.com/videos/embed/3275/","guid":"2300-3275","id":3275,"length_seconds":35,"name":"Ben Percy Discusses GREEN ARROW #8 - Island of Scars","premium":false,"publish_date":"2016-10-05 10:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/ben-percy-discusses-green-arrow-8-island-of-scars/2300-3275/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5469745-cv_tr_allpercy_201605oct.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5469745-cv_tr_allpercy_201605oct.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5469745-cv_tr_allpercy_201605oct.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5469745-cv_tr_allpercy_201605oct.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5469745-cv_tr_allpercy_201605oct.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5469745-cv_tr_allpercy_201605oct.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5469745-cv_tr_allpercy_201605oct.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5469745-cv_tr_allpercy_201605oct.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5469745-cv_tr_allpercy_201605oct.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"98aI42qhmpY","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/05/cv_tr_allpercy_201605oct_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/05/cv_tr_allpercy_201605oct_3200.mp4","url":"cv_tr_allpercy_201605oct.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3273/","deck":"Take a look at the figures and vehicles for Ghostbusters, Mission Impossible, Adventure Time, and more.","embed_player":"https://comicvine.gamespot.com/videos/embed/3273/","guid":"2300-3273","id":3273,"length_seconds":343,"name":"Unboxing: LEGO Dimensions - Wave 6","premium":false,"publish_date":"2016-10-04 11:02:00","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing-lego-dimensions-wave-6/2300-3273/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5468325-cv_ft_legodimw6_201604oct.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":"gmanfromheck","crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/04/cv_ft_legodimw6_201604oct_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/10/04/cv_ft_legodimw6_201604oct_3200.mp4","url":"cv_ft_legodimw6_201604oct.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3272/","deck":"There are some awesome homages in the first season of Luke Cage including Back to the Future, classic Power Man, Iron Fist and of course, the Stan Lee Cameo.","embed_player":"https://comicvine.gamespot.com/videos/embed/3272/","guid":"2300-3272","id":3272,"length_seconds":157,"name":"Luke Cage: Top 5 Easter Eggs","premium":false,"publish_date":"2016-10-03 17:49:00","site_detail_url":"https://comicvine.gamespot.com/videos/luke-cage-top-5-easter-eggs/2300-3272/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/8/0/0/5/3138005-gsu_lukecageeastereggs_20161003_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":null,"video_show":null,"video_categories":[],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/04/GSU_LukeCageEasterEggs_20161003_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/10/04/GSU_LukeCageEasterEggs_20161003_3200.mp4","url":"GSU_LukeCageEasterEggs_20161003.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3260/","deck":"Halloween season is right around the corner so we're sharing five horror films that you need to catch in theaters.","embed_player":"https://comicvine.gamespot.com/videos/embed/3260/","guid":"2300-3260","id":3260,"length_seconds":148,"name":"Top 5 Fall Horror Films","premium":false,"publish_date":"2016-10-03 17:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-5-fall-horror-films/2300-3260/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5443596-top5fallhorrorfilms_20160916_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"inferiorego","crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"WjfB6eM18ek","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/20/Top5FallHorrorFilms_20160916_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/20/Top5FallHorrorFilms_20160916_3200.mp4","url":"Top5FallHorrorFilms_20160916.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3271/","deck":"With Luke Cage about to drop on Netflix, we get an in-depth view of who the heck he is.","embed_player":"https://comicvine.gamespot.com/videos/embed/3271/","guid":"2300-3271","id":3271,"length_seconds":124,"name":"Who the Heck is Luke Cage","premium":false,"publish_date":"2016-09-29 18:15:00","site_detail_url":"https://comicvine.gamespot.com/videos/who-the-heck-is-luke-cage/2300-3271/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/6/5/0/2/3136502-whotheheckislukecage_092916_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/09/30/WhoTheHeckIsLukeCage_092916_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/09/30/WhoTheHeckIsLukeCage_092916_3200.mp4","url":"WhoTheHeckIsLukeCage_092916.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3270/","deck":"\"Meet the New Boss\" - A discussion of Daisy's clash with Ghost Rider and the mystery behind S.H.I.E.L.D.'s new director.","embed_player":"https://comicvine.gamespot.com/videos/embed/3270/","guid":"2300-3270","id":3270,"length_seconds":413,"name":"Ghost Rider and the New Boss Theories: Agents of S.H.I.E.L.D. S4E2 Recap","premium":false,"publish_date":"2016-09-28 15:51:00","site_detail_url":"https://comicvine.gamespot.com/videos/ghost-rider-and-the-new-boss-theories-agents-of-sh/2300-3270/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/5/8/7/7/3135877-gsu_recap_shield_402_20160928_gs.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":null,"video_show":null,"video_categories":[],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/09/28/GSU_Recap_SHIELD_402_20160928_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/09/28/GSU_Recap_SHIELD_402_20160928_3200.mp4","url":"GSU_Recap_SHIELD_402_20160928.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3269/","deck":"It's Transformer: The Movie's 30th anniversary and you'll be able to buy the Blu-ray steelbook on December 12 in the UK.","embed_player":"https://comicvine.gamespot.com/videos/embed/3269/","guid":"2300-3269","id":3269,"length_seconds":81,"name":"Transformer: The Movie - Exclusive Blu-ray Clip","premium":false,"publish_date":"2016-09-27 10:26:00","site_detail_url":"https://comicvine.gamespot.com/videos/transformer-the-movie-exclusive-blu-ray-clip/2300-3269/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/mig/5/1/1/0/3135110-trailer_transformersmoviebluray_20160927_v2.jpg","image_tags":null},"user":null,"hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/09/27/Trailer_TransformersMovieBluRay_20160927_v2_1800.mp4","high_url":"https://static-mt-rv-v1.gamespot.com/vr/2016/09/27/Trailer_TransformersMovieBluRay_20160927_v2_3200.mp4","url":"Trailer_TransformersMovieBluRay_20160927_v2.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3268/","deck":"Wave 6 is released with new figures for Ghostbusters, Harry Potter, Adventure Time.","embed_player":"https://comicvine.gamespot.com/videos/embed/3268/","guid":"2300-3268","id":3268,"length_seconds":90,"name":"LEGO Dimensions: Battle Arenas","premium":false,"publish_date":"2016-09-27 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/lego-dimensions-battle-arenas/2300-3268/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5456136-cv_tr_legodimbat_201627sep.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/27/cv_tr_legodimbat_201627sep_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/27/cv_tr_legodimbat_201627sep_3200.mp4","url":"cv_tr_legodimbat_201627sep.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3267/","deck":"Take a behind the scenes look from the upcoming Blu-ray at the production design for the Mansion in X-Men: Apocalypse.","embed_player":"https://comicvine.gamespot.com/videos/embed/3267/","guid":"2300-3267","id":3267,"length_seconds":94,"name":"X-Men Apocalypse - Behind the Scenes: Unearthed Mansion Production Design","premium":false,"publish_date":"2016-09-26 11:07:00","site_detail_url":"https://comicvine.gamespot.com/videos/x-men-apocalypse-behind-the-scenes-unearthed-mansi/2300-3267/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5455042-cv_tr_xapocspfeat_201626sep.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"SRr4m3Veem0","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/26/cv_tr_xapocspfeat_201626sep_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/26/cv_tr_xapocspfeat_201626sep_3200.mp4","url":"cv_tr_xapocspfeat_201626sep.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3265/","deck":"The All New Ghost Rider is the newest addition to Agents of S.H.I.E.L.D. His character in the comic book is pretty different from his onscreen persona. Here's 8 things you need to know about the possessed hellion.","embed_player":"https://comicvine.gamespot.com/videos/embed/3265/","guid":"2300-3265","id":3265,"length_seconds":135,"name":"8 Things to Know About the All New Ghost Rider","premium":false,"publish_date":"2016-09-22 16:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/8-things-to-know-about-the-all-new-ghost-rider/2300-3265/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5447675-8thingsghostrider_092216_gs","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5447675-8thingsghostrider_092216_gs","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5447675-8thingsghostrider_092216_gs","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5447675-8thingsghostrider_092216_gs","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5447675-8thingsghostrider_092216_gs","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5447675-8thingsghostrider_092216_gs","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5447675-8thingsghostrider_092216_gs","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5447675-8thingsghostrider_092216_gs","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5447675-8thingsghostrider_092216_gs","image_tags":"All Images"},"user":null,"hosts":"buddyhutton","crew":"buddyhutton","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"feeE0lgVR54","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/8ThingsGhostRider_092216_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/8ThingsGhostRider_092216_3200.mp4","url":"8ThingsGhostRider_092216.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3264/","deck":"With Gotham season three underway, Tamoor makes a case for why you should be watching the Batman prequel series.","embed_player":"https://comicvine.gamespot.com/videos/embed/3264/","guid":"2300-3264","id":3264,"length_seconds":527,"name":"Why Gotham Is a Batman Series Worth Watching","premium":false,"publish_date":"2016-09-22 12:28:00","site_detail_url":"https://comicvine.gamespot.com/videos/why-gotham-is-a-batman-series-worth-watching/2300-3264/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5447457-gotham_site.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5447457-gotham_site.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5447457-gotham_site.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5447457-gotham_site.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5447457-gotham_site.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5447457-gotham_site.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5447457-gotham_site.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5447457-gotham_site.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5447457-gotham_site.jpg","image_tags":"All Images"},"user":null,"hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"-ML_EPRveDk","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/Feature_Gotham_20160920_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/Feature_Gotham_20160920_3200.mp4","url":"Feature_Gotham_20160920.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3263/","deck":"Unlike the games, the majority of the upcoming Assassin's Creed film will take place in the modern day. For the scenes that are set in 15th century Spain, lead actor Michael Fassbender and others will speak in Spanish.","embed_player":"https://comicvine.gamespot.com/videos/embed/3263/","guid":"2300-3263","id":3263,"length_seconds":65,"name":"Assassin's Creed Movie's 15th Century Spain Scenes Will Be in Spanish - GS News Update","premium":false,"publish_date":"2016-09-22 11:57:00","site_detail_url":"https://comicvine.gamespot.com/videos/assassins-creed-movies-15th-century-spain-scenes-w/2300-3263/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5447391-gsnu_assassinscreed_09222016.jpg","image_tags":"All Images"},"user":null,"hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"-agzYcENHsE","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/GSNU_AssassinsCreed_09222016_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/22/GSNU_AssassinsCreed_09222016_3200.mp4","url":"GSNU_AssassinsCreed_09222016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3259/","deck":"The summer came and went but the fall is full excellent movies coming to theaters. We've picked out the Top 5 for you.","embed_player":"https://comicvine.gamespot.com/videos/embed/3259/","guid":"2300-3259","id":3259,"length_seconds":153,"name":"Top 5 Fall Films","premium":false,"publish_date":"2016-09-22 09:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-5-fall-films/2300-3259/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5442226-top5fall_movies_20160916_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"inferiorego","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"sE9f7KScUw0","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/19/Top5Fall_Movies_20160916_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/19/Top5Fall_Movies_20160916_3200.mp4","url":"Top5Fall_Movies_20160916.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3261/","deck":"See Marcus To, Peter Nguyen, Francis Manapul, and more take on the Psylocke and a Sandwhich artist challenge at Emerald City.","embed_player":"https://comicvine.gamespot.com/videos/embed/3261/","guid":"2300-3261","id":3261,"length_seconds":176,"name":"Gamespot Universe Art Challenge - Psylocke and a Sandwhich","premium":false,"publish_date":"2016-09-21 09:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/gamespot-universe-art-challenge-psylocke-and-a-san/2300-3261/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5444247-comicartistchallenge.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5444247-comicartistchallenge.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5444247-comicartistchallenge.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5444247-comicartistchallenge.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5444247-comicartistchallenge.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5444247-comicartistchallenge.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5444247-comicartistchallenge.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5444247-comicartistchallenge.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5444247-comicartistchallenge.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"K9NWs_oGXeg","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/20/ComicArtistChallenge_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/20/ComicArtistChallenge_3200.mp4","url":"ComicArtistChallenge.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3262/","deck":"The original Westworld revolutionized the film industry in 1973. Find out 6 things you should know about Westworld before the new HBO show premieres.","embed_player":"https://comicvine.gamespot.com/videos/embed/3262/","guid":"2300-3262","id":3262,"length_seconds":195,"name":"6 Things You Should Know About the Original Westworld","premium":false,"publish_date":"2016-09-21 09:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/6-things-you-should-know-about-the-original-westwo/2300-3262/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5444488-gsu_westworld1973_20160920_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"KvQeTzTKvT4","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/21/GSU_Westworld1973_20160920_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/21/GSU_Westworld1973_20160920_3200.mp4","url":"GSU_Westworld1973_20160920.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3258/","deck":"Batman has donned a bunch of different batsuits over the years and Buddy takes us through the 13 we've seen on the big screen.","embed_player":"https://comicvine.gamespot.com/videos/embed/3258/","guid":"2300-3258","id":3258,"length_seconds":246,"name":"13 Batsuits of the Big Screen","premium":false,"publish_date":"2016-09-19 11:43:00","site_detail_url":"https://comicvine.gamespot.com/videos/13-batsuits-of-the-big-screen/2300-3258/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5437932-13batsuitsofthebigscreen_09162016_site.png","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"AozKzsUuLnY","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/19/13batsuitsoftheBigScreen_09162016v3_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/19/13batsuitsoftheBigScreen_09162016v3_3200.mp4","url":"13batsuitsoftheBigScreen_09162016v3.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3256/","deck":"We love the HBO show, but George R.R. Martin had a drastically different vision for Game of Thrones. Take a look at artwork from the upcoming illustrated book.","embed_player":"https://comicvine.gamespot.com/videos/embed/3256/","guid":"2300-3256","id":3256,"length_seconds":197,"name":"Game of Thrones Is Supposed To Look Like This","premium":false,"publish_date":"2016-09-18 08:30:00","site_detail_url":"https://comicvine.gamespot.com/videos/game-of-thrones-is-supposed-to-look-like-this/2300-3256/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5437547-gsu_gameofthrones_20160916_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"dJG7_Hg1l-w","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/16/GSU_GameofThrones_20160916_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/16/GSU_GameofThrones_20160916_3200.mp4","url":"GSU_GameofThrones_20160916.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3257/","deck":"Tony investigates who the heck Clark Kent is in light of recent twisting in the ongoing Superman saga.","embed_player":"https://comicvine.gamespot.com/videos/embed/3257/","guid":"2300-3257","id":3257,"length_seconds":105,"name":"Clark Kent Meets Superman","premium":false,"publish_date":"2016-09-17 09:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/clark-kent-meets-superman/2300-3257/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5437865-clarkkentmeetssupermansite.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"gmanfromheck","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"jTXz_lkOFOI","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/17/ClarkKentMeetsSuperman_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/17/ClarkKentMeetsSuperman_3200.mp4","url":"ClarkKentMeetsSuperman.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3255/","deck":"See what's in our Legion of Collectors box featuring Women of DC!","embed_player":"https://comicvine.gamespot.com/videos/embed/3255/","guid":"2300-3255","id":3255,"length_seconds":137,"name":"Funko Women of DC Unboxing","premium":false,"publish_date":"2016-09-15 14:28:00","site_detail_url":"https://comicvine.gamespot.com/videos/funko-women-of-dc-unboxing/2300-3255/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111292289/5436313-womenofdcunboxing.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111292289/5436313-womenofdcunboxing.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111292289/5436313-womenofdcunboxing.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111292289/5436313-womenofdcunboxing.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111292289/5436313-womenofdcunboxing.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111292289/5436313-womenofdcunboxing.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111292289/5436313-womenofdcunboxing.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111292289/5436313-womenofdcunboxing.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111292289/5436313-womenofdcunboxing.jpg","image_tags":"All Images"},"user":"aclarkp","hosts":null,"crew":"gmanfromheck","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"UwtvC9qVsjM","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/WomenofDCunboxing_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/WomenofDCunboxing_3200.mp4","url":"WomenofDCunboxing.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3254/","deck":"After the New Confederacy is crushed in a second Civil War, only Kentucky holds out, not recognizing U.S. sovereignty.","embed_player":"https://comicvine.gamespot.com/videos/embed/3254/","guid":"2300-3254","id":3254,"length_seconds":91,"name":"Warlords of Appalachia Trailer","premium":false,"publish_date":"2016-09-15 14:26:00","site_detail_url":"https://comicvine.gamespot.com/videos/warlords-of-appalachia-trailer/2300-3254/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5436310-cv_tr_warlords_201615sep.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5436310-cv_tr_warlords_201615sep.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5436310-cv_tr_warlords_201615sep.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5436310-cv_tr_warlords_201615sep.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5436310-cv_tr_warlords_201615sep.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5436310-cv_tr_warlords_201615sep.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5436310-cv_tr_warlords_201615sep.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5436310-cv_tr_warlords_201615sep.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5436310-cv_tr_warlords_201615sep.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":null,"low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/cv_tr_warlords_201615sep_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/cv_tr_warlords_201615sep_3200.mp4","url":"cv_tr_warlords_201615sep.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3253/","deck":"Get the latest on the exciting future for the Suicide Squad favorite Harley Quinn!","embed_player":"https://comicvine.gamespot.com/videos/embed/3253/","guid":"2300-3253","id":3253,"length_seconds":48,"name":"GS News Update - Harley Quinn Returns to the Big Screen","premium":false,"publish_date":"2016-09-15 13:32:00","site_detail_url":"https://comicvine.gamespot.com/videos/gs-news-update-harley-quinn-returns-to-the-big-scr/2300-3253/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5436249-newsupdateharleyquinn.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5436249-newsupdateharleyquinn.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5436249-newsupdateharleyquinn.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5436249-newsupdateharleyquinn.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5436249-newsupdateharleyquinn.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5436249-newsupdateharleyquinn.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5436249-newsupdateharleyquinn.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5436249-newsupdateharleyquinn.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5436249-newsupdateharleyquinn.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"aclarkp","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"o2yHd2BqL_Y","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/NewsUpdateHarleyQuinn_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/NewsUpdateHarleyQuinn_3200.mp4","url":"NewsUpdateHarleyQuinn.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3252/","deck":"Find out just how much the South Park title sequence has changed since 1997.","embed_player":"https://comicvine.gamespot.com/videos/embed/3252/","guid":"2300-3252","id":3252,"length_seconds":196,"name":"South Park: 20 Years of Intros in 3 Minutes","premium":false,"publish_date":"2016-09-14 17:03:00","site_detail_url":"https://comicvine.gamespot.com/videos/south-park-20-years-of-intros-in-3-minutes/2300-3252/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5434975-gsu_feature_southparkintro_20160914_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"ryanerikp","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"QlpJTEiiuXQ","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/GSU_Feature_SouthParkIntro_20160914_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/15/GSU_Feature_SouthParkIntro_20160914_3200.mp4","url":"GSU_Feature_SouthParkIntro_20160914.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3251/","deck":"Details drop about when you can expect to see Star Wars films on Turner.","embed_player":"https://comicvine.gamespot.com/videos/embed/3251/","guid":"2300-3251","id":3251,"length_seconds":55,"name":"GS News Update: Star Wars Inks TV Deal with Turner","premium":false,"publish_date":"2016-09-14 14:13:00","site_detail_url":"https://comicvine.gamespot.com/videos/gs-news-update-star-wars-inks-tv-deal-with-turner/2300-3251/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5434753-starwarsnewsupdate.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5434753-starwarsnewsupdate.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5434753-starwarsnewsupdate.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5434753-starwarsnewsupdate.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5434753-starwarsnewsupdate.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5434753-starwarsnewsupdate.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5434753-starwarsnewsupdate.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5434753-starwarsnewsupdate.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5434753-starwarsnewsupdate.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"aclarkp","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"XOFw6gGgRsc","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/StarWarsNewsUpdate_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/StarWarsNewsUpdate_3200.mp4","url":"StarWarsNewsUpdate.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3250/","deck":"Take a look at the extra special alien coming to LEGO Dimensions.","embed_player":"https://comicvine.gamespot.com/videos/embed/3250/","guid":"2300-3250","id":3250,"length_seconds":69,"name":"Meet That Hero: Supergirl Introduces E.T. for LEGO Dimensions","premium":false,"publish_date":"2016-09-14 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/meet-that-hero-supergirl-introduces-et-for-lego-di/2300-3250/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5433575-cv_tr_legodimhero_201614sep.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"OXq4UBWQBMg","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/cv_tr_legodimhero_201614sep_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/cv_tr_legodimhero_201614sep_3200.mp4","url":"cv_tr_legodimhero_201614sep.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3249/","deck":"South Park has long been a classic in animated comedy, Buddy reveals the shorts and pilot that started it all.","embed_player":"https://comicvine.gamespot.com/videos/embed/3249/","guid":"2300-3249","id":3249,"length_seconds":129,"name":"South Park - How it Started","premium":false,"publish_date":"2016-09-13 18:15:00","site_detail_url":"https://comicvine.gamespot.com/videos/south-park-how-it-started/2300-3249/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5433488-southpark_started_clean.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5433488-southpark_started_clean.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5433488-southpark_started_clean.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5433488-southpark_started_clean.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5433488-southpark_started_clean.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5433488-southpark_started_clean.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5433488-southpark_started_clean.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5433488-southpark_started_clean.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5433488-southpark_started_clean.png","image_tags":"All Images"},"user":null,"hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"jYv69qk6rUU","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/HowitStarted_SouthParkv2_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/HowitStarted_SouthParkv2_3200.mp4","url":"HowitStarted_SouthParkv2.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3248/","deck":"Season 6 of American Horror Story has 25 trailers! Check out which classic horror films the trailers are referencing.","embed_player":"https://comicvine.gamespot.com/videos/embed/3248/","guid":"2300-3248","id":3248,"length_seconds":97,"name":"American Horror Story - Teaser References Revealed","premium":false,"publish_date":"2016-09-13 17:52:00","site_detail_url":"https://comicvine.gamespot.com/videos/american-horror-story-teaser-references-revealed/2300-3248/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5433433-ahsteasers20160913site.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5433433-ahsteasers20160913site.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5433433-ahsteasers20160913site.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5433433-ahsteasers20160913site.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5433433-ahsteasers20160913site.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5433433-ahsteasers20160913site.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5433433-ahsteasers20160913site.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5433433-ahsteasers20160913site.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5433433-ahsteasers20160913site.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"aclarkp","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"D5haQ7aTHhg","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/AHSTeasers20160913v1_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/14/AHSTeasers20160913v1_3200.mp4","url":"AHSTeasers20160913v1.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3247/","deck":"Ghost Rider is joining the cast of Agents of S.H.I.E.L.D. this fall.","embed_player":"https://comicvine.gamespot.com/videos/embed/3247/","guid":"2300-3247","id":3247,"length_seconds":48,"name":"GS News Update: Ghost Rider Coming to the Small Screen","premium":false,"publish_date":"2016-09-12 16:30:00","site_detail_url":"https://comicvine.gamespot.com/videos/gs-news-update-ghost-rider-coming-to-the-small-scr/2300-3247/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5431560-ghostridernewsupdate.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5431560-ghostridernewsupdate.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5431560-ghostridernewsupdate.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5431560-ghostridernewsupdate.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5431560-ghostridernewsupdate.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5431560-ghostridernewsupdate.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5431560-ghostridernewsupdate.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5431560-ghostridernewsupdate.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5431560-ghostridernewsupdate.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"aclarkp","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"PDQaFU7MvT0","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/12/GhostRiderNewsUpdate_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/12/GhostRiderNewsUpdate_3200.mp4","url":"GhostRiderNewsUpdate.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3246/","deck":"Director Bryan Singer reveals Wolverine 3 villain in audio commentary of X-Men: Apocalypse's digital release.","embed_player":"https://comicvine.gamespot.com/videos/embed/3246/","guid":"2300-3246","id":3246,"length_seconds":90,"name":"GS News Update: Wolverine 3 Villain Confirmed","premium":false,"publish_date":"2016-09-12 15:33:00","site_detail_url":"https://comicvine.gamespot.com/videos/gs-news-update-wolverine-3-villain-confirmed/2300-3246/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5431547-gsu_news_wolverine3_20160912_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"ryanerikp","crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"OlnLhtIhqWk","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/12/GSU_News_Wolverine3_20160912_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/12/GSU_News_Wolverine3_20160912_3200.mp4","url":"GSU_News_Wolverine3_20160912.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3245/","deck":"We're over The Joker. Here's why Deathstroke will make the perfect big-screen bad guy for Batman.","embed_player":"https://comicvine.gamespot.com/videos/embed/3245/","guid":"2300-3245","id":3245,"length_seconds":285,"name":"9 Reasons Why Deathstroke Is The Perfect Batman Villain","premium":false,"publish_date":"2016-09-09 21:10:00","site_detail_url":"https://comicvine.gamespot.com/videos/9-reasons-why-deathstroke-is-the-perfect-batman-vi/2300-3245/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11129/111292181/5427272-list_deathstroke_20160909.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11129/111292181/5427272-list_deathstroke_20160909.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11129/111292181/5427272-list_deathstroke_20160909.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11129/111292181/5427272-list_deathstroke_20160909.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11129/111292181/5427272-list_deathstroke_20160909.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11129/111292181/5427272-list_deathstroke_20160909.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11129/111292181/5427272-list_deathstroke_20160909.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11129/111292181/5427272-list_deathstroke_20160909.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11129/111292181/5427272-list_deathstroke_20160909.jpg","image_tags":"All Images"},"user":"ryanerikp","hosts":"gmanfromheck","crew":"gmanfromheck, ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"Y1BVXY9O7Cs","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/10/FeatureList_Deathstroke_20160909_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/10/FeatureList_Deathstroke_20160909_3200.mp4","url":"FeatureList_Deathstroke_20160909.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3235/","deck":"Take a look at the game's improved graphics for the remastered versions of Arkham Asylum and Arkham City.","embed_player":"https://comicvine.gamespot.com/videos/embed/3235/","guid":"2300-3235","id":3235,"length_seconds":317,"name":"Batman: Return to Arkham Side-by-Side Comparison Trailer","premium":false,"publish_date":"2016-09-06 07:48:00","site_detail_url":"https://comicvine.gamespot.com/videos/batman-return-to-arkham-side-by-side-comparison-tr/2300-3235/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5421212-cv_tr_returnarkhamcomp_201606sep.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"9MsiaumVbzc","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/06/cv_tr_returnarkhamcomp_201606sep_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/06/cv_tr_returnarkhamcomp_201606sep_3200.mp4","url":"cv_tr_returnarkhamcomp_201606sep.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3233/","deck":"This fall we get classics like the 20th season of South Park as well as new twists such as Ash Vs Evil Dead.","embed_player":"https://comicvine.gamespot.com/videos/embed/3233/","guid":"2300-3233","id":3233,"length_seconds":152,"name":"Top 5 Returning Fall TV - The Flash, The Walking Dead, Black Mirror","premium":false,"publish_date":"2016-09-04 09:30:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-5-returning-fall-tv-the-flash-the-walking-dead/2300-3233/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5414494-top5_returningfalltv_20160901_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"inferiorego","crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"ese073nrslU","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/02/Top5_ReturningFallTV_20160901v2_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/02/Top5_ReturningFallTV_20160901v2_3200.mp4","url":"Top5_ReturningFallTV_20160901v2.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3232/","deck":"HBO gets a new drama, Westworld, while new horror abounds this fall with shows such as Channel Zero.","embed_player":"https://comicvine.gamespot.com/videos/embed/3232/","guid":"2300-3232","id":3232,"length_seconds":167,"name":"Top 5 New TV Shows This Fall - Luke Cage, Son of Zorn, The Exorcist","premium":false,"publish_date":"2016-09-03 09:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-5-new-tv-shows-this-fall-luke-cage-son-of-zorn/2300-3232/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5414487-top5_newfalltv_20160901_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"inferiorego","crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"9Q3NpItgl84","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/02/Top5_NewFallTV_20160901v2_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/02/Top5_NewFallTV_20160901v2_3200.mp4","url":"Top5_NewFallTV_20160901v2.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3225/","deck":"Check out the Jim Lee Superman Blueline edition.","embed_player":"https://comicvine.gamespot.com/videos/embed/3225/","guid":"2300-3225","id":3225,"length_seconds":98,"name":"Jim Lee Superman Unboxing","premium":false,"publish_date":"2016-09-02 09:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/jim-lee-superman-unboxing/2300-3225/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5412736-jimleesupermanunboxing.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5412736-jimleesupermanunboxing.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5412736-jimleesupermanunboxing.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5412736-jimleesupermanunboxing.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5412736-jimleesupermanunboxing.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5412736-jimleesupermanunboxing.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5412736-jimleesupermanunboxing.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5412736-jimleesupermanunboxing.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5412736-jimleesupermanunboxing.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"aclarkp","video_type":"Feature, Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"hS29RnVUL7Y","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/01/JimLeeSupermanUnboxing_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/01/JimLeeSupermanUnboxing_3200.mp4","url":"JimLeeSupermanUnboxing.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3224/","deck":"Jesse Blaze Snider has combined his love for music and comics in an upcoming book.","embed_player":"https://comicvine.gamespot.com/videos/embed/3224/","guid":"2300-3224","id":3224,"length_seconds":207,"name":"Listen to \"Hammer\" from the Black Light District EP and Comic","premium":false,"publish_date":"2016-09-01 10:59:00","site_detail_url":"https://comicvine.gamespot.com/videos/listen-to-hammer-from-the-black-light-district-ep-/2300-3224/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5412621-cv_tr_hammer_201601sep.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5412621-cv_tr_hammer_201601sep.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5412621-cv_tr_hammer_201601sep.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5412621-cv_tr_hammer_201601sep.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5412621-cv_tr_hammer_201601sep.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5412621-cv_tr_hammer_201601sep.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5412621-cv_tr_hammer_201601sep.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5412621-cv_tr_hammer_201601sep.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5412621-cv_tr_hammer_201601sep.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"0EIaleQLciE","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/01/cv_tr_hammer_201601sep_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/09/01/cv_tr_hammer_201601sep_3200.mp4","url":"cv_tr_hammer_201601sep.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3222/","deck":"Check out this Dark Knight III: The Master Race Batman Statue by Andy Kubert!","embed_player":"https://comicvine.gamespot.com/videos/embed/3222/","guid":"2300-3222","id":3222,"length_seconds":108,"name":"Andy Kubert Batman Unboxing","premium":false,"publish_date":"2016-08-31 14:09:00","site_detail_url":"https://comicvine.gamespot.com/videos/andy-kubert-batman-unboxing/2300-3222/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5411232-batmanunboxing.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5411232-batmanunboxing.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5411232-batmanunboxing.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5411232-batmanunboxing.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5411232-batmanunboxing.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5411232-batmanunboxing.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5411232-batmanunboxing.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5411232-batmanunboxing.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5411232-batmanunboxing.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"aclarkp","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"-DdBp_9ftF4","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/31/BatmanUnboxing_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/31/BatmanUnboxing_3200.mp4","url":"BatmanUnboxing.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3220/","deck":"From Justice League fame, son of Atlantian royalty and all around champion of the deep blue sea, check out the history of Aquaman.","embed_player":"https://comicvine.gamespot.com/videos/embed/3220/","guid":"2300-3220","id":3220,"length_seconds":252,"name":"Who the Heck is Aquaman?","premium":false,"publish_date":"2016-08-30 08:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/who-the-heck-is-aquaman/2300-3220/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5407904-feature_wth_aquaman_20160810.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":null,"video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"kamTC2oXAtk","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/30/Feature_WTH_Aquaman_20160810_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/30/Feature_WTH_Aquaman_20160810_3200.mp4","url":"Feature_WTH_Aquaman_20160810.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3221/","deck":"For all his strengths and powers, Aquaman has received a steady stream of ridicule over the years, but why?","embed_player":"https://comicvine.gamespot.com/videos/embed/3221/","guid":"2300-3221","id":3221,"length_seconds":113,"name":"Why is Aquaman Lame?","premium":false,"publish_date":"2016-08-30 08:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/why-is-aquaman-lame/2300-3221/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5407919-aquamanislame.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5407919-aquamanislame.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5407919-aquamanislame.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5407919-aquamanislame.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5407919-aquamanislame.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5407919-aquamanislame.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5407919-aquamanislame.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5407919-aquamanislame.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5407919-aquamanislame.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"gmanfromheck","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"O6NA7ljQ78g","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/30/AquamanisLame_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/30/AquamanisLame_3200.mp4","url":"AquamanisLame.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3219/","deck":"We remember the iconic comedian and actor Gene Wilder. From Charlie and the Chocolate Factory to Blazing Saddles, he was one of the greats.","embed_player":"https://comicvine.gamespot.com/videos/embed/3219/","guid":"2300-3219","id":3219,"length_seconds":105,"name":"Remembering Gene Wilder","premium":false,"publish_date":"2016-08-29 17:48:00","site_detail_url":"https://comicvine.gamespot.com/videos/remembering-gene-wilder/2300-3219/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5407887-rememberinggenewilder.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5407887-rememberinggenewilder.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5407887-rememberinggenewilder.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5407887-rememberinggenewilder.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5407887-rememberinggenewilder.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5407887-rememberinggenewilder.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5407887-rememberinggenewilder.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5407887-rememberinggenewilder.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5407887-rememberinggenewilder.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"j0ZDCl1bQiU","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/30/RememberingGeneWilder_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/30/RememberingGeneWilder_3200.mp4","url":"RememberingGeneWilder.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3218/","deck":"Check out Funko's The Amazing Spider-Man pack with tons of goodies!","embed_player":"https://comicvine.gamespot.com/videos/embed/3218/","guid":"2300-3218","id":3218,"length_seconds":121,"name":"The Amazing Spider-Man Funko Unboxing","premium":false,"publish_date":"2016-08-26 10:34:00","site_detail_url":"https://comicvine.gamespot.com/videos/the-amazing-spider-man-funko-unboxing/2300-3218/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5402300-funkospider-manunboxing.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5402300-funkospider-manunboxing.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5402300-funkospider-manunboxing.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5402300-funkospider-manunboxing.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5402300-funkospider-manunboxing.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5402300-funkospider-manunboxing.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5402300-funkospider-manunboxing.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5402300-funkospider-manunboxing.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5402300-funkospider-manunboxing.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"aclarkp","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"Oa1TaU70sGE","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/26/FunkoSpider_ManUnboxing_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/26/FunkoSpider_ManUnboxing_3200.mp4","url":"FunkoSpider_ManUnboxing.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3217/","deck":"Let the speculation begin! The first casting calls are revealed for Season 7 and we're guessing who we think are going to fill to some major voids in Game of Thrones.","embed_player":"https://comicvine.gamespot.com/videos/embed/3217/","guid":"2300-3217","id":3217,"length_seconds":271,"name":"Casting Calls for Game of Thrones Season 7","premium":false,"publish_date":"2016-08-25 17:40:00","site_detail_url":"https://comicvine.gamespot.com/videos/casting-calls-for-game-of-thrones-season-7/2300-3217/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5401318-gotseason7casting_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5401318-gotseason7casting_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5401318-gotseason7casting_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5401318-gotseason7casting_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5401318-gotseason7casting_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5401318-gotseason7casting_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5401318-gotseason7casting_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5401318-gotseason7casting_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5401318-gotseason7casting_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"ryanerikp","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"UdA3dvB2vvE","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/26/GoTSeason7Casting_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/26/GoTSeason7Casting_3200.mp4","url":"GoTSeason7Casting.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3216/","deck":"This week theaters get the horrifying Don't Breathe, punishing Hands of Stone, and action-packed The Mechanic: Resurrection.","embed_player":"https://comicvine.gamespot.com/videos/embed/3216/","guid":"2300-3216","id":3216,"length_seconds":129,"name":"New Releases: Don't Breathe, Hands of Stone, The Mechanic: Resurrection","premium":false,"publish_date":"2016-08-25 08:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/new-releases-dont-breathe-hands-of-stone-the-mecha/2300-3216/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5399490-newreleases_tvmovies08242016.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"ryanerikp","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"g36EN5VYMTg","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/25/NewReleases_TVMovies08242016_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/25/NewReleases_TVMovies08242016_3200.mp4","url":"NewReleases_TVMovies08242016.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3215/","deck":"Check out this DC Collectibles Killer Croc from Suicide Squad.","embed_player":"https://comicvine.gamespot.com/videos/embed/3215/","guid":"2300-3215","id":3215,"length_seconds":100,"name":"Suicide Squad's Killer Croc Unboxing","premium":false,"publish_date":"2016-08-24 11:40:00","site_detail_url":"https://comicvine.gamespot.com/videos/suicide-squads-killer-croc-unboxing/2300-3215/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5399062-killercrocunboxingsite.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5399062-killercrocunboxingsite.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5399062-killercrocunboxingsite.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5399062-killercrocunboxingsite.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5399062-killercrocunboxingsite.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5399062-killercrocunboxingsite.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5399062-killercrocunboxingsite.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5399062-killercrocunboxingsite.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5399062-killercrocunboxingsite.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"aclarkp","video_type":"Unboxing","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-13/","id":13,"name":"Unboxing","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/"}],"saved_time":null,"youtube_id":"W_sjgeJlEpQ","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/24/KillerCrocUnboxing_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/24/KillerCrocUnboxing_3200.mp4","url":"KillerCrocUnboxing.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3214/","deck":"GameSpot shares nine fun facts about The Tick that you should know before watching Amazon's new streaming series.","embed_player":"https://comicvine.gamespot.com/videos/embed/3214/","guid":"2300-3214","id":3214,"length_seconds":214,"name":"9 Things To Know About The Tick","premium":false,"publish_date":"2016-08-18 16:20:00","site_detail_url":"https://comicvine.gamespot.com/videos/9-things-to-know-about-the-tick/2300-3214/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5389374-9thingstoknowthetick_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"inferiorego","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"AOvm3xnhtrs","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/19/9ThingsToKnowTheTickv1_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/19/9ThingsToKnowTheTickv1_3200.mp4","url":"9ThingsToKnowTheTickv1.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3213/","deck":"From the Hangover directors take on arms dealing with War Dogs, to Daniel Radcliffe going under deep cover in Imperium, check out what this week brings in new film releases.","embed_player":"https://comicvine.gamespot.com/videos/embed/3213/","guid":"2300-3213","id":3213,"length_seconds":129,"name":"New Releases: War Dogs, Imperium, The Tick","premium":false,"publish_date":"2016-08-18 16:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/new-releases-war-dogs-imperium-the-tick/2300-3213/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5389331-newreleases_tvmovies20160818.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"ryanerikp","crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"q2-o-BpogDY","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/19/NewReleases_TVMovies20160818v1_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/19/NewReleases_TVMovies20160818v1_3200.mp4","url":"NewReleases_TVMovies20160818v1.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3212/","deck":"Check out this exclusive clip to find out what you need to know in order to deal with a Deadite or the Evil Dead.","embed_player":"https://comicvine.gamespot.com/videos/embed/3212/","guid":"2300-3212","id":3212,"length_seconds":50,"name":"Ash vs. Evil Dead: \"How to Kill a Deadite\" Clip","premium":false,"publish_date":"2016-08-18 09:30:00","site_detail_url":"https://comicvine.gamespot.com/videos/ash-vs-evil-dead-how-to-kill-a-deadite-clip/2300-3212/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5388409-cv_tr_ashkill_1618aug.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5388409-cv_tr_ashkill_1618aug.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5388409-cv_tr_ashkill_1618aug.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5388409-cv_tr_ashkill_1618aug.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5388409-cv_tr_ashkill_1618aug.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5388409-cv_tr_ashkill_1618aug.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5388409-cv_tr_ashkill_1618aug.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5388409-cv_tr_ashkill_1618aug.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5388409-cv_tr_ashkill_1618aug.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"EE98H4dz2G8","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/18/cv_tr_ashkill_1618aug_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/18/cv_tr_ashkill_1618aug_3200.mp4","url":"cv_tr_ashkill_1618aug.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3211/","deck":"Supergirl will be part of an exclusive starter pack.","embed_player":"https://comicvine.gamespot.com/videos/embed/3211/","guid":"2300-3211","id":3211,"length_seconds":40,"name":"Supergirl Joins LEGO Dimensions","premium":false,"publish_date":"2016-08-16 06:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/supergirl-joins-lego-dimensions/2300-3211/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/40/5384127-cv_tr_legodsupergirl_1616aug.jpg","image_tags":"All Images"},"user":"gmanfromheck","hosts":null,"crew":null,"video_type":"Trailer","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-2/","id":2,"name":"Trailer","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/"}],"saved_time":null,"youtube_id":"A4N8jTgk8M0","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/16/cv_tr_legodsupergirl_1616aug_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/16/cv_tr_legodsupergirl_1616aug_3200.mp4","url":"cv_tr_legodsupergirl_1616aug.mov"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3210/","deck":"Which couches, chairs and thrones are the most famous from TV and film? Follow along as we count down our Top 9.","embed_player":"https://comicvine.gamespot.com/videos/embed/3210/","guid":"2300-3210","id":3210,"length_seconds":218,"name":"Top 9 Most Famous Couches and Thrones","premium":false,"publish_date":"2016-08-13 08:00:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-9-most-famous-couches-and-thrones/2300-3210/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5377246-top9couchesthrones_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5377246-top9couchesthrones_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5377246-top9couchesthrones_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5377246-top9couchesthrones_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5377246-top9couchesthrones_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5377246-top9couchesthrones_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5377246-top9couchesthrones_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5377246-top9couchesthrones_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5377246-top9couchesthrones_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"ryanerikp","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"URYrO5PJCj0","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/Top9CouchesThrones_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/Top9CouchesThrones_3200.mp4","url":"Top9CouchesThrones.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3209/","deck":"Learn of how Superwoman absorbed her powers in this comic update.","embed_player":"https://comicvine.gamespot.com/videos/embed/3209/","guid":"2300-3209","id":3209,"length_seconds":90,"name":"Superwoman Comic Update (Spoilers)","premium":false,"publish_date":"2016-08-12 16:21:00","site_detail_url":"https://comicvine.gamespot.com/videos/superwoman-comic-update-spoilers/2300-3209/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5377231-superwomancomicupdatesite.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5377231-superwomancomicupdatesite.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5377231-superwomancomicupdatesite.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5377231-superwomancomicupdatesite.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5377231-superwomancomicupdatesite.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5377231-superwomancomicupdatesite.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5377231-superwomancomicupdatesite.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5377231-superwomancomicupdatesite.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5377231-superwomancomicupdatesite.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"aclarkp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"Fz0hhcNYlNg","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/SuperwomanComicUpdate_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/SuperwomanComicUpdate_3200.mp4","url":"SuperwomanComicUpdate.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3208/","deck":"We take a deeper look at the new Rogue One trailer and find out everything we can about the upcoming Star Wars stand-alone epic.","embed_player":"https://comicvine.gamespot.com/videos/embed/3208/","guid":"2300-3208","id":3208,"length_seconds":145,"name":"New Rogue One Trailer: Video Breakdown","premium":false,"publish_date":"2016-08-12 13:21:00","site_detail_url":"https://comicvine.gamespot.com/videos/new-rogue-one-trailer-video-breakdown/2300-3208/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5376945-star%20wars%20trailer%202%20breakdown_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"gO5n9JQnLDw","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/StarWarsTrailer2Breakdown_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/StarWarsTrailer2Breakdown_3200.mp4","url":"StarWarsTrailer2Breakdown.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3207/","deck":"Man of Steel is finally getting a sequel and we have the top three villains we'd like to see Superman face off against.","embed_player":"https://comicvine.gamespot.com/videos/embed/3207/","guid":"2300-3207","id":3207,"length_seconds":143,"name":"Top 3 Villains For Man of Steel Sequel","premium":false,"publish_date":"2016-08-12 11:30:00","site_detail_url":"https://comicvine.gamespot.com/videos/top-3-villains-for-man-of-steel-sequel/2300-3207/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5376721-man%20of%20steel%20villains_gs.jpg","image_tags":"All Images"},"user":"cadamien","hosts":"gmanfromheck","crew":"ryanerikp","video_type":"Feature","video_show":null,"video_categories":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_category/2320-3/","id":3,"name":"Feature","site_detail_url":"https://comicvine.gamespot.com/videos/feature/"}],"saved_time":null,"youtube_id":"Kr1rTwUJxSQ","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/ManofSteelVillains_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/ManofSteelVillains_3200.mp4","url":"ManofSteelVillains.mp4"},{"api_detail_url":"https://comicvine.gamespot.com/api/video/2300-3206/","deck":"We've scoured the bombastic new Rogue One trailer, and these are the 5 things we loved the most.","embed_player":"https://comicvine.gamespot.com/videos/embed/3206/","guid":"2300-3206","id":3206,"length_seconds":45,"name":"New Rogue One Trailer: 5 Best Moments","premium":false,"publish_date":"2016-08-12 10:49:00","site_detail_url":"https://comicvine.gamespot.com/videos/new-rogue-one-trailer-5-best-moments/2300-3206/","image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11128/111284291/5376637-feature_rogueonetop5coolthings_20160812site.jpg","image_tags":"All Images"},"user":"cadamien","hosts":null,"crew":null,"video_type":null,"video_show":null,"video_categories":[],"saved_time":null,"youtube_id":"FIwBfLyZRVE","low_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/Feature_RogueOneTop5CoolThings_20160812_1800.mp4","high_url":"https://static-mt-rv-v1.comicvine.com/vr/2016/08/12/Feature_RogueOneTop5CoolThings_20160812_3200.mp4","url":"Feature_RogueOneTop5CoolThings_20160812.mp4"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-type-details/video_type-2320-12.json b/samples/api-data/video-type-details/video_type-2320-12.json new file mode 100644 index 0000000..e71a807 --- /dev/null +++ b/samples/api-data/video-type-details/video_type-2320-12.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/12/","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/","deck":"Comic artists are given the challenge of drawing a familiar character and a random object.","id":12,"name":"Mystery Art Challenge"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-type-details/video_type-2320-2.json b/samples/api-data/video-type-details/video_type-2320-2.json new file mode 100644 index 0000000..c797bba --- /dev/null +++ b/samples/api-data/video-type-details/video_type-2320-2.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/2/","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/","deck":null,"id":2,"name":"Trailer"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-type-details/video_type-2320-3.json b/samples/api-data/video-type-details/video_type-2320-3.json new file mode 100644 index 0000000..1b68892 --- /dev/null +++ b/samples/api-data/video-type-details/video_type-2320-3.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/3/","site_detail_url":"https://comicvine.gamespot.com/videos/feature/","deck":null,"id":3,"name":"Feature"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-type-details/video_type-2320-7.json b/samples/api-data/video-type-details/video_type-2320-7.json new file mode 100644 index 0000000..ac233de --- /dev/null +++ b/samples/api-data/video-type-details/video_type-2320-7.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/7/","site_detail_url":"https://comicvine.gamespot.com/videos/3-min.-expert/","deck":null,"id":7,"name":"3-Min. Expert"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-type-details/video_type-2320-8.json b/samples/api-data/video-type-details/video_type-2320-8.json new file mode 100644 index 0000000..0d6ba98 --- /dev/null +++ b/samples/api-data/video-type-details/video_type-2320-8.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/8/","site_detail_url":"https://comicvine.gamespot.com/videos/preview-theatre/","deck":null,"id":8,"name":"Preview Theatre"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/video-type-list-item/video_types.json b/samples/api-data/video-type-list-item/video_types.json new file mode 100644 index 0000000..45c4c61 --- /dev/null +++ b/samples/api-data/video-type-list-item/video_types.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":11,"number_of_total_results":11,"status_code":1,"results":[{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/7/","site_detail_url":"https://comicvine.gamespot.com/videos/3-min.-expert/","deck":null,"id":7,"name":"3-Min. Expert"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/11/","site_detail_url":"https://comicvine.gamespot.com/videos/best-stuff-in-comics/","deck":"The other best stuff you might have missed this week.","id":11,"name":"Best Stuff In Comics"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/10/","site_detail_url":"https://comicvine.gamespot.com/videos/comic-book-2-minute-time-out/","deck":"An attempt to discuss a topic within two minutes.","id":10,"name":"Comic Book 2-Minute Time-Out"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/4/","site_detail_url":"https://comicvine.gamespot.com/videos/events/","deck":null,"id":4,"name":"Events"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/3/","site_detail_url":"https://comicvine.gamespot.com/videos/feature/","deck":null,"id":3,"name":"Feature"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/12/","site_detail_url":"https://comicvine.gamespot.com/videos/mystery-art-challenge/","deck":"Comic artists are given the challenge of drawing a familiar character and a random object.","id":12,"name":"Mystery Art Challenge"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/8/","site_detail_url":"https://comicvine.gamespot.com/videos/preview-theatre/","deck":null,"id":8,"name":"Preview Theatre"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/1/","site_detail_url":"https://comicvine.gamespot.com/videos/review/","deck":null,"id":1,"name":"Review"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/9/","site_detail_url":"https://comicvine.gamespot.com/videos/subscriber/","deck":null,"id":9,"name":"Subscriber"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/2/","site_detail_url":"https://comicvine.gamespot.com/videos/trailer/","deck":null,"id":2,"name":"Trailer"},{"api_detail_url":"https://comicvine.gamespot.com/api/video_type/13/","site_detail_url":"https://comicvine.gamespot.com/videos/unboxing/","deck":"What's in the box?","id":13,"name":"Unboxing"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/volume-details/volume-4050-1141.json b/samples/api-data/volume-details/volume-4050-1141.json new file mode 100644 index 0000000..691844d --- /dev/null +++ b/samples/api-data/volume-details/volume-4050-1141.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1141/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-43451/","id":43451,"name":"Cindy","site_detail_url":"https://comicvine.gamespot.com/cindy/4005-43451/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-7620/","id":7620,"name":"Margie","site_detail_url":"https://comicvine.gamespot.com/margie/4005-7620/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-3316/","id":3316,"name":"Hellcat","site_detail_url":"https://comicvine.gamespot.com/hellcat/4005-3316/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12727/","id":12727,"name":"Nancy Brown","site_detail_url":"https://comicvine.gamespot.com/nancy-brown/4005-12727/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12730/","id":12730,"name":"Dorothy Walker","site_detail_url":"https://comicvine.gamespot.com/dorothy-walker/4005-12730/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12726/","id":12726,"name":"Mad-Dog","site_detail_url":"https://comicvine.gamespot.com/mad-dog/4005-12726/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12731/","id":12731,"name":"Joshua Walker","site_detail_url":"https://comicvine.gamespot.com/joshua-walker/4005-12731/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68013/","id":68013,"name":"Little Lizzie","site_detail_url":"https://comicvine.gamespot.com/little-lizzie/4005-68013/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9375/","id":9375,"name":"Tessie the Typist","site_detail_url":"https://comicvine.gamespot.com/tessie-the-typist/4005-9375/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9687/","id":9687,"name":"Georgie","site_detail_url":"https://comicvine.gamespot.com/georgie/4005-9687/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12722/","id":12722,"name":"Hedy Wolfe","site_detail_url":"https://comicvine.gamespot.com/hedy-wolfe/4005-12722/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-12739/","id":12739,"name":"Mickey Walker","site_detail_url":"https://comicvine.gamespot.com/mickey-walker/4005-12739/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-15288/","id":15288,"name":"Willie Lumpkin","site_detail_url":"https://comicvine.gamespot.com/willie-lumpkin/4005-15288/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-18526/","id":18526,"name":"Millie the Model","site_detail_url":"https://comicvine.gamespot.com/millie-the-model/4005-18526/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-68014/","id":68014,"name":"Hedy De Vine","site_detail_url":"https://comicvine.gamespot.com/hedy-de-vine/4005-68014/","count":"1"}],"count_of_issues":12,"date_added":"2008-06-06 11:08:04","date_last_updated":"2009-12-14 20:20:43","deck":null,"description":"

    Numbered 27 to 38 for a total of 12 issues. Series continued from Krazy Komics and continues into Cindy Smith.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90603/","id":90603,"name":"Her Caveman Rave-Man!","issue_number":"27"},"id":1141,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57608-1141-90603-1-cindy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57608-1141-90603-1-cindy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57608-1141-90603-1-cindy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57608-1141-90603-1-cindy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57608-1141-90603-1-cindy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57608-1141-90603-1-cindy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57608-1141-90603-1-cindy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57608-1141-90603-1-cindy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57608-1141-90603-1-cindy-comics.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90603/","id":90603,"name":"Her Caveman Rave-Man!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-27-her-caveman-rave-man/4000-90603/","issue_number":"27"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90604/","id":90604,"name":"Oh! Those Clothes!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-28-oh-those-clothes/4000-90604/","issue_number":"28"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90605/","id":90605,"name":"Meet Casanova Jones","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-29-meet-casanova-jones/4000-90605/","issue_number":"29"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90606/","id":90606,"name":"Just A Model Gal!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-30-just-a-model-gal/4000-90606/","issue_number":"30"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90607/","id":90607,"name":"Sandra Gets Stuck!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-31-sandra-gets-stuck/4000-90607/","issue_number":"31"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90608/","id":90608,"name":"Willful Women!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-32-willful-women/4000-90608/","issue_number":"32"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90609/","id":90609,"name":"Photo Frame-Up!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-33-photo-frame-up/4000-90609/","issue_number":"33"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90610/","id":90610,"name":"Strong Stuff!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-34-strong-stuff/4000-90610/","issue_number":"34"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90611/","id":90611,"name":"Hedy's Hound!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-35-hedys-hound/4000-90611/","issue_number":"35"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90612/","id":90612,"name":"The Missing House","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-36-the-missing-house/4000-90612/","issue_number":"36"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90613/","id":90613,"name":"","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-37/4000-90613/","issue_number":"37"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90614/","id":90614,"name":"The Old Maid!","site_detail_url":"https://comicvine.gamespot.com/cindy-comics-38-the-old-maid/4000-90614/","issue_number":"38"}],"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90614/","id":90614,"name":"The Old Maid!","issue_number":"38"},"name":"Cindy Comics","objects":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-43451/","id":43451,"name":"Cindy","site_detail_url":"https://comicvine.gamespot.com/cindy/4005-43451/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-7620/","id":7620,"name":"Margie","site_detail_url":"https://comicvine.gamespot.com/margie/4005-7620/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-3316/","id":3316,"name":"Hellcat","site_detail_url":"https://comicvine.gamespot.com/hellcat/4005-3316/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-12727/","id":12727,"name":"Nancy Brown","site_detail_url":"https://comicvine.gamespot.com/nancy-brown/4005-12727/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-12730/","id":12730,"name":"Dorothy Walker","site_detail_url":"https://comicvine.gamespot.com/dorothy-walker/4005-12730/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-12726/","id":12726,"name":"Mad-Dog","site_detail_url":"https://comicvine.gamespot.com/mad-dog/4005-12726/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-12731/","id":12731,"name":"Joshua Walker","site_detail_url":"https://comicvine.gamespot.com/joshua-walker/4005-12731/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-68013/","id":68013,"name":"Little Lizzie","site_detail_url":"https://comicvine.gamespot.com/little-lizzie/4005-68013/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-9375/","id":9375,"name":"Tessie the Typist","site_detail_url":"https://comicvine.gamespot.com/tessie-the-typist/4005-9375/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-9687/","id":9687,"name":"Georgie","site_detail_url":"https://comicvine.gamespot.com/georgie/4005-9687/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-12722/","id":12722,"name":"Hedy Wolfe","site_detail_url":"https://comicvine.gamespot.com/hedy-wolfe/4005-12722/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-12739/","id":12739,"name":"Mickey Walker","site_detail_url":"https://comicvine.gamespot.com/mickey-walker/4005-12739/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-15288/","id":15288,"name":"Willie Lumpkin","site_detail_url":"https://comicvine.gamespot.com/willie-lumpkin/4005-15288/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-18526/","id":18526,"name":"Millie the Model","site_detail_url":"https://comicvine.gamespot.com/millie-the-model/4005-18526/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-68014/","id":68014,"name":"Hedy De Vine","site_detail_url":"https://comicvine.gamespot.com/hedy-de-vine/4005-68014/","count":"1"}],"people":[{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-7619/","id":7619,"name":"Morris Weiss","site_detail_url":"https://comicvine.gamespot.com/morris-weiss/4040-7619/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-36196/","id":36196,"name":"Ken Bald","site_detail_url":"https://comicvine.gamespot.com/ken-bald/4040-36196/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-3909/","id":3909,"name":"Harvey Kurtzman","site_detail_url":"https://comicvine.gamespot.com/harvey-kurtzman/4040-3909/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-42202/","id":42202,"name":"Al Jaffee","site_detail_url":"https://comicvine.gamespot.com/al-jaffee/4040-42202/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/","count":"1"}],"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/cindy-comics/4050-1141/","start_year":"1947"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/volume-details/volume-4050-1144.json b/samples/api-data/volume-details/volume-4050-1144.json new file mode 100644 index 0000000..4ad05f0 --- /dev/null +++ b/samples/api-data/volume-details/volume-4050-1144.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1144/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-98468/","id":98468,"name":"Alphonse Bertillon","site_detail_url":"https://comicvine.gamespot.com/alphonse-bertillon/4005-98468/","count":"1"}],"count_of_issues":45,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-05-29 10:43:36","deck":"Justice: Every Case Taken From Real Life!!","description":"

    Continued from Wacky Duck, Justice ran during 1947 through 1955 for 52 issues.The first three issues (7-9) were renumbered to 1-3, and the series continued with issue 4 in Justice Comics (1947) and in Justice Comics (1948).

    This series featured crime-themed adventures, in which justice always prevailed. It was continued as Tales Of Justice with issue 53.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90923/","id":90923,"name":null,"issue_number":"8"},"id":1144,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57928-1144-90923-1-justice.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57928-1144-90923-1-justice.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57928-1144-90923-1-justice.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57928-1144-90923-1-justice.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57928-1144-90923-1-justice.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57928-1144-90923-1-justice.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57928-1144-90923-1-justice.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57928-1144-90923-1-justice.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57928-1144-90923-1-justice.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-803/","id":803,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-41/4000-803/","issue_number":"41"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90923/","id":90923,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-8/4000-90923/","issue_number":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90925/","id":90925,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-10/4000-90925/","issue_number":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90926/","id":90926,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-11/4000-90926/","issue_number":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90928/","id":90928,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-13/4000-90928/","issue_number":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90929/","id":90929,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-14/4000-90929/","issue_number":"14"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90930/","id":90930,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-15/4000-90930/","issue_number":"15"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90931/","id":90931,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-16/4000-90931/","issue_number":"16"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90932/","id":90932,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-17/4000-90932/","issue_number":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90933/","id":90933,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-18/4000-90933/","issue_number":"18"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90934/","id":90934,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-19/4000-90934/","issue_number":"19"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90935/","id":90935,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-20/4000-90935/","issue_number":"20"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90936/","id":90936,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-21/4000-90936/","issue_number":"21"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90937/","id":90937,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-22/4000-90937/","issue_number":"22"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90938/","id":90938,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-23/4000-90938/","issue_number":"23"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90939/","id":90939,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-24/4000-90939/","issue_number":"24"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90940/","id":90940,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-25/4000-90940/","issue_number":"25"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90941/","id":90941,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-26/4000-90941/","issue_number":"26"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90942/","id":90942,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-27/4000-90942/","issue_number":"27"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90943/","id":90943,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-29/4000-90943/","issue_number":"29"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90944/","id":90944,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-30/4000-90944/","issue_number":"30"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90945/","id":90945,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-31/4000-90945/","issue_number":"31"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90946/","id":90946,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-32/4000-90946/","issue_number":"32"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90947/","id":90947,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-33/4000-90947/","issue_number":"33"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90948/","id":90948,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-34/4000-90948/","issue_number":"34"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90949/","id":90949,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-35/4000-90949/","issue_number":"35"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90950/","id":90950,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-36/4000-90950/","issue_number":"36"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90951/","id":90951,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-37/4000-90951/","issue_number":"37"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90952/","id":90952,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-38/4000-90952/","issue_number":"38"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90953/","id":90953,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-39/4000-90953/","issue_number":"39"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90954/","id":90954,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-40/4000-90954/","issue_number":"40"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90955/","id":90955,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-42/4000-90955/","issue_number":"42"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90956/","id":90956,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-43/4000-90956/","issue_number":"43"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90957/","id":90957,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-44/4000-90957/","issue_number":"44"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90958/","id":90958,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-45/4000-90958/","issue_number":"45"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90959/","id":90959,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-46/4000-90959/","issue_number":"46"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90960/","id":90960,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-47/4000-90960/","issue_number":"47"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90961/","id":90961,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-48/4000-90961/","issue_number":"48"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90962/","id":90962,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-49/4000-90962/","issue_number":"49"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90963/","id":90963,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-50/4000-90963/","issue_number":"50"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90964/","id":90964,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-51/4000-90964/","issue_number":"51"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90965/","id":90965,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-52/4000-90965/","issue_number":"52"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-117097/","id":117097,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-28/4000-117097/","issue_number":"28"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-445723/","id":445723,"name":null,"site_detail_url":"https://comicvine.gamespot.com/justice-9/4000-445723/","issue_number":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-581420/","id":581420,"name":"","site_detail_url":"https://comicvine.gamespot.com/justice-12/4000-581420/","issue_number":"12"}],"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90965/","id":90965,"name":null,"issue_number":"52"},"name":"Justice","objects":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-98468/","id":98468,"name":"Alphonse Bertillon","site_detail_url":"https://comicvine.gamespot.com/alphonse-bertillon/4005-98468/","count":"1"}],"people":[{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-9680/","id":9680,"name":"Jerry Robinson","site_detail_url":"https://comicvine.gamespot.com/jerry-robinson/4040-9680/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-38329/","id":38329,"name":"Jack Keller","site_detail_url":"https://comicvine.gamespot.com/jack-keller/4040-38329/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-2619/","id":2619,"name":"Tony Dipreta","site_detail_url":"https://comicvine.gamespot.com/tony-dipreta/4040-2619/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-4255/","id":4255,"name":"Joe Sinnott","site_detail_url":"https://comicvine.gamespot.com/joe-sinnott/4040-4255/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-6102/","id":6102,"name":"Russ Heath","site_detail_url":"https://comicvine.gamespot.com/russ-heath/4040-6102/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-7532/","id":7532,"name":"John Forte","site_detail_url":"https://comicvine.gamespot.com/john-forte/4040-7532/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-7580/","id":7580,"name":"Joe Maneely","site_detail_url":"https://comicvine.gamespot.com/joe-maneely/4040-7580/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-9435/","id":9435,"name":"George Tuska","site_detail_url":"https://comicvine.gamespot.com/george-tuska/4040-9435/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-9681/","id":9681,"name":"Stan Goldberg","site_detail_url":"https://comicvine.gamespot.com/stan-goldberg/4040-9681/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-9691/","id":9691,"name":"Mike Sekowsky","site_detail_url":"https://comicvine.gamespot.com/mike-sekowsky/4040-9691/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-15895/","id":15895,"name":"Alex Toth","site_detail_url":"https://comicvine.gamespot.com/alex-toth/4040-15895/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-27926/","id":27926,"name":"Doug Wildey","site_detail_url":"https://comicvine.gamespot.com/doug-wildey/4040-27926/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-29364/","id":29364,"name":"Ross Andru","site_detail_url":"https://comicvine.gamespot.com/ross-andru/4040-29364/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-33764/","id":33764,"name":"Paul Reinman","site_detail_url":"https://comicvine.gamespot.com/paul-reinman/4040-33764/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-40203/","id":40203,"name":"Robert Sale","site_detail_url":"https://comicvine.gamespot.com/robert-sale/4040-40203/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-43443/","id":43443,"name":"Vic Carrabotta","site_detail_url":"https://comicvine.gamespot.com/vic-carrabotta/4040-43443/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-43823/","id":43823,"name":"Paul Cooper","site_detail_url":"https://comicvine.gamespot.com/paul-cooper/4040-43823/","count":"1"}],"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-75/","id":75,"name":"Atlas"},"site_detail_url":"https://comicvine.gamespot.com/justice/4050-1144/","start_year":"1947"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/volume-details/volume-4050-1153.json b/samples/api-data/volume-details/volume-4050-1153.json new file mode 100644 index 0000000..b3bd481 --- /dev/null +++ b/samples/api-data/volume-details/volume-4050-1153.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1153/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-5151/","id":5151,"name":"Starr Flagg","site_detail_url":"https://comicvine.gamespot.com/starr-flagg/4005-5151/","count":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83667/","id":83667,"name":"The Red Fox","site_detail_url":"https://comicvine.gamespot.com/the-red-fox/4005-83667/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-83668/","id":83668,"name":"Fallon of the FBI","site_detail_url":"https://comicvine.gamespot.com/fallon-of-the-fbi/4005-83668/","count":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-110274/","id":110274,"name":"Tanya Darkova","site_detail_url":"https://comicvine.gamespot.com/tanya-darkova/4005-110274/","count":"1"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-56570/","id":56570,"name":"Catfight","site_detail_url":"https://comicvine.gamespot.com/catfight/4015-56570/","count":"4"}],"count_of_issues":13,"date_added":"2008-06-06 11:08:04","date_last_updated":"2012-05-01 13:16:30","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105257/","id":105257,"name":null,"issue_number":"1"},"id":1153,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/72259-1153-105257-1-manhunt.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/72259-1153-105257-1-manhunt.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/72259-1153-105257-1-manhunt.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/72259-1153-105257-1-manhunt.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/72259-1153-105257-1-manhunt.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/72259-1153-105257-1-manhunt.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/72259-1153-105257-1-manhunt.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/72259-1153-105257-1-manhunt.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/72259-1153-105257-1-manhunt.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105257/","id":105257,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-1/4000-105257/","issue_number":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105258/","id":105258,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-5/4000-105258/","issue_number":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105259/","id":105259,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-13/4000-105259/","issue_number":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105260/","id":105260,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-14/4000-105260/","issue_number":"14"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-223984/","id":223984,"name":"Red Letter Day","site_detail_url":"https://comicvine.gamespot.com/manhunt-4-red-letter-day/4000-223984/","issue_number":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333811/","id":333811,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-2/4000-333811/","issue_number":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333812/","id":333812,"name":"Maid in the Morgue","site_detail_url":"https://comicvine.gamespot.com/manhunt-6-maid-in-the-morgue/4000-333812/","issue_number":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333813/","id":333813,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-7/4000-333813/","issue_number":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333814/","id":333814,"name":"Anubis Lord of Death","site_detail_url":"https://comicvine.gamespot.com/manhunt-11-anubis-lord-of-death/4000-333814/","issue_number":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333845/","id":333845,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-3/4000-333845/","issue_number":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-333947/","id":333947,"name":"","site_detail_url":"https://comicvine.gamespot.com/manhunt-8/4000-333947/","issue_number":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334256/","id":334256,"name":"The Quiet Shape of Death!","site_detail_url":"https://comicvine.gamespot.com/manhunt-9-the-quiet-shape-of-death/4000-334256/","issue_number":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-334257/","id":334257,"name":"Terror of the Totem","site_detail_url":"https://comicvine.gamespot.com/manhunt-10-terror-of-the-totem/4000-334257/","issue_number":"10"}],"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105260/","id":105260,"name":null,"issue_number":"14"},"name":"Manhunt","objects":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-5151/","id":5151,"name":"Starr Flagg","site_detail_url":"https://comicvine.gamespot.com/starr-flagg/4005-5151/","count":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-83667/","id":83667,"name":"The Red Fox","site_detail_url":"https://comicvine.gamespot.com/the-red-fox/4005-83667/","count":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-83668/","id":83668,"name":"Fallon of the FBI","site_detail_url":"https://comicvine.gamespot.com/fallon-of-the-fbi/4005-83668/","count":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-110274/","id":110274,"name":"Tanya Darkova","site_detail_url":"https://comicvine.gamespot.com/tanya-darkova/4005-110274/","count":"1"}],"people":[{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-41171/","id":41171,"name":"Gardner Fox","site_detail_url":"https://comicvine.gamespot.com/gardner-fox/4040-41171/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-6069/","id":6069,"name":"Ogden Whitney","site_detail_url":"https://comicvine.gamespot.com/ogden-whitney/4040-6069/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-40157/","id":40157,"name":"Fred Guardineer","site_detail_url":"https://comicvine.gamespot.com/fred-guardineer/4040-40157/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-42376/","id":42376,"name":"L.B. Cole","site_detail_url":"https://comicvine.gamespot.com/lb-cole/4040-42376/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-68532/","id":68532,"name":"Ray Krank","site_detail_url":"https://comicvine.gamespot.com/ray-krank/4040-68532/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-5649/","id":5649,"name":"Frank Frazetta","site_detail_url":"https://comicvine.gamespot.com/frank-frazetta/4040-5649/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-66039/","id":66039,"name":"Paul Parker","site_detail_url":"https://comicvine.gamespot.com/paul-parker/4040-66039/","count":"1"}],"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","id":84,"name":"Magazine Enterprises"},"site_detail_url":"https://comicvine.gamespot.com/manhunt/4050-1153/","start_year":"1947"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/volume-details/volume-4050-1168.json b/samples/api-data/volume-details/volume-4050-1168.json new file mode 100644 index 0000000..6de3fb2 --- /dev/null +++ b/samples/api-data/volume-details/volume-4050-1168.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1168/","characters":[{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16363/","id":16363,"name":"Binky Biggs","site_detail_url":"https://comicvine.gamespot.com/binky-biggs/4005-16363/","count":"49"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16444/","id":16444,"name":"Peggy Baxter","site_detail_url":"https://comicvine.gamespot.com/peggy-baxter/4005-16444/","count":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16246/","id":16246,"name":"Allergy","site_detail_url":"https://comicvine.gamespot.com/allergy/4005-16246/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16450/","id":16450,"name":"Lucy Biggs","site_detail_url":"https://comicvine.gamespot.com/lucy-biggs/4005-16450/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16453/","id":16453,"name":"Soozie","site_detail_url":"https://comicvine.gamespot.com/soozie/4005-16453/","count":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16459/","id":16459,"name":"Dopey the Dog","site_detail_url":"https://comicvine.gamespot.com/dopey-the-dog/4005-16459/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16462/","id":16462,"name":"Alice Biggs","site_detail_url":"https://comicvine.gamespot.com/alice-biggs/4005-16462/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16463/","id":16463,"name":"Uncle Snootly","site_detail_url":"https://comicvine.gamespot.com/uncle-snootly/4005-16463/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16441/","id":16441,"name":"Sherwood","site_detail_url":"https://comicvine.gamespot.com/sherwood/4005-16441/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16448/","id":16448,"name":"Herbert Gardenhose","site_detail_url":"https://comicvine.gamespot.com/herbert-gardenhose/4005-16448/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-9992/","id":9992,"name":"Bertram Biggs","site_detail_url":"https://comicvine.gamespot.com/bertram-biggs/4005-9992/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47403/","id":47403,"name":"Jerry the Jitterbug","site_detail_url":"https://comicvine.gamespot.com/jerry-the-jitterbug/4005-47403/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-47460/","id":47460,"name":"Varsity Vic","site_detail_url":"https://comicvine.gamespot.com/varsity-vic/4005-47460/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16457/","id":16457,"name":"Thurston","site_detail_url":"https://comicvine.gamespot.com/thurston/4005-16457/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16367/","id":16367,"name":"Benny","site_detail_url":"https://comicvine.gamespot.com/benny/4005-16367/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-16461/","id":16461,"name":"Mervin Merrill","site_detail_url":"https://comicvine.gamespot.com/mervin-merrill/4005-16461/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/character/4005-31120/","id":31120,"name":"Scribbly","site_detail_url":"https://comicvine.gamespot.com/scribbly/4005-31120/","count":"1"}],"concepts":[{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55820/","id":55820,"name":"Golden Age of Comics","site_detail_url":"https://comicvine.gamespot.com/golden-age-of-comics/4015-55820/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/concept/4015-55821/","id":55821,"name":"Silver Age of Comics","site_detail_url":"https://comicvine.gamespot.com/silver-age-of-comics/4015-55821/","count":"1"}],"count_of_issues":71,"date_added":"2008-06-06 11:08:04","date_last_updated":"2020-12-02 04:31:49","deck":null,"description":"

    Another teen title joined DC's lineup. Leave it to Binky centered on the hapless Binky Biggs and hi sefforts to date the beautiful Peggy, despite the interferences of his troublemaking younger brother \"Little Allergy.\" Edited by Sheldon Mayer with art by Bob Oskner, Leave it to Binky followed in the footsteps of DC's 1944 launch of the teen title Buzzy. Both titles reflected the fact that competitor Archie Comics had turned teen comics into big business through its popular freckle faced hero.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56353/","id":56353,"name":null,"issue_number":"1"},"id":1168,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56353/","id":56353,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-1/4000-56353/","issue_number":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56355/","id":56355,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-3/4000-56355/","issue_number":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56356/","id":56356,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-4/4000-56356/","issue_number":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56357/","id":56357,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-5/4000-56357/","issue_number":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56358/","id":56358,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-6/4000-56358/","issue_number":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56359/","id":56359,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-7/4000-56359/","issue_number":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56361/","id":56361,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-9/4000-56361/","issue_number":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56362/","id":56362,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-10/4000-56362/","issue_number":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56364/","id":56364,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-12/4000-56364/","issue_number":"12"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56365/","id":56365,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-13/4000-56365/","issue_number":"13"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56366/","id":56366,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-14/4000-56366/","issue_number":"14"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56367/","id":56367,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-15/4000-56367/","issue_number":"15"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56368/","id":56368,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-16/4000-56368/","issue_number":"16"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56369/","id":56369,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-17/4000-56369/","issue_number":"17"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56370/","id":56370,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-18/4000-56370/","issue_number":"18"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56374/","id":56374,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-22/4000-56374/","issue_number":"22"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56375/","id":56375,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-23/4000-56375/","issue_number":"23"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56377/","id":56377,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-25/4000-56377/","issue_number":"25"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56378/","id":56378,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-26/4000-56378/","issue_number":"26"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56379/","id":56379,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-27/4000-56379/","issue_number":"27"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56380/","id":56380,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-28/4000-56380/","issue_number":"28"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56381/","id":56381,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-29/4000-56381/","issue_number":"29"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56382/","id":56382,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-30/4000-56382/","issue_number":"30"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56383/","id":56383,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-31/4000-56383/","issue_number":"31"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56384/","id":56384,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-32/4000-56384/","issue_number":"32"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56385/","id":56385,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-33/4000-56385/","issue_number":"33"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56386/","id":56386,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-34/4000-56386/","issue_number":"34"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56388/","id":56388,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-36/4000-56388/","issue_number":"36"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56389/","id":56389,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-37/4000-56389/","issue_number":"37"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56391/","id":56391,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-39/4000-56391/","issue_number":"39"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56392/","id":56392,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-40/4000-56392/","issue_number":"40"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56393/","id":56393,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-41/4000-56393/","issue_number":"41"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56394/","id":56394,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-42/4000-56394/","issue_number":"42"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56395/","id":56395,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-43/4000-56395/","issue_number":"43"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56396/","id":56396,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-44/4000-56396/","issue_number":"44"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56397/","id":56397,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-45/4000-56397/","issue_number":"45"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56398/","id":56398,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-46/4000-56398/","issue_number":"46"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56399/","id":56399,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-47/4000-56399/","issue_number":"47"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56400/","id":56400,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-48/4000-56400/","issue_number":"48"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56402/","id":56402,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-50/4000-56402/","issue_number":"50"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56403/","id":56403,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-51/4000-56403/","issue_number":"51"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56407/","id":56407,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-55/4000-56407/","issue_number":"55"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56408/","id":56408,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-56/4000-56408/","issue_number":"56"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56409/","id":56409,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-57/4000-56409/","issue_number":"57"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56411/","id":56411,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-59/4000-56411/","issue_number":"59"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56412/","id":56412,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-60/4000-56412/","issue_number":"60"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56413/","id":56413,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-61/4000-56413/","issue_number":"61"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56414/","id":56414,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-62/4000-56414/","issue_number":"62"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56415/","id":56415,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-63/4000-56415/","issue_number":"63"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56416/","id":56416,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-64/4000-56416/","issue_number":"64"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56417/","id":56417,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-65/4000-56417/","issue_number":"65"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56418/","id":56418,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-66/4000-56418/","issue_number":"66"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56419/","id":56419,"name":"It's Snow Use","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-67-its-snow-use/4000-56419/","issue_number":"67"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56420/","id":56420,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-68/4000-56420/","issue_number":"68"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56421/","id":56421,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-69/4000-56421/","issue_number":"69"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56422/","id":56422,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-70/4000-56422/","issue_number":"70"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56423/","id":56423,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-71/4000-56423/","issue_number":"71"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202338/","id":202338,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-20/4000-202338/","issue_number":"20"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-202339/","id":202339,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-21/4000-202339/","issue_number":"21"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216579/","id":216579,"name":null,"site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-24/4000-216579/","issue_number":"24"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216675/","id":216675,"name":null,"site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-35/4000-216675/","issue_number":"35"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-216751/","id":216751,"name":null,"site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-54/4000-216751/","issue_number":"54"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254186/","id":254186,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-2/4000-254186/","issue_number":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254187/","id":254187,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-8/4000-254187/","issue_number":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-254188/","id":254188,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-49/4000-254188/","issue_number":"49"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396974/","id":396974,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-11/4000-396974/","issue_number":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396979/","id":396979,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-19/4000-396979/","issue_number":"19"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396981/","id":396981,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-38/4000-396981/","issue_number":"38"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396982/","id":396982,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-52/4000-396982/","issue_number":"52"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396983/","id":396983,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-53/4000-396983/","issue_number":"53"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-396984/","id":396984,"name":"","site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky-58/4000-396984/","issue_number":"58"}],"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56423/","id":56423,"name":null,"issue_number":"71"},"name":"Leave it to Binky","objects":[{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16363/","id":16363,"name":"Binky Biggs","site_detail_url":"https://comicvine.gamespot.com/binky-biggs/4005-16363/","count":"49"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16444/","id":16444,"name":"Peggy Baxter","site_detail_url":"https://comicvine.gamespot.com/peggy-baxter/4005-16444/","count":"11"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16246/","id":16246,"name":"Allergy","site_detail_url":"https://comicvine.gamespot.com/allergy/4005-16246/","count":"10"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16450/","id":16450,"name":"Lucy Biggs","site_detail_url":"https://comicvine.gamespot.com/lucy-biggs/4005-16450/","count":"9"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16453/","id":16453,"name":"Soozie","site_detail_url":"https://comicvine.gamespot.com/soozie/4005-16453/","count":"8"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16459/","id":16459,"name":"Dopey the Dog","site_detail_url":"https://comicvine.gamespot.com/dopey-the-dog/4005-16459/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16462/","id":16462,"name":"Alice Biggs","site_detail_url":"https://comicvine.gamespot.com/alice-biggs/4005-16462/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16463/","id":16463,"name":"Uncle Snootly","site_detail_url":"https://comicvine.gamespot.com/uncle-snootly/4005-16463/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16441/","id":16441,"name":"Sherwood","site_detail_url":"https://comicvine.gamespot.com/sherwood/4005-16441/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16448/","id":16448,"name":"Herbert Gardenhose","site_detail_url":"https://comicvine.gamespot.com/herbert-gardenhose/4005-16448/","count":"6"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-9992/","id":9992,"name":"Bertram Biggs","site_detail_url":"https://comicvine.gamespot.com/bertram-biggs/4005-9992/","count":"5"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-47403/","id":47403,"name":"Jerry the Jitterbug","site_detail_url":"https://comicvine.gamespot.com/jerry-the-jitterbug/4005-47403/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-47460/","id":47460,"name":"Varsity Vic","site_detail_url":"https://comicvine.gamespot.com/varsity-vic/4005-47460/","count":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16457/","id":16457,"name":"Thurston","site_detail_url":"https://comicvine.gamespot.com/thurston/4005-16457/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16367/","id":16367,"name":"Benny","site_detail_url":"https://comicvine.gamespot.com/benny/4005-16367/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-16461/","id":16461,"name":"Mervin Merrill","site_detail_url":"https://comicvine.gamespot.com/mervin-merrill/4005-16461/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/object/4005-31120/","id":31120,"name":"Scribbly","site_detail_url":"https://comicvine.gamespot.com/scribbly/4005-31120/","count":"1"}],"people":[{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-16438/","id":16438,"name":"Bob Oksner","site_detail_url":"https://comicvine.gamespot.com/bob-oksner/4040-16438/","count":"7"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-1732/","id":1732,"name":"Henry Scarpelli","site_detail_url":"https://comicvine.gamespot.com/henry-scarpelli/4040-1732/","count":"1"}],"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky/4050-1168/","start_year":"1948"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/volume-details/volume-4050-1194.json b/samples/api-data/volume-details/volume-4050-1194.json new file mode 100644 index 0000000..25ace91 --- /dev/null +++ b/samples/api-data/volume-details/volume-4050-1194.json @@ -0,0 +1 @@ +{"error":"OK","limit":1,"offset":0,"number_of_page_results":1,"number_of_total_results":1,"status_code":1,"results":{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1194/","count_of_issues":4,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-02-01 08:24:12","deck":null,"description":"

    Complete Mystery ran during 1948 through 1949 for 4 issues. This series then continued into True Complete Mystery.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91747/","id":91747,"name":"7 Dead Men","issue_number":"1"},"id":1194,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/58752-1194-91747-1-complete-mystery.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/58752-1194-91747-1-complete-mystery.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/58752-1194-91747-1-complete-mystery.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/58752-1194-91747-1-complete-mystery.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/58752-1194-91747-1-complete-mystery.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/58752-1194-91747-1-complete-mystery.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/58752-1194-91747-1-complete-mystery.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/58752-1194-91747-1-complete-mystery.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/58752-1194-91747-1-complete-mystery.jpg","image_tags":"All Images"},"issues":[{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91747/","id":91747,"name":"7 Dead Men","site_detail_url":"https://comicvine.gamespot.com/complete-mystery-1-7-dead-men/4000-91747/","issue_number":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91748/","id":91748,"name":"Fate's Fearful Jigsaw!","site_detail_url":"https://comicvine.gamespot.com/complete-mystery-2-fates-fearful-jigsaw/4000-91748/","issue_number":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91749/","id":91749,"name":"Fear In The Night!","site_detail_url":"https://comicvine.gamespot.com/complete-mystery-3-fear-in-the-night/4000-91749/","issue_number":"3"},{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91750/","id":91750,"name":"A Squealer Dies Fast!","site_detail_url":"https://comicvine.gamespot.com/complete-mystery-4-a-squealer-dies-fast/4000-91750/","issue_number":"4"}],"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91750/","id":91750,"name":"A Squealer Dies Fast!","issue_number":"4"},"name":"Complete Mystery","people":[{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-40467/","id":40467,"name":"Stan Lee","site_detail_url":"https://comicvine.gamespot.com/stan-lee/4040-40467/","count":"4"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-7624/","id":7624,"name":"Carl Burgos","site_detail_url":"https://comicvine.gamespot.com/carl-burgos/4040-7624/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-44570/","id":44570,"name":"Al Bellman","site_detail_url":"https://comicvine.gamespot.com/al-bellman/4040-44570/","count":"2"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-3790/","id":3790,"name":"Syd Shores","site_detail_url":"https://comicvine.gamespot.com/syd-shores/4040-3790/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-3792/","id":3792,"name":"Gene Colan","site_detail_url":"https://comicvine.gamespot.com/gene-colan/4040-3792/","count":"1"},{"api_detail_url":"https://comicvine.gamespot.com/api/person/4040-26655/","id":26655,"name":"Dan Barry","site_detail_url":"https://comicvine.gamespot.com/dan-barry/4040-26655/","count":"1"}],"publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/complete-mystery/4050-1194/","start_year":"1948"},"version":"1.0"} \ No newline at end of file diff --git a/samples/api-data/volume-list-item/volumes.json b/samples/api-data/volume-list-item/volumes.json new file mode 100644 index 0000000..3d3a307 --- /dev/null +++ b/samples/api-data/volume-list-item/volumes.json @@ -0,0 +1 @@ +{"error":"OK","limit":100,"offset":0,"number_of_page_results":100,"number_of_total_results":128992,"status_code":1,"results":[{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-766/","count_of_issues":28,"date_added":"2008-06-06 11:08:03","date_last_updated":"2022-08-28 05:05:06","deck":null,"description":"

    Running for twenty-eight issues from 1938-1942, Single Series was a series of color one-shots featuring various characters from comic strips or other areas of fiction. Although most of the issues focused on a different character, several issues featured the same character: 
      
    Abbie an' Slats: 25, 28*
    Broncho Bill: 2, 19
    Ella Cinders: 3, 21, 28*
    Jim Hardy: 6, 27
    Li'l Abner: 4, 18 
    Little Mary Mixup: 10, 26
     
    *Ella Cinders and Abbie an' Slats were both in the same issue, the only issue to combine two character groups, as well as the final issue.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-164287/","id":164287,"name":"The Captain and the Kids","issue_number":"1"},"id":766,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/880845-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/880845-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/880845-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/880845-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/880845-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/880845-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/880845-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/880845-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/880845-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92468/","id":92468,"name":"Ella Cinders and Abbie an' Slats","issue_number":"28"},"name":"Single Series","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5/","id":5,"name":"United Features"},"site_detail_url":"https://comicvine.gamespot.com/single-series/4050-766/","start_year":"1938"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-769/","count_of_issues":167,"date_added":"2008-06-06 11:08:03","date_last_updated":"2018-08-30 08:09:10","deck":null,"description":"

    Jumbo Comics was a comic book anthology that lasted for 167 issues from 1938-1953, the series is probably best known for featuring Sheena, Queen of the Jungle -the first female to get her own comic book- during the bulk of its run with only a few issues at the beginning and end of the series where she was not the story featured on the cover.

    Reprints (single issues)

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123500/","id":123500,"name":null,"issue_number":"1"},"id":769,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1556940-38491.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1556940-38491.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1556940-38491.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1556940-38491.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1556940-38491.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1556940-38491.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1556940-38491.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1556940-38491.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1556940-38491.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-332/","id":332,"name":null,"issue_number":"167"},"name":"Jumbo Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"site_detail_url":"https://comicvine.gamespot.com/jumbo-comics/4050-769/","start_year":"1938"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-771/","count_of_issues":6,"date_added":"2008-06-06 11:08:03","date_last_updated":"2010-12-11 06:24:05","deck":null,"description":"

    Movie Comics was a six-issue anthology series published in 1939 that combined traditional comic stories alongside stories created by using movie stills for the artwork.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92469/","id":92469,"name":null,"issue_number":"1"},"id":771,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59474-771-92469-1-movie-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59474-771-92469-1-movie-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59474-771-92469-1-movie-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59474-771-92469-1-movie-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59474-771-92469-1-movie-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59474-771-92469-1-movie-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59474-771-92469-1-movie-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59474-771-92469-1-movie-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59474-771-92469-1-movie-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165279/","id":165279,"name":null,"issue_number":"6"},"name":"Movie Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/movie-comics/4050-771/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-773/","count_of_issues":488,"date_added":"2008-06-06 11:08:03","date_last_updated":"2022-05-29 21:51:12","deck":"Volume 1","description":"

    This volume became Adventures of Superman Volume 1 for issues #424-#649. The series title returned to Superman Volume 1 with issue #650. While titled Adventures of Superman, Superman Volume 2 was published concurrently. Following the end of Volume 1, Continued in Superman Volume 3.

    Superman launched May 18, 1939 with its first issue (that doesn't actually have a #1 on the cover) and although it was a seasonal book for its first five issues, with its sixth it began a bimonthly publishing rate and kept up with said rate until its eighty-fifth. With its eighty-sixth issue Superman began it's mostly consistent monthly publishing rate which it continued using up until 1986 when the series ended at 423 issues, the last issue featuring Alan Moore's acclaimed story \"Whatever Happened to the Man of Tomorrow?\" After that, the title's numbering was continued through Adventures of Superman which lasted for several decades. It was in 2006 with #650 that the title returned to its original name, kicking off it's new era with the One Year Later storyline co-written by Geoff Johns and Kurt Busiek. After the arc, the series was written by Busiek from 654-675, with James Robinson taking the reigns in 677 and holding them tight until the milestone 700th issue where JMS took over with an arc entitled \"Grounded\" that would feature Superman walking across America. However, JMS left the book earlier then planned and new writer Chris Roberson worked off of JMS' original notes and plot-line. Unfortunately, Roberson never got to prove himself with his own story on the book as with the launch of The New 52 in September 2011, after 72 years and 714 issues (including Adventures of Superman) Superman Vol. 1 came to an end with the final chapter of the Grounded story arc serving as the final issue of the series. Superman will survive as an ongoing series at DC, with the month following the release of Superman #714 serving as the launching point of the third ongoing Superman series in DC history with #1.

    Collected Editions

    Omnibus

    Notes

    • Superman #424-649 do not exist, however, the issues that took those numbers can be found on the Adventures of Superman page.
    • Another ongoing title from DC entitled Superman does exist and was published with its own numbering while Adventures of Superman was in print, thus even though this title began publication in the 30's and lasted until 2011, no two Superman titles were hitting shelves at the same time.
    • The main star of the series has of course been Superman but from #686-697 Mon-El was the star as Superman was away from Earth and the covers bore the banners \"World Without Superman\" for the first five and \"World Against Superman\" for the last six issues of this absence.
    • For Post Flashpoint volume 3, refer to Superman.
    • Click the link to view this title's annuals: Superman Annual.
    • Click the link to view this title's specials: Superman Special.

    Non-U.S. Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110227/","id":110227,"name":null,"issue_number":"1"},"id":773,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/3/38826/851086-01.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/3/38826/851086-01.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/3/38826/851086-01.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/3/38826/851086-01.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/3/38826/851086-01.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/3/38826/851086-01.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/3/38826/851086-01.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/3/38826/851086-01.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/3/38826/851086-01.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-282707/","id":282707,"name":"Grounded, Finale","issue_number":"714"},"name":"Superman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/superman/4050-773/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-776/","count_of_issues":123,"date_added":"2008-06-06 11:08:03","date_last_updated":"2010-12-11 08:22:13","deck":null,"description":"

    Magic Comics was a comic anthology published from 1939-1949 and amassing a total of 123 issues. Although many of the covers featured Dagwood of the Blondie newspaper comic strip, it was Mandrake the Magician who the series truly featured and he was often incorporated into the logo and of course, the name.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-155911/","id":155911,"name":null,"issue_number":"1"},"id":776,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/13923/778783-magiccomics0001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/13923/778783-magiccomics0001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/13923/778783-magiccomics0001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/13923/778783-magiccomics0001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/13923/778783-magiccomics0001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/13923/778783-magiccomics0001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/13923/778783-magiccomics0001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/13923/778783-magiccomics0001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/13923/778783-magiccomics0001.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92537/","id":92537,"name":null,"issue_number":"123"},"name":"Magic Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-14/","id":14,"name":"David McKay"},"site_detail_url":"https://comicvine.gamespot.com/magic-comics/4050-776/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-777/","count_of_issues":25,"date_added":"2008-06-06 11:08:03","date_last_updated":"2015-05-28 00:27:31","deck":null,"description":"

    Four Color is a series of various comic strips published between 1939 and 1942 over 25 issues. Every issue is a standalone and only with 19 did the series begin to put the number on the cover. The most common strip featured in this run of the series, sometimes called \"Four Color Series I\", was Dick Tracy who appeared in four issues. Dell would begin \"Four Color Series II\", the same year this one ended and find much more longevity with a run of over 1000 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92538/","id":92538,"name":"68 Pages All in Color","issue_number":"1"},"id":777,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59543-777-92538-1-four-color.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59543-777-92538-1-four-color.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59543-777-92538-1-four-color.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59543-777-92538-1-four-color.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59543-777-92538-1-four-color.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59543-777-92538-1-four-color.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59543-777-92538-1-four-color.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59543-777-92538-1-four-color.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59543-777-92538-1-four-color.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92556/","id":92556,"name":"Captain Easy","issue_number":"24"},"name":"Four Color","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4/","id":4,"name":"Dell"},"site_detail_url":"https://comicvine.gamespot.com/four-color/4050-777/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-778/","count_of_issues":30,"date_added":"2008-06-06 11:08:03","date_last_updated":"2022-07-25 06:07:31","deck":null,"description":"

    Large Feature Comic, published from 1939-1942, ran for 30 issues and like Dell's Four Color of the time it released issues collecting comic strips in individual issues that were in effect, one-shots. However, the issues would have the number somewhere on the cover and from #25 on, the name \"Large Feature Comic\" also appeared on the cover.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92558/","id":92558,"name":"Dick Tracy Meets the Blank","issue_number":"1"},"id":778,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59563-778-92558-1-large-feature-comic.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59563-778-92558-1-large-feature-comic.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59563-778-92558-1-large-feature-comic.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59563-778-92558-1-large-feature-comic.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59563-778-92558-1-large-feature-comic.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59563-778-92558-1-large-feature-comic.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59563-778-92558-1-large-feature-comic.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59563-778-92558-1-large-feature-comic.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59563-778-92558-1-large-feature-comic.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166745/","id":166745,"name":"Moon Mullins","issue_number":"29"},"name":"Large Feature Comic","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4/","id":4,"name":"Dell"},"site_detail_url":"https://comicvine.gamespot.com/large-feature-comic/4050-778/","start_year":"1939"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-794/","count_of_issues":60,"date_added":"2008-06-06 11:08:03","date_last_updated":"2010-12-19 02:19:40","deck":null,"description":"

    New Heroic Comics, published by Eastern Color (publishers of what is considered the first modern comic book) began in 1946 and takes it's numbering from Heroic Comics #37. It continued with that title's type of content in an anthology format, publishing stories of both \"everyday heroes\" and factual war stories. Under it's new name the comic lasted for sixty more issues until finally it was cancelled in 1955 (due to its bimonthly schedule) with #97.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92937/","id":92937,"name":null,"issue_number":"38"},"id":794,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1557160-38.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1557160-38.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1557160-38.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1557160-38.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1557160-38.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1557160-38.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1557160-38.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1557160-38.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1557160-38.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-172277/","id":172277,"name":null,"issue_number":"97"},"name":"New Heroic Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-22/","id":22,"name":"Eastern Color"},"site_detail_url":"https://comicvine.gamespot.com/new-heroic-comics/4050-794/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-796/","count_of_issues":716,"date_added":"2008-06-06 11:08:04","date_last_updated":"2022-05-26 12:46:47","deck":"Volume 1. The one that started it all. Batman focuses on the rise of the famous Batman and his influence on Gotham City as he fights the most devilish of villains and stops the most dastardly plans. It spanned from 1940-2011.","description":"

    Followed by Batman Volume 2.

    The entire run of Batman still stands upon large controversies over who actually came up with some of the characters. Bob Kane supposedly came up with the idea for the hero, but it has been suggested that he only came up with a \"Bird-man\" and Bill Finger suggested he be a \"Bat-man\". Both creators, however, share credit for this character. As for the Joker, the first concept sketch was drawn by Jerry Robinson, but Kane disputed that his input was \"minimal\" suggesting he and Bill came up with the idea. Kane also finagled many legal aspects of Batman related print and media. Every movie and comic reads \"Batman created by Bob Kane\" when it should read \"Batman created by Bob Kane and Bill Finger\". However, It is not disputed that Robinson and Finger came up with the character, Robin after \"Robinhood\". Bob Kane and Sheldon Moldoff co-created numerous bat-creations including Alfred Pennyworth, Poison Ivy, Mr. Freeze, Batwoman, Batgirl as well as Bat-Mite and Ace the Bat-Hound just to name a few. Bill Finger also co-created Penguin, Riddler, and Catwoman.

    \"Ad
    Ad for Batman #1

    One of DC's longest running books showcasing the adventures of the Dark Knight, Batman. Throughout the years, a majority of Batman's marquee storylines have happened within the pages of this book including, but not limited to the death of the second Robin, Jason Todd, and Bane breaking Batman's back, leading to Jean-Paul Valley to assume the role of Batman for a period of time in the 90s.

    In 2006, superstar writer Grant Morrison took over the book. Morrison wrote stories that introduced readers to Bruce's son Damian Wayne as well as putting Bruce through a series of near-fatal trials against The Black Glove and Doctor Hurt, leading up to the epic 2008 storylines of Batman RIP and Final Crisis where Bruce Wayne had apparently died at the hands of the evil god Darkseid.

    After Bruce's \"death,\" and the Battle for the Cowl, Dick Grayson, the first Robin, took up the mantle of Batman, continuing to protect Gotham exactly as his mentor had. He even took in Damian as his own Robin. With the exception of two issues set prior to the events of Final Crisis, Dick Grayson has been the star of the book since issue #687.

    When the superhero community learned that Bruce Wayne had never actually died, and was sent back in time by Darkseid, Dick Grayson eventually knew that his time as Batman would soon end. But with Bruce's return, and formation of Batman Incorporated, Bruce deemed Dick Grayson the Batman of Gotham City, as he travelled the world, searching for more recruits for his new organization.

    Charles Paris has drawn the most issues of Batman thus far at 128. Denny O'Neil is a long time writer and editor at DC with 211 issues. He also contributed the location of Arkham Asylum as well as the characters Man-Bat, Ra's al Ghul and Talia al Ghul.

    In September 2011, DC Comics relaunched their entire line in an event known as \"The New 52\" which would see the premiere of fifty-two new titles, thus the long-running Batman series ended with #713 during Tony S. Daniel's run on the title. In the new line, however, Tony Daniel will continue writing in the \"Batman universe\" but under the character's other main title, Detective Comics. The new Batman series will be written instead by Scott Snyder (who was writing Detective Comics pre-relaunch).

    For Post Flashpoint volume 2, refer to Batman.

    Writers:

    Pre-Crisis

    Post Crisis

    Artist:

    Trade Volumes that collect Batman issues:

    Classic and Archived Batman:

    see also Batman Archives, Batman: The Dark Knight Archives, Batman: The Dynamic Duo Archives etc...

    For late 60`s - 70`s comics...

    Modern Batman (Post-Crisis)

    Omnibus

    Non-U.S. Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105811/","id":105811,"name":"The Legend of the Batman: Who He Is and How He Came To Be; The Joker","issue_number":"1"},"id":796,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/10/103530/3421824-2.png","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/10/103530/3421824-2.png","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/10/103530/3421824-2.png","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/10/103530/3421824-2.png","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/10/103530/3421824-2.png","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/10/103530/3421824-2.png","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/10/103530/3421824-2.png","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/10/103530/3421824-2.png","original_url":"https://comicvine.gamespot.com/a/uploads/original/10/103530/3421824-2.png","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-286879/","id":286879,"name":"In Storybook Endings","issue_number":"713"},"name":"Batman","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/batman/4050-796/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-806/","count_of_issues":4,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-12-25 06:48:23","deck":null,"description":"

    Future Comics, four issues published by David McKay in 1940, was an anthology comic (like most of the others in the day) and featured both newspaper reprints such as The Lone Ranger and The Phantom as well as original stories.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92643/","id":92643,"name":null,"issue_number":"1"},"id":806,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59648-806-92643-1-future-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59648-806-92643-1-future-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59648-806-92643-1-future-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59648-806-92643-1-future-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59648-806-92643-1-future-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59648-806-92643-1-future-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59648-806-92643-1-future-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59648-806-92643-1-future-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59648-806-92643-1-future-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173407/","id":173407,"name":null,"issue_number":"4"},"name":"Future Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-14/","id":14,"name":"David McKay"},"site_detail_url":"https://comicvine.gamespot.com/future-comics/4050-806/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-816/","count_of_issues":73,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-02-22 01:19:27","deck":null,"description":"

    Planet Comics, launched by Fiction House in 1940 came just fifteen months after their first and most successful title, Jumbo Comics. Like Jumbo, this title was also an anthology, but all the stories revolved around a common science fiction theme. Although it's predecessor lasted for many more issues, Planet Comics was published at a bimonthly rate for most of its run meaning it too ended in 1953 with its 73rd issue. Planet Comics serves as one of the best examples of \"Good Girl Art\", a movement commonly associated with the Golden Age of Comics in which gorgeous women would often be posed to show off their beauty, which many of the covers show. However, Planet also had stories featuring women as the sole heroine such as Mysta of the Moon or Gale Allen. Other popular stories included \"The Space Rangers\" (which merged the Flint Baker and Reef Ryan strips), \"Star Pirate\", \"Mars, God of War\", \"The Red Comet\" and \"The Lost World\" (featuring Hunt Bowman, this was the lead feature for a large part of the book's run).

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152725/","id":152725,"name":"Women Warriors Of The Moon","issue_number":"1"},"id":816,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11114/111149159/4641116-1441336221-0.jpg.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11114/111149159/4641116-1441336221-0.jpg.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11114/111149159/4641116-1441336221-0.jpg.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11114/111149159/4641116-1441336221-0.jpg.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11114/111149159/4641116-1441336221-0.jpg.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11114/111149159/4641116-1441336221-0.jpg.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11114/111149159/4641116-1441336221-0.jpg.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11114/111149159/4641116-1441336221-0.jpg.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11114/111149159/4641116-1441336221-0.jpg.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-169/","id":169,"name":"Cerebex","issue_number":"73"},"name":"Planet Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"site_detail_url":"https://comicvine.gamespot.com/planet-comics/4050-816/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-832/","count_of_issues":38,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-02-02 19:57:57","deck":null,"description":"

    The Human Torch (Jim Hammond) was one of the first characters created in the modern day \"Marvel Universe\" having first appeared in Marvel Comics #1, published by Timely. In 1940, he got his own ongoing series kicking off with \"The Human Torch Comics #2\", the elusive first issue actually being Red Raven Comics #1.

    The first issue of the series was titled \"Red Raven Comics\", but issue #2, 3 & 5 (June '42) actually have NO numbers on the covers, but ONLY have the season of the year they were released.

    #2 of the series says \"FALL NUMBER\" <1941>

    #3 of the series says \"WINTER NUMBER\" <1941>

    #4 of the series says \"No. 3\" & \"SPRING NUMBER\" <1942>

    #5 (June 1942) of the series says \"SUMMER NUMBER\" <1942>

    #6 (Sept 1942) of the series says \"No. 5\" & \"FALL ISSUE\" <1942>

    Issue #4 of the series is actually 3rd issue of \"The Human Torch Comics\" title, and says \"No. 3\" on the cover and was the first attempt to renumber the series to the \"The Human Torch Comics\" title.

    Issue #5 (June 1942) of the series, 4th issue of \"The Human Torch Comics\", has no number on the cover.

    The 6th issue of the series (Sept 1942), on the cover it says \"No.5\" & \"FALL ISSUE\" and is second, and permanent, effort to renumber the series to the \"The Human Torch Comics\" title. The numbering continues from here until the end of the series at issue \"No. 38\", thus giving the \"The Human Torch Comics\" title 38 issues, but 39 issues to the series. The renumbering effectively ignores the first issue if the series titled \"Red Raven Comics\".

    The comic ended in 1954, but due to the fact that the first 29 issues were published at a quarterly rate, only 39 issues of the series (38 issues of \"The Human Torch Comics\") were printed from between 1941 to 1954.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119476/","id":119476,"name":"Introducing Toro; Sub-Mariner Crashes New York Again","issue_number":"2"},"id":832,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/251258-832-119476-1-human-torch-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/251258-832-119476-1-human-torch-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/251258-832-119476-1-human-torch-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/251258-832-119476-1-human-torch-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/251258-832-119476-1-human-torch-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/251258-832-119476-1-human-torch-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/251258-832-119476-1-human-torch-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/251258-832-119476-1-human-torch-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/251258-832-119476-1-human-torch-the.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1297/","id":1297,"name":"The World's End; in Korea; The Octopus-Men; Flame On!","issue_number":"38"},"name":"The Human Torch","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/the-human-torch/4050-832/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-836/","count_of_issues":48,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-18 08:49:40","deck":null,"description":"

    Super-Mystery Comics, published by Ace Magazines, was in print for nine years from July 1940 to July 1949, never really maintaining a consistent publishing rate. Although the series was entitled \"Super-Mystery\", the Super and Mystery seemed to be pushed during separate eras with the first twenty-nine issues featuring Magno, the Magnetic Man on the covers and containing various other superhero tales while the later issues featured such characters as Bert and Sue, Mack Martin and The Unknown with more of a mystery/horror vibe to the covers than superhero feats.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-151505/","id":151505,"name":"Volume 1 Number 1","issue_number":"1"},"id":836,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/702894-sm_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/702894-sm_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/702894-sm_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/702894-sm_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/702894-sm_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/702894-sm_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/702894-sm_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/702894-sm_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/702894-sm_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-251414/","id":251414,"name":"Volume 8 Number 6","issue_number":"48"},"name":"Super-Mystery Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-32/","id":32,"name":"Ace Magazines"},"site_detail_url":"https://comicvine.gamespot.com/super-mystery-comics/4050-836/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-839/","count_of_issues":133,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-17 13:54:37","deck":null,"description":"

    Master Comics was an anthology published by Fawcett Publications from 1940 up until 1953 featuring such characters through its run as Master Man, Bulletman and Bulletgirl, Minute Man, Nyoka, Radar, Tom Mix but it is mostly remembered for the fact that from its 22nd issue up until its last (#133) it featured none other then Freddy Freeman, who was at the time known as Captain Marvel, Jr., and a member of the Marvel Family that would become Fawcett's legacy.

    Reprints (single issues)

    Collected Editons:

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-110392/","id":110392,"name":"The Origin of Master Man","issue_number":"1"},"id":839,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/134580-839-110392-1-master-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/134580-839-110392-1-master-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/134580-839-110392-1-master-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/134580-839-110392-1-master-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/134580-839-110392-1-master-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/134580-839-110392-1-master-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/134580-839-110392-1-master-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/134580-839-110392-1-master-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/134580-839-110392-1-master-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-389/","id":389,"name":null,"issue_number":"133"},"name":"Master Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/master-comics/4050-839/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-843/","count_of_issues":155,"date_added":"2008-06-06 11:08:04","date_last_updated":"2020-04-19 02:50:04","deck":null,"description":"

    Whiz Comics #1 does not exist but rather it's non-existence is part of the troubled origins of the Captain Marvel character. Fawcett was trying to secure rights to both the name of their character and title of his series but despite releasing two ashcan first issues (Flash Comics #1 and Thrill Comics #1) in which their protagonist was named Captain Thunder...none of the rights were secured and so Captain Marvel and Whiz Comics were born. Although Captain Marvel was the feature character, like most comics of the period, it was an anthology featuring several different characters. The series had two third issues, which ended up balancing things out and making the fourth issue the actual fourth comic to bear the title Whiz Comics, a labeling it would keep up until the book's 155th and final issue.

    Collected Editions:

    Non-U.S. Collected Editions:

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-115984/","id":115984,"name":null,"issue_number":"1 [2]"},"id":843,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1618220-2.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1618220-2.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1618220-2.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1618220-2.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1618220-2.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1618220-2.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1618220-2.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1618220-2.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1618220-2.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-525/","id":525,"name":null,"issue_number":"155"},"name":"Whiz Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/whiz-comics/4050-843/","start_year":"1940"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-874/","count_of_issues":120,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-03-04 11:00:38","deck":null,"description":"

    Sparkler Comics began publication in 1941 by United Features, a Golden Age publisher better known for their printing of newspaper strip characters which is why Sparkler Comics became something different when in the first issue (and featured on the cover) they premiered one of their only superhero characters, Spark Man. Eventually the character would fade out of the series and the focus would return to characters more commonly seen in other United Features publications (such as Abbie N' Slats, The Katzenjammer Kids, Nancy and Sluggo, and Ella Cinders). And by 1954 when the publication ended, it was resumed by a new publisher, who continued the numbering, and renamed Nancy and Sluggo (who had been featured on every cover of Sparkler Comics since #81, the earliest cover they had been featured on was #17).

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-156458/","id":156458,"name":null,"issue_number":"1"},"id":874,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/789831-spark_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/789831-spark_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/789831-spark_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/789831-spark_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/789831-spark_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/789831-spark_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/789831-spark_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/789831-spark_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/789831-spark_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-1524/","id":1524,"name":null,"issue_number":"120"},"name":"Sparkler Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-5/","id":5,"name":"United Features"},"site_detail_url":"https://comicvine.gamespot.com/sparkler-comics/4050-874/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-879/","count_of_issues":7,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-06-05 09:19:15","deck":null,"description":"

    Rangers of Freedom Comics was a Golden Age anthology comic featuring various war and adventure comics, the primary feature being Rangers of Freedom from which the series took its name. The comic published at a bimonthly rate and after a year (seven issues) the series name shortened and it became Rangers Comics with #8, a title which it kept for many more years until it was cancelled over a decade later.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256516/","id":256516,"name":null,"issue_number":"1"},"id":879,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1618451-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1618451-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1618451-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1618451-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1618451-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1618451-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1618451-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1618451-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1618451-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-256528/","id":256528,"name":null,"issue_number":"7"},"name":"Rangers of Freedom Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-8/","id":8,"name":"Fiction House"},"site_detail_url":"https://comicvine.gamespot.com/rangers-of-freedom-comics/4050-879/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-886/","count_of_issues":134,"date_added":"2008-06-06 11:08:04","date_last_updated":"2022-03-15 02:22:29","deck":null,"description":"

    Daredevil Comics, one of Lev Gleason Publication's longest-running comics was a Golden Age anthology comic that took its name from its main feature character Daredevil (named \"The Death-Defying Devil\" in Dynamite Entertainment comics and \"Red Devil\" at AC Comics as not to be confused with the Marvel character but called by his original name, Daredevil, at Image Comics). Daredevil was eventually phased out of the title in the late forties and for most of the comic's run, apart from the title the character wasn't the main feature anymore and the covers were primarily dominated by The Little Wise Guys.

    General Notes

    The first issue was actually titled \"Daredevil Battles Hitler #1\".

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-123809/","id":123809,"name":"\"Daredevil Battles Hitler\"","issue_number":"1"},"id":886,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/1/15776/8409132-daredevilcomics1a.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/1/15776/8409132-daredevilcomics1a.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/1/15776/8409132-daredevilcomics1a.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/1/15776/8409132-daredevilcomics1a.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/1/15776/8409132-daredevilcomics1a.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/1/15776/8409132-daredevilcomics1a.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/1/15776/8409132-daredevilcomics1a.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/1/15776/8409132-daredevilcomics1a.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/1/15776/8409132-daredevilcomics1a.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-2696/","id":2696,"name":null,"issue_number":"134"},"name":"Daredevil Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-52/","id":52,"name":"Lev Gleason"},"site_detail_url":"https://comicvine.gamespot.com/daredevil-comics/4050-886/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-893/","count_of_issues":32,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-03 20:23:46","deck":null,"description":"

    Four Favorites was an inconsistently published anthology comic series that primarily focused on four specific characters per issue (the \"four favorites\"). The original line-up was all superheroes with \"Magno (and Davey)\", \"Lash Lightning\", \"Vulcan\" and \"The Raven\". With the fourth issue, Vulcan was switched out for Unknown Soldier (predates the DC character of the same name) and in the following issue The Raven was replaced by Captain Courageous. The Flag took Captain Courageous' spot in the next issue, but with #7 Capt. Courageous returned and the line-up remained consistent up until the 21st issue when Unknown Soldier was replaced by an unrelated character called \"The Unknown\". In #24, Lightning was replaced with Hap Hazard by which point the comic no longer retained a consistent genre and expanded into several. With #26, the last of the original features was cut and the line-up from that point on changed every issue until it settled on four characters for the last three issues but superheroes were no longer featured in the publication and when the series ended in 1947, it was a teen humor publication. Two issues followed #32, under different titles: #33 was called Crime Must Pay the Penalty (which became its own long-running series) and #34 was titled Four Teeners.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158519/","id":158519,"name":null,"issue_number":"1"},"id":893,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/816386-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/816386-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/816386-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/816386-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/816386-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/816386-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/816386-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/816386-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/816386-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-158534/","id":158534,"name":null,"issue_number":"32"},"name":"Four Favorites","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-32/","id":32,"name":"Ace Magazines"},"site_detail_url":"https://comicvine.gamespot.com/four-favorites/4050-893/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-898/","count_of_issues":150,"date_added":"2008-06-06 11:08:04","date_last_updated":"2020-04-19 02:49:49","deck":null,"description":"

    Captain Marvel Adventures was one of several ongoings during the Golden Age starring Fawcett's Captain Marvel, who was more popular than Superman in the late 40's and early 50's. The series told the adventures of young Billy Batson, who by speaking the magic word \"SHAZAM!\" would receive super powers. Trouble was, these powers were kind of similar to those attributed to the Man of Steel. Depite the fact that Captain Marvel's stories tended to have a lighter and more humourous element to them, DC was not impressed. After a protracted plagiarism lawsuit, which DC eventually won, Cap and the rest of the Marvel Family disappeared from the comic world for about 20 years. Funnily enough, they would re-appear at DC.

    Collected Editons:

    Non-U.S. Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-122082/","id":122082,"name":"Captain Marvel Vs. Z","issue_number":"1"},"id":898,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/293395-898-122082-1-captain-marvel-adven.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-794/","id":794,"name":"Captain Marvel's Wedding","issue_number":"150"},"name":"Captain Marvel Adventures","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/captain-marvel-adventures/4050-898/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-908/","count_of_issues":15,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-07-03 16:22:02","deck":null,"description":"

    Freelance Comics #50 continues into Freelance Robin Hood and Company Comics #51 which was the title it ran under for four issues, until it returned to the original title with #55 and ended with #59.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-102538/","id":102538,"name":null,"issue_number":"55"},"id":908,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1796102-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1796102-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1796102-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1796102-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1796102-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1796102-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1796102-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1796102-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1796102-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-269374/","id":269374,"name":null,"issue_number":"1"},"name":"Freelance Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-55/","id":55,"name":"Double A Comics"},"site_detail_url":"https://comicvine.gamespot.com/freelance-comics/4050-908/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-914/","count_of_issues":170,"date_added":"2008-06-06 11:08:04","date_last_updated":"2020-05-16 14:12:47","deck":null,"description":"

    In 1941, Albert E. Kanter introduced Classic Comics, later renamed Classics Illustrated. Kanter’s idea was to use the comic form to make great literature accessible to readers who might never otherwise make the effort. Whether his idea represented a watering down of the classics, as some critics claimed, it was an amazingly popular move. Each of the 169 comics in this series were reprinted numerous times, with 23rd printings being relatively common. Their popularity even extended to schools, where the colorful, well-written adaptations must have seemed a welcome alternative to reading lengthy texts.

    Kanter later introduced Classics Illustrated Junior, adapting children’s literature for younger readers. The series also gave rise to numerous imitations over the years.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-124408/","id":124408,"name":"The Three Musketeers","issue_number":"1"},"id":914,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/321316-914-124408-1-classics-illustrated.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/321316-914-124408-1-classics-illustrated.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/321316-914-124408-1-classics-illustrated.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/321316-914-124408-1-classics-illustrated.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/321316-914-124408-1-classics-illustrated.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/321316-914-124408-1-classics-illustrated.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/321316-914-124408-1-classics-illustrated.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/321316-914-124408-1-classics-illustrated.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/321316-914-124408-1-classics-illustrated.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-144162/","id":144162,"name":"The Aeneid","issue_number":"170"},"name":"Classics Illustrated","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-57/","id":57,"name":"Gilberton Publications"},"site_detail_url":"https://comicvine.gamespot.com/classics-illustrated/4050-914/","start_year":"1941"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-921/","count_of_issues":36,"date_added":"2008-06-06 11:08:04","date_last_updated":"2020-06-02 14:32:03","deck":null,"description":"

    Boy Commandos was a Golden Age anthology title published by DC Comics in the 1940's, each issue containing a few stories of the titular group as well as the occasional filler or short story. Created by Jack Kirby and Joe Simon, Boy Commandos became the third best-selling title at DC with over a million copies a month. Originally the book featured the boys and their adult leader, Rip Carter fighting in World War II but following the end of the war the series continued but no longer as a war comic. Near the end of its run the line-up of the team began to change and finally the series ended in 1949 after a run of thirty-six issues.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52350/","id":52350,"name":null,"issue_number":"1"},"id":921,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/45206-921-52350-1-boy-commandos.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/45206-921-52350-1-boy-commandos.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/45206-921-52350-1-boy-commandos.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/45206-921-52350-1-boy-commandos.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/45206-921-52350-1-boy-commandos.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/45206-921-52350-1-boy-commandos.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/45206-921-52350-1-boy-commandos.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/45206-921-52350-1-boy-commandos.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/45206-921-52350-1-boy-commandos.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-52380/","id":52380,"name":null,"issue_number":"36"},"name":"Boy Commandos","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/boy-commandos/4050-921/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-923/","count_of_issues":4,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-08-09 13:15:43","deck":null,"description":"

    Picture Stories from the Bible (Old Testament) was a Golden Age anthology comic released by DC Comics in the early 40's that ran for four issues featuring such Biblical characters as Moses, Joseph and Saul but due to it being copyrighted and published by M.C. Gaines it would later be reprinted under his publisher EC Comics. It also had a counterpart featuring comic retellings of stories from the New Testament.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90142/","id":90142,"name":null,"issue_number":"1"},"id":923,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1955652-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1955652-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1955652-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1955652-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1955652-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1955652-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1955652-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1955652-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1955652-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90145/","id":90145,"name":null,"issue_number":"4"},"name":"Picture Stories from the Bible (Old Testament)","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/picture-stories-from-the-bible-old-testament/4050-923/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-927/","count_of_issues":1321,"date_added":"2008-06-06 11:08:04","date_last_updated":"2019-06-13 15:21:50","deck":null,"description":"

    Four Color Comics (or just Four Color) is a series that ran from 1942 and ended in 1962. It is known that the series had well over 1,000 issues, but the precise number of original issues has not been determined due to skipped issues and reprints. The series finally came to an end with Issue #1354 and so at the moment the series holds the record for having the most issues published of any American comic book series, as its nearest rivals have recently been cancelled for the sake of a relaunch (with only Action Comics ever surpassing 900 issues). The series is surpassed in length by many other European comics.

    List of Unpublished Issues

    • 1217
    • 1228
    • 1277
    • 1292
    • 1314-1327
    • 1329
    • 1331
    • 1334
    • 1338-1340
    • 1342-1347
    • 1351-1353

    Unlike most comics, the title found in Four Color's indicia change nearly every issue to reflect the title found on the cover. For example, Four Color #1295, which features the television character Mister Ed, is listed in the indicia as \"Mister Ed, the Talking Horse #1295,\" even though none of the previous issues featured Mister Ed. To avoid confusion, the titles of the comics for this series will be that found in the indicia.

    Reprints (single issues)

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-84997/","id":84997,"name":"Little Joe","issue_number":"1"},"id":927,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/11/119838/2827033-fourcolor1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/11/119838/2827033-fourcolor1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/11/119838/2827033-fourcolor1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/119838/2827033-fourcolor1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/11/119838/2827033-fourcolor1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/11/119838/2827033-fourcolor1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/11/119838/2827033-fourcolor1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/11/119838/2827033-fourcolor1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/11/119838/2827033-fourcolor1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-130345/","id":130345,"name":"Walt Disney Presents Mickey Mouse's Surprise Visitor","issue_number":"268"},"name":"Four Color","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4/","id":4,"name":"Dell"},"site_detail_url":"https://comicvine.gamespot.com/four-color/4050-927/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-942/","count_of_issues":117,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-02 04:16:07","deck":null,"description":"

    Continues from Captain Battle Jr.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168950/","id":168950,"name":null,"issue_number":"3"},"id":942,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/937979-boy_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/937979-boy_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/937979-boy_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/937979-boy_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/937979-boy_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/937979-boy_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/937979-boy_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/937979-boy_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/937979-boy_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-2356/","id":2356,"name":null,"issue_number":"119"},"name":"Boy Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-52/","id":52,"name":"Lev Gleason"},"site_detail_url":"https://comicvine.gamespot.com/boy-comics/4050-942/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-943/","count_of_issues":126,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-18 21:23:49","deck":null,"description":"

    Publishing History

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180169/","id":180169,"name":null,"issue_number":"22"},"id":943,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1011229-22.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1011229-22.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1011229-22.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1011229-22.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1011229-22.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1011229-22.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1011229-22.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1011229-22.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1011229-22.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91958/","id":91958,"name":null,"issue_number":"147"},"name":"Crime Does Not Pay","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-52/","id":52,"name":"Lev Gleason"},"site_detail_url":"https://comicvine.gamespot.com/crime-does-not-pay/4050-943/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-944/","count_of_issues":26,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-09-11 09:15:34","deck":null,"description":"

    Comedy Comics was an anthology published during the 1940's, beginning with #9 (the first eight issues were published in the superhero title Daring Mystery Comics), by its sixth issue the comic began to feature Super Rabbit (who starred in several 1940's Timely Comics). As World War II was going on at the time, he would of course occasionally defeat Nazis although he would also stop regular criminals. After holding onto the title for twenty issues (and four years), with #34, Margie became the feature and with #35 the series changed its name to reflect this, becoming Margie Comics.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-139049/","id":139049,"name":"A Riot of Fun","issue_number":"9"},"id":944,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/546927-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/546927-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/546927-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/546927-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/546927-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/546927-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/546927-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/546927-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/546927-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91707/","id":91707,"name":null,"issue_number":"33"},"name":"Comedy Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/comedy-comics/4050-944/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-946/","count_of_issues":26,"date_added":"2008-06-06 11:08:04","date_last_updated":"2009-12-14 14:41:22","deck":null,"description":"

    After issue 15 the series continued as Funny Tunes and then resumes again at 16 without a break in the sequence. The series then continued as Cindy Comics (27-38) for 12 issues, Cindy Smith (39-40) for 2 issues, finally into Crime Can't Win 41(1)-12.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94875/","id":94875,"name":"Krazy Komics!","issue_number":"1"},"id":946,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61880-946-94875-1-krazy-komics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61880-946-94875-1-krazy-komics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61880-946-94875-1-krazy-komics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61880-946-94875-1-krazy-komics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61880-946-94875-1-krazy-komics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61880-946-94875-1-krazy-komics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61880-946-94875-1-krazy-komics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61880-946-94875-1-krazy-komics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61880-946-94875-1-krazy-komics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94892/","id":94892,"name":null,"issue_number":"26"},"name":"Krazy Komics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/krazy-komics/4050-946/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-948/","count_of_issues":86,"date_added":"2008-06-06 11:08:04","date_last_updated":"2013-03-11 09:43:15","deck":null,"description":"
    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-160040/","id":160040,"name":null,"issue_number":"1"},"id":948,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/836240-terrytoon_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/836240-terrytoon_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/836240-terrytoon_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/836240-terrytoon_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/836240-terrytoon_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/836240-terrytoon_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/836240-terrytoon_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/836240-terrytoon_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/836240-terrytoon_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-101683/","id":101683,"name":null,"issue_number":"86"},"name":"Terry-Toons Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/terry-toons-comics/4050-948/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-953/","count_of_issues":118,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-17 08:25:06","deck":null,"description":"

    #34 does not exist, rather the issue with 35 on the cover says 34 on the interior.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-152984/","id":152984,"name":"The Origin of Captain Marvel, Jr. Retold","issue_number":"1"},"id":953,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/58127/1768831-captain_marvel_jr._vol_1_1.jpg","image_tags":"All Images,Comic book covers"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-523/","id":523,"name":"The Regiment That Was Afraid to Fight","issue_number":"119"},"name":"Captain Marvel, Jr.","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/captain-marvel-jr/4050-953/","start_year":"1942"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-972/","count_of_issues":12,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-03-01 06:54:32","deck":null,"description":"

    All Surprise ran during 1943 through 1946 for 12 issues. This series then continued into Jeanie Comics.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56959/","id":56959,"name":null,"issue_number":"1"},"id":972,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47575-972-56959-1-all-surprise.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47575-972-56959-1-all-surprise.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47575-972-56959-1-all-surprise.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47575-972-56959-1-all-surprise.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47575-972-56959-1-all-surprise.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47575-972-56959-1-all-surprise.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47575-972-56959-1-all-surprise.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47575-972-56959-1-all-surprise.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47575-972-56959-1-all-surprise.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56970/","id":56970,"name":"Terry-Toons","issue_number":"12"},"name":"All Surprise Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/all-surprise-comics/4050-972/","start_year":"1943"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-978/","count_of_issues":69,"date_added":"2008-06-06 11:08:04","date_last_updated":"2022-07-25 11:43:47","deck":null,"description":"

    Don Winslow of the Navy was originally a comic strip (debuting on March 5, 1934) and while several comics would reprint the strips in the 30's and 40's, Fawcett launched this series in 1943 featuring the publication of original Don Winslow stories in the common anthology style of numerous short stories, the majority of which focused on Don Winslow. The strip was intended to excite kids about life in the military, hopefully leading them to later seek a place in the US Armed Forces. Fawcett's comic lasted up until 1948 when it ceased publication after sixty-four issues. The book would later see two brief revivals before it ended; the first was in 1951 when Fawcett briefly resurrected the series for five more issues, the second came in 1955 when Charlton printed reprints of the series but this only lasted for four issues and after that the title's compiled numbering was continued in the Charlton series, Fightin' Navy.

    Publishers

    Collected Edition

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92218/","id":92218,"name":null,"issue_number":"1"},"id":978,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59223-978-92218-1-don-winslow-of-the-n.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-241338/","id":241338,"name":null,"issue_number":"69"},"name":"Don Winslow of the Navy","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/don-winslow-of-the-navy/4050-978/","start_year":"1943"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-988/","count_of_issues":3,"date_added":"2008-06-06 11:08:04","date_last_updated":"2012-01-19 12:54:33","deck":null,"description":"

    Publishers

    #1-2: DC Comics

    #3: EC

    The Bible has heroes, villains, and amazing feats, so its content proved well suited to the comic medium. The first DC series to feature biblical tales had appeared in 1942. Titled Picture Stories from the Bible, it had adapted stories from the Old Testament including those of Moses, Abraham, the prophet Elijah and the famous David and Goliath. The 1944 version, labeled \"New Testament Edition\" on the cover, told tales from the life of Christ. Don Cameron illustrated the series, which offered 45pages of religious education for just 10c.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94364/","id":94364,"name":null,"issue_number":"1"},"id":988,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61369-988-94364-1-picture-stories-from.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61369-988-94364-1-picture-stories-from.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61369-988-94364-1-picture-stories-from.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61369-988-94364-1-picture-stories-from.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61369-988-94364-1-picture-stories-from.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61369-988-94364-1-picture-stories-from.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61369-988-94364-1-picture-stories-from.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61369-988-94364-1-picture-stories-from.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61369-988-94364-1-picture-stories-from.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-234571/","id":234571,"name":null,"issue_number":"3"},"name":"Picture Stories from the Bible (New Testament)","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/picture-stories-from-the-bible-new-testament/4050-988/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1003/","count_of_issues":6,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-08-16 03:36:21","deck":null,"description":"

    Comic Capers was an anthology series featuring anthropomorphic animal characters such as Ziggy Pig, Silly Seal and Super Rabbit that ran from 1944-1946 at a seasonal publishing rate, lasting a total of six issues. The featured characters in the series also had their own titles published alongside it: Ziggy Pig-Silly Seal Comics and Super Rabbit.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188262/","id":188262,"name":null,"issue_number":"1"},"id":1003,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1063482-comic_capers_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1063482-comic_capers_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1063482-comic_capers_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1063482-comic_capers_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1063482-comic_capers_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1063482-comic_capers_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1063482-comic_capers_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1063482-comic_capers_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1063482-comic_capers_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188265/","id":188265,"name":"The Startling Case Of The Strange Sounds!","issue_number":"6"},"name":"Comic Capers","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/comic-capers/4050-1003/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1006/","count_of_issues":8,"date_added":"2008-06-06 11:08:04","date_last_updated":"2009-12-14 12:54:12","deck":null,"description":"

     Funny Tunes numbers from 16 to 23 for a total of 8 issues. Series numbering continued from Krazy Komics and continues into Oscar Comics with issues 24(1)

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90746/","id":90746,"name":null,"issue_number":"16"},"id":1006,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57751-1006-90746-1-funny-tunes.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57751-1006-90746-1-funny-tunes.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57751-1006-90746-1-funny-tunes.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57751-1006-90746-1-funny-tunes.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57751-1006-90746-1-funny-tunes.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57751-1006-90746-1-funny-tunes.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57751-1006-90746-1-funny-tunes.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57751-1006-90746-1-funny-tunes.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57751-1006-90746-1-funny-tunes.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90751/","id":90751,"name":"Pigtales","issue_number":"23"},"name":"Funny Tunes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/funny-tunes/4050-1006/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1007/","count_of_issues":4,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-02-03 08:30:52","deck":null,"description":"

    Ideal Comics ran during 1944 through 1946 for 4 issues. This series then continued into Willie Comics.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90857/","id":90857,"name":"Super Rabbit","issue_number":"1"},"id":1007,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57862-1007-90857-1-ideal-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57862-1007-90857-1-ideal-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57862-1007-90857-1-ideal-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57862-1007-90857-1-ideal-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57862-1007-90857-1-ideal-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57862-1007-90857-1-ideal-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57862-1007-90857-1-ideal-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57862-1007-90857-1-ideal-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57862-1007-90857-1-ideal-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90860/","id":90860,"name":"Here's How For A Merry Christmas","issue_number":"4"},"name":"Ideal Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/ideal-comics/4050-1007/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1012/","count_of_issues":23,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-10-09 10:23:12","deck":null,"description":"

    Tessie the Typist was an ongoing romance/humor anthology published by Marvel in the forties, from 1944-1949 for twenty-three issues. The numbering was then continued in Tiny Tessie for a single issue and Real Experiences for another issue. Tessie the Typist was one of the less-successful books of its kind, longer running comics featuring other girls included: Millie the Model, Hedy De Vine/Hedy of Hollywood, Nellie the Nurse and Patsy Walker.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167732/","id":167732,"name":null,"issue_number":"1"},"id":1012,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/927188-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/927188-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/927188-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/927188-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/927188-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/927188-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/927188-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/927188-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/927188-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91141/","id":91141,"name":null,"issue_number":"23"},"name":"Tessie the Typist","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/tessie-the-typist/4050-1012/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1013/","count_of_issues":6,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-03-04 07:43:22","deck":null,"description":"

    Ziggy Pig And Silly Seal Comics ran during 1944 through 1946 for 6 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57855/","id":57855,"name":"The Army","issue_number":"1"},"id":1013,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/48383-1013-57855-1-ziggy-pig-and-silly-.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57860/","id":57860,"name":null,"issue_number":"6"},"name":"Ziggy Pig-Silly Seal Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/ziggy-pig-silly-seal-comics/4050-1013/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1032/","count_of_issues":139,"date_added":"2008-06-06 11:08:04","date_last_updated":"2022-09-06 15:51:35","deck":null,"description":"

    Indicia has two volume names, one is matching the cover name and number, the A-1 volume is in the brackets with continuous numbering.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-100230/","id":100230,"name":"Great Western # 9","issue_number":"105"},"id":1032,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/66021-1032-99018-1-a-1-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/66021-1032-99018-1-a-1-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/66021-1032-99018-1-a-1-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/66021-1032-99018-1-a-1-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/66021-1032-99018-1-a-1-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/66021-1032-99018-1-a-1-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/66021-1032-99018-1-a-1-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/66021-1032-99018-1-a-1-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/66021-1032-99018-1-a-1-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-208938/","id":208938,"name":"Strong Man # 4","issue_number":"139"},"name":"A-1 Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","id":84,"name":"Magazine Enterprises"},"site_detail_url":"https://comicvine.gamespot.com/a-1-comics/4050-1032/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1038/","count_of_issues":23,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-05-26 09:23:38","deck":null,"description":"

    Gay Comics was an anthology in the 1940's by Marvel's publishing predecessor Timely featuring such characters as Millie the Model, Tessie the Typist and Nellie the Nurse. Although Gay Comics #1 was released earlier in the year (as its own volume), this series began with #18 with no clue as to where the first seventeen issues came from. Gay Comics then continued for twenty-three issues until it ended with #40, continuing it's numbering in Honeymoon #41.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92191/","id":92191,"name":null,"issue_number":"18"},"id":1038,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59196-1038-92191-1-gay-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59196-1038-92191-1-gay-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59196-1038-92191-1-gay-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59196-1038-92191-1-gay-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59196-1038-92191-1-gay-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59196-1038-92191-1-gay-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59196-1038-92191-1-gay-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59196-1038-92191-1-gay-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59196-1038-92191-1-gay-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92211/","id":92211,"name":null,"issue_number":"40"},"name":"Gay Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/gay-comics/4050-1038/","start_year":"1944"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1041/","count_of_issues":4,"date_added":"2008-06-06 11:08:04","date_last_updated":"2009-01-08 15:14:10","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94360/","id":94360,"name":null,"issue_number":"1"},"id":1041,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61365-1041-94360-1-picture-stories-from.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61365-1041-94360-1-picture-stories-from.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61365-1041-94360-1-picture-stories-from.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61365-1041-94360-1-picture-stories-from.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61365-1041-94360-1-picture-stories-from.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61365-1041-94360-1-picture-stories-from.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61365-1041-94360-1-picture-stories-from.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61365-1041-94360-1-picture-stories-from.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61365-1041-94360-1-picture-stories-from.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94867/","id":94867,"name":null,"issue_number":"4"},"name":"Picture Stories from American History","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-89/","id":89,"name":"EC"},"site_detail_url":"https://comicvine.gamespot.com/picture-stories-from-american-history/4050-1041/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1043/","count_of_issues":127,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-09-04 12:15:46","deck":null,"description":"

    Real Screen Comics was an anthology series published by DC from 1945 to 1959 over the course of 127 issues. Featured throughout the series run were the characters The Fox and The Crow and although they were the main feature, other stories were published in the series as well including \"Flippity and Flop\" and \"Tito and His Burrito\". The series title is a reference to \"Screen Gems\" the animation studio that existed from 1940-1946 wherein characters like those featured in the aforementioned comics originally came into being through the form of cartoons.

    General Notes

    Real Screen Comics #1 does not exist, for the first issue, see Real Screen Funnies.

    After #128, the series changed its name to TV Screen Cartoons under which it lasted for another ten issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56618/","id":56618,"name":null,"issue_number":"2"},"id":1043,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47251-1043-56618-1-real-screen-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47251-1043-56618-1-real-screen-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47251-1043-56618-1-real-screen-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47251-1043-56618-1-real-screen-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47251-1043-56618-1-real-screen-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47251-1043-56618-1-real-screen-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47251-1043-56618-1-real-screen-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47251-1043-56618-1-real-screen-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47251-1043-56618-1-real-screen-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56743/","id":56743,"name":null,"issue_number":"128"},"name":"Real Screen Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/real-screen-comics/4050-1043/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1056/","count_of_issues":5,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-02-15 13:59:02","deck":null,"description":"

    Funny Frolics ran during 1945 through 1946 for 5 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92185/","id":92185,"name":null,"issue_number":"1"},"id":1056,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59190-1056-92185-1-funny-frolics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59190-1056-92185-1-funny-frolics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59190-1056-92185-1-funny-frolics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59190-1056-92185-1-funny-frolics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59190-1056-92185-1-funny-frolics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59190-1056-92185-1-funny-frolics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59190-1056-92185-1-funny-frolics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59190-1056-92185-1-funny-frolics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59190-1056-92185-1-funny-frolics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92189/","id":92189,"name":"Pigtales","issue_number":"5"},"name":"Funny Frolics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/funny-frolics/4050-1056/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1057/","count_of_issues":19,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-01-04 09:19:35","deck":null,"description":"

    Georgie Comics ran during 1945 through 1948 for 19 issues. This series then continued into Georgie And Judy.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90755/","id":90755,"name":null,"issue_number":"1"},"id":1057,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57760-1057-90755-1-georgie-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57760-1057-90755-1-georgie-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57760-1057-90755-1-georgie-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57760-1057-90755-1-georgie-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57760-1057-90755-1-georgie-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57760-1057-90755-1-georgie-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57760-1057-90755-1-georgie-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57760-1057-90755-1-georgie-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57760-1057-90755-1-georgie-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90772/","id":90772,"name":"News Of Newton!","issue_number":"19"},"name":"Georgie Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/georgie-comics/4050-1057/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1059/","count_of_issues":3,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-01-14 08:54:21","deck":null,"description":"

    Krazy Krow ran in 1945 for only 3 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94895/","id":94895,"name":"Krazy Krow & Boobsy","issue_number":"1"},"id":1059,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61900-1059-94895-1-krazy-krow.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61900-1059-94895-1-krazy-krow.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61900-1059-94895-1-krazy-krow.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61900-1059-94895-1-krazy-krow.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61900-1059-94895-1-krazy-krow.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61900-1059-94895-1-krazy-krow.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61900-1059-94895-1-krazy-krow.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61900-1059-94895-1-krazy-krow.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61900-1059-94895-1-krazy-krow.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94897/","id":94897,"name":"Krazy Krow For Mayor","issue_number":"3"},"name":"Krazy Krow","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/krazy-krow/4050-1059/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1061/","count_of_issues":36,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-05-09 18:31:52","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90545/","id":90545,"name":null,"issue_number":"1"},"id":1061,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57550-1061-90545-1-nellie-the-nurse.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90570/","id":90570,"name":null,"issue_number":"36"},"name":"Nellie the Nurse","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-75/","id":75,"name":"Atlas"},"site_detail_url":"https://comicvine.gamespot.com/nellie-the-nurse/4050-1061/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1062/","count_of_issues":124,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-08-17 15:49:04","deck":null,"description":"

    Patsy Walker, a romance character who first appeared in 1944, got her own solo title only months later. Starting in 1945 as an original Timely Golden Age comic, the very popular Patsy Walker ran through 1965 for 124 issues. Although Patsy had always starred in romance and humor comics up until that point, in 1965 (the same year her ongoing ended) she was first incorporated into the Marvel Universe in Fantastic Four Annual #3. However, it would be another eleven years before she first appeared as \"Hellcat\", her super-heroine persona in the modern-day Marvel canon.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-141000/","id":141000,"name":"Patsy Walker","issue_number":"1"},"id":1062,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1995068-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1995068-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1995068-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1995068-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1995068-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1995068-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1995068-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1995068-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1995068-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-73727/","id":73727,"name":"Surfing Sweeties","issue_number":"124"},"name":"Patsy Walker","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/patsy-walker/4050-1062/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1063/","count_of_issues":7,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-12-25 10:11:28","deck":null,"description":"

    Silly Tunes was one of several Golden Age anthologies published by Timely featuring anthropomorphic characters such as Silly Seal, Ziggy Pig, Super Rabbit and Krazy Krow who were all simultaneously appearing in their own comics. The series lasted for seven issues over the course of two years until it ended in 1947.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91238/","id":91238,"name":"Silly Baseball","issue_number":"1"},"id":1063,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/58243-1063-91238-1-silly-tunes.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/58243-1063-91238-1-silly-tunes.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/58243-1063-91238-1-silly-tunes.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/58243-1063-91238-1-silly-tunes.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/58243-1063-91238-1-silly-tunes.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/58243-1063-91238-1-silly-tunes.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/58243-1063-91238-1-silly-tunes.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/58243-1063-91238-1-silly-tunes.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/58243-1063-91238-1-silly-tunes.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91244/","id":91244,"name":"Putting His Heart In His Art!","issue_number":"7"},"name":"Silly Tunes","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/silly-tunes/4050-1063/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1066/","count_of_issues":89,"date_added":"2008-06-06 11:08:04","date_last_updated":"2019-05-08 08:04:15","deck":null,"description":"

    The Marvel Family is a term that has been attached to the family of characters similar in appearance and powers to the original Captain Marvel (this group primarily consists of Mary Marvel, Freddy Freeman and of course Captain Marvel), a character that first appeared in Fawcett's Whiz Comics. About five years after his first appearance, and a few years after the other \"Marvel Family\" character's premieres, the Marvel Family volume was born (December, 1945). Since Captain Marvel was (at the time) the top-selling comic out there, it was no surprise that the Marvel Family series also had some success and it lasted for a little over eight years but ended with a total of 89 issues (January, 1954).

    Reprints (single issues)

    Collected Editions

    Non-U.S. Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-119538/","id":119538,"name":"The Mighty Marvels Join Forces!/The Marvel Family and Baby Marvel","issue_number":"1"},"id":1066,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/251573-1066-119538-1-marvel-family-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/251573-1066-119538-1-marvel-family-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/251573-1066-119538-1-marvel-family-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/251573-1066-119538-1-marvel-family-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/251573-1066-119538-1-marvel-family-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/251573-1066-119538-1-marvel-family-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/251573-1066-119538-1-marvel-family-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/251573-1066-119538-1-marvel-family-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/251573-1066-119538-1-marvel-family-the.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-905/","id":905,"name":"Fights the Dark Curse","issue_number":"89"},"name":"The Marvel Family","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/the-marvel-family/4050-1066/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1068/","count_of_issues":76,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-09-01 12:28:27","deck":null,"description":"

    Issue #1 published as Jungle Girl.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-136093/","id":136093,"name":"The Voodoo Drums of Death!","issue_number":"2"},"id":1068,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/77/509146-425_4_002.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/77/509146-425_4_002.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/77/509146-425_4_002.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/77/509146-425_4_002.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/77/509146-425_4_002.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/77/509146-425_4_002.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/77/509146-425_4_002.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/77/509146-425_4_002.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/77/509146-425_4_002.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180166/","id":180166,"name":null,"issue_number":"77"},"name":"Nyoka the Jungle Girl","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-34/","id":34,"name":"Fawcett Publications"},"site_detail_url":"https://comicvine.gamespot.com/nyoka-the-jungle-girl/4050-1068/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1069/","count_of_issues":89,"date_added":"2008-06-06 11:08:04","date_last_updated":"2022-06-19 00:55:54","deck":null,"description":"

    Publishing History

    Collected Editions

    Notes

    • Indicia for first issue of Airboy Comics calls it vol 2 #11, making it issue #23 in numbering sequence.
    • Last issue of Airboy Comics was #111 (vol 10, #4), May 1953.
    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168965/","id":168965,"name":"v2 #11","issue_number":"23"},"id":1069,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/938023-airboy_11.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/938023-airboy_11.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/938023-airboy_11.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/938023-airboy_11.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/938023-airboy_11.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/938023-airboy_11.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/938023-airboy_11.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/938023-airboy_11.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/938023-airboy_11.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-471/","id":471,"name":null,"issue_number":"111"},"name":"Airboy Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-37/","id":37,"name":"Hillman"},"site_detail_url":"https://comicvine.gamespot.com/airboy-comics/4050-1069/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1071/","count_of_issues":12,"date_added":"2008-06-06 11:08:04","date_last_updated":"2011-08-16 03:54:21","deck":null,"description":"

    Treasure Comics was an anthology series from Prize Comics, published from 1945-1947, it commonly featured stories including Paul Bunyan, Arabian Knight, Marco Polo, Dr. Styx and The Treasure Keeper.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94734/","id":94734,"name":null,"issue_number":"1"},"id":1071,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61739-1071-94734-1-treasure-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61739-1071-94734-1-treasure-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61739-1071-94734-1-treasure-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61739-1071-94734-1-treasure-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61739-1071-94734-1-treasure-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61739-1071-94734-1-treasure-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61739-1071-94734-1-treasure-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61739-1071-94734-1-treasure-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61739-1071-94734-1-treasure-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94743/","id":94743,"name":null,"issue_number":"12"},"name":"Treasure Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-45/","id":45,"name":"Prize"},"site_detail_url":"https://comicvine.gamespot.com/treasure-comics/4050-1071/","start_year":"1945"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1097/","count_of_issues":21,"date_added":"2008-06-06 11:08:04","date_last_updated":"2015-06-23 12:35:01","deck":"DC Comics' 1940s anthology series offering real facts about real people.","description":"

    Real Fact Comics was an anthology series composed of short graphic and prose stories which purported to outline the \"real facts\" behind many famous individuals. Highlights include: The controversial article crediting Bob Kane with the sole creation of Batman, Robin and The Joker, The first published written work from Harlan Ellison, and the introduction of Tommy Tomorrow.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97929/","id":97929,"name":null,"issue_number":"1"},"id":1097,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/64932-1097-97929-1-real-fact-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/64932-1097-97929-1-real-fact-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/64932-1097-97929-1-real-fact-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/64932-1097-97929-1-real-fact-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/64932-1097-97929-1-real-fact-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/64932-1097-97929-1-real-fact-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/64932-1097-97929-1-real-fact-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/64932-1097-97929-1-real-fact-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/64932-1097-97929-1-real-fact-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-97928/","id":97928,"name":null,"issue_number":"21"},"name":"Real Fact Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/real-fact-comics/4050-1097/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1098/","count_of_issues":180,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-12-28 20:42:48","deck":null,"description":"

    Issues #65-108 are indexed in \" New Funnies\"

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-166078/","id":166078,"name":null,"issue_number":"109"},"id":1098,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/903874-wlnf109.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/903874-wlnf109.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/903874-wlnf109.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/903874-wlnf109.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/903874-wlnf109.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/903874-wlnf109.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/903874-wlnf109.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/903874-wlnf109.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/903874-wlnf109.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5836/","id":5836,"name":null,"issue_number":"288"},"name":"Walter Lantz New Funnies","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4/","id":4,"name":"Dell"},"site_detail_url":"https://comicvine.gamespot.com/walter-lantz-new-funnies/4050-1098/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1101/","count_of_issues":381,"date_added":"2008-06-06 11:08:04","date_last_updated":"2016-10-18 14:52:02","deck":null,"description":"

    Numbering continues from Black Hood Comics #19.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-167645/","id":167645,"name":null,"issue_number":"20"},"id":1101,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/925864-20.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/925864-20.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/925864-20.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/925864-20.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/925864-20.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/925864-20.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/925864-20.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/925864-20.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/925864-20.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-290248/","id":290248,"name":null,"issue_number":"400"},"name":"Laugh Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-101/","id":101,"name":"Archie Comics"},"site_detail_url":"https://comicvine.gamespot.com/laugh-comics/4050-1101/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1111/","count_of_issues":8,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-02-18 13:28:07","deck":null,"description":"

    Continued from Movie Tunes Comics, Frankie Comics ran during 1946 through 1949 for 8 issues. This series then continued back into Frankie And Lana.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90352/","id":90352,"name":"For Whom The Belles Toll!","issue_number":"4"},"id":1111,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1133040-851_o_1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1133040-851_o_1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1133040-851_o_1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1133040-851_o_1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1133040-851_o_1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1133040-851_o_1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1133040-851_o_1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1133040-851_o_1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1133040-851_o_1_.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90359/","id":90359,"name":"The Copy Cats!","issue_number":"11"},"name":"Frankie Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/frankie-comics/4050-1111/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1113/","count_of_issues":15,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-01-14 08:57:15","deck":null,"description":"

    Continued from Comedy Comics, Margie Comics ran during 1946 through 1949 for 15 issues. This series then continued into Reno Browne, Hollywood's Greatest Cowgirl

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95131/","id":95131,"name":"The Fickle Female's Football Frolics!","issue_number":"35"},"id":1113,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/62136-1113-95131-1-margie-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/62136-1113-95131-1-margie-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/62136-1113-95131-1-margie-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/62136-1113-95131-1-margie-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/62136-1113-95131-1-margie-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/62136-1113-95131-1-margie-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/62136-1113-95131-1-margie-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/62136-1113-95131-1-margie-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/62136-1113-95131-1-margie-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95143/","id":95143,"name":"Education Of Judy","issue_number":"49"},"name":"Margie Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/margie-comics/4050-1113/","start_year":"1946"},{"aliases":"Mighty Mouse\r\nMighty Mouse Comics","api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1114/","count_of_issues":71,"date_added":"2008-06-06 11:08:04","date_last_updated":"2013-05-17 04:31:45","deck":null,"description":"

    The first four issues were published by Timely, afterwards the series was switched over to the publisher, St. John, then to Pines.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95200/","id":95200,"name":null,"issue_number":"1"},"id":1114,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/62205-1114-95200-1-mighty-mouse.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/62205-1114-95200-1-mighty-mouse.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/62205-1114-95200-1-mighty-mouse.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/62205-1114-95200-1-mighty-mouse.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/62205-1114-95200-1-mighty-mouse.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/62205-1114-95200-1-mighty-mouse.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/62205-1114-95200-1-mighty-mouse.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/62205-1114-95200-1-mighty-mouse.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/62205-1114-95200-1-mighty-mouse.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-229950/","id":229950,"name":null,"issue_number":"71"},"name":"Paul Terry's Mighty Mouse Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-2043/","id":2043,"name":"St. Johns Publishing Co."},"site_detail_url":"https://comicvine.gamespot.com/paul-terry-s-mighty-mouse-comics/4050-1114/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1116/","count_of_issues":4,"date_added":"2008-06-06 11:08:04","date_last_updated":"2015-03-20 17:36:04","deck":null,"description":"

    Continued from Dopey Duck, Wacky Duck ran during 1946 through 1947 for 4 issues. This series then changed themes dramatically and was re-named with issue 7 as Justice.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57668/","id":57668,"name":"That's Hats!","issue_number":"3"},"id":1116,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/48206-1116-57668-1-wacky-duck.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/48206-1116-57668-1-wacky-duck.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/48206-1116-57668-1-wacky-duck.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/48206-1116-57668-1-wacky-duck.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/48206-1116-57668-1-wacky-duck.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/48206-1116-57668-1-wacky-duck.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/48206-1116-57668-1-wacky-duck.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/48206-1116-57668-1-wacky-duck.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/48206-1116-57668-1-wacky-duck.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57671/","id":57671,"name":"Silly's Dilemma","issue_number":"6"},"name":"Wacky Duck","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/wacky-duck/4050-1116/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1117/","count_of_issues":15,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-04-02 11:24:54","deck":null,"description":"

    Continued from Ideal Comics, Willie Comics ran during 1946 through 1949 for 15 issues. This series then continued into Li'l Willie Comics.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91014/","id":91014,"name":"By The Bee-U-Tee-Ful Sea!","issue_number":"5"},"id":1117,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1173145-4675_o_1_.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1173145-4675_o_1_.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1173145-4675_o_1_.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1173145-4675_o_1_.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1173145-4675_o_1_.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1173145-4675_o_1_.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1173145-4675_o_1_.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1173145-4675_o_1_.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1173145-4675_o_1_.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187980/","id":187980,"name":"Fishing For Trouble!","issue_number":"19"},"name":"Willie Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/willie-comics/4050-1117/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1119/","count_of_issues":3,"date_added":"2008-06-06 11:08:04","date_last_updated":"2022-07-20 09:14:43","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-173410/","id":173410,"name":null,"issue_number":"1"},"id":1119,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/974304-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/974304-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/974304-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/974304-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/974304-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/974304-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/974304-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/974304-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/974304-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93539/","id":93539,"name":null,"issue_number":"3"},"name":"Blackstone, Master Magician Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-3139/","id":3139,"name":"Vital Publications, Inc."},"site_detail_url":"https://comicvine.gamespot.com/blackstone-master-magician-comics/4050-1119/","start_year":"1946"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1133/","count_of_issues":79,"date_added":"2008-06-06 11:08:04","date_last_updated":"2013-03-01 17:35:50","deck":null,"description":"

    .

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53209/","id":53209,"name":null,"issue_number":"1"},"id":1133,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/45860-1133-53209-1-date-with-judy-a.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/45860-1133-53209-1-date-with-judy-a.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/45860-1133-53209-1-date-with-judy-a.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/45860-1133-53209-1-date-with-judy-a.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/45860-1133-53209-1-date-with-judy-a.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/45860-1133-53209-1-date-with-judy-a.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/45860-1133-53209-1-date-with-judy-a.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/45860-1133-53209-1-date-with-judy-a.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/45860-1133-53209-1-date-with-judy-a.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53286/","id":53286,"name":null,"issue_number":"79"},"name":"A Date with Judy","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/a-date-with-judy/4050-1133/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1134/","count_of_issues":67,"date_added":"2008-06-06 11:08:04","date_last_updated":"2012-01-17 15:21:27","deck":null,"description":"

    DC hoped it could beat slumping sales with its first entry into the crime comics genre. To minimize risk, DC licensed an established property - the Gang Busters radio program, which had been on the air waves since 1935 (originally under the name of the G-Men). Edited by Jack Schiff, the Gang Busters comic focused on FBI cases and stand alone crime stories. The first issue included tales such as \"Murder was my business\" and \"The case of the Iron-clad alibi.\" Later issues featured photo covers, a practice becoming increasingly common in the late 1940's.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-157130/","id":157130,"name":null,"issue_number":"1"},"id":1134,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/797909-gangbusters_a.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/797909-gangbusters_a.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/797909-gangbusters_a.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/797909-gangbusters_a.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/797909-gangbusters_a.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/797909-gangbusters_a.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/797909-gangbusters_a.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/797909-gangbusters_a.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/797909-gangbusters_a.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-4110/","id":4110,"name":null,"issue_number":"67"},"name":"Gang Busters","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/gang-busters/4050-1134/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1139/","count_of_issues":24,"date_added":"2008-06-06 11:08:04","date_last_updated":"2012-05-19 18:36:13","deck":null,"description":"

    Series continued from: Boy Explorers Comics (Harvey/Family Comics, 1946) #2

    Series continues as: Terry and the Pirates (Charlton, 1955) #26 (each series has a #26 issue).

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-96955/","id":96955,"name":null,"issue_number":"3"},"id":1139,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/63959-1139-96955-1-terry-and-the-pirate.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-289526/","id":289526,"name":null,"issue_number":"26"},"name":"Terry and the Pirates Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-20/","id":20,"name":"Harvey"},"site_detail_url":"https://comicvine.gamespot.com/terry-and-the-pirates-comics/4050-1139/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1141/","count_of_issues":12,"date_added":"2008-06-06 11:08:04","date_last_updated":"2009-12-14 20:20:43","deck":null,"description":"

    Numbered 27 to 38 for a total of 12 issues. Series continued from Krazy Komics and continues into Cindy Smith.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90603/","id":90603,"name":"Her Caveman Rave-Man!","issue_number":"27"},"id":1141,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57608-1141-90603-1-cindy-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57608-1141-90603-1-cindy-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57608-1141-90603-1-cindy-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57608-1141-90603-1-cindy-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57608-1141-90603-1-cindy-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57608-1141-90603-1-cindy-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57608-1141-90603-1-cindy-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57608-1141-90603-1-cindy-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57608-1141-90603-1-cindy-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90614/","id":90614,"name":"The Old Maid!","issue_number":"38"},"name":"Cindy Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/cindy-comics/4050-1141/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1142/","count_of_issues":14,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-01-14 09:13:33","deck":null,"description":"

    Continued from All Winners Comics, Hedy De Vine Comics ran during 1947 through 1949 for 14 issues. This series then continued into Hedy Of Hollywood Comics

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187936/","id":187936,"name":null,"issue_number":"22"},"id":1142,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1062821-hedy_de_vine_comics_22.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1062821-hedy_de_vine_comics_22.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1062821-hedy_de_vine_comics_22.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1062821-hedy_de_vine_comics_22.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1062821-hedy_de_vine_comics_22.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1062821-hedy_de_vine_comics_22.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1062821-hedy_de_vine_comics_22.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1062821-hedy_de_vine_comics_22.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1062821-hedy_de_vine_comics_22.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90823/","id":90823,"name":"It's Smart To Be Stupid","issue_number":"35"},"name":"Hedy De Vine Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/hedy-de-vine-comics/4050-1142/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1143/","count_of_issues":15,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-05-13 11:00:51","deck":null,"description":"

    Numbering continues from All Surprise #1-12, becomes Cowgirl Romances with issue #28

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93076/","id":93076,"name":"Oh Baby, No Baby!","issue_number":"13"},"id":1143,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/60081-1143-93076-1-jeanie-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/60081-1143-93076-1-jeanie-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/60081-1143-93076-1-jeanie-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/60081-1143-93076-1-jeanie-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/60081-1143-93076-1-jeanie-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/60081-1143-93076-1-jeanie-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/60081-1143-93076-1-jeanie-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/60081-1143-93076-1-jeanie-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/60081-1143-93076-1-jeanie-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93089/","id":93089,"name":"Faith","issue_number":"27"},"name":"Jeanie Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/jeanie-comics/4050-1143/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1144/","count_of_issues":45,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-05-29 10:43:36","deck":"Justice: Every Case Taken From Real Life!!","description":"

    Continued from Wacky Duck, Justice ran during 1947 through 1955 for 52 issues.The first three issues (7-9) were renumbered to 1-3, and the series continued with issue 4 in Justice Comics (1947) and in Justice Comics (1948).

    This series featured crime-themed adventures, in which justice always prevailed. It was continued as Tales Of Justice with issue 53.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90923/","id":90923,"name":null,"issue_number":"8"},"id":1144,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57928-1144-90923-1-justice.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57928-1144-90923-1-justice.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57928-1144-90923-1-justice.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57928-1144-90923-1-justice.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57928-1144-90923-1-justice.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57928-1144-90923-1-justice.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57928-1144-90923-1-justice.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57928-1144-90923-1-justice.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57928-1144-90923-1-justice.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90965/","id":90965,"name":null,"issue_number":"52"},"name":"Justice","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-75/","id":75,"name":"Atlas"},"site_detail_url":"https://comicvine.gamespot.com/justice/4050-1144/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1146/","count_of_issues":10,"date_added":"2008-06-06 11:08:04","date_last_updated":"2009-12-14 12:25:36","deck":null,"description":"

    Oscar Comics numbers from (24)1 to 10 for a total of 10 issues. Series numbering continued from Funny Tunes. Numbering continues into Awful Oscar with issue 11.

    Please note: Although the covers for the first and second issues are both numbered 24 & 25 respectively. With the remaining issues within the series numbered as 3-10. For our purposes here, issues 24 & 25 are numbered 1 & 2 to keep the series sequence correct.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-95461/","id":95461,"name":null,"issue_number":"1"},"id":1146,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/62466-1146-95461-1-oscar-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/62466-1146-95461-1-oscar-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/62466-1146-95461-1-oscar-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/62466-1146-95461-1-oscar-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/62466-1146-95461-1-oscar-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/62466-1146-95461-1-oscar-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/62466-1146-95461-1-oscar-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/62466-1146-95461-1-oscar-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/62466-1146-95461-1-oscar-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-187363/","id":187363,"name":"Winter Worries!","issue_number":"10"},"name":"Oscar Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/oscar-comics/4050-1146/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1147/","count_of_issues":9,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-02-24 13:39:28","deck":null,"description":"

    Continued from Kid Movie Komics, Rusty Comics ran during 1947 through 1949 for 9 issues. This series then continued into Rusty And Her Family.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91267/","id":91267,"name":"Getting Sick-nic On A Picnic!","issue_number":"12"},"id":1147,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/58272-1147-91267-1-rusty-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/58272-1147-91267-1-rusty-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/58272-1147-91267-1-rusty-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/58272-1147-91267-1-rusty-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/58272-1147-91267-1-rusty-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/58272-1147-91267-1-rusty-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/58272-1147-91267-1-rusty-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/58272-1147-91267-1-rusty-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/58272-1147-91267-1-rusty-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188393/","id":188393,"name":"One Woman Too Many!","issue_number":"20"},"name":"Rusty Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/rusty-comics/4050-1147/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1148/","count_of_issues":15,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-04-01 13:34:11","deck":null,"description":"

    Continued from All Teen, Teen Comics ran during 1947 through 1950 for 15 issues. This series then continued into Journey Into Unknown Worlds.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57327/","id":57327,"name":null,"issue_number":"22"},"id":1148,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1062859-teen_comics_21.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1062859-teen_comics_21.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1062859-teen_comics_21.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1062859-teen_comics_21.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1062859-teen_comics_21.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1062859-teen_comics_21.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1062859-teen_comics_21.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1062859-teen_comics_21.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1062859-teen_comics_21.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57339/","id":57339,"name":"Leave It To The Girls!","issue_number":"35"},"name":"Teen Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/teen-comics/4050-1148/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1151/","count_of_issues":92,"date_added":"2008-06-06 11:08:04","date_last_updated":"2013-06-08 12:11:12","deck":null,"description":"

    Issue #v7#5 has #60 on the cover, when it should have had #59. To correct this misnumbering, issue #v7#6 has 60A on the cover.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93818/","id":93818,"name":null,"issue_number":"1"},"id":1151,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/60823-1151-93818-1-justice-traps-the-gu.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-409718/","id":409718,"name":"v11 #2","issue_number":"92"},"name":"Justice Traps the Guilty","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-45/","id":45,"name":"Prize"},"site_detail_url":"https://comicvine.gamespot.com/justice-traps-the-guilty/4050-1151/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1153/","count_of_issues":13,"date_added":"2008-06-06 11:08:04","date_last_updated":"2012-05-01 13:16:30","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105257/","id":105257,"name":null,"issue_number":"1"},"id":1153,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/72259-1153-105257-1-manhunt.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/72259-1153-105257-1-manhunt.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/72259-1153-105257-1-manhunt.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/72259-1153-105257-1-manhunt.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/72259-1153-105257-1-manhunt.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/72259-1153-105257-1-manhunt.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/72259-1153-105257-1-manhunt.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/72259-1153-105257-1-manhunt.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/72259-1153-105257-1-manhunt.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-105260/","id":105260,"name":null,"issue_number":"14"},"name":"Manhunt","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","id":84,"name":"Magazine Enterprises"},"site_detail_url":"https://comicvine.gamespot.com/manhunt/4050-1153/","start_year":"1947"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1168/","count_of_issues":71,"date_added":"2008-06-06 11:08:04","date_last_updated":"2020-12-02 04:31:49","deck":null,"description":"

    Another teen title joined DC's lineup. Leave it to Binky centered on the hapless Binky Biggs and hi sefforts to date the beautiful Peggy, despite the interferences of his troublemaking younger brother \"Little Allergy.\" Edited by Sheldon Mayer with art by Bob Oskner, Leave it to Binky followed in the footsteps of DC's 1944 launch of the teen title Buzzy. Both titles reflected the fact that competitor Archie Comics had turned teen comics into big business through its popular freckle faced hero.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56353/","id":56353,"name":null,"issue_number":"1"},"id":1168,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47008-1168-56353-1-leave-it-to-binky.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56423/","id":56423,"name":null,"issue_number":"71"},"name":"Leave it to Binky","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/leave-it-to-binky/4050-1168/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1169/","count_of_issues":67,"date_added":"2008-06-06 11:08:04","date_last_updated":"2012-01-17 15:52:58","deck":null,"description":"

    Like its contemporary, Gang Busters, the crime comic Mr District Attorney was licensed from a popular radio show. The radio version had been on air since 1939 and DC was quick to advertise its popular pedigree with a cover banner reading, \"Based on radio's #1 hit!\" Its subject was the tough talking (and nameless) District Attorney, an implacable and callous force for justice who fought ugly and amoral crooks with colorful names like, \"Smoke-rings\" Thomson and teh Pittsburgh Kid. Mr District Attorney came along at the right time to catch a wave of crime comics and lasted for 67 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180160/","id":180160,"name":"The Five Days That Shook a City!","issue_number":"1"},"id":1169,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/1011212-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/1011212-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/1011212-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/1011212-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/1011212-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/1011212-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/1011212-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/1011212-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/1011212-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-259897/","id":259897,"name":null,"issue_number":"67"},"name":"Mr. District Attorney","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/mr-district-attorney/4050-1169/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1171/","count_of_issues":85,"date_added":"2008-06-06 11:08:04","date_last_updated":"2018-07-12 02:48:20","deck":null,"description":"

    The introduction of Western Comics stood as proof of DC's commitment to the Western genre. The first issue introduced new characters including the Wyoming Kid, Cowboy Marshal and Rodeo Rick, but the Vigilante may have seemed most familiar. The bandana masked hero had already earned his place among the 7 Soldiers of Victory following his introduction in Action Comics #42 (November 1941), Although his adventures took place in contemporary times, the Vigilante's costume helped him fit in among the stars of Western Comics.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-218988/","id":218988,"name":"Boss of Gila Gap!","issue_number":"1"},"id":1171,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/1261850-westerndc_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/1261850-westerndc_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/1261850-westerndc_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/1261850-westerndc_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/1261850-westerndc_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/1261850-westerndc_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/1261850-westerndc_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/1261850-westerndc_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/1261850-westerndc_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-222507/","id":222507,"name":null,"issue_number":"63"},"name":"Western Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/western-comics/4050-1171/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1172/","count_of_issues":145,"date_added":"2008-06-06 11:08:04","date_last_updated":"2010-12-22 03:16:07","deck":null,"description":"

    Movie, radio & TV; Clayton Moore starred as Lone Ranger in the movies. 
    #1 - 37: strip reprints.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-116602/","id":116602,"name":null,"issue_number":"1"},"id":1172,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/229/223200-1172-116602-1-lone-ranger-the.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/229/223200-1172-116602-1-lone-ranger-the.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/229/223200-1172-116602-1-lone-ranger-the.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/229/223200-1172-116602-1-lone-ranger-the.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/229/223200-1172-116602-1-lone-ranger-the.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/229/223200-1172-116602-1-lone-ranger-the.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/229/223200-1172-116602-1-lone-ranger-the.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/229/223200-1172-116602-1-lone-ranger-the.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/229/223200-1172-116602-1-lone-ranger-the.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-5889/","id":5889,"name":null,"issue_number":"145"},"name":"The Lone Ranger","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-4/","id":4,"name":"Dell"},"site_detail_url":"https://comicvine.gamespot.com/the-lone-ranger/4050-1172/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1174/","count_of_issues":168,"date_added":"2008-06-06 11:08:04","date_last_updated":"2021-09-19 13:00:13","deck":null,"description":"
    • #1-65 was published by Dell
    • #66-80 was published by Gold Key
    • #81-92 was published by King
    • #93 - does not exist
    • #94-138 was published by Charlton
    • #139-171 was published by Gold Key/Whitman (#160 & 161 do not exist)
    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-2492/","id":2492,"name":"Popeye, King of Popilania","issue_number":"36"},"id":1174,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/542739-popeye001.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/542739-popeye001.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/542739-popeye001.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/542739-popeye001.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/542739-popeye001.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/542739-popeye001.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/542739-popeye001.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/542739-popeye001.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/542739-popeye001.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-244088/","id":244088,"name":"Blunder Road","issue_number":"171"},"name":"Popeye","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-178/","id":178,"name":"Gold Key"},"site_detail_url":"https://comicvine.gamespot.com/popeye/4050-1174/","start_year":"1948"},{"aliases":"Edgar Rice Burroughs' Tarzan\r\nTarzan of the Apes\r\nTarzan of the Apes TV Adventures\r\nTarzan the Untamed\r\nThe Return of Tarzan","api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1176/","count_of_issues":258,"date_added":"2008-06-06 11:08:04","date_last_updated":"2016-08-02 03:00:35","deck":null,"description":"

    Publishing History

    • Dell (#1-131)
    • Gold Key (#132-206)
    • DC (#207-258)

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-153162/","id":153162,"name":"The White Savages of Vari","issue_number":"1"},"id":1176,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/2/27783/728844-tarzandell_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/2/27783/728844-tarzandell_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/2/27783/728844-tarzandell_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/2/27783/728844-tarzandell_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/2/27783/728844-tarzandell_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/2/27783/728844-tarzandell_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/2/27783/728844-tarzandell_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/2/27783/728844-tarzandell_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/2/27783/728844-tarzandell_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-17162/","id":17162,"name":null,"issue_number":"258"},"name":"Tarzan","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/tarzan/4050-1176/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1183/","count_of_issues":22,"date_added":"2008-06-06 11:08:05","date_last_updated":"2011-12-13 22:12:41","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-306138/","id":306138,"name":null,"issue_number":"1"},"id":1183,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/2119444-hump1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/2119444-hump1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/2119444-hump1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/2119444-hump1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/2119444-hump1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/2119444-hump1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/2119444-hump1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/2119444-hump1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/2119444-hump1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-93028/","id":93028,"name":null,"issue_number":"22"},"name":"Humphrey Comics","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-20/","id":20,"name":"Harvey"},"site_detail_url":"https://comicvine.gamespot.com/humphrey-comics/4050-1183/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1184/","count_of_issues":28,"date_added":"2008-06-06 11:08:05","date_last_updated":"2022-08-21 09:06:41","deck":null,"description":"

    #1: Published as part of A-1 Comics , A-1 Comics #1.

    #2-5: Published by Magazine Enterprises, Kerry Drake.

    #6-33: Published by Harvey

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94140/","id":94140,"name":null,"issue_number":"6"},"id":1184,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61145-1184-94140-1-kerry-drake-detectiv.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-168848/","id":168848,"name":null,"issue_number":"33"},"name":"Kerry Drake Detective Cases","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-20/","id":20,"name":"Harvey"},"site_detail_url":"https://comicvine.gamespot.com/kerry-drake-detective-cases/4050-1184/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1192/","count_of_issues":5,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-02-12 17:12:02","deck":null,"description":"

    Blaze Carson ran during 1948 through 1949 for 5 issues. This series then continued into Rex Hart.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-92175/","id":92175,"name":"Law Of The Gunfighter!","issue_number":"1"},"id":1192,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/59180-1192-92175-1-blaze-carson.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/59180-1192-92175-1-blaze-carson.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/59180-1192-92175-1-blaze-carson.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/59180-1192-92175-1-blaze-carson.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/59180-1192-92175-1-blaze-carson.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/59180-1192-92175-1-blaze-carson.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/59180-1192-92175-1-blaze-carson.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/59180-1192-92175-1-blaze-carson.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/59180-1192-92175-1-blaze-carson.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-180159/","id":180159,"name":"Murder By The Wrong Man!","issue_number":"5"},"name":"Blaze Carson","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/blaze-carson/4050-1192/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1193/","count_of_issues":1,"date_added":"2008-06-06 11:08:05","date_last_updated":"2017-03-28 11:52:19","deck":null,"description":"

    Doom Force Special was a one-off parody of comics at the time, published near the height of comic speculation/collecting (the cover is a parody of Rob Liefeld's artwork). Although it is unlikely there were any actual plans or expectations for this series to continue, at the back of the issue was a list of dozens of characters readers could potentially see if Doom Force ever returned. As this special was written at the same time as Grant Morrison's highly-successful and acclaimed run on Doom Patrol (and even features future versions of two of its cast members), it was collected alongside the rest of his run over a decade later in the final volume, Doom Patrol: Planet Love.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165691/","id":165691,"name":"Judgment Day","issue_number":"1"},"id":1193,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/9116/899276-1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/9116/899276-1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/9116/899276-1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9116/899276-1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/9116/899276-1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/9116/899276-1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9116/899276-1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/9116/899276-1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/9116/899276-1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-165691/","id":165691,"name":"Judgment Day","issue_number":"1"},"name":"Doom Force Special","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/doom-force-special/4050-1193/","start_year":"1992"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1194/","count_of_issues":4,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-02-01 08:24:12","deck":null,"description":"

    Complete Mystery ran during 1948 through 1949 for 4 issues. This series then continued into True Complete Mystery.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91747/","id":91747,"name":"7 Dead Men","issue_number":"1"},"id":1194,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/58752-1194-91747-1-complete-mystery.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/58752-1194-91747-1-complete-mystery.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/58752-1194-91747-1-complete-mystery.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/58752-1194-91747-1-complete-mystery.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/58752-1194-91747-1-complete-mystery.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/58752-1194-91747-1-complete-mystery.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/58752-1194-91747-1-complete-mystery.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/58752-1194-91747-1-complete-mystery.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/58752-1194-91747-1-complete-mystery.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91750/","id":91750,"name":"A Squealer Dies Fast!","issue_number":"4"},"name":"Complete Mystery","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/complete-mystery/4050-1194/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1196/","count_of_issues":10,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-02-26 16:56:50","deck":null,"description":"

    Crimefighters ran during 1948 through 1949 for 10 issues. This series then continued into Crime Fighters.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90736/","id":90736,"name":"A Client For The Hangman!","issue_number":"1"},"id":1196,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57741-1196-90736-1-crimefighters.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57741-1196-90736-1-crimefighters.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57741-1196-90736-1-crimefighters.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57741-1196-90736-1-crimefighters.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57741-1196-90736-1-crimefighters.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57741-1196-90736-1-crimefighters.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57741-1196-90736-1-crimefighters.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57741-1196-90736-1-crimefighters.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57741-1196-90736-1-crimefighters.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90745/","id":90745,"name":"The Frame-up That Failed!","issue_number":"10"},"name":"Crimefighters","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/crimefighters/4050-1196/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1197/","count_of_issues":4,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-02-01 08:44:19","deck":null,"description":"

    Continued from Frankie Comics, Frankie And Lana ran during 1948 through 1949 for 4 issues. This series then continued into Frankie Fuddle.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-90360/","id":90360,"name":"Frantic Fraternity Frolics!","issue_number":"12"},"id":1197,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/57365-1197-90360-1-frankie-and-lana-com.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188838/","id":188838,"name":null,"issue_number":"15"},"name":"Frankie And Lana","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/frankie-and-lana/4050-1197/","start_year":"1948"},{"aliases":"Kid Colt: Outlaw\nKid Colt: Hero the West","api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1198/","count_of_issues":4,"date_added":"2008-06-06 11:08:05","date_last_updated":"2022-09-12 01:51:37","deck":null,"description":"

    Kid Colt: Hero of the West Volume 1

    Kid Colt was a Western comic book character who first appeared in this self-titled series. While the first four issues are titled Kid Colt by the indicia, they all feature subtitles on the cover and after issue four the series renamed itself to match the subtitle first adopted by issue three, Kid Colt Outlaw. Under that title the series continued for three full decades until the series finally came to a close after a two hundred and twenty-nine issue run.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94151/","id":94151,"name":"The Sheriff","issue_number":"1"},"id":1198,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61156-1198-94151-1-kid-colt-hero-of-th.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98549/","id":98549,"name":"Six-Gun Deadline!","issue_number":"4"},"name":"Kid Colt","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/kid-colt/4050-1198/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1199/","count_of_issues":225,"date_added":"2008-06-06 11:08:05","date_last_updated":"2021-08-17 15:49:26","deck":"Volume 1.","description":"

    Kid Colt was a Western comic book character dating back to 1948, where he made his first appearance in the comic series Kid Colt: Hero of the West. However, aforementioned series didn't last too long, at least not under its original title as it changed the name of the comic after issue four (although the covers had already begun the name change with issue three). This new title was, Kid Colt: Outlaw which is what it continued to be three full decades until the series finally came to a close after a two hundred and twenty-nine issue run. That makes Kid Colt the longest-running cowboy star in an American published comic-book , featured in stories for a 31-year stretch from 1948-1979, though from 1966 most of the published stories were reprints.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98550/","id":98550,"name":"Mystery Of The Missing Mine","issue_number":"5"},"id":1199,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/65553-1199-98550-1-kid-colt-outlaw.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-19436/","id":19436,"name":"Meet the Manhunter","issue_number":"229"},"name":"Kid Colt Outlaw","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-31/","id":31,"name":"Marvel"},"site_detail_url":"https://comicvine.gamespot.com/kid-colt-outlaw/4050-1199/","start_year":"1949"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1201/","count_of_issues":7,"date_added":"2008-06-06 11:08:05","date_last_updated":"2018-07-13 17:51:26","deck":null,"description":"

    Lana ran during 1948 through 1949 for 7 issues. This series then continued into Little Lana.

    Collected Editions

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94914/","id":94914,"name":null,"issue_number":"1"},"id":1201,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61919-1201-94914-1-lana-comics.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61919-1201-94914-1-lana-comics.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61919-1201-94914-1-lana-comics.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61919-1201-94914-1-lana-comics.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61919-1201-94914-1-lana-comics.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61919-1201-94914-1-lana-comics.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61919-1201-94914-1-lana-comics.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61919-1201-94914-1-lana-comics.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61919-1201-94914-1-lana-comics.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94920/","id":94920,"name":"Motor Trouble","issue_number":"7"},"name":"Lana","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/lana/4050-1201/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1202/","count_of_issues":10,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-03-04 11:28:28","deck":null,"description":"

    Lawbreakers Always Lose ran during 1948 through 1949 for 10 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94923/","id":94923,"name":"Adam And Eve - Crime Incorporated!","issue_number":"1"},"id":1202,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/61928-1202-94923-1-lawbreakers-always-l.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-94932/","id":94932,"name":"The Secret Of The Smiling Maiden!","issue_number":"10"},"name":"Lawbreakers Always Lose","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/lawbreakers-always-lose/4050-1202/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1211/","count_of_issues":2,"date_added":"2008-06-06 11:08:05","date_last_updated":"2009-12-16 08:21:13","deck":null,"description":"

    Wacky Duck ran in 1948 for only 2 issues.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57672/","id":57672,"name":"Bubble Trouble!","issue_number":"1"},"id":1211,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1061904-wacky_duck_1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1061904-wacky_duck_1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1061904-wacky_duck_1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1061904-wacky_duck_1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1061904-wacky_duck_1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1061904-wacky_duck_1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1061904-wacky_duck_1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1061904-wacky_duck_1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1061904-wacky_duck_1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-57673/","id":57673,"name":"A Duck's Date!","issue_number":"2"},"name":"Wacky Duck","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-21/","id":21,"name":"Timely"},"site_detail_url":"https://comicvine.gamespot.com/wacky-duck/4050-1211/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1213/","count_of_issues":55,"date_added":"2008-06-06 11:08:05","date_last_updated":"2013-03-08 18:41:51","deck":null,"description":"

    The first two issues of the series where named Wild West, it became Wild Western with issue 3.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-188727/","id":188727,"name":null,"issue_number":"3"},"id":1213,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/5/54649/1064400-wild_western_3.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/5/54649/1064400-wild_western_3.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/5/54649/1064400-wild_western_3.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/5/54649/1064400-wild_western_3.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/5/54649/1064400-wild_western_3.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/5/54649/1064400-wild_western_3.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/5/54649/1064400-wild_western_3.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/5/54649/1064400-wild_western_3.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/5/54649/1064400-wild_western_3.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-3314/","id":3314,"name":null,"issue_number":"57"},"name":"Wild Western","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-75/","id":75,"name":"Atlas"},"site_detail_url":"https://comicvine.gamespot.com/wild-western/4050-1213/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1219/","count_of_issues":5,"date_added":"2008-06-06 11:08:05","date_last_updated":"2012-12-19 00:49:11","deck":null,"description":"

    Series continues as: Charlie Chan (Charlton, 1955) #6

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91667/","id":91667,"name":null,"issue_number":"1"},"id":1219,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/58672-1219-91667-1-charlie-chan.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/58672-1219-91667-1-charlie-chan.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/58672-1219-91667-1-charlie-chan.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/58672-1219-91667-1-charlie-chan.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/58672-1219-91667-1-charlie-chan.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/58672-1219-91667-1-charlie-chan.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/58672-1219-91667-1-charlie-chan.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/58672-1219-91667-1-charlie-chan.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/58672-1219-91667-1-charlie-chan.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-91670/","id":91670,"name":null,"issue_number":"5"},"name":"Charlie Chan","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-45/","id":45,"name":"Prize"},"site_detail_url":"https://comicvine.gamespot.com/charlie-chan/4050-1219/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1223/","count_of_issues":38,"date_added":"2008-06-06 11:08:05","date_last_updated":"2015-07-27 05:32:36","deck":null,"description":"

    Issues 1 - 3 are part of the A-1 comics series.

    The Tim Holt series continues in Red Mask #42-54.

    Collected Editions

    • The Original Ghost Rider Vol. 1 (#12-14)
    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98468/","id":98468,"name":null,"issue_number":"4"},"id":1223,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/65471-1223-98468-1-tim-holt.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/65471-1223-98468-1-tim-holt.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/65471-1223-98468-1-tim-holt.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/65471-1223-98468-1-tim-holt.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/65471-1223-98468-1-tim-holt.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/65471-1223-98468-1-tim-holt.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/65471-1223-98468-1-tim-holt.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/65471-1223-98468-1-tim-holt.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/65471-1223-98468-1-tim-holt.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-98494/","id":98494,"name":null,"issue_number":"41"},"name":"Tim Holt","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-84/","id":84,"name":"Magazine Enterprises"},"site_detail_url":"https://comicvine.gamespot.com/tim-holt/4050-1223/","start_year":"1948"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1239/","count_of_issues":5,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-05-23 16:52:54","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-53062/","id":53062,"name":null,"issue_number":"1"},"id":1239,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/45721-1239-53062-1-ozzie-and-harriet.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-215677/","id":215677,"name":null,"issue_number":"5"},"name":"Ozzie and Harriet","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/ozzie-and-harriet/4050-1239/","start_year":"1949"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1241/","count_of_issues":9,"date_added":"2008-06-06 11:08:05","date_last_updated":"2016-11-01 20:56:46","deck":null,"description":"

    An odd entry into the field of celebrity comics, this title featured Miss Beverly Hills and her interactions with real life Hollywood guest stars including Alan Ladd and Wanda Hendrix. Beverly had a newspaper reporter boyfriend named Will Shire (A play on LA's Wilshire Boulevard) and most stories revolved around her desire to meet movie stars and become a star herself. The series blended the celebrity, humor and romance genres with mixed results and sadly the title only made 9 issues. However Beverly did make a brief return as a backup feature in four issues of The Adventures of Bob Hope.

    ","first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56459/","id":56459,"name":null,"issue_number":"1"},"id":1241,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47099-1241-56459-1-miss-beverly-hills-o.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56467/","id":56467,"name":null,"issue_number":"9"},"name":"Miss Beverly Hills of Hollywood","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/miss-beverly-hills-of-hollywood/4050-1241/","start_year":"1949"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1242/","count_of_issues":62,"date_added":"2008-06-06 11:08:05","date_last_updated":"2009-09-20 17:12:44","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56519/","id":56519,"name":null,"issue_number":"1"},"id":1242,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47155-1242-56519-1-peter-porkchops.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47155-1242-56519-1-peter-porkchops.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47155-1242-56519-1-peter-porkchops.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47155-1242-56519-1-peter-porkchops.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47155-1242-56519-1-peter-porkchops.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47155-1242-56519-1-peter-porkchops.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47155-1242-56519-1-peter-porkchops.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47155-1242-56519-1-peter-porkchops.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47155-1242-56519-1-peter-porkchops.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56580/","id":56580,"name":null,"issue_number":"62"},"name":"Peter Porkchops","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/peter-porkchops/4050-1242/","start_year":"1949"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1243/","count_of_issues":6,"date_added":"2008-06-06 11:08:05","date_last_updated":"2009-01-08 15:13:51","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56744/","id":56744,"name":null,"issue_number":"1"},"id":1243,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/4/47362-1243-56744-1-romance-trail.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/4/47362-1243-56744-1-romance-trail.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/4/47362-1243-56744-1-romance-trail.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/4/47362-1243-56744-1-romance-trail.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/4/47362-1243-56744-1-romance-trail.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/4/47362-1243-56744-1-romance-trail.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/4/47362-1243-56744-1-romance-trail.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/4/47362-1243-56744-1-romance-trail.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/4/47362-1243-56744-1-romance-trail.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-56749/","id":56749,"name":null,"issue_number":"6"},"name":"Romance Trail","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/romance-trail/4050-1243/","start_year":"1949"},{"aliases":null,"api_detail_url":"https://comicvine.gamespot.com/api/volume/4050-1244/","count_of_issues":153,"date_added":"2008-06-06 11:08:05","date_last_updated":"2010-09-30 15:33:06","deck":null,"description":null,"first_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-170841/","id":170841,"name":"Make Believe Sweetheart","issue_number":"1"},"id":1244,"image":{"icon_url":"https://comicvine.gamespot.com/a/uploads/square_avatar/0/3125/952670-sh1.jpg","medium_url":"https://comicvine.gamespot.com/a/uploads/scale_medium/0/3125/952670-sh1.jpg","screen_url":"https://comicvine.gamespot.com/a/uploads/screen_medium/0/3125/952670-sh1.jpg","screen_large_url":"https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3125/952670-sh1.jpg","small_url":"https://comicvine.gamespot.com/a/uploads/scale_small/0/3125/952670-sh1.jpg","super_url":"https://comicvine.gamespot.com/a/uploads/scale_large/0/3125/952670-sh1.jpg","thumb_url":"https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3125/952670-sh1.jpg","tiny_url":"https://comicvine.gamespot.com/a/uploads/square_mini/0/3125/952670-sh1.jpg","original_url":"https://comicvine.gamespot.com/a/uploads/original/0/3125/952670-sh1.jpg","image_tags":"All Images"},"last_issue":{"api_detail_url":"https://comicvine.gamespot.com/api/issue/4000-49499/","id":49499,"name":"The Secret","issue_number":"153"},"name":"Secret Hearts","publisher":{"api_detail_url":"https://comicvine.gamespot.com/api/publisher/4010-10/","id":10,"name":"DC Comics"},"site_detail_url":"https://comicvine.gamespot.com/secret-hearts/4050-1244/","start_year":"1949"}],"version":"1.0"} \ No newline at end of file diff --git a/samples/code-comments/comments.json b/samples/code-comments/comments.json new file mode 100644 index 0000000..0210209 --- /dev/null +++ b/samples/code-comments/comments.json @@ -0,0 +1,2532 @@ +[ + { + "title": "characterDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the character is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the character detail resource." + }, + { + "propertyName": "birth", + "comment": "A date, if one exists, that the character was born on. Not an origin date." + }, + { + "propertyName": "character_enemies", + "comment": "List of characters that are enemies with this character." + }, + { + "propertyName": "character_friends", + "comment": "List of characters that are friends with this character." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this character appears in." + }, + { + "propertyName": "creators", + "comment": "List of the real life people who created this character." + }, + { + "propertyName": "date_added", + "comment": "Date the character was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the character was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the character." + }, + { + "propertyName": "description", + "comment": "Description of the character." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the character made its first appearance." + }, + { + "propertyName": "gender", + "comment": "Gender of the character. Available options are: Male, Female, Other" + }, + { + "propertyName": "id", + "comment": "Unique ID of the character." + }, + { + "propertyName": "image", + "comment": "Main image of the character." + }, + { + "propertyName": "issues", + "comment": "List of issues this character appears in." + }, + { + "propertyName": "issues_died_in", + "comment": "List of issues this character died in." + }, + { + "propertyName": "movies", + "comment": "Movies the character was in." + }, + { + "propertyName": "name", + "comment": "Name of the character." + }, + { + "propertyName": "origin", + "comment": "The origin of the character. Human, Alien, Robot ...etc" + }, + { + "propertyName": "powers", + "comment": "List of super powers a character has." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a character is attached to." + }, + { + "propertyName": "real_name", + "comment": "Real name of the character." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the character on Giant Bomb." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this character appears in." + }, + { + "propertyName": "team_enemies", + "comment": "List of teams that are enemies of this character." + }, + { + "propertyName": "team_friends", + "comment": "List of teams that are friends with this character." + }, + { + "propertyName": "teams", + "comment": "List of teams this character is a member of." + }, + { + "propertyName": "volumes", + "comment": "List of comic volumes this character appears in." + } + ] + }, + { + "title": "characterListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the character is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the character detail resource." + }, + { + "propertyName": "birth", + "comment": "A date, if one exists, that the character was born on. Not an origin date." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this character appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the character was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the character was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the character." + }, + { + "propertyName": "description", + "comment": "Description of the character." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the character made its first appearance." + }, + { + "propertyName": "gender", + "comment": "Gender of the character. Available options are: Male, Female, Other" + }, + { + "propertyName": "id", + "comment": "Unique ID of the character." + }, + { + "propertyName": "image", + "comment": "Main image of the character." + }, + { + "propertyName": "name", + "comment": "Name of the character." + }, + { + "propertyName": "origin", + "comment": "The origin of the character. Human, Alien, Robot ...etc" + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a character is attached to." + }, + { + "propertyName": "real_name", + "comment": "Real name of the character." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the character on Giant Bomb." + } + ] + }, + { + "title": "chatDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the chat detail resource." + }, + { + "propertyName": "channel_name", + "comment": "Name of the video streaming channel associated with the chat." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the chat." + }, + { + "propertyName": "image", + "comment": "Main image of the chat." + }, + { + "propertyName": "password", + "comment": "chat password." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the chat on Giant Bomb." + }, + { + "propertyName": "title", + "comment": "Title of the chat." + } + ] + }, + { + "title": "chatListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the chat detail resource." + }, + { + "propertyName": "channel_name", + "comment": "Name of the video streaming channel associated with the chat." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the chat." + }, + { + "propertyName": "image", + "comment": "Main image of the chat." + }, + { + "propertyName": "password", + "comment": "chat password." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the chat on Giant Bomb." + }, + { + "propertyName": "title", + "comment": "Title of the chat." + } + ] + }, + { + "title": "conceptDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the concept is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the concept detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this concept appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the concept was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the concept was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the concept." + }, + { + "propertyName": "description", + "comment": "Description of the concept." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the concept made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the concept." + }, + { + "propertyName": "image", + "comment": "Main image of the concept." + }, + { + "propertyName": "issues", + "comment": "List of issues this concept appears in." + }, + { + "propertyName": "movies", + "comment": "Movies the concept was in." + }, + { + "propertyName": "name", + "comment": "Name of the concept." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the concept on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this concept appeared in comics." + }, + { + "propertyName": "volumes", + "comment": "List of comic volumes this concept appears in." + } + ] + }, + { + "title": "conceptListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the concept is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the concept detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this concept appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the concept was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the concept was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the concept." + }, + { + "propertyName": "description", + "comment": "Description of the concept." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the concept made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the concept." + }, + { + "propertyName": "image", + "comment": "Main image of the concept." + }, + { + "propertyName": "name", + "comment": "Name of the concept." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the concept on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this concept appeared in comics." + } + ] + }, + { + "title": "episodeDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the episode is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the episode detail resource." + }, + { + "propertyName": "characters", + "comment": "A list of characters that appear in this episode." + }, + { + "propertyName": "characters_died_in", + "comment": "A list of characters that died in this episode." + }, + { + "propertyName": "concepts", + "comment": "A list of concepts that appear in this episode." + }, + { + "propertyName": "air_date", + "comment": "The air date of the episode." + }, + { + "propertyName": "date_added", + "comment": "Date the episode was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the episode was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the episode." + }, + { + "propertyName": "description", + "comment": "Description of the episode." + }, + { + "propertyName": "first_appearance_characters", + "comment": "A list of characters in which this episode is the first appearance of the character." + }, + { + "propertyName": "first_appearance_concepts", + "comment": "A list of concepts in which this episode is the first appearance of the concept." + }, + { + "propertyName": "first_appearance_locations", + "comment": "A list of locations in which this episode is the first appearance of the location." + }, + { + "propertyName": "first_appearance_objects", + "comment": "A list of things in which this episode is the first appearance of the object." + }, + { + "propertyName": "first_appearance_storyarcs", + "comment": "A list of storyarcs in which this episode is the first appearance of the story arc." + }, + { + "propertyName": "first_appearance_teams", + "comment": "A list of teams in which this episode is the first appearance of the team." + }, + { + "propertyName": "has_staff_review", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the episode." + }, + { + "propertyName": "image", + "comment": "Main image of the episode." + }, + { + "propertyName": "episode_number", + "comment": "The number assigned to the episode within a series." + }, + { + "propertyName": "locations", + "comment": "List of locations that appeared in this episode." + }, + { + "propertyName": "name", + "comment": "Name of the episode." + }, + { + "propertyName": "objects", + "comment": "List of things that appeared in this episode." + }, + { + "propertyName": "persons", + "comment": "List of people that worked on this episode." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the episode on Giant Bomb." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this episode appears in." + }, + { + "propertyName": "teams", + "comment": "List of teams that appear in this episode." + }, + { + "propertyName": "series", + "comment": "The series the episode belongs to." + } + ] + }, + { + "title": "episodeListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the episode is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the episode detail resource." + }, + { + "propertyName": "air_date", + "comment": "The air date of the episode." + }, + { + "propertyName": "date_added", + "comment": "Date the episode was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the episode was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the episode." + }, + { + "propertyName": "description", + "comment": "Description of the episode." + }, + { + "propertyName": "has_staff_review", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the episode." + }, + { + "propertyName": "image", + "comment": "Main image of the episode." + }, + { + "propertyName": "issue_number", + "comment": "The number assigned to the episode within the volume set." + }, + { + "propertyName": "name", + "comment": "Name of the episode." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the episode on Giant Bomb." + }, + { + "propertyName": "series", + "comment": "The series the episode belongs to." + } + ] + }, + { + "title": "issueDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the issue is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the issue detail resource." + }, + { + "propertyName": "characters", + "comment": "A list of characters that appear in this issue." + }, + { + "propertyName": "characters_died_in", + "comment": "A list of characters that died in this issue." + }, + { + "propertyName": "concepts", + "comment": "A list of concepts that appear in this issue." + }, + { + "propertyName": "cover_date", + "comment": "The publish date printed on the cover of an issue." + }, + { + "propertyName": "date_added", + "comment": "Date the issue was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the issue was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the issue." + }, + { + "propertyName": "description", + "comment": "Description of the issue." + }, + { + "propertyName": "disbanded_teams", + "comment": "A list of teams that disbanded in this issue." + }, + { + "propertyName": "first_appearance_characters", + "comment": "A list of characters in which this issue is the first appearance of the character." + }, + { + "propertyName": "first_appearance_concepts", + "comment": "A list of concepts in which this issue is the first appearance of the concept." + }, + { + "propertyName": "first_appearance_locations", + "comment": "A list of locations in which this issue is the first appearance of the location." + }, + { + "propertyName": "first_appearance_objects", + "comment": "A list of things in which this issue is the first appearance of the object." + }, + { + "propertyName": "first_appearance_storyarcs", + "comment": "A list of storyarcs in which this issue is the first appearance of the story arc." + }, + { + "propertyName": "first_appearance_teams", + "comment": "A list of teams in which this issue is the first appearance of the team." + }, + { + "propertyName": "has_staff_review", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the issue." + }, + { + "propertyName": "image", + "comment": "Main image of the issue." + }, + { + "propertyName": "issue_number", + "comment": "The number assigned to the issue within the volume set." + }, + { + "propertyName": "locations", + "comment": "List of locations that appeared in this issue." + }, + { + "propertyName": "name", + "comment": "Name of the issue." + }, + { + "propertyName": "objects", + "comment": "List of things that appeared in this issue." + }, + { + "propertyName": "persons", + "comment": "List of people that worked on this issue." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the issue on Giant Bomb." + }, + { + "propertyName": "store_date", + "comment": "The date the issue was first sold in stores." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this issue appears in." + }, + { + "propertyName": "teams", + "comment": "List of teams that appear in this issue." + }, + { + "propertyName": "teams_disbanded_in", + "comment": "List of teams that disbanded in this issue." + }, + { + "propertyName": "volume", + "comment": "The volume this issue is a part of." + } + ] + }, + { + "title": "issueListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the issue is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the issue detail resource." + }, + { + "propertyName": "cover_date", + "comment": "The publish date printed on the cover of an issue." + }, + { + "propertyName": "date_added", + "comment": "Date the issue was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the issue was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the issue." + }, + { + "propertyName": "description", + "comment": "Description of the issue." + }, + { + "propertyName": "has_staff_review", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the issue." + }, + { + "propertyName": "image", + "comment": "Main image of the issue." + }, + { + "propertyName": "issue_number", + "comment": "The number assigned to the issue within the volume set." + }, + { + "propertyName": "name", + "comment": "Name of the issue." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the issue on Giant Bomb." + }, + { + "propertyName": "store_date", + "comment": "The date the issue was first sold in stores." + }, + { + "propertyName": "volume", + "comment": "The volume this issue is a part of." + } + ] + }, + { + "title": "locationDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the location is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the location detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this location appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the location was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the location was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the location." + }, + { + "propertyName": "description", + "comment": "Description of the location." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the location made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the location." + }, + { + "propertyName": "image", + "comment": "Main image of the location." + }, + { + "propertyName": "issues", + "comment": "List of issues this location appears in." + }, + { + "propertyName": "movies", + "comment": "Movies the location was in." + }, + { + "propertyName": "name", + "comment": "Name of the location." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the location on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this location appeared in comics." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this location appears in." + }, + { + "propertyName": "volumes", + "comment": "List of comic volumes this location appears in." + } + ] + }, + { + "title": "locationListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the location is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the location detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this location appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the location was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the location was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the location." + }, + { + "propertyName": "description", + "comment": "Description of the location." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the location made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the location." + }, + { + "propertyName": "image", + "comment": "Main image of the location." + }, + { + "propertyName": "name", + "comment": "Name of the location." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the location on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this location appeared in comics." + } + ] + }, + { + "title": "movieDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the movie detail resource." + }, + { + "propertyName": "box_office_revenue", + "comment": "The total revenue made in the box offices for this movie." + }, + { + "propertyName": "budget", + "comment": "The cost of making this movie." + }, + { + "propertyName": "characters", + "comment": "Characters related to the movie." + }, + { + "propertyName": "concepts", + "comment": "Concepts related to the movie." + }, + { + "propertyName": "date_added", + "comment": "Date the movie was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the movie was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the movie." + }, + { + "propertyName": "description", + "comment": "Description of the movie." + }, + { + "propertyName": "distributor", + "comment": "" + }, + { + "propertyName": "has_staff_review", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the movie." + }, + { + "propertyName": "image", + "comment": "Main image of the movie." + }, + { + "propertyName": "locations", + "comment": "Locations related to the movie." + }, + { + "propertyName": "name", + "comment": "Name of the movie." + }, + { + "propertyName": "producers", + "comment": "The producers of this movie." + }, + { + "propertyName": "rating", + "comment": "The rating of this movie." + }, + { + "propertyName": "release_date", + "comment": "Date of the movie." + }, + { + "propertyName": "runtime", + "comment": "The length of this movie." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the movie on Giant Bomb." + }, + { + "propertyName": "studios", + "comment": "" + }, + { + "propertyName": "teams", + "comment": "List of teams this movie is a member of." + }, + { + "propertyName": "things", + "comment": "List of things found in this movie." + }, + { + "propertyName": "total_revenue", + "comment": "Total revenue generated by this movie." + }, + { + "propertyName": "writers", + "comment": "Writers for this movie." + } + ] + }, + { + "title": "movieListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the movie detail resource." + }, + { + "propertyName": "box_office_revenue", + "comment": "The total revenue made in the box offices for this movie." + }, + { + "propertyName": "budget", + "comment": "The cost of making this movie." + }, + { + "propertyName": "date_added", + "comment": "Date the movie was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the movie was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the movie." + }, + { + "propertyName": "description", + "comment": "Description of the movie." + }, + { + "propertyName": "distributor", + "comment": "" + }, + { + "propertyName": "has_staff_review", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the movie." + }, + { + "propertyName": "image", + "comment": "Main image of the movie." + }, + { + "propertyName": "name", + "comment": "Name of the movie." + }, + { + "propertyName": "producers", + "comment": "The producers of this movie." + }, + { + "propertyName": "rating", + "comment": "The rating of this movie." + }, + { + "propertyName": "release_date", + "comment": "Date of the movie." + }, + { + "propertyName": "runtime", + "comment": "The length of this movie." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the movie on Giant Bomb." + }, + { + "propertyName": "studios", + "comment": "" + }, + { + "propertyName": "total_revenue", + "comment": "Total revenue generated by this movie." + }, + { + "propertyName": "writers", + "comment": "Writers for this movie." + } + ] + }, + { + "title": "thingDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the thing is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the thing detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this thing appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the thing was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the thing was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the thing." + }, + { + "propertyName": "description", + "comment": "Description of the thing." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the thing made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the thing." + }, + { + "propertyName": "image", + "comment": "Main image of the thing." + }, + { + "propertyName": "issues", + "comment": "List of issues this thing appears in." + }, + { + "propertyName": "movies", + "comment": "Movies the thing was in." + }, + { + "propertyName": "name", + "comment": "Name of the thing." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the thing on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this thing appeared in comics." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this thing appears in." + }, + { + "propertyName": "volumes", + "comment": "List of comic volumes this thing appears in." + } + ] + }, + { + "title": "thingListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the thing is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the thing detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this thing appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the thing was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the thing was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the thing." + }, + { + "propertyName": "description", + "comment": "Description of the thing." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the thing made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the thing." + }, + { + "propertyName": "image", + "comment": "Main image of the thing." + }, + { + "propertyName": "name", + "comment": "Name of the thing." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the thing on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this thing appeared in comics." + } + ] + }, + { + "title": "originDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the origin detail resource." + }, + { + "propertyName": "character_set", + "comment": "" + }, + { + "propertyName": "id", + "comment": "Unique ID of the origin." + }, + { + "propertyName": "name", + "comment": "Name of the origin." + }, + { + "propertyName": "profiles", + "comment": "" + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the origin on Giant Bomb." + } + ] + }, + { + "title": "originListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the origin detail resource." + }, + { + "propertyName": "id", + "comment": "Unique ID of the origin." + }, + { + "propertyName": "name", + "comment": "Name of the origin." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the origin on Giant Bomb." + } + ] + }, + { + "title": "personDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the person is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the person detail resource." + }, + { + "propertyName": "birth", + "comment": "A date, if one exists, that the person was born on. Not an origin date." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this person appears in." + }, + { + "propertyName": "country", + "comment": "Country the person resides in." + }, + { + "propertyName": "created_characters", + "comment": "Comic characters this person created." + }, + { + "propertyName": "date_added", + "comment": "Date the person was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the person was last updated on Comic Vine." + }, + { + "propertyName": "death", + "comment": "Date this person died on." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the person." + }, + { + "propertyName": "description", + "comment": "Description of the person." + }, + { + "propertyName": "email", + "comment": "The email of this person." + }, + { + "propertyName": "gender", + "comment": "Gender of the person. Available options are: Male, Female, Other" + }, + { + "propertyName": "hometown", + "comment": "City or town the person resides in." + }, + { + "propertyName": "id", + "comment": "Unique ID of the person." + }, + { + "propertyName": "image", + "comment": "Main image of the person." + }, + { + "propertyName": "issues", + "comment": "List of issues this person appears in." + }, + { + "propertyName": "name", + "comment": "Name of the person." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the person on Giant Bomb." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this person appears in." + }, + { + "propertyName": "volumes", + "comment": "List of comic volumes this person appears in." + }, + { + "propertyName": "website", + "comment": "URL to the person website." + } + ] + }, + { + "title": "personListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the person is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the person detail resource." + }, + { + "propertyName": "birth", + "comment": "A date, if one exists, that the person was born on. Not an origin date." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this person appears in." + }, + { + "propertyName": "country", + "comment": "Country the person resides in." + }, + { + "propertyName": "date_added", + "comment": "Date the person was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the person was last updated on Comic Vine." + }, + { + "propertyName": "death", + "comment": "Date this person died on." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the person." + }, + { + "propertyName": "description", + "comment": "Description of the person." + }, + { + "propertyName": "email", + "comment": "The email of this person." + }, + { + "propertyName": "gender", + "comment": "Gender of the person. Available options are: Male, Female, Other" + }, + { + "propertyName": "hometown", + "comment": "City or town the person resides in." + }, + { + "propertyName": "id", + "comment": "Unique ID of the person." + }, + { + "propertyName": "image", + "comment": "Main image of the person." + }, + { + "propertyName": "name", + "comment": "Name of the person." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the person on Giant Bomb." + }, + { + "propertyName": "website", + "comment": "URL to the person website." + } + ] + }, + { + "title": "powerDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the power is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the power detail resource." + }, + { + "propertyName": "characters", + "comment": "Characters related to the power." + }, + { + "propertyName": "date_added", + "comment": "Date the power was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the power was last updated on Comic Vine." + }, + { + "propertyName": "description", + "comment": "Description of the power." + }, + { + "propertyName": "id", + "comment": "Unique ID of the power." + }, + { + "propertyName": "name", + "comment": "Name of the power." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the power on Giant Bomb." + } + ] + }, + { + "title": "powerListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the power is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the power detail resource." + }, + { + "propertyName": "date_added", + "comment": "Date the power was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the power was last updated on Comic Vine." + }, + { + "propertyName": "description", + "comment": "Description of the power." + }, + { + "propertyName": "id", + "comment": "Unique ID of the power." + }, + { + "propertyName": "name", + "comment": "Name of the power." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the power on Giant Bomb." + } + ] + }, + { + "title": "promoDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the promo detail resource." + }, + { + "propertyName": "date_added", + "comment": "Date the promo was added to Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the promo." + }, + { + "propertyName": "id", + "comment": "Unique ID of the promo." + }, + { + "propertyName": "image", + "comment": "Main image of the promo." + }, + { + "propertyName": "link", + "comment": "The link that promo points to." + }, + { + "propertyName": "name", + "comment": "Name of the promo." + }, + { + "propertyName": "resource_type", + "comment": "The type of resource the promo is pointing towards." + }, + { + "propertyName": "user", + "comment": "Author of the promo." + } + ] + }, + { + "title": "promoListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the promo detail resource." + }, + { + "propertyName": "date_added", + "comment": "Date the promo was added to Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the promo." + }, + { + "propertyName": "id", + "comment": "Unique ID of the promo." + }, + { + "propertyName": "image", + "comment": "Main image of the promo." + }, + { + "propertyName": "link", + "comment": "The link that promo points to." + }, + { + "propertyName": "name", + "comment": "Name of the promo." + }, + { + "propertyName": "resource_type", + "comment": "The type of resource the promo is pointing towards." + }, + { + "propertyName": "user", + "comment": "Author of the promo." + } + ] + }, + { + "title": "publisherDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the publisher is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the publisher detail resource." + }, + { + "propertyName": "characters", + "comment": "Characters related to the publisher." + }, + { + "propertyName": "date_added", + "comment": "Date the publisher was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the publisher was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the publisher." + }, + { + "propertyName": "description", + "comment": "Description of the publisher." + }, + { + "propertyName": "id", + "comment": "Unique ID of the publisher." + }, + { + "propertyName": "image", + "comment": "Main image of the publisher." + }, + { + "propertyName": "location_address", + "comment": "Street address of the publisher." + }, + { + "propertyName": "location_city", + "comment": "City the publisher resides in." + }, + { + "propertyName": "location_state", + "comment": "State the publisher resides in." + }, + { + "propertyName": "name", + "comment": "Name of the publisher." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the publisher on Giant Bomb." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs tied to this publisher." + }, + { + "propertyName": "teams", + "comment": "List of teams this publisher is a member of." + }, + { + "propertyName": "volumes", + "comment": "List of volumes this publisher has put out." + } + ] + }, + { + "title": "publisherListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the publisher is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the publisher detail resource." + }, + { + "propertyName": "date_added", + "comment": "Date the publisher was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the publisher was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the publisher." + }, + { + "propertyName": "description", + "comment": "Description of the publisher." + }, + { + "propertyName": "id", + "comment": "Unique ID of the publisher." + }, + { + "propertyName": "image", + "comment": "Main image of the publisher." + }, + { + "propertyName": "location_address", + "comment": "Street address of the publisher." + }, + { + "propertyName": "location_city", + "comment": "City the publisher resides in." + }, + { + "propertyName": "location_state", + "comment": "State the publisher resides in." + }, + { + "propertyName": "name", + "comment": "Name of the publisher." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the publisher on Giant Bomb." + } + ] + }, + { + "title": "seriesDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the series is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the series detail resource." + }, + { + "propertyName": "characters", + "comment": "A list of characters that appear in this series." + }, + { + "propertyName": "count_of_episodes", + "comment": "Number of episodes included in this series." + }, + { + "propertyName": "date_added", + "comment": "Date the series was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the series was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the series." + }, + { + "propertyName": "description", + "comment": "Description of the series." + }, + { + "propertyName": "first_episode", + "comment": "The first episode in this series." + }, + { + "propertyName": "id", + "comment": "Unique ID of the series." + }, + { + "propertyName": "image", + "comment": "Main image of the series." + }, + { + "propertyName": "last_episode", + "comment": "The last episode in this series." + }, + { + "propertyName": "locations", + "comment": "List of locations that appeared in this series." + }, + { + "propertyName": "name", + "comment": "Name of the series." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a series is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the series on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this series appeared in comics." + } + ] + }, + { + "title": "seriesListDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the series_list is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the series_list detail resource." + }, + { + "propertyName": "count_of_episodes", + "comment": "Number of episodes included in this series_list." + }, + { + "propertyName": "date_added", + "comment": "Date the series_list was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the series_list was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the series_list." + }, + { + "propertyName": "description", + "comment": "Description of the series_list." + }, + { + "propertyName": "first_episode", + "comment": "The first episode in this series_list." + }, + { + "propertyName": "id", + "comment": "Unique ID of the series_list." + }, + { + "propertyName": "image", + "comment": "Main image of the series_list." + }, + { + "propertyName": "last_episode", + "comment": "The last episode in this series_list." + }, + { + "propertyName": "name", + "comment": "Name of the series_list." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a series_list is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the series_list on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this series_list appeared in comics." + } + ] + }, + { + "title": "searchDetails", + "fields": [ + { + "propertyName": "resource_type", + "comment": "The type of resource the result is mapped to. Available options are:\n\n\n character\n concept\n origin\n thing\n location\n issue\n story_arc\n volume\n publisher\n person\n team\n video\n\n\n character\n concept\n origin\n object\n location\n issue\n story_arc\n volume\n publisher\n person\n team\n video\nconcept" + } + ] + }, + { + "title": "storyArcDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the story_arc is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the story_arc detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this story_arc appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the story_arc was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the story_arc was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the story_arc." + }, + { + "propertyName": "description", + "comment": "Description of the story_arc." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the story_arc made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the story_arc." + }, + { + "propertyName": "image", + "comment": "Main image of the story_arc." + }, + { + "propertyName": "issues", + "comment": "List of issues included in this story_arc." + }, + { + "propertyName": "movies", + "comment": "Movies the story_arc was in." + }, + { + "propertyName": "name", + "comment": "Name of the story_arc." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a story_arc is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the story_arc on Giant Bomb." + } + ] + }, + { + "title": "storyArcListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the story_arc is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the story_arc detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this story_arc appears in." + }, + { + "propertyName": "date_added", + "comment": "Date the story_arc was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the story_arc was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the story_arc." + }, + { + "propertyName": "description", + "comment": "Description of the story_arc." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the story_arc made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the story_arc." + }, + { + "propertyName": "image", + "comment": "Main image of the story_arc." + }, + { + "propertyName": "name", + "comment": "Name of the story_arc." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a story_arc is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the story_arc on Giant Bomb." + } + ] + }, + { + "title": "teamDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the team is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the team detail resource." + }, + { + "propertyName": "character_enemies", + "comment": "List of characters that are enemies with this team." + }, + { + "propertyName": "character_friends", + "comment": "List of characters that are friends with this team." + }, + { + "propertyName": "characters", + "comment": "Characters related to the team." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this team appears in." + }, + { + "propertyName": "count_of_team_members", + "comment": "Number of team members in this team." + }, + { + "propertyName": "date_added", + "comment": "Date the team was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the team was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the team." + }, + { + "propertyName": "description", + "comment": "Description of the team." + }, + { + "propertyName": "disbanded_in_issues", + "comment": "List of issues this team disbanded in." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the team made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the team." + }, + { + "propertyName": "image", + "comment": "Main image of the team." + }, + { + "propertyName": "issues", + "comment": "List of issues this team appears in." + }, + { + "propertyName": "issues_disbanded_in", + "comment": "List of issues this team disbanded in." + }, + { + "propertyName": "movies", + "comment": "Movies the team was in." + }, + { + "propertyName": "name", + "comment": "Name of the team." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a team is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the team on Giant Bomb." + }, + { + "propertyName": "story_arcs", + "comment": "List of story arcs this team appears in." + }, + { + "propertyName": "volumes", + "comment": "List of comic volumes this team appears in." + } + ] + }, + { + "title": "teamListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the team is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the team detail resource." + }, + { + "propertyName": "count_of_issue_appearances", + "comment": "Number of issues this team appears in." + }, + { + "propertyName": "count_of_team_members", + "comment": "Number of team members in this team." + }, + { + "propertyName": "date_added", + "comment": "Date the team was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the team was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the team." + }, + { + "propertyName": "description", + "comment": "Description of the team." + }, + { + "propertyName": "first_appeared_in_issue", + "comment": "Issue where the team made its first appearance." + }, + { + "propertyName": "id", + "comment": "Unique ID of the team." + }, + { + "propertyName": "image", + "comment": "Main image of the team." + }, + { + "propertyName": "name", + "comment": "Name of the team." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a team is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the team on Giant Bomb." + } + ] + }, + { + "title": "typeListItem", + "fields": [ + { + "propertyName": "detail_resource_name", + "comment": "The name of the type's detail resource." + }, + { + "propertyName": "id", + "comment": "Unique ID of the type." + }, + { + "propertyName": "list_resource_name", + "comment": "The name of the type's list resource." + } + ] + }, + { + "title": "videoDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the video detail resource." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the video." + }, + { + "propertyName": "hd_url", + "comment": "URL to the HD version of the video." + }, + { + "propertyName": "high_url", + "comment": "URL to the High Res version of the video." + }, + { + "propertyName": "id", + "comment": "Unique ID of the video." + }, + { + "propertyName": "image", + "comment": "Main image of the video." + }, + { + "propertyName": "length_seconds", + "comment": "Length (in seconds) of the video." + }, + { + "propertyName": "low_url", + "comment": "URL to the Low Res version of the video." + }, + { + "propertyName": "name", + "comment": "Name of the video." + }, + { + "propertyName": "publish_date", + "comment": "Date the video was published on Comic Vine." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the video on Giant Bomb." + }, + { + "propertyName": "url", + "comment": "The video's filename." + }, + { + "propertyName": "user", + "comment": "Author of the video." + } + ] + }, + { + "title": "videoListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the video detail resource." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the video." + }, + { + "propertyName": "hd_url", + "comment": "URL to the HD version of the video." + }, + { + "propertyName": "high_url", + "comment": "URL to the High Res version of the video." + }, + { + "propertyName": "id", + "comment": "Unique ID of the video." + }, + { + "propertyName": "image", + "comment": "Main image of the video." + }, + { + "propertyName": "length_seconds", + "comment": "Length (in seconds) of the video." + }, + { + "propertyName": "low_url", + "comment": "URL to the Low Res version of the video." + }, + { + "propertyName": "name", + "comment": "Name of the video." + }, + { + "propertyName": "publish_date", + "comment": "Date the video was published on Comic Vine." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the video on Giant Bomb." + }, + { + "propertyName": "url", + "comment": "The video's filename." + }, + { + "propertyName": "user", + "comment": "Author of the video." + } + ] + }, + { + "title": "videoTypeDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the video_type detail resource." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the video_type." + }, + { + "propertyName": "id", + "comment": "Unique ID of the video_type." + }, + { + "propertyName": "name", + "comment": "Name of the video_type." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the video_type on Giant Bomb." + } + ] + }, + { + "title": "videoTypeListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the video_type detail resource." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the video_type." + }, + { + "propertyName": "id", + "comment": "Unique ID of the video_type." + }, + { + "propertyName": "name", + "comment": "Name of the video_type." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the video_type on Giant Bomb." + } + ] + }, + { + "title": "videoCategoryDetails", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the video_category detail resource." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the video_category." + }, + { + "propertyName": "id", + "comment": "Unique ID of the video_category." + }, + { + "propertyName": "name", + "comment": "Name of the video_category." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the video_category on Giant Bomb." + } + ] + }, + { + "title": "videoCategoryListItem", + "fields": [ + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the video_category detail resource." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the video_category." + }, + { + "propertyName": "id", + "comment": "Unique ID of the video_category." + }, + { + "propertyName": "name", + "comment": "Name of the video_category." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the video_category on Giant Bomb." + } + ] + }, + { + "title": "volumeDetails", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the volume is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the volume detail resource." + }, + { + "propertyName": "characters", + "comment": "A list of characters that appear in this volume." + }, + { + "propertyName": "concepts", + "comment": "A list of concepts that appear in this volume." + }, + { + "propertyName": "count_of_issues", + "comment": "Number of issues included in this volume." + }, + { + "propertyName": "date_added", + "comment": "Date the volume was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the volume was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the volume." + }, + { + "propertyName": "description", + "comment": "Description of the volume." + }, + { + "propertyName": "first_issue", + "comment": "The first issue in this volume." + }, + { + "propertyName": "id", + "comment": "Unique ID of the volume." + }, + { + "propertyName": "image", + "comment": "Main image of the volume." + }, + { + "propertyName": "last_issue", + "comment": "The last issue in this volume." + }, + { + "propertyName": "locations", + "comment": "List of locations that appeared in this volume." + }, + { + "propertyName": "name", + "comment": "Name of the volume." + }, + { + "propertyName": "objects", + "comment": "List of things that appeared in this volume." + }, + { + "propertyName": "persons", + "comment": "List of people that worked on this volume." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a volume is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the volume on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this volume appeared in comics." + }, + { + "propertyName": "teams", + "comment": "List of teams that appear in this volume." + } + ] + }, + { + "title": "volumeListItem", + "fields": [ + { + "propertyName": "aliases", + "comment": "List of aliases the volume is known by. A \\n (newline) seperates each alias." + }, + { + "propertyName": "api_detail_url", + "comment": "URL pointing to the volume detail resource." + }, + { + "propertyName": "count_of_issues", + "comment": "Number of issues included in this volume." + }, + { + "propertyName": "date_added", + "comment": "Date the volume was added to Comic Vine." + }, + { + "propertyName": "date_last_updated", + "comment": "Date the volume was last updated on Comic Vine." + }, + { + "propertyName": "deck", + "comment": "Brief summary of the volume." + }, + { + "propertyName": "description", + "comment": "Description of the volume." + }, + { + "propertyName": "first_issue", + "comment": "The first issue in this volume." + }, + { + "propertyName": "id", + "comment": "Unique ID of the volume." + }, + { + "propertyName": "image", + "comment": "Main image of the volume." + }, + { + "propertyName": "last_issue", + "comment": "The last issue in this volume." + }, + { + "propertyName": "name", + "comment": "Name of the volume." + }, + { + "propertyName": "publisher", + "comment": "The primary publisher a volume is attached to." + }, + { + "propertyName": "site_detail_url", + "comment": "URL pointing to the volume on Giant Bomb." + }, + { + "propertyName": "start_year", + "comment": "The first year this volume appeared in comics." + } + ] + } +] diff --git a/samples/config.json b/samples/config.json new file mode 100644 index 0000000..3e75bd2 --- /dev/null +++ b/samples/config.json @@ -0,0 +1,316 @@ +[ + { + "typeName": "CharacterDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/character/4005-1345", + "https://comicvine.gamespot.com/api/character/4005-1279", + "https://comicvine.gamespot.com/api/character/4005-1305", + "https://comicvine.gamespot.com/api/character/4005-1289", + "https://comicvine.gamespot.com/api/character/4005-1268", + "https://comicvine.gamespot.com/api/character/4005-1443", + "https://comicvine.gamespot.com/api/character/4005-141840" + ], + "shouldGenerate": true + }, + { + "typeName": "CharacterListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/characters"], + "shouldGenerate": true + }, + { + "typeName": "ConceptDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/concept/4015-43631", + "https://comicvine.gamespot.com/api/concept/4015-43603", + "https://comicvine.gamespot.com/api/concept/4015-47581", + "https://comicvine.gamespot.com/api/concept/4015-50695", + "https://comicvine.gamespot.com/api/concept/4015-40617" + ], + "shouldGenerate": true + }, + { + "typeName": "ConceptListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/concepts"], + "shouldGenerate": true + }, + { + "typeName": "EpisodeDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/episode/4070-1", + "https://comicvine.gamespot.com/api/episode/4070-57", + "https://comicvine.gamespot.com/api/episode/4070-15", + "https://comicvine.gamespot.com/api/episode/4070-95", + "https://comicvine.gamespot.com/api/episode/4070-93", + "https://comicvine.gamespot.com/api/episode/4070-29962" + ], + "shouldGenerate": true + }, + { + "typeName": "EpisodeListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/episodes"], + "shouldGenerate": true + }, + { + "typeName": "IssueDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/issue/4000-85", + "https://comicvine.gamespot.com/api/issue/4000-64", + "https://comicvine.gamespot.com/api/issue/4000-52", + "https://comicvine.gamespot.com/api/issue/4000-68", + "https://comicvine.gamespot.com/api/issue/4000-44", + "https://comicvine.gamespot.com/api/issue/4000-768300", + "https://comicvine.gamespot.com/api/issue/4000-319366" + ], + "shouldGenerate": true + }, + { + "typeName": "IssueListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/issues"], + "shouldGenerate": true + }, + { + "typeName": "LocationDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/location/4020-41103", + "https://comicvine.gamespot.com/api/location/4020-41183", + "https://comicvine.gamespot.com/api/location/4020-21766", + "https://comicvine.gamespot.com/api/location/4020-23199", + "https://comicvine.gamespot.com/api/location/4020-41019" + ], + "shouldGenerate": true + }, + { + "typeName": "LocationListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/locations"], + "shouldGenerate": true + }, + { + "typeName": "MovieDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/movie/4025-31", + "https://comicvine.gamespot.com/api/movie/4025-52", + "https://comicvine.gamespot.com/api/movie/4025-76", + "https://comicvine.gamespot.com/api/movie/4025-36", + "https://comicvine.gamespot.com/api/movie/4025-4" + ], + "shouldGenerate": true + }, + { + "typeName": "MovieListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/movies"], + "shouldGenerate": true + }, + { + "typeName": "ThingDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/object/4055-40973", + "https://comicvine.gamespot.com/api/object/4055-40449", + "https://comicvine.gamespot.com/api/object/4055-43495", + "https://comicvine.gamespot.com/api/object/4055-43246", + "https://comicvine.gamespot.com/api/object/4055-43295" + ], + "shouldGenerate": true + }, + { + "typeName": "ThingListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/objects"], + "shouldGenerate": true + }, + { + "typeName": "OriginDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/origin/4030-9", + "https://comicvine.gamespot.com/api/origin/4030-1", + "https://comicvine.gamespot.com/api/origin/4030-5", + "https://comicvine.gamespot.com/api/origin/4030-7", + "https://comicvine.gamespot.com/api/origin/4030-6" + ], + "shouldGenerate": true + }, + { + "typeName": "OriginListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/origins"], + "shouldGenerate": true + }, + { + "typeName": "PersonDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/person/4040-1437", + "https://comicvine.gamespot.com/api/person/4040-1433", + "https://comicvine.gamespot.com/api/person/4040-1539", + "https://comicvine.gamespot.com/api/person/4040-1280", + "https://comicvine.gamespot.com/api/person/4040-1350", + "https://comicvine.gamespot.com/api/person/4040-1293", + "https://comicvine.gamespot.com/api/person/4040-1252" + ], + "shouldGenerate": true + }, + { + "typeName": "PersonListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/people"], + "shouldGenerate": true + }, + { + "typeName": "PowerDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/power/4035-23", + "https://comicvine.gamespot.com/api/power/4035-79", + "https://comicvine.gamespot.com/api/power/4035-77", + "https://comicvine.gamespot.com/api/power/4035-8", + "https://comicvine.gamespot.com/api/power/4035-7" + ], + "shouldGenerate": true + }, + { + "typeName": "PowerListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/powers"], + "shouldGenerate": true + }, + { + "typeName": "PromoDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/promo/1700-1782", + "https://comicvine.gamespot.com/api/promo/1700-1763", + "https://comicvine.gamespot.com/api/promo/1700-1783", + "https://comicvine.gamespot.com/api/promo/1700-1781", + "https://comicvine.gamespot.com/api/promo/1700-1785" + ], + "shouldGenerate": true + }, + { + "typeName": "PromoListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/promos"], + "shouldGenerate": true + }, + { + "typeName": "PublisherDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/publisher/4010-150", + "https://comicvine.gamespot.com/api/publisher/4010-153", + "https://comicvine.gamespot.com/api/publisher/4010-214", + "https://comicvine.gamespot.com/api/publisher/4010-178", + "https://comicvine.gamespot.com/api/publisher/4010-133", + "https://comicvine.gamespot.com/api/publisher/4010-31" + ], + "shouldGenerate": true + }, + { + "typeName": "PublisherListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/publishers"], + "shouldGenerate": true + }, + { + "typeName": "SeriesDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/series/4075-38", + "https://comicvine.gamespot.com/api/series/4075-35", + "https://comicvine.gamespot.com/api/series/4075-28", + "https://comicvine.gamespot.com/api/series/4075-43", + "https://comicvine.gamespot.com/api/series/4075-13" + ], + "shouldGenerate": true + }, + { + "typeName": "SeriesListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/series_list"], + "shouldGenerate": true + }, + { + "typeName": "StoryArcDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/story_arc/4045-40800", + "https://comicvine.gamespot.com/api/story_arc/4045-42241", + "https://comicvine.gamespot.com/api/story_arc/4045-42219", + "https://comicvine.gamespot.com/api/story_arc/4045-43901", + "https://comicvine.gamespot.com/api/story_arc/4045-43775", + "https://comicvine.gamespot.com/api/story_arc/4045-40764" + ], + "shouldGenerate": true + }, + { + "typeName": "StoryArcListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/story_arcs"], + "shouldGenerate": true + }, + { + "typeName": "TeamDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/team/4060-13357", + "https://comicvine.gamespot.com/api/team/4060-3775", + "https://comicvine.gamespot.com/api/team/4060-3191", + "https://comicvine.gamespot.com/api/team/4060-9591", + "https://comicvine.gamespot.com/api/team/4060-4443", + "https://comicvine.gamespot.com/api/team/4060-40426" + ], + "shouldGenerate": true + }, + { + "typeName": "TeamListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/teams"], + "shouldGenerate": true + }, + { + "typeName": "VideoDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/video/2300-3265", + "https://comicvine.gamespot.com/api/video/2300-3315", + "https://comicvine.gamespot.com/api/video/2300-3307", + "https://comicvine.gamespot.com/api/video/2300-3316", + "https://comicvine.gamespot.com/api/video/2300-3277" + ], + "shouldGenerate": true + }, + { + "typeName": "VideoListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/videos"], + "shouldGenerate": true + }, + { + "typeName": "VideoTypeDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/video_type/2320-3", + "https://comicvine.gamespot.com/api/video_type/2320-8", + "https://comicvine.gamespot.com/api/video_type/2320-12", + "https://comicvine.gamespot.com/api/video_type/2320-2", + "https://comicvine.gamespot.com/api/video_type/2320-7" + ], + "shouldGenerate": true + }, + { + "typeName": "VideoTypeListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/video_types"], + "shouldGenerate": true + }, + { + "typeName": "VideoCategoryDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/video_category/2320-12", + "https://comicvine.gamespot.com/api/video_category/2320-13", + "https://comicvine.gamespot.com/api/video_category/2320-2", + "https://comicvine.gamespot.com/api/video_category/2320-7", + "https://comicvine.gamespot.com/api/video_category/2320-11" + ], + "shouldGenerate": true + }, + { + "typeName": "VideoCategoryListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/video_categories"], + "shouldGenerate": true + }, + { + "typeName": "VolumeDetails", + "sampleUrls": [ + "https://comicvine.gamespot.com/api/volume/4050-1144", + "https://comicvine.gamespot.com/api/volume/4050-1141", + "https://comicvine.gamespot.com/api/volume/4050-1194", + "https://comicvine.gamespot.com/api/volume/4050-1168", + "https://comicvine.gamespot.com/api/volume/4050-1153" + ], + "shouldGenerate": true + }, + { + "typeName": "VolumeListItem", + "sampleUrls": ["https://comicvine.gamespot.com/api/volumes"], + "shouldGenerate": true + } +] diff --git a/samples/documentation.html b/samples/documentation.html new file mode 100644 index 0000000..e5e4523 --- /dev/null +++ b/samples/documentation.html @@ -0,0 +1,4669 @@ + + Free Comic Database and API - Comic Vine + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    + + + +
    +
    +
    +
    + +

    Responses

    + + + + + + + + + + +
    status_codeAn integer indicating the result of the request. Acceptable values are: +
    +
      +
    • 1:OK
    • +
    • 100:Invalid API Key
    • +
    • 101:Object Not Found
    • +
    • 102:Error in URL Format
    • +
    • 103:'jsonp' format requires a 'json_callback' argument
    • +
    • 104:Filter Error
    • +
    • 105:Subscriber only video is for subscribers only
    • +
    +
    errorA text string representing the status_code
    number_of_total_resultsThe number of total results matching the filter conditions specified
    number_of_page_resultsThe number of results on this page
    limitThe value of the limit filter specified, or 100 if not specified
    offsetThe value of the offset filter specified, or 0 if not specified
    resultsZero or more items that match the filters specified
    +
    + +

    Resources

    +

    character

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /character
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the character is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the character detail resource.
    birthA date, if one exists, that the character was born on. Not an origin date.
    character_enemiesList of characters that are enemies with this character.
    character_friendsList of characters that are friends with this character.
    count_of_issue_appearancesNumber of issues this character appears in.
    creatorsList of the real life people who created this character.
    date_addedDate the character was added to Comic Vine.
    date_last_updatedDate the character was last updated on Comic Vine.
    deckBrief summary of the character.
    descriptionDescription of the character.
    first_appeared_in_issueIssue where the character made its first appearance.
    genderGender of the character. Available options are: Male, Female, Other
    idUnique ID of the character.
    imageMain image of the character.
    issue_creditsList of issues this character appears in.
    issues_died_inList of issues this character died in.
    moviesMovies the character was in.
    nameName of the character.
    originThe origin of the character. Human, Alien, Robot ...etc
    powersList of super powers a character has.
    publisherThe primary publisher a character is attached to.
    real_nameReal name of the character.
    site_detail_urlURL pointing to the character on Giant Bomb.
    story_arc_creditsList of story arcs this character appears in.
    team_enemiesList of teams that are enemies of this character.
    team_friendsList of teams that are friends with this character.
    teamsList of teams this character is a member of.
    volume_creditsList of comic volumes this character appears in.
    +
    +

    characters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /characters
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the character is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the character detail resource.
    birthA date, if one exists, that the character was born on. Not an origin date.
    count_of_issue_appearancesNumber of issues this character appears in.
    date_addedDate the character was added to Comic Vine.
    date_last_updatedDate the character was last updated on Comic Vine.
    deckBrief summary of the character.
    descriptionDescription of the character.
    first_appeared_in_issueIssue where the character made its first appearance.
    genderGender of the character. Available options are: Male, Female, Other
    idUnique ID of the character.
    imageMain image of the character.
    nameName of the character.
    originThe origin of the character. Human, Alien, Robot ...etc
    publisherThe primary publisher a character is attached to.
    real_nameReal name of the character.
    site_detail_urlURL pointing to the character on Giant Bomb.
    +
    +

    chat

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /chat
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the chat detail resource.
    channel_nameName of the video streaming channel associated with the chat.
    deckBrief summary of the chat.
    imageMain image of the chat.
    passwordchat password.
    site_detail_urlURL pointing to the chat on Giant Bomb.
    titleTitle of the chat.
    +
    +

    chats

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /chats
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the chat detail resource.
    channel_nameName of the video streaming channel associated with the chat.
    deckBrief summary of the chat.
    imageMain image of the chat.
    passwordchat password.
    site_detail_urlURL pointing to the chat on Giant Bomb.
    titleTitle of the chat.
    +
    +

    concept

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /concept
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the concept is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the concept detail resource.
    count_of_issue_appearancesNumber of issues this concept appears in.
    date_addedDate the concept was added to Comic Vine.
    date_last_updatedDate the concept was last updated on Comic Vine.
    deckBrief summary of the concept.
    descriptionDescription of the concept.
    first_appeared_in_issueIssue where the concept made its first appearance.
    idUnique ID of the concept.
    imageMain image of the concept.
    issue_creditsList of issues this concept appears in.
    moviesMovies the concept was in.
    nameName of the concept.
    site_detail_urlURL pointing to the concept on Giant Bomb.
    start_yearThe first year this concept appeared in comics.
    volume_creditsList of comic volumes this concept appears in.
    +
    +

    concepts

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /concepts
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the concept is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the concept detail resource.
    count_of_issue_appearancesNumber of issues this concept appears in.
    date_addedDate the concept was added to Comic Vine.
    date_last_updatedDate the concept was last updated on Comic Vine.
    deckBrief summary of the concept.
    descriptionDescription of the concept.
    first_appeared_in_issueIssue where the concept made its first appearance.
    idUnique ID of the concept.
    imageMain image of the concept.
    nameName of the concept.
    site_detail_urlURL pointing to the concept on Giant Bomb.
    start_yearThe first year this concept appeared in comics.
    +
    +

    episode

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /episode
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the episode is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the episode detail resource.
    character_creditsA list of characters that appear in this episode.
    characters_died_inA list of characters that died in this episode.
    concept_creditsA list of concepts that appear in this episode.
    air_dateThe air date of the episode.
    date_addedDate the episode was added to Comic Vine.
    date_last_updatedDate the episode was last updated on Comic Vine.
    deckBrief summary of the episode.
    descriptionDescription of the episode.
    first_appearance_charactersA list of characters in which this episode is the first appearance of the character.
    first_appearance_conceptsA list of concepts in which this episode is the first appearance of the concept.
    first_appearance_locationsA list of locations in which this episode is the first appearance of the location.
    first_appearance_objectsA list of objects in which this episode is the first appearance of the object.
    first_appearance_storyarcsA list of storyarcs in which this episode is the first appearance of the story arc.
    first_appearance_teamsA list of teams in which this episode is the first appearance of the team.
    has_staff_review
    idUnique ID of the episode.
    imageMain image of the episode.
    episode_numberThe number assigned to the episode within a series.
    location_creditsList of locations that appeared in this episode.
    nameName of the episode.
    object_creditsList of objects that appeared in this episode.
    person_creditsList of people that worked on this episode.
    site_detail_urlURL pointing to the episode on Giant Bomb.
    story_arc_creditsList of story arcs this episode appears in.
    team_creditsList of teams that appear in this episode.
    seriesThe series the episode belongs to.
    +
    +

    episodes

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /episodes
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the episode is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the episode detail resource.
    air_dateThe air date of the episode.
    date_addedDate the episode was added to Comic Vine.
    date_last_updatedDate the episode was last updated on Comic Vine.
    deckBrief summary of the episode.
    descriptionDescription of the episode.
    has_staff_review
    idUnique ID of the episode.
    imageMain image of the episode.
    issue_numberThe number assigned to the episode within the volume set.
    nameName of the episode.
    site_detail_urlURL pointing to the episode on Giant Bomb.
    seriesThe series the episode belongs to.
    +
    +

    issue

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /issue
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the issue is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the issue detail resource.
    character_creditsA list of characters that appear in this issue.
    characters_died_inA list of characters that died in this issue.
    concept_creditsA list of concepts that appear in this issue.
    cover_dateThe publish date printed on the cover of an issue.
    date_addedDate the issue was added to Comic Vine.
    date_last_updatedDate the issue was last updated on Comic Vine.
    deckBrief summary of the issue.
    descriptionDescription of the issue.
    disbanded_teamsA list of teams that disbanded in this issue.
    first_appearance_charactersA list of characters in which this issue is the first appearance of the character.
    first_appearance_conceptsA list of concepts in which this issue is the first appearance of the concept.
    first_appearance_locationsA list of locations in which this issue is the first appearance of the location.
    first_appearance_objectsA list of objects in which this issue is the first appearance of the object.
    first_appearance_storyarcsA list of storyarcs in which this issue is the first appearance of the story arc.
    first_appearance_teamsA list of teams in which this issue is the first appearance of the team.
    has_staff_review
    idUnique ID of the issue.
    imageMain image of the issue.
    issue_numberThe number assigned to the issue within the volume set.
    location_creditsList of locations that appeared in this issue.
    nameName of the issue.
    object_creditsList of objects that appeared in this issue.
    person_creditsList of people that worked on this issue.
    site_detail_urlURL pointing to the issue on Giant Bomb.
    store_dateThe date the issue was first sold in stores.
    story_arc_creditsList of story arcs this issue appears in.
    team_creditsList of teams that appear in this issue.
    teams_disbanded_inList of teams that disbanded in this issue.
    volumeThe volume this issue is a part of.
    +
    +

    issues

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /issues
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the issue is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the issue detail resource.
    cover_dateThe publish date printed on the cover of an issue.
    date_addedDate the issue was added to Comic Vine.
    date_last_updatedDate the issue was last updated on Comic Vine.
    deckBrief summary of the issue.
    descriptionDescription of the issue.
    has_staff_review
    idUnique ID of the issue.
    imageMain image of the issue.
    issue_numberThe number assigned to the issue within the volume set.
    nameName of the issue.
    site_detail_urlURL pointing to the issue on Giant Bomb.
    store_dateThe date the issue was first sold in stores.
    volumeThe volume this issue is a part of.
    +
    +

    location

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /location
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the location is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the location detail resource.
    count_of_issue_appearancesNumber of issues this location appears in.
    date_addedDate the location was added to Comic Vine.
    date_last_updatedDate the location was last updated on Comic Vine.
    deckBrief summary of the location.
    descriptionDescription of the location.
    first_appeared_in_issueIssue where the location made its first appearance.
    idUnique ID of the location.
    imageMain image of the location.
    issue_creditsList of issues this location appears in.
    moviesMovies the location was in.
    nameName of the location.
    site_detail_urlURL pointing to the location on Giant Bomb.
    start_yearThe first year this location appeared in comics.
    story_arc_creditsList of story arcs this location appears in.
    volume_creditsList of comic volumes this location appears in.
    +
    +

    locations

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /locations
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the location is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the location detail resource.
    count_of_issue_appearancesNumber of issues this location appears in.
    date_addedDate the location was added to Comic Vine.
    date_last_updatedDate the location was last updated on Comic Vine.
    deckBrief summary of the location.
    descriptionDescription of the location.
    first_appeared_in_issueIssue where the location made its first appearance.
    idUnique ID of the location.
    imageMain image of the location.
    nameName of the location.
    site_detail_urlURL pointing to the location on Giant Bomb.
    start_yearThe first year this location appeared in comics.
    +
    +

    movie

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /movie
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the movie detail resource.
    box_office_revenueThe total revenue made in the box offices for this movie.
    budgetThe cost of making this movie.
    charactersCharacters related to the movie.
    conceptsConcepts related to the movie.
    date_addedDate the movie was added to Comic Vine.
    date_last_updatedDate the movie was last updated on Comic Vine.
    deckBrief summary of the movie.
    descriptionDescription of the movie.
    distributor
    has_staff_review
    idUnique ID of the movie.
    imageMain image of the movie.
    locationsLocations related to the movie.
    nameName of the movie.
    producersThe producers of this movie.
    ratingThe rating of this movie.
    release_dateDate of the movie.
    runtimeThe length of this movie.
    site_detail_urlURL pointing to the movie on Giant Bomb.
    studios
    teamsList of teams this movie is a member of.
    thingsList of things found in this movie.
    total_revenueTotal revenue generated by this movie.
    writersWriters for this movie.
    +
    +

    movies

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /movies
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    api_detail_urlURL pointing to the movie detail resource.
    box_office_revenueThe total revenue made in the box offices for this movie.
    budgetThe cost of making this movie.
    date_addedDate the movie was added to Comic Vine.
    date_last_updatedDate the movie was last updated on Comic Vine.
    deckBrief summary of the movie.
    descriptionDescription of the movie.
    distributor
    has_staff_review
    idUnique ID of the movie.
    imageMain image of the movie.
    nameName of the movie.
    producersThe producers of this movie.
    ratingThe rating of this movie.
    release_dateDate of the movie.
    runtimeThe length of this movie.
    site_detail_urlURL pointing to the movie on Giant Bomb.
    studios
    total_revenueTotal revenue generated by this movie.
    writersWriters for this movie.
    +
    +

    object

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /object
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the object is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the object detail resource.
    count_of_issue_appearancesNumber of issues this object appears in.
    date_addedDate the object was added to Comic Vine.
    date_last_updatedDate the object was last updated on Comic Vine.
    deckBrief summary of the object.
    descriptionDescription of the object.
    first_appeared_in_issueIssue where the object made its first appearance.
    idUnique ID of the object.
    imageMain image of the object.
    issue_creditsList of issues this object appears in.
    moviesMovies the object was in.
    nameName of the object.
    site_detail_urlURL pointing to the object on Giant Bomb.
    start_yearThe first year this object appeared in comics.
    story_arc_creditsList of story arcs this object appears in.
    volume_creditsList of comic volumes this object appears in.
    +
    +

    objects

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /objects
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the object is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the object detail resource.
    count_of_issue_appearancesNumber of issues this object appears in.
    date_addedDate the object was added to Comic Vine.
    date_last_updatedDate the object was last updated on Comic Vine.
    deckBrief summary of the object.
    descriptionDescription of the object.
    first_appeared_in_issueIssue where the object made its first appearance.
    idUnique ID of the object.
    imageMain image of the object.
    nameName of the object.
    site_detail_urlURL pointing to the object on Giant Bomb.
    start_yearThe first year this object appeared in comics.
    +
    +

    origin

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /origin
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the origin detail resource.
    character_set
    idUnique ID of the origin.
    nameName of the origin.
    profiles
    site_detail_urlURL pointing to the origin on Giant Bomb.
    +
    +

    origins

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /origins
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    api_detail_urlURL pointing to the origin detail resource.
    idUnique ID of the origin.
    nameName of the origin.
    site_detail_urlURL pointing to the origin on Giant Bomb.
    +
    +

    person

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /person
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the person is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the person detail resource.
    birthA date, if one exists, that the person was born on. Not an origin date.
    count_of_issue_appearancesNumber of issues this person appears in.
    countryCountry the person resides in.
    created_charactersComic characters this person created.
    date_addedDate the person was added to Comic Vine.
    date_last_updatedDate the person was last updated on Comic Vine.
    deathDate this person died on.
    deckBrief summary of the person.
    descriptionDescription of the person.
    emailThe email of this person.
    genderGender of the person. Available options are: Male, Female, Other
    hometownCity or town the person resides in.
    idUnique ID of the person.
    imageMain image of the person.
    issue_creditsList of issues this person appears in.
    nameName of the person.
    site_detail_urlURL pointing to the person on Giant Bomb.
    story_arc_creditsList of story arcs this person appears in.
    volume_creditsList of comic volumes this person appears in.
    websiteURL to the person website.
    +
    +

    people

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /people
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the person is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the person detail resource.
    birthA date, if one exists, that the person was born on. Not an origin date.
    count_of_issue_appearancesNumber of issues this person appears in.
    countryCountry the person resides in.
    date_addedDate the person was added to Comic Vine.
    date_last_updatedDate the person was last updated on Comic Vine.
    deathDate this person died on.
    deckBrief summary of the person.
    descriptionDescription of the person.
    emailThe email of this person.
    genderGender of the person. Available options are: Male, Female, Other
    hometownCity or town the person resides in.
    idUnique ID of the person.
    imageMain image of the person.
    nameName of the person.
    site_detail_urlURL pointing to the person on Giant Bomb.
    websiteURL to the person website.
    +
    +

    power

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /power
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the power is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the power detail resource.
    charactersCharacters related to the power.
    date_addedDate the power was added to Comic Vine.
    date_last_updatedDate the power was last updated on Comic Vine.
    descriptionDescription of the power.
    idUnique ID of the power.
    nameName of the power.
    site_detail_urlURL pointing to the power on Giant Bomb.
    +
    +

    powers

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /powers
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the power is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the power detail resource.
    date_addedDate the power was added to Comic Vine.
    date_last_updatedDate the power was last updated on Comic Vine.
    descriptionDescription of the power.
    idUnique ID of the power.
    nameName of the power.
    site_detail_urlURL pointing to the power on Giant Bomb.
    +
    +

    promo

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /promo
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the promo detail resource.
    date_addedDate the promo was added to Comic Vine.
    deckBrief summary of the promo.
    idUnique ID of the promo.
    imageMain image of the promo.
    linkThe link that promo points to.
    nameName of the promo.
    resource_typeThe type of resource the promo is pointing towards.
    userAuthor of the promo.
    +
    +

    promos

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /promos
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    api_detail_urlURL pointing to the promo detail resource.
    date_addedDate the promo was added to Comic Vine.
    deckBrief summary of the promo.
    idUnique ID of the promo.
    imageMain image of the promo.
    linkThe link that promo points to.
    nameName of the promo.
    resource_typeThe type of resource the promo is pointing towards.
    userAuthor of the promo.
    +
    +

    publisher

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /publisher
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the publisher is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the publisher detail resource.
    charactersCharacters related to the publisher.
    date_addedDate the publisher was added to Comic Vine.
    date_last_updatedDate the publisher was last updated on Comic Vine.
    deckBrief summary of the publisher.
    descriptionDescription of the publisher.
    idUnique ID of the publisher.
    imageMain image of the publisher.
    location_addressStreet address of the publisher.
    location_cityCity the publisher resides in.
    location_stateState the publisher resides in.
    nameName of the publisher.
    site_detail_urlURL pointing to the publisher on Giant Bomb.
    story_arcsList of story arcs tied to this publisher.
    teamsList of teams this publisher is a member of.
    volumesList of volumes this publisher has put out.
    +
    +

    publishers

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /publishers
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the publisher is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the publisher detail resource.
    date_addedDate the publisher was added to Comic Vine.
    date_last_updatedDate the publisher was last updated on Comic Vine.
    deckBrief summary of the publisher.
    descriptionDescription of the publisher.
    idUnique ID of the publisher.
    imageMain image of the publisher.
    location_addressStreet address of the publisher.
    location_cityCity the publisher resides in.
    location_stateState the publisher resides in.
    nameName of the publisher.
    site_detail_urlURL pointing to the publisher on Giant Bomb.
    +
    +

    series

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /series
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the series is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the series detail resource.
    character_creditsA list of characters that appear in this series.
    count_of_episodesNumber of episodes included in this series.
    date_addedDate the series was added to Comic Vine.
    date_last_updatedDate the series was last updated on Comic Vine.
    deckBrief summary of the series.
    descriptionDescription of the series.
    first_episodeThe first episode in this series.
    idUnique ID of the series.
    imageMain image of the series.
    last_episodeThe last episode in this series.
    location_creditsList of locations that appeared in this series.
    nameName of the series.
    publisherThe primary publisher a series is attached to.
    site_detail_urlURL pointing to the series on Giant Bomb.
    start_yearThe first year this series appeared in comics.
    +
    +

    series_list

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /series_list
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the series_list is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the series_list detail resource.
    count_of_episodesNumber of episodes included in this series_list.
    date_addedDate the series_list was added to Comic Vine.
    date_last_updatedDate the series_list was last updated on Comic Vine.
    deckBrief summary of the series_list.
    descriptionDescription of the series_list.
    first_episodeThe first episode in this series_list.
    idUnique ID of the series_list.
    imageMain image of the series_list.
    last_episodeThe last episode in this series_list.
    nameName of the series_list.
    publisherThe primary publisher a series_list is attached to.
    site_detail_urlURL pointing to the series_list on Giant Bomb.
    start_yearThe first year this series_list appeared in comics.
    +
    +

    search

    + + + + + + + + + + + + + + + + + + +
    URL: /search
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    api_keyYour API Key
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 10 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    queryThe search string.
    resourcesList of resources to filter results. This filter can accept multiple arguments, each delimited with a ",". Available options +are: +
    +
      +
    • character
    • +
    • concept
    • +
    • origin
    • +
    • object
    • +
    • location
    • +
    • issue
    • +
    • story_arc
    • +
    • volume
    • +
    • publisher
    • +
    • person
    • +
    • team
    • +
    • video
    • +
    +
    subscriber_onlyNEED DESCRIPTION
    Fields
    resource_typeThe type of resource the result is mapped to. Available options are: +
    +
      +
    • character
    • +
    • concept
    • +
    • origin
    • +
    • object
    • +
    • location
    • +
    • issue
    • +
    • story_arc
    • +
    • volume
    • +
    • publisher
    • +
    • person
    • +
    • team
    • +
    • video
    • +
    +
    +
    +

    story_arc

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /story_arc
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the story_arc is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the story_arc detail resource.
    count_of_issue_appearancesNumber of issues this story_arc appears in.
    date_addedDate the story_arc was added to Comic Vine.
    date_last_updatedDate the story_arc was last updated on Comic Vine.
    deckBrief summary of the story_arc.
    descriptionDescription of the story_arc.
    first_appeared_in_issueIssue where the story_arc made its first appearance.
    idUnique ID of the story_arc.
    imageMain image of the story_arc.
    issuesList of issues included in this story_arc.
    moviesMovies the story_arc was in.
    nameName of the story_arc.
    publisherThe primary publisher a story_arc is attached to.
    site_detail_urlURL pointing to the story_arc on Giant Bomb.
    +
    +

    story_arcs

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /story_arcs
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the story_arc is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the story_arc detail resource.
    count_of_issue_appearancesNumber of issues this story_arc appears in.
    date_addedDate the story_arc was added to Comic Vine.
    date_last_updatedDate the story_arc was last updated on Comic Vine.
    deckBrief summary of the story_arc.
    descriptionDescription of the story_arc.
    first_appeared_in_issueIssue where the story_arc made its first appearance.
    idUnique ID of the story_arc.
    imageMain image of the story_arc.
    nameName of the story_arc.
    publisherThe primary publisher a story_arc is attached to.
    site_detail_urlURL pointing to the story_arc on Giant Bomb.
    +
    +

    team

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /team
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the team is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the team detail resource.
    character_enemiesList of characters that are enemies with this team.
    character_friendsList of characters that are friends with this team.
    charactersCharacters related to the team.
    count_of_issue_appearancesNumber of issues this team appears in.
    count_of_team_membersNumber of team members in this team.
    date_addedDate the team was added to Comic Vine.
    date_last_updatedDate the team was last updated on Comic Vine.
    deckBrief summary of the team.
    descriptionDescription of the team.
    disbanded_in_issuesList of issues this team disbanded in.
    first_appeared_in_issueIssue where the team made its first appearance.
    idUnique ID of the team.
    imageMain image of the team.
    issue_creditsList of issues this team appears in.
    issues_disbanded_inList of issues this team disbanded in.
    moviesMovies the team was in.
    nameName of the team.
    publisherThe primary publisher a team is attached to.
    site_detail_urlURL pointing to the team on Giant Bomb.
    story_arc_creditsList of story arcs this team appears in.
    volume_creditsList of comic volumes this team appears in.
    +
    +

    teams

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /teams
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the team is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the team detail resource.
    count_of_issue_appearancesNumber of issues this team appears in.
    count_of_team_membersNumber of team members in this team.
    date_addedDate the team was added to Comic Vine.
    date_last_updatedDate the team was last updated on Comic Vine.
    deckBrief summary of the team.
    descriptionDescription of the team.
    first_appeared_in_issueIssue where the team made its first appearance.
    idUnique ID of the team.
    imageMain image of the team.
    nameName of the team.
    publisherThe primary publisher a team is attached to.
    site_detail_urlURL pointing to the team on Giant Bomb.
    +
    +

    types

    + + + + + + + + + + + + + + + + + + + +
    URL: /types
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    Fields
    detail_resource_nameThe name of the type's detail resource.
    idUnique ID of the type.
    list_resource_nameThe name of the type's list resource.
    +
    +

    video

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /video
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the video detail resource.
    deckBrief summary of the video.
    hd_urlURL to the HD version of the video.
    high_urlURL to the High Res version of the video.
    idUnique ID of the video.
    imageMain image of the video.
    length_secondsLength (in seconds) of the video.
    low_urlURL to the Low Res version of the video.
    nameName of the video.
    publish_dateDate the video was published on Comic Vine.
    site_detail_urlURL pointing to the video on Giant Bomb.
    urlThe video's filename.
    userAuthor of the video.
    +
    +

    videos

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /videos
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    api_keyYour API Key
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    subscriber_onlyNEED DESCRIPTION
    video_typeFilters results by video_type. The value passed to this filter should be the ID of the video_type to filter results by.
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    api_detail_urlURL pointing to the video detail resource.
    deckBrief summary of the video.
    hd_urlURL to the HD version of the video.
    high_urlURL to the High Res version of the video.
    idUnique ID of the video.
    imageMain image of the video.
    length_secondsLength (in seconds) of the video.
    low_urlURL to the Low Res version of the video.
    nameName of the video.
    publish_dateDate the video was published on Comic Vine.
    site_detail_urlURL pointing to the video on Giant Bomb.
    urlThe video's filename.
    userAuthor of the video.
    +
    +

    video_type

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /video_type
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the video_type detail resource.
    deckBrief summary of the video_type.
    idUnique ID of the video_type.
    nameName of the video_type.
    site_detail_urlURL pointing to the video_type on Giant Bomb.
    +
    +

    video_types

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /video_types
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    Fields
    api_detail_urlURL pointing to the video_type detail resource.
    deckBrief summary of the video_type.
    idUnique ID of the video_type.
    nameName of the video_type.
    site_detail_urlURL pointing to the video_type on Giant Bomb.
    +
    +

    video_category

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /video_category
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    api_detail_urlURL pointing to the video_category detail resource.
    deckBrief summary of the video_category.
    idUnique ID of the video_category.
    nameName of the video_category.
    site_detail_urlURL pointing to the video_category on Giant Bomb.
    +
    +

    video_categories

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /video_categories
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    Fields
    api_detail_urlURL pointing to the video_category detail resource.
    deckBrief summary of the video_category.
    idUnique ID of the video_category.
    nameName of the video_category.
    site_detail_urlURL pointing to the video_category on Giant Bomb.
    +
    +

    volume

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /volume
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    Fields
    aliasesList of aliases the volume is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the volume detail resource.
    character_creditsA list of characters that appear in this volume.
    concept_creditsA list of concepts that appear in this volume.
    count_of_issuesNumber of issues included in this volume.
    date_addedDate the volume was added to Comic Vine.
    date_last_updatedDate the volume was last updated on Comic Vine.
    deckBrief summary of the volume.
    descriptionDescription of the volume.
    first_issueThe first issue in this volume.
    idUnique ID of the volume.
    imageMain image of the volume.
    last_issueThe last issue in this volume.
    location_creditsList of locations that appeared in this volume.
    nameName of the volume.
    object_creditsList of objects that appeared in this volume.
    person_creditsList of people that worked on this volume.
    publisherThe primary publisher a volume is attached to.
    site_detail_urlURL pointing to the volume on Giant Bomb.
    start_yearThe first year this volume appeared in comics.
    team_creditsList of teams that appear in this volume.
    +
    +

    volumes

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL: /volumes
    Filters
    formatThe data format of the response takes either xml, json, or jsonp.
    field_listList of field names to include in the response. Use this if you want to reduce the size of the response payload. This filter can +accept multiple arguments, each delimited with a "," +
    limitThe number of results to display per page. This value defaults to 100 and can not exceed this number.
    offsetReturn results starting with the object at the offset specified.
    sortThe result set can be sorted by the marked fields in the Fields section below. Format: &sort=field:direction where direction is +either asc or desc. +
    filterThe result can be filtered by the marked fields in the Fields section below.

    +Single filter: &filter=field:value
    +Multiple filters: &filter=field:value,field:value
    +Date filters: &filter=field:start value|end value (using datetime format) +
    FieldsSortFilter
    aliasesList of aliases the volume is known by. A \n (newline) seperates each alias.
    api_detail_urlURL pointing to the volume detail resource.
    count_of_issuesNumber of issues included in this volume.
    date_addedDate the volume was added to Comic Vine.
    date_last_updatedDate the volume was last updated on Comic Vine.
    deckBrief summary of the volume.
    descriptionDescription of the volume.
    first_issueThe first issue in this volume.
    idUnique ID of the volume.
    imageMain image of the volume.
    last_issueThe last issue in this volume.
    nameName of the volume.
    publisherThe primary publisher a volume is attached to.
    site_detail_urlURL pointing to the volume on Giant Bomb.
    start_yearThe first year this volume appeared in comics.
    +
    + +
    +
    + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    + + +
    + + + + + + + + + + + +
    + + + + unknown x unknown + + +
    \ No newline at end of file diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 0000000..10c243b --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,138 @@ +# Code Generation + +The SDK's TypeScript types, resource classes, tests, and mock data are all generated from sample Comic Vine API responses. This ensures type definitions stay accurate and consistent with the real API. + +## Pipeline Overview + +```mermaid +flowchart TD + subgraph Inputs + config["samples/config.json"] + html["samples/documentation.html"] + api["samples/api-data/*/*.json"] + end + + subgraph fetch["pnpm samples:fetch"] + F["fetch-samples.ts"] + end + + config --> F + F -- "GET /api/{resource}" --> api + + subgraph generate["pnpm sdk:generate"] + direction TB + + S0["Step 0: Extract Comments"] + S1["Step 1: Extract Common Types"] + S2["Step 2: Generate TypeScript Types"] + S3["Step 3: Generate Mock Data"] + S4["Step 4: Generate Barrels & Enums"] + + S0 --> S1 --> S2 --> S3 --> S4 + end + + html --> S0 + api --> S1 + api --> S2 + api --> S3 + + subgraph Outputs + types["src/resources/*/types/*.ts"] + classes["src/resources/*/*.ts"] + tests["src/resources/*/*.test.ts"] + mocks["src/__mocks__/**/*.json"] + barrels["src/resources/resource-list.ts\nsrc/resources/resource-type.ts\nsrc/resources/resource-map.ts"] + end + + S2 --> types + S2 --> classes + S2 --> tests + S3 --> mocks + S4 --> barrels +``` + +## Type Inference Pipeline + +Each resource's types go through a multi-stage transformation: + +```mermaid +flowchart LR + json["Sample JSON"] --> infer["inferTypeGraph()"] + infer --> comments["applyComments()"] + comments --> common["applyCommonTypesToGraph()"] + common --> overrides["applyTypeOverrides()"] + overrides --> emit["emitTypeScript()"] + emit --> ts["*.ts file"] +``` + +| Stage | Module | Purpose | +| ------------ | --------------------------- | ------------------------------------------------------------------------------------------------- | +| Infer | `sample-inferrer.ts` | Analyse sample JSON to determine property types, nullability, arrays, and nested objects | +| Comments | `comment-injector.ts` | Inject JSDoc descriptions parsed from `documentation.html` | +| Common types | `common-types-generator.ts` | Replace recurring object shapes (Image, ApiResource, SiteResource, etc.) with shared type imports | +| Overrides | `type-overrides.ts` | Apply manual fixes for properties where sample data is ambiguous | +| Emit | `type-emitter.ts` | Walk the type graph and emit TypeScript source with imports, interfaces, and enums | + +## Scripts + +### `pnpm samples:fetch` + +Fetches fresh API responses from Comic Vine. Requires the `COMIC_VINE_API_KEY` environment variable. + +- Reads resource URLs from `samples/config.json` +- Rate-limits to 3 requests/second +- Saves responses to `samples/api-data/{resource-folder}/` + +### `pnpm sdk:generate` + +Runs the full generation pipeline (`generate-sdk.ts`): + +**Step 0 — Extract comments:** Parses `documentation.html` with cheerio to extract property descriptions, writes `samples/code-comments/comments.json`. + +**Step 1 — Extract common types:** Scans all flattened sample responses to identify recurring object shapes that match known common types (ApiResource, SiteResource, Image, Death, etc.). + +**Step 2 — Generate TypeScript types:** For each of the 38 resource folders (19 details + 19 list items), runs the inference pipeline above and writes type files. For detail resources, also generates the resource class, test file, and barrel exports. + +**Step 3 — Generate mock data:** Takes the first sample from each resource folder, writes a snake_case version to `src/__mocks__/api-response/` and a camelCase-transformed version to `src/__mocks__/expected-responses/`. Issue list resources get additional pagination variants. + +**Step 4 — Generate barrels & enums:** Creates `resource-list.ts` (re-exports all resource classes), `resource-type.ts` (ResourceType enum with Comic Vine API type IDs), and `resource-map.ts` (maps ResourceType values to API endpoint names). + +## Generator Modules + +All modules in `generate-sdk/` are **pure functions** — they take input and return strings or objects. The orchestrator (`generate-sdk.ts`) handles all file I/O. + +| Module | Responsibility | +| --------------------------- | ---------------------------------------------------------------------------------------- | +| `sample-inferrer.ts` | Infers `InferredTypeGraph` from sample JSON (types, nullability, arrays, nested objects) | +| `enum-detector.ts` | Detects enum patterns in list resources and replaces string types with generated enums | +| `type-utils.ts` | Shared type helpers: structural equality, deduplication, union construction | +| `type-emitter.ts` | Walks type graph and emits TypeScript source with imports, interfaces, and enums | +| `comment-injector.ts` | Parses API documentation HTML and injects JSDoc descriptions into type graphs | +| `common-types-generator.ts` | Detects and replaces nested types matching shared shapes with common type imports | +| `type-overrides.ts` | Applies known type corrections where sample data is ambiguous | +| `resource-generator.ts` | Generates resource class files extending `BaseResource` | +| `test-generator.ts` | Generates test files that verify correct `resourceType` | +| `mock-data-generator.ts` | Creates snake_case and camelCase test fixtures from sample data | +| `barrel-generator.ts` | Generates index/barrel files, `ResourceType` enum, and `resource-map.ts` | +| `types.ts` | Shared type definitions (`InferredType`, `TypeDefinition`, etc.) and naming utilities | + +## Sample Data Structure + +``` +samples/ +├── config.json # Resource configs with sample URLs +├── documentation.html # Scraped Comic Vine API docs +├── code-comments/ +│ └── comments.json # Extracted property descriptions (generated) +└── api-data/ + ├── character-details/ # Multiple sample responses per resource + │ ├── character-4005-1345.json + │ └── character-4005-1279.json + ├── character-list-item/ + │ └── characters.json + └── ... # 38 folders (19 resources x 2) +``` + +## Idempotency + +Running `pnpm sdk:generate && pnpm format` should produce zero `git diff` on `src/`. If it doesn't, either the samples have changed or a generator module has been modified. diff --git a/scripts/fetch-samples.ts b/scripts/fetch-samples.ts new file mode 100644 index 0000000..267dcf3 --- /dev/null +++ b/scripts/fetch-samples.ts @@ -0,0 +1,81 @@ +import fs from 'node:fs'; +import path from 'node:path'; +import { HttpClient } from '@http-client-toolkit/core'; +import { InMemoryRateLimitStore } from '@http-client-toolkit/store-memory'; +import { kebabCase } from 'change-case'; +import type { ResourceConfig } from './generate-sdk/types.js'; + +const ROOT = path.resolve(import.meta.dirname, '..'); +const SAMPLES_DIR = path.join(ROOT, 'samples'); + +const apiKey = process.env.COMIC_VINE_API_KEY; +if (!apiKey) { + console.error('Error: COMIC_VINE_API_KEY environment variable is required'); + process.exit(1); +} + +const http = new HttpClient({ + rateLimit: new InMemoryRateLimitStore({ + defaultConfig: { limit: 3, windowMs: 1000 }, + }), + throwOnRateLimit: false, + maxWaitTime: 10_000, + retry: { maxRetries: 3 }, +}); + +async function fetchResource(url: string): Promise { + return http.get(`${url}?format=json&api_key=${apiKey}`); +} + +function getFileName(url: string): string { + return url + .replace('https://comicvine.gamespot.com/api/', '') + .replaceAll('/', '-'); +} + +async function main() { + const config: ResourceConfig[] = JSON.parse( + fs.readFileSync(path.join(SAMPLES_DIR, 'config.json'), 'utf-8'), + ); + + const activeResources = config.filter((x) => x.shouldGenerate); + console.log( + `Fetching samples for ${activeResources.length} resource types...`, + ); + + const failedUrls: string[] = []; + + for (const resourceConfig of activeResources) { + const resourcePath = path.join( + SAMPLES_DIR, + 'api-data', + kebabCase(resourceConfig.typeName), + ); + fs.mkdirSync(resourcePath, { recursive: true }); + + for (const url of resourceConfig.sampleUrls) { + console.log(`Fetching - ${url}`); + try { + const sampleApiResponse = await fetchResource(url); + fs.writeFileSync( + path.join(resourcePath, `${getFileName(url)}.json`), + JSON.stringify(sampleApiResponse), + ); + } catch (error) { + failedUrls.push(url); + console.error('Failed to fetch api resource', error); + } + } + } + + if (failedUrls.length > 0) { + console.log(`\nFailed URLs:\n${failedUrls.join('\n')}`); + } else { + console.log('\nAll samples fetched successfully!'); + } +} + +main().catch((error) => { + console.error('Failed to fetch samples:', error); + process.exit(1); +}); diff --git a/scripts/find-unknown-samples.ts b/scripts/find-unknown-samples.ts new file mode 100644 index 0000000..c2c3fc8 --- /dev/null +++ b/scripts/find-unknown-samples.ts @@ -0,0 +1,480 @@ +/** + * Discovers non-null sample variants for fields currently typed as `unknown`. + * + * Run manually: + * COMIC_VINE_API_KEY=... tsx scripts/find-unknown-samples.ts + * + * Uses the list API to scan up to 100 records per request (vs 1 with detail + * endpoints). State is persisted to samples/discovery-state.json between runs + * so subsequent runs resume where the last left off. Delete the file to start + * fresh. + * + * The script does NOT modify any SDK files — add discovered URLs to + * samples/config.json manually, then run: + * pnpm samples:fetch && pnpm sdk:generate && pnpm format + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { HttpClient } from '@http-client-toolkit/core'; +import { InMemoryRateLimitStore } from '@http-client-toolkit/store-memory'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../src/http-client/hooks.js'; + +const BASE_URL = 'https://comicvine.gamespot.com/api/'; +const PAGE_SIZE = 100; +const STATE_FILE = path.join( + path.resolve(import.meta.dirname, '..', 'samples'), + 'discovery-state.json', +); + +// --------------------------------------------------------------------------- +// Tee logging +// --------------------------------------------------------------------------- + +const LOG_DIR = path.resolve(import.meta.dirname, '..', 'samples'); +const logTimestamp = new Date().toISOString().replace(/[:.]/g, '-'); +const LOG_FILE = path.join(LOG_DIR, `discovery-${logTimestamp}.log`); +const logStream = fs.createWriteStream(LOG_FILE, { flags: 'w' }); + +function log(...args: unknown[]) { + const line = args + .map((a) => (typeof a === 'string' ? a : JSON.stringify(a))) + .join(' '); + console.log(...args); + logStream.write(line + '\n'); +} + +function logError(...args: unknown[]) { + const line = args + .map((a) => (typeof a === 'string' ? a : JSON.stringify(a))) + .join(' '); + console.error(...args); + logStream.write('[ERROR] ' + line + '\n'); +} + +// --------------------------------------------------------------------------- +// Persistent state +// --------------------------------------------------------------------------- + +interface ResourceState { + resolved: Record; + /** Next offset for list pagination — resumes across runs */ + nextOffset: number; + /** Total records scanned so far */ + recordsScanned: number; + /** Total results reported by the API */ + totalResults?: number; +} + +type DiscoveryState = Record; + +function loadState(): DiscoveryState { + if (fs.existsSync(STATE_FILE)) { + return JSON.parse(fs.readFileSync(STATE_FILE, 'utf-8')) as DiscoveryState; + } + return {}; +} + +function saveState(ds: DiscoveryState) { + fs.writeFileSync(STATE_FILE, JSON.stringify(ds, null, 2)); +} + +function getResourceState(name: string): ResourceState { + const defaults: ResourceState = { + resolved: {}, + nextOffset: 0, + recordsScanned: 0, + }; + return { ...defaults, ...state[name] }; +} + +const state = loadState(); + +// --------------------------------------------------------------------------- +// HTTP client +// --------------------------------------------------------------------------- + +const apiKey = process.env.COMIC_VINE_API_KEY; +if (!apiKey) { + logError('Error: COMIC_VINE_API_KEY environment variable is required'); + process.exit(1); +} + +const http = new HttpClient({ + rateLimit: new InMemoryRateLimitStore({ + defaultConfig: { limit: 1, windowMs: 1000 }, + }), + throwOnRateLimit: false, + maxWaitTime: 10_000, + retry: { maxRetries: 3 }, + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, +}); + +// --------------------------------------------------------------------------- +// Probe targets +// --------------------------------------------------------------------------- + +interface ProbeTarget { + name: string; + /** List endpoint path, e.g. "issues" */ + listPath: string; + /** Detail path prefix for constructing suggested URLs, e.g. "issue/4000" */ + detailPath: string; + /** snake_case field names for the API field_list param */ + apiFields: string[]; + /** camelCase field names for reading the response */ + responseFields: string[]; + /** Max list requests per run (each returns up to 100 records) */ + maxPages: number; + /** Sort param, e.g. "id:asc" */ + sort?: string; +} + +interface FieldHit { + id: number; + value: unknown; +} + +interface ProbeResult { + name: string; + detailPath: string; + resolved: Map; + unresolved: string[]; + pagesUsed: number; + recordsScanned: number; + skipped?: string; +} + +const PROBE_TARGETS: ProbeTarget[] = [ + { + name: 'episode', + listPath: 'episodes', + detailPath: 'episode/4070', + apiFields: [ + 'first_appearance_characters', + 'first_appearance_concepts', + 'first_appearance_locations', + 'first_appearance_objects', + 'first_appearance_storyarcs', + 'first_appearance_teams', + ], + responseFields: [ + 'firstAppearanceCharacters', + 'firstAppearanceConcepts', + 'firstAppearanceLocations', + 'firstAppearanceObjects', + 'firstAppearanceStoryarcs', + 'firstAppearanceTeams', + ], + maxPages: 50, + sort: 'id:asc', + }, + { + name: 'issue', + listPath: 'issues', + detailPath: 'issue/4000', + apiFields: [ + 'first_appearance_characters', + 'first_appearance_concepts', + 'first_appearance_locations', + 'first_appearance_objects', + 'first_appearance_storyarcs', + 'first_appearance_teams', + ], + responseFields: [ + 'firstAppearanceCharacters', + 'firstAppearanceConcepts', + 'firstAppearanceLocations', + 'firstAppearanceObjects', + 'firstAppearanceStoryarcs', + 'firstAppearanceTeams', + ], + maxPages: 50, + // Oldest issues first — golden/silver age comics have first appearances + sort: 'id:asc', + }, + // movie.distributor removed — exhausted all 2,982 movies, always null. + // origin.character_set removed — handled as a type override. + // The API has exactly 10 origins (IDs 1-10) and character_set is null on all of them. + { + name: 'person', + listPath: 'people', + detailPath: 'person/4040', + apiFields: ['count_of_isssue_appearances', 'death', 'email', 'hometown'], + responseFields: ['countOfIsssueAppearances', 'death', 'email', 'hometown'], + maxPages: 50, + sort: 'id:asc', + }, + // video.saved_time, video.video_show removed — exhausted all 3,119 videos, always null. +]; + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +function previewValue(value: unknown): string { + const json = JSON.stringify(value); + return json.length > 120 ? json.slice(0, 120) + '...' : json; +} + +// --------------------------------------------------------------------------- +// List-based probing +// --------------------------------------------------------------------------- + +interface ListResponse { + numberOfTotalResults: number; + numberOfPageResults: number; + results: Array>; +} + +async function probeResource(target: ProbeTarget): Promise { + log(`\n--- Probing ${target.name} (${target.apiFields.length} fields) ---`); + + const resourceState = getResourceState(target.name); + state[target.name] = resourceState; + + // Pre-populate resolved fields from previous runs + const resolved = new Map(); + const unresolvedSet = new Set(target.responseFields); + for (let i = 0; i < target.apiFields.length; i++) { + const apiField = target.apiFields[i]!; + const prev = resourceState.resolved[apiField]; + if (prev) { + resolved.set(apiField, prev); + unresolvedSet.delete(target.responseFields[i]!); + log(` (cached) "${apiField}" already resolved at id=${prev.id}`); + } + } + + if (unresolvedSet.size === 0) { + log(` All fields already resolved from previous runs, skipping.`); + return { + name: target.name, + detailPath: target.detailPath, + resolved, + unresolved: [], + pagesUsed: 0, + recordsScanned: resourceState.recordsScanned, + }; + } + + // Check if we've already paged through all results + if ( + resourceState.totalResults !== undefined && + resourceState.nextOffset >= resourceState.totalResults + ) { + const reason = `All ${resourceState.totalResults} records scanned, no hits for remaining fields`; + log(` EXHAUSTED: ${reason}`); + const unresolved = target.apiFields.filter((_, i) => + unresolvedSet.has(target.responseFields[i]!), + ); + return { + name: target.name, + detailPath: target.detailPath, + resolved, + unresolved, + pagesUsed: 0, + recordsScanned: resourceState.recordsScanned, + skipped: reason, + }; + } + + log( + ` Resuming from offset ${resourceState.nextOffset}` + + (resourceState.totalResults !== undefined + ? ` of ${resourceState.totalResults} total` + : '') + + ` (${resourceState.recordsScanned} records scanned so far)`, + ); + + const fieldList = ['id', ...target.apiFields].join(','); + let pagesUsed = 0; + + while (pagesUsed < target.maxPages && unresolvedSet.size > 0) { + const params = new URLSearchParams({ + format: 'json', + api_key: apiKey, + field_list: fieldList, + limit: String(PAGE_SIZE), + offset: String(resourceState.nextOffset), + }); + if (target.sort) { + params.set('sort', target.sort); + } + + const url = `${BASE_URL}${target.listPath}?${params}`; + pagesUsed++; + + try { + const response = (await http.get(url)) as ListResponse; + resourceState.totalResults = response.numberOfTotalResults; + const pageCount = response.numberOfPageResults; + resourceState.nextOffset += pageCount; + resourceState.recordsScanned += pageCount; + + log( + ` Page ${pagesUsed}: offset ${resourceState.nextOffset - pageCount}, got ${pageCount} records`, + ); + + for (const record of response.results) { + for (let i = 0; i < target.responseFields.length; i++) { + const responseField = target.responseFields[i]!; + const apiField = target.apiFields[i]!; + if (!unresolvedSet.has(responseField)) continue; + + const value = record[responseField]; + if (value !== null && value !== undefined) { + const id = record['id'] as number; + resolved.set(apiField, { id, value }); + unresolvedSet.delete(responseField); + resourceState.resolved[apiField] = { id, value }; + log( + ` Found non-null "${apiField}" at id=${id}: ${previewValue(value)}`, + ); + } + } + } + + // Stop if we've reached the end of the list + if ( + pageCount < PAGE_SIZE || + resourceState.nextOffset >= response.numberOfTotalResults + ) { + log( + ` Reached end of list (${resourceState.nextOffset}/${response.numberOfTotalResults})`, + ); + break; + } + } catch (error) { + logError(` Page ${pagesUsed} failed:`, error); + break; + } + } + + // Persist state after each resource + saveState(state); + + const unresolved = target.apiFields.filter((_, i) => + unresolvedSet.has(target.responseFields[i]!), + ); + + return { + name: target.name, + detailPath: target.detailPath, + resolved, + unresolved, + pagesUsed, + recordsScanned: resourceState.recordsScanned, + }; +} + +// --------------------------------------------------------------------------- +// Main +// --------------------------------------------------------------------------- + +async function main() { + log('=== Comic Vine Unknown Field Discovery ===\n'); + log( + `Probing ${PROBE_TARGETS.length} resources via list API (${PAGE_SIZE} records/request).`, + ); + log(`Log file: ${LOG_FILE}`); + log(`State file: ${STATE_FILE}\n`); + + const results: ProbeResult[] = []; + + for (const target of PROBE_TARGETS) { + const result = await probeResource(target); + results.push(result); + } + + // Summary + log('\n\n========================================'); + log(' DISCOVERY SUMMARY'); + log('========================================'); + + const suggestedUrls: { resource: string; url: string }[] = []; + const allUnresolved: { resource: string; field: string }[] = []; + const exhaustedFields: { resource: string; field: string }[] = []; + + for (const result of results) { + log( + `\n${result.name} (${result.pagesUsed} pages, ${result.recordsScanned} records scanned):`, + ); + + if (result.skipped) { + log(` SKIPPED: ${result.skipped}`); + } + + if (result.resolved.size > 0) { + log(' Resolved fields:'); + for (const [field, hit] of result.resolved) { + log(` - ${field}: found at id=${hit.id}`); + log(` Preview: ${previewValue(hit.value)}`); + } + + const hitIds = new Set(); + for (const hit of result.resolved.values()) { + hitIds.add(hit.id); + } + for (const id of hitIds) { + suggestedUrls.push({ + resource: result.name, + url: `${BASE_URL}${result.detailPath}-${id}`, + }); + } + } + + if (result.unresolved.length > 0) { + log(' Unresolved fields:'); + for (const field of result.unresolved) { + log(` - ${field}`); + } + for (const field of result.unresolved) { + if (result.skipped) { + exhaustedFields.push({ resource: result.name, field }); + } else { + allUnresolved.push({ resource: result.name, field }); + } + } + } + } + + if (suggestedUrls.length > 0) { + log('\n\n--- Suggested URLs for samples/config.json ---\n'); + for (const { resource, url } of suggestedUrls) { + log(` ${resource}: "${url}"`); + } + } + + if (exhaustedFields.length > 0) { + log('\n\n--- Exhausted: handle as type overrides ---\n'); + for (const { resource, field } of exhaustedFields) { + log(` ${resource}.${field}`); + } + } + + if (allUnresolved.length > 0) { + log(`\n\n--- Still searching (${allUnresolved.length}) ---\n`); + for (const { resource, field } of allUnresolved) { + log(` ${resource}.${field}`); + } + } + + if (allUnresolved.length === 0 && exhaustedFields.length === 0) { + log('\n\nAll target fields resolved!'); + } + + logStream.end(); +} + +main().catch((error) => { + logError('Fatal error:', error); + logStream.end(); + process.exit(1); +}); diff --git a/scripts/generate-sdk.ts b/scripts/generate-sdk.ts new file mode 100644 index 0000000..ebebf10 --- /dev/null +++ b/scripts/generate-sdk.ts @@ -0,0 +1,329 @@ +import fs from 'node:fs'; +import path from 'node:path'; +import { + extractCommentsFromHtml, + applyComments, +} from './generate-sdk/comment-injector.js'; +import { inferTypeGraph } from './generate-sdk/sample-inferrer.js'; +import { emitTypeScript } from './generate-sdk/type-emitter.js'; +import { applyTypeOverrides } from './generate-sdk/type-overrides.js'; +import { + parseCommonTypesSource, + extractCommonTypes, + applyCommonTypesToGraph, +} from './generate-sdk/common-types-generator.js'; +import { generateResourceClass } from './generate-sdk/resource-generator.js'; +import { generateResourceTest } from './generate-sdk/test-generator.js'; +import { generateMockData } from './generate-sdk/mock-data-generator.js'; +import { + generateResourceIndex, + generateTypesIndex, + generateResourceList, + generateResourceType, + generateResourceMap, +} from './generate-sdk/barrel-generator.js'; +import { isListResource } from './generate-sdk/types.js'; +import { pascalCase, kebabCase, snakeCase } from 'change-case'; +import pluralize from 'pluralize'; + +const ROOT = path.resolve(import.meta.dirname, '..'); +const SAMPLES_DIR = path.join(ROOT, 'samples'); +const SRC_DIR = path.join(ROOT, 'src'); + +// Resource type ID mapping (matches the existing ResourceType enum) +const RESOURCE_TYPE_IDS: Record = { + Character: 4005, + Concept: 4015, + Episode: 4070, + Issue: 4000, + Location: 4020, + Movie: 4025, + Origin: 4030, + Person: 4040, + Power: 4035, + Promo: 1700, + Publisher: 4010, + Series: 4075, + StoryArc: 4045, + Team: 4060, + Thing: 4055, + Video: 2300, + // VideoCategory and VideoType share the same resource type ID in the + // Comic Vine API. The generated enum uses an eslint-disable comment + // to allow the duplicate values. + VideoCategory: 2320, + VideoType: 2320, + Volume: 4050, +}; + +// Overrides for resources whose API names don't follow the standard +// snakeCase / pluralize(snakeCase) pattern. +const RESOURCE_API_NAME_OVERRIDES: Record< + string, + { detailName?: string; listName?: string } +> = { + Thing: { detailName: 'object', listName: 'objects' }, + Series: { listName: 'series_list' }, +}; + +function readJson(filePath: string): T { + return JSON.parse(fs.readFileSync(filePath, 'utf-8')); +} + +function writeFile(filePath: string, content: string): void { + const dir = path.dirname(filePath); + fs.mkdirSync(dir, { recursive: true }); + fs.writeFileSync(filePath, content, 'utf-8'); +} + +function writeJson(filePath: string, data: unknown): void { + writeFile(filePath, JSON.stringify(data, null, 2) + '\n'); +} + +/** Strip the `-details` or `-list-item` suffix to get the base resource name (e.g. `character`). */ +function extractResourceName(folder: string): string { + return folder.replace(/-(details|list-item)$/, ''); +} + +/** Strip only the trailing `-item` to get the mock file stem (e.g. `character-details` or `character-list`). */ +function extractMockName(folder: string): string { + return folder.replace(/-item$/, ''); +} + +function main() { + // ─── Validate required inputs ────────────────────────────────────── + const docPath = path.join(SAMPLES_DIR, 'documentation.html'); + if (!fs.existsSync(docPath)) { + throw new Error( + `Missing required input: ${docPath}\nRun "pnpm samples:fetch" to download API samples first.`, + ); + } + + const apiDataDir = path.join(SAMPLES_DIR, 'api-data'); + if (!fs.existsSync(apiDataDir) || fs.readdirSync(apiDataDir).length === 0) { + throw new Error( + `Missing or empty required input: ${apiDataDir}\nRun "pnpm samples:fetch" to download API samples first.`, + ); + } + + // ─── Step 0: Generate code comments from documentation HTML ───────── + console.log('\n--- Step 0: Generating code comments from documentation ---'); + const htmlContent = fs.readFileSync(docPath, 'utf-8'); + const comments = extractCommentsFromHtml(htmlContent); + writeJson(path.join(SAMPLES_DIR, 'code-comments', 'comments.json'), comments); + console.log(` Extracted comments for ${comments.length} resources`); + + // ─── Read all sample data and flatten results in a single pass ───── + const sampleDataByResource = new Map[]>(); + const flatSamplesByResource = new Map[]>(); + for (const resourceFolder of fs.readdirSync(apiDataDir)) { + const resourceFolderPath = path.join(apiDataDir, resourceFolder); + const sampleFiles = fs.readdirSync(resourceFolderPath); + const data = sampleFiles.map((file) => + readJson>(path.join(resourceFolderPath, file)), + ); + sampleDataByResource.set(resourceFolder, data); + + const flatResults: Record[] = []; + for (const d of data) { + const results = d.results; + if (Array.isArray(results)) { + flatResults.push(...(results as Record[])); + } else { + flatResults.push(results as Record); + } + } + flatSamplesByResource.set(resourceFolder, flatResults); + } + console.log(`Found ${sampleDataByResource.size} sample data folders`); + + // ─── Parse common-types.ts to derive matching configs ─────────────── + const commonTypesSource = fs.readFileSync( + path.join(SRC_DIR, 'resources', 'common-types.ts'), + 'utf-8', + ); + const { sampleBased, graphBased } = parseCommonTypesSource(commonTypesSource); + + // ─── Step 1: Extract common types across all samples ─────────────── + console.log('\n--- Step 1: Extracting common types ---'); + + const commonTypes = extractCommonTypes(flatSamplesByResource, sampleBased); + console.log(` Found ${commonTypes.length} common type mappings`); + + // ─── Step 2: Generate TypeScript type files ──────────────────────── + console.log('\n--- Step 2: Generating TypeScript types ---'); + const classList: string[] = []; + + for (const [resourceFolder, flatSamples] of flatSamplesByResource) { + console.log(` Generating types for ${resourceFolder}`); + + // Infer → apply comments → apply common types → apply overrides → emit + const graph = inferTypeGraph(resourceFolder, flatSamples); + applyComments(graph, comments); + applyCommonTypesToGraph(graph, commonTypes, resourceFolder, graphBased); + applyTypeOverrides(graph); + const types = emitTypeScript(graph); + + const resourceName = extractResourceName(resourceFolder); + const kebabResourceName = kebabCase(resourceName); + + // Write type file + const typesDir = path.join( + SRC_DIR, + 'resources', + kebabResourceName, + 'types', + ); + writeFile( + path.join(typesDir, `${kebabCase(resourceFolder)}.ts`), + types.trim() + '\n', + ); + + // For details resources, also generate resource class, test, and barrel files + if (!isListResource(resourceFolder)) { + const pascalName = pascalCase(resourceName); + classList.push(pascalName); + + // Resource class + writeFile( + path.join( + SRC_DIR, + 'resources', + kebabResourceName, + `${kebabResourceName}.ts`, + ), + generateResourceClass(pascalName), + ); + + // Resource test + writeFile( + path.join( + SRC_DIR, + 'resources', + kebabResourceName, + `${kebabResourceName}.test.ts`, + ), + generateResourceTest(pascalName, kebabResourceName), + ); + + // Resource index barrel + writeFile( + path.join(SRC_DIR, 'resources', kebabResourceName, 'index.ts'), + generateResourceIndex(kebabResourceName), + ); + + // Types index barrel + writeFile( + path.join(SRC_DIR, 'resources', kebabResourceName, 'types', 'index.ts'), + generateTypesIndex(kebabResourceName), + ); + } + } + + // ─── Step 3: Generate mock data ──────────────────────────────────── + console.log('\n--- Step 3: Generating mock data ---'); + for (const [resourceFolder, data] of sampleDataByResource) { + const resourceName = extractMockName(resourceFolder); + const kebabResourceName = kebabCase(resourceName); + + // Use the first sample file for mock data + const apiResponse = data[0]; + + console.log(` Generating mock data for ${kebabResourceName}`); + const mockOutput = generateMockData(resourceFolder, apiResponse); + + // Write API response mock + writeJson( + path.join( + SRC_DIR, + '__mocks__', + 'api-response', + `${kebabResourceName}.json`, + ), + mockOutput.apiResponse, + ); + + // Write expected response mock + writeJson( + path.join( + SRC_DIR, + '__mocks__', + 'expected-responses', + `${kebabResourceName}.json`, + ), + mockOutput.expectedResponse, + ); + + // Write paginated mock data if present + if (mockOutput.paginatedData) { + for (const pageData of mockOutput.paginatedData) { + writeJson( + path.join( + SRC_DIR, + '__mocks__', + 'api-response', + `${kebabResourceName}-auto-pagination-${pageData.fileSuffix}.json`, + ), + pageData.apiResponse, + ); + writeJson( + path.join( + SRC_DIR, + '__mocks__', + 'expected-responses', + `${kebabResourceName}-auto-pagination-${pageData.fileSuffix}.json`, + ), + pageData.expectedResponse, + ); + } + } + } + + // ─── Step 4: Generate barrel and enum files ──────────────────────── + console.log('\n--- Step 4: Generating barrel files ---'); + + // Sort resources alphabetically by PascalCase name for consistent ordering + classList.sort(); + + // resource-list.ts + writeFile( + path.join(SRC_DIR, 'resources', 'resource-list.ts'), + generateResourceList(classList), + ); + + // resource-type.ts + const resourceTypeMap = new Map(); + for (const name of classList) { + const id = RESOURCE_TYPE_IDS[name]; + if (id !== undefined) { + resourceTypeMap.set(name, id); + } else { + console.warn(` Warning: No resource type ID found for ${name}`); + } + } + writeFile( + path.join(SRC_DIR, 'resources', 'resource-type.ts'), + generateResourceType(resourceTypeMap), + ); + + // resource-map.ts + const resourceMapEntries = classList.map((name) => { + const overrides = RESOURCE_API_NAME_OVERRIDES[name]; + const defaultDetail = snakeCase(name); + const defaultList = pluralize(defaultDetail); + return { + enumName: name, + detailName: overrides?.detailName ?? defaultDetail, + listName: overrides?.listName ?? defaultList, + }; + }); + writeFile( + path.join(SRC_DIR, 'resources', 'resource-map.ts'), + generateResourceMap(resourceMapEntries), + ); + + console.log(`\nDone! Generated files for ${classList.length} resources:`); + console.log(classList.map((name) => ` - ${name}`).join('\n')); +} + +main(); diff --git a/scripts/generate-sdk/barrel-generator.ts b/scripts/generate-sdk/barrel-generator.ts new file mode 100644 index 0000000..6bc642b --- /dev/null +++ b/scripts/generate-sdk/barrel-generator.ts @@ -0,0 +1,86 @@ +import { kebabCase } from 'change-case'; + +/** + * Generate the resource index barrel file. + * Exports the resource class from its file. + */ +export function generateResourceIndex(kebabName: string): string { + return `export * from './${kebabName}.js';\n`; +} + +/** + * Generate the types index barrel file. + * Exports both details and list-item types. + */ +export function generateTypesIndex(kebabName: string): string { + return `export * from './${kebabName}-details.js'; +export * from './${kebabName}-list-item.js'; +`; +} + +/** + * Generate the resource-list barrel file that exports all resource classes. + */ +export function generateResourceList(resourceNames: string[]): string { + return ( + resourceNames + .map((name) => { + const kebab = kebabCase(name); + return `export * from './${kebab}/index.js';`; + }) + .join('\n') + '\n' + ); +} + +export interface ResourceMapEntry { + enumName: string; + detailName: string; + listName: string; +} + +/** + * Generate the resource-map.ts file with the ResourceType → API name mapping. + */ +export function generateResourceMap(entries: ResourceMapEntry[]): string { + const mapEntries = entries + .map( + (e) => + ` [ResourceType.${e.enumName}, { detailName: '${e.detailName}', listName: '${e.listName}' }],`, + ) + .join('\n'); + + return `import { ResourceType } from './resource-type.js'; + +interface Resource { + detailName: string; + listName: string; +} + +const resourceMap = new Map([ +${mapEntries} +]); + +export const getResource = (resourceType: ResourceType) => { + const resource = resourceMap.get(resourceType); + if (!resource) { + throw new Error(\`Resource type (\${resourceType}) not found\`); + } + return resource; +}; +`; +} + +/** + * Generate the ResourceType enum with resource type IDs. + */ +export function generateResourceType(resources: Map): string { + const entries = Array.from(resources.entries()) + .map(([name, id]) => ` ${name} = ${id},`) + .join('\n'); + + return `/* eslint-disable @typescript-eslint/no-duplicate-enum-values */ +export enum ResourceType { +${entries} +} +`; +} diff --git a/scripts/generate-sdk/comment-injector.ts b/scripts/generate-sdk/comment-injector.ts new file mode 100644 index 0000000..ebb8f30 --- /dev/null +++ b/scripts/generate-sdk/comment-injector.ts @@ -0,0 +1,103 @@ +import * as cheerio from 'cheerio'; +import pluralize from 'pluralize'; +import { camelCase, snakeCase } from 'change-case'; +import type { CodeComment, InferredTypeGraph } from './types.js'; + +/** The Comic Vine API calls the "Thing" resource "object"; remap for the SDK. */ +const mapApiNameToSdkName = (input: string): string => { + return input.replace('object', 'thing'); +}; + +/** + * Parse the Comic Vine API documentation HTML and extract property descriptions + * for each resource type. + */ +export function extractCommentsFromHtml(htmlContent: string): CodeComment[] { + const $ = cheerio.load(htmlContent); + const $resourceTables = $('h3 + table > tbody'); + + const resourceMetaCollection: CodeComment[] = []; + $resourceTables.each((_i, table) => { + let title = ''; + const fields: CodeComment['fields'] = []; + let currentSection = ''; + + $(table) + .children() + .each((i, tableRow) => { + const $tableRow = $(tableRow); + + // Extract the title from the first row + const isTitleRow = i === 0; + if (isTitleRow) { + const rawTitle = mapApiNameToSdkName( + camelCase($tableRow.first().first().text().replace('URL: /', '')), + ); + title = pluralize.isSingular(rawTitle) + ? `${rawTitle}Details` + : `${pluralize.singular(rawTitle)}ListItem`; + return; + } + + // Comic Vine docs: resource detail tables have 1-column header rows, + // resource list tables have 3-column header rows + const resourceHeaderRow = 1; + const resourceListHeaderRow = 3; + const isNewSection = [ + resourceHeaderRow, + resourceListHeaderRow, + ].includes($tableRow.children().length); + if (isNewSection) { + currentSection = camelCase($tableRow.children().first().text()); + return; + } + + // Only collect property descriptions from the "fields" section, + // not from "filters" (which describe query parameters) + if (currentSection !== 'fields') return; + + const propertyName = $tableRow + .children() + .first() + .text() + .replace('_credit', ''); + const comment = $tableRow.find(':nth-child(2)').text(); + fields.push({ + propertyName, + comment: mapApiNameToSdkName(comment), + }); + }); + + resourceMetaCollection.push({ title, fields }); + }); + + return resourceMetaCollection; +} + +/** + * Apply property descriptions from comments to an InferredTypeGraph. + * Sets the `description` field on matching PropertyInfo entries. + */ +export function applyComments( + graph: InferredTypeGraph, + comments: CodeComment[], +): void { + // Match the root type against comments + const rootComments = comments.find( + (x) => x.title === camelCase(graph.rootType.name), + ); + if (rootComments) { + for (const prop of graph.rootType.properties) { + // The HTML docs use e.g. "issue_credits" which is stored as "issues" + // after _credit stripping (line 62). Apply the same normalisation to + // the API property name so they match. + const normalised = snakeCase(prop.name).replace('_credit', ''); + const found = rootComments.fields?.find( + (x) => x.propertyName === normalised, + ); + if (found) { + prop.description = found.comment; + } + } + } +} diff --git a/scripts/generate-sdk/common-types-generator.ts b/scripts/generate-sdk/common-types-generator.ts new file mode 100644 index 0000000..4ab7c54 --- /dev/null +++ b/scripts/generate-sdk/common-types-generator.ts @@ -0,0 +1,275 @@ +import { camelCase } from 'change-case'; +import { isObject } from '../../src/utils/is-object.js'; +import type { + CommonTypeMapping, + CommonTypeConversion, + CommonTypeShape, + InferredTypeGraph, + InferredType, +} from './types.js'; + +const isObjectOrNonEmptyArray = ( + maybeObject: unknown, +): maybeObject is Record | unknown[] => { + return ( + isObject(maybeObject) || + (Array.isArray(maybeObject) && maybeObject.length > 0) + ); +}; + +// Types matched against the inferred type graph (exact property set match) +// rather than raw sample JSON (subset match). These appear as nested type +// definitions rather than direct property values in samples. +const GRAPH_MATCHED_TYPES = new Set(['Image', 'Death']); + +interface ParsedInterface { + name: string; + extends?: string; + ownProperties: string[]; +} + +/** + * Parse common-types.ts source and split interfaces into sample-based + * and graph-based matching groups. Property lists include inherited + * properties. Sample-based types are sorted by property count (ascending) + * so that exact matches are preferred over superset matches. + */ +export function parseCommonTypesSource(source: string): { + sampleBased: CommonTypeShape[]; + graphBased: CommonTypeShape[]; +} { + const interfaceRegex = + /export\s+interface\s+(\w+)(?:\s+extends\s+(\w+))?\s*\{([^}]+)\}/g; + const parsed = new Map(); + + let match; + while ((match = interfaceRegex.exec(source)) !== null) { + const [, name, extendsClause, body] = match; + const propRegex = /^\s*(\w+)\s*[?]?\s*:/gm; + const ownProperties: string[] = []; + let propMatch; + while ((propMatch = propRegex.exec(body)) !== null) { + ownProperties.push(propMatch[1]); + } + parsed.set(name, { name, extends: extendsClause, ownProperties }); + } + + function resolveProps(name: string, visited = new Set()): string[] { + if (visited.has(name)) return []; + visited.add(name); + const iface = parsed.get(name); + if (!iface) return []; + const inherited = iface.extends ? resolveProps(iface.extends, visited) : []; + return [...inherited, ...iface.ownProperties]; + } + + const all = Array.from(parsed.keys()).map((name) => ({ + typeName: name, + propList: resolveProps(name), + })); + + return { + sampleBased: all + .filter((t) => !GRAPH_MATCHED_TYPES.has(t.typeName)) + .sort((a, b) => a.propList.length - b.propList.length), + graphBased: all.filter((t) => GRAPH_MATCHED_TYPES.has(t.typeName)), + }; +} + +function getCommonTypeConversion( + key: string, + maybeObject: unknown, + sampleTypes: CommonTypeShape[], +): CommonTypeConversion | undefined { + if (!isObjectOrNonEmptyArray(maybeObject)) { + return; + } + + const isCollection = Array.isArray(maybeObject); + const objectKeys = Object.keys( + isCollection + ? (maybeObject[0] as Record) + : (maybeObject as Record), + ); + + for (const item of sampleTypes) { + if (objectKeys.every((prop) => item.propList.includes(camelCase(prop)))) { + return { + property: camelCase(key), + newType: item.typeName, + isArray: isCollection, + }; + } + } +} + +function extractFromSample( + sample: Record, + commonTypesMap: Map, + resourceFolder: string, + sampleTypes: CommonTypeShape[], +): void { + for (const key of Object.keys(sample)) { + const conversion = getCommonTypeConversion(key, sample[key], sampleTypes); + if (!conversion) continue; + + const existing = commonTypesMap.get(resourceFolder); + if (!existing) { + commonTypesMap.set(resourceFolder, [conversion]); + continue; + } + + const isDuplicate = existing.some( + (c) => + c.property === conversion.property && c.newType === conversion.newType, + ); + if (!isDuplicate) { + existing.push(conversion); + } + } +} + +/** + * Extract common type mappings from sample API responses. + * Iterates through all samples and identifies properties whose shapes + * match known common types (ApiResource, SiteResource, Image, etc.). + */ +export function extractCommonTypes( + samples: Map[]>, + sampleTypes: CommonTypeShape[], +): CommonTypeMapping[] { + const commonTypesMap = new Map(); + + for (const [resourceFolder, sampleList] of samples) { + for (const sample of sampleList) { + extractFromSample(sample, commonTypesMap, resourceFolder, sampleTypes); + } + } + + return Array.from(commonTypesMap, ([resource, propertyConversions]) => ({ + resource, + propertyConversions, + })); +} + +/** + * Check whether a nested type name is still referenced by any property in + * the root type or other nested types. + */ +function isTypeReferenced(typeName: string, graph: InferredTypeGraph): boolean { + function referencesType(type: InferredType): boolean { + if (type.kind === 'object' && type.typeName === typeName) return true; + if (type.kind === 'array') return referencesType(type.elementType); + if (type.kind === 'union') return type.members.some(referencesType); + return false; + } + + for (const prop of graph.rootType.properties) { + if (referencesType(prop.type)) return true; + } + for (const nested of graph.nestedTypes) { + if (nested.name === typeName) continue; + for (const prop of nested.properties) { + if (referencesType(prop.type)) return true; + } + } + return false; +} + +/** + * Apply common type replacements to an InferredTypeGraph. + * + * 1. Replaces property types whose sample-based conversion matches a common type + * 2. Replaces nested type definitions that match graph-based common type shapes + * 3. Removes nested type definitions that were fully replaced + */ +export function applyCommonTypesToGraph( + graph: InferredTypeGraph, + allCommonTypes: CommonTypeMapping[], + resourceFolder: string, + graphTypes: CommonTypeShape[], +): void { + const mapping = allCommonTypes.find((ct) => ct.resource === resourceFolder); + const conversions = mapping?.propertyConversions ?? []; + + // Apply sample-based common type conversions + for (const conversion of conversions) { + for (const prop of graph.rootType.properties) { + if (prop.name !== conversion.property) continue; + + const commonType: InferredType = { + kind: 'commonType', + typeName: conversion.newType, + }; + + if (conversion.isArray) { + prop.type = { kind: 'array', elementType: commonType }; + } else { + // Preserve nullability + if (prop.type.kind === 'union') { + prop.type = { + kind: 'union', + members: prop.type.members.map((m) => + m.kind === 'object' ? commonType : m, + ), + }; + } else { + prop.type = commonType; + } + } + } + } + + // Apply graph-based common type matching + const replacedNestedTypes = new Set(); + + for (const config of graphTypes) { + for (const nested of graph.nestedTypes) { + const nestedPropNames = nested.properties.map((p) => p.name).sort(); + const configPropNames = [...config.propList].sort(); + + if ( + nestedPropNames.length === configPropNames.length && + nestedPropNames.every((p, i) => p === configPropNames[i]) + ) { + // Replace all references to this nested type with the common type + replaceTypeReferences(graph, nested.name, config.typeName); + replacedNestedTypes.add(nested.name); + } + } + } + + // Remove all nested types that are no longer referenced anywhere + graph.nestedTypes = graph.nestedTypes.filter((t) => { + if (replacedNestedTypes.has(t.name)) return false; + return isTypeReferenced(t.name, graph); + }); +} + +function replaceTypeReferences( + graph: InferredTypeGraph, + oldTypeName: string, + newTypeName: string, +): void { + const replace = (type: InferredType): InferredType => { + if (type.kind === 'object' && type.typeName === oldTypeName) { + return { kind: 'commonType', typeName: newTypeName }; + } + if (type.kind === 'array') { + return { kind: 'array', elementType: replace(type.elementType) }; + } + if (type.kind === 'union') { + return { kind: 'union', members: type.members.map(replace) }; + } + return type; + }; + + for (const prop of graph.rootType.properties) { + prop.type = replace(prop.type); + } + for (const nested of graph.nestedTypes) { + for (const prop of nested.properties) { + prop.type = replace(prop.type); + } + } +} diff --git a/scripts/generate-sdk/enum-detector.ts b/scripts/generate-sdk/enum-detector.ts new file mode 100644 index 0000000..23333f5 --- /dev/null +++ b/scripts/generate-sdk/enum-detector.ts @@ -0,0 +1,201 @@ +import { camelCase, pascalCase } from 'change-case'; +import { buildUnion } from './type-utils.js'; +import type { + InferredType, + TypeDefinition, + EnumDefinition, + InferredTypeGraph, +} from './types.js'; + +const ENUM_MAX_UNIQUE_VALUES = 10; + +/** + * Check if a string value is a valid enum candidate (short, no newlines, + * no URLs, no HTML, no single quotes that would break enum syntax). + */ +function isValidEnumValue(value: string): boolean { + if (value.includes('\n')) return false; + if (value.includes("'")) return false; + if (value.startsWith('http://') || value.startsWith('https://')) return false; + if (value.includes('<') && value.includes('>')) return false; + if (value.length > 100) return false; + // Exclude pure numeric strings (e.g., years, episode numbers, ratings) + if (/^\d+(\.\d+)?$/.test(value)) return false; + return true; +} + +/** + * Detect enum patterns in a list resource and replace string types with enums. + * + * Only applies to list resources (100+ samples) where string properties have + * a bounded set of short, clean values. + */ +export function detectEnums( + graph: InferredTypeGraph, + flatSamples: Record[], +): void { + if (flatSamples.length < 10) return; + + // Collect unique string values per camelCase property name (top-level only) + const stringValues = new Map>(); + const totalNonNull = new Map(); + + for (const sample of flatSamples) { + for (const [rawKey, value] of Object.entries(sample)) { + const key = camelCase(rawKey); + if (typeof value === 'string') { + const set = stringValues.get(key) ?? new Set(); + set.add(value); + stringValues.set(key, set); + totalNonNull.set(key, (totalNonNull.get(key) ?? 0) + 1); + } + } + } + + // Note: nested object properties are intentionally NOT scanned for enums. + // Nested types that match common types (Image, Death) get replaced, which + // would orphan any enums detected from their properties. + + // Build a set of properties already typed as Date (skip for enum detection) + const dateTypedProps = new Set(); + for (const prop of graph.rootType.properties) { + if ( + (prop.type.kind === 'primitive' && prop.type.type === 'Date') || + (prop.type.kind === 'union' && + prop.type.members.some( + (m) => m.kind === 'primitive' && m.type === 'Date', + )) + ) { + dateTypedProps.add(prop.name); + } + } + + // Identify enum candidates + const enumCandidates = new Map>(); + for (const [key, values] of stringValues) { + if (values.size > ENUM_MAX_UNIQUE_VALUES) continue; + // All values must be valid enum values + if (![...values].every(isValidEnumValue)) continue; + // Skip properties already typed as Date + if (dateTypedProps.has(key)) continue; + // The property must have at least some non-null occurrences + // and the value variety must be much smaller than total occurrences + const nonNullCount = totalNonNull.get(key) ?? 0; + if (nonNullCount > 0) { + // Enum if: unique values <= 25% of total occurrences, OR at most 3 unique + // values. The 25% ratio prevents free-text fields (high cardinality) from + // becoming enums. The <=3 escape allows small genuine enums (e.g. "Male", + // "Female", "Other") even when samples are few. + if (values.size > nonNullCount * 0.25 && values.size > 3) continue; + } + enumCandidates.set(key, values); + } + + if (enumCandidates.size === 0) return; + + // Group candidates that share identical value sets + const enumGroups: Array<{ + name: string; + propNames: string[]; + values: Set; + }> = []; + + const sortedCandidates = [...enumCandidates.entries()].sort(([a], [b]) => + a.localeCompare(b), + ); + + for (const [key, values] of sortedCandidates) { + let merged = false; + for (const group of enumGroups) { + // Only merge when value sets are identical — overlapping values + // across semantically different properties (e.g. crew vs hosts) + // should not be combined into one enum. + const identical = + values.size === group.values.size && + [...values].every((v) => group.values.has(v)); + if (identical) { + group.propNames.push(key); + merged = true; + break; + } + } + + if (!merged) { + enumGroups.push({ + name: pascalCase(key), + propNames: [key], + values, + }); + } + } + + // Generate enum definitions and update property types + for (const group of enumGroups) { + let updated = false; + + for (const propName of group.propNames) { + if (updatePropertyToEnum(graph.rootType, propName, group.name)) + updated = true; + } + + // Only add the enum definition if at least one property was updated + if (updated) { + const enumDef = buildEnumDefinition(group.name, group.values); + graph.enums.push(enumDef); + } + } +} + +function updatePropertyToEnum( + typeDef: TypeDefinition, + propName: string, + enumName: string, +): boolean { + let updated = false; + for (const prop of typeDef.properties) { + if (prop.name !== propName) continue; + + const enumType: InferredType = { kind: 'enum', typeName: enumName }; + + if (prop.type.kind === 'union') { + const hasString = prop.type.members.some( + (m) => m.kind === 'primitive' && m.type === 'string', + ); + if (!hasString) continue; + + const newMembers = prop.type.members.map((m) => + m.kind === 'primitive' && m.type === 'string' ? enumType : m, + ); + // Reorder: enum before null (named types come first) + prop.type = buildUnion(newMembers); + updated = true; + } else if (prop.type.kind === 'primitive' && prop.type.type === 'string') { + prop.type = enumType; + updated = true; + } + } + return updated; +} + +function buildEnumDefinition( + name: string, + values: Set, +): EnumDefinition { + const sortedValues = [...values].sort(); + const members: EnumDefinition['members'] = []; + const usedKeys = new Map(); + + for (const value of sortedValues) { + let key = pascalCase(value); + if (key === '') key = 'Empty'; + + if (usedKeys.has(key)) { + // Disambiguate by prefixing with enum name + key = `${name}${key}`; + } + usedKeys.set(key, value); + members.push({ key, value }); + } + + return { name, members }; +} diff --git a/scripts/generate-sdk/mock-data-generator.ts b/scripts/generate-sdk/mock-data-generator.ts new file mode 100644 index 0000000..5ca5950 --- /dev/null +++ b/scripts/generate-sdk/mock-data-generator.ts @@ -0,0 +1,116 @@ +import { convertSnakeCaseToCamelCase } from '../../src/utils/case-converter.js'; + +export interface MockDataOutput { + apiResponse: Record; + expectedResponse: Record; + paginatedData?: Array<{ + fileSuffix: string; + apiResponse: Record; + expectedResponse: Record; + }>; +} + +function generatePagedData({ + apiResponseSnakeCase, + apiResponseCamelCase, + limit = 100, + offset = 0, + numberOfTotalResults, + fileSuffix, +}: { + apiResponseSnakeCase: Record; + apiResponseCamelCase: Record; + limit?: number; + offset?: number; + numberOfTotalResults: number; + fileSuffix: string; +}): { + fileSuffix: string; + apiResponse: Record; + expectedResponse: Record; +} { + const numberOfPages = Math.ceil((numberOfTotalResults - offset) / limit); + const startPage = Math.floor(offset / limit) + 1; + + const snakeResults = apiResponseSnakeCase.results as unknown[]; + const camelResults = apiResponseCamelCase.results as unknown[]; + + const apiResponse: Record = {}; + const expectedResponse: Record = {}; + + for (let i = 0; i < numberOfPages; i++) { + const page = startPage + i; + const currentOffset = (page - 1) * limit; + + apiResponse[`page${page}`] = { + limit, + number_of_page_results: limit, + number_of_total_results: numberOfTotalResults, + offset: currentOffset, + results: snakeResults.slice(currentOffset, currentOffset + limit), + }; + + expectedResponse[`page${page}`] = { + limit, + numberOfPageResults: limit, + numberOfTotalResults, + offset: currentOffset, + data: camelResults.slice(currentOffset, currentOffset + limit), + }; + } + + return { fileSuffix, apiResponse, expectedResponse }; +} + +/** + * Generate mock data files from a sample API response. + * Returns the api-response JSON (snake_case) and the expected-response JSON (camelCase). + */ +export function generateMockData( + resourceFolder: string, + apiResponseSnakeCase: Record, +): MockDataOutput { + const apiResponseCamelCase = + convertSnakeCaseToCamelCase>(apiResponseSnakeCase); + + const isListResource = Array.isArray(apiResponseCamelCase.results); + + let expectedResponse: Record; + if (isListResource) { + expectedResponse = { + limit: apiResponseCamelCase.limit, + numberOfPageResults: apiResponseCamelCase.numberOfPageResults, + numberOfTotalResults: apiResponseCamelCase.numberOfTotalResults, + offset: apiResponseCamelCase.offset, + data: apiResponseCamelCase.results, + }; + } else { + expectedResponse = apiResponseCamelCase.results as Record; + } + + const result: MockDataOutput = { + apiResponse: apiResponseSnakeCase, + expectedResponse, + }; + + // Generate pagination mock data for issue list resources + if (isListResource && resourceFolder.toLowerCase().includes('issue')) { + result.paginatedData = [ + generatePagedData({ + apiResponseSnakeCase, + apiResponseCamelCase, + numberOfTotalResults: 300, + fileSuffix: 'no-limit-or-offset', + }), + generatePagedData({ + apiResponseSnakeCase, + apiResponseCamelCase, + limit: 50, + numberOfTotalResults: 300, + fileSuffix: 'limit-50', + }), + ]; + } + + return result; +} diff --git a/scripts/generate-sdk/resource-generator.ts b/scripts/generate-sdk/resource-generator.ts new file mode 100644 index 0000000..759f1ed --- /dev/null +++ b/scripts/generate-sdk/resource-generator.ts @@ -0,0 +1,17 @@ +/** + * Generate the source for a resource class file. + * Template matches the current pattern in src/resources/character/character.ts. + */ +export function generateResourceClass(pascalName: string): string { + return `import { BaseResource } from '../base-resource.js'; +import { ResourceType } from '../resource-type.js'; +import { ${pascalName}Details, ${pascalName}ListItem } from './types/index.js'; + +export class ${pascalName} extends BaseResource< + ${pascalName}Details, + ${pascalName}ListItem +> { + protected resourceType: ResourceType = ResourceType.${pascalName}; +} +`; +} diff --git a/scripts/generate-sdk/sample-inferrer.ts b/scripts/generate-sdk/sample-inferrer.ts new file mode 100644 index 0000000..06c503b --- /dev/null +++ b/scripts/generate-sdk/sample-inferrer.ts @@ -0,0 +1,302 @@ +import { camelCase, pascalCase } from 'change-case'; +import { isObject } from '../../src/utils/is-object.js'; +import { addUniqueType, buildUnion } from './type-utils.js'; +import { detectEnums } from './enum-detector.js'; +import { + isListResource, + type InferredType, + type PropertyInfo, + type TypeDefinition, + type EnumDefinition, + type InferredTypeGraph, +} from './types.js'; + +const DATE_PATTERN = /^\d{4}-\d{2}-\d{2}( \d{2}:\d{2}:\d{2}(\.\d+)?)?$/; + +function isDateString(value: string): boolean { + return DATE_PATTERN.test(value); +} + +/** + * Check whether ALL non-null string values match the date pattern. + * Returns false if any non-null string does NOT match. + */ +function allStringsAreDates(values: unknown[]): boolean { + let hasString = false; + for (const v of values) { + if (typeof v === 'string') { + hasString = true; + if (!isDateString(v)) return false; + } + } + return hasString; +} + +/** + * Determine whether a nested object should be represented as an index + * signature (`{ [key: string]: null | string }`) rather than a named type. + * + * Rule (matches quicktype behaviour): use an index signature when some values + * are null AND all non-null values are the same primitive type. + */ +function shouldBeIndexSignature( + allValues: unknown[], +): { isIndex: true; valueType: InferredType } | { isIndex: false } { + let hasNull = false; + let nonNullType: string | undefined; + + for (const v of allValues) { + if (v === null) { + hasNull = true; + continue; + } + const t = typeof v; + if (t !== 'string' && t !== 'number' && t !== 'boolean') { + return { isIndex: false }; + } + if (nonNullType === undefined) { + nonNullType = t; + } else if (t !== nonNullType) { + return { isIndex: false }; + } + } + + if (!hasNull || nonNullType === undefined) return { isIndex: false }; + + const primitiveType = nonNullType as 'string' | 'number' | 'boolean'; + return { + isIndex: true, + valueType: { + kind: 'union', + members: [{ kind: 'null' }, { kind: 'primitive', type: primitiveType }], + }, + }; +} + +interface CollectionContext { + nestedTypes: TypeDefinition[]; + enums: EnumDefinition[]; +} + +/** + * Find or create a nested type definition, merging additional samples + * into an existing definition when one already exists. + */ +function upsertNestedType( + typeName: string, + samples: Record[], + ctx: CollectionContext, +): void { + const existing = ctx.nestedTypes.find((t) => t.name === typeName); + if (existing) { + mergeIntoNestedType(existing, samples, ctx); + } else { + ctx.nestedTypes.push(inferObjectType(typeName, samples, ctx)); + } +} + +/** + * Infer the type of a property from all observed values across samples. + * For object-typed properties, we need to check ALL samples' values for + * index-signature detection (not just one at a time). + */ +function inferPropertyType( + propName: string, + values: unknown[], + ctx: CollectionContext, +): InferredType { + const uniqueTypes: InferredType[] = []; + + // Check if all string values are dates — need to decide once for all values + const areDates = allStringsAreDates(values); + + // For object-valued properties, collect all objects to check index signature + // pattern across all samples simultaneously + const objectValues: Record[] = []; + let hasObjectValue = false; + + for (const value of values) { + if (value === null) { + addUniqueType(uniqueTypes, { kind: 'null' }); + } else if (Array.isArray(value)) { + if (value.length === 0) { + addUniqueType(uniqueTypes, { + kind: 'array', + elementType: { kind: 'unknown' }, + }); + } else if (isObject(value[0])) { + const elementTypeName = pascalCase(propName); + upsertNestedType( + elementTypeName, + value as Record[], + ctx, + ); + addUniqueType(uniqueTypes, { + kind: 'array', + elementType: { kind: 'object', typeName: elementTypeName }, + }); + } else { + // Array of primitives + const elemType = + areDates && typeof value[0] === 'string' + ? { kind: 'primitive' as const, type: 'Date' as const } + : inferSingleValue(value[0]); + addUniqueType(uniqueTypes, { kind: 'array', elementType: elemType }); + } + } else if (isObject(value)) { + hasObjectValue = true; + objectValues.push(value as Record); + } else if (typeof value === 'boolean') { + addUniqueType(uniqueTypes, { kind: 'primitive', type: 'boolean' }); + } else if (typeof value === 'number') { + addUniqueType(uniqueTypes, { kind: 'primitive', type: 'number' }); + } else if (typeof value === 'string') { + if (areDates) { + addUniqueType(uniqueTypes, { kind: 'primitive', type: 'Date' }); + } else { + addUniqueType(uniqueTypes, { kind: 'primitive', type: 'string' }); + } + } + } + + // Handle collected object values — check index signature across ALL objects + if (hasObjectValue) { + const allObjValues: unknown[] = []; + for (const obj of objectValues) { + for (const v of Object.values(obj)) { + allObjValues.push(v); + } + } + + const indexCheck = shouldBeIndexSignature(allObjValues); + if (indexCheck.isIndex) { + addUniqueType(uniqueTypes, { + kind: 'indexSignature', + valueType: indexCheck.valueType, + }); + } else { + const nestedTypeName = pascalCase(propName); + upsertNestedType(nestedTypeName, objectValues, ctx); + addUniqueType(uniqueTypes, { + kind: 'object', + typeName: nestedTypeName, + }); + } + } + + return buildUnion(uniqueTypes); +} + +function inferSingleValue(value: unknown): InferredType { + if (value === null) return { kind: 'null' }; + if (typeof value === 'boolean') return { kind: 'primitive', type: 'boolean' }; + if (typeof value === 'number') return { kind: 'primitive', type: 'number' }; + if (typeof value === 'string') { + return isDateString(value) + ? { kind: 'primitive', type: 'Date' } + : { kind: 'primitive', type: 'string' }; + } + return { kind: 'unknown' }; +} + +/** + * Merge additional sample objects into an existing nested TypeDefinition. + */ +function mergeIntoNestedType( + existing: TypeDefinition, + samples: Record[], + ctx: CollectionContext, +): void { + for (const sample of samples) { + for (const [rawKey, value] of Object.entries(sample)) { + const key = camelCase(rawKey); + const existingProp = existing.properties.find((p) => p.name === key); + if (!existingProp) { + existing.properties.push({ + name: key, + type: inferPropertyType(key, [value], ctx), + optional: true, + }); + existing.properties.sort((a, b) => a.name.localeCompare(b.name)); + } + } + } +} + +/** + * Infer a TypeDefinition from an array of sample objects. + */ +function inferObjectType( + typeName: string, + samples: Record[], + ctx: CollectionContext, +): TypeDefinition { + // Collect all property names and their values across samples + const propertyValues = new Map(); + const propertyPresence = new Map(); + + for (const sample of samples) { + for (const [rawKey, value] of Object.entries(sample)) { + const key = camelCase(rawKey); + const values = propertyValues.get(key) ?? []; + values.push(value); + propertyValues.set(key, values); + propertyPresence.set(key, (propertyPresence.get(key) ?? 0) + 1); + } + } + + const properties: PropertyInfo[] = []; + + for (const [name, values] of propertyValues) { + const presentCount = propertyPresence.get(name) ?? 0; + const optional = presentCount < samples.length; + const type = inferPropertyType(name, values, ctx); + properties.push({ name, type, optional }); + } + + // Sort properties alphabetically + properties.sort((a, b) => a.name.localeCompare(b.name)); + + return { name: typeName, properties }; +} + +/** + * Filter flat samples to only include actual objects (not empty arrays + * or other non-object values that can appear in mixed API responses). + */ +function filterValidSamples( + flatSamples: Record[], +): Record[] { + return flatSamples.filter((s) => isObject(s) && Object.keys(s).length > 0); +} + +/** + * Infer a complete type graph from sample API responses. + */ +export function inferTypeGraph( + resourceFolder: string, + flatSamples: Record[], +): InferredTypeGraph { + const typeName = pascalCase(resourceFolder); + const validSamples = filterValidSamples(flatSamples); + + const ctx: CollectionContext = { + nestedTypes: [], + enums: [], + }; + + const rootType = inferObjectType(typeName, validSamples, ctx); + + const graph: InferredTypeGraph = { + rootType, + nestedTypes: ctx.nestedTypes, + enums: ctx.enums, + }; + + // Detect enums in list resources + if (isListResource(resourceFolder)) { + detectEnums(graph, validSamples); + } + + return graph; +} diff --git a/scripts/generate-sdk/test-generator.ts b/scripts/generate-sdk/test-generator.ts new file mode 100644 index 0000000..43b5cd7 --- /dev/null +++ b/scripts/generate-sdk/test-generator.ts @@ -0,0 +1,33 @@ +/** + * Generate the source for a resource test file. + * Template matches the current pattern using toolkit HttpClient (not old HttpClientFactory). + */ +export function generateResourceTest( + pascalName: string, + kebabName: string, +): string { + return `import { HttpClient } from '@http-client-toolkit/core'; +import { ${pascalName} } from './${kebabName}.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('${pascalName}', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new ${pascalName}(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.${pascalName}); + }); +}); +`; +} diff --git a/scripts/generate-sdk/type-emitter.ts b/scripts/generate-sdk/type-emitter.ts new file mode 100644 index 0000000..1f15883 --- /dev/null +++ b/scripts/generate-sdk/type-emitter.ts @@ -0,0 +1,141 @@ +import type { + InferredType, + PropertyInfo, + TypeDefinition, + EnumDefinition, + InferredTypeGraph, +} from './types.js'; + +/** + * Serialize an InferredType to its TypeScript string representation. + */ +function serializeType(type: InferredType): string { + switch (type.kind) { + case 'primitive': + return type.type; + case 'null': + return 'null'; + case 'unknown': + return 'unknown'; + case 'literal': + return String(type.value); + case 'array': + return `Array<${serializeType(type.elementType)}>`; + case 'object': + return type.typeName; + case 'indexSignature': + return `{ [key: string]: ${serializeType(type.valueType)} }`; + case 'enum': + return type.typeName; + case 'commonType': + return type.typeName; + case 'union': + return type.members.map(serializeType).join(' | '); + } +} + +/** + * Collect all common type names used in a type graph for the import statement. + */ +function collectImports(graph: InferredTypeGraph): string[] { + const imports = new Set(); + + function walk(type: InferredType): void { + if (type.kind === 'commonType') { + imports.add(type.typeName); + } else if (type.kind === 'union') { + for (const m of type.members) walk(m); + } else if (type.kind === 'array') { + walk(type.elementType); + } + } + + for (const prop of graph.rootType.properties) { + walk(prop.type); + } + // Nested types that survived common-type replacement still need their imports + for (const nested of graph.nestedTypes) { + for (const prop of nested.properties) { + walk(prop.type); + } + } + + return [...imports].sort(); +} + +/** + * Emit a single property line with optional JSDoc comment. + */ +function emitProperty(prop: PropertyInfo): string[] { + const lines: string[] = []; + + if (prop.description) { + lines.push(' /**'); + lines.push(` * ${prop.description}`); + lines.push(' */'); + } + + const optional = prop.optional ? '?' : ''; + lines.push(` ${prop.name}${optional}: ${serializeType(prop.type)};`); + return lines; +} + +/** + * Emit a TypeDefinition as an exported TypeScript interface. + */ +function emitInterface(typeDef: TypeDefinition): string[] { + const lines: string[] = []; + lines.push(`export interface ${typeDef.name} {`); + for (const prop of typeDef.properties) { + lines.push(...emitProperty(prop)); + } + lines.push('}'); + return lines; +} + +/** + * Emit an EnumDefinition as an exported TypeScript enum. + */ +function emitEnum(enumDef: EnumDefinition): string[] { + const lines: string[] = []; + lines.push(`export enum ${enumDef.name} {`); + for (const member of enumDef.members) { + lines.push(` ${member.key} = '${member.value}',`); + } + lines.push('}'); + return lines; +} + +/** + * Emit a complete InferredTypeGraph as a TypeScript source file. + */ +export function emitTypeScript(graph: InferredTypeGraph): string { + const lines: string[] = []; + + // Import statement + const imports = collectImports(graph); + if (imports.length > 0) { + lines.push( + `import { ${imports.join(', ')} } from '../../common-types.js';`, + ); + lines.push(''); + } + + // Root interface + lines.push(...emitInterface(graph.rootType)); + + // Nested interfaces (should be empty after common-type replacement + // unless there are non-common nested types) + for (const nested of graph.nestedTypes) { + lines.push(''); + lines.push(...emitInterface(nested)); + } + + // Enums + for (const enumDef of graph.enums) { + lines.push(''); + lines.push(...emitEnum(enumDef)); + } + + return lines.join('\n') + '\n'; +} diff --git a/scripts/generate-sdk/type-overrides.ts b/scripts/generate-sdk/type-overrides.ts new file mode 100644 index 0000000..ad37d1b --- /dev/null +++ b/scripts/generate-sdk/type-overrides.ts @@ -0,0 +1,55 @@ +import type { InferredTypeGraph, InferredType } from './types.js'; + +/** + * Fields removed because the API never populates them. Confirmed by + * exhaustively scanning every record via the list API. + * + * - movie.distributor: null across all 2,982 movies + * - video.savedTime: null across all 3,119 videos + * - video.videoShow: null across all 3,119 videos + */ +const REMOVED_FIELDS = new Set(['distributor', 'savedTime', 'videoShow']); + +/** + * Apply known type overrides for properties where sample data is ambiguous. + * + * - hasStaffReview: can be null, false, or a SiteResource object — samples + * don't always include all variants + * - aliases: can be null or a newline-delimited string — quicktype sometimes + * misidentifies null-only samples + * - characterSet: always null across all 10 origin records in the API. + * The origin dataset is a closed set of 10 entries (Mutant, Cyborg, Alien, + * Human, Robot, Radiation, God/Eternal, Animal, Other, Infection). Despite + * the name suggesting an array of characters, the API never populates this + * field — the `characters` property (Array) serves that purpose + * instead. Typed as null since no non-null sample exists anywhere in the API. + */ +export function applyTypeOverrides(graph: InferredTypeGraph): void { + graph.rootType.properties = graph.rootType.properties.filter( + (prop) => !REMOVED_FIELDS.has(prop.name), + ); + + for (const prop of graph.rootType.properties) { + if (prop.name === 'hasStaffReview') { + prop.type = { + kind: 'union', + members: [ + { kind: 'null' }, + { kind: 'literal', value: false }, + { kind: 'commonType', typeName: 'SiteResource' }, + ], + }; + } + + if (prop.name === 'aliases') { + prop.type = { + kind: 'union', + members: [{ kind: 'null' }, { kind: 'primitive', type: 'string' }], + }; + } + + if (prop.name === 'characterSet') { + prop.type = { kind: 'null' }; + } + } +} diff --git a/scripts/generate-sdk/type-utils.ts b/scripts/generate-sdk/type-utils.ts new file mode 100644 index 0000000..6c15da5 --- /dev/null +++ b/scripts/generate-sdk/type-utils.ts @@ -0,0 +1,70 @@ +import type { InferredType } from './types.js'; + +/** + * Check if two InferredType values are structurally equal. + */ +export function typesEqual(a: InferredType, b: InferredType): boolean { + if (a.kind !== b.kind) return false; + if (a.kind === 'primitive' && b.kind === 'primitive') + return a.type === b.type; + if (a.kind === 'literal' && b.kind === 'literal') return a.value === b.value; + if (a.kind === 'object' && b.kind === 'object') + return a.typeName === b.typeName; + if (a.kind === 'enum' && b.kind === 'enum') return a.typeName === b.typeName; + if (a.kind === 'array' && b.kind === 'array') + return typesEqual(a.elementType, b.elementType); + if (a.kind === 'union' && b.kind === 'union') { + if (a.members.length !== b.members.length) return false; + return a.members.every((m, i) => typesEqual(m, b.members[i])); + } + return a.kind === b.kind; +} + +export function addUniqueType(types: InferredType[], t: InferredType): void { + if (!types.some((existing) => typesEqual(existing, t))) { + types.push(t); + } +} + +/** + * Build a union type from unique member types, using the canonical ordering: + * - Named/complex types (Date, objects, enums) come first, null last + * - Primitive null comes first before primitive types (string, number, etc.) + */ +export function buildUnion(members: InferredType[]): InferredType { + const hasNull = members.some((m) => m.kind === 'null'); + const nonNull = members.filter((m) => m.kind !== 'null'); + + // All samples are null — the non-null shape is unknown. + // Emit `unknown` rather than `null | unknown` (which is redundant in TS). + if (hasNull && nonNull.length === 0) { + return { kind: 'unknown' }; + } + + if (members.length === 1) return members[0]; + if (!hasNull) { + return nonNull.length === 1 + ? nonNull[0] + : { kind: 'union', members: nonNull }; + } + + const nonNullType = nonNull.length === 1 ? nonNull[0] : undefined; + + // Named/complex types come first: Date | null, Object | null, Enum | null + if (nonNullType) { + const isNamedOrComplex = + (nonNullType.kind === 'primitive' && nonNullType.type === 'Date') || + nonNullType.kind === 'object' || + nonNullType.kind === 'enum' || + nonNullType.kind === 'commonType' || + nonNullType.kind === 'literal'; + + if (isNamedOrComplex) { + return { kind: 'union', members: [nonNullType, { kind: 'null' }] }; + } + } + + // Primitives: null | string, null | number, null | unknown + const ordered = [{ kind: 'null' as const }, ...nonNull]; + return { kind: 'union', members: ordered }; +} diff --git a/scripts/generate-sdk/types.ts b/scripts/generate-sdk/types.ts new file mode 100644 index 0000000..2add87b --- /dev/null +++ b/scripts/generate-sdk/types.ts @@ -0,0 +1,71 @@ +export interface ResourceConfig { + typeName: string; + sampleUrls: string[]; + shouldGenerate: boolean; +} + +export interface CodeComment { + title: string; + fields: Array<{ + propertyName: string; + comment: string; + }>; +} + +export interface CommonTypeShape { + typeName: string; + propList: string[]; +} + +export interface CommonTypeConversion { + property: string; + newType: string; + isArray: boolean; +} + +export interface CommonTypeMapping { + resource: string; + propertyConversions: CommonTypeConversion[]; +} + +/** Convention: sample folders with "list" in the name are list resources. */ +export function isListResource(resourceFolder: string): boolean { + return resourceFolder.includes('list'); +} + +// ─── Internal type representation for code generation ───────────────────────── + +export type InferredType = + | { kind: 'primitive'; type: 'string' | 'number' | 'boolean' | 'Date' } + | { kind: 'null' } + | { kind: 'unknown' } + | { kind: 'literal'; value: false } + | { kind: 'array'; elementType: InferredType } + | { kind: 'object'; typeName: string } + | { kind: 'indexSignature'; valueType: InferredType } + | { kind: 'enum'; typeName: string } + | { kind: 'commonType'; typeName: string } + | { kind: 'union'; members: InferredType[] }; + +export interface PropertyInfo { + name: string; + type: InferredType; + optional: boolean; + description?: string; +} + +export interface TypeDefinition { + name: string; + properties: PropertyInfo[]; +} + +export interface EnumDefinition { + name: string; + members: Array<{ key: string; value: string }>; +} + +export interface InferredTypeGraph { + rootType: TypeDefinition; + nestedTypes: TypeDefinition[]; + enums: EnumDefinition[]; +} diff --git a/packages/client/src/__mocks__/api-error-response/error-in-url-format-response.json b/src/__mocks__/api-error-response/error-in-url-format-response.json similarity index 100% rename from packages/client/src/__mocks__/api-error-response/error-in-url-format-response.json rename to src/__mocks__/api-error-response/error-in-url-format-response.json diff --git a/packages/client/src/__mocks__/api-error-response/invalid-api-key-response.json b/src/__mocks__/api-error-response/invalid-api-key-response.json similarity index 100% rename from packages/client/src/__mocks__/api-error-response/invalid-api-key-response.json rename to src/__mocks__/api-error-response/invalid-api-key-response.json diff --git a/packages/client/src/__mocks__/api-error-response/object-not-found-response.json b/src/__mocks__/api-error-response/object-not-found-response.json similarity index 100% rename from packages/client/src/__mocks__/api-error-response/object-not-found-response.json rename to src/__mocks__/api-error-response/object-not-found-response.json diff --git a/src/__mocks__/api-response/character-details.json b/src/__mocks__/api-response/character-details.json new file mode 100644 index 0000000..fcd6878 --- /dev/null +++ b/src/__mocks__/api-response/character-details.json @@ -0,0 +1,207 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": "Praetor Lemnos", + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1268/", + "birth": null, + "character_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1255/", + "id": 1255, + "name": "Brainiac 5", + "site_detail_url": "https://comicvine.gamespot.com/brainiac-5/4005-1255/" + } + ], + "character_friends": [], + "count_of_issue_appearances": 15, + "creators": [], + "date_added": "2008-06-06 11:27:03", + "date_last_updated": "2012-09-01 13:44:33", + "deck": "Praetor Lemnos is an enemy of the Legion of Super-Heroes and a man capable of altering the memories of anyone he wishes.", + "description": "

    Origin

    Lemnos was born at some point in the 30th century, somewhere in the United Planets. A psionic handicap he had would make his brain emit a quantum frequency that changes other individuals' chemicals and electrons related to memory. Hence, he could be in a crowd and be recorded by any electronic device, and after leaving, any memory or trace of him ever being there (or even existing for that matter) would disappear just within a few minutes. He claimed to Brainiac 5 the at he had to stay within his parents' line of sight so they wouldn't forget to feed him.

    As it is next to impossible to remain completely undetected from everything in the 30th/31st centuries, the Science Police found enough traces of to track him down and capture him. They were desperate to find out how he had been able to stay hidden for so long, but unluckily enough for them, had already gained control over his ability. Such control that what used to be a handicap was now what could be called a superpower. With this, could easily manipulate the memories of anyone or anything, meaning he could trick an interrogator to believe he was alone in the interrogation room, for instance.

    Rather than allowing himself to become some sort of lab rat for the Science Police, used his ability to spy on them, gathering as much valuable information as possible. Below their [the Science Police] noses, he was able to work behind the scenes to build his own technoempire. He figured that a man with his ability could anything without taking the responsibility or consequences for it...and hence become incredibly rich (stated by Brainiac 5 as being rumored to be the wealthiest individual in the known universe) and also shape every governmental decision to match his agenda.

    Lemnos has one thing in common with the Legion of Super-Heroes - they both believe that the United Planets is a too slow and dull society for its own good. Which is why he supports the Legion in secret and has manipulated the outcome of numerous government decisions to help their cause. But for Lemnos, the peaceful \"rebellion\" of the Legion wasn't enough. He would take stronger actions to \"help\" the United Planets...even if it meant shocking them out of dormancy by declaring war. War was something could start by manipulating the outcast of the galaxy...the children of exiled criminals, leaved for dead by the UP. They became his army, and they were lead by some of the most powerful beings among them, called Terra Firma.

    Lemnos's plan would have worked perfectly if it had not been for Dream Girl, who, during a precognitive vision, predicted that Lemnos (although his name was not known at the time) would have a connection to upcoming wars. Brainiac 5 was able to extract the image from her mind and upload it to his computer systems, although on a search, he couldn’t find any information whatsoever about him.

    Praetor Lemnos’s first target in the United Planets was planet Orando, the economic centre. Lemnos’s armies were successful in destroying the planet and its inhabitants, leaving only Princess Projectra, who was on Earth at the time. Not long after, when Brainaic 5 was still trying to figure out who the mysterious warstarter was, Lemnos himself walked into Brainiac’s lab and introduced himself, and told about his origins and agenda. Including telling him that the next target was planet Colu, Brainiac’s homeworld. Brainiac refused to cooperate with him, leading Lemnos to walk out and erase Brainiac’s memories about their meeting. Brainiac though, had already sent a digital message to himself saying “COLU IS NEXT”, that he received a while later (leading him, Chameleon, Saturn Girl and Light Lass to go to Colu).

    On planet Colu, Lemnos had already devastated the planet – but not the same way as Orando, by military force. On Colu, he had instead forced complete amnesia upon the population, rendering the scientific centre of the United Planet useless. Even though it was too late for the Legion to save Colu, Light Lass noticed that Chameleon’s antennae (which only appears when he is scanning a new lifeform) appeared for no apparent reason. She figured someone not visible was around them, and she destroyed the area by creating a massive anti-gravity field, forcing Lemnos to reveal his existence if he was to survive. escaped, but not before Brainiac 5 regained his memories and Saturn Girl seeing him (hence being able to shield every Legionnaire from memory manipulation).

    Elysion, one of the members of Terra Firma, was captured by the Legion after a battle on planet Helegyn. Thanks to him, Saturn Girl could find out where Lemnos’s base world was, and hence the Legion set an investigation team to go there.

    After a long battle (with reinforcements from the rest of the Legion), Lemnos’s armies along with Terra Firma were defeated. would have escaped if it hadn’t been for Brainiac 5, who opened a portal and stunned him with a seemingly powerful weapon. Lemnos is currently held in stasis by Brainiac 5.

    ", + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-103849/", + "id": 103849, + "name": "Tomorrow's Heroes Today!", + "issue_number": "2" + }, + "gender": 1, + "id": 1268, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/3664/198707-191798-lemnos.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/3664/198707-191798-lemnos.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/3664/198707-191798-lemnos.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/3664/198707-191798-lemnos.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/3664/198707-191798-lemnos.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/3664/198707-191798-lemnos.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/3664/198707-191798-lemnos.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/3664/198707-191798-lemnos.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/3664/198707-191798-lemnos.jpg", + "image_tags": "All Images,Praetor Lemnos" + }, + "issue_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114976/", + "id": 114976, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-21/4000-114976/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114972/", + "id": 114972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-20/4000-114972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114916/", + "id": 114916, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-18/4000-114916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309770/", + "id": 309770, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream-2-volume-2/4000-309770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114963/", + "id": 114963, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-13/4000-114963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114962/", + "id": 114962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-12/4000-114962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309762/", + "id": 309762, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution-1-volume/4000-309762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114922/", + "id": 114922, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-10/4000-114922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114921/", + "id": 114921, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-9/4000-114921/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105293/", + "id": 105293, + "name": "Follow the Leader", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-7-follow-the-leader/4000-105293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105295/", + "id": 105295, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-6/4000-105295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105294/", + "id": 105294, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-5/4000-105294/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105296/", + "id": 105296, + "name": "Fight the Power", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-4-fight-the-power/4000-105296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103850/", + "id": 103850, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-3/4000-103850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103849/", + "id": 103849, + "name": "Tomorrow's Heroes Today!", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-2-tomorrows-heroes-today/4000-103849/" + } + ], + "issues_died_in": [], + "movies": [], + "name": "Lemnos", + "origin": { + "api_detail_url": "https://comicvine.gamespot.com/api/origin/4030-1/", + "id": 1, + "name": "Mutant" + }, + "powers": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-5/", + "id": 5, + "name": "Stamina" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-9/", + "id": 9, + "name": "Intellect" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-29/", + "id": 29, + "name": "Psionic" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-30/", + "id": 30, + "name": "Insanely Rich" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-132/", + "id": 132, + "name": "Stealth" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/power/4035-135/", + "id": 135, + "name": "Leadership" + } + ], + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-10/", + "id": 10, + "name": "DC Comics" + }, + "real_name": "Praetor Lemnos", + "site_detail_url": "https://comicvine.gamespot.com/lemnos/4005-1268/", + "story_arc_credits": [], + "team_enemies": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-19241/", + "id": 19241, + "name": "Legion of Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes/4060-19241/" + } + ], + "team_friends": [], + "teams": [], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11059/", + "id": 11059, + "name": "Legion of Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes/4050-11059/" + } + ] + }, + "version": "1.0" +} diff --git a/packages/client/src/__mocks__/api-response/character-list.json b/src/__mocks__/api-response/character-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/character-list.json rename to src/__mocks__/api-response/character-list.json diff --git a/packages/client/src/__mocks__/api-response/concept-details.json b/src/__mocks__/api-response/concept-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/concept-details.json rename to src/__mocks__/api-response/concept-details.json diff --git a/packages/client/src/__mocks__/api-response/concept-list.json b/src/__mocks__/api-response/concept-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/concept-list.json rename to src/__mocks__/api-response/concept-list.json diff --git a/packages/client/src/__mocks__/api-response/episode-details.json b/src/__mocks__/api-response/episode-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/episode-details.json rename to src/__mocks__/api-response/episode-details.json diff --git a/packages/client/src/__mocks__/api-response/episode-list.json b/src/__mocks__/api-response/episode-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/episode-list.json rename to src/__mocks__/api-response/episode-list.json diff --git a/src/__mocks__/api-response/issue-details.json b/src/__mocks__/api-response/issue-details.json new file mode 100644 index 0000000..e5ab5ea --- /dev/null +++ b/src/__mocks__/api-response/issue-details.json @@ -0,0 +1,424 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-319366/", + "associated_images": [], + "character_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-20577/", + "id": 20577, + "name": "Ant-Man (Lang)", + "site_detail_url": "https://comicvine.gamespot.com/ant-man-lang/4005-20577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1462/", + "id": 1462, + "name": "Beast", + "site_detail_url": "https://comicvine.gamespot.com/beast/4005-1462/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1442/", + "id": 1442, + "name": "Captain America", + "site_detail_url": "https://comicvine.gamespot.com/captain-america/4005-1442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-21561/", + "id": 21561, + "name": "Carol Danvers", + "site_detail_url": "https://comicvine.gamespot.com/carol-danvers/4005-21561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40516/", + "id": 40516, + "name": "Cassie Lang", + "site_detail_url": "https://comicvine.gamespot.com/cassie-lang/4005-40516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1460/", + "id": 1460, + "name": "Colossus", + "site_detail_url": "https://comicvine.gamespot.com/colossus/4005-1460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1459/", + "id": 1459, + "name": "Cyclops", + "site_detail_url": "https://comicvine.gamespot.com/cyclops/4005-1459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1468/", + "id": 1468, + "name": "Doctor Doom", + "site_detail_url": "https://comicvine.gamespot.com/doctor-doom/4005-1468/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1457/", + "id": 1457, + "name": "Emma Frost", + "site_detail_url": "https://comicvine.gamespot.com/emma-frost/4005-1457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1499/", + "id": 1499, + "name": "Gambit", + "site_detail_url": "https://comicvine.gamespot.com/gambit/4005-1499/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1475/", + "id": 1475, + "name": "Hawkeye", + "site_detail_url": "https://comicvine.gamespot.com/hawkeye/4005-1475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2259/", + "id": 2259, + "name": "Hulkling", + "site_detail_url": "https://comicvine.gamespot.com/hulkling/4005-2259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1464/", + "id": 1464, + "name": "Iceman", + "site_detail_url": "https://comicvine.gamespot.com/iceman/4005-1464/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2263/", + "id": 2263, + "name": "Iron Lad", + "site_detail_url": "https://comicvine.gamespot.com/iron-lad/4005-2263/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1455/", + "id": 1455, + "name": "Iron Man", + "site_detail_url": "https://comicvine.gamespot.com/iron-man/4005-1455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2265/", + "id": 2265, + "name": "Jessica Jones", + "site_detail_url": "https://comicvine.gamespot.com/jessica-jones/4005-2265/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2262/", + "id": 2262, + "name": "Kate Bishop", + "site_detail_url": "https://comicvine.gamespot.com/kate-bishop/4005-2262/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1450/", + "id": 1450, + "name": "Luke Cage", + "site_detail_url": "https://comicvine.gamespot.com/luke-cage/4005-1450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7910/", + "id": 7910, + "name": "Madrox", + "site_detail_url": "https://comicvine.gamespot.com/madrox/4005-7910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1441/", + "id": 1441, + "name": "Magneto", + "site_detail_url": "https://comicvine.gamespot.com/magneto/4005-1441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2258/", + "id": 2258, + "name": "Patriot", + "site_detail_url": "https://comicvine.gamespot.com/patriot/4005-2258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1467/", + "id": 1467, + "name": "Quicksilver", + "site_detail_url": "https://comicvine.gamespot.com/quicksilver/4005-1467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-10988/", + "id": 10988, + "name": "Rictor", + "site_detail_url": "https://comicvine.gamespot.com/rictor/4005-10988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1446/", + "id": 1446, + "name": "Rogue", + "site_detail_url": "https://comicvine.gamespot.com/rogue/4005-1446/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1466/", + "id": 1466, + "name": "Scarlet Witch", + "site_detail_url": "https://comicvine.gamespot.com/scarlet-witch/4005-1466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-2156/", + "id": 2156, + "name": "Shatterstar", + "site_detail_url": "https://comicvine.gamespot.com/shatterstar/4005-2156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40518/", + "id": 40518, + "name": "Speed", + "site_detail_url": "https://comicvine.gamespot.com/speed/4005-40518/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1443/", + "id": 1443, + "name": "Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/spider-man/4005-1443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1444/", + "id": 1444, + "name": "Storm", + "site_detail_url": "https://comicvine.gamespot.com/storm/4005-1444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-7599/", + "id": 7599, + "name": "Strong Guy", + "site_detail_url": "https://comicvine.gamespot.com/strong-guy/4005-7599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1504/", + "id": 1504, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4005-1504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-40505/", + "id": 40505, + "name": "Wiccan", + "site_detail_url": "https://comicvine.gamespot.com/wiccan/4005-40505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1440/", + "id": 1440, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4005-1440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1465/", + "id": 1465, + "name": "Wonder Man", + "site_detail_url": "https://comicvine.gamespot.com/wonder-man/4005-1465/" + } + ], + "character_died_in": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-1504/", + "id": 1504, + "name": "Vision", + "site_detail_url": "https://comicvine.gamespot.com/vision/4005-1504/" + } + ], + "concept_credits": [], + "cover_date": "2012-05-01", + "date_added": "2012-03-06 16:58:16", + "date_last_updated": "2013-03-14 05:01:51", + "deck": null, + "description": "

    The big climax that sets the stage big time for what is to come in 2012! - Deaths and departures! The final fate of the Scarlet Witch. A new lineup and a new direction for the Young Avengers.

    ", + "first_appearance_characters": null, + "first_appearance_concepts": null, + "first_appearance_locations": null, + "first_appearance_objects": null, + "first_appearance_storyarcs": null, + "first_appearance_teams": null, + "has_staff_review": { + "api_detail_url": "https://comicvine.gamespot.com/api/review/1900-607/", + "id": 607, + "name": "Avengers: The Children's Crusade #9 Review", + "site_detail_url": "https://comicvine.gamespot.com/reviews/avengers-the-childrens-crusade-9/1900-607/" + }, + "id": 319366, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/11/110017/2232078-www.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/11/110017/2232078-www.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/11/110017/2232078-www.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/11/110017/2232078-www.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/11/110017/2232078-www.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/11/110017/2232078-www.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/11/110017/2232078-www.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/11/110017/2232078-www.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/11/110017/2232078-www.jpg", + "image_tags": "All Images" + }, + "issue_number": "9", + "location_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-41036/", + "id": 41036, + "name": "Avengers Mansion", + "site_detail_url": "https://comicvine.gamespot.com/avengers-mansion/4020-41036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/location/4020-41183/", + "id": 41183, + "name": "New York City", + "site_detail_url": "https://comicvine.gamespot.com/new-york-city/4020-41183/" + } + ], + "name": null, + "object_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-50737/", + "id": 50737, + "name": "Captain America's Shield", + "site_detail_url": "https://comicvine.gamespot.com/captain-americas-shield/4055-50737/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/object/4055-50749/", + "id": 50749, + "name": "Iron Man Armor", + "site_detail_url": "https://comicvine.gamespot.com/iron-man-armor/4055-50749/" + } + ], + "person_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-56587/", + "id": 56587, + "name": "Alan Fine", + "site_detail_url": "https://comicvine.gamespot.com/alan-fine/4040-56587/", + "role": "production" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-40596/", + "id": 40596, + "name": "Allan Heinberg", + "site_detail_url": "https://comicvine.gamespot.com/allan-heinberg/4040-40596/", + "role": "writer" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-23115/", + "id": 23115, + "name": "Axel Alonso", + "site_detail_url": "https://comicvine.gamespot.com/axel-alonso/4040-23115/", + "role": "editor" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-41781/", + "id": 41781, + "name": "Cory Petit", + "site_detail_url": "https://comicvine.gamespot.com/cory-petit/4040-41781/", + "role": "letterer" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-41596/", + "id": 41596, + "name": "Dan Buckley", + "site_detail_url": "https://comicvine.gamespot.com/dan-buckley/4040-41596/", + "role": "other" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-2256/", + "id": 2256, + "name": "Jim Cheung", + "site_detail_url": "https://comicvine.gamespot.com/jim-cheung/4040-2256/", + "role": "penciler, inker, cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-1537/", + "id": 1537, + "name": "Joe Quesada", + "site_detail_url": "https://comicvine.gamespot.com/joe-quesada/4040-1537/", + "role": "other" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-2066/", + "id": 2066, + "name": "Justin Ponsor", + "site_detail_url": "https://comicvine.gamespot.com/justin-ponsor/4040-2066/", + "role": "colorist, cover" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-47471/", + "id": 47471, + "name": "Lauren Sankovitch", + "site_detail_url": "https://comicvine.gamespot.com/lauren-sankovitch/4040-47471/", + "role": "editor" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-1774/", + "id": 1774, + "name": "Mark Morales", + "site_detail_url": "https://comicvine.gamespot.com/mark-morales/4040-1774/", + "role": "inker" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-41609/", + "id": 41609, + "name": "Tom Brevoort", + "site_detail_url": "https://comicvine.gamespot.com/tom-brevoort/4040-41609/", + "role": "editor" + } + ], + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade-9/4000-319366/", + "store_date": "2012-03-07", + "story_arc_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56177/", + "id": 56177, + "name": "The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/the-childrens-crusade/4045-56177/" + } + ], + "team_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3806/", + "id": 3806, + "name": "Avengers", + "site_detail_url": "https://comicvine.gamespot.com/avengers/4060-3806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-4296/", + "id": 4296, + "name": "Sentinels", + "site_detail_url": "https://comicvine.gamespot.com/sentinels/4060-4296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-24131/", + "id": 24131, + "name": "X-Factor", + "site_detail_url": "https://comicvine.gamespot.com/x-factor/4060-24131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-3173/", + "id": 3173, + "name": "X-Men", + "site_detail_url": "https://comicvine.gamespot.com/x-men/4060-3173/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40426/", + "id": 40426, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4060-40426/" + } + ], + "team_disbanded_in": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/team/4060-40426/", + "id": 40426, + "name": "Young Avengers", + "site_detail_url": "https://comicvine.gamespot.com/young-avengers/4060-40426/" + } + ], + "volume": { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34241/", + "id": 34241, + "name": "Avengers: The Children's Crusade", + "site_detail_url": "https://comicvine.gamespot.com/avengers-the-childrens-crusade/4050-34241/" + } + }, + "version": "1.0" +} diff --git a/packages/client/src/__mocks__/api-response/issue-list-auto-pagination-limit-50.json b/src/__mocks__/api-response/issue-list-auto-pagination-limit-50.json similarity index 100% rename from packages/client/src/__mocks__/api-response/issue-list-auto-pagination-limit-50.json rename to src/__mocks__/api-response/issue-list-auto-pagination-limit-50.json diff --git a/packages/client/src/__mocks__/api-response/issue-list-auto-pagination-no-limit-or-offset.json b/src/__mocks__/api-response/issue-list-auto-pagination-no-limit-or-offset.json similarity index 100% rename from packages/client/src/__mocks__/api-response/issue-list-auto-pagination-no-limit-or-offset.json rename to src/__mocks__/api-response/issue-list-auto-pagination-no-limit-or-offset.json diff --git a/packages/client/src/__mocks__/api-response/issue-list.json b/src/__mocks__/api-response/issue-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/issue-list.json rename to src/__mocks__/api-response/issue-list.json diff --git a/packages/client/src/__mocks__/api-response/location-details.json b/src/__mocks__/api-response/location-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/location-details.json rename to src/__mocks__/api-response/location-details.json diff --git a/packages/client/src/__mocks__/api-response/location-list.json b/src/__mocks__/api-response/location-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/location-list.json rename to src/__mocks__/api-response/location-list.json diff --git a/packages/client/src/__mocks__/api-response/movie-details.json b/src/__mocks__/api-response/movie-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/movie-details.json rename to src/__mocks__/api-response/movie-details.json diff --git a/packages/client/src/__mocks__/api-response/movie-list.json b/src/__mocks__/api-response/movie-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/movie-list.json rename to src/__mocks__/api-response/movie-list.json diff --git a/packages/client/src/__mocks__/api-response/origin-details.json b/src/__mocks__/api-response/origin-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/origin-details.json rename to src/__mocks__/api-response/origin-details.json diff --git a/packages/client/src/__mocks__/api-response/origin-list.json b/src/__mocks__/api-response/origin-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/origin-list.json rename to src/__mocks__/api-response/origin-list.json diff --git a/src/__mocks__/api-response/person-details.json b/src/__mocks__/api-response/person-details.json new file mode 100644 index 0000000..5d0b106 --- /dev/null +++ b/src/__mocks__/api-response/person-details.json @@ -0,0 +1,4344 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/person/4040-1252/", + "birth": null, + "count_of_isssue_appearances": null, + "country": "United States", + "created_characters": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/character/4005-93197/", + "id": 93197, + "name": "Erin McKillen", + "site_detail_url": "https://comicvine.gamespot.com/erin-mckillen/4005-93197/" + } + ], + "date_added": "2008-06-06 11:28:12", + "date_last_updated": "2013-05-11 04:05:55", + "death": null, + "deck": "Michael Gray is a comic book Inker. He is best known for his frequent collaborations with artist JH Williams III on titles such as Promethea and Chase, and with artist Patrick Gleason on Batman and Robin for DC Comics. He has been nominated a few times for \"Best Inker\" at the Harvey Awards.", + "description": null, + "email": null, + "gender": 1, + "hometown": "Cupertino, CA", + "id": 1252, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/386202-80098-mick-gray.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/386202-80098-mick-gray.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/386202-80098-mick-gray.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/386202-80098-mick-gray.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/386202-80098-mick-gray.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/386202-80098-mick-gray.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/386202-80098-mick-gray.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/386202-80098-mick-gray.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/9241/386202-80098-mick-gray.jpg", + "image_tags": "All Images,Mick" + }, + "issues": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-1097753/", + "id": 1097753, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-1097753/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-1048371/", + "id": 1048371, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-1048371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-1044356/", + "id": 1044356, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/pete-townshends-life-house-1-hc/4000-1044356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-1038299/", + "id": 1038299, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/special-strange-6/4000-1038299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-922422/", + "id": 922422, + "name": "¡Mundos salvados!; ¡El mundo del caballero!; El mundo del mañana", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-el-archivo-de-mundos-6-mundos-salva/4000-922422/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-960763/", + "id": 960763, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-the-archive-of-worlds-1-hc/4000-960763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-882788/", + "id": 882788, + "name": "The World of the Knight!; The World of Tomorrow", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-2021-annual-1-the-world-of-the-knig/4000-882788/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-899014/", + "id": 899014, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/the-liberty-brigade-1/4000-899014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-902195/", + "id": 902195, + "name": "Pequeñas Maravillas; Concéntrate; Noche de juegos", + "site_detail_url": "https://comicvine.gamespot.com/la-guerra-del-joker-6-pequenas-maravillas-concentr/4000-902195/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-897467/", + "id": 897467, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dc-celebration-catwoman-1/4000-897467/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-826304/", + "id": 826304, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-the-dc-universe-doug-mahnke-1-hc/4000-826304/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-821728/", + "id": 821728, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-3-book-t/4000-821728/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-819323/", + "id": 819323, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition-1-hc/4000-819323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818619/", + "id": 818619, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/underworld-unleashed-the-25th-anniversary-edition-/4000-818619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-768243/", + "id": 768243, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/joker-the-deluxe-edition-1-hc/4000-768243/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-766104/", + "id": 766104, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/catwoman-80th-anniversary-100-page-super-spectacul/4000-766104/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-731663/", + "id": 731663, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-2-book-t/4000-731663/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-730190/", + "id": 730190, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth-deluxe-edition-1-hc/4000-730190/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-889375/", + "id": 889375, + "name": "Der Tod der Familie (Teil 2)", + "site_detail_url": "https://comicvine.gamespot.com/batman-graphic-novel-collection-24-der-tod-der-fam/4000-889375/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-714166/", + "id": 714166, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-dark-13/4000-714166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-710050/", + "id": 710050, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/dog-days-of-summer-1/4000-710050/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-705907/", + "id": 705907, + "name": "Giants War Finale", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-68-giants-war-finale/4000-705907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-703040/", + "id": 703040, + "name": "Giants War Part 1", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-66-giants-war-part-1/4000-703040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704777/", + "id": 704777, + "name": "Blow Out", + "site_detail_url": "https://comicvine.gamespot.com/batgirl-33-blow-out/4000-704777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-704800/", + "id": 704800, + "name": "Giants War Part 2", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-67-giants-war-part-2/4000-704800/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-702448/", + "id": 702448, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-1-book-o/4000-702448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694899/", + "id": 694899, + "name": "The Just War Part III", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-60-the-just-war-part-iii/4000-694899/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-692055/", + "id": 692055, + "name": "The Just War Part I", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-58-the-just-war-part-i/4000-692055/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-693452/", + "id": 693452, + "name": "The Just War Part II", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-59-the-just-war-part-ii/4000-693452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-694223/", + "id": 694223, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/worlds-greatest-super-heroes-holiday-special-1/4000-694223/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-695619/", + "id": 695619, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/super-sons-omnibus-1-hc/4000-695619/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-691347/", + "id": 691347, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-bad-blood-dc-essential-edition-1-/4000-691347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-925338/", + "id": 925338, + "name": "Enfants des Dieux", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-rebirth-5-enfants-des-dieux/4000-925338/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-680712/", + "id": 680712, + "name": "For the Wicked, No Rest", + "site_detail_url": "https://comicvine.gamespot.com/suicide-squad-annual-1-for-the-wicked-no-rest/4000-680712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-676680/", + "id": 676680, + "name": "Constriction Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/suicide-squad-44-constriction-conclusion/4000-676680/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672268/", + "id": 672268, + "name": "Call of the Unknown: Part One - Punch First", + "site_detail_url": "https://comicvine.gamespot.com/the-unexpected-1-call-of-the-unknown-part-one-punc/4000-672268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-1014628/", + "id": 1014628, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/aquaman-sub-diego-1/4000-1014628/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-671309/", + "id": 671309, + "name": "Part One: From This Day Forward", + "site_detail_url": "https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4000-671309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-667624/", + "id": 667624, + "name": "Mind Over Matter", + "site_detail_url": "https://comicvine.gamespot.com/titans-annual-2-mind-over-matter/4000-667624/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-658701/", + "id": 658701, + "name": "Superhuman Trafficking Part One", + "site_detail_url": "https://comicvine.gamespot.com/green-lanterns-40-superhuman-trafficking-part-one/4000-658701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-660634/", + "id": 660634, + "name": "Superhuman Trafficking Part Two", + "site_detail_url": "https://comicvine.gamespot.com/green-lanterns-41-superhuman-trafficking-part-two/4000-660634/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-661134/", + "id": 661134, + "name": "Amazons Attacked Part One", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-41-amazons-attacked-part-one/4000-661134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-652599/", + "id": 652599, + "name": "Twilight of the Guardians Conclusion: What We Leave Behind", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps-36-twilight/4000-652599/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-663593/", + "id": 663593, + "name": "Volume 0", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-reunion-1-volume-0/4000-663593/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-649701/", + "id": 649701, + "name": "A Cold Day In Hell Part Two", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-37-a-cold-day-in-hell-part-two/4000-649701/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-636361/", + "id": 636361, + "name": "The World Stops Part 2: The Fall of Troy", + "site_detail_url": "https://comicvine.gamespot.com/titans-17-the-world-stops-part-2-the-fall-of-troy/4000-636361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-636365/", + "id": 636365, + "name": "Children of the Gods Part 3", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-34-children-of-the-gods-part-3/4000-636365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-626261/", + "id": 626261, + "name": "Legacy Part Five", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-30-legacy-part-five/4000-626261/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-636335/", + "id": 636335, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-636335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-643020/", + "id": 643020, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/superman-black-dawn-1-volume-4/4000-643020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-609285/", + "id": 609285, + "name": "Son of Superman Part One", + "site_detail_url": "https://comicvine.gamespot.com/dc-justice-league-essentials-superman-1-son-of-sup/4000-609285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-621601/", + "id": 621601, + "name": "Reborn", + "site_detail_url": "https://comicvine.gamespot.com/superman-reborn-1-reborn/4000-621601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-625293/", + "id": 625293, + "name": "Book 1", + "site_detail_url": "https://comicvine.gamespot.com/superman-rebirth-deluxe-edition-1-book-1/4000-625293/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-599849/", + "id": 599849, + "name": "Black Dawn Chapter 5", + "site_detail_url": "https://comicvine.gamespot.com/superman-24-black-dawn-chapter-5/4000-599849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-603105/", + "id": 603105, + "name": "Black Dawn Chapter 6: Fade To Black", + "site_detail_url": "https://comicvine.gamespot.com/superman-25-black-dawn-chapter-6-fade-to-black/4000-603105/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-611986/", + "id": 611986, + "name": "Multiplicity ", + "site_detail_url": "https://comicvine.gamespot.com/superman-multiplicity-1-multiplicity/4000-611986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-613733/", + "id": 613733, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/batman-arkham-clayface-1-tpb/4000-613733/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672545/", + "id": 672545, + "name": "Super-Söhne", + "site_detail_url": "https://comicvine.gamespot.com/superman-sonderband-2-super-sohne/4000-672545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590782/", + "id": 590782, + "name": "Black Dawn Chapter 1", + "site_detail_url": "https://comicvine.gamespot.com/superman-20-black-dawn-chapter-1/4000-590782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-592580/", + "id": 592580, + "name": "Black Dawn Chapter 2", + "site_detail_url": "https://comicvine.gamespot.com/superman-21-black-dawn-chapter-2/4000-592580/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-583707/", + "id": 583707, + "name": "Superman: Reborn Part 1", + "site_detail_url": "https://comicvine.gamespot.com/superman-18-superman-reborn-part-1/4000-583707/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-587394/", + "id": 587394, + "name": "Superman: Reborn Part 3: Don't Pass Go", + "site_detail_url": "https://comicvine.gamespot.com/superman-19-superman-reborn-part-3-dont-pass-go/4000-587394/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-672544/", + "id": 672544, + "name": "Volumen 1", + "site_detail_url": "https://comicvine.gamespot.com/superman-sonderband-1-volumen-1/4000-672544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-590783/", + "id": 590783, + "name": "Trials of the Super Son", + "site_detail_url": "https://comicvine.gamespot.com/superman-trials-of-the-super-son-1-trials-of-the-s/4000-590783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574854/", + "id": 574854, + "name": "Multiplicity Part 1", + "site_detail_url": "https://comicvine.gamespot.com/superman-14-multiplicity-part-1/4000-574854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-670633/", + "id": 670633, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/robin-der-sohn-des-dunklen-ritters-2/4000-670633/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-556460/", + "id": 556460, + "name": "In the Name of the Father: World's Smallest Part 1", + "site_detail_url": "https://comicvine.gamespot.com/superman-10-in-the-name-of-the-father-worlds-small/4000-556460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-558402/", + "id": 558402, + "name": "In the Name of the Father: World's Smallest Part 2", + "site_detail_url": "https://comicvine.gamespot.com/superman-11-in-the-name-of-the-father-worlds-small/4000-558402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-574855/", + "id": 574855, + "name": "Son of Superman", + "site_detail_url": "https://comicvine.gamespot.com/superman-son-of-superman-1-son-of-superman/4000-574855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548567/", + "id": 548567, + "name": "Son of Superman Part Six", + "site_detail_url": "https://comicvine.gamespot.com/superman-6-son-of-superman-part-six/4000-548567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-550337/", + "id": 550337, + "name": "Our Town", + "site_detail_url": "https://comicvine.gamespot.com/superman-7-our-town/4000-550337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542602/", + "id": 542602, + "name": "The Death and Life of Oliver Queen Part Four: Burn Your Bridges", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow-4-the-death-and-life-of-oliver-queen-p/4000-542602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-542613/", + "id": 542613, + "name": "Son of Superman Part Four", + "site_detail_url": "https://comicvine.gamespot.com/superman-4-son-of-superman-part-four/4000-542613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-544972/", + "id": 544972, + "name": "Son of Superman Part Five", + "site_detail_url": "https://comicvine.gamespot.com/superman-5-son-of-superman-part-five/4000-544972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920230/", + "id": 920230, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/robinhijo-de-batman-2/4000-920230/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-538494/", + "id": 538494, + "name": "Son of Superman Part Two", + "site_detail_url": "https://comicvine.gamespot.com/superman-2-son-of-superman-part-two/4000-538494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-540058/", + "id": 540058, + "name": "Son of Superman Part Three", + "site_detail_url": "https://comicvine.gamespot.com/superman-3-son-of-superman-part-three/4000-540058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-548563/", + "id": 548563, + "name": "Volume 2: Dawn of the Demons", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-2-volume-2-dawn-of-the-demons/4000-548563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-535341/", + "id": 535341, + "name": "Son of Superman Part One", + "site_detail_url": "https://comicvine.gamespot.com/superman-1-son-of-superman-part-one/4000-535341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-537209/", + "id": 537209, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/batman-arkham-killer-croc-1-tpb/4000-537209/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-520182/", + "id": 520182, + "name": "Son Is Rising", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-10-son-is-rising/4000-520182/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-920229/", + "id": 920229, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/robinhijo-de-batman-1/4000-920229/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-514417/", + "id": 514417, + "name": "Harmed and Dangerous Part Two", + "site_detail_url": "https://comicvine.gamespot.com/red-hoodarsenal-9-harmed-and-dangerous-part-two/4000-514417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-516064/", + "id": 516064, + "name": "Better Angels", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-9-better-angels/4000-516064/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-517120/", + "id": 517120, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-essentials-batman-and-robin-1/4000-517120/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-511496/", + "id": 511496, + "name": "Heart of Ice", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-8-heart-of-ice/4000-511496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-521313/", + "id": 521313, + "name": "Volume 1: Year of Blood", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-1-volume-1-year-of-blood/4000-521313/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-508873/", + "id": 508873, + "name": "Robin War Part 5: Fight the Nightmare", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-7-robin-war-part-5-fight-the-n/4000-508873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506636/", + "id": 506636, + "name": "Year of Blood Part Six", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-6-year-of-blood-part-six/4000-506636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-504323/", + "id": 504323, + "name": "Year of Blood, Part Five", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-5-year-of-blood-part-five/4000-504323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893237/", + "id": 893237, + "name": "Superpoder: Vuela, Robin, vuela; Superpoder: Chico maravilla; Superpoder: El dúo dinámico; Programa espacial", + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin-12-superpoder-vuela-robin-vuela-sup/4000-893237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-500276/", + "id": 500276, + "name": "Year of Blood, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-4-year-of-blood-part-four/4000-500276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-506138/", + "id": 506138, + "name": "Volume 7: Robin Rises", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-7-volume-7-robin-rises/4000-506138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497922/", + "id": 497922, + "name": "Year of Blood, Part Three", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-3-year-of-blood-part-three/4000-497922/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-963039/", + "id": 963039, + "name": "Année Cinq", + "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-5-annee-cinq/4000-963039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-495256/", + "id": 495256, + "name": "Year of Blood, Part Two", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-2-year-of-blood-part-two/4000-495256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-492165/", + "id": 492165, + "name": "Year of Blood, Part One", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman-1-year-of-blood-part-one/4000-492165/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893236/", + "id": 893236, + "name": "Robin resurge: Caos; Robin resurge: Hijo de un agujero negro; Robin resurge: Alfa", + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin-11-robin-resurge-caos-robin-resurge/4000-893236/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-493026/", + "id": 493026, + "name": "Volume 6: The Hunt For Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-6-volume-6-the-hunt-for-robin/4000-493026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-483299/", + "id": 483299, + "name": "Superpower - The Dynamic Duo", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-40-superpower-the-dynamic-duo/4000-483299/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-489252/", + "id": 489252, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman-1/4000-489252/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-479927/", + "id": 479927, + "name": "Superpower - Boy Wonder", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-39-superpower-boy-wonder/4000-479927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-893235/", + "id": 893235, + "name": "Robin resurge: Omega; Robin resurge: Justicia fría; Robin resurge: Lazos de unión; Robin resurge: Al infierno", + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin-10-robin-resurge-omega-robin-resurg/4000-893235/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-497777/", + "id": 497777, + "name": "Die Jago Nach Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-6-die-jago-nach-robin/4000-497777/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-476739/", + "id": 476739, + "name": "Superpower - Fly Robin, Fly", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-38-superpower-fly-robin-fly/4000-476739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473583/", + "id": 473583, + "name": "Robin Rises, Part Five: Black Hole Son", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-37-robin-rises-part-five-black-ho/4000-473583/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-470365/", + "id": 470365, + "name": "Robin Rises Part Four: Chaos", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-36-robin-rises-part-four-chaos/4000-470365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-468016/", + "id": 468016, + "name": "Robin Rises Part Three: Hellbound", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-35-robin-rises-part-three-hellbou/4000-468016/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-473618/", + "id": 473618, + "name": "Volume 5: The Big Burn", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-5-volume-5-the-big-burn/4000-473618/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-465789/", + "id": 465789, + "name": "Brothers in Arms", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-futures-end-1-brothers-in-arms/4000-465789/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-462846/", + "id": 462846, + "name": "Robin Rises Part Two: Ties That Bind", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-34-robin-rises-part-two-ties-that/4000-462846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-460260/", + "id": 460260, + "name": "Robin Rises, Part One: Cold Justice", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-33-robin-rises-part-one-cold-just/4000-460260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-456496/", + "id": 456496, + "name": "The Hunt for Robin: Dark of the Son", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-32-the-hunt-for-robin-dark-of-the/4000-456496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-453354/", + "id": 453354, + "name": "The Hunt for Robin: City of Cold", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-31-the-hunt-for-robin-city-of-col/4000-453354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-459664/", + "id": 459664, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-batman-j-h-williams-iii-1-hc/4000-459664/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-450511/", + "id": 450511, + "name": "The Hunt for Robin: Paradise and Wonder", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-30-the-hunt-for-robin-paradise-an/4000-450511/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-455469/", + "id": 455469, + "name": "Volume 4: Requiem For Damian", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-4-volume-4-requiem-for-damian/4000-455469/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-447948/", + "id": 447948, + "name": "The Hunt for Robin: Devil and the Deep Blue Sea", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-29-the-hunt-for-robin-devil-and-t/4000-447948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-445763/", + "id": 445763, + "name": "The Big Burn: Inferno", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-28-the-big-burn-inferno/4000-445763/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-442870/", + "id": 442870, + "name": "The Big Burn: Ablaze", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-27-the-big-burn-ablaze/4000-442870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443938/", + "id": 443938, + "name": "Batman and Robin: Week One", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-annual-2-batman-and-robin-week-on/4000-443938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-443940/", + "id": 443940, + "name": "Book Four: Full Circle", + "site_detail_url": "https://comicvine.gamespot.com/damian-son-of-batman-4-book-four-full-circle/4000-443940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-437417/", + "id": 437417, + "name": "The Big Burn: Ignition", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-26-the-big-burn-ignition/4000-437417/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-433786/", + "id": 433786, + "name": "The Big Burn: Sparks", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-25-the-big-burn-sparks/4000-433786/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428251/", + "id": 428251, + "name": "Batman Death March", + "site_detail_url": "https://comicvine.gamespot.com/forever-evil-arkham-war-1-batman-death-march/4000-428251/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-436184/", + "id": 436184, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus-1-hc/4000-436184/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-503333/", + "id": 503333, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-dark-knight-18/4000-503333/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-428823/", + "id": 428823, + "name": "The Big Burn: First Strike", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-24-the-big-burn-first-strike/4000-428823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-425893/", + "id": 425893, + "name": "The Demon's Tower", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-23-3-the-demon-s-tower/4000-425893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-426806/", + "id": 426806, + "name": "Blood in the Water", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-23-4-blood-in-the-water/4000-426806/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-435038/", + "id": 435038, + "name": "Volume 3: Death of the Family", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-3-volume-3-death-of-the-family/4000-435038/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-446882/", + "id": 446882, + "name": "Jokers Todesspiel", + "site_detail_url": "https://comicvine.gamespot.com/batman-robin-3-jokers-todesspiel/4000-446882/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424494/", + "id": 424494, + "name": "A Rising Star of Red!", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-dark-knight-23-1-a-rising-star-of-red/4000-424494/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-424985/", + "id": 424985, + "name": "Exquisite Dread", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-23-2-exquisite-dread/4000-424985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-423635/", + "id": 423635, + "name": "Split Screen", + "site_detail_url": "https://comicvine.gamespot.com/batman-superman-3-split-screen/4000-423635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-422432/", + "id": 422432, + "name": "Acceptance", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-23-acceptance/4000-422432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-417791/", + "id": 417791, + "name": "Despair", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-22-despair/4000-417791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-411784/", + "id": 411784, + "name": "The Bargain", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-21-the-bargain/4000-411784/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-401171/", + "id": 401171, + "name": "Rage", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-20-rage/4000-401171/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-396588/", + "id": 396588, + "name": "Denial", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-19-denial/4000-396588/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-408981/", + "id": 408981, + "name": "Volume 2: Pearl", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-2-volume-2-pearl/4000-408981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-392309/", + "id": 392309, + "name": "Undone", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-18-undone/4000-392309/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-386089/", + "id": 386089, + "name": "Life is But a Dream", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-17-life-is-but-a-dream/4000-386089/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-403280/", + "id": 403280, + "name": "Terminus", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-2-terminus/4000-403280/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-380317/", + "id": 380317, + "name": "Cast a Giant Shadow", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-16-cast-a-giant-shadow/4000-380317/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-395491/", + "id": 395491, + "name": "Batman: Night of the Owls", + "site_detail_url": "https://comicvine.gamespot.com/dc-definitive-edition-1301-batman-night-of-the-owl/4000-395491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-372335/", + "id": 372335, + "name": "Little Big Man", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-15-little-big-man/4000-372335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-387249/", + "id": 387249, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-deluxe-edition-1-hc/4000-387249/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419929/", + "id": 419929, + "name": "¡La Guerra de los Robins!", + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin-3-la-guerra-de-los-robins/4000-419929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-367687/", + "id": 367687, + "name": "Devoured", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-14-devoured/4000-367687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-360792/", + "id": 360792, + "name": "Eclipsed", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-13-eclipsed/4000-360792/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-374635/", + "id": 374635, + "name": "Brightest Day", + "site_detail_url": "https://comicvine.gamespot.com/dc-absolute-edition-2-brightest-day/4000-374635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356720/", + "id": 356720, + "name": "Someday Never Comes", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-0-someday-never-comes/4000-356720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-403279/", + "id": 403279, + "name": "Geboren zum Töten", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-1-geboren-zum-toten/4000-403279/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-349622/", + "id": 349622, + "name": "Terminus Last Gasp", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-12-terminus-last-gasp/4000-349622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-419928/", + "id": 419928, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin-2/4000-419928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-345343/", + "id": 345343, + "name": "Terminus Branded", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-11-terminus-branded/4000-345343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-340149/", + "id": 340149, + "name": "Terminus, Scar of the Bat", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-10-terminus-scar-of-the-bat/4000-340149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-344164/", + "id": 344164, + "name": "Volume 1: Born to Kill", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-1-volume-1-born-to-kill/4000-344164/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-335018/", + "id": 335018, + "name": "Robin Hears a Hoo", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-9-robin-hears-a-hoo/4000-335018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-329215/", + "id": 329215, + "name": "Born to Kill: Black Dawn", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-8-born-to-kill-black-dawn/4000-329215/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-343072/", + "id": 343072, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin-1/4000-343072/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-321188/", + "id": 321188, + "name": "Driven", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-7-driven/4000-321188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-314711/", + "id": 314711, + "name": "The Real Me", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-6-the-real-me/4000-314711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-310553/", + "id": 310553, + "name": "Mutineer", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-5-mutineer/4000-310553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306480/", + "id": 306480, + "name": "Matter of Trust", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-4-matter-of-trust/4000-306480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-326658/", + "id": 326658, + "name": "Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-omnibus-by-geoff-johns-1-vol-1/4000-326658/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-350269/", + "id": 350269, + "name": "Volume 2: Starring The Hawk And The Dove", + "site_detail_url": "https://comicvine.gamespot.com/steve-ditko-omnibus-2-volume-2-starring-the-hawk-a/4000-350269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-356426/", + "id": 356426, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-1-tpb/4000-356426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301535/", + "id": 301535, + "name": "Knightmoves", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-3-knightmoves/4000-301535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313102/", + "id": 313102, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-dark-knight-vs-white-knight-1-vol/4000-313102/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313241/", + "id": 313241, + "name": "Chase TPB", + "site_detail_url": "https://comicvine.gamespot.com/chase-1-chase-tpb/4000-313241/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-294840/", + "id": 294840, + "name": "Bad Blood", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-2-bad-blood/4000-294840/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-292562/", + "id": 292562, + "name": "Born to Kill", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-1-born-to-kill/4000-292562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309982/", + "id": 309982, + "name": "Vol. 11", + "site_detail_url": "https://comicvine.gamespot.com/jonah-hex-bury-me-in-hell-1-vol-11/4000-309982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309378/", + "id": 309378, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-the-movie-prequels-1-tpb/4000-309378/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-283920/", + "id": 283920, + "name": "Weird Western", + "site_detail_url": "https://comicvine.gamespot.com/jonah-hex-70-weird-western/4000-283920/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-286176/", + "id": 286176, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day-3-volume-3/4000-286176/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-270254/", + "id": 270254, + "name": "100-Page Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-son-of-superman-1-100-page-spec/4000-270254/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-274516/", + "id": 274516, + "name": "A Small Unremarkable Planet", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-movie-prequel-abin-sur-1-a-small-unr/4000-274516/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268723/", + "id": 268723, + "name": "War of the Green Lanterns, Part Four", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-65-war-of-the-green-lanterns-part-fo/4000-268723/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268212/", + "id": 268212, + "name": "Dark Knight vs. White Knight: Tree of Blood, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-22-dark-knight-vs-white-knight-tr/4000-268212/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-268974/", + "id": 268974, + "name": "Brightest Day", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day-24-brightest-day/4000-268974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-475037/", + "id": 475037, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/starman-2/4000-475037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-265495/", + "id": 265495, + "name": "Dark Knight vs. White Knight, Part 2 of 3: Tree of Blood", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-21-dark-knight-vs-white-knight-pa/4000-265495/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261127/", + "id": 261127, + "name": "Dark Knight vs. White Knight, Part 1 of 3: Tree of Blood", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-20-dark-knight-vs-white-knight-pa/4000-261127/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-263849/", + "id": 263849, + "name": "DC Comics Presents: Batman Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-batman-conspiracy-1-dc-comics-p/4000-263849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-264821/", + "id": 264821, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day-2-volume-2/4000-264821/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-247373/", + "id": 247373, + "name": "Whatever Happened to the Manhunter from Mars?", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day-15-whatever-happened-to-the-manhunte/4000-247373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-250640/", + "id": 250640, + "name": "All the Rage, Part Two of Two", + "site_detail_url": "https://comicvine.gamespot.com/batman-annual-28-all-the-rage-part-two-of-two/4000-250640/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259584/", + "id": 259584, + "name": "HC", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-the-deluxe-editio/4000-259584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-313305/", + "id": 313305, + "name": "Volume Two", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory-2-volume-two/4000-313305/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241081/", + "id": 241081, + "name": "DC Comics Presents: Chase", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-chase-1-dc-comics-presents-chas/4000-241081/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246719/", + "id": 246719, + "name": "Of Friends & Enemies", + "site_detail_url": "https://comicvine.gamespot.com/the-outsiders-34-of-friends-enemies/4000-246719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300603/", + "id": 300603, + "name": "Vol. 6", + "site_detail_url": "https://comicvine.gamespot.com/outsiders-the-great-divide-1-vol-6/4000-300603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239026/", + "id": 239026, + "name": "All This Useless Beauty", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day-12-all-this-useless-beauty/4000-239026/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238432/", + "id": 238432, + "name": "DC Comics Presents: Brightest Day 100-Page Spectacular #1", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-brightest-day-1-dc-comics-prese/4000-238432/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-238131/", + "id": 238131, + "name": "Masquerade", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-5-masquerade/4000-238131/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-240418/", + "id": 240418, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/luthor-1-tpb/4000-240418/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218193/", + "id": 218193, + "name": "Absolute Promethea Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/absolute-promethea-2-absolute-promethea-vol-2/4000-218193/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-219973/", + "id": 219973, + "name": "Operation: Gunslinger, Part 3: Never Say Die; The Fox", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-10-operation-gunslinger-part-3-never-sa/4000-219973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-213925/", + "id": 213925, + "name": "Operation: Gunslinger; The Fox, Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-9-operation-gunslinger-the-fox-part-3/4000-213925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-301846/", + "id": 301846, + "name": "Volume One", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-one/4000-301846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201389/", + "id": 201389, + "name": "Operation Gunslinger, Part 1: Down Range; The Fox, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-7-operation-gunslinger-part-1-down-rang/4000-201389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249411/", + "id": 249411, + "name": "Absolute Green Lantern: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/absolute-green-lantern-rebirth-1-absolute-green-la/4000-249411/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196846/", + "id": 196846, + "name": "Rockets Red Glare Ghost part 3; Seeking Heat, Part 2 of 2", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-6-rockets-red-glare-ghost-part-3-seekin/4000-196846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-192697/", + "id": 192697, + "name": "Jungle Warfare: Ghosts, Part 2; Seeking Heat, Part 1 of 2", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-5-jungle-warfare-ghosts-part-2-seeking-/4000-192697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300928/", + "id": 300928, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-dance-1-tpb/4000-300928/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-182945/", + "id": 182945, + "name": "Hearts & Minds Kicking Down the Door part 3; Second Feature:Inferno-Burning Inside part 3 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-3-hearts-minds-kicking-down-the-door-pa/4000-182945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-300929/", + "id": 300929, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-1-tpb/4000-300929/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-176276/", + "id": 176276, + "name": "Kicking Down The Door, Part 2: Alpha Dogs; Burning Inside, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-2-kicking-down-the-door-part-2-alpha-do/4000-176276/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-252454/", + "id": 252454, + "name": "The Wrath", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-wrath-1-the-wrath/4000-252454/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-170795/", + "id": 170795, + "name": "Kicking Down The Door, Part 1; Burning Inside, Part 1 of 4", + "site_detail_url": "https://comicvine.gamespot.com/the-shield-1-kicking-down-the-door-part-1-burning-/4000-170795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-164166/", + "id": 164166, + "name": "Breaking Peace", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-3-breaking-peace/4000-164166/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218192/", + "id": 218192, + "name": "Absolute Promethea Vol. 1", + "site_detail_url": "https://comicvine.gamespot.com/absolute-promethea-1-absolute-promethea-vol-1/4000-218192/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159767/", + "id": 159767, + "name": "Part 2: Pawns", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-2-part-2-pawns/4000-159767/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157517/", + "id": 157517, + "name": "Part 1: The Electric City", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-1-part-1-the-electri/4000-157517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-157822/", + "id": 157822, + "name": "This Is How We Do It", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-dance-1-this-is-how-we-do-i/4000-157822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-198686/", + "id": 198686, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-omnibus-menace-revealed-1-tpb/4000-198686/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-318459/", + "id": 318459, + "name": "A League of Their Own", + "site_detail_url": "https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own-1-a-/4000-318459/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259636/", + "id": 259636, + "name": "Thy Kingdom Come: Part Three", + "site_detail_url": "https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-3-thy-/4000-259636/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150537/", + "id": 150537, + "name": "Compound Fracture", + "site_detail_url": "https://comicvine.gamespot.com/supermanbatman-annual-3-compound-fracture/4000-150537/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-236760/", + "id": 236760, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/starman-omnibus-2-vol-2/4000-236760/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142001/", + "id": 142001, + "name": "Stars In Your Eyes, Part 2", + "site_detail_url": "https://comicvine.gamespot.com/booster-gold-14-stars-in-your-eyes-part-2/4000-142001/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172977/", + "id": 172977, + "name": "Secret Invasion: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-secret-invasion-f/4000-172977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189473/", + "id": 189473, + "name": "The Real Me", + "site_detail_url": "https://comicvine.gamespot.com/jsa-kingdom-come-special-magog-1-the-real-me/4000-189473/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-189475/", + "id": 189475, + "name": "The Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/jsa-kingdom-come-special-the-kingdom-1-the-kingdom/4000-189475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-259635/", + "id": 259635, + "name": "Thy Kingdom Come: Part Two", + "site_detail_url": "https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-2-thy-/4000-259635/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140479/", + "id": 140479, + "name": "Stars In Your Eyes, Part 1", + "site_detail_url": "https://comicvine.gamespot.com/booster-gold-13-stars-in-your-eyes-part-1/4000-140479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136524/", + "id": 136524, + "name": "One World, Under Gog Part III: War Lords", + "site_detail_url": "https://comicvine.gamespot.com/justice-society-of-america-18-one-world-under-gog-/4000-136524/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-141427/", + "id": 141427, + "name": "HC/SC", + "site_detail_url": "https://comicvine.gamespot.com/joker-1-hcsc/4000-141427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-134595/", + "id": 134595, + "name": "No one gets back alive! Part 3: Escape from Fantasy Island", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-3-no-one-gets-back-/4000-134595/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-131504/", + "id": 131504, + "name": "No one gets back alive! Part 2", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-2-no-one-gets-back-/4000-131504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130245/", + "id": 130245, + "name": "No One Gets Back Alive! Part 1: Negative Energy", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-no-one-gets-back-/4000-130245/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127226/", + "id": 127226, + "name": "Wrath Child, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/batman-confidential-16-wrath-child-conclusion/4000-127226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133986/", + "id": 133986, + "name": "Dial H for Hero", + "site_detail_url": "https://comicvine.gamespot.com/teen-titans-go-52-dial-h-for-hero/4000-133986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127421/", + "id": 127421, + "name": "Wrath Child, Part One", + "site_detail_url": "https://comicvine.gamespot.com/batman-confidential-13-wrath-child-part-one/4000-127421/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120389/", + "id": 120389, + "name": "The Blood-Soaked Sands", + "site_detail_url": "https://comicvine.gamespot.com/countdown-arena-1-the-blood-soaked-sands/4000-120389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-209075/", + "id": 209075, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-new-gods-1-tpb/4000-209075/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267887/", + "id": 267887, + "name": "Volume 5", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-the-domin/4000-267887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114997/", + "id": 114997, + "name": "The Wanderers", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-30-the-wa/4000-114997/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114995/", + "id": 114995, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-28/4000-114995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-244818/", + "id": 244818, + "name": "HC/TPB", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-corps-to-be-a-lantern-1-hc-tpb/4000-244818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114994/", + "id": 114994, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-27/4000-114994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267886/", + "id": 267886, + "name": "Volume 4", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-adult-edu/4000-267886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114993/", + "id": 114993, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-26/4000-114993/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114978/", + "id": 114978, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-25/4000-114978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114977/", + "id": 114977, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-24/4000-114977/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114975/", + "id": 114975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-23/4000-114975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-249691/", + "id": 249691, + "name": "Lex Luthor: Man of Steel", + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor-man-of-steel-1-lex-luthor-man-of-steel/4000-249691/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-818982/", + "id": 818982, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/sette-soldati-della-vittoria-1/4000-818982/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-267799/", + "id": 267799, + "name": "Volume 3", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-strange-v/4000-267799/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-106850/", + "id": 106850, + "name": "Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-corps-3-homecoming/4000-106850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114972/", + "id": 114972, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-20/4000-114972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114916/", + "id": 114916, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-18/4000-114916/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114915/", + "id": 114915, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-17/4000-114915/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114907/", + "id": 114907, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-16/4000-114907/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309770/", + "id": 309770, + "name": "Volume 2", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream-2-volume-2/4000-309770/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255911/", + "id": 255911, + "name": "Vol. 3", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory-3-vol-3/4000-255911/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114963/", + "id": 114963, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-13/4000-114963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255908/", + "id": 255908, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-1/4000-255908/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114962/", + "id": 114962, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-12/4000-114962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-255910/", + "id": 255910, + "name": "Vol. 2", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory-2-vol-2/4000-255910/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-114923/", + "id": 114923, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-11/4000-114923/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108868/", + "id": 108868, + "name": "Zor", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-zatanna-4-zor/4000-108868/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-309762/", + "id": 309762, + "name": "Volume 1", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution-1-volume/4000-309762/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-336988/", + "id": 336988, + "name": "Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth-1-rebirth/4000-336988/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-99199/", + "id": 99199, + "name": "Mixed Signals", + "site_detail_url": "https://comicvine.gamespot.com/jsa-77-mixed-signals/4000-99199/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-191684/", + "id": 191684, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor-man-of-steel-5/4000-191684/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108867/", + "id": 108867, + "name": "Three Days of the Dead", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-zatanna-3-three-days-of-the-dead/4000-108867/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108866/", + "id": 108866, + "name": "A Book in the Beginning", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-zatanna-2-a-book-in-the-beginning/4000-108866/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196968/", + "id": 196968, + "name": "Book Five", + "site_detail_url": "https://comicvine.gamespot.com/promethea-5-book-five/4000-196968/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108704/", + "id": 108704, + "name": "Talking Backwards - Sdrawkcab Gniklat", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-zatanna-1-talking-backwards-sdrawkc/4000-108704/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105296/", + "id": 105296, + "name": "Fight the Power", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-4-fight-the-power/4000-105296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130088/", + "id": 130088, + "name": "Brightest Day", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth-6-brightest-day/4000-130088/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261306/", + "id": 261306, + "name": "Promethea Number Omega", + "site_detail_url": "https://comicvine.gamespot.com/promethea-covers-book-number-omega-o-promethea-num/4000-261306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-100873/", + "id": 100873, + "name": "Retroverse Two: Brother vs. Brother!", + "site_detail_url": "https://comicvine.gamespot.com/aquaman-27-retroverse-two-brother-vs-brother/4000-100873/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-130086/", + "id": 130086, + "name": "Rings", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth-5-rings/4000-130086/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-103849/", + "id": 103849, + "name": "Tomorrow's Heroes Today!", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-2-tomorrows-heroes-today/4000-103849/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98296/", + "id": 98296, + "name": "Escape", + "site_detail_url": "https://comicvine.gamespot.com/aquaman-25-escape/4000-98296/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98340/", + "id": 98340, + "name": "The Tower of Silence", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-35-the-tower-of-silence/4000-98340/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96793/", + "id": 96793, + "name": "And We Are Legion", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-1-and-we-are-legion/4000-96793/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98295/", + "id": 98295, + "name": "Plunder", + "site_detail_url": "https://comicvine.gamespot.com/aquaman-24-plunder/4000-98295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98339/", + "id": 98339, + "name": "The Gift", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-34-the-gift/4000-98339/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-97715/", + "id": 97715, + "name": "Joyride", + "site_detail_url": "https://comicvine.gamespot.com/firestorm-6-joyride/4000-97715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133275/", + "id": 133275, + "name": "Fates Warning (Part 4)", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-31-fates-warning-part-4/4000-133275/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96647/", + "id": 96647, + "name": "Past Tense", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-adventures-34-past-tense/4000-96647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133274/", + "id": 133274, + "name": "Fates Warning (Part 3)", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-30-fates-warning-part-3/4000-133274/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133273/", + "id": 133273, + "name": "Fates Warning (Part 2)", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-29-fates-warning-part-2/4000-133273/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-133272/", + "id": 133272, + "name": "Fates Warning (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-28-fates-warning-part-1/4000-133272/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105578/", + "id": 105578, + "name": "Everything Must Go!", + "site_detail_url": "https://comicvine.gamespot.com/promethea-30-everything-must-go/4000-105578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-105577/", + "id": 105577, + "name": "Valley of the Dolls", + "site_detail_url": "https://comicvine.gamespot.com/promethea-29-valley-of-the-dolls/4000-105577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-276363/", + "id": 276363, + "name": "Allies And Enemies", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-allies-and-enemies-1-allies-and-enemies/4000-276363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-880579/", + "id": 880579, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batman-bruce-wayne-auf-der-flucht-2/4000-880579/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-132643/", + "id": 132643, + "name": "Martian Manhunter to Zatanna", + "site_detail_url": "https://comicvine.gamespot.com/jla-z-3-martian-manhunter-to-zatanna/4000-132643/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120848/", + "id": 120848, + "name": "The DC Comics Encyclopedia", + "site_detail_url": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-284198/", + "id": 284198, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/batman-bruce-wayne-morder-2/4000-284198/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-880592/", + "id": 880592, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-nach-dem-feuer-3/4000-880592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-196966/", + "id": 196966, + "name": "Book Four", + "site_detail_url": "https://comicvine.gamespot.com/promethea-4-book-four/4000-196966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151362/", + "id": 151362, + "name": "Killers (Part 1)", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-13-killers-part-1/4000-151362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-315079/", + "id": 315079, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-1-tpb/4000-315079/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-203730/", + "id": 203730, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/bruce-wayne-fugitive-2/4000-203730/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175485/", + "id": 175485, + "name": "The Day Before", + "site_detail_url": "https://comicvine.gamespot.com/jlajsa-secret-files-origins-1-the-day-before/4000-175485/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-143491/", + "id": 143491, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-168493/", + "id": 168493, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/green-arrow-secret-files-and-origins-1/4000-168493/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-211895/", + "id": 211895, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-secret-files-and-origins-1/4000-211895/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-175057/", + "id": 175057, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/batgirl-secret-files-and-origins-1/4000-175057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-159157/", + "id": 159157, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-3/4000-159157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78434/", + "id": 78434, + "name": "Hard-Loving Heroes", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-secret-files-and-origins-3-hard-lovi/4000-78434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-201506/", + "id": 201506, + "name": "TPB", + "site_detail_url": "https://comicvine.gamespot.com/batman-bruce-wayne-murderer-1-tpb/4000-201506/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-84992/", + "id": 84992, + "name": "Book Three", + "site_detail_url": "https://comicvine.gamespot.com/promethea-3-book-three/4000-84992/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113283/", + "id": 113283, + "name": "Purity (Part 1); Lost Voices (Part 6);", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-768-purity-part-1-lost-voices-par/4000-113283/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113282/", + "id": 113282, + "name": "Timeles; Lost Voices (Part 5);", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-767-timeles-lost-voices-part-5/4000-113282/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174505/", + "id": 174505, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones-3/4000-174505/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-89257/", + "id": 89257, + "name": "Now, More Than Ever--For Truth, Justice & The American Way!", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-superman-600-now-more-than-ever-for-/4000-89257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108330/", + "id": 108330, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-millennial-visions-1/4000-108330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174504/", + "id": 174504, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones-2/4000-174504/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80605/", + "id": 80605, + "name": "Red Glare!", + "site_detail_url": "https://comicvine.gamespot.com/promethea-18-red-glare/4000-80605/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-127290/", + "id": 127290, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones-1/4000-127290/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-303970/", + "id": 303970, + "name": "Divided We Fall", + "site_detail_url": "https://comicvine.gamespot.com/jla-divided-we-fall-1-divided-we-fall/4000-303970/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80604/", + "id": 80604, + "name": "Gold", + "site_detail_url": "https://comicvine.gamespot.com/promethea-17-gold/4000-80604/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-228818/", + "id": 228818, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/joker-last-laugh-secret-files-1/4000-228818/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140291/", + "id": 140291, + "name": "Rogues; Moments Too Late", + "site_detail_url": "https://comicvine.gamespot.com/flash-secret-files-3-rogues-moments-too-late/4000-140291/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80603/", + "id": 80603, + "name": "Love and the Law", + "site_detail_url": "https://comicvine.gamespot.com/promethea-16-love-and-the-law/4000-80603/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51449/", + "id": 51449, + "name": "Breaking Storms", + "site_detail_url": "https://comicvine.gamespot.com/jsa-secret-files-2-breaking-storms/4000-51449/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51232/", + "id": 51232, + "name": "The Hunted Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-166-the-hunted-conclusion/4000-51232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80602/", + "id": 80602, + "name": "Mercury Rising", + "site_detail_url": "https://comicvine.gamespot.com/promethea-15-mercury-rising/4000-80602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82535/", + "id": 82535, + "name": "Book Two", + "site_detail_url": "https://comicvine.gamespot.com/promethea-2-book-two/4000-82535/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94059/", + "id": 94059, + "name": "My Brother, My Enemy", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop-genesis-4-my-brother-my-enemy/4000-94059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80601/", + "id": 80601, + "name": "Moon River", + "site_detail_url": "https://comicvine.gamespot.com/promethea-14-moon-river/4000-80601/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94061/", + "id": 94061, + "name": "What Goes 'Round Comes 'Round!", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop-genesis-6-what-goes-round-comes-roun/4000-94061/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94060/", + "id": 94060, + "name": "Are We Ourselves", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop-genesis-5-are-we-ourselves/4000-94060/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94058/", + "id": 94058, + "name": "That's Stryfe That's What People Say", + "site_detail_url": "https://comicvine.gamespot.com/gambit-and-bishop-3-thats-stryfe-thats-what-people/4000-94058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51228/", + "id": 51228, + "name": "The Best There Is Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-161-the-best-there-is-part-3-of-3/4000-51228/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94057/", + "id": 94057, + "name": "Enter... The Witness", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop-genesis-2-enter-the-witness/4000-94057/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80600/", + "id": 80600, + "name": "The Fields We Know", + "site_detail_url": "https://comicvine.gamespot.com/promethea-13-the-fields-we-know/4000-80600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51227/", + "id": 51227, + "name": "The Best There Is Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-160-the-best-there-is-part-2-of-3/4000-51227/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-94056/", + "id": 94056, + "name": "I See A Bad Moon Rising", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop-genesis-1-i-see-a-bad-moon-rising/4000-94056/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46894/", + "id": 46894, + "name": "The Magic Theater: A Pop Art Happening", + "site_detail_url": "https://comicvine.gamespot.com/promethea-12-the-magic-theater-a-pop-art-happening/4000-46894/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46893/", + "id": 46893, + "name": "Under Attack!", + "site_detail_url": "https://comicvine.gamespot.com/promethea-11-under-attack/4000-46893/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-66953/", + "id": 66953, + "name": "The Queen of Fables, Part 2 of 3: Truth is Stranger", + "site_detail_url": "https://comicvine.gamespot.com/jla-48-the-queen-of-fables-part-2-of-3-truth-is-st/4000-66953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46892/", + "id": 46892, + "name": "Sex Stars, and Serpents", + "site_detail_url": "https://comicvine.gamespot.com/promethea-10-sex-stars-and-serpents/4000-46892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96381/", + "id": 96381, + "name": "Witch's Son/Die, Fish, Die", + "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents-157-witchs-sondie-fish-die/4000-96381/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46891/", + "id": 46891, + "name": "Bringing Down the Temple!", + "site_detail_url": "https://comicvine.gamespot.com/promethea-9-bringing-down-the-temple/4000-46891/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123750/", + "id": 123750, + "name": "Something Worth Fighting For", + "site_detail_url": "https://comicvine.gamespot.com/magneto-dark-seduction-3-something-worth-fighting-/4000-123750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-108260/", + "id": 108260, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/x-men-millennial-visions-1/4000-108260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-96380/", + "id": 96380, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents-156/4000-96380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82534/", + "id": 82534, + "name": "Book One", + "site_detail_url": "https://comicvine.gamespot.com/promethea-1-book-one/4000-82534/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46890/", + "id": 46890, + "name": "Guys and Dolls", + "site_detail_url": "https://comicvine.gamespot.com/promethea-8-guys-and-dolls/4000-46890/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-151460/", + "id": 151460, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-i-hate-it-here-1/4000-151460/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46889/", + "id": 46889, + "name": "Rocks and Hard Places", + "site_detail_url": "https://comicvine.gamespot.com/promethea-7-rocks-and-hard-places/4000-46889/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46888/", + "id": 46888, + "name": "A Warrior Princess of Hy Brasil", + "site_detail_url": "https://comicvine.gamespot.com/promethea-6-a-warrior-princess-of-hy-brasil/4000-46888/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-199682/", + "id": 199682, + "name": "Here and Now", + "site_detail_url": "https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe-/4000-199682/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46887/", + "id": 46887, + "name": "Weapon for Liberty", + "site_detail_url": "https://comicvine.gamespot.com/promethea-5-weapon-for-liberty/4000-46887/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-261542/", + "id": 261542, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-17/4000-261542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-123076/", + "id": 123076, + "name": "HC/SC", + "site_detail_url": "https://comicvine.gamespot.com/son-of-superman-1-hcsc/4000-123076/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46886/", + "id": 46886, + "name": "A Faerie Romance", + "site_detail_url": "https://comicvine.gamespot.com/promethea-4-a-faerie-romance/4000-46886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46885/", + "id": 46885, + "name": "Misty Magic Land", + "site_detail_url": "https://comicvine.gamespot.com/promethea-3-misty-magic-land/4000-46885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46884/", + "id": 46884, + "name": "The Judgment of Solomon!", + "site_detail_url": "https://comicvine.gamespot.com/promethea-2-the-judgment-of-solomon/4000-46884/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51448/", + "id": 51448, + "name": "Gathering Storms;Lost Pages:Black Canary & Doctor Fate in Dead Ends;History 101", + "site_detail_url": "https://comicvine.gamespot.com/jsa-secret-files-1-gathering-stormslost-pagesblack/4000-51448/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-46883/", + "id": 46883, + "name": "The Radiant Heavenly City", + "site_detail_url": "https://comicvine.gamespot.com/promethea-1-the-radiant-heavenly-city/4000-46883/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-69285/", + "id": 69285, + "name": "The Dissing", + "site_detail_url": "https://comicvine.gamespot.com/the-titans-4-the-dissing/4000-69285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-172544/", + "id": 172544, + "name": "The Evil that We Do", + "site_detail_url": "https://comicvine.gamespot.com/dcu-villains-secret-files-and-origins-1-the-evil-t/4000-172544/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174969/", + "id": 174969, + "name": "\"Spies Like Us\"; A Guide to Resurrection Man's Powers; An Anarky Primer; Vext: The Formative Years; Lost Pages; Stars and S.T.R.I.P.E. Yearbook", + "site_detail_url": "https://comicvine.gamespot.com/dcu-heroes-secret-files-1-spies-like-us-a-guide-to/4000-174969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-291024/", + "id": 291024, + "name": "Starman: Times Past", + "site_detail_url": "https://comicvine.gamespot.com/starman-times-past-1-starman-times-past/4000-291024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45594/", + "id": 45594, + "name": "Dreams End", + "site_detail_url": "https://comicvine.gamespot.com/x-man-47-dreams-end/4000-45594/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45556/", + "id": 45556, + "name": "Stormfront", + "site_detail_url": "https://comicvine.gamespot.com/x-man-46-stormfront/4000-45556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-241690/", + "id": 241690, + "name": "Legends of the DC Universe 3-D", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-the-dc-universe-3-d-1-legends-of-the-dc/4000-241690/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45431/", + "id": 45431, + "name": "Don't Believe It!", + "site_detail_url": "https://comicvine.gamespot.com/chase-1000000-dont-believe-it/4000-45431/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-47226/", + "id": 47226, + "name": "Time On My Hands", + "site_detail_url": "https://comicvine.gamespot.com/chronos-1000000-time-on-my-hands/4000-47226/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45367/", + "id": 45367, + "name": "Reflections In Emerald", + "site_detail_url": "https://comicvine.gamespot.com/chase-9-reflections-in-emerald/4000-45367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45295/", + "id": 45295, + "name": "The Unmasking!", + "site_detail_url": "https://comicvine.gamespot.com/chase-8-the-unmasking/4000-45295/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120458/", + "id": 120458, + "name": "Brightest Light; Darkest Light; Know Evil", + "site_detail_url": "https://comicvine.gamespot.com/tangent-comics-tales-of-the-green-lantern-1-bright/4000-120458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45207/", + "id": 45207, + "name": "Shadowing the Bat", + "site_detail_url": "https://comicvine.gamespot.com/chase-7-shadowing-the-bat/4000-45207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45257/", + "id": 45257, + "name": "Mental Block", + "site_detail_url": "https://comicvine.gamespot.com/the-creeper-9-mental-block/4000-45257/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-68985/", + "id": 68985, + "name": "Blood Wedding", + "site_detail_url": "https://comicvine.gamespot.com/wolverine-126-blood-wedding/4000-68985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-78433/", + "id": 78433, + "name": "Guy Talk", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-secret-files-1-guy-talk/4000-78433/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-174963/", + "id": 174963, + "name": "Girl's Day Out", + "site_detail_url": "https://comicvine.gamespot.com/chase-6-girl-s-day-out/4000-174963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-45014/", + "id": 45014, + "name": "Better Days", + "site_detail_url": "https://comicvine.gamespot.com/chase-5-better-days/4000-45014/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44926/", + "id": 44926, + "name": "Weep For The Future", + "site_detail_url": "https://comicvine.gamespot.com/chase-4-weep-for-the-future/4000-44926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-218225/", + "id": 218225, + "name": null, + "site_detail_url": "https://comicvine.gamespot.com/starman-secret-files-and-origins-1/4000-218225/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44845/", + "id": 44845, + "name": "Pickups", + "site_detail_url": "https://comicvine.gamespot.com/chase-3-pickups/4000-44845/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-290885/", + "id": 290885, + "name": "Starman: A Wicked Inclination", + "site_detail_url": "https://comicvine.gamespot.com/starman-a-wicked-inclination-1-starman-a-wicked-in/4000-290885/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44749/", + "id": 44749, + "name": "Letdowns", + "site_detail_url": "https://comicvine.gamespot.com/chase-2-letdowns/4000-44749/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-44644/", + "id": 44644, + "name": "Baptized in Fire", + "site_detail_url": "https://comicvine.gamespot.com/chase-1-baptized-in-fire/4000-44644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-306358/", + "id": 306358, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/batman-special-2/4000-306358/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120435/", + "id": 120435, + "name": "\"From Beyond The Unknown\"", + "site_detail_url": "https://comicvine.gamespot.com/tangent-comics-green-lantern-1-from-beyond-the-unk/4000-120435/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-120450/", + "id": 120450, + "name": "Secrets & Lies", + "site_detail_url": "https://comicvine.gamespot.com/tangent-comics-metal-men-1-secrets-lies/4000-120450/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140289/", + "id": 140289, + "name": "A Run of Luck; Fast as Fast Can Be; The Case of the Screaming Skull;", + "site_detail_url": "https://comicvine.gamespot.com/flash-secret-files-1-a-run-of-luck-fast-as-fast-ca/4000-140289/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43850/", + "id": 43850, + "name": "Hell Breaks Loose", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-127-hell-breaks-loose/4000-43850/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43669/", + "id": 43669, + "name": "Rupert and Marguerite: 1865 & 1931", + "site_detail_url": "https://comicvine.gamespot.com/the-shade-2-rupert-and-marguerite-1865-1931/4000-43669/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-316548/", + "id": 316548, + "name": "The Batman Chronicles Gallery", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-chronicles-gallery-1-the-batman-chronic/4000-316548/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-82306/", + "id": 82306, + "name": "The Screams of the Green Dragon", + "site_detail_url": "https://comicvine.gamespot.com/batman-annual-21-the-screams-of-the-green-dragon/4000-82306/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-142606/", + "id": 142606, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/justice-riders-1/4000-142606/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-43256/", + "id": 43256, + "name": "To Hell and Back, Conclusion", + "site_detail_url": "https://comicvine.gamespot.com/starman-26-to-hell-and-back-conclusion/4000-43256/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42952/", + "id": 42952, + "name": "Conspiracy Part 3 of 3", + "site_detail_url": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-88-conspiracy-pa/4000-42952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42956/", + "id": 42956, + "name": "Light in Darkness", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-80-light-in-darkness/4000-42956/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42856/", + "id": 42856, + "name": "Conspiracy Part 2 of 3", + "site_detail_url": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-87-conspiracy-pa/4000-42856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-42769/", + "id": 42769, + "name": "Conspiracy Part 1 of 3", + "site_detail_url": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-86-conspiracy-pa/4000-42769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-98681/", + "id": 98681, + "name": "Badblood - Part One", + "site_detail_url": "https://comicvine.gamespot.com/bloodshot-47-badblood-part-one/4000-98681/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107018/", + "id": 107018, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/battlezones-dream-team-2-1/4000-107018/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41854/", + "id": 41854, + "name": "Legends of the Dead Earth", + "site_detail_url": "https://comicvine.gamespot.com/starman-annual-1-legends-of-the-dead-earth/4000-41854/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41948/", + "id": 41948, + "name": "Constant Whitewater", + "site_detail_url": "https://comicvine.gamespot.com/batman-526-constant-whitewater/4000-41948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-246320/", + "id": 246320, + "name": "Jack Kirby's Fourth World Gallery", + "site_detail_url": "https://comicvine.gamespot.com/jack-kirbys-fourth-world-gallery-1-jack-kirbys-fou/4000-246320/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41900/", + "id": 41900, + "name": "Silent Running", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-annual-9-silent-running/4000-41900/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-136327/", + "id": 136327, + "name": "Wired!", + "site_detail_url": "https://comicvine.gamespot.com/steel-23-wired/4000-136327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-135963/", + "id": 135963, + "name": "Over Dark Evil", + "site_detail_url": "https://comicvine.gamespot.com/underworld-unleashed-abyss-hells-sentinel-1-over-d/4000-135963/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-116721/", + "id": 116721, + "name": "The Official Comic Book Adaptation of the Hit Film", + "site_detail_url": "https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie-1-the-offic/4000-116721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-41113/", + "id": 41113, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fury-of-shield-4/4000-41113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40975/", + "id": 40975, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fury-of-shield-3/4000-40975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40851/", + "id": 40851, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/fury-of-shield-2/4000-40851/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40817/", + "id": 40817, + "name": "Chok II", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-task-force-23-chok-ii/4000-40817/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64981/", + "id": 64981, + "name": "Fire Of Freedom", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-4-fire-of-freedom/4000-64981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-40688/", + "id": 40688, + "name": "Chokula", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-task-force-22-chokula/4000-40688/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107412/", + "id": 107412, + "name": "The Cage", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-100-the-cage/4000-107412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64978/", + "id": 64978, + "name": "Stolen Lives", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-3-stolen-lives/4000-64978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-64975/", + "id": 64975, + "name": "Targets", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-2-targets/4000-64975/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107480/", + "id": 107480, + "name": "Last Entry Part 1: Road to Death; Trouble Part 5: Father's Day", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-71-last-entry-part-1-road/4000-107480/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-65611/", + "id": 65611, + "name": "Power and Responsibility, Part 4: Higher Ground; The Double, Part Four: The Burial", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man-217-power-and-responsib/4000-65611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107476/", + "id": 107476, + "name": "Pariah Part 5: Strict Time!; Trouble Part 3: Homecoming", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-69-pariah-part-5-strict-t/4000-107476/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357116/", + "id": 357116, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/phantom-force-6/4000-357116/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107475/", + "id": 107475, + "name": "Pariah Part 4: Bad Turn; Trouble Part 2: Family Values", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-68-pariah-part-4-bad-turn/4000-107475/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-357114/", + "id": 357114, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/phantom-force-4/4000-357114/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77439/", + "id": 77439, + "name": "Pariah Part Three; Trouble Part One: Return of the Prodigal", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-67-pariah-part-three-trou/4000-77439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77438/", + "id": 77438, + "name": "Pariah Part Two; Last Exit", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-66-pariah-part-two-last-e/4000-77438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-77437/", + "id": 77437, + "name": "Pariah Part One: Pariah!", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal-65-pariah-part-one-pariah/4000-77437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107327/", + "id": 107327, + "name": "Suicide Run Part 9: Past The Point Of Rescue", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-88-suicide-run-part-9-past-the-point-/4000-107327/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107326/", + "id": 107326, + "name": "Suicide Run Part 6: False Moves", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-87-suicide-run-part-6-false-moves/4000-107326/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107323/", + "id": 107323, + "name": "Suicide Run, Part 3: Deadline", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-86-suicide-run-part-3-deadline/4000-107323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107427/", + "id": 107427, + "name": "Suicide Run Part 0: Smoke & Fire", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-85-suicide-run-part-0-smoke-fire/4000-107427/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-38270/", + "id": 38270, + "name": "The Whispers Scream", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited-3-the-whispers-scream/4000-38270/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107426/", + "id": 107426, + "name": "Firefight: Part 3", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-84-firefight-part-3/4000-107426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107425/", + "id": 107425, + "name": "Firefight: Part 2", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-83-firefight-part-2/4000-107425/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-91553/", + "id": 91553, + "name": "Savage Return", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk-32-savage-return/4000-91553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107424/", + "id": 107424, + "name": "Firefight: Part 1", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-82-firefight-part-1/4000-107424/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-231936/", + "id": 231936, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog-4/4000-231936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107441/", + "id": 107441, + "name": "Psychoville U.S.A. Part 5: Empty Nest", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone-16-psychoville-usa-part-5-em/4000-107441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107440/", + "id": 107440, + "name": "Psychoville U.S.A. Part 4: Father Knows Best", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone-15-psychoville-usa-part-4-fa/4000-107440/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107439/", + "id": 107439, + "name": "Psychoville U.S.A. Part 3: My Two Dads", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone-14-psychoville-usa-part-3-my/4000-107439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107438/", + "id": 107438, + "name": "Psychoville U.S.A. Part 2: Happy Days", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone-13-psychoville-usa-part-2-ha/4000-107438/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-107437/", + "id": 107437, + "name": "Psychoville U.S.A. Part 1: Family Ties", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone-12-psychoville-usa-part-1-fa/4000-107437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-117528/", + "id": 117528, + "name": "Quarry; Air Strike; One Day At A Time ", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-annual-2-quarry-air-strike-one-day-at-a-t/4000-117528/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33654/", + "id": 33654, + "name": "Run Like Hell", + "site_detail_url": "https://comicvine.gamespot.com/the-griffin-5-run-like-hell/4000-33654/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33649/", + "id": 33649, + "name": "The Drums of War", + "site_detail_url": "https://comicvine.gamespot.com/the-griffin-4-the-drums-of-war/4000-33649/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33644/", + "id": 33644, + "name": "Standing in the Ashes", + "site_detail_url": "https://comicvine.gamespot.com/the-griffin-3-standing-in-the-ashes/4000-33644/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33631/", + "id": 33631, + "name": "Old Wounds", + "site_detail_url": "https://comicvine.gamespot.com/the-griffin-2-old-wounds/4000-33631/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-33621/", + "id": 33621, + "name": "The Griffin Returns", + "site_detail_url": "https://comicvine.gamespot.com/the-griffin-1-the-griffin-returns/4000-33621/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-145406/", + "id": 145406, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/hero-sandwich-5/4000-145406/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29689/", + "id": 29689, + "name": "Getting to 99 Pt. 1; The Adventures of Zot! in Dimension 10 ½ 19", + "site_detail_url": "https://comicvine.gamespot.com/zot-19-getting-to-99-pt-1-the-adventures-of-zot-in/4000-29689/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-29747/", + "id": 29747, + "name": "Getting to 99 Pt. 2; The Adventures of Zot! in Dimension 10 ½ 20", + "site_detail_url": "https://comicvine.gamespot.com/zot-20-getting-to-99-pt-2-the-adventures-of-zot-in/4000-29747/" + } + ], + "name": "Mick Gray", + "site_detail_url": "https://comicvine.gamespot.com/mick-gray/4040-1252/", + "story_arc_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58773/", + "id": 58773, + "name": "\"X-Men\" Apocalypse Wars", + "site_detail_url": "https://comicvine.gamespot.com/x-men-apocalypse-wars/4045-58773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59892/", + "id": 59892, + "name": "\"Cable\" The Dark Ride", + "site_detail_url": "https://comicvine.gamespot.com/cable-the-dark-ride/4045-59892/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60978/", + "id": 60978, + "name": "\"Avengers/X-Men/Eternals\" A.X.E.: Judgment Day", + "site_detail_url": "https://comicvine.gamespot.com/avengersx-meneternals-axe-judgment-day/4045-60978/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60353/", + "id": 60353, + "name": "\"Justice League\" DCeased", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-dceased/4045-60353/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-61044/", + "id": 61044, + "name": "\"DC Universe\" Lazarus Planet", + "site_detail_url": "https://comicvine.gamespot.com/dc-universe-lazarus-planet/4045-61044/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60984/", + "id": 60984, + "name": "\"X-Men\" Destiny of X", + "site_detail_url": "https://comicvine.gamespot.com/x-men-destiny-of-x/4045-60984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-52856/", + "id": 52856, + "name": "\"Batman\" Batman & Son", + "site_detail_url": "https://comicvine.gamespot.com/batman-batman-and-son/4045-52856/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59936/", + "id": 59936, + "name": "\"2000 AD\" Invasion!", + "site_detail_url": "https://comicvine.gamespot.com/2000-ad-invasion/4045-59936/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57578/", + "id": 57578, + "name": "\"2000 AD\" M.A.C.H.1", + "site_detail_url": "https://comicvine.gamespot.com/2000-ad-mach1/4045-57578/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59137/", + "id": 59137, + "name": "\"2000 AD\" Harlem Heroes", + "site_detail_url": "https://comicvine.gamespot.com/2000-ad-harlem-heroes/4045-59137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60403/", + "id": 60403, + "name": "\"2000 AD\" Tharg's Future Shocks", + "site_detail_url": "https://comicvine.gamespot.com/2000-ad-thargs-future-shocks/4045-60403/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58807/", + "id": 58807, + "name": "\"Weekly Shonen Jump\" Kujira Daigo", + "site_detail_url": "https://comicvine.gamespot.com/weekly-shonen-jump-kujira-daigo/4045-58807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59002/", + "id": 59002, + "name": "\"Black Jack\" Aru Kyōshi to Seito", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-aru-kyoshi-to-seito/4045-59002/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-61204/", + "id": 61204, + "name": "\"Rokudenashi Blues\" Return to Ōsaka", + "site_detail_url": "https://comicvine.gamespot.com/rokudenashi-blues-return-to-osaka/4045-61204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-61156/", + "id": 61156, + "name": "\"Spider-Man\" Gang War", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-gang-war/4045-61156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58204/", + "id": 58204, + "name": "\"Black Jack\" Dingo", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-dingo/4045-58204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-61041/", + "id": 61041, + "name": "\"Detective Comics\" Gotham Nocturne", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-gotham-nocturne/4045-61041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59303/", + "id": 59303, + "name": "\"Weekly Shonen Jump\" Arakkure!", + "site_detail_url": "https://comicvine.gamespot.com/weekly-shonen-jump-arakkure/4045-59303/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58611/", + "id": 58611, + "name": "\"Black Jack\" Futari-Me ga Ita", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-futari-me-ga-ita/4045-58611/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57752/", + "id": 57752, + "name": "\"Samurai Giants\" Kaimaku no Shō", + "site_detail_url": "https://comicvine.gamespot.com/samurai-giants-kaimaku-no-sho/4045-57752/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57709/", + "id": 57709, + "name": "\"Samurai Giants\" Kettō no Shō", + "site_detail_url": "https://comicvine.gamespot.com/samurai-giants-ketto-no-sho/4045-57709/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58629/", + "id": 58629, + "name": "\"Weekly Shonen Jump\" Yoake no Tategami", + "site_detail_url": "https://comicvine.gamespot.com/weekly-shonen-jump-yoake-no-tategami/4045-58629/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56668/", + "id": 56668, + "name": "\"Black Jack\" Shiroi-Me", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-shiroi-me/4045-56668/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57437/", + "id": 57437, + "name": "\"Black Jack\" Invader", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-invader/4045-57437/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59412/", + "id": 59412, + "name": "\"Black Jack\" Yuki no Yorubanashi", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-yuki-no-yorubanashi/4045-59412/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58413/", + "id": 58413, + "name": "\"Black Jack\" Kaizoku no Ude", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-kaizoku-no-ude/4045-58413/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-56951/", + "id": 56951, + "name": "\"Black Jack\" Tozasareta Kioku", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-tozasareta-kioku/4045-56951/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59981/", + "id": 59981, + "name": "\"Black Jack\" Futari no Shūji", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-futari-no-shuji/4045-59981/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59822/", + "id": 59822, + "name": "\"Black Jack\" Kishibojin no Musuko", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-kishibojin-no-musuko/4045-59822/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58443/", + "id": 58443, + "name": "\"Black Jack\" Nadare", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-nadare/4045-58443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-57795/", + "id": 57795, + "name": "\"Black Jack\" Kōishō", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-koisho/4045-57795/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-59142/", + "id": 59142, + "name": "\"Black Jack\" Pinoko Aishiteru", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-pinoko-aishiteru/4045-59142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58484/", + "id": 58484, + "name": "\"Black Jack\" Kikeinōshu", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-kikeinoshu/4045-58484/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58672/", + "id": 58672, + "name": "\"Black Jack\" Dirty Jack", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-dirty-jack/4045-58672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58876/", + "id": 58876, + "name": "\"Black Jack\" Pinoko Futatabi", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-pinoko-futatabi/4045-58876/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-60036/", + "id": 60036, + "name": "\"Black Jack\" Haiiro no Yakata", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-haiiro-no-yakata/4045-60036/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-58066/", + "id": 58066, + "name": "\"Black Jack\" Pinoko Ikiteru", + "site_detail_url": "https://comicvine.gamespot.com/black-jack-pinoko-ikiteru/4045-58066/" + } + ], + "volume_credits": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3399/", + "id": 3399, + "name": "Zot!", + "site_detail_url": "https://comicvine.gamespot.com/zot/4050-3399/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4553/", + "id": 4553, + "name": "The Griffin", + "site_detail_url": "https://comicvine.gamespot.com/the-griffin/4050-4553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5066/", + "id": 5066, + "name": "X-Men Unlimited", + "site_detail_url": "https://comicvine.gamespot.com/x-men-unlimited/4050-5066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4967/", + "id": 4967, + "name": "Justice League Task Force", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-task-force/4050-4967/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5545/", + "id": 5545, + "name": "Fury of S.H.I.E.L.D.", + "site_detail_url": "https://comicvine.gamespot.com/fury-of-shield/4050-5545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5765/", + "id": 5765, + "name": "Starman Annual", + "site_detail_url": "https://comicvine.gamespot.com/starman-annual/4050-5765/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3791/", + "id": 3791, + "name": "The Flash Annual", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-annual/4050-3791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-796/", + "id": 796, + "name": "Batman", + "site_detail_url": "https://comicvine.gamespot.com/batman/4050-796/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4720/", + "id": 4720, + "name": "Batman: Legends of the Dark Knight", + "site_detail_url": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight/4050-4720/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4363/", + "id": 4363, + "name": "Green Lantern", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern/4050-4363/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5259/", + "id": 5259, + "name": "Starman", + "site_detail_url": "https://comicvine.gamespot.com/starman/4050-5259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5966/", + "id": 5966, + "name": "The Shade", + "site_detail_url": "https://comicvine.gamespot.com/the-shade/4050-5966/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3790/", + "id": 3790, + "name": "The Flash", + "site_detail_url": "https://comicvine.gamespot.com/the-flash/4050-3790/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6152/", + "id": 6152, + "name": "Chase", + "site_detail_url": "https://comicvine.gamespot.com/chase/4050-6152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5945/", + "id": 5945, + "name": "The Creeper", + "site_detail_url": "https://comicvine.gamespot.com/the-creeper/4050-5945/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5567/", + "id": 5567, + "name": "X-Man", + "site_detail_url": "https://comicvine.gamespot.com/x-man/4050-5567/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6568/", + "id": 6568, + "name": "Promethea", + "site_detail_url": "https://comicvine.gamespot.com/promethea/4050-6568/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6602/", + "id": 6602, + "name": "Chronos", + "site_detail_url": "https://comicvine.gamespot.com/chronos/4050-6602/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4250/", + "id": 4250, + "name": "Wolverine", + "site_detail_url": "https://comicvine.gamespot.com/wolverine/4050-4250/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7222/", + "id": 7222, + "name": "JSA Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/jsa-secret-files/4050-7222/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9082/", + "id": 9082, + "name": "Spider-Man: Friends and Enemies", + "site_detail_url": "https://comicvine.gamespot.com/spider-man-friends-and-enemies/4050-9082/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-2870/", + "id": 2870, + "name": "The Spectacular Spider-Man", + "site_detail_url": "https://comicvine.gamespot.com/the-spectacular-spider-man/4050-2870/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5957/", + "id": 5957, + "name": "JLA", + "site_detail_url": "https://comicvine.gamespot.com/jla/4050-5957/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9145/", + "id": 9145, + "name": "The Titans", + "site_detail_url": "https://comicvine.gamespot.com/the-titans/4050-9145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4066/", + "id": 4066, + "name": "The Punisher War Journal", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-journal/4050-4066/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-7211/", + "id": 7211, + "name": "Green Lantern Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-secret-files/4050-7211/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-158754/", + "id": 158754, + "name": "Green Lantern Secret Files And Origins", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-secret-files-and-origins/4050-158754/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3109/", + "id": 3109, + "name": "Batman Annual", + "site_detail_url": "https://comicvine.gamespot.com/batman-annual/4050-3109/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9576/", + "id": 9576, + "name": "Promethea", + "site_detail_url": "https://comicvine.gamespot.com/promethea/4050-9576/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3778/", + "id": 3778, + "name": "Adventures of Superman", + "site_detail_url": "https://comicvine.gamespot.com/adventures-of-superman/4050-3778/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4587/", + "id": 4587, + "name": "Darkhawk", + "site_detail_url": "https://comicvine.gamespot.com/darkhawk/4050-4587/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10906/", + "id": 10906, + "name": "Gambit & Bishop", + "site_detail_url": "https://comicvine.gamespot.com/gambit-bishop/4050-10906/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3739/", + "id": 3739, + "name": "Dark Horse Presents", + "site_detail_url": "https://comicvine.gamespot.com/dark-horse-presents/4050-3739/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10065/", + "id": 10065, + "name": "Justice League Adventures", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-adventures/4050-10065/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11059/", + "id": 11059, + "name": "Legion of Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes/4050-11059/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11157/", + "id": 11157, + "name": "Firestorm", + "site_detail_url": "https://comicvine.gamespot.com/firestorm/4050-11157/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9517/", + "id": 9517, + "name": "Aquaman", + "site_detail_url": "https://comicvine.gamespot.com/aquaman/4050-9517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9402/", + "id": 9402, + "name": "Hawkman", + "site_detail_url": "https://comicvine.gamespot.com/hawkman/4050-9402/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5067/", + "id": 5067, + "name": "Bloodshot", + "site_detail_url": "https://comicvine.gamespot.com/bloodshot/4050-5067/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-6331/", + "id": 6331, + "name": "JSA", + "site_detail_url": "https://comicvine.gamespot.com/jsa/4050-6331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18248/", + "id": 18248, + "name": "Green Lantern Corps", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-corps/4050-18248/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18277/", + "id": 18277, + "name": "Battlezones: Dream Team 2", + "site_detail_url": "https://comicvine.gamespot.com/battlezones-dream-team-2/4050-18277/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-3855/", + "id": 3855, + "name": "The Punisher", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher/4050-3855/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-4807/", + "id": 4807, + "name": "The Punisher: War Zone", + "site_detail_url": "https://comicvine.gamespot.com/the-punisher-war-zone/4050-4807/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18447/", + "id": 18447, + "name": "X-Men: Millennial Visions", + "site_detail_url": "https://comicvine.gamespot.com/x-men-millennial-visions/4050-18447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18457/", + "id": 18457, + "name": "Marvel Universe: Millennial Visions", + "site_detail_url": "https://comicvine.gamespot.com/marvel-universe-millennial-visions/4050-18457/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18517/", + "id": 18517, + "name": "Seven Soldiers: Zatanna", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-zatanna/4050-18517/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18058/", + "id": 18058, + "name": "Detective Comics", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics/4050-18058/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19189/", + "id": 19189, + "name": "Supergirl and the Legion of Super-Heroes", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes/4050-19189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19519/", + "id": 19519, + "name": "Mighty Morphin Power Rangers: The Movie", + "site_detail_url": "https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie/4050-19519/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19570/", + "id": 19570, + "name": "Deathlok Annual", + "site_detail_url": "https://comicvine.gamespot.com/deathlok-annual/4050-19570/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20179/", + "id": 20179, + "name": "Countdown: Arena", + "site_detail_url": "https://comicvine.gamespot.com/countdown-arena/4050-20179/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20189/", + "id": 20189, + "name": "Tangent Comics/ Green Lantern", + "site_detail_url": "https://comicvine.gamespot.com/tangent-comics-green-lantern/4050-20189/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20196/", + "id": 20196, + "name": "Tangent Comics/ Metal Men", + "site_detail_url": "https://comicvine.gamespot.com/tangent-comics-metal-men/4050-20196/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20204/", + "id": 20204, + "name": "Tangent Comics/ Tales of the Green Lantern", + "site_detail_url": "https://comicvine.gamespot.com/tangent-comics-tales-of-the-green-lantern/4050-20204/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20244/", + "id": 20244, + "name": "The DC Comics Encyclopedia", + "site_detail_url": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20553/", + "id": 20553, + "name": "Son of Superman", + "site_detail_url": "https://comicvine.gamespot.com/son-of-superman/4050-20553/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-20099/", + "id": 20099, + "name": "Magneto Dark Seduction", + "site_detail_url": "https://comicvine.gamespot.com/magneto-dark-seduction/4050-20099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18231/", + "id": 18231, + "name": "Batman Confidential", + "site_detail_url": "https://comicvine.gamespot.com/batman-confidential/4050-18231/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21178/", + "id": 21178, + "name": "Star Wars: Starfighter: Crossbones", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones/4050-21178/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21531/", + "id": 21531, + "name": "Green Lantern: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth/4050-21531/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21574/", + "id": 21574, + "name": "Secret Invasion: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-21574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-21995/", + "id": 21995, + "name": "JLA-Z", + "site_detail_url": "https://comicvine.gamespot.com/jla-z/4050-21995/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-11258/", + "id": 11258, + "name": "Teen Titans Go!", + "site_detail_url": "https://comicvine.gamespot.com/teen-titans-go/4050-11258/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-22671/", + "id": 22671, + "name": "Underworld Unleashed: Abyss - Hell's Sentinel", + "site_detail_url": "https://comicvine.gamespot.com/underworld-unleashed-abyss-hells-sentinel/4050-22671/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-5260/", + "id": 5260, + "name": "Steel", + "site_detail_url": "https://comicvine.gamespot.com/steel/4050-5260/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18052/", + "id": 18052, + "name": "Justice Society of America", + "site_detail_url": "https://comicvine.gamespot.com/justice-society-of-america/4050-18052/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23376/", + "id": 23376, + "name": "Flash Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/flash-secret-files/4050-23376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19025/", + "id": 19025, + "name": "Booster Gold", + "site_detail_url": "https://comicvine.gamespot.com/booster-gold/4050-19025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23571/", + "id": 23571, + "name": "Joker", + "site_detail_url": "https://comicvine.gamespot.com/joker/4050-23571/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-23902/", + "id": 23902, + "name": "Justice Riders", + "site_detail_url": "https://comicvine.gamespot.com/justice-riders/4050-23902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24156/", + "id": 24156, + "name": "Alan Moore: Portrait of an Extraordinary Gentleman", + "site_detail_url": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman/4050-24156/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24563/", + "id": 24563, + "name": "Hero Sandwich", + "site_detail_url": "https://comicvine.gamespot.com/hero-sandwich/4050-24563/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-19020/", + "id": 19020, + "name": "Superman/Batman Annual", + "site_detail_url": "https://comicvine.gamespot.com/supermanbatman-annual/4050-19020/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25724/", + "id": 25724, + "name": "Transmetropolitan: I Hate It Here", + "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan-i-hate-it-here/4050-25724/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26415/", + "id": 26415, + "name": "Final Crisis Aftermath: Escape", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-escape/4050-26415/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26443/", + "id": 26443, + "name": "Final Crisis Aftermath: Dance", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-dance/4050-26443/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26592/", + "id": 26592, + "name": "Batman/Deathblow: After the Fire", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire/4050-26592/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27573/", + "id": 27573, + "name": "Green Arrow: Secret Files & Origins", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow-secret-files-origins/4050-27573/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-27860/", + "id": 27860, + "name": "The Shield", + "site_detail_url": "https://comicvine.gamespot.com/the-shield/4050-27860/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28100/", + "id": 28100, + "name": "DCU Villains Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/dcu-villains-secret-files/4050-28100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28152/", + "id": 28152, + "name": "Secret Invasion: Fantastic Four", + "site_detail_url": "https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-28152/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28410/", + "id": 28410, + "name": "DCU Heroes Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/dcu-heroes-secret-files/4050-28410/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28426/", + "id": 28426, + "name": "Batgirl Secret Files and Origins", + "site_detail_url": "https://comicvine.gamespot.com/batgirl-secret-files-and-origins/4050-28426/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-28479/", + "id": 28479, + "name": "JLA/JSA Secret Files & Origins", + "site_detail_url": "https://comicvine.gamespot.com/jlajsa-secret-files-origins/4050-28479/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30670/", + "id": 30670, + "name": "JSA Kingdom Come Special: Magog", + "site_detail_url": "https://comicvine.gamespot.com/jsa-kingdom-come-special-magog/4050-30670/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30672/", + "id": 30672, + "name": "JSA Kingdom Come Special: The Kingdom", + "site_detail_url": "https://comicvine.gamespot.com/jsa-kingdom-come-special-the-kingdom/4050-30672/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-30949/", + "id": 30949, + "name": "Lex Luthor: Man of Steel", + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor-man-of-steel/4050-30949/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-31712/", + "id": 31712, + "name": "Star Wars Omnibus: Menace Revealed", + "site_detail_url": "https://comicvine.gamespot.com/star-wars-omnibus-menace-revealed/4050-31712/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24100/", + "id": 24100, + "name": "Secret Files and Origins Guide to the DC Universe", + "site_detail_url": "https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe/4050-24100/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32113/", + "id": 32113, + "name": "Batman: Bruce Wayne-Murderer?", + "site_detail_url": "https://comicvine.gamespot.com/batman-bruce-wayne-murderer/4050-32113/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32367/", + "id": 32367, + "name": "Bruce Wayne: Fugitive", + "site_detail_url": "https://comicvine.gamespot.com/bruce-wayne-fugitive/4050-32367/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32695/", + "id": 32695, + "name": "Tales of the New Gods", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-new-gods/4050-32695/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32909/", + "id": 32909, + "name": "Hawkman Secret Files and Origins", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-secret-files-and-origins/4050-32909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33609/", + "id": 33609, + "name": "Absolute Promethea", + "site_detail_url": "https://comicvine.gamespot.com/absolute-promethea/4050-33609/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33613/", + "id": 33613, + "name": "Starman Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/starman-secret-files/4050-33613/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-34835/", + "id": 34835, + "name": "Joker: Last Laugh Secret Files", + "site_detail_url": "https://comicvine.gamespot.com/joker-last-laugh-secret-files/4050-34835/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-9096/", + "id": 9096, + "name": "Mad-Dog", + "site_detail_url": "https://comicvine.gamespot.com/mad-dog/4050-9096/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-35780/", + "id": 35780, + "name": "Starman Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/starman-omnibus/4050-35780/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-33073/", + "id": 33073, + "name": "Batman: The Return of Bruce Wayne", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne/4050-33073/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36130/", + "id": 36130, + "name": "DC Comics Presents: Brightest Day", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-brightest-day/4050-36130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-32561/", + "id": 32561, + "name": "Brightest Day", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day/4050-32561/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36420/", + "id": 36420, + "name": "Luthor", + "site_detail_url": "https://comicvine.gamespot.com/luthor/4050-36420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36496/", + "id": 36496, + "name": "DC Comics Presents: Chase", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-chase/4050-36496/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36545/", + "id": 36545, + "name": "Legends of the DC Universe 3-D Gallery", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-the-dc-universe-3-d-gallery/4050-36545/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36721/", + "id": 36721, + "name": "Green Lantern Corps: To Be A Lantern", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-corps-to-be-a-lantern/4050-36721/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-36879/", + "id": 36879, + "name": "Jack Kirby's Fourth World Gallery", + "site_detail_url": "https://comicvine.gamespot.com/jack-kirbys-fourth-world-gallery/4050-36879/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-25804/", + "id": 25804, + "name": "The Outsiders", + "site_detail_url": "https://comicvine.gamespot.com/the-outsiders/4050-25804/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37529/", + "id": 37529, + "name": "Absolute Green Lantern: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/absolute-green-lantern-rebirth/4050-37529/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37598/", + "id": 37598, + "name": "Lex Luthor: Man of Steel", + "site_detail_url": "https://comicvine.gamespot.com/lex-luthor-man-of-steel/4050-37598/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37886/", + "id": 37886, + "name": "Batman: The Wrath", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-wrath/4050-37886/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38232/", + "id": 38232, + "name": "Seven Soldiers of Victory", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory/4050-38232/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38702/", + "id": 38702, + "name": "Batman: The Return of Bruce Wayne - The Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-the-deluxe-editio/4050-38702/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38711/", + "id": 38711, + "name": "Justice Society of America: Thy Kingdom Come", + "site_detail_url": "https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come/4050-38711/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26584/", + "id": 26584, + "name": "Batman and Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin/4050-26584/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38903/", + "id": 38903, + "name": "Promethea Covers Book", + "site_detail_url": "https://comicvine.gamespot.com/promethea-covers-book/4050-38903/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-38942/", + "id": 38942, + "name": "Transmetropolitan", + "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan/4050-38942/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39129/", + "id": 39129, + "name": "DC Comics Presents: Batman Conspiracy", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-batman-conspiracy/4050-39129/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-37337/", + "id": 37337, + "name": "Brightest Day", + "site_detail_url": "https://comicvine.gamespot.com/brightest-day/4050-37337/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39683/", + "id": 39683, + "name": "Supergirl And The Legion Of Super-Heroes: Strange Visitor From Another Century", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-strange-v/4050-39683/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39697/", + "id": 39697, + "name": "Supergirl And The Legion Of Super-Heroes: Adult Education", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-adult-edu/4050-39697/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-39698/", + "id": 39698, + "name": "Supergirl And The Legion Of Super-Heroes: The Dominator War", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-the-domin/4050-39698/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18216/", + "id": 18216, + "name": "Green Lantern", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern/4050-18216/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40188/", + "id": 40188, + "name": "DC Comics Presents: Son of Superman", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-son-of-superman/4050-40188/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40715/", + "id": 40715, + "name": "Green Lantern Movie Prequel: Abin Sur", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-movie-prequel-abin-sur/4050-40715/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-40974/", + "id": 40974, + "name": "Hawkman: Allies and Enemies", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-allies-and-enemies/4050-40974/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-18677/", + "id": 18677, + "name": "Jonah Hex", + "site_detail_url": "https://comicvine.gamespot.com/jonah-hex/4050-18677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-41791/", + "id": 41791, + "name": "Batman: Bruce Wayne: Mörder?", + "site_detail_url": "https://comicvine.gamespot.com/batman-bruce-wayne-morder/4050-41791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42442/", + "id": 42442, + "name": "Starman: A Wicked Inclination", + "site_detail_url": "https://comicvine.gamespot.com/starman-a-wicked-inclination/4050-42442/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-26365/", + "id": 26365, + "name": "Starman: Times Past", + "site_detail_url": "https://comicvine.gamespot.com/starman-times-past/4050-26365/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42692/", + "id": 42692, + "name": "Batman and Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin/4050-42692/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43687/", + "id": 43687, + "name": "Outsiders: The Great Divide", + "site_detail_url": "https://comicvine.gamespot.com/outsiders-the-great-divide/4050-43687/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43772/", + "id": 43772, + "name": "Final Crisis Aftermath: Dance", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-dance/4050-43772/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43773/", + "id": 43773, + "name": "Final Crisis Aftermath: Escape", + "site_detail_url": "https://comicvine.gamespot.com/final-crisis-aftermath-escape/4050-43773/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-43919/", + "id": 43919, + "name": "Seven Soldiers of Victory", + "site_detail_url": "https://comicvine.gamespot.com/seven-soldiers-of-victory/4050-43919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44191/", + "id": 44191, + "name": "JLA: Divided We Fall", + "site_detail_url": "https://comicvine.gamespot.com/jla-divided-we-fall/4050-44191/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44420/", + "id": 44420, + "name": "Batman Special", + "site_detail_url": "https://comicvine.gamespot.com/batman-special/4050-44420/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44948/", + "id": 44948, + "name": "Green Lantern: The Movie Prequels", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-the-movie-prequels/4050-44948/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44984/", + "id": 44984, + "name": "Legion of Super-Heroes: Teenage Revolution", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution/4050-44984/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44985/", + "id": 44985, + "name": "Legion of Super-Heroes: Death of A Dream", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream/4050-44985/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44965/", + "id": 44965, + "name": "Jonah Hex: Bury Me In Hell", + "site_detail_url": "https://comicvine.gamespot.com/jonah-hex-bury-me-in-hell/4050-44965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45439/", + "id": 45439, + "name": "Batman and Robin: Dark Knight vs. White Knight", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-dark-knight-vs-white-knight/4050-45439/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45465/", + "id": 45465, + "name": "Chase", + "site_detail_url": "https://comicvine.gamespot.com/chase/4050-45465/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-45751/", + "id": 45751, + "name": "Batman/Deathblow: After the Fire", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire/4050-45751/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46024/", + "id": 46024, + "name": "The Batman Chronicles Gallery", + "site_detail_url": "https://comicvine.gamespot.com/the-batman-chronicles-gallery/4050-46024/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-46237/", + "id": 46237, + "name": "Green Arrow/Black Canary: A League of Their Own", + "site_detail_url": "https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own/4050-46237/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-47513/", + "id": 47513, + "name": "Hawkman Omnibus By Geoff Johns", + "site_detail_url": "https://comicvine.gamespot.com/hawkman-omnibus-by-geoff-johns/4050-47513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49259/", + "id": 49259, + "name": "Green Lantern: Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth/4050-49259/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-49994/", + "id": 49994, + "name": "Batman y Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-y-robin/4050-49994/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50161/", + "id": 50161, + "name": "Batman and Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin/4050-50161/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-44586/", + "id": 44586, + "name": "Steve Ditko Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/steve-ditko-omnibus/4050-44586/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-51955/", + "id": 51955, + "name": "Batman: The Return of Bruce Wayne", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne/4050-51955/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-10823/", + "id": 10823, + "name": "Phantom Force", + "site_detail_url": "https://comicvine.gamespot.com/phantom-force/4050-10823/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-52141/", + "id": 52141, + "name": "DC Absolute Edition", + "site_detail_url": "https://comicvine.gamespot.com/dc-absolute-edition/4050-52141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-57538/", + "id": 57538, + "name": "Batman/Deathblow: After the Fire Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-deluxe-edition/4050-57538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-50909/", + "id": 50909, + "name": "DC Definitive Edition", + "site_detail_url": "https://comicvine.gamespot.com/dc-definitive-edition/4050-50909/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61509/", + "id": 61509, + "name": "Batman & Robin", + "site_detail_url": "https://comicvine.gamespot.com/batman-robin/4050-61509/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-64203/", + "id": 64203, + "name": "Batman/Superman", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman/4050-64203/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-42719/", + "id": 42719, + "name": "Batman: The Dark Knight", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-dark-knight/4050-42719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68151/", + "id": 68151, + "name": "Forever Evil: Arkham War", + "site_detail_url": "https://comicvine.gamespot.com/forever-evil-arkham-war/4050-68151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-69864/", + "id": 69864, + "name": "DC Comics The New 52 Villains Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus/4050-69864/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-56371/", + "id": 56371, + "name": "Batman and Robin Annual", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-annual/4050-56371/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-68700/", + "id": 68700, + "name": "Damian: Son of Batman", + "site_detail_url": "https://comicvine.gamespot.com/damian-son-of-batman/4050-68700/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-75714/", + "id": 75714, + "name": "Tales of the Batman: J.H. Williams III", + "site_detail_url": "https://comicvine.gamespot.com/tales-of-the-batman-jh-williams-iii/4050-75714/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-76952/", + "id": 76952, + "name": "Batman and Robin: Futures End", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-futures-end/4050-76952/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-79151/", + "id": 79151, + "name": "Starman", + "site_detail_url": "https://comicvine.gamespot.com/starman/4050-79151/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82085/", + "id": 82085, + "name": "DC Sneak Peek: Robin: Son of Batman", + "site_detail_url": "https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman/4050-82085/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82719/", + "id": 82719, + "name": "Robin: Son of Batman", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman/4050-82719/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-61513/", + "id": 61513, + "name": "Batman: The Dark Knight", + "site_detail_url": "https://comicvine.gamespot.com/batman-the-dark-knight/4050-61513/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-82470/", + "id": 82470, + "name": "Red Hood/Arsenal", + "site_detail_url": "https://comicvine.gamespot.com/red-hoodarsenal/4050-82470/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-88434/", + "id": 88434, + "name": "DC Comics Essentials: Batman And Robin", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-essentials-batman-and-robin/4050-88434/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93940/", + "id": 93940, + "name": "Robin - Son of Batman", + "site_detail_url": "https://comicvine.gamespot.com/robin-son-of-batman/4050-93940/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91298/", + "id": 91298, + "name": "Superman", + "site_detail_url": "https://comicvine.gamespot.com/superman/4050-91298/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91741/", + "id": 91741, + "name": "Batman: Arkham: Killer Croc", + "site_detail_url": "https://comicvine.gamespot.com/batman-arkham-killer-croc/4050-91741/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91284/", + "id": 91284, + "name": "Green Arrow", + "site_detail_url": "https://comicvine.gamespot.com/green-arrow/4050-91284/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-97769/", + "id": 97769, + "name": "Superman: Son of Superman", + "site_detail_url": "https://comicvine.gamespot.com/superman-son-of-superman/4050-97769/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100600/", + "id": 100600, + "name": "Superman: Trials of the Super Son", + "site_detail_url": "https://comicvine.gamespot.com/superman-trials-of-the-super-son/4050-100600/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-102902/", + "id": 102902, + "name": "DC Justice League Essentials: Superman", + "site_detail_url": "https://comicvine.gamespot.com/dc-justice-league-essentials-superman/4050-102902/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103269/", + "id": 103269, + "name": "Superman: Multiplicity", + "site_detail_url": "https://comicvine.gamespot.com/superman-multiplicity/4050-103269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-103376/", + "id": 103376, + "name": "Batman Arkham: Clayface", + "site_detail_url": "https://comicvine.gamespot.com/batman-arkham-clayface/4050-103376/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104331/", + "id": 104331, + "name": "Superman: Reborn", + "site_detail_url": "https://comicvine.gamespot.com/superman-reborn/4050-104331/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-104641/", + "id": 104641, + "name": "Superman: Rebirth Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/superman-rebirth-deluxe-edition/4050-104641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92373/", + "id": 92373, + "name": "Justice League", + "site_detail_url": "https://comicvine.gamespot.com/justice-league/4050-92373/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-105953/", + "id": 105953, + "name": "Batman and Robin by Peter J. Tomasi and Patrick Gleason Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-105953/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92577/", + "id": 92577, + "name": "Titans", + "site_detail_url": "https://comicvine.gamespot.com/titans/4050-92577/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91774/", + "id": 91774, + "name": "Wonder Woman", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman/4050-91774/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-106555/", + "id": 106555, + "name": "Superman: Black Dawn", + "site_detail_url": "https://comicvine.gamespot.com/superman-black-dawn/4050-106555/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91750/", + "id": 91750, + "name": "The Flash", + "site_detail_url": "https://comicvine.gamespot.com/the-flash/4050-91750/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92557/", + "id": 92557, + "name": "Hal Jordan & The Green Lantern Corps", + "site_detail_url": "https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps/4050-92557/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-91285/", + "id": 91285, + "name": "Green Lanterns", + "site_detail_url": "https://comicvine.gamespot.com/green-lanterns/4050-91285/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-109346/", + "id": 109346, + "name": "X-Men: Blue: Reunion", + "site_detail_url": "https://comicvine.gamespot.com/x-men-blue-reunion/4050-109346/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-100388/", + "id": 100388, + "name": "Titans Annual", + "site_detail_url": "https://comicvine.gamespot.com/titans-annual/4050-100388/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-90761/", + "id": 90761, + "name": "Robin - Der Sohn Des Dunklen Ritters", + "site_detail_url": "https://comicvine.gamespot.com/robin-der-sohn-des-dunklen-ritters/4050-90761/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111130/", + "id": 111130, + "name": "Batman: Prelude To the Wedding: Robin vs. Ra's Al Ghul", + "site_detail_url": "https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4050-111130/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111447/", + "id": 111447, + "name": "The Unexpected", + "site_detail_url": "https://comicvine.gamespot.com/the-unexpected/4050-111447/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-111471/", + "id": 111471, + "name": "Superman Sonderband", + "site_detail_url": "https://comicvine.gamespot.com/superman-sonderband/4050-111471/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-93205/", + "id": 93205, + "name": "Suicide Squad", + "site_detail_url": "https://comicvine.gamespot.com/suicide-squad/4050-93205/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112969/", + "id": 112969, + "name": "Suicide Squad Annual", + "site_detail_url": "https://comicvine.gamespot.com/suicide-squad-annual/4050-112969/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115037/", + "id": 115037, + "name": "Batman and Robin: Bad Blood: DC Essential Edition", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-bad-blood-dc-essential-edition/4050-115037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-115791/", + "id": 115791, + "name": "World's Greatest Super-Heroes! Holiday Special", + "site_detail_url": "https://comicvine.gamespot.com/worlds-greatest-super-heroes-holiday-special/4050-115791/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116062/", + "id": 116062, + "name": "Super Sons Omnibus", + "site_detail_url": "https://comicvine.gamespot.com/super-sons-omnibus/4050-116062/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-117466/", + "id": 117466, + "name": "Promethea: The 20th Anniversary Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/promethea-the-20th-anniversary-deluxe-edition/4050-117466/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-92542/", + "id": 92542, + "name": "Batgirl", + "site_detail_url": "https://comicvine.gamespot.com/batgirl/4050-92542/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-119374/", + "id": 119374, + "name": "Dog Days of Summer", + "site_detail_url": "https://comicvine.gamespot.com/dog-days-of-summer/4050-119374/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-112455/", + "id": 112455, + "name": "Justice League Dark", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-dark/4050-112455/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-123380/", + "id": 123380, + "name": "Green Lantern: Rebirth Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-rebirth-deluxe-edition/4050-123380/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127622/", + "id": 127622, + "name": "Catwoman 80th Anniversary 100-Page Super Spectacular", + "site_detail_url": "https://comicvine.gamespot.com/catwoman-80th-anniversary-100-page-super-spectacul/4050-127622/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-127880/", + "id": 127880, + "name": "Joker: The Deluxe Edition", + "site_detail_url": "https://comicvine.gamespot.com/joker-the-deluxe-edition/4050-127880/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-131986/", + "id": 131986, + "name": "Underworld Unleashed: The 25th Anniversary Edition", + "site_detail_url": "https://comicvine.gamespot.com/underworld-unleashed-the-25th-anniversary-edition/4050-131986/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132094/", + "id": 132094, + "name": "Sette Soldati della Vittoria", + "site_detail_url": "https://comicvine.gamespot.com/sette-soldati-della-vittoria/4050-132094/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-132168/", + "id": 132168, + "name": "Super Sons Omnibus Expanded Edition", + "site_detail_url": "https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition/4050-132168/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-133404/", + "id": 133404, + "name": "Legends of the DC Universe: Doug Mahnke", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-the-dc-universe-doug-mahnke/4050-133404/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138329/", + "id": 138329, + "name": "Batman: Bruce Wayne - Auf der Flucht", + "site_detail_url": "https://comicvine.gamespot.com/batman-bruce-wayne-auf-der-flucht/4050-138329/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138330/", + "id": 138330, + "name": "Batman/Deathblow: Nach dem Feuer", + "site_detail_url": "https://comicvine.gamespot.com/batmandeathblow-nach-dem-feuer/4050-138330/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-138647/", + "id": 138647, + "name": "Batman/Superman 2021 Annual", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-2021-annual/4050-138647/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-116323/", + "id": 116323, + "name": "Batman Graphic Novel Collection", + "site_detail_url": "https://comicvine.gamespot.com/batman-graphic-novel-collection/4050-116323/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140362/", + "id": 140362, + "name": "DC Celebration: Catwoman", + "site_detail_url": "https://comicvine.gamespot.com/dc-celebration-catwoman/4050-140362/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-140521/", + "id": 140521, + "name": "The Liberty Brigade", + "site_detail_url": "https://comicvine.gamespot.com/the-liberty-brigade/4050-140521/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-141099/", + "id": 141099, + "name": "La Guerra del Joker", + "site_detail_url": "https://comicvine.gamespot.com/la-guerra-del-joker/4050-141099/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142677/", + "id": 142677, + "name": "Robin, Hijo de Batman", + "site_detail_url": "https://comicvine.gamespot.com/robin-hijo-de-batman/4050-142677/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-142846/", + "id": 142846, + "name": "Batman/Superman: El Archivo de Mundos", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-el-archivo-de-mundos/4050-142846/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-143051/", + "id": 143051, + "name": "Wonder Woman Rebirth", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-rebirth/4050-143051/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-24389/", + "id": 24389, + "name": "Batman/Superman: The Archive Of Worlds", + "site_detail_url": "https://comicvine.gamespot.com/batmansuperman-the-archive-of-worlds/4050-24389/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-147240/", + "id": 147240, + "name": "Transmetropolitan", + "site_detail_url": "https://comicvine.gamespot.com/transmetropolitan/4050-147240/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-153582/", + "id": 153582, + "name": "Aquaman - Sub Diego", + "site_detail_url": "https://comicvine.gamespot.com/aquaman-sub-diego/4050-153582/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-155651/", + "id": 155651, + "name": "Spécial Strange", + "site_detail_url": "https://comicvine.gamespot.com/special-strange/4050-155651/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-156755/", + "id": 156755, + "name": "Pete Townshend's Life House", + "site_detail_url": "https://comicvine.gamespot.com/pete-townshends-life-house/4050-156755/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/volume/4050-157262/", + "id": 157262, + "name": "Batman and Robin by Peter J. Tomasi and Patrick Gleason", + "site_detail_url": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-157262/" + } + ], + "website": "http://www.mickgray.net" + }, + "version": "1.0" +} diff --git a/packages/client/src/__mocks__/api-response/person-list.json b/src/__mocks__/api-response/person-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/person-list.json rename to src/__mocks__/api-response/person-list.json diff --git a/packages/client/src/__mocks__/api-response/power-details.json b/src/__mocks__/api-response/power-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/power-details.json rename to src/__mocks__/api-response/power-details.json diff --git a/packages/client/src/__mocks__/api-response/power-list.json b/src/__mocks__/api-response/power-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/power-list.json rename to src/__mocks__/api-response/power-list.json diff --git a/packages/client/src/__mocks__/api-response/promo-details.json b/src/__mocks__/api-response/promo-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/promo-details.json rename to src/__mocks__/api-response/promo-details.json diff --git a/packages/client/src/__mocks__/api-response/promo-list.json b/src/__mocks__/api-response/promo-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/promo-list.json rename to src/__mocks__/api-response/promo-list.json diff --git a/packages/client/src/__mocks__/api-response/publisher-details.json b/src/__mocks__/api-response/publisher-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/publisher-details.json rename to src/__mocks__/api-response/publisher-details.json diff --git a/packages/client/src/__mocks__/api-response/publisher-list.json b/src/__mocks__/api-response/publisher-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/publisher-list.json rename to src/__mocks__/api-response/publisher-list.json diff --git a/packages/client/src/__mocks__/api-response/series-details.json b/src/__mocks__/api-response/series-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/series-details.json rename to src/__mocks__/api-response/series-details.json diff --git a/packages/client/src/__mocks__/api-response/series-list.json b/src/__mocks__/api-response/series-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/series-list.json rename to src/__mocks__/api-response/series-list.json diff --git a/src/__mocks__/api-response/story-arc-details.json b/src/__mocks__/api-response/story-arc-details.json new file mode 100644 index 0000000..4790935 --- /dev/null +++ b/src/__mocks__/api-response/story-arc-details.json @@ -0,0 +1,595 @@ +{ + "error": "OK", + "limit": 1, + "offset": 0, + "number_of_page_results": 1, + "number_of_total_results": 1, + "status_code": 1, + "results": { + "aliases": null, + "api_detail_url": "https://comicvine.gamespot.com/api/story_arc/4045-40764/", + "count_of_isssue_appearances": 0, + "date_added": "2008-06-06 11:27:51", + "date_last_updated": "2018-04-28 00:30:27", + "deck": "Crisis on Infinite Earths was one of the biggest events in the DCU. It erased the DC Multiverse and rebooted many DC Heroes' origins. It mark's the end of the Silver and Bronze Ages of Comic Books.", + "description": "

    In addition to the 12-part maxi series the following titles were part of the official crossover:

    Collected Editions

    Related Items

    Non-U.S. Editions

    Novelization

    \"No
    A spectacular and original novel based on the epic comics series that forever changed the universe of Superman and Batman by the man who created the original tale! Trapped in a timeless limbo, Barry Allen, the Flash, can only watch in silent and helpless horror as, one by one, countless universes fade from existence in order to feed the insatiable need for power of the Anti-Monitor, a being from the anti-matter universe of Qward. Under the guidance of the Monitor, his benevolent opposite, the super-heroes and villains of all realities are brought together for a last, desperate stand against the forces that promise the literal end of all existence.
    • Written By: Marv Wolfman
    • Publisher: Ibooks (April, 2007)
    • ISBN-10: 1596873434
    • ISBN-13: 978-1596873438
    ", + "episodes": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-29962/", + "id": 29962, + "name": "You Have Saved This City ", + "site_detail_url": "https://comicvine.gamespot.com/arrow-722-you-have-saved-this-city/4070-29962/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31538/", + "id": 31538, + "name": "A Flash of the Lightning ", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-602-a-flash-of-the-lightning/4070-31538/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31539/", + "id": 31539, + "name": "Starling City ", + "site_detail_url": "https://comicvine.gamespot.com/arrow-801-starling-city/4070-31539/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31783/", + "id": 31783, + "name": "The Last Temptation of Barry Allen, Pt. 2 ", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-608-the-last-temptation-of-barry-allen-p/4070-31783/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31782/", + "id": 31782, + "name": "Purgatory ", + "site_detail_url": "https://comicvine.gamespot.com/arrow-807-purgatory/4070-31782/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31798/", + "id": 31798, + "name": "Crisis on Infinite Earths: Part One ", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-509-crisis-on-infinite-earths-part-one/4070-31798/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31810/", + "id": 31810, + "name": "Crisis on Infinite Earths: Part Two ", + "site_detail_url": "https://comicvine.gamespot.com/batwoman-109-crisis-on-infinite-earths-part-two/4070-31810/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31811/", + "id": 31811, + "name": "The Book of Resistance: Chapter Four: Third Stone From the Sun ", + "site_detail_url": "https://comicvine.gamespot.com/black-lightning-309-the-book-of-resistance-chapter/4070-31811/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-31813/", + "id": 31813, + "name": "Crisis on Infinite Earths: Part Three ", + "site_detail_url": "https://comicvine.gamespot.com/the-flash-609-crisis-on-infinite-earths-part-three/4070-31813/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-32035/", + "id": 32035, + "name": "Crisis on Infinite Earths: Part Five ", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-tomorrow-501-crisis-on-infinite-earths-/4070-32035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-32034/", + "id": 32034, + "name": "Crisis on Infinite Earths: Part Four", + "site_detail_url": "https://comicvine.gamespot.com/arrow-808-crisis-on-infinite-earths-part-four/4070-32034/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/episodes/4070-32330/", + "id": 32330, + "name": "Deus Lex Machina ", + "site_detail_url": "https://comicvine.gamespot.com/supergirl-517-deus-lex-machina/4070-32330/" + } + ], + "first_appeared_in_episode": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_episode/4070-29962/", + "id": 29962, + "name": "You Have Saved This City ", + "episode_number": "722" + }, + "first_appeared_in_issue": { + "api_detail_url": "https://comicvine.gamespot.com/api/first_appeared_in_issue/4000-109965/", + "id": 109965, + "name": "Doctor Cyber's Revenge! / The Final Blackout", + "issue_number": "321" + }, + "id": 40764, + "image": { + "icon_url": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "medium_url": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "screen_url": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "screen_large_url": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "small_url": "https://comicvine.gamespot.com/a/uploads/scale_small/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "super_url": "https://comicvine.gamespot.com/a/uploads/scale_large/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "thumb_url": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "tiny_url": "https://comicvine.gamespot.com/a/uploads/square_mini/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "original_url": "https://comicvine.gamespot.com/a/uploads/original/0/2532/150510-140433-crisis-on-infinite-e.jpg", + "image_tags": "All Images,gallery" + }, + "issues": [ + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109965/", + "id": 109965, + "name": "Doctor Cyber's Revenge! / The Final Blackout", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-321-doctor-cyber-s-revenge-the-final-/4000-109965/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25207/", + "id": 25207, + "name": "The Triad", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-78-the-triad/4000-25207/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25335/", + "id": 25335, + "name": "The Summoning", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-1-the-summoning/4000-25335/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25441/", + "id": 25441, + "name": "Time and Time Again", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-2-time-and-time-again/4000-25441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25532/", + "id": 25532, + "name": "Oblivion Upon Us", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-3-oblivion-upon-us/4000-25532/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25638/", + "id": 25638, + "name": "And Thus Shall the World Die!", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-4-and-thus-shall-the-wor/4000-25638/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25734/", + "id": 25734, + "name": "Worlds in Limbo", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-5-worlds-in-limbo/4000-25734/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25834/", + "id": 25834, + "name": "3 Earths! 3 Deaths!", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-6-3-earths-3-deaths/4000-25834/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25842/", + "id": 25842, + "name": "Helix Goes To Hollywood!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-18-helix-goes-to-hollywood/4000-25842/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109971/", + "id": 109971, + "name": "A World in Chaos!", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-327-a-world-in-chaos/4000-109971/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25919/", + "id": 25919, + "name": "Crisis Point", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-50-crisis-point/4000-25919/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25926/", + "id": 25926, + "name": "Beyond the Silent Night", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-7-beyond-the-silent-nigh/4000-25926/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25938/", + "id": 25938, + "name": "Crisis", + "site_detail_url": "https://comicvine.gamespot.com/the-new-teen-titans-13-crisis/4000-25938/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25925/", + "id": 25925, + "name": "Fish out of Water", + "site_detail_url": "https://comicvine.gamespot.com/blue-devil-17-fish-out-of-water/4000-25925/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25933/", + "id": 25933, + "name": "Last Crisis on Earth-Two!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-19-last-crisis-on-earth-two/4000-25933/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25939/", + "id": 25939, + "name": "In Transit", + "site_detail_url": "https://comicvine.gamespot.com/the-omega-men-31-in-transit/4000-25939/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25927/", + "id": 25927, + "name": "Into the Valley of the Shadow...!", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-86-into-the-valley-of-the-shado/4000-25927/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26041/", + "id": 26041, + "name": "Baptism", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-16-baptism/4000-26041/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26040/", + "id": 26040, + "name": "The Final Crisis", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america-244-the-final-crisis/4000-26040/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26049/", + "id": 26049, + "name": "Superman -- Your World is Mine!", + "site_detail_url": "https://comicvine.gamespot.com/superman-413-superman-your-world-is-mine/4000-26049/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26025/", + "id": 26025, + "name": "The Monster Society of Evil", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-51-the-monster-society-of-evil/4000-26025/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26031/", + "id": 26031, + "name": "A Flash of the Lightning", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-8-a-flash-of-the-lightni/4000-26031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26043/", + "id": 26043, + "name": "The Light Within...the Dark Without!", + "site_detail_url": "https://comicvine.gamespot.com/the-new-teen-titans-14-the-light-withinthe-dark-wi/4000-26043/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26030/", + "id": 26030, + "name": "The Last Parallel World Story", + "site_detail_url": "https://comicvine.gamespot.com/blue-devil-18-the-last-parallel-world-story/4000-26030/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26037/", + "id": 26037, + "name": "5", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-194-5/4000-26037/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26039/", + "id": 26039, + "name": "Crisis on Infinitors' Earth", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-20-crisis-on-infinitors-earth/4000-26039/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26028/", + "id": 26028, + "name": "Red Skies", + "site_detail_url": "https://comicvine.gamespot.com/batman-389-red-skies/4000-26028/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26035/", + "id": 26035, + "name": "Storm Warning", + "site_detail_url": "https://comicvine.gamespot.com/the-fury-of-firestorm-41-storm-warning/4000-26035/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113011/", + "id": 113011, + "name": "The Bleeding Night / Zen and the Art of Dying", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-556-the-bleeding-night-zen-and-th/4000-113011/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26033/", + "id": 26033, + "name": "Year of the Comet; The Origin of Superboy-Prime!", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-87-year-of-the-comet-the-origin/4000-26033/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26132/", + "id": 26132, + "name": "From Fear To Eternity/Shanghaied Into Hyperspace! Interlude One", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-52-from-fear-to-eternityshanghai/4000-26132/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26138/", + "id": 26138, + "name": "War Zone", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-9-war-zone/4000-26138/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140269/", + "id": 140269, + "name": "Losers Die Twice!", + "site_detail_url": "https://comicvine.gamespot.com/losers-special-1-losers-die-twice/4000-140269/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-25053/", + "id": 25053, + "name": "Green Dreams & Precious Illusions", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-annual-1-green-dreams-precious-illusi/4000-25053/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26137/", + "id": 26137, + "name": "Ice Cream, You Scream! / In the Multiverse / Guest Star / Still in the Multiverse! / Dear Pen Pal...", + "site_detail_url": "https://comicvine.gamespot.com/blue-devil-19-ice-cream-you-scream-in-the-multiver/4000-26137/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26142/", + "id": 26142, + "name": "4", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-195-4/4000-26142/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26144/", + "id": 26144, + "name": "Shadows at Midnight!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-21-shadows-at-midnight/4000-26144/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26145/", + "id": 26145, + "name": "The Long Road Home", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america-245-the-long-road-home/4000-26145/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-140268/", + "id": 140268, + "name": "Force of Nature", + "site_detail_url": "https://comicvine.gamespot.com/justice-league-of-america-annual-3-force-of-nature/4000-140268/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109972/", + "id": 109972, + "name": "To Everything a Season...", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-328-to-everything-a-season/4000-109972/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26149/", + "id": 26149, + "name": "Storm Warnings / Vega Demon with the Healing Hand", + "site_detail_url": "https://comicvine.gamespot.com/the-omega-men-33-storm-warnings-vega-demon-with-th/4000-26149/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26134/", + "id": 26134, + "name": "Women Dark and Dangerous", + "site_detail_url": "https://comicvine.gamespot.com/batman-390-women-dark-and-dangerous/4000-26134/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26154/", + "id": 26154, + "name": "Revenge is Life -- Death to Superman!", + "site_detail_url": "https://comicvine.gamespot.com/superman-414-revenge-is-life-death-to-superman/4000-26154/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26141/", + "id": 26141, + "name": "A Long Night's Journey into Day", + "site_detail_url": "https://comicvine.gamespot.com/the-fury-of-firestorm-42-a-long-nights-journey-int/4000-26141/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113012/", + "id": 113012, + "name": "Still Beating / The Pursuit of Wisdom", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-557-still-beating-the-pursuit-of-/4000-113012/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26140/", + "id": 26140, + "name": "Prophecy of the Demon-Plague!", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-88-prophecy-of-the-demon-plague/4000-26140/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26347/", + "id": 26347, + "name": "Death at the Dawn of Time!; The Monitor Tapes...", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-10-death-at-the-dawn-of-/4000-26347/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26341/", + "id": 26341, + "name": "Worlds in Turmoil", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-53-worlds-in-turmoil/4000-26341/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26356/", + "id": 26356, + "name": "Has Anyone Noticed a Crisis Going On?", + "site_detail_url": "https://comicvine.gamespot.com/legion-of-super-heroes-18-has-anyone-noticed-a-cri/4000-26356/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26352/", + "id": 26352, + "name": "3", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-196-3/4000-26352/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26354/", + "id": 26354, + "name": "Uncivil Wars!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-22-uncivil-wars/4000-26354/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26343/", + "id": 26343, + "name": "Death Comes as the End!", + "site_detail_url": "https://comicvine.gamespot.com/batman-391-death-comes-as-the-end/4000-26343/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26366/", + "id": 26366, + "name": "Supergirl: Bride of -- X?", + "site_detail_url": "https://comicvine.gamespot.com/superman-415-supergirl-bride-of-x/4000-26366/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-113013/", + "id": 113013, + "name": "Strange Loves / Believe everything I Hear", + "site_detail_url": "https://comicvine.gamespot.com/detective-comics-558-strange-loves-believe-everyth/4000-113013/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26452/", + "id": 26452, + "name": "Aftershock", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-11-aftershock/4000-26452/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26445/", + "id": 26445, + "name": "The Hand of Fate", + "site_detail_url": "https://comicvine.gamespot.com/amethyst-princess-of-gemworld-13-the-hand-of-fate/4000-26445/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26456/", + "id": 26456, + "name": "2", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-197-2/4000-26456/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26458/", + "id": 26458, + "name": "Feithera by Stormlight!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-23-feithera-by-stormlight/4000-26458/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26444/", + "id": 26444, + "name": "The Crisis Comes to 1942! (And Vice Versa)", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-54-the-crisis-comes-to-1942-and-/4000-26444/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26549/", + "id": 26549, + "name": "Crisis at Canaveral/Shanghaied Into Space! Interlude Two", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-55-crisis-at-canaveralshanghaied/4000-26549/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26556/", + "id": 26556, + "name": "Final Crisis", + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths-12-final-crisis/4000-26556/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26562/", + "id": 26562, + "name": "\"1/ 0\"", + "site_detail_url": "https://comicvine.gamespot.com/green-lantern-198-1-0/4000-26562/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26564/", + "id": 26564, + "name": "Back From the Future!", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-24-back-from-the-future/4000-26564/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-109973/", + "id": 109973, + "name": "Of Gods and Men", + "site_detail_url": "https://comicvine.gamespot.com/wonder-woman-329-of-gods-and-men/4000-109973/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26575/", + "id": 26575, + "name": "Revelations", + "site_detail_url": "https://comicvine.gamespot.com/swamp-thing-46-revelations/4000-26575/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26641/", + "id": 26641, + "name": "The Sinister Secret of the Sixth Sense!; \"Shanghaied Into Hyperspace!\"-Interlude Three", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-56-the-sinister-secret-of-the-si/4000-26641/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26655/", + "id": 26655, + "name": "Business As Usual...", + "site_detail_url": "https://comicvine.gamespot.com/infinity-inc-25-business-as-usual/4000-26655/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26839/", + "id": 26839, + "name": "The Challenge of the Volt Lord", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-94-the-challenge-of-the-volt-lo/4000-26839/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-26941/", + "id": 26941, + "name": "The Big Kill!", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics-presents-95-the-big-kill/4000-26941/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-27031/", + "id": 27031, + "name": "The End of the Beginning", + "site_detail_url": "https://comicvine.gamespot.com/all-star-squadron-60-the-end-of-the-beginning/4000-27031/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-150946/", + "id": 150946, + "name": "The Untold Story", + "site_detail_url": "https://comicvine.gamespot.com/legends-of-the-dc-universe-crisis-on-infinite-eart/4000-150946/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-76361/", + "id": 76361, + "name": "The Quick and the Dead", + "site_detail_url": "https://comicvine.gamespot.com/deadman-dead-again-1-the-quick-and-the-dead/4000-76361/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-51441/", + "id": 51441, + "name": "Crisis", + "site_detail_url": "https://comicvine.gamespot.com/jla-incarnations-5-crisis/4000-51441/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-80574/", + "id": 80574, + "name": "Stealing Thunder, Prologue", + "site_detail_url": "https://comicvine.gamespot.com/jsa-32-stealing-thunder-prologue/4000-80574/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-472853/", + "id": 472853, + "name": "", + "site_detail_url": "https://comicvine.gamespot.com/clasicos-dc-nuevos-titanes-21/4000-472853/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-129019/", + "id": 129019, + "name": "Let There Be Lightning", + "site_detail_url": "https://comicvine.gamespot.com/dc-universe-0-let-there-be-lightning/4000-129019/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-234645/", + "id": 234645, + "name": "Crisis!; Snapshot: Resistance", + "site_detail_url": "https://comicvine.gamespot.com/dc-universe-legacies-5-crisis-snapshot-resistance/4000-234645/" + }, + { + "api_detail_url": "https://comicvine.gamespot.com/api/issue/4000-239025/", + "id": 239025, + "name": "Aftermath!; Snapshot: Revision!", + "site_detail_url": "https://comicvine.gamespot.com/dc-universe-legacies-6-aftermath-snapshot-revision/4000-239025/" + } + ], + "name": "Crisis on Infinite Earths", + "publisher": { + "api_detail_url": "https://comicvine.gamespot.com/api/publisher/4010-10/", + "id": 10, + "name": "DC Comics", + "site_detail_url": "https://comicvine.gamespot.com/dc-comics/4010-10/" + }, + "site_detail_url": "https://comicvine.gamespot.com/crisis-on-infinite-earths/4045-40764/" + }, + "version": "1.0" +} diff --git a/packages/client/src/__mocks__/api-response/story-arc-list.json b/src/__mocks__/api-response/story-arc-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/story-arc-list.json rename to src/__mocks__/api-response/story-arc-list.json diff --git a/packages/client/src/__mocks__/api-response/team-details.json b/src/__mocks__/api-response/team-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/team-details.json rename to src/__mocks__/api-response/team-details.json diff --git a/packages/client/src/__mocks__/api-response/team-list.json b/src/__mocks__/api-response/team-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/team-list.json rename to src/__mocks__/api-response/team-list.json diff --git a/packages/client/src/__mocks__/api-response/thing-details.json b/src/__mocks__/api-response/thing-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/thing-details.json rename to src/__mocks__/api-response/thing-details.json diff --git a/packages/client/src/__mocks__/api-response/thing-list.json b/src/__mocks__/api-response/thing-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/thing-list.json rename to src/__mocks__/api-response/thing-list.json diff --git a/packages/client/src/__mocks__/api-response/video-category-details.json b/src/__mocks__/api-response/video-category-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/video-category-details.json rename to src/__mocks__/api-response/video-category-details.json diff --git a/packages/client/src/__mocks__/api-response/video-category-list.json b/src/__mocks__/api-response/video-category-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/video-category-list.json rename to src/__mocks__/api-response/video-category-list.json diff --git a/packages/client/src/__mocks__/api-response/video-details.json b/src/__mocks__/api-response/video-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/video-details.json rename to src/__mocks__/api-response/video-details.json diff --git a/packages/client/src/__mocks__/api-response/video-list.json b/src/__mocks__/api-response/video-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/video-list.json rename to src/__mocks__/api-response/video-list.json diff --git a/packages/client/src/__mocks__/api-response/video-type-details.json b/src/__mocks__/api-response/video-type-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/video-type-details.json rename to src/__mocks__/api-response/video-type-details.json diff --git a/packages/client/src/__mocks__/api-response/video-type-list.json b/src/__mocks__/api-response/video-type-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/video-type-list.json rename to src/__mocks__/api-response/video-type-list.json diff --git a/packages/client/src/__mocks__/api-response/volume-details.json b/src/__mocks__/api-response/volume-details.json similarity index 100% rename from packages/client/src/__mocks__/api-response/volume-details.json rename to src/__mocks__/api-response/volume-details.json diff --git a/packages/client/src/__mocks__/api-response/volume-list.json b/src/__mocks__/api-response/volume-list.json similarity index 100% rename from packages/client/src/__mocks__/api-response/volume-list.json rename to src/__mocks__/api-response/volume-list.json diff --git a/packages/client/src/__mocks__/expected-responses/character-details.json b/src/__mocks__/expected-responses/character-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/character-details.json rename to src/__mocks__/expected-responses/character-details.json diff --git a/packages/client/src/__mocks__/expected-responses/character-list.json b/src/__mocks__/expected-responses/character-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/character-list.json rename to src/__mocks__/expected-responses/character-list.json diff --git a/packages/client/src/__mocks__/expected-responses/concept-details.json b/src/__mocks__/expected-responses/concept-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/concept-details.json rename to src/__mocks__/expected-responses/concept-details.json diff --git a/packages/client/src/__mocks__/expected-responses/concept-list.json b/src/__mocks__/expected-responses/concept-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/concept-list.json rename to src/__mocks__/expected-responses/concept-list.json diff --git a/packages/client/src/__mocks__/expected-responses/episode-details.json b/src/__mocks__/expected-responses/episode-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/episode-details.json rename to src/__mocks__/expected-responses/episode-details.json diff --git a/packages/client/src/__mocks__/expected-responses/episode-list.json b/src/__mocks__/expected-responses/episode-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/episode-list.json rename to src/__mocks__/expected-responses/episode-list.json diff --git a/packages/client/src/__mocks__/expected-responses/issue-details.json b/src/__mocks__/expected-responses/issue-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/issue-details.json rename to src/__mocks__/expected-responses/issue-details.json diff --git a/packages/client/src/__mocks__/expected-responses/issue-list-auto-pagination-limit-50.json b/src/__mocks__/expected-responses/issue-list-auto-pagination-limit-50.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/issue-list-auto-pagination-limit-50.json rename to src/__mocks__/expected-responses/issue-list-auto-pagination-limit-50.json diff --git a/packages/client/src/__mocks__/expected-responses/issue-list-auto-pagination-no-limit-or-offset.json b/src/__mocks__/expected-responses/issue-list-auto-pagination-no-limit-or-offset.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/issue-list-auto-pagination-no-limit-or-offset.json rename to src/__mocks__/expected-responses/issue-list-auto-pagination-no-limit-or-offset.json diff --git a/packages/client/src/__mocks__/expected-responses/issue-list.json b/src/__mocks__/expected-responses/issue-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/issue-list.json rename to src/__mocks__/expected-responses/issue-list.json diff --git a/packages/client/src/__mocks__/expected-responses/location-details.json b/src/__mocks__/expected-responses/location-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/location-details.json rename to src/__mocks__/expected-responses/location-details.json diff --git a/packages/client/src/__mocks__/expected-responses/location-list.json b/src/__mocks__/expected-responses/location-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/location-list.json rename to src/__mocks__/expected-responses/location-list.json diff --git a/packages/client/src/__mocks__/expected-responses/movie-details.json b/src/__mocks__/expected-responses/movie-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/movie-details.json rename to src/__mocks__/expected-responses/movie-details.json diff --git a/packages/client/src/__mocks__/expected-responses/movie-list.json b/src/__mocks__/expected-responses/movie-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/movie-list.json rename to src/__mocks__/expected-responses/movie-list.json diff --git a/packages/client/src/__mocks__/expected-responses/origin-details.json b/src/__mocks__/expected-responses/origin-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/origin-details.json rename to src/__mocks__/expected-responses/origin-details.json diff --git a/packages/client/src/__mocks__/expected-responses/origin-list.json b/src/__mocks__/expected-responses/origin-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/origin-list.json rename to src/__mocks__/expected-responses/origin-list.json diff --git a/src/__mocks__/expected-responses/person-details.json b/src/__mocks__/expected-responses/person-details.json new file mode 100644 index 0000000..11b1265 --- /dev/null +++ b/src/__mocks__/expected-responses/person-details.json @@ -0,0 +1,4335 @@ +{ + "aliases": null, + "apiDetailUrl": "https://comicvine.gamespot.com/api/person/4040-1252/", + "birth": null, + "countOfIsssueAppearances": null, + "country": "United States", + "createdCharacters": [ + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/character/4005-93197/", + "id": 93197, + "name": "Erin McKillen", + "siteDetailUrl": "https://comicvine.gamespot.com/erin-mckillen/4005-93197/" + } + ], + "dateAdded": "2008-06-06 11:28:12", + "dateLastUpdated": "2013-05-11 04:05:55", + "death": null, + "deck": "Michael Gray is a comic book Inker. He is best known for his frequent collaborations with artist JH Williams III on titles such as Promethea and Chase, and with artist Patrick Gleason on Batman and Robin for DC Comics. He has been nominated a few times for \"Best Inker\" at the Harvey Awards.", + "description": null, + "email": null, + "gender": 1, + "hometown": "Cupertino, CA", + "id": 1252, + "image": { + "iconUrl": "https://comicvine.gamespot.com/a/uploads/square_avatar/0/9241/386202-80098-mick-gray.jpg", + "mediumUrl": "https://comicvine.gamespot.com/a/uploads/scale_medium/0/9241/386202-80098-mick-gray.jpg", + "screenUrl": "https://comicvine.gamespot.com/a/uploads/screen_medium/0/9241/386202-80098-mick-gray.jpg", + "screenLargeUrl": "https://comicvine.gamespot.com/a/uploads/screen_kubrick/0/9241/386202-80098-mick-gray.jpg", + "smallUrl": "https://comicvine.gamespot.com/a/uploads/scale_small/0/9241/386202-80098-mick-gray.jpg", + "superUrl": "https://comicvine.gamespot.com/a/uploads/scale_large/0/9241/386202-80098-mick-gray.jpg", + "thumbUrl": "https://comicvine.gamespot.com/a/uploads/scale_avatar/0/9241/386202-80098-mick-gray.jpg", + "tinyUrl": "https://comicvine.gamespot.com/a/uploads/square_mini/0/9241/386202-80098-mick-gray.jpg", + "originalUrl": "https://comicvine.gamespot.com/a/uploads/original/0/9241/386202-80098-mick-gray.jpg", + "imageTags": "All Images,Mick" + }, + "issues": [ + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-1097753/", + "id": 1097753, + "name": "Book Two", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-1097753/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-1048371/", + "id": 1048371, + "name": "Book One", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-1048371/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-1044356/", + "id": 1044356, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/pete-townshends-life-house-1-hc/4000-1044356/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-1038299/", + "id": 1038299, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/special-strange-6/4000-1038299/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-922422/", + "id": 922422, + "name": "¡Mundos salvados!; ¡El mundo del caballero!; El mundo del mañana", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman-el-archivo-de-mundos-6-mundos-salva/4000-922422/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-960763/", + "id": 960763, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman-the-archive-of-worlds-1-hc/4000-960763/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-882788/", + "id": 882788, + "name": "The World of the Knight!; The World of Tomorrow", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman-2021-annual-1-the-world-of-the-knig/4000-882788/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-899014/", + "id": 899014, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/the-liberty-brigade-1/4000-899014/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-902195/", + "id": 902195, + "name": "Pequeñas Maravillas; Concéntrate; Noche de juegos", + "siteDetailUrl": "https://comicvine.gamespot.com/la-guerra-del-joker-6-pequenas-maravillas-concentr/4000-902195/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-897467/", + "id": 897467, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/dc-celebration-catwoman-1/4000-897467/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-826304/", + "id": 826304, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-the-dc-universe-doug-mahnke-1-hc/4000-826304/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-821728/", + "id": 821728, + "name": "Book Three", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-3-book-t/4000-821728/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-819323/", + "id": 819323, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition-1-hc/4000-819323/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-818619/", + "id": 818619, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/underworld-unleashed-the-25th-anniversary-edition-/4000-818619/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-768243/", + "id": 768243, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/joker-the-deluxe-edition-1-hc/4000-768243/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-766104/", + "id": 766104, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/catwoman-80th-anniversary-100-page-super-spectacul/4000-766104/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-731663/", + "id": 731663, + "name": "Book Two", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-2-book-t/4000-731663/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-730190/", + "id": 730190, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth-deluxe-edition-1-hc/4000-730190/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-889375/", + "id": 889375, + "name": "Der Tod der Familie (Teil 2)", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-graphic-novel-collection-24-der-tod-der-fam/4000-889375/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-714166/", + "id": 714166, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-dark-13/4000-714166/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-710050/", + "id": 710050, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/dog-days-of-summer-1/4000-710050/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-705907/", + "id": 705907, + "name": "Giants War Finale", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-68-giants-war-finale/4000-705907/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-703040/", + "id": 703040, + "name": "Giants War Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-66-giants-war-part-1/4000-703040/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-704777/", + "id": 704777, + "name": "Blow Out", + "siteDetailUrl": "https://comicvine.gamespot.com/batgirl-33-blow-out/4000-704777/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-704800/", + "id": 704800, + "name": "Giants War Part 2", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-67-giants-war-part-2/4000-704800/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-702448/", + "id": 702448, + "name": "Book One", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-20th-anniversary-deluxe-edition-1-book-o/4000-702448/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-694899/", + "id": 694899, + "name": "The Just War Part III", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-60-the-just-war-part-iii/4000-694899/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-692055/", + "id": 692055, + "name": "The Just War Part I", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-58-the-just-war-part-i/4000-692055/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-693452/", + "id": 693452, + "name": "The Just War Part II", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-59-the-just-war-part-ii/4000-693452/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-694223/", + "id": 694223, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/worlds-greatest-super-heroes-holiday-special-1/4000-694223/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-695619/", + "id": 695619, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/super-sons-omnibus-1-hc/4000-695619/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-691347/", + "id": 691347, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-bad-blood-dc-essential-edition-1-/4000-691347/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-925338/", + "id": 925338, + "name": "Enfants des Dieux", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-rebirth-5-enfants-des-dieux/4000-925338/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-680712/", + "id": 680712, + "name": "For the Wicked, No Rest", + "siteDetailUrl": "https://comicvine.gamespot.com/suicide-squad-annual-1-for-the-wicked-no-rest/4000-680712/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-676680/", + "id": 676680, + "name": "Constriction Conclusion", + "siteDetailUrl": "https://comicvine.gamespot.com/suicide-squad-44-constriction-conclusion/4000-676680/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-672268/", + "id": 672268, + "name": "Call of the Unknown: Part One - Punch First", + "siteDetailUrl": "https://comicvine.gamespot.com/the-unexpected-1-call-of-the-unknown-part-one-punc/4000-672268/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-1014628/", + "id": 1014628, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-sub-diego-1/4000-1014628/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-671309/", + "id": 671309, + "name": "Part One: From This Day Forward", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4000-671309/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-667624/", + "id": 667624, + "name": "Mind Over Matter", + "siteDetailUrl": "https://comicvine.gamespot.com/titans-annual-2-mind-over-matter/4000-667624/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-658701/", + "id": 658701, + "name": "Superhuman Trafficking Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lanterns-40-superhuman-trafficking-part-one/4000-658701/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-660634/", + "id": 660634, + "name": "Superhuman Trafficking Part Two", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lanterns-41-superhuman-trafficking-part-two/4000-660634/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-661134/", + "id": 661134, + "name": "Amazons Attacked Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-41-amazons-attacked-part-one/4000-661134/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-652599/", + "id": 652599, + "name": "Twilight of the Guardians Conclusion: What We Leave Behind", + "siteDetailUrl": "https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps-36-twilight/4000-652599/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-663593/", + "id": 663593, + "name": "Volume 0", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-blue-reunion-1-volume-0/4000-663593/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-649701/", + "id": 649701, + "name": "A Cold Day In Hell Part Two", + "siteDetailUrl": "https://comicvine.gamespot.com/the-flash-37-a-cold-day-in-hell-part-two/4000-649701/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-636361/", + "id": 636361, + "name": "The World Stops Part 2: The Fall of Troy", + "siteDetailUrl": "https://comicvine.gamespot.com/titans-17-the-world-stops-part-2-the-fall-of-troy/4000-636361/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-636365/", + "id": 636365, + "name": "Children of the Gods Part 3", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-34-children-of-the-gods-part-3/4000-636365/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-626261/", + "id": 626261, + "name": "Legacy Part Five", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-30-legacy-part-five/4000-626261/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-636335/", + "id": 636335, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4000-636335/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-643020/", + "id": 643020, + "name": "Volume 4", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-black-dawn-1-volume-4/4000-643020/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-609285/", + "id": 609285, + "name": "Son of Superman Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-justice-league-essentials-superman-1-son-of-sup/4000-609285/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-621601/", + "id": 621601, + "name": "Reborn", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-reborn-1-reborn/4000-621601/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-625293/", + "id": 625293, + "name": "Book 1", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-rebirth-deluxe-edition-1-book-1/4000-625293/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-599849/", + "id": 599849, + "name": "Black Dawn Chapter 5", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-24-black-dawn-chapter-5/4000-599849/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-603105/", + "id": 603105, + "name": "Black Dawn Chapter 6: Fade To Black", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-25-black-dawn-chapter-6-fade-to-black/4000-603105/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-611986/", + "id": 611986, + "name": "Multiplicity ", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-multiplicity-1-multiplicity/4000-611986/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-613733/", + "id": 613733, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-arkham-clayface-1-tpb/4000-613733/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-672545/", + "id": 672545, + "name": "Super-Söhne", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-sonderband-2-super-sohne/4000-672545/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-590782/", + "id": 590782, + "name": "Black Dawn Chapter 1", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-20-black-dawn-chapter-1/4000-590782/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-592580/", + "id": 592580, + "name": "Black Dawn Chapter 2", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-21-black-dawn-chapter-2/4000-592580/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-583707/", + "id": 583707, + "name": "Superman: Reborn Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-18-superman-reborn-part-1/4000-583707/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-587394/", + "id": 587394, + "name": "Superman: Reborn Part 3: Don't Pass Go", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-19-superman-reborn-part-3-dont-pass-go/4000-587394/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-672544/", + "id": 672544, + "name": "Volumen 1", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-sonderband-1-volumen-1/4000-672544/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-590783/", + "id": 590783, + "name": "Trials of the Super Son", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-trials-of-the-super-son-1-trials-of-the-s/4000-590783/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-574854/", + "id": 574854, + "name": "Multiplicity Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-14-multiplicity-part-1/4000-574854/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-670633/", + "id": 670633, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/robin-der-sohn-des-dunklen-ritters-2/4000-670633/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-556460/", + "id": 556460, + "name": "In the Name of the Father: World's Smallest Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-10-in-the-name-of-the-father-worlds-small/4000-556460/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-558402/", + "id": 558402, + "name": "In the Name of the Father: World's Smallest Part 2", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-11-in-the-name-of-the-father-worlds-small/4000-558402/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-574855/", + "id": 574855, + "name": "Son of Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-son-of-superman-1-son-of-superman/4000-574855/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-548567/", + "id": 548567, + "name": "Son of Superman Part Six", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-6-son-of-superman-part-six/4000-548567/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-550337/", + "id": 550337, + "name": "Our Town", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-7-our-town/4000-550337/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-542602/", + "id": 542602, + "name": "The Death and Life of Oliver Queen Part Four: Burn Your Bridges", + "siteDetailUrl": "https://comicvine.gamespot.com/green-arrow-4-the-death-and-life-of-oliver-queen-p/4000-542602/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-542613/", + "id": 542613, + "name": "Son of Superman Part Four", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-4-son-of-superman-part-four/4000-542613/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-544972/", + "id": 544972, + "name": "Son of Superman Part Five", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-5-son-of-superman-part-five/4000-544972/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-920230/", + "id": 920230, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/robinhijo-de-batman-2/4000-920230/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-538494/", + "id": 538494, + "name": "Son of Superman Part Two", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-2-son-of-superman-part-two/4000-538494/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-540058/", + "id": 540058, + "name": "Son of Superman Part Three", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-3-son-of-superman-part-three/4000-540058/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-548563/", + "id": 548563, + "name": "Volume 2: Dawn of the Demons", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-2-volume-2-dawn-of-the-demons/4000-548563/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-535341/", + "id": 535341, + "name": "Son of Superman Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-1-son-of-superman-part-one/4000-535341/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-537209/", + "id": 537209, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-arkham-killer-croc-1-tpb/4000-537209/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-520182/", + "id": 520182, + "name": "Son Is Rising", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-10-son-is-rising/4000-520182/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-920229/", + "id": 920229, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/robinhijo-de-batman-1/4000-920229/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-514417/", + "id": 514417, + "name": "Harmed and Dangerous Part Two", + "siteDetailUrl": "https://comicvine.gamespot.com/red-hoodarsenal-9-harmed-and-dangerous-part-two/4000-514417/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-516064/", + "id": 516064, + "name": "Better Angels", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-9-better-angels/4000-516064/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-517120/", + "id": 517120, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-essentials-batman-and-robin-1/4000-517120/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-511496/", + "id": 511496, + "name": "Heart of Ice", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-8-heart-of-ice/4000-511496/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-521313/", + "id": 521313, + "name": "Volume 1: Year of Blood", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-1-volume-1-year-of-blood/4000-521313/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-508873/", + "id": 508873, + "name": "Robin War Part 5: Fight the Nightmare", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-7-robin-war-part-5-fight-the-n/4000-508873/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-506636/", + "id": 506636, + "name": "Year of Blood Part Six", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-6-year-of-blood-part-six/4000-506636/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-504323/", + "id": 504323, + "name": "Year of Blood, Part Five", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-5-year-of-blood-part-five/4000-504323/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-893237/", + "id": 893237, + "name": "Superpoder: Vuela, Robin, vuela; Superpoder: Chico maravilla; Superpoder: El dúo dinámico; Programa espacial", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin-12-superpoder-vuela-robin-vuela-sup/4000-893237/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-500276/", + "id": 500276, + "name": "Year of Blood, Part Four", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-4-year-of-blood-part-four/4000-500276/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-506138/", + "id": 506138, + "name": "Volume 7: Robin Rises", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-7-volume-7-robin-rises/4000-506138/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-497922/", + "id": 497922, + "name": "Year of Blood, Part Three", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-3-year-of-blood-part-three/4000-497922/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-963039/", + "id": 963039, + "name": "Année Cinq", + "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-5-annee-cinq/4000-963039/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-495256/", + "id": 495256, + "name": "Year of Blood, Part Two", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-2-year-of-blood-part-two/4000-495256/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-492165/", + "id": 492165, + "name": "Year of Blood, Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman-1-year-of-blood-part-one/4000-492165/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-893236/", + "id": 893236, + "name": "Robin resurge: Caos; Robin resurge: Hijo de un agujero negro; Robin resurge: Alfa", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin-11-robin-resurge-caos-robin-resurge/4000-893236/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-493026/", + "id": 493026, + "name": "Volume 6: The Hunt For Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-6-volume-6-the-hunt-for-robin/4000-493026/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-483299/", + "id": 483299, + "name": "Superpower - The Dynamic Duo", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-40-superpower-the-dynamic-duo/4000-483299/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-489252/", + "id": 489252, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman-1/4000-489252/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-479927/", + "id": 479927, + "name": "Superpower - Boy Wonder", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-39-superpower-boy-wonder/4000-479927/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-893235/", + "id": 893235, + "name": "Robin resurge: Omega; Robin resurge: Justicia fría; Robin resurge: Lazos de unión; Robin resurge: Al infierno", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin-10-robin-resurge-omega-robin-resurg/4000-893235/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-497777/", + "id": 497777, + "name": "Die Jago Nach Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-6-die-jago-nach-robin/4000-497777/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-476739/", + "id": 476739, + "name": "Superpower - Fly Robin, Fly", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-38-superpower-fly-robin-fly/4000-476739/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-473583/", + "id": 473583, + "name": "Robin Rises, Part Five: Black Hole Son", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-37-robin-rises-part-five-black-ho/4000-473583/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-470365/", + "id": 470365, + "name": "Robin Rises Part Four: Chaos", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-36-robin-rises-part-four-chaos/4000-470365/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-468016/", + "id": 468016, + "name": "Robin Rises Part Three: Hellbound", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-35-robin-rises-part-three-hellbou/4000-468016/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-473618/", + "id": 473618, + "name": "Volume 5: The Big Burn", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-5-volume-5-the-big-burn/4000-473618/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-465789/", + "id": 465789, + "name": "Brothers in Arms", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-futures-end-1-brothers-in-arms/4000-465789/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-462846/", + "id": 462846, + "name": "Robin Rises Part Two: Ties That Bind", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-34-robin-rises-part-two-ties-that/4000-462846/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-460260/", + "id": 460260, + "name": "Robin Rises, Part One: Cold Justice", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-33-robin-rises-part-one-cold-just/4000-460260/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-456496/", + "id": 456496, + "name": "The Hunt for Robin: Dark of the Son", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-32-the-hunt-for-robin-dark-of-the/4000-456496/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-453354/", + "id": 453354, + "name": "The Hunt for Robin: City of Cold", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-31-the-hunt-for-robin-city-of-col/4000-453354/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-459664/", + "id": 459664, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/tales-of-the-batman-j-h-williams-iii-1-hc/4000-459664/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-450511/", + "id": 450511, + "name": "The Hunt for Robin: Paradise and Wonder", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-30-the-hunt-for-robin-paradise-an/4000-450511/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-455469/", + "id": 455469, + "name": "Volume 4: Requiem For Damian", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-4-volume-4-requiem-for-damian/4000-455469/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-447948/", + "id": 447948, + "name": "The Hunt for Robin: Devil and the Deep Blue Sea", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-29-the-hunt-for-robin-devil-and-t/4000-447948/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-445763/", + "id": 445763, + "name": "The Big Burn: Inferno", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-28-the-big-burn-inferno/4000-445763/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-442870/", + "id": 442870, + "name": "The Big Burn: Ablaze", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-27-the-big-burn-ablaze/4000-442870/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-443938/", + "id": 443938, + "name": "Batman and Robin: Week One", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-annual-2-batman-and-robin-week-on/4000-443938/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-443940/", + "id": 443940, + "name": "Book Four: Full Circle", + "siteDetailUrl": "https://comicvine.gamespot.com/damian-son-of-batman-4-book-four-full-circle/4000-443940/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-437417/", + "id": 437417, + "name": "The Big Burn: Ignition", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-26-the-big-burn-ignition/4000-437417/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-433786/", + "id": 433786, + "name": "The Big Burn: Sparks", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-25-the-big-burn-sparks/4000-433786/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-428251/", + "id": 428251, + "name": "Batman Death March", + "siteDetailUrl": "https://comicvine.gamespot.com/forever-evil-arkham-war-1-batman-death-march/4000-428251/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-436184/", + "id": 436184, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus-1-hc/4000-436184/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-503333/", + "id": 503333, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-dark-knight-18/4000-503333/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-428823/", + "id": 428823, + "name": "The Big Burn: First Strike", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-24-the-big-burn-first-strike/4000-428823/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-425893/", + "id": 425893, + "name": "The Demon's Tower", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-23-3-the-demon-s-tower/4000-425893/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-426806/", + "id": 426806, + "name": "Blood in the Water", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-23-4-blood-in-the-water/4000-426806/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-435038/", + "id": 435038, + "name": "Volume 3: Death of the Family", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-3-volume-3-death-of-the-family/4000-435038/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-446882/", + "id": 446882, + "name": "Jokers Todesspiel", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-robin-3-jokers-todesspiel/4000-446882/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-424494/", + "id": 424494, + "name": "A Rising Star of Red!", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-dark-knight-23-1-a-rising-star-of-red/4000-424494/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-424985/", + "id": 424985, + "name": "Exquisite Dread", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-23-2-exquisite-dread/4000-424985/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-423635/", + "id": 423635, + "name": "Split Screen", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-superman-3-split-screen/4000-423635/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-422432/", + "id": 422432, + "name": "Acceptance", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-23-acceptance/4000-422432/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-417791/", + "id": 417791, + "name": "Despair", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-22-despair/4000-417791/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-411784/", + "id": 411784, + "name": "The Bargain", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-21-the-bargain/4000-411784/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-401171/", + "id": 401171, + "name": "Rage", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-20-rage/4000-401171/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-396588/", + "id": 396588, + "name": "Denial", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-19-denial/4000-396588/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-408981/", + "id": 408981, + "name": "Volume 2: Pearl", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-2-volume-2-pearl/4000-408981/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-392309/", + "id": 392309, + "name": "Undone", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-18-undone/4000-392309/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-386089/", + "id": 386089, + "name": "Life is But a Dream", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-17-life-is-but-a-dream/4000-386089/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-403280/", + "id": 403280, + "name": "Terminus", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-2-terminus/4000-403280/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-380317/", + "id": 380317, + "name": "Cast a Giant Shadow", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-16-cast-a-giant-shadow/4000-380317/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-395491/", + "id": 395491, + "name": "Batman: Night of the Owls", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-definitive-edition-1301-batman-night-of-the-owl/4000-395491/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-372335/", + "id": 372335, + "name": "Little Big Man", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-15-little-big-man/4000-372335/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-387249/", + "id": 387249, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-deluxe-edition-1-hc/4000-387249/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-419929/", + "id": 419929, + "name": "¡La Guerra de los Robins!", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin-3-la-guerra-de-los-robins/4000-419929/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-367687/", + "id": 367687, + "name": "Devoured", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-14-devoured/4000-367687/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-360792/", + "id": 360792, + "name": "Eclipsed", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-13-eclipsed/4000-360792/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-374635/", + "id": 374635, + "name": "Brightest Day", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-absolute-edition-2-brightest-day/4000-374635/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-356720/", + "id": 356720, + "name": "Someday Never Comes", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-0-someday-never-comes/4000-356720/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-403279/", + "id": 403279, + "name": "Geboren zum Töten", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-1-geboren-zum-toten/4000-403279/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-349622/", + "id": 349622, + "name": "Terminus Last Gasp", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-12-terminus-last-gasp/4000-349622/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-419928/", + "id": 419928, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin-2/4000-419928/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-345343/", + "id": 345343, + "name": "Terminus Branded", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-11-terminus-branded/4000-345343/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-340149/", + "id": 340149, + "name": "Terminus, Scar of the Bat", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-10-terminus-scar-of-the-bat/4000-340149/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-344164/", + "id": 344164, + "name": "Volume 1: Born to Kill", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-1-volume-1-born-to-kill/4000-344164/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-335018/", + "id": 335018, + "name": "Robin Hears a Hoo", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-9-robin-hears-a-hoo/4000-335018/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-329215/", + "id": 329215, + "name": "Born to Kill: Black Dawn", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-8-born-to-kill-black-dawn/4000-329215/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-343072/", + "id": 343072, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin-1/4000-343072/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-321188/", + "id": 321188, + "name": "Driven", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-7-driven/4000-321188/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-314711/", + "id": 314711, + "name": "The Real Me", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-6-the-real-me/4000-314711/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-310553/", + "id": 310553, + "name": "Mutineer", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-5-mutineer/4000-310553/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-306480/", + "id": 306480, + "name": "Matter of Trust", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-4-matter-of-trust/4000-306480/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-326658/", + "id": 326658, + "name": "Vol. 1", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-omnibus-by-geoff-johns-1-vol-1/4000-326658/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-350269/", + "id": 350269, + "name": "Volume 2: Starring The Hawk And The Dove", + "siteDetailUrl": "https://comicvine.gamespot.com/steve-ditko-omnibus-2-volume-2-starring-the-hawk-a/4000-350269/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-356426/", + "id": 356426, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-1-tpb/4000-356426/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-301535/", + "id": 301535, + "name": "Knightmoves", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-3-knightmoves/4000-301535/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-313102/", + "id": 313102, + "name": "Volume 4", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-dark-knight-vs-white-knight-1-vol/4000-313102/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-313241/", + "id": 313241, + "name": "Chase TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-1-chase-tpb/4000-313241/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-294840/", + "id": 294840, + "name": "Bad Blood", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-2-bad-blood/4000-294840/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-292562/", + "id": 292562, + "name": "Born to Kill", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-1-born-to-kill/4000-292562/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-309982/", + "id": 309982, + "name": "Vol. 11", + "siteDetailUrl": "https://comicvine.gamespot.com/jonah-hex-bury-me-in-hell-1-vol-11/4000-309982/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-309378/", + "id": 309378, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-the-movie-prequels-1-tpb/4000-309378/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-283920/", + "id": 283920, + "name": "Weird Western", + "siteDetailUrl": "https://comicvine.gamespot.com/jonah-hex-70-weird-western/4000-283920/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-286176/", + "id": 286176, + "name": "Volume 3", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day-3-volume-3/4000-286176/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-270254/", + "id": 270254, + "name": "100-Page Spectacular", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-son-of-superman-1-100-page-spec/4000-270254/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-274516/", + "id": 274516, + "name": "A Small Unremarkable Planet", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-movie-prequel-abin-sur-1-a-small-unr/4000-274516/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-268723/", + "id": 268723, + "name": "War of the Green Lanterns, Part Four", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-65-war-of-the-green-lanterns-part-fo/4000-268723/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-268212/", + "id": 268212, + "name": "Dark Knight vs. White Knight: Tree of Blood, Conclusion", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-22-dark-knight-vs-white-knight-tr/4000-268212/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-268974/", + "id": 268974, + "name": "Brightest Day", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day-24-brightest-day/4000-268974/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-475037/", + "id": 475037, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-2/4000-475037/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-265495/", + "id": 265495, + "name": "Dark Knight vs. White Knight, Part 2 of 3: Tree of Blood", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-21-dark-knight-vs-white-knight-pa/4000-265495/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-261127/", + "id": 261127, + "name": "Dark Knight vs. White Knight, Part 1 of 3: Tree of Blood", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-20-dark-knight-vs-white-knight-pa/4000-261127/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-263849/", + "id": 263849, + "name": "DC Comics Presents: Batman Conspiracy", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-batman-conspiracy-1-dc-comics-p/4000-263849/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-264821/", + "id": 264821, + "name": "Volume 2", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day-2-volume-2/4000-264821/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-247373/", + "id": 247373, + "name": "Whatever Happened to the Manhunter from Mars?", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day-15-whatever-happened-to-the-manhunte/4000-247373/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-250640/", + "id": 250640, + "name": "All the Rage, Part Two of Two", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-annual-28-all-the-rage-part-two-of-two/4000-250640/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-259584/", + "id": 259584, + "name": "HC", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-the-deluxe-editio/4000-259584/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-313305/", + "id": 313305, + "name": "Volume Two", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory-2-volume-two/4000-313305/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-241081/", + "id": 241081, + "name": "DC Comics Presents: Chase", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-chase-1-dc-comics-presents-chas/4000-241081/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-246719/", + "id": 246719, + "name": "Of Friends & Enemies", + "siteDetailUrl": "https://comicvine.gamespot.com/the-outsiders-34-of-friends-enemies/4000-246719/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-300603/", + "id": 300603, + "name": "Vol. 6", + "siteDetailUrl": "https://comicvine.gamespot.com/outsiders-the-great-divide-1-vol-6/4000-300603/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-239026/", + "id": 239026, + "name": "All This Useless Beauty", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day-12-all-this-useless-beauty/4000-239026/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-238432/", + "id": 238432, + "name": "DC Comics Presents: Brightest Day 100-Page Spectacular #1", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-brightest-day-1-dc-comics-prese/4000-238432/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-238131/", + "id": 238131, + "name": "Masquerade", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-5-masquerade/4000-238131/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-240418/", + "id": 240418, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/luthor-1-tpb/4000-240418/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-218193/", + "id": 218193, + "name": "Absolute Promethea Vol. 2", + "siteDetailUrl": "https://comicvine.gamespot.com/absolute-promethea-2-absolute-promethea-vol-2/4000-218193/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-219973/", + "id": 219973, + "name": "Operation: Gunslinger, Part 3: Never Say Die; The Fox", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-10-operation-gunslinger-part-3-never-sa/4000-219973/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-213925/", + "id": 213925, + "name": "Operation: Gunslinger; The Fox, Part 3", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-9-operation-gunslinger-the-fox-part-3/4000-213925/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-301846/", + "id": 301846, + "name": "Volume One", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-one/4000-301846/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-201389/", + "id": 201389, + "name": "Operation Gunslinger, Part 1: Down Range; The Fox, Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-7-operation-gunslinger-part-1-down-rang/4000-201389/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249411/", + "id": 249411, + "name": "Absolute Green Lantern: Rebirth", + "siteDetailUrl": "https://comicvine.gamespot.com/absolute-green-lantern-rebirth-1-absolute-green-la/4000-249411/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-196846/", + "id": 196846, + "name": "Rockets Red Glare Ghost part 3; Seeking Heat, Part 2 of 2", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-6-rockets-red-glare-ghost-part-3-seekin/4000-196846/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-192697/", + "id": 192697, + "name": "Jungle Warfare: Ghosts, Part 2; Seeking Heat, Part 1 of 2", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-5-jungle-warfare-ghosts-part-2-seeking-/4000-192697/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-300928/", + "id": 300928, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-dance-1-tpb/4000-300928/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-182945/", + "id": 182945, + "name": "Hearts & Minds Kicking Down the Door part 3; Second Feature:Inferno-Burning Inside part 3 of 4", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-3-hearts-minds-kicking-down-the-door-pa/4000-182945/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-300929/", + "id": 300929, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-1-tpb/4000-300929/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-176276/", + "id": 176276, + "name": "Kicking Down The Door, Part 2: Alpha Dogs; Burning Inside, Part 2", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-2-kicking-down-the-door-part-2-alpha-do/4000-176276/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-252454/", + "id": 252454, + "name": "The Wrath", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-wrath-1-the-wrath/4000-252454/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-170795/", + "id": 170795, + "name": "Kicking Down The Door, Part 1; Burning Inside, Part 1 of 4", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield-1-kicking-down-the-door-part-1-burning-/4000-170795/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-164166/", + "id": 164166, + "name": "Breaking Peace", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-3-breaking-peace/4000-164166/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-218192/", + "id": 218192, + "name": "Absolute Promethea Vol. 1", + "siteDetailUrl": "https://comicvine.gamespot.com/absolute-promethea-1-absolute-promethea-vol-1/4000-218192/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-159767/", + "id": 159767, + "name": "Part 2: Pawns", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-2-part-2-pawns/4000-159767/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-157517/", + "id": 157517, + "name": "Part 1: The Electric City", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-escape-1-part-1-the-electri/4000-157517/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-157822/", + "id": 157822, + "name": "This Is How We Do It", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-dance-1-this-is-how-we-do-i/4000-157822/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-198686/", + "id": 198686, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-omnibus-menace-revealed-1-tpb/4000-198686/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-318459/", + "id": 318459, + "name": "A League of Their Own", + "siteDetailUrl": "https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own-1-a-/4000-318459/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-259636/", + "id": 259636, + "name": "Thy Kingdom Come: Part Three", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-3-thy-/4000-259636/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-150537/", + "id": 150537, + "name": "Compound Fracture", + "siteDetailUrl": "https://comicvine.gamespot.com/supermanbatman-annual-3-compound-fracture/4000-150537/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-236760/", + "id": 236760, + "name": "Vol. 2", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-omnibus-2-vol-2/4000-236760/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-142001/", + "id": 142001, + "name": "Stars In Your Eyes, Part 2", + "siteDetailUrl": "https://comicvine.gamespot.com/booster-gold-14-stars-in-your-eyes-part-2/4000-142001/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-172977/", + "id": 172977, + "name": "Secret Invasion: Fantastic Four", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-secret-invasion-f/4000-172977/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-189473/", + "id": 189473, + "name": "The Real Me", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-kingdom-come-special-magog-1-the-real-me/4000-189473/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-189475/", + "id": 189475, + "name": "The Kingdom", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-kingdom-come-special-the-kingdom-1-the-kingdom/4000-189475/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-259635/", + "id": 259635, + "name": "Thy Kingdom Come: Part Two", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come-2-thy-/4000-259635/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-140479/", + "id": 140479, + "name": "Stars In Your Eyes, Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/booster-gold-13-stars-in-your-eyes-part-1/4000-140479/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-136524/", + "id": 136524, + "name": "One World, Under Gog Part III: War Lords", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-society-of-america-18-one-world-under-gog-/4000-136524/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-141427/", + "id": 141427, + "name": "HC/SC", + "siteDetailUrl": "https://comicvine.gamespot.com/joker-1-hcsc/4000-141427/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-134595/", + "id": 134595, + "name": "No one gets back alive! Part 3: Escape from Fantasy Island", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-3-no-one-gets-back-/4000-134595/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-131504/", + "id": 131504, + "name": "No one gets back alive! Part 2", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-2-no-one-gets-back-/4000-131504/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-130245/", + "id": 130245, + "name": "No One Gets Back Alive! Part 1: Negative Energy", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-invasion-fantastic-four-1-no-one-gets-back-/4000-130245/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-127226/", + "id": 127226, + "name": "Wrath Child, Conclusion", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-confidential-16-wrath-child-conclusion/4000-127226/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-133986/", + "id": 133986, + "name": "Dial H for Hero", + "siteDetailUrl": "https://comicvine.gamespot.com/teen-titans-go-52-dial-h-for-hero/4000-133986/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-127421/", + "id": 127421, + "name": "Wrath Child, Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-confidential-13-wrath-child-part-one/4000-127421/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-120389/", + "id": 120389, + "name": "The Blood-Soaked Sands", + "siteDetailUrl": "https://comicvine.gamespot.com/countdown-arena-1-the-blood-soaked-sands/4000-120389/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-209075/", + "id": 209075, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/tales-of-the-new-gods-1-tpb/4000-209075/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-267887/", + "id": 267887, + "name": "Volume 5", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-the-domin/4000-267887/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114997/", + "id": 114997, + "name": "The Wanderers", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-30-the-wa/4000-114997/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114995/", + "id": 114995, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-28/4000-114995/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-244818/", + "id": 244818, + "name": "HC/TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-corps-to-be-a-lantern-1-hc-tpb/4000-244818/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114994/", + "id": 114994, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-27/4000-114994/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-267886/", + "id": 267886, + "name": "Volume 4", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-adult-edu/4000-267886/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114993/", + "id": 114993, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-26/4000-114993/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114978/", + "id": 114978, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-25/4000-114978/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114977/", + "id": 114977, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-24/4000-114977/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114975/", + "id": 114975, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-23/4000-114975/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-249691/", + "id": 249691, + "name": "Lex Luthor: Man of Steel", + "siteDetailUrl": "https://comicvine.gamespot.com/lex-luthor-man-of-steel-1-lex-luthor-man-of-steel/4000-249691/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-818982/", + "id": 818982, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/sette-soldati-della-vittoria-1/4000-818982/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-267799/", + "id": 267799, + "name": "Volume 3", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-strange-v/4000-267799/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-106850/", + "id": 106850, + "name": "Homecoming", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-corps-3-homecoming/4000-106850/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114972/", + "id": 114972, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-20/4000-114972/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114916/", + "id": 114916, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-18/4000-114916/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114915/", + "id": 114915, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-17/4000-114915/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114907/", + "id": 114907, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-16/4000-114907/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-309770/", + "id": 309770, + "name": "Volume 2", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream-2-volume-2/4000-309770/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-255911/", + "id": 255911, + "name": "Vol. 3", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory-3-vol-3/4000-255911/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114963/", + "id": 114963, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-13/4000-114963/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-255908/", + "id": 255908, + "name": "Volume 1", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory-1-volume-1/4000-255908/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114962/", + "id": 114962, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-12/4000-114962/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-255910/", + "id": 255910, + "name": "Vol. 2", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory-2-vol-2/4000-255910/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-114923/", + "id": 114923, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-11/4000-114923/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-108868/", + "id": 108868, + "name": "Zor", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-zatanna-4-zor/4000-108868/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-309762/", + "id": 309762, + "name": "Volume 1", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution-1-volume/4000-309762/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-336988/", + "id": 336988, + "name": "Rebirth", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth-1-rebirth/4000-336988/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-99199/", + "id": 99199, + "name": "Mixed Signals", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-77-mixed-signals/4000-99199/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-191684/", + "id": 191684, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/lex-luthor-man-of-steel-5/4000-191684/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-108867/", + "id": 108867, + "name": "Three Days of the Dead", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-zatanna-3-three-days-of-the-dead/4000-108867/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-108866/", + "id": 108866, + "name": "A Book in the Beginning", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-zatanna-2-a-book-in-the-beginning/4000-108866/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-196968/", + "id": 196968, + "name": "Book Five", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-5-book-five/4000-196968/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-108704/", + "id": 108704, + "name": "Talking Backwards - Sdrawkcab Gniklat", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-zatanna-1-talking-backwards-sdrawkc/4000-108704/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105296/", + "id": 105296, + "name": "Fight the Power", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-4-fight-the-power/4000-105296/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-130088/", + "id": 130088, + "name": "Brightest Day", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth-6-brightest-day/4000-130088/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-261306/", + "id": 261306, + "name": "Promethea Number Omega", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-covers-book-number-omega-o-promethea-num/4000-261306/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-100873/", + "id": 100873, + "name": "Retroverse Two: Brother vs. Brother!", + "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-27-retroverse-two-brother-vs-brother/4000-100873/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-130086/", + "id": 130086, + "name": "Rings", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth-5-rings/4000-130086/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-103849/", + "id": 103849, + "name": "Tomorrow's Heroes Today!", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-2-tomorrows-heroes-today/4000-103849/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-98296/", + "id": 98296, + "name": "Escape", + "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-25-escape/4000-98296/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-98340/", + "id": 98340, + "name": "The Tower of Silence", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-35-the-tower-of-silence/4000-98340/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-96793/", + "id": 96793, + "name": "And We Are Legion", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-1-and-we-are-legion/4000-96793/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-98295/", + "id": 98295, + "name": "Plunder", + "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-24-plunder/4000-98295/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-98339/", + "id": 98339, + "name": "The Gift", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-34-the-gift/4000-98339/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-97715/", + "id": 97715, + "name": "Joyride", + "siteDetailUrl": "https://comicvine.gamespot.com/firestorm-6-joyride/4000-97715/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-133275/", + "id": 133275, + "name": "Fates Warning (Part 4)", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-31-fates-warning-part-4/4000-133275/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-96647/", + "id": 96647, + "name": "Past Tense", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-adventures-34-past-tense/4000-96647/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-133274/", + "id": 133274, + "name": "Fates Warning (Part 3)", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-30-fates-warning-part-3/4000-133274/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-133273/", + "id": 133273, + "name": "Fates Warning (Part 2)", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-29-fates-warning-part-2/4000-133273/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-133272/", + "id": 133272, + "name": "Fates Warning (Part 1)", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-28-fates-warning-part-1/4000-133272/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105578/", + "id": 105578, + "name": "Everything Must Go!", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-30-everything-must-go/4000-105578/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-105577/", + "id": 105577, + "name": "Valley of the Dolls", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-29-valley-of-the-dolls/4000-105577/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-276363/", + "id": 276363, + "name": "Allies And Enemies", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-allies-and-enemies-1-allies-and-enemies/4000-276363/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-880579/", + "id": 880579, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/batman-bruce-wayne-auf-der-flucht-2/4000-880579/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-132643/", + "id": 132643, + "name": "Martian Manhunter to Zatanna", + "siteDetailUrl": "https://comicvine.gamespot.com/jla-z-3-martian-manhunter-to-zatanna/4000-132643/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-120848/", + "id": 120848, + "name": "The DC Comics Encyclopedia", + "siteDetailUrl": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia-1-the-dc-comics-encyclo/4000-120848/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-284198/", + "id": 284198, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-bruce-wayne-morder-2/4000-284198/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-880592/", + "id": 880592, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-nach-dem-feuer-3/4000-880592/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-196966/", + "id": 196966, + "name": "Book Four", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-4-book-four/4000-196966/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-151362/", + "id": 151362, + "name": "Killers (Part 1)", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-13-killers-part-1/4000-151362/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-315079/", + "id": 315079, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-1-tpb/4000-315079/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-203730/", + "id": 203730, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/bruce-wayne-fugitive-2/4000-203730/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-175485/", + "id": 175485, + "name": "The Day Before", + "siteDetailUrl": "https://comicvine.gamespot.com/jlajsa-secret-files-origins-1-the-day-before/4000-175485/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-143491/", + "id": 143491, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman-/4000-143491/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-168493/", + "id": 168493, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/green-arrow-secret-files-and-origins-1/4000-168493/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-211895/", + "id": 211895, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-secret-files-and-origins-1/4000-211895/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-175057/", + "id": 175057, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/batgirl-secret-files-and-origins-1/4000-175057/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-159157/", + "id": 159157, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-3/4000-159157/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78434/", + "id": 78434, + "name": "Hard-Loving Heroes", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-secret-files-and-origins-3-hard-lovi/4000-78434/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-201506/", + "id": 201506, + "name": "TPB", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-bruce-wayne-murderer-1-tpb/4000-201506/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-84992/", + "id": 84992, + "name": "Book Three", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-3-book-three/4000-84992/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-113283/", + "id": 113283, + "name": "Purity (Part 1); Lost Voices (Part 6);", + "siteDetailUrl": "https://comicvine.gamespot.com/detective-comics-768-purity-part-1-lost-voices-par/4000-113283/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-113282/", + "id": 113282, + "name": "Timeles; Lost Voices (Part 5);", + "siteDetailUrl": "https://comicvine.gamespot.com/detective-comics-767-timeles-lost-voices-part-5/4000-113282/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174505/", + "id": 174505, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones-3/4000-174505/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-89257/", + "id": 89257, + "name": "Now, More Than Ever--For Truth, Justice & The American Way!", + "siteDetailUrl": "https://comicvine.gamespot.com/adventures-of-superman-600-now-more-than-ever-for-/4000-89257/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-108330/", + "id": 108330, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/marvel-universe-millennial-visions-1/4000-108330/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174504/", + "id": 174504, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones-2/4000-174504/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-80605/", + "id": 80605, + "name": "Red Glare!", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-18-red-glare/4000-80605/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-127290/", + "id": 127290, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones-1/4000-127290/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-303970/", + "id": 303970, + "name": "Divided We Fall", + "siteDetailUrl": "https://comicvine.gamespot.com/jla-divided-we-fall-1-divided-we-fall/4000-303970/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-80604/", + "id": 80604, + "name": "Gold", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-17-gold/4000-80604/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-228818/", + "id": 228818, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/joker-last-laugh-secret-files-1/4000-228818/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-140291/", + "id": 140291, + "name": "Rogues; Moments Too Late", + "siteDetailUrl": "https://comicvine.gamespot.com/flash-secret-files-3-rogues-moments-too-late/4000-140291/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-80603/", + "id": 80603, + "name": "Love and the Law", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-16-love-and-the-law/4000-80603/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-51449/", + "id": 51449, + "name": "Breaking Storms", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-secret-files-2-breaking-storms/4000-51449/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-51232/", + "id": 51232, + "name": "The Hunted Conclusion", + "siteDetailUrl": "https://comicvine.gamespot.com/wolverine-166-the-hunted-conclusion/4000-51232/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-80602/", + "id": 80602, + "name": "Mercury Rising", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-15-mercury-rising/4000-80602/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-82535/", + "id": 82535, + "name": "Book Two", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-2-book-two/4000-82535/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-94059/", + "id": 94059, + "name": "My Brother, My Enemy", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-bishop-genesis-4-my-brother-my-enemy/4000-94059/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-80601/", + "id": 80601, + "name": "Moon River", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-14-moon-river/4000-80601/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-94061/", + "id": 94061, + "name": "What Goes 'Round Comes 'Round!", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-bishop-genesis-6-what-goes-round-comes-roun/4000-94061/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-94060/", + "id": 94060, + "name": "Are We Ourselves", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-bishop-genesis-5-are-we-ourselves/4000-94060/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-94058/", + "id": 94058, + "name": "That's Stryfe That's What People Say", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-and-bishop-3-thats-stryfe-thats-what-people/4000-94058/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-51228/", + "id": 51228, + "name": "The Best There Is Part 3 of 3", + "siteDetailUrl": "https://comicvine.gamespot.com/wolverine-161-the-best-there-is-part-3-of-3/4000-51228/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-94057/", + "id": 94057, + "name": "Enter... The Witness", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-bishop-genesis-2-enter-the-witness/4000-94057/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-80600/", + "id": 80600, + "name": "The Fields We Know", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-13-the-fields-we-know/4000-80600/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-51227/", + "id": 51227, + "name": "The Best There Is Part 2 of 3", + "siteDetailUrl": "https://comicvine.gamespot.com/wolverine-160-the-best-there-is-part-2-of-3/4000-51227/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-94056/", + "id": 94056, + "name": "I See A Bad Moon Rising", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-bishop-genesis-1-i-see-a-bad-moon-rising/4000-94056/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46894/", + "id": 46894, + "name": "The Magic Theater: A Pop Art Happening", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-12-the-magic-theater-a-pop-art-happening/4000-46894/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46893/", + "id": 46893, + "name": "Under Attack!", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-11-under-attack/4000-46893/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-66953/", + "id": 66953, + "name": "The Queen of Fables, Part 2 of 3: Truth is Stranger", + "siteDetailUrl": "https://comicvine.gamespot.com/jla-48-the-queen-of-fables-part-2-of-3-truth-is-st/4000-66953/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46892/", + "id": 46892, + "name": "Sex Stars, and Serpents", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-10-sex-stars-and-serpents/4000-46892/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-96381/", + "id": 96381, + "name": "Witch's Son/Die, Fish, Die", + "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents-157-witchs-sondie-fish-die/4000-96381/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46891/", + "id": 46891, + "name": "Bringing Down the Temple!", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-9-bringing-down-the-temple/4000-46891/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-123750/", + "id": 123750, + "name": "Something Worth Fighting For", + "siteDetailUrl": "https://comicvine.gamespot.com/magneto-dark-seduction-3-something-worth-fighting-/4000-123750/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-108260/", + "id": 108260, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-millennial-visions-1/4000-108260/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-96380/", + "id": 96380, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents-156/4000-96380/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-82534/", + "id": 82534, + "name": "Book One", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-1-book-one/4000-82534/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46890/", + "id": 46890, + "name": "Guys and Dolls", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-8-guys-and-dolls/4000-46890/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-151460/", + "id": 151460, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-i-hate-it-here-1/4000-151460/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46889/", + "id": 46889, + "name": "Rocks and Hard Places", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-7-rocks-and-hard-places/4000-46889/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46888/", + "id": 46888, + "name": "A Warrior Princess of Hy Brasil", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-6-a-warrior-princess-of-hy-brasil/4000-46888/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-199682/", + "id": 199682, + "name": "Here and Now", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe-/4000-199682/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46887/", + "id": 46887, + "name": "Weapon for Liberty", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-5-weapon-for-liberty/4000-46887/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-261542/", + "id": 261542, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-17/4000-261542/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-123076/", + "id": 123076, + "name": "HC/SC", + "siteDetailUrl": "https://comicvine.gamespot.com/son-of-superman-1-hcsc/4000-123076/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46886/", + "id": 46886, + "name": "A Faerie Romance", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-4-a-faerie-romance/4000-46886/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46885/", + "id": 46885, + "name": "Misty Magic Land", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-3-misty-magic-land/4000-46885/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46884/", + "id": 46884, + "name": "The Judgment of Solomon!", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-2-the-judgment-of-solomon/4000-46884/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-51448/", + "id": 51448, + "name": "Gathering Storms;Lost Pages:Black Canary & Doctor Fate in Dead Ends;History 101", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-secret-files-1-gathering-stormslost-pagesblack/4000-51448/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-46883/", + "id": 46883, + "name": "The Radiant Heavenly City", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-1-the-radiant-heavenly-city/4000-46883/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-69285/", + "id": 69285, + "name": "The Dissing", + "siteDetailUrl": "https://comicvine.gamespot.com/the-titans-4-the-dissing/4000-69285/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-172544/", + "id": 172544, + "name": "The Evil that We Do", + "siteDetailUrl": "https://comicvine.gamespot.com/dcu-villains-secret-files-and-origins-1-the-evil-t/4000-172544/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174969/", + "id": 174969, + "name": "\"Spies Like Us\"; A Guide to Resurrection Man's Powers; An Anarky Primer; Vext: The Formative Years; Lost Pages; Stars and S.T.R.I.P.E. Yearbook", + "siteDetailUrl": "https://comicvine.gamespot.com/dcu-heroes-secret-files-1-spies-like-us-a-guide-to/4000-174969/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-291024/", + "id": 291024, + "name": "Starman: Times Past", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-times-past-1-starman-times-past/4000-291024/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45594/", + "id": 45594, + "name": "Dreams End", + "siteDetailUrl": "https://comicvine.gamespot.com/x-man-47-dreams-end/4000-45594/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45556/", + "id": 45556, + "name": "Stormfront", + "siteDetailUrl": "https://comicvine.gamespot.com/x-man-46-stormfront/4000-45556/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-241690/", + "id": 241690, + "name": "Legends of the DC Universe 3-D", + "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-the-dc-universe-3-d-1-legends-of-the-dc/4000-241690/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45431/", + "id": 45431, + "name": "Don't Believe It!", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-1000000-dont-believe-it/4000-45431/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-47226/", + "id": 47226, + "name": "Time On My Hands", + "siteDetailUrl": "https://comicvine.gamespot.com/chronos-1000000-time-on-my-hands/4000-47226/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45367/", + "id": 45367, + "name": "Reflections In Emerald", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-9-reflections-in-emerald/4000-45367/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45295/", + "id": 45295, + "name": "The Unmasking!", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-8-the-unmasking/4000-45295/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-120458/", + "id": 120458, + "name": "Brightest Light; Darkest Light; Know Evil", + "siteDetailUrl": "https://comicvine.gamespot.com/tangent-comics-tales-of-the-green-lantern-1-bright/4000-120458/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45207/", + "id": 45207, + "name": "Shadowing the Bat", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-7-shadowing-the-bat/4000-45207/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45257/", + "id": 45257, + "name": "Mental Block", + "siteDetailUrl": "https://comicvine.gamespot.com/the-creeper-9-mental-block/4000-45257/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-68985/", + "id": 68985, + "name": "Blood Wedding", + "siteDetailUrl": "https://comicvine.gamespot.com/wolverine-126-blood-wedding/4000-68985/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-78433/", + "id": 78433, + "name": "Guy Talk", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-secret-files-1-guy-talk/4000-78433/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-174963/", + "id": 174963, + "name": "Girl's Day Out", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-6-girl-s-day-out/4000-174963/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-45014/", + "id": 45014, + "name": "Better Days", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-5-better-days/4000-45014/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-44926/", + "id": 44926, + "name": "Weep For The Future", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-4-weep-for-the-future/4000-44926/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-218225/", + "id": 218225, + "name": null, + "siteDetailUrl": "https://comicvine.gamespot.com/starman-secret-files-and-origins-1/4000-218225/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-44845/", + "id": 44845, + "name": "Pickups", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-3-pickups/4000-44845/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-290885/", + "id": 290885, + "name": "Starman: A Wicked Inclination", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-a-wicked-inclination-1-starman-a-wicked-in/4000-290885/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-44749/", + "id": 44749, + "name": "Letdowns", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-2-letdowns/4000-44749/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-44644/", + "id": 44644, + "name": "Baptized in Fire", + "siteDetailUrl": "https://comicvine.gamespot.com/chase-1-baptized-in-fire/4000-44644/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-306358/", + "id": 306358, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-special-2/4000-306358/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-120435/", + "id": 120435, + "name": "\"From Beyond The Unknown\"", + "siteDetailUrl": "https://comicvine.gamespot.com/tangent-comics-green-lantern-1-from-beyond-the-unk/4000-120435/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-120450/", + "id": 120450, + "name": "Secrets & Lies", + "siteDetailUrl": "https://comicvine.gamespot.com/tangent-comics-metal-men-1-secrets-lies/4000-120450/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-140289/", + "id": 140289, + "name": "A Run of Luck; Fast as Fast Can Be; The Case of the Screaming Skull;", + "siteDetailUrl": "https://comicvine.gamespot.com/flash-secret-files-1-a-run-of-luck-fast-as-fast-ca/4000-140289/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-43850/", + "id": 43850, + "name": "Hell Breaks Loose", + "siteDetailUrl": "https://comicvine.gamespot.com/the-flash-127-hell-breaks-loose/4000-43850/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-43669/", + "id": 43669, + "name": "Rupert and Marguerite: 1865 & 1931", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shade-2-rupert-and-marguerite-1865-1931/4000-43669/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-316548/", + "id": 316548, + "name": "The Batman Chronicles Gallery", + "siteDetailUrl": "https://comicvine.gamespot.com/the-batman-chronicles-gallery-1-the-batman-chronic/4000-316548/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-82306/", + "id": 82306, + "name": "The Screams of the Green Dragon", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-annual-21-the-screams-of-the-green-dragon/4000-82306/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-142606/", + "id": 142606, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-riders-1/4000-142606/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-43256/", + "id": 43256, + "name": "To Hell and Back, Conclusion", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-26-to-hell-and-back-conclusion/4000-43256/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-42952/", + "id": 42952, + "name": "Conspiracy Part 3 of 3", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-88-conspiracy-pa/4000-42952/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-42956/", + "id": 42956, + "name": "Light in Darkness", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-80-light-in-darkness/4000-42956/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-42856/", + "id": 42856, + "name": "Conspiracy Part 2 of 3", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-87-conspiracy-pa/4000-42856/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-42769/", + "id": 42769, + "name": "Conspiracy Part 1 of 3", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight-86-conspiracy-pa/4000-42769/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-98681/", + "id": 98681, + "name": "Badblood - Part One", + "siteDetailUrl": "https://comicvine.gamespot.com/bloodshot-47-badblood-part-one/4000-98681/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107018/", + "id": 107018, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/battlezones-dream-team-2-1/4000-107018/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-41854/", + "id": 41854, + "name": "Legends of the Dead Earth", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-annual-1-legends-of-the-dead-earth/4000-41854/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-41948/", + "id": 41948, + "name": "Constant Whitewater", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-526-constant-whitewater/4000-41948/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-246320/", + "id": 246320, + "name": "Jack Kirby's Fourth World Gallery", + "siteDetailUrl": "https://comicvine.gamespot.com/jack-kirbys-fourth-world-gallery-1-jack-kirbys-fou/4000-246320/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-41900/", + "id": 41900, + "name": "Silent Running", + "siteDetailUrl": "https://comicvine.gamespot.com/the-flash-annual-9-silent-running/4000-41900/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-136327/", + "id": 136327, + "name": "Wired!", + "siteDetailUrl": "https://comicvine.gamespot.com/steel-23-wired/4000-136327/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-135963/", + "id": 135963, + "name": "Over Dark Evil", + "siteDetailUrl": "https://comicvine.gamespot.com/underworld-unleashed-abyss-hells-sentinel-1-over-d/4000-135963/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-116721/", + "id": 116721, + "name": "The Official Comic Book Adaptation of the Hit Film", + "siteDetailUrl": "https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie-1-the-offic/4000-116721/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-41113/", + "id": 41113, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/fury-of-shield-4/4000-41113/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-40975/", + "id": 40975, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/fury-of-shield-3/4000-40975/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-40851/", + "id": 40851, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/fury-of-shield-2/4000-40851/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-40817/", + "id": 40817, + "name": "Chok II", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-task-force-23-chok-ii/4000-40817/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-64981/", + "id": 64981, + "name": "Fire Of Freedom", + "siteDetailUrl": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-4-fire-of-freedom/4000-64981/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-40688/", + "id": 40688, + "name": "Chokula", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-task-force-22-chokula/4000-40688/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107412/", + "id": 107412, + "name": "The Cage", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-100-the-cage/4000-107412/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-64978/", + "id": 64978, + "name": "Stolen Lives", + "siteDetailUrl": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-3-stolen-lives/4000-64978/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-64975/", + "id": 64975, + "name": "Targets", + "siteDetailUrl": "https://comicvine.gamespot.com/spider-man-friends-and-enemies-2-targets/4000-64975/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107480/", + "id": 107480, + "name": "Last Entry Part 1: Road to Death; Trouble Part 5: Father's Day", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal-71-last-entry-part-1-road/4000-107480/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-65611/", + "id": 65611, + "name": "Power and Responsibility, Part 4: Higher Ground; The Double, Part Four: The Burial", + "siteDetailUrl": "https://comicvine.gamespot.com/the-spectacular-spider-man-217-power-and-responsib/4000-65611/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107476/", + "id": 107476, + "name": "Pariah Part 5: Strict Time!; Trouble Part 3: Homecoming", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal-69-pariah-part-5-strict-t/4000-107476/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-357116/", + "id": 357116, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/phantom-force-6/4000-357116/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107475/", + "id": 107475, + "name": "Pariah Part 4: Bad Turn; Trouble Part 2: Family Values", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal-68-pariah-part-4-bad-turn/4000-107475/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-357114/", + "id": 357114, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/phantom-force-4/4000-357114/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77439/", + "id": 77439, + "name": "Pariah Part Three; Trouble Part One: Return of the Prodigal", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal-67-pariah-part-three-trou/4000-77439/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77438/", + "id": 77438, + "name": "Pariah Part Two; Last Exit", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal-66-pariah-part-two-last-e/4000-77438/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-77437/", + "id": 77437, + "name": "Pariah Part One: Pariah!", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal-65-pariah-part-one-pariah/4000-77437/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107327/", + "id": 107327, + "name": "Suicide Run Part 9: Past The Point Of Rescue", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-88-suicide-run-part-9-past-the-point-/4000-107327/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107326/", + "id": 107326, + "name": "Suicide Run Part 6: False Moves", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-87-suicide-run-part-6-false-moves/4000-107326/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107323/", + "id": 107323, + "name": "Suicide Run, Part 3: Deadline", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-86-suicide-run-part-3-deadline/4000-107323/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107427/", + "id": 107427, + "name": "Suicide Run Part 0: Smoke & Fire", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-85-suicide-run-part-0-smoke-fire/4000-107427/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-38270/", + "id": 38270, + "name": "The Whispers Scream", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-unlimited-3-the-whispers-scream/4000-38270/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107426/", + "id": 107426, + "name": "Firefight: Part 3", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-84-firefight-part-3/4000-107426/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107425/", + "id": 107425, + "name": "Firefight: Part 2", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-83-firefight-part-2/4000-107425/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-91553/", + "id": 91553, + "name": "Savage Return", + "siteDetailUrl": "https://comicvine.gamespot.com/darkhawk-32-savage-return/4000-91553/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107424/", + "id": 107424, + "name": "Firefight: Part 1", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-82-firefight-part-1/4000-107424/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-231936/", + "id": 231936, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/mad-dog-4/4000-231936/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107441/", + "id": 107441, + "name": "Psychoville U.S.A. Part 5: Empty Nest", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-zone-16-psychoville-usa-part-5-em/4000-107441/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107440/", + "id": 107440, + "name": "Psychoville U.S.A. Part 4: Father Knows Best", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-zone-15-psychoville-usa-part-4-fa/4000-107440/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107439/", + "id": 107439, + "name": "Psychoville U.S.A. Part 3: My Two Dads", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-zone-14-psychoville-usa-part-3-my/4000-107439/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107438/", + "id": 107438, + "name": "Psychoville U.S.A. Part 2: Happy Days", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-zone-13-psychoville-usa-part-2-ha/4000-107438/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-107437/", + "id": 107437, + "name": "Psychoville U.S.A. Part 1: Family Ties", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-zone-12-psychoville-usa-part-1-fa/4000-107437/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-117528/", + "id": 117528, + "name": "Quarry; Air Strike; One Day At A Time ", + "siteDetailUrl": "https://comicvine.gamespot.com/deathlok-annual-2-quarry-air-strike-one-day-at-a-t/4000-117528/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33654/", + "id": 33654, + "name": "Run Like Hell", + "siteDetailUrl": "https://comicvine.gamespot.com/the-griffin-5-run-like-hell/4000-33654/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33649/", + "id": 33649, + "name": "The Drums of War", + "siteDetailUrl": "https://comicvine.gamespot.com/the-griffin-4-the-drums-of-war/4000-33649/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33644/", + "id": 33644, + "name": "Standing in the Ashes", + "siteDetailUrl": "https://comicvine.gamespot.com/the-griffin-3-standing-in-the-ashes/4000-33644/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33631/", + "id": 33631, + "name": "Old Wounds", + "siteDetailUrl": "https://comicvine.gamespot.com/the-griffin-2-old-wounds/4000-33631/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-33621/", + "id": 33621, + "name": "The Griffin Returns", + "siteDetailUrl": "https://comicvine.gamespot.com/the-griffin-1-the-griffin-returns/4000-33621/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-145406/", + "id": 145406, + "name": "", + "siteDetailUrl": "https://comicvine.gamespot.com/hero-sandwich-5/4000-145406/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-29689/", + "id": 29689, + "name": "Getting to 99 Pt. 1; The Adventures of Zot! in Dimension 10 ½ 19", + "siteDetailUrl": "https://comicvine.gamespot.com/zot-19-getting-to-99-pt-1-the-adventures-of-zot-in/4000-29689/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/issue/4000-29747/", + "id": 29747, + "name": "Getting to 99 Pt. 2; The Adventures of Zot! in Dimension 10 ½ 20", + "siteDetailUrl": "https://comicvine.gamespot.com/zot-20-getting-to-99-pt-2-the-adventures-of-zot-in/4000-29747/" + } + ], + "name": "Mick Gray", + "siteDetailUrl": "https://comicvine.gamespot.com/mick-gray/4040-1252/", + "storyArcCredits": [ + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58773/", + "id": 58773, + "name": "\"X-Men\" Apocalypse Wars", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-apocalypse-wars/4045-58773/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59892/", + "id": 59892, + "name": "\"Cable\" The Dark Ride", + "siteDetailUrl": "https://comicvine.gamespot.com/cable-the-dark-ride/4045-59892/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60978/", + "id": 60978, + "name": "\"Avengers/X-Men/Eternals\" A.X.E.: Judgment Day", + "siteDetailUrl": "https://comicvine.gamespot.com/avengersx-meneternals-axe-judgment-day/4045-60978/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60353/", + "id": 60353, + "name": "\"Justice League\" DCeased", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-dceased/4045-60353/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-61044/", + "id": 61044, + "name": "\"DC Universe\" Lazarus Planet", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-universe-lazarus-planet/4045-61044/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60984/", + "id": 60984, + "name": "\"X-Men\" Destiny of X", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-destiny-of-x/4045-60984/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-52856/", + "id": 52856, + "name": "\"Batman\" Batman & Son", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-batman-and-son/4045-52856/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59936/", + "id": 59936, + "name": "\"2000 AD\" Invasion!", + "siteDetailUrl": "https://comicvine.gamespot.com/2000-ad-invasion/4045-59936/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57578/", + "id": 57578, + "name": "\"2000 AD\" M.A.C.H.1", + "siteDetailUrl": "https://comicvine.gamespot.com/2000-ad-mach1/4045-57578/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59137/", + "id": 59137, + "name": "\"2000 AD\" Harlem Heroes", + "siteDetailUrl": "https://comicvine.gamespot.com/2000-ad-harlem-heroes/4045-59137/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60403/", + "id": 60403, + "name": "\"2000 AD\" Tharg's Future Shocks", + "siteDetailUrl": "https://comicvine.gamespot.com/2000-ad-thargs-future-shocks/4045-60403/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58807/", + "id": 58807, + "name": "\"Weekly Shonen Jump\" Kujira Daigo", + "siteDetailUrl": "https://comicvine.gamespot.com/weekly-shonen-jump-kujira-daigo/4045-58807/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59002/", + "id": 59002, + "name": "\"Black Jack\" Aru Kyōshi to Seito", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-aru-kyoshi-to-seito/4045-59002/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-61204/", + "id": 61204, + "name": "\"Rokudenashi Blues\" Return to Ōsaka", + "siteDetailUrl": "https://comicvine.gamespot.com/rokudenashi-blues-return-to-osaka/4045-61204/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-61156/", + "id": 61156, + "name": "\"Spider-Man\" Gang War", + "siteDetailUrl": "https://comicvine.gamespot.com/spider-man-gang-war/4045-61156/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58204/", + "id": 58204, + "name": "\"Black Jack\" Dingo", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-dingo/4045-58204/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-61041/", + "id": 61041, + "name": "\"Detective Comics\" Gotham Nocturne", + "siteDetailUrl": "https://comicvine.gamespot.com/detective-comics-gotham-nocturne/4045-61041/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59303/", + "id": 59303, + "name": "\"Weekly Shonen Jump\" Arakkure!", + "siteDetailUrl": "https://comicvine.gamespot.com/weekly-shonen-jump-arakkure/4045-59303/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58611/", + "id": 58611, + "name": "\"Black Jack\" Futari-Me ga Ita", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-futari-me-ga-ita/4045-58611/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57752/", + "id": 57752, + "name": "\"Samurai Giants\" Kaimaku no Shō", + "siteDetailUrl": "https://comicvine.gamespot.com/samurai-giants-kaimaku-no-sho/4045-57752/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57709/", + "id": 57709, + "name": "\"Samurai Giants\" Kettō no Shō", + "siteDetailUrl": "https://comicvine.gamespot.com/samurai-giants-ketto-no-sho/4045-57709/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58629/", + "id": 58629, + "name": "\"Weekly Shonen Jump\" Yoake no Tategami", + "siteDetailUrl": "https://comicvine.gamespot.com/weekly-shonen-jump-yoake-no-tategami/4045-58629/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-56668/", + "id": 56668, + "name": "\"Black Jack\" Shiroi-Me", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-shiroi-me/4045-56668/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57437/", + "id": 57437, + "name": "\"Black Jack\" Invader", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-invader/4045-57437/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59412/", + "id": 59412, + "name": "\"Black Jack\" Yuki no Yorubanashi", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-yuki-no-yorubanashi/4045-59412/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58413/", + "id": 58413, + "name": "\"Black Jack\" Kaizoku no Ude", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-kaizoku-no-ude/4045-58413/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-56951/", + "id": 56951, + "name": "\"Black Jack\" Tozasareta Kioku", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-tozasareta-kioku/4045-56951/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59981/", + "id": 59981, + "name": "\"Black Jack\" Futari no Shūji", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-futari-no-shuji/4045-59981/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59822/", + "id": 59822, + "name": "\"Black Jack\" Kishibojin no Musuko", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-kishibojin-no-musuko/4045-59822/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58443/", + "id": 58443, + "name": "\"Black Jack\" Nadare", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-nadare/4045-58443/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-57795/", + "id": 57795, + "name": "\"Black Jack\" Kōishō", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-koisho/4045-57795/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-59142/", + "id": 59142, + "name": "\"Black Jack\" Pinoko Aishiteru", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-pinoko-aishiteru/4045-59142/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58484/", + "id": 58484, + "name": "\"Black Jack\" Kikeinōshu", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-kikeinoshu/4045-58484/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58672/", + "id": 58672, + "name": "\"Black Jack\" Dirty Jack", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-dirty-jack/4045-58672/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58876/", + "id": 58876, + "name": "\"Black Jack\" Pinoko Futatabi", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-pinoko-futatabi/4045-58876/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-60036/", + "id": 60036, + "name": "\"Black Jack\" Haiiro no Yakata", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-haiiro-no-yakata/4045-60036/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/story_arc/4045-58066/", + "id": 58066, + "name": "\"Black Jack\" Pinoko Ikiteru", + "siteDetailUrl": "https://comicvine.gamespot.com/black-jack-pinoko-ikiteru/4045-58066/" + } + ], + "volumeCredits": [ + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3399/", + "id": 3399, + "name": "Zot!", + "siteDetailUrl": "https://comicvine.gamespot.com/zot/4050-3399/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4553/", + "id": 4553, + "name": "The Griffin", + "siteDetailUrl": "https://comicvine.gamespot.com/the-griffin/4050-4553/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5066/", + "id": 5066, + "name": "X-Men Unlimited", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-unlimited/4050-5066/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4967/", + "id": 4967, + "name": "Justice League Task Force", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-task-force/4050-4967/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5545/", + "id": 5545, + "name": "Fury of S.H.I.E.L.D.", + "siteDetailUrl": "https://comicvine.gamespot.com/fury-of-shield/4050-5545/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5765/", + "id": 5765, + "name": "Starman Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-annual/4050-5765/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3791/", + "id": 3791, + "name": "The Flash Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/the-flash-annual/4050-3791/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-796/", + "id": 796, + "name": "Batman", + "siteDetailUrl": "https://comicvine.gamespot.com/batman/4050-796/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4720/", + "id": 4720, + "name": "Batman: Legends of the Dark Knight", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-legends-of-the-dark-knight/4050-4720/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4363/", + "id": 4363, + "name": "Green Lantern", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern/4050-4363/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5259/", + "id": 5259, + "name": "Starman", + "siteDetailUrl": "https://comicvine.gamespot.com/starman/4050-5259/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5966/", + "id": 5966, + "name": "The Shade", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shade/4050-5966/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3790/", + "id": 3790, + "name": "The Flash", + "siteDetailUrl": "https://comicvine.gamespot.com/the-flash/4050-3790/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-6152/", + "id": 6152, + "name": "Chase", + "siteDetailUrl": "https://comicvine.gamespot.com/chase/4050-6152/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5945/", + "id": 5945, + "name": "The Creeper", + "siteDetailUrl": "https://comicvine.gamespot.com/the-creeper/4050-5945/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5567/", + "id": 5567, + "name": "X-Man", + "siteDetailUrl": "https://comicvine.gamespot.com/x-man/4050-5567/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-6568/", + "id": 6568, + "name": "Promethea", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea/4050-6568/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-6602/", + "id": 6602, + "name": "Chronos", + "siteDetailUrl": "https://comicvine.gamespot.com/chronos/4050-6602/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4250/", + "id": 4250, + "name": "Wolverine", + "siteDetailUrl": "https://comicvine.gamespot.com/wolverine/4050-4250/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-7222/", + "id": 7222, + "name": "JSA Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-secret-files/4050-7222/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9082/", + "id": 9082, + "name": "Spider-Man: Friends and Enemies", + "siteDetailUrl": "https://comicvine.gamespot.com/spider-man-friends-and-enemies/4050-9082/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-2870/", + "id": 2870, + "name": "The Spectacular Spider-Man", + "siteDetailUrl": "https://comicvine.gamespot.com/the-spectacular-spider-man/4050-2870/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5957/", + "id": 5957, + "name": "JLA", + "siteDetailUrl": "https://comicvine.gamespot.com/jla/4050-5957/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9145/", + "id": 9145, + "name": "The Titans", + "siteDetailUrl": "https://comicvine.gamespot.com/the-titans/4050-9145/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4066/", + "id": 4066, + "name": "The Punisher War Journal", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-journal/4050-4066/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-7211/", + "id": 7211, + "name": "Green Lantern Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-secret-files/4050-7211/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-158754/", + "id": 158754, + "name": "Green Lantern Secret Files And Origins", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-secret-files-and-origins/4050-158754/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3109/", + "id": 3109, + "name": "Batman Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-annual/4050-3109/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9576/", + "id": 9576, + "name": "Promethea", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea/4050-9576/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3778/", + "id": 3778, + "name": "Adventures of Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/adventures-of-superman/4050-3778/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4587/", + "id": 4587, + "name": "Darkhawk", + "siteDetailUrl": "https://comicvine.gamespot.com/darkhawk/4050-4587/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-10906/", + "id": 10906, + "name": "Gambit & Bishop", + "siteDetailUrl": "https://comicvine.gamespot.com/gambit-bishop/4050-10906/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3739/", + "id": 3739, + "name": "Dark Horse Presents", + "siteDetailUrl": "https://comicvine.gamespot.com/dark-horse-presents/4050-3739/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-10065/", + "id": 10065, + "name": "Justice League Adventures", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-adventures/4050-10065/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-11059/", + "id": 11059, + "name": "Legion of Super-Heroes", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes/4050-11059/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-11157/", + "id": 11157, + "name": "Firestorm", + "siteDetailUrl": "https://comicvine.gamespot.com/firestorm/4050-11157/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9517/", + "id": 9517, + "name": "Aquaman", + "siteDetailUrl": "https://comicvine.gamespot.com/aquaman/4050-9517/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9402/", + "id": 9402, + "name": "Hawkman", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman/4050-9402/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5067/", + "id": 5067, + "name": "Bloodshot", + "siteDetailUrl": "https://comicvine.gamespot.com/bloodshot/4050-5067/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-6331/", + "id": 6331, + "name": "JSA", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa/4050-6331/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18248/", + "id": 18248, + "name": "Green Lantern Corps", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-corps/4050-18248/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18277/", + "id": 18277, + "name": "Battlezones: Dream Team 2", + "siteDetailUrl": "https://comicvine.gamespot.com/battlezones-dream-team-2/4050-18277/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-3855/", + "id": 3855, + "name": "The Punisher", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher/4050-3855/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-4807/", + "id": 4807, + "name": "The Punisher: War Zone", + "siteDetailUrl": "https://comicvine.gamespot.com/the-punisher-war-zone/4050-4807/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18447/", + "id": 18447, + "name": "X-Men: Millennial Visions", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-millennial-visions/4050-18447/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18457/", + "id": 18457, + "name": "Marvel Universe: Millennial Visions", + "siteDetailUrl": "https://comicvine.gamespot.com/marvel-universe-millennial-visions/4050-18457/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18517/", + "id": 18517, + "name": "Seven Soldiers: Zatanna", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-zatanna/4050-18517/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18058/", + "id": 18058, + "name": "Detective Comics", + "siteDetailUrl": "https://comicvine.gamespot.com/detective-comics/4050-18058/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19189/", + "id": 19189, + "name": "Supergirl and the Legion of Super-Heroes", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes/4050-19189/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19519/", + "id": 19519, + "name": "Mighty Morphin Power Rangers: The Movie", + "siteDetailUrl": "https://comicvine.gamespot.com/mighty-morphin-power-rangers-the-movie/4050-19519/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19570/", + "id": 19570, + "name": "Deathlok Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/deathlok-annual/4050-19570/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20179/", + "id": 20179, + "name": "Countdown: Arena", + "siteDetailUrl": "https://comicvine.gamespot.com/countdown-arena/4050-20179/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20189/", + "id": 20189, + "name": "Tangent Comics/ Green Lantern", + "siteDetailUrl": "https://comicvine.gamespot.com/tangent-comics-green-lantern/4050-20189/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20196/", + "id": 20196, + "name": "Tangent Comics/ Metal Men", + "siteDetailUrl": "https://comicvine.gamespot.com/tangent-comics-metal-men/4050-20196/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20204/", + "id": 20204, + "name": "Tangent Comics/ Tales of the Green Lantern", + "siteDetailUrl": "https://comicvine.gamespot.com/tangent-comics-tales-of-the-green-lantern/4050-20204/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20244/", + "id": 20244, + "name": "The DC Comics Encyclopedia", + "siteDetailUrl": "https://comicvine.gamespot.com/the-dc-comics-encyclopedia/4050-20244/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20553/", + "id": 20553, + "name": "Son of Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/son-of-superman/4050-20553/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-20099/", + "id": 20099, + "name": "Magneto Dark Seduction", + "siteDetailUrl": "https://comicvine.gamespot.com/magneto-dark-seduction/4050-20099/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18231/", + "id": 18231, + "name": "Batman Confidential", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-confidential/4050-18231/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21178/", + "id": 21178, + "name": "Star Wars: Starfighter: Crossbones", + "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-starfighter-crossbones/4050-21178/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21531/", + "id": 21531, + "name": "Green Lantern: Rebirth", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth/4050-21531/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21574/", + "id": 21574, + "name": "Secret Invasion: Fantastic Four", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-21574/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-21995/", + "id": 21995, + "name": "JLA-Z", + "siteDetailUrl": "https://comicvine.gamespot.com/jla-z/4050-21995/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-11258/", + "id": 11258, + "name": "Teen Titans Go!", + "siteDetailUrl": "https://comicvine.gamespot.com/teen-titans-go/4050-11258/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-22671/", + "id": 22671, + "name": "Underworld Unleashed: Abyss - Hell's Sentinel", + "siteDetailUrl": "https://comicvine.gamespot.com/underworld-unleashed-abyss-hells-sentinel/4050-22671/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-5260/", + "id": 5260, + "name": "Steel", + "siteDetailUrl": "https://comicvine.gamespot.com/steel/4050-5260/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18052/", + "id": 18052, + "name": "Justice Society of America", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-society-of-america/4050-18052/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-23376/", + "id": 23376, + "name": "Flash Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/flash-secret-files/4050-23376/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19025/", + "id": 19025, + "name": "Booster Gold", + "siteDetailUrl": "https://comicvine.gamespot.com/booster-gold/4050-19025/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-23571/", + "id": 23571, + "name": "Joker", + "siteDetailUrl": "https://comicvine.gamespot.com/joker/4050-23571/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-23902/", + "id": 23902, + "name": "Justice Riders", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-riders/4050-23902/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24156/", + "id": 24156, + "name": "Alan Moore: Portrait of an Extraordinary Gentleman", + "siteDetailUrl": "https://comicvine.gamespot.com/alan-moore-portrait-of-an-extraordinary-gentleman/4050-24156/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24563/", + "id": 24563, + "name": "Hero Sandwich", + "siteDetailUrl": "https://comicvine.gamespot.com/hero-sandwich/4050-24563/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-19020/", + "id": 19020, + "name": "Superman/Batman Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/supermanbatman-annual/4050-19020/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25724/", + "id": 25724, + "name": "Transmetropolitan: I Hate It Here", + "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan-i-hate-it-here/4050-25724/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26415/", + "id": 26415, + "name": "Final Crisis Aftermath: Escape", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-escape/4050-26415/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26443/", + "id": 26443, + "name": "Final Crisis Aftermath: Dance", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-dance/4050-26443/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26592/", + "id": 26592, + "name": "Batman/Deathblow: After the Fire", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire/4050-26592/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-27573/", + "id": 27573, + "name": "Green Arrow: Secret Files & Origins", + "siteDetailUrl": "https://comicvine.gamespot.com/green-arrow-secret-files-origins/4050-27573/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-27860/", + "id": 27860, + "name": "The Shield", + "siteDetailUrl": "https://comicvine.gamespot.com/the-shield/4050-27860/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28100/", + "id": 28100, + "name": "DCU Villains Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/dcu-villains-secret-files/4050-28100/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28152/", + "id": 28152, + "name": "Secret Invasion: Fantastic Four", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-invasion-fantastic-four/4050-28152/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28410/", + "id": 28410, + "name": "DCU Heroes Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/dcu-heroes-secret-files/4050-28410/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28426/", + "id": 28426, + "name": "Batgirl Secret Files and Origins", + "siteDetailUrl": "https://comicvine.gamespot.com/batgirl-secret-files-and-origins/4050-28426/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-28479/", + "id": 28479, + "name": "JLA/JSA Secret Files & Origins", + "siteDetailUrl": "https://comicvine.gamespot.com/jlajsa-secret-files-origins/4050-28479/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-30670/", + "id": 30670, + "name": "JSA Kingdom Come Special: Magog", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-kingdom-come-special-magog/4050-30670/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-30672/", + "id": 30672, + "name": "JSA Kingdom Come Special: The Kingdom", + "siteDetailUrl": "https://comicvine.gamespot.com/jsa-kingdom-come-special-the-kingdom/4050-30672/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-30949/", + "id": 30949, + "name": "Lex Luthor: Man of Steel", + "siteDetailUrl": "https://comicvine.gamespot.com/lex-luthor-man-of-steel/4050-30949/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-31712/", + "id": 31712, + "name": "Star Wars Omnibus: Menace Revealed", + "siteDetailUrl": "https://comicvine.gamespot.com/star-wars-omnibus-menace-revealed/4050-31712/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24100/", + "id": 24100, + "name": "Secret Files and Origins Guide to the DC Universe", + "siteDetailUrl": "https://comicvine.gamespot.com/secret-files-and-origins-guide-to-the-dc-universe/4050-24100/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32113/", + "id": 32113, + "name": "Batman: Bruce Wayne-Murderer?", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-bruce-wayne-murderer/4050-32113/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32367/", + "id": 32367, + "name": "Bruce Wayne: Fugitive", + "siteDetailUrl": "https://comicvine.gamespot.com/bruce-wayne-fugitive/4050-32367/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32695/", + "id": 32695, + "name": "Tales of the New Gods", + "siteDetailUrl": "https://comicvine.gamespot.com/tales-of-the-new-gods/4050-32695/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32909/", + "id": 32909, + "name": "Hawkman Secret Files and Origins", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-secret-files-and-origins/4050-32909/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-33609/", + "id": 33609, + "name": "Absolute Promethea", + "siteDetailUrl": "https://comicvine.gamespot.com/absolute-promethea/4050-33609/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-33613/", + "id": 33613, + "name": "Starman Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-secret-files/4050-33613/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-34835/", + "id": 34835, + "name": "Joker: Last Laugh Secret Files", + "siteDetailUrl": "https://comicvine.gamespot.com/joker-last-laugh-secret-files/4050-34835/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-9096/", + "id": 9096, + "name": "Mad-Dog", + "siteDetailUrl": "https://comicvine.gamespot.com/mad-dog/4050-9096/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-35780/", + "id": 35780, + "name": "Starman Omnibus", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-omnibus/4050-35780/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-33073/", + "id": 33073, + "name": "Batman: The Return of Bruce Wayne", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne/4050-33073/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36130/", + "id": 36130, + "name": "DC Comics Presents: Brightest Day", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-brightest-day/4050-36130/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-32561/", + "id": 32561, + "name": "Brightest Day", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day/4050-32561/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36420/", + "id": 36420, + "name": "Luthor", + "siteDetailUrl": "https://comicvine.gamespot.com/luthor/4050-36420/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36496/", + "id": 36496, + "name": "DC Comics Presents: Chase", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-chase/4050-36496/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36545/", + "id": 36545, + "name": "Legends of the DC Universe 3-D Gallery", + "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-the-dc-universe-3-d-gallery/4050-36545/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36721/", + "id": 36721, + "name": "Green Lantern Corps: To Be A Lantern", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-corps-to-be-a-lantern/4050-36721/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-36879/", + "id": 36879, + "name": "Jack Kirby's Fourth World Gallery", + "siteDetailUrl": "https://comicvine.gamespot.com/jack-kirbys-fourth-world-gallery/4050-36879/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-25804/", + "id": 25804, + "name": "The Outsiders", + "siteDetailUrl": "https://comicvine.gamespot.com/the-outsiders/4050-25804/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-37529/", + "id": 37529, + "name": "Absolute Green Lantern: Rebirth", + "siteDetailUrl": "https://comicvine.gamespot.com/absolute-green-lantern-rebirth/4050-37529/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-37598/", + "id": 37598, + "name": "Lex Luthor: Man of Steel", + "siteDetailUrl": "https://comicvine.gamespot.com/lex-luthor-man-of-steel/4050-37598/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-37886/", + "id": 37886, + "name": "Batman: The Wrath", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-wrath/4050-37886/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38232/", + "id": 38232, + "name": "Seven Soldiers of Victory", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory/4050-38232/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38702/", + "id": 38702, + "name": "Batman: The Return of Bruce Wayne - The Deluxe Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne-the-deluxe-editio/4050-38702/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38711/", + "id": 38711, + "name": "Justice Society of America: Thy Kingdom Come", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-society-of-america-thy-kingdom-come/4050-38711/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26584/", + "id": 26584, + "name": "Batman and Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin/4050-26584/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38903/", + "id": 38903, + "name": "Promethea Covers Book", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-covers-book/4050-38903/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-38942/", + "id": 38942, + "name": "Transmetropolitan", + "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan/4050-38942/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-39129/", + "id": 39129, + "name": "DC Comics Presents: Batman Conspiracy", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-batman-conspiracy/4050-39129/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-37337/", + "id": 37337, + "name": "Brightest Day", + "siteDetailUrl": "https://comicvine.gamespot.com/brightest-day/4050-37337/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-39683/", + "id": 39683, + "name": "Supergirl And The Legion Of Super-Heroes: Strange Visitor From Another Century", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-strange-v/4050-39683/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-39697/", + "id": 39697, + "name": "Supergirl And The Legion Of Super-Heroes: Adult Education", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-adult-edu/4050-39697/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-39698/", + "id": 39698, + "name": "Supergirl And The Legion Of Super-Heroes: The Dominator War", + "siteDetailUrl": "https://comicvine.gamespot.com/supergirl-and-the-legion-of-super-heroes-the-domin/4050-39698/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18216/", + "id": 18216, + "name": "Green Lantern", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern/4050-18216/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-40188/", + "id": 40188, + "name": "DC Comics Presents: Son of Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-presents-son-of-superman/4050-40188/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-40715/", + "id": 40715, + "name": "Green Lantern Movie Prequel: Abin Sur", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-movie-prequel-abin-sur/4050-40715/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-40974/", + "id": 40974, + "name": "Hawkman: Allies and Enemies", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-allies-and-enemies/4050-40974/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-18677/", + "id": 18677, + "name": "Jonah Hex", + "siteDetailUrl": "https://comicvine.gamespot.com/jonah-hex/4050-18677/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-41791/", + "id": 41791, + "name": "Batman: Bruce Wayne: Mörder?", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-bruce-wayne-morder/4050-41791/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-42442/", + "id": 42442, + "name": "Starman: A Wicked Inclination", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-a-wicked-inclination/4050-42442/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-26365/", + "id": 26365, + "name": "Starman: Times Past", + "siteDetailUrl": "https://comicvine.gamespot.com/starman-times-past/4050-26365/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-42692/", + "id": 42692, + "name": "Batman and Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin/4050-42692/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43687/", + "id": 43687, + "name": "Outsiders: The Great Divide", + "siteDetailUrl": "https://comicvine.gamespot.com/outsiders-the-great-divide/4050-43687/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43772/", + "id": 43772, + "name": "Final Crisis Aftermath: Dance", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-dance/4050-43772/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43773/", + "id": 43773, + "name": "Final Crisis Aftermath: Escape", + "siteDetailUrl": "https://comicvine.gamespot.com/final-crisis-aftermath-escape/4050-43773/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-43919/", + "id": 43919, + "name": "Seven Soldiers of Victory", + "siteDetailUrl": "https://comicvine.gamespot.com/seven-soldiers-of-victory/4050-43919/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44191/", + "id": 44191, + "name": "JLA: Divided We Fall", + "siteDetailUrl": "https://comicvine.gamespot.com/jla-divided-we-fall/4050-44191/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44420/", + "id": 44420, + "name": "Batman Special", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-special/4050-44420/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44948/", + "id": 44948, + "name": "Green Lantern: The Movie Prequels", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-the-movie-prequels/4050-44948/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44984/", + "id": 44984, + "name": "Legion of Super-Heroes: Teenage Revolution", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-teenage-revolution/4050-44984/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44985/", + "id": 44985, + "name": "Legion of Super-Heroes: Death of A Dream", + "siteDetailUrl": "https://comicvine.gamespot.com/legion-of-super-heroes-death-of-a-dream/4050-44985/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44965/", + "id": 44965, + "name": "Jonah Hex: Bury Me In Hell", + "siteDetailUrl": "https://comicvine.gamespot.com/jonah-hex-bury-me-in-hell/4050-44965/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-45439/", + "id": 45439, + "name": "Batman and Robin: Dark Knight vs. White Knight", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-dark-knight-vs-white-knight/4050-45439/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-45465/", + "id": 45465, + "name": "Chase", + "siteDetailUrl": "https://comicvine.gamespot.com/chase/4050-45465/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-45751/", + "id": 45751, + "name": "Batman/Deathblow: After the Fire", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire/4050-45751/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-46024/", + "id": 46024, + "name": "The Batman Chronicles Gallery", + "siteDetailUrl": "https://comicvine.gamespot.com/the-batman-chronicles-gallery/4050-46024/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-46237/", + "id": 46237, + "name": "Green Arrow/Black Canary: A League of Their Own", + "siteDetailUrl": "https://comicvine.gamespot.com/green-arrowblack-canary-a-league-of-their-own/4050-46237/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-47513/", + "id": 47513, + "name": "Hawkman Omnibus By Geoff Johns", + "siteDetailUrl": "https://comicvine.gamespot.com/hawkman-omnibus-by-geoff-johns/4050-47513/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-49259/", + "id": 49259, + "name": "Green Lantern: Rebirth", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth/4050-49259/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-49994/", + "id": 49994, + "name": "Batman y Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-y-robin/4050-49994/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-50161/", + "id": 50161, + "name": "Batman and Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin/4050-50161/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-44586/", + "id": 44586, + "name": "Steve Ditko Omnibus", + "siteDetailUrl": "https://comicvine.gamespot.com/steve-ditko-omnibus/4050-44586/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-51955/", + "id": 51955, + "name": "Batman: The Return of Bruce Wayne", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-return-of-bruce-wayne/4050-51955/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-10823/", + "id": 10823, + "name": "Phantom Force", + "siteDetailUrl": "https://comicvine.gamespot.com/phantom-force/4050-10823/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-52141/", + "id": 52141, + "name": "DC Absolute Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-absolute-edition/4050-52141/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-57538/", + "id": 57538, + "name": "Batman/Deathblow: After the Fire Deluxe Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-after-the-fire-deluxe-edition/4050-57538/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-50909/", + "id": 50909, + "name": "DC Definitive Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-definitive-edition/4050-50909/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-61509/", + "id": 61509, + "name": "Batman & Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-robin/4050-61509/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-64203/", + "id": 64203, + "name": "Batman/Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman/4050-64203/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-42719/", + "id": 42719, + "name": "Batman: The Dark Knight", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-dark-knight/4050-42719/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-68151/", + "id": 68151, + "name": "Forever Evil: Arkham War", + "siteDetailUrl": "https://comicvine.gamespot.com/forever-evil-arkham-war/4050-68151/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-69864/", + "id": 69864, + "name": "DC Comics The New 52 Villains Omnibus", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-the-new-52-villains-omnibus/4050-69864/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-56371/", + "id": 56371, + "name": "Batman and Robin Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-annual/4050-56371/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-68700/", + "id": 68700, + "name": "Damian: Son of Batman", + "siteDetailUrl": "https://comicvine.gamespot.com/damian-son-of-batman/4050-68700/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-75714/", + "id": 75714, + "name": "Tales of the Batman: J.H. Williams III", + "siteDetailUrl": "https://comicvine.gamespot.com/tales-of-the-batman-jh-williams-iii/4050-75714/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-76952/", + "id": 76952, + "name": "Batman and Robin: Futures End", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-futures-end/4050-76952/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-79151/", + "id": 79151, + "name": "Starman", + "siteDetailUrl": "https://comicvine.gamespot.com/starman/4050-79151/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-82085/", + "id": 82085, + "name": "DC Sneak Peek: Robin: Son of Batman", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-sneak-peek-robin-son-of-batman/4050-82085/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-82719/", + "id": 82719, + "name": "Robin: Son of Batman", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman/4050-82719/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-61513/", + "id": 61513, + "name": "Batman: The Dark Knight", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-the-dark-knight/4050-61513/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-82470/", + "id": 82470, + "name": "Red Hood/Arsenal", + "siteDetailUrl": "https://comicvine.gamespot.com/red-hoodarsenal/4050-82470/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-88434/", + "id": 88434, + "name": "DC Comics Essentials: Batman And Robin", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-comics-essentials-batman-and-robin/4050-88434/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-93940/", + "id": 93940, + "name": "Robin - Son of Batman", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-son-of-batman/4050-93940/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91298/", + "id": 91298, + "name": "Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/superman/4050-91298/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91741/", + "id": 91741, + "name": "Batman: Arkham: Killer Croc", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-arkham-killer-croc/4050-91741/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91284/", + "id": 91284, + "name": "Green Arrow", + "siteDetailUrl": "https://comicvine.gamespot.com/green-arrow/4050-91284/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-97769/", + "id": 97769, + "name": "Superman: Son of Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-son-of-superman/4050-97769/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-100600/", + "id": 100600, + "name": "Superman: Trials of the Super Son", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-trials-of-the-super-son/4050-100600/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-102902/", + "id": 102902, + "name": "DC Justice League Essentials: Superman", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-justice-league-essentials-superman/4050-102902/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103269/", + "id": 103269, + "name": "Superman: Multiplicity", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-multiplicity/4050-103269/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-103376/", + "id": 103376, + "name": "Batman Arkham: Clayface", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-arkham-clayface/4050-103376/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-104331/", + "id": 104331, + "name": "Superman: Reborn", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-reborn/4050-104331/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-104641/", + "id": 104641, + "name": "Superman: Rebirth Deluxe Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-rebirth-deluxe-edition/4050-104641/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-92373/", + "id": 92373, + "name": "Justice League", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league/4050-92373/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-105953/", + "id": 105953, + "name": "Batman and Robin by Peter J. Tomasi and Patrick Gleason Omnibus", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-105953/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-92577/", + "id": 92577, + "name": "Titans", + "siteDetailUrl": "https://comicvine.gamespot.com/titans/4050-92577/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91774/", + "id": 91774, + "name": "Wonder Woman", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman/4050-91774/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-106555/", + "id": 106555, + "name": "Superman: Black Dawn", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-black-dawn/4050-106555/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91750/", + "id": 91750, + "name": "The Flash", + "siteDetailUrl": "https://comicvine.gamespot.com/the-flash/4050-91750/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-92557/", + "id": 92557, + "name": "Hal Jordan & The Green Lantern Corps", + "siteDetailUrl": "https://comicvine.gamespot.com/hal-jordan-and-the-green-lantern-corps/4050-92557/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-91285/", + "id": 91285, + "name": "Green Lanterns", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lanterns/4050-91285/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-109346/", + "id": 109346, + "name": "X-Men: Blue: Reunion", + "siteDetailUrl": "https://comicvine.gamespot.com/x-men-blue-reunion/4050-109346/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-100388/", + "id": 100388, + "name": "Titans Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/titans-annual/4050-100388/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-90761/", + "id": 90761, + "name": "Robin - Der Sohn Des Dunklen Ritters", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-der-sohn-des-dunklen-ritters/4050-90761/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-111130/", + "id": 111130, + "name": "Batman: Prelude To the Wedding: Robin vs. Ra's Al Ghul", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-prelude-to-the-wedding-robin-vs-ras-al-ghul/4050-111130/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-111447/", + "id": 111447, + "name": "The Unexpected", + "siteDetailUrl": "https://comicvine.gamespot.com/the-unexpected/4050-111447/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-111471/", + "id": 111471, + "name": "Superman Sonderband", + "siteDetailUrl": "https://comicvine.gamespot.com/superman-sonderband/4050-111471/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-93205/", + "id": 93205, + "name": "Suicide Squad", + "siteDetailUrl": "https://comicvine.gamespot.com/suicide-squad/4050-93205/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-112969/", + "id": 112969, + "name": "Suicide Squad Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/suicide-squad-annual/4050-112969/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-115037/", + "id": 115037, + "name": "Batman and Robin: Bad Blood: DC Essential Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-bad-blood-dc-essential-edition/4050-115037/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-115791/", + "id": 115791, + "name": "World's Greatest Super-Heroes! Holiday Special", + "siteDetailUrl": "https://comicvine.gamespot.com/worlds-greatest-super-heroes-holiday-special/4050-115791/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-116062/", + "id": 116062, + "name": "Super Sons Omnibus", + "siteDetailUrl": "https://comicvine.gamespot.com/super-sons-omnibus/4050-116062/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-117466/", + "id": 117466, + "name": "Promethea: The 20th Anniversary Deluxe Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/promethea-the-20th-anniversary-deluxe-edition/4050-117466/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-92542/", + "id": 92542, + "name": "Batgirl", + "siteDetailUrl": "https://comicvine.gamespot.com/batgirl/4050-92542/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-119374/", + "id": 119374, + "name": "Dog Days of Summer", + "siteDetailUrl": "https://comicvine.gamespot.com/dog-days-of-summer/4050-119374/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-112455/", + "id": 112455, + "name": "Justice League Dark", + "siteDetailUrl": "https://comicvine.gamespot.com/justice-league-dark/4050-112455/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-123380/", + "id": 123380, + "name": "Green Lantern: Rebirth Deluxe Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/green-lantern-rebirth-deluxe-edition/4050-123380/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-127622/", + "id": 127622, + "name": "Catwoman 80th Anniversary 100-Page Super Spectacular", + "siteDetailUrl": "https://comicvine.gamespot.com/catwoman-80th-anniversary-100-page-super-spectacul/4050-127622/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-127880/", + "id": 127880, + "name": "Joker: The Deluxe Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/joker-the-deluxe-edition/4050-127880/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-131986/", + "id": 131986, + "name": "Underworld Unleashed: The 25th Anniversary Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/underworld-unleashed-the-25th-anniversary-edition/4050-131986/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-132094/", + "id": 132094, + "name": "Sette Soldati della Vittoria", + "siteDetailUrl": "https://comicvine.gamespot.com/sette-soldati-della-vittoria/4050-132094/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-132168/", + "id": 132168, + "name": "Super Sons Omnibus Expanded Edition", + "siteDetailUrl": "https://comicvine.gamespot.com/super-sons-omnibus-expanded-edition/4050-132168/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-133404/", + "id": 133404, + "name": "Legends of the DC Universe: Doug Mahnke", + "siteDetailUrl": "https://comicvine.gamespot.com/legends-of-the-dc-universe-doug-mahnke/4050-133404/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-138329/", + "id": 138329, + "name": "Batman: Bruce Wayne - Auf der Flucht", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-bruce-wayne-auf-der-flucht/4050-138329/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-138330/", + "id": 138330, + "name": "Batman/Deathblow: Nach dem Feuer", + "siteDetailUrl": "https://comicvine.gamespot.com/batmandeathblow-nach-dem-feuer/4050-138330/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-138647/", + "id": 138647, + "name": "Batman/Superman 2021 Annual", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman-2021-annual/4050-138647/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-116323/", + "id": 116323, + "name": "Batman Graphic Novel Collection", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-graphic-novel-collection/4050-116323/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-140362/", + "id": 140362, + "name": "DC Celebration: Catwoman", + "siteDetailUrl": "https://comicvine.gamespot.com/dc-celebration-catwoman/4050-140362/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-140521/", + "id": 140521, + "name": "The Liberty Brigade", + "siteDetailUrl": "https://comicvine.gamespot.com/the-liberty-brigade/4050-140521/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-141099/", + "id": 141099, + "name": "La Guerra del Joker", + "siteDetailUrl": "https://comicvine.gamespot.com/la-guerra-del-joker/4050-141099/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-142677/", + "id": 142677, + "name": "Robin, Hijo de Batman", + "siteDetailUrl": "https://comicvine.gamespot.com/robin-hijo-de-batman/4050-142677/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-142846/", + "id": 142846, + "name": "Batman/Superman: El Archivo de Mundos", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman-el-archivo-de-mundos/4050-142846/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-143051/", + "id": 143051, + "name": "Wonder Woman Rebirth", + "siteDetailUrl": "https://comicvine.gamespot.com/wonder-woman-rebirth/4050-143051/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-24389/", + "id": 24389, + "name": "Batman/Superman: The Archive Of Worlds", + "siteDetailUrl": "https://comicvine.gamespot.com/batmansuperman-the-archive-of-worlds/4050-24389/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-147240/", + "id": 147240, + "name": "Transmetropolitan", + "siteDetailUrl": "https://comicvine.gamespot.com/transmetropolitan/4050-147240/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-153582/", + "id": 153582, + "name": "Aquaman - Sub Diego", + "siteDetailUrl": "https://comicvine.gamespot.com/aquaman-sub-diego/4050-153582/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-155651/", + "id": 155651, + "name": "Spécial Strange", + "siteDetailUrl": "https://comicvine.gamespot.com/special-strange/4050-155651/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-156755/", + "id": 156755, + "name": "Pete Townshend's Life House", + "siteDetailUrl": "https://comicvine.gamespot.com/pete-townshends-life-house/4050-156755/" + }, + { + "apiDetailUrl": "https://comicvine.gamespot.com/api/volume/4050-157262/", + "id": 157262, + "name": "Batman and Robin by Peter J. Tomasi and Patrick Gleason", + "siteDetailUrl": "https://comicvine.gamespot.com/batman-and-robin-by-peter-j-tomasi-and-patrick-gle/4050-157262/" + } + ], + "website": "http://www.mickgray.net" +} diff --git a/packages/client/src/__mocks__/expected-responses/person-list.json b/src/__mocks__/expected-responses/person-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/person-list.json rename to src/__mocks__/expected-responses/person-list.json diff --git a/packages/client/src/__mocks__/expected-responses/power-details.json b/src/__mocks__/expected-responses/power-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/power-details.json rename to src/__mocks__/expected-responses/power-details.json diff --git a/packages/client/src/__mocks__/expected-responses/power-list.json b/src/__mocks__/expected-responses/power-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/power-list.json rename to src/__mocks__/expected-responses/power-list.json diff --git a/packages/client/src/__mocks__/expected-responses/promo-details.json b/src/__mocks__/expected-responses/promo-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/promo-details.json rename to src/__mocks__/expected-responses/promo-details.json diff --git a/packages/client/src/__mocks__/expected-responses/promo-list.json b/src/__mocks__/expected-responses/promo-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/promo-list.json rename to src/__mocks__/expected-responses/promo-list.json diff --git a/packages/client/src/__mocks__/expected-responses/publisher-details.json b/src/__mocks__/expected-responses/publisher-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/publisher-details.json rename to src/__mocks__/expected-responses/publisher-details.json diff --git a/packages/client/src/__mocks__/expected-responses/publisher-list.json b/src/__mocks__/expected-responses/publisher-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/publisher-list.json rename to src/__mocks__/expected-responses/publisher-list.json diff --git a/packages/client/src/__mocks__/expected-responses/series-details.json b/src/__mocks__/expected-responses/series-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/series-details.json rename to src/__mocks__/expected-responses/series-details.json diff --git a/packages/client/src/__mocks__/expected-responses/series-list.json b/src/__mocks__/expected-responses/series-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/series-list.json rename to src/__mocks__/expected-responses/series-list.json diff --git a/packages/client/src/__mocks__/expected-responses/story-arc-details.json b/src/__mocks__/expected-responses/story-arc-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/story-arc-details.json rename to src/__mocks__/expected-responses/story-arc-details.json diff --git a/packages/client/src/__mocks__/expected-responses/story-arc-list.json b/src/__mocks__/expected-responses/story-arc-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/story-arc-list.json rename to src/__mocks__/expected-responses/story-arc-list.json diff --git a/packages/client/src/__mocks__/expected-responses/team-details.json b/src/__mocks__/expected-responses/team-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/team-details.json rename to src/__mocks__/expected-responses/team-details.json diff --git a/packages/client/src/__mocks__/expected-responses/team-list.json b/src/__mocks__/expected-responses/team-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/team-list.json rename to src/__mocks__/expected-responses/team-list.json diff --git a/packages/client/src/__mocks__/expected-responses/thing-details.json b/src/__mocks__/expected-responses/thing-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/thing-details.json rename to src/__mocks__/expected-responses/thing-details.json diff --git a/packages/client/src/__mocks__/expected-responses/thing-list.json b/src/__mocks__/expected-responses/thing-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/thing-list.json rename to src/__mocks__/expected-responses/thing-list.json diff --git a/packages/client/src/__mocks__/expected-responses/video-category-details.json b/src/__mocks__/expected-responses/video-category-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/video-category-details.json rename to src/__mocks__/expected-responses/video-category-details.json diff --git a/packages/client/src/__mocks__/expected-responses/video-category-list.json b/src/__mocks__/expected-responses/video-category-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/video-category-list.json rename to src/__mocks__/expected-responses/video-category-list.json diff --git a/packages/client/src/__mocks__/expected-responses/video-details.json b/src/__mocks__/expected-responses/video-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/video-details.json rename to src/__mocks__/expected-responses/video-details.json diff --git a/packages/client/src/__mocks__/expected-responses/video-list.json b/src/__mocks__/expected-responses/video-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/video-list.json rename to src/__mocks__/expected-responses/video-list.json diff --git a/packages/client/src/__mocks__/expected-responses/video-type-details.json b/src/__mocks__/expected-responses/video-type-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/video-type-details.json rename to src/__mocks__/expected-responses/video-type-details.json diff --git a/packages/client/src/__mocks__/expected-responses/video-type-list.json b/src/__mocks__/expected-responses/video-type-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/video-type-list.json rename to src/__mocks__/expected-responses/video-type-list.json diff --git a/packages/client/src/__mocks__/expected-responses/volume-details.json b/src/__mocks__/expected-responses/volume-details.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/volume-details.json rename to src/__mocks__/expected-responses/volume-details.json diff --git a/packages/client/src/__mocks__/expected-responses/volume-list.json b/src/__mocks__/expected-responses/volume-list.json similarity index 100% rename from packages/client/src/__mocks__/expected-responses/volume-list.json rename to src/__mocks__/expected-responses/volume-list.json diff --git a/src/comic-vine.test.ts b/src/comic-vine.test.ts new file mode 100644 index 0000000..f5ff7dc --- /dev/null +++ b/src/comic-vine.test.ts @@ -0,0 +1,178 @@ +import { describe, test, expect, vi } from 'vitest'; +import { ComicVine } from './comic-vine.js'; +import { StatusCode } from './http-client/status-code.js'; +import * as resources from './resources/resource-list.js'; +import type { ValueOf } from './types/index.js'; + +describe('ComicVine', () => { + const mockApiKey = 'mock-api-key'; + + describe('constructor', () => { + test('should create a ComicVine instance with object-based constructor', () => { + const comicVine = new ComicVine({ apiKey: mockApiKey }); + expect(comicVine).toBeInstanceOf(ComicVine); + }); + + test('should handle baseUrl in constructor', () => { + const customBaseUrl = 'https://custom.api.com/'; + const comicVine = new ComicVine({ + apiKey: mockApiKey, + baseUrl: customBaseUrl, + }); + expect(comicVine).toBeInstanceOf(ComicVine); + }); + + test('should handle stores in constructor', () => { + const mockCache = { + get: vi.fn(), + set: vi.fn(), + delete: vi.fn(), + clear: vi.fn(), + }; + + const comicVine = new ComicVine({ + apiKey: mockApiKey, + stores: { cache: mockCache }, + }); + expect(comicVine).toBeInstanceOf(ComicVine); + }); + + test('should handle client options in constructor', () => { + const comicVine = new ComicVine({ + apiKey: mockApiKey, + client: { + defaultCacheTTL: 7200, + throwOnRateLimit: false, + maxWaitTime: 30000, + }, + }); + expect(comicVine).toBeInstanceOf(ComicVine); + }); + }); + + type ComicVineProperty = keyof ComicVine; + type ResourceClass = ValueOf; + const resourceList: Array<[ComicVineProperty, ResourceClass]> = [ + ['character', resources.Character], + ['concept', resources.Concept], + ['episode', resources.Episode], + ['issue', resources.Issue], + ['location', resources.Location], + ['movie', resources.Movie], + ['origin', resources.Origin], + ['person', resources.Person], + ['power', resources.Power], + ['promo', resources.Promo], + ['publisher', resources.Publisher], + ['series', resources.Series], + ['storyArc', resources.StoryArc], + ['team', resources.Team], + ['thing', resources.Thing], + ['videoCategory', resources.VideoCategory], + ['video', resources.Video], + ['videoType', resources.VideoType], + ['volume', resources.Volume], + ]; + + test.each(resourceList)( + `should expose an instance of %s`, + (resourceProperty, ResourceType) => { + const comicVine = new ComicVine({ apiKey: mockApiKey }); + expect(comicVine[resourceProperty]).toBeInstanceOf(ResourceType); + }, + ); + + describe('rate limiting', () => { + test('should use the same canonical resource name for list, retrieve, and status APIs', async () => { + const fetchMock = vi + .fn() + .mockResolvedValueOnce( + new Response( + JSON.stringify({ + error: 'OK', + limit: 1, + offset: 0, + number_of_page_results: 1, + number_of_total_results: 1, + status_code: StatusCode.OK, + results: [{ id: 1, name: 'Issue 1' }], + }), + { + status: 200, + headers: { 'content-type': 'application/json' }, + }, + ), + ) + .mockResolvedValueOnce( + new Response( + JSON.stringify({ + error: 'OK', + limit: 1, + offset: 0, + number_of_page_results: 1, + number_of_total_results: 1, + status_code: StatusCode.OK, + results: { id: 1, name: 'Issue 1' }, + }), + { + status: 200, + headers: { 'content-type': 'application/json' }, + }, + ), + ); + + vi.stubGlobal('fetch', fetchMock); + + const rateLimitStore = { + canProceed: vi.fn().mockResolvedValue(true), + record: vi.fn().mockResolvedValue(undefined), + getStatus: vi.fn().mockResolvedValue({ + remaining: 59, + resetTime: new Date(), + limit: 60, + }), + reset: vi.fn().mockResolvedValue(undefined), + getWaitTime: vi.fn().mockResolvedValue(0), + }; + + try { + const comicVine = new ComicVine({ + apiKey: mockApiKey, + stores: { rateLimit: rateLimitStore }, + }); + + await comicVine.issue.list({ limit: 1 }); + await comicVine.issue.retrieve(1); + await comicVine.getRateLimitStatus('issue'); + await comicVine.getRateLimitStatus('issues'); + await comicVine.resetRateLimit('issue'); + + expect(rateLimitStore.canProceed).toHaveBeenNthCalledWith( + 1, + 'issues', + 'background', + ); + expect(rateLimitStore.canProceed).toHaveBeenNthCalledWith( + 2, + 'issues', + 'background', + ); + expect(rateLimitStore.record).toHaveBeenNthCalledWith( + 1, + 'issues', + 'background', + ); + expect(rateLimitStore.record).toHaveBeenNthCalledWith( + 2, + 'issues', + 'background', + ); + expect(rateLimitStore.getStatus).toHaveBeenNthCalledWith(1, 'issues'); + expect(rateLimitStore.getStatus).toHaveBeenNthCalledWith(2, 'issues'); + expect(rateLimitStore.reset).toHaveBeenCalledWith('issues'); + } finally { + vi.unstubAllGlobals(); + } + }); + }); +}); diff --git a/packages/client/src/comic-vine.ts b/src/comic-vine.ts similarity index 68% rename from packages/client/src/comic-vine.ts rename to src/comic-vine.ts index 459f6a0..4a0eef8 100644 --- a/packages/client/src/comic-vine.ts +++ b/src/comic-vine.ts @@ -1,9 +1,22 @@ -import { HttpClientFactory } from './http-client/index.js'; +import { + HttpClient, + type CacheStore, + type DedupeStore, + type RateLimitStore, +} from '@http-client-toolkit/core'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from './http-client/hooks.js'; +import { UrlBuilder } from './http-client/url-builder.js'; import { loadOptions } from './options/index.js'; import type { ResourceInterface } from './resources/base-resource.js'; import { ResourceFactory } from './resources/index.js'; import * as resources from './resources/resource-list.js'; -import { CacheStore, DedupeStore, RateLimitStore } from './stores/index.js'; +import { getResource } from './resources/resource-map.js'; +import { ResourceType } from './resources/resource-type.js'; +import { toSnakeCase } from './utils/index.js'; function classNameToPropertyName(className: string): string { if (!className) { @@ -22,6 +35,42 @@ type ResourcePropertyMap = { >; }; +const resourceMappings = Object.values(ResourceType) + .filter((value): value is ResourceType => typeof value === 'number') + .map((resourceType) => getResource(resourceType)); + +const canonicalRateLimitResourceNames = new Map(); +for (const { detailName, listName } of resourceMappings) { + canonicalRateLimitResourceNames.set(detailName, listName); + canonicalRateLimitResourceNames.set(listName, listName); + canonicalRateLimitResourceNames.set(toSnakeCase(detailName), listName); + canonicalRateLimitResourceNames.set(toSnakeCase(listName), listName); +} + +function normalizeRateLimitResourceName(resourceName: string): string { + return ( + canonicalRateLimitResourceNames.get(toSnakeCase(resourceName)) ?? + resourceName + ); +} + +function inferComicVineRateLimitResource(url: string): string { + try { + const pathname = new URL(url).pathname; + const segments = pathname.split('/').filter(Boolean); + const apiIndex = segments.indexOf('api'); + const endpoint = apiIndex >= 0 ? segments[apiIndex + 1] : segments[0]; + + if (!endpoint) { + return 'unknown'; + } + + return normalizeRateLimitResourceName(endpoint); + } catch { + return 'unknown'; + } +} + /** * Consolidated options interface for ComicVine client */ @@ -90,11 +139,28 @@ export class ComicVine implements ResourcePropertyMap { const _options = loadOptions({ baseUrl }); - const httpClient = HttpClientFactory.createClient(stores, client); - const urlBuilder = HttpClientFactory.createUrlBuilder( - apiKey, - _options.baseUrl, - ); + const httpClient = new HttpClient({ + name: 'comic-vine-sdk', + cache: stores.cache + ? { + store: stores.cache, + ttl: client.defaultCacheTTL, + } + : undefined, + dedupe: stores.dedupe, + rateLimit: stores.rateLimit + ? { + store: stores.rateLimit, + throw: client.throwOnRateLimit, + maxWaitTime: client.maxWaitTime, + } + : undefined, + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + resourceKeyResolver: inferComicVineRateLimitResource, + }); + const urlBuilder = new UrlBuilder(apiKey, _options.baseUrl); this.resourceFactory = new ResourceFactory(httpClient, urlBuilder); this.stores = stores; @@ -175,14 +241,18 @@ export class ComicVine implements ResourcePropertyMap { async getRateLimitStatus(resourceName: string) { if (this.stores.rateLimit) { - return this.stores.rateLimit.getStatus(resourceName); + return this.stores.rateLimit.getStatus( + normalizeRateLimitResourceName(resourceName), + ); } return null; } async resetRateLimit(resourceName: string): Promise { if (this.stores.rateLimit) { - await this.stores.rateLimit.reset(resourceName); + await this.stores.rateLimit.reset( + normalizeRateLimitResourceName(resourceName), + ); } } } diff --git a/packages/client/src/errors/base-error.test.ts b/src/errors/base-error.test.ts similarity index 96% rename from packages/client/src/errors/base-error.test.ts rename to src/errors/base-error.test.ts index b78c8f2..34411e3 100644 --- a/packages/client/src/errors/base-error.test.ts +++ b/src/errors/base-error.test.ts @@ -56,8 +56,8 @@ describe('BaseError', () => { expect( (error as TestComicVineError).stack ?.split('\n')[1] - .indexOf('throwTestComicVineError'), - ).toBe(7); + ?.includes('throwTestComicVineError'), + ).toBe(true); } }); diff --git a/packages/client/src/errors/base-error.ts b/src/errors/base-error.ts similarity index 81% rename from packages/client/src/errors/base-error.ts rename to src/errors/base-error.ts index e947e43..484f0d0 100644 --- a/packages/client/src/errors/base-error.ts +++ b/src/errors/base-error.ts @@ -1,9 +1,11 @@ +import { HttpClientError } from '@http-client-toolkit/core'; + interface ErrorDetails { message: string; help: string; } -export abstract class BaseError extends Error { +export abstract class BaseError extends HttpClientError { public help: string; constructor(details: ErrorDetails) { diff --git a/packages/client/src/errors/custom-error.test.ts b/src/errors/custom-error.test.ts similarity index 100% rename from packages/client/src/errors/custom-error.test.ts rename to src/errors/custom-error.test.ts diff --git a/packages/client/src/errors/custom-error.ts b/src/errors/custom-error.ts similarity index 100% rename from packages/client/src/errors/custom-error.ts rename to src/errors/custom-error.ts diff --git a/packages/client/src/errors/filter-error.test.ts b/src/errors/filter-error.test.ts similarity index 100% rename from packages/client/src/errors/filter-error.test.ts rename to src/errors/filter-error.test.ts diff --git a/packages/client/src/errors/filter-error.ts b/src/errors/filter-error.ts similarity index 100% rename from packages/client/src/errors/filter-error.ts rename to src/errors/filter-error.ts diff --git a/packages/client/src/errors/generic-error.test.ts b/src/errors/generic-error.test.ts similarity index 100% rename from packages/client/src/errors/generic-error.test.ts rename to src/errors/generic-error.test.ts diff --git a/packages/client/src/errors/generic-error.ts b/src/errors/generic-error.ts similarity index 100% rename from packages/client/src/errors/generic-error.ts rename to src/errors/generic-error.ts diff --git a/packages/client/src/errors/generic-request-error.test.ts b/src/errors/generic-request-error.test.ts similarity index 100% rename from packages/client/src/errors/generic-request-error.test.ts rename to src/errors/generic-request-error.test.ts diff --git a/packages/client/src/errors/generic-request-error.ts b/src/errors/generic-request-error.ts similarity index 100% rename from packages/client/src/errors/generic-request-error.ts rename to src/errors/generic-request-error.ts diff --git a/packages/client/src/errors/index.ts b/src/errors/index.ts similarity index 100% rename from packages/client/src/errors/index.ts rename to src/errors/index.ts diff --git a/packages/client/src/errors/jsonp-callback-missing-error.test.ts b/src/errors/jsonp-callback-missing-error.test.ts similarity index 100% rename from packages/client/src/errors/jsonp-callback-missing-error.test.ts rename to src/errors/jsonp-callback-missing-error.test.ts diff --git a/packages/client/src/errors/jsonp-callback-missing-error.ts b/src/errors/jsonp-callback-missing-error.ts similarity index 100% rename from packages/client/src/errors/jsonp-callback-missing-error.ts rename to src/errors/jsonp-callback-missing-error.ts diff --git a/packages/client/src/errors/object-not-found-error.test.ts b/src/errors/object-not-found-error.test.ts similarity index 100% rename from packages/client/src/errors/object-not-found-error.test.ts rename to src/errors/object-not-found-error.test.ts diff --git a/packages/client/src/errors/object-not-found-error.ts b/src/errors/object-not-found-error.ts similarity index 100% rename from packages/client/src/errors/object-not-found-error.ts rename to src/errors/object-not-found-error.ts diff --git a/packages/client/src/errors/options-validation-error.test.ts b/src/errors/options-validation-error.test.ts similarity index 100% rename from packages/client/src/errors/options-validation-error.test.ts rename to src/errors/options-validation-error.test.ts diff --git a/packages/client/src/errors/options-validation-error.ts b/src/errors/options-validation-error.ts similarity index 100% rename from packages/client/src/errors/options-validation-error.ts rename to src/errors/options-validation-error.ts diff --git a/packages/client/src/errors/subscriber-only-error.test.ts b/src/errors/subscriber-only-error.test.ts similarity index 100% rename from packages/client/src/errors/subscriber-only-error.test.ts rename to src/errors/subscriber-only-error.test.ts diff --git a/packages/client/src/errors/subscriber-only-error.ts b/src/errors/subscriber-only-error.ts similarity index 100% rename from packages/client/src/errors/subscriber-only-error.ts rename to src/errors/subscriber-only-error.ts diff --git a/packages/client/src/errors/unauthorized-error.test.ts b/src/errors/unauthorized-error.test.ts similarity index 100% rename from packages/client/src/errors/unauthorized-error.test.ts rename to src/errors/unauthorized-error.test.ts diff --git a/packages/client/src/errors/unauthorized-error.ts b/src/errors/unauthorized-error.ts similarity index 100% rename from packages/client/src/errors/unauthorized-error.ts rename to src/errors/unauthorized-error.ts diff --git a/packages/client/src/errors/url-format-error.test.ts b/src/errors/url-format-error.test.ts similarity index 100% rename from packages/client/src/errors/url-format-error.test.ts rename to src/errors/url-format-error.test.ts diff --git a/packages/client/src/errors/url-format-error.ts b/src/errors/url-format-error.ts similarity index 100% rename from packages/client/src/errors/url-format-error.ts rename to src/errors/url-format-error.ts diff --git a/src/http-client/hooks.test.ts b/src/http-client/hooks.test.ts new file mode 100644 index 0000000..1237faa --- /dev/null +++ b/src/http-client/hooks.test.ts @@ -0,0 +1,145 @@ +import type { HttpErrorContext } from '@http-client-toolkit/core'; +import { describe, test, expect } from 'vitest'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from './hooks.js'; +import { StatusCode } from './status-code.js'; +import { + ComicVineFilterError, + ComicJsonpCallbackMissingError, + ComicVineObjectNotFoundError, + ComicVineSubscriberOnlyError, + ComicVineUrlFormatError, + ComicVineUnauthorizedError, + ComicVineGenericRequestError, +} from '../errors/index.js'; + +describe('comicVineResponseTransformer', () => { + test('should convert snake_case keys to camelCase', () => { + const input = { + status_code: 1, + number_of_page_results: 10, + number_of_total_results: 100, + results: [{ first_name: 'Bruce', last_name: 'Wayne' }], + }; + + const result = comicVineResponseTransformer(input); + + expect(result).toStrictEqual({ + statusCode: 1, + numberOfPageResults: 10, + numberOfTotalResults: 100, + results: [{ firstName: 'Bruce', lastName: 'Wayne' }], + }); + }); + + test('should pass through non-object data unchanged', () => { + expect(comicVineResponseTransformer('hello')).toBe('hello'); + expect(comicVineResponseTransformer(42)).toBe(42); + expect(comicVineResponseTransformer(null)).toBe(null); + }); +}); + +describe('comicVineResponseHandler', () => { + test('should return data when statusCode is OK', () => { + const data = { statusCode: StatusCode.OK, results: [] }; + expect(comicVineResponseHandler(data)).toBe(data); + }); + + test('should throw ComicVineFilterError for FilterError status', () => { + const data = { statusCode: StatusCode.FilterError, results: [] }; + expect(() => comicVineResponseHandler(data)).toThrow(ComicVineFilterError); + }); + + test('should throw ComicJsonpCallbackMissingError for JsonpCallbackMissing status', () => { + const data = { statusCode: StatusCode.JsonpCallbackMissing, results: [] }; + expect(() => comicVineResponseHandler(data)).toThrow( + ComicJsonpCallbackMissingError, + ); + }); + + test('should throw ComicVineObjectNotFoundError for ObjectNotFound status', () => { + const data = { statusCode: StatusCode.ObjectNotFound, results: [] }; + expect(() => comicVineResponseHandler(data)).toThrow( + ComicVineObjectNotFoundError, + ); + }); + + test('should throw ComicVineSubscriberOnlyError for SubscriberOnlyVideo status', () => { + const data = { statusCode: StatusCode.SubscriberOnlyVideo, results: [] }; + expect(() => comicVineResponseHandler(data)).toThrow( + ComicVineSubscriberOnlyError, + ); + }); + + test('should throw ComicVineUrlFormatError for UrlFormatError status', () => { + const data = { statusCode: StatusCode.UrlFormatError, results: [] }; + expect(() => comicVineResponseHandler(data)).toThrow( + ComicVineUrlFormatError, + ); + }); + + test('should pass through data without statusCode field', () => { + const data = { results: [] }; + expect(comicVineResponseHandler(data)).toBe(data); + }); + + test('should pass through null data', () => { + expect(comicVineResponseHandler(null)).toBe(null); + }); +}); + +describe('comicVineErrorHandler', () => { + test('should return ComicVineUnauthorizedError for 401 status', () => { + const context: HttpErrorContext = { + message: 'Request failed with status 401', + url: 'https://comicvine.gamespot.com/api/issues', + response: { + status: 401, + data: { error: 'Invalid API Key' }, + headers: new Headers(), + }, + }; + + const error = comicVineErrorHandler(context); + expect(error).toBeInstanceOf(ComicVineUnauthorizedError); + }); + + test('should return ComicVineGenericRequestError for non-401 errors', () => { + const context: HttpErrorContext = { + message: 'Request failed with status 500', + url: 'https://comicvine.gamespot.com/api/issues', + response: { + status: 500, + data: { message: 'Internal Server Error' }, + headers: new Headers(), + }, + }; + + const error = comicVineErrorHandler(context); + expect(error).toBeInstanceOf(ComicVineGenericRequestError); + expect(error.message).toBe( + 'Request to comic vine failed: Request failed with status 500, Internal Server Error', + ); + }); + + test('should return ComicVineGenericRequestError without body message', () => { + const context: HttpErrorContext = { + message: 'Request failed with status 500', + url: 'https://comicvine.gamespot.com/api/issues', + response: { + status: 500, + data: undefined, + headers: new Headers(), + }, + }; + + const error = comicVineErrorHandler(context); + expect(error).toBeInstanceOf(ComicVineGenericRequestError); + expect(error.message).toBe( + 'Request to comic vine failed: Request failed with status 500', + ); + }); +}); diff --git a/src/http-client/hooks.ts b/src/http-client/hooks.ts new file mode 100644 index 0000000..c94d587 --- /dev/null +++ b/src/http-client/hooks.ts @@ -0,0 +1,70 @@ +import type { HttpErrorContext } from '@http-client-toolkit/core'; +import { StatusCode } from './status-code.js'; +import { + ComicVineFilterError, + ComicJsonpCallbackMissingError, + ComicVineObjectNotFoundError, + ComicVineSubscriberOnlyError, + ComicVineUrlFormatError, + ComicVineUnauthorizedError, + ComicVineGenericRequestError, +} from '../errors/index.js'; +import { convertSnakeCaseToCamelCase } from '../utils/case-converter.js'; + +/** + * Transforms snake_case API responses to camelCase. + * Plugs into the toolkit's `responseTransformer` hook. + */ +export function comicVineResponseTransformer(data: unknown): unknown { + return convertSnakeCaseToCamelCase(data); +} + +/** + * Checks Comic Vine application-level status codes and throws domain errors. + * Plugs into the toolkit's `responseHandler` hook. + * + * Comic Vine returns 200 OK for application-level errors with a `statusCode` + * field in the response body that indicates the actual result. + */ +export function comicVineResponseHandler(data: unknown): unknown { + if ( + data !== null && + typeof data === 'object' && + 'statusCode' in data && + typeof (data as Record).statusCode === 'number' + ) { + const statusCode = (data as Record).statusCode as number; + switch (statusCode) { + case StatusCode.FilterError: + throw new ComicVineFilterError(); + case StatusCode.JsonpCallbackMissing: + throw new ComicJsonpCallbackMissingError(); + case StatusCode.ObjectNotFound: + throw new ComicVineObjectNotFoundError(); + case StatusCode.SubscriberOnlyVideo: + throw new ComicVineSubscriberOnlyError(); + case StatusCode.UrlFormatError: + throw new ComicVineUrlFormatError(); + } + } + return data; +} + +/** + * Maps HTTP errors to Comic Vine domain-specific errors. + * Plugs into the toolkit's `errorHandler` hook. + */ +export function comicVineErrorHandler(context: HttpErrorContext): Error { + if (context.response.status === 401) { + return new ComicVineUnauthorizedError(); + } + + const bodyMessage = + typeof context.response.data === 'object' && context.response.data !== null + ? (context.response.data as { message?: string }).message + : undefined; + const message = bodyMessage + ? `${context.message}, ${bodyMessage}` + : context.message; + return new ComicVineGenericRequestError(message); +} diff --git a/src/http-client/index.ts b/src/http-client/index.ts new file mode 100644 index 0000000..cfd5471 --- /dev/null +++ b/src/http-client/index.ts @@ -0,0 +1,3 @@ +export * from './status-code.js'; +export * from './url-builder.js'; +export * from './hooks.js'; diff --git a/packages/client/src/http-client/status-code.ts b/src/http-client/status-code.ts similarity index 100% rename from packages/client/src/http-client/status-code.ts rename to src/http-client/status-code.ts diff --git a/packages/client/src/http-client/url-builder.test.ts b/src/http-client/url-builder.test.ts similarity index 100% rename from packages/client/src/http-client/url-builder.test.ts rename to src/http-client/url-builder.test.ts diff --git a/packages/client/src/http-client/url-builder.ts b/src/http-client/url-builder.ts similarity index 100% rename from packages/client/src/http-client/url-builder.ts rename to src/http-client/url-builder.ts diff --git a/src/index-wrapper.cjs b/src/index-wrapper.cjs new file mode 100644 index 0000000..b3b08de --- /dev/null +++ b/src/index-wrapper.cjs @@ -0,0 +1,4 @@ +/* eslint-disable @typescript-eslint/no-require-imports */ +const esm = require('./index'); + +module.exports = Object.assign(esm.default, esm); diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..aad9e62 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,19 @@ +import { ComicVine } from './comic-vine.js'; +import { StatusCode } from './http-client/status-code.js'; + +export default ComicVine; + +// Named exports for better tree-shaking +export { ComicVine }; + +// Export all error types +export * from './errors/index.js'; + +// Export all types +export * from './types/index.js'; + +// Export Comic Vine specific HTTP utilities +export { StatusCode }; + +// Re-export client options +export type { ComicVineOptions } from './comic-vine.js'; diff --git a/packages/client/src/options/index.test.ts b/src/options/index.test.ts similarity index 100% rename from packages/client/src/options/index.test.ts rename to src/options/index.test.ts diff --git a/packages/client/src/options/index.ts b/src/options/index.ts similarity index 100% rename from packages/client/src/options/index.ts rename to src/options/index.ts diff --git a/packages/client/src/resources/base-resource.test.ts b/src/resources/base-resource.test.ts similarity index 94% rename from packages/client/src/resources/base-resource.test.ts rename to src/resources/base-resource.test.ts index eb11bfe..b2e043c 100644 --- a/packages/client/src/resources/base-resource.test.ts +++ b/src/resources/base-resource.test.ts @@ -1,3 +1,4 @@ +import { HttpClient } from '@http-client-toolkit/core'; import nock from 'nock'; import { Issue } from './issue/index.js'; @@ -13,7 +14,12 @@ import expectedAutoPaginationResponseNoLimitNoOffset from '../__mocks__/expected import expectedListResult from '../__mocks__/expected-responses/issue-list.json'; import { ComicVineUrlFormatError } from '../errors/index.js'; -import { HttpClientFactory } from '../http-client/index.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../http-client/hooks.js'; +import { UrlBuilder } from '../http-client/url-builder.js'; const baseUrl = 'https://comicvine.gamespot.com/api/'; @@ -26,11 +32,12 @@ const pickProperties = (obj: T, properties: Array) => { describe('Issue', () => { const MOCK_SUCCESSFUL_ISSUE_ID = 1; - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - baseUrl, - ); + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', baseUrl); describe('retrieve', () => { it('should return the full resource when a successful request is made', async () => { @@ -232,7 +239,6 @@ describe('Issue', () => { } } catch (error) { // Assert - console.log((error as Error).message); expect(error).toBeInstanceOf(ComicVineUrlFormatError); } }); diff --git a/packages/client/src/resources/base-resource.ts b/src/resources/base-resource.ts similarity index 91% rename from packages/client/src/resources/base-resource.ts rename to src/resources/base-resource.ts index 739ab7f..ef975d3 100644 --- a/packages/client/src/resources/base-resource.ts +++ b/src/resources/base-resource.ts @@ -6,6 +6,7 @@ import type { UrlBuilder, PickFilters, } from '../types/index.js'; +import type { Response } from '../types/response.js'; // Common interface that all resources must implement export interface ResourceInterface { @@ -34,7 +35,7 @@ export abstract class BaseResource const url = this.urlBuilder.retrieve(this.resourceType, id, options); const _fieldList = options?.fieldList; type ResponseType = ReturnType; - const response = await this.httpClient.get(url, { + const response = await this.httpClient.get>(url, { priority: options?.priority, }); @@ -51,9 +52,12 @@ export abstract class BaseResource const url = this.urlBuilder.list(this.resourceType, options); const _fieldList = options?.fieldList; type ResponseType = ReturnType; - const response = await this.httpClient.get>(url, { - priority: options?.priority, - }); + const response = await this.httpClient.get>>( + url, + { + priority: options?.priority, + }, + ); return { limit: response.limit, diff --git a/src/resources/character/character.test.ts b/src/resources/character/character.test.ts new file mode 100644 index 0000000..7a68042 --- /dev/null +++ b/src/resources/character/character.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Character } from './character.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Character', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Character(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Character); + }); +}); diff --git a/packages/client/src/resources/character/character.ts b/src/resources/character/character.ts similarity index 100% rename from packages/client/src/resources/character/character.ts rename to src/resources/character/character.ts diff --git a/packages/client/src/resources/character/index.ts b/src/resources/character/index.ts similarity index 100% rename from packages/client/src/resources/character/index.ts rename to src/resources/character/index.ts diff --git a/packages/client/src/resources/character/types/character-details.ts b/src/resources/character/types/character-details.ts similarity index 92% rename from packages/client/src/resources/character/types/character-details.ts rename to src/resources/character/types/character-details.ts index 677f6ca..4f38d3e 100644 --- a/packages/client/src/resources/character/types/character-details.ts +++ b/src/resources/character/types/character-details.ts @@ -1,8 +1,8 @@ import { - SiteResource, - IssueApiResource, ApiResource, Image, + IssueApiResource, + SiteResource, } from '../../common-types.js'; export interface CharacterDetails { @@ -66,6 +66,9 @@ export interface CharacterDetails { * Main image of the character. */ image: Image; + /** + * List of issues this character appears in. + */ issueCredits: Array; /** * List of issues this character died in. @@ -82,7 +85,7 @@ export interface CharacterDetails { /** * The origin of the character. Human, Alien, Robot ...etc */ - origin: ApiResource; + origin: ApiResource | null; /** * List of super powers a character has. */ @@ -99,6 +102,9 @@ export interface CharacterDetails { * URL pointing to the character on Giant Bomb. */ siteDetailUrl: string; + /** + * List of story arcs this character appears in. + */ storyArcCredits: Array; /** * List of teams that are enemies of this character. @@ -112,5 +118,8 @@ export interface CharacterDetails { * List of teams this character is a member of. */ teams: Array; + /** + * List of comic volumes this character appears in. + */ volumeCredits: Array; } diff --git a/packages/client/src/resources/character/types/character-list-item.ts b/src/resources/character/types/character-list-item.ts similarity index 94% rename from packages/client/src/resources/character/types/character-list-item.ts rename to src/resources/character/types/character-list-item.ts index 0071761..813a83c 100644 --- a/packages/client/src/resources/character/types/character-list-item.ts +++ b/src/resources/character/types/character-list-item.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, ApiResource, Image } from '../../common-types.js'; +import { ApiResource, Image, IssueApiResource } from '../../common-types.js'; export interface CharacterListItem { /** @@ -56,7 +56,7 @@ export interface CharacterListItem { /** * The origin of the character. Human, Alien, Robot ...etc */ - origin: ApiResource; + origin: ApiResource | null; /** * The primary publisher a character is attached to. */ diff --git a/packages/client/src/resources/character/types/index.ts b/src/resources/character/types/index.ts similarity index 100% rename from packages/client/src/resources/character/types/index.ts rename to src/resources/character/types/index.ts diff --git a/packages/client/src/resources/common-types.ts b/src/resources/common-types.ts similarity index 88% rename from packages/client/src/resources/common-types.ts rename to src/resources/common-types.ts index 5afa4c3..b09acd1 100644 --- a/packages/client/src/resources/common-types.ts +++ b/src/resources/common-types.ts @@ -59,13 +59,3 @@ export interface Image { } export type IsoString = string; - -export interface DateRange { - start: IsoString; - end?: IsoString; -} - -export interface DateTimeRange { - start: IsoString; - end?: IsoString; -} diff --git a/src/resources/concept/concept.test.ts b/src/resources/concept/concept.test.ts new file mode 100644 index 0000000..ed1b4eb --- /dev/null +++ b/src/resources/concept/concept.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Concept } from './concept.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Concept', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Concept(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Concept); + }); +}); diff --git a/packages/client/src/resources/concept/concept.ts b/src/resources/concept/concept.ts similarity index 100% rename from packages/client/src/resources/concept/concept.ts rename to src/resources/concept/concept.ts diff --git a/packages/client/src/resources/concept/index.ts b/src/resources/concept/index.ts similarity index 100% rename from packages/client/src/resources/concept/index.ts rename to src/resources/concept/index.ts diff --git a/packages/client/src/resources/concept/types/concept-details.ts b/src/resources/concept/types/concept-details.ts similarity index 86% rename from packages/client/src/resources/concept/types/concept-details.ts rename to src/resources/concept/types/concept-details.ts index 58b9d4f..729349f 100644 --- a/packages/client/src/resources/concept/types/concept-details.ts +++ b/src/resources/concept/types/concept-details.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, SiteResource, Image } from '../../common-types.js'; +import { Image, IssueApiResource, SiteResource } from '../../common-types.js'; export interface ConceptDetails { /** @@ -38,6 +38,9 @@ export interface ConceptDetails { * Main image of the concept. */ image: Image; + /** + * List of issues this concept appears in. + */ issueCredits: Array; /** * Movies the concept was in. @@ -55,5 +58,8 @@ export interface ConceptDetails { * The first year this concept appeared in comics. */ startYear: string; + /** + * List of comic volumes this concept appears in. + */ volumeCredits: Array; } diff --git a/packages/client/src/resources/concept/types/concept-list-item.ts b/src/resources/concept/types/concept-list-item.ts similarity index 89% rename from packages/client/src/resources/concept/types/concept-list-item.ts rename to src/resources/concept/types/concept-list-item.ts index ed44b8c..23bca85 100644 --- a/packages/client/src/resources/concept/types/concept-list-item.ts +++ b/src/resources/concept/types/concept-list-item.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, Image } from '../../common-types.js'; +import { Image, IssueApiResource } from '../../common-types.js'; export interface ConceptListItem { /** @@ -29,7 +29,7 @@ export interface ConceptListItem { /** * Issue where the concept made its first appearance. */ - firstAppearedInIssue: IssueApiResource; + firstAppearedInIssue: IssueApiResource | null; /** * Unique ID of the concept. */ diff --git a/packages/client/src/resources/concept/types/index.ts b/src/resources/concept/types/index.ts similarity index 100% rename from packages/client/src/resources/concept/types/index.ts rename to src/resources/concept/types/index.ts diff --git a/src/resources/episode/episode.test.ts b/src/resources/episode/episode.test.ts new file mode 100644 index 0000000..910befa --- /dev/null +++ b/src/resources/episode/episode.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Episode } from './episode.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Episode', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Episode(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Episode); + }); +}); diff --git a/packages/client/src/resources/episode/episode.ts b/src/resources/episode/episode.ts similarity index 100% rename from packages/client/src/resources/episode/episode.ts rename to src/resources/episode/episode.ts diff --git a/packages/client/src/resources/episode/index.ts b/src/resources/episode/index.ts similarity index 100% rename from packages/client/src/resources/episode/index.ts rename to src/resources/episode/index.ts diff --git a/packages/client/src/resources/episode/types/episode-details.ts b/src/resources/episode/types/episode-details.ts similarity index 74% rename from packages/client/src/resources/episode/types/episode-details.ts rename to src/resources/episode/types/episode-details.ts index d853ef0..f5fe075 100644 --- a/packages/client/src/resources/episode/types/episode-details.ts +++ b/src/resources/episode/types/episode-details.ts @@ -1,4 +1,4 @@ -import { SiteResource, Image } from '../../common-types.js'; +import { Image, SiteResource } from '../../common-types.js'; export interface EpisodeDetails { /** @@ -13,8 +13,14 @@ export interface EpisodeDetails { * URL pointing to the episode detail resource. */ apiDetailUrl: string; + /** + * A list of characters that appear in this episode. + */ characterCredits: Array; characterDiedIn: Array; + /** + * A list of concepts that appear in this episode. + */ conceptCredits: Array; /** * Date the episode was added to Comic Vine. @@ -39,27 +45,27 @@ export interface EpisodeDetails { /** * A list of characters in which this episode is the first appearance of the character. */ - firstAppearanceCharacters: null | unknown; + firstAppearanceCharacters: unknown; /** * A list of concepts in which this episode is the first appearance of the concept. */ - firstAppearanceConcepts: null | unknown; + firstAppearanceConcepts: unknown; /** * A list of locations in which this episode is the first appearance of the location. */ - firstAppearanceLocations: null | unknown; + firstAppearanceLocations: unknown; /** * A list of things in which this episode is the first appearance of the object. */ - firstAppearanceObjects: null | unknown; + firstAppearanceObjects: unknown; /** * A list of storyarcs in which this episode is the first appearance of the story arc. */ - firstAppearanceStoryarcs: null | unknown; + firstAppearanceStoryarcs: unknown; /** * A list of teams in which this episode is the first appearance of the team. */ - firstAppearanceTeams: null | unknown; + firstAppearanceTeams: unknown; hasStaffReview: null | false | SiteResource; /** * Unique ID of the episode. @@ -69,11 +75,17 @@ export interface EpisodeDetails { * Main image of the episode. */ image: Image; + /** + * List of locations that appeared in this episode. + */ locationCredits: Array; /** * Name of the episode. */ name: string; + /** + * List of things that appeared in this episode. + */ objectCredits: Array; /** * The series the episode belongs to. @@ -83,6 +95,12 @@ export interface EpisodeDetails { * URL pointing to the episode on Giant Bomb. */ siteDetailUrl: string; + /** + * List of story arcs this episode appears in. + */ storyArcCredits: Array; + /** + * List of teams that appear in this episode. + */ teamCredits: Array; } diff --git a/packages/client/src/resources/episode/types/episode-list-item.ts b/src/resources/episode/types/episode-list-item.ts similarity index 94% rename from packages/client/src/resources/episode/types/episode-list-item.ts rename to src/resources/episode/types/episode-list-item.ts index f95e95e..107cb72 100644 --- a/packages/client/src/resources/episode/types/episode-list-item.ts +++ b/src/resources/episode/types/episode-list-item.ts @@ -1,4 +1,4 @@ -import { SiteResource, Image } from '../../common-types.js'; +import { Image, SiteResource } from '../../common-types.js'; export interface EpisodeListItem { /** diff --git a/packages/client/src/resources/episode/types/index.ts b/src/resources/episode/types/index.ts similarity index 100% rename from packages/client/src/resources/episode/types/index.ts rename to src/resources/episode/types/index.ts diff --git a/packages/client/src/resources/index.ts b/src/resources/index.ts similarity index 100% rename from packages/client/src/resources/index.ts rename to src/resources/index.ts diff --git a/packages/client/src/resources/issue/index.ts b/src/resources/issue/index.ts similarity index 100% rename from packages/client/src/resources/issue/index.ts rename to src/resources/issue/index.ts diff --git a/src/resources/issue/issue.test.ts b/src/resources/issue/issue.test.ts new file mode 100644 index 0000000..18055cb --- /dev/null +++ b/src/resources/issue/issue.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Issue } from './issue.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Issue', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Issue(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Issue); + }); +}); diff --git a/packages/client/src/resources/issue/issue.ts b/src/resources/issue/issue.ts similarity index 100% rename from packages/client/src/resources/issue/issue.ts rename to src/resources/issue/issue.ts diff --git a/packages/client/src/resources/issue/types/index.ts b/src/resources/issue/types/index.ts similarity index 100% rename from packages/client/src/resources/issue/types/index.ts rename to src/resources/issue/types/index.ts diff --git a/packages/client/src/resources/issue/types/issue-details.ts b/src/resources/issue/types/issue-details.ts similarity index 78% rename from packages/client/src/resources/issue/types/issue-details.ts rename to src/resources/issue/types/issue-details.ts index d8fe488..9e4637f 100644 --- a/packages/client/src/resources/issue/types/issue-details.ts +++ b/src/resources/issue/types/issue-details.ts @@ -1,8 +1,8 @@ import { - SiteResource, - PersonCreditSiteResource, AssociatedImage, Image, + PersonCreditSiteResource, + SiteResource, } from '../../common-types.js'; export interface IssueDetails { @@ -15,8 +15,14 @@ export interface IssueDetails { */ apiDetailUrl: string; associatedImages: Array; + /** + * A list of characters that appear in this issue. + */ characterCredits: Array; characterDiedIn: Array; + /** + * A list of concepts that appear in this issue. + */ conceptCredits: Array; /** * The publish date printed on the cover of an issue. @@ -41,27 +47,27 @@ export interface IssueDetails { /** * A list of characters in which this issue is the first appearance of the character. */ - firstAppearanceCharacters: null | unknown; + firstAppearanceCharacters: unknown; /** * A list of concepts in which this issue is the first appearance of the concept. */ - firstAppearanceConcepts: null | unknown; + firstAppearanceConcepts: unknown; /** * A list of locations in which this issue is the first appearance of the location. */ - firstAppearanceLocations: null | unknown; + firstAppearanceLocations: unknown; /** * A list of things in which this issue is the first appearance of the object. */ - firstAppearanceObjects: null | unknown; + firstAppearanceObjects: unknown; /** * A list of storyarcs in which this issue is the first appearance of the story arc. */ - firstAppearanceStoryarcs: null | unknown; + firstAppearanceStoryarcs: unknown; /** * A list of teams in which this issue is the first appearance of the team. */ - firstAppearanceTeams: null | unknown; + firstAppearanceTeams: unknown; hasStaffReview: null | false | SiteResource; /** * Unique ID of the issue. @@ -75,12 +81,21 @@ export interface IssueDetails { * The number assigned to the issue within the volume set. */ issueNumber: string; + /** + * List of locations that appeared in this issue. + */ locationCredits: Array; /** * Name of the issue. */ name: null | string; + /** + * List of things that appeared in this issue. + */ objectCredits: Array; + /** + * List of people that worked on this issue. + */ personCredits: Array; /** * URL pointing to the issue on Giant Bomb. @@ -90,7 +105,13 @@ export interface IssueDetails { * The date the issue was first sold in stores. */ storeDate: Date | null; + /** + * List of story arcs this issue appears in. + */ storyArcCredits: Array; + /** + * List of teams that appear in this issue. + */ teamCredits: Array; teamDisbandedIn: Array; /** diff --git a/packages/client/src/resources/issue/types/issue-list-item.ts b/src/resources/issue/types/issue-list-item.ts similarity index 93% rename from packages/client/src/resources/issue/types/issue-list-item.ts rename to src/resources/issue/types/issue-list-item.ts index 38142e8..4d887e0 100644 --- a/packages/client/src/resources/issue/types/issue-list-item.ts +++ b/src/resources/issue/types/issue-list-item.ts @@ -1,4 +1,4 @@ -import { AssociatedImage, SiteResource, Image } from '../../common-types.js'; +import { AssociatedImage, Image, SiteResource } from '../../common-types.js'; export interface IssueListItem { /** @@ -25,7 +25,7 @@ export interface IssueListItem { /** * Brief summary of the issue. */ - deck: null | unknown; + deck: unknown; /** * Description of the issue. */ diff --git a/packages/client/src/resources/location/index.ts b/src/resources/location/index.ts similarity index 100% rename from packages/client/src/resources/location/index.ts rename to src/resources/location/index.ts diff --git a/src/resources/location/location.test.ts b/src/resources/location/location.test.ts new file mode 100644 index 0000000..6ad6000 --- /dev/null +++ b/src/resources/location/location.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Location } from './location.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Location', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Location(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Location); + }); +}); diff --git a/packages/client/src/resources/location/location.ts b/src/resources/location/location.ts similarity index 100% rename from packages/client/src/resources/location/location.ts rename to src/resources/location/location.ts diff --git a/packages/client/src/resources/location/types/index.ts b/src/resources/location/types/index.ts similarity index 100% rename from packages/client/src/resources/location/types/index.ts rename to src/resources/location/types/index.ts diff --git a/packages/client/src/resources/location/types/location-details.ts b/src/resources/location/types/location-details.ts similarity index 83% rename from packages/client/src/resources/location/types/location-details.ts rename to src/resources/location/types/location-details.ts index 8404006..5a05f20 100644 --- a/packages/client/src/resources/location/types/location-details.ts +++ b/src/resources/location/types/location-details.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, SiteResource, Image } from '../../common-types.js'; +import { Image, IssueApiResource, SiteResource } from '../../common-types.js'; export interface LocationDetails { /** @@ -41,6 +41,9 @@ export interface LocationDetails { * Main image of the location. */ image: Image; + /** + * List of issues this location appears in. + */ issueCredits: Array; /** * Movies the location was in. @@ -58,6 +61,12 @@ export interface LocationDetails { * The first year this location appeared in comics. */ startYear: string; + /** + * List of story arcs this location appears in. + */ storyArcCredits: Array; + /** + * List of comic volumes this location appears in. + */ volumeCredits: Array; } diff --git a/packages/client/src/resources/location/types/location-list-item.ts b/src/resources/location/types/location-list-item.ts similarity index 90% rename from packages/client/src/resources/location/types/location-list-item.ts rename to src/resources/location/types/location-list-item.ts index 5d404ff..b0d3881 100644 --- a/packages/client/src/resources/location/types/location-list-item.ts +++ b/src/resources/location/types/location-list-item.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, Image } from '../../common-types.js'; +import { Image, IssueApiResource } from '../../common-types.js'; export interface LocationListItem { /** @@ -32,7 +32,7 @@ export interface LocationListItem { /** * Issue where the location made its first appearance. */ - firstAppearedInIssue: IssueApiResource; + firstAppearedInIssue: IssueApiResource | null; /** * Unique ID of the location. */ diff --git a/packages/client/src/resources/movie/index.ts b/src/resources/movie/index.ts similarity index 100% rename from packages/client/src/resources/movie/index.ts rename to src/resources/movie/index.ts diff --git a/src/resources/movie/movie.test.ts b/src/resources/movie/movie.test.ts new file mode 100644 index 0000000..32329b9 --- /dev/null +++ b/src/resources/movie/movie.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Movie } from './movie.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Movie', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Movie(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Movie); + }); +}); diff --git a/packages/client/src/resources/movie/movie.ts b/src/resources/movie/movie.ts similarity index 100% rename from packages/client/src/resources/movie/movie.ts rename to src/resources/movie/movie.ts diff --git a/packages/client/src/resources/movie/types/index.ts b/src/resources/movie/types/index.ts similarity index 100% rename from packages/client/src/resources/movie/types/index.ts rename to src/resources/movie/types/index.ts diff --git a/packages/client/src/resources/movie/types/movie-details.ts b/src/resources/movie/types/movie-details.ts similarity index 95% rename from packages/client/src/resources/movie/types/movie-details.ts rename to src/resources/movie/types/movie-details.ts index 098ab9b..6059f76 100644 --- a/packages/client/src/resources/movie/types/movie-details.ts +++ b/src/resources/movie/types/movie-details.ts @@ -1,4 +1,4 @@ -import { SiteResource, Image } from '../../common-types.js'; +import { Image, SiteResource } from '../../common-types.js'; export interface MovieDetails { /** @@ -37,7 +37,6 @@ export interface MovieDetails { * Description of the movie. */ description: null | string; - distributor: null; hasStaffReview: null | false | SiteResource; /** * Unique ID of the movie. diff --git a/packages/client/src/resources/movie/types/movie-list-item.ts b/src/resources/movie/types/movie-list-item.ts similarity index 94% rename from packages/client/src/resources/movie/types/movie-list-item.ts rename to src/resources/movie/types/movie-list-item.ts index 6888305..afc510c 100644 --- a/packages/client/src/resources/movie/types/movie-list-item.ts +++ b/src/resources/movie/types/movie-list-item.ts @@ -1,4 +1,4 @@ -import { SiteResource, Image } from '../../common-types.js'; +import { Image, SiteResource } from '../../common-types.js'; export interface MovieListItem { /** @@ -29,7 +29,6 @@ export interface MovieListItem { * Description of the movie. */ description: null | string; - distributor: null; hasStaffReview: null | false | SiteResource; /** * Unique ID of the movie. diff --git a/packages/client/src/resources/origin/index.ts b/src/resources/origin/index.ts similarity index 100% rename from packages/client/src/resources/origin/index.ts rename to src/resources/origin/index.ts diff --git a/src/resources/origin/origin.test.ts b/src/resources/origin/origin.test.ts new file mode 100644 index 0000000..d58acd4 --- /dev/null +++ b/src/resources/origin/origin.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Origin } from './origin.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Origin', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Origin(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Origin); + }); +}); diff --git a/packages/client/src/resources/origin/origin.ts b/src/resources/origin/origin.ts similarity index 100% rename from packages/client/src/resources/origin/origin.ts rename to src/resources/origin/origin.ts diff --git a/packages/client/src/resources/origin/types/index.ts b/src/resources/origin/types/index.ts similarity index 100% rename from packages/client/src/resources/origin/types/index.ts rename to src/resources/origin/types/index.ts diff --git a/packages/client/src/resources/origin/types/origin-details.ts b/src/resources/origin/types/origin-details.ts similarity index 93% rename from packages/client/src/resources/origin/types/origin-details.ts rename to src/resources/origin/types/origin-details.ts index b657707..394efa3 100644 --- a/packages/client/src/resources/origin/types/origin-details.ts +++ b/src/resources/origin/types/origin-details.ts @@ -6,7 +6,7 @@ export interface OriginDetails { */ apiDetailUrl: string; characters: Array; - characterSet: null | unknown; + characterSet: null; /** * Unique ID of the origin. */ diff --git a/packages/client/src/resources/origin/types/origin-list-item.ts b/src/resources/origin/types/origin-list-item.ts similarity index 88% rename from packages/client/src/resources/origin/types/origin-list-item.ts rename to src/resources/origin/types/origin-list-item.ts index 0dac364..0aae2a4 100644 --- a/packages/client/src/resources/origin/types/origin-list-item.ts +++ b/src/resources/origin/types/origin-list-item.ts @@ -1,5 +1,3 @@ -import {} from '../../common-types.js'; - export interface OriginListItem { /** * URL pointing to the origin detail resource. diff --git a/packages/client/src/resources/person/index.ts b/src/resources/person/index.ts similarity index 100% rename from packages/client/src/resources/person/index.ts rename to src/resources/person/index.ts diff --git a/src/resources/person/person.test.ts b/src/resources/person/person.test.ts new file mode 100644 index 0000000..a5bc4da --- /dev/null +++ b/src/resources/person/person.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Person } from './person.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Person', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Person(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Person); + }); +}); diff --git a/packages/client/src/resources/person/person.ts b/src/resources/person/person.ts similarity index 100% rename from packages/client/src/resources/person/person.ts rename to src/resources/person/person.ts diff --git a/packages/client/src/resources/person/types/index.ts b/src/resources/person/types/index.ts similarity index 100% rename from packages/client/src/resources/person/types/index.ts rename to src/resources/person/types/index.ts diff --git a/packages/client/src/resources/person/types/person-details.ts b/src/resources/person/types/person-details.ts similarity index 83% rename from packages/client/src/resources/person/types/person-details.ts rename to src/resources/person/types/person-details.ts index f820b03..a3c17b4 100644 --- a/packages/client/src/resources/person/types/person-details.ts +++ b/src/resources/person/types/person-details.ts @@ -1,4 +1,4 @@ -import { SiteResource, Image } from '../../common-types.js'; +import { Death, Image, SiteResource } from '../../common-types.js'; export interface PersonDetails { /** @@ -13,7 +13,7 @@ export interface PersonDetails { * A date, if one exists, that the person was born on. Not an origin date. */ birth: Date | null; - countOfIsssueAppearances: null | unknown; + countOfIsssueAppearances: unknown; /** * Country the person resides in. */ @@ -33,7 +33,7 @@ export interface PersonDetails { /** * Date this person died on. */ - death: null | unknown; + death: Death | null; /** * Brief summary of the person. */ @@ -45,7 +45,7 @@ export interface PersonDetails { /** * The email of this person. */ - email: null | unknown; + email: null | string; /** * Gender of the person. Available options are: Male, Female, Other */ @@ -53,7 +53,7 @@ export interface PersonDetails { /** * City or town the person resides in. */ - hometown: null | unknown; + hometown: null | string; /** * Unique ID of the person. */ @@ -74,7 +74,13 @@ export interface PersonDetails { * URL pointing to the person on Giant Bomb. */ siteDetailUrl: string; + /** + * List of story arcs this person appears in. + */ storyArcCredits: Array; + /** + * List of comic volumes this person appears in. + */ volumeCredits: Array; /** * URL to the person website. diff --git a/packages/client/src/resources/person/types/person-list-item.ts b/src/resources/person/types/person-list-item.ts similarity index 92% rename from packages/client/src/resources/person/types/person-list-item.ts rename to src/resources/person/types/person-list-item.ts index 007247e..9cf3559 100644 --- a/packages/client/src/resources/person/types/person-list-item.ts +++ b/src/resources/person/types/person-list-item.ts @@ -13,7 +13,7 @@ export interface PersonListItem { * A date, if one exists, that the person was born on. Not an origin date. */ birth: Date | null; - countOfIsssueAppearances: null | unknown; + countOfIsssueAppearances: unknown; /** * Country the person resides in. */ @@ -71,7 +71,3 @@ export interface PersonListItem { */ website: null | string; } - -export enum Timezone { - AmericaLosAngeles = 'America/Los_Angeles', -} diff --git a/packages/client/src/resources/power/index.ts b/src/resources/power/index.ts similarity index 100% rename from packages/client/src/resources/power/index.ts rename to src/resources/power/index.ts diff --git a/src/resources/power/power.test.ts b/src/resources/power/power.test.ts new file mode 100644 index 0000000..38effce --- /dev/null +++ b/src/resources/power/power.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Power } from './power.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Power', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Power(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Power); + }); +}); diff --git a/packages/client/src/resources/power/power.ts b/src/resources/power/power.ts similarity index 100% rename from packages/client/src/resources/power/power.ts rename to src/resources/power/power.ts diff --git a/packages/client/src/resources/power/types/index.ts b/src/resources/power/types/index.ts similarity index 100% rename from packages/client/src/resources/power/types/index.ts rename to src/resources/power/types/index.ts diff --git a/packages/client/src/resources/power/types/power-details.ts b/src/resources/power/types/power-details.ts similarity index 100% rename from packages/client/src/resources/power/types/power-details.ts rename to src/resources/power/types/power-details.ts diff --git a/packages/client/src/resources/power/types/power-list-item.ts b/src/resources/power/types/power-list-item.ts similarity index 94% rename from packages/client/src/resources/power/types/power-list-item.ts rename to src/resources/power/types/power-list-item.ts index 1644905..c8cea25 100644 --- a/packages/client/src/resources/power/types/power-list-item.ts +++ b/src/resources/power/types/power-list-item.ts @@ -1,5 +1,3 @@ -import {} from '../../common-types.js'; - export interface PowerListItem { /** * List of aliases the power is known by. A \n (newline) seperates each alias. diff --git a/packages/client/src/resources/promo/index.ts b/src/resources/promo/index.ts similarity index 100% rename from packages/client/src/resources/promo/index.ts rename to src/resources/promo/index.ts diff --git a/src/resources/promo/promo.test.ts b/src/resources/promo/promo.test.ts new file mode 100644 index 0000000..7768f2b --- /dev/null +++ b/src/resources/promo/promo.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Promo } from './promo.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Promo', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Promo(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Promo); + }); +}); diff --git a/packages/client/src/resources/promo/promo.ts b/src/resources/promo/promo.ts similarity index 100% rename from packages/client/src/resources/promo/promo.ts rename to src/resources/promo/promo.ts diff --git a/packages/client/src/resources/promo/types/index.ts b/src/resources/promo/types/index.ts similarity index 100% rename from packages/client/src/resources/promo/types/index.ts rename to src/resources/promo/types/index.ts diff --git a/packages/client/src/resources/promo/types/promo-details.ts b/src/resources/promo/types/promo-details.ts similarity index 100% rename from packages/client/src/resources/promo/types/promo-details.ts rename to src/resources/promo/types/promo-details.ts diff --git a/packages/client/src/resources/promo/types/promo-list-item.ts b/src/resources/promo/types/promo-list-item.ts similarity index 100% rename from packages/client/src/resources/promo/types/promo-list-item.ts rename to src/resources/promo/types/promo-list-item.ts diff --git a/packages/client/src/resources/publisher/index.ts b/src/resources/publisher/index.ts similarity index 100% rename from packages/client/src/resources/publisher/index.ts rename to src/resources/publisher/index.ts diff --git a/src/resources/publisher/publisher.test.ts b/src/resources/publisher/publisher.test.ts new file mode 100644 index 0000000..2b2581e --- /dev/null +++ b/src/resources/publisher/publisher.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Publisher } from './publisher.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Publisher', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Publisher(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Publisher); + }); +}); diff --git a/packages/client/src/resources/publisher/publisher.ts b/src/resources/publisher/publisher.ts similarity index 100% rename from packages/client/src/resources/publisher/publisher.ts rename to src/resources/publisher/publisher.ts diff --git a/packages/client/src/resources/publisher/types/index.ts b/src/resources/publisher/types/index.ts similarity index 100% rename from packages/client/src/resources/publisher/types/index.ts rename to src/resources/publisher/types/index.ts diff --git a/packages/client/src/resources/publisher/types/publisher-details.ts b/src/resources/publisher/types/publisher-details.ts similarity index 95% rename from packages/client/src/resources/publisher/types/publisher-details.ts rename to src/resources/publisher/types/publisher-details.ts index a60ed36..1818f64 100644 --- a/packages/client/src/resources/publisher/types/publisher-details.ts +++ b/src/resources/publisher/types/publisher-details.ts @@ -1,4 +1,4 @@ -import { SiteResource, Image } from '../../common-types.js'; +import { Image, SiteResource } from '../../common-types.js'; export interface PublisherDetails { /** diff --git a/packages/client/src/resources/publisher/types/publisher-list-item.ts b/src/resources/publisher/types/publisher-list-item.ts similarity index 100% rename from packages/client/src/resources/publisher/types/publisher-list-item.ts rename to src/resources/publisher/types/publisher-list-item.ts index 857f0f9..1afc81a 100644 --- a/packages/client/src/resources/publisher/types/publisher-list-item.ts +++ b/src/resources/publisher/types/publisher-list-item.ts @@ -57,7 +57,7 @@ export interface PublisherListItem { export enum LocationState { California = 'California', - LocationStateNewYork = 'New York ', NewYork = 'New York', + LocationStateNewYork = 'New York ', Pennsylvania = 'Pennsylvania', } diff --git a/packages/client/src/resources/resource-factory.test.ts b/src/resources/resource-factory.test.ts similarity index 76% rename from packages/client/src/resources/resource-factory.test.ts rename to src/resources/resource-factory.test.ts index 73e13c1..5a424be 100644 --- a/packages/client/src/resources/resource-factory.test.ts +++ b/src/resources/resource-factory.test.ts @@ -1,14 +1,21 @@ +import { HttpClient } from '@http-client-toolkit/core'; import { ResourceFactory } from './resource-factory.js'; import * as resources from './resource-list.js'; -import { HttpClientFactory } from '../http-client/index.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../http-client/hooks.js'; +import { UrlBuilder } from '../http-client/url-builder.js'; import type { ValueOf } from '../types/index.js'; describe('ResourceFactory', () => { - const httpClient = HttpClientFactory.createClient(); - const urlBuilder = HttpClientFactory.createUrlBuilder( - 'mock-api-key', - 'https://mock-base-url/', - ); + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); const resourceFactory = new ResourceFactory(httpClient, urlBuilder); type FactoryInput = keyof typeof resources; diff --git a/packages/client/src/resources/resource-factory.ts b/src/resources/resource-factory.ts similarity index 100% rename from packages/client/src/resources/resource-factory.ts rename to src/resources/resource-factory.ts diff --git a/packages/client/src/resources/resource-list.ts b/src/resources/resource-list.ts similarity index 100% rename from packages/client/src/resources/resource-list.ts rename to src/resources/resource-list.ts diff --git a/packages/client/src/resources/resource-map.test.ts b/src/resources/resource-map.test.ts similarity index 100% rename from packages/client/src/resources/resource-map.test.ts rename to src/resources/resource-map.test.ts diff --git a/packages/client/src/resources/resource-map.ts b/src/resources/resource-map.ts similarity index 98% rename from packages/client/src/resources/resource-map.ts rename to src/resources/resource-map.ts index 4c192df..ac90f64 100644 --- a/packages/client/src/resources/resource-map.ts +++ b/src/resources/resource-map.ts @@ -27,7 +27,7 @@ const resourceMap = new Map([ { detailName: 'video_category', listName: 'video_categories' }, ], [ - ResourceType.VideoCategory, + ResourceType.VideoType, { detailName: 'video_type', listName: 'video_types' }, ], [ResourceType.Volume, { detailName: 'volume', listName: 'volumes' }], diff --git a/packages/client/src/resources/resource-type.ts b/src/resources/resource-type.ts similarity index 100% rename from packages/client/src/resources/resource-type.ts rename to src/resources/resource-type.ts diff --git a/packages/client/src/resources/series/index.ts b/src/resources/series/index.ts similarity index 100% rename from packages/client/src/resources/series/index.ts rename to src/resources/series/index.ts diff --git a/src/resources/series/series.test.ts b/src/resources/series/series.test.ts new file mode 100644 index 0000000..6618b09 --- /dev/null +++ b/src/resources/series/series.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Series } from './series.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Series', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Series(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Series); + }); +}); diff --git a/packages/client/src/resources/series/series.ts b/src/resources/series/series.ts similarity index 100% rename from packages/client/src/resources/series/series.ts rename to src/resources/series/series.ts diff --git a/packages/client/src/resources/series/types/index.ts b/src/resources/series/types/index.ts similarity index 100% rename from packages/client/src/resources/series/types/index.ts rename to src/resources/series/types/index.ts diff --git a/packages/client/src/resources/series/types/series-details.ts b/src/resources/series/types/series-details.ts similarity index 97% rename from packages/client/src/resources/series/types/series-details.ts rename to src/resources/series/types/series-details.ts index b592f5f..6a1779b 100644 --- a/packages/client/src/resources/series/types/series-details.ts +++ b/src/resources/series/types/series-details.ts @@ -1,9 +1,9 @@ import { - SiteResourceWithCount, - EpisodeSiteResource, - EpisodeApiResource, ApiResource, + EpisodeApiResource, + EpisodeSiteResource, Image, + SiteResourceWithCount, } from '../../common-types.js'; export interface SeriesDetails { @@ -63,7 +63,7 @@ export interface SeriesDetails { /** * The primary publisher a series is attached to. */ - publisher: ApiResource; + publisher: ApiResource | null; /** * URL pointing to the series on Giant Bomb. */ diff --git a/packages/client/src/resources/series/types/series-list-item.ts b/src/resources/series/types/series-list-item.ts similarity index 80% rename from packages/client/src/resources/series/types/series-list-item.ts rename to src/resources/series/types/series-list-item.ts index ba876b8..9711bda 100644 --- a/packages/client/src/resources/series/types/series-list-item.ts +++ b/src/resources/series/types/series-list-item.ts @@ -1,4 +1,4 @@ -import { EpisodeApiResource, ApiResource, Image } from '../../common-types.js'; +import { ApiResource, EpisodeApiResource, Image } from '../../common-types.js'; export interface SeriesListItem { aliases: null | string; @@ -13,7 +13,7 @@ export interface SeriesListItem { image: Image; lastEpisode: EpisodeApiResource; name: string; - publisher: ApiResource; + publisher: ApiResource | null; siteDetailUrl: string; startYear: string; } diff --git a/packages/client/src/resources/story-arc/index.ts b/src/resources/story-arc/index.ts similarity index 100% rename from packages/client/src/resources/story-arc/index.ts rename to src/resources/story-arc/index.ts diff --git a/src/resources/story-arc/story-arc.test.ts b/src/resources/story-arc/story-arc.test.ts new file mode 100644 index 0000000..0050beb --- /dev/null +++ b/src/resources/story-arc/story-arc.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { StoryArc } from './story-arc.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('StoryArc', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new StoryArc(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.StoryArc); + }); +}); diff --git a/packages/client/src/resources/story-arc/story-arc.ts b/src/resources/story-arc/story-arc.ts similarity index 100% rename from packages/client/src/resources/story-arc/story-arc.ts rename to src/resources/story-arc/story-arc.ts diff --git a/packages/client/src/resources/story-arc/types/index.ts b/src/resources/story-arc/types/index.ts similarity index 100% rename from packages/client/src/resources/story-arc/types/index.ts rename to src/resources/story-arc/types/index.ts diff --git a/packages/client/src/resources/story-arc/types/story-arc-details.ts b/src/resources/story-arc/types/story-arc-details.ts similarity index 96% rename from packages/client/src/resources/story-arc/types/story-arc-details.ts rename to src/resources/story-arc/types/story-arc-details.ts index afd35d6..718e13a 100644 --- a/packages/client/src/resources/story-arc/types/story-arc-details.ts +++ b/src/resources/story-arc/types/story-arc-details.ts @@ -1,8 +1,8 @@ import { - SiteResource, EpisodeApiResource, - IssueApiResource, Image, + IssueApiResource, + SiteResource, } from '../../common-types.js'; export interface StoryArcDetails { @@ -32,7 +32,7 @@ export interface StoryArcDetails { */ description: string; episodes: Array; - firstAppearedInEpisode: EpisodeApiResource; + firstAppearedInEpisode: EpisodeApiResource | null; /** * Issue where the story_arc made its first appearance. */ diff --git a/packages/client/src/resources/story-arc/types/story-arc-list-item.ts b/src/resources/story-arc/types/story-arc-list-item.ts similarity index 95% rename from packages/client/src/resources/story-arc/types/story-arc-list-item.ts rename to src/resources/story-arc/types/story-arc-list-item.ts index e4c662f..2f71331 100644 --- a/packages/client/src/resources/story-arc/types/story-arc-list-item.ts +++ b/src/resources/story-arc/types/story-arc-list-item.ts @@ -1,8 +1,8 @@ import { - IssueApiResource, - SiteResource, EpisodeApiResource, Image, + IssueApiResource, + SiteResource, } from '../../common-types.js'; export interface StoryArcListItem { @@ -31,7 +31,7 @@ export interface StoryArcListItem { * Description of the story_arc. */ description: null | string; - firstAppearedInEpisode: EpisodeApiResource; + firstAppearedInEpisode: EpisodeApiResource | null; /** * Issue where the story_arc made its first appearance. */ diff --git a/packages/client/src/resources/team/index.ts b/src/resources/team/index.ts similarity index 100% rename from packages/client/src/resources/team/index.ts rename to src/resources/team/index.ts diff --git a/src/resources/team/team.test.ts b/src/resources/team/team.test.ts new file mode 100644 index 0000000..b820c21 --- /dev/null +++ b/src/resources/team/team.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Team } from './team.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Team', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Team(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Team); + }); +}); diff --git a/packages/client/src/resources/team/team.ts b/src/resources/team/team.ts similarity index 100% rename from packages/client/src/resources/team/team.ts rename to src/resources/team/team.ts diff --git a/packages/client/src/resources/team/types/index.ts b/src/resources/team/types/index.ts similarity index 100% rename from packages/client/src/resources/team/types/index.ts rename to src/resources/team/types/index.ts diff --git a/packages/client/src/resources/team/types/team-details.ts b/src/resources/team/types/team-details.ts similarity index 91% rename from packages/client/src/resources/team/types/team-details.ts rename to src/resources/team/types/team-details.ts index 0645a25..b8d8b07 100644 --- a/packages/client/src/resources/team/types/team-details.ts +++ b/src/resources/team/types/team-details.ts @@ -1,8 +1,8 @@ import { - SiteResource, - IssueApiResource, ApiResource, Image, + IssueApiResource, + SiteResource, } from '../../common-types.js'; export interface TeamDetails { @@ -64,6 +64,9 @@ export interface TeamDetails { */ image: Image; isssuesDisbandedIn: Array; + /** + * List of issues this team appears in. + */ issueCredits: Array; /** * Movies the team was in. @@ -81,6 +84,12 @@ export interface TeamDetails { * URL pointing to the team on Giant Bomb. */ siteDetailUrl: string; + /** + * List of story arcs this team appears in. + */ storyArcCredits: Array; + /** + * List of comic volumes this team appears in. + */ volumeCredits: Array; } diff --git a/packages/client/src/resources/team/types/team-list-item.ts b/src/resources/team/types/team-list-item.ts similarity index 94% rename from packages/client/src/resources/team/types/team-list-item.ts rename to src/resources/team/types/team-list-item.ts index b903490..4863d1f 100644 --- a/packages/client/src/resources/team/types/team-list-item.ts +++ b/src/resources/team/types/team-list-item.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, ApiResource, Image } from '../../common-types.js'; +import { ApiResource, Image, IssueApiResource } from '../../common-types.js'; export interface TeamListItem { /** diff --git a/packages/client/src/resources/thing/index.ts b/src/resources/thing/index.ts similarity index 100% rename from packages/client/src/resources/thing/index.ts rename to src/resources/thing/index.ts diff --git a/src/resources/thing/thing.test.ts b/src/resources/thing/thing.test.ts new file mode 100644 index 0000000..25b0a8d --- /dev/null +++ b/src/resources/thing/thing.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Thing } from './thing.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Thing', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Thing(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Thing); + }); +}); diff --git a/packages/client/src/resources/thing/thing.ts b/src/resources/thing/thing.ts similarity index 100% rename from packages/client/src/resources/thing/thing.ts rename to src/resources/thing/thing.ts diff --git a/packages/client/src/resources/thing/types/index.ts b/src/resources/thing/types/index.ts similarity index 100% rename from packages/client/src/resources/thing/types/index.ts rename to src/resources/thing/types/index.ts diff --git a/packages/client/src/resources/thing/types/thing-details.ts b/src/resources/thing/types/thing-details.ts similarity index 81% rename from packages/client/src/resources/thing/types/thing-details.ts rename to src/resources/thing/types/thing-details.ts index dcc5fed..9faa23c 100644 --- a/packages/client/src/resources/thing/types/thing-details.ts +++ b/src/resources/thing/types/thing-details.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, SiteResource, Image } from '../../common-types.js'; +import { Image, IssueApiResource, SiteResource } from '../../common-types.js'; export interface ThingDetails { /** @@ -32,7 +32,7 @@ export interface ThingDetails { /** * Issue where the thing made its first appearance. */ - firstAppearedInIssue: IssueApiResource; + firstAppearedInIssue: IssueApiResource | null; /** * Unique ID of the thing. */ @@ -41,6 +41,9 @@ export interface ThingDetails { * Main image of the thing. */ image: Image; + /** + * List of issues this thing appears in. + */ issueCredits: Array; /** * Movies the thing was in. @@ -58,6 +61,12 @@ export interface ThingDetails { * The first year this thing appeared in comics. */ startYear: null | string; + /** + * List of story arcs this thing appears in. + */ storyArcCredits: Array; + /** + * List of comic volumes this thing appears in. + */ volumeCredits: Array; } diff --git a/packages/client/src/resources/thing/types/thing-list-item.ts b/src/resources/thing/types/thing-list-item.ts similarity index 90% rename from packages/client/src/resources/thing/types/thing-list-item.ts rename to src/resources/thing/types/thing-list-item.ts index ea384c4..a95b145 100644 --- a/packages/client/src/resources/thing/types/thing-list-item.ts +++ b/src/resources/thing/types/thing-list-item.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, Image } from '../../common-types.js'; +import { Image, IssueApiResource } from '../../common-types.js'; export interface ThingListItem { /** @@ -32,7 +32,7 @@ export interface ThingListItem { /** * Issue where the thing made its first appearance. */ - firstAppearedInIssue: IssueApiResource; + firstAppearedInIssue: IssueApiResource | null; /** * Unique ID of the thing. */ diff --git a/packages/client/src/resources/video-category/index.ts b/src/resources/video-category/index.ts similarity index 100% rename from packages/client/src/resources/video-category/index.ts rename to src/resources/video-category/index.ts diff --git a/packages/client/src/resources/video-category/types/index.ts b/src/resources/video-category/types/index.ts similarity index 100% rename from packages/client/src/resources/video-category/types/index.ts rename to src/resources/video-category/types/index.ts diff --git a/packages/client/src/resources/video-category/types/video-category-details.ts b/src/resources/video-category/types/video-category-details.ts similarity index 100% rename from packages/client/src/resources/video-category/types/video-category-details.ts rename to src/resources/video-category/types/video-category-details.ts diff --git a/packages/client/src/resources/video-category/types/video-category-list-item.ts b/src/resources/video-category/types/video-category-list-item.ts similarity index 100% rename from packages/client/src/resources/video-category/types/video-category-list-item.ts rename to src/resources/video-category/types/video-category-list-item.ts diff --git a/src/resources/video-category/video-category.test.ts b/src/resources/video-category/video-category.test.ts new file mode 100644 index 0000000..30c88cc --- /dev/null +++ b/src/resources/video-category/video-category.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { VideoCategory } from './video-category.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('VideoCategory', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new VideoCategory(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.VideoCategory); + }); +}); diff --git a/packages/client/src/resources/video-category/video-category.ts b/src/resources/video-category/video-category.ts similarity index 100% rename from packages/client/src/resources/video-category/video-category.ts rename to src/resources/video-category/video-category.ts diff --git a/packages/client/src/resources/video-type/index.ts b/src/resources/video-type/index.ts similarity index 100% rename from packages/client/src/resources/video-type/index.ts rename to src/resources/video-type/index.ts diff --git a/packages/client/src/resources/video-type/types/index.ts b/src/resources/video-type/types/index.ts similarity index 100% rename from packages/client/src/resources/video-type/types/index.ts rename to src/resources/video-type/types/index.ts diff --git a/packages/client/src/resources/video-type/types/video-type-details.ts b/src/resources/video-type/types/video-type-details.ts similarity index 90% rename from packages/client/src/resources/video-type/types/video-type-details.ts rename to src/resources/video-type/types/video-type-details.ts index 87b3836..e8f70d2 100644 --- a/packages/client/src/resources/video-type/types/video-type-details.ts +++ b/src/resources/video-type/types/video-type-details.ts @@ -1,5 +1,3 @@ -import {} from '../../common-types.js'; - export interface VideoTypeDetails { /** * URL pointing to the video_type detail resource. diff --git a/packages/client/src/resources/video-type/types/video-type-list-item.ts b/src/resources/video-type/types/video-type-list-item.ts similarity index 90% rename from packages/client/src/resources/video-type/types/video-type-list-item.ts rename to src/resources/video-type/types/video-type-list-item.ts index 92004c0..53cd525 100644 --- a/packages/client/src/resources/video-type/types/video-type-list-item.ts +++ b/src/resources/video-type/types/video-type-list-item.ts @@ -1,5 +1,3 @@ -import {} from '../../common-types.js'; - export interface VideoTypeListItem { /** * URL pointing to the video_type detail resource. diff --git a/src/resources/video-type/video-type.test.ts b/src/resources/video-type/video-type.test.ts new file mode 100644 index 0000000..b9b50b2 --- /dev/null +++ b/src/resources/video-type/video-type.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { VideoType } from './video-type.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('VideoType', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new VideoType(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.VideoType); + }); +}); diff --git a/packages/client/src/resources/video-type/video-type.ts b/src/resources/video-type/video-type.ts similarity index 100% rename from packages/client/src/resources/video-type/video-type.ts rename to src/resources/video-type/video-type.ts diff --git a/packages/client/src/resources/video/index.ts b/src/resources/video/index.ts similarity index 100% rename from packages/client/src/resources/video/index.ts rename to src/resources/video/index.ts diff --git a/packages/client/src/resources/video/types/index.ts b/src/resources/video/types/index.ts similarity index 100% rename from packages/client/src/resources/video/types/index.ts rename to src/resources/video/types/index.ts diff --git a/packages/client/src/resources/video/types/video-details.ts b/src/resources/video/types/video-details.ts similarity index 96% rename from packages/client/src/resources/video/types/video-details.ts rename to src/resources/video/types/video-details.ts index be4ffc4..10be669 100644 --- a/packages/client/src/resources/video/types/video-details.ts +++ b/src/resources/video/types/video-details.ts @@ -42,7 +42,6 @@ export interface VideoDetails { * Date the video was published on Comic Vine. */ publishDate: Date; - savedTime: null; /** * URL pointing to the video on Giant Bomb. */ @@ -56,7 +55,6 @@ export interface VideoDetails { */ user: null | string; videoCategories: Array; - videoShow: null; videoType: string; youtubeId: null | string; } diff --git a/packages/client/src/resources/video/types/video-list-item.ts b/src/resources/video/types/video-list-item.ts similarity index 85% rename from packages/client/src/resources/video/types/video-list-item.ts rename to src/resources/video/types/video-list-item.ts index 0990edf..8505af7 100644 --- a/packages/client/src/resources/video/types/video-list-item.ts +++ b/src/resources/video/types/video-list-item.ts @@ -16,7 +16,7 @@ export interface VideoListItem { * URL to the High Res version of the video. */ highUrl: string; - hosts: Crew | null; + hosts: Hosts | null; /** * Unique ID of the video. */ @@ -42,7 +42,6 @@ export interface VideoListItem { * Date the video was published on Comic Vine. */ publishDate: Date; - savedTime: null; /** * URL pointing to the video on Giant Bomb. */ @@ -54,9 +53,8 @@ export interface VideoListItem { /** * Author of the video. */ - user: Crew | null; + user: User | null; videoCategories: Array; - videoShow: null; videoType: VideoType | null; youtubeId: null | string; } @@ -64,15 +62,29 @@ export interface VideoListItem { export enum Crew { Aclarkp = 'aclarkp', Buddyhutton = 'buddyhutton', - Cadamien = 'cadamien', Gmanfromheck = 'gmanfromheck', GmanfromheckRyanerikp = 'gmanfromheck, ryanerikp', GmanfromheckRyanerikpBuddyhutton = 'gmanfromheck, ryanerikp, buddyhutton', - Inferiorego = 'inferiorego', Ryanerikp = 'ryanerikp', RyanerikpBuddyhutton = 'ryanerikp, buddyhutton', } +export enum Hosts { + Aclarkp = 'aclarkp', + Buddyhutton = 'buddyhutton', + Gmanfromheck = 'gmanfromheck', + Inferiorego = 'inferiorego', + Ryanerikp = 'ryanerikp', +} + +export enum User { + Aclarkp = 'aclarkp', + Buddyhutton = 'buddyhutton', + Cadamien = 'cadamien', + Gmanfromheck = 'gmanfromheck', + Ryanerikp = 'ryanerikp', +} + export enum VideoType { Events = 'Events', Feature = 'Feature', diff --git a/src/resources/video/video.test.ts b/src/resources/video/video.test.ts new file mode 100644 index 0000000..4e37078 --- /dev/null +++ b/src/resources/video/video.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Video } from './video.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Video', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Video(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Video); + }); +}); diff --git a/packages/client/src/resources/video/video.ts b/src/resources/video/video.ts similarity index 100% rename from packages/client/src/resources/video/video.ts rename to src/resources/video/video.ts diff --git a/packages/client/src/resources/volume/index.ts b/src/resources/volume/index.ts similarity index 100% rename from packages/client/src/resources/volume/index.ts rename to src/resources/volume/index.ts diff --git a/packages/client/src/resources/volume/types/index.ts b/src/resources/volume/types/index.ts similarity index 100% rename from packages/client/src/resources/volume/types/index.ts rename to src/resources/volume/types/index.ts diff --git a/packages/client/src/resources/volume/types/volume-details.ts b/src/resources/volume/types/volume-details.ts similarity index 92% rename from packages/client/src/resources/volume/types/volume-details.ts rename to src/resources/volume/types/volume-details.ts index 7b4b255..d180603 100644 --- a/packages/client/src/resources/volume/types/volume-details.ts +++ b/src/resources/volume/types/volume-details.ts @@ -1,9 +1,9 @@ import { - SiteResourceWithCount, - IssueApiResource, - IssueSiteResource, ApiResource, Image, + IssueApiResource, + IssueSiteResource, + SiteResourceWithCount, } from '../../common-types.js'; export interface VolumeDetails { @@ -18,11 +18,11 @@ export interface VolumeDetails { /** * A list of characters that appear in this volume. */ - characters: Array; + characters?: Array; /** * A list of concepts that appear in this volume. */ - concepts: Array; + concepts?: Array; /** * Number of issues included in this volume. */ @@ -67,7 +67,7 @@ export interface VolumeDetails { /** * List of things that appeared in this volume. */ - objects: Array; + objects?: Array; people: Array; /** * The primary publisher a volume is attached to. diff --git a/packages/client/src/resources/volume/types/volume-list-item.ts b/src/resources/volume/types/volume-list-item.ts similarity index 95% rename from packages/client/src/resources/volume/types/volume-list-item.ts rename to src/resources/volume/types/volume-list-item.ts index e4638f1..b5f3452 100644 --- a/packages/client/src/resources/volume/types/volume-list-item.ts +++ b/src/resources/volume/types/volume-list-item.ts @@ -1,4 +1,4 @@ -import { IssueApiResource, ApiResource, Image } from '../../common-types.js'; +import { ApiResource, Image, IssueApiResource } from '../../common-types.js'; export interface VolumeListItem { /** diff --git a/src/resources/volume/volume.test.ts b/src/resources/volume/volume.test.ts new file mode 100644 index 0000000..aaa7167 --- /dev/null +++ b/src/resources/volume/volume.test.ts @@ -0,0 +1,23 @@ +import { HttpClient } from '@http-client-toolkit/core'; +import { Volume } from './volume.js'; +import { + comicVineResponseTransformer, + comicVineResponseHandler, + comicVineErrorHandler, +} from '../../http-client/hooks.js'; +import { UrlBuilder } from '../../http-client/url-builder.js'; +import { ResourceType } from '../resource-type.js'; + +describe('Volume', () => { + const httpClient = new HttpClient({ + responseTransformer: comicVineResponseTransformer, + responseHandler: comicVineResponseHandler, + errorHandler: comicVineErrorHandler, + }); + const urlBuilder = new UrlBuilder('mock-api-key', 'https://mock-base-url/'); + + it('should have the correct resource type', () => { + const resource = new Volume(httpClient, urlBuilder); + expect(resource['resourceType']).toBe(ResourceType.Volume); + }); +}); diff --git a/packages/client/src/resources/volume/volume.ts b/src/resources/volume/volume.ts similarity index 100% rename from packages/client/src/resources/volume/volume.ts rename to src/resources/volume/volume.ts diff --git a/packages/client/src/types/apply-override.ts b/src/types/apply-override.ts similarity index 100% rename from packages/client/src/types/apply-override.ts rename to src/types/apply-override.ts diff --git a/src/types/http-client.ts b/src/types/http-client.ts new file mode 100644 index 0000000..4c28c67 --- /dev/null +++ b/src/types/http-client.ts @@ -0,0 +1 @@ +export type { HttpClientContract as HttpClient } from '@http-client-toolkit/core'; diff --git a/packages/client/src/types/index.ts b/src/types/index.ts similarity index 100% rename from packages/client/src/types/index.ts rename to src/types/index.ts diff --git a/packages/client/src/types/iso-date.ts b/src/types/iso-date.ts similarity index 100% rename from packages/client/src/types/iso-date.ts rename to src/types/iso-date.ts diff --git a/packages/client/src/types/pick-filters.ts b/src/types/pick-filters.ts similarity index 100% rename from packages/client/src/types/pick-filters.ts rename to src/types/pick-filters.ts diff --git a/packages/client/src/types/request.ts b/src/types/request.ts similarity index 94% rename from packages/client/src/types/request.ts rename to src/types/request.ts index d2ff051..bfd2130 100644 --- a/packages/client/src/types/request.ts +++ b/src/types/request.ts @@ -1,4 +1,4 @@ -import type { RequestPriority } from '../stores/rate-limit-store.js'; +import type { RequestPriority } from '@http-client-toolkit/core'; export interface BaseOptions { /** diff --git a/packages/client/src/types/response.ts b/src/types/response.ts similarity index 100% rename from packages/client/src/types/response.ts rename to src/types/response.ts diff --git a/packages/client/src/types/url-builder.ts b/src/types/url-builder.ts similarity index 100% rename from packages/client/src/types/url-builder.ts rename to src/types/url-builder.ts diff --git a/packages/client/src/types/valueof.ts b/src/types/valueof.ts similarity index 100% rename from packages/client/src/types/valueof.ts rename to src/types/valueof.ts diff --git a/packages/client/src/utils/case-converter.test.ts b/src/utils/case-converter.test.ts similarity index 100% rename from packages/client/src/utils/case-converter.test.ts rename to src/utils/case-converter.test.ts diff --git a/packages/client/src/utils/case-converter.ts b/src/utils/case-converter.ts similarity index 100% rename from packages/client/src/utils/case-converter.ts rename to src/utils/case-converter.ts diff --git a/packages/client/src/utils/index.ts b/src/utils/index.ts similarity index 100% rename from packages/client/src/utils/index.ts rename to src/utils/index.ts diff --git a/packages/client/src/utils/is-object.test.ts b/src/utils/is-object.test.ts similarity index 100% rename from packages/client/src/utils/is-object.test.ts rename to src/utils/is-object.test.ts diff --git a/packages/client/src/utils/is-object.ts b/src/utils/is-object.ts similarity index 100% rename from packages/client/src/utils/is-object.ts rename to src/utils/is-object.ts diff --git a/tsconfig.base.json b/tsconfig.base.json deleted file mode 100644 index 49eef99..0000000 --- a/tsconfig.base.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "rootDir": "src", - "outDir": "lib" - }, - "include": ["src/**/*.ts"], - "exclude": ["node_modules", "lib", "dist"] -} diff --git a/tsconfig.dev.json b/tsconfig.dev.json deleted file mode 100644 index ff4abc1..0000000 --- a/tsconfig.dev.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "noEmit": true, - "skipLibCheck": true - }, - "include": ["packages/**/*", "*.ts", "*.js"], - "exclude": ["node_modules", "**/lib", "**/dist"] -} diff --git a/tsconfig.json b/tsconfig.json index 4e57bc1..163b27b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,24 +17,9 @@ "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, - "isolatedModules": true + "isolatedModules": true, + "types": ["vitest/globals"] }, - "files": [], - "references": [ - { - "path": "./packages/tsup-config/tsconfig.json" - }, - { - "path": "./packages/vitest-config/tsconfig.json" - }, - { - "path": "./packages/client/tsconfig.json" - }, - { - "path": "./packages/in-memory-store/tsconfig.json" - }, - { - "path": "./packages/sqlite-store/tsconfig.json" - } - ] + "include": ["src/**/*.ts"], + "exclude": ["node_modules", "lib", "dist"] } diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..5ff6203 --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,22 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: { + index: 'src/index.ts', + }, + format: ['esm'], + dts: { + entry: 'src/index.ts', + resolve: true, + }, + splitting: false, + sourcemap: true, + clean: true, + outDir: 'lib', + treeshake: true, + minify: false, + target: 'es2015', + tsconfig: './tsconfig.json', + cjsInterop: true, + skipNodeModulesBundle: true, +}); diff --git a/turbo.json b/turbo.json deleted file mode 100644 index 0e2ea2d..0000000 --- a/turbo.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "$schema": "https://turbo.build/schema.json", - "tasks": { - "@repo/tsup-config#build": { - "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": ["dist/**"] - }, - "@repo/vitest-config#build": { - "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": ["dist/**"] - }, - "build": { - "dependsOn": ["^build", "@repo/tsup-config#build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": ["lib/**", "dist/**"] - }, - "test": { - "dependsOn": ["^build", "@repo/vitest-config#build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": ["coverage/**"] - }, - "test:run": { - "dependsOn": ["^build", "@repo/vitest-config#build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": ["coverage/**"] - }, - "test:build": { - "dependsOn": ["build"], - "inputs": ["$TURBO_DEFAULT$", "lib/**", "build-tests/**"], - "outputs": [] - }, - "lint": { - "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "outputs": [] - }, - "dev": { - "cache": false, - "persistent": true - }, - "clean": { - "cache": false, - "outputs": [] - } - } -} diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..24a4d21 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,8 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + globals: true, + silent: true, + }, +});